diff --git a/.gitignore b/.gitignore index ae8eb9f..223e5b5 100644 --- a/.gitignore +++ b/.gitignore @@ -397,3 +397,4 @@ FodyWeavers.xsd # JetBrains Rider *.sln.iml /src/Imcodec.ObjectProperty/Generated +/src/Imcodec.ObjectProperty/GeneratorInput diff --git a/omnisharp.json b/omnisharp.json index 7faa3b9..1f749a1 100644 --- a/omnisharp.json +++ b/omnisharp.json @@ -4,13 +4,6 @@ "EnableDecompilationSupport": true, "LocationPaths": [] }, - "FormattingOptions": { - "EnableEditorConfigSupport": true - }, - "RoslynExtensionsOptions": { - "EnableAnalyzersSupport": true, - "EnableDecompilationSupport": true - }, "FileOptions": { "SystemExcludeSearchPatterns": [ "**/node_modules/**/*", @@ -29,6 +22,7 @@ "InsertionBehavior": "WithOtherMembersOfTheSameKind" }, "FormattingOptions": { + "EnableEditorConfigSupport": true, "NewLinesForBracesInLambdaExpressionBody": false, "NewLinesForBracesInAnonymousMethods": false, "NewLinesForBracesInAnonymousTypes": false, diff --git a/src/Imcodec.Benchmarks/DummyTypeRegistry.cs b/src/Imcodec.Benchmarks/DummyTypeRegistry.cs deleted file mode 100644 index 40228a8..0000000 --- a/src/Imcodec.Benchmarks/DummyTypeRegistry.cs +++ /dev/null @@ -1,116 +0,0 @@ -/* -BSD 3-Clause License - -Copyright (c) 2024, Jooty - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: - -1. Redistributions of source code must retain the above copyright notice, this - list of conditions and the following disclaimer. - -2. Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation - and/or other materials provided with the distribution. - -3. Neither the name of the copyright holder nor the names of its - contributors may be used to endorse or promote products derived from - this software without specific prior written permission. -*/ - -using Imcodec.ObjectProperty; -using Imcodec.IO; - -namespace Imcodec.Benchmarks; - -public class DummyTypeRegistry : TypeRegistry { - - private static Dictionary TypeMap { get; set; } = new() { - { 1246183594, typeof(LootInfoBase) }, - { 1119240234, typeof(LootInfo) }, - { 461650270, typeof(GoldLootInfo) }, - { 1214710570, typeof(LootInfoList) }, - { 1701545865, typeof(MagicXPLootInfo) }, - }; - - public override void RegisterType(uint hash, Type t) - => TypeMap[hash] = t; - - public override Type? LookupType(uint type) - => TypeMap.TryGetValue(type, out var t) ? t : null; - -} - -public partial record LootInfoList : PropertyClass { - - public override uint GetHash() => 1214710570; - - [AutoProperty(1119240234, 31)] public List? m_loot { get; set; } - [AutoProperty(461650270, 31)] public GoldLootInfo? m_goldInfo { get; set; } - -} - -public partial record GoldLootInfo : LootInfo { - - public override uint GetHash() => 461650270; - - [AutoProperty(0, 31)] public int m_goldAmount { get; set; } - -} - -public record MagicXPLootInfo : LootInfo { - - public override uint GetHash() => 1701545865; - - [AutoProperty(1597012900, 31)] public ByteString m_magicSchool { get; set; } - [AutoProperty(759357570, 31)] public int m_experience { get; set; } - -} - -public partial record LootInfo : LootInfoBase { - - public override uint GetHash() => 1119240234; - - [AutoProperty(0, 31)] public LOOT_TYPE m_lootType { get; set; } - -} - -public partial record LootInfoBase : PropertyClass { - - public override uint GetHash() => 1246183594; - -} - -public enum LOOT_TYPE -{ - - LOOT_TYPE_NONE = 0, - LOOT_TYPE_GOLD = 1, - LOOT_TYPE_MANA = 2, - LOOT_TYPE_ITEM = 3, - LOOT_TYPE_TREASURE_CARD = 4, - LOOT_TYPE_MAGIC_XP = 5, - LOOT_TYPE_ADD_SPELL = 6, - LOOT_TYPE_MAX_HEALTH = 7, - LOOT_TYPE_MAX_GOLD = 8, - LOOT_TYPE_MAX_MANA = 9, - LOOT_TYPE_MAX_POTION = 10, - LOOT_TYPE_TRAINING_POINTS = 11, - LOOT_TYPE_RECIPE = 12, - LOOT_TYPE_CRAFTING_SLOT = 13, - LOOT_TYPE_REAGENT = 14, - LOOT_TYPE_PETSNACK = 15, - LOOT_TYPE_GARDENING_XP = 16, - LOOT_TYPE_PET_XP = 17, - LOOT_TYPE_TREASURE_TABLE = 18, - LOOT_TYPE_ARENA_POINTS = 19, - LOOT_TYPE_ARENA_BONUS_POINTS = 20, - LOOT_TYPE_GROUP = 21, - LOOT_TYPE_FISHING_XP = 22, - LOOT_TYPE_EVENT_CURRENCY_1 = 24, - LOOT_TYPE_EVENT_CURRENCY_2 = 25, - LOOT_TYPE_PVP_CURRENCY = 26, - LOOT_TYPE_PVP_CURRENCY_BONUS = 27, - LOOT_TYPE_FURNITURE_ESSENCE = 28, - -} diff --git a/src/Imcodec.Benchmarks/ObjectSerializerBenchmarks.cs b/src/Imcodec.Benchmarks/ObjectSerializerBenchmarks.cs index f34e678..dfdf15d 100644 --- a/src/Imcodec.Benchmarks/ObjectSerializerBenchmarks.cs +++ b/src/Imcodec.Benchmarks/ObjectSerializerBenchmarks.cs @@ -21,6 +21,7 @@ this software without specific prior written permission. using BenchmarkDotNet.Attributes; using BenchmarkDotNet.Running; using Imcodec.ObjectProperty; +using Imcodec.ObjectProperty.TypeCache; namespace Imcodec.Benchmarks; @@ -38,10 +39,10 @@ public class ObjectSerializerBenchmarks { [GlobalSetup] public void Setup() { - // Initialize the serializer and test data - _serializer = new ObjectSerializer(false, SerializerFlags.None, new DummyTypeRegistry()); + // Initialize the serializer and test data. + _serializer = new ObjectSerializer(false, SerializerFlags.None); - // Create a sample loot table + // Create a sample loot table. _lootTable = new LootInfoList { m_goldInfo = new GoldLootInfo { m_goldAmount = 2, @@ -56,39 +57,36 @@ public void Setup() { ] }; - // Pre-serialize data for deserialization benchmark + // Pre-serialize data for deserialization benchmark. _serializedData = Convert.FromHexString(LootTableBlob); _compressedData = Convert.FromHexString(LootTableBlobCompressed); } [Benchmark] - public void SerializeLootTable() { - _serializer.Serialize(_lootTable, (PropertyFlags) 31, out var _); - } + public void SerializeLootTable() + => _ = _serializer.Serialize(_lootTable, (PropertyFlags) 31, out var _); [Benchmark] - public void DeserializeLootTable() { - _serializer.Deserialize(_serializedData, (PropertyFlags) 31, out var _); - } + public void DeserializeLootTable() + => _ = _serializer.Deserialize(_serializedData, (PropertyFlags) 31, out var _); [Benchmark] public void SerializeWithCompression() { - var compressedSerializer = new ObjectSerializer(false, SerializerFlags.Compress, new DummyTypeRegistry()); - compressedSerializer.Serialize(_lootTable, (PropertyFlags) 31, out var _); + var compressedSerializer = new ObjectSerializer(false, SerializerFlags.Compress); + _ = compressedSerializer.Serialize(_lootTable, (PropertyFlags) 31, out var _); } [Benchmark] public void DeserializeWithCompression() { - var compressedSerializer = new ObjectSerializer(false, SerializerFlags.Compress, new DummyTypeRegistry()); - compressedSerializer.Deserialize(_compressedData, (PropertyFlags) 31, out var _); + var compressedSerializer = new ObjectSerializer(false, SerializerFlags.Compress); + _ = compressedSerializer.Deserialize(_compressedData, (PropertyFlags) 31, out var _); } } public class Program { - public static void Main(string[] args) { - var summary = BenchmarkRunner.Run(); - } + public static void Main() + => _ = BenchmarkRunner.Run(); } \ No newline at end of file diff --git a/src/Imcodec.Cli/ArchiveCommands.cs b/src/Imcodec.Cli/ArchiveCommands.cs index a2b1465..ca413bf 100644 --- a/src/Imcodec.Cli/ArchiveCommands.cs +++ b/src/Imcodec.Cli/ArchiveCommands.cs @@ -75,7 +75,7 @@ public void UnpackArchive( // If the output directory does not exist, create it. outputPath = GetOutputDirectory(archivePath, outputPath, archiveName!); if (!Directory.Exists(outputPath)) { - Directory.CreateDirectory(outputPath); + _ = Directory.CreateDirectory(outputPath); } var files = UnpackArchiveFiles(archive); @@ -152,7 +152,7 @@ private static string CreateFileOutputPath(string basePath, string fileName) { var fullDirectoryPath = Path.Combine(basePath, directoryPath); // Create all necessary directories - Directory.CreateDirectory(fullDirectoryPath); + _ = Directory.CreateDirectory(fullDirectoryPath); // Return the full path including the file name return Path.Combine(fullDirectoryPath, actualFileName); diff --git a/src/Imcodec.Cli/Deserialization.cs b/src/Imcodec.Cli/Deserialization.cs index 8deb9fd..e50e674 100644 --- a/src/Imcodec.Cli/Deserialization.cs +++ b/src/Imcodec.Cli/Deserialization.cs @@ -108,16 +108,16 @@ public static class Deserialization { // Create configurations for all serializers to try. var serializerConfigs = new List<(string Name, Func Factory, bool IsVerbose)> { // Standard serializers. - ("ObjectCompact", () => new ObjectSerializer(false, SerializerFlags.None), false), - ("ObjectCompactCompressed", () => new ObjectSerializer(false, SerializerFlags.UseFlags | SerializerFlags.Compress), false), - ("ObjectVerbose", () => new ObjectSerializer(true, SerializerFlags.None), true), - ("ObjectVerboseCompressed", () => new ObjectSerializer(true, SerializerFlags.UseFlags | SerializerFlags.Compress), true), + ("ObjectCompact", static () => new ObjectSerializer(false, SerializerFlags.None), false), + ("ObjectCompactCompressed", static () => new ObjectSerializer(false, SerializerFlags.UseFlags | SerializerFlags.Compress), false), + ("ObjectVerbose", static () => new ObjectSerializer(true, SerializerFlags.None), true), + ("ObjectVerboseCompressed", static () => new ObjectSerializer(true, SerializerFlags.UseFlags | SerializerFlags.Compress), true), // Core serializers. - ("CoreObject", () => new CoreObjectSerializer(false, SerializerFlags.None), false), - ("CoreObjectCompressed", () => new CoreObjectSerializer(false, SerializerFlags.UseFlags | SerializerFlags.Compress), false), - ("CoreObjectVerbose", () => new CoreObjectSerializer(true, SerializerFlags.None), true), - ("CoreObjectVerboseCompressed", () => new CoreObjectSerializer(true, SerializerFlags.UseFlags | SerializerFlags.Compress), true) + ("CoreObject", static () => new CoreObjectSerializer(false, SerializerFlags.None), false), + ("CoreObjectCompressed", static () => new CoreObjectSerializer(false, SerializerFlags.UseFlags | SerializerFlags.Compress), false), + ("CoreObjectVerbose", static () => new CoreObjectSerializer(true, SerializerFlags.None), true), + ("CoreObjectVerboseCompressed", static () => new CoreObjectSerializer(true, SerializerFlags.UseFlags | SerializerFlags.Compress), true) }; // Attempt to deserialize the blob using a number of methods. diff --git a/src/Imcodec.Cli/IOUtility.cs b/src/Imcodec.Cli/IOUtility.cs index 5f556a5..f15fb33 100644 --- a/src/Imcodec.Cli/IOUtility.cs +++ b/src/Imcodec.Cli/IOUtility.cs @@ -34,6 +34,7 @@ internal static string ExtractFileName(string path) { // Get the file name after the last directory separator. // Verify it's a file name and not a directory. var fileName = path.Split(Path.DirectorySeparatorChar).Last(); + return fileName.Contains('.') ? fileName : ""; } @@ -51,6 +52,7 @@ internal static string ExtractDirectoryPath(string path) { } var pathWithoutFileName = path[..idx]; + return pathWithoutFileName.Contains('.') ? "" : pathWithoutFileName; } @@ -62,6 +64,7 @@ internal static string ExtractDirectoryPath(string path) { internal static string ExtractFileExtension(string path) { // Get the file extension from the file name. var fileName = ExtractFileName(path); + return fileName?.Split('.').Last() ?? ""; } @@ -73,6 +76,7 @@ internal static string ExtractFileExtension(string path) { internal static string RemoveExtension(string path) { // Split on the last index of '.'. var idx = path.LastIndexOf('.'); + return idx == -1 ? path : path[..idx]; } diff --git a/src/Imcodec.CoreObject/BehaviorInstance.cs b/src/Imcodec.CoreObject/BehaviorInstance.cs deleted file mode 100644 index 419f10d..0000000 --- a/src/Imcodec.CoreObject/BehaviorInstance.cs +++ /dev/null @@ -1,29 +0,0 @@ -/* -BSD 3-Clause License - -Copyright (c) 2024, Jooty - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: - -1. Redistributions of source code must retain the above copyright notice, this - list of conditions and the following disclaimer. - -2. Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation - and/or other materials provided with the distribution. - -3. Neither the name of the copyright holder nor the names of its - contributors may be used to endorse or promote products derived from - this software without specific prior written permission. -*/ - -using Imcodec.ObjectProperty; - -namespace Imcodec.CoreObject; - -public partial record BehaviorInstance : PropertyClass { - - public override uint GetHash() => 1578701589; - -} \ No newline at end of file diff --git a/src/Imcodec.CoreObject/BehaviorTemplate.cs b/src/Imcodec.CoreObject/BehaviorTemplate.cs deleted file mode 100644 index a29d145..0000000 --- a/src/Imcodec.CoreObject/BehaviorTemplate.cs +++ /dev/null @@ -1,29 +0,0 @@ -/* -BSD 3-Clause License - -Copyright (c) 2024, Jooty - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: - -1. Redistributions of source code must retain the above copyright notice, this - list of conditions and the following disclaimer. - -2. Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation - and/or other materials provided with the distribution. - -3. Neither the name of the copyright holder nor the names of its - contributors may be used to endorse or promote products derived from - this software without specific prior written permission. -*/ - -using Imcodec.ObjectProperty; - -namespace Imcodec.CoreObject; - -public partial record BehaviorTemplate : PropertyClass { - - public override uint GetHash() => 360231646; - -} \ No newline at end of file diff --git a/src/Imcodec.CoreObject/CoreObject.cs b/src/Imcodec.CoreObject/CoreObject.cs deleted file mode 100644 index 6e4bf62..0000000 --- a/src/Imcodec.CoreObject/CoreObject.cs +++ /dev/null @@ -1,34 +0,0 @@ -/* -BSD 3-Clause License - -Copyright (c) 2024, Jooty - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: - -1. Redistributions of source code must retain the above copyright notice, this - list of conditions and the following disclaimer. - -2. Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation - and/or other materials provided with the distribution. - -3. Neither the name of the copyright holder nor the names of its - contributors may be used to endorse or promote products derived from - this software without specific prior written permission. -*/ - -using Imcodec.ObjectProperty; - -namespace Imcodec.CoreObject; - -public partial record CoreObject : PropertyClass { - - public CoreTemplate m_coreTemplate { get; init; } - - public override uint GetHash() => 1152306685; - - public CoreObject(CoreTemplate coreTemplate) - => m_coreTemplate = coreTemplate; - -} diff --git a/src/Imcodec.CoreObject/CoreObjectSerializer.cs b/src/Imcodec.CoreObject/CoreObjectSerializer.cs index ea13195..9b98f63 100644 --- a/src/Imcodec.CoreObject/CoreObjectSerializer.cs +++ b/src/Imcodec.CoreObject/CoreObjectSerializer.cs @@ -40,7 +40,7 @@ public sealed class CoreObjectSerializer( bool UseServerTypeRegistry = true ) : ObjectSerializer(versionable, behaviors, typeRegistry, UseServerTypeRegistry) { - private static readonly Dictionary s_blockAndTypeMap = new() { + private static readonly Dictionary s_blockAndTypeMap = new() { { 350837933, (2, 2) }, // ClientObject { 766500222, (104, 2) }, // WizClientObject { 1653772158, (115, 9) }, // WizClientObjectItem @@ -50,67 +50,67 @@ public sealed class CoreObjectSerializer( { 958775582, (131, 131) } // ClientRecipe }; - public override bool PreloadObject(BitReader inputBuffer, out PropertyClass? propertyClass) { - propertyClass = null; - var block = inputBuffer.ReadUInt8(); - var type = inputBuffer.ReadUInt8(); - var templateIdOrHash = inputBuffer.ReadUInt32(); - - if (block == 0 && type == 0) { - // This is not serialized as a CoreObject. It's a normal object, and dispatch it as such. - propertyClass = DispatchType(templateIdOrHash); - - return propertyClass != null; - } - - // We can dispatch the type based on the template ID. - var hash = GetHashFromBlockAndType(block, type); - propertyClass = DispatchType(hash); - - return propertyClass != null; - } - - public override bool PreWriteObject(BitWriter writer, PropertyClass propertyClass) { - if (propertyClass is null) { - writer.WriteUInt8(0); - writer.WriteUInt8(0); - writer.WriteUInt32(0); - - return false; - } - - var (block, type) = GetBlockAndType(propertyClass); - - writer.WriteUInt8(block); - writer.WriteUInt8(type); - - // Write the template ID if this is a CoreObject. Otherwise, write the hash. - if (propertyClass is CoreObject co) { - writer.WriteUInt32((uint) (co.m_coreTemplate.m_templateID & 0xFFFFFFFF)); - } - else { - writer.WriteUInt32(propertyClass.GetHash()); - } - - return true; - } - - private static (byte, byte) GetBlockAndType(PropertyClass propClass) { - if (propClass is null) { - return (0, 0); - } - - return ((byte, byte)) (s_blockAndTypeMap.TryGetValue((int) propClass.GetHash(), out var blockAndType) ? blockAndType : (0, 0)); - } - - private static uint GetHashFromBlockAndType(byte block, byte type) { - foreach (var (key, value) in s_blockAndTypeMap) { - if (value == (block, type)) { - return (uint) key; - } - } - - return 0; - } + public override bool PreloadObject(BitReader inputBuffer, out PropertyClass? propertyClass) { + var block = inputBuffer.ReadUInt8(); + var type = inputBuffer.ReadUInt8(); + var templateIdOrHash = inputBuffer.ReadUInt32(); + + if (block == 0 && type == 0) { + // This is not serialized as a CoreObject. It's a normal object, and dispatch it as such. + propertyClass = DispatchType(templateIdOrHash); + + return propertyClass != null; + } + + // We can dispatch the type based on the template ID. + var hash = GetHashFromBlockAndType(block, type); + propertyClass = DispatchType(hash); + + return propertyClass != null; + } + + public override bool PreWriteObject(BitWriter writer, PropertyClass propertyClass) { + if (propertyClass is null) { + writer.WriteUInt8(0); + writer.WriteUInt8(0); + writer.WriteUInt32(0); + + return false; + } + + var (block, type) = GetBlockAndType(propertyClass); + + writer.WriteUInt8(block); + writer.WriteUInt8(type); + + // Write the template ID if this is a CoreObject. Otherwise, write the hash. + if (propertyClass is ObjectProperty.TypeCache.CoreObject) { + var hash = GetHashFromBlockAndType(block, type); + writer.WriteUInt32(hash); + } + else { + writer.WriteUInt32(propertyClass.GetHash()); + } + + return true; + } + + private static (byte, byte) GetBlockAndType(PropertyClass propClass) + => ((byte, byte)) (propClass is null + ? (0, 0) + : ((byte, byte)) (s_blockAndTypeMap.TryGetValue((int) propClass.GetHash(), out var blockAndType) + ? blockAndType + : (0, 0)) + ); + + private static uint GetHashFromBlockAndType(byte block, byte type) { + foreach (var (key, value) in s_blockAndTypeMap) { + if (value == (block, type)) { + return (uint) key; + } + } + + return 0; + } } \ No newline at end of file diff --git a/src/Imcodec.Cryptography/StringHash.cs b/src/Imcodec.Cryptography/StringHash.cs index 2f8cc68..7c8c3fa 100644 --- a/src/Imcodec.Cryptography/StringHash.cs +++ b/src/Imcodec.Cryptography/StringHash.cs @@ -28,11 +28,11 @@ public static class StringHash { /// The input string to compute the hash value for. /// The computed hash value. public static uint Compute(string input) { - int result = 0; - + var result = 0; var shift1 = 0; var shift2 = 32; - foreach (char c in input) { + + foreach (var c in input) { var cb = (byte) c; result ^= (cb - 32) << shift1; diff --git a/src/Imcodec.ObjectProperty.CodeGen/IncrementalSourceGenerator.cs b/src/Imcodec.ObjectProperty.CodeGen/ClientPropertyClassSourceGenerator.cs similarity index 69% rename from src/Imcodec.ObjectProperty.CodeGen/IncrementalSourceGenerator.cs rename to src/Imcodec.ObjectProperty.CodeGen/ClientPropertyClassSourceGenerator.cs index 27a90cf..064307c 100644 --- a/src/Imcodec.ObjectProperty.CodeGen/IncrementalSourceGenerator.cs +++ b/src/Imcodec.ObjectProperty.CodeGen/ClientPropertyClassSourceGenerator.cs @@ -26,11 +26,13 @@ this software without specific prior written permission. using System.Collections.Generic; using Microsoft.CodeAnalysis.Text; using System; +using Microsoft.CodeAnalysis.CSharp.Syntax; +using Microsoft.CodeAnalysis.CSharp; namespace Imcodec.ObjectProperty.CodeGen { [Generator] - public sealed class IncrementalSourceGenerator : IIncrementalGenerator { + public sealed class ClientPropertyClassSourceGenerator : IIncrementalGenerator { private const string CopyrightHeader = @"/* BSD 3-Clause License @@ -54,9 +56,40 @@ this software without specific prior written permission. private const string ContainingNamespace = "Imcodec.ObjectProperty.TypeCache"; private const string TypeRegistryClassName = "ClientGeneratedTypeRegistry"; private static readonly string s_autoGeneratedWarning = $"// "; + + $" by {typeof(ClientPropertyClassSourceGenerator).Assembly.GetName().Name}>"; + + private const string PropertyClassAttributeName = "PropertySerializationTarget"; public void Initialize(IncrementalGeneratorInitializationContext context) { + // Find all classes with the PropertySerializationTarget attribute (server types). + var serverTypeProvider = context.SyntaxProvider + .CreateSyntaxProvider( + predicate: (s, _) => s is TypeDeclarationSyntax syntax && syntax.AttributeLists.Count > 0, + transform: (ctx, _) => { + var typeSyntax = (TypeDeclarationSyntax)ctx.Node; + foreach (var attrList in typeSyntax.AttributeLists) { + foreach (var attr in attrList.Attributes) { + var attrName = attr.Name.ToString(); + if (attrName is PropertyClassAttributeName or (PropertyClassAttributeName + "Attribute")) { + return typeSyntax.Identifier.Text; + } + } + } + return null; + }) + .Where(name => name != null); + + // Collect all server type names. + var serverTypes = serverTypeProvider.Collect().Select((names, _) => { + var set = new HashSet(); + foreach (var name in names) { + if (name != null) { + set.Add(name); + } + } + return set; + }); + // Register a pipeline of source generator steps. // Find all JSON files from AdditionalFiles. IncrementalValuesProvider jsonFiles = context.AdditionalTextsProvider @@ -82,13 +115,20 @@ public void Initialize(IncrementalGeneratorInitializationContext context) { .Collect() .Select((lists, _) => lists.SelectMany(list => list).ToList()); + // Combine definitions with server types for filtering. + var definitionsAndServerTypes = combinedDefinitions.Combine(serverTypes); + // Generate source code for definitions and add to compilation. - context.RegisterSourceOutput(combinedDefinitions, (spc, allDefinitions) => { + context.RegisterSourceOutput(definitionsAndServerTypes, (spc, source) => { try { - // Extract property class definitions. + var allDefinitions = source.Item1; + var serverTypeNames = source.Item2; + + // Extract property class definitions, excluding those already defined by the server. var propertyClassDefs = allDefinitions .Where(def => def is PropertyClassDefinition) .Cast() + .Where(def => !serverTypeNames.Contains(def.Name!)) .ToList(); SetBaseClasses(ref propertyClassDefs); @@ -104,9 +144,9 @@ public void Initialize(IncrementalGeneratorInitializationContext context) { // Generate source code for each definition. foreach (var definition in propertyClassDefs.Cast().Concat(enumDefs)) { - var source = GetDefinitionAsCsharpString(definition, ContainingNamespace); - if (source != null) { - spc.AddSource($"{definition.Name}.g.cs", source); + var definitionSource = GetDefinitionAsCsharpString(definition, ContainingNamespace); + if (definitionSource != null) { + spc.AddSource($"{definition.Name}.g.cs", definitionSource); } } @@ -181,7 +221,8 @@ private static void CombineDuplicateEnumOptions(ref List enumDef private static List GetAbstractDefinitionsFromJson(string jsonInput) { var jsonCompiler = new JsonToCsharpCompiler(); - return jsonCompiler.Compile(jsonInput).ToList(); + + return [.. jsonCompiler.Compile(jsonInput)]; } private static string GetDefinitionAsCsharpString(Definition definition, string containingNamespace) { @@ -190,12 +231,36 @@ private static string GetDefinitionAsCsharpString(Definition definition, string return definition switch { EnumDefinition enumDefinition => jsonCompiler.WriteEnumAsString(enumDefinition, containingNamespace, CopyrightHeader, s_autoGeneratedWarning), - PropertyClassDefinition classDefinition => jsonCompiler.WriteClassAsString(classDefinition, + PropertyClassDefinition classDefinition => WriteClassAsStringWithSerialization(classDefinition, containingNamespace, CopyrightHeader, s_autoGeneratedWarning), _ => throw new Exception("Unknown definition type.") }; } + private static string WriteClassAsStringWithSerialization(PropertyClassDefinition classDefinition, + string containingNamespace, + string copyrightHeader, + string autoGeneratedWarning) { + var jsonCompiler = new JsonToCsharpCompiler(); + + // Get the basic class definition without serialization methods. + var basicClassDef = jsonCompiler.WriteClassAsString(classDefinition, containingNamespace, + copyrightHeader, autoGeneratedWarning); + + // Insert our generated serialization methods before the closing brace. + var lastBraceIndex = basicClassDef.LastIndexOf('}'); + if (lastBraceIndex < 0) { + return basicClassDef; // Safety check. + } + + var beforeBrace = basicClassDef.Substring(0, lastBraceIndex); + var serializationMethods = PropertyClassSerializationGenerator.GenerateSerializationMethods(classDefinition); + var versionableMethods = PropertyClassSerializationGenerator.GenerateVersionableMethods(classDefinition); + var helperMethods = PropertyClassSerializationGenerator.GenerateHelperMethods(); + + return beforeBrace + serializationMethods + versionableMethods + helperMethods + "}"; + } + private static string WriteDispatcherClass(PropertyClassDefinition[] classDefinitions, string containingNamespace) { var dispatcherBuilder = new StringBuilder(); @@ -206,7 +271,7 @@ private static string WriteDispatcherClass(PropertyClassDefinition[] classDefini dispatcherBuilder.AppendLine($"public partial class {TypeRegistryClassName} : TypeRegistry {{\n"); // Write the type lookup table. - dispatcherBuilder.AppendLine($"public {TypeRegistryClassName}() {{"); + dispatcherBuilder.AppendLine($"\tpublic {TypeRegistryClassName}() {{"); foreach (var classDefinition in classDefinitions) { dispatcherBuilder.AppendLine($"\t\tRegisterType({classDefinition.Hash}, typeof({classDefinition.Name}));"); } diff --git a/src/Imcodec.ObjectProperty.CodeGen/ExternToCsharpCompiler.cs b/src/Imcodec.ObjectProperty.CodeGen/ExternToCsharpCompiler.cs index fcf3a83..01e46fb 100644 --- a/src/Imcodec.ObjectProperty.CodeGen/ExternToCsharpCompiler.cs +++ b/src/Imcodec.ObjectProperty.CodeGen/ExternToCsharpCompiler.cs @@ -118,8 +118,10 @@ private string WritePropertyAsString(PropertyDefinition propertyDefinition) { // Flags is an integer. Cast it to the enum type, and write it as a string. var flagsStr = GetFlagsString((int) flags); - var endStr = $"// {flagsStr}" - + $"\n\t[AutoProperty({hash}, {flags})] public {propertyType} {propertyName} {{ get; set; }}"; + var endStr = + $"// Flags: ({flags}) {flagsStr}" + + $"\n\t// Hash: {hash}" + + $"\n\tpublic {propertyType} {propertyName} {{ get; set; }}"; return endStr; } diff --git a/src/Imcodec.ObjectProperty.CodeGen/PropertyClassSerializationGenerator.cs b/src/Imcodec.ObjectProperty.CodeGen/PropertyClassSerializationGenerator.cs new file mode 100644 index 0000000..33eede0 --- /dev/null +++ b/src/Imcodec.ObjectProperty.CodeGen/PropertyClassSerializationGenerator.cs @@ -0,0 +1,477 @@ +/* +BSD 3-Clause License + +Copyright (c) 2024, Jooty + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + +1. Redistributions of source code must retain the above copyright notice, this + list of conditions and the following disclaimer. + +2. Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. + +3. Neither the name of the copyright holder nor the names of its + contributors may be used to endorse or promote products derived from + this software without specific prior written permission. +*/ + +using System.Linq; +using System.Text; +using Imcodec.ObjectProperty.CodeGen.Definitions; + +namespace Imcodec.ObjectProperty.CodeGen; + +internal static class PropertyClassSerializationGenerator { + + /// + /// Generates serialization and deserialization methods for a PropertyClass. + /// + public static string GenerateSerializationMethods(PropertyClassDefinition classDefinition) { + var sb = new StringBuilder(); + + GenerateEncodeMethod(classDefinition, sb); + _ = sb.AppendLine(); + GenerateDecodeMethod(classDefinition, sb); + _ = sb.AppendLine(); + + return sb.ToString(); + } + + private static void GenerateEncodeMethod(PropertyClassDefinition classDefinition, StringBuilder sb) { + _ = sb.AppendLine("\t/// ") + .AppendLine("\t/// Encodes this object's properties using the specified writer and serializer.") + .AppendLine("\t/// ") + .AppendLine("\tpublic override bool Encode(BitWriter writer, ObjectSerializer serializer) {") + .AppendLine("\t\tOnPreEncode();") + .AppendLine() + .AppendLine("\t\tif (serializer.Versionable) {") + .AppendLine("\t\t\treturn EncodeVersionable(writer, serializer);") + .AppendLine("\t\t}") + .AppendLine(); + + // If a base class is present, encode its properties as well. + if (!HasNoBaseClass(classDefinition)) { + sb.AppendLine("\t\tbase.Encode(writer, serializer);\n"); + } + + // Add property encodings. + foreach (var property in classDefinition.Properties) { + sb.AppendLine($"\t\t// Property: {property.Name} (Hash: {property.Hash}, Flags: {property.Flags})"); + sb.AppendLine($"\t\tif (IsPropertyEligibleForProcessing((PropertyFlags) {property.Flags}, serializer)) {{"); + + sb.AppendLine(GeneratePropertyEncoding(property)); + + sb.AppendLine("\t\t}"); + sb.AppendLine(); + } + + sb.AppendLine("\t\tOnPostEncode();"); + sb.AppendLine("\t\treturn true;"); + sb.AppendLine("\t}"); + } + + private static void GenerateDecodeMethod(PropertyClassDefinition classDefinition, StringBuilder sb) { + sb.AppendLine("\t/// "); + sb.AppendLine("\t/// Decodes this object's properties using the specified reader and serializer."); + sb.AppendLine("\t/// "); + sb.AppendLine("\tpublic override bool Decode(BitReader reader, ObjectSerializer serializer) {"); + sb.AppendLine("\t\tOnPreDecode();"); + sb.AppendLine(); + sb.AppendLine("\t\tif (serializer.Versionable) {"); + sb.AppendLine("\t\t\treturn DecodeVersionable(reader, serializer);"); + sb.AppendLine("\t\t}"); + sb.AppendLine(); + + // If a base class is present, decode its properties as well. + if (!HasNoBaseClass(classDefinition)) { + sb.AppendLine("\t\tbase.Decode(reader, serializer);\n"); + } + + // Add property decodings. + foreach (var property in classDefinition.Properties) { + sb.AppendLine($"\t\t// Property: {property.Name} (Hash: {property.Hash}, Flags: {property.Flags})"); + sb.AppendLine($"\t\tif (IsPropertyEligibleForProcessing((PropertyFlags) {property.Flags}, serializer)) {{"); + + sb.AppendLine(GeneratePropertyDecoding(property)); + + sb.AppendLine("\t\t}"); + sb.AppendLine(); + } + + sb.AppendLine("\t\tOnPostDecode();"); + sb.AppendLine("\t\treturn true;"); + sb.AppendLine("\t}"); + } + + private static string GeneratePropertyEncoding(PropertyDefinition property) { + var sb = new StringBuilder(); + + // Determine the encoding logic based on the property type. + if (property.IsEnum) { + sb.AppendLine("\t\t\t// Enum encoding"); + sb.AppendLine("\t\t\tif (serializer.SerializerFlags.HasFlag(SerializerFlags.StringEnums)) {"); + sb.AppendLine($"\t\t\t\twriter.WriteString({property.Name}.ToString());"); + sb.AppendLine("\t\t\t} else {"); + sb.AppendLine($"\t\t\t\twriter.WriteUInt32((uint)(int){property.Name});"); + sb.AppendLine("\t\t\t}"); + } + else if (property.IsVector) { + var elementType = ExtractElementType(property.CsharpType); + sb.AppendLine("\t\t\t// Collection encoding"); + sb.AppendLine($"\t\t\tif ({property.Name} == null) {{"); + sb.AppendLine("\t\t\t\tWriteVectorSize(writer, 0, serializer);"); + sb.AppendLine("\t\t\t} else {"); + sb.AppendLine($"\t\t\t\tWriteVectorSize(writer, {property.Name}.Count, serializer);"); + sb.AppendLine($"\t\t\t\tforeach (var item in {property.Name}) {{"); + + var writer = GetWriterMethodForType(elementType, "item"); + if (string.IsNullOrEmpty(writer)) { + // A writer was not found. Assume the element is a PropertyClass. + sb.AppendLine("\t\t\t\t\tserializer.PreWriteObject(writer, item!);"); + sb.AppendLine("\t\t\t\t\tif (item != null) {"); + sb.AppendLine("\t\t\t\t\t\titem.Encode(writer, serializer);"); + sb.AppendLine("\t\t\t\t\t}"); + } + else { + sb.AppendLine($"\t\t\t\t\t{writer}"); + } + + sb.AppendLine("\t\t\t\t}"); + sb.AppendLine("\t\t\t}"); + } + else { + var writer = GetWriterMethodForType(property.CsharpType, property.Name!); + if (string.IsNullOrEmpty(writer)) { + // A writer was not found. Assume the property is a PropertyClass. + sb.AppendLine("\t\t\t// PropertyClass encoding"); + sb.AppendLine($"\t\t\tserializer.PreWriteObject(writer, {property.Name}!);"); + sb.AppendLine($"\t\t\tif ({property.Name} != null) {{"); + sb.AppendLine($"\t\t\t\t{property.Name}.Encode(writer, serializer);"); + sb.AppendLine("\t\t\t}"); + } + else { + sb.AppendLine($"\t\t\t{writer}"); + } + } + + return sb.ToString(); + } + + private static string GeneratePropertyDecoding(PropertyDefinition property) { + var sb = new StringBuilder(); + + // Determine the decoding logic based on the property type. + if (property.IsEnum) { + sb.AppendLine("\t\t\t// Enum decoding"); + sb.AppendLine("\t\t\tif (serializer.SerializerFlags.HasFlag(SerializerFlags.StringEnums)) {"); + sb.AppendLine("\t\t\t\tvar rawEnumString = reader.ReadString();"); + sb.AppendLine("\t\t\t\tvar enumString = SanitizeStringEnum(rawEnumString);"); + sb.AppendLine($"\t\t\t\t{property.Name} = ({property.CsharpType})Enum.Parse(typeof({property.CsharpType}), enumString, true);"); + sb.AppendLine("\t\t\t} else {"); + sb.AppendLine($"\t\t\t\t{property.Name} = ({property.CsharpType})Enum.ToObject(typeof({property.CsharpType}), reader.ReadUInt32());"); + sb.AppendLine("\t\t\t}"); + } + else if (property.IsVector) { + var elementType = ExtractElementType(property.CsharpType); + sb.AppendLine("\t\t\t// Collection decoding"); + sb.AppendLine($"\t\t\tvar len_{property.Name} = ReadVectorSize(reader, serializer);"); + sb.AppendLine($"\t\t\tif (len_{property.Name} <= 0) {{"); + sb.AppendLine($"\t\t\t\t{property.Name} = new {property.CsharpType}();"); + sb.AppendLine("\t\t\t} else {"); + sb.AppendLine($"\t\t\t\t{property.Name} = new {property.CsharpType}();"); + sb.AppendLine($"\t\t\t\tfor (int i = 0; i < len_{property.Name}; i++) {{"); + + var reader = GetReaderMethodForType(elementType, $"var item_{property.Name}"); + if (string.IsNullOrEmpty(reader)) { + // A reader was not found. Assume the element is a PropertyClass. + sb.AppendLine($"\t\t\t\t\tserializer.PreloadObject(reader, out var item_{property.Name});"); + sb.AppendLine($"\t\t\t\t\tif (item_{property.Name} != null) {{"); + sb.AppendLine($"\t\t\t\t\t\titem_{property.Name}.Decode(reader, serializer);"); + sb.AppendLine($"\t\t\t\t\t\t{property.Name}.Add(({elementType}) item_{property.Name});"); + sb.AppendLine("\t\t\t\t\t}"); + sb.AppendLine("\t\t\t\t\telse {"); + sb.AppendLine($"\t\t\t\t\t\t{property.Name}.Add(null);"); + sb.AppendLine("\t\t\t\t\t}"); + } + else { + sb.AppendLine($"\t\t\t\t\t{reader}"); + sb.AppendLine($"\t\t\t\t\t{property.Name}.Add(item_{property.Name});"); + } + + sb.AppendLine("\t\t\t\t}"); + sb.AppendLine("\t\t\t}"); + } + else { + var reader = GetReaderMethodForType(property.CsharpType, property.Name!); + if (string.IsNullOrEmpty(reader)) { + // A reader was not found. Assume the property is a PropertyClass. + sb.AppendLine("\t\t\t// PropertyClass decoding"); + sb.AppendLine($"\t\t\tserializer.PreloadObject(reader, out var item_{property.Name});"); + sb.AppendLine($"\t\t\tif (item_{property.Name} != null) {{"); + sb.AppendLine($"\t\t\t\t{property.Name} = ({property.CsharpType}) item_{property.Name};"); + sb.AppendLine($"\t\t\t\t{property.Name}.Decode(reader, serializer);"); + sb.AppendLine("\t\t\t}"); + } + else { + sb.AppendLine($"\t\t\t{reader}"); + } + } + + return sb.ToString(); + } + + private static string ExtractElementType(string collectionType) { + // Extract element type from List or T[]. + if (collectionType.StartsWith("List<") && collectionType.EndsWith(">")) { + return collectionType.Substring(5, collectionType.Length - 6); + } + if (collectionType.EndsWith("[]")) { + return collectionType.Substring(0, collectionType.Length - 2); + } + + return "object"; + } + + private static string GetWriterMethodForType(string typeName, string valueVar) => typeName switch { + "byte" => $"writer.WriteUInt8({valueVar});", + "sbyte" => $"writer.WriteInt8({valueVar});", + "char" => $"writer.WriteUInt8(Convert.ToByte({valueVar}));", + "bool" => $"writer.WriteBit({valueVar});", + "short" => $"writer.WriteInt16({valueVar});", + "ushort" => $"writer.WriteUInt16({valueVar});", + "int" => $"writer.WriteInt32({valueVar});", + "uint" => $"writer.WriteUInt32({valueVar});", + "long" => $"writer.WriteInt64({valueVar});", + "ulong" => $"writer.WriteUInt64({valueVar});", + "float" => $"writer.WriteFloat({valueVar});", + "double" => $"writer.WriteDouble({valueVar});", + "string" or "ByteString" => $"writer.WriteString({valueVar});", + "WideByteString" => $"writer.WriteWString({valueVar});", + "Vector3" => $"writer.WriteVector3({valueVar});", + "Quaternion" => $"writer.WriteQuaternion({valueVar});", + "Matrix" => $"writer.WriteMatrix({valueVar});", + "Color" => $"writer.WriteColor({valueVar});", + "Rectangle" => $"writer.WriteRectangle({valueVar});", + "RectangleF" => $"writer.WriteRectangleF({valueVar});", + "Vector2" or "Point" => $"writer.WriteVector2({valueVar});", + "GID" => $"writer.WriteUInt64({valueVar});", + "Bui2" => $"writer.WriteBits({valueVar}, 2);", + "Bui4" => $"writer.WriteBits({valueVar}, 4);", + "Bui5" => $"writer.WriteBits({valueVar}, 5);", + "Bui7" => $"writer.WriteBits({valueVar}, 7);", + "S24" => $"writer.WriteBits({valueVar}, 24);", + "U24" => $"writer.WriteBits({valueVar}, 24);", + _ => "" + }; + + private static string GetReaderMethodForType(string typeName, string variableName) { + return typeName switch { + "byte" => $"{variableName} = reader.ReadUInt8();", + "sbyte" => $"{variableName} = reader.ReadInt8();", + "char" => $"{variableName} = (char)reader.ReadUInt8();", + "bool" => $"{variableName} = reader.ReadBit();", + "short" => $"{variableName} = reader.ReadInt16();", + "ushort" => $"{variableName} = reader.ReadUInt16();", + "int" => $"{variableName} = reader.ReadInt32();", + "uint" => $"{variableName} = reader.ReadUInt32();", + "long" => $"{variableName} = reader.ReadInt64();", + "ulong" => $"{variableName} = reader.ReadUInt64();", + "float" => $"{variableName} = reader.ReadFloat();", + "double" => $"{variableName} = reader.ReadDouble();", + "string" or "ByteString" => $"{variableName} = reader.ReadString();", + "WideByteString" => $"{variableName} = reader.ReadWString();", + "Vector3" => $"{variableName} = reader.ReadVector3();", + "Quaternion" => $"{variableName} = reader.ReadQuaternion();", + "Matrix" => $"{variableName} = (Matrix) reader.ReadMatrix();", + "Color" => $"{variableName} = reader.ReadColor();", + "Rectangle" => $"{variableName} = reader.ReadRectangle();", + "RectangleF" => $"{variableName} = reader.ReadRectangleF();", + "Vector2" => $"{variableName} = reader.ReadVector2();", + "Point" => $"{variableName} = (Point) reader.ReadVector2();", + "GID" => $"{variableName} = reader.ReadUInt64();", + "Bui2" => $"{variableName} = (Bui2) reader.ReadBits(2);", + "Bui4" => $"{variableName} = (Bui4) reader.ReadBits(4);", + "Bui5" => $"{variableName} = (Bui5) reader.ReadBits(5);", + "Bui7" => $"{variableName} = (Bui7) reader.ReadBits(7);", + "S24" => $"{variableName} = (S24) reader.ReadBits(24);", + "U24" => $"{variableName} = (U24) reader.ReadBits(24);", + _ => "" + }; + } + + public static string GenerateVersionableMethods(PropertyClassDefinition classDefinition) { + var sb = new StringBuilder(); + + // Generate EncodeVersionable method. + sb.AppendLine("\t/// "); + sb.AppendLine("\t/// Encodes this object's properties using the specified writer and serializer in versionable format."); + sb.AppendLine("\t/// "); + sb.AppendLine("\tprivate bool EncodeVersionable(BitWriter writer, ObjectSerializer serializer) {"); + sb.AppendLine("\t\tvar objectStart = writer.BitPos();"); + sb.AppendLine("\t\twriter.WriteUInt32(0); // Placeholder for the size"); + sb.AppendLine(); + + // If a base class is present, encode its properties as well. + if (!HasNoBaseClass(classDefinition)) { + sb.AppendLine("\t\tbase.Encode(writer, serializer);\n"); + } + + // Add property encoding for versionable format. + foreach (var property in classDefinition.Properties) { + sb.AppendLine($"\t\t// Property: {property.Name} (Hash: {property.Hash}, Flags: {property.Flags})"); + sb.AppendLine($"\t\tif (IsPropertyEligibleForProcessing((PropertyFlags) {property.Flags}, serializer)) {{"); + sb.AppendLine("\t\t\t// Write the hash and size of the property"); + sb.AppendLine("\t\t\tvar sizeStart = writer.BitPos();"); + sb.AppendLine("\t\t\twriter.WriteUInt32(0); // Placeholder for the size"); + sb.AppendLine($"\t\t\twriter.WriteUInt32({property.Hash});"); + sb.AppendLine(); + sb.AppendLine("\t\t\tvar preEncodeBitPos = writer.BitPos();"); + + // Generate encoding for this property. + sb.AppendLine(GeneratePropertyEncoding(property).Replace("\t\t\t", "\t\t\t\t")); + + sb.AppendLine(); + sb.AppendLine("\t\t\t// Write the size of the property"); + sb.AppendLine("\t\t\tvar size = writer.BitPos() - preEncodeBitPos;"); + sb.AppendLine("\t\t\twriter.SeekBit(sizeStart);"); + sb.AppendLine("\t\t\twriter.WriteUInt32((uint)size);"); + sb.AppendLine("\t\t\twriter.SeekBit(preEncodeBitPos + size);"); + sb.AppendLine("\t\t}"); + sb.AppendLine(); + } + + sb.AppendLine("\t\t// Write the size of the object"); + sb.AppendLine("\t\tvar objectSize = writer.BitPos() - objectStart;"); + sb.AppendLine("\t\twriter.SeekBit(objectStart);"); + sb.AppendLine("\t\twriter.WriteUInt32((uint)objectSize);"); + sb.AppendLine("\t\twriter.SeekBit(objectStart + objectSize);"); + sb.AppendLine(); + sb.AppendLine("\t\treturn true;"); + sb.AppendLine("\t}"); + + // Generate DecodeVersionable method. + sb.AppendLine(); + sb.AppendLine("\t/// "); + sb.AppendLine("\t/// Decodes this object's properties using the specified reader and serializer in versionable format."); + sb.AppendLine("\t/// "); + sb.AppendLine("\tprivate bool DecodeVersionable(BitReader reader, ObjectSerializer serializer) {"); + sb.AppendLine("\t\t// Properties may be out of order in the binary stream"); + sb.AppendLine("\t\tvar objectStart = reader.BitPos();"); + sb.AppendLine("\t\tvar objectSize = reader.ReadUInt32();"); + + // If a base class is present, decode its properties as well. + if (!HasNoBaseClass(classDefinition)) { + sb.AppendLine("\t\tbase.Decode(reader, serializer);\n"); + } + + sb.AppendLine(); + sb.AppendLine("\t\twhile (reader.BitPos() - objectStart < objectSize) {"); + sb.AppendLine("\t\t\tvar propertyStart = reader.BitPos();"); + sb.AppendLine("\t\t\tvar propertySize = reader.ReadUInt32();"); + sb.AppendLine("\t\t\tvar propertyHash = reader.ReadUInt32();"); + sb.AppendLine(); + sb.AppendLine("\t\t\t// A property size of 0 would cause an infinite loop"); + sb.AppendLine("\t\t\tif (propertySize == 0) {"); + sb.AppendLine("\t\t\t\treturn false;"); + sb.AppendLine("\t\t\t}"); + sb.AppendLine(); + sb.AppendLine("\t\t\t// Switch on property hash to find the right property"); + sb.AppendLine("\t\t\tswitch (propertyHash) {"); + + // Generate case statements for each property. + var missingHashCounter = 9; + foreach (var property in classDefinition.Properties) { + var hash = property.Hash == 0 + ? $"0x{missingHashCounter++:X8}" + : $"0x{property.Hash:X8}"; + sb.AppendLine($"\t\t\t\tcase {hash}: // {property.Name}"); + + // Generate decoding for this property. + sb.Append(GeneratePropertyDecoding(property).Replace("\t\t\t", "\t\t\t\t\t")); + + sb.AppendLine("\t\t\t\t\tbreak;"); + sb.AppendLine(); + } + + sb.AppendLine("\t\t\t\tdefault:"); + sb.AppendLine("\t\t\t\t\t// Unknown property, skip it"); + sb.AppendLine("\t\t\t\t\tbreak;"); + sb.AppendLine("\t\t\t}"); + sb.AppendLine(); + + sb.AppendLine("\t\t\t// Seek bit to the end of this property"); + sb.AppendLine("\t\t\treader.SeekBit((int) (propertyStart + propertySize));"); + sb.AppendLine("\t\t}"); + sb.AppendLine(); + + sb.AppendLine("\t\t// Seek bit to the end of this object"); + sb.AppendLine("\t\treader.SeekBit((int) (objectStart + objectSize));"); + sb.AppendLine("\t\treturn true;"); + sb.AppendLine("\t}"); + sb.AppendLine(); + + return sb.ToString(); + } + + public static string GenerateHelperMethods() { + var sb = new StringBuilder() + .AppendLine("\tprivate static bool IsPropertyEligibleForProcessing(PropertyFlags propertyFlags, ObjectSerializer serializer) {") + .AppendLine("\t\tvar serializerFlags = serializer.SerializerFlags;") + .AppendLine("\t\tvar serializerMask = serializer.PropertyMask;") + .AppendLine() + .AppendLine("\t\t// Properties with the Prop_Encode flag set are always encoded") + .AppendLine("\t\tvar alwaysEncode = serializerFlags.HasFlag(SerializerFlags.DirtyEncode) && propertyFlags.HasFlag(PropertyFlags.Prop_Encode);") + .AppendLine() + .AppendLine("\t\t// Check if the property mask is met and if the property is deprecated") + .AppendLine("\t\tvar propertyMaskMet = (propertyFlags & serializerMask) == serializerMask;") + .AppendLine("\t\tvar deprecated = propertyFlags.HasFlag(PropertyFlags.Prop_Deprecated);") + .AppendLine() + .AppendLine("\t\t// Skip properties that are not marked for serialization or are deprecated and not dirty encoded") + .AppendLine("\t\treturn propertyMaskMet && (!deprecated || alwaysEncode);") + .AppendLine("\t}") + .AppendLine() + .AppendLine("\tprivate static void WriteVectorSize(BitWriter writer, int size, ObjectSerializer serializer) {") + .AppendLine("\t\tif (serializer.SerializerFlags.HasFlag(SerializerFlags.CompactLength)) {") + .AppendLine("\t\t\tif (size < 127) {") + .AppendLine("\t\t\t\twriter.WriteBits((byte)size, 7);") + .AppendLine("\t\t\t} else {") + .AppendLine("\t\t\t\twriter.WriteBit(true);") + .AppendLine("\t\t\t\twriter.WriteUInt32((uint)size);") + .AppendLine("\t\t\t}") + .AppendLine("\t\t} else {") + .AppendLine("\t\t\twriter.WriteUInt32((uint)size);") + .AppendLine("\t\t}") + .AppendLine("\t}") + .AppendLine() + .AppendLine("\tprivate static uint ReadVectorSize(BitReader reader, ObjectSerializer serializer) {") + .AppendLine("\t\tif (serializer.SerializerFlags.HasFlag(SerializerFlags.CompactLength)) {") + .AppendLine("\t\t\tvar sizeRedundant = reader.ReadBit();") + .AppendLine("\t\t\treturn reader.ReadBits(sizeRedundant ? 31 : 7);") + .AppendLine("\t\t} else {") + .AppendLine("\t\t\treturn reader.ReadUInt32();") + .AppendLine("\t\t}") + .AppendLine("\t}") + .AppendLine() + .AppendLine("\tprivate static string SanitizeStringEnum(string enumString) {") + .AppendLine("\t\t// Client inconsistency: The client will sometimes use '-' and '_' interchangably.") + .AppendLine("\t\tenumString = enumString.Replace('-', '_');") + .AppendLine() + .AppendLine("\t\t// The client is written with C++. We'll replace the scope operator with the C# namespace") + .AppendLine("\t\tenumString = enumString.Replace(\"::\", \".\");") + .AppendLine("\t\tenumString = enumString.Substring(enumString.LastIndexOf('.') + 1);") + .AppendLine() + .AppendLine("\t\treturn enumString;") + .AppendLine("\t}") + .AppendLine(); + + return sb.ToString(); + } + + private static bool HasNoBaseClass(PropertyClassDefinition classDefinition) + => classDefinition.BaseClassNames.Count == 1 + && classDefinition.BaseClassNames.All(static x => x == "PropertyClass"); + +} diff --git a/src/Imcodec.ObjectProperty.CodeGen/ServerPropertyClassSourceGenerator.cs b/src/Imcodec.ObjectProperty.CodeGen/ServerPropertyClassSourceGenerator.cs new file mode 100644 index 0000000..eff51a4 --- /dev/null +++ b/src/Imcodec.ObjectProperty.CodeGen/ServerPropertyClassSourceGenerator.cs @@ -0,0 +1,440 @@ +/* +BSD 3-Clause License + +Copyright (c) 2024, Jooty + +Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are met: + +1. Redistributions of source code must retain the above copyright notice, this + list of conditions and the following disclaimer. + +2. Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. + +3. Neither the name of the copyright holder nor the names of its + contributors may be used to endorse or promote products derived from + this software without specific prior written permission. +*/ + +using System; +using System.Collections.Generic; +using System.Collections.Immutable; +using System.Linq; +using System.Text; +using Microsoft.CodeAnalysis; +using Microsoft.CodeAnalysis.CSharp; +using Microsoft.CodeAnalysis.CSharp.Syntax; +using Microsoft.CodeAnalysis.Text; +using Imcodec.ObjectProperty.CodeGen.Definitions; + +namespace Imcodec.ObjectProperty.CodeGen { + + [Generator] + public sealed class ServerPropertyClassSourceGenerator : IIncrementalGenerator { + + private const string CopyrightHeader = @"/* +BSD 3-Clause License + +Copyright (c) 2024, Jooty + +Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are met: + +1. Redistributions of source code must retain the above copyright notice, this + list of conditions and the following disclaimer. + +2. Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. + +3. Neither the name of the copyright holder nor the names of its + contributors may be used to endorse or promote products derived from + this software without specific prior written permission. +*/"; + + private const string ContainingNamespace = "Imcodec.ObjectProperty.TypeCache"; + private const string TypeRegistryClassName = "ServerGeneratedTypeRegistry"; + private static readonly string s_autoGeneratedWarning = $"// "; + + private const string PropertyClassAttributeName = "PropertySerializationTarget"; + private const string AutoPropertyAttributeName = "PropertyField"; + + public void Initialize(IncrementalGeneratorInitializationContext context) { + // Get all class declarations with our target attribute (PropertySerializationTargetAttribute). + var typeDeclarations = context.SyntaxProvider + .CreateSyntaxProvider( + predicate: static (s, _) => IsCandidateClass(s), + transform: static (ctx, _) => ctx.Node as TypeDeclarationSyntax) + .Where(type => type is not null) + .Select((type, _) => type!) + .Where(type => HasAttribute(type, PropertyClassAttributeName)); + + // Register source output. + IncrementalValueProvider<(Compilation, ImmutableArray)> compilationAndClasses = + context.CompilationProvider.Combine(typeDeclarations.Collect()); + + context.RegisterSourceOutput(compilationAndClasses, + (spc, source) => Execute(source.Item1, source.Item2, spc)); + } + + private static bool IsCandidateClass(SyntaxNode node) + => (node is ClassDeclarationSyntax || node is RecordDeclarationSyntax) && + (node as TypeDeclarationSyntax)?.AttributeLists.Count > 0 && + (node as TypeDeclarationSyntax)?.Modifiers.Any(m => m.IsKind(SyntaxKind.PartialKeyword)) == true; + + private bool HasAttribute(TypeDeclarationSyntax classDeclaration, string attributeName) { + foreach (var attributeList in classDeclaration.AttributeLists) { + foreach (var attribute in attributeList.Attributes) { + var name = attribute.Name.ToString(); + if (name == attributeName || name == attributeName + "Attribute") { + return true; + } + } + } + + return false; + } + + private void Execute(Compilation compilation, ImmutableArray types, SourceProductionContext context) { + if (types.IsDefaultOrEmpty) { + return; + } + + var typeDefinitions = new List(); + foreach (var typeDeclaration in types) { + try { + var classDefinition = ProcessClass(compilation, typeDeclaration); + if (classDefinition != null) { + typeDefinitions.Add(classDefinition); + + // Generate serialization code for this class. + var source = GenerateSerializationCode(classDefinition, GetNamespace(typeDeclaration)); + context.AddSource($"{classDefinition.Name}.g.cs", SourceText.From(source, Encoding.UTF8)); + + context.ReportDiagnostic( + Diagnostic.Create( + new DiagnosticDescriptor( + "IMC0004", + "Source Generation Information", + $"Generated source file: {classDefinition.Name}.g.cs with {classDefinition.Properties.Count} properties", + "Imcodec.ObjectProperty.CodeGen", + DiagnosticSeverity.Info, + isEnabledByDefault: true), + Location.None)); + } + else { + context.ReportDiagnostic( + Diagnostic.Create( + new DiagnosticDescriptor( + "IMC0001", + "Class Processing Error", + $"Failed to process class {typeDeclaration.Identifier}", + "Imcodec.ObjectProperty.CodeGen", + DiagnosticSeverity.Error, + isEnabledByDefault: true), + Location.None)); + } + } + catch (Exception ex) { + context.ReportDiagnostic( + Diagnostic.Create( + new DiagnosticDescriptor( + "IMC0002", + "Server Property Class Generation Error", + $"Error processing class {typeDeclaration.Identifier}: {ex.Message}", + "Imcodec.ObjectProperty.CodeGen", + DiagnosticSeverity.Error, + isEnabledByDefault: true), + Location.None)); + } + } + + // Generate the type registry class. + try { + var dispatcherSource = WriteDispatcherClass(typeDefinitions.ToArray(), ContainingNamespace); + context.AddSource($"{TypeRegistryClassName}.g.cs", SourceText.From(dispatcherSource, Encoding.UTF8)); + } + catch (Exception ex) { + context.ReportDiagnostic( + Diagnostic.Create( + new DiagnosticDescriptor( + "IMC0003", + "Type Registry Generation Error", + $"Error generating type registry: {ex.Message}", + "Imcodec.ObjectProperty.CodeGen", + DiagnosticSeverity.Error, + isEnabledByDefault: true), + Location.None)); + } + } + + private string GetNamespace(TypeDeclarationSyntax classDeclaration) { + SyntaxNode? parent = classDeclaration.Parent; + while ( parent != null && !(parent is NamespaceDeclarationSyntax) + && !(parent is FileScopedNamespaceDeclarationSyntax)) { + parent = parent.Parent; + } + + if (parent is NamespaceDeclarationSyntax namespaceDeclaration) { + return namespaceDeclaration.Name.ToString(); + } + + if (parent is FileScopedNamespaceDeclarationSyntax fileScopedNamespace) { + return fileScopedNamespace.Name.ToString(); + } + + return string.Empty; + } + + private PropertyClassDefinition? ProcessClass(Compilation compilation, TypeDeclarationSyntax classDeclaration) { + var semanticModel = compilation.GetSemanticModel(classDeclaration.SyntaxTree); + var className = classDeclaration.Identifier.Text; + var hash = GetClassHash(classDeclaration); + var classDefinition = new PropertyClassDefinition(className, hash); + + // Add base classes. + if (classDeclaration.BaseList != null) { + foreach (var baseType in classDeclaration.BaseList.Types) { + var baseTypeName = baseType.Type.ToString(); + classDefinition.AddBaseClass(baseTypeName); + } + } + else { + // Default to PropertyClass if no base type is specified. + classDefinition.AddBaseClass("PropertyClass"); + } + + // Process properties with AutoProperty attribute. + int propertyCount = 0; + foreach (var member in classDeclaration.Members) { + if (member is PropertyDeclarationSyntax propertyDeclaration) { + var propertyDefinition = ProcessProperty(propertyDeclaration, semanticModel); + if (propertyDefinition != null) { + classDefinition.Properties.Add(propertyDefinition); + propertyCount++; + } + } + } + + return classDefinition; + } + + private uint GetClassHash(TypeDeclarationSyntax classDeclaration) { + // Look for the GetHash method with a hexadecimal return value. + foreach (var member in classDeclaration.Members) { + if (member is MethodDeclarationSyntax methodDeclaration && + methodDeclaration.Identifier.Text == "GetHash" && + methodDeclaration.Modifiers.Any(m => m.IsKind(SyntaxKind.OverrideKeyword))) { + + if (methodDeclaration.Body != null) { + foreach (var statement in methodDeclaration.Body.Statements) { + if (statement is ReturnStatementSyntax returnStmt) { + // Try to extract hash value. + string expressionText = returnStmt.Expression!.ToString(); + + // Remove "0x" prefix if present. + if (expressionText.StartsWith("0x", StringComparison.OrdinalIgnoreCase)) { + expressionText = expressionText.Substring(2); + } + + if (uint.TryParse(expressionText, + System.Globalization.NumberStyles.HexNumber, + null, out uint hashValue)) { + return hashValue; + } + } + } + } + else if (methodDeclaration.ExpressionBody != null) { + // Handle expression-bodied methods: public override uint GetHash() => 0x12345678; + string expressionText = methodDeclaration.ExpressionBody.Expression.ToString(); + + // Remove "0x" prefix if present. + if (expressionText.StartsWith("0x", StringComparison.OrdinalIgnoreCase)) { + expressionText = expressionText.Substring(2); + } + + if (uint.TryParse(expressionText, + System.Globalization.NumberStyles.HexNumber, + null, out uint hashValue)) { + return hashValue; + } + } + } + } + + // Default hash value if none found. + return 0; + } + + private PropertyDefinition? ProcessProperty(PropertyDeclarationSyntax propertyDeclaration, SemanticModel semanticModel) { + // Check if the property has the AutoProperty attribute. + bool hasAutoProperty = false; + AttributeSyntax? autoPropertyAttribute = null; + + foreach (var attributeList in propertyDeclaration.AttributeLists) { + foreach (var attribute in attributeList.Attributes) { + var attributeName = attribute.Name.ToString(); + if ( attributeName == AutoPropertyAttributeName + || attributeName == AutoPropertyAttributeName + "Attribute") { + hasAutoProperty = true; + autoPropertyAttribute = attribute; + + break; + } + } + + if (hasAutoProperty) { + break; + } + } + + if (!hasAutoProperty || autoPropertyAttribute?.ArgumentList == null || + autoPropertyAttribute.ArgumentList.Arguments.Count < 2) { + + return null; + } + + uint hash = 0; + uint flags = 0; + + var hashArg = autoPropertyAttribute.ArgumentList.Arguments[0].Expression.ToString(); + var flagsArg = autoPropertyAttribute.ArgumentList.Arguments[1].Expression.ToString(); + + // Handle hexadecimal hash values. + if (hashArg.StartsWith("0x", StringComparison.OrdinalIgnoreCase)) { + hashArg = hashArg.Substring(2); + _ = uint.TryParse(hashArg, System.Globalization.NumberStyles.HexNumber, null, out hash); + } + + // Parse flags. + _ = uint.TryParse(flagsArg, out flags); + + // Get property type information. + var propertyName = propertyDeclaration.Identifier.Text; + var propertyType = propertyDeclaration.Type.ToString(); + + // Check if it's a collection type. + string container = ""; + if (propertyType.StartsWith("List<") || propertyType.EndsWith("[]")) { + container = "List"; + + // If the property is a collection, grab the internal type. + if (propertyType.StartsWith("List<")) { + // Find the closing angle bracket for the List type. + int startIndex = propertyType.IndexOf('<') + 1; + int endIndex = propertyType.LastIndexOf('>'); + propertyType = propertyType.Substring(startIndex, endIndex - startIndex); + } + else if (propertyType.EndsWith("[]")) { + // Find the closing bracket for the array type. + int startIndex = propertyType.IndexOf('[') + 1; + int endIndex = propertyType.LastIndexOf(']'); + propertyType = propertyType.Substring(startIndex, endIndex - startIndex); + } + } + + // Check if it's an enum type. + var propertySymbol = semanticModel.GetDeclaredSymbol(propertyDeclaration); + var isEnum = propertySymbol?.Type.TypeKind == TypeKind.Enum + || (flags & (uint) PropertyFlags.Prop_Enum) != 0; + + // Get enum options if it's an enum. + var enumOptions = new Dictionary(); + if (isEnum && propertySymbol != null) { + if (propertySymbol.Type is INamedTypeSymbol enumType) { + foreach (var member in enumType.GetMembers().OfType() + .Where(m => m.HasConstantValue)) { + enumOptions[member.Name] = member.ConstantValue!; + } + } + + // Add "enum " prefix to type name for enum types + propertyType = "enum " + propertyType; + } + + // Create property definition. + var propDef = new PropertyDefinition( + propertyName, + propertyType, + flags, + container, + hash, + enumOptions); + + return propDef; + } + + private string GenerateSerializationCode(PropertyClassDefinition classDefinition, string namespaceName) { + var sb = new StringBuilder(); + + // Add copyright header and auto-generated warning. + sb.AppendLine(CopyrightHeader); + sb.AppendLine(); + sb.AppendLine(s_autoGeneratedWarning); + sb.AppendLine(); + + // Enable nullable reference types. + sb.AppendLine("#nullable enable"); + sb.AppendLine(); + + // Add usings. + sb.AppendLine("using System;"); + sb.AppendLine("using System.Collections.Generic;"); + sb.AppendLine("using Imcodec.Types;"); + sb.AppendLine("using Imcodec.IO;"); + sb.AppendLine("using Imcodec.Math;"); + sb.AppendLine("using Imcodec.ObjectProperty;"); + sb.AppendLine("using Imcodec.ObjectProperty.Bit;"); + sb.AppendLine(); + + // Add namespace and partial class declaration. + var topMostBaseClass = classDefinition.BaseClassNames[0]; + sb.AppendLine($"namespace {namespaceName};"); + sb.AppendLine(); + sb.AppendLine($"public partial record {classDefinition.Name} : {topMostBaseClass} {{\n"); + + // Generate serialization methods. + sb.Append(PropertyClassSerializationGenerator.GenerateSerializationMethods(classDefinition)); + + // Generate versionable methods. + sb.Append(PropertyClassSerializationGenerator.GenerateVersionableMethods(classDefinition)); + + // Generate helper methods. + sb.Append(PropertyClassSerializationGenerator.GenerateHelperMethods()); + + sb.AppendLine("}"); + + return sb.ToString(); + } + + private string WriteDispatcherClass(PropertyClassDefinition[] classDefinitions, string containingNamespace) { + var dispatcherBuilder = new StringBuilder(); + dispatcherBuilder.AppendLine($"{CopyrightHeader}\n"); + dispatcherBuilder.AppendLine($"{s_autoGeneratedWarning}\n"); + + dispatcherBuilder.AppendLine("using System;"); + dispatcherBuilder.AppendLine("using System.Collections.Generic;"); + + dispatcherBuilder.AppendLine($"\nnamespace {containingNamespace};\n"); + + dispatcherBuilder.AppendLine($"public partial class {TypeRegistryClassName} : TypeRegistry {{\n"); + + // Write the type lookup table constructor. + dispatcherBuilder.AppendLine($"\tpublic {TypeRegistryClassName}() {{"); + foreach (var classDefinition in classDefinitions) { + dispatcherBuilder.AppendLine($"\t\tRegisterType({classDefinition.Hash}, typeof({classDefinition.Name}));"); + } + dispatcherBuilder.AppendLine("\t}\n"); + + dispatcherBuilder.AppendLine("}"); + + return dispatcherBuilder.ToString(); + } + + } + +} \ No newline at end of file diff --git a/src/Imcodec.ObjectProperty/Attributes/PropertyFieldAttribute.cs b/src/Imcodec.ObjectProperty/Attributes/PropertyFieldAttribute.cs new file mode 100644 index 0000000..dba569a --- /dev/null +++ b/src/Imcodec.ObjectProperty/Attributes/PropertyFieldAttribute.cs @@ -0,0 +1,49 @@ +/* +BSD 3-Clause License + +Copyright (c) 2024, Jooty + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + +1. Redistributions of source code must retain the above copyright notice, this + list of conditions and the following disclaimer. + +2. Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. + +3. Neither the name of the copyright holder nor the names of its + contributors may be used to endorse or promote products derived from + this software without specific prior written permission. +*/ + +namespace Imcodec.ObjectProperty.Attributes; + +/// +/// Marks a property for automatic serialization by the property system. +/// +[AttributeUsage(AttributeTargets.Property, AllowMultiple = false, Inherited = false)] +public sealed class PropertyFieldAttribute : Attribute { + + /// + /// The hash value of the property. + /// + public uint Hash { get; } + + /// + /// The flags that define the property's behavior. + /// + public uint Flags { get; } + + /// + /// Creates a new AutoProperty attribute. + /// + /// The hash value of the property. + /// The flags that define the property's behavior. + public PropertyFieldAttribute(uint hash, uint flags) { + Hash = hash; + Flags = flags; + } + +} \ No newline at end of file diff --git a/src/Imcodec.CoreObject/CoreTemplate.cs b/src/Imcodec.ObjectProperty/Attributes/PropertySerializationTargetAttribute.cs similarity index 64% rename from src/Imcodec.CoreObject/CoreTemplate.cs rename to src/Imcodec.ObjectProperty/Attributes/PropertySerializationTargetAttribute.cs index ba8414d..8793abb 100644 --- a/src/Imcodec.CoreObject/CoreTemplate.cs +++ b/src/Imcodec.ObjectProperty/Attributes/PropertySerializationTargetAttribute.cs @@ -18,15 +18,12 @@ contributors may be used to endorse or promote products derived from this software without specific prior written permission. */ -using Imcodec.ObjectProperty; -using Imcodec.Types; - -namespace Imcodec.CoreObject; - -public partial record CoreTemplate : PropertyClass { - - public override uint GetHash() => 1068918295; - - public GID m_templateID { get; init; } - -} \ No newline at end of file +namespace Imcodec.ObjectProperty.Attributes; + +/// +/// Marks a class as a server-side property class. +/// This attribute triggers the source generator to create serialization methods. +/// The decorated class must be partial. +/// +[AttributeUsage(AttributeTargets.Class, AllowMultiple = false, Inherited = false)] +public sealed class PropertySerializationTargetAttribute : Attribute { } \ No newline at end of file diff --git a/src/Imcodec.ObjectProperty/GeneratorInput/r766693_WizardDev.json b/src/Imcodec.ObjectProperty/GeneratorInput/r771641_Wizard_1_560.json similarity index 99% rename from src/Imcodec.ObjectProperty/GeneratorInput/r766693_WizardDev.json rename to src/Imcodec.ObjectProperty/GeneratorInput/r771641_Wizard_1_560.json index c57e9f1..60f6175 100644 --- a/src/Imcodec.ObjectProperty/GeneratorInput/r766693_WizardDev.json +++ b/src/Imcodec.ObjectProperty/GeneratorInput/r771641_Wizard_1_560.json @@ -1,192 +1,68 @@ { "version": 2, "classes": { - "2106942585": { - "name": "class ClientShadowCreatureCameraCutCinematicAction*", + "171701550": { + "name": "class CinematicDefTemplate", "bases": [ - "ShadowCreatureCameraCutCinematicAction", - "ActorCinematicAction", - "CinematicAction", + "CoreTemplate", "PropertyClass" ], - "hash": 2106942585, + "hash": 171701550, "properties": { - "m_timeOffset": { - "type": "float", + "m_behaviors": { + "type": "class BehaviorTemplate*", "id": 0, "offset": 72, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "Vector", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 2237098605 + "pointer": true, + "hash": 1197808594 }, - "m_actor": { + "m_nifFile": { "type": "std::string", "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - } - } - }, - "1675105539": { - "name": "class SharedPointer", - "bases": [ - "ReqNumeric", - "Requirement", - "PropertyClass" - ], - "hash": 1675105539, - "properties": { - "m_applyNOT": { - "type": "bool", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1746328074, - "enum_options": { - "__DEFAULT": 0 - } - }, - "m_operator": { - "type": "enum Requirement::Operator", - "id": 1, - "offset": 76, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2672792317, - "enum_options": { - "ROP_AND": 0, - "ROP_OR": 1, - "__DEFAULT": "ROP_AND" - } - }, - "m_numericValue": { - "type": "float", - "id": 2, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 521915239 - }, - "m_operatorType": { - "type": "enum ReqNumeric::OPERATOR_TYPE", - "id": 3, - "offset": 84, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2228122961, - "enum_options": { - "OPERATOR_UNKNOWN": 4294967295, - "OPERATOR_EQUALS": 0, - "OPERATOR_GREATER_THAN": 1, - "OPERATOR_LESS_THAN": 2, - "OPERATOR_GREATER_THAN_EQ": 3, - "OPERATOR_LESS_THAN_EQ": 4 - } - } - } - }, - "2085857565": { - "name": "class PathActionZoneEvent", - "bases": [ - "PathBehaviorTemplate::Action", - "PropertyClass" - ], - "hash": 2085857565, - "properties": { - "m_nPathID": { - "type": "gid", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 214382368 - }, - "m_nNodeID": { - "type": "int", - "id": 1, - "offset": 80, - "flags": 7, + "offset": 136, + "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 152152635, - "enum_options": { - "__DEFAULT": 4294967295 - } + "hash": 2694762008 }, - "m_nPriority": { - "type": "int", + "m_delay": { + "type": "double", "id": 2, - "offset": 84, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1515251530, - "enum_options": { - "__DEFAULT": 100 - } - }, - "m_nChance": { - "type": "int", - "id": 3, - "offset": 88, + "offset": 168, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1860748394, - "enum_options": { - "__DEFAULT": 50 - } + "hash": 2689597116 }, - "m_zoneEvent": { + "m_cinematicName": { "type": "std::string", - "id": 4, + "id": 3, "offset": 96, - "flags": 7, + "flags": 134217735, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2234553529 + "hash": 2611527497 } } }, - "907428034": { - "name": "class SharedPointer", + "173039290": { + "name": "class SharedPointer", "bases": [ + "PvPStatueBehavior", "BehaviorInstance", "PropertyClass" ], - "hash": 907428034, + "hash": 173039290, "properties": { "m_behaviorTemplateNameID": { "type": "unsigned int", @@ -199,291 +75,288 @@ "pointer": false, "hash": 223437287 }, - "m_castleMagicData": { + "m_targetLeague": { "type": "std::string", "id": 1, - "offset": 128, - "flags": 575, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2874597138 - } - } - }, - "906141780": { - "name": "class IgnoreEntryData", - "bases": [ - "PropertyClass" - ], - "hash": 906141780, - "properties": { - "m_ignoreName": { - "type": "std::string", - "id": 0, - "offset": 72, + "offset": 112, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2203859488 + "hash": 3312829397 }, - "m_characterID": { - "type": "gid", - "id": 1, - "offset": 104, + "m_rank": { + "type": "int", + "id": 2, + "offset": 144, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 210498386 + "hash": 219803942 }, - "m_gameObjectID": { - "type": "gid", - "id": 2, - "offset": 112, + "m_refreshRateSec": { + "type": "int", + "id": 3, + "offset": 148, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 23229750 - } - } - }, - "905789819": { - "name": "class TutorialServiceOption*", - "bases": [ - "ServiceOptionBase", - "PropertyClass" - ], - "hash": 905789819, - "properties": { - "m_serviceName": { - "type": "std::string", - "id": 0, - "offset": 72, + "hash": 418402320 + }, + "m_groundOffset": { + "type": "float", + "id": 4, + "offset": 152, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2206028813 + "hash": 684524077 }, - "m_iconKey": { - "type": "std::string", - "id": 1, - "offset": 168, + "m_yaw": { + "type": "float", + "id": 5, + "offset": 156, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2457138637 + "hash": 357256328 }, - "m_displayKey": { - "type": "std::string", - "id": 2, - "offset": 104, + "m_showNametag": { + "type": "bool", + "id": 6, + "offset": 160, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3023276954 + "hash": 584664753 }, - "m_serviceIndex": { - "type": "unsigned int", - "id": 3, - "offset": 204, + "m_showInGrace": { + "type": "bool", + "id": 7, + "offset": 161, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2103126710 + "hash": 1033917517 }, - "m_forceInteract": { + "m_showActive": { "type": "bool", - "id": 4, - "offset": 200, + "id": 8, + "offset": 162, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1705789564 - } - } - }, - "1676064302": { - "name": "class NamedEffectTemplate*", - "bases": [ - "GameEffectTemplate", - "PropertyClass" - ], - "hash": 1676064302, - "properties": { - "m_effectName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, + "hash": 685431312 + }, + "m_scale": { + "type": "float", + "id": 9, + "offset": 164, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2029161513 + "hash": 899693439 }, - "m_effectCategory": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 7, + "m_alpha": { + "type": "float", + "id": 10, + "offset": 168, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1852673222 + "hash": 878686493 }, - "m_sortOrder": { - "type": "int", - "id": 2, - "offset": 148, - "flags": 7, + "m_animDelaySec": { + "type": "float", + "id": 11, + "offset": 172, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1411218206 + "hash": 2131058854 }, - "m_duration": { - "type": "double", - "id": 3, - "offset": 192, - "flags": 7, + "m_animChance": { + "type": "float", + "id": 12, + "offset": 176, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2727932435 + "hash": 434823806 }, - "m_stackingCategories": { + "m_animList": { "type": "std::string", - "id": 4, - "offset": 160, - "flags": 7, + "id": 13, + "offset": 184, + "flags": 31, "container": "List", "dynamic": true, "singleton": false, "pointer": false, - "hash": 1774497525 + "hash": 2531745852 }, - "m_isPersistent": { - "type": "bool", - "id": 5, - "offset": 153, - "flags": 7, + "m_leagueID": { + "type": "unsigned int", + "id": 14, + "offset": 200, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 923861920 + "hash": 692361645 }, - "m_bIsOnPet": { - "type": "bool", - "id": 6, - "offset": 154, - "flags": 7, + "m_seasonID": { + "type": "unsigned int", + "id": 15, + "offset": 204, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 522593303 + "hash": 535260643 }, - "m_isPublic": { - "type": "bool", - "id": 7, - "offset": 152, - "flags": 7, + "m_startTime": { + "type": "unsigned int", + "id": 16, + "offset": 208, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1728439822 + "hash": 1598371274 }, - "m_visualEffectAddName": { + "m_visualBlob": { "type": "std::string", - "id": 8, - "offset": 200, - "flags": 7, + "id": 17, + "offset": 216, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3382086694 - }, - "m_visualEffectRemoveName": { + "hash": 1691722510 + } + } + }, + "172062758": { + "name": "class TipDisplayData*", + "bases": [], + "hash": 172062758, + "properties": {} + }, + "173074331": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 173074331, + "properties": { + "m_spellName": { "type": "std::string", - "id": 9, - "offset": 232, + "id": 0, + "offset": 72, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1541697323 + "hash": 2688485244 }, - "m_onAddFunctorName": { - "type": "std::string", - "id": 10, - "offset": 280, + "m_spellID": { + "type": "unsigned int", + "id": 1, + "offset": 104, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1561843107 + "hash": 1697483258 }, - "m_onRemoveFunctorName": { - "type": "std::string", - "id": 11, - "offset": 312, + "m_totalShardsToUpgrade": { + "type": "int", + "id": 2, + "offset": 108, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2559017864 + "hash": 596508110 + } + } + }, + "192455195": { + "name": "class SharedPointer", + "bases": [], + "hash": 192455195, + "properties": {} + }, + "184359906": { + "name": "class NumCategoryInInventory", + "bases": [ + "PropertyClass" + ], + "hash": 184359906, + "properties": { + "m_sCategory": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1996239916 }, - "m_stackingRule": { - "type": "enum STACKING_RULE", - "id": 12, - "offset": 144, - "flags": 2097159, + "m_numCategoryInInventory": { + "type": "int", + "id": 1, + "offset": 104, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 431568889, - "enum_options": { - "STACKING_ALLOWED": 0, - "STACKING_NOSTACK": 1, - "STACKING_REPLACE": 2 - } + "hash": 639845069 } } }, - "2085984988": { - "name": "class SharedPointer", + "178277919": { + "name": "class PotionButton", "bases": [ + "ControlButton", "Window", "PropertyClass" ], - "hash": 2085984988, + "hash": 178277919, "properties": { "m_sName": { "type": "std::string", @@ -519,11 +392,8 @@ "hash": 983582334, "enum_options": { "HAS_BACK": 1, - "SCALE_CHILDREN": 2, "CAN_MOVE": 4, "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "FOCUS_LOCKED": 64, "CAN_FOCUS": 128, "CAN_DOCK": 32, "DO_NOT_CAPTURE_MOUSE": 256, @@ -535,7 +405,12 @@ "USE_ALPHA_BOUNDS": 8192, "AUTO_GROW": 16384, "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152 + "AUTO_RESIZE": 49152, + "SHOW_HOTKEY": 16777216, + "EFFECT_SCALE": 67108864, + "LOCK_ICON_SIZE": 33554432, + "LEFT_TEXT": 536870912, + "NO_FIT_TEXT": 1073741824 } }, "m_Flags": { @@ -695,712 +570,250 @@ "singleton": false, "pointer": false, "hash": 3091503757 - } - } - }, - "905754865": { - "name": "class SharedPointer", - "bases": [ - "CoreObjectInfo", - "PropertyClass" - ], - "hash": 905754865, - "properties": { - "m_templateID.m_full": { - "type": "unsigned __int64", - "id": 0, - "offset": 72, - "flags": 33554439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 633907631 - }, - "m_nObjectID": { - "type": "unsigned int", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 748496927 - }, - "m_location": { - "type": "class Vector3D", - "id": 2, - "offset": 84, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2239683611 - }, - "m_orientation": { - "type": "class Vector3D", - "id": 3, - "offset": 96, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2344058766 - }, - "m_fScale": { - "type": "float", - "id": 4, - "offset": 108, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 503137701 - }, - "m_zoneTag": { - "type": "std::string", - "id": 5, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3405382643 - }, - "m_startState": { - "type": "std::string", - "id": 6, - "offset": 184, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2166880458 - }, - "m_overrideName": { - "type": "std::string", - "id": 7, - "offset": 120, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1990707228 - }, - "m_globalDynamic": { - "type": "bool", - "id": 8, - "offset": 116, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1951691017 - }, - "m_bUndetectable": { - "type": "bool", - "id": 9, - "offset": 216, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1907454341 - }, - "m_spawnRequirements": { - "type": "class SharedPointer", - "id": 10, - "offset": 224, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2309120870 - }, - "m_loadingType": { - "type": "enum CoreObjectInfo::LoadingType", - "id": 11, - "offset": 112, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3522422550, - "enum_options": { - "STATIC_CLIENT_SERVER": 0, - "STATIC_CLIENT": 1, - "STATIC_SERVER": 2, - "DYNAMIC_SERVER": 3 - } - }, - "m_pContainer": { - "type": "class SharedPointer", - "id": 12, - "offset": 240, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 915185204 - } - } - }, - "2086449938": { - "name": "class SharedPointer", - "bases": [ - "SoundEmitterInfo", - "SoundInfo", - "ClientObjectInfo", - "CoreObjectInfo", - "PropertyClass" - ], - "hash": 2086449938, - "properties": { - "m_templateID.m_full": { - "type": "unsigned __int64", - "id": 0, - "offset": 72, - "flags": 33554439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 633907631 - }, - "m_nObjectID": { - "type": "unsigned int", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 748496927 - }, - "m_location": { - "type": "class Vector3D", - "id": 2, - "offset": 84, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2239683611 - }, - "m_orientation": { - "type": "class Vector3D", - "id": 3, - "offset": 96, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2344058766 - }, - "m_fScale": { - "type": "float", - "id": 4, - "offset": 108, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 503137701 - }, - "m_zoneTag": { - "type": "std::string", - "id": 5, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3405382643 - }, - "m_startState": { - "type": "std::string", - "id": 6, - "offset": 184, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2166880458 - }, - "m_overrideName": { - "type": "std::string", - "id": 7, - "offset": 120, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1990707228 - }, - "m_globalDynamic": { - "type": "bool", - "id": 8, - "offset": 116, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1951691017 - }, - "m_bUndetectable": { - "type": "bool", - "id": 9, - "offset": 216, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1907454341 - }, - "m_spawnRequirements": { - "type": "class SharedPointer", - "id": 10, - "offset": 224, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2309120870 - }, - "m_loadingType": { - "type": "enum CoreObjectInfo::LoadingType", - "id": 11, - "offset": 112, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3522422550, - "enum_options": { - "STATIC_CLIENT_SERVER": 0, - "STATIC_CLIENT": 1, - "STATIC_SERVER": 2, - "DYNAMIC_SERVER": 3 - } - }, - "m_radius": { - "type": "float", - "id": 12, - "offset": 256, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 989410271 }, - "m_exclusive": { + "m_bToggle": { "type": "bool", - "id": 13, - "offset": 260, - "flags": 7, + "id": 16, + "offset": 608, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 824383403 + "hash": 2071810903 }, - "m_startActive": { + "m_bButtonDown": { "type": "bool", - "id": 14, - "offset": 261, - "flags": 7, + "id": 17, + "offset": 609, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2031339229 + "hash": 840041705 }, - "m_category": { - "type": "enum AudioCategory", - "id": 15, - "offset": 264, - "flags": 2097159, + "m_sLabel": { + "type": "std::wstring", + "id": 18, + "offset": 616, + "flags": 4194439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2951251982, - "enum_options": { - "AudioCategory_Irrelevent": 0, - "AudioCategory_Accoustic": 1, - "AudioCategory_Noise": 2, - "AudioCategory_Music": 3 - } + "hash": 2207009163 }, - "m_override": { - "type": "int", - "id": 16, - "offset": 268, - "flags": 1048583, + "m_labelOffset": { + "type": "class Rect", + "id": 19, + "offset": 832, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 136872410, - "enum_options": { - "OVR_RADIUS": 1, - "OVR_CATEGORY": 2, - "OVR_EXCLUSIVE": 4, - "OVR_SIGNATURE": 64, - "OVR_VOLUME": 8, - "OVR_LOOPCOUNT": 16, - "OVR_ACTIVE": 32, - "OVR_PLAYPROG": 128, - "OVR_PRIORITY": 256, - "OVR_PROGTIME": 512, - "OVR_FILTERSET": 1024 - } + "hash": 1990646723 }, - "m_enableReqs": { - "type": "class SharedPointer", - "id": 17, - "offset": 272, - "flags": 263, + "m_pButton": { + "type": "class SharedPointer", + "id": 20, + "offset": 656, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": true, - "hash": 3158020443 - }, - "m_volume": { - "type": "float", - "id": 18, - "offset": 288, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1162855023 + "hash": 1543855875 }, - "m_loopCount": { - "type": "int", - "id": 19, - "offset": 292, - "flags": 7, + "m_HotKey": { + "type": "unsigned int", + "id": 21, + "offset": 672, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 865634717 - }, - "m_trackFilenameList": { - "type": "std::string", - "id": 20, - "offset": 312, - "flags": 131079, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2531081709 - }, - "m_playList": { - "type": "class PlayListEntry*", - "id": 21, - "offset": 336, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 3907873161 + "hash": 1631553409 }, - "m_priority": { - "type": "int", + "m_Color": { + "type": "class Color", "id": 22, - "offset": 296, - "flags": 7, + "offset": 676, + "flags": 262279, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1235205852 + "hash": 1753714077 }, - "m_progression": { - "type": "enum PlayList::Progression", + "m_bCursorOver": { + "type": "bool", "id": 23, - "offset": 300, - "flags": 2097159, + "offset": 689, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3279400238, - "enum_options": { - "Sequence": 0, - "Random": 1, - "SequenceOnceOnly": 2, - "RandomNoRepeat": 3 - } + "hash": 283981103 }, - "m_progressMin": { - "type": "float", + "m_bAbortWhenCursorNotOver": { + "type": "bool", "id": 24, - "offset": 304, - "flags": 7, + "offset": 706, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1497550192 + "hash": 325405258 }, - "m_progressMax": { - "type": "float", + "m_bHotKeyDown": { + "type": "bool", "id": 25, - "offset": 308, - "flags": 7, + "offset": 680, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1497549938 + "hash": 616989185 }, - "m_audioFilterSet": { - "type": "unsigned int", + "m_fTime": { + "type": "float", "id": 26, - "offset": 360, - "flags": 33554439, + "offset": 684, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 831339825 + "hash": 883746156 }, - "m_clientTag": { - "type": "std::string", + "m_bGreyed": { + "type": "bool", "id": 27, - "offset": 368, - "flags": 7, + "offset": 688, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3409856790 + "hash": 1566556053 }, - "m_innerRadius": { + "m_fMaxScale": { "type": "float", "id": 28, - "offset": 400, - "flags": 7, + "offset": 692, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 686816091 + "hash": 2070186635 }, - "m_nifObjName": { - "type": "std::string", + "m_fScaleSpeed": { + "type": "float", "id": 29, - "offset": 408, - "flags": 7, + "offset": 696, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1513857812 + "hash": 1457135702 }, - "m_animNIFObjName": { - "type": "std::string", + "m_bUseDropShadow": { + "type": "bool", "id": 30, - "offset": 440, - "flags": 7, + "offset": 704, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2245834777 + "hash": 93063037 }, - "m_inverted": { + "m_bUseOutline": { "type": "bool", "id": 31, - "offset": 472, - "flags": 7, + "offset": 705, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1034821044 + "hash": 744292994 }, - "m_initialDelay": { - "type": "float", + "m_pGreyedState": { + "type": "class SharedPointer", "id": 32, - "offset": 476, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 629858288 - } - } - }, - "1678010878": { - "name": "class SG_GameAction_DetonateBlock*", - "bases": [ - "SG_GameAction", - "PropertyClass" - ], - "hash": 1678010878, - "properties": { - "m_target": { - "type": "enum SG_GameAction::SG_Target", - "id": 0, - "offset": 72, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1166870973, - "enum_options": { - "Target_Ball": 0, - "Target_Self": 1, - "Target_Connections": 2, - "__DEFAULT": "Target_Ball" - } - }, - "m_impactInteraction": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3623009561 - }, - "m_fExplosionForceScalar": { - "type": "float", - "id": 2, - "offset": 116, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1506193859 - }, - "m_fExplosionRadiusScalar": { - "type": "float", - "id": 3, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 658772124 - } - } - }, - "905790587": { - "name": "class TutorialServiceOption", - "bases": [ - "ServiceOptionBase", - "PropertyClass" - ], - "hash": 905790587, - "properties": { - "m_serviceName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, + "offset": 768, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 2206028813 + "pointer": true, + "hash": 2703352263 }, - "m_iconKey": { - "type": "std::string", - "id": 1, - "offset": 168, - "flags": 31, + "m_pNormalState": { + "type": "class SharedPointer", + "id": 33, + "offset": 752, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 2457138637 + "pointer": true, + "hash": 1887909808 }, - "m_displayKey": { - "type": "std::string", - "id": 2, - "offset": 104, - "flags": 31, + "m_pHighlightedState": { + "type": "class SharedPointer", + "id": 34, + "offset": 784, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 3023276954 + "pointer": true, + "hash": 2200177608 }, - "m_serviceIndex": { - "type": "unsigned int", - "id": 3, - "offset": 204, - "flags": 31, + "m_pSelectedState": { + "type": "class SharedPointer", + "id": 35, + "offset": 800, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 2103126710 + "pointer": true, + "hash": 2266776432 }, - "m_forceInteract": { - "type": "bool", - "id": 4, - "offset": 200, - "flags": 31, + "m_pDepressedState": { + "type": "class SharedPointer", + "id": 36, + "offset": 816, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1705789564 + "pointer": true, + "hash": 1878185798 } } }, - "1676638972": { - "name": "class SharedPointer", + "176631800": { + "name": "class BeneficialProximityBehaviorTemplate", "bases": [ - "PetCastEffectActorCinematicAction", - "ActorCinematicAction", - "CinematicAction", + "BehaviorTemplate", "PropertyClass" ], - "hash": 1676638972, + "hash": 176631800, "properties": { - "m_timeOffset": { - "type": "float", + "m_behaviorName": { + "type": "std::string", "id": 0, "offset": 72, "flags": 7, @@ -1408,357 +821,66 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 + "hash": 3130754092 }, - "m_actor": { - "type": "std::string", + "m_radius": { + "type": "float", "id": 1, - "offset": 80, + "offset": 120, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2285866132 - } - } - }, - "1676576547": { - "name": "class ContainerEffect", - "bases": [ - "GameEffectBase", - "PropertyClass" - ], - "hash": 1676576547, - "properties": { - "m_currentTickCount": { - "type": "double", - "id": 0, - "offset": 80, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2533274692 - }, - "m_effectNameID": { - "type": "unsigned int", - "id": 1, - "offset": 96, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1204067144 - }, - "m_bIsOnPet": { - "type": "bool", - "id": 2, - "offset": 73, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 522593303 - }, - "m_originatorID": { - "type": "gid", - "id": 3, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1131810019 - }, - "m_itemSlotID": { - "type": "unsigned int", - "id": 4, - "offset": 112, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1895747595 - }, - "m_internalID": { - "type": "int", - "id": 5, - "offset": 92, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1643137924 - }, - "m_endTime": { - "type": "unsigned int", - "id": 6, - "offset": 88, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 716479635 - } - } - }, - "2094243210": { - "name": "class ClientWizInventoryBehavior", - "bases": [ - "ClientInventoryBehavior", - "InventoryBehaviorBase", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 2094243210, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_itemList": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 27, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1983655699 + "hash": 989410271 }, - "m_numItemsAllowed": { - "type": "int", + "m_duration": { + "type": "float", "id": 2, - "offset": 160, - "flags": 27, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1404509492 - }, - "m_numJewelsAllowed": { - "type": "int", - "id": 3, - "offset": 164, - "flags": 27, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 49168892 - }, - "m_numCEEmotesAllowed": { - "type": "int", - "id": 4, - "offset": 168, - "flags": 27, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 259951495 - }, - "m_numCETeleportsAllowed": { - "type": "int", - "id": 5, - "offset": 172, - "flags": 27, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 284631772 - } - } - }, - "905859247": { - "name": "class TournamentTemplate", - "bases": [ - "CoreTemplate", - "PropertyClass" - ], - "hash": 905859247, - "properties": { - "m_behaviors": { - "type": "class BehaviorTemplate*", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1197808594 - }, - "m_tournamentName": { - "type": "std::string", - "id": 1, - "offset": 112, + "offset": 124, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3329241865 - }, - "m_allowedMatches": { - "type": "std::string", - "id": 2, - "offset": 152, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2083366952 + "hash": 920323453 }, - "m_updateLadder": { - "type": "bool", + "m_benefitType": { + "type": "enum BenefitType", "id": 3, - "offset": 209, - "flags": 7, + "offset": 128, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1327828834 + "hash": 3823810885, + "enum_options": { + "BT_Heal": 0, + "BT_Mana": 1, + "BT_FishingLuck": 2, + "BT_HealMana": 3 + } }, - "m_useEloBehavior": { - "type": "bool", + "m_value": { + "type": "float", "id": 4, - "offset": 210, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2113224016 - }, - "m_ladderTable": { - "type": "std::string", - "id": 5, - "offset": 216, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3225825807 - }, - "m_matchActor": { - "type": "class SharedPointer", - "id": 6, - "offset": 96, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1730081852 - }, - "m_bPremium": { - "type": "bool", - "id": 7, - "offset": 208, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 959881172 - }, - "m_defaultLadder": { - "type": "class SharedPointer", - "id": 8, - "offset": 248, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2425504995 - }, - "m_isBracketTournament": { - "type": "bool", - "id": 9, - "offset": 265, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1062809176 - }, - "m_persisted": { - "type": "bool", - "id": 10, - "offset": 266, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1002297414 - }, - "m_penalizeMatchDeclines": { - "type": "bool", - "id": 11, - "offset": 267, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 623338303 - }, - "m_hidePlayerInfo": { - "type": "bool", - "id": 12, - "offset": 268, + "offset": 132, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 665001286 - }, - "m_pvpDuelModifiers": { - "type": "std::string", - "id": 13, - "offset": 272, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1796488605 + "hash": 903191604 } } }, - "1676563122": { - "name": "class SharedPointer", + "175844314": { + "name": "class SharedPointer", "bases": [ - "SpellEffect", "PropertyClass" ], - "hash": 1676563122, + "hash": 175844314, "properties": { "m_effectType": { "type": "enum SpellEffect::kSpellEffects", @@ -2171,142 +1293,123 @@ "singleton": false, "pointer": false, "hash": 219803942 - }, - "m_mode": { - "type": "enum CountBasedSpellEffect::CountBasedType", - "id": 21, - "offset": 224, - "flags": 2097159, + } + } + }, + "174483730": { + "name": "class CinematicAction*", + "bases": [ + "PropertyClass" + ], + "hash": 174483730, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2262055551, - "enum_options": { - "CBT_SpellKills": 0, - "CBT_SpellCrits": 1 - } + "hash": 2237098605 + } + } + }, + "173789164": { + "name": "enum CombatParticipant::PipAquiredByEnum", + "bases": [], + "hash": 173789164, + "properties": {} + }, + "173422323": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 173422323, + "properties": { + "m_categories": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2811511766 }, - "m_effectList": { - "type": "class SharedPointer", - "id": 22, - "offset": 232, - "flags": 7, + "m_tabs": { + "type": "class SharedPointer", + "id": 1, + "offset": 88, + "flags": 31, "container": "List", "dynamic": true, "singleton": false, "pointer": true, - "hash": 707154804 + "hash": 895280674 } } }, - "2091667075": { - "name": "class SharedPointer", + "174345762": { + "name": "class SharedPointer", "bases": [ - "GameEffectBase", "PropertyClass" ], - "hash": 2091667075, + "hash": 174345762, "properties": { - "m_currentTickCount": { - "type": "double", + "m_actorState": { + "type": "std::string", "id": 0, - "offset": 80, - "flags": 63, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2533274692 + "hash": 2574256277 }, - "m_effectNameID": { - "type": "unsigned int", + "m_playerCinematicState": { + "type": "std::string", "id": 1, - "offset": 96, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1204067144 - }, - "m_bIsOnPet": { - "type": "bool", - "id": 2, - "offset": 73, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 522593303 - }, - "m_originatorID": { - "type": "gid", - "id": 3, "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1131810019 - }, - "m_itemSlotID": { - "type": "unsigned int", - "id": 4, - "offset": 112, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1895747595 - }, - "m_internalID": { - "type": "int", - "id": 5, - "offset": 92, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1643137924 - }, - "m_endTime": { - "type": "unsigned int", - "id": 6, - "offset": 88, - "flags": 31, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 716479635 + "hash": 3255674198 }, - "m_flags": { - "type": "unsigned int", - "id": 7, - "offset": 128, + "m_playerEmote": { + "type": "std::string", + "id": 2, + "offset": 136, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1005801050 + "hash": 2232796226 } } }, - "1676544638": { - "name": "class SharedPointer", + "175519385": { + "name": "enum PhysicsBehaviorTemplate::SimulationMethod", + "bases": [], + "hash": 175519385, + "properties": {} + }, + "174488850": { + "name": "class CinematicAction", "bases": [ "PropertyClass" ], - "hash": 1676544638, + "hash": 174488850, "properties": { - "m_id": { - "type": "unsigned int", + "m_timeOffset": { + "type": "float", "id": 0, "offset": 72, "flags": 7, @@ -2314,28 +1417,38 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 2301988666 - }, - "m_serializedRequirements": { - "type": "std::string", - "id": 1, - "offset": 80, + "hash": 2237098605 + } + } + }, + "175744476": { + "name": "class UpdatePipsCinematicAction*", + "bases": [ + "CinematicAction", + "PropertyClass" + ], + "hash": 175744476, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1527408971 + "hash": 2237098605 } } }, - "2089315118": { - "name": "class SharedPointer", + "176417900": { + "name": "class SharedPointer", "bases": [ "BehaviorInstance", "PropertyClass" ], - "hash": 2089315118, + "hash": 176417900, "properties": { "m_behaviorTemplateNameID": { "type": "unsigned int", @@ -2350,133 +1463,143 @@ } } }, - "2088854734": { - "name": "class SharedPointer", + "176143188": { + "name": "class CastleTourTeleportInfo*", "bases": [ - "BehaviorInstance", "PropertyClass" ], - "hash": 2088854734, + "hash": 176143188, "properties": { - "m_behaviorTemplateNameID": { + "m_houseTemplateID": { "type": "unsigned int", "id": 0, - "offset": 104, - "flags": 39, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 + "hash": 2326023642 }, - "m_effectName": { - "type": "std::string", + "m_structureTemplateID": { + "type": "unsigned int", "id": 1, - "offset": 112, - "flags": 31, + "offset": 76, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2029161513 + "hash": 1037379271 }, - "m_textKey": { - "type": "std::string", + "m_lotInstanceGID": { + "type": "gid", "id": 2, - "offset": 144, - "flags": 31, + "offset": 80, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1720060457 + "hash": 2010711536 }, - "m_height": { - "type": "float", + "m_structureInstanceGID": { + "type": "gid", "id": 3, - "offset": 176, - "flags": 31, + "offset": 88, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 602977104 + "hash": 2083588818 }, - "m_zOffset": { - "type": "float", + "m_owningCharacterGID": { + "type": "gid", "id": 4, - "offset": 180, - "flags": 31, + "offset": 96, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 736134072 + "hash": 316234091 + } + } + }, + "176102228": { + "name": "class CastleTourTeleportInfo", + "bases": [ + "PropertyClass" + ], + "hash": 176102228, + "properties": { + "m_houseTemplateID": { + "type": "unsigned int", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2326023642 }, - "m_red": { - "type": "unsigned char", - "id": 5, - "offset": 184, - "flags": 31, + "m_structureTemplateID": { + "type": "unsigned int", + "id": 1, + "offset": 76, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 904647115 + "hash": 1037379271 }, - "m_green": { - "type": "unsigned char", - "id": 6, - "offset": 185, - "flags": 31, + "m_lotInstanceGID": { + "type": "gid", + "id": 2, + "offset": 80, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1433403873 + "hash": 2010711536 }, - "m_blue": { - "type": "unsigned char", - "id": 7, - "offset": 186, - "flags": 31, + "m_structureInstanceGID": { + "type": "gid", + "id": 3, + "offset": 88, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 856840600 + "hash": 2083588818 }, - "m_triggers": { - "type": "class SharedPointer", - "id": 8, - "offset": 192, - "flags": 31, - "container": "List", - "dynamic": true, + "m_owningCharacterGID": { + "type": "gid", + "id": 4, + "offset": 96, + "flags": 7, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3290329276 + "pointer": false, + "hash": 316234091 } } }, - "907166026": { - "name": "class AutobotTiming*", - "bases": [ - "PropertyClass" - ], - "hash": 907166026, - "properties": {} - }, - "2087170015": { - "name": "class SharedPointer", + "176582648": { + "name": "class BeneficialProximityBehaviorTemplate*", "bases": [ - "StatisticEffectTemplate", - "GameEffectTemplate", + "BehaviorTemplate", "PropertyClass" ], - "hash": 2087170015, + "hash": 176582648, "properties": { - "m_effectName": { + "m_behaviorName": { "type": "std::string", "id": 0, "offset": 72, @@ -2485,548 +1608,839 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 2029161513 + "hash": 3130754092 }, - "m_effectCategory": { - "type": "std::string", + "m_radius": { + "type": "float", "id": 1, - "offset": 104, + "offset": 120, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1852673222 + "hash": 989410271 }, - "m_sortOrder": { - "type": "int", + "m_duration": { + "type": "float", "id": 2, - "offset": 148, + "offset": 124, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1411218206 + "hash": 920323453 }, - "m_duration": { - "type": "double", + "m_benefitType": { + "type": "enum BenefitType", "id": 3, - "offset": 192, - "flags": 7, + "offset": 128, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2727932435 + "hash": 3823810885, + "enum_options": { + "BT_Heal": 0, + "BT_Mana": 1, + "BT_FishingLuck": 2, + "BT_HealMana": 3 + } }, - "m_stackingCategories": { - "type": "std::string", + "m_value": { + "type": "float", "id": 4, - "offset": 160, + "offset": 132, "flags": 7, - "container": "List", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 1774497525 - }, - "m_isPersistent": { - "type": "bool", - "id": 5, - "offset": 153, + "hash": 903191604 + } + } + }, + "176724800": { + "name": "class ClientRemoveCameraMappingCinematicAction", + "bases": [ + "RemoveCameraMappingCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 176724800, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 923861920 + "hash": 2237098605 }, - "m_bIsOnPet": { - "type": "bool", - "id": 6, - "offset": 154, + "m_camToReplace": { + "type": "std::string", + "id": 1, + "offset": 80, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 522593303 - }, - "m_isPublic": { - "type": "bool", - "id": 7, - "offset": 152, + "hash": 2286913643 + } + } + }, + "176724416": { + "name": "class ClientRemoveCameraMappingCinematicAction*", + "bases": [ + "RemoveCameraMappingCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 176724416, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1728439822 + "hash": 2237098605 }, - "m_visualEffectAddName": { + "m_camToReplace": { "type": "std::string", - "id": 8, - "offset": 200, + "id": 1, + "offset": 80, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3382086694 - }, - "m_visualEffectRemoveName": { - "type": "std::string", - "id": 9, - "offset": 232, + "hash": 2286913643 + } + } + }, + "177787577": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 177787577, + "properties": { + "m_mappings": { + "type": "class FontMapping", + "id": 0, + "offset": 72, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 1541697323 + "hash": 3543733145 }, - "m_onAddFunctorName": { + "m_defaultFont": { "type": "std::string", - "id": 10, - "offset": 280, + "id": 1, + "offset": 88, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1561843107 - }, - "m_onRemoveFunctorName": { - "type": "std::string", - "id": 11, - "offset": 312, - "flags": 7, + "hash": 2375516599 + } + } + }, + "176748547": { + "name": "class FishingXPLootInfo", + "bases": [ + "LootInfo", + "LootInfoBase", + "PropertyClass" + ], + "hash": 176748547, + "properties": { + "m_lootType": { + "type": "enum LootInfo::LOOT_TYPE", + "id": 0, + "offset": 72, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2559017864 + "hash": 1591891442, + "enum_options": { + "LOOT_TYPE_NONE": 0, + "LOOT_TYPE_GOLD": 1, + "LOOT_TYPE_MANA": 2, + "LOOT_TYPE_ITEM": 3, + "LOOT_TYPE_TREASURE_CARD": 4, + "LOOT_TYPE_MAGIC_XP": 5, + "LOOT_TYPE_ADD_SPELL": 6, + "LOOT_TYPE_MAX_HEALTH": 7, + "LOOT_TYPE_MAX_GOLD": 8, + "LOOT_TYPE_MAX_MANA": 9, + "LOOT_TYPE_MAX_POTION": 10, + "LOOT_TYPE_TRAINING_POINTS": 11, + "LOOT_TYPE_RECIPE": 12, + "LOOT_TYPE_CRAFTING_SLOT": 13, + "LOOT_TYPE_REAGENT": 14, + "LOOT_TYPE_PETSNACK": 15, + "LOOT_TYPE_GARDENING_XP": 16, + "LOOT_TYPE_PET_XP": 17, + "LOOT_TYPE_TREASURE_TABLE": 18, + "LOOT_TYPE_ARENA_POINTS": 19, + "LOOT_TYPE_ARENA_BONUS_POINTS": 20, + "LOOT_TYPE_GROUP": 21, + "LOOT_TYPE_FISHING_XP": 22, + "LOOT_TYPE_EVENT_CURRENCY_1": 24, + "LOOT_TYPE_EVENT_CURRENCY_2": 25, + "LOOT_TYPE_PVP_CURRENCY": 26, + "LOOT_TYPE_PVP_CURRENCY_BONUS": 27, + "LOOT_TYPE_PVP_TOURNEY_CURRENCY": 28, + "LOOT_TYPE_PVP_TOURNEY_CURRENCY_BONUS": 29, + "LOOT_TYPE_FURNITURE_ESSENCE": 30 + } }, - "m_stackingRule": { - "type": "enum STACKING_RULE", - "id": 12, - "offset": 144, - "flags": 2097159, + "m_experience": { + "type": "int", + "id": 1, + "offset": 80, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 431568889, - "enum_options": { - "STACKING_ALLOWED": 0, - "STACKING_NOSTACK": 1, - "STACKING_REPLACE": 2 - } - }, - "m_baseHitpoints": { - "type": "float", - "id": 13, - "offset": 360, + "hash": 759357570 + } + } + }, + "178242146": { + "name": "class SharedPointer", + "bases": [ + "ObstacleCourseObstaclePathBaseTemplate", + "ObstacleCourseObstacleBehaviorTemplate", + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 178242146, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 686307060 + "hash": 3130754092 }, - "m_baseMana": { + "m_rate": { "type": "float", - "id": 14, - "offset": 364, + "id": 1, + "offset": 120, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1565696591 + "hash": 310005283 }, - "m_xpPercentIncrease": { + "m_penaltyTime": { "type": "float", - "id": 15, - "offset": 368, + "id": 2, + "offset": 124, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1051081338 + "hash": 2083389507 }, - "m_goldPercent": { - "type": "float", - "id": 16, - "offset": 372, + "m_totalObstacleSize": { + "type": "class Vector3D", + "id": 3, + "offset": 128, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1095720878 + "hash": 2379878414 }, - "m_wispBonusPercent": { - "type": "float", - "id": 17, - "offset": 376, + "m_bounds": { + "type": "class Vector3D", + "id": 4, + "offset": 152, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1948083181 + }, + "m_orientToPath": { + "type": "bool", + "id": 5, + "offset": 176, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1304386546 + "hash": 655036148 }, - "m_powerPipBonusPercent": { + "m_heightUp": { "type": "float", - "id": 18, - "offset": 380, + "id": 6, + "offset": 140, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1671446341 + "hash": 2208713013 }, - "m_shadowPipBonusPercent": { + "m_heightDown": { "type": "float", - "id": 19, - "offset": 384, + "id": 7, + "offset": 144, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1426533310 + "hash": 655333896 }, - "m_shadowPipRating": { - "type": "float", - "id": 20, - "offset": 388, + "m_speedAmount": { + "type": "double", + "id": 8, + "offset": 184, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 507126123 + "hash": 3716841682 }, - "m_archmasteryBonus": { - "type": "float", - "id": 21, - "offset": 392, + "m_buffTime": { + "type": "double", + "id": 9, + "offset": 192, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1445460001 + "hash": 2925547231 }, - "m_stunResistancePercent": { - "type": "float", - "id": 22, - "offset": 396, + "m_effectWearingOff": { + "type": "std::string", + "id": 10, + "offset": 200, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1868382627 + "hash": 1540780784 }, - "m_school": { + "m_soundWearingOff": { "type": "std::string", - "id": 23, - "offset": 400, + "id": 11, + "offset": 232, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2438566051 + "hash": 1848004524 }, - "m_pipConversionRating": { - "type": "float", - "id": 24, - "offset": 432, + "m_effectApply": { + "type": "std::string", + "id": 12, + "offset": 264, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 246855691 + "hash": 1838368078 }, - "m_criticalHitRating": { - "type": "float", - "id": 25, - "offset": 436, + "m_soundApply": { + "type": "std::string", + "id": 13, + "offset": 296, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1978690540 + "hash": 3579526282 }, - "m_blockRating": { - "type": "float", - "id": 26, - "offset": 440, + "m_effectDespawn": { + "type": "std::string", + "id": 14, + "offset": 328, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2088486759 + "hash": 2174851674 }, - "m_dmgBonusPercent": { - "type": "float", - "id": 27, - "offset": 444, + "m_soundDespawn": { + "type": "std::string", + "id": 15, + "offset": 360, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 194501159 + "hash": 2068074646 }, - "m_dmgBonusFlat": { - "type": "float", - "id": 28, - "offset": 448, + "m_effectWhileActive": { + "type": "std::string", + "id": 16, + "offset": 392, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1837769725 + "hash": 3074038205 }, - "m_accBonusPercent": { - "type": "float", - "id": 29, - "offset": 452, + "m_soundWhileActive": { + "type": "std::string", + "id": 17, + "offset": 424, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 331557526 + "hash": 2475003385 }, - "m_apBonusPercent": { - "type": "float", - "id": 30, + "m_effectRespawning": { + "type": "std::string", + "id": 18, "offset": 456, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1228557984 + "hash": 3091986790 }, - "m_dmgReducePercent": { + "m_soundRespawning": { + "type": "std::string", + "id": 19, + "offset": 488, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3399210530 + } + } + }, + "180508292": { + "name": "class CameraCutCinematicAction", + "bases": [ + "CinematicAction", + "PropertyClass" + ], + "hash": 180508292, + "properties": { + "m_timeOffset": { "type": "float", - "id": 31, - "offset": 460, + "id": 0, + "offset": 72, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1426050712 + "hash": 2237098605 }, - "m_dmgReduceFlat": { - "type": "float", - "id": 32, - "offset": 464, + "m_cameras": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 131079, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 3217341687 + }, + "m_altcameras": { + "type": "std::string", + "id": 2, + "offset": 104, + "flags": 131079, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1882980152 + }, + "m_initialCameraName": { + "type": "std::string", + "id": 3, + "offset": 128, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1218184718 + "hash": 2526319343 }, - "m_accReducePercent": { + "m_camRel": { + "type": "enum CameraCutCinematicAction::kCameraRelative", + "id": 4, + "offset": 168, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 919962138, + "enum_options": { + "kNone": 0, + "kSigil": 1, + "kTarget": 2, + "kSource": 3, + "kActor": 4 + } + }, + "m_interpolationDuration": { "type": "float", - "id": 33, - "offset": 468, + "id": 5, + "offset": 160, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1653943527 + "hash": 1458058437 }, - "m_healBonusPercent": { + "m_releaseInterpolationDuration": { "type": "float", - "id": 34, - "offset": 472, + "id": 6, + "offset": 164, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 562313577 + "hash": 1807754278, + "enum_options": { + "__DEFAULT": "1.0" + } }, - "m_healIncBonusPercent": { - "type": "float", - "id": 35, - "offset": 476, + "m_bUseOrientationOverride": { + "type": "bool", + "id": 7, + "offset": 188, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2182535587 + "hash": 1088002894 }, - "m_fishingLuckBonusPercent": { + "m_overrideOrientation": { + "type": "class Vector3D", + "id": 8, + "offset": 192, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3267199758 + }, + "m_bUseLocationOverride": { + "type": "bool", + "id": 9, + "offset": 172, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1767170875 + }, + "m_overrideLocation": { + "type": "class Vector3D", + "id": 10, + "offset": 176, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3776417691 + }, + "m_namedActor": { + "type": "std::string", + "id": 11, + "offset": 208, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3413532537 + }, + "m_camScale": { "type": "float", - "id": 36, - "offset": 480, + "id": 12, + "offset": 240, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1363349254 + "hash": 979098224 } } }, - "906146900": { - "name": "class IgnoreEntryData*", + "180322525": { + "name": "class SpawnCreatureCinematicAction", "bases": [ + "QueuedCombatCinematicAction", + "CinematicAction", "PropertyClass" ], - "hash": 906146900, + "hash": 180322525, "properties": { - "m_ignoreName": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + } + } + }, + "179572547": { + "name": "class InfractionCategory*", + "bases": [ + "PropertyClass" + ], + "hash": 179572547, + "properties": { + "m_category": { "type": "std::string", "id": 0, "offset": 72, - "flags": 31, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2203859488 + "hash": 2682050233 }, - "m_characterID": { - "type": "gid", + "m_events": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 716105444 + }, + "m_penalties": { + "type": "class SharedPointer", + "id": 2, + "offset": 128, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1631054690 + } + } + }, + "178987841": { + "name": "class GoalCompleteLogic*", + "bases": [ + "PropertyClass" + ], + "hash": 178987841, + "properties": { + "m_goalsAND": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1522921572 + }, + "m_goalsOR": { + "type": "std::string", "id": 1, + "offset": 88, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2474679090 + }, + "m_goalsToAdd": { + "type": "std::string", + "id": 2, "offset": 104, - "flags": 31, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 3122082173 + }, + "m_completeQuest": { + "type": "bool", + "id": 3, + "offset": 120, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 210498386 + "hash": 1096497470 }, - "m_gameObjectID": { - "type": "gid", - "id": 2, - "offset": 112, - "flags": 31, + "m_requiredORCount": { + "type": "int", + "id": 4, + "offset": 124, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 23229750 + "hash": 1209220805 } } }, - "1676579619": { - "name": "class ContainerEffect*", + "179134095": { + "name": "class SharedPointer", "bases": [ - "GameEffectBase", "PropertyClass" ], - "hash": 1676579619, + "hash": 179134095, "properties": { - "m_currentTickCount": { - "type": "double", + "m_gameID": { + "type": "unsigned int", "id": 0, - "offset": 80, - "flags": 63, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2533274692 + "hash": 680439828 }, - "m_effectNameID": { - "type": "unsigned int", + "m_bluePlayerGID": { + "type": "gid", "id": 1, - "offset": 96, - "flags": 63, + "offset": 80, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1204067144 + "hash": 253380865 }, - "m_bIsOnPet": { - "type": "bool", + "m_bluePackedName": { + "type": "std::string", "id": 2, - "offset": 73, - "flags": 31, + "offset": 88, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 522593303 + "hash": 1812461836 }, - "m_originatorID": { + "m_orangePlayerGID": { "type": "gid", "id": 3, - "offset": 104, - "flags": 39, + "offset": 120, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1131810019 + "hash": 1870113109 }, - "m_itemSlotID": { - "type": "unsigned int", + "m_orangePackedName": { + "type": "std::string", "id": 4, - "offset": 112, - "flags": 63, + "offset": 128, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1895747595 + "hash": 3625018336 }, - "m_internalID": { - "type": "int", + "m_redPlayerGID": { + "type": "gid", "id": 5, - "offset": 92, - "flags": 63, + "offset": 160, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1643137924 + "hash": 406170260 }, - "m_endTime": { - "type": "unsigned int", + "m_redPackedName": { + "type": "std::string", "id": 6, - "offset": 88, - "flags": 31, + "offset": 168, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 716479635 + "hash": 2559544575 } } }, - "2088237777": { - "name": "class SharedPointer", + "180211958": { + "name": "class SharedPointer", "bases": [ - "ReqNumeric", + "ConditionalSpellEffectRequirement", "Requirement", "PropertyClass" ], - "hash": 2088237777, + "hash": 180211958, "properties": { "m_applyNOT": { "type": "bool", @@ -3058,1196 +2472,1268 @@ "__DEFAULT": "ROP_AND" } }, - "m_numericValue": { - "type": "float", + "m_targetType": { + "type": "enum ConditionalSpellEffectRequirement::RequirementTarget", "id": 2, "offset": 80, - "flags": 31, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 521915239 + "hash": 2547737902, + "enum_options": { + "RT_Caster": 0, + "RT_Target": 1 + } }, - "m_operatorType": { - "type": "enum ReqNumeric::OPERATOR_TYPE", + "m_fMinPercent": { + "type": "float", "id": 3, - "offset": 84, - "flags": 2097183, + "offset": 88, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2228122961, - "enum_options": { - "OPERATOR_UNKNOWN": 4294967295, - "OPERATOR_EQUALS": 0, - "OPERATOR_GREATER_THAN": 1, - "OPERATOR_LESS_THAN": 2, - "OPERATOR_GREATER_THAN_EQ": 3, - "OPERATOR_LESS_THAN_EQ": 4 - } + "hash": 262693330 + }, + "m_fMaxPercent": { + "type": "float", + "id": 4, + "offset": 92, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 643246740 } } }, - "907166031": { - "name": "class AutobotTiming", - "bases": [ - "PropertyClass" - ], - "hash": 907166031, - "properties": {} - }, - "1677116761": { - "name": "class SpellDataList*", + "179999879": { + "name": "class SharedPointer", "bases": [ + "BehaviorTemplate", "PropertyClass" ], - "hash": 1677116761, + "hash": 179999879, "properties": { - "m_spellDataList": { - "type": "class SharedPointer", + "m_behaviorName": { + "type": "std::string", "id": 0, "offset": 72, - "flags": 31, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + }, + "m_dependentResourceList": { + "type": "class DependentResourceContainer", + "id": 1, + "offset": 120, + "flags": 7, "container": "List", "dynamic": true, "singleton": false, - "pointer": true, - "hash": 1628917702 + "pointer": false, + "hash": 893254530 } } }, - "2089277885": { - "name": "class TieredSpellTemplate*", + "180332765": { + "name": "class SpawnCreatureCinematicAction*", "bases": [ - "SpellTemplate", - "CoreTemplate", + "QueuedCombatCinematicAction", + "CinematicAction", "PropertyClass" ], - "hash": 2089277885, + "hash": 180332765, "properties": { - "m_behaviors": { - "type": "class BehaviorTemplate*", + "m_timeOffset": { + "type": "float", "id": 0, "offset": 72, "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1197808594 - }, - "m_name": { - "type": "std::string", - "id": 1, - "offset": 96, - "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1717359772 - }, - "m_description": { - "type": "std::string", - "id": 2, - "offset": 168, - "flags": 8388615, + "hash": 2237098605 + } + } + }, + "181991427": { + "name": "class FishingXPLootInfo*", + "bases": [ + "LootInfo", + "LootInfoBase", + "PropertyClass" + ], + "hash": 181991427, + "properties": { + "m_lootType": { + "type": "enum LootInfo::LOOT_TYPE", + "id": 0, + "offset": 72, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1649374815 + "hash": 1591891442, + "enum_options": { + "LOOT_TYPE_NONE": 0, + "LOOT_TYPE_GOLD": 1, + "LOOT_TYPE_MANA": 2, + "LOOT_TYPE_ITEM": 3, + "LOOT_TYPE_TREASURE_CARD": 4, + "LOOT_TYPE_MAGIC_XP": 5, + "LOOT_TYPE_ADD_SPELL": 6, + "LOOT_TYPE_MAX_HEALTH": 7, + "LOOT_TYPE_MAX_GOLD": 8, + "LOOT_TYPE_MAX_MANA": 9, + "LOOT_TYPE_MAX_POTION": 10, + "LOOT_TYPE_TRAINING_POINTS": 11, + "LOOT_TYPE_RECIPE": 12, + "LOOT_TYPE_CRAFTING_SLOT": 13, + "LOOT_TYPE_REAGENT": 14, + "LOOT_TYPE_PETSNACK": 15, + "LOOT_TYPE_GARDENING_XP": 16, + "LOOT_TYPE_PET_XP": 17, + "LOOT_TYPE_TREASURE_TABLE": 18, + "LOOT_TYPE_ARENA_POINTS": 19, + "LOOT_TYPE_ARENA_BONUS_POINTS": 20, + "LOOT_TYPE_GROUP": 21, + "LOOT_TYPE_FISHING_XP": 22, + "LOOT_TYPE_EVENT_CURRENCY_1": 24, + "LOOT_TYPE_EVENT_CURRENCY_2": 25, + "LOOT_TYPE_PVP_CURRENCY": 26, + "LOOT_TYPE_PVP_CURRENCY_BONUS": 27, + "LOOT_TYPE_PVP_TOURNEY_CURRENCY": 28, + "LOOT_TYPE_PVP_TOURNEY_CURRENCY_BONUS": 29, + "LOOT_TYPE_FURNITURE_ESSENCE": 30 + } }, - "m_advancedDescription": { - "type": "std::string", - "id": 3, - "offset": 200, - "flags": 8388615, + "m_experience": { + "type": "int", + "id": 1, + "offset": 80, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3465713013 - }, - "m_displayName": { - "type": "std::string", - "id": 4, - "offset": 136, - "flags": 8388615, + "hash": 759357570 + } + } + }, + "181655478": { + "name": "class SharedPointer", + "bases": [ + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 181655478, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2446900370 + "hash": 2237098605 }, - "m_spellBase": { + "m_actor": { "type": "std::string", - "id": 5, - "offset": 248, - "flags": 268435463, + "id": 1, + "offset": 80, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2688054198, - "enum_options": { - "__BASECLASS": "CinematicTemplate" - } - }, - "m_effects": { - "type": "class SharedPointer", - "id": 6, - "offset": 280, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 370726379 - }, - "m_sMagicSchoolName": { - "type": "std::string", - "id": 7, - "offset": 312, + "hash": 2285866132 + } + } + }, + "181983076": { + "name": "struct std::pair", + "bases": [], + "hash": 181983076, + "properties": {} + }, + "183660688": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 183660688, + "properties": { + "m_waterX": { + "type": "float", + "id": 0, + "offset": 72, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2035693400 + "hash": 1185657746 }, - "m_sTypeName": { - "type": "std::string", - "id": 8, - "offset": 352, + "m_waterY": { + "type": "float", + "id": 1, + "offset": 76, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3580785905 + "hash": 1185657747 }, - "m_trainingCost": { - "type": "int", - "id": 9, - "offset": 384, + "m_secondsToRespawn": { + "type": "unsigned int", + "id": 2, + "offset": 80, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 982588239 + "hash": 1001169759 }, - "m_accuracy": { + "m_numberOfFish": { "type": "int", - "id": 10, - "offset": 388, + "id": 3, + "offset": 84, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1636315493 + "hash": 1143336898 }, - "m_baseCost": { - "type": "int", - "id": 11, - "offset": 232, + "m_zoneFishList": { + "type": "class SharedPointer", + "id": 4, + "offset": 96, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 1475151502 + "pointer": true, + "hash": 2647022847 }, - "m_creditsCost": { + "m_waterType": { "type": "int", - "id": 12, - "offset": 236, + "id": 5, + "offset": 88, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 715313825 - }, - "m_pvpCurrencyCost": { - "type": "int", - "id": 13, - "offset": 240, - "flags": 7, + "hash": 869659615 + } + } + }, + "182158083": { + "name": "class SharedPointer", + "bases": [ + "LoyaltyStoreOption", + "ServiceOptionBase", + "PropertyClass" + ], + "hash": 182158083, + "properties": { + "m_serviceName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 645595444 + "hash": 2206028813 }, - "m_pvpTourneyCurrencyCost": { - "type": "int", - "id": 14, - "offset": 244, - "flags": 7, + "m_iconKey": { + "type": "std::string", + "id": 1, + "offset": 168, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 517874954 + "hash": 2457138637 }, - "m_boosterPackIcon": { + "m_displayKey": { "type": "std::string", - "id": 15, - "offset": 496, - "flags": 131079, + "id": 2, + "offset": 104, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3428653697 + "hash": 3023276954 }, - "m_validTargetSpells": { + "m_serviceIndex": { "type": "unsigned int", - "id": 16, - "offset": 392, - "flags": 7, - "container": "List", - "dynamic": true, + "id": 3, + "offset": 204, + "flags": 31, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 2355782967 + "hash": 2103126710 }, - "m_PvP": { + "m_forceInteract": { "type": "bool", - "id": 17, - "offset": 408, - "flags": 7, + "id": 4, + "offset": 200, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 269492361 - }, - "m_PvE": { - "type": "bool", - "id": 18, - "offset": 409, + "hash": 1705789564 + } + } + }, + "184230721": { + "name": "class GoalCompleteLogic", + "bases": [ + "PropertyClass" + ], + "hash": 184230721, + "properties": { + "m_goalsAND": { + "type": "std::string", + "id": 0, + "offset": 72, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 269492350 + "hash": 1522921572 }, - "m_noPvPEnchant": { - "type": "bool", - "id": 19, - "offset": 410, + "m_goalsOR": { + "type": "std::string", + "id": 1, + "offset": 88, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 661581703 + "hash": 2474679090 }, - "m_noPvEEnchant": { - "type": "bool", - "id": 20, - "offset": 411, + "m_goalsToAdd": { + "type": "std::string", + "id": 2, + "offset": 104, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 10144220 + "hash": 3122082173 }, - "m_battlegroundsOnly": { + "m_completeQuest": { "type": "bool", - "id": 21, - "offset": 412, + "id": 3, + "offset": 120, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1244782419 + "hash": 1096497470 }, - "m_Treasure": { - "type": "bool", - "id": 22, - "offset": 413, + "m_requiredORCount": { + "type": "int", + "id": 4, + "offset": 124, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1749096414 - }, - "m_noDiscard": { - "type": "bool", - "id": 23, - "offset": 414, + "hash": 1209220805 + } + } + }, + "187568735": { + "name": "class AnimationSet", + "bases": [ + "PropertyClass" + ], + "hash": 187568735, + "properties": { + "m_setName": { + "type": "std::string", + "id": 0, + "offset": 72, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 565749226 + "hash": 2569991048 }, - "m_leavesPlayWhenCast": { - "type": "bool", - "id": 24, - "offset": 532, + "m_pairs": { + "type": "class AnimationPair*", + "id": 1, + "offset": 112, "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1888571563 + } + } + }, + "185996623": { + "name": "class SharedPointer", + "bases": [ + "ServiceOptionBase", + "PropertyClass" + ], + "hash": 185996623, + "properties": { + "m_serviceName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 698216294 + "hash": 2206028813 }, - "m_imageIndex": { - "type": "int", - "id": 25, - "offset": 416, - "flags": 7, + "m_iconKey": { + "type": "std::string", + "id": 1, + "offset": 168, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1570500405 + "hash": 2457138637 }, - "m_imageName": { + "m_displayKey": { "type": "std::string", - "id": 26, - "offset": 424, - "flags": 131079, + "id": 2, + "offset": 104, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2391520543 + "hash": 3023276954 }, - "m_cloaked": { - "type": "bool", - "id": 27, - "offset": 489, - "flags": 7, + "m_serviceIndex": { + "type": "unsigned int", + "id": 3, + "offset": 204, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 7349510 + "hash": 2103126710 }, - "m_casterInvisible": { + "m_forceInteract": { "type": "bool", - "id": 28, - "offset": 490, - "flags": 7, + "id": 4, + "offset": 200, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 310214650 - }, - "m_adjectives": { + "hash": 1705789564 + } + } + }, + "185512734": { + "name": "class DeedBehaviorTemplate", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 185512734, + "properties": { + "m_behaviorName": { "type": "std::string", - "id": 29, - "offset": 576, + "id": 0, + "offset": 72, "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2967855037 - }, - "m_spellSourceType": { - "type": "enum SpellTemplate::kSpellSourceType", - "id": 30, - "offset": 528, - "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 156272727, - "enum_options": { - "kCaster": 0, - "kPet": 1, - "kShadowCreature": 2, - "kWeapon": 3, - "kEquipment": 4 - } + "hash": 3130754092 }, - "m_cloakedName": { + "m_lotWorldZone": { "type": "std::string", - "id": 31, - "offset": 536, + "id": 1, + "offset": 120, "flags": 268435463, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2846679215, + "hash": 3026711022, "enum_options": { - "__BASECLASS": "SpellTemplate" + "__BASECLASS": "ZoneData" } }, - "m_purchaseRequirements": { - "type": "class RequirementList*", - "id": 32, - "offset": 608, + "m_itemLimit": { + "type": "int", + "id": 2, + "offset": 152, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3174641793 + "pointer": false, + "hash": 1799746856 }, - "m_displayRequirements": { - "type": "class RequirementList*", - "id": 33, - "offset": 840, - "flags": 7, + "m_structureTemplateID": { + "type": "unsigned int", + "id": 3, + "offset": 156, + "flags": 33554439, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3646782876 + "pointer": false, + "hash": 1037379271 }, - "m_descriptionTrainer": { + "m_previewWorldZone": { "type": "std::string", - "id": 34, - "offset": 616, - "flags": 8388871, + "id": 4, + "offset": 160, + "flags": 268435463, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1756093908 + "hash": 2100214145, + "enum_options": { + "__BASECLASS": "ZoneData" + } }, - "m_descriptionCombatHUD": { + "m_initialItemLayoutFile": { "type": "std::string", - "id": 35, - "offset": 648, - "flags": 8388871, + "id": 5, + "offset": 192, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1631478006 + "hash": 1741580370 }, - "m_displayIndex": { + "m_alternateDeedTemplateID": { + "type": "unsigned int", + "id": 6, + "offset": 224, + "flags": 33554439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 264986664 + }, + "m_castleBlockLimit": { "type": "int", - "id": 36, - "offset": 680, + "id": 7, + "offset": 228, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1250551048 - }, - "m_hiddenFromEffectsWindow": { - "type": "bool", - "id": 37, - "offset": 684, + "hash": 276037600 + } + } + }, + "185378075": { + "name": "class PestBehaviorTemplate", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 185378075, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1832736331 + "hash": 3130754092 }, - "m_ignoreCharms": { - "type": "bool", - "id": 38, - "offset": 685, + "m_pestRank": { + "type": "int", + "id": 1, + "offset": 120, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1840075893 + "hash": 2022116066 }, - "m_alwaysFizzle": { - "type": "bool", - "id": 39, - "offset": 686, + "m_wiltMinRate": { + "type": "std::string", + "id": 2, + "offset": 128, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2030988856 + "hash": 3102833515 }, - "m_spellCategory": { + "m_wiltMaxRate": { "type": "std::string", - "id": 40, - "offset": 688, + "id": 3, + "offset": 160, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2472376729 + "hash": 2801609581 }, - "m_showPolymorphedName": { + "m_goodPest": { "type": "bool", - "id": 41, - "offset": 720, + "id": 4, + "offset": 192, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2097929096 + "hash": 564893944 }, - "m_skipTruncation": { + "m_useSizeAnimations": { "type": "bool", - "id": 42, - "offset": 721, - "flags": 263, + "id": 5, + "offset": 193, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1838335249 + "hash": 1095895662 }, - "m_maxCopies": { - "type": "unsigned int", - "id": 43, - "offset": 724, - "flags": 263, + "m_providesWater": { + "type": "bool", + "id": 6, + "offset": 194, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 403022326 + "hash": 1403713858 }, - "m_levelRestriction": { - "type": "int", - "id": 44, - "offset": 728, - "flags": 263, + "m_providesSun": { + "type": "bool", + "id": 7, + "offset": 195, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 176502472 + "hash": 1942306581 }, - "m_delayEnchantment": { + "m_providesPollination": { "type": "bool", - "id": 45, - "offset": 732, - "flags": 287, + "id": 8, + "offset": 196, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 191336919 + "hash": 443775752 }, - "m_delayEnchantmentOrder": { - "type": "enum SpellEffect::kDelayOrder", - "id": 46, - "offset": 736, - "flags": 287, + "m_providesMagic": { + "type": "bool", + "id": 9, + "offset": 197, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2526055263, - "enum_options": { - "SpellEffect::kAnyOrder": 0, - "SpellEffect::kFirst": 1, - "SpellEffect::kSecond": 2 - } + "hash": 1391840608 }, - "m_previousSpellName": { - "type": "std::string", - "id": 47, - "offset": 744, - "flags": 268435463, + "m_providesMusic": { + "type": "bool", + "id": 10, + "offset": 198, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2903322585, - "enum_options": { - "__BASECLASS": "SpellTemplate" - } - }, - "m_cardFront": { + "hash": 1392572416 + } + } + }, + "185174602": { + "name": "class PlayerStatueBehaviorTemplate*", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 185174602, + "properties": { + "m_behaviorName": { "type": "std::string", - "id": 48, - "offset": 456, - "flags": 131359, + "id": 0, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3557598526 + "hash": 3130754092 }, - "m_useGloss": { - "type": "bool", - "id": 49, - "offset": 488, - "flags": 287, + "m_groundOffset": { + "type": "float", + "id": 1, + "offset": 120, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 668817544 + "hash": 684524077 }, - "m_ignoreDispel": { - "type": "bool", - "id": 50, - "offset": 776, - "flags": 287, + "m_yaw": { + "type": "float", + "id": 2, + "offset": 124, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1881041624 + "hash": 357256328 }, - "m_backRowFriendly": { + "m_showNametag": { "type": "bool", - "id": 51, - "offset": 777, - "flags": 287, + "id": 3, + "offset": 128, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 501584377 + "hash": 584664753 }, - "m_spellRank": { - "type": "class SharedPointer", - "id": 52, - "offset": 784, + "m_scale": { + "type": "float", + "id": 4, + "offset": 132, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3152361374 + "pointer": false, + "hash": 899693439 }, - "m_secondarySchoolName": { - "type": "std::string", - "id": 53, - "offset": 800, + "m_alpha": { + "type": "float", + "id": 5, + "offset": 136, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1803268236 + "hash": 878686493 }, - "m_spellFusion": { - "type": "unsigned int", - "id": 54, - "offset": 836, + "m_cycleSec": { + "type": "float", + "id": 6, + "offset": 140, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1658928321 + "hash": 1547908898 }, - "m_requiredSchoolName": { - "type": "std::string", - "id": 55, - "offset": 848, + "m_animDelaySec": { + "type": "float", + "id": 7, + "offset": 144, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3576058981 + "hash": 2131058854 }, - "m_retired": { - "type": "bool", - "id": 56, - "offset": 880, + "m_animChance": { + "type": "float", + "id": 8, + "offset": 148, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1931776834 + "hash": 434823806 }, - "m_shardCost": { - "type": "int", - "id": 57, - "offset": 884, + "m_animList": { + "type": "std::string", + "id": 9, + "offset": 152, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 1047182405 + "hash": 2531745852 }, - "m_requirements": { - "type": "class RequirementList*", - "id": 58, - "offset": 888, + "m_settings": { + "type": "class SharedPointer", + "id": 10, + "offset": 168, "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2944992476 + } + } + }, + "184400866": { + "name": "class NumCategoryInInventory*", + "bases": [ + "PropertyClass" + ], + "hash": 184400866, + "properties": { + "m_sCategory": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2840985510 + "pointer": false, + "hash": 1996239916 }, - "m_nextTierSpells": { - "type": "std::string", - "id": 59, - "offset": 896, - "flags": 7, - "container": "Vector", - "dynamic": true, + "m_numCategoryInInventory": { + "type": "int", + "id": 1, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 1762416321 + "hash": 639845069 } } }, - "1676673342": { - "name": "class LunariAmountTemplate", + "185180746": { + "name": "class PlayerStatueBehaviorTemplate", "bases": [ - "WizItemTemplate", - "ItemTemplate", - "GameObjectTemplate", - "CoreTemplate", + "BehaviorTemplate", "PropertyClass" ], - "hash": 1676673342, + "hash": 185180746, "properties": { - "m_behaviors": { - "type": "class BehaviorTemplate*", + "m_behaviorName": { + "type": "std::string", "id": 0, "offset": 72, "flags": 7, - "container": "Vector", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1197808594 + "pointer": false, + "hash": 3130754092 }, - "m_objectName": { - "type": "std::string", + "m_groundOffset": { + "type": "float", "id": 1, - "offset": 96, + "offset": 120, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2154940147 + "hash": 684524077 }, - "m_templateID": { - "type": "unsigned int", + "m_yaw": { + "type": "float", "id": 2, - "offset": 128, - "flags": 16777223, + "offset": 124, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1286746870 + "hash": 357256328 }, - "m_visualID": { - "type": "unsigned int", + "m_showNametag": { + "type": "bool", "id": 3, - "offset": 132, + "offset": 128, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1118778894 + "hash": 584664753 }, - "m_adjectiveList": { - "type": "std::string", + "m_scale": { + "type": "float", "id": 4, - "offset": 248, + "offset": 132, "flags": 7, - "container": "List", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 3195213318 + "hash": 899693439 }, - "m_exemptFromAOI": { - "type": "bool", + "m_alpha": { + "type": "float", "id": 5, - "offset": 240, + "offset": 136, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1457879059 + "hash": 878686493 }, - "m_displayName": { - "type": "std::string", + "m_cycleSec": { + "type": "float", "id": 6, - "offset": 168, - "flags": 8388615, + "offset": 140, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2446900370 + "hash": 1547908898 }, - "m_description": { - "type": "std::string", + "m_animDelaySec": { + "type": "float", "id": 7, - "offset": 136, - "flags": 8388615, + "offset": 144, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1649374815 + "hash": 2131058854 }, - "m_nObjectType": { - "type": "enum ObjectType", + "m_animChance": { + "type": "float", "id": 8, - "offset": 200, - "flags": 2097159, + "offset": 148, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2118905880, - "enum_options": { - "OT_UNDEFINED": 0, - "OT_PLAYER": 1, - "OT_NPC": 2, - "OT_PROP": 3, - "OT_OBJECT": 4, - "OT_HOUSE": 5, - "OT_KEY": 6, - "OT_OLD_KEY": 7, - "OT_DEED": 8, - "OT_MAIL": 9, - "OT_RECIPE": 17, - "OT_EQUIP_HEAD": 10, - "OT_EQUIP_CHEST": 11, - "OT_EQUIP_LEGS": 12, - "OT_EQUIP_HANDS": 13, - "OT_EQUIP_FINGER": 14, - "OT_EQUIP_FEET": 15, - "OT_EQUIP_EAR": 16, - "OT_BUILDING_BLOCK": 18, - "OT_BUILDING_BLOCK_SOLID": 19, - "OT_GOLF": 20, - "OT_DOOR": 21, - "OT_PET": 22, - "OT_FABRIC": 23, - "OT_WINDOW": 24, - "OT_ROOF": 25, - "OT_HORSE": 26, - "OT_STRUCTURE": 27, - "OT_HOUSING_TEXTURE": 28, - "OT_PLANT": 29 - } + "hash": 434823806 }, - "m_sIcon": { + "m_animList": { "type": "std::string", "id": 9, - "offset": 208, - "flags": 131079, - "container": "Static", - "dynamic": false, + "offset": 152, + "flags": 7, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 2306259831 + "hash": 2531745852 }, - "m_equipRequirements": { - "type": "class RequirementList*", + "m_settings": { + "type": "class SharedPointer", "id": 10, - "offset": 280, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2762617226 - }, - "m_purchaseRequirements": { - "type": "class RequirementList*", - "id": 11, - "offset": 288, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3174641793 - }, - "m_equipEffects": { - "type": "class GameEffectInfo*", - "id": 12, - "offset": 296, + "offset": 168, "flags": 7, "container": "List", "dynamic": true, "singleton": false, "pointer": true, - "hash": 836628351 - }, - "m_baseCost": { - "type": "float", - "id": 13, - "offset": 312, + "hash": 2944992476 + } + } + }, + "185378099": { + "name": "class PestBehaviorTemplate*", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 185378099, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1565352651 + "hash": 3130754092 }, - "m_creditsCost": { - "type": "float", - "id": 14, - "offset": 320, + "m_pestRank": { + "type": "int", + "id": 1, + "offset": 120, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 805514974 - }, - "m_avatarInfo": { - "type": "class AvatarItemInfoBase*", - "id": 15, - "offset": 328, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2627321299 + "hash": 2022116066 }, - "m_avatarFlags": { + "m_wiltMinRate": { "type": "std::string", - "id": 16, - "offset": 336, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2347762759 - }, - "m_itemLimit": { - "type": "int", - "id": 17, - "offset": 316, + "id": 2, + "offset": 128, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1799746856 + "hash": 3102833515 }, - "m_holidayFlag": { + "m_wiltMaxRate": { "type": "std::string", - "id": 18, - "offset": 352, + "id": 3, + "offset": 160, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2994795359 + "hash": 2801609581 }, - "m_itemSetBonusTemplateID": { - "type": "unsigned int", - "id": 19, - "offset": 384, - "flags": 33554439, + "m_goodPest": { + "type": "bool", + "id": 4, + "offset": 192, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1316835672 + "hash": 564893944 }, - "m_numPrimaryColors": { - "type": "int", - "id": 20, - "offset": 428, + "m_useSizeAnimations": { + "type": "bool", + "id": 5, + "offset": 193, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 981103872 + "hash": 1095895662 }, - "m_numSecondaryColors": { - "type": "int", - "id": 21, - "offset": 432, + "m_providesWater": { + "type": "bool", + "id": 6, + "offset": 194, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1310416868 + "hash": 1403713858 }, - "m_numPatterns": { - "type": "int", - "id": 22, - "offset": 436, + "m_providesSun": { + "type": "bool", + "id": 7, + "offset": 195, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 953162171 + "hash": 1942306581 }, - "m_school": { - "type": "std::string", - "id": 23, - "offset": 392, + "m_providesPollination": { + "type": "bool", + "id": 8, + "offset": 196, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2438566051 + "hash": 443775752 }, - "m_arenaPointCost": { - "type": "int", - "id": 24, - "offset": 440, + "m_providesMagic": { + "type": "bool", + "id": 9, + "offset": 197, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1819621796 + "hash": 1391840608 }, - "m_pvpCurrencyCost": { - "type": "int", - "id": 25, - "offset": 444, + "m_providesMusic": { + "type": "bool", + "id": 10, + "offset": 198, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 645595444 - }, - "m_pvpTourneyCurrencyCost": { - "type": "int", - "id": 26, - "offset": 448, + "hash": 1392572416 + } + } + }, + "185541139": { + "name": "class PathBehaviorTemplate*", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 185541139, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 517874954 + "hash": 3130754092 }, - "m_rank": { - "type": "int", - "id": 27, - "offset": 424, - "flags": 7, + "m_kPathType": { + "type": "enum PathBehaviorTemplate::PathType", + "id": 1, + "offset": 120, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 219803942 + "hash": 2890959924, + "enum_options": { + "PT_LOOP": 0, + "PT_CHAIN": 1, + "PT_RANDOM": 2 + } }, - "m_boyIconIndex": { - "type": "int", - "id": 28, - "offset": 452, + "m_pathID": { + "type": "gid", + "id": 2, + "offset": 128, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 802140453 + "hash": 821494322 }, - "m_girlIconIndex": { + "m_nPathDirection": { "type": "int", - "id": 29, - "offset": 456, + "id": 3, + "offset": 136, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 832706793 + "hash": 2081830230, + "enum_options": { + "__DEFAULT": 1 + } }, - "m_leashOffsetOverride": { - "type": "class SharedPointer", - "id": 30, - "offset": 464, + "m_actionList": { + "type": "class SharedPointer", + "id": 4, + "offset": 144, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "List", + "dynamic": true, "singleton": false, "pointer": true, - "hash": 1692586788 - }, - "m_rarity": { - "type": "enum RarityType", - "id": 31, - "offset": 460, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2253792108, - "enum_options": { - "RT_COMMON": 0, - "RT_UNCOMMON": 1, - "RT_RARE": 2, - "RT_ULTRARARE": 3, - "RT_EPIC": 4 - } + "hash": 2665183795 }, - "m_lunariAmount": { - "type": "int", - "id": 32, - "offset": 480, + "m_pauseChance": { + "type": "unsigned int", + "id": 5, + "offset": 160, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 474358393 + "hash": 821317997 }, - "m_nif": { - "type": "std::string", - "id": 33, - "offset": 488, - "flags": 131079, + "m_timeToPause": { + "type": "float", + "id": 6, + "offset": 164, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1764743064 + "hash": 408413991 } } }, - "909837806": { - "name": "class ClientSpellCardAttachmentCinematicAction*", + "185512758": { + "name": "class DeedBehaviorTemplate*", "bases": [ - "SpellCardAttachmentCinematicAction", - "ActorCinematicAction", - "CinematicAction", + "BehaviorTemplate", "PropertyClass" ], - "hash": 909837806, + "hash": 185512758, "properties": { - "m_timeOffset": { - "type": "float", + "m_behaviorName": { + "type": "std::string", "id": 0, "offset": 72, "flags": 7, @@ -4255,1229 +3741,1266 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 + "hash": 3130754092 }, - "m_actor": { + "m_lotWorldZone": { "type": "std::string", "id": 1, - "offset": 80, - "flags": 7, + "offset": 120, + "flags": 268435463, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2285866132 + "hash": 3026711022, + "enum_options": { + "__BASECLASS": "ZoneData" + } }, - "m_nodeName": { - "type": "std::string", + "m_itemLimit": { + "type": "int", "id": 2, - "offset": 120, + "offset": 152, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3607089954 + "hash": 1799746856 }, - "m_offset": { - "type": "class Vector3D", + "m_structureTemplateID": { + "type": "unsigned int", "id": 3, - "offset": 152, - "flags": 7, + "offset": 156, + "flags": 33554439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2445636425 + "hash": 1037379271 }, - "m_rotation": { - "type": "class Vector3D", + "m_previewWorldZone": { + "type": "std::string", "id": 4, - "offset": 164, + "offset": 160, + "flags": 268435463, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2100214145, + "enum_options": { + "__BASECLASS": "ZoneData" + } + }, + "m_initialItemLayoutFile": { + "type": "std::string", + "id": 5, + "offset": 192, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3065089042 + "hash": 1741580370 + }, + "m_alternateDeedTemplateID": { + "type": "unsigned int", + "id": 6, + "offset": 224, + "flags": 33554439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 264986664 + }, + "m_castleBlockLimit": { + "type": "int", + "id": 7, + "offset": 228, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 276037600 } } }, - "1676673302": { - "name": "class LunariAmountTemplate*", + "185554206": { + "name": "class DeckBehaviorTemplate", "bases": [ - "WizItemTemplate", - "ItemTemplate", - "GameObjectTemplate", - "CoreTemplate", + "BehaviorTemplate", "PropertyClass" ], - "hash": 1676673302, + "hash": 185554206, "properties": { - "m_behaviors": { - "type": "class BehaviorTemplate*", + "m_behaviorName": { + "type": "std::string", "id": 0, "offset": 72, "flags": 7, - "container": "Vector", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1197808594 + "pointer": false, + "hash": 3130754092 }, - "m_objectName": { + "m_defaultDeck": { "type": "std::string", "id": 1, - "offset": 96, - "flags": 7, + "offset": 120, + "flags": 268435463, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2154940147 + "hash": 2375433463, + "enum_options": { + "__BASECLASS": "DeckTemplate" + } }, - "m_templateID": { - "type": "unsigned int", + "m_primarySchoolName": { + "type": "std::string", "id": 2, - "offset": 128, - "flags": 16777223, + "offset": 152, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1286746870 + "hash": 3211370408 }, - "m_visualID": { - "type": "unsigned int", + "m_genericMaxRank": { + "type": "int", "id": 3, - "offset": 132, + "offset": 188, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1118778894 + "hash": 1490181353 }, - "m_adjectiveList": { - "type": "std::string", + "m_schoolMaxRank": { + "type": "int", "id": 4, - "offset": 248, + "offset": 192, "flags": 7, - "container": "List", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 3195213318 + "hash": 1600140084 }, - "m_exemptFromAOI": { - "type": "bool", + "m_genericMaxInstances": { + "type": "int", "id": 5, - "offset": 240, + "offset": 196, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1457879059 + "hash": 1724791269 }, - "m_displayName": { - "type": "std::string", + "m_schoolMaxInstances": { + "type": "int", "id": 6, - "offset": 168, - "flags": 8388615, + "offset": 200, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2446900370 + "hash": 1818539792 }, - "m_description": { - "type": "std::string", + "m_maxSpells": { + "type": "int", "id": 7, - "offset": 136, - "flags": 8388615, + "offset": 204, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1649374815 + "hash": 818580275 }, - "m_nObjectType": { - "type": "enum ObjectType", + "m_maxTreasureCards": { + "type": "int", "id": 8, - "offset": 200, - "flags": 2097159, + "offset": 208, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2118905880, - "enum_options": { - "OT_UNDEFINED": 0, - "OT_PLAYER": 1, - "OT_NPC": 2, - "OT_PROP": 3, - "OT_OBJECT": 4, - "OT_HOUSE": 5, - "OT_KEY": 6, - "OT_OLD_KEY": 7, - "OT_DEED": 8, - "OT_MAIL": 9, - "OT_RECIPE": 17, - "OT_EQUIP_HEAD": 10, - "OT_EQUIP_CHEST": 11, - "OT_EQUIP_LEGS": 12, - "OT_EQUIP_HANDS": 13, - "OT_EQUIP_FINGER": 14, - "OT_EQUIP_FEET": 15, - "OT_EQUIP_EAR": 16, - "OT_BUILDING_BLOCK": 18, - "OT_BUILDING_BLOCK_SOLID": 19, - "OT_GOLF": 20, - "OT_DOOR": 21, - "OT_PET": 22, - "OT_FABRIC": 23, - "OT_WINDOW": 24, - "OT_ROOF": 25, - "OT_HORSE": 26, - "OT_STRUCTURE": 27, - "OT_HOUSING_TEXTURE": 28, - "OT_PLANT": 29 - } + "hash": 383300312 }, - "m_sIcon": { - "type": "std::string", + "m_maxArchmasteryPoints": { + "type": "float", "id": 9, - "offset": 208, - "flags": 131079, + "offset": 212, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2306259831 - }, - "m_equipRequirements": { - "type": "class RequirementList*", - "id": 10, - "offset": 280, + "hash": 430012637 + } + } + }, + "185541179": { + "name": "class PathBehaviorTemplate", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 185541179, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2762617226 + "pointer": false, + "hash": 3130754092 }, - "m_purchaseRequirements": { - "type": "class RequirementList*", - "id": 11, - "offset": 288, - "flags": 7, + "m_kPathType": { + "type": "enum PathBehaviorTemplate::PathType", + "id": 1, + "offset": 120, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3174641793 - }, - "m_equipEffects": { - "type": "class GameEffectInfo*", - "id": 12, - "offset": 296, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 836628351 + "pointer": false, + "hash": 2890959924, + "enum_options": { + "PT_LOOP": 0, + "PT_CHAIN": 1, + "PT_RANDOM": 2 + } }, - "m_baseCost": { - "type": "float", - "id": 13, - "offset": 312, + "m_pathID": { + "type": "gid", + "id": 2, + "offset": 128, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1565352651 + "hash": 821494322 }, - "m_creditsCost": { - "type": "float", - "id": 14, - "offset": 320, + "m_nPathDirection": { + "type": "int", + "id": 3, + "offset": 136, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 805514974 + "hash": 2081830230, + "enum_options": { + "__DEFAULT": 1 + } }, - "m_avatarInfo": { - "type": "class AvatarItemInfoBase*", - "id": 15, - "offset": 328, + "m_actionList": { + "type": "class SharedPointer", + "id": 4, + "offset": 144, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "List", + "dynamic": true, "singleton": false, "pointer": true, - "hash": 2627321299 + "hash": 2665183795 }, - "m_avatarFlags": { - "type": "std::string", - "id": 16, - "offset": 336, + "m_pauseChance": { + "type": "unsigned int", + "id": 5, + "offset": 160, "flags": 7, - "container": "List", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 2347762759 + "hash": 821317997 }, - "m_itemLimit": { - "type": "int", - "id": 17, - "offset": 316, + "m_timeToPause": { + "type": "float", + "id": 6, + "offset": 164, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1799746856 - }, - "m_holidayFlag": { + "hash": 408413991 + } + } + }, + "185554230": { + "name": "class DeckBehaviorTemplate*", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 185554230, + "properties": { + "m_behaviorName": { "type": "std::string", - "id": 18, - "offset": 352, + "id": 0, + "offset": 72, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2994795359 + "hash": 3130754092 }, - "m_itemSetBonusTemplateID": { - "type": "unsigned int", - "id": 19, - "offset": 384, - "flags": 33554439, + "m_defaultDeck": { + "type": "std::string", + "id": 1, + "offset": 120, + "flags": 268435463, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1316835672 + "hash": 2375433463, + "enum_options": { + "__BASECLASS": "DeckTemplate" + } }, - "m_numPrimaryColors": { - "type": "int", - "id": 20, - "offset": 428, + "m_primarySchoolName": { + "type": "std::string", + "id": 2, + "offset": 152, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 981103872 + "hash": 3211370408 }, - "m_numSecondaryColors": { + "m_genericMaxRank": { "type": "int", - "id": 21, - "offset": 432, + "id": 3, + "offset": 188, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1310416868 + "hash": 1490181353 }, - "m_numPatterns": { + "m_schoolMaxRank": { "type": "int", - "id": 22, - "offset": 436, + "id": 4, + "offset": 192, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 953162171 + "hash": 1600140084 }, - "m_school": { - "type": "std::string", - "id": 23, - "offset": 392, + "m_genericMaxInstances": { + "type": "int", + "id": 5, + "offset": 196, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2438566051 + "hash": 1724791269 }, - "m_arenaPointCost": { + "m_schoolMaxInstances": { "type": "int", - "id": 24, - "offset": 440, + "id": 6, + "offset": 200, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1819621796 + "hash": 1818539792 }, - "m_pvpCurrencyCost": { + "m_maxSpells": { "type": "int", - "id": 25, - "offset": 444, + "id": 7, + "offset": 204, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 645595444 + "hash": 818580275 }, - "m_pvpTourneyCurrencyCost": { + "m_maxTreasureCards": { "type": "int", - "id": 26, - "offset": 448, + "id": 8, + "offset": 208, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 517874954 + "hash": 383300312 }, - "m_rank": { - "type": "int", - "id": 27, - "offset": 424, + "m_maxArchmasteryPoints": { + "type": "float", + "id": 9, + "offset": 212, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 219803942 - }, - "m_boyIconIndex": { - "type": "int", - "id": 28, - "offset": 452, + "hash": 430012637 + } + } + }, + "186499850": { + "name": "class StopHangingRotationCinematicAction*", + "bases": [ + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 186499850, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 802140453 + "hash": 2237098605 }, - "m_girlIconIndex": { - "type": "int", - "id": 29, - "offset": 456, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 832706793 + "hash": 2285866132 }, - "m_leashOffsetOverride": { - "type": "class SharedPointer", - "id": 30, - "offset": 464, + "m_cloaked": { + "type": "bool", + "id": 2, + "offset": 124, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1692586788 + "pointer": false, + "hash": 7349510 }, - "m_rarity": { - "type": "enum RarityType", - "id": 31, - "offset": 460, + "m_type": { + "type": "enum StopHangingRotationCinematicAction::kStopHangingTypes", + "id": 3, + "offset": 120, "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2253792108, + "hash": 2339468071, "enum_options": { - "RT_COMMON": 0, - "RT_UNCOMMON": 1, - "RT_RARE": 2, - "RT_ULTRARARE": 3, - "RT_EPIC": 4 + "kStopHanging_Burn": 0, + "kStopHanging_Add": 1 } - }, - "m_lunariAmount": { - "type": "int", - "id": 32, - "offset": 480, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 474358393 - }, - "m_nif": { - "type": "std::string", - "id": 33, - "offset": 488, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1764743064 - } - } - }, - "908701415": { - "name": "class CastleBlocksBehavior*", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 908701415, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 } } }, - "2089962586": { - "name": "class SharedPointer", + "186228234": { + "name": "class SharedPointer", "bases": [ - "MoveBehavior", - "BehaviorInstance", + "AnimatePipsCinematicAction", + "ActorCinematicAction", + "CinematicAction", "PropertyClass" ], - "hash": 2089962586, + "hash": 186228234, "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", + "m_timeOffset": { + "type": "float", "id": 0, - "offset": 104, - "flags": 39, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 + "hash": 2237098605 }, - "m_nFlags": { - "type": "unsigned int", + "m_actor": { + "type": "std::string", "id": 1, - "offset": 112, - "flags": 31, + "offset": 80, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 922328456 + "hash": 2285866132 }, - "m_nMoveState": { - "type": "enum MoveState", + "m_sActorPrefix": { + "type": "std::string", "id": 2, - "offset": 116, - "flags": 2097183, + "offset": 120, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1430960270, - "enum_options": { - "MS_WALKING": 0, - "MS_RUNNING": 1, - "MS_SWIMMING": 2, - "MS_FLYING": 3, - "MS_JUMPING": 4, - "MS_FALLING": 5 - } - } - } - }, - "908701391": { - "name": "class CastleBlocksBehavior", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 908701391, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, + "hash": 3246317205 + }, + "m_fPerPipDelay": { + "type": "float", + "id": 3, + "offset": 152, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 - } - } - }, - "2089652934": { - "name": "class SharedPointer", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 2089652934, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, + "hash": 1466507836 + }, + "m_fRate": { + "type": "float", + "id": 4, + "offset": 156, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 - }, - "m_textureRemapList": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 3580415920 + "hash": 883665801 } } }, - "1676682085": { - "name": "enum CoreObjectInfo::LoadingType", - "bases": [], - "hash": 1676682085, - "properties": {} - }, - "909451343": { - "name": "class SharedPointer", + "186498713": { + "name": "class SharedPointer", "bases": [ - "PositionalSoundBehavior", - "SoundBehavior", - "AreaBehavior", - "BehaviorInstance", + "RandomSpellEffect", + "SpellEffect", "PropertyClass" ], - "hash": 909451343, + "hash": 186498713, "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", + "m_effectType": { + "type": "enum SpellEffect::kSpellEffects", "id": 0, - "offset": 104, - "flags": 39, + "offset": 72, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 + "hash": 2578255295, + "enum_options": { + "kInvalidSpellEffect": 0, + "kDamage": 1, + "kDamageNoCrit": 2, + "kHeal": 3, + "kHealPercent": 4, + "kSetHealPercent": 113, + "kStealHealth": 5, + "kReduceOverTime": 6, + "kDetonateOverTime": 7, + "kPushCharm": 8, + "kStealCharm": 9, + "kPushWard": 10, + "kStealWard": 11, + "kPushOverTime": 12, + "kStealOverTime": 13, + "kRemoveCharm": 14, + "kRemoveWard": 15, + "kRemoveOverTime": 16, + "kRemoveAura": 17, + "kSwapAll": 18, + "kSwapCharm": 19, + "kSwapWard": 20, + "kSwapOverTime": 21, + "kModifyIncomingDamage": 22, + "kModifyIncomingDamageFlat": 119, + "kMaximumIncomingDamage": 23, + "kModifyIncomingHeal": 24, + "kModifyIncomingHealFlat": 118, + "kModifyIncomingDamageType": 25, + "kModifyIncomingArmorPiercing": 26, + "kModifyOutgoingDamage": 27, + "kModifyOutgoingDamageFlat": 121, + "kModifyOutgoingHeal": 28, + "kModifyOutgoingHealFlat": 120, + "kModifyOutgoingDamageType": 29, + "kModifyOutgoingArmorPiercing": 30, + "kModifyOutgoingStealHealth": 31, + "kModifyIncomingStealHealth": 32, + "kBounceNext": 33, + "kBouncePrevious": 34, + "kBounceBack": 35, + "kBounceAll": 36, + "kAbsorbDamage": 37, + "kAbsorbHeal": 38, + "kModifyAccuracy": 39, + "kDispel": 40, + "kConfusion": 41, + "kCloakedCharm": 42, + "kCloakedWard": 43, + "kStunResist": 44, + "kClue": 111, + "kPipConversion": 45, + "kCritBoost": 46, + "kCritBlock": 47, + "kPolymorph": 48, + "kDelayCast": 49, + "kModifyCardCloak": 50, + "kModifyCardDamage": 51, + "kModifyCardAccuracy": 53, + "kModifyCardMutation": 54, + "kModifyCardRank": 55, + "kModifyCardArmorPiercing": 56, + "kSummonCreature": 65, + "kTeleportPlayer": 66, + "kStun": 67, + "kDampen": 68, + "kReshuffle": 69, + "kMindControl": 70, + "kModifyPips": 71, + "kModifyPowerPips": 72, + "kModifyShadowPips": 73, + "kModifyHate": 74, + "kDamageOverTime": 75, + "kHealOverTime": 76, + "kModifyPowerPipChance": 77, + "kModifyRank": 78, + "kStunBlock": 79, + "kRevealCloak": 80, + "kInstantKill": 81, + "kAfterlife": 82, + "kDeferredDamage": 83, + "kDamagePerTotalPipPower": 84, + "kModifyCardHeal": 52, + "kModifyCardCharm": 57, + "kModifyCardWard": 58, + "kModifyCardOutgoingDamage": 59, + "kModifyCardOutgoingAccuracy": 60, + "kModifyCardOutgoingHeal": 61, + "kModifyCardOutgoingArmorPiercing": 62, + "kModifyCardIncomingDamage": 63, + "kModifyCardAbsorbDamage": 64, + "kCloakedWardNoRemove": 86, + "kAddCombatTriggerList": 87, + "kRemoveCombatTriggerList": 88, + "kBacklashDamage": 89, + "kModifyBacklash": 90, + "kIntercept": 91, + "kShadowSelf": 92, + "kShadowCreature": 93, + "kModifyShadowCreatureLevel": 94, + "kSelectShadowCreatureAttackTarget": 95, + "kShadowDecrementTurn": 96, + "kCritBoostSchoolSpecific": 97, + "kSpawnCreature": 98, + "kUnPolymorph": 99, + "kPowerPipConversion": 100, + "kProtectCardBeneficial": 101, + "kProtectCardHarmful": 102, + "kProtectBeneficial": 103, + "kProtectHarmful": 104, + "kDivideDamage": 105, + "kCollectEssence": 106, + "kKillCreature": 107, + "kDispelBlock": 108, + "kConfusionBlock": 109, + "kModifyPipRoundRate": 110, + "kMaxHealthDamage": 112, + "kUntargetable": 114, + "kMakeTargetable": 115, + "kForceTargetable": 116, + "kRemoveStunBlock": 117, + "kExitCombat": 122, + "kSuspendPips": 123, + "kResumePips": 124, + "kAutoPass": 125, + "kStopAutoPass": 126, + "kVanish": 127, + "kStopVanish": 128, + "kMaxHealthHeal": 129, + "kHealByWard": 130, + "kTaunt": 131, + "kPacify": 132, + "kRemoveTargetRestriction": 133, + "kConvertHangingEffect": 134, + "kAddSpellToDeck": 135, + "kAddSpellToHand": 136, + "kModifyIncomingDamageOverTime": 137, + "kModifyIncomingHealOverTime": 138, + "kModifyCardDamagebyRank": 139, + "kPushConvertedCharm": 140, + "kStealConvertedCharm": 141, + "kPushConvertedWard": 142, + "kStealConvertedWard": 143, + "kPushConvertedOverTime": 144, + "kStealConvertedOverTime": 145, + "kRemoveConvertedCharm": 146, + "kRemoveConvertedWard": 147, + "kRemoveConvertedOverTime": 148, + "kModifyOverTimeDuration": 149, + "kModifySchoolPips": 150 + } }, - "m_radius": { - "type": "float", + "m_effectParam": { + "type": "int", "id": 1, - "offset": 116, - "flags": 7, + "offset": 76, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 989410271 + "hash": 357920024 }, - "m_category": { - "type": "enum AudioCategory", + "m_disposition": { + "type": "enum SpellEffect::kHangingDisposition", "id": 2, - "offset": 124, + "offset": 80, "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2951251982, + "hash": 1904841031, "enum_options": { - "AudioCategory_Irrelevent": 0, - "AudioCategory_Accoustic": 1, - "AudioCategory_Noise": 2, - "AudioCategory_Music": 3 + "kBoth": 0, + "kBeneficial": 1, + "kHarmful": 2 } }, - "m_exclusive": { - "type": "bool", + "m_sDamageType": { + "type": "std::string", "id": 3, - "offset": 128, + "offset": 88, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 824383403 + "hash": 2501054223 }, - "m_playList": { - "type": "class PlayList", + "m_damageType": { + "type": "unsigned int", "id": 4, - "offset": 176, - "flags": 7, + "offset": 84, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2061221957 + "hash": 737882766 }, - "m_volume": { - "type": "float", + "m_pipNum": { + "type": "int", "id": 5, - "offset": 304, + "offset": 128, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1162855023 + "hash": 830827539 }, - "m_loopCount": { + "m_actNum": { "type": "int", "id": 6, - "offset": 308, - "flags": 7, + "offset": 132, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 865634717 + "hash": 236824866 }, - "m_minimumFalloff": { - "type": "float", + "m_effectTarget": { + "type": "enum SpellEffect::kEffectTarget", "id": 7, - "offset": 328, - "flags": 7, + "offset": 140, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 355697197 + "hash": 2458940523, + "enum_options": { + "kInvalidTarget": 0, + "kSpell": 1, + "kSpecificSpells": 2, + "kGlobal": 3, + "kEnemyTeam": 4, + "kEnemyTeamAllAtOnce": 5, + "kFriendlyTeam": 6, + "kFriendlyTeamAllAtOnce": 7, + "kEnemySingle": 8, + "kFriendlySingle": 9, + "kMinion": 10, + "kFriendlyMinion": 17, + "kEnemyMinion": 18, + "kSelf": 11, + "kAtLeastOneEnemy": 13, + "kPreselectedEnemySingle": 12, + "kMultiTargetEnemy": 14, + "kMultiTargetFriendly": 15, + "kFriendlySingleNotMe": 16 + } }, - "m_maximumFalloff": { - "type": "float", + "m_numRounds": { + "type": "int", "id": 8, - "offset": 332, - "flags": 7, + "offset": 144, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2210192367 + "hash": 1229753829 }, - "m_animDriven": { - "type": "bool", + "m_paramPerRound": { + "type": "int", "id": 9, - "offset": 392, - "flags": 7, + "offset": 148, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 398394720 + "hash": 683234234 }, - "m_inverted": { - "type": "bool", + "m_healModifier": { + "type": "float", "id": 10, - "offset": 397, + "offset": 152, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1034821044 + "hash": 1317921248, + "enum_options": { + "__DEFAULT": "1.0" + } }, - "m_fInsideAngle": { - "type": "float", + "m_spellTemplateID": { + "type": "unsigned int", "id": 11, - "offset": 528, - "flags": 7, + "offset": 120, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1114383840 + "hash": 585567702 }, - "m_fOutsideAngle": { - "type": "float", + "m_enchantmentSpellTemplateID": { + "type": "unsigned int", "id": 12, - "offset": 532, - "flags": 7, + "offset": 124, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1627152289 + "hash": 246955115 }, - "m_fOutsideVolume": { - "type": "float", + "m_act": { + "type": "bool", "id": 13, - "offset": 536, + "offset": 136, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 90369618 + "hash": 269510283 }, - "m_fRangeScale": { - "type": "float", + "m_cloaked": { + "type": "bool", "id": 14, - "offset": 540, - "flags": 7, + "offset": 157, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1749294034 + "hash": 7349510 }, - "m_fAttenuationFactor": { - "type": "float", + "m_bypassProtection": { + "type": "bool", "id": 15, - "offset": 544, - "flags": 7, + "offset": 159, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 273292776 + "hash": 1657138252 }, - "m_eAttenuationType": { - "type": "enum PositionInfoAttenuationType", + "m_armorPiercingParam": { + "type": "int", "id": 16, - "offset": 548, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2427193304, - "enum_options": { - "Standard": 0, - "Unit Range Power": 1 - } - } - } - }, - "2089988868": { - "name": "class PlayerStatueSettings*", - "bases": [ - "PropertyClass" - ], - "hash": 2089988868, - "properties": { - "m_group": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, + "offset": 160, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2293515464 + "hash": 2025530205 }, - "m_name": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 7, + "m_chancePerTarget": { + "type": "int", + "id": 17, + "offset": 164, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1717359772 - } - } - }, - "1677508347": { - "name": "class SharedPointer", - "bases": [ - "Requirement", - "PropertyClass" - ], - "hash": 1677508347, - "properties": { - "m_applyNOT": { + "hash": 845426794 + }, + "m_protected": { "type": "bool", - "id": 0, - "offset": 72, + "id": 18, + "offset": 168, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1746328074, - "enum_options": { - "__DEFAULT": 0 - } + "hash": 1445655037 }, - "m_operator": { - "type": "enum Requirement::Operator", - "id": 1, - "offset": 76, - "flags": 2097183, + "m_converted": { + "type": "bool", + "id": 19, + "offset": 169, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2672792317, - "enum_options": { - "ROP_AND": 0, - "ROP_OR": 1, - "__DEFAULT": "ROP_AND" - } + "hash": 1590428797 }, - "m_templateID": { - "type": "gid", - "id": 2, - "offset": 80, - "flags": 33554439, + "m_rank": { + "type": "int", + "id": 20, + "offset": 208, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1075328001 - } - } - }, - "2089965014": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 2089965014, - "properties": { - "m_progressHistoryList": { - "type": "int", - "id": 0, - "offset": 72, + "hash": 219803942 + }, + "m_effectList": { + "type": "class SharedPointer", + "id": 21, + "offset": 224, "flags": 7, "container": "List", "dynamic": true, "singleton": false, - "pointer": false, - "hash": 1514478333 - } - } - }, - "1677116766": { - "name": "class SpellDataList", - "bases": [ - "PropertyClass" - ], - "hash": 1677116766, - "properties": { - "m_spellDataList": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, "pointer": true, - "hash": 1628917702 + "hash": 707154804 } } }, - "909838190": { - "name": "class ClientSpellCardAttachmentCinematicAction", + "187425016": { + "name": "class TipFrame", "bases": [ - "SpellCardAttachmentCinematicAction", - "ActorCinematicAction", - "CinematicAction", + "WindowLayout", + "Window", "PropertyClass" ], - "hash": 909838190, + "hash": 187425016, "properties": { - "m_timeOffset": { - "type": "float", + "m_sName": { + "type": "std::string", "id": 0, - "offset": 72, - "flags": 7, + "offset": 80, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 + "hash": 2306437263 }, - "m_actor": { - "type": "std::string", + "m_Children": { + "type": "class SharedPointer", "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 2285866132 + "pointer": true, + "hash": 2621225959 }, - "m_nodeName": { - "type": "std::string", + "m_Style": { + "type": "unsigned int", "id": 2, - "offset": 120, - "flags": 7, + "offset": 152, + "flags": 1048583, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3607089954 + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152, + "H_CENTER": 16777216, + "H_RIGHT": 33554432, + "V_CENTER": 2147483648, + "V_BOTTOM": 67108864, + "SORT": 536870912, + "LAYOUT_VERT": 1073741824, + "LAYOUT_REVERSE": 2147483648, + "DO_NOT_WRAP": 134217728 + } }, - "m_offset": { - "type": "class Vector3D", + "m_Flags": { + "type": "unsigned int", "id": 3, - "offset": 152, - "flags": 7, + "offset": 156, + "flags": 1048583, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2445636425 + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } }, - "m_rotation": { - "type": "class Vector3D", + "m_Window": { + "type": "class Rect", "id": 4, - "offset": 164, - "flags": 7, + "offset": 160, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3065089042 - } - } - }, - "2089988908": { - "name": "class PlayerStatueSettings", - "bases": [ - "PropertyClass" - ], - "hash": 2089988908, - "properties": { - "m_group": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, + "hash": 3105139380 + }, + "m_fTargetAlpha": { + "type": "float", + "id": 5, + "offset": 212, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2293515464 + "hash": 1809129834 }, - "m_name": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 7, + "m_fDisabledAlpha": { + "type": "float", + "id": 6, + "offset": 216, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1717359772 - } - } - }, - "910630495": { - "name": "class SharedPointer", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 910630495, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, + "hash": 1389987675 + }, + "m_fAlpha": { + "type": "float", + "id": 7, + "offset": 208, + "flags": 65671, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 - } - } - }, - "1678010558": { - "name": "class SG_GameAction_DetonateBlock", - "bases": [ - "SG_GameAction", - "PropertyClass" - ], - "hash": 1678010558, - "properties": { - "m_target": { - "type": "enum SG_GameAction::SG_Target", - "id": 0, - "offset": 72, - "flags": 2097159, + "hash": 482130755 + }, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3623628394 + }, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1166870973, - "enum_options": { - "Target_Ball": 0, - "Target_Self": 1, - "Target_Connections": 2, - "__DEFAULT": "Target_Ball" - } + "hash": 2102211316 }, - "m_impactInteraction": { + "m_sScript": { "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, + "id": 10, + "offset": 352, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3623009561 + "hash": 1846695875 }, - "m_fExplosionForceScalar": { - "type": "float", - "id": 2, - "offset": 116, - "flags": 7, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1506193859 + "hash": 3389835433 }, - "m_fExplosionRadiusScalar": { - "type": "float", - "id": 3, - "offset": 120, - "flags": 7, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 658772124 - } - } - }, - "2092894194": { - "name": "class BracketRewards*", - "bases": [ - "PropertyClass" - ], - "hash": 2092894194, - "properties": { - "m_place": { - "type": "int", - "id": 0, - "offset": 72, - "flags": 63, + "hash": 2547159940 + }, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 806257663 + "hash": 1513510520 }, - "m_lootTableNameList": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, "container": "List", "dynamic": true, "singleton": false, "pointer": false, - "hash": 2465726014 + "hash": 2587533771 }, - "m_lootTableNameBlob": { - "type": "std::string", - "id": 2, - "offset": 96, - "flags": 551, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2465369761 - }, - "m_templateIDList": { - "type": "unsigned int", - "id": 3, - "offset": 128, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1639803570 + "hash": 3091503757 }, - "m_templateIDListBlob": { - "type": "std::string", - "id": 4, - "offset": 144, - "flags": 551, + "m_nHSpacing": { + "type": "int", + "id": 16, + "offset": 584, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3246130975 + "hash": 893611957 }, - "m_rewardDescriptor": { - "type": "std::string", - "id": 5, - "offset": 176, - "flags": 63, + "m_nVSpacing": { + "type": "int", + "id": 17, + "offset": 588, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1935206431 + "hash": 551359491 } } }, - "913029011": { - "name": "class BoxGeomParams*", + "186501386": { + "name": "class StopHangingRotationCinematicAction", "bases": [ - "GeomParams", + "ActorCinematicAction", + "CinematicAction", "PropertyClass" ], - "hash": 913029011, + "hash": 186501386, "properties": { - "m_eType": { - "type": "enum ProxyType", + "m_timeOffset": { + "type": "float", "id": 0, "offset": 72, - "flags": 2097159, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1656534066, - "enum_options": { - "ProxyTypeBox": 0, - "ProxyTypeRay": 1, - "ProxyTypeSphere": 2, - "ProxyTypeCylinder": 3, - "ProxyTypeTube": 4, - "ProxyTypePlane": 5, - "ProxyTypeMesh": 6, - "ProxyTypeInvalid": 7 - } + "hash": 2237098605 }, - "m_fLength": { - "type": "float", + "m_actor": { + "type": "std::string", "id": 1, "offset": 80, "flags": 7, @@ -5485,1022 +5008,858 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 558261279 + "hash": 2285866132 }, - "m_fWidth": { - "type": "float", + "m_cloaked": { + "type": "bool", "id": 2, - "offset": 84, + "offset": 124, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 508100541 + "hash": 7349510 }, - "m_fDepth": { - "type": "float", + "m_type": { + "type": "enum StopHangingRotationCinematicAction::kStopHangingTypes", "id": 3, - "offset": 88, - "flags": 7, + "offset": 120, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 485437362 + "hash": 2339468071, + "enum_options": { + "kStopHanging_Burn": 0, + "kStopHanging_Add": 1 + } } } }, - "1679386772": { - "name": "class PetCameraActorCinematicAction", + "187087308": { + "name": "class ResistLimitOverride", "bases": [ - "ActorCinematicAction", - "CinematicAction", + "CombatRule", "PropertyClass" ], - "hash": 1679386772, + "hash": 187087308, "properties": { - "m_timeOffset": { + "m_resistLimit": { "type": "float", "id": 0, "offset": 72, - "flags": 7, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 + "hash": 1192834544 }, - "m_actor": { - "type": "std::string", + "m_rK0": { + "type": "float", "id": 1, + "offset": 76, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 357247908 + }, + "m_rN0": { + "type": "float", + "id": 2, "offset": 80, - "flags": 7, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2285866132 + "hash": 357248007 } } }, - "2092894034": { - "name": "class BracketRewards", + "187425400": { + "name": "class TipFrame*", "bases": [ + "WindowLayout", + "Window", "PropertyClass" ], - "hash": 2092894034, + "hash": 187425400, "properties": { - "m_place": { - "type": "int", + "m_sName": { + "type": "std::string", "id": 0, - "offset": 72, - "flags": 63, + "offset": 80, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 806257663 + "hash": 2306437263 }, - "m_lootTableNameList": { - "type": "std::string", + "m_Children": { + "type": "class SharedPointer", "id": 1, - "offset": 80, - "flags": 7, - "container": "List", + "offset": 112, + "flags": 65671, + "container": "Vector", "dynamic": true, "singleton": false, - "pointer": false, - "hash": 2465726014 + "pointer": true, + "hash": 2621225959 }, - "m_lootTableNameBlob": { - "type": "std::string", + "m_Style": { + "type": "unsigned int", "id": 2, - "offset": 96, - "flags": 551, + "offset": 152, + "flags": 1048583, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2465369761 + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152, + "H_CENTER": 16777216, + "H_RIGHT": 33554432, + "V_CENTER": 2147483648, + "V_BOTTOM": 67108864, + "SORT": 536870912, + "LAYOUT_VERT": 1073741824, + "LAYOUT_REVERSE": 2147483648, + "DO_NOT_WRAP": 134217728 + } }, - "m_templateIDList": { + "m_Flags": { "type": "unsigned int", "id": 3, - "offset": 128, - "flags": 7, - "container": "List", - "dynamic": true, + "offset": 156, + "flags": 1048583, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 1639803570 + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } }, - "m_templateIDListBlob": { - "type": "std::string", + "m_Window": { + "type": "class Rect", "id": 4, - "offset": 144, - "flags": 551, + "offset": 160, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3246130975 + "hash": 3105139380 }, - "m_rewardDescriptor": { - "type": "std::string", + "m_fTargetAlpha": { + "type": "float", "id": 5, - "offset": 176, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1935206431 - } - } - }, - "913028834": { - "name": "class RayGeomParams", - "bases": [ - "GeomParams", - "PropertyClass" - ], - "hash": 913028834, - "properties": { - "m_eType": { - "type": "enum ProxyType", - "id": 0, - "offset": 72, - "flags": 2097159, + "offset": 212, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1656534066, - "enum_options": { - "ProxyTypeBox": 0, - "ProxyTypeRay": 1, - "ProxyTypeSphere": 2, - "ProxyTypeCylinder": 3, - "ProxyTypeTube": 4, - "ProxyTypePlane": 5, - "ProxyTypeMesh": 6, - "ProxyTypeInvalid": 7 - } + "hash": 1809129834 }, - "m_vPosition": { - "type": "class Vector3D", - "id": 1, - "offset": 80, - "flags": 7, + "m_fDisabledAlpha": { + "type": "float", + "id": 6, + "offset": 216, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2432577069 + "hash": 1389987675 }, - "m_vDirection": { - "type": "class Vector3D", - "id": 2, - "offset": 92, - "flags": 7, + "m_fAlpha": { + "type": "float", + "id": 7, + "offset": 208, + "flags": 65671, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2142285753 + "hash": 482130755 }, - "m_fLength": { - "type": "float", - "id": 3, - "offset": 104, - "flags": 7, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 558261279 - } - } - }, - "1678778163": { - "name": "class ClientMagicSchoolBehavior", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1678778163, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, + "pointer": true, + "hash": 3623628394 + }, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 + "hash": 2102211316 }, - "m_schoolOfFocus": { - "type": "unsigned int", - "id": 1, - "offset": 128, - "flags": 31, + "m_sScript": { + "type": "std::string", + "id": 10, + "offset": 352, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 236936682 + "hash": 1846695875 }, - "m_experiencePoints": { - "type": "int", - "id": 2, - "offset": 136, - "flags": 31, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2011512991 + "hash": 3389835433 }, - "m_level": { - "type": "int", - "id": 3, - "offset": 132, - "flags": 31, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 801285362 + "hash": 2547159940 }, - "m_trainingPoints": { - "type": "int", - "id": 4, - "offset": 140, - "flags": 31, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1003892499 + "hash": 1513510520 }, - "m_overflowXP": { - "type": "int", - "id": 5, - "offset": 148, - "flags": 31, - "container": "Static", - "dynamic": false, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 315792502 + "hash": 2587533771 }, - "m_levelLocked": { - "type": "int", - "id": 6, - "offset": 152, - "flags": 31, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1481284996 + "hash": 3091503757 }, - "m_equippedTeleportEffect": { - "type": "unsigned int", - "id": 7, - "offset": 144, - "flags": 31, + "m_nHSpacing": { + "type": "int", + "id": 16, + "offset": 584, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 918478182 + "hash": 893611957 }, - "m_secondarySchool": { - "type": "unsigned int", - "id": 8, - "offset": 156, - "flags": 31, + "m_nVSpacing": { + "type": "int", + "id": 17, + "offset": 588, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 479424797 + "hash": 551359491 } } }, - "2091674507": { - "name": "class SharedPointer", + "188979109": { + "name": "enum SG_GameAction::SG_Target", + "bases": [], + "hash": 188979109, + "properties": {} + }, + "188417868": { + "name": "class ClientBGSigilProxyBehavior", "bases": [ - "PositionalSoundBehaviorTemplate", - "SoundBehaviorTemplate", - "AreaBehaviorTemplate", - "BehaviorTemplate", + "BGSigilProxyBehavior", + "BehaviorInstance", "PropertyClass" ], - "hash": 2091674507, + "hash": 188417868, "properties": { - "m_behaviorName": { - "type": "std::string", + "m_behaviorTemplateNameID": { + "type": "unsigned int", "id": 0, - "offset": 72, - "flags": 7, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3130754092 + "hash": 223437287 }, - "m_radius": { - "type": "float", + "m_autoCapTimer": { + "type": "class BGSigilTimer", "id": 1, - "offset": 120, - "flags": 7, + "offset": 112, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 989410271 + "hash": 2270881950 }, - "m_category": { - "type": "enum AudioCategory", + "m_timerTeam": { + "type": "std::string", "id": 2, - "offset": 124, - "flags": 2097159, + "offset": 216, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2951251982, - "enum_options": { - "AudioCategory_Irrelevent": 0, - "AudioCategory_Accoustic": 1, - "AudioCategory_Noise": 2, - "AudioCategory_Music": 3, - "AudioCategory_MusicAtSFXVolume": 4, - "AudioCategory_Dialog": 5, - "AudioCategory_UI": 6, - "AudioCategory_NoiseAtMusicVolume": 7 - } + "hash": 1994153155 }, - "m_exclusive": { - "type": "bool", + "m_teamOwner": { + "type": "std::string", "id": 3, - "offset": 128, - "flags": 7, + "offset": 248, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 824383403 + "hash": 3126686637 }, - "m_active": { + "m_combatActive": { "type": "bool", "id": 4, - "offset": 129, - "flags": 7, + "offset": 280, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 239335471 + "hash": 1372743333 }, - "m_enableReqs": { - "type": "class SharedPointer", + "m_captureable": { + "type": "bool", "id": 5, - "offset": 136, - "flags": 263, + "offset": 281, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3158020443 + "pointer": false, + "hash": 1101963387 }, - "m_trackFilenameList": { - "type": "std::string", + "m_allowAutoCap": { + "type": "bool", "id": 6, - "offset": 152, - "flags": 7, - "container": "Vector", - "dynamic": true, + "offset": 282, + "flags": 31, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 2531081709 + "hash": 946300927 }, - "m_playList": { - "type": "class PlayListEntry*", + "m_sigilAggroRange": { + "type": "float", "id": 7, - "offset": 176, - "flags": 7, - "container": "Vector", - "dynamic": true, + "offset": 284, + "flags": 31, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3907873161 + "pointer": false, + "hash": 995063020 }, - "m_priority": { - "type": "int", + "m_playerAggroRange": { + "type": "float", "id": 8, - "offset": 208, - "flags": 7, + "offset": 288, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1235205852 + "hash": 1776075073 }, - "m_volume": { - "type": "float", + "m_triggerOrientation": { + "type": "class Vector3D", "id": 9, - "offset": 200, - "flags": 7, + "offset": 292, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1162855023 + "hash": 2671004802 }, - "m_loopCount": { - "type": "int", + "m_triggerLocation": { + "type": "class Vector3D", "id": 10, - "offset": 204, - "flags": 7, + "offset": 304, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 865634717 + "hash": 2573315471 }, - "m_progression": { - "type": "enum PlayList::Progression", + "m_triggerBox": { + "type": "bool", "id": 11, - "offset": 220, - "flags": 2097159, + "offset": 316, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3279400238, - "enum_options": { - "Sequence": 0, - "Random": 1, - "SequenceOnceOnly": 2, - "RandomNoRepeat": 3 - } + "hash": 962168144 }, - "m_progressMin": { + "m_width": { "type": "float", "id": 12, - "offset": 212, - "flags": 7, + "offset": 320, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1497550192 + "hash": 904656279 }, - "m_progressMax": { + "m_length": { "type": "float", "id": 13, - "offset": 216, - "flags": 7, + "offset": 324, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1497549938 + "hash": 759698745 }, - "m_audioFilterSet": { - "type": "unsigned int", + "m_triggerSphere": { + "type": "bool", "id": 14, - "offset": 224, - "flags": 33554439, + "offset": 328, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 831339825 + "hash": 1467830382 }, - "m_animationNameFilter": { - "type": "std::string", + "m_radius": { + "type": "float", "id": 15, - "offset": 232, - "flags": 7, + "offset": 332, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2292854242 + "hash": 989410271 }, - "m_functionallabel": { - "type": "std::string", + "m_inRange": { + "type": "class SharedPointer", "id": 16, - "offset": 264, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3589331278 - }, - "m_innerRadius": { - "type": "float", - "id": 17, - "offset": 296, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 686816091 - }, - "m_inverted": { - "type": "bool", - "id": 18, - "offset": 300, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1034821044 - }, - "m_fRangeScale": { - "type": "float", - "id": 19, - "offset": 304, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1749294034 - }, - "m_fAttenuationFactor": { - "type": "float", - "id": 20, - "offset": 308, - "flags": 7, - "container": "Static", - "dynamic": false, + "offset": 336, + "flags": 31, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 273292776 - }, - "m_eAttenuationType": { - "type": "enum PositionInfoAttenuationType", - "id": 21, - "offset": 312, - "flags": 2097159, + "pointer": true, + "hash": 2259190010 + } + } + }, + "188334317": { + "name": "class SharedPointer", + "bases": [ + "ObstacleCourseObstacleBehavior", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 188334317, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2427193304, - "enum_options": { - "Standard": 0, - "Unit Range Power": 1 - } - }, - "m_vPositions": { - "type": "class Vector3D", - "id": 22, - "offset": 320, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 3599600160 + "hash": 223437287 } } }, - "912025517": { - "name": "class SharedPointer", + "187586277": { + "name": "class SharedPointer", "bases": [ - "AvatarTextureOption", - "AvatarOptionBase", "PropertyClass" ], - "hash": 912025517, + "hash": 187586277, "properties": { - "m_conditionFlags": { - "type": "std::string", + "m_characterGID": { + "type": "gid", "id": 0, - "offset": 72, + "offset": 152, "flags": 7, - "container": "List", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 2483653903 + "hash": 501688601 }, - "m_materialName": { + "m_nameBlob": { "type": "std::string", "id": 1, - "offset": 104, + "offset": 72, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1878140043 + "hash": 3058206907 }, - "m_textures": { - "type": "std::string", + "m_schoolCode": { + "type": "unsigned int", "id": 2, - "offset": 136, - "flags": 131079, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2391848735 - }, - "m_decals": { - "type": "std::string", - "id": 3, - "offset": 160, - "flags": 131079, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1853711975 - }, - "m_decals2": { - "type": "std::string", - "id": 4, - "offset": 184, - "flags": 131079, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2505858617 - }, - "m_tintColors": { - "type": "class Vector3D", - "id": 5, - "offset": 208, + "offset": 104, "flags": 7, - "container": "Vector", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 3059416083 + "hash": 2098672048 }, - "m_tintColorNames": { + "m_zoneDisplayName": { "type": "std::string", - "id": 6, - "offset": 232, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1803799469 - }, - "m_useTintColor": { - "type": "bool", - "id": 7, - "offset": 256, + "id": 3, + "offset": 112, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1646372318 + "hash": 1962339438 }, - "m_texture": { - "type": "std::string", - "id": 8, - "offset": 264, + "m_level": { + "type": "unsigned char", + "id": 4, + "offset": 144, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1720106604 + "hash": 1438884808 }, - "m_decal": { - "type": "std::string", - "id": 9, - "offset": 296, + "m_groupStatus": { + "type": "unsigned char", + "id": 5, + "offset": 145, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2289476788 + "hash": 1901216097 }, - "m_decal2": { - "type": "std::string", - "id": 10, - "offset": 328, + "m_hasFreeChat": { + "type": "unsigned char", + "id": 6, + "offset": 160, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1853711910 + "hash": 1722302062 }, - "m_tintColor": { - "type": "class Vector3D", - "id": 11, - "offset": 360, + "m_isOnline": { + "type": "bool", + "id": 7, + "offset": 161, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1830530496 + "hash": 1681359252 } } }, - "1678583039": { - "name": "class ServiceMementoBase*", + "188417858": { + "name": "class ClientBGSigilProxyBehavior*", "bases": [ + "BGSigilProxyBehavior", + "BehaviorInstance", "PropertyClass" ], - "hash": 1678583039, + "hash": 188417858, "properties": { - "m_serviceOptions": { - "type": "class SharedPointer", + "m_behaviorTemplateNameID": { + "type": "unsigned int", "id": 0, - "offset": 72, - "flags": 31, - "container": "List", - "dynamic": true, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2340755721 + "pointer": false, + "hash": 223437287 }, - "m_personaMadlibs": { - "type": "class SharedPointer", + "m_autoCapTimer": { + "type": "class BGSigilTimer", "id": 1, - "offset": 96, + "offset": 112, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2418856780 + "pointer": false, + "hash": 2270881950 }, - "m_npcNameKey": { + "m_timerTeam": { "type": "std::string", "id": 2, - "offset": 112, + "offset": 216, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1976589766 + "hash": 1994153155 }, - "m_npcTextKey": { + "m_teamOwner": { "type": "std::string", "id": 3, - "offset": 144, + "offset": 248, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3453072394 + "hash": 3126686637 }, - "m_npcIcon": { - "type": "std::string", + "m_combatActive": { + "type": "bool", "id": 4, - "offset": 176, + "offset": 280, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2965253381 + "hash": 1372743333 }, - "m_npcGreetingSound": { - "type": "std::string", + "m_captureable": { + "type": "bool", "id": 5, - "offset": 208, + "offset": 281, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1826980602 + "hash": 1101963387 }, - "m_npcFarewellSound": { - "type": "std::string", + "m_allowAutoCap": { + "type": "bool", "id": 6, - "offset": 240, + "offset": 282, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3241528183 + "hash": 946300927 }, - "m_bTurnPlayerToFace": { - "type": "bool", + "m_sigilAggroRange": { + "type": "float", "id": 7, - "offset": 272, + "offset": 284, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 540096893 + "hash": 995063020 }, - "m_clickToInteractOnly": { - "type": "bool", + "m_playerAggroRange": { + "type": "float", "id": 8, - "offset": 273, + "offset": 288, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1696440536 - } - } - }, - "911795008": { - "name": "class std::list >", - "bases": [], - "hash": 911795008, - "properties": {} - }, - "1678798913": { - "name": "class SharedPointer", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1678798913, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, + "hash": 1776075073 + }, + "m_triggerOrientation": { + "type": "class Vector3D", + "id": 9, + "offset": 292, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 - } - } - }, - "2093751440": { - "name": "class SG_GameAction", - "bases": [ - "PropertyClass" - ], - "hash": 2093751440, - "properties": { - "m_target": { - "type": "enum SG_GameAction::SG_Target", - "id": 0, - "offset": 72, - "flags": 2097159, + "hash": 2671004802 + }, + "m_triggerLocation": { + "type": "class Vector3D", + "id": 10, + "offset": 304, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1166870973, - "enum_options": { - "Target_Ball": 0, - "Target_Self": 1, - "Target_Connections": 2, - "__DEFAULT": "Target_Ball" - } - } - } - }, - "912524957": { - "name": "class ParalyzeScriptLink*", - "bases": [ - "PropertyClass" - ], - "hash": 912524957, - "properties": {} - }, - "2093751435": { - "name": "class SG_GameAction*", - "bases": [ - "PropertyClass" - ], - "hash": 2093751435, - "properties": { - "m_target": { - "type": "enum SG_GameAction::SG_Target", - "id": 0, - "offset": 72, - "flags": 2097159, + "hash": 2573315471 + }, + "m_triggerBox": { + "type": "bool", + "id": 11, + "offset": 316, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1166870973, - "enum_options": { - "Target_Ball": 0, - "Target_Self": 1, - "Target_Connections": 2, - "__DEFAULT": "Target_Ball" - } - } - } - }, - "912539872": { - "name": "class ControlList::ListItemAnimState", - "bases": [ - "ControlList::ListItemState", - "PropertyClass" - ], - "hash": 912539872, - "properties": { - "m_pMaterial": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3479277078 + "hash": 962168144 }, - "m_nMaterialFrame": { - "type": "int", - "id": 1, - "offset": 88, - "flags": 135, + "m_width": { + "type": "float", + "id": 12, + "offset": 320, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1641923970 + "hash": 904656279 }, - "m_nAnimBeginFrame": { - "type": "int", - "id": 2, - "offset": 96, - "flags": 135, + "m_length": { + "type": "float", + "id": 13, + "offset": 324, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1469531165 + "hash": 759698745 }, - "m_nAnimEndFrame": { - "type": "int", - "id": 3, - "offset": 100, - "flags": 135, + "m_triggerSphere": { + "type": "bool", + "id": 14, + "offset": 328, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1659451087 + "hash": 1467830382 }, - "m_fAnimRate": { + "m_radius": { "type": "float", - "id": 4, - "offset": 104, - "flags": 135, + "id": 15, + "offset": 332, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 802385934 + "hash": 989410271 }, - "m_bAnimLoop": { - "type": "bool", - "id": 5, - "offset": 108, - "flags": 135, - "container": "Static", - "dynamic": false, + "m_inRange": { + "type": "class SharedPointer", + "id": 16, + "offset": 336, + "flags": 31, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 1487150228 + "pointer": true, + "hash": 2259190010 } } }, - "1679735207": { - "name": "class ObstacleCourseRevolvingDoorBehaviorClient", + "188519115": { + "name": "class ObstacleCourseCatapultBehavior", "bases": [ - "ObstacleCourseRevolvingDoorBehavior", "ObstacleCourseObstacleBehavior", "BehaviorInstance", "PropertyClass" ], - "hash": 1679735207, + "hash": 188519115, "properties": { "m_behaviorTemplateNameID": { "type": "unsigned int", @@ -6515,2526 +5874,3071 @@ } } }, - "1679583380": { - "name": "class PetCameraActorCinematicAction*", + "191497925": { + "name": "class CombatSigilTemplate", "bases": [ - "ActorCinematicAction", - "CinematicAction", + "SigilTemplate", + "CoreTemplate", "PropertyClass" ], - "hash": 1679583380, + "hash": 191497925, "properties": { - "m_timeOffset": { - "type": "float", + "m_behaviors": { + "type": "class BehaviorTemplate*", "id": 0, "offset": 72, "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1197808594 + }, + "m_sigilName": { + "type": "std::string", + "id": 1, + "offset": 96, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 + "hash": 3177657588 }, - "m_actor": { + "m_sigilType": { "type": "std::string", - "id": 1, - "offset": 80, + "id": 2, + "offset": 136, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2285866132 - } - } - }, - "2094236365": { - "name": "class HousingObjectState*", - "bases": [ - "PropertyClass" - ], - "hash": 2094236365, - "properties": { - "m_id": { - "type": "unsigned int", - "id": 0, - "offset": 72, + "hash": 3177899445 + }, + "m_entryResults": { + "type": "class ResultList*", + "id": 3, + "offset": 184, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3262956108 + }, + "m_requirements": { + "type": "class RequirementList*", + "id": 4, + "offset": 176, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2840985510 + }, + "m_cancelResults": { + "type": "class ResultList*", + "id": 5, + "offset": 192, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3799257120 + }, + "m_completeResults": { + "type": "class ResultList*", + "id": 6, + "offset": 200, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1964258099 + }, + "m_useState": { + "type": "bool", + "id": 7, + "offset": 216, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2301988666 + "hash": 683320865 }, - "m_stateID": { - "type": "unsigned int", - "id": 1, - "offset": 76, + "m_stateOverride": { + "type": "std::string", + "id": 8, + "offset": 224, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1849561019 - } - } - }, - "2094058284": { - "name": "class SharedPointer", - "bases": [ - "CoreTemplate", - "PropertyClass" - ], - "hash": 2094058284, - "properties": { - "m_behaviors": { - "type": "class BehaviorTemplate*", - "id": 0, - "offset": 72, + "hash": 1949715548 + }, + "m_subCircles": { + "type": "class SigilSubCircle*", + "id": 9, + "offset": 256, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2227135493 + }, + "m_engageRadius": { + "type": "float", + "id": 10, + "offset": 304, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1429683718 + }, + "m_battlefieldEffects": { + "type": "class SharedPointer", + "id": 11, + "offset": 312, "flags": 7, "container": "Vector", "dynamic": true, "singleton": false, "pointer": true, - "hash": 1197808594 + "hash": 1245973515 }, - "m_templateID": { - "type": "unsigned int", - "id": 1, - "offset": 96, + "m_playerVictoryCinematic": { + "type": "std::string", + "id": 12, + "offset": 336, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1286746870 + "hash": 2684536069 }, - "m_debugName": { + "m_combatMusic": { "type": "std::string", - "id": 2, - "offset": 104, - "flags": 134217735, + "id": 13, + "offset": 368, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3553984419 + "hash": 3636593682 }, - "m_displayKey": { + "m_prePlanningCinematicOverride": { "type": "std::string", - "id": 3, - "offset": 136, - "flags": 8388615, + "id": 14, + "offset": 400, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3023276954 + "hash": 2585096390 }, - "m_adjectives": { + "m_planningCinematicOverride": { "type": "std::string", - "id": 4, - "offset": 168, + "id": 15, + "offset": 432, "flags": 7, - "container": "List", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 2967855037 + "hash": 3592819999 }, - "m_primaryIngredient": { - "type": "class SpellIngredient*", - "id": 5, - "offset": 184, + "m_shadowThresholdType": { + "type": "enum kShadow_Threshold_Type", + "id": 16, + "offset": 464, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2847763136, + "enum_options": { + "SHADOW_THRESHOLD_MIN": 0, + "SHADOW_THRESHOLD_AVG": 1, + "SHADOW_THRESHOLD_MAX": 2 + } + }, + "m_shadowThresholdFactor": { + "type": "float", + "id": 17, + "offset": 468, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1337011809 + "pointer": false, + "hash": 2104355177 }, - "m_secondaryIngredient": { - "type": "class SpellIngredient*", - "id": 6, - "offset": 192, + "m_shadowPipRatingFactor": { + "type": "float", + "id": 18, + "offset": 472, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2076393285 - } - } - }, - "913028839": { - "name": "class RayGeomParams*", - "bases": [ - "GeomParams", - "PropertyClass" - ], - "hash": 913028839, - "properties": { - "m_eType": { - "type": "enum ProxyType", - "id": 0, - "offset": 72, - "flags": 2097159, + "pointer": false, + "hash": 1061434314 + }, + "m_scalarDamagePvP": { + "type": "float", + "id": 19, + "offset": 476, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1656534066, - "enum_options": { - "ProxyTypeBox": 0, - "ProxyTypeRay": 1, - "ProxyTypeSphere": 2, - "ProxyTypeCylinder": 3, - "ProxyTypeTube": 4, - "ProxyTypePlane": 5, - "ProxyTypeMesh": 6, - "ProxyTypeInvalid": 7 - } + "hash": 2195445026 }, - "m_vPosition": { - "type": "class Vector3D", - "id": 1, - "offset": 80, + "m_scalarResistPvP": { + "type": "float", + "id": 20, + "offset": 480, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2432577069 + "hash": 1947822077 }, - "m_vDirection": { - "type": "class Vector3D", - "id": 2, - "offset": 92, + "m_scalarPiercePvP": { + "type": "float", + "id": 21, + "offset": 484, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2142285753 + "hash": 441266907 }, - "m_fLength": { + "m_scalarDamagePvE": { "type": "float", - "id": 3, - "offset": 104, + "id": 22, + "offset": 488, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 558261279 - } - } - }, - "1680132679": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1680132679, - "properties": { - "m_timeOfPurchase": { - "type": "int", - "id": 0, - "offset": 72, + "hash": 2195445015 + }, + "m_scalarResistPvE": { + "type": "float", + "id": 23, + "offset": 492, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 556096185 + "hash": 1947822066 }, - "m_charID": { - "type": "gid", - "id": 1, - "offset": 80, + "m_scalarPiercePvE": { + "type": "float", + "id": 24, + "offset": 496, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 320363747 + "hash": 441266896 }, - "m_packedName": { - "type": "std::string", - "id": 2, - "offset": 88, + "m_damageLimitPvP": { + "type": "float", + "id": 25, + "offset": 500, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1805208228 + "hash": 1990135243 }, - "m_itemTemplateID": { - "type": "unsigned int", - "id": 3, - "offset": 120, + "m_dK0PvP": { + "type": "float", + "id": 26, + "offset": 504, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2190120133 + "hash": 413528556 }, - "m_tokensAmount": { - "type": "int", - "id": 4, - "offset": 124, + "m_dN0PvP": { + "type": "float", + "id": 27, + "offset": 508, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 440789666 + "hash": 417086319 }, - "m_tokensBalance": { - "type": "int", - "id": 5, - "offset": 128, + "m_resistLimitPvP": { + "type": "float", + "id": 28, + "offset": 512, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 328409108 - } - } - }, - "1679747495": { - "name": "class ObstacleCourseRevolvingDoorBehaviorClient*", - "bases": [ - "ObstacleCourseRevolvingDoorBehavior", - "ObstacleCourseObstacleBehavior", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1679747495, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, + "hash": 1174512006 + }, + "m_rK0PvP": { + "type": "float", + "id": 29, + "offset": 516, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 - } - } - }, - "2094243204": { - "name": "class ClientWizInventoryBehavior*", - "bases": [ - "ClientInventoryBehavior", - "InventoryBehaviorBase", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 2094243204, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, + "hash": 961424058 + }, + "m_rN0PvP": { + "type": "float", + "id": 30, + "offset": 520, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 + "hash": 964981821 }, - "m_itemList": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 27, - "container": "List", - "dynamic": true, + "m_damageLimitPvE": { + "type": "float", + "id": 31, + "offset": 524, + "flags": 7, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1983655699 + "pointer": false, + "hash": 1990135232 }, - "m_numItemsAllowed": { - "type": "int", - "id": 2, - "offset": 160, - "flags": 27, + "m_dK0PvE": { + "type": "float", + "id": 32, + "offset": 528, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1404509492 + "hash": 413528545 }, - "m_numJewelsAllowed": { - "type": "int", - "id": 3, - "offset": 164, - "flags": 27, + "m_dN0PvE": { + "type": "float", + "id": 33, + "offset": 532, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 49168892 + "hash": 417086308 }, - "m_numCEEmotesAllowed": { - "type": "int", - "id": 4, - "offset": 168, - "flags": 27, + "m_resistLimitPvE": { + "type": "float", + "id": 34, + "offset": 536, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 259951495 + "hash": 1174511995 }, - "m_numCETeleportsAllowed": { - "type": "int", - "id": 5, - "offset": 172, - "flags": 27, + "m_rK0PvE": { + "type": "float", + "id": 35, + "offset": 540, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 284631772 + "hash": 961424047 + }, + "m_rN0PvE": { + "type": "float", + "id": 36, + "offset": 544, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 964981810 } } }, - "914121085": { - "name": "class FriendSortByWindow*", + "189494233": { + "name": "class SharedPointer", "bases": [ - "Window", + "SpellEffect", "PropertyClass" ], - "hash": 914121085, + "hash": 189494233, "properties": { - "m_sName": { - "type": "std::string", + "m_effectType": { + "type": "enum SpellEffect::kSpellEffects", "id": 0, - "offset": 80, - "flags": 135, + "offset": 72, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2306437263 + "hash": 2578255295, + "enum_options": { + "kInvalidSpellEffect": 0, + "kDamage": 1, + "kDamageNoCrit": 2, + "kHeal": 3, + "kHealPercent": 4, + "kSetHealPercent": 113, + "kStealHealth": 5, + "kReduceOverTime": 6, + "kDetonateOverTime": 7, + "kPushCharm": 8, + "kStealCharm": 9, + "kPushWard": 10, + "kStealWard": 11, + "kPushOverTime": 12, + "kStealOverTime": 13, + "kRemoveCharm": 14, + "kRemoveWard": 15, + "kRemoveOverTime": 16, + "kRemoveAura": 17, + "kSwapAll": 18, + "kSwapCharm": 19, + "kSwapWard": 20, + "kSwapOverTime": 21, + "kModifyIncomingDamage": 22, + "kModifyIncomingDamageFlat": 119, + "kMaximumIncomingDamage": 23, + "kModifyIncomingHeal": 24, + "kModifyIncomingHealFlat": 118, + "kModifyIncomingDamageType": 25, + "kModifyIncomingArmorPiercing": 26, + "kModifyOutgoingDamage": 27, + "kModifyOutgoingDamageFlat": 121, + "kModifyOutgoingHeal": 28, + "kModifyOutgoingHealFlat": 120, + "kModifyOutgoingDamageType": 29, + "kModifyOutgoingArmorPiercing": 30, + "kModifyOutgoingStealHealth": 31, + "kModifyIncomingStealHealth": 32, + "kBounceNext": 33, + "kBouncePrevious": 34, + "kBounceBack": 35, + "kBounceAll": 36, + "kAbsorbDamage": 37, + "kAbsorbHeal": 38, + "kModifyAccuracy": 39, + "kDispel": 40, + "kConfusion": 41, + "kCloakedCharm": 42, + "kCloakedWard": 43, + "kStunResist": 44, + "kClue": 111, + "kPipConversion": 45, + "kCritBoost": 46, + "kCritBlock": 47, + "kPolymorph": 48, + "kDelayCast": 49, + "kModifyCardCloak": 50, + "kModifyCardDamage": 51, + "kModifyCardAccuracy": 53, + "kModifyCardMutation": 54, + "kModifyCardRank": 55, + "kModifyCardArmorPiercing": 56, + "kSummonCreature": 65, + "kTeleportPlayer": 66, + "kStun": 67, + "kDampen": 68, + "kReshuffle": 69, + "kMindControl": 70, + "kModifyPips": 71, + "kModifyPowerPips": 72, + "kModifyShadowPips": 73, + "kModifyHate": 74, + "kDamageOverTime": 75, + "kHealOverTime": 76, + "kModifyPowerPipChance": 77, + "kModifyRank": 78, + "kStunBlock": 79, + "kRevealCloak": 80, + "kInstantKill": 81, + "kAfterlife": 82, + "kDeferredDamage": 83, + "kDamagePerTotalPipPower": 84, + "kModifyCardHeal": 52, + "kModifyCardCharm": 57, + "kModifyCardWard": 58, + "kModifyCardOutgoingDamage": 59, + "kModifyCardOutgoingAccuracy": 60, + "kModifyCardOutgoingHeal": 61, + "kModifyCardOutgoingArmorPiercing": 62, + "kModifyCardIncomingDamage": 63, + "kModifyCardAbsorbDamage": 64, + "kCloakedWardNoRemove": 86, + "kAddCombatTriggerList": 87, + "kRemoveCombatTriggerList": 88, + "kBacklashDamage": 89, + "kModifyBacklash": 90, + "kIntercept": 91, + "kShadowSelf": 92, + "kShadowCreature": 93, + "kModifyShadowCreatureLevel": 94, + "kSelectShadowCreatureAttackTarget": 95, + "kShadowDecrementTurn": 96, + "kCritBoostSchoolSpecific": 97, + "kSpawnCreature": 98, + "kUnPolymorph": 99, + "kPowerPipConversion": 100, + "kProtectCardBeneficial": 101, + "kProtectCardHarmful": 102, + "kProtectBeneficial": 103, + "kProtectHarmful": 104, + "kDivideDamage": 105, + "kCollectEssence": 106, + "kKillCreature": 107, + "kDispelBlock": 108, + "kConfusionBlock": 109, + "kModifyPipRoundRate": 110, + "kMaxHealthDamage": 112, + "kUntargetable": 114, + "kMakeTargetable": 115, + "kForceTargetable": 116, + "kRemoveStunBlock": 117, + "kExitCombat": 122, + "kSuspendPips": 123, + "kResumePips": 124, + "kAutoPass": 125, + "kStopAutoPass": 126, + "kVanish": 127, + "kStopVanish": 128, + "kMaxHealthHeal": 129, + "kHealByWard": 130, + "kTaunt": 131, + "kPacify": 132, + "kRemoveTargetRestriction": 133, + "kConvertHangingEffect": 134, + "kAddSpellToDeck": 135, + "kAddSpellToHand": 136, + "kModifyIncomingDamageOverTime": 137, + "kModifyIncomingHealOverTime": 138, + "kModifyCardDamagebyRank": 139, + "kPushConvertedCharm": 140, + "kStealConvertedCharm": 141, + "kPushConvertedWard": 142, + "kStealConvertedWard": 143, + "kPushConvertedOverTime": 144, + "kStealConvertedOverTime": 145, + "kRemoveConvertedCharm": 146, + "kRemoveConvertedWard": 147, + "kRemoveConvertedOverTime": 148, + "kModifyOverTimeDuration": 149, + "kModifySchoolPips": 150 + } }, - "m_Children": { - "type": "class SharedPointer", + "m_effectParam": { + "type": "int", "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, + "offset": 76, + "flags": 31, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2621225959 + "pointer": false, + "hash": 357920024 }, - "m_Style": { - "type": "unsigned int", + "m_disposition": { + "type": "enum SpellEffect::kHangingDisposition", "id": 2, - "offset": 152, - "flags": 1048583, + "offset": 80, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 983582334, + "hash": 1904841031, "enum_options": { - "HAS_BACK": 1, - "SCALE_CHILDREN": 2, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "FOCUS_LOCKED": 64, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152 + "kBoth": 0, + "kBeneficial": 1, + "kHarmful": 2 } }, - "m_Flags": { - "type": "unsigned int", + "m_sDamageType": { + "type": "std::string", "id": 3, - "offset": 156, - "flags": 1048583, + "offset": 88, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } + "hash": 2501054223 }, - "m_Window": { - "type": "class Rect", + "m_damageType": { + "type": "unsigned int", "id": 4, - "offset": 160, - "flags": 135, + "offset": 84, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3105139380 + "hash": 737882766 }, - "m_fTargetAlpha": { - "type": "float", + "m_pipNum": { + "type": "int", "id": 5, - "offset": 212, - "flags": 135, + "offset": 128, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1809129834 + "hash": 830827539 }, - "m_fDisabledAlpha": { - "type": "float", + "m_actNum": { + "type": "int", "id": 6, - "offset": 216, - "flags": 135, + "offset": 132, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1389987675 + "hash": 236824866 }, - "m_fAlpha": { - "type": "float", + "m_effectTarget": { + "type": "enum SpellEffect::kEffectTarget", "id": 7, - "offset": 208, - "flags": 65671, + "offset": 140, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 482130755 + "hash": 2458940523, + "enum_options": { + "kInvalidTarget": 0, + "kSpell": 1, + "kSpecificSpells": 2, + "kGlobal": 3, + "kEnemyTeam": 4, + "kEnemyTeamAllAtOnce": 5, + "kFriendlyTeam": 6, + "kFriendlyTeamAllAtOnce": 7, + "kEnemySingle": 8, + "kFriendlySingle": 9, + "kMinion": 10, + "kFriendlyMinion": 17, + "kEnemyMinion": 18, + "kSelf": 11, + "kAtLeastOneEnemy": 13, + "kPreselectedEnemySingle": 12, + "kMultiTargetEnemy": 14, + "kMultiTargetFriendly": 15, + "kFriendlySingleNotMe": 16 + } }, - "m_pWindowStyle": { - "type": "class SharedPointer", + "m_numRounds": { + "type": "int", "id": 8, - "offset": 232, - "flags": 135, + "offset": 144, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3623628394 + "pointer": false, + "hash": 1229753829 }, - "m_sHelp": { - "type": "std::wstring", + "m_paramPerRound": { + "type": "int", "id": 9, - "offset": 248, - "flags": 4194439, + "offset": 148, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2102211316 + "hash": 683234234 }, - "m_sScript": { - "type": "std::string", + "m_healModifier": { + "type": "float", "id": 10, - "offset": 352, - "flags": 135, + "offset": 152, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1846695875 + "hash": 1317921248, + "enum_options": { + "__DEFAULT": "1.0" + } }, - "m_Offset": { - "type": "class Point", + "m_spellTemplateID": { + "type": "unsigned int", "id": 11, - "offset": 192, - "flags": 135, + "offset": 120, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3389835433 + "hash": 585567702 }, - "m_Scale": { - "type": "class Point", + "m_enchantmentSpellTemplateID": { + "type": "unsigned int", "id": 12, - "offset": 200, - "flags": 135, + "offset": 124, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2547159940 + "hash": 246955115 }, - "m_sTip": { - "type": "std::wstring", + "m_act": { + "type": "bool", "id": 13, - "offset": 392, - "flags": 4194439, + "offset": 136, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1513510520 + "hash": 269510283 }, - "m_BubbleList": { - "type": "class WindowBubble", + "m_cloaked": { + "type": "bool", "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, + "offset": 157, + "flags": 31, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 2587533771 + "hash": 7349510 }, - "m_ParentOffset": { - "type": "class Rect", + "m_bypassProtection": { + "type": "bool", "id": 15, - "offset": 176, - "flags": 135, + "offset": 159, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3091503757 - } - } - }, - "913991582": { - "name": "class PlaneGeomParams", - "bases": [ - "GeomParams", - "PropertyClass" - ], - "hash": 913991582, - "properties": { - "m_eType": { - "type": "enum ProxyType", - "id": 0, - "offset": 72, - "flags": 2097159, + "hash": 1657138252 + }, + "m_armorPiercingParam": { + "type": "int", + "id": 16, + "offset": 160, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1656534066, - "enum_options": { - "ProxyTypeBox": 0, - "ProxyTypeRay": 1, - "ProxyTypeSphere": 2, - "ProxyTypeCylinder": 3, - "ProxyTypeTube": 4, - "ProxyTypePlane": 5, - "ProxyTypeMesh": 6, - "ProxyTypeInvalid": 7 - } + "hash": 2025530205 }, - "m_vNormal": { - "type": "class Vector3D", - "id": 1, - "offset": 80, - "flags": 7, + "m_chancePerTarget": { + "type": "int", + "id": 17, + "offset": 164, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3552296097 + "hash": 845426794 }, - "m_fDistance": { - "type": "float", - "id": 2, - "offset": 92, - "flags": 7, + "m_protected": { + "type": "bool", + "id": 18, + "offset": 168, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 194015112 - } - } - }, - "913616708": { - "name": "class SharedPointer", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 913616708, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, + "hash": 1445655037 + }, + "m_converted": { + "type": "bool", + "id": 19, + "offset": 169, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 - }, - "m_playlist": { - "type": "unsigned int", - "id": 1, - "offset": 112, - "flags": 65567, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1986295487 + "hash": 1590428797 }, - "m_currentSelection": { - "type": "unsigned int", - "id": 2, - "offset": 128, - "flags": 65567, + "m_rank": { + "type": "int", + "id": 20, + "offset": 208, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 906571734 + "hash": 219803942 }, - "m_playStyle": { - "type": "unsigned int", - "id": 3, - "offset": 132, - "flags": 65567, - "container": "Static", - "dynamic": false, + "m_effectList": { + "type": "class SharedPointer", + "id": 21, + "offset": 224, + "flags": 7, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 768737172 + "pointer": true, + "hash": 707154804 } } }, - "2096485267": { - "name": "class SharedPointer", + "189089363": { + "name": "class AttenuatedFileDescription*", "bases": [ - "LootInfo", - "LootInfoBase", "PropertyClass" ], - "hash": 2096485267, + "hash": 189089363, "properties": { - "m_lootType": { - "type": "enum LootInfo::LOOT_TYPE", + "m_fileName": { + "type": "std::string", "id": 0, "offset": 72, - "flags": 2097183, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1591891442, - "enum_options": { - "LOOT_TYPE_NONE": 0, - "LOOT_TYPE_GOLD": 1, - "LOOT_TYPE_MANA": 2, - "LOOT_TYPE_ITEM": 3, - "LOOT_TYPE_TREASURE_CARD": 4, - "LOOT_TYPE_MAGIC_XP": 5, - "LOOT_TYPE_ADD_SPELL": 6, - "LOOT_TYPE_MAX_HEALTH": 7, - "LOOT_TYPE_MAX_GOLD": 8, - "LOOT_TYPE_MAX_MANA": 9, - "LOOT_TYPE_MAX_POTION": 10, - "LOOT_TYPE_TRAINING_POINTS": 11, - "LOOT_TYPE_RECIPE": 12, - "LOOT_TYPE_CRAFTING_SLOT": 13, - "LOOT_TYPE_REAGENT": 14, - "LOOT_TYPE_PETSNACK": 15, - "LOOT_TYPE_GARDENING_XP": 16, - "LOOT_TYPE_PET_XP": 17, - "LOOT_TYPE_TREASURE_TABLE": 18, - "LOOT_TYPE_ARENA_POINTS": 19, - "LOOT_TYPE_ARENA_BONUS_POINTS": 20, - "LOOT_TYPE_GROUP": 21, - "LOOT_TYPE_FISHING_XP": 22, - "LOOT_TYPE_EVENT_CURRENCY_1": 24, - "LOOT_TYPE_EVENT_CURRENCY_2": 25, - "LOOT_TYPE_PVP_CURRENCY": 26, - "LOOT_TYPE_PVP_CURRENCY_BONUS": 27, - "LOOT_TYPE_PVP_TOURNEY_CURRENCY": 28, - "LOOT_TYPE_PVP_TOURNEY_CURRENCY_BONUS": 29, - "LOOT_TYPE_FURNITURE_ESSENCE": 30 - } + "hash": 3116172444 }, - "m_eventCurrency1Amount": { - "type": "int", + "m_attenuationPercent": { + "type": "float", "id": 1, - "offset": 80, - "flags": 31, + "offset": 104, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 945914060 + "hash": 1412579028 } } }, - "913029014": { - "name": "class BoxGeomParams", + "191363213": { + "name": "class SharedPointer", "bases": [ - "GeomParams", "PropertyClass" ], - "hash": 913029014, + "hash": 191363213, "properties": { - "m_eType": { - "type": "enum ProxyType", + "m_src": { + "type": "unsigned short", "id": 0, "offset": 72, - "flags": 2097159, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1656534066, - "enum_options": { - "ProxyTypeBox": 0, - "ProxyTypeRay": 1, - "ProxyTypeSphere": 2, - "ProxyTypeCylinder": 3, - "ProxyTypeTube": 4, - "ProxyTypePlane": 5, - "ProxyTypeMesh": 6, - "ProxyTypeInvalid": 7 - } + "hash": 820631632 }, - "m_fLength": { - "type": "float", + "m_dst": { + "type": "unsigned short", "id": 1, - "offset": 80, + "offset": 74, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 558261279 - }, - "m_fWidth": { + "hash": 820615347 + } + } + }, + "191581363": { + "name": "class SharedPointer", + "bases": [ + "DestroyActorCinematicAction", + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 191581363, + "properties": { + "m_timeOffset": { "type": "float", - "id": 2, - "offset": 84, + "id": 0, + "offset": 72, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 508100541 + "hash": 2237098605 }, - "m_fDepth": { - "type": "float", - "id": 3, - "offset": 88, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 485437362 + "hash": 2285866132 } } }, - "2095072306": { - "name": "class FishingSpellTemplate*", + "191512483": { + "name": "class SharedPointer", "bases": [ - "SpellTemplate", - "CoreTemplate", + "BehaviorTemplate", "PropertyClass" ], - "hash": 2095072306, + "hash": 191512483, "properties": { - "m_behaviors": { - "type": "class BehaviorTemplate*", + "m_behaviorName": { + "type": "std::string", "id": 0, "offset": 72, "flags": 7, - "container": "Vector", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1197808594 + "pointer": false, + "hash": 3130754092 }, - "m_name": { + "m_spellNames": { "type": "std::string", "id": 1, - "offset": 96, + "offset": 120, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 1717359772 + "hash": 2136089135 }, - "m_description": { + "m_targetNode": { "type": "std::string", "id": 2, - "offset": 168, - "flags": 8388615, + "offset": 136, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1649374815 + "hash": 2698500040 }, - "m_advancedDescription": { - "type": "std::string", + "m_offset": { + "type": "class Vector3D", "id": 3, - "offset": 200, - "flags": 8388615, + "offset": 168, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3465713013 + "hash": 2445636425 }, - "m_displayName": { - "type": "std::string", + "m_rotate": { + "type": "class Vector3D", "id": 4, - "offset": 136, - "flags": 8388615, + "offset": 180, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2446900370 + "hash": 2574199889 }, - "m_spellBase": { - "type": "std::string", + "m_height": { + "type": "float", "id": 5, - "offset": 248, - "flags": 268435463, + "offset": 192, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2688054198, - "enum_options": { - "__BASECLASS": "CinematicTemplate" - } + "hash": 602977104 }, - "m_effects": { - "type": "class SharedPointer", + "m_alpha": { + "type": "float", "id": 6, - "offset": 280, + "offset": 196, "flags": 7, - "container": "Vector", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 370726379 + "pointer": false, + "hash": 878686493 }, - "m_sMagicSchoolName": { - "type": "std::string", + "m_cycleRate": { + "type": "float", "id": 7, - "offset": 312, + "offset": 200, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2035693400 - }, - "m_sTypeName": { + "hash": 947046355 + } + } + }, + "202889897": { + "name": "class SharedPointer", + "bases": [ + "ServiceOptionBase", + "PropertyClass" + ], + "hash": 202889897, + "properties": { + "m_serviceName": { "type": "std::string", - "id": 8, - "offset": 352, - "flags": 7, + "id": 0, + "offset": 72, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3580785905 + "hash": 2206028813 }, - "m_trainingCost": { - "type": "int", - "id": 9, - "offset": 384, - "flags": 7, + "m_iconKey": { + "type": "std::string", + "id": 1, + "offset": 168, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 982588239 + "hash": 2457138637 }, - "m_accuracy": { - "type": "int", - "id": 10, - "offset": 388, - "flags": 7, + "m_displayKey": { + "type": "std::string", + "id": 2, + "offset": 104, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1636315493 + "hash": 3023276954 }, - "m_baseCost": { - "type": "int", - "id": 11, - "offset": 232, - "flags": 7, + "m_serviceIndex": { + "type": "unsigned int", + "id": 3, + "offset": 204, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1475151502 + "hash": 2103126710 }, - "m_creditsCost": { - "type": "int", - "id": 12, - "offset": 236, - "flags": 7, + "m_forceInteract": { + "type": "bool", + "id": 4, + "offset": 200, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 715313825 - }, - "m_pvpCurrencyCost": { - "type": "int", - "id": 13, - "offset": 240, + "hash": 1705789564 + } + } + }, + "200792996": { + "name": "class ClientCinematicActor", + "bases": [ + "CinematicActor", + "PropertyClass" + ], + "hash": 200792996, + "properties": {} + }, + "194422607": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 194422607, + "properties": { + "m_name": { + "type": "std::string", + "id": 0, + "offset": 72, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 645595444 + "hash": 1717359772 }, - "m_pvpTourneyCurrencyCost": { - "type": "int", - "id": 14, - "offset": 244, - "flags": 7, + "m_zone": { + "type": "std::string", + "id": 1, + "offset": 104, + "flags": 268435463, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 517874954 + "hash": 1717806295, + "enum_options": { + "__BASECLASS": "ZoneData" + } }, - "m_boosterPackIcon": { + "m_iconArt": { "type": "std::string", - "id": 15, - "offset": 496, + "id": 2, + "offset": 136, "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3428653697 + "hash": 2457128171 }, - "m_validTargetSpells": { - "type": "unsigned int", - "id": 16, - "offset": 392, + "m_scoreThresholds": { + "type": "int", + "id": 3, + "offset": 168, "flags": 7, - "container": "List", + "container": "Vector", "dynamic": true, "singleton": false, "pointer": false, - "hash": 2355782967 + "hash": 1790576374 }, - "m_PvP": { - "type": "bool", - "id": 17, - "offset": 408, - "flags": 7, - "container": "Static", - "dynamic": false, + "m_rewardTable": { + "type": "std::string", + "id": 4, + "offset": 192, + "flags": 268435463, + "container": "Vector", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 269492361 - }, - "m_PvE": { - "type": "bool", - "id": 18, - "offset": 409, + "hash": 2569041800, + "enum_options": { + "__BASECLASS": "LootTable" + } + } + } + }, + "193975864": { + "name": "class RemoveBacklashEffectCinematicAction*", + "bases": [ + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 193975864, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 269492350 + "hash": 2237098605 }, - "m_noPvPEnchant": { - "type": "bool", - "id": 19, - "offset": 410, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 661581703 - }, - "m_noPvEEnchant": { - "type": "bool", - "id": 20, - "offset": 411, + "hash": 2285866132 + } + } + }, + "192911190": { + "name": "class MoveController::MoveCommand", + "bases": [ + "PropertyClass" + ], + "hash": 192911190, + "properties": {} + }, + "192847376": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 192847376, + "properties": { + "m_addedPremiumPets": { + "type": "unsigned int", + "id": 0, + "offset": 72, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 10144220 + "hash": 2021117594 }, - "m_battlegroundsOnly": { - "type": "bool", - "id": 21, - "offset": 412, + "m_removedPremiumPets": { + "type": "unsigned int", + "id": 1, + "offset": 88, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 1244782419 - }, - "m_Treasure": { - "type": "bool", - "id": 22, - "offset": 413, - "flags": 7, + "hash": 636888858 + } + } + }, + "192797137": { + "name": "class SharedPointer", + "bases": [ + "UnlockTriggerBehaviorBase", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 192797137, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1749096414 - }, - "m_noDiscard": { - "type": "bool", - "id": 23, - "offset": 414, + "hash": 223437287 + } + } + }, + "192910870": { + "name": "class MoveController::MoveCommand*", + "bases": [ + "PropertyClass" + ], + "hash": 192910870, + "properties": {} + }, + "193893944": { + "name": "class RemoveBacklashEffectCinematicAction", + "bases": [ + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 193893944, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 565749226 + "hash": 2237098605 }, - "m_leavesPlayWhenCast": { - "type": "bool", - "id": 24, - "offset": 532, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 698216294 - }, - "m_imageIndex": { + "hash": 2285866132 + } + } + }, + "193290005": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 193290005, + "properties": { + "m_startPosition": { "type": "int", - "id": 25, - "offset": 416, - "flags": 7, + "id": 0, + "offset": 72, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1570500405 + "hash": 1469535773 }, - "m_imageName": { - "type": "std::string", - "id": 26, - "offset": 424, - "flags": 131079, + "m_totalPlayerCount": { + "type": "unsigned int", + "id": 1, + "offset": 76, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2391520543 + "hash": 1303598439 }, - "m_cloaked": { - "type": "bool", - "id": 27, - "offset": 489, + "m_entries": { + "type": "class SharedPointer", + "id": 2, + "offset": 80, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1843584395 + } + } + }, + "194076899": { + "name": "class SharedPointer", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 194076899, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 7349510 + "hash": 3130754092 }, - "m_casterInvisible": { - "type": "bool", - "id": 28, - "offset": 490, + "m_worldName": { + "type": "std::string", + "id": 1, + "offset": 120, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 310214650 + "hash": 1846757476 }, - "m_adjectives": { - "type": "std::string", - "id": 29, - "offset": 576, + "m_collectionResistance": { + "type": "int", + "id": 2, + "offset": 152, "flags": 7, - "container": "List", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 2967855037 + "hash": 717150423 }, - "m_spellSourceType": { - "type": "enum SpellTemplate::kSpellSourceType", - "id": 30, - "offset": 528, - "flags": 2097159, + "m_isBoss": { + "type": "bool", + "id": 3, + "offset": 156, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 156272727, - "enum_options": { - "kCaster": 0, - "kPet": 1, - "kShadowCreature": 2, - "kWeapon": 3, - "kEquipment": 4 - } + "hash": 569602950 }, - "m_cloakedName": { - "type": "std::string", - "id": 31, - "offset": 536, - "flags": 268435463, + "m_essencesPerSummonTC": { + "type": "int", + "id": 4, + "offset": 160, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2846679215, - "enum_options": { - "__BASECLASS": "SpellTemplate" - } + "hash": 2052433520 }, - "m_purchaseRequirements": { - "type": "class RequirementList*", - "id": 32, - "offset": 608, + "m_goldPerSummonTC": { + "type": "int", + "id": 5, + "offset": 164, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3174641793 + "pointer": false, + "hash": 1978867293 }, - "m_displayRequirements": { - "type": "class RequirementList*", - "id": 33, - "offset": 840, + "m_essencesPerHouseGuest": { + "type": "int", + "id": 6, + "offset": 168, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3646782876 + "pointer": false, + "hash": 254219206 }, - "m_descriptionTrainer": { - "type": "std::string", - "id": 34, - "offset": 616, - "flags": 8388871, + "m_goldPerHouseGuest": { + "type": "int", + "id": 7, + "offset": 172, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1756093908 + "hash": 1744976627 }, - "m_descriptionCombatHUD": { - "type": "std::string", - "id": 35, - "offset": 648, - "flags": 8388871, + "m_essencesPerKillTC": { + "type": "int", + "id": 8, + "offset": 176, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1631478006 + "hash": 305653757 }, - "m_displayIndex": { + "m_goldPerKillTC": { "type": "int", - "id": 36, - "offset": 680, + "id": 9, + "offset": 180, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1250551048 + "hash": 910983338 }, - "m_hiddenFromEffectsWindow": { - "type": "bool", - "id": 37, - "offset": 684, + "m_houseGuestTemplateID": { + "type": "unsigned int", + "id": 10, + "offset": 184, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1832736331 + "hash": 612813314 }, - "m_ignoreCharms": { - "type": "bool", - "id": 38, - "offset": 685, + "m_alternateMobTemplateID": { + "type": "unsigned int", + "id": 11, + "offset": 188, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1840075893 + "hash": 233156212 }, - "m_alwaysFizzle": { - "type": "bool", - "id": 39, - "offset": 686, + "m_collectedAsTemplateID": { + "type": "unsigned int", + "id": 12, + "offset": 232, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2030988856 - }, - "m_spellCategory": { + "hash": 1661926425 + } + } + }, + "198649050": { + "name": "class ObstacleCoursePendulumBehaviorClient", + "bases": [ + "ObstacleCoursePendulumBehavior", + "ObstacleCourseObstacleBehavior", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 198649050, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + } + } + }, + "195365054": { + "name": "class AdvPvPEloBehaviorTemplate", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 195365054, + "properties": { + "m_behaviorName": { "type": "std::string", - "id": 40, - "offset": 688, + "id": 0, + "offset": 72, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2472376729 - }, - "m_showPolymorphedName": { + "hash": 3130754092 + } + } + }, + "195054584": { + "name": "class SharedPointer", + "bases": [ + "ConditionalSpellEffectRequirement", + "Requirement", + "PropertyClass" + ], + "hash": 195054584, + "properties": { + "m_applyNOT": { "type": "bool", - "id": 41, - "offset": 720, - "flags": 7, + "id": 0, + "offset": 72, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2097929096 + "hash": 1746328074, + "enum_options": { + "__DEFAULT": 0 + } }, - "m_skipTruncation": { - "type": "bool", - "id": 42, - "offset": 721, - "flags": 263, + "m_operator": { + "type": "enum Requirement::Operator", + "id": 1, + "offset": 76, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1838335249 + "hash": 2672792317, + "enum_options": { + "ROP_AND": 0, + "ROP_OR": 1, + "__DEFAULT": "ROP_AND" + } }, - "m_maxCopies": { - "type": "unsigned int", - "id": 43, - "offset": 724, - "flags": 263, + "m_targetType": { + "type": "enum ConditionalSpellEffectRequirement::RequirementTarget", + "id": 2, + "offset": 80, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 403022326 + "hash": 2547737902, + "enum_options": { + "RT_Caster": 0, + "RT_Target": 1 + } }, - "m_levelRestriction": { - "type": "int", - "id": 44, - "offset": 728, - "flags": 263, + "m_status": { + "type": "enum ReqCombatStatus::kStatusEffect", + "id": 3, + "offset": 88, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 176502472 + "hash": 2594569198, + "enum_options": { + "kStunned": 0, + "kConfused": 1 + } + } + } + }, + "194810571": { + "name": "class ObstacleCourseCatapultBehavior*", + "bases": [ + "ObstacleCourseObstacleBehavior", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 194810571, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + } + } + }, + "1021238115": { + "name": "class ScavengeGoalTemplate", + "bases": [ + "GoalTemplate", + "CoreTemplate", + "PropertyClass" + ], + "hash": 1021238115, + "properties": { + "m_behaviors": { + "type": "class BehaviorTemplate*", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1197808594 }, - "m_delayEnchantment": { - "type": "bool", - "id": 45, - "offset": 732, - "flags": 287, + "m_goalName": { + "type": "std::string", + "id": 1, + "offset": 104, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 191336919 + "hash": 1521627807 }, - "m_delayEnchantmentOrder": { - "type": "enum SpellEffect::kDelayOrder", - "id": 46, - "offset": 736, - "flags": 287, + "m_goalNameID": { + "type": "unsigned int", + "id": 2, + "offset": 496, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2526055263, - "enum_options": { - "SpellEffect::kAnyOrder": 0, - "SpellEffect::kFirst": 1, - "SpellEffect::kSecond": 2 - } + "hash": 403158846 }, - "m_previousSpellName": { + "m_goalTitle": { "type": "std::string", - "id": 47, - "offset": 744, - "flags": 268435463, + "id": 3, + "offset": 136, + "flags": 8388615, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2903322585, - "enum_options": { - "__BASECLASS": "SpellTemplate" - } + "hash": 2291910240 }, - "m_cardFront": { + "m_goalUnderway": { "type": "std::string", - "id": 48, - "offset": 456, - "flags": 131359, + "id": 4, + "offset": 168, + "flags": 8388615, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3557598526 + "hash": 3153144269 }, - "m_useGloss": { - "type": "bool", - "id": 49, - "offset": 488, - "flags": 287, + "m_hyperlink": { + "type": "std::string", + "id": 5, + "offset": 200, + "flags": 8388615, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 668817544 + "hash": 2887798993 }, - "m_ignoreDispel": { - "type": "bool", - "id": 50, - "offset": 776, - "flags": 287, + "m_completeText": { + "type": "std::string", + "id": 6, + "offset": 232, + "flags": 8388615, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1881041624 + "hash": 2767458393 }, - "m_backRowFriendly": { - "type": "bool", - "id": 51, - "offset": 777, - "flags": 287, + "m_completeResults": { + "type": "class ResultList*", + "id": 7, + "offset": 440, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 501584377 + "pointer": true, + "hash": 1964258099 }, - "m_spellRank": { - "type": "class SharedPointer", - "id": 52, - "offset": 784, + "m_goalRequirements": { + "type": "class RequirementList*", + "id": 8, + "offset": 448, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": true, - "hash": 3152361374 + "hash": 2979967145 }, - "m_secondarySchoolName": { - "type": "std::string", - "id": 53, - "offset": 800, + "m_tallyCounter": { + "type": "class TallyCounterTemplate*", + "id": 9, + "offset": 456, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, + "pointer": true, + "hash": 1884546193 + }, + "m_locationName": { + "type": "std::string", + "id": 10, + "offset": 272, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, "pointer": false, - "hash": 1803268236 + "hash": 1824218389 }, - "m_spellFusion": { - "type": "unsigned int", - "id": 54, - "offset": 836, - "flags": 7, + "m_displayImage1": { + "type": "std::string", + "id": 11, + "offset": 304, + "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1658928321 + "hash": 1959572133 }, - "m_requiredSchoolName": { + "m_displayImage2": { "type": "std::string", - "id": 55, - "offset": 848, - "flags": 7, + "id": 12, + "offset": 336, + "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3576058981 + "hash": 1959572134 }, - "m_fishingSpellType": { - "type": "enum FishingSpellTemplate::FishingSpellType", - "id": 56, - "offset": 880, - "flags": 2097159, + "m_clientTags": { + "type": "std::string", + "id": 13, + "offset": 368, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2319030025 + }, + "m_genericEvents": { + "type": "std::string", + "id": 14, + "offset": 384, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 3466670829 + }, + "m_autoQualify": { + "type": "bool", + "id": 15, + "offset": 400, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3230697370, - "enum_options": { - "FS_Catching": 0, - "FS_Utility": 1, - "FS_PredatorBanishment": 2 - } + "hash": 1878907431 }, - "m_energyCost": { - "type": "int", - "id": 57, - "offset": 884, + "m_autoComplete": { + "type": "bool", + "id": 16, + "offset": 401, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1236111677 + "hash": 1302545445 }, - "m_animationKFM": { + "m_destinationZone": { "type": "std::string", - "id": 58, - "offset": 888, - "flags": 131079, + "id": 17, + "offset": 408, + "flags": 268435463, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2466280761 + "hash": 2605356153, + "enum_options": { + "__BASECLASS": "ZoneData" + } }, - "m_animationName": { - "type": "std::string", - "id": 59, - "offset": 920, + "m_dialogList": { + "type": "class ActorDialogListBase*", + "id": 18, + "offset": 264, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 3393414044 + "pointer": true, + "hash": 1909154969 }, - "m_soundEffectName": { - "type": "std::string", - "id": 60, - "offset": 952, - "flags": 131079, + "m_goalType": { + "type": "enum GoalTemplate::GOAL_TYPE", + "id": 19, + "offset": 96, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3235436082 + "hash": 1488021149, + "enum_options": { + "GOAL_TYPE_UNKNOWN": 0, + "GOAL_TYPE_BOUNTY": 1, + "GOAL_TYPE_BOUNTYCOLLECT": 2, + "GOAL_TYPE_SCAVENGE": 3, + "GOAL_TYPE_PERSONA": 4, + "GOAL_TYPE_WAYPOINT": 5, + "GOAL_TYPE_SCAVENGEFAKE": 6, + "GOAL_TYPE_ACHIEVERANK": 7, + "GOAL_TYPE_USAGE": 8, + "GOAL_TYPE_COMPLETEQUEST": 9, + "GOAL_TYPE_SOCIARANK": 10, + "GOAL_TYPE_SOCIACURRENCY": 11, + "GOAL_TYPE_SOCIAMINIGAME": 12, + "GOAL_TYPE_SOCIAGIVEITEM": 13, + "GOAL_TYPE_SOCIAGETITEM": 14, + "GOAL_TYPE_COLLECTAFTERBOUNTY": 15, + "GOAL_TYPE_ENCOUNTER_WAYPOINT_FOREACH": 16 + } }, - "m_soundEffectGain": { - "type": "float", - "id": 61, - "offset": 984, + "m_noQuestHelper": { + "type": "bool", + "id": 20, + "offset": 500, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1827685932, + "hash": 578010882, "enum_options": { - "__DEFAULT": "1.0" + "__DEFAULT": 0 } }, - "m_fishingSpellImageIndex": { - "type": "int", - "id": 62, - "offset": 988, + "m_petOnlyQuest": { + "type": "bool", + "id": 21, + "offset": 501, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 757127517 + "hash": 679359344, + "enum_options": { + "__DEFAULT": 0 + } }, - "m_fishingSpellImageName": { - "type": "std::string", - "id": 63, - "offset": 992, - "flags": 131079, + "m_activateResults": { + "type": "class ResultList*", + "id": 22, + "offset": 504, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3790153995 + }, + "m_hideGoalFloatyText": { + "type": "bool", + "id": 23, + "offset": 512, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1585969735 + "hash": 1919383204, + "enum_options": { + "__DEFAULT": 0 + } }, - "m_fishingSchoolFocus": { + "m_itemAdjectives": { "type": "std::string", - "id": 64, - "offset": 1024, + "id": 24, + "offset": 528, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1723744652 + }, + "m_itemTotal": { + "type": "int", + "id": 25, + "offset": 520, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2178393483 + "hash": 1809457197 } } }, - "2095072282": { - "name": "class FishingSpellTemplate", + "1445136631": { + "name": "class GraphicalArenaPoints", "bases": [ - "SpellTemplate", - "CoreTemplate", + "GraphicalSpell", + "Spell", "PropertyClass" ], - "hash": 2095072282, + "hash": 1445136631, "properties": { - "m_behaviors": { - "type": "class BehaviorTemplate*", + "m_templateID": { + "type": "unsigned int", "id": 0, - "offset": 72, - "flags": 7, - "container": "Vector", - "dynamic": true, + "offset": 128, + "flags": 31, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1197808594 + "pointer": false, + "hash": 1286746870 }, - "m_name": { - "type": "std::string", + "m_enchantment": { + "type": "unsigned int", "id": 1, - "offset": 96, - "flags": 7, + "offset": 80, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1717359772 + "hash": 2217886818 }, - "m_description": { - "type": "std::string", + "m_pipCost": { + "type": "class SharedPointer", "id": 2, - "offset": 168, - "flags": 8388615, + "offset": 176, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1649374815 + "pointer": true, + "hash": 3605704820 }, - "m_advancedDescription": { - "type": "std::string", + "m_regularAdjust": { + "type": "int", "id": 3, - "offset": 200, - "flags": 8388615, + "offset": 192, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3465713013 + "hash": 1420453335 }, - "m_displayName": { - "type": "std::string", + "m_magicSchoolID": { + "type": "unsigned int", "id": 4, "offset": 136, - "flags": 8388615, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2446900370 + "hash": 893146499 }, - "m_spellBase": { - "type": "std::string", + "m_accuracy": { + "type": "unsigned char", "id": 5, - "offset": 248, - "flags": 268435463, + "offset": 132, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2688054198, - "enum_options": { - "__BASECLASS": "CinematicTemplate" - } + "hash": 2273914939 }, - "m_effects": { - "type": "class SharedPointer", + "m_treasureCard": { + "type": "bool", "id": 6, - "offset": 280, - "flags": 7, - "container": "Vector", - "dynamic": true, + "offset": 197, + "flags": 31, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 370726379 + "pointer": false, + "hash": 1764879128 }, - "m_sMagicSchoolName": { - "type": "std::string", + "m_battleCard": { + "type": "bool", "id": 7, - "offset": 312, - "flags": 7, + "offset": 198, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2035693400 + "hash": 1332843753 }, - "m_sTypeName": { - "type": "std::string", + "m_itemCard": { + "type": "bool", "id": 8, - "offset": 352, + "offset": 199, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3580785905 + "hash": 1683654300 }, - "m_trainingCost": { - "type": "int", + "m_sideBoard": { + "type": "bool", "id": 9, - "offset": 384, + "offset": 200, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 982588239 + "hash": 1897838368 }, - "m_accuracy": { - "type": "int", + "m_spellID": { + "type": "unsigned int", "id": 10, - "offset": 388, - "flags": 7, + "offset": 204, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1636315493 + "hash": 1697483258 }, - "m_baseCost": { - "type": "int", + "m_leavesPlayWhenCastOverride": { + "type": "bool", "id": 11, - "offset": 232, - "flags": 7, + "offset": 216, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1475151502 + "hash": 874407398 }, - "m_creditsCost": { - "type": "int", + "m_cloaked": { + "type": "bool", "id": 12, - "offset": 236, + "offset": 196, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 715313825 + "hash": 7349510 }, - "m_pvpCurrencyCost": { - "type": "int", + "m_enchantmentSpellIsItemCard": { + "type": "bool", "id": 13, - "offset": 240, - "flags": 7, + "offset": 76, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 645595444 + "hash": 531590701 }, - "m_pvpTourneyCurrencyCost": { - "type": "int", + "m_premutationSpellID": { + "type": "unsigned int", "id": 14, - "offset": 244, - "flags": 7, + "offset": 112, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 517874954 + "hash": 1530256370 }, - "m_boosterPackIcon": { - "type": "std::string", + "m_enchantedThisCombat": { + "type": "bool", "id": 15, - "offset": 496, - "flags": 131079, + "offset": 77, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3428653697 + "hash": 1895738923 }, - "m_validTargetSpells": { - "type": "unsigned int", + "m_paramOverrides": { + "type": "class SharedPointer", "id": 16, - "offset": 392, - "flags": 7, + "offset": 224, + "flags": 31, "container": "List", "dynamic": true, "singleton": false, - "pointer": false, - "hash": 2355782967 + "pointer": true, + "hash": 2061635599 }, - "m_PvP": { - "type": "bool", + "m_subEffectMeta": { + "type": "class SharedPointer", "id": 17, - "offset": 408, - "flags": 7, - "container": "Static", - "dynamic": false, + "offset": 240, + "flags": 31, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 269492361 + "pointer": true, + "hash": 1944101106 }, - "m_PvE": { + "m_delayEnchantment": { "type": "bool", "id": 18, - "offset": 409, - "flags": 7, + "offset": 257, + "flags": 287, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 269492350 + "hash": 191336919 }, - "m_noPvPEnchant": { + "m_PvE": { "type": "bool", "id": 19, - "offset": 410, - "flags": 7, + "offset": 264, + "flags": 287, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 661581703 + "hash": 269492350 }, - "m_noPvEEnchant": { - "type": "bool", + "m_delayEnchantmentOrder": { + "type": "enum SpellEffect::kDelayOrder", "id": 20, - "offset": 411, - "flags": 7, + "offset": 72, + "flags": 287, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 10144220 + "hash": 2526055263, + "enum_options": { + "SpellEffect::kAnyOrder": 0, + "SpellEffect::kFirst": 1, + "SpellEffect::kSecond": 2 + } }, - "m_battlegroundsOnly": { - "type": "bool", + "m_roundAddedTC": { + "type": "int", "id": 21, - "offset": 412, - "flags": 7, + "offset": 260, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1244782419 + "hash": 112365451 }, - "m_Treasure": { - "type": "bool", + "m_secondarySchoolID": { + "type": "unsigned int", "id": 22, - "offset": 413, + "offset": 304, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1749096414 + "hash": 2081206026 }, - "m_noDiscard": { - "type": "bool", + "m_fusionState": { + "type": "enum Spell::FusionState", "id": 23, - "offset": 414, - "flags": 7, + "offset": 308, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 565749226 + "hash": 835324539, + "enum_options": { + "FS_Invalid": 0, + "FS_Partial": 1, + "FS_Valid": 2 + } + } + } + }, + "1876654492": { + "name": "class SharedPointer", + "bases": [ + "GameEffectInfo", + "PropertyClass" + ], + "hash": 1876654492, + "properties": { + "m_effectName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2029161513 }, - "m_leavesPlayWhenCast": { - "type": "bool", - "id": 24, - "offset": 532, + "m_pipsGiven": { + "type": "int", + "id": 1, + "offset": 104, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 698216294 + "hash": 1346249167 }, - "m_imageIndex": { + "m_powerPipsGiven": { "type": "int", - "id": 25, - "offset": 416, + "id": 2, + "offset": 108, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1570500405 - }, - "m_imageName": { + "hash": 377908508 + } + } + }, + "596414623": { + "name": "class ControlText", + "bases": [ + "Window", + "PropertyClass" + ], + "hash": 596414623, + "properties": { + "m_sName": { "type": "std::string", - "id": 26, - "offset": 424, - "flags": 131079, + "id": 0, + "offset": 80, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2391520543 + "hash": 2306437263 }, - "m_cloaked": { - "type": "bool", - "id": 27, - "offset": 489, - "flags": 7, + "m_Children": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621225959 + }, + "m_Style": { + "type": "unsigned int", + "id": 2, + "offset": 152, + "flags": 1048583, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 7349510 + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152, + "DO_NOT_WRAP": 134217728, + "FIT_TEXT": 268435456 + } }, - "m_casterInvisible": { - "type": "bool", - "id": 28, - "offset": 490, - "flags": 7, + "m_Flags": { + "type": "unsigned int", + "id": 3, + "offset": 156, + "flags": 1048583, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 310214650 + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } }, - "m_adjectives": { - "type": "std::string", - "id": 29, - "offset": 576, - "flags": 7, - "container": "List", - "dynamic": true, + "m_Window": { + "type": "class Rect", + "id": 4, + "offset": 160, + "flags": 135, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 2967855037 + "hash": 3105139380 }, - "m_spellSourceType": { - "type": "enum SpellTemplate::kSpellSourceType", - "id": 30, - "offset": 528, - "flags": 2097159, + "m_fTargetAlpha": { + "type": "float", + "id": 5, + "offset": 212, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 156272727, - "enum_options": { - "kCaster": 0, - "kPet": 1, - "kShadowCreature": 2, - "kWeapon": 3, - "kEquipment": 4 - } + "hash": 1809129834 }, - "m_cloakedName": { - "type": "std::string", - "id": 31, - "offset": 536, - "flags": 268435463, + "m_fDisabledAlpha": { + "type": "float", + "id": 6, + "offset": 216, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2846679215, - "enum_options": { - "__BASECLASS": "SpellTemplate" - } + "hash": 1389987675 }, - "m_purchaseRequirements": { - "type": "class RequirementList*", - "id": 32, - "offset": 608, - "flags": 7, + "m_fAlpha": { + "type": "float", + "id": 7, + "offset": 208, + "flags": 65671, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3174641793 + "pointer": false, + "hash": 482130755 }, - "m_displayRequirements": { - "type": "class RequirementList*", - "id": 33, - "offset": 840, - "flags": 7, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": true, - "hash": 3646782876 + "hash": 3623628394 }, - "m_descriptionTrainer": { - "type": "std::string", - "id": 34, - "offset": 616, - "flags": 8388871, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1756093908 + "hash": 2102211316 }, - "m_descriptionCombatHUD": { + "m_sScript": { "type": "std::string", - "id": 35, - "offset": 648, - "flags": 8388871, + "id": 10, + "offset": 352, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1631478006 + "hash": 1846695875 }, - "m_displayIndex": { - "type": "int", - "id": 36, - "offset": 680, - "flags": 7, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1250551048 + "hash": 3389835433 }, - "m_hiddenFromEffectsWindow": { - "type": "bool", - "id": 37, - "offset": 684, - "flags": 7, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1832736331 + "hash": 2547159940 }, - "m_ignoreCharms": { - "type": "bool", - "id": 38, - "offset": 685, - "flags": 7, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1840075893 + "hash": 1513510520 }, - "m_alwaysFizzle": { - "type": "bool", - "id": 39, - "offset": 686, - "flags": 7, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2030988856 + "hash": 3091503757 }, - "m_spellCategory": { - "type": "std::string", - "id": 40, - "offset": 688, - "flags": 7, + "m_sText": { + "type": "std::wstring", + "id": 16, + "offset": 584, + "flags": 4194439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2472376729 + "hash": 2102642960 }, - "m_showPolymorphedName": { - "type": "bool", - "id": 41, - "offset": 720, - "flags": 7, + "m_sTooltip": { + "type": "std::wstring", + "id": 17, + "offset": 616, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2097929096 + "hash": 1680475798 }, - "m_skipTruncation": { + "m_bUseDropShadow": { "type": "bool", - "id": 42, - "offset": 721, - "flags": 263, + "id": 18, + "offset": 653, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1838335249 + "hash": 93063037 }, - "m_maxCopies": { - "type": "unsigned int", - "id": 43, - "offset": 724, - "flags": 263, + "m_bUseOutline": { + "type": "bool", + "id": 19, + "offset": 654, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 403022326 + "hash": 744292994 }, - "m_levelRestriction": { - "type": "int", - "id": 44, - "offset": 728, - "flags": 263, + "m_bEnableWordWrap": { + "type": "bool", + "id": 20, + "offset": 655, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 176502472 + "hash": 430904562 }, - "m_delayEnchantment": { + "m_bEnableToggle": { "type": "bool", - "id": 45, - "offset": 732, - "flags": 287, + "id": 21, + "offset": 652, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 191336919 + "hash": 1937994142 }, - "m_delayEnchantmentOrder": { - "type": "enum SpellEffect::kDelayOrder", - "id": 46, - "offset": 736, - "flags": 287, + "m_nLeadingAdjust": { + "type": "int", + "id": 22, + "offset": 656, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2526055263, - "enum_options": { - "SpellEffect::kAnyOrder": 0, - "SpellEffect::kFirst": 1, - "SpellEffect::kSecond": 2 - } + "hash": 1559480167 + } + } + }, + "1021238091": { + "name": "class ScavengeGoalTemplate*", + "bases": [ + "GoalTemplate", + "CoreTemplate", + "PropertyClass" + ], + "hash": 1021238091, + "properties": { + "m_behaviors": { + "type": "class BehaviorTemplate*", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1197808594 }, - "m_previousSpellName": { + "m_goalName": { "type": "std::string", - "id": 47, - "offset": 744, - "flags": 268435463, + "id": 1, + "offset": 104, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2903322585, - "enum_options": { - "__BASECLASS": "SpellTemplate" - } + "hash": 1521627807 }, - "m_cardFront": { + "m_goalNameID": { + "type": "unsigned int", + "id": 2, + "offset": 496, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 403158846 + }, + "m_goalTitle": { "type": "std::string", - "id": 48, - "offset": 456, - "flags": 131359, + "id": 3, + "offset": 136, + "flags": 8388615, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3557598526 + "hash": 2291910240 }, - "m_useGloss": { - "type": "bool", - "id": 49, - "offset": 488, - "flags": 287, + "m_goalUnderway": { + "type": "std::string", + "id": 4, + "offset": 168, + "flags": 8388615, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 668817544 + "hash": 3153144269 }, - "m_ignoreDispel": { - "type": "bool", - "id": 50, - "offset": 776, - "flags": 287, + "m_hyperlink": { + "type": "std::string", + "id": 5, + "offset": 200, + "flags": 8388615, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1881041624 + "hash": 2887798993 }, - "m_backRowFriendly": { - "type": "bool", - "id": 51, - "offset": 777, - "flags": 287, + "m_completeText": { + "type": "std::string", + "id": 6, + "offset": 232, + "flags": 8388615, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 501584377 + "hash": 2767458393 }, - "m_spellRank": { - "type": "class SharedPointer", - "id": 52, - "offset": 784, + "m_completeResults": { + "type": "class ResultList*", + "id": 7, + "offset": 440, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": true, - "hash": 3152361374 + "hash": 1964258099 }, - "m_secondarySchoolName": { - "type": "std::string", - "id": 53, - "offset": 800, + "m_goalRequirements": { + "type": "class RequirementList*", + "id": 8, + "offset": 448, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1803268236 + "pointer": true, + "hash": 2979967145 }, - "m_spellFusion": { - "type": "unsigned int", - "id": 54, - "offset": 836, + "m_tallyCounter": { + "type": "class TallyCounterTemplate*", + "id": 9, + "offset": 456, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1658928321 + "pointer": true, + "hash": 1884546193 }, - "m_requiredSchoolName": { + "m_locationName": { "type": "std::string", - "id": 55, - "offset": 848, - "flags": 7, + "id": 10, + "offset": 272, + "flags": 8388615, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3576058981 + "hash": 1824218389 }, - "m_fishingSpellType": { - "type": "enum FishingSpellTemplate::FishingSpellType", - "id": 56, - "offset": 880, - "flags": 2097159, + "m_displayImage1": { + "type": "std::string", + "id": 11, + "offset": 304, + "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3230697370, - "enum_options": { - "FS_Catching": 0, - "FS_Utility": 1, - "FS_PredatorBanishment": 2 - } + "hash": 1959572133 }, - "m_energyCost": { - "type": "int", - "id": 57, - "offset": 884, - "flags": 7, + "m_displayImage2": { + "type": "std::string", + "id": 12, + "offset": 336, + "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1236111677 + "hash": 1959572134 }, - "m_animationKFM": { + "m_clientTags": { "type": "std::string", - "id": 58, - "offset": 888, - "flags": 131079, + "id": 13, + "offset": 368, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2319030025 + }, + "m_genericEvents": { + "type": "std::string", + "id": 14, + "offset": 384, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 3466670829 + }, + "m_autoQualify": { + "type": "bool", + "id": 15, + "offset": 400, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2466280761 + "hash": 1878907431 }, - "m_animationName": { - "type": "std::string", - "id": 59, - "offset": 920, + "m_autoComplete": { + "type": "bool", + "id": 16, + "offset": 401, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3393414044 + "hash": 1302545445 }, - "m_soundEffectName": { + "m_destinationZone": { "type": "std::string", - "id": 60, - "offset": 952, - "flags": 131079, + "id": 17, + "offset": 408, + "flags": 268435463, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3235436082 + "hash": 2605356153, + "enum_options": { + "__BASECLASS": "ZoneData" + } }, - "m_soundEffectGain": { - "type": "float", - "id": 61, - "offset": 984, + "m_dialogList": { + "type": "class ActorDialogListBase*", + "id": 18, + "offset": 264, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1909154969 + }, + "m_goalType": { + "type": "enum GoalTemplate::GOAL_TYPE", + "id": 19, + "offset": 96, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1488021149, + "enum_options": { + "GOAL_TYPE_UNKNOWN": 0, + "GOAL_TYPE_BOUNTY": 1, + "GOAL_TYPE_BOUNTYCOLLECT": 2, + "GOAL_TYPE_SCAVENGE": 3, + "GOAL_TYPE_PERSONA": 4, + "GOAL_TYPE_WAYPOINT": 5, + "GOAL_TYPE_SCAVENGEFAKE": 6, + "GOAL_TYPE_ACHIEVERANK": 7, + "GOAL_TYPE_USAGE": 8, + "GOAL_TYPE_COMPLETEQUEST": 9, + "GOAL_TYPE_SOCIARANK": 10, + "GOAL_TYPE_SOCIACURRENCY": 11, + "GOAL_TYPE_SOCIAMINIGAME": 12, + "GOAL_TYPE_SOCIAGIVEITEM": 13, + "GOAL_TYPE_SOCIAGETITEM": 14, + "GOAL_TYPE_COLLECTAFTERBOUNTY": 15, + "GOAL_TYPE_ENCOUNTER_WAYPOINT_FOREACH": 16 + } + }, + "m_noQuestHelper": { + "type": "bool", + "id": 20, + "offset": 500, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1827685932, + "hash": 578010882, "enum_options": { - "__DEFAULT": "1.0" + "__DEFAULT": 0 } }, - "m_fishingSpellImageIndex": { - "type": "int", - "id": 62, - "offset": 988, + "m_petOnlyQuest": { + "type": "bool", + "id": 21, + "offset": 501, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 757127517 + "hash": 679359344, + "enum_options": { + "__DEFAULT": 0 + } }, - "m_fishingSpellImageName": { - "type": "std::string", - "id": 63, - "offset": 992, - "flags": 131079, + "m_activateResults": { + "type": "class ResultList*", + "id": 22, + "offset": 504, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3790153995 + }, + "m_hideGoalFloatyText": { + "type": "bool", + "id": 23, + "offset": 512, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1585969735 + "hash": 1919383204, + "enum_options": { + "__DEFAULT": 0 + } }, - "m_fishingSchoolFocus": { + "m_itemAdjectives": { "type": "std::string", - "id": 64, - "offset": 1024, + "id": 24, + "offset": 528, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1723744652 + }, + "m_itemTotal": { + "type": "int", + "id": 25, + "offset": 520, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2178393483 + "hash": 1809457197 } } }, - "1703578939": { - "name": "class SharedPointer", + "1444430413": { + "name": "class SharedPointer", "bases": [ - "AdvPvPEloBehavior", - "BehaviorInstance", + "ActorCinematicAction", + "CinematicAction", "PropertyClass" ], - "hash": 1703578939, + "hash": 1444430413, "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", + "m_timeOffset": { + "type": "float", "id": 0, - "offset": 104, - "flags": 39, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 + "hash": 2237098605 }, - "m_loaded": { - "type": "bool", + "m_actor": { + "type": "std::string", "id": 1, - "offset": 112, - "flags": 27, + "offset": 80, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 683367036 - }, - "m_entries": { - "type": "class SharedPointer", - "id": 2, - "offset": 120, - "flags": 27, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1075986553 - }, - "m_recordCache": { - "type": "class SharedPointer", - "id": 3, - "offset": 136, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 828243474 + "hash": 2285866132 } } }, - "913912071": { - "name": "class SharedPointer", + "1876271121": { + "name": "class FishHistory*", "bases": [ - "StatisticEffect", - "GameEffectBase", "PropertyClass" ], - "hash": 913912071, + "hash": 1876271121, "properties": { - "m_currentTickCount": { - "type": "double", + "m_templateID": { + "type": "unsigned int", "id": 0, - "offset": 80, - "flags": 63, + "offset": 72, + "flags": 33554471, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2533274692 + "hash": 1286746870 }, - "m_effectNameID": { + "m_numberCaught": { "type": "unsigned int", "id": 1, - "offset": 96, - "flags": 63, + "offset": 76, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1204067144 + "hash": 880871538 }, - "m_bIsOnPet": { - "type": "bool", + "m_smallestSize": { + "type": "float", "id": 2, - "offset": 73, - "flags": 31, + "offset": 80, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 522593303 + "hash": 1372912951 }, - "m_originatorID": { - "type": "gid", + "m_largestSize": { + "type": "float", "id": 3, - "offset": 104, + "offset": 84, "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1131810019 + "hash": 344314084 }, - "m_itemSlotID": { + "m_numberSmallFrysCaught": { "type": "unsigned int", "id": 4, - "offset": 112, - "flags": 63, + "offset": 88, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1895747595 + "hash": 2177497487 }, - "m_internalID": { - "type": "int", + "m_numberWoppersCaught": { + "type": "unsigned int", "id": 5, "offset": 92, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1643137924 - }, - "m_endTime": { - "type": "unsigned int", - "id": 6, - "offset": 88, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 716479635 - }, - "m_lookupIndex": { - "type": "int", - "id": 7, - "offset": 128, - "flags": 31, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1626623948 + "hash": 842916418 } } }, - "1692652096": { - "name": "class SharedPointer", + "1444338581": { + "name": "enum TimerControlCinematicAction::kControlOperation", + "bases": [], + "hash": 1444338581, + "properties": {} + }, + "1875432636": { + "name": "class SharedPointer", "bases": [ - "PetTomeBehaviorBase", + "ExpansionBehavior", "BehaviorInstance", "PropertyClass" ], - "hash": 1692652096, + "hash": 1875432636, "properties": { "m_behaviorTemplateNameID": { "type": "unsigned int", @@ -9047,969 +8951,1076 @@ "pointer": false, "hash": 223437287 }, - "m_petData": { - "type": "std::string", + "m_bankExpansions": { + "type": "int", "id": 1, - "offset": 144, - "flags": 551, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2990195294 - } - } - }, - "913826227": { - "name": "class SharedPointer", - "bases": [ - "Requirement", - "PropertyClass" - ], - "hash": 913826227, - "properties": { - "m_applyNOT": { - "type": "bool", - "id": 0, - "offset": 72, - "flags": 31, + "offset": 112, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1746328074, - "enum_options": { - "__DEFAULT": 0 - } + "hash": 1369075454 }, - "m_operator": { - "type": "enum Requirement::Operator", - "id": 1, - "offset": 76, - "flags": 2097183, + "m_friendListExpansions": { + "type": "int", + "id": 2, + "offset": 116, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2672792317, - "enum_options": { - "ROP_AND": 0, - "ROP_OR": 1, - "__DEFAULT": "ROP_AND" - } + "hash": 1057398198 } } }, - "1685251492": { - "name": "class SharedPointer", + "1875206885": { + "name": "class ClientTreasureBookBehavior", "bases": [ - "BanishBacklashEffectCinematicAction", - "ActorCinematicAction", - "CinematicAction", + "TreasureBookBehavior", + "BehaviorInstance", "PropertyClass" ], - "hash": 1685251492, + "hash": 1875206885, "properties": { - "m_timeOffset": { - "type": "float", + "m_behaviorTemplateNameID": { + "type": "unsigned int", "id": 0, - "offset": 72, - "flags": 7, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 + "hash": 223437287 }, - "m_actor": { - "type": "std::string", + "m_spellList": { + "type": "class SharedPointer", "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, + "offset": 120, + "flags": 27, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 2285866132 + "pointer": true, + "hash": 2181913740 } } }, - "2096458182": { - "name": "class MadlibArgT*", + "601407923": { + "name": "class ControlBar", "bases": [ - "MadlibArg", + "Window", "PropertyClass" ], - "hash": 2096458182, + "hash": 601407923, "properties": { - "m_madlibToken": { + "m_sName": { "type": "std::string", "id": 0, "offset": 80, - "flags": 31, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3058682373 + "hash": 2306437263 }, - "m_madlibArgument": { - "type": "unsigned int", + "m_Children": { + "type": "class SharedPointer", "id": 1, "offset": 112, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1089894617 - } - } - }, - "1682152064": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1682152064, - "properties": { - "m_pBackMaterial": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1628562023 - }, - "m_pFont": { - "type": "class SharedPointer", - "id": 1, - "offset": 88, - "flags": 135, - "container": "Static", - "dynamic": false, + "flags": 65671, + "container": "Vector", + "dynamic": true, "singleton": false, "pointer": true, - "hash": 1067686307 + "hash": 2621225959 }, - "m_pLargeFont": { - "type": "class SharedPointer", + "m_Style": { + "type": "unsigned int", "id": 2, - "offset": 104, - "flags": 135, + "offset": 152, + "flags": 1048583, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1523900782 + "pointer": false, + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "SCALE_CHILDREN": 2, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "FOCUS_LOCKED": 64, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152 + } }, - "m_pSmallFont": { - "type": "class SharedPointer", + "m_Flags": { + "type": "unsigned int", "id": 3, - "offset": 120, - "flags": 135, + "offset": 156, + "flags": 1048583, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2363252956 + "pointer": false, + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } }, - "m_Color": { - "type": "class Color", + "m_Window": { + "type": "class Rect", "id": 4, - "offset": 136, - "flags": 262279, + "offset": 160, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1753714077 + "hash": 3105139380 }, - "m_HighColor": { - "type": "class Color", + "m_fTargetAlpha": { + "type": "float", "id": 5, - "offset": 140, - "flags": 262279, + "offset": 212, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2310527421 + "hash": 1809129834 }, - "m_SelectColor": { - "type": "class Color", + "m_fDisabledAlpha": { + "type": "float", "id": 6, - "offset": 144, - "flags": 262279, + "offset": 216, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2792529213 + "hash": 1389987675 }, - "m_BorderColor": { - "type": "class Color", + "m_fAlpha": { + "type": "float", "id": 7, - "offset": 148, - "flags": 262279, + "offset": 208, + "flags": 65671, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1470576795 + "hash": 482130755 }, - "m_BackColor": { - "type": "class Color", + "m_pWindowStyle": { + "type": "class SharedPointer", "id": 8, - "offset": 152, - "flags": 262279, + "offset": 232, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1070928782 + "pointer": true, + "hash": 3623628394 }, - "m_ScrollBarColor": { - "type": "class Color", + "m_sHelp": { + "type": "std::wstring", "id": 9, - "offset": 156, - "flags": 262279, + "offset": 248, + "flags": 4194439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1180747361 + "hash": 2102211316 }, - "m_ScrollTabColor": { - "type": "class Color", + "m_sScript": { + "type": "std::string", "id": 10, - "offset": 160, - "flags": 262279, + "offset": 352, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1034892323 + "hash": 1846695875 }, - "m_nBorderSize": { - "type": "int", + "m_Offset": { + "type": "class Point", "id": 11, - "offset": 164, + "offset": 192, "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2016376897 + "hash": 3389835433 }, - "m_nScrollSize": { - "type": "int", + "m_Scale": { + "type": "class Point", "id": 12, - "offset": 168, + "offset": 200, "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 632681746 + "hash": 2547159940 }, - "m_sHoverSound": { - "type": "std::string", + "m_sTip": { + "type": "std::wstring", "id": 13, - "offset": 176, - "flags": 131207, + "offset": 392, + "flags": 4194439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2662773595 + "hash": 1513510520 }, - "m_sSelectSound": { - "type": "std::string", + "m_BubbleList": { + "type": "class WindowBubble", "id": 14, - "offset": 208, - "flags": 131207, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2596786807 - } - } - }, - "2095264355": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 2095264355, - "properties": { - "m_name": { - "type": "std::string", - "id": 0, - "offset": 120, - "flags": 134217735, + "hash": 3091503757 + }, + "m_fPosition": { + "type": "float", + "id": 16, + "offset": 584, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1717359772 + "hash": 1808212114 }, - "m_stages": { - "type": "class SharedPointer", - "id": 1, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, + "m_BaseColor": { + "type": "class Color", + "id": 17, + "offset": 588, + "flags": 262279, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2172251096 + }, + "m_BarColor": { + "type": "class Color", + "id": 18, + "offset": 592, + "flags": 262279, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2259916498 + }, + "m_bDisplayVertical": { + "type": "bool", + "id": 19, + "offset": 596, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1359621189 + }, + "m_pBarMaterial": { + "type": "class SharedPointer", + "id": 20, + "offset": 600, + "flags": 135, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": true, - "hash": 2081530688 + "hash": 2481929515 }, - "m_actors": { - "type": "class SharedPointer", - "id": 2, - "offset": 88, - "flags": 7, - "container": "List", - "dynamic": true, + "m_pTopLeftMaterial": { + "type": "class SharedPointer", + "id": 21, + "offset": 616, + "flags": 135, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": true, - "hash": 2242419761 + "hash": 3248096916 }, - "m_sharedAnimations": { - "type": "class SharedPointer", - "id": 3, - "offset": 104, - "flags": 7, - "container": "List", - "dynamic": true, + "m_pCenterMaterial": { + "type": "class SharedPointer", + "id": 22, + "offset": 632, + "flags": 135, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": true, - "hash": 3289641416 + "hash": 1519560055 + }, + "m_pBottomRightMaterial": { + "type": "class SharedPointer", + "id": 23, + "offset": 648, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2932444745 } } }, - "1681225868": { - "name": "class SharedPointer", + "1021837526": { + "name": "class SharedPointer", "bases": [ - "StatisticEffectTemplate", - "GameEffectTemplate", + "DerbyEffect", "PropertyClass" ], - "hash": 1681225868, + "hash": 1021837526, "properties": { - "m_effectName": { - "type": "std::string", + "m_buffType": { + "type": "enum DerbyTalentBuffType", "id": 0, - "offset": 72, - "flags": 7, + "offset": 92, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2029161513 + "hash": 1149251982, + "enum_options": { + "Buff": 0, + "Debuff": 1, + "Neither": 2 + } }, - "m_effectCategory": { - "type": "std::string", + "m_kTarget": { + "type": "enum DerbyTargetType", "id": 1, - "offset": 104, - "flags": 7, + "offset": 96, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1852673222 + "hash": 1807803351, + "enum_options": { + "kTargetInFront": 0, + "kTargetBehind": 1, + "kTargetFirst": 2, + "kTargetSelf": 3, + "kTargetAll": 4, + "kTargetLast": 5 + } }, - "m_sortOrder": { + "m_nDuration": { "type": "int", "id": 2, - "offset": 148, - "flags": 7, + "offset": 104, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1411218206 + "hash": 1110167982 }, - "m_duration": { - "type": "double", + "m_effectID": { + "type": "unsigned int", "id": 3, - "offset": 192, - "flags": 7, + "offset": 88, + "flags": 24, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2727932435 + "hash": 2347630439 }, - "m_stackingCategories": { + "m_imageFilename": { "type": "std::string", "id": 4, - "offset": 160, - "flags": 7, - "container": "List", - "dynamic": true, + "offset": 112, + "flags": 131103, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 1774497525 + "hash": 2813328063 }, - "m_isPersistent": { - "type": "bool", + "m_iconIndex": { + "type": "unsigned int", "id": 5, - "offset": 153, - "flags": 7, + "offset": 144, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 923861920 + "hash": 1265133262 }, - "m_bIsOnPet": { - "type": "bool", + "m_soundOnActivate": { + "type": "std::string", "id": 6, - "offset": 154, - "flags": 7, + "offset": 152, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 522593303 + "hash": 1956929714 }, - "m_isPublic": { - "type": "bool", + "m_soundOnTarget": { + "type": "std::string", "id": 7, - "offset": 152, - "flags": 7, + "offset": 184, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1728439822 + "hash": 3444214056 }, - "m_visualEffectAddName": { + "m_targetParticleEffect": { "type": "std::string", "id": 8, - "offset": 200, - "flags": 7, + "offset": 216, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3382086694 + "hash": 3048234723 }, - "m_visualEffectRemoveName": { + "m_overheadMessage": { "type": "std::string", "id": 9, - "offset": 232, - "flags": 7, + "offset": 248, + "flags": 8388639, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1541697323 + "hash": 1701018190 }, - "m_onAddFunctorName": { - "type": "std::string", + "m_requirements": { + "type": "class RequirementList", "id": 10, "offset": 280, - "flags": 7, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1561843107 - }, - "m_onRemoveFunctorName": { - "type": "std::string", - "id": 11, - "offset": 312, - "flags": 7, + "hash": 2840988582 + } + } + }, + "1874895799": { + "name": "class WinAnimMoveToLocationSpeedEase", + "bases": [ + "WinAnimMoveToLocationSpeed", + "WinAnimMoveToLocation", + "WindowAnimation", + "PropertyClass" + ], + "hash": 1874895799, + "properties": { + "m_bUseDeepCopy": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2559017864 + "hash": 433380635 }, - "m_stackingRule": { - "type": "enum STACKING_RULE", - "id": 12, - "offset": 144, - "flags": 2097159, + "m_targetLocation": { + "type": "class Vector3D", + "id": 1, + "offset": 80, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 431568889, - "enum_options": { - "STACKING_ALLOWED": 0, - "STACKING_NOSTACK": 1, - "STACKING_REPLACE": 2 - } + "hash": 2653859938 }, - "m_buffAll": { - "type": "bool", - "id": 13, - "offset": 392, - "flags": 7, + "m_fSpeed": { + "type": "float", + "id": 2, + "offset": 96, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1205044623 + "hash": 503609006 }, - "m_school": { - "type": "std::string", - "id": 14, - "offset": 400, - "flags": 7, + "m_fEaseInPercent": { + "type": "float", + "id": 3, + "offset": 112, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2438566051 + "hash": 1482967843 }, - "m_damageBonusPercent": { + "m_fEaseOutPercent": { "type": "float", - "id": 15, - "offset": 440, - "flags": 7, + "id": 4, + "offset": 116, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 623230606 + "hash": 1272154212 }, - "m_damageBonusFlat": { + "m_fTotalDistance": { "type": "float", - "id": 16, - "offset": 488, - "flags": 7, + "id": 5, + "offset": 120, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2212039108 - }, - "m_accuracyBonusPercent": { + "hash": 1894338732 + } + } + }, + "598787175": { + "name": "class CinematicSoundEmitterInfo*", + "bases": [ + "PropertyClass" + ], + "hash": 598787175, + "properties": { + "m_volume": { "type": "float", - "id": 17, - "offset": 444, + "id": 0, + "offset": 72, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1972336538 + "hash": 1162855023 }, - "m_armorPiercingBonusPercent": { - "type": "float", - "id": 18, - "offset": 448, + "m_loopCount": { + "type": "int", + "id": 1, + "offset": 76, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1569912641 + "hash": 865634717 }, - "m_damageReducePercent": { - "type": "float", - "id": 19, - "offset": 452, + "m_priority": { + "type": "int", + "id": 2, + "offset": 80, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 541736927 + "hash": 1235205852 }, - "m_damageReduceFlat": { - "type": "float", - "id": 20, - "offset": 456, - "flags": 7, + "m_progression": { + "type": "enum CinematicSoundEmitterInfo::Progression", + "id": 3, + "offset": 84, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 684172469 + "hash": 2562723160, + "enum_options": { + "Sequence": 0, + "Random": 1, + "SequenceOnceOnly": 2, + "RandomNoRepeat": 3 + } }, - "m_accuracyReducePercent": { + "m_progressMin": { "type": "float", - "id": 21, - "offset": 460, + "id": 4, + "offset": 88, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2112559723 + "hash": 1497550192 }, - "m_healBonusPercent": { + "m_progressMax": { "type": "float", - "id": 22, - "offset": 464, + "id": 5, + "offset": 92, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 562313577 + "hash": 1497549938 }, - "m_healIncBonusPercent": { - "type": "float", - "id": 23, - "offset": 468, + "m_trackFilenameList": { + "type": "std::string", + "id": 6, + "offset": 96, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "Vector", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 2182535587 + "hash": 2531081709 }, - "m_hitPointBonus": { - "type": "float", - "id": 24, - "offset": 496, - "flags": 7, + "m_category": { + "type": "enum CinematicSoundEmitterInfo::AudioCategory", + "id": 7, + "offset": 120, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 880644461 + "hash": 2525629195, + "enum_options": { + "AudioCategory_Irrelevent": 0, + "AudioCategory_Accoustic": 1, + "AudioCategory_Noise": 2, + "AudioCategory_Music": 3, + "AudioCategory_MusicAtSFXVolume": 4, + "AudioCategory_Dialog": 5, + "AudioCategory_UI": 6, + "AudioCategory_NoiseAtMusicVolume": 7 + } }, - "m_spellChargeBonus": { - "type": "float", - "id": 25, - "offset": 504, + "m_name": { + "type": "std::string", + "id": 8, + "offset": 144, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2109811656 + "hash": 1717359772 }, - "m_powerPipBonusPercent": { - "type": "float", - "id": 26, - "offset": 472, + "m_useClientLocation": { + "type": "bool", + "id": 9, + "offset": 176, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1671446341 + "hash": 98585784 }, - "m_petActChance": { - "type": "int", - "id": 27, - "offset": 492, + "m_fadeInDuration": { + "type": "float", + "id": 10, + "offset": 124, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 237418461 + "hash": 770484100 }, - "m_manaBonus": { + "m_fadeOutDuration": { "type": "float", - "id": 28, - "offset": 500, + "id": 11, + "offset": 128, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1372708603 + "hash": 666963557 }, - "m_statTableName": { - "type": "std::string", - "id": 29, - "offset": 360, + "m_wetReverb": { + "type": "float", + "id": 12, + "offset": 136, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1616642912 + "hash": 1024635181 }, - "m_manaReducePercent": { + "m_dryReverb": { "type": "float", - "id": 30, - "offset": 568, + "id": 13, + "offset": 132, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 348324221 + "hash": 403787084 }, - "m_expPercent": { - "type": "float", - "id": 31, - "offset": 572, + "m_isStreamed": { + "type": "bool", + "id": 14, + "offset": 140, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1147850677 - }, - "m_goldPercent": { - "type": "float", - "id": 32, - "offset": 576, - "flags": 7, + "hash": 906929764 + } + } + }, + "1445136607": { + "name": "class GraphicalArenaPoints*", + "bases": [ + "GraphicalSpell", + "Spell", + "PropertyClass" + ], + "hash": 1445136607, + "properties": { + "m_templateID": { + "type": "unsigned int", + "id": 0, + "offset": 128, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1095720878 + "hash": 1286746870 }, - "m_energyBonus": { - "type": "float", - "id": 33, - "offset": 508, - "flags": 7, + "m_enchantment": { + "type": "unsigned int", + "id": 1, + "offset": 80, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2223158984 + "hash": 2217886818 }, - "m_criticalHitRating": { - "type": "float", - "id": 34, - "offset": 512, + "m_pipCost": { + "type": "class SharedPointer", + "id": 2, + "offset": 176, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1978690540 + "pointer": true, + "hash": 3605704820 }, - "m_blockRating": { - "type": "float", - "id": 35, - "offset": 516, - "flags": 7, + "m_regularAdjust": { + "type": "int", + "id": 3, + "offset": 192, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2088486759 + "hash": 1420453335 }, - "m_accuracyRating": { - "type": "float", - "id": 36, - "offset": 520, + "m_magicSchoolID": { + "type": "unsigned int", + "id": 4, + "offset": 136, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 165525575 + "hash": 893146499 }, - "m_powerPipRating": { - "type": "float", - "id": 37, - "offset": 524, + "m_accuracy": { + "type": "unsigned char", + "id": 5, + "offset": 132, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1355340722 + "hash": 2273914939 }, - "m_damageResistanceRating": { - "type": "float", - "id": 38, - "offset": 532, - "flags": 7, + "m_treasureCard": { + "type": "bool", + "id": 6, + "offset": 197, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1961377740 + "hash": 1764879128 }, - "m_archmastery": { - "type": "float", - "id": 39, - "offset": 536, - "flags": 7, + "m_battleCard": { + "type": "bool", + "id": 7, + "offset": 198, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1963579610 + "hash": 1332843753 }, - "m_archmasteryBonusPercent": { - "type": "float", - "id": 40, - "offset": 588, + "m_itemCard": { + "type": "bool", + "id": 8, + "offset": 199, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1908627154 + "hash": 1683654300 }, - "m_balanceMastery": { - "type": "int", - "id": 41, - "offset": 540, + "m_sideBoard": { + "type": "bool", + "id": 9, + "offset": 200, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 149062181 + "hash": 1897838368 }, - "m_deathMastery": { - "type": "int", - "id": 42, - "offset": 544, - "flags": 7, + "m_spellID": { + "type": "unsigned int", + "id": 10, + "offset": 204, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1421218661 + "hash": 1697483258 }, - "m_fireMastery": { - "type": "int", - "id": 43, - "offset": 548, - "flags": 7, + "m_leavesPlayWhenCastOverride": { + "type": "bool", + "id": 11, + "offset": 216, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1431794949 + "hash": 874407398 }, - "m_iceMastery": { - "type": "int", - "id": 44, - "offset": 552, + "m_cloaked": { + "type": "bool", + "id": 12, + "offset": 196, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 704864240 + "hash": 7349510 }, - "m_lifeMastery": { - "type": "int", - "id": 45, - "offset": 556, - "flags": 7, + "m_enchantmentSpellIsItemCard": { + "type": "bool", + "id": 13, + "offset": 76, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2142136447 + "hash": 531590701 }, - "m_mythMastery": { - "type": "int", - "id": 46, - "offset": 560, - "flags": 7, + "m_premutationSpellID": { + "type": "unsigned int", + "id": 14, + "offset": 112, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1766317185 + "hash": 1530256370 }, - "m_stormMastery": { - "type": "int", - "id": 47, - "offset": 564, - "flags": 7, + "m_enchantedThisCombat": { + "type": "bool", + "id": 15, + "offset": 77, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1883988244 + "hash": 1895738923 }, - "m_stunResistancePercent": { - "type": "float", - "id": 48, - "offset": 580, - "flags": 7, + "m_paramOverrides": { + "type": "class SharedPointer", + "id": 16, + "offset": 224, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2061635599 + }, + "m_subEffectMeta": { + "type": "class SharedPointer", + "id": 17, + "offset": 240, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1944101106 + }, + "m_delayEnchantment": { + "type": "bool", + "id": 18, + "offset": 257, + "flags": 287, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1868382627 + "hash": 191336919 }, - "m_fishingLuckBonusPercent": { - "type": "float", - "id": 49, - "offset": 480, - "flags": 7, + "m_PvE": { + "type": "bool", + "id": 19, + "offset": 264, + "flags": 287, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1363349254 + "hash": 269492350 }, - "m_shadowPipBonusPercent": { - "type": "float", - "id": 50, - "offset": 476, - "flags": 7, + "m_delayEnchantmentOrder": { + "type": "enum SpellEffect::kDelayOrder", + "id": 20, + "offset": 72, + "flags": 287, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1426533310 + "hash": 2526055263, + "enum_options": { + "SpellEffect::kAnyOrder": 0, + "SpellEffect::kFirst": 1, + "SpellEffect::kSecond": 2 + } }, - "m_wispBonusPercent": { - "type": "float", - "id": 51, - "offset": 484, - "flags": 7, + "m_roundAddedTC": { + "type": "int", + "id": 21, + "offset": 260, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1304386546 + "hash": 112365451 }, - "m_pipConversionRating": { - "type": "float", - "id": 52, - "offset": 584, + "m_secondarySchoolID": { + "type": "unsigned int", + "id": 22, + "offset": 304, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 246855691 + "hash": 2081206026 }, - "m_shadowPipRating": { - "type": "float", - "id": 53, - "offset": 528, - "flags": 7, + "m_fusionState": { + "type": "enum Spell::FusionState", + "id": 23, + "offset": 308, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 507126123 + "hash": 835324539, + "enum_options": { + "FS_Invalid": 0, + "FS_Partial": 1, + "FS_Valid": 2 + } } } }, - "1681095358": { - "name": "class SharedPointer", + "597523807": { + "name": "class ControlTree", "bases": [ "Window", "PropertyClass" ], - "hash": 1681095358, + "hash": 597523807, "properties": { "m_sName": { "type": "std::string", @@ -10026,7 +10037,7 @@ "type": "class SharedPointer", "id": 1, "offset": 112, - "flags": 65667, + "flags": 65671, "container": "Vector", "dynamic": true, "singleton": false, @@ -10045,11 +10056,9 @@ "hash": 983582334, "enum_options": { "HAS_BACK": 1, - "SCALE_CHILDREN": 2, "CAN_MOVE": 4, "CAN_SIZE": 8, "CAN_SCROLL": 16, - "FOCUS_LOCKED": 64, "CAN_FOCUS": 128, "CAN_DOCK": 32, "DO_NOT_CAPTURE_MOUSE": 256, @@ -10057,11 +10066,11 @@ "EFFECT_FADEIN": 512, "EFFECT_HIGHLIGHT": 1024, "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, "USE_ALPHA_BOUNDS": 8192, "AUTO_GROW": 16384, "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152 + "AUTO_RESIZE": 49152, + "SINGLE_EXPAND": 16777216 } }, "m_Flags": { @@ -10221,1269 +10230,1236 @@ "singleton": false, "pointer": false, "hash": 3091503757 - } - } - }, - "913994654": { - "name": "class PlaneGeomParams*", - "bases": [ - "GeomParams", - "PropertyClass" - ], - "hash": 913994654, - "properties": { - "m_eType": { - "type": "enum ProxyType", - "id": 0, - "offset": 72, - "flags": 2097159, + }, + "m_nIndent": { + "type": "int", + "id": 16, + "offset": 584, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1656534066, - "enum_options": { - "ProxyTypeBox": 0, - "ProxyTypeRay": 1, - "ProxyTypeSphere": 2, - "ProxyTypeCylinder": 3, - "ProxyTypeTube": 4, - "ProxyTypePlane": 5, - "ProxyTypeMesh": 6, - "ProxyTypeInvalid": 7 - } + "hash": 2102774666 }, - "m_vNormal": { - "type": "class Vector3D", - "id": 1, - "offset": 80, - "flags": 7, + "m_pRoot": { + "type": "struct ControlTree::Item*", + "id": 17, + "offset": 592, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 3552296097 + "pointer": true, + "hash": 1289445775 }, - "m_fDistance": { - "type": "float", - "id": 2, - "offset": 92, - "flags": 7, + "m_pCursorOver": { + "type": "struct ControlTree::Item*", + "id": 18, + "offset": 600, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 194015112 - } - } - }, - "2096485259": { - "name": "class SharedPointer", - "bases": [ - "LootInfo", - "LootInfoBase", - "PropertyClass" - ], - "hash": 2096485259, - "properties": { - "m_lootType": { - "type": "enum LootInfo::LOOT_TYPE", - "id": 0, - "offset": 72, - "flags": 2097183, + "pointer": true, + "hash": 2025071845 + }, + "m_pSelected": { + "type": "struct ControlTree::Item*", + "id": 19, + "offset": 608, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1591891442, - "enum_options": { - "LOOT_TYPE_NONE": 0, - "LOOT_TYPE_GOLD": 1, - "LOOT_TYPE_MANA": 2, - "LOOT_TYPE_ITEM": 3, - "LOOT_TYPE_TREASURE_CARD": 4, - "LOOT_TYPE_MAGIC_XP": 5, - "LOOT_TYPE_ADD_SPELL": 6, - "LOOT_TYPE_MAX_HEALTH": 7, - "LOOT_TYPE_MAX_GOLD": 8, - "LOOT_TYPE_MAX_MANA": 9, - "LOOT_TYPE_MAX_POTION": 10, - "LOOT_TYPE_TRAINING_POINTS": 11, - "LOOT_TYPE_RECIPE": 12, - "LOOT_TYPE_CRAFTING_SLOT": 13, - "LOOT_TYPE_REAGENT": 14, - "LOOT_TYPE_PETSNACK": 15, - "LOOT_TYPE_GARDENING_XP": 16, - "LOOT_TYPE_PET_XP": 17, - "LOOT_TYPE_TREASURE_TABLE": 18, - "LOOT_TYPE_ARENA_POINTS": 19, - "LOOT_TYPE_ARENA_BONUS_POINTS": 20, - "LOOT_TYPE_GROUP": 21, - "LOOT_TYPE_FISHING_XP": 22, - "LOOT_TYPE_EVENT_CURRENCY_1": 24, - "LOOT_TYPE_EVENT_CURRENCY_2": 25, - "LOOT_TYPE_PVP_CURRENCY": 26, - "LOOT_TYPE_PVP_CURRENCY_BONUS": 27, - "LOOT_TYPE_PVP_TOURNEY_CURRENCY": 28, - "LOOT_TYPE_PVP_TOURNEY_CURRENCY_BONUS": 29, - "LOOT_TYPE_FURNITURE_ESSENCE": 30 - } + "pointer": true, + "hash": 1115130964 }, - "m_eventCurrency2Amount": { - "type": "int", - "id": 1, - "offset": 80, - "flags": 31, + "m_bCursorInWindow": { + "type": "bool", + "id": 20, + "offset": 616, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 89898381 + "hash": 1768047842 } } }, - "914083479": { - "name": "class ReagentItemTemplate", + "596467571": { + "name": "class HousingSignBehaviorTemplate", "bases": [ - "WizItemTemplate", - "ItemTemplate", - "GameObjectTemplate", - "CoreTemplate", + "BehaviorTemplate", "PropertyClass" ], - "hash": 914083479, + "hash": 596467571, "properties": { - "m_behaviors": { - "type": "class BehaviorTemplate*", + "m_behaviorName": { + "type": "std::string", "id": 0, "offset": 72, "flags": 7, - "container": "Vector", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1197808594 + "pointer": false, + "hash": 3130754092 }, - "m_objectName": { + "m_materialName": { "type": "std::string", "id": 1, - "offset": 96, + "offset": 120, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2154940147 + "hash": 1878140043 }, - "m_templateID": { - "type": "unsigned int", + "m_red": { + "type": "float", "id": 2, - "offset": 128, - "flags": 16777223, + "offset": 152, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1286746870 + "hash": 357248818 }, - "m_visualID": { - "type": "unsigned int", + "m_green": { + "type": "float", "id": 3, - "offset": 132, + "offset": 156, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1118778894 + "hash": 886005576 }, - "m_adjectiveList": { - "type": "std::string", + "m_blue": { + "type": "float", "id": 4, - "offset": 248, + "offset": 160, "flags": 7, - "container": "List", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 3195213318 + "hash": 309442303 }, - "m_exemptFromAOI": { + "m_hasShadow": { "type": "bool", "id": 5, - "offset": 240, + "offset": 164, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1457879059 + "hash": 1762388821 }, - "m_displayName": { - "type": "std::string", + "m_animate": { + "type": "bool", "id": 6, - "offset": 168, - "flags": 8388615, + "offset": 165, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2446900370 + "hash": 1790956978 }, - "m_description": { + "m_defaultSignText": { "type": "std::string", "id": 7, - "offset": 136, - "flags": 8388615, + "offset": 168, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1649374815 - }, - "m_nObjectType": { - "type": "enum ObjectType", - "id": 8, - "offset": 200, - "flags": 2097159, + "hash": 3351101718 + } + } + }, + "1022523279": { + "name": "class BracketReportInfo*", + "bases": [ + "PropertyClass" + ], + "hash": 1022523279, + "properties": { + "m_scheduleID": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2118905880, - "enum_options": { - "OT_UNDEFINED": 0, - "OT_PLAYER": 1, - "OT_NPC": 2, - "OT_PROP": 3, - "OT_OBJECT": 4, - "OT_HOUSE": 5, - "OT_KEY": 6, - "OT_OLD_KEY": 7, - "OT_DEED": 8, - "OT_MAIL": 9, - "OT_RECIPE": 17, - "OT_EQUIP_HEAD": 10, - "OT_EQUIP_CHEST": 11, - "OT_EQUIP_LEGS": 12, - "OT_EQUIP_HANDS": 13, - "OT_EQUIP_FINGER": 14, - "OT_EQUIP_FEET": 15, - "OT_EQUIP_EAR": 16, - "OT_BUILDING_BLOCK": 18, - "OT_BUILDING_BLOCK_SOLID": 19, - "OT_GOLF": 20, - "OT_DOOR": 21, - "OT_PET": 22, - "OT_FABRIC": 23, - "OT_WINDOW": 24, - "OT_ROOF": 25, - "OT_HORSE": 26, - "OT_STRUCTURE": 27, - "OT_HOUSING_TEXTURE": 28, - "OT_PLANT": 29 - } + "hash": 1439120946 }, - "m_sIcon": { - "type": "std::string", - "id": 9, - "offset": 208, - "flags": 131079, + "m_bracketID": { + "type": "gid", + "id": 1, + "offset": 80, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2306259831 - }, - "m_equipRequirements": { - "type": "class RequirementList*", - "id": 10, - "offset": 280, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2762617226 - }, - "m_purchaseRequirements": { - "type": "class RequirementList*", - "id": 11, - "offset": 288, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3174641793 - }, - "m_equipEffects": { - "type": "class GameEffectInfo*", - "id": 12, - "offset": 296, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 836628351 + "hash": 441272961 }, - "m_baseCost": { - "type": "float", - "id": 13, - "offset": 312, - "flags": 7, + "m_bracketState": { + "type": "unsigned int", + "id": 2, + "offset": 88, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1565352651 + "hash": 790945386 }, - "m_creditsCost": { - "type": "float", - "id": 14, - "offset": 320, - "flags": 7, + "m_creationTime": { + "type": "int", + "id": 3, + "offset": 92, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 805514974 + "hash": 1930866142 }, - "m_avatarInfo": { - "type": "class AvatarItemInfoBase*", - "id": 15, - "offset": 328, - "flags": 7, + "m_registrationOpenTime": { + "type": "int", + "id": 4, + "offset": 96, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2627321299 - }, - "m_avatarFlags": { - "type": "std::string", - "id": 16, - "offset": 336, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, "pointer": false, - "hash": 2347762759 + "hash": 313608566 }, - "m_itemLimit": { + "m_matchStartTime": { "type": "int", - "id": 17, - "offset": 316, - "flags": 7, + "id": 5, + "offset": 100, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1799746856 + "hash": 1241735780 }, - "m_holidayFlag": { - "type": "std::string", - "id": 18, - "offset": 352, - "flags": 7, + "m_tournamentNameID": { + "type": "unsigned int", + "id": 6, + "offset": 104, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2994795359 + "hash": 1799846440 }, - "m_itemSetBonusTemplateID": { + "m_tournamentDuration": { "type": "unsigned int", - "id": 19, - "offset": 384, - "flags": 33554439, + "id": 7, + "offset": 108, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1316835672 + "hash": 475739392 }, - "m_numPrimaryColors": { + "m_minLevel": { "type": "int", - "id": 20, - "offset": 428, - "flags": 7, + "id": 8, + "offset": 112, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 981103872 + "hash": 1496818518 }, - "m_numSecondaryColors": { + "m_maxLevel": { "type": "int", - "id": 21, - "offset": 432, - "flags": 7, + "id": 9, + "offset": 116, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1310416868 + "hash": 146363288 }, - "m_numPatterns": { - "type": "int", - "id": 22, - "offset": 436, - "flags": 7, + "m_overrideTourneyName": { + "type": "std::string", + "id": 10, + "offset": 120, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 953162171 + "hash": 2611946162 }, - "m_school": { + "m_firstTourneyNameSTKey": { "type": "std::string", - "id": 23, - "offset": 392, - "flags": 7, + "id": 11, + "offset": 152, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2438566051 + "hash": 2731391050 }, - "m_arenaPointCost": { - "type": "int", - "id": 24, - "offset": 440, - "flags": 7, + "m_secondTourneyNameSTKey": { + "type": "std::string", + "id": 12, + "offset": 184, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1819621796 - }, - "m_pvpCurrencyCost": { - "type": "int", - "id": 25, - "offset": 444, - "flags": 7, + "hash": 1747016318 + } + } + }, + "1875206895": { + "name": "class ClientTreasureBookBehavior*", + "bases": [ + "TreasureBookBehavior", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1875206895, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 645595444 + "hash": 223437287 }, - "m_pvpTourneyCurrencyCost": { - "type": "int", - "id": 26, - "offset": 448, + "m_spellList": { + "type": "class SharedPointer", + "id": 1, + "offset": 120, + "flags": 27, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2181913740 + } + } + }, + "596467251": { + "name": "class HousingSignBehaviorTemplate*", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 596467251, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 517874954 + "hash": 3130754092 }, - "m_rank": { - "type": "int", - "id": 27, - "offset": 424, + "m_materialName": { + "type": "std::string", + "id": 1, + "offset": 120, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 219803942 + "hash": 1878140043 }, - "m_boyIconIndex": { - "type": "int", - "id": 28, - "offset": 452, + "m_red": { + "type": "float", + "id": 2, + "offset": 152, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 802140453 + "hash": 357248818 }, - "m_girlIconIndex": { - "type": "int", - "id": 29, - "offset": 456, + "m_green": { + "type": "float", + "id": 3, + "offset": 156, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 832706793 + "hash": 886005576 }, - "m_leashOffsetOverride": { - "type": "class SharedPointer", - "id": 30, - "offset": 464, + "m_blue": { + "type": "float", + "id": 4, + "offset": 160, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1692586788 + "pointer": false, + "hash": 309442303 }, - "m_rarity": { - "type": "enum RarityType", - "id": 31, - "offset": 460, - "flags": 2097159, + "m_hasShadow": { + "type": "bool", + "id": 5, + "offset": 164, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2253792108, - "enum_options": { - "RT_COMMON": 0, - "RT_UNCOMMON": 1, - "RT_RARE": 2, - "RT_ULTRARARE": 3, - "RT_EPIC": 4 - } + "hash": 1762388821 }, - "m_iconIndex": { - "type": "int", - "id": 32, - "offset": 480, + "m_animate": { + "type": "bool", + "id": 6, + "offset": 165, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1053730811 + "hash": 1790956978 }, - "m_imageName": { + "m_defaultSignText": { "type": "std::string", - "id": 33, - "offset": 488, - "flags": 131079, + "id": 7, + "offset": 168, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2391520543 + "hash": 3351101718 } } }, - "1681661245": { - "name": "class SharedPointer", + "1022345450": { + "name": "class SharedPointer", "bases": [ - "ActorCinematicAction", - "CinematicAction", + "PlayerStatueBlob", "PropertyClass" ], - "hash": 1681661245, + "hash": 1022345450, "properties": { - "m_timeOffset": { - "type": "float", + "m_packedName": { + "type": "std::string", "id": 0, "offset": 72, - "flags": 7, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 + "hash": 1805208228 }, - "m_actor": { + "m_characterBuffer": { "type": "std::string", "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - } - } - }, - "2097041168": { - "name": "class ClientServerSyncCinematicAction*", - "bases": [ - "ServerSyncCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 2097041168, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, + "offset": 104, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 + "hash": 1972275298 }, - "m_eventToSend": { + "m_equipmentBuffer": { "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, + "id": 2, + "offset": 136, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1564059786 - } - } - }, - "1682081495": { - "name": "class WizardAutobotQuestManager*", - "bases": [ - "AutobotQuestManager", - "PropertyClass" - ], - "hash": 1682081495, - "properties": {} - }, - "2096911695": { - "name": "class RemoveTeamUpdate*", - "bases": [ - "TournamentUpdate", - "PropertyClass" - ], - "hash": 2096911695, - "properties": { - "m_teamID": { - "type": "gid", - "id": 0, - "offset": 72, + "hash": 1511030957 + }, + "m_emoteID": { + "type": "unsigned int", + "id": 3, + "offset": 168, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 982102220 + "hash": 691533780 } } }, - "914561571": { - "name": "class GraphicalGold", + "1445383290": { + "name": "class TeleportToNodeClient*", "bases": [ - "GraphicalSpell", - "Spell", + "TeleportToNode", + "PathBehaviorTemplate::Action", "PropertyClass" ], - "hash": 914561571, + "hash": 1445383290, "properties": { - "m_templateID": { - "type": "unsigned int", + "m_nPathID": { + "type": "gid", "id": 0, - "offset": 128, - "flags": 31, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1286746870 + "hash": 214382368 }, - "m_enchantment": { - "type": "unsigned int", + "m_nNodeID": { + "type": "int", "id": 1, "offset": 80, - "flags": 31, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2217886818 + "hash": 152152635, + "enum_options": { + "__DEFAULT": 4294967295 + } }, - "m_pipCost": { - "type": "class SharedPointer", + "m_nPriority": { + "type": "int", "id": 2, - "offset": 176, + "offset": 84, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3605704820 + "pointer": false, + "hash": 1515251530, + "enum_options": { + "__DEFAULT": 100 + } }, - "m_regularAdjust": { + "m_nChance": { "type": "int", "id": 3, - "offset": 192, - "flags": 31, + "offset": 88, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1420453335 + "hash": 1860748394, + "enum_options": { + "__DEFAULT": 50 + } }, - "m_magicSchoolID": { - "type": "unsigned int", + "m_nDestinationNodeID": { + "type": "int", "id": 4, - "offset": 136, + "offset": 96, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 893146499 + "hash": 44784029 }, - "m_accuracy": { - "type": "unsigned char", + "m_bContinuePathing": { + "type": "bool", "id": 5, - "offset": 132, + "offset": 100, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2273914939 - }, - "m_treasureCard": { - "type": "bool", - "id": 6, - "offset": 197, - "flags": 31, + "hash": 2053386917 + } + } + }, + "1445383250": { + "name": "class TeleportToNodeClient", + "bases": [ + "TeleportToNode", + "PathBehaviorTemplate::Action", + "PropertyClass" + ], + "hash": 1445383250, + "properties": { + "m_nPathID": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1764879128 + "hash": 214382368 }, - "m_battleCard": { - "type": "bool", - "id": 7, - "offset": 198, - "flags": 31, + "m_nNodeID": { + "type": "int", + "id": 1, + "offset": 80, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1332843753 + "hash": 152152635, + "enum_options": { + "__DEFAULT": 4294967295 + } }, - "m_itemCard": { - "type": "bool", - "id": 8, - "offset": 199, + "m_nPriority": { + "type": "int", + "id": 2, + "offset": 84, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1683654300 + "hash": 1515251530, + "enum_options": { + "__DEFAULT": 100 + } }, - "m_sideBoard": { - "type": "bool", - "id": 9, - "offset": 200, + "m_nChance": { + "type": "int", + "id": 3, + "offset": 88, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1897838368 + "hash": 1860748394, + "enum_options": { + "__DEFAULT": 50 + } }, - "m_spellID": { - "type": "unsigned int", - "id": 10, - "offset": 204, - "flags": 31, + "m_nDestinationNodeID": { + "type": "int", + "id": 4, + "offset": 96, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1697483258 + "hash": 44784029 }, - "m_leavesPlayWhenCastOverride": { + "m_bContinuePathing": { "type": "bool", - "id": 11, - "offset": 216, - "flags": 31, + "id": 5, + "offset": 100, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 874407398 - }, - "m_cloaked": { - "type": "bool", - "id": 12, - "offset": 196, + "hash": 2053386917 + } + } + }, + "1445192435": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1445192435, + "properties": { + "m_blobDefinitionList": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 7349510 - }, - "m_enchantmentSpellIsItemCard": { - "type": "bool", - "id": 13, - "offset": 76, - "flags": 31, + "pointer": true, + "hash": 2267613747 + } + } + }, + "1876166932": { + "name": "class DynaModShowObject*", + "bases": [ + "DynaMod", + "PropertyClass" + ], + "hash": 1876166932, + "properties": { + "m_clientTag": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 531590701 + "hash": 3409856790 }, - "m_premutationSpellID": { - "type": "unsigned int", - "id": 14, + "m_zoneName": { + "type": "std::string", + "id": 1, "offset": 112, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1530256370 - }, - "m_enchantedThisCombat": { - "type": "bool", - "id": 15, - "offset": 77, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1895738923 - }, - "m_paramOverrides": { - "type": "class SharedPointer", - "id": 16, - "offset": 224, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2061635599 - }, - "m_subEffectMeta": { - "type": "class SharedPointer", - "id": 17, - "offset": 240, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1944101106 - }, - "m_delayEnchantment": { - "type": "bool", - "id": 18, - "offset": 257, - "flags": 287, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 191336919 + "hash": 2171167736 }, - "m_PvE": { - "type": "bool", - "id": 19, - "offset": 264, - "flags": 287, + "m_zoneInstance": { + "type": "gid", + "id": 2, + "offset": 152, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 269492350 + "hash": 449538121 }, - "m_delayEnchantmentOrder": { - "type": "enum SpellEffect::kDelayOrder", - "id": 20, + "m_originator": { + "type": "gid", + "id": 3, "offset": 72, - "flags": 287, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2526055263, - "enum_options": { - "SpellEffect::kAnyOrder": 0, - "SpellEffect::kFirst": 1, - "SpellEffect::kSecond": 2 - } + "hash": 709051254 }, - "m_roundAddedTC": { + "m_index": { "type": "int", - "id": 21, - "offset": 260, - "flags": 31, + "id": 4, + "offset": 160, + "flags": 30, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 112365451 + "hash": 798031442 }, - "m_secondarySchoolID": { + "m_zoneID": { "type": "unsigned int", - "id": 22, - "offset": 304, - "flags": 7, + "id": 5, + "offset": 144, + "flags": 16, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2081206026 + "hash": 1440651126 } } }, - "2096781544": { - "name": "class SharedPointer", + "597222636": { + "name": "class SharedPointer", "bases": [ + "WidgetBackground", "PropertyClass" ], - "hash": 2096781544, + "hash": 597222636, "properties": { - "m_level": { - "type": "int", + "m_fBackgroundAlpha": { + "type": "float", "id": 0, "offset": 72, - "flags": 31, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 801285362 + "hash": 1164086307 }, - "m_school": { - "type": "unsigned int", + "m_pTopLeftBackgroundAlphaMask": { + "type": "class SharedPointer", "id": 1, - "offset": 76, - "flags": 31, + "offset": 80, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1152268885 + "pointer": true, + "hash": 2652729643 }, - "m_gender": { - "type": "int", + "m_pTopRightBackgroundAlphaMask": { + "type": "class SharedPointer", "id": 2, - "offset": 80, - "flags": 31, + "offset": 96, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 473816879 + "pointer": true, + "hash": 2236264926 }, - "m_nameKeys": { - "type": "unsigned int", + "m_pBottomLeftBackgroundAlphaMask": { + "type": "class SharedPointer", "id": 3, - "offset": 84, - "flags": 31, + "offset": 112, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1772225898 + "pointer": true, + "hash": 3301927117 }, - "m_badge": { - "type": "std::string", + "m_pBottomRightBackgroundAlphaMask": { + "type": "class SharedPointer", "id": 4, - "offset": 88, - "flags": 63, + "offset": 128, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 2286962478 + "pointer": true, + "hash": 2184945088 }, - "m_pCharacterBehavior": { - "type": "class SharedPointer", + "m_pBottomBackgroundAlphaMask": { + "type": "class SharedPointer", "id": 5, - "offset": 120, - "flags": 31, + "offset": 144, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": true, - "hash": 2724673923 + "hash": 2408122274 }, - "m_pEquipment": { - "type": "class SharedPointer", + "m_pTopBackgroundAlphaMask": { + "type": "class SharedPointer", "id": 6, - "offset": 136, - "flags": 31, + "offset": 160, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": true, - "hash": 2473540161 + "hash": 3440742656 }, - "m_pStats": { - "type": "class SharedPointer", + "m_pLeftBackgroundAlphaMask": { + "type": "class SharedPointer", "id": 7, - "offset": 152, - "flags": 31, + "offset": 176, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": true, - "hash": 2212894623 + "hash": 2348634648 }, - "m_pGameEffects": { - "type": "class SharedPointer", + "m_pRightBackgroundAlphaMask": { + "type": "class SharedPointer", "id": 8, - "offset": 168, - "flags": 31, + "offset": 192, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": true, - "hash": 1557857436 + "hash": 2938548331 }, - "m_petTID": { - "type": "unsigned int", + "m_pCenterBackgroundAlphaMask": { + "type": "class SharedPointer", "id": 9, - "offset": 200, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1037635095 - }, - "m_pPetBehavior": { - "type": "class SharedPointer", - "id": 10, "offset": 208, - "flags": 31, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": true, - "hash": 2663493503 + "hash": 3347258414 }, - "m_pPetJewels": { - "type": "class SharedPointer", - "id": 11, + "m_TopLeftColor": { + "type": "class Color", + "id": 10, "offset": 224, - "flags": 31, + "flags": 262151, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 733229991 - } - } - }, - "914342921": { - "name": "class HatchmakingPetsList*", - "bases": [ - "PropertyClass" - ], - "hash": 914342921, - "properties": { - "m_hatchmakingPetsList": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2100166473 + "pointer": false, + "hash": 2827413723 }, - "m_disableKiosk": { - "type": "bool", - "id": 1, - "offset": 88, - "flags": 7, + "m_TopRightColor": { + "type": "class Color", + "id": 11, + "offset": 228, + "flags": 262151, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1561191592 + "hash": 1853016654 }, - "m_disableOffer": { - "type": "bool", - "id": 2, - "offset": 89, - "flags": 7, + "m_BottomLeftColor": { + "type": "class Color", + "id": 12, + "offset": 232, + "flags": 262151, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1565817209 + "hash": 1172117245 }, - "m_premiumPetExceptionCode": { - "type": "unsigned int", - "id": 3, - "offset": 92, - "flags": 7, + "m_BottomRightColor": { + "type": "class Color", + "id": 13, + "offset": 236, + "flags": 262151, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2278118367 + "hash": 3062807728 } } }, - "914254483": { - "name": "class SharedPointer", + "1022686164": { + "name": "class SharedPointer", "bases": [ - "HelpChatOperator", "PropertyClass" ], - "hash": 914254483, + "hash": 1022686164, "properties": { - "m_rootElement": { - "type": "class HelpChatElement", + "m_ownerGID": { + "type": "gid", "id": 0, "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1765087575 + }, + "m_essencesCollected": { + "type": "int", + "id": 1, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1632116450 + }, + "m_templateID": { + "type": "unsigned int", + "id": 2, + "offset": 84, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2242085258 + "hash": 1286746870 } } }, - "1684588690": { - "name": "class BoosterPackCrownsOption*", + "596598143": { + "name": "class ControlDraw", "bases": [ - "ServiceOptionBase", + "Window", "PropertyClass" ], - "hash": 1684588690, + "hash": 596598143, "properties": { - "m_serviceName": { + "m_sName": { "type": "std::string", "id": 0, - "offset": 72, - "flags": 31, + "offset": 80, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2206028813 + "hash": 2306437263 }, - "m_iconKey": { - "type": "std::string", + "m_Children": { + "type": "class SharedPointer", "id": 1, - "offset": 168, - "flags": 31, - "container": "Static", - "dynamic": false, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 2457138637 + "pointer": true, + "hash": 2621225959 }, - "m_displayKey": { - "type": "std::string", + "m_Style": { + "type": "unsigned int", "id": 2, - "offset": 104, - "flags": 31, + "offset": 152, + "flags": 1048583, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3023276954 + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "SCALE_CHILDREN": 2, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "FOCUS_LOCKED": 64, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152 + } }, - "m_serviceIndex": { + "m_Flags": { "type": "unsigned int", "id": 3, - "offset": 204, - "flags": 31, + "offset": 156, + "flags": 1048583, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2103126710 + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } }, - "m_forceInteract": { - "type": "bool", + "m_Window": { + "type": "class Rect", "id": 4, - "offset": 200, - "flags": 31, + "offset": 160, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1705789564 - } - } - }, - "1683420191": { - "name": "class PetTomeBehaviorBase", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1683420191, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, + "hash": 3105139380 + }, + "m_fTargetAlpha": { + "type": "float", + "id": 5, + "offset": 212, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 + "hash": 1809129834 }, - "m_petData": { + "m_fDisabledAlpha": { + "type": "float", + "id": 6, + "offset": 216, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1389987675 + }, + "m_fAlpha": { + "type": "float", + "id": 7, + "offset": 208, + "flags": 65671, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 482130755 + }, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3623628394 + }, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2102211316 + }, + "m_sScript": { "type": "std::string", - "id": 1, - "offset": 144, - "flags": 551, + "id": 10, + "offset": 352, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2990195294 - } - } - }, - "1682532215": { - "name": "class AvatarItemInfoList*", - "bases": [ - "PropertyClass" - ], - "hash": 1682532215, - "properties": { - "m_itemInfoList": { - "type": "class AvatarItemInfoBase*", - "id": 0, - "offset": 72, - "flags": 7, + "hash": 1846695875 + }, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3389835433 + }, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547159940 + }, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513510520 + }, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, "container": "List", "dynamic": true, "singleton": false, - "pointer": true, - "hash": 3137169759 + "pointer": false, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3091503757 + }, + "m_Markers": { + "type": "class ControlDraw::GesturePoint", + "id": 16, + "offset": 592, + "flags": 135, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2001006042 + }, + "m_RefPoints": { + "type": "class ControlDraw::GesturePoint", + "id": 17, + "offset": 616, + "flags": 135, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1442006431 + }, + "m_LineList": { + "type": "class ControlDraw::Line", + "id": 18, + "offset": 664, + "flags": 135, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2941180014 } } }, - "2097695834": { - "name": "class HousingWaterManager*", - "bases": [ - "PropertyClass" - ], - "hash": 2097695834, - "properties": {} - }, - "914357476": { - "name": "class ObstacleCourseRevolvingDoorBehaviorTemplate", + "1876410993": { + "name": "class ActiveClassProject*", "bases": [ - "ObstacleCourseObstacleBehaviorTemplate", - "BehaviorTemplate", "PropertyClass" ], - "hash": 914357476, + "hash": 1876410993, "properties": { - "m_behaviorName": { - "type": "std::string", + "m_goalCount": { + "type": "int", "id": 0, "offset": 72, "flags": 7, @@ -11491,1090 +11467,1099 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 3130754092 + "hash": 774266758 }, - "m_startAngle": { - "type": "float", + "m_projectID": { + "type": "unsigned int", "id": 1, - "offset": 120, + "offset": 76, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 737826060 + "hash": 1263221425 }, - "m_angularVelocity": { - "type": "float", + "m_displayMultiplier": { + "type": "int", "id": 2, - "offset": 124, + "offset": 96, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 412636784 + "hash": 239852119 }, - "m_radius": { - "type": "float", + "m_endTime": { + "type": "unsigned int", "id": 3, - "offset": 128, + "offset": 100, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 989410271 + "hash": 716479635 }, - "m_innerRadius": { - "type": "float", + "m_currentDay": { + "type": "unsigned int", "id": 4, - "offset": 132, + "offset": 104, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 686816091 + "hash": 2006571726 }, - "m_nearMissRange": { - "type": "float", + "m_multiplier": { + "type": "int", "id": 5, - "offset": 136, + "offset": 108, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2005992806 + "hash": 759714273 }, - "m_nearMissAngleOffset": { - "type": "float", + "m_isEnding": { + "type": "bool", "id": 6, - "offset": 140, + "offset": 112, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2062603911 + "hash": 1289717828 }, - "m_walls": { - "type": "class Vector3D", + "m_parameter": { + "type": "std::string", "id": 7, - "offset": 144, + "offset": 120, "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2471997733 - } - } - }, - "1682216425": { - "name": "class SharedPointer", - "bases": [ - "Requirement", - "PropertyClass" - ], - "hash": 1682216425, - "properties": { - "m_applyNOT": { - "type": "bool", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1746328074, - "enum_options": { - "__DEFAULT": 0 - } - }, - "m_operator": { - "type": "enum Requirement::Operator", - "id": 1, - "offset": 76, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2672792317, - "enum_options": { - "ROP_AND": 0, - "ROP_OR": 1, - "__DEFAULT": "ROP_AND" - } - } - } - }, - "2097075535": { - "name": "class RemoveTeamUpdate", - "bases": [ - "TournamentUpdate", - "PropertyClass" - ], - "hash": 2097075535, - "properties": { - "m_teamID": { - "type": "gid", - "id": 0, - "offset": 72, - "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 982102220 + "hash": 3122239292 } } }, - "914561576": { - "name": "class GraphicalGold*", + "1024574928": { + "name": "class ControlSprite", "bases": [ - "GraphicalSpell", - "Spell", + "Window", "PropertyClass" ], - "hash": 914561576, + "hash": 1024574928, "properties": { - "m_templateID": { - "type": "unsigned int", + "m_sName": { + "type": "std::string", "id": 0, - "offset": 128, - "flags": 31, + "offset": 80, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1286746870 + "hash": 2306437263 }, - "m_enchantment": { - "type": "unsigned int", + "m_Children": { + "type": "class SharedPointer", "id": 1, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 2217886818 + "pointer": true, + "hash": 2621225959 }, - "m_pipCost": { - "type": "class SharedPointer", + "m_Style": { + "type": "unsigned int", "id": 2, - "offset": 176, - "flags": 7, + "offset": 152, + "flags": 1048583, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3605704820 + "pointer": false, + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "SCALE_CHILDREN": 2, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "FOCUS_LOCKED": 64, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152 + } }, - "m_regularAdjust": { - "type": "int", + "m_Flags": { + "type": "unsigned int", "id": 3, - "offset": 192, - "flags": 31, + "offset": 156, + "flags": 1048583, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1420453335 + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648, + "ONE_SHOT": 8388608, + "FLIPPED_HORIZONTAL": 16777216, + "FLIPPED_VERTICAL": 33554432 + } }, - "m_magicSchoolID": { - "type": "unsigned int", + "m_Window": { + "type": "class Rect", "id": 4, - "offset": 136, - "flags": 7, + "offset": 160, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 893146499 + "hash": 3105139380 }, - "m_accuracy": { - "type": "unsigned char", + "m_fTargetAlpha": { + "type": "float", "id": 5, - "offset": 132, - "flags": 7, + "offset": 212, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2273914939 + "hash": 1809129834 }, - "m_treasureCard": { - "type": "bool", + "m_fDisabledAlpha": { + "type": "float", "id": 6, - "offset": 197, - "flags": 31, + "offset": 216, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1764879128 + "hash": 1389987675 }, - "m_battleCard": { - "type": "bool", + "m_fAlpha": { + "type": "float", "id": 7, - "offset": 198, - "flags": 31, + "offset": 208, + "flags": 65671, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1332843753 + "hash": 482130755 }, - "m_itemCard": { - "type": "bool", + "m_pWindowStyle": { + "type": "class SharedPointer", "id": 8, - "offset": 199, - "flags": 7, + "offset": 232, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1683654300 + "pointer": true, + "hash": 3623628394 }, - "m_sideBoard": { - "type": "bool", + "m_sHelp": { + "type": "std::wstring", "id": 9, - "offset": 200, - "flags": 7, + "offset": 248, + "flags": 4194439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1897838368 + "hash": 2102211316 }, - "m_spellID": { - "type": "unsigned int", + "m_sScript": { + "type": "std::string", "id": 10, - "offset": 204, - "flags": 31, + "offset": 352, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1697483258 + "hash": 1846695875 }, - "m_leavesPlayWhenCastOverride": { - "type": "bool", + "m_Offset": { + "type": "class Point", "id": 11, - "offset": 216, - "flags": 31, + "offset": 192, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 874407398 + "hash": 3389835433 }, - "m_cloaked": { - "type": "bool", + "m_Scale": { + "type": "class Point", "id": 12, - "offset": 196, - "flags": 7, + "offset": 200, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 7349510 + "hash": 2547159940 }, - "m_enchantmentSpellIsItemCard": { - "type": "bool", + "m_sTip": { + "type": "std::wstring", "id": 13, - "offset": 76, - "flags": 31, + "offset": 392, + "flags": 4194439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 531590701 + "hash": 1513510520 }, - "m_premutationSpellID": { - "type": "unsigned int", + "m_BubbleList": { + "type": "class WindowBubble", "id": 14, - "offset": 112, - "flags": 31, - "container": "Static", - "dynamic": false, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 1530256370 + "hash": 2587533771 }, - "m_enchantedThisCombat": { - "type": "bool", + "m_ParentOffset": { + "type": "class Rect", "id": 15, - "offset": 77, - "flags": 31, + "offset": 176, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1895738923 + "hash": 3091503757 }, - "m_paramOverrides": { - "type": "class SharedPointer", + "m_pMaterial": { + "type": "class SharedPointer", "id": 16, - "offset": 224, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2061635599 - }, - "m_subEffectMeta": { - "type": "class SharedPointer", - "id": 17, - "offset": 240, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1944101106 - }, - "m_delayEnchantment": { - "type": "bool", - "id": 18, - "offset": 257, - "flags": 287, + "offset": 592, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 191336919 + "pointer": true, + "hash": 3479277078 }, - "m_PvE": { - "type": "bool", - "id": 19, - "offset": 264, - "flags": 287, + "m_fRotation": { + "type": "float", + "id": 17, + "offset": 608, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 269492350 + "hash": 1175400173 }, - "m_delayEnchantmentOrder": { - "type": "enum SpellEffect::kDelayOrder", - "id": 20, - "offset": 72, - "flags": 287, + "m_Color": { + "type": "class Color", + "id": 18, + "offset": 584, + "flags": 262279, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2526055263, - "enum_options": { - "SpellEffect::kAnyOrder": 0, - "SpellEffect::kFirst": 1, - "SpellEffect::kSecond": 2 - } + "hash": 1753714077 }, - "m_roundAddedTC": { - "type": "int", - "id": 21, - "offset": 260, - "flags": 31, + "m_textColor": { + "type": "class Color", + "id": 19, + "offset": 612, + "flags": 262279, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 112365451 + "hash": 2528109250 }, - "m_secondarySchoolID": { - "type": "unsigned int", - "id": 22, - "offset": 304, - "flags": 7, + "m_textComponent": { + "type": "class TextComponent", + "id": 20, + "offset": 616, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2081206026 + "hash": 3491704390 } } }, - "2099482363": { - "name": "class SharedPointer", + "1445719610": { + "name": "class SharedPointer", "bases": [ - "WizClientLeashedObject", - "WizClientObject", - "ClientObject", - "CoreObject", + "Window", "PropertyClass" ], - "hash": 2099482363, + "hash": 1445719610, "properties": { - "m_inactiveBehaviors": { - "type": "class SharedPointer", + "m_sName": { + "type": "std::string", "id": 0, - "offset": 224, - "flags": 31, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1850812559 - }, - "m_globalID.m_full": { - "type": "unsigned __int64", - "id": 1, - "offset": 72, - "flags": 16777247, + "offset": 80, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2312465444 + "hash": 2306437263 }, - "m_permID": { - "type": "unsigned __int64", + "m_Children": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621225959 + }, + "m_Style": { + "type": "unsigned int", "id": 2, - "offset": 80, - "flags": 16777247, + "offset": 152, + "flags": 1048583, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1298909658 + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "SCALE_CHILDREN": 2, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "FOCUS_LOCKED": 64, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152 + } }, - "m_location": { - "type": "class Vector3D", + "m_Flags": { + "type": "unsigned int", "id": 3, - "offset": 168, - "flags": 31, + "offset": 156, + "flags": 1048583, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2239683611 + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } }, - "m_orientation": { - "type": "class Vector3D", + "m_Window": { + "type": "class Rect", "id": 4, - "offset": 180, - "flags": 31, + "offset": 160, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2344058766 + "hash": 3105139380 }, - "m_fScale": { + "m_fTargetAlpha": { "type": "float", "id": 5, - "offset": 196, - "flags": 31, + "offset": 212, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 503137701 + "hash": 1809129834 }, - "m_templateID.m_full": { - "type": "unsigned __int64", + "m_fDisabledAlpha": { + "type": "float", "id": 6, - "offset": 96, - "flags": 31, + "offset": 216, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 633907631 + "hash": 1389987675 }, - "m_debugName": { - "type": "std::string", + "m_fAlpha": { + "type": "float", "id": 7, - "offset": 104, - "flags": 31, + "offset": 208, + "flags": 65671, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3553984419 + "hash": 482130755 }, - "m_displayKey": { - "type": "std::string", + "m_pWindowStyle": { + "type": "class SharedPointer", "id": 8, - "offset": 136, - "flags": 31, + "offset": 232, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 3023276954 + "pointer": true, + "hash": 3623628394 }, - "m_zoneTagID": { - "type": "unsigned int", + "m_sHelp": { + "type": "std::wstring", "id": 9, - "offset": 344, - "flags": 31, + "offset": 248, + "flags": 4194439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 965291410 + "hash": 2102211316 }, - "m_speedMultiplier": { - "type": "short", + "m_sScript": { + "type": "std::string", "id": 10, - "offset": 192, - "flags": 31, + "offset": 352, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 123130076 + "hash": 1846695875 }, - "m_nMobileID": { - "type": "unsigned short", + "m_Offset": { + "type": "class Point", "id": 11, - "offset": 194, - "flags": 31, + "offset": 192, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1054318939 + "hash": 3389835433 }, - "m_characterId": { - "type": "gid", + "m_Scale": { + "type": "class Point", "id": 12, - "offset": 440, - "flags": 31, + "offset": 200, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 210498418 + "hash": 2547159940 }, - "m_gameStats": { - "type": "class WizGameStats*", + "m_sTip": { + "type": "std::wstring", "id": 13, - "offset": 544, - "flags": 27, + "offset": 392, + "flags": 4194439, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3194480406 + "pointer": false, + "hash": 1513510520 }, - "m_leashed": { - "type": "bool", + "m_BubbleList": { + "type": "class WindowBubble", "id": 14, - "offset": 576, - "flags": 31, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 603235945 + "hash": 3091503757 } } }, - "1684006729": { - "name": "class std::list >", - "bases": [], - "hash": 1684006729, - "properties": {} - }, - "945970905": { - "name": "class AdvPvPEloRecord", + "597500419": { + "name": "class ControlZone", "bases": [ + "Window", "PropertyClass" ], - "hash": 945970905, + "hash": 597500419, "properties": { - "m_eloRecordID": { - "type": "gid", + "m_sName": { + "type": "std::string", "id": 0, - "offset": 72, - "flags": 16777279, + "offset": 80, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 832082468 + "hash": 2306437263 }, - "m_leagueID": { - "type": "unsigned int", + "m_Children": { + "type": "class SharedPointer", "id": 1, - "offset": 80, - "flags": 33554495, - "container": "Static", - "dynamic": false, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 692361645 + "pointer": true, + "hash": 2621225959 }, - "m_seasonID": { + "m_Style": { "type": "unsigned int", "id": 2, - "offset": 84, - "flags": 33554495, + "offset": 152, + "flags": 1048583, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 535260643 + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "SCALE_CHILDREN": 2, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "FOCUS_LOCKED": 64, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152 + } }, - "m_startTime": { + "m_Flags": { "type": "unsigned int", "id": 3, - "offset": 88, - "flags": 33554495, + "offset": 156, + "flags": 1048583, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1598371274 + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } }, - "m_ended": { - "type": "bool", + "m_Window": { + "type": "class Rect", "id": 4, - "offset": 92, - "flags": 33554495, + "offset": 160, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 795768915 + "hash": 3105139380 }, - "m_elo": { - "type": "int", + "m_fTargetAlpha": { + "type": "float", "id": 5, - "offset": 96, - "flags": 33554495, + "offset": 212, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 267033754 + "hash": 1809129834 }, - "m_rankIndex": { - "type": "int", + "m_fDisabledAlpha": { + "type": "float", "id": 6, - "offset": 100, - "flags": 33554495, + "offset": 216, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 716259486 + "hash": 1389987675 }, - "m_wins": { - "type": "int", + "m_fAlpha": { + "type": "float", "id": 7, - "offset": 104, - "flags": 33554495, + "offset": 208, + "flags": 65671, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 219992347 + "hash": 482130755 }, - "m_losses": { - "type": "int", + "m_pWindowStyle": { + "type": "class SharedPointer", "id": 8, - "offset": 108, - "flags": 33554495, + "offset": 232, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 681549075 + "pointer": true, + "hash": 3623628394 }, - "m_draws": { - "type": "int", + "m_sHelp": { + "type": "std::wstring", "id": 9, - "offset": 112, - "flags": 33554495, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 792242907 - } - } - }, - "1684462284": { - "name": "class ActiveTimedAccessPassList", - "bases": [ - "PropertyClass" - ], - "hash": 1684462284, - "properties": { - "m_passList": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1599562628 - } - } - }, - "2101799980": { - "name": "class WishlistItemInfo", - "bases": [ - "PropertyClass" - ], - "hash": 2101799980, - "properties": { - "m_templateID": { - "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 33554495, + "offset": 248, + "flags": 4194439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1286746870 + "hash": 2102211316 }, - "m_keepOnWishlistAfterPurchase": { - "type": "unsigned short", - "id": 1, - "offset": 76, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1244445710 - } - } - }, - "933991129": { - "name": "class RatingInfo", - "bases": [ - "PropertyClass" - ], - "hash": 933991129, - "properties": { - "m_name": { + "m_sScript": { "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, + "id": 10, + "offset": 352, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1717359772 + "hash": 1846695875 }, - "m_minScore": { - "type": "int", - "id": 1, - "offset": 104, - "flags": 7, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1505040890 + "hash": 3389835433 }, - "m_maxScore": { - "type": "int", - "id": 2, - "offset": 108, - "flags": 7, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 154585660 + "hash": 2547159940 }, - "m_pvpIcon": { - "type": "std::string", - "id": 3, - "offset": 112, - "flags": 131079, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1503451354 + "hash": 1513510520 }, - "m_petIcon": { - "type": "std::string", - "id": 4, - "offset": 144, - "flags": 131079, - "container": "Static", - "dynamic": false, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 2990377005 - } - } - }, - "2101762018": { - "name": "class Texture", - "bases": [ - "PropertyClass" - ], - "hash": 2101762018, - "properties": { - "m_sFilename": { - "type": "std::string", - "id": 0, - "offset": 104, - "flags": 131207, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2431512111 + "hash": 3091503757 }, - "m_bAlphaChannel": { + "m_bButtonDown": { "type": "bool", - "id": 1, - "offset": 137, + "id": 16, + "offset": 584, "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1780697684 + "hash": 840041705 }, - "m_bDoubleSided": { + "m_bCursorOver": { "type": "bool", - "id": 2, - "offset": 138, + "id": 17, + "offset": 585, "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1054874233 + "hash": 283981103 }, - "m_bMipMap": { + "m_bSavedCursorOver": { "type": "bool", - "id": 3, - "offset": 139, + "id": 18, + "offset": 586, "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1791042393 + "hash": 1803318978 } } }, - "922685391": { - "name": "class PotionShopOption", + "1023954011": { + "name": "class HousingWaterManager", "bases": [ - "ServiceOptionBase", "PropertyClass" ], - "hash": 922685391, + "hash": 1023954011, + "properties": {} + }, + "1023541332": { + "name": "class SharedPointer", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1023541332, "properties": { - "m_serviceName": { - "type": "std::string", + "m_behaviorTemplateNameID": { + "type": "unsigned int", "id": 0, - "offset": 72, - "flags": 31, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2206028813 - }, - "m_iconKey": { + "hash": 223437287 + } + } + }, + "1877118311": { + "name": "class ZoneTokenCountControl*", + "bases": [ + "ZoneTokenBaseControl", + "Window", + "PropertyClass" + ], + "hash": 1877118311, + "properties": { + "m_sName": { "type": "std::string", - "id": 1, - "offset": 168, - "flags": 31, + "id": 0, + "offset": 80, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2457138637 + "hash": 2306437263 }, - "m_displayKey": { - "type": "std::string", + "m_Children": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621225959 + }, + "m_Style": { + "type": "unsigned int", "id": 2, - "offset": 104, - "flags": 31, + "offset": 152, + "flags": 1048583, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3023276954 + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "SCALE_CHILDREN": 2, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "FOCUS_LOCKED": 64, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152 + } }, - "m_serviceIndex": { + "m_Flags": { "type": "unsigned int", "id": 3, - "offset": 204, - "flags": 31, + "offset": 156, + "flags": 1048583, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2103126710 + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } }, - "m_forceInteract": { - "type": "bool", + "m_Window": { + "type": "class Rect", "id": 4, - "offset": 200, - "flags": 31, + "offset": 160, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1705789564 - } - } - }, - "2100620697": { - "name": "class MaxHealthLootInfo", - "bases": [ - "LootInfo", - "LootInfoBase", - "PropertyClass" - ], - "hash": 2100620697, - "properties": { - "m_lootType": { - "type": "enum LootInfo::LOOT_TYPE", - "id": 0, - "offset": 72, - "flags": 2097183, + "hash": 3105139380 + }, + "m_fTargetAlpha": { + "type": "float", + "id": 5, + "offset": 212, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1591891442, - "enum_options": { - "LOOT_TYPE_NONE": 0, - "LOOT_TYPE_GOLD": 1, - "LOOT_TYPE_MANA": 2, - "LOOT_TYPE_ITEM": 3, - "LOOT_TYPE_TREASURE_CARD": 4, - "LOOT_TYPE_MAGIC_XP": 5, - "LOOT_TYPE_ADD_SPELL": 6, - "LOOT_TYPE_MAX_HEALTH": 7, - "LOOT_TYPE_MAX_GOLD": 8, - "LOOT_TYPE_MAX_MANA": 9, - "LOOT_TYPE_MAX_POTION": 10, - "LOOT_TYPE_TRAINING_POINTS": 11, - "LOOT_TYPE_RECIPE": 12, - "LOOT_TYPE_CRAFTING_SLOT": 13, - "LOOT_TYPE_REAGENT": 14, - "LOOT_TYPE_PETSNACK": 15, - "LOOT_TYPE_GARDENING_XP": 16, - "LOOT_TYPE_PET_XP": 17, - "LOOT_TYPE_TREASURE_TABLE": 18, - "LOOT_TYPE_ARENA_POINTS": 19, - "LOOT_TYPE_ARENA_BONUS_POINTS": 20, - "LOOT_TYPE_GROUP": 21, - "LOOT_TYPE_FISHING_XP": 22, - "LOOT_TYPE_EVENT_CURRENCY_1": 24, - "LOOT_TYPE_EVENT_CURRENCY_2": 25, - "LOOT_TYPE_PVP_CURRENCY": 26, - "LOOT_TYPE_PVP_CURRENCY_BONUS": 27, - "LOOT_TYPE_PVP_TOURNEY_CURRENCY": 28, - "LOOT_TYPE_PVP_TOURNEY_CURRENCY_BONUS": 29, - "LOOT_TYPE_FURNITURE_ESSENCE": 30 - } + "hash": 1809129834 }, - "m_healthToAdd": { - "type": "int", - "id": 1, - "offset": 80, - "flags": 31, + "m_fDisabledAlpha": { + "type": "float", + "id": 6, + "offset": 216, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1370421596 - } - } - }, - "919348809": { - "name": "class SharedPointer", - "bases": [ - "ServiceOptionBase", - "PropertyClass" - ], - "hash": 919348809, - "properties": { - "m_serviceName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, + "hash": 1389987675 + }, + "m_fAlpha": { + "type": "float", + "id": 7, + "offset": 208, + "flags": 65671, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2206028813 + "hash": 482130755 }, - "m_iconKey": { - "type": "std::string", - "id": 1, - "offset": 168, - "flags": 31, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3623628394 + }, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2457138637 + "hash": 2102211316 }, - "m_displayKey": { + "m_sScript": { "type": "std::string", - "id": 2, - "offset": 104, - "flags": 31, + "id": 10, + "offset": 352, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3023276954 + "hash": 1846695875 }, - "m_serviceIndex": { - "type": "unsigned int", - "id": 3, - "offset": 204, - "flags": 31, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2103126710 + "hash": 3389835433 }, - "m_forceInteract": { - "type": "bool", - "id": 4, + "m_Scale": { + "type": "class Point", + "id": 12, "offset": 200, - "flags": 31, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1705789564 + "hash": 2547159940 + }, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513510520 + }, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3091503757 } } }, - "1684901319": { - "name": "class SharedPointer", + "597500847": { + "name": "class ControlLine", "bases": [ "Window", "PropertyClass" ], - "hash": 1684901319, + "hash": 597500847, "properties": { "m_sName": { "type": "std::string", @@ -12591,7 +12576,7 @@ "type": "class SharedPointer", "id": 1, "offset": 112, - "flags": 65667, + "flags": 65671, "container": "Vector", "dynamic": true, "singleton": false, @@ -12786,852 +12771,436 @@ "singleton": false, "pointer": false, "hash": 3091503757 + }, + "m_Color": { + "type": "class Color", + "id": 16, + "offset": 584, + "flags": 262279, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1753714077 } } }, - "2099858571": { - "name": "class AccompanyNPCBehavior*", + "1023267948": { + "name": "enum ENUM_SENDTYPE", + "bases": [], + "hash": 1023267948, + "properties": {} + }, + "1451717073": { + "name": "class WhirlyBurlyKioskBehaviorTemplate", "bases": [ - "BehaviorInstance", + "BehaviorTemplate", "PropertyClass" ], - "hash": 2099858571, + "hash": 1451717073, "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", + "m_behaviorName": { + "type": "std::string", "id": 0, - "offset": 104, - "flags": 39, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 + "hash": 3130754092 } } }, - "916548547": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 916548547, - "properties": {} - }, - "915710895": { - "name": "class QuestEffect", + "1877117031": { + "name": "class ZoneTokenCountControl", "bases": [ - "NamedEffect", - "GameEffectBase", + "ZoneTokenBaseControl", + "Window", "PropertyClass" ], - "hash": 915710895, + "hash": 1877117031, "properties": { - "m_currentTickCount": { - "type": "double", + "m_sName": { + "type": "std::string", "id": 0, "offset": 80, - "flags": 63, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2533274692 + "hash": 2306437263 }, - "m_effectNameID": { - "type": "unsigned int", + "m_Children": { + "type": "class SharedPointer", "id": 1, - "offset": 96, - "flags": 63, - "container": "Static", - "dynamic": false, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 1204067144 + "pointer": true, + "hash": 2621225959 }, - "m_bIsOnPet": { - "type": "bool", + "m_Style": { + "type": "unsigned int", "id": 2, - "offset": 73, - "flags": 31, + "offset": 152, + "flags": 1048583, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 522593303 + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "SCALE_CHILDREN": 2, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "FOCUS_LOCKED": 64, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152 + } }, - "m_originatorID": { - "type": "gid", + "m_Flags": { + "type": "unsigned int", "id": 3, - "offset": 104, - "flags": 39, + "offset": 156, + "flags": 1048583, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1131810019 + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } }, - "m_itemSlotID": { - "type": "unsigned int", + "m_Window": { + "type": "class Rect", "id": 4, - "offset": 112, - "flags": 63, + "offset": 160, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1895747595 + "hash": 3105139380 }, - "m_internalID": { - "type": "int", + "m_fTargetAlpha": { + "type": "float", "id": 5, - "offset": 92, - "flags": 63, + "offset": 212, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1643137924 + "hash": 1809129834 }, - "m_endTime": { - "type": "unsigned int", + "m_fDisabledAlpha": { + "type": "float", "id": 6, - "offset": 88, - "flags": 31, + "offset": 216, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 716479635 + "hash": 1389987675 }, - "m_overrideName": { - "type": "std::string", + "m_fAlpha": { + "type": "float", "id": 7, - "offset": 128, - "flags": 63, + "offset": 208, + "flags": 65671, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1990707228 + "hash": 482130755 }, - "m_startReqs": { - "type": "class SharedPointer", + "m_pWindowStyle": { + "type": "class SharedPointer", "id": 8, - "offset": 168, - "flags": 7, + "offset": 232, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": true, - "hash": 3147529602 + "hash": 3623628394 }, - "m_startResults": { - "type": "class SharedPointer", + "m_sHelp": { + "type": "std::wstring", "id": 9, - "offset": 184, - "flags": 7, + "offset": 248, + "flags": 4194439, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2094517692 + "pointer": false, + "hash": 2102211316 }, - "m_endResults": { - "type": "class SharedPointer", + "m_sScript": { + "type": "std::string", "id": 10, - "offset": 200, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2118364133 - } - } - }, - "2099858595": { - "name": "class AccompanyNPCBehavior", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 2099858595, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, + "offset": 352, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 - } - } - }, - "914878273": { - "name": "class SharedPointer", - "bases": [ - "ServiceOptionBase", - "PropertyClass" - ], - "hash": 914878273, - "properties": { - "m_serviceName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, + "hash": 1846695875 + }, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2206028813 + "hash": 3389835433 }, - "m_iconKey": { - "type": "std::string", - "id": 1, - "offset": 168, - "flags": 31, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2457138637 + "hash": 2547159940 }, - "m_displayKey": { - "type": "std::string", - "id": 2, - "offset": 104, - "flags": 31, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3023276954 + "hash": 1513510520 }, - "m_serviceIndex": { - "type": "unsigned int", - "id": 3, - "offset": 204, - "flags": 31, - "container": "Static", - "dynamic": false, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 2103126710 + "hash": 2587533771 }, - "m_forceInteract": { - "type": "bool", - "id": 4, - "offset": 200, - "flags": 31, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1705789564 + "hash": 3091503757 } } }, - "1689794732": { - "name": "class MatchActor*", + "1448440427": { + "name": "class AddHangingCinematicStageTemplate*", "bases": [ + "CinematicStageTemplate", "PropertyClass" ], - "hash": 1689794732, + "hash": 1448440427, "properties": { - "m_nActorID": { - "type": "gid", + "m_name": { + "type": "std::string", "id": 0, - "offset": 88, - "flags": 31, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 663762476 + "hash": 1717359772 }, - "m_nLadderContainerID": { - "type": "gid", + "m_duration": { + "type": "float", "id": 1, - "offset": 96, - "flags": 31, + "offset": 104, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 782107042 + "hash": 920323453 }, - "m_nTournamentNameID": { - "type": "unsigned int", + "m_actions": { + "type": "class SharedPointer", "id": 2, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, + "offset": 112, + "flags": 7, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 471412886 + "pointer": true, + "hash": 1380578687 }, - "m_nTournamentID": { - "type": "gid", + "m_stageRelationships": { + "type": "class SharedPointer", "id": 3, - "offset": 112, - "flags": 31, - "container": "Static", - "dynamic": false, + "offset": 128, + "flags": 7, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 105258688 + "pointer": true, + "hash": 499983354 }, - "m_leagueID": { - "type": "unsigned int", + "m_hanging": { + "type": "std::string", "id": 4, - "offset": 124, - "flags": 31, + "offset": 152, + "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 692361645 + "hash": 3233478999 }, - "m_seasonID": { - "type": "unsigned int", + "m_protection": { + "type": "std::string", "id": 5, - "offset": 120, - "flags": 31, + "offset": 184, + "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 535260643 + "hash": 1874970946 }, - "m_nMatchNameID": { - "type": "unsigned int", + "m_sound": { + "type": "std::string", "id": 6, - "offset": 128, - "flags": 31, + "offset": 216, + "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 497033398 + "hash": 2307644996 }, - "m_nMatchID": { - "type": "gid", + "m_burnSound": { + "type": "std::string", "id": 7, - "offset": 136, - "flags": 31, + "offset": 248, + "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1050279648 + "hash": 1827806971 }, - "m_nTeamID": { - "type": "gid", + "m_stopRotating": { + "type": "bool", "id": 8, - "offset": 144, - "flags": 31, + "offset": 282, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 374990266 + "hash": 13587553 }, - "m_status": { - "type": "int", + "m_startRotating": { + "type": "bool", "id": 9, - "offset": 160, - "flags": 31, + "offset": 283, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 960781182 + "hash": 839204969 }, - "m_costAdj": { - "type": "class MatchCostAdjustment", + "m_spellText": { + "type": "std::string", "id": 10, - "offset": 200, - "flags": 31, + "offset": 288, + "flags": 8388615, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 913243331 + "hash": 2688705600 }, - "m_pLadder": { - "type": "class SharedPointer", + "m_bSwitchCameraToWideLong": { + "type": "bool", "id": 11, - "offset": 304, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2484171182 - }, - "m_bracketID": { - "type": "gid", - "id": 12, - "offset": 152, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 441272961 - }, - "m_overridingELO": { - "type": "int", - "id": 13, - "offset": 284, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1428697363 - }, - "m_matchKFactor": { - "type": "int", - "id": 14, - "offset": 288, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 773340305 - }, - "m_userID": { - "type": "gid", - "id": 15, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1037989700 - }, - "m_matchMakingRangeForMatches": { - "type": "unsigned int", - "id": 16, - "offset": 320, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1193045098 - }, - "m_maxMatchMakingRangeForMatches": { - "type": "unsigned int", - "id": 17, - "offset": 324, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1279540944 - }, - "m_allowRangeToExceedMaxForMatches": { - "type": "bool", - "id": 18, - "offset": 328, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1260448226 - }, - "m_matchCrownsCost": { - "type": "int", - "id": 19, - "offset": 280, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1094489596 - }, - "m_machineID": { - "type": "gid", - "id": 20, - "offset": 336, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 281396698 - }, - "m_tier": { - "type": "int", - "id": 21, - "offset": 344, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 219884238 - }, - "m_rank": { - "type": "int", - "id": 22, - "offset": 348, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 219803942 - }, - "m_rating": { - "type": "int", - "id": 23, - "offset": 352, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 899783871 - }, - "m_levelBand": { - "type": "int", - "id": 24, - "offset": 356, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2097286567 - }, - "m_enteredQueue": { - "type": "int", - "id": 25, - "offset": 376, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 638238406 - }, - "m_isSubscriber": { - "type": "bool", - "id": 26, - "offset": 428, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 952325795 - }, - "m_meetBracketBadgeRequirnments": { - "type": "bool", - "id": 27, - "offset": 429, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 438139258 - }, - "m_1v1": { - "type": "bool", - "id": 28, - "offset": 430, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 269458571 - }, - "m_streak": { - "type": "int", - "id": 29, - "offset": 360, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 961375108 - }, - "m_matches": { - "type": "int", - "id": 30, - "offset": 364, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1757638687 - }, - "m_lastFight": { - "type": "int", - "id": 31, - "offset": 368, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 91176384 - }, - "m_PVPHistoryStr": { - "type": "std::string", - "id": 32, - "offset": 384, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1498439420 - }, - "m_maxCritHit": { - "type": "float", - "id": 33, - "offset": 416, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2225327348 - }, - "m_maxBlockCrit": { - "type": "float", - "id": 34, - "offset": 420, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 135865530 - }, - "m_shadowPipRating": { - "type": "float", - "id": 35, - "offset": 424, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 507126123 - }, - "m_optInOut": { - "type": "std::string", - "id": 36, - "offset": 168, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3013935453 - }, - "m_playerTimeDraw": { - "type": "bool", - "id": 37, - "offset": 431, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 447636221 - } - } - }, - "1685899410": { - "name": "class BoosterPackCrownsOption", - "bases": [ - "ServiceOptionBase", - "PropertyClass" - ], - "hash": 1685899410, - "properties": { - "m_serviceName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2206028813 - }, - "m_iconKey": { - "type": "std::string", - "id": 1, - "offset": 168, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2457138637 - }, - "m_displayKey": { - "type": "std::string", - "id": 2, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3023276954 - }, - "m_serviceIndex": { - "type": "unsigned int", - "id": 3, - "offset": 204, - "flags": 31, + "offset": 280, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2103126710 + "hash": 2136912684, + "enum_options": { + "__DEFAULT": 1 + } }, - "m_forceInteract": { + "m_announcesSpell": { "type": "bool", - "id": 4, - "offset": 200, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1705789564 - } - } - }, - "1685808340": { - "name": "class ManaLootInfo", - "bases": [ - "LootInfo", - "LootInfoBase", - "PropertyClass" - ], - "hash": 1685808340, - "properties": { - "m_lootType": { - "type": "enum LootInfo::LOOT_TYPE", - "id": 0, - "offset": 72, - "flags": 2097183, + "id": 12, + "offset": 281, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1591891442, + "hash": 652261533, "enum_options": { - "LOOT_TYPE_NONE": 0, - "LOOT_TYPE_GOLD": 1, - "LOOT_TYPE_MANA": 2, - "LOOT_TYPE_ITEM": 3, - "LOOT_TYPE_TREASURE_CARD": 4, - "LOOT_TYPE_MAGIC_XP": 5, - "LOOT_TYPE_ADD_SPELL": 6, - "LOOT_TYPE_MAX_HEALTH": 7, - "LOOT_TYPE_MAX_GOLD": 8, - "LOOT_TYPE_MAX_MANA": 9, - "LOOT_TYPE_MAX_POTION": 10, - "LOOT_TYPE_TRAINING_POINTS": 11, - "LOOT_TYPE_RECIPE": 12, - "LOOT_TYPE_CRAFTING_SLOT": 13, - "LOOT_TYPE_REAGENT": 14, - "LOOT_TYPE_PETSNACK": 15, - "LOOT_TYPE_GARDENING_XP": 16, - "LOOT_TYPE_PET_XP": 17, - "LOOT_TYPE_TREASURE_TABLE": 18, - "LOOT_TYPE_ARENA_POINTS": 19, - "LOOT_TYPE_ARENA_BONUS_POINTS": 20, - "LOOT_TYPE_GROUP": 21, - "LOOT_TYPE_FISHING_XP": 22, - "LOOT_TYPE_EVENT_CURRENCY_1": 24, - "LOOT_TYPE_EVENT_CURRENCY_2": 25, - "LOOT_TYPE_PVP_CURRENCY": 26, - "LOOT_TYPE_PVP_CURRENCY_BONUS": 27, - "LOOT_TYPE_PVP_TOURNEY_CURRENCY": 28, - "LOOT_TYPE_PVP_TOURNEY_CURRENCY_BONUS": 29, - "LOOT_TYPE_FURNITURE_ESSENCE": 30 + "__DEFAULT": 1 } - }, - "m_manaAmount": { - "type": "int", - "id": 1, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1476254699 - } - } - }, - "2101636140": { - "name": "class WishlistItemInfo*", - "bases": [ - "PropertyClass" - ], - "hash": 2101636140, - "properties": { - "m_templateID": { - "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 33554495, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1286746870 - }, - "m_keepOnWishlistAfterPurchase": { - "type": "unsigned short", - "id": 1, - "offset": 76, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1244445710 } } }, - "915757763": { - "name": "class SharedPointer", + "1876678938": { + "name": "class SharedPointer", "bases": [ "PropertyClass" ], - "hash": 915757763, + "hash": 1876678938, "properties": { - "m_displayName": { + "m_group": { "type": "std::string", "id": 0, "offset": 72, @@ -13640,9 +13209,9 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 2446900370 + "hash": 2293515464 }, - "m_zoneName": { + "m_name": { "type": "std::string", "id": 1, "offset": 104, @@ -13651,95 +13220,39 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 2171167736 + "hash": 1717359772 } } }, - "1685778299": { - "name": "class ItemLootInfo", + "1446291400": { + "name": "class SharedPointer", "bases": [ - "LootInfo", - "LootInfoBase", "PropertyClass" ], - "hash": 1685778299, + "hash": 1446291400, "properties": { - "m_lootType": { - "type": "enum LootInfo::LOOT_TYPE", + "m_schoolName": { + "type": "std::string", "id": 0, "offset": 72, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1591891442, - "enum_options": { - "LOOT_TYPE_NONE": 0, - "LOOT_TYPE_GOLD": 1, - "LOOT_TYPE_MANA": 2, - "LOOT_TYPE_ITEM": 3, - "LOOT_TYPE_TREASURE_CARD": 4, - "LOOT_TYPE_MAGIC_XP": 5, - "LOOT_TYPE_ADD_SPELL": 6, - "LOOT_TYPE_MAX_HEALTH": 7, - "LOOT_TYPE_MAX_GOLD": 8, - "LOOT_TYPE_MAX_MANA": 9, - "LOOT_TYPE_MAX_POTION": 10, - "LOOT_TYPE_TRAINING_POINTS": 11, - "LOOT_TYPE_RECIPE": 12, - "LOOT_TYPE_CRAFTING_SLOT": 13, - "LOOT_TYPE_REAGENT": 14, - "LOOT_TYPE_PETSNACK": 15, - "LOOT_TYPE_GARDENING_XP": 16, - "LOOT_TYPE_PET_XP": 17, - "LOOT_TYPE_TREASURE_TABLE": 18, - "LOOT_TYPE_ARENA_POINTS": 19, - "LOOT_TYPE_ARENA_BONUS_POINTS": 20, - "LOOT_TYPE_GROUP": 21, - "LOOT_TYPE_FISHING_XP": 22, - "LOOT_TYPE_EVENT_CURRENCY_1": 24, - "LOOT_TYPE_EVENT_CURRENCY_2": 25, - "LOOT_TYPE_PVP_CURRENCY": 26, - "LOOT_TYPE_PVP_CURRENCY_BONUS": 27, - "LOOT_TYPE_PVP_TOURNEY_CURRENCY": 28, - "LOOT_TYPE_PVP_TOURNEY_CURRENCY_BONUS": 29, - "LOOT_TYPE_FURNITURE_ESSENCE": 30 - } - }, - "m_itemID": { - "type": "gid", - "id": 1, - "offset": 88, - "flags": 33554463, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 569545460 - }, - "m_numItems": { - "type": "int", - "id": 2, - "offset": 96, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1588646284 + "hash": 3385349572 } } }, - "2101221340": { - "name": "class WhirlyBurlyMovementDataAI*", + "598174810": { + "name": "class MonsterMagicWorldTotal*", "bases": [ "PropertyClass" ], - "hash": 2101221340, + "hash": 598174810, "properties": { - "m_unitType": { - "type": "unsigned char", + "m_worldName": { + "type": "std::string", "id": 0, "offset": 72, "flags": 7, @@ -13747,1483 +13260,1103 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 1498103218 + "hash": 1846757476 }, - "m_cardUsed": { + "m_monsterCount": { "type": "unsigned int", "id": 1, - "offset": 76, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1315653400 - }, - "m_passport": { - "type": "unsigned int", - "id": 2, - "offset": 80, + "offset": 108, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1362521513 - }, - "m_unitMovementList": { - "type": "unsigned int", - "id": 3, - "offset": 88, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 687999892 + "hash": 2119592350 } } }, - "916468126": { - "name": "class SharedPointer", + "1446241956": { + "name": "class SharedPointer", "bases": [ - "ClientEquipmentBehavior", - "BehaviorInstance", + "CoreTemplate", "PropertyClass" ], - "hash": 916468126, + "hash": 1446241956, "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", + "m_behaviors": { + "type": "class BehaviorTemplate*", "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_itemList": { - "type": "class SharedPointer", - "id": 1, - "offset": 120, - "flags": 27, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1983655699 - }, - "m_slotList": { - "type": "class SharedPointer", - "id": 2, - "offset": 136, - "flags": 27, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 3213026923 - }, - "m_publicItemList": { - "type": "class SharedPointer", - "id": 3, - "offset": 152, - "flags": 31, - "container": "List", + "offset": 72, + "flags": 7, + "container": "Vector", "dynamic": true, "singleton": false, "pointer": true, - "hash": 1693467991 - }, - "m_FXOverrideBehaviorInfo": { - "type": "class FXOverrideBehaviorInfo", - "id": 4, - "offset": 232, - "flags": 27, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1746411198 - } - } - }, - "1689163689": { - "name": "class GoalEntryFull*", - "bases": [ - "GoalEntry", - "ServiceOptionBase", - "PropertyClass" - ], - "hash": 1689163689, - "properties": { - "m_serviceName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2206028813 + "hash": 1197808594 }, - "m_iconKey": { + "m_matchName": { "type": "std::string", "id": 1, - "offset": 168, - "flags": 31, + "offset": 128, + "flags": 134217735, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2457138637 + "hash": 2061215721 }, - "m_displayKey": { + "m_matchDisplayName": { "type": "std::string", "id": 2, - "offset": 104, - "flags": 31, + "offset": 96, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3023276954 + "hash": 3201906495 }, - "m_serviceIndex": { - "type": "unsigned int", + "m_matchTitle": { + "type": "std::string", "id": 3, - "offset": 204, - "flags": 31, + "offset": 168, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2103126710 + "hash": 2918442218 }, - "m_forceInteract": { + "m_allowOverrides": { "type": "bool", "id": 4, "offset": 200, - "flags": 31, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1705789564 + "hash": 469376485 }, - "m_questID": { - "type": "gid", + "m_teamSize": { + "type": "unsigned int", "id": 5, - "offset": 216, - "flags": 31, + "offset": 208, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1246549335 + "hash": 2343388751 }, - "m_goalID": { - "type": "gid", + "m_teamCount": { + "type": "unsigned int", "id": 6, - "offset": 224, - "flags": 31, + "offset": 204, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 485200232 + "hash": 1825878845 }, - "m_goalTitle": { - "type": "std::string", + "m_minTeams": { + "type": "unsigned int", "id": 7, - "offset": 272, - "flags": 31, + "offset": 212, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2291910240 + "hash": 1717685739 }, - "m_questTitle": { - "type": "std::string", + "m_timeout": { + "type": "int", "id": 8, - "offset": 240, - "flags": 31, + "offset": 216, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1805465583 + "hash": 365357953 }, - "m_goalNameID": { + "m_maxPointsPerMatch": { "type": "unsigned int", "id": 9, - "offset": 232, - "flags": 31, + "offset": 280, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 403158846 + "hash": 1397040900 }, - "m_personaName": { - "type": "std::string", + "m_estimatedWeight": { + "type": "float", "id": 10, - "offset": 312, - "flags": 31, + "offset": 284, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2514452244 + "hash": 1374360127 }, - "m_goalType": { - "type": "int", + "m_matchInfo": { + "type": "class SharedPointer", "id": 11, - "offset": 344, - "flags": 31, + "offset": 256, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 24170047 + "pointer": true, + "hash": 2424135306 }, - "m_goalStatus": { - "type": "int", + "m_awardInfo": { + "type": "class SharedPointer", "id": 12, - "offset": 348, - "flags": 31, + "offset": 224, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 409552449 + "pointer": true, + "hash": 2862912855 }, - "m_goalCount": { - "type": "int", + "m_perLeagueAwardInfo": { + "type": "class SharedPointer", "id": 13, - "offset": 352, - "flags": 31, - "container": "Static", - "dynamic": false, + "offset": 240, + "flags": 7, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 774266758 + "pointer": true, + "hash": 1635456322 }, - "m_goalTotal": { - "type": "int", + "m_zones": { + "type": "std::string", "id": 14, - "offset": 356, - "flags": 31, - "container": "Static", - "dynamic": false, + "offset": 288, + "flags": 268435463, + "container": "Vector", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 794425889 + "hash": 2315938538, + "enum_options": { + "__BASECLASS": "ZoneData" + } }, - "m_useTally": { - "type": "bool", + "m_initialQueueThreshold": { + "type": "unsigned int", "id": 15, - "offset": 364, - "flags": 31, + "offset": 312, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 683835718 + "hash": 2069737705 }, - "m_tallyText": { - "type": "std::string", + "m_actorQueueTimeout": { + "type": "unsigned int", "id": 16, - "offset": 368, - "flags": 31, + "offset": 316, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3634775014 + "hash": 2220949042 }, - "m_tallyText2": { - "type": "std::string", + "m_teamQueueTimeout": { + "type": "unsigned int", "id": 17, - "offset": 400, - "flags": 31, + "offset": 320, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3298880408 + "hash": 905233664 }, - "m_goalLocation": { - "type": "std::string", + "m_actorQueueGrowth": { + "type": "float", "id": 18, - "offset": 432, - "flags": 31, + "offset": 324, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3086892791 + "hash": 499165488 }, - "m_goalDestinationZone": { - "type": "std::string", + "m_teamQueueGrowth": { + "type": "float", "id": 19, - "offset": 464, - "flags": 31, + "offset": 328, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2141407900 + "hash": 1500499518 }, - "m_goalImage1": { - "type": "std::string", + "m_matchMakingLevelMultiplier": { + "type": "float", "id": 20, - "offset": 496, - "flags": 31, + "offset": 332, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1507581938 + "hash": 838900890 }, - "m_goalImage2": { - "type": "std::string", + "m_levelModifiersListID": { + "type": "gid", "id": 21, - "offset": 528, - "flags": 31, + "offset": 336, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1507581939 + "hash": 383459035 }, - "m_clientTags": { - "type": "std::string", + "m_incompleteTeamTimeout": { + "type": "unsigned int", "id": 22, - "offset": 560, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2319030025 - }, - "m_goalMadlibs": { - "type": "class SharedPointer", - "id": 23, - "offset": 576, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1580392183 - } - } - }, - "2101762038": { - "name": "class Texture*", - "bases": [ - "PropertyClass" - ], - "hash": 2101762038, - "properties": { - "m_sFilename": { - "type": "std::string", - "id": 0, - "offset": 104, - "flags": 131207, + "offset": 276, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2431512111 + "hash": 1580576011 }, - "m_bAlphaChannel": { - "type": "bool", - "id": 1, - "offset": 137, - "flags": 135, + "m_incompleteMatchTimeout": { + "type": "unsigned int", + "id": 23, + "offset": 272, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1780697684 + "hash": 2167303729 }, - "m_bDoubleSided": { - "type": "bool", - "id": 2, - "offset": 138, - "flags": 135, + "m_shortMatchDurationForPenaltySeconds": { + "type": "unsigned int", + "id": 24, + "offset": 360, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1054874233 + "hash": 1403927011 }, - "m_bMipMap": { - "type": "bool", - "id": 3, - "offset": 139, - "flags": 135, + "m_thresholdForExtendingMatchSearch": { + "type": "unsigned int", + "id": 25, + "offset": 364, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1791042393 - } - } - }, - "918553322": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 918553322, - "properties": {} - }, - "1686808338": { - "name": "class ClientUnPolymorphCinematicAction*", - "bases": [ - "UnPolymorphCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 1686808338, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, + "hash": 1973589002 + }, + "m_numberOfPlayersRequiredToExtendMatchSearch": { + "type": "unsigned int", + "id": 26, + "offset": 368, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 - } - } - }, - "916821311": { - "name": "class ClientAddHangingEffectCinematicAction*", - "bases": [ - "AddHangingEffectCinematicAction", - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 916821311, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, + "hash": 858588026 + }, + "m_showStatusOnJoinQueue": { + "type": "bool", + "id": 27, + "offset": 376, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 + "hash": 1803391338 }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, + "m_allowExceedRangeForMatchesOptionForPlayers": { + "type": "bool", + "id": 28, + "offset": 377, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2285866132 + "hash": 592913977 }, - "m_effect": { - "type": "std::string", - "id": 2, - "offset": 120, - "flags": 131079, + "m_makeTeamsWithSameMatchOptsTimeoutSec": { + "type": "int", + "id": 29, + "offset": 372, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1894145160 + "hash": 1787977769 }, - "m_revealsCloaked": { - "type": "bool", - "id": 3, - "offset": 156, + "m_streakSize": { + "type": "int", + "id": 30, + "offset": 380, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1618772408 - } - } - }, - "1686796687": { - "name": "class ObstacleCoursePendulumBehaviorTemplate*", - "bases": [ - "ObstacleCourseObstacleBehaviorTemplate", - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 1686796687, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, + "hash": 1155220287 + }, + "m_historySize": { + "type": "int", + "id": 31, + "offset": 384, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3130754092 + "hash": 229055111 }, - "m_rate": { - "type": "double", - "id": 1, - "offset": 120, + "m_queueWaitingTime": { + "type": "int", + "id": 32, + "offset": 388, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2117614265 + "hash": 15229089 }, - "m_penaltyTime": { - "type": "double", - "id": 2, - "offset": 128, + "m_minQueueSize": { + "type": "int", + "id": 33, + "offset": 392, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3890998489 + "hash": 1319267550 }, - "m_boxAngle": { - "type": "double", - "id": 3, - "offset": 136, + "m_maxQueueSize": { + "type": "int", + "id": 34, + "offset": 396, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2280680509 + "hash": 1277586976 }, - "m_nearMissBoxAngle": { - "type": "double", - "id": 4, - "offset": 144, + "m_confTierRankTimeout": { + "type": "int", + "id": 35, + "offset": 400, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2597648767 + "hash": 79057063 }, - "m_nearMissWidth": { - "type": "double", - "id": 5, - "offset": 152, + "m_matchTimer": { + "type": "float", + "id": 36, + "offset": 404, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3819808431 + "hash": 1510935909 }, - "m_pendulumHeight": { - "type": "double", - "id": 6, - "offset": 160, + "m_bonusTime": { + "type": "int", + "id": 37, + "offset": 408, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3283581360 + "hash": 1757496496 }, - "m_angleMax": { - "type": "double", - "id": 7, - "offset": 168, + "m_passPenalty": { + "type": "int", + "id": 38, + "offset": 412, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2853267002 + "hash": 982951662 }, - "m_pendulumWidth": { - "type": "double", - "id": 8, - "offset": 176, + "m_yellowTime": { + "type": "int", + "id": 39, + "offset": 416, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2478418615 + "hash": 1017028741 }, - "m_collisionHeight": { - "type": "double", - "id": 9, - "offset": 184, + "m_redTime": { + "type": "int", + "id": 40, + "offset": 420, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3980975122 + "hash": 1909556708 }, - "m_pendulumHitSoundList": { - "type": "class WeightedList", - "id": 10, - "offset": 192, + "m_minTurnTime": { + "type": "int", + "id": 41, + "offset": 424, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1356951419 - } - } - }, - "2102212723": { - "name": "class std::vector >", - "bases": [], - "hash": 2102212723, - "properties": {} - }, - "917523958": { - "name": "class ZoneTokenContainer", - "bases": [ - "PropertyClass" - ], - "hash": 917523958, - "properties": { - "m_tokens": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, + "hash": 652524886 + }, + "m_effects": { + "type": "class SharedPointer", + "id": 42, + "offset": 432, "flags": 7, - "container": "List", + "container": "Vector", "dynamic": true, "singleton": false, "pointer": true, - "hash": 2621026866 - } - } - }, - "2101834602": { - "name": "class TextureD3D", - "bases": [ - "Texture", - "PropertyClass" - ], - "hash": 2101834602, - "properties": { - "m_sFilename": { - "type": "std::string", - "id": 0, - "offset": 104, - "flags": 131207, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2431512111 + "hash": 804962647 }, - "m_bAlphaChannel": { + "m_updateBattlePassPoints": { "type": "bool", - "id": 1, - "offset": 137, - "flags": 135, + "id": 43, + "offset": 456, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1780697684 + "hash": 713306342 }, - "m_bDoubleSided": { - "type": "bool", - "id": 2, - "offset": 138, - "flags": 135, + "m_battlePassWinPoints": { + "type": "int", + "id": 44, + "offset": 460, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1054874233 + "hash": 1252337240 }, - "m_bMipMap": { - "type": "bool", - "id": 3, - "offset": 139, - "flags": 135, + "m_battlePassLosePoints": { + "type": "int", + "id": 45, + "offset": 464, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1791042393 + "hash": 1400839869 } } }, - "1689401516": { - "name": "class MatchActor", + "597893369": { + "name": "class SharedPointer", "bases": [ + "TransformationEffect", + "GameEffectBase", "PropertyClass" ], - "hash": 1689401516, + "hash": 597893369, "properties": { - "m_nActorID": { - "type": "gid", + "m_currentTickCount": { + "type": "double", "id": 0, - "offset": 88, - "flags": 31, + "offset": 80, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 663762476 + "hash": 2533274692 }, - "m_nLadderContainerID": { - "type": "gid", + "m_effectNameID": { + "type": "unsigned int", "id": 1, "offset": 96, - "flags": 31, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 782107042 + "hash": 1204067144 }, - "m_nTournamentNameID": { - "type": "unsigned int", + "m_bIsOnPet": { + "type": "bool", "id": 2, - "offset": 104, + "offset": 73, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 471412886 + "hash": 522593303 }, - "m_nTournamentID": { + "m_originatorID": { "type": "gid", "id": 3, - "offset": 112, - "flags": 31, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 105258688 + "hash": 1131810019 }, - "m_leagueID": { + "m_itemSlotID": { "type": "unsigned int", "id": 4, - "offset": 124, - "flags": 31, + "offset": 112, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 692361645 + "hash": 1895747595 }, - "m_seasonID": { - "type": "unsigned int", + "m_internalID": { + "type": "int", "id": 5, - "offset": 120, - "flags": 31, + "offset": 92, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 535260643 + "hash": 1643137924 }, - "m_nMatchNameID": { + "m_endTime": { "type": "unsigned int", "id": 6, - "offset": 128, + "offset": 88, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 497033398 + "hash": 716479635 }, - "m_nMatchID": { - "type": "gid", + "m_sRace": { + "type": "std::string", "id": 7, - "offset": 136, - "flags": 31, + "offset": 128, + "flags": 268435487, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1050279648 + "hash": 2306580681, + "enum_options": { + "__BASECLASS": "CharacterRaceTable" + } }, - "m_nTeamID": { - "type": "gid", + "m_eGender": { + "type": "enum eGender", "id": 8, - "offset": 144, + "offset": 160, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 374990266 + "hash": 2776344943 }, - "m_status": { - "type": "int", + "m_fScale": { + "type": "float", "id": 9, - "offset": 160, + "offset": 164, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 960781182 + "hash": 503137701 }, - "m_costAdj": { - "type": "class MatchCostAdjustment", + "m_nPrimaryColor": { + "type": "int", "id": 10, - "offset": 200, + "offset": 168, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 913243331 + "hash": 310334923 }, - "m_pLadder": { - "type": "class SharedPointer", + "m_nSecondaryColor": { + "type": "int", "id": 11, - "offset": 304, + "offset": 172, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2484171182 + "pointer": false, + "hash": 516938671 }, - "m_bracketID": { - "type": "gid", + "m_nPatternOption": { + "type": "int", "id": 12, - "offset": 152, + "offset": 176, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 441272961 + "hash": 413195679 }, - "m_overridingELO": { + "m_nGeometryOption": { "type": "int", "id": 13, - "offset": 284, + "offset": 180, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1428697363 + "hash": 676541869 }, - "m_matchKFactor": { - "type": "int", + "m_sNaturalAttack": { + "type": "std::string", "id": 14, - "offset": 288, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 773340305 - }, - "m_userID": { - "type": "gid", - "id": 15, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1037989700 - }, - "m_matchMakingRangeForMatches": { - "type": "unsigned int", - "id": 16, - "offset": 320, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1193045098 - }, - "m_maxMatchMakingRangeForMatches": { - "type": "unsigned int", - "id": 17, - "offset": 324, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1279540944 - }, - "m_allowRangeToExceedMaxForMatches": { - "type": "bool", - "id": 18, - "offset": 328, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1260448226 - }, - "m_matchCrownsCost": { - "type": "int", - "id": 19, - "offset": 280, + "offset": 184, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1094489596 - }, - "m_machineID": { - "type": "gid", - "id": 20, - "offset": 336, - "flags": 31, + "hash": 2131867453 + } + } + }, + "1024146477": { + "name": "class SharedPointer", + "bases": [ + "DerbyEffect", + "PropertyClass" + ], + "hash": 1024146477, + "properties": { + "m_buffType": { + "type": "enum DerbyTalentBuffType", + "id": 0, + "offset": 92, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 281396698 + "hash": 1149251982, + "enum_options": { + "Buff": 0, + "Debuff": 1, + "Neither": 2 + } }, - "m_tier": { - "type": "int", - "id": 21, - "offset": 344, - "flags": 31, + "m_kTarget": { + "type": "enum DerbyTargetType", + "id": 1, + "offset": 96, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 219884238 + "hash": 1807803351, + "enum_options": { + "kTargetInFront": 0, + "kTargetBehind": 1, + "kTargetFirst": 2, + "kTargetSelf": 3, + "kTargetAll": 4, + "kTargetLast": 5 + } }, - "m_rank": { + "m_nDuration": { "type": "int", - "id": 22, - "offset": 348, + "id": 2, + "offset": 104, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 219803942 + "hash": 1110167982 }, - "m_rating": { - "type": "int", - "id": 23, - "offset": 352, - "flags": 31, + "m_effectID": { + "type": "unsigned int", + "id": 3, + "offset": 88, + "flags": 24, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 899783871 + "hash": 2347630439 }, - "m_levelBand": { - "type": "int", - "id": 24, - "offset": 356, - "flags": 31, + "m_imageFilename": { + "type": "std::string", + "id": 4, + "offset": 112, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2097286567 + "hash": 2813328063 }, - "m_enteredQueue": { - "type": "int", - "id": 25, - "offset": 376, + "m_iconIndex": { + "type": "unsigned int", + "id": 5, + "offset": 144, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 638238406 + "hash": 1265133262 }, - "m_isSubscriber": { - "type": "bool", - "id": 26, - "offset": 428, - "flags": 31, + "m_soundOnActivate": { + "type": "std::string", + "id": 6, + "offset": 152, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 952325795 + "hash": 1956929714 }, - "m_meetBracketBadgeRequirnments": { - "type": "bool", - "id": 27, - "offset": 429, - "flags": 31, + "m_soundOnTarget": { + "type": "std::string", + "id": 7, + "offset": 184, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 438139258 + "hash": 3444214056 }, - "m_1v1": { - "type": "bool", - "id": 28, - "offset": 430, - "flags": 31, + "m_targetParticleEffect": { + "type": "std::string", + "id": 8, + "offset": 216, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 269458571 + "hash": 3048234723 }, - "m_streak": { - "type": "int", - "id": 29, - "offset": 360, - "flags": 31, + "m_overheadMessage": { + "type": "std::string", + "id": 9, + "offset": 248, + "flags": 8388639, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 961375108 + "hash": 1701018190 }, - "m_matches": { - "type": "int", - "id": 30, - "offset": 364, + "m_requirements": { + "type": "class RequirementList", + "id": 10, + "offset": 280, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1757638687 + "hash": 2840988582 }, - "m_lastFight": { + "m_nSpeedChange": { "type": "int", - "id": 31, - "offset": 368, + "id": 11, + "offset": 376, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 91176384 - }, - "m_PVPHistoryStr": { - "type": "std::string", - "id": 32, - "offset": 384, - "flags": 31, + "hash": 636533855 + } + } + }, + "1877174196": { + "name": "class WinAnimMoveToLocationSpeed", + "bases": [ + "WinAnimMoveToLocation", + "WindowAnimation", + "PropertyClass" + ], + "hash": 1877174196, + "properties": { + "m_bUseDeepCopy": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1498439420 + "hash": 433380635 }, - "m_maxCritHit": { - "type": "float", - "id": 33, - "offset": 416, - "flags": 31, + "m_targetLocation": { + "type": "class Vector3D", + "id": 1, + "offset": 80, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2225327348 + "hash": 2653859938 }, - "m_maxBlockCrit": { + "m_fSpeed": { "type": "float", - "id": 34, - "offset": 420, - "flags": 31, + "id": 2, + "offset": 96, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 135865530 - }, - "m_shadowPipRating": { - "type": "float", - "id": 35, - "offset": 424, + "hash": 503609006 + } + } + }, + "1448327191": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1448327191, + "properties": { + "m_infoList": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, "flags": 31, - "container": "Static", - "dynamic": false, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 507126123 - }, - "m_optInOut": { + "pointer": true, + "hash": 1525681909 + } + } + }, + "598199386": { + "name": "class MonsterMagicWorldTotal", + "bases": [ + "PropertyClass" + ], + "hash": 598199386, + "properties": { + "m_worldName": { "type": "std::string", - "id": 36, - "offset": 168, - "flags": 31, + "id": 0, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3013935453 + "hash": 1846757476 }, - "m_playerTimeDraw": { - "type": "bool", - "id": 37, - "offset": 431, - "flags": 31, + "m_monsterCount": { + "type": "unsigned int", + "id": 1, + "offset": 108, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 447636221 + "hash": 2119592350 } } }, - "2101981679": { - "name": "class ChatInfo", - "bases": [], - "hash": 2101981679, - "properties": {} - }, - "919203255": { - "name": "class CastleMagicBehavior*", + "1025664612": { + "name": "class TodaysQuestData", "bases": [ - "CastleMagicBehaviorBase", - "BehaviorInstance", "PropertyClass" ], - "hash": 919203255, + "hash": 1025664612, "properties": { - "m_behaviorTemplateNameID": { + "m_todaysQuestList": { "type": "unsigned int", "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_castleMagicData": { - "type": "std::string", - "id": 1, - "offset": 128, - "flags": 575, - "container": "Static", - "dynamic": false, + "offset": 72, + "flags": 31, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 2874597138 + "hash": 1866614959 } } }, - "1689163694": { - "name": "class GoalEntryFull", + "1448255009": { + "name": "class SharedPointer", "bases": [ - "GoalEntry", - "ServiceOptionBase", "PropertyClass" ], - "hash": 1689163694, + "hash": 1448255009, "properties": { - "m_serviceName": { - "type": "std::string", + "m_petGID": { + "type": "gid", "id": 0, "offset": 72, - "flags": 31, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2206028813 + "hash": 826202069 }, - "m_iconKey": { - "type": "std::string", + "m_ageOutTime": { + "type": "unsigned int", "id": 1, - "offset": 168, - "flags": 31, + "offset": 80, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2457138637 + "hash": 819371137 }, - "m_displayKey": { - "type": "std::string", + "m_cooldownTime": { + "type": "unsigned int", "id": 2, - "offset": 104, - "flags": 31, + "offset": 84, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3023276954 + "hash": 902182593 }, - "m_serviceIndex": { + "m_petTemplateID": { "type": "unsigned int", "id": 3, - "offset": 204, - "flags": 31, + "offset": 88, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2103126710 + "hash": 817215071 }, - "m_forceInteract": { - "type": "bool", + "m_hatchCount": { + "type": "unsigned int", "id": 4, - "offset": 200, - "flags": 31, + "offset": 92, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1705789564 + "hash": 1273194302 }, - "m_questID": { - "type": "gid", + "m_nameKey": { + "type": "unsigned int", "id": 5, - "offset": 216, - "flags": 31, + "offset": 96, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1246549335 + "hash": 1104764311 }, - "m_goalID": { + "m_petItemGID": { "type": "gid", "id": 6, - "offset": 224, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 485200232 - }, - "m_goalTitle": { - "type": "std::string", - "id": 7, - "offset": 272, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2291910240 - }, - "m_questTitle": { - "type": "std::string", - "id": 8, - "offset": 240, - "flags": 31, + "offset": 104, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1805465583 - }, - "m_goalNameID": { + "hash": 2122895620 + } + } + }, + "598182007": { + "name": "class PathBehaviorClient", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 598182007, + "properties": { + "m_behaviorTemplateNameID": { "type": "unsigned int", - "id": 9, - "offset": 232, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 403158846 - }, - "m_personaName": { - "type": "std::string", - "id": 10, - "offset": 312, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2514452244 - }, - "m_goalType": { - "type": "int", - "id": 11, - "offset": 344, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 24170047 - }, - "m_goalStatus": { - "type": "int", - "id": 12, - "offset": 348, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 409552449 - }, - "m_goalCount": { - "type": "int", - "id": 13, - "offset": 352, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 774266758 - }, - "m_goalTotal": { - "type": "int", - "id": 14, - "offset": 356, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 794425889 - }, - "m_useTally": { - "type": "bool", - "id": 15, - "offset": 364, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 683835718 - }, - "m_tallyText": { - "type": "std::string", - "id": 16, - "offset": 368, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3634775014 - }, - "m_tallyText2": { - "type": "std::string", - "id": 17, - "offset": 400, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3298880408 - }, - "m_goalLocation": { - "type": "std::string", - "id": 18, - "offset": 432, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3086892791 - }, - "m_goalDestinationZone": { - "type": "std::string", - "id": 19, - "offset": 464, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2141407900 - }, - "m_goalImage1": { - "type": "std::string", - "id": 20, - "offset": 496, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1507581938 - }, - "m_goalImage2": { - "type": "std::string", - "id": 21, - "offset": 528, - "flags": 31, + "id": 0, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1507581939 - }, - "m_clientTags": { - "type": "std::string", - "id": 22, - "offset": 560, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2319030025 - }, - "m_goalMadlibs": { - "type": "class SharedPointer", - "id": 23, - "offset": 576, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1580392183 + "hash": 223437287 } } }, - "919116749": { - "name": "class CrownsConfirmWindow", + "1024574933": { + "name": "class ControlSprite*", "bases": [ "Window", "PropertyClass" ], - "hash": 919116749, + "hash": 1024574933, "properties": { "m_sName": { "type": "std::string", @@ -15301,7 +14434,10 @@ "PARENT_HEIGHT": 524288, "HCENTER": 32768, "VCENTER": 65536, - "DISABLED": 2147483648 + "DISABLED": 2147483648, + "ONE_SHOT": 8388608, + "FLIPPED_HORIZONTAL": 16777216, + "FLIPPED_VERTICAL": 33554432 } }, "m_Window": { @@ -15435,21 +14571,11 @@ "singleton": false, "pointer": false, "hash": 3091503757 - } - } - }, - "918831328": { - "name": "class ControlList::ListItemAnimState*", - "bases": [ - "ControlList::ListItemState", - "PropertyClass" - ], - "hash": 918831328, - "properties": { + }, "m_pMaterial": { "type": "class SharedPointer", - "id": 0, - "offset": 72, + "id": 16, + "offset": 592, "flags": 135, "container": "Static", "dynamic": false, @@ -15457,72 +14583,63 @@ "pointer": true, "hash": 3479277078 }, - "m_nMaterialFrame": { - "type": "int", - "id": 1, - "offset": 88, + "m_fRotation": { + "type": "float", + "id": 17, + "offset": 608, "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1641923970 + "hash": 1175400173 }, - "m_nAnimBeginFrame": { - "type": "int", - "id": 2, - "offset": 96, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1469531165 - }, - "m_nAnimEndFrame": { - "type": "int", - "id": 3, - "offset": 100, - "flags": 135, + "m_Color": { + "type": "class Color", + "id": 18, + "offset": 584, + "flags": 262279, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1659451087 + "hash": 1753714077 }, - "m_fAnimRate": { - "type": "float", - "id": 4, - "offset": 104, - "flags": 135, + "m_textColor": { + "type": "class Color", + "id": 19, + "offset": 612, + "flags": 262279, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 802385934 + "hash": 2528109250 }, - "m_bAnimLoop": { - "type": "bool", - "id": 5, - "offset": 108, + "m_textComponent": { + "type": "class TextComponent", + "id": 20, + "offset": 616, "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1487150228 + "hash": 3491704390 } } }, - "2103181614": { - "name": "class JewelSocketUnlockCost", + "1881039192": { + "name": "class SharedPointer", "bases": [ + "HaltCinematicAction", + "CinematicAction", "PropertyClass" ], - "hash": 2103181614, + "hash": 1881039192, "properties": { - "m_crownsCost": { - "type": "unsigned int", + "m_timeOffset": { + "type": "float", "id": 0, "offset": 72, "flags": 7, @@ -15530,1197 +14647,753 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 1803615170 - }, - "m_lowestEquipLevelInclusive": { - "type": "int", - "id": 1, - "offset": 76, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1282442502 - }, - "m_highestEquipLevelInclusive": { - "type": "int", - "id": 2, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1771734836 + "hash": 2237098605 } } }, - "1689511673": { - "name": "class ReqInCombat*", + "1880094419": { + "name": "class SharedPointer", "bases": [ - "Requirement", "PropertyClass" ], - "hash": 1689511673, + "hash": 1880094419, + "properties": {} + }, + "1879528549": { + "name": "class GameObjectTemplate*", + "bases": [ + "CoreTemplate", + "PropertyClass" + ], + "hash": 1879528549, "properties": { - "m_applyNOT": { - "type": "bool", + "m_behaviors": { + "type": "class BehaviorTemplate*", "id": 0, "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, + "flags": 7, + "container": "Vector", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 1746328074, - "enum_options": { - "__DEFAULT": 0 - } + "pointer": true, + "hash": 1197808594 }, - "m_operator": { - "type": "enum Requirement::Operator", + "m_objectName": { + "type": "std::string", "id": 1, - "offset": 76, - "flags": 2097183, + "offset": 96, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2672792317, - "enum_options": { - "ROP_AND": 0, - "ROP_OR": 1, - "__DEFAULT": "ROP_AND" - } - } - } - }, - "2102227818": { - "name": "class TextureD3D*", - "bases": [ - "Texture", - "PropertyClass" - ], - "hash": 2102227818, - "properties": { - "m_sFilename": { - "type": "std::string", - "id": 0, - "offset": 104, - "flags": 131207, + "hash": 2154940147 + }, + "m_templateID": { + "type": "unsigned int", + "id": 2, + "offset": 128, + "flags": 16777223, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2431512111 + "hash": 1286746870 }, - "m_bAlphaChannel": { - "type": "bool", - "id": 1, - "offset": 137, - "flags": 135, + "m_visualID": { + "type": "unsigned int", + "id": 3, + "offset": 132, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1780697684 + "hash": 1118778894 }, - "m_bDoubleSided": { - "type": "bool", - "id": 2, - "offset": 138, - "flags": 135, - "container": "Static", - "dynamic": false, + "m_adjectiveList": { + "type": "std::string", + "id": 4, + "offset": 248, + "flags": 7, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 1054874233 + "hash": 3195213318 }, - "m_bMipMap": { + "m_exemptFromAOI": { "type": "bool", - "id": 3, - "offset": 139, - "flags": 135, + "id": 5, + "offset": 240, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1791042393 - } - } - }, - "2102471527": { - "name": "class SharedPointer", - "bases": [ - "ExtraHousingZoneBehaviorBase", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 2102471527, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, + "hash": 1457879059 + }, + "m_displayName": { + "type": "std::string", + "id": 6, + "offset": 168, + "flags": 8388615, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 - } - } - }, - "919271733": { - "name": "class SharedPointer", - "bases": [], - "hash": 919271733, - "properties": {} - }, - "1691270134": { - "name": "class PetStat*", - "bases": [ - "PropertyClass" - ], - "hash": 1691270134, - "properties": { - "m_name": { + "hash": 2446900370 + }, + "m_description": { "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, + "id": 7, + "offset": 136, + "flags": 8388615, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1717359772 + "hash": 1649374815 }, - "m_statID": { - "type": "unsigned int", - "id": 1, - "offset": 104, - "flags": 31, + "m_nObjectType": { + "type": "enum ObjectType", + "id": 8, + "offset": 200, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1172182134 + "hash": 2118905880, + "enum_options": { + "OT_UNDEFINED": 0, + "OT_PLAYER": 1, + "OT_NPC": 2, + "OT_PROP": 3, + "OT_OBJECT": 4, + "OT_HOUSE": 5, + "OT_KEY": 6, + "OT_OLD_KEY": 7, + "OT_DEED": 8, + "OT_MAIL": 9, + "OT_RECIPE": 17, + "OT_EQUIP_HEAD": 10, + "OT_EQUIP_CHEST": 11, + "OT_EQUIP_LEGS": 12, + "OT_EQUIP_HANDS": 13, + "OT_EQUIP_FINGER": 14, + "OT_EQUIP_FEET": 15, + "OT_EQUIP_EAR": 16, + "OT_BUILDING_BLOCK": 18, + "OT_BUILDING_BLOCK_SOLID": 19, + "OT_GOLF": 20, + "OT_DOOR": 21, + "OT_PET": 22, + "OT_FABRIC": 23, + "OT_WINDOW": 24, + "OT_ROOF": 25, + "OT_HORSE": 26, + "OT_STRUCTURE": 27, + "OT_HOUSING_TEXTURE": 28, + "OT_PLANT": 29 + } }, - "m_value": { - "type": "int", - "id": 2, - "offset": 108, - "flags": 31, + "m_sIcon": { + "type": "std::string", + "id": 9, + "offset": 208, + "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 812990455 + "hash": 2306259831 } } }, - "1691270114": { - "name": "class PetStat", + "1025731298": { + "name": "class SharedPointer", "bases": [ "PropertyClass" ], - "hash": 1691270114, + "hash": 1025731298, "properties": { - "m_name": { + "m_zoneName": { "type": "std::string", "id": 0, - "offset": 72, - "flags": 7, + "offset": 96, + "flags": 8388615, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1717359772 + "hash": 2171167736 }, - "m_statID": { - "type": "unsigned int", + "m_mapImage": { + "type": "std::string", "id": 1, - "offset": 104, - "flags": 31, + "offset": 128, + "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1172182134 + "hash": 3475170332 }, - "m_value": { - "type": "int", + "m_imageSize": { + "type": "class Size", "id": 2, - "offset": 108, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 812990455 - } - } - }, - "1690400663": { - "name": "class AvatarItemInfoBase*", - "bases": [ - "PropertyClass" - ], - "hash": 1690400663, - "properties": {} - }, - "2103182382": { - "name": "class JewelSocketUnlockCost*", - "bases": [ - "PropertyClass" - ], - "hash": 2103182382, - "properties": { - "m_crownsCost": { - "type": "unsigned int", - "id": 0, - "offset": 72, + "offset": 160, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1803615170 + "hash": 925407930 }, - "m_lowestEquipLevelInclusive": { - "type": "int", - "id": 1, - "offset": 76, + "m_doodleData": { + "type": "class SharedPointer", + "id": 3, + "offset": 168, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 1282442502 + "pointer": true, + "hash": 3059121346 }, - "m_highestEquipLevelInclusive": { + "m_mapRotation": { "type": "int", - "id": 2, - "offset": 80, + "id": 4, + "offset": 184, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1771734836 + "hash": 1291362088 } } }, - "919576387": { - "name": "class RemoveParticleActorCinematicAction*", + "1450572305": { + "name": "class TutorialQuestTemplate*", "bases": [ - "ActorCinematicAction", - "CinematicAction", + "QuestTemplate", + "CoreTemplate", "PropertyClass" ], - "hash": 919576387, + "hash": 1450572305, "properties": { - "m_timeOffset": { - "type": "float", + "m_behaviors": { + "type": "class BehaviorTemplate*", "id": 0, "offset": 72, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "Vector", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 2237098605 + "pointer": true, + "hash": 1197808594 }, - "m_actor": { + "m_questName": { "type": "std::string", "id": 1, - "offset": 80, + "offset": 96, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2285866132 + "hash": 1702112846 }, - "m_effectName": { - "type": "std::string", + "m_questNameID": { + "type": "unsigned int", "id": 2, - "offset": 120, + "offset": 128, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2029161513 + "hash": 1530354349 }, - "m_nodeName": { + "m_questTitle": { "type": "std::string", "id": 3, - "offset": 152, - "flags": 7, + "offset": 136, + "flags": 8388615, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3607089954 - } - } - }, - "919520191": { - "name": "class ResSyncScript*", - "bases": [ - "Result", - "PropertyClass" - ], - "hash": 919520191, - "properties": { - "m_script": { + "hash": 1805465583 + }, + "m_questInfo": { "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, + "id": 4, + "offset": 168, + "flags": 8388615, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2438918928 + "hash": 1701947097 }, - "m_function": { + "m_questPrep": { "type": "std::string", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1511192225 - } - } - }, - "919442742": { - "name": "class CastleMagicBehaviorBase", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 919442742, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, + "id": 5, + "offset": 200, + "flags": 8388615, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 + "hash": 1702202980 }, - "m_castleMagicData": { + "m_questUnderway": { "type": "std::string", - "id": 1, - "offset": 128, - "flags": 575, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2874597138 - } - } - }, - "2117118906": { - "name": "class SharedPointer", - "bases": [], - "hash": 2117118906, - "properties": {} - }, - "1692046554": { - "name": "class std::list >", - "bases": [], - "hash": 1692046554, - "properties": {} - }, - "2110543894": { - "name": "class QuestEffectDisplayInfo", - "bases": [ - "PropertyClass" - ], - "hash": 2110543894, - "properties": { - "m_companionID": { - "type": "int", - "id": 0, - "offset": 72, - "flags": 31, + "id": 6, + "offset": 232, + "flags": 8388615, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1594812875 + "hash": 2308400380 }, - "m_serializedEffects": { + "m_questComplete": { "type": "std::string", - "id": 1, - "offset": 96, - "flags": 31, + "id": 7, + "offset": 264, + "flags": 8388615, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3446153863 - } - } - }, - "919520188": { - "name": "class ResSyncScript", - "bases": [ - "Result", - "PropertyClass" - ], - "hash": 919520188, - "properties": { - "m_script": { + "hash": 3484586150 + }, + "m_startGoals": { "type": "std::string", - "id": 0, - "offset": 72, + "id": 8, + "offset": 392, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 2438918928 + "hash": 2152469471 }, - "m_function": { - "type": "std::string", - "id": 1, - "offset": 104, + "m_goals": { + "type": "class SharedPointer", + "id": 9, + "offset": 408, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 1511192225 - } - } - }, - "1691629752": { - "name": "class SharedPointer", - "bases": [ - "SpellEffect", - "PropertyClass" - ], - "hash": 1691629752, - "properties": { - "m_effectType": { - "type": "enum SpellEffect::kSpellEffects", - "id": 0, - "offset": 72, - "flags": 2097183, + "pointer": true, + "hash": 1374041870 + }, + "m_startResults": { + "type": "class SharedPointer", + "id": 10, + "offset": 424, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 2578255295, - "enum_options": { - "kInvalidSpellEffect": 0, - "kDamage": 1, - "kDamageNoCrit": 2, - "kHeal": 3, - "kHealPercent": 4, - "kSetHealPercent": 113, - "kStealHealth": 5, - "kReduceOverTime": 6, - "kDetonateOverTime": 7, - "kPushCharm": 8, - "kStealCharm": 9, - "kPushWard": 10, - "kStealWard": 11, - "kPushOverTime": 12, - "kStealOverTime": 13, - "kRemoveCharm": 14, - "kRemoveWard": 15, - "kRemoveOverTime": 16, - "kRemoveAura": 17, - "kSwapAll": 18, - "kSwapCharm": 19, - "kSwapWard": 20, - "kSwapOverTime": 21, - "kModifyIncomingDamage": 22, - "kModifyIncomingDamageFlat": 119, - "kMaximumIncomingDamage": 23, - "kModifyIncomingHeal": 24, - "kModifyIncomingHealFlat": 118, - "kModifyIncomingDamageType": 25, - "kModifyIncomingArmorPiercing": 26, - "kModifyOutgoingDamage": 27, - "kModifyOutgoingDamageFlat": 121, - "kModifyOutgoingHeal": 28, - "kModifyOutgoingHealFlat": 120, - "kModifyOutgoingDamageType": 29, - "kModifyOutgoingArmorPiercing": 30, - "kModifyOutgoingStealHealth": 31, - "kModifyIncomingStealHealth": 32, - "kBounceNext": 33, - "kBouncePrevious": 34, - "kBounceBack": 35, - "kBounceAll": 36, - "kAbsorbDamage": 37, - "kAbsorbHeal": 38, - "kModifyAccuracy": 39, - "kDispel": 40, - "kConfusion": 41, - "kCloakedCharm": 42, - "kCloakedWard": 43, - "kStunResist": 44, - "kClue": 111, - "kPipConversion": 45, - "kCritBoost": 46, - "kCritBlock": 47, - "kPolymorph": 48, - "kDelayCast": 49, - "kModifyCardCloak": 50, - "kModifyCardDamage": 51, - "kModifyCardAccuracy": 53, - "kModifyCardMutation": 54, - "kModifyCardRank": 55, - "kModifyCardArmorPiercing": 56, - "kSummonCreature": 65, - "kTeleportPlayer": 66, - "kStun": 67, - "kDampen": 68, - "kReshuffle": 69, - "kMindControl": 70, - "kModifyPips": 71, - "kModifyPowerPips": 72, - "kModifyShadowPips": 73, - "kModifyHate": 74, - "kDamageOverTime": 75, - "kHealOverTime": 76, - "kModifyPowerPipChance": 77, - "kModifyRank": 78, - "kStunBlock": 79, - "kRevealCloak": 80, - "kInstantKill": 81, - "kAfterlife": 82, - "kDeferredDamage": 83, - "kDamagePerTotalPipPower": 84, - "kModifyCardHeal": 52, - "kModifyCardCharm": 57, - "kModifyCardWard": 58, - "kModifyCardOutgoingDamage": 59, - "kModifyCardOutgoingAccuracy": 60, - "kModifyCardOutgoingHeal": 61, - "kModifyCardOutgoingArmorPiercing": 62, - "kModifyCardIncomingDamage": 63, - "kModifyCardAbsorbDamage": 64, - "kCloakedWardNoRemove": 86, - "kAddCombatTriggerList": 87, - "kRemoveCombatTriggerList": 88, - "kBacklashDamage": 89, - "kModifyBacklash": 90, - "kIntercept": 91, - "kShadowSelf": 92, - "kShadowCreature": 93, - "kModifyShadowCreatureLevel": 94, - "kSelectShadowCreatureAttackTarget": 95, - "kShadowDecrementTurn": 96, - "kCritBoostSchoolSpecific": 97, - "kSpawnCreature": 98, - "kUnPolymorph": 99, - "kPowerPipConversion": 100, - "kProtectCardBeneficial": 101, - "kProtectCardHarmful": 102, - "kProtectBeneficial": 103, - "kProtectHarmful": 104, - "kDivideDamage": 105, - "kCollectEssence": 106, - "kKillCreature": 107, - "kDispelBlock": 108, - "kConfusionBlock": 109, - "kModifyPipRoundRate": 110, - "kMaxHealthDamage": 112, - "kUntargetable": 114, - "kMakeTargetable": 115, - "kForceTargetable": 116, - "kRemoveStunBlock": 117, - "kExitCombat": 122, - "kSuspendPips": 123, - "kResumePips": 124, - "kAutoPass": 125, - "kStopAutoPass": 126, - "kVanish": 127, - "kStopVanish": 128, - "kMaxHealthHeal": 129, - "kHealByWard": 130, - "kTaunt": 131, - "kPacify": 132, - "kRemoveTargetRestriction": 133, - "kConvertHangingEffect": 134, - "kAddSpellToDeck": 135, - "kAddSpellToHand": 136, - "kModifyIncomingDamageOverTime": 137, - "kModifyIncomingHealOverTime": 138, - "kModifyCardDamagebyRank": 139, - "kPushConvertedCharm": 140, - "kStealConvertedCharm": 141, - "kPushConvertedWard": 142, - "kStealConvertedWard": 143, - "kPushConvertedOverTime": 144, - "kStealConvertedOverTime": 145, - "kRemoveConvertedCharm": 146, - "kRemoveConvertedWard": 147, - "kRemoveConvertedOverTime": 148, - "kModifyOverTimeDuration": 149, - "kModifySchoolPips": 150 - } + "pointer": true, + "hash": 2094517692 }, - "m_effectParam": { - "type": "int", - "id": 1, - "offset": 76, - "flags": 31, + "m_endResults": { + "type": "class SharedPointer", + "id": 11, + "offset": 440, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 357920024 + "pointer": true, + "hash": 2118364133 }, - "m_disposition": { - "type": "enum SpellEffect::kHangingDisposition", - "id": 2, - "offset": 80, - "flags": 2097159, + "m_requirements": { + "type": "class RequirementList*", + "id": 12, + "offset": 456, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1904841031, - "enum_options": { - "kBoth": 0, - "kBeneficial": 1, - "kHarmful": 2 - } + "pointer": true, + "hash": 2840985510 }, - "m_sDamageType": { - "type": "std::string", - "id": 3, - "offset": 88, + "m_prepRequirements": { + "type": "class RequirementList*", + "id": 13, + "offset": 464, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 2501054223 + "pointer": true, + "hash": 3016776541 }, - "m_damageType": { - "type": "unsigned int", - "id": 4, - "offset": 84, - "flags": 31, + "m_pruneRequirements": { + "type": "class RequirementList*", + "id": 14, + "offset": 472, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 737882766 + "pointer": true, + "hash": 3211248912 }, - "m_pipNum": { - "type": "int", - "id": 5, - "offset": 128, + "m_prepAlways": { + "type": "bool", + "id": 15, + "offset": 304, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 830827539 + "hash": 1423046331 }, - "m_actNum": { - "type": "int", - "id": 6, - "offset": 132, - "flags": 31, - "container": "Static", - "dynamic": false, + "m_clientTags": { + "type": "std::string", + "id": 16, + "offset": 312, + "flags": 7, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 236824866 + "hash": 2319030025 }, - "m_effectTarget": { - "type": "enum SpellEffect::kEffectTarget", - "id": 7, - "offset": 140, - "flags": 2097183, - "container": "Static", - "dynamic": false, + "m_goalLogic": { + "type": "class GoalCompleteLogic*", + "id": 17, + "offset": 520, + "flags": 7, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 2458940523, - "enum_options": { - "kInvalidTarget": 0, - "kSpell": 1, - "kSpecificSpells": 2, - "kGlobal": 3, - "kEnemyTeam": 4, - "kEnemyTeamAllAtOnce": 5, - "kFriendlyTeam": 6, - "kFriendlyTeamAllAtOnce": 7, - "kEnemySingle": 8, - "kFriendlySingle": 9, - "kMinion": 10, - "kFriendlyMinion": 17, - "kEnemyMinion": 18, - "kSelf": 11, - "kAtLeastOneEnemy": 13, - "kPreselectedEnemySingle": 12, - "kMultiTargetEnemy": 14, - "kMultiTargetFriendly": 15, - "kFriendlySingleNotMe": 16 - } + "pointer": true, + "hash": 963824003 }, - "m_numRounds": { + "m_questLevel": { "type": "int", - "id": 8, - "offset": 144, - "flags": 31, + "id": 18, + "offset": 296, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1229753829 + "hash": 298136804 }, - "m_paramPerRound": { + "m_questRepeat": { "type": "int", - "id": 9, - "offset": 148, - "flags": 31, + "id": 19, + "offset": 300, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 683234234 + "hash": 1480345805 }, - "m_healModifier": { - "type": "float", - "id": 10, - "offset": 152, + "m_onStartQuestScript": { + "type": "std::string", + "id": 20, + "offset": 328, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1317921248, - "enum_options": { - "__DEFAULT": "1.0" - } + "hash": 2577549709 }, - "m_spellTemplateID": { - "type": "unsigned int", - "id": 11, - "offset": 120, - "flags": 31, + "m_onEndQuestScript": { + "type": "std::string", + "id": 21, + "offset": 360, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 585567702 + "hash": 2285648118 }, - "m_enchantmentSpellTemplateID": { - "type": "unsigned int", - "id": 12, - "offset": 124, - "flags": 31, + "m_dialogList": { + "type": "class ActorDialogListBase*", + "id": 22, + "offset": 480, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 246955115 + "pointer": true, + "hash": 1909154969 }, - "m_act": { - "type": "bool", - "id": 13, - "offset": 136, + "m_missionDoors": { + "type": "std::string", + "id": 23, + "offset": 504, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 269510283 + "hash": 2428103908 }, - "m_cloaked": { - "type": "bool", - "id": 14, - "offset": 157, - "flags": 31, - "container": "Static", - "dynamic": false, + "m_dynaMods": { + "type": "class QuestDynaModInfo*", + "id": 24, + "offset": 488, + "flags": 7, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 7349510 + "pointer": true, + "hash": 3330743945 }, - "m_bypassProtection": { + "m_isHidden": { "type": "bool", - "id": 15, - "offset": 159, - "flags": 31, + "id": 25, + "offset": 305, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1657138252 + "hash": 1401188667 }, - "m_armorPiercingParam": { - "type": "int", - "id": 16, - "offset": 160, - "flags": 31, + "m_outdated": { + "type": "bool", + "id": 26, + "offset": 306, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2025530205 + "hash": 1565198349 }, - "m_chancePerTarget": { - "type": "int", - "id": 17, - "offset": 164, - "flags": 31, + "m_noQuestHelper": { + "type": "bool", + "id": 27, + "offset": 307, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 845426794 + "hash": 578010882 }, - "m_protected": { + "m_mainline": { "type": "bool", - "id": 18, - "offset": 168, - "flags": 31, + "id": 28, + "offset": 552, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1445655037 + "hash": 1749856224 }, - "m_converted": { - "type": "bool", - "id": 19, - "offset": 169, - "flags": 31, - "container": "Static", - "dynamic": false, + "m_defaultDialogAnimation": { + "type": "std::string", + "id": 29, + "offset": 560, + "flags": 7, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 1590428797 + "hash": 2400834320 }, - "m_rank": { - "type": "int", - "id": 20, - "offset": 208, + "m_skipQHAutoSelect": { + "type": "bool", + "id": 30, + "offset": 553, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 219803942 + "hash": 2024815836 }, - "m_elements": { - "type": "class SharedPointer", - "id": 21, - "offset": 224, - "flags": 31, + "m_questEffectInfoList": { + "type": "class SharedPointer", + "id": 31, + "offset": 536, + "flags": 7, "container": "List", "dynamic": true, "singleton": false, "pointer": true, - "hash": 2647383318 - } - } - }, - "2107708414": { - "name": "class EventCurrency2LootInfo*", - "bases": [ - "LootInfo", - "LootInfoBase", - "PropertyClass" - ], - "hash": 2107708414, - "properties": { - "m_lootType": { - "type": "enum LootInfo::LOOT_TYPE", - "id": 0, - "offset": 72, - "flags": 2097183, + "hash": 2494024956 + }, + "m_forceInteraction": { + "type": "bool", + "id": 32, + "offset": 554, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1591891442, - "enum_options": { - "LOOT_TYPE_NONE": 0, - "LOOT_TYPE_GOLD": 1, - "LOOT_TYPE_MANA": 2, - "LOOT_TYPE_ITEM": 3, - "LOOT_TYPE_TREASURE_CARD": 4, - "LOOT_TYPE_MAGIC_XP": 5, - "LOOT_TYPE_ADD_SPELL": 6, - "LOOT_TYPE_MAX_HEALTH": 7, - "LOOT_TYPE_MAX_GOLD": 8, - "LOOT_TYPE_MAX_MANA": 9, - "LOOT_TYPE_MAX_POTION": 10, - "LOOT_TYPE_TRAINING_POINTS": 11, - "LOOT_TYPE_RECIPE": 12, - "LOOT_TYPE_CRAFTING_SLOT": 13, - "LOOT_TYPE_REAGENT": 14, - "LOOT_TYPE_PETSNACK": 15, - "LOOT_TYPE_GARDENING_XP": 16, - "LOOT_TYPE_PET_XP": 17, - "LOOT_TYPE_TREASURE_TABLE": 18, - "LOOT_TYPE_ARENA_POINTS": 19, - "LOOT_TYPE_ARENA_BONUS_POINTS": 20, - "LOOT_TYPE_GROUP": 21, - "LOOT_TYPE_FISHING_XP": 22, - "LOOT_TYPE_EVENT_CURRENCY_1": 24, - "LOOT_TYPE_EVENT_CURRENCY_2": 25, - "LOOT_TYPE_PVP_CURRENCY": 26, - "LOOT_TYPE_PVP_CURRENCY_BONUS": 27, - "LOOT_TYPE_PVP_TOURNEY_CURRENCY": 28, - "LOOT_TYPE_PVP_TOURNEY_CURRENCY_BONUS": 29, - "LOOT_TYPE_FURNITURE_ESSENCE": 30 - } + "hash": 1038376866 }, - "m_eventCurrency2Amount": { - "type": "int", - "id": 1, - "offset": 80, - "flags": 31, + "m_checkInventoryForCrafting": { + "type": "bool", + "id": 33, + "offset": 608, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 89898381 - } - } - }, - "2104732208": { - "name": "class ItemFinderBehaviorTemplate*", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 2104732208, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, + "hash": 1549644020 + }, + "m_playAsYourPetNPC": { + "type": "bool", + "id": 34, + "offset": 609, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3130754092 - } - } - }, - "2103766425": { - "name": "class MaxHealthLootInfo*", - "bases": [ - "LootInfo", - "LootInfoBase", - "PropertyClass" - ], - "hash": 2103766425, - "properties": { - "m_lootType": { - "type": "enum LootInfo::LOOT_TYPE", - "id": 0, - "offset": 72, - "flags": 2097183, + "hash": 827482678 + }, + "m_activityType": { + "type": "enum QuestTemplate::ActivityType", + "id": 35, + "offset": 612, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1591891442, + "hash": 231656390, "enum_options": { - "LOOT_TYPE_NONE": 0, - "LOOT_TYPE_GOLD": 1, - "LOOT_TYPE_MANA": 2, - "LOOT_TYPE_ITEM": 3, - "LOOT_TYPE_TREASURE_CARD": 4, - "LOOT_TYPE_MAGIC_XP": 5, - "LOOT_TYPE_ADD_SPELL": 6, - "LOOT_TYPE_MAX_HEALTH": 7, - "LOOT_TYPE_MAX_GOLD": 8, - "LOOT_TYPE_MAX_MANA": 9, - "LOOT_TYPE_MAX_POTION": 10, - "LOOT_TYPE_TRAINING_POINTS": 11, - "LOOT_TYPE_RECIPE": 12, - "LOOT_TYPE_CRAFTING_SLOT": 13, - "LOOT_TYPE_REAGENT": 14, - "LOOT_TYPE_PETSNACK": 15, - "LOOT_TYPE_GARDENING_XP": 16, - "LOOT_TYPE_PET_XP": 17, - "LOOT_TYPE_TREASURE_TABLE": 18, - "LOOT_TYPE_ARENA_POINTS": 19, - "LOOT_TYPE_ARENA_BONUS_POINTS": 20, - "LOOT_TYPE_GROUP": 21, - "LOOT_TYPE_FISHING_XP": 22, - "LOOT_TYPE_EVENT_CURRENCY_1": 24, - "LOOT_TYPE_EVENT_CURRENCY_2": 25, - "LOOT_TYPE_PVP_CURRENCY": 26, - "LOOT_TYPE_PVP_CURRENCY_BONUS": 27, - "LOOT_TYPE_PVP_TOURNEY_CURRENCY": 28, - "LOOT_TYPE_PVP_TOURNEY_CURRENCY_BONUS": 29, - "LOOT_TYPE_FURNITURE_ESSENCE": 30 + "ACTIVITY_NotActivity": 0, + "ACTIVITY_Crafting": 2, + "ACTIVITY_Fishing": 3, + "ACTIVITY_Gardening": 4, + "ACTIVITY_Pet": 5, + "ACTIVITY_Spell": 1 } }, - "m_healthToAdd": { - "type": "int", - "id": 1, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1370421596 - } - } - }, - "919573827": { - "name": "class RemoveParticleActorCinematicAction", - "bases": [ - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 919573827, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, + "m_allowedQuests": { + "type": "std::string", + "id": 36, + "offset": 616, + "flags": 268435463, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 2237098605 + "hash": 1695271656, + "enum_options": { + "__BASECLASS": "QuestTemplate" + } }, - "m_actor": { + "m_allowedZoneEvents": { "type": "std::string", - "id": 1, - "offset": 80, + "id": 37, + "offset": 632, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 2285866132 + "hash": 1503555828 }, - "m_effectName": { + "m_allowedMinigames": { "type": "std::string", - "id": 2, - "offset": 120, + "id": 38, + "offset": 648, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 2029161513 + "hash": 1962792925 }, - "m_nodeName": { + "m_tutorialScript": { "type": "std::string", - "id": 3, - "offset": 152, + "id": 39, + "offset": 712, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3607089954 - } - } - }, - "2103377604": { - "name": "class EnergyShopOption*", - "bases": [ - "ServiceOptionBase", - "PropertyClass" - ], - "hash": 2103377604, - "properties": { - "m_serviceName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2206028813 + "hash": 1565876420 }, - "m_iconKey": { - "type": "std::string", - "id": 1, - "offset": 168, - "flags": 31, - "container": "Static", - "dynamic": false, + "m_modList": { + "type": "class TutorialZoneMod*", + "id": 40, + "offset": 664, + "flags": 7, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 2457138637 + "pointer": true, + "hash": 342986186 }, - "m_displayKey": { - "type": "std::string", - "id": 2, - "offset": 104, - "flags": 31, + "m_requiresTutorialZone": { + "type": "bool", + "id": 41, + "offset": 776, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3023276954 + "hash": 1728419315 }, - "m_serviceIndex": { - "type": "unsigned int", - "id": 3, - "offset": 204, - "flags": 31, + "m_scriptZone": { + "type": "std::string", + "id": 42, + "offset": 744, + "flags": 268435463, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2103126710 + "hash": 3110729452, + "enum_options": { + "__BASECLASS": "ZoneData" + } }, - "m_forceInteract": { + "m_visibleTutorial": { "type": "bool", - "id": 4, - "offset": 200, - "flags": 31, + "id": 43, + "offset": 777, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1705789564 + "hash": 1398395349 } } }, - "1700069593": { - "name": "class SpellCardAttachmentCinematicAction*", + "1878183398": { + "name": "class ObstacleCourseObstacleBehaviorTemplate*", "bases": [ - "ActorCinematicAction", - "CinematicAction", + "BehaviorTemplate", "PropertyClass" ], - "hash": 1700069593, + "hash": 1878183398, "properties": { - "m_timeOffset": { - "type": "float", + "m_behaviorName": { + "type": "std::string", "id": 0, "offset": 72, "flags": 7, @@ -16728,250 +15401,312 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - }, - "m_nodeName": { - "type": "std::string", - "id": 2, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3607089954 - }, - "m_offset": { - "type": "class Vector3D", - "id": 3, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2445636425 - }, - "m_rotation": { - "type": "class Vector3D", - "id": 4, - "offset": 164, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3065089042 + "hash": 3130754092 } } }, - "1696459775": { - "name": "class SharedPointer", + "600931345": { + "name": "class ControlSWF*", "bases": [ - "CameraCutCinematicAction", - "CinematicAction", + "Window", "PropertyClass" ], - "hash": 1696459775, + "hash": 600931345, "properties": { - "m_timeOffset": { - "type": "float", + "m_sName": { + "type": "std::string", "id": 0, - "offset": 72, - "flags": 7, + "offset": 80, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 + "hash": 2306437263 }, - "m_cameras": { - "type": "std::string", + "m_Children": { + "type": "class SharedPointer", "id": 1, - "offset": 80, - "flags": 131079, + "offset": 112, + "flags": 65671, "container": "Vector", "dynamic": true, "singleton": false, - "pointer": false, - "hash": 3217341687 + "pointer": true, + "hash": 2621225959 }, - "m_altcameras": { - "type": "std::string", + "m_Style": { + "type": "unsigned int", "id": 2, - "offset": 104, - "flags": 131079, - "container": "Vector", - "dynamic": true, + "offset": 152, + "flags": 1048583, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 1882980152 + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "SCALE_CHILDREN": 2, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "FOCUS_LOCKED": 64, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152 + } }, - "m_initialCameraName": { - "type": "std::string", + "m_Flags": { + "type": "unsigned int", "id": 3, - "offset": 128, - "flags": 7, + "offset": 156, + "flags": 1048583, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2526319343 + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648, + "RESIZE_TO_FIT_MOVIE": 8388608 + } }, - "m_camRel": { - "type": "enum CameraCutCinematicAction::kCameraRelative", + "m_Window": { + "type": "class Rect", "id": 4, - "offset": 168, - "flags": 2097159, + "offset": 160, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 919962138, - "enum_options": { - "kNone": 0, - "kSigil": 1, - "kTarget": 2, - "kSource": 3, - "kActor": 4 - } + "hash": 3105139380 }, - "m_interpolationDuration": { + "m_fTargetAlpha": { "type": "float", "id": 5, - "offset": 160, - "flags": 7, + "offset": 212, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1458058437 + "hash": 1809129834 }, - "m_releaseInterpolationDuration": { + "m_fDisabledAlpha": { "type": "float", "id": 6, - "offset": 164, - "flags": 7, + "offset": 216, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1807754278, - "enum_options": { - "__DEFAULT": "1.0" - } + "hash": 1389987675 }, - "m_bUseOrientationOverride": { - "type": "bool", + "m_fAlpha": { + "type": "float", "id": 7, - "offset": 188, - "flags": 7, + "offset": 208, + "flags": 65671, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1088002894 + "hash": 482130755 }, - "m_overrideOrientation": { - "type": "class Vector3D", + "m_pWindowStyle": { + "type": "class SharedPointer", "id": 8, - "offset": 192, - "flags": 7, + "offset": 232, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 3267199758 + "pointer": true, + "hash": 3623628394 }, - "m_bUseLocationOverride": { - "type": "bool", + "m_sHelp": { + "type": "std::wstring", "id": 9, - "offset": 172, - "flags": 7, + "offset": 248, + "flags": 4194439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1767170875 + "hash": 2102211316 }, - "m_overrideLocation": { - "type": "class Vector3D", + "m_sScript": { + "type": "std::string", "id": 10, - "offset": 176, - "flags": 7, + "offset": 352, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3776417691 + "hash": 1846695875 }, - "m_namedActor": { - "type": "std::string", + "m_Offset": { + "type": "class Point", "id": 11, - "offset": 208, - "flags": 7, + "offset": 192, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3413532537 + "hash": 3389835433 }, - "m_camScale": { - "type": "float", + "m_Scale": { + "type": "class Point", "id": 12, - "offset": 240, + "offset": 200, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547159940 + }, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513510520 + }, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3091503757 + }, + "m_sMovieFilename": { + "type": "std::string", + "id": 16, + "offset": 584, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 979098224 + "hash": 1581619567 } } }, - "2103478230": { - "name": "class PlayerAggroBehavior", + "1025667684": { + "name": "class TodaysQuestData*", "bases": [ - "AggroBehavior", - "BehaviorInstance", "PropertyClass" ], - "hash": 2103478230, + "hash": 1025667684, "properties": { - "m_behaviorTemplateNameID": { + "m_todaysQuestList": { "type": "unsigned int", "id": 0, - "offset": 104, - "flags": 39, + "offset": 72, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1866614959 + } + } + }, + "1449902705": { + "name": "class ReqItemIsEgg*", + "bases": [ + "Requirement", + "PropertyClass" + ], + "hash": 1449902705, + "properties": { + "m_applyNOT": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 + "hash": 1746328074, + "enum_options": { + "__DEFAULT": 0 + } + }, + "m_operator": { + "type": "enum Requirement::Operator", + "id": 1, + "offset": 76, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2672792317, + "enum_options": { + "ROP_AND": 0, + "ROP_OR": 1, + "__DEFAULT": "ROP_AND" + } } } }, - "922054873": { - "name": "class BadgeLeaderboardBehaviorTemplate*", + "1877553709": { + "name": "class GardeningLevelInfo", "bases": [ - "BehaviorTemplate", "PropertyClass" ], - "hash": 922054873, + "hash": 1877553709, "properties": { - "m_behaviorName": { - "type": "std::string", + "m_level": { + "type": "unsigned char", "id": 0, "offset": 72, "flags": 7, @@ -16979,17 +15714,40 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 3130754092 + "hash": 1438884808 + }, + "m_xpToLevel": { + "type": "int", + "id": 1, + "offset": 76, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1972600157 + }, + "m_levelName": { + "type": "std::string", + "id": 2, + "offset": 80, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3595417396 } } }, - "1694400497": { - "name": "class SharedPointer", + "599050860": { + "name": "class SharedPointer", "bases": [ + "ControlText", "Window", "PropertyClass" ], - "hash": 1694400497, + "hash": 599050860, "properties": { "m_sName": { "type": "std::string", @@ -17025,11 +15783,9 @@ "hash": 983582334, "enum_options": { "HAS_BACK": 1, - "SCALE_CHILDREN": 2, "CAN_MOVE": 4, "CAN_SIZE": 8, "CAN_SCROLL": 16, - "FOCUS_LOCKED": 64, "CAN_FOCUS": 128, "CAN_DOCK": 32, "DO_NOT_CAPTURE_MOUSE": 256, @@ -17041,7 +15797,9 @@ "USE_ALPHA_BOUNDS": 8192, "AUTO_GROW": 16384, "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152 + "AUTO_RESIZE": 49152, + "DO_NOT_WRAP": 134217728, + "FIT_TEXT": 268435456 } }, "m_Flags": { @@ -17201,704 +15959,1258 @@ "singleton": false, "pointer": false, "hash": 3091503757 - } - } - }, - "920296770": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 920296770, - "properties": { - "m_displayPath": { - "type": "bool", - "id": 0, - "offset": 72, - "flags": 7, + }, + "m_sText": { + "type": "std::wstring", + "id": 16, + "offset": 584, + "flags": 4194439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 951754038 + "hash": 2102642960 }, - "m_findSideQuests": { + "m_sTooltip": { + "type": "std::wstring", + "id": 17, + "offset": 616, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1680475798 + }, + "m_bUseDropShadow": { "type": "bool", - "id": 1, - "offset": 73, - "flags": 7, + "id": 18, + "offset": 653, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1456032030 + "hash": 93063037 }, - "m_silent": { + "m_bUseOutline": { "type": "bool", - "id": 2, - "offset": 74, - "flags": 7, + "id": 19, + "offset": 654, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 950595970 + "hash": 744292994 }, - "m_stayOnActiveQuest": { + "m_bEnableWordWrap": { "type": "bool", - "id": 3, - "offset": 75, - "flags": 7, + "id": 20, + "offset": 655, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1243951391 + "hash": 430904562 }, - "m_stopOnQuestComplete": { + "m_bEnableToggle": { "type": "bool", - "id": 4, - "offset": 76, - "flags": 7, + "id": 21, + "offset": 652, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1146878209 - } - } - }, - "1692665452": { - "name": "class AuctionHouseOffering*", - "bases": [ - "PropertyClass" - ], - "hash": 1692665452, - "properties": { - "m_auctionList": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 31, - "container": "List", - "dynamic": true, + "hash": 1937994142 + }, + "m_nLeadingAdjust": { + "type": "int", + "id": 22, + "offset": 656, + "flags": 135, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3624813468 + "pointer": false, + "hash": 1559480167 }, - "m_auctionHousePurchaseKey": { + "m_fadeInDuration": { + "type": "float", + "id": 23, + "offset": 696, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 770484100 + }, + "m_idleDuration": { + "type": "float", + "id": 24, + "offset": 700, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 383632219 + }, + "m_fadeOutDuration": { + "type": "float", + "id": 25, + "offset": 704, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 666963557 + }, + "m_easeInFunction": { "type": "unsigned int", - "id": 1, - "offset": 88, - "flags": 31, + "id": 26, + "offset": 716, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 394777768 + "hash": 662405480, + "enum_options": { + "Linear": 0, + "Quadratic": 1, + "Cubic": 2, + "Quartic": 3, + "Quintic": 4, + "Trigonometric": 5, + "Exponential": 6, + "Circular": 7 + } + }, + "m_easeOutFunction": { + "type": "unsigned int", + "id": 27, + "offset": 720, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2174208521, + "enum_options": { + "Linear": 0, + "Quadratic": 1, + "Cubic": 2, + "Quartic": 3, + "Quintic": 4, + "Trigonometric": 5, + "Exponential": 6, + "Circular": 7 + } } } }, - "920052956": { - "name": "class NonCombatMayCastSpellTemplate*", + "598910457": { + "name": "class SharedPointer", "bases": [ - "GameEffectTemplate", + "PositionalSoundEmitterInfo", + "SoundEmitterInfo", + "SoundInfo", + "ClientObjectInfo", + "CoreObjectInfo", "PropertyClass" ], - "hash": 920052956, + "hash": 598910457, "properties": { - "m_effectName": { - "type": "std::string", + "m_templateID.m_full": { + "type": "unsigned __int64", "id": 0, "offset": 72, - "flags": 7, + "flags": 33554439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2029161513 + "hash": 633907631 }, - "m_effectCategory": { - "type": "std::string", + "m_nObjectID": { + "type": "unsigned int", "id": 1, - "offset": 104, + "offset": 80, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1852673222 + "hash": 748496927 }, - "m_sortOrder": { - "type": "int", + "m_location": { + "type": "class Vector3D", "id": 2, - "offset": 148, + "offset": 84, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1411218206 + "hash": 2239683611 }, - "m_duration": { - "type": "double", + "m_orientation": { + "type": "class Vector3D", "id": 3, - "offset": 192, + "offset": 96, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2727932435 + "hash": 2344058766 }, - "m_stackingCategories": { - "type": "std::string", + "m_fScale": { + "type": "float", "id": 4, - "offset": 160, + "offset": 108, "flags": 7, - "container": "List", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 1774497525 + "hash": 503137701 }, - "m_isPersistent": { - "type": "bool", + "m_zoneTag": { + "type": "std::string", "id": 5, - "offset": 153, + "offset": 152, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 923861920 + "hash": 3405382643 }, - "m_bIsOnPet": { - "type": "bool", + "m_startState": { + "type": "std::string", "id": 6, - "offset": 154, + "offset": 184, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 522593303 + "hash": 2166880458 }, - "m_isPublic": { - "type": "bool", + "m_overrideName": { + "type": "std::string", "id": 7, - "offset": 152, - "flags": 7, + "offset": 120, + "flags": 8388615, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1728439822 + "hash": 1990707228 }, - "m_visualEffectAddName": { - "type": "std::string", + "m_globalDynamic": { + "type": "bool", "id": 8, - "offset": 200, + "offset": 116, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3382086694 + "hash": 1951691017 }, - "m_visualEffectRemoveName": { - "type": "std::string", + "m_bUndetectable": { + "type": "bool", "id": 9, - "offset": 232, + "offset": 216, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1541697323 + "hash": 1907454341 }, - "m_onAddFunctorName": { - "type": "std::string", + "m_spawnRequirements": { + "type": "class SharedPointer", "id": 10, - "offset": 280, + "offset": 224, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1561843107 + "pointer": true, + "hash": 2309120870 }, - "m_onRemoveFunctorName": { - "type": "std::string", + "m_loadingType": { + "type": "enum CoreObjectInfo::LoadingType", "id": 11, - "offset": 312, - "flags": 7, + "offset": 112, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2559017864 + "hash": 3522422550, + "enum_options": { + "STATIC_CLIENT_SERVER": 0, + "STATIC_CLIENT": 1, + "STATIC_SERVER": 2, + "DYNAMIC_SERVER": 3 + } }, - "m_stackingRule": { - "type": "enum STACKING_RULE", + "m_radius": { + "type": "float", "id": 12, - "offset": 144, - "flags": 2097159, + "offset": 256, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 431568889, - "enum_options": { - "STACKING_ALLOWED": 0, - "STACKING_NOSTACK": 1, - "STACKING_REPLACE": 2 + "hash": 989410271 + }, + "m_exclusive": { + "type": "bool", + "id": 13, + "offset": 260, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 824383403 + }, + "m_startActive": { + "type": "bool", + "id": 14, + "offset": 261, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2031339229 + }, + "m_category": { + "type": "enum AudioCategory", + "id": 15, + "offset": 264, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2951251982, + "enum_options": { + "AudioCategory_Irrelevent": 0, + "AudioCategory_Accoustic": 1, + "AudioCategory_Noise": 2, + "AudioCategory_Music": 3 } }, - "m_spellName": { + "m_override": { + "type": "int", + "id": 16, + "offset": 268, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 136872410, + "enum_options": { + "OVR_RADIUS": 1, + "OVR_CATEGORY": 2, + "OVR_EXCLUSIVE": 4, + "OVR_SIGNATURE": 64, + "OVR_VOLUME": 8, + "OVR_LOOPCOUNT": 16, + "OVR_ACTIVE": 32, + "OVR_PLAYPROG": 128, + "OVR_PRIORITY": 256, + "OVR_PROGTIME": 512, + "OVR_FILTERSET": 1024 + } + }, + "m_enableReqs": { + "type": "class SharedPointer", + "id": 17, + "offset": 272, + "flags": 263, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3158020443 + }, + "m_volume": { + "type": "float", + "id": 18, + "offset": 288, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1162855023 + }, + "m_loopCount": { + "type": "int", + "id": 19, + "offset": 292, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 865634717 + }, + "m_trackFilenameList": { "type": "std::string", - "id": 13, + "id": 20, + "offset": 312, + "flags": 131079, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2531081709 + }, + "m_playList": { + "type": "class PlayListEntry*", + "id": 21, + "offset": 336, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 3907873161 + }, + "m_priority": { + "type": "int", + "id": 22, + "offset": 296, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1235205852 + }, + "m_progression": { + "type": "enum PlayList::Progression", + "id": 23, + "offset": 300, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3279400238, + "enum_options": { + "Sequence": 0, + "Random": 1, + "SequenceOnceOnly": 2, + "RandomNoRepeat": 3 + } + }, + "m_progressMin": { + "type": "float", + "id": 24, + "offset": 304, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1497550192 + }, + "m_progressMax": { + "type": "float", + "id": 25, + "offset": 308, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1497549938 + }, + "m_audioFilterSet": { + "type": "unsigned int", + "id": 26, "offset": 360, + "flags": 33554439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 831339825 + }, + "m_clientTag": { + "type": "std::string", + "id": 27, + "offset": 368, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2688485244 + "hash": 3409856790 + }, + "m_innerRadius": { + "type": "float", + "id": 28, + "offset": 400, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 686816091 + }, + "m_nifObjName": { + "type": "std::string", + "id": 29, + "offset": 408, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513857812 + }, + "m_animNIFObjName": { + "type": "std::string", + "id": 30, + "offset": 440, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2245834777 + }, + "m_inverted": { + "type": "bool", + "id": 31, + "offset": 472, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1034821044 + }, + "m_initialDelay": { + "type": "float", + "id": 32, + "offset": 476, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 629858288 + }, + "m_fInsideAngle": { + "type": "float", + "id": 33, + "offset": 480, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1114383840 + }, + "m_fOutsideAngle": { + "type": "float", + "id": 34, + "offset": 484, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1627152289 + }, + "m_fOutsideVolume": { + "type": "float", + "id": 35, + "offset": 488, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 90369618 + }, + "m_fRangeScale": { + "type": "float", + "id": 36, + "offset": 492, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1749294034 + }, + "m_fAttenuationFactor": { + "type": "float", + "id": 37, + "offset": 496, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 273292776 + }, + "m_eAttenuationType": { + "type": "enum PositionInfoAttenuationType", + "id": 38, + "offset": 500, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2427193304, + "enum_options": { + "Standard": 0, + "Unit Range Power": 1 + } } } }, - "1692665412": { - "name": "class AuctionHouseOffering", + "1026276119": { + "name": "class SharedPointer", "bases": [ "PropertyClass" ], - "hash": 1692665412, + "hash": 1026276119, "properties": { - "m_auctionList": { - "type": "class SharedPointer", + "m_name": { + "type": "std::string", "id": 0, "offset": 72, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 3624813468 - }, - "m_auctionHousePurchaseKey": { - "type": "unsigned int", - "id": 1, - "offset": 88, - "flags": 31, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 394777768 + "hash": 1717359772 } } }, - "2104732198": { - "name": "class ItemFinderBehaviorTemplate", + "1450771853": { + "name": "class SharedPointer", "bases": [ - "BehaviorTemplate", "PropertyClass" ], - "hash": 2104732198, + "hash": 1450771853, + "properties": {} + }, + "1879086197": { + "name": "class SharedPointer", + "bases": [ + "SG_GameAction_PlayEffect", + "SG_GameAction", + "PropertyClass" + ], + "hash": 1879086197, "properties": { - "m_behaviorName": { - "type": "std::string", + "m_target": { + "type": "enum SG_GameAction::SG_Target", "id": 0, "offset": 72, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1166870973, + "enum_options": { + "Target_Ball": 0, + "Target_Self": 1, + "Target_Connections": 2, + "__DEFAULT": "Target_Ball" + } + }, + "m_graphicArguments": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1656480079 + }, + "m_fMinimumTime": { + "type": "float", + "id": 2, + "offset": 144, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3130754092 + "hash": 1516804616 + }, + "m_bDisplaysScore": { + "type": "bool", + "id": 3, + "offset": 148, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 722455866 + }, + "m_bPlaysPointsSounds": { + "type": "bool", + "id": 4, + "offset": 149, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 717919607 } } }, - "919856348": { - "name": "class NonCombatMayCastSpellTemplate", + "1450573585": { + "name": "class TutorialQuestTemplate", "bases": [ - "GameEffectTemplate", + "QuestTemplate", + "CoreTemplate", "PropertyClass" ], - "hash": 919856348, + "hash": 1450573585, "properties": { - "m_effectName": { - "type": "std::string", + "m_behaviors": { + "type": "class BehaviorTemplate*", "id": 0, "offset": 72, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "Vector", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 2029161513 + "pointer": true, + "hash": 1197808594 }, - "m_effectCategory": { + "m_questName": { "type": "std::string", "id": 1, - "offset": 104, + "offset": 96, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1852673222 + "hash": 1702112846 }, - "m_sortOrder": { - "type": "int", + "m_questNameID": { + "type": "unsigned int", "id": 2, - "offset": 148, + "offset": 128, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1411218206 + "hash": 1530354349 }, - "m_duration": { - "type": "double", + "m_questTitle": { + "type": "std::string", "id": 3, - "offset": 192, - "flags": 7, + "offset": 136, + "flags": 8388615, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2727932435 + "hash": 1805465583 }, - "m_stackingCategories": { + "m_questInfo": { "type": "std::string", "id": 4, - "offset": 160, - "flags": 7, - "container": "List", - "dynamic": true, + "offset": 168, + "flags": 8388615, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 1774497525 + "hash": 1701947097 }, - "m_isPersistent": { - "type": "bool", + "m_questPrep": { + "type": "std::string", "id": 5, - "offset": 153, - "flags": 7, + "offset": 200, + "flags": 8388615, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 923861920 + "hash": 1702202980 }, - "m_bIsOnPet": { - "type": "bool", + "m_questUnderway": { + "type": "std::string", "id": 6, - "offset": 154, - "flags": 7, + "offset": 232, + "flags": 8388615, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 522593303 + "hash": 2308400380 }, - "m_isPublic": { - "type": "bool", + "m_questComplete": { + "type": "std::string", "id": 7, - "offset": 152, - "flags": 7, + "offset": 264, + "flags": 8388615, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1728439822 + "hash": 3484586150 }, - "m_visualEffectAddName": { + "m_startGoals": { "type": "std::string", "id": 8, - "offset": 200, + "offset": 392, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 3382086694 + "hash": 2152469471 }, - "m_visualEffectRemoveName": { - "type": "std::string", + "m_goals": { + "type": "class SharedPointer", "id": 9, - "offset": 232, + "offset": 408, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1374041870 + }, + "m_startResults": { + "type": "class SharedPointer", + "id": 10, + "offset": 424, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1541697323 + "pointer": true, + "hash": 2094517692 }, - "m_onAddFunctorName": { - "type": "std::string", - "id": 10, - "offset": 280, + "m_endResults": { + "type": "class SharedPointer", + "id": 11, + "offset": 440, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2118364133 + }, + "m_requirements": { + "type": "class RequirementList*", + "id": 12, + "offset": 456, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2840985510 + }, + "m_prepRequirements": { + "type": "class RequirementList*", + "id": 13, + "offset": 464, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3016776541 + }, + "m_pruneRequirements": { + "type": "class RequirementList*", + "id": 14, + "offset": 472, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3211248912 + }, + "m_prepAlways": { + "type": "bool", + "id": 15, + "offset": 304, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1561843107 + "hash": 1423046331 }, - "m_onRemoveFunctorName": { + "m_clientTags": { "type": "std::string", - "id": 11, + "id": 16, "offset": 312, "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2319030025 + }, + "m_goalLogic": { + "type": "class GoalCompleteLogic*", + "id": 17, + "offset": 520, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 963824003 + }, + "m_questLevel": { + "type": "int", + "id": 18, + "offset": 296, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2559017864 + "hash": 298136804 }, - "m_stackingRule": { - "type": "enum STACKING_RULE", - "id": 12, - "offset": 144, - "flags": 2097159, + "m_questRepeat": { + "type": "int", + "id": 19, + "offset": 300, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 431568889, - "enum_options": { - "STACKING_ALLOWED": 0, - "STACKING_NOSTACK": 1, - "STACKING_REPLACE": 2 - } + "hash": 1480345805 }, - "m_spellName": { + "m_onStartQuestScript": { "type": "std::string", - "id": 13, + "id": 20, + "offset": 328, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2577549709 + }, + "m_onEndQuestScript": { + "type": "std::string", + "id": 21, "offset": 360, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2688485244 - } - } - }, - "2104110305": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 2104110305, - "properties": { - "m_shopList": { - "type": "gid", - "id": 0, - "offset": 72, - "flags": 31, + "hash": 2285648118 + }, + "m_dialogList": { + "type": "class ActorDialogListBase*", + "id": 22, + "offset": 480, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1909154969 + }, + "m_missionDoors": { + "type": "std::string", + "id": 23, + "offset": 504, + "flags": 7, "container": "List", "dynamic": true, "singleton": false, "pointer": false, - "hash": 446354318 + "hash": 2428103908 }, - "m_recipeList": { - "type": "std::string", - "id": 1, - "offset": 88, - "flags": 31, + "m_dynaMods": { + "type": "class QuestDynaModInfo*", + "id": 24, + "offset": 488, + "flags": 7, "container": "List", "dynamic": true, "singleton": false, - "pointer": false, - "hash": 3311769839 + "pointer": true, + "hash": 3330743945 }, - "m_shopTitle": { - "type": "std::string", - "id": 2, - "offset": 104, - "flags": 31, + "m_isHidden": { + "type": "bool", + "id": 25, + "offset": 305, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3349689687 + "hash": 1401188667 }, - "m_sellModifier": { - "type": "float", - "id": 3, - "offset": 136, - "flags": 31, + "m_outdated": { + "type": "bool", + "id": 26, + "offset": 306, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 360128886 + "hash": 1565198349 }, - "m_shopType": { - "type": "int", - "id": 4, - "offset": 140, - "flags": 31, + "m_noQuestHelper": { + "type": "bool", + "id": 27, + "offset": 307, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 446675542 + "hash": 578010882 }, - "m_CSRTestShop": { + "m_mainline": { "type": "bool", - "id": 5, - "offset": 144, - "flags": 31, + "id": 28, + "offset": 552, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1651336981 + "hash": 1749856224 }, - "m_furnitureShop": { - "type": "int", - "id": 6, - "offset": 148, - "flags": 31, + "m_defaultDialogAnimation": { + "type": "std::string", + "id": 29, + "offset": 560, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2400834320 + }, + "m_skipQHAutoSelect": { + "type": "bool", + "id": 30, + "offset": 553, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1321981560 + "hash": 2024815836 }, - "m_activeHolidayList": { - "type": "std::string", - "id": 7, - "offset": 152, - "flags": 31, + "m_questEffectInfoList": { + "type": "class SharedPointer", + "id": 31, + "offset": 536, + "flags": 7, "container": "List", "dynamic": true, "singleton": false, + "pointer": true, + "hash": 2494024956 + }, + "m_forceInteraction": { + "type": "bool", + "id": 32, + "offset": 554, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, "pointer": false, - "hash": 2341827453 - } - } - }, - "1692773221": { - "name": "class DebugCinematicsComponent*", - "bases": [ - "PropertyClass" - ], - "hash": 1692773221, - "properties": {} - }, - "920229174": { - "name": "class CastleMagicBehaviorBase*", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 920229174, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, + "hash": 1038376866 + }, + "m_checkInventoryForCrafting": { + "type": "bool", + "id": 33, + "offset": 608, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 + "hash": 1549644020 }, - "m_castleMagicData": { - "type": "std::string", - "id": 1, - "offset": 128, - "flags": 575, + "m_playAsYourPetNPC": { + "type": "bool", + "id": 34, + "offset": 609, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2874597138 - } - } - }, - "1693583993": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1693583993, - "properties": { - "m_allowedTypes": { + "hash": 827482678 + }, + "m_activityType": { + "type": "enum QuestTemplate::ActivityType", + "id": 35, + "offset": 612, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 231656390, + "enum_options": { + "ACTIVITY_NotActivity": 0, + "ACTIVITY_Crafting": 2, + "ACTIVITY_Fishing": 3, + "ACTIVITY_Gardening": 4, + "ACTIVITY_Pet": 5, + "ACTIVITY_Spell": 1 + } + }, + "m_allowedQuests": { "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, + "id": 36, + "offset": 616, + "flags": 268435463, "container": "List", "dynamic": true, "singleton": false, "pointer": false, - "hash": 3134367000 + "hash": 1695271656, + "enum_options": { + "__BASECLASS": "QuestTemplate" + } }, - "m_recipeList": { + "m_allowedZoneEvents": { "type": "std::string", - "id": 1, - "offset": 88, - "flags": 31, + "id": 37, + "offset": 632, + "flags": 7, "container": "List", "dynamic": true, "singleton": false, "pointer": false, - "hash": 3311769839 + "hash": 1503555828 }, - "m_failedRequirementsList": { + "m_allowedMinigames": { "type": "std::string", - "id": 2, - "offset": 104, - "flags": 31, + "id": 38, + "offset": 648, + "flags": 7, "container": "List", "dynamic": true, "singleton": false, "pointer": false, - "hash": 1864028544 + "hash": 1962792925 }, - "m_noCooldown": { + "m_tutorialScript": { + "type": "std::string", + "id": 39, + "offset": 712, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1565876420 + }, + "m_modList": { + "type": "class TutorialZoneMod*", + "id": 40, + "offset": 664, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 342986186 + }, + "m_requiresTutorialZone": { "type": "bool", - "id": 3, - "offset": 120, - "flags": 31, + "id": 41, + "offset": 776, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 751967189 + "hash": 1728419315 }, - "m_noCategories": { + "m_scriptZone": { + "type": "std::string", + "id": 42, + "offset": 744, + "flags": 268435463, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3110729452, + "enum_options": { + "__BASECLASS": "ZoneData" + } + }, + "m_visibleTutorial": { "type": "bool", - "id": 4, - "offset": 121, - "flags": 31, + "id": 43, + "offset": 777, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 767850966 + "hash": 1398395349 } } }, - "2105386940": { - "name": "class GroupMember", + "599926675": { + "name": "class SharedPointer", "bases": [ + "ObjStateOverrideInfo", "PropertyClass" ], - "hash": 2105386940, + "hash": 599926675, "properties": { - "m_GlobalID": { - "type": "gid", + "m_stateNameID": { + "type": "unsigned int", "id": 0, "offset": 72, "flags": 31, @@ -17906,10 +17218,10 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 843146230 + "hash": 2039264668 }, - "m_CharacterID": { - "type": "gid", + "m_emoteName": { + "type": "std::string", "id": 1, "offset": 80, "flags": 31, @@ -17917,122 +17229,219 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 1626688306 + "hash": 2426164182 }, - "m_sNameBlob": { + "m_particleAsset": { "type": "std::string", "id": 2, - "offset": 88, + "offset": 112, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2372396590 + "hash": 2165004143 }, - "m_schoolID": { - "type": "unsigned int", + "m_loop": { + "type": "bool", "id": 3, - "offset": 120, + "offset": 144, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 369010242 + "hash": 222084781 }, - "m_level": { - "type": "unsigned int", + "m_particleNode": { + "type": "std::string", "id": 4, - "offset": 124, + "offset": 152, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1012687813 + "hash": 3405651669 }, - "m_zoneDisplayName": { + "m_soundAsset": { "type": "std::string", "id": 5, - "offset": 128, + "offset": 184, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1962339438 + "hash": 3579637124 }, - "m_hasFilteredChat": { - "type": "unsigned char", + "m_wizBangID": { + "type": "unsigned int", "id": 6, - "offset": 160, + "offset": 216, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2657823291 + "hash": 496076748 + } + } + }, + "599191426": { + "name": "class PipConversionValues", + "bases": [ + "PropertyClass" + ], + "hash": 599191426, + "properties": { + "m_capValue": { + "type": "float", + "id": 0, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1100002568 }, - "m_sigilSlot": { - "type": "unsigned int", - "id": 7, - "offset": 164, - "flags": 31, + "m_scalarBase": { + "type": "float", + "id": 1, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1891552167 + "hash": 2028329704 + }, + "m_scalingFactor": { + "type": "float", + "id": 2, + "offset": 76, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1636384119 } } }, - "2105219330": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 2105219330, - "properties": {} - }, - "921684498": { - "name": "class BattlegroundMatchmaking", + "1036579686": { + "name": "class SharedPointer", "bases": [ + "InteractableOption", + "ServiceOptionBase", "PropertyClass" ], - "hash": 921684498, + "hash": 1036579686, "properties": { - "m_matchSize": { - "type": "int", + "m_serviceName": { + "type": "std::string", "id": 0, "offset": 72, - "flags": 7, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 563704930 + "hash": 2206028813 }, - "m_secondsWaited": { - "type": "int", + "m_iconKey": { + "type": "std::string", "id": 1, - "offset": 76, - "flags": 7, + "offset": 168, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 606761671 + "hash": 2457138637 + }, + "m_displayKey": { + "type": "std::string", + "id": 2, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3023276954 + }, + "m_serviceIndex": { + "type": "unsigned int", + "id": 3, + "offset": 204, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2103126710 + }, + "m_forceInteract": { + "type": "bool", + "id": 4, + "offset": 200, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1705789564 + }, + "m_optionIndex": { + "type": "int", + "id": 5, + "offset": 216, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 276287019 } } }, - "2105004635": { - "name": "class SharedPointer", + "1879818146": { + "name": "struct PvPDisplayWindowEventData", + "bases": [], + "hash": 1879818146, + "properties": {} + }, + "1029736407": { + "name": "class PlayerAggroBehavior*", + "bases": [ + "AggroBehavior", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1029736407, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + } + } + }, + "1028134658": { + "name": "class SpectatorWindow*", "bases": [ "Window", "PropertyClass" ], - "hash": 2105004635, + "hash": 1028134658, "properties": { "m_sName": { "type": "std::string", @@ -18247,15 +17656,15 @@ } } }, - "1694575287": { - "name": "class LogoData*", + "1451964126": { + "name": "class PathBehaviorTemplate::Action", "bases": [ "PropertyClass" ], - "hash": 1694575287, + "hash": 1451964126, "properties": { - "m_logoFile": { - "type": "std::string", + "m_nPathID": { + "type": "gid", "id": 0, "offset": 72, "flags": 7, @@ -18263,83 +17672,63 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 2251052844 + "hash": 214382368 }, - "m_displayTime": { - "type": "float", + "m_nNodeID": { + "type": "int", "id": 1, - "offset": 104, + "offset": 80, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1039626236 + "hash": 152152635, + "enum_options": { + "__DEFAULT": 4294967295 + } }, - "m_text": { - "type": "std::string", + "m_nPriority": { + "type": "int", "id": 2, - "offset": 144, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1717580128 - } - } - }, - "1694574647": { - "name": "class LogoData", - "bases": [ - "PropertyClass" - ], - "hash": 1694574647, - "properties": { - "m_logoFile": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2251052844 - }, - "m_displayTime": { - "type": "float", - "id": 1, - "offset": 104, + "offset": 84, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1039626236 + "hash": 1515251530, + "enum_options": { + "__DEFAULT": 100 + } }, - "m_text": { - "type": "std::string", - "id": 2, - "offset": 144, + "m_nChance": { + "type": "int", + "id": 3, + "offset": 88, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1717580128 + "hash": 1860748394, + "enum_options": { + "__DEFAULT": 50 + } } } }, - "922573028": { - "name": "class AutobotConfig*", + "1026850629": { + "name": "class ClientAnnounceTextCinematicAction*", "bases": [ + "AnnounceTextCinematicAction", + "CinematicAction", "PropertyClass" ], - "hash": 922573028, + "hash": 1026850629, "properties": { - "m_displayPath": { - "type": "bool", + "m_timeOffset": { + "type": "float", "id": 0, "offset": 72, "flags": 7, @@ -18347,62 +17736,62 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 951754038 + "hash": 2237098605 }, - "m_findSideQuests": { - "type": "bool", + "m_text": { + "type": "std::string", "id": 1, - "offset": 73, + "offset": 112, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1456032030 + "hash": 1717580128 }, - "m_silent": { + "m_onlyForPlayer": { "type": "bool", "id": 2, - "offset": 74, + "offset": 144, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 950595970 + "hash": 249913353 }, - "m_stayOnActiveQuest": { - "type": "bool", + "m_stringTable": { + "type": "std::string", "id": 3, - "offset": 75, + "offset": 80, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1243951391 + "hash": 3386025626 }, - "m_stopOnQuestComplete": { + "m_effectParamMadlib": { "type": "bool", "id": 4, - "offset": 76, + "offset": 146, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1146878209 + "hash": 292989178 } } }, - "2105241716": { - "name": "class ClassProjectLeaderboardPlayer", + "1451957982": { + "name": "class PathBehaviorTemplate::Action*", "bases": [ "PropertyClass" ], - "hash": 2105241716, + "hash": 1451957982, "properties": { - "m_playerGID": { + "m_nPathID": { "type": "gid", "id": 0, "offset": 72, @@ -18411,10 +17800,10 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 578537369 + "hash": 214382368 }, - "m_packedName": { - "type": "unsigned int", + "m_nNodeID": { + "type": "int", "id": 1, "offset": 80, "flags": 7, @@ -18422,10 +17811,13 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 518911062 + "hash": 152152635, + "enum_options": { + "__DEFAULT": 4294967295 + } }, - "m_points": { - "type": "unsigned int", + "m_nPriority": { + "type": "int", "id": 2, "offset": 84, "flags": 7, @@ -18433,530 +17825,569 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 1049128778 + "hash": 1515251530, + "enum_options": { + "__DEFAULT": 100 + } + }, + "m_nChance": { + "type": "int", + "id": 3, + "offset": 88, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1860748394, + "enum_options": { + "__DEFAULT": 50 + } } } }, - "922573025": { - "name": "class AutobotConfig", + "1880742470": { + "name": "class SharedPointer", "bases": [ + "PetTalentControlBase", + "Window", "PropertyClass" ], - "hash": 922573025, + "hash": 1880742470, "properties": { - "m_displayPath": { - "type": "bool", + "m_sName": { + "type": "std::string", "id": 0, - "offset": 72, - "flags": 7, + "offset": 80, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 951754038 + "hash": 2306437263 }, - "m_findSideQuests": { - "type": "bool", + "m_Children": { + "type": "class SharedPointer", "id": 1, - "offset": 73, - "flags": 7, - "container": "Static", - "dynamic": false, + "offset": 112, + "flags": 65667, + "container": "Vector", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 1456032030 + "pointer": true, + "hash": 2621225959 }, - "m_silent": { - "type": "bool", + "m_Style": { + "type": "unsigned int", "id": 2, - "offset": 74, - "flags": 7, + "offset": 152, + "flags": 1048583, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 950595970 + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "SCALE_CHILDREN": 2, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "FOCUS_LOCKED": 64, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152 + } }, - "m_stayOnActiveQuest": { - "type": "bool", + "m_Flags": { + "type": "unsigned int", "id": 3, - "offset": 75, - "flags": 7, + "offset": 156, + "flags": 1048583, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1243951391 + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } }, - "m_stopOnQuestComplete": { - "type": "bool", + "m_Window": { + "type": "class Rect", "id": 4, - "offset": 76, - "flags": 7, + "offset": 160, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1146878209 - } - } - }, - "922470930": { - "name": "class BattlegroundMatchmaking*", - "bases": [ - "PropertyClass" - ], - "hash": 922470930, - "properties": { - "m_matchSize": { - "type": "int", - "id": 0, - "offset": 72, - "flags": 7, + "hash": 3105139380 + }, + "m_fTargetAlpha": { + "type": "float", + "id": 5, + "offset": 212, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 563704930 + "hash": 1809129834 }, - "m_secondsWaited": { - "type": "int", - "id": 1, - "offset": 76, - "flags": 7, + "m_fDisabledAlpha": { + "type": "float", + "id": 6, + "offset": 216, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 606761671 - } - } - }, - "1695480160": { - "name": "enum Requirement::Operator", - "bases": [], - "hash": 1695480160, - "properties": {} - }, - "1715531072": { - "name": "class RaidKeyBehavior", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1715531072, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, + "hash": 1389987675 + }, + "m_fAlpha": { + "type": "float", + "id": 7, + "offset": 208, + "flags": 65671, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 - } - } - }, - "509471507": { - "name": "class ClientPetSnackBehavior*", - "bases": [ - "PetSnackBehavior", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 509471507, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, + "hash": 482130755 + }, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3623628394 + }, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 + "hash": 2102211316 }, - "m_snackBag": { - "type": "class ObjectBag", - "id": 1, - "offset": 112, - "flags": 27, + "m_sScript": { + "type": "std::string", + "id": 10, + "offset": 352, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2027393587 - } - } - }, - "1278443324": { - "name": "class ObstacleCourseModifyTimeBehaviorClient*", - "bases": [ - "ObstacleCourseModifyTimeBehavior", - "ObstacleCourseObstaclePathBase", - "ObstacleCourseObstacleBehavior", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1278443324, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, + "hash": 1846695875 + }, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 - } - } - }, - "509430547": { - "name": "class ClientPetSnackBehavior", - "bases": [ - "PetSnackBehavior", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 509430547, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, + "hash": 3389835433 + }, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 + "hash": 2547159940 }, - "m_snackBag": { - "type": "class ObjectBag", - "id": 1, - "offset": 112, - "flags": 27, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2027393587 + "hash": 1513510520 + }, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3091503757 } } }, - "1698615444": { - "name": "class SharedPointer", + "601014707": { + "name": "class ControlBar*", "bases": [ - "DerbyEffect", + "Window", "PropertyClass" ], - "hash": 1698615444, + "hash": 601014707, "properties": { - "m_buffType": { - "type": "enum DerbyTalentBuffType", + "m_sName": { + "type": "std::string", "id": 0, - "offset": 92, - "flags": 2097183, + "offset": 80, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1149251982, - "enum_options": { - "Buff": 0, - "Debuff": 1, - "Neither": 2 - } + "hash": 2306437263 }, - "m_kTarget": { - "type": "enum DerbyTargetType", + "m_Children": { + "type": "class SharedPointer", "id": 1, - "offset": 96, - "flags": 2097159, - "container": "Static", - "dynamic": false, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 1807803351, - "enum_options": { - "kTargetInFront": 0, - "kTargetBehind": 1, - "kTargetFirst": 2, - "kTargetSelf": 3, - "kTargetAll": 4, - "kTargetLast": 5 - } + "pointer": true, + "hash": 2621225959 }, - "m_nDuration": { - "type": "int", + "m_Style": { + "type": "unsigned int", "id": 2, - "offset": 104, - "flags": 31, + "offset": 152, + "flags": 1048583, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1110167982 + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "SCALE_CHILDREN": 2, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "FOCUS_LOCKED": 64, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152 + } }, - "m_effectID": { + "m_Flags": { "type": "unsigned int", "id": 3, - "offset": 88, - "flags": 24, + "offset": 156, + "flags": 1048583, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2347630439 + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } }, - "m_imageFilename": { - "type": "std::string", + "m_Window": { + "type": "class Rect", "id": 4, - "offset": 112, - "flags": 131103, + "offset": 160, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2813328063 + "hash": 3105139380 }, - "m_iconIndex": { - "type": "unsigned int", + "m_fTargetAlpha": { + "type": "float", "id": 5, - "offset": 144, - "flags": 31, + "offset": 212, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1265133262 + "hash": 1809129834 }, - "m_soundOnActivate": { - "type": "std::string", + "m_fDisabledAlpha": { + "type": "float", "id": 6, - "offset": 152, - "flags": 131103, + "offset": 216, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1956929714 + "hash": 1389987675 }, - "m_soundOnTarget": { - "type": "std::string", + "m_fAlpha": { + "type": "float", "id": 7, - "offset": 184, - "flags": 131103, + "offset": 208, + "flags": 65671, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3444214056 + "hash": 482130755 }, - "m_targetParticleEffect": { - "type": "std::string", + "m_pWindowStyle": { + "type": "class SharedPointer", "id": 8, - "offset": 216, - "flags": 131103, + "offset": 232, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 3048234723 + "pointer": true, + "hash": 3623628394 }, - "m_overheadMessage": { - "type": "std::string", + "m_sHelp": { + "type": "std::wstring", "id": 9, "offset": 248, - "flags": 8388639, + "flags": 4194439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1701018190 + "hash": 2102211316 }, - "m_requirements": { - "type": "class RequirementList", + "m_sScript": { + "type": "std::string", "id": 10, - "offset": 280, - "flags": 31, + "offset": 352, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2840988582 + "hash": 1846695875 }, - "m_nAmountToSteal": { - "type": "int", + "m_Offset": { + "type": "class Point", "id": 11, - "offset": 376, - "flags": 31, + "offset": 192, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 247752792 - } - } - }, - "110620563": { - "name": "enum ClosePermanentShopReason", - "bases": [], - "hash": 110620563, - "properties": {} - }, - "1697818653": { - "name": "class SharedPointer", - "bases": [ - "CinematicStageTemplate", - "PropertyClass" - ], - "hash": 1697818653, - "properties": { - "m_name": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, + "hash": 3389835433 + }, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1717359772 + "hash": 2547159940 }, - "m_duration": { - "type": "float", - "id": 1, - "offset": 104, - "flags": 7, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 920323453 + "hash": 1513510520 }, - "m_actions": { - "type": "class SharedPointer", - "id": 2, - "offset": 112, - "flags": 7, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, "container": "List", "dynamic": true, "singleton": false, - "pointer": true, - "hash": 1380578687 + "pointer": false, + "hash": 2587533771 }, - "m_stageRelationships": { - "type": "class SharedPointer", - "id": 3, - "offset": 128, - "flags": 7, - "container": "List", - "dynamic": true, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 499983354 + "pointer": false, + "hash": 3091503757 }, - "m_sound": { - "type": "std::string", - "id": 4, - "offset": 152, - "flags": 131079, + "m_fPosition": { + "type": "float", + "id": 16, + "offset": 584, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2307644996 - } - } - }, - "1280239369": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1280239369, - "properties": { - "m_desc": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, + "hash": 1808212114 + }, + "m_BaseColor": { + "type": "class Color", + "id": 17, + "offset": 588, + "flags": 262279, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1717004954 + "hash": 2172251096 }, - "m_type": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 31, + "m_BarColor": { + "type": "class Color", + "id": 18, + "offset": 592, + "flags": 262279, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1717601629 - } - } - }, - "1697162463": { - "name": "class AdvPvPLeaderboardEntryList*", - "bases": [ - "PropertyClass" - ], - "hash": 1697162463, - "properties": { - "m_startPosition": { - "type": "int", - "id": 0, - "offset": 72, - "flags": 31, + "hash": 2259916498 + }, + "m_bDisplayVertical": { + "type": "bool", + "id": 19, + "offset": 596, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1469535773 + "hash": 1359621189 }, - "m_totalPlayerCount": { - "type": "unsigned int", - "id": 1, - "offset": 76, - "flags": 31, + "m_pBarMaterial": { + "type": "class SharedPointer", + "id": 20, + "offset": 600, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1303598439 + "pointer": true, + "hash": 2481929515 }, - "m_entries": { - "type": "class SharedPointer", - "id": 2, - "offset": 80, - "flags": 31, - "container": "List", - "dynamic": true, + "m_pTopLeftMaterial": { + "type": "class SharedPointer", + "id": 21, + "offset": 616, + "flags": 135, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": true, - "hash": 1843584395 + "hash": 3248096916 + }, + "m_pCenterMaterial": { + "type": "class SharedPointer", + "id": 22, + "offset": 632, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1519560055 + }, + "m_pBottomRightMaterial": { + "type": "class SharedPointer", + "id": 23, + "offset": 648, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2932444745 } } }, - "509800089": { - "name": "class WhirlyBurlyPlanningDataAI*", + "1026850581": { + "name": "class ClientAnnounceTextCinematicAction", "bases": [ + "AnnounceTextCinematicAction", + "CinematicAction", "PropertyClass" ], - "hash": 509800089, + "hash": 1026850581, "properties": { - "m_team": { - "type": "unsigned char", + "m_timeOffset": { + "type": "float", "id": 0, "offset": 72, "flags": 7, @@ -18964,582 +18395,824 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 857479191 + "hash": 2237098605 }, - "m_passport": { - "type": "unsigned int", + "m_text": { + "type": "std::string", "id": 1, - "offset": 76, + "offset": 112, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1362521513 + "hash": 1717580128 }, - "m_unitTypesList": { - "type": "unsigned char", + "m_onlyForPlayer": { + "type": "bool", "id": 2, - "offset": 80, + "offset": 144, "flags": 7, - "container": "List", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 2643134017 + "hash": 249913353 }, - "m_cardsUsedList": { - "type": "unsigned int", + "m_stringTable": { + "type": "std::string", "id": 3, - "offset": 96, + "offset": 80, "flags": 7, - "container": "List", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 711045287 + "hash": 3386025626 + }, + "m_effectParamMadlib": { + "type": "bool", + "id": 4, + "offset": 146, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 292989178 } } }, - "1279479026": { - "name": "class SharedPointer", + "1880738577": { + "name": "class std::list >", + "bases": [], + "hash": 1880738577, + "properties": {} + }, + "600962558": { + "name": "class LeashedPathMovementBehavior", "bases": [ + "BehaviorInstance", "PropertyClass" ], - "hash": 1279479026, + "hash": 600962558, "properties": { - "m_friendList": { - "type": "gid", + "m_behaviorTemplateNameID": { + "type": "unsigned int", "id": 0, - "offset": 72, - "flags": 31, - "container": "List", - "dynamic": true, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 1993921452 + "hash": 223437287 } } }, - "1697162453": { - "name": "class AdvPvPLeaderboardEntryList", + "600962238": { + "name": "class LeashedPathMovementBehavior*", "bases": [ + "BehaviorInstance", "PropertyClass" ], - "hash": 1697162453, + "hash": 600962238, "properties": { - "m_startPosition": { - "type": "int", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1469535773 - }, - "m_totalPlayerCount": { + "m_behaviorTemplateNameID": { "type": "unsigned int", - "id": 1, - "offset": 76, - "flags": 31, + "id": 0, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1303598439 - }, - "m_entries": { - "type": "class SharedPointer", - "id": 2, - "offset": 80, - "flags": 31, + "hash": 223437287 + } + } + }, + "1452431149": { + "name": "class TeamHelpWorldInfoList*", + "bases": [ + "PropertyClass" + ], + "hash": 1452431149, + "properties": { + "m_teamHelpWorldInfoList": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 7, "container": "List", "dynamic": true, "singleton": false, "pointer": true, - "hash": 1843584395 + "hash": 2354245339 } } }, - "113208679": { - "name": "class AddAuraCinematicAction", + "600933158": { + "name": "class SharedPointer", "bases": [ - "ActorCinematicAction", - "CinematicAction", + "Result", "PropertyClass" ], - "hash": 113208679, + "hash": 600933158, "properties": { - "m_timeOffset": { - "type": "float", + "m_templateID": { + "type": "gid", "id": 0, "offset": 72, - "flags": 7, + "flags": 33554439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 - }, - "m_actor": { + "hash": 1075328001 + } + } + }, + "1028129538": { + "name": "class SpectatorWindow", + "bases": [ + "Window", + "PropertyClass" + ], + "hash": 1028129538, + "properties": { + "m_sName": { "type": "std::string", - "id": 1, + "id": 0, "offset": 80, - "flags": 7, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2285866132 + "hash": 2306437263 }, - "m_effect": { - "type": "std::string", + "m_Children": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621225959 + }, + "m_Style": { + "type": "unsigned int", "id": 2, - "offset": 120, - "flags": 7, + "offset": 152, + "flags": 1048583, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1894145160 - } - } - }, - "1279905174": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1279905174, - "properties": { - "m_levelInfo": { - "type": "class CantripLevelInfo*", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "SCALE_CHILDREN": 2, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "FOCUS_LOCKED": 64, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152 + } + }, + "m_Flags": { + "type": "unsigned int", + "id": 3, + "offset": 156, + "flags": 1048583, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3391404974 + "pointer": false, + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } }, - "m_maxLevel": { - "type": "unsigned char", - "id": 1, - "offset": 88, - "flags": 7, + "m_Window": { + "type": "class Rect", + "id": 4, + "offset": 160, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 783962734 - } - } - }, - "510702708": { - "name": "class SharedPointer", - "bases": [ - "ServiceOptionBase", - "PropertyClass" - ], - "hash": 510702708, - "properties": { - "m_serviceName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, + "hash": 3105139380 + }, + "m_fTargetAlpha": { + "type": "float", + "id": 5, + "offset": 212, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2206028813 + "hash": 1809129834 }, - "m_iconKey": { - "type": "std::string", - "id": 1, - "offset": 168, - "flags": 31, + "m_fDisabledAlpha": { + "type": "float", + "id": 6, + "offset": 216, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2457138637 + "hash": 1389987675 }, - "m_displayKey": { + "m_fAlpha": { + "type": "float", + "id": 7, + "offset": 208, + "flags": 65671, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 482130755 + }, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3623628394 + }, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2102211316 + }, + "m_sScript": { "type": "std::string", - "id": 2, - "offset": 104, - "flags": 31, + "id": 10, + "offset": 352, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3023276954 + "hash": 1846695875 }, - "m_serviceIndex": { - "type": "unsigned int", - "id": 3, - "offset": 204, - "flags": 31, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2103126710 + "hash": 3389835433 }, - "m_forceInteract": { - "type": "bool", - "id": 4, + "m_Scale": { + "type": "class Point", + "id": 12, "offset": 200, - "flags": 31, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1705789564 - } - } - }, - "1697787351": { - "name": "class EquipmentBehaviorTemplate*", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 1697787351, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, + "hash": 2547159940 + }, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3130754092 + "hash": 1513510520 }, - "m_itemList": { - "type": "unsigned int", - "id": 1, - "offset": 120, - "flags": 33554439, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, "container": "List", "dynamic": true, "singleton": false, "pointer": false, - "hash": 1892907768 + "hash": 2587533771 }, - "m_equipmentTemplate": { - "type": "std::string", - "id": 2, - "offset": 152, - "flags": 7, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2464606287 - }, - "m_infoList": { - "type": "class SharedPointer", - "id": 3, - "offset": 136, + "hash": 3091503757 + } + } + }, + "1452429869": { + "name": "class TeamHelpWorldInfoList", + "bases": [ + "PropertyClass" + ], + "hash": 1452429869, + "properties": { + "m_teamHelpWorldInfoList": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, "flags": 7, "container": "List", "dynamic": true, "singleton": false, "pointer": true, - "hash": 1525681909 + "hash": 2354245339 } } }, - "120308658": { - "name": "class ClientRegisterActorCinematicAction", + "1880989997": { + "name": "class SharedPointer", "bases": [ - "RegisterActorCinematicAction", - "ActorCinematicAction", - "CinematicAction", + "SpellCardAttachmentBehavior", + "BehaviorInstance", "PropertyClass" ], - "hash": 120308658, + "hash": 1880989997, "properties": { - "m_timeOffset": { - "type": "float", + "m_behaviorTemplateNameID": { + "type": "unsigned int", "id": 0, - "offset": 72, - "flags": 7, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 + "hash": 223437287 }, - "m_actor": { + "m_spellNames": { "type": "std::string", "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, + "offset": 112, + "flags": 31, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 2285866132 + "hash": 2136089135 }, - "m_zoneTag": { + "m_targetNode": { "type": "std::string", "id": 2, - "offset": 120, - "flags": 7, + "offset": 128, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3405382643 + "hash": 2698500040 }, - "m_bStartHidden": { - "type": "bool", + "m_offset": { + "type": "class Vector3D", "id": 3, - "offset": 152, - "flags": 7, + "offset": 160, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1939845615 + "hash": 2445636425 + }, + "m_rotate": { + "type": "class Vector3D", + "id": 4, + "offset": 172, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2574199889 + }, + "m_height": { + "type": "float", + "id": 5, + "offset": 184, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 602977104 + }, + "m_alpha": { + "type": "float", + "id": 6, + "offset": 188, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 878686493 + }, + "m_cycleRate": { + "type": "float", + "id": 7, + "offset": 192, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 947046355 } } }, - "117675092": { - "name": "class ObstacleCourseModifyTimeBehavior", + "1027538353": { + "name": "class TeamHelpUpdateInfo", "bases": [ - "ObstacleCourseObstaclePathBase", - "ObstacleCourseObstacleBehavior", - "BehaviorInstance", "PropertyClass" ], - "hash": 117675092, + "hash": 1027538353, "properties": { - "m_behaviorTemplateNameID": { + "m_worldList": { "type": "unsigned int", "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 223437287 + "hash": 560397361 } } }, - "1281339435": { - "name": "class SharedPointer", + "1881572203": { + "name": "class PvPRatingsConfig*", "bases": [ - "BehaviorInstance", "PropertyClass" ], - "hash": 1281339435, + "hash": 1881572203, "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", + "m_ratingsConfig": { + "type": "class RatingInfo*", "id": 0, - "offset": 104, - "flags": 39, + "offset": 72, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2728721304 + } + } + }, + "600981919": { + "name": "class ControlTab*", + "bases": [ + "Window", + "PropertyClass" + ], + "hash": 600981919, + "properties": { + "m_sName": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 + "hash": 2306437263 }, - "m_autoCapTimer": { - "type": "class BGSigilTimer", + "m_Children": { + "type": "class SharedPointer", "id": 1, "offset": 112, - "flags": 31, - "container": "Static", - "dynamic": false, + "flags": 65671, + "container": "Vector", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 2270881950 + "pointer": true, + "hash": 2621225959 }, - "m_timerTeam": { - "type": "std::string", + "m_Style": { + "type": "unsigned int", "id": 2, - "offset": 216, - "flags": 31, + "offset": 152, + "flags": 1048583, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1994153155 + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "SCALE_CHILDREN": 2, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "FOCUS_LOCKED": 64, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152 + } }, - "m_teamOwner": { - "type": "std::string", + "m_Flags": { + "type": "unsigned int", "id": 3, - "offset": 248, - "flags": 31, + "offset": 156, + "flags": 1048583, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3126686637 + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } }, - "m_combatActive": { - "type": "bool", + "m_Window": { + "type": "class Rect", "id": 4, - "offset": 280, - "flags": 31, + "offset": 160, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1372743333 + "hash": 3105139380 }, - "m_captureable": { - "type": "bool", + "m_fTargetAlpha": { + "type": "float", "id": 5, - "offset": 281, - "flags": 31, + "offset": 212, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1101963387 + "hash": 1809129834 }, - "m_allowAutoCap": { - "type": "bool", + "m_fDisabledAlpha": { + "type": "float", "id": 6, - "offset": 282, - "flags": 31, + "offset": 216, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 946300927 + "hash": 1389987675 }, - "m_sigilAggroRange": { + "m_fAlpha": { "type": "float", "id": 7, - "offset": 284, - "flags": 31, + "offset": 208, + "flags": 65671, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 995063020 + "hash": 482130755 }, - "m_playerAggroRange": { - "type": "float", + "m_pWindowStyle": { + "type": "class SharedPointer", "id": 8, - "offset": 288, - "flags": 31, + "offset": 232, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1776075073 + "pointer": true, + "hash": 3623628394 }, - "m_triggerOrientation": { - "type": "class Vector3D", + "m_sHelp": { + "type": "std::wstring", "id": 9, - "offset": 292, - "flags": 31, + "offset": 248, + "flags": 4194439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2671004802 + "hash": 2102211316 }, - "m_triggerLocation": { - "type": "class Vector3D", + "m_sScript": { + "type": "std::string", "id": 10, - "offset": 304, - "flags": 31, + "offset": 352, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2573315471 + "hash": 1846695875 }, - "m_triggerBox": { - "type": "bool", + "m_Offset": { + "type": "class Point", "id": 11, - "offset": 316, - "flags": 31, + "offset": 192, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 962168144 + "hash": 3389835433 }, - "m_width": { - "type": "float", + "m_Scale": { + "type": "class Point", "id": 12, - "offset": 320, - "flags": 31, + "offset": 200, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 904656279 + "hash": 2547159940 }, - "m_length": { - "type": "float", + "m_sTip": { + "type": "std::wstring", "id": 13, - "offset": 324, - "flags": 31, + "offset": 392, + "flags": 4194439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 759698745 + "hash": 1513510520 }, - "m_triggerSphere": { - "type": "bool", + "m_BubbleList": { + "type": "class WindowBubble", "id": 14, - "offset": 328, - "flags": 31, - "container": "Static", - "dynamic": false, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 1467830382 + "hash": 2587533771 }, - "m_radius": { - "type": "float", + "m_ParentOffset": { + "type": "class Rect", "id": 15, - "offset": 332, - "flags": 31, + "offset": 176, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 989410271 + "hash": 3091503757 }, - "m_inRange": { - "type": "class SharedPointer", + "m_bAutomaticFormatting": { + "type": "bool", "id": 16, - "offset": 336, - "flags": 31, - "container": "List", + "offset": 664, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 78023831 + }, + "m_tabPages": { + "type": "class ControlTab::Page", + "id": 17, + "offset": 720, + "flags": 135, + "container": "Vector", "dynamic": true, "singleton": false, - "pointer": true, - "hash": 2259190010 + "pointer": false, + "hash": 2885422823 + }, + "m_tabSize": { + "type": "class Size", + "id": 18, + "offset": 672, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 69974606 + }, + "m_tabPageRect": { + "type": "class Rect", + "id": 19, + "offset": 616, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2839803454 + }, + "m_tabButtonsRect": { + "type": "class Rect", + "id": 20, + "offset": 632, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1836144176 + }, + "m_tabAlign": { + "type": "enum ControlTab::TabAlignment", + "id": 21, + "offset": 668, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1511299133, + "enum_options": { + "Top": 0, + "Bottom": 1, + "Left": 2, + "Right": 3 + } } } }, - "115057682": { - "name": "class SharedPointer", + "1455460467": { + "name": "class ClientRequirementFailInteraction*", "bases": [ + "RequirementFailNotification", "ServiceOptionBase", "PropertyClass" ], - "hash": 115057682, + "hash": 1455460467, "properties": { "m_serviceName": { "type": "std::string", @@ -19595,532 +19268,441 @@ "singleton": false, "pointer": false, "hash": 1705789564 - } - } - }, - "511167612": { - "name": "class SharedPointer", - "bases": [ - "ObstacleCourseObstacleBehavior", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 511167612, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, + }, + "m_failureMessage": { + "type": "std::string", + "id": 5, + "offset": 224, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 + "hash": 1882376712 } } }, - "1698481325": { - "name": "class SharedPointer", + "1881408363": { + "name": "class PvPRatingsConfig", "bases": [ "PropertyClass" ], - "hash": 1698481325, + "hash": 1881408363, "properties": { - "m_id": { - "type": "unsigned int", + "m_ratingsConfig": { + "type": "class RatingInfo*", "id": 0, "offset": 72, "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2301988666 - }, - "m_flags": { - "type": "unsigned int", - "id": 1, - "offset": 76, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1005801050 - }, - "m_movedPosition": { - "type": "class Vector3D", - "id": 2, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3719762834 - }, - "m_movedYaw": { - "type": "float", - "id": 3, - "offset": 116, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1088556419 - }, - "m_movedScale": { - "type": "float", - "id": 4, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, + "container": "Vector", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 569059130 + "pointer": true, + "hash": 2728721304 } } }, - "114420967": { - "name": "class Recipe*", + "1028717844": { + "name": "class PeriodicSubscription", "bases": [ - "CoreObject", "PropertyClass" ], - "hash": 114420967, + "hash": 1028717844, "properties": { - "m_inactiveBehaviors": { - "type": "class SharedPointer", + "m_type": { + "type": "std::string", "id": 0, - "offset": 224, + "offset": 72, "flags": 31, - "container": "Vector", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1850812559 + "pointer": false, + "hash": 1717601629 }, - "m_globalID.m_full": { + "m_resetTime": { "type": "unsigned __int64", "id": 1, - "offset": 72, - "flags": 16777247, + "offset": 104, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2312465444 + "hash": 1841687339 }, - "m_permID": { - "type": "unsigned __int64", + "m_productIconType": { + "type": "std::string", "id": 2, - "offset": 80, - "flags": 16777247, + "offset": 112, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1298909658 + "hash": 3026584199 }, - "m_location": { - "type": "class Vector3D", + "m_status": { + "type": "std::string", "id": 3, - "offset": 168, + "offset": 144, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2239683611 + "hash": 2458480799 }, - "m_orientation": { - "type": "class Vector3D", + "m_itemsStatus": { + "type": "std::string", "id": 4, - "offset": 180, + "offset": 176, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2344058766 + "hash": 2942863777 }, - "m_fScale": { - "type": "float", + "m_membership": { + "type": "bool", "id": 5, - "offset": 196, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 503137701 - }, - "m_templateID.m_full": { - "type": "unsigned __int64", - "id": 6, - "offset": 96, + "offset": 208, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 633907631 - }, - "m_debugName": { - "type": "std::string", - "id": 7, - "offset": 104, + "hash": 1596198559 + } + } + }, + "1453457469": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1453457469, + "properties": { + "m_remapIndex": { + "type": "unsigned int", + "id": 0, + "offset": 72, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3553984419 + "hash": 1234341146 }, - "m_displayKey": { - "type": "std::string", - "id": 8, - "offset": 136, + "m_textureTemplateID": { + "type": "unsigned int", + "id": 1, + "offset": 76, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3023276954 - }, - "m_zoneTagID": { - "type": "unsigned int", - "id": 9, - "offset": 344, - "flags": 31, + "hash": 1730653991 + } + } + }, + "1881146590": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1881146590, + "properties": { + "m_numItemsToEquip": { + "type": "int", + "id": 0, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 965291410 + "hash": 243822227 }, - "m_speedMultiplier": { - "type": "short", - "id": 10, - "offset": 192, - "flags": 31, + "m_description": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 8388615, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 123130076 + "hash": 1649374815 }, - "m_nMobileID": { - "type": "unsigned short", - "id": 11, - "offset": 194, - "flags": 31, + "m_equipEffectsGrantedRequirements": { + "type": "class RequirementList*", + "id": 2, + "offset": 112, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1054318939 + "pointer": true, + "hash": 2841976527 }, - "m_recipeNameID": { - "type": "unsigned int", - "id": 12, - "offset": 384, - "flags": 63, - "container": "Static", - "dynamic": false, + "m_equipEffectsGranted": { + "type": "class GameEffectInfo*", + "id": 3, + "offset": 120, + "flags": 7, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 2168714419 + "pointer": true, + "hash": 1136533636 } } }, - "113943340": { - "name": "class HousingPetBehavior", + "1028402989": { + "name": "class ObjStateOverrideInfo*", "bases": [ - "BehaviorInstance", "PropertyClass" ], - "hash": 113943340, + "hash": 1028402989, "properties": { - "m_behaviorTemplateNameID": { + "m_stateNameID": { "type": "unsigned int", "id": 0, - "offset": 104, - "flags": 39, + "offset": 72, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 - } - } - }, - "513011409": { - "name": "class WhirlyBurlyGameList", - "bases": [ - "PropertyClass" - ], - "hash": 513011409, - "properties": { - "m_whirlyBurlyGameList": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1597138179 + "hash": 2039264668 } } }, - "1283125115": { - "name": "class ItemLootInfo*", + "1452765532": { + "name": "class PetDerbyTrackInfo*", "bases": [ - "LootInfo", - "LootInfoBase", "PropertyClass" ], - "hash": 1283125115, + "hash": 1452765532, "properties": { - "m_lootType": { - "type": "enum LootInfo::LOOT_TYPE", + "m_trackID": { + "type": "gid", "id": 0, "offset": 72, - "flags": 2097183, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1591891442, - "enum_options": { - "LOOT_TYPE_NONE": 0, - "LOOT_TYPE_GOLD": 1, - "LOOT_TYPE_MANA": 2, - "LOOT_TYPE_ITEM": 3, - "LOOT_TYPE_TREASURE_CARD": 4, - "LOOT_TYPE_MAGIC_XP": 5, - "LOOT_TYPE_ADD_SPELL": 6, - "LOOT_TYPE_MAX_HEALTH": 7, - "LOOT_TYPE_MAX_GOLD": 8, - "LOOT_TYPE_MAX_MANA": 9, - "LOOT_TYPE_MAX_POTION": 10, - "LOOT_TYPE_TRAINING_POINTS": 11, - "LOOT_TYPE_RECIPE": 12, - "LOOT_TYPE_CRAFTING_SLOT": 13, - "LOOT_TYPE_REAGENT": 14, - "LOOT_TYPE_PETSNACK": 15, - "LOOT_TYPE_GARDENING_XP": 16, - "LOOT_TYPE_PET_XP": 17, - "LOOT_TYPE_TREASURE_TABLE": 18, - "LOOT_TYPE_ARENA_POINTS": 19, - "LOOT_TYPE_ARENA_BONUS_POINTS": 20, - "LOOT_TYPE_GROUP": 21, - "LOOT_TYPE_FISHING_XP": 22, - "LOOT_TYPE_EVENT_CURRENCY_1": 24, - "LOOT_TYPE_EVENT_CURRENCY_2": 25, - "LOOT_TYPE_PVP_CURRENCY": 26, - "LOOT_TYPE_PVP_CURRENCY_BONUS": 27, - "LOOT_TYPE_PVP_TOURNEY_CURRENCY": 28, - "LOOT_TYPE_PVP_TOURNEY_CURRENCY_BONUS": 29, - "LOOT_TYPE_FURNITURE_ESSENCE": 30 - } + "hash": 703251290 }, - "m_itemID": { - "type": "gid", + "m_zone": { + "type": "std::string", "id": 1, - "offset": 88, - "flags": 33554463, + "offset": 80, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 569545460 + "hash": 1717806295 }, - "m_numItems": { - "type": "int", + "m_key": { + "type": "std::string", "id": 2, - "offset": 96, + "offset": 112, + "flags": 8388639, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1764739684 + }, + "m_rank": { + "type": "unsigned char", + "id": 3, + "offset": 144, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1588646284 + "hash": 857403388 + }, + "m_lapCount": { + "type": "unsigned char", + "id": 4, + "offset": 145, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 791794870 } } }, - "1282294898": { - "name": "class MessageBoardMessage", + "601312987": { + "name": "class SharedPointer", "bases": [ "PropertyClass" ], - "hash": 1282294898, + "hash": 601312987, "properties": { - "m_playerGID": { - "type": "gid", + "m_rewardID": { + "type": "unsigned __int64", "id": 0, "offset": 72, - "flags": 7, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 578537369 + "hash": 1967538827 }, - "m_messageBoardMessageType": { - "type": "int", + "m_rewardModifier": { + "type": "unsigned __int64", "id": 1, - "offset": 80, - "flags": 7, + "offset": 112, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1435388398 + "hash": 1325279053 }, - "m_playerName": { + "m_giftID": { "type": "std::string", "id": 2, - "offset": 88, - "flags": 7, + "offset": 80, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3407553929 + "hash": 1975989138 }, - "m_messageBoardActivityType": { - "type": "int", + "m_autoRedeem": { + "type": "bool", "id": 3, "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1226468534 - }, - "m_worldID": { - "type": "unsigned int", - "id": 4, - "offset": 124, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 397177058 - }, - "m_partyNameLocale": { - "type": "int", - "id": 5, - "offset": 128, - "flags": 7, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 104095035 - }, - "m_centralSeconds": { + "hash": 665366430 + } + } + }, + "1028205814": { + "name": "class ClientRentalBehavior", + "bases": [ + "ClientTimedItemBehavior", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1028205814, + "properties": { + "m_behaviorTemplateNameID": { "type": "unsigned int", - "id": 6, - "offset": 132, - "flags": 7, + "id": 0, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1225584997 + "hash": 223437287 }, - "m_removalTime": { + "m_expireTime": { "type": "unsigned int", - "id": 7, - "offset": 136, - "flags": 7, + "id": 1, + "offset": 112, + "flags": 59, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1506221490 - }, - "m_creationTime": { + "hash": 1836304873 + } + } + }, + "1452743942": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1452743942, + "properties": { + "m_friendlyPlayerWorldList": { "type": "unsigned int", - "id": 8, - "offset": 140, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2142268593 - }, - "m_playerResponses": { - "type": "gid", - "id": 9, - "offset": 144, + "id": 0, + "offset": 72, "flags": 7, "container": "List", "dynamic": true, "singleton": false, "pointer": false, - "hash": 1006378727 + "hash": 780811899 } } }, - "1698769310": { - "name": "class TournamentInfo", + "1881489189": { + "name": "class SharedPointer", "bases": [ + "NodeDescriptor", "PropertyClass" ], - "hash": 1698769310, + "hash": 1881489189, "properties": { - "m_tournamentID": { - "type": "gid", + "m_terrainType": { + "type": "enum PetDerbyTrackTerrain", "id": 0, "offset": 72, - "flags": 31, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 695889746 + "hash": 2688629581, + "enum_options": { + "PDTT_Water": 1, + "PDTT_Grass": 2, + "PDTT_Clay": 3, + "PDTT_Dirt": 4, + "PDTT_Cobblestone": 0, + "PDTT_Mud": 5 + } }, - "m_tournamentName": { - "type": "std::string", + "m_laneSwitch": { + "type": "enum PetDerbyLaneSwitch", "id": 1, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3329241865 - }, - "m_tournamentNameID": { - "type": "unsigned int", - "id": 2, - "offset": 112, - "flags": 31, + "offset": 76, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1799846440 + "hash": 2094800111, + "enum_options": { + "PDLS_None": 0, + "PDLS_Left": 1, + "PDLS_Right": 2, + "PDLS_Both": 3 + } } } }, - "1282168016": { - "name": "class SharedPointer", + "601240696": { + "name": "class CursorStyle*", "bases": [ "PropertyClass" ], - "hash": 1282168016, + "hash": 601240696, "properties": { "m_name": { "type": "std::string", @@ -20192,728 +19774,794 @@ } } }, - "1698769214": { - "name": "class TournamentInfo*", + "1028205790": { + "name": "class ClientRentalBehavior*", "bases": [ + "ClientTimedItemBehavior", + "BehaviorInstance", "PropertyClass" ], - "hash": 1698769214, + "hash": 1028205790, "properties": { - "m_tournamentID": { - "type": "gid", + "m_behaviorTemplateNameID": { + "type": "unsigned int", "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 695889746 - }, - "m_tournamentName": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 31, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3329241865 + "hash": 223437287 }, - "m_tournamentNameID": { + "m_expireTime": { "type": "unsigned int", - "id": 2, + "id": 1, "offset": 112, - "flags": 31, + "flags": 59, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1799846440 + "hash": 1836304873 } } }, - "114833919": { - "name": "class WinAnimStatGlobeScaleTime*", + "1882482245": { + "name": "class SharedPointer", "bases": [ - "WinAnimScaleTime", - "WinAnimScale", - "WindowAnimation", + "GameObjectTemplate", + "CoreTemplate", "PropertyClass" ], - "hash": 114833919, + "hash": 1882482245, "properties": { - "m_bUseDeepCopy": { - "type": "bool", + "m_behaviors": { + "type": "class BehaviorTemplate*", "id": 0, "offset": 72, - "flags": 135, - "container": "Static", - "dynamic": false, + "flags": 7, + "container": "Vector", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 433380635 + "pointer": true, + "hash": 1197808594 }, - "m_scale": { - "type": "float", + "m_objectName": { + "type": "std::string", "id": 1, - "offset": 80, - "flags": 135, + "offset": 96, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 899693439 + "hash": 2154940147 }, - "m_fTimeTotal": { - "type": "float", + "m_templateID": { + "type": "unsigned int", "id": 2, - "offset": 96, - "flags": 135, + "offset": 128, + "flags": 16777223, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 661225456 + "hash": 1286746870 }, - "m_fTimeRemaining": { - "type": "float", + "m_visualID": { + "type": "unsigned int", "id": 3, - "offset": 100, - "flags": 135, + "offset": 132, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1591443014 - } - } - }, - "513782636": { - "name": "class CompassSystem*", - "bases": [ - "PropertyClass" - ], - "hash": 513782636, - "properties": { - "m_markers": { - "type": "class CompassMarker", - "id": 0, - "offset": 80, + "hash": 1118778894 + }, + "m_adjectiveList": { + "type": "std::string", + "id": 4, + "offset": 248, "flags": 7, "container": "List", "dynamic": true, - "singleton": true, + "singleton": false, "pointer": false, - "hash": 3408067289 + "hash": 3195213318 + }, + "m_exemptFromAOI": { + "type": "bool", + "id": 5, + "offset": 240, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1457879059 + }, + "m_displayName": { + "type": "std::string", + "id": 6, + "offset": 168, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2446900370 + }, + "m_description": { + "type": "std::string", + "id": 7, + "offset": 136, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1649374815 + }, + "m_nObjectType": { + "type": "enum ObjectType", + "id": 8, + "offset": 200, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2118905880, + "enum_options": { + "OT_UNDEFINED": 0, + "OT_PLAYER": 1, + "OT_NPC": 2, + "OT_PROP": 3, + "OT_OBJECT": 4, + "OT_HOUSE": 5, + "OT_KEY": 6, + "OT_OLD_KEY": 7, + "OT_DEED": 8, + "OT_MAIL": 9, + "OT_RECIPE": 17, + "OT_EQUIP_HEAD": 10, + "OT_EQUIP_CHEST": 11, + "OT_EQUIP_LEGS": 12, + "OT_EQUIP_HANDS": 13, + "OT_EQUIP_FINGER": 14, + "OT_EQUIP_FEET": 15, + "OT_EQUIP_EAR": 16, + "OT_BUILDING_BLOCK": 18, + "OT_BUILDING_BLOCK_SOLID": 19, + "OT_GOLF": 20, + "OT_DOOR": 21, + "OT_PET": 22, + "OT_FABRIC": 23, + "OT_WINDOW": 24, + "OT_ROOF": 25, + "OT_HORSE": 26, + "OT_STRUCTURE": 27, + "OT_HOUSING_TEXTURE": 28, + "OT_PLANT": 29 + } + }, + "m_sIcon": { + "type": "std::string", + "id": 9, + "offset": 208, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306259831 } } }, - "513241372": { - "name": "class SharedPointer", + "601375135": { + "name": "class ControlTab", "bases": [ - "PetBoostPlayerStatEffect", - "WizStatisticEffect", - "StatisticEffect", - "GameEffectBase", + "Window", "PropertyClass" ], - "hash": 513241372, + "hash": 601375135, "properties": { - "m_currentTickCount": { - "type": "double", + "m_sName": { + "type": "std::string", "id": 0, "offset": 80, - "flags": 63, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2533274692 + "hash": 2306437263 }, - "m_effectNameID": { - "type": "unsigned int", + "m_Children": { + "type": "class SharedPointer", "id": 1, - "offset": 96, - "flags": 63, - "container": "Static", - "dynamic": false, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 1204067144 + "pointer": true, + "hash": 2621225959 }, - "m_bIsOnPet": { - "type": "bool", + "m_Style": { + "type": "unsigned int", "id": 2, - "offset": 73, - "flags": 31, + "offset": 152, + "flags": 1048583, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 522593303 + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "SCALE_CHILDREN": 2, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "FOCUS_LOCKED": 64, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152 + } }, - "m_originatorID": { - "type": "gid", + "m_Flags": { + "type": "unsigned int", "id": 3, - "offset": 104, - "flags": 39, + "offset": 156, + "flags": 1048583, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1131810019 + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } }, - "m_itemSlotID": { - "type": "unsigned int", + "m_Window": { + "type": "class Rect", "id": 4, - "offset": 112, - "flags": 63, + "offset": 160, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1895747595 + "hash": 3105139380 }, - "m_internalID": { - "type": "int", + "m_fTargetAlpha": { + "type": "float", "id": 5, - "offset": 92, - "flags": 63, + "offset": 212, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1643137924 + "hash": 1809129834 }, - "m_endTime": { - "type": "unsigned int", + "m_fDisabledAlpha": { + "type": "float", "id": 6, - "offset": 88, - "flags": 31, + "offset": 216, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 716479635 + "hash": 1389987675 }, - "m_lookupIndex": { - "type": "int", + "m_fAlpha": { + "type": "float", "id": 7, - "offset": 128, - "flags": 31, + "offset": 208, + "flags": 65671, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1626623948 + "hash": 482130755 }, - "m_damageBonusPercent": { - "type": "float", + "m_pWindowStyle": { + "type": "class SharedPointer", "id": 8, - "offset": 136, - "flags": 63, + "offset": 232, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 623230606 + "pointer": true, + "hash": 3623628394 }, - "m_damageBonusFlat": { - "type": "float", + "m_sHelp": { + "type": "std::wstring", "id": 9, - "offset": 180, - "flags": 63, + "offset": 248, + "flags": 4194439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2212039108 + "hash": 2102211316 }, - "m_accuracyBonusPercent": { - "type": "float", + "m_sScript": { + "type": "std::string", "id": 10, - "offset": 140, - "flags": 63, + "offset": 352, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1972336538 + "hash": 1846695875 }, - "m_armorPiercingBonusPercent": { - "type": "float", + "m_Offset": { + "type": "class Point", "id": 11, - "offset": 144, - "flags": 63, + "offset": 192, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1569912641 + "hash": 3389835433 }, - "m_damageReducePercent": { - "type": "float", + "m_Scale": { + "type": "class Point", "id": 12, - "offset": 148, - "flags": 63, + "offset": 200, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 541736927 + "hash": 2547159940 }, - "m_damageReduceFlat": { - "type": "float", + "m_sTip": { + "type": "std::wstring", "id": 13, - "offset": 152, - "flags": 63, + "offset": 392, + "flags": 4194439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 684172469 + "hash": 1513510520 }, - "m_accuracyReducePercent": { - "type": "float", + "m_BubbleList": { + "type": "class WindowBubble", "id": 14, - "offset": 156, - "flags": 63, - "container": "Static", - "dynamic": false, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 2112559723 + "hash": 2587533771 }, - "m_healBonusPercent": { - "type": "float", + "m_ParentOffset": { + "type": "class Rect", "id": 15, - "offset": 160, - "flags": 63, + "offset": 176, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 562313577 + "hash": 3091503757 }, - "m_healIncBonusPercent": { - "type": "float", + "m_bAutomaticFormatting": { + "type": "bool", "id": 16, - "offset": 164, - "flags": 63, + "offset": 664, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2182535587 + "hash": 78023831 }, - "m_hitPointBonus": { - "type": "float", + "m_tabPages": { + "type": "class ControlTab::Page", "id": 17, - "offset": 204, - "flags": 63, - "container": "Static", - "dynamic": false, + "offset": 720, + "flags": 135, + "container": "Vector", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 880644461 + "hash": 2885422823 }, - "m_spellChargeBonus": { - "type": "int", + "m_tabSize": { + "type": "class Size", "id": 18, - "offset": 212, - "flags": 63, + "offset": 672, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2019610507 + "hash": 69974606 }, - "m_powerPipBonusPercent": { - "type": "float", + "m_tabPageRect": { + "type": "class Rect", "id": 19, - "offset": 168, - "flags": 63, + "offset": 616, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1671446341 + "hash": 2839803454 }, - "m_petActChance": { - "type": "int", + "m_tabButtonsRect": { + "type": "class Rect", "id": 20, - "offset": 200, - "flags": 63, + "offset": 632, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 237418461 + "hash": 1836144176 }, - "m_manaBonus": { - "type": "float", + "m_tabAlign": { + "type": "enum ControlTab::TabAlignment", "id": 21, - "offset": 208, - "flags": 63, + "offset": 668, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1372708603 - }, - "m_expPercent": { - "type": "float", - "id": 22, - "offset": 184, - "flags": 63, + "hash": 1511299133, + "enum_options": { + "Top": 0, + "Bottom": 1, + "Left": 2, + "Right": 3 + } + } + } + }, + "1028402949": { + "name": "class ObjStateOverrideInfo", + "bases": [ + "PropertyClass" + ], + "hash": 1028402949, + "properties": { + "m_stateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 72, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1147850677 - }, - "m_goldPercent": { - "type": "float", - "id": 23, - "offset": 188, - "flags": 63, + "hash": 2039264668 + } + } + }, + "1455352205": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1455352205, + "properties": { + "m_displayName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1095720878 + "hash": 2446900370 }, - "m_energyBonus": { + "m_fMultiplier": { "type": "float", - "id": 24, - "offset": 216, - "flags": 63, + "id": 1, + "offset": 104, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2223158984 + "hash": 157286404 }, - "m_criticalHitRating": { - "type": "float", - "id": 25, - "offset": 220, - "flags": 63, + "m_category": { + "type": "int", + "id": 2, + "offset": 108, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1978690540 + "hash": 1184350616 }, - "m_blockRating": { - "type": "float", - "id": 26, - "offset": 224, - "flags": 63, + "m_minimumToActivate": { + "type": "int", + "id": 3, + "offset": 112, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2088486759 + "hash": 2042224778 + } + } + }, + "1881662585": { + "name": "class SharedPointer", + "bases": [ + "ClientObject", + "CoreObject", + "PropertyClass" + ], + "hash": 1881662585, + "properties": { + "m_inactiveBehaviors": { + "type": "class SharedPointer", + "id": 0, + "offset": 224, + "flags": 31, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1850812559 }, - "m_accuracyRating": { - "type": "float", - "id": 27, - "offset": 228, - "flags": 63, + "m_globalID.m_full": { + "type": "unsigned __int64", + "id": 1, + "offset": 72, + "flags": 16777247, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 165525575 + "hash": 2312465444 }, - "m_powerPipRating": { - "type": "float", - "id": 28, - "offset": 232, - "flags": 63, + "m_permID": { + "type": "unsigned __int64", + "id": 2, + "offset": 80, + "flags": 16777247, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1355340722 + "hash": 1298909658 }, - "m_damageResistanceRating": { - "type": "float", - "id": 29, - "offset": 240, - "flags": 63, + "m_location": { + "type": "class Vector3D", + "id": 3, + "offset": 168, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1961377740 + "hash": 2239683611 }, - "m_archmastery": { - "type": "float", - "id": 30, - "offset": 244, - "flags": 63, + "m_orientation": { + "type": "class Vector3D", + "id": 4, + "offset": 180, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1963579610 + "hash": 2344058766 }, - "m_archmasteryBonusPercent": { + "m_fScale": { "type": "float", - "id": 31, - "offset": 288, - "flags": 63, + "id": 5, + "offset": 196, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1908627154 + "hash": 503137701 }, - "m_balanceMastery": { - "type": "int", - "id": 32, - "offset": 248, - "flags": 63, + "m_templateID.m_full": { + "type": "unsigned __int64", + "id": 6, + "offset": 96, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 149062181 + "hash": 633907631 }, - "m_deathMastery": { - "type": "int", - "id": 33, - "offset": 252, - "flags": 63, + "m_debugName": { + "type": "std::string", + "id": 7, + "offset": 104, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1421218661 + "hash": 3553984419 }, - "m_fireMastery": { - "type": "int", - "id": 34, - "offset": 256, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1431794949 - }, - "m_iceMastery": { - "type": "int", - "id": 35, - "offset": 260, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 704864240 - }, - "m_lifeMastery": { - "type": "int", - "id": 36, - "offset": 264, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2142136447 - }, - "m_mythMastery": { - "type": "int", - "id": 37, - "offset": 268, - "flags": 63, + "m_displayKey": { + "type": "std::string", + "id": 8, + "offset": 136, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1766317185 + "hash": 3023276954 }, - "m_stormMastery": { - "type": "int", - "id": 38, - "offset": 272, - "flags": 63, + "m_zoneTagID": { + "type": "unsigned int", + "id": 9, + "offset": 344, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1883988244 + "hash": 965291410 }, - "m_stunResistancePercent": { - "type": "float", - "id": 39, - "offset": 276, - "flags": 63, + "m_speedMultiplier": { + "type": "short", + "id": 10, + "offset": 192, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1868382627 + "hash": 123130076 }, - "m_fishingLuckBonusPercent": { - "type": "float", - "id": 40, - "offset": 192, - "flags": 63, + "m_nMobileID": { + "type": "unsigned short", + "id": 11, + "offset": 194, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1363349254 + "hash": 1054318939 }, - "m_shadowPipBonusPercent": { - "type": "float", - "id": 41, - "offset": 172, - "flags": 63, + "m_characterId": { + "type": "gid", + "id": 12, + "offset": 440, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1426533310 + "hash": 210498418 }, - "m_wispBonusPercent": { - "type": "float", - "id": 42, - "offset": 196, - "flags": 63, + "m_primaryColor": { + "type": "int", + "id": 13, + "offset": 568, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1304386546 + "hash": 900965981 }, - "m_pipConversionRating": { - "type": "float", - "id": 43, - "offset": 280, - "flags": 63, + "m_pattern": { + "type": "int", + "id": 14, + "offset": 572, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 246855691 + "hash": 1337683384 }, - "m_shadowPipRating": { - "type": "float", - "id": 44, - "offset": 236, + "m_secondaryColor": { + "type": "int", + "id": 15, + "offset": 576, "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 507126123 + "hash": 1616550081 }, - "m_petID": { + "m_displayID": { "type": "gid", - "id": 45, - "offset": 304, - "flags": 24, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 806009486 - }, - "m_primaryStat1": { - "type": "std::string", - "id": 46, - "offset": 312, - "flags": 24, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2417808140 - }, - "m_primaryStat2": { - "type": "std::string", - "id": 47, - "offset": 344, - "flags": 24, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2417808141 - }, - "m_secondaryStat": { - "type": "std::string", - "id": 48, - "offset": 376, - "flags": 24, + "id": 16, + "offset": 584, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3564684959 + "hash": 1022427803 }, - "m_secondaryValue": { - "type": "float", - "id": 49, - "offset": 408, - "flags": 24, + "m_itemFlags": { + "type": "unsigned int", + "id": 17, + "offset": 592, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1728780796 + "hash": 2004128457 } } }, - "1282346871": { - "name": "class ClientDestroyShadowCreatureCinematicAction*", + "1453794705": { + "name": "class SharedPointer", "bases": [ - "DestroyShadowCreatureCinematicAction", - "ActorCinematicAction", - "CinematicAction", "PropertyClass" ], - "hash": 1282346871, + "hash": 1453794705, "properties": { - "m_timeOffset": { - "type": "float", + "m_compressedPetMovement": { + "type": "unsigned int", "id": 0, "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, + "flags": 31, + "container": "Vector", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 2285866132 + "hash": 324140950 } } }, - "1699928593": { - "name": "class CantripsInvisibilityEffectTemplate*", + "602324641": { + "name": "class SpeedEffectTemplate*", "bases": [ "GameEffectTemplate", "PropertyClass" ], - "hash": 1699928593, + "hash": 602324641, "properties": { "m_effectName": { "type": "std::string", @@ -21062,215 +20710,101 @@ "STACKING_NOSTACK": 1, "STACKING_REPLACE": 2 } + }, + "m_speedMultiplier": { + "type": "int", + "id": 13, + "offset": 360, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 32503058 } } }, - "116893473": { - "name": "class ReqHatchAllEggs*", + "1028679754": { + "name": "class SharedPointer", "bases": [ - "Requirement", "PropertyClass" ], - "hash": 116893473, + "hash": 1028679754, "properties": { - "m_applyNOT": { - "type": "bool", + "m_localeMappingList": { + "type": "class LocaleMapping", "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1746328074, - "enum_options": { - "__DEFAULT": 0 - } - }, - "m_operator": { - "type": "enum Requirement::Operator", - "id": 1, - "offset": 76, - "flags": 2097183, - "container": "Static", - "dynamic": false, + "offset": 104, + "flags": 7, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 2672792317, - "enum_options": { - "ROP_AND": 0, - "ROP_OR": 1, - "__DEFAULT": "ROP_AND" - } + "hash": 762464984 } } }, - "1699926033": { - "name": "class CantripsInvisibilityEffectTemplate", + "1882745934": { + "name": "class SharedPointer", "bases": [ - "GameEffectTemplate", "PropertyClass" ], - "hash": 1699926033, + "hash": 1882745934, "properties": { - "m_effectName": { + "m_csvNItemsList": { "type": "std::string", "id": 0, "offset": 72, - "flags": 7, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2029161513 + "hash": 2185990931 }, - "m_effectCategory": { + "m_csvNItemsCategoryList": { "type": "std::string", "id": 1, "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1852673222 - }, - "m_sortOrder": { - "type": "int", - "id": 2, - "offset": 148, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1411218206 - }, - "m_duration": { - "type": "double", - "id": 3, - "offset": 192, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2727932435 - }, - "m_stackingCategories": { - "type": "std::string", - "id": 4, - "offset": 160, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1774497525 - }, - "m_isPersistent": { - "type": "bool", - "id": 5, - "offset": 153, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 923861920 - }, - "m_bIsOnPet": { - "type": "bool", - "id": 6, - "offset": 154, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 522593303 - }, - "m_isPublic": { - "type": "bool", - "id": 7, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1728439822 - }, - "m_visualEffectAddName": { - "type": "std::string", - "id": 8, - "offset": 200, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3382086694 - }, - "m_visualEffectRemoveName": { - "type": "std::string", - "id": 9, - "offset": 232, - "flags": 7, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1541697323 + "hash": 3441955153 }, - "m_onAddFunctorName": { + "m_csvNDaysSinceItemPurchasedList": { "type": "std::string", - "id": 10, - "offset": 280, - "flags": 7, + "id": 2, + "offset": 168, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1561843107 + "hash": 2623003714 }, - "m_onRemoveFunctorName": { + "m_csvHasBadgeList": { "type": "std::string", - "id": 11, - "offset": 312, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2559017864 - }, - "m_stackingRule": { - "type": "enum STACKING_RULE", - "id": 12, - "offset": 144, - "flags": 2097159, + "id": 3, + "offset": 136, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 431568889, - "enum_options": { - "STACKING_ALLOWED": 0, - "STACKING_NOSTACK": 1, - "STACKING_REPLACE": 2 - } + "hash": 1794307506 } } }, - "116056107": { - "name": "class HatchmakingKioskBehavior", + "601813023": { + "name": "class PetTomeBehavior", "bases": [ - "HatchmakingKioskBehaviorBase", + "PetTomeBehaviorBase", "BehaviorInstance", "PropertyClass" ], - "hash": 116056107, + "hash": 601813023, "properties": { "m_behaviorTemplateNameID": { "type": "unsigned int", @@ -21283,151 +20817,83 @@ "pointer": false, "hash": 223437287 }, - "m_hatchDayPetCode": { - "type": "unsigned int", + "m_petData": { + "type": "std::string", "id": 1, - "offset": 112, - "flags": 31, + "offset": 144, + "flags": 551, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1354692695 + "hash": 2990195294 } } }, - "513782639": { - "name": "class CompassSystem", + "601713999": { + "name": "MadlibArgT", "bases": [ + "MadlibArg", "PropertyClass" ], - "hash": 513782639, + "hash": 601713999, "properties": { - "m_markers": { - "type": "class CompassMarker", + "m_madlibToken": { + "type": "std::string", "id": 0, "offset": 80, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": true, - "pointer": false, - "hash": 3408067289 - } - } - }, - "1283155156": { - "name": "class ManaLootInfo*", - "bases": [ - "LootInfo", - "LootInfoBase", - "PropertyClass" - ], - "hash": 1283155156, - "properties": { - "m_lootType": { - "type": "enum LootInfo::LOOT_TYPE", - "id": 0, - "offset": 72, - "flags": 2097183, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1591891442, - "enum_options": { - "LOOT_TYPE_NONE": 0, - "LOOT_TYPE_GOLD": 1, - "LOOT_TYPE_MANA": 2, - "LOOT_TYPE_ITEM": 3, - "LOOT_TYPE_TREASURE_CARD": 4, - "LOOT_TYPE_MAGIC_XP": 5, - "LOOT_TYPE_ADD_SPELL": 6, - "LOOT_TYPE_MAX_HEALTH": 7, - "LOOT_TYPE_MAX_GOLD": 8, - "LOOT_TYPE_MAX_MANA": 9, - "LOOT_TYPE_MAX_POTION": 10, - "LOOT_TYPE_TRAINING_POINTS": 11, - "LOOT_TYPE_RECIPE": 12, - "LOOT_TYPE_CRAFTING_SLOT": 13, - "LOOT_TYPE_REAGENT": 14, - "LOOT_TYPE_PETSNACK": 15, - "LOOT_TYPE_GARDENING_XP": 16, - "LOOT_TYPE_PET_XP": 17, - "LOOT_TYPE_TREASURE_TABLE": 18, - "LOOT_TYPE_ARENA_POINTS": 19, - "LOOT_TYPE_ARENA_BONUS_POINTS": 20, - "LOOT_TYPE_GROUP": 21, - "LOOT_TYPE_FISHING_XP": 22, - "LOOT_TYPE_EVENT_CURRENCY_1": 24, - "LOOT_TYPE_EVENT_CURRENCY_2": 25, - "LOOT_TYPE_PVP_CURRENCY": 26, - "LOOT_TYPE_PVP_CURRENCY_BONUS": 27, - "LOOT_TYPE_PVP_TOURNEY_CURRENCY": 28, - "LOOT_TYPE_PVP_TOURNEY_CURRENCY_BONUS": 29, - "LOOT_TYPE_FURNITURE_ESSENCE": 30 - } + "hash": 3058682373 }, - "m_manaAmount": { - "type": "int", + "m_madlibArgument": { + "type": "float", "id": 1, - "offset": 80, + "offset": 112, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1476254699 + "hash": 968693315 } } }, - "116896545": { - "name": "class ReqHatchAllEggs", + "1456049238": { + "name": "class LeashOffsetOverride*", "bases": [ - "Requirement", "PropertyClass" ], - "hash": 116896545, + "hash": 1456049238, "properties": { - "m_applyNOT": { - "type": "bool", + "m_offsetType": { + "type": "enum LeashOffsetOverride::LeashOffsetType", "id": 0, "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1746328074, - "enum_options": { - "__DEFAULT": 0 - } - }, - "m_operator": { - "type": "enum Requirement::Operator", - "id": 1, - "offset": 76, - "flags": 2097183, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2672792317, + "hash": 1559902382, "enum_options": { - "ROP_AND": 0, - "ROP_OR": 1, - "__DEFAULT": "ROP_AND" + "LOT_UNRESTRICTED": 0, + "LOT_RIGHTONLY": 1, + "LOT_LEFTONLY": 2 } } } }, - "516712222": { - "name": "class PetInfoControl*", + "601586705": { + "name": "class ControlSWF", "bases": [ "Window", "PropertyClass" ], - "hash": 516712222, + "hash": 601586705, "properties": { "m_sName": { "type": "std::string", @@ -21444,7 +20910,7 @@ "type": "class SharedPointer", "id": 1, "offset": 112, - "flags": 65667, + "flags": 65671, "container": "Vector", "dynamic": true, "singleton": false, @@ -21505,7 +20971,8 @@ "PARENT_HEIGHT": 524288, "HCENTER": 32768, "VCENTER": 65536, - "DISABLED": 2147483648 + "DISABLED": 2147483648, + "RESIZE_TO_FIT_MOVIE": 8388608 } }, "m_Window": { @@ -21639,540 +21106,386 @@ "singleton": false, "pointer": false, "hash": 3091503757 + }, + "m_sMovieFilename": { + "type": "std::string", + "id": 16, + "offset": 584, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1581619567 } } }, - "1284229429": { - "name": "class SharedPointer", + "1028717884": { + "name": "class PeriodicSubscription*", "bases": [ - "SpellEffect", "PropertyClass" ], - "hash": 1284229429, + "hash": 1028717884, "properties": { - "m_effectType": { - "type": "enum SpellEffect::kSpellEffects", + "m_type": { + "type": "std::string", "id": 0, "offset": 72, - "flags": 2097183, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2578255295, - "enum_options": { - "kInvalidSpellEffect": 0, - "kDamage": 1, - "kDamageNoCrit": 2, - "kHeal": 3, - "kHealPercent": 4, - "kSetHealPercent": 113, - "kStealHealth": 5, - "kReduceOverTime": 6, - "kDetonateOverTime": 7, - "kPushCharm": 8, - "kStealCharm": 9, - "kPushWard": 10, - "kStealWard": 11, - "kPushOverTime": 12, - "kStealOverTime": 13, - "kRemoveCharm": 14, - "kRemoveWard": 15, - "kRemoveOverTime": 16, - "kRemoveAura": 17, - "kSwapAll": 18, - "kSwapCharm": 19, - "kSwapWard": 20, - "kSwapOverTime": 21, - "kModifyIncomingDamage": 22, - "kModifyIncomingDamageFlat": 119, - "kMaximumIncomingDamage": 23, - "kModifyIncomingHeal": 24, - "kModifyIncomingHealFlat": 118, - "kModifyIncomingDamageType": 25, - "kModifyIncomingArmorPiercing": 26, - "kModifyOutgoingDamage": 27, - "kModifyOutgoingDamageFlat": 121, - "kModifyOutgoingHeal": 28, - "kModifyOutgoingHealFlat": 120, - "kModifyOutgoingDamageType": 29, - "kModifyOutgoingArmorPiercing": 30, - "kModifyOutgoingStealHealth": 31, - "kModifyIncomingStealHealth": 32, - "kBounceNext": 33, - "kBouncePrevious": 34, - "kBounceBack": 35, - "kBounceAll": 36, - "kAbsorbDamage": 37, - "kAbsorbHeal": 38, - "kModifyAccuracy": 39, - "kDispel": 40, - "kConfusion": 41, - "kCloakedCharm": 42, - "kCloakedWard": 43, - "kStunResist": 44, - "kClue": 111, - "kPipConversion": 45, - "kCritBoost": 46, - "kCritBlock": 47, - "kPolymorph": 48, - "kDelayCast": 49, - "kModifyCardCloak": 50, - "kModifyCardDamage": 51, - "kModifyCardAccuracy": 53, - "kModifyCardMutation": 54, - "kModifyCardRank": 55, - "kModifyCardArmorPiercing": 56, - "kSummonCreature": 65, - "kTeleportPlayer": 66, - "kStun": 67, - "kDampen": 68, - "kReshuffle": 69, - "kMindControl": 70, - "kModifyPips": 71, - "kModifyPowerPips": 72, - "kModifyShadowPips": 73, - "kModifyHate": 74, - "kDamageOverTime": 75, - "kHealOverTime": 76, - "kModifyPowerPipChance": 77, - "kModifyRank": 78, - "kStunBlock": 79, - "kRevealCloak": 80, - "kInstantKill": 81, - "kAfterlife": 82, - "kDeferredDamage": 83, - "kDamagePerTotalPipPower": 84, - "kModifyCardHeal": 52, - "kModifyCardCharm": 57, - "kModifyCardWard": 58, - "kModifyCardOutgoingDamage": 59, - "kModifyCardOutgoingAccuracy": 60, - "kModifyCardOutgoingHeal": 61, - "kModifyCardOutgoingArmorPiercing": 62, - "kModifyCardIncomingDamage": 63, - "kModifyCardAbsorbDamage": 64, - "kCloakedWardNoRemove": 86, - "kAddCombatTriggerList": 87, - "kRemoveCombatTriggerList": 88, - "kBacklashDamage": 89, - "kModifyBacklash": 90, - "kIntercept": 91, - "kShadowSelf": 92, - "kShadowCreature": 93, - "kModifyShadowCreatureLevel": 94, - "kSelectShadowCreatureAttackTarget": 95, - "kShadowDecrementTurn": 96, - "kCritBoostSchoolSpecific": 97, - "kSpawnCreature": 98, - "kUnPolymorph": 99, - "kPowerPipConversion": 100, - "kProtectCardBeneficial": 101, - "kProtectCardHarmful": 102, - "kProtectBeneficial": 103, - "kProtectHarmful": 104, - "kDivideDamage": 105, - "kCollectEssence": 106, - "kKillCreature": 107, - "kDispelBlock": 108, - "kConfusionBlock": 109, - "kModifyPipRoundRate": 110, - "kMaxHealthDamage": 112, - "kUntargetable": 114, - "kMakeTargetable": 115, - "kForceTargetable": 116, - "kRemoveStunBlock": 117, - "kExitCombat": 122, - "kSuspendPips": 123, - "kResumePips": 124, - "kAutoPass": 125, - "kStopAutoPass": 126, - "kVanish": 127, - "kStopVanish": 128, - "kMaxHealthHeal": 129, - "kHealByWard": 130, - "kTaunt": 131, - "kPacify": 132, - "kRemoveTargetRestriction": 133, - "kConvertHangingEffect": 134, - "kAddSpellToDeck": 135, - "kAddSpellToHand": 136, - "kModifyIncomingDamageOverTime": 137, - "kModifyIncomingHealOverTime": 138, - "kModifyCardDamagebyRank": 139, - "kPushConvertedCharm": 140, - "kStealConvertedCharm": 141, - "kPushConvertedWard": 142, - "kStealConvertedWard": 143, - "kPushConvertedOverTime": 144, - "kStealConvertedOverTime": 145, - "kRemoveConvertedCharm": 146, - "kRemoveConvertedWard": 147, - "kRemoveConvertedOverTime": 148, - "kModifyOverTimeDuration": 149, - "kModifySchoolPips": 150 - } + "hash": 1717601629 }, - "m_effectParam": { - "type": "int", + "m_resetTime": { + "type": "unsigned __int64", "id": 1, - "offset": 76, + "offset": 104, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 357920024 + "hash": 1841687339 }, - "m_disposition": { - "type": "enum SpellEffect::kHangingDisposition", + "m_productIconType": { + "type": "std::string", "id": 2, - "offset": 80, - "flags": 2097159, + "offset": 112, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1904841031, - "enum_options": { - "kBoth": 0, - "kBeneficial": 1, - "kHarmful": 2 - } + "hash": 3026584199 }, - "m_sDamageType": { + "m_status": { "type": "std::string", "id": 3, - "offset": 88, - "flags": 7, + "offset": 144, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2501054223 + "hash": 2458480799 }, - "m_damageType": { - "type": "unsigned int", + "m_itemsStatus": { + "type": "std::string", "id": 4, - "offset": 84, + "offset": 176, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 737882766 + "hash": 2942863777 }, - "m_pipNum": { - "type": "int", + "m_membership": { + "type": "bool", "id": 5, - "offset": 128, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 830827539 - }, - "m_actNum": { - "type": "int", - "id": 6, - "offset": 132, + "offset": 208, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 236824866 - }, - "m_effectTarget": { - "type": "enum SpellEffect::kEffectTarget", - "id": 7, - "offset": 140, - "flags": 2097183, + "hash": 1596198559 + } + } + }, + "1455639533": { + "name": "class AnimatePipsCinematicAction*", + "bases": [ + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 1455639533, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2458940523, - "enum_options": { - "kInvalidTarget": 0, - "kSpell": 1, - "kSpecificSpells": 2, - "kGlobal": 3, - "kEnemyTeam": 4, - "kEnemyTeamAllAtOnce": 5, - "kFriendlyTeam": 6, - "kFriendlyTeamAllAtOnce": 7, - "kEnemySingle": 8, - "kFriendlySingle": 9, - "kMinion": 10, - "kFriendlyMinion": 17, - "kEnemyMinion": 18, - "kSelf": 11, - "kAtLeastOneEnemy": 13, - "kPreselectedEnemySingle": 12, - "kMultiTargetEnemy": 14, - "kMultiTargetFriendly": 15, - "kFriendlySingleNotMe": 16 - } + "hash": 2237098605 }, - "m_numRounds": { - "type": "int", - "id": 8, - "offset": 144, - "flags": 31, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1229753829 + "hash": 2285866132 }, - "m_paramPerRound": { - "type": "int", - "id": 9, - "offset": 148, - "flags": 31, + "m_sActorPrefix": { + "type": "std::string", + "id": 2, + "offset": 120, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 683234234 + "hash": 3246317205 }, - "m_healModifier": { + "m_fPerPipDelay": { "type": "float", - "id": 10, + "id": 3, "offset": 152, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1317921248, - "enum_options": { - "__DEFAULT": "1.0" - } - }, - "m_spellTemplateID": { - "type": "unsigned int", - "id": 11, - "offset": 120, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 585567702 - }, - "m_enchantmentSpellTemplateID": { - "type": "unsigned int", - "id": 12, - "offset": 124, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 246955115 + "hash": 1466507836 }, - "m_act": { - "type": "bool", - "id": 13, - "offset": 136, + "m_fRate": { + "type": "float", + "id": 4, + "offset": 156, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 269510283 - }, - "m_cloaked": { - "type": "bool", - "id": 14, - "offset": 157, + "hash": 883665801 + } + } + }, + "1889865135": { + "name": "class RealmInfo*", + "bases": [ + "PropertyClass" + ], + "hash": 1889865135, + "properties": { + "m_realmName": { + "type": "std::string", + "id": 0, + "offset": 72, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 7349510 + "hash": 3507983949 }, - "m_bypassProtection": { - "type": "bool", - "id": 15, - "offset": 159, + "m_displayName": { + "type": "std::wstring", + "id": 1, + "offset": 104, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1657138252 + "hash": 2242885711 }, - "m_armorPiercingParam": { + "m_realmPopulation": { "type": "int", - "id": 16, - "offset": 160, + "id": 2, + "offset": 136, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2025530205 - }, - "m_chancePerTarget": { - "type": "int", - "id": 17, - "offset": 164, - "flags": 31, + "hash": 1904140438 + } + } + }, + "1455639527": { + "name": "class AnimatePipsCinematicAction", + "bases": [ + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 1455639527, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 845426794 + "hash": 2237098605 }, - "m_protected": { - "type": "bool", - "id": 18, - "offset": 168, - "flags": 31, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1445655037 + "hash": 2285866132 }, - "m_converted": { - "type": "bool", - "id": 19, - "offset": 169, - "flags": 31, + "m_sActorPrefix": { + "type": "std::string", + "id": 2, + "offset": 120, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1590428797 + "hash": 3246317205 }, - "m_rank": { - "type": "int", - "id": 20, - "offset": 208, + "m_fPerPipDelay": { + "type": "float", + "id": 3, + "offset": 152, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 219803942 + "hash": 1466507836 }, - "m_effectList": { - "type": "class SharedPointer", - "id": 21, - "offset": 224, + "m_fRate": { + "type": "float", + "id": 4, + "offset": 156, "flags": 7, - "container": "List", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 707154804 + "pointer": false, + "hash": 883665801 } } }, - "1701548937": { - "name": "class MagicXPLootInfo*", + "1888665808": { + "name": "class AuctionHouseConfig*", "bases": [ - "LootInfo", - "LootInfoBase", "PropertyClass" ], - "hash": 1701548937, + "hash": 1888665808, "properties": { - "m_lootType": { - "type": "enum LootInfo::LOOT_TYPE", + "m_maxCopiesEachTemplate": { + "type": "int", "id": 0, "offset": 72, - "flags": 2097183, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1591891442, - "enum_options": { - "LOOT_TYPE_NONE": 0, - "LOOT_TYPE_GOLD": 1, - "LOOT_TYPE_MANA": 2, - "LOOT_TYPE_ITEM": 3, - "LOOT_TYPE_TREASURE_CARD": 4, - "LOOT_TYPE_MAGIC_XP": 5, - "LOOT_TYPE_ADD_SPELL": 6, - "LOOT_TYPE_MAX_HEALTH": 7, - "LOOT_TYPE_MAX_GOLD": 8, - "LOOT_TYPE_MAX_MANA": 9, - "LOOT_TYPE_MAX_POTION": 10, - "LOOT_TYPE_TRAINING_POINTS": 11, - "LOOT_TYPE_RECIPE": 12, - "LOOT_TYPE_CRAFTING_SLOT": 13, - "LOOT_TYPE_REAGENT": 14, - "LOOT_TYPE_PETSNACK": 15, - "LOOT_TYPE_GARDENING_XP": 16, - "LOOT_TYPE_PET_XP": 17, - "LOOT_TYPE_TREASURE_TABLE": 18, - "LOOT_TYPE_ARENA_POINTS": 19, - "LOOT_TYPE_ARENA_BONUS_POINTS": 20, - "LOOT_TYPE_GROUP": 21, - "LOOT_TYPE_FISHING_XP": 22, - "LOOT_TYPE_EVENT_CURRENCY_1": 24, - "LOOT_TYPE_EVENT_CURRENCY_2": 25, - "LOOT_TYPE_PVP_CURRENCY": 26, - "LOOT_TYPE_PVP_CURRENCY_BONUS": 27, - "LOOT_TYPE_PVP_TOURNEY_CURRENCY": 28, - "LOOT_TYPE_PVP_TOURNEY_CURRENCY_BONUS": 29, - "LOOT_TYPE_FURNITURE_ESSENCE": 30 - } + "hash": 482850544 }, - "m_magicSchool": { - "type": "std::string", + "m_itemDegradationTime": { + "type": "float", "id": 1, "offset": 80, - "flags": 31, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1597012900 + "hash": 500224183 }, - "m_experience": { - "type": "int", + "m_priceMods": { + "type": "class AuctionPriceMods*", "id": 2, + "offset": 88, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2703049879 + }, + "m_craftedPriceMods": { + "type": "class AuctionPriceMods*", + "id": 3, "offset": 112, - "flags": 31, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2084157488 + }, + "m_observerTimeout": { + "type": "int", + "id": 4, + "offset": 160, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 759357570 + "hash": 562500777 + }, + "m_maxReagentTemplateCopies": { + "type": "int", + "id": 5, + "offset": 76, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1246482213 + }, + "m_reagentPriceMods": { + "type": "class AuctionPriceMods*", + "id": 6, + "offset": 136, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1253990333 + }, + "m_templatesInStockList": { + "type": "unsigned int", + "id": 7, + "offset": 184, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 977195955 } } }, - "515581446": { - "name": "class SharedPointer", + "1887713419": { + "name": "class BadgeInfo", "bases": [ - "GraphicalSpell", - "Spell", "PropertyClass" ], - "hash": 515581446, + "hash": 1887713419, "properties": { - "m_templateID": { + "m_badgeNameID": { "type": "unsigned int", "id": 0, - "offset": 128, + "offset": 72, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1286746870 + "hash": 800680558 }, - "m_enchantment": { - "type": "unsigned int", + "m_badgeTitle": { + "type": "std::string", "id": 1, "offset": 80, "flags": 31, @@ -22180,566 +21493,479 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 2217886818 + "hash": 1783354256 }, - "m_pipCost": { - "type": "class SharedPointer", + "m_badgeInfo": { + "type": "std::string", "id": 2, - "offset": 176, - "flags": 7, + "offset": 112, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3605704820 + "pointer": false, + "hash": 3002782298 }, - "m_regularAdjust": { - "type": "int", + "m_badgeProgressInfo": { + "type": "std::string", "id": 3, - "offset": 192, + "offset": 144, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1420453335 + "hash": 1902667503 }, - "m_magicSchoolID": { - "type": "unsigned int", + "m_badgeProgress": { + "type": "int", "id": 4, - "offset": 136, - "flags": 7, + "offset": 176, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 893146499 + "hash": 1577305122 }, - "m_accuracy": { - "type": "unsigned char", + "m_badgeMax": { + "type": "int", "id": 5, - "offset": 132, - "flags": 7, + "offset": 180, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2273914939 + "hash": 891676691 }, - "m_treasureCard": { + "m_badgeComplete": { "type": "bool", "id": 6, - "offset": 197, + "offset": 184, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1764879128 + "hash": 1943559071 }, - "m_battleCard": { - "type": "bool", + "m_index": { + "type": "unsigned int", "id": 7, - "offset": 198, + "offset": 188, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1332843753 + "hash": 1009433893 }, - "m_itemCard": { - "type": "bool", + "m_badgeOutline": { + "type": "std::string", "id": 8, - "offset": 199, - "flags": 7, + "offset": 192, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1683654300 + "hash": 1548975214 }, - "m_sideBoard": { - "type": "bool", + "m_badgeImage": { + "type": "std::string", "id": 9, - "offset": 200, - "flags": 7, + "offset": 224, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1897838368 + "hash": 1770432017 }, - "m_spellID": { - "type": "unsigned int", + "m_dynamicBadge": { + "type": "bool", "id": 10, - "offset": 204, + "offset": 256, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1697483258 + "hash": 1496846667 }, - "m_leavesPlayWhenCastOverride": { - "type": "bool", + "m_badgeFilterID": { + "type": "unsigned int", "id": 11, - "offset": 216, + "offset": 260, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 874407398 + "hash": 1965286611 }, - "m_cloaked": { - "type": "bool", + "m_filterIndex": { + "type": "unsigned int", "id": 12, - "offset": 196, - "flags": 7, + "offset": 264, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 7349510 + "hash": 1526994539 }, - "m_enchantmentSpellIsItemCard": { + "m_overcount": { "type": "bool", "id": 13, - "offset": 76, + "offset": 268, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 531590701 + "hash": 203918520 }, - "m_premutationSpellID": { - "type": "unsigned int", + "m_hasLoot": { + "type": "bool", "id": 14, - "offset": 112, + "offset": 269, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1530256370 + "hash": 1743226445 }, - "m_enchantedThisCombat": { - "type": "bool", + "m_badgeLoot": { + "type": "std::string", "id": 15, - "offset": 77, + "offset": 272, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1895738923 + "hash": 3002891500 }, - "m_paramOverrides": { - "type": "class SharedPointer", + "m_extraCredit": { + "type": "bool", "id": 16, - "offset": 224, + "offset": 304, "flags": 31, - "container": "List", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2061635599 + "pointer": false, + "hash": 847737554 }, - "m_subEffectMeta": { - "type": "class SharedPointer", + "m_overcountInterval": { + "type": "unsigned int", "id": 17, - "offset": 240, + "offset": 308, "flags": 31, - "container": "List", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1944101106 + "pointer": false, + "hash": 1845137015 }, - "m_delayEnchantment": { - "type": "bool", + "m_recurringRewardsDescription": { + "type": "std::string", "id": 18, - "offset": 257, - "flags": 287, + "offset": 312, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 191336919 + "hash": 1668915496 }, - "m_PvE": { - "type": "bool", + "m_overcountLoot": { + "type": "std::string", "id": 19, - "offset": 264, - "flags": 287, + "offset": 344, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 269492350 - }, - "m_delayEnchantmentOrder": { - "type": "enum SpellEffect::kDelayOrder", - "id": 20, - "offset": 72, - "flags": 287, + "hash": 2371089534 + } + } + }, + "601809951": { + "name": "class PetTomeBehavior*", + "bases": [ + "PetTomeBehaviorBase", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 601809951, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2526055263, - "enum_options": { - "SpellEffect::kAnyOrder": 0, - "SpellEffect::kFirst": 1, - "SpellEffect::kSecond": 2 - } + "hash": 223437287 }, - "m_roundAddedTC": { - "type": "int", - "id": 21, - "offset": 260, - "flags": 31, + "m_petData": { + "type": "std::string", + "id": 1, + "offset": 144, + "flags": 551, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 112365451 + "hash": 2990195294 + } + } + }, + "1030977293": { + "name": "class SharedPointer", + "bases": [ + "CinematicAction", + "PropertyClass" + ], + "hash": 1030977293, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 }, - "m_secondarySchoolID": { - "type": "unsigned int", - "id": 22, - "offset": 304, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2081206026 + "hash": 2285866132 } } }, - "1700989073": { - "name": "class SharedPointer", + "1886011985": { + "name": "class InfractionBehavior", "bases": [ - "Window", + "BehaviorInstance", "PropertyClass" ], - "hash": 1700989073, + "hash": 1886011985, "properties": { - "m_sName": { - "type": "std::string", + "m_behaviorTemplateNameID": { + "type": "unsigned int", "id": 0, - "offset": 80, - "flags": 135, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2306437263 + "hash": 223437287 }, - "m_Children": { - "type": "class SharedPointer", + "m_penalties": { + "type": "class SharedPointer", "id": 1, "offset": 112, - "flags": 65671, - "container": "Vector", + "flags": 31, + "container": "List", "dynamic": true, "singleton": false, "pointer": true, - "hash": 2621225959 + "hash": 1696001746 }, - "m_Style": { - "type": "unsigned int", + "m_record": { + "type": "class SharedPointer", "id": 2, - "offset": 152, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "SCALE_CHILDREN": 2, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "FOCUS_LOCKED": 64, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152 - } - }, - "m_Flags": { - "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 1048583, - "container": "Static", - "dynamic": false, + "offset": 128, + "flags": 16, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } - }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, + "pointer": true, + "hash": 2129713657 + } + } + }, + "1030093719": { + "name": "class SharedPointer", + "bases": [ + "DdWinAnimMoveMob", + "WinAnimMoveToLocationSpeed", + "WinAnimMoveToLocation", + "WindowAnimation", + "PropertyClass" + ], + "hash": 1030093719, + "properties": { + "m_bUseDeepCopy": { + "type": "bool", + "id": 0, + "offset": 72, "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3105139380 + "hash": 433380635 }, - "m_fTargetAlpha": { - "type": "float", - "id": 5, - "offset": 212, + "m_targetLocation": { + "type": "class Vector3D", + "id": 1, + "offset": 80, "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1809129834 + "hash": 2653859938 }, - "m_fDisabledAlpha": { + "m_fSpeed": { "type": "float", - "id": 6, - "offset": 216, + "id": 2, + "offset": 96, "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1389987675 - }, - "m_fAlpha": { - "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 482130755 + "hash": 503609006 }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, + "m_facing": { + "type": "enum DoodleDoug::DdDirection", + "id": 3, + "offset": 112, "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3623628394 - }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, "pointer": false, - "hash": 2102211316 + "hash": 591537519 }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, + "m_cameFrom": { + "type": "enum DoodleDoug::DdDirection", + "id": 4, + "offset": 116, "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1846695875 + "hash": 1071209393 }, - "m_Offset": { + "m_nextWaypoint": { "type": "class Point", - "id": 11, - "offset": 192, + "id": 5, + "offset": 120, "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3389835433 + "hash": 2346187452 }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, + "m_myBoard": { + "type": "class DoodleDoug*", + "id": 6, + "offset": 136, "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 2547159940 - }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2587533771 - }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, + "pointer": true, + "hash": 2212758093 + } + } + }, + "1455911260": { + "name": "class PetDerbyTrackInfo", + "bases": [ + "PropertyClass" + ], + "hash": 1455911260, + "properties": { + "m_trackID": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3091503757 + "hash": 703251290 }, - "m_fPosition": { - "type": "float", - "id": 16, - "offset": 584, - "flags": 135, + "m_zone": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1808212114 + "hash": 1717806295 }, - "m_BaseColor": { - "type": "class Color", - "id": 17, - "offset": 588, - "flags": 262279, + "m_key": { + "type": "std::string", + "id": 2, + "offset": 112, + "flags": 8388639, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2172251096 + "hash": 1764739684 }, - "m_BarColor": { - "type": "class Color", - "id": 18, - "offset": 592, - "flags": 262279, + "m_rank": { + "type": "unsigned char", + "id": 3, + "offset": 144, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2259916498 + "hash": 857403388 }, - "m_bDisplayVertical": { - "type": "bool", - "id": 19, - "offset": 596, - "flags": 135, + "m_lapCount": { + "type": "unsigned char", + "id": 4, + "offset": 145, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1359621189 - }, - "m_pBarMaterial": { - "type": "class SharedPointer", - "id": 20, - "offset": 600, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2481929515 - }, - "m_pTopLeftMaterial": { - "type": "class SharedPointer", - "id": 21, - "offset": 616, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3248096916 - }, - "m_pCenterMaterial": { - "type": "class SharedPointer", - "id": 22, - "offset": 632, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1519560055 - }, - "m_pBottomRightMaterial": { - "type": "class SharedPointer", - "id": 23, - "offset": 648, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2932444745 + "hash": 791794870 } } }, - "515253407": { - "name": "class ClientPlayGraphicOnSigilCinematicAction*", + "1885023527": { + "name": "class IngredientTracking*", "bases": [ - "PlayGraphicOnSigilCinematicAction", - "CinematicAction", "PropertyClass" ], - "hash": 515253407, + "hash": 1885023527, "properties": { - "m_timeOffset": { - "type": "float", + "m_ingredientID": { + "type": "gid", "id": 0, "offset": 72, "flags": 7, @@ -22747,10 +21973,10 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 + "hash": 1616797422 }, - "m_minDuration": { - "type": "float", + "m_quantity": { + "type": "int", "id": 1, "offset": 80, "flags": 7, @@ -22758,31 +21984,33 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 1733171553 + "hash": 169215289 }, - "m_assetName": { - "type": "std::string", + "m_sufficient": { + "type": "bool", "id": 2, - "offset": 88, + "offset": 96, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1513131580 + "hash": 92688739 } } }, - "1700098374": { - "name": "class MagicMirrorShopBehaviorTemplate", + "1029974602": { + "name": "class SharedPointer", "bases": [ - "BehaviorTemplate", + "ShadowCreatureIdleCinematicAction", + "ActorCinematicAction", + "CinematicAction", "PropertyClass" ], - "hash": 1700098374, + "hash": 1029974602, "properties": { - "m_behaviorName": { - "type": "std::string", + "m_timeOffset": { + "type": "float", "id": 0, "offset": 72, "flags": 7, @@ -22790,30 +22018,29 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 3130754092 + "hash": 2237098605 }, - "m_shopOptions": { - "type": "unsigned int", + "m_actor": { + "type": "std::string", "id": 1, - "offset": 120, + "offset": 80, "flags": 7, - "container": "List", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 704167667 + "hash": 2285866132 } } }, - "118534071": { - "name": "class GetHitCinematicStageTemplate*", + "1455712177": { + "name": "class SharedPointer", "bases": [ - "CinematicStageTemplate", "PropertyClass" ], - "hash": 118534071, + "hash": 1455712177, "properties": { - "m_name": { + "m_interactorOneName": { "type": "std::string", "id": 0, "offset": 72, @@ -22822,10 +22049,10 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 1717359772 + "hash": 3615982777 }, - "m_duration": { - "type": "float", + "m_interactorTwoName": { + "type": "std::string", "id": 1, "offset": 104, "flags": 7, @@ -22833,449 +22060,225 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 920323453 + "hash": 1847465777 }, - "m_actions": { - "type": "class SharedPointer", + "m_eventsRaisedOnOne": { + "type": "std::string", "id": 2, - "offset": 112, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1380578687 - }, - "m_stageRelationships": { - "type": "class SharedPointer", - "id": 3, - "offset": 128, + "offset": 136, "flags": 7, "container": "List", "dynamic": true, "singleton": false, - "pointer": true, - "hash": 499983354 - }, - "m_cameras": { - "type": "std::string", - "id": 4, - "offset": 152, - "flags": 131079, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 3217341687 - }, - "m_altcameras": { - "type": "std::string", - "id": 5, - "offset": 176, - "flags": 131079, - "container": "Vector", - "dynamic": true, - "singleton": false, "pointer": false, - "hash": 1882980152 - }, - "m_animation": { - "type": "std::string", - "id": 6, - "offset": 200, + "hash": 2412613351 + } + } + }, + "602087822": { + "name": "class RemoveProtectionEffectCinematicAction*", + "bases": [ + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 602087822, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3431428731 + "hash": 2237098605 }, - "m_bUsesGetHitSound": { - "type": "bool", - "id": 7, - "offset": 232, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 49296995 + "hash": 2285866132 } } }, - "515142074": { - "name": "class SharedPointer", + "601922177": { + "name": "class StateEffectTemplate*", "bases": [ - "Window", + "GameEffectTemplate", "PropertyClass" ], - "hash": 515142074, + "hash": 601922177, "properties": { - "m_sName": { + "m_effectName": { "type": "std::string", "id": 0, - "offset": 80, - "flags": 135, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2306437263 + "hash": 2029161513 }, - "m_Children": { - "type": "class SharedPointer", + "m_effectCategory": { + "type": "std::string", "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2621225959 + "pointer": false, + "hash": 1852673222 }, - "m_Style": { - "type": "unsigned int", + "m_sortOrder": { + "type": "int", "id": 2, - "offset": 152, - "flags": 1048583, + "offset": 148, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "SCALE_CHILDREN": 2, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "FOCUS_LOCKED": 64, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152 - } + "hash": 1411218206 }, - "m_Flags": { - "type": "unsigned int", + "m_duration": { + "type": "double", "id": 3, - "offset": 156, - "flags": 1048583, + "offset": 192, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } + "hash": 2727932435 }, - "m_Window": { - "type": "class Rect", + "m_stackingCategories": { + "type": "std::string", "id": 4, "offset": 160, - "flags": 135, - "container": "Static", - "dynamic": false, + "flags": 7, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 3105139380 + "hash": 1774497525 }, - "m_fTargetAlpha": { - "type": "float", + "m_isPersistent": { + "type": "bool", "id": 5, - "offset": 212, - "flags": 135, + "offset": 153, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1809129834 + "hash": 923861920 }, - "m_fDisabledAlpha": { - "type": "float", + "m_bIsOnPet": { + "type": "bool", "id": 6, - "offset": 216, - "flags": 135, + "offset": 154, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1389987675 + "hash": 522593303 }, - "m_fAlpha": { - "type": "float", + "m_isPublic": { + "type": "bool", "id": 7, - "offset": 208, - "flags": 65671, + "offset": 152, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 482130755 + "hash": 1728439822 }, - "m_pWindowStyle": { - "type": "class SharedPointer", + "m_visualEffectAddName": { + "type": "std::string", "id": 8, - "offset": 232, - "flags": 135, + "offset": 200, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3623628394 + "pointer": false, + "hash": 3382086694 }, - "m_sHelp": { - "type": "std::wstring", + "m_visualEffectRemoveName": { + "type": "std::string", "id": 9, - "offset": 248, - "flags": 4194439, + "offset": 232, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2102211316 + "hash": 1541697323 }, - "m_sScript": { + "m_onAddFunctorName": { "type": "std::string", "id": 10, - "offset": 352, - "flags": 135, + "offset": 280, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1846695875 + "hash": 1561843107 }, - "m_Offset": { - "type": "class Point", + "m_onRemoveFunctorName": { + "type": "std::string", "id": 11, - "offset": 192, - "flags": 135, + "offset": 312, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3389835433 + "hash": 2559017864 }, - "m_Scale": { - "type": "class Point", + "m_stackingRule": { + "type": "enum STACKING_RULE", "id": 12, - "offset": 200, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2547159940 - }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2587533771 - }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3091503757 - } - } - }, - "1289297476": { - "name": "class GroupObserver*", - "bases": [ - "PropertyClass" - ], - "hash": 1289297476, - "properties": {} - }, - "1700072153": { - "name": "class SpellCardAttachmentCinematicAction", - "bases": [ - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 1700072153, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - }, - "m_nodeName": { - "type": "std::string", - "id": 2, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3607089954 - }, - "m_offset": { - "type": "class Vector3D", - "id": 3, - "offset": 152, - "flags": 7, + "offset": 144, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2445636425 + "hash": 431568889, + "enum_options": { + "STACKING_ALLOWED": 0, + "STACKING_NOSTACK": 1, + "STACKING_REPLACE": 2 + } }, - "m_rotation": { - "type": "class Vector3D", - "id": 4, - "offset": 164, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3065089042 - } - } - }, - "118523831": { - "name": "class GetHitCinematicStageTemplate", - "bases": [ - "CinematicStageTemplate", - "PropertyClass" - ], - "hash": 118523831, - "properties": { - "m_name": { + "m_state": { "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1717359772 - }, - "m_duration": { - "type": "float", - "id": 1, - "offset": 104, + "id": 13, + "offset": 360, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 920323453 - }, - "m_actions": { - "type": "class SharedPointer", - "id": 2, - "offset": 112, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1380578687 - }, - "m_stageRelationships": { - "type": "class SharedPointer", - "id": 3, - "offset": 128, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 499983354 - }, - "m_cameras": { - "type": "std::string", - "id": 4, - "offset": 152, - "flags": 131079, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 3217341687 - }, - "m_altcameras": { - "type": "std::string", - "id": 5, - "offset": 176, - "flags": 131079, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1882980152 + "hash": 2307803100 }, "m_animation": { "type": "std::string", - "id": 6, - "offset": 200, + "id": 14, + "offset": 392, "flags": 7, "container": "Static", "dynamic": false, @@ -23283,136 +22286,34 @@ "pointer": false, "hash": 3431428731 }, - "m_bUsesGetHitSound": { + "m_override": { "type": "bool", - "id": 7, - "offset": 232, + "id": 15, + "offset": 424, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 49296995 - } - } - }, - "514698517": { - "name": "class GameObjectAnimData*", - "bases": [ - "PropertyClass" - ], - "hash": 514698517, - "properties": { - "m_zoneTag": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3405382643 - }, - "m_zoneTagID": { - "type": "unsigned int", - "id": 1, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 965291410 - }, - "m_animation": { - "type": "std::string", - "id": 2, - "offset": 112, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3431428731 - }, - "m_backupAnimation": { - "type": "std::string", - "id": 3, - "offset": 144, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1661537937 - }, - "m_default": { - "type": "bool", - "id": 4, - "offset": 176, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1014207576 - }, - "m_evenWhileDead": { - "type": "bool", - "id": 5, - "offset": 177, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2100875368 + "hash": 139353587 } } }, - "1286901338": { - "name": "class SharedPointer", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1286901338, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_gardeningData": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2329363555 - } - } + "1886728075": { + "name": "class std::vector >", + "bases": [], + "hash": 1886728075, + "properties": {} }, - "117931045": { - "name": "class SharedPointer", + "1030229640": { + "name": "class ItemSetBonusData*", "bases": [ - "BehaviorTemplate", "PropertyClass" ], - "hash": 117931045, + "hash": 1030229640, "properties": { - "m_behaviorName": { - "type": "std::string", + "m_numItemsToEquip": { + "type": "int", "id": 0, "offset": 72, "flags": 7, @@ -23420,1111 +22321,114 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 3130754092 - } - } - }, - "1285101143": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1285101143, - "properties": { - "m_madlibBlock": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2391615468 - }, - "m_index": { - "type": "unsigned int", - "id": 1, - "offset": 88, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1009433893 - } - } - }, - "1285004035": { - "name": "class InventoryBehaviorBase", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1285004035, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_itemList": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 27, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1983655699 - } - } - }, - "1700319921": { - "name": "class SharedPointer", - "bases": [ - "Window", - "PropertyClass" - ], - "hash": 1700319921, - "properties": { - "m_sName": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306437263 - }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621225959 - }, - "m_Style": { - "type": "unsigned int", - "id": 2, - "offset": 152, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "SCALE_CHILDREN": 2, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "FOCUS_LOCKED": 64, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152 - } - }, - "m_Flags": { - "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648, - "RESIZE_TO_FIT_MOVIE": 8388608 - } - }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3105139380 - }, - "m_fTargetAlpha": { - "type": "float", - "id": 5, - "offset": 212, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1809129834 - }, - "m_fDisabledAlpha": { - "type": "float", - "id": 6, - "offset": 216, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1389987675 - }, - "m_fAlpha": { - "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 482130755 - }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3623628394 - }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2102211316 - }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1846695875 - }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3389835433 - }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2547159940 - }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2587533771 - }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3091503757 + "hash": 243822227 }, - "m_sMovieFilename": { + "m_description": { "type": "std::string", - "id": 16, - "offset": 584, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1581619567 - } - } - }, - "515253387": { - "name": "class ClientPlayGraphicOnSigilCinematicAction", - "bases": [ - "PlayGraphicOnSigilCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 515253387, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_minDuration": { - "type": "float", "id": 1, "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1733171553 - }, - "m_assetName": { - "type": "std::string", - "id": 2, - "offset": 88, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513131580 - } - } - }, - "1284438851": { - "name": "class JewelShopOption*", - "bases": [ - "ServiceOptionBase", - "PropertyClass" - ], - "hash": 1284438851, - "properties": { - "m_serviceName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2206028813 - }, - "m_iconKey": { - "type": "std::string", - "id": 1, - "offset": 168, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2457138637 - }, - "m_displayKey": { - "type": "std::string", - "id": 2, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3023276954 - }, - "m_serviceIndex": { - "type": "unsigned int", - "id": 3, - "offset": 204, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2103126710 - }, - "m_forceInteract": { - "type": "bool", - "id": 4, - "offset": 200, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1705789564 - } - } - }, - "118932543": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 118932543, - "properties": { - "m_playerGID": { - "type": "gid", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 578537369 - }, - "m_totalProgress": { - "type": "unsigned short", - "id": 1, - "offset": 88, - "flags": 7, + "flags": 8388615, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 770936385 + "hash": 1649374815 }, - "m_tokens": { - "type": "unsigned char", + "m_equipEffectsGrantedRequirements": { + "type": "class RequirementList*", "id": 2, - "offset": 90, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1631929220 - }, - "m_flags": { - "type": "unsigned short", - "id": 3, - "offset": 92, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1347981045 - }, - "m_goalProgress1": { - "type": "unsigned short", - "id": 4, - "offset": 94, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2533159345 - }, - "m_goalProgress2": { - "type": "unsigned short", - "id": 5, - "offset": 96, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2533159346 - }, - "m_goalProgress3": { - "type": "unsigned short", - "id": 6, - "offset": 98, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2533159347 - }, - "m_goalProgress4": { - "type": "unsigned short", - "id": 7, - "offset": 100, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2533159348 - }, - "m_goalProgress5": { - "type": "unsigned short", - "id": 8, - "offset": 102, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2533159349 - }, - "m_packedName": { - "type": "unsigned int", - "id": 9, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 518911062 - }, - "m_purchasedTokens": { - "type": "unsigned char", - "id": 10, - "offset": 91, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2467704067 - }, - "m_level": { - "type": "unsigned char", - "id": 11, - "offset": 108, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1438884808 - }, - "m_buddyListGID": { - "type": "gid", - "id": 12, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 50378240 - }, - "m_extendedData": { - "type": "unsigned char", - "id": 13, "offset": 112, "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2268810331 - }, - "m_usesExtraData": { - "type": "bool", - "id": 14, - "offset": 136, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1683530097 - } - } - }, - "1701513809": { - "name": "class SharedPointer", - "bases": [ - "Window", - "PropertyClass" - ], - "hash": 1701513809, - "properties": { - "m_sName": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 2306437263 - }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, - "singleton": false, "pointer": true, - "hash": 2621225959 - }, - "m_Style": { - "type": "unsigned int", - "id": 2, - "offset": 152, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "SCALE_CHILDREN": 2, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "FOCUS_LOCKED": 64, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152 - } + "hash": 2841976527 }, - "m_Flags": { - "type": "unsigned int", + "m_equipEffectsGranted": { + "type": "class GameEffectInfo*", "id": 3, - "offset": 156, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } - }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3105139380 - }, - "m_fTargetAlpha": { - "type": "float", - "id": 5, - "offset": 212, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1809129834 - }, - "m_fDisabledAlpha": { - "type": "float", - "id": 6, - "offset": 216, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1389987675 - }, - "m_fAlpha": { - "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 482130755 - }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3623628394 - }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2102211316 - }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1846695875 - }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3389835433 - }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2547159940 - }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, + "offset": 120, + "flags": 7, "container": "List", "dynamic": true, "singleton": false, - "pointer": false, - "hash": 2587533771 - }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3091503757 - }, - "m_bAutomaticFormatting": { - "type": "bool", - "id": 16, - "offset": 664, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 78023831 - }, - "m_tabPages": { - "type": "class ControlTab::Page", - "id": 17, - "offset": 720, - "flags": 135, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2885422823 - }, - "m_tabSize": { - "type": "class Size", - "id": 18, - "offset": 672, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 69974606 - }, - "m_tabPageRect": { - "type": "class Rect", - "id": 19, - "offset": 616, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2839803454 - }, - "m_tabButtonsRect": { - "type": "class Rect", - "id": 20, - "offset": 632, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1836144176 - }, - "m_tabAlign": { - "type": "enum ControlTab::TabAlignment", - "id": 21, - "offset": 668, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1511299133, - "enum_options": { - "Top": 0, - "Bottom": 1, - "Left": 2, - "Right": 3 - } + "pointer": true, + "hash": 1136533636 } } }, - "118876438": { - "name": "class SharedPointer", + "1455963894": { + "name": "class SphereGeomParams*", "bases": [ - "GameEffectTemplate", + "GeomParams", "PropertyClass" ], - "hash": 118876438, + "hash": 1455963894, "properties": { - "m_effectName": { - "type": "std::string", + "m_eType": { + "type": "enum ProxyType", "id": 0, "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2029161513 - }, - "m_effectCategory": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1852673222 - }, - "m_sortOrder": { - "type": "int", - "id": 2, - "offset": 148, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1411218206 - }, - "m_duration": { - "type": "double", - "id": 3, - "offset": 192, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2727932435 - }, - "m_stackingCategories": { - "type": "std::string", - "id": 4, - "offset": 160, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1774497525 - }, - "m_isPersistent": { - "type": "bool", - "id": 5, - "offset": 153, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 923861920 - }, - "m_bIsOnPet": { - "type": "bool", - "id": 6, - "offset": 154, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 522593303 - }, - "m_isPublic": { - "type": "bool", - "id": 7, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1728439822 - }, - "m_visualEffectAddName": { - "type": "std::string", - "id": 8, - "offset": 200, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3382086694 - }, - "m_visualEffectRemoveName": { - "type": "std::string", - "id": 9, - "offset": 232, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1541697323 - }, - "m_onAddFunctorName": { - "type": "std::string", - "id": 10, - "offset": 280, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1561843107 - }, - "m_onRemoveFunctorName": { - "type": "std::string", - "id": 11, - "offset": 312, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2559017864 - }, - "m_stackingRule": { - "type": "enum STACKING_RULE", - "id": 12, - "offset": 144, "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 431568889, + "hash": 1656534066, "enum_options": { - "STACKING_ALLOWED": 0, - "STACKING_NOSTACK": 1, - "STACKING_REPLACE": 2 + "ProxyTypeBox": 0, + "ProxyTypeRay": 1, + "ProxyTypeSphere": 2, + "ProxyTypeCylinder": 3, + "ProxyTypeTube": 4, + "ProxyTypePlane": 5, + "ProxyTypeMesh": 6, + "ProxyTypeInvalid": 7 } }, - "m_xpPercent": { - "type": "int", - "id": 13, - "offset": 360, + "m_fRadius": { + "type": "float", + "id": 1, + "offset": 80, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 755316563 + "hash": 787972805 } } }, - "515477390": { - "name": "class BadgeFilterDescription*", + "1887260125": { + "name": "class CombatActionListObj", "bases": [ "PropertyClass" ], - "hash": 515477390, + "hash": 1887260125, "properties": { - "m_filterName": { - "type": "std::string", + "m_actionList": { + "type": "class CombatAction", "id": 0, "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1798118690 - }, - "m_filterIcon": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1797941258 - }, - "m_displayKey": { - "type": "std::string", - "id": 2, - "offset": 136, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3023276954 - }, - "m_countOffset": { - "type": "unsigned int", - "id": 3, - "offset": 172, - "flags": 7, - "container": "Static", - "dynamic": false, + "flags": 31, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 621805021 + "hash": 1971690676 } } }, - "1285004803": { - "name": "class InventoryBehaviorBase*", + "1483265571": { + "name": "class ClientPetNameBehavior", "bases": [ + "ClientWizPlayerNameBehavior", + "NameOverrideBehavior", "BehaviorInstance", "PropertyClass" ], - "hash": 1285004803, + "hash": 1483265571, "properties": { "m_behaviorTemplateNameID": { "type": "unsigned int", @@ -24537,337131 +22441,65 @@ "pointer": false, "hash": 223437287 }, - "m_itemList": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 27, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1983655699 - } - } - }, - "1701337223": { - "name": "class NPCBehaviorTemplate", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 1701337223, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - }, - "m_nStartingHealth": { - "type": "int", + "m_wsNameOverride": { + "type": "std::wstring", "id": 1, "offset": 120, - "flags": 7, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 317221834 + "hash": 2131249091 }, - "m_HideCurrentHP": { - "type": "bool", + "m_nameKeys": { + "type": "unsigned int", "id": 2, - "offset": 124, - "flags": 263, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 31360456 - }, - "m_nLevel": { - "type": "int", - "id": 3, - "offset": 128, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 717812768 - }, - "m_fIntelligence": { - "type": "float", - "id": 4, - "offset": 132, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1871176720 - }, - "m_fSelfishFactor": { - "type": "float", - "id": 5, - "offset": 136, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1823445130 - }, - "m_nameColor": { - "type": "class Color", - "id": 6, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3103779710 - }, - "m_bossMob": { - "type": "bool", - "id": 7, - "offset": 144, - "flags": 7, + "offset": 352, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 986129576 + "hash": 1772225898 }, - "m_turnTowardsPlayer": { + "m_useRank": { "type": "bool", - "id": 8, - "offset": 145, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1881705133 - }, - "m_mobTitle": { - "type": "enum NPCBehaviorTemplate::TITLE_TYPE", - "id": 9, - "offset": 148, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2205905992, - "enum_options": { - "Easy": 0, - "Normal": 1, - "Elite": 2, - "Boss": 3, - "Minion": 4 - } - }, - "m_schoolOfFocus": { - "type": "std::string", - "id": 10, - "offset": 160, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1523233848 - }, - "m_nAggressiveFactor": { - "type": "int", - "id": 11, - "offset": 140, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 783108599 - }, - "m_triggerList": { - "type": "std::string", - "id": 12, - "offset": 232, - "flags": 268435463, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3100120619, - "enum_options": { - "__BASECLASS": "CombatTriggerList" - } - }, - "m_cylinderScaleValue": { - "type": "float", - "id": 13, - "offset": 268, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1227245334 - }, - "m_maxShadowPips": { - "type": "int", - "id": 14, - "offset": 272, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 985142882 - }, - "m_baseEffects": { - "type": "class SharedPointer", - "id": 15, - "offset": 280, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1726069264 - }, - "m_secondarySchoolOfFocus": { - "type": "std::string", - "id": 16, - "offset": 200, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3043326464 - } - } - }, - "515452814": { - "name": "class BadgeFilterDescription", - "bases": [ - "PropertyClass" - ], - "hash": 515452814, - "properties": { - "m_filterName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1798118690 - }, - "m_filterIcon": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1797941258 - }, - "m_displayKey": { - "type": "std::string", - "id": 2, - "offset": 136, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3023276954 - }, - "m_countOffset": { - "type": "unsigned int", "id": 3, - "offset": 172, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 621805021 - } - } - }, - "1701203716": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1701203716, - "properties": { - "m_entryList": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1101912968 - } - } - }, - "120041523": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 120041523, - "properties": { - "m_infoPairs": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1522101428 - }, - "m_bSocketsLocked": { - "type": "bool", - "id": 1, - "offset": 88, + "offset": 356, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1073026659 - } - } - }, - "1285544566": { - "name": "class WizZoneData", - "bases": [ - "ZoneData", - "PropertyClass" - ], - "hash": 1285544566, - "properties": { - "m_nType": { - "type": "enum ZoneData::Type", - "id": 0, - "offset": 72, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2656861130, - "enum_options": { - "ZONETYPE_INVALID": 4294967295, - "ZONETYPE_START": 0, - "ZONETYPE_STATIC": 1, - "ZONETYPE_DYNAMIC": 2 - } - }, - "m_zoneName": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 134217735, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2171167736 - }, - "m_zoneDisplayName": { - "type": "std::string", - "id": 2, - "offset": 112, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1962339438 - }, - "m_skyDomeName": { - "type": "std::string", - "id": 3, - "offset": 144, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2339979448 + "hash": 2040475372 }, - "m_skyLayerName": { - "type": "std::string", + "m_eGender": { + "type": "enum eGender", "id": 4, - "offset": 184, - "flags": 131079, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2824410256 - }, - "m_collisionFileName": { - "type": "std::string", - "id": 5, - "offset": 208, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1725365192 - }, - "m_gamebryoSceneFileName": { - "type": "std::string", - "id": 6, - "offset": 240, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3084395168 - }, - "m_musicFileName": { - "type": "std::string", - "id": 7, - "offset": 272, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1817607805 - }, - "m_spawnList": { - "type": "class SpawnPointTemplate", - "id": 8, - "offset": 304, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1063041926 - }, - "m_teleportList": { - "type": "class TeleporterTemplate", - "id": 9, - "offset": 320, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1031682046 - }, - "m_locationList": { - "type": "class LocationTemplate", - "id": 10, - "offset": 336, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2114141903 - }, - "m_objectList": { - "type": "class SharedPointer", - "id": 11, - "offset": 352, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 882782852 - }, - "m_allEffects": { - "type": "std::string", - "id": 12, - "offset": 368, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2483362772 - }, - "m_healingPerMinute": { - "type": "int", - "id": 13, - "offset": 480, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 782115659 - }, - "m_playerPopThresh": { - "type": "int", - "id": 14, - "offset": 484, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1692004900 - }, - "m_nSoftLimit": { - "type": "int", - "id": 15, - "offset": 488, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1593689635, - "enum_options": { - "__DEFAULT": 50 - } - }, - "m_nHardLimit": { - "type": "int", - "id": 16, - "offset": 492, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1752405446, - "enum_options": { - "__DEFAULT": 100 - } - }, - "m_farClip": { - "type": "float", - "id": 17, - "offset": 496, - "flags": 7, + "offset": 432, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1393981304, + "hash": 2776344943, "enum_options": { - "__DEFAULT": 25000 + "Male": 1, + "Female": 0, + "Neutral": 2 } }, - "m_nearClipOverride": { - "type": "float", - "id": 18, - "offset": 500, - "flags": 519, + "m_eRace": { + "type": "enum eRace", + "id": 5, + "offset": 436, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1092806405, - "enum_options": { - "__DEFAULT": 1 - } - }, - "m_defaultBackgroundColorRed": { - "type": "float", - "id": 19, - "offset": 504, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1511995894 - }, - "m_defaultBackgroundColorGreen": { - "type": "float", - "id": 20, - "offset": 508, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2127637260 - }, - "m_defaultBackgroundColorBlue": { - "type": "float", - "id": 21, - "offset": 512, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1908873795 - }, - "m_fogColorRed": { - "type": "int", - "id": 22, - "offset": 516, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1578810896 - }, - "m_fogColorGreen": { - "type": "int", - "id": 23, - "offset": 520, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1229332710 - }, - "m_fogColorBlue": { - "type": "int", - "id": 24, - "offset": 524, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 557754685 - }, - "m_fogDensity": { - "type": "float", - "id": 25, - "offset": 528, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1170901171 - }, - "m_fogStartDensity": { - "type": "float", - "id": 26, - "offset": 532, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1642636961 - }, - "m_fogEnabled": { - "type": "bool", - "id": 27, - "offset": 536, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 563358906 - }, - "m_nObjectID": { - "type": "unsigned int", - "id": 28, - "offset": 540, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 748496927 - }, - "m_bDisableTransitionAutoHide": { - "type": "bool", - "id": 29, - "offset": 544, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 702738663 - }, - "m_encounterNames": { - "type": "std::string", - "id": 30, - "offset": 384, - "flags": 268435463, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2150841410, - "enum_options": { - "__BASECLASS": "EncounterTemplate" - } - }, - "m_encounterGroup": { - "type": "std::string", - "id": 31, - "offset": 400, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2143153595 - }, - "m_zoneAdjectives": { - "type": "std::string", - "id": 32, - "offset": 432, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 3603923993 - }, - "m_zonePermissions": { - "type": "std::string", - "id": 33, - "offset": 464, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2928923475 - }, - "m_canPlaceTeleportMarker": { - "type": "bool", - "id": 34, - "offset": 545, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 600985755 - }, - "m_filterSetUID": { - "type": "unsigned int", - "id": 35, - "offset": 548, - "flags": 33554695, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1054674497 - }, - "m_conditionalSkyboxes": { - "type": "class SkyboxInfo", - "id": 36, - "offset": 552, - "flags": 263, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2512765286 - }, - "m_musicDelay": { - "type": "float", - "id": 37, - "offset": 568, - "flags": 263, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1217785767 - }, - "m_combatMusic": { - "type": "std::string", - "id": 38, - "offset": 576, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3636593682 - }, - "m_guiFile": { - "type": "std::string", - "id": 39, - "offset": 608, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2717603296 - }, - "m_bloomBrightnessThreshold": { - "type": "float", - "id": 40, - "offset": 640, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1052055702, - "enum_options": { - "__DEFAULT": "0.044892" - } - }, - "m_bloomScale": { - "type": "float", - "id": 41, - "offset": 644, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 955880152, - "enum_options": { - "__DEFAULT": "0.970443" - } - }, - "m_bloomCount": { - "type": "int", - "id": 42, - "offset": 648, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 847157372, - "enum_options": { - "__DEFAULT": 3 - } - }, - "m_noMounts": { - "type": "bool", - "id": 43, - "offset": 652, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1225032630 - }, - "m_a2wFog": { - "type": "bool", - "id": 44, - "offset": 653, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 181294809 - }, - "m_swimZone": { - "type": "bool", - "id": 45, - "offset": 654, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 255657967 - }, - "m_altMusicFile": { - "type": "class MusicFileInfo", - "id": 46, - "offset": 656, - "flags": 263, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2140137174 - } - } - }, - "119316814": { - "name": "class MagicSchoolTemplate*", - "bases": [ - "CoreTemplate", - "PropertyClass" - ], - "hash": 119316814, - "properties": { - "m_behaviors": { - "type": "class BehaviorTemplate*", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1197808594 - }, - "m_schoolName": { - "type": "std::string", - "id": 1, - "offset": 96, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3385349572 - }, - "m_minLevel": { - "type": "unsigned int", - "id": 2, - "offset": 132, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1708220969 - }, - "m_schoolIndex": { - "type": "int", - "id": 3, - "offset": 136, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 7119994 - }, - "m_secondarySchoolBadgeList": { - "type": "std::string", - "id": 4, - "offset": 144, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2758948314 - } - } - }, - "515516712": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 515516712, - "properties": { - "m_minLevel": { - "type": "int", - "id": 0, - "offset": 88, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1496818518 - }, - "m_critAndBlockValues": { - "type": "class SharedPointer", - "id": 1, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 3047956180 - } - } - }, - "1285295741": { - "name": "class SharedPointer", - "bases": [ - "Result", - "PropertyClass" - ], - "hash": 1285295741, - "properties": { - "m_requirements": { - "type": "class RequirementList*", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2840985510 - }, - "m_results": { - "type": "class ResultList*", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3776744154 - } - } - }, - "1701545865": { - "name": "class MagicXPLootInfo", - "bases": [ - "LootInfo", - "LootInfoBase", - "PropertyClass" - ], - "hash": 1701545865, - "properties": { - "m_lootType": { - "type": "enum LootInfo::LOOT_TYPE", - "id": 0, - "offset": 72, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1591891442, - "enum_options": { - "LOOT_TYPE_NONE": 0, - "LOOT_TYPE_GOLD": 1, - "LOOT_TYPE_MANA": 2, - "LOOT_TYPE_ITEM": 3, - "LOOT_TYPE_TREASURE_CARD": 4, - "LOOT_TYPE_MAGIC_XP": 5, - "LOOT_TYPE_ADD_SPELL": 6, - "LOOT_TYPE_MAX_HEALTH": 7, - "LOOT_TYPE_MAX_GOLD": 8, - "LOOT_TYPE_MAX_MANA": 9, - "LOOT_TYPE_MAX_POTION": 10, - "LOOT_TYPE_TRAINING_POINTS": 11, - "LOOT_TYPE_RECIPE": 12, - "LOOT_TYPE_CRAFTING_SLOT": 13, - "LOOT_TYPE_REAGENT": 14, - "LOOT_TYPE_PETSNACK": 15, - "LOOT_TYPE_GARDENING_XP": 16, - "LOOT_TYPE_PET_XP": 17, - "LOOT_TYPE_TREASURE_TABLE": 18, - "LOOT_TYPE_ARENA_POINTS": 19, - "LOOT_TYPE_ARENA_BONUS_POINTS": 20, - "LOOT_TYPE_GROUP": 21, - "LOOT_TYPE_FISHING_XP": 22, - "LOOT_TYPE_EVENT_CURRENCY_1": 24, - "LOOT_TYPE_EVENT_CURRENCY_2": 25, - "LOOT_TYPE_PVP_CURRENCY": 26, - "LOOT_TYPE_PVP_CURRENCY_BONUS": 27, - "LOOT_TYPE_PVP_TOURNEY_CURRENCY": 28, - "LOOT_TYPE_PVP_TOURNEY_CURRENCY_BONUS": 29, - "LOOT_TYPE_FURNITURE_ESSENCE": 30 - } - }, - "m_magicSchool": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1597012900 - }, - "m_experience": { - "type": "int", - "id": 2, - "offset": 112, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 759357570 - } - } - }, - "516438846": { - "name": "class PetSoundBehavior", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 516438846, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - } - } - }, - "1285838309": { - "name": "class std::vector >", - "bases": [], - "hash": 1285838309, - "properties": {} - }, - "120550236": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 120550236, - "properties": { - "m_internalID": { - "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1854540375 - }, - "m_categoryID": { - "type": "unsigned int", - "id": 1, - "offset": 76, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1382795736 - }, - "m_removeAtPointValue": { - "type": "float", - "id": 2, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2112196961 - }, - "m_expireTime": { - "type": "unsigned int", - "id": 3, - "offset": 84, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1836304873 - } - } - }, - "516210260": { - "name": "class UnlockTriggerInfo*", - "bases": [ - "PropertyClass" - ], - "hash": 516210260, - "properties": { - "m_unlockTriggerTemplateID": { - "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1721811670 - }, - "m_state": { - "type": "unsigned int", - "id": 1, - "offset": 76, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1021505934 - }, - "m_reagentCount1": { - "type": "unsigned int", - "id": 2, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2011197517 - }, - "m_reagentCount2": { - "type": "unsigned int", - "id": 3, - "offset": 84, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2011197518 - }, - "m_reagentCount3": { - "type": "unsigned int", - "id": 4, - "offset": 88, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2011197519 - }, - "m_reagentCount4": { - "type": "unsigned int", - "id": 5, - "offset": 92, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2011197520 - }, - "m_reagentCount5": { - "type": "unsigned int", - "id": 6, - "offset": 96, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2011197521 - }, - "m_reagentCount6": { - "type": "unsigned int", - "id": 7, - "offset": 100, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2011197522 - } - } - }, - "1702238983": { - "name": "class SharedPointer", - "bases": [ - "WindowAnimation", - "PropertyClass" - ], - "hash": 1702238983, - "properties": { - "m_bUseDeepCopy": { - "type": "bool", - "id": 0, - "offset": 72, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 433380635 - }, - "m_fDelay": { - "type": "float", - "id": 1, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 485432396 - }, - "m_fElapsedTime": { - "type": "float", - "id": 2, - "offset": 84, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1862647402 - } - } - }, - "120310194": { - "name": "class ClientRegisterActorCinematicAction*", - "bases": [ - "RegisterActorCinematicAction", - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 120310194, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - }, - "m_zoneTag": { - "type": "std::string", - "id": 2, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3405382643 - }, - "m_bStartHidden": { - "type": "bool", - "id": 3, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1939845615 - } - } - }, - "1702152684": { - "name": "class SavedSettingContainer", - "bases": [ - "PropertyClass" - ], - "hash": 1702152684, - "properties": { - "m_savedSettingList": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2421895488 - } - } - }, - "1287907351": { - "name": "class ClientWizEquipmentBehavior", - "bases": [ - "ClientEquipmentBehavior", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1287907351, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_itemList": { - "type": "class SharedPointer", - "id": 1, - "offset": 120, - "flags": 27, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1983655699 - }, - "m_slotList": { - "type": "class SharedPointer", - "id": 2, - "offset": 136, - "flags": 27, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 3213026923 - }, - "m_publicItemList": { - "type": "class SharedPointer", - "id": 3, - "offset": 152, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1693467991 - }, - "m_equipmentSets": { - "type": "class SharedPointer", - "id": 4, - "offset": 232, - "flags": 27, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1904799695 - } - } - }, - "1701728617": { - "name": "class SharedPointer", - "bases": [ - "BattleBookBehavior", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1701728617, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_spellList": { - "type": "class SharedPointer", - "id": 1, - "offset": 120, - "flags": 27, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2181913740 - }, - "m_rating": { - "type": "class SharedPointer", - "id": 2, - "offset": 136, - "flags": 27, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2464459535 - } - } - }, - "120367120": { - "name": "class SharedPointer", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 120367120, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - }, - "m_fidgetStateInfo": { - "type": "class FidgetStateInfo", - "id": 1, - "offset": 120, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1986859062 - } - } - }, - "516602686": { - "name": "class PetSoundBehavior*", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 516602686, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - } - } - }, - "1286983866": { - "name": "class DdBonusWinAnim*", - "bases": [ - "WinAnimConcurrent", - "WinAnimContainer", - "WindowAnimation", - "PropertyClass" - ], - "hash": 1286983866, - "properties": { - "m_bUseDeepCopy": { - "type": "bool", - "id": 0, - "offset": 72, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 433380635 - }, - "m_winAnimList": { - "type": "class SharedPointer", - "id": 1, - "offset": 80, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1941062728 - }, - "m_bLooping": { - "type": "bool", - "id": 2, - "offset": 104, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2131020845 - }, - "m_finishedAnimList": { - "type": "class SharedPointer", - "id": 3, - "offset": 112, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 3066650884 - } - } - }, - "1701562392": { - "name": "class SharedPointer", - "bases": [ - "StatGlobe", - "ControlSprite", - "Window", - "PropertyClass" - ], - "hash": 1701562392, - "properties": { - "m_sName": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306437263 - }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621225959 - }, - "m_Style": { - "type": "unsigned int", - "id": 2, - "offset": 152, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "SCALE_CHILDREN": 2, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "FOCUS_LOCKED": 64, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152 - } - }, - "m_Flags": { - "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648, - "ONE_SHOT": 8388608, - "FLIPPED_HORIZONTAL": 16777216, - "FLIPPED_VERTICAL": 33554432 - } - }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3105139380 - }, - "m_fTargetAlpha": { - "type": "float", - "id": 5, - "offset": 212, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1809129834 - }, - "m_fDisabledAlpha": { - "type": "float", - "id": 6, - "offset": 216, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1389987675 - }, - "m_fAlpha": { - "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 482130755 - }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3623628394 - }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2102211316 - }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1846695875 - }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3389835433 - }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2547159940 - }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2587533771 - }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3091503757 - }, - "m_pMaterial": { - "type": "class SharedPointer", - "id": 16, - "offset": 592, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3479277078 - }, - "m_fRotation": { - "type": "float", - "id": 17, - "offset": 608, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1175400173 - }, - "m_Color": { - "type": "class Color", - "id": 18, - "offset": 584, - "flags": 262279, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1753714077 - }, - "m_textColor": { - "type": "class Color", - "id": 19, - "offset": 612, - "flags": 262279, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2528109250 - }, - "m_textComponent": { - "type": "class TextComponent", - "id": 20, - "offset": 616, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3491704390 - }, - "m_amount": { - "type": "int", - "id": 21, - "offset": 800, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 248546638 - } - } - }, - "1286983706": { - "name": "class DdBonusWinAnim", - "bases": [ - "WinAnimConcurrent", - "WinAnimContainer", - "WindowAnimation", - "PropertyClass" - ], - "hash": 1286983706, - "properties": { - "m_bUseDeepCopy": { - "type": "bool", - "id": 0, - "offset": 72, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 433380635 - }, - "m_winAnimList": { - "type": "class SharedPointer", - "id": 1, - "offset": 80, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1941062728 - }, - "m_bLooping": { - "type": "bool", - "id": 2, - "offset": 104, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2131020845 - }, - "m_finishedAnimList": { - "type": "class SharedPointer", - "id": 3, - "offset": 112, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 3066650884 - } - } - }, - "121907639": { - "name": "class SharedPointer", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 121907639, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - }, - "m_staticMusicFile": { - "type": "std::string", - "id": 1, - "offset": 120, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2845362532 - }, - "m_dynamicMusicFile": { - "type": "std::string", - "id": 2, - "offset": 152, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3205780097 - } - } - }, - "517015800": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 517015800, - "properties": { - "m_sellCrownsItems": { - "type": "bool", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 264897697 - }, - "m_sellNoAuctionItems": { - "type": "bool", - "id": 1, - "offset": 73, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 521218229 - }, - "m_sellStitchedItems": { - "type": "bool", - "id": 2, - "offset": 74, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1261254173 - }, - "m_sellCosmeticItems": { - "type": "bool", - "id": 3, - "offset": 75, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 661884604 - }, - "m_sellItemsWithJewels": { - "type": "bool", - "id": 4, - "offset": 76, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1195509291 - }, - "m_equipmentRequirementSchools": { - "type": "class SharedPointer", - "id": 5, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1963747469 - }, - "m_equipmentLevelDifference": { - "type": "int", - "id": 6, - "offset": 96, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 882949685 - }, - "m_equipmentLevelCategories": { - "type": "class SharedPointer", - "id": 7, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 875757928 - }, - "m_equipmentDuplicateCount": { - "type": "int", - "id": 8, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1546271990 - }, - "m_equipmentDuplicateCategories": { - "type": "class SharedPointer", - "id": 9, - "offset": 128, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 616694667 - }, - "m_sellEmptyDecks": { - "type": "bool", - "id": 10, - "offset": 144, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1837351132 - }, - "m_sellTemporaryMounts": { - "type": "bool", - "id": 11, - "offset": 145, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1610059564 - }, - "m_sellAllHousingCategories": { - "type": "class SharedPointer", - "id": 12, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2030133551 - }, - "m_keepSkeletonKeys": { - "type": "bool", - "id": 13, - "offset": 168, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1475507737 - }, - "m_keepGuildGateKeys": { - "type": "bool", - "id": 14, - "offset": 169, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1977825738 - }, - "m_keepSocketWrenches": { - "type": "bool", - "id": 15, - "offset": 170, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 418836224 - }, - "m_keepGauntletsOneShotDungeons": { - "type": "bool", - "id": 16, - "offset": 171, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1849469010 - }, - "m_keepQuintecentCores": { - "type": "bool", - "id": 17, - "offset": 172, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 164534196 - }, - "m_keepCrownSeeds": { - "type": "bool", - "id": 18, - "offset": 173, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1924786069 - }, - "m_housingDuplicateCount": { - "type": "int", - "id": 19, - "offset": 176, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 545140859 - }, - "m_sellHousingDuplicateCategories": { - "type": "class SharedPointer", - "id": 20, - "offset": 184, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1794770481 - }, - "m_libraryTreasureCardSchools": { - "type": "class SharedPointer", - "id": 21, - "offset": 200, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3468556638 - }, - "m_treasureCardDuplicateCount": { - "type": "int", - "id": 22, - "offset": 216, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1921259619 - }, - "m_treasureCardDuplicateSchools": { - "type": "class SharedPointer", - "id": 23, - "offset": 224, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3246907172 - }, - "m_sellAllGardeningTC": { - "type": "bool", - "id": 24, - "offset": 240, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1661696866 - }, - "m_sellAllCastleMagicTC": { - "type": "bool", - "id": 25, - "offset": 241, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 221153712 - }, - "m_sellAllCantripTC": { - "type": "bool", - "id": 26, - "offset": 242, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 815472644 - }, - "m_sellAllJewelSchools": { - "type": "class SharedPointer", - "id": 27, - "offset": 248, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2852898436 - }, - "m_jewelDuplicateCount": { - "type": "int", - "id": 28, - "offset": 264, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 9285909 - }, - "m_sellAllPinSchools": { - "type": "class SharedPointer", - "id": 29, - "offset": 272, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2024509716 - }, - "m_pinDuplicateCount": { - "type": "int", - "id": 30, - "offset": 288, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 17477605 - }, - "m_sellBlockJewels": { - "type": "bool", - "id": 31, - "offset": 292, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 947085848 - }, - "m_sellCriticalJewels": { - "type": "bool", - "id": 32, - "offset": 293, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1662439960 - }, - "m_sellAccuracyJewels": { - "type": "bool", - "id": 33, - "offset": 294, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 575425784 - }, - "m_sellFlatResistJewels": { - "type": "bool", - "id": 34, - "offset": 295, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1422401486 - }, - "m_sellFlatDamageJewels": { - "type": "bool", - "id": 35, - "offset": 296, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1076082387 - }, - "m_sellIncomingHealingJewels": { - "type": "bool", - "id": 36, - "offset": 297, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1056576185 - }, - "m_sellOutgoingHealingJewels": { - "type": "bool", - "id": 37, - "offset": 298, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 769504177 - }, - "m_sellHealthJewels": { - "type": "bool", - "id": 38, - "offset": 299, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 895258275 - }, - "m_sellManaJewels": { - "type": "bool", - "id": 39, - "offset": 300, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 497642570 - }, - "m_sellGivesSpellJewels": { - "type": "bool", - "id": 40, - "offset": 301, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1610892139 - }, - "m_sellDerbyJewels": { - "type": "bool", - "id": 41, - "offset": 302, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1304798563 - } - } - }, - "1701805816": { - "name": "class HousingTeleporterBehavior*", - "bases": [ - "HousingTeleporterBehaviorBase", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1701805816, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_lotInstanceGID": { - "type": "gid", - "id": 1, - "offset": 112, - "flags": 65567, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2010711536 - }, - "m_x": { - "type": "float", - "id": 2, - "offset": 120, - "flags": 65543, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 283788559 - }, - "m_y": { - "type": "float", - "id": 3, - "offset": 124, - "flags": 65543, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 283788560 - }, - "m_z": { - "type": "float", - "id": 4, - "offset": 128, - "flags": 65543, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 283788561 - }, - "m_yaw": { - "type": "float", - "id": 5, - "offset": 132, - "flags": 65543, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 357256328 - }, - "m_lotTemplateID": { - "type": "gid", - "id": 6, - "offset": 136, - "flags": 65543, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1344354096 - }, - "m_clusterGID": { - "type": "gid", - "id": 7, - "offset": 144, - "flags": 65543, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 112792526 - }, - "m_structureInstanceGID": { - "type": "gid", - "id": 8, - "offset": 152, - "flags": 65543, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2083588818 - }, - "m_structureTemplateID": { - "type": "gid", - "id": 9, - "offset": 160, - "flags": 65543, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 825960402 - }, - "m_isOutside": { - "type": "bool", - "id": 10, - "offset": 168, - "flags": 65543, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1999324940 - }, - "m_teleportData": { - "type": "std::string", - "id": 11, - "offset": 208, - "flags": 551, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3645160644 - } - } - }, - "121585816": { - "name": "enum DerbyTalentBuffType", - "bases": [], - "hash": 121585816, - "properties": {} - }, - "516712382": { - "name": "class PetInfoControl", - "bases": [ - "Window", - "PropertyClass" - ], - "hash": 516712382, - "properties": { - "m_sName": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306437263 - }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 65667, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621225959 - }, - "m_Style": { - "type": "unsigned int", - "id": 2, - "offset": 152, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "SCALE_CHILDREN": 2, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "FOCUS_LOCKED": 64, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152 - } - }, - "m_Flags": { - "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } - }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3105139380 - }, - "m_fTargetAlpha": { - "type": "float", - "id": 5, - "offset": 212, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1809129834 - }, - "m_fDisabledAlpha": { - "type": "float", - "id": 6, - "offset": 216, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1389987675 - }, - "m_fAlpha": { - "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 482130755 - }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3623628394 - }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2102211316 - }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1846695875 - }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3389835433 - }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2547159940 - }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2587533771 - }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3091503757 - } - } - }, - "1287104803": { - "name": "struct std::pair,class std::allocator >,int>", - "bases": [], - "hash": 1287104803, - "properties": {} - }, - "120689876": { - "name": "class SharedPointer", - "bases": [ - "PathBehaviorTemplate::Action", - "PropertyClass" - ], - "hash": 120689876, - "properties": { - "m_nPathID": { - "type": "gid", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 214382368 - }, - "m_nNodeID": { - "type": "int", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 152152635, - "enum_options": { - "__DEFAULT": 4294967295 - } - }, - "m_nPriority": { - "type": "int", - "id": 2, - "offset": 84, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1515251530, - "enum_options": { - "__DEFAULT": 100 - } - }, - "m_nChance": { - "type": "int", - "id": 3, - "offset": 88, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1860748394, - "enum_options": { - "__DEFAULT": 50 - } - }, - "m_nDestinationNodeID": { - "type": "int", - "id": 4, - "offset": 96, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 44784029 - }, - "m_bContinuePathing": { - "type": "bool", - "id": 5, - "offset": 100, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2053386917 - } - } - }, - "516979624": { - "name": "class CinematicTemplateAnimationData", - "bases": [ - "PropertyClass" - ], - "hash": 516979624, - "properties": { - "m_animationPath": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3393486152 - }, - "m_sound": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2307644996 - }, - "m_length": { - "type": "float", - "id": 2, - "offset": 136, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 759698745 - }, - "m_textTags": { - "type": "class SharedPointer", - "id": 3, - "offset": 144, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1768413037 - } - } - }, - "1702153452": { - "name": "class SavedSettingContainer*", - "bases": [ - "PropertyClass" - ], - "hash": 1702153452, - "properties": { - "m_savedSettingList": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2421895488 - } - } - }, - "1287907357": { - "name": "class ClientWizEquipmentBehavior*", - "bases": [ - "ClientEquipmentBehavior", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1287907357, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_itemList": { - "type": "class SharedPointer", - "id": 1, - "offset": 120, - "flags": 27, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1983655699 - }, - "m_slotList": { - "type": "class SharedPointer", - "id": 2, - "offset": 136, - "flags": 27, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 3213026923 - }, - "m_publicItemList": { - "type": "class SharedPointer", - "id": 3, - "offset": 152, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1693467991 - }, - "m_equipmentSets": { - "type": "class SharedPointer", - "id": 4, - "offset": 232, - "flags": 27, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1904799695 - } - } - }, - "121871885": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 121871885, - "properties": { - "m_participantID": { - "type": "gid", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1556110724 - }, - "m_teamID": { - "type": "int", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 982118638 - }, - "m_maxHealth": { - "type": "int", - "id": 2, - "offset": 84, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 374902326 - }, - "m_pipsSpent": { - "type": "int", - "id": 3, - "offset": 88, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1360713568 - }, - "m_shadowPipsSpent": { - "type": "int", - "id": 4, - "offset": 92, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1691641958 - }, - "m_damageOutgoing": { - "type": "float", - "id": 5, - "offset": 96, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1733098594 - }, - "m_damageIncoming": { - "type": "float", - "id": 6, - "offset": 100, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 466767466 - }, - "m_healingOutgoing": { - "type": "float", - "id": 7, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1955741979 - }, - "m_healingIncoming": { - "type": "float", - "id": 8, - "offset": 108, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 689410851 - }, - "m_killCount": { - "type": "int", - "id": 9, - "offset": 112, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1162723983 - }, - "m_spellsCast": { - "type": "int", - "id": 10, - "offset": 116, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 681177880 - }, - "m_fizzles": { - "type": "int", - "id": 11, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1628327073 - }, - "m_offenseSpells": { - "type": "int", - "id": 12, - "offset": 124, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 422756275 - }, - "m_offenseNormal": { - "type": "int", - "id": 13, - "offset": 128, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 226361289 - }, - "m_offenseShadow": { - "type": "int", - "id": 14, - "offset": 132, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 413116550 - } - } - }, - "519093249": { - "name": "enum LootInfo::LOOT_TYPE", - "bases": [], - "hash": 519093249, - "properties": {} - }, - "1702734941": { - "name": "class SharedPointer", - "bases": [ - "SG_GameAction", - "PropertyClass" - ], - "hash": 1702734941, - "properties": { - "m_target": { - "type": "enum SG_GameAction::SG_Target", - "id": 0, - "offset": 72, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1166870973, - "enum_options": { - "Target_Ball": 0, - "Target_Self": 1, - "Target_Connections": 2, - "__DEFAULT": "Target_Ball" - } - }, - "m_graphicArguments": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1656480079 - }, - "m_fMinimumTime": { - "type": "float", - "id": 2, - "offset": 144, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1516804616 - }, - "m_bDisplaysScore": { - "type": "bool", - "id": 3, - "offset": 148, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 722455866 - }, - "m_bPlaysPointsSounds": { - "type": "bool", - "id": 4, - "offset": 149, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 717919607 - } - } - }, - "519020479": { - "name": "class CinematicActorAnimationData*", - "bases": [ - "PropertyClass" - ], - "hash": 519020479, - "properties": { - "m_animationName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3393414044 - }, - "m_animationPath": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3393486152 - }, - "m_sound": { - "type": "std::string", - "id": 2, - "offset": 136, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2307644996 - } - } - }, - "1291147389": { - "name": "class ClientUnShadowSelfCinematicAction*", - "bases": [ - "UnShadowSelfCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 1291147389, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - } - } - }, - "1702467246": { - "name": "class SigilZoneInfoManager", - "bases": [ - "PropertyClass" - ], - "hash": 1702467246, - "properties": {} - }, - "122304724": { - "name": "class SharedPointer", - "bases": [ - "Window", - "PropertyClass" - ], - "hash": 122304724, - "properties": { - "m_sName": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306437263 - }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621225959 - }, - "m_Style": { - "type": "unsigned int", - "id": 2, - "offset": 152, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "SCALE_CHILDREN": 2, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "FOCUS_LOCKED": 64, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152 - } - }, - "m_Flags": { - "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } - }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3105139380 - }, - "m_fTargetAlpha": { - "type": "float", - "id": 5, - "offset": 212, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1809129834 - }, - "m_fDisabledAlpha": { - "type": "float", - "id": 6, - "offset": 216, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1389987675 - }, - "m_fAlpha": { - "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 482130755 - }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3623628394 - }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2102211316 - }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1846695875 - }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3389835433 - }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2547159940 - }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2587533771 - }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3091503757 - } - } - }, - "519020287": { - "name": "class CinematicActorAnimationData", - "bases": [ - "PropertyClass" - ], - "hash": 519020287, - "properties": { - "m_animationName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3393414044 - }, - "m_animationPath": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3393486152 - }, - "m_sound": { - "type": "std::string", - "id": 2, - "offset": 136, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2307644996 - } - } - }, - "1290870722": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1290870722, - "properties": { - "m_applyNOT": { - "type": "bool", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1746328074, - "enum_options": { - "__DEFAULT": 0 - } - }, - "m_operator": { - "type": "enum Requirement::Operator", - "id": 1, - "offset": 76, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2672792317, - "enum_options": { - "ROP_AND": 0, - "ROP_OR": 1, - "__DEFAULT": "ROP_AND" - } - } - } - }, - "1702467206": { - "name": "class SigilZoneInfoManager*", - "bases": [ - "PropertyClass" - ], - "hash": 1702467206, - "properties": {} - }, - "122015576": { - "name": "class PvPCurrencyBonusLootInfo", - "bases": [ - "LootInfo", - "LootInfoBase", - "PropertyClass" - ], - "hash": 122015576, - "properties": { - "m_lootType": { - "type": "enum LootInfo::LOOT_TYPE", - "id": 0, - "offset": 72, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1591891442, - "enum_options": { - "LOOT_TYPE_NONE": 0, - "LOOT_TYPE_GOLD": 1, - "LOOT_TYPE_MANA": 2, - "LOOT_TYPE_ITEM": 3, - "LOOT_TYPE_TREASURE_CARD": 4, - "LOOT_TYPE_MAGIC_XP": 5, - "LOOT_TYPE_ADD_SPELL": 6, - "LOOT_TYPE_MAX_HEALTH": 7, - "LOOT_TYPE_MAX_GOLD": 8, - "LOOT_TYPE_MAX_MANA": 9, - "LOOT_TYPE_MAX_POTION": 10, - "LOOT_TYPE_TRAINING_POINTS": 11, - "LOOT_TYPE_RECIPE": 12, - "LOOT_TYPE_CRAFTING_SLOT": 13, - "LOOT_TYPE_REAGENT": 14, - "LOOT_TYPE_PETSNACK": 15, - "LOOT_TYPE_GARDENING_XP": 16, - "LOOT_TYPE_PET_XP": 17, - "LOOT_TYPE_TREASURE_TABLE": 18, - "LOOT_TYPE_ARENA_POINTS": 19, - "LOOT_TYPE_ARENA_BONUS_POINTS": 20, - "LOOT_TYPE_GROUP": 21, - "LOOT_TYPE_FISHING_XP": 22, - "LOOT_TYPE_EVENT_CURRENCY_1": 24, - "LOOT_TYPE_EVENT_CURRENCY_2": 25, - "LOOT_TYPE_PVP_CURRENCY": 26, - "LOOT_TYPE_PVP_CURRENCY_BONUS": 27, - "LOOT_TYPE_PVP_TOURNEY_CURRENCY": 28, - "LOOT_TYPE_PVP_TOURNEY_CURRENCY_BONUS": 29, - "LOOT_TYPE_FURNITURE_ESSENCE": 30 - } - }, - "m_pvpCurrencyBonusAmount": { - "type": "int", - "id": 1, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 447030870 - } - } - }, - "1289803641": { - "name": "class std::list,class std::allocator > >", - "bases": [], - "hash": 1289803641, - "properties": {} - }, - "1289297479": { - "name": "class GroupObserver", - "bases": [ - "PropertyClass" - ], - "hash": 1289297479, - "properties": {} - }, - "1702511141": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1702511141, - "properties": { - "m_name": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1717359772 - }, - "m_list": { - "type": "class CharacterElement*", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 646909524 - } - } - }, - "122951263": { - "name": "class BadgeFilter", - "bases": [ - "PropertyClass" - ], - "hash": 122951263, - "properties": {} - }, - "519320684": { - "name": "class SharedPointer", - "bases": [ - "HousingObjectWandContainer", - "PropertyClass" - ], - "hash": 519320684, - "properties": { - "m_displayID": { - "type": "gid", - "id": 0, - "offset": 72, - "flags": 65543, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1022427803 - }, - "m_jewelBuffer": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 65543, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2221753804 - } - } - }, - "1290424573": { - "name": "class ShadowSelfCinematicAction*", - "bases": [ - "CinematicAction", - "PropertyClass" - ], - "hash": 1290424573, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - } - } - }, - "1703228622": { - "name": "struct std::pair,class std::allocator >,class Color>", - "bases": [], - "hash": 1703228622, - "properties": {} - }, - "138219082": { - "name": "class std::vector,class std::allocator > >", - "bases": [], - "hash": 138219082, - "properties": {} - }, - "538202429": { - "name": "class ActorDialogListBase", - "bases": [ - "PropertyClass" - ], - "hash": 538202429, - "properties": {} - }, - "132220454": { - "name": "class MatchRequest", - "bases": [ - "PropertyClass" - ], - "hash": 132220454, - "properties": { - "m_characterID": { - "type": "gid", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 210498386 - }, - "m_tournamentNameID": { - "type": "unsigned int", - "id": 1, - "offset": 84, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1799846440 - }, - "m_matchNameID": { - "type": "unsigned int", - "id": 2, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1751361288 - }, - "m_leagueID": { - "type": "unsigned int", - "id": 3, - "offset": 88, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 692361645 - }, - "m_seasonID": { - "type": "unsigned int", - "id": 4, - "offset": 92, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 535260643 - }, - "m_teams": { - "type": "class SharedPointer", - "id": 5, - "offset": 96, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1984373608 - } - } - }, - "534098391": { - "name": "class SharedPointer", - "bases": [ - "SetHangingEffectAlphaCinematicAction", - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 534098391, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - }, - "m_cloaked": { - "type": "bool", - "id": 2, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 7349510 - }, - "m_alpha": { - "type": "float", - "id": 3, - "offset": 124, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 878686493 - } - } - }, - "1291147309": { - "name": "class ClientUnShadowSelfCinematicAction", - "bases": [ - "UnShadowSelfCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 1291147309, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - } - } - }, - "130186975": { - "name": "class MountSoundBehavior", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 130186975, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - } - } - }, - "525749390": { - "name": "class MaxGoldLootInfo*", - "bases": [ - "LootInfo", - "LootInfoBase", - "PropertyClass" - ], - "hash": 525749390, - "properties": { - "m_lootType": { - "type": "enum LootInfo::LOOT_TYPE", - "id": 0, - "offset": 72, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1591891442, - "enum_options": { - "LOOT_TYPE_NONE": 0, - "LOOT_TYPE_GOLD": 1, - "LOOT_TYPE_MANA": 2, - "LOOT_TYPE_ITEM": 3, - "LOOT_TYPE_TREASURE_CARD": 4, - "LOOT_TYPE_MAGIC_XP": 5, - "LOOT_TYPE_ADD_SPELL": 6, - "LOOT_TYPE_MAX_HEALTH": 7, - "LOOT_TYPE_MAX_GOLD": 8, - "LOOT_TYPE_MAX_MANA": 9, - "LOOT_TYPE_MAX_POTION": 10, - "LOOT_TYPE_TRAINING_POINTS": 11, - "LOOT_TYPE_RECIPE": 12, - "LOOT_TYPE_CRAFTING_SLOT": 13, - "LOOT_TYPE_REAGENT": 14, - "LOOT_TYPE_PETSNACK": 15, - "LOOT_TYPE_GARDENING_XP": 16, - "LOOT_TYPE_PET_XP": 17, - "LOOT_TYPE_TREASURE_TABLE": 18, - "LOOT_TYPE_ARENA_POINTS": 19, - "LOOT_TYPE_ARENA_BONUS_POINTS": 20, - "LOOT_TYPE_GROUP": 21, - "LOOT_TYPE_FISHING_XP": 22, - "LOOT_TYPE_EVENT_CURRENCY_1": 24, - "LOOT_TYPE_EVENT_CURRENCY_2": 25, - "LOOT_TYPE_PVP_CURRENCY": 26, - "LOOT_TYPE_PVP_CURRENCY_BONUS": 27, - "LOOT_TYPE_PVP_TOURNEY_CURRENCY": 28, - "LOOT_TYPE_PVP_TOURNEY_CURRENCY_BONUS": 29, - "LOOT_TYPE_FURNITURE_ESSENCE": 30 - } - }, - "m_maxGoldToAdd": { - "type": "int", - "id": 1, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 667552370 - } - } - }, - "1712236101": { - "name": "class IdleInterceptCinematicAction*", - "bases": [ - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 1712236101, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - } - } - }, - "126910823": { - "name": "class BattlegroundTeamData", - "bases": [ - "PropertyClass" - ], - "hash": 126910823, - "properties": { - "m_projectID": { - "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1263221425 - }, - "m_teamListA": { - "type": "gid", - "id": 1, - "offset": 80, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1624915612 - }, - "m_teamListB": { - "type": "gid", - "id": 2, - "offset": 96, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1624915613 - } - } - }, - "523623171": { - "name": "class SharedPointer", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 523623171, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_trainData": { - "type": "std::string", - "id": 1, - "offset": 128, - "flags": 575, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2994039667 - } - } - }, - "1711483389": { - "name": "class SharedPointer", - "bases": [ - "ServiceOptionBase", - "PropertyClass" - ], - "hash": 1711483389, - "properties": { - "m_serviceName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2206028813 - }, - "m_iconKey": { - "type": "std::string", - "id": 1, - "offset": 168, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2457138637 - }, - "m_displayKey": { - "type": "std::string", - "id": 2, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3023276954 - }, - "m_serviceIndex": { - "type": "unsigned int", - "id": 3, - "offset": 204, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2103126710 - }, - "m_forceInteract": { - "type": "bool", - "id": 4, - "offset": 200, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1705789564 - } - } - }, - "124892092": { - "name": "class MoveActorCinematicAction*", - "bases": [ - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 124892092, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - }, - "m_destinationActor": { - "type": "std::string", - "id": 2, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1510240374 - }, - "m_interpolationDuration": { - "type": "float", - "id": 3, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1458058437 - }, - "m_interpolateRotation": { - "type": "bool", - "id": 4, - "offset": 156, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2140337898 - }, - "m_kDestination": { - "type": "enum MoveActorCinematicAction::kMoveActorDestination", - "id": 5, - "offset": 160, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2027574244, - "enum_options": { - "kCenter": 0, - "kHome": 3, - "kActor": 1, - "kActorHangingEffect": 2 - } - }, - "m_destinationZOffset": { - "type": "float", - "id": 6, - "offset": 164, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2188240922 - } - } - }, - "521162923": { - "name": "class DerbyModifyRate*", - "bases": [ - "DerbyEffect", - "PropertyClass" - ], - "hash": 521162923, - "properties": { - "m_buffType": { - "type": "enum DerbyTalentBuffType", - "id": 0, - "offset": 92, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1149251982, - "enum_options": { - "Buff": 0, - "Debuff": 1, - "Neither": 2 - } - }, - "m_kTarget": { - "type": "enum DerbyTargetType", - "id": 1, - "offset": 96, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1807803351, - "enum_options": { - "kTargetInFront": 0, - "kTargetBehind": 1, - "kTargetFirst": 2, - "kTargetSelf": 3, - "kTargetAll": 4, - "kTargetLast": 5 - } - }, - "m_nDuration": { - "type": "int", - "id": 2, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1110167982 - }, - "m_effectID": { - "type": "unsigned int", - "id": 3, - "offset": 88, - "flags": 24, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2347630439 - }, - "m_imageFilename": { - "type": "std::string", - "id": 4, - "offset": 112, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2813328063 - }, - "m_iconIndex": { - "type": "unsigned int", - "id": 5, - "offset": 144, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1265133262 - }, - "m_soundOnActivate": { - "type": "std::string", - "id": 6, - "offset": 152, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1956929714 - }, - "m_soundOnTarget": { - "type": "std::string", - "id": 7, - "offset": 184, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3444214056 - }, - "m_targetParticleEffect": { - "type": "std::string", - "id": 8, - "offset": 216, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3048234723 - }, - "m_overheadMessage": { - "type": "std::string", - "id": 9, - "offset": 248, - "flags": 8388639, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1701018190 - }, - "m_requirements": { - "type": "class RequirementList", - "id": 10, - "offset": 280, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2840988582 - }, - "m_nRateChange": { - "type": "int", - "id": 11, - "offset": 376, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 797681786 - } - } - }, - "1291642721": { - "name": "class RecipeShopOption", - "bases": [ - "ServiceOptionBase", - "PropertyClass" - ], - "hash": 1291642721, - "properties": { - "m_serviceName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2206028813 - }, - "m_iconKey": { - "type": "std::string", - "id": 1, - "offset": 168, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2457138637 - }, - "m_displayKey": { - "type": "std::string", - "id": 2, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3023276954 - }, - "m_serviceIndex": { - "type": "unsigned int", - "id": 3, - "offset": 204, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2103126710 - }, - "m_forceInteract": { - "type": "bool", - "id": 4, - "offset": 200, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1705789564 - } - } - }, - "1708702521": { - "name": "class SharedPointer", - "bases": [ - "CinematicAction", - "PropertyClass" - ], - "hash": 1708702521, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - } - } - }, - "123974470": { - "name": "class TimedItemBehaviorTemplate*", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 123974470, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - }, - "m_expireTime": { - "type": "std::string", - "id": 1, - "offset": 128, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3122602039 - }, - "m_timerType": { - "type": "enum TimerType", - "id": 2, - "offset": 120, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 571744132, - "enum_options": { - "TimerType_Game": 0, - "TimerType_Calendar": 1 - } - } - } - }, - "520462430": { - "name": "class SG_GameScoreMultiplier*", - "bases": [ - "PropertyClass" - ], - "hash": 520462430, - "properties": { - "m_displayName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2446900370 - }, - "m_fMultiplier": { - "type": "float", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 157286404 - }, - "m_category": { - "type": "int", - "id": 2, - "offset": 108, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1184350616 - }, - "m_minimumToActivate": { - "type": "int", - "id": 3, - "offset": 112, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2042224778 - } - } - }, - "1291459056": { - "name": "class SharedPointer", - "bases": [ - "PhysicsSimMass", - "PropertyClass" - ], - "hash": 1291459056, - "properties": {} - }, - "1706958033": { - "name": "class Point", - "bases": [], - "hash": 1706958033, - "properties": {} - }, - "123908666": { - "name": "class SharedPointer", - "bases": [ - "WindowAnimation", - "PropertyClass" - ], - "hash": 123908666, - "properties": { - "m_bUseDeepCopy": { - "type": "bool", - "id": 0, - "offset": 72, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 433380635 - }, - "m_facing": { - "type": "enum DoodleDoug::DdDirection", - "id": 1, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 591537519 - }, - "m_direction": { - "type": "enum DoodleDoug::DdDirection", - "id": 2, - "offset": 84, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1599953256 - }, - "m_fSpeed": { - "type": "float", - "id": 3, - "offset": 88, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 503609006 - }, - "m_currentLocation": { - "type": "class Vector3D", - "id": 4, - "offset": 92, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3670997758 - }, - "m_targetLocation": { - "type": "class Vector3D", - "id": 5, - "offset": 104, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2653859938 - }, - "m_myBoard": { - "type": "class DoodleDoug*", - "id": 6, - "offset": 120, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2212758093 - } - } - }, - "520421470": { - "name": "class SG_GameScoreMultiplier", - "bases": [ - "PropertyClass" - ], - "hash": 520421470, - "properties": { - "m_displayName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2446900370 - }, - "m_fMultiplier": { - "type": "float", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 157286404 - }, - "m_category": { - "type": "int", - "id": 2, - "offset": 108, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1184350616 - }, - "m_minimumToActivate": { - "type": "int", - "id": 3, - "offset": 112, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2042224778 - } - } - }, - "1291378517": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1291378517, - "properties": { - "m_itemTemplateId": { - "type": "gid", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1978701296 - }, - "m_itemFlags": { - "type": "int", - "id": 1, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1792726006 - }, - "m_goldCost": { - "type": "int", - "id": 2, - "offset": 92, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 444550297 - }, - "m_crownsCost": { - "type": "int", - "id": 3, - "offset": 96, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1592212719 - }, - "m_ticketCost": { - "type": "int", - "id": 4, - "offset": 100, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1199423063 - }, - "m_displayPriority": { - "type": "std::string", - "id": 5, - "offset": 112, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2036319987 - }, - "m_strikethruCrowns": { - "type": "int", - "id": 6, - "offset": 144, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1756077003 - }, - "m_strikethruGold": { - "type": "int", - "id": 7, - "offset": 148, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 664425781 - }, - "m_description": { - "type": "std::string", - "id": 8, - "offset": 208, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1649374815 - }, - "m_saleID": { - "type": "unsigned int", - "id": 9, - "offset": 240, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1150028607 - }, - "m_recommendIfOwned": { - "type": "bool", - "id": 10, - "offset": 152, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1653579929 - }, - "m_combatOnly": { - "type": "bool", - "id": 11, - "offset": 153, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 978499627 - }, - "m_noGift": { - "type": "bool", - "id": 12, - "offset": 154, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 760708954 - }, - "m_segReqsStatement": { - "type": "std::string", - "id": 13, - "offset": 160, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3526390858 - }, - "m_segReqsPoolsStatements": { - "type": "std::string", - "id": 14, - "offset": 192, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 3225359562 - } - } - }, - "1704590457": { - "name": "class ActorRenameCinematicAction*", - "bases": [ - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 1704590457, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - }, - "m_newNamePattern": { - "type": "std::string", - "id": 2, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1519245892 - }, - "m_bActOnlyOnFirstActor": { - "type": "bool", - "id": 3, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2050856077 - } - } - }, - "520165008": { - "name": "class AuctionHouseEntry*", - "bases": [ - "PropertyClass" - ], - "hash": 520165008, - "properties": { - "m_templateID": { - "type": "gid", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1075328001 - }, - "m_numForSale": { - "type": "int", - "id": 1, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1454578518 - }, - "m_buyPrice": { - "type": "int", - "id": 2, - "offset": 84, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1746297085 - }, - "m_sellPrice": { - "type": "int", - "id": 3, - "offset": 88, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 957785661 - } - } - }, - "1704590451": { - "name": "class ActorRenameCinematicAction", - "bases": [ - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 1704590451, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - }, - "m_newNamePattern": { - "type": "std::string", - "id": 2, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1519245892 - }, - "m_bActOnlyOnFirstActor": { - "type": "bool", - "id": 3, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2050856077 - } - } - }, - "124075117": { - "name": "class MadlibArgT,class std::allocator > >*", - "bases": [ - "MadlibArg", - "PropertyClass" - ], - "hash": 124075117, - "properties": { - "m_madlibToken": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3058682373 - }, - "m_madlibArgument": { - "type": "std::wstring", - "id": 1, - "offset": 112, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2172177124 - } - } - }, - "1291544289": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1291544289, - "properties": { - "m_genericPips": { - "type": "unsigned char", - "id": 0, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1345845385 - }, - "m_powerPips": { - "type": "unsigned char", - "id": 1, - "offset": 81, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2096480441 - }, - "m_balancePips": { - "type": "unsigned char", - "id": 2, - "offset": 82, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1232748146 - }, - "m_deathPips": { - "type": "unsigned char", - "id": 3, - "offset": 83, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1364547506 - }, - "m_firePips": { - "type": "unsigned char", - "id": 4, - "offset": 84, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2490965330 - }, - "m_icePips": { - "type": "unsigned char", - "id": 5, - "offset": 85, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1584134173 - }, - "m_lifePips": { - "type": "unsigned char", - "id": 6, - "offset": 86, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2181444364 - }, - "m_mythPips": { - "type": "unsigned char", - "id": 7, - "offset": 87, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1590318670 - }, - "m_stormPips": { - "type": "unsigned char", - "id": 8, - "offset": 88, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 769321921 - }, - "m_shadowPips": { - "type": "unsigned char", - "id": 9, - "offset": 89, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2569883346 - } - } - }, - "1705937941": { - "name": "class ControlButtonState*", - "bases": [ - "PropertyClass" - ], - "hash": 1705937941, - "properties": {} - }, - "521099028": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 521099028, - "properties": { - "m_partList": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 3068815683 - }, - "m_deckSize": { - "type": "unsigned int", - "id": 1, - "offset": 88, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1276516479 - }, - "m_totalDeckSize": { - "type": "unsigned int", - "id": 2, - "offset": 104, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2180827619 - }, - "m_treasureCardAmount": { - "type": "unsigned int", - "id": 3, - "offset": 120, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 486812806 - } - } - }, - "1705491853": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1705491853, - "properties": { - "m_stageMin": { - "type": "int", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 353899634 - }, - "m_stageMax": { - "type": "int", - "id": 1, - "offset": 76, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 353899380 - }, - "m_zoneEvents": { - "type": "std::string", - "id": 2, - "offset": 112, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2188728076 - }, - "m_zone": { - "type": "std::string", - "id": 3, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1717806295 - } - } - }, - "126910799": { - "name": "class BattlegroundTeamData*", - "bases": [ - "PropertyClass" - ], - "hash": 126910799, - "properties": { - "m_projectID": { - "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1263221425 - }, - "m_teamListA": { - "type": "gid", - "id": 1, - "offset": 80, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1624915612 - }, - "m_teamListB": { - "type": "gid", - "id": 2, - "offset": 96, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1624915613 - } - } - }, - "520634311": { - "name": "enum RenderBehaviorTemplate::LightingType", - "bases": [], - "hash": 520634311, - "properties": {} - }, - "1291741025": { - "name": "class RecipeShopOption*", - "bases": [ - "ServiceOptionBase", - "PropertyClass" - ], - "hash": 1291741025, - "properties": { - "m_serviceName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2206028813 - }, - "m_iconKey": { - "type": "std::string", - "id": 1, - "offset": 168, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2457138637 - }, - "m_displayKey": { - "type": "std::string", - "id": 2, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3023276954 - }, - "m_serviceIndex": { - "type": "unsigned int", - "id": 3, - "offset": 204, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2103126710 - }, - "m_forceInteract": { - "type": "bool", - "id": 4, - "offset": 200, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1705789564 - } - } - }, - "126116362": { - "name": "class CombatTimerListObj*", - "bases": [ - "PropertyClass" - ], - "hash": 126116362, - "properties": { - "m_timeList": { - "type": "class ParticipantParameter", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2652015083 - }, - "m_duelID.m_full": { - "type": "unsigned __int64", - "id": 1, - "offset": 88, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1024980477 - } - } - }, - "1292305038": { - "name": "class SharedPointer", - "bases": [ - "CoreTemplate", - "PropertyClass" - ], - "hash": 1292305038, - "properties": { - "m_behaviors": { - "type": "class BehaviorTemplate*", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1197808594 - }, - "m_recipeName": { - "type": "std::string", - "id": 1, - "offset": 136, - "flags": 134217735, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3311832788 - }, - "m_ingredients": { - "type": "class Ingredient*", - "id": 2, - "offset": 272, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1061809494 - }, - "m_displayKey": { - "type": "std::string", - "id": 3, - "offset": 240, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3023276954 - }, - "m_itemID": { - "type": "gid", - "id": 4, - "offset": 96, - "flags": 33554439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 569545460 - }, - "m_spellName": { - "type": "std::string", - "id": 5, - "offset": 104, - "flags": 268435463, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2688485244, - "enum_options": { - "__BASECLASS": "SpellTemplate" - } - }, - "m_adjectives": { - "type": "std::string", - "id": 6, - "offset": 288, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2967855037 - }, - "m_cookTime": { - "type": "int", - "id": 7, - "offset": 172, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1895782037 - }, - "m_goldCost": { - "type": "int", - "id": 8, - "offset": 176, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 444550297 - }, - "m_crownsCost": { - "type": "int", - "id": 9, - "offset": 180, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1592212719 - }, - "m_arenaPointCost": { - "type": "int", - "id": 10, - "offset": 184, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1819621796 - }, - "m_pvpCurrencyCost": { - "type": "int", - "id": 11, - "offset": 188, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 645595444 - }, - "m_pvpTourneyCurrencyCost": { - "type": "int", - "id": 12, - "offset": 192, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 517874954 - }, - "m_school": { - "type": "std::string", - "id": 13, - "offset": 208, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2438566051 - }, - "m_purchaseRequirements": { - "type": "class RequirementList*", - "id": 14, - "offset": 200, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3174641793 - }, - "m_holidayFlag": { - "type": "std::string", - "id": 15, - "offset": 320, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2994795359 - }, - "m_itemLootTable": { - "type": "std::string", - "id": 16, - "offset": 352, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2176436048 - }, - "m_alternateDescription": { - "type": "std::string", - "id": 17, - "offset": 384, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2784283583 - }, - "m_displayRequirements": { - "type": "class RequirementList*", - "id": 18, - "offset": 416, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3646782876 - } - } - }, - "521159851": { - "name": "class DerbyModifyRate", - "bases": [ - "DerbyEffect", - "PropertyClass" - ], - "hash": 521159851, - "properties": { - "m_buffType": { - "type": "enum DerbyTalentBuffType", - "id": 0, - "offset": 92, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1149251982, - "enum_options": { - "Buff": 0, - "Debuff": 1, - "Neither": 2 - } - }, - "m_kTarget": { - "type": "enum DerbyTargetType", - "id": 1, - "offset": 96, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1807803351, - "enum_options": { - "kTargetInFront": 0, - "kTargetBehind": 1, - "kTargetFirst": 2, - "kTargetSelf": 3, - "kTargetAll": 4, - "kTargetLast": 5 - } - }, - "m_nDuration": { - "type": "int", - "id": 2, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1110167982 - }, - "m_effectID": { - "type": "unsigned int", - "id": 3, - "offset": 88, - "flags": 24, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2347630439 - }, - "m_imageFilename": { - "type": "std::string", - "id": 4, - "offset": 112, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2813328063 - }, - "m_iconIndex": { - "type": "unsigned int", - "id": 5, - "offset": 144, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1265133262 - }, - "m_soundOnActivate": { - "type": "std::string", - "id": 6, - "offset": 152, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1956929714 - }, - "m_soundOnTarget": { - "type": "std::string", - "id": 7, - "offset": 184, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3444214056 - }, - "m_targetParticleEffect": { - "type": "std::string", - "id": 8, - "offset": 216, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3048234723 - }, - "m_overheadMessage": { - "type": "std::string", - "id": 9, - "offset": 248, - "flags": 8388639, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1701018190 - }, - "m_requirements": { - "type": "class RequirementList", - "id": 10, - "offset": 280, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2840988582 - }, - "m_nRateChange": { - "type": "int", - "id": 11, - "offset": 376, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 797681786 - } - } - }, - "1707548557": { - "name": "class SharedPointer", - "bases": [ - "ObstacleCourseModifyTimeBehavior", - "ObstacleCourseObstaclePathBase", - "ObstacleCourseObstacleBehavior", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1707548557, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - } - } - }, - "127364549": { - "name": "class ClientProvidePetPower*", - "bases": [ - "ProvidePetPower", - "GameEffectBase", - "PropertyClass" - ], - "hash": 127364549, - "properties": { - "m_currentTickCount": { - "type": "double", - "id": 0, - "offset": 80, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2533274692 - }, - "m_effectNameID": { - "type": "unsigned int", - "id": 1, - "offset": 96, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1204067144 - }, - "m_bIsOnPet": { - "type": "bool", - "id": 2, - "offset": 73, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 522593303 - }, - "m_originatorID": { - "type": "gid", - "id": 3, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1131810019 - }, - "m_itemSlotID": { - "type": "unsigned int", - "id": 4, - "offset": 112, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1895747595 - }, - "m_internalID": { - "type": "int", - "id": 5, - "offset": 92, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1643137924 - }, - "m_endTime": { - "type": "unsigned int", - "id": 6, - "offset": 88, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 716479635 - }, - "m_happinessCost": { - "type": "int", - "id": 7, - "offset": 128, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1107125310 - }, - "m_cooldown": { - "type": "int", - "id": 8, - "offset": 132, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1897549823 - }, - "m_usesPerCombat": { - "type": "int", - "id": 9, - "offset": 136, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1445312791 - }, - "m_combatTalent": { - "type": "bool", - "id": 10, - "offset": 140, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2113651857 - }, - "m_triggerName": { - "type": "std::string", - "id": 11, - "offset": 144, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3100183568 - }, - "m_extra1": { - "type": "std::string", - "id": 12, - "offset": 176, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1916008880 - }, - "m_extra2": { - "type": "std::string", - "id": 13, - "offset": 208, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1916008881 - }, - "m_lootTableName": { - "type": "std::string", - "id": 14, - "offset": 240, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2333333378 - }, - "m_powerDisplayName": { - "type": "std::string", - "id": 15, - "offset": 272, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2338393887 - }, - "m_requirementList": { - "type": "class SharedPointer", - "id": 16, - "offset": 304, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3783909798 - }, - "m_requirementFailedString": { - "type": "std::string", - "id": 17, - "offset": 320, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2051573416 - }, - "m_noPVP": { - "type": "bool", - "id": 18, - "offset": 356, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 806455846 - }, - "m_rampUp": { - "type": "int", - "id": 19, - "offset": 360, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 899539119 - }, - "m_description": { - "type": "std::string", - "id": 20, - "offset": 368, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1649374815 - }, - "m_myTurn": { - "type": "bool", - "id": 21, - "offset": 400, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 733913410 - } - } - }, - "1440307576": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1440307576, - "properties": { - "m_entries": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1075986553 - } - } - }, - "1708638833": { - "name": "class ActiveClassProject", - "bases": [ - "PropertyClass" - ], - "hash": 1708638833, - "properties": { - "m_goalCount": { - "type": "int", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 774266758 - }, - "m_projectID": { - "type": "unsigned int", - "id": 1, - "offset": 76, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1263221425 - }, - "m_displayMultiplier": { - "type": "int", - "id": 2, - "offset": 96, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 239852119 - }, - "m_endTime": { - "type": "unsigned int", - "id": 3, - "offset": 100, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 716479635 - }, - "m_currentDay": { - "type": "unsigned int", - "id": 4, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2006571726 - }, - "m_multiplier": { - "type": "int", - "id": 5, - "offset": 108, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 759714273 - }, - "m_isEnding": { - "type": "bool", - "id": 6, - "offset": 112, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1289717828 - }, - "m_parameter": { - "type": "std::string", - "id": 7, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3122239292 - } - } - }, - "127363269": { - "name": "class ClientProvidePetPower", - "bases": [ - "ProvidePetPower", - "GameEffectBase", - "PropertyClass" - ], - "hash": 127363269, - "properties": { - "m_currentTickCount": { - "type": "double", - "id": 0, - "offset": 80, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2533274692 - }, - "m_effectNameID": { - "type": "unsigned int", - "id": 1, - "offset": 96, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1204067144 - }, - "m_bIsOnPet": { - "type": "bool", - "id": 2, - "offset": 73, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 522593303 - }, - "m_originatorID": { - "type": "gid", - "id": 3, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1131810019 - }, - "m_itemSlotID": { - "type": "unsigned int", - "id": 4, - "offset": 112, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1895747595 - }, - "m_internalID": { - "type": "int", - "id": 5, - "offset": 92, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1643137924 - }, - "m_endTime": { - "type": "unsigned int", - "id": 6, - "offset": 88, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 716479635 - }, - "m_happinessCost": { - "type": "int", - "id": 7, - "offset": 128, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1107125310 - }, - "m_cooldown": { - "type": "int", - "id": 8, - "offset": 132, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1897549823 - }, - "m_usesPerCombat": { - "type": "int", - "id": 9, - "offset": 136, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1445312791 - }, - "m_combatTalent": { - "type": "bool", - "id": 10, - "offset": 140, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2113651857 - }, - "m_triggerName": { - "type": "std::string", - "id": 11, - "offset": 144, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3100183568 - }, - "m_extra1": { - "type": "std::string", - "id": 12, - "offset": 176, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1916008880 - }, - "m_extra2": { - "type": "std::string", - "id": 13, - "offset": 208, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1916008881 - }, - "m_lootTableName": { - "type": "std::string", - "id": 14, - "offset": 240, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2333333378 - }, - "m_powerDisplayName": { - "type": "std::string", - "id": 15, - "offset": 272, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2338393887 - }, - "m_requirementList": { - "type": "class SharedPointer", - "id": 16, - "offset": 304, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3783909798 - }, - "m_requirementFailedString": { - "type": "std::string", - "id": 17, - "offset": 320, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2051573416 - }, - "m_noPVP": { - "type": "bool", - "id": 18, - "offset": 356, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 806455846 - }, - "m_rampUp": { - "type": "int", - "id": 19, - "offset": 360, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 899539119 - }, - "m_description": { - "type": "std::string", - "id": 20, - "offset": 368, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1649374815 - }, - "m_myTurn": { - "type": "bool", - "id": 21, - "offset": 400, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 733913410 - } - } - }, - "522151029": { - "name": "class LoginHistoryEntry*", - "bases": [ - "PropertyClass" - ], - "hash": 522151029, - "properties": { - "m_characterID": { - "type": "gid", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 210498386 - }, - "m_localTime": { - "type": "int", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2008496724 - } - } - }, - "1355637934": { - "name": "class AdvPvPEloEntryListWrapper", - "bases": [ - "PropertyClass" - ], - "hash": 1355637934, - "properties": { - "m_entries": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1075986553 - } - } - }, - "521172993": { - "name": "class ZoneTokenBehavior", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 521172993, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_tokens": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 27, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621026866 - } - } - }, - "1331628709": { - "name": "class BracketRewardsPlaceMapping*", - "bases": [ - "PropertyClass" - ], - "hash": 1331628709, - "properties": { - "m_numOfTeams": { - "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2164625196 - }, - "m_mappedPlace": { - "type": "unsigned int", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1626881929 - } - } - }, - "1316675974": { - "name": "class SharedPointer", - "bases": [ - "ServiceOptionBase", - "PropertyClass" - ], - "hash": 1316675974, - "properties": { - "m_serviceName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2206028813 - }, - "m_iconKey": { - "type": "std::string", - "id": 1, - "offset": 168, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2457138637 - }, - "m_displayKey": { - "type": "std::string", - "id": 2, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3023276954 - }, - "m_serviceIndex": { - "type": "unsigned int", - "id": 3, - "offset": 204, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2103126710 - }, - "m_forceInteract": { - "type": "bool", - "id": 4, - "offset": 200, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1705789564 - } - } - }, - "1710718080": { - "name": "class ClientPlayerStatuePvPBlob*", - "bases": [ - "PlayerStatuePvPBlob", - "PlayerStatueBlob", - "PropertyClass" - ], - "hash": 1710718080, - "properties": { - "m_level": { - "type": "int", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 801285362 - }, - "m_school": { - "type": "unsigned int", - "id": 1, - "offset": 76, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1152268885 - }, - "m_gender": { - "type": "int", - "id": 2, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 473816879 - }, - "m_nameKeys": { - "type": "unsigned int", - "id": 3, - "offset": 84, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1772225898 - }, - "m_badge": { - "type": "std::string", - "id": 4, - "offset": 88, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2286962478 - }, - "m_pCharacterBehavior": { - "type": "class SharedPointer", - "id": 5, - "offset": 120, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2724673923 - }, - "m_pEquipment": { - "type": "class SharedPointer", - "id": 6, - "offset": 136, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2473540161 - }, - "m_pStats": { - "type": "class SharedPointer", - "id": 7, - "offset": 152, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2212894623 - }, - "m_pGameEffects": { - "type": "class SharedPointer", - "id": 8, - "offset": 168, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1557857436 - }, - "m_petTID": { - "type": "unsigned int", - "id": 9, - "offset": 200, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1037635095 - }, - "m_pPetBehavior": { - "type": "class SharedPointer", - "id": 10, - "offset": 208, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2663493503 - }, - "m_pPetJewels": { - "type": "class SharedPointer", - "id": 11, - "offset": 224, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 733229991 - } - } - }, - "127506552": { - "name": "class std::vector >", - "bases": [], - "hash": 127506552, - "properties": {} - }, - "1307871426": { - "name": "enum SegmentationRequrinment::OPERATOR_TYPE", - "bases": [], - "hash": 1307871426, - "properties": {} - }, - "1709435288": { - "name": "class TeleportToNode", - "bases": [ - "PathBehaviorTemplate::Action", - "PropertyClass" - ], - "hash": 1709435288, - "properties": { - "m_nPathID": { - "type": "gid", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 214382368 - }, - "m_nNodeID": { - "type": "int", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 152152635, - "enum_options": { - "__DEFAULT": 4294967295 - } - }, - "m_nPriority": { - "type": "int", - "id": 2, - "offset": 84, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1515251530, - "enum_options": { - "__DEFAULT": 100 - } - }, - "m_nChance": { - "type": "int", - "id": 3, - "offset": 88, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1860748394, - "enum_options": { - "__DEFAULT": 50 - } - }, - "m_nDestinationNodeID": { - "type": "int", - "id": 4, - "offset": 96, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 44784029 - }, - "m_bContinuePathing": { - "type": "bool", - "id": 5, - "offset": 100, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2053386917 - } - } - }, - "127402278": { - "name": "enum QuestTemplate::ActivityType", - "bases": [], - "hash": 127402278, - "properties": {} - }, - "522273255": { - "name": "class std::list >", - "bases": [], - "hash": 522273255, - "properties": {} - }, - "1299674782": { - "name": "class SegmentationRequrinmentsList", - "bases": [ - "PropertyClass" - ], - "hash": 1299674782, - "properties": { - "m_segRequirnments": { - "type": "class SegmentationRequrinment", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1161472684 - }, - "m_bApplyDiscount": { - "type": "bool", - "id": 1, - "offset": 96, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1270539076 - }, - "m_nDiscountPrice": { - "type": "unsigned int", - "id": 2, - "offset": 100, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1342003831 - }, - "m_nDiscountPercent": { - "type": "unsigned int", - "id": 3, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 333850677 - }, - "m_bShowStrikethruPrice": { - "type": "bool", - "id": 4, - "offset": 108, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1930806814 - } - } - }, - "1709435192": { - "name": "class TeleportToNode*", - "bases": [ - "PathBehaviorTemplate::Action", - "PropertyClass" - ], - "hash": 1709435192, - "properties": { - "m_nPathID": { - "type": "gid", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 214382368 - }, - "m_nNodeID": { - "type": "int", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 152152635, - "enum_options": { - "__DEFAULT": 4294967295 - } - }, - "m_nPriority": { - "type": "int", - "id": 2, - "offset": 84, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1515251530, - "enum_options": { - "__DEFAULT": 100 - } - }, - "m_nChance": { - "type": "int", - "id": 3, - "offset": 88, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1860748394, - "enum_options": { - "__DEFAULT": 50 - } - }, - "m_nDestinationNodeID": { - "type": "int", - "id": 4, - "offset": 96, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 44784029 - }, - "m_bContinuePathing": { - "type": "bool", - "id": 5, - "offset": 100, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2053386917 - } - } - }, - "1295841521": { - "name": "class CustomEmoteBehavior*", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1295841521, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - } - } - }, - "1294242832": { - "name": "class UnknownLootInfo", - "bases": [ - "LootInfo", - "LootInfoBase", - "PropertyClass" - ], - "hash": 1294242832, - "properties": { - "m_lootType": { - "type": "enum LootInfo::LOOT_TYPE", - "id": 0, - "offset": 72, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1591891442, - "enum_options": { - "LOOT_TYPE_NONE": 0, - "LOOT_TYPE_GOLD": 1, - "LOOT_TYPE_MANA": 2, - "LOOT_TYPE_ITEM": 3, - "LOOT_TYPE_TREASURE_CARD": 4, - "LOOT_TYPE_MAGIC_XP": 5, - "LOOT_TYPE_ADD_SPELL": 6, - "LOOT_TYPE_MAX_HEALTH": 7, - "LOOT_TYPE_MAX_GOLD": 8, - "LOOT_TYPE_MAX_MANA": 9, - "LOOT_TYPE_MAX_POTION": 10, - "LOOT_TYPE_TRAINING_POINTS": 11, - "LOOT_TYPE_RECIPE": 12, - "LOOT_TYPE_CRAFTING_SLOT": 13, - "LOOT_TYPE_REAGENT": 14, - "LOOT_TYPE_PETSNACK": 15, - "LOOT_TYPE_GARDENING_XP": 16, - "LOOT_TYPE_PET_XP": 17, - "LOOT_TYPE_TREASURE_TABLE": 18, - "LOOT_TYPE_ARENA_POINTS": 19, - "LOOT_TYPE_ARENA_BONUS_POINTS": 20, - "LOOT_TYPE_GROUP": 21, - "LOOT_TYPE_FISHING_XP": 22, - "LOOT_TYPE_EVENT_CURRENCY_1": 24, - "LOOT_TYPE_EVENT_CURRENCY_2": 25, - "LOOT_TYPE_PVP_CURRENCY": 26, - "LOOT_TYPE_PVP_CURRENCY_BONUS": 27, - "LOOT_TYPE_PVP_TOURNEY_CURRENCY": 28, - "LOOT_TYPE_PVP_TOURNEY_CURRENCY_BONUS": 29, - "LOOT_TYPE_FURNITURE_ESSENCE": 30 - } - } - } - }, - "128262085": { - "name": "struct GoalEventData", - "bases": [], - "hash": 128262085, - "properties": {} - }, - "525174135": { - "name": "class AquariumBehavior", - "bases": [ - "AquariumBehaviorBase", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 525174135, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_fishData": { - "type": "std::string", - "id": 1, - "offset": 128, - "flags": 575, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3393318815 - } - } - }, - "1294168479": { - "name": "class std::list >", - "bases": [], - "hash": 1294168479, - "properties": {} - }, - "1709781549": { - "name": "class GardeningLevelInfo*", - "bases": [ - "PropertyClass" - ], - "hash": 1709781549, - "properties": { - "m_level": { - "type": "unsigned char", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1438884808 - }, - "m_xpToLevel": { - "type": "int", - "id": 1, - "offset": 76, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1972600157 - }, - "m_levelName": { - "type": "std::string", - "id": 2, - "offset": 80, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3595417396 - } - } - }, - "525159660": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 525159660, - "properties": { - "m_timerGID": { - "type": "gid", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1316603533 - }, - "m_onSeconds": { - "type": "unsigned int", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 782324633 - }, - "m_offSeconds": { - "type": "unsigned int", - "id": 2, - "offset": 84, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1856084727 - }, - "m_timerRunsContinuously": { - "type": "bool", - "id": 3, - "offset": 88, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1984044184 - }, - "m_isOnTimer": { - "type": "bool", - "id": 4, - "offset": 90, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1687072749 - }, - "m_timeLeft": { - "type": "float", - "id": 5, - "offset": 92, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1405489169 - }, - "m_displayOnScreen": { - "type": "bool", - "id": 6, - "offset": 89, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1273696038 - }, - "m_fastTimer": { - "type": "bool", - "id": 7, - "offset": 97, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1269294082 - } - } - }, - "1293777561": { - "name": "class CantripLevelInfo", - "bases": [ - "PropertyClass" - ], - "hash": 1293777561, - "properties": { - "m_level": { - "type": "unsigned char", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1438884808 - }, - "m_xpToLevel": { - "type": "int", - "id": 1, - "offset": 76, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1972600157 - }, - "m_levelName": { - "type": "std::string", - "id": 2, - "offset": 80, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3595417396 - } - } - }, - "524318721": { - "name": "class ZoneTokenBehavior*", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 524318721, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_tokens": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 27, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621026866 - } - } - }, - "1710483193": { - "name": "class ReqInCombat", - "bases": [ - "Requirement", - "PropertyClass" - ], - "hash": 1710483193, - "properties": { - "m_applyNOT": { - "type": "bool", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1746328074, - "enum_options": { - "__DEFAULT": 0 - } - }, - "m_operator": { - "type": "enum Requirement::Operator", - "id": 1, - "offset": 76, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2672792317, - "enum_options": { - "ROP_AND": 0, - "ROP_OR": 1, - "__DEFAULT": "ROP_AND" - } - } - } - }, - "131916289": { - "name": "class CombatPetXPEffectTemplate", - "bases": [ - "GameEffectTemplate", - "PropertyClass" - ], - "hash": 131916289, - "properties": { - "m_effectName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2029161513 - }, - "m_effectCategory": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1852673222 - }, - "m_sortOrder": { - "type": "int", - "id": 2, - "offset": 148, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1411218206 - }, - "m_duration": { - "type": "double", - "id": 3, - "offset": 192, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2727932435 - }, - "m_stackingCategories": { - "type": "std::string", - "id": 4, - "offset": 160, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1774497525 - }, - "m_isPersistent": { - "type": "bool", - "id": 5, - "offset": 153, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 923861920 - }, - "m_bIsOnPet": { - "type": "bool", - "id": 6, - "offset": 154, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 522593303 - }, - "m_isPublic": { - "type": "bool", - "id": 7, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1728439822 - }, - "m_visualEffectAddName": { - "type": "std::string", - "id": 8, - "offset": 200, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3382086694 - }, - "m_visualEffectRemoveName": { - "type": "std::string", - "id": 9, - "offset": 232, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1541697323 - }, - "m_onAddFunctorName": { - "type": "std::string", - "id": 10, - "offset": 280, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1561843107 - }, - "m_onRemoveFunctorName": { - "type": "std::string", - "id": 11, - "offset": 312, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2559017864 - }, - "m_stackingRule": { - "type": "enum STACKING_RULE", - "id": 12, - "offset": 144, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 431568889, - "enum_options": { - "STACKING_ALLOWED": 0, - "STACKING_NOSTACK": 1, - "STACKING_REPLACE": 2 - } - }, - "m_lootTableName": { - "type": "std::string", - "id": 13, - "offset": 360, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2333333378 - } - } - }, - "1293941401": { - "name": "class CantripLevelInfo*", - "bases": [ - "PropertyClass" - ], - "hash": 1293941401, - "properties": { - "m_level": { - "type": "unsigned char", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1438884808 - }, - "m_xpToLevel": { - "type": "int", - "id": 1, - "offset": 76, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1972600157 - }, - "m_levelName": { - "type": "std::string", - "id": 2, - "offset": 80, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3595417396 - } - } - }, - "130600560": { - "name": "class WizStatisticScalerEffect", - "bases": [ - "StatisticEffect", - "GameEffectBase", - "PropertyClass" - ], - "hash": 130600560, - "properties": { - "m_currentTickCount": { - "type": "double", - "id": 0, - "offset": 80, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2533274692 - }, - "m_effectNameID": { - "type": "unsigned int", - "id": 1, - "offset": 96, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1204067144 - }, - "m_bIsOnPet": { - "type": "bool", - "id": 2, - "offset": 73, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 522593303 - }, - "m_originatorID": { - "type": "gid", - "id": 3, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1131810019 - }, - "m_itemSlotID": { - "type": "unsigned int", - "id": 4, - "offset": 112, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1895747595 - }, - "m_internalID": { - "type": "int", - "id": 5, - "offset": 92, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1643137924 - }, - "m_endTime": { - "type": "unsigned int", - "id": 6, - "offset": 88, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 716479635 - }, - "m_lookupIndex": { - "type": "int", - "id": 7, - "offset": 128, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1626623948 - } - } - }, - "130304315": { - "name": "class StringListObj*", - "bases": [ - "PropertyClass" - ], - "hash": 130304315, - "properties": { - "m_stringList": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1880105486 - } - } - }, - "1711441960": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1711441960, - "properties": { - "m_teams": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1624208548 - }, - "m_roundInfo": { - "type": "class SharedPointer", - "id": 1, - "offset": 128, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2078235549 - } - } - }, - "525407888": { - "name": "class AuctionHouseEntry", - "bases": [ - "PropertyClass" - ], - "hash": 525407888, - "properties": { - "m_templateID": { - "type": "gid", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1075328001 - }, - "m_numForSale": { - "type": "int", - "id": 1, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1454578518 - }, - "m_buyPrice": { - "type": "int", - "id": 2, - "offset": 84, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1746297085 - }, - "m_sellPrice": { - "type": "int", - "id": 3, - "offset": 88, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 957785661 - } - } - }, - "1294237712": { - "name": "class UnknownLootInfo*", - "bases": [ - "LootInfo", - "LootInfoBase", - "PropertyClass" - ], - "hash": 1294237712, - "properties": { - "m_lootType": { - "type": "enum LootInfo::LOOT_TYPE", - "id": 0, - "offset": 72, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1591891442, - "enum_options": { - "LOOT_TYPE_NONE": 0, - "LOOT_TYPE_GOLD": 1, - "LOOT_TYPE_MANA": 2, - "LOOT_TYPE_ITEM": 3, - "LOOT_TYPE_TREASURE_CARD": 4, - "LOOT_TYPE_MAGIC_XP": 5, - "LOOT_TYPE_ADD_SPELL": 6, - "LOOT_TYPE_MAX_HEALTH": 7, - "LOOT_TYPE_MAX_GOLD": 8, - "LOOT_TYPE_MAX_MANA": 9, - "LOOT_TYPE_MAX_POTION": 10, - "LOOT_TYPE_TRAINING_POINTS": 11, - "LOOT_TYPE_RECIPE": 12, - "LOOT_TYPE_CRAFTING_SLOT": 13, - "LOOT_TYPE_REAGENT": 14, - "LOOT_TYPE_PETSNACK": 15, - "LOOT_TYPE_GARDENING_XP": 16, - "LOOT_TYPE_PET_XP": 17, - "LOOT_TYPE_TREASURE_TABLE": 18, - "LOOT_TYPE_ARENA_POINTS": 19, - "LOOT_TYPE_ARENA_BONUS_POINTS": 20, - "LOOT_TYPE_GROUP": 21, - "LOOT_TYPE_FISHING_XP": 22, - "LOOT_TYPE_EVENT_CURRENCY_1": 24, - "LOOT_TYPE_EVENT_CURRENCY_2": 25, - "LOOT_TYPE_PVP_CURRENCY": 26, - "LOOT_TYPE_PVP_CURRENCY_BONUS": 27, - "LOOT_TYPE_PVP_TOURNEY_CURRENCY": 28, - "LOOT_TYPE_PVP_TOURNEY_CURRENCY_BONUS": 29, - "LOOT_TYPE_FURNITURE_ESSENCE": 30 - } - } - } - }, - "130304318": { - "name": "class StringListObj", - "bases": [ - "PropertyClass" - ], - "hash": 130304318, - "properties": { - "m_stringList": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1880105486 - } - } - }, - "525272439": { - "name": "class AquariumBehavior*", - "bases": [ - "AquariumBehaviorBase", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 525272439, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_fishData": { - "type": "std::string", - "id": 1, - "offset": 128, - "flags": 575, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3393318815 - } - } - }, - "1712001863": { - "name": "class SharedPointer", - "bases": [ - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 1712001863, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - }, - "m_cloaked": { - "type": "bool", - "id": 2, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 7349510 - }, - "m_alpha": { - "type": "float", - "id": 3, - "offset": 124, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 878686493 - } - } - }, - "525296757": { - "name": "class LoginHistoryEntry", - "bases": [ - "PropertyClass" - ], - "hash": 525296757, - "properties": { - "m_characterID": { - "type": "gid", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 210498386 - }, - "m_localTime": { - "type": "int", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2008496724 - } - } - }, - "1294637035": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1294637035, - "properties": { - "m_GlobalID": { - "type": "gid", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 843146230 - }, - "m_CharacterID": { - "type": "gid", - "id": 1, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1626688306 - }, - "m_sNameBlob": { - "type": "std::string", - "id": 2, - "offset": 88, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2372396590 - }, - "m_schoolID": { - "type": "unsigned int", - "id": 3, - "offset": 120, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 369010242 - }, - "m_level": { - "type": "unsigned int", - "id": 4, - "offset": 124, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1012687813 - }, - "m_zoneDisplayName": { - "type": "std::string", - "id": 5, - "offset": 128, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1962339438 - }, - "m_hasFilteredChat": { - "type": "unsigned char", - "id": 6, - "offset": 160, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2657823291 - }, - "m_sigilSlot": { - "type": "unsigned int", - "id": 7, - "offset": 164, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1891552167 - } - } - }, - "1711851568": { - "name": "class SharedPointer", - "bases": [ - "ServiceOptionBase", - "PropertyClass" - ], - "hash": 1711851568, - "properties": { - "m_serviceName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2206028813 - }, - "m_iconKey": { - "type": "std::string", - "id": 1, - "offset": 168, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2457138637 - }, - "m_displayKey": { - "type": "std::string", - "id": 2, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3023276954 - }, - "m_serviceIndex": { - "type": "unsigned int", - "id": 3, - "offset": 204, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2103126710 - }, - "m_forceInteract": { - "type": "bool", - "id": 4, - "offset": 200, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1705789564 - } - } - }, - "1408534322": { - "name": "class ClientStartBacklashRotationEffectCinematicAction*", - "bases": [ - "StartBacklashRotationEffectCinematicAction", - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 1408534322, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - } - } - }, - "131207768": { - "name": "class SharedPointer", - "bases": [ - "GoalTemplate", - "CoreTemplate", - "PropertyClass" - ], - "hash": 131207768, - "properties": { - "m_behaviors": { - "type": "class BehaviorTemplate*", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1197808594 - }, - "m_goalName": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1521627807 - }, - "m_goalNameID": { - "type": "unsigned int", - "id": 2, - "offset": 496, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 403158846 - }, - "m_goalTitle": { - "type": "std::string", - "id": 3, - "offset": 136, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2291910240 - }, - "m_goalUnderway": { - "type": "std::string", - "id": 4, - "offset": 168, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3153144269 - }, - "m_hyperlink": { - "type": "std::string", - "id": 5, - "offset": 200, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2887798993 - }, - "m_completeText": { - "type": "std::string", - "id": 6, - "offset": 232, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2767458393 - }, - "m_completeResults": { - "type": "class ResultList*", - "id": 7, - "offset": 440, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1964258099 - }, - "m_goalRequirements": { - "type": "class RequirementList*", - "id": 8, - "offset": 448, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2979967145 - }, - "m_tallyCounter": { - "type": "class TallyCounterTemplate*", - "id": 9, - "offset": 456, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1884546193 - }, - "m_locationName": { - "type": "std::string", - "id": 10, - "offset": 272, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1824218389 - }, - "m_displayImage1": { - "type": "std::string", - "id": 11, - "offset": 304, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1959572133 - }, - "m_displayImage2": { - "type": "std::string", - "id": 12, - "offset": 336, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1959572134 - }, - "m_clientTags": { - "type": "std::string", - "id": 13, - "offset": 368, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2319030025 - }, - "m_genericEvents": { - "type": "std::string", - "id": 14, - "offset": 384, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 3466670829 - }, - "m_autoQualify": { - "type": "bool", - "id": 15, - "offset": 400, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1878907431 - }, - "m_autoComplete": { - "type": "bool", - "id": 16, - "offset": 401, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1302545445 - }, - "m_destinationZone": { - "type": "std::string", - "id": 17, - "offset": 408, - "flags": 268435463, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2605356153, - "enum_options": { - "__BASECLASS": "ZoneData" - } - }, - "m_dialogList": { - "type": "class ActorDialogListBase*", - "id": 18, - "offset": 264, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1909154969 - }, - "m_goalType": { - "type": "enum GoalTemplate::GOAL_TYPE", - "id": 19, - "offset": 96, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1488021149, - "enum_options": { - "GOAL_TYPE_UNKNOWN": 0, - "GOAL_TYPE_BOUNTY": 1, - "GOAL_TYPE_BOUNTYCOLLECT": 2, - "GOAL_TYPE_SCAVENGE": 3, - "GOAL_TYPE_PERSONA": 4, - "GOAL_TYPE_WAYPOINT": 5, - "GOAL_TYPE_SCAVENGEFAKE": 6, - "GOAL_TYPE_ACHIEVERANK": 7, - "GOAL_TYPE_USAGE": 8, - "GOAL_TYPE_COMPLETEQUEST": 9, - "GOAL_TYPE_SOCIARANK": 10, - "GOAL_TYPE_SOCIACURRENCY": 11, - "GOAL_TYPE_SOCIAMINIGAME": 12, - "GOAL_TYPE_SOCIAGIVEITEM": 13, - "GOAL_TYPE_SOCIAGETITEM": 14, - "GOAL_TYPE_COLLECTAFTERBOUNTY": 15, - "GOAL_TYPE_ENCOUNTER_WAYPOINT_FOREACH": 16 - } - }, - "m_noQuestHelper": { - "type": "bool", - "id": 20, - "offset": 500, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 578010882, - "enum_options": { - "__DEFAULT": 0 - } - }, - "m_petOnlyQuest": { - "type": "bool", - "id": 21, - "offset": 501, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 679359344, - "enum_options": { - "__DEFAULT": 0 - } - }, - "m_activateResults": { - "type": "class ResultList*", - "id": 22, - "offset": 504, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3790153995 - }, - "m_hideGoalFloatyText": { - "type": "bool", - "id": 23, - "offset": 512, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1919383204, - "enum_options": { - "__DEFAULT": 0 - } - }, - "m_rank": { - "type": "int", - "id": 24, - "offset": 520, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 219803942 - } - } - }, - "1353793238": { - "name": "class PetTalentBaseTemplate", - "bases": [ - "CoreTemplate", - "PropertyClass" - ], - "hash": 1353793238, - "properties": { - "m_behaviors": { - "type": "class BehaviorTemplate*", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1197808594 - }, - "m_talentName": { - "type": "std::string", - "id": 1, - "offset": 96, - "flags": 134217735, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2455147588 - }, - "m_displayName": { - "type": "std::string", - "id": 2, - "offset": 136, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2446900370 - }, - "m_description": { - "type": "std::string", - "id": 3, - "offset": 168, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1649374815 - }, - "m_imageIndex": { - "type": "unsigned int", - "id": 4, - "offset": 200, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1781902856 - }, - "m_imageName": { - "type": "std::string", - "id": 5, - "offset": 208, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2391520543 - }, - "m_rank": { - "type": "unsigned char", - "id": 6, - "offset": 240, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 857403388 - }, - "m_breedsAsTalentName": { - "type": "std::string", - "id": 7, - "offset": 248, - "flags": 268435463, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2143399629, - "enum_options": { - "__BASECLASS": "PetTalentBaseTemplate" - } - }, - "m_bRetired": { - "type": "bool", - "id": 8, - "offset": 280, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 904227684, - "enum_options": { - "__DEFAULT": 0 - } - }, - "m_unsearchable": { - "type": "bool", - "id": 9, - "offset": 281, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1760679968, - "enum_options": { - "__DEFAULT": 0 - } - } - } - }, - "1711926290": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1711926290, - "properties": { - "m_displayName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2446900370 - }, - "m_achievementName": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1754773829 - }, - "m_displayCount": { - "type": "bool", - "id": 2, - "offset": 136, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1245971442 - } - } - }, - "525531497": { - "name": "class SpawnManager*", - "bases": [ - "PropertyClass" - ], - "hash": 525531497, - "properties": { - "m_spawners": { - "type": "class SharedPointer", - "id": 0, - "offset": 144, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 3173126402 - } - } - }, - "1295470661": { - "name": "class BattlegroundMiniMapWindow", - "bases": [ - "Window", - "PropertyClass" - ], - "hash": 1295470661, - "properties": { - "m_sName": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306437263 - }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621225959 - }, - "m_Style": { - "type": "unsigned int", - "id": 2, - "offset": 152, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "SCALE_CHILDREN": 2, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "FOCUS_LOCKED": 64, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152 - } - }, - "m_Flags": { - "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } - }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3105139380 - }, - "m_fTargetAlpha": { - "type": "float", - "id": 5, - "offset": 212, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1809129834 - }, - "m_fDisabledAlpha": { - "type": "float", - "id": 6, - "offset": 216, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1389987675 - }, - "m_fAlpha": { - "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 482130755 - }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3623628394 - }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2102211316 - }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1846695875 - }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3389835433 - }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2547159940 - }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2587533771 - }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3091503757 - } - } - }, - "131999030": { - "name": "class SoundBehaviorTemplate", - "bases": [ - "AreaBehaviorTemplate", - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 131999030, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - }, - "m_radius": { - "type": "float", - "id": 1, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 989410271 - }, - "m_category": { - "type": "enum AudioCategory", - "id": 2, - "offset": 124, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2951251982, - "enum_options": { - "AudioCategory_Irrelevent": 0, - "AudioCategory_Accoustic": 1, - "AudioCategory_Noise": 2, - "AudioCategory_Music": 3, - "AudioCategory_MusicAtSFXVolume": 4, - "AudioCategory_Dialog": 5, - "AudioCategory_UI": 6, - "AudioCategory_NoiseAtMusicVolume": 7 - } - }, - "m_exclusive": { - "type": "bool", - "id": 3, - "offset": 128, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 824383403 - }, - "m_active": { - "type": "bool", - "id": 4, - "offset": 129, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 239335471 - }, - "m_enableReqs": { - "type": "class SharedPointer", - "id": 5, - "offset": 136, - "flags": 263, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3158020443 - }, - "m_trackFilenameList": { - "type": "std::string", - "id": 6, - "offset": 152, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2531081709 - }, - "m_playList": { - "type": "class PlayListEntry*", - "id": 7, - "offset": 176, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 3907873161 - }, - "m_priority": { - "type": "int", - "id": 8, - "offset": 208, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1235205852 - }, - "m_volume": { - "type": "float", - "id": 9, - "offset": 200, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1162855023 - }, - "m_loopCount": { - "type": "int", - "id": 10, - "offset": 204, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 865634717 - }, - "m_progression": { - "type": "enum PlayList::Progression", - "id": 11, - "offset": 220, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3279400238, - "enum_options": { - "Sequence": 0, - "Random": 1, - "SequenceOnceOnly": 2, - "RandomNoRepeat": 3 - } - }, - "m_progressMin": { - "type": "float", - "id": 12, - "offset": 212, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1497550192 - }, - "m_progressMax": { - "type": "float", - "id": 13, - "offset": 216, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1497549938 - }, - "m_audioFilterSet": { - "type": "unsigned int", - "id": 14, - "offset": 224, - "flags": 33554439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 831339825 - }, - "m_animationNameFilter": { - "type": "std::string", - "id": 15, - "offset": 232, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2292854242 - }, - "m_functionallabel": { - "type": "std::string", - "id": 16, - "offset": 264, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3589331278 - } - } - }, - "1301456684": { - "name": "class SharedPointer", - "bases": [ - "PlayGraphicOnSigilCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 1301456684, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_minDuration": { - "type": "float", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1733171553 - }, - "m_assetName": { - "type": "std::string", - "id": 2, - "offset": 88, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513131580 - } - } - }, - "131997750": { - "name": "class SoundBehaviorTemplate*", - "bases": [ - "AreaBehaviorTemplate", - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 131997750, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - }, - "m_radius": { - "type": "float", - "id": 1, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 989410271 - }, - "m_category": { - "type": "enum AudioCategory", - "id": 2, - "offset": 124, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2951251982, - "enum_options": { - "AudioCategory_Irrelevent": 0, - "AudioCategory_Accoustic": 1, - "AudioCategory_Noise": 2, - "AudioCategory_Music": 3, - "AudioCategory_MusicAtSFXVolume": 4, - "AudioCategory_Dialog": 5, - "AudioCategory_UI": 6, - "AudioCategory_NoiseAtMusicVolume": 7 - } - }, - "m_exclusive": { - "type": "bool", - "id": 3, - "offset": 128, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 824383403 - }, - "m_active": { - "type": "bool", - "id": 4, - "offset": 129, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 239335471 - }, - "m_enableReqs": { - "type": "class SharedPointer", - "id": 5, - "offset": 136, - "flags": 263, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3158020443 - }, - "m_trackFilenameList": { - "type": "std::string", - "id": 6, - "offset": 152, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2531081709 - }, - "m_playList": { - "type": "class PlayListEntry*", - "id": 7, - "offset": 176, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 3907873161 - }, - "m_priority": { - "type": "int", - "id": 8, - "offset": 208, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1235205852 - }, - "m_volume": { - "type": "float", - "id": 9, - "offset": 200, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1162855023 - }, - "m_loopCount": { - "type": "int", - "id": 10, - "offset": 204, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 865634717 - }, - "m_progression": { - "type": "enum PlayList::Progression", - "id": 11, - "offset": 220, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3279400238, - "enum_options": { - "Sequence": 0, - "Random": 1, - "SequenceOnceOnly": 2, - "RandomNoRepeat": 3 - } - }, - "m_progressMin": { - "type": "float", - "id": 12, - "offset": 212, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1497550192 - }, - "m_progressMax": { - "type": "float", - "id": 13, - "offset": 216, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1497549938 - }, - "m_audioFilterSet": { - "type": "unsigned int", - "id": 14, - "offset": 224, - "flags": 33554439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 831339825 - }, - "m_animationNameFilter": { - "type": "std::string", - "id": 15, - "offset": 232, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2292854242 - }, - "m_functionallabel": { - "type": "std::string", - "id": 16, - "offset": 264, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3589331278 - } - } - }, - "1712067014": { - "name": "class SharedPointer", - "bases": [ - "FadeMusicSoundCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 1712067014, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_fadeDuration": { - "type": "float", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1402536557 - }, - "m_fadeToGain": { - "type": "float", - "id": 2, - "offset": 84, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1724568201 - } - } - }, - "532055404": { - "name": "class PetJewelBehaviorTemplate", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 532055404, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - }, - "m_petTalentName": { - "type": "std::string", - "id": 1, - "offset": 120, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1985615789 - }, - "m_minPetLevel": { - "type": "unsigned char", - "id": 2, - "offset": 136, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1317483893 - } - } - }, - "1712060701": { - "name": "class MoveCommandSteered", - "bases": [ - "MoveController::MoveCommand", - "PropertyClass" - ], - "hash": 1712060701, - "properties": { - "m_vTarget": { - "type": "class Vector3D", - "id": 0, - "offset": 88, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3770499167 - }, - "m_kState": { - "type": "enum MoveState", - "id": 1, - "offset": 100, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 677163988, - "enum_options": { - "MS_WALKING": 0, - "MS_RUNNING": 1, - "MS_SWIMMING": 2, - "MS_FLYING": 3 - } - } - } - }, - "526623895": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 526623895, - "properties": { - "m_useDropShadow": { - "type": "bool", - "id": 0, - "offset": 96, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1447894491 - }, - "m_useOutline": { - "type": "bool", - "id": 1, - "offset": 97, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1796769184 - } - } - }, - "1298911046": { - "name": "class SharedPointer", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 1298911046, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - }, - "m_floorMaterialName": { - "type": "std::string", - "id": 1, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1873368397 - }, - "m_wallMaterialName": { - "type": "std::string", - "id": 2, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1499966715 - }, - "m_bothFloor": { - "type": "bool", - "id": 3, - "offset": 184, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 357593442 - }, - "m_bothWall": { - "type": "bool", - "id": 4, - "offset": 185, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 274227824 - } - } - }, - "132164555": { - "name": "class DerbyModifyPetStat*", - "bases": [ - "DerbyEffect", - "PropertyClass" - ], - "hash": 132164555, - "properties": { - "m_buffType": { - "type": "enum DerbyTalentBuffType", - "id": 0, - "offset": 92, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1149251982, - "enum_options": { - "Buff": 0, - "Debuff": 1, - "Neither": 2 - } - }, - "m_kTarget": { - "type": "enum DerbyTargetType", - "id": 1, - "offset": 96, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1807803351, - "enum_options": { - "kTargetInFront": 0, - "kTargetBehind": 1, - "kTargetFirst": 2, - "kTargetSelf": 3, - "kTargetAll": 4, - "kTargetLast": 5 - } - }, - "m_nDuration": { - "type": "int", - "id": 2, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1110167982 - }, - "m_effectID": { - "type": "unsigned int", - "id": 3, - "offset": 88, - "flags": 24, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2347630439 - }, - "m_imageFilename": { - "type": "std::string", - "id": 4, - "offset": 112, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2813328063 - }, - "m_iconIndex": { - "type": "unsigned int", - "id": 5, - "offset": 144, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1265133262 - }, - "m_soundOnActivate": { - "type": "std::string", - "id": 6, - "offset": 152, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1956929714 - }, - "m_soundOnTarget": { - "type": "std::string", - "id": 7, - "offset": 184, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3444214056 - }, - "m_targetParticleEffect": { - "type": "std::string", - "id": 8, - "offset": 216, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3048234723 - }, - "m_overheadMessage": { - "type": "std::string", - "id": 9, - "offset": 248, - "flags": 8388639, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1701018190 - }, - "m_requirements": { - "type": "class RequirementList", - "id": 10, - "offset": 280, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2840988582 - }, - "m_mods": { - "type": "class PetStatModificationSet", - "id": 11, - "offset": 376, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 686212266 - } - } - }, - "526005188": { - "name": "class std::list >", - "bases": [], - "hash": 526005188, - "properties": {} - }, - "1297527919": { - "name": "class AdvPvPActor*", - "bases": [ - "PvPActor", - "MatchActor", - "PropertyClass" - ], - "hash": 1297527919, - "properties": { - "m_nActorID": { - "type": "gid", - "id": 0, - "offset": 88, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 663762476 - }, - "m_nLadderContainerID": { - "type": "gid", - "id": 1, - "offset": 96, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 782107042 - }, - "m_nTournamentNameID": { - "type": "unsigned int", - "id": 2, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 471412886 - }, - "m_nTournamentID": { - "type": "gid", - "id": 3, - "offset": 112, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 105258688 - }, - "m_leagueID": { - "type": "unsigned int", - "id": 4, - "offset": 124, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 692361645 - }, - "m_seasonID": { - "type": "unsigned int", - "id": 5, - "offset": 120, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 535260643 - }, - "m_nMatchNameID": { - "type": "unsigned int", - "id": 6, - "offset": 128, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 497033398 - }, - "m_nMatchID": { - "type": "gid", - "id": 7, - "offset": 136, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1050279648 - }, - "m_nTeamID": { - "type": "gid", - "id": 8, - "offset": 144, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 374990266 - }, - "m_status": { - "type": "int", - "id": 9, - "offset": 160, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 960781182 - }, - "m_costAdj": { - "type": "class MatchCostAdjustment", - "id": 10, - "offset": 200, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 913243331 - }, - "m_pLadder": { - "type": "class SharedPointer", - "id": 11, - "offset": 304, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2484171182 - }, - "m_bracketID": { - "type": "gid", - "id": 12, - "offset": 152, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 441272961 - }, - "m_overridingELO": { - "type": "int", - "id": 13, - "offset": 284, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1428697363 - }, - "m_matchKFactor": { - "type": "int", - "id": 14, - "offset": 288, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 773340305 - }, - "m_userID": { - "type": "gid", - "id": 15, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1037989700 - }, - "m_matchMakingRangeForMatches": { - "type": "unsigned int", - "id": 16, - "offset": 320, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1193045098 - }, - "m_maxMatchMakingRangeForMatches": { - "type": "unsigned int", - "id": 17, - "offset": 324, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1279540944 - }, - "m_allowRangeToExceedMaxForMatches": { - "type": "bool", - "id": 18, - "offset": 328, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1260448226 - }, - "m_matchCrownsCost": { - "type": "int", - "id": 19, - "offset": 280, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1094489596 - }, - "m_machineID": { - "type": "gid", - "id": 20, - "offset": 336, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 281396698 - }, - "m_tier": { - "type": "int", - "id": 21, - "offset": 344, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 219884238 - }, - "m_rank": { - "type": "int", - "id": 22, - "offset": 348, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 219803942 - }, - "m_rating": { - "type": "int", - "id": 23, - "offset": 352, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 899783871 - }, - "m_levelBand": { - "type": "int", - "id": 24, - "offset": 356, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2097286567 - }, - "m_enteredQueue": { - "type": "int", - "id": 25, - "offset": 376, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 638238406 - }, - "m_isSubscriber": { - "type": "bool", - "id": 26, - "offset": 428, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 952325795 - }, - "m_meetBracketBadgeRequirnments": { - "type": "bool", - "id": 27, - "offset": 429, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 438139258 - }, - "m_1v1": { - "type": "bool", - "id": 28, - "offset": 430, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 269458571 - }, - "m_streak": { - "type": "int", - "id": 29, - "offset": 360, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 961375108 - }, - "m_matches": { - "type": "int", - "id": 30, - "offset": 364, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1757638687 - }, - "m_lastFight": { - "type": "int", - "id": 31, - "offset": 368, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 91176384 - }, - "m_PVPHistoryStr": { - "type": "std::string", - "id": 32, - "offset": 384, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1498439420 - }, - "m_maxCritHit": { - "type": "float", - "id": 33, - "offset": 416, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2225327348 - }, - "m_maxBlockCrit": { - "type": "float", - "id": 34, - "offset": 420, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 135865530 - }, - "m_shadowPipRating": { - "type": "float", - "id": 35, - "offset": 424, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 507126123 - }, - "m_optInOut": { - "type": "std::string", - "id": 36, - "offset": 168, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3013935453 - }, - "m_playerTimeDraw": { - "type": "bool", - "id": 37, - "offset": 431, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 447636221 - }, - "m_pvpStatus": { - "type": "unsigned char", - "id": 38, - "offset": 432, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 773570858 - }, - "m_gender": { - "type": "short", - "id": 39, - "offset": 434, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 564443897 - }, - "m_level": { - "type": "int", - "id": 40, - "offset": 436, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 801285362 - }, - "m_nameBlob": { - "type": "std::string", - "id": 41, - "offset": 440, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3058206907 - }, - "m_sSchool": { - "type": "std::string", - "id": 42, - "offset": 472, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1846342998 - }, - "m_timeLeft": { - "type": "int", - "id": 43, - "offset": 508, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1315288020 - }, - "m_startTime": { - "type": "unsigned int", - "id": 44, - "offset": 512, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1598371274 - }, - "m_elo": { - "type": "int", - "id": 45, - "offset": 516, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 267033754 - }, - "m_wins": { - "type": "int", - "id": 46, - "offset": 520, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 219992347 - }, - "m_losses": { - "type": "int", - "id": 47, - "offset": 524, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 681549075 - }, - "m_ties": { - "type": "int", - "id": 48, - "offset": 528, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 219884239 - } - } - }, - "525898244": { - "name": "class ClientAuctionHouseOption*", - "bases": [ - "AuctionHouseOption", - "ServiceOptionBase", - "PropertyClass" - ], - "hash": 525898244, - "properties": { - "m_serviceName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2206028813 - }, - "m_iconKey": { - "type": "std::string", - "id": 1, - "offset": 168, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2457138637 - }, - "m_displayKey": { - "type": "std::string", - "id": 2, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3023276954 - }, - "m_serviceIndex": { - "type": "unsigned int", - "id": 3, - "offset": 204, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2103126710 - }, - "m_forceInteract": { - "type": "bool", - "id": 4, - "offset": 200, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1705789564 - }, - "m_auctionHousePurchaseKey": { - "type": "unsigned int", - "id": 5, - "offset": 216, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 394777768 - }, - "m_sellModifier": { - "type": "float", - "id": 6, - "offset": 220, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 360128886 - } - } - }, - "1297522406": { - "name": "class ObstacleCourseClientSettings", - "bases": [ - "PropertyClass" - ], - "hash": 1297522406, - "properties": { - "m_launchCameraAsset": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1589507199 - }, - "m_launchAltCameraAsset": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3431958848 - }, - "m_finishCameraAsset": { - "type": "std::string", - "id": 2, - "offset": 136, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2785496869 - }, - "m_powEffectAsset": { - "type": "std::string", - "id": 3, - "offset": 168, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2123980286 - }, - "m_poofEffectAsset": { - "type": "std::string", - "id": 4, - "offset": 200, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1882932092 - }, - "m_startSound": { - "type": "std::string", - "id": 5, - "offset": 232, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2166722354 - }, - "m_winningSound": { - "type": "std::string", - "id": 6, - "offset": 264, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3277436766 - }, - "m_numNearMisses": { - "type": "int", - "id": 7, - "offset": 296, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 367683972 - }, - "m_launchSpinAnim": { - "type": "std::string", - "id": 8, - "offset": 304, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3333397429 - }, - "m_springboardVelocity": { - "type": "float", - "id": 9, - "offset": 336, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1581485377 - }, - "m_springboardHorizontalDistance": { - "type": "float", - "id": 10, - "offset": 340, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1273881447 - }, - "m_launchFadeOutTime": { - "type": "float", - "id": 11, - "offset": 344, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 780794089 - }, - "m_launchFadeInTime": { - "type": "float", - "id": 12, - "offset": 348, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 712951592 - }, - "m_launchCameraType": { - "type": "enum ObstacleCourseLaunchCameraType", - "id": 13, - "offset": 376, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1946138855, - "enum_options": { - "ShowLaunchPoint": 0, - "ShowLaunchDestination": 1 - } - }, - "m_launchDelay": { - "type": "float", - "id": 14, - "offset": 380, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 818941409 - }, - "m_springboardLaunchDelay": { - "type": "float", - "id": 15, - "offset": 384, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 358451836 - }, - "m_pendulumLaunchDelay": { - "type": "float", - "id": 16, - "offset": 388, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 813340139 - }, - "m_startLaunchCamAboveWaterDistance": { - "type": "float", - "id": 17, - "offset": 392, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1138704748 - }, - "m_floatingPenaltyStringKey": { - "type": "std::string", - "id": 18, - "offset": 416, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3048879372 - }, - "m_floatingBonusStringKey": { - "type": "std::string", - "id": 19, - "offset": 448, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2779826934 - }, - "m_floatingReadyStringKey": { - "type": "std::string", - "id": 20, - "offset": 480, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2159650180 - }, - "m_floatingGoStringKey": { - "type": "std::string", - "id": 21, - "offset": 512, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2635517125 - }, - "m_waitForRespawnTime": { - "type": "float", - "id": 22, - "offset": 352, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 989830754 - }, - "m_waitForFanfareTime": { - "type": "float", - "id": 23, - "offset": 356, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1563405653 - }, - "m_finishFadeOutTime": { - "type": "float", - "id": 24, - "offset": 360, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1976783759 - }, - "m_finishFadeInTime": { - "type": "float", - "id": 25, - "offset": 364, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1595172110 - }, - "m_waitForScoreTime": { - "type": "float", - "id": 26, - "offset": 368, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 662585758 - }, - "m_timeTextBlinkRate": { - "type": "float", - "id": 27, - "offset": 372, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1421152647 - }, - "m_maxLaunchVelocity": { - "type": "float", - "id": 28, - "offset": 396, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 187200007 - }, - "m_warningSeconds": { - "type": "int", - "id": 29, - "offset": 400, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1816542623 - }, - "m_simTimeDelta": { - "type": "float", - "id": 30, - "offset": 404, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2151669465 - }, - "m_pushOutVelocity": { - "type": "float", - "id": 31, - "offset": 408, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 586005630 - }, - "m_cameraCollisionRadius": { - "type": "float", - "id": 32, - "offset": 412, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 465605300 - }, - "m_failSound": { - "type": "std::string", - "id": 33, - "offset": 544, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2420690272 - }, - "m_timeWarningSound": { - "type": "std::string", - "id": 34, - "offset": 576, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2539048393 - }, - "m_splashSoundList": { - "type": "class WeightedList", - "id": 35, - "offset": 608, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2522662007 - }, - "m_nearMissSoundList": { - "type": "class WeightedList", - "id": 36, - "offset": 712, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1762129774 - }, - "m_splashCinematicList": { - "type": "class WeightedList", - "id": 37, - "offset": 816, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3318695259 - } - } - }, - "1712229957": { - "name": "class IdleInterceptCinematicAction", - "bases": [ - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 1712229957, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - } - } - }, - "525752462": { - "name": "class MaxGoldLootInfo", - "bases": [ - "LootInfo", - "LootInfoBase", - "PropertyClass" - ], - "hash": 525752462, - "properties": { - "m_lootType": { - "type": "enum LootInfo::LOOT_TYPE", - "id": 0, - "offset": 72, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1591891442, - "enum_options": { - "LOOT_TYPE_NONE": 0, - "LOOT_TYPE_GOLD": 1, - "LOOT_TYPE_MANA": 2, - "LOOT_TYPE_ITEM": 3, - "LOOT_TYPE_TREASURE_CARD": 4, - "LOOT_TYPE_MAGIC_XP": 5, - "LOOT_TYPE_ADD_SPELL": 6, - "LOOT_TYPE_MAX_HEALTH": 7, - "LOOT_TYPE_MAX_GOLD": 8, - "LOOT_TYPE_MAX_MANA": 9, - "LOOT_TYPE_MAX_POTION": 10, - "LOOT_TYPE_TRAINING_POINTS": 11, - "LOOT_TYPE_RECIPE": 12, - "LOOT_TYPE_CRAFTING_SLOT": 13, - "LOOT_TYPE_REAGENT": 14, - "LOOT_TYPE_PETSNACK": 15, - "LOOT_TYPE_GARDENING_XP": 16, - "LOOT_TYPE_PET_XP": 17, - "LOOT_TYPE_TREASURE_TABLE": 18, - "LOOT_TYPE_ARENA_POINTS": 19, - "LOOT_TYPE_ARENA_BONUS_POINTS": 20, - "LOOT_TYPE_GROUP": 21, - "LOOT_TYPE_FISHING_XP": 22, - "LOOT_TYPE_EVENT_CURRENCY_1": 24, - "LOOT_TYPE_EVENT_CURRENCY_2": 25, - "LOOT_TYPE_PVP_CURRENCY": 26, - "LOOT_TYPE_PVP_CURRENCY_BONUS": 27, - "LOOT_TYPE_PVP_TOURNEY_CURRENCY": 28, - "LOOT_TYPE_PVP_TOURNEY_CURRENCY_BONUS": 29, - "LOOT_TYPE_FURNITURE_ESSENCE": 30 - } - }, - "m_maxGoldToAdd": { - "type": "int", - "id": 1, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 667552370 - } - } - }, - "1296666495": { - "name": "class PolymorphEffectTemplate*", - "bases": [ - "GameEffectTemplate", - "PropertyClass" - ], - "hash": 1296666495, - "properties": { - "m_effectName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2029161513 - }, - "m_effectCategory": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1852673222 - }, - "m_sortOrder": { - "type": "int", - "id": 2, - "offset": 148, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1411218206 - }, - "m_duration": { - "type": "double", - "id": 3, - "offset": 192, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2727932435 - }, - "m_stackingCategories": { - "type": "std::string", - "id": 4, - "offset": 160, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1774497525 - }, - "m_isPersistent": { - "type": "bool", - "id": 5, - "offset": 153, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 923861920 - }, - "m_bIsOnPet": { - "type": "bool", - "id": 6, - "offset": 154, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 522593303 - }, - "m_isPublic": { - "type": "bool", - "id": 7, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1728439822 - }, - "m_visualEffectAddName": { - "type": "std::string", - "id": 8, - "offset": 200, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3382086694 - }, - "m_visualEffectRemoveName": { - "type": "std::string", - "id": 9, - "offset": 232, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1541697323 - }, - "m_onAddFunctorName": { - "type": "std::string", - "id": 10, - "offset": 280, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1561843107 - }, - "m_onRemoveFunctorName": { - "type": "std::string", - "id": 11, - "offset": 312, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2559017864 - }, - "m_stackingRule": { - "type": "enum STACKING_RULE", - "id": 12, - "offset": 144, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 431568889, - "enum_options": { - "STACKING_ALLOWED": 0, - "STACKING_NOSTACK": 1, - "STACKING_REPLACE": 2 - } - }, - "m_templateID": { - "type": "unsigned int", - "id": 13, - "offset": 360, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1286746870 - } - } - }, - "1712205967": { - "name": "class ClassProjectLeaderboard*", - "bases": [ - "PropertyClass" - ], - "hash": 1712205967, - "properties": { - "m_leaderboardSize": { - "type": "int", - "id": 0, - "offset": 88, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 683398282 - }, - "m_leaderboardList": { - "type": "class SharedPointer", - "id": 1, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2590936732 - }, - "m_topEntry": { - "type": "int", - "id": 2, - "offset": 92, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 554856543 - } - } - }, - "134829744": { - "name": "class AddCameraMappingCinematicAction", - "bases": [ - "CinematicAction", - "PropertyClass" - ], - "hash": 134829744, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_camToReplace": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2286913643 - }, - "m_replaceWithCam": { - "type": "std::string", - "id": 2, - "offset": 112, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2992754084 - } - } - }, - "133866884": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 133866884, - "properties": { - "m_promoPromotions": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2231640821 - } - } - }, - "132642352": { - "name": "enum ZTCounterType", - "bases": [], - "hash": 132642352, - "properties": {} - }, - "525967215": { - "name": "class CombatHealthListObj", - "bases": [ - "PropertyClass" - ], - "hash": 525967215, - "properties": { - "m_healthList": { - "type": "class ParticipantParameter", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2874774642 - }, - "m_duelID.m_full": { - "type": "unsigned __int64", - "id": 1, - "offset": 88, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1024980477 - } - } - }, - "1297524364": { - "name": "class GearVaultBehaviorTemplate", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 1297524364, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - } - } - }, - "132490457": { - "name": "class ClientTimedItemBehavior", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 132490457, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_expireTime": { - "type": "unsigned int", - "id": 1, - "offset": 112, - "flags": 59, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1836304873 - } - } - }, - "1715610338": { - "name": "class ClientDerbyModifyMorale*", - "bases": [ - "DerbyModifyMorale", - "DerbyEffect", - "PropertyClass" - ], - "hash": 1715610338, - "properties": { - "m_buffType": { - "type": "enum DerbyTalentBuffType", - "id": 0, - "offset": 92, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1149251982, - "enum_options": { - "Buff": 0, - "Debuff": 1, - "Neither": 2 - } - }, - "m_kTarget": { - "type": "enum DerbyTargetType", - "id": 1, - "offset": 96, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1807803351, - "enum_options": { - "kTargetInFront": 0, - "kTargetBehind": 1, - "kTargetFirst": 2, - "kTargetSelf": 3, - "kTargetAll": 4, - "kTargetLast": 5 - } - }, - "m_nDuration": { - "type": "int", - "id": 2, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1110167982 - }, - "m_effectID": { - "type": "unsigned int", - "id": 3, - "offset": 88, - "flags": 24, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2347630439 - }, - "m_imageFilename": { - "type": "std::string", - "id": 4, - "offset": 112, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2813328063 - }, - "m_iconIndex": { - "type": "unsigned int", - "id": 5, - "offset": 144, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1265133262 - }, - "m_soundOnActivate": { - "type": "std::string", - "id": 6, - "offset": 152, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1956929714 - }, - "m_soundOnTarget": { - "type": "std::string", - "id": 7, - "offset": 184, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3444214056 - }, - "m_targetParticleEffect": { - "type": "std::string", - "id": 8, - "offset": 216, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3048234723 - }, - "m_overheadMessage": { - "type": "std::string", - "id": 9, - "offset": 248, - "flags": 8388639, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1701018190 - }, - "m_requirements": { - "type": "class RequirementList", - "id": 10, - "offset": 280, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2840988582 - }, - "m_nMoraleChange": { - "type": "int", - "id": 11, - "offset": 376, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1624723118 - } - } - }, - "1713818816": { - "name": "class WorldElixirBehaviorTemplate", - "bases": [ - "LevelUpElixirBehaviorTemplate", - "ElixirBehaviorTemplate", - "TimedItemBehaviorTemplate", - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 1713818816, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - }, - "m_expireTime": { - "type": "std::string", - "id": 1, - "offset": 128, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3122602039 - }, - "m_timerType": { - "type": "enum TimerType", - "id": 2, - "offset": 120, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 571744132, - "enum_options": { - "TimerType_Game": 0, - "TimerType_Calendar": 1 - } - }, - "m_typeList": { - "type": "std::string", - "id": 3, - "offset": 160, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2119049625 - }, - "m_equipParticle": { - "type": "std::string", - "id": 4, - "offset": 176, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2222557491 - }, - "m_unequipParticle": { - "type": "std::string", - "id": 5, - "offset": 208, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2215431638 - }, - "m_equipSound": { - "type": "std::string", - "id": 6, - "offset": 240, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2720016552 - }, - "m_unequipSound": { - "type": "std::string", - "id": 7, - "offset": 272, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1552545835 - }, - "m_equipActionList": { - "type": "class SharedPointer", - "id": 8, - "offset": 304, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1314016250 - }, - "m_unequipActionList": { - "type": "class SharedPointer", - "id": 9, - "offset": 320, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2143896925 - }, - "m_combatEnabled": { - "type": "bool", - "id": 10, - "offset": 336, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1399744148 - }, - "m_PvPEnabled": { - "type": "bool", - "id": 11, - "offset": 337, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1042852532 - }, - "m_setCharacterToLevel": { - "type": "int", - "id": 12, - "offset": 408, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1268456078 - }, - "m_resultingTrainingPoints": { - "type": "int", - "id": 13, - "offset": 412, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1710285808 - }, - "m_schoolSpecificData": { - "type": "class SharedPointer", - "id": 14, - "offset": 472, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2609926725 - }, - "m_allSchoolData": { - "type": "class SharedPointer", - "id": 15, - "offset": 488, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2860093528 - }, - "m_firstWarningStringKey": { - "type": "std::string", - "id": 16, - "offset": 344, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3095888729 - }, - "m_secondWarningStringKey": { - "type": "std::string", - "id": 17, - "offset": 376, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2111513997 - }, - "m_accessPasses": { - "type": "std::string", - "id": 18, - "offset": 456, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2956825884 - }, - "m_gold": { - "type": "int", - "id": 19, - "offset": 416, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 219423808 - }, - "m_tutorialEventsToTrigger": { - "type": "std::string", - "id": 20, - "offset": 424, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2795041819 - }, - "m_tipIDsToDismiss": { - "type": "gid", - "id": 21, - "offset": 440, - "flags": 33554439, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1424884996 - }, - "m_maxPotions": { - "type": "int", - "id": 22, - "offset": 504, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1639626892 - }, - "m_questPrefix": { - "type": "std::string", - "id": 23, - "offset": 512, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2914797659 - } - } - }, - "526288621": { - "name": "class LeaderboardEntryList*", - "bases": [ - "PropertyClass" - ], - "hash": 526288621, - "properties": { - "m_entryList": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1753877873 - } - } - }, - "1297528550": { - "name": "class ObstacleCourseClientSettings*", - "bases": [ - "PropertyClass" - ], - "hash": 1297528550, - "properties": { - "m_launchCameraAsset": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1589507199 - }, - "m_launchAltCameraAsset": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3431958848 - }, - "m_finishCameraAsset": { - "type": "std::string", - "id": 2, - "offset": 136, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2785496869 - }, - "m_powEffectAsset": { - "type": "std::string", - "id": 3, - "offset": 168, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2123980286 - }, - "m_poofEffectAsset": { - "type": "std::string", - "id": 4, - "offset": 200, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1882932092 - }, - "m_startSound": { - "type": "std::string", - "id": 5, - "offset": 232, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2166722354 - }, - "m_winningSound": { - "type": "std::string", - "id": 6, - "offset": 264, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3277436766 - }, - "m_numNearMisses": { - "type": "int", - "id": 7, - "offset": 296, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 367683972 - }, - "m_launchSpinAnim": { - "type": "std::string", - "id": 8, - "offset": 304, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3333397429 - }, - "m_springboardVelocity": { - "type": "float", - "id": 9, - "offset": 336, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1581485377 - }, - "m_springboardHorizontalDistance": { - "type": "float", - "id": 10, - "offset": 340, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1273881447 - }, - "m_launchFadeOutTime": { - "type": "float", - "id": 11, - "offset": 344, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 780794089 - }, - "m_launchFadeInTime": { - "type": "float", - "id": 12, - "offset": 348, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 712951592 - }, - "m_launchCameraType": { - "type": "enum ObstacleCourseLaunchCameraType", - "id": 13, - "offset": 376, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1946138855, - "enum_options": { - "ShowLaunchPoint": 0, - "ShowLaunchDestination": 1 - } - }, - "m_launchDelay": { - "type": "float", - "id": 14, - "offset": 380, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 818941409 - }, - "m_springboardLaunchDelay": { - "type": "float", - "id": 15, - "offset": 384, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 358451836 - }, - "m_pendulumLaunchDelay": { - "type": "float", - "id": 16, - "offset": 388, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 813340139 - }, - "m_startLaunchCamAboveWaterDistance": { - "type": "float", - "id": 17, - "offset": 392, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1138704748 - }, - "m_floatingPenaltyStringKey": { - "type": "std::string", - "id": 18, - "offset": 416, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3048879372 - }, - "m_floatingBonusStringKey": { - "type": "std::string", - "id": 19, - "offset": 448, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2779826934 - }, - "m_floatingReadyStringKey": { - "type": "std::string", - "id": 20, - "offset": 480, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2159650180 - }, - "m_floatingGoStringKey": { - "type": "std::string", - "id": 21, - "offset": 512, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2635517125 - }, - "m_waitForRespawnTime": { - "type": "float", - "id": 22, - "offset": 352, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 989830754 - }, - "m_waitForFanfareTime": { - "type": "float", - "id": 23, - "offset": 356, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1563405653 - }, - "m_finishFadeOutTime": { - "type": "float", - "id": 24, - "offset": 360, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1976783759 - }, - "m_finishFadeInTime": { - "type": "float", - "id": 25, - "offset": 364, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1595172110 - }, - "m_waitForScoreTime": { - "type": "float", - "id": 26, - "offset": 368, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 662585758 - }, - "m_timeTextBlinkRate": { - "type": "float", - "id": 27, - "offset": 372, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1421152647 - }, - "m_maxLaunchVelocity": { - "type": "float", - "id": 28, - "offset": 396, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 187200007 - }, - "m_warningSeconds": { - "type": "int", - "id": 29, - "offset": 400, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1816542623 - }, - "m_simTimeDelta": { - "type": "float", - "id": 30, - "offset": 404, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2151669465 - }, - "m_pushOutVelocity": { - "type": "float", - "id": 31, - "offset": 408, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 586005630 - }, - "m_cameraCollisionRadius": { - "type": "float", - "id": 32, - "offset": 412, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 465605300 - }, - "m_failSound": { - "type": "std::string", - "id": 33, - "offset": 544, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2420690272 - }, - "m_timeWarningSound": { - "type": "std::string", - "id": 34, - "offset": 576, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2539048393 - }, - "m_splashSoundList": { - "type": "class WeightedList", - "id": 35, - "offset": 608, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2522662007 - }, - "m_nearMissSoundList": { - "type": "class WeightedList", - "id": 36, - "offset": 712, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1762129774 - }, - "m_splashCinematicList": { - "type": "class WeightedList", - "id": 37, - "offset": 816, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3318695259 - } - } - }, - "1712871480": { - "name": "class ClientDerbyAddObstacle*", - "bases": [ - "DerbyAddObstacle", - "DerbyEffect", - "PropertyClass" - ], - "hash": 1712871480, - "properties": { - "m_buffType": { - "type": "enum DerbyTalentBuffType", - "id": 0, - "offset": 92, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1149251982, - "enum_options": { - "Buff": 0, - "Debuff": 1, - "Neither": 2 - } - }, - "m_kTarget": { - "type": "enum DerbyTargetType", - "id": 1, - "offset": 96, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1807803351, - "enum_options": { - "kTargetInFront": 0, - "kTargetBehind": 1, - "kTargetFirst": 2, - "kTargetSelf": 3, - "kTargetAll": 4, - "kTargetLast": 5 - } - }, - "m_nDuration": { - "type": "int", - "id": 2, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1110167982 - }, - "m_effectID": { - "type": "unsigned int", - "id": 3, - "offset": 88, - "flags": 24, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2347630439 - }, - "m_imageFilename": { - "type": "std::string", - "id": 4, - "offset": 112, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2813328063 - }, - "m_iconIndex": { - "type": "unsigned int", - "id": 5, - "offset": 144, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1265133262 - }, - "m_soundOnActivate": { - "type": "std::string", - "id": 6, - "offset": 152, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1956929714 - }, - "m_soundOnTarget": { - "type": "std::string", - "id": 7, - "offset": 184, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3444214056 - }, - "m_targetParticleEffect": { - "type": "std::string", - "id": 8, - "offset": 216, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3048234723 - }, - "m_overheadMessage": { - "type": "std::string", - "id": 9, - "offset": 248, - "flags": 8388639, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1701018190 - }, - "m_requirements": { - "type": "class RequirementList", - "id": 10, - "offset": 280, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2840988582 - }, - "m_lane": { - "type": "enum DerbyLaneEffect", - "id": 11, - "offset": 376, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1075628144, - "enum_options": { - "kLaneRandomONE": 0, - "kLaneAll": 1, - "kLaneMine": 2 - } - }, - "m_obstacleType": { - "type": "unsigned __int64", - "id": 12, - "offset": 384, - "flags": 33554439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2219764488 - }, - "m_nObstacleAmount": { - "type": "int", - "id": 13, - "offset": 392, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 52937033 - } - } - }, - "133276889": { - "name": "class ClientTimedItemBehavior*", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 133276889, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_expireTime": { - "type": "unsigned int", - "id": 1, - "offset": 112, - "flags": 59, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1836304873 - } - } - }, - "526185189": { - "name": "class SharedPointer", - "bases": [ - "WinAnimContainer", - "WindowAnimation", - "PropertyClass" - ], - "hash": 526185189, - "properties": { - "m_bUseDeepCopy": { - "type": "bool", - "id": 0, - "offset": 72, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 433380635 - }, - "m_winAnimList": { - "type": "class SharedPointer", - "id": 1, - "offset": 80, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1941062728 - }, - "m_bLooping": { - "type": "bool", - "id": 2, - "offset": 104, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2131020845 - }, - "m_boundary": { - "type": "class Rect", - "id": 3, - "offset": 112, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1423726080 - } - } - }, - "1712777120": { - "name": "enum MoveAnimation", - "bases": [], - "hash": 1712777120, - "properties": {} - }, - "1297977215": { - "name": "class PolymorphEffectTemplate", - "bases": [ - "GameEffectTemplate", - "PropertyClass" - ], - "hash": 1297977215, - "properties": { - "m_effectName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2029161513 - }, - "m_effectCategory": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1852673222 - }, - "m_sortOrder": { - "type": "int", - "id": 2, - "offset": 148, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1411218206 - }, - "m_duration": { - "type": "double", - "id": 3, - "offset": 192, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2727932435 - }, - "m_stackingCategories": { - "type": "std::string", - "id": 4, - "offset": 160, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1774497525 - }, - "m_isPersistent": { - "type": "bool", - "id": 5, - "offset": 153, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 923861920 - }, - "m_bIsOnPet": { - "type": "bool", - "id": 6, - "offset": 154, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 522593303 - }, - "m_isPublic": { - "type": "bool", - "id": 7, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1728439822 - }, - "m_visualEffectAddName": { - "type": "std::string", - "id": 8, - "offset": 200, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3382086694 - }, - "m_visualEffectRemoveName": { - "type": "std::string", - "id": 9, - "offset": 232, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1541697323 - }, - "m_onAddFunctorName": { - "type": "std::string", - "id": 10, - "offset": 280, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1561843107 - }, - "m_onRemoveFunctorName": { - "type": "std::string", - "id": 11, - "offset": 312, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2559017864 - }, - "m_stackingRule": { - "type": "enum STACKING_RULE", - "id": 12, - "offset": 144, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 431568889, - "enum_options": { - "STACKING_ALLOWED": 0, - "STACKING_NOSTACK": 1, - "STACKING_REPLACE": 2 - } - }, - "m_templateID": { - "type": "unsigned int", - "id": 13, - "offset": 360, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1286746870 - } - } - }, - "1712261108": { - "name": "class SharedPointer", - "bases": [ - "WizItemTemplate", - "ItemTemplate", - "GameObjectTemplate", - "CoreTemplate", - "PropertyClass" - ], - "hash": 1712261108, - "properties": { - "m_behaviors": { - "type": "class BehaviorTemplate*", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1197808594 - }, - "m_objectName": { - "type": "std::string", - "id": 1, - "offset": 96, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2154940147 - }, - "m_templateID": { - "type": "unsigned int", - "id": 2, - "offset": 128, - "flags": 16777223, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1286746870 - }, - "m_visualID": { - "type": "unsigned int", - "id": 3, - "offset": 132, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1118778894 - }, - "m_adjectiveList": { - "type": "std::string", - "id": 4, - "offset": 248, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 3195213318 - }, - "m_exemptFromAOI": { - "type": "bool", - "id": 5, - "offset": 240, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1457879059 - }, - "m_displayName": { - "type": "std::string", - "id": 6, - "offset": 168, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2446900370 - }, - "m_description": { - "type": "std::string", - "id": 7, - "offset": 136, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1649374815 - }, - "m_nObjectType": { - "type": "enum ObjectType", - "id": 8, - "offset": 200, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2118905880, - "enum_options": { - "OT_UNDEFINED": 0, - "OT_PLAYER": 1, - "OT_NPC": 2, - "OT_PROP": 3, - "OT_OBJECT": 4, - "OT_HOUSE": 5, - "OT_KEY": 6, - "OT_OLD_KEY": 7, - "OT_DEED": 8, - "OT_MAIL": 9, - "OT_RECIPE": 17, - "OT_EQUIP_HEAD": 10, - "OT_EQUIP_CHEST": 11, - "OT_EQUIP_LEGS": 12, - "OT_EQUIP_HANDS": 13, - "OT_EQUIP_FINGER": 14, - "OT_EQUIP_FEET": 15, - "OT_EQUIP_EAR": 16, - "OT_BUILDING_BLOCK": 18, - "OT_BUILDING_BLOCK_SOLID": 19, - "OT_GOLF": 20, - "OT_DOOR": 21, - "OT_PET": 22, - "OT_FABRIC": 23, - "OT_WINDOW": 24, - "OT_ROOF": 25, - "OT_HORSE": 26, - "OT_STRUCTURE": 27, - "OT_HOUSING_TEXTURE": 28, - "OT_PLANT": 29 - } - }, - "m_sIcon": { - "type": "std::string", - "id": 9, - "offset": 208, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306259831 - }, - "m_equipRequirements": { - "type": "class RequirementList*", - "id": 10, - "offset": 280, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2762617226 - }, - "m_purchaseRequirements": { - "type": "class RequirementList*", - "id": 11, - "offset": 288, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3174641793 - }, - "m_equipEffects": { - "type": "class GameEffectInfo*", - "id": 12, - "offset": 296, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 836628351 - }, - "m_baseCost": { - "type": "float", - "id": 13, - "offset": 312, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1565352651 - }, - "m_creditsCost": { - "type": "float", - "id": 14, - "offset": 320, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 805514974 - }, - "m_avatarInfo": { - "type": "class AvatarItemInfoBase*", - "id": 15, - "offset": 328, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2627321299 - }, - "m_avatarFlags": { - "type": "std::string", - "id": 16, - "offset": 336, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2347762759 - }, - "m_itemLimit": { - "type": "int", - "id": 17, - "offset": 316, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1799746856 - }, - "m_holidayFlag": { - "type": "std::string", - "id": 18, - "offset": 352, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2994795359 - }, - "m_itemSetBonusTemplateID": { - "type": "unsigned int", - "id": 19, - "offset": 384, - "flags": 33554439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1316835672 - }, - "m_numPrimaryColors": { - "type": "int", - "id": 20, - "offset": 428, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 981103872 - }, - "m_numSecondaryColors": { - "type": "int", - "id": 21, - "offset": 432, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1310416868 - }, - "m_numPatterns": { - "type": "int", - "id": 22, - "offset": 436, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 953162171 - }, - "m_school": { - "type": "std::string", - "id": 23, - "offset": 392, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2438566051 - }, - "m_arenaPointCost": { - "type": "int", - "id": 24, - "offset": 440, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1819621796 - }, - "m_pvpCurrencyCost": { - "type": "int", - "id": 25, - "offset": 444, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 645595444 - }, - "m_pvpTourneyCurrencyCost": { - "type": "int", - "id": 26, - "offset": 448, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 517874954 - }, - "m_rank": { - "type": "int", - "id": 27, - "offset": 424, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 219803942 - }, - "m_boyIconIndex": { - "type": "int", - "id": 28, - "offset": 452, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 802140453 - }, - "m_girlIconIndex": { - "type": "int", - "id": 29, - "offset": 456, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 832706793 - }, - "m_leashOffsetOverride": { - "type": "class SharedPointer", - "id": 30, - "offset": 464, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1692586788 - }, - "m_rarity": { - "type": "enum RarityType", - "id": 31, - "offset": 460, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2253792108, - "enum_options": { - "RT_COMMON": 0, - "RT_UNCOMMON": 1, - "RT_RARE": 2, - "RT_ULTRARARE": 3, - "RT_EPIC": 4 - } - }, - "m_lunariAmount": { - "type": "int", - "id": 32, - "offset": 480, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 474358393 - }, - "m_nif": { - "type": "std::string", - "id": 33, - "offset": 488, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1764743064 - } - } - }, - "526288581": { - "name": "class LeaderboardEntryList", - "bases": [ - "PropertyClass" - ], - "hash": 526288581, - "properties": { - "m_entryList": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1753877873 - } - } - }, - "134394926": { - "name": "class HaltCinematicAction", - "bases": [ - "CinematicAction", - "PropertyClass" - ], - "hash": 134394926, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - } - } - }, - "1299265670": { - "name": "class std::vector >", - "bases": [], - "hash": 1299265670, - "properties": {} - }, - "1712808072": { - "name": "class SharedPointer", - "bases": [ - "StartBacklashRotationEffectCinematicAction", - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 1712808072, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - } - } - }, - "134592854": { - "name": "class SharedPointer", - "bases": [ - "GameEffectBase", - "PropertyClass" - ], - "hash": 134592854, - "properties": { - "m_currentTickCount": { - "type": "double", - "id": 0, - "offset": 80, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2533274692 - }, - "m_effectNameID": { - "type": "unsigned int", - "id": 1, - "offset": 96, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1204067144 - }, - "m_bIsOnPet": { - "type": "bool", - "id": 2, - "offset": 73, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 522593303 - }, - "m_originatorID": { - "type": "gid", - "id": 3, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1131810019 - }, - "m_itemSlotID": { - "type": "unsigned int", - "id": 4, - "offset": 112, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1895747595 - }, - "m_internalID": { - "type": "int", - "id": 5, - "offset": 92, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1643137924 - }, - "m_endTime": { - "type": "unsigned int", - "id": 6, - "offset": 88, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 716479635 - }, - "m_pulseCount": { - "type": "double", - "id": 7, - "offset": 128, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3507157375 - } - } - }, - "526565147": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 526565147, - "properties": { - "m_passList": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1599562628 - } - } - }, - "1298915509": { - "name": "class PromoReward", - "bases": [ - "PropertyClass" - ], - "hash": 1298915509, - "properties": { - "m_desc": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1717004954 - }, - "m_type": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1717601629 - } - } - }, - "1712992399": { - "name": "class ClassProjectLeaderboard", - "bases": [ - "PropertyClass" - ], - "hash": 1712992399, - "properties": { - "m_leaderboardSize": { - "type": "int", - "id": 0, - "offset": 88, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 683398282 - }, - "m_leaderboardList": { - "type": "class SharedPointer", - "id": 1, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2590936732 - }, - "m_topEntry": { - "type": "int", - "id": 2, - "offset": 92, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 554856543 - } - } - }, - "135715367": { - "name": "class CompassMarkerWindow*", - "bases": [ - "Window", - "PropertyClass" - ], - "hash": 135715367, - "properties": { - "m_sName": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306437263 - }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621225959 - }, - "m_Style": { - "type": "unsigned int", - "id": 2, - "offset": 152, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "SCALE_CHILDREN": 2, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "FOCUS_LOCKED": 64, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152 - } - }, - "m_Flags": { - "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } - }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3105139380 - }, - "m_fTargetAlpha": { - "type": "float", - "id": 5, - "offset": 212, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1809129834 - }, - "m_fDisabledAlpha": { - "type": "float", - "id": 6, - "offset": 216, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1389987675 - }, - "m_fAlpha": { - "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 482130755 - }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3623628394 - }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2102211316 - }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1846695875 - }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3389835433 - }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2547159940 - }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2587533771 - }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3091503757 - } - } - }, - "528727797": { - "name": "class BreadCrumbBehavior", - "bases": [ - "BreadCrumbBehaviorBase", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 528727797, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_breadCrumbNumber": { - "type": "unsigned int", - "id": 1, - "offset": 112, - "flags": 65543, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2100995821 - }, - "m_equippedPetGIDList": { - "type": "gid", - "id": 2, - "offset": 120, - "flags": 65543, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1574152046 - }, - "m_equippedBreadCrumbIDList": { - "type": "unsigned short", - "id": 3, - "offset": 136, - "flags": 65543, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 592278117 - }, - "m_flags": { - "type": "unsigned int", - "id": 4, - "offset": 152, - "flags": 65543, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1005801050 - } - } - }, - "1299668638": { - "name": "class SegmentationRequrinmentsList*", - "bases": [ - "PropertyClass" - ], - "hash": 1299668638, - "properties": { - "m_segRequirnments": { - "type": "class SegmentationRequrinment", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1161472684 - }, - "m_bApplyDiscount": { - "type": "bool", - "id": 1, - "offset": 96, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1270539076 - }, - "m_nDiscountPrice": { - "type": "unsigned int", - "id": 2, - "offset": 100, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1342003831 - }, - "m_nDiscountPercent": { - "type": "unsigned int", - "id": 3, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 333850677 - }, - "m_bShowStrikethruPrice": { - "type": "bool", - "id": 4, - "offset": 108, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1930806814 - } - } - }, - "1712912440": { - "name": "class ClientDerbyAddObstacle", - "bases": [ - "DerbyAddObstacle", - "DerbyEffect", - "PropertyClass" - ], - "hash": 1712912440, - "properties": { - "m_buffType": { - "type": "enum DerbyTalentBuffType", - "id": 0, - "offset": 92, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1149251982, - "enum_options": { - "Buff": 0, - "Debuff": 1, - "Neither": 2 - } - }, - "m_kTarget": { - "type": "enum DerbyTargetType", - "id": 1, - "offset": 96, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1807803351, - "enum_options": { - "kTargetInFront": 0, - "kTargetBehind": 1, - "kTargetFirst": 2, - "kTargetSelf": 3, - "kTargetAll": 4, - "kTargetLast": 5 - } - }, - "m_nDuration": { - "type": "int", - "id": 2, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1110167982 - }, - "m_effectID": { - "type": "unsigned int", - "id": 3, - "offset": 88, - "flags": 24, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2347630439 - }, - "m_imageFilename": { - "type": "std::string", - "id": 4, - "offset": 112, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2813328063 - }, - "m_iconIndex": { - "type": "unsigned int", - "id": 5, - "offset": 144, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1265133262 - }, - "m_soundOnActivate": { - "type": "std::string", - "id": 6, - "offset": 152, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1956929714 - }, - "m_soundOnTarget": { - "type": "std::string", - "id": 7, - "offset": 184, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3444214056 - }, - "m_targetParticleEffect": { - "type": "std::string", - "id": 8, - "offset": 216, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3048234723 - }, - "m_overheadMessage": { - "type": "std::string", - "id": 9, - "offset": 248, - "flags": 8388639, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1701018190 - }, - "m_requirements": { - "type": "class RequirementList", - "id": 10, - "offset": 280, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2840988582 - }, - "m_lane": { - "type": "enum DerbyLaneEffect", - "id": 11, - "offset": 376, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1075628144, - "enum_options": { - "kLaneRandomONE": 0, - "kLaneAll": 1, - "kLaneMine": 2 - } - }, - "m_obstacleType": { - "type": "unsigned __int64", - "id": 12, - "offset": 384, - "flags": 33554439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2219764488 - }, - "m_nObstacleAmount": { - "type": "int", - "id": 13, - "offset": 392, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 52937033 - } - } - }, - "135479856": { - "name": "class AddSpellLootInfo", - "bases": [ - "LootInfo", - "LootInfoBase", - "PropertyClass" - ], - "hash": 135479856, - "properties": { - "m_lootType": { - "type": "enum LootInfo::LOOT_TYPE", - "id": 0, - "offset": 72, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1591891442, - "enum_options": { - "LOOT_TYPE_NONE": 0, - "LOOT_TYPE_GOLD": 1, - "LOOT_TYPE_MANA": 2, - "LOOT_TYPE_ITEM": 3, - "LOOT_TYPE_TREASURE_CARD": 4, - "LOOT_TYPE_MAGIC_XP": 5, - "LOOT_TYPE_ADD_SPELL": 6, - "LOOT_TYPE_MAX_HEALTH": 7, - "LOOT_TYPE_MAX_GOLD": 8, - "LOOT_TYPE_MAX_MANA": 9, - "LOOT_TYPE_MAX_POTION": 10, - "LOOT_TYPE_TRAINING_POINTS": 11, - "LOOT_TYPE_RECIPE": 12, - "LOOT_TYPE_CRAFTING_SLOT": 13, - "LOOT_TYPE_REAGENT": 14, - "LOOT_TYPE_PETSNACK": 15, - "LOOT_TYPE_GARDENING_XP": 16, - "LOOT_TYPE_PET_XP": 17, - "LOOT_TYPE_TREASURE_TABLE": 18, - "LOOT_TYPE_ARENA_POINTS": 19, - "LOOT_TYPE_ARENA_BONUS_POINTS": 20, - "LOOT_TYPE_GROUP": 21, - "LOOT_TYPE_FISHING_XP": 22, - "LOOT_TYPE_EVENT_CURRENCY_1": 24, - "LOOT_TYPE_EVENT_CURRENCY_2": 25, - "LOOT_TYPE_PVP_CURRENCY": 26, - "LOOT_TYPE_PVP_CURRENCY_BONUS": 27, - "LOOT_TYPE_PVP_TOURNEY_CURRENCY": 28, - "LOOT_TYPE_PVP_TOURNEY_CURRENCY_BONUS": 29, - "LOOT_TYPE_FURNITURE_ESSENCE": 30 - } - }, - "m_spellName": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 268435487, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2688485244, - "enum_options": { - "__BASECLASS": "SpellTemplate" - } - }, - "m_internalName": { - "type": "std::string", - "id": 2, - "offset": 112, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1924993817 - }, - "m_spellID": { - "type": "unsigned int", - "id": 3, - "offset": 144, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1697483258 - } - } - }, - "527136127": { - "name": "class SharedPointer", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 527136127, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_raidKeyTemplateID": { - "type": "unsigned int", - "id": 1, - "offset": 112, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 884418367 - } - } - }, - "1299267716": { - "name": "class AutobotQuestManager", - "bases": [ - "PropertyClass" - ], - "hash": 1299267716, - "properties": {} - }, - "135381552": { - "name": "class AddSpellLootInfo*", - "bases": [ - "LootInfo", - "LootInfoBase", - "PropertyClass" - ], - "hash": 135381552, - "properties": { - "m_lootType": { - "type": "enum LootInfo::LOOT_TYPE", - "id": 0, - "offset": 72, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1591891442, - "enum_options": { - "LOOT_TYPE_NONE": 0, - "LOOT_TYPE_GOLD": 1, - "LOOT_TYPE_MANA": 2, - "LOOT_TYPE_ITEM": 3, - "LOOT_TYPE_TREASURE_CARD": 4, - "LOOT_TYPE_MAGIC_XP": 5, - "LOOT_TYPE_ADD_SPELL": 6, - "LOOT_TYPE_MAX_HEALTH": 7, - "LOOT_TYPE_MAX_GOLD": 8, - "LOOT_TYPE_MAX_MANA": 9, - "LOOT_TYPE_MAX_POTION": 10, - "LOOT_TYPE_TRAINING_POINTS": 11, - "LOOT_TYPE_RECIPE": 12, - "LOOT_TYPE_CRAFTING_SLOT": 13, - "LOOT_TYPE_REAGENT": 14, - "LOOT_TYPE_PETSNACK": 15, - "LOOT_TYPE_GARDENING_XP": 16, - "LOOT_TYPE_PET_XP": 17, - "LOOT_TYPE_TREASURE_TABLE": 18, - "LOOT_TYPE_ARENA_POINTS": 19, - "LOOT_TYPE_ARENA_BONUS_POINTS": 20, - "LOOT_TYPE_GROUP": 21, - "LOOT_TYPE_FISHING_XP": 22, - "LOOT_TYPE_EVENT_CURRENCY_1": 24, - "LOOT_TYPE_EVENT_CURRENCY_2": 25, - "LOOT_TYPE_PVP_CURRENCY": 26, - "LOOT_TYPE_PVP_CURRENCY_BONUS": 27, - "LOOT_TYPE_PVP_TOURNEY_CURRENCY": 28, - "LOOT_TYPE_PVP_TOURNEY_CURRENCY_BONUS": 29, - "LOOT_TYPE_FURNITURE_ESSENCE": 30 - } - }, - "m_spellName": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 268435487, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2688485244, - "enum_options": { - "__BASECLASS": "SpellTemplate" - } - }, - "m_internalName": { - "type": "std::string", - "id": 2, - "offset": 112, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1924993817 - }, - "m_spellID": { - "type": "unsigned int", - "id": 3, - "offset": 144, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1697483258 - } - } - }, - "526987603": { - "name": "class TieredSpellManager*", - "bases": [ - "PropertyClass" - ], - "hash": 526987603, - "properties": { - "m_tieredSpellConfig": { - "type": "class SharedPointer", - "id": 0, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": true, - "pointer": true, - "hash": 2945256819 - } - } - }, - "135264059": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 135264059, - "properties": { - "m_assetName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513131580 - }, - "m_assetPlaybackTime": { - "type": "float", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1640179405 - } - } - }, - "1713175518": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1713175518, - "properties": { - "m_locations": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2663343121 - }, - "m_bIsMinigameLoot": { - "type": "bool", - "id": 1, - "offset": 88, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1122496566 - }, - "m_bIsFishingLoot": { - "type": "bool", - "id": 2, - "offset": 89, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1595567415 - }, - "m_bIsMonstrologyHouseGuest": { - "type": "bool", - "id": 3, - "offset": 90, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1974190378 - }, - "m_sUrl": { - "type": "std::string", - "id": 4, - "offset": 96, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1717526561 - } - } - }, - "527896511": { - "name": "class SharedPointer", - "bases": [ - "CinematicStageTemplate", - "PropertyClass" - ], - "hash": 527896511, - "properties": { - "m_name": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1717359772 - }, - "m_duration": { - "type": "float", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 920323453 - }, - "m_actions": { - "type": "class SharedPointer", - "id": 2, - "offset": 112, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1380578687 - }, - "m_stageRelationships": { - "type": "class SharedPointer", - "id": 3, - "offset": 128, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 499983354 - } - } - }, - "1305521051": { - "name": "class GameEffectTemplate*", - "bases": [ - "PropertyClass" - ], - "hash": 1305521051, - "properties": { - "m_effectName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2029161513 - }, - "m_effectCategory": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1852673222 - }, - "m_sortOrder": { - "type": "int", - "id": 2, - "offset": 148, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1411218206 - }, - "m_duration": { - "type": "double", - "id": 3, - "offset": 192, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2727932435 - }, - "m_stackingCategories": { - "type": "std::string", - "id": 4, - "offset": 160, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1774497525 - }, - "m_isPersistent": { - "type": "bool", - "id": 5, - "offset": 153, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 923861920 - }, - "m_bIsOnPet": { - "type": "bool", - "id": 6, - "offset": 154, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 522593303 - }, - "m_isPublic": { - "type": "bool", - "id": 7, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1728439822 - }, - "m_visualEffectAddName": { - "type": "std::string", - "id": 8, - "offset": 200, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3382086694 - }, - "m_visualEffectRemoveName": { - "type": "std::string", - "id": 9, - "offset": 232, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1541697323 - }, - "m_onAddFunctorName": { - "type": "std::string", - "id": 10, - "offset": 280, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1561843107 - }, - "m_onRemoveFunctorName": { - "type": "std::string", - "id": 11, - "offset": 312, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2559017864 - }, - "m_stackingRule": { - "type": "enum STACKING_RULE", - "id": 12, - "offset": 144, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 431568889, - "enum_options": { - "STACKING_ALLOWED": 0, - "STACKING_NOSTACK": 1, - "STACKING_REPLACE": 2 - } - } - } - }, - "135649998": { - "name": "class EquipmentSetList", - "bases": [ - "PropertyClass" - ], - "hash": 135649998, - "properties": { - "m_equipmentSetList": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1788831224 - } - } - }, - "2106911931": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 2106911931, - "properties": { - "m_name": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1717359772 - }, - "m_loadScreenOverride": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1633906299 - }, - "m_transInSoundOverride": { - "type": "std::string", - "id": 2, - "offset": 120, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2697765027 - }, - "m_transOutSoundOverride": { - "type": "std::string", - "id": 3, - "offset": 152, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2103733028 - }, - "m_id": { - "type": "unsigned int", - "id": 4, - "offset": 184, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2301988666 - } - } - }, - "135530999": { - "name": "class SharedPointer", - "bases": [ - "GameEffectInfo", - "PropertyClass" - ], - "hash": 135530999, - "properties": { - "m_effectName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2029161513 - }, - "m_minionType": { - "type": "enum MinionType", - "id": 1, - "offset": 104, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3186373083, - "enum_options": { - "MT_NONE": 0, - "MT_ACCOMPANY": 1, - "MT_MINION": 2, - "MT_MONSTER": 3 - } - }, - "m_summonedTemplateID": { - "type": "int", - "id": 2, - "offset": 108, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1109386027 - } - } - }, - "529931976": { - "name": "class SharedPointer", - "bases": [ - "DerbyModifyPetStat", - "DerbyEffect", - "PropertyClass" - ], - "hash": 529931976, - "properties": { - "m_buffType": { - "type": "enum DerbyTalentBuffType", - "id": 0, - "offset": 92, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1149251982, - "enum_options": { - "Buff": 0, - "Debuff": 1, - "Neither": 2 - } - }, - "m_kTarget": { - "type": "enum DerbyTargetType", - "id": 1, - "offset": 96, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1807803351, - "enum_options": { - "kTargetInFront": 0, - "kTargetBehind": 1, - "kTargetFirst": 2, - "kTargetSelf": 3, - "kTargetAll": 4, - "kTargetLast": 5 - } - }, - "m_nDuration": { - "type": "int", - "id": 2, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1110167982 - }, - "m_effectID": { - "type": "unsigned int", - "id": 3, - "offset": 88, - "flags": 24, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2347630439 - }, - "m_imageFilename": { - "type": "std::string", - "id": 4, - "offset": 112, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2813328063 - }, - "m_iconIndex": { - "type": "unsigned int", - "id": 5, - "offset": 144, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1265133262 - }, - "m_soundOnActivate": { - "type": "std::string", - "id": 6, - "offset": 152, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1956929714 - }, - "m_soundOnTarget": { - "type": "std::string", - "id": 7, - "offset": 184, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3444214056 - }, - "m_targetParticleEffect": { - "type": "std::string", - "id": 8, - "offset": 216, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3048234723 - }, - "m_overheadMessage": { - "type": "std::string", - "id": 9, - "offset": 248, - "flags": 8388639, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1701018190 - }, - "m_requirements": { - "type": "class RequirementList", - "id": 10, - "offset": 280, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2840988582 - }, - "m_mods": { - "type": "class PetStatModificationSet", - "id": 11, - "offset": 376, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 686212266 - } - } - }, - "2105438324": { - "name": "class ClassProjectLeaderboardPlayer*", - "bases": [ - "PropertyClass" - ], - "hash": 2105438324, - "properties": { - "m_playerGID": { - "type": "gid", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 578537369 - }, - "m_packedName": { - "type": "unsigned int", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 518911062 - }, - "m_points": { - "type": "unsigned int", - "id": 2, - "offset": 84, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1049128778 - } - } - }, - "533306322": { - "name": "class ClientPlayerAggroBehavior*", - "bases": [ - "PlayerAggroBehavior", - "AggroBehavior", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 533306322, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - } - } - }, - "136475272": { - "name": "class SharedPointer", - "bases": [ - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 136475272, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - }, - "m_stringTableEntry": { - "type": "std::string", - "id": 2, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2181170604 - } - } - }, - "532956719": { - "name": "class SharedPointer", - "bases": [ - "PetTalentControlBase", - "Window", - "PropertyClass" - ], - "hash": 532956719, - "properties": { - "m_sName": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306437263 - }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 65667, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621225959 - }, - "m_Style": { - "type": "unsigned int", - "id": 2, - "offset": 152, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "SCALE_CHILDREN": 2, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "FOCUS_LOCKED": 64, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152 - } - }, - "m_Flags": { - "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } - }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3105139380 - }, - "m_fTargetAlpha": { - "type": "float", - "id": 5, - "offset": 212, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1809129834 - }, - "m_fDisabledAlpha": { - "type": "float", - "id": 6, - "offset": 216, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1389987675 - }, - "m_fAlpha": { - "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 482130755 - }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3623628394 - }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2102211316 - }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1846695875 - }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3389835433 - }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2547159940 - }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2587533771 - }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3091503757 - } - } - }, - "2107352090": { - "name": "class SharedPointer", - "bases": [ - "FishingBehaviorBase", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 2107352090, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_caughtFishList": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 1, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2107365240 - }, - "m_fishHistoryList": { - "type": "class SharedPointer", - "id": 2, - "offset": 128, - "flags": 1, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 3741999493 - } - } - }, - "135748302": { - "name": "class EquipmentSetList*", - "bases": [ - "PropertyClass" - ], - "hash": 135748302, - "properties": { - "m_equipmentSetList": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1788831224 - } - } - }, - "533694498": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 533694498, - "properties": {} - }, - "2108320692": { - "name": "class ZoneInstanceFish", - "bases": [ - "PropertyClass" - ], - "hash": 2108320692, - "properties": { - "m_zoneNameID": { - "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1230021335 - }, - "m_time": { - "type": "unsigned int", - "id": 1, - "offset": 76, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 431286940 - }, - "m_buffer": { - "type": "std::string", - "id": 2, - "offset": 80, - "flags": 551, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1794528949 - } - } - }, - "137272553": { - "name": "class SharedPointer", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 137272553, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_lotInstanceGID": { - "type": "gid", - "id": 1, - "offset": 120, - "flags": 33554495, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2010711536 - }, - "m_streetAddress": { - "type": "int", - "id": 2, - "offset": 112, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1809670519 - }, - "m_transferCoolDownTime": { - "type": "unsigned int", - "id": 3, - "offset": 128, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1616830022 - } - } - }, - "2108017200": { - "name": "class ElixirBenefitEffect*", - "bases": [ - "GameEffectBase", - "PropertyClass" - ], - "hash": 2108017200, - "properties": { - "m_currentTickCount": { - "type": "double", - "id": 0, - "offset": 80, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2533274692 - }, - "m_effectNameID": { - "type": "unsigned int", - "id": 1, - "offset": 96, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1204067144 - }, - "m_bIsOnPet": { - "type": "bool", - "id": 2, - "offset": 73, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 522593303 - }, - "m_originatorID": { - "type": "gid", - "id": 3, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1131810019 - }, - "m_itemSlotID": { - "type": "unsigned int", - "id": 4, - "offset": 112, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1895747595 - }, - "m_internalID": { - "type": "int", - "id": 5, - "offset": 92, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1643137924 - }, - "m_endTime": { - "type": "unsigned int", - "id": 6, - "offset": 88, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 716479635 - }, - "m_flags": { - "type": "unsigned int", - "id": 7, - "offset": 128, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1005801050 - } - } - }, - "533865576": { - "name": "class SharedPointer", - "bases": [ - "WindowStyle", - "PropertyClass" - ], - "hash": 533865576, - "properties": { - "m_pBackMaterial": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1628562023 - }, - "m_pFont": { - "type": "class SharedPointer", - "id": 1, - "offset": 88, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1067686307 - }, - "m_pLargeFont": { - "type": "class SharedPointer", - "id": 2, - "offset": 104, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1523900782 - }, - "m_pSmallFont": { - "type": "class SharedPointer", - "id": 3, - "offset": 120, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2363252956 - }, - "m_Color": { - "type": "class Color", - "id": 4, - "offset": 136, - "flags": 262279, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1753714077 - }, - "m_HighColor": { - "type": "class Color", - "id": 5, - "offset": 140, - "flags": 262279, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2310527421 - }, - "m_SelectColor": { - "type": "class Color", - "id": 6, - "offset": 144, - "flags": 262279, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2792529213 - }, - "m_BorderColor": { - "type": "class Color", - "id": 7, - "offset": 148, - "flags": 262279, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1470576795 - }, - "m_BackColor": { - "type": "class Color", - "id": 8, - "offset": 152, - "flags": 262279, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1070928782 - }, - "m_ScrollBarColor": { - "type": "class Color", - "id": 9, - "offset": 156, - "flags": 262279, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1180747361 - }, - "m_ScrollTabColor": { - "type": "class Color", - "id": 10, - "offset": 160, - "flags": 262279, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1034892323 - }, - "m_nBorderSize": { - "type": "int", - "id": 11, - "offset": 164, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2016376897 - }, - "m_nScrollSize": { - "type": "int", - "id": 12, - "offset": 168, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 632681746 - }, - "m_sHoverSound": { - "type": "std::string", - "id": 13, - "offset": 176, - "flags": 131207, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2662773595 - }, - "m_sSelectSound": { - "type": "std::string", - "id": 14, - "offset": 208, - "flags": 131207, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2596786807 - }, - "m_pVMiddle": { - "type": "class SharedPointer", - "id": 15, - "offset": 248, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1896076876 - }, - "m_pVSliderTop": { - "type": "class SharedPointer", - "id": 16, - "offset": 264, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1590678131 - }, - "m_pVSliderMiddle": { - "type": "class SharedPointer", - "id": 17, - "offset": 280, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1981605647 - }, - "m_pVSliderBottom": { - "type": "class SharedPointer", - "id": 18, - "offset": 296, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1558824373 - }, - "m_pVUpButton": { - "type": "class SharedPointer", - "id": 19, - "offset": 312, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3584564972 - }, - "m_pVDownButton": { - "type": "class SharedPointer", - "id": 20, - "offset": 328, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2411725119 - }, - "m_pHLeftArrow": { - "type": "class SharedPointer", - "id": 21, - "offset": 344, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3168852677 - }, - "m_pHRightArrow": { - "type": "class SharedPointer", - "id": 22, - "offset": 360, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1981350104 - }, - "m_pHMiddle": { - "type": "class SharedPointer", - "id": 23, - "offset": 376, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3142878142 - }, - "m_pHSliderLeft": { - "type": "class SharedPointer", - "id": 24, - "offset": 392, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1553456157 - }, - "m_pHSliderMiddle": { - "type": "class SharedPointer", - "id": 25, - "offset": 408, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2666160641 - }, - "m_pHSliderRight": { - "type": "class SharedPointer", - "id": 26, - "offset": 424, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1592154800 - }, - "m_nScrollButtonDelta": { - "type": "int", - "id": 27, - "offset": 240, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1455137917 - } - } - }, - "2107749374": { - "name": "class EventCurrency2LootInfo", - "bases": [ - "LootInfo", - "LootInfoBase", - "PropertyClass" - ], - "hash": 2107749374, - "properties": { - "m_lootType": { - "type": "enum LootInfo::LOOT_TYPE", - "id": 0, - "offset": 72, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1591891442, - "enum_options": { - "LOOT_TYPE_NONE": 0, - "LOOT_TYPE_GOLD": 1, - "LOOT_TYPE_MANA": 2, - "LOOT_TYPE_ITEM": 3, - "LOOT_TYPE_TREASURE_CARD": 4, - "LOOT_TYPE_MAGIC_XP": 5, - "LOOT_TYPE_ADD_SPELL": 6, - "LOOT_TYPE_MAX_HEALTH": 7, - "LOOT_TYPE_MAX_GOLD": 8, - "LOOT_TYPE_MAX_MANA": 9, - "LOOT_TYPE_MAX_POTION": 10, - "LOOT_TYPE_TRAINING_POINTS": 11, - "LOOT_TYPE_RECIPE": 12, - "LOOT_TYPE_CRAFTING_SLOT": 13, - "LOOT_TYPE_REAGENT": 14, - "LOOT_TYPE_PETSNACK": 15, - "LOOT_TYPE_GARDENING_XP": 16, - "LOOT_TYPE_PET_XP": 17, - "LOOT_TYPE_TREASURE_TABLE": 18, - "LOOT_TYPE_ARENA_POINTS": 19, - "LOOT_TYPE_ARENA_BONUS_POINTS": 20, - "LOOT_TYPE_GROUP": 21, - "LOOT_TYPE_FISHING_XP": 22, - "LOOT_TYPE_EVENT_CURRENCY_1": 24, - "LOOT_TYPE_EVENT_CURRENCY_2": 25, - "LOOT_TYPE_PVP_CURRENCY": 26, - "LOOT_TYPE_PVP_CURRENCY_BONUS": 27, - "LOOT_TYPE_PVP_TOURNEY_CURRENCY": 28, - "LOOT_TYPE_PVP_TOURNEY_CURRENCY_BONUS": 29, - "LOOT_TYPE_FURNITURE_ESSENCE": 30 - } - }, - "m_eventCurrency2Amount": { - "type": "int", - "id": 1, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 89898381 - } - } - }, - "137692482": { - "name": "enum Duel::SigilInitiativeSwitchMode", - "bases": [], - "hash": 137692482, - "properties": {} - }, - "535318572": { - "name": "class AdvPvPLeagueAwardInfo", - "bases": [ - "PropertyClass" - ], - "hash": 535318572, - "properties": { - "m_leagueType": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3327951024 - }, - "m_awardInfo": { - "type": "class SharedPointer", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2862912855 - } - } - }, - "2108222388": { - "name": "class ZoneInstanceFish*", - "bases": [ - "PropertyClass" - ], - "hash": 2108222388, - "properties": { - "m_zoneNameID": { - "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1230021335 - }, - "m_time": { - "type": "unsigned int", - "id": 1, - "offset": 76, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 431286940 - }, - "m_buffer": { - "type": "std::string", - "id": 2, - "offset": 80, - "flags": 551, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1794528949 - } - } - }, - "139831373": { - "name": "class RecreateNPCActorCinematicAction*", - "bases": [ - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 139831373, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - } - } - }, - "534109625": { - "name": "class ClientWizPlayerNameBehavior*", - "bases": [ - "NameOverrideBehavior", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 534109625, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_wsNameOverride": { - "type": "std::wstring", - "id": 1, - "offset": 120, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2131249091 - }, - "m_nameKeys": { - "type": "unsigned int", - "id": 2, - "offset": 352, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1772225898 - }, - "m_useRank": { - "type": "bool", - "id": 3, - "offset": 356, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2040475372 - }, - "m_eGender": { - "type": "enum eGender", - "id": 4, - "offset": 432, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2776344943, - "enum_options": { - "Male": 1, - "Female": 0, - "Neutral": 2 - } - }, - "m_eRace": { - "type": "enum eRace", - "id": 5, - "offset": 436, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 963057554, - "enum_options": { - "Bat": 88066, - "BatLightning": 1472842576, - "Boar": 2624962, - "CatThug": 1855674386, - "ChristmasElf": 819908552, - "ChristmasSnowman": 1146515225, - "Colossus_Ice": 1063279538, - "Cyclops": 1691813655, - "DragonBeta": 417003588, - "DragonFriendly": 69049013, - "EvilSnowman": 1579630926, - "FireElf": 443793687, - "Firecat": 2045525741, - "Frog": 2274918, - "FrostBeetle": 7692383, - "GhostBlue": 1097396892, - "GhostGreen": 882822629, - "GhostRed": 560510742, - "GhostYellow": 909974358, - "Ghoul": 82556199, - "GoatMonk": 486215564, - "GolemBrass": 1057388325, - "GolemClockwork": 1143380031, - "GolemSteel": 1660583674, - "GolemWood": 1426849876, - "HalloweenCat": 1042869199, - "Heckhound": 626736403, - "Helephant": 719065368, - "Human": 79806088, - "Hydra": 70785800, - "Imp": 84361, - "Krokomummy": 555755242, - "Kroktut": 1352354178, - "Leprechaun": 2106466410, - "LeprechaunPattyDay": 380507781, - "LightningBat": 228257682, - "Mannequin": 428442544, - "Minotaur": 949570680, - "Mount_Broom": 94637995, - "Mount_Cat": 1150940211, - "Mount_Dragon": 1565720148, - "Mount_Horse": 2054712767, - "Mount_PlayerWings": 589829552, - "Nikkos": 1563122418, - "NinjaPig": 607400740, - "Orthus": 1552590225, - "Piggle": 1897753328, - "Piggle_Valentine": 687697592, - "Piggle_ValentinePart2": 1760391091, - "Pixie": 74836240, - "RatMagician": 885542120, - "SalamanderFire": 48480175, - "SalamanderIce": 2011152164, - "SalamanderStorm": 600331072, - "Satyr": 84793363, - "Scarab": 2143810477, - "Sheep": 86220083, - "SkeletonArmored": 1791586239, - "SnowSerpent": 138621543, - "Spider": 1603064269, - "SpiderBlack": 559353179, - "SpiderBrown": 557941675, - "SpiderCrystal": 2119625297, - "SpiderGolem": 1632616514, - "Sprite": 1889156557, - "SpriteDark": 1888685518, - "Stormzilla": 252684095, - "SunBird": 1602211198, - "Transformation_ArmoredSkeleton": 1861349834, - "Transformation_CatThug": 1175387611, - "Transformation_Cat_Bandit": 1012395694, - "Transformation_ClockworkGolem": 601121214, - "Transformation_Cyclops": 620156297, - "Transformation_DarkFairy": 1206757203, - "Transformation_DraconianSorcerer": 1212016810, - "Transformation_Draconian": 450730089, - "Transformation_EarthColossus": 140119452, - "Transformation_EvilSnowman": 1497097122, - "Transformation_FatGobbler": 634003800, - "Transformation_FireElemental": 822233230, - "Transformation_FireElf": 46585468, - "Transformation_FireSalamander": 2118418114, - "Transformation_Gobbler_Skinny": 162365207, - "Transformation_GolemSteel": 1329184184, - "Transformation_Ice_Colossus": 430406408, - "Transformation_Krokomummy": 1644615769, - "Transformation_MagmaMan": 545064542, - "Transformation_Mander": 88998828, - "Transformation_NinjaPig": 1029132174, - "Transformation_Ninja_Pig_04": 7093548, - "Transformation_RatThug": 1175352795, - "Transformation_RavenMystic": 1443197359, - "Transformation_StormElemental": 637088511, - "Transformation_Treant": 1874998327, - "Transformation_WarPig": 691088645, - "Transformation_WolfScout": 263523463, - "Transformation_WolfWarrior": 6092463, - "Transformationn_SkeletonPirate": 1821341863, - "Treant": 1396597132, - "Troll": 82261620, - "Unicorn": 550546918, - "Unknown": 718677478, - "Wolverine": 528843083, - "Wraith": 1788506505, - "Wyrmkin": 379044612, - "Transformation_CyrusDrake": 94277831, - "PetEgg": 1973167984, - "GhostLady": 493415959, - "Banshee": 827805677, - "GobblerRed": 250135875, - "Ghoul_Gravedigger": 161812468, - "SkeletonWarrior": 734585814, - "BansheeBoss": 806445565, - "Seraph": 1792950125, - "CrabKing": 277875784, - "UndeadCaster": 1680689397, - "DragonFrontier": 1829438301, - "HeckhoundGhost": 872406464, - "Mount_Unicorn": 212699468, - "Jellyfish": 910724608, - "SeaDragon": 1194541306, - "Turtle": 1897184620, - "Starfish": 1447562471, - "SpinyFish": 162948281, - "Mount_Gryphon": 2110522960, - "Mount_Shark": 1170186623, - "Mount_Manta": 979931598, - "Mount_Seahorse": 1554833818, - "Mount_Seahorse_Tough": 1245859453, - "Mount_Koi": 1150937409, - "Mount_Lobster": 2025618875, - "Mount_Turtle": 1490849128, - "VenusFlyTrap": 1612039757, - "GDN_MED_BabyCarrots": 327334743, - "GDN_SM_BoomShroom": 31324632, - "GDN_SM_Dandelion": 2058674142, - "GDN_SM_Disparagus": 1732989489, - "GDN_MED_EvilSnowPeas": 747408607, - "GDN_SM_FicklePickle": 205381955, - "GDN_SM_HappyHolidaisy": 1736236340, - "GDN_MED_HelephantEars": 1803669659, - "GDN_MED_HoneySickle": 424149132, - "GDN_LG_NinjaFig": 847338104, - "GDN_LG_SnapDragon": 1076151689, - "GDN_SM_StinkWeed": 845383431, - "GDN_MED_TrumpetVine": 1922690264, - "GDN_MED_VenusFlyTrap": 1560899638, - "GDN_SM_Laughodil": 1278979588, - "GDN_LG_BreadFruitBush": 533042934, - "GDN_MED_PricklyBearCactus": 1236846986, - "GDN_MED_KingParsley": 110148182, - "LeprechaunPatriotic": 414730890, - "SeraphYuletide": 1325846853, - "DragonGhost": 1502126893, - "UnicornNightmare": 604358256, - "EvilSnowmanSandman": 1579432150, - "Colossus_Spirit": 422514215, - "Rock": 2393554, - "GDN_MED_GivingTree": 2047236132, - "Egg": 70853, - "Mount_Carpets": 1602744888, - "Kraken": 1737191829, - "Wyvern": 1727802601, - "Phoenix": 1765559002, - "Judgement": 562901781, - "ForestLord": 1390734923, - "Humongofrog": 1272123051, - "Scarecrow": 41441599, - "Mount_Ram": 77196599, - "BasketSnake": 1835657086, - "Samoorai": 522797493, - "Transformation_RavenWarrior": 701169336, - "PhoenixStorm": 1325268802, - "PhoenixDeath": 1281634042, - "GDN_LG_CouchPotatoes": 879742725, - "GDN_MED_KeyLimes": 811516024, - "Mount_BoneDragon": 1023618313, - "Mount_BigBoneDragon": 1124383680, - "Mount_FairyWings": 1904926612, - "Mount_DragonWings": 755225925, - "Mount_Pegasus": 1621244140, - "GDN_MED_BellPepper": 1710238687, - "GDN_MED_GrapesOfWrath": 1068787103, - "GDN_SM_TigerLily": 1899057048, - "WysteriaPiggle": 49173891, - "Mount_Wyvern": 1658410744, - "Mount_2P_Rhino": 1052779475, - "NightHawk": 358964390, - "Giraffe": 935214826, - "Mount_Hawk": 2070898895, - "Mount_HalloweenNightmare": 726136378, - "GobblerHalloween": 1482399836, - "Leopard": 1606863715, - "Skink": 76950867, - "Mount_Ostrich": 466111322, - "Mount_Crocagator": 1981222087, - "Transformation_Blacktusk-01": 401543565, - "Mount_Hippogriff": 2043817624, - "Transformation_Gorilla-01": 1555853240, - "Transformation_Gorilla-02": 1606184888, - "Mount_Raven": 94983735, - "Mount_Chrismoose": 1822495199, - "Mount_CandyCane": 1148551147, - "Ivy_League": 925492799, - "GDN_MED_Ivy_League": 1630077794, - "Mount_Kirin": 1168691825, - "GDN_SM_Moonflower": 2068754330, - "GDN_MED_BoonTree": 788055729, - "Snowball": 2046118016, - "Foo_Dog": 1549710807, - "ShenlongDragon": 932676736, - "Monkey": 1233866291, - "Wolfhound": 626884686, - "Redcap": 1540319086, - "Raven": 79941650, - "HollowKnight": 1107268274, - "Book": 2405826, - "GDN_MED_AngoraBunnyEars": 1547559854, - "GDN_MED_FortuneCookieTree": 786686214, - "GDN_MED_GooseTree": 809354938, - "GDN_SM_HoneyBeePlant": 1528880373, - "GDN_MED_BambooShoots": 1096708900, - "GDN_SM_Huckleberries": 1937475840, - "Rock_Moustache": 962221287, - "Efreet_Myth": 1834555522, - "Efreet": 1401700123, - "Mammoth": 1395147745, - "Triton": 1730466188, - "Gnome": 74954215, - "BoneDragon": 429245206, - "Basilisk": 1457899086, - "Chimera": 529027789, - "Transformation_GammaTemplate": 1337834518, - "Mount_Camel": 1168198963, - "Mount_RenaissanceWings": 1049782088, - "Bull_Mount": 1713506759, - "Mount_Owl": 1150938242, - "Mount_Alphyn": 487264165, - "Mount_Stag": 1150353823, - "Mount_Auroch": 509865325, - "Mount_Warg": 1150358072, - "StrangeBeast": 511334734, - "Efreet_Ice": 1820009122, - "Efreet_Storm": 1269986674, - "GDN_LG_AlligatorPear": 1293913372, - "Mount_2P_Treant": 928450863, - "Mount_2P_Dragon": 1431637933, - "Mount_Pogo_Stick_WC": 1462849298, - "Mount_Pogo_Stick_MB": 1349603090, - "GDN_LG_MeltingCheese": 1914589015, - "GDN_SM_FishOnAVine": 1734955358, - "GDN_LG_AngelOak": 1539539424, - "GDN_LG_MeltingCheese_Angel": 1254781264, - "SnowyOwl": 1682262138, - "Mount_3P_Hydra": 1207475250, - "WeaselMinstrel": 1541234616, - "MOUNT_Rickshaw": 938282973, - "Transformation_Sherlock-Bones": 509126601, - "Mount_Phoenix": 556355452, - "Toaddle": 597488187, - "Pantera": 528797696, - "WildfireTreant": 673362041, - "StoneTiger": 746336665, - "Blowfish": 1447737334, - "Smith": 78327187, - "FlyingCat": 1254472614, - "RamWarrior": 536916302, - "Ladybug": 1846384669, - "BurlapBoy": 607590898, - "DeerKnight": 560802130, - "Gargoyle": 1227701700, - "Chameleon": 596131510, - "Scorpion": 1462253104, - "GDN_SM_BoiledPeanuts": 544885684, - "GDN_SM_ClockFlower": 676513046, - "GDN_SM_DeadBeets": 650783482, - "GDN_MED_SnowApple": 1916648180, - "Eyecaramba_Violet": 1804780775, - "Eyecaramba_Green": 750346574, - "Eyecaramba_Orange": 687614854, - "Piggle_Grandfather": 131445665, - "Velociraptor": 1042311818, - "Babydactyl": 1180982194, - "Stegosaurus": 476811765, - "Mount_Pegasus_Spectral": 948250730, - "Mount_2P_Scarydactyl": 1808983335, - "Mount_2P_TRex": 1495851852, - "Therizinosaurus": 80337863, - "Runtosaurus": 476200406, - "FrilledLizard": 420993517, - "Mount_Ankylosaurus": 669692274, - "Mount_Triceratops": 1126950204, - "Mount_2P_Glider": 1630365881, - "Transformation_Thunderhorn": 1045262037, - "Transformation_Jaguar": 1080966062, - "Transformation_Pteranadon": 273836142, - "Transformation_ShadowWeaver": 255927111, - "Transformation_EagleWarrior": 1880471875, - "Mount_Falalalallama": 389890123, - "Mount_2P_WinterTreant": 1850265056, - "GDN_LG_MissileToe": 1767792974, - "GDN_MED_PointSetta": 647257205, - "Nutcracker2012": 1598217699, - "Coal2012": 1627852119, - "Mount_Sleigh": 1636615519, - "Mount_Sabertooth": 1613031507, - "Mount_MechanicalWings": 1014917438, - "PiranhaHunter": 686271163, - "Quetzal": 2020925822, - "Mount_Sloth": 1169387359, - "HollowKnightLife": 2114081886, - "BettaFish": 138088968, - "MummyCat": 62372925, - "TrojanHorse": 1725299194, - "WC_Storm_Possessed": 186960228, - "AV_Possessed": 1106693085, - "AZ_Possessed": 1106692701, - "CL_Possessed": 1106692255, - "KT_Possessed": 1106693015, - "MS_Possessed": 1106692977, - "WC_Possessed": 1106692459, - "Mount_2P_Whale": 448824263, - "Mount_2P_Chariot": 88035298, - "Mount_WarBoar": 1159836211, - "Mount_Palanquin": 47587550, - "BearCub": 672664722, - "Transformation_Minotaur": 1454233452, - "DragonGauntlet": 797645257, - "DeathUnicorn": 924144161, - "Flamingo": 1488424911, - "Mount_Gorilla": 1939919432, - "Mount_WarUnicorn": 1361393198, - "GargoyleMyth": 1819685060, - "TikiMan": 16098567, - "Siren": 79937811, - "GoldenRam": 410220227, - "Harpy": 96026632, - "SwordShield": 1668411785, - "ClockworkKnight": 1059948980, - "Mount_MechanicalEagle": 1720948645, - "Mount_Cloud": 1166233435, - "Mount_Surfboard": 1914250039, - "Mount_BetaDragon": 1023653721, - "Mount_BeeWings": 1387988401, - "Vampire": 524731385, - "FrankenBunny": 589797989, - "BumbleBee": 249592226, - "Mount_Dragonfly": 1028843656, - "BronzeGolem": 1320867859, - "TarantulaHawk": 1983939429, - "Mount_Grasshopper": 1852850928, - "FlyingSquirrel": 847551166, - "GDN_MED_Sunion": 1652707634, - "GDN_MED_SwordFern": 548761438, - "GDN_SM_SugarKhrystal": 267539461, - "GDN_SM_SawPalmetto": 1892888046, - "GDN_LG_FacePalm": 2050814140, - "GDN_LG_QueenCrapeMyrtle": 80378450, - "Transformation_ShadowTank": 1304943609, - "Transformation_ShadowHeal": 1254024185, - "Transformation_ShadowDPS": 87276537, - "Mount_Noelephant": 1383672248, - "SaintBernard": 572932242, - "ParkaFox": 2009808189, - "Goose": 75019719, - "Mount_Coconut": 791151432, - "CreepyBeetle": 345594179, - "BabyDragonfly": 1367084335, - "FennecFox": 41315063, - "PP_Leviathan": 833901526, - "PP_SunSerpent": 1062677009, - "PP_LordOfWinter": 960214698, - "PP_Medusa": 867812931, - "PP_Dryad": 147654656, - "PP_AvengingFossil": 315904647, - "PP_Sabertooth": 1799146677, - "Mount_Butterfly": 1283940943, - "Mount_Hare": 2070851023, - "Transformation_MorganthB": 197306990, - "Transformation_MorganthC": 197831278, - "Transformation_MorganthD": 200452718, - "BabyPegasus": 1215000859, - "ArcaneHelp": 1899247549, - "Mount_Vines": 98389624, - "Mount_ArcaneMinecart": 2001270930, - "Hobgoblin": 2133668461, - "Mount_2P_Rowboat": 237071469, - "ForestSpirit": 1178454602, - "Mount_SpiritWolf": 531991076, - "Otter": 84138671, - "OrigamiBird": 550984083, - "DinoSkeletal": 233277835, - "Mount_HarrowingsGreen": 1605746772, - "Mount_HarrowingsBlue": 477152436, - "Mount_HarrowingsPurple": 2092807554, - "RedPanda": 1744233845, - "Ibis": 2665577, - "Corgi": 78823875, - "Mount_Yak": 996545739, - "Mount_FlyingBalance": 436519643, - "Transformation_ShadowMalistaire": 1043814435, - "Transformation_DragonMalistaire": 841867699, - "Mount_Scarab": 1687658791, - "Transformation_MisterHound": 1973578844, - "Mount_BahHumbug": 55114077, - "Skates": 1568993965, - "Moose": 75019725, - "Mount_Gargoyle": 1456663874, - "GDN_MED_VenusFlyTrapEpic": 1594069606, - "Mount_PlayerWingsPink": 19403046, - "GDN_LG_AlligatorPearEpic": 1326804812, - "Pet_Armadillo": 825736847, - "Mount_JoustingDestrierDyeable": 1683448768, - "GDN_MED_VampireCarrots": 871596496, - "GDN_SM_WhiteTigerLilyEpic": 1703271434, - "GDN_LG_NinjaFigEpic": 938504823, - "GDN_LG_SnapDragonEpic": 2071674466, - "GDN_MED_HelephantEarsEpic": 719166107, - "GDN_MED_TrumpetVineEpic": 225854518, - "GDN_SM_DandelionEpic": 728637442, - "GDN_SM_HuckleberriesEpic": 1903258448, - "GDN_MED_SnowAppleEpic": 1231175967, - "GDN_SM_BoomShroomEpic": 981598771, - "GDN_MED_KingParsleyEpic": 2038371004, - "Mount_Raptor": 749695031, - "Pet_Toucan": 581477475, - "Pet_Squirrel": 969881395, - "Mount_WonkyDonkey": 1481657312, - "Mount_HawkPatriotic": 509149743, - "Pet_FrogAssistant": 1945041750, - "Mount_Cat2": 1151054899, - "Mount_Cat2BW": 1603515443, - "Pet_ArmadilloBW": 825733899, - "Pet_FrankieForearms": 1100195857, - "Mount_SolarSabre": 1281093703, - "MNT_MechOstrich": 258667969, - "MNT_BootsBalance": 1799191558, - "MNT_BootsDeath": 1034912971, - "MNT_BootsFire": 606061658, - "MNT_BootsIce": 2142643294, - "MNT_BootsLife": 773751898, - "MNT_BootsMyth": 144792486, - "MNT_BootsStorm": 1525245121, - "Pet_CorgiBirthday": 1951779369, - "OrigamiBirdBDay": 1909935955, - "Pet_FlyingBlackCat": 432111988, - "Mount_Narwhal": 449637834, - "Mount_NightOwl": 1648420845, - "Pet_Penguin": 137342907, - "MNT_PowerGemUnicorn": 411234062, - "Pet_CrystalButterfly": 512136094, - "Mount_BabyMammoth": 185831059, - "MNT_BabaYaga": 564874997, - "Pet_BabySeal": 657606984, - "Pet_BabyYeti": 635847496, - "Transformation_BallerinaBear": 1525333600, - "Mount_StagYuletide": 1508680687, - "Transformation_TitanMedium": 1700742736, - "Transformation_TitanLarge": 718614967, - "Pet_SirenIce": 849851564, - "Mount_FlyingDeath": 1717725588, - "Mount_FlyingFire": 1177216332, - "Mount_FlyingIce": 1238841184, - "Mount_FlyingLife": 433397684, - "Mount_FlyingMyth": 164983572, - "Mount_FlyingStorm": 375872049, - "Dragonling": 1730534849, - "Pet_EggChicken": 952873217, - "HeckhoundGhost_MAW": 893368960, - "Mount_WinterTrain": 751515281, - "Mount_RubberDucky": 1826548479, - "Pet_BansheeSpellwrit": 917979583, - "Pet_SamooraiSpellwrit": 370057597, - "Mount_UnicornAstral": 886914505, - "Guest_Boochbeard": 1958574095, - "Pet_MouseSister": 1267930350, - "Pet_MouseFather": 2010008339, - "Pet_VampireSquirrel": 250588691, - "Mount_CoffinCar": 1387606595, - "Mount_BabyElephant": 2026559639, - "Pet_RoadHog": 601156960, - "Mount_WolfGryphonWings": 543038283, - "MNT_ClockworkSteed": 891371132, - "Mount_Chopper": 1196683136, - "Pet_ButterflyLamb": 527214392, - "Pet_MouseMother": 2012687123, - "Pet_MouseBrother": 1174380856, - "Pet_Cherub": 769208559, - "GDN_SM_Jewel": 1104045832, - "MR_Death_Duncan_Grimwater": 1850289001, - "Mount_DesertRunner": 2049036229, - "Pet_MonkeyMirage": 418612892, - "Pet_ClockworkOwl": 1038482431, - "Pet_NinjaTurtle": 2024540686, - "Mount_Vines_Halloween": 82852149, - "Mount_SwarmBat": 1151836459, - "Mount_2P_NinjaDragon": 1239694057, - "Mount_Gobler": 1820615236, - "Mount_MaryleboneCar": 2027689685, - "JackOLantern": 1016361578, - "Transformation_DjinnCommonA_Balance": 996127128, - "Transformation_MedicineMode": 25960701, - "CactusHopper": 1956293007, - "Transformation_Mimic_ChestGold_A": 414145432, - "Mount_Ghoulture": 1067671195, - "Pet_Macaw": 1087278472, - "Pet_SandWorm": 653200803, - "Transformation_DromelDancer": 1071824116, - "Pet_Bunnies": 695874547, - "Mount_Snowboard": 1914380015, - "Transformation_DrommelDancer": 226294468, - "Mount_Carpet_New": 1618650322, - "Mount_BunnySleigh": 599915427, - "Helephant_Heart": 419161272, - "Mount_Snowboard_Holiday": 876339060, - "Transformation_GhostDog": 646575420, - "Transformation_PrinceGobblestone": 693826496, - "Transformation_Mithraya": 1240010601, - "Transformation_LuskaCharmbeak": 897469730, - "Transformation_YoungCyrusDrake": 15595663, - "Kookaburra": 1069759154, - "BorealisGolemPet": 797488492, - "FlyingEyePet": 505959833, - "StormCloudPet": 548463069, - "BullPet": 1993917801, - "OpossumPet": 284003652, - "GhoulturePet": 939920734, - "StormCloudPetB": 548463001, - "StormCloudPetC": 548463003, - "Guest_LordNightshade": 1221409981, - "BullPetB": 1993917561, - "BullPetC": 1993917553, - "BullPetD": 1993917513, - "Transformation_ShadowCrit": 1392195065, - "Mount_Pennyfarthing": 1551926344, - "Mount_RowboatPirate": 2079208803, - "Mount_IceCube": 1261861595, - "Guest_LostMaiden": 883675592, - "Guest_BoatswainMcGee": 1359750850, - "Guest_ChiefMateMcGurk": 329643845, - "Guest_DoomedBones": 2015643882, - "Guest_SpectreoftheBrocken": 266357448, - "Guest_DrownedKnight": 1100966093, - "Guest_TarntheDrowned": 329540205, - "Guest_DisloyalKnight": 1853240753, - "Guest_NamelessKnight": 1065677876, - "Guest_LambentFire": 489886605, - "Guest_LordoftheBrocken": 1662003371, - "Guest_StormCaiman": 1147500291, - "Guest_GrinningDeathMoon": 737595789, - "Guest_MoonSkullWight": 1720039490, - "Guest_HuemacSpearWreath": 1522021131, - "Guest_HowlingBanshee": 1340855338, - "Guest_Sea-Booter": 1818491983, - "Guest_DeadRover": 1009273257, - "Guest_CelestianRemnant": 1312268448, - "Guest_Shadow-WebConscript": 1500529411, - "Guest_Shadow-WebMercenary": 623672171, - "Guest_Shadow-WebWraith": 810956416, - "Guest_Shadow-WebHaunt": 500586883, - "Guest_CelestianPartisan": 633346892, - "Guest_CelestianDefender": 482102727, - "Guest_ThraleBonestriker": 1172972733, - "Guest_VorgenSoulbreaker": 1935693246, - "Guest_ServusBloodsword": 1703995647, - "Guest_QueenCalypso": 845803519, - "Guest_BlueBart": 77043390, - "Guest_KarolakNightspinner": 1008737316, - "Guest_ArachtusDuskweb": 1787750209, - "Guest_ZhalarStarcloud": 1453644105, - "Guest_NarallorNightborn": 1963363700, - "Guest_SelwynSkywatcher": 1413136893, - "Guest_OsseusNightreaver": 306827003, - "Guest_IrateBanshee": 865143109, - "Guest_FuriousHowler": 1607252558, - "Guest_CryingSpirit": 1559074820, - "Guest_UndeadDraconian": 169249571, - "Guest_ReanimatedDraconian": 247067807, - "Guest_GhastlySlave": 80127661, - "Guest_BoundSpecter": 369706568, - "Guest_NecroticHaunter": 1714841563, - "Guest_LoathsomeCreeper": 1087245229, - "Guest_FleshrotRetriever": 1925148031, - "Guest_BarbarianSpirit": 2112552732, - "Guest_BeghastionCrowcaller": 586628832, - "Guest_BeghastionFieldburner": 1650751959, - "Guest_BoneWarrior": 76802026, - "Guest_FleshlessSentry": 708431820, - "Guest_PirateRavager": 945157059, - "Guest_RottenScallywag": 974666855, - "Guest_ArmoredBonewalker": 1444568072, - "Guest_UndeadWizard": 1622435563, - "Guest_SoulSearcher": 2094392941, - "Guest_DecayingBlackguard": 412324062, - "Guest_FoulReaper": 919877614, - "Guest_NightShadow": 1675932226, - "Guest_MotleyCrew": 653779218, - "Guest_OrinGrimcaster": 472649066, - "Guest_GhostofSylviaDrake": 218332449, - "Guest_VikaMarkmaker": 1145181168, - "Guest_VasekAshweaver": 1001434369, - "Guest_FireWraith": 1027720368, - "Guest_HungrySoul": 1722435576, - "Guest_FrostBones": 456145606, - "Guest_SnowSkull": 835837850, - "Guest_WinterSkull": 1556601065, - "Guest_LothinDoombringer": 860995070, - "Guest_MimirWinterbane": 1111898070, - "Guest_KulgrimSoulsunder": 278037985, - "Guest_HitojiniDeathcaster": 1144499043, - "Guest_GaikotsuSkeleton": 1113949902, - "Guest_PhantomAce": 1917639347, - "Guest_PhantomGlider": 849918336, - "Guest_Krokomummy": 857773886, - "Guest_NiriniAncientGuard": 359313880, - "Guest_NiriniFireSpirit": 1863811476, - "Guest_VaultHaunter": 197723476, - "Guest_VigilantDefender": 171276829, - "Guest_WanderingAhnicSpirit": 1702865088, - "Guest_ForgottenDjeseritSoul": 1170568256, - "Guest_KaranahnDeathfeeder": 1612857711, - "Guest_ShamblingAhnic": 1579129677, - "Guest_RisenDjeserit": 287855500, - "Guest_KaranahnMortifier": 874288111, - "Guest_DjeseritDweller": 2058423665, - "Guest_AhnicStrider": 1776992302, - "Guest_GuardianoftheFang": 1816795524, - "Guest_DefenderoftheFang": 354353604, - "Guest_ProtectoroftheFang": 1290191037, - "Guest_SouloftheCharmed": 422890577, - "Guest_KaranahnKeeper": 77581557, - "Guest_NiriniIntimidator": 677205957, - "Guest_CondemnedSoldier": 449152244, - "Guest_NimahtheWicked": 1298248873, - "Guest_AkoriNirini": 1123159753, - "Guest_SoulScavenger": 892852198, - "Guest_KeeperoftheFang": 1676773499, - "Guest_ItennuSokkwi": 699159408, - "Guest_Tempestra": 334938435, - "Guest_QueenIrisiDjeserit": 1861434100, - "Guest_TheBonekeeper": 1302503449, - "Guest_CryptScavenger": 1893795791, - "Guest_Soulsapper": 1699756010, - "Guest_KingUroAhnic": 1788825731, - "Guest_KingShemetDjeserit": 1350067043, - "Guest_UnholyWraith": 1871146013, - "Guest_PikeSpiritcrusher": 498715531, - "Guest_SpellwritScreamer": 801626733, - "Guest_SpellwritRonin": 1671439174, - "Guest_Shrieker": 805966229, - "Guest_GravePhantom": 731622936, - "Guest_NightmareSpirit": 230709057, - "Guest_VengefulCreeper": 1100197884, - "Guest_TombRoamer": 1277825068, - "Guest_ShieldSkeleton": 1634270152, - "Guest_AgonyWraith": 30384496, - "Guest_IcyGhost": 768353592, - "Guest_Half-wittedSkeleton": 647996362, - "Guest_LazyHenchman": 1329554426, - "Guest_TiredFighter": 210248632, - "Guest_Screecher": 469007005, - "Guest_SeethingWraith": 664913100, - "Guest_ColdConfusion": 1304943934, - "Guest_OssuaryConscript": 1017667150, - "Guest_Ghulture": 1330558655, - "Guest_BodyGuard": 1048581801, - "Guest_SpectralGuardian": 422805602, - "Guest_VaultConscript": 1388398065, - "Guest_FootPatrol": 1692393321, - "Guest_ArmedGuard": 2045920536, - "Guest_Chilly": 1764665905, - "Guest_Achey": 973370519, - "Guest_Sneezy": 1769440773, - "Guest_Cough": 1170200073, - "Guest_Shadowbones": 1316133167, - "Guest_ForgottenConscript": 1466348281, - "Guest_BarracksGuardian": 236603440, - "Guest_CryptConscript": 314755436, - "Guest_DurvishSeeker": 1825622267, - "Guest_MedicineMode": 167015574, - "Guest_Myriarch2": 593881680, - "Guest_Myriarch3": 593881616, - "Guest_MyriarchEphialtes": 773531895, - "Guest_MotherGhulture": 1585201915, - "Guest_CaptainCosrow": 727107332, - "Guest_VizierRafaj": 214040637, - "Guest_DarkmoorSerf": 1522169114, - "Guest_DarkmoorSquire": 1822567109, - "Guest_ScarletWampyr": 1683954247, - "Guest_DraconianRevenant": 741497298, - "Guest_DraconianEidolon": 107733297, - "Guest_AnguishedWraith": 1078602022, - "Guest_DraconianPyromancer": 729577007, - "Guest_DraconianThaumaturge": 189734361, - "Guest_DraconianDiviner": 472633746, - "Guest_DraconianConjurer": 1824962835, - "Guest_DraconianTheurgist": 1828628416, - "Guest_DraconianNecromancer": 175364324, - "Guest_DraconianSorcerer": 1262893339, - "Guest_SirBlackwater": 366308464, - "Guest_AkhtangWormCrawl": 1589032404, - "Guest_SpiritofDarkmoor": 579455915, - "Guest_ShanevonShane": 2096517522, - "Guest_YevgenyNightCreeper": 1535282881, - "Guest_MalistairetheUndying": 824508513, - "Guest_Bunferatu": 1015806005, - "Guest_CountBelaBlackSleep": 761647679, - "Guest_DeathSoldier": 1715141574, - "Guest_SorrowWhisperer": 556532003, - "Guest_GriefSpectre": 1425488559, - "Guest_HowlingShade": 631460247, - "Guest_WalkingDead": 318527090, - "Guest_Akuji": 977635799, - "Guest_TorturedKakedaSoul": 1716874833, - "Guest_KakedaSpiritSlave": 1814699344, - "Guest_DishonoredSamoorai": 320085744, - "Guest_CursedRonin": 1204095686, - "Guest_TomugawatheEvil": 166125424, - "Guest_OyotomitheDefiler": 1672714483, - "Guest_Fushiko": 801492770, - "Guest_BrokenLandGuardian": 294671991, - "Guest_ShatteredSkyGuardian": 746681463, - "Guest_SunderedSeamGuardian": 1439618652, - "Guest_BrokenLandSpirit": 860105895, - "Guest_ShatteredSkySpirit": 2104112380, - "Guest_SunderedSeamSpirit": 69572311, - "Guest_LostSoul": 204361577, - "Guest_RottingFodder": 308249734, - "Guest_HauntedMinion": 689597338, - "Guest_FieldGuard": 1175228991, - "Guest_SkeletalWarrior": 778393993, - "Guest_SkeletalPirate": 1476730220, - "Guest_WanderingSpecter": 126188449, - "Guest_LivingScarecrow": 1442943145, - "Guest_FrostPhantom": 1809776664, - "Guest_FireShrieker": 173332719, - "Guest_CryptCrawler": 2118799272, - "Guest_ViridianSpecter": 383149977, - "Guest_ArgentClatterer": 525414714, - "Guest_SwimmingSpecter": 1494025094, - "Guest_ScarletScreamer": 1689589811, - "Guest_BoneDigger": 1351421123, - "Guest_HowlingGhost": 664019391, - "Guest_SkeletalSoldier": 750463116, - "Guest_MaidenofHate": 444442868, - "Guest_SkeletalRetainer": 1409032775, - "Guest_SoulHunter": 1900267551, - "Guest_MidnightShuffler": 1991052065, - "Guest_PlaguedSoul": 419071561, - "Guest_HauntingBanshee": 345837052, - "Guest_SimontheSayer": 1352807820, - "Guest_TheHarvestLord": 1923575206, - "Guest_LadyBlackhope": 1403431623, - "Guest_SergeantSkullsplitter": 898737831, - "Guest_Foulgaze": 2063419769, - "Guest_Wormguts": 788697519, - "Guest_Rattlebones": 125602919, - "Guest_Paulson": 1112716921, - "Guest_Grubb": 1167554274, - "Guest_Norton": 581021964, - "Guest_NightStalker": 1447653309, - "Guest_AddereTimeo": 1491420030, - "Guest_TheReaper": 1526369733, - "Guest_AngrusHollowsoul": 1427862805, - "Guest_OrrickNightglider": 951078615, - "Guest_SteelSentinel": 885250894, - "Guest_Shadow-WebSoldier": 2014925398, - "Guest_LostCeleste": 1725301830, - "Guest_CapnNigelSkullcrack": 1665439970, - "Guest_HaulAwayJoe": 1075985331, - "Guest_OldMaui": 15300840, - "Guest_LordAgue": 140791419, - "Guest_MelweenaSmite": 432188189, - "Guest_HalloweenTrickster": 2043736417, - "Guest_PumpkinHead": 1098332105, - "Guest_BaronMordecai": 817370918, - "Guest_KaimaniteMummy": 1332671420, - "Guest_VeggieRevanant": 928504192, - "Guest_BloodBat": 76467389, - "Guest_DeadBeets": 157829578, - "Guest_Desparagus": 1130644076, - "Guest_MeanestFly-Trap": 1652898868, - "Guest_Nosferabbit": 1021159436, - "Guest_ThrallofSothmekhet": 330780177, - "Guest_VileApparition": 426627869, - "Guest_SoulServant": 1183110886, - "Guest_SoulKeeper": 917518313, - "Guest_AdmiralBontau": 2032168402, - "Guest_DeathWhisperer": 3814952, - "Mount_RollerBlades": 111369373, - "Guest_BaneWyrm": 147033576, - "Guest_BlackDragon": 939469656, - "Guest_DragonSpawn": 1829803517, - "Guest_Fire-SpitterSpawn": 616624489, - "Guest_CaoranachtheFire-Spitter": 323513000, - "Guest_Jabberwock": 1552492834, - "Guest_CatalantheLightningLizard": 1155778705, - "Guest_WhiteDragon": 2009449331, - "Guest_WinterWyrm": 478925069, - "Guest_WyrmStatue": 2119216210, - "Guest_AlgidWyrm": 1309546482, - "Guest_BruleeSucre": 390936202, - "Guest_HebitohoWyrmling": 1682026810, - "Guest_Shadowwock": 505539184, - "Guest_EirikurAxebreaker": 1361453552, - "Guest_WarWyrm": 1124740742, - "Guest_StrayFireflier": 610979811, - "Guest_BurningFlamewing": 2041225130, - "Guest_FeralLavaling": 371483057, - "Guest_SplinterWing": 923421333, - "Guest_ChanticoBlueAir": 1572441903, - "Guest_CopperWingGuard": 302783602, - "Guest_ObsidianBeak": 2016227452, - "Guest_CaquixNineShadows": 2070101060, - "Guest_LustrousTlalocan": 1201030473, - "Guest_SeedThief": 263211181, - "Guest_PopZotzUnluckyDay": 1416773489, - "Guest_NezathePoet": 1905861376, - "Guest_MazenStingerBee": 1642023393, - "Guest_ImperialJusticePayne": 1285679745, - "Guest_AssistantWardenPorfiry": 22099059, - "Guest_MarshalKamensky": 524669730, - "Guest_WardenVissarovich": 882556823, - "Guest_GulagGuard": 100744159, - "Guest_CaptainKravchuck": 690830770, - "Guest_ImperialGuard": 346803640, - "Guest_IronPaw": 1797329688, - "Guest_TundarianEnforcer": 134256836, - "Guest_Ivan": 996220221, - "Guest_ColonelOrlov": 1381254189, - "Guest_IronPawIntakeCaptain": 2099184835, - "Guest_SolitaryWarden": 1503529566, - "Guest_CaptainZubkov": 793725366, - "Guest_SergeantBobrik": 722182485, - "Guest_WailingWraith": 946976407, - "EggChick": 1452316301, - "BunnyMallow": 518233330, - "Guest_ThunderHornZombie": 1007920040, - "Guest_SmokingMirrorZombie": 340971759, - "Guest_ShamblingZombie": 1920485146, - "Guest_MoonSkullZombie": 809249764, - "Guest_DeathlessStormHorn": 812397213, - "Guest_MozarTurtleHunter": 561749043, - "Guest_GuillermoShatterer": 499565054, - "Guest_XiuhcoatlBarbedTooth": 1719245305, - "Guest_AzcalFireAnt": 1281366337, - "Guest_TlotzinMoonThief": 407285761, - "Guest_PocaCruelStar": 1117353085, - "Guest_ThunderHornGhoul": 597878999, - "Guest_TezomocStoneSinger": 733511940, - "Guest_EzhuaBadTaste": 632779219, - "Guest_UacalxochitlBloodEye": 1614856226, - "Guest_WanadiBlackSky": 349829749, - "Guest_ElMarrow": 483880636, - "Guest_GrimCalaca": 1534029144, - "Guest_XipeFlayedOne": 1343577398, - "Guest_MotecumaDeathMask": 1782393717, - "Guest_EkeChuah": 13416770, - "Guest_AnacaonaBlackSnake": 1543344897, - "Guest_SmokingMirrorWight": 776452983, - "Guest_Tolkemec": 217428080, - "Mount_Fox": 77199428, - "PP_OwlProtege": 268847192, - "Mount_SharkSki": 331374103, - "PP_Dolphin": 1662291612, - "Mount_CastSymbol_D": 1134428045, - "Mount_CastSymbol_E": 1136525197, - "Mount_CastSymbol_F": 1138622349, - "Mount_CastSymbol_G": 1140719501, - "Mount_CastSymbol_A": 1128136589, - "Mount_CastSymbol_B": 1130233741, - "Mount_CastSymbol_C": 1132330893, - "Guest_LionSpectralGuardian": 1791543691, - "Guest_KillmareSpiritwalker": 1818928165, - "Guest_ZebraSpectralGuardian": 815933596, - "Guest_GorillaSpectralGuardian": 1635182119, - "Guest_IklawGhostWarrior": 373465545, - "Guest_BwanaShadowriver": 1307628747, - "Guest_ElephantSpectralGuardian": 1579402208, - "Guest_ZangaZebu": 1218173119, - "Guest_GrumishGreataxe": 486953385, - "PP_GlowFairy_A": 2028856748, - "Guest_RestlessSoldier": 1142701763, - "Guest_WanderingWizard": 209518514, - "Guest_ColonelIvanenko": 399169035, - "Guest_DetollitheDestroyer": 655767295, - "Guest_Jawniak": 1791298433, - "Guest_Tajniak": 356182394, - "Guest_Ygor": 996316081, - "Guest_KyaniteLancer": 2136703656, - "Guest_VestaShadowmark": 1846747836, - "Guest_ZoraSteelwielder": 1186470644, - "Guest_AndorBristleback": 1949884743, - "Guest_GalliumPaladin": 1812340868, - "Guest_GalliumFootman": 1295203112, - "Guest_GalliumShardtrooper": 1210699836, - "Guest_GalliumJuggernaut": 3527584, - "Guest_VladimirDarkflame": 1575322237, - "Guest_KyaniteLieutenant": 561528977, - "Guest_DrusillaMorningbane": 155837810, - "Guest_KyaniteValkyrie": 53242136, - "Transformation_20Q_SherlockBones": 1112674320, - "Guest_DevoraShadowcrown": 1813459117, - "Guest_YoualaNightDrinker": 881289828, - "Guest_Pendragon": 715669945, - "Guest_CelestianRevenant": 515730327, - "Guest_SoullessServant": 1505662730, - "Guest_SpiritServant": 104517373, - "Guest_SoulSerf": 1188214406, - "Guest_ServileSoul": 871844607, - "Guest_SkeletalCorsair": 239414410, - "Guest_RottedFodder": 1301186193, - "Guest_ScarletScreecher": 600457915, - "PP_FrankBunnyBride_A": 974707030, - "Guest_BastillaGravewynd": 2100015237, - "Guest_VilaraMoonwraith": 2067986693, - "Guest_YngvarSharptooth": 1783361972, - "Guest_TroubledWarrior": 1569033392, - "Guest_VeggieRevanant2": 928503904, - "Guest_VeggieRevanant3": 928503888, - "Guest_VeggieRevanant4": 928503872, - "Guest_VeggieRevanant5": 928503856, - "Guest_AncientQhatWarrior": 1564521104, - "Guest_EmperorPaleolo": 2079384347, - "Guest_SpiritofIntolerance": 1627658048, - "Guest_SpiritofInquiry": 1320544891, - "Guest_FirstGuardian": 1982227776, - "Guest_FallenMerc": 225926286, - "Guest_NightShadow2": 1638183490, - "Guest_NightShadow3": 1636086338, - "Guest_NightShadow2-2": 1436856907, - "Guest_NightShadow3-2": 1434759755, - "Guest_NightShadow4-2": 1432662603, - "Guest_NightShadow5-2": 1430565451, - "Guest_NightShadow6-2": 1428468299, - "Guest_NightShadow7-2": 1426371147, - "Guest_FirstScythe": 738854032, - "Guest_GreyMantisCaptain": 860186057, - "Guest_GreyMantisHunter": 1239274377, - "Guest_Atlach-Leng": 836136649, - "Guest_PetrovGloomstrider": 2045783873, - "Guest_NauyotolDownIntheHole": 1134251106, - "Guest_SandorSpearcaller": 1351072377, - "Guest_MavraFlamewing": 1477685600, - "Guest_Scaldling": 208751819, - "Guest_WoebegoneWraith": 1166488705, - "Guest_BorisBlackrock": 1365399915, - "Guest_KatiaFirewinter": 521255834, - "Guest_ValerikBrightsword": 1244055782, - "Guest_RurikFlamesoul": 1962726850, - "Guest_IonaPyrelance": 722266491, - "Guest_DarkPoltergeist": 818162178, - "Guest_TheCollector": 1772287612, - "Guest_ViktorSnowcrusher": 1028387381, - "Guest_ValeskaRedwind": 19316351, - "Guest_ScarrikGallowgaunt": 105397333, - "Guest_Neberyx": 1453883041, - "Guest_AsrikWidebelt": 401936422, - "Guest_GothricHonorbound": 750072340, - "Guest_HalfangBristlecrown": 618779562, - "Guest_OsvudFleetpaw": 1023466459, - "PP_PufferFish_A": 1578606029, - "Guest_OzelUnderwaterCat": 1033669302, - "PP_BabyGreenMan_A": 910025246, - "PP_SchoolTurtle_A": 1012620678, - "PP_DarkBalloon_A": 1229308566, - "MT_JetsamCopter": 92127678, - "Mount_4P_DarkClownCar": 420246262, - "MNT_BalloonsBunch": 2000358474, - "Guest_TempleGuardian": 632574316, - "Guest_TemplePhantom": 1701097840, - "Guest_MahonStarsearcher": 1549093341, - "Guest_LostKnight": 858980994, - "Guest_AnguishedWoodman": 174606918, - "Guest_TormentedTreant": 294050331, - "Guest_WildfireTreant": 1902129818, - "Guest_BlightedYaxche": 679097088, - "Guest_Junglethorn": 1734561424, - "Guest_Tangleroot": 2027061721, - "Guest_BlightedFreerooter": 1109803061, - "Guest_Winterbranch": 1170787806, - "Guest_DecayingBogwalker": 1338670789, - "Guest_BrownwoodTormentor": 1655181754, - "Guest_Wildroot": 1839747182, - "Guest_Ironsplinter": 668295157, - "Guest_Frostbranch": 75974631, - "Guest_KyoukonteiTreant": 474446232, - "Guest_BrokenStumps": 414724364, - "Guest_WordlessWoodsmen": 1813881830, - "Guest_DesiccatedTreebeard": 1826942903, - "Guest_ShadowoftheLand": 1612385317, - "Guest_TreeRoot": 1406633546, - "Guest_BefouledWoodwalker": 1517919498, - "Guest_ConfusedForestWarrior": 750805985, - "Guest_CrazedForestSpirit": 1007960507, - "Guest_Oakheart": 1158293719, - "Guest_SnowTreant": 1028620035, - "Guest_Snowbeard": 1997921701, - "Guest_BarkskinTreant": 2143957812, - "Guest_RazorleafTreant": 2133159197, - "Guest_CarrionFlowerMan": 1120698936, - "Guest_Kurokage": 355651925, - "Guest_LacombeStrawHouse": 568809873, - "Guest_BerkshireStickHouse": 1932133405, - "Guest_TamworthBrickHouse": 894027634, - "Guest_RustyTinderSpark": 1237916230, - "Guest_CoraWinterBranch": 1901918989, - "Guest_GrambleGoldRook": 1986988546, - "Guest_PiperStormTree": 1109520133, - "Guest_Hanadzura": 124838500, - "Guest_Kuchisaki": 2084188681, - "Guest_Kaizoku": 807430784, - "Guest_JaxonLastRites": 1653711119, - "Guest_SeijunKiller": 657647155, - "Guest_ZarichiTarakata": 1129212566, - "Guest_BladelessRonin": 1577395797, - "Guest_SanzokuOutlaw": 1682888807, - "Guest_SanzokuBandit": 1766198653, - "Guest_KakedaPainbringer": 1260119278, - "Guest_KakedaStalker": 367458449, - "Guest_KakedaShadow": 1604499626, - "Guest_KakedaSoulcrusher": 1961168112, - "Guest_ImitsuPlaguemaster": 1361539025, - "Guest_ImitsuDefouler": 1299791045, - "Guest_ImitsuPunisher": 234819300, - "Guest_StudentofKhai": 249757647, - "Guest_OtomoBattlemage": 918160114, - "Guest_OtomoCourier": 1373253378, - "Guest_OtomoSupplyRunner": 1580070577, - "Guest_OtomoScout": 1814051082, - "Guest_OtomoWrestler": 1053571230, - "Guest_OtomoFury": 111319603, - "Guest_Hyottoko": 307080225, - "Guest_Usunoki": 1881339626, - "Guest_Kagemoosha": 1842766119, - "Guest_UdoJin-e": 850816224, - "Guest_TakedaKanryu": 536087422, - "Guest_Tamauji": 818613882, - "Guest_Jikiru": 794167355, - "Guest_Nomoonaga": 849534658, - "Guest_Aiuchi": 515942855, - "Guest_Kurogaso": 1426248002, - "Guest_Ideyoshi": 1814038213, - "Guest_Koto": 1151260427, - "Guest_Usegi": 977549586, - "Guest_Kanago": 1644367227, - "Guest_Kyuto": 1168225979, - "Guest_Haru": 2070048389, - "Guest_Ashikata": 1523446928, - "Guest_Katsumori": 1823914597, - "Guest_Hingen": 1567896261, - "Guest_Yakedo": 502298497, - "Guest_Do-Daga": 1239945714, - "Guest_Maito": 979260804, - "Guest_TonkatsuThug": 1758658397, - "Guest_GobbloreanGuard": 1286210991, - "Guest_BabblingMeints": 413418139, - "Guest_PrinceGobblestone": 1813171676, - "Guest_GobblerMuncher": 1517159487, - "Guest_GobblerGorger": 130736772, - "Guest_GobblerScouter": 1509427587, - "Guest_GobblerGlutton": 1912199781, - "Guest_GobblerScavenger": 136586791, - "Guest_BaronGreebly": 1028182200, - "Guest_BaronRotunda": 457132907, - "PP_DeathMimic": 1811942047, - "Guest_GreenMan": 1126663802, - "Guest_ForestGrump": 1602350320, - "Guest_ErvintheBarbarian": 1671762776, - "Guest_RazortuskWarrior": 1109994549, - "Guest_RazortuskBrawler": 732265321, - "Guest_SplithoofRager": 1922134329, - "Guest_TuskedRaider": 1920114147, - "Guest_SviniBeserker": 1146317608, - "Guest_SviniReaver": 216717251, - "Guest_Shattertusk": 1191456730, - "Guest_SplithoofBarbarian": 296671728, - "Guest_Bloodseeker": 2086598239, - "Guest_Scarsnout": 1831766077, - "Guest_MasterTonkatsu": 1783298894, - "Guest_Grisletusk": 657393295, - "Guest_SplithoofBloodguard": 488382274, - "Guest_BristlehideRaider": 237078958, - "Guest_Gullin": 1656401882, - "Guest_ForestNymph": 812055814, - "Guest_SassafrasMan": 1327049788, - "Guest_RandolfSpellshine": 108808620, - "Guest_BleysFlamerender": 434070106, - "Transformation_Khan": 1398327634, - "Transformation_TheBat": 1675113521, - "MNT_DireWolf": 845578449, - "MNT_YuleMule": 1976182058, - "MNT_LightBlades": 829118450, - "MNT_FlyingSquid": 1573132252, - "PP_Globulin": 467801224, - "PP_BeastBaby": 1807874692, - "PP_SaniBot": 670845902, - "Mount_SwarmSand": 1277669407, - "Guest_Nodnarb": 211478288, - "Guest_LordBramble": 1118781162, - "Guest_Yogash": 506264561, - "Guest_Marcio": 499428996, - "Guest_Procyon": 1115376865, - "Guest_Thunderfin": 2029218563, - "Guest_ArkynMoonblade": 1152775206, - "Guest_CreeCurdWright": 1714953095, - "Guest_DeerMouseRevenant": 315064435, - "Guest_ElanaDarksun": 837982094, - "Guest_KingAlricFateSailor": 1934591130, - "Guest_LaughingCalaca": 984492527, - "Guest_WraithKnight": 620484548, - "Guest_FieryEchoofApep": 484636593, - "Guest_FrostyEchoofApep": 171933154, - "Guest_FalseEchoofApep": 479387377, - "Guest_ChargedEchoofApep": 1229406800, - "Guest_ShrowdengersQhat": 101563303, - "Guest_Scrollkeeper": 643219293, - "Guest_TerrorHound": 753341570, - "Guest_CondemnedMander": 445370758, - "Mnt_SnowStorm": 1491572670, - "Mount_ChimneySweeper": 378571534, - "MNT_PineappleCandyCane": 1630795796, - "Guest_TyphonDustwind": 740849673, - "MNT_StickHorse": 216654744, - "MimicTemplate": 1461219184, - "MNT_Ball_N_Chain": 289720920, - "PP_PeaceDove_A": 1785119671, - "Mount_Gyrocycle": 1495008048, - "PP_BattleMageDragon_A": 1864696711, - "MNT_BattleBeast": 1304449286, - "MNT_SmokeTrails": 387873030, - "Mount_FriendshipHare": 677127330, - "MNT_ButterflySwarm": 383602683, - "PP_EggChick_B": 1959154042, - "MNT_Unicorn": 562210585, - "PP_StuffedUnicorn": 1731641773, - "MNT_ParadeTruck": 2026348978, - "MNT_ParadeTruckXmas": 1017864627, - "MNT_AutumnLeafSwarm": 1540002279, - "PP_GingerbreadMan": 1796172229, - "PP_DecadeDragon": 1819398630, - "MNT_StageShip": 829852992, - "PP_DramaLlama": 255896529, - "PP_HallMinotaur_A": 1492017563, - "Guest_MacDeath": 1526226705, - "Guest_MacDeathUnderstudy": 1731752647, - "Guest_MacLifeUnderstudy": 257466641, - "Guest_MacStormUnderstudy": 8295117, - "MNT_Pantera": 1135198, - "MNT_StagLight": 1908778048, - "MNT_GiantSpider": 1247185021, - "MNT_StagEvil": 872303931, - "PP_BaskHound": 1093866594, - "PP_Marionette": 1688299938, - "PP_Marionette_B": 1688297824, - "Guest_Izft": 996301405, - "Guest_SapotisMinion": 1625665891, - "Guest_CrazedSlave": 1473233468, - "Guest_CharmedSlave": 803043667, - "Guest_EnsorcelledSlave": 40920285, - "Guest_HallServant": 2038116460, - "Guest_SiathePerceiver": 1235571913, - "Guest_Kiwu": 1151177787, - "Guest_NightImp": 1051843424, - "Guest_EvilTrickster": 1035477123, - "Guest_DeepWoodsImp": 1502444054, - "Guest_ForestPest": 802235713, - "Guest_TaintedForestImp": 1030343985, - "Guest_Youkai": 518367729, - "Guest_CarthaginianElephantWarrior": 776293919, - "Guest_IdrisBeast-Taker": 106759521, - "Guest_MikaSkarka": 237956516, - "Guest_Belloq": 757247833, - "Guest_GurtokPiercer": 549466122, - "Guest_GurtokFirebender": 817966523, - "Guest_GurtokDemon": 544070162, - "Guest_GeneralFiretusk": 2073037770, - "Guest_GurtokBarrierDemon": 44657563, - "Guest_BlacktuskShaman": 1009070925, - "Guest_FireDemon": 158367196, - "Guest_DeathOni": 1916642000, - "Guest_JadeOni": 1289517185, - "Guest_PlagueOni": 1464586443, - "Guest_WarOni": 1630196094, - "Guest_BrokenLandMammoth": 1587008312, - "Guest_SunderedSeamMammoth": 1272698721, - "Guest_BullyMammoth": 170705927, - "Guest_Bullhemoth": 146998717, - "Guest_Kogasha": 1909654543, - "Guest_MusuthBerserker": 1741298129, - "Guest_BlackTuskCultist": 1771575961, - "Guest_AksilBlacktrunk": 1253596409, - "Guest_LongdreamerShaman": 1521283133, - "Guest_MuratGreyeyes": 1296814314, - "Guest_ElephantSoldier": 1443670145, - "Guest_DarajaniGuard": 1597288495, - "Guest_Loremaster": 1792470809, - "Guest_Pork": 2069999347, - "Guest_Beans": 97706585, - "MNT_Ox": 1292937747, - "PP_PropellerSquirrel": 1657443894, - "Guest_RasikPridefall": 97921485, - "Guest_AmedrasLightstep": 1818417025, - "MNT_SmokeTrails_Balance": 1358150715, - "MNT_SmokeTrails_Fire": 702971609, - "MNT_SmokeTrails_Ice": 190218501, - "MNT_SmokeTrails_Life": 2045542105, - "MNT_SmokeTrails_Myth": 1276281121, - "MNT_SmokeTrails_Storm": 564954622, - "Guest_Bellosh": 1407013027, - "Guest_AcampiReedfist": 2076527733, - "Guest_AgnettaBroadblade": 14864960, - "Guest_FrostheartRaider": 1574787221, - "Guest_JordaSwordbearer": 1627071850, - "Guest_KasaiBaku": 1153107369, - "Guest_ZoraimeiHelephant": 1002482606, - "Guest_ConscriptedMander": 43811125, - "Firecat_Decade": 409516955, - "MNT_BatGlider": 2086258491, - "Transformation_PlayerHomework": 673389670, - "Transformation_PlayerAttendance": 422287307, - "Transformation_PlayerLecture": 2035625874, - "Transformation_PlayerPopQuiz": 483367038, - "MNT_GingerbreadHorse": 1369242781, - "MNT_NimbariChariot": 1251740392, - "PP_NimbariDog": 1235126828, - "Transformation_PlayerGrandma": 1128332272, - "Transformation_PlayerScionA": 33862367, - "PP_Mushroom": 1568942158, - "MNT_Scooter": 1148167046, - "MNT_Scooter_B": 2079302532, - "MNT_Scooter_C": 1810867076, - "MNT_Scooter_D": 468689796, - "MNT_IceCycle": 415797788, - "Transformation_PlayerScionA02": 33921759, - "Guest_FearoftheFuture": 947210229, - "Guest_FearofGremlins": 405857384, - "Guest_RootGuardian": 922940845, - "Guest_VineThrasher": 172546427, - "Guest_BlightWalker": 1438155154, - "Guest_BriarScourge": 615681851, - "Guest_DreamJabberwock": 907754098, - "Guest_DreamBelloq": 990352002, - "Guest_Voltergeist": 1558128068, - "Guest_SpecialBranch": 1927849418, - "Guest_MutantBriar": 805892802, - "Guest_FeralBriar": 883790223, - "Guest_MaizeMonster": 688905764, - "Guest_DreamShadowwock": 1432458248, - "Mount_Heartboard": 1421972759, - "PP_ChocoBunny": 324797859, - "Mount-PogoFlower": 906659501, - "MNT_AethyrCloud": 1586061078, - "MNT_Fangle": 7846854, - "Guest_StarfallSpider": 1177620831, - "Guest_AshSpider": 1588502553, - "Guest_CorruptedWeaver": 38937211, - "Guest_CrystalCrawler": 1197980149, - "Guest_ShimmerWidow": 1300740128, - "Guest_FacetedSpikespinner": 1939719331, - "Guest_CrystallineQueen": 1999282256, - "Guest_AncientCrystalweaver": 1409608801, - "Guest_FangtoothLavaspinner": 1538042104, - "Guest_VenomousHeatseeker": 1234682482, - "Guest_FireweaveRockbiter": 300743778, - "Guest_MonkeySpider": 754090007, - "Guest_CryptSpider": 1545405304, - "Guest_CommonHouseSpider": 613486002, - "Guest_ArachnaMagnaMagus": 825817937, - "Guest_ArachnaSoldier": 270978709, - "Guest_Gnissa": 1699826178, - "Guest_WebwoodScuttler": 1728611075, - "Guest_SandSpider": 61789007, - "Guest_WebwoodCreeper": 1013382584, - "Guest_Skathi": 1631429165, - "Guest_ArchmagusLorcan": 321146960, - "Guest_CrawleroftheMist": 2076696304, - "Guest_PaintedSpider": 1482115552, - "Guest_GiantSpider": 1545526191, - "Guest_CaveCrawler": 2101587667, - "Guest_RattleCatcher": 1472707326, - "Guest_TrapdoorSpider": 1321643694, - "Guest_RockClinger": 1304266411, - "Guest_InquisitorXimenez": 1053483090, - "Guest_ElderMagus": 1017836836, - "Guest_WardenBenthamic": 18807199, - "Guest_SpiderArchmagus": 387645558, - "Guest_SpiderAdept": 2094873407, - "Guest_InterrogatorRentenius": 1245984179, - "Guest_WarpedWeaver": 495882677, - "Guest_ArachnaSkinner": 281864085, - "Guest_SkinnerConscript": 2028526453, - "Guest_ArachnaGladiator": 2492046, - "Guest_LorcanInitiate": 353311753, - "Guest_Serket": 1871335773, - "Guest_IceWeaver": 2063216026, - "Guest_SpiritSpinner": 525666327, - "Guest_MysteriousCrawler": 218352756, - "Guest_BlackWidow": 1909331619, - "Guest_BrownRecluse": 1146386275, - "Guest_Creeper": 1197442790, - "Guest_GearSpinner": 67020478, - "Guest_Clinker": 1194519062, - "Guest_Clanker": 1194517014, - "Guest_GrandfatherSpider": 1330981335, - "Guest_Spiderling": 1400274461, - "Guest_ManekiWebWalker": 888348786, - "Guest_KoganiDeathCrawler": 276010604, - "Guest_CheliceranCrawler": 1169176517, - "Guest_ArachniteCreeper": 1850534774, - "Guest_ChelicaranStalker": 2057291848, - "Guest_HornedMonkeySpider": 1301514577, - "Guest_GreyOgreSpider": 1533774471, - "Guest_StarburstSpider": 698029451, - "Guest_PaintedCaveMonster": 601315479, - "Guest_RubbleRouser": 220785666, - "Guest_EarthElemental": 435260049, - "Guest_SharpshardWarrior": 1403237237, - "Guest_Firevein": 1220046430, - "Guest_Blackblade": 458130537, - "Guest_VengefulFireheart": 563205004, - "Guest_FirerockStomper": 608552855, - "Guest_BlackrockGuardian": 1663799582, - "Guest_ConfusedSentry": 24655510, - "Guest_SilverSentinel": 1090673683, - "Guest_SilverServant": 84560693, - "Guest_GiantHomunculus": 456098557, - "Guest_PropertyMaster": 229101764, - "Guest_VaultProtector": 185568207, - "Guest_PlatedDefender": 79324363, - "Guest_Avalanche": 761613547, - "Guest_RockReaver": 919912933, - "Guest_Frostmantle": 856308090, - "Guest_GlacierWalker": 131215932, - "Guest_SandBehemoth": 272513357, - "Guest_RunedAnnihilator": 121339936, - "Guest_RunedDevestator": 1611071181, - "Guest_RunedGuardian": 1986312667, - "Guest_CanyonRager": 1123038266, - "Guest_RubbleReaver": 220774678, - "Guest_Boulderbone": 122279242, - "Guest_Nali": 77467516, - "Guest_Gnar": 1151164930, - "Guest_GlacialAvenger": 1181253632, - "Guest_SokkwiKeymaster": 190919624, - "Guest_SandsofTime": 34920273, - "Guest_BladeGolem": 435561523, - "Guest_FrostColossus": 1564686403, - "Guest_IceColossus": 335477257, - "Guest_PollutedEarthWalker": 86045387, - "Guest_CorruptedEarthSpirit": 1135891559, - "Guest_Stonebreaker": 1317905436, - "Guest_StoneElemental": 1715022018, - "Guest_VolcanisGolem": 1904918929, - "Guest_WaterElemental": 1717850987, - "Guest_AshenDeathMonkeySpider": 35356665, - "Guest_DeathMonkeySpider": 1525508507, - "Guest_MotherMonkeySpider": 110317392, - "Guest_DoomMonkey": 1135105500, - "Guest_DreamMorganthe": 907599965, - "Guest_DragonBeetle": 1974635734, - "Guest_SandWalker": 1530843985, - "MNT_PandaMama": 916371162, - "PP_BabyPandas": 778536285, - "PP_FrogPrince": 729975205, - "MNT_PumpkinCarriage": 183672737, - "Mount_Gobbler_B": 1193388729, - "PP_Hamster": 1578040708, - "Guest_Steeleton": 657429968, - "Guest_GoldenWyrm": 311022393, - "MNT_Roc": 1564431869, - "PP_BabyGriffin": 1913686406, - "Transformation_ShadowDPSMob": 936133896, - "Transformation_ShadowTankMob": 305660992, - "Transformation_ShadowHealMob": 356596800, - "Guest_SpiritofIgnorance": 1577360126, - "Guest_FecklessSoul": 519648315, - "Guest_BurnedOutSoul": 312181646, - "Guest_BenightedRevenant": 2131956962, - "Guest_TombLurker": 1901203489, - "Guest_DesertGolem": 543642682, - "Guest_KumoOni": 215822625, - "Guest_SpellwritStalker": 161772776, - "PP_Sun": 1723237840, - "Guest_Leadite": 4480416, - "Mount_FestiveFox": 2125832348, - "PP_FenrisWolf": 1601784680, - "PP_SchoolPiggle": 109782407, - "PP_FenrisWolf_Red": 1597992854, - "PP_FenrisWolf_Teal": 1455058454, - "PP_FenrisWolf_White": 1102186199, - "Transformation_NinjaPig_Fire": 984575055, - "Transformation_BG_RatThief_Myth": 1191155131, - "Transformation_BG_RatThief_Storm": 675891897, - "MNT_Umbrella": 955683437, - "Transformation_BG_Elf_Ice": 1209681129, - "Transformation_BG_Fairy_DarkMinion_Balance": 33521202, - "Transformation_BG_Cyclops_Death": 876023972, - "Transformation_BG_Minotuar_Fire": 1118476387, - "Transformation_BG_WolfWarrior_Storm": 2075594475, - "Transformation_BG_WolfWarrior_Balance": 746159992, - "Transformation_BG_Draconian_Myth": 903606820, - "Transformation_BG_Draconian_Life": 1501291044, - "Transformation_BG_Colossus_Life": 1320377666, - "MNT_DolphinChariot": 102982520, - "MNT_EvilWagon": 685457563, - "MNT_FlyingDutchman": 1176206544, - "PP_SeaHorse": 2024322494, - "PP_EvilTeddy": 1159020925, - "PP_ZombieParrot": 384805107, - "Transformation_BG_Ice_Colossus": 299613211, - "MNT_CarrierBat": 7323333, - "Transformation_BG_Minotaur_MythTempalte": 430330904, - "PP_FeatheredTabby": 452526748, - "Transformation_Detritus01": 1335763402, - "Guest_Metallossus": 335457082, - "MNT_SantaJaws": 464410203, - "MNT_BattleBadger": 532858222, - "Transformation_Shedder01": 2069145892, - "PP_NatureSpirit": 373176286, - "Transformation_Devourer01": 1004421540, - "Guest_TheDevourer": 1591187996, - "Guest_Treeminder": 1093207850, - "Guest_RenegadeDruid": 2087982292, - "Guest_FractalTreeminder": 927174548, - "Guest_UnsettledTreeminder": 486164163, - "Guest_DragonspyreCrusader": 247317280, - "Guest_YoungGreggor": 66068670, - "Guest_GeneralGreyflame": 499924835, - "Guest_OldGreggor": 391726170, - "Guest_PrinceViggor": 853556298, - "Guest_DragonspyreVanguard": 693851565, - "Guest_SilasConviction": 177362659, - "Guest_SilasWeariness": 893431021, - "Guest_SilasRage": 1288904439, - "Guest_SilasDoubt": 1479426285, - "Guest_Lorekeeper": 147779344, - "Guest_FelixPhotomongerIII": 68387506, - "Guest_WarHavox": 1634324022, - "Guest_Mis-assembledSkeleton": 221832082, - "Guest_TreeminderGhost": 200408510, - "Guest_ViggorsDrake": 340449521, - "Guest_BlueNinjaPig": 938539327, - "Guest_RedNinjaPig": 2097962021, - "Guest_OrangeNinjaPig": 625058258, - "Guest_PurpleNinjaPig": 445746449, - "Guest_RitualColossus": 844563319, - "Guest_TinyDragon": 1123127688, - "Guest_RitualSpider": 429827552, - "Guest_RitualDraconian": 837510372, - "Guest_CC_Druid_Warrior_C_01": 55314616, - "Guest_CC_Druid_Wizard_A_01": 1046261169, - "Guest_CC_Druid_Wizard_B_01": 1046244785, - "Guest_CC_Druid_Warrior_A_01": 56363192, - "MNT_Toboggan": 995356805, - "MNT_2P_WickerTreant-001": 2065440944, - "PP_Ratatoskr": 1003497600, - "PP_Trash": 1195047012, - "Guest_CC_Druid_Wizard_D_01": 1046343089, - "MNT_Sunflower": 721091531, - "MNT_Whoopee": 1383311238, - "MNT_Warthog": 8060761, - "PP_ShamRock": 943893325, - "PP_LeapingLeprechaun": 132882517, - "PP_LionCubs": 465759803, - "PP_Tanuki": 670387843, - "MNT_Crane": 433122675, - "MNT_Krokosphinx": 739938754, - "Transformation_BG_Fairy_Life": 1897480818, - "Transformation_LiceDeepSpawnA": 244795720, - "Piggle_Alien": 1761605655, - "PP_JeweledScarab": 620544607, - "Guest_KR_Nymph_DrkMage_D50": 1248526054, - "Guest_KR_Nymph_DrkMage_C50": 1246953190, - "Guest_KR_Nymph_DrkMage_B50": 1247477478, - "Guest_KR_Nymph_DrkMage_A50": 1245904614, - "Guest_EM_Spider_Ash_01": 185724938, - "UFO": 47349, - "PP_Kit10": 326796620, - "PP_Lumi_Tulip": 84119585, - "PP_Lumi_Fern": 117015078, - "PP_Lumi_Violet": 1468797578, - "PP_Lumi_Sunny": 1769236703, - "PP_Lumi_Daisy": 1743454175, - "MNT_CelestianMech": 1238076872, - "MNT_Brontosaurus": 402157167, - "Guest_HG_AKT_Krok_Cyber_A_Balance_25": 1367985604, - "Guest_HG_AKT_Krok_Cyber_A_Balance_50": 1368084932, - "Guest_HG_AKT_Krok_Cyber_A_Balance_75": 1367988676, - "Guest_HG_AKT_Krok_Cyber_A_Balance_100": 1351303620, - "Guest_HG_AKT_Krok_Cyber_A_Balance_130": 1351270852, - "Guest_HG_AKT_Krok_Cyber_A_Fire_25": 976558490, - "Guest_HG_AKT_Krok_Cyber_A_Fire_50": 37034397, - "Guest_HG_AKT_Krok_Cyber_A_Fire_75": 305469850, - "Guest_HG_AKT_Krok_Cyber_A_Fire_100": 573905821, - "Guest_HG_AKT_Krok_Cyber_A_Fire_130": 573905824, - "Guest_HG_AKT_Krok_Cyber_A_Ice_25": 159411377, - "Guest_HG_AKT_Krok_Cyber_A_Ice_50": 541093041, - "Guest_HG_AKT_Krok_Cyber_A_Ice_75": 146828465, - "Guest_HG_AKT_Krok_Cyber_A_Ice_100": 557870241, - "Guest_HG_AKT_Krok_Cyber_A_Ice_130": 960523425, - "Guest_HG_AKT_Krok_Cyber_A_Myth_25": 976187830, - "Guest_HG_AKT_Krok_Cyber_A_Myth_50": 36663729, - "Guest_HG_AKT_Krok_Cyber_A_Myth_75": 305099190, - "Guest_HG_AKT_Krok_Cyber_A_Myth_100": 573535153, - "Guest_HG_AKT_Krok_Cyber_A_Myth_130": 573535156, - "Guest_CL-GolemButler-R9": 780077559, - "Guest_CL-GolemDigger-Boss-R10": 562020288, - "Guest_CL-GolemDigger-R9": 789375095, - "Guest_CL-GolemDigger-Rank8MythBoss-R10": 930527857, - "Guest_CL-GolemWorker-R9-1": 1072815287, - "Guest_CL-FishbotBrown-R9-1": 2006155417, - "Guest_CL-FishbotBrown-R9-2": 395542681, - "Guest_CL-FishbotGold-Boss-R10": 611881707, - "Guest_CL-FishbotGold-R9": 705414492, - "Guest_CL-FishbotYellow-Boss-R10": 23145662, - "Guest_CL-Protector-Black-Boss-R10-2": 679228793, - "Guest_CL-Protector-Gold-R10": 1909636609, - "Guest_CL-Protector-Gold-R9-1": 1909634804, - "Guest_CL-Protector-Gold-R9-2": 1909634932, - "Guest_CL-Protector-Gold-R9-3": 1909635060, - "Guest_CL-Protector-Gold-R9-4": 1909634164, - "Guest_CL-Protector-Purple-R9-Boss": 1889837072, - "Guest_CL-Protector-Purple-R9": 81760161, - "Guest_CL-Protector-Tan-Boss-R10": 912663188, - "Guest_KR_Golem_Worker": 1784607296, - "Guest_Golem-Brass-R7-1": 718939445, - "Guest_Golem-Clockwork-R7": 1161173708, - "Guest_EM_Robot_Batbot_A_01": 1482867950, - "Guest_EM_Robot_Batbot_B_02": 945947886, - "Guest_EM_Robot_Batbot_B_01": 1482818798, - "Guest_EM_Robot_Batbot_B_03": 409076974, - "Guest_EM_Robot_Batbot_B_04": 127793938, - "Guest_EM_Robot_Batbot_B_05": 664664850, - "Guest_EM_Robot_Drone_A_02": 1215188569, - "Guest_EM_Robot_Drone_A_03": 1231965785, - "Guest_EM_Robot_Drone_A_01": 1265520217, - "Guest_EM_Robot_Drone_A_04": 1315851865, - "Guest_EM_Robot_Drone_A_05": 1332629081, - "Guest_EM_Robot_Drone_A_06": 1282297433, - "Guest_EM_Robot_Drone_A_07": 1299074649, - "Guest_EM_Robot_Drone_A_08": 1114525273, - "Guest_EM_Robot_Drone_A_09": 1131302489, - "Guest_EM_Robot_Drone_A_Boss_01": 1960661151, - "Guest_EM_Robot_Drone_A_Boss_02": 1960530079, - "Guest_EM_Robot_Drone_E_01": 1265518169, - "Guest_EM_Robot_Tank_A_01": 1314796420, - "Guest_EM_Robot_Tank_A_02": 1313223556, - "Guest_EM_Robot_Drone_C_02": 1215187545, - "Guest_EM_Robot_Drone_D_03": 1231963225, - "Guest_EM_Robot_Drone_D_01": 1265517657, - "Guest_EM_Robot_Drone_D_02": 1215186009, - "Guest_EM_Robot_Tank_B_01": 1314796468, - "Guest_EM_Robot_Drone_C_01": 1265519193, - "Guest_G14-BP-Golem_Steel_Boss": 2071105129, - "Guest_G14-BP-Golem_Steel_Puzzle": 715790979, - "Guest_Golem-Brass-Elite-L38": 1163662532, - "Guest_Golem-Brass-Elite-L56": 2057562884, - "Guest_Golem-Brass-MBBoss-L48": 1498830732, - "Guest_Golem-Brass-MBBoss-L71": 1498829576, - "Guest_Golem-Brass-MBBoss-L76": 1498828936, - "Guest_Golem-Clockwork-Elite-L54-Metal": 417151527, - "Guest_Golem-Clockwork-Elite-L37": 1961943722, - "Guest_Golem-Clockwork-Elite-L54": 1950147242, - "Guest_Golem-Clockwork-L28": 1561959116, - "Guest_Golem-Clockwork-MBBoss-L37": 973152783, - "Guest_Golem-Clockwork-MBBoss-L69": 1262559759, - "Guest_Golem-Steel-Elite-L39": 1430496717, - "Guest_Golem-Steel-MBBoss-L40": 1229578887, - "Guest_Golem-Steel-MBBoss-L43": 1229579015, - "Guest_Golem-Steel-MBBoss-L50-1": 1231762051, - "Guest_Golem-Steel-MBBoss-L50": 1229578883, - "Guest_Golem-Steel-MBBoss-LXX": 1229583927, - "Guest_Golem-Wood-Elite-L35": 904360756, - "Guest_Golem-Wood-Elite-L37": 1978102580, - "Guest_Golem-Wood-Elite-L50": 1813548236, - "Guest_Golem-Wood-MBBoss-L63": 1392041724, - "Guest_MB-Gauntlet-Golem-Clockwork": 854649045, - "Guest_Spider-Golem-MBBoss-L67": 253352706, - "Guest_Spider-Golem-MBBoss-L96": 253348994, - "Guest_WC-MAW-GasGolem-Minion": 1511013798, - "Guest_WC-MAW-GasGolemLife-Minion": 1306026584, - "Guest_Golem-Steel-L02": 1027229749, - "Guest_Golem-Clockwork-L01": 1409915596, - "Guest_Gauntlet-01-Golem-Steel-Ghost-R8": 402816318, - "Guest_Golem-Wood-L01": 156976035, - "Guest_HG-Clock-ClockworkSpanner-20": 1523370449, - "Guest_HG-Clock-ClockworkSpanner-40": 1523370455, - "Guest_HG-Clock-ClockworkSpanner-60": 1523370453, - "Guest_HG-Clock-ClockworkSpanner-80": 1523370459, - "Guest_HG-Clock-ClockworkSpanner-100": 1523354068, - "Guest_HG-Clock-ClockworkSpanner-120": 1523354004, - "Guest_AQ-Cyclops-Guard": 191361948, - "Guest_AQ_Cyclops_Guard_A_Boss_01": 114747100, - "Guest_CL-Cyclops-Death-R10": 611013866, - "Guest_Cyclops-Death-Boss-R7": 1192370725, - "Guest_Cyclops-Death-Boss-R9": 1192370717, - "Guest_Cyclops-Death-R7": 144593791, - "Guest_GH-Cyclops-Death-R6": 594236619, - "Guest_Cyclops-BlueHelmet-KTBoss-L03": 1720105277, - "Guest_Cyclops-Red-L12": 1816429840, - "Guest_MR_Cyclops02WHelmet_Model_01": 1483732416, - "Guest_Cyclops-Blue-L02": 1633021234, - "Guest_Cyclops-BlueHelmet-WCBoss-L03": 427378332, - "Guest_Cyclops-RedHelmet-WCBoss-L03": 2021269422, - "Guest_HG_Sinbad_Cyclops_25": 911979034, - "Guest_HG_Sinbad_Cyclops_50": 1856261606, - "Guest_HG_Sinbad_Cyclops_75": 861647386, - "Guest_HG_Sinbad_Cyclops_100": 1789152678, - "Guest_HG_Sinbad_Cyclops_130": 178539942, - "Guest_HG_Sinbad_IronSultan_25": 930031152, - "Guest_HG_Sinbad_IronSultan_50": 930051504, - "Guest_HG_Sinbad_IronSultan_75": 930030768, - "Guest_HG_Sinbad_IronSultan_100": 927954864, - "Guest_HG_Sinbad_IronSultan_130": 927942576, - "MNT_SweetRide": 1643297840, - "PP_FrilledDino": 1395342809, - "PP_Celestian": 95679303, - "PP_Sun_Angry": 1955190071, - "PP_Marshmallow": 1220667954, - "MNT_Umbrella_B": 923364822, - "MNT_Tamer": 1050737194, - "PP_BumbleBee_B": 858653433, - "MNT_PunkFlamingo": 1634690818, - "MNT_2P_WoolyRhino": 1395943031, - "PP_Retriever": 72842604, - "PP_Piggle_Caveman": 181356174, - "PP_DecennialDragon": 1396523337, - "MNT_Tiger_Rainbow": 515535412, - "MNT_CarrierGhosts": 1833039309, - "MNT_Sled": 617654308, - "Transformation_BG_RatThief_Death": 30691641, - "Transformation_BG_Elf_Storm": 44352983, - "Transformation_BG_WolfWarrior_Ice": 986304351, - "MNT_CarriorGhost_B": 1768732109, - "MNT_CarriorGhost_C": 1766634957, - "Transformation_BG_Colossus_Fire": 1318803522, - "Transformation_BG_Krok_Balance": 140952965, - "Guest_KM_Gobbler_Skinny_A_11": 773648065, - "Guest_KM_Robot_Candy_A_01": 480414124, - "Guest_KM_Robot_Candy_A_02": 530745772, - "Guest_KM_Robot_Candy_A_03": 513968556, - "Guest_KM_Robot_Candy_A_04": 430082476, - "Guest_KM_Robot_Candy_A_05": 413305260, - "Guest_KM_Gummy_Bear_A_01": 1940905059, - "Guest_KM_Gummy_Bear_D_01": 1940905011, - "Guest_KM_Gummy_Bear_E_01": 1940904995, - "Guest_KM_Gummy_Bear_A_02": 1941429347, - "Guest_KM_Gummy_Bear_D_02": 1941429299, - "Guest_KM_Gummy_Bear_E_02": 1941429283, - "Guest_KM_Gummy_Bear_B_01": 1940905043, - "Guest_KM_Gummy_Bear_B_02": 1941429331, - "Guest_KM_Gummy_Bear_B_03": 1941953619, - "Guest_KM_Gummy_BearHat_A_01": 853226448, - "Guest_KM_Gummy_BearHat_A_02": 853226460, - "Guest_KM_Gummy_Bunny_A_01": 324805042, - "Guest_KM_Gummy_Bunny_C_01": 324806066, - "Guest_KM_Gummy_Bunny_D_01": 324807602, - "Guest_KM_Gummy_Bunny_E_01": 324807090, - "Guest_KM_Gummy_Bunny_F_01": 324808626, - "Guest_KM_Gummy_BunnyUber_A_01": 525565930, - "Guest_KM_Gummy_Worm_A_01": 231044195, - "Guest_KM_Gummy_Worm_B_01": 231044179, - "Guest_KM_Gummy_Worm_C_01": 231044163, - "Guest_KM_Gummy_Worm_A_02": 232617059, - "Guest_KM_Gummy_Worm_B_02": 232617043, - "Guest_KM_Gummy_Worm_C_02": 232617027, - "Guest_KM_Gummy_Bear_F_01": 1940904979, - "Guest_KM_Gummy_Bear_F_02": 1941429267, - "Guest_KM_Gummy_Bunny_C_02": 274474418, - "Guest_KM_Robot_Candy_A_06": 463636908, - "Guest_KM_Alphoi_DarkF_A_01": 475441543, - "Guest_KM_Gobbler_Skinny_A_01": 773648069, - "Guest_KM_Gobbler_Skinny_A_02": 773648197, - "Guest_KM_Gobbler_Skinny_A_03": 773648325, - "Guest_KM_Gobbler_SkinnyF_A_01": 254411012, - "Guest_KM_Gobbler_Skinny_A_04": 773647429, - "Guest_KM_Gobbler_Skinny_A_05": 773647557, - "Guest_KM_Gobbler_Skinny_A_06": 773647685, - "Guest_KM_Gobbler_SkinnyF_A_02": 254423300, - "Guest_KM_Gobbler_Skinny_A_07": 773647813, - "Guest_KM_Gobbler_Skinny_A_08": 773646917, - "Guest_KM_Gobbler_Skinny_A_09": 773647045, - "Guest_KM_Gobbler_SkinnyF_A_03": 254419204, - "Guest_KM_Gobbler_Fat_A_01": 1440595742, - "Guest_KM_Gobbler_Fruit_B_01": 1236446660, - "Guest_KM_Gobbler_Fruit_A_01": 1235922372, - "Guest_KM_Gobbler_Guard_B_01": 1435667582, - "Guest_KM_Gobbler_Skinny_A_10": 773647937, - "Transformation_PlayerBabyCarrot": 1580787628, - "Transformation_PlayerDeadBeet": 1992261692, - "Transformation_PlayerDisparagus": 373797484, - "Transformation_PlayerSnowPeas": 634199102, - "PP_Snowflake": 2036143125, - "PP_GummyBear_Myth": 117787890, - "PP_GummyBear_Death": 236577760, - "PP_GummyBear_Balance": 2100524337, - "PP_GummyBear_Life": 118020336, - "PP_GummyBear_Fire": 117995748, - "PP_GummyBear_Storm": 247437198, - "PP_GummyBear_Ice": 122536570, - "MNT_SnowOwl": 1578473542, - "Guest_KM_Gummy_Bear_Uber_A_01": 1856208859, - "Guest_KM_Gummy_Bear_Uber_A_02": 1856196571, - "MNT_ChocolateMoose": 567538552, - "MNT_Ram_Candied": 1913603720, - "Guest_KM_Spider_Mage_A_01": 1529720120, - "Guest_KM_Spider_Mage_B_01": 1529719608, - "Guest_KM_Spider_Mage_C_01": 1529719096, - "Guest_KM_Spider_Mage_D_01": 1529718584, - "Guest_KM_Spider_Mage_E_01": 1529718072, - "PP_SpriteDark_Balance": 914900728, - "MNT_Tricycle": 991465753, - "Guest_Tri-Gauntlet-Protector-Gold": 2029952053, - "Guest_Tri-Gauntlet-FishbotGold": 130267882, - "Guest_HG-Clock-Clockworker-20": 281216243, - "Guest_HG-Clock-Clockworker-40": 281217011, - "Guest_HG-Clock-Clockworker-60": 281216755, - "Guest_HG-Clock-Clockworker-80": 281215475, - "Guest_HG-Clock-Clockworker-100": 283313523, - "Guest_HG-Clock-Clockworker-120": 283321715, - "Guest_HG-Clock-Lugs-20": 1452756928, - "Guest_HG-Clock-Lugs-40": 1452756960, - "Guest_HG-Clock-Lugs-60": 1452756992, - "Guest_HG-Clock-Lugs-80": 1452756768, - "Guest_HG-Clock-Lugs-100": 1452494736, - "Guest_HG-Clock-Lugs-120": 1452493712, - "Guest_HG-Clock-Lucia-20": 1041451626, - "Guest_HG-Clock-Lucia-40": 1041450602, - "Guest_HG-Clock-Lucia-60": 1041449578, - "Guest_HG-Clock-Lucia-80": 1041456746, - "Guest_HG-Clock-Lucia-100": 1049840746, - "Guest_HG-Clock-Lucia-120": 1049873514, - "Guest_KM_Gummy_Worm_A_03": 232092771, - "MNT_Scooter_E": 200254340, - "PP_WolfWarrior_Balance": 991302673, - "PP_PetGift": 1816280689, - "PP_RatThief": 1390866051, - "Guest_PL_Titan_Small_A": 2015819364, - "Guest_PL_Titan_Large_B": 699791264, - "Guest_PL_Titan_Medium_A": 326730424, - "PP_Draconian": 1631557208, - "MNT_Pantera_Astral": 106092538, - "PP_YearOx": 105653084, - "PP_WolfWarrior_Ice": 1043644935, - "PP_SpriteDark": 2031730054, - "PP_Brudel": 1355697143, - "MNT_Astronomers": 742732792, - "MNT_CouchPotato": 418050932, - "MNT_Flowerfarthing": 1396771051, - "MNT_Astronomers_Blue": 236532779, - "MNT_Astronomers_Rainbow": 4428274, - "PP_Astronomer": 782095961, - "Guest_KM_Gummy_Bunny_B_01": 324806578, - "Guest_KM_DeadBeets_A_01": 1396016635, - "MNT_GummyBunny": 775900704, - "MNT_GummyBunny_A": 775834080, - "MNT_GummyBunny_B": 775836128, - "MNT_GummyBunny_C": 775838176, - "Transformation_BG_Minotaur_Life": 1445109091, - "MNT_Armadillo": 825635826, - "PP_SootGremlin": 768969093, - "PP_RoadRunner": 2057802060, - "MNT_TinyTrolly": 160881792, - "PP_Frog_B": 1530124761, - "MNT_FjordDragon": 129204340, - "Transformation_BG_NinjaPig_Myth": 422914079, - "PP_CorgiPup": 1638656105, - "MNT_Skateboard": 728018224, - "PP_Krokomummy": 326396577, - "MNT_Vroom": 1736383110, - "MNT_PlayerWings_AtralRaven": 1514774167, - "PP_Blimp": 690882397, - "Guest_GH_WoodenSkeletonKey_Boar_Boss_Grey_01": 678055851, - "Guest_GH_StoneSkeletonKey_Boar_Boss_Grey_01": 571670691, - "Guest_GH_GoldSkeletonKey_Boar_Boss_Grey_01": 961728819, - "MNT_Cloud_Promo_AW_01": 2032670992, - "Guest_EM_Hornet_Burner_A_01": 1881854632, - "Guest_EM_Hornet_Burner_A_02": 1881854636, - "Guest_EM_Hornet_Zapper_A_01": 2058539689, - "Guest_EM_Hornet_Zapper_A_02": 2058539685, - "Guest_EM_Ant_Giant_D_01": 379386121, - "Guest_EM_Ant_Giant_A_02": 1768146677, - "Guest_EM_Ant_Giant_A_01": 1768097525, - "Guest_EM_Ant_Giant_B_01": 379386122, - "Guest_KR_Moth_Priest_G_Achera": 381233569, - "Guest_KR_BeeMonsterF_A": 135146211, - "Guest_KR_BeeMonsterF_A_Weak": 1824123847, - "Guest_KR_Bee_Warrior_A": 1569202664, - "Guest_KR_Bee_Warrior_B": 1569204200, - "Guest_KR_Bee_Warrior_C_BossDrones": 1217189631, - "Guest_KR_Bee_Warrior_D": 1569205224, - "Guest_KR_Bee_Warrior_E": 1569204712, - "Guest_KR_Bee_Warrior_G": 1569205736, - "Guest_KR_Bee_Warrior_G_BossFight": 1055035476, - "Guest_KR_Bee_Warrior_H": 1569207272, - "Guest_KR_Bee_Warrior_I": 1569206760, - "Guest_KR_Bee_Warrior_L": 1569209320, - "Guest_KR_Bee_Warrior_M": 1569208808, - "Guest_KR_DragonBeetle_Monster_A": 1777853782, - "Guest_KR_Hornet_Drone_A": 1161590757, - "Guest_KR_Hornet_Drone_B": 1161607141, - "Guest_KR_Hornet_Drone_C": 1161623525, - "Guest_KR_Hornet_Drone_D": 1161639909, - "Guest_KR_Hornet_Drone_E": 1161656293, - "Guest_KR_Lice_DeepSpawn_A": 761604959, - "Guest_KR_Mantis_HunterF_A": 820917199, - "Guest_KR_Mantis_HunterF_B": 871248847, - "Guest_KR_Mantis_HunterF_C": 854471631, - "Guest_KR_Mantis_HunterF_D": 904803279, - "Guest_KR_Mantis_HunterF_F": 938357711, - "Guest_KR_Mantis_HunterF_F_Driftwood": 2053608437, - "Guest_KR_Mantis_HunterF_G": 921580495, - "Guest_KR_Mantis_HunterF_H": 971912143, - "Guest_KR_Mantis_HunterF_I": 955134927, - "Guest_KR_Mantis_HunterF_I_Zuzka": 935478878, - "Guest_KR_Mantis_HunterF_J": 1005466575, - "Guest_KR_Mantis_HunterF_J_Zelda": 886910558, - "Guest_KR_Mantis_HunterF_K": 988689359, - "Guest_KR_Mantis_HunterF_K_LongShd": 1767574336, - "Guest_KR_Mantis_HunterF_L": 1039021007, - "Guest_KR_Mantis_HunterF_M": 1022243791, - "Guest_KR_Mantis_HunterF_P_Bossfight": 1731428987, - "Guest_KR_Mantis_HunterF_Q": 552481743, - "Guest_KR_Mantis_HunterF_R": 602813391, - "Guest_KR_Mantis_HunterF_S": 586036175, - "Guest_KR_Mantis_HunterF_SecondColumnCpt_A": 1354033994, - "Guest_KR_Mantis_HunterF_T": 636367823, - "Guest_KR_Mantis_HunterF_Tribute": 1946371041, - "Guest_KR_Mantis_HunterF_U": 619590607, - "Guest_KR_Mantis_HunterF_V": 669922255, - "Guest_KR_Mantis_HunterF_W": 653145039, - "Guest_KR_Mantis_HunterF_Y": 686699471, - "Guest_KR_Mantis_HunterF_Z_Officer": 206016474, - "Guest_KR_Mantis_ProphetF_B": 1791139097, - "Guest_KR_Mantis_ProphetF_C": 1254268185, - "Guest_KR_Milipede_Warrior_A": 410726278, - "Guest_KR_Milipede_Warrior_B": 410726282, - "Guest_KR_Milipede_Warrior_C": 410726286, - "Guest_KR_Milipede_Warrior_D": 410726290, - "Guest_KR_Milipede_Warrior_H": 410726306, - "Guest_KR_Milipede_Warrior_J": 410726314, - "Guest_KR_Milipede_Warrior_K": 410726318, - "Guest_KR_Moth_Priest_A": 1421532604, - "Guest_KR_Moth_Priest_B": 1421532092, - "Guest_KR_Moth_Priest_C": 1421531580, - "Guest_KR_Moth_Priest_D": 1421531068, - "Guest_KR_Moth_Priest_D_Drepa": 1483393420, - "Guest_KR_Moth_Priest_E": 1421530556, - "Guest_KR_Moth_Priest_F": 1421530044, - "Guest_KR_Mantis_HunterF_Z": 737031119, - "Guest_KR_Roach_AntLion_A": 1860517987, - "Guest_KR_Roach_AntLion_B_Bossfight": 993284625, - "Guest_KR_Roach_AntLion_C": 1861566563, - "Guest_KR_Roach_Cook_A": 259847495, - "Guest_KR_Roach_Glutton_B": 249524334, - "Guest_KR_Roach_WaterBug_A": 1795473599, - "Guest_KR_Roach_WaterBug_B": 1745141951, - "Guest_MR_Beetle_Scarab_A_01": 1789741503, - "Guest_MR_Beetle_Scarab_A_02": 1789741491, - "Guest_MR_Beetle_Scarab_B_01": 1790265791, - "Guest_ZF-Goliath-R10-Boss-01": 7034074, - "Guest_ZF-Goliath-R10-Boss-02": 7034202, - "Guest_ZF-Goliath-R10-Boss-03": 7034330, - "Guest_ZF-Goliath-R10-Boss": 1603576807, - "Guest_ZF-Goliath-R11-Boss-01": 2140449574, - "Guest_ZF-Goliath-R11-Boss-02": 2140449446, - "Guest_ZF-Goliath-R11-Boss-03": 2140449318, - "Guest_ME1_Ant_Aunt_A": 707251855, - "Guest_ME1_Ant_Aunt_B": 1440231794, - "Guest_CC_Fly_Worker_A_01": 1497784524, - "Guest_CC_Roach_Worker_A_01": 1026321602, - "Guest_CC_Roach_Lieutenant_A_01": 1081690299, - "Guest_CC_Roach_Lieutenant_B_01": 1081690295, - "Guest_CC_Roach_Don_A_01": 547836893, - "Guest_CC_Roach_BBug_A_01": 1021150157, - "Guest_CC_Roach_RoachSteady_A_01": 859409247, - "Guest_Draconian-Caster-Yellow-Boss-R8": 1016221419, - "Guest_Draconian-Zombie-R8-2-1": 1226055265, - "Guest_Draconian-Zombie-R8-2": 1226115297, - "Guest_Draconian-Caster-Green-R7": 2143342719, - "Guest_Draconian-Warrior-Gold-Boss-R8": 1044388248, - "Guest_Draconian-Caster-Gray-R7": 95878769, - "Guest_DS-Boss-MAW": 1676071241, - "Guest_Draconian-Zombie-R8-1": 1226115309, - "Guest_Draconian-Warrior-Purple-Boss-R7": 601813964, - "Guest_Draconian-Caster-Tan-Boss-R7": 1973339532, - "Guest_Draconian-Caster-Blue-R6": 1684210173, - "Guest_Draconian-Caster-Yellow-R8": 2129956646, - "Guest_Draconian-Warrior-Red-R7": 521861944, - "Guest_Draconian-Warrior-Tan-R6": 1726416112, - "Guest_Draconian-Warrior-Purple-R8": 1896270341, - "Guest_Draconian-Caster-Blue-Boss-R7": 401581134, - "Guest_Draconian-Zombie-R8": 384497496, - "Guest_GH2-Draconian-HENCH-R10": 1149202878, - "Guest_GH2-Draconian-BOSS-R10": 2114378473, - "Guest_G14-DM-Draconian_Boss": 490246211, - "Guest_G14-DM-Draconian_Storm": 2035239226, - "Guest_G14-DM-Draconian_Ice": 782200563, - "Guest_G14-DM-Draconian_Malistaire_M": 1904691727, - "Guest_G14-DM-Draconian_Malistaire_S": 1904685583, - "Guest_G14-DM-Draconian_Malistaire_D": 1904700943, - "Guest_G14-DM-Draconian_Malistaire": 1904736751, - "Guest_G14-DM-Draconian_Malistaire_B": 1904702991, - "Guest_G14-DM-Draconian_Malistaire_I": 1904695823, - "Guest_G14-DM-Draconian_Malistaire_L": 1904692751, - "Guest_G14-DM-Draconian_Malistaire_F": 1904698895, - "Guest_Draconian-PW-Gauntlet-Boss": 493080513, - "Guest_CC_Draconian_A_01": 551348115, - "Guest_AZ-Parasaur-Undead-E": 2041242846, - "Guest_AZ-Parasaur-drkPriestF-F": 898239615, - "Guest_EM_Parasaur_DrkPriestF_A_01": 1007099606, - "Guest_EM_Parasaur_DrkPriestF_A_02": 1007099605, - "Guest_AZ-Parasaur-drkPriestF-D": 898501759, - "Guest_AZ-Parasaur-drkPriestF-E": 898370687, - "Guest_AZ-Parasaur-drkPriestF-A": 897846399, - "Guest_AZ-Parasaur-Undead-B": 1716853538, - "Guest_AZ-Parasaur-Undead-A": 106240802, - "Guest_AZ-Parasaur-Undead-G": 967501022, - "Guest_AZ-Parasaur-PriestF-D": 1177445525, - "Guest_AZ-Parasaur-Undead-C": 1179982626, - "Guest_AZ-Parasaur-drkPriestF-C": 897584255, - "Guest_AZ-Parasaur-Undead-SkurkisMinion": 1414766977, - "Guest_AZ-Parasaur-drkPriestF-B": 897715327, - "Guest_AZ-Parasaur-drkPriestF-B-Script": 1414847875, - "Guest_AZ_Parasaur_Priest_A_Boss_01": 890025421, - "Guest_AZ-Parasaur-Undead-D": 1504371934, - "Guest_AZ-Pteranodon-Knight-D": 1127364049, - "Guest_AZ-StoneSkeletonKey-Ixcax-Cursedwing": 699239601, - "Guest_AZ-Pteranodon-Knight-E": 1127363921, - "Guest_AZ-Pteranodon-Knight-F": 1127363793, - "Guest_AZ-Pteranodon-Knight-A-PageEvent": 942589002, - "Guest_AZ-StoneSkeletonKey-Minion-Death": 311645584, - "Guest_AZ-Pteranodon-Knight-A": 1127364433, - "Guest_AZ-Raptor-Wraith-A": 585729247, - "Guest_AZ-Raptor-Undead-D": 893623689, - "Guest_G14-HS-Ifzt": 1914694612, - "Guest_AZ-Raptor-Warrior-A": 855749884, - "Guest_AZ-Raptor-Undead-C": 897293705, - "Guest_AZ-Raptor-Undead-B": 896769417, - "Guest_AZ-Raptor-Undead-F": 894672265, - "Guest_AZ-Raptor-Warrior-F": 872527100, - "Guest_AZ-Raptor-Warrior-H": 973190396, - "Guest_AZ-Tritops-Warrior-I": 1942669769, - "Guest_AZ-Tritops-Undead-H": 1215305911, - "Guest_AZ-Tritops-Undead-E": 1164974263, - "Guest_AZ-Tritops-SpkWarrior-A": 860850257, - "Guest_AZ-Tritops-SpkWarrior-B": 860862545, - "Guest_AZ-Tritops-Undead-F": 1181751479, - "Guest_AZ-Tritops-Warrior-K": 868927945, - "Guest_AZ-Tritops-Undead-G": 1198528695, - "Guest_AZ-Tritops-Mummy-A": 1912444877, - "Guest_AZ-Tritops-Warrior-G": 1278555704, - "Guest_AZ-Tritops-Undead-D": 1148197047, - "Guest_AZ-Tritops-Undead-A": 1097865399, - "Guest_AZ-Tritops-SpkChief-B": 2096319577, - "Guest_AZ-Tritops-Mummy-B": 1910872013, - "Guest_AZ-Tritops-Warrior-H": 1405798857, - "Guest_AZ-Dino-Undead-A": 508678670, - "Guest_AZ-Dino-Undead-B": 508679182, - "Guest_AZ-Dino-Undead-D": 508680206, - "Guest_KR_Dino_Undead_A": 1638800628, - "Guest_KR_Dino_Undead_Minion_A": 892450235, - "MNT_HayRideTruck": 75377404, - "MNT_ShadowSpiderForm": 1439860426, - "Transformation_BG_Draconian_Death": 794598804, - "PP_BabyOrca": 1056061090, - "Transformation_BG_Cyclops_Fire": 638854828, - "Transformation_BG_Fairy_Ice": 874078461, - "PP_SpriteLife": 1824998010, - "PP_Raccoon": 1107326808, - "PP_FireKitten": 593048189, - "MNT_SkeletalDuck": 1306273036, - "PP_VampireSquid": 431023109, - "PP_CottonCandy": 891201813, - "PP_ThreeHeadGoat": 1282096939, - "PP_EyeBot": 260189248, - "MNT_DeathBoat": 1444454568, - "MNT_Lemuria": 908974762, - "MNT_DeathBoat_B": 1444456538, - "MNT_DeathBoat_C": 1444456474, - "MNT_Spooky3": 1667775622, - "MNT_PresentBox": 122082000, - "MNT_Orca": 1726961653, - "Guest_LM_Golem_Steel_A_01": 19551853, - "Guest_LM_Golem_Steel_A_02": 36329069, - "Guest_LM_EyeBot_A_01_Death": 380508535, - "Guest_LM_EyeBot_A_01_Myth": 167840640, - "PP_ThreeHeadGoat_B": 1209286443, - "PP_ThreeHeadGoat_C": 1211383595, - "Guest_KR_Eel_Whirligig_A": 1062268734, - "Guest_KR_Goliath_Behemoth_A": 1231139987, - "Guest_KR_Goliath_Behemoth_C": 1231139995, - "Guest_KR_Goliath_Behemoth_D": 1231139975, - "Guest_KR_Goliath_Behemoth_E": 1231139971, - "Guest_KR_Goliath_Behemoth_H": 1231140023, - "Guest_KR_Goliath_Crusher_C": 1651720060, - "Guest_KR_Goliath_Crusher_D": 2106376324, - "Guest_KR_Goliath_Crusher_F": 1032634500, - "Guest_KR_Goliath_Crusher_G": 495763588, - "Guest_KR_Goliath_Crusher_K": 1651720059, - "Guest_AZ-Goliath-Crusher-A": 1874784966, - "Guest_AZ-Goliath-Crusher-B": 264172230, - "Guest_AZ-Goliath-Crusher-C": 801043142, - "Guest_AZ-Goliath-Crusher-D": 809569594, - "Guest_AZ-Goliath-Crusher-E": 272698682, - "Guest_HG_AKT_Butterfly_Time_A_25": 1788523059, - "Guest_HG_AKT_Butterfly_Time_A_50": 1130017331, - "Guest_HG_AKT_Butterfly_Time_A_75": 1809494579, - "Guest_HG_AKT_Butterfly_Time_A_100": 1113240099, - "Guest_HG_AKT_Butterfly_Time_A_130": 1515893283, - "MNT_DeathBoat_D": 1444456922, - "Guest_KR_RhinoBeetle_Sun_A_Bossfight": 47895417, - "Guest_KR_RhinoBeetle_Star_A": 1947510103, - "Guest_KR_RhinoBeetle_Moon_A": 1751275863, - "Guest_ME1_Clockwork_Marine_A": 1481452452, - "Guest_ME1_Clockwork_Marine_B": 1481452068, - "Guest_CC_GoldSkeletonKey_Lice_DeepSpawn_B": 1306132994, - "Guest_KR_DamdinBazar_A_Bossfight": 1333596311, - "Guest_DS-Minion-MAW2": 356796677, - "Guest_KH-Wyrmling-1": 116330513, - "Guest_KH-Wyrmling-20": 183439385, - "Guest_KH-Wyrmling-40": 317657113, - "Guest_KH-Wyrmling-60": 451874841, - "Guest_KH-Wyrmling-80": 586092569, - "Guest_PL_Polar_Bear_Solider_C": 1785662565, - "Guest_Skeleton-Silver-WCBoss-L01": 17766963, - "Guest_Banshee-Red-Elite-L24_B": 1902069117, - "Transformation_BG_WolfWarrior_Myth": 339098032, - "Transformation_BG_RatThief_Balance": 881728218, - "Transformation_BG_Colossus_Storm": 593527492, - "Transformation_BG_Elf_Life": 347405087, - "Transformation_BG_Minotaur_Ice": 1197752291, - "MNT_TRex_B": 660285500, - "PP_SpriteDark_Ice": 2036248504, - "MNT_RollingBall": 1658139390, - "Guest_LM_TRex_Base_A_03": 1378630657, - "Guest_LM_TRex_Base_A_04": 1378745345, - "Guest_LM_TRex_Base_A_05": 1378728961, - "Guest_LM_TRex_Base_A_01": 1378663425, - "Guest_LM_TRex_Base_A_02": 1378647041, - "Guest_LM_TRex_Cyborg_A_01": 151609741, - "Guest_LM_TRex_Cyborg_A_02": 168386957, - "Guest_LM_TRex_Cyborg_A_03": 185164173, - "Guest_LM_TRex_Cyborg_B_01": 151611277, - "Guest_LM_TRex_Cyborg_D_01": 151612301, - "Guest_LM_TRex_Cyborg_E_01": 151611789, - "Guest_LM_TRex_Cyborg_C_01": 151610765, - "Guest_LM_Draconian_Base_A_01": 1607373112, - "Guest_LM_EyeBot_B_01": 1085543056, - "Guest_LM_Drone_Eye_C_01": 916954037, - "Guest_LM_Drone_Eye_D_01": 1230529608, - "Guest_LM_Drone_Eye_D_02": 1230545992, - "Guest_LM_Drone_Eye_D_04": 1230578760, - "Guest_LM_Drone_Eye_D_03": 1230562376, - "Guest_LM_Drone_Eye_A_01": 916954038, - "Guest_LM_Drone_Eye_A_02": 916937654, - "Guest_LM_Drone_Eye_B_01": 1230529611, - "Guest_LM_Drone_Eye_D_05": 1230595144, - "Guest_LM_Drone_Eye_D_07": 1230627912, - "Guest_LM_Drone_Eye_D_08": 1230644296, - "Guest_LM_Drone_Eye_A_03": 916921270, - "Guest_LM_Drone_Eye_A_04": 916904886, - "Guest_LM_Drone_Eye_C_02": 916937653, - "Guest_LM_EyeBot_B_02": 1061940593, - "Guest_LM_EyeBot_B_03": 1085543055, - "Guest_LM_EyeBot_B_04": 1061940594, - "Guest_LM_Drone_Eye_C_03": 916921269, - "Guest_LM_Robot_Kit10_A_01": 199936400, - "Guest_LM_Colossus_Mander_A_01": 2107529026, - "Guest_LM_Robot_Future_A_01": 998840846, - "Guest_LM_Robot_FutureBIG_A_01": 340408568, - "Guest_LM_Robot_FutureBIG_A_02": 340396280, - "Guest_LM_Robot_FutureBIG_A_03": 340400376, - "Guest_LM_Robot_OldOne_A_01": 779070973, - "Guest_LM_Robot_OldOne_A_02": 1315941885, - "Guest_LM_Millipede_Centi_A_01": 168575797, - "Guest_LM_Millipede_Centi_A_03": 168583989, - "Guest_LM_Millipede_Centi_A_02": 168588085, - "Guest_LM_Millipede_Centi_A_04": 168563509, - "Guest_LM_Moth_Sorcerer_A_01": 228191136, - "Guest_LM_Boar_Barbarian_A_01": 1238634912, - "Guest_LM_Boar_Barbarian_A_02": 1238634528, - "Guest_LM_Boar_Barbarian_A_03": 1238634656, - "Guest_LM_Boar_Barbarian_A_04": 1238635296, - "Guest_LM_Boar_Barbarian_A_05": 1238635424, - "Guest_LM_Boar_Chief_A_01": 357051311, - "Guest_LM_Fungus_Humango_A_01": 1398460044, - "Guest_LM_Fungus_Humango_A_02": 1398460172, - "Guest_LM_Treant_Base_A_01": 1658172241, - "Guest_LM_GiantTree_EvilRoots_A_01": 282225934, - "Guest_LM_PA_GreenMan_A_01": 67705044, - "Guest_LM_Fungus_Humango_B_01": 1348128396, - "Guest_LM_Fungus_Humango_A_03": 1398460300, - "Guest_LM_Fungus_Man_C_01": 1648824156, - "Guest_LM_Fungus_Man_C_02": 1650397020, - "Guest_LM_Rhino_Zombie_A_01": 248513993, - "Guest_LM_Malughast_Base_01": 883820436, - "Guest_LM_Malughast_Base_02": 1420691348, - "Guest_LM_Lemur_HierarchF_H_04": 231562115, - "Guest_LM_Malughast_Base_03": 1957562260, - "Guest_LM_Malughast_Base_05": 1263663212, - "Guest_LM_Malughast_Base_06": 726792300, - "Guest_LM_Malughast_Base_08": 346949523, - "Guest_LM_Malughast_Base_09": 883820435, - "Guest_LM_Malughast_Base_04": 1800534124, - "Guest_LM_Minotaur_Skeleton_A_01": 1865122824, - "Guest_LM_Lemur_Wild_B_03": 1783764037, - "Guest_LM_Lemur_HierarchF_H_01": 231541635, - "Guest_LM_Lemur_HierarchF_H_02": 231553923, - "Guest_LM_Mander_Warrior_A_01": 1651245419, - "Guest_LM_Mander_Warrior_A_02": 1651245291, - "Guest_LM_Mander_Warrior_B_01": 1634468203, - "Guest_LM_Mander_Warrior_B_02": 1634468075, - "Guest_LM_Mander_Warrior_A_03": 1651245163, - "Guest_LM_Mander_Warrior_B_03": 1634467947, - "Guest_LM_Mander_Warrior_A_06": 1651245803, - "Guest_LM_Mander_Warrior_A_05": 1651245931, - "Guest_LM_Mander_Mummy_B_01": 1844111521, - "Guest_LM_Mander_Hero_B_01": 865113284, - "MNT_HolidayHippogriff": 938892112, - "MNT_Sabertooth_Ice": 1870381696, - "PP_FenrisWolf_Bantam": 776647759, - "MNT_JetPack": 1986300552, - "MNT_Scooter_F": 1005560708, - "PP_FossaKitten_A": 431748212, - "PP_Elfvis": 147991405, - "Guest_LM_Chicken_Hero_A_01": 1308728300, - "Guest_LM_Horse_Explorer_A_01": 434405482, - "Guest_LM_Duck_HeroineF_A_01": 133199186, - "Guest_LM_Crane_Hero_A_01": 204272548, - "Guest_LM_Deer_HeroineF_A_01": 1800374959, - "Guest_LM_Deer_Hero_A_01": 223109503, - "Guest_LM_Dog_Hero_A_01": 1434615064, - "PP_YearTiger": 777048708, - "MNT_Barrel": 3576425, - "MNT_Krampus": 404117611, - "PP_ChineseTigerCub": 1256032005, - "PP_Lemur": 565774155, - "PP_Robot": 1089075331, - "PP_Capybara": 451970762, - "Guest_LM_Ghoul_Base_A_01": 1822415945, - "Guest_LM_Lemur_HierarchF_H_03": 231549827, - "Guest_LM_Ghoul_Base_A_02": 1820843081, - "Guest_LM_Ghoul_Base_A_03": 1821367369, - "MNT_SpringSoF2022": 1685679511, - "MNT_WarElephant": 875015497, - "PP_Strix": 514230046, - "MNT_Beachball": 791896033, - "MNT_Blank": 633398131, - "MNT_CardboardFlier": 1646636689, - "MNT_LochMonster": 879660722, - "Transformation_BG_Krok_Death": 1395067182, - "Transformation_BG_Draconian_Fire": 1551581732, - "PP_Scotty": 1708580475, - "Guest_KR_Mice_Knight_A": 480101508, - "PP_Peacock": 1178721112, - "MNT_PoodleMoth": 975420235, - "PP_Hummingbird": 624666906, - "PP_WolfWarrior_Myth": 470737416, - "Guest_HG_UFD_Ghost_QueenF_A_100": 795323059, - "Guest_HG_UFD_Ghost_QueenF_A_50": 728230579, - "Guest_HG_UFD_Pirate_UndeadHighland_A_Balance_150": 201145133, - "Guest_HG_UFD_Pirate_UndeadHighland_A_Balance_100": 201144941, - "Guest_HG_UFD_Pirate_UndeadHighland_A_Balance_50": 201177701, - "Guest_HG_UFD_Pirate_UndeadHighland_A_Star_150": 1329885920, - "Guest_HG_UFD_Pirate_UndeadHighland_A_Star_100": 1304720096, - "Guest_HG_UFD_Pirate_UndeadHighland_A_Star_50": 1305768671, - "Guest_HG_UFD_Pirate_UndeadHighland_A_Shadow_150": 1263689971, - "Guest_HG_UFD_Pirate_UndeadHighland_A_Shadow_100": 1263689977, - "Guest_HG_UFD_Pirate_UndeadHighland_A_Shadow_50": 189949177, - "Guest_HG_UFD_Kelpie_Warrior_A_150": 54296095, - "Guest_HG_UFD_Kelpie_Warrior_A_100": 725384735, - "Guest_HG_UFD_Kelpie_Warrior_A_50": 708607503, - "Guest_HG_UFD_Pirate_UndeadHighland_B_150": 1099317831, - "Guest_HG_UFD_Pirate_UndeadHighland_B_100": 25576008, - "Guest_HG_UFD_Pirate_UndeadHighland_B_50": 159793864, - "Guest_HG_UFD_Ghost_QueenF_A_150": 795716275, - "PP_SpiderMinion": 557357331, - "MNT_Vines_Rainbow": 1587180338, - "MNT_YoungDrake": 1279496198, - "PP_Pet_Coconut": 444388490, - "DragonKI": 1490194214, - "PP_Sharkfish": 601628284, - "PP_MimicCake": 48071878, - "Guest_AQ-Bronze-Eagle": 375279744, - "Guest_Spider-Brown-L26": 2128680185, - "Guest_KR_Spider_Giant_D": 744401035, - "Guest_Wizard-Female-Band-Blue-R8": 1447486557, - "Guest_CC_Human_DSCrusaderF_A_01": 726538068, - "Guest_WC_Scarecrow_A_01": 867491011, - "Guest_WC_Banshee_A_01": 1433786463, - "Guest_WC_LostSoul_A_01": 796936146, - "PP_Fairy_Myth": 1117624344, - "PP_SpriteDark_Myth": 1884257976, - "BG_CyclopsLife_A": 944091673, - "Transformation_BG_NinjaPig_Storm": 2005137181, - "Transformation_BG_Fairy_Myth": 1880704188, - "Transformation_BG_Cyclops_Life": 638936708, - "Guest_AQ-Eagle-Praetorian": 1988013806, - "Guest_KM_BabyCarrot_A_01": 766239512, - "Guest_G14-DM-Gargoyle": 282898047, - "Guest_MR_Durvish_Sergeant_A_Boss_01": 1532609325, - "Guest_Cyclops-RedHelmet-KTBoss-L28": 2072371506, - "Guest_EM_Pig_Singer_A_01": 698597069, - "Guest_EM_Pig_Captain_A": 977505995, - "Guest_EM_Pig_Crewman_A": 465576459, - "PP_ChipmunkConductor": 1089819900, - "PP_LuckyCat": 1109326826, - "MNT_ImpCar": 1736092191, - "MNT_Book": 1547655078, - "MNT_JackoLantern": 649919658, - "MNT_Zheng": 742453108, - "MNT_Train": 413197899, - "MNT_Cerberus": 552686313, - "PP_Coconut": 1122741587, - "Transformation_Statue": 1153168084, - "Transformation_Nullity": 622504394, - "PP_Irk": 1825277392, - "Guest_Wyrmling-Fire-R8-1": 531485009, - "MNT_WolfLowPoly_A": 1947890962, - "MNT_WolfLowPoly_B": 1947825426, - "Transformation_BG_RatThief_Fire": 1169330235, - "Transformation_BG_WolfWarrior_Death": 159966683, - "Transformation_BG_Minotaur_Balance": 657855108, - "Transformation_BG_Draconian_Ice": 1907339814, - "Transformation_BG_Colossus_Myth": 1305894338, - "Transformation_NV_Penguin": 1757096851, - "Transformation_NV_Unicorn": 60447768, - "Transformation_NV_Monkey": 1379873688, - "Transformation_NV_Dog": 1961288968, - "PP_Wolf_Storm": 455227171, - "PP_WoodDuck": 1680912895, - "MNT_RockingHorse": 1205280059, - "MNT_SOF2022_Car": 219868812, - "PP_Buffaloon": 796152873, - "MNT_Steamboat": 1969530127, - "MNT_FelizNavidog": 847046394, - "PP_Mustache": 1571079379, - "Guest_DD-DS01-Skeleton-Pirate-20": 226826848, - "Guest_DD-DS01-Skeleton-Pirate-40": 201661024, - "Guest_DD-DS01-Skeleton-Pirate-60": 210049632, - "Guest_DD-DS01-Skeleton-Pirate-80": 251992672, - "Guest_DD-DS01-Skeleton-Pirate": 1994450336, - "Guest_DD-DS01-Shadow-Minion-Fire": 1074864956, - "Guest_DD-DS01-Shadow-Minion-Ice": 1841681214, - "Guest_DD-DS01-Shadow-Minion-Fire-20": 1074880881, - "Guest_DD-DS01-Shadow-Minion-Fire-40": 1074880945, - "Guest_DD-DS01-Shadow-Minion-Ice-20": 96850220, - "Guest_DD-DS01-Shadow-Minion-Ice-40": 96850218, - "Guest_DD-DS01-Shadow-Minion-Fire-60": 1074881009, - "Guest_DD-DS01-Shadow-Minion-Ice-60": 96850216, - "Guest_DD-DS01-Shadow-Minion-Fire-80": 1074880561, - "Guest_DD-DS01-Shadow-Minion-Ice-80": 96850214, - "Guest_SC-SpectreOfB-1": 1471950935, - "Guest_SC-SpectreOfB-20": 1471942759, - "Guest_SC-SpectreOfB-40": 1471942663, - "Guest_SC-SpectreOfB-60": 1471942695, - "Guest_SC-SpectreOfB-80": 1471942855, - "Guest_KH-Skeleton-Ice-60": 2108358962, - "Guest_KH-Skeleton-Ice-40": 2108391730, - "Guest_KH-Skeleton-Ice-20": 2108293426, - "Guest_KH-Skeleton-Ice-1": 2099953970, - "Guest_KH-Skeleton-Ice-80": 2108195122, - "Guest_KH-Undead-Caster-60": 1662604496, - "Guest_KH-Undead-Caster-40": 1661555920, - "Guest_KH-Undead-Caster-20": 1664701648, - "Guest_KH-Undead-Caster-1": 1931564240, - "Guest_KH-Undead-Caster-80": 1667847376, - "Guest_DD-PA01-DeadBeets": 1664999367, - "Guest_DD-PA01-DeadBeets-20": 1901453253, - "Guest_DD-PA01-DeadBeets-40": 2002116549, - "Guest_DD-PA01-DeadBeets-60": 1968562117, - "Guest_DD-PA01-DeadBeets-80": 2069225413, - "Guest_DD-PA01-Disparagus": 1865816461, - "Guest_DD-PA01-Disparagus-20": 573970895, - "Guest_DD-PA01-Disparagus-40": 499770929, - "Guest_DD-PA01-Disparagus-60": 1573512753, - "Guest_DD-PA01-Disparagus-80": 1647712718, - "Guest_DD-PA01-MeanestFlyTrap": 2001546861, - "Guest_DD-PA01-MeanestFlyTrap-20": 1936326253, - "Guest_DD-PA01-MeanestFlyTrap-40": 1936064109, - "Guest_DD-PA01-MeanestFlyTrap-60": 1935801965, - "Guest_DD-PA01-MeanestFlyTrap-80": 1937636973, - "Guest_HG-MD-MacDeath-20": 182639104, - "Guest_HG-MD-MacDeath-40": 182638080, - "Guest_HG-MD-MacDeath-60": 182637056, - "Guest_HG-MD-MacDeath-80": 182636032, - "Guest_HG-MD-MacDeath-100": 174252032, - "Guest_HG-MD-MacDeath-130": 174202880, - "Guest_HG_Sinbad_Skeleton_25": 494617874, - "Guest_HG_Sinbad_Skeleton_50": 42253050, - "Guest_HG_Sinbad_Skeleton_75": 1115994862, - "Guest_HG_Sinbad_Skeleton_100": 2105232646, - "Guest_HG_Sinbad_Skeleton_130": 2105232650, - "Guest_HG_Sinbad_Skeleton_25_02": 492722834, - "Guest_HG_Sinbad_Skeleton_50_02": 44148090, - "Guest_HG_Sinbad_Skeleton_75_02": 1117889902, - "Guest_HG_Sinbad_Skeleton_100_02": 2044247302, - "Guest_HG_Sinbad_Skeleton_130_02": 2044247306, - "Guest_DD-AV01-WyrmBoss": 1648677986, - "Guest_DD-AV01-WyrmBoss-20": 1926730850, - "Guest_DD-AV01-WyrmBoss-40": 1927779426, - "Guest_DD-AV01-WyrmBoss-60": 1928828002, - "Guest_DD-AV01-WyrmBoss-80": 1921487970, - "Guest_RH-Wyrm-Boss-01": 1027277645, - "Guest_RH-Wyrm-Boss-20": 1027277660, - "Guest_RH-Wyrm-Boss-40": 1027277663, - "Guest_RH-Wyrm-Boss-60": 1027277662, - "Guest_RH-Wyrm-Boss-80": 1027277657, - "Guest_HG_Sinbad_Wyrm_25": 1101443356, - "Guest_HG_Sinbad_Wyrm_50": 1101528860, - "Guest_HG_Sinbad_Wyrm_75": 1101445916, - "Guest_HG_Sinbad_Wyrm_100": 1093138204, - "Guest_HG_Sinbad_Wyrm_130": 1093089052, - "Guest_KH-Treant-1": 2001244331, - "Guest_KH-Treant-60": 1968148651, - "Guest_KH-Treant-40": 1968017579, - "Guest_KH-Treant-20": 1967886507, - "Guest_KH-Treant-80": 1967231147, - "Guest_DD-PA01-ForestGrump": 1969685870, - "Guest_DD-PA01-ForestGrump-20": 714666713, - "Guest_DD-PA01-ForestGrump-40": 714666689, - "Guest_DD-PA01-ForestGrump-60": 714666697, - "Guest_DD-PA01-ForestGrump-80": 714666737, - "Guest_DD-PA01-ForestNymphs": 227087348, - "Guest_DD-PA01-ForestNymphs-20": 227023552, - "Guest_DD-PA01-ForestNymphs-60": 227023040, - "Guest_DD-PA01-ForestNymphs-80": 227024832, - "Guest_SC-Pig-BalanceWizardA-1": 475456968, - "Guest_SC-Pig-BalanceWizardA-20": 477550024, - "Guest_SC-Pig-BalanceWizardA-40": 477541832, - "Guest_SC-Pig-BalanceWizardA-60": 477533640, - "Guest_SC-Pig-BalanceWizardA-80": 477525448, - "Guest_SC-Pig-BalanceWizardB-1": 475456964, - "Guest_SC-Pig-BalanceWizardB-20": 477550020, - "Guest_SC-Pig-BalanceWizardB-40": 477541828, - "Guest_SC-Pig-BalanceWizardB-60": 477533636, - "Guest_SC-Pig-BalanceWizardB-80": 477525444, - "Guest_SC-Pig-BalanceWizardC-1": 475456960, - "Guest_SC-Pig-BalanceWizardC-20": 477550016, - "Guest_SC-Pig-FireWizard-1": 2048176291, - "Guest_SC-Pig-FireWizard-20": 2031399073, - "Guest_SC-Pig-FireWizard-40": 2132062369, - "Guest_SC-Pig-FireWizard-60": 2098507937, - "Guest_SC-Pig-FireWizard-80": 1930735777, - "Guest_SC-Pig-IceWizardF-1": 1178687744, - "Guest_SC-Pig-IceWizardF-20": 1161910526, - "Guest_SC-Pig-IceWizardF-40": 1128356094, - "Guest_SC-Pig-IceWizardF-60": 1094801662, - "Guest_SC-Pig-IceWizardF-80": 1329682686, - "Guest_SC-Pig-MythWizard-1": 2048492725, - "Guest_SC-Pig-MythWizard-20": 2031715511, - "Guest_SC-Pig-MythWizard-40": 2132378807, - "Guest_SC-Pig-MythWizard-60": 2098824375, - "Guest_SC-Pig-MythWizard-80": 1931052215, - "Guest_SC-Pig-StormWizardF-1": 1743849420, - "Guest_SC-Pig-StormWizardF-20": 1743851464, - "Guest_SC-Pig-StormWizardF-40": 1743851488, - "Guest_SC-Pig-StormWizardF-60": 1743851480, - "Guest_SC-Pig-StormWizardF-80": 1743851504, - "Guest_KH-Pig-Bandit-Lord-1": 1080496628, - "Guest_KH-Pig-Bandit-Lord-20": 543625652, - "Guest_KH-Pig-Bandit-Lord-40": 530116172, - "Guest_KH-Pig-Bandit-Lord-60": 1603857996, - "Guest_KH-Pig-Bandit-Lord-80": 1617367475, - "Guest_KH-Pig-Bandit-Ninja-1": 1945100907, - "Guest_KH-Pig-Bandit-Ninja-20": 1945102951, - "Guest_KH-Pig-Bandit-Ninja-40": 1945102975, - "Guest_KH-Pig-Bandit-Ninja-60": 1945102967, - "Guest_KH-Pig-Bandit-Ninja-80": 1945102927, - "Guest_KH-Pig-War-Caster-1": 656859765, - "Guest_KH-Pig-War-Caster-20": 606528119, - "Guest_KH-Pig-War-Caster-40": 572973687, - "Guest_KH-Pig-War-Caster-60": 539419255, - "Guest_KH-Pig-War-Caster-80": 774300279, - "Guest_KH-Pig-War-Warrior-Boss-1": 16342355, - "Guest_KH-Pig-War-Warrior-Boss-20": 2143724205, - "Guest_KH-Pig-War-Warrior-Boss-40": 2118558381, - "Guest_KH-Pig-War-Warrior-Boss-60": 2126946989, - "Guest_KH-Pig-War-Warrior-Boss-80": 2101781165, - "Guest_SC-Pig-BalanceWizardC-40": 477541824, - "Guest_SC-Pig-BalanceWizardC-60": 477533632, - "Guest_SC-Pig-BalanceWizardC-80": 477525440, - "Guest_KH-Helephant-Death-20": 1109389719, - "Guest_KH-Helephant-Death-40": 2111835753, - "Guest_KH-Helephant-Death-60": 1038093929, - "Guest_KH-Helephant-Death-80": 35647896, - "Guest_KH-GreyOgre-Spider-1": 356368404, - "Guest_KH-GreyOgre-Spider-20": 1966981204, - "Guest_KH-GreyOgre-Spider-40": 1254244268, - "Guest_KH-GreyOgre-Spider-60": 180502444, - "Guest_KH-GreyOgre-Spider-80": 893239379, - "Guest_HG_Sinbad_Colossus_25": 1190802829, - "Guest_HG_Sinbad_Colossus_50": 1493551719, - "Guest_HG_Sinbad_Colossus_75": 419809907, - "Guest_HG_Sinbad_Colossus_100": 653933977, - "Guest_HG_Sinbad_Colossus_130": 653933973, - "Guest_NV_Dino_AberrantUndead_A_01": 2035087398, - "Guest_NV_Hellephant_Aberrant_A_01": 989522333, - "Guest_NV_Hellephant_Aberrant_A_02": 989522334, - "Guest_NV_BananaSpider_Base_A_01": 1585810541, - "Guest_NV_BananaSpider_Base_A_02": 1581616237, - "Guest_NV_BananaSpider_Base_A_03": 1577421933, - "Guest_NV_BananaSpider_Base_A_04": 1606782061, - "Guest_NV_BananaSpider_Base_A_05": 1602587757, - "Guest_NV_Wyrm_Aberrant_A_01": 16108415, - "Guest_NV_Monkey_Zombie_A_01": 1854775300, - "Guest_NV_Monkey_Zombie_A_02": 1854775304, - "Guest_NV_Monkey_Zombie_A_03": 1854775308, - "Guest_NV_Monkey_Zombie_A_04": 1854775312, - "MNT_Flag_Monster": 867940056, - "Guest_SKB_WY_DarkBramble_A_30": 2046798767, - "Guest_SKB_WY_DarkBramble_A_50": 2046797999, - "Guest_SKB_WY_DarkBramble_A_100": 2044701359, - "Guest_SKB_WY_DarkBramble_A_150": 2044721839, - "Guest_SKB_GH_Boar_A_30": 1547921275, - "Guest_SKB_WC_SpiritIgnorance_A_50": 1488876986, - "Guest_SKB_WC_SpiritIgnorance_A_100": 2025748410, - "Guest_SKB_WC_SpiritIgnorance_A_150": 2025748413, - "Guest_SKB_DS_Loremaster_A_50": 527751539, - "Guest_SKB_DS_Loremaster_A_100": 527817059, - "Guest_SKB_DS_Loremaster_A_150": 527817699, - "Guest_SKB_CL_Dan_A_50": 637418706, - "Guest_SKB_CL_Dan_A_60": 1510064941, - "Guest_SKB_CL_Dan_A_100": 637410512, - "Guest_SKB_CL_Dan_A_150": 637410432, - "Guest_SKB_AV_Spectre_A_50": 2104631195, - "Guest_SKB_AV_Spectre_A_100": 2102534041, - "Guest_SKB_AV_Spectre_A_150": 2018647961, - "Guest_SKB_MS_Samoorai_A_50": 2029641915, - "Guest_SKB_MS_Samoorai_A_100": 2096750843, - "Guest_SKB_MS_Samoorai_A_150": 587603717, - "Transformation_BG_Krok_StromTemplate": 1317694546, - "PP_ChineseRabbit": 382941643, - "PP_ParadeElf": 1036247808, - "MNT_HeartSwarm": 918199310, - "MNT_SpringSOF2023": 1417178519, - "Transformation_BG_Elf_Death2Template": 1606653101, - "MNT_GummyBunny_D": 775840224, - "Transformation_BG_Krok_Life2Template": 747486212, - "PP_Flame": 959186933, - "PP_YachtRock": 1500927358, - "PP_PirateYachtRock": 1227549100, - "PP_ChickenMonster": 1845706534, - "PP_SnowHoppers_B": 1496460038, - "PP_SnowHoppers_C": 1496457990, - "MNT_Oarfish": 29720265, - "PP_RingTailedCat": 993143427, - "MNT_Fanboat": 19347694, - "MNT_MiniSub": 298697910, - "PP_DumboOctopus": 966435639, - "PP_Glowbug_Balance": 1405529577, - "PP_Glowbug_Death": 405117107, - "PP_Glowbug_Fire": 651698987, - "PP_Glowbug_Ice": 2124926395, - "PP_Glowbug_Life": 601367299, - "PP_Glowbug_Myth": 592978024, - "PP_Glowbug_Storm": 61190446, - "PP_DumboOctopus_B": 968448823, - "PP_DumboOctopus_C": 968383287, - "PP_BananaSpider_01": 1074383522, - "PP_BananaSpider_02": 1080674978, - "PP_BananaSpider_03": 1078577826, - "Guest_HG_NM_BeardDragon_Base_C_01": 82913785, - "Guest_HG_NM_BeardDragon_Base_C_02": 82913786, - "Guest_HG_NM_BeardDragon_Base_C_03": 82913787, - "Guest_HG_NM_Glowbug_Base_C_01": 544959703, - "Guest_HG_NM_Glowbug_Base_C_02": 544955607, - "Guest_HG_NM_Glowbug_Base_C_03": 544951511, - "Guest_HG_NM_Glowbug_Base_C_04": 544947415, - "Guest_HG_NM_Glowbug_Base_C_05": 544943319, - "Guest_HG_NM_Glowbug_Base_C_06": 544939223, - "Guest_HG_NM_Glowbug_Base_C_07": 544935127, - "MNT_BouquetofFlowers": 1511180560, - "PP_Piggle_Rainbow": 91081383, - "MNT_Sabertooth_FlameSaber": 1949516909, - "Guest_HG_NM_BeardDragon_Base_A_01": 83175929, - "Guest_HG_NM_BeardDragon_Base_A_02": 83175930, - "Guest_HG_NM_BeardDragon_Base_A_03": 83175931, - "Guest_HG_NM_BeardDragon_Base_B_01": 83044857, - "Guest_HG_NM_BeardDragon_Base_B_02": 83044858, - "Guest_HG_NM_BeardDragon_Base_B_03": 83044859, - "Guest_HG_NM_Glowbug_Base_B_01": 8088791, - "Guest_HG_NM_Glowbug_Base_B_02": 8084695, - "Guest_HG_NM_Glowbug_Base_B_03": 8080599, - "Guest_HG_NM_Glowbug_Base_B_04": 8076503, - "Guest_HG_NM_Glowbug_Base_B_05": 8072407, - "Guest_HG_NM_Glowbug_Base_B_06": 8068311, - "Guest_HG_NM_Glowbug_Base_B_07": 8064215, - "Guest_HG_NM_Glowbug_Base_A_01": 1618701527, - "Guest_HG_NM_Glowbug_Base_A_02": 1618697431, - "Guest_HG_NM_Glowbug_Base_A_03": 1618693335, - "Guest_HG_NM_Glowbug_Base_A_04": 1618689239, - "Guest_HG_NM_Glowbug_Base_A_05": 1618685143, - "Guest_HG_NM_Glowbug_Base_A_06": 1618681047, - "Guest_HG_NM_Glowbug_Base_A_07": 1618676951, - "MNT_SummerSOF2023": 1636120912, - "PP_Cyclops_Fire": 7821755, - "PP_Death_Elf": 1535744155, - "PP_Newt": 1438123483, - "PP_Echidna": 735439358, - "MNT_Wombat": 580544786, - "Transformation_BG_NinjaPig_Balance": 1799661438, - "Transformation_BG_Cyclops_Ice": 647975824, - "Transformation_BG_Minotaur_Storm": 1005667041, - "Transformation_GR_Parasaur_Priest_Ice": 1101466351, - "Transformation_GR_Parasaur_Priest_Fire": 892193041, - "Transformation_GR_Parasaur_Priest_Storm": 1525882116, - "Transformation_GR_Parasaur_Priest_Balance": 1127637476, - "Guest_GR_AZ_Parasaur_Undead_B_01": 322587487, - "MNT_WitchCat": 1167097888, - "PP_RolyPoly": 578538330, - "PP_Capybara_B": 628131532, - "MNT_OutbackTruck": 1815527801, - "PP_PoodleSailor": 2137704795, - "MNT_PolarianCannon": 2103490826, - "PP_TazmanianDevil": 1773548765, - "Guest_SKB_AZ_Ixcax_A_100": 556560994, - "Guest_SKB_AZ_Ixcax_A_150": 556610146, - "Guest_SKB_AZ_Ixcax_A_50": 564951650, - "MNT_GhoulsShovel": 2035610946, - "PP_CrystalBdayDragon": 1897078804, - "PP_SunGobblerBall": 1522469440, - "PP_Sun_GreenGobbler": 1337690394, - "MNT_2P_AutumnTreant": 1063435527, - "PP_AutumnTreant": 561077291, - "MNT_FlyingMonkey": 490807393, - "PP_BabyPlantMonster": 2076646587, - "MNT_PlantCreature_A": 1802823265, - "Transformation_BG_Fairy_Fire": 2065252898, - "Transformation_BG_Krok_Myth": 277926564, - "Transformation_BG_RatThief_Life": 1167758651, - "Transformation_BG_Elf_Balance": 1628238937, - "Transformation_BG_Colossus_Death": 184392004, - "Transformation_FortressPod": 139738335, - "P_Wombat_POLYMORPH": 1132264953, - "PP_SharkWobbegong": 1994247222, - "PP_ChineseNYDragon": 1126999021, - "PP_JingleBellRock": 1076037919, - "PP_Krok_Mummy_Myth": 438487583, - "PP_Cyclops_Ice": 1476966187, - "MNT_OutbackTruckB": 1813299577, - "MNT_EvilSnowmanBall": 758818712, - "MNT_ThanksgivingGobbler": 1760011910, - "Guest_WL_Ghost_LostSoul_A_01": 1224111704, - "Guest_WL_Kangaroo_Drover_F_01": 2025562931, - "Guest_WL_Spider_WarriorMage_C_01": 1296557888, - "Guest_WL_Spider_WarriorMage_C_02": 1430775616, - "Guest_WL_Spider_WarriorMage_C_03": 1564993344, - "Guest_WL_Spider_WarriorMage_C_04": 1699211072, - "Guest_WL_Spider_WarriorMage_C_05": 1833428800, - "Guest_WL_Spider_WarriorMage_C_06": 1967646528, - "Guest_WL_Spider_WarriorMage_C_07": 2101864256, - "Guest_SKB_KR_Lightbane_A_100": 837930677, - "Guest_SKB_KR_Lightbane_A_160": 837930669, - "Guest_SKB_KR_Lightbane_A_50": 1309555019, - "Transformation_WL_Phantasmanian_DevilTemplate": 384891502, - "MNT_2P_LeaflessTreant": 623083386, - "PP_Minotaur_Ice": 700151737, - "MNT_Scooter_G": 737125252, - "Guest_WL_Frog_Owner_B_01": 767864686, - "MNT_SilentKnight": 646654812, - "Guest_WL_TRex_Base_A_01": 1842562033, - "Guest_WL_TRex_Base_B_01": 304921616, - "PP_Groundhog": 108643243, - "Guest_NV_Unicorn_Guard_C_04": 1845621, - "MNT_EmuPunk": 647315080, - "MNT_HeartBalloon": 798826551, - "PP_ValentineHoppers": 968693964, - "MNT_SpringSOF2024_Heckhound": 453640548, - "Guest_AQ-Centaur-Arion": 1856508139, - "Guest_AQ-Centaur-Artemis": 333294011, - "Guest_AQ-Horse-Sea": 724896200, - "Guest_KR_Horse_Warlord_A_Bossfight": 1302284326, - "Guest_KR_Horse_Warlord_A_BossfightSP": 1300726822, - "Guest_KR_Zebra_Thrall_A": 1250265667, - "Guest_KR_Zebra_Thrall_A_Boss_Minion": 345677011, - "Guest_KR_Zebra_Thrall_A_Gallery": 1520303483, - "Guest_KH-Gray-Horse-40": 1802231403, - "Guest_KH-Gray-Horse-20": 1802231307, - "Guest_G14-BP-Unicorn_Fencer_Boss": 1602044152, - "Guest_Horse-Merc-Brown-L37": 1831175255, - "Guest_Horse-Merc-Tan-L39": 1363854837, - "Guest_Horse-Merc-Tan-L39-1": 2085275127, - "Guest_Horse-Merc-Gray-MSBoss-L39": 1863452041, - "Guest_Horse-Merc-Gray-L39": 2039135564, - "Guest_Horse-Merc-Tan-L38": 1363330549, - "Guest_WC_Horse_Mercenary_Roberto": 891924774, - "Guest_ZF-Nathi-Yellowstripe-R11": 1505157721, - "Guest_ZF-TseTse-Main-R11-Boss": 114927854, - "Guest_ZF-TseTse-Elephant-R11": 894147273, - "Guest_ZF-Zebra-Impi-Raider-R11": 1378242919, - "Guest_ZF-Zebra-Warrior-Male-R10-1": 1791906265, - "Guest_ZF-Zebra-Senzan-Zebu-R10-Boss": 373712721, - "Guest_ZF-Zebra-Shaka-Zebu-R10-Boss": 662142985, - "Guest_ZF-Zebra-Warrior-Female-R10-02": 1507835670, - "Guest_ZF-Zebra-Warrior-Male-R10": 47075786, - "Guest_ZF-Zebra-Warrior-Male-R10-02": 1791906714, - "Guest_ZF-Zebra-Warrior-Male-R10-03": 1791906746, - "Guest_ZF-Zebra-Warrior-Male-R10-05": 1791906682, - "Guest_ZF-Zebra-Warrior-Male-R10-2": 1791906268, - "Guest_ZF_Zebra_Spectral_Guardian-R11": 431970996, - "Guest_CC_Horse_Apoc_A_01": 644668374, - "Guest_CC_Horse_Apoc_B_01": 644668390, - "Guest_CC_Horse_Apoc_C_01": 644668406, - "Guest_CC_Horse_Apoc_D_01": 644668294, - "Guest_CC_Horse_Apoc_D_02": 645192582, - "Guest_CC_Unicorn_CorsairF_B_01": 1378532506, - "Guest_CC_Unicorn_Duelist_B_01": 64891542, - "Guest_CC_Unicorn_Guard_B_01": 1075063242, - "Guest_CC_Unicorn_Guard_B_02": 1075063238, - "Guest_CC_Unicorn_Guard_B_03": 1075063234, - "Guest_NV_Horse_HordeSoldier_A_01": 504396960, - "Guest_NV_Horse_HordeSoldier_A_02": 101743776, - "Guest_NV_Horse_HordeOfficer_A_01": 343600992, - "Guest_NV_Horse_HordeSoldier_A_03": 235961504, - "Guest_NV_Horse_HordeOfficer_A_02": 209383264, - "Guest_NV_Horse_AberrantTungAk_A_01": 952263441, - "Guest_NV_Horse_AberrantTungAk_A_02": 952263537, - "Guest_NV_Horse_TungAk_B_01": 1194718672, - "Guest_NV_Horse_TungAk_B_02": 657847760, - "Guest_NV_Horse_HordeOfficer_B_01": 343596896, - "Guest_NV_Horse_HordeOfficer_B_02": 209379168, - "Guest_NV_Horse_TungAk_A_01": 1194669520, - "Guest_NV_Unicorn_Guard_C_01": 1845601, - "Guest_NV_Unicorn_Guard_A_01": 797025, - "Guest_NV_Unicorn_AberrantGuard_A_01": 739851573, - "Guest_NV_Unicorn_Guard_C_02": 1845613, - "Guest_NV_Unicorn_Guard_C_03": 1845609, - "Guest_NV_Unicorn_AberrantGuard_A_02": 739848501, - "Guest_NV_Unicorn_Guard_A_02": 797037, - "Guest_NV_Unicorn_AberrantGuard_A_03": 739849525, - "Guest_NV_Unicorn_AberrantGuard_A_04": 739846453, - "Guest_NV_Horse_HordeOfficer_A_03": 75165536, - "Guest_NV_Horse_HordeSoldier_A_04": 907050144, - "Guest_NV_Horse_HordeSoldier_A_05": 1041267872, - "Guest_NV_Horse_HordeSoldier_C_01": 504388768, - "Guest_HG_TRAIN_Horse_MustangFencerF_A_Balance_50": 871182987, - "Guest_HG_TRAIN_Horse_MustangFencerF_A_Balance_75": 871176715, - "Guest_HG_TRAIN_Horse_MustangFencerF_A_Life_100": 886489645, - "Guest_HG_TRAIN_Horse_MustangFencerF_A_Balance_25": 871177035, - "Guest_HG_TRAIN_Horse_MustangFencerF_A_Balance_100": 872231819, - "Guest_HG_TRAIN_Horse_MustangFencerF_A_Life_140": 1960231469, - "Guest_HG_TRAIN_Horse_MustangFencerF_B_100": 2089957067, - "Guest_HG_TRAIN_Horse_MustangFencerF_A_Life_25": 1700184589, - "Guest_HG_TRAIN_Horse_MustangFencerF_A_Life_50": 920044045, - "Guest_HG_TRAIN_Horse_MustangFencerF_A_Life_75": 1742127629, - "Guest_HG_TRAIN_Horse_MustangFencerF_A_Balance_140": 872223627, - "Guest_HG_TRAIN_Horse_MustangFencerF_B_50": 2089952970, - "Guest_HG_TRAIN_Horse_MustangFencerF_B_75": 57530654, - "Guest_HG_TRAIN_Horse_MustangFencerF_B_140": 2089957099, - "Guest_HG_TRAIN_Horse_MustangFencerF_B_25": 1131272477, - "Guest_LM_Horse_Explorer_A_01_Hard": 1711837140, - "Guest_WL_Unicorn_Guard_A_01": 1074538935, - "Guest_WL_Unicorn_CorsairF_E_01": 1378532603, - "Guest_WL_Unicorn_Warlord_A_01": 1321310496, - "Guest_KH-Gray-Horse-1": 1802239547, - "Guest_KH-Gray-Horse-60": 1802231371, - "Guest_KH-Gray-Horse-80": 1802231467, - "Transformation_BG_NinjaPig_Ice": 186026527, - "Transformation_BG_Cyclops_Storm": 897316984, - "PP_MinotaurBalance": 1344665951, - "PP_OrthusMoon": 1804503950, - "PP_CoolPineapple": 1149318906, - "PP_TwinkleStars": 766378011, - "PP_Scroll": 1613313091, - "PP_Colossus_Death": 40713075, - "PP_ColossusDeath": 530964029, - "PP_KILiveRock": 1975550570, - "MNT_Outrigger": 1417937299, - "MNT_BookWyrm": 2080129190, - "MNT_RacingSnail": 1996220963, - "MNT_UmbrellaCloud": 145762615, - "PP_PropellerCat": 2094718580, - "MNT_TRex_Shirt": 586746001, - "MNT_Swarm_Bee": 1625228695, - "MNT__CelestialMoon": 968360256, - "Guest_ME_Sinbad_IronSultan_150": 2001676223, - "Guest_ME_Sinbad_Cyclops_150": 1968943689, - "Guest_ME_Sinbad_Skeleton_150": 1031490819, - "Guest_ME_Sinbad_Colossus_150": 1727675806, - "Guest_ME_Sinbad_Skeleton_150_02": 970505475, - "Guest_ME_Sinbad_Wyrm_150": 19314443, - "Guest_ZF-Zebra-Inzinzebu-Bandit-R11": 430262550, - "Guest_ZF-Zebra-Warrior-Male-R10-04": 1791906650, - "PP_TwinkleStars_02": 805304347, - "PP_TwinkleStars_03": 803207195, - "PP_TwinkleStars_01": 799012891, - "Transformation_BodleianHarrow": 609627870, - "Guest_HG_Gryphon_OwlStatue_A_01_L170": 77756046, - "Guest_HG_Gryphon_OwlStatue_A_02_L170": 73561742, - "Guest_HG_Gryphon_OwlStatue_A_01_L100": 77752974, - "Guest_HG_Gryphon_OwlStatue_A_02_L100": 73558670, - "Guest_HG_Gryphon_OwlStatue_A_01_L50": 78277134, - "Guest_HG_Gryphon_OwlStatue_A_02_L50": 74082830, - "MNT_SummerSOF2024_JudgementWings": 1078163967, - "MNT_Pegasus_E": 131704054, - "MNT_PolarisHero": 665176426, - "PP_Duckana": 1128961578, - "PP_QueenBee": 833291695, - "Transformation_BG_Draconian_Balance": 2078940682, - "Transformation_BG_WolfWarrior_Fire": 1762248682, - "Transformation_BG_Minotaur_Death": 309090657, - "PP_WolfWarrior_Fire": 685685256, - "PP_WolfWarrior_Death": 1857202724, - "Guest_ME-GTAV01-WyrmBoss-150": 1482208618, - "Guest_ME_SpectreOfB_L150": 684104791, - "Guest_ME_MD_MacDeath_L150": 1128977615, - "Guest_ME_Pig_BalanceWizardA_L150": 959913724, - "Guest_ME_Pig_BalanceWizardB_L150": 959913712, - "Guest_ME_Pig_BalanceWizardC_L150": 959913716, - "Guest_ME_Pig_FireWizard_L150": 964392255, - "Guest_ME_Pig_IceWizardF_L150": 86941026, - "Guest_ME_Pig_MythWizard_L150": 964051241, - "Guest_ME_Pig_StormWizardF_L150": 2016383602, - "Guest_ME_Clock_Clockworker_L150": 1424569772, - "Guest_ME_Clock_ClockworkSpanner_L150": 1966824609, - "Guest_ME_Clock_Lugs_L150": 370290904, - "Guest_ME_Clock_Lucia_L150": 1857768409, - "MNT_EvilChair": 339577702, - "PP_Cyclops_Storm": 621464512, - "PP_Krokomummy_Life": 462432735, - "Transformation_CL_Rematch_Crustacean": 1686865207, - "Transformation_CL_Rematch_Protector": 1893951532, - "Transformation_CL_Rematch_Angler": 120412196, - "Transformation_CL_Rematch_Piscean": 1624106070, - "Transformation_Zebra_Template": 1900548493, - "Transformation_Zebra2_Template": 325099540, - "Transformation_Zebra3_Template": 325099524, - "Transformation_Zebra4_Template": 325099636, - "MNT_SweetSixteenBirthday": 1009398096, - "MNT_2P_TRex_Bones": 1618543266, - "MNT_SpringBumperCar": 1725007788, - "PP_WinterGoblin": 2025052443, - "PP_OnyxAnubis": 1552575189, - "PP_OttomanCat": 223541582, - "MNT_HolidayYeti": 780983974, - "MNT_IceSled": 979912604, - "MNT_TurtleDoves": 1850191638, - "MNT_KrokChariot": 559783620, - "MNT_Mustang": 1775949401, - "MNT_PumpkinBall": 382849054, - "Transformation_BG_Fairy_Storm": 836920873, - "Transformation_BG_Elf_Myth": 1506493664, - "Transformation_NinjaPig_Life": 816802847, - "Transformation_BG_Krok_Fire": 1060580712, - "Transformation_BG_Colossus_Balance": 1067963041, - "Transformation_BG_NinjaPig_Life": 441460895, - "PP_Penguin_03": 1623028104, - "Transformation_Duck_Librarian_B": 864067551, - "Transformation_Duck_Librarian_A": 859873247, - "Transformation_Duck_Adventurer": 194560769, - "Transformation_Gummy_Bunny_C": 1298087941, - "Transformation_Frog_Horned_A": 837201339, - "Transformation_Glowbug_Storm": 2096380446, - "Transformation_Marshmallow_Critter_A": 1036335317, - "Transformation_Snipe_Base_B": 232132109, - "Transformation_Snowball": 915248481, - "Transformation_Wombat_Base": 333435450, - "Transformation_Human_Malistaire": 1414887773, - "Transformation_Morganthe_E": 1745180054, - "Transformation_Spider_Grandfather": 1131773979, - "Transformation_Khrulhu_Dasein_B": 367878762, - "Transformation_Devourer_Base": 698770016, - "Transformation_Alien_Meteor": 638746168, - "Transformation_Nightmare_Malus": 704212821, - "Transformation_Daemon_Personal": 278266463, - "PP_ValentinesDay": 810003364, - "PP_BabyHippo": 422858138, - "PP_Aardwold": 1592150119, - "PP_Aardwold_C": 1902528613, - "MNT_Cobra": 472847981, - "MNT_Serpopard": 1629558909, - "MNT_Serpopard_B": 1629556867, - "MNT_Serpopard_C": 1629556931, - "PP_Fairy_Fire": 1847789544, - "MNT_Mustang_B": 1448793691, - "PP_FireElfMyth": 1933609060, - "MNT_KT-BoatRide": 1560860110 - } - }, - "m_badgeTitle": { - "type": "std::string", - "id": 6, - "offset": 440, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1783354256 - }, - "m_chatPermissions": { - "type": "unsigned int", - "id": 7, - "offset": 360, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1848314473 - }, - "m_pvpIconID": { - "type": "unsigned int", - "id": 8, - "offset": 472, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2083838009 - }, - "m_localeID": { - "type": "unsigned int", - "id": 9, - "offset": 484, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 792971274 - }, - "m_friendlyPlayer": { - "type": "bool", - "id": 10, - "offset": 490, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 990699901 - }, - "m_volunteer": { - "type": "bool", - "id": 11, - "offset": 491, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1751284471 - }, - "m_guildName": { - "type": "unsigned int", - "id": 12, - "offset": 492, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 778026115 - }, - "m_guildNameLocale": { - "type": "int", - "id": 13, - "offset": 496, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 656991008 - } - } - }, - "138565252": { - "name": "class CameraCutCinematicAction*", - "bases": [ - "CinematicAction", - "PropertyClass" - ], - "hash": 138565252, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_cameras": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 131079, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 3217341687 - }, - "m_altcameras": { - "type": "std::string", - "id": 2, - "offset": 104, - "flags": 131079, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1882980152 - }, - "m_initialCameraName": { - "type": "std::string", - "id": 3, - "offset": 128, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2526319343 - }, - "m_camRel": { - "type": "enum CameraCutCinematicAction::kCameraRelative", - "id": 4, - "offset": 168, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 919962138, - "enum_options": { - "kNone": 0, - "kSigil": 1, - "kTarget": 2, - "kSource": 3, - "kActor": 4 - } - }, - "m_interpolationDuration": { - "type": "float", - "id": 5, - "offset": 160, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1458058437 - }, - "m_releaseInterpolationDuration": { - "type": "float", - "id": 6, - "offset": 164, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1807754278, - "enum_options": { - "__DEFAULT": "1.0" - } - }, - "m_bUseOrientationOverride": { - "type": "bool", - "id": 7, - "offset": 188, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1088002894 - }, - "m_overrideOrientation": { - "type": "class Vector3D", - "id": 8, - "offset": 192, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3267199758 - }, - "m_bUseLocationOverride": { - "type": "bool", - "id": 9, - "offset": 172, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1767170875 - }, - "m_overrideLocation": { - "type": "class Vector3D", - "id": 10, - "offset": 176, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3776417691 - }, - "m_namedActor": { - "type": "std::string", - "id": 11, - "offset": 208, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3413532537 - }, - "m_camScale": { - "type": "float", - "id": 12, - "offset": 240, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 979098224 - } - } - }, - "534109433": { - "name": "class ClientWizPlayerNameBehavior", - "bases": [ - "NameOverrideBehavior", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 534109433, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_wsNameOverride": { - "type": "std::wstring", - "id": 1, - "offset": 120, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2131249091 - }, - "m_nameKeys": { - "type": "unsigned int", - "id": 2, - "offset": 352, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1772225898 - }, - "m_useRank": { - "type": "bool", - "id": 3, - "offset": 356, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2040475372 - }, - "m_eGender": { - "type": "enum eGender", - "id": 4, - "offset": 432, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2776344943, - "enum_options": { - "Male": 1, - "Female": 0, - "Neutral": 2 - } - }, - "m_eRace": { - "type": "enum eRace", - "id": 5, - "offset": 436, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 963057554, - "enum_options": { - "Bat": 88066, - "BatLightning": 1472842576, - "Boar": 2624962, - "CatThug": 1855674386, - "ChristmasElf": 819908552, - "ChristmasSnowman": 1146515225, - "Colossus_Ice": 1063279538, - "Cyclops": 1691813655, - "DragonBeta": 417003588, - "DragonFriendly": 69049013, - "EvilSnowman": 1579630926, - "FireElf": 443793687, - "Firecat": 2045525741, - "Frog": 2274918, - "FrostBeetle": 7692383, - "GhostBlue": 1097396892, - "GhostGreen": 882822629, - "GhostRed": 560510742, - "GhostYellow": 909974358, - "Ghoul": 82556199, - "GoatMonk": 486215564, - "GolemBrass": 1057388325, - "GolemClockwork": 1143380031, - "GolemSteel": 1660583674, - "GolemWood": 1426849876, - "HalloweenCat": 1042869199, - "Heckhound": 626736403, - "Helephant": 719065368, - "Human": 79806088, - "Hydra": 70785800, - "Imp": 84361, - "Krokomummy": 555755242, - "Kroktut": 1352354178, - "Leprechaun": 2106466410, - "LeprechaunPattyDay": 380507781, - "LightningBat": 228257682, - "Mannequin": 428442544, - "Minotaur": 949570680, - "Mount_Broom": 94637995, - "Mount_Cat": 1150940211, - "Mount_Dragon": 1565720148, - "Mount_Horse": 2054712767, - "Mount_PlayerWings": 589829552, - "Nikkos": 1563122418, - "NinjaPig": 607400740, - "Orthus": 1552590225, - "Piggle": 1897753328, - "Piggle_Valentine": 687697592, - "Piggle_ValentinePart2": 1760391091, - "Pixie": 74836240, - "RatMagician": 885542120, - "SalamanderFire": 48480175, - "SalamanderIce": 2011152164, - "SalamanderStorm": 600331072, - "Satyr": 84793363, - "Scarab": 2143810477, - "Sheep": 86220083, - "SkeletonArmored": 1791586239, - "SnowSerpent": 138621543, - "Spider": 1603064269, - "SpiderBlack": 559353179, - "SpiderBrown": 557941675, - "SpiderCrystal": 2119625297, - "SpiderGolem": 1632616514, - "Sprite": 1889156557, - "SpriteDark": 1888685518, - "Stormzilla": 252684095, - "SunBird": 1602211198, - "Transformation_ArmoredSkeleton": 1861349834, - "Transformation_CatThug": 1175387611, - "Transformation_Cat_Bandit": 1012395694, - "Transformation_ClockworkGolem": 601121214, - "Transformation_Cyclops": 620156297, - "Transformation_DarkFairy": 1206757203, - "Transformation_DraconianSorcerer": 1212016810, - "Transformation_Draconian": 450730089, - "Transformation_EarthColossus": 140119452, - "Transformation_EvilSnowman": 1497097122, - "Transformation_FatGobbler": 634003800, - "Transformation_FireElemental": 822233230, - "Transformation_FireElf": 46585468, - "Transformation_FireSalamander": 2118418114, - "Transformation_Gobbler_Skinny": 162365207, - "Transformation_GolemSteel": 1329184184, - "Transformation_Ice_Colossus": 430406408, - "Transformation_Krokomummy": 1644615769, - "Transformation_MagmaMan": 545064542, - "Transformation_Mander": 88998828, - "Transformation_NinjaPig": 1029132174, - "Transformation_Ninja_Pig_04": 7093548, - "Transformation_RatThug": 1175352795, - "Transformation_RavenMystic": 1443197359, - "Transformation_StormElemental": 637088511, - "Transformation_Treant": 1874998327, - "Transformation_WarPig": 691088645, - "Transformation_WolfScout": 263523463, - "Transformation_WolfWarrior": 6092463, - "Transformationn_SkeletonPirate": 1821341863, - "Treant": 1396597132, - "Troll": 82261620, - "Unicorn": 550546918, - "Unknown": 718677478, - "Wolverine": 528843083, - "Wraith": 1788506505, - "Wyrmkin": 379044612, - "Transformation_CyrusDrake": 94277831, - "PetEgg": 1973167984, - "GhostLady": 493415959, - "Banshee": 827805677, - "GobblerRed": 250135875, - "Ghoul_Gravedigger": 161812468, - "SkeletonWarrior": 734585814, - "BansheeBoss": 806445565, - "Seraph": 1792950125, - "CrabKing": 277875784, - "UndeadCaster": 1680689397, - "DragonFrontier": 1829438301, - "HeckhoundGhost": 872406464, - "Mount_Unicorn": 212699468, - "Jellyfish": 910724608, - "SeaDragon": 1194541306, - "Turtle": 1897184620, - "Starfish": 1447562471, - "SpinyFish": 162948281, - "Mount_Gryphon": 2110522960, - "Mount_Shark": 1170186623, - "Mount_Manta": 979931598, - "Mount_Seahorse": 1554833818, - "Mount_Seahorse_Tough": 1245859453, - "Mount_Koi": 1150937409, - "Mount_Lobster": 2025618875, - "Mount_Turtle": 1490849128, - "VenusFlyTrap": 1612039757, - "GDN_MED_BabyCarrots": 327334743, - "GDN_SM_BoomShroom": 31324632, - "GDN_SM_Dandelion": 2058674142, - "GDN_SM_Disparagus": 1732989489, - "GDN_MED_EvilSnowPeas": 747408607, - "GDN_SM_FicklePickle": 205381955, - "GDN_SM_HappyHolidaisy": 1736236340, - "GDN_MED_HelephantEars": 1803669659, - "GDN_MED_HoneySickle": 424149132, - "GDN_LG_NinjaFig": 847338104, - "GDN_LG_SnapDragon": 1076151689, - "GDN_SM_StinkWeed": 845383431, - "GDN_MED_TrumpetVine": 1922690264, - "GDN_MED_VenusFlyTrap": 1560899638, - "GDN_SM_Laughodil": 1278979588, - "GDN_LG_BreadFruitBush": 533042934, - "GDN_MED_PricklyBearCactus": 1236846986, - "GDN_MED_KingParsley": 110148182, - "LeprechaunPatriotic": 414730890, - "SeraphYuletide": 1325846853, - "DragonGhost": 1502126893, - "UnicornNightmare": 604358256, - "EvilSnowmanSandman": 1579432150, - "Colossus_Spirit": 422514215, - "Rock": 2393554, - "GDN_MED_GivingTree": 2047236132, - "Egg": 70853, - "Mount_Carpets": 1602744888, - "Kraken": 1737191829, - "Wyvern": 1727802601, - "Phoenix": 1765559002, - "Judgement": 562901781, - "ForestLord": 1390734923, - "Humongofrog": 1272123051, - "Scarecrow": 41441599, - "Mount_Ram": 77196599, - "BasketSnake": 1835657086, - "Samoorai": 522797493, - "Transformation_RavenWarrior": 701169336, - "PhoenixStorm": 1325268802, - "PhoenixDeath": 1281634042, - "GDN_LG_CouchPotatoes": 879742725, - "GDN_MED_KeyLimes": 811516024, - "Mount_BoneDragon": 1023618313, - "Mount_BigBoneDragon": 1124383680, - "Mount_FairyWings": 1904926612, - "Mount_DragonWings": 755225925, - "Mount_Pegasus": 1621244140, - "GDN_MED_BellPepper": 1710238687, - "GDN_MED_GrapesOfWrath": 1068787103, - "GDN_SM_TigerLily": 1899057048, - "WysteriaPiggle": 49173891, - "Mount_Wyvern": 1658410744, - "Mount_2P_Rhino": 1052779475, - "NightHawk": 358964390, - "Giraffe": 935214826, - "Mount_Hawk": 2070898895, - "Mount_HalloweenNightmare": 726136378, - "GobblerHalloween": 1482399836, - "Leopard": 1606863715, - "Skink": 76950867, - "Mount_Ostrich": 466111322, - "Mount_Crocagator": 1981222087, - "Transformation_Blacktusk-01": 401543565, - "Mount_Hippogriff": 2043817624, - "Transformation_Gorilla-01": 1555853240, - "Transformation_Gorilla-02": 1606184888, - "Mount_Raven": 94983735, - "Mount_Chrismoose": 1822495199, - "Mount_CandyCane": 1148551147, - "Ivy_League": 925492799, - "GDN_MED_Ivy_League": 1630077794, - "Mount_Kirin": 1168691825, - "GDN_SM_Moonflower": 2068754330, - "GDN_MED_BoonTree": 788055729, - "Snowball": 2046118016, - "Foo_Dog": 1549710807, - "ShenlongDragon": 932676736, - "Monkey": 1233866291, - "Wolfhound": 626884686, - "Redcap": 1540319086, - "Raven": 79941650, - "HollowKnight": 1107268274, - "Book": 2405826, - "GDN_MED_AngoraBunnyEars": 1547559854, - "GDN_MED_FortuneCookieTree": 786686214, - "GDN_MED_GooseTree": 809354938, - "GDN_SM_HoneyBeePlant": 1528880373, - "GDN_MED_BambooShoots": 1096708900, - "GDN_SM_Huckleberries": 1937475840, - "Rock_Moustache": 962221287, - "Efreet_Myth": 1834555522, - "Efreet": 1401700123, - "Mammoth": 1395147745, - "Triton": 1730466188, - "Gnome": 74954215, - "BoneDragon": 429245206, - "Basilisk": 1457899086, - "Chimera": 529027789, - "Transformation_GammaTemplate": 1337834518, - "Mount_Camel": 1168198963, - "Mount_RenaissanceWings": 1049782088, - "Bull_Mount": 1713506759, - "Mount_Owl": 1150938242, - "Mount_Alphyn": 487264165, - "Mount_Stag": 1150353823, - "Mount_Auroch": 509865325, - "Mount_Warg": 1150358072, - "StrangeBeast": 511334734, - "Efreet_Ice": 1820009122, - "Efreet_Storm": 1269986674, - "GDN_LG_AlligatorPear": 1293913372, - "Mount_2P_Treant": 928450863, - "Mount_2P_Dragon": 1431637933, - "Mount_Pogo_Stick_WC": 1462849298, - "Mount_Pogo_Stick_MB": 1349603090, - "GDN_LG_MeltingCheese": 1914589015, - "GDN_SM_FishOnAVine": 1734955358, - "GDN_LG_AngelOak": 1539539424, - "GDN_LG_MeltingCheese_Angel": 1254781264, - "SnowyOwl": 1682262138, - "Mount_3P_Hydra": 1207475250, - "WeaselMinstrel": 1541234616, - "MOUNT_Rickshaw": 938282973, - "Transformation_Sherlock-Bones": 509126601, - "Mount_Phoenix": 556355452, - "Toaddle": 597488187, - "Pantera": 528797696, - "WildfireTreant": 673362041, - "StoneTiger": 746336665, - "Blowfish": 1447737334, - "Smith": 78327187, - "FlyingCat": 1254472614, - "RamWarrior": 536916302, - "Ladybug": 1846384669, - "BurlapBoy": 607590898, - "DeerKnight": 560802130, - "Gargoyle": 1227701700, - "Chameleon": 596131510, - "Scorpion": 1462253104, - "GDN_SM_BoiledPeanuts": 544885684, - "GDN_SM_ClockFlower": 676513046, - "GDN_SM_DeadBeets": 650783482, - "GDN_MED_SnowApple": 1916648180, - "Eyecaramba_Violet": 1804780775, - "Eyecaramba_Green": 750346574, - "Eyecaramba_Orange": 687614854, - "Piggle_Grandfather": 131445665, - "Velociraptor": 1042311818, - "Babydactyl": 1180982194, - "Stegosaurus": 476811765, - "Mount_Pegasus_Spectral": 948250730, - "Mount_2P_Scarydactyl": 1808983335, - "Mount_2P_TRex": 1495851852, - "Therizinosaurus": 80337863, - "Runtosaurus": 476200406, - "FrilledLizard": 420993517, - "Mount_Ankylosaurus": 669692274, - "Mount_Triceratops": 1126950204, - "Mount_2P_Glider": 1630365881, - "Transformation_Thunderhorn": 1045262037, - "Transformation_Jaguar": 1080966062, - "Transformation_Pteranadon": 273836142, - "Transformation_ShadowWeaver": 255927111, - "Transformation_EagleWarrior": 1880471875, - "Mount_Falalalallama": 389890123, - "Mount_2P_WinterTreant": 1850265056, - "GDN_LG_MissileToe": 1767792974, - "GDN_MED_PointSetta": 647257205, - "Nutcracker2012": 1598217699, - "Coal2012": 1627852119, - "Mount_Sleigh": 1636615519, - "Mount_Sabertooth": 1613031507, - "Mount_MechanicalWings": 1014917438, - "PiranhaHunter": 686271163, - "Quetzal": 2020925822, - "Mount_Sloth": 1169387359, - "HollowKnightLife": 2114081886, - "BettaFish": 138088968, - "MummyCat": 62372925, - "TrojanHorse": 1725299194, - "WC_Storm_Possessed": 186960228, - "AV_Possessed": 1106693085, - "AZ_Possessed": 1106692701, - "CL_Possessed": 1106692255, - "KT_Possessed": 1106693015, - "MS_Possessed": 1106692977, - "WC_Possessed": 1106692459, - "Mount_2P_Whale": 448824263, - "Mount_2P_Chariot": 88035298, - "Mount_WarBoar": 1159836211, - "Mount_Palanquin": 47587550, - "BearCub": 672664722, - "Transformation_Minotaur": 1454233452, - "DragonGauntlet": 797645257, - "DeathUnicorn": 924144161, - "Flamingo": 1488424911, - "Mount_Gorilla": 1939919432, - "Mount_WarUnicorn": 1361393198, - "GargoyleMyth": 1819685060, - "TikiMan": 16098567, - "Siren": 79937811, - "GoldenRam": 410220227, - "Harpy": 96026632, - "SwordShield": 1668411785, - "ClockworkKnight": 1059948980, - "Mount_MechanicalEagle": 1720948645, - "Mount_Cloud": 1166233435, - "Mount_Surfboard": 1914250039, - "Mount_BetaDragon": 1023653721, - "Mount_BeeWings": 1387988401, - "Vampire": 524731385, - "FrankenBunny": 589797989, - "BumbleBee": 249592226, - "Mount_Dragonfly": 1028843656, - "BronzeGolem": 1320867859, - "TarantulaHawk": 1983939429, - "Mount_Grasshopper": 1852850928, - "FlyingSquirrel": 847551166, - "GDN_MED_Sunion": 1652707634, - "GDN_MED_SwordFern": 548761438, - "GDN_SM_SugarKhrystal": 267539461, - "GDN_SM_SawPalmetto": 1892888046, - "GDN_LG_FacePalm": 2050814140, - "GDN_LG_QueenCrapeMyrtle": 80378450, - "Transformation_ShadowTank": 1304943609, - "Transformation_ShadowHeal": 1254024185, - "Transformation_ShadowDPS": 87276537, - "Mount_Noelephant": 1383672248, - "SaintBernard": 572932242, - "ParkaFox": 2009808189, - "Goose": 75019719, - "Mount_Coconut": 791151432, - "CreepyBeetle": 345594179, - "BabyDragonfly": 1367084335, - "FennecFox": 41315063, - "PP_Leviathan": 833901526, - "PP_SunSerpent": 1062677009, - "PP_LordOfWinter": 960214698, - "PP_Medusa": 867812931, - "PP_Dryad": 147654656, - "PP_AvengingFossil": 315904647, - "PP_Sabertooth": 1799146677, - "Mount_Butterfly": 1283940943, - "Mount_Hare": 2070851023, - "Transformation_MorganthB": 197306990, - "Transformation_MorganthC": 197831278, - "Transformation_MorganthD": 200452718, - "BabyPegasus": 1215000859, - "ArcaneHelp": 1899247549, - "Mount_Vines": 98389624, - "Mount_ArcaneMinecart": 2001270930, - "Hobgoblin": 2133668461, - "Mount_2P_Rowboat": 237071469, - "ForestSpirit": 1178454602, - "Mount_SpiritWolf": 531991076, - "Otter": 84138671, - "OrigamiBird": 550984083, - "DinoSkeletal": 233277835, - "Mount_HarrowingsGreen": 1605746772, - "Mount_HarrowingsBlue": 477152436, - "Mount_HarrowingsPurple": 2092807554, - "RedPanda": 1744233845, - "Ibis": 2665577, - "Corgi": 78823875, - "Mount_Yak": 996545739, - "Mount_FlyingBalance": 436519643, - "Transformation_ShadowMalistaire": 1043814435, - "Transformation_DragonMalistaire": 841867699, - "Mount_Scarab": 1687658791, - "Transformation_MisterHound": 1973578844, - "Mount_BahHumbug": 55114077, - "Skates": 1568993965, - "Moose": 75019725, - "Mount_Gargoyle": 1456663874, - "GDN_MED_VenusFlyTrapEpic": 1594069606, - "Mount_PlayerWingsPink": 19403046, - "GDN_LG_AlligatorPearEpic": 1326804812, - "Pet_Armadillo": 825736847, - "Mount_JoustingDestrierDyeable": 1683448768, - "GDN_MED_VampireCarrots": 871596496, - "GDN_SM_WhiteTigerLilyEpic": 1703271434, - "GDN_LG_NinjaFigEpic": 938504823, - "GDN_LG_SnapDragonEpic": 2071674466, - "GDN_MED_HelephantEarsEpic": 719166107, - "GDN_MED_TrumpetVineEpic": 225854518, - "GDN_SM_DandelionEpic": 728637442, - "GDN_SM_HuckleberriesEpic": 1903258448, - "GDN_MED_SnowAppleEpic": 1231175967, - "GDN_SM_BoomShroomEpic": 981598771, - "GDN_MED_KingParsleyEpic": 2038371004, - "Mount_Raptor": 749695031, - "Pet_Toucan": 581477475, - "Pet_Squirrel": 969881395, - "Mount_WonkyDonkey": 1481657312, - "Mount_HawkPatriotic": 509149743, - "Pet_FrogAssistant": 1945041750, - "Mount_Cat2": 1151054899, - "Mount_Cat2BW": 1603515443, - "Pet_ArmadilloBW": 825733899, - "Pet_FrankieForearms": 1100195857, - "Mount_SolarSabre": 1281093703, - "MNT_MechOstrich": 258667969, - "MNT_BootsBalance": 1799191558, - "MNT_BootsDeath": 1034912971, - "MNT_BootsFire": 606061658, - "MNT_BootsIce": 2142643294, - "MNT_BootsLife": 773751898, - "MNT_BootsMyth": 144792486, - "MNT_BootsStorm": 1525245121, - "Pet_CorgiBirthday": 1951779369, - "OrigamiBirdBDay": 1909935955, - "Pet_FlyingBlackCat": 432111988, - "Mount_Narwhal": 449637834, - "Mount_NightOwl": 1648420845, - "Pet_Penguin": 137342907, - "MNT_PowerGemUnicorn": 411234062, - "Pet_CrystalButterfly": 512136094, - "Mount_BabyMammoth": 185831059, - "MNT_BabaYaga": 564874997, - "Pet_BabySeal": 657606984, - "Pet_BabyYeti": 635847496, - "Transformation_BallerinaBear": 1525333600, - "Mount_StagYuletide": 1508680687, - "Transformation_TitanMedium": 1700742736, - "Transformation_TitanLarge": 718614967, - "Pet_SirenIce": 849851564, - "Mount_FlyingDeath": 1717725588, - "Mount_FlyingFire": 1177216332, - "Mount_FlyingIce": 1238841184, - "Mount_FlyingLife": 433397684, - "Mount_FlyingMyth": 164983572, - "Mount_FlyingStorm": 375872049, - "Dragonling": 1730534849, - "Pet_EggChicken": 952873217, - "HeckhoundGhost_MAW": 893368960, - "Mount_WinterTrain": 751515281, - "Mount_RubberDucky": 1826548479, - "Pet_BansheeSpellwrit": 917979583, - "Pet_SamooraiSpellwrit": 370057597, - "Mount_UnicornAstral": 886914505, - "Guest_Boochbeard": 1958574095, - "Pet_MouseSister": 1267930350, - "Pet_MouseFather": 2010008339, - "Pet_VampireSquirrel": 250588691, - "Mount_CoffinCar": 1387606595, - "Mount_BabyElephant": 2026559639, - "Pet_RoadHog": 601156960, - "Mount_WolfGryphonWings": 543038283, - "MNT_ClockworkSteed": 891371132, - "Mount_Chopper": 1196683136, - "Pet_ButterflyLamb": 527214392, - "Pet_MouseMother": 2012687123, - "Pet_MouseBrother": 1174380856, - "Pet_Cherub": 769208559, - "GDN_SM_Jewel": 1104045832, - "MR_Death_Duncan_Grimwater": 1850289001, - "Mount_DesertRunner": 2049036229, - "Pet_MonkeyMirage": 418612892, - "Pet_ClockworkOwl": 1038482431, - "Pet_NinjaTurtle": 2024540686, - "Mount_Vines_Halloween": 82852149, - "Mount_SwarmBat": 1151836459, - "Mount_2P_NinjaDragon": 1239694057, - "Mount_Gobler": 1820615236, - "Mount_MaryleboneCar": 2027689685, - "JackOLantern": 1016361578, - "Transformation_DjinnCommonA_Balance": 996127128, - "Transformation_MedicineMode": 25960701, - "CactusHopper": 1956293007, - "Transformation_Mimic_ChestGold_A": 414145432, - "Mount_Ghoulture": 1067671195, - "Pet_Macaw": 1087278472, - "Pet_SandWorm": 653200803, - "Transformation_DromelDancer": 1071824116, - "Pet_Bunnies": 695874547, - "Mount_Snowboard": 1914380015, - "Transformation_DrommelDancer": 226294468, - "Mount_Carpet_New": 1618650322, - "Mount_BunnySleigh": 599915427, - "Helephant_Heart": 419161272, - "Mount_Snowboard_Holiday": 876339060, - "Transformation_GhostDog": 646575420, - "Transformation_PrinceGobblestone": 693826496, - "Transformation_Mithraya": 1240010601, - "Transformation_LuskaCharmbeak": 897469730, - "Transformation_YoungCyrusDrake": 15595663, - "Kookaburra": 1069759154, - "BorealisGolemPet": 797488492, - "FlyingEyePet": 505959833, - "StormCloudPet": 548463069, - "BullPet": 1993917801, - "OpossumPet": 284003652, - "GhoulturePet": 939920734, - "StormCloudPetB": 548463001, - "StormCloudPetC": 548463003, - "Guest_LordNightshade": 1221409981, - "BullPetB": 1993917561, - "BullPetC": 1993917553, - "BullPetD": 1993917513, - "Transformation_ShadowCrit": 1392195065, - "Mount_Pennyfarthing": 1551926344, - "Mount_RowboatPirate": 2079208803, - "Mount_IceCube": 1261861595, - "Guest_LostMaiden": 883675592, - "Guest_BoatswainMcGee": 1359750850, - "Guest_ChiefMateMcGurk": 329643845, - "Guest_DoomedBones": 2015643882, - "Guest_SpectreoftheBrocken": 266357448, - "Guest_DrownedKnight": 1100966093, - "Guest_TarntheDrowned": 329540205, - "Guest_DisloyalKnight": 1853240753, - "Guest_NamelessKnight": 1065677876, - "Guest_LambentFire": 489886605, - "Guest_LordoftheBrocken": 1662003371, - "Guest_StormCaiman": 1147500291, - "Guest_GrinningDeathMoon": 737595789, - "Guest_MoonSkullWight": 1720039490, - "Guest_HuemacSpearWreath": 1522021131, - "Guest_HowlingBanshee": 1340855338, - "Guest_Sea-Booter": 1818491983, - "Guest_DeadRover": 1009273257, - "Guest_CelestianRemnant": 1312268448, - "Guest_Shadow-WebConscript": 1500529411, - "Guest_Shadow-WebMercenary": 623672171, - "Guest_Shadow-WebWraith": 810956416, - "Guest_Shadow-WebHaunt": 500586883, - "Guest_CelestianPartisan": 633346892, - "Guest_CelestianDefender": 482102727, - "Guest_ThraleBonestriker": 1172972733, - "Guest_VorgenSoulbreaker": 1935693246, - "Guest_ServusBloodsword": 1703995647, - "Guest_QueenCalypso": 845803519, - "Guest_BlueBart": 77043390, - "Guest_KarolakNightspinner": 1008737316, - "Guest_ArachtusDuskweb": 1787750209, - "Guest_ZhalarStarcloud": 1453644105, - "Guest_NarallorNightborn": 1963363700, - "Guest_SelwynSkywatcher": 1413136893, - "Guest_OsseusNightreaver": 306827003, - "Guest_IrateBanshee": 865143109, - "Guest_FuriousHowler": 1607252558, - "Guest_CryingSpirit": 1559074820, - "Guest_UndeadDraconian": 169249571, - "Guest_ReanimatedDraconian": 247067807, - "Guest_GhastlySlave": 80127661, - "Guest_BoundSpecter": 369706568, - "Guest_NecroticHaunter": 1714841563, - "Guest_LoathsomeCreeper": 1087245229, - "Guest_FleshrotRetriever": 1925148031, - "Guest_BarbarianSpirit": 2112552732, - "Guest_BeghastionCrowcaller": 586628832, - "Guest_BeghastionFieldburner": 1650751959, - "Guest_BoneWarrior": 76802026, - "Guest_FleshlessSentry": 708431820, - "Guest_PirateRavager": 945157059, - "Guest_RottenScallywag": 974666855, - "Guest_ArmoredBonewalker": 1444568072, - "Guest_UndeadWizard": 1622435563, - "Guest_SoulSearcher": 2094392941, - "Guest_DecayingBlackguard": 412324062, - "Guest_FoulReaper": 919877614, - "Guest_NightShadow": 1675932226, - "Guest_MotleyCrew": 653779218, - "Guest_OrinGrimcaster": 472649066, - "Guest_GhostofSylviaDrake": 218332449, - "Guest_VikaMarkmaker": 1145181168, - "Guest_VasekAshweaver": 1001434369, - "Guest_FireWraith": 1027720368, - "Guest_HungrySoul": 1722435576, - "Guest_FrostBones": 456145606, - "Guest_SnowSkull": 835837850, - "Guest_WinterSkull": 1556601065, - "Guest_LothinDoombringer": 860995070, - "Guest_MimirWinterbane": 1111898070, - "Guest_KulgrimSoulsunder": 278037985, - "Guest_HitojiniDeathcaster": 1144499043, - "Guest_GaikotsuSkeleton": 1113949902, - "Guest_PhantomAce": 1917639347, - "Guest_PhantomGlider": 849918336, - "Guest_Krokomummy": 857773886, - "Guest_NiriniAncientGuard": 359313880, - "Guest_NiriniFireSpirit": 1863811476, - "Guest_VaultHaunter": 197723476, - "Guest_VigilantDefender": 171276829, - "Guest_WanderingAhnicSpirit": 1702865088, - "Guest_ForgottenDjeseritSoul": 1170568256, - "Guest_KaranahnDeathfeeder": 1612857711, - "Guest_ShamblingAhnic": 1579129677, - "Guest_RisenDjeserit": 287855500, - "Guest_KaranahnMortifier": 874288111, - "Guest_DjeseritDweller": 2058423665, - "Guest_AhnicStrider": 1776992302, - "Guest_GuardianoftheFang": 1816795524, - "Guest_DefenderoftheFang": 354353604, - "Guest_ProtectoroftheFang": 1290191037, - "Guest_SouloftheCharmed": 422890577, - "Guest_KaranahnKeeper": 77581557, - "Guest_NiriniIntimidator": 677205957, - "Guest_CondemnedSoldier": 449152244, - "Guest_NimahtheWicked": 1298248873, - "Guest_AkoriNirini": 1123159753, - "Guest_SoulScavenger": 892852198, - "Guest_KeeperoftheFang": 1676773499, - "Guest_ItennuSokkwi": 699159408, - "Guest_Tempestra": 334938435, - "Guest_QueenIrisiDjeserit": 1861434100, - "Guest_TheBonekeeper": 1302503449, - "Guest_CryptScavenger": 1893795791, - "Guest_Soulsapper": 1699756010, - "Guest_KingUroAhnic": 1788825731, - "Guest_KingShemetDjeserit": 1350067043, - "Guest_UnholyWraith": 1871146013, - "Guest_PikeSpiritcrusher": 498715531, - "Guest_SpellwritScreamer": 801626733, - "Guest_SpellwritRonin": 1671439174, - "Guest_Shrieker": 805966229, - "Guest_GravePhantom": 731622936, - "Guest_NightmareSpirit": 230709057, - "Guest_VengefulCreeper": 1100197884, - "Guest_TombRoamer": 1277825068, - "Guest_ShieldSkeleton": 1634270152, - "Guest_AgonyWraith": 30384496, - "Guest_IcyGhost": 768353592, - "Guest_Half-wittedSkeleton": 647996362, - "Guest_LazyHenchman": 1329554426, - "Guest_TiredFighter": 210248632, - "Guest_Screecher": 469007005, - "Guest_SeethingWraith": 664913100, - "Guest_ColdConfusion": 1304943934, - "Guest_OssuaryConscript": 1017667150, - "Guest_Ghulture": 1330558655, - "Guest_BodyGuard": 1048581801, - "Guest_SpectralGuardian": 422805602, - "Guest_VaultConscript": 1388398065, - "Guest_FootPatrol": 1692393321, - "Guest_ArmedGuard": 2045920536, - "Guest_Chilly": 1764665905, - "Guest_Achey": 973370519, - "Guest_Sneezy": 1769440773, - "Guest_Cough": 1170200073, - "Guest_Shadowbones": 1316133167, - "Guest_ForgottenConscript": 1466348281, - "Guest_BarracksGuardian": 236603440, - "Guest_CryptConscript": 314755436, - "Guest_DurvishSeeker": 1825622267, - "Guest_MedicineMode": 167015574, - "Guest_Myriarch2": 593881680, - "Guest_Myriarch3": 593881616, - "Guest_MyriarchEphialtes": 773531895, - "Guest_MotherGhulture": 1585201915, - "Guest_CaptainCosrow": 727107332, - "Guest_VizierRafaj": 214040637, - "Guest_DarkmoorSerf": 1522169114, - "Guest_DarkmoorSquire": 1822567109, - "Guest_ScarletWampyr": 1683954247, - "Guest_DraconianRevenant": 741497298, - "Guest_DraconianEidolon": 107733297, - "Guest_AnguishedWraith": 1078602022, - "Guest_DraconianPyromancer": 729577007, - "Guest_DraconianThaumaturge": 189734361, - "Guest_DraconianDiviner": 472633746, - "Guest_DraconianConjurer": 1824962835, - "Guest_DraconianTheurgist": 1828628416, - "Guest_DraconianNecromancer": 175364324, - "Guest_DraconianSorcerer": 1262893339, - "Guest_SirBlackwater": 366308464, - "Guest_AkhtangWormCrawl": 1589032404, - "Guest_SpiritofDarkmoor": 579455915, - "Guest_ShanevonShane": 2096517522, - "Guest_YevgenyNightCreeper": 1535282881, - "Guest_MalistairetheUndying": 824508513, - "Guest_Bunferatu": 1015806005, - "Guest_CountBelaBlackSleep": 761647679, - "Guest_DeathSoldier": 1715141574, - "Guest_SorrowWhisperer": 556532003, - "Guest_GriefSpectre": 1425488559, - "Guest_HowlingShade": 631460247, - "Guest_WalkingDead": 318527090, - "Guest_Akuji": 977635799, - "Guest_TorturedKakedaSoul": 1716874833, - "Guest_KakedaSpiritSlave": 1814699344, - "Guest_DishonoredSamoorai": 320085744, - "Guest_CursedRonin": 1204095686, - "Guest_TomugawatheEvil": 166125424, - "Guest_OyotomitheDefiler": 1672714483, - "Guest_Fushiko": 801492770, - "Guest_BrokenLandGuardian": 294671991, - "Guest_ShatteredSkyGuardian": 746681463, - "Guest_SunderedSeamGuardian": 1439618652, - "Guest_BrokenLandSpirit": 860105895, - "Guest_ShatteredSkySpirit": 2104112380, - "Guest_SunderedSeamSpirit": 69572311, - "Guest_LostSoul": 204361577, - "Guest_RottingFodder": 308249734, - "Guest_HauntedMinion": 689597338, - "Guest_FieldGuard": 1175228991, - "Guest_SkeletalWarrior": 778393993, - "Guest_SkeletalPirate": 1476730220, - "Guest_WanderingSpecter": 126188449, - "Guest_LivingScarecrow": 1442943145, - "Guest_FrostPhantom": 1809776664, - "Guest_FireShrieker": 173332719, - "Guest_CryptCrawler": 2118799272, - "Guest_ViridianSpecter": 383149977, - "Guest_ArgentClatterer": 525414714, - "Guest_SwimmingSpecter": 1494025094, - "Guest_ScarletScreamer": 1689589811, - "Guest_BoneDigger": 1351421123, - "Guest_HowlingGhost": 664019391, - "Guest_SkeletalSoldier": 750463116, - "Guest_MaidenofHate": 444442868, - "Guest_SkeletalRetainer": 1409032775, - "Guest_SoulHunter": 1900267551, - "Guest_MidnightShuffler": 1991052065, - "Guest_PlaguedSoul": 419071561, - "Guest_HauntingBanshee": 345837052, - "Guest_SimontheSayer": 1352807820, - "Guest_TheHarvestLord": 1923575206, - "Guest_LadyBlackhope": 1403431623, - "Guest_SergeantSkullsplitter": 898737831, - "Guest_Foulgaze": 2063419769, - "Guest_Wormguts": 788697519, - "Guest_Rattlebones": 125602919, - "Guest_Paulson": 1112716921, - "Guest_Grubb": 1167554274, - "Guest_Norton": 581021964, - "Guest_NightStalker": 1447653309, - "Guest_AddereTimeo": 1491420030, - "Guest_TheReaper": 1526369733, - "Guest_AngrusHollowsoul": 1427862805, - "Guest_OrrickNightglider": 951078615, - "Guest_SteelSentinel": 885250894, - "Guest_Shadow-WebSoldier": 2014925398, - "Guest_LostCeleste": 1725301830, - "Guest_CapnNigelSkullcrack": 1665439970, - "Guest_HaulAwayJoe": 1075985331, - "Guest_OldMaui": 15300840, - "Guest_LordAgue": 140791419, - "Guest_MelweenaSmite": 432188189, - "Guest_HalloweenTrickster": 2043736417, - "Guest_PumpkinHead": 1098332105, - "Guest_BaronMordecai": 817370918, - "Guest_KaimaniteMummy": 1332671420, - "Guest_VeggieRevanant": 928504192, - "Guest_BloodBat": 76467389, - "Guest_DeadBeets": 157829578, - "Guest_Desparagus": 1130644076, - "Guest_MeanestFly-Trap": 1652898868, - "Guest_Nosferabbit": 1021159436, - "Guest_ThrallofSothmekhet": 330780177, - "Guest_VileApparition": 426627869, - "Guest_SoulServant": 1183110886, - "Guest_SoulKeeper": 917518313, - "Guest_AdmiralBontau": 2032168402, - "Guest_DeathWhisperer": 3814952, - "Mount_RollerBlades": 111369373, - "Guest_BaneWyrm": 147033576, - "Guest_BlackDragon": 939469656, - "Guest_DragonSpawn": 1829803517, - "Guest_Fire-SpitterSpawn": 616624489, - "Guest_CaoranachtheFire-Spitter": 323513000, - "Guest_Jabberwock": 1552492834, - "Guest_CatalantheLightningLizard": 1155778705, - "Guest_WhiteDragon": 2009449331, - "Guest_WinterWyrm": 478925069, - "Guest_WyrmStatue": 2119216210, - "Guest_AlgidWyrm": 1309546482, - "Guest_BruleeSucre": 390936202, - "Guest_HebitohoWyrmling": 1682026810, - "Guest_Shadowwock": 505539184, - "Guest_EirikurAxebreaker": 1361453552, - "Guest_WarWyrm": 1124740742, - "Guest_StrayFireflier": 610979811, - "Guest_BurningFlamewing": 2041225130, - "Guest_FeralLavaling": 371483057, - "Guest_SplinterWing": 923421333, - "Guest_ChanticoBlueAir": 1572441903, - "Guest_CopperWingGuard": 302783602, - "Guest_ObsidianBeak": 2016227452, - "Guest_CaquixNineShadows": 2070101060, - "Guest_LustrousTlalocan": 1201030473, - "Guest_SeedThief": 263211181, - "Guest_PopZotzUnluckyDay": 1416773489, - "Guest_NezathePoet": 1905861376, - "Guest_MazenStingerBee": 1642023393, - "Guest_ImperialJusticePayne": 1285679745, - "Guest_AssistantWardenPorfiry": 22099059, - "Guest_MarshalKamensky": 524669730, - "Guest_WardenVissarovich": 882556823, - "Guest_GulagGuard": 100744159, - "Guest_CaptainKravchuck": 690830770, - "Guest_ImperialGuard": 346803640, - "Guest_IronPaw": 1797329688, - "Guest_TundarianEnforcer": 134256836, - "Guest_Ivan": 996220221, - "Guest_ColonelOrlov": 1381254189, - "Guest_IronPawIntakeCaptain": 2099184835, - "Guest_SolitaryWarden": 1503529566, - "Guest_CaptainZubkov": 793725366, - "Guest_SergeantBobrik": 722182485, - "Guest_WailingWraith": 946976407, - "EggChick": 1452316301, - "BunnyMallow": 518233330, - "Guest_ThunderHornZombie": 1007920040, - "Guest_SmokingMirrorZombie": 340971759, - "Guest_ShamblingZombie": 1920485146, - "Guest_MoonSkullZombie": 809249764, - "Guest_DeathlessStormHorn": 812397213, - "Guest_MozarTurtleHunter": 561749043, - "Guest_GuillermoShatterer": 499565054, - "Guest_XiuhcoatlBarbedTooth": 1719245305, - "Guest_AzcalFireAnt": 1281366337, - "Guest_TlotzinMoonThief": 407285761, - "Guest_PocaCruelStar": 1117353085, - "Guest_ThunderHornGhoul": 597878999, - "Guest_TezomocStoneSinger": 733511940, - "Guest_EzhuaBadTaste": 632779219, - "Guest_UacalxochitlBloodEye": 1614856226, - "Guest_WanadiBlackSky": 349829749, - "Guest_ElMarrow": 483880636, - "Guest_GrimCalaca": 1534029144, - "Guest_XipeFlayedOne": 1343577398, - "Guest_MotecumaDeathMask": 1782393717, - "Guest_EkeChuah": 13416770, - "Guest_AnacaonaBlackSnake": 1543344897, - "Guest_SmokingMirrorWight": 776452983, - "Guest_Tolkemec": 217428080, - "Mount_Fox": 77199428, - "PP_OwlProtege": 268847192, - "Mount_SharkSki": 331374103, - "PP_Dolphin": 1662291612, - "Mount_CastSymbol_D": 1134428045, - "Mount_CastSymbol_E": 1136525197, - "Mount_CastSymbol_F": 1138622349, - "Mount_CastSymbol_G": 1140719501, - "Mount_CastSymbol_A": 1128136589, - "Mount_CastSymbol_B": 1130233741, - "Mount_CastSymbol_C": 1132330893, - "Guest_LionSpectralGuardian": 1791543691, - "Guest_KillmareSpiritwalker": 1818928165, - "Guest_ZebraSpectralGuardian": 815933596, - "Guest_GorillaSpectralGuardian": 1635182119, - "Guest_IklawGhostWarrior": 373465545, - "Guest_BwanaShadowriver": 1307628747, - "Guest_ElephantSpectralGuardian": 1579402208, - "Guest_ZangaZebu": 1218173119, - "Guest_GrumishGreataxe": 486953385, - "PP_GlowFairy_A": 2028856748, - "Guest_RestlessSoldier": 1142701763, - "Guest_WanderingWizard": 209518514, - "Guest_ColonelIvanenko": 399169035, - "Guest_DetollitheDestroyer": 655767295, - "Guest_Jawniak": 1791298433, - "Guest_Tajniak": 356182394, - "Guest_Ygor": 996316081, - "Guest_KyaniteLancer": 2136703656, - "Guest_VestaShadowmark": 1846747836, - "Guest_ZoraSteelwielder": 1186470644, - "Guest_AndorBristleback": 1949884743, - "Guest_GalliumPaladin": 1812340868, - "Guest_GalliumFootman": 1295203112, - "Guest_GalliumShardtrooper": 1210699836, - "Guest_GalliumJuggernaut": 3527584, - "Guest_VladimirDarkflame": 1575322237, - "Guest_KyaniteLieutenant": 561528977, - "Guest_DrusillaMorningbane": 155837810, - "Guest_KyaniteValkyrie": 53242136, - "Transformation_20Q_SherlockBones": 1112674320, - "Guest_DevoraShadowcrown": 1813459117, - "Guest_YoualaNightDrinker": 881289828, - "Guest_Pendragon": 715669945, - "Guest_CelestianRevenant": 515730327, - "Guest_SoullessServant": 1505662730, - "Guest_SpiritServant": 104517373, - "Guest_SoulSerf": 1188214406, - "Guest_ServileSoul": 871844607, - "Guest_SkeletalCorsair": 239414410, - "Guest_RottedFodder": 1301186193, - "Guest_ScarletScreecher": 600457915, - "PP_FrankBunnyBride_A": 974707030, - "Guest_BastillaGravewynd": 2100015237, - "Guest_VilaraMoonwraith": 2067986693, - "Guest_YngvarSharptooth": 1783361972, - "Guest_TroubledWarrior": 1569033392, - "Guest_VeggieRevanant2": 928503904, - "Guest_VeggieRevanant3": 928503888, - "Guest_VeggieRevanant4": 928503872, - "Guest_VeggieRevanant5": 928503856, - "Guest_AncientQhatWarrior": 1564521104, - "Guest_EmperorPaleolo": 2079384347, - "Guest_SpiritofIntolerance": 1627658048, - "Guest_SpiritofInquiry": 1320544891, - "Guest_FirstGuardian": 1982227776, - "Guest_FallenMerc": 225926286, - "Guest_NightShadow2": 1638183490, - "Guest_NightShadow3": 1636086338, - "Guest_NightShadow2-2": 1436856907, - "Guest_NightShadow3-2": 1434759755, - "Guest_NightShadow4-2": 1432662603, - "Guest_NightShadow5-2": 1430565451, - "Guest_NightShadow6-2": 1428468299, - "Guest_NightShadow7-2": 1426371147, - "Guest_FirstScythe": 738854032, - "Guest_GreyMantisCaptain": 860186057, - "Guest_GreyMantisHunter": 1239274377, - "Guest_Atlach-Leng": 836136649, - "Guest_PetrovGloomstrider": 2045783873, - "Guest_NauyotolDownIntheHole": 1134251106, - "Guest_SandorSpearcaller": 1351072377, - "Guest_MavraFlamewing": 1477685600, - "Guest_Scaldling": 208751819, - "Guest_WoebegoneWraith": 1166488705, - "Guest_BorisBlackrock": 1365399915, - "Guest_KatiaFirewinter": 521255834, - "Guest_ValerikBrightsword": 1244055782, - "Guest_RurikFlamesoul": 1962726850, - "Guest_IonaPyrelance": 722266491, - "Guest_DarkPoltergeist": 818162178, - "Guest_TheCollector": 1772287612, - "Guest_ViktorSnowcrusher": 1028387381, - "Guest_ValeskaRedwind": 19316351, - "Guest_ScarrikGallowgaunt": 105397333, - "Guest_Neberyx": 1453883041, - "Guest_AsrikWidebelt": 401936422, - "Guest_GothricHonorbound": 750072340, - "Guest_HalfangBristlecrown": 618779562, - "Guest_OsvudFleetpaw": 1023466459, - "PP_PufferFish_A": 1578606029, - "Guest_OzelUnderwaterCat": 1033669302, - "PP_BabyGreenMan_A": 910025246, - "PP_SchoolTurtle_A": 1012620678, - "PP_DarkBalloon_A": 1229308566, - "MT_JetsamCopter": 92127678, - "Mount_4P_DarkClownCar": 420246262, - "MNT_BalloonsBunch": 2000358474, - "Guest_TempleGuardian": 632574316, - "Guest_TemplePhantom": 1701097840, - "Guest_MahonStarsearcher": 1549093341, - "Guest_LostKnight": 858980994, - "Guest_AnguishedWoodman": 174606918, - "Guest_TormentedTreant": 294050331, - "Guest_WildfireTreant": 1902129818, - "Guest_BlightedYaxche": 679097088, - "Guest_Junglethorn": 1734561424, - "Guest_Tangleroot": 2027061721, - "Guest_BlightedFreerooter": 1109803061, - "Guest_Winterbranch": 1170787806, - "Guest_DecayingBogwalker": 1338670789, - "Guest_BrownwoodTormentor": 1655181754, - "Guest_Wildroot": 1839747182, - "Guest_Ironsplinter": 668295157, - "Guest_Frostbranch": 75974631, - "Guest_KyoukonteiTreant": 474446232, - "Guest_BrokenStumps": 414724364, - "Guest_WordlessWoodsmen": 1813881830, - "Guest_DesiccatedTreebeard": 1826942903, - "Guest_ShadowoftheLand": 1612385317, - "Guest_TreeRoot": 1406633546, - "Guest_BefouledWoodwalker": 1517919498, - "Guest_ConfusedForestWarrior": 750805985, - "Guest_CrazedForestSpirit": 1007960507, - "Guest_Oakheart": 1158293719, - "Guest_SnowTreant": 1028620035, - "Guest_Snowbeard": 1997921701, - "Guest_BarkskinTreant": 2143957812, - "Guest_RazorleafTreant": 2133159197, - "Guest_CarrionFlowerMan": 1120698936, - "Guest_Kurokage": 355651925, - "Guest_LacombeStrawHouse": 568809873, - "Guest_BerkshireStickHouse": 1932133405, - "Guest_TamworthBrickHouse": 894027634, - "Guest_RustyTinderSpark": 1237916230, - "Guest_CoraWinterBranch": 1901918989, - "Guest_GrambleGoldRook": 1986988546, - "Guest_PiperStormTree": 1109520133, - "Guest_Hanadzura": 124838500, - "Guest_Kuchisaki": 2084188681, - "Guest_Kaizoku": 807430784, - "Guest_JaxonLastRites": 1653711119, - "Guest_SeijunKiller": 657647155, - "Guest_ZarichiTarakata": 1129212566, - "Guest_BladelessRonin": 1577395797, - "Guest_SanzokuOutlaw": 1682888807, - "Guest_SanzokuBandit": 1766198653, - "Guest_KakedaPainbringer": 1260119278, - "Guest_KakedaStalker": 367458449, - "Guest_KakedaShadow": 1604499626, - "Guest_KakedaSoulcrusher": 1961168112, - "Guest_ImitsuPlaguemaster": 1361539025, - "Guest_ImitsuDefouler": 1299791045, - "Guest_ImitsuPunisher": 234819300, - "Guest_StudentofKhai": 249757647, - "Guest_OtomoBattlemage": 918160114, - "Guest_OtomoCourier": 1373253378, - "Guest_OtomoSupplyRunner": 1580070577, - "Guest_OtomoScout": 1814051082, - "Guest_OtomoWrestler": 1053571230, - "Guest_OtomoFury": 111319603, - "Guest_Hyottoko": 307080225, - "Guest_Usunoki": 1881339626, - "Guest_Kagemoosha": 1842766119, - "Guest_UdoJin-e": 850816224, - "Guest_TakedaKanryu": 536087422, - "Guest_Tamauji": 818613882, - "Guest_Jikiru": 794167355, - "Guest_Nomoonaga": 849534658, - "Guest_Aiuchi": 515942855, - "Guest_Kurogaso": 1426248002, - "Guest_Ideyoshi": 1814038213, - "Guest_Koto": 1151260427, - "Guest_Usegi": 977549586, - "Guest_Kanago": 1644367227, - "Guest_Kyuto": 1168225979, - "Guest_Haru": 2070048389, - "Guest_Ashikata": 1523446928, - "Guest_Katsumori": 1823914597, - "Guest_Hingen": 1567896261, - "Guest_Yakedo": 502298497, - "Guest_Do-Daga": 1239945714, - "Guest_Maito": 979260804, - "Guest_TonkatsuThug": 1758658397, - "Guest_GobbloreanGuard": 1286210991, - "Guest_BabblingMeints": 413418139, - "Guest_PrinceGobblestone": 1813171676, - "Guest_GobblerMuncher": 1517159487, - "Guest_GobblerGorger": 130736772, - "Guest_GobblerScouter": 1509427587, - "Guest_GobblerGlutton": 1912199781, - "Guest_GobblerScavenger": 136586791, - "Guest_BaronGreebly": 1028182200, - "Guest_BaronRotunda": 457132907, - "PP_DeathMimic": 1811942047, - "Guest_GreenMan": 1126663802, - "Guest_ForestGrump": 1602350320, - "Guest_ErvintheBarbarian": 1671762776, - "Guest_RazortuskWarrior": 1109994549, - "Guest_RazortuskBrawler": 732265321, - "Guest_SplithoofRager": 1922134329, - "Guest_TuskedRaider": 1920114147, - "Guest_SviniBeserker": 1146317608, - "Guest_SviniReaver": 216717251, - "Guest_Shattertusk": 1191456730, - "Guest_SplithoofBarbarian": 296671728, - "Guest_Bloodseeker": 2086598239, - "Guest_Scarsnout": 1831766077, - "Guest_MasterTonkatsu": 1783298894, - "Guest_Grisletusk": 657393295, - "Guest_SplithoofBloodguard": 488382274, - "Guest_BristlehideRaider": 237078958, - "Guest_Gullin": 1656401882, - "Guest_ForestNymph": 812055814, - "Guest_SassafrasMan": 1327049788, - "Guest_RandolfSpellshine": 108808620, - "Guest_BleysFlamerender": 434070106, - "Transformation_Khan": 1398327634, - "Transformation_TheBat": 1675113521, - "MNT_DireWolf": 845578449, - "MNT_YuleMule": 1976182058, - "MNT_LightBlades": 829118450, - "MNT_FlyingSquid": 1573132252, - "PP_Globulin": 467801224, - "PP_BeastBaby": 1807874692, - "PP_SaniBot": 670845902, - "Mount_SwarmSand": 1277669407, - "Guest_Nodnarb": 211478288, - "Guest_LordBramble": 1118781162, - "Guest_Yogash": 506264561, - "Guest_Marcio": 499428996, - "Guest_Procyon": 1115376865, - "Guest_Thunderfin": 2029218563, - "Guest_ArkynMoonblade": 1152775206, - "Guest_CreeCurdWright": 1714953095, - "Guest_DeerMouseRevenant": 315064435, - "Guest_ElanaDarksun": 837982094, - "Guest_KingAlricFateSailor": 1934591130, - "Guest_LaughingCalaca": 984492527, - "Guest_WraithKnight": 620484548, - "Guest_FieryEchoofApep": 484636593, - "Guest_FrostyEchoofApep": 171933154, - "Guest_FalseEchoofApep": 479387377, - "Guest_ChargedEchoofApep": 1229406800, - "Guest_ShrowdengersQhat": 101563303, - "Guest_Scrollkeeper": 643219293, - "Guest_TerrorHound": 753341570, - "Guest_CondemnedMander": 445370758, - "Mnt_SnowStorm": 1491572670, - "Mount_ChimneySweeper": 378571534, - "MNT_PineappleCandyCane": 1630795796, - "Guest_TyphonDustwind": 740849673, - "MNT_StickHorse": 216654744, - "MimicTemplate": 1461219184, - "MNT_Ball_N_Chain": 289720920, - "PP_PeaceDove_A": 1785119671, - "Mount_Gyrocycle": 1495008048, - "PP_BattleMageDragon_A": 1864696711, - "MNT_BattleBeast": 1304449286, - "MNT_SmokeTrails": 387873030, - "Mount_FriendshipHare": 677127330, - "MNT_ButterflySwarm": 383602683, - "PP_EggChick_B": 1959154042, - "MNT_Unicorn": 562210585, - "PP_StuffedUnicorn": 1731641773, - "MNT_ParadeTruck": 2026348978, - "MNT_ParadeTruckXmas": 1017864627, - "MNT_AutumnLeafSwarm": 1540002279, - "PP_GingerbreadMan": 1796172229, - "PP_DecadeDragon": 1819398630, - "MNT_StageShip": 829852992, - "PP_DramaLlama": 255896529, - "PP_HallMinotaur_A": 1492017563, - "Guest_MacDeath": 1526226705, - "Guest_MacDeathUnderstudy": 1731752647, - "Guest_MacLifeUnderstudy": 257466641, - "Guest_MacStormUnderstudy": 8295117, - "MNT_Pantera": 1135198, - "MNT_StagLight": 1908778048, - "MNT_GiantSpider": 1247185021, - "MNT_StagEvil": 872303931, - "PP_BaskHound": 1093866594, - "PP_Marionette": 1688299938, - "PP_Marionette_B": 1688297824, - "Guest_Izft": 996301405, - "Guest_SapotisMinion": 1625665891, - "Guest_CrazedSlave": 1473233468, - "Guest_CharmedSlave": 803043667, - "Guest_EnsorcelledSlave": 40920285, - "Guest_HallServant": 2038116460, - "Guest_SiathePerceiver": 1235571913, - "Guest_Kiwu": 1151177787, - "Guest_NightImp": 1051843424, - "Guest_EvilTrickster": 1035477123, - "Guest_DeepWoodsImp": 1502444054, - "Guest_ForestPest": 802235713, - "Guest_TaintedForestImp": 1030343985, - "Guest_Youkai": 518367729, - "Guest_CarthaginianElephantWarrior": 776293919, - "Guest_IdrisBeast-Taker": 106759521, - "Guest_MikaSkarka": 237956516, - "Guest_Belloq": 757247833, - "Guest_GurtokPiercer": 549466122, - "Guest_GurtokFirebender": 817966523, - "Guest_GurtokDemon": 544070162, - "Guest_GeneralFiretusk": 2073037770, - "Guest_GurtokBarrierDemon": 44657563, - "Guest_BlacktuskShaman": 1009070925, - "Guest_FireDemon": 158367196, - "Guest_DeathOni": 1916642000, - "Guest_JadeOni": 1289517185, - "Guest_PlagueOni": 1464586443, - "Guest_WarOni": 1630196094, - "Guest_BrokenLandMammoth": 1587008312, - "Guest_SunderedSeamMammoth": 1272698721, - "Guest_BullyMammoth": 170705927, - "Guest_Bullhemoth": 146998717, - "Guest_Kogasha": 1909654543, - "Guest_MusuthBerserker": 1741298129, - "Guest_BlackTuskCultist": 1771575961, - "Guest_AksilBlacktrunk": 1253596409, - "Guest_LongdreamerShaman": 1521283133, - "Guest_MuratGreyeyes": 1296814314, - "Guest_ElephantSoldier": 1443670145, - "Guest_DarajaniGuard": 1597288495, - "Guest_Loremaster": 1792470809, - "Guest_Pork": 2069999347, - "Guest_Beans": 97706585, - "MNT_Ox": 1292937747, - "PP_PropellerSquirrel": 1657443894, - "Guest_RasikPridefall": 97921485, - "Guest_AmedrasLightstep": 1818417025, - "MNT_SmokeTrails_Balance": 1358150715, - "MNT_SmokeTrails_Fire": 702971609, - "MNT_SmokeTrails_Ice": 190218501, - "MNT_SmokeTrails_Life": 2045542105, - "MNT_SmokeTrails_Myth": 1276281121, - "MNT_SmokeTrails_Storm": 564954622, - "Guest_Bellosh": 1407013027, - "Guest_AcampiReedfist": 2076527733, - "Guest_AgnettaBroadblade": 14864960, - "Guest_FrostheartRaider": 1574787221, - "Guest_JordaSwordbearer": 1627071850, - "Guest_KasaiBaku": 1153107369, - "Guest_ZoraimeiHelephant": 1002482606, - "Guest_ConscriptedMander": 43811125, - "Firecat_Decade": 409516955, - "MNT_BatGlider": 2086258491, - "Transformation_PlayerHomework": 673389670, - "Transformation_PlayerAttendance": 422287307, - "Transformation_PlayerLecture": 2035625874, - "Transformation_PlayerPopQuiz": 483367038, - "MNT_GingerbreadHorse": 1369242781, - "MNT_NimbariChariot": 1251740392, - "PP_NimbariDog": 1235126828, - "Transformation_PlayerGrandma": 1128332272, - "Transformation_PlayerScionA": 33862367, - "PP_Mushroom": 1568942158, - "MNT_Scooter": 1148167046, - "MNT_Scooter_B": 2079302532, - "MNT_Scooter_C": 1810867076, - "MNT_Scooter_D": 468689796, - "MNT_IceCycle": 415797788, - "Transformation_PlayerScionA02": 33921759, - "Guest_FearoftheFuture": 947210229, - "Guest_FearofGremlins": 405857384, - "Guest_RootGuardian": 922940845, - "Guest_VineThrasher": 172546427, - "Guest_BlightWalker": 1438155154, - "Guest_BriarScourge": 615681851, - "Guest_DreamJabberwock": 907754098, - "Guest_DreamBelloq": 990352002, - "Guest_Voltergeist": 1558128068, - "Guest_SpecialBranch": 1927849418, - "Guest_MutantBriar": 805892802, - "Guest_FeralBriar": 883790223, - "Guest_MaizeMonster": 688905764, - "Guest_DreamShadowwock": 1432458248, - "Mount_Heartboard": 1421972759, - "PP_ChocoBunny": 324797859, - "Mount-PogoFlower": 906659501, - "MNT_AethyrCloud": 1586061078, - "MNT_Fangle": 7846854, - "Guest_StarfallSpider": 1177620831, - "Guest_AshSpider": 1588502553, - "Guest_CorruptedWeaver": 38937211, - "Guest_CrystalCrawler": 1197980149, - "Guest_ShimmerWidow": 1300740128, - "Guest_FacetedSpikespinner": 1939719331, - "Guest_CrystallineQueen": 1999282256, - "Guest_AncientCrystalweaver": 1409608801, - "Guest_FangtoothLavaspinner": 1538042104, - "Guest_VenomousHeatseeker": 1234682482, - "Guest_FireweaveRockbiter": 300743778, - "Guest_MonkeySpider": 754090007, - "Guest_CryptSpider": 1545405304, - "Guest_CommonHouseSpider": 613486002, - "Guest_ArachnaMagnaMagus": 825817937, - "Guest_ArachnaSoldier": 270978709, - "Guest_Gnissa": 1699826178, - "Guest_WebwoodScuttler": 1728611075, - "Guest_SandSpider": 61789007, - "Guest_WebwoodCreeper": 1013382584, - "Guest_Skathi": 1631429165, - "Guest_ArchmagusLorcan": 321146960, - "Guest_CrawleroftheMist": 2076696304, - "Guest_PaintedSpider": 1482115552, - "Guest_GiantSpider": 1545526191, - "Guest_CaveCrawler": 2101587667, - "Guest_RattleCatcher": 1472707326, - "Guest_TrapdoorSpider": 1321643694, - "Guest_RockClinger": 1304266411, - "Guest_InquisitorXimenez": 1053483090, - "Guest_ElderMagus": 1017836836, - "Guest_WardenBenthamic": 18807199, - "Guest_SpiderArchmagus": 387645558, - "Guest_SpiderAdept": 2094873407, - "Guest_InterrogatorRentenius": 1245984179, - "Guest_WarpedWeaver": 495882677, - "Guest_ArachnaSkinner": 281864085, - "Guest_SkinnerConscript": 2028526453, - "Guest_ArachnaGladiator": 2492046, - "Guest_LorcanInitiate": 353311753, - "Guest_Serket": 1871335773, - "Guest_IceWeaver": 2063216026, - "Guest_SpiritSpinner": 525666327, - "Guest_MysteriousCrawler": 218352756, - "Guest_BlackWidow": 1909331619, - "Guest_BrownRecluse": 1146386275, - "Guest_Creeper": 1197442790, - "Guest_GearSpinner": 67020478, - "Guest_Clinker": 1194519062, - "Guest_Clanker": 1194517014, - "Guest_GrandfatherSpider": 1330981335, - "Guest_Spiderling": 1400274461, - "Guest_ManekiWebWalker": 888348786, - "Guest_KoganiDeathCrawler": 276010604, - "Guest_CheliceranCrawler": 1169176517, - "Guest_ArachniteCreeper": 1850534774, - "Guest_ChelicaranStalker": 2057291848, - "Guest_HornedMonkeySpider": 1301514577, - "Guest_GreyOgreSpider": 1533774471, - "Guest_StarburstSpider": 698029451, - "Guest_PaintedCaveMonster": 601315479, - "Guest_RubbleRouser": 220785666, - "Guest_EarthElemental": 435260049, - "Guest_SharpshardWarrior": 1403237237, - "Guest_Firevein": 1220046430, - "Guest_Blackblade": 458130537, - "Guest_VengefulFireheart": 563205004, - "Guest_FirerockStomper": 608552855, - "Guest_BlackrockGuardian": 1663799582, - "Guest_ConfusedSentry": 24655510, - "Guest_SilverSentinel": 1090673683, - "Guest_SilverServant": 84560693, - "Guest_GiantHomunculus": 456098557, - "Guest_PropertyMaster": 229101764, - "Guest_VaultProtector": 185568207, - "Guest_PlatedDefender": 79324363, - "Guest_Avalanche": 761613547, - "Guest_RockReaver": 919912933, - "Guest_Frostmantle": 856308090, - "Guest_GlacierWalker": 131215932, - "Guest_SandBehemoth": 272513357, - "Guest_RunedAnnihilator": 121339936, - "Guest_RunedDevestator": 1611071181, - "Guest_RunedGuardian": 1986312667, - "Guest_CanyonRager": 1123038266, - "Guest_RubbleReaver": 220774678, - "Guest_Boulderbone": 122279242, - "Guest_Nali": 77467516, - "Guest_Gnar": 1151164930, - "Guest_GlacialAvenger": 1181253632, - "Guest_SokkwiKeymaster": 190919624, - "Guest_SandsofTime": 34920273, - "Guest_BladeGolem": 435561523, - "Guest_FrostColossus": 1564686403, - "Guest_IceColossus": 335477257, - "Guest_PollutedEarthWalker": 86045387, - "Guest_CorruptedEarthSpirit": 1135891559, - "Guest_Stonebreaker": 1317905436, - "Guest_StoneElemental": 1715022018, - "Guest_VolcanisGolem": 1904918929, - "Guest_WaterElemental": 1717850987, - "Guest_AshenDeathMonkeySpider": 35356665, - "Guest_DeathMonkeySpider": 1525508507, - "Guest_MotherMonkeySpider": 110317392, - "Guest_DoomMonkey": 1135105500, - "Guest_DreamMorganthe": 907599965, - "Guest_DragonBeetle": 1974635734, - "Guest_SandWalker": 1530843985, - "MNT_PandaMama": 916371162, - "PP_BabyPandas": 778536285, - "PP_FrogPrince": 729975205, - "MNT_PumpkinCarriage": 183672737, - "Mount_Gobbler_B": 1193388729, - "PP_Hamster": 1578040708, - "Guest_Steeleton": 657429968, - "Guest_GoldenWyrm": 311022393, - "MNT_Roc": 1564431869, - "PP_BabyGriffin": 1913686406, - "Transformation_ShadowDPSMob": 936133896, - "Transformation_ShadowTankMob": 305660992, - "Transformation_ShadowHealMob": 356596800, - "Guest_SpiritofIgnorance": 1577360126, - "Guest_FecklessSoul": 519648315, - "Guest_BurnedOutSoul": 312181646, - "Guest_BenightedRevenant": 2131956962, - "Guest_TombLurker": 1901203489, - "Guest_DesertGolem": 543642682, - "Guest_KumoOni": 215822625, - "Guest_SpellwritStalker": 161772776, - "PP_Sun": 1723237840, - "Guest_Leadite": 4480416, - "Mount_FestiveFox": 2125832348, - "PP_FenrisWolf": 1601784680, - "PP_SchoolPiggle": 109782407, - "PP_FenrisWolf_Red": 1597992854, - "PP_FenrisWolf_Teal": 1455058454, - "PP_FenrisWolf_White": 1102186199, - "Transformation_NinjaPig_Fire": 984575055, - "Transformation_BG_RatThief_Myth": 1191155131, - "Transformation_BG_RatThief_Storm": 675891897, - "MNT_Umbrella": 955683437, - "Transformation_BG_Elf_Ice": 1209681129, - "Transformation_BG_Fairy_DarkMinion_Balance": 33521202, - "Transformation_BG_Cyclops_Death": 876023972, - "Transformation_BG_Minotuar_Fire": 1118476387, - "Transformation_BG_WolfWarrior_Storm": 2075594475, - "Transformation_BG_WolfWarrior_Balance": 746159992, - "Transformation_BG_Draconian_Myth": 903606820, - "Transformation_BG_Draconian_Life": 1501291044, - "Transformation_BG_Colossus_Life": 1320377666, - "MNT_DolphinChariot": 102982520, - "MNT_EvilWagon": 685457563, - "MNT_FlyingDutchman": 1176206544, - "PP_SeaHorse": 2024322494, - "PP_EvilTeddy": 1159020925, - "PP_ZombieParrot": 384805107, - "Transformation_BG_Ice_Colossus": 299613211, - "MNT_CarrierBat": 7323333, - "Transformation_BG_Minotaur_MythTempalte": 430330904, - "PP_FeatheredTabby": 452526748, - "Transformation_Detritus01": 1335763402, - "Guest_Metallossus": 335457082, - "MNT_SantaJaws": 464410203, - "MNT_BattleBadger": 532858222, - "Transformation_Shedder01": 2069145892, - "PP_NatureSpirit": 373176286, - "Transformation_Devourer01": 1004421540, - "Guest_TheDevourer": 1591187996, - "Guest_Treeminder": 1093207850, - "Guest_RenegadeDruid": 2087982292, - "Guest_FractalTreeminder": 927174548, - "Guest_UnsettledTreeminder": 486164163, - "Guest_DragonspyreCrusader": 247317280, - "Guest_YoungGreggor": 66068670, - "Guest_GeneralGreyflame": 499924835, - "Guest_OldGreggor": 391726170, - "Guest_PrinceViggor": 853556298, - "Guest_DragonspyreVanguard": 693851565, - "Guest_SilasConviction": 177362659, - "Guest_SilasWeariness": 893431021, - "Guest_SilasRage": 1288904439, - "Guest_SilasDoubt": 1479426285, - "Guest_Lorekeeper": 147779344, - "Guest_FelixPhotomongerIII": 68387506, - "Guest_WarHavox": 1634324022, - "Guest_Mis-assembledSkeleton": 221832082, - "Guest_TreeminderGhost": 200408510, - "Guest_ViggorsDrake": 340449521, - "Guest_BlueNinjaPig": 938539327, - "Guest_RedNinjaPig": 2097962021, - "Guest_OrangeNinjaPig": 625058258, - "Guest_PurpleNinjaPig": 445746449, - "Guest_RitualColossus": 844563319, - "Guest_TinyDragon": 1123127688, - "Guest_RitualSpider": 429827552, - "Guest_RitualDraconian": 837510372, - "Guest_CC_Druid_Warrior_C_01": 55314616, - "Guest_CC_Druid_Wizard_A_01": 1046261169, - "Guest_CC_Druid_Wizard_B_01": 1046244785, - "Guest_CC_Druid_Warrior_A_01": 56363192, - "MNT_Toboggan": 995356805, - "MNT_2P_WickerTreant-001": 2065440944, - "PP_Ratatoskr": 1003497600, - "PP_Trash": 1195047012, - "Guest_CC_Druid_Wizard_D_01": 1046343089, - "MNT_Sunflower": 721091531, - "MNT_Whoopee": 1383311238, - "MNT_Warthog": 8060761, - "PP_ShamRock": 943893325, - "PP_LeapingLeprechaun": 132882517, - "PP_LionCubs": 465759803, - "PP_Tanuki": 670387843, - "MNT_Crane": 433122675, - "MNT_Krokosphinx": 739938754, - "Transformation_BG_Fairy_Life": 1897480818, - "Transformation_LiceDeepSpawnA": 244795720, - "Piggle_Alien": 1761605655, - "PP_JeweledScarab": 620544607, - "Guest_KR_Nymph_DrkMage_D50": 1248526054, - "Guest_KR_Nymph_DrkMage_C50": 1246953190, - "Guest_KR_Nymph_DrkMage_B50": 1247477478, - "Guest_KR_Nymph_DrkMage_A50": 1245904614, - "Guest_EM_Spider_Ash_01": 185724938, - "UFO": 47349, - "PP_Kit10": 326796620, - "PP_Lumi_Tulip": 84119585, - "PP_Lumi_Fern": 117015078, - "PP_Lumi_Violet": 1468797578, - "PP_Lumi_Sunny": 1769236703, - "PP_Lumi_Daisy": 1743454175, - "MNT_CelestianMech": 1238076872, - "MNT_Brontosaurus": 402157167, - "Guest_HG_AKT_Krok_Cyber_A_Balance_25": 1367985604, - "Guest_HG_AKT_Krok_Cyber_A_Balance_50": 1368084932, - "Guest_HG_AKT_Krok_Cyber_A_Balance_75": 1367988676, - "Guest_HG_AKT_Krok_Cyber_A_Balance_100": 1351303620, - "Guest_HG_AKT_Krok_Cyber_A_Balance_130": 1351270852, - "Guest_HG_AKT_Krok_Cyber_A_Fire_25": 976558490, - "Guest_HG_AKT_Krok_Cyber_A_Fire_50": 37034397, - "Guest_HG_AKT_Krok_Cyber_A_Fire_75": 305469850, - "Guest_HG_AKT_Krok_Cyber_A_Fire_100": 573905821, - "Guest_HG_AKT_Krok_Cyber_A_Fire_130": 573905824, - "Guest_HG_AKT_Krok_Cyber_A_Ice_25": 159411377, - "Guest_HG_AKT_Krok_Cyber_A_Ice_50": 541093041, - "Guest_HG_AKT_Krok_Cyber_A_Ice_75": 146828465, - "Guest_HG_AKT_Krok_Cyber_A_Ice_100": 557870241, - "Guest_HG_AKT_Krok_Cyber_A_Ice_130": 960523425, - "Guest_HG_AKT_Krok_Cyber_A_Myth_25": 976187830, - "Guest_HG_AKT_Krok_Cyber_A_Myth_50": 36663729, - "Guest_HG_AKT_Krok_Cyber_A_Myth_75": 305099190, - "Guest_HG_AKT_Krok_Cyber_A_Myth_100": 573535153, - "Guest_HG_AKT_Krok_Cyber_A_Myth_130": 573535156, - "Guest_CL-GolemButler-R9": 780077559, - "Guest_CL-GolemDigger-Boss-R10": 562020288, - "Guest_CL-GolemDigger-R9": 789375095, - "Guest_CL-GolemDigger-Rank8MythBoss-R10": 930527857, - "Guest_CL-GolemWorker-R9-1": 1072815287, - "Guest_CL-FishbotBrown-R9-1": 2006155417, - "Guest_CL-FishbotBrown-R9-2": 395542681, - "Guest_CL-FishbotGold-Boss-R10": 611881707, - "Guest_CL-FishbotGold-R9": 705414492, - "Guest_CL-FishbotYellow-Boss-R10": 23145662, - "Guest_CL-Protector-Black-Boss-R10-2": 679228793, - "Guest_CL-Protector-Gold-R10": 1909636609, - "Guest_CL-Protector-Gold-R9-1": 1909634804, - "Guest_CL-Protector-Gold-R9-2": 1909634932, - "Guest_CL-Protector-Gold-R9-3": 1909635060, - "Guest_CL-Protector-Gold-R9-4": 1909634164, - "Guest_CL-Protector-Purple-R9-Boss": 1889837072, - "Guest_CL-Protector-Purple-R9": 81760161, - "Guest_CL-Protector-Tan-Boss-R10": 912663188, - "Guest_KR_Golem_Worker": 1784607296, - "Guest_Golem-Brass-R7-1": 718939445, - "Guest_Golem-Clockwork-R7": 1161173708, - "Guest_EM_Robot_Batbot_A_01": 1482867950, - "Guest_EM_Robot_Batbot_B_02": 945947886, - "Guest_EM_Robot_Batbot_B_01": 1482818798, - "Guest_EM_Robot_Batbot_B_03": 409076974, - "Guest_EM_Robot_Batbot_B_04": 127793938, - "Guest_EM_Robot_Batbot_B_05": 664664850, - "Guest_EM_Robot_Drone_A_02": 1215188569, - "Guest_EM_Robot_Drone_A_03": 1231965785, - "Guest_EM_Robot_Drone_A_01": 1265520217, - "Guest_EM_Robot_Drone_A_04": 1315851865, - "Guest_EM_Robot_Drone_A_05": 1332629081, - "Guest_EM_Robot_Drone_A_06": 1282297433, - "Guest_EM_Robot_Drone_A_07": 1299074649, - "Guest_EM_Robot_Drone_A_08": 1114525273, - "Guest_EM_Robot_Drone_A_09": 1131302489, - "Guest_EM_Robot_Drone_A_Boss_01": 1960661151, - "Guest_EM_Robot_Drone_A_Boss_02": 1960530079, - "Guest_EM_Robot_Drone_E_01": 1265518169, - "Guest_EM_Robot_Tank_A_01": 1314796420, - "Guest_EM_Robot_Tank_A_02": 1313223556, - "Guest_EM_Robot_Drone_C_02": 1215187545, - "Guest_EM_Robot_Drone_D_03": 1231963225, - "Guest_EM_Robot_Drone_D_01": 1265517657, - "Guest_EM_Robot_Drone_D_02": 1215186009, - "Guest_EM_Robot_Tank_B_01": 1314796468, - "Guest_EM_Robot_Drone_C_01": 1265519193, - "Guest_G14-BP-Golem_Steel_Boss": 2071105129, - "Guest_G14-BP-Golem_Steel_Puzzle": 715790979, - "Guest_Golem-Brass-Elite-L38": 1163662532, - "Guest_Golem-Brass-Elite-L56": 2057562884, - "Guest_Golem-Brass-MBBoss-L48": 1498830732, - "Guest_Golem-Brass-MBBoss-L71": 1498829576, - "Guest_Golem-Brass-MBBoss-L76": 1498828936, - "Guest_Golem-Clockwork-Elite-L54-Metal": 417151527, - "Guest_Golem-Clockwork-Elite-L37": 1961943722, - "Guest_Golem-Clockwork-Elite-L54": 1950147242, - "Guest_Golem-Clockwork-L28": 1561959116, - "Guest_Golem-Clockwork-MBBoss-L37": 973152783, - "Guest_Golem-Clockwork-MBBoss-L69": 1262559759, - "Guest_Golem-Steel-Elite-L39": 1430496717, - "Guest_Golem-Steel-MBBoss-L40": 1229578887, - "Guest_Golem-Steel-MBBoss-L43": 1229579015, - "Guest_Golem-Steel-MBBoss-L50-1": 1231762051, - "Guest_Golem-Steel-MBBoss-L50": 1229578883, - "Guest_Golem-Steel-MBBoss-LXX": 1229583927, - "Guest_Golem-Wood-Elite-L35": 904360756, - "Guest_Golem-Wood-Elite-L37": 1978102580, - "Guest_Golem-Wood-Elite-L50": 1813548236, - "Guest_Golem-Wood-MBBoss-L63": 1392041724, - "Guest_MB-Gauntlet-Golem-Clockwork": 854649045, - "Guest_Spider-Golem-MBBoss-L67": 253352706, - "Guest_Spider-Golem-MBBoss-L96": 253348994, - "Guest_WC-MAW-GasGolem-Minion": 1511013798, - "Guest_WC-MAW-GasGolemLife-Minion": 1306026584, - "Guest_Golem-Steel-L02": 1027229749, - "Guest_Golem-Clockwork-L01": 1409915596, - "Guest_Gauntlet-01-Golem-Steel-Ghost-R8": 402816318, - "Guest_Golem-Wood-L01": 156976035, - "Guest_HG-Clock-ClockworkSpanner-20": 1523370449, - "Guest_HG-Clock-ClockworkSpanner-40": 1523370455, - "Guest_HG-Clock-ClockworkSpanner-60": 1523370453, - "Guest_HG-Clock-ClockworkSpanner-80": 1523370459, - "Guest_HG-Clock-ClockworkSpanner-100": 1523354068, - "Guest_HG-Clock-ClockworkSpanner-120": 1523354004, - "Guest_AQ-Cyclops-Guard": 191361948, - "Guest_AQ_Cyclops_Guard_A_Boss_01": 114747100, - "Guest_CL-Cyclops-Death-R10": 611013866, - "Guest_Cyclops-Death-Boss-R7": 1192370725, - "Guest_Cyclops-Death-Boss-R9": 1192370717, - "Guest_Cyclops-Death-R7": 144593791, - "Guest_GH-Cyclops-Death-R6": 594236619, - "Guest_Cyclops-BlueHelmet-KTBoss-L03": 1720105277, - "Guest_Cyclops-Red-L12": 1816429840, - "Guest_MR_Cyclops02WHelmet_Model_01": 1483732416, - "Guest_Cyclops-Blue-L02": 1633021234, - "Guest_Cyclops-BlueHelmet-WCBoss-L03": 427378332, - "Guest_Cyclops-RedHelmet-WCBoss-L03": 2021269422, - "Guest_HG_Sinbad_Cyclops_25": 911979034, - "Guest_HG_Sinbad_Cyclops_50": 1856261606, - "Guest_HG_Sinbad_Cyclops_75": 861647386, - "Guest_HG_Sinbad_Cyclops_100": 1789152678, - "Guest_HG_Sinbad_Cyclops_130": 178539942, - "Guest_HG_Sinbad_IronSultan_25": 930031152, - "Guest_HG_Sinbad_IronSultan_50": 930051504, - "Guest_HG_Sinbad_IronSultan_75": 930030768, - "Guest_HG_Sinbad_IronSultan_100": 927954864, - "Guest_HG_Sinbad_IronSultan_130": 927942576, - "MNT_SweetRide": 1643297840, - "PP_FrilledDino": 1395342809, - "PP_Celestian": 95679303, - "PP_Sun_Angry": 1955190071, - "PP_Marshmallow": 1220667954, - "MNT_Umbrella_B": 923364822, - "MNT_Tamer": 1050737194, - "PP_BumbleBee_B": 858653433, - "MNT_PunkFlamingo": 1634690818, - "MNT_2P_WoolyRhino": 1395943031, - "PP_Retriever": 72842604, - "PP_Piggle_Caveman": 181356174, - "PP_DecennialDragon": 1396523337, - "MNT_Tiger_Rainbow": 515535412, - "MNT_CarrierGhosts": 1833039309, - "MNT_Sled": 617654308, - "Transformation_BG_RatThief_Death": 30691641, - "Transformation_BG_Elf_Storm": 44352983, - "Transformation_BG_WolfWarrior_Ice": 986304351, - "MNT_CarriorGhost_B": 1768732109, - "MNT_CarriorGhost_C": 1766634957, - "Transformation_BG_Colossus_Fire": 1318803522, - "Transformation_BG_Krok_Balance": 140952965, - "Guest_KM_Gobbler_Skinny_A_11": 773648065, - "Guest_KM_Robot_Candy_A_01": 480414124, - "Guest_KM_Robot_Candy_A_02": 530745772, - "Guest_KM_Robot_Candy_A_03": 513968556, - "Guest_KM_Robot_Candy_A_04": 430082476, - "Guest_KM_Robot_Candy_A_05": 413305260, - "Guest_KM_Gummy_Bear_A_01": 1940905059, - "Guest_KM_Gummy_Bear_D_01": 1940905011, - "Guest_KM_Gummy_Bear_E_01": 1940904995, - "Guest_KM_Gummy_Bear_A_02": 1941429347, - "Guest_KM_Gummy_Bear_D_02": 1941429299, - "Guest_KM_Gummy_Bear_E_02": 1941429283, - "Guest_KM_Gummy_Bear_B_01": 1940905043, - "Guest_KM_Gummy_Bear_B_02": 1941429331, - "Guest_KM_Gummy_Bear_B_03": 1941953619, - "Guest_KM_Gummy_BearHat_A_01": 853226448, - "Guest_KM_Gummy_BearHat_A_02": 853226460, - "Guest_KM_Gummy_Bunny_A_01": 324805042, - "Guest_KM_Gummy_Bunny_C_01": 324806066, - "Guest_KM_Gummy_Bunny_D_01": 324807602, - "Guest_KM_Gummy_Bunny_E_01": 324807090, - "Guest_KM_Gummy_Bunny_F_01": 324808626, - "Guest_KM_Gummy_BunnyUber_A_01": 525565930, - "Guest_KM_Gummy_Worm_A_01": 231044195, - "Guest_KM_Gummy_Worm_B_01": 231044179, - "Guest_KM_Gummy_Worm_C_01": 231044163, - "Guest_KM_Gummy_Worm_A_02": 232617059, - "Guest_KM_Gummy_Worm_B_02": 232617043, - "Guest_KM_Gummy_Worm_C_02": 232617027, - "Guest_KM_Gummy_Bear_F_01": 1940904979, - "Guest_KM_Gummy_Bear_F_02": 1941429267, - "Guest_KM_Gummy_Bunny_C_02": 274474418, - "Guest_KM_Robot_Candy_A_06": 463636908, - "Guest_KM_Alphoi_DarkF_A_01": 475441543, - "Guest_KM_Gobbler_Skinny_A_01": 773648069, - "Guest_KM_Gobbler_Skinny_A_02": 773648197, - "Guest_KM_Gobbler_Skinny_A_03": 773648325, - "Guest_KM_Gobbler_SkinnyF_A_01": 254411012, - "Guest_KM_Gobbler_Skinny_A_04": 773647429, - "Guest_KM_Gobbler_Skinny_A_05": 773647557, - "Guest_KM_Gobbler_Skinny_A_06": 773647685, - "Guest_KM_Gobbler_SkinnyF_A_02": 254423300, - "Guest_KM_Gobbler_Skinny_A_07": 773647813, - "Guest_KM_Gobbler_Skinny_A_08": 773646917, - "Guest_KM_Gobbler_Skinny_A_09": 773647045, - "Guest_KM_Gobbler_SkinnyF_A_03": 254419204, - "Guest_KM_Gobbler_Fat_A_01": 1440595742, - "Guest_KM_Gobbler_Fruit_B_01": 1236446660, - "Guest_KM_Gobbler_Fruit_A_01": 1235922372, - "Guest_KM_Gobbler_Guard_B_01": 1435667582, - "Guest_KM_Gobbler_Skinny_A_10": 773647937, - "Transformation_PlayerBabyCarrot": 1580787628, - "Transformation_PlayerDeadBeet": 1992261692, - "Transformation_PlayerDisparagus": 373797484, - "Transformation_PlayerSnowPeas": 634199102, - "PP_Snowflake": 2036143125, - "PP_GummyBear_Myth": 117787890, - "PP_GummyBear_Death": 236577760, - "PP_GummyBear_Balance": 2100524337, - "PP_GummyBear_Life": 118020336, - "PP_GummyBear_Fire": 117995748, - "PP_GummyBear_Storm": 247437198, - "PP_GummyBear_Ice": 122536570, - "MNT_SnowOwl": 1578473542, - "Guest_KM_Gummy_Bear_Uber_A_01": 1856208859, - "Guest_KM_Gummy_Bear_Uber_A_02": 1856196571, - "MNT_ChocolateMoose": 567538552, - "MNT_Ram_Candied": 1913603720, - "Guest_KM_Spider_Mage_A_01": 1529720120, - "Guest_KM_Spider_Mage_B_01": 1529719608, - "Guest_KM_Spider_Mage_C_01": 1529719096, - "Guest_KM_Spider_Mage_D_01": 1529718584, - "Guest_KM_Spider_Mage_E_01": 1529718072, - "PP_SpriteDark_Balance": 914900728, - "MNT_Tricycle": 991465753, - "Guest_Tri-Gauntlet-Protector-Gold": 2029952053, - "Guest_Tri-Gauntlet-FishbotGold": 130267882, - "Guest_HG-Clock-Clockworker-20": 281216243, - "Guest_HG-Clock-Clockworker-40": 281217011, - "Guest_HG-Clock-Clockworker-60": 281216755, - "Guest_HG-Clock-Clockworker-80": 281215475, - "Guest_HG-Clock-Clockworker-100": 283313523, - "Guest_HG-Clock-Clockworker-120": 283321715, - "Guest_HG-Clock-Lugs-20": 1452756928, - "Guest_HG-Clock-Lugs-40": 1452756960, - "Guest_HG-Clock-Lugs-60": 1452756992, - "Guest_HG-Clock-Lugs-80": 1452756768, - "Guest_HG-Clock-Lugs-100": 1452494736, - "Guest_HG-Clock-Lugs-120": 1452493712, - "Guest_HG-Clock-Lucia-20": 1041451626, - "Guest_HG-Clock-Lucia-40": 1041450602, - "Guest_HG-Clock-Lucia-60": 1041449578, - "Guest_HG-Clock-Lucia-80": 1041456746, - "Guest_HG-Clock-Lucia-100": 1049840746, - "Guest_HG-Clock-Lucia-120": 1049873514, - "Guest_KM_Gummy_Worm_A_03": 232092771, - "MNT_Scooter_E": 200254340, - "PP_WolfWarrior_Balance": 991302673, - "PP_PetGift": 1816280689, - "PP_RatThief": 1390866051, - "Guest_PL_Titan_Small_A": 2015819364, - "Guest_PL_Titan_Large_B": 699791264, - "Guest_PL_Titan_Medium_A": 326730424, - "PP_Draconian": 1631557208, - "MNT_Pantera_Astral": 106092538, - "PP_YearOx": 105653084, - "PP_WolfWarrior_Ice": 1043644935, - "PP_SpriteDark": 2031730054, - "PP_Brudel": 1355697143, - "MNT_Astronomers": 742732792, - "MNT_CouchPotato": 418050932, - "MNT_Flowerfarthing": 1396771051, - "MNT_Astronomers_Blue": 236532779, - "MNT_Astronomers_Rainbow": 4428274, - "PP_Astronomer": 782095961, - "Guest_KM_Gummy_Bunny_B_01": 324806578, - "Guest_KM_DeadBeets_A_01": 1396016635, - "MNT_GummyBunny": 775900704, - "MNT_GummyBunny_A": 775834080, - "MNT_GummyBunny_B": 775836128, - "MNT_GummyBunny_C": 775838176, - "Transformation_BG_Minotaur_Life": 1445109091, - "MNT_Armadillo": 825635826, - "PP_SootGremlin": 768969093, - "PP_RoadRunner": 2057802060, - "MNT_TinyTrolly": 160881792, - "PP_Frog_B": 1530124761, - "MNT_FjordDragon": 129204340, - "Transformation_BG_NinjaPig_Myth": 422914079, - "PP_CorgiPup": 1638656105, - "MNT_Skateboard": 728018224, - "PP_Krokomummy": 326396577, - "MNT_Vroom": 1736383110, - "MNT_PlayerWings_AtralRaven": 1514774167, - "PP_Blimp": 690882397, - "Guest_GH_WoodenSkeletonKey_Boar_Boss_Grey_01": 678055851, - "Guest_GH_StoneSkeletonKey_Boar_Boss_Grey_01": 571670691, - "Guest_GH_GoldSkeletonKey_Boar_Boss_Grey_01": 961728819, - "MNT_Cloud_Promo_AW_01": 2032670992, - "Guest_EM_Hornet_Burner_A_01": 1881854632, - "Guest_EM_Hornet_Burner_A_02": 1881854636, - "Guest_EM_Hornet_Zapper_A_01": 2058539689, - "Guest_EM_Hornet_Zapper_A_02": 2058539685, - "Guest_EM_Ant_Giant_D_01": 379386121, - "Guest_EM_Ant_Giant_A_02": 1768146677, - "Guest_EM_Ant_Giant_A_01": 1768097525, - "Guest_EM_Ant_Giant_B_01": 379386122, - "Guest_KR_Moth_Priest_G_Achera": 381233569, - "Guest_KR_BeeMonsterF_A": 135146211, - "Guest_KR_BeeMonsterF_A_Weak": 1824123847, - "Guest_KR_Bee_Warrior_A": 1569202664, - "Guest_KR_Bee_Warrior_B": 1569204200, - "Guest_KR_Bee_Warrior_C_BossDrones": 1217189631, - "Guest_KR_Bee_Warrior_D": 1569205224, - "Guest_KR_Bee_Warrior_E": 1569204712, - "Guest_KR_Bee_Warrior_G": 1569205736, - "Guest_KR_Bee_Warrior_G_BossFight": 1055035476, - "Guest_KR_Bee_Warrior_H": 1569207272, - "Guest_KR_Bee_Warrior_I": 1569206760, - "Guest_KR_Bee_Warrior_L": 1569209320, - "Guest_KR_Bee_Warrior_M": 1569208808, - "Guest_KR_DragonBeetle_Monster_A": 1777853782, - "Guest_KR_Hornet_Drone_A": 1161590757, - "Guest_KR_Hornet_Drone_B": 1161607141, - "Guest_KR_Hornet_Drone_C": 1161623525, - "Guest_KR_Hornet_Drone_D": 1161639909, - "Guest_KR_Hornet_Drone_E": 1161656293, - "Guest_KR_Lice_DeepSpawn_A": 761604959, - "Guest_KR_Mantis_HunterF_A": 820917199, - "Guest_KR_Mantis_HunterF_B": 871248847, - "Guest_KR_Mantis_HunterF_C": 854471631, - "Guest_KR_Mantis_HunterF_D": 904803279, - "Guest_KR_Mantis_HunterF_F": 938357711, - "Guest_KR_Mantis_HunterF_F_Driftwood": 2053608437, - "Guest_KR_Mantis_HunterF_G": 921580495, - "Guest_KR_Mantis_HunterF_H": 971912143, - "Guest_KR_Mantis_HunterF_I": 955134927, - "Guest_KR_Mantis_HunterF_I_Zuzka": 935478878, - "Guest_KR_Mantis_HunterF_J": 1005466575, - "Guest_KR_Mantis_HunterF_J_Zelda": 886910558, - "Guest_KR_Mantis_HunterF_K": 988689359, - "Guest_KR_Mantis_HunterF_K_LongShd": 1767574336, - "Guest_KR_Mantis_HunterF_L": 1039021007, - "Guest_KR_Mantis_HunterF_M": 1022243791, - "Guest_KR_Mantis_HunterF_P_Bossfight": 1731428987, - "Guest_KR_Mantis_HunterF_Q": 552481743, - "Guest_KR_Mantis_HunterF_R": 602813391, - "Guest_KR_Mantis_HunterF_S": 586036175, - "Guest_KR_Mantis_HunterF_SecondColumnCpt_A": 1354033994, - "Guest_KR_Mantis_HunterF_T": 636367823, - "Guest_KR_Mantis_HunterF_Tribute": 1946371041, - "Guest_KR_Mantis_HunterF_U": 619590607, - "Guest_KR_Mantis_HunterF_V": 669922255, - "Guest_KR_Mantis_HunterF_W": 653145039, - "Guest_KR_Mantis_HunterF_Y": 686699471, - "Guest_KR_Mantis_HunterF_Z_Officer": 206016474, - "Guest_KR_Mantis_ProphetF_B": 1791139097, - "Guest_KR_Mantis_ProphetF_C": 1254268185, - "Guest_KR_Milipede_Warrior_A": 410726278, - "Guest_KR_Milipede_Warrior_B": 410726282, - "Guest_KR_Milipede_Warrior_C": 410726286, - "Guest_KR_Milipede_Warrior_D": 410726290, - "Guest_KR_Milipede_Warrior_H": 410726306, - "Guest_KR_Milipede_Warrior_J": 410726314, - "Guest_KR_Milipede_Warrior_K": 410726318, - "Guest_KR_Moth_Priest_A": 1421532604, - "Guest_KR_Moth_Priest_B": 1421532092, - "Guest_KR_Moth_Priest_C": 1421531580, - "Guest_KR_Moth_Priest_D": 1421531068, - "Guest_KR_Moth_Priest_D_Drepa": 1483393420, - "Guest_KR_Moth_Priest_E": 1421530556, - "Guest_KR_Moth_Priest_F": 1421530044, - "Guest_KR_Mantis_HunterF_Z": 737031119, - "Guest_KR_Roach_AntLion_A": 1860517987, - "Guest_KR_Roach_AntLion_B_Bossfight": 993284625, - "Guest_KR_Roach_AntLion_C": 1861566563, - "Guest_KR_Roach_Cook_A": 259847495, - "Guest_KR_Roach_Glutton_B": 249524334, - "Guest_KR_Roach_WaterBug_A": 1795473599, - "Guest_KR_Roach_WaterBug_B": 1745141951, - "Guest_MR_Beetle_Scarab_A_01": 1789741503, - "Guest_MR_Beetle_Scarab_A_02": 1789741491, - "Guest_MR_Beetle_Scarab_B_01": 1790265791, - "Guest_ZF-Goliath-R10-Boss-01": 7034074, - "Guest_ZF-Goliath-R10-Boss-02": 7034202, - "Guest_ZF-Goliath-R10-Boss-03": 7034330, - "Guest_ZF-Goliath-R10-Boss": 1603576807, - "Guest_ZF-Goliath-R11-Boss-01": 2140449574, - "Guest_ZF-Goliath-R11-Boss-02": 2140449446, - "Guest_ZF-Goliath-R11-Boss-03": 2140449318, - "Guest_ME1_Ant_Aunt_A": 707251855, - "Guest_ME1_Ant_Aunt_B": 1440231794, - "Guest_CC_Fly_Worker_A_01": 1497784524, - "Guest_CC_Roach_Worker_A_01": 1026321602, - "Guest_CC_Roach_Lieutenant_A_01": 1081690299, - "Guest_CC_Roach_Lieutenant_B_01": 1081690295, - "Guest_CC_Roach_Don_A_01": 547836893, - "Guest_CC_Roach_BBug_A_01": 1021150157, - "Guest_CC_Roach_RoachSteady_A_01": 859409247, - "Guest_Draconian-Caster-Yellow-Boss-R8": 1016221419, - "Guest_Draconian-Zombie-R8-2-1": 1226055265, - "Guest_Draconian-Zombie-R8-2": 1226115297, - "Guest_Draconian-Caster-Green-R7": 2143342719, - "Guest_Draconian-Warrior-Gold-Boss-R8": 1044388248, - "Guest_Draconian-Caster-Gray-R7": 95878769, - "Guest_DS-Boss-MAW": 1676071241, - "Guest_Draconian-Zombie-R8-1": 1226115309, - "Guest_Draconian-Warrior-Purple-Boss-R7": 601813964, - "Guest_Draconian-Caster-Tan-Boss-R7": 1973339532, - "Guest_Draconian-Caster-Blue-R6": 1684210173, - "Guest_Draconian-Caster-Yellow-R8": 2129956646, - "Guest_Draconian-Warrior-Red-R7": 521861944, - "Guest_Draconian-Warrior-Tan-R6": 1726416112, - "Guest_Draconian-Warrior-Purple-R8": 1896270341, - "Guest_Draconian-Caster-Blue-Boss-R7": 401581134, - "Guest_Draconian-Zombie-R8": 384497496, - "Guest_GH2-Draconian-HENCH-R10": 1149202878, - "Guest_GH2-Draconian-BOSS-R10": 2114378473, - "Guest_G14-DM-Draconian_Boss": 490246211, - "Guest_G14-DM-Draconian_Storm": 2035239226, - "Guest_G14-DM-Draconian_Ice": 782200563, - "Guest_G14-DM-Draconian_Malistaire_M": 1904691727, - "Guest_G14-DM-Draconian_Malistaire_S": 1904685583, - "Guest_G14-DM-Draconian_Malistaire_D": 1904700943, - "Guest_G14-DM-Draconian_Malistaire": 1904736751, - "Guest_G14-DM-Draconian_Malistaire_B": 1904702991, - "Guest_G14-DM-Draconian_Malistaire_I": 1904695823, - "Guest_G14-DM-Draconian_Malistaire_L": 1904692751, - "Guest_G14-DM-Draconian_Malistaire_F": 1904698895, - "Guest_Draconian-PW-Gauntlet-Boss": 493080513, - "Guest_CC_Draconian_A_01": 551348115, - "Guest_AZ-Parasaur-Undead-E": 2041242846, - "Guest_AZ-Parasaur-drkPriestF-F": 898239615, - "Guest_EM_Parasaur_DrkPriestF_A_01": 1007099606, - "Guest_EM_Parasaur_DrkPriestF_A_02": 1007099605, - "Guest_AZ-Parasaur-drkPriestF-D": 898501759, - "Guest_AZ-Parasaur-drkPriestF-E": 898370687, - "Guest_AZ-Parasaur-drkPriestF-A": 897846399, - "Guest_AZ-Parasaur-Undead-B": 1716853538, - "Guest_AZ-Parasaur-Undead-A": 106240802, - "Guest_AZ-Parasaur-Undead-G": 967501022, - "Guest_AZ-Parasaur-PriestF-D": 1177445525, - "Guest_AZ-Parasaur-Undead-C": 1179982626, - "Guest_AZ-Parasaur-drkPriestF-C": 897584255, - "Guest_AZ-Parasaur-Undead-SkurkisMinion": 1414766977, - "Guest_AZ-Parasaur-drkPriestF-B": 897715327, - "Guest_AZ-Parasaur-drkPriestF-B-Script": 1414847875, - "Guest_AZ_Parasaur_Priest_A_Boss_01": 890025421, - "Guest_AZ-Parasaur-Undead-D": 1504371934, - "Guest_AZ-Pteranodon-Knight-D": 1127364049, - "Guest_AZ-StoneSkeletonKey-Ixcax-Cursedwing": 699239601, - "Guest_AZ-Pteranodon-Knight-E": 1127363921, - "Guest_AZ-Pteranodon-Knight-F": 1127363793, - "Guest_AZ-Pteranodon-Knight-A-PageEvent": 942589002, - "Guest_AZ-StoneSkeletonKey-Minion-Death": 311645584, - "Guest_AZ-Pteranodon-Knight-A": 1127364433, - "Guest_AZ-Raptor-Wraith-A": 585729247, - "Guest_AZ-Raptor-Undead-D": 893623689, - "Guest_G14-HS-Ifzt": 1914694612, - "Guest_AZ-Raptor-Warrior-A": 855749884, - "Guest_AZ-Raptor-Undead-C": 897293705, - "Guest_AZ-Raptor-Undead-B": 896769417, - "Guest_AZ-Raptor-Undead-F": 894672265, - "Guest_AZ-Raptor-Warrior-F": 872527100, - "Guest_AZ-Raptor-Warrior-H": 973190396, - "Guest_AZ-Tritops-Warrior-I": 1942669769, - "Guest_AZ-Tritops-Undead-H": 1215305911, - "Guest_AZ-Tritops-Undead-E": 1164974263, - "Guest_AZ-Tritops-SpkWarrior-A": 860850257, - "Guest_AZ-Tritops-SpkWarrior-B": 860862545, - "Guest_AZ-Tritops-Undead-F": 1181751479, - "Guest_AZ-Tritops-Warrior-K": 868927945, - "Guest_AZ-Tritops-Undead-G": 1198528695, - "Guest_AZ-Tritops-Mummy-A": 1912444877, - "Guest_AZ-Tritops-Warrior-G": 1278555704, - "Guest_AZ-Tritops-Undead-D": 1148197047, - "Guest_AZ-Tritops-Undead-A": 1097865399, - "Guest_AZ-Tritops-SpkChief-B": 2096319577, - "Guest_AZ-Tritops-Mummy-B": 1910872013, - "Guest_AZ-Tritops-Warrior-H": 1405798857, - "Guest_AZ-Dino-Undead-A": 508678670, - "Guest_AZ-Dino-Undead-B": 508679182, - "Guest_AZ-Dino-Undead-D": 508680206, - "Guest_KR_Dino_Undead_A": 1638800628, - "Guest_KR_Dino_Undead_Minion_A": 892450235, - "MNT_HayRideTruck": 75377404, - "MNT_ShadowSpiderForm": 1439860426, - "Transformation_BG_Draconian_Death": 794598804, - "PP_BabyOrca": 1056061090, - "Transformation_BG_Cyclops_Fire": 638854828, - "Transformation_BG_Fairy_Ice": 874078461, - "PP_SpriteLife": 1824998010, - "PP_Raccoon": 1107326808, - "PP_FireKitten": 593048189, - "MNT_SkeletalDuck": 1306273036, - "PP_VampireSquid": 431023109, - "PP_CottonCandy": 891201813, - "PP_ThreeHeadGoat": 1282096939, - "PP_EyeBot": 260189248, - "MNT_DeathBoat": 1444454568, - "MNT_Lemuria": 908974762, - "MNT_DeathBoat_B": 1444456538, - "MNT_DeathBoat_C": 1444456474, - "MNT_Spooky3": 1667775622, - "MNT_PresentBox": 122082000, - "MNT_Orca": 1726961653, - "Guest_LM_Golem_Steel_A_01": 19551853, - "Guest_LM_Golem_Steel_A_02": 36329069, - "Guest_LM_EyeBot_A_01_Death": 380508535, - "Guest_LM_EyeBot_A_01_Myth": 167840640, - "PP_ThreeHeadGoat_B": 1209286443, - "PP_ThreeHeadGoat_C": 1211383595, - "Guest_KR_Eel_Whirligig_A": 1062268734, - "Guest_KR_Goliath_Behemoth_A": 1231139987, - "Guest_KR_Goliath_Behemoth_C": 1231139995, - "Guest_KR_Goliath_Behemoth_D": 1231139975, - "Guest_KR_Goliath_Behemoth_E": 1231139971, - "Guest_KR_Goliath_Behemoth_H": 1231140023, - "Guest_KR_Goliath_Crusher_C": 1651720060, - "Guest_KR_Goliath_Crusher_D": 2106376324, - "Guest_KR_Goliath_Crusher_F": 1032634500, - "Guest_KR_Goliath_Crusher_G": 495763588, - "Guest_KR_Goliath_Crusher_K": 1651720059, - "Guest_AZ-Goliath-Crusher-A": 1874784966, - "Guest_AZ-Goliath-Crusher-B": 264172230, - "Guest_AZ-Goliath-Crusher-C": 801043142, - "Guest_AZ-Goliath-Crusher-D": 809569594, - "Guest_AZ-Goliath-Crusher-E": 272698682, - "Guest_HG_AKT_Butterfly_Time_A_25": 1788523059, - "Guest_HG_AKT_Butterfly_Time_A_50": 1130017331, - "Guest_HG_AKT_Butterfly_Time_A_75": 1809494579, - "Guest_HG_AKT_Butterfly_Time_A_100": 1113240099, - "Guest_HG_AKT_Butterfly_Time_A_130": 1515893283, - "MNT_DeathBoat_D": 1444456922, - "Guest_KR_RhinoBeetle_Sun_A_Bossfight": 47895417, - "Guest_KR_RhinoBeetle_Star_A": 1947510103, - "Guest_KR_RhinoBeetle_Moon_A": 1751275863, - "Guest_ME1_Clockwork_Marine_A": 1481452452, - "Guest_ME1_Clockwork_Marine_B": 1481452068, - "Guest_CC_GoldSkeletonKey_Lice_DeepSpawn_B": 1306132994, - "Guest_KR_DamdinBazar_A_Bossfight": 1333596311, - "Guest_DS-Minion-MAW2": 356796677, - "Guest_KH-Wyrmling-1": 116330513, - "Guest_KH-Wyrmling-20": 183439385, - "Guest_KH-Wyrmling-40": 317657113, - "Guest_KH-Wyrmling-60": 451874841, - "Guest_KH-Wyrmling-80": 586092569, - "Guest_PL_Polar_Bear_Solider_C": 1785662565, - "Guest_Skeleton-Silver-WCBoss-L01": 17766963, - "Guest_Banshee-Red-Elite-L24_B": 1902069117, - "Transformation_BG_WolfWarrior_Myth": 339098032, - "Transformation_BG_RatThief_Balance": 881728218, - "Transformation_BG_Colossus_Storm": 593527492, - "Transformation_BG_Elf_Life": 347405087, - "Transformation_BG_Minotaur_Ice": 1197752291, - "MNT_TRex_B": 660285500, - "PP_SpriteDark_Ice": 2036248504, - "MNT_RollingBall": 1658139390, - "Guest_LM_TRex_Base_A_03": 1378630657, - "Guest_LM_TRex_Base_A_04": 1378745345, - "Guest_LM_TRex_Base_A_05": 1378728961, - "Guest_LM_TRex_Base_A_01": 1378663425, - "Guest_LM_TRex_Base_A_02": 1378647041, - "Guest_LM_TRex_Cyborg_A_01": 151609741, - "Guest_LM_TRex_Cyborg_A_02": 168386957, - "Guest_LM_TRex_Cyborg_A_03": 185164173, - "Guest_LM_TRex_Cyborg_B_01": 151611277, - "Guest_LM_TRex_Cyborg_D_01": 151612301, - "Guest_LM_TRex_Cyborg_E_01": 151611789, - "Guest_LM_TRex_Cyborg_C_01": 151610765, - "Guest_LM_Draconian_Base_A_01": 1607373112, - "Guest_LM_EyeBot_B_01": 1085543056, - "Guest_LM_Drone_Eye_C_01": 916954037, - "Guest_LM_Drone_Eye_D_01": 1230529608, - "Guest_LM_Drone_Eye_D_02": 1230545992, - "Guest_LM_Drone_Eye_D_04": 1230578760, - "Guest_LM_Drone_Eye_D_03": 1230562376, - "Guest_LM_Drone_Eye_A_01": 916954038, - "Guest_LM_Drone_Eye_A_02": 916937654, - "Guest_LM_Drone_Eye_B_01": 1230529611, - "Guest_LM_Drone_Eye_D_05": 1230595144, - "Guest_LM_Drone_Eye_D_07": 1230627912, - "Guest_LM_Drone_Eye_D_08": 1230644296, - "Guest_LM_Drone_Eye_A_03": 916921270, - "Guest_LM_Drone_Eye_A_04": 916904886, - "Guest_LM_Drone_Eye_C_02": 916937653, - "Guest_LM_EyeBot_B_02": 1061940593, - "Guest_LM_EyeBot_B_03": 1085543055, - "Guest_LM_EyeBot_B_04": 1061940594, - "Guest_LM_Drone_Eye_C_03": 916921269, - "Guest_LM_Robot_Kit10_A_01": 199936400, - "Guest_LM_Colossus_Mander_A_01": 2107529026, - "Guest_LM_Robot_Future_A_01": 998840846, - "Guest_LM_Robot_FutureBIG_A_01": 340408568, - "Guest_LM_Robot_FutureBIG_A_02": 340396280, - "Guest_LM_Robot_FutureBIG_A_03": 340400376, - "Guest_LM_Robot_OldOne_A_01": 779070973, - "Guest_LM_Robot_OldOne_A_02": 1315941885, - "Guest_LM_Millipede_Centi_A_01": 168575797, - "Guest_LM_Millipede_Centi_A_03": 168583989, - "Guest_LM_Millipede_Centi_A_02": 168588085, - "Guest_LM_Millipede_Centi_A_04": 168563509, - "Guest_LM_Moth_Sorcerer_A_01": 228191136, - "Guest_LM_Boar_Barbarian_A_01": 1238634912, - "Guest_LM_Boar_Barbarian_A_02": 1238634528, - "Guest_LM_Boar_Barbarian_A_03": 1238634656, - "Guest_LM_Boar_Barbarian_A_04": 1238635296, - "Guest_LM_Boar_Barbarian_A_05": 1238635424, - "Guest_LM_Boar_Chief_A_01": 357051311, - "Guest_LM_Fungus_Humango_A_01": 1398460044, - "Guest_LM_Fungus_Humango_A_02": 1398460172, - "Guest_LM_Treant_Base_A_01": 1658172241, - "Guest_LM_GiantTree_EvilRoots_A_01": 282225934, - "Guest_LM_PA_GreenMan_A_01": 67705044, - "Guest_LM_Fungus_Humango_B_01": 1348128396, - "Guest_LM_Fungus_Humango_A_03": 1398460300, - "Guest_LM_Fungus_Man_C_01": 1648824156, - "Guest_LM_Fungus_Man_C_02": 1650397020, - "Guest_LM_Rhino_Zombie_A_01": 248513993, - "Guest_LM_Malughast_Base_01": 883820436, - "Guest_LM_Malughast_Base_02": 1420691348, - "Guest_LM_Lemur_HierarchF_H_04": 231562115, - "Guest_LM_Malughast_Base_03": 1957562260, - "Guest_LM_Malughast_Base_05": 1263663212, - "Guest_LM_Malughast_Base_06": 726792300, - "Guest_LM_Malughast_Base_08": 346949523, - "Guest_LM_Malughast_Base_09": 883820435, - "Guest_LM_Malughast_Base_04": 1800534124, - "Guest_LM_Minotaur_Skeleton_A_01": 1865122824, - "Guest_LM_Lemur_Wild_B_03": 1783764037, - "Guest_LM_Lemur_HierarchF_H_01": 231541635, - "Guest_LM_Lemur_HierarchF_H_02": 231553923, - "Guest_LM_Mander_Warrior_A_01": 1651245419, - "Guest_LM_Mander_Warrior_A_02": 1651245291, - "Guest_LM_Mander_Warrior_B_01": 1634468203, - "Guest_LM_Mander_Warrior_B_02": 1634468075, - "Guest_LM_Mander_Warrior_A_03": 1651245163, - "Guest_LM_Mander_Warrior_B_03": 1634467947, - "Guest_LM_Mander_Warrior_A_06": 1651245803, - "Guest_LM_Mander_Warrior_A_05": 1651245931, - "Guest_LM_Mander_Mummy_B_01": 1844111521, - "Guest_LM_Mander_Hero_B_01": 865113284, - "MNT_HolidayHippogriff": 938892112, - "MNT_Sabertooth_Ice": 1870381696, - "PP_FenrisWolf_Bantam": 776647759, - "MNT_JetPack": 1986300552, - "MNT_Scooter_F": 1005560708, - "PP_FossaKitten_A": 431748212, - "PP_Elfvis": 147991405, - "Guest_LM_Chicken_Hero_A_01": 1308728300, - "Guest_LM_Horse_Explorer_A_01": 434405482, - "Guest_LM_Duck_HeroineF_A_01": 133199186, - "Guest_LM_Crane_Hero_A_01": 204272548, - "Guest_LM_Deer_HeroineF_A_01": 1800374959, - "Guest_LM_Deer_Hero_A_01": 223109503, - "Guest_LM_Dog_Hero_A_01": 1434615064, - "PP_YearTiger": 777048708, - "MNT_Barrel": 3576425, - "MNT_Krampus": 404117611, - "PP_ChineseTigerCub": 1256032005, - "PP_Lemur": 565774155, - "PP_Robot": 1089075331, - "PP_Capybara": 451970762, - "Guest_LM_Ghoul_Base_A_01": 1822415945, - "Guest_LM_Lemur_HierarchF_H_03": 231549827, - "Guest_LM_Ghoul_Base_A_02": 1820843081, - "Guest_LM_Ghoul_Base_A_03": 1821367369, - "MNT_SpringSoF2022": 1685679511, - "MNT_WarElephant": 875015497, - "PP_Strix": 514230046, - "MNT_Beachball": 791896033, - "MNT_Blank": 633398131, - "MNT_CardboardFlier": 1646636689, - "MNT_LochMonster": 879660722, - "Transformation_BG_Krok_Death": 1395067182, - "Transformation_BG_Draconian_Fire": 1551581732, - "PP_Scotty": 1708580475, - "Guest_KR_Mice_Knight_A": 480101508, - "PP_Peacock": 1178721112, - "MNT_PoodleMoth": 975420235, - "PP_Hummingbird": 624666906, - "PP_WolfWarrior_Myth": 470737416, - "Guest_HG_UFD_Ghost_QueenF_A_100": 795323059, - "Guest_HG_UFD_Ghost_QueenF_A_50": 728230579, - "Guest_HG_UFD_Pirate_UndeadHighland_A_Balance_150": 201145133, - "Guest_HG_UFD_Pirate_UndeadHighland_A_Balance_100": 201144941, - "Guest_HG_UFD_Pirate_UndeadHighland_A_Balance_50": 201177701, - "Guest_HG_UFD_Pirate_UndeadHighland_A_Star_150": 1329885920, - "Guest_HG_UFD_Pirate_UndeadHighland_A_Star_100": 1304720096, - "Guest_HG_UFD_Pirate_UndeadHighland_A_Star_50": 1305768671, - "Guest_HG_UFD_Pirate_UndeadHighland_A_Shadow_150": 1263689971, - "Guest_HG_UFD_Pirate_UndeadHighland_A_Shadow_100": 1263689977, - "Guest_HG_UFD_Pirate_UndeadHighland_A_Shadow_50": 189949177, - "Guest_HG_UFD_Kelpie_Warrior_A_150": 54296095, - "Guest_HG_UFD_Kelpie_Warrior_A_100": 725384735, - "Guest_HG_UFD_Kelpie_Warrior_A_50": 708607503, - "Guest_HG_UFD_Pirate_UndeadHighland_B_150": 1099317831, - "Guest_HG_UFD_Pirate_UndeadHighland_B_100": 25576008, - "Guest_HG_UFD_Pirate_UndeadHighland_B_50": 159793864, - "Guest_HG_UFD_Ghost_QueenF_A_150": 795716275, - "PP_SpiderMinion": 557357331, - "MNT_Vines_Rainbow": 1587180338, - "MNT_YoungDrake": 1279496198, - "PP_Pet_Coconut": 444388490, - "DragonKI": 1490194214, - "PP_Sharkfish": 601628284, - "PP_MimicCake": 48071878, - "Guest_AQ-Bronze-Eagle": 375279744, - "Guest_Spider-Brown-L26": 2128680185, - "Guest_KR_Spider_Giant_D": 744401035, - "Guest_Wizard-Female-Band-Blue-R8": 1447486557, - "Guest_CC_Human_DSCrusaderF_A_01": 726538068, - "Guest_WC_Scarecrow_A_01": 867491011, - "Guest_WC_Banshee_A_01": 1433786463, - "Guest_WC_LostSoul_A_01": 796936146, - "PP_Fairy_Myth": 1117624344, - "PP_SpriteDark_Myth": 1884257976, - "BG_CyclopsLife_A": 944091673, - "Transformation_BG_NinjaPig_Storm": 2005137181, - "Transformation_BG_Fairy_Myth": 1880704188, - "Transformation_BG_Cyclops_Life": 638936708, - "Guest_AQ-Eagle-Praetorian": 1988013806, - "Guest_KM_BabyCarrot_A_01": 766239512, - "Guest_G14-DM-Gargoyle": 282898047, - "Guest_MR_Durvish_Sergeant_A_Boss_01": 1532609325, - "Guest_Cyclops-RedHelmet-KTBoss-L28": 2072371506, - "Guest_EM_Pig_Singer_A_01": 698597069, - "Guest_EM_Pig_Captain_A": 977505995, - "Guest_EM_Pig_Crewman_A": 465576459, - "PP_ChipmunkConductor": 1089819900, - "PP_LuckyCat": 1109326826, - "MNT_ImpCar": 1736092191, - "MNT_Book": 1547655078, - "MNT_JackoLantern": 649919658, - "MNT_Zheng": 742453108, - "MNT_Train": 413197899, - "MNT_Cerberus": 552686313, - "PP_Coconut": 1122741587, - "Transformation_Statue": 1153168084, - "Transformation_Nullity": 622504394, - "PP_Irk": 1825277392, - "Guest_Wyrmling-Fire-R8-1": 531485009, - "MNT_WolfLowPoly_A": 1947890962, - "MNT_WolfLowPoly_B": 1947825426, - "Transformation_BG_RatThief_Fire": 1169330235, - "Transformation_BG_WolfWarrior_Death": 159966683, - "Transformation_BG_Minotaur_Balance": 657855108, - "Transformation_BG_Draconian_Ice": 1907339814, - "Transformation_BG_Colossus_Myth": 1305894338, - "Transformation_NV_Penguin": 1757096851, - "Transformation_NV_Unicorn": 60447768, - "Transformation_NV_Monkey": 1379873688, - "Transformation_NV_Dog": 1961288968, - "PP_Wolf_Storm": 455227171, - "PP_WoodDuck": 1680912895, - "MNT_RockingHorse": 1205280059, - "MNT_SOF2022_Car": 219868812, - "PP_Buffaloon": 796152873, - "MNT_Steamboat": 1969530127, - "MNT_FelizNavidog": 847046394, - "PP_Mustache": 1571079379, - "Guest_DD-DS01-Skeleton-Pirate-20": 226826848, - "Guest_DD-DS01-Skeleton-Pirate-40": 201661024, - "Guest_DD-DS01-Skeleton-Pirate-60": 210049632, - "Guest_DD-DS01-Skeleton-Pirate-80": 251992672, - "Guest_DD-DS01-Skeleton-Pirate": 1994450336, - "Guest_DD-DS01-Shadow-Minion-Fire": 1074864956, - "Guest_DD-DS01-Shadow-Minion-Ice": 1841681214, - "Guest_DD-DS01-Shadow-Minion-Fire-20": 1074880881, - "Guest_DD-DS01-Shadow-Minion-Fire-40": 1074880945, - "Guest_DD-DS01-Shadow-Minion-Ice-20": 96850220, - "Guest_DD-DS01-Shadow-Minion-Ice-40": 96850218, - "Guest_DD-DS01-Shadow-Minion-Fire-60": 1074881009, - "Guest_DD-DS01-Shadow-Minion-Ice-60": 96850216, - "Guest_DD-DS01-Shadow-Minion-Fire-80": 1074880561, - "Guest_DD-DS01-Shadow-Minion-Ice-80": 96850214, - "Guest_SC-SpectreOfB-1": 1471950935, - "Guest_SC-SpectreOfB-20": 1471942759, - "Guest_SC-SpectreOfB-40": 1471942663, - "Guest_SC-SpectreOfB-60": 1471942695, - "Guest_SC-SpectreOfB-80": 1471942855, - "Guest_KH-Skeleton-Ice-60": 2108358962, - "Guest_KH-Skeleton-Ice-40": 2108391730, - "Guest_KH-Skeleton-Ice-20": 2108293426, - "Guest_KH-Skeleton-Ice-1": 2099953970, - "Guest_KH-Skeleton-Ice-80": 2108195122, - "Guest_KH-Undead-Caster-60": 1662604496, - "Guest_KH-Undead-Caster-40": 1661555920, - "Guest_KH-Undead-Caster-20": 1664701648, - "Guest_KH-Undead-Caster-1": 1931564240, - "Guest_KH-Undead-Caster-80": 1667847376, - "Guest_DD-PA01-DeadBeets": 1664999367, - "Guest_DD-PA01-DeadBeets-20": 1901453253, - "Guest_DD-PA01-DeadBeets-40": 2002116549, - "Guest_DD-PA01-DeadBeets-60": 1968562117, - "Guest_DD-PA01-DeadBeets-80": 2069225413, - "Guest_DD-PA01-Disparagus": 1865816461, - "Guest_DD-PA01-Disparagus-20": 573970895, - "Guest_DD-PA01-Disparagus-40": 499770929, - "Guest_DD-PA01-Disparagus-60": 1573512753, - "Guest_DD-PA01-Disparagus-80": 1647712718, - "Guest_DD-PA01-MeanestFlyTrap": 2001546861, - "Guest_DD-PA01-MeanestFlyTrap-20": 1936326253, - "Guest_DD-PA01-MeanestFlyTrap-40": 1936064109, - "Guest_DD-PA01-MeanestFlyTrap-60": 1935801965, - "Guest_DD-PA01-MeanestFlyTrap-80": 1937636973, - "Guest_HG-MD-MacDeath-20": 182639104, - "Guest_HG-MD-MacDeath-40": 182638080, - "Guest_HG-MD-MacDeath-60": 182637056, - "Guest_HG-MD-MacDeath-80": 182636032, - "Guest_HG-MD-MacDeath-100": 174252032, - "Guest_HG-MD-MacDeath-130": 174202880, - "Guest_HG_Sinbad_Skeleton_25": 494617874, - "Guest_HG_Sinbad_Skeleton_50": 42253050, - "Guest_HG_Sinbad_Skeleton_75": 1115994862, - "Guest_HG_Sinbad_Skeleton_100": 2105232646, - "Guest_HG_Sinbad_Skeleton_130": 2105232650, - "Guest_HG_Sinbad_Skeleton_25_02": 492722834, - "Guest_HG_Sinbad_Skeleton_50_02": 44148090, - "Guest_HG_Sinbad_Skeleton_75_02": 1117889902, - "Guest_HG_Sinbad_Skeleton_100_02": 2044247302, - "Guest_HG_Sinbad_Skeleton_130_02": 2044247306, - "Guest_DD-AV01-WyrmBoss": 1648677986, - "Guest_DD-AV01-WyrmBoss-20": 1926730850, - "Guest_DD-AV01-WyrmBoss-40": 1927779426, - "Guest_DD-AV01-WyrmBoss-60": 1928828002, - "Guest_DD-AV01-WyrmBoss-80": 1921487970, - "Guest_RH-Wyrm-Boss-01": 1027277645, - "Guest_RH-Wyrm-Boss-20": 1027277660, - "Guest_RH-Wyrm-Boss-40": 1027277663, - "Guest_RH-Wyrm-Boss-60": 1027277662, - "Guest_RH-Wyrm-Boss-80": 1027277657, - "Guest_HG_Sinbad_Wyrm_25": 1101443356, - "Guest_HG_Sinbad_Wyrm_50": 1101528860, - "Guest_HG_Sinbad_Wyrm_75": 1101445916, - "Guest_HG_Sinbad_Wyrm_100": 1093138204, - "Guest_HG_Sinbad_Wyrm_130": 1093089052, - "Guest_KH-Treant-1": 2001244331, - "Guest_KH-Treant-60": 1968148651, - "Guest_KH-Treant-40": 1968017579, - "Guest_KH-Treant-20": 1967886507, - "Guest_KH-Treant-80": 1967231147, - "Guest_DD-PA01-ForestGrump": 1969685870, - "Guest_DD-PA01-ForestGrump-20": 714666713, - "Guest_DD-PA01-ForestGrump-40": 714666689, - "Guest_DD-PA01-ForestGrump-60": 714666697, - "Guest_DD-PA01-ForestGrump-80": 714666737, - "Guest_DD-PA01-ForestNymphs": 227087348, - "Guest_DD-PA01-ForestNymphs-20": 227023552, - "Guest_DD-PA01-ForestNymphs-60": 227023040, - "Guest_DD-PA01-ForestNymphs-80": 227024832, - "Guest_SC-Pig-BalanceWizardA-1": 475456968, - "Guest_SC-Pig-BalanceWizardA-20": 477550024, - "Guest_SC-Pig-BalanceWizardA-40": 477541832, - "Guest_SC-Pig-BalanceWizardA-60": 477533640, - "Guest_SC-Pig-BalanceWizardA-80": 477525448, - "Guest_SC-Pig-BalanceWizardB-1": 475456964, - "Guest_SC-Pig-BalanceWizardB-20": 477550020, - "Guest_SC-Pig-BalanceWizardB-40": 477541828, - "Guest_SC-Pig-BalanceWizardB-60": 477533636, - "Guest_SC-Pig-BalanceWizardB-80": 477525444, - "Guest_SC-Pig-BalanceWizardC-1": 475456960, - "Guest_SC-Pig-BalanceWizardC-20": 477550016, - "Guest_SC-Pig-FireWizard-1": 2048176291, - "Guest_SC-Pig-FireWizard-20": 2031399073, - "Guest_SC-Pig-FireWizard-40": 2132062369, - "Guest_SC-Pig-FireWizard-60": 2098507937, - "Guest_SC-Pig-FireWizard-80": 1930735777, - "Guest_SC-Pig-IceWizardF-1": 1178687744, - "Guest_SC-Pig-IceWizardF-20": 1161910526, - "Guest_SC-Pig-IceWizardF-40": 1128356094, - "Guest_SC-Pig-IceWizardF-60": 1094801662, - "Guest_SC-Pig-IceWizardF-80": 1329682686, - "Guest_SC-Pig-MythWizard-1": 2048492725, - "Guest_SC-Pig-MythWizard-20": 2031715511, - "Guest_SC-Pig-MythWizard-40": 2132378807, - "Guest_SC-Pig-MythWizard-60": 2098824375, - "Guest_SC-Pig-MythWizard-80": 1931052215, - "Guest_SC-Pig-StormWizardF-1": 1743849420, - "Guest_SC-Pig-StormWizardF-20": 1743851464, - "Guest_SC-Pig-StormWizardF-40": 1743851488, - "Guest_SC-Pig-StormWizardF-60": 1743851480, - "Guest_SC-Pig-StormWizardF-80": 1743851504, - "Guest_KH-Pig-Bandit-Lord-1": 1080496628, - "Guest_KH-Pig-Bandit-Lord-20": 543625652, - "Guest_KH-Pig-Bandit-Lord-40": 530116172, - "Guest_KH-Pig-Bandit-Lord-60": 1603857996, - "Guest_KH-Pig-Bandit-Lord-80": 1617367475, - "Guest_KH-Pig-Bandit-Ninja-1": 1945100907, - "Guest_KH-Pig-Bandit-Ninja-20": 1945102951, - "Guest_KH-Pig-Bandit-Ninja-40": 1945102975, - "Guest_KH-Pig-Bandit-Ninja-60": 1945102967, - "Guest_KH-Pig-Bandit-Ninja-80": 1945102927, - "Guest_KH-Pig-War-Caster-1": 656859765, - "Guest_KH-Pig-War-Caster-20": 606528119, - "Guest_KH-Pig-War-Caster-40": 572973687, - "Guest_KH-Pig-War-Caster-60": 539419255, - "Guest_KH-Pig-War-Caster-80": 774300279, - "Guest_KH-Pig-War-Warrior-Boss-1": 16342355, - "Guest_KH-Pig-War-Warrior-Boss-20": 2143724205, - "Guest_KH-Pig-War-Warrior-Boss-40": 2118558381, - "Guest_KH-Pig-War-Warrior-Boss-60": 2126946989, - "Guest_KH-Pig-War-Warrior-Boss-80": 2101781165, - "Guest_SC-Pig-BalanceWizardC-40": 477541824, - "Guest_SC-Pig-BalanceWizardC-60": 477533632, - "Guest_SC-Pig-BalanceWizardC-80": 477525440, - "Guest_KH-Helephant-Death-20": 1109389719, - "Guest_KH-Helephant-Death-40": 2111835753, - "Guest_KH-Helephant-Death-60": 1038093929, - "Guest_KH-Helephant-Death-80": 35647896, - "Guest_KH-GreyOgre-Spider-1": 356368404, - "Guest_KH-GreyOgre-Spider-20": 1966981204, - "Guest_KH-GreyOgre-Spider-40": 1254244268, - "Guest_KH-GreyOgre-Spider-60": 180502444, - "Guest_KH-GreyOgre-Spider-80": 893239379, - "Guest_HG_Sinbad_Colossus_25": 1190802829, - "Guest_HG_Sinbad_Colossus_50": 1493551719, - "Guest_HG_Sinbad_Colossus_75": 419809907, - "Guest_HG_Sinbad_Colossus_100": 653933977, - "Guest_HG_Sinbad_Colossus_130": 653933973, - "Guest_NV_Dino_AberrantUndead_A_01": 2035087398, - "Guest_NV_Hellephant_Aberrant_A_01": 989522333, - "Guest_NV_Hellephant_Aberrant_A_02": 989522334, - "Guest_NV_BananaSpider_Base_A_01": 1585810541, - "Guest_NV_BananaSpider_Base_A_02": 1581616237, - "Guest_NV_BananaSpider_Base_A_03": 1577421933, - "Guest_NV_BananaSpider_Base_A_04": 1606782061, - "Guest_NV_BananaSpider_Base_A_05": 1602587757, - "Guest_NV_Wyrm_Aberrant_A_01": 16108415, - "Guest_NV_Monkey_Zombie_A_01": 1854775300, - "Guest_NV_Monkey_Zombie_A_02": 1854775304, - "Guest_NV_Monkey_Zombie_A_03": 1854775308, - "Guest_NV_Monkey_Zombie_A_04": 1854775312, - "MNT_Flag_Monster": 867940056, - "Guest_SKB_WY_DarkBramble_A_30": 2046798767, - "Guest_SKB_WY_DarkBramble_A_50": 2046797999, - "Guest_SKB_WY_DarkBramble_A_100": 2044701359, - "Guest_SKB_WY_DarkBramble_A_150": 2044721839, - "Guest_SKB_GH_Boar_A_30": 1547921275, - "Guest_SKB_WC_SpiritIgnorance_A_50": 1488876986, - "Guest_SKB_WC_SpiritIgnorance_A_100": 2025748410, - "Guest_SKB_WC_SpiritIgnorance_A_150": 2025748413, - "Guest_SKB_DS_Loremaster_A_50": 527751539, - "Guest_SKB_DS_Loremaster_A_100": 527817059, - "Guest_SKB_DS_Loremaster_A_150": 527817699, - "Guest_SKB_CL_Dan_A_50": 637418706, - "Guest_SKB_CL_Dan_A_60": 1510064941, - "Guest_SKB_CL_Dan_A_100": 637410512, - "Guest_SKB_CL_Dan_A_150": 637410432, - "Guest_SKB_AV_Spectre_A_50": 2104631195, - "Guest_SKB_AV_Spectre_A_100": 2102534041, - "Guest_SKB_AV_Spectre_A_150": 2018647961, - "Guest_SKB_MS_Samoorai_A_50": 2029641915, - "Guest_SKB_MS_Samoorai_A_100": 2096750843, - "Guest_SKB_MS_Samoorai_A_150": 587603717, - "Transformation_BG_Krok_StromTemplate": 1317694546, - "PP_ChineseRabbit": 382941643, - "PP_ParadeElf": 1036247808, - "MNT_HeartSwarm": 918199310, - "MNT_SpringSOF2023": 1417178519, - "Transformation_BG_Elf_Death2Template": 1606653101, - "MNT_GummyBunny_D": 775840224, - "Transformation_BG_Krok_Life2Template": 747486212, - "PP_Flame": 959186933, - "PP_YachtRock": 1500927358, - "PP_PirateYachtRock": 1227549100, - "PP_ChickenMonster": 1845706534, - "PP_SnowHoppers_B": 1496460038, - "PP_SnowHoppers_C": 1496457990, - "MNT_Oarfish": 29720265, - "PP_RingTailedCat": 993143427, - "MNT_Fanboat": 19347694, - "MNT_MiniSub": 298697910, - "PP_DumboOctopus": 966435639, - "PP_Glowbug_Balance": 1405529577, - "PP_Glowbug_Death": 405117107, - "PP_Glowbug_Fire": 651698987, - "PP_Glowbug_Ice": 2124926395, - "PP_Glowbug_Life": 601367299, - "PP_Glowbug_Myth": 592978024, - "PP_Glowbug_Storm": 61190446, - "PP_DumboOctopus_B": 968448823, - "PP_DumboOctopus_C": 968383287, - "PP_BananaSpider_01": 1074383522, - "PP_BananaSpider_02": 1080674978, - "PP_BananaSpider_03": 1078577826, - "Guest_HG_NM_BeardDragon_Base_C_01": 82913785, - "Guest_HG_NM_BeardDragon_Base_C_02": 82913786, - "Guest_HG_NM_BeardDragon_Base_C_03": 82913787, - "Guest_HG_NM_Glowbug_Base_C_01": 544959703, - "Guest_HG_NM_Glowbug_Base_C_02": 544955607, - "Guest_HG_NM_Glowbug_Base_C_03": 544951511, - "Guest_HG_NM_Glowbug_Base_C_04": 544947415, - "Guest_HG_NM_Glowbug_Base_C_05": 544943319, - "Guest_HG_NM_Glowbug_Base_C_06": 544939223, - "Guest_HG_NM_Glowbug_Base_C_07": 544935127, - "MNT_BouquetofFlowers": 1511180560, - "PP_Piggle_Rainbow": 91081383, - "MNT_Sabertooth_FlameSaber": 1949516909, - "Guest_HG_NM_BeardDragon_Base_A_01": 83175929, - "Guest_HG_NM_BeardDragon_Base_A_02": 83175930, - "Guest_HG_NM_BeardDragon_Base_A_03": 83175931, - "Guest_HG_NM_BeardDragon_Base_B_01": 83044857, - "Guest_HG_NM_BeardDragon_Base_B_02": 83044858, - "Guest_HG_NM_BeardDragon_Base_B_03": 83044859, - "Guest_HG_NM_Glowbug_Base_B_01": 8088791, - "Guest_HG_NM_Glowbug_Base_B_02": 8084695, - "Guest_HG_NM_Glowbug_Base_B_03": 8080599, - "Guest_HG_NM_Glowbug_Base_B_04": 8076503, - "Guest_HG_NM_Glowbug_Base_B_05": 8072407, - "Guest_HG_NM_Glowbug_Base_B_06": 8068311, - "Guest_HG_NM_Glowbug_Base_B_07": 8064215, - "Guest_HG_NM_Glowbug_Base_A_01": 1618701527, - "Guest_HG_NM_Glowbug_Base_A_02": 1618697431, - "Guest_HG_NM_Glowbug_Base_A_03": 1618693335, - "Guest_HG_NM_Glowbug_Base_A_04": 1618689239, - "Guest_HG_NM_Glowbug_Base_A_05": 1618685143, - "Guest_HG_NM_Glowbug_Base_A_06": 1618681047, - "Guest_HG_NM_Glowbug_Base_A_07": 1618676951, - "MNT_SummerSOF2023": 1636120912, - "PP_Cyclops_Fire": 7821755, - "PP_Death_Elf": 1535744155, - "PP_Newt": 1438123483, - "PP_Echidna": 735439358, - "MNT_Wombat": 580544786, - "Transformation_BG_NinjaPig_Balance": 1799661438, - "Transformation_BG_Cyclops_Ice": 647975824, - "Transformation_BG_Minotaur_Storm": 1005667041, - "Transformation_GR_Parasaur_Priest_Ice": 1101466351, - "Transformation_GR_Parasaur_Priest_Fire": 892193041, - "Transformation_GR_Parasaur_Priest_Storm": 1525882116, - "Transformation_GR_Parasaur_Priest_Balance": 1127637476, - "Guest_GR_AZ_Parasaur_Undead_B_01": 322587487, - "MNT_WitchCat": 1167097888, - "PP_RolyPoly": 578538330, - "PP_Capybara_B": 628131532, - "MNT_OutbackTruck": 1815527801, - "PP_PoodleSailor": 2137704795, - "MNT_PolarianCannon": 2103490826, - "PP_TazmanianDevil": 1773548765, - "Guest_SKB_AZ_Ixcax_A_100": 556560994, - "Guest_SKB_AZ_Ixcax_A_150": 556610146, - "Guest_SKB_AZ_Ixcax_A_50": 564951650, - "MNT_GhoulsShovel": 2035610946, - "PP_CrystalBdayDragon": 1897078804, - "PP_SunGobblerBall": 1522469440, - "PP_Sun_GreenGobbler": 1337690394, - "MNT_2P_AutumnTreant": 1063435527, - "PP_AutumnTreant": 561077291, - "MNT_FlyingMonkey": 490807393, - "PP_BabyPlantMonster": 2076646587, - "MNT_PlantCreature_A": 1802823265, - "Transformation_BG_Fairy_Fire": 2065252898, - "Transformation_BG_Krok_Myth": 277926564, - "Transformation_BG_RatThief_Life": 1167758651, - "Transformation_BG_Elf_Balance": 1628238937, - "Transformation_BG_Colossus_Death": 184392004, - "Transformation_FortressPod": 139738335, - "P_Wombat_POLYMORPH": 1132264953, - "PP_SharkWobbegong": 1994247222, - "PP_ChineseNYDragon": 1126999021, - "PP_JingleBellRock": 1076037919, - "PP_Krok_Mummy_Myth": 438487583, - "PP_Cyclops_Ice": 1476966187, - "MNT_OutbackTruckB": 1813299577, - "MNT_EvilSnowmanBall": 758818712, - "MNT_ThanksgivingGobbler": 1760011910, - "Guest_WL_Ghost_LostSoul_A_01": 1224111704, - "Guest_WL_Kangaroo_Drover_F_01": 2025562931, - "Guest_WL_Spider_WarriorMage_C_01": 1296557888, - "Guest_WL_Spider_WarriorMage_C_02": 1430775616, - "Guest_WL_Spider_WarriorMage_C_03": 1564993344, - "Guest_WL_Spider_WarriorMage_C_04": 1699211072, - "Guest_WL_Spider_WarriorMage_C_05": 1833428800, - "Guest_WL_Spider_WarriorMage_C_06": 1967646528, - "Guest_WL_Spider_WarriorMage_C_07": 2101864256, - "Guest_SKB_KR_Lightbane_A_100": 837930677, - "Guest_SKB_KR_Lightbane_A_160": 837930669, - "Guest_SKB_KR_Lightbane_A_50": 1309555019, - "Transformation_WL_Phantasmanian_DevilTemplate": 384891502, - "MNT_2P_LeaflessTreant": 623083386, - "PP_Minotaur_Ice": 700151737, - "MNT_Scooter_G": 737125252, - "Guest_WL_Frog_Owner_B_01": 767864686, - "MNT_SilentKnight": 646654812, - "Guest_WL_TRex_Base_A_01": 1842562033, - "Guest_WL_TRex_Base_B_01": 304921616, - "PP_Groundhog": 108643243, - "Guest_NV_Unicorn_Guard_C_04": 1845621, - "MNT_EmuPunk": 647315080, - "MNT_HeartBalloon": 798826551, - "PP_ValentineHoppers": 968693964, - "MNT_SpringSOF2024_Heckhound": 453640548, - "Guest_AQ-Centaur-Arion": 1856508139, - "Guest_AQ-Centaur-Artemis": 333294011, - "Guest_AQ-Horse-Sea": 724896200, - "Guest_KR_Horse_Warlord_A_Bossfight": 1302284326, - "Guest_KR_Horse_Warlord_A_BossfightSP": 1300726822, - "Guest_KR_Zebra_Thrall_A": 1250265667, - "Guest_KR_Zebra_Thrall_A_Boss_Minion": 345677011, - "Guest_KR_Zebra_Thrall_A_Gallery": 1520303483, - "Guest_KH-Gray-Horse-40": 1802231403, - "Guest_KH-Gray-Horse-20": 1802231307, - "Guest_G14-BP-Unicorn_Fencer_Boss": 1602044152, - "Guest_Horse-Merc-Brown-L37": 1831175255, - "Guest_Horse-Merc-Tan-L39": 1363854837, - "Guest_Horse-Merc-Tan-L39-1": 2085275127, - "Guest_Horse-Merc-Gray-MSBoss-L39": 1863452041, - "Guest_Horse-Merc-Gray-L39": 2039135564, - "Guest_Horse-Merc-Tan-L38": 1363330549, - "Guest_WC_Horse_Mercenary_Roberto": 891924774, - "Guest_ZF-Nathi-Yellowstripe-R11": 1505157721, - "Guest_ZF-TseTse-Main-R11-Boss": 114927854, - "Guest_ZF-TseTse-Elephant-R11": 894147273, - "Guest_ZF-Zebra-Impi-Raider-R11": 1378242919, - "Guest_ZF-Zebra-Warrior-Male-R10-1": 1791906265, - "Guest_ZF-Zebra-Senzan-Zebu-R10-Boss": 373712721, - "Guest_ZF-Zebra-Shaka-Zebu-R10-Boss": 662142985, - "Guest_ZF-Zebra-Warrior-Female-R10-02": 1507835670, - "Guest_ZF-Zebra-Warrior-Male-R10": 47075786, - "Guest_ZF-Zebra-Warrior-Male-R10-02": 1791906714, - "Guest_ZF-Zebra-Warrior-Male-R10-03": 1791906746, - "Guest_ZF-Zebra-Warrior-Male-R10-05": 1791906682, - "Guest_ZF-Zebra-Warrior-Male-R10-2": 1791906268, - "Guest_ZF_Zebra_Spectral_Guardian-R11": 431970996, - "Guest_CC_Horse_Apoc_A_01": 644668374, - "Guest_CC_Horse_Apoc_B_01": 644668390, - "Guest_CC_Horse_Apoc_C_01": 644668406, - "Guest_CC_Horse_Apoc_D_01": 644668294, - "Guest_CC_Horse_Apoc_D_02": 645192582, - "Guest_CC_Unicorn_CorsairF_B_01": 1378532506, - "Guest_CC_Unicorn_Duelist_B_01": 64891542, - "Guest_CC_Unicorn_Guard_B_01": 1075063242, - "Guest_CC_Unicorn_Guard_B_02": 1075063238, - "Guest_CC_Unicorn_Guard_B_03": 1075063234, - "Guest_NV_Horse_HordeSoldier_A_01": 504396960, - "Guest_NV_Horse_HordeSoldier_A_02": 101743776, - "Guest_NV_Horse_HordeOfficer_A_01": 343600992, - "Guest_NV_Horse_HordeSoldier_A_03": 235961504, - "Guest_NV_Horse_HordeOfficer_A_02": 209383264, - "Guest_NV_Horse_AberrantTungAk_A_01": 952263441, - "Guest_NV_Horse_AberrantTungAk_A_02": 952263537, - "Guest_NV_Horse_TungAk_B_01": 1194718672, - "Guest_NV_Horse_TungAk_B_02": 657847760, - "Guest_NV_Horse_HordeOfficer_B_01": 343596896, - "Guest_NV_Horse_HordeOfficer_B_02": 209379168, - "Guest_NV_Horse_TungAk_A_01": 1194669520, - "Guest_NV_Unicorn_Guard_C_01": 1845601, - "Guest_NV_Unicorn_Guard_A_01": 797025, - "Guest_NV_Unicorn_AberrantGuard_A_01": 739851573, - "Guest_NV_Unicorn_Guard_C_02": 1845613, - "Guest_NV_Unicorn_Guard_C_03": 1845609, - "Guest_NV_Unicorn_AberrantGuard_A_02": 739848501, - "Guest_NV_Unicorn_Guard_A_02": 797037, - "Guest_NV_Unicorn_AberrantGuard_A_03": 739849525, - "Guest_NV_Unicorn_AberrantGuard_A_04": 739846453, - "Guest_NV_Horse_HordeOfficer_A_03": 75165536, - "Guest_NV_Horse_HordeSoldier_A_04": 907050144, - "Guest_NV_Horse_HordeSoldier_A_05": 1041267872, - "Guest_NV_Horse_HordeSoldier_C_01": 504388768, - "Guest_HG_TRAIN_Horse_MustangFencerF_A_Balance_50": 871182987, - "Guest_HG_TRAIN_Horse_MustangFencerF_A_Balance_75": 871176715, - "Guest_HG_TRAIN_Horse_MustangFencerF_A_Life_100": 886489645, - "Guest_HG_TRAIN_Horse_MustangFencerF_A_Balance_25": 871177035, - "Guest_HG_TRAIN_Horse_MustangFencerF_A_Balance_100": 872231819, - "Guest_HG_TRAIN_Horse_MustangFencerF_A_Life_140": 1960231469, - "Guest_HG_TRAIN_Horse_MustangFencerF_B_100": 2089957067, - "Guest_HG_TRAIN_Horse_MustangFencerF_A_Life_25": 1700184589, - "Guest_HG_TRAIN_Horse_MustangFencerF_A_Life_50": 920044045, - "Guest_HG_TRAIN_Horse_MustangFencerF_A_Life_75": 1742127629, - "Guest_HG_TRAIN_Horse_MustangFencerF_A_Balance_140": 872223627, - "Guest_HG_TRAIN_Horse_MustangFencerF_B_50": 2089952970, - "Guest_HG_TRAIN_Horse_MustangFencerF_B_75": 57530654, - "Guest_HG_TRAIN_Horse_MustangFencerF_B_140": 2089957099, - "Guest_HG_TRAIN_Horse_MustangFencerF_B_25": 1131272477, - "Guest_LM_Horse_Explorer_A_01_Hard": 1711837140, - "Guest_WL_Unicorn_Guard_A_01": 1074538935, - "Guest_WL_Unicorn_CorsairF_E_01": 1378532603, - "Guest_WL_Unicorn_Warlord_A_01": 1321310496, - "Guest_KH-Gray-Horse-1": 1802239547, - "Guest_KH-Gray-Horse-60": 1802231371, - "Guest_KH-Gray-Horse-80": 1802231467, - "Transformation_BG_NinjaPig_Ice": 186026527, - "Transformation_BG_Cyclops_Storm": 897316984, - "PP_MinotaurBalance": 1344665951, - "PP_OrthusMoon": 1804503950, - "PP_CoolPineapple": 1149318906, - "PP_TwinkleStars": 766378011, - "PP_Scroll": 1613313091, - "PP_Colossus_Death": 40713075, - "PP_ColossusDeath": 530964029, - "PP_KILiveRock": 1975550570, - "MNT_Outrigger": 1417937299, - "MNT_BookWyrm": 2080129190, - "MNT_RacingSnail": 1996220963, - "MNT_UmbrellaCloud": 145762615, - "PP_PropellerCat": 2094718580, - "MNT_TRex_Shirt": 586746001, - "MNT_Swarm_Bee": 1625228695, - "MNT__CelestialMoon": 968360256, - "Guest_ME_Sinbad_IronSultan_150": 2001676223, - "Guest_ME_Sinbad_Cyclops_150": 1968943689, - "Guest_ME_Sinbad_Skeleton_150": 1031490819, - "Guest_ME_Sinbad_Colossus_150": 1727675806, - "Guest_ME_Sinbad_Skeleton_150_02": 970505475, - "Guest_ME_Sinbad_Wyrm_150": 19314443, - "Guest_ZF-Zebra-Inzinzebu-Bandit-R11": 430262550, - "Guest_ZF-Zebra-Warrior-Male-R10-04": 1791906650, - "PP_TwinkleStars_02": 805304347, - "PP_TwinkleStars_03": 803207195, - "PP_TwinkleStars_01": 799012891, - "Transformation_BodleianHarrow": 609627870, - "Guest_HG_Gryphon_OwlStatue_A_01_L170": 77756046, - "Guest_HG_Gryphon_OwlStatue_A_02_L170": 73561742, - "Guest_HG_Gryphon_OwlStatue_A_01_L100": 77752974, - "Guest_HG_Gryphon_OwlStatue_A_02_L100": 73558670, - "Guest_HG_Gryphon_OwlStatue_A_01_L50": 78277134, - "Guest_HG_Gryphon_OwlStatue_A_02_L50": 74082830, - "MNT_SummerSOF2024_JudgementWings": 1078163967, - "MNT_Pegasus_E": 131704054, - "MNT_PolarisHero": 665176426, - "PP_Duckana": 1128961578, - "PP_QueenBee": 833291695, - "Transformation_BG_Draconian_Balance": 2078940682, - "Transformation_BG_WolfWarrior_Fire": 1762248682, - "Transformation_BG_Minotaur_Death": 309090657, - "PP_WolfWarrior_Fire": 685685256, - "PP_WolfWarrior_Death": 1857202724, - "Guest_ME-GTAV01-WyrmBoss-150": 1482208618, - "Guest_ME_SpectreOfB_L150": 684104791, - "Guest_ME_MD_MacDeath_L150": 1128977615, - "Guest_ME_Pig_BalanceWizardA_L150": 959913724, - "Guest_ME_Pig_BalanceWizardB_L150": 959913712, - "Guest_ME_Pig_BalanceWizardC_L150": 959913716, - "Guest_ME_Pig_FireWizard_L150": 964392255, - "Guest_ME_Pig_IceWizardF_L150": 86941026, - "Guest_ME_Pig_MythWizard_L150": 964051241, - "Guest_ME_Pig_StormWizardF_L150": 2016383602, - "Guest_ME_Clock_Clockworker_L150": 1424569772, - "Guest_ME_Clock_ClockworkSpanner_L150": 1966824609, - "Guest_ME_Clock_Lugs_L150": 370290904, - "Guest_ME_Clock_Lucia_L150": 1857768409, - "MNT_EvilChair": 339577702, - "PP_Cyclops_Storm": 621464512, - "PP_Krokomummy_Life": 462432735, - "Transformation_CL_Rematch_Crustacean": 1686865207, - "Transformation_CL_Rematch_Protector": 1893951532, - "Transformation_CL_Rematch_Angler": 120412196, - "Transformation_CL_Rematch_Piscean": 1624106070, - "Transformation_Zebra_Template": 1900548493, - "Transformation_Zebra2_Template": 325099540, - "Transformation_Zebra3_Template": 325099524, - "Transformation_Zebra4_Template": 325099636, - "MNT_SweetSixteenBirthday": 1009398096, - "MNT_2P_TRex_Bones": 1618543266, - "MNT_SpringBumperCar": 1725007788, - "PP_WinterGoblin": 2025052443, - "PP_OnyxAnubis": 1552575189, - "PP_OttomanCat": 223541582, - "MNT_HolidayYeti": 780983974, - "MNT_IceSled": 979912604, - "MNT_TurtleDoves": 1850191638, - "MNT_KrokChariot": 559783620, - "MNT_Mustang": 1775949401, - "MNT_PumpkinBall": 382849054, - "Transformation_BG_Fairy_Storm": 836920873, - "Transformation_BG_Elf_Myth": 1506493664, - "Transformation_NinjaPig_Life": 816802847, - "Transformation_BG_Krok_Fire": 1060580712, - "Transformation_BG_Colossus_Balance": 1067963041, - "Transformation_BG_NinjaPig_Life": 441460895, - "PP_Penguin_03": 1623028104, - "Transformation_Duck_Librarian_B": 864067551, - "Transformation_Duck_Librarian_A": 859873247, - "Transformation_Duck_Adventurer": 194560769, - "Transformation_Gummy_Bunny_C": 1298087941, - "Transformation_Frog_Horned_A": 837201339, - "Transformation_Glowbug_Storm": 2096380446, - "Transformation_Marshmallow_Critter_A": 1036335317, - "Transformation_Snipe_Base_B": 232132109, - "Transformation_Snowball": 915248481, - "Transformation_Wombat_Base": 333435450, - "Transformation_Human_Malistaire": 1414887773, - "Transformation_Morganthe_E": 1745180054, - "Transformation_Spider_Grandfather": 1131773979, - "Transformation_Khrulhu_Dasein_B": 367878762, - "Transformation_Devourer_Base": 698770016, - "Transformation_Alien_Meteor": 638746168, - "Transformation_Nightmare_Malus": 704212821, - "Transformation_Daemon_Personal": 278266463, - "PP_ValentinesDay": 810003364, - "PP_BabyHippo": 422858138, - "PP_Aardwold": 1592150119, - "PP_Aardwold_C": 1902528613, - "MNT_Cobra": 472847981, - "MNT_Serpopard": 1629558909, - "MNT_Serpopard_B": 1629556867, - "MNT_Serpopard_C": 1629556931, - "PP_Fairy_Fire": 1847789544, - "MNT_Mustang_B": 1448793691, - "PP_FireElfMyth": 1933609060, - "MNT_KT-BoatRide": 1560860110 - } - }, - "m_badgeTitle": { - "type": "std::string", - "id": 6, - "offset": 440, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1783354256 - }, - "m_chatPermissions": { - "type": "unsigned int", - "id": 7, - "offset": 360, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1848314473 - }, - "m_pvpIconID": { - "type": "unsigned int", - "id": 8, - "offset": 472, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2083838009 - }, - "m_localeID": { - "type": "unsigned int", - "id": 9, - "offset": 484, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 792971274 - }, - "m_friendlyPlayer": { - "type": "bool", - "id": 10, - "offset": 490, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 990699901 - }, - "m_volunteer": { - "type": "bool", - "id": 11, - "offset": 491, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1751284471 - }, - "m_guildName": { - "type": "unsigned int", - "id": 12, - "offset": 492, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 778026115 - }, - "m_guildNameLocale": { - "type": "int", - "id": 13, - "offset": 496, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 656991008 - } - } - }, - "138415600": { - "name": "class SharedPointer", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 138415600, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_spellList": { - "type": "class SharedPointer", - "id": 1, - "offset": 120, - "flags": 27, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2181913740 - }, - "m_serializedExclusionList": { - "type": "std::string", - "id": 2, - "offset": 152, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1502583517 - }, - "m_archmasterySchool": { - "type": "unsigned int", - "id": 3, - "offset": 184, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 485805784 - } - } - }, - "2109119620": { - "name": "class FishingBehavior*", - "bases": [ - "FishingBehaviorBase", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 2109119620, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_caughtFishList": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 1, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2107365240 - }, - "m_fishHistoryList": { - "type": "class SharedPointer", - "id": 2, - "offset": 128, - "flags": 1, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 3741999493 - } - } - }, - "2108616236": { - "name": "class QuestCompilation*", - "bases": [ - "PropertyClass" - ], - "hash": 2108616236, - "properties": { - "m_prepEntries": { - "type": "class PrepEntry*", - "id": 0, - "offset": 72, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2230286528 - }, - "m_underwayEntries": { - "type": "class UnderwayEntry*", - "id": 1, - "offset": 88, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1490882790 - }, - "m_availableCompleteEntries": { - "type": "class AvailableCompleteEntry*", - "id": 2, - "offset": 104, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2930050163 - }, - "m_availableQuestEntries": { - "type": "class AvailableQuestEntry*", - "id": 3, - "offset": 120, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 729081883 - } - } - }, - "534479466": { - "name": "class GameEffectInfoList*", - "bases": [ - "PropertyClass" - ], - "hash": 534479466, - "properties": { - "m_gameEffectInfoList": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1747948740 - } - } - }, - "2108452396": { - "name": "class QuestCompilation", - "bases": [ - "PropertyClass" - ], - "hash": 2108452396, - "properties": { - "m_prepEntries": { - "type": "class PrepEntry*", - "id": 0, - "offset": 72, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2230286528 - }, - "m_underwayEntries": { - "type": "class UnderwayEntry*", - "id": 1, - "offset": 88, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1490882790 - }, - "m_availableCompleteEntries": { - "type": "class AvailableCompleteEntry*", - "id": 2, - "offset": 104, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2930050163 - }, - "m_availableQuestEntries": { - "type": "class AvailableQuestEntry*", - "id": 3, - "offset": 120, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 729081883 - } - } - }, - "139159527": { - "name": "class PvPTourneyCurrencyBonusLootInfo*", - "bases": [ - "LootInfo", - "LootInfoBase", - "PropertyClass" - ], - "hash": 139159527, - "properties": { - "m_lootType": { - "type": "enum LootInfo::LOOT_TYPE", - "id": 0, - "offset": 72, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1591891442, - "enum_options": { - "LOOT_TYPE_NONE": 0, - "LOOT_TYPE_GOLD": 1, - "LOOT_TYPE_MANA": 2, - "LOOT_TYPE_ITEM": 3, - "LOOT_TYPE_TREASURE_CARD": 4, - "LOOT_TYPE_MAGIC_XP": 5, - "LOOT_TYPE_ADD_SPELL": 6, - "LOOT_TYPE_MAX_HEALTH": 7, - "LOOT_TYPE_MAX_GOLD": 8, - "LOOT_TYPE_MAX_MANA": 9, - "LOOT_TYPE_MAX_POTION": 10, - "LOOT_TYPE_TRAINING_POINTS": 11, - "LOOT_TYPE_RECIPE": 12, - "LOOT_TYPE_CRAFTING_SLOT": 13, - "LOOT_TYPE_REAGENT": 14, - "LOOT_TYPE_PETSNACK": 15, - "LOOT_TYPE_GARDENING_XP": 16, - "LOOT_TYPE_PET_XP": 17, - "LOOT_TYPE_TREASURE_TABLE": 18, - "LOOT_TYPE_ARENA_POINTS": 19, - "LOOT_TYPE_ARENA_BONUS_POINTS": 20, - "LOOT_TYPE_GROUP": 21, - "LOOT_TYPE_FISHING_XP": 22, - "LOOT_TYPE_EVENT_CURRENCY_1": 24, - "LOOT_TYPE_EVENT_CURRENCY_2": 25, - "LOOT_TYPE_PVP_CURRENCY": 26, - "LOOT_TYPE_PVP_CURRENCY_BONUS": 27, - "LOOT_TYPE_PVP_TOURNEY_CURRENCY": 28, - "LOOT_TYPE_PVP_TOURNEY_CURRENCY_BONUS": 29, - "LOOT_TYPE_FURNITURE_ESSENCE": 30 - } - }, - "m_pvpTourneyCurrencyBonusAmount": { - "type": "int", - "id": 1, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1691016556 - } - } - }, - "534151307": { - "name": "class GradientWidgetBackground", - "bases": [ - "WidgetBackground", - "PropertyClass" - ], - "hash": 534151307, - "properties": { - "m_fBackgroundAlpha": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1164086307 - }, - "m_pTopLeftBackgroundAlphaMask": { - "type": "class SharedPointer", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2652729643 - }, - "m_pTopRightBackgroundAlphaMask": { - "type": "class SharedPointer", - "id": 2, - "offset": 96, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2236264926 - }, - "m_pBottomLeftBackgroundAlphaMask": { - "type": "class SharedPointer", - "id": 3, - "offset": 112, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3301927117 - }, - "m_pBottomRightBackgroundAlphaMask": { - "type": "class SharedPointer", - "id": 4, - "offset": 128, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2184945088 - }, - "m_pBottomBackgroundAlphaMask": { - "type": "class SharedPointer", - "id": 5, - "offset": 144, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2408122274 - }, - "m_pTopBackgroundAlphaMask": { - "type": "class SharedPointer", - "id": 6, - "offset": 160, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3440742656 - }, - "m_pLeftBackgroundAlphaMask": { - "type": "class SharedPointer", - "id": 7, - "offset": 176, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2348634648 - }, - "m_pRightBackgroundAlphaMask": { - "type": "class SharedPointer", - "id": 8, - "offset": 192, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2938548331 - }, - "m_pCenterBackgroundAlphaMask": { - "type": "class SharedPointer", - "id": 9, - "offset": 208, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3347258414 - }, - "m_TopLeftColor": { - "type": "class Color", - "id": 10, - "offset": 224, - "flags": 262151, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2827413723 - }, - "m_TopRightColor": { - "type": "class Color", - "id": 11, - "offset": 228, - "flags": 262151, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1853016654 - }, - "m_BottomLeftColor": { - "type": "class Color", - "id": 12, - "offset": 232, - "flags": 262151, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1172117245 - }, - "m_BottomRightColor": { - "type": "class Color", - "id": 13, - "offset": 236, - "flags": 262151, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3062807728 - } - } - }, - "138873832": { - "name": "class SharedPointer", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 138873832, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_fishSize": { - "type": "float", - "id": 1, - "offset": 112, - "flags": 65536, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1986368316 - } - } - }, - "2109114500": { - "name": "class FishingBehavior", - "bases": [ - "FishingBehaviorBase", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 2109114500, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_caughtFishList": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 1, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2107365240 - }, - "m_fishHistoryList": { - "type": "class SharedPointer", - "id": 2, - "offset": 128, - "flags": 1, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 3741999493 - } - } - }, - "139748988": { - "name": "class SharedPointer", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 139748988, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_radius": { - "type": "float", - "id": 1, - "offset": 116, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 989410271 - }, - "m_category": { - "type": "enum AudioCategory", - "id": 2, - "offset": 124, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2951251982, - "enum_options": { - "AudioCategory_Irrelevent": 0, - "AudioCategory_Accoustic": 1, - "AudioCategory_Noise": 2, - "AudioCategory_Music": 3 - } - }, - "m_exclusive": { - "type": "bool", - "id": 3, - "offset": 128, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 824383403 - } - } - }, - "536015922": { - "name": "class WinAnimMoveToLocationTime*", - "bases": [ - "WinAnimMoveToLocation", - "WindowAnimation", - "PropertyClass" - ], - "hash": 536015922, - "properties": { - "m_bUseDeepCopy": { - "type": "bool", - "id": 0, - "offset": 72, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 433380635 - }, - "m_targetLocation": { - "type": "class Vector3D", - "id": 1, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2653859938 - }, - "m_fTimeRemaining": { - "type": "float", - "id": 2, - "offset": 100, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1591443014 - }, - "m_fTimeTotal": { - "type": "float", - "id": 3, - "offset": 96, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 661225456 - } - } - }, - "139355632": { - "name": "class SharedPointer", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 139355632, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_pDuel": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1066616366 - }, - "m_sigilTemplateID": { - "type": "unsigned int", - "id": 2, - "offset": 128, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 269055310 - } - } - }, - "535692033": { - "name": "class ClientTurnIndicatorCinematicAction", - "bases": [ - "TurnIndicatorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 535692033, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - } - } - }, - "2109552491": { - "name": "class WizClientMount*", - "bases": [ - "WizClientLeashedObject", - "WizClientObject", - "ClientObject", - "CoreObject", - "PropertyClass" - ], - "hash": 2109552491, - "properties": { - "m_inactiveBehaviors": { - "type": "class SharedPointer", - "id": 0, - "offset": 224, - "flags": 31, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1850812559 - }, - "m_globalID.m_full": { - "type": "unsigned __int64", - "id": 1, - "offset": 72, - "flags": 16777247, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2312465444 - }, - "m_permID": { - "type": "unsigned __int64", - "id": 2, - "offset": 80, - "flags": 16777247, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1298909658 - }, - "m_location": { - "type": "class Vector3D", - "id": 3, - "offset": 168, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2239683611 - }, - "m_orientation": { - "type": "class Vector3D", - "id": 4, - "offset": 180, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2344058766 - }, - "m_fScale": { - "type": "float", - "id": 5, - "offset": 196, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 503137701 - }, - "m_templateID.m_full": { - "type": "unsigned __int64", - "id": 6, - "offset": 96, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 633907631 - }, - "m_debugName": { - "type": "std::string", - "id": 7, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3553984419 - }, - "m_displayKey": { - "type": "std::string", - "id": 8, - "offset": 136, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3023276954 - }, - "m_zoneTagID": { - "type": "unsigned int", - "id": 9, - "offset": 344, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 965291410 - }, - "m_speedMultiplier": { - "type": "short", - "id": 10, - "offset": 192, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 123130076 - }, - "m_nMobileID": { - "type": "unsigned short", - "id": 11, - "offset": 194, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1054318939 - }, - "m_characterId": { - "type": "gid", - "id": 12, - "offset": 440, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 210498418 - }, - "m_gameStats": { - "type": "class WizGameStats*", - "id": 13, - "offset": 544, - "flags": 27, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3194480406 - }, - "m_leashed": { - "type": "bool", - "id": 14, - "offset": 576, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 603235945 - } - } - }, - "535319852": { - "name": "class AdvPvPLeagueAwardInfo*", - "bases": [ - "PropertyClass" - ], - "hash": 535319852, - "properties": { - "m_leagueType": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3327951024 - }, - "m_awardInfo": { - "type": "class SharedPointer", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2862912855 - } - } - }, - "2109503673": { - "name": "class SharedPointer", - "bases": [ - "PvPMatchRequest", - "MatchRequest", - "PropertyClass" - ], - "hash": 2109503673, - "properties": { - "m_characterID": { - "type": "gid", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 210498386 - }, - "m_tournamentNameID": { - "type": "unsigned int", - "id": 1, - "offset": 84, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1799846440 - }, - "m_matchNameID": { - "type": "unsigned int", - "id": 2, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1751361288 - }, - "m_leagueID": { - "type": "unsigned int", - "id": 3, - "offset": 88, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 692361645 - }, - "m_seasonID": { - "type": "unsigned int", - "id": 4, - "offset": 92, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 535260643 - }, - "m_teams": { - "type": "class SharedPointer", - "id": 5, - "offset": 96, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1984373608 - }, - "m_joinQueueRequirements": { - "type": "class SharedPointer", - "id": 6, - "offset": 112, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2746080983 - }, - "m_ignoredList": { - "type": "gid", - "id": 7, - "offset": 128, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1850924028 - }, - "m_matchTimer": { - "type": "float", - "id": 8, - "offset": 144, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1510935909 - }, - "m_bonusTime": { - "type": "int", - "id": 9, - "offset": 148, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1757496496 - }, - "m_passPenalty": { - "type": "int", - "id": 10, - "offset": 152, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 982951662 - }, - "m_yellowTime": { - "type": "int", - "id": 11, - "offset": 156, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1017028741 - }, - "m_redTime": { - "type": "int", - "id": 12, - "offset": 160, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1909556708 - }, - "m_minTurnTime": { - "type": "int", - "id": 13, - "offset": 164, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 652524886 - }, - "m_effects": { - "type": "class SharedPointer", - "id": 14, - "offset": 168, - "flags": 31, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 804962647 - }, - "m_maxNumberOfTeams": { - "type": "unsigned int", - "id": 15, - "offset": 220, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1656964203 - }, - "m_minNumberOfTeams": { - "type": "unsigned int", - "id": 16, - "offset": 224, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 746353193 - }, - "m_timeLimitSec": { - "type": "unsigned int", - "id": 17, - "offset": 216, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 312519798 - }, - "m_scheduleID": { - "type": "gid", - "id": 18, - "offset": 232, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1439120946 - }, - "m_visibleTimeSeconds": { - "type": "unsigned int", - "id": 19, - "offset": 248, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1245818841 - }, - "m_registrationOpenTimeSeconds": { - "type": "unsigned int", - "id": 20, - "offset": 252, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2064854776 - }, - "m_tournamentPreparingTimeSeconds": { - "type": "unsigned int", - "id": 21, - "offset": 256, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1121720544 - }, - "m_teamSize": { - "type": "int", - "id": 22, - "offset": 240, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2131986300 - }, - "m_bracketRewardsList": { - "type": "class SharedPointer", - "id": 23, - "offset": 272, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 3842983067 - }, - "m_name": { - "type": "std::string", - "id": 24, - "offset": 288, - "flags": 8388639, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1717359772 - }, - "m_roundStartsInSeconds": { - "type": "unsigned int", - "id": 25, - "offset": 260, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 346233980 - }, - "m_roundBufferTimeSeconds": { - "type": "unsigned int", - "id": 26, - "offset": 264, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 671173677 - }, - "m_numberOfRounds": { - "type": "unsigned int", - "id": 27, - "offset": 268, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2292833030 - }, - "m_scoreMultiplier": { - "type": "float", - "id": 28, - "offset": 328, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 545011290 - }, - "m_preferredNumberOfTeams": { - "type": "unsigned int", - "id": 29, - "offset": 228, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 686953092 - }, - "m_specialEvent": { - "type": "bool", - "id": 30, - "offset": 192, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1211693398 - }, - "m_pvpDuelModifiers": { - "type": "std::string", - "id": 31, - "offset": 200, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1796488605 - }, - "m_premierPrizesStoreGIDsCSV": { - "type": "std::string", - "id": 32, - "offset": 336, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2521625388 - }, - "m_costPvPTourneyCurrency": { - "type": "unsigned int", - "id": 33, - "offset": 320, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1823400061 - }, - "m_subCostPvPTourneyCurrency": { - "type": "unsigned int", - "id": 34, - "offset": 324, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2082801383 - } - } - }, - "535501382": { - "name": "class GuildGalleryEssenceList*", - "bases": [ - "PropertyClass" - ], - "hash": 535501382, - "properties": { - "m_templateList": { - "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 786797381 - }, - "m_essenceList": { - "type": "int", - "id": 1, - "offset": 88, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1555680540 - } - } - }, - "141110234": { - "name": "class SharedPointer", - "bases": [ - "GameEffectBase", - "PropertyClass" - ], - "hash": 141110234, - "properties": { - "m_currentTickCount": { - "type": "double", - "id": 0, - "offset": 80, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2533274692 - }, - "m_effectNameID": { - "type": "unsigned int", - "id": 1, - "offset": 96, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1204067144 - }, - "m_bIsOnPet": { - "type": "bool", - "id": 2, - "offset": 73, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 522593303 - }, - "m_originatorID": { - "type": "gid", - "id": 3, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1131810019 - }, - "m_itemSlotID": { - "type": "unsigned int", - "id": 4, - "offset": 112, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1895747595 - }, - "m_internalID": { - "type": "int", - "id": 5, - "offset": 92, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1643137924 - }, - "m_endTime": { - "type": "unsigned int", - "id": 6, - "offset": 88, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 716479635 - }, - "m_speedMultiplier": { - "type": "int", - "id": 7, - "offset": 128, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 32503058 - } - } - }, - "2109552587": { - "name": "class WizClientMount", - "bases": [ - "WizClientLeashedObject", - "WizClientObject", - "ClientObject", - "CoreObject", - "PropertyClass" - ], - "hash": 2109552587, - "properties": { - "m_inactiveBehaviors": { - "type": "class SharedPointer", - "id": 0, - "offset": 224, - "flags": 31, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1850812559 - }, - "m_globalID.m_full": { - "type": "unsigned __int64", - "id": 1, - "offset": 72, - "flags": 16777247, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2312465444 - }, - "m_permID": { - "type": "unsigned __int64", - "id": 2, - "offset": 80, - "flags": 16777247, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1298909658 - }, - "m_location": { - "type": "class Vector3D", - "id": 3, - "offset": 168, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2239683611 - }, - "m_orientation": { - "type": "class Vector3D", - "id": 4, - "offset": 180, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2344058766 - }, - "m_fScale": { - "type": "float", - "id": 5, - "offset": 196, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 503137701 - }, - "m_templateID.m_full": { - "type": "unsigned __int64", - "id": 6, - "offset": 96, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 633907631 - }, - "m_debugName": { - "type": "std::string", - "id": 7, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3553984419 - }, - "m_displayKey": { - "type": "std::string", - "id": 8, - "offset": 136, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3023276954 - }, - "m_zoneTagID": { - "type": "unsigned int", - "id": 9, - "offset": 344, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 965291410 - }, - "m_speedMultiplier": { - "type": "short", - "id": 10, - "offset": 192, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 123130076 - }, - "m_nMobileID": { - "type": "unsigned short", - "id": 11, - "offset": 194, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1054318939 - }, - "m_characterId": { - "type": "gid", - "id": 12, - "offset": 440, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 210498418 - }, - "m_gameStats": { - "type": "class WizGameStats*", - "id": 13, - "offset": 544, - "flags": 27, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3194480406 - }, - "m_leashed": { - "type": "bool", - "id": 14, - "offset": 576, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 603235945 - } - } - }, - "140524840": { - "name": "class ClientDerbyStealMorale*", - "bases": [ - "DerbyStealMorale", - "DerbyEffect", - "PropertyClass" - ], - "hash": 140524840, - "properties": { - "m_buffType": { - "type": "enum DerbyTalentBuffType", - "id": 0, - "offset": 92, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1149251982, - "enum_options": { - "Buff": 0, - "Debuff": 1, - "Neither": 2 - } - }, - "m_kTarget": { - "type": "enum DerbyTargetType", - "id": 1, - "offset": 96, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1807803351, - "enum_options": { - "kTargetInFront": 0, - "kTargetBehind": 1, - "kTargetFirst": 2, - "kTargetSelf": 3, - "kTargetAll": 4, - "kTargetLast": 5 - } - }, - "m_nDuration": { - "type": "int", - "id": 2, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1110167982 - }, - "m_effectID": { - "type": "unsigned int", - "id": 3, - "offset": 88, - "flags": 24, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2347630439 - }, - "m_imageFilename": { - "type": "std::string", - "id": 4, - "offset": 112, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2813328063 - }, - "m_iconIndex": { - "type": "unsigned int", - "id": 5, - "offset": 144, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1265133262 - }, - "m_soundOnActivate": { - "type": "std::string", - "id": 6, - "offset": 152, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1956929714 - }, - "m_soundOnTarget": { - "type": "std::string", - "id": 7, - "offset": 184, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3444214056 - }, - "m_targetParticleEffect": { - "type": "std::string", - "id": 8, - "offset": 216, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3048234723 - }, - "m_overheadMessage": { - "type": "std::string", - "id": 9, - "offset": 248, - "flags": 8388639, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1701018190 - }, - "m_requirements": { - "type": "class RequirementList", - "id": 10, - "offset": 280, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2840988582 - }, - "m_nAmountToSteal": { - "type": "int", - "id": 11, - "offset": 376, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 247752792 - } - } - }, - "140406196": { - "name": "class SharedPointer", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 140406196, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - } - } - }, - "535693569": { - "name": "class ClientTurnIndicatorCinematicAction*", - "bases": [ - "TurnIndicatorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 535693569, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - } - } - }, - "140335308": { - "name": "class SharedPointer", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 140335308, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_nFlags": { - "type": "unsigned int", - "id": 1, - "offset": 112, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 922328456 - }, - "m_nMoveState": { - "type": "enum MoveState", - "id": 2, - "offset": 116, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1430960270, - "enum_options": { - "MS_WALKING": 0, - "MS_RUNNING": 1, - "MS_SWIMMING": 2, - "MS_FLYING": 3, - "MS_JUMPING": 4, - "MS_FALLING": 5 - } - } - } - }, - "2112300964": { - "name": "class SharedPointer", - "bases": [ - "AvatarItemInfo", - "AvatarItemInfoBase", - "PropertyClass" - ], - "hash": 2112300964, - "properties": { - "m_partName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2609631923 - }, - "m_slotName": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2819781566 - }, - "m_flags": { - "type": "std::string", - "id": 2, - "offset": 144, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2292098216 - }, - "m_options": { - "type": "class SharedPointer", - "id": 3, - "offset": 160, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2499357824 - }, - "m_textureOptions": { - "type": "class SharedPointer", - "id": 4, - "offset": 176, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2667548348 - }, - "m_defaultOption": { - "type": "class SharedPointer", - "id": 5, - "offset": 192, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2436336754 - }, - "m_defaultTextureOption": { - "type": "class SharedPointer", - "id": 6, - "offset": 208, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2712636654 - } - } - }, - "2111248242": { - "name": "class SharedPointer", - "bases": [ - "DerbyAffectEffects", - "DerbyEffect", - "PropertyClass" - ], - "hash": 2111248242, - "properties": { - "m_buffType": { - "type": "enum DerbyTalentBuffType", - "id": 0, - "offset": 92, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1149251982, - "enum_options": { - "Buff": 0, - "Debuff": 1, - "Neither": 2 - } - }, - "m_kTarget": { - "type": "enum DerbyTargetType", - "id": 1, - "offset": 96, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1807803351, - "enum_options": { - "kTargetInFront": 0, - "kTargetBehind": 1, - "kTargetFirst": 2, - "kTargetSelf": 3, - "kTargetAll": 4, - "kTargetLast": 5 - } - }, - "m_nDuration": { - "type": "int", - "id": 2, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1110167982 - }, - "m_effectID": { - "type": "unsigned int", - "id": 3, - "offset": 88, - "flags": 24, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2347630439 - }, - "m_imageFilename": { - "type": "std::string", - "id": 4, - "offset": 112, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2813328063 - }, - "m_iconIndex": { - "type": "unsigned int", - "id": 5, - "offset": 144, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1265133262 - }, - "m_soundOnActivate": { - "type": "std::string", - "id": 6, - "offset": 152, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1956929714 - }, - "m_soundOnTarget": { - "type": "std::string", - "id": 7, - "offset": 184, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3444214056 - }, - "m_targetParticleEffect": { - "type": "std::string", - "id": 8, - "offset": 216, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3048234723 - }, - "m_overheadMessage": { - "type": "std::string", - "id": 9, - "offset": 248, - "flags": 8388639, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1701018190 - }, - "m_requirements": { - "type": "class RequirementList", - "id": 10, - "offset": 280, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2840988582 - }, - "m_nNumBuffs": { - "type": "int", - "id": 11, - "offset": 376, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1860427310 - }, - "m_nNumDebuffs": { - "type": "int", - "id": 12, - "offset": 380, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 637090007 - } - } - }, - "537330242": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 537330242, - "properties": { - "m_projectID": { - "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1263221425 - }, - "m_teamListA": { - "type": "gid", - "id": 1, - "offset": 80, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1624915612 - }, - "m_teamListB": { - "type": "gid", - "id": 2, - "offset": 96, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1624915613 - } - } - }, - "2110945329": { - "name": "class ClearCameraMappingCinematicAction*", - "bases": [ - "CinematicAction", - "PropertyClass" - ], - "hash": 2110945329, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - } - } - }, - "140406256": { - "name": "class SharedPointer", - "bases": [ - "DeedBehaviorBase", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 140406256, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_lotInstanceGID": { - "type": "gid", - "id": 1, - "offset": 120, - "flags": 33554495, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2010711536 - }, - "m_streetAddress": { - "type": "int", - "id": 2, - "offset": 112, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1809670519 - }, - "m_transferCoolDownTime": { - "type": "unsigned int", - "id": 3, - "offset": 128, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1616830022 - } - } - }, - "536105006": { - "name": "class AssociatedWorldsList", - "bases": [ - "PropertyClass" - ], - "hash": 536105006, - "properties": { - "m_associatedWorlds": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2747792502 - } - } - }, - "2110584854": { - "name": "class QuestEffectDisplayInfo*", - "bases": [ - "PropertyClass" - ], - "hash": 2110584854, - "properties": { - "m_companionID": { - "type": "int", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1594812875 - }, - "m_serializedEffects": { - "type": "std::string", - "id": 1, - "offset": 96, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3446153863 - } - } - }, - "536104966": { - "name": "class AssociatedWorldsList*", - "bases": [ - "PropertyClass" - ], - "hash": 536104966, - "properties": { - "m_associatedWorlds": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2747792502 - } - } - }, - "2110562141": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 2110562141, - "properties": { - "m_zoneGID": { - "type": "gid", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1907651624 - }, - "m_objectGID": { - "type": "gid", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2037310403 - } - } - }, - "140910793": { - "name": "class CombatAction", - "bases": [ - "PropertyClass" - ], - "hash": 140910793, - "properties": { - "m_spellCaster": { - "type": "int", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1306412924 - }, - "m_spell": { - "type": "class SharedPointer", - "id": 1, - "offset": 96, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1160380498 - }, - "m_spellHits": { - "type": "char", - "id": 2, - "offset": 112, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1193115340 - }, - "m_effectChosen": { - "type": "unsigned int", - "id": 3, - "offset": 212, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 781967354 - }, - "m_interrupt": { - "type": "bool", - "id": 4, - "offset": 113, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1419105216 - }, - "m_sigilSpell": { - "type": "bool", - "id": 5, - "offset": 114, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1757632683 - }, - "m_showCast": { - "type": "bool", - "id": 6, - "offset": 115, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 456821215 - }, - "m_criticalHitRoll": { - "type": "unsigned char", - "id": 7, - "offset": 116, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2767200825 - }, - "m_stunResistRoll": { - "type": "unsigned char", - "id": 8, - "offset": 117, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2034125421 - }, - "m_blocksCalculated": { - "type": "bool", - "id": 9, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1203964291 - }, - "m_serializedBlocks": { - "type": "std::string", - "id": 10, - "offset": 160, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3529268709 - }, - "m_stringKeyMessage": { - "type": "std::string", - "id": 11, - "offset": 216, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2591311648 - }, - "m_soundFileName": { - "type": "std::string", - "id": 12, - "offset": 248, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3058120805 - }, - "m_durationModifier": { - "type": "float", - "id": 13, - "offset": 280, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 753259116 - }, - "m_serializedTargetsAffected": { - "type": "std::string", - "id": 14, - "offset": 288, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2626745971 - }, - "m_targetSubcircleList": { - "type": "int", - "id": 15, - "offset": 80, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 227779897 - }, - "m_pipConversionRoll": { - "type": "int", - "id": 16, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 791010242 - }, - "m_randomSpellEffectPerTargetRolls": { - "type": "int", - "id": 17, - "offset": 128, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 430465634 - }, - "m_handledRandomSpellPerTarget": { - "type": "bool", - "id": 18, - "offset": 124, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1741636882 - }, - "m_confusedTarget": { - "type": "bool", - "id": 19, - "offset": 208, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1193542673 - }, - "m_forceSpell": { - "type": "bool", - "id": 20, - "offset": 336, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 935804098 - }, - "m_afterDied": { - "type": "bool", - "id": 21, - "offset": 209, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1317680827 - }, - "m_delayed": { - "type": "bool", - "id": 22, - "offset": 337, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1021327211 - }, - "m_delayedEnchanted": { - "type": "bool", - "id": 23, - "offset": 338, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2083048693 - }, - "m_petCast": { - "type": "bool", - "id": 24, - "offset": 339, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1494940903 - }, - "m_petCasted": { - "type": "bool", - "id": 25, - "offset": 340, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1697247120 - }, - "m_petCastTarget": { - "type": "int", - "id": 26, - "offset": 344, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 317564181 - }, - "m_CritHitList": { - "type": "class TargetCritHit", - "id": 27, - "offset": 368, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1448398021 - }, - "m_xPipCost": { - "type": "unsigned char", - "id": 28, - "offset": 348, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2557198122 - } - } - }, - "140549416": { - "name": "class ClientDerbyStealMorale", - "bases": [ - "DerbyStealMorale", - "DerbyEffect", - "PropertyClass" - ], - "hash": 140549416, - "properties": { - "m_buffType": { - "type": "enum DerbyTalentBuffType", - "id": 0, - "offset": 92, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1149251982, - "enum_options": { - "Buff": 0, - "Debuff": 1, - "Neither": 2 - } - }, - "m_kTarget": { - "type": "enum DerbyTargetType", - "id": 1, - "offset": 96, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1807803351, - "enum_options": { - "kTargetInFront": 0, - "kTargetBehind": 1, - "kTargetFirst": 2, - "kTargetSelf": 3, - "kTargetAll": 4, - "kTargetLast": 5 - } - }, - "m_nDuration": { - "type": "int", - "id": 2, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1110167982 - }, - "m_effectID": { - "type": "unsigned int", - "id": 3, - "offset": 88, - "flags": 24, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2347630439 - }, - "m_imageFilename": { - "type": "std::string", - "id": 4, - "offset": 112, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2813328063 - }, - "m_iconIndex": { - "type": "unsigned int", - "id": 5, - "offset": 144, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1265133262 - }, - "m_soundOnActivate": { - "type": "std::string", - "id": 6, - "offset": 152, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1956929714 - }, - "m_soundOnTarget": { - "type": "std::string", - "id": 7, - "offset": 184, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3444214056 - }, - "m_targetParticleEffect": { - "type": "std::string", - "id": 8, - "offset": 216, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3048234723 - }, - "m_overheadMessage": { - "type": "std::string", - "id": 9, - "offset": 248, - "flags": 8388639, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1701018190 - }, - "m_requirements": { - "type": "class RequirementList", - "id": 10, - "offset": 280, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2840988582 - }, - "m_nAmountToSteal": { - "type": "int", - "id": 11, - "offset": 376, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 247752792 - } - } - }, - "536812102": { - "name": "class GuildGalleryEssenceList", - "bases": [ - "PropertyClass" - ], - "hash": 536812102, - "properties": { - "m_templateList": { - "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 786797381 - }, - "m_essenceList": { - "type": "int", - "id": 1, - "offset": 88, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1555680540 - } - } - }, - "239623404": { - "name": "class PetTomeBehaviorTemplate*", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 239623404, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - } - } - }, - "2110945377": { - "name": "class ClearCameraMappingCinematicAction", - "bases": [ - "CinematicAction", - "PropertyClass" - ], - "hash": 2110945377, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - } - } - }, - "537858439": { - "name": "class ClientCombatParticipant*", - "bases": [ - "CombatParticipant", - "PropertyClass" - ], - "hash": 537858439, - "properties": { - "m_ownerID.m_full": { - "type": "unsigned __int64", - "id": 0, - "offset": 112, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2149616286 - }, - "m_templateID.m_full": { - "type": "unsigned __int64", - "id": 1, - "offset": 120, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 633907631 - }, - "m_isPlayer": { - "type": "bool", - "id": 2, - "offset": 128, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1717744636 - }, - "m_zoneID.m_full": { - "type": "unsigned __int64", - "id": 3, - "offset": 136, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2105998895 - }, - "m_teamID": { - "type": "int", - "id": 4, - "offset": 144, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 982118638 - }, - "m_primaryMagicSchoolID": { - "type": "int", - "id": 5, - "offset": 148, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1864910356 - }, - "m_pipCount": { - "type": "class SharedPointer", - "id": 6, - "offset": 152, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1862540484 - }, - "m_pipRoundRates": { - "type": "class SharedPointer", - "id": 7, - "offset": 168, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1859513241 - }, - "m_PipsSuspended": { - "type": "bool", - "id": 8, - "offset": 184, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 98171898 - }, - "m_stunned": { - "type": "int", - "id": 9, - "offset": 188, - "flags": 25, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1661672123 - }, - "m_mindcontrolled": { - "type": "int", - "id": 10, - "offset": 216, - "flags": 25, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2059794744 - }, - "m_originalTeam": { - "type": "int", - "id": 11, - "offset": 224, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1121355446 - }, - "m_nAuraTurnLength": { - "type": "int", - "id": 12, - "offset": 236, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1719821564 - }, - "m_clue": { - "type": "int", - "id": 13, - "offset": 228, - "flags": 25, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 219277091 - }, - "m_roundsDead": { - "type": "int", - "id": 14, - "offset": 232, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2071727747 - }, - "m_nPolymorphTurnLength": { - "type": "int", - "id": 15, - "offset": 240, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1619550301 - }, - "m_playerHealth": { - "type": "int", - "id": 16, - "offset": 244, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 740444925 - }, - "m_maxPlayerHealth": { - "type": "int", - "id": 17, - "offset": 248, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 96027363 - }, - "m_HideCurrentHP": { - "type": "bool", - "id": 18, - "offset": 252, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 31360456 - }, - "m_maxHandSize": { - "type": "int", - "id": 19, - "offset": 256, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1925169782 - }, - "m_pHand": { - "type": "class Hand*", - "id": 20, - "offset": 264, - "flags": 1, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 892448765 - }, - "m_pSavedHand": { - "type": "class Hand*", - "id": 21, - "offset": 272, - "flags": 1, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 787912720 - }, - "m_pPlayDeck": { - "type": "class PlayDeck*", - "id": 22, - "offset": 280, - "flags": 1, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2053198667 - }, - "m_pSavedPlayDeck": { - "type": "class PlayDeck*", - "id": 23, - "offset": 288, - "flags": 1, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 498207966 - }, - "m_pSavedGameStats": { - "type": "class SharedPointer", - "id": 24, - "offset": 296, - "flags": 1, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1599533644 - }, - "m_savedPrimaryMagicSchoolID": { - "type": "int", - "id": 25, - "offset": 312, - "flags": 1, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 983035431 - }, - "m_pGameStats": { - "type": "class SharedPointer", - "id": 26, - "offset": 320, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3522102873 - }, - "m_color": { - "type": "class Color", - "id": 27, - "offset": 336, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1791663549 - }, - "m_rotation": { - "type": "float", - "id": 28, - "offset": 340, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1497468551 - }, - "m_radius": { - "type": "float", - "id": 29, - "offset": 344, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 989410271 - }, - "m_subcircle": { - "type": "int", - "id": 30, - "offset": 348, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1748202326 - }, - "m_pvp": { - "type": "bool", - "id": 31, - "offset": 352, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 269527241 - }, - "m_raid": { - "type": "bool", - "id": 32, - "offset": 353, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 222284947 - }, - "m_dynamicSymbol": { - "type": "enum DynamicSigilSymbol", - "id": 33, - "offset": 356, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 701705655 - }, - "m_accuracyBonus": { - "type": "float", - "id": 34, - "offset": 396, - "flags": 1, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1440672233 - }, - "m_minionSubCircle": { - "type": "int", - "id": 35, - "offset": 400, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1896926112 - }, - "m_isMinion": { - "type": "bool", - "id": 36, - "offset": 404, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1597230777 - }, - "m_isAccompanyNPC": { - "type": "bool", - "id": 37, - "offset": 412, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1067399659 - }, - "m_hangingEffects": { - "type": "class SpellEffect", - "id": 38, - "offset": 416, - "flags": 27, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2685029606 - }, - "m_publicHangingEffects": { - "type": "class SpellEffect", - "id": 39, - "offset": 432, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1243141029 - }, - "m_auraEffects": { - "type": "class SpellEffect", - "id": 40, - "offset": 448, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2783652947 - }, - "m_shadowEffects": { - "type": "class SharedPointer", - "id": 41, - "offset": 464, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1712698903 - }, - "m_shadowSpellEffects": { - "type": "class SpellEffect", - "id": 42, - "offset": 480, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1808623792 - }, - "m_deathActivatedEffects": { - "type": "class SharedPointer", - "id": 43, - "offset": 512, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1347166054 - }, - "m_delayCastEffects": { - "type": "class DelaySpellEffect", - "id": 44, - "offset": 528, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2596123949 - }, - "m_polymorphSpellTemplateID": { - "type": "unsigned int", - "id": 45, - "offset": 576, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1320079328 - }, - "m_side": { - "type": "std::string", - "id": 46, - "offset": 600, - "flags": 1, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1717547872 - }, - "m_shadowSpellsDisabled": { - "type": "bool", - "id": 47, - "offset": 672, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2077139652 - }, - "m_ignoreSpellsPvPOnlyFlag": { - "type": "bool", - "id": 48, - "offset": 673, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1714276188 - }, - "m_ignoreSpellsPvEOnlyFlag": { - "type": "bool", - "id": 49, - "offset": 674, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1691675729 - }, - "m_bossMob": { - "type": "bool", - "id": 50, - "offset": 675, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 986129576 - }, - "m_hidePVPEnemyChat": { - "type": "bool", - "id": 51, - "offset": 676, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1284658049 - }, - "m_combatTriggerIDs": { - "type": "int", - "id": 52, - "offset": 696, - "flags": 1, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1654684388 - }, - "m_backlash": { - "type": "int", - "id": 53, - "offset": 724, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 857558899 - }, - "m_pastBacklash": { - "type": "int", - "id": 54, - "offset": 728, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1229328939 - }, - "m_shadowCreatureLevel": { - "type": "int", - "id": 55, - "offset": 732, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1119572179 - }, - "m_pastShadowCreatureLevel": { - "type": "int", - "id": 56, - "offset": 736, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1267855499 - }, - "m_shadowCreatureLevelCount": { - "type": "int", - "id": 57, - "offset": 744, - "flags": 31, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 975615804 - }, - "m_interceptEffect": { - "type": "class SharedPointer", - "id": 58, - "offset": 768, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 339294150 - }, - "m_roundsSinceShadowPip": { - "type": "int", - "id": 59, - "offset": 800, - "flags": 1, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 682042934 - }, - "m_polymorphEffect": { - "type": "class SharedPointer", - "id": 60, - "offset": 824, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2193528962 - }, - "m_confused": { - "type": "int", - "id": 61, - "offset": 196, - "flags": 25, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1851913585 - }, - "m_confusionTrigger": { - "type": "int", - "id": 62, - "offset": 200, - "flags": 25, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 554584130 - }, - "m_confusionDisplay": { - "type": "bool", - "id": 63, - "offset": 204, - "flags": 25, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1028383709 - }, - "m_confusedTarget": { - "type": "bool", - "id": 64, - "offset": 205, - "flags": 25, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1193542673 - }, - "m_untargetable": { - "type": "bool", - "id": 65, - "offset": 206, - "flags": 25, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 36479793 - }, - "m_untargetableRounds": { - "type": "int", - "id": 66, - "offset": 208, - "flags": 25, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 80618355 - }, - "m_restrictedTarget": { - "type": "bool", - "id": 67, - "offset": 212, - "flags": 25, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 394144563 - }, - "m_exitCombat": { - "type": "bool", - "id": 68, - "offset": 213, - "flags": 25, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1293141763 - }, - "m_stunnedDisplay": { - "type": "bool", - "id": 69, - "offset": 192, - "flags": 25, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 892304554 - }, - "m_mindcontrolledDisplay": { - "type": "bool", - "id": 70, - "offset": 220, - "flags": 25, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 174689415 - }, - "m_autoPass": { - "type": "bool", - "id": 71, - "offset": 720, - "flags": 25, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1919864803 - }, - "m_vanish": { - "type": "bool", - "id": 72, - "offset": 721, - "flags": 25, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1058591164 - }, - "m_myTeamTurn": { - "type": "bool", - "id": 73, - "offset": 722, - "flags": 25, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1134422697 - }, - "m_needToCleanAuras": { - "type": "bool", - "id": 74, - "offset": 888, - "flags": 25, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1159570481 - }, - "m_planningPhasePipAquiredType": { - "type": "enum CombatParticipant::PipAquiredByEnum", - "id": 75, - "offset": 816, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1435933659, - "enum_options": { - "CombatParticipant::AQUIRED_PIP_UNKNOWN": 0, - "CombatParticipant::AQUIRED_PIP_NORMAL": 1, - "CombatParticipant::AQUIRED_PIP_POWER": 2, - "CombatParticipant::AQUIRED_NORMAL_TO_POWER_PIP_CONVERSION": 4, - "CombatParticipant::IMPEDE_PIPS": 5 - } - }, - "m_cheatSettings": { - "type": "class SharedPointer", - "id": 76, - "offset": 96, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2742666223 - }, - "m_isMonster": { - "type": "unsigned int", - "id": 77, - "offset": 408, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1530878065 - }, - "m_weaponNifSoundList": { - "type": "class SharedPointer", - "id": 78, - "offset": 80, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2575326929 - }, - "m_petCombatTrigger": { - "type": "int", - "id": 79, - "offset": 712, - "flags": 1, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 822894541 - }, - "m_petCombatTriggerTarget": { - "type": "int", - "id": 80, - "offset": 716, - "flags": 1, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 675145556 - }, - "m_shadowPipRateThreshold": { - "type": "float", - "id": 81, - "offset": 840, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1215959391 - }, - "m_baseSpellDamage": { - "type": "int", - "id": 82, - "offset": 844, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 871613364 - }, - "m_statDamage": { - "type": "float", - "id": 83, - "offset": 848, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1480169970 - }, - "m_statResist": { - "type": "float", - "id": 84, - "offset": 852, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2033033901 - }, - "m_statPierce": { - "type": "float", - "id": 85, - "offset": 856, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1959012939 - }, - "m_mobLevel": { - "type": "int", - "id": 86, - "offset": 860, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 186067024 - }, - "m_bPlayerTimeUpdated": { - "type": "bool", - "id": 87, - "offset": 864, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 877395800 - }, - "m_bPlayerTimeEliminated": { - "type": "bool", - "id": 88, - "offset": 865, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1842006605 - }, - "m_bPlayerTimeWarning": { - "type": "bool", - "id": 89, - "offset": 866, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 742875591 - }, - "m_deckFullness": { - "type": "float", - "id": 90, - "offset": 868, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 156080730 - }, - "m_archmasteryPoints": { - "type": "float", - "id": 91, - "offset": 872, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 261464375 - }, - "m_maxArchmasteryPoints": { - "type": "float", - "id": 92, - "offset": 876, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 430012637 - }, - "m_archmasterySchool": { - "type": "unsigned int", - "id": 93, - "offset": 880, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 485805784 - }, - "m_archmasteryFlags": { - "type": "unsigned int", - "id": 94, - "offset": 884, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1571282557 - } - } - }, - "141019177": { - "name": "class SharedPointer", - "bases": [ - "RemoveProtectionEffectCinematicAction", - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 141019177, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - } - } - }, - "537797470": { - "name": "class SharedPointer", - "bases": [ - "AlchemyBehavior", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 537797470, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_recipeBag": { - "type": "class RecipeBag", - "id": 1, - "offset": 112, - "flags": 27, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2218166892 - }, - "m_craftingSlotsBag": { - "type": "class ObjectBag", - "id": 2, - "offset": 320, - "flags": 27, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2324986502 - }, - "m_reagentBag": { - "type": "class ObjectBag", - "id": 3, - "offset": 512, - "flags": 27, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2459563753 - }, - "m_bonusCrafting": { - "type": "int", - "id": 4, - "offset": 704, - "flags": 59, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 943921711 - }, - "m_timerMultiplier": { - "type": "float", - "id": 5, - "offset": 708, - "flags": 27, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1373659455 - }, - "m_maxReagentStack": { - "type": "int", - "id": 6, - "offset": 712, - "flags": 27, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1121296540 - }, - "m_equippedRecipes": { - "type": "unsigned int", - "id": 7, - "offset": 720, - "flags": 27, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1981226997 - }, - "m_equippedRecipeData": { - "type": "std::string", - "id": 8, - "offset": 736, - "flags": 551, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2773803466 - } - } - }, - "2111393023": { - "name": "class GardeningPatchData*", - "bases": [ - "PropertyClass" - ], - "hash": 2111393023, - "properties": {} - }, - "2111361404": { - "name": "class CombatPetXPEffectInfo*", - "bases": [ - "GameEffectInfo", - "PropertyClass" - ], - "hash": 2111361404, - "properties": { - "m_effectName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2029161513 - }, - "m_lootTableName": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2333333378 - }, - "m_description": { - "type": "std::string", - "id": 2, - "offset": 136, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1649374815 - } - } - }, - "142706058": { - "name": "class ZoneTokenTimeTrigger", - "bases": [ - "PropertyClass" - ], - "hash": 142706058, - "properties": { - "m_triggerAt": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2502995716 - }, - "m_onTimeLeft": { - "type": "class SharedPointer", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1587597651 - } - } - }, - "142514312": { - "name": "class SharedPointer", - "bases": [ - "ActorResurrectCinematicAction", - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 142514312, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - } - } - }, - "2111362172": { - "name": "class CombatPetXPEffectInfo", - "bases": [ - "GameEffectInfo", - "PropertyClass" - ], - "hash": 2111362172, - "properties": { - "m_effectName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2029161513 - }, - "m_lootTableName": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2333333378 - }, - "m_description": { - "type": "std::string", - "id": 2, - "offset": 136, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1649374815 - } - } - }, - "141140782": { - "name": "class SharedPointer", - "bases": [ - "GameEffectBase", - "PropertyClass" - ], - "hash": 141140782, - "properties": { - "m_currentTickCount": { - "type": "double", - "id": 0, - "offset": 80, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2533274692 - }, - "m_effectNameID": { - "type": "unsigned int", - "id": 1, - "offset": 96, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1204067144 - }, - "m_bIsOnPet": { - "type": "bool", - "id": 2, - "offset": 73, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 522593303 - }, - "m_originatorID": { - "type": "gid", - "id": 3, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1131810019 - }, - "m_itemSlotID": { - "type": "unsigned int", - "id": 4, - "offset": 112, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1895747595 - }, - "m_internalID": { - "type": "int", - "id": 5, - "offset": 92, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1643137924 - }, - "m_endTime": { - "type": "unsigned int", - "id": 6, - "offset": 88, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 716479635 - }, - "m_overrideName": { - "type": "std::string", - "id": 7, - "offset": 128, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1990707228 - } - } - }, - "566114343": { - "name": "class MatchActorList*", - "bases": [ - "PropertyClass" - ], - "hash": 566114343, - "properties": { - "m_list": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 551684466 - } - } - }, - "141137144": { - "name": "class NamedEffect*", - "bases": [ - "GameEffectBase", - "PropertyClass" - ], - "hash": 141137144, - "properties": { - "m_currentTickCount": { - "type": "double", - "id": 0, - "offset": 80, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2533274692 - }, - "m_effectNameID": { - "type": "unsigned int", - "id": 1, - "offset": 96, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1204067144 - }, - "m_bIsOnPet": { - "type": "bool", - "id": 2, - "offset": 73, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 522593303 - }, - "m_originatorID": { - "type": "gid", - "id": 3, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1131810019 - }, - "m_itemSlotID": { - "type": "unsigned int", - "id": 4, - "offset": 112, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1895747595 - }, - "m_internalID": { - "type": "int", - "id": 5, - "offset": 92, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1643137924 - }, - "m_endTime": { - "type": "unsigned int", - "id": 6, - "offset": 88, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 716479635 - }, - "m_overrideName": { - "type": "std::string", - "id": 7, - "offset": 128, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1990707228 - } - } - }, - "550945230": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 550945230, - "properties": { - "m_eloRecordID": { - "type": "gid", - "id": 0, - "offset": 72, - "flags": 16777279, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 832082468 - }, - "m_leagueID": { - "type": "unsigned int", - "id": 1, - "offset": 80, - "flags": 33554495, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 692361645 - }, - "m_seasonID": { - "type": "unsigned int", - "id": 2, - "offset": 84, - "flags": 33554495, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 535260643 - }, - "m_startTime": { - "type": "unsigned int", - "id": 3, - "offset": 88, - "flags": 33554495, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1598371274 - }, - "m_ended": { - "type": "bool", - "id": 4, - "offset": 92, - "flags": 33554495, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 795768915 - }, - "m_elo": { - "type": "int", - "id": 5, - "offset": 96, - "flags": 33554495, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 267033754 - }, - "m_rankIndex": { - "type": "int", - "id": 6, - "offset": 100, - "flags": 33554495, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 716259486 - }, - "m_wins": { - "type": "int", - "id": 7, - "offset": 104, - "flags": 33554495, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 219992347 - }, - "m_losses": { - "type": "int", - "id": 8, - "offset": 108, - "flags": 33554495, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 681549075 - }, - "m_draws": { - "type": "int", - "id": 9, - "offset": 112, - "flags": 33554495, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 792242907 - } - } - }, - "546078758": { - "name": "class RegistrarOption", - "bases": [ - "ServiceOptionBase", - "PropertyClass" - ], - "hash": 546078758, - "properties": { - "m_serviceName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2206028813 - }, - "m_iconKey": { - "type": "std::string", - "id": 1, - "offset": 168, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2457138637 - }, - "m_displayKey": { - "type": "std::string", - "id": 2, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3023276954 - }, - "m_serviceIndex": { - "type": "unsigned int", - "id": 3, - "offset": 204, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2103126710 - }, - "m_forceInteract": { - "type": "bool", - "id": 4, - "offset": 200, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1705789564 - } - } - }, - "2111861838": { - "name": "class SharedPointer", - "bases": [ - "CinematicStageTemplate", - "PropertyClass" - ], - "hash": 2111861838, - "properties": { - "m_name": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1717359772 - }, - "m_duration": { - "type": "float", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 920323453 - }, - "m_actions": { - "type": "class SharedPointer", - "id": 2, - "offset": 112, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1380578687 - }, - "m_stageRelationships": { - "type": "class SharedPointer", - "id": 3, - "offset": 128, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 499983354 - }, - "m_cameras": { - "type": "std::string", - "id": 4, - "offset": 152, - "flags": 131079, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 3217341687 - }, - "m_altcameras": { - "type": "std::string", - "id": 5, - "offset": 176, - "flags": 131079, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1882980152 - }, - "m_actAnim": { - "type": "std::string", - "id": 6, - "offset": 200, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2867163800 - }, - "m_camRel": { - "type": "enum CameraCutCinematicAction::kCameraRelative", - "id": 7, - "offset": 232, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 919962138, - "enum_options": { - "kSigil": 1, - "kTarget": 2, - "kSource": 3, - "kActor": 4, - "__DEFAULT": "kTarget" - } - }, - "m_sound": { - "type": "std::string", - "id": 8, - "offset": 240, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2307644996 - }, - "m_interpDuration": { - "type": "float", - "id": 9, - "offset": 272, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237711951, - "enum_options": { - "__DEFAULT": "1.0" - } - }, - "m_announcesSpell": { - "type": "bool", - "id": 10, - "offset": 276, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 652261533 - } - } - }, - "543800998": { - "name": "class ClientBurnHangingEffectCinematicAction*", - "bases": [ - "BurnHangingEffectCinematicAction", - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 543800998, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - }, - "m_cloaked": { - "type": "bool", - "id": 2, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 7349510 - }, - "m_detonate": { - "type": "bool", - "id": 3, - "offset": 153, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1738601959 - }, - "m_burnSound": { - "type": "std::string", - "id": 4, - "offset": 120, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1827806971 - } - } - }, - "141432136": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 141432136, - "properties": { - "m_badgeFilterDescriptionList": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 3252782039 - } - } - }, - "539899167": { - "name": "struct std::pair", - "bases": [], - "hash": 539899167, - "properties": {} - }, - "538644871": { - "name": "class ClientCombatParticipant", - "bases": [ - "CombatParticipant", - "PropertyClass" - ], - "hash": 538644871, - "properties": { - "m_ownerID.m_full": { - "type": "unsigned __int64", - "id": 0, - "offset": 112, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2149616286 - }, - "m_templateID.m_full": { - "type": "unsigned __int64", - "id": 1, - "offset": 120, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 633907631 - }, - "m_isPlayer": { - "type": "bool", - "id": 2, - "offset": 128, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1717744636 - }, - "m_zoneID.m_full": { - "type": "unsigned __int64", - "id": 3, - "offset": 136, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2105998895 - }, - "m_teamID": { - "type": "int", - "id": 4, - "offset": 144, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 982118638 - }, - "m_primaryMagicSchoolID": { - "type": "int", - "id": 5, - "offset": 148, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1864910356 - }, - "m_pipCount": { - "type": "class SharedPointer", - "id": 6, - "offset": 152, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1862540484 - }, - "m_pipRoundRates": { - "type": "class SharedPointer", - "id": 7, - "offset": 168, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1859513241 - }, - "m_PipsSuspended": { - "type": "bool", - "id": 8, - "offset": 184, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 98171898 - }, - "m_stunned": { - "type": "int", - "id": 9, - "offset": 188, - "flags": 25, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1661672123 - }, - "m_mindcontrolled": { - "type": "int", - "id": 10, - "offset": 216, - "flags": 25, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2059794744 - }, - "m_originalTeam": { - "type": "int", - "id": 11, - "offset": 224, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1121355446 - }, - "m_nAuraTurnLength": { - "type": "int", - "id": 12, - "offset": 236, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1719821564 - }, - "m_clue": { - "type": "int", - "id": 13, - "offset": 228, - "flags": 25, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 219277091 - }, - "m_roundsDead": { - "type": "int", - "id": 14, - "offset": 232, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2071727747 - }, - "m_nPolymorphTurnLength": { - "type": "int", - "id": 15, - "offset": 240, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1619550301 - }, - "m_playerHealth": { - "type": "int", - "id": 16, - "offset": 244, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 740444925 - }, - "m_maxPlayerHealth": { - "type": "int", - "id": 17, - "offset": 248, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 96027363 - }, - "m_HideCurrentHP": { - "type": "bool", - "id": 18, - "offset": 252, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 31360456 - }, - "m_maxHandSize": { - "type": "int", - "id": 19, - "offset": 256, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1925169782 - }, - "m_pHand": { - "type": "class Hand*", - "id": 20, - "offset": 264, - "flags": 1, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 892448765 - }, - "m_pSavedHand": { - "type": "class Hand*", - "id": 21, - "offset": 272, - "flags": 1, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 787912720 - }, - "m_pPlayDeck": { - "type": "class PlayDeck*", - "id": 22, - "offset": 280, - "flags": 1, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2053198667 - }, - "m_pSavedPlayDeck": { - "type": "class PlayDeck*", - "id": 23, - "offset": 288, - "flags": 1, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 498207966 - }, - "m_pSavedGameStats": { - "type": "class SharedPointer", - "id": 24, - "offset": 296, - "flags": 1, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1599533644 - }, - "m_savedPrimaryMagicSchoolID": { - "type": "int", - "id": 25, - "offset": 312, - "flags": 1, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 983035431 - }, - "m_pGameStats": { - "type": "class SharedPointer", - "id": 26, - "offset": 320, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3522102873 - }, - "m_color": { - "type": "class Color", - "id": 27, - "offset": 336, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1791663549 - }, - "m_rotation": { - "type": "float", - "id": 28, - "offset": 340, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1497468551 - }, - "m_radius": { - "type": "float", - "id": 29, - "offset": 344, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 989410271 - }, - "m_subcircle": { - "type": "int", - "id": 30, - "offset": 348, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1748202326 - }, - "m_pvp": { - "type": "bool", - "id": 31, - "offset": 352, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 269527241 - }, - "m_raid": { - "type": "bool", - "id": 32, - "offset": 353, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 222284947 - }, - "m_dynamicSymbol": { - "type": "enum DynamicSigilSymbol", - "id": 33, - "offset": 356, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 701705655 - }, - "m_accuracyBonus": { - "type": "float", - "id": 34, - "offset": 396, - "flags": 1, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1440672233 - }, - "m_minionSubCircle": { - "type": "int", - "id": 35, - "offset": 400, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1896926112 - }, - "m_isMinion": { - "type": "bool", - "id": 36, - "offset": 404, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1597230777 - }, - "m_isAccompanyNPC": { - "type": "bool", - "id": 37, - "offset": 412, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1067399659 - }, - "m_hangingEffects": { - "type": "class SpellEffect", - "id": 38, - "offset": 416, - "flags": 27, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2685029606 - }, - "m_publicHangingEffects": { - "type": "class SpellEffect", - "id": 39, - "offset": 432, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1243141029 - }, - "m_auraEffects": { - "type": "class SpellEffect", - "id": 40, - "offset": 448, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2783652947 - }, - "m_shadowEffects": { - "type": "class SharedPointer", - "id": 41, - "offset": 464, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1712698903 - }, - "m_shadowSpellEffects": { - "type": "class SpellEffect", - "id": 42, - "offset": 480, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1808623792 - }, - "m_deathActivatedEffects": { - "type": "class SharedPointer", - "id": 43, - "offset": 512, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1347166054 - }, - "m_delayCastEffects": { - "type": "class DelaySpellEffect", - "id": 44, - "offset": 528, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2596123949 - }, - "m_polymorphSpellTemplateID": { - "type": "unsigned int", - "id": 45, - "offset": 576, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1320079328 - }, - "m_side": { - "type": "std::string", - "id": 46, - "offset": 600, - "flags": 1, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1717547872 - }, - "m_shadowSpellsDisabled": { - "type": "bool", - "id": 47, - "offset": 672, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2077139652 - }, - "m_ignoreSpellsPvPOnlyFlag": { - "type": "bool", - "id": 48, - "offset": 673, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1714276188 - }, - "m_ignoreSpellsPvEOnlyFlag": { - "type": "bool", - "id": 49, - "offset": 674, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1691675729 - }, - "m_bossMob": { - "type": "bool", - "id": 50, - "offset": 675, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 986129576 - }, - "m_hidePVPEnemyChat": { - "type": "bool", - "id": 51, - "offset": 676, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1284658049 - }, - "m_combatTriggerIDs": { - "type": "int", - "id": 52, - "offset": 696, - "flags": 1, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1654684388 - }, - "m_backlash": { - "type": "int", - "id": 53, - "offset": 724, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 857558899 - }, - "m_pastBacklash": { - "type": "int", - "id": 54, - "offset": 728, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1229328939 - }, - "m_shadowCreatureLevel": { - "type": "int", - "id": 55, - "offset": 732, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1119572179 - }, - "m_pastShadowCreatureLevel": { - "type": "int", - "id": 56, - "offset": 736, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1267855499 - }, - "m_shadowCreatureLevelCount": { - "type": "int", - "id": 57, - "offset": 744, - "flags": 31, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 975615804 - }, - "m_interceptEffect": { - "type": "class SharedPointer", - "id": 58, - "offset": 768, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 339294150 - }, - "m_roundsSinceShadowPip": { - "type": "int", - "id": 59, - "offset": 800, - "flags": 1, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 682042934 - }, - "m_polymorphEffect": { - "type": "class SharedPointer", - "id": 60, - "offset": 824, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2193528962 - }, - "m_confused": { - "type": "int", - "id": 61, - "offset": 196, - "flags": 25, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1851913585 - }, - "m_confusionTrigger": { - "type": "int", - "id": 62, - "offset": 200, - "flags": 25, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 554584130 - }, - "m_confusionDisplay": { - "type": "bool", - "id": 63, - "offset": 204, - "flags": 25, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1028383709 - }, - "m_confusedTarget": { - "type": "bool", - "id": 64, - "offset": 205, - "flags": 25, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1193542673 - }, - "m_untargetable": { - "type": "bool", - "id": 65, - "offset": 206, - "flags": 25, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 36479793 - }, - "m_untargetableRounds": { - "type": "int", - "id": 66, - "offset": 208, - "flags": 25, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 80618355 - }, - "m_restrictedTarget": { - "type": "bool", - "id": 67, - "offset": 212, - "flags": 25, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 394144563 - }, - "m_exitCombat": { - "type": "bool", - "id": 68, - "offset": 213, - "flags": 25, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1293141763 - }, - "m_stunnedDisplay": { - "type": "bool", - "id": 69, - "offset": 192, - "flags": 25, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 892304554 - }, - "m_mindcontrolledDisplay": { - "type": "bool", - "id": 70, - "offset": 220, - "flags": 25, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 174689415 - }, - "m_autoPass": { - "type": "bool", - "id": 71, - "offset": 720, - "flags": 25, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1919864803 - }, - "m_vanish": { - "type": "bool", - "id": 72, - "offset": 721, - "flags": 25, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1058591164 - }, - "m_myTeamTurn": { - "type": "bool", - "id": 73, - "offset": 722, - "flags": 25, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1134422697 - }, - "m_needToCleanAuras": { - "type": "bool", - "id": 74, - "offset": 888, - "flags": 25, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1159570481 - }, - "m_planningPhasePipAquiredType": { - "type": "enum CombatParticipant::PipAquiredByEnum", - "id": 75, - "offset": 816, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1435933659, - "enum_options": { - "CombatParticipant::AQUIRED_PIP_UNKNOWN": 0, - "CombatParticipant::AQUIRED_PIP_NORMAL": 1, - "CombatParticipant::AQUIRED_PIP_POWER": 2, - "CombatParticipant::AQUIRED_NORMAL_TO_POWER_PIP_CONVERSION": 4, - "CombatParticipant::IMPEDE_PIPS": 5 - } - }, - "m_cheatSettings": { - "type": "class SharedPointer", - "id": 76, - "offset": 96, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2742666223 - }, - "m_isMonster": { - "type": "unsigned int", - "id": 77, - "offset": 408, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1530878065 - }, - "m_weaponNifSoundList": { - "type": "class SharedPointer", - "id": 78, - "offset": 80, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2575326929 - }, - "m_petCombatTrigger": { - "type": "int", - "id": 79, - "offset": 712, - "flags": 1, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 822894541 - }, - "m_petCombatTriggerTarget": { - "type": "int", - "id": 80, - "offset": 716, - "flags": 1, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 675145556 - }, - "m_shadowPipRateThreshold": { - "type": "float", - "id": 81, - "offset": 840, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1215959391 - }, - "m_baseSpellDamage": { - "type": "int", - "id": 82, - "offset": 844, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 871613364 - }, - "m_statDamage": { - "type": "float", - "id": 83, - "offset": 848, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1480169970 - }, - "m_statResist": { - "type": "float", - "id": 84, - "offset": 852, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2033033901 - }, - "m_statPierce": { - "type": "float", - "id": 85, - "offset": 856, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1959012939 - }, - "m_mobLevel": { - "type": "int", - "id": 86, - "offset": 860, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 186067024 - }, - "m_bPlayerTimeUpdated": { - "type": "bool", - "id": 87, - "offset": 864, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 877395800 - }, - "m_bPlayerTimeEliminated": { - "type": "bool", - "id": 88, - "offset": 865, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1842006605 - }, - "m_bPlayerTimeWarning": { - "type": "bool", - "id": 89, - "offset": 866, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 742875591 - }, - "m_deckFullness": { - "type": "float", - "id": 90, - "offset": 868, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 156080730 - }, - "m_archmasteryPoints": { - "type": "float", - "id": 91, - "offset": 872, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 261464375 - }, - "m_maxArchmasteryPoints": { - "type": "float", - "id": 92, - "offset": 876, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 430012637 - }, - "m_archmasterySchool": { - "type": "unsigned int", - "id": 93, - "offset": 880, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 485805784 - }, - "m_archmasteryFlags": { - "type": "unsigned int", - "id": 94, - "offset": 884, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1571282557 - } - } - }, - "2115308294": { - "name": "class SharedPointer", - "bases": [ - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 2115308294, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - }, - "m_bHide": { - "type": "bool", - "id": 2, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 790850959 - }, - "m_evenWhileDead": { - "type": "bool", - "id": 3, - "offset": 121, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2100875368 - }, - "m_bMultiRound": { - "type": "bool", - "id": 4, - "offset": 122, - "flags": 263, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1821746440 - } - } - }, - "538232979": { - "name": "class WindowStyle", - "bases": [ - "PropertyClass" - ], - "hash": 538232979, - "properties": { - "m_pBackMaterial": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1628562023 - }, - "m_pFont": { - "type": "class SharedPointer", - "id": 1, - "offset": 88, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1067686307 - }, - "m_pLargeFont": { - "type": "class SharedPointer", - "id": 2, - "offset": 104, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1523900782 - }, - "m_pSmallFont": { - "type": "class SharedPointer", - "id": 3, - "offset": 120, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2363252956 - }, - "m_Color": { - "type": "class Color", - "id": 4, - "offset": 136, - "flags": 262279, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1753714077 - }, - "m_HighColor": { - "type": "class Color", - "id": 5, - "offset": 140, - "flags": 262279, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2310527421 - }, - "m_SelectColor": { - "type": "class Color", - "id": 6, - "offset": 144, - "flags": 262279, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2792529213 - }, - "m_BorderColor": { - "type": "class Color", - "id": 7, - "offset": 148, - "flags": 262279, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1470576795 - }, - "m_BackColor": { - "type": "class Color", - "id": 8, - "offset": 152, - "flags": 262279, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1070928782 - }, - "m_ScrollBarColor": { - "type": "class Color", - "id": 9, - "offset": 156, - "flags": 262279, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1180747361 - }, - "m_ScrollTabColor": { - "type": "class Color", - "id": 10, - "offset": 160, - "flags": 262279, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1034892323 - }, - "m_nBorderSize": { - "type": "int", - "id": 11, - "offset": 164, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2016376897 - }, - "m_nScrollSize": { - "type": "int", - "id": 12, - "offset": 168, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 632681746 - }, - "m_sHoverSound": { - "type": "std::string", - "id": 13, - "offset": 176, - "flags": 131207, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2662773595 - }, - "m_sSelectSound": { - "type": "std::string", - "id": 14, - "offset": 208, - "flags": 131207, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2596786807 - } - } - }, - "2112773830": { - "name": "class ReqClassProjectActive*", - "bases": [ - "Requirement", - "PropertyClass" - ], - "hash": 2112773830, - "properties": { - "m_applyNOT": { - "type": "bool", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1746328074, - "enum_options": { - "__DEFAULT": 0 - } - }, - "m_operator": { - "type": "enum Requirement::Operator", - "id": 1, - "offset": 76, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2672792317, - "enum_options": { - "ROP_AND": 0, - "ROP_OR": 1, - "__DEFAULT": "ROP_AND" - } - }, - "m_classProjectName": { - "type": "std::string", - "id": 2, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1714146665 - } - } - }, - "142544320": { - "name": "class SharedPointer", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 142544320, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - } - } - }, - "2112773062": { - "name": "class ReqClassProjectActive", - "bases": [ - "Requirement", - "PropertyClass" - ], - "hash": 2112773062, - "properties": { - "m_applyNOT": { - "type": "bool", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1746328074, - "enum_options": { - "__DEFAULT": 0 - } - }, - "m_operator": { - "type": "enum Requirement::Operator", - "id": 1, - "offset": 76, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2672792317, - "enum_options": { - "ROP_AND": 0, - "ROP_OR": 1, - "__DEFAULT": "ROP_AND" - } - }, - "m_classProjectName": { - "type": "std::string", - "id": 2, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1714146665 - } - } - }, - "2112505972": { - "name": "class ControlDraw::GesturePoint*", - "bases": [ - "PropertyClass" - ], - "hash": 2112505972, - "properties": { - "m_Point": { - "type": "class Point", - "id": 0, - "offset": 72, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2475294668 - }, - "m_Color": { - "type": "class Color", - "id": 1, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1753714077 - } - } - }, - "142639962": { - "name": "class SharedPointer", - "bases": [ - "BugReport", - "PropertyClass" - ], - "hash": 142639962, - "properties": { - "m_clientVersion": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2207163808 - }, - "m_type": { - "type": "enum BugType", - "id": 1, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 889643611, - "enum_options": { - "BT_CRASH": 1, - "BT_GAME_STOPPER": 2, - "BT_INTERFERENCE": 3, - "BT_ANNOYANCE": 4, - "BT_FEATURE_REQUEST": 5, - "BT_COMMENT": 6 - } - }, - "m_canReproduce": { - "type": "bool", - "id": 2, - "offset": 108, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 859813390 - }, - "m_description": { - "type": "std::wstring", - "id": 3, - "offset": 112, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1445360156 - }, - "m_systemType": { - "type": "enum WizBugReport::SystemType", - "id": 4, - "offset": 144, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1170942560, - "enum_options": { - "ST_OTHER": 0, - "ST_QUEST": 1, - "ST_SHOP": 2, - "ST_MONSTER": 3, - "ST_SPELL": 4, - "ST_ITEM": 5, - "ST_INTERFACE": 6 - } - }, - "m_ideaType": { - "type": "enum WizBugReport::IdeaType", - "id": 5, - "offset": 148, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1042875837, - "enum_options": { - "IT_ADD": 0, - "IT_CHANGE": 1, - "IT_NONE": 2 - } - }, - "m_userId": { - "type": "gid", - "id": 6, - "offset": 184, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1037989732 - }, - "m_gender": { - "type": "enum WizBugReport::UserGender", - "id": 7, - "offset": 196, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 625694774, - "enum_options": { - "UG_Unknown": 0, - "UG_Male": 1, - "UG_Female": 2 - } - }, - "m_age": { - "type": "unsigned char", - "id": 8, - "offset": 192, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 904628669 - }, - "m_userName": { - "type": "std::string", - "id": 9, - "offset": 152, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2213937019 - }, - "m_releaseUpdate": { - "type": "std::string", - "id": 10, - "offset": 208, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1780854143 - }, - "m_jiraIssue": { - "type": "std::string", - "id": 11, - "offset": 240, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1589236010 - }, - "m_osString": { - "type": "std::string", - "id": 12, - "offset": 272, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3500554164 - } - } - }, - "539005771": { - "name": "class TeamHelpSigilMonthlyGauntletInfo", - "bases": [ - "PropertyClass" - ], - "hash": 539005771, - "properties": { - "m_monthlyGauntletClassProjectID": { - "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2317452086 - }, - "m_monthlyGauntletCanTeamUp": { - "type": "int", - "id": 1, - "offset": 76, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 476490151 - } - } - }, - "538956496": { - "name": "class GuildIslandItemBehaviorTemplate*", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 538956496, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - }, - "m_islandTemplateID": { - "type": "unsigned int", - "id": 1, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1751952753 - } - } - }, - "144742521": { - "name": "class BrightnessControlWindow", - "bases": [ - "Window", - "PropertyClass" - ], - "hash": 144742521, - "properties": { - "m_sName": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306437263 - }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621225959 - }, - "m_Style": { - "type": "unsigned int", - "id": 2, - "offset": 152, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "SCALE_CHILDREN": 2, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "FOCUS_LOCKED": 64, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152 - } - }, - "m_Flags": { - "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } - }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3105139380 - }, - "m_fTargetAlpha": { - "type": "float", - "id": 5, - "offset": 212, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1809129834 - }, - "m_fDisabledAlpha": { - "type": "float", - "id": 6, - "offset": 216, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1389987675 - }, - "m_fAlpha": { - "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 482130755 - }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3623628394 - }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2102211316 - }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1846695875 - }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3389835433 - }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2547159940 - }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2587533771 - }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3091503757 - } - } - }, - "2114431358": { - "name": "class PvP5thAgeKioskBehavior*", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 2114431358, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - } - } - }, - "144476178": { - "name": "class HatchmakingPetGIDList", - "bases": [ - "PropertyClass" - ], - "hash": 144476178, - "properties": { - "m_skip": { - "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 431253060 - }, - "m_petTemplateID": { - "type": "unsigned int", - "id": 1, - "offset": 76, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 817215071 - }, - "m_hatchmakingPetGIDList": { - "type": "gid", - "id": 2, - "offset": 80, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 109341840 - }, - "m_hatchmakingPlayerGIDList": { - "type": "gid", - "id": 3, - "offset": 96, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1721119220 - } - } - }, - "539839845": { - "name": "class HousingLayoutObject", - "bases": [ - "PropertyClass" - ], - "hash": 539839845, - "properties": { - "m_templateID": { - "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1286746870 - }, - "m_positionX": { - "type": "float", - "id": 1, - "offset": 76, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 837995844 - }, - "m_positionY": { - "type": "float", - "id": 2, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 837995845 - }, - "m_positionZ": { - "type": "float", - "id": 3, - "offset": 84, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 837995846 - }, - "m_yaw": { - "type": "float", - "id": 4, - "offset": 88, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 357256328 - } - } - }, - "2114209312": { - "name": "class GardeningBehavior*", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 2114209312, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_gardeningData": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2329363555 - } - } - }, - "142706082": { - "name": "class ZoneTokenTimeTrigger*", - "bases": [ - "PropertyClass" - ], - "hash": 142706082, - "properties": { - "m_triggerAt": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2502995716 - }, - "m_onTimeLeft": { - "type": "class SharedPointer", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1587597651 - } - } - }, - "2114390398": { - "name": "class PvP5thAgeKioskBehavior", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 2114390398, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - } - } - }, - "541374277": { - "name": "class PolymorphRatingInfo*", - "bases": [ - "PropertyClass" - ], - "hash": 541374277, - "properties": { - "m_maxBattleCards": { - "type": "int", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1906062665 - } - } - }, - "144477458": { - "name": "class HatchmakingPetGIDList*", - "bases": [ - "PropertyClass" - ], - "hash": 144477458, - "properties": { - "m_skip": { - "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 431253060 - }, - "m_petTemplateID": { - "type": "unsigned int", - "id": 1, - "offset": 76, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 817215071 - }, - "m_hatchmakingPetGIDList": { - "type": "gid", - "id": 2, - "offset": 80, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 109341840 - }, - "m_hatchmakingPlayerGIDList": { - "type": "gid", - "id": 3, - "offset": 96, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1721119220 - } - } - }, - "540980452": { - "name": "class PetAnimateActorCinematicAction*", - "bases": [ - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 540980452, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - }, - "m_animation": { - "type": "std::string", - "id": 2, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3431428731 - } - } - }, - "540474233": { - "name": "class SharedPointer", - "bases": [ - "CinematicStageTemplate", - "PropertyClass" - ], - "hash": 540474233, - "properties": { - "m_name": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1717359772 - }, - "m_duration": { - "type": "float", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 920323453 - }, - "m_actions": { - "type": "class SharedPointer", - "id": 2, - "offset": 112, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1380578687 - }, - "m_stageRelationships": { - "type": "class SharedPointer", - "id": 3, - "offset": 128, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 499983354 - }, - "m_sound": { - "type": "std::string", - "id": 4, - "offset": 160, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2307644996 - }, - "m_effect": { - "type": "std::string", - "id": 5, - "offset": 192, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1894145160 - }, - "m_spellText": { - "type": "std::string", - "id": 6, - "offset": 224, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2688705600 - }, - "m_bSwitchCameraToWideLong": { - "type": "bool", - "id": 7, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2136912684, - "enum_options": { - "__DEFAULT": 1 - } - } - } - }, - "2115250194": { - "name": "class SharedPointer", - "bases": [ - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 2115250194, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - }, - "m_destinationActor": { - "type": "std::string", - "id": 2, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1510240374 - }, - "m_interpolationDuration": { - "type": "float", - "id": 3, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1458058437 - }, - "m_interpolateRotation": { - "type": "bool", - "id": 4, - "offset": 156, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2140337898 - }, - "m_kDestination": { - "type": "enum MoveActorCinematicAction::kMoveActorDestination", - "id": 5, - "offset": 160, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2027574244, - "enum_options": { - "kCenter": 0, - "kHome": 3, - "kActor": 1, - "kActorHangingEffect": 2 - } - }, - "m_destinationZOffset": { - "type": "float", - "id": 6, - "offset": 164, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2188240922 - } - } - }, - "2114513256": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 2114513256, - "properties": { - "m_seasonName": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1895926181 - }, - "m_seasonTitle": { - "type": "std::string", - "id": 1, - "offset": 112, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1758854694 - }, - "m_startMonth": { - "type": "int", - "id": 2, - "offset": 144, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 661899790 - }, - "m_startDay": { - "type": "int", - "id": 3, - "offset": 148, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 367473766 - }, - "m_startHour": { - "type": "int", - "id": 4, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1386544390 - }, - "m_startMinute": { - "type": "int", - "id": 5, - "offset": 156, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 357912026 - }, - "m_endMonth": { - "type": "int", - "id": 6, - "offset": 160, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1624246775 - }, - "m_endDay": { - "type": "int", - "id": 7, - "offset": 164, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 405825039 - }, - "m_endHour": { - "type": "int", - "id": 8, - "offset": 168, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 504652751 - }, - "m_endMinute": { - "type": "int", - "id": 9, - "offset": 172, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2050591459 - } - } - }, - "145816221": { - "name": "class CylinderGeomParams*", - "bases": [ - "GeomParams", - "PropertyClass" - ], - "hash": 145816221, - "properties": { - "m_eType": { - "type": "enum ProxyType", - "id": 0, - "offset": 72, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1656534066, - "enum_options": { - "ProxyTypeBox": 0, - "ProxyTypeRay": 1, - "ProxyTypeSphere": 2, - "ProxyTypeCylinder": 3, - "ProxyTypeTube": 4, - "ProxyTypePlane": 5, - "ProxyTypeMesh": 6, - "ProxyTypeInvalid": 7 - } - }, - "m_fRadius": { - "type": "float", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 787972805 - }, - "m_fLength": { - "type": "float", - "id": 2, - "offset": 84, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 558261279 - } - } - }, - "144792033": { - "name": "class SharedPointer", - "bases": [ - "Window", - "PropertyClass" - ], - "hash": 144792033, - "properties": { - "m_sName": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306437263 - }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621225959 - }, - "m_Style": { - "type": "unsigned int", - "id": 2, - "offset": 152, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152, - "STRETCH_VERTICALLY": 16777216 - } - }, - "m_Flags": { - "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } - }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3105139380 - }, - "m_fTargetAlpha": { - "type": "float", - "id": 5, - "offset": 212, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1809129834 - }, - "m_fDisabledAlpha": { - "type": "float", - "id": 6, - "offset": 216, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1389987675 - }, - "m_fAlpha": { - "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 482130755 - }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3623628394 - }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2102211316 - }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1846695875 - }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3389835433 - }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2547159940 - }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2587533771 - }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3091503757 - }, - "m_pTopLeftMaterial": { - "type": "class SharedPointer", - "id": 16, - "offset": 584, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3248096916 - }, - "m_pCenterMaterial": { - "type": "class SharedPointer", - "id": 17, - "offset": 600, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1519560055 - }, - "m_pBottomRightMaterial": { - "type": "class SharedPointer", - "id": 18, - "offset": 616, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2932444745 - }, - "m_MaximumSize": { - "type": "class Size", - "id": 19, - "offset": 632, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1781954165 - }, - "m_MinimumSize": { - "type": "class Size", - "id": 20, - "offset": 640, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2108593523 - } - } - }, - "543136886": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 543136886, - "properties": { - "m_rules": { - "type": "class JewelSocketWrenchElements", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2323021272 - } - } - }, - "543040562": { - "name": "class SharedPointer", - "bases": [ - "GoalTemplate", - "CoreTemplate", - "PropertyClass" - ], - "hash": 543040562, - "properties": { - "m_behaviors": { - "type": "class BehaviorTemplate*", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1197808594 - }, - "m_goalName": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1521627807 - }, - "m_goalNameID": { - "type": "unsigned int", - "id": 2, - "offset": 496, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 403158846 - }, - "m_goalTitle": { - "type": "std::string", - "id": 3, - "offset": 136, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2291910240 - }, - "m_goalUnderway": { - "type": "std::string", - "id": 4, - "offset": 168, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3153144269 - }, - "m_hyperlink": { - "type": "std::string", - "id": 5, - "offset": 200, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2887798993 - }, - "m_completeText": { - "type": "std::string", - "id": 6, - "offset": 232, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2767458393 - }, - "m_completeResults": { - "type": "class ResultList*", - "id": 7, - "offset": 440, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1964258099 - }, - "m_goalRequirements": { - "type": "class RequirementList*", - "id": 8, - "offset": 448, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2979967145 - }, - "m_tallyCounter": { - "type": "class TallyCounterTemplate*", - "id": 9, - "offset": 456, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1884546193 - }, - "m_locationName": { - "type": "std::string", - "id": 10, - "offset": 272, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1824218389 - }, - "m_displayImage1": { - "type": "std::string", - "id": 11, - "offset": 304, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1959572133 - }, - "m_displayImage2": { - "type": "std::string", - "id": 12, - "offset": 336, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1959572134 - }, - "m_clientTags": { - "type": "std::string", - "id": 13, - "offset": 368, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2319030025 - }, - "m_genericEvents": { - "type": "std::string", - "id": 14, - "offset": 384, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 3466670829 - }, - "m_autoQualify": { - "type": "bool", - "id": 15, - "offset": 400, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1878907431 - }, - "m_autoComplete": { - "type": "bool", - "id": 16, - "offset": 401, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1302545445 - }, - "m_destinationZone": { - "type": "std::string", - "id": 17, - "offset": 408, - "flags": 268435463, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2605356153, - "enum_options": { - "__BASECLASS": "ZoneData" - } - }, - "m_dialogList": { - "type": "class ActorDialogListBase*", - "id": 18, - "offset": 264, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1909154969 - }, - "m_goalType": { - "type": "enum GoalTemplate::GOAL_TYPE", - "id": 19, - "offset": 96, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1488021149, - "enum_options": { - "GOAL_TYPE_UNKNOWN": 0, - "GOAL_TYPE_BOUNTY": 1, - "GOAL_TYPE_BOUNTYCOLLECT": 2, - "GOAL_TYPE_SCAVENGE": 3, - "GOAL_TYPE_PERSONA": 4, - "GOAL_TYPE_WAYPOINT": 5, - "GOAL_TYPE_SCAVENGEFAKE": 6, - "GOAL_TYPE_ACHIEVERANK": 7, - "GOAL_TYPE_USAGE": 8, - "GOAL_TYPE_COMPLETEQUEST": 9, - "GOAL_TYPE_SOCIARANK": 10, - "GOAL_TYPE_SOCIACURRENCY": 11, - "GOAL_TYPE_SOCIAMINIGAME": 12, - "GOAL_TYPE_SOCIAGIVEITEM": 13, - "GOAL_TYPE_SOCIAGETITEM": 14, - "GOAL_TYPE_COLLECTAFTERBOUNTY": 15, - "GOAL_TYPE_ENCOUNTER_WAYPOINT_FOREACH": 16 - } - }, - "m_noQuestHelper": { - "type": "bool", - "id": 20, - "offset": 500, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 578010882, - "enum_options": { - "__DEFAULT": 0 - } - }, - "m_petOnlyQuest": { - "type": "bool", - "id": 21, - "offset": 501, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 679359344, - "enum_options": { - "__DEFAULT": 0 - } - }, - "m_activateResults": { - "type": "class ResultList*", - "id": 22, - "offset": 504, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3790153995 - }, - "m_hideGoalFloatyText": { - "type": "bool", - "id": 23, - "offset": 512, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1919383204, - "enum_options": { - "__DEFAULT": 0 - } - }, - "m_npcAdjectives": { - "type": "std::string", - "id": 24, - "offset": 520, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 3044559358 - }, - "m_bountyTotal": { - "type": "int", - "id": 25, - "offset": 536, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1943105087 - }, - "m_bountyType": { - "type": "enum BountyGoalTemplate::BOUNTY_TYPE", - "id": 26, - "offset": 540, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3703892338, - "enum_options": { - "BountyGoalTemplate::BT_MOB_KILL": 0, - "BountyGoalTemplate::BT_MOB_FLEE": 1 - } - } - } - }, - "2115680534": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 2115680534, - "properties": { - "m_npcList": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2709214274 - }, - "m_zoneType": { - "type": "enum NPCDataList::ZONE_TYPE", - "id": 1, - "offset": 88, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 975028587, - "enum_options": { - "CurrentZone": 0, - "OtherZons": 1, - "None": 2 - } - } - } - }, - "2115504344": { - "name": "class PeriodicSubscriptionsInfo*", - "bases": [ - "PropertyClass" - ], - "hash": 2115504344, - "properties": { - "m_subscriptions": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 3595491367 - } - } - }, - "173390278": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 173390278, - "properties": { - "m_madlibToken": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3058682373 - } - } - }, - "2115309374": { - "name": "class SharedPointer", - "bases": [ - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 2115309374, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - }, - "m_fadeDuration": { - "type": "float", - "id": 2, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1402536557 - }, - "m_alphaTarget": { - "type": "float", - "id": 3, - "offset": 124, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 197622500 - } - } - }, - "160866304": { - "name": "class ClientPetCameraActorCinematicAction*", - "bases": [ - "PetCameraActorCinematicAction", - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 160866304, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - } - } - }, - "543563977": { - "name": "class CombatAction*", - "bases": [ - "PropertyClass" - ], - "hash": 543563977, - "properties": { - "m_spellCaster": { - "type": "int", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1306412924 - }, - "m_spell": { - "type": "class SharedPointer", - "id": 1, - "offset": 96, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1160380498 - }, - "m_spellHits": { - "type": "char", - "id": 2, - "offset": 112, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1193115340 - }, - "m_effectChosen": { - "type": "unsigned int", - "id": 3, - "offset": 212, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 781967354 - }, - "m_interrupt": { - "type": "bool", - "id": 4, - "offset": 113, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1419105216 - }, - "m_sigilSpell": { - "type": "bool", - "id": 5, - "offset": 114, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1757632683 - }, - "m_showCast": { - "type": "bool", - "id": 6, - "offset": 115, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 456821215 - }, - "m_criticalHitRoll": { - "type": "unsigned char", - "id": 7, - "offset": 116, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2767200825 - }, - "m_stunResistRoll": { - "type": "unsigned char", - "id": 8, - "offset": 117, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2034125421 - }, - "m_blocksCalculated": { - "type": "bool", - "id": 9, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1203964291 - }, - "m_serializedBlocks": { - "type": "std::string", - "id": 10, - "offset": 160, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3529268709 - }, - "m_stringKeyMessage": { - "type": "std::string", - "id": 11, - "offset": 216, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2591311648 - }, - "m_soundFileName": { - "type": "std::string", - "id": 12, - "offset": 248, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3058120805 - }, - "m_durationModifier": { - "type": "float", - "id": 13, - "offset": 280, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 753259116 - }, - "m_serializedTargetsAffected": { - "type": "std::string", - "id": 14, - "offset": 288, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2626745971 - }, - "m_targetSubcircleList": { - "type": "int", - "id": 15, - "offset": 80, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 227779897 - }, - "m_pipConversionRoll": { - "type": "int", - "id": 16, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 791010242 - }, - "m_randomSpellEffectPerTargetRolls": { - "type": "int", - "id": 17, - "offset": 128, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 430465634 - }, - "m_handledRandomSpellPerTarget": { - "type": "bool", - "id": 18, - "offset": 124, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1741636882 - }, - "m_confusedTarget": { - "type": "bool", - "id": 19, - "offset": 208, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1193542673 - }, - "m_forceSpell": { - "type": "bool", - "id": 20, - "offset": 336, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 935804098 - }, - "m_afterDied": { - "type": "bool", - "id": 21, - "offset": 209, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1317680827 - }, - "m_delayed": { - "type": "bool", - "id": 22, - "offset": 337, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1021327211 - }, - "m_delayedEnchanted": { - "type": "bool", - "id": 23, - "offset": 338, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2083048693 - }, - "m_petCast": { - "type": "bool", - "id": 24, - "offset": 339, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1494940903 - }, - "m_petCasted": { - "type": "bool", - "id": 25, - "offset": 340, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1697247120 - }, - "m_petCastTarget": { - "type": "int", - "id": 26, - "offset": 344, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 317564181 - }, - "m_CritHitList": { - "type": "class TargetCritHit", - "id": 27, - "offset": 368, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1448398021 - }, - "m_xPipCost": { - "type": "unsigned char", - "id": 28, - "offset": 348, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2557198122 - } - } - }, - "152771696": { - "name": "class SharedPointer", - "bases": [ - "HideShadowCreatureCinematicAction", - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 152771696, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - } - } - }, - "147992077": { - "name": "class ChangePermissionsList*", - "bases": [ - "PropertyClass" - ], - "hash": 147992077, - "properties": { - "m_permissionFlag": { - "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 558326096 - }, - "m_addList": { - "type": "gid", - "id": 1, - "offset": 80, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1389998621 - }, - "m_removeList": { - "type": "gid", - "id": 2, - "offset": 96, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 42923202 - } - } - }, - "2115526608": { - "name": "class MapData*", - "bases": [ - "PropertyClass" - ], - "hash": 2115526608, - "properties": { - "m_mapStringKey": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3476195193 - }, - "m_mapImageFile": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2861333660 - }, - "m_playerGlyphFile": { - "type": "std::string", - "id": 2, - "offset": 136, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3606975340 - }, - "m_mapIconsFile": { - "type": "std::string", - "id": 3, - "offset": 168, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3069899221 - }, - "m_namePlateFile": { - "type": "std::string", - "id": 4, - "offset": 200, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3484945554 - }, - "m_topLeft": { - "type": "class Point", - "id": 5, - "offset": 232, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2378435386 - }, - "m_topRight": { - "type": "class Point", - "id": 6, - "offset": 240, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2345696461 - }, - "m_bottomRight": { - "type": "class Point", - "id": 7, - "offset": 248, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3584882159 - }, - "m_bottomLeft": { - "type": "class Point", - "id": 8, - "offset": 256, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2676287516 - } - } - }, - "147169475": { - "name": "class RecipeLootInfo*", - "bases": [ - "LootInfo", - "LootInfoBase", - "PropertyClass" - ], - "hash": 147169475, - "properties": { - "m_lootType": { - "type": "enum LootInfo::LOOT_TYPE", - "id": 0, - "offset": 72, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1591891442, - "enum_options": { - "LOOT_TYPE_NONE": 0, - "LOOT_TYPE_GOLD": 1, - "LOOT_TYPE_MANA": 2, - "LOOT_TYPE_ITEM": 3, - "LOOT_TYPE_TREASURE_CARD": 4, - "LOOT_TYPE_MAGIC_XP": 5, - "LOOT_TYPE_ADD_SPELL": 6, - "LOOT_TYPE_MAX_HEALTH": 7, - "LOOT_TYPE_MAX_GOLD": 8, - "LOOT_TYPE_MAX_MANA": 9, - "LOOT_TYPE_MAX_POTION": 10, - "LOOT_TYPE_TRAINING_POINTS": 11, - "LOOT_TYPE_RECIPE": 12, - "LOOT_TYPE_CRAFTING_SLOT": 13, - "LOOT_TYPE_REAGENT": 14, - "LOOT_TYPE_PETSNACK": 15, - "LOOT_TYPE_GARDENING_XP": 16, - "LOOT_TYPE_PET_XP": 17, - "LOOT_TYPE_TREASURE_TABLE": 18, - "LOOT_TYPE_ARENA_POINTS": 19, - "LOOT_TYPE_ARENA_BONUS_POINTS": 20, - "LOOT_TYPE_GROUP": 21, - "LOOT_TYPE_FISHING_XP": 22, - "LOOT_TYPE_EVENT_CURRENCY_1": 24, - "LOOT_TYPE_EVENT_CURRENCY_2": 25, - "LOOT_TYPE_PVP_CURRENCY": 26, - "LOOT_TYPE_PVP_CURRENCY_BONUS": 27, - "LOOT_TYPE_PVP_TOURNEY_CURRENCY": 28, - "LOOT_TYPE_PVP_TOURNEY_CURRENCY_BONUS": 29, - "LOOT_TYPE_FURNITURE_ESSENCE": 30 - } - }, - "m_recipeName": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 268435487, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3311832788, - "enum_options": { - "__BASECLASS": "RecipeTemplate" - } - } - } - }, - "544875989": { - "name": "class ControlDecalButton", - "bases": [ - "ControlButton", - "Window", - "PropertyClass" - ], - "hash": 544875989, - "properties": { - "m_sName": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306437263 - }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621225959 - }, - "m_Style": { - "type": "unsigned int", - "id": 2, - "offset": 152, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152, - "SHOW_HOTKEY": 16777216, - "EFFECT_SCALE": 67108864, - "LOCK_ICON_SIZE": 33554432, - "LEFT_TEXT": 536870912, - "NO_FIT_TEXT": 1073741824 - } - }, - "m_Flags": { - "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } - }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3105139380 - }, - "m_fTargetAlpha": { - "type": "float", - "id": 5, - "offset": 212, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1809129834 - }, - "m_fDisabledAlpha": { - "type": "float", - "id": 6, - "offset": 216, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1389987675 - }, - "m_fAlpha": { - "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 482130755 - }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3623628394 - }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2102211316 - }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1846695875 - }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3389835433 - }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2547159940 - }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2587533771 - }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3091503757 - }, - "m_bToggle": { - "type": "bool", - "id": 16, - "offset": 608, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2071810903 - }, - "m_bButtonDown": { - "type": "bool", - "id": 17, - "offset": 609, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 840041705 - }, - "m_sLabel": { - "type": "std::wstring", - "id": 18, - "offset": 616, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2207009163 - }, - "m_labelOffset": { - "type": "class Rect", - "id": 19, - "offset": 832, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1990646723 - }, - "m_pButton": { - "type": "class SharedPointer", - "id": 20, - "offset": 656, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1543855875 - }, - "m_HotKey": { - "type": "unsigned int", - "id": 21, - "offset": 672, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1631553409 - }, - "m_Color": { - "type": "class Color", - "id": 22, - "offset": 676, - "flags": 262279, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1753714077 - }, - "m_bCursorOver": { - "type": "bool", - "id": 23, - "offset": 689, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 283981103 - }, - "m_bAbortWhenCursorNotOver": { - "type": "bool", - "id": 24, - "offset": 706, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 325405258 - }, - "m_bHotKeyDown": { - "type": "bool", - "id": 25, - "offset": 680, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 616989185 - }, - "m_fTime": { - "type": "float", - "id": 26, - "offset": 684, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 883746156 - }, - "m_bGreyed": { - "type": "bool", - "id": 27, - "offset": 688, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1566556053 - }, - "m_fMaxScale": { - "type": "float", - "id": 28, - "offset": 692, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2070186635 - }, - "m_fScaleSpeed": { - "type": "float", - "id": 29, - "offset": 696, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1457135702 - }, - "m_bUseDropShadow": { - "type": "bool", - "id": 30, - "offset": 704, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 93063037 - }, - "m_bUseOutline": { - "type": "bool", - "id": 31, - "offset": 705, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 744292994 - }, - "m_pGreyedState": { - "type": "class SharedPointer", - "id": 32, - "offset": 768, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2703352263 - }, - "m_pNormalState": { - "type": "class SharedPointer", - "id": 33, - "offset": 752, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1887909808 - }, - "m_pHighlightedState": { - "type": "class SharedPointer", - "id": 34, - "offset": 784, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2200177608 - }, - "m_pSelectedState": { - "type": "class SharedPointer", - "id": 35, - "offset": 800, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2266776432 - }, - "m_pDepressedState": { - "type": "class SharedPointer", - "id": 36, - "offset": 816, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1878185798 - }, - "m_pDecal": { - "type": "class SharedPointer", - "id": 37, - "offset": 880, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2204742880 - }, - "m_DecalColor": { - "type": "class Color", - "id": 38, - "offset": 896, - "flags": 262279, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2053465718 - }, - "m_DecalOffset": { - "type": "class Rect", - "id": 39, - "offset": 900, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1942612892 - }, - "m_pGreyedDecalState": { - "type": "class SharedPointer", - "id": 40, - "offset": 936, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1430510752 - }, - "m_pNormalDecalState": { - "type": "class SharedPointer", - "id": 41, - "offset": 920, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1908952105 - }, - "m_pHighlightedDecalState": { - "type": "class SharedPointer", - "id": 42, - "offset": 952, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3280301889 - }, - "m_pSelectedDecalState": { - "type": "class SharedPointer", - "id": 43, - "offset": 968, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1444589545 - }, - "m_pDepressedDecalState": { - "type": "class SharedPointer", - "id": 44, - "offset": 984, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2385844607 - } - } - }, - "2115526596": { - "name": "class MapData", - "bases": [ - "PropertyClass" - ], - "hash": 2115526596, - "properties": { - "m_mapStringKey": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3476195193 - }, - "m_mapImageFile": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2861333660 - }, - "m_playerGlyphFile": { - "type": "std::string", - "id": 2, - "offset": 136, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3606975340 - }, - "m_mapIconsFile": { - "type": "std::string", - "id": 3, - "offset": 168, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3069899221 - }, - "m_namePlateFile": { - "type": "std::string", - "id": 4, - "offset": 200, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3484945554 - }, - "m_topLeft": { - "type": "class Point", - "id": 5, - "offset": 232, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2378435386 - }, - "m_topRight": { - "type": "class Point", - "id": 6, - "offset": 240, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2345696461 - }, - "m_bottomRight": { - "type": "class Point", - "id": 7, - "offset": 248, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3584882159 - }, - "m_bottomLeft": { - "type": "class Point", - "id": 8, - "offset": 256, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2676287516 - } - } - }, - "146680564": { - "name": "class std::list >", - "bases": [], - "hash": 146680564, - "properties": {} - }, - "544484310": { - "name": "class ResAddReagent*", - "bases": [ - "ResultSourceType", - "Result", - "PropertyClass" - ], - "hash": 544484310, - "properties": { - "m_sourceType": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2305508654 - }, - "m_zoneLevelMax": { - "type": "unsigned int", - "id": 1, - "offset": 76, - "flags": 263, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1028933895 - }, - "m_zoneLevelMin": { - "type": "unsigned int", - "id": 2, - "offset": 72, - "flags": 263, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1028934149 - }, - "m_templateID": { - "type": "gid", - "id": 3, - "offset": 112, - "flags": 33554439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1075328001 - }, - "m_quantity": { - "type": "int", - "id": 4, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 169215289 - } - } - }, - "146053241": { - "name": "class BrightnessControlWindow*", - "bases": [ - "Window", - "PropertyClass" - ], - "hash": 146053241, - "properties": { - "m_sName": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306437263 - }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621225959 - }, - "m_Style": { - "type": "unsigned int", - "id": 2, - "offset": 152, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "SCALE_CHILDREN": 2, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "FOCUS_LOCKED": 64, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152 - } - }, - "m_Flags": { - "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } - }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3105139380 - }, - "m_fTargetAlpha": { - "type": "float", - "id": 5, - "offset": 212, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1809129834 - }, - "m_fDisabledAlpha": { - "type": "float", - "id": 6, - "offset": 216, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1389987675 - }, - "m_fAlpha": { - "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 482130755 - }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3623628394 - }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2102211316 - }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1846695875 - }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3389835433 - }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2547159940 - }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2587533771 - }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3091503757 - } - } - }, - "543861847": { - "name": "class SharedPointer", - "bases": [ - "LootInfo", - "LootInfoBase", - "PropertyClass" - ], - "hash": 543861847, - "properties": { - "m_lootType": { - "type": "enum LootInfo::LOOT_TYPE", - "id": 0, - "offset": 72, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1591891442, - "enum_options": { - "LOOT_TYPE_NONE": 0, - "LOOT_TYPE_GOLD": 1, - "LOOT_TYPE_MANA": 2, - "LOOT_TYPE_ITEM": 3, - "LOOT_TYPE_TREASURE_CARD": 4, - "LOOT_TYPE_MAGIC_XP": 5, - "LOOT_TYPE_ADD_SPELL": 6, - "LOOT_TYPE_MAX_HEALTH": 7, - "LOOT_TYPE_MAX_GOLD": 8, - "LOOT_TYPE_MAX_MANA": 9, - "LOOT_TYPE_MAX_POTION": 10, - "LOOT_TYPE_TRAINING_POINTS": 11, - "LOOT_TYPE_RECIPE": 12, - "LOOT_TYPE_CRAFTING_SLOT": 13, - "LOOT_TYPE_REAGENT": 14, - "LOOT_TYPE_PETSNACK": 15, - "LOOT_TYPE_GARDENING_XP": 16, - "LOOT_TYPE_PET_XP": 17, - "LOOT_TYPE_TREASURE_TABLE": 18, - "LOOT_TYPE_ARENA_POINTS": 19, - "LOOT_TYPE_ARENA_BONUS_POINTS": 20, - "LOOT_TYPE_GROUP": 21, - "LOOT_TYPE_FISHING_XP": 22, - "LOOT_TYPE_EVENT_CURRENCY_1": 24, - "LOOT_TYPE_EVENT_CURRENCY_2": 25, - "LOOT_TYPE_PVP_CURRENCY": 26, - "LOOT_TYPE_PVP_CURRENCY_BONUS": 27, - "LOOT_TYPE_PVP_TOURNEY_CURRENCY": 28, - "LOOT_TYPE_PVP_TOURNEY_CURRENCY_BONUS": 29, - "LOOT_TYPE_FURNITURE_ESSENCE": 30 - } - }, - "m_experience": { - "type": "int", - "id": 1, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 759357570 - } - } - }, - "544484305": { - "name": "class ResAddReagent", - "bases": [ - "ResultSourceType", - "Result", - "PropertyClass" - ], - "hash": 544484305, - "properties": { - "m_sourceType": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2305508654 - }, - "m_zoneLevelMax": { - "type": "unsigned int", - "id": 1, - "offset": 76, - "flags": 263, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1028933895 - }, - "m_zoneLevelMin": { - "type": "unsigned int", - "id": 2, - "offset": 72, - "flags": 263, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1028934149 - }, - "m_templateID": { - "type": "gid", - "id": 3, - "offset": 112, - "flags": 33554439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1075328001 - }, - "m_quantity": { - "type": "int", - "id": 4, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 169215289 - } - } - }, - "2115828228": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 2115828228, - "properties": {} - }, - "147169379": { - "name": "class RecipeLootInfo", - "bases": [ - "LootInfo", - "LootInfoBase", - "PropertyClass" - ], - "hash": 147169379, - "properties": { - "m_lootType": { - "type": "enum LootInfo::LOOT_TYPE", - "id": 0, - "offset": 72, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1591891442, - "enum_options": { - "LOOT_TYPE_NONE": 0, - "LOOT_TYPE_GOLD": 1, - "LOOT_TYPE_MANA": 2, - "LOOT_TYPE_ITEM": 3, - "LOOT_TYPE_TREASURE_CARD": 4, - "LOOT_TYPE_MAGIC_XP": 5, - "LOOT_TYPE_ADD_SPELL": 6, - "LOOT_TYPE_MAX_HEALTH": 7, - "LOOT_TYPE_MAX_GOLD": 8, - "LOOT_TYPE_MAX_MANA": 9, - "LOOT_TYPE_MAX_POTION": 10, - "LOOT_TYPE_TRAINING_POINTS": 11, - "LOOT_TYPE_RECIPE": 12, - "LOOT_TYPE_CRAFTING_SLOT": 13, - "LOOT_TYPE_REAGENT": 14, - "LOOT_TYPE_PETSNACK": 15, - "LOOT_TYPE_GARDENING_XP": 16, - "LOOT_TYPE_PET_XP": 17, - "LOOT_TYPE_TREASURE_TABLE": 18, - "LOOT_TYPE_ARENA_POINTS": 19, - "LOOT_TYPE_ARENA_BONUS_POINTS": 20, - "LOOT_TYPE_GROUP": 21, - "LOOT_TYPE_FISHING_XP": 22, - "LOOT_TYPE_EVENT_CURRENCY_1": 24, - "LOOT_TYPE_EVENT_CURRENCY_2": 25, - "LOOT_TYPE_PVP_CURRENCY": 26, - "LOOT_TYPE_PVP_CURRENCY_BONUS": 27, - "LOOT_TYPE_PVP_TOURNEY_CURRENCY": 28, - "LOOT_TYPE_PVP_TOURNEY_CURRENCY_BONUS": 29, - "LOOT_TYPE_FURNITURE_ESSENCE": 30 - } - }, - "m_recipeName": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 268435487, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3311832788, - "enum_options": { - "__BASECLASS": "RecipeTemplate" - } - } - } - }, - "544829427": { - "name": "class SharedPointer", - "bases": [ - "ProvidePetPower", - "GameEffectBase", - "PropertyClass" - ], - "hash": 544829427, - "properties": { - "m_currentTickCount": { - "type": "double", - "id": 0, - "offset": 80, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2533274692 - }, - "m_effectNameID": { - "type": "unsigned int", - "id": 1, - "offset": 96, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1204067144 - }, - "m_bIsOnPet": { - "type": "bool", - "id": 2, - "offset": 73, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 522593303 - }, - "m_originatorID": { - "type": "gid", - "id": 3, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1131810019 - }, - "m_itemSlotID": { - "type": "unsigned int", - "id": 4, - "offset": 112, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1895747595 - }, - "m_internalID": { - "type": "int", - "id": 5, - "offset": 92, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1643137924 - }, - "m_endTime": { - "type": "unsigned int", - "id": 6, - "offset": 88, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 716479635 - }, - "m_happinessCost": { - "type": "int", - "id": 7, - "offset": 128, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1107125310 - }, - "m_cooldown": { - "type": "int", - "id": 8, - "offset": 132, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1897549823 - }, - "m_usesPerCombat": { - "type": "int", - "id": 9, - "offset": 136, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1445312791 - }, - "m_combatTalent": { - "type": "bool", - "id": 10, - "offset": 140, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2113651857 - }, - "m_triggerName": { - "type": "std::string", - "id": 11, - "offset": 144, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3100183568 - }, - "m_extra1": { - "type": "std::string", - "id": 12, - "offset": 176, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1916008880 - }, - "m_extra2": { - "type": "std::string", - "id": 13, - "offset": 208, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1916008881 - }, - "m_lootTableName": { - "type": "std::string", - "id": 14, - "offset": 240, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2333333378 - }, - "m_powerDisplayName": { - "type": "std::string", - "id": 15, - "offset": 272, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2338393887 - }, - "m_requirementList": { - "type": "class SharedPointer", - "id": 16, - "offset": 304, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3783909798 - }, - "m_requirementFailedString": { - "type": "std::string", - "id": 17, - "offset": 320, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2051573416 - }, - "m_noPVP": { - "type": "bool", - "id": 18, - "offset": 356, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 806455846 - }, - "m_rampUp": { - "type": "int", - "id": 19, - "offset": 360, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 899539119 - }, - "m_description": { - "type": "std::string", - "id": 20, - "offset": 368, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1649374815 - }, - "m_myTurn": { - "type": "bool", - "id": 21, - "offset": 400, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 733913410 - } - } - }, - "2116712353": { - "name": "class RaidPortalBehaviorTemplate*", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 2116712353, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - }, - "m_activeStateName": { - "type": "std::string", - "id": 1, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3583247033 - }, - "m_inactiveStateName": { - "type": "std::string", - "id": 2, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2765382672 - }, - "m_zoneList": { - "type": "std::string", - "id": 3, - "offset": 184, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2171104787 - }, - "m_zoneTeleportLocation": { - "type": "std::string", - "id": 4, - "offset": 208, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3345769311 - }, - "m_playerCount": { - "type": "int", - "id": 5, - "offset": 240, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 732802992 - }, - "m_lockObjectTID": { - "type": "unsigned int", - "id": 6, - "offset": 244, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1458748110 - }, - "m_lockObjectOffset": { - "type": "class Vector3D", - "id": 7, - "offset": 248, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1901342601 - }, - "m_unlockedStateName": { - "type": "std::string", - "id": 8, - "offset": 264, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2407785906 - }, - "m_chargeObjectTID": { - "type": "unsigned int", - "id": 9, - "offset": 296, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 519506927 - }, - "m_chargeObjectOffset": { - "type": "class Vector3D", - "id": 10, - "offset": 300, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2538928394 - } - } - }, - "147991309": { - "name": "class ChangePermissionsList", - "bases": [ - "PropertyClass" - ], - "hash": 147991309, - "properties": { - "m_permissionFlag": { - "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 558326096 - }, - "m_addList": { - "type": "gid", - "id": 1, - "offset": 80, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1389998621 - }, - "m_removeList": { - "type": "gid", - "id": 2, - "offset": 96, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 42923202 - } - } - }, - "544493257": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 544493257, - "properties": { - "m_houseTemplateID": { - "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2326023642 - }, - "m_rank": { - "type": "unsigned short", - "id": 1, - "offset": 76, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 773386388 - }, - "m_visitCount": { - "type": "unsigned short", - "id": 2, - "offset": 78, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 978951904 - }, - "m_timeRemaining": { - "type": "unsigned int", - "id": 3, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1238700214 - } - } - }, - "2116168416": { - "name": "class SharedPointer", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 2116168416, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - }, - "m_providesFloor": { - "type": "int", - "id": 1, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1381462216 - }, - "m_placedOnFloorTemplateID": { - "type": "unsigned int", - "id": 2, - "offset": 124, - "flags": 33554439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 349311070 - }, - "m_pickedupFromFloorTemplateID": { - "type": "unsigned int", - "id": 3, - "offset": 128, - "flags": 33554439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1208761121 - }, - "m_hasFadeableCeiling": { - "type": "int", - "id": 4, - "offset": 132, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2119980373 - }, - "m_dontFadeCeiling": { - "type": "int", - "id": 5, - "offset": 136, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 373748538 - } - } - }, - "150612290": { - "name": "class SharedPointer", - "bases": [ - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 150612290, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - } - } - }, - "544865896": { - "name": "class SharedPointer", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 544865896, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - } - } - }, - "150115160": { - "name": "class CreateGuildPlayerList*", - "bases": [ - "PropertyClass" - ], - "hash": 150115160, - "properties": { - "m_playerList": { - "type": "gid", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1909774945 - } - } - }, - "2116712363": { - "name": "class RaidPortalBehaviorTemplate", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 2116712363, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - }, - "m_activeStateName": { - "type": "std::string", - "id": 1, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3583247033 - }, - "m_inactiveStateName": { - "type": "std::string", - "id": 2, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2765382672 - }, - "m_zoneList": { - "type": "std::string", - "id": 3, - "offset": 184, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2171104787 - }, - "m_zoneTeleportLocation": { - "type": "std::string", - "id": 4, - "offset": 208, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3345769311 - }, - "m_playerCount": { - "type": "int", - "id": 5, - "offset": 240, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 732802992 - }, - "m_lockObjectTID": { - "type": "unsigned int", - "id": 6, - "offset": 244, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1458748110 - }, - "m_lockObjectOffset": { - "type": "class Vector3D", - "id": 7, - "offset": 248, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1901342601 - }, - "m_unlockedStateName": { - "type": "std::string", - "id": 8, - "offset": 264, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2407785906 - }, - "m_chargeObjectTID": { - "type": "unsigned int", - "id": 9, - "offset": 296, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 519506927 - }, - "m_chargeObjectOffset": { - "type": "class Vector3D", - "id": 10, - "offset": 300, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2538928394 - } - } - }, - "149775667": { - "name": "class EquipmentShopOption*", - "bases": [ - "ServiceOptionBase", - "PropertyClass" - ], - "hash": 149775667, - "properties": { - "m_serviceName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2206028813 - }, - "m_iconKey": { - "type": "std::string", - "id": 1, - "offset": 168, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2457138637 - }, - "m_displayKey": { - "type": "std::string", - "id": 2, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3023276954 - }, - "m_serviceIndex": { - "type": "unsigned int", - "id": 3, - "offset": 204, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2103126710 - }, - "m_forceInteract": { - "type": "bool", - "id": 4, - "offset": 200, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1705789564 - } - } - }, - "545463088": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 545463088, - "properties": { - "m_customNameMaxLength": { - "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1680359153 - }, - "m_customNameMinLength": { - "type": "unsigned int", - "id": 1, - "offset": 76, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1148225135 - }, - "m_subStringNameExceptions": { - "type": "std::wstring", - "id": 2, - "offset": 88, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2526168028 - }, - "m_singleCharExceptions": { - "type": "std::wstring", - "id": 3, - "offset": 112, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1648919482 - }, - "m_caseInsensitive": { - "type": "bool", - "id": 4, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 182050912 - }, - "m_charSetCosts": { - "type": "class SharedPointer", - "id": 5, - "offset": 184, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1980234615 - } - } - }, - "545095272": { - "name": "class SharedPointer", - "bases": [ - "ClientWizPlayerNameBehavior", - "NameOverrideBehavior", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 545095272, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_wsNameOverride": { - "type": "std::wstring", - "id": 1, - "offset": 120, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2131249091 - }, - "m_nameKeys": { - "type": "unsigned int", - "id": 2, - "offset": 352, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1772225898 - }, - "m_useRank": { - "type": "bool", - "id": 3, - "offset": 356, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2040475372 - }, - "m_eGender": { - "type": "enum eGender", - "id": 4, - "offset": 432, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2776344943, - "enum_options": { - "Male": 1, - "Female": 0, - "Neutral": 2 - } - }, - "m_eRace": { - "type": "enum eRace", - "id": 5, - "offset": 436, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 963057554, - "enum_options": { - "Bat": 88066, - "BatLightning": 1472842576, - "Boar": 2624962, - "CatThug": 1855674386, - "ChristmasElf": 819908552, - "ChristmasSnowman": 1146515225, - "Colossus_Ice": 1063279538, - "Cyclops": 1691813655, - "DragonBeta": 417003588, - "DragonFriendly": 69049013, - "EvilSnowman": 1579630926, - "FireElf": 443793687, - "Firecat": 2045525741, - "Frog": 2274918, - "FrostBeetle": 7692383, - "GhostBlue": 1097396892, - "GhostGreen": 882822629, - "GhostRed": 560510742, - "GhostYellow": 909974358, - "Ghoul": 82556199, - "GoatMonk": 486215564, - "GolemBrass": 1057388325, - "GolemClockwork": 1143380031, - "GolemSteel": 1660583674, - "GolemWood": 1426849876, - "HalloweenCat": 1042869199, - "Heckhound": 626736403, - "Helephant": 719065368, - "Human": 79806088, - "Hydra": 70785800, - "Imp": 84361, - "Krokomummy": 555755242, - "Kroktut": 1352354178, - "Leprechaun": 2106466410, - "LeprechaunPattyDay": 380507781, - "LightningBat": 228257682, - "Mannequin": 428442544, - "Minotaur": 949570680, - "Mount_Broom": 94637995, - "Mount_Cat": 1150940211, - "Mount_Dragon": 1565720148, - "Mount_Horse": 2054712767, - "Mount_PlayerWings": 589829552, - "Nikkos": 1563122418, - "NinjaPig": 607400740, - "Orthus": 1552590225, - "Piggle": 1897753328, - "Piggle_Valentine": 687697592, - "Piggle_ValentinePart2": 1760391091, - "Pixie": 74836240, - "RatMagician": 885542120, - "SalamanderFire": 48480175, - "SalamanderIce": 2011152164, - "SalamanderStorm": 600331072, - "Satyr": 84793363, - "Scarab": 2143810477, - "Sheep": 86220083, - "SkeletonArmored": 1791586239, - "SnowSerpent": 138621543, - "Spider": 1603064269, - "SpiderBlack": 559353179, - "SpiderBrown": 557941675, - "SpiderCrystal": 2119625297, - "SpiderGolem": 1632616514, - "Sprite": 1889156557, - "SpriteDark": 1888685518, - "Stormzilla": 252684095, - "SunBird": 1602211198, - "Transformation_ArmoredSkeleton": 1861349834, - "Transformation_CatThug": 1175387611, - "Transformation_Cat_Bandit": 1012395694, - "Transformation_ClockworkGolem": 601121214, - "Transformation_Cyclops": 620156297, - "Transformation_DarkFairy": 1206757203, - "Transformation_DraconianSorcerer": 1212016810, - "Transformation_Draconian": 450730089, - "Transformation_EarthColossus": 140119452, - "Transformation_EvilSnowman": 1497097122, - "Transformation_FatGobbler": 634003800, - "Transformation_FireElemental": 822233230, - "Transformation_FireElf": 46585468, - "Transformation_FireSalamander": 2118418114, - "Transformation_Gobbler_Skinny": 162365207, - "Transformation_GolemSteel": 1329184184, - "Transformation_Ice_Colossus": 430406408, - "Transformation_Krokomummy": 1644615769, - "Transformation_MagmaMan": 545064542, - "Transformation_Mander": 88998828, - "Transformation_NinjaPig": 1029132174, - "Transformation_Ninja_Pig_04": 7093548, - "Transformation_RatThug": 1175352795, - "Transformation_RavenMystic": 1443197359, - "Transformation_StormElemental": 637088511, - "Transformation_Treant": 1874998327, - "Transformation_WarPig": 691088645, - "Transformation_WolfScout": 263523463, - "Transformation_WolfWarrior": 6092463, - "Transformationn_SkeletonPirate": 1821341863, - "Treant": 1396597132, - "Troll": 82261620, - "Unicorn": 550546918, - "Unknown": 718677478, - "Wolverine": 528843083, - "Wraith": 1788506505, - "Wyrmkin": 379044612, - "Transformation_CyrusDrake": 94277831, - "PetEgg": 1973167984, - "GhostLady": 493415959, - "Banshee": 827805677, - "GobblerRed": 250135875, - "Ghoul_Gravedigger": 161812468, - "SkeletonWarrior": 734585814, - "BansheeBoss": 806445565, - "Seraph": 1792950125, - "CrabKing": 277875784, - "UndeadCaster": 1680689397, - "DragonFrontier": 1829438301, - "HeckhoundGhost": 872406464, - "Mount_Unicorn": 212699468, - "Jellyfish": 910724608, - "SeaDragon": 1194541306, - "Turtle": 1897184620, - "Starfish": 1447562471, - "SpinyFish": 162948281, - "Mount_Gryphon": 2110522960, - "Mount_Shark": 1170186623, - "Mount_Manta": 979931598, - "Mount_Seahorse": 1554833818, - "Mount_Seahorse_Tough": 1245859453, - "Mount_Koi": 1150937409, - "Mount_Lobster": 2025618875, - "Mount_Turtle": 1490849128, - "VenusFlyTrap": 1612039757, - "GDN_MED_BabyCarrots": 327334743, - "GDN_SM_BoomShroom": 31324632, - "GDN_SM_Dandelion": 2058674142, - "GDN_SM_Disparagus": 1732989489, - "GDN_MED_EvilSnowPeas": 747408607, - "GDN_SM_FicklePickle": 205381955, - "GDN_SM_HappyHolidaisy": 1736236340, - "GDN_MED_HelephantEars": 1803669659, - "GDN_MED_HoneySickle": 424149132, - "GDN_LG_NinjaFig": 847338104, - "GDN_LG_SnapDragon": 1076151689, - "GDN_SM_StinkWeed": 845383431, - "GDN_MED_TrumpetVine": 1922690264, - "GDN_MED_VenusFlyTrap": 1560899638, - "GDN_SM_Laughodil": 1278979588, - "GDN_LG_BreadFruitBush": 533042934, - "GDN_MED_PricklyBearCactus": 1236846986, - "GDN_MED_KingParsley": 110148182, - "LeprechaunPatriotic": 414730890, - "SeraphYuletide": 1325846853, - "DragonGhost": 1502126893, - "UnicornNightmare": 604358256, - "EvilSnowmanSandman": 1579432150, - "Colossus_Spirit": 422514215, - "Rock": 2393554, - "GDN_MED_GivingTree": 2047236132, - "Egg": 70853, - "Mount_Carpets": 1602744888, - "Kraken": 1737191829, - "Wyvern": 1727802601, - "Phoenix": 1765559002, - "Judgement": 562901781, - "ForestLord": 1390734923, - "Humongofrog": 1272123051, - "Scarecrow": 41441599, - "Mount_Ram": 77196599, - "BasketSnake": 1835657086, - "Samoorai": 522797493, - "Transformation_RavenWarrior": 701169336, - "PhoenixStorm": 1325268802, - "PhoenixDeath": 1281634042, - "GDN_LG_CouchPotatoes": 879742725, - "GDN_MED_KeyLimes": 811516024, - "Mount_BoneDragon": 1023618313, - "Mount_BigBoneDragon": 1124383680, - "Mount_FairyWings": 1904926612, - "Mount_DragonWings": 755225925, - "Mount_Pegasus": 1621244140, - "GDN_MED_BellPepper": 1710238687, - "GDN_MED_GrapesOfWrath": 1068787103, - "GDN_SM_TigerLily": 1899057048, - "WysteriaPiggle": 49173891, - "Mount_Wyvern": 1658410744, - "Mount_2P_Rhino": 1052779475, - "NightHawk": 358964390, - "Giraffe": 935214826, - "Mount_Hawk": 2070898895, - "Mount_HalloweenNightmare": 726136378, - "GobblerHalloween": 1482399836, - "Leopard": 1606863715, - "Skink": 76950867, - "Mount_Ostrich": 466111322, - "Mount_Crocagator": 1981222087, - "Transformation_Blacktusk-01": 401543565, - "Mount_Hippogriff": 2043817624, - "Transformation_Gorilla-01": 1555853240, - "Transformation_Gorilla-02": 1606184888, - "Mount_Raven": 94983735, - "Mount_Chrismoose": 1822495199, - "Mount_CandyCane": 1148551147, - "Ivy_League": 925492799, - "GDN_MED_Ivy_League": 1630077794, - "Mount_Kirin": 1168691825, - "GDN_SM_Moonflower": 2068754330, - "GDN_MED_BoonTree": 788055729, - "Snowball": 2046118016, - "Foo_Dog": 1549710807, - "ShenlongDragon": 932676736, - "Monkey": 1233866291, - "Wolfhound": 626884686, - "Redcap": 1540319086, - "Raven": 79941650, - "HollowKnight": 1107268274, - "Book": 2405826, - "GDN_MED_AngoraBunnyEars": 1547559854, - "GDN_MED_FortuneCookieTree": 786686214, - "GDN_MED_GooseTree": 809354938, - "GDN_SM_HoneyBeePlant": 1528880373, - "GDN_MED_BambooShoots": 1096708900, - "GDN_SM_Huckleberries": 1937475840, - "Rock_Moustache": 962221287, - "Efreet_Myth": 1834555522, - "Efreet": 1401700123, - "Mammoth": 1395147745, - "Triton": 1730466188, - "Gnome": 74954215, - "BoneDragon": 429245206, - "Basilisk": 1457899086, - "Chimera": 529027789, - "Transformation_GammaTemplate": 1337834518, - "Mount_Camel": 1168198963, - "Mount_RenaissanceWings": 1049782088, - "Bull_Mount": 1713506759, - "Mount_Owl": 1150938242, - "Mount_Alphyn": 487264165, - "Mount_Stag": 1150353823, - "Mount_Auroch": 509865325, - "Mount_Warg": 1150358072, - "StrangeBeast": 511334734, - "Efreet_Ice": 1820009122, - "Efreet_Storm": 1269986674, - "GDN_LG_AlligatorPear": 1293913372, - "Mount_2P_Treant": 928450863, - "Mount_2P_Dragon": 1431637933, - "Mount_Pogo_Stick_WC": 1462849298, - "Mount_Pogo_Stick_MB": 1349603090, - "GDN_LG_MeltingCheese": 1914589015, - "GDN_SM_FishOnAVine": 1734955358, - "GDN_LG_AngelOak": 1539539424, - "GDN_LG_MeltingCheese_Angel": 1254781264, - "SnowyOwl": 1682262138, - "Mount_3P_Hydra": 1207475250, - "WeaselMinstrel": 1541234616, - "MOUNT_Rickshaw": 938282973, - "Transformation_Sherlock-Bones": 509126601, - "Mount_Phoenix": 556355452, - "Toaddle": 597488187, - "Pantera": 528797696, - "WildfireTreant": 673362041, - "StoneTiger": 746336665, - "Blowfish": 1447737334, - "Smith": 78327187, - "FlyingCat": 1254472614, - "RamWarrior": 536916302, - "Ladybug": 1846384669, - "BurlapBoy": 607590898, - "DeerKnight": 560802130, - "Gargoyle": 1227701700, - "Chameleon": 596131510, - "Scorpion": 1462253104, - "GDN_SM_BoiledPeanuts": 544885684, - "GDN_SM_ClockFlower": 676513046, - "GDN_SM_DeadBeets": 650783482, - "GDN_MED_SnowApple": 1916648180, - "Eyecaramba_Violet": 1804780775, - "Eyecaramba_Green": 750346574, - "Eyecaramba_Orange": 687614854, - "Piggle_Grandfather": 131445665, - "Velociraptor": 1042311818, - "Babydactyl": 1180982194, - "Stegosaurus": 476811765, - "Mount_Pegasus_Spectral": 948250730, - "Mount_2P_Scarydactyl": 1808983335, - "Mount_2P_TRex": 1495851852, - "Therizinosaurus": 80337863, - "Runtosaurus": 476200406, - "FrilledLizard": 420993517, - "Mount_Ankylosaurus": 669692274, - "Mount_Triceratops": 1126950204, - "Mount_2P_Glider": 1630365881, - "Transformation_Thunderhorn": 1045262037, - "Transformation_Jaguar": 1080966062, - "Transformation_Pteranadon": 273836142, - "Transformation_ShadowWeaver": 255927111, - "Transformation_EagleWarrior": 1880471875, - "Mount_Falalalallama": 389890123, - "Mount_2P_WinterTreant": 1850265056, - "GDN_LG_MissileToe": 1767792974, - "GDN_MED_PointSetta": 647257205, - "Nutcracker2012": 1598217699, - "Coal2012": 1627852119, - "Mount_Sleigh": 1636615519, - "Mount_Sabertooth": 1613031507, - "Mount_MechanicalWings": 1014917438, - "PiranhaHunter": 686271163, - "Quetzal": 2020925822, - "Mount_Sloth": 1169387359, - "HollowKnightLife": 2114081886, - "BettaFish": 138088968, - "MummyCat": 62372925, - "TrojanHorse": 1725299194, - "WC_Storm_Possessed": 186960228, - "AV_Possessed": 1106693085, - "AZ_Possessed": 1106692701, - "CL_Possessed": 1106692255, - "KT_Possessed": 1106693015, - "MS_Possessed": 1106692977, - "WC_Possessed": 1106692459, - "Mount_2P_Whale": 448824263, - "Mount_2P_Chariot": 88035298, - "Mount_WarBoar": 1159836211, - "Mount_Palanquin": 47587550, - "BearCub": 672664722, - "Transformation_Minotaur": 1454233452, - "DragonGauntlet": 797645257, - "DeathUnicorn": 924144161, - "Flamingo": 1488424911, - "Mount_Gorilla": 1939919432, - "Mount_WarUnicorn": 1361393198, - "GargoyleMyth": 1819685060, - "TikiMan": 16098567, - "Siren": 79937811, - "GoldenRam": 410220227, - "Harpy": 96026632, - "SwordShield": 1668411785, - "ClockworkKnight": 1059948980, - "Mount_MechanicalEagle": 1720948645, - "Mount_Cloud": 1166233435, - "Mount_Surfboard": 1914250039, - "Mount_BetaDragon": 1023653721, - "Mount_BeeWings": 1387988401, - "Vampire": 524731385, - "FrankenBunny": 589797989, - "BumbleBee": 249592226, - "Mount_Dragonfly": 1028843656, - "BronzeGolem": 1320867859, - "TarantulaHawk": 1983939429, - "Mount_Grasshopper": 1852850928, - "FlyingSquirrel": 847551166, - "GDN_MED_Sunion": 1652707634, - "GDN_MED_SwordFern": 548761438, - "GDN_SM_SugarKhrystal": 267539461, - "GDN_SM_SawPalmetto": 1892888046, - "GDN_LG_FacePalm": 2050814140, - "GDN_LG_QueenCrapeMyrtle": 80378450, - "Transformation_ShadowTank": 1304943609, - "Transformation_ShadowHeal": 1254024185, - "Transformation_ShadowDPS": 87276537, - "Mount_Noelephant": 1383672248, - "SaintBernard": 572932242, - "ParkaFox": 2009808189, - "Goose": 75019719, - "Mount_Coconut": 791151432, - "CreepyBeetle": 345594179, - "BabyDragonfly": 1367084335, - "FennecFox": 41315063, - "PP_Leviathan": 833901526, - "PP_SunSerpent": 1062677009, - "PP_LordOfWinter": 960214698, - "PP_Medusa": 867812931, - "PP_Dryad": 147654656, - "PP_AvengingFossil": 315904647, - "PP_Sabertooth": 1799146677, - "Mount_Butterfly": 1283940943, - "Mount_Hare": 2070851023, - "Transformation_MorganthB": 197306990, - "Transformation_MorganthC": 197831278, - "Transformation_MorganthD": 200452718, - "BabyPegasus": 1215000859, - "ArcaneHelp": 1899247549, - "Mount_Vines": 98389624, - "Mount_ArcaneMinecart": 2001270930, - "Hobgoblin": 2133668461, - "Mount_2P_Rowboat": 237071469, - "ForestSpirit": 1178454602, - "Mount_SpiritWolf": 531991076, - "Otter": 84138671, - "OrigamiBird": 550984083, - "DinoSkeletal": 233277835, - "Mount_HarrowingsGreen": 1605746772, - "Mount_HarrowingsBlue": 477152436, - "Mount_HarrowingsPurple": 2092807554, - "RedPanda": 1744233845, - "Ibis": 2665577, - "Corgi": 78823875, - "Mount_Yak": 996545739, - "Mount_FlyingBalance": 436519643, - "Transformation_ShadowMalistaire": 1043814435, - "Transformation_DragonMalistaire": 841867699, - "Mount_Scarab": 1687658791, - "Transformation_MisterHound": 1973578844, - "Mount_BahHumbug": 55114077, - "Skates": 1568993965, - "Moose": 75019725, - "Mount_Gargoyle": 1456663874, - "GDN_MED_VenusFlyTrapEpic": 1594069606, - "Mount_PlayerWingsPink": 19403046, - "GDN_LG_AlligatorPearEpic": 1326804812, - "Pet_Armadillo": 825736847, - "Mount_JoustingDestrierDyeable": 1683448768, - "GDN_MED_VampireCarrots": 871596496, - "GDN_SM_WhiteTigerLilyEpic": 1703271434, - "GDN_LG_NinjaFigEpic": 938504823, - "GDN_LG_SnapDragonEpic": 2071674466, - "GDN_MED_HelephantEarsEpic": 719166107, - "GDN_MED_TrumpetVineEpic": 225854518, - "GDN_SM_DandelionEpic": 728637442, - "GDN_SM_HuckleberriesEpic": 1903258448, - "GDN_MED_SnowAppleEpic": 1231175967, - "GDN_SM_BoomShroomEpic": 981598771, - "GDN_MED_KingParsleyEpic": 2038371004, - "Mount_Raptor": 749695031, - "Pet_Toucan": 581477475, - "Pet_Squirrel": 969881395, - "Mount_WonkyDonkey": 1481657312, - "Mount_HawkPatriotic": 509149743, - "Pet_FrogAssistant": 1945041750, - "Mount_Cat2": 1151054899, - "Mount_Cat2BW": 1603515443, - "Pet_ArmadilloBW": 825733899, - "Pet_FrankieForearms": 1100195857, - "Mount_SolarSabre": 1281093703, - "MNT_MechOstrich": 258667969, - "MNT_BootsBalance": 1799191558, - "MNT_BootsDeath": 1034912971, - "MNT_BootsFire": 606061658, - "MNT_BootsIce": 2142643294, - "MNT_BootsLife": 773751898, - "MNT_BootsMyth": 144792486, - "MNT_BootsStorm": 1525245121, - "Pet_CorgiBirthday": 1951779369, - "OrigamiBirdBDay": 1909935955, - "Pet_FlyingBlackCat": 432111988, - "Mount_Narwhal": 449637834, - "Mount_NightOwl": 1648420845, - "Pet_Penguin": 137342907, - "MNT_PowerGemUnicorn": 411234062, - "Pet_CrystalButterfly": 512136094, - "Mount_BabyMammoth": 185831059, - "MNT_BabaYaga": 564874997, - "Pet_BabySeal": 657606984, - "Pet_BabyYeti": 635847496, - "Transformation_BallerinaBear": 1525333600, - "Mount_StagYuletide": 1508680687, - "Transformation_TitanMedium": 1700742736, - "Transformation_TitanLarge": 718614967, - "Pet_SirenIce": 849851564, - "Mount_FlyingDeath": 1717725588, - "Mount_FlyingFire": 1177216332, - "Mount_FlyingIce": 1238841184, - "Mount_FlyingLife": 433397684, - "Mount_FlyingMyth": 164983572, - "Mount_FlyingStorm": 375872049, - "Dragonling": 1730534849, - "Pet_EggChicken": 952873217, - "HeckhoundGhost_MAW": 893368960, - "Mount_WinterTrain": 751515281, - "Mount_RubberDucky": 1826548479, - "Pet_BansheeSpellwrit": 917979583, - "Pet_SamooraiSpellwrit": 370057597, - "Mount_UnicornAstral": 886914505, - "Guest_Boochbeard": 1958574095, - "Pet_MouseSister": 1267930350, - "Pet_MouseFather": 2010008339, - "Pet_VampireSquirrel": 250588691, - "Mount_CoffinCar": 1387606595, - "Mount_BabyElephant": 2026559639, - "Pet_RoadHog": 601156960, - "Mount_WolfGryphonWings": 543038283, - "MNT_ClockworkSteed": 891371132, - "Mount_Chopper": 1196683136, - "Pet_ButterflyLamb": 527214392, - "Pet_MouseMother": 2012687123, - "Pet_MouseBrother": 1174380856, - "Pet_Cherub": 769208559, - "GDN_SM_Jewel": 1104045832, - "MR_Death_Duncan_Grimwater": 1850289001, - "Mount_DesertRunner": 2049036229, - "Pet_MonkeyMirage": 418612892, - "Pet_ClockworkOwl": 1038482431, - "Pet_NinjaTurtle": 2024540686, - "Mount_Vines_Halloween": 82852149, - "Mount_SwarmBat": 1151836459, - "Mount_2P_NinjaDragon": 1239694057, - "Mount_Gobler": 1820615236, - "Mount_MaryleboneCar": 2027689685, - "JackOLantern": 1016361578, - "Transformation_DjinnCommonA_Balance": 996127128, - "Transformation_MedicineMode": 25960701, - "CactusHopper": 1956293007, - "Transformation_Mimic_ChestGold_A": 414145432, - "Mount_Ghoulture": 1067671195, - "Pet_Macaw": 1087278472, - "Pet_SandWorm": 653200803, - "Transformation_DromelDancer": 1071824116, - "Pet_Bunnies": 695874547, - "Mount_Snowboard": 1914380015, - "Transformation_DrommelDancer": 226294468, - "Mount_Carpet_New": 1618650322, - "Mount_BunnySleigh": 599915427, - "Helephant_Heart": 419161272, - "Mount_Snowboard_Holiday": 876339060, - "Transformation_GhostDog": 646575420, - "Transformation_PrinceGobblestone": 693826496, - "Transformation_Mithraya": 1240010601, - "Transformation_LuskaCharmbeak": 897469730, - "Transformation_YoungCyrusDrake": 15595663, - "Kookaburra": 1069759154, - "BorealisGolemPet": 797488492, - "FlyingEyePet": 505959833, - "StormCloudPet": 548463069, - "BullPet": 1993917801, - "OpossumPet": 284003652, - "GhoulturePet": 939920734, - "StormCloudPetB": 548463001, - "StormCloudPetC": 548463003, - "Guest_LordNightshade": 1221409981, - "BullPetB": 1993917561, - "BullPetC": 1993917553, - "BullPetD": 1993917513, - "Transformation_ShadowCrit": 1392195065, - "Mount_Pennyfarthing": 1551926344, - "Mount_RowboatPirate": 2079208803, - "Mount_IceCube": 1261861595, - "Guest_LostMaiden": 883675592, - "Guest_BoatswainMcGee": 1359750850, - "Guest_ChiefMateMcGurk": 329643845, - "Guest_DoomedBones": 2015643882, - "Guest_SpectreoftheBrocken": 266357448, - "Guest_DrownedKnight": 1100966093, - "Guest_TarntheDrowned": 329540205, - "Guest_DisloyalKnight": 1853240753, - "Guest_NamelessKnight": 1065677876, - "Guest_LambentFire": 489886605, - "Guest_LordoftheBrocken": 1662003371, - "Guest_StormCaiman": 1147500291, - "Guest_GrinningDeathMoon": 737595789, - "Guest_MoonSkullWight": 1720039490, - "Guest_HuemacSpearWreath": 1522021131, - "Guest_HowlingBanshee": 1340855338, - "Guest_Sea-Booter": 1818491983, - "Guest_DeadRover": 1009273257, - "Guest_CelestianRemnant": 1312268448, - "Guest_Shadow-WebConscript": 1500529411, - "Guest_Shadow-WebMercenary": 623672171, - "Guest_Shadow-WebWraith": 810956416, - "Guest_Shadow-WebHaunt": 500586883, - "Guest_CelestianPartisan": 633346892, - "Guest_CelestianDefender": 482102727, - "Guest_ThraleBonestriker": 1172972733, - "Guest_VorgenSoulbreaker": 1935693246, - "Guest_ServusBloodsword": 1703995647, - "Guest_QueenCalypso": 845803519, - "Guest_BlueBart": 77043390, - "Guest_KarolakNightspinner": 1008737316, - "Guest_ArachtusDuskweb": 1787750209, - "Guest_ZhalarStarcloud": 1453644105, - "Guest_NarallorNightborn": 1963363700, - "Guest_SelwynSkywatcher": 1413136893, - "Guest_OsseusNightreaver": 306827003, - "Guest_IrateBanshee": 865143109, - "Guest_FuriousHowler": 1607252558, - "Guest_CryingSpirit": 1559074820, - "Guest_UndeadDraconian": 169249571, - "Guest_ReanimatedDraconian": 247067807, - "Guest_GhastlySlave": 80127661, - "Guest_BoundSpecter": 369706568, - "Guest_NecroticHaunter": 1714841563, - "Guest_LoathsomeCreeper": 1087245229, - "Guest_FleshrotRetriever": 1925148031, - "Guest_BarbarianSpirit": 2112552732, - "Guest_BeghastionCrowcaller": 586628832, - "Guest_BeghastionFieldburner": 1650751959, - "Guest_BoneWarrior": 76802026, - "Guest_FleshlessSentry": 708431820, - "Guest_PirateRavager": 945157059, - "Guest_RottenScallywag": 974666855, - "Guest_ArmoredBonewalker": 1444568072, - "Guest_UndeadWizard": 1622435563, - "Guest_SoulSearcher": 2094392941, - "Guest_DecayingBlackguard": 412324062, - "Guest_FoulReaper": 919877614, - "Guest_NightShadow": 1675932226, - "Guest_MotleyCrew": 653779218, - "Guest_OrinGrimcaster": 472649066, - "Guest_GhostofSylviaDrake": 218332449, - "Guest_VikaMarkmaker": 1145181168, - "Guest_VasekAshweaver": 1001434369, - "Guest_FireWraith": 1027720368, - "Guest_HungrySoul": 1722435576, - "Guest_FrostBones": 456145606, - "Guest_SnowSkull": 835837850, - "Guest_WinterSkull": 1556601065, - "Guest_LothinDoombringer": 860995070, - "Guest_MimirWinterbane": 1111898070, - "Guest_KulgrimSoulsunder": 278037985, - "Guest_HitojiniDeathcaster": 1144499043, - "Guest_GaikotsuSkeleton": 1113949902, - "Guest_PhantomAce": 1917639347, - "Guest_PhantomGlider": 849918336, - "Guest_Krokomummy": 857773886, - "Guest_NiriniAncientGuard": 359313880, - "Guest_NiriniFireSpirit": 1863811476, - "Guest_VaultHaunter": 197723476, - "Guest_VigilantDefender": 171276829, - "Guest_WanderingAhnicSpirit": 1702865088, - "Guest_ForgottenDjeseritSoul": 1170568256, - "Guest_KaranahnDeathfeeder": 1612857711, - "Guest_ShamblingAhnic": 1579129677, - "Guest_RisenDjeserit": 287855500, - "Guest_KaranahnMortifier": 874288111, - "Guest_DjeseritDweller": 2058423665, - "Guest_AhnicStrider": 1776992302, - "Guest_GuardianoftheFang": 1816795524, - "Guest_DefenderoftheFang": 354353604, - "Guest_ProtectoroftheFang": 1290191037, - "Guest_SouloftheCharmed": 422890577, - "Guest_KaranahnKeeper": 77581557, - "Guest_NiriniIntimidator": 677205957, - "Guest_CondemnedSoldier": 449152244, - "Guest_NimahtheWicked": 1298248873, - "Guest_AkoriNirini": 1123159753, - "Guest_SoulScavenger": 892852198, - "Guest_KeeperoftheFang": 1676773499, - "Guest_ItennuSokkwi": 699159408, - "Guest_Tempestra": 334938435, - "Guest_QueenIrisiDjeserit": 1861434100, - "Guest_TheBonekeeper": 1302503449, - "Guest_CryptScavenger": 1893795791, - "Guest_Soulsapper": 1699756010, - "Guest_KingUroAhnic": 1788825731, - "Guest_KingShemetDjeserit": 1350067043, - "Guest_UnholyWraith": 1871146013, - "Guest_PikeSpiritcrusher": 498715531, - "Guest_SpellwritScreamer": 801626733, - "Guest_SpellwritRonin": 1671439174, - "Guest_Shrieker": 805966229, - "Guest_GravePhantom": 731622936, - "Guest_NightmareSpirit": 230709057, - "Guest_VengefulCreeper": 1100197884, - "Guest_TombRoamer": 1277825068, - "Guest_ShieldSkeleton": 1634270152, - "Guest_AgonyWraith": 30384496, - "Guest_IcyGhost": 768353592, - "Guest_Half-wittedSkeleton": 647996362, - "Guest_LazyHenchman": 1329554426, - "Guest_TiredFighter": 210248632, - "Guest_Screecher": 469007005, - "Guest_SeethingWraith": 664913100, - "Guest_ColdConfusion": 1304943934, - "Guest_OssuaryConscript": 1017667150, - "Guest_Ghulture": 1330558655, - "Guest_BodyGuard": 1048581801, - "Guest_SpectralGuardian": 422805602, - "Guest_VaultConscript": 1388398065, - "Guest_FootPatrol": 1692393321, - "Guest_ArmedGuard": 2045920536, - "Guest_Chilly": 1764665905, - "Guest_Achey": 973370519, - "Guest_Sneezy": 1769440773, - "Guest_Cough": 1170200073, - "Guest_Shadowbones": 1316133167, - "Guest_ForgottenConscript": 1466348281, - "Guest_BarracksGuardian": 236603440, - "Guest_CryptConscript": 314755436, - "Guest_DurvishSeeker": 1825622267, - "Guest_MedicineMode": 167015574, - "Guest_Myriarch2": 593881680, - "Guest_Myriarch3": 593881616, - "Guest_MyriarchEphialtes": 773531895, - "Guest_MotherGhulture": 1585201915, - "Guest_CaptainCosrow": 727107332, - "Guest_VizierRafaj": 214040637, - "Guest_DarkmoorSerf": 1522169114, - "Guest_DarkmoorSquire": 1822567109, - "Guest_ScarletWampyr": 1683954247, - "Guest_DraconianRevenant": 741497298, - "Guest_DraconianEidolon": 107733297, - "Guest_AnguishedWraith": 1078602022, - "Guest_DraconianPyromancer": 729577007, - "Guest_DraconianThaumaturge": 189734361, - "Guest_DraconianDiviner": 472633746, - "Guest_DraconianConjurer": 1824962835, - "Guest_DraconianTheurgist": 1828628416, - "Guest_DraconianNecromancer": 175364324, - "Guest_DraconianSorcerer": 1262893339, - "Guest_SirBlackwater": 366308464, - "Guest_AkhtangWormCrawl": 1589032404, - "Guest_SpiritofDarkmoor": 579455915, - "Guest_ShanevonShane": 2096517522, - "Guest_YevgenyNightCreeper": 1535282881, - "Guest_MalistairetheUndying": 824508513, - "Guest_Bunferatu": 1015806005, - "Guest_CountBelaBlackSleep": 761647679, - "Guest_DeathSoldier": 1715141574, - "Guest_SorrowWhisperer": 556532003, - "Guest_GriefSpectre": 1425488559, - "Guest_HowlingShade": 631460247, - "Guest_WalkingDead": 318527090, - "Guest_Akuji": 977635799, - "Guest_TorturedKakedaSoul": 1716874833, - "Guest_KakedaSpiritSlave": 1814699344, - "Guest_DishonoredSamoorai": 320085744, - "Guest_CursedRonin": 1204095686, - "Guest_TomugawatheEvil": 166125424, - "Guest_OyotomitheDefiler": 1672714483, - "Guest_Fushiko": 801492770, - "Guest_BrokenLandGuardian": 294671991, - "Guest_ShatteredSkyGuardian": 746681463, - "Guest_SunderedSeamGuardian": 1439618652, - "Guest_BrokenLandSpirit": 860105895, - "Guest_ShatteredSkySpirit": 2104112380, - "Guest_SunderedSeamSpirit": 69572311, - "Guest_LostSoul": 204361577, - "Guest_RottingFodder": 308249734, - "Guest_HauntedMinion": 689597338, - "Guest_FieldGuard": 1175228991, - "Guest_SkeletalWarrior": 778393993, - "Guest_SkeletalPirate": 1476730220, - "Guest_WanderingSpecter": 126188449, - "Guest_LivingScarecrow": 1442943145, - "Guest_FrostPhantom": 1809776664, - "Guest_FireShrieker": 173332719, - "Guest_CryptCrawler": 2118799272, - "Guest_ViridianSpecter": 383149977, - "Guest_ArgentClatterer": 525414714, - "Guest_SwimmingSpecter": 1494025094, - "Guest_ScarletScreamer": 1689589811, - "Guest_BoneDigger": 1351421123, - "Guest_HowlingGhost": 664019391, - "Guest_SkeletalSoldier": 750463116, - "Guest_MaidenofHate": 444442868, - "Guest_SkeletalRetainer": 1409032775, - "Guest_SoulHunter": 1900267551, - "Guest_MidnightShuffler": 1991052065, - "Guest_PlaguedSoul": 419071561, - "Guest_HauntingBanshee": 345837052, - "Guest_SimontheSayer": 1352807820, - "Guest_TheHarvestLord": 1923575206, - "Guest_LadyBlackhope": 1403431623, - "Guest_SergeantSkullsplitter": 898737831, - "Guest_Foulgaze": 2063419769, - "Guest_Wormguts": 788697519, - "Guest_Rattlebones": 125602919, - "Guest_Paulson": 1112716921, - "Guest_Grubb": 1167554274, - "Guest_Norton": 581021964, - "Guest_NightStalker": 1447653309, - "Guest_AddereTimeo": 1491420030, - "Guest_TheReaper": 1526369733, - "Guest_AngrusHollowsoul": 1427862805, - "Guest_OrrickNightglider": 951078615, - "Guest_SteelSentinel": 885250894, - "Guest_Shadow-WebSoldier": 2014925398, - "Guest_LostCeleste": 1725301830, - "Guest_CapnNigelSkullcrack": 1665439970, - "Guest_HaulAwayJoe": 1075985331, - "Guest_OldMaui": 15300840, - "Guest_LordAgue": 140791419, - "Guest_MelweenaSmite": 432188189, - "Guest_HalloweenTrickster": 2043736417, - "Guest_PumpkinHead": 1098332105, - "Guest_BaronMordecai": 817370918, - "Guest_KaimaniteMummy": 1332671420, - "Guest_VeggieRevanant": 928504192, - "Guest_BloodBat": 76467389, - "Guest_DeadBeets": 157829578, - "Guest_Desparagus": 1130644076, - "Guest_MeanestFly-Trap": 1652898868, - "Guest_Nosferabbit": 1021159436, - "Guest_ThrallofSothmekhet": 330780177, - "Guest_VileApparition": 426627869, - "Guest_SoulServant": 1183110886, - "Guest_SoulKeeper": 917518313, - "Guest_AdmiralBontau": 2032168402, - "Guest_DeathWhisperer": 3814952, - "Mount_RollerBlades": 111369373, - "Guest_BaneWyrm": 147033576, - "Guest_BlackDragon": 939469656, - "Guest_DragonSpawn": 1829803517, - "Guest_Fire-SpitterSpawn": 616624489, - "Guest_CaoranachtheFire-Spitter": 323513000, - "Guest_Jabberwock": 1552492834, - "Guest_CatalantheLightningLizard": 1155778705, - "Guest_WhiteDragon": 2009449331, - "Guest_WinterWyrm": 478925069, - "Guest_WyrmStatue": 2119216210, - "Guest_AlgidWyrm": 1309546482, - "Guest_BruleeSucre": 390936202, - "Guest_HebitohoWyrmling": 1682026810, - "Guest_Shadowwock": 505539184, - "Guest_EirikurAxebreaker": 1361453552, - "Guest_WarWyrm": 1124740742, - "Guest_StrayFireflier": 610979811, - "Guest_BurningFlamewing": 2041225130, - "Guest_FeralLavaling": 371483057, - "Guest_SplinterWing": 923421333, - "Guest_ChanticoBlueAir": 1572441903, - "Guest_CopperWingGuard": 302783602, - "Guest_ObsidianBeak": 2016227452, - "Guest_CaquixNineShadows": 2070101060, - "Guest_LustrousTlalocan": 1201030473, - "Guest_SeedThief": 263211181, - "Guest_PopZotzUnluckyDay": 1416773489, - "Guest_NezathePoet": 1905861376, - "Guest_MazenStingerBee": 1642023393, - "Guest_ImperialJusticePayne": 1285679745, - "Guest_AssistantWardenPorfiry": 22099059, - "Guest_MarshalKamensky": 524669730, - "Guest_WardenVissarovich": 882556823, - "Guest_GulagGuard": 100744159, - "Guest_CaptainKravchuck": 690830770, - "Guest_ImperialGuard": 346803640, - "Guest_IronPaw": 1797329688, - "Guest_TundarianEnforcer": 134256836, - "Guest_Ivan": 996220221, - "Guest_ColonelOrlov": 1381254189, - "Guest_IronPawIntakeCaptain": 2099184835, - "Guest_SolitaryWarden": 1503529566, - "Guest_CaptainZubkov": 793725366, - "Guest_SergeantBobrik": 722182485, - "Guest_WailingWraith": 946976407, - "EggChick": 1452316301, - "BunnyMallow": 518233330, - "Guest_ThunderHornZombie": 1007920040, - "Guest_SmokingMirrorZombie": 340971759, - "Guest_ShamblingZombie": 1920485146, - "Guest_MoonSkullZombie": 809249764, - "Guest_DeathlessStormHorn": 812397213, - "Guest_MozarTurtleHunter": 561749043, - "Guest_GuillermoShatterer": 499565054, - "Guest_XiuhcoatlBarbedTooth": 1719245305, - "Guest_AzcalFireAnt": 1281366337, - "Guest_TlotzinMoonThief": 407285761, - "Guest_PocaCruelStar": 1117353085, - "Guest_ThunderHornGhoul": 597878999, - "Guest_TezomocStoneSinger": 733511940, - "Guest_EzhuaBadTaste": 632779219, - "Guest_UacalxochitlBloodEye": 1614856226, - "Guest_WanadiBlackSky": 349829749, - "Guest_ElMarrow": 483880636, - "Guest_GrimCalaca": 1534029144, - "Guest_XipeFlayedOne": 1343577398, - "Guest_MotecumaDeathMask": 1782393717, - "Guest_EkeChuah": 13416770, - "Guest_AnacaonaBlackSnake": 1543344897, - "Guest_SmokingMirrorWight": 776452983, - "Guest_Tolkemec": 217428080, - "Mount_Fox": 77199428, - "PP_OwlProtege": 268847192, - "Mount_SharkSki": 331374103, - "PP_Dolphin": 1662291612, - "Mount_CastSymbol_D": 1134428045, - "Mount_CastSymbol_E": 1136525197, - "Mount_CastSymbol_F": 1138622349, - "Mount_CastSymbol_G": 1140719501, - "Mount_CastSymbol_A": 1128136589, - "Mount_CastSymbol_B": 1130233741, - "Mount_CastSymbol_C": 1132330893, - "Guest_LionSpectralGuardian": 1791543691, - "Guest_KillmareSpiritwalker": 1818928165, - "Guest_ZebraSpectralGuardian": 815933596, - "Guest_GorillaSpectralGuardian": 1635182119, - "Guest_IklawGhostWarrior": 373465545, - "Guest_BwanaShadowriver": 1307628747, - "Guest_ElephantSpectralGuardian": 1579402208, - "Guest_ZangaZebu": 1218173119, - "Guest_GrumishGreataxe": 486953385, - "PP_GlowFairy_A": 2028856748, - "Guest_RestlessSoldier": 1142701763, - "Guest_WanderingWizard": 209518514, - "Guest_ColonelIvanenko": 399169035, - "Guest_DetollitheDestroyer": 655767295, - "Guest_Jawniak": 1791298433, - "Guest_Tajniak": 356182394, - "Guest_Ygor": 996316081, - "Guest_KyaniteLancer": 2136703656, - "Guest_VestaShadowmark": 1846747836, - "Guest_ZoraSteelwielder": 1186470644, - "Guest_AndorBristleback": 1949884743, - "Guest_GalliumPaladin": 1812340868, - "Guest_GalliumFootman": 1295203112, - "Guest_GalliumShardtrooper": 1210699836, - "Guest_GalliumJuggernaut": 3527584, - "Guest_VladimirDarkflame": 1575322237, - "Guest_KyaniteLieutenant": 561528977, - "Guest_DrusillaMorningbane": 155837810, - "Guest_KyaniteValkyrie": 53242136, - "Transformation_20Q_SherlockBones": 1112674320, - "Guest_DevoraShadowcrown": 1813459117, - "Guest_YoualaNightDrinker": 881289828, - "Guest_Pendragon": 715669945, - "Guest_CelestianRevenant": 515730327, - "Guest_SoullessServant": 1505662730, - "Guest_SpiritServant": 104517373, - "Guest_SoulSerf": 1188214406, - "Guest_ServileSoul": 871844607, - "Guest_SkeletalCorsair": 239414410, - "Guest_RottedFodder": 1301186193, - "Guest_ScarletScreecher": 600457915, - "PP_FrankBunnyBride_A": 974707030, - "Guest_BastillaGravewynd": 2100015237, - "Guest_VilaraMoonwraith": 2067986693, - "Guest_YngvarSharptooth": 1783361972, - "Guest_TroubledWarrior": 1569033392, - "Guest_VeggieRevanant2": 928503904, - "Guest_VeggieRevanant3": 928503888, - "Guest_VeggieRevanant4": 928503872, - "Guest_VeggieRevanant5": 928503856, - "Guest_AncientQhatWarrior": 1564521104, - "Guest_EmperorPaleolo": 2079384347, - "Guest_SpiritofIntolerance": 1627658048, - "Guest_SpiritofInquiry": 1320544891, - "Guest_FirstGuardian": 1982227776, - "Guest_FallenMerc": 225926286, - "Guest_NightShadow2": 1638183490, - "Guest_NightShadow3": 1636086338, - "Guest_NightShadow2-2": 1436856907, - "Guest_NightShadow3-2": 1434759755, - "Guest_NightShadow4-2": 1432662603, - "Guest_NightShadow5-2": 1430565451, - "Guest_NightShadow6-2": 1428468299, - "Guest_NightShadow7-2": 1426371147, - "Guest_FirstScythe": 738854032, - "Guest_GreyMantisCaptain": 860186057, - "Guest_GreyMantisHunter": 1239274377, - "Guest_Atlach-Leng": 836136649, - "Guest_PetrovGloomstrider": 2045783873, - "Guest_NauyotolDownIntheHole": 1134251106, - "Guest_SandorSpearcaller": 1351072377, - "Guest_MavraFlamewing": 1477685600, - "Guest_Scaldling": 208751819, - "Guest_WoebegoneWraith": 1166488705, - "Guest_BorisBlackrock": 1365399915, - "Guest_KatiaFirewinter": 521255834, - "Guest_ValerikBrightsword": 1244055782, - "Guest_RurikFlamesoul": 1962726850, - "Guest_IonaPyrelance": 722266491, - "Guest_DarkPoltergeist": 818162178, - "Guest_TheCollector": 1772287612, - "Guest_ViktorSnowcrusher": 1028387381, - "Guest_ValeskaRedwind": 19316351, - "Guest_ScarrikGallowgaunt": 105397333, - "Guest_Neberyx": 1453883041, - "Guest_AsrikWidebelt": 401936422, - "Guest_GothricHonorbound": 750072340, - "Guest_HalfangBristlecrown": 618779562, - "Guest_OsvudFleetpaw": 1023466459, - "PP_PufferFish_A": 1578606029, - "Guest_OzelUnderwaterCat": 1033669302, - "PP_BabyGreenMan_A": 910025246, - "PP_SchoolTurtle_A": 1012620678, - "PP_DarkBalloon_A": 1229308566, - "MT_JetsamCopter": 92127678, - "Mount_4P_DarkClownCar": 420246262, - "MNT_BalloonsBunch": 2000358474, - "Guest_TempleGuardian": 632574316, - "Guest_TemplePhantom": 1701097840, - "Guest_MahonStarsearcher": 1549093341, - "Guest_LostKnight": 858980994, - "Guest_AnguishedWoodman": 174606918, - "Guest_TormentedTreant": 294050331, - "Guest_WildfireTreant": 1902129818, - "Guest_BlightedYaxche": 679097088, - "Guest_Junglethorn": 1734561424, - "Guest_Tangleroot": 2027061721, - "Guest_BlightedFreerooter": 1109803061, - "Guest_Winterbranch": 1170787806, - "Guest_DecayingBogwalker": 1338670789, - "Guest_BrownwoodTormentor": 1655181754, - "Guest_Wildroot": 1839747182, - "Guest_Ironsplinter": 668295157, - "Guest_Frostbranch": 75974631, - "Guest_KyoukonteiTreant": 474446232, - "Guest_BrokenStumps": 414724364, - "Guest_WordlessWoodsmen": 1813881830, - "Guest_DesiccatedTreebeard": 1826942903, - "Guest_ShadowoftheLand": 1612385317, - "Guest_TreeRoot": 1406633546, - "Guest_BefouledWoodwalker": 1517919498, - "Guest_ConfusedForestWarrior": 750805985, - "Guest_CrazedForestSpirit": 1007960507, - "Guest_Oakheart": 1158293719, - "Guest_SnowTreant": 1028620035, - "Guest_Snowbeard": 1997921701, - "Guest_BarkskinTreant": 2143957812, - "Guest_RazorleafTreant": 2133159197, - "Guest_CarrionFlowerMan": 1120698936, - "Guest_Kurokage": 355651925, - "Guest_LacombeStrawHouse": 568809873, - "Guest_BerkshireStickHouse": 1932133405, - "Guest_TamworthBrickHouse": 894027634, - "Guest_RustyTinderSpark": 1237916230, - "Guest_CoraWinterBranch": 1901918989, - "Guest_GrambleGoldRook": 1986988546, - "Guest_PiperStormTree": 1109520133, - "Guest_Hanadzura": 124838500, - "Guest_Kuchisaki": 2084188681, - "Guest_Kaizoku": 807430784, - "Guest_JaxonLastRites": 1653711119, - "Guest_SeijunKiller": 657647155, - "Guest_ZarichiTarakata": 1129212566, - "Guest_BladelessRonin": 1577395797, - "Guest_SanzokuOutlaw": 1682888807, - "Guest_SanzokuBandit": 1766198653, - "Guest_KakedaPainbringer": 1260119278, - "Guest_KakedaStalker": 367458449, - "Guest_KakedaShadow": 1604499626, - "Guest_KakedaSoulcrusher": 1961168112, - "Guest_ImitsuPlaguemaster": 1361539025, - "Guest_ImitsuDefouler": 1299791045, - "Guest_ImitsuPunisher": 234819300, - "Guest_StudentofKhai": 249757647, - "Guest_OtomoBattlemage": 918160114, - "Guest_OtomoCourier": 1373253378, - "Guest_OtomoSupplyRunner": 1580070577, - "Guest_OtomoScout": 1814051082, - "Guest_OtomoWrestler": 1053571230, - "Guest_OtomoFury": 111319603, - "Guest_Hyottoko": 307080225, - "Guest_Usunoki": 1881339626, - "Guest_Kagemoosha": 1842766119, - "Guest_UdoJin-e": 850816224, - "Guest_TakedaKanryu": 536087422, - "Guest_Tamauji": 818613882, - "Guest_Jikiru": 794167355, - "Guest_Nomoonaga": 849534658, - "Guest_Aiuchi": 515942855, - "Guest_Kurogaso": 1426248002, - "Guest_Ideyoshi": 1814038213, - "Guest_Koto": 1151260427, - "Guest_Usegi": 977549586, - "Guest_Kanago": 1644367227, - "Guest_Kyuto": 1168225979, - "Guest_Haru": 2070048389, - "Guest_Ashikata": 1523446928, - "Guest_Katsumori": 1823914597, - "Guest_Hingen": 1567896261, - "Guest_Yakedo": 502298497, - "Guest_Do-Daga": 1239945714, - "Guest_Maito": 979260804, - "Guest_TonkatsuThug": 1758658397, - "Guest_GobbloreanGuard": 1286210991, - "Guest_BabblingMeints": 413418139, - "Guest_PrinceGobblestone": 1813171676, - "Guest_GobblerMuncher": 1517159487, - "Guest_GobblerGorger": 130736772, - "Guest_GobblerScouter": 1509427587, - "Guest_GobblerGlutton": 1912199781, - "Guest_GobblerScavenger": 136586791, - "Guest_BaronGreebly": 1028182200, - "Guest_BaronRotunda": 457132907, - "PP_DeathMimic": 1811942047, - "Guest_GreenMan": 1126663802, - "Guest_ForestGrump": 1602350320, - "Guest_ErvintheBarbarian": 1671762776, - "Guest_RazortuskWarrior": 1109994549, - "Guest_RazortuskBrawler": 732265321, - "Guest_SplithoofRager": 1922134329, - "Guest_TuskedRaider": 1920114147, - "Guest_SviniBeserker": 1146317608, - "Guest_SviniReaver": 216717251, - "Guest_Shattertusk": 1191456730, - "Guest_SplithoofBarbarian": 296671728, - "Guest_Bloodseeker": 2086598239, - "Guest_Scarsnout": 1831766077, - "Guest_MasterTonkatsu": 1783298894, - "Guest_Grisletusk": 657393295, - "Guest_SplithoofBloodguard": 488382274, - "Guest_BristlehideRaider": 237078958, - "Guest_Gullin": 1656401882, - "Guest_ForestNymph": 812055814, - "Guest_SassafrasMan": 1327049788, - "Guest_RandolfSpellshine": 108808620, - "Guest_BleysFlamerender": 434070106, - "Transformation_Khan": 1398327634, - "Transformation_TheBat": 1675113521, - "MNT_DireWolf": 845578449, - "MNT_YuleMule": 1976182058, - "MNT_LightBlades": 829118450, - "MNT_FlyingSquid": 1573132252, - "PP_Globulin": 467801224, - "PP_BeastBaby": 1807874692, - "PP_SaniBot": 670845902, - "Mount_SwarmSand": 1277669407, - "Guest_Nodnarb": 211478288, - "Guest_LordBramble": 1118781162, - "Guest_Yogash": 506264561, - "Guest_Marcio": 499428996, - "Guest_Procyon": 1115376865, - "Guest_Thunderfin": 2029218563, - "Guest_ArkynMoonblade": 1152775206, - "Guest_CreeCurdWright": 1714953095, - "Guest_DeerMouseRevenant": 315064435, - "Guest_ElanaDarksun": 837982094, - "Guest_KingAlricFateSailor": 1934591130, - "Guest_LaughingCalaca": 984492527, - "Guest_WraithKnight": 620484548, - "Guest_FieryEchoofApep": 484636593, - "Guest_FrostyEchoofApep": 171933154, - "Guest_FalseEchoofApep": 479387377, - "Guest_ChargedEchoofApep": 1229406800, - "Guest_ShrowdengersQhat": 101563303, - "Guest_Scrollkeeper": 643219293, - "Guest_TerrorHound": 753341570, - "Guest_CondemnedMander": 445370758, - "Mnt_SnowStorm": 1491572670, - "Mount_ChimneySweeper": 378571534, - "MNT_PineappleCandyCane": 1630795796, - "Guest_TyphonDustwind": 740849673, - "MNT_StickHorse": 216654744, - "MimicTemplate": 1461219184, - "MNT_Ball_N_Chain": 289720920, - "PP_PeaceDove_A": 1785119671, - "Mount_Gyrocycle": 1495008048, - "PP_BattleMageDragon_A": 1864696711, - "MNT_BattleBeast": 1304449286, - "MNT_SmokeTrails": 387873030, - "Mount_FriendshipHare": 677127330, - "MNT_ButterflySwarm": 383602683, - "PP_EggChick_B": 1959154042, - "MNT_Unicorn": 562210585, - "PP_StuffedUnicorn": 1731641773, - "MNT_ParadeTruck": 2026348978, - "MNT_ParadeTruckXmas": 1017864627, - "MNT_AutumnLeafSwarm": 1540002279, - "PP_GingerbreadMan": 1796172229, - "PP_DecadeDragon": 1819398630, - "MNT_StageShip": 829852992, - "PP_DramaLlama": 255896529, - "PP_HallMinotaur_A": 1492017563, - "Guest_MacDeath": 1526226705, - "Guest_MacDeathUnderstudy": 1731752647, - "Guest_MacLifeUnderstudy": 257466641, - "Guest_MacStormUnderstudy": 8295117, - "MNT_Pantera": 1135198, - "MNT_StagLight": 1908778048, - "MNT_GiantSpider": 1247185021, - "MNT_StagEvil": 872303931, - "PP_BaskHound": 1093866594, - "PP_Marionette": 1688299938, - "PP_Marionette_B": 1688297824, - "Guest_Izft": 996301405, - "Guest_SapotisMinion": 1625665891, - "Guest_CrazedSlave": 1473233468, - "Guest_CharmedSlave": 803043667, - "Guest_EnsorcelledSlave": 40920285, - "Guest_HallServant": 2038116460, - "Guest_SiathePerceiver": 1235571913, - "Guest_Kiwu": 1151177787, - "Guest_NightImp": 1051843424, - "Guest_EvilTrickster": 1035477123, - "Guest_DeepWoodsImp": 1502444054, - "Guest_ForestPest": 802235713, - "Guest_TaintedForestImp": 1030343985, - "Guest_Youkai": 518367729, - "Guest_CarthaginianElephantWarrior": 776293919, - "Guest_IdrisBeast-Taker": 106759521, - "Guest_MikaSkarka": 237956516, - "Guest_Belloq": 757247833, - "Guest_GurtokPiercer": 549466122, - "Guest_GurtokFirebender": 817966523, - "Guest_GurtokDemon": 544070162, - "Guest_GeneralFiretusk": 2073037770, - "Guest_GurtokBarrierDemon": 44657563, - "Guest_BlacktuskShaman": 1009070925, - "Guest_FireDemon": 158367196, - "Guest_DeathOni": 1916642000, - "Guest_JadeOni": 1289517185, - "Guest_PlagueOni": 1464586443, - "Guest_WarOni": 1630196094, - "Guest_BrokenLandMammoth": 1587008312, - "Guest_SunderedSeamMammoth": 1272698721, - "Guest_BullyMammoth": 170705927, - "Guest_Bullhemoth": 146998717, - "Guest_Kogasha": 1909654543, - "Guest_MusuthBerserker": 1741298129, - "Guest_BlackTuskCultist": 1771575961, - "Guest_AksilBlacktrunk": 1253596409, - "Guest_LongdreamerShaman": 1521283133, - "Guest_MuratGreyeyes": 1296814314, - "Guest_ElephantSoldier": 1443670145, - "Guest_DarajaniGuard": 1597288495, - "Guest_Loremaster": 1792470809, - "Guest_Pork": 2069999347, - "Guest_Beans": 97706585, - "MNT_Ox": 1292937747, - "PP_PropellerSquirrel": 1657443894, - "Guest_RasikPridefall": 97921485, - "Guest_AmedrasLightstep": 1818417025, - "MNT_SmokeTrails_Balance": 1358150715, - "MNT_SmokeTrails_Fire": 702971609, - "MNT_SmokeTrails_Ice": 190218501, - "MNT_SmokeTrails_Life": 2045542105, - "MNT_SmokeTrails_Myth": 1276281121, - "MNT_SmokeTrails_Storm": 564954622, - "Guest_Bellosh": 1407013027, - "Guest_AcampiReedfist": 2076527733, - "Guest_AgnettaBroadblade": 14864960, - "Guest_FrostheartRaider": 1574787221, - "Guest_JordaSwordbearer": 1627071850, - "Guest_KasaiBaku": 1153107369, - "Guest_ZoraimeiHelephant": 1002482606, - "Guest_ConscriptedMander": 43811125, - "Firecat_Decade": 409516955, - "MNT_BatGlider": 2086258491, - "Transformation_PlayerHomework": 673389670, - "Transformation_PlayerAttendance": 422287307, - "Transformation_PlayerLecture": 2035625874, - "Transformation_PlayerPopQuiz": 483367038, - "MNT_GingerbreadHorse": 1369242781, - "MNT_NimbariChariot": 1251740392, - "PP_NimbariDog": 1235126828, - "Transformation_PlayerGrandma": 1128332272, - "Transformation_PlayerScionA": 33862367, - "PP_Mushroom": 1568942158, - "MNT_Scooter": 1148167046, - "MNT_Scooter_B": 2079302532, - "MNT_Scooter_C": 1810867076, - "MNT_Scooter_D": 468689796, - "MNT_IceCycle": 415797788, - "Transformation_PlayerScionA02": 33921759, - "Guest_FearoftheFuture": 947210229, - "Guest_FearofGremlins": 405857384, - "Guest_RootGuardian": 922940845, - "Guest_VineThrasher": 172546427, - "Guest_BlightWalker": 1438155154, - "Guest_BriarScourge": 615681851, - "Guest_DreamJabberwock": 907754098, - "Guest_DreamBelloq": 990352002, - "Guest_Voltergeist": 1558128068, - "Guest_SpecialBranch": 1927849418, - "Guest_MutantBriar": 805892802, - "Guest_FeralBriar": 883790223, - "Guest_MaizeMonster": 688905764, - "Guest_DreamShadowwock": 1432458248, - "Mount_Heartboard": 1421972759, - "PP_ChocoBunny": 324797859, - "Mount-PogoFlower": 906659501, - "MNT_AethyrCloud": 1586061078, - "MNT_Fangle": 7846854, - "Guest_StarfallSpider": 1177620831, - "Guest_AshSpider": 1588502553, - "Guest_CorruptedWeaver": 38937211, - "Guest_CrystalCrawler": 1197980149, - "Guest_ShimmerWidow": 1300740128, - "Guest_FacetedSpikespinner": 1939719331, - "Guest_CrystallineQueen": 1999282256, - "Guest_AncientCrystalweaver": 1409608801, - "Guest_FangtoothLavaspinner": 1538042104, - "Guest_VenomousHeatseeker": 1234682482, - "Guest_FireweaveRockbiter": 300743778, - "Guest_MonkeySpider": 754090007, - "Guest_CryptSpider": 1545405304, - "Guest_CommonHouseSpider": 613486002, - "Guest_ArachnaMagnaMagus": 825817937, - "Guest_ArachnaSoldier": 270978709, - "Guest_Gnissa": 1699826178, - "Guest_WebwoodScuttler": 1728611075, - "Guest_SandSpider": 61789007, - "Guest_WebwoodCreeper": 1013382584, - "Guest_Skathi": 1631429165, - "Guest_ArchmagusLorcan": 321146960, - "Guest_CrawleroftheMist": 2076696304, - "Guest_PaintedSpider": 1482115552, - "Guest_GiantSpider": 1545526191, - "Guest_CaveCrawler": 2101587667, - "Guest_RattleCatcher": 1472707326, - "Guest_TrapdoorSpider": 1321643694, - "Guest_RockClinger": 1304266411, - "Guest_InquisitorXimenez": 1053483090, - "Guest_ElderMagus": 1017836836, - "Guest_WardenBenthamic": 18807199, - "Guest_SpiderArchmagus": 387645558, - "Guest_SpiderAdept": 2094873407, - "Guest_InterrogatorRentenius": 1245984179, - "Guest_WarpedWeaver": 495882677, - "Guest_ArachnaSkinner": 281864085, - "Guest_SkinnerConscript": 2028526453, - "Guest_ArachnaGladiator": 2492046, - "Guest_LorcanInitiate": 353311753, - "Guest_Serket": 1871335773, - "Guest_IceWeaver": 2063216026, - "Guest_SpiritSpinner": 525666327, - "Guest_MysteriousCrawler": 218352756, - "Guest_BlackWidow": 1909331619, - "Guest_BrownRecluse": 1146386275, - "Guest_Creeper": 1197442790, - "Guest_GearSpinner": 67020478, - "Guest_Clinker": 1194519062, - "Guest_Clanker": 1194517014, - "Guest_GrandfatherSpider": 1330981335, - "Guest_Spiderling": 1400274461, - "Guest_ManekiWebWalker": 888348786, - "Guest_KoganiDeathCrawler": 276010604, - "Guest_CheliceranCrawler": 1169176517, - "Guest_ArachniteCreeper": 1850534774, - "Guest_ChelicaranStalker": 2057291848, - "Guest_HornedMonkeySpider": 1301514577, - "Guest_GreyOgreSpider": 1533774471, - "Guest_StarburstSpider": 698029451, - "Guest_PaintedCaveMonster": 601315479, - "Guest_RubbleRouser": 220785666, - "Guest_EarthElemental": 435260049, - "Guest_SharpshardWarrior": 1403237237, - "Guest_Firevein": 1220046430, - "Guest_Blackblade": 458130537, - "Guest_VengefulFireheart": 563205004, - "Guest_FirerockStomper": 608552855, - "Guest_BlackrockGuardian": 1663799582, - "Guest_ConfusedSentry": 24655510, - "Guest_SilverSentinel": 1090673683, - "Guest_SilverServant": 84560693, - "Guest_GiantHomunculus": 456098557, - "Guest_PropertyMaster": 229101764, - "Guest_VaultProtector": 185568207, - "Guest_PlatedDefender": 79324363, - "Guest_Avalanche": 761613547, - "Guest_RockReaver": 919912933, - "Guest_Frostmantle": 856308090, - "Guest_GlacierWalker": 131215932, - "Guest_SandBehemoth": 272513357, - "Guest_RunedAnnihilator": 121339936, - "Guest_RunedDevestator": 1611071181, - "Guest_RunedGuardian": 1986312667, - "Guest_CanyonRager": 1123038266, - "Guest_RubbleReaver": 220774678, - "Guest_Boulderbone": 122279242, - "Guest_Nali": 77467516, - "Guest_Gnar": 1151164930, - "Guest_GlacialAvenger": 1181253632, - "Guest_SokkwiKeymaster": 190919624, - "Guest_SandsofTime": 34920273, - "Guest_BladeGolem": 435561523, - "Guest_FrostColossus": 1564686403, - "Guest_IceColossus": 335477257, - "Guest_PollutedEarthWalker": 86045387, - "Guest_CorruptedEarthSpirit": 1135891559, - "Guest_Stonebreaker": 1317905436, - "Guest_StoneElemental": 1715022018, - "Guest_VolcanisGolem": 1904918929, - "Guest_WaterElemental": 1717850987, - "Guest_AshenDeathMonkeySpider": 35356665, - "Guest_DeathMonkeySpider": 1525508507, - "Guest_MotherMonkeySpider": 110317392, - "Guest_DoomMonkey": 1135105500, - "Guest_DreamMorganthe": 907599965, - "Guest_DragonBeetle": 1974635734, - "Guest_SandWalker": 1530843985, - "MNT_PandaMama": 916371162, - "PP_BabyPandas": 778536285, - "PP_FrogPrince": 729975205, - "MNT_PumpkinCarriage": 183672737, - "Mount_Gobbler_B": 1193388729, - "PP_Hamster": 1578040708, - "Guest_Steeleton": 657429968, - "Guest_GoldenWyrm": 311022393, - "MNT_Roc": 1564431869, - "PP_BabyGriffin": 1913686406, - "Transformation_ShadowDPSMob": 936133896, - "Transformation_ShadowTankMob": 305660992, - "Transformation_ShadowHealMob": 356596800, - "Guest_SpiritofIgnorance": 1577360126, - "Guest_FecklessSoul": 519648315, - "Guest_BurnedOutSoul": 312181646, - "Guest_BenightedRevenant": 2131956962, - "Guest_TombLurker": 1901203489, - "Guest_DesertGolem": 543642682, - "Guest_KumoOni": 215822625, - "Guest_SpellwritStalker": 161772776, - "PP_Sun": 1723237840, - "Guest_Leadite": 4480416, - "Mount_FestiveFox": 2125832348, - "PP_FenrisWolf": 1601784680, - "PP_SchoolPiggle": 109782407, - "PP_FenrisWolf_Red": 1597992854, - "PP_FenrisWolf_Teal": 1455058454, - "PP_FenrisWolf_White": 1102186199, - "Transformation_NinjaPig_Fire": 984575055, - "Transformation_BG_RatThief_Myth": 1191155131, - "Transformation_BG_RatThief_Storm": 675891897, - "MNT_Umbrella": 955683437, - "Transformation_BG_Elf_Ice": 1209681129, - "Transformation_BG_Fairy_DarkMinion_Balance": 33521202, - "Transformation_BG_Cyclops_Death": 876023972, - "Transformation_BG_Minotuar_Fire": 1118476387, - "Transformation_BG_WolfWarrior_Storm": 2075594475, - "Transformation_BG_WolfWarrior_Balance": 746159992, - "Transformation_BG_Draconian_Myth": 903606820, - "Transformation_BG_Draconian_Life": 1501291044, - "Transformation_BG_Colossus_Life": 1320377666, - "MNT_DolphinChariot": 102982520, - "MNT_EvilWagon": 685457563, - "MNT_FlyingDutchman": 1176206544, - "PP_SeaHorse": 2024322494, - "PP_EvilTeddy": 1159020925, - "PP_ZombieParrot": 384805107, - "Transformation_BG_Ice_Colossus": 299613211, - "MNT_CarrierBat": 7323333, - "Transformation_BG_Minotaur_MythTempalte": 430330904, - "PP_FeatheredTabby": 452526748, - "Transformation_Detritus01": 1335763402, - "Guest_Metallossus": 335457082, - "MNT_SantaJaws": 464410203, - "MNT_BattleBadger": 532858222, - "Transformation_Shedder01": 2069145892, - "PP_NatureSpirit": 373176286, - "Transformation_Devourer01": 1004421540, - "Guest_TheDevourer": 1591187996, - "Guest_Treeminder": 1093207850, - "Guest_RenegadeDruid": 2087982292, - "Guest_FractalTreeminder": 927174548, - "Guest_UnsettledTreeminder": 486164163, - "Guest_DragonspyreCrusader": 247317280, - "Guest_YoungGreggor": 66068670, - "Guest_GeneralGreyflame": 499924835, - "Guest_OldGreggor": 391726170, - "Guest_PrinceViggor": 853556298, - "Guest_DragonspyreVanguard": 693851565, - "Guest_SilasConviction": 177362659, - "Guest_SilasWeariness": 893431021, - "Guest_SilasRage": 1288904439, - "Guest_SilasDoubt": 1479426285, - "Guest_Lorekeeper": 147779344, - "Guest_FelixPhotomongerIII": 68387506, - "Guest_WarHavox": 1634324022, - "Guest_Mis-assembledSkeleton": 221832082, - "Guest_TreeminderGhost": 200408510, - "Guest_ViggorsDrake": 340449521, - "Guest_BlueNinjaPig": 938539327, - "Guest_RedNinjaPig": 2097962021, - "Guest_OrangeNinjaPig": 625058258, - "Guest_PurpleNinjaPig": 445746449, - "Guest_RitualColossus": 844563319, - "Guest_TinyDragon": 1123127688, - "Guest_RitualSpider": 429827552, - "Guest_RitualDraconian": 837510372, - "Guest_CC_Druid_Warrior_C_01": 55314616, - "Guest_CC_Druid_Wizard_A_01": 1046261169, - "Guest_CC_Druid_Wizard_B_01": 1046244785, - "Guest_CC_Druid_Warrior_A_01": 56363192, - "MNT_Toboggan": 995356805, - "MNT_2P_WickerTreant-001": 2065440944, - "PP_Ratatoskr": 1003497600, - "PP_Trash": 1195047012, - "Guest_CC_Druid_Wizard_D_01": 1046343089, - "MNT_Sunflower": 721091531, - "MNT_Whoopee": 1383311238, - "MNT_Warthog": 8060761, - "PP_ShamRock": 943893325, - "PP_LeapingLeprechaun": 132882517, - "PP_LionCubs": 465759803, - "PP_Tanuki": 670387843, - "MNT_Crane": 433122675, - "MNT_Krokosphinx": 739938754, - "Transformation_BG_Fairy_Life": 1897480818, - "Transformation_LiceDeepSpawnA": 244795720, - "Piggle_Alien": 1761605655, - "PP_JeweledScarab": 620544607, - "Guest_KR_Nymph_DrkMage_D50": 1248526054, - "Guest_KR_Nymph_DrkMage_C50": 1246953190, - "Guest_KR_Nymph_DrkMage_B50": 1247477478, - "Guest_KR_Nymph_DrkMage_A50": 1245904614, - "Guest_EM_Spider_Ash_01": 185724938, - "UFO": 47349, - "PP_Kit10": 326796620, - "PP_Lumi_Tulip": 84119585, - "PP_Lumi_Fern": 117015078, - "PP_Lumi_Violet": 1468797578, - "PP_Lumi_Sunny": 1769236703, - "PP_Lumi_Daisy": 1743454175, - "MNT_CelestianMech": 1238076872, - "MNT_Brontosaurus": 402157167, - "Guest_HG_AKT_Krok_Cyber_A_Balance_25": 1367985604, - "Guest_HG_AKT_Krok_Cyber_A_Balance_50": 1368084932, - "Guest_HG_AKT_Krok_Cyber_A_Balance_75": 1367988676, - "Guest_HG_AKT_Krok_Cyber_A_Balance_100": 1351303620, - "Guest_HG_AKT_Krok_Cyber_A_Balance_130": 1351270852, - "Guest_HG_AKT_Krok_Cyber_A_Fire_25": 976558490, - "Guest_HG_AKT_Krok_Cyber_A_Fire_50": 37034397, - "Guest_HG_AKT_Krok_Cyber_A_Fire_75": 305469850, - "Guest_HG_AKT_Krok_Cyber_A_Fire_100": 573905821, - "Guest_HG_AKT_Krok_Cyber_A_Fire_130": 573905824, - "Guest_HG_AKT_Krok_Cyber_A_Ice_25": 159411377, - "Guest_HG_AKT_Krok_Cyber_A_Ice_50": 541093041, - "Guest_HG_AKT_Krok_Cyber_A_Ice_75": 146828465, - "Guest_HG_AKT_Krok_Cyber_A_Ice_100": 557870241, - "Guest_HG_AKT_Krok_Cyber_A_Ice_130": 960523425, - "Guest_HG_AKT_Krok_Cyber_A_Myth_25": 976187830, - "Guest_HG_AKT_Krok_Cyber_A_Myth_50": 36663729, - "Guest_HG_AKT_Krok_Cyber_A_Myth_75": 305099190, - "Guest_HG_AKT_Krok_Cyber_A_Myth_100": 573535153, - "Guest_HG_AKT_Krok_Cyber_A_Myth_130": 573535156, - "Guest_CL-GolemButler-R9": 780077559, - "Guest_CL-GolemDigger-Boss-R10": 562020288, - "Guest_CL-GolemDigger-R9": 789375095, - "Guest_CL-GolemDigger-Rank8MythBoss-R10": 930527857, - "Guest_CL-GolemWorker-R9-1": 1072815287, - "Guest_CL-FishbotBrown-R9-1": 2006155417, - "Guest_CL-FishbotBrown-R9-2": 395542681, - "Guest_CL-FishbotGold-Boss-R10": 611881707, - "Guest_CL-FishbotGold-R9": 705414492, - "Guest_CL-FishbotYellow-Boss-R10": 23145662, - "Guest_CL-Protector-Black-Boss-R10-2": 679228793, - "Guest_CL-Protector-Gold-R10": 1909636609, - "Guest_CL-Protector-Gold-R9-1": 1909634804, - "Guest_CL-Protector-Gold-R9-2": 1909634932, - "Guest_CL-Protector-Gold-R9-3": 1909635060, - "Guest_CL-Protector-Gold-R9-4": 1909634164, - "Guest_CL-Protector-Purple-R9-Boss": 1889837072, - "Guest_CL-Protector-Purple-R9": 81760161, - "Guest_CL-Protector-Tan-Boss-R10": 912663188, - "Guest_KR_Golem_Worker": 1784607296, - "Guest_Golem-Brass-R7-1": 718939445, - "Guest_Golem-Clockwork-R7": 1161173708, - "Guest_EM_Robot_Batbot_A_01": 1482867950, - "Guest_EM_Robot_Batbot_B_02": 945947886, - "Guest_EM_Robot_Batbot_B_01": 1482818798, - "Guest_EM_Robot_Batbot_B_03": 409076974, - "Guest_EM_Robot_Batbot_B_04": 127793938, - "Guest_EM_Robot_Batbot_B_05": 664664850, - "Guest_EM_Robot_Drone_A_02": 1215188569, - "Guest_EM_Robot_Drone_A_03": 1231965785, - "Guest_EM_Robot_Drone_A_01": 1265520217, - "Guest_EM_Robot_Drone_A_04": 1315851865, - "Guest_EM_Robot_Drone_A_05": 1332629081, - "Guest_EM_Robot_Drone_A_06": 1282297433, - "Guest_EM_Robot_Drone_A_07": 1299074649, - "Guest_EM_Robot_Drone_A_08": 1114525273, - "Guest_EM_Robot_Drone_A_09": 1131302489, - "Guest_EM_Robot_Drone_A_Boss_01": 1960661151, - "Guest_EM_Robot_Drone_A_Boss_02": 1960530079, - "Guest_EM_Robot_Drone_E_01": 1265518169, - "Guest_EM_Robot_Tank_A_01": 1314796420, - "Guest_EM_Robot_Tank_A_02": 1313223556, - "Guest_EM_Robot_Drone_C_02": 1215187545, - "Guest_EM_Robot_Drone_D_03": 1231963225, - "Guest_EM_Robot_Drone_D_01": 1265517657, - "Guest_EM_Robot_Drone_D_02": 1215186009, - "Guest_EM_Robot_Tank_B_01": 1314796468, - "Guest_EM_Robot_Drone_C_01": 1265519193, - "Guest_G14-BP-Golem_Steel_Boss": 2071105129, - "Guest_G14-BP-Golem_Steel_Puzzle": 715790979, - "Guest_Golem-Brass-Elite-L38": 1163662532, - "Guest_Golem-Brass-Elite-L56": 2057562884, - "Guest_Golem-Brass-MBBoss-L48": 1498830732, - "Guest_Golem-Brass-MBBoss-L71": 1498829576, - "Guest_Golem-Brass-MBBoss-L76": 1498828936, - "Guest_Golem-Clockwork-Elite-L54-Metal": 417151527, - "Guest_Golem-Clockwork-Elite-L37": 1961943722, - "Guest_Golem-Clockwork-Elite-L54": 1950147242, - "Guest_Golem-Clockwork-L28": 1561959116, - "Guest_Golem-Clockwork-MBBoss-L37": 973152783, - "Guest_Golem-Clockwork-MBBoss-L69": 1262559759, - "Guest_Golem-Steel-Elite-L39": 1430496717, - "Guest_Golem-Steel-MBBoss-L40": 1229578887, - "Guest_Golem-Steel-MBBoss-L43": 1229579015, - "Guest_Golem-Steel-MBBoss-L50-1": 1231762051, - "Guest_Golem-Steel-MBBoss-L50": 1229578883, - "Guest_Golem-Steel-MBBoss-LXX": 1229583927, - "Guest_Golem-Wood-Elite-L35": 904360756, - "Guest_Golem-Wood-Elite-L37": 1978102580, - "Guest_Golem-Wood-Elite-L50": 1813548236, - "Guest_Golem-Wood-MBBoss-L63": 1392041724, - "Guest_MB-Gauntlet-Golem-Clockwork": 854649045, - "Guest_Spider-Golem-MBBoss-L67": 253352706, - "Guest_Spider-Golem-MBBoss-L96": 253348994, - "Guest_WC-MAW-GasGolem-Minion": 1511013798, - "Guest_WC-MAW-GasGolemLife-Minion": 1306026584, - "Guest_Golem-Steel-L02": 1027229749, - "Guest_Golem-Clockwork-L01": 1409915596, - "Guest_Gauntlet-01-Golem-Steel-Ghost-R8": 402816318, - "Guest_Golem-Wood-L01": 156976035, - "Guest_HG-Clock-ClockworkSpanner-20": 1523370449, - "Guest_HG-Clock-ClockworkSpanner-40": 1523370455, - "Guest_HG-Clock-ClockworkSpanner-60": 1523370453, - "Guest_HG-Clock-ClockworkSpanner-80": 1523370459, - "Guest_HG-Clock-ClockworkSpanner-100": 1523354068, - "Guest_HG-Clock-ClockworkSpanner-120": 1523354004, - "Guest_AQ-Cyclops-Guard": 191361948, - "Guest_AQ_Cyclops_Guard_A_Boss_01": 114747100, - "Guest_CL-Cyclops-Death-R10": 611013866, - "Guest_Cyclops-Death-Boss-R7": 1192370725, - "Guest_Cyclops-Death-Boss-R9": 1192370717, - "Guest_Cyclops-Death-R7": 144593791, - "Guest_GH-Cyclops-Death-R6": 594236619, - "Guest_Cyclops-BlueHelmet-KTBoss-L03": 1720105277, - "Guest_Cyclops-Red-L12": 1816429840, - "Guest_MR_Cyclops02WHelmet_Model_01": 1483732416, - "Guest_Cyclops-Blue-L02": 1633021234, - "Guest_Cyclops-BlueHelmet-WCBoss-L03": 427378332, - "Guest_Cyclops-RedHelmet-WCBoss-L03": 2021269422, - "Guest_HG_Sinbad_Cyclops_25": 911979034, - "Guest_HG_Sinbad_Cyclops_50": 1856261606, - "Guest_HG_Sinbad_Cyclops_75": 861647386, - "Guest_HG_Sinbad_Cyclops_100": 1789152678, - "Guest_HG_Sinbad_Cyclops_130": 178539942, - "Guest_HG_Sinbad_IronSultan_25": 930031152, - "Guest_HG_Sinbad_IronSultan_50": 930051504, - "Guest_HG_Sinbad_IronSultan_75": 930030768, - "Guest_HG_Sinbad_IronSultan_100": 927954864, - "Guest_HG_Sinbad_IronSultan_130": 927942576, - "MNT_SweetRide": 1643297840, - "PP_FrilledDino": 1395342809, - "PP_Celestian": 95679303, - "PP_Sun_Angry": 1955190071, - "PP_Marshmallow": 1220667954, - "MNT_Umbrella_B": 923364822, - "MNT_Tamer": 1050737194, - "PP_BumbleBee_B": 858653433, - "MNT_PunkFlamingo": 1634690818, - "MNT_2P_WoolyRhino": 1395943031, - "PP_Retriever": 72842604, - "PP_Piggle_Caveman": 181356174, - "PP_DecennialDragon": 1396523337, - "MNT_Tiger_Rainbow": 515535412, - "MNT_CarrierGhosts": 1833039309, - "MNT_Sled": 617654308, - "Transformation_BG_RatThief_Death": 30691641, - "Transformation_BG_Elf_Storm": 44352983, - "Transformation_BG_WolfWarrior_Ice": 986304351, - "MNT_CarriorGhost_B": 1768732109, - "MNT_CarriorGhost_C": 1766634957, - "Transformation_BG_Colossus_Fire": 1318803522, - "Transformation_BG_Krok_Balance": 140952965, - "Guest_KM_Gobbler_Skinny_A_11": 773648065, - "Guest_KM_Robot_Candy_A_01": 480414124, - "Guest_KM_Robot_Candy_A_02": 530745772, - "Guest_KM_Robot_Candy_A_03": 513968556, - "Guest_KM_Robot_Candy_A_04": 430082476, - "Guest_KM_Robot_Candy_A_05": 413305260, - "Guest_KM_Gummy_Bear_A_01": 1940905059, - "Guest_KM_Gummy_Bear_D_01": 1940905011, - "Guest_KM_Gummy_Bear_E_01": 1940904995, - "Guest_KM_Gummy_Bear_A_02": 1941429347, - "Guest_KM_Gummy_Bear_D_02": 1941429299, - "Guest_KM_Gummy_Bear_E_02": 1941429283, - "Guest_KM_Gummy_Bear_B_01": 1940905043, - "Guest_KM_Gummy_Bear_B_02": 1941429331, - "Guest_KM_Gummy_Bear_B_03": 1941953619, - "Guest_KM_Gummy_BearHat_A_01": 853226448, - "Guest_KM_Gummy_BearHat_A_02": 853226460, - "Guest_KM_Gummy_Bunny_A_01": 324805042, - "Guest_KM_Gummy_Bunny_C_01": 324806066, - "Guest_KM_Gummy_Bunny_D_01": 324807602, - "Guest_KM_Gummy_Bunny_E_01": 324807090, - "Guest_KM_Gummy_Bunny_F_01": 324808626, - "Guest_KM_Gummy_BunnyUber_A_01": 525565930, - "Guest_KM_Gummy_Worm_A_01": 231044195, - "Guest_KM_Gummy_Worm_B_01": 231044179, - "Guest_KM_Gummy_Worm_C_01": 231044163, - "Guest_KM_Gummy_Worm_A_02": 232617059, - "Guest_KM_Gummy_Worm_B_02": 232617043, - "Guest_KM_Gummy_Worm_C_02": 232617027, - "Guest_KM_Gummy_Bear_F_01": 1940904979, - "Guest_KM_Gummy_Bear_F_02": 1941429267, - "Guest_KM_Gummy_Bunny_C_02": 274474418, - "Guest_KM_Robot_Candy_A_06": 463636908, - "Guest_KM_Alphoi_DarkF_A_01": 475441543, - "Guest_KM_Gobbler_Skinny_A_01": 773648069, - "Guest_KM_Gobbler_Skinny_A_02": 773648197, - "Guest_KM_Gobbler_Skinny_A_03": 773648325, - "Guest_KM_Gobbler_SkinnyF_A_01": 254411012, - "Guest_KM_Gobbler_Skinny_A_04": 773647429, - "Guest_KM_Gobbler_Skinny_A_05": 773647557, - "Guest_KM_Gobbler_Skinny_A_06": 773647685, - "Guest_KM_Gobbler_SkinnyF_A_02": 254423300, - "Guest_KM_Gobbler_Skinny_A_07": 773647813, - "Guest_KM_Gobbler_Skinny_A_08": 773646917, - "Guest_KM_Gobbler_Skinny_A_09": 773647045, - "Guest_KM_Gobbler_SkinnyF_A_03": 254419204, - "Guest_KM_Gobbler_Fat_A_01": 1440595742, - "Guest_KM_Gobbler_Fruit_B_01": 1236446660, - "Guest_KM_Gobbler_Fruit_A_01": 1235922372, - "Guest_KM_Gobbler_Guard_B_01": 1435667582, - "Guest_KM_Gobbler_Skinny_A_10": 773647937, - "Transformation_PlayerBabyCarrot": 1580787628, - "Transformation_PlayerDeadBeet": 1992261692, - "Transformation_PlayerDisparagus": 373797484, - "Transformation_PlayerSnowPeas": 634199102, - "PP_Snowflake": 2036143125, - "PP_GummyBear_Myth": 117787890, - "PP_GummyBear_Death": 236577760, - "PP_GummyBear_Balance": 2100524337, - "PP_GummyBear_Life": 118020336, - "PP_GummyBear_Fire": 117995748, - "PP_GummyBear_Storm": 247437198, - "PP_GummyBear_Ice": 122536570, - "MNT_SnowOwl": 1578473542, - "Guest_KM_Gummy_Bear_Uber_A_01": 1856208859, - "Guest_KM_Gummy_Bear_Uber_A_02": 1856196571, - "MNT_ChocolateMoose": 567538552, - "MNT_Ram_Candied": 1913603720, - "Guest_KM_Spider_Mage_A_01": 1529720120, - "Guest_KM_Spider_Mage_B_01": 1529719608, - "Guest_KM_Spider_Mage_C_01": 1529719096, - "Guest_KM_Spider_Mage_D_01": 1529718584, - "Guest_KM_Spider_Mage_E_01": 1529718072, - "PP_SpriteDark_Balance": 914900728, - "MNT_Tricycle": 991465753, - "Guest_Tri-Gauntlet-Protector-Gold": 2029952053, - "Guest_Tri-Gauntlet-FishbotGold": 130267882, - "Guest_HG-Clock-Clockworker-20": 281216243, - "Guest_HG-Clock-Clockworker-40": 281217011, - "Guest_HG-Clock-Clockworker-60": 281216755, - "Guest_HG-Clock-Clockworker-80": 281215475, - "Guest_HG-Clock-Clockworker-100": 283313523, - "Guest_HG-Clock-Clockworker-120": 283321715, - "Guest_HG-Clock-Lugs-20": 1452756928, - "Guest_HG-Clock-Lugs-40": 1452756960, - "Guest_HG-Clock-Lugs-60": 1452756992, - "Guest_HG-Clock-Lugs-80": 1452756768, - "Guest_HG-Clock-Lugs-100": 1452494736, - "Guest_HG-Clock-Lugs-120": 1452493712, - "Guest_HG-Clock-Lucia-20": 1041451626, - "Guest_HG-Clock-Lucia-40": 1041450602, - "Guest_HG-Clock-Lucia-60": 1041449578, - "Guest_HG-Clock-Lucia-80": 1041456746, - "Guest_HG-Clock-Lucia-100": 1049840746, - "Guest_HG-Clock-Lucia-120": 1049873514, - "Guest_KM_Gummy_Worm_A_03": 232092771, - "MNT_Scooter_E": 200254340, - "PP_WolfWarrior_Balance": 991302673, - "PP_PetGift": 1816280689, - "PP_RatThief": 1390866051, - "Guest_PL_Titan_Small_A": 2015819364, - "Guest_PL_Titan_Large_B": 699791264, - "Guest_PL_Titan_Medium_A": 326730424, - "PP_Draconian": 1631557208, - "MNT_Pantera_Astral": 106092538, - "PP_YearOx": 105653084, - "PP_WolfWarrior_Ice": 1043644935, - "PP_SpriteDark": 2031730054, - "PP_Brudel": 1355697143, - "MNT_Astronomers": 742732792, - "MNT_CouchPotato": 418050932, - "MNT_Flowerfarthing": 1396771051, - "MNT_Astronomers_Blue": 236532779, - "MNT_Astronomers_Rainbow": 4428274, - "PP_Astronomer": 782095961, - "Guest_KM_Gummy_Bunny_B_01": 324806578, - "Guest_KM_DeadBeets_A_01": 1396016635, - "MNT_GummyBunny": 775900704, - "MNT_GummyBunny_A": 775834080, - "MNT_GummyBunny_B": 775836128, - "MNT_GummyBunny_C": 775838176, - "Transformation_BG_Minotaur_Life": 1445109091, - "MNT_Armadillo": 825635826, - "PP_SootGremlin": 768969093, - "PP_RoadRunner": 2057802060, - "MNT_TinyTrolly": 160881792, - "PP_Frog_B": 1530124761, - "MNT_FjordDragon": 129204340, - "Transformation_BG_NinjaPig_Myth": 422914079, - "PP_CorgiPup": 1638656105, - "MNT_Skateboard": 728018224, - "PP_Krokomummy": 326396577, - "MNT_Vroom": 1736383110, - "MNT_PlayerWings_AtralRaven": 1514774167, - "PP_Blimp": 690882397, - "Guest_GH_WoodenSkeletonKey_Boar_Boss_Grey_01": 678055851, - "Guest_GH_StoneSkeletonKey_Boar_Boss_Grey_01": 571670691, - "Guest_GH_GoldSkeletonKey_Boar_Boss_Grey_01": 961728819, - "MNT_Cloud_Promo_AW_01": 2032670992, - "Guest_EM_Hornet_Burner_A_01": 1881854632, - "Guest_EM_Hornet_Burner_A_02": 1881854636, - "Guest_EM_Hornet_Zapper_A_01": 2058539689, - "Guest_EM_Hornet_Zapper_A_02": 2058539685, - "Guest_EM_Ant_Giant_D_01": 379386121, - "Guest_EM_Ant_Giant_A_02": 1768146677, - "Guest_EM_Ant_Giant_A_01": 1768097525, - "Guest_EM_Ant_Giant_B_01": 379386122, - "Guest_KR_Moth_Priest_G_Achera": 381233569, - "Guest_KR_BeeMonsterF_A": 135146211, - "Guest_KR_BeeMonsterF_A_Weak": 1824123847, - "Guest_KR_Bee_Warrior_A": 1569202664, - "Guest_KR_Bee_Warrior_B": 1569204200, - "Guest_KR_Bee_Warrior_C_BossDrones": 1217189631, - "Guest_KR_Bee_Warrior_D": 1569205224, - "Guest_KR_Bee_Warrior_E": 1569204712, - "Guest_KR_Bee_Warrior_G": 1569205736, - "Guest_KR_Bee_Warrior_G_BossFight": 1055035476, - "Guest_KR_Bee_Warrior_H": 1569207272, - "Guest_KR_Bee_Warrior_I": 1569206760, - "Guest_KR_Bee_Warrior_L": 1569209320, - "Guest_KR_Bee_Warrior_M": 1569208808, - "Guest_KR_DragonBeetle_Monster_A": 1777853782, - "Guest_KR_Hornet_Drone_A": 1161590757, - "Guest_KR_Hornet_Drone_B": 1161607141, - "Guest_KR_Hornet_Drone_C": 1161623525, - "Guest_KR_Hornet_Drone_D": 1161639909, - "Guest_KR_Hornet_Drone_E": 1161656293, - "Guest_KR_Lice_DeepSpawn_A": 761604959, - "Guest_KR_Mantis_HunterF_A": 820917199, - "Guest_KR_Mantis_HunterF_B": 871248847, - "Guest_KR_Mantis_HunterF_C": 854471631, - "Guest_KR_Mantis_HunterF_D": 904803279, - "Guest_KR_Mantis_HunterF_F": 938357711, - "Guest_KR_Mantis_HunterF_F_Driftwood": 2053608437, - "Guest_KR_Mantis_HunterF_G": 921580495, - "Guest_KR_Mantis_HunterF_H": 971912143, - "Guest_KR_Mantis_HunterF_I": 955134927, - "Guest_KR_Mantis_HunterF_I_Zuzka": 935478878, - "Guest_KR_Mantis_HunterF_J": 1005466575, - "Guest_KR_Mantis_HunterF_J_Zelda": 886910558, - "Guest_KR_Mantis_HunterF_K": 988689359, - "Guest_KR_Mantis_HunterF_K_LongShd": 1767574336, - "Guest_KR_Mantis_HunterF_L": 1039021007, - "Guest_KR_Mantis_HunterF_M": 1022243791, - "Guest_KR_Mantis_HunterF_P_Bossfight": 1731428987, - "Guest_KR_Mantis_HunterF_Q": 552481743, - "Guest_KR_Mantis_HunterF_R": 602813391, - "Guest_KR_Mantis_HunterF_S": 586036175, - "Guest_KR_Mantis_HunterF_SecondColumnCpt_A": 1354033994, - "Guest_KR_Mantis_HunterF_T": 636367823, - "Guest_KR_Mantis_HunterF_Tribute": 1946371041, - "Guest_KR_Mantis_HunterF_U": 619590607, - "Guest_KR_Mantis_HunterF_V": 669922255, - "Guest_KR_Mantis_HunterF_W": 653145039, - "Guest_KR_Mantis_HunterF_Y": 686699471, - "Guest_KR_Mantis_HunterF_Z_Officer": 206016474, - "Guest_KR_Mantis_ProphetF_B": 1791139097, - "Guest_KR_Mantis_ProphetF_C": 1254268185, - "Guest_KR_Milipede_Warrior_A": 410726278, - "Guest_KR_Milipede_Warrior_B": 410726282, - "Guest_KR_Milipede_Warrior_C": 410726286, - "Guest_KR_Milipede_Warrior_D": 410726290, - "Guest_KR_Milipede_Warrior_H": 410726306, - "Guest_KR_Milipede_Warrior_J": 410726314, - "Guest_KR_Milipede_Warrior_K": 410726318, - "Guest_KR_Moth_Priest_A": 1421532604, - "Guest_KR_Moth_Priest_B": 1421532092, - "Guest_KR_Moth_Priest_C": 1421531580, - "Guest_KR_Moth_Priest_D": 1421531068, - "Guest_KR_Moth_Priest_D_Drepa": 1483393420, - "Guest_KR_Moth_Priest_E": 1421530556, - "Guest_KR_Moth_Priest_F": 1421530044, - "Guest_KR_Mantis_HunterF_Z": 737031119, - "Guest_KR_Roach_AntLion_A": 1860517987, - "Guest_KR_Roach_AntLion_B_Bossfight": 993284625, - "Guest_KR_Roach_AntLion_C": 1861566563, - "Guest_KR_Roach_Cook_A": 259847495, - "Guest_KR_Roach_Glutton_B": 249524334, - "Guest_KR_Roach_WaterBug_A": 1795473599, - "Guest_KR_Roach_WaterBug_B": 1745141951, - "Guest_MR_Beetle_Scarab_A_01": 1789741503, - "Guest_MR_Beetle_Scarab_A_02": 1789741491, - "Guest_MR_Beetle_Scarab_B_01": 1790265791, - "Guest_ZF-Goliath-R10-Boss-01": 7034074, - "Guest_ZF-Goliath-R10-Boss-02": 7034202, - "Guest_ZF-Goliath-R10-Boss-03": 7034330, - "Guest_ZF-Goliath-R10-Boss": 1603576807, - "Guest_ZF-Goliath-R11-Boss-01": 2140449574, - "Guest_ZF-Goliath-R11-Boss-02": 2140449446, - "Guest_ZF-Goliath-R11-Boss-03": 2140449318, - "Guest_ME1_Ant_Aunt_A": 707251855, - "Guest_ME1_Ant_Aunt_B": 1440231794, - "Guest_CC_Fly_Worker_A_01": 1497784524, - "Guest_CC_Roach_Worker_A_01": 1026321602, - "Guest_CC_Roach_Lieutenant_A_01": 1081690299, - "Guest_CC_Roach_Lieutenant_B_01": 1081690295, - "Guest_CC_Roach_Don_A_01": 547836893, - "Guest_CC_Roach_BBug_A_01": 1021150157, - "Guest_CC_Roach_RoachSteady_A_01": 859409247, - "Guest_Draconian-Caster-Yellow-Boss-R8": 1016221419, - "Guest_Draconian-Zombie-R8-2-1": 1226055265, - "Guest_Draconian-Zombie-R8-2": 1226115297, - "Guest_Draconian-Caster-Green-R7": 2143342719, - "Guest_Draconian-Warrior-Gold-Boss-R8": 1044388248, - "Guest_Draconian-Caster-Gray-R7": 95878769, - "Guest_DS-Boss-MAW": 1676071241, - "Guest_Draconian-Zombie-R8-1": 1226115309, - "Guest_Draconian-Warrior-Purple-Boss-R7": 601813964, - "Guest_Draconian-Caster-Tan-Boss-R7": 1973339532, - "Guest_Draconian-Caster-Blue-R6": 1684210173, - "Guest_Draconian-Caster-Yellow-R8": 2129956646, - "Guest_Draconian-Warrior-Red-R7": 521861944, - "Guest_Draconian-Warrior-Tan-R6": 1726416112, - "Guest_Draconian-Warrior-Purple-R8": 1896270341, - "Guest_Draconian-Caster-Blue-Boss-R7": 401581134, - "Guest_Draconian-Zombie-R8": 384497496, - "Guest_GH2-Draconian-HENCH-R10": 1149202878, - "Guest_GH2-Draconian-BOSS-R10": 2114378473, - "Guest_G14-DM-Draconian_Boss": 490246211, - "Guest_G14-DM-Draconian_Storm": 2035239226, - "Guest_G14-DM-Draconian_Ice": 782200563, - "Guest_G14-DM-Draconian_Malistaire_M": 1904691727, - "Guest_G14-DM-Draconian_Malistaire_S": 1904685583, - "Guest_G14-DM-Draconian_Malistaire_D": 1904700943, - "Guest_G14-DM-Draconian_Malistaire": 1904736751, - "Guest_G14-DM-Draconian_Malistaire_B": 1904702991, - "Guest_G14-DM-Draconian_Malistaire_I": 1904695823, - "Guest_G14-DM-Draconian_Malistaire_L": 1904692751, - "Guest_G14-DM-Draconian_Malistaire_F": 1904698895, - "Guest_Draconian-PW-Gauntlet-Boss": 493080513, - "Guest_CC_Draconian_A_01": 551348115, - "Guest_AZ-Parasaur-Undead-E": 2041242846, - "Guest_AZ-Parasaur-drkPriestF-F": 898239615, - "Guest_EM_Parasaur_DrkPriestF_A_01": 1007099606, - "Guest_EM_Parasaur_DrkPriestF_A_02": 1007099605, - "Guest_AZ-Parasaur-drkPriestF-D": 898501759, - "Guest_AZ-Parasaur-drkPriestF-E": 898370687, - "Guest_AZ-Parasaur-drkPriestF-A": 897846399, - "Guest_AZ-Parasaur-Undead-B": 1716853538, - "Guest_AZ-Parasaur-Undead-A": 106240802, - "Guest_AZ-Parasaur-Undead-G": 967501022, - "Guest_AZ-Parasaur-PriestF-D": 1177445525, - "Guest_AZ-Parasaur-Undead-C": 1179982626, - "Guest_AZ-Parasaur-drkPriestF-C": 897584255, - "Guest_AZ-Parasaur-Undead-SkurkisMinion": 1414766977, - "Guest_AZ-Parasaur-drkPriestF-B": 897715327, - "Guest_AZ-Parasaur-drkPriestF-B-Script": 1414847875, - "Guest_AZ_Parasaur_Priest_A_Boss_01": 890025421, - "Guest_AZ-Parasaur-Undead-D": 1504371934, - "Guest_AZ-Pteranodon-Knight-D": 1127364049, - "Guest_AZ-StoneSkeletonKey-Ixcax-Cursedwing": 699239601, - "Guest_AZ-Pteranodon-Knight-E": 1127363921, - "Guest_AZ-Pteranodon-Knight-F": 1127363793, - "Guest_AZ-Pteranodon-Knight-A-PageEvent": 942589002, - "Guest_AZ-StoneSkeletonKey-Minion-Death": 311645584, - "Guest_AZ-Pteranodon-Knight-A": 1127364433, - "Guest_AZ-Raptor-Wraith-A": 585729247, - "Guest_AZ-Raptor-Undead-D": 893623689, - "Guest_G14-HS-Ifzt": 1914694612, - "Guest_AZ-Raptor-Warrior-A": 855749884, - "Guest_AZ-Raptor-Undead-C": 897293705, - "Guest_AZ-Raptor-Undead-B": 896769417, - "Guest_AZ-Raptor-Undead-F": 894672265, - "Guest_AZ-Raptor-Warrior-F": 872527100, - "Guest_AZ-Raptor-Warrior-H": 973190396, - "Guest_AZ-Tritops-Warrior-I": 1942669769, - "Guest_AZ-Tritops-Undead-H": 1215305911, - "Guest_AZ-Tritops-Undead-E": 1164974263, - "Guest_AZ-Tritops-SpkWarrior-A": 860850257, - "Guest_AZ-Tritops-SpkWarrior-B": 860862545, - "Guest_AZ-Tritops-Undead-F": 1181751479, - "Guest_AZ-Tritops-Warrior-K": 868927945, - "Guest_AZ-Tritops-Undead-G": 1198528695, - "Guest_AZ-Tritops-Mummy-A": 1912444877, - "Guest_AZ-Tritops-Warrior-G": 1278555704, - "Guest_AZ-Tritops-Undead-D": 1148197047, - "Guest_AZ-Tritops-Undead-A": 1097865399, - "Guest_AZ-Tritops-SpkChief-B": 2096319577, - "Guest_AZ-Tritops-Mummy-B": 1910872013, - "Guest_AZ-Tritops-Warrior-H": 1405798857, - "Guest_AZ-Dino-Undead-A": 508678670, - "Guest_AZ-Dino-Undead-B": 508679182, - "Guest_AZ-Dino-Undead-D": 508680206, - "Guest_KR_Dino_Undead_A": 1638800628, - "Guest_KR_Dino_Undead_Minion_A": 892450235, - "MNT_HayRideTruck": 75377404, - "MNT_ShadowSpiderForm": 1439860426, - "Transformation_BG_Draconian_Death": 794598804, - "PP_BabyOrca": 1056061090, - "Transformation_BG_Cyclops_Fire": 638854828, - "Transformation_BG_Fairy_Ice": 874078461, - "PP_SpriteLife": 1824998010, - "PP_Raccoon": 1107326808, - "PP_FireKitten": 593048189, - "MNT_SkeletalDuck": 1306273036, - "PP_VampireSquid": 431023109, - "PP_CottonCandy": 891201813, - "PP_ThreeHeadGoat": 1282096939, - "PP_EyeBot": 260189248, - "MNT_DeathBoat": 1444454568, - "MNT_Lemuria": 908974762, - "MNT_DeathBoat_B": 1444456538, - "MNT_DeathBoat_C": 1444456474, - "MNT_Spooky3": 1667775622, - "MNT_PresentBox": 122082000, - "MNT_Orca": 1726961653, - "Guest_LM_Golem_Steel_A_01": 19551853, - "Guest_LM_Golem_Steel_A_02": 36329069, - "Guest_LM_EyeBot_A_01_Death": 380508535, - "Guest_LM_EyeBot_A_01_Myth": 167840640, - "PP_ThreeHeadGoat_B": 1209286443, - "PP_ThreeHeadGoat_C": 1211383595, - "Guest_KR_Eel_Whirligig_A": 1062268734, - "Guest_KR_Goliath_Behemoth_A": 1231139987, - "Guest_KR_Goliath_Behemoth_C": 1231139995, - "Guest_KR_Goliath_Behemoth_D": 1231139975, - "Guest_KR_Goliath_Behemoth_E": 1231139971, - "Guest_KR_Goliath_Behemoth_H": 1231140023, - "Guest_KR_Goliath_Crusher_C": 1651720060, - "Guest_KR_Goliath_Crusher_D": 2106376324, - "Guest_KR_Goliath_Crusher_F": 1032634500, - "Guest_KR_Goliath_Crusher_G": 495763588, - "Guest_KR_Goliath_Crusher_K": 1651720059, - "Guest_AZ-Goliath-Crusher-A": 1874784966, - "Guest_AZ-Goliath-Crusher-B": 264172230, - "Guest_AZ-Goliath-Crusher-C": 801043142, - "Guest_AZ-Goliath-Crusher-D": 809569594, - "Guest_AZ-Goliath-Crusher-E": 272698682, - "Guest_HG_AKT_Butterfly_Time_A_25": 1788523059, - "Guest_HG_AKT_Butterfly_Time_A_50": 1130017331, - "Guest_HG_AKT_Butterfly_Time_A_75": 1809494579, - "Guest_HG_AKT_Butterfly_Time_A_100": 1113240099, - "Guest_HG_AKT_Butterfly_Time_A_130": 1515893283, - "MNT_DeathBoat_D": 1444456922, - "Guest_KR_RhinoBeetle_Sun_A_Bossfight": 47895417, - "Guest_KR_RhinoBeetle_Star_A": 1947510103, - "Guest_KR_RhinoBeetle_Moon_A": 1751275863, - "Guest_ME1_Clockwork_Marine_A": 1481452452, - "Guest_ME1_Clockwork_Marine_B": 1481452068, - "Guest_CC_GoldSkeletonKey_Lice_DeepSpawn_B": 1306132994, - "Guest_KR_DamdinBazar_A_Bossfight": 1333596311, - "Guest_DS-Minion-MAW2": 356796677, - "Guest_KH-Wyrmling-1": 116330513, - "Guest_KH-Wyrmling-20": 183439385, - "Guest_KH-Wyrmling-40": 317657113, - "Guest_KH-Wyrmling-60": 451874841, - "Guest_KH-Wyrmling-80": 586092569, - "Guest_PL_Polar_Bear_Solider_C": 1785662565, - "Guest_Skeleton-Silver-WCBoss-L01": 17766963, - "Guest_Banshee-Red-Elite-L24_B": 1902069117, - "Transformation_BG_WolfWarrior_Myth": 339098032, - "Transformation_BG_RatThief_Balance": 881728218, - "Transformation_BG_Colossus_Storm": 593527492, - "Transformation_BG_Elf_Life": 347405087, - "Transformation_BG_Minotaur_Ice": 1197752291, - "MNT_TRex_B": 660285500, - "PP_SpriteDark_Ice": 2036248504, - "MNT_RollingBall": 1658139390, - "Guest_LM_TRex_Base_A_03": 1378630657, - "Guest_LM_TRex_Base_A_04": 1378745345, - "Guest_LM_TRex_Base_A_05": 1378728961, - "Guest_LM_TRex_Base_A_01": 1378663425, - "Guest_LM_TRex_Base_A_02": 1378647041, - "Guest_LM_TRex_Cyborg_A_01": 151609741, - "Guest_LM_TRex_Cyborg_A_02": 168386957, - "Guest_LM_TRex_Cyborg_A_03": 185164173, - "Guest_LM_TRex_Cyborg_B_01": 151611277, - "Guest_LM_TRex_Cyborg_D_01": 151612301, - "Guest_LM_TRex_Cyborg_E_01": 151611789, - "Guest_LM_TRex_Cyborg_C_01": 151610765, - "Guest_LM_Draconian_Base_A_01": 1607373112, - "Guest_LM_EyeBot_B_01": 1085543056, - "Guest_LM_Drone_Eye_C_01": 916954037, - "Guest_LM_Drone_Eye_D_01": 1230529608, - "Guest_LM_Drone_Eye_D_02": 1230545992, - "Guest_LM_Drone_Eye_D_04": 1230578760, - "Guest_LM_Drone_Eye_D_03": 1230562376, - "Guest_LM_Drone_Eye_A_01": 916954038, - "Guest_LM_Drone_Eye_A_02": 916937654, - "Guest_LM_Drone_Eye_B_01": 1230529611, - "Guest_LM_Drone_Eye_D_05": 1230595144, - "Guest_LM_Drone_Eye_D_07": 1230627912, - "Guest_LM_Drone_Eye_D_08": 1230644296, - "Guest_LM_Drone_Eye_A_03": 916921270, - "Guest_LM_Drone_Eye_A_04": 916904886, - "Guest_LM_Drone_Eye_C_02": 916937653, - "Guest_LM_EyeBot_B_02": 1061940593, - "Guest_LM_EyeBot_B_03": 1085543055, - "Guest_LM_EyeBot_B_04": 1061940594, - "Guest_LM_Drone_Eye_C_03": 916921269, - "Guest_LM_Robot_Kit10_A_01": 199936400, - "Guest_LM_Colossus_Mander_A_01": 2107529026, - "Guest_LM_Robot_Future_A_01": 998840846, - "Guest_LM_Robot_FutureBIG_A_01": 340408568, - "Guest_LM_Robot_FutureBIG_A_02": 340396280, - "Guest_LM_Robot_FutureBIG_A_03": 340400376, - "Guest_LM_Robot_OldOne_A_01": 779070973, - "Guest_LM_Robot_OldOne_A_02": 1315941885, - "Guest_LM_Millipede_Centi_A_01": 168575797, - "Guest_LM_Millipede_Centi_A_03": 168583989, - "Guest_LM_Millipede_Centi_A_02": 168588085, - "Guest_LM_Millipede_Centi_A_04": 168563509, - "Guest_LM_Moth_Sorcerer_A_01": 228191136, - "Guest_LM_Boar_Barbarian_A_01": 1238634912, - "Guest_LM_Boar_Barbarian_A_02": 1238634528, - "Guest_LM_Boar_Barbarian_A_03": 1238634656, - "Guest_LM_Boar_Barbarian_A_04": 1238635296, - "Guest_LM_Boar_Barbarian_A_05": 1238635424, - "Guest_LM_Boar_Chief_A_01": 357051311, - "Guest_LM_Fungus_Humango_A_01": 1398460044, - "Guest_LM_Fungus_Humango_A_02": 1398460172, - "Guest_LM_Treant_Base_A_01": 1658172241, - "Guest_LM_GiantTree_EvilRoots_A_01": 282225934, - "Guest_LM_PA_GreenMan_A_01": 67705044, - "Guest_LM_Fungus_Humango_B_01": 1348128396, - "Guest_LM_Fungus_Humango_A_03": 1398460300, - "Guest_LM_Fungus_Man_C_01": 1648824156, - "Guest_LM_Fungus_Man_C_02": 1650397020, - "Guest_LM_Rhino_Zombie_A_01": 248513993, - "Guest_LM_Malughast_Base_01": 883820436, - "Guest_LM_Malughast_Base_02": 1420691348, - "Guest_LM_Lemur_HierarchF_H_04": 231562115, - "Guest_LM_Malughast_Base_03": 1957562260, - "Guest_LM_Malughast_Base_05": 1263663212, - "Guest_LM_Malughast_Base_06": 726792300, - "Guest_LM_Malughast_Base_08": 346949523, - "Guest_LM_Malughast_Base_09": 883820435, - "Guest_LM_Malughast_Base_04": 1800534124, - "Guest_LM_Minotaur_Skeleton_A_01": 1865122824, - "Guest_LM_Lemur_Wild_B_03": 1783764037, - "Guest_LM_Lemur_HierarchF_H_01": 231541635, - "Guest_LM_Lemur_HierarchF_H_02": 231553923, - "Guest_LM_Mander_Warrior_A_01": 1651245419, - "Guest_LM_Mander_Warrior_A_02": 1651245291, - "Guest_LM_Mander_Warrior_B_01": 1634468203, - "Guest_LM_Mander_Warrior_B_02": 1634468075, - "Guest_LM_Mander_Warrior_A_03": 1651245163, - "Guest_LM_Mander_Warrior_B_03": 1634467947, - "Guest_LM_Mander_Warrior_A_06": 1651245803, - "Guest_LM_Mander_Warrior_A_05": 1651245931, - "Guest_LM_Mander_Mummy_B_01": 1844111521, - "Guest_LM_Mander_Hero_B_01": 865113284, - "MNT_HolidayHippogriff": 938892112, - "MNT_Sabertooth_Ice": 1870381696, - "PP_FenrisWolf_Bantam": 776647759, - "MNT_JetPack": 1986300552, - "MNT_Scooter_F": 1005560708, - "PP_FossaKitten_A": 431748212, - "PP_Elfvis": 147991405, - "Guest_LM_Chicken_Hero_A_01": 1308728300, - "Guest_LM_Horse_Explorer_A_01": 434405482, - "Guest_LM_Duck_HeroineF_A_01": 133199186, - "Guest_LM_Crane_Hero_A_01": 204272548, - "Guest_LM_Deer_HeroineF_A_01": 1800374959, - "Guest_LM_Deer_Hero_A_01": 223109503, - "Guest_LM_Dog_Hero_A_01": 1434615064, - "PP_YearTiger": 777048708, - "MNT_Barrel": 3576425, - "MNT_Krampus": 404117611, - "PP_ChineseTigerCub": 1256032005, - "PP_Lemur": 565774155, - "PP_Robot": 1089075331, - "PP_Capybara": 451970762, - "Guest_LM_Ghoul_Base_A_01": 1822415945, - "Guest_LM_Lemur_HierarchF_H_03": 231549827, - "Guest_LM_Ghoul_Base_A_02": 1820843081, - "Guest_LM_Ghoul_Base_A_03": 1821367369, - "MNT_SpringSoF2022": 1685679511, - "MNT_WarElephant": 875015497, - "PP_Strix": 514230046, - "MNT_Beachball": 791896033, - "MNT_Blank": 633398131, - "MNT_CardboardFlier": 1646636689, - "MNT_LochMonster": 879660722, - "Transformation_BG_Krok_Death": 1395067182, - "Transformation_BG_Draconian_Fire": 1551581732, - "PP_Scotty": 1708580475, - "Guest_KR_Mice_Knight_A": 480101508, - "PP_Peacock": 1178721112, - "MNT_PoodleMoth": 975420235, - "PP_Hummingbird": 624666906, - "PP_WolfWarrior_Myth": 470737416, - "Guest_HG_UFD_Ghost_QueenF_A_100": 795323059, - "Guest_HG_UFD_Ghost_QueenF_A_50": 728230579, - "Guest_HG_UFD_Pirate_UndeadHighland_A_Balance_150": 201145133, - "Guest_HG_UFD_Pirate_UndeadHighland_A_Balance_100": 201144941, - "Guest_HG_UFD_Pirate_UndeadHighland_A_Balance_50": 201177701, - "Guest_HG_UFD_Pirate_UndeadHighland_A_Star_150": 1329885920, - "Guest_HG_UFD_Pirate_UndeadHighland_A_Star_100": 1304720096, - "Guest_HG_UFD_Pirate_UndeadHighland_A_Star_50": 1305768671, - "Guest_HG_UFD_Pirate_UndeadHighland_A_Shadow_150": 1263689971, - "Guest_HG_UFD_Pirate_UndeadHighland_A_Shadow_100": 1263689977, - "Guest_HG_UFD_Pirate_UndeadHighland_A_Shadow_50": 189949177, - "Guest_HG_UFD_Kelpie_Warrior_A_150": 54296095, - "Guest_HG_UFD_Kelpie_Warrior_A_100": 725384735, - "Guest_HG_UFD_Kelpie_Warrior_A_50": 708607503, - "Guest_HG_UFD_Pirate_UndeadHighland_B_150": 1099317831, - "Guest_HG_UFD_Pirate_UndeadHighland_B_100": 25576008, - "Guest_HG_UFD_Pirate_UndeadHighland_B_50": 159793864, - "Guest_HG_UFD_Ghost_QueenF_A_150": 795716275, - "PP_SpiderMinion": 557357331, - "MNT_Vines_Rainbow": 1587180338, - "MNT_YoungDrake": 1279496198, - "PP_Pet_Coconut": 444388490, - "DragonKI": 1490194214, - "PP_Sharkfish": 601628284, - "PP_MimicCake": 48071878, - "Guest_AQ-Bronze-Eagle": 375279744, - "Guest_Spider-Brown-L26": 2128680185, - "Guest_KR_Spider_Giant_D": 744401035, - "Guest_Wizard-Female-Band-Blue-R8": 1447486557, - "Guest_CC_Human_DSCrusaderF_A_01": 726538068, - "Guest_WC_Scarecrow_A_01": 867491011, - "Guest_WC_Banshee_A_01": 1433786463, - "Guest_WC_LostSoul_A_01": 796936146, - "PP_Fairy_Myth": 1117624344, - "PP_SpriteDark_Myth": 1884257976, - "BG_CyclopsLife_A": 944091673, - "Transformation_BG_NinjaPig_Storm": 2005137181, - "Transformation_BG_Fairy_Myth": 1880704188, - "Transformation_BG_Cyclops_Life": 638936708, - "Guest_AQ-Eagle-Praetorian": 1988013806, - "Guest_KM_BabyCarrot_A_01": 766239512, - "Guest_G14-DM-Gargoyle": 282898047, - "Guest_MR_Durvish_Sergeant_A_Boss_01": 1532609325, - "Guest_Cyclops-RedHelmet-KTBoss-L28": 2072371506, - "Guest_EM_Pig_Singer_A_01": 698597069, - "Guest_EM_Pig_Captain_A": 977505995, - "Guest_EM_Pig_Crewman_A": 465576459, - "PP_ChipmunkConductor": 1089819900, - "PP_LuckyCat": 1109326826, - "MNT_ImpCar": 1736092191, - "MNT_Book": 1547655078, - "MNT_JackoLantern": 649919658, - "MNT_Zheng": 742453108, - "MNT_Train": 413197899, - "MNT_Cerberus": 552686313, - "PP_Coconut": 1122741587, - "Transformation_Statue": 1153168084, - "Transformation_Nullity": 622504394, - "PP_Irk": 1825277392, - "Guest_Wyrmling-Fire-R8-1": 531485009, - "MNT_WolfLowPoly_A": 1947890962, - "MNT_WolfLowPoly_B": 1947825426, - "Transformation_BG_RatThief_Fire": 1169330235, - "Transformation_BG_WolfWarrior_Death": 159966683, - "Transformation_BG_Minotaur_Balance": 657855108, - "Transformation_BG_Draconian_Ice": 1907339814, - "Transformation_BG_Colossus_Myth": 1305894338, - "Transformation_NV_Penguin": 1757096851, - "Transformation_NV_Unicorn": 60447768, - "Transformation_NV_Monkey": 1379873688, - "Transformation_NV_Dog": 1961288968, - "PP_Wolf_Storm": 455227171, - "PP_WoodDuck": 1680912895, - "MNT_RockingHorse": 1205280059, - "MNT_SOF2022_Car": 219868812, - "PP_Buffaloon": 796152873, - "MNT_Steamboat": 1969530127, - "MNT_FelizNavidog": 847046394, - "PP_Mustache": 1571079379, - "Guest_DD-DS01-Skeleton-Pirate-20": 226826848, - "Guest_DD-DS01-Skeleton-Pirate-40": 201661024, - "Guest_DD-DS01-Skeleton-Pirate-60": 210049632, - "Guest_DD-DS01-Skeleton-Pirate-80": 251992672, - "Guest_DD-DS01-Skeleton-Pirate": 1994450336, - "Guest_DD-DS01-Shadow-Minion-Fire": 1074864956, - "Guest_DD-DS01-Shadow-Minion-Ice": 1841681214, - "Guest_DD-DS01-Shadow-Minion-Fire-20": 1074880881, - "Guest_DD-DS01-Shadow-Minion-Fire-40": 1074880945, - "Guest_DD-DS01-Shadow-Minion-Ice-20": 96850220, - "Guest_DD-DS01-Shadow-Minion-Ice-40": 96850218, - "Guest_DD-DS01-Shadow-Minion-Fire-60": 1074881009, - "Guest_DD-DS01-Shadow-Minion-Ice-60": 96850216, - "Guest_DD-DS01-Shadow-Minion-Fire-80": 1074880561, - "Guest_DD-DS01-Shadow-Minion-Ice-80": 96850214, - "Guest_SC-SpectreOfB-1": 1471950935, - "Guest_SC-SpectreOfB-20": 1471942759, - "Guest_SC-SpectreOfB-40": 1471942663, - "Guest_SC-SpectreOfB-60": 1471942695, - "Guest_SC-SpectreOfB-80": 1471942855, - "Guest_KH-Skeleton-Ice-60": 2108358962, - "Guest_KH-Skeleton-Ice-40": 2108391730, - "Guest_KH-Skeleton-Ice-20": 2108293426, - "Guest_KH-Skeleton-Ice-1": 2099953970, - "Guest_KH-Skeleton-Ice-80": 2108195122, - "Guest_KH-Undead-Caster-60": 1662604496, - "Guest_KH-Undead-Caster-40": 1661555920, - "Guest_KH-Undead-Caster-20": 1664701648, - "Guest_KH-Undead-Caster-1": 1931564240, - "Guest_KH-Undead-Caster-80": 1667847376, - "Guest_DD-PA01-DeadBeets": 1664999367, - "Guest_DD-PA01-DeadBeets-20": 1901453253, - "Guest_DD-PA01-DeadBeets-40": 2002116549, - "Guest_DD-PA01-DeadBeets-60": 1968562117, - "Guest_DD-PA01-DeadBeets-80": 2069225413, - "Guest_DD-PA01-Disparagus": 1865816461, - "Guest_DD-PA01-Disparagus-20": 573970895, - "Guest_DD-PA01-Disparagus-40": 499770929, - "Guest_DD-PA01-Disparagus-60": 1573512753, - "Guest_DD-PA01-Disparagus-80": 1647712718, - "Guest_DD-PA01-MeanestFlyTrap": 2001546861, - "Guest_DD-PA01-MeanestFlyTrap-20": 1936326253, - "Guest_DD-PA01-MeanestFlyTrap-40": 1936064109, - "Guest_DD-PA01-MeanestFlyTrap-60": 1935801965, - "Guest_DD-PA01-MeanestFlyTrap-80": 1937636973, - "Guest_HG-MD-MacDeath-20": 182639104, - "Guest_HG-MD-MacDeath-40": 182638080, - "Guest_HG-MD-MacDeath-60": 182637056, - "Guest_HG-MD-MacDeath-80": 182636032, - "Guest_HG-MD-MacDeath-100": 174252032, - "Guest_HG-MD-MacDeath-130": 174202880, - "Guest_HG_Sinbad_Skeleton_25": 494617874, - "Guest_HG_Sinbad_Skeleton_50": 42253050, - "Guest_HG_Sinbad_Skeleton_75": 1115994862, - "Guest_HG_Sinbad_Skeleton_100": 2105232646, - "Guest_HG_Sinbad_Skeleton_130": 2105232650, - "Guest_HG_Sinbad_Skeleton_25_02": 492722834, - "Guest_HG_Sinbad_Skeleton_50_02": 44148090, - "Guest_HG_Sinbad_Skeleton_75_02": 1117889902, - "Guest_HG_Sinbad_Skeleton_100_02": 2044247302, - "Guest_HG_Sinbad_Skeleton_130_02": 2044247306, - "Guest_DD-AV01-WyrmBoss": 1648677986, - "Guest_DD-AV01-WyrmBoss-20": 1926730850, - "Guest_DD-AV01-WyrmBoss-40": 1927779426, - "Guest_DD-AV01-WyrmBoss-60": 1928828002, - "Guest_DD-AV01-WyrmBoss-80": 1921487970, - "Guest_RH-Wyrm-Boss-01": 1027277645, - "Guest_RH-Wyrm-Boss-20": 1027277660, - "Guest_RH-Wyrm-Boss-40": 1027277663, - "Guest_RH-Wyrm-Boss-60": 1027277662, - "Guest_RH-Wyrm-Boss-80": 1027277657, - "Guest_HG_Sinbad_Wyrm_25": 1101443356, - "Guest_HG_Sinbad_Wyrm_50": 1101528860, - "Guest_HG_Sinbad_Wyrm_75": 1101445916, - "Guest_HG_Sinbad_Wyrm_100": 1093138204, - "Guest_HG_Sinbad_Wyrm_130": 1093089052, - "Guest_KH-Treant-1": 2001244331, - "Guest_KH-Treant-60": 1968148651, - "Guest_KH-Treant-40": 1968017579, - "Guest_KH-Treant-20": 1967886507, - "Guest_KH-Treant-80": 1967231147, - "Guest_DD-PA01-ForestGrump": 1969685870, - "Guest_DD-PA01-ForestGrump-20": 714666713, - "Guest_DD-PA01-ForestGrump-40": 714666689, - "Guest_DD-PA01-ForestGrump-60": 714666697, - "Guest_DD-PA01-ForestGrump-80": 714666737, - "Guest_DD-PA01-ForestNymphs": 227087348, - "Guest_DD-PA01-ForestNymphs-20": 227023552, - "Guest_DD-PA01-ForestNymphs-60": 227023040, - "Guest_DD-PA01-ForestNymphs-80": 227024832, - "Guest_SC-Pig-BalanceWizardA-1": 475456968, - "Guest_SC-Pig-BalanceWizardA-20": 477550024, - "Guest_SC-Pig-BalanceWizardA-40": 477541832, - "Guest_SC-Pig-BalanceWizardA-60": 477533640, - "Guest_SC-Pig-BalanceWizardA-80": 477525448, - "Guest_SC-Pig-BalanceWizardB-1": 475456964, - "Guest_SC-Pig-BalanceWizardB-20": 477550020, - "Guest_SC-Pig-BalanceWizardB-40": 477541828, - "Guest_SC-Pig-BalanceWizardB-60": 477533636, - "Guest_SC-Pig-BalanceWizardB-80": 477525444, - "Guest_SC-Pig-BalanceWizardC-1": 475456960, - "Guest_SC-Pig-BalanceWizardC-20": 477550016, - "Guest_SC-Pig-FireWizard-1": 2048176291, - "Guest_SC-Pig-FireWizard-20": 2031399073, - "Guest_SC-Pig-FireWizard-40": 2132062369, - "Guest_SC-Pig-FireWizard-60": 2098507937, - "Guest_SC-Pig-FireWizard-80": 1930735777, - "Guest_SC-Pig-IceWizardF-1": 1178687744, - "Guest_SC-Pig-IceWizardF-20": 1161910526, - "Guest_SC-Pig-IceWizardF-40": 1128356094, - "Guest_SC-Pig-IceWizardF-60": 1094801662, - "Guest_SC-Pig-IceWizardF-80": 1329682686, - "Guest_SC-Pig-MythWizard-1": 2048492725, - "Guest_SC-Pig-MythWizard-20": 2031715511, - "Guest_SC-Pig-MythWizard-40": 2132378807, - "Guest_SC-Pig-MythWizard-60": 2098824375, - "Guest_SC-Pig-MythWizard-80": 1931052215, - "Guest_SC-Pig-StormWizardF-1": 1743849420, - "Guest_SC-Pig-StormWizardF-20": 1743851464, - "Guest_SC-Pig-StormWizardF-40": 1743851488, - "Guest_SC-Pig-StormWizardF-60": 1743851480, - "Guest_SC-Pig-StormWizardF-80": 1743851504, - "Guest_KH-Pig-Bandit-Lord-1": 1080496628, - "Guest_KH-Pig-Bandit-Lord-20": 543625652, - "Guest_KH-Pig-Bandit-Lord-40": 530116172, - "Guest_KH-Pig-Bandit-Lord-60": 1603857996, - "Guest_KH-Pig-Bandit-Lord-80": 1617367475, - "Guest_KH-Pig-Bandit-Ninja-1": 1945100907, - "Guest_KH-Pig-Bandit-Ninja-20": 1945102951, - "Guest_KH-Pig-Bandit-Ninja-40": 1945102975, - "Guest_KH-Pig-Bandit-Ninja-60": 1945102967, - "Guest_KH-Pig-Bandit-Ninja-80": 1945102927, - "Guest_KH-Pig-War-Caster-1": 656859765, - "Guest_KH-Pig-War-Caster-20": 606528119, - "Guest_KH-Pig-War-Caster-40": 572973687, - "Guest_KH-Pig-War-Caster-60": 539419255, - "Guest_KH-Pig-War-Caster-80": 774300279, - "Guest_KH-Pig-War-Warrior-Boss-1": 16342355, - "Guest_KH-Pig-War-Warrior-Boss-20": 2143724205, - "Guest_KH-Pig-War-Warrior-Boss-40": 2118558381, - "Guest_KH-Pig-War-Warrior-Boss-60": 2126946989, - "Guest_KH-Pig-War-Warrior-Boss-80": 2101781165, - "Guest_SC-Pig-BalanceWizardC-40": 477541824, - "Guest_SC-Pig-BalanceWizardC-60": 477533632, - "Guest_SC-Pig-BalanceWizardC-80": 477525440, - "Guest_KH-Helephant-Death-20": 1109389719, - "Guest_KH-Helephant-Death-40": 2111835753, - "Guest_KH-Helephant-Death-60": 1038093929, - "Guest_KH-Helephant-Death-80": 35647896, - "Guest_KH-GreyOgre-Spider-1": 356368404, - "Guest_KH-GreyOgre-Spider-20": 1966981204, - "Guest_KH-GreyOgre-Spider-40": 1254244268, - "Guest_KH-GreyOgre-Spider-60": 180502444, - "Guest_KH-GreyOgre-Spider-80": 893239379, - "Guest_HG_Sinbad_Colossus_25": 1190802829, - "Guest_HG_Sinbad_Colossus_50": 1493551719, - "Guest_HG_Sinbad_Colossus_75": 419809907, - "Guest_HG_Sinbad_Colossus_100": 653933977, - "Guest_HG_Sinbad_Colossus_130": 653933973, - "Guest_NV_Dino_AberrantUndead_A_01": 2035087398, - "Guest_NV_Hellephant_Aberrant_A_01": 989522333, - "Guest_NV_Hellephant_Aberrant_A_02": 989522334, - "Guest_NV_BananaSpider_Base_A_01": 1585810541, - "Guest_NV_BananaSpider_Base_A_02": 1581616237, - "Guest_NV_BananaSpider_Base_A_03": 1577421933, - "Guest_NV_BananaSpider_Base_A_04": 1606782061, - "Guest_NV_BananaSpider_Base_A_05": 1602587757, - "Guest_NV_Wyrm_Aberrant_A_01": 16108415, - "Guest_NV_Monkey_Zombie_A_01": 1854775300, - "Guest_NV_Monkey_Zombie_A_02": 1854775304, - "Guest_NV_Monkey_Zombie_A_03": 1854775308, - "Guest_NV_Monkey_Zombie_A_04": 1854775312, - "MNT_Flag_Monster": 867940056, - "Guest_SKB_WY_DarkBramble_A_30": 2046798767, - "Guest_SKB_WY_DarkBramble_A_50": 2046797999, - "Guest_SKB_WY_DarkBramble_A_100": 2044701359, - "Guest_SKB_WY_DarkBramble_A_150": 2044721839, - "Guest_SKB_GH_Boar_A_30": 1547921275, - "Guest_SKB_WC_SpiritIgnorance_A_50": 1488876986, - "Guest_SKB_WC_SpiritIgnorance_A_100": 2025748410, - "Guest_SKB_WC_SpiritIgnorance_A_150": 2025748413, - "Guest_SKB_DS_Loremaster_A_50": 527751539, - "Guest_SKB_DS_Loremaster_A_100": 527817059, - "Guest_SKB_DS_Loremaster_A_150": 527817699, - "Guest_SKB_CL_Dan_A_50": 637418706, - "Guest_SKB_CL_Dan_A_60": 1510064941, - "Guest_SKB_CL_Dan_A_100": 637410512, - "Guest_SKB_CL_Dan_A_150": 637410432, - "Guest_SKB_AV_Spectre_A_50": 2104631195, - "Guest_SKB_AV_Spectre_A_100": 2102534041, - "Guest_SKB_AV_Spectre_A_150": 2018647961, - "Guest_SKB_MS_Samoorai_A_50": 2029641915, - "Guest_SKB_MS_Samoorai_A_100": 2096750843, - "Guest_SKB_MS_Samoorai_A_150": 587603717, - "Transformation_BG_Krok_StromTemplate": 1317694546, - "PP_ChineseRabbit": 382941643, - "PP_ParadeElf": 1036247808, - "MNT_HeartSwarm": 918199310, - "MNT_SpringSOF2023": 1417178519, - "Transformation_BG_Elf_Death2Template": 1606653101, - "MNT_GummyBunny_D": 775840224, - "Transformation_BG_Krok_Life2Template": 747486212, - "PP_Flame": 959186933, - "PP_YachtRock": 1500927358, - "PP_PirateYachtRock": 1227549100, - "PP_ChickenMonster": 1845706534, - "PP_SnowHoppers_B": 1496460038, - "PP_SnowHoppers_C": 1496457990, - "MNT_Oarfish": 29720265, - "PP_RingTailedCat": 993143427, - "MNT_Fanboat": 19347694, - "MNT_MiniSub": 298697910, - "PP_DumboOctopus": 966435639, - "PP_Glowbug_Balance": 1405529577, - "PP_Glowbug_Death": 405117107, - "PP_Glowbug_Fire": 651698987, - "PP_Glowbug_Ice": 2124926395, - "PP_Glowbug_Life": 601367299, - "PP_Glowbug_Myth": 592978024, - "PP_Glowbug_Storm": 61190446, - "PP_DumboOctopus_B": 968448823, - "PP_DumboOctopus_C": 968383287, - "PP_BananaSpider_01": 1074383522, - "PP_BananaSpider_02": 1080674978, - "PP_BananaSpider_03": 1078577826, - "Guest_HG_NM_BeardDragon_Base_C_01": 82913785, - "Guest_HG_NM_BeardDragon_Base_C_02": 82913786, - "Guest_HG_NM_BeardDragon_Base_C_03": 82913787, - "Guest_HG_NM_Glowbug_Base_C_01": 544959703, - "Guest_HG_NM_Glowbug_Base_C_02": 544955607, - "Guest_HG_NM_Glowbug_Base_C_03": 544951511, - "Guest_HG_NM_Glowbug_Base_C_04": 544947415, - "Guest_HG_NM_Glowbug_Base_C_05": 544943319, - "Guest_HG_NM_Glowbug_Base_C_06": 544939223, - "Guest_HG_NM_Glowbug_Base_C_07": 544935127, - "MNT_BouquetofFlowers": 1511180560, - "PP_Piggle_Rainbow": 91081383, - "MNT_Sabertooth_FlameSaber": 1949516909, - "Guest_HG_NM_BeardDragon_Base_A_01": 83175929, - "Guest_HG_NM_BeardDragon_Base_A_02": 83175930, - "Guest_HG_NM_BeardDragon_Base_A_03": 83175931, - "Guest_HG_NM_BeardDragon_Base_B_01": 83044857, - "Guest_HG_NM_BeardDragon_Base_B_02": 83044858, - "Guest_HG_NM_BeardDragon_Base_B_03": 83044859, - "Guest_HG_NM_Glowbug_Base_B_01": 8088791, - "Guest_HG_NM_Glowbug_Base_B_02": 8084695, - "Guest_HG_NM_Glowbug_Base_B_03": 8080599, - "Guest_HG_NM_Glowbug_Base_B_04": 8076503, - "Guest_HG_NM_Glowbug_Base_B_05": 8072407, - "Guest_HG_NM_Glowbug_Base_B_06": 8068311, - "Guest_HG_NM_Glowbug_Base_B_07": 8064215, - "Guest_HG_NM_Glowbug_Base_A_01": 1618701527, - "Guest_HG_NM_Glowbug_Base_A_02": 1618697431, - "Guest_HG_NM_Glowbug_Base_A_03": 1618693335, - "Guest_HG_NM_Glowbug_Base_A_04": 1618689239, - "Guest_HG_NM_Glowbug_Base_A_05": 1618685143, - "Guest_HG_NM_Glowbug_Base_A_06": 1618681047, - "Guest_HG_NM_Glowbug_Base_A_07": 1618676951, - "MNT_SummerSOF2023": 1636120912, - "PP_Cyclops_Fire": 7821755, - "PP_Death_Elf": 1535744155, - "PP_Newt": 1438123483, - "PP_Echidna": 735439358, - "MNT_Wombat": 580544786, - "Transformation_BG_NinjaPig_Balance": 1799661438, - "Transformation_BG_Cyclops_Ice": 647975824, - "Transformation_BG_Minotaur_Storm": 1005667041, - "Transformation_GR_Parasaur_Priest_Ice": 1101466351, - "Transformation_GR_Parasaur_Priest_Fire": 892193041, - "Transformation_GR_Parasaur_Priest_Storm": 1525882116, - "Transformation_GR_Parasaur_Priest_Balance": 1127637476, - "Guest_GR_AZ_Parasaur_Undead_B_01": 322587487, - "MNT_WitchCat": 1167097888, - "PP_RolyPoly": 578538330, - "PP_Capybara_B": 628131532, - "MNT_OutbackTruck": 1815527801, - "PP_PoodleSailor": 2137704795, - "MNT_PolarianCannon": 2103490826, - "PP_TazmanianDevil": 1773548765, - "Guest_SKB_AZ_Ixcax_A_100": 556560994, - "Guest_SKB_AZ_Ixcax_A_150": 556610146, - "Guest_SKB_AZ_Ixcax_A_50": 564951650, - "MNT_GhoulsShovel": 2035610946, - "PP_CrystalBdayDragon": 1897078804, - "PP_SunGobblerBall": 1522469440, - "PP_Sun_GreenGobbler": 1337690394, - "MNT_2P_AutumnTreant": 1063435527, - "PP_AutumnTreant": 561077291, - "MNT_FlyingMonkey": 490807393, - "PP_BabyPlantMonster": 2076646587, - "MNT_PlantCreature_A": 1802823265, - "Transformation_BG_Fairy_Fire": 2065252898, - "Transformation_BG_Krok_Myth": 277926564, - "Transformation_BG_RatThief_Life": 1167758651, - "Transformation_BG_Elf_Balance": 1628238937, - "Transformation_BG_Colossus_Death": 184392004, - "Transformation_FortressPod": 139738335, - "P_Wombat_POLYMORPH": 1132264953, - "PP_SharkWobbegong": 1994247222, - "PP_ChineseNYDragon": 1126999021, - "PP_JingleBellRock": 1076037919, - "PP_Krok_Mummy_Myth": 438487583, - "PP_Cyclops_Ice": 1476966187, - "MNT_OutbackTruckB": 1813299577, - "MNT_EvilSnowmanBall": 758818712, - "MNT_ThanksgivingGobbler": 1760011910, - "Guest_WL_Ghost_LostSoul_A_01": 1224111704, - "Guest_WL_Kangaroo_Drover_F_01": 2025562931, - "Guest_WL_Spider_WarriorMage_C_01": 1296557888, - "Guest_WL_Spider_WarriorMage_C_02": 1430775616, - "Guest_WL_Spider_WarriorMage_C_03": 1564993344, - "Guest_WL_Spider_WarriorMage_C_04": 1699211072, - "Guest_WL_Spider_WarriorMage_C_05": 1833428800, - "Guest_WL_Spider_WarriorMage_C_06": 1967646528, - "Guest_WL_Spider_WarriorMage_C_07": 2101864256, - "Guest_SKB_KR_Lightbane_A_100": 837930677, - "Guest_SKB_KR_Lightbane_A_160": 837930669, - "Guest_SKB_KR_Lightbane_A_50": 1309555019, - "Transformation_WL_Phantasmanian_DevilTemplate": 384891502, - "MNT_2P_LeaflessTreant": 623083386, - "PP_Minotaur_Ice": 700151737, - "MNT_Scooter_G": 737125252, - "Guest_WL_Frog_Owner_B_01": 767864686, - "MNT_SilentKnight": 646654812, - "Guest_WL_TRex_Base_A_01": 1842562033, - "Guest_WL_TRex_Base_B_01": 304921616, - "PP_Groundhog": 108643243, - "Guest_NV_Unicorn_Guard_C_04": 1845621, - "MNT_EmuPunk": 647315080, - "MNT_HeartBalloon": 798826551, - "PP_ValentineHoppers": 968693964, - "MNT_SpringSOF2024_Heckhound": 453640548, - "Guest_AQ-Centaur-Arion": 1856508139, - "Guest_AQ-Centaur-Artemis": 333294011, - "Guest_AQ-Horse-Sea": 724896200, - "Guest_KR_Horse_Warlord_A_Bossfight": 1302284326, - "Guest_KR_Horse_Warlord_A_BossfightSP": 1300726822, - "Guest_KR_Zebra_Thrall_A": 1250265667, - "Guest_KR_Zebra_Thrall_A_Boss_Minion": 345677011, - "Guest_KR_Zebra_Thrall_A_Gallery": 1520303483, - "Guest_KH-Gray-Horse-40": 1802231403, - "Guest_KH-Gray-Horse-20": 1802231307, - "Guest_G14-BP-Unicorn_Fencer_Boss": 1602044152, - "Guest_Horse-Merc-Brown-L37": 1831175255, - "Guest_Horse-Merc-Tan-L39": 1363854837, - "Guest_Horse-Merc-Tan-L39-1": 2085275127, - "Guest_Horse-Merc-Gray-MSBoss-L39": 1863452041, - "Guest_Horse-Merc-Gray-L39": 2039135564, - "Guest_Horse-Merc-Tan-L38": 1363330549, - "Guest_WC_Horse_Mercenary_Roberto": 891924774, - "Guest_ZF-Nathi-Yellowstripe-R11": 1505157721, - "Guest_ZF-TseTse-Main-R11-Boss": 114927854, - "Guest_ZF-TseTse-Elephant-R11": 894147273, - "Guest_ZF-Zebra-Impi-Raider-R11": 1378242919, - "Guest_ZF-Zebra-Warrior-Male-R10-1": 1791906265, - "Guest_ZF-Zebra-Senzan-Zebu-R10-Boss": 373712721, - "Guest_ZF-Zebra-Shaka-Zebu-R10-Boss": 662142985, - "Guest_ZF-Zebra-Warrior-Female-R10-02": 1507835670, - "Guest_ZF-Zebra-Warrior-Male-R10": 47075786, - "Guest_ZF-Zebra-Warrior-Male-R10-02": 1791906714, - "Guest_ZF-Zebra-Warrior-Male-R10-03": 1791906746, - "Guest_ZF-Zebra-Warrior-Male-R10-05": 1791906682, - "Guest_ZF-Zebra-Warrior-Male-R10-2": 1791906268, - "Guest_ZF_Zebra_Spectral_Guardian-R11": 431970996, - "Guest_CC_Horse_Apoc_A_01": 644668374, - "Guest_CC_Horse_Apoc_B_01": 644668390, - "Guest_CC_Horse_Apoc_C_01": 644668406, - "Guest_CC_Horse_Apoc_D_01": 644668294, - "Guest_CC_Horse_Apoc_D_02": 645192582, - "Guest_CC_Unicorn_CorsairF_B_01": 1378532506, - "Guest_CC_Unicorn_Duelist_B_01": 64891542, - "Guest_CC_Unicorn_Guard_B_01": 1075063242, - "Guest_CC_Unicorn_Guard_B_02": 1075063238, - "Guest_CC_Unicorn_Guard_B_03": 1075063234, - "Guest_NV_Horse_HordeSoldier_A_01": 504396960, - "Guest_NV_Horse_HordeSoldier_A_02": 101743776, - "Guest_NV_Horse_HordeOfficer_A_01": 343600992, - "Guest_NV_Horse_HordeSoldier_A_03": 235961504, - "Guest_NV_Horse_HordeOfficer_A_02": 209383264, - "Guest_NV_Horse_AberrantTungAk_A_01": 952263441, - "Guest_NV_Horse_AberrantTungAk_A_02": 952263537, - "Guest_NV_Horse_TungAk_B_01": 1194718672, - "Guest_NV_Horse_TungAk_B_02": 657847760, - "Guest_NV_Horse_HordeOfficer_B_01": 343596896, - "Guest_NV_Horse_HordeOfficer_B_02": 209379168, - "Guest_NV_Horse_TungAk_A_01": 1194669520, - "Guest_NV_Unicorn_Guard_C_01": 1845601, - "Guest_NV_Unicorn_Guard_A_01": 797025, - "Guest_NV_Unicorn_AberrantGuard_A_01": 739851573, - "Guest_NV_Unicorn_Guard_C_02": 1845613, - "Guest_NV_Unicorn_Guard_C_03": 1845609, - "Guest_NV_Unicorn_AberrantGuard_A_02": 739848501, - "Guest_NV_Unicorn_Guard_A_02": 797037, - "Guest_NV_Unicorn_AberrantGuard_A_03": 739849525, - "Guest_NV_Unicorn_AberrantGuard_A_04": 739846453, - "Guest_NV_Horse_HordeOfficer_A_03": 75165536, - "Guest_NV_Horse_HordeSoldier_A_04": 907050144, - "Guest_NV_Horse_HordeSoldier_A_05": 1041267872, - "Guest_NV_Horse_HordeSoldier_C_01": 504388768, - "Guest_HG_TRAIN_Horse_MustangFencerF_A_Balance_50": 871182987, - "Guest_HG_TRAIN_Horse_MustangFencerF_A_Balance_75": 871176715, - "Guest_HG_TRAIN_Horse_MustangFencerF_A_Life_100": 886489645, - "Guest_HG_TRAIN_Horse_MustangFencerF_A_Balance_25": 871177035, - "Guest_HG_TRAIN_Horse_MustangFencerF_A_Balance_100": 872231819, - "Guest_HG_TRAIN_Horse_MustangFencerF_A_Life_140": 1960231469, - "Guest_HG_TRAIN_Horse_MustangFencerF_B_100": 2089957067, - "Guest_HG_TRAIN_Horse_MustangFencerF_A_Life_25": 1700184589, - "Guest_HG_TRAIN_Horse_MustangFencerF_A_Life_50": 920044045, - "Guest_HG_TRAIN_Horse_MustangFencerF_A_Life_75": 1742127629, - "Guest_HG_TRAIN_Horse_MustangFencerF_A_Balance_140": 872223627, - "Guest_HG_TRAIN_Horse_MustangFencerF_B_50": 2089952970, - "Guest_HG_TRAIN_Horse_MustangFencerF_B_75": 57530654, - "Guest_HG_TRAIN_Horse_MustangFencerF_B_140": 2089957099, - "Guest_HG_TRAIN_Horse_MustangFencerF_B_25": 1131272477, - "Guest_LM_Horse_Explorer_A_01_Hard": 1711837140, - "Guest_WL_Unicorn_Guard_A_01": 1074538935, - "Guest_WL_Unicorn_CorsairF_E_01": 1378532603, - "Guest_WL_Unicorn_Warlord_A_01": 1321310496, - "Guest_KH-Gray-Horse-1": 1802239547, - "Guest_KH-Gray-Horse-60": 1802231371, - "Guest_KH-Gray-Horse-80": 1802231467, - "Transformation_BG_NinjaPig_Ice": 186026527, - "Transformation_BG_Cyclops_Storm": 897316984, - "PP_MinotaurBalance": 1344665951, - "PP_OrthusMoon": 1804503950, - "PP_CoolPineapple": 1149318906, - "PP_TwinkleStars": 766378011, - "PP_Scroll": 1613313091, - "PP_Colossus_Death": 40713075, - "PP_ColossusDeath": 530964029, - "PP_KILiveRock": 1975550570, - "MNT_Outrigger": 1417937299, - "MNT_BookWyrm": 2080129190, - "MNT_RacingSnail": 1996220963, - "MNT_UmbrellaCloud": 145762615, - "PP_PropellerCat": 2094718580, - "MNT_TRex_Shirt": 586746001, - "MNT_Swarm_Bee": 1625228695, - "MNT__CelestialMoon": 968360256, - "Guest_ME_Sinbad_IronSultan_150": 2001676223, - "Guest_ME_Sinbad_Cyclops_150": 1968943689, - "Guest_ME_Sinbad_Skeleton_150": 1031490819, - "Guest_ME_Sinbad_Colossus_150": 1727675806, - "Guest_ME_Sinbad_Skeleton_150_02": 970505475, - "Guest_ME_Sinbad_Wyrm_150": 19314443, - "Guest_ZF-Zebra-Inzinzebu-Bandit-R11": 430262550, - "Guest_ZF-Zebra-Warrior-Male-R10-04": 1791906650, - "PP_TwinkleStars_02": 805304347, - "PP_TwinkleStars_03": 803207195, - "PP_TwinkleStars_01": 799012891, - "Transformation_BodleianHarrow": 609627870, - "Guest_HG_Gryphon_OwlStatue_A_01_L170": 77756046, - "Guest_HG_Gryphon_OwlStatue_A_02_L170": 73561742, - "Guest_HG_Gryphon_OwlStatue_A_01_L100": 77752974, - "Guest_HG_Gryphon_OwlStatue_A_02_L100": 73558670, - "Guest_HG_Gryphon_OwlStatue_A_01_L50": 78277134, - "Guest_HG_Gryphon_OwlStatue_A_02_L50": 74082830, - "MNT_SummerSOF2024_JudgementWings": 1078163967, - "MNT_Pegasus_E": 131704054, - "MNT_PolarisHero": 665176426, - "PP_Duckana": 1128961578, - "PP_QueenBee": 833291695, - "Transformation_BG_Draconian_Balance": 2078940682, - "Transformation_BG_WolfWarrior_Fire": 1762248682, - "Transformation_BG_Minotaur_Death": 309090657, - "PP_WolfWarrior_Fire": 685685256, - "PP_WolfWarrior_Death": 1857202724, - "Guest_ME-GTAV01-WyrmBoss-150": 1482208618, - "Guest_ME_SpectreOfB_L150": 684104791, - "Guest_ME_MD_MacDeath_L150": 1128977615, - "Guest_ME_Pig_BalanceWizardA_L150": 959913724, - "Guest_ME_Pig_BalanceWizardB_L150": 959913712, - "Guest_ME_Pig_BalanceWizardC_L150": 959913716, - "Guest_ME_Pig_FireWizard_L150": 964392255, - "Guest_ME_Pig_IceWizardF_L150": 86941026, - "Guest_ME_Pig_MythWizard_L150": 964051241, - "Guest_ME_Pig_StormWizardF_L150": 2016383602, - "Guest_ME_Clock_Clockworker_L150": 1424569772, - "Guest_ME_Clock_ClockworkSpanner_L150": 1966824609, - "Guest_ME_Clock_Lugs_L150": 370290904, - "Guest_ME_Clock_Lucia_L150": 1857768409, - "MNT_EvilChair": 339577702, - "PP_Cyclops_Storm": 621464512, - "PP_Krokomummy_Life": 462432735, - "Transformation_CL_Rematch_Crustacean": 1686865207, - "Transformation_CL_Rematch_Protector": 1893951532, - "Transformation_CL_Rematch_Angler": 120412196, - "Transformation_CL_Rematch_Piscean": 1624106070, - "Transformation_Zebra_Template": 1900548493, - "Transformation_Zebra2_Template": 325099540, - "Transformation_Zebra3_Template": 325099524, - "Transformation_Zebra4_Template": 325099636, - "MNT_SweetSixteenBirthday": 1009398096, - "MNT_2P_TRex_Bones": 1618543266, - "MNT_SpringBumperCar": 1725007788, - "PP_WinterGoblin": 2025052443, - "PP_OnyxAnubis": 1552575189, - "PP_OttomanCat": 223541582, - "MNT_HolidayYeti": 780983974, - "MNT_IceSled": 979912604, - "MNT_TurtleDoves": 1850191638, - "MNT_KrokChariot": 559783620, - "MNT_Mustang": 1775949401, - "MNT_PumpkinBall": 382849054, - "Transformation_BG_Fairy_Storm": 836920873, - "Transformation_BG_Elf_Myth": 1506493664, - "Transformation_NinjaPig_Life": 816802847, - "Transformation_BG_Krok_Fire": 1060580712, - "Transformation_BG_Colossus_Balance": 1067963041, - "Transformation_BG_NinjaPig_Life": 441460895, - "PP_Penguin_03": 1623028104, - "Transformation_Duck_Librarian_B": 864067551, - "Transformation_Duck_Librarian_A": 859873247, - "Transformation_Duck_Adventurer": 194560769, - "Transformation_Gummy_Bunny_C": 1298087941, - "Transformation_Frog_Horned_A": 837201339, - "Transformation_Glowbug_Storm": 2096380446, - "Transformation_Marshmallow_Critter_A": 1036335317, - "Transformation_Snipe_Base_B": 232132109, - "Transformation_Snowball": 915248481, - "Transformation_Wombat_Base": 333435450, - "Transformation_Human_Malistaire": 1414887773, - "Transformation_Morganthe_E": 1745180054, - "Transformation_Spider_Grandfather": 1131773979, - "Transformation_Khrulhu_Dasein_B": 367878762, - "Transformation_Devourer_Base": 698770016, - "Transformation_Alien_Meteor": 638746168, - "Transformation_Nightmare_Malus": 704212821, - "Transformation_Daemon_Personal": 278266463, - "PP_ValentinesDay": 810003364, - "PP_BabyHippo": 422858138, - "PP_Aardwold": 1592150119, - "PP_Aardwold_C": 1902528613, - "MNT_Cobra": 472847981, - "MNT_Serpopard": 1629558909, - "MNT_Serpopard_B": 1629556867, - "MNT_Serpopard_C": 1629556931, - "PP_Fairy_Fire": 1847789544, - "MNT_Mustang_B": 1448793691, - "PP_FireElfMyth": 1933609060, - "MNT_KT-BoatRide": 1560860110 - } - }, - "m_badgeTitle": { - "type": "std::string", - "id": 6, - "offset": 440, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1783354256 - }, - "m_chatPermissions": { - "type": "unsigned int", - "id": 7, - "offset": 360, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1848314473 - }, - "m_pvpIconID": { - "type": "unsigned int", - "id": 8, - "offset": 472, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2083838009 - }, - "m_localeID": { - "type": "unsigned int", - "id": 9, - "offset": 484, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 792971274 - }, - "m_friendlyPlayer": { - "type": "bool", - "id": 10, - "offset": 490, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 990699901 - }, - "m_volunteer": { - "type": "bool", - "id": 11, - "offset": 491, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1751284471 - }, - "m_guildName": { - "type": "unsigned int", - "id": 12, - "offset": 492, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 778026115 - }, - "m_guildNameLocale": { - "type": "int", - "id": 13, - "offset": 496, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 656991008 - }, - "m_overallRating": { - "type": "unsigned int", - "id": 14, - "offset": 544, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 462138631 - }, - "m_activeRating": { - "type": "unsigned int", - "id": 15, - "offset": 548, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 234391118 - }, - "m_petLevel": { - "type": "unsigned int", - "id": 16, - "offset": 552, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2225922446 - }, - "m_bHasSocketedJewel": { - "type": "bool", - "id": 17, - "offset": 556, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 103587834 - }, - "m_hideName": { - "type": "bool", - "id": 18, - "offset": 557, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 645410894 - }, - "m_templateID": { - "type": "unsigned int", - "id": 19, - "offset": 564, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1286746870 - } - } - }, - "2129198563": { - "name": "class TabDisplayPriority", - "bases": [ - "PropertyClass" - ], - "hash": 2129198563, - "properties": { - "m_uTab": { - "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 431299609 - }, - "m_uPriority": { - "type": "unsigned int", - "id": 1, - "offset": 76, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 374455588 - } - } - }, - "150115928": { - "name": "class CreateGuildPlayerList", - "bases": [ - "PropertyClass" - ], - "hash": 150115928, - "properties": { - "m_playerList": { - "type": "gid", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1909774945 - } - } - }, - "2121388742": { - "name": "class BasicChatChannelInfo", - "bases": [ - "PropertyClass" - ], - "hash": 2121388742, - "properties": { - "m_ownerCharacterID": { - "type": "gid", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2128119645 - }, - "m_ownerNameBlob": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2446827686 - }, - "m_isPublic": { - "type": "bool", - "id": 2, - "offset": 112, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1728439822 - }, - "m_inviteAllCooldownTime": { - "type": "int", - "id": 3, - "offset": 116, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1019161494 - }, - "m_playerList": { - "type": "class SharedPointer", - "id": 4, - "offset": 120, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2882119980 - } - } - }, - "545297065": { - "name": "class PathActionDespawn", - "bases": [ - "PathBehaviorTemplate::Action", - "PropertyClass" - ], - "hash": 545297065, - "properties": { - "m_nPathID": { - "type": "gid", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 214382368 - }, - "m_nNodeID": { - "type": "int", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 152152635, - "enum_options": { - "__DEFAULT": 4294967295 - } - }, - "m_nPriority": { - "type": "int", - "id": 2, - "offset": 84, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1515251530, - "enum_options": { - "__DEFAULT": 100 - } - }, - "m_nChance": { - "type": "int", - "id": 3, - "offset": 88, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1860748394, - "enum_options": { - "__DEFAULT": 50 - } - } - } - }, - "2119452192": { - "name": "class GardeningBehavior", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 2119452192, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_gardeningData": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2329363555 - } - } - }, - "2118532982": { - "name": "class std::list >", - "bases": [], - "hash": 2118532982, - "properties": {} - }, - "151726271": { - "name": "class WizAvatarTextureOption", - "bases": [ - "AvatarTextureOption", - "AvatarOptionBase", - "PropertyClass" - ], - "hash": 151726271, - "properties": { - "m_conditionFlags": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2483653903 - }, - "m_materialName": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1878140043 - }, - "m_textures": { - "type": "std::string", - "id": 2, - "offset": 136, - "flags": 131079, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2391848735 - }, - "m_decals": { - "type": "std::string", - "id": 3, - "offset": 160, - "flags": 131079, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1853711975 - }, - "m_decals2": { - "type": "std::string", - "id": 4, - "offset": 184, - "flags": 131079, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2505858617 - }, - "m_tintColors": { - "type": "class Vector3D", - "id": 5, - "offset": 208, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 3059416083 - }, - "m_tintColorNames": { - "type": "std::string", - "id": 6, - "offset": 232, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1803799469 - }, - "m_useTintColor": { - "type": "bool", - "id": 7, - "offset": 256, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1646372318 - }, - "m_texture": { - "type": "std::string", - "id": 8, - "offset": 264, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1720106604 - }, - "m_decal": { - "type": "std::string", - "id": 9, - "offset": 296, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2289476788 - }, - "m_decal2": { - "type": "std::string", - "id": 10, - "offset": 328, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1853711910 - }, - "m_tintColor": { - "type": "class Vector3D", - "id": 11, - "offset": 360, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1830530496 - } - } - }, - "2117722166": { - "name": "class ClientRaidManagerBehavior*", - "bases": [ - "RaidManagerBehavior", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 2117722166, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - } - } - }, - "151615629": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 151615629, - "properties": { - "m_nType": { - "type": "enum ZoneData::Type", - "id": 0, - "offset": 72, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2656861130, - "enum_options": { - "ZONETYPE_INVALID": 4294967295, - "ZONETYPE_START": 0, - "ZONETYPE_STATIC": 1, - "ZONETYPE_DYNAMIC": 2 - } - }, - "m_zoneName": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 134217735, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2171167736 - }, - "m_zoneDisplayName": { - "type": "std::string", - "id": 2, - "offset": 112, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1962339438 - }, - "m_skyDomeName": { - "type": "std::string", - "id": 3, - "offset": 144, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2339979448 - }, - "m_skyLayerName": { - "type": "std::string", - "id": 4, - "offset": 184, - "flags": 131079, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2824410256 - }, - "m_collisionFileName": { - "type": "std::string", - "id": 5, - "offset": 208, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1725365192 - }, - "m_gamebryoSceneFileName": { - "type": "std::string", - "id": 6, - "offset": 240, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3084395168 - }, - "m_musicFileName": { - "type": "std::string", - "id": 7, - "offset": 272, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1817607805 - }, - "m_spawnList": { - "type": "class SpawnPointTemplate", - "id": 8, - "offset": 304, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1063041926 - }, - "m_teleportList": { - "type": "class TeleporterTemplate", - "id": 9, - "offset": 320, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1031682046 - }, - "m_locationList": { - "type": "class LocationTemplate", - "id": 10, - "offset": 336, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2114141903 - }, - "m_objectList": { - "type": "class SharedPointer", - "id": 11, - "offset": 352, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 882782852 - }, - "m_allEffects": { - "type": "std::string", - "id": 12, - "offset": 368, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2483362772 - }, - "m_healingPerMinute": { - "type": "int", - "id": 13, - "offset": 480, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 782115659 - }, - "m_playerPopThresh": { - "type": "int", - "id": 14, - "offset": 484, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1692004900 - }, - "m_nSoftLimit": { - "type": "int", - "id": 15, - "offset": 488, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1593689635, - "enum_options": { - "__DEFAULT": 50 - } - }, - "m_nHardLimit": { - "type": "int", - "id": 16, - "offset": 492, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1752405446, - "enum_options": { - "__DEFAULT": 100 - } - }, - "m_farClip": { - "type": "float", - "id": 17, - "offset": 496, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1393981304, - "enum_options": { - "__DEFAULT": 25000 - } - }, - "m_nearClipOverride": { - "type": "float", - "id": 18, - "offset": 500, - "flags": 519, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1092806405, - "enum_options": { - "__DEFAULT": 1 - } - }, - "m_defaultBackgroundColorRed": { - "type": "float", - "id": 19, - "offset": 504, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1511995894 - }, - "m_defaultBackgroundColorGreen": { - "type": "float", - "id": 20, - "offset": 508, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2127637260 - }, - "m_defaultBackgroundColorBlue": { - "type": "float", - "id": 21, - "offset": 512, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1908873795 - }, - "m_fogColorRed": { - "type": "int", - "id": 22, - "offset": 516, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1578810896 - }, - "m_fogColorGreen": { - "type": "int", - "id": 23, - "offset": 520, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1229332710 - }, - "m_fogColorBlue": { - "type": "int", - "id": 24, - "offset": 524, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 557754685 - }, - "m_fogDensity": { - "type": "float", - "id": 25, - "offset": 528, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1170901171 - }, - "m_fogStartDensity": { - "type": "float", - "id": 26, - "offset": 532, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1642636961 - }, - "m_fogEnabled": { - "type": "bool", - "id": 27, - "offset": 536, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 563358906 - }, - "m_nObjectID": { - "type": "unsigned int", - "id": 28, - "offset": 540, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 748496927 - }, - "m_bDisableTransitionAutoHide": { - "type": "bool", - "id": 29, - "offset": 544, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 702738663 - }, - "m_encounterNames": { - "type": "std::string", - "id": 30, - "offset": 384, - "flags": 268435463, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2150841410, - "enum_options": { - "__BASECLASS": "EncounterTemplate" - } - }, - "m_encounterGroup": { - "type": "std::string", - "id": 31, - "offset": 400, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2143153595 - }, - "m_zoneAdjectives": { - "type": "std::string", - "id": 32, - "offset": 432, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 3603923993 - }, - "m_zonePermissions": { - "type": "std::string", - "id": 33, - "offset": 464, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2928923475 - }, - "m_canPlaceTeleportMarker": { - "type": "bool", - "id": 34, - "offset": 545, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 600985755 - }, - "m_filterSetUID": { - "type": "unsigned int", - "id": 35, - "offset": 548, - "flags": 33554695, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1054674497 - }, - "m_conditionalSkyboxes": { - "type": "class SkyboxInfo", - "id": 36, - "offset": 552, - "flags": 263, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2512765286 - }, - "m_musicDelay": { - "type": "float", - "id": 37, - "offset": 568, - "flags": 263, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1217785767 - } - } - }, - "545830997": { - "name": "class IgnoreEntryDataList*", - "bases": [ - "PropertyClass" - ], - "hash": 545830997, - "properties": { - "m_ignoreDataList": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2636534189 - } - } - }, - "2117518908": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 2117518908, - "properties": { - "m_leagueType": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3327951024 - }, - "m_mainDoodle": { - "type": "std::string", - "id": 1, - "offset": 112, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2211594423 - }, - "m_leagueDescription": { - "type": "std::string", - "id": 2, - "offset": 144, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3204126290 - }, - "m_leagueName": { - "type": "std::string", - "id": 3, - "offset": 176, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3327709167 - }, - "m_age": { - "type": "int", - "id": 4, - "offset": 208, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 267029223 - }, - "m_retired": { - "type": "bool", - "id": 5, - "offset": 212, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1931776834 - }, - "m_gracePeriodDays": { - "type": "int", - "id": 6, - "offset": 216, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1128520496 - }, - "m_requirementsList": { - "type": "class SharedPointer", - "id": 7, - "offset": 224, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1999017945 - }, - "m_seasonList": { - "type": "std::string", - "id": 8, - "offset": 240, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1895863232 - }, - "m_duelModifiers": { - "type": "std::string", - "id": 9, - "offset": 256, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2938413959 - } - } - }, - "546055718": { - "name": "class RegistrarOptions", - "bases": [ - "PropertyClass" - ], - "hash": 546055718, - "properties": { - "m_focusOptions": { - "type": "class SchoolOfFocusOption*", - "id": 0, - "offset": 72, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1945607055 - }, - "m_titleOptions": { - "type": "class TitleOption*", - "id": 1, - "offset": 88, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 755264106 - }, - "m_currentSchoolID": { - "type": "unsigned int", - "id": 2, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1800324389 - }, - "m_currentTitleKey": { - "type": "std::string", - "id": 3, - "offset": 112, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2379937417 - } - } - }, - "151750847": { - "name": "class WizAvatarTextureOption*", - "bases": [ - "AvatarTextureOption", - "AvatarOptionBase", - "PropertyClass" - ], - "hash": 151750847, - "properties": { - "m_conditionFlags": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2483653903 - }, - "m_materialName": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1878140043 - }, - "m_textures": { - "type": "std::string", - "id": 2, - "offset": 136, - "flags": 131079, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2391848735 - }, - "m_decals": { - "type": "std::string", - "id": 3, - "offset": 160, - "flags": 131079, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1853711975 - }, - "m_decals2": { - "type": "std::string", - "id": 4, - "offset": 184, - "flags": 131079, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2505858617 - }, - "m_tintColors": { - "type": "class Vector3D", - "id": 5, - "offset": 208, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 3059416083 - }, - "m_tintColorNames": { - "type": "std::string", - "id": 6, - "offset": 232, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1803799469 - }, - "m_useTintColor": { - "type": "bool", - "id": 7, - "offset": 256, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1646372318 - }, - "m_texture": { - "type": "std::string", - "id": 8, - "offset": 264, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1720106604 - }, - "m_decal": { - "type": "std::string", - "id": 9, - "offset": 296, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2289476788 - }, - "m_decal2": { - "type": "std::string", - "id": 10, - "offset": 328, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1853711910 - }, - "m_tintColor": { - "type": "class Vector3D", - "id": 11, - "offset": 360, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1830530496 - } - } - }, - "2119237477": { - "name": "class GardeningShedBehaviorBase*", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 2119237477, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_seedList": { - "type": "unsigned int", - "id": 1, - "offset": 112, - "flags": 65567, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 672751594 - } - } - }, - "151966352": { - "name": "enum WizBugReport::UserGender", - "bases": [], - "hash": 151966352, - "properties": {} - }, - "549596931": { - "name": "class PolymorphCinematicAction*", - "bases": [ - "CinematicAction", - "PropertyClass" - ], - "hash": 549596931, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - } - } - }, - "2118997174": { - "name": "class PetDerbyObstacleBehaviorClient", - "bases": [ - "PetDerbyObstacleBehavior", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 2118997174, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_laneNumber": { - "type": "int", - "id": 1, - "offset": 184, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 650028867 - }, - "m_distanceFromStart": { - "type": "int", - "id": 2, - "offset": 188, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 649349799 - } - } - }, - "547271908": { - "name": "class PetAnimateActorCinematicAction", - "bases": [ - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 547271908, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - }, - "m_animation": { - "type": "std::string", - "id": 2, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3431428731 - } - } - }, - "546192515": { - "name": "class ClientEquipmentBehavior", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 546192515, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_itemList": { - "type": "class SharedPointer", - "id": 1, - "offset": 120, - "flags": 27, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1983655699 - }, - "m_slotList": { - "type": "class SharedPointer", - "id": 2, - "offset": 136, - "flags": 27, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 3213026923 - }, - "m_publicItemList": { - "type": "class SharedPointer", - "id": 3, - "offset": 152, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1693467991 - } - } - }, - "155800021": { - "name": "class SharedPointer", - "bases": [ - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 155800021, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - } - } - }, - "546083878": { - "name": "class RegistrarOption*", - "bases": [ - "ServiceOptionBase", - "PropertyClass" - ], - "hash": 546083878, - "properties": { - "m_serviceName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2206028813 - }, - "m_iconKey": { - "type": "std::string", - "id": 1, - "offset": 168, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2457138637 - }, - "m_displayKey": { - "type": "std::string", - "id": 2, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3023276954 - }, - "m_serviceIndex": { - "type": "unsigned int", - "id": 3, - "offset": 204, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2103126710 - }, - "m_forceInteract": { - "type": "bool", - "id": 4, - "offset": 200, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1705789564 - } - } - }, - "154320916": { - "name": "class RespecTieredSpellList", - "bases": [ - "PropertyClass" - ], - "hash": 154320916, - "properties": { - "m_spellList": { - "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1402125129 - }, - "m_upgradedSpellList": { - "type": "unsigned int", - "id": 1, - "offset": 88, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1475269301 - } - } - }, - "2119654516": { - "name": "enum StopHangingRotationCinematicAction::kStopHangingTypes", - "bases": [], - "hash": 2119654516, - "properties": {} - }, - "152955093": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 152955093, - "properties": { - "m_logoFile": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2251052844 - }, - "m_displayTime": { - "type": "float", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1039626236 - }, - "m_text": { - "type": "std::string", - "id": 2, - "offset": 144, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1717580128 - } - } - }, - "2119473480": { - "name": "class SharedPointer", - "bases": [ - "RitualObjectBehaviorBase", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 2119473480, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_playerList": { - "type": "gid", - "id": 1, - "offset": 112, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1909774945 - } - } - }, - "152799481": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 152799481, - "properties": { - "m_name": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1717359772 - } - } - }, - "546503866": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 546503866, - "properties": { - "m_worldList": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1846694527 - }, - "m_imageList": { - "type": "std::string", - "id": 1, - "offset": 88, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2391457594 - }, - "m_initialImage": { - "type": "std::string", - "id": 2, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2043562056 - } - } - }, - "546219558": { - "name": "class RegistrarOptions*", - "bases": [ - "PropertyClass" - ], - "hash": 546219558, - "properties": { - "m_focusOptions": { - "type": "class SchoolOfFocusOption*", - "id": 0, - "offset": 72, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1945607055 - }, - "m_titleOptions": { - "type": "class TitleOption*", - "id": 1, - "offset": 88, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 755264106 - }, - "m_currentSchoolID": { - "type": "unsigned int", - "id": 2, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1800324389 - }, - "m_currentTitleKey": { - "type": "std::string", - "id": 3, - "offset": 112, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2379937417 - } - } - }, - "2120397854": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 2120397854, - "properties": { - "m_type": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1717601629 - }, - "m_subType": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3175052615 - }, - "m_versionNumber": { - "type": "unsigned int", - "id": 2, - "offset": 136, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1265259452 - }, - "m_packageNumber": { - "type": "int", - "id": 3, - "offset": 140, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1934060719 - }, - "m_associatedGID": { - "type": "gid", - "id": 4, - "offset": 144, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 148404716 - }, - "m_epochDays": { - "type": "unsigned int", - "id": 5, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1631557837 - } - } - }, - "153720056": { - "name": "class NamedEffect", - "bases": [ - "GameEffectBase", - "PropertyClass" - ], - "hash": 153720056, - "properties": { - "m_currentTickCount": { - "type": "double", - "id": 0, - "offset": 80, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2533274692 - }, - "m_effectNameID": { - "type": "unsigned int", - "id": 1, - "offset": 96, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1204067144 - }, - "m_bIsOnPet": { - "type": "bool", - "id": 2, - "offset": 73, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 522593303 - }, - "m_originatorID": { - "type": "gid", - "id": 3, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1131810019 - }, - "m_itemSlotID": { - "type": "unsigned int", - "id": 4, - "offset": 112, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1895747595 - }, - "m_internalID": { - "type": "int", - "id": 5, - "offset": 92, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1643137924 - }, - "m_endTime": { - "type": "unsigned int", - "id": 6, - "offset": 88, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 716479635 - }, - "m_overrideName": { - "type": "std::string", - "id": 7, - "offset": 128, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1990707228 - } - } - }, - "2119816296": { - "name": "class ClassProjectProgressHistoryList", - "bases": [ - "PropertyClass" - ], - "hash": 2119816296, - "properties": { - "m_progressHistoryList": { - "type": "int", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1514478333 - } - } - }, - "153414636": { - "name": "class CharacterRegistry", - "bases": [ - "PropertyClass" - ], - "hash": 153414636, - "properties": { - "m_displayedTips": { - "type": "gid", - "id": 0, - "offset": 112, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": true, - "pointer": false, - "hash": 1546509239 - }, - "m_finishedTips": { - "type": "gid", - "id": 1, - "offset": 128, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": true, - "pointer": false, - "hash": 1286351938 - }, - "m_chatStatsByState": { - "type": "struct CharacterChatStatsByState", - "id": 2, - "offset": 144, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": true, - "pointer": false, - "hash": 3487355966 - }, - "m_chatStatsByText": { - "type": "struct CharacterChatStatsByText", - "id": 3, - "offset": 176, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": true, - "pointer": false, - "hash": 3265910788 - }, - "m_lockList": { - "type": "struct LockData", - "id": 4, - "offset": 208, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": true, - "pointer": false, - "hash": 1946956503 - }, - "m_friendList": { - "type": "struct FriendData", - "id": 5, - "offset": 288, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": true, - "pointer": false, - "hash": 2895296598 - }, - "m_activeQuestId": { - "type": "gid", - "id": 6, - "offset": 304, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": true, - "pointer": false, - "hash": 229595059 - }, - "m_activeGoalId": { - "type": "unsigned int", - "id": 7, - "offset": 336, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": true, - "pointer": false, - "hash": 1967307577 - }, - "m_activeGoalSetByPlayer": { - "type": "bool", - "id": 8, - "offset": 340, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": true, - "pointer": false, - "hash": 1365712422 - }, - "m_crownShopSettings": { - "type": "class SharedPointer", - "id": 9, - "offset": 240, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": true, - "pointer": true, - "hash": 2058124240 - }, - "m_loginHistory": { - "type": "class LoginHistoryEntry", - "id": 10, - "offset": 360, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": true, - "pointer": false, - "hash": 1668671153 - } - } - }, - "546978947": { - "name": "class ClientEquipmentBehavior*", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 546978947, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_itemList": { - "type": "class SharedPointer", - "id": 1, - "offset": 120, - "flags": 27, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1983655699 - }, - "m_slotList": { - "type": "class SharedPointer", - "id": 2, - "offset": 136, - "flags": 27, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 3213026923 - }, - "m_publicItemList": { - "type": "class SharedPointer", - "id": 3, - "offset": 152, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1693467991 - } - } - }, - "2121234652": { - "name": "class SharedPointer", - "bases": [ - "LootInfo", - "LootInfoBase", - "PropertyClass" - ], - "hash": 2121234652, - "properties": { - "m_lootType": { - "type": "enum LootInfo::LOOT_TYPE", - "id": 0, - "offset": 72, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1591891442, - "enum_options": { - "LOOT_TYPE_NONE": 0, - "LOOT_TYPE_GOLD": 1, - "LOOT_TYPE_MANA": 2, - "LOOT_TYPE_ITEM": 3, - "LOOT_TYPE_TREASURE_CARD": 4, - "LOOT_TYPE_MAGIC_XP": 5, - "LOOT_TYPE_ADD_SPELL": 6, - "LOOT_TYPE_MAX_HEALTH": 7, - "LOOT_TYPE_MAX_GOLD": 8, - "LOOT_TYPE_MAX_MANA": 9, - "LOOT_TYPE_MAX_POTION": 10, - "LOOT_TYPE_TRAINING_POINTS": 11, - "LOOT_TYPE_RECIPE": 12, - "LOOT_TYPE_CRAFTING_SLOT": 13, - "LOOT_TYPE_REAGENT": 14, - "LOOT_TYPE_PETSNACK": 15, - "LOOT_TYPE_GARDENING_XP": 16, - "LOOT_TYPE_PET_XP": 17, - "LOOT_TYPE_TREASURE_TABLE": 18, - "LOOT_TYPE_ARENA_POINTS": 19, - "LOOT_TYPE_ARENA_BONUS_POINTS": 20, - "LOOT_TYPE_GROUP": 21, - "LOOT_TYPE_FISHING_XP": 22, - "LOOT_TYPE_EVENT_CURRENCY_1": 24, - "LOOT_TYPE_EVENT_CURRENCY_2": 25, - "LOOT_TYPE_PVP_CURRENCY": 26, - "LOOT_TYPE_PVP_CURRENCY_BONUS": 27, - "LOOT_TYPE_PVP_TOURNEY_CURRENCY": 28, - "LOOT_TYPE_PVP_TOURNEY_CURRENCY_BONUS": 29, - "LOOT_TYPE_FURNITURE_ESSENCE": 30 - } - }, - "m_spellID": { - "type": "unsigned int", - "id": 1, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1697483258 - } - } - }, - "548301456": { - "name": "class ZoneTokenCount", - "bases": [ - "ZoneTokenBase", - "PropertyClass" - ], - "hash": 548301456, - "properties": { - "m_debugName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3553984419 - }, - "m_adjectiveList": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 3195213318 - }, - "m_icon": { - "type": "std::string", - "id": 2, - "offset": 120, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1717182340 - }, - "m_iconBW": { - "type": "std::string", - "id": 3, - "offset": 152, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2047461085 - }, - "m_description": { - "type": "std::string", - "id": 4, - "offset": 184, - "flags": 8388639, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1649374815 - }, - "m_displayMode": { - "type": "enum ZTDisplayMode", - "id": 5, - "offset": 216, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2216526410, - "enum_options": { - "ZTDM_Shown": 0, - "ZTDM_Discoverable": 1, - "ZTDM_Hidden": 2 - } - }, - "m_storage": { - "type": "enum ZTStorage", - "id": 6, - "offset": 220, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2290454852, - "enum_options": { - "ZTS_Player": 0, - "ZTS_Zone": 1 - } - }, - "m_onEnable": { - "type": "class SharedPointer", - "id": 7, - "offset": 224, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2591736864 - }, - "m_onDiscover": { - "type": "class SharedPointer", - "id": 8, - "offset": 240, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2826026872 - }, - "m_onDisable": { - "type": "class SharedPointer", - "id": 9, - "offset": 256, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1860656717 - }, - "m_sourceID": { - "type": "gid", - "id": 10, - "offset": 272, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1134700470 - }, - "m_inZone": { - "type": "bool", - "id": 11, - "offset": 280, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 564535654 - }, - "m_enabled": { - "type": "bool", - "id": 12, - "offset": 281, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 504506718 - }, - "m_discovered": { - "type": "bool", - "id": 13, - "offset": 282, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2060478331 - }, - "m_minValue": { - "type": "int", - "id": 14, - "offset": 288, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1508523611 - }, - "m_startValue": { - "type": "int", - "id": 15, - "offset": 292, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 672067813 - }, - "m_maxValue": { - "type": "int", - "id": 16, - "offset": 296, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 158068381 - }, - "m_curValue": { - "type": "int", - "id": 17, - "offset": 300, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1147627809 - }, - "m_counterType": { - "type": "enum ZTCounterType", - "id": 18, - "offset": 304, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1417526179, - "enum_options": { - "ZTCT_Full": 0, - "ZTCT_Count": 1, - "ZTCT_Meter": 2, - "ZTCT_Hidden": 3 - } - }, - "m_onIncrease": { - "type": "class SharedPointer", - "id": 19, - "offset": 312, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2723490243 - }, - "m_onDecrease": { - "type": "class SharedPointer", - "id": 20, - "offset": 328, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1346363029 - }, - "m_onEmpty": { - "type": "class SharedPointer", - "id": 21, - "offset": 344, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1658398600 - }, - "m_onFull": { - "type": "class SharedPointer", - "id": 22, - "offset": 360, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1955555436 - } - } - }, - "2120991345": { - "name": "class ReqItemIsEgg", - "bases": [ - "Requirement", - "PropertyClass" - ], - "hash": 2120991345, - "properties": { - "m_applyNOT": { - "type": "bool", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1746328074, - "enum_options": { - "__DEFAULT": 0 - } - }, - "m_operator": { - "type": "enum Requirement::Operator", - "id": 1, - "offset": 76, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2672792317, - "enum_options": { - "ROP_AND": 0, - "ROP_OR": 1, - "__DEFAULT": "ROP_AND" - } - } - } - }, - "155144782": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 155144782, - "properties": { - "m_sCategory": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1996239916 - }, - "m_numCategoryInInventory": { - "type": "int", - "id": 1, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 639845069 - } - } - }, - "548301360": { - "name": "class ZoneTokenCount*", - "bases": [ - "ZoneTokenBase", - "PropertyClass" - ], - "hash": 548301360, - "properties": { - "m_debugName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3553984419 - }, - "m_adjectiveList": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 3195213318 - }, - "m_icon": { - "type": "std::string", - "id": 2, - "offset": 120, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1717182340 - }, - "m_iconBW": { - "type": "std::string", - "id": 3, - "offset": 152, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2047461085 - }, - "m_description": { - "type": "std::string", - "id": 4, - "offset": 184, - "flags": 8388639, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1649374815 - }, - "m_displayMode": { - "type": "enum ZTDisplayMode", - "id": 5, - "offset": 216, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2216526410, - "enum_options": { - "ZTDM_Shown": 0, - "ZTDM_Discoverable": 1, - "ZTDM_Hidden": 2 - } - }, - "m_storage": { - "type": "enum ZTStorage", - "id": 6, - "offset": 220, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2290454852, - "enum_options": { - "ZTS_Player": 0, - "ZTS_Zone": 1 - } - }, - "m_onEnable": { - "type": "class SharedPointer", - "id": 7, - "offset": 224, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2591736864 - }, - "m_onDiscover": { - "type": "class SharedPointer", - "id": 8, - "offset": 240, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2826026872 - }, - "m_onDisable": { - "type": "class SharedPointer", - "id": 9, - "offset": 256, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1860656717 - }, - "m_sourceID": { - "type": "gid", - "id": 10, - "offset": 272, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1134700470 - }, - "m_inZone": { - "type": "bool", - "id": 11, - "offset": 280, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 564535654 - }, - "m_enabled": { - "type": "bool", - "id": 12, - "offset": 281, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 504506718 - }, - "m_discovered": { - "type": "bool", - "id": 13, - "offset": 282, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2060478331 - }, - "m_minValue": { - "type": "int", - "id": 14, - "offset": 288, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1508523611 - }, - "m_startValue": { - "type": "int", - "id": 15, - "offset": 292, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 672067813 - }, - "m_maxValue": { - "type": "int", - "id": 16, - "offset": 296, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 158068381 - }, - "m_curValue": { - "type": "int", - "id": 17, - "offset": 300, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1147627809 - }, - "m_counterType": { - "type": "enum ZTCounterType", - "id": 18, - "offset": 304, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1417526179, - "enum_options": { - "ZTCT_Full": 0, - "ZTCT_Count": 1, - "ZTCT_Meter": 2, - "ZTCT_Hidden": 3 - } - }, - "m_onIncrease": { - "type": "class SharedPointer", - "id": 19, - "offset": 312, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2723490243 - }, - "m_onDecrease": { - "type": "class SharedPointer", - "id": 20, - "offset": 328, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1346363029 - }, - "m_onEmpty": { - "type": "class SharedPointer", - "id": 21, - "offset": 344, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1658398600 - }, - "m_onFull": { - "type": "class SharedPointer", - "id": 22, - "offset": 360, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1955555436 - } - } - }, - "154322196": { - "name": "class RespecTieredSpellList*", - "bases": [ - "PropertyClass" - ], - "hash": 154322196, - "properties": { - "m_spellList": { - "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1402125129 - }, - "m_upgradedSpellList": { - "type": "unsigned int", - "id": 1, - "offset": 88, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1475269301 - } - } - }, - "549014187": { - "name": "class SharedPointer", - "bases": [ - "CinematicAction", - "PropertyClass" - ], - "hash": 549014187, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_camToReplace": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2286913643 - } - } - }, - "2123525366": { - "name": "class SharedPointer", - "bases": [ - "CinematicAction", - "PropertyClass" - ], - "hash": 2123525366, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_fadeDuration": { - "type": "float", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1402536557 - }, - "m_fadeToGain": { - "type": "float", - "id": 2, - "offset": 84, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1724568201 - } - } - }, - "155388885": { - "name": "class WizQuestData*", - "bases": [ - "PropertyClass" - ], - "hash": 155388885, - "properties": { - "m_name": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1717359772 - }, - "m_questNameID": { - "type": "unsigned int", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1530354349 - }, - "m_title": { - "type": "std::string", - "id": 2, - "offset": 112, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2308614141 - }, - "m_id": { - "type": "gid", - "id": 3, - "offset": 232, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2090569797 - }, - "m_type": { - "type": "int", - "id": 4, - "offset": 224, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 219902012 - }, - "m_level": { - "type": "int", - "id": 5, - "offset": 228, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 801285362 - }, - "m_mainline": { - "type": "bool", - "id": 6, - "offset": 241, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1749856224 - }, - "m_readyToTurnIn": { - "type": "bool", - "id": 7, - "offset": 242, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 562395883 - }, - "m_activityType": { - "type": "enum QuestTemplate::ActivityType", - "id": 8, - "offset": 244, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 231656390, - "enum_options": { - "QuestTemplate::ACTIVITY_NotActivity": 0, - "QuestTemplate::ACTIVITY_Spell": 1, - "QuestTemplate::ACTIVITY_Crafting": 2, - "QuestTemplate::ACTIVITY_Fishing": 3, - "QuestTemplate::ACTIVITY_Gardening": 4, - "QuestTemplate::ACTIVITY_Pet": 5 - } - }, - "m_skipQHAutoSelect": { - "type": "bool", - "id": 9, - "offset": 248, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2024815836 - }, - "m_goalList": { - "type": "class SharedPointer", - "id": 10, - "offset": 256, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 748820753 - } - } - }, - "2121931086": { - "name": "class MoveCommandArc", - "bases": [ - "MoveController::MoveCommand", - "PropertyClass" - ], - "hash": 2121931086, - "properties": { - "m_vVelocity": { - "type": "class Vector3D", - "id": 0, - "offset": 88, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2295460039 - }, - "m_vGravity": { - "type": "class Vector3D", - "id": 1, - "offset": 100, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3690342814 - }, - "m_fUpdateFreq": { - "type": "float", - "id": 2, - "offset": 136, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1668426734 - }, - "m_dElapsedTime": { - "type": "double", - "id": 3, - "offset": 128, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2027745342 - } - } - }, - "155347296": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 155347296, - "properties": { - "m_description": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1649374815 - }, - "m_displaySpellName": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 268435463, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3323484466, - "enum_options": { - "__BASECLASS": "SpellTemplate" - } - } - } - }, - "2121495183": { - "name": "class SharedPointer", - "bases": [ - "GoalEntry", - "ServiceOptionBase", - "PropertyClass" - ], - "hash": 2121495183, - "properties": { - "m_serviceName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2206028813 - }, - "m_iconKey": { - "type": "std::string", - "id": 1, - "offset": 168, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2457138637 - }, - "m_displayKey": { - "type": "std::string", - "id": 2, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3023276954 - }, - "m_serviceIndex": { - "type": "unsigned int", - "id": 3, - "offset": 204, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2103126710 - }, - "m_forceInteract": { - "type": "bool", - "id": 4, - "offset": 200, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1705789564 - }, - "m_questID": { - "type": "gid", - "id": 5, - "offset": 216, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1246549335 - }, - "m_goalID": { - "type": "gid", - "id": 6, - "offset": 224, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 485200232 - }, - "m_goalTitle": { - "type": "std::string", - "id": 7, - "offset": 272, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2291910240 - }, - "m_questTitle": { - "type": "std::string", - "id": 8, - "offset": 240, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1805465583 - }, - "m_goalNameID": { - "type": "unsigned int", - "id": 9, - "offset": 232, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 403158846 - } - } - }, - "550539945": { - "name": "class PathActionDespawn*", - "bases": [ - "PathBehaviorTemplate::Action", - "PropertyClass" - ], - "hash": 550539945, - "properties": { - "m_nPathID": { - "type": "gid", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 214382368 - }, - "m_nNodeID": { - "type": "int", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 152152635, - "enum_options": { - "__DEFAULT": 4294967295 - } - }, - "m_nPriority": { - "type": "int", - "id": 2, - "offset": 84, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1515251530, - "enum_options": { - "__DEFAULT": 100 - } - }, - "m_nChance": { - "type": "int", - "id": 3, - "offset": 88, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1860748394, - "enum_options": { - "__DEFAULT": 50 - } - } - } - }, - "2121388782": { - "name": "class BasicChatChannelInfo*", - "bases": [ - "PropertyClass" - ], - "hash": 2121388782, - "properties": { - "m_ownerCharacterID": { - "type": "gid", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2128119645 - }, - "m_ownerNameBlob": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2446827686 - }, - "m_isPublic": { - "type": "bool", - "id": 2, - "offset": 112, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1728439822 - }, - "m_inviteAllCooldownTime": { - "type": "int", - "id": 3, - "offset": 116, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1019161494 - }, - "m_playerList": { - "type": "class SharedPointer", - "id": 4, - "offset": 120, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2882119980 - } - } - }, - "550272160": { - "name": "class WinAnimAlphaFade*", - "bases": [ - "WindowAnimation", - "PropertyClass" - ], - "hash": 550272160, - "properties": { - "m_bUseDeepCopy": { - "type": "bool", - "id": 0, - "offset": 72, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 433380635 - }, - "m_fCycleTime": { - "type": "float", - "id": 1, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1056288476 - }, - "m_fElapsedTime": { - "type": "float", - "id": 2, - "offset": 84, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1862647402 - }, - "m_cycle": { - "type": "bool", - "id": 3, - "offset": 92, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 793791523 - }, - "m_allowAlphaCycle": { - "type": "bool", - "id": 4, - "offset": 93, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1269348264 - } - } - }, - "550076533": { - "name": "class SharedPointer", - "bases": [ - "ActorDialogListBase", - "PropertyClass" - ], - "hash": 550076533, - "properties": { - "m_dialogs": { - "type": "class ActorDialog*", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2112889951 - } - } - }, - "156961538": { - "name": "class PromoPromotion*", - "bases": [ - "PropertyClass" - ], - "hash": 156961538, - "properties": { - "m_promoID": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3494513013 - }, - "m_promoTitle": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1797811434 - }, - "m_promoDesc": { - "type": "std::string", - "id": 2, - "offset": 136, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2677655015 - }, - "m_inviterRewards": { - "type": "class PromoRewardList", - "id": 3, - "offset": 168, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1643624525 - }, - "m_inviteeRewards": { - "type": "class PromoRewardList", - "id": 4, - "offset": 256, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1654647008 - } - } - }, - "2121911691": { - "name": "class GamebryoInvisibilityEffect*", - "bases": [ - "InvisibilityEffect", - "GameEffectBase", - "PropertyClass" - ], - "hash": 2121911691, - "properties": { - "m_currentTickCount": { - "type": "double", - "id": 0, - "offset": 80, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2533274692 - }, - "m_effectNameID": { - "type": "unsigned int", - "id": 1, - "offset": 96, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1204067144 - }, - "m_bIsOnPet": { - "type": "bool", - "id": 2, - "offset": 73, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 522593303 - }, - "m_originatorID": { - "type": "gid", - "id": 3, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1131810019 - }, - "m_itemSlotID": { - "type": "unsigned int", - "id": 4, - "offset": 112, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1895747595 - }, - "m_internalID": { - "type": "int", - "id": 5, - "offset": 92, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1643137924 - }, - "m_endTime": { - "type": "unsigned int", - "id": 6, - "offset": 88, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 716479635 - } - } - }, - "156240166": { - "name": "class TemplateCache::Entry*", - "bases": [ - "PropertyClass" - ], - "hash": 156240166, - "properties": { - "m_FileTime": { - "type": "unsigned __int64", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1953360040 - }, - "m_sBinary": { - "type": "class SerializedBuffer", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3458458254 - } - } - }, - "2121911681": { - "name": "class GamebryoInvisibilityEffect", - "bases": [ - "InvisibilityEffect", - "GameEffectBase", - "PropertyClass" - ], - "hash": 2121911681, - "properties": { - "m_currentTickCount": { - "type": "double", - "id": 0, - "offset": 80, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2533274692 - }, - "m_effectNameID": { - "type": "unsigned int", - "id": 1, - "offset": 96, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1204067144 - }, - "m_bIsOnPet": { - "type": "bool", - "id": 2, - "offset": 73, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 522593303 - }, - "m_originatorID": { - "type": "gid", - "id": 3, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1131810019 - }, - "m_itemSlotID": { - "type": "unsigned int", - "id": 4, - "offset": 112, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1895747595 - }, - "m_internalID": { - "type": "int", - "id": 5, - "offset": 92, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1643137924 - }, - "m_endTime": { - "type": "unsigned int", - "id": 6, - "offset": 88, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 716479635 - } - } - }, - "156098403": { - "name": "class PetDropFoodItem*", - "bases": [ - "PropertyClass" - ], - "hash": 156098403, - "properties": { - "m_uTemplateID": { - "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1943544747 - }, - "m_nFoodGroup": { - "type": "int", - "id": 1, - "offset": 76, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 63971517 - }, - "m_fFallSpeed": { - "type": "float", - "id": 2, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 701808397 - }, - "m_nFullnessPoints": { - "type": "int", - "id": 3, - "offset": 84, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1015203857 - }, - "m_nTimeBonusInSeconds": { - "type": "int", - "id": 4, - "offset": 88, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1007283620 - }, - "m_nSpeedBonusInSeconds": { - "type": "int", - "id": 5, - "offset": 92, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 429640550 - }, - "m_nFreezeTimerInSeconds": { - "type": "int", - "id": 6, - "offset": 96, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1703451440 - }, - "m_fDropWeight": { - "type": "float", - "id": 7, - "offset": 100, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1839368282 - }, - "m_fWeightChange": { - "type": "float", - "id": 8, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 122664907 - }, - "m_sCollectSound": { - "type": "std::string", - "id": 9, - "offset": 112, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2812716637 - }, - "m_sCollectFX": { - "type": "std::string", - "id": 10, - "offset": 144, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3248880594 - } - } - }, - "550436000": { - "name": "class WinAnimAlphaFade", - "bases": [ - "WindowAnimation", - "PropertyClass" - ], - "hash": 550436000, - "properties": { - "m_bUseDeepCopy": { - "type": "bool", - "id": 0, - "offset": 72, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 433380635 - }, - "m_fCycleTime": { - "type": "float", - "id": 1, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1056288476 - }, - "m_fElapsedTime": { - "type": "float", - "id": 2, - "offset": 84, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1862647402 - }, - "m_cycle": { - "type": "bool", - "id": 3, - "offset": 92, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 793791523 - }, - "m_allowAlphaCycle": { - "type": "bool", - "id": 4, - "offset": 93, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1269348264 - } - } - }, - "156093283": { - "name": "class PetDropFoodItem", - "bases": [ - "PropertyClass" - ], - "hash": 156093283, - "properties": { - "m_uTemplateID": { - "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1943544747 - }, - "m_nFoodGroup": { - "type": "int", - "id": 1, - "offset": 76, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 63971517 - }, - "m_fFallSpeed": { - "type": "float", - "id": 2, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 701808397 - }, - "m_nFullnessPoints": { - "type": "int", - "id": 3, - "offset": 84, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1015203857 - }, - "m_nTimeBonusInSeconds": { - "type": "int", - "id": 4, - "offset": 88, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1007283620 - }, - "m_nSpeedBonusInSeconds": { - "type": "int", - "id": 5, - "offset": 92, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 429640550 - }, - "m_nFreezeTimerInSeconds": { - "type": "int", - "id": 6, - "offset": 96, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1703451440 - }, - "m_fDropWeight": { - "type": "float", - "id": 7, - "offset": 100, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1839368282 - }, - "m_fWeightChange": { - "type": "float", - "id": 8, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 122664907 - }, - "m_sCollectSound": { - "type": "std::string", - "id": 9, - "offset": 112, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2812716637 - }, - "m_sCollectFX": { - "type": "std::string", - "id": 10, - "offset": 144, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3248880594 - } - } - }, - "175744476": { - "name": "class UpdatePipsCinematicAction*", - "bases": [ - "CinematicAction", - "PropertyClass" - ], - "hash": 175744476, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - } - } - }, - "939098106": { - "name": "class PetDerbyResult", - "bases": [ - "PropertyClass" - ], - "hash": 939098106, - "properties": { - "m_petNumber": { - "type": "int", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1254828 - }, - "m_finishTime": { - "type": "float", - "id": 1, - "offset": 76, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1090658759 - }, - "m_tickets": { - "type": "int", - "id": 2, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 353703441 - }, - "m_gold": { - "type": "int", - "id": 3, - "offset": 84, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 219423808 - } - } - }, - "1299977357": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1299977357, - "properties": { - "m_filterName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1798118690 - }, - "m_filterIcon": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1797941258 - }, - "m_displayKey": { - "type": "std::string", - "id": 2, - "offset": 136, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3023276954 - }, - "m_countOffset": { - "type": "unsigned int", - "id": 3, - "offset": 172, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 621805021 - } - } - }, - "1299811137": { - "name": "class MagicXPConfig*", - "bases": [ - "PropertyClass" - ], - "hash": 1299811137, - "properties": { - "m_encounterXPFactors": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1658121668 - }, - "m_levelInfo": { - "type": "class MagicLevelInfo*", - "id": 1, - "offset": 96, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 3910018919 - }, - "m_classInfo": { - "type": "class ClassInfo*", - "id": 2, - "offset": 112, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1542484118 - }, - "m_maxSchoolLevel": { - "type": "int", - "id": 3, - "offset": 144, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 966975040 - }, - "m_experienceBonus": { - "type": "float", - "id": 4, - "offset": 148, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2151977766 - }, - "m_schoolOfFocusBonus": { - "type": "float", - "id": 5, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1568585435 - }, - "m_levelsConfig": { - "type": "class MobRankLevel*", - "id": 6, - "offset": 160, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1122741478 - } - } - }, - "156240142": { - "name": "class TemplateCache::Entry", - "bases": [ - "PropertyClass" - ], - "hash": 156240142, - "properties": { - "m_FileTime": { - "type": "unsigned __int64", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1953360040 - }, - "m_sBinary": { - "type": "class SerializedBuffer", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3458458254 - } - } - }, - "922587087": { - "name": "class PotionShopOption*", - "bases": [ - "ServiceOptionBase", - "PropertyClass" - ], - "hash": 922587087, - "properties": { - "m_serviceName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2206028813 - }, - "m_iconKey": { - "type": "std::string", - "id": 1, - "offset": 168, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2457138637 - }, - "m_displayKey": { - "type": "std::string", - "id": 2, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3023276954 - }, - "m_serviceIndex": { - "type": "unsigned int", - "id": 3, - "offset": 204, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2103126710 - }, - "m_forceInteract": { - "type": "bool", - "id": 4, - "offset": 200, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1705789564 - } - } - }, - "1299811140": { - "name": "class MagicXPConfig", - "bases": [ - "PropertyClass" - ], - "hash": 1299811140, - "properties": { - "m_encounterXPFactors": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1658121668 - }, - "m_levelInfo": { - "type": "class MagicLevelInfo*", - "id": 1, - "offset": 96, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 3910018919 - }, - "m_classInfo": { - "type": "class ClassInfo*", - "id": 2, - "offset": 112, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1542484118 - }, - "m_maxSchoolLevel": { - "type": "int", - "id": 3, - "offset": 144, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 966975040 - }, - "m_experienceBonus": { - "type": "float", - "id": 4, - "offset": 148, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2151977766 - }, - "m_schoolOfFocusBonus": { - "type": "float", - "id": 5, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1568585435 - }, - "m_levelsConfig": { - "type": "class MobRankLevel*", - "id": 6, - "offset": 160, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1122741478 - } - } - }, - "156351368": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 156351368, - "properties": { - "m_propertyList": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 23, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2832578002 - } - } - }, - "927735810": { - "name": "class ClearTopTeamCinematicAction", - "bases": [ - "CinematicAction", - "PropertyClass" - ], - "hash": 927735810, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_interpDuration": { - "type": "float", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237711951 - } - } - }, - "1301335282": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1301335282, - "properties": { - "m_sellItemGID": { - "type": "gid", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1026273003 - }, - "m_quantity": { - "type": "unsigned int", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 380617740 - }, - "m_clientRequestID": { - "type": "int", - "id": 2, - "offset": 84, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1118529839 - } - } - }, - "924614251": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 924614251, - "properties": { - "m_matchID": { - "type": "gid", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1757621298 - }, - "m_matchNameID": { - "type": "unsigned int", - "id": 1, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1751361288 - }, - "m_matchResolution": { - "type": "int", - "id": 2, - "offset": 84, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1481862043 - }, - "m_actorList": { - "type": "class SharedPointer", - "id": 3, - "offset": 88, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2087966079 - }, - "m_teamResults": { - "type": "class MatchTeamResult", - "id": 4, - "offset": 104, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2421530763 - }, - "m_timeOutDraw": { - "type": "bool", - "id": 5, - "offset": 120, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 582264616 - } - } - }, - "159141929": { - "name": "class WinAnimSizeSpeed", - "bases": [ - "WinAnimSize", - "WindowAnimation", - "PropertyClass" - ], - "hash": 159141929, - "properties": { - "m_bUseDeepCopy": { - "type": "bool", - "id": 0, - "offset": 72, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 433380635 - }, - "m_size": { - "type": "class Size", - "id": 1, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 251247159 - }, - "m_fSpeed": { - "type": "float", - "id": 2, - "offset": 88, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 503609006 - }, - "m_currentSize": { - "type": "class Vector3D", - "id": 3, - "offset": 92, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2914066496 - } - } - }, - "924584657": { - "name": "class BackpackBuddyHousingOptions", - "bases": [ - "PropertyClass" - ], - "hash": 924584657, - "properties": { - "m_includeCastleBlocks": { - "type": "bool", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 519951249 - }, - "m_includePlantLife": { - "type": "bool", - "id": 1, - "offset": 73, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 596498422 - }, - "m_includeWallHangings": { - "type": "bool", - "id": 2, - "offset": 74, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 720249270 - }, - "m_includeTileWallpaper": { - "type": "bool", - "id": 3, - "offset": 75, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1182210829 - }, - "m_includeOutdoor": { - "type": "bool", - "id": 4, - "offset": 76, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 192313891 - }, - "m_includeFurniture": { - "type": "bool", - "id": 5, - "offset": 77, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 15665371 - }, - "m_includeDecoration": { - "type": "bool", - "id": 6, - "offset": 78, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1389489247 - }, - "m_includeMusicalScrolls": { - "type": "bool", - "id": 7, - "offset": 79, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 623905255 - }, - "m_includeSeeds": { - "type": "bool", - "id": 8, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1324177291 - } - } - }, - "158186061": { - "name": "class ReqOtherCharacterQuestCompleted*", - "bases": [ - "Requirement", - "PropertyClass" - ], - "hash": 158186061, - "properties": { - "m_applyNOT": { - "type": "bool", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1746328074, - "enum_options": { - "__DEFAULT": 0 - } - }, - "m_operator": { - "type": "enum Requirement::Operator", - "id": 1, - "offset": 76, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2672792317, - "enum_options": { - "ROP_AND": 0, - "ROP_OR": 1, - "__DEFAULT": "ROP_AND" - } - }, - "m_quest": { - "type": "std::string", - "id": 2, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2305471533 - } - } - }, - "924087310": { - "name": "class ClientCreateActorCinematicAction", - "bases": [ - "CreateActorCinematicAction", - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 924087310, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - }, - "m_animations": { - "type": "std::string", - "id": 2, - "offset": 120, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3030904078 - }, - "m_model": { - "type": "std::string", - "id": 3, - "offset": 152, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2300510668 - }, - "m_createOrientation": { - "type": "enum CreateActorCinematicAction::kCreateOrientation", - "id": 4, - "offset": 184, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3562324429, - "enum_options": { - "kFaceTarget": 0, - "kFaceSource": 1, - "kSigil": 2, - "kTarget": 3, - "kSource": 4, - "kSigilRight": 5, - "kSigilLeft": 6, - "kFaceTargetTeam": 7 - } - }, - "m_hidePolymorphFloatyText": { - "type": "bool", - "id": 5, - "offset": 188, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 942475883 - }, - "m_forwardOffset": { - "type": "float", - "id": 6, - "offset": 192, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1749681459 - }, - "m_absoluteTarget": { - "type": "bool", - "id": 7, - "offset": 196, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1463993657 - } - } - }, - "1303701152": { - "name": "class PathMovementBehavior", - "bases": [], - "hash": 1303701152, - "properties": {} - }, - "156961698": { - "name": "class PromoPromotion", - "bases": [ - "PropertyClass" - ], - "hash": 156961698, - "properties": { - "m_promoID": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3494513013 - }, - "m_promoTitle": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1797811434 - }, - "m_promoDesc": { - "type": "std::string", - "id": 2, - "offset": 136, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2677655015 - }, - "m_inviterRewards": { - "type": "class PromoRewardList", - "id": 3, - "offset": 168, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1643624525 - }, - "m_inviteeRewards": { - "type": "class PromoRewardList", - "id": 4, - "offset": 256, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1654647008 - } - } - }, - "922739513": { - "name": "class SharedPointer", - "bases": [ - "HousingGameInterface", - "PropertyClass" - ], - "hash": 922739513, - "properties": {} - }, - "1302422311": { - "name": "enum ReqMinion::MinionType", - "bases": [], - "hash": 1302422311, - "properties": {} - }, - "1301969510": { - "name": "class SharedPointer", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1301969510, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_publicItemList": { - "type": "class OldWizardEquippedItemInfo*", - "id": 1, - "offset": 112, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2226122424 - } - } - }, - "158657516": { - "name": "class CharacterRegistry*", - "bases": [ - "PropertyClass" - ], - "hash": 158657516, - "properties": { - "m_displayedTips": { - "type": "gid", - "id": 0, - "offset": 112, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": true, - "pointer": false, - "hash": 1546509239 - }, - "m_finishedTips": { - "type": "gid", - "id": 1, - "offset": 128, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": true, - "pointer": false, - "hash": 1286351938 - }, - "m_chatStatsByState": { - "type": "struct CharacterChatStatsByState", - "id": 2, - "offset": 144, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": true, - "pointer": false, - "hash": 3487355966 - }, - "m_chatStatsByText": { - "type": "struct CharacterChatStatsByText", - "id": 3, - "offset": 176, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": true, - "pointer": false, - "hash": 3265910788 - }, - "m_lockList": { - "type": "struct LockData", - "id": 4, - "offset": 208, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": true, - "pointer": false, - "hash": 1946956503 - }, - "m_friendList": { - "type": "struct FriendData", - "id": 5, - "offset": 288, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": true, - "pointer": false, - "hash": 2895296598 - }, - "m_activeQuestId": { - "type": "gid", - "id": 6, - "offset": 304, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": true, - "pointer": false, - "hash": 229595059 - }, - "m_activeGoalId": { - "type": "unsigned int", - "id": 7, - "offset": 336, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": true, - "pointer": false, - "hash": 1967307577 - }, - "m_activeGoalSetByPlayer": { - "type": "bool", - "id": 8, - "offset": 340, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": true, - "pointer": false, - "hash": 1365712422 - }, - "m_crownShopSettings": { - "type": "class SharedPointer", - "id": 9, - "offset": 240, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": true, - "pointer": true, - "hash": 2058124240 - }, - "m_loginHistory": { - "type": "class LoginHistoryEntry", - "id": 10, - "offset": 360, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": true, - "pointer": false, - "hash": 1668671153 - } - } - }, - "924584849": { - "name": "class BackpackBuddyHousingOptions*", - "bases": [ - "PropertyClass" - ], - "hash": 924584849, - "properties": { - "m_includeCastleBlocks": { - "type": "bool", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 519951249 - }, - "m_includePlantLife": { - "type": "bool", - "id": 1, - "offset": 73, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 596498422 - }, - "m_includeWallHangings": { - "type": "bool", - "id": 2, - "offset": 74, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 720249270 - }, - "m_includeTileWallpaper": { - "type": "bool", - "id": 3, - "offset": 75, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1182210829 - }, - "m_includeOutdoor": { - "type": "bool", - "id": 4, - "offset": 76, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 192313891 - }, - "m_includeFurniture": { - "type": "bool", - "id": 5, - "offset": 77, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 15665371 - }, - "m_includeDecoration": { - "type": "bool", - "id": 6, - "offset": 78, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1389489247 - }, - "m_includeMusicalScrolls": { - "type": "bool", - "id": 7, - "offset": 79, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 623905255 - }, - "m_includeSeeds": { - "type": "bool", - "id": 8, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1324177291 - } - } - }, - "1303386237": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1303386237, - "properties": { - "m_category": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2682050233 - }, - "m_events": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 716105444 - }, - "m_penalties": { - "type": "class SharedPointer", - "id": 2, - "offset": 128, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1631054690 - } - } - }, - "159305769": { - "name": "class WinAnimSizeSpeed*", - "bases": [ - "WinAnimSize", - "WindowAnimation", - "PropertyClass" - ], - "hash": 159305769, - "properties": { - "m_bUseDeepCopy": { - "type": "bool", - "id": 0, - "offset": 72, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 433380635 - }, - "m_size": { - "type": "class Size", - "id": 1, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 251247159 - }, - "m_fSpeed": { - "type": "float", - "id": 2, - "offset": 88, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 503609006 - }, - "m_currentSize": { - "type": "class Vector3D", - "id": 3, - "offset": 92, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2914066496 - } - } - }, - "925689198": { - "name": "class WhirlyBurlyBehavior*", - "bases": [ - "WhirlyBurlyBehaviorBase", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 925689198, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - } - } - }, - "1304342073": { - "name": "class std::list >", - "bases": [], - "hash": 1304342073, - "properties": {} - }, - "160523922": { - "name": "class NewBadgeData*", - "bases": [ - "PropertyClass" - ], - "hash": 160523922, - "properties": { - "m_badgeID": { - "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 628960141 - }, - "m_badgeTime": { - "type": "unsigned int", - "id": 1, - "offset": 76, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1716875215 - } - } - }, - "925408749": { - "name": "class WhirlyBurlyBehaviorBase", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 925408749, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - } - } - }, - "924908293": { - "name": "class ControlList::Item", - "bases": [ - "PropertyClass" - ], - "hash": 924908293, - "properties": { - "m_sString": { - "type": "std::wstring", - "id": 0, - "offset": 72, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1662841794 - }, - "m_sTooltip": { - "type": "std::wstring", - "id": 1, - "offset": 104, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1680475798 - } - } - }, - "1306888271": { - "name": "class DerbyForceLaneChange*", - "bases": [ - "DerbyEffect", - "PropertyClass" - ], - "hash": 1306888271, - "properties": { - "m_buffType": { - "type": "enum DerbyTalentBuffType", - "id": 0, - "offset": 92, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1149251982, - "enum_options": { - "Buff": 0, - "Debuff": 1, - "Neither": 2 - } - }, - "m_kTarget": { - "type": "enum DerbyTargetType", - "id": 1, - "offset": 96, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1807803351, - "enum_options": { - "kTargetInFront": 0, - "kTargetBehind": 1, - "kTargetFirst": 2, - "kTargetSelf": 3, - "kTargetAll": 4, - "kTargetLast": 5 - } - }, - "m_nDuration": { - "type": "int", - "id": 2, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1110167982 - }, - "m_effectID": { - "type": "unsigned int", - "id": 3, - "offset": 88, - "flags": 24, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2347630439 - }, - "m_imageFilename": { - "type": "std::string", - "id": 4, - "offset": 112, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2813328063 - }, - "m_iconIndex": { - "type": "unsigned int", - "id": 5, - "offset": 144, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1265133262 - }, - "m_soundOnActivate": { - "type": "std::string", - "id": 6, - "offset": 152, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1956929714 - }, - "m_soundOnTarget": { - "type": "std::string", - "id": 7, - "offset": 184, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3444214056 - }, - "m_targetParticleEffect": { - "type": "std::string", - "id": 8, - "offset": 216, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3048234723 - }, - "m_overheadMessage": { - "type": "std::string", - "id": 9, - "offset": 248, - "flags": 8388639, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1701018190 - }, - "m_requirements": { - "type": "class RequirementList", - "id": 10, - "offset": 280, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2840988582 - } - } - }, - "166839369": { - "name": "class Ingredient*", - "bases": [ - "PropertyClass" - ], - "hash": 166839369, - "properties": { - "m_itemID": { - "type": "gid", - "id": 0, - "offset": 80, - "flags": 33554439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 569545460 - }, - "m_adjective": { - "type": "std::string", - "id": 1, - "offset": 88, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3429518154 - }, - "m_quantity": { - "type": "int", - "id": 2, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 169215289 - }, - "m_spellTemplate": { - "type": "std::string", - "id": 3, - "offset": 128, - "flags": 268435463, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1746600759, - "enum_options": { - "__BASECLASS": "SpellTemplate" - } - }, - "m_ingredientType": { - "type": "enum Ingredient::INGREDIENT_TYPE", - "id": 4, - "offset": 72, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3347167757, - "enum_options": { - "INGREDIENT_REAGENT": 0, - "INGREDIENT_TREASURE": 1, - "INGREDIENT_ITEM": 2, - "INGREDIENT_FISH": 3, - "INGREDIENT_PET_SNACK": 4 - } - } - } - }, - "925227714": { - "name": "class ClassProjectPlayerProgressList*", - "bases": [ - "PropertyClass" - ], - "hash": 925227714, - "properties": { - "m_playerProgressList": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1898798624 - } - } - }, - "1306093476": { - "name": "class ResAddCharacterSlotResult", - "bases": [ - "Result", - "PropertyClass" - ], - "hash": 1306093476, - "properties": { - "m_maximumPurchasedCharacterSlots": { - "type": "int", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 57745273 - } - } - }, - "162395059": { - "name": "class ComplexRotateTurnIndicatorCinematicAction*", - "bases": [ - "CinematicAction", - "PropertyClass" - ], - "hash": 162395059, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_rotationInfo": { - "type": "class SharedPointer", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2332010820 - } - } - }, - "161907431": { - "name": "class MoveCommandTeleport", - "bases": [ - "MoveController::MoveCommand", - "PropertyClass" - ], - "hash": 161907431, - "properties": { - "m_vTarget": { - "type": "class Vector3D", - "id": 0, - "offset": 88, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3770499167 - } - } - }, - "1306516086": { - "name": "class WizZoneData*", - "bases": [ - "ZoneData", - "PropertyClass" - ], - "hash": 1306516086, - "properties": { - "m_nType": { - "type": "enum ZoneData::Type", - "id": 0, - "offset": 72, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2656861130, - "enum_options": { - "ZONETYPE_INVALID": 4294967295, - "ZONETYPE_START": 0, - "ZONETYPE_STATIC": 1, - "ZONETYPE_DYNAMIC": 2 - } - }, - "m_zoneName": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 134217735, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2171167736 - }, - "m_zoneDisplayName": { - "type": "std::string", - "id": 2, - "offset": 112, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1962339438 - }, - "m_skyDomeName": { - "type": "std::string", - "id": 3, - "offset": 144, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2339979448 - }, - "m_skyLayerName": { - "type": "std::string", - "id": 4, - "offset": 184, - "flags": 131079, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2824410256 - }, - "m_collisionFileName": { - "type": "std::string", - "id": 5, - "offset": 208, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1725365192 - }, - "m_gamebryoSceneFileName": { - "type": "std::string", - "id": 6, - "offset": 240, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3084395168 - }, - "m_musicFileName": { - "type": "std::string", - "id": 7, - "offset": 272, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1817607805 - }, - "m_spawnList": { - "type": "class SpawnPointTemplate", - "id": 8, - "offset": 304, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1063041926 - }, - "m_teleportList": { - "type": "class TeleporterTemplate", - "id": 9, - "offset": 320, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1031682046 - }, - "m_locationList": { - "type": "class LocationTemplate", - "id": 10, - "offset": 336, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2114141903 - }, - "m_objectList": { - "type": "class SharedPointer", - "id": 11, - "offset": 352, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 882782852 - }, - "m_allEffects": { - "type": "std::string", - "id": 12, - "offset": 368, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2483362772 - }, - "m_healingPerMinute": { - "type": "int", - "id": 13, - "offset": 480, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 782115659 - }, - "m_playerPopThresh": { - "type": "int", - "id": 14, - "offset": 484, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1692004900 - }, - "m_nSoftLimit": { - "type": "int", - "id": 15, - "offset": 488, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1593689635, - "enum_options": { - "__DEFAULT": 50 - } - }, - "m_nHardLimit": { - "type": "int", - "id": 16, - "offset": 492, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1752405446, - "enum_options": { - "__DEFAULT": 100 - } - }, - "m_farClip": { - "type": "float", - "id": 17, - "offset": 496, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1393981304, - "enum_options": { - "__DEFAULT": 25000 - } - }, - "m_nearClipOverride": { - "type": "float", - "id": 18, - "offset": 500, - "flags": 519, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1092806405, - "enum_options": { - "__DEFAULT": 1 - } - }, - "m_defaultBackgroundColorRed": { - "type": "float", - "id": 19, - "offset": 504, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1511995894 - }, - "m_defaultBackgroundColorGreen": { - "type": "float", - "id": 20, - "offset": 508, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2127637260 - }, - "m_defaultBackgroundColorBlue": { - "type": "float", - "id": 21, - "offset": 512, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1908873795 - }, - "m_fogColorRed": { - "type": "int", - "id": 22, - "offset": 516, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1578810896 - }, - "m_fogColorGreen": { - "type": "int", - "id": 23, - "offset": 520, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1229332710 - }, - "m_fogColorBlue": { - "type": "int", - "id": 24, - "offset": 524, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 557754685 - }, - "m_fogDensity": { - "type": "float", - "id": 25, - "offset": 528, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1170901171 - }, - "m_fogStartDensity": { - "type": "float", - "id": 26, - "offset": 532, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1642636961 - }, - "m_fogEnabled": { - "type": "bool", - "id": 27, - "offset": 536, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 563358906 - }, - "m_nObjectID": { - "type": "unsigned int", - "id": 28, - "offset": 540, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 748496927 - }, - "m_bDisableTransitionAutoHide": { - "type": "bool", - "id": 29, - "offset": 544, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 702738663 - }, - "m_encounterNames": { - "type": "std::string", - "id": 30, - "offset": 384, - "flags": 268435463, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2150841410, - "enum_options": { - "__BASECLASS": "EncounterTemplate" - } - }, - "m_encounterGroup": { - "type": "std::string", - "id": 31, - "offset": 400, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2143153595 - }, - "m_zoneAdjectives": { - "type": "std::string", - "id": 32, - "offset": 432, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 3603923993 - }, - "m_zonePermissions": { - "type": "std::string", - "id": 33, - "offset": 464, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2928923475 - }, - "m_canPlaceTeleportMarker": { - "type": "bool", - "id": 34, - "offset": 545, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 600985755 - }, - "m_filterSetUID": { - "type": "unsigned int", - "id": 35, - "offset": 548, - "flags": 33554695, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1054674497 - }, - "m_conditionalSkyboxes": { - "type": "class SkyboxInfo", - "id": 36, - "offset": 552, - "flags": 263, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2512765286 - }, - "m_musicDelay": { - "type": "float", - "id": 37, - "offset": 568, - "flags": 263, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1217785767 - }, - "m_combatMusic": { - "type": "std::string", - "id": 38, - "offset": 576, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3636593682 - }, - "m_guiFile": { - "type": "std::string", - "id": 39, - "offset": 608, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2717603296 - }, - "m_bloomBrightnessThreshold": { - "type": "float", - "id": 40, - "offset": 640, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1052055702, - "enum_options": { - "__DEFAULT": "0.044892" - } - }, - "m_bloomScale": { - "type": "float", - "id": 41, - "offset": 644, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 955880152, - "enum_options": { - "__DEFAULT": "0.970443" - } - }, - "m_bloomCount": { - "type": "int", - "id": 42, - "offset": 648, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 847157372, - "enum_options": { - "__DEFAULT": 3 - } - }, - "m_noMounts": { - "type": "bool", - "id": 43, - "offset": 652, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1225032630 - }, - "m_a2wFog": { - "type": "bool", - "id": 44, - "offset": 653, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 181294809 - }, - "m_swimZone": { - "type": "bool", - "id": 45, - "offset": 654, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 255657967 - }, - "m_altMusicFile": { - "type": "class MusicFileInfo", - "id": 46, - "offset": 656, - "flags": 263, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2140137174 - } - } - }, - "161726192": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 161726192, - "properties": { - "m_boyCharacterList": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 484937069 - }, - "m_girlCharacterList": { - "type": "class SharedPointer", - "id": 1, - "offset": 88, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2372941617 - } - } - }, - "925503072": { - "name": "class SharedPointer", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 925503072, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - }, - "m_assetName": { - "type": "std::string", - "id": 1, - "offset": 120, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513131580 - }, - "m_proxyName": { - "type": "std::string", - "id": 2, - "offset": 152, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3120358366 - }, - "m_height": { - "type": "float", - "id": 3, - "offset": 184, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 602977104 - }, - "m_bStaticObject": { - "type": "bool", - "id": 4, - "offset": 188, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 108091444 - }, - "m_bCastsShadow": { - "type": "bool", - "id": 5, - "offset": 189, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 652868121 - }, - "m_bFadesIn": { - "type": "bool", - "id": 6, - "offset": 190, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 263337711, - "enum_options": { - "__DEFAULT": 1 - } - }, - "m_opacity": { - "type": "float", - "id": 7, - "offset": 192, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 700308464, - "enum_options": { - "__DEFAULT": 1 - } - }, - "m_bFadesOut": { - "type": "bool", - "id": 8, - "offset": 196, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 17988464, - "enum_options": { - "__DEFAULT": 1 - } - }, - "m_bPortalExcluded": { - "type": "bool", - "id": 9, - "offset": 197, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 239086293 - }, - "m_scale": { - "type": "float", - "id": 10, - "offset": 200, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 899693439, - "enum_options": { - "__DEFAULT": 1 - } - }, - "m_bCanBeHiddenByCamera": { - "type": "bool", - "id": 11, - "offset": 204, - "flags": 263, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 185252414 - }, - "m_nLightType": { - "type": "enum RenderBehaviorTemplate::LightingType", - "id": 12, - "offset": 208, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2027385184, - "enum_options": { - "None": 0, - "Char": 1, - "Env": 2 - } - }, - "m_shadowAssetName": { - "type": "std::string", - "id": 13, - "offset": 216, - "flags": 131335, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1844059970 - }, - "m_enableReqs": { - "type": "class SharedPointer", - "id": 14, - "offset": 248, - "flags": 263, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3158020443 - } - } - }, - "160948224": { - "name": "class ClientPetCameraActorCinematicAction", - "bases": [ - "PetCameraActorCinematicAction", - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 160948224, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - } - } - }, - "925543464": { - "name": "class SharedPointer", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 925543464, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - } - } - }, - "1307176026": { - "name": "class DerbyModifyMoraleChance*", - "bases": [ - "DerbyEffect", - "PropertyClass" - ], - "hash": 1307176026, - "properties": { - "m_buffType": { - "type": "enum DerbyTalentBuffType", - "id": 0, - "offset": 92, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1149251982, - "enum_options": { - "Buff": 0, - "Debuff": 1, - "Neither": 2 - } - }, - "m_kTarget": { - "type": "enum DerbyTargetType", - "id": 1, - "offset": 96, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1807803351, - "enum_options": { - "kTargetInFront": 0, - "kTargetBehind": 1, - "kTargetFirst": 2, - "kTargetSelf": 3, - "kTargetAll": 4, - "kTargetLast": 5 - } - }, - "m_nDuration": { - "type": "int", - "id": 2, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1110167982 - }, - "m_effectID": { - "type": "unsigned int", - "id": 3, - "offset": 88, - "flags": 24, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2347630439 - }, - "m_imageFilename": { - "type": "std::string", - "id": 4, - "offset": 112, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2813328063 - }, - "m_iconIndex": { - "type": "unsigned int", - "id": 5, - "offset": 144, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1265133262 - }, - "m_soundOnActivate": { - "type": "std::string", - "id": 6, - "offset": 152, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1956929714 - }, - "m_soundOnTarget": { - "type": "std::string", - "id": 7, - "offset": 184, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3444214056 - }, - "m_targetParticleEffect": { - "type": "std::string", - "id": 8, - "offset": 216, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3048234723 - }, - "m_overheadMessage": { - "type": "std::string", - "id": 9, - "offset": 248, - "flags": 8388639, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1701018190 - }, - "m_requirements": { - "type": "class RequirementList", - "id": 10, - "offset": 280, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2840988582 - }, - "m_moraleChanceActionMap": { - "type": "class MoraleModificationMap", - "id": 11, - "offset": 376, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1654668404 - } - } - }, - "1306888295": { - "name": "class DerbyForceLaneChange", - "bases": [ - "DerbyEffect", - "PropertyClass" - ], - "hash": 1306888295, - "properties": { - "m_buffType": { - "type": "enum DerbyTalentBuffType", - "id": 0, - "offset": 92, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1149251982, - "enum_options": { - "Buff": 0, - "Debuff": 1, - "Neither": 2 - } - }, - "m_kTarget": { - "type": "enum DerbyTargetType", - "id": 1, - "offset": 96, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1807803351, - "enum_options": { - "kTargetInFront": 0, - "kTargetBehind": 1, - "kTargetFirst": 2, - "kTargetSelf": 3, - "kTargetAll": 4, - "kTargetLast": 5 - } - }, - "m_nDuration": { - "type": "int", - "id": 2, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1110167982 - }, - "m_effectID": { - "type": "unsigned int", - "id": 3, - "offset": 88, - "flags": 24, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2347630439 - }, - "m_imageFilename": { - "type": "std::string", - "id": 4, - "offset": 112, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2813328063 - }, - "m_iconIndex": { - "type": "unsigned int", - "id": 5, - "offset": 144, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1265133262 - }, - "m_soundOnActivate": { - "type": "std::string", - "id": 6, - "offset": 152, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1956929714 - }, - "m_soundOnTarget": { - "type": "std::string", - "id": 7, - "offset": 184, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3444214056 - }, - "m_targetParticleEffect": { - "type": "std::string", - "id": 8, - "offset": 216, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3048234723 - }, - "m_overheadMessage": { - "type": "std::string", - "id": 9, - "offset": 248, - "flags": 8388639, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1701018190 - }, - "m_requirements": { - "type": "class RequirementList", - "id": 10, - "offset": 280, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2840988582 - } - } - }, - "161799650": { - "name": "class SharedPointer", - "bases": [ - "ItemFinderBehaviorBase", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 161799650, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - } - } - }, - "926875057": { - "name": "class TeamHelpUpdateInfo*", - "bases": [ - "PropertyClass" - ], - "hash": 926875057, - "properties": { - "m_worldList": { - "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 560397361 - } - } - }, - "926719469": { - "name": "class WhirlyBurlyBehaviorBase*", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 926719469, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - } - } - }, - "162077750": { - "name": "enum DoodleDoug::DdDirection", - "bases": [], - "hash": 162077750, - "properties": {} - }, - "925974974": { - "name": "class BattlegroundSigilTemplate*", - "bases": [ - "CombatSigilTemplate", - "SigilTemplate", - "CoreTemplate", - "PropertyClass" - ], - "hash": 925974974, - "properties": { - "m_behaviors": { - "type": "class BehaviorTemplate*", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1197808594 - }, - "m_sigilName": { - "type": "std::string", - "id": 1, - "offset": 96, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3177657588 - }, - "m_sigilType": { - "type": "std::string", - "id": 2, - "offset": 136, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3177899445 - }, - "m_entryResults": { - "type": "class ResultList*", - "id": 3, - "offset": 184, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3262956108 - }, - "m_requirements": { - "type": "class RequirementList*", - "id": 4, - "offset": 176, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2840985510 - }, - "m_cancelResults": { - "type": "class ResultList*", - "id": 5, - "offset": 192, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3799257120 - }, - "m_completeResults": { - "type": "class ResultList*", - "id": 6, - "offset": 200, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1964258099 - }, - "m_useState": { - "type": "bool", - "id": 7, - "offset": 216, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 683320865 - }, - "m_stateOverride": { - "type": "std::string", - "id": 8, - "offset": 224, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1949715548 - }, - "m_subCircles": { - "type": "class SigilSubCircle*", - "id": 9, - "offset": 256, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2227135493 - }, - "m_engageRadius": { - "type": "float", - "id": 10, - "offset": 304, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1429683718 - }, - "m_battlefieldEffects": { - "type": "class SharedPointer", - "id": 11, - "offset": 312, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1245973515 - }, - "m_playerVictoryCinematic": { - "type": "std::string", - "id": 12, - "offset": 336, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2684536069 - }, - "m_combatMusic": { - "type": "std::string", - "id": 13, - "offset": 368, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3636593682 - }, - "m_prePlanningCinematicOverride": { - "type": "std::string", - "id": 14, - "offset": 400, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2585096390 - }, - "m_planningCinematicOverride": { - "type": "std::string", - "id": 15, - "offset": 432, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3592819999 - }, - "m_shadowThresholdType": { - "type": "enum kShadow_Threshold_Type", - "id": 16, - "offset": 464, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2847763136, - "enum_options": { - "SHADOW_THRESHOLD_MIN": 0, - "SHADOW_THRESHOLD_AVG": 1, - "SHADOW_THRESHOLD_MAX": 2 - } - }, - "m_shadowThresholdFactor": { - "type": "float", - "id": 17, - "offset": 468, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2104355177 - }, - "m_shadowPipRatingFactor": { - "type": "float", - "id": 18, - "offset": 472, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1061434314 - }, - "m_scalarDamagePvP": { - "type": "float", - "id": 19, - "offset": 476, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2195445026 - }, - "m_scalarResistPvP": { - "type": "float", - "id": 20, - "offset": 480, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1947822077 - }, - "m_scalarPiercePvP": { - "type": "float", - "id": 21, - "offset": 484, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 441266907 - }, - "m_scalarDamagePvE": { - "type": "float", - "id": 22, - "offset": 488, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2195445015 - }, - "m_scalarResistPvE": { - "type": "float", - "id": 23, - "offset": 492, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1947822066 - }, - "m_scalarPiercePvE": { - "type": "float", - "id": 24, - "offset": 496, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 441266896 - }, - "m_damageLimitPvP": { - "type": "float", - "id": 25, - "offset": 500, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1990135243 - }, - "m_dK0PvP": { - "type": "float", - "id": 26, - "offset": 504, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 413528556 - }, - "m_dN0PvP": { - "type": "float", - "id": 27, - "offset": 508, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 417086319 - }, - "m_resistLimitPvP": { - "type": "float", - "id": 28, - "offset": 512, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1174512006 - }, - "m_rK0PvP": { - "type": "float", - "id": 29, - "offset": 516, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 961424058 - }, - "m_rN0PvP": { - "type": "float", - "id": 30, - "offset": 520, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 964981821 - }, - "m_damageLimitPvE": { - "type": "float", - "id": 31, - "offset": 524, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1990135232 - }, - "m_dK0PvE": { - "type": "float", - "id": 32, - "offset": 528, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 413528545 - }, - "m_dN0PvE": { - "type": "float", - "id": 33, - "offset": 532, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 417086308 - }, - "m_resistLimitPvE": { - "type": "float", - "id": 34, - "offset": 536, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1174511995 - }, - "m_rK0PvE": { - "type": "float", - "id": 35, - "offset": 540, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 961424047 - }, - "m_rN0PvE": { - "type": "float", - "id": 36, - "offset": 544, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 964981810 - }, - "m_tickRateMS": { - "type": "unsigned int", - "id": 37, - "offset": 552, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 646469284 - }, - "m_playerAggroRange": { - "type": "float", - "id": 38, - "offset": 556, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1776075073 - }, - "m_deathEffect": { - "type": "std::string", - "id": 39, - "offset": 560, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2339494958 - }, - "m_noAggroEffect": { - "type": "std::string", - "id": 40, - "offset": 592, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1645655765 - }, - "m_redTeamStart": { - "type": "std::string", - "id": 41, - "offset": 624, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2958941675 - }, - "m_blueTeamStart": { - "type": "std::string", - "id": 42, - "offset": 656, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2806152280 - }, - "m_redPlaceholdObjectID": { - "type": "unsigned int", - "id": 43, - "offset": 688, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1608575032 - }, - "m_bluePlaceholdObjectID": { - "type": "unsigned int", - "id": 44, - "offset": 692, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1635754917 - } - } - }, - "1312828205": { - "name": "class ServerSyncCinematicAction*", - "bases": [ - "CinematicAction", - "PropertyClass" - ], - "hash": 1312828205, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_eventToSend": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1564059786 - } - } - }, - "162054771": { - "name": "class ClientMinigameBehavior*", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 162054771, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - } - } - }, - "1308486746": { - "name": "class DerbyModifyMoraleChance", - "bases": [ - "DerbyEffect", - "PropertyClass" - ], - "hash": 1308486746, - "properties": { - "m_buffType": { - "type": "enum DerbyTalentBuffType", - "id": 0, - "offset": 92, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1149251982, - "enum_options": { - "Buff": 0, - "Debuff": 1, - "Neither": 2 - } - }, - "m_kTarget": { - "type": "enum DerbyTargetType", - "id": 1, - "offset": 96, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1807803351, - "enum_options": { - "kTargetInFront": 0, - "kTargetBehind": 1, - "kTargetFirst": 2, - "kTargetSelf": 3, - "kTargetAll": 4, - "kTargetLast": 5 - } - }, - "m_nDuration": { - "type": "int", - "id": 2, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1110167982 - }, - "m_effectID": { - "type": "unsigned int", - "id": 3, - "offset": 88, - "flags": 24, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2347630439 - }, - "m_imageFilename": { - "type": "std::string", - "id": 4, - "offset": 112, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2813328063 - }, - "m_iconIndex": { - "type": "unsigned int", - "id": 5, - "offset": 144, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1265133262 - }, - "m_soundOnActivate": { - "type": "std::string", - "id": 6, - "offset": 152, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1956929714 - }, - "m_soundOnTarget": { - "type": "std::string", - "id": 7, - "offset": 184, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3444214056 - }, - "m_targetParticleEffect": { - "type": "std::string", - "id": 8, - "offset": 216, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3048234723 - }, - "m_overheadMessage": { - "type": "std::string", - "id": 9, - "offset": 248, - "flags": 8388639, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1701018190 - }, - "m_requirements": { - "type": "class RequirementList", - "id": 10, - "offset": 280, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2840988582 - }, - "m_moraleChanceActionMap": { - "type": "class MoraleModificationMap", - "id": 11, - "offset": 376, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1654668404 - } - } - }, - "162030195": { - "name": "class ClientMinigameBehavior", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 162030195, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - } - } - }, - "1308408678": { - "name": "class std::list >", - "bases": [], - "hash": 1308408678, - "properties": {} - }, - "926940388": { - "name": "class ObstacleCourseRevolvingDoorBehaviorTemplate*", - "bases": [ - "ObstacleCourseObstacleBehaviorTemplate", - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 926940388, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - }, - "m_startAngle": { - "type": "float", - "id": 1, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 737826060 - }, - "m_angularVelocity": { - "type": "float", - "id": 2, - "offset": 124, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 412636784 - }, - "m_radius": { - "type": "float", - "id": 3, - "offset": 128, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 989410271 - }, - "m_innerRadius": { - "type": "float", - "id": 4, - "offset": 132, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 686816091 - }, - "m_nearMissRange": { - "type": "float", - "id": 5, - "offset": 136, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2005992806 - }, - "m_nearMissAngleOffset": { - "type": "float", - "id": 6, - "offset": 140, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2062603911 - }, - "m_walls": { - "type": "class Vector3D", - "id": 7, - "offset": 144, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2471997733 - } - } - }, - "1310489832": { - "name": "class PetLevelUpWindow", - "bases": [ - "Window", - "PropertyClass" - ], - "hash": 1310489832, - "properties": { - "m_sName": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306437263 - }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 65667, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621225959 - }, - "m_Style": { - "type": "unsigned int", - "id": 2, - "offset": 152, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "SCALE_CHILDREN": 2, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "FOCUS_LOCKED": 64, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152 - } - }, - "m_Flags": { - "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } - }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3105139380 - }, - "m_fTargetAlpha": { - "type": "float", - "id": 5, - "offset": 212, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1809129834 - }, - "m_fDisabledAlpha": { - "type": "float", - "id": 6, - "offset": 216, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1389987675 - }, - "m_fAlpha": { - "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 482130755 - }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3623628394 - }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2102211316 - }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1846695875 - }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3389835433 - }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2547159940 - }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2587533771 - }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3091503757 - } - } - }, - "162374579": { - "name": "class ComplexRotateTurnIndicatorCinematicAction", - "bases": [ - "CinematicAction", - "PropertyClass" - ], - "hash": 162374579, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_rotationInfo": { - "type": "class SharedPointer", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2332010820 - } - } - }, - "1308546940": { - "name": "class ObstacleCourseFinishLineBehavior*", - "bases": [ - "ObstacleCourseObstacleBehavior", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1308546940, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - } - } - }, - "930151173": { - "name": "class ControlList::Item*", - "bases": [ - "PropertyClass" - ], - "hash": 930151173, - "properties": { - "m_sString": { - "type": "std::wstring", - "id": 0, - "offset": 72, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1662841794 - }, - "m_sTooltip": { - "type": "std::wstring", - "id": 1, - "offset": 104, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1680475798 - } - } - }, - "927825997": { - "name": "class ClientDerbyAffectEffects*", - "bases": [ - "DerbyAffectEffects", - "DerbyEffect", - "PropertyClass" - ], - "hash": 927825997, - "properties": { - "m_buffType": { - "type": "enum DerbyTalentBuffType", - "id": 0, - "offset": 92, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1149251982, - "enum_options": { - "Buff": 0, - "Debuff": 1, - "Neither": 2 - } - }, - "m_kTarget": { - "type": "enum DerbyTargetType", - "id": 1, - "offset": 96, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1807803351, - "enum_options": { - "kTargetInFront": 0, - "kTargetBehind": 1, - "kTargetFirst": 2, - "kTargetSelf": 3, - "kTargetAll": 4, - "kTargetLast": 5 - } - }, - "m_nDuration": { - "type": "int", - "id": 2, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1110167982 - }, - "m_effectID": { - "type": "unsigned int", - "id": 3, - "offset": 88, - "flags": 24, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2347630439 - }, - "m_imageFilename": { - "type": "std::string", - "id": 4, - "offset": 112, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2813328063 - }, - "m_iconIndex": { - "type": "unsigned int", - "id": 5, - "offset": 144, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1265133262 - }, - "m_soundOnActivate": { - "type": "std::string", - "id": 6, - "offset": 152, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1956929714 - }, - "m_soundOnTarget": { - "type": "std::string", - "id": 7, - "offset": 184, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3444214056 - }, - "m_targetParticleEffect": { - "type": "std::string", - "id": 8, - "offset": 216, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3048234723 - }, - "m_overheadMessage": { - "type": "std::string", - "id": 9, - "offset": 248, - "flags": 8388639, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1701018190 - }, - "m_requirements": { - "type": "class RequirementList", - "id": 10, - "offset": 280, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2840988582 - }, - "m_nNumBuffs": { - "type": "int", - "id": 11, - "offset": 376, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1860427310 - }, - "m_nNumDebuffs": { - "type": "int", - "id": 12, - "offset": 380, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 637090007 - } - } - }, - "163559175": { - "name": "class DerbyModifySpeedBoost*", - "bases": [ - "DerbyEffect", - "PropertyClass" - ], - "hash": 163559175, - "properties": { - "m_buffType": { - "type": "enum DerbyTalentBuffType", - "id": 0, - "offset": 92, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1149251982, - "enum_options": { - "Buff": 0, - "Debuff": 1, - "Neither": 2 - } - }, - "m_kTarget": { - "type": "enum DerbyTargetType", - "id": 1, - "offset": 96, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1807803351, - "enum_options": { - "kTargetInFront": 0, - "kTargetBehind": 1, - "kTargetFirst": 2, - "kTargetSelf": 3, - "kTargetAll": 4, - "kTargetLast": 5 - } - }, - "m_nDuration": { - "type": "int", - "id": 2, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1110167982 - }, - "m_effectID": { - "type": "unsigned int", - "id": 3, - "offset": 88, - "flags": 24, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2347630439 - }, - "m_imageFilename": { - "type": "std::string", - "id": 4, - "offset": 112, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2813328063 - }, - "m_iconIndex": { - "type": "unsigned int", - "id": 5, - "offset": 144, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1265133262 - }, - "m_soundOnActivate": { - "type": "std::string", - "id": 6, - "offset": 152, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1956929714 - }, - "m_soundOnTarget": { - "type": "std::string", - "id": 7, - "offset": 184, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3444214056 - }, - "m_targetParticleEffect": { - "type": "std::string", - "id": 8, - "offset": 216, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3048234723 - }, - "m_overheadMessage": { - "type": "std::string", - "id": 9, - "offset": 248, - "flags": 8388639, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1701018190 - }, - "m_requirements": { - "type": "class RequirementList", - "id": 10, - "offset": 280, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2840988582 - }, - "m_nSpeedChange": { - "type": "int", - "id": 11, - "offset": 376, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 636533855 - } - } - }, - "927736130": { - "name": "class ClearTopTeamCinematicAction*", - "bases": [ - "CinematicAction", - "PropertyClass" - ], - "hash": 927736130, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_interpDuration": { - "type": "float", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237711951 - } - } - }, - "1310743990": { - "name": "class ClientZone*", - "bases": [ - "BaseZone", - "PropertyClass" - ], - "hash": 1310743990, - "properties": { - "m_id": { - "type": "gid", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2090569797 - }, - "m_name": { - "type": "std::string", - "id": 1, - "offset": 88, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1717359772 - } - } - }, - "163557895": { - "name": "class DerbyModifySpeedBoost", - "bases": [ - "DerbyEffect", - "PropertyClass" - ], - "hash": 163557895, - "properties": { - "m_buffType": { - "type": "enum DerbyTalentBuffType", - "id": 0, - "offset": 92, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1149251982, - "enum_options": { - "Buff": 0, - "Debuff": 1, - "Neither": 2 - } - }, - "m_kTarget": { - "type": "enum DerbyTargetType", - "id": 1, - "offset": 96, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1807803351, - "enum_options": { - "kTargetInFront": 0, - "kTargetBehind": 1, - "kTargetFirst": 2, - "kTargetSelf": 3, - "kTargetAll": 4, - "kTargetLast": 5 - } - }, - "m_nDuration": { - "type": "int", - "id": 2, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1110167982 - }, - "m_effectID": { - "type": "unsigned int", - "id": 3, - "offset": 88, - "flags": 24, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2347630439 - }, - "m_imageFilename": { - "type": "std::string", - "id": 4, - "offset": 112, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2813328063 - }, - "m_iconIndex": { - "type": "unsigned int", - "id": 5, - "offset": 144, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1265133262 - }, - "m_soundOnActivate": { - "type": "std::string", - "id": 6, - "offset": 152, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1956929714 - }, - "m_soundOnTarget": { - "type": "std::string", - "id": 7, - "offset": 184, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3444214056 - }, - "m_targetParticleEffect": { - "type": "std::string", - "id": 8, - "offset": 216, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3048234723 - }, - "m_overheadMessage": { - "type": "std::string", - "id": 9, - "offset": 248, - "flags": 8388639, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1701018190 - }, - "m_requirements": { - "type": "class RequirementList", - "id": 10, - "offset": 280, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2840988582 - }, - "m_nSpeedChange": { - "type": "int", - "id": 11, - "offset": 376, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 636533855 - } - } - }, - "1310653672": { - "name": "class PetLevelUpWindow*", - "bases": [ - "Window", - "PropertyClass" - ], - "hash": 1310653672, - "properties": { - "m_sName": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306437263 - }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 65667, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621225959 - }, - "m_Style": { - "type": "unsigned int", - "id": 2, - "offset": 152, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "SCALE_CHILDREN": 2, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "FOCUS_LOCKED": 64, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152 - } - }, - "m_Flags": { - "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } - }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3105139380 - }, - "m_fTargetAlpha": { - "type": "float", - "id": 5, - "offset": 212, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1809129834 - }, - "m_fDisabledAlpha": { - "type": "float", - "id": 6, - "offset": 216, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1389987675 - }, - "m_fAlpha": { - "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 482130755 - }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3623628394 - }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2102211316 - }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1846695875 - }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3389835433 - }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2547159940 - }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2587533771 - }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3091503757 - } - } - }, - "928184681": { - "name": "class SpawnManager", - "bases": [ - "PropertyClass" - ], - "hash": 928184681, - "properties": { - "m_spawners": { - "type": "class SharedPointer", - "id": 0, - "offset": 144, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 3173126402 - } - } - }, - "165421371": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 165421371, - "properties": { - "m_allAnimationSounds": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2646511094 - } - } - }, - "1311399350": { - "name": "class ClientZone", - "bases": [ - "BaseZone", - "PropertyClass" - ], - "hash": 1311399350, - "properties": { - "m_id": { - "type": "gid", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2090569797 - }, - "m_name": { - "type": "std::string", - "id": 1, - "offset": 88, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1717359772 - } - } - }, - "165372585": { - "name": "class HousingLayout*", - "bases": [ - "PropertyClass" - ], - "hash": 165372585, - "properties": { - "m_housingLayoutObjectList": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2580715899 - } - } - }, - "928245849": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 928245849, - "properties": { - "m_name": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1717359772 - }, - "m_params": { - "type": "class SoundFilterParam*", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1984426024 - }, - "m_needsUpdate": { - "type": "bool", - "id": 2, - "offset": 128, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1787634021 - } - } - }, - "164021040": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 164021040, - "properties": { - "m_nMoveState": { - "type": "enum MoveState", - "id": 0, - "offset": 72, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1430960270, - "enum_options": { - "MS_WALKING": 0, - "MS_RUNNING": 1, - "MS_SWIMMING": 2, - "MS_FLYING": 3, - "MS_JUMPING": 4, - "MS_FALLING": 5, - "MS_SLIDING": 6, - "__DEFAULT": "MS_WALKING" - } - }, - "m_nMoveAnimation": { - "type": "enum MoveAnimation", - "id": 1, - "offset": 76, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3179560950, - "enum_options": { - "MA_IDLE": 0, - "MA_FORWARD": 1, - "MA_BACK": 2, - "MA_LEFT": 3, - "MA_RIGHT": 4, - "MA_TURNLEFT": 5, - "MA_TURNRIGHT": 6, - "__DEFAULT": "MA_IDLE" - } - }, - "m_sAnimationName": { - "type": "std::string", - "id": 2, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1757815023 - } - } - }, - "1315903630": { - "name": "class MaxManaLootInfo", - "bases": [ - "LootInfo", - "LootInfoBase", - "PropertyClass" - ], - "hash": 1315903630, - "properties": { - "m_lootType": { - "type": "enum LootInfo::LOOT_TYPE", - "id": 0, - "offset": 72, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1591891442, - "enum_options": { - "LOOT_TYPE_NONE": 0, - "LOOT_TYPE_GOLD": 1, - "LOOT_TYPE_MANA": 2, - "LOOT_TYPE_ITEM": 3, - "LOOT_TYPE_TREASURE_CARD": 4, - "LOOT_TYPE_MAGIC_XP": 5, - "LOOT_TYPE_ADD_SPELL": 6, - "LOOT_TYPE_MAX_HEALTH": 7, - "LOOT_TYPE_MAX_GOLD": 8, - "LOOT_TYPE_MAX_MANA": 9, - "LOOT_TYPE_MAX_POTION": 10, - "LOOT_TYPE_TRAINING_POINTS": 11, - "LOOT_TYPE_RECIPE": 12, - "LOOT_TYPE_CRAFTING_SLOT": 13, - "LOOT_TYPE_REAGENT": 14, - "LOOT_TYPE_PETSNACK": 15, - "LOOT_TYPE_GARDENING_XP": 16, - "LOOT_TYPE_PET_XP": 17, - "LOOT_TYPE_TREASURE_TABLE": 18, - "LOOT_TYPE_ARENA_POINTS": 19, - "LOOT_TYPE_ARENA_BONUS_POINTS": 20, - "LOOT_TYPE_GROUP": 21, - "LOOT_TYPE_FISHING_XP": 22, - "LOOT_TYPE_EVENT_CURRENCY_1": 24, - "LOOT_TYPE_EVENT_CURRENCY_2": 25, - "LOOT_TYPE_PVP_CURRENCY": 26, - "LOOT_TYPE_PVP_CURRENCY_BONUS": 27, - "LOOT_TYPE_PVP_TOURNEY_CURRENCY": 28, - "LOOT_TYPE_PVP_TOURNEY_CURRENCY_BONUS": 29, - "LOOT_TYPE_FURNITURE_ESSENCE": 30 - } - }, - "m_manaToAdd": { - "type": "int", - "id": 1, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1303804451 - } - } - }, - "931419876": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 931419876, - "properties": { - "m_playerGIDList": { - "type": "gid", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 534186837 - }, - "m_playerYawList": { - "type": "unsigned char", - "id": 1, - "offset": 88, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1795637418 - } - } - }, - "1315711952": { - "name": "class ContainerEffectTemplate", - "bases": [ - "GameEffectTemplate", - "PropertyClass" - ], - "hash": 1315711952, - "properties": { - "m_effectName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2029161513 - }, - "m_effectCategory": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1852673222 - }, - "m_sortOrder": { - "type": "int", - "id": 2, - "offset": 148, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1411218206 - }, - "m_duration": { - "type": "double", - "id": 3, - "offset": 192, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2727932435 - }, - "m_stackingCategories": { - "type": "std::string", - "id": 4, - "offset": 160, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1774497525 - }, - "m_isPersistent": { - "type": "bool", - "id": 5, - "offset": 153, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 923861920 - }, - "m_bIsOnPet": { - "type": "bool", - "id": 6, - "offset": 154, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 522593303 - }, - "m_isPublic": { - "type": "bool", - "id": 7, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1728439822 - }, - "m_visualEffectAddName": { - "type": "std::string", - "id": 8, - "offset": 200, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3382086694 - }, - "m_visualEffectRemoveName": { - "type": "std::string", - "id": 9, - "offset": 232, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1541697323 - }, - "m_onAddFunctorName": { - "type": "std::string", - "id": 10, - "offset": 280, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1561843107 - }, - "m_onRemoveFunctorName": { - "type": "std::string", - "id": 11, - "offset": 312, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2559017864 - }, - "m_stackingRule": { - "type": "enum STACKING_RULE", - "id": 12, - "offset": 144, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 431568889, - "enum_options": { - "STACKING_ALLOWED": 0, - "STACKING_NOSTACK": 1, - "STACKING_REPLACE": 2 - } - }, - "m_startReqs": { - "type": "class SharedPointer", - "id": 13, - "offset": 360, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3147529602 - }, - "m_containerEffects": { - "type": "class SharedPointer", - "id": 14, - "offset": 376, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 957354392 - }, - "m_accompanyID": { - "type": "unsigned int", - "id": 15, - "offset": 392, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1462123093 - } - } - }, - "165372588": { - "name": "class HousingLayout", - "bases": [ - "PropertyClass" - ], - "hash": 165372588, - "properties": { - "m_housingLayoutObjectList": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2580715899 - } - } - }, - "930874989": { - "name": "class ClientShowPipsCinematicAction*", - "bases": [ - "ShowPipsCinematicAction", - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 930874989, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - }, - "m_newActorName": { - "type": "std::string", - "id": 2, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2029131039 - } - } - }, - "1313415472": { - "name": "class MountTable*", - "bases": [ - "PropertyClass" - ], - "hash": 1313415472, - "properties": { - "m_Mounts": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2866335988 - } - } - }, - "930678381": { - "name": "class ClientShowPipsCinematicAction", - "bases": [ - "ShowPipsCinematicAction", - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 930678381, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - }, - "m_newActorName": { - "type": "std::string", - "id": 2, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2029131039 - } - } - }, - "1313022256": { - "name": "class MountTable", - "bases": [ - "PropertyClass" - ], - "hash": 1313022256, - "properties": { - "m_Mounts": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2866335988 - } - } - }, - "930389943": { - "name": "class ReqArenaSeasonScore", - "bases": [ - "ReqNumeric", - "Requirement", - "PropertyClass" - ], - "hash": 930389943, - "properties": { - "m_applyNOT": { - "type": "bool", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1746328074, - "enum_options": { - "__DEFAULT": 0 - } - }, - "m_operator": { - "type": "enum Requirement::Operator", - "id": 1, - "offset": 76, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2672792317, - "enum_options": { - "ROP_AND": 0, - "ROP_OR": 1, - "__DEFAULT": "ROP_AND" - } - }, - "m_numericValue": { - "type": "float", - "id": 2, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 521915239 - }, - "m_operatorType": { - "type": "enum ReqNumeric::OPERATOR_TYPE", - "id": 3, - "offset": 84, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2228122961, - "enum_options": { - "OPERATOR_UNKNOWN": 4294967295, - "OPERATOR_EQUALS": 0, - "OPERATOR_GREATER_THAN": 1, - "OPERATOR_LESS_THAN": 2, - "OPERATOR_GREATER_THAN_EQ": 3, - "OPERATOR_LESS_THAN_EQ": 4 - } - }, - "m_tournament": { - "type": "std::string", - "id": 4, - "offset": 88, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2799932264 - } - } - }, - "166224438": { - "name": "class SharedPointer", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 166224438, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - } - } - }, - "1313679604": { - "name": "class ItemBundleTemplate", - "bases": [ - "WizItemTemplate", - "ItemTemplate", - "GameObjectTemplate", - "CoreTemplate", - "PropertyClass" - ], - "hash": 1313679604, - "properties": { - "m_behaviors": { - "type": "class BehaviorTemplate*", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1197808594 - }, - "m_objectName": { - "type": "std::string", - "id": 1, - "offset": 96, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2154940147 - }, - "m_templateID": { - "type": "unsigned int", - "id": 2, - "offset": 128, - "flags": 16777223, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1286746870 - }, - "m_visualID": { - "type": "unsigned int", - "id": 3, - "offset": 132, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1118778894 - }, - "m_adjectiveList": { - "type": "std::string", - "id": 4, - "offset": 248, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 3195213318 - }, - "m_exemptFromAOI": { - "type": "bool", - "id": 5, - "offset": 240, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1457879059 - }, - "m_displayName": { - "type": "std::string", - "id": 6, - "offset": 168, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2446900370 - }, - "m_description": { - "type": "std::string", - "id": 7, - "offset": 136, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1649374815 - }, - "m_nObjectType": { - "type": "enum ObjectType", - "id": 8, - "offset": 200, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2118905880, - "enum_options": { - "OT_UNDEFINED": 0, - "OT_PLAYER": 1, - "OT_NPC": 2, - "OT_PROP": 3, - "OT_OBJECT": 4, - "OT_HOUSE": 5, - "OT_KEY": 6, - "OT_OLD_KEY": 7, - "OT_DEED": 8, - "OT_MAIL": 9, - "OT_RECIPE": 17, - "OT_EQUIP_HEAD": 10, - "OT_EQUIP_CHEST": 11, - "OT_EQUIP_LEGS": 12, - "OT_EQUIP_HANDS": 13, - "OT_EQUIP_FINGER": 14, - "OT_EQUIP_FEET": 15, - "OT_EQUIP_EAR": 16, - "OT_BUILDING_BLOCK": 18, - "OT_BUILDING_BLOCK_SOLID": 19, - "OT_GOLF": 20, - "OT_DOOR": 21, - "OT_PET": 22, - "OT_FABRIC": 23, - "OT_WINDOW": 24, - "OT_ROOF": 25, - "OT_HORSE": 26, - "OT_STRUCTURE": 27, - "OT_HOUSING_TEXTURE": 28, - "OT_PLANT": 29 - } - }, - "m_sIcon": { - "type": "std::string", - "id": 9, - "offset": 208, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306259831 - }, - "m_equipRequirements": { - "type": "class RequirementList*", - "id": 10, - "offset": 280, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2762617226 - }, - "m_purchaseRequirements": { - "type": "class RequirementList*", - "id": 11, - "offset": 288, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3174641793 - }, - "m_equipEffects": { - "type": "class GameEffectInfo*", - "id": 12, - "offset": 296, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 836628351 - }, - "m_baseCost": { - "type": "float", - "id": 13, - "offset": 312, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1565352651 - }, - "m_creditsCost": { - "type": "float", - "id": 14, - "offset": 320, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 805514974 - }, - "m_avatarInfo": { - "type": "class AvatarItemInfoBase*", - "id": 15, - "offset": 328, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2627321299 - }, - "m_avatarFlags": { - "type": "std::string", - "id": 16, - "offset": 336, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2347762759 - }, - "m_itemLimit": { - "type": "int", - "id": 17, - "offset": 316, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1799746856 - }, - "m_holidayFlag": { - "type": "std::string", - "id": 18, - "offset": 352, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2994795359 - }, - "m_itemSetBonusTemplateID": { - "type": "unsigned int", - "id": 19, - "offset": 384, - "flags": 33554439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1316835672 - }, - "m_numPrimaryColors": { - "type": "int", - "id": 20, - "offset": 428, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 981103872 - }, - "m_numSecondaryColors": { - "type": "int", - "id": 21, - "offset": 432, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1310416868 - }, - "m_numPatterns": { - "type": "int", - "id": 22, - "offset": 436, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 953162171 - }, - "m_school": { - "type": "std::string", - "id": 23, - "offset": 392, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2438566051 - }, - "m_arenaPointCost": { - "type": "int", - "id": 24, - "offset": 440, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1819621796 - }, - "m_pvpCurrencyCost": { - "type": "int", - "id": 25, - "offset": 444, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 645595444 - }, - "m_pvpTourneyCurrencyCost": { - "type": "int", - "id": 26, - "offset": 448, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 517874954 - }, - "m_rank": { - "type": "int", - "id": 27, - "offset": 424, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 219803942 - }, - "m_boyIconIndex": { - "type": "int", - "id": 28, - "offset": 452, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 802140453 - }, - "m_girlIconIndex": { - "type": "int", - "id": 29, - "offset": 456, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 832706793 - }, - "m_leashOffsetOverride": { - "type": "class SharedPointer", - "id": 30, - "offset": 464, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1692586788 - }, - "m_rarity": { - "type": "enum RarityType", - "id": 31, - "offset": 460, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2253792108, - "enum_options": { - "RT_COMMON": 0, - "RT_UNCOMMON": 1, - "RT_RARE": 2, - "RT_ULTRARARE": 3, - "RT_EPIC": 4 - } - }, - "m_bundleItems": { - "type": "gid", - "id": 32, - "offset": 480, - "flags": 33554439, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 182029460 - }, - "m_bundleFreeItems": { - "type": "gid", - "id": 33, - "offset": 496, - "flags": 33554439, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 263220278 - }, - "m_bundleItemsToGrant": { - "type": "gid", - "id": 34, - "offset": 544, - "flags": 33554439, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1280974675 - }, - "m_featuredRewards": { - "type": "gid", - "id": 35, - "offset": 512, - "flags": 33554439, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1360288832 - }, - "m_acquireCondition": { - "type": "enum ItemBundleTemplate::AcquireConditionType", - "id": 36, - "offset": 528, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2176833998, - "enum_options": { - "kReceiveAll": 0, - "kChooseOne": 1 - } - }, - "m_bundleContentsType": { - "type": "enum ItemBundleTemplate::BundleContentsType", - "id": 37, - "offset": 532, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2541051988, - "enum_options": { - "kHatRobeShoes": 0, - "kShowFirstItemInPortrait": 1, - "kHatRobeShoesWeaponMount": 2, - "kShowPortraitsConsecutively": 3 - } - }, - "m_bundleSavings": { - "type": "int", - "id": 38, - "offset": 536, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2036928271 - } - } - }, - "930833634": { - "name": "class TeleporterTemplate*", - "bases": [ - "PropertyClass" - ], - "hash": 930833634, - "properties": { - "m_targetZone": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2698931614 - }, - "m_targetLocation": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2493737915 - }, - "m_location": { - "type": "class Vector3D", - "id": 2, - "offset": 136, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2239683611 - } - } - }, - "170867841": { - "name": "enum eRace", - "bases": [], - "hash": 170867841, - "properties": {} - }, - "1315106457": { - "name": "class WhirlyBurlyPlanningDataAI", - "bases": [ - "PropertyClass" - ], - "hash": 1315106457, - "properties": { - "m_team": { - "type": "unsigned char", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 857479191 - }, - "m_passport": { - "type": "unsigned int", - "id": 1, - "offset": 76, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1362521513 - }, - "m_unitTypesList": { - "type": "unsigned char", - "id": 2, - "offset": 80, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2643134017 - }, - "m_cardsUsedList": { - "type": "unsigned int", - "id": 3, - "offset": 96, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 711045287 - } - } - }, - "168599759": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 168599759, - "properties": { - "m_templateID": { - "type": "int", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1075344419 - }, - "m_rank": { - "type": "int", - "id": 1, - "offset": 76, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 219803942 - }, - "m_secondaryRank": { - "type": "int", - "id": 2, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2066929134 - } - } - }, - "168039988": { - "name": "class SummonCinematicStageTemplate*", - "bases": [ - "CinematicStageTemplate", - "PropertyClass" - ], - "hash": 168039988, - "properties": { - "m_name": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1717359772 - }, - "m_duration": { - "type": "float", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 920323453 - }, - "m_actions": { - "type": "class SharedPointer", - "id": 2, - "offset": 112, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1380578687 - }, - "m_stageRelationships": { - "type": "class SharedPointer", - "id": 3, - "offset": 128, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 499983354 - }, - "m_summon": { - "type": "std::string", - "id": 4, - "offset": 152, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2460090138 - }, - "m_cameras": { - "type": "std::string", - "id": 5, - "offset": 184, - "flags": 131079, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 3217341687 - }, - "m_altcameras": { - "type": "std::string", - "id": 6, - "offset": 208, - "flags": 131079, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1882980152 - }, - "m_camRel": { - "type": "enum CameraCutCinematicAction::kCameraRelative", - "id": 7, - "offset": 232, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 919962138, - "enum_options": { - "kSigil": 1, - "kTarget": 2, - "kSource": 3, - "kActor": 4, - "__DEFAULT": "kTarget" - } - }, - "m_sound": { - "type": "std::string", - "id": 8, - "offset": 280, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2307644996 - }, - "m_interpDuration": { - "type": "float", - "id": 9, - "offset": 312, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237711951, - "enum_options": { - "__DEFAULT": "0.0" - } - }, - "m_summonAnim": { - "type": "std::string", - "id": 10, - "offset": 240, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2113551775, - "enum_options": { - "__DEFAULT": "Summon" - } - }, - "m_returnToIdle": { - "type": "bool", - "id": 11, - "offset": 272, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1267817300 - }, - "m_createOrientation": { - "type": "enum CreateActorCinematicAction::kCreateOrientation", - "id": 12, - "offset": 316, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3562324429, - "enum_options": { - "kFaceTarget": 0, - "kFaceSource": 1, - "kSigil": 2, - "kTarget": 3, - "kSource": 4, - "kSigilRight": 5, - "kSigilLeft": 6, - "kFaceTargetTeam": 7, - "__DEFAULT": "kFaceTarget" - } - }, - "m_hidePolymorphFloatyText": { - "type": "bool", - "id": 13, - "offset": 320, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 942475883 - } - } - }, - "931299734": { - "name": "class SupportedObjectReference", - "bases": [ - "PropertyClass" - ], - "hash": 931299734, - "properties": {} - }, - "167494729": { - "name": "class Ingredient", - "bases": [ - "PropertyClass" - ], - "hash": 167494729, - "properties": { - "m_itemID": { - "type": "gid", - "id": 0, - "offset": 80, - "flags": 33554439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 569545460 - }, - "m_adjective": { - "type": "std::string", - "id": 1, - "offset": 88, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3429518154 - }, - "m_quantity": { - "type": "int", - "id": 2, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 169215289 - }, - "m_spellTemplate": { - "type": "std::string", - "id": 3, - "offset": 128, - "flags": 268435463, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1746600759, - "enum_options": { - "__BASECLASS": "SpellTemplate" - } - }, - "m_ingredientType": { - "type": "enum Ingredient::INGREDIENT_TYPE", - "id": 4, - "offset": 72, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3347167757, - "enum_options": { - "INGREDIENT_REAGENT": 0, - "INGREDIENT_TREASURE": 1, - "INGREDIENT_ITEM": 2, - "INGREDIENT_FISH": 3, - "INGREDIENT_PET_SNACK": 4 - } - } - } - }, - "931285959": { - "name": "class ReqArenaSeasonTitle", - "bases": [ - "Requirement", - "PropertyClass" - ], - "hash": 931285959, - "properties": { - "m_applyNOT": { - "type": "bool", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1746328074, - "enum_options": { - "__DEFAULT": 0 - } - }, - "m_operator": { - "type": "enum Requirement::Operator", - "id": 1, - "offset": 76, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2672792317, - "enum_options": { - "ROP_AND": 0, - "ROP_OR": 1, - "__DEFAULT": "ROP_AND" - } - }, - "m_title": { - "type": "std::string", - "id": 2, - "offset": 112, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2308614141 - }, - "m_tournament": { - "type": "std::string", - "id": 3, - "offset": 80, - "flags": 268435487, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2799932264, - "enum_options": { - "__BASECLASS": "TournamentTemplate" - } - } - } - }, - "1315900558": { - "name": "class MaxManaLootInfo*", - "bases": [ - "LootInfo", - "LootInfoBase", - "PropertyClass" - ], - "hash": 1315900558, - "properties": { - "m_lootType": { - "type": "enum LootInfo::LOOT_TYPE", - "id": 0, - "offset": 72, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1591891442, - "enum_options": { - "LOOT_TYPE_NONE": 0, - "LOOT_TYPE_GOLD": 1, - "LOOT_TYPE_MANA": 2, - "LOOT_TYPE_ITEM": 3, - "LOOT_TYPE_TREASURE_CARD": 4, - "LOOT_TYPE_MAGIC_XP": 5, - "LOOT_TYPE_ADD_SPELL": 6, - "LOOT_TYPE_MAX_HEALTH": 7, - "LOOT_TYPE_MAX_GOLD": 8, - "LOOT_TYPE_MAX_MANA": 9, - "LOOT_TYPE_MAX_POTION": 10, - "LOOT_TYPE_TRAINING_POINTS": 11, - "LOOT_TYPE_RECIPE": 12, - "LOOT_TYPE_CRAFTING_SLOT": 13, - "LOOT_TYPE_REAGENT": 14, - "LOOT_TYPE_PETSNACK": 15, - "LOOT_TYPE_GARDENING_XP": 16, - "LOOT_TYPE_PET_XP": 17, - "LOOT_TYPE_TREASURE_TABLE": 18, - "LOOT_TYPE_ARENA_POINTS": 19, - "LOOT_TYPE_ARENA_BONUS_POINTS": 20, - "LOOT_TYPE_GROUP": 21, - "LOOT_TYPE_FISHING_XP": 22, - "LOOT_TYPE_EVENT_CURRENCY_1": 24, - "LOOT_TYPE_EVENT_CURRENCY_2": 25, - "LOOT_TYPE_PVP_CURRENCY": 26, - "LOOT_TYPE_PVP_CURRENCY_BONUS": 27, - "LOOT_TYPE_PVP_TOURNEY_CURRENCY": 28, - "LOOT_TYPE_PVP_TOURNEY_CURRENCY_BONUS": 29, - "LOOT_TYPE_FURNITURE_ESSENCE": 30 - } - }, - "m_manaToAdd": { - "type": "int", - "id": 1, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1303804451 - } - } - }, - "167232825": { - "name": "class ClientActorRenameCinematicAction", - "bases": [ - "ActorRenameCinematicAction", - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 167232825, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - }, - "m_newNamePattern": { - "type": "std::string", - "id": 2, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1519245892 - }, - "m_bActOnlyOnFirstActor": { - "type": "bool", - "id": 3, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2050856077 - } - } - }, - "1316414526": { - "name": "enum DailyQuestReward::RewardTypes", - "bases": [], - "hash": 1316414526, - "properties": {} - }, - "167916354": { - "name": "class SharedPointer", - "bases": [ - "SoundBehaviorTemplate", - "AreaBehaviorTemplate", - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 167916354, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - }, - "m_radius": { - "type": "float", - "id": 1, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 989410271 - }, - "m_category": { - "type": "enum AudioCategory", - "id": 2, - "offset": 124, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2951251982, - "enum_options": { - "AudioCategory_Irrelevent": 0, - "AudioCategory_Accoustic": 1, - "AudioCategory_Noise": 2, - "AudioCategory_Music": 3, - "AudioCategory_MusicAtSFXVolume": 4, - "AudioCategory_Dialog": 5, - "AudioCategory_UI": 6, - "AudioCategory_NoiseAtMusicVolume": 7 - } - }, - "m_exclusive": { - "type": "bool", - "id": 3, - "offset": 128, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 824383403 - }, - "m_active": { - "type": "bool", - "id": 4, - "offset": 129, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 239335471 - }, - "m_enableReqs": { - "type": "class SharedPointer", - "id": 5, - "offset": 136, - "flags": 263, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3158020443 - }, - "m_trackFilenameList": { - "type": "std::string", - "id": 6, - "offset": 152, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2531081709 - }, - "m_playList": { - "type": "class PlayListEntry*", - "id": 7, - "offset": 176, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 3907873161 - }, - "m_priority": { - "type": "int", - "id": 8, - "offset": 208, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1235205852 - }, - "m_volume": { - "type": "float", - "id": 9, - "offset": 200, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1162855023 - }, - "m_loopCount": { - "type": "int", - "id": 10, - "offset": 204, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 865634717 - }, - "m_progression": { - "type": "enum PlayList::Progression", - "id": 11, - "offset": 220, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3279400238, - "enum_options": { - "Sequence": 0, - "Random": 1, - "SequenceOnceOnly": 2, - "RandomNoRepeat": 3 - } - }, - "m_progressMin": { - "type": "float", - "id": 12, - "offset": 212, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1497550192 - }, - "m_progressMax": { - "type": "float", - "id": 13, - "offset": 216, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1497549938 - }, - "m_audioFilterSet": { - "type": "unsigned int", - "id": 14, - "offset": 224, - "flags": 33554439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 831339825 - }, - "m_animationNameFilter": { - "type": "std::string", - "id": 15, - "offset": 232, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2292854242 - }, - "m_functionallabel": { - "type": "std::string", - "id": 16, - "offset": 264, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3589331278 - } - } - }, - "931555158": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 931555158, - "properties": { - "m_name": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1717359772 - }, - "m_characterID": { - "type": "gid", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 210498386 - }, - "m_gameObjectID": { - "type": "gid", - "id": 2, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 23229750 - }, - "m_status": { - "type": "unsigned int", - "id": 3, - "offset": 112, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1172183633, - "enum_options": { - "PLAYERSTATUS_UNKNOWN": 0, - "PLAYERSTATUS_OFFLINE": 1, - "PLAYERSTATUS_LINKDEAD": 2, - "PLAYERSTATUS_TRANSITION": 3, - "PLAYERSTATUS_ONLINE": 4, - "PLAYERSTATUS_IGNORED": 5 - } - } - } - }, - "1316124017": { - "name": "class CharacterRaceTable*", - "bases": [ - "PropertyClass" - ], - "hash": 1316124017, - "properties": { - "m_eRace": { - "type": "enum eRace", - "id": 0, - "offset": 72, - "flags": 136314887, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 963057554, - "enum_options": { - "Bat": 88066, - "BatLightning": 1472842576, - "Boar": 2624962, - "CatThug": 1855674386, - "ChristmasElf": 819908552, - "ChristmasSnowman": 1146515225, - "Colossus_Ice": 1063279538, - "Cyclops": 1691813655, - "DragonBeta": 417003588, - "DragonFriendly": 69049013, - "EvilSnowman": 1579630926, - "FireElf": 443793687, - "Firecat": 2045525741, - "Frog": 2274918, - "FrostBeetle": 7692383, - "GhostBlue": 1097396892, - "GhostGreen": 882822629, - "GhostRed": 560510742, - "GhostYellow": 909974358, - "Ghoul": 82556199, - "GoatMonk": 486215564, - "GolemBrass": 1057388325, - "GolemClockwork": 1143380031, - "GolemSteel": 1660583674, - "GolemWood": 1426849876, - "HalloweenCat": 1042869199, - "Heckhound": 626736403, - "Helephant": 719065368, - "Human": 79806088, - "Hydra": 70785800, - "Imp": 84361, - "Krokomummy": 555755242, - "Kroktut": 1352354178, - "Leprechaun": 2106466410, - "LeprechaunPattyDay": 380507781, - "LightningBat": 228257682, - "Mannequin": 428442544, - "Minotaur": 949570680, - "Mount_Broom": 94637995, - "Mount_Cat": 1150940211, - "Mount_Dragon": 1565720148, - "Mount_Horse": 2054712767, - "Mount_PlayerWings": 589829552, - "Nikkos": 1563122418, - "NinjaPig": 607400740, - "Orthus": 1552590225, - "Piggle": 1897753328, - "Piggle_Valentine": 687697592, - "Piggle_ValentinePart2": 1760391091, - "Pixie": 74836240, - "RatMagician": 885542120, - "SalamanderFire": 48480175, - "SalamanderIce": 2011152164, - "SalamanderStorm": 600331072, - "Satyr": 84793363, - "Scarab": 2143810477, - "Sheep": 86220083, - "SkeletonArmored": 1791586239, - "SnowSerpent": 138621543, - "Spider": 1603064269, - "SpiderBlack": 559353179, - "SpiderBrown": 557941675, - "SpiderCrystal": 2119625297, - "SpiderGolem": 1632616514, - "Sprite": 1889156557, - "SpriteDark": 1888685518, - "Stormzilla": 252684095, - "SunBird": 1602211198, - "Transformation_ArmoredSkeleton": 1861349834, - "Transformation_CatThug": 1175387611, - "Transformation_Cat_Bandit": 1012395694, - "Transformation_ClockworkGolem": 601121214, - "Transformation_Cyclops": 620156297, - "Transformation_DarkFairy": 1206757203, - "Transformation_DraconianSorcerer": 1212016810, - "Transformation_Draconian": 450730089, - "Transformation_EarthColossus": 140119452, - "Transformation_EvilSnowman": 1497097122, - "Transformation_FatGobbler": 634003800, - "Transformation_FireElemental": 822233230, - "Transformation_FireElf": 46585468, - "Transformation_FireSalamander": 2118418114, - "Transformation_Gobbler_Skinny": 162365207, - "Transformation_GolemSteel": 1329184184, - "Transformation_Ice_Colossus": 430406408, - "Transformation_Krokomummy": 1644615769, - "Transformation_MagmaMan": 545064542, - "Transformation_Mander": 88998828, - "Transformation_NinjaPig": 1029132174, - "Transformation_Ninja_Pig_04": 7093548, - "Transformation_RatThug": 1175352795, - "Transformation_RavenMystic": 1443197359, - "Transformation_StormElemental": 637088511, - "Transformation_Treant": 1874998327, - "Transformation_WarPig": 691088645, - "Transformation_WolfScout": 263523463, - "Transformation_WolfWarrior": 6092463, - "Transformationn_SkeletonPirate": 1821341863, - "Treant": 1396597132, - "Troll": 82261620, - "Unicorn": 550546918, - "Unknown": 718677478, - "Wolverine": 528843083, - "Wraith": 1788506505, - "Wyrmkin": 379044612, - "Transformation_CyrusDrake": 94277831, - "PetEgg": 1973167984, - "GhostLady": 493415959, - "Banshee": 827805677, - "GobblerRed": 250135875, - "Ghoul_Gravedigger": 161812468, - "SkeletonWarrior": 734585814, - "BansheeBoss": 806445565, - "Seraph": 1792950125, - "CrabKing": 277875784, - "UndeadCaster": 1680689397, - "DragonFrontier": 1829438301, - "HeckhoundGhost": 872406464, - "Mount_Unicorn": 212699468, - "Jellyfish": 910724608, - "SeaDragon": 1194541306, - "Turtle": 1897184620, - "Starfish": 1447562471, - "SpinyFish": 162948281, - "Mount_Gryphon": 2110522960, - "Mount_Shark": 1170186623, - "Mount_Manta": 979931598, - "Mount_Seahorse": 1554833818, - "Mount_Seahorse_Tough": 1245859453, - "Mount_Koi": 1150937409, - "Mount_Lobster": 2025618875, - "Mount_Turtle": 1490849128, - "VenusFlyTrap": 1612039757, - "GDN_MED_BabyCarrots": 327334743, - "GDN_SM_BoomShroom": 31324632, - "GDN_SM_Dandelion": 2058674142, - "GDN_SM_Disparagus": 1732989489, - "GDN_MED_EvilSnowPeas": 747408607, - "GDN_SM_FicklePickle": 205381955, - "GDN_SM_HappyHolidaisy": 1736236340, - "GDN_MED_HelephantEars": 1803669659, - "GDN_MED_HoneySickle": 424149132, - "GDN_LG_NinjaFig": 847338104, - "GDN_LG_SnapDragon": 1076151689, - "GDN_SM_StinkWeed": 845383431, - "GDN_MED_TrumpetVine": 1922690264, - "GDN_MED_VenusFlyTrap": 1560899638, - "GDN_SM_Laughodil": 1278979588, - "GDN_LG_BreadFruitBush": 533042934, - "GDN_MED_PricklyBearCactus": 1236846986, - "GDN_MED_KingParsley": 110148182, - "LeprechaunPatriotic": 414730890, - "SeraphYuletide": 1325846853, - "DragonGhost": 1502126893, - "UnicornNightmare": 604358256, - "EvilSnowmanSandman": 1579432150, - "Colossus_Spirit": 422514215, - "Rock": 2393554, - "GDN_MED_GivingTree": 2047236132, - "Egg": 70853, - "Mount_Carpets": 1602744888, - "Kraken": 1737191829, - "Wyvern": 1727802601, - "Phoenix": 1765559002, - "Judgement": 562901781, - "ForestLord": 1390734923, - "Humongofrog": 1272123051, - "Scarecrow": 41441599, - "Mount_Ram": 77196599, - "BasketSnake": 1835657086, - "Samoorai": 522797493, - "Transformation_RavenWarrior": 701169336, - "PhoenixStorm": 1325268802, - "PhoenixDeath": 1281634042, - "GDN_LG_CouchPotatoes": 879742725, - "GDN_MED_KeyLimes": 811516024, - "Mount_BoneDragon": 1023618313, - "Mount_BigBoneDragon": 1124383680, - "Mount_FairyWings": 1904926612, - "Mount_DragonWings": 755225925, - "Mount_Pegasus": 1621244140, - "GDN_MED_BellPepper": 1710238687, - "GDN_MED_GrapesOfWrath": 1068787103, - "GDN_SM_TigerLily": 1899057048, - "WysteriaPiggle": 49173891, - "Mount_Wyvern": 1658410744, - "Mount_2P_Rhino": 1052779475, - "NightHawk": 358964390, - "Giraffe": 935214826, - "Mount_Hawk": 2070898895, - "Mount_HalloweenNightmare": 726136378, - "GobblerHalloween": 1482399836, - "Leopard": 1606863715, - "Skink": 76950867, - "Mount_Ostrich": 466111322, - "Mount_Crocagator": 1981222087, - "Transformation_Blacktusk-01": 401543565, - "Mount_Hippogriff": 2043817624, - "Transformation_Gorilla-01": 1555853240, - "Transformation_Gorilla-02": 1606184888, - "Mount_Raven": 94983735, - "Mount_Chrismoose": 1822495199, - "Mount_CandyCane": 1148551147, - "Ivy_League": 925492799, - "GDN_MED_Ivy_League": 1630077794, - "Mount_Kirin": 1168691825, - "GDN_SM_Moonflower": 2068754330, - "GDN_MED_BoonTree": 788055729, - "Snowball": 2046118016, - "Foo_Dog": 1549710807, - "ShenlongDragon": 932676736, - "Monkey": 1233866291, - "Wolfhound": 626884686, - "Redcap": 1540319086, - "Raven": 79941650, - "HollowKnight": 1107268274, - "Book": 2405826, - "GDN_MED_AngoraBunnyEars": 1547559854, - "GDN_MED_FortuneCookieTree": 786686214, - "GDN_MED_GooseTree": 809354938, - "GDN_SM_HoneyBeePlant": 1528880373, - "GDN_MED_BambooShoots": 1096708900, - "GDN_SM_Huckleberries": 1937475840, - "Rock_Moustache": 962221287, - "Efreet_Myth": 1834555522, - "Efreet": 1401700123, - "Mammoth": 1395147745, - "Triton": 1730466188, - "Gnome": 74954215, - "BoneDragon": 429245206, - "Basilisk": 1457899086, - "Chimera": 529027789, - "Transformation_GammaTemplate": 1337834518, - "Mount_Camel": 1168198963, - "Mount_RenaissanceWings": 1049782088, - "Bull_Mount": 1713506759, - "Mount_Owl": 1150938242, - "Mount_Alphyn": 487264165, - "Mount_Stag": 1150353823, - "Mount_Auroch": 509865325, - "Mount_Warg": 1150358072, - "StrangeBeast": 511334734, - "Efreet_Ice": 1820009122, - "Efreet_Storm": 1269986674, - "GDN_LG_AlligatorPear": 1293913372, - "Mount_2P_Treant": 928450863, - "Mount_2P_Dragon": 1431637933, - "Mount_Pogo_Stick_WC": 1462849298, - "Mount_Pogo_Stick_MB": 1349603090, - "GDN_LG_MeltingCheese": 1914589015, - "GDN_SM_FishOnAVine": 1734955358, - "GDN_LG_AngelOak": 1539539424, - "GDN_LG_MeltingCheese_Angel": 1254781264, - "SnowyOwl": 1682262138, - "Mount_3P_Hydra": 1207475250, - "WeaselMinstrel": 1541234616, - "MOUNT_Rickshaw": 938282973, - "Transformation_Sherlock-Bones": 509126601, - "Mount_Phoenix": 556355452, - "Toaddle": 597488187, - "Pantera": 528797696, - "WildfireTreant": 673362041, - "StoneTiger": 746336665, - "Blowfish": 1447737334, - "Smith": 78327187, - "FlyingCat": 1254472614, - "RamWarrior": 536916302, - "Ladybug": 1846384669, - "BurlapBoy": 607590898, - "DeerKnight": 560802130, - "Gargoyle": 1227701700, - "Chameleon": 596131510, - "Scorpion": 1462253104, - "GDN_SM_BoiledPeanuts": 544885684, - "GDN_SM_ClockFlower": 676513046, - "GDN_SM_DeadBeets": 650783482, - "GDN_MED_SnowApple": 1916648180, - "Eyecaramba_Violet": 1804780775, - "Eyecaramba_Green": 750346574, - "Eyecaramba_Orange": 687614854, - "Piggle_Grandfather": 131445665, - "Velociraptor": 1042311818, - "Babydactyl": 1180982194, - "Stegosaurus": 476811765, - "Mount_Pegasus_Spectral": 948250730, - "Mount_2P_Scarydactyl": 1808983335, - "Mount_2P_TRex": 1495851852, - "Therizinosaurus": 80337863, - "Runtosaurus": 476200406, - "FrilledLizard": 420993517, - "Mount_Ankylosaurus": 669692274, - "Mount_Triceratops": 1126950204, - "Mount_2P_Glider": 1630365881, - "Transformation_Thunderhorn": 1045262037, - "Transformation_Jaguar": 1080966062, - "Transformation_Pteranadon": 273836142, - "Transformation_ShadowWeaver": 255927111, - "Transformation_EagleWarrior": 1880471875, - "Mount_Falalalallama": 389890123, - "Mount_2P_WinterTreant": 1850265056, - "GDN_LG_MissileToe": 1767792974, - "GDN_MED_PointSetta": 647257205, - "Nutcracker2012": 1598217699, - "Coal2012": 1627852119, - "Mount_Sleigh": 1636615519, - "Mount_Sabertooth": 1613031507, - "Mount_MechanicalWings": 1014917438, - "PiranhaHunter": 686271163, - "Quetzal": 2020925822, - "Mount_Sloth": 1169387359, - "HollowKnightLife": 2114081886, - "BettaFish": 138088968, - "MummyCat": 62372925, - "TrojanHorse": 1725299194, - "WC_Storm_Possessed": 186960228, - "AV_Possessed": 1106693085, - "AZ_Possessed": 1106692701, - "CL_Possessed": 1106692255, - "KT_Possessed": 1106693015, - "MS_Possessed": 1106692977, - "WC_Possessed": 1106692459, - "Mount_2P_Whale": 448824263, - "Mount_2P_Chariot": 88035298, - "Mount_WarBoar": 1159836211, - "Mount_Palanquin": 47587550, - "BearCub": 672664722, - "Transformation_Minotaur": 1454233452, - "DragonGauntlet": 797645257, - "DeathUnicorn": 924144161, - "Flamingo": 1488424911, - "Mount_Gorilla": 1939919432, - "Mount_WarUnicorn": 1361393198, - "GargoyleMyth": 1819685060, - "TikiMan": 16098567, - "Siren": 79937811, - "GoldenRam": 410220227, - "Harpy": 96026632, - "SwordShield": 1668411785, - "ClockworkKnight": 1059948980, - "Mount_MechanicalEagle": 1720948645, - "Mount_Cloud": 1166233435, - "Mount_Surfboard": 1914250039, - "Mount_BetaDragon": 1023653721, - "Mount_BeeWings": 1387988401, - "Vampire": 524731385, - "FrankenBunny": 589797989, - "BumbleBee": 249592226, - "Mount_Dragonfly": 1028843656, - "BronzeGolem": 1320867859, - "TarantulaHawk": 1983939429, - "Mount_Grasshopper": 1852850928, - "FlyingSquirrel": 847551166, - "GDN_MED_Sunion": 1652707634, - "GDN_MED_SwordFern": 548761438, - "GDN_SM_SugarKhrystal": 267539461, - "GDN_SM_SawPalmetto": 1892888046, - "GDN_LG_FacePalm": 2050814140, - "GDN_LG_QueenCrapeMyrtle": 80378450, - "Transformation_ShadowTank": 1304943609, - "Transformation_ShadowHeal": 1254024185, - "Transformation_ShadowDPS": 87276537, - "Mount_Noelephant": 1383672248, - "SaintBernard": 572932242, - "ParkaFox": 2009808189, - "Goose": 75019719, - "Mount_Coconut": 791151432, - "CreepyBeetle": 345594179, - "BabyDragonfly": 1367084335, - "FennecFox": 41315063, - "PP_Leviathan": 833901526, - "PP_SunSerpent": 1062677009, - "PP_LordOfWinter": 960214698, - "PP_Medusa": 867812931, - "PP_Dryad": 147654656, - "PP_AvengingFossil": 315904647, - "PP_Sabertooth": 1799146677, - "Mount_Butterfly": 1283940943, - "Mount_Hare": 2070851023, - "Transformation_MorganthB": 197306990, - "Transformation_MorganthC": 197831278, - "Transformation_MorganthD": 200452718, - "BabyPegasus": 1215000859, - "ArcaneHelp": 1899247549, - "Mount_Vines": 98389624, - "Mount_ArcaneMinecart": 2001270930, - "Hobgoblin": 2133668461, - "Mount_2P_Rowboat": 237071469, - "ForestSpirit": 1178454602, - "Mount_SpiritWolf": 531991076, - "Otter": 84138671, - "OrigamiBird": 550984083, - "DinoSkeletal": 233277835, - "Mount_HarrowingsGreen": 1605746772, - "Mount_HarrowingsBlue": 477152436, - "Mount_HarrowingsPurple": 2092807554, - "RedPanda": 1744233845, - "Ibis": 2665577, - "Corgi": 78823875, - "Mount_Yak": 996545739, - "Mount_FlyingBalance": 436519643, - "Transformation_ShadowMalistaire": 1043814435, - "Transformation_DragonMalistaire": 841867699, - "Mount_Scarab": 1687658791, - "Transformation_MisterHound": 1973578844, - "Mount_BahHumbug": 55114077, - "Skates": 1568993965, - "Moose": 75019725, - "Mount_Gargoyle": 1456663874, - "GDN_MED_VenusFlyTrapEpic": 1594069606, - "Mount_PlayerWingsPink": 19403046, - "GDN_LG_AlligatorPearEpic": 1326804812, - "Pet_Armadillo": 825736847, - "Mount_JoustingDestrierDyeable": 1683448768, - "GDN_MED_VampireCarrots": 871596496, - "GDN_SM_WhiteTigerLilyEpic": 1703271434, - "GDN_LG_NinjaFigEpic": 938504823, - "GDN_LG_SnapDragonEpic": 2071674466, - "GDN_MED_HelephantEarsEpic": 719166107, - "GDN_MED_TrumpetVineEpic": 225854518, - "GDN_SM_DandelionEpic": 728637442, - "GDN_SM_HuckleberriesEpic": 1903258448, - "GDN_MED_SnowAppleEpic": 1231175967, - "GDN_SM_BoomShroomEpic": 981598771, - "GDN_MED_KingParsleyEpic": 2038371004, - "Mount_Raptor": 749695031, - "Pet_Toucan": 581477475, - "Pet_Squirrel": 969881395, - "Mount_WonkyDonkey": 1481657312, - "Mount_HawkPatriotic": 509149743, - "Pet_FrogAssistant": 1945041750, - "Mount_Cat2": 1151054899, - "Mount_Cat2BW": 1603515443, - "Pet_ArmadilloBW": 825733899, - "Pet_FrankieForearms": 1100195857, - "Mount_SolarSabre": 1281093703, - "MNT_MechOstrich": 258667969, - "MNT_BootsBalance": 1799191558, - "MNT_BootsDeath": 1034912971, - "MNT_BootsFire": 606061658, - "MNT_BootsIce": 2142643294, - "MNT_BootsLife": 773751898, - "MNT_BootsMyth": 144792486, - "MNT_BootsStorm": 1525245121, - "Pet_CorgiBirthday": 1951779369, - "OrigamiBirdBDay": 1909935955, - "Pet_FlyingBlackCat": 432111988, - "Mount_Narwhal": 449637834, - "Mount_NightOwl": 1648420845, - "Pet_Penguin": 137342907, - "MNT_PowerGemUnicorn": 411234062, - "Pet_CrystalButterfly": 512136094, - "Mount_BabyMammoth": 185831059, - "MNT_BabaYaga": 564874997, - "Pet_BabySeal": 657606984, - "Pet_BabyYeti": 635847496, - "Transformation_BallerinaBear": 1525333600, - "Mount_StagYuletide": 1508680687, - "Transformation_TitanMedium": 1700742736, - "Transformation_TitanLarge": 718614967, - "Pet_SirenIce": 849851564, - "Mount_FlyingDeath": 1717725588, - "Mount_FlyingFire": 1177216332, - "Mount_FlyingIce": 1238841184, - "Mount_FlyingLife": 433397684, - "Mount_FlyingMyth": 164983572, - "Mount_FlyingStorm": 375872049, - "Dragonling": 1730534849, - "Pet_EggChicken": 952873217, - "HeckhoundGhost_MAW": 893368960, - "Mount_WinterTrain": 751515281, - "Mount_RubberDucky": 1826548479, - "Pet_BansheeSpellwrit": 917979583, - "Pet_SamooraiSpellwrit": 370057597, - "Mount_UnicornAstral": 886914505, - "Guest_Boochbeard": 1958574095, - "Pet_MouseSister": 1267930350, - "Pet_MouseFather": 2010008339, - "Pet_VampireSquirrel": 250588691, - "Mount_CoffinCar": 1387606595, - "Mount_BabyElephant": 2026559639, - "Pet_RoadHog": 601156960, - "Mount_WolfGryphonWings": 543038283, - "MNT_ClockworkSteed": 891371132, - "Mount_Chopper": 1196683136, - "Pet_ButterflyLamb": 527214392, - "Pet_MouseMother": 2012687123, - "Pet_MouseBrother": 1174380856, - "Pet_Cherub": 769208559, - "GDN_SM_Jewel": 1104045832, - "MR_Death_Duncan_Grimwater": 1850289001, - "Mount_DesertRunner": 2049036229, - "Pet_MonkeyMirage": 418612892, - "Pet_ClockworkOwl": 1038482431, - "Pet_NinjaTurtle": 2024540686, - "Mount_Vines_Halloween": 82852149, - "Mount_SwarmBat": 1151836459, - "Mount_2P_NinjaDragon": 1239694057, - "Mount_Gobler": 1820615236, - "Mount_MaryleboneCar": 2027689685, - "JackOLantern": 1016361578, - "Transformation_DjinnCommonA_Balance": 996127128, - "Transformation_MedicineMode": 25960701, - "CactusHopper": 1956293007, - "Transformation_Mimic_ChestGold_A": 414145432, - "Mount_Ghoulture": 1067671195, - "Pet_Macaw": 1087278472, - "Pet_SandWorm": 653200803, - "Transformation_DromelDancer": 1071824116, - "Pet_Bunnies": 695874547, - "Mount_Snowboard": 1914380015, - "Transformation_DrommelDancer": 226294468, - "Mount_Carpet_New": 1618650322, - "Mount_BunnySleigh": 599915427, - "Helephant_Heart": 419161272, - "Mount_Snowboard_Holiday": 876339060, - "Transformation_GhostDog": 646575420, - "Transformation_PrinceGobblestone": 693826496, - "Transformation_Mithraya": 1240010601, - "Transformation_LuskaCharmbeak": 897469730, - "Transformation_YoungCyrusDrake": 15595663, - "Kookaburra": 1069759154, - "BorealisGolemPet": 797488492, - "FlyingEyePet": 505959833, - "StormCloudPet": 548463069, - "BullPet": 1993917801, - "OpossumPet": 284003652, - "GhoulturePet": 939920734, - "StormCloudPetB": 548463001, - "StormCloudPetC": 548463003, - "Guest_LordNightshade": 1221409981, - "BullPetB": 1993917561, - "BullPetC": 1993917553, - "BullPetD": 1993917513, - "Transformation_ShadowCrit": 1392195065, - "Mount_Pennyfarthing": 1551926344, - "Mount_RowboatPirate": 2079208803, - "Mount_IceCube": 1261861595, - "Guest_LostMaiden": 883675592, - "Guest_BoatswainMcGee": 1359750850, - "Guest_ChiefMateMcGurk": 329643845, - "Guest_DoomedBones": 2015643882, - "Guest_SpectreoftheBrocken": 266357448, - "Guest_DrownedKnight": 1100966093, - "Guest_TarntheDrowned": 329540205, - "Guest_DisloyalKnight": 1853240753, - "Guest_NamelessKnight": 1065677876, - "Guest_LambentFire": 489886605, - "Guest_LordoftheBrocken": 1662003371, - "Guest_StormCaiman": 1147500291, - "Guest_GrinningDeathMoon": 737595789, - "Guest_MoonSkullWight": 1720039490, - "Guest_HuemacSpearWreath": 1522021131, - "Guest_HowlingBanshee": 1340855338, - "Guest_Sea-Booter": 1818491983, - "Guest_DeadRover": 1009273257, - "Guest_CelestianRemnant": 1312268448, - "Guest_Shadow-WebConscript": 1500529411, - "Guest_Shadow-WebMercenary": 623672171, - "Guest_Shadow-WebWraith": 810956416, - "Guest_Shadow-WebHaunt": 500586883, - "Guest_CelestianPartisan": 633346892, - "Guest_CelestianDefender": 482102727, - "Guest_ThraleBonestriker": 1172972733, - "Guest_VorgenSoulbreaker": 1935693246, - "Guest_ServusBloodsword": 1703995647, - "Guest_QueenCalypso": 845803519, - "Guest_BlueBart": 77043390, - "Guest_KarolakNightspinner": 1008737316, - "Guest_ArachtusDuskweb": 1787750209, - "Guest_ZhalarStarcloud": 1453644105, - "Guest_NarallorNightborn": 1963363700, - "Guest_SelwynSkywatcher": 1413136893, - "Guest_OsseusNightreaver": 306827003, - "Guest_IrateBanshee": 865143109, - "Guest_FuriousHowler": 1607252558, - "Guest_CryingSpirit": 1559074820, - "Guest_UndeadDraconian": 169249571, - "Guest_ReanimatedDraconian": 247067807, - "Guest_GhastlySlave": 80127661, - "Guest_BoundSpecter": 369706568, - "Guest_NecroticHaunter": 1714841563, - "Guest_LoathsomeCreeper": 1087245229, - "Guest_FleshrotRetriever": 1925148031, - "Guest_BarbarianSpirit": 2112552732, - "Guest_BeghastionCrowcaller": 586628832, - "Guest_BeghastionFieldburner": 1650751959, - "Guest_BoneWarrior": 76802026, - "Guest_FleshlessSentry": 708431820, - "Guest_PirateRavager": 945157059, - "Guest_RottenScallywag": 974666855, - "Guest_ArmoredBonewalker": 1444568072, - "Guest_UndeadWizard": 1622435563, - "Guest_SoulSearcher": 2094392941, - "Guest_DecayingBlackguard": 412324062, - "Guest_FoulReaper": 919877614, - "Guest_NightShadow": 1675932226, - "Guest_MotleyCrew": 653779218, - "Guest_OrinGrimcaster": 472649066, - "Guest_GhostofSylviaDrake": 218332449, - "Guest_VikaMarkmaker": 1145181168, - "Guest_VasekAshweaver": 1001434369, - "Guest_FireWraith": 1027720368, - "Guest_HungrySoul": 1722435576, - "Guest_FrostBones": 456145606, - "Guest_SnowSkull": 835837850, - "Guest_WinterSkull": 1556601065, - "Guest_LothinDoombringer": 860995070, - "Guest_MimirWinterbane": 1111898070, - "Guest_KulgrimSoulsunder": 278037985, - "Guest_HitojiniDeathcaster": 1144499043, - "Guest_GaikotsuSkeleton": 1113949902, - "Guest_PhantomAce": 1917639347, - "Guest_PhantomGlider": 849918336, - "Guest_Krokomummy": 857773886, - "Guest_NiriniAncientGuard": 359313880, - "Guest_NiriniFireSpirit": 1863811476, - "Guest_VaultHaunter": 197723476, - "Guest_VigilantDefender": 171276829, - "Guest_WanderingAhnicSpirit": 1702865088, - "Guest_ForgottenDjeseritSoul": 1170568256, - "Guest_KaranahnDeathfeeder": 1612857711, - "Guest_ShamblingAhnic": 1579129677, - "Guest_RisenDjeserit": 287855500, - "Guest_KaranahnMortifier": 874288111, - "Guest_DjeseritDweller": 2058423665, - "Guest_AhnicStrider": 1776992302, - "Guest_GuardianoftheFang": 1816795524, - "Guest_DefenderoftheFang": 354353604, - "Guest_ProtectoroftheFang": 1290191037, - "Guest_SouloftheCharmed": 422890577, - "Guest_KaranahnKeeper": 77581557, - "Guest_NiriniIntimidator": 677205957, - "Guest_CondemnedSoldier": 449152244, - "Guest_NimahtheWicked": 1298248873, - "Guest_AkoriNirini": 1123159753, - "Guest_SoulScavenger": 892852198, - "Guest_KeeperoftheFang": 1676773499, - "Guest_ItennuSokkwi": 699159408, - "Guest_Tempestra": 334938435, - "Guest_QueenIrisiDjeserit": 1861434100, - "Guest_TheBonekeeper": 1302503449, - "Guest_CryptScavenger": 1893795791, - "Guest_Soulsapper": 1699756010, - "Guest_KingUroAhnic": 1788825731, - "Guest_KingShemetDjeserit": 1350067043, - "Guest_UnholyWraith": 1871146013, - "Guest_PikeSpiritcrusher": 498715531, - "Guest_SpellwritScreamer": 801626733, - "Guest_SpellwritRonin": 1671439174, - "Guest_Shrieker": 805966229, - "Guest_GravePhantom": 731622936, - "Guest_NightmareSpirit": 230709057, - "Guest_VengefulCreeper": 1100197884, - "Guest_TombRoamer": 1277825068, - "Guest_ShieldSkeleton": 1634270152, - "Guest_AgonyWraith": 30384496, - "Guest_IcyGhost": 768353592, - "Guest_Half-wittedSkeleton": 647996362, - "Guest_LazyHenchman": 1329554426, - "Guest_TiredFighter": 210248632, - "Guest_Screecher": 469007005, - "Guest_SeethingWraith": 664913100, - "Guest_ColdConfusion": 1304943934, - "Guest_OssuaryConscript": 1017667150, - "Guest_Ghulture": 1330558655, - "Guest_BodyGuard": 1048581801, - "Guest_SpectralGuardian": 422805602, - "Guest_VaultConscript": 1388398065, - "Guest_FootPatrol": 1692393321, - "Guest_ArmedGuard": 2045920536, - "Guest_Chilly": 1764665905, - "Guest_Achey": 973370519, - "Guest_Sneezy": 1769440773, - "Guest_Cough": 1170200073, - "Guest_Shadowbones": 1316133167, - "Guest_ForgottenConscript": 1466348281, - "Guest_BarracksGuardian": 236603440, - "Guest_CryptConscript": 314755436, - "Guest_DurvishSeeker": 1825622267, - "Guest_MedicineMode": 167015574, - "Guest_Myriarch2": 593881680, - "Guest_Myriarch3": 593881616, - "Guest_MyriarchEphialtes": 773531895, - "Guest_MotherGhulture": 1585201915, - "Guest_CaptainCosrow": 727107332, - "Guest_VizierRafaj": 214040637, - "Guest_DarkmoorSerf": 1522169114, - "Guest_DarkmoorSquire": 1822567109, - "Guest_ScarletWampyr": 1683954247, - "Guest_DraconianRevenant": 741497298, - "Guest_DraconianEidolon": 107733297, - "Guest_AnguishedWraith": 1078602022, - "Guest_DraconianPyromancer": 729577007, - "Guest_DraconianThaumaturge": 189734361, - "Guest_DraconianDiviner": 472633746, - "Guest_DraconianConjurer": 1824962835, - "Guest_DraconianTheurgist": 1828628416, - "Guest_DraconianNecromancer": 175364324, - "Guest_DraconianSorcerer": 1262893339, - "Guest_SirBlackwater": 366308464, - "Guest_AkhtangWormCrawl": 1589032404, - "Guest_SpiritofDarkmoor": 579455915, - "Guest_ShanevonShane": 2096517522, - "Guest_YevgenyNightCreeper": 1535282881, - "Guest_MalistairetheUndying": 824508513, - "Guest_Bunferatu": 1015806005, - "Guest_CountBelaBlackSleep": 761647679, - "Guest_DeathSoldier": 1715141574, - "Guest_SorrowWhisperer": 556532003, - "Guest_GriefSpectre": 1425488559, - "Guest_HowlingShade": 631460247, - "Guest_WalkingDead": 318527090, - "Guest_Akuji": 977635799, - "Guest_TorturedKakedaSoul": 1716874833, - "Guest_KakedaSpiritSlave": 1814699344, - "Guest_DishonoredSamoorai": 320085744, - "Guest_CursedRonin": 1204095686, - "Guest_TomugawatheEvil": 166125424, - "Guest_OyotomitheDefiler": 1672714483, - "Guest_Fushiko": 801492770, - "Guest_BrokenLandGuardian": 294671991, - "Guest_ShatteredSkyGuardian": 746681463, - "Guest_SunderedSeamGuardian": 1439618652, - "Guest_BrokenLandSpirit": 860105895, - "Guest_ShatteredSkySpirit": 2104112380, - "Guest_SunderedSeamSpirit": 69572311, - "Guest_LostSoul": 204361577, - "Guest_RottingFodder": 308249734, - "Guest_HauntedMinion": 689597338, - "Guest_FieldGuard": 1175228991, - "Guest_SkeletalWarrior": 778393993, - "Guest_SkeletalPirate": 1476730220, - "Guest_WanderingSpecter": 126188449, - "Guest_LivingScarecrow": 1442943145, - "Guest_FrostPhantom": 1809776664, - "Guest_FireShrieker": 173332719, - "Guest_CryptCrawler": 2118799272, - "Guest_ViridianSpecter": 383149977, - "Guest_ArgentClatterer": 525414714, - "Guest_SwimmingSpecter": 1494025094, - "Guest_ScarletScreamer": 1689589811, - "Guest_BoneDigger": 1351421123, - "Guest_HowlingGhost": 664019391, - "Guest_SkeletalSoldier": 750463116, - "Guest_MaidenofHate": 444442868, - "Guest_SkeletalRetainer": 1409032775, - "Guest_SoulHunter": 1900267551, - "Guest_MidnightShuffler": 1991052065, - "Guest_PlaguedSoul": 419071561, - "Guest_HauntingBanshee": 345837052, - "Guest_SimontheSayer": 1352807820, - "Guest_TheHarvestLord": 1923575206, - "Guest_LadyBlackhope": 1403431623, - "Guest_SergeantSkullsplitter": 898737831, - "Guest_Foulgaze": 2063419769, - "Guest_Wormguts": 788697519, - "Guest_Rattlebones": 125602919, - "Guest_Paulson": 1112716921, - "Guest_Grubb": 1167554274, - "Guest_Norton": 581021964, - "Guest_NightStalker": 1447653309, - "Guest_AddereTimeo": 1491420030, - "Guest_TheReaper": 1526369733, - "Guest_AngrusHollowsoul": 1427862805, - "Guest_OrrickNightglider": 951078615, - "Guest_SteelSentinel": 885250894, - "Guest_Shadow-WebSoldier": 2014925398, - "Guest_LostCeleste": 1725301830, - "Guest_CapnNigelSkullcrack": 1665439970, - "Guest_HaulAwayJoe": 1075985331, - "Guest_OldMaui": 15300840, - "Guest_LordAgue": 140791419, - "Guest_MelweenaSmite": 432188189, - "Guest_HalloweenTrickster": 2043736417, - "Guest_PumpkinHead": 1098332105, - "Guest_BaronMordecai": 817370918, - "Guest_KaimaniteMummy": 1332671420, - "Guest_VeggieRevanant": 928504192, - "Guest_BloodBat": 76467389, - "Guest_DeadBeets": 157829578, - "Guest_Desparagus": 1130644076, - "Guest_MeanestFly-Trap": 1652898868, - "Guest_Nosferabbit": 1021159436, - "Guest_ThrallofSothmekhet": 330780177, - "Guest_VileApparition": 426627869, - "Guest_SoulServant": 1183110886, - "Guest_SoulKeeper": 917518313, - "Guest_AdmiralBontau": 2032168402, - "Guest_DeathWhisperer": 3814952, - "Mount_RollerBlades": 111369373, - "Guest_BaneWyrm": 147033576, - "Guest_BlackDragon": 939469656, - "Guest_DragonSpawn": 1829803517, - "Guest_Fire-SpitterSpawn": 616624489, - "Guest_CaoranachtheFire-Spitter": 323513000, - "Guest_Jabberwock": 1552492834, - "Guest_CatalantheLightningLizard": 1155778705, - "Guest_WhiteDragon": 2009449331, - "Guest_WinterWyrm": 478925069, - "Guest_WyrmStatue": 2119216210, - "Guest_AlgidWyrm": 1309546482, - "Guest_BruleeSucre": 390936202, - "Guest_HebitohoWyrmling": 1682026810, - "Guest_Shadowwock": 505539184, - "Guest_EirikurAxebreaker": 1361453552, - "Guest_WarWyrm": 1124740742, - "Guest_StrayFireflier": 610979811, - "Guest_BurningFlamewing": 2041225130, - "Guest_FeralLavaling": 371483057, - "Guest_SplinterWing": 923421333, - "Guest_ChanticoBlueAir": 1572441903, - "Guest_CopperWingGuard": 302783602, - "Guest_ObsidianBeak": 2016227452, - "Guest_CaquixNineShadows": 2070101060, - "Guest_LustrousTlalocan": 1201030473, - "Guest_SeedThief": 263211181, - "Guest_PopZotzUnluckyDay": 1416773489, - "Guest_NezathePoet": 1905861376, - "Guest_MazenStingerBee": 1642023393, - "Guest_ImperialJusticePayne": 1285679745, - "Guest_AssistantWardenPorfiry": 22099059, - "Guest_MarshalKamensky": 524669730, - "Guest_WardenVissarovich": 882556823, - "Guest_GulagGuard": 100744159, - "Guest_CaptainKravchuck": 690830770, - "Guest_ImperialGuard": 346803640, - "Guest_IronPaw": 1797329688, - "Guest_TundarianEnforcer": 134256836, - "Guest_Ivan": 996220221, - "Guest_ColonelOrlov": 1381254189, - "Guest_IronPawIntakeCaptain": 2099184835, - "Guest_SolitaryWarden": 1503529566, - "Guest_CaptainZubkov": 793725366, - "Guest_SergeantBobrik": 722182485, - "Guest_WailingWraith": 946976407, - "EggChick": 1452316301, - "BunnyMallow": 518233330, - "Guest_ThunderHornZombie": 1007920040, - "Guest_SmokingMirrorZombie": 340971759, - "Guest_ShamblingZombie": 1920485146, - "Guest_MoonSkullZombie": 809249764, - "Guest_DeathlessStormHorn": 812397213, - "Guest_MozarTurtleHunter": 561749043, - "Guest_GuillermoShatterer": 499565054, - "Guest_XiuhcoatlBarbedTooth": 1719245305, - "Guest_AzcalFireAnt": 1281366337, - "Guest_TlotzinMoonThief": 407285761, - "Guest_PocaCruelStar": 1117353085, - "Guest_ThunderHornGhoul": 597878999, - "Guest_TezomocStoneSinger": 733511940, - "Guest_EzhuaBadTaste": 632779219, - "Guest_UacalxochitlBloodEye": 1614856226, - "Guest_WanadiBlackSky": 349829749, - "Guest_ElMarrow": 483880636, - "Guest_GrimCalaca": 1534029144, - "Guest_XipeFlayedOne": 1343577398, - "Guest_MotecumaDeathMask": 1782393717, - "Guest_EkeChuah": 13416770, - "Guest_AnacaonaBlackSnake": 1543344897, - "Guest_SmokingMirrorWight": 776452983, - "Guest_Tolkemec": 217428080, - "Mount_Fox": 77199428, - "PP_OwlProtege": 268847192, - "Mount_SharkSki": 331374103, - "PP_Dolphin": 1662291612, - "Mount_CastSymbol_D": 1134428045, - "Mount_CastSymbol_E": 1136525197, - "Mount_CastSymbol_F": 1138622349, - "Mount_CastSymbol_G": 1140719501, - "Mount_CastSymbol_A": 1128136589, - "Mount_CastSymbol_B": 1130233741, - "Mount_CastSymbol_C": 1132330893, - "Guest_LionSpectralGuardian": 1791543691, - "Guest_KillmareSpiritwalker": 1818928165, - "Guest_ZebraSpectralGuardian": 815933596, - "Guest_GorillaSpectralGuardian": 1635182119, - "Guest_IklawGhostWarrior": 373465545, - "Guest_BwanaShadowriver": 1307628747, - "Guest_ElephantSpectralGuardian": 1579402208, - "Guest_ZangaZebu": 1218173119, - "Guest_GrumishGreataxe": 486953385, - "PP_GlowFairy_A": 2028856748, - "Guest_RestlessSoldier": 1142701763, - "Guest_WanderingWizard": 209518514, - "Guest_ColonelIvanenko": 399169035, - "Guest_DetollitheDestroyer": 655767295, - "Guest_Jawniak": 1791298433, - "Guest_Tajniak": 356182394, - "Guest_Ygor": 996316081, - "Guest_KyaniteLancer": 2136703656, - "Guest_VestaShadowmark": 1846747836, - "Guest_ZoraSteelwielder": 1186470644, - "Guest_AndorBristleback": 1949884743, - "Guest_GalliumPaladin": 1812340868, - "Guest_GalliumFootman": 1295203112, - "Guest_GalliumShardtrooper": 1210699836, - "Guest_GalliumJuggernaut": 3527584, - "Guest_VladimirDarkflame": 1575322237, - "Guest_KyaniteLieutenant": 561528977, - "Guest_DrusillaMorningbane": 155837810, - "Guest_KyaniteValkyrie": 53242136, - "Transformation_20Q_SherlockBones": 1112674320, - "Guest_DevoraShadowcrown": 1813459117, - "Guest_YoualaNightDrinker": 881289828, - "Guest_Pendragon": 715669945, - "Guest_CelestianRevenant": 515730327, - "Guest_SoullessServant": 1505662730, - "Guest_SpiritServant": 104517373, - "Guest_SoulSerf": 1188214406, - "Guest_ServileSoul": 871844607, - "Guest_SkeletalCorsair": 239414410, - "Guest_RottedFodder": 1301186193, - "Guest_ScarletScreecher": 600457915, - "PP_FrankBunnyBride_A": 974707030, - "Guest_BastillaGravewynd": 2100015237, - "Guest_VilaraMoonwraith": 2067986693, - "Guest_YngvarSharptooth": 1783361972, - "Guest_TroubledWarrior": 1569033392, - "Guest_VeggieRevanant2": 928503904, - "Guest_VeggieRevanant3": 928503888, - "Guest_VeggieRevanant4": 928503872, - "Guest_VeggieRevanant5": 928503856, - "Guest_AncientQhatWarrior": 1564521104, - "Guest_EmperorPaleolo": 2079384347, - "Guest_SpiritofIntolerance": 1627658048, - "Guest_SpiritofInquiry": 1320544891, - "Guest_FirstGuardian": 1982227776, - "Guest_FallenMerc": 225926286, - "Guest_NightShadow2": 1638183490, - "Guest_NightShadow3": 1636086338, - "Guest_NightShadow2-2": 1436856907, - "Guest_NightShadow3-2": 1434759755, - "Guest_NightShadow4-2": 1432662603, - "Guest_NightShadow5-2": 1430565451, - "Guest_NightShadow6-2": 1428468299, - "Guest_NightShadow7-2": 1426371147, - "Guest_FirstScythe": 738854032, - "Guest_GreyMantisCaptain": 860186057, - "Guest_GreyMantisHunter": 1239274377, - "Guest_Atlach-Leng": 836136649, - "Guest_PetrovGloomstrider": 2045783873, - "Guest_NauyotolDownIntheHole": 1134251106, - "Guest_SandorSpearcaller": 1351072377, - "Guest_MavraFlamewing": 1477685600, - "Guest_Scaldling": 208751819, - "Guest_WoebegoneWraith": 1166488705, - "Guest_BorisBlackrock": 1365399915, - "Guest_KatiaFirewinter": 521255834, - "Guest_ValerikBrightsword": 1244055782, - "Guest_RurikFlamesoul": 1962726850, - "Guest_IonaPyrelance": 722266491, - "Guest_DarkPoltergeist": 818162178, - "Guest_TheCollector": 1772287612, - "Guest_ViktorSnowcrusher": 1028387381, - "Guest_ValeskaRedwind": 19316351, - "Guest_ScarrikGallowgaunt": 105397333, - "Guest_Neberyx": 1453883041, - "Guest_AsrikWidebelt": 401936422, - "Guest_GothricHonorbound": 750072340, - "Guest_HalfangBristlecrown": 618779562, - "Guest_OsvudFleetpaw": 1023466459, - "PP_PufferFish_A": 1578606029, - "Guest_OzelUnderwaterCat": 1033669302, - "PP_BabyGreenMan_A": 910025246, - "PP_SchoolTurtle_A": 1012620678, - "PP_DarkBalloon_A": 1229308566, - "MT_JetsamCopter": 92127678, - "Mount_4P_DarkClownCar": 420246262, - "MNT_BalloonsBunch": 2000358474, - "Guest_TempleGuardian": 632574316, - "Guest_TemplePhantom": 1701097840, - "Guest_MahonStarsearcher": 1549093341, - "Guest_LostKnight": 858980994, - "Guest_AnguishedWoodman": 174606918, - "Guest_TormentedTreant": 294050331, - "Guest_WildfireTreant": 1902129818, - "Guest_BlightedYaxche": 679097088, - "Guest_Junglethorn": 1734561424, - "Guest_Tangleroot": 2027061721, - "Guest_BlightedFreerooter": 1109803061, - "Guest_Winterbranch": 1170787806, - "Guest_DecayingBogwalker": 1338670789, - "Guest_BrownwoodTormentor": 1655181754, - "Guest_Wildroot": 1839747182, - "Guest_Ironsplinter": 668295157, - "Guest_Frostbranch": 75974631, - "Guest_KyoukonteiTreant": 474446232, - "Guest_BrokenStumps": 414724364, - "Guest_WordlessWoodsmen": 1813881830, - "Guest_DesiccatedTreebeard": 1826942903, - "Guest_ShadowoftheLand": 1612385317, - "Guest_TreeRoot": 1406633546, - "Guest_BefouledWoodwalker": 1517919498, - "Guest_ConfusedForestWarrior": 750805985, - "Guest_CrazedForestSpirit": 1007960507, - "Guest_Oakheart": 1158293719, - "Guest_SnowTreant": 1028620035, - "Guest_Snowbeard": 1997921701, - "Guest_BarkskinTreant": 2143957812, - "Guest_RazorleafTreant": 2133159197, - "Guest_CarrionFlowerMan": 1120698936, - "Guest_Kurokage": 355651925, - "Guest_LacombeStrawHouse": 568809873, - "Guest_BerkshireStickHouse": 1932133405, - "Guest_TamworthBrickHouse": 894027634, - "Guest_RustyTinderSpark": 1237916230, - "Guest_CoraWinterBranch": 1901918989, - "Guest_GrambleGoldRook": 1986988546, - "Guest_PiperStormTree": 1109520133, - "Guest_Hanadzura": 124838500, - "Guest_Kuchisaki": 2084188681, - "Guest_Kaizoku": 807430784, - "Guest_JaxonLastRites": 1653711119, - "Guest_SeijunKiller": 657647155, - "Guest_ZarichiTarakata": 1129212566, - "Guest_BladelessRonin": 1577395797, - "Guest_SanzokuOutlaw": 1682888807, - "Guest_SanzokuBandit": 1766198653, - "Guest_KakedaPainbringer": 1260119278, - "Guest_KakedaStalker": 367458449, - "Guest_KakedaShadow": 1604499626, - "Guest_KakedaSoulcrusher": 1961168112, - "Guest_ImitsuPlaguemaster": 1361539025, - "Guest_ImitsuDefouler": 1299791045, - "Guest_ImitsuPunisher": 234819300, - "Guest_StudentofKhai": 249757647, - "Guest_OtomoBattlemage": 918160114, - "Guest_OtomoCourier": 1373253378, - "Guest_OtomoSupplyRunner": 1580070577, - "Guest_OtomoScout": 1814051082, - "Guest_OtomoWrestler": 1053571230, - "Guest_OtomoFury": 111319603, - "Guest_Hyottoko": 307080225, - "Guest_Usunoki": 1881339626, - "Guest_Kagemoosha": 1842766119, - "Guest_UdoJin-e": 850816224, - "Guest_TakedaKanryu": 536087422, - "Guest_Tamauji": 818613882, - "Guest_Jikiru": 794167355, - "Guest_Nomoonaga": 849534658, - "Guest_Aiuchi": 515942855, - "Guest_Kurogaso": 1426248002, - "Guest_Ideyoshi": 1814038213, - "Guest_Koto": 1151260427, - "Guest_Usegi": 977549586, - "Guest_Kanago": 1644367227, - "Guest_Kyuto": 1168225979, - "Guest_Haru": 2070048389, - "Guest_Ashikata": 1523446928, - "Guest_Katsumori": 1823914597, - "Guest_Hingen": 1567896261, - "Guest_Yakedo": 502298497, - "Guest_Do-Daga": 1239945714, - "Guest_Maito": 979260804, - "Guest_TonkatsuThug": 1758658397, - "Guest_GobbloreanGuard": 1286210991, - "Guest_BabblingMeints": 413418139, - "Guest_PrinceGobblestone": 1813171676, - "Guest_GobblerMuncher": 1517159487, - "Guest_GobblerGorger": 130736772, - "Guest_GobblerScouter": 1509427587, - "Guest_GobblerGlutton": 1912199781, - "Guest_GobblerScavenger": 136586791, - "Guest_BaronGreebly": 1028182200, - "Guest_BaronRotunda": 457132907, - "PP_DeathMimic": 1811942047, - "Guest_GreenMan": 1126663802, - "Guest_ForestGrump": 1602350320, - "Guest_ErvintheBarbarian": 1671762776, - "Guest_RazortuskWarrior": 1109994549, - "Guest_RazortuskBrawler": 732265321, - "Guest_SplithoofRager": 1922134329, - "Guest_TuskedRaider": 1920114147, - "Guest_SviniBeserker": 1146317608, - "Guest_SviniReaver": 216717251, - "Guest_Shattertusk": 1191456730, - "Guest_SplithoofBarbarian": 296671728, - "Guest_Bloodseeker": 2086598239, - "Guest_Scarsnout": 1831766077, - "Guest_MasterTonkatsu": 1783298894, - "Guest_Grisletusk": 657393295, - "Guest_SplithoofBloodguard": 488382274, - "Guest_BristlehideRaider": 237078958, - "Guest_Gullin": 1656401882, - "Guest_ForestNymph": 812055814, - "Guest_SassafrasMan": 1327049788, - "Guest_RandolfSpellshine": 108808620, - "Guest_BleysFlamerender": 434070106, - "Transformation_Khan": 1398327634, - "Transformation_TheBat": 1675113521, - "MNT_DireWolf": 845578449, - "MNT_YuleMule": 1976182058, - "MNT_LightBlades": 829118450, - "MNT_FlyingSquid": 1573132252, - "PP_Globulin": 467801224, - "PP_BeastBaby": 1807874692, - "PP_SaniBot": 670845902, - "Mount_SwarmSand": 1277669407, - "Guest_Nodnarb": 211478288, - "Guest_LordBramble": 1118781162, - "Guest_Yogash": 506264561, - "Guest_Marcio": 499428996, - "Guest_Procyon": 1115376865, - "Guest_Thunderfin": 2029218563, - "Guest_ArkynMoonblade": 1152775206, - "Guest_CreeCurdWright": 1714953095, - "Guest_DeerMouseRevenant": 315064435, - "Guest_ElanaDarksun": 837982094, - "Guest_KingAlricFateSailor": 1934591130, - "Guest_LaughingCalaca": 984492527, - "Guest_WraithKnight": 620484548, - "Guest_FieryEchoofApep": 484636593, - "Guest_FrostyEchoofApep": 171933154, - "Guest_FalseEchoofApep": 479387377, - "Guest_ChargedEchoofApep": 1229406800, - "Guest_ShrowdengersQhat": 101563303, - "Guest_Scrollkeeper": 643219293, - "Guest_TerrorHound": 753341570, - "Guest_CondemnedMander": 445370758, - "Mnt_SnowStorm": 1491572670, - "Mount_ChimneySweeper": 378571534, - "MNT_PineappleCandyCane": 1630795796, - "Guest_TyphonDustwind": 740849673, - "MNT_StickHorse": 216654744, - "MimicTemplate": 1461219184, - "MNT_Ball_N_Chain": 289720920, - "PP_PeaceDove_A": 1785119671, - "Mount_Gyrocycle": 1495008048, - "PP_BattleMageDragon_A": 1864696711, - "MNT_BattleBeast": 1304449286, - "MNT_SmokeTrails": 387873030, - "Mount_FriendshipHare": 677127330, - "MNT_ButterflySwarm": 383602683, - "PP_EggChick_B": 1959154042, - "MNT_Unicorn": 562210585, - "PP_StuffedUnicorn": 1731641773, - "MNT_ParadeTruck": 2026348978, - "MNT_ParadeTruckXmas": 1017864627, - "MNT_AutumnLeafSwarm": 1540002279, - "PP_GingerbreadMan": 1796172229, - "PP_DecadeDragon": 1819398630, - "MNT_StageShip": 829852992, - "PP_DramaLlama": 255896529, - "PP_HallMinotaur_A": 1492017563, - "Guest_MacDeath": 1526226705, - "Guest_MacDeathUnderstudy": 1731752647, - "Guest_MacLifeUnderstudy": 257466641, - "Guest_MacStormUnderstudy": 8295117, - "MNT_Pantera": 1135198, - "MNT_StagLight": 1908778048, - "MNT_GiantSpider": 1247185021, - "MNT_StagEvil": 872303931, - "PP_BaskHound": 1093866594, - "PP_Marionette": 1688299938, - "PP_Marionette_B": 1688297824, - "Guest_Izft": 996301405, - "Guest_SapotisMinion": 1625665891, - "Guest_CrazedSlave": 1473233468, - "Guest_CharmedSlave": 803043667, - "Guest_EnsorcelledSlave": 40920285, - "Guest_HallServant": 2038116460, - "Guest_SiathePerceiver": 1235571913, - "Guest_Kiwu": 1151177787, - "Guest_NightImp": 1051843424, - "Guest_EvilTrickster": 1035477123, - "Guest_DeepWoodsImp": 1502444054, - "Guest_ForestPest": 802235713, - "Guest_TaintedForestImp": 1030343985, - "Guest_Youkai": 518367729, - "Guest_CarthaginianElephantWarrior": 776293919, - "Guest_IdrisBeast-Taker": 106759521, - "Guest_MikaSkarka": 237956516, - "Guest_Belloq": 757247833, - "Guest_GurtokPiercer": 549466122, - "Guest_GurtokFirebender": 817966523, - "Guest_GurtokDemon": 544070162, - "Guest_GeneralFiretusk": 2073037770, - "Guest_GurtokBarrierDemon": 44657563, - "Guest_BlacktuskShaman": 1009070925, - "Guest_FireDemon": 158367196, - "Guest_DeathOni": 1916642000, - "Guest_JadeOni": 1289517185, - "Guest_PlagueOni": 1464586443, - "Guest_WarOni": 1630196094, - "Guest_BrokenLandMammoth": 1587008312, - "Guest_SunderedSeamMammoth": 1272698721, - "Guest_BullyMammoth": 170705927, - "Guest_Bullhemoth": 146998717, - "Guest_Kogasha": 1909654543, - "Guest_MusuthBerserker": 1741298129, - "Guest_BlackTuskCultist": 1771575961, - "Guest_AksilBlacktrunk": 1253596409, - "Guest_LongdreamerShaman": 1521283133, - "Guest_MuratGreyeyes": 1296814314, - "Guest_ElephantSoldier": 1443670145, - "Guest_DarajaniGuard": 1597288495, - "Guest_Loremaster": 1792470809, - "Guest_Pork": 2069999347, - "Guest_Beans": 97706585, - "MNT_Ox": 1292937747, - "PP_PropellerSquirrel": 1657443894, - "Guest_RasikPridefall": 97921485, - "Guest_AmedrasLightstep": 1818417025, - "MNT_SmokeTrails_Balance": 1358150715, - "MNT_SmokeTrails_Fire": 702971609, - "MNT_SmokeTrails_Ice": 190218501, - "MNT_SmokeTrails_Life": 2045542105, - "MNT_SmokeTrails_Myth": 1276281121, - "MNT_SmokeTrails_Storm": 564954622, - "Guest_Bellosh": 1407013027, - "Guest_AcampiReedfist": 2076527733, - "Guest_AgnettaBroadblade": 14864960, - "Guest_FrostheartRaider": 1574787221, - "Guest_JordaSwordbearer": 1627071850, - "Guest_KasaiBaku": 1153107369, - "Guest_ZoraimeiHelephant": 1002482606, - "Guest_ConscriptedMander": 43811125, - "Firecat_Decade": 409516955, - "MNT_BatGlider": 2086258491, - "Transformation_PlayerHomework": 673389670, - "Transformation_PlayerAttendance": 422287307, - "Transformation_PlayerLecture": 2035625874, - "Transformation_PlayerPopQuiz": 483367038, - "MNT_GingerbreadHorse": 1369242781, - "MNT_NimbariChariot": 1251740392, - "PP_NimbariDog": 1235126828, - "Transformation_PlayerGrandma": 1128332272, - "Transformation_PlayerScionA": 33862367, - "PP_Mushroom": 1568942158, - "MNT_Scooter": 1148167046, - "MNT_Scooter_B": 2079302532, - "MNT_Scooter_C": 1810867076, - "MNT_Scooter_D": 468689796, - "MNT_IceCycle": 415797788, - "Transformation_PlayerScionA02": 33921759, - "Guest_FearoftheFuture": 947210229, - "Guest_FearofGremlins": 405857384, - "Guest_RootGuardian": 922940845, - "Guest_VineThrasher": 172546427, - "Guest_BlightWalker": 1438155154, - "Guest_BriarScourge": 615681851, - "Guest_DreamJabberwock": 907754098, - "Guest_DreamBelloq": 990352002, - "Guest_Voltergeist": 1558128068, - "Guest_SpecialBranch": 1927849418, - "Guest_MutantBriar": 805892802, - "Guest_FeralBriar": 883790223, - "Guest_MaizeMonster": 688905764, - "Guest_DreamShadowwock": 1432458248, - "Mount_Heartboard": 1421972759, - "PP_ChocoBunny": 324797859, - "Mount-PogoFlower": 906659501, - "MNT_AethyrCloud": 1586061078, - "MNT_Fangle": 7846854, - "Guest_StarfallSpider": 1177620831, - "Guest_AshSpider": 1588502553, - "Guest_CorruptedWeaver": 38937211, - "Guest_CrystalCrawler": 1197980149, - "Guest_ShimmerWidow": 1300740128, - "Guest_FacetedSpikespinner": 1939719331, - "Guest_CrystallineQueen": 1999282256, - "Guest_AncientCrystalweaver": 1409608801, - "Guest_FangtoothLavaspinner": 1538042104, - "Guest_VenomousHeatseeker": 1234682482, - "Guest_FireweaveRockbiter": 300743778, - "Guest_MonkeySpider": 754090007, - "Guest_CryptSpider": 1545405304, - "Guest_CommonHouseSpider": 613486002, - "Guest_ArachnaMagnaMagus": 825817937, - "Guest_ArachnaSoldier": 270978709, - "Guest_Gnissa": 1699826178, - "Guest_WebwoodScuttler": 1728611075, - "Guest_SandSpider": 61789007, - "Guest_WebwoodCreeper": 1013382584, - "Guest_Skathi": 1631429165, - "Guest_ArchmagusLorcan": 321146960, - "Guest_CrawleroftheMist": 2076696304, - "Guest_PaintedSpider": 1482115552, - "Guest_GiantSpider": 1545526191, - "Guest_CaveCrawler": 2101587667, - "Guest_RattleCatcher": 1472707326, - "Guest_TrapdoorSpider": 1321643694, - "Guest_RockClinger": 1304266411, - "Guest_InquisitorXimenez": 1053483090, - "Guest_ElderMagus": 1017836836, - "Guest_WardenBenthamic": 18807199, - "Guest_SpiderArchmagus": 387645558, - "Guest_SpiderAdept": 2094873407, - "Guest_InterrogatorRentenius": 1245984179, - "Guest_WarpedWeaver": 495882677, - "Guest_ArachnaSkinner": 281864085, - "Guest_SkinnerConscript": 2028526453, - "Guest_ArachnaGladiator": 2492046, - "Guest_LorcanInitiate": 353311753, - "Guest_Serket": 1871335773, - "Guest_IceWeaver": 2063216026, - "Guest_SpiritSpinner": 525666327, - "Guest_MysteriousCrawler": 218352756, - "Guest_BlackWidow": 1909331619, - "Guest_BrownRecluse": 1146386275, - "Guest_Creeper": 1197442790, - "Guest_GearSpinner": 67020478, - "Guest_Clinker": 1194519062, - "Guest_Clanker": 1194517014, - "Guest_GrandfatherSpider": 1330981335, - "Guest_Spiderling": 1400274461, - "Guest_ManekiWebWalker": 888348786, - "Guest_KoganiDeathCrawler": 276010604, - "Guest_CheliceranCrawler": 1169176517, - "Guest_ArachniteCreeper": 1850534774, - "Guest_ChelicaranStalker": 2057291848, - "Guest_HornedMonkeySpider": 1301514577, - "Guest_GreyOgreSpider": 1533774471, - "Guest_StarburstSpider": 698029451, - "Guest_PaintedCaveMonster": 601315479, - "Guest_RubbleRouser": 220785666, - "Guest_EarthElemental": 435260049, - "Guest_SharpshardWarrior": 1403237237, - "Guest_Firevein": 1220046430, - "Guest_Blackblade": 458130537, - "Guest_VengefulFireheart": 563205004, - "Guest_FirerockStomper": 608552855, - "Guest_BlackrockGuardian": 1663799582, - "Guest_ConfusedSentry": 24655510, - "Guest_SilverSentinel": 1090673683, - "Guest_SilverServant": 84560693, - "Guest_GiantHomunculus": 456098557, - "Guest_PropertyMaster": 229101764, - "Guest_VaultProtector": 185568207, - "Guest_PlatedDefender": 79324363, - "Guest_Avalanche": 761613547, - "Guest_RockReaver": 919912933, - "Guest_Frostmantle": 856308090, - "Guest_GlacierWalker": 131215932, - "Guest_SandBehemoth": 272513357, - "Guest_RunedAnnihilator": 121339936, - "Guest_RunedDevestator": 1611071181, - "Guest_RunedGuardian": 1986312667, - "Guest_CanyonRager": 1123038266, - "Guest_RubbleReaver": 220774678, - "Guest_Boulderbone": 122279242, - "Guest_Nali": 77467516, - "Guest_Gnar": 1151164930, - "Guest_GlacialAvenger": 1181253632, - "Guest_SokkwiKeymaster": 190919624, - "Guest_SandsofTime": 34920273, - "Guest_BladeGolem": 435561523, - "Guest_FrostColossus": 1564686403, - "Guest_IceColossus": 335477257, - "Guest_PollutedEarthWalker": 86045387, - "Guest_CorruptedEarthSpirit": 1135891559, - "Guest_Stonebreaker": 1317905436, - "Guest_StoneElemental": 1715022018, - "Guest_VolcanisGolem": 1904918929, - "Guest_WaterElemental": 1717850987, - "Guest_AshenDeathMonkeySpider": 35356665, - "Guest_DeathMonkeySpider": 1525508507, - "Guest_MotherMonkeySpider": 110317392, - "Guest_DoomMonkey": 1135105500, - "Guest_DreamMorganthe": 907599965, - "Guest_DragonBeetle": 1974635734, - "Guest_SandWalker": 1530843985, - "MNT_PandaMama": 916371162, - "PP_BabyPandas": 778536285, - "PP_FrogPrince": 729975205, - "MNT_PumpkinCarriage": 183672737, - "Mount_Gobbler_B": 1193388729, - "PP_Hamster": 1578040708, - "Guest_Steeleton": 657429968, - "Guest_GoldenWyrm": 311022393, - "MNT_Roc": 1564431869, - "PP_BabyGriffin": 1913686406, - "Transformation_ShadowDPSMob": 936133896, - "Transformation_ShadowTankMob": 305660992, - "Transformation_ShadowHealMob": 356596800, - "Guest_SpiritofIgnorance": 1577360126, - "Guest_FecklessSoul": 519648315, - "Guest_BurnedOutSoul": 312181646, - "Guest_BenightedRevenant": 2131956962, - "Guest_TombLurker": 1901203489, - "Guest_DesertGolem": 543642682, - "Guest_KumoOni": 215822625, - "Guest_SpellwritStalker": 161772776, - "PP_Sun": 1723237840, - "Guest_Leadite": 4480416, - "Mount_FestiveFox": 2125832348, - "PP_FenrisWolf": 1601784680, - "PP_SchoolPiggle": 109782407, - "PP_FenrisWolf_Red": 1597992854, - "PP_FenrisWolf_Teal": 1455058454, - "PP_FenrisWolf_White": 1102186199, - "Transformation_NinjaPig_Fire": 984575055, - "Transformation_BG_RatThief_Myth": 1191155131, - "Transformation_BG_RatThief_Storm": 675891897, - "MNT_Umbrella": 955683437, - "Transformation_BG_Elf_Ice": 1209681129, - "Transformation_BG_Fairy_DarkMinion_Balance": 33521202, - "Transformation_BG_Cyclops_Death": 876023972, - "Transformation_BG_Minotuar_Fire": 1118476387, - "Transformation_BG_WolfWarrior_Storm": 2075594475, - "Transformation_BG_WolfWarrior_Balance": 746159992, - "Transformation_BG_Draconian_Myth": 903606820, - "Transformation_BG_Draconian_Life": 1501291044, - "Transformation_BG_Colossus_Life": 1320377666, - "MNT_DolphinChariot": 102982520, - "MNT_EvilWagon": 685457563, - "MNT_FlyingDutchman": 1176206544, - "PP_SeaHorse": 2024322494, - "PP_EvilTeddy": 1159020925, - "PP_ZombieParrot": 384805107, - "Transformation_BG_Ice_Colossus": 299613211, - "MNT_CarrierBat": 7323333, - "Transformation_BG_Minotaur_MythTempalte": 430330904, - "PP_FeatheredTabby": 452526748, - "Transformation_Detritus01": 1335763402, - "Guest_Metallossus": 335457082, - "MNT_SantaJaws": 464410203, - "MNT_BattleBadger": 532858222, - "Transformation_Shedder01": 2069145892, - "PP_NatureSpirit": 373176286, - "Transformation_Devourer01": 1004421540, - "Guest_TheDevourer": 1591187996, - "Guest_Treeminder": 1093207850, - "Guest_RenegadeDruid": 2087982292, - "Guest_FractalTreeminder": 927174548, - "Guest_UnsettledTreeminder": 486164163, - "Guest_DragonspyreCrusader": 247317280, - "Guest_YoungGreggor": 66068670, - "Guest_GeneralGreyflame": 499924835, - "Guest_OldGreggor": 391726170, - "Guest_PrinceViggor": 853556298, - "Guest_DragonspyreVanguard": 693851565, - "Guest_SilasConviction": 177362659, - "Guest_SilasWeariness": 893431021, - "Guest_SilasRage": 1288904439, - "Guest_SilasDoubt": 1479426285, - "Guest_Lorekeeper": 147779344, - "Guest_FelixPhotomongerIII": 68387506, - "Guest_WarHavox": 1634324022, - "Guest_Mis-assembledSkeleton": 221832082, - "Guest_TreeminderGhost": 200408510, - "Guest_ViggorsDrake": 340449521, - "Guest_BlueNinjaPig": 938539327, - "Guest_RedNinjaPig": 2097962021, - "Guest_OrangeNinjaPig": 625058258, - "Guest_PurpleNinjaPig": 445746449, - "Guest_RitualColossus": 844563319, - "Guest_TinyDragon": 1123127688, - "Guest_RitualSpider": 429827552, - "Guest_RitualDraconian": 837510372, - "Guest_CC_Druid_Warrior_C_01": 55314616, - "Guest_CC_Druid_Wizard_A_01": 1046261169, - "Guest_CC_Druid_Wizard_B_01": 1046244785, - "Guest_CC_Druid_Warrior_A_01": 56363192, - "MNT_Toboggan": 995356805, - "MNT_2P_WickerTreant-001": 2065440944, - "PP_Ratatoskr": 1003497600, - "PP_Trash": 1195047012, - "Guest_CC_Druid_Wizard_D_01": 1046343089, - "MNT_Sunflower": 721091531, - "MNT_Whoopee": 1383311238, - "MNT_Warthog": 8060761, - "PP_ShamRock": 943893325, - "PP_LeapingLeprechaun": 132882517, - "PP_LionCubs": 465759803, - "PP_Tanuki": 670387843, - "MNT_Crane": 433122675, - "MNT_Krokosphinx": 739938754, - "Transformation_BG_Fairy_Life": 1897480818, - "Transformation_LiceDeepSpawnA": 244795720, - "Piggle_Alien": 1761605655, - "PP_JeweledScarab": 620544607, - "Guest_KR_Nymph_DrkMage_D50": 1248526054, - "Guest_KR_Nymph_DrkMage_C50": 1246953190, - "Guest_KR_Nymph_DrkMage_B50": 1247477478, - "Guest_KR_Nymph_DrkMage_A50": 1245904614, - "Guest_EM_Spider_Ash_01": 185724938, - "UFO": 47349, - "PP_Kit10": 326796620, - "PP_Lumi_Tulip": 84119585, - "PP_Lumi_Fern": 117015078, - "PP_Lumi_Violet": 1468797578, - "PP_Lumi_Sunny": 1769236703, - "PP_Lumi_Daisy": 1743454175, - "MNT_CelestianMech": 1238076872, - "MNT_Brontosaurus": 402157167, - "Guest_HG_AKT_Krok_Cyber_A_Balance_25": 1367985604, - "Guest_HG_AKT_Krok_Cyber_A_Balance_50": 1368084932, - "Guest_HG_AKT_Krok_Cyber_A_Balance_75": 1367988676, - "Guest_HG_AKT_Krok_Cyber_A_Balance_100": 1351303620, - "Guest_HG_AKT_Krok_Cyber_A_Balance_130": 1351270852, - "Guest_HG_AKT_Krok_Cyber_A_Fire_25": 976558490, - "Guest_HG_AKT_Krok_Cyber_A_Fire_50": 37034397, - "Guest_HG_AKT_Krok_Cyber_A_Fire_75": 305469850, - "Guest_HG_AKT_Krok_Cyber_A_Fire_100": 573905821, - "Guest_HG_AKT_Krok_Cyber_A_Fire_130": 573905824, - "Guest_HG_AKT_Krok_Cyber_A_Ice_25": 159411377, - "Guest_HG_AKT_Krok_Cyber_A_Ice_50": 541093041, - "Guest_HG_AKT_Krok_Cyber_A_Ice_75": 146828465, - "Guest_HG_AKT_Krok_Cyber_A_Ice_100": 557870241, - "Guest_HG_AKT_Krok_Cyber_A_Ice_130": 960523425, - "Guest_HG_AKT_Krok_Cyber_A_Myth_25": 976187830, - "Guest_HG_AKT_Krok_Cyber_A_Myth_50": 36663729, - "Guest_HG_AKT_Krok_Cyber_A_Myth_75": 305099190, - "Guest_HG_AKT_Krok_Cyber_A_Myth_100": 573535153, - "Guest_HG_AKT_Krok_Cyber_A_Myth_130": 573535156, - "Guest_CL-GolemButler-R9": 780077559, - "Guest_CL-GolemDigger-Boss-R10": 562020288, - "Guest_CL-GolemDigger-R9": 789375095, - "Guest_CL-GolemDigger-Rank8MythBoss-R10": 930527857, - "Guest_CL-GolemWorker-R9-1": 1072815287, - "Guest_CL-FishbotBrown-R9-1": 2006155417, - "Guest_CL-FishbotBrown-R9-2": 395542681, - "Guest_CL-FishbotGold-Boss-R10": 611881707, - "Guest_CL-FishbotGold-R9": 705414492, - "Guest_CL-FishbotYellow-Boss-R10": 23145662, - "Guest_CL-Protector-Black-Boss-R10-2": 679228793, - "Guest_CL-Protector-Gold-R10": 1909636609, - "Guest_CL-Protector-Gold-R9-1": 1909634804, - "Guest_CL-Protector-Gold-R9-2": 1909634932, - "Guest_CL-Protector-Gold-R9-3": 1909635060, - "Guest_CL-Protector-Gold-R9-4": 1909634164, - "Guest_CL-Protector-Purple-R9-Boss": 1889837072, - "Guest_CL-Protector-Purple-R9": 81760161, - "Guest_CL-Protector-Tan-Boss-R10": 912663188, - "Guest_KR_Golem_Worker": 1784607296, - "Guest_Golem-Brass-R7-1": 718939445, - "Guest_Golem-Clockwork-R7": 1161173708, - "Guest_EM_Robot_Batbot_A_01": 1482867950, - "Guest_EM_Robot_Batbot_B_02": 945947886, - "Guest_EM_Robot_Batbot_B_01": 1482818798, - "Guest_EM_Robot_Batbot_B_03": 409076974, - "Guest_EM_Robot_Batbot_B_04": 127793938, - "Guest_EM_Robot_Batbot_B_05": 664664850, - "Guest_EM_Robot_Drone_A_02": 1215188569, - "Guest_EM_Robot_Drone_A_03": 1231965785, - "Guest_EM_Robot_Drone_A_01": 1265520217, - "Guest_EM_Robot_Drone_A_04": 1315851865, - "Guest_EM_Robot_Drone_A_05": 1332629081, - "Guest_EM_Robot_Drone_A_06": 1282297433, - "Guest_EM_Robot_Drone_A_07": 1299074649, - "Guest_EM_Robot_Drone_A_08": 1114525273, - "Guest_EM_Robot_Drone_A_09": 1131302489, - "Guest_EM_Robot_Drone_A_Boss_01": 1960661151, - "Guest_EM_Robot_Drone_A_Boss_02": 1960530079, - "Guest_EM_Robot_Drone_E_01": 1265518169, - "Guest_EM_Robot_Tank_A_01": 1314796420, - "Guest_EM_Robot_Tank_A_02": 1313223556, - "Guest_EM_Robot_Drone_C_02": 1215187545, - "Guest_EM_Robot_Drone_D_03": 1231963225, - "Guest_EM_Robot_Drone_D_01": 1265517657, - "Guest_EM_Robot_Drone_D_02": 1215186009, - "Guest_EM_Robot_Tank_B_01": 1314796468, - "Guest_EM_Robot_Drone_C_01": 1265519193, - "Guest_G14-BP-Golem_Steel_Boss": 2071105129, - "Guest_G14-BP-Golem_Steel_Puzzle": 715790979, - "Guest_Golem-Brass-Elite-L38": 1163662532, - "Guest_Golem-Brass-Elite-L56": 2057562884, - "Guest_Golem-Brass-MBBoss-L48": 1498830732, - "Guest_Golem-Brass-MBBoss-L71": 1498829576, - "Guest_Golem-Brass-MBBoss-L76": 1498828936, - "Guest_Golem-Clockwork-Elite-L54-Metal": 417151527, - "Guest_Golem-Clockwork-Elite-L37": 1961943722, - "Guest_Golem-Clockwork-Elite-L54": 1950147242, - "Guest_Golem-Clockwork-L28": 1561959116, - "Guest_Golem-Clockwork-MBBoss-L37": 973152783, - "Guest_Golem-Clockwork-MBBoss-L69": 1262559759, - "Guest_Golem-Steel-Elite-L39": 1430496717, - "Guest_Golem-Steel-MBBoss-L40": 1229578887, - "Guest_Golem-Steel-MBBoss-L43": 1229579015, - "Guest_Golem-Steel-MBBoss-L50-1": 1231762051, - "Guest_Golem-Steel-MBBoss-L50": 1229578883, - "Guest_Golem-Steel-MBBoss-LXX": 1229583927, - "Guest_Golem-Wood-Elite-L35": 904360756, - "Guest_Golem-Wood-Elite-L37": 1978102580, - "Guest_Golem-Wood-Elite-L50": 1813548236, - "Guest_Golem-Wood-MBBoss-L63": 1392041724, - "Guest_MB-Gauntlet-Golem-Clockwork": 854649045, - "Guest_Spider-Golem-MBBoss-L67": 253352706, - "Guest_Spider-Golem-MBBoss-L96": 253348994, - "Guest_WC-MAW-GasGolem-Minion": 1511013798, - "Guest_WC-MAW-GasGolemLife-Minion": 1306026584, - "Guest_Golem-Steel-L02": 1027229749, - "Guest_Golem-Clockwork-L01": 1409915596, - "Guest_Gauntlet-01-Golem-Steel-Ghost-R8": 402816318, - "Guest_Golem-Wood-L01": 156976035, - "Guest_HG-Clock-ClockworkSpanner-20": 1523370449, - "Guest_HG-Clock-ClockworkSpanner-40": 1523370455, - "Guest_HG-Clock-ClockworkSpanner-60": 1523370453, - "Guest_HG-Clock-ClockworkSpanner-80": 1523370459, - "Guest_HG-Clock-ClockworkSpanner-100": 1523354068, - "Guest_HG-Clock-ClockworkSpanner-120": 1523354004, - "Guest_AQ-Cyclops-Guard": 191361948, - "Guest_AQ_Cyclops_Guard_A_Boss_01": 114747100, - "Guest_CL-Cyclops-Death-R10": 611013866, - "Guest_Cyclops-Death-Boss-R7": 1192370725, - "Guest_Cyclops-Death-Boss-R9": 1192370717, - "Guest_Cyclops-Death-R7": 144593791, - "Guest_GH-Cyclops-Death-R6": 594236619, - "Guest_Cyclops-BlueHelmet-KTBoss-L03": 1720105277, - "Guest_Cyclops-Red-L12": 1816429840, - "Guest_MR_Cyclops02WHelmet_Model_01": 1483732416, - "Guest_Cyclops-Blue-L02": 1633021234, - "Guest_Cyclops-BlueHelmet-WCBoss-L03": 427378332, - "Guest_Cyclops-RedHelmet-WCBoss-L03": 2021269422, - "Guest_HG_Sinbad_Cyclops_25": 911979034, - "Guest_HG_Sinbad_Cyclops_50": 1856261606, - "Guest_HG_Sinbad_Cyclops_75": 861647386, - "Guest_HG_Sinbad_Cyclops_100": 1789152678, - "Guest_HG_Sinbad_Cyclops_130": 178539942, - "Guest_HG_Sinbad_IronSultan_25": 930031152, - "Guest_HG_Sinbad_IronSultan_50": 930051504, - "Guest_HG_Sinbad_IronSultan_75": 930030768, - "Guest_HG_Sinbad_IronSultan_100": 927954864, - "Guest_HG_Sinbad_IronSultan_130": 927942576, - "MNT_SweetRide": 1643297840, - "PP_FrilledDino": 1395342809, - "PP_Celestian": 95679303, - "PP_Sun_Angry": 1955190071, - "PP_Marshmallow": 1220667954, - "MNT_Umbrella_B": 923364822, - "MNT_Tamer": 1050737194, - "PP_BumbleBee_B": 858653433, - "MNT_PunkFlamingo": 1634690818, - "MNT_2P_WoolyRhino": 1395943031, - "PP_Retriever": 72842604, - "PP_Piggle_Caveman": 181356174, - "PP_DecennialDragon": 1396523337, - "MNT_Tiger_Rainbow": 515535412, - "MNT_CarrierGhosts": 1833039309, - "MNT_Sled": 617654308, - "Transformation_BG_RatThief_Death": 30691641, - "Transformation_BG_Elf_Storm": 44352983, - "Transformation_BG_WolfWarrior_Ice": 986304351, - "MNT_CarriorGhost_B": 1768732109, - "MNT_CarriorGhost_C": 1766634957, - "Transformation_BG_Colossus_Fire": 1318803522, - "Transformation_BG_Krok_Balance": 140952965, - "Guest_KM_Gobbler_Skinny_A_11": 773648065, - "Guest_KM_Robot_Candy_A_01": 480414124, - "Guest_KM_Robot_Candy_A_02": 530745772, - "Guest_KM_Robot_Candy_A_03": 513968556, - "Guest_KM_Robot_Candy_A_04": 430082476, - "Guest_KM_Robot_Candy_A_05": 413305260, - "Guest_KM_Gummy_Bear_A_01": 1940905059, - "Guest_KM_Gummy_Bear_D_01": 1940905011, - "Guest_KM_Gummy_Bear_E_01": 1940904995, - "Guest_KM_Gummy_Bear_A_02": 1941429347, - "Guest_KM_Gummy_Bear_D_02": 1941429299, - "Guest_KM_Gummy_Bear_E_02": 1941429283, - "Guest_KM_Gummy_Bear_B_01": 1940905043, - "Guest_KM_Gummy_Bear_B_02": 1941429331, - "Guest_KM_Gummy_Bear_B_03": 1941953619, - "Guest_KM_Gummy_BearHat_A_01": 853226448, - "Guest_KM_Gummy_BearHat_A_02": 853226460, - "Guest_KM_Gummy_Bunny_A_01": 324805042, - "Guest_KM_Gummy_Bunny_C_01": 324806066, - "Guest_KM_Gummy_Bunny_D_01": 324807602, - "Guest_KM_Gummy_Bunny_E_01": 324807090, - "Guest_KM_Gummy_Bunny_F_01": 324808626, - "Guest_KM_Gummy_BunnyUber_A_01": 525565930, - "Guest_KM_Gummy_Worm_A_01": 231044195, - "Guest_KM_Gummy_Worm_B_01": 231044179, - "Guest_KM_Gummy_Worm_C_01": 231044163, - "Guest_KM_Gummy_Worm_A_02": 232617059, - "Guest_KM_Gummy_Worm_B_02": 232617043, - "Guest_KM_Gummy_Worm_C_02": 232617027, - "Guest_KM_Gummy_Bear_F_01": 1940904979, - "Guest_KM_Gummy_Bear_F_02": 1941429267, - "Guest_KM_Gummy_Bunny_C_02": 274474418, - "Guest_KM_Robot_Candy_A_06": 463636908, - "Guest_KM_Alphoi_DarkF_A_01": 475441543, - "Guest_KM_Gobbler_Skinny_A_01": 773648069, - "Guest_KM_Gobbler_Skinny_A_02": 773648197, - "Guest_KM_Gobbler_Skinny_A_03": 773648325, - "Guest_KM_Gobbler_SkinnyF_A_01": 254411012, - "Guest_KM_Gobbler_Skinny_A_04": 773647429, - "Guest_KM_Gobbler_Skinny_A_05": 773647557, - "Guest_KM_Gobbler_Skinny_A_06": 773647685, - "Guest_KM_Gobbler_SkinnyF_A_02": 254423300, - "Guest_KM_Gobbler_Skinny_A_07": 773647813, - "Guest_KM_Gobbler_Skinny_A_08": 773646917, - "Guest_KM_Gobbler_Skinny_A_09": 773647045, - "Guest_KM_Gobbler_SkinnyF_A_03": 254419204, - "Guest_KM_Gobbler_Fat_A_01": 1440595742, - "Guest_KM_Gobbler_Fruit_B_01": 1236446660, - "Guest_KM_Gobbler_Fruit_A_01": 1235922372, - "Guest_KM_Gobbler_Guard_B_01": 1435667582, - "Guest_KM_Gobbler_Skinny_A_10": 773647937, - "Transformation_PlayerBabyCarrot": 1580787628, - "Transformation_PlayerDeadBeet": 1992261692, - "Transformation_PlayerDisparagus": 373797484, - "Transformation_PlayerSnowPeas": 634199102, - "PP_Snowflake": 2036143125, - "PP_GummyBear_Myth": 117787890, - "PP_GummyBear_Death": 236577760, - "PP_GummyBear_Balance": 2100524337, - "PP_GummyBear_Life": 118020336, - "PP_GummyBear_Fire": 117995748, - "PP_GummyBear_Storm": 247437198, - "PP_GummyBear_Ice": 122536570, - "MNT_SnowOwl": 1578473542, - "Guest_KM_Gummy_Bear_Uber_A_01": 1856208859, - "Guest_KM_Gummy_Bear_Uber_A_02": 1856196571, - "MNT_ChocolateMoose": 567538552, - "MNT_Ram_Candied": 1913603720, - "Guest_KM_Spider_Mage_A_01": 1529720120, - "Guest_KM_Spider_Mage_B_01": 1529719608, - "Guest_KM_Spider_Mage_C_01": 1529719096, - "Guest_KM_Spider_Mage_D_01": 1529718584, - "Guest_KM_Spider_Mage_E_01": 1529718072, - "PP_SpriteDark_Balance": 914900728, - "MNT_Tricycle": 991465753, - "Guest_Tri-Gauntlet-Protector-Gold": 2029952053, - "Guest_Tri-Gauntlet-FishbotGold": 130267882, - "Guest_HG-Clock-Clockworker-20": 281216243, - "Guest_HG-Clock-Clockworker-40": 281217011, - "Guest_HG-Clock-Clockworker-60": 281216755, - "Guest_HG-Clock-Clockworker-80": 281215475, - "Guest_HG-Clock-Clockworker-100": 283313523, - "Guest_HG-Clock-Clockworker-120": 283321715, - "Guest_HG-Clock-Lugs-20": 1452756928, - "Guest_HG-Clock-Lugs-40": 1452756960, - "Guest_HG-Clock-Lugs-60": 1452756992, - "Guest_HG-Clock-Lugs-80": 1452756768, - "Guest_HG-Clock-Lugs-100": 1452494736, - "Guest_HG-Clock-Lugs-120": 1452493712, - "Guest_HG-Clock-Lucia-20": 1041451626, - "Guest_HG-Clock-Lucia-40": 1041450602, - "Guest_HG-Clock-Lucia-60": 1041449578, - "Guest_HG-Clock-Lucia-80": 1041456746, - "Guest_HG-Clock-Lucia-100": 1049840746, - "Guest_HG-Clock-Lucia-120": 1049873514, - "Guest_KM_Gummy_Worm_A_03": 232092771, - "MNT_Scooter_E": 200254340, - "PP_WolfWarrior_Balance": 991302673, - "PP_PetGift": 1816280689, - "PP_RatThief": 1390866051, - "Guest_PL_Titan_Small_A": 2015819364, - "Guest_PL_Titan_Large_B": 699791264, - "Guest_PL_Titan_Medium_A": 326730424, - "PP_Draconian": 1631557208, - "MNT_Pantera_Astral": 106092538, - "PP_YearOx": 105653084, - "PP_WolfWarrior_Ice": 1043644935, - "PP_SpriteDark": 2031730054, - "PP_Brudel": 1355697143, - "MNT_Astronomers": 742732792, - "MNT_CouchPotato": 418050932, - "MNT_Flowerfarthing": 1396771051, - "MNT_Astronomers_Blue": 236532779, - "MNT_Astronomers_Rainbow": 4428274, - "PP_Astronomer": 782095961, - "Guest_KM_Gummy_Bunny_B_01": 324806578, - "Guest_KM_DeadBeets_A_01": 1396016635, - "MNT_GummyBunny": 775900704, - "MNT_GummyBunny_A": 775834080, - "MNT_GummyBunny_B": 775836128, - "MNT_GummyBunny_C": 775838176, - "Transformation_BG_Minotaur_Life": 1445109091, - "MNT_Armadillo": 825635826, - "PP_SootGremlin": 768969093, - "PP_RoadRunner": 2057802060, - "MNT_TinyTrolly": 160881792, - "PP_Frog_B": 1530124761, - "MNT_FjordDragon": 129204340, - "Transformation_BG_NinjaPig_Myth": 422914079, - "PP_CorgiPup": 1638656105, - "MNT_Skateboard": 728018224, - "PP_Krokomummy": 326396577, - "MNT_Vroom": 1736383110, - "MNT_PlayerWings_AtralRaven": 1514774167, - "PP_Blimp": 690882397, - "Guest_GH_WoodenSkeletonKey_Boar_Boss_Grey_01": 678055851, - "Guest_GH_StoneSkeletonKey_Boar_Boss_Grey_01": 571670691, - "Guest_GH_GoldSkeletonKey_Boar_Boss_Grey_01": 961728819, - "MNT_Cloud_Promo_AW_01": 2032670992, - "Guest_EM_Hornet_Burner_A_01": 1881854632, - "Guest_EM_Hornet_Burner_A_02": 1881854636, - "Guest_EM_Hornet_Zapper_A_01": 2058539689, - "Guest_EM_Hornet_Zapper_A_02": 2058539685, - "Guest_EM_Ant_Giant_D_01": 379386121, - "Guest_EM_Ant_Giant_A_02": 1768146677, - "Guest_EM_Ant_Giant_A_01": 1768097525, - "Guest_EM_Ant_Giant_B_01": 379386122, - "Guest_KR_Moth_Priest_G_Achera": 381233569, - "Guest_KR_BeeMonsterF_A": 135146211, - "Guest_KR_BeeMonsterF_A_Weak": 1824123847, - "Guest_KR_Bee_Warrior_A": 1569202664, - "Guest_KR_Bee_Warrior_B": 1569204200, - "Guest_KR_Bee_Warrior_C_BossDrones": 1217189631, - "Guest_KR_Bee_Warrior_D": 1569205224, - "Guest_KR_Bee_Warrior_E": 1569204712, - "Guest_KR_Bee_Warrior_G": 1569205736, - "Guest_KR_Bee_Warrior_G_BossFight": 1055035476, - "Guest_KR_Bee_Warrior_H": 1569207272, - "Guest_KR_Bee_Warrior_I": 1569206760, - "Guest_KR_Bee_Warrior_L": 1569209320, - "Guest_KR_Bee_Warrior_M": 1569208808, - "Guest_KR_DragonBeetle_Monster_A": 1777853782, - "Guest_KR_Hornet_Drone_A": 1161590757, - "Guest_KR_Hornet_Drone_B": 1161607141, - "Guest_KR_Hornet_Drone_C": 1161623525, - "Guest_KR_Hornet_Drone_D": 1161639909, - "Guest_KR_Hornet_Drone_E": 1161656293, - "Guest_KR_Lice_DeepSpawn_A": 761604959, - "Guest_KR_Mantis_HunterF_A": 820917199, - "Guest_KR_Mantis_HunterF_B": 871248847, - "Guest_KR_Mantis_HunterF_C": 854471631, - "Guest_KR_Mantis_HunterF_D": 904803279, - "Guest_KR_Mantis_HunterF_F": 938357711, - "Guest_KR_Mantis_HunterF_F_Driftwood": 2053608437, - "Guest_KR_Mantis_HunterF_G": 921580495, - "Guest_KR_Mantis_HunterF_H": 971912143, - "Guest_KR_Mantis_HunterF_I": 955134927, - "Guest_KR_Mantis_HunterF_I_Zuzka": 935478878, - "Guest_KR_Mantis_HunterF_J": 1005466575, - "Guest_KR_Mantis_HunterF_J_Zelda": 886910558, - "Guest_KR_Mantis_HunterF_K": 988689359, - "Guest_KR_Mantis_HunterF_K_LongShd": 1767574336, - "Guest_KR_Mantis_HunterF_L": 1039021007, - "Guest_KR_Mantis_HunterF_M": 1022243791, - "Guest_KR_Mantis_HunterF_P_Bossfight": 1731428987, - "Guest_KR_Mantis_HunterF_Q": 552481743, - "Guest_KR_Mantis_HunterF_R": 602813391, - "Guest_KR_Mantis_HunterF_S": 586036175, - "Guest_KR_Mantis_HunterF_SecondColumnCpt_A": 1354033994, - "Guest_KR_Mantis_HunterF_T": 636367823, - "Guest_KR_Mantis_HunterF_Tribute": 1946371041, - "Guest_KR_Mantis_HunterF_U": 619590607, - "Guest_KR_Mantis_HunterF_V": 669922255, - "Guest_KR_Mantis_HunterF_W": 653145039, - "Guest_KR_Mantis_HunterF_Y": 686699471, - "Guest_KR_Mantis_HunterF_Z_Officer": 206016474, - "Guest_KR_Mantis_ProphetF_B": 1791139097, - "Guest_KR_Mantis_ProphetF_C": 1254268185, - "Guest_KR_Milipede_Warrior_A": 410726278, - "Guest_KR_Milipede_Warrior_B": 410726282, - "Guest_KR_Milipede_Warrior_C": 410726286, - "Guest_KR_Milipede_Warrior_D": 410726290, - "Guest_KR_Milipede_Warrior_H": 410726306, - "Guest_KR_Milipede_Warrior_J": 410726314, - "Guest_KR_Milipede_Warrior_K": 410726318, - "Guest_KR_Moth_Priest_A": 1421532604, - "Guest_KR_Moth_Priest_B": 1421532092, - "Guest_KR_Moth_Priest_C": 1421531580, - "Guest_KR_Moth_Priest_D": 1421531068, - "Guest_KR_Moth_Priest_D_Drepa": 1483393420, - "Guest_KR_Moth_Priest_E": 1421530556, - "Guest_KR_Moth_Priest_F": 1421530044, - "Guest_KR_Mantis_HunterF_Z": 737031119, - "Guest_KR_Roach_AntLion_A": 1860517987, - "Guest_KR_Roach_AntLion_B_Bossfight": 993284625, - "Guest_KR_Roach_AntLion_C": 1861566563, - "Guest_KR_Roach_Cook_A": 259847495, - "Guest_KR_Roach_Glutton_B": 249524334, - "Guest_KR_Roach_WaterBug_A": 1795473599, - "Guest_KR_Roach_WaterBug_B": 1745141951, - "Guest_MR_Beetle_Scarab_A_01": 1789741503, - "Guest_MR_Beetle_Scarab_A_02": 1789741491, - "Guest_MR_Beetle_Scarab_B_01": 1790265791, - "Guest_ZF-Goliath-R10-Boss-01": 7034074, - "Guest_ZF-Goliath-R10-Boss-02": 7034202, - "Guest_ZF-Goliath-R10-Boss-03": 7034330, - "Guest_ZF-Goliath-R10-Boss": 1603576807, - "Guest_ZF-Goliath-R11-Boss-01": 2140449574, - "Guest_ZF-Goliath-R11-Boss-02": 2140449446, - "Guest_ZF-Goliath-R11-Boss-03": 2140449318, - "Guest_ME1_Ant_Aunt_A": 707251855, - "Guest_ME1_Ant_Aunt_B": 1440231794, - "Guest_CC_Fly_Worker_A_01": 1497784524, - "Guest_CC_Roach_Worker_A_01": 1026321602, - "Guest_CC_Roach_Lieutenant_A_01": 1081690299, - "Guest_CC_Roach_Lieutenant_B_01": 1081690295, - "Guest_CC_Roach_Don_A_01": 547836893, - "Guest_CC_Roach_BBug_A_01": 1021150157, - "Guest_CC_Roach_RoachSteady_A_01": 859409247, - "Guest_Draconian-Caster-Yellow-Boss-R8": 1016221419, - "Guest_Draconian-Zombie-R8-2-1": 1226055265, - "Guest_Draconian-Zombie-R8-2": 1226115297, - "Guest_Draconian-Caster-Green-R7": 2143342719, - "Guest_Draconian-Warrior-Gold-Boss-R8": 1044388248, - "Guest_Draconian-Caster-Gray-R7": 95878769, - "Guest_DS-Boss-MAW": 1676071241, - "Guest_Draconian-Zombie-R8-1": 1226115309, - "Guest_Draconian-Warrior-Purple-Boss-R7": 601813964, - "Guest_Draconian-Caster-Tan-Boss-R7": 1973339532, - "Guest_Draconian-Caster-Blue-R6": 1684210173, - "Guest_Draconian-Caster-Yellow-R8": 2129956646, - "Guest_Draconian-Warrior-Red-R7": 521861944, - "Guest_Draconian-Warrior-Tan-R6": 1726416112, - "Guest_Draconian-Warrior-Purple-R8": 1896270341, - "Guest_Draconian-Caster-Blue-Boss-R7": 401581134, - "Guest_Draconian-Zombie-R8": 384497496, - "Guest_GH2-Draconian-HENCH-R10": 1149202878, - "Guest_GH2-Draconian-BOSS-R10": 2114378473, - "Guest_G14-DM-Draconian_Boss": 490246211, - "Guest_G14-DM-Draconian_Storm": 2035239226, - "Guest_G14-DM-Draconian_Ice": 782200563, - "Guest_G14-DM-Draconian_Malistaire_M": 1904691727, - "Guest_G14-DM-Draconian_Malistaire_S": 1904685583, - "Guest_G14-DM-Draconian_Malistaire_D": 1904700943, - "Guest_G14-DM-Draconian_Malistaire": 1904736751, - "Guest_G14-DM-Draconian_Malistaire_B": 1904702991, - "Guest_G14-DM-Draconian_Malistaire_I": 1904695823, - "Guest_G14-DM-Draconian_Malistaire_L": 1904692751, - "Guest_G14-DM-Draconian_Malistaire_F": 1904698895, - "Guest_Draconian-PW-Gauntlet-Boss": 493080513, - "Guest_CC_Draconian_A_01": 551348115, - "Guest_AZ-Parasaur-Undead-E": 2041242846, - "Guest_AZ-Parasaur-drkPriestF-F": 898239615, - "Guest_EM_Parasaur_DrkPriestF_A_01": 1007099606, - "Guest_EM_Parasaur_DrkPriestF_A_02": 1007099605, - "Guest_AZ-Parasaur-drkPriestF-D": 898501759, - "Guest_AZ-Parasaur-drkPriestF-E": 898370687, - "Guest_AZ-Parasaur-drkPriestF-A": 897846399, - "Guest_AZ-Parasaur-Undead-B": 1716853538, - "Guest_AZ-Parasaur-Undead-A": 106240802, - "Guest_AZ-Parasaur-Undead-G": 967501022, - "Guest_AZ-Parasaur-PriestF-D": 1177445525, - "Guest_AZ-Parasaur-Undead-C": 1179982626, - "Guest_AZ-Parasaur-drkPriestF-C": 897584255, - "Guest_AZ-Parasaur-Undead-SkurkisMinion": 1414766977, - "Guest_AZ-Parasaur-drkPriestF-B": 897715327, - "Guest_AZ-Parasaur-drkPriestF-B-Script": 1414847875, - "Guest_AZ_Parasaur_Priest_A_Boss_01": 890025421, - "Guest_AZ-Parasaur-Undead-D": 1504371934, - "Guest_AZ-Pteranodon-Knight-D": 1127364049, - "Guest_AZ-StoneSkeletonKey-Ixcax-Cursedwing": 699239601, - "Guest_AZ-Pteranodon-Knight-E": 1127363921, - "Guest_AZ-Pteranodon-Knight-F": 1127363793, - "Guest_AZ-Pteranodon-Knight-A-PageEvent": 942589002, - "Guest_AZ-StoneSkeletonKey-Minion-Death": 311645584, - "Guest_AZ-Pteranodon-Knight-A": 1127364433, - "Guest_AZ-Raptor-Wraith-A": 585729247, - "Guest_AZ-Raptor-Undead-D": 893623689, - "Guest_G14-HS-Ifzt": 1914694612, - "Guest_AZ-Raptor-Warrior-A": 855749884, - "Guest_AZ-Raptor-Undead-C": 897293705, - "Guest_AZ-Raptor-Undead-B": 896769417, - "Guest_AZ-Raptor-Undead-F": 894672265, - "Guest_AZ-Raptor-Warrior-F": 872527100, - "Guest_AZ-Raptor-Warrior-H": 973190396, - "Guest_AZ-Tritops-Warrior-I": 1942669769, - "Guest_AZ-Tritops-Undead-H": 1215305911, - "Guest_AZ-Tritops-Undead-E": 1164974263, - "Guest_AZ-Tritops-SpkWarrior-A": 860850257, - "Guest_AZ-Tritops-SpkWarrior-B": 860862545, - "Guest_AZ-Tritops-Undead-F": 1181751479, - "Guest_AZ-Tritops-Warrior-K": 868927945, - "Guest_AZ-Tritops-Undead-G": 1198528695, - "Guest_AZ-Tritops-Mummy-A": 1912444877, - "Guest_AZ-Tritops-Warrior-G": 1278555704, - "Guest_AZ-Tritops-Undead-D": 1148197047, - "Guest_AZ-Tritops-Undead-A": 1097865399, - "Guest_AZ-Tritops-SpkChief-B": 2096319577, - "Guest_AZ-Tritops-Mummy-B": 1910872013, - "Guest_AZ-Tritops-Warrior-H": 1405798857, - "Guest_AZ-Dino-Undead-A": 508678670, - "Guest_AZ-Dino-Undead-B": 508679182, - "Guest_AZ-Dino-Undead-D": 508680206, - "Guest_KR_Dino_Undead_A": 1638800628, - "Guest_KR_Dino_Undead_Minion_A": 892450235, - "MNT_HayRideTruck": 75377404, - "MNT_ShadowSpiderForm": 1439860426, - "Transformation_BG_Draconian_Death": 794598804, - "PP_BabyOrca": 1056061090, - "Transformation_BG_Cyclops_Fire": 638854828, - "Transformation_BG_Fairy_Ice": 874078461, - "PP_SpriteLife": 1824998010, - "PP_Raccoon": 1107326808, - "PP_FireKitten": 593048189, - "MNT_SkeletalDuck": 1306273036, - "PP_VampireSquid": 431023109, - "PP_CottonCandy": 891201813, - "PP_ThreeHeadGoat": 1282096939, - "PP_EyeBot": 260189248, - "MNT_DeathBoat": 1444454568, - "MNT_Lemuria": 908974762, - "MNT_DeathBoat_B": 1444456538, - "MNT_DeathBoat_C": 1444456474, - "MNT_Spooky3": 1667775622, - "MNT_PresentBox": 122082000, - "MNT_Orca": 1726961653, - "Guest_LM_Golem_Steel_A_01": 19551853, - "Guest_LM_Golem_Steel_A_02": 36329069, - "Guest_LM_EyeBot_A_01_Death": 380508535, - "Guest_LM_EyeBot_A_01_Myth": 167840640, - "PP_ThreeHeadGoat_B": 1209286443, - "PP_ThreeHeadGoat_C": 1211383595, - "Guest_KR_Eel_Whirligig_A": 1062268734, - "Guest_KR_Goliath_Behemoth_A": 1231139987, - "Guest_KR_Goliath_Behemoth_C": 1231139995, - "Guest_KR_Goliath_Behemoth_D": 1231139975, - "Guest_KR_Goliath_Behemoth_E": 1231139971, - "Guest_KR_Goliath_Behemoth_H": 1231140023, - "Guest_KR_Goliath_Crusher_C": 1651720060, - "Guest_KR_Goliath_Crusher_D": 2106376324, - "Guest_KR_Goliath_Crusher_F": 1032634500, - "Guest_KR_Goliath_Crusher_G": 495763588, - "Guest_KR_Goliath_Crusher_K": 1651720059, - "Guest_AZ-Goliath-Crusher-A": 1874784966, - "Guest_AZ-Goliath-Crusher-B": 264172230, - "Guest_AZ-Goliath-Crusher-C": 801043142, - "Guest_AZ-Goliath-Crusher-D": 809569594, - "Guest_AZ-Goliath-Crusher-E": 272698682, - "Guest_HG_AKT_Butterfly_Time_A_25": 1788523059, - "Guest_HG_AKT_Butterfly_Time_A_50": 1130017331, - "Guest_HG_AKT_Butterfly_Time_A_75": 1809494579, - "Guest_HG_AKT_Butterfly_Time_A_100": 1113240099, - "Guest_HG_AKT_Butterfly_Time_A_130": 1515893283, - "MNT_DeathBoat_D": 1444456922, - "Guest_KR_RhinoBeetle_Sun_A_Bossfight": 47895417, - "Guest_KR_RhinoBeetle_Star_A": 1947510103, - "Guest_KR_RhinoBeetle_Moon_A": 1751275863, - "Guest_ME1_Clockwork_Marine_A": 1481452452, - "Guest_ME1_Clockwork_Marine_B": 1481452068, - "Guest_CC_GoldSkeletonKey_Lice_DeepSpawn_B": 1306132994, - "Guest_KR_DamdinBazar_A_Bossfight": 1333596311, - "Guest_DS-Minion-MAW2": 356796677, - "Guest_KH-Wyrmling-1": 116330513, - "Guest_KH-Wyrmling-20": 183439385, - "Guest_KH-Wyrmling-40": 317657113, - "Guest_KH-Wyrmling-60": 451874841, - "Guest_KH-Wyrmling-80": 586092569, - "Guest_PL_Polar_Bear_Solider_C": 1785662565, - "Guest_Skeleton-Silver-WCBoss-L01": 17766963, - "Guest_Banshee-Red-Elite-L24_B": 1902069117, - "Transformation_BG_WolfWarrior_Myth": 339098032, - "Transformation_BG_RatThief_Balance": 881728218, - "Transformation_BG_Colossus_Storm": 593527492, - "Transformation_BG_Elf_Life": 347405087, - "Transformation_BG_Minotaur_Ice": 1197752291, - "MNT_TRex_B": 660285500, - "PP_SpriteDark_Ice": 2036248504, - "MNT_RollingBall": 1658139390, - "Guest_LM_TRex_Base_A_03": 1378630657, - "Guest_LM_TRex_Base_A_04": 1378745345, - "Guest_LM_TRex_Base_A_05": 1378728961, - "Guest_LM_TRex_Base_A_01": 1378663425, - "Guest_LM_TRex_Base_A_02": 1378647041, - "Guest_LM_TRex_Cyborg_A_01": 151609741, - "Guest_LM_TRex_Cyborg_A_02": 168386957, - "Guest_LM_TRex_Cyborg_A_03": 185164173, - "Guest_LM_TRex_Cyborg_B_01": 151611277, - "Guest_LM_TRex_Cyborg_D_01": 151612301, - "Guest_LM_TRex_Cyborg_E_01": 151611789, - "Guest_LM_TRex_Cyborg_C_01": 151610765, - "Guest_LM_Draconian_Base_A_01": 1607373112, - "Guest_LM_EyeBot_B_01": 1085543056, - "Guest_LM_Drone_Eye_C_01": 916954037, - "Guest_LM_Drone_Eye_D_01": 1230529608, - "Guest_LM_Drone_Eye_D_02": 1230545992, - "Guest_LM_Drone_Eye_D_04": 1230578760, - "Guest_LM_Drone_Eye_D_03": 1230562376, - "Guest_LM_Drone_Eye_A_01": 916954038, - "Guest_LM_Drone_Eye_A_02": 916937654, - "Guest_LM_Drone_Eye_B_01": 1230529611, - "Guest_LM_Drone_Eye_D_05": 1230595144, - "Guest_LM_Drone_Eye_D_07": 1230627912, - "Guest_LM_Drone_Eye_D_08": 1230644296, - "Guest_LM_Drone_Eye_A_03": 916921270, - "Guest_LM_Drone_Eye_A_04": 916904886, - "Guest_LM_Drone_Eye_C_02": 916937653, - "Guest_LM_EyeBot_B_02": 1061940593, - "Guest_LM_EyeBot_B_03": 1085543055, - "Guest_LM_EyeBot_B_04": 1061940594, - "Guest_LM_Drone_Eye_C_03": 916921269, - "Guest_LM_Robot_Kit10_A_01": 199936400, - "Guest_LM_Colossus_Mander_A_01": 2107529026, - "Guest_LM_Robot_Future_A_01": 998840846, - "Guest_LM_Robot_FutureBIG_A_01": 340408568, - "Guest_LM_Robot_FutureBIG_A_02": 340396280, - "Guest_LM_Robot_FutureBIG_A_03": 340400376, - "Guest_LM_Robot_OldOne_A_01": 779070973, - "Guest_LM_Robot_OldOne_A_02": 1315941885, - "Guest_LM_Millipede_Centi_A_01": 168575797, - "Guest_LM_Millipede_Centi_A_03": 168583989, - "Guest_LM_Millipede_Centi_A_02": 168588085, - "Guest_LM_Millipede_Centi_A_04": 168563509, - "Guest_LM_Moth_Sorcerer_A_01": 228191136, - "Guest_LM_Boar_Barbarian_A_01": 1238634912, - "Guest_LM_Boar_Barbarian_A_02": 1238634528, - "Guest_LM_Boar_Barbarian_A_03": 1238634656, - "Guest_LM_Boar_Barbarian_A_04": 1238635296, - "Guest_LM_Boar_Barbarian_A_05": 1238635424, - "Guest_LM_Boar_Chief_A_01": 357051311, - "Guest_LM_Fungus_Humango_A_01": 1398460044, - "Guest_LM_Fungus_Humango_A_02": 1398460172, - "Guest_LM_Treant_Base_A_01": 1658172241, - "Guest_LM_GiantTree_EvilRoots_A_01": 282225934, - "Guest_LM_PA_GreenMan_A_01": 67705044, - "Guest_LM_Fungus_Humango_B_01": 1348128396, - "Guest_LM_Fungus_Humango_A_03": 1398460300, - "Guest_LM_Fungus_Man_C_01": 1648824156, - "Guest_LM_Fungus_Man_C_02": 1650397020, - "Guest_LM_Rhino_Zombie_A_01": 248513993, - "Guest_LM_Malughast_Base_01": 883820436, - "Guest_LM_Malughast_Base_02": 1420691348, - "Guest_LM_Lemur_HierarchF_H_04": 231562115, - "Guest_LM_Malughast_Base_03": 1957562260, - "Guest_LM_Malughast_Base_05": 1263663212, - "Guest_LM_Malughast_Base_06": 726792300, - "Guest_LM_Malughast_Base_08": 346949523, - "Guest_LM_Malughast_Base_09": 883820435, - "Guest_LM_Malughast_Base_04": 1800534124, - "Guest_LM_Minotaur_Skeleton_A_01": 1865122824, - "Guest_LM_Lemur_Wild_B_03": 1783764037, - "Guest_LM_Lemur_HierarchF_H_01": 231541635, - "Guest_LM_Lemur_HierarchF_H_02": 231553923, - "Guest_LM_Mander_Warrior_A_01": 1651245419, - "Guest_LM_Mander_Warrior_A_02": 1651245291, - "Guest_LM_Mander_Warrior_B_01": 1634468203, - "Guest_LM_Mander_Warrior_B_02": 1634468075, - "Guest_LM_Mander_Warrior_A_03": 1651245163, - "Guest_LM_Mander_Warrior_B_03": 1634467947, - "Guest_LM_Mander_Warrior_A_06": 1651245803, - "Guest_LM_Mander_Warrior_A_05": 1651245931, - "Guest_LM_Mander_Mummy_B_01": 1844111521, - "Guest_LM_Mander_Hero_B_01": 865113284, - "MNT_HolidayHippogriff": 938892112, - "MNT_Sabertooth_Ice": 1870381696, - "PP_FenrisWolf_Bantam": 776647759, - "MNT_JetPack": 1986300552, - "MNT_Scooter_F": 1005560708, - "PP_FossaKitten_A": 431748212, - "PP_Elfvis": 147991405, - "Guest_LM_Chicken_Hero_A_01": 1308728300, - "Guest_LM_Horse_Explorer_A_01": 434405482, - "Guest_LM_Duck_HeroineF_A_01": 133199186, - "Guest_LM_Crane_Hero_A_01": 204272548, - "Guest_LM_Deer_HeroineF_A_01": 1800374959, - "Guest_LM_Deer_Hero_A_01": 223109503, - "Guest_LM_Dog_Hero_A_01": 1434615064, - "PP_YearTiger": 777048708, - "MNT_Barrel": 3576425, - "MNT_Krampus": 404117611, - "PP_ChineseTigerCub": 1256032005, - "PP_Lemur": 565774155, - "PP_Robot": 1089075331, - "PP_Capybara": 451970762, - "Guest_LM_Ghoul_Base_A_01": 1822415945, - "Guest_LM_Lemur_HierarchF_H_03": 231549827, - "Guest_LM_Ghoul_Base_A_02": 1820843081, - "Guest_LM_Ghoul_Base_A_03": 1821367369, - "MNT_SpringSoF2022": 1685679511, - "MNT_WarElephant": 875015497, - "PP_Strix": 514230046, - "MNT_Beachball": 791896033, - "MNT_Blank": 633398131, - "MNT_CardboardFlier": 1646636689, - "MNT_LochMonster": 879660722, - "Transformation_BG_Krok_Death": 1395067182, - "Transformation_BG_Draconian_Fire": 1551581732, - "PP_Scotty": 1708580475, - "Guest_KR_Mice_Knight_A": 480101508, - "PP_Peacock": 1178721112, - "MNT_PoodleMoth": 975420235, - "PP_Hummingbird": 624666906, - "PP_WolfWarrior_Myth": 470737416, - "Guest_HG_UFD_Ghost_QueenF_A_100": 795323059, - "Guest_HG_UFD_Ghost_QueenF_A_50": 728230579, - "Guest_HG_UFD_Pirate_UndeadHighland_A_Balance_150": 201145133, - "Guest_HG_UFD_Pirate_UndeadHighland_A_Balance_100": 201144941, - "Guest_HG_UFD_Pirate_UndeadHighland_A_Balance_50": 201177701, - "Guest_HG_UFD_Pirate_UndeadHighland_A_Star_150": 1329885920, - "Guest_HG_UFD_Pirate_UndeadHighland_A_Star_100": 1304720096, - "Guest_HG_UFD_Pirate_UndeadHighland_A_Star_50": 1305768671, - "Guest_HG_UFD_Pirate_UndeadHighland_A_Shadow_150": 1263689971, - "Guest_HG_UFD_Pirate_UndeadHighland_A_Shadow_100": 1263689977, - "Guest_HG_UFD_Pirate_UndeadHighland_A_Shadow_50": 189949177, - "Guest_HG_UFD_Kelpie_Warrior_A_150": 54296095, - "Guest_HG_UFD_Kelpie_Warrior_A_100": 725384735, - "Guest_HG_UFD_Kelpie_Warrior_A_50": 708607503, - "Guest_HG_UFD_Pirate_UndeadHighland_B_150": 1099317831, - "Guest_HG_UFD_Pirate_UndeadHighland_B_100": 25576008, - "Guest_HG_UFD_Pirate_UndeadHighland_B_50": 159793864, - "Guest_HG_UFD_Ghost_QueenF_A_150": 795716275, - "PP_SpiderMinion": 557357331, - "MNT_Vines_Rainbow": 1587180338, - "MNT_YoungDrake": 1279496198, - "PP_Pet_Coconut": 444388490, - "DragonKI": 1490194214, - "PP_Sharkfish": 601628284, - "PP_MimicCake": 48071878, - "Guest_AQ-Bronze-Eagle": 375279744, - "Guest_Spider-Brown-L26": 2128680185, - "Guest_KR_Spider_Giant_D": 744401035, - "Guest_Wizard-Female-Band-Blue-R8": 1447486557, - "Guest_CC_Human_DSCrusaderF_A_01": 726538068, - "Guest_WC_Scarecrow_A_01": 867491011, - "Guest_WC_Banshee_A_01": 1433786463, - "Guest_WC_LostSoul_A_01": 796936146, - "PP_Fairy_Myth": 1117624344, - "PP_SpriteDark_Myth": 1884257976, - "BG_CyclopsLife_A": 944091673, - "Transformation_BG_NinjaPig_Storm": 2005137181, - "Transformation_BG_Fairy_Myth": 1880704188, - "Transformation_BG_Cyclops_Life": 638936708, - "Guest_AQ-Eagle-Praetorian": 1988013806, - "Guest_KM_BabyCarrot_A_01": 766239512, - "Guest_G14-DM-Gargoyle": 282898047, - "Guest_MR_Durvish_Sergeant_A_Boss_01": 1532609325, - "Guest_Cyclops-RedHelmet-KTBoss-L28": 2072371506, - "Guest_EM_Pig_Singer_A_01": 698597069, - "Guest_EM_Pig_Captain_A": 977505995, - "Guest_EM_Pig_Crewman_A": 465576459, - "PP_ChipmunkConductor": 1089819900, - "PP_LuckyCat": 1109326826, - "MNT_ImpCar": 1736092191, - "MNT_Book": 1547655078, - "MNT_JackoLantern": 649919658, - "MNT_Zheng": 742453108, - "MNT_Train": 413197899, - "MNT_Cerberus": 552686313, - "PP_Coconut": 1122741587, - "Transformation_Statue": 1153168084, - "Transformation_Nullity": 622504394, - "PP_Irk": 1825277392, - "Guest_Wyrmling-Fire-R8-1": 531485009, - "MNT_WolfLowPoly_A": 1947890962, - "MNT_WolfLowPoly_B": 1947825426, - "Transformation_BG_RatThief_Fire": 1169330235, - "Transformation_BG_WolfWarrior_Death": 159966683, - "Transformation_BG_Minotaur_Balance": 657855108, - "Transformation_BG_Draconian_Ice": 1907339814, - "Transformation_BG_Colossus_Myth": 1305894338, - "Transformation_NV_Penguin": 1757096851, - "Transformation_NV_Unicorn": 60447768, - "Transformation_NV_Monkey": 1379873688, - "Transformation_NV_Dog": 1961288968, - "PP_Wolf_Storm": 455227171, - "PP_WoodDuck": 1680912895, - "MNT_RockingHorse": 1205280059, - "MNT_SOF2022_Car": 219868812, - "PP_Buffaloon": 796152873, - "MNT_Steamboat": 1969530127, - "MNT_FelizNavidog": 847046394, - "PP_Mustache": 1571079379, - "Guest_DD-DS01-Skeleton-Pirate-20": 226826848, - "Guest_DD-DS01-Skeleton-Pirate-40": 201661024, - "Guest_DD-DS01-Skeleton-Pirate-60": 210049632, - "Guest_DD-DS01-Skeleton-Pirate-80": 251992672, - "Guest_DD-DS01-Skeleton-Pirate": 1994450336, - "Guest_DD-DS01-Shadow-Minion-Fire": 1074864956, - "Guest_DD-DS01-Shadow-Minion-Ice": 1841681214, - "Guest_DD-DS01-Shadow-Minion-Fire-20": 1074880881, - "Guest_DD-DS01-Shadow-Minion-Fire-40": 1074880945, - "Guest_DD-DS01-Shadow-Minion-Ice-20": 96850220, - "Guest_DD-DS01-Shadow-Minion-Ice-40": 96850218, - "Guest_DD-DS01-Shadow-Minion-Fire-60": 1074881009, - "Guest_DD-DS01-Shadow-Minion-Ice-60": 96850216, - "Guest_DD-DS01-Shadow-Minion-Fire-80": 1074880561, - "Guest_DD-DS01-Shadow-Minion-Ice-80": 96850214, - "Guest_SC-SpectreOfB-1": 1471950935, - "Guest_SC-SpectreOfB-20": 1471942759, - "Guest_SC-SpectreOfB-40": 1471942663, - "Guest_SC-SpectreOfB-60": 1471942695, - "Guest_SC-SpectreOfB-80": 1471942855, - "Guest_KH-Skeleton-Ice-60": 2108358962, - "Guest_KH-Skeleton-Ice-40": 2108391730, - "Guest_KH-Skeleton-Ice-20": 2108293426, - "Guest_KH-Skeleton-Ice-1": 2099953970, - "Guest_KH-Skeleton-Ice-80": 2108195122, - "Guest_KH-Undead-Caster-60": 1662604496, - "Guest_KH-Undead-Caster-40": 1661555920, - "Guest_KH-Undead-Caster-20": 1664701648, - "Guest_KH-Undead-Caster-1": 1931564240, - "Guest_KH-Undead-Caster-80": 1667847376, - "Guest_DD-PA01-DeadBeets": 1664999367, - "Guest_DD-PA01-DeadBeets-20": 1901453253, - "Guest_DD-PA01-DeadBeets-40": 2002116549, - "Guest_DD-PA01-DeadBeets-60": 1968562117, - "Guest_DD-PA01-DeadBeets-80": 2069225413, - "Guest_DD-PA01-Disparagus": 1865816461, - "Guest_DD-PA01-Disparagus-20": 573970895, - "Guest_DD-PA01-Disparagus-40": 499770929, - "Guest_DD-PA01-Disparagus-60": 1573512753, - "Guest_DD-PA01-Disparagus-80": 1647712718, - "Guest_DD-PA01-MeanestFlyTrap": 2001546861, - "Guest_DD-PA01-MeanestFlyTrap-20": 1936326253, - "Guest_DD-PA01-MeanestFlyTrap-40": 1936064109, - "Guest_DD-PA01-MeanestFlyTrap-60": 1935801965, - "Guest_DD-PA01-MeanestFlyTrap-80": 1937636973, - "Guest_HG-MD-MacDeath-20": 182639104, - "Guest_HG-MD-MacDeath-40": 182638080, - "Guest_HG-MD-MacDeath-60": 182637056, - "Guest_HG-MD-MacDeath-80": 182636032, - "Guest_HG-MD-MacDeath-100": 174252032, - "Guest_HG-MD-MacDeath-130": 174202880, - "Guest_HG_Sinbad_Skeleton_25": 494617874, - "Guest_HG_Sinbad_Skeleton_50": 42253050, - "Guest_HG_Sinbad_Skeleton_75": 1115994862, - "Guest_HG_Sinbad_Skeleton_100": 2105232646, - "Guest_HG_Sinbad_Skeleton_130": 2105232650, - "Guest_HG_Sinbad_Skeleton_25_02": 492722834, - "Guest_HG_Sinbad_Skeleton_50_02": 44148090, - "Guest_HG_Sinbad_Skeleton_75_02": 1117889902, - "Guest_HG_Sinbad_Skeleton_100_02": 2044247302, - "Guest_HG_Sinbad_Skeleton_130_02": 2044247306, - "Guest_DD-AV01-WyrmBoss": 1648677986, - "Guest_DD-AV01-WyrmBoss-20": 1926730850, - "Guest_DD-AV01-WyrmBoss-40": 1927779426, - "Guest_DD-AV01-WyrmBoss-60": 1928828002, - "Guest_DD-AV01-WyrmBoss-80": 1921487970, - "Guest_RH-Wyrm-Boss-01": 1027277645, - "Guest_RH-Wyrm-Boss-20": 1027277660, - "Guest_RH-Wyrm-Boss-40": 1027277663, - "Guest_RH-Wyrm-Boss-60": 1027277662, - "Guest_RH-Wyrm-Boss-80": 1027277657, - "Guest_HG_Sinbad_Wyrm_25": 1101443356, - "Guest_HG_Sinbad_Wyrm_50": 1101528860, - "Guest_HG_Sinbad_Wyrm_75": 1101445916, - "Guest_HG_Sinbad_Wyrm_100": 1093138204, - "Guest_HG_Sinbad_Wyrm_130": 1093089052, - "Guest_KH-Treant-1": 2001244331, - "Guest_KH-Treant-60": 1968148651, - "Guest_KH-Treant-40": 1968017579, - "Guest_KH-Treant-20": 1967886507, - "Guest_KH-Treant-80": 1967231147, - "Guest_DD-PA01-ForestGrump": 1969685870, - "Guest_DD-PA01-ForestGrump-20": 714666713, - "Guest_DD-PA01-ForestGrump-40": 714666689, - "Guest_DD-PA01-ForestGrump-60": 714666697, - "Guest_DD-PA01-ForestGrump-80": 714666737, - "Guest_DD-PA01-ForestNymphs": 227087348, - "Guest_DD-PA01-ForestNymphs-20": 227023552, - "Guest_DD-PA01-ForestNymphs-60": 227023040, - "Guest_DD-PA01-ForestNymphs-80": 227024832, - "Guest_SC-Pig-BalanceWizardA-1": 475456968, - "Guest_SC-Pig-BalanceWizardA-20": 477550024, - "Guest_SC-Pig-BalanceWizardA-40": 477541832, - "Guest_SC-Pig-BalanceWizardA-60": 477533640, - "Guest_SC-Pig-BalanceWizardA-80": 477525448, - "Guest_SC-Pig-BalanceWizardB-1": 475456964, - "Guest_SC-Pig-BalanceWizardB-20": 477550020, - "Guest_SC-Pig-BalanceWizardB-40": 477541828, - "Guest_SC-Pig-BalanceWizardB-60": 477533636, - "Guest_SC-Pig-BalanceWizardB-80": 477525444, - "Guest_SC-Pig-BalanceWizardC-1": 475456960, - "Guest_SC-Pig-BalanceWizardC-20": 477550016, - "Guest_SC-Pig-FireWizard-1": 2048176291, - "Guest_SC-Pig-FireWizard-20": 2031399073, - "Guest_SC-Pig-FireWizard-40": 2132062369, - "Guest_SC-Pig-FireWizard-60": 2098507937, - "Guest_SC-Pig-FireWizard-80": 1930735777, - "Guest_SC-Pig-IceWizardF-1": 1178687744, - "Guest_SC-Pig-IceWizardF-20": 1161910526, - "Guest_SC-Pig-IceWizardF-40": 1128356094, - "Guest_SC-Pig-IceWizardF-60": 1094801662, - "Guest_SC-Pig-IceWizardF-80": 1329682686, - "Guest_SC-Pig-MythWizard-1": 2048492725, - "Guest_SC-Pig-MythWizard-20": 2031715511, - "Guest_SC-Pig-MythWizard-40": 2132378807, - "Guest_SC-Pig-MythWizard-60": 2098824375, - "Guest_SC-Pig-MythWizard-80": 1931052215, - "Guest_SC-Pig-StormWizardF-1": 1743849420, - "Guest_SC-Pig-StormWizardF-20": 1743851464, - "Guest_SC-Pig-StormWizardF-40": 1743851488, - "Guest_SC-Pig-StormWizardF-60": 1743851480, - "Guest_SC-Pig-StormWizardF-80": 1743851504, - "Guest_KH-Pig-Bandit-Lord-1": 1080496628, - "Guest_KH-Pig-Bandit-Lord-20": 543625652, - "Guest_KH-Pig-Bandit-Lord-40": 530116172, - "Guest_KH-Pig-Bandit-Lord-60": 1603857996, - "Guest_KH-Pig-Bandit-Lord-80": 1617367475, - "Guest_KH-Pig-Bandit-Ninja-1": 1945100907, - "Guest_KH-Pig-Bandit-Ninja-20": 1945102951, - "Guest_KH-Pig-Bandit-Ninja-40": 1945102975, - "Guest_KH-Pig-Bandit-Ninja-60": 1945102967, - "Guest_KH-Pig-Bandit-Ninja-80": 1945102927, - "Guest_KH-Pig-War-Caster-1": 656859765, - "Guest_KH-Pig-War-Caster-20": 606528119, - "Guest_KH-Pig-War-Caster-40": 572973687, - "Guest_KH-Pig-War-Caster-60": 539419255, - "Guest_KH-Pig-War-Caster-80": 774300279, - "Guest_KH-Pig-War-Warrior-Boss-1": 16342355, - "Guest_KH-Pig-War-Warrior-Boss-20": 2143724205, - "Guest_KH-Pig-War-Warrior-Boss-40": 2118558381, - "Guest_KH-Pig-War-Warrior-Boss-60": 2126946989, - "Guest_KH-Pig-War-Warrior-Boss-80": 2101781165, - "Guest_SC-Pig-BalanceWizardC-40": 477541824, - "Guest_SC-Pig-BalanceWizardC-60": 477533632, - "Guest_SC-Pig-BalanceWizardC-80": 477525440, - "Guest_KH-Helephant-Death-20": 1109389719, - "Guest_KH-Helephant-Death-40": 2111835753, - "Guest_KH-Helephant-Death-60": 1038093929, - "Guest_KH-Helephant-Death-80": 35647896, - "Guest_KH-GreyOgre-Spider-1": 356368404, - "Guest_KH-GreyOgre-Spider-20": 1966981204, - "Guest_KH-GreyOgre-Spider-40": 1254244268, - "Guest_KH-GreyOgre-Spider-60": 180502444, - "Guest_KH-GreyOgre-Spider-80": 893239379, - "Guest_HG_Sinbad_Colossus_25": 1190802829, - "Guest_HG_Sinbad_Colossus_50": 1493551719, - "Guest_HG_Sinbad_Colossus_75": 419809907, - "Guest_HG_Sinbad_Colossus_100": 653933977, - "Guest_HG_Sinbad_Colossus_130": 653933973, - "Guest_NV_Dino_AberrantUndead_A_01": 2035087398, - "Guest_NV_Hellephant_Aberrant_A_01": 989522333, - "Guest_NV_Hellephant_Aberrant_A_02": 989522334, - "Guest_NV_BananaSpider_Base_A_01": 1585810541, - "Guest_NV_BananaSpider_Base_A_02": 1581616237, - "Guest_NV_BananaSpider_Base_A_03": 1577421933, - "Guest_NV_BananaSpider_Base_A_04": 1606782061, - "Guest_NV_BananaSpider_Base_A_05": 1602587757, - "Guest_NV_Wyrm_Aberrant_A_01": 16108415, - "Guest_NV_Monkey_Zombie_A_01": 1854775300, - "Guest_NV_Monkey_Zombie_A_02": 1854775304, - "Guest_NV_Monkey_Zombie_A_03": 1854775308, - "Guest_NV_Monkey_Zombie_A_04": 1854775312, - "MNT_Flag_Monster": 867940056, - "Guest_SKB_WY_DarkBramble_A_30": 2046798767, - "Guest_SKB_WY_DarkBramble_A_50": 2046797999, - "Guest_SKB_WY_DarkBramble_A_100": 2044701359, - "Guest_SKB_WY_DarkBramble_A_150": 2044721839, - "Guest_SKB_GH_Boar_A_30": 1547921275, - "Guest_SKB_WC_SpiritIgnorance_A_50": 1488876986, - "Guest_SKB_WC_SpiritIgnorance_A_100": 2025748410, - "Guest_SKB_WC_SpiritIgnorance_A_150": 2025748413, - "Guest_SKB_DS_Loremaster_A_50": 527751539, - "Guest_SKB_DS_Loremaster_A_100": 527817059, - "Guest_SKB_DS_Loremaster_A_150": 527817699, - "Guest_SKB_CL_Dan_A_50": 637418706, - "Guest_SKB_CL_Dan_A_60": 1510064941, - "Guest_SKB_CL_Dan_A_100": 637410512, - "Guest_SKB_CL_Dan_A_150": 637410432, - "Guest_SKB_AV_Spectre_A_50": 2104631195, - "Guest_SKB_AV_Spectre_A_100": 2102534041, - "Guest_SKB_AV_Spectre_A_150": 2018647961, - "Guest_SKB_MS_Samoorai_A_50": 2029641915, - "Guest_SKB_MS_Samoorai_A_100": 2096750843, - "Guest_SKB_MS_Samoorai_A_150": 587603717, - "Transformation_BG_Krok_StromTemplate": 1317694546, - "PP_ChineseRabbit": 382941643, - "PP_ParadeElf": 1036247808, - "MNT_HeartSwarm": 918199310, - "MNT_SpringSOF2023": 1417178519, - "Transformation_BG_Elf_Death2Template": 1606653101, - "MNT_GummyBunny_D": 775840224, - "Transformation_BG_Krok_Life2Template": 747486212, - "PP_Flame": 959186933, - "PP_YachtRock": 1500927358, - "PP_PirateYachtRock": 1227549100, - "PP_ChickenMonster": 1845706534, - "PP_SnowHoppers_B": 1496460038, - "PP_SnowHoppers_C": 1496457990, - "MNT_Oarfish": 29720265, - "PP_RingTailedCat": 993143427, - "MNT_Fanboat": 19347694, - "MNT_MiniSub": 298697910, - "PP_DumboOctopus": 966435639, - "PP_Glowbug_Balance": 1405529577, - "PP_Glowbug_Death": 405117107, - "PP_Glowbug_Fire": 651698987, - "PP_Glowbug_Ice": 2124926395, - "PP_Glowbug_Life": 601367299, - "PP_Glowbug_Myth": 592978024, - "PP_Glowbug_Storm": 61190446, - "PP_DumboOctopus_B": 968448823, - "PP_DumboOctopus_C": 968383287, - "PP_BananaSpider_01": 1074383522, - "PP_BananaSpider_02": 1080674978, - "PP_BananaSpider_03": 1078577826, - "Guest_HG_NM_BeardDragon_Base_C_01": 82913785, - "Guest_HG_NM_BeardDragon_Base_C_02": 82913786, - "Guest_HG_NM_BeardDragon_Base_C_03": 82913787, - "Guest_HG_NM_Glowbug_Base_C_01": 544959703, - "Guest_HG_NM_Glowbug_Base_C_02": 544955607, - "Guest_HG_NM_Glowbug_Base_C_03": 544951511, - "Guest_HG_NM_Glowbug_Base_C_04": 544947415, - "Guest_HG_NM_Glowbug_Base_C_05": 544943319, - "Guest_HG_NM_Glowbug_Base_C_06": 544939223, - "Guest_HG_NM_Glowbug_Base_C_07": 544935127, - "MNT_BouquetofFlowers": 1511180560, - "PP_Piggle_Rainbow": 91081383, - "MNT_Sabertooth_FlameSaber": 1949516909, - "Guest_HG_NM_BeardDragon_Base_A_01": 83175929, - "Guest_HG_NM_BeardDragon_Base_A_02": 83175930, - "Guest_HG_NM_BeardDragon_Base_A_03": 83175931, - "Guest_HG_NM_BeardDragon_Base_B_01": 83044857, - "Guest_HG_NM_BeardDragon_Base_B_02": 83044858, - "Guest_HG_NM_BeardDragon_Base_B_03": 83044859, - "Guest_HG_NM_Glowbug_Base_B_01": 8088791, - "Guest_HG_NM_Glowbug_Base_B_02": 8084695, - "Guest_HG_NM_Glowbug_Base_B_03": 8080599, - "Guest_HG_NM_Glowbug_Base_B_04": 8076503, - "Guest_HG_NM_Glowbug_Base_B_05": 8072407, - "Guest_HG_NM_Glowbug_Base_B_06": 8068311, - "Guest_HG_NM_Glowbug_Base_B_07": 8064215, - "Guest_HG_NM_Glowbug_Base_A_01": 1618701527, - "Guest_HG_NM_Glowbug_Base_A_02": 1618697431, - "Guest_HG_NM_Glowbug_Base_A_03": 1618693335, - "Guest_HG_NM_Glowbug_Base_A_04": 1618689239, - "Guest_HG_NM_Glowbug_Base_A_05": 1618685143, - "Guest_HG_NM_Glowbug_Base_A_06": 1618681047, - "Guest_HG_NM_Glowbug_Base_A_07": 1618676951, - "MNT_SummerSOF2023": 1636120912, - "PP_Cyclops_Fire": 7821755, - "PP_Death_Elf": 1535744155, - "PP_Newt": 1438123483, - "PP_Echidna": 735439358, - "MNT_Wombat": 580544786, - "Transformation_BG_NinjaPig_Balance": 1799661438, - "Transformation_BG_Cyclops_Ice": 647975824, - "Transformation_BG_Minotaur_Storm": 1005667041, - "Transformation_GR_Parasaur_Priest_Ice": 1101466351, - "Transformation_GR_Parasaur_Priest_Fire": 892193041, - "Transformation_GR_Parasaur_Priest_Storm": 1525882116, - "Transformation_GR_Parasaur_Priest_Balance": 1127637476, - "Guest_GR_AZ_Parasaur_Undead_B_01": 322587487, - "MNT_WitchCat": 1167097888, - "PP_RolyPoly": 578538330, - "PP_Capybara_B": 628131532, - "MNT_OutbackTruck": 1815527801, - "PP_PoodleSailor": 2137704795, - "MNT_PolarianCannon": 2103490826, - "PP_TazmanianDevil": 1773548765, - "Guest_SKB_AZ_Ixcax_A_100": 556560994, - "Guest_SKB_AZ_Ixcax_A_150": 556610146, - "Guest_SKB_AZ_Ixcax_A_50": 564951650, - "MNT_GhoulsShovel": 2035610946, - "PP_CrystalBdayDragon": 1897078804, - "PP_SunGobblerBall": 1522469440, - "PP_Sun_GreenGobbler": 1337690394, - "MNT_2P_AutumnTreant": 1063435527, - "PP_AutumnTreant": 561077291, - "MNT_FlyingMonkey": 490807393, - "PP_BabyPlantMonster": 2076646587, - "MNT_PlantCreature_A": 1802823265, - "Transformation_BG_Fairy_Fire": 2065252898, - "Transformation_BG_Krok_Myth": 277926564, - "Transformation_BG_RatThief_Life": 1167758651, - "Transformation_BG_Elf_Balance": 1628238937, - "Transformation_BG_Colossus_Death": 184392004, - "Transformation_FortressPod": 139738335, - "P_Wombat_POLYMORPH": 1132264953, - "PP_SharkWobbegong": 1994247222, - "PP_ChineseNYDragon": 1126999021, - "PP_JingleBellRock": 1076037919, - "PP_Krok_Mummy_Myth": 438487583, - "PP_Cyclops_Ice": 1476966187, - "MNT_OutbackTruckB": 1813299577, - "MNT_EvilSnowmanBall": 758818712, - "MNT_ThanksgivingGobbler": 1760011910, - "Guest_WL_Ghost_LostSoul_A_01": 1224111704, - "Guest_WL_Kangaroo_Drover_F_01": 2025562931, - "Guest_WL_Spider_WarriorMage_C_01": 1296557888, - "Guest_WL_Spider_WarriorMage_C_02": 1430775616, - "Guest_WL_Spider_WarriorMage_C_03": 1564993344, - "Guest_WL_Spider_WarriorMage_C_04": 1699211072, - "Guest_WL_Spider_WarriorMage_C_05": 1833428800, - "Guest_WL_Spider_WarriorMage_C_06": 1967646528, - "Guest_WL_Spider_WarriorMage_C_07": 2101864256, - "Guest_SKB_KR_Lightbane_A_100": 837930677, - "Guest_SKB_KR_Lightbane_A_160": 837930669, - "Guest_SKB_KR_Lightbane_A_50": 1309555019, - "Transformation_WL_Phantasmanian_DevilTemplate": 384891502, - "MNT_2P_LeaflessTreant": 623083386, - "PP_Minotaur_Ice": 700151737, - "MNT_Scooter_G": 737125252, - "Guest_WL_Frog_Owner_B_01": 767864686, - "MNT_SilentKnight": 646654812, - "Guest_WL_TRex_Base_A_01": 1842562033, - "Guest_WL_TRex_Base_B_01": 304921616, - "PP_Groundhog": 108643243, - "Guest_NV_Unicorn_Guard_C_04": 1845621, - "MNT_EmuPunk": 647315080, - "MNT_HeartBalloon": 798826551, - "PP_ValentineHoppers": 968693964, - "MNT_SpringSOF2024_Heckhound": 453640548, - "Guest_AQ-Centaur-Arion": 1856508139, - "Guest_AQ-Centaur-Artemis": 333294011, - "Guest_AQ-Horse-Sea": 724896200, - "Guest_KR_Horse_Warlord_A_Bossfight": 1302284326, - "Guest_KR_Horse_Warlord_A_BossfightSP": 1300726822, - "Guest_KR_Zebra_Thrall_A": 1250265667, - "Guest_KR_Zebra_Thrall_A_Boss_Minion": 345677011, - "Guest_KR_Zebra_Thrall_A_Gallery": 1520303483, - "Guest_KH-Gray-Horse-40": 1802231403, - "Guest_KH-Gray-Horse-20": 1802231307, - "Guest_G14-BP-Unicorn_Fencer_Boss": 1602044152, - "Guest_Horse-Merc-Brown-L37": 1831175255, - "Guest_Horse-Merc-Tan-L39": 1363854837, - "Guest_Horse-Merc-Tan-L39-1": 2085275127, - "Guest_Horse-Merc-Gray-MSBoss-L39": 1863452041, - "Guest_Horse-Merc-Gray-L39": 2039135564, - "Guest_Horse-Merc-Tan-L38": 1363330549, - "Guest_WC_Horse_Mercenary_Roberto": 891924774, - "Guest_ZF-Nathi-Yellowstripe-R11": 1505157721, - "Guest_ZF-TseTse-Main-R11-Boss": 114927854, - "Guest_ZF-TseTse-Elephant-R11": 894147273, - "Guest_ZF-Zebra-Impi-Raider-R11": 1378242919, - "Guest_ZF-Zebra-Warrior-Male-R10-1": 1791906265, - "Guest_ZF-Zebra-Senzan-Zebu-R10-Boss": 373712721, - "Guest_ZF-Zebra-Shaka-Zebu-R10-Boss": 662142985, - "Guest_ZF-Zebra-Warrior-Female-R10-02": 1507835670, - "Guest_ZF-Zebra-Warrior-Male-R10": 47075786, - "Guest_ZF-Zebra-Warrior-Male-R10-02": 1791906714, - "Guest_ZF-Zebra-Warrior-Male-R10-03": 1791906746, - "Guest_ZF-Zebra-Warrior-Male-R10-05": 1791906682, - "Guest_ZF-Zebra-Warrior-Male-R10-2": 1791906268, - "Guest_ZF_Zebra_Spectral_Guardian-R11": 431970996, - "Guest_CC_Horse_Apoc_A_01": 644668374, - "Guest_CC_Horse_Apoc_B_01": 644668390, - "Guest_CC_Horse_Apoc_C_01": 644668406, - "Guest_CC_Horse_Apoc_D_01": 644668294, - "Guest_CC_Horse_Apoc_D_02": 645192582, - "Guest_CC_Unicorn_CorsairF_B_01": 1378532506, - "Guest_CC_Unicorn_Duelist_B_01": 64891542, - "Guest_CC_Unicorn_Guard_B_01": 1075063242, - "Guest_CC_Unicorn_Guard_B_02": 1075063238, - "Guest_CC_Unicorn_Guard_B_03": 1075063234, - "Guest_NV_Horse_HordeSoldier_A_01": 504396960, - "Guest_NV_Horse_HordeSoldier_A_02": 101743776, - "Guest_NV_Horse_HordeOfficer_A_01": 343600992, - "Guest_NV_Horse_HordeSoldier_A_03": 235961504, - "Guest_NV_Horse_HordeOfficer_A_02": 209383264, - "Guest_NV_Horse_AberrantTungAk_A_01": 952263441, - "Guest_NV_Horse_AberrantTungAk_A_02": 952263537, - "Guest_NV_Horse_TungAk_B_01": 1194718672, - "Guest_NV_Horse_TungAk_B_02": 657847760, - "Guest_NV_Horse_HordeOfficer_B_01": 343596896, - "Guest_NV_Horse_HordeOfficer_B_02": 209379168, - "Guest_NV_Horse_TungAk_A_01": 1194669520, - "Guest_NV_Unicorn_Guard_C_01": 1845601, - "Guest_NV_Unicorn_Guard_A_01": 797025, - "Guest_NV_Unicorn_AberrantGuard_A_01": 739851573, - "Guest_NV_Unicorn_Guard_C_02": 1845613, - "Guest_NV_Unicorn_Guard_C_03": 1845609, - "Guest_NV_Unicorn_AberrantGuard_A_02": 739848501, - "Guest_NV_Unicorn_Guard_A_02": 797037, - "Guest_NV_Unicorn_AberrantGuard_A_03": 739849525, - "Guest_NV_Unicorn_AberrantGuard_A_04": 739846453, - "Guest_NV_Horse_HordeOfficer_A_03": 75165536, - "Guest_NV_Horse_HordeSoldier_A_04": 907050144, - "Guest_NV_Horse_HordeSoldier_A_05": 1041267872, - "Guest_NV_Horse_HordeSoldier_C_01": 504388768, - "Guest_HG_TRAIN_Horse_MustangFencerF_A_Balance_50": 871182987, - "Guest_HG_TRAIN_Horse_MustangFencerF_A_Balance_75": 871176715, - "Guest_HG_TRAIN_Horse_MustangFencerF_A_Life_100": 886489645, - "Guest_HG_TRAIN_Horse_MustangFencerF_A_Balance_25": 871177035, - "Guest_HG_TRAIN_Horse_MustangFencerF_A_Balance_100": 872231819, - "Guest_HG_TRAIN_Horse_MustangFencerF_A_Life_140": 1960231469, - "Guest_HG_TRAIN_Horse_MustangFencerF_B_100": 2089957067, - "Guest_HG_TRAIN_Horse_MustangFencerF_A_Life_25": 1700184589, - "Guest_HG_TRAIN_Horse_MustangFencerF_A_Life_50": 920044045, - "Guest_HG_TRAIN_Horse_MustangFencerF_A_Life_75": 1742127629, - "Guest_HG_TRAIN_Horse_MustangFencerF_A_Balance_140": 872223627, - "Guest_HG_TRAIN_Horse_MustangFencerF_B_50": 2089952970, - "Guest_HG_TRAIN_Horse_MustangFencerF_B_75": 57530654, - "Guest_HG_TRAIN_Horse_MustangFencerF_B_140": 2089957099, - "Guest_HG_TRAIN_Horse_MustangFencerF_B_25": 1131272477, - "Guest_LM_Horse_Explorer_A_01_Hard": 1711837140, - "Guest_WL_Unicorn_Guard_A_01": 1074538935, - "Guest_WL_Unicorn_CorsairF_E_01": 1378532603, - "Guest_WL_Unicorn_Warlord_A_01": 1321310496, - "Guest_KH-Gray-Horse-1": 1802239547, - "Guest_KH-Gray-Horse-60": 1802231371, - "Guest_KH-Gray-Horse-80": 1802231467, - "Transformation_BG_NinjaPig_Ice": 186026527, - "Transformation_BG_Cyclops_Storm": 897316984, - "PP_MinotaurBalance": 1344665951, - "PP_OrthusMoon": 1804503950, - "PP_CoolPineapple": 1149318906, - "PP_TwinkleStars": 766378011, - "PP_Scroll": 1613313091, - "PP_Colossus_Death": 40713075, - "PP_ColossusDeath": 530964029, - "PP_KILiveRock": 1975550570, - "MNT_Outrigger": 1417937299, - "MNT_BookWyrm": 2080129190, - "MNT_RacingSnail": 1996220963, - "MNT_UmbrellaCloud": 145762615, - "PP_PropellerCat": 2094718580, - "MNT_TRex_Shirt": 586746001, - "MNT_Swarm_Bee": 1625228695, - "MNT__CelestialMoon": 968360256, - "Guest_ME_Sinbad_IronSultan_150": 2001676223, - "Guest_ME_Sinbad_Cyclops_150": 1968943689, - "Guest_ME_Sinbad_Skeleton_150": 1031490819, - "Guest_ME_Sinbad_Colossus_150": 1727675806, - "Guest_ME_Sinbad_Skeleton_150_02": 970505475, - "Guest_ME_Sinbad_Wyrm_150": 19314443, - "Guest_ZF-Zebra-Inzinzebu-Bandit-R11": 430262550, - "Guest_ZF-Zebra-Warrior-Male-R10-04": 1791906650, - "PP_TwinkleStars_02": 805304347, - "PP_TwinkleStars_03": 803207195, - "PP_TwinkleStars_01": 799012891, - "Transformation_BodleianHarrow": 609627870, - "Guest_HG_Gryphon_OwlStatue_A_01_L170": 77756046, - "Guest_HG_Gryphon_OwlStatue_A_02_L170": 73561742, - "Guest_HG_Gryphon_OwlStatue_A_01_L100": 77752974, - "Guest_HG_Gryphon_OwlStatue_A_02_L100": 73558670, - "Guest_HG_Gryphon_OwlStatue_A_01_L50": 78277134, - "Guest_HG_Gryphon_OwlStatue_A_02_L50": 74082830, - "MNT_SummerSOF2024_JudgementWings": 1078163967, - "MNT_Pegasus_E": 131704054, - "MNT_PolarisHero": 665176426, - "PP_Duckana": 1128961578, - "PP_QueenBee": 833291695, - "Transformation_BG_Draconian_Balance": 2078940682, - "Transformation_BG_WolfWarrior_Fire": 1762248682, - "Transformation_BG_Minotaur_Death": 309090657, - "PP_WolfWarrior_Fire": 685685256, - "PP_WolfWarrior_Death": 1857202724, - "Guest_ME-GTAV01-WyrmBoss-150": 1482208618, - "Guest_ME_SpectreOfB_L150": 684104791, - "Guest_ME_MD_MacDeath_L150": 1128977615, - "Guest_ME_Pig_BalanceWizardA_L150": 959913724, - "Guest_ME_Pig_BalanceWizardB_L150": 959913712, - "Guest_ME_Pig_BalanceWizardC_L150": 959913716, - "Guest_ME_Pig_FireWizard_L150": 964392255, - "Guest_ME_Pig_IceWizardF_L150": 86941026, - "Guest_ME_Pig_MythWizard_L150": 964051241, - "Guest_ME_Pig_StormWizardF_L150": 2016383602, - "Guest_ME_Clock_Clockworker_L150": 1424569772, - "Guest_ME_Clock_ClockworkSpanner_L150": 1966824609, - "Guest_ME_Clock_Lugs_L150": 370290904, - "Guest_ME_Clock_Lucia_L150": 1857768409, - "MNT_EvilChair": 339577702, - "PP_Cyclops_Storm": 621464512, - "PP_Krokomummy_Life": 462432735, - "Transformation_CL_Rematch_Crustacean": 1686865207, - "Transformation_CL_Rematch_Protector": 1893951532, - "Transformation_CL_Rematch_Angler": 120412196, - "Transformation_CL_Rematch_Piscean": 1624106070, - "Transformation_Zebra_Template": 1900548493, - "Transformation_Zebra2_Template": 325099540, - "Transformation_Zebra3_Template": 325099524, - "Transformation_Zebra4_Template": 325099636, - "MNT_SweetSixteenBirthday": 1009398096, - "MNT_2P_TRex_Bones": 1618543266, - "MNT_SpringBumperCar": 1725007788, - "PP_WinterGoblin": 2025052443, - "PP_OnyxAnubis": 1552575189, - "PP_OttomanCat": 223541582, - "MNT_HolidayYeti": 780983974, - "MNT_IceSled": 979912604, - "MNT_TurtleDoves": 1850191638, - "MNT_KrokChariot": 559783620, - "MNT_Mustang": 1775949401, - "MNT_PumpkinBall": 382849054, - "Transformation_BG_Fairy_Storm": 836920873, - "Transformation_BG_Elf_Myth": 1506493664, - "Transformation_NinjaPig_Life": 816802847, - "Transformation_BG_Krok_Fire": 1060580712, - "Transformation_BG_Colossus_Balance": 1067963041, - "Transformation_BG_NinjaPig_Life": 441460895, - "PP_Penguin_03": 1623028104, - "Transformation_Duck_Librarian_B": 864067551, - "Transformation_Duck_Librarian_A": 859873247, - "Transformation_Duck_Adventurer": 194560769, - "Transformation_Gummy_Bunny_C": 1298087941, - "Transformation_Frog_Horned_A": 837201339, - "Transformation_Glowbug_Storm": 2096380446, - "Transformation_Marshmallow_Critter_A": 1036335317, - "Transformation_Snipe_Base_B": 232132109, - "Transformation_Snowball": 915248481, - "Transformation_Wombat_Base": 333435450, - "Transformation_Human_Malistaire": 1414887773, - "Transformation_Morganthe_E": 1745180054, - "Transformation_Spider_Grandfather": 1131773979, - "Transformation_Khrulhu_Dasein_B": 367878762, - "Transformation_Devourer_Base": 698770016, - "Transformation_Alien_Meteor": 638746168, - "Transformation_Nightmare_Malus": 704212821, - "Transformation_Daemon_Personal": 278266463, - "PP_ValentinesDay": 810003364, - "PP_BabyHippo": 422858138, - "PP_Aardwold": 1592150119, - "PP_Aardwold_C": 1902528613, - "MNT_Cobra": 472847981, - "MNT_Serpopard": 1629558909, - "MNT_Serpopard_B": 1629556867, - "MNT_Serpopard_C": 1629556931, - "PP_Fairy_Fire": 1847789544, - "MNT_Mustang_B": 1448793691, - "PP_FireElfMyth": 1933609060, - "MNT_KT-BoatRide": 1560860110 - } - }, - "m_characterTables": { - "type": "class CharacterElementTable", - "id": 1, - "offset": 80, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1801114527 - }, - "m_defaultTable": { - "type": "class CharacterElementTable", - "id": 2, - "offset": 96, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1709886308 - }, - "m_commonTable": { - "type": "class CommonElementTable", - "id": 3, - "offset": 888, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1709304448 - }, - "m_raceAnimationSoundData": { - "type": "class SharedPointer", - "id": 4, - "offset": 984, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1474423978 - }, - "m_animationEventList": { - "type": "class SharedPointer", - "id": 5, - "offset": 1000, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2858101335 - } - } - }, - "931549106": { - "name": "class MoveBehavior::Controller*", - "bases": [ - "PropertyClass" - ], - "hash": 931549106, - "properties": { - "m_bCollisionDisabled": { - "type": "bool", - "id": 0, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1732895577 - }, - "m_bVehicleMode": { - "type": "bool", - "id": 1, - "offset": 121, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1597295002 - }, - "m_fForwardModifier": { - "type": "float", - "id": 2, - "offset": 124, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1173988321 - }, - "m_fBackModifier": { - "type": "float", - "id": 3, - "offset": 128, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 148042045 - }, - "m_fStrafeModifier": { - "type": "float", - "id": 4, - "offset": 132, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 226084913 - }, - "m_fTurnModifier": { - "type": "float", - "id": 5, - "offset": 136, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2134998805 - }, - "m_fAccelerationModifier": { - "type": "float", - "id": 6, - "offset": 144, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 592902742 - }, - "m_fDecelerationModifier": { - "type": "float", - "id": 7, - "offset": 148, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1770082811 - } - } - }, - "931519170": { - "name": "class ClassProjectPlayerProgressList", - "bases": [ - "PropertyClass" - ], - "hash": 931519170, - "properties": { - "m_playerProgressList": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1898798624 - } - } - }, - "168462857": { - "name": "class CreationNameSelectWindowSWF*", - "bases": [ - "Window", - "PropertyClass" - ], - "hash": 168462857, - "properties": { - "m_sName": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306437263 - }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621225959 - }, - "m_Style": { - "type": "unsigned int", - "id": 2, - "offset": 152, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "SCALE_CHILDREN": 2, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "FOCUS_LOCKED": 64, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152 - } - }, - "m_Flags": { - "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } - }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3105139380 - }, - "m_fTargetAlpha": { - "type": "float", - "id": 5, - "offset": 212, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1809129834 - }, - "m_fDisabledAlpha": { - "type": "float", - "id": 6, - "offset": 216, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1389987675 - }, - "m_fAlpha": { - "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 482130755 - }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3623628394 - }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2102211316 - }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1846695875 - }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3389835433 - }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2547159940 - }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2587533771 - }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3091503757 - } - } - }, - "1316505982": { - "name": "class EquivalentItemBehavior*", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1316505982, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - } - } - }, - "168050228": { - "name": "class SummonCinematicStageTemplate", - "bases": [ - "CinematicStageTemplate", - "PropertyClass" - ], - "hash": 168050228, - "properties": { - "m_name": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1717359772 - }, - "m_duration": { - "type": "float", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 920323453 - }, - "m_actions": { - "type": "class SharedPointer", - "id": 2, - "offset": 112, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1380578687 - }, - "m_stageRelationships": { - "type": "class SharedPointer", - "id": 3, - "offset": 128, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 499983354 - }, - "m_summon": { - "type": "std::string", - "id": 4, - "offset": 152, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2460090138 - }, - "m_cameras": { - "type": "std::string", - "id": 5, - "offset": 184, - "flags": 131079, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 3217341687 - }, - "m_altcameras": { - "type": "std::string", - "id": 6, - "offset": 208, - "flags": 131079, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1882980152 - }, - "m_camRel": { - "type": "enum CameraCutCinematicAction::kCameraRelative", - "id": 7, - "offset": 232, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 919962138, - "enum_options": { - "kSigil": 1, - "kTarget": 2, - "kSource": 3, - "kActor": 4, - "__DEFAULT": "kTarget" - } - }, - "m_sound": { - "type": "std::string", - "id": 8, - "offset": 280, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2307644996 - }, - "m_interpDuration": { - "type": "float", - "id": 9, - "offset": 312, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237711951, - "enum_options": { - "__DEFAULT": "0.0" - } - }, - "m_summonAnim": { - "type": "std::string", - "id": 10, - "offset": 240, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2113551775, - "enum_options": { - "__DEFAULT": "Summon" - } - }, - "m_returnToIdle": { - "type": "bool", - "id": 11, - "offset": 272, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1267817300 - }, - "m_createOrientation": { - "type": "enum CreateActorCinematicAction::kCreateOrientation", - "id": 12, - "offset": 316, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3562324429, - "enum_options": { - "kFaceTarget": 0, - "kFaceSource": 1, - "kSigil": 2, - "kTarget": 3, - "kSource": 4, - "kSigilRight": 5, - "kSigilLeft": 6, - "kFaceTargetTeam": 7, - "__DEFAULT": "kFaceTarget" - } - }, - "m_hidePolymorphFloatyText": { - "type": "bool", - "id": 13, - "offset": 320, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 942475883 - } - } - }, - "1316498384": { - "name": "class ContainerEffectTemplate*", - "bases": [ - "GameEffectTemplate", - "PropertyClass" - ], - "hash": 1316498384, - "properties": { - "m_effectName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2029161513 - }, - "m_effectCategory": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1852673222 - }, - "m_sortOrder": { - "type": "int", - "id": 2, - "offset": 148, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1411218206 - }, - "m_duration": { - "type": "double", - "id": 3, - "offset": 192, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2727932435 - }, - "m_stackingCategories": { - "type": "std::string", - "id": 4, - "offset": 160, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1774497525 - }, - "m_isPersistent": { - "type": "bool", - "id": 5, - "offset": 153, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 923861920 - }, - "m_bIsOnPet": { - "type": "bool", - "id": 6, - "offset": 154, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 522593303 - }, - "m_isPublic": { - "type": "bool", - "id": 7, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1728439822 - }, - "m_visualEffectAddName": { - "type": "std::string", - "id": 8, - "offset": 200, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3382086694 - }, - "m_visualEffectRemoveName": { - "type": "std::string", - "id": 9, - "offset": 232, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1541697323 - }, - "m_onAddFunctorName": { - "type": "std::string", - "id": 10, - "offset": 280, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1561843107 - }, - "m_onRemoveFunctorName": { - "type": "std::string", - "id": 11, - "offset": 312, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2559017864 - }, - "m_stackingRule": { - "type": "enum STACKING_RULE", - "id": 12, - "offset": 144, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 431568889, - "enum_options": { - "STACKING_ALLOWED": 0, - "STACKING_NOSTACK": 1, - "STACKING_REPLACE": 2 - } - }, - "m_startReqs": { - "type": "class SharedPointer", - "id": 13, - "offset": 360, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3147529602 - }, - "m_containerEffects": { - "type": "class SharedPointer", - "id": 14, - "offset": 376, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 957354392 - }, - "m_accompanyID": { - "type": "unsigned int", - "id": 15, - "offset": 392, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1462123093 - } - } - }, - "933049147": { - "name": "class ClientWizStorageBehavior*", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 933049147, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_itemList": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 19, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1983655699 - }, - "m_bankLimit": { - "type": "int", - "id": 2, - "offset": 128, - "flags": 27, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1662903029 - }, - "m_sharedBankLimit": { - "type": "int", - "id": 3, - "offset": 132, - "flags": 27, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 566146380 - } - } - }, - "168463177": { - "name": "class CreationNameSelectWindowSWF", - "bases": [ - "Window", - "PropertyClass" - ], - "hash": 168463177, - "properties": { - "m_sName": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306437263 - }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621225959 - }, - "m_Style": { - "type": "unsigned int", - "id": 2, - "offset": 152, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "SCALE_CHILDREN": 2, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "FOCUS_LOCKED": 64, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152 - } - }, - "m_Flags": { - "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } - }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3105139380 - }, - "m_fTargetAlpha": { - "type": "float", - "id": 5, - "offset": 212, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1809129834 - }, - "m_fDisabledAlpha": { - "type": "float", - "id": 6, - "offset": 216, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1389987675 - }, - "m_fAlpha": { - "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 482130755 - }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3623628394 - }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2102211316 - }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1846695875 - }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3389835433 - }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2547159940 - }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2587533771 - }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3091503757 - } - } - }, - "932181084": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 932181084, - "properties": { - "m_cursorFile": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2831338361 - } - } - }, - "1316546942": { - "name": "class EquivalentItemBehavior", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1316546942, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - } - } - }, - "169948875": { - "name": "class ClientHidePolymorphFloatyTextCinematicAction", - "bases": [ - "HidePolymorphFloatyTextCinematicAction", - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 169948875, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - } - } - }, - "933335769": { - "name": "class RatingInfo*", - "bases": [ - "PropertyClass" - ], - "hash": 933335769, - "properties": { - "m_name": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1717359772 - }, - "m_minScore": { - "type": "int", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1505040890 - }, - "m_maxScore": { - "type": "int", - "id": 2, - "offset": 108, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 154585660 - }, - "m_pvpIcon": { - "type": "std::string", - "id": 3, - "offset": 112, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1503451354 - }, - "m_petIcon": { - "type": "std::string", - "id": 4, - "offset": 144, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2990377005 - } - } - }, - "1322466119": { - "name": "class AdvPvPMatchInfo*", - "bases": [ - "PvPMatchInfo", - "ArenaMatchInfo", - "PropertyClass" - ], - "hash": 1322466119, - "properties": { - "m_matchID": { - "type": "gid", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1757621298 - }, - "m_matchNameID": { - "type": "unsigned int", - "id": 1, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1751361288 - }, - "m_teams": { - "type": "class SharedPointer", - "id": 2, - "offset": 96, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1984373608 - }, - "m_matchName": { - "type": "std::string", - "id": 3, - "offset": 112, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2061215721 - }, - "m_matchTitle": { - "type": "std::string", - "id": 4, - "offset": 144, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2918442218 - }, - "m_matchZoneID": { - "type": "gid", - "id": 5, - "offset": 176, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2026205966 - }, - "m_creatorID": { - "type": "gid", - "id": 6, - "offset": 88, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1051766037 - }, - "m_matchZone": { - "type": "std::string", - "id": 7, - "offset": 184, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2061662244 - }, - "m_startTime": { - "type": "int", - "id": 8, - "offset": 216, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1386968823 - }, - "m_status": { - "type": "int", - "id": 9, - "offset": 220, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 960781182 - }, - "m_friendsOnly": { - "type": "bool", - "id": 10, - "offset": 236, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1420401792 - }, - "m_tournamentNameID": { - "type": "unsigned int", - "id": 11, - "offset": 224, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1799846440 - }, - "m_leagueID": { - "type": "unsigned int", - "id": 12, - "offset": 228, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 692361645 - }, - "m_seasonID": { - "type": "unsigned int", - "id": 13, - "offset": 232, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 535260643 - }, - "m_bUpdateLadder": { - "type": "bool", - "id": 14, - "offset": 248, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1937525956 - }, - "m_maxPointsPerMatch": { - "type": "unsigned int", - "id": 15, - "offset": 240, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1397040900 - }, - "m_estimatedWeight": { - "type": "float", - "id": 16, - "offset": 244, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1374360127 - }, - "m_maxELOError": { - "type": "int", - "id": 17, - "offset": 252, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 318998922 - }, - "m_uniqueMatchID": { - "type": "std::string", - "id": 18, - "offset": 264, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3291026220 - }, - "m_pvpDuelModifiersTemplates": { - "type": "class SharedPointer", - "id": 19, - "offset": 296, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1193155411 - }, - "m_teamSize": { - "type": "unsigned int", - "id": 20, - "offset": 256, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2343388751 - }, - "m_joinQueueRequirements": { - "type": "class SharedPointer", - "id": 21, - "offset": 312, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2746080983 - }, - "m_timeLimitSec": { - "type": "unsigned int", - "id": 22, - "offset": 328, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 312519798 - }, - "m_useHistoricDiego": { - "type": "bool", - "id": 23, - "offset": 352, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1688842509 - }, - "m_ignoredList": { - "type": "gid", - "id": 24, - "offset": 336, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1850924028 - }, - "m_matchTimer": { - "type": "float", - "id": 25, - "offset": 356, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1510935909 - }, - "m_bonusTime": { - "type": "int", - "id": 26, - "offset": 360, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1757496496 - }, - "m_passPenalty": { - "type": "int", - "id": 27, - "offset": 364, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 982951662 - }, - "m_yellowTime": { - "type": "int", - "id": 28, - "offset": 368, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1017028741 - }, - "m_redTime": { - "type": "int", - "id": 29, - "offset": 372, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1909556708 - }, - "m_minTurnTime": { - "type": "int", - "id": 30, - "offset": 376, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 652524886 - }, - "m_effects": { - "type": "class SharedPointer", - "id": 31, - "offset": 384, - "flags": 31, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 804962647 - }, - "m_updateBattlePassPoints": { - "type": "bool", - "id": 32, - "offset": 408, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 713306342 - }, - "m_battlePassWinPoints": { - "type": "int", - "id": 33, - "offset": 412, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1252337240 - }, - "m_battlePassLosePoints": { - "type": "int", - "id": 34, - "offset": 416, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1400839869 - } - } - }, - "169331565": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 169331565, - "properties": { - "m_bracketGID": { - "type": "gid", - "id": 0, - "offset": 72, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1674798632 - }, - "m_creatorActorGID": { - "type": "gid", - "id": 1, - "offset": 80, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1339404213 - }, - "m_creatorBracketGID": { - "type": "gid", - "id": 2, - "offset": 88, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1005482776 - }, - "m_teams": { - "type": "class SharedPointer", - "id": 3, - "offset": 184, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 981867512 - }, - "m_teamSize": { - "type": "unsigned int", - "id": 4, - "offset": 224, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2343388751 - }, - "m_actorList": { - "type": "class SharedPointer", - "id": 5, - "offset": 168, - "flags": 6, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 885135115 - }, - "m_currentRound": { - "type": "unsigned int", - "id": 6, - "offset": 144, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 861487416 - }, - "m_bracketState": { - "type": "unsigned int", - "id": 7, - "offset": 236, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 790945386 - }, - "m_matchNameID": { - "type": "unsigned int", - "id": 8, - "offset": 240, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1751361288 - }, - "m_roundStartsInSeconds": { - "type": "unsigned int", - "id": 9, - "offset": 232, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 346233980 - }, - "m_roundTimeSeconds": { - "type": "unsigned int", - "id": 10, - "offset": 228, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1964849971 - }, - "m_scheduleID": { - "type": "gid", - "id": 11, - "offset": 248, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1439120946 - }, - "m_visibleTimeSeconds": { - "type": "unsigned int", - "id": 12, - "offset": 272, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1245818841 - }, - "m_startTimeSec": { - "type": "int", - "id": 13, - "offset": 268, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1519392434 - }, - "m_registrationOpenTimeSeconds": { - "type": "unsigned int", - "id": 14, - "offset": 276, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2064854776 - }, - "m_tournamentPreparingTimeSeconds": { - "type": "unsigned int", - "id": 15, - "offset": 280, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1121720544 - }, - "m_roundBufferTimeSeconds": { - "type": "unsigned int", - "id": 16, - "offset": 284, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 671173677 - }, - "m_numberOfRounds": { - "type": "int", - "id": 17, - "offset": 148, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2081430579 - }, - "m_overrideTourneyName": { - "type": "std::string", - "id": 18, - "offset": 296, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2611946162 - }, - "m_firstTourneyNameSTKey": { - "type": "std::string", - "id": 19, - "offset": 328, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2731391050 - }, - "m_secondTourneyNameSTKey": { - "type": "std::string", - "id": 20, - "offset": 360, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1747016318 - }, - "m_subBracketIdx": { - "type": "int", - "id": 21, - "offset": 392, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1688562149 - }, - "m_scoreMultiplier": { - "type": "float", - "id": 22, - "offset": 396, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 545011290 - }, - "m_preferredNumberOfTeams": { - "type": "int", - "id": 23, - "offset": 264, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 475550641 - }, - "m_minTeams": { - "type": "int", - "id": 24, - "offset": 256, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1506283288 - }, - "m_maxTeams": { - "type": "int", - "id": 25, - "offset": 260, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 155828058 - }, - "m_specialEvent": { - "type": "bool", - "id": 26, - "offset": 416, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1211693398 - }, - "m_pvpDuelModifiers": { - "type": "std::string", - "id": 27, - "offset": 424, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1796488605 - }, - "m_pvpDuelModifierTemplates": { - "type": "class SharedPointer", - "id": 28, - "offset": 472, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2010454400 - }, - "m_pvpDuelModifiersBlob": { - "type": "std::string", - "id": 29, - "offset": 440, - "flags": 551, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2862516796 - }, - "m_premierPrizesStoreGIDsCSV": { - "type": "std::string", - "id": 30, - "offset": 488, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2521625388 - }, - "m_tournamentStyle": { - "type": "enum BracketInfo::EnumTournamentStyle", - "id": 31, - "offset": 288, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1530265666, - "enum_options": { - "SINGLE_ELIM": 1, - "SWISS": 0 - } - }, - "m_bracketRewardsList": { - "type": "class SharedPointer", - "id": 32, - "offset": 400, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 3842983067 - }, - "m_costPvPTourneyCurrency": { - "type": "int", - "id": 33, - "offset": 216, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1611997610 - }, - "m_subCostPvPTourneyCurrency": { - "type": "int", - "id": 34, - "offset": 220, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1871398932 - }, - "m_joinQueueRequirements": { - "type": "class SharedPointer", - "id": 35, - "offset": 96, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2746080983 - }, - "m_joinQueueRequirementsBlob": { - "type": "std::string", - "id": 36, - "offset": 112, - "flags": 551, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2615447859 - } - } - }, - "1319953468": { - "name": "class ClientStopComplexSoundCinematicAction", - "bases": [ - "StopComplexSoundCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 1319953468, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_sound": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2307644996 - }, - "m_stopAllLoopingSounds": { - "type": "bool", - "id": 2, - "offset": 112, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1944220294 - }, - "m_fadeDuration": { - "type": "float", - "id": 3, - "offset": 116, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1402536557 - } - } - }, - "168649233": { - "name": "class CraftingSlot", - "bases": [ - "CoreObject", - "PropertyClass" - ], - "hash": 168649233, - "properties": { - "m_inactiveBehaviors": { - "type": "class SharedPointer", - "id": 0, - "offset": 224, - "flags": 31, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1850812559 - }, - "m_globalID.m_full": { - "type": "unsigned __int64", - "id": 1, - "offset": 72, - "flags": 16777247, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2312465444 - }, - "m_permID": { - "type": "unsigned __int64", - "id": 2, - "offset": 80, - "flags": 16777247, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1298909658 - }, - "m_location": { - "type": "class Vector3D", - "id": 3, - "offset": 168, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2239683611 - }, - "m_orientation": { - "type": "class Vector3D", - "id": 4, - "offset": 180, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2344058766 - }, - "m_fScale": { - "type": "float", - "id": 5, - "offset": 196, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 503137701 - }, - "m_templateID.m_full": { - "type": "unsigned __int64", - "id": 6, - "offset": 96, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 633907631 - }, - "m_debugName": { - "type": "std::string", - "id": 7, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3553984419 - }, - "m_displayKey": { - "type": "std::string", - "id": 8, - "offset": 136, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3023276954 - }, - "m_zoneTagID": { - "type": "unsigned int", - "id": 9, - "offset": 344, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 965291410 - }, - "m_speedMultiplier": { - "type": "short", - "id": 10, - "offset": 192, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 123130076 - }, - "m_nMobileID": { - "type": "unsigned short", - "id": 11, - "offset": 194, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1054318939 - }, - "m_recipeName": { - "type": "std::string", - "id": 12, - "offset": 392, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3311832788 - }, - "m_timeFinished": { - "type": "int", - "id": 13, - "offset": 388, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2127619571 - } - } - }, - "1318543072": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1318543072, - "properties": { - "m_entryID": { - "type": "gid", - "id": 0, - "offset": 72, - "flags": 16777279, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 525129815 - }, - "m_characterID": { - "type": "gid", - "id": 1, - "offset": 80, - "flags": 33554495, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 210498386 - }, - "m_characterSchool": { - "type": "unsigned int", - "id": 2, - "offset": 88, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1330015234 - }, - "m_nameKeys": { - "type": "unsigned int", - "id": 3, - "offset": 92, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1772225898 - }, - "m_level": { - "type": "int", - "id": 4, - "offset": 96, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 801285362 - }, - "m_wins": { - "type": "int", - "id": 5, - "offset": 100, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 219992347 - }, - "m_score": { - "type": "int", - "id": 6, - "offset": 104, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 809507734 - }, - "m_rank": { - "type": "int", - "id": 7, - "offset": 108, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 219803942 - }, - "m_sequenceID": { - "type": "unsigned int", - "id": 8, - "offset": 112, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1797256403 - }, - "m_visualBlob": { - "type": "std::string", - "id": 9, - "offset": 120, - "flags": 575, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1691722510 - } - } - }, - "938471743": { - "name": "class MorphingException*", - "bases": [ - "PropertyClass" - ], - "hash": 938471743, - "properties": { - "m_secondPetTemplateID": { - "type": "gid", - "id": 0, - "offset": 72, - "flags": 33554439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 89171206 - }, - "m_eggTemplateID": { - "type": "gid", - "id": 1, - "offset": 80, - "flags": 33554439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1463276884 - }, - "m_probability": { - "type": "float", - "id": 2, - "offset": 88, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 396611384 - } - } - }, - "1317096719": { - "name": "class ClientElixirBehavior*", - "bases": [ - "ClientTimedItemBehavior", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1317096719, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_expireTime": { - "type": "unsigned int", - "id": 1, - "offset": 112, - "flags": 59, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1836304873 - }, - "m_statsApplied": { - "type": "bool", - "id": 2, - "offset": 328, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 828970945 - } - } - }, - "168756104": { - "name": "class std::list >", - "bases": [], - "hash": 168756104, - "properties": {} - }, - "935900208": { - "name": "class TreasureShopModifiers*", - "bases": [ - "PropertyClass" - ], - "hash": 935900208, - "properties": { - "m_buyPriceMultiplier": { - "type": "int", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 999902276 - } - } - }, - "1316734244": { - "name": "class SharedPointer", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 1316734244, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - }, - "m_npcProximity": { - "type": "float", - "id": 1, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1306880973 - } - } - }, - "935326015": { - "name": "class MorphingException", - "bases": [ - "PropertyClass" - ], - "hash": 935326015, - "properties": { - "m_secondPetTemplateID": { - "type": "gid", - "id": 0, - "offset": 72, - "flags": 33554439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 89171206 - }, - "m_eggTemplateID": { - "type": "gid", - "id": 1, - "offset": 80, - "flags": 33554439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1463276884 - }, - "m_probability": { - "type": "float", - "id": 2, - "offset": 88, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 396611384 - } - } - }, - "934519833": { - "name": "class InteractiveMusicLoop", - "bases": [ - "PropertyClass" - ], - "hash": 934519833, - "properties": { - "m_loopNumber": { - "type": "int", - "id": 0, - "offset": 72, - "flags": 65543, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1083131517 - }, - "m_composerPackedName": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 65536, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1558621676 - }, - "m_composerGID": { - "type": "gid", - "id": 2, - "offset": 112, - "flags": 65536, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 538993812 - }, - "m_metronomeTempo": { - "type": "float", - "id": 3, - "offset": 120, - "flags": 65543, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 547183282 - }, - "m_firstNodeDelay": { - "type": "float", - "id": 4, - "offset": 124, - "flags": 65543, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 830925908 - }, - "m_musicNoteList": { - "type": "class SharedPointer", - "id": 5, - "offset": 128, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 3278314746 - }, - "m_compressedmusicNoteData": { - "type": "std::string", - "id": 6, - "offset": 144, - "flags": 65536, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2482881473 - } - } - }, - "169752357": { - "name": "class DiegoPlayerStats*", - "bases": [ - "PropertyClass" - ], - "hash": 169752357, - "properties": { - "m_participantID": { - "type": "gid", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1556110724 - }, - "m_teamID": { - "type": "int", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 982118638 - }, - "m_maxHealth": { - "type": "int", - "id": 2, - "offset": 84, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 374902326 - }, - "m_pipsSpent": { - "type": "int", - "id": 3, - "offset": 88, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1360713568 - }, - "m_shadowPipsSpent": { - "type": "int", - "id": 4, - "offset": 92, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1691641958 - }, - "m_damageOutgoing": { - "type": "float", - "id": 5, - "offset": 96, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1733098594 - }, - "m_damageIncoming": { - "type": "float", - "id": 6, - "offset": 100, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 466767466 - }, - "m_healingOutgoing": { - "type": "float", - "id": 7, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1955741979 - }, - "m_healingIncoming": { - "type": "float", - "id": 8, - "offset": 108, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 689410851 - }, - "m_killCount": { - "type": "int", - "id": 9, - "offset": 112, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1162723983 - }, - "m_spellsCast": { - "type": "int", - "id": 10, - "offset": 116, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 681177880 - }, - "m_fizzles": { - "type": "int", - "id": 11, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1628327073 - }, - "m_offenseSpells": { - "type": "int", - "id": 12, - "offset": 124, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 422756275 - }, - "m_offenseNormal": { - "type": "int", - "id": 13, - "offset": 128, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 226361289 - }, - "m_offenseShadow": { - "type": "int", - "id": 14, - "offset": 132, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 413116550 - } - } - }, - "934191054": { - "name": "class ClassProjectPlayerProgress", - "bases": [ - "PropertyClass" - ], - "hash": 934191054, - "properties": { - "m_projectID": { - "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1263221425 - }, - "m_classProjectPlayer": { - "type": "class SharedPointer", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1748630410 - } - } - }, - "1318335534": { - "name": "class WorldWindow*", - "bases": [ - "Window", - "PropertyClass" - ], - "hash": 1318335534, - "properties": { - "m_sName": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306437263 - }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621225959 - }, - "m_Style": { - "type": "unsigned int", - "id": 2, - "offset": 152, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "SCALE_CHILDREN": 2, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "FOCUS_LOCKED": 64, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152 - } - }, - "m_Flags": { - "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } - }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3105139380 - }, - "m_fTargetAlpha": { - "type": "float", - "id": 5, - "offset": 212, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1809129834 - }, - "m_fDisabledAlpha": { - "type": "float", - "id": 6, - "offset": 216, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1389987675 - }, - "m_fAlpha": { - "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 482130755 - }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3623628394 - }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2102211316 - }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1846695875 - }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3389835433 - }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2547159940 - }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2587533771 - }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3091503757 - } - } - }, - "169654053": { - "name": "class DiegoPlayerStats", - "bases": [ - "PropertyClass" - ], - "hash": 169654053, - "properties": { - "m_participantID": { - "type": "gid", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1556110724 - }, - "m_teamID": { - "type": "int", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 982118638 - }, - "m_maxHealth": { - "type": "int", - "id": 2, - "offset": 84, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 374902326 - }, - "m_pipsSpent": { - "type": "int", - "id": 3, - "offset": 88, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1360713568 - }, - "m_shadowPipsSpent": { - "type": "int", - "id": 4, - "offset": 92, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1691641958 - }, - "m_damageOutgoing": { - "type": "float", - "id": 5, - "offset": 96, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1733098594 - }, - "m_damageIncoming": { - "type": "float", - "id": 6, - "offset": 100, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 466767466 - }, - "m_healingOutgoing": { - "type": "float", - "id": 7, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1955741979 - }, - "m_healingIncoming": { - "type": "float", - "id": 8, - "offset": 108, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 689410851 - }, - "m_killCount": { - "type": "int", - "id": 9, - "offset": 112, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1162723983 - }, - "m_spellsCast": { - "type": "int", - "id": 10, - "offset": 116, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 681177880 - }, - "m_fizzles": { - "type": "int", - "id": 11, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1628327073 - }, - "m_offenseSpells": { - "type": "int", - "id": 12, - "offset": 124, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 422756275 - }, - "m_offenseNormal": { - "type": "int", - "id": 13, - "offset": 128, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 226361289 - }, - "m_offenseShadow": { - "type": "int", - "id": 14, - "offset": 132, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 413116550 - } - } - }, - "934191048": { - "name": "class ClassProjectPlayerProgress*", - "bases": [ - "PropertyClass" - ], - "hash": 934191048, - "properties": { - "m_projectID": { - "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1263221425 - }, - "m_classProjectPlayer": { - "type": "class SharedPointer", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1748630410 - } - } - }, - "1317096743": { - "name": "class ClientElixirBehavior", - "bases": [ - "ClientTimedItemBehavior", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1317096743, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_expireTime": { - "type": "unsigned int", - "id": 1, - "offset": 112, - "flags": 59, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1836304873 - }, - "m_statsApplied": { - "type": "bool", - "id": 2, - "offset": 328, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 828970945 - } - } - }, - "169755910": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 169755910, - "properties": { - "m_badgeName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3002948047 - }, - "m_cost": { - "type": "int", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 219280307 - }, - "m_ingredients": { - "type": "class Ingredient*", - "id": 2, - "offset": 112, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1061809494 - } - } - }, - "934196016": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 934196016, - "properties": { - "m_material": { - "type": "class SharedPointer", - "id": 0, - "offset": 88, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1438090150 - }, - "m_size": { - "type": "class Size", - "id": 1, - "offset": 72, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 251247159 - }, - "m_hotSpot": { - "type": "class Point", - "id": 2, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1849465267 - } - } - }, - "1319252864": { - "name": "class SharedPointer", - "bases": [ - "GuildMuseumCuratorBehaviorBase", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1319252864, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - } - } - }, - "1318862747": { - "name": "class MinigameSigilTemplate*", - "bases": [ - "SigilTemplate", - "CoreTemplate", - "PropertyClass" - ], - "hash": 1318862747, - "properties": { - "m_behaviors": { - "type": "class BehaviorTemplate*", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1197808594 - }, - "m_sigilName": { - "type": "std::string", - "id": 1, - "offset": 96, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3177657588 - }, - "m_sigilType": { - "type": "std::string", - "id": 2, - "offset": 136, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3177899445 - }, - "m_entryResults": { - "type": "class ResultList*", - "id": 3, - "offset": 184, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3262956108 - }, - "m_requirements": { - "type": "class RequirementList*", - "id": 4, - "offset": 176, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2840985510 - }, - "m_cancelResults": { - "type": "class ResultList*", - "id": 5, - "offset": 192, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3799257120 - }, - "m_completeResults": { - "type": "class ResultList*", - "id": 6, - "offset": 200, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1964258099 - }, - "m_useState": { - "type": "bool", - "id": 7, - "offset": 216, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 683320865 - }, - "m_stateOverride": { - "type": "std::string", - "id": 8, - "offset": 224, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1949715548 - }, - "m_subCircles": { - "type": "class SigilSubCircle*", - "id": 9, - "offset": 256, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2227135493 - } - } - }, - "170774222": { - "name": "class SharedPointer", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 170774222, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - }, - "m_itemList": { - "type": "unsigned int", - "id": 1, - "offset": 120, - "flags": 33554439, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1892907768 - }, - "m_equipmentTemplate": { - "type": "std::string", - "id": 2, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2464606287 - }, - "m_infoList": { - "type": "class SharedPointer", - "id": 3, - "offset": 136, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1525681909 - } - } - }, - "934519857": { - "name": "class InteractiveMusicLoop*", - "bases": [ - "PropertyClass" - ], - "hash": 934519857, - "properties": { - "m_loopNumber": { - "type": "int", - "id": 0, - "offset": 72, - "flags": 65543, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1083131517 - }, - "m_composerPackedName": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 65536, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1558621676 - }, - "m_composerGID": { - "type": "gid", - "id": 2, - "offset": 112, - "flags": 65536, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 538993812 - }, - "m_metronomeTempo": { - "type": "float", - "id": 3, - "offset": 120, - "flags": 65543, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 547183282 - }, - "m_firstNodeDelay": { - "type": "float", - "id": 4, - "offset": 124, - "flags": 65543, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 830925908 - }, - "m_musicNoteList": { - "type": "class SharedPointer", - "id": 5, - "offset": 128, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 3278314746 - }, - "m_compressedmusicNoteData": { - "type": "std::string", - "id": 6, - "offset": 144, - "flags": 65536, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2482881473 - } - } - }, - "1318861467": { - "name": "class MinigameSigilTemplate", - "bases": [ - "SigilTemplate", - "CoreTemplate", - "PropertyClass" - ], - "hash": 1318861467, - "properties": { - "m_behaviors": { - "type": "class BehaviorTemplate*", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1197808594 - }, - "m_sigilName": { - "type": "std::string", - "id": 1, - "offset": 96, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3177657588 - }, - "m_sigilType": { - "type": "std::string", - "id": 2, - "offset": 136, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3177899445 - }, - "m_entryResults": { - "type": "class ResultList*", - "id": 3, - "offset": 184, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3262956108 - }, - "m_requirements": { - "type": "class RequirementList*", - "id": 4, - "offset": 176, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2840985510 - }, - "m_cancelResults": { - "type": "class ResultList*", - "id": 5, - "offset": 192, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3799257120 - }, - "m_completeResults": { - "type": "class ResultList*", - "id": 6, - "offset": 200, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1964258099 - }, - "m_useState": { - "type": "bool", - "id": 7, - "offset": 216, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 683320865 - }, - "m_stateOverride": { - "type": "std::string", - "id": 8, - "offset": 224, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1949715548 - }, - "m_subCircles": { - "type": "class SigilSubCircle*", - "id": 9, - "offset": 256, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2227135493 - } - } - }, - "171967452": { - "name": "class JewelSocketWrenchElements*", - "bases": [ - "PropertyClass" - ], - "hash": 171967452, - "properties": { - "m_socketWrenchTemplateID": { - "type": "gid", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1148289553 - }, - "m_lowestEquipLevelInclusive": { - "type": "int", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1282442502 - }, - "m_hightestEquipLevelInclusive": { - "type": "int", - "id": 2, - "offset": 84, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1111256264 - } - } - }, - "935798875": { - "name": "class std::list >", - "bases": [], - "hash": 935798875, - "properties": {} - }, - "1319121874": { - "name": "enum ReqNumeric::OPERATOR_TYPE", - "bases": [], - "hash": 1319121874, - "properties": {} - }, - "171205837": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 171205837, - "properties": { - "m_matchTeamGID": { - "type": "gid", - "id": 0, - "offset": 88, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 725139968 - }, - "m_matchTeam": { - "type": "class SharedPointer", - "id": 1, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1737359170 - }, - "m_points": { - "type": "unsigned int", - "id": 2, - "offset": 100, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1049128778 - }, - "m_matchResults": { - "type": "class SharedPointer", - "id": 3, - "offset": 112, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 615114630 - }, - "m_teamID": { - "type": "unsigned int", - "id": 4, - "offset": 128, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1193521089 - }, - "m_ranking": { - "type": "unsigned int", - "id": 5, - "offset": 132, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1977103383 - }, - "m_pendingResult": { - "type": "class SharedPointer", - "id": 6, - "offset": 176, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 599580139 - }, - "m_name": { - "type": "std::string", - "id": 7, - "offset": 144, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1717359772 - }, - "m_pointsAsOfTheLastCompletedRound": { - "type": "unsigned int", - "id": 8, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2267670253 - } - } - }, - "935702429": { - "name": "class PermShopItemData", - "bases": [], - "hash": 935702429, - "properties": { - "m_templateID": { - "type": "gid", - "id": 0, - "offset": 88, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1075328001 - }, - "m_sortName": { - "type": "std::wstring", - "id": 1, - "offset": 352, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2312609697 - }, - "m_crownsCost": { - "type": "int", - "id": 2, - "offset": 336, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1592212719 - }, - "m_goldCost": { - "type": "int", - "id": 3, - "offset": 332, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 444550297 - }, - "m_description": { - "type": "std::wstring", - "id": 4, - "offset": 424, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1445360156 - }, - "m_category": { - "type": "unsigned int", - "id": 5, - "offset": 328, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1395753067 - }, - "m_isBundle": { - "type": "bool", - "id": 6, - "offset": 389, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1180966953 - }, - "m_sortType": { - "type": "int", - "id": 7, - "offset": 384, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1019166596 - }, - "m_itemLimitReached": { - "type": "bool", - "id": 8, - "offset": 261, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1250328557 - }, - "m_islandOwned": { - "type": "bool", - "id": 9, - "offset": 275, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 314755307 - } - } - }, - "171119558": { - "name": "class TemplateManifest*", - "bases": [ - "PropertyClass" - ], - "hash": 171119558, - "properties": { - "m_serializedTemplates": { - "type": "class TemplateLocation", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1656531664 - } - } - }, - "171021254": { - "name": "class TemplateManifest", - "bases": [ - "PropertyClass" - ], - "hash": 171021254, - "properties": { - "m_serializedTemplates": { - "type": "class TemplateLocation", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1656531664 - } - } - }, - "1319586638": { - "name": "class DerbyAddSpeedBoost", - "bases": [ - "DerbyEffect", - "PropertyClass" - ], - "hash": 1319586638, - "properties": { - "m_buffType": { - "type": "enum DerbyTalentBuffType", - "id": 0, - "offset": 92, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1149251982, - "enum_options": { - "Buff": 0, - "Debuff": 1, - "Neither": 2 - } - }, - "m_kTarget": { - "type": "enum DerbyTargetType", - "id": 1, - "offset": 96, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1807803351, - "enum_options": { - "kTargetInFront": 0, - "kTargetBehind": 1, - "kTargetFirst": 2, - "kTargetSelf": 3, - "kTargetAll": 4, - "kTargetLast": 5 - } - }, - "m_nDuration": { - "type": "int", - "id": 2, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1110167982 - }, - "m_effectID": { - "type": "unsigned int", - "id": 3, - "offset": 88, - "flags": 24, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2347630439 - }, - "m_imageFilename": { - "type": "std::string", - "id": 4, - "offset": 112, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2813328063 - }, - "m_iconIndex": { - "type": "unsigned int", - "id": 5, - "offset": 144, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1265133262 - }, - "m_soundOnActivate": { - "type": "std::string", - "id": 6, - "offset": 152, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1956929714 - }, - "m_soundOnTarget": { - "type": "std::string", - "id": 7, - "offset": 184, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3444214056 - }, - "m_targetParticleEffect": { - "type": "std::string", - "id": 8, - "offset": 216, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3048234723 - }, - "m_overheadMessage": { - "type": "std::string", - "id": 9, - "offset": 248, - "flags": 8388639, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1701018190 - }, - "m_requirements": { - "type": "class RequirementList", - "id": 10, - "offset": 280, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2840988582 - }, - "m_nTimesToAdd": { - "type": "int", - "id": 11, - "offset": 376, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1414275638 - } - } - }, - "935894135": { - "name": "class CrownShopButtonNameBehaviorTemplate*", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 935894135, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - }, - "m_buttonDisplayName": { - "type": "std::string", - "id": 1, - "offset": 120, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1916274798 - } - } - }, - "935800733": { - "name": "class PermShopItemData*", - "bases": [], - "hash": 935800733, - "properties": { - "m_templateID": { - "type": "gid", - "id": 0, - "offset": 88, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1075328001 - }, - "m_sortName": { - "type": "std::wstring", - "id": 1, - "offset": 352, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2312609697 - }, - "m_crownsCost": { - "type": "int", - "id": 2, - "offset": 336, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1592212719 - }, - "m_goldCost": { - "type": "int", - "id": 3, - "offset": 332, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 444550297 - }, - "m_description": { - "type": "std::wstring", - "id": 4, - "offset": 424, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1445360156 - }, - "m_category": { - "type": "unsigned int", - "id": 5, - "offset": 328, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1395753067 - }, - "m_isBundle": { - "type": "bool", - "id": 6, - "offset": 389, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1180966953 - }, - "m_sortType": { - "type": "int", - "id": 7, - "offset": 384, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1019166596 - }, - "m_itemLimitReached": { - "type": "bool", - "id": 8, - "offset": 261, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1250328557 - }, - "m_islandOwned": { - "type": "bool", - "id": 9, - "offset": 275, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 314755307 - } - } - }, - "1321510462": { - "name": "class ReqHangingEffectType*", - "bases": [ - "ConditionalSpellEffectRequirement", - "Requirement", - "PropertyClass" - ], - "hash": 1321510462, - "properties": { - "m_applyNOT": { - "type": "bool", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1746328074, - "enum_options": { - "__DEFAULT": 0 - } - }, - "m_operator": { - "type": "enum Requirement::Operator", - "id": 1, - "offset": 76, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2672792317, - "enum_options": { - "ROP_AND": 0, - "ROP_OR": 1, - "__DEFAULT": "ROP_AND" - } - }, - "m_targetType": { - "type": "enum ConditionalSpellEffectRequirement::RequirementTarget", - "id": 2, - "offset": 80, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2547737902, - "enum_options": { - "RT_Caster": 0, - "RT_Target": 1 - } - }, - "m_effectType": { - "type": "enum SpellEffect::kSpellEffects", - "id": 3, - "offset": 88, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2578255295, - "enum_options": { - "SpellEffect::kInvalidSpellEffect": 0, - "SpellEffect::kAbsorbDamage": 37, - "SpellEffect::kAbsorbHeal": 38, - "SpellEffect::kAddCombatTriggerList": 87, - "SpellEffect::kAfterlife": 82, - "SpellEffect::kBacklashDamage": 89, - "SpellEffect::kBounceAll": 36, - "SpellEffect::kBounceBack": 35, - "SpellEffect::kBounceNext": 33, - "SpellEffect::kBouncePrevious": 34, - "SpellEffect::kCloakedCharm": 42, - "SpellEffect::kCloakedWard": 43, - "SpellEffect::kCloakedWardNoRemove": 86, - "SpellEffect::kConfusion": 41, - "SpellEffect::kConfusionBlock": 109, - "SpellEffect::kCritBlock": 47, - "SpellEffect::kCritBoost": 46, - "SpellEffect::kCritBoostSchoolSpecific": 97, - "SpellEffect::kDamage": 1, - "SpellEffect::kDamageNoCrit": 2, - "SpellEffect::kDamageOverTime": 75, - "SpellEffect::kDamagePerTotalPipPower": 84, - "SpellEffect::kDampen": 68, - "SpellEffect::kDeferredDamage": 83, - "SpellEffect::kDelayCast": 49, - "SpellEffect::kDetonateOverTime": 7, - "SpellEffect::kDispel": 40, - "SpellEffect::kDivideDamage": 105, - "SpellEffect::kHeal": 3, - "SpellEffect::kHealOverTime": 76, - "SpellEffect::kInstantKill": 81, - "SpellEffect::kIntercept": 91, - "SpellEffect::kMaxHealthDamage": 112, - "SpellEffect::kMaximumIncomingDamage": 23, - "SpellEffect::kMindControl": 70, - "SpellEffect::kModifyAccuracy": 39, - "SpellEffect::kModifyBacklash": 90, - "SpellEffect::kModifyCardAccuracy": 53, - "SpellEffect::kModifyCardArmorPiercing": 56, - "SpellEffect::kModifyCardCloak": 50, - "SpellEffect::kModifyCardDamage": 51, - "SpellEffect::kModifyCardMutation": 54, - "SpellEffect::kModifyCardRank": 55, - "SpellEffect::kModifyHate": 74, - "SpellEffect::kModifyIncomingArmorPiercing": 26, - "SpellEffect::kModifyIncomingDamage": 22, - "SpellEffect::kModifyIncomingDamageFlat": 119, - "SpellEffect::kModifyIncomingDamageType": 25, - "SpellEffect::kModifyIncomingHeal": 24, - "SpellEffect::kModifyIncomingHealFlat": 118, - "SpellEffect::kModifyIncomingHealOverTime": 138, - "SpellEffect::kModifyOutgoingArmorPiercing": 30, - "SpellEffect::kModifyOutgoingDamage": 27, - "SpellEffect::kModifyOutgoingDamageFlat": 121, - "SpellEffect::kModifyOutgoingDamageType": 29, - "SpellEffect::kModifyOutgoingHeal": 28, - "SpellEffect::kModifyOutgoingHealFlat": 120, - "SpellEffect::kModifyOutgoingStealHealth": 31, - "SpellEffect::kModifyPipRoundRate": 110, - "SpellEffect::kModifyPips": 71, - "SpellEffect::kModifyPowerPipChance": 77, - "SpellEffect::kModifyPowerPips": 72, - "SpellEffect::kModifyRank": 78, - "SpellEffect::kModifyShadowCreatureLevel": 94, - "SpellEffect::kModifyShadowPips": 73, - "SpellEffect::kPipConversion": 45, - "SpellEffect::kPolymorph": 48, - "SpellEffect::kPowerPipConversion": 100, - "SpellEffect::kProtectBeneficial": 103, - "SpellEffect::kProtectCardBeneficial": 101, - "SpellEffect::kProtectCardHarmful": 102, - "SpellEffect::kProtectHarmful": 104, - "SpellEffect::kPushCharm": 8, - "SpellEffect::kPushOverTime": 12, - "SpellEffect::kPushWard": 10, - "SpellEffect::kReduceOverTime": 6, - "SpellEffect::kRemoveAura": 17, - "SpellEffect::kRemoveCharm": 14, - "SpellEffect::kRemoveCombatTriggerList": 88, - "SpellEffect::kRemoveOverTime": 16, - "SpellEffect::kRemoveWard": 15, - "SpellEffect::kReshuffle": 69, - "SpellEffect::kRevealCloak": 80, - "SpellEffect::kSelectShadowCreatureAttackTarget": 95, - "SpellEffect::kShadowCreature": 93, - "SpellEffect::kShadowDecrementTurn": 96, - "SpellEffect::kShadowSelf": 92, - "SpellEffect::kSpawnCreature": 98, - "SpellEffect::kStealCharm": 9, - "SpellEffect::kStealHealth": 5, - "SpellEffect::kStealOverTime": 13, - "SpellEffect::kStealWard": 11, - "SpellEffect::kStun": 67, - "SpellEffect::kStunBlock": 79, - "SpellEffect::kStunResist": 44, - "SpellEffect::kSummonCreature": 65, - "SpellEffect::kSwapCharm": 19, - "SpellEffect::kSwapOverTime": 21, - "SpellEffect::kSwapWard": 20, - "SpellEffect::kTeleportPlayer": 66, - "SpellEffect::kUnPolymorph": 99, - "SpellEffect::kMaxHealthHeal": 129, - "SpellEffect::kHealByWard": 130, - "SpellEffect::kTaunt": 131, - "SpellEffect::kPacify": 132 - } - }, - "m_param_low": { - "type": "int", - "id": 4, - "offset": 92, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1624315676 - }, - "m_param_high": { - "type": "int", - "id": 5, - "offset": 96, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2059828426 - }, - "m_min_count": { - "type": "int", - "id": 6, - "offset": 100, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 741023238 - }, - "m_max_count": { - "type": "int", - "id": 7, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1273157256 - } - } - }, - "171701510": { - "name": "class CinematicDefTemplate*", - "bases": [ - "CoreTemplate", - "PropertyClass" - ], - "hash": 171701510, - "properties": { - "m_behaviors": { - "type": "class BehaviorTemplate*", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1197808594 - }, - "m_nifFile": { - "type": "std::string", - "id": 1, - "offset": 136, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2694762008 - }, - "m_delay": { - "type": "double", - "id": 2, - "offset": 168, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2689597116 - }, - "m_cinematicName": { - "type": "std::string", - "id": 3, - "offset": 96, - "flags": 134217735, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2611527497 - } - } - }, - "1321043843": { - "name": "class SpellEffectParamOverride*", - "bases": [ - "PropertyClass" - ], - "hash": 1321043843, - "properties": { - "m_effectIndex": { - "type": "int", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 350070655 - }, - "m_paramValue": { - "type": "int", - "id": 1, - "offset": 76, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2048907304 - } - } - }, - "171214337": { - "name": "class ClientBGPolymorphSelectBehavior*", - "bases": [ - "BGPolymorphSelectBehavior", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 171214337, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_polyCategoryInactiveToRedTeamPlayers": { - "type": "gid", - "id": 1, - "offset": 112, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 757020210 - }, - "m_polyCategoryUnavailableToRedTeamPlayers": { - "type": "gid", - "id": 2, - "offset": 128, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1382977667 - }, - "m_polyCategoryInactiveToBlueTeamPlayers": { - "type": "gid", - "id": 3, - "offset": 144, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1877669599 - }, - "m_polyCategoryUnavailableToBlueTeamPlayers": { - "type": "gid", - "id": 4, - "offset": 160, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1059429200 - } - } - }, - "935899440": { - "name": "class TreasureShopModifiers", - "bases": [ - "PropertyClass" - ], - "hash": 935899440, - "properties": { - "m_buyPriceMultiplier": { - "type": "int", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 999902276 - } - } - }, - "1320065506": { - "name": "class SharedPointer", - "bases": [ - "MoveController::MoveCommand", - "PropertyClass" - ], - "hash": 1320065506, - "properties": { - "m_fYaw": { - "type": "float", - "id": 0, - "offset": 88, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 309564718 - } - } - }, - "1319976928": { - "name": "class SharedPointer", - "bases": [ - "ConditionalSpellEffectRequirement", - "Requirement", - "PropertyClass" - ], - "hash": 1319976928, - "properties": { - "m_applyNOT": { - "type": "bool", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1746328074, - "enum_options": { - "__DEFAULT": 0 - } - }, - "m_operator": { - "type": "enum Requirement::Operator", - "id": 1, - "offset": 76, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2672792317, - "enum_options": { - "ROP_AND": 0, - "ROP_OR": 1, - "__DEFAULT": "ROP_AND" - } - }, - "m_targetType": { - "type": "enum ConditionalSpellEffectRequirement::RequirementTarget", - "id": 2, - "offset": 80, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2547737902, - "enum_options": { - "RT_Caster": 0, - "RT_Target": 1 - } - } - } - }, - "171701550": { - "name": "class CinematicDefTemplate", - "bases": [ - "CoreTemplate", - "PropertyClass" - ], - "hash": 171701550, - "properties": { - "m_behaviors": { - "type": "class BehaviorTemplate*", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1197808594 - }, - "m_nifFile": { - "type": "std::string", - "id": 1, - "offset": 136, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2694762008 - }, - "m_delay": { - "type": "double", - "id": 2, - "offset": 168, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2689597116 - }, - "m_cinematicName": { - "type": "std::string", - "id": 3, - "offset": 96, - "flags": 134217735, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2611527497 - } - } - }, - "936601892": { - "name": "class ClientRemoveHangingEffectCinematicAction*", - "bases": [ - "RemoveHangingEffectCinematicAction", - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 936601892, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - }, - "m_cloaked": { - "type": "bool", - "id": 2, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 7349510 - } - } - }, - "936417030": { - "name": "class SharedPointer", - "bases": [ - "IdleInterceptCinematicAction", - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 936417030, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - } - } - }, - "935976055": { - "name": "class CrownShopButtonNameBehaviorTemplate", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 935976055, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - }, - "m_buttonDisplayName": { - "type": "std::string", - "id": 1, - "offset": 120, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1916274798 - } - } - }, - "1321510422": { - "name": "class ReqHangingEffectType", - "bases": [ - "ConditionalSpellEffectRequirement", - "Requirement", - "PropertyClass" - ], - "hash": 1321510422, - "properties": { - "m_applyNOT": { - "type": "bool", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1746328074, - "enum_options": { - "__DEFAULT": 0 - } - }, - "m_operator": { - "type": "enum Requirement::Operator", - "id": 1, - "offset": 76, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2672792317, - "enum_options": { - "ROP_AND": 0, - "ROP_OR": 1, - "__DEFAULT": "ROP_AND" - } - }, - "m_targetType": { - "type": "enum ConditionalSpellEffectRequirement::RequirementTarget", - "id": 2, - "offset": 80, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2547737902, - "enum_options": { - "RT_Caster": 0, - "RT_Target": 1 - } - }, - "m_effectType": { - "type": "enum SpellEffect::kSpellEffects", - "id": 3, - "offset": 88, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2578255295, - "enum_options": { - "SpellEffect::kInvalidSpellEffect": 0, - "SpellEffect::kAbsorbDamage": 37, - "SpellEffect::kAbsorbHeal": 38, - "SpellEffect::kAddCombatTriggerList": 87, - "SpellEffect::kAfterlife": 82, - "SpellEffect::kBacklashDamage": 89, - "SpellEffect::kBounceAll": 36, - "SpellEffect::kBounceBack": 35, - "SpellEffect::kBounceNext": 33, - "SpellEffect::kBouncePrevious": 34, - "SpellEffect::kCloakedCharm": 42, - "SpellEffect::kCloakedWard": 43, - "SpellEffect::kCloakedWardNoRemove": 86, - "SpellEffect::kConfusion": 41, - "SpellEffect::kConfusionBlock": 109, - "SpellEffect::kCritBlock": 47, - "SpellEffect::kCritBoost": 46, - "SpellEffect::kCritBoostSchoolSpecific": 97, - "SpellEffect::kDamage": 1, - "SpellEffect::kDamageNoCrit": 2, - "SpellEffect::kDamageOverTime": 75, - "SpellEffect::kDamagePerTotalPipPower": 84, - "SpellEffect::kDampen": 68, - "SpellEffect::kDeferredDamage": 83, - "SpellEffect::kDelayCast": 49, - "SpellEffect::kDetonateOverTime": 7, - "SpellEffect::kDispel": 40, - "SpellEffect::kDivideDamage": 105, - "SpellEffect::kHeal": 3, - "SpellEffect::kHealOverTime": 76, - "SpellEffect::kInstantKill": 81, - "SpellEffect::kIntercept": 91, - "SpellEffect::kMaxHealthDamage": 112, - "SpellEffect::kMaximumIncomingDamage": 23, - "SpellEffect::kMindControl": 70, - "SpellEffect::kModifyAccuracy": 39, - "SpellEffect::kModifyBacklash": 90, - "SpellEffect::kModifyCardAccuracy": 53, - "SpellEffect::kModifyCardArmorPiercing": 56, - "SpellEffect::kModifyCardCloak": 50, - "SpellEffect::kModifyCardDamage": 51, - "SpellEffect::kModifyCardMutation": 54, - "SpellEffect::kModifyCardRank": 55, - "SpellEffect::kModifyHate": 74, - "SpellEffect::kModifyIncomingArmorPiercing": 26, - "SpellEffect::kModifyIncomingDamage": 22, - "SpellEffect::kModifyIncomingDamageFlat": 119, - "SpellEffect::kModifyIncomingDamageType": 25, - "SpellEffect::kModifyIncomingHeal": 24, - "SpellEffect::kModifyIncomingHealFlat": 118, - "SpellEffect::kModifyIncomingHealOverTime": 138, - "SpellEffect::kModifyOutgoingArmorPiercing": 30, - "SpellEffect::kModifyOutgoingDamage": 27, - "SpellEffect::kModifyOutgoingDamageFlat": 121, - "SpellEffect::kModifyOutgoingDamageType": 29, - "SpellEffect::kModifyOutgoingHeal": 28, - "SpellEffect::kModifyOutgoingHealFlat": 120, - "SpellEffect::kModifyOutgoingStealHealth": 31, - "SpellEffect::kModifyPipRoundRate": 110, - "SpellEffect::kModifyPips": 71, - "SpellEffect::kModifyPowerPipChance": 77, - "SpellEffect::kModifyPowerPips": 72, - "SpellEffect::kModifyRank": 78, - "SpellEffect::kModifyShadowCreatureLevel": 94, - "SpellEffect::kModifyShadowPips": 73, - "SpellEffect::kPipConversion": 45, - "SpellEffect::kPolymorph": 48, - "SpellEffect::kPowerPipConversion": 100, - "SpellEffect::kProtectBeneficial": 103, - "SpellEffect::kProtectCardBeneficial": 101, - "SpellEffect::kProtectCardHarmful": 102, - "SpellEffect::kProtectHarmful": 104, - "SpellEffect::kPushCharm": 8, - "SpellEffect::kPushOverTime": 12, - "SpellEffect::kPushWard": 10, - "SpellEffect::kReduceOverTime": 6, - "SpellEffect::kRemoveAura": 17, - "SpellEffect::kRemoveCharm": 14, - "SpellEffect::kRemoveCombatTriggerList": 88, - "SpellEffect::kRemoveOverTime": 16, - "SpellEffect::kRemoveWard": 15, - "SpellEffect::kReshuffle": 69, - "SpellEffect::kRevealCloak": 80, - "SpellEffect::kSelectShadowCreatureAttackTarget": 95, - "SpellEffect::kShadowCreature": 93, - "SpellEffect::kShadowDecrementTurn": 96, - "SpellEffect::kShadowSelf": 92, - "SpellEffect::kSpawnCreature": 98, - "SpellEffect::kStealCharm": 9, - "SpellEffect::kStealHealth": 5, - "SpellEffect::kStealOverTime": 13, - "SpellEffect::kStealWard": 11, - "SpellEffect::kStun": 67, - "SpellEffect::kStunBlock": 79, - "SpellEffect::kStunResist": 44, - "SpellEffect::kSummonCreature": 65, - "SpellEffect::kSwapCharm": 19, - "SpellEffect::kSwapOverTime": 21, - "SpellEffect::kSwapWard": 20, - "SpellEffect::kTeleportPlayer": 66, - "SpellEffect::kUnPolymorph": 99, - "SpellEffect::kMaxHealthHeal": 129, - "SpellEffect::kHealByWard": 130, - "SpellEffect::kTaunt": 131, - "SpellEffect::kPacify": 132 - } - }, - "m_param_low": { - "type": "int", - "id": 4, - "offset": 92, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1624315676 - }, - "m_param_high": { - "type": "int", - "id": 5, - "offset": 96, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2059828426 - }, - "m_min_count": { - "type": "int", - "id": 6, - "offset": 100, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 741023238 - }, - "m_max_count": { - "type": "int", - "id": 7, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1273157256 - } - } - }, - "173039290": { - "name": "class SharedPointer", - "bases": [ - "PvPStatueBehavior", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 173039290, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_targetLeague": { - "type": "std::string", - "id": 1, - "offset": 112, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3312829397 - }, - "m_rank": { - "type": "int", - "id": 2, - "offset": 144, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 219803942 - }, - "m_refreshRateSec": { - "type": "int", - "id": 3, - "offset": 148, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 418402320 - }, - "m_groundOffset": { - "type": "float", - "id": 4, - "offset": 152, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 684524077 - }, - "m_yaw": { - "type": "float", - "id": 5, - "offset": 156, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 357256328 - }, - "m_showNametag": { - "type": "bool", - "id": 6, - "offset": 160, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 584664753 - }, - "m_showInGrace": { - "type": "bool", - "id": 7, - "offset": 161, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1033917517 - }, - "m_showActive": { - "type": "bool", - "id": 8, - "offset": 162, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 685431312 - }, - "m_scale": { - "type": "float", - "id": 9, - "offset": 164, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 899693439 - }, - "m_alpha": { - "type": "float", - "id": 10, - "offset": 168, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 878686493 - }, - "m_animDelaySec": { - "type": "float", - "id": 11, - "offset": 172, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2131058854 - }, - "m_animChance": { - "type": "float", - "id": 12, - "offset": 176, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 434823806 - }, - "m_animList": { - "type": "std::string", - "id": 13, - "offset": 184, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2531745852 - }, - "m_leagueID": { - "type": "unsigned int", - "id": 14, - "offset": 200, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 692361645 - }, - "m_seasonID": { - "type": "unsigned int", - "id": 15, - "offset": 204, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 535260643 - }, - "m_startTime": { - "type": "unsigned int", - "id": 16, - "offset": 208, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1598371274 - }, - "m_visualBlob": { - "type": "std::string", - "id": 17, - "offset": 216, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1691722510 - } - } - }, - "172062758": { - "name": "class TipDisplayData*", - "bases": [], - "hash": 172062758, - "properties": {} - }, - "1322428267": { - "name": "class HousingTeleporterTargeting*", - "bases": [ - "PropertyClass" - ], - "hash": 1322428267, - "properties": {} - }, - "936682415": { - "name": "class QuestEffect*", - "bases": [ - "NamedEffect", - "GameEffectBase", - "PropertyClass" - ], - "hash": 936682415, - "properties": { - "m_currentTickCount": { - "type": "double", - "id": 0, - "offset": 80, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2533274692 - }, - "m_effectNameID": { - "type": "unsigned int", - "id": 1, - "offset": 96, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1204067144 - }, - "m_bIsOnPet": { - "type": "bool", - "id": 2, - "offset": 73, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 522593303 - }, - "m_originatorID": { - "type": "gid", - "id": 3, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1131810019 - }, - "m_itemSlotID": { - "type": "unsigned int", - "id": 4, - "offset": 112, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1895747595 - }, - "m_internalID": { - "type": "int", - "id": 5, - "offset": 92, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1643137924 - }, - "m_endTime": { - "type": "unsigned int", - "id": 6, - "offset": 88, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 716479635 - }, - "m_overrideName": { - "type": "std::string", - "id": 7, - "offset": 128, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1990707228 - }, - "m_startReqs": { - "type": "class SharedPointer", - "id": 8, - "offset": 168, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3147529602 - }, - "m_startResults": { - "type": "class SharedPointer", - "id": 9, - "offset": 184, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2094517692 - }, - "m_endResults": { - "type": "class SharedPointer", - "id": 10, - "offset": 200, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2118364133 - } - } - }, - "1322428257": { - "name": "class HousingTeleporterTargeting", - "bases": [ - "PropertyClass" - ], - "hash": 1322428257, - "properties": {} - }, - "173074331": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 173074331, - "properties": { - "m_spellName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2688485244 - }, - "m_spellID": { - "type": "unsigned int", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1697483258 - }, - "m_totalShardsToUpgrade": { - "type": "int", - "id": 2, - "offset": 108, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 596508110 - } - } - }, - "936602532": { - "name": "class ClientRemoveHangingEffectCinematicAction", - "bases": [ - "RemoveHangingEffectCinematicAction", - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 936602532, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - }, - "m_cloaked": { - "type": "bool", - "id": 2, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 7349510 - } - } - }, - "1322165141": { - "name": "class SharedPointer", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 1322165141, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - }, - "m_FXOverrideBehaviorInfo": { - "type": "class FXOverrideBehaviorInfo", - "id": 1, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1746411198 - } - } - }, - "192455195": { - "name": "class SharedPointer", - "bases": [], - "hash": 192455195, - "properties": {} - }, - "936733999": { - "name": "class SharedPointer", - "bases": [ - "BurnInterceptCinematicAction", - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 936733999, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - } - } - }, - "184359906": { - "name": "class NumCategoryInInventory", - "bases": [ - "PropertyClass" - ], - "hash": 184359906, - "properties": { - "m_sCategory": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1996239916 - }, - "m_numCategoryInInventory": { - "type": "int", - "id": 1, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 639845069 - } - } - }, - "1322463047": { - "name": "class AdvPvPMatchInfo", - "bases": [ - "PvPMatchInfo", - "ArenaMatchInfo", - "PropertyClass" - ], - "hash": 1322463047, - "properties": { - "m_matchID": { - "type": "gid", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1757621298 - }, - "m_matchNameID": { - "type": "unsigned int", - "id": 1, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1751361288 - }, - "m_teams": { - "type": "class SharedPointer", - "id": 2, - "offset": 96, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1984373608 - }, - "m_matchName": { - "type": "std::string", - "id": 3, - "offset": 112, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2061215721 - }, - "m_matchTitle": { - "type": "std::string", - "id": 4, - "offset": 144, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2918442218 - }, - "m_matchZoneID": { - "type": "gid", - "id": 5, - "offset": 176, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2026205966 - }, - "m_creatorID": { - "type": "gid", - "id": 6, - "offset": 88, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1051766037 - }, - "m_matchZone": { - "type": "std::string", - "id": 7, - "offset": 184, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2061662244 - }, - "m_startTime": { - "type": "int", - "id": 8, - "offset": 216, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1386968823 - }, - "m_status": { - "type": "int", - "id": 9, - "offset": 220, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 960781182 - }, - "m_friendsOnly": { - "type": "bool", - "id": 10, - "offset": 236, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1420401792 - }, - "m_tournamentNameID": { - "type": "unsigned int", - "id": 11, - "offset": 224, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1799846440 - }, - "m_leagueID": { - "type": "unsigned int", - "id": 12, - "offset": 228, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 692361645 - }, - "m_seasonID": { - "type": "unsigned int", - "id": 13, - "offset": 232, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 535260643 - }, - "m_bUpdateLadder": { - "type": "bool", - "id": 14, - "offset": 248, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1937525956 - }, - "m_maxPointsPerMatch": { - "type": "unsigned int", - "id": 15, - "offset": 240, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1397040900 - }, - "m_estimatedWeight": { - "type": "float", - "id": 16, - "offset": 244, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1374360127 - }, - "m_maxELOError": { - "type": "int", - "id": 17, - "offset": 252, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 318998922 - }, - "m_uniqueMatchID": { - "type": "std::string", - "id": 18, - "offset": 264, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3291026220 - }, - "m_pvpDuelModifiersTemplates": { - "type": "class SharedPointer", - "id": 19, - "offset": 296, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1193155411 - }, - "m_teamSize": { - "type": "unsigned int", - "id": 20, - "offset": 256, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2343388751 - }, - "m_joinQueueRequirements": { - "type": "class SharedPointer", - "id": 21, - "offset": 312, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2746080983 - }, - "m_timeLimitSec": { - "type": "unsigned int", - "id": 22, - "offset": 328, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 312519798 - }, - "m_useHistoricDiego": { - "type": "bool", - "id": 23, - "offset": 352, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1688842509 - }, - "m_ignoredList": { - "type": "gid", - "id": 24, - "offset": 336, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1850924028 - }, - "m_matchTimer": { - "type": "float", - "id": 25, - "offset": 356, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1510935909 - }, - "m_bonusTime": { - "type": "int", - "id": 26, - "offset": 360, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1757496496 - }, - "m_passPenalty": { - "type": "int", - "id": 27, - "offset": 364, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 982951662 - }, - "m_yellowTime": { - "type": "int", - "id": 28, - "offset": 368, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1017028741 - }, - "m_redTime": { - "type": "int", - "id": 29, - "offset": 372, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1909556708 - }, - "m_minTurnTime": { - "type": "int", - "id": 30, - "offset": 376, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 652524886 - }, - "m_effects": { - "type": "class SharedPointer", - "id": 31, - "offset": 384, - "flags": 31, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 804962647 - }, - "m_updateBattlePassPoints": { - "type": "bool", - "id": 32, - "offset": 408, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 713306342 - }, - "m_battlePassWinPoints": { - "type": "int", - "id": 33, - "offset": 412, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1252337240 - }, - "m_battlePassLosePoints": { - "type": "int", - "id": 34, - "offset": 416, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1400839869 - } - } - }, - "178277919": { - "name": "class PotionButton", - "bases": [ - "ControlButton", - "Window", - "PropertyClass" - ], - "hash": 178277919, - "properties": { - "m_sName": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306437263 - }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621225959 - }, - "m_Style": { - "type": "unsigned int", - "id": 2, - "offset": 152, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152, - "SHOW_HOTKEY": 16777216, - "EFFECT_SCALE": 67108864, - "LOCK_ICON_SIZE": 33554432, - "LEFT_TEXT": 536870912, - "NO_FIT_TEXT": 1073741824 - } - }, - "m_Flags": { - "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } - }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3105139380 - }, - "m_fTargetAlpha": { - "type": "float", - "id": 5, - "offset": 212, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1809129834 - }, - "m_fDisabledAlpha": { - "type": "float", - "id": 6, - "offset": 216, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1389987675 - }, - "m_fAlpha": { - "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 482130755 - }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3623628394 - }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2102211316 - }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1846695875 - }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3389835433 - }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2547159940 - }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2587533771 - }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3091503757 - }, - "m_bToggle": { - "type": "bool", - "id": 16, - "offset": 608, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2071810903 - }, - "m_bButtonDown": { - "type": "bool", - "id": 17, - "offset": 609, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 840041705 - }, - "m_sLabel": { - "type": "std::wstring", - "id": 18, - "offset": 616, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2207009163 - }, - "m_labelOffset": { - "type": "class Rect", - "id": 19, - "offset": 832, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1990646723 - }, - "m_pButton": { - "type": "class SharedPointer", - "id": 20, - "offset": 656, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1543855875 - }, - "m_HotKey": { - "type": "unsigned int", - "id": 21, - "offset": 672, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1631553409 - }, - "m_Color": { - "type": "class Color", - "id": 22, - "offset": 676, - "flags": 262279, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1753714077 - }, - "m_bCursorOver": { - "type": "bool", - "id": 23, - "offset": 689, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 283981103 - }, - "m_bAbortWhenCursorNotOver": { - "type": "bool", - "id": 24, - "offset": 706, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 325405258 - }, - "m_bHotKeyDown": { - "type": "bool", - "id": 25, - "offset": 680, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 616989185 - }, - "m_fTime": { - "type": "float", - "id": 26, - "offset": 684, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 883746156 - }, - "m_bGreyed": { - "type": "bool", - "id": 27, - "offset": 688, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1566556053 - }, - "m_fMaxScale": { - "type": "float", - "id": 28, - "offset": 692, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2070186635 - }, - "m_fScaleSpeed": { - "type": "float", - "id": 29, - "offset": 696, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1457135702 - }, - "m_bUseDropShadow": { - "type": "bool", - "id": 30, - "offset": 704, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 93063037 - }, - "m_bUseOutline": { - "type": "bool", - "id": 31, - "offset": 705, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 744292994 - }, - "m_pGreyedState": { - "type": "class SharedPointer", - "id": 32, - "offset": 768, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2703352263 - }, - "m_pNormalState": { - "type": "class SharedPointer", - "id": 33, - "offset": 752, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1887909808 - }, - "m_pHighlightedState": { - "type": "class SharedPointer", - "id": 34, - "offset": 784, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2200177608 - }, - "m_pSelectedState": { - "type": "class SharedPointer", - "id": 35, - "offset": 800, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2266776432 - }, - "m_pDepressedState": { - "type": "class SharedPointer", - "id": 36, - "offset": 816, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1878185798 - } - } - }, - "937907618": { - "name": "class BattlegroundGroupStatus", - "bases": [ - "PropertyClass" - ], - "hash": 937907618, - "properties": { - "m_groupID": { - "type": "gid", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1111292082 - }, - "m_members": { - "type": "class SharedPointer", - "id": 1, - "offset": 80, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2190987938 - } - } - }, - "176631800": { - "name": "class BeneficialProximityBehaviorTemplate", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 176631800, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - }, - "m_radius": { - "type": "float", - "id": 1, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 989410271 - }, - "m_duration": { - "type": "float", - "id": 2, - "offset": 124, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 920323453 - }, - "m_benefitType": { - "type": "enum BenefitType", - "id": 3, - "offset": 128, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3823810885, - "enum_options": { - "BT_Heal": 0, - "BT_Mana": 1, - "BT_FishingLuck": 2, - "BT_HealMana": 3 - } - }, - "m_value": { - "type": "float", - "id": 4, - "offset": 132, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 903191604 - } - } - }, - "175844314": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 175844314, - "properties": { - "m_effectType": { - "type": "enum SpellEffect::kSpellEffects", - "id": 0, - "offset": 72, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2578255295, - "enum_options": { - "kInvalidSpellEffect": 0, - "kDamage": 1, - "kDamageNoCrit": 2, - "kHeal": 3, - "kHealPercent": 4, - "kSetHealPercent": 113, - "kStealHealth": 5, - "kReduceOverTime": 6, - "kDetonateOverTime": 7, - "kPushCharm": 8, - "kStealCharm": 9, - "kPushWard": 10, - "kStealWard": 11, - "kPushOverTime": 12, - "kStealOverTime": 13, - "kRemoveCharm": 14, - "kRemoveWard": 15, - "kRemoveOverTime": 16, - "kRemoveAura": 17, - "kSwapAll": 18, - "kSwapCharm": 19, - "kSwapWard": 20, - "kSwapOverTime": 21, - "kModifyIncomingDamage": 22, - "kModifyIncomingDamageFlat": 119, - "kMaximumIncomingDamage": 23, - "kModifyIncomingHeal": 24, - "kModifyIncomingHealFlat": 118, - "kModifyIncomingDamageType": 25, - "kModifyIncomingArmorPiercing": 26, - "kModifyOutgoingDamage": 27, - "kModifyOutgoingDamageFlat": 121, - "kModifyOutgoingHeal": 28, - "kModifyOutgoingHealFlat": 120, - "kModifyOutgoingDamageType": 29, - "kModifyOutgoingArmorPiercing": 30, - "kModifyOutgoingStealHealth": 31, - "kModifyIncomingStealHealth": 32, - "kBounceNext": 33, - "kBouncePrevious": 34, - "kBounceBack": 35, - "kBounceAll": 36, - "kAbsorbDamage": 37, - "kAbsorbHeal": 38, - "kModifyAccuracy": 39, - "kDispel": 40, - "kConfusion": 41, - "kCloakedCharm": 42, - "kCloakedWard": 43, - "kStunResist": 44, - "kClue": 111, - "kPipConversion": 45, - "kCritBoost": 46, - "kCritBlock": 47, - "kPolymorph": 48, - "kDelayCast": 49, - "kModifyCardCloak": 50, - "kModifyCardDamage": 51, - "kModifyCardAccuracy": 53, - "kModifyCardMutation": 54, - "kModifyCardRank": 55, - "kModifyCardArmorPiercing": 56, - "kSummonCreature": 65, - "kTeleportPlayer": 66, - "kStun": 67, - "kDampen": 68, - "kReshuffle": 69, - "kMindControl": 70, - "kModifyPips": 71, - "kModifyPowerPips": 72, - "kModifyShadowPips": 73, - "kModifyHate": 74, - "kDamageOverTime": 75, - "kHealOverTime": 76, - "kModifyPowerPipChance": 77, - "kModifyRank": 78, - "kStunBlock": 79, - "kRevealCloak": 80, - "kInstantKill": 81, - "kAfterlife": 82, - "kDeferredDamage": 83, - "kDamagePerTotalPipPower": 84, - "kModifyCardHeal": 52, - "kModifyCardCharm": 57, - "kModifyCardWard": 58, - "kModifyCardOutgoingDamage": 59, - "kModifyCardOutgoingAccuracy": 60, - "kModifyCardOutgoingHeal": 61, - "kModifyCardOutgoingArmorPiercing": 62, - "kModifyCardIncomingDamage": 63, - "kModifyCardAbsorbDamage": 64, - "kCloakedWardNoRemove": 86, - "kAddCombatTriggerList": 87, - "kRemoveCombatTriggerList": 88, - "kBacklashDamage": 89, - "kModifyBacklash": 90, - "kIntercept": 91, - "kShadowSelf": 92, - "kShadowCreature": 93, - "kModifyShadowCreatureLevel": 94, - "kSelectShadowCreatureAttackTarget": 95, - "kShadowDecrementTurn": 96, - "kCritBoostSchoolSpecific": 97, - "kSpawnCreature": 98, - "kUnPolymorph": 99, - "kPowerPipConversion": 100, - "kProtectCardBeneficial": 101, - "kProtectCardHarmful": 102, - "kProtectBeneficial": 103, - "kProtectHarmful": 104, - "kDivideDamage": 105, - "kCollectEssence": 106, - "kKillCreature": 107, - "kDispelBlock": 108, - "kConfusionBlock": 109, - "kModifyPipRoundRate": 110, - "kMaxHealthDamage": 112, - "kUntargetable": 114, - "kMakeTargetable": 115, - "kForceTargetable": 116, - "kRemoveStunBlock": 117, - "kExitCombat": 122, - "kSuspendPips": 123, - "kResumePips": 124, - "kAutoPass": 125, - "kStopAutoPass": 126, - "kVanish": 127, - "kStopVanish": 128, - "kMaxHealthHeal": 129, - "kHealByWard": 130, - "kTaunt": 131, - "kPacify": 132, - "kRemoveTargetRestriction": 133, - "kConvertHangingEffect": 134, - "kAddSpellToDeck": 135, - "kAddSpellToHand": 136, - "kModifyIncomingDamageOverTime": 137, - "kModifyIncomingHealOverTime": 138, - "kModifyCardDamagebyRank": 139, - "kPushConvertedCharm": 140, - "kStealConvertedCharm": 141, - "kPushConvertedWard": 142, - "kStealConvertedWard": 143, - "kPushConvertedOverTime": 144, - "kStealConvertedOverTime": 145, - "kRemoveConvertedCharm": 146, - "kRemoveConvertedWard": 147, - "kRemoveConvertedOverTime": 148, - "kModifyOverTimeDuration": 149, - "kModifySchoolPips": 150 - } - }, - "m_effectParam": { - "type": "int", - "id": 1, - "offset": 76, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 357920024 - }, - "m_disposition": { - "type": "enum SpellEffect::kHangingDisposition", - "id": 2, - "offset": 80, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1904841031, - "enum_options": { - "kBoth": 0, - "kBeneficial": 1, - "kHarmful": 2 - } - }, - "m_sDamageType": { - "type": "std::string", - "id": 3, - "offset": 88, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2501054223 - }, - "m_damageType": { - "type": "unsigned int", - "id": 4, - "offset": 84, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 737882766 - }, - "m_pipNum": { - "type": "int", - "id": 5, - "offset": 128, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 830827539 - }, - "m_actNum": { - "type": "int", - "id": 6, - "offset": 132, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 236824866 - }, - "m_effectTarget": { - "type": "enum SpellEffect::kEffectTarget", - "id": 7, - "offset": 140, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2458940523, - "enum_options": { - "kInvalidTarget": 0, - "kSpell": 1, - "kSpecificSpells": 2, - "kGlobal": 3, - "kEnemyTeam": 4, - "kEnemyTeamAllAtOnce": 5, - "kFriendlyTeam": 6, - "kFriendlyTeamAllAtOnce": 7, - "kEnemySingle": 8, - "kFriendlySingle": 9, - "kMinion": 10, - "kFriendlyMinion": 17, - "kEnemyMinion": 18, - "kSelf": 11, - "kAtLeastOneEnemy": 13, - "kPreselectedEnemySingle": 12, - "kMultiTargetEnemy": 14, - "kMultiTargetFriendly": 15, - "kFriendlySingleNotMe": 16 - } - }, - "m_numRounds": { - "type": "int", - "id": 8, - "offset": 144, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1229753829 - }, - "m_paramPerRound": { - "type": "int", - "id": 9, - "offset": 148, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 683234234 - }, - "m_healModifier": { - "type": "float", - "id": 10, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1317921248, - "enum_options": { - "__DEFAULT": "1.0" - } - }, - "m_spellTemplateID": { - "type": "unsigned int", - "id": 11, - "offset": 120, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 585567702 - }, - "m_enchantmentSpellTemplateID": { - "type": "unsigned int", - "id": 12, - "offset": 124, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 246955115 - }, - "m_act": { - "type": "bool", - "id": 13, - "offset": 136, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 269510283 - }, - "m_cloaked": { - "type": "bool", - "id": 14, - "offset": 157, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 7349510 - }, - "m_bypassProtection": { - "type": "bool", - "id": 15, - "offset": 159, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1657138252 - }, - "m_armorPiercingParam": { - "type": "int", - "id": 16, - "offset": 160, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2025530205 - }, - "m_chancePerTarget": { - "type": "int", - "id": 17, - "offset": 164, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 845426794 - }, - "m_protected": { - "type": "bool", - "id": 18, - "offset": 168, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1445655037 - }, - "m_converted": { - "type": "bool", - "id": 19, - "offset": 169, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1590428797 - }, - "m_rank": { - "type": "int", - "id": 20, - "offset": 208, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 219803942 - } - } - }, - "1326255751": { - "name": "class TreasureShopOption*", - "bases": [ - "ServiceOptionBase", - "PropertyClass" - ], - "hash": 1326255751, - "properties": { - "m_serviceName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2206028813 - }, - "m_iconKey": { - "type": "std::string", - "id": 1, - "offset": 168, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2457138637 - }, - "m_displayKey": { - "type": "std::string", - "id": 2, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3023276954 - }, - "m_serviceIndex": { - "type": "unsigned int", - "id": 3, - "offset": 204, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2103126710 - }, - "m_forceInteract": { - "type": "bool", - "id": 4, - "offset": 200, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1705789564 - } - } - }, - "174483730": { - "name": "class CinematicAction*", - "bases": [ - "PropertyClass" - ], - "hash": 174483730, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - } - } - }, - "941783554": { - "name": "class PetDyeToTexture", - "bases": [ - "PropertyClass" - ], - "hash": 941783554, - "properties": { - "m_dye": { - "type": "int", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 267033084 - }, - "m_texture": { - "type": "int", - "id": 1, - "offset": 76, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 222406987 - } - } - }, - "1323967923": { - "name": "class SharedPointer", - "bases": [ - "WindowAnimation", - "PropertyClass" - ], - "hash": 1323967923, - "properties": { - "m_bUseDeepCopy": { - "type": "bool", - "id": 0, - "offset": 72, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 433380635 - } - } - }, - "173789164": { - "name": "enum CombatParticipant::PipAquiredByEnum", - "bases": [], - "hash": 173789164, - "properties": {} - }, - "940124961": { - "name": "class TrainBehaviorTemplate*", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 940124961, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - }, - "m_introTime": { - "type": "float", - "id": 1, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2010936242 - } - } - }, - "1323589008": { - "name": "class SharedPointer", - "bases": [ - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 1323589008, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - }, - "m_animation": { - "type": "std::string", - "id": 2, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3431428731 - } - } - }, - "173422323": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 173422323, - "properties": { - "m_categories": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2811511766 - }, - "m_tabs": { - "type": "class SharedPointer", - "id": 1, - "offset": 88, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 895280674 - } - } - }, - "939374927": { - "name": "class SpellCardAttachmentBehavior*", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 939374927, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_spellNames": { - "type": "std::string", - "id": 1, - "offset": 112, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2136089135 - }, - "m_targetNode": { - "type": "std::string", - "id": 2, - "offset": 128, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2698500040 - }, - "m_offset": { - "type": "class Vector3D", - "id": 3, - "offset": 160, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2445636425 - }, - "m_rotate": { - "type": "class Vector3D", - "id": 4, - "offset": 172, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2574199889 - }, - "m_height": { - "type": "float", - "id": 5, - "offset": 184, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 602977104 - }, - "m_alpha": { - "type": "float", - "id": 6, - "offset": 188, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 878686493 - }, - "m_cycleRate": { - "type": "float", - "id": 7, - "offset": 192, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 947046355 - } - } - }, - "1323579834": { - "name": "class SharedPointer", - "bases": [ - "ClientTimedItemBehavior", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1323579834, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_expireTime": { - "type": "unsigned int", - "id": 1, - "offset": 112, - "flags": 59, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1836304873 - }, - "m_statsApplied": { - "type": "bool", - "id": 2, - "offset": 328, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 828970945 - } - } - }, - "939097946": { - "name": "class PetDerbyResult*", - "bases": [ - "PropertyClass" - ], - "hash": 939097946, - "properties": { - "m_petNumber": { - "type": "int", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1254828 - }, - "m_finishTime": { - "type": "float", - "id": 1, - "offset": 76, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1090658759 - }, - "m_tickets": { - "type": "int", - "id": 2, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 353703441 - }, - "m_gold": { - "type": "int", - "id": 3, - "offset": 84, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 219423808 - } - } - }, - "1322977287": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1322977287, - "properties": { - "m_tutorialNameID": { - "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2228828719 - }, - "m_tutorialStage": { - "type": "int", - "id": 1, - "offset": 76, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 328120386 - } - } - }, - "939093706": { - "name": "class PetDerbyResults*", - "bases": [ - "PropertyClass" - ], - "hash": 939093706, - "properties": { - "m_resultList": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1783304302 - } - } - }, - "174345762": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 174345762, - "properties": { - "m_actorState": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2574256277 - }, - "m_playerCinematicState": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3255674198 - }, - "m_playerEmote": { - "type": "std::string", - "id": 2, - "offset": 136, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2232796226 - } - } - }, - "938694050": { - "name": "class BattlegroundGroupStatus*", - "bases": [ - "PropertyClass" - ], - "hash": 938694050, - "properties": { - "m_groupID": { - "type": "gid", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1111292082 - }, - "m_members": { - "type": "class SharedPointer", - "id": 1, - "offset": 80, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2190987938 - } - } - }, - "1323792992": { - "name": "class NPCBehavior*", - "bases": [ - "NameOverrideBehavior", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1323792992, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_wsNameOverride": { - "type": "std::wstring", - "id": 1, - "offset": 120, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2131249091 - }, - "m_firstName": { - "type": "std::string", - "id": 2, - "offset": 160, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3116002948 - }, - "m_lastName": { - "type": "std::string", - "id": 3, - "offset": 192, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1826203600 - }, - "m_nickname": { - "type": "std::string", - "id": 4, - "offset": 224, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2269863201 - }, - "m_title": { - "type": "std::string", - "id": 5, - "offset": 256, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2308614141 - }, - "m_isMonster": { - "type": "bool", - "id": 6, - "offset": 288, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1321956791 - } - } - }, - "175519385": { - "name": "enum PhysicsBehaviorTemplate::SimulationMethod", - "bases": [], - "hash": 175519385, - "properties": {} - }, - "939096778": { - "name": "class PetDerbyResults", - "bases": [ - "PropertyClass" - ], - "hash": 939096778, - "properties": { - "m_resultList": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1783304302 - } - } - }, - "174488850": { - "name": "class CinematicAction", - "bases": [ - "PropertyClass" - ], - "hash": 174488850, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - } - } - }, - "1325051057": { - "name": "struct std::pair", - "bases": [], - "hash": 1325051057, - "properties": {} - }, - "939374607": { - "name": "class SpellCardAttachmentBehavior", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 939374607, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_spellNames": { - "type": "std::string", - "id": 1, - "offset": 112, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2136089135 - }, - "m_targetNode": { - "type": "std::string", - "id": 2, - "offset": 128, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2698500040 - }, - "m_offset": { - "type": "class Vector3D", - "id": 3, - "offset": 160, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2445636425 - }, - "m_rotate": { - "type": "class Vector3D", - "id": 4, - "offset": 172, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2574199889 - }, - "m_height": { - "type": "float", - "id": 5, - "offset": 184, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 602977104 - }, - "m_alpha": { - "type": "float", - "id": 6, - "offset": 188, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 878686493 - }, - "m_cycleRate": { - "type": "float", - "id": 7, - "offset": 192, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 947046355 - } - } - }, - "1324022976": { - "name": "class SharedPointer", - "bases": [ - "ObstacleCourseCatapultBehavior", - "ObstacleCourseObstacleBehavior", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1324022976, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - } - } - }, - "996402085": { - "name": "class SharedPointer", - "bases": [ - "LevelUpElixirBehaviorTemplate", - "ElixirBehaviorTemplate", - "TimedItemBehaviorTemplate", - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 996402085, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - }, - "m_expireTime": { - "type": "std::string", - "id": 1, - "offset": 128, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3122602039 - }, - "m_timerType": { - "type": "enum TimerType", - "id": 2, - "offset": 120, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 571744132, - "enum_options": { - "TimerType_Game": 0, - "TimerType_Calendar": 1 - } - }, - "m_typeList": { - "type": "std::string", - "id": 3, - "offset": 160, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2119049625 - }, - "m_equipParticle": { - "type": "std::string", - "id": 4, - "offset": 176, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2222557491 - }, - "m_unequipParticle": { - "type": "std::string", - "id": 5, - "offset": 208, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2215431638 - }, - "m_equipSound": { - "type": "std::string", - "id": 6, - "offset": 240, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2720016552 - }, - "m_unequipSound": { - "type": "std::string", - "id": 7, - "offset": 272, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1552545835 - }, - "m_equipActionList": { - "type": "class SharedPointer", - "id": 8, - "offset": 304, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1314016250 - }, - "m_unequipActionList": { - "type": "class SharedPointer", - "id": 9, - "offset": 320, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2143896925 - }, - "m_combatEnabled": { - "type": "bool", - "id": 10, - "offset": 336, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1399744148 - }, - "m_PvPEnabled": { - "type": "bool", - "id": 11, - "offset": 337, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1042852532 - }, - "m_setCharacterToLevel": { - "type": "int", - "id": 12, - "offset": 408, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1268456078 - }, - "m_resultingTrainingPoints": { - "type": "int", - "id": 13, - "offset": 412, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1710285808 - }, - "m_schoolSpecificData": { - "type": "class SharedPointer", - "id": 14, - "offset": 472, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2609926725 - }, - "m_allSchoolData": { - "type": "class SharedPointer", - "id": 15, - "offset": 488, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2860093528 - }, - "m_firstWarningStringKey": { - "type": "std::string", - "id": 16, - "offset": 344, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3095888729 - }, - "m_secondWarningStringKey": { - "type": "std::string", - "id": 17, - "offset": 376, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2111513997 - }, - "m_accessPasses": { - "type": "std::string", - "id": 18, - "offset": 456, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2956825884 - }, - "m_gold": { - "type": "int", - "id": 19, - "offset": 416, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 219423808 - }, - "m_tutorialEventsToTrigger": { - "type": "std::string", - "id": 20, - "offset": 424, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2795041819 - }, - "m_tipIDsToDismiss": { - "type": "gid", - "id": 21, - "offset": 440, - "flags": 33554439, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1424884996 - }, - "m_maxPotions": { - "type": "int", - "id": 22, - "offset": 504, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1639626892 - }, - "m_questPrefix": { - "type": "std::string", - "id": 23, - "offset": 512, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2914797659 - } - } - }, - "1713819008": { - "name": "class WorldElixirBehaviorTemplate*", - "bases": [ - "LevelUpElixirBehaviorTemplate", - "ElixirBehaviorTemplate", - "TimedItemBehaviorTemplate", - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 1713819008, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - }, - "m_expireTime": { - "type": "std::string", - "id": 1, - "offset": 128, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3122602039 - }, - "m_timerType": { - "type": "enum TimerType", - "id": 2, - "offset": 120, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 571744132, - "enum_options": { - "TimerType_Game": 0, - "TimerType_Calendar": 1 - } - }, - "m_typeList": { - "type": "std::string", - "id": 3, - "offset": 160, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2119049625 - }, - "m_equipParticle": { - "type": "std::string", - "id": 4, - "offset": 176, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2222557491 - }, - "m_unequipParticle": { - "type": "std::string", - "id": 5, - "offset": 208, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2215431638 - }, - "m_equipSound": { - "type": "std::string", - "id": 6, - "offset": 240, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2720016552 - }, - "m_unequipSound": { - "type": "std::string", - "id": 7, - "offset": 272, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1552545835 - }, - "m_equipActionList": { - "type": "class SharedPointer", - "id": 8, - "offset": 304, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1314016250 - }, - "m_unequipActionList": { - "type": "class SharedPointer", - "id": 9, - "offset": 320, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2143896925 - }, - "m_combatEnabled": { - "type": "bool", - "id": 10, - "offset": 336, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1399744148 - }, - "m_PvPEnabled": { - "type": "bool", - "id": 11, - "offset": 337, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1042852532 - }, - "m_setCharacterToLevel": { - "type": "int", - "id": 12, - "offset": 408, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1268456078 - }, - "m_resultingTrainingPoints": { - "type": "int", - "id": 13, - "offset": 412, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1710285808 - }, - "m_schoolSpecificData": { - "type": "class SharedPointer", - "id": 14, - "offset": 472, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2609926725 - }, - "m_allSchoolData": { - "type": "class SharedPointer", - "id": 15, - "offset": 488, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2860093528 - }, - "m_firstWarningStringKey": { - "type": "std::string", - "id": 16, - "offset": 344, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3095888729 - }, - "m_secondWarningStringKey": { - "type": "std::string", - "id": 17, - "offset": 376, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2111513997 - }, - "m_accessPasses": { - "type": "std::string", - "id": 18, - "offset": 456, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2956825884 - }, - "m_gold": { - "type": "int", - "id": 19, - "offset": 416, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 219423808 - }, - "m_tutorialEventsToTrigger": { - "type": "std::string", - "id": 20, - "offset": 424, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2795041819 - }, - "m_tipIDsToDismiss": { - "type": "gid", - "id": 21, - "offset": 440, - "flags": 33554439, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1424884996 - }, - "m_maxPotions": { - "type": "int", - "id": 22, - "offset": 504, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1639626892 - }, - "m_questPrefix": { - "type": "std::string", - "id": 23, - "offset": 512, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2914797659 - } - } - }, - "2141122425": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 2141122425, - "properties": { - "m_description": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1649374815 - }, - "m_displaySpellName": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 268435463, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3323484466, - "enum_options": { - "__BASECLASS": "SpellTemplate" - } - } - } - }, - "550650537": { - "name": "class CSRPropertyEntry", - "bases": [ - "PropertyClass" - ], - "hash": 550650537, - "properties": { - "m_value": { - "type": "s24", - "id": 0, - "offset": 76, - "flags": 16, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 812923009 - }, - "m_propertyID": { - "type": "unsigned int", - "id": 1, - "offset": 72, - "flags": 16, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1883057791 - } - } - }, - "1324585090": { - "name": "class SharedPointer", - "bases": [ - "TournamentUpdate", - "PropertyClass" - ], - "hash": 1324585090, - "properties": { - "m_pActor": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1115051967 - } - } - }, - "2122560174": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 2122560174, - "properties": { - "m_roundList": { - "type": "class ShadowPipRule::RoundPercent", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2566333441 - } - } - }, - "550552233": { - "name": "class CSRPropertyEntry*", - "bases": [ - "PropertyClass" - ], - "hash": 550552233, - "properties": { - "m_value": { - "type": "s24", - "id": 0, - "offset": 76, - "flags": 16, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 812923009 - }, - "m_propertyID": { - "type": "unsigned int", - "id": 1, - "offset": 72, - "flags": 16, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1883057791 - } - } - }, - "2121931246": { - "name": "class MoveCommandArc*", - "bases": [ - "MoveController::MoveCommand", - "PropertyClass" - ], - "hash": 2121931246, - "properties": { - "m_vVelocity": { - "type": "class Vector3D", - "id": 0, - "offset": 88, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2295460039 - }, - "m_vGravity": { - "type": "class Vector3D", - "id": 1, - "offset": 100, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3690342814 - }, - "m_fUpdateFreq": { - "type": "float", - "id": 2, - "offset": 136, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1668426734 - }, - "m_dElapsedTime": { - "type": "double", - "id": 3, - "offset": 128, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2027745342 - } - } - }, - "1714027876": { - "name": "class SharedPointer", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 1714027876, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - }, - "m_kioskName": { - "type": "std::string", - "id": 1, - "offset": 120, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2560037053 - }, - "m_leagueType": { - "type": "std::string", - "id": 2, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3327951024 - } - } - }, - "939602914": { - "name": "class std::list >", - "bases": [], - "hash": 939602914, - "properties": {} - }, - "1326176845": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1326176845, - "properties": { - "m_markers": { - "type": "class CompassMarker", - "id": 0, - "offset": 80, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": true, - "pointer": false, - "hash": 3408067289 - } - } - }, - "2122056318": { - "name": "class std::list >", - "bases": [], - "hash": 2122056318, - "properties": {} - }, - "550759285": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 550759285, - "properties": { - "m_leagueID": { - "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 692361645 - }, - "m_elo": { - "type": "int", - "id": 1, - "offset": 76, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 267033754 - }, - "m_rank": { - "type": "int", - "id": 2, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 219803942 - }, - "m_wins": { - "type": "int", - "id": 3, - "offset": 84, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 219992347 - }, - "m_losses": { - "type": "int", - "id": 4, - "offset": 88, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 681549075 - } - } - }, - "939825038": { - "name": "class SharedPointer", - "bases": [ - "Requirement", - "PropertyClass" - ], - "hash": 939825038, - "properties": { - "m_applyNOT": { - "type": "bool", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1746328074, - "enum_options": { - "__DEFAULT": 0 - } - }, - "m_operator": { - "type": "enum Requirement::Operator", - "id": 1, - "offset": 76, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2672792317, - "enum_options": { - "ROP_AND": 0, - "ROP_OR": 1, - "__DEFAULT": "ROP_AND" - } - } - } - }, - "1715534144": { - "name": "class RaidKeyBehavior*", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1715534144, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - } - } - }, - "1327910898": { - "name": "class CantripsItemTemplate*", - "bases": [ - "WizItemTemplate", - "ItemTemplate", - "GameObjectTemplate", - "CoreTemplate", - "PropertyClass" - ], - "hash": 1327910898, - "properties": { - "m_behaviors": { - "type": "class BehaviorTemplate*", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1197808594 - }, - "m_objectName": { - "type": "std::string", - "id": 1, - "offset": 96, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2154940147 - }, - "m_templateID": { - "type": "unsigned int", - "id": 2, - "offset": 128, - "flags": 16777223, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1286746870 - }, - "m_visualID": { - "type": "unsigned int", - "id": 3, - "offset": 132, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1118778894 - }, - "m_adjectiveList": { - "type": "std::string", - "id": 4, - "offset": 248, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 3195213318 - }, - "m_exemptFromAOI": { - "type": "bool", - "id": 5, - "offset": 240, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1457879059 - }, - "m_displayName": { - "type": "std::string", - "id": 6, - "offset": 168, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2446900370 - }, - "m_description": { - "type": "std::string", - "id": 7, - "offset": 136, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1649374815 - }, - "m_nObjectType": { - "type": "enum ObjectType", - "id": 8, - "offset": 200, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2118905880, - "enum_options": { - "OT_UNDEFINED": 0, - "OT_PLAYER": 1, - "OT_NPC": 2, - "OT_PROP": 3, - "OT_OBJECT": 4, - "OT_HOUSE": 5, - "OT_KEY": 6, - "OT_OLD_KEY": 7, - "OT_DEED": 8, - "OT_MAIL": 9, - "OT_RECIPE": 17, - "OT_EQUIP_HEAD": 10, - "OT_EQUIP_CHEST": 11, - "OT_EQUIP_LEGS": 12, - "OT_EQUIP_HANDS": 13, - "OT_EQUIP_FINGER": 14, - "OT_EQUIP_FEET": 15, - "OT_EQUIP_EAR": 16, - "OT_BUILDING_BLOCK": 18, - "OT_BUILDING_BLOCK_SOLID": 19, - "OT_GOLF": 20, - "OT_DOOR": 21, - "OT_PET": 22, - "OT_FABRIC": 23, - "OT_WINDOW": 24, - "OT_ROOF": 25, - "OT_HORSE": 26, - "OT_STRUCTURE": 27, - "OT_HOUSING_TEXTURE": 28, - "OT_PLANT": 29 - } - }, - "m_sIcon": { - "type": "std::string", - "id": 9, - "offset": 208, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306259831 - }, - "m_equipRequirements": { - "type": "class RequirementList*", - "id": 10, - "offset": 280, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2762617226 - }, - "m_purchaseRequirements": { - "type": "class RequirementList*", - "id": 11, - "offset": 288, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3174641793 - }, - "m_equipEffects": { - "type": "class GameEffectInfo*", - "id": 12, - "offset": 296, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 836628351 - }, - "m_baseCost": { - "type": "float", - "id": 13, - "offset": 312, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1565352651 - }, - "m_creditsCost": { - "type": "float", - "id": 14, - "offset": 320, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 805514974 - }, - "m_avatarInfo": { - "type": "class AvatarItemInfoBase*", - "id": 15, - "offset": 328, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2627321299 - }, - "m_avatarFlags": { - "type": "std::string", - "id": 16, - "offset": 336, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2347762759 - }, - "m_itemLimit": { - "type": "int", - "id": 17, - "offset": 316, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1799746856 - }, - "m_holidayFlag": { - "type": "std::string", - "id": 18, - "offset": 352, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2994795359 - }, - "m_itemSetBonusTemplateID": { - "type": "unsigned int", - "id": 19, - "offset": 384, - "flags": 33554439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1316835672 - }, - "m_numPrimaryColors": { - "type": "int", - "id": 20, - "offset": 428, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 981103872 - }, - "m_numSecondaryColors": { - "type": "int", - "id": 21, - "offset": 432, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1310416868 - }, - "m_numPatterns": { - "type": "int", - "id": 22, - "offset": 436, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 953162171 - }, - "m_school": { - "type": "std::string", - "id": 23, - "offset": 392, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2438566051 - }, - "m_arenaPointCost": { - "type": "int", - "id": 24, - "offset": 440, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1819621796 - }, - "m_pvpCurrencyCost": { - "type": "int", - "id": 25, - "offset": 444, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 645595444 - }, - "m_pvpTourneyCurrencyCost": { - "type": "int", - "id": 26, - "offset": 448, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 517874954 - }, - "m_rank": { - "type": "int", - "id": 27, - "offset": 424, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 219803942 - }, - "m_boyIconIndex": { - "type": "int", - "id": 28, - "offset": 452, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 802140453 - }, - "m_girlIconIndex": { - "type": "int", - "id": 29, - "offset": 456, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 832706793 - }, - "m_leashOffsetOverride": { - "type": "class SharedPointer", - "id": 30, - "offset": 464, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1692586788 - }, - "m_rarity": { - "type": "enum RarityType", - "id": 31, - "offset": 460, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2253792108, - "enum_options": { - "RT_COMMON": 0, - "RT_UNCOMMON": 1, - "RT_RARE": 2, - "RT_ULTRARARE": 3, - "RT_EPIC": 4 - } - }, - "m_cantripName": { - "type": "std::string", - "id": 32, - "offset": 480, - "flags": 33554439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3064230349 - } - } - }, - "2122855648": { - "name": "class HangingEffectProtectionRemovedStageTemplate*", - "bases": [ - "CinematicStageTemplate", - "PropertyClass" - ], - "hash": 2122855648, - "properties": { - "m_name": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1717359772 - }, - "m_duration": { - "type": "float", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 920323453 - }, - "m_actions": { - "type": "class SharedPointer", - "id": 2, - "offset": 112, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1380578687 - }, - "m_stageRelationships": { - "type": "class SharedPointer", - "id": 3, - "offset": 128, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 499983354 - }, - "m_stopRotating": { - "type": "bool", - "id": 4, - "offset": 153, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 13587553 - }, - "m_startRotating": { - "type": "bool", - "id": 5, - "offset": 154, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 839204969 - }, - "m_startRotationTime": { - "type": "float", - "id": 6, - "offset": 156, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1011449124 - }, - "m_camRel": { - "type": "enum CameraCutCinematicAction::kCameraRelative", - "id": 7, - "offset": 164, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 919962138, - "enum_options": { - "kSigil": 1, - "kTarget": 2, - "kSource": 3, - "kActor": 4, - "__DEFAULT": "kTarget" - } - }, - "m_bSwitchCameraToWideLong": { - "type": "bool", - "id": 8, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2136912684, - "enum_options": { - "__DEFAULT": 1 - } - }, - "m_isCloaked": { - "type": "bool", - "id": 9, - "offset": 160, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1175302050 - } - } - }, - "553670903": { - "name": "unsigned short", - "bases": [], - "hash": 553670903, - "properties": {} - }, - "1326856470": { - "name": "class ClientObjectInfo", - "bases": [ - "CoreObjectInfo", - "PropertyClass" - ], - "hash": 1326856470, - "properties": { - "m_templateID.m_full": { - "type": "unsigned __int64", - "id": 0, - "offset": 72, - "flags": 33554439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 633907631 - }, - "m_nObjectID": { - "type": "unsigned int", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 748496927 - }, - "m_location": { - "type": "class Vector3D", - "id": 2, - "offset": 84, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2239683611 - }, - "m_orientation": { - "type": "class Vector3D", - "id": 3, - "offset": 96, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2344058766 - }, - "m_fScale": { - "type": "float", - "id": 4, - "offset": 108, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 503137701 - }, - "m_zoneTag": { - "type": "std::string", - "id": 5, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3405382643 - }, - "m_startState": { - "type": "std::string", - "id": 6, - "offset": 184, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2166880458 - }, - "m_overrideName": { - "type": "std::string", - "id": 7, - "offset": 120, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1990707228 - }, - "m_globalDynamic": { - "type": "bool", - "id": 8, - "offset": 116, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1951691017 - }, - "m_bUndetectable": { - "type": "bool", - "id": 9, - "offset": 216, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1907454341 - }, - "m_spawnRequirements": { - "type": "class SharedPointer", - "id": 10, - "offset": 224, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2309120870 - }, - "m_loadingType": { - "type": "enum CoreObjectInfo::LoadingType", - "id": 11, - "offset": 112, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3522422550, - "enum_options": { - "STATIC_CLIENT_SERVER": 0, - "STATIC_CLIENT": 1, - "STATIC_SERVER": 2, - "DYNAMIC_SERVER": 3 - } - } - } - }, - "940931034": { - "name": "class EquipmentSet", - "bases": [ - "PropertyClass" - ], - "hash": 940931034, - "properties": { - "m_serializedItems": { - "type": "std::string", - "id": 0, - "offset": 96, - "flags": 575, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1828227529 - }, - "m_equipmentSetName": { - "type": "unsigned int", - "id": 1, - "offset": 88, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 518194738 - }, - "m_isEquipped": { - "type": "bool", - "id": 2, - "offset": 128, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1792437804 - } - } - }, - "1717782148": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1717782148, - "properties": { - "m_spellDataList": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1628917702 - } - } - }, - "551628021": { - "name": "class ControlTab::Button*", - "bases": [ - "ControlButton", - "Window", - "PropertyClass" - ], - "hash": 551628021, - "properties": { - "m_sName": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306437263 - }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621225959 - }, - "m_Style": { - "type": "unsigned int", - "id": 2, - "offset": 152, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152, - "SHOW_HOTKEY": 16777216, - "EFFECT_SCALE": 67108864, - "LOCK_ICON_SIZE": 33554432, - "LEFT_TEXT": 536870912, - "NO_FIT_TEXT": 1073741824 - } - }, - "m_Flags": { - "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } - }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3105139380 - }, - "m_fTargetAlpha": { - "type": "float", - "id": 5, - "offset": 212, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1809129834 - }, - "m_fDisabledAlpha": { - "type": "float", - "id": 6, - "offset": 216, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1389987675 - }, - "m_fAlpha": { - "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 482130755 - }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3623628394 - }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2102211316 - }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1846695875 - }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3389835433 - }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2547159940 - }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2587533771 - }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3091503757 - }, - "m_bToggle": { - "type": "bool", - "id": 16, - "offset": 608, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2071810903 - }, - "m_bButtonDown": { - "type": "bool", - "id": 17, - "offset": 609, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 840041705 - }, - "m_sLabel": { - "type": "std::wstring", - "id": 18, - "offset": 616, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2207009163 - }, - "m_labelOffset": { - "type": "class Rect", - "id": 19, - "offset": 832, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1990646723 - }, - "m_pButton": { - "type": "class SharedPointer", - "id": 20, - "offset": 656, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1543855875 - }, - "m_HotKey": { - "type": "unsigned int", - "id": 21, - "offset": 672, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1631553409 - }, - "m_Color": { - "type": "class Color", - "id": 22, - "offset": 676, - "flags": 262279, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1753714077 - }, - "m_bCursorOver": { - "type": "bool", - "id": 23, - "offset": 689, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 283981103 - }, - "m_bAbortWhenCursorNotOver": { - "type": "bool", - "id": 24, - "offset": 706, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 325405258 - }, - "m_bHotKeyDown": { - "type": "bool", - "id": 25, - "offset": 680, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 616989185 - }, - "m_fTime": { - "type": "float", - "id": 26, - "offset": 684, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 883746156 - }, - "m_bGreyed": { - "type": "bool", - "id": 27, - "offset": 688, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1566556053 - }, - "m_fMaxScale": { - "type": "float", - "id": 28, - "offset": 692, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2070186635 - }, - "m_fScaleSpeed": { - "type": "float", - "id": 29, - "offset": 696, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1457135702 - }, - "m_bUseDropShadow": { - "type": "bool", - "id": 30, - "offset": 704, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 93063037 - }, - "m_bUseOutline": { - "type": "bool", - "id": 31, - "offset": 705, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 744292994 - }, - "m_pGreyedState": { - "type": "class SharedPointer", - "id": 32, - "offset": 768, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2703352263 - }, - "m_pNormalState": { - "type": "class SharedPointer", - "id": 33, - "offset": 752, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1887909808 - }, - "m_pHighlightedState": { - "type": "class SharedPointer", - "id": 34, - "offset": 784, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2200177608 - }, - "m_pSelectedState": { - "type": "class SharedPointer", - "id": 35, - "offset": 800, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2266776432 - }, - "m_pDepressedState": { - "type": "class SharedPointer", - "id": 36, - "offset": 816, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1878185798 - } - } - }, - "1326758166": { - "name": "class ClientObjectInfo*", - "bases": [ - "CoreObjectInfo", - "PropertyClass" - ], - "hash": 1326758166, - "properties": { - "m_templateID.m_full": { - "type": "unsigned __int64", - "id": 0, - "offset": 72, - "flags": 33554439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 633907631 - }, - "m_nObjectID": { - "type": "unsigned int", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 748496927 - }, - "m_location": { - "type": "class Vector3D", - "id": 2, - "offset": 84, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2239683611 - }, - "m_orientation": { - "type": "class Vector3D", - "id": 3, - "offset": 96, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2344058766 - }, - "m_fScale": { - "type": "float", - "id": 4, - "offset": 108, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 503137701 - }, - "m_zoneTag": { - "type": "std::string", - "id": 5, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3405382643 - }, - "m_startState": { - "type": "std::string", - "id": 6, - "offset": 184, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2166880458 - }, - "m_overrideName": { - "type": "std::string", - "id": 7, - "offset": 120, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1990707228 - }, - "m_globalDynamic": { - "type": "bool", - "id": 8, - "offset": 116, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1951691017 - }, - "m_bUndetectable": { - "type": "bool", - "id": 9, - "offset": 216, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1907454341 - }, - "m_spawnRequirements": { - "type": "class SharedPointer", - "id": 10, - "offset": 224, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2309120870 - }, - "m_loadingType": { - "type": "enum CoreObjectInfo::LoadingType", - "id": 11, - "offset": 112, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3522422550, - "enum_options": { - "STATIC_CLIENT_SERVER": 0, - "STATIC_CLIENT": 1, - "STATIC_SERVER": 2, - "DYNAMIC_SERVER": 3 - } - } - } - }, - "2122887031": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 2122887031, - "properties": { - "m_id": { - "type": "gid", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2090569797 - }, - "m_name": { - "type": "std::string", - "id": 1, - "offset": 88, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1717359772 - } - } - }, - "940135368": { - "name": "class SharedPointer", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 940135368, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - }, - "m_movementSpeed": { - "type": "float", - "id": 1, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 769135219 - }, - "m_movementScale": { - "type": "float", - "id": 2, - "offset": 124, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 768663914 - } - } - }, - "1716924520": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1716924520, - "properties": { - "m_clientVersion": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2207163808 - }, - "m_type": { - "type": "enum BugType", - "id": 1, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 889643611, - "enum_options": { - "BT_CRASH": 1, - "BT_GAME_STOPPER": 2, - "BT_INTERFERENCE": 3, - "BT_ANNOYANCE": 4, - "BT_FEATURE_REQUEST": 5, - "BT_COMMENT": 6 - } - }, - "m_canReproduce": { - "type": "bool", - "id": 2, - "offset": 108, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 859813390 - }, - "m_description": { - "type": "std::wstring", - "id": 3, - "offset": 112, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1445360156 - } - } - }, - "551320710": { - "name": "class CastleMagicTutorialWindow", - "bases": [ - "PropertyClass" - ], - "hash": 551320710, - "properties": {} - }, - "940125729": { - "name": "class TrainBehaviorTemplate", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 940125729, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - }, - "m_introTime": { - "type": "float", - "id": 1, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2010936242 - } - } - }, - "1716786062": { - "name": "class SharedPointer", - "bases": [ - "SpellEffect", - "PropertyClass" - ], - "hash": 1716786062, - "properties": { - "m_effectType": { - "type": "enum SpellEffect::kSpellEffects", - "id": 0, - "offset": 72, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2578255295, - "enum_options": { - "kInvalidSpellEffect": 0, - "kDamage": 1, - "kDamageNoCrit": 2, - "kHeal": 3, - "kHealPercent": 4, - "kSetHealPercent": 113, - "kStealHealth": 5, - "kReduceOverTime": 6, - "kDetonateOverTime": 7, - "kPushCharm": 8, - "kStealCharm": 9, - "kPushWard": 10, - "kStealWard": 11, - "kPushOverTime": 12, - "kStealOverTime": 13, - "kRemoveCharm": 14, - "kRemoveWard": 15, - "kRemoveOverTime": 16, - "kRemoveAura": 17, - "kSwapAll": 18, - "kSwapCharm": 19, - "kSwapWard": 20, - "kSwapOverTime": 21, - "kModifyIncomingDamage": 22, - "kModifyIncomingDamageFlat": 119, - "kMaximumIncomingDamage": 23, - "kModifyIncomingHeal": 24, - "kModifyIncomingHealFlat": 118, - "kModifyIncomingDamageType": 25, - "kModifyIncomingArmorPiercing": 26, - "kModifyOutgoingDamage": 27, - "kModifyOutgoingDamageFlat": 121, - "kModifyOutgoingHeal": 28, - "kModifyOutgoingHealFlat": 120, - "kModifyOutgoingDamageType": 29, - "kModifyOutgoingArmorPiercing": 30, - "kModifyOutgoingStealHealth": 31, - "kModifyIncomingStealHealth": 32, - "kBounceNext": 33, - "kBouncePrevious": 34, - "kBounceBack": 35, - "kBounceAll": 36, - "kAbsorbDamage": 37, - "kAbsorbHeal": 38, - "kModifyAccuracy": 39, - "kDispel": 40, - "kConfusion": 41, - "kCloakedCharm": 42, - "kCloakedWard": 43, - "kStunResist": 44, - "kClue": 111, - "kPipConversion": 45, - "kCritBoost": 46, - "kCritBlock": 47, - "kPolymorph": 48, - "kDelayCast": 49, - "kModifyCardCloak": 50, - "kModifyCardDamage": 51, - "kModifyCardAccuracy": 53, - "kModifyCardMutation": 54, - "kModifyCardRank": 55, - "kModifyCardArmorPiercing": 56, - "kSummonCreature": 65, - "kTeleportPlayer": 66, - "kStun": 67, - "kDampen": 68, - "kReshuffle": 69, - "kMindControl": 70, - "kModifyPips": 71, - "kModifyPowerPips": 72, - "kModifyShadowPips": 73, - "kModifyHate": 74, - "kDamageOverTime": 75, - "kHealOverTime": 76, - "kModifyPowerPipChance": 77, - "kModifyRank": 78, - "kStunBlock": 79, - "kRevealCloak": 80, - "kInstantKill": 81, - "kAfterlife": 82, - "kDeferredDamage": 83, - "kDamagePerTotalPipPower": 84, - "kModifyCardHeal": 52, - "kModifyCardCharm": 57, - "kModifyCardWard": 58, - "kModifyCardOutgoingDamage": 59, - "kModifyCardOutgoingAccuracy": 60, - "kModifyCardOutgoingHeal": 61, - "kModifyCardOutgoingArmorPiercing": 62, - "kModifyCardIncomingDamage": 63, - "kModifyCardAbsorbDamage": 64, - "kCloakedWardNoRemove": 86, - "kAddCombatTriggerList": 87, - "kRemoveCombatTriggerList": 88, - "kBacklashDamage": 89, - "kModifyBacklash": 90, - "kIntercept": 91, - "kShadowSelf": 92, - "kShadowCreature": 93, - "kModifyShadowCreatureLevel": 94, - "kSelectShadowCreatureAttackTarget": 95, - "kShadowDecrementTurn": 96, - "kCritBoostSchoolSpecific": 97, - "kSpawnCreature": 98, - "kUnPolymorph": 99, - "kPowerPipConversion": 100, - "kProtectCardBeneficial": 101, - "kProtectCardHarmful": 102, - "kProtectBeneficial": 103, - "kProtectHarmful": 104, - "kDivideDamage": 105, - "kCollectEssence": 106, - "kKillCreature": 107, - "kDispelBlock": 108, - "kConfusionBlock": 109, - "kModifyPipRoundRate": 110, - "kMaxHealthDamage": 112, - "kUntargetable": 114, - "kMakeTargetable": 115, - "kForceTargetable": 116, - "kRemoveStunBlock": 117, - "kExitCombat": 122, - "kSuspendPips": 123, - "kResumePips": 124, - "kAutoPass": 125, - "kStopAutoPass": 126, - "kVanish": 127, - "kStopVanish": 128, - "kMaxHealthHeal": 129, - "kHealByWard": 130, - "kTaunt": 131, - "kPacify": 132, - "kRemoveTargetRestriction": 133, - "kConvertHangingEffect": 134, - "kAddSpellToDeck": 135, - "kAddSpellToHand": 136, - "kModifyIncomingDamageOverTime": 137, - "kModifyIncomingHealOverTime": 138, - "kModifyCardDamagebyRank": 139, - "kPushConvertedCharm": 140, - "kStealConvertedCharm": 141, - "kPushConvertedWard": 142, - "kStealConvertedWard": 143, - "kPushConvertedOverTime": 144, - "kStealConvertedOverTime": 145, - "kRemoveConvertedCharm": 146, - "kRemoveConvertedWard": 147, - "kRemoveConvertedOverTime": 148, - "kModifyOverTimeDuration": 149, - "kModifySchoolPips": 150 - } - }, - "m_effectParam": { - "type": "int", - "id": 1, - "offset": 76, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 357920024 - }, - "m_disposition": { - "type": "enum SpellEffect::kHangingDisposition", - "id": 2, - "offset": 80, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1904841031, - "enum_options": { - "kBoth": 0, - "kBeneficial": 1, - "kHarmful": 2 - } - }, - "m_sDamageType": { - "type": "std::string", - "id": 3, - "offset": 88, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2501054223 - }, - "m_damageType": { - "type": "unsigned int", - "id": 4, - "offset": 84, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 737882766 - }, - "m_pipNum": { - "type": "int", - "id": 5, - "offset": 128, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 830827539 - }, - "m_actNum": { - "type": "int", - "id": 6, - "offset": 132, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 236824866 - }, - "m_effectTarget": { - "type": "enum SpellEffect::kEffectTarget", - "id": 7, - "offset": 140, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2458940523, - "enum_options": { - "kInvalidTarget": 0, - "kSpell": 1, - "kSpecificSpells": 2, - "kGlobal": 3, - "kEnemyTeam": 4, - "kEnemyTeamAllAtOnce": 5, - "kFriendlyTeam": 6, - "kFriendlyTeamAllAtOnce": 7, - "kEnemySingle": 8, - "kFriendlySingle": 9, - "kMinion": 10, - "kFriendlyMinion": 17, - "kEnemyMinion": 18, - "kSelf": 11, - "kAtLeastOneEnemy": 13, - "kPreselectedEnemySingle": 12, - "kMultiTargetEnemy": 14, - "kMultiTargetFriendly": 15, - "kFriendlySingleNotMe": 16 - } - }, - "m_numRounds": { - "type": "int", - "id": 8, - "offset": 144, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1229753829 - }, - "m_paramPerRound": { - "type": "int", - "id": 9, - "offset": 148, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 683234234 - }, - "m_healModifier": { - "type": "float", - "id": 10, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1317921248, - "enum_options": { - "__DEFAULT": "1.0" - } - }, - "m_spellTemplateID": { - "type": "unsigned int", - "id": 11, - "offset": 120, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 585567702 - }, - "m_enchantmentSpellTemplateID": { - "type": "unsigned int", - "id": 12, - "offset": 124, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 246955115 - }, - "m_act": { - "type": "bool", - "id": 13, - "offset": 136, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 269510283 - }, - "m_cloaked": { - "type": "bool", - "id": 14, - "offset": 157, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 7349510 - }, - "m_bypassProtection": { - "type": "bool", - "id": 15, - "offset": 159, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1657138252 - }, - "m_armorPiercingParam": { - "type": "int", - "id": 16, - "offset": 160, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2025530205 - }, - "m_chancePerTarget": { - "type": "int", - "id": 17, - "offset": 164, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 845426794 - }, - "m_protected": { - "type": "bool", - "id": 18, - "offset": 168, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1445655037 - }, - "m_converted": { - "type": "bool", - "id": 19, - "offset": 169, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1590428797 - }, - "m_rank": { - "type": "int", - "id": 20, - "offset": 208, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 219803942 - }, - "m_effectLists": { - "type": "class SharedPointer", - "id": 21, - "offset": 224, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1054793289 - } - } - }, - "551193865": { - "name": "class std::list >", - "bases": [], - "hash": 551193865, - "properties": {} - }, - "1715780371": { - "name": "struct std::pair,class std::allocator >,union gid>", - "bases": [], - "hash": 1715780371, - "properties": {} - }, - "551040134": { - "name": "class PetDropGameSettings*", - "bases": [ - "PropertyClass" - ], - "hash": 551040134, - "properties": { - "m_uPathID": { - "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 876142428 - }, - "m_nFullnessScoreTarget": { - "type": "int", - "id": 1, - "offset": 76, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 293633463 - }, - "m_nTimeLimitInSeconds": { - "type": "int", - "id": 2, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1125165468 - }, - "m_nWeightChangeInSeconds": { - "type": "int", - "id": 3, - "offset": 84, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1881631612 - }, - "m_fDropsPerSecondAtStart": { - "type": "float", - "id": 4, - "offset": 88, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 752496235 - }, - "m_fDropsPerSecondAtEnd": { - "type": "float", - "id": 5, - "offset": 92, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1684240180 - }, - "m_fCatchDistance": { - "type": "float", - "id": 6, - "offset": 96, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 879620619 - }, - "m_fFreezeSpeed": { - "type": "float", - "id": 7, - "offset": 100, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1366477327 - }, - "m_fSpeedNormal": { - "type": "float", - "id": 8, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1038542199 - }, - "m_fSpeedBonus": { - "type": "float", - "id": 9, - "offset": 108, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1406294645 - }, - "m_fSpeedPenalty": { - "type": "float", - "id": 10, - "offset": 112, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1356789899 - }, - "m_fInitialItemHeight": { - "type": "float", - "id": 11, - "offset": 116, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2124739791 - }, - "m_fGroundHeight": { - "type": "float", - "id": 12, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2050728741 - }, - "m_fPetHeight": { - "type": "float", - "id": 13, - "offset": 124, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2094176095 - }, - "m_fJumpHeight": { - "type": "float", - "id": 14, - "offset": 128, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1742092018 - }, - "m_fMaxScaleIncrease": { - "type": "float", - "id": 15, - "offset": 132, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1883110517 - }, - "m_sItemHitGroundSound": { - "type": "std::string", - "id": 16, - "offset": 136, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1678384346 - }, - "m_sItemHitGroundFX": { - "type": "std::string", - "id": 17, - "offset": 168, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1855437679 - }, - "m_foodItems": { - "type": "class SharedPointer", - "id": 18, - "offset": 200, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2404207033 - } - } - }, - "1327910874": { - "name": "class CantripsItemTemplate", - "bases": [ - "WizItemTemplate", - "ItemTemplate", - "GameObjectTemplate", - "CoreTemplate", - "PropertyClass" - ], - "hash": 1327910874, - "properties": { - "m_behaviors": { - "type": "class BehaviorTemplate*", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1197808594 - }, - "m_objectName": { - "type": "std::string", - "id": 1, - "offset": 96, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2154940147 - }, - "m_templateID": { - "type": "unsigned int", - "id": 2, - "offset": 128, - "flags": 16777223, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1286746870 - }, - "m_visualID": { - "type": "unsigned int", - "id": 3, - "offset": 132, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1118778894 - }, - "m_adjectiveList": { - "type": "std::string", - "id": 4, - "offset": 248, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 3195213318 - }, - "m_exemptFromAOI": { - "type": "bool", - "id": 5, - "offset": 240, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1457879059 - }, - "m_displayName": { - "type": "std::string", - "id": 6, - "offset": 168, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2446900370 - }, - "m_description": { - "type": "std::string", - "id": 7, - "offset": 136, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1649374815 - }, - "m_nObjectType": { - "type": "enum ObjectType", - "id": 8, - "offset": 200, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2118905880, - "enum_options": { - "OT_UNDEFINED": 0, - "OT_PLAYER": 1, - "OT_NPC": 2, - "OT_PROP": 3, - "OT_OBJECT": 4, - "OT_HOUSE": 5, - "OT_KEY": 6, - "OT_OLD_KEY": 7, - "OT_DEED": 8, - "OT_MAIL": 9, - "OT_RECIPE": 17, - "OT_EQUIP_HEAD": 10, - "OT_EQUIP_CHEST": 11, - "OT_EQUIP_LEGS": 12, - "OT_EQUIP_HANDS": 13, - "OT_EQUIP_FINGER": 14, - "OT_EQUIP_FEET": 15, - "OT_EQUIP_EAR": 16, - "OT_BUILDING_BLOCK": 18, - "OT_BUILDING_BLOCK_SOLID": 19, - "OT_GOLF": 20, - "OT_DOOR": 21, - "OT_PET": 22, - "OT_FABRIC": 23, - "OT_WINDOW": 24, - "OT_ROOF": 25, - "OT_HORSE": 26, - "OT_STRUCTURE": 27, - "OT_HOUSING_TEXTURE": 28, - "OT_PLANT": 29 - } - }, - "m_sIcon": { - "type": "std::string", - "id": 9, - "offset": 208, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306259831 - }, - "m_equipRequirements": { - "type": "class RequirementList*", - "id": 10, - "offset": 280, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2762617226 - }, - "m_purchaseRequirements": { - "type": "class RequirementList*", - "id": 11, - "offset": 288, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3174641793 - }, - "m_equipEffects": { - "type": "class GameEffectInfo*", - "id": 12, - "offset": 296, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 836628351 - }, - "m_baseCost": { - "type": "float", - "id": 13, - "offset": 312, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1565352651 - }, - "m_creditsCost": { - "type": "float", - "id": 14, - "offset": 320, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 805514974 - }, - "m_avatarInfo": { - "type": "class AvatarItemInfoBase*", - "id": 15, - "offset": 328, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2627321299 - }, - "m_avatarFlags": { - "type": "std::string", - "id": 16, - "offset": 336, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2347762759 - }, - "m_itemLimit": { - "type": "int", - "id": 17, - "offset": 316, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1799746856 - }, - "m_holidayFlag": { - "type": "std::string", - "id": 18, - "offset": 352, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2994795359 - }, - "m_itemSetBonusTemplateID": { - "type": "unsigned int", - "id": 19, - "offset": 384, - "flags": 33554439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1316835672 - }, - "m_numPrimaryColors": { - "type": "int", - "id": 20, - "offset": 428, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 981103872 - }, - "m_numSecondaryColors": { - "type": "int", - "id": 21, - "offset": 432, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1310416868 - }, - "m_numPatterns": { - "type": "int", - "id": 22, - "offset": 436, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 953162171 - }, - "m_school": { - "type": "std::string", - "id": 23, - "offset": 392, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2438566051 - }, - "m_arenaPointCost": { - "type": "int", - "id": 24, - "offset": 440, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1819621796 - }, - "m_pvpCurrencyCost": { - "type": "int", - "id": 25, - "offset": 444, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 645595444 - }, - "m_pvpTourneyCurrencyCost": { - "type": "int", - "id": 26, - "offset": 448, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 517874954 - }, - "m_rank": { - "type": "int", - "id": 27, - "offset": 424, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 219803942 - }, - "m_boyIconIndex": { - "type": "int", - "id": 28, - "offset": 452, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 802140453 - }, - "m_girlIconIndex": { - "type": "int", - "id": 29, - "offset": 456, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 832706793 - }, - "m_leashOffsetOverride": { - "type": "class SharedPointer", - "id": 30, - "offset": 464, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1692586788 - }, - "m_rarity": { - "type": "enum RarityType", - "id": 31, - "offset": 460, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2253792108, - "enum_options": { - "RT_COMMON": 0, - "RT_UNCOMMON": 1, - "RT_RARE": 2, - "RT_ULTRARARE": 3, - "RT_EPIC": 4 - } - }, - "m_cantripName": { - "type": "std::string", - "id": 32, - "offset": 480, - "flags": 33554439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3064230349 - } - } - }, - "2127884354": { - "name": "class RevealHangingCinematicStageTemplate*", - "bases": [ - "CinematicStageTemplate", - "PropertyClass" - ], - "hash": 2127884354, - "properties": { - "m_name": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1717359772 - }, - "m_duration": { - "type": "float", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 920323453 - }, - "m_actions": { - "type": "class SharedPointer", - "id": 2, - "offset": 112, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1380578687 - }, - "m_stageRelationships": { - "type": "class SharedPointer", - "id": 3, - "offset": 128, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 499983354 - }, - "m_stopRotating": { - "type": "bool", - "id": 4, - "offset": 153, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 13587553 - }, - "m_startRotating": { - "type": "bool", - "id": 5, - "offset": 154, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 839204969 - }, - "m_revealText": { - "type": "std::string", - "id": 6, - "offset": 160, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2011500383 - }, - "m_bSwitchCameraToWideLong": { - "type": "bool", - "id": 7, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2136912684, - "enum_options": { - "__DEFAULT": 1 - } - } - } - }, - "2125246348": { - "name": "class ClientPlayComplexSoundCinematicAction", - "bases": [ - "PlayComplexSoundCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 2125246348, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_cinematicSoundEmitterInfo": { - "type": "class SharedPointer", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2303770088 - } - } - }, - "940731295": { - "name": "class LeashBehaviorTemplate*", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 940731295, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - }, - "m_radius": { - "type": "float", - "id": 1, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 989410271 - }, - "m_angle": { - "type": "float", - "id": 2, - "offset": 124, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 878748702 - }, - "m_leashType": { - "type": "enum LeashType", - "id": 3, - "offset": 128, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2170708051, - "enum_options": { - "LLT_Rigid": 0, - "LLT_Elastic": 1 - } - }, - "m_alwaysDisplay": { - "type": "bool", - "id": 4, - "offset": 132, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2071781402 - }, - "m_despawnOnUnleash": { - "type": "bool", - "id": 5, - "offset": 133, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 428306962 - } - } - }, - "2124526016": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 2124526016, - "properties": { - "m_promoGifts": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 885904406 - } - } - }, - "1716921058": { - "name": "class ClientDerbyModifyMorale", - "bases": [ - "DerbyModifyMorale", - "DerbyEffect", - "PropertyClass" - ], - "hash": 1716921058, - "properties": { - "m_buffType": { - "type": "enum DerbyTalentBuffType", - "id": 0, - "offset": 92, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1149251982, - "enum_options": { - "Buff": 0, - "Debuff": 1, - "Neither": 2 - } - }, - "m_kTarget": { - "type": "enum DerbyTargetType", - "id": 1, - "offset": 96, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1807803351, - "enum_options": { - "kTargetInFront": 0, - "kTargetBehind": 1, - "kTargetFirst": 2, - "kTargetSelf": 3, - "kTargetAll": 4, - "kTargetLast": 5 - } - }, - "m_nDuration": { - "type": "int", - "id": 2, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1110167982 - }, - "m_effectID": { - "type": "unsigned int", - "id": 3, - "offset": 88, - "flags": 24, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2347630439 - }, - "m_imageFilename": { - "type": "std::string", - "id": 4, - "offset": 112, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2813328063 - }, - "m_iconIndex": { - "type": "unsigned int", - "id": 5, - "offset": 144, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1265133262 - }, - "m_soundOnActivate": { - "type": "std::string", - "id": 6, - "offset": 152, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1956929714 - }, - "m_soundOnTarget": { - "type": "std::string", - "id": 7, - "offset": 184, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3444214056 - }, - "m_targetParticleEffect": { - "type": "std::string", - "id": 8, - "offset": 216, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3048234723 - }, - "m_overheadMessage": { - "type": "std::string", - "id": 9, - "offset": 248, - "flags": 8388639, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1701018190 - }, - "m_requirements": { - "type": "class RequirementList", - "id": 10, - "offset": 280, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2840988582 - }, - "m_nMoraleChange": { - "type": "int", - "id": 11, - "offset": 376, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1624723118 - } - } - }, - "1328823925": { - "name": "class SharedPointer", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 1328823925, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - } - } - }, - "2124030039": { - "name": "class SharedPointer", - "bases": [ - "CantripsInvisibilityEffectTemplate", - "GameEffectTemplate", - "PropertyClass" - ], - "hash": 2124030039, - "properties": { - "m_effectName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2029161513 - }, - "m_effectCategory": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1852673222 - }, - "m_sortOrder": { - "type": "int", - "id": 2, - "offset": 148, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1411218206 - }, - "m_duration": { - "type": "double", - "id": 3, - "offset": 192, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2727932435 - }, - "m_stackingCategories": { - "type": "std::string", - "id": 4, - "offset": 160, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1774497525 - }, - "m_isPersistent": { - "type": "bool", - "id": 5, - "offset": 153, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 923861920 - }, - "m_bIsOnPet": { - "type": "bool", - "id": 6, - "offset": 154, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 522593303 - }, - "m_isPublic": { - "type": "bool", - "id": 7, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1728439822 - }, - "m_visualEffectAddName": { - "type": "std::string", - "id": 8, - "offset": 200, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3382086694 - }, - "m_visualEffectRemoveName": { - "type": "std::string", - "id": 9, - "offset": 232, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1541697323 - }, - "m_onAddFunctorName": { - "type": "std::string", - "id": 10, - "offset": 280, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1561843107 - }, - "m_onRemoveFunctorName": { - "type": "std::string", - "id": 11, - "offset": 312, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2559017864 - }, - "m_stackingRule": { - "type": "enum STACKING_RULE", - "id": 12, - "offset": 144, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 431568889, - "enum_options": { - "STACKING_ALLOWED": 0, - "STACKING_NOSTACK": 1, - "STACKING_REPLACE": 2 - } - } - } - }, - "940732063": { - "name": "class LeashBehaviorTemplate", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 940732063, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - }, - "m_radius": { - "type": "float", - "id": 1, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 989410271 - }, - "m_angle": { - "type": "float", - "id": 2, - "offset": 124, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 878748702 - }, - "m_leashType": { - "type": "enum LeashType", - "id": 3, - "offset": 128, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2170708051, - "enum_options": { - "LLT_Rigid": 0, - "LLT_Elastic": 1 - } - }, - "m_alwaysDisplay": { - "type": "bool", - "id": 4, - "offset": 132, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2071781402 - }, - "m_despawnOnUnleash": { - "type": "bool", - "id": 5, - "offset": 133, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 428306962 - } - } - }, - "551490708": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 551490708, - "properties": { - "m_quantity": { - "type": "int", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 169215289 - }, - "m_rewardType": { - "type": "enum DailyQuestReward::RewardTypes", - "id": 1, - "offset": 76, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3431311734, - "enum_options": { - "RT_Gold": 0, - "RT_Crowns": 1, - "RT_ArenaTickets": 2, - "RT_PvPCurrency": 3, - "RT_PvPTourneyCurrency": 4, - "RT_Chest": 5, - "RT_Quest": 6 - } - }, - "m_lootTable": { - "type": "std::string", - "id": 2, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2539512673 - }, - "m_doubleLootTable": { - "type": "std::string", - "id": 3, - "offset": 112, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2975549628 - }, - "m_anniversaryLootTable": { - "type": "std::string", - "id": 4, - "offset": 144, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1514594483 - }, - "m_halloweenLootTable": { - "type": "std::string", - "id": 5, - "offset": 176, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2915828832 - }, - "m_christmasLootTable": { - "type": "std::string", - "id": 6, - "offset": 208, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1878775663 - } - } - }, - "1328779043": { - "name": "class SharedPointer", - "bases": [ - "DerbyImmunityEffect", - "DerbyEffect", - "PropertyClass" - ], - "hash": 1328779043, - "properties": { - "m_buffType": { - "type": "enum DerbyTalentBuffType", - "id": 0, - "offset": 92, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1149251982, - "enum_options": { - "Buff": 0, - "Debuff": 1, - "Neither": 2 - } - }, - "m_kTarget": { - "type": "enum DerbyTargetType", - "id": 1, - "offset": 96, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1807803351, - "enum_options": { - "kTargetInFront": 0, - "kTargetBehind": 1, - "kTargetFirst": 2, - "kTargetSelf": 3, - "kTargetAll": 4, - "kTargetLast": 5 - } - }, - "m_nDuration": { - "type": "int", - "id": 2, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1110167982 - }, - "m_effectID": { - "type": "unsigned int", - "id": 3, - "offset": 88, - "flags": 24, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2347630439 - }, - "m_imageFilename": { - "type": "std::string", - "id": 4, - "offset": 112, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2813328063 - }, - "m_iconIndex": { - "type": "unsigned int", - "id": 5, - "offset": 144, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1265133262 - }, - "m_soundOnActivate": { - "type": "std::string", - "id": 6, - "offset": 152, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1956929714 - }, - "m_soundOnTarget": { - "type": "std::string", - "id": 7, - "offset": 184, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3444214056 - }, - "m_targetParticleEffect": { - "type": "std::string", - "id": 8, - "offset": 216, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3048234723 - }, - "m_overheadMessage": { - "type": "std::string", - "id": 9, - "offset": 248, - "flags": 8388639, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1701018190 - }, - "m_requirements": { - "type": "class RequirementList", - "id": 10, - "offset": 280, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2840988582 - }, - "m_bToDebuffs": { - "type": "bool", - "id": 11, - "offset": 376, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1216111639 - } - } - }, - "1717552648": { - "name": "class CollectedEssenceTrackingData", - "bases": [ - "PropertyClass" - ], - "hash": 1717552648, - "properties": { - "m_ownerGID": { - "type": "gid", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1765087575 - }, - "m_essencesCollected": { - "type": "int", - "id": 1, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1632116450 - }, - "m_templateID": { - "type": "unsigned int", - "id": 2, - "offset": 84, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1286746870 - } - } - }, - "1328788969": { - "name": "class SharedPointer", - "bases": [ - "SigilTemplate", - "CoreTemplate", - "PropertyClass" - ], - "hash": 1328788969, - "properties": { - "m_behaviors": { - "type": "class BehaviorTemplate*", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1197808594 - }, - "m_sigilName": { - "type": "std::string", - "id": 1, - "offset": 96, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3177657588 - }, - "m_sigilType": { - "type": "std::string", - "id": 2, - "offset": 136, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3177899445 - }, - "m_entryResults": { - "type": "class ResultList*", - "id": 3, - "offset": 184, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3262956108 - }, - "m_requirements": { - "type": "class RequirementList*", - "id": 4, - "offset": 176, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2840985510 - }, - "m_cancelResults": { - "type": "class ResultList*", - "id": 5, - "offset": 192, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3799257120 - }, - "m_completeResults": { - "type": "class ResultList*", - "id": 6, - "offset": 200, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1964258099 - }, - "m_useState": { - "type": "bool", - "id": 7, - "offset": 216, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 683320865 - }, - "m_stateOverride": { - "type": "std::string", - "id": 8, - "offset": 224, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1949715548 - }, - "m_subCircles": { - "type": "class SigilSubCircle*", - "id": 9, - "offset": 256, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2227135493 - } - } - }, - "2124567415": { - "name": "class TeamHelpWorldInfo*", - "bases": [ - "PropertyClass" - ], - "hash": 2124567415, - "properties": { - "m_buttonName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3388080120 - }, - "m_buttonStringKey": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3226477495 - }, - "m_displayIndex": { - "type": "int", - "id": 2, - "offset": 136, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1250551048 - }, - "m_minimumLevel": { - "type": "int", - "id": 3, - "offset": 140, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 327062478 - }, - "m_registryEntry": { - "type": "std::string", - "id": 4, - "offset": 144, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3056380390 - }, - "m_worldPath": { - "type": "std::string", - "id": 5, - "offset": 176, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1846829584 - }, - "m_spiralShowcaseStringKey": { - "type": "std::string", - "id": 6, - "offset": 208, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2723709283 - } - } - }, - "941780482": { - "name": "class PetDyeToTexture*", - "bases": [ - "PropertyClass" - ], - "hash": 941780482, - "properties": { - "m_dye": { - "type": "int", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 267033084 - }, - "m_texture": { - "type": "int", - "id": 1, - "offset": 76, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 222406987 - } - } - }, - "1717147375": { - "name": "enum CantripsSpellTemplate::CantripsSpellType", - "bases": [], - "hash": 1717147375, - "properties": {} - }, - "552982840": { - "name": "class HatchmakingPet", - "bases": [ - "PropertyClass" - ], - "hash": 552982840, - "properties": { - "m_petGID": { - "type": "gid", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 826202069 - }, - "m_ageOutTime": { - "type": "unsigned int", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 819371137 - }, - "m_cooldownTime": { - "type": "unsigned int", - "id": 2, - "offset": 84, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 902182593 - }, - "m_petTemplateID": { - "type": "unsigned int", - "id": 3, - "offset": 88, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 817215071 - }, - "m_hatchCount": { - "type": "unsigned int", - "id": 4, - "offset": 92, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1273194302 - }, - "m_nameKey": { - "type": "unsigned int", - "id": 5, - "offset": 96, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1104764311 - }, - "m_petItemGID": { - "type": "gid", - "id": 6, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2122895620 - } - } - }, - "552171562": { - "name": "class SharedPointer", - "bases": [ - "CinematicAction", - "PropertyClass" - ], - "hash": 552171562, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_fDuration": { - "type": "float", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 598255075 - }, - "m_bCycle": { - "type": "bool", - "id": 2, - "offset": 84, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 240694213 - }, - "m_bFadeIn": { - "type": "bool", - "id": 3, - "offset": 85, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1507201372 - } - } - }, - "2125074400": { - "name": "class SharedPointer", - "bases": [ - "Requirement", - "PropertyClass" - ], - "hash": 2125074400, - "properties": { - "m_applyNOT": { - "type": "bool", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1746328074, - "enum_options": { - "__DEFAULT": 0 - } - }, - "m_operator": { - "type": "enum Requirement::Operator", - "id": 1, - "offset": 76, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2672792317, - "enum_options": { - "ROP_AND": 0, - "ROP_OR": 1, - "__DEFAULT": "ROP_AND" - } - }, - "m_questName": { - "type": "std::string", - "id": 2, - "offset": 80, - "flags": 268435463, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1702112846, - "enum_options": { - "__BASECLASS": "QuestTemplate" - } - }, - "m_goalName": { - "type": "std::string", - "id": 3, - "offset": 112, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1521627807 - }, - "m_requiredStatus": { - "type": "enum GoalStatusRequirement", - "id": 4, - "offset": 144, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1705123608, - "enum_options": { - "DontCare": 0, - "Complete": 1, - "Incomplete": 2, - "__DEFAULT": "DontCare" - } - } - } - }, - "552025821": { - "name": "class SharedPointer", - "bases": [ - "DerbyStealMorale", - "DerbyEffect", - "PropertyClass" - ], - "hash": 552025821, - "properties": { - "m_buffType": { - "type": "enum DerbyTalentBuffType", - "id": 0, - "offset": 92, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1149251982, - "enum_options": { - "Buff": 0, - "Debuff": 1, - "Neither": 2 - } - }, - "m_kTarget": { - "type": "enum DerbyTargetType", - "id": 1, - "offset": 96, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1807803351, - "enum_options": { - "kTargetInFront": 0, - "kTargetBehind": 1, - "kTargetFirst": 2, - "kTargetSelf": 3, - "kTargetAll": 4, - "kTargetLast": 5 - } - }, - "m_nDuration": { - "type": "int", - "id": 2, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1110167982 - }, - "m_effectID": { - "type": "unsigned int", - "id": 3, - "offset": 88, - "flags": 24, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2347630439 - }, - "m_imageFilename": { - "type": "std::string", - "id": 4, - "offset": 112, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2813328063 - }, - "m_iconIndex": { - "type": "unsigned int", - "id": 5, - "offset": 144, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1265133262 - }, - "m_soundOnActivate": { - "type": "std::string", - "id": 6, - "offset": 152, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1956929714 - }, - "m_soundOnTarget": { - "type": "std::string", - "id": 7, - "offset": 184, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3444214056 - }, - "m_targetParticleEffect": { - "type": "std::string", - "id": 8, - "offset": 216, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3048234723 - }, - "m_overheadMessage": { - "type": "std::string", - "id": 9, - "offset": 248, - "flags": 8388639, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1701018190 - }, - "m_requirements": { - "type": "class RequirementList", - "id": 10, - "offset": 280, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2840988582 - }, - "m_nAmountToSteal": { - "type": "int", - "id": 11, - "offset": 376, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 247752792 - } - } - }, - "942649820": { - "name": "class ClaimedPeriodicOffers*", - "bases": [ - "PropertyClass" - ], - "hash": 942649820, - "properties": { - "m_crownsAdded": { - "type": "int", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 997797672 - }, - "m_itemsAdded": { - "type": "int", - "id": 1, - "offset": 76, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 737787694 - } - } - }, - "1330519911": { - "name": "class SharedPointer", - "bases": [ - "CinematicAction", - "PropertyClass" - ], - "hash": 1330519911, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_dialog": { - "type": "class ActorDialog*", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1310859212 - }, - "m_activePersona": { - "type": "std::string", - "id": 2, - "offset": 88, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1972573231 - } - } - }, - "943075406": { - "name": "class DerbyImmunityEffect*", - "bases": [ - "DerbyEffect", - "PropertyClass" - ], - "hash": 943075406, - "properties": { - "m_buffType": { - "type": "enum DerbyTalentBuffType", - "id": 0, - "offset": 92, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1149251982, - "enum_options": { - "Buff": 0, - "Debuff": 1, - "Neither": 2 - } - }, - "m_kTarget": { - "type": "enum DerbyTargetType", - "id": 1, - "offset": 96, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1807803351, - "enum_options": { - "kTargetInFront": 0, - "kTargetBehind": 1, - "kTargetFirst": 2, - "kTargetSelf": 3, - "kTargetAll": 4, - "kTargetLast": 5 - } - }, - "m_nDuration": { - "type": "int", - "id": 2, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1110167982 - }, - "m_effectID": { - "type": "unsigned int", - "id": 3, - "offset": 88, - "flags": 24, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2347630439 - }, - "m_imageFilename": { - "type": "std::string", - "id": 4, - "offset": 112, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2813328063 - }, - "m_iconIndex": { - "type": "unsigned int", - "id": 5, - "offset": 144, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1265133262 - }, - "m_soundOnActivate": { - "type": "std::string", - "id": 6, - "offset": 152, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1956929714 - }, - "m_soundOnTarget": { - "type": "std::string", - "id": 7, - "offset": 184, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3444214056 - }, - "m_targetParticleEffect": { - "type": "std::string", - "id": 8, - "offset": 216, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3048234723 - }, - "m_overheadMessage": { - "type": "std::string", - "id": 9, - "offset": 248, - "flags": 8388639, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1701018190 - }, - "m_requirements": { - "type": "class RequirementList", - "id": 10, - "offset": 280, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2840988582 - }, - "m_bToDebuffs": { - "type": "bool", - "id": 11, - "offset": 376, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1216111639 - } - } - }, - "1717562888": { - "name": "class CollectedEssenceTrackingData*", - "bases": [ - "PropertyClass" - ], - "hash": 1717562888, - "properties": { - "m_ownerGID": { - "type": "gid", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1765087575 - }, - "m_essencesCollected": { - "type": "int", - "id": 1, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1632116450 - }, - "m_templateID": { - "type": "unsigned int", - "id": 2, - "offset": 84, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1286746870 - } - } - }, - "1330192300": { - "name": "class TeleportProximityBehaviorTemplate*", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 1330192300, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - }, - "m_radius": { - "type": "float", - "id": 1, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 989410271 - }, - "m_offsetX": { - "type": "float", - "id": 2, - "offset": 124, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 315454742 - }, - "m_offsetY": { - "type": "float", - "id": 3, - "offset": 128, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 315454743 - }, - "m_offsetZ": { - "type": "float", - "id": 4, - "offset": 132, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 315454744 - }, - "m_locationName": { - "type": "std::string", - "id": 5, - "offset": 136, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1824218389 - }, - "m_housingExtraZone": { - "type": "std::string", - "id": 6, - "offset": 168, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2893855128 - }, - "m_requirementList": { - "type": "class RequirementList*", - "id": 7, - "offset": 200, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3581372079 - } - } - }, - "942344098": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 942344098, - "properties": {} - }, - "1329765184": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1329765184, - "properties": { - "m_initialStats": { - "type": "class PetStat", - "id": 0, - "offset": 72, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2249155308 - } - } - }, - "2126829138": { - "name": "class HousingSigilManager*", - "bases": [ - "PropertyClass" - ], - "hash": 2126829138, - "properties": {} - }, - "1717599408": { - "name": "class SharedPointer", - "bases": [ - "Requirement", - "PropertyClass" - ], - "hash": 1717599408, - "properties": { - "m_applyNOT": { - "type": "bool", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1746328074, - "enum_options": { - "__DEFAULT": 0 - } - }, - "m_operator": { - "type": "enum Requirement::Operator", - "id": 1, - "offset": 76, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2672792317, - "enum_options": { - "ROP_AND": 0, - "ROP_OR": 1, - "__DEFAULT": "ROP_AND" - } - } - } - }, - "552944636": { - "name": "struct std::pair", - "bases": [], - "hash": 552944636, - "properties": {} - }, - "942114168": { - "name": "class BeneficialProximityBehaviorBase*", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 942114168, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - } - } - }, - "2125408961": { - "name": "class SharedPointer", - "bases": [ - "Window", - "PropertyClass" - ], - "hash": 2125408961, - "properties": { - "m_sName": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306437263 - }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621225959 - }, - "m_Style": { - "type": "unsigned int", - "id": 2, - "offset": 152, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152, - "CBF_SORTED": 16777216 - } - }, - "m_Flags": { - "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } - }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3105139380 - }, - "m_fTargetAlpha": { - "type": "float", - "id": 5, - "offset": 212, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1809129834 - }, - "m_fDisabledAlpha": { - "type": "float", - "id": 6, - "offset": 216, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1389987675 - }, - "m_fAlpha": { - "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 482130755 - }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3623628394 - }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2102211316 - }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1846695875 - }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3389835433 - }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2547159940 - }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2587533771 - }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3091503757 - }, - "m_Items": { - "type": "class ComboItem", - "id": 16, - "offset": 584, - "flags": 135, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2627949239 - }, - "m_nSelected": { - "type": "int", - "id": 17, - "offset": 608, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1017366545 - }, - "m_nExpandedSize": { - "type": "int", - "id": 18, - "offset": 612, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1542607084 - }, - "m_nButtonSize": { - "type": "int", - "id": 19, - "offset": 616, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1917634655 - }, - "m_pButtonMaterial": { - "type": "class SharedPointer", - "id": 20, - "offset": 624, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2439977842 - }, - "m_buttonStyle": { - "type": "class SharedPointer", - "id": 21, - "offset": 736, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1791389598 - } - } - }, - "552606866": { - "name": "class ObstacleCourseObstaclePathBaseTemplate*", - "bases": [ - "ObstacleCourseObstacleBehaviorTemplate", - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 552606866, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - }, - "m_rate": { - "type": "float", - "id": 1, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 310005283 - }, - "m_penaltyTime": { - "type": "float", - "id": 2, - "offset": 124, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2083389507 - }, - "m_totalObstacleSize": { - "type": "class Vector3D", - "id": 3, - "offset": 128, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2379878414 - }, - "m_bounds": { - "type": "class Vector3D", - "id": 4, - "offset": 152, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1948083181 - }, - "m_orientToPath": { - "type": "bool", - "id": 5, - "offset": 176, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 655036148 - }, - "m_heightUp": { - "type": "float", - "id": 6, - "offset": 140, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2208713013 - }, - "m_heightDown": { - "type": "float", - "id": 7, - "offset": 144, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 655333896 - } - } - }, - "942084836": { - "name": "class DiegoCombatObserver", - "bases": [ - "CombatObserver", - "PropertyClass" - ], - "hash": 942084836, - "properties": { - "m_playerStats": { - "type": "class SharedPointer", - "id": 0, - "offset": 88, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 873719258 - } - } - }, - "1330192380": { - "name": "class TeleportProximityBehaviorTemplate", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 1330192380, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - }, - "m_radius": { - "type": "float", - "id": 1, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 989410271 - }, - "m_offsetX": { - "type": "float", - "id": 2, - "offset": 124, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 315454742 - }, - "m_offsetY": { - "type": "float", - "id": 3, - "offset": 128, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 315454743 - }, - "m_offsetZ": { - "type": "float", - "id": 4, - "offset": 132, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 315454744 - }, - "m_locationName": { - "type": "std::string", - "id": 5, - "offset": 136, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1824218389 - }, - "m_housingExtraZone": { - "type": "std::string", - "id": 6, - "offset": 168, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2893855128 - }, - "m_requirementList": { - "type": "class RequirementList*", - "id": 7, - "offset": 200, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3581372079 - } - } - }, - "1718635905": { - "name": "class ElasticCamController*", - "bases": [ - "CameraController", - "PropertyClass" - ], - "hash": 1718635905, - "properties": {} - }, - "2127103072": { - "name": "class SharedPointer", - "bases": [ - "Window", - "PropertyClass" - ], - "hash": 2127103072, - "properties": { - "m_sName": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306437263 - }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621225959 - }, - "m_Style": { - "type": "unsigned int", - "id": 2, - "offset": 152, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "SCALE_CHILDREN": 2, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "FOCUS_LOCKED": 64, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152 - } - }, - "m_Flags": { - "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } - }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3105139380 - }, - "m_fTargetAlpha": { - "type": "float", - "id": 5, - "offset": 212, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1809129834 - }, - "m_fDisabledAlpha": { - "type": "float", - "id": 6, - "offset": 216, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1389987675 - }, - "m_fAlpha": { - "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 482130755 - }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3623628394 - }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2102211316 - }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1846695875 - }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3389835433 - }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2547159940 - }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2587533771 - }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3091503757 - } - } - }, - "1717939045": { - "name": "class DebugCinematicsComponent", - "bases": [ - "PropertyClass" - ], - "hash": 1717939045, - "properties": {} - }, - "553226975": { - "name": "class PlacementDisplayItem*", - "bases": [ - "PropertyClass" - ], - "hash": 553226975, - "properties": {} - }, - "942399763": { - "name": "class MassShapeTemplate", - "bases": [ - "PropertyClass" - ], - "hash": 942399763, - "properties": { - "m_fCenterOfMassX": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1084414079 - }, - "m_fCenterOfMassY": { - "type": "float", - "id": 1, - "offset": 76, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1084414080 - }, - "m_fCenterOfMassZ": { - "type": "float", - "id": 2, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1084414081 - }, - "m_MassShape": { - "type": "enum MassShapeTemplate::MassShape", - "id": 3, - "offset": 84, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2243789942, - "enum_options": { - "__DEFAULT": "MS_SPHERE", - "MS_SPHERE": 0, - "MS_CYLINDER": 1, - "MS_TUBE": 2, - "MS_BOX": 3, - "MS_MESH": 4 - } - }, - "m_fRadiusMeters": { - "type": "float", - "id": 4, - "offset": 88, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 459620885, - "enum_options": { - "__DEFAULT": "1.0" - } - }, - "m_CylinderDirection": { - "type": "int", - "id": 5, - "offset": 92, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1961650261, - "enum_options": { - "__DEFAULT": 1, - "CD_X": 1, - "CD_Y": 2, - "CD_Z": 3 - } - }, - "m_fLength": { - "type": "float", - "id": 6, - "offset": 96, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 558261279, - "enum_options": { - "__DEFAULT": "1.0" - } - }, - "m_fWidth": { - "type": "float", - "id": 7, - "offset": 100, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 508100541, - "enum_options": { - "__DEFAULT": "1.0" - } - }, - "m_fHeight": { - "type": "float", - "id": 8, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 401539638, - "enum_options": { - "__DEFAULT": "1.0" - } - }, - "m_fMassKilograms": { - "type": "float", - "id": 9, - "offset": 108, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1502844666, - "enum_options": { - "__DEFAULT": "1.0" - } - } - } - }, - "1330807243": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1330807243, - "properties": {} - }, - "1718000972": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1718000972, - "properties": { - "m_level": { - "type": "int", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 801285362 - }, - "m_xpToLevel": { - "type": "int", - "id": 1, - "offset": 76, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1972600157 - }, - "m_hitpoints": { - "type": "int", - "id": 2, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1545062140 - }, - "m_mana": { - "type": "int", - "id": 3, - "offset": 84, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 219624247 - }, - "m_gold": { - "type": "int", - "id": 4, - "offset": 88, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 219423808 - }, - "m_levelName": { - "type": "std::string", - "id": 5, - "offset": 136, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3595417396 - }, - "m_pipChance": { - "type": "float", - "id": 6, - "offset": 168, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1744274210 - }, - "m_trainingPoints": { - "type": "int", - "id": 7, - "offset": 172, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1003892499 - }, - "m_craftingSlots": { - "type": "int", - "id": 8, - "offset": 92, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1998878589 - }, - "m_petEnergy": { - "type": "int", - "id": 9, - "offset": 96, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1787948493 - }, - "m_pipConversionRatingAllSchools": { - "type": "int", - "id": 10, - "offset": 100, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1570450594 - }, - "m_pipConversionRatingFire": { - "type": "int", - "id": 11, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1427121812 - }, - "m_pipConversionRatingIce": { - "type": "int", - "id": 12, - "offset": 108, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 108410207 - }, - "m_pipConversionRatingStorm": { - "type": "int", - "id": 13, - "offset": 112, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2010842115 - }, - "m_pipConversionRatingLife": { - "type": "int", - "id": 14, - "offset": 116, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1427337038 - }, - "m_pipConversionRatingMyth": { - "type": "int", - "id": 15, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1427390864 - }, - "m_pipConversionRatingDeath": { - "type": "int", - "id": 16, - "offset": 124, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1992499060 - }, - "m_pipConversionRatingBalance": { - "type": "int", - "id": 17, - "offset": 128, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 197129012 - }, - "m_shadowPipRating": { - "type": "float", - "id": 18, - "offset": 176, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 507126123 - }, - "m_archmastery": { - "type": "float", - "id": 19, - "offset": 180, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1963579610 - } - } - }, - "552982936": { - "name": "class HatchmakingPet*", - "bases": [ - "PropertyClass" - ], - "hash": 552982936, - "properties": { - "m_petGID": { - "type": "gid", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 826202069 - }, - "m_ageOutTime": { - "type": "unsigned int", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 819371137 - }, - "m_cooldownTime": { - "type": "unsigned int", - "id": 2, - "offset": 84, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 902182593 - }, - "m_petTemplateID": { - "type": "unsigned int", - "id": 3, - "offset": 88, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 817215071 - }, - "m_hatchCount": { - "type": "unsigned int", - "id": 4, - "offset": 92, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1273194302 - }, - "m_nameKey": { - "type": "unsigned int", - "id": 5, - "offset": 96, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1104764311 - }, - "m_petItemGID": { - "type": "gid", - "id": 6, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2122895620 - } - } - }, - "2128070170": { - "name": "class WinAnimScaleSymmetricalTime", - "bases": [ - "WinAnimScaleSymmetrical", - "WindowAnimation", - "PropertyClass" - ], - "hash": 2128070170, - "properties": { - "m_bUseDeepCopy": { - "type": "bool", - "id": 0, - "offset": 72, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 433380635 - }, - "m_scale": { - "type": "float", - "id": 1, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 899693439 - }, - "m_fTimeTotal": { - "type": "float", - "id": 2, - "offset": 88, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 661225456 - }, - "m_fTimeRemaining": { - "type": "float", - "id": 3, - "offset": 92, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1591443014 - } - } - }, - "942445695": { - "name": "class HatchmakingCrownsPetList*", - "bases": [ - "PropertyClass" - ], - "hash": 942445695, - "properties": { - "m_petTemplateList": { - "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 567776494 - } - } - }, - "2127933506": { - "name": "class RevealHangingCinematicStageTemplate", - "bases": [ - "CinematicStageTemplate", - "PropertyClass" - ], - "hash": 2127933506, - "properties": { - "m_name": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1717359772 - }, - "m_duration": { - "type": "float", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 920323453 - }, - "m_actions": { - "type": "class SharedPointer", - "id": 2, - "offset": 112, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1380578687 - }, - "m_stageRelationships": { - "type": "class SharedPointer", - "id": 3, - "offset": 128, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 499983354 - }, - "m_stopRotating": { - "type": "bool", - "id": 4, - "offset": 153, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 13587553 - }, - "m_startRotating": { - "type": "bool", - "id": 5, - "offset": 154, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 839204969 - }, - "m_revealText": { - "type": "std::string", - "id": 6, - "offset": 160, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2011500383 - }, - "m_bSwitchCameraToWideLong": { - "type": "bool", - "id": 7, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2136912684, - "enum_options": { - "__DEFAULT": 1 - } - } - } - }, - "1343503713": { - "name": "class MatchTeamResult", - "bases": [ - "PropertyClass" - ], - "hash": 1343503713, - "properties": { - "m_teamID": { - "type": "gid", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 982102220 - }, - "m_teamResolution": { - "type": "unsigned char", - "id": 1, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1933240587 - } - } - }, - "1718854234": { - "name": "class SharedPointer", - "bases": [ - "CinematicStageTemplate", - "PropertyClass" - ], - "hash": 1718854234, - "properties": { - "m_name": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1717359772 - }, - "m_duration": { - "type": "float", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 920323453 - }, - "m_actions": { - "type": "class SharedPointer", - "id": 2, - "offset": 112, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1380578687 - }, - "m_stageRelationships": { - "type": "class SharedPointer", - "id": 3, - "offset": 128, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 499983354 - }, - "m_stopRotating": { - "type": "bool", - "id": 4, - "offset": 153, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 13587553 - }, - "m_startRotating": { - "type": "bool", - "id": 5, - "offset": 154, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 839204969 - }, - "m_startRotationTime": { - "type": "float", - "id": 6, - "offset": 156, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1011449124 - }, - "m_camRel": { - "type": "enum CameraCutCinematicAction::kCameraRelative", - "id": 7, - "offset": 164, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 919962138, - "enum_options": { - "kSigil": 1, - "kTarget": 2, - "kSource": 3, - "kActor": 4, - "__DEFAULT": "kTarget" - } - }, - "m_bSwitchCameraToWideLong": { - "type": "bool", - "id": 8, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2136912684, - "enum_options": { - "__DEFAULT": 1 - } - }, - "m_isCloaked": { - "type": "bool", - "id": 9, - "offset": 160, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1175302050 - } - } - }, - "553226999": { - "name": "class PlacementDisplayItem", - "bases": [ - "PropertyClass" - ], - "hash": 553226999, - "properties": {} - }, - "1338879513": { - "name": "class PositionalStateSoundBehavior*", - "bases": [ - "PositionalSoundBehavior", - "SoundBehavior", - "AreaBehavior", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1338879513, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_radius": { - "type": "float", - "id": 1, - "offset": 116, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 989410271 - }, - "m_category": { - "type": "enum AudioCategory", - "id": 2, - "offset": 124, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2951251982, - "enum_options": { - "AudioCategory_Irrelevent": 0, - "AudioCategory_Accoustic": 1, - "AudioCategory_Noise": 2, - "AudioCategory_Music": 3 - } - }, - "m_exclusive": { - "type": "bool", - "id": 3, - "offset": 128, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 824383403 - }, - "m_playList": { - "type": "class PlayList", - "id": 4, - "offset": 176, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2061221957 - }, - "m_volume": { - "type": "float", - "id": 5, - "offset": 304, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1162855023 - }, - "m_loopCount": { - "type": "int", - "id": 6, - "offset": 308, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 865634717 - }, - "m_minimumFalloff": { - "type": "float", - "id": 7, - "offset": 328, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 355697197 - }, - "m_maximumFalloff": { - "type": "float", - "id": 8, - "offset": 332, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2210192367 - }, - "m_animDriven": { - "type": "bool", - "id": 9, - "offset": 392, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 398394720 - }, - "m_inverted": { - "type": "bool", - "id": 10, - "offset": 397, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1034821044 - }, - "m_animationName": { - "type": "std::string", - "id": 11, - "offset": 512, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3393414044 - } - } - }, - "2128035660": { - "name": "class SharedPointer", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 2128035660, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_breadCrumbNumber": { - "type": "unsigned int", - "id": 1, - "offset": 112, - "flags": 65543, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2100995821 - }, - "m_equippedPetGIDList": { - "type": "gid", - "id": 2, - "offset": 120, - "flags": 65543, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1574152046 - }, - "m_equippedBreadCrumbIDList": { - "type": "unsigned short", - "id": 3, - "offset": 136, - "flags": 65543, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 592278117 - }, - "m_flags": { - "type": "unsigned int", - "id": 4, - "offset": 152, - "flags": 65543, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1005801050 - } - } - }, - "1718635945": { - "name": "class ElasticCamController", - "bases": [ - "CameraController", - "PropertyClass" - ], - "hash": 1718635945, - "properties": {} - }, - "942650588": { - "name": "class ClaimedPeriodicOffers", - "bases": [ - "PropertyClass" - ], - "hash": 942650588, - "properties": { - "m_crownsAdded": { - "type": "int", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 997797672 - }, - "m_itemsAdded": { - "type": "int", - "id": 1, - "offset": 76, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 737787694 - } - } - }, - "1338544027": { - "name": "class CrownShopPurchasesInfo", - "bases": [ - "PropertyClass" - ], - "hash": 1338544027, - "properties": { - "m_crownShopPurchases": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 845434554 - } - } - }, - "1336689030": { - "name": "class Window*", - "bases": [ - "PropertyClass" - ], - "hash": 1336689030, - "properties": { - "m_sName": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306437263 - }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621225959 - }, - "m_Style": { - "type": "unsigned int", - "id": 2, - "offset": 152, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "SCALE_CHILDREN": 2, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "FOCUS_LOCKED": 64, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152 - } - }, - "m_Flags": { - "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } - }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3105139380 - }, - "m_fTargetAlpha": { - "type": "float", - "id": 5, - "offset": 212, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1809129834 - }, - "m_fDisabledAlpha": { - "type": "float", - "id": 6, - "offset": 216, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1389987675 - }, - "m_fAlpha": { - "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 482130755 - }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3623628394 - }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2102211316 - }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1846695875 - }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3389835433 - }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2547159940 - }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2587533771 - }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3091503757 - } - } - }, - "559204499": { - "name": "class WindowStyle*", - "bases": [ - "PropertyClass" - ], - "hash": 559204499, - "properties": { - "m_pBackMaterial": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1628562023 - }, - "m_pFont": { - "type": "class SharedPointer", - "id": 1, - "offset": 88, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1067686307 - }, - "m_pLargeFont": { - "type": "class SharedPointer", - "id": 2, - "offset": 104, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1523900782 - }, - "m_pSmallFont": { - "type": "class SharedPointer", - "id": 3, - "offset": 120, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2363252956 - }, - "m_Color": { - "type": "class Color", - "id": 4, - "offset": 136, - "flags": 262279, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1753714077 - }, - "m_HighColor": { - "type": "class Color", - "id": 5, - "offset": 140, - "flags": 262279, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2310527421 - }, - "m_SelectColor": { - "type": "class Color", - "id": 6, - "offset": 144, - "flags": 262279, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2792529213 - }, - "m_BorderColor": { - "type": "class Color", - "id": 7, - "offset": 148, - "flags": 262279, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1470576795 - }, - "m_BackColor": { - "type": "class Color", - "id": 8, - "offset": 152, - "flags": 262279, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1070928782 - }, - "m_ScrollBarColor": { - "type": "class Color", - "id": 9, - "offset": 156, - "flags": 262279, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1180747361 - }, - "m_ScrollTabColor": { - "type": "class Color", - "id": 10, - "offset": 160, - "flags": 262279, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1034892323 - }, - "m_nBorderSize": { - "type": "int", - "id": 11, - "offset": 164, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2016376897 - }, - "m_nScrollSize": { - "type": "int", - "id": 12, - "offset": 168, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 632681746 - }, - "m_sHoverSound": { - "type": "std::string", - "id": 13, - "offset": 176, - "flags": 131207, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2662773595 - }, - "m_sSelectSound": { - "type": "std::string", - "id": 14, - "offset": 208, - "flags": 131207, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2596786807 - } - } - }, - "1332841052": { - "name": "class SharedPointer", - "bases": [ - "ShadowCreatureLevelTransitionCinematicAction", - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 1332841052, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - } - } - }, - "2128144061": { - "name": "class SharedPointer", - "bases": [ - "GameEffectInfo", - "PropertyClass" - ], - "hash": 2128144061, - "properties": { - "m_effectName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2029161513 - } - } - }, - "1718971766": { - "name": "class SharedPointer", - "bases": [ - "CombatRule", - "PropertyClass" - ], - "hash": 1718971766, - "properties": { - "m_damageLimit": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 271286357 - }, - "m_dK0": { - "type": "float", - "id": 1, - "offset": 76, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 357232662 - }, - "m_dN0": { - "type": "float", - "id": 2, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 357232761 - } - } - }, - "554351844": { - "name": "class ItemFinderBehavior*", - "bases": [ - "ItemFinderBehaviorBase", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 554351844, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - } - } - }, - "944437540": { - "name": "class WinAnimScale", - "bases": [ - "WindowAnimation", - "PropertyClass" - ], - "hash": 944437540, - "properties": { - "m_bUseDeepCopy": { - "type": "bool", - "id": 0, - "offset": 72, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 433380635 - }, - "m_scale": { - "type": "float", - "id": 1, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 899693439 - } - } - }, - "1331628719": { - "name": "class BracketRewardsPlaceMapping", - "bases": [ - "PropertyClass" - ], - "hash": 1331628719, - "properties": { - "m_numOfTeams": { - "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2164625196 - }, - "m_mappedPlace": { - "type": "unsigned int", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1626881929 - } - } - }, - "2128070490": { - "name": "class WinAnimScaleSymmetricalTime*", - "bases": [ - "WinAnimScaleSymmetrical", - "WindowAnimation", - "PropertyClass" - ], - "hash": 2128070490, - "properties": { - "m_bUseDeepCopy": { - "type": "bool", - "id": 0, - "offset": 72, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 433380635 - }, - "m_scale": { - "type": "float", - "id": 1, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 899693439 - }, - "m_fTimeTotal": { - "type": "float", - "id": 2, - "offset": 88, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 661225456 - }, - "m_fTimeRemaining": { - "type": "float", - "id": 3, - "offset": 92, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1591443014 - } - } - }, - "553972393": { - "name": "class DaysSinceItemPurchased*", - "bases": [ - "PropertyClass" - ], - "hash": 553972393, - "properties": { - "m_itemTemplateID": { - "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2190120133 - }, - "m_daysSinceItemPurchased": { - "type": "int", - "id": 1, - "offset": 76, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 539199563 - } - } - }, - "943950231": { - "name": "class SharedPointer", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 943950231, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - }, - "m_castleMagicItemType": { - "type": "enum CastleMagicItemType", - "id": 1, - "offset": 120, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3772531839, - "enum_options": { - "CM_Lever": 0, - "CM_PlayerDetector": 1, - "CM_PressurePlate": 2, - "CM_StartDetector": 3, - "CM_Brazier": 4, - "CM_TextDetector": 5, - "CM_JumpDetector": 6, - "CM_MagicReflector": 7, - "CM_Timer": 8, - "CM_RandomReflector": 9, - "CM_MagicButton": 10, - "CM_Computer": 11, - "CM_FireOrbCreator": 12, - "CM_IceOrbCreator": 13, - "CM_StormOrbCreator": 14, - "CM_FireOrbDetector": 15, - "CM_IceOrbDetector": 16, - "CM_StormOrbDetector": 17, - "CM_Help": 18, - "CM_RoomDetector": 19, - "CM_Counter": 20, - "CM_ItemDetector": 21, - "CM_AnyItemPlayerDetector": 22, - "CM_SequenceReflector": 23, - "CM_FastTimer": 24, - "CM_CantripDetector": 25 - } - }, - "m_numberOfActions": { - "type": "int", - "id": 2, - "offset": 124, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1161288009 - }, - "m_actionStringKeys": { - "type": "std::string", - "id": 3, - "offset": 128, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2973138892 - } - } - }, - "553931433": { - "name": "class DaysSinceItemPurchased", - "bases": [ - "PropertyClass" - ], - "hash": 553931433, - "properties": { - "m_itemTemplateID": { - "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2190120133 - }, - "m_daysSinceItemPurchased": { - "type": "int", - "id": 1, - "offset": 76, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 539199563 - } - } - }, - "943348561": { - "name": "class SharedPointer", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 943348561, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - } - } - }, - "1760725320": { - "name": "class SharedPointer", - "bases": [ - "Requirement", - "PropertyClass" - ], - "hash": 1760725320, - "properties": { - "m_applyNOT": { - "type": "bool", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1746328074, - "enum_options": { - "__DEFAULT": 0 - } - }, - "m_operator": { - "type": "enum Requirement::Operator", - "id": 1, - "offset": 76, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2672792317, - "enum_options": { - "ROP_AND": 0, - "ROP_OR": 1, - "__DEFAULT": "ROP_AND" - } - }, - "m_requirements": { - "type": "class Requirement*", - "id": 2, - "offset": 80, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1347801628 - } - } - }, - "1335955714": { - "name": "class SharedPointer", - "bases": [ - "HatchmakingKioskBehaviorBase", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1335955714, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_hatchDayPetCode": { - "type": "unsigned int", - "id": 1, - "offset": 112, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1354692695 - } - } - }, - "2128942035": { - "name": "class InitialCombatSound", - "bases": [ - "PropertyClass" - ], - "hash": 2128942035, - "properties": { - "m_worldZoneName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2739174336 - }, - "m_soundList": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2277086720 - } - } - }, - "1745616230": { - "name": "class SharedPointer", - "bases": [ - "ServiceOptionBase", - "PropertyClass" - ], - "hash": 1745616230, - "properties": { - "m_serviceName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2206028813 - }, - "m_iconKey": { - "type": "std::string", - "id": 1, - "offset": 168, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2457138637 - }, - "m_displayKey": { - "type": "std::string", - "id": 2, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3023276954 - }, - "m_serviceIndex": { - "type": "unsigned int", - "id": 3, - "offset": 204, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2103126710 - }, - "m_forceInteract": { - "type": "bool", - "id": 4, - "offset": 200, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1705789564 - } - } - }, - "1734670745": { - "name": "class SharedPointer", - "bases": [ - "GameEffectTemplate", - "PropertyClass" - ], - "hash": 1734670745, - "properties": { - "m_effectName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2029161513 - }, - "m_effectCategory": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1852673222 - }, - "m_sortOrder": { - "type": "int", - "id": 2, - "offset": 148, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1411218206 - }, - "m_duration": { - "type": "double", - "id": 3, - "offset": 192, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2727932435 - }, - "m_stackingCategories": { - "type": "std::string", - "id": 4, - "offset": 160, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1774497525 - }, - "m_isPersistent": { - "type": "bool", - "id": 5, - "offset": 153, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 923861920 - }, - "m_bIsOnPet": { - "type": "bool", - "id": 6, - "offset": 154, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 522593303 - }, - "m_isPublic": { - "type": "bool", - "id": 7, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1728439822 - }, - "m_visualEffectAddName": { - "type": "std::string", - "id": 8, - "offset": 200, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3382086694 - }, - "m_visualEffectRemoveName": { - "type": "std::string", - "id": 9, - "offset": 232, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1541697323 - }, - "m_onAddFunctorName": { - "type": "std::string", - "id": 10, - "offset": 280, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1561843107 - }, - "m_onRemoveFunctorName": { - "type": "std::string", - "id": 11, - "offset": 312, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2559017864 - }, - "m_stackingRule": { - "type": "enum STACKING_RULE", - "id": 12, - "offset": 144, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 431568889, - "enum_options": { - "STACKING_ALLOWED": 0, - "STACKING_NOSTACK": 1, - "STACKING_REPLACE": 2 - } - }, - "m_speedMultiplier": { - "type": "int", - "id": 13, - "offset": 360, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 32503058 - } - } - }, - "553972876": { - "name": "class SharedPointer", - "bases": [ - "CantripsInvisibilityEffect", - "GameEffectBase", - "PropertyClass" - ], - "hash": 553972876, - "properties": { - "m_currentTickCount": { - "type": "double", - "id": 0, - "offset": 80, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2533274692 - }, - "m_effectNameID": { - "type": "unsigned int", - "id": 1, - "offset": 96, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1204067144 - }, - "m_bIsOnPet": { - "type": "bool", - "id": 2, - "offset": 73, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 522593303 - }, - "m_originatorID": { - "type": "gid", - "id": 3, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1131810019 - }, - "m_itemSlotID": { - "type": "unsigned int", - "id": 4, - "offset": 112, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1895747595 - }, - "m_internalID": { - "type": "int", - "id": 5, - "offset": 92, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1643137924 - }, - "m_endTime": { - "type": "unsigned int", - "id": 6, - "offset": 88, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 716479635 - } - } - }, - "1336375904": { - "name": "class NPCBehavior", - "bases": [ - "NameOverrideBehavior", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1336375904, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_wsNameOverride": { - "type": "std::wstring", - "id": 1, - "offset": 120, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2131249091 - }, - "m_firstName": { - "type": "std::string", - "id": 2, - "offset": 160, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3116002948 - }, - "m_lastName": { - "type": "std::string", - "id": 3, - "offset": 192, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1826203600 - }, - "m_nickname": { - "type": "std::string", - "id": 4, - "offset": 224, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2269863201 - }, - "m_title": { - "type": "std::string", - "id": 5, - "offset": 256, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2308614141 - }, - "m_isMonster": { - "type": "bool", - "id": 6, - "offset": 288, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1321956791 - } - } - }, - "1725394101": { - "name": "struct ControlList::Column*", - "bases": [ - "PropertyClass" - ], - "hash": 1725394101, - "properties": { - "m_nWidth": { - "type": "int", - "id": 0, - "offset": 72, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 730982536 - }, - "m_Color": { - "type": "class Color", - "id": 1, - "offset": 76, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1753714077 - } - } - }, - "945965785": { - "name": "class AdvPvPEloRecord*", - "bases": [ - "PropertyClass" - ], - "hash": 945965785, - "properties": { - "m_eloRecordID": { - "type": "gid", - "id": 0, - "offset": 72, - "flags": 16777279, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 832082468 - }, - "m_leagueID": { - "type": "unsigned int", - "id": 1, - "offset": 80, - "flags": 33554495, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 692361645 - }, - "m_seasonID": { - "type": "unsigned int", - "id": 2, - "offset": 84, - "flags": 33554495, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 535260643 - }, - "m_startTime": { - "type": "unsigned int", - "id": 3, - "offset": 88, - "flags": 33554495, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1598371274 - }, - "m_ended": { - "type": "bool", - "id": 4, - "offset": 92, - "flags": 33554495, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 795768915 - }, - "m_elo": { - "type": "int", - "id": 5, - "offset": 96, - "flags": 33554495, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 267033754 - }, - "m_rankIndex": { - "type": "int", - "id": 6, - "offset": 100, - "flags": 33554495, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 716259486 - }, - "m_wins": { - "type": "int", - "id": 7, - "offset": 104, - "flags": 33554495, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 219992347 - }, - "m_losses": { - "type": "int", - "id": 8, - "offset": 108, - "flags": 33554495, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 681549075 - }, - "m_draws": { - "type": "int", - "id": 9, - "offset": 112, - "flags": 33554495, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 792242907 - } - } - }, - "2140375305": { - "name": "class MinigameSigilOptionMonthlyGauntletFields", - "bases": [ - "PropertyClass" - ], - "hash": 2140375305, - "properties": { - "m_classProjectID": { - "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 996536487 - }, - "m_sigilIcon": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3177480156 - } - } - }, - "1724159533": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1724159533, - "properties": { - "m_dailyPvPList": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2102460099 - } - } - }, - "554196070": { - "name": "class TransformationEffectInfo*", - "bases": [ - "GameEffectInfo", - "PropertyClass" - ], - "hash": 554196070, - "properties": { - "m_effectName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2029161513 - }, - "m_sRace": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 268435463, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306580681, - "enum_options": { - "__BASECLASS": "CharacterRaceTable" - } - }, - "m_eGender": { - "type": "enum eGender", - "id": 2, - "offset": 136, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2776344943, - "enum_options": { - "Male": 1, - "Female": 0, - "Neutral": 2 - } - }, - "m_fScale": { - "type": "float", - "id": 3, - "offset": 140, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 503137701 - }, - "m_nPrimaryColor": { - "type": "int", - "id": 4, - "offset": 144, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 310334923 - }, - "m_nSecondaryColor": { - "type": "int", - "id": 5, - "offset": 148, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 516938671 - }, - "m_nPatternOption": { - "type": "int", - "id": 6, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 413195679 - }, - "m_nGeometryOption": { - "type": "int", - "id": 7, - "offset": 156, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 676541869 - }, - "m_sNaturalAttack": { - "type": "std::string", - "id": 8, - "offset": 160, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2131867453 - } - } - }, - "945578664": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 945578664, - "properties": { - "m_versionNumber": { - "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1265259452 - }, - "m_favoriteTemplateIDList": { - "type": "unsigned int", - "id": 1, - "offset": 80, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 372036018 - }, - "m_playerAddedTemplateIDList": { - "type": "unsigned int", - "id": 2, - "offset": 96, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2042557329 - } - } - }, - "2132434067": { - "name": "class LevelUpElixirBehaviorTemplate", - "bases": [ - "ElixirBehaviorTemplate", - "TimedItemBehaviorTemplate", - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 2132434067, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - }, - "m_expireTime": { - "type": "std::string", - "id": 1, - "offset": 128, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3122602039 - }, - "m_timerType": { - "type": "enum TimerType", - "id": 2, - "offset": 120, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 571744132, - "enum_options": { - "TimerType_Game": 0, - "TimerType_Calendar": 1 - } - }, - "m_typeList": { - "type": "std::string", - "id": 3, - "offset": 160, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2119049625 - }, - "m_equipParticle": { - "type": "std::string", - "id": 4, - "offset": 176, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2222557491 - }, - "m_unequipParticle": { - "type": "std::string", - "id": 5, - "offset": 208, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2215431638 - }, - "m_equipSound": { - "type": "std::string", - "id": 6, - "offset": 240, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2720016552 - }, - "m_unequipSound": { - "type": "std::string", - "id": 7, - "offset": 272, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1552545835 - }, - "m_equipActionList": { - "type": "class SharedPointer", - "id": 8, - "offset": 304, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1314016250 - }, - "m_unequipActionList": { - "type": "class SharedPointer", - "id": 9, - "offset": 320, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2143896925 - }, - "m_combatEnabled": { - "type": "bool", - "id": 10, - "offset": 336, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1399744148 - }, - "m_PvPEnabled": { - "type": "bool", - "id": 11, - "offset": 337, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1042852532 - }, - "m_setCharacterToLevel": { - "type": "int", - "id": 12, - "offset": 408, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1268456078 - }, - "m_resultingTrainingPoints": { - "type": "int", - "id": 13, - "offset": 412, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1710285808 - }, - "m_schoolSpecificData": { - "type": "class SharedPointer", - "id": 14, - "offset": 472, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2609926725 - }, - "m_allSchoolData": { - "type": "class SharedPointer", - "id": 15, - "offset": 488, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2860093528 - }, - "m_firstWarningStringKey": { - "type": "std::string", - "id": 16, - "offset": 344, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3095888729 - }, - "m_secondWarningStringKey": { - "type": "std::string", - "id": 17, - "offset": 376, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2111513997 - }, - "m_accessPasses": { - "type": "std::string", - "id": 18, - "offset": 456, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2956825884 - }, - "m_gold": { - "type": "int", - "id": 19, - "offset": 416, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 219423808 - }, - "m_tutorialEventsToTrigger": { - "type": "std::string", - "id": 20, - "offset": 424, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2795041819 - }, - "m_tipIDsToDismiss": { - "type": "gid", - "id": 21, - "offset": 440, - "flags": 33554439, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1424884996 - }, - "m_maxPotions": { - "type": "int", - "id": 22, - "offset": 504, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1639626892 - } - } - }, - "1721553725": { - "name": "class SharedPointer", - "bases": [ - "WizItemLocations", - "PropertyClass" - ], - "hash": 1721553725, - "properties": { - "m_itemType": { - "type": "enum WizItemLocations::eItemType", - "id": 0, - "offset": 72, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3482173907, - "enum_options": { - "shop": 0, - "quest": 1, - "boss": 2, - "gardening": 3, - "goldChest": 4 - } - }, - "m_plants": { - "type": "unsigned int", - "id": 1, - "offset": 80, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1045283519 - } - } - }, - "1338360674": { - "name": "class SharedPointer", - "bases": [ - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 1338360674, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - } - } - }, - "2131170360": { - "name": "class PipCinematicActor", - "bases": [ - "CinematicActor", - "PropertyClass" - ], - "hash": 2131170360, - "properties": {} - }, - "1720557061": { - "name": "class AccompanyNPCBehaviorTemplate*", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 1720557061, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - }, - "m_autoAdd": { - "type": "bool", - "id": 1, - "offset": 121, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2077986357 - }, - "m_autoRemove": { - "type": "bool", - "id": 2, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 665701306 - }, - "m_allowedQuests": { - "type": "std::string", - "id": 3, - "offset": 128, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1695271656 - }, - "m_allowedInZones": { - "type": "bool", - "id": 4, - "offset": 160, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 195607873 - }, - "m_zoneList": { - "type": "std::string", - "id": 5, - "offset": 168, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2171104787 - }, - "m_otherNpcsToReplace": { - "type": "std::string", - "id": 6, - "offset": 184, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 3637554352 - }, - "m_dontSpawnIfNpcIsPresent": { - "type": "std::string", - "id": 7, - "offset": 200, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 3130923110 - }, - "m_questEffectTemplate": { - "type": "class SharedPointer", - "id": 8, - "offset": 216, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3397272317 - } - } - }, - "1336859898": { - "name": "class TeamHelpFailWindow", - "bases": [ - "Window", - "PropertyClass" - ], - "hash": 1336859898, - "properties": { - "m_sName": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306437263 - }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621225959 - }, - "m_Style": { - "type": "unsigned int", - "id": 2, - "offset": 152, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "SCALE_CHILDREN": 2, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "FOCUS_LOCKED": 64, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152 - } - }, - "m_Flags": { - "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } - }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3105139380 - }, - "m_fTargetAlpha": { - "type": "float", - "id": 5, - "offset": 212, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1809129834 - }, - "m_fDisabledAlpha": { - "type": "float", - "id": 6, - "offset": 216, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1389987675 - }, - "m_fAlpha": { - "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 482130755 - }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3623628394 - }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2102211316 - }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1846695875 - }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3389835433 - }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2547159940 - }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2587533771 - }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3091503757 - } - } - }, - "2129848281": { - "name": "class FishingLevelInfo", - "bases": [ - "PropertyClass" - ], - "hash": 2129848281, - "properties": { - "m_level": { - "type": "unsigned char", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1438884808 - }, - "m_xpToLevel": { - "type": "int", - "id": 1, - "offset": 76, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1972600157 - }, - "m_levelName": { - "type": "std::string", - "id": 2, - "offset": 80, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3595417396 - } - } - }, - "1720243148": { - "name": "class SharedPointer", - "bases": [ - "GameEffectTimerDisplayBehavior", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1720243148, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_effectName": { - "type": "std::string", - "id": 1, - "offset": 112, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2029161513 - }, - "m_textKey": { - "type": "std::string", - "id": 2, - "offset": 144, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1720060457 - }, - "m_height": { - "type": "float", - "id": 3, - "offset": 176, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 602977104 - }, - "m_zOffset": { - "type": "float", - "id": 4, - "offset": 180, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 736134072 - }, - "m_red": { - "type": "unsigned char", - "id": 5, - "offset": 184, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 904647115 - }, - "m_green": { - "type": "unsigned char", - "id": 6, - "offset": 185, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1433403873 - }, - "m_blue": { - "type": "unsigned char", - "id": 7, - "offset": 186, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 856840600 - }, - "m_triggers": { - "type": "class SharedPointer", - "id": 8, - "offset": 192, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 3290329276 - } - } - }, - "558042069": { - "name": "class WizQuestData", - "bases": [ - "PropertyClass" - ], - "hash": 558042069, - "properties": { - "m_name": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1717359772 - }, - "m_questNameID": { - "type": "unsigned int", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1530354349 - }, - "m_title": { - "type": "std::string", - "id": 2, - "offset": 112, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2308614141 - }, - "m_id": { - "type": "gid", - "id": 3, - "offset": 232, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2090569797 - }, - "m_type": { - "type": "int", - "id": 4, - "offset": 224, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 219902012 - }, - "m_level": { - "type": "int", - "id": 5, - "offset": 228, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 801285362 - }, - "m_mainline": { - "type": "bool", - "id": 6, - "offset": 241, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1749856224 - }, - "m_readyToTurnIn": { - "type": "bool", - "id": 7, - "offset": 242, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 562395883 - }, - "m_activityType": { - "type": "enum QuestTemplate::ActivityType", - "id": 8, - "offset": 244, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 231656390, - "enum_options": { - "QuestTemplate::ACTIVITY_NotActivity": 0, - "QuestTemplate::ACTIVITY_Spell": 1, - "QuestTemplate::ACTIVITY_Crafting": 2, - "QuestTemplate::ACTIVITY_Fishing": 3, - "QuestTemplate::ACTIVITY_Gardening": 4, - "QuestTemplate::ACTIVITY_Pet": 5 - } - }, - "m_skipQHAutoSelect": { - "type": "bool", - "id": 9, - "offset": 248, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2024815836 - }, - "m_goalList": { - "type": "class SharedPointer", - "id": 10, - "offset": 256, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 748820753 - } - } - }, - "1336810695": { - "name": "class ParticipantParameter*", - "bases": [ - "PropertyClass" - ], - "hash": 1336810695, - "properties": { - "m_partID": { - "type": "gid", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 821435516 - }, - "m_data": { - "type": "unsigned int", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 430703463 - } - } - }, - "2129571857": { - "name": "class SharedPointer", - "bases": [ - "PhysicsSimMassCylinder", - "PhysicsSimMassSphere", - "PhysicsSimMass", - "PropertyClass" - ], - "hash": 2129571857, - "properties": {} - }, - "1719886359": { - "name": "class std::list >", - "bases": [], - "hash": 1719886359, - "properties": {} - }, - "555873041": { - "name": "class std::list >", - "bases": [], - "hash": 555873041, - "properties": {} - }, - "977662948": { - "name": "class ShoppingSellModifiers", - "bases": [ - "PropertyClass" - ], - "hash": 977662948, - "properties": { - "m_sellMultiplier": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1673304590 - }, - "m_sellAdditive": { - "type": "int", - "id": 1, - "offset": 76, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 776461780 - } - } - }, - "2129482934": { - "name": "class PetDerbyObstacleBehaviorClient*", - "bases": [ - "PetDerbyObstacleBehavior", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 2129482934, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_laneNumber": { - "type": "int", - "id": 1, - "offset": 184, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 650028867 - }, - "m_distanceFromStart": { - "type": "int", - "id": 2, - "offset": 188, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 649349799 - } - } - }, - "1719726891": { - "name": "class SharedPointer", - "bases": [ - "ReqNumeric", - "Requirement", - "PropertyClass" - ], - "hash": 1719726891, - "properties": { - "m_applyNOT": { - "type": "bool", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1746328074, - "enum_options": { - "__DEFAULT": 0 - } - }, - "m_operator": { - "type": "enum Requirement::Operator", - "id": 1, - "offset": 76, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2672792317, - "enum_options": { - "ROP_AND": 0, - "ROP_OR": 1, - "__DEFAULT": "ROP_AND" - } - }, - "m_numericValue": { - "type": "float", - "id": 2, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 521915239 - }, - "m_operatorType": { - "type": "enum ReqNumeric::OPERATOR_TYPE", - "id": 3, - "offset": 84, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2228122961, - "enum_options": { - "OPERATOR_UNKNOWN": 4294967295, - "OPERATOR_EQUALS": 0, - "OPERATOR_GREATER_THAN": 1, - "OPERATOR_LESS_THAN": 2, - "OPERATOR_GREATER_THAN_EQ": 3, - "OPERATOR_LESS_THAN_EQ": 4 - } - } - } - }, - "956204846": { - "name": "class JewelSocketUnlockCostList*", - "bases": [ - "PropertyClass" - ], - "hash": 956204846, - "properties": { - "m_jewelSocketUnlockList": { - "type": "class JewelSocketUnlockCost", - "id": 0, - "offset": 72, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2753944903 - } - } - }, - "1336810735": { - "name": "class ParticipantParameter", - "bases": [ - "PropertyClass" - ], - "hash": 1336810735, - "properties": { - "m_partID": { - "type": "gid", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 821435516 - }, - "m_data": { - "type": "unsigned int", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 430703463 - } - } - }, - "556511214": { - "name": "class SharedPointer", - "bases": [ - "Requirement", - "PropertyClass" - ], - "hash": 556511214, - "properties": { - "m_applyNOT": { - "type": "bool", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1746328074, - "enum_options": { - "__DEFAULT": 0 - } - }, - "m_operator": { - "type": "enum Requirement::Operator", - "id": 1, - "offset": 76, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2672792317, - "enum_options": { - "ROP_AND": 0, - "ROP_OR": 1, - "__DEFAULT": "ROP_AND" - } - }, - "m_title": { - "type": "std::string", - "id": 2, - "offset": 112, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2308614141 - }, - "m_tournament": { - "type": "std::string", - "id": 3, - "offset": 80, - "flags": 268435487, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2799932264, - "enum_options": { - "__BASECLASS": "TournamentTemplate" - } - } - } - }, - "950515264": { - "name": "class SharedPointer", - "bases": [ - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 950515264, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - } - } - }, - "948854326": { - "name": "class FadeActorCinematicAction*", - "bases": [ - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 948854326, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - }, - "m_fadeDuration": { - "type": "float", - "id": 2, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1402536557 - }, - "m_alphaTarget": { - "type": "float", - "id": 3, - "offset": 124, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 197622500 - } - } - }, - "2129800984": { - "name": "class NonCombatMayCastSpellGameEffect", - "bases": [ - "GameEffectBase", - "PropertyClass" - ], - "hash": 2129800984, - "properties": { - "m_currentTickCount": { - "type": "double", - "id": 0, - "offset": 80, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2533274692 - }, - "m_effectNameID": { - "type": "unsigned int", - "id": 1, - "offset": 96, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1204067144 - }, - "m_bIsOnPet": { - "type": "bool", - "id": 2, - "offset": 73, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 522593303 - }, - "m_originatorID": { - "type": "gid", - "id": 3, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1131810019 - }, - "m_itemSlotID": { - "type": "unsigned int", - "id": 4, - "offset": 112, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1895747595 - }, - "m_internalID": { - "type": "int", - "id": 5, - "offset": 92, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1643137924 - }, - "m_endTime": { - "type": "unsigned int", - "id": 6, - "offset": 88, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 716479635 - }, - "m_spellName": { - "type": "std::string", - "id": 7, - "offset": 128, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2688485244 - }, - "m_percentChance": { - "type": "int", - "id": 8, - "offset": 160, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 385662509 - } - } - }, - "947642643": { - "name": "class MassShapeTemplate*", - "bases": [ - "PropertyClass" - ], - "hash": 947642643, - "properties": { - "m_fCenterOfMassX": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1084414079 - }, - "m_fCenterOfMassY": { - "type": "float", - "id": 1, - "offset": 76, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1084414080 - }, - "m_fCenterOfMassZ": { - "type": "float", - "id": 2, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1084414081 - }, - "m_MassShape": { - "type": "enum MassShapeTemplate::MassShape", - "id": 3, - "offset": 84, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2243789942, - "enum_options": { - "__DEFAULT": "MS_SPHERE", - "MS_SPHERE": 0, - "MS_CYLINDER": 1, - "MS_TUBE": 2, - "MS_BOX": 3, - "MS_MESH": 4 - } - }, - "m_fRadiusMeters": { - "type": "float", - "id": 4, - "offset": 88, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 459620885, - "enum_options": { - "__DEFAULT": "1.0" - } - }, - "m_CylinderDirection": { - "type": "int", - "id": 5, - "offset": 92, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1961650261, - "enum_options": { - "__DEFAULT": 1, - "CD_X": 1, - "CD_Y": 2, - "CD_Z": 3 - } - }, - "m_fLength": { - "type": "float", - "id": 6, - "offset": 96, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 558261279, - "enum_options": { - "__DEFAULT": "1.0" - } - }, - "m_fWidth": { - "type": "float", - "id": 7, - "offset": 100, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 508100541, - "enum_options": { - "__DEFAULT": "1.0" - } - }, - "m_fHeight": { - "type": "float", - "id": 8, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 401539638, - "enum_options": { - "__DEFAULT": "1.0" - } - }, - "m_fMassKilograms": { - "type": "float", - "id": 9, - "offset": 108, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1502844666, - "enum_options": { - "__DEFAULT": "1.0" - } - } - } - }, - "1337319775": { - "name": "class SharedPointer", - "bases": [ - "SoundBehavior", - "AreaBehavior", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1337319775, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_radius": { - "type": "float", - "id": 1, - "offset": 116, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 989410271 - }, - "m_category": { - "type": "enum AudioCategory", - "id": 2, - "offset": 124, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2951251982, - "enum_options": { - "AudioCategory_Irrelevent": 0, - "AudioCategory_Accoustic": 1, - "AudioCategory_Noise": 2, - "AudioCategory_Music": 3 - } - }, - "m_exclusive": { - "type": "bool", - "id": 3, - "offset": 128, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 824383403 - }, - "m_playList": { - "type": "class PlayList", - "id": 4, - "offset": 176, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2061221957 - }, - "m_volume": { - "type": "float", - "id": 5, - "offset": 304, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1162855023 - }, - "m_loopCount": { - "type": "int", - "id": 6, - "offset": 308, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 865634717 - } - } - }, - "2129684441": { - "name": "class FishingLevelInfo*", - "bases": [ - "PropertyClass" - ], - "hash": 2129684441, - "properties": { - "m_level": { - "type": "unsigned char", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1438884808 - }, - "m_xpToLevel": { - "type": "int", - "id": 1, - "offset": 76, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1972600157 - }, - "m_levelName": { - "type": "std::string", - "id": 2, - "offset": 80, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3595417396 - } - } - }, - "1720446538": { - "name": "class SharedPointer", - "bases": [ - "TextureRemapBehavior", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1720446538, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_textureRemapList": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 3580415920 - } - } - }, - "558570914": { - "name": "class SharedPointer", - "bases": [ - "ControlList::ListItemState", - "PropertyClass" - ], - "hash": 558570914, - "properties": { - "m_pMaterial": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3479277078 - }, - "m_nMaterialFrame": { - "type": "int", - "id": 1, - "offset": 88, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1641923970 - }, - "m_nAnimBeginFrame": { - "type": "int", - "id": 2, - "offset": 96, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1469531165 - }, - "m_nAnimEndFrame": { - "type": "int", - "id": 3, - "offset": 100, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1659451087 - }, - "m_fAnimRate": { - "type": "float", - "id": 4, - "offset": 104, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 802385934 - }, - "m_bAnimLoop": { - "type": "bool", - "id": 5, - "offset": 108, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1487150228 - } - } - }, - "946447363": { - "name": "class GardeningXPLootInfo*", - "bases": [ - "LootInfo", - "LootInfoBase", - "PropertyClass" - ], - "hash": 946447363, - "properties": { - "m_lootType": { - "type": "enum LootInfo::LOOT_TYPE", - "id": 0, - "offset": 72, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1591891442, - "enum_options": { - "LOOT_TYPE_NONE": 0, - "LOOT_TYPE_GOLD": 1, - "LOOT_TYPE_MANA": 2, - "LOOT_TYPE_ITEM": 3, - "LOOT_TYPE_TREASURE_CARD": 4, - "LOOT_TYPE_MAGIC_XP": 5, - "LOOT_TYPE_ADD_SPELL": 6, - "LOOT_TYPE_MAX_HEALTH": 7, - "LOOT_TYPE_MAX_GOLD": 8, - "LOOT_TYPE_MAX_MANA": 9, - "LOOT_TYPE_MAX_POTION": 10, - "LOOT_TYPE_TRAINING_POINTS": 11, - "LOOT_TYPE_RECIPE": 12, - "LOOT_TYPE_CRAFTING_SLOT": 13, - "LOOT_TYPE_REAGENT": 14, - "LOOT_TYPE_PETSNACK": 15, - "LOOT_TYPE_GARDENING_XP": 16, - "LOOT_TYPE_PET_XP": 17, - "LOOT_TYPE_TREASURE_TABLE": 18, - "LOOT_TYPE_ARENA_POINTS": 19, - "LOOT_TYPE_ARENA_BONUS_POINTS": 20, - "LOOT_TYPE_GROUP": 21, - "LOOT_TYPE_FISHING_XP": 22, - "LOOT_TYPE_EVENT_CURRENCY_1": 24, - "LOOT_TYPE_EVENT_CURRENCY_2": 25, - "LOOT_TYPE_PVP_CURRENCY": 26, - "LOOT_TYPE_PVP_CURRENCY_BONUS": 27, - "LOOT_TYPE_PVP_TOURNEY_CURRENCY": 28, - "LOOT_TYPE_PVP_TOURNEY_CURRENCY_BONUS": 29, - "LOOT_TYPE_FURNITURE_ESSENCE": 30 - } - }, - "m_experience": { - "type": "int", - "id": 1, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 759357570 - } - } - }, - "946187001": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 946187001, - "properties": { - "m_percentChance": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 475863658 - }, - "m_descriptor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2283284954 - }, - "m_descriptor2": { - "type": "std::string", - "id": 2, - "offset": 112, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1649381388 - }, - "m_count": { - "type": "int", - "id": 3, - "offset": 144, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 790970659 - }, - "m_tallyResults": { - "type": "class ResultList*", - "id": 4, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2143999904 - } - } - }, - "1338519451": { - "name": "class CrownShopPurchasesInfo*", - "bases": [ - "PropertyClass" - ], - "hash": 1338519451, - "properties": { - "m_crownShopPurchases": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 845434554 - } - } - }, - "2129810295": { - "name": "class TeamHelpWorldInfo", - "bases": [ - "PropertyClass" - ], - "hash": 2129810295, - "properties": { - "m_buttonName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3388080120 - }, - "m_buttonStringKey": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3226477495 - }, - "m_displayIndex": { - "type": "int", - "id": 2, - "offset": 136, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1250551048 - }, - "m_minimumLevel": { - "type": "int", - "id": 3, - "offset": 140, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 327062478 - }, - "m_registryEntry": { - "type": "std::string", - "id": 4, - "offset": 144, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3056380390 - }, - "m_worldPath": { - "type": "std::string", - "id": 5, - "offset": 176, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1846829584 - }, - "m_spiralShowcaseStringKey": { - "type": "std::string", - "id": 6, - "offset": 208, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2723709283 - } - } - }, - "1720563205": { - "name": "class AccompanyNPCBehaviorTemplate", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 1720563205, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - }, - "m_autoAdd": { - "type": "bool", - "id": 1, - "offset": 121, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2077986357 - }, - "m_autoRemove": { - "type": "bool", - "id": 2, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 665701306 - }, - "m_allowedQuests": { - "type": "std::string", - "id": 3, - "offset": 128, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1695271656 - }, - "m_allowedInZones": { - "type": "bool", - "id": 4, - "offset": 160, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 195607873 - }, - "m_zoneList": { - "type": "std::string", - "id": 5, - "offset": 168, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2171104787 - }, - "m_otherNpcsToReplace": { - "type": "std::string", - "id": 6, - "offset": 184, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 3637554352 - }, - "m_dontSpawnIfNpcIsPresent": { - "type": "std::string", - "id": 7, - "offset": 200, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 3130923110 - }, - "m_questEffectTemplate": { - "type": "class SharedPointer", - "id": 8, - "offset": 216, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3397272317 - } - } - }, - "563501522": { - "name": "class NaturalActCinematicStageTemplate*", - "bases": [ - "CinematicStageTemplate", - "PropertyClass" - ], - "hash": 563501522, - "properties": { - "m_name": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1717359772 - }, - "m_duration": { - "type": "float", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 920323453 - }, - "m_actions": { - "type": "class SharedPointer", - "id": 2, - "offset": 112, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1380578687 - }, - "m_stageRelationships": { - "type": "class SharedPointer", - "id": 3, - "offset": 128, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 499983354 - }, - "m_sound": { - "type": "std::string", - "id": 4, - "offset": 152, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2307644996 - }, - "m_animation": { - "type": "std::string", - "id": 5, - "offset": 184, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3431428731 - } - } - }, - "562937432": { - "name": "class ReagentLootInfo", - "bases": [ - "ItemLootInfo", - "LootInfo", - "LootInfoBase", - "PropertyClass" - ], - "hash": 562937432, - "properties": { - "m_lootType": { - "type": "enum LootInfo::LOOT_TYPE", - "id": 0, - "offset": 72, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1591891442, - "enum_options": { - "LOOT_TYPE_NONE": 0, - "LOOT_TYPE_GOLD": 1, - "LOOT_TYPE_MANA": 2, - "LOOT_TYPE_ITEM": 3, - "LOOT_TYPE_TREASURE_CARD": 4, - "LOOT_TYPE_MAGIC_XP": 5, - "LOOT_TYPE_ADD_SPELL": 6, - "LOOT_TYPE_MAX_HEALTH": 7, - "LOOT_TYPE_MAX_GOLD": 8, - "LOOT_TYPE_MAX_MANA": 9, - "LOOT_TYPE_MAX_POTION": 10, - "LOOT_TYPE_TRAINING_POINTS": 11, - "LOOT_TYPE_RECIPE": 12, - "LOOT_TYPE_CRAFTING_SLOT": 13, - "LOOT_TYPE_REAGENT": 14, - "LOOT_TYPE_PETSNACK": 15, - "LOOT_TYPE_GARDENING_XP": 16, - "LOOT_TYPE_PET_XP": 17, - "LOOT_TYPE_TREASURE_TABLE": 18, - "LOOT_TYPE_ARENA_POINTS": 19, - "LOOT_TYPE_ARENA_BONUS_POINTS": 20, - "LOOT_TYPE_GROUP": 21, - "LOOT_TYPE_FISHING_XP": 22, - "LOOT_TYPE_EVENT_CURRENCY_1": 24, - "LOOT_TYPE_EVENT_CURRENCY_2": 25, - "LOOT_TYPE_PVP_CURRENCY": 26, - "LOOT_TYPE_PVP_CURRENCY_BONUS": 27, - "LOOT_TYPE_PVP_TOURNEY_CURRENCY": 28, - "LOOT_TYPE_PVP_TOURNEY_CURRENCY_BONUS": 29, - "LOOT_TYPE_FURNITURE_ESSENCE": 30 - } - }, - "m_itemID": { - "type": "gid", - "id": 1, - "offset": 88, - "flags": 33554463, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 569545460 - }, - "m_numItems": { - "type": "int", - "id": 2, - "offset": 96, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1588646284 - } - } - }, - "946857712": { - "name": "class ClientAlchemyBehavior*", - "bases": [ - "AlchemyBehavior", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 946857712, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_recipeBag": { - "type": "class RecipeBag", - "id": 1, - "offset": 112, - "flags": 27, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2218166892 - }, - "m_craftingSlotsBag": { - "type": "class ObjectBag", - "id": 2, - "offset": 320, - "flags": 27, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2324986502 - }, - "m_reagentBag": { - "type": "class ObjectBag", - "id": 3, - "offset": 512, - "flags": 27, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2459563753 - }, - "m_bonusCrafting": { - "type": "int", - "id": 4, - "offset": 704, - "flags": 59, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 943921711 - }, - "m_timerMultiplier": { - "type": "float", - "id": 5, - "offset": 708, - "flags": 27, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1373659455 - }, - "m_maxReagentStack": { - "type": "int", - "id": 6, - "offset": 712, - "flags": 27, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1121296540 - }, - "m_equippedRecipes": { - "type": "unsigned int", - "id": 7, - "offset": 720, - "flags": 27, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1981226997 - }, - "m_equippedRecipeData": { - "type": "std::string", - "id": 8, - "offset": 736, - "flags": 551, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2773803466 - } - } - }, - "1721411224": { - "name": "class SharedPointer", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1721411224, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_recipeBag": { - "type": "class RecipeBag", - "id": 1, - "offset": 112, - "flags": 27, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2218166892 - }, - "m_craftingSlotsBag": { - "type": "class ObjectBag", - "id": 2, - "offset": 320, - "flags": 27, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2324986502 - }, - "m_reagentBag": { - "type": "class ObjectBag", - "id": 3, - "offset": 512, - "flags": 27, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2459563753 - }, - "m_bonusCrafting": { - "type": "int", - "id": 4, - "offset": 704, - "flags": 59, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 943921711 - }, - "m_timerMultiplier": { - "type": "float", - "id": 5, - "offset": 708, - "flags": 27, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1373659455 - }, - "m_maxReagentStack": { - "type": "int", - "id": 6, - "offset": 712, - "flags": 27, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1121296540 - }, - "m_equippedRecipes": { - "type": "unsigned int", - "id": 7, - "offset": 720, - "flags": 27, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1981226997 - }, - "m_equippedRecipeData": { - "type": "std::string", - "id": 8, - "offset": 736, - "flags": 551, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2773803466 - } - } - }, - "562261948": { - "name": "class PhysicsSimMassSphere", - "bases": [ - "PhysicsSimMass", - "PropertyClass" - ], - "hash": 562261948, - "properties": {} - }, - "946856944": { - "name": "class ClientAlchemyBehavior", - "bases": [ - "AlchemyBehavior", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 946856944, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_recipeBag": { - "type": "class RecipeBag", - "id": 1, - "offset": 112, - "flags": 27, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2218166892 - }, - "m_craftingSlotsBag": { - "type": "class ObjectBag", - "id": 2, - "offset": 320, - "flags": 27, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2324986502 - }, - "m_reagentBag": { - "type": "class ObjectBag", - "id": 3, - "offset": 512, - "flags": 27, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2459563753 - }, - "m_bonusCrafting": { - "type": "int", - "id": 4, - "offset": 704, - "flags": 59, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 943921711 - }, - "m_timerMultiplier": { - "type": "float", - "id": 5, - "offset": 708, - "flags": 27, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1373659455 - }, - "m_maxReagentStack": { - "type": "int", - "id": 6, - "offset": 712, - "flags": 27, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1121296540 - }, - "m_equippedRecipes": { - "type": "unsigned int", - "id": 7, - "offset": 720, - "flags": 27, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1981226997 - }, - "m_equippedRecipeData": { - "type": "std::string", - "id": 8, - "offset": 736, - "flags": 551, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2773803466 - } - } - }, - "1338855028": { - "name": "class RadialMenuSlotInfo*", - "bases": [ - "PropertyClass" - ], - "hash": 1338855028, - "properties": { - "m_slot": { - "type": "short", - "id": 0, - "offset": 72, - "flags": 33554495, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 310478918 - }, - "m_emoteID": { - "type": "gid", - "id": 1, - "offset": 80, - "flags": 33554495, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 480114911 - } - } - }, - "2130303378": { - "name": "class ClientDerbyMoraleByTerrainEffect", - "bases": [ - "DerbyMoraleByTerrainEffect", - "DerbyEffect", - "PropertyClass" - ], - "hash": 2130303378, - "properties": { - "m_buffType": { - "type": "enum DerbyTalentBuffType", - "id": 0, - "offset": 92, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1149251982, - "enum_options": { - "Buff": 0, - "Debuff": 1, - "Neither": 2 - } - }, - "m_kTarget": { - "type": "enum DerbyTargetType", - "id": 1, - "offset": 96, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1807803351, - "enum_options": { - "kTargetInFront": 0, - "kTargetBehind": 1, - "kTargetFirst": 2, - "kTargetSelf": 3, - "kTargetAll": 4, - "kTargetLast": 5 - } - }, - "m_nDuration": { - "type": "int", - "id": 2, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1110167982 - }, - "m_effectID": { - "type": "unsigned int", - "id": 3, - "offset": 88, - "flags": 24, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2347630439 - }, - "m_imageFilename": { - "type": "std::string", - "id": 4, - "offset": 112, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2813328063 - }, - "m_iconIndex": { - "type": "unsigned int", - "id": 5, - "offset": 144, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1265133262 - }, - "m_soundOnActivate": { - "type": "std::string", - "id": 6, - "offset": 152, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1956929714 - }, - "m_soundOnTarget": { - "type": "std::string", - "id": 7, - "offset": 184, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3444214056 - }, - "m_targetParticleEffect": { - "type": "std::string", - "id": 8, - "offset": 216, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3048234723 - }, - "m_overheadMessage": { - "type": "std::string", - "id": 9, - "offset": 248, - "flags": 8388639, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1701018190 - }, - "m_requirements": { - "type": "class RequirementList", - "id": 10, - "offset": 280, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2840988582 - } - } - }, - "562261908": { - "name": "class PhysicsSimMassSphere*", - "bases": [ - "PhysicsSimMass", - "PropertyClass" - ], - "hash": 562261908, - "properties": {} - }, - "1338561599": { - "name": "class WizardClientTutorial", - "bases": [ - "ClientTutorial", - "PropertyClass" - ], - "hash": 1338561599, - "properties": { - "m_stage": { - "type": "unsigned short", - "id": 0, - "offset": 74, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": true, - "pointer": false, - "hash": 1363685500 - } - } - }, - "2130180086": { - "name": "class FXDef*", - "bases": [ - "PropertyClass" - ], - "hash": 2130180086, - "properties": { - "m_FXFile": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2810683385 - }, - "m_stackingCategory": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2363740365 - }, - "m_repeatTime": { - "type": "float", - "id": 2, - "offset": 136, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 453389511 - } - } - }, - "1338561559": { - "name": "class WizardClientTutorial*", - "bases": [ - "ClientTutorial", - "PropertyClass" - ], - "hash": 1338561559, - "properties": { - "m_stage": { - "type": "unsigned short", - "id": 0, - "offset": 74, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": true, - "pointer": false, - "hash": 1363685500 - } - } - }, - "2130025093": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 2130025093, - "properties": { - "m_spellID": { - "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1697483258 - }, - "m_isRetired": { - "type": "bool", - "id": 1, - "offset": 76, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 952245726 - }, - "m_tieredSpellGroupIndex": { - "type": "int", - "id": 2, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 859458588 - } - } - }, - "1721920878": { - "name": "class DoodleDoug", - "bases": [ - "PropertyClass" - ], - "hash": 1721920878, - "properties": {} - }, - "946885056": { - "name": "class LadderBehavior*", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 946885056, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_nLadderContainerID": { - "type": "gid", - "id": 1, - "offset": 112, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 782107042 - } - } - }, - "1721851566": { - "name": "class SharedPointer", - "bases": [ - "Requirement", - "PropertyClass" - ], - "hash": 1721851566, - "properties": { - "m_applyNOT": { - "type": "bool", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1746328074, - "enum_options": { - "__DEFAULT": 0 - } - }, - "m_operator": { - "type": "enum Requirement::Operator", - "id": 1, - "offset": 76, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2672792317, - "enum_options": { - "ROP_AND": 0, - "ROP_OR": 1, - "__DEFAULT": "ROP_AND" - } - }, - "m_secondarySchool": { - "type": "std::string", - "id": 2, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1765721963 - } - } - }, - "562932312": { - "name": "class ReagentLootInfo*", - "bases": [ - "ItemLootInfo", - "LootInfo", - "LootInfoBase", - "PropertyClass" - ], - "hash": 562932312, - "properties": { - "m_lootType": { - "type": "enum LootInfo::LOOT_TYPE", - "id": 0, - "offset": 72, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1591891442, - "enum_options": { - "LOOT_TYPE_NONE": 0, - "LOOT_TYPE_GOLD": 1, - "LOOT_TYPE_MANA": 2, - "LOOT_TYPE_ITEM": 3, - "LOOT_TYPE_TREASURE_CARD": 4, - "LOOT_TYPE_MAGIC_XP": 5, - "LOOT_TYPE_ADD_SPELL": 6, - "LOOT_TYPE_MAX_HEALTH": 7, - "LOOT_TYPE_MAX_GOLD": 8, - "LOOT_TYPE_MAX_MANA": 9, - "LOOT_TYPE_MAX_POTION": 10, - "LOOT_TYPE_TRAINING_POINTS": 11, - "LOOT_TYPE_RECIPE": 12, - "LOOT_TYPE_CRAFTING_SLOT": 13, - "LOOT_TYPE_REAGENT": 14, - "LOOT_TYPE_PETSNACK": 15, - "LOOT_TYPE_GARDENING_XP": 16, - "LOOT_TYPE_PET_XP": 17, - "LOOT_TYPE_TREASURE_TABLE": 18, - "LOOT_TYPE_ARENA_POINTS": 19, - "LOOT_TYPE_ARENA_BONUS_POINTS": 20, - "LOOT_TYPE_GROUP": 21, - "LOOT_TYPE_FISHING_XP": 22, - "LOOT_TYPE_EVENT_CURRENCY_1": 24, - "LOOT_TYPE_EVENT_CURRENCY_2": 25, - "LOOT_TYPE_PVP_CURRENCY": 26, - "LOOT_TYPE_PVP_CURRENCY_BONUS": 27, - "LOOT_TYPE_PVP_TOURNEY_CURRENCY": 28, - "LOOT_TYPE_PVP_TOURNEY_CURRENCY_BONUS": 29, - "LOOT_TYPE_FURNITURE_ESSENCE": 30 - } - }, - "m_itemID": { - "type": "gid", - "id": 1, - "offset": 88, - "flags": 33554463, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 569545460 - }, - "m_numItems": { - "type": "int", - "id": 2, - "offset": 96, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1588646284 - } - } - }, - "946884960": { - "name": "class LadderBehavior", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 946884960, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_nLadderContainerID": { - "type": "gid", - "id": 1, - "offset": 112, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 782107042 - } - } - }, - "1721692961": { - "name": "class SharedPointer", - "bases": [ - "ReqNumeric", - "Requirement", - "PropertyClass" - ], - "hash": 1721692961, - "properties": { - "m_applyNOT": { - "type": "bool", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1746328074, - "enum_options": { - "__DEFAULT": 0 - } - }, - "m_operator": { - "type": "enum Requirement::Operator", - "id": 1, - "offset": 76, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2672792317, - "enum_options": { - "ROP_AND": 0, - "ROP_OR": 1, - "__DEFAULT": "ROP_AND" - } - }, - "m_numericValue": { - "type": "float", - "id": 2, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 521915239 - }, - "m_operatorType": { - "type": "enum ReqNumeric::OPERATOR_TYPE", - "id": 3, - "offset": 84, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2228122961, - "enum_options": { - "OPERATOR_UNKNOWN": 4294967295, - "OPERATOR_EQUALS": 0, - "OPERATOR_GREATER_THAN": 1, - "OPERATOR_LESS_THAN": 2, - "OPERATOR_GREATER_THAN_EQ": 3, - "OPERATOR_LESS_THAN_EQ": 4 - } - } - } - }, - "1338612690": { - "name": "class ClientPlayerAggroBehavior", - "bases": [ - "PlayerAggroBehavior", - "AggroBehavior", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1338612690, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - } - } - }, - "2130684414": { - "name": "class SharedPointer", - "bases": [ - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 2130684414, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - } - } - }, - "563004153": { - "name": "class ObjectStateBehavior*", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 563004153, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_stateList": { - "type": "unsigned int", - "id": 1, - "offset": 136, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1658565962 - }, - "m_stateSetOverride": { - "type": "std::string", - "id": 2, - "offset": 168, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3188396456 - } - } - }, - "1721860637": { - "name": "class CurrentQuestCompilation", - "bases": [ - "PropertyClass" - ], - "hash": 1721860637, - "properties": { - "m_questEntries": { - "type": "class QuestEntry*", - "id": 0, - "offset": 72, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1432837330 - } - } - }, - "948326114": { - "name": "class ChatPopupButton", - "bases": [ - "ScrollablePopupButton", - "ControlPopupButton", - "ControlButton", - "Window", - "PropertyClass" - ], - "hash": 948326114, - "properties": { - "m_sName": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306437263 - }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621225959 - }, - "m_Style": { - "type": "unsigned int", - "id": 2, - "offset": 152, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152, - "POPDOWN_SIBLINGS": 67108864, - "DISABLE_CHILDREN": 134217728, - "HIDE_SIBLINGS": 268435456, - "POPUP_ON_HOVER": 536870912 - } - }, - "m_Flags": { - "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } - }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3105139380 - }, - "m_fTargetAlpha": { - "type": "float", - "id": 5, - "offset": 212, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1809129834 - }, - "m_fDisabledAlpha": { - "type": "float", - "id": 6, - "offset": 216, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1389987675 - }, - "m_fAlpha": { - "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 482130755 - }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3623628394 - }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2102211316 - }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1846695875 - }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3389835433 - }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2547159940 - }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2587533771 - }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3091503757 - }, - "m_bToggle": { - "type": "bool", - "id": 16, - "offset": 608, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2071810903 - }, - "m_bButtonDown": { - "type": "bool", - "id": 17, - "offset": 609, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 840041705 - }, - "m_sLabel": { - "type": "std::wstring", - "id": 18, - "offset": 616, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2207009163 - }, - "m_labelOffset": { - "type": "class Rect", - "id": 19, - "offset": 832, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1990646723 - }, - "m_pButton": { - "type": "class SharedPointer", - "id": 20, - "offset": 656, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1543855875 - }, - "m_HotKey": { - "type": "unsigned int", - "id": 21, - "offset": 672, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1631553409 - }, - "m_Color": { - "type": "class Color", - "id": 22, - "offset": 676, - "flags": 262279, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1753714077 - }, - "m_bCursorOver": { - "type": "bool", - "id": 23, - "offset": 689, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 283981103 - }, - "m_bAbortWhenCursorNotOver": { - "type": "bool", - "id": 24, - "offset": 706, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 325405258 - }, - "m_bHotKeyDown": { - "type": "bool", - "id": 25, - "offset": 680, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 616989185 - }, - "m_fTime": { - "type": "float", - "id": 26, - "offset": 684, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 883746156 - }, - "m_bGreyed": { - "type": "bool", - "id": 27, - "offset": 688, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1566556053 - }, - "m_fMaxScale": { - "type": "float", - "id": 28, - "offset": 692, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2070186635 - }, - "m_fScaleSpeed": { - "type": "float", - "id": 29, - "offset": 696, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1457135702 - }, - "m_bUseDropShadow": { - "type": "bool", - "id": 30, - "offset": 704, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 93063037 - }, - "m_bUseOutline": { - "type": "bool", - "id": 31, - "offset": 705, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 744292994 - }, - "m_pGreyedState": { - "type": "class SharedPointer", - "id": 32, - "offset": 768, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2703352263 - }, - "m_pNormalState": { - "type": "class SharedPointer", - "id": 33, - "offset": 752, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1887909808 - }, - "m_pHighlightedState": { - "type": "class SharedPointer", - "id": 34, - "offset": 784, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2200177608 - }, - "m_pSelectedState": { - "type": "class SharedPointer", - "id": 35, - "offset": 800, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2266776432 - }, - "m_pDepressedState": { - "type": "class SharedPointer", - "id": 36, - "offset": 816, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1878185798 - }, - "m_bUp": { - "type": "bool", - "id": 37, - "offset": 880, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 269510906 - } - } - }, - "1338869273": { - "name": "class PositionalStateSoundBehavior", - "bases": [ - "PositionalSoundBehavior", - "SoundBehavior", - "AreaBehavior", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1338869273, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_radius": { - "type": "float", - "id": 1, - "offset": 116, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 989410271 - }, - "m_category": { - "type": "enum AudioCategory", - "id": 2, - "offset": 124, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2951251982, - "enum_options": { - "AudioCategory_Irrelevent": 0, - "AudioCategory_Accoustic": 1, - "AudioCategory_Noise": 2, - "AudioCategory_Music": 3 - } - }, - "m_exclusive": { - "type": "bool", - "id": 3, - "offset": 128, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 824383403 - }, - "m_playList": { - "type": "class PlayList", - "id": 4, - "offset": 176, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2061221957 - }, - "m_volume": { - "type": "float", - "id": 5, - "offset": 304, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1162855023 - }, - "m_loopCount": { - "type": "int", - "id": 6, - "offset": 308, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 865634717 - }, - "m_minimumFalloff": { - "type": "float", - "id": 7, - "offset": 328, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 355697197 - }, - "m_maximumFalloff": { - "type": "float", - "id": 8, - "offset": 332, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2210192367 - }, - "m_animDriven": { - "type": "bool", - "id": 9, - "offset": 392, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 398394720 - }, - "m_inverted": { - "type": "bool", - "id": 10, - "offset": 397, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1034821044 - }, - "m_animationName": { - "type": "std::string", - "id": 11, - "offset": 512, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3393414044 - } - } - }, - "2130855726": { - "name": "class SharedPointer", - "bases": [ - "GameEffectBase", - "PropertyClass" - ], - "hash": 2130855726, - "properties": { - "m_currentTickCount": { - "type": "double", - "id": 0, - "offset": 80, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2533274692 - }, - "m_effectNameID": { - "type": "unsigned int", - "id": 1, - "offset": 96, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1204067144 - }, - "m_bIsOnPet": { - "type": "bool", - "id": 2, - "offset": 73, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 522593303 - }, - "m_originatorID": { - "type": "gid", - "id": 3, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1131810019 - }, - "m_itemSlotID": { - "type": "unsigned int", - "id": 4, - "offset": 112, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1895747595 - }, - "m_internalID": { - "type": "int", - "id": 5, - "offset": 92, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1643137924 - }, - "m_endTime": { - "type": "unsigned int", - "id": 6, - "offset": 88, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 716479635 - }, - "m_lootTableName": { - "type": "std::string", - "id": 7, - "offset": 128, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2333333378 - } - } - }, - "563177106": { - "name": "class NewBadgeData", - "bases": [ - "PropertyClass" - ], - "hash": 563177106, - "properties": { - "m_badgeID": { - "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 628960141 - }, - "m_badgeTime": { - "type": "unsigned int", - "id": 1, - "offset": 76, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1716875215 - } - } - }, - "947796097": { - "name": "class ReqIsGender", - "bases": [ - "Requirement", - "PropertyClass" - ], - "hash": 947796097, - "properties": { - "m_applyNOT": { - "type": "bool", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1746328074, - "enum_options": { - "__DEFAULT": 0 - } - }, - "m_operator": { - "type": "enum Requirement::Operator", - "id": 1, - "offset": 76, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2672792317, - "enum_options": { - "ROP_AND": 0, - "ROP_OR": 1, - "__DEFAULT": "ROP_AND" - } - }, - "m_playerGender": { - "type": "std::string", - "id": 2, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2199467133 - } - } - }, - "669815000": { - "name": "class SpawnActorCinematicAction", - "bases": [ - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 669815000, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - }, - "m_objectInfo": { - "type": "class CoreObjectInfo*", - "id": 2, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1373700953 - }, - "m_bStartHidden": { - "type": "bool", - "id": 3, - "offset": 128, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1939845615 - } - } - }, - "1723171357": { - "name": "class CurrentQuestCompilation*", - "bases": [ - "PropertyClass" - ], - "hash": 1723171357, - "properties": { - "m_questEntries": { - "type": "class QuestEntry*", - "id": 0, - "offset": 72, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1432837330 - } - } - }, - "616188290": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 616188290, - "properties": { - "m_groupID": { - "type": "gid", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1111292082 - }, - "m_members": { - "type": "class SharedPointer", - "id": 1, - "offset": 80, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2190987938 - } - } - }, - "1341351257": { - "name": "class FishTournamentOption*", - "bases": [ - "ServiceOptionBase", - "PropertyClass" - ], - "hash": 1341351257, - "properties": { - "m_serviceName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2206028813 - }, - "m_iconKey": { - "type": "std::string", - "id": 1, - "offset": 168, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2457138637 - }, - "m_displayKey": { - "type": "std::string", - "id": 2, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3023276954 - }, - "m_serviceIndex": { - "type": "unsigned int", - "id": 3, - "offset": 204, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2103126710 - }, - "m_forceInteract": { - "type": "bool", - "id": 4, - "offset": 200, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1705789564 - } - } - }, - "2132132349": { - "name": "class PvPMatchRequest", - "bases": [ - "MatchRequest", - "PropertyClass" - ], - "hash": 2132132349, - "properties": { - "m_characterID": { - "type": "gid", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 210498386 - }, - "m_tournamentNameID": { - "type": "unsigned int", - "id": 1, - "offset": 84, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1799846440 - }, - "m_matchNameID": { - "type": "unsigned int", - "id": 2, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1751361288 - }, - "m_leagueID": { - "type": "unsigned int", - "id": 3, - "offset": 88, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 692361645 - }, - "m_seasonID": { - "type": "unsigned int", - "id": 4, - "offset": 92, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 535260643 - }, - "m_teams": { - "type": "class SharedPointer", - "id": 5, - "offset": 96, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1984373608 - }, - "m_joinQueueRequirements": { - "type": "class SharedPointer", - "id": 6, - "offset": 112, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2746080983 - }, - "m_ignoredList": { - "type": "gid", - "id": 7, - "offset": 128, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1850924028 - }, - "m_matchTimer": { - "type": "float", - "id": 8, - "offset": 144, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1510935909 - }, - "m_bonusTime": { - "type": "int", - "id": 9, - "offset": 148, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1757496496 - }, - "m_passPenalty": { - "type": "int", - "id": 10, - "offset": 152, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 982951662 - }, - "m_yellowTime": { - "type": "int", - "id": 11, - "offset": 156, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1017028741 - }, - "m_redTime": { - "type": "int", - "id": 12, - "offset": 160, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1909556708 - }, - "m_minTurnTime": { - "type": "int", - "id": 13, - "offset": 164, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 652524886 - }, - "m_effects": { - "type": "class SharedPointer", - "id": 14, - "offset": 168, - "flags": 31, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 804962647 - } - } - }, - "1722314094": { - "name": "class DoodleDoug*", - "bases": [ - "PropertyClass" - ], - "hash": 1722314094, - "properties": {} - }, - "948329186": { - "name": "class ChatPopupButton*", - "bases": [ - "ScrollablePopupButton", - "ControlPopupButton", - "ControlButton", - "Window", - "PropertyClass" - ], - "hash": 948329186, - "properties": { - "m_sName": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306437263 - }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621225959 - }, - "m_Style": { - "type": "unsigned int", - "id": 2, - "offset": 152, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152, - "POPDOWN_SIBLINGS": 67108864, - "DISABLE_CHILDREN": 134217728, - "HIDE_SIBLINGS": 268435456, - "POPUP_ON_HOVER": 536870912 - } - }, - "m_Flags": { - "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } - }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3105139380 - }, - "m_fTargetAlpha": { - "type": "float", - "id": 5, - "offset": 212, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1809129834 - }, - "m_fDisabledAlpha": { - "type": "float", - "id": 6, - "offset": 216, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1389987675 - }, - "m_fAlpha": { - "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 482130755 - }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3623628394 - }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2102211316 - }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1846695875 - }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3389835433 - }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2547159940 - }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2587533771 - }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3091503757 - }, - "m_bToggle": { - "type": "bool", - "id": 16, - "offset": 608, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2071810903 - }, - "m_bButtonDown": { - "type": "bool", - "id": 17, - "offset": 609, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 840041705 - }, - "m_sLabel": { - "type": "std::wstring", - "id": 18, - "offset": 616, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2207009163 - }, - "m_labelOffset": { - "type": "class Rect", - "id": 19, - "offset": 832, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1990646723 - }, - "m_pButton": { - "type": "class SharedPointer", - "id": 20, - "offset": 656, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1543855875 - }, - "m_HotKey": { - "type": "unsigned int", - "id": 21, - "offset": 672, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1631553409 - }, - "m_Color": { - "type": "class Color", - "id": 22, - "offset": 676, - "flags": 262279, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1753714077 - }, - "m_bCursorOver": { - "type": "bool", - "id": 23, - "offset": 689, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 283981103 - }, - "m_bAbortWhenCursorNotOver": { - "type": "bool", - "id": 24, - "offset": 706, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 325405258 - }, - "m_bHotKeyDown": { - "type": "bool", - "id": 25, - "offset": 680, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 616989185 - }, - "m_fTime": { - "type": "float", - "id": 26, - "offset": 684, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 883746156 - }, - "m_bGreyed": { - "type": "bool", - "id": 27, - "offset": 688, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1566556053 - }, - "m_fMaxScale": { - "type": "float", - "id": 28, - "offset": 692, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2070186635 - }, - "m_fScaleSpeed": { - "type": "float", - "id": 29, - "offset": 696, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1457135702 - }, - "m_bUseDropShadow": { - "type": "bool", - "id": 30, - "offset": 704, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 93063037 - }, - "m_bUseOutline": { - "type": "bool", - "id": 31, - "offset": 705, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 744292994 - }, - "m_pGreyedState": { - "type": "class SharedPointer", - "id": 32, - "offset": 768, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2703352263 - }, - "m_pNormalState": { - "type": "class SharedPointer", - "id": 33, - "offset": 752, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1887909808 - }, - "m_pHighlightedState": { - "type": "class SharedPointer", - "id": 34, - "offset": 784, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2200177608 - }, - "m_pSelectedState": { - "type": "class SharedPointer", - "id": 35, - "offset": 800, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2266776432 - }, - "m_pDepressedState": { - "type": "class SharedPointer", - "id": 36, - "offset": 816, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1878185798 - }, - "m_bUp": { - "type": "bool", - "id": 37, - "offset": 880, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 269510906 - } - } - }, - "1341116214": { - "name": "class SharedPointer", - "bases": [ - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 1341116214, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - } - } - }, - "2132125029": { - "name": "class PetMatchRequest", - "bases": [ - "MatchRequest", - "PropertyClass" - ], - "hash": 2132125029, - "properties": { - "m_characterID": { - "type": "gid", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 210498386 - }, - "m_tournamentNameID": { - "type": "unsigned int", - "id": 1, - "offset": 84, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1799846440 - }, - "m_matchNameID": { - "type": "unsigned int", - "id": 2, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1751361288 - }, - "m_leagueID": { - "type": "unsigned int", - "id": 3, - "offset": 88, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 692361645 - }, - "m_seasonID": { - "type": "unsigned int", - "id": 4, - "offset": 92, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 535260643 - }, - "m_teams": { - "type": "class SharedPointer", - "id": 5, - "offset": 96, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1984373608 - }, - "m_minRank": { - "type": "int", - "id": 6, - "offset": 112, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2062988042 - }, - "m_maxRank": { - "type": "int", - "id": 7, - "offset": 116, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1761764108 - }, - "m_pTrackInfo": { - "type": "class SharedPointer", - "id": 8, - "offset": 120, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3026194809 - } - } - }, - "564229099": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 564229099, - "properties": { - "m_saleFilter": { - "type": "bool", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1462249118 - }, - "m_newUsableFilter": { - "type": "bool", - "id": 1, - "offset": 73, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1923088319 - }, - "m_buttonView": { - "type": "bool", - "id": 2, - "offset": 74, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1893157642 - }, - "m_theBattleReadyItemTemplateID": { - "type": "unsigned int", - "id": 3, - "offset": 76, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 494853047 - } - } - }, - "1339307054": { - "name": "class WorldWindow", - "bases": [ - "Window", - "PropertyClass" - ], - "hash": 1339307054, - "properties": { - "m_sName": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306437263 - }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621225959 - }, - "m_Style": { - "type": "unsigned int", - "id": 2, - "offset": 152, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "SCALE_CHILDREN": 2, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "FOCUS_LOCKED": 64, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152 - } - }, - "m_Flags": { - "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } - }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3105139380 - }, - "m_fTargetAlpha": { - "type": "float", - "id": 5, - "offset": 212, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1809129834 - }, - "m_fDisabledAlpha": { - "type": "float", - "id": 6, - "offset": 216, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1389987675 - }, - "m_fAlpha": { - "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 482130755 - }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3623628394 - }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2102211316 - }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1846695875 - }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3389835433 - }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2547159940 - }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2587533771 - }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3091503757 - } - } - }, - "2131747694": { - "name": "class ObstacleCourseObstaclePathBaseTemplate", - "bases": [ - "ObstacleCourseObstacleBehaviorTemplate", - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 2131747694, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - }, - "m_rate": { - "type": "float", - "id": 1, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 310005283 - }, - "m_penaltyTime": { - "type": "float", - "id": 2, - "offset": 124, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2083389507 - }, - "m_totalObstacleSize": { - "type": "class Vector3D", - "id": 3, - "offset": 128, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2379878414 - }, - "m_bounds": { - "type": "class Vector3D", - "id": 4, - "offset": 152, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1948083181 - }, - "m_orientToPath": { - "type": "bool", - "id": 5, - "offset": 176, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 655036148 - }, - "m_heightUp": { - "type": "float", - "id": 6, - "offset": 140, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2208713013 - }, - "m_heightDown": { - "type": "float", - "id": 7, - "offset": 144, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 655333896 - } - } - }, - "564440650": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 564440650, - "properties": { - "m_battlegroundName": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1534120775 - }, - "m_countdownSeconds": { - "type": "float", - "id": 1, - "offset": 112, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 255072071 - }, - "m_matchSize": { - "type": "int", - "id": 2, - "offset": 116, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 563704930 - }, - "m_teamStartA": { - "type": "std::string", - "id": 3, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1716880369 - }, - "m_teamStartB": { - "type": "std::string", - "id": 4, - "offset": 184, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1716880370 - }, - "m_battlegroundZone": { - "type": "std::string", - "id": 5, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1534567298 - }, - "m_cancelCooldownSeconds": { - "type": "int", - "id": 6, - "offset": 216, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1074662868 - }, - "m_maximumDisplayPoints": { - "type": "int", - "id": 7, - "offset": 220, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 751410187 - }, - "m_matchTimeSeconds": { - "type": "int", - "id": 8, - "offset": 224, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1560908229 - }, - "m_revealTimeSeconds": { - "type": "int", - "id": 9, - "offset": 228, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 258367543 - }, - "m_matchmakingList": { - "type": "class SharedPointer", - "id": 10, - "offset": 232, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2069645122 - }, - "m_unlockedPolymorphTags": { - "type": "std::string", - "id": 11, - "offset": 256, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2024692009 - }, - "m_lootWinner": { - "type": "std::string", - "id": 12, - "offset": 288, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1642288556 - }, - "m_lootLoser": { - "type": "std::string", - "id": 13, - "offset": 320, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2530546718 - }, - "m_lootTie": { - "type": "std::string", - "id": 14, - "offset": 352, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2506425499 - }, - "m_pveMode": { - "type": "bool", - "id": 15, - "offset": 384, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2142827875 - }, - "m_defeatedPolyLockCount": { - "type": "int", - "id": 16, - "offset": 388, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1366197282 - }, - "m_lockSigilSpotOnDefeat": { - "type": "bool", - "id": 17, - "offset": 392, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 407313920 - } - } - }, - "574436118": { - "name": "class ControlTileMap*", - "bases": [ - "Window", - "PropertyClass" - ], - "hash": 574436118, - "properties": { - "m_sName": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306437263 - }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621225959 - }, - "m_Style": { - "type": "unsigned int", - "id": 2, - "offset": 152, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "SCALE_CHILDREN": 2, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "FOCUS_LOCKED": 64, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152 - } - }, - "m_Flags": { - "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } - }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3105139380 - }, - "m_fTargetAlpha": { - "type": "float", - "id": 5, - "offset": 212, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1809129834 - }, - "m_fDisabledAlpha": { - "type": "float", - "id": 6, - "offset": 216, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1389987675 - }, - "m_fAlpha": { - "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 482130755 - }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3623628394 - }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2102211316 - }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1846695875 - }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3389835433 - }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2547159940 - }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2587533771 - }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3091503757 - }, - "m_nBorderSize": { - "type": "int", - "id": 16, - "offset": 584, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2016376897 - }, - "m_TileSize": { - "type": "class Size", - "id": 17, - "offset": 588, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1169748581 - }, - "m_MapSize": { - "type": "class Size", - "id": 18, - "offset": 596, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1258934261 - }, - "m_nDefaultTile": { - "type": "int", - "id": 19, - "offset": 604, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1771469243 - }, - "m_Tiles": { - "type": "class SharedPointer", - "id": 20, - "offset": 608, - "flags": 135, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2276817757 - }, - "m_Map": { - "type": "class SharedPointer", - "id": 21, - "offset": 632, - "flags": 135, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1765608522 - }, - "m_nCursorOverTile": { - "type": "int", - "id": 22, - "offset": 664, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 590305648 - } - } - }, - "1338891066": { - "name": "class FixedCamController*", - "bases": [ - "ChaseCamController", - "CameraController", - "PropertyClass" - ], - "hash": 1338891066, - "properties": {} - }, - "1723455870": { - "name": "class ObstacleCourseModifyTimeBehaviorTemplate*", - "bases": [ - "ObstacleCourseObstaclePathBaseTemplate", - "ObstacleCourseObstacleBehaviorTemplate", - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 1723455870, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - }, - "m_rate": { - "type": "float", - "id": 1, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 310005283 - }, - "m_penaltyTime": { - "type": "float", - "id": 2, - "offset": 124, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2083389507 - }, - "m_totalObstacleSize": { - "type": "class Vector3D", - "id": 3, - "offset": 128, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2379878414 - }, - "m_bounds": { - "type": "class Vector3D", - "id": 4, - "offset": 152, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1948083181 - }, - "m_orientToPath": { - "type": "bool", - "id": 5, - "offset": 176, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 655036148 - }, - "m_heightUp": { - "type": "float", - "id": 6, - "offset": 140, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2208713013 - }, - "m_heightDown": { - "type": "float", - "id": 7, - "offset": 144, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 655333896 - }, - "m_timeModifier": { - "type": "int", - "id": 8, - "offset": 184, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 723546552 - }, - "m_effectApply": { - "type": "std::string", - "id": 9, - "offset": 192, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1838368078 - }, - "m_soundApply": { - "type": "std::string", - "id": 10, - "offset": 224, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3579526282 - }, - "m_effectDespawn": { - "type": "std::string", - "id": 11, - "offset": 256, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2174851674 - }, - "m_soundDespawn": { - "type": "std::string", - "id": 12, - "offset": 288, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2068074646 - } - } - }, - "949910256": { - "name": "class PlayGraphicOnSigilCinematicAction*", - "bases": [ - "CinematicAction", - "PropertyClass" - ], - "hash": 949910256, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_minDuration": { - "type": "float", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1733171553 - }, - "m_assetName": { - "type": "std::string", - "id": 2, - "offset": 88, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513131580 - } - } - }, - "949610138": { - "name": "class WinAnimScaleSymmetricalSpeed*", - "bases": [ - "WinAnimScaleSymmetrical", - "WindowAnimation", - "PropertyClass" - ], - "hash": 949610138, - "properties": { - "m_bUseDeepCopy": { - "type": "bool", - "id": 0, - "offset": 72, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 433380635 - }, - "m_scale": { - "type": "float", - "id": 1, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 899693439 - }, - "m_fSpeed": { - "type": "float", - "id": 2, - "offset": 88, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 503609006 - } - } - }, - "1338900848": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1338900848, - "properties": { - "m_whirlyBurlyGameList": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1597138179 - } - } - }, - "2132128101": { - "name": "class PetMatchRequest*", - "bases": [ - "MatchRequest", - "PropertyClass" - ], - "hash": 2132128101, - "properties": { - "m_characterID": { - "type": "gid", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 210498386 - }, - "m_tournamentNameID": { - "type": "unsigned int", - "id": 1, - "offset": 84, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1799846440 - }, - "m_matchNameID": { - "type": "unsigned int", - "id": 2, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1751361288 - }, - "m_leagueID": { - "type": "unsigned int", - "id": 3, - "offset": 88, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 692361645 - }, - "m_seasonID": { - "type": "unsigned int", - "id": 4, - "offset": 92, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 535260643 - }, - "m_teams": { - "type": "class SharedPointer", - "id": 5, - "offset": 96, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1984373608 - }, - "m_minRank": { - "type": "int", - "id": 6, - "offset": 112, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2062988042 - }, - "m_maxRank": { - "type": "int", - "id": 7, - "offset": 116, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1761764108 - }, - "m_pTrackInfo": { - "type": "class SharedPointer", - "id": 8, - "offset": 120, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3026194809 - } - } - }, - "1723456510": { - "name": "class ObstacleCourseModifyTimeBehaviorTemplate", - "bases": [ - "ObstacleCourseObstaclePathBaseTemplate", - "ObstacleCourseObstacleBehaviorTemplate", - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 1723456510, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - }, - "m_rate": { - "type": "float", - "id": 1, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 310005283 - }, - "m_penaltyTime": { - "type": "float", - "id": 2, - "offset": 124, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2083389507 - }, - "m_totalObstacleSize": { - "type": "class Vector3D", - "id": 3, - "offset": 128, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2379878414 - }, - "m_bounds": { - "type": "class Vector3D", - "id": 4, - "offset": 152, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1948083181 - }, - "m_orientToPath": { - "type": "bool", - "id": 5, - "offset": 176, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 655036148 - }, - "m_heightUp": { - "type": "float", - "id": 6, - "offset": 140, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2208713013 - }, - "m_heightDown": { - "type": "float", - "id": 7, - "offset": 144, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 655333896 - }, - "m_timeModifier": { - "type": "int", - "id": 8, - "offset": 184, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 723546552 - }, - "m_effectApply": { - "type": "std::string", - "id": 9, - "offset": 192, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1838368078 - }, - "m_soundApply": { - "type": "std::string", - "id": 10, - "offset": 224, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3579526282 - }, - "m_effectDespawn": { - "type": "std::string", - "id": 11, - "offset": 256, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2174851674 - }, - "m_soundDespawn": { - "type": "std::string", - "id": 12, - "offset": 288, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2068074646 - } - } - }, - "564887240": { - "name": "class TeamGIDToBracketID*", - "bases": [ - "PropertyClass" - ], - "hash": 564887240, - "properties": { - "m_teamGID": { - "type": "gid", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 194811347 - }, - "m_bracketTeamID": { - "type": "unsigned int", - "id": 1, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2174957597 - } - } - }, - "949603994": { - "name": "class WinAnimScaleSymmetricalSpeed", - "bases": [ - "WinAnimScaleSymmetrical", - "WindowAnimation", - "PropertyClass" - ], - "hash": 949603994, - "properties": { - "m_bUseDeepCopy": { - "type": "bool", - "id": 0, - "offset": 72, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 433380635 - }, - "m_scale": { - "type": "float", - "id": 1, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 899693439 - }, - "m_fSpeed": { - "type": "float", - "id": 2, - "offset": 88, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 503609006 - } - } - }, - "948981125": { - "name": "class SharedPointer", - "bases": [ - "ServiceOptionBase", - "PropertyClass" - ], - "hash": 948981125, - "properties": { - "m_serviceName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2206028813 - }, - "m_iconKey": { - "type": "std::string", - "id": 1, - "offset": 168, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2457138637 - }, - "m_displayKey": { - "type": "std::string", - "id": 2, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3023276954 - }, - "m_serviceIndex": { - "type": "unsigned int", - "id": 3, - "offset": 204, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2103126710 - }, - "m_forceInteract": { - "type": "bool", - "id": 4, - "offset": 200, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1705789564 - } - } - }, - "1340594963": { - "name": "class SharedPointer", - "bases": [ - "CharacterCreationInfo", - "PropertyClass" - ], - "hash": 1340594963, - "properties": { - "m_templateID": { - "type": "int", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1075344419 - }, - "m_name": { - "type": "std::wstring", - "id": 1, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513345113 - }, - "m_shouldRename": { - "type": "bool", - "id": 2, - "offset": 128, - "flags": 24, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1741266202 - }, - "m_globalID": { - "type": "gid", - "id": 3, - "offset": 120, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 981205014 - }, - "m_userID": { - "type": "gid", - "id": 4, - "offset": 112, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1037989700 - }, - "m_quarantined": { - "type": "bool", - "id": 5, - "offset": 129, - "flags": 24, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 637025007 - }, - "m_avatarBehavior": { - "type": "class SharedPointer", - "id": 6, - "offset": 136, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2884063077 - }, - "m_equipmentInfoList": { - "type": "class SharedPointer", - "id": 7, - "offset": 152, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2373226440 - }, - "m_location": { - "type": "std::string", - "id": 8, - "offset": 168, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2079561588 - }, - "m_level": { - "type": "int", - "id": 9, - "offset": 200, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 801285362 - }, - "m_world": { - "type": "int", - "id": 10, - "offset": 204, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 814685730 - }, - "m_schoolOfFocus": { - "type": "unsigned int", - "id": 11, - "offset": 208, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 236936682 - }, - "m_nameIndices": { - "type": "unsigned int", - "id": 12, - "offset": 212, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 258521869 - } - } - }, - "2132137469": { - "name": "class PvPMatchRequest*", - "bases": [ - "MatchRequest", - "PropertyClass" - ], - "hash": 2132137469, - "properties": { - "m_characterID": { - "type": "gid", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 210498386 - }, - "m_tournamentNameID": { - "type": "unsigned int", - "id": 1, - "offset": 84, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1799846440 - }, - "m_matchNameID": { - "type": "unsigned int", - "id": 2, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1751361288 - }, - "m_leagueID": { - "type": "unsigned int", - "id": 3, - "offset": 88, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 692361645 - }, - "m_seasonID": { - "type": "unsigned int", - "id": 4, - "offset": 92, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 535260643 - }, - "m_teams": { - "type": "class SharedPointer", - "id": 5, - "offset": 96, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1984373608 - }, - "m_joinQueueRequirements": { - "type": "class SharedPointer", - "id": 6, - "offset": 112, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2746080983 - }, - "m_ignoredList": { - "type": "gid", - "id": 7, - "offset": 128, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1850924028 - }, - "m_matchTimer": { - "type": "float", - "id": 8, - "offset": 144, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1510935909 - }, - "m_bonusTime": { - "type": "int", - "id": 9, - "offset": 148, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1757496496 - }, - "m_passPenalty": { - "type": "int", - "id": 10, - "offset": 152, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 982951662 - }, - "m_yellowTime": { - "type": "int", - "id": 11, - "offset": 156, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1017028741 - }, - "m_redTime": { - "type": "int", - "id": 12, - "offset": 160, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1909556708 - }, - "m_minTurnTime": { - "type": "int", - "id": 13, - "offset": 164, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 652524886 - }, - "m_effects": { - "type": "class SharedPointer", - "id": 14, - "offset": 168, - "flags": 31, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 804962647 - } - } - }, - "1724966120": { - "name": "class ClientCreateAuraActorCinematicAction", - "bases": [ - "CreateAuraActorCinematicAction", - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 1724966120, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - }, - "m_newActorName": { - "type": "std::string", - "id": 2, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2029131039 - } - } - }, - "565706306": { - "name": "class CursorStyleManager", - "bases": [ - "PropertyClass" - ], - "hash": 565706306, - "properties": { - "m_defaultStyle": { - "type": "class CursorStyle", - "id": 0, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": true, - "pointer": false, - "hash": 1643631551 - }, - "m_cursorStyles": { - "type": "class CursorStyle", - "id": 1, - "offset": 408, - "flags": 135, - "container": "Vector", - "dynamic": true, - "singleton": true, - "pointer": false, - "hash": 1639869163 - } - } - }, - "1339340657": { - "name": "class SharedPointer", - "bases": [ - "Requirement", - "PropertyClass" - ], - "hash": 1339340657, - "properties": { - "m_applyNOT": { - "type": "bool", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1746328074, - "enum_options": { - "__DEFAULT": 0 - } - }, - "m_operator": { - "type": "enum Requirement::Operator", - "id": 1, - "offset": 76, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2672792317, - "enum_options": { - "ROP_AND": 0, - "ROP_OR": 1, - "__DEFAULT": "ROP_AND" - } - }, - "m_quest": { - "type": "std::string", - "id": 2, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2305471533 - } - } - }, - "1724906854": { - "name": "class SharedPointer", - "bases": [ - "ActorDialogEntry", - "PropertyClass" - ], - "hash": 1724906854, - "properties": { - "m_requirements": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 263, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3043523229 - }, - "m_dialog": { - "type": "std::string", - "id": 1, - "offset": 88, - "flags": 8388639, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1858395851 - }, - "m_picture": { - "type": "std::string", - "id": 2, - "offset": 120, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3128322903 - }, - "m_soundFile": { - "type": "std::string", - "id": 3, - "offset": 152, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2276870852 - }, - "m_action": { - "type": "std::string", - "id": 4, - "offset": 184, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1734553689 - }, - "m_dialogEvent": { - "type": "std::string", - "id": 5, - "offset": 216, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2707957549 - }, - "m_actorTemplateID": { - "type": "unsigned int", - "id": 6, - "offset": 248, - "flags": 33554463, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2134265679 - }, - "m_cameraName": { - "type": "std::string", - "id": 7, - "offset": 256, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3252786917 - }, - "m_interpolationDuration": { - "type": "float", - "id": 8, - "offset": 312, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1458058437, - "enum_options": { - "__DEFAULT": "1.0" - } - }, - "m_cameraOffsetX": { - "type": "float", - "id": 9, - "offset": 288, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1515912895 - }, - "m_cameraOffsetY": { - "type": "float", - "id": 10, - "offset": 292, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1515912896 - }, - "m_cameraOffsetZ": { - "type": "float", - "id": 11, - "offset": 296, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1515912897 - }, - "m_pitch": { - "type": "float", - "id": 12, - "offset": 304, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 896371695 - }, - "m_yaw": { - "type": "float", - "id": 13, - "offset": 300, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 357256328 - }, - "m_roll": { - "type": "float", - "id": 14, - "offset": 308, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 310020272 - }, - "m_cameraShakeType": { - "type": "std::string", - "id": 15, - "offset": 320, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1754128882, - "enum_options": { - "": 0, - "Constant": "Constant", - "Quake": "Quake", - "Thud": "Thud", - "End": "End", - "__DEFAULT": 0 - } - }, - "m_cameraShakeDuration": { - "type": "float", - "id": 16, - "offset": 352, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 316581010, - "enum_options": { - "__DEFAULT": "0.0" - } - }, - "m_cameraShakeAmplitude": { - "type": "float", - "id": 17, - "offset": 356, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2179718321, - "enum_options": { - "__DEFAULT": "0.0" - } - }, - "m_bypassCameraOnReview": { - "type": "bool", - "id": 18, - "offset": 360, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1412905725, - "enum_options": { - "__DEFAULT": 1 - } - }, - "m_cameraZoneName": { - "type": "std::string", - "id": 19, - "offset": 368, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3131581121 - }, - "m_duration": { - "type": "float", - "id": 20, - "offset": 400, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 920323453 - }, - "m_delay": { - "type": "float", - "id": 21, - "offset": 404, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 881988134 - }, - "m_cameraHidePlayers": { - "type": "int", - "id": 22, - "offset": 408, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 28533149 - }, - "m_walkAwayNpcTemplateID": { - "type": "gid", - "id": 23, - "offset": 416, - "flags": 33554719, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 942697507 - }, - "m_walkAwayExitDirectionInDegrees": { - "type": "float", - "id": 24, - "offset": 424, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 396419785 - }, - "m_walkAwayFadeTime": { - "type": "float", - "id": 25, - "offset": 428, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 822405687 - }, - "m_walkAwayUseCurrentFacing": { - "type": "bool", - "id": 26, - "offset": 432, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1464855436 - }, - "m_standInPlayerTag": { - "type": "std::string", - "id": 27, - "offset": 440, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1590121141 - }, - "m_fadeOutCamera": { - "type": "bool", - "id": 28, - "offset": 472, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1766121252 - }, - "m_snapCameraToPlayerAtExit": { - "type": "bool", - "id": 29, - "offset": 473, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1323369645 - }, - "m_secondaryCameraName": { - "type": "std::string", - "id": 30, - "offset": 480, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1670705581 - }, - "m_secondaryInterpolationDuration": { - "type": "float", - "id": 31, - "offset": 512, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1873822349 - }, - "m_npcStandInList": { - "type": "std::string", - "id": 32, - "offset": 520, - "flags": 287, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2076308937 - }, - "m_dialogAnimationList": { - "type": "std::string", - "id": 33, - "offset": 536, - "flags": 287, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2444806919 - }, - "m_dialogTurningList": { - "type": "std::string", - "id": 34, - "offset": 552, - "flags": 287, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2782869422 - }, - "m_npcYawOffsetInDegrees": { - "type": "float", - "id": 35, - "offset": 568, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1395075270 - }, - "m_allowPlayerToMove": { - "type": "bool", - "id": 36, - "offset": 572, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 225101337 - }, - "m_soundEffectFile": { - "type": "std::string", - "id": 37, - "offset": 576, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3235157265 - }, - "m_musicFile": { - "type": "std::string", - "id": 38, - "offset": 608, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2963686620 - }, - "m_nonStackableMusic": { - "type": "bool", - "id": 39, - "offset": 640, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1675595625 - }, - "m_nonRepeatableMusic": { - "type": "bool", - "id": 40, - "offset": 641, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2138315572 - }, - "m_playMusicAtSFXVolume": { - "type": "bool", - "id": 41, - "offset": 642, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2130871816 - }, - "m_soundEffectDelay": { - "type": "float", - "id": 42, - "offset": 644, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1586382460 - }, - "m_musicDelay": { - "type": "float", - "id": 43, - "offset": 648, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1217785767 - }, - "m_musicFadeTime": { - "type": "float", - "id": 44, - "offset": 652, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 502925015 - }, - "m_dontReleaseCameraAtExit": { - "type": "bool", - "id": 45, - "offset": 474, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1107508961 - }, - "m_disableBackButton": { - "type": "bool", - "id": 46, - "offset": 656, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 122355444 - }, - "m_enableExitButton": { - "type": "bool", - "id": 47, - "offset": 657, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1824693936 - }, - "m_cameraFadeType": { - "type": "std::string", - "id": 48, - "offset": 664, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2021935382, - "enum_options": { - "": 0, - "In Out Black": "In Out Black", - "In Out White": "In Out White", - "In Black": "In Black", - "Out Black": "Out Black", - "In White": "In White", - "Out White": "Out White", - "__DEFAULT": 0 - } - }, - "m_cameraFadeTime": { - "type": "float", - "id": 49, - "offset": 696, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 614419391, - "enum_options": { - "__DEFAULT": "0.5" - } - }, - "m_idleAnimation": { - "type": "std::string", - "id": 50, - "offset": 704, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2900487193 - }, - "m_spamTime": { - "type": "float", - "id": 51, - "offset": 736, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1727215063, - "enum_options": { - "__DEFAULT": "1.0" - } - }, - "m_playSoundIfSpamming": { - "type": "bool", - "id": 52, - "offset": 740, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 690006749, - "enum_options": { - "__DEFAULT": 1 - } - }, - "m_playMusicIfSpamming": { - "type": "bool", - "id": 53, - "offset": 741, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 538564341, - "enum_options": { - "__DEFAULT": 1 - } - }, - "m_stopMusicFadeTime": { - "type": "float", - "id": 54, - "offset": 744, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 696390845, - "enum_options": { - "__DEFAULT": "0.0" - } - }, - "m_restartMusicFadeTime": { - "type": "float", - "id": 55, - "offset": 748, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 709379292, - "enum_options": { - "__DEFAULT": "0.0" - } - }, - "m_meetsRequirements": { - "type": "bool", - "id": 56, - "offset": 752, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 296443061 - }, - "m_secondaryCameraInitalDelay": { - "type": "float", - "id": 57, - "offset": 516, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1812842232 - }, - "m_displayButtonsOnTimedDialog": { - "type": "bool", - "id": 58, - "offset": 753, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 569741400 - } - } - }, - "565450713": { - "name": "class CrownsRewardsSchedule", - "bases": [ - "PropertyClass" - ], - "hash": 565450713, - "properties": {} - }, - "2132308234": { - "name": "class SharedPointer", - "bases": [ - "SoundInfo", - "ClientObjectInfo", - "CoreObjectInfo", - "PropertyClass" - ], - "hash": 2132308234, - "properties": { - "m_templateID.m_full": { - "type": "unsigned __int64", - "id": 0, - "offset": 72, - "flags": 33554439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 633907631 - }, - "m_nObjectID": { - "type": "unsigned int", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 748496927 - }, - "m_location": { - "type": "class Vector3D", - "id": 2, - "offset": 84, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2239683611 - }, - "m_orientation": { - "type": "class Vector3D", - "id": 3, - "offset": 96, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2344058766 - }, - "m_fScale": { - "type": "float", - "id": 4, - "offset": 108, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 503137701 - }, - "m_zoneTag": { - "type": "std::string", - "id": 5, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3405382643 - }, - "m_startState": { - "type": "std::string", - "id": 6, - "offset": 184, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2166880458 - }, - "m_overrideName": { - "type": "std::string", - "id": 7, - "offset": 120, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1990707228 - }, - "m_globalDynamic": { - "type": "bool", - "id": 8, - "offset": 116, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1951691017 - }, - "m_bUndetectable": { - "type": "bool", - "id": 9, - "offset": 216, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1907454341 - }, - "m_spawnRequirements": { - "type": "class SharedPointer", - "id": 10, - "offset": 224, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2309120870 - }, - "m_loadingType": { - "type": "enum CoreObjectInfo::LoadingType", - "id": 11, - "offset": 112, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3522422550, - "enum_options": { - "STATIC_CLIENT_SERVER": 0, - "STATIC_CLIENT": 1, - "STATIC_SERVER": 2, - "DYNAMIC_SERVER": 3 - } - }, - "m_radius": { - "type": "float", - "id": 12, - "offset": 256, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 989410271 - }, - "m_exclusive": { - "type": "bool", - "id": 13, - "offset": 260, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 824383403 - }, - "m_startActive": { - "type": "bool", - "id": 14, - "offset": 261, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2031339229 - }, - "m_category": { - "type": "enum AudioCategory", - "id": 15, - "offset": 264, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2951251982, - "enum_options": { - "AudioCategory_Irrelevent": 0, - "AudioCategory_Accoustic": 1, - "AudioCategory_Noise": 2, - "AudioCategory_Music": 3 - } - }, - "m_override": { - "type": "int", - "id": 16, - "offset": 268, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 136872410, - "enum_options": { - "OVR_RADIUS": 1, - "OVR_CATEGORY": 2, - "OVR_EXCLUSIVE": 4, - "OVR_SIGNATURE": 64, - "OVR_VOLUME": 8, - "OVR_LOOPCOUNT": 16, - "OVR_ACTIVE": 32, - "OVR_PLAYPROG": 128, - "OVR_PRIORITY": 256, - "OVR_PROGTIME": 512, - "OVR_FILTERSET": 1024 - } - }, - "m_enableReqs": { - "type": "class SharedPointer", - "id": 17, - "offset": 272, - "flags": 263, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3158020443 - }, - "m_effect": { - "type": "enum AccousticSignature", - "id": 18, - "offset": 288, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1284866962, - "enum_options": { - "Generic": 0, - "Padded Cell": 1, - "Room": 2, - "Bath Room": 3, - "Living Room": 4, - "Stone Room": 5, - "Auditorium": 6, - "Concert Hall": 7, - "Cave": 8, - "Arena": 9, - "Hanger": 10, - "Carpeted Hallway": 11, - "Hallway": 12, - "Stone Corridor": 13, - "Alley": 14, - "Forest": 15, - "City": 16, - "Mountains": 17, - "Quarry": 18, - "Plain": 19, - "Parking Lot": 20, - "Sewer Pipe": 21, - "Underwater": 22, - "Drugged": 23, - "Dizzy": 24, - "Psychotic": 25 - } - } - } - }, - "949910208": { - "name": "class PlayGraphicOnSigilCinematicAction", - "bases": [ - "CinematicAction", - "PropertyClass" - ], - "hash": 949910208, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_minDuration": { - "type": "float", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1733171553 - }, - "m_assetName": { - "type": "std::string", - "id": 2, - "offset": 88, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513131580 - } - } - }, - "1725394077": { - "name": "struct ControlList::Column", - "bases": [ - "PropertyClass" - ], - "hash": 1725394077, - "properties": { - "m_nWidth": { - "type": "int", - "id": 0, - "offset": 72, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 730982536 - }, - "m_Color": { - "type": "class Color", - "id": 1, - "offset": 76, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1753714077 - } - } - }, - "565746038": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 565746038, - "properties": { - "m_shopKeeperID": { - "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 862026800 - }, - "m_shopType": { - "type": "unsigned int", - "id": 1, - "offset": 76, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 658077993 - } - } - }, - "1341322290": { - "name": "class WinAnimMoveToLocationTime", - "bases": [ - "WinAnimMoveToLocation", - "WindowAnimation", - "PropertyClass" - ], - "hash": 1341322290, - "properties": { - "m_bUseDeepCopy": { - "type": "bool", - "id": 0, - "offset": 72, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 433380635 - }, - "m_targetLocation": { - "type": "class Vector3D", - "id": 1, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2653859938 - }, - "m_fTimeRemaining": { - "type": "float", - "id": 2, - "offset": 100, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1591443014 - }, - "m_fTimeTotal": { - "type": "float", - "id": 3, - "offset": 96, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 661225456 - } - } - }, - "2134229930": { - "name": "class ClientStageBacklashEffectCinematicAction*", - "bases": [ - "StageBacklashEffectCinematicAction", - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 2134229930, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - } - } - }, - "1725212200": { - "name": "class FishTournamentEntry", - "bases": [ - "PropertyClass" - ], - "hash": 1725212200, - "properties": { - "m_characterGID": { - "type": "gid", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 501688601 - }, - "m_fishSize": { - "type": "float", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1986368316 - }, - "m_packedName": { - "type": "std::string", - "id": 2, - "offset": 88, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1805208228 - } - } - }, - "950110681": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 950110681, - "properties": {} - }, - "2133912658": { - "name": "class QuestFinderNPCData", - "bases": [ - "PropertyClass" - ], - "hash": 2133912658, - "properties": { - "m_zoneName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2171167736 - }, - "m_location": { - "type": "class Vector3D", - "id": 1, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2239683611 - }, - "m_firstName": { - "type": "std::string", - "id": 2, - "offset": 120, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3116002948 - }, - "m_lastName": { - "type": "std::string", - "id": 3, - "offset": 152, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1826203600 - }, - "m_zoneDisplayName": { - "type": "std::string", - "id": 4, - "offset": 184, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1962339438 - } - } - }, - "949915860": { - "name": "class SharedPointer", - "bases": [ - "DerbyAddObstacle", - "DerbyEffect", - "PropertyClass" - ], - "hash": 949915860, - "properties": { - "m_buffType": { - "type": "enum DerbyTalentBuffType", - "id": 0, - "offset": 92, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1149251982, - "enum_options": { - "Buff": 0, - "Debuff": 1, - "Neither": 2 - } - }, - "m_kTarget": { - "type": "enum DerbyTargetType", - "id": 1, - "offset": 96, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1807803351, - "enum_options": { - "kTargetInFront": 0, - "kTargetBehind": 1, - "kTargetFirst": 2, - "kTargetSelf": 3, - "kTargetAll": 4, - "kTargetLast": 5 - } - }, - "m_nDuration": { - "type": "int", - "id": 2, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1110167982 - }, - "m_effectID": { - "type": "unsigned int", - "id": 3, - "offset": 88, - "flags": 24, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2347630439 - }, - "m_imageFilename": { - "type": "std::string", - "id": 4, - "offset": 112, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2813328063 - }, - "m_iconIndex": { - "type": "unsigned int", - "id": 5, - "offset": 144, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1265133262 - }, - "m_soundOnActivate": { - "type": "std::string", - "id": 6, - "offset": 152, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1956929714 - }, - "m_soundOnTarget": { - "type": "std::string", - "id": 7, - "offset": 184, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3444214056 - }, - "m_targetParticleEffect": { - "type": "std::string", - "id": 8, - "offset": 216, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3048234723 - }, - "m_overheadMessage": { - "type": "std::string", - "id": 9, - "offset": 248, - "flags": 8388639, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1701018190 - }, - "m_requirements": { - "type": "class RequirementList", - "id": 10, - "offset": 280, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2840988582 - }, - "m_lane": { - "type": "enum DerbyLaneEffect", - "id": 11, - "offset": 376, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1075628144, - "enum_options": { - "kLaneRandomONE": 0, - "kLaneAll": 1, - "kLaneMine": 2 - } - }, - "m_obstacleType": { - "type": "unsigned __int64", - "id": 12, - "offset": 384, - "flags": 33554439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2219764488 - }, - "m_nObstacleAmount": { - "type": "int", - "id": 13, - "offset": 392, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 52937033 - } - } - }, - "2132761747": { - "name": "class LevelUpElixirBehaviorTemplate*", - "bases": [ - "ElixirBehaviorTemplate", - "TimedItemBehaviorTemplate", - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 2132761747, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - }, - "m_expireTime": { - "type": "std::string", - "id": 1, - "offset": 128, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3122602039 - }, - "m_timerType": { - "type": "enum TimerType", - "id": 2, - "offset": 120, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 571744132, - "enum_options": { - "TimerType_Game": 0, - "TimerType_Calendar": 1 - } - }, - "m_typeList": { - "type": "std::string", - "id": 3, - "offset": 160, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2119049625 - }, - "m_equipParticle": { - "type": "std::string", - "id": 4, - "offset": 176, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2222557491 - }, - "m_unequipParticle": { - "type": "std::string", - "id": 5, - "offset": 208, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2215431638 - }, - "m_equipSound": { - "type": "std::string", - "id": 6, - "offset": 240, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2720016552 - }, - "m_unequipSound": { - "type": "std::string", - "id": 7, - "offset": 272, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1552545835 - }, - "m_equipActionList": { - "type": "class SharedPointer", - "id": 8, - "offset": 304, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1314016250 - }, - "m_unequipActionList": { - "type": "class SharedPointer", - "id": 9, - "offset": 320, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2143896925 - }, - "m_combatEnabled": { - "type": "bool", - "id": 10, - "offset": 336, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1399744148 - }, - "m_PvPEnabled": { - "type": "bool", - "id": 11, - "offset": 337, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1042852532 - }, - "m_setCharacterToLevel": { - "type": "int", - "id": 12, - "offset": 408, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1268456078 - }, - "m_resultingTrainingPoints": { - "type": "int", - "id": 13, - "offset": 412, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1710285808 - }, - "m_schoolSpecificData": { - "type": "class SharedPointer", - "id": 14, - "offset": 472, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2609926725 - }, - "m_allSchoolData": { - "type": "class SharedPointer", - "id": 15, - "offset": 488, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2860093528 - }, - "m_firstWarningStringKey": { - "type": "std::string", - "id": 16, - "offset": 344, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3095888729 - }, - "m_secondWarningStringKey": { - "type": "std::string", - "id": 17, - "offset": 376, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2111513997 - }, - "m_accessPasses": { - "type": "std::string", - "id": 18, - "offset": 456, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2956825884 - }, - "m_gold": { - "type": "int", - "id": 19, - "offset": 416, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 219423808 - }, - "m_tutorialEventsToTrigger": { - "type": "std::string", - "id": 20, - "offset": 424, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2795041819 - }, - "m_tipIDsToDismiss": { - "type": "gid", - "id": 21, - "offset": 440, - "flags": 33554439, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1424884996 - }, - "m_maxPotions": { - "type": "int", - "id": 22, - "offset": 504, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1639626892 - } - } - }, - "577733659": { - "name": "class PriceModifiers*", - "bases": [ - "PropertyClass" - ], - "hash": 577733659, - "properties": { - "m_shoppingColors": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 646294186 - }, - "m_dyeShopMods": { - "type": "class SharedPointer", - "id": 1, - "offset": 88, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2565828981 - }, - "m_sellMods": { - "type": "class SharedPointer", - "id": 2, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 789769746 - }, - "m_treasureMods": { - "type": "class SharedPointer", - "id": 3, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2392153009 - } - } - }, - "1342304869": { - "name": "class BattlegroundPlayerStats*", - "bases": [ - "PropertyClass" - ], - "hash": 1342304869, - "properties": { - "m_status": { - "type": "enum BattlegroundPlayerStats::PlayerStatusEnum", - "id": 0, - "offset": 72, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1862714304, - "enum_options": { - "ACTIVE": 0, - "IN_COMBAT": 1, - "DEAD": 2, - "MISSING": 3, - "RED_TEAM": 0, - "BLUE_TEAM": 1 - } - }, - "m_team": { - "type": "enum BattlegroundPlayerStats::PlayerTeamEnum", - "id": 1, - "offset": 76, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1426706772 - }, - "m_packedName": { - "type": "std::string", - "id": 2, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1805208228 - }, - "m_playerID": { - "type": "gid", - "id": 3, - "offset": 112, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1774633426 - }, - "m_polymorphID": { - "type": "unsigned int", - "id": 4, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 702888164 - }, - "m_rating": { - "type": "int", - "id": 5, - "offset": 124, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 899783871 - }, - "m_playerKills": { - "type": "int", - "id": 6, - "offset": 128, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 742064870 - }, - "m_mobKills": { - "type": "int", - "id": 7, - "offset": 132, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 185014199 - }, - "m_autoCaps": { - "type": "int", - "id": 8, - "offset": 136, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1916916346 - }, - "m_combatCaps": { - "type": "int", - "id": 9, - "offset": 140, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 975573175 - }, - "m_deaths": { - "type": "int", - "id": 10, - "offset": 144, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 355961043 - } - } - }, - "570154666": { - "name": "class FaceTargetTeamActorCinematicAction", - "bases": [ - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 570154666, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - }, - "m_bCaster": { - "type": "bool", - "id": 2, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1390351511 - } - } - }, - "1341367036": { - "name": "enum CinematicSoundEmitterInfo::AudioCategory", - "bases": [], - "hash": 1341367036, - "properties": {} - }, - "2133094766": { - "name": "class HousingMusicManager*", - "bases": [ - "PropertyClass" - ], - "hash": 2133094766, - "properties": {} - }, - "1731150736": { - "name": "class AddHangingEffectCinematicAction*", - "bases": [ - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 1731150736, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - }, - "m_effect": { - "type": "std::string", - "id": 2, - "offset": 120, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1894145160 - }, - "m_revealsCloaked": { - "type": "bool", - "id": 3, - "offset": 156, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1618772408 - } - } - }, - "569312825": { - "name": "class PetActor*", - "bases": [ - "MatchActor", - "PropertyClass" - ], - "hash": 569312825, - "properties": { - "m_nActorID": { - "type": "gid", - "id": 0, - "offset": 88, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 663762476 - }, - "m_nLadderContainerID": { - "type": "gid", - "id": 1, - "offset": 96, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 782107042 - }, - "m_nTournamentNameID": { - "type": "unsigned int", - "id": 2, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 471412886 - }, - "m_nTournamentID": { - "type": "gid", - "id": 3, - "offset": 112, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 105258688 - }, - "m_leagueID": { - "type": "unsigned int", - "id": 4, - "offset": 124, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 692361645 - }, - "m_seasonID": { - "type": "unsigned int", - "id": 5, - "offset": 120, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 535260643 - }, - "m_nMatchNameID": { - "type": "unsigned int", - "id": 6, - "offset": 128, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 497033398 - }, - "m_nMatchID": { - "type": "gid", - "id": 7, - "offset": 136, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1050279648 - }, - "m_nTeamID": { - "type": "gid", - "id": 8, - "offset": 144, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 374990266 - }, - "m_status": { - "type": "int", - "id": 9, - "offset": 160, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 960781182 - }, - "m_costAdj": { - "type": "class MatchCostAdjustment", - "id": 10, - "offset": 200, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 913243331 - }, - "m_pLadder": { - "type": "class SharedPointer", - "id": 11, - "offset": 304, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2484171182 - }, - "m_bracketID": { - "type": "gid", - "id": 12, - "offset": 152, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 441272961 - }, - "m_overridingELO": { - "type": "int", - "id": 13, - "offset": 284, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1428697363 - }, - "m_matchKFactor": { - "type": "int", - "id": 14, - "offset": 288, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 773340305 - }, - "m_userID": { - "type": "gid", - "id": 15, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1037989700 - }, - "m_matchMakingRangeForMatches": { - "type": "unsigned int", - "id": 16, - "offset": 320, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1193045098 - }, - "m_maxMatchMakingRangeForMatches": { - "type": "unsigned int", - "id": 17, - "offset": 324, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1279540944 - }, - "m_allowRangeToExceedMaxForMatches": { - "type": "bool", - "id": 18, - "offset": 328, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1260448226 - }, - "m_matchCrownsCost": { - "type": "int", - "id": 19, - "offset": 280, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1094489596 - }, - "m_machineID": { - "type": "gid", - "id": 20, - "offset": 336, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 281396698 - }, - "m_tier": { - "type": "int", - "id": 21, - "offset": 344, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 219884238 - }, - "m_rank": { - "type": "int", - "id": 22, - "offset": 348, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 219803942 - }, - "m_rating": { - "type": "int", - "id": 23, - "offset": 352, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 899783871 - }, - "m_levelBand": { - "type": "int", - "id": 24, - "offset": 356, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2097286567 - }, - "m_enteredQueue": { - "type": "int", - "id": 25, - "offset": 376, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 638238406 - }, - "m_isSubscriber": { - "type": "bool", - "id": 26, - "offset": 428, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 952325795 - }, - "m_meetBracketBadgeRequirnments": { - "type": "bool", - "id": 27, - "offset": 429, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 438139258 - }, - "m_1v1": { - "type": "bool", - "id": 28, - "offset": 430, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 269458571 - }, - "m_streak": { - "type": "int", - "id": 29, - "offset": 360, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 961375108 - }, - "m_matches": { - "type": "int", - "id": 30, - "offset": 364, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1757638687 - }, - "m_lastFight": { - "type": "int", - "id": 31, - "offset": 368, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 91176384 - }, - "m_PVPHistoryStr": { - "type": "std::string", - "id": 32, - "offset": 384, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1498439420 - }, - "m_maxCritHit": { - "type": "float", - "id": 33, - "offset": 416, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2225327348 - }, - "m_maxBlockCrit": { - "type": "float", - "id": 34, - "offset": 420, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 135865530 - }, - "m_shadowPipRating": { - "type": "float", - "id": 35, - "offset": 424, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 507126123 - }, - "m_optInOut": { - "type": "std::string", - "id": 36, - "offset": 168, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3013935453 - }, - "m_playerTimeDraw": { - "type": "bool", - "id": 37, - "offset": 431, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 447636221 - }, - "m_nTemplateID": { - "type": "unsigned __int64", - "id": 38, - "offset": 448, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1575131408 - }, - "m_nRank": { - "type": "unsigned char", - "id": 39, - "offset": 456, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1440551274 - }, - "m_petID": { - "type": "gid", - "id": 40, - "offset": 432, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 806009486 - }, - "m_petPermanentID": { - "type": "gid", - "id": 41, - "offset": 440, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1647183032 - }, - "m_nameBlob": { - "type": "std::string", - "id": 42, - "offset": 464, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3058206907 - } - } - }, - "950251435": { - "name": "class ActorDialog*", - "bases": [ - "ActorDialogBase", - "PropertyClass" - ], - "hash": 950251435, - "properties": { - "m_dialogTag": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2743232871 - }, - "m_dialogEntries": { - "type": "class ActorDialogEntry*", - "id": 1, - "offset": 104, - "flags": 31, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1260107933 - }, - "m_madlibs": { - "type": "class ActorMadlib*", - "id": 2, - "offset": 128, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2877219372 - }, - "m_dialogEvents": { - "type": "std::string", - "id": 3, - "offset": 152, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2778675200 - }, - "m_noAggroWhileDialogIsUp": { - "type": "bool", - "id": 4, - "offset": 168, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1753481610 - }, - "m_noAggroNoDelay": { - "type": "bool", - "id": 5, - "offset": 169, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1784936140 - } - } - }, - "1341351281": { - "name": "class FishTournamentOption", - "bases": [ - "ServiceOptionBase", - "PropertyClass" - ], - "hash": 1341351281, - "properties": { - "m_serviceName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2206028813 - }, - "m_iconKey": { - "type": "std::string", - "id": 1, - "offset": 168, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2457138637 - }, - "m_displayKey": { - "type": "std::string", - "id": 2, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3023276954 - }, - "m_serviceIndex": { - "type": "unsigned int", - "id": 3, - "offset": 204, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2103126710 - }, - "m_forceInteract": { - "type": "bool", - "id": 4, - "offset": 200, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1705789564 - } - } - }, - "1729147122": { - "name": "class ClientFaceTargetTeamActorCinematicAction*", - "bases": [ - "FaceTargetTeamActorCinematicAction", - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 1729147122, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - }, - "m_bCaster": { - "type": "bool", - "id": 2, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1390351511 - } - } - }, - "568907455": { - "name": "class RotateActorCinematicAction*", - "bases": [ - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 568907455, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - }, - "m_deltaYaw": { - "type": "float", - "id": 2, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1518691890 - } - } - }, - "1728425731": { - "name": "class SharedPointer", - "bases": [ - "DerbyEffect", - "PropertyClass" - ], - "hash": 1728425731, - "properties": { - "m_buffType": { - "type": "enum DerbyTalentBuffType", - "id": 0, - "offset": 92, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1149251982, - "enum_options": { - "Buff": 0, - "Debuff": 1, - "Neither": 2 - } - }, - "m_kTarget": { - "type": "enum DerbyTargetType", - "id": 1, - "offset": 96, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1807803351, - "enum_options": { - "kTargetInFront": 0, - "kTargetBehind": 1, - "kTargetFirst": 2, - "kTargetSelf": 3, - "kTargetAll": 4, - "kTargetLast": 5 - } - }, - "m_nDuration": { - "type": "int", - "id": 2, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1110167982 - }, - "m_effectID": { - "type": "unsigned int", - "id": 3, - "offset": 88, - "flags": 24, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2347630439 - }, - "m_imageFilename": { - "type": "std::string", - "id": 4, - "offset": 112, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2813328063 - }, - "m_iconIndex": { - "type": "unsigned int", - "id": 5, - "offset": 144, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1265133262 - }, - "m_soundOnActivate": { - "type": "std::string", - "id": 6, - "offset": 152, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1956929714 - }, - "m_soundOnTarget": { - "type": "std::string", - "id": 7, - "offset": 184, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3444214056 - }, - "m_targetParticleEffect": { - "type": "std::string", - "id": 8, - "offset": 216, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3048234723 - }, - "m_overheadMessage": { - "type": "std::string", - "id": 9, - "offset": 248, - "flags": 8388639, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1701018190 - }, - "m_requirements": { - "type": "class RequirementList", - "id": 10, - "offset": 280, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2840988582 - }, - "m_mods": { - "type": "class PetStatModificationSet", - "id": 11, - "offset": 376, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 686212266 - } - } - }, - "566696695": { - "name": "class ReqHangingCharm*", - "bases": [ - "ConditionalSpellEffectRequirement", - "Requirement", - "PropertyClass" - ], - "hash": 566696695, - "properties": { - "m_applyNOT": { - "type": "bool", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1746328074, - "enum_options": { - "__DEFAULT": 0 - } - }, - "m_operator": { - "type": "enum Requirement::Operator", - "id": 1, - "offset": 76, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2672792317, - "enum_options": { - "ROP_AND": 0, - "ROP_OR": 1, - "__DEFAULT": "ROP_AND" - } - }, - "m_targetType": { - "type": "enum ConditionalSpellEffectRequirement::RequirementTarget", - "id": 2, - "offset": 80, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2547737902, - "enum_options": { - "RT_Caster": 0, - "RT_Target": 1 - } - }, - "m_disposition": { - "type": "enum SpellEffect::kHangingDisposition", - "id": 3, - "offset": 88, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1904841031, - "enum_options": { - "SpellEffect::kBoth": 0, - "SpellEffect::kBeneficial": 1, - "SpellEffect::kHarmful": 2 - } - }, - "m_minCount": { - "type": "int", - "id": 4, - "offset": 92, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1486503815 - }, - "m_maxCount": { - "type": "int", - "id": 5, - "offset": 96, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 136048585 - } - } - }, - "2134218566": { - "name": "class PlayListEntry*", - "bases": [ - "PropertyClass" - ], - "hash": 2134218566, - "properties": { - "m_trackFilename": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2957416369 - }, - "m_bIsStreamed": { - "type": "bool", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2001937222 - }, - "m_animPos": { - "type": "float", - "id": 2, - "offset": 108, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1878658286 - }, - "m_animObjName": { - "type": "std::string", - "id": 3, - "offset": 112, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2369937660 - } - } - }, - "1727587560": { - "name": "class ClientCreateAuraActorCinematicAction*", - "bases": [ - "CreateAuraActorCinematicAction", - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 1727587560, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - }, - "m_newActorName": { - "type": "std::string", - "id": 2, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2029131039 - } - } - }, - "566114439": { - "name": "class MatchActorList", - "bases": [ - "PropertyClass" - ], - "hash": 566114439, - "properties": { - "m_list": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 551684466 - } - } - }, - "952300735": { - "name": "class SharedPointer", - "bases": [ - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 952300735, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - } - } - }, - "1342122568": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1342122568, - "properties": { - "m_bUseDeepCopy": { - "type": "bool", - "id": 0, - "offset": 72, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 433380635 - } - } - }, - "2134218563": { - "name": "class PlayListEntry", - "bases": [ - "PropertyClass" - ], - "hash": 2134218563, - "properties": { - "m_trackFilename": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2957416369 - }, - "m_bIsStreamed": { - "type": "bool", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2001937222 - }, - "m_animPos": { - "type": "float", - "id": 2, - "offset": 108, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1878658286 - }, - "m_animObjName": { - "type": "std::string", - "id": 3, - "offset": 112, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2369937660 - } - } - }, - "1725806376": { - "name": "class SharedPointer", - "bases": [ - "Window", - "PropertyClass" - ], - "hash": 1725806376, - "properties": { - "m_sName": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306437263 - }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621225959 - }, - "m_Style": { - "type": "unsigned int", - "id": 2, - "offset": 152, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "SCALE_CHILDREN": 2, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "FOCUS_LOCKED": 64, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152 - } - }, - "m_Flags": { - "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } - }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3105139380 - }, - "m_fTargetAlpha": { - "type": "float", - "id": 5, - "offset": 212, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1809129834 - }, - "m_fDisabledAlpha": { - "type": "float", - "id": 6, - "offset": 216, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1389987675 - }, - "m_fAlpha": { - "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 482130755 - }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3623628394 - }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2102211316 - }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1846695875 - }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3389835433 - }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2547159940 - }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2587533771 - }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3091503757 - } - } - }, - "951863121": { - "name": "class SharedPointer", - "bases": [ - "Window", - "PropertyClass" - ], - "hash": 951863121, - "properties": { - "m_sName": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306437263 - }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621225959 - }, - "m_Style": { - "type": "unsigned int", - "id": 2, - "offset": 152, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "SCALE_CHILDREN": 2, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "FOCUS_LOCKED": 64, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152 - } - }, - "m_Flags": { - "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } - }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3105139380 - }, - "m_fTargetAlpha": { - "type": "float", - "id": 5, - "offset": 212, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1809129834 - }, - "m_fDisabledAlpha": { - "type": "float", - "id": 6, - "offset": 216, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1389987675 - }, - "m_fAlpha": { - "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 482130755 - }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3623628394 - }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2102211316 - }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1846695875 - }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3389835433 - }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2547159940 - }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2587533771 - }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3091503757 - } - } - }, - "1341723296": { - "name": "class PathObjectTemplate*", - "bases": [ - "PropertyClass" - ], - "hash": 1341723296, - "properties": { - "m_id": { - "type": "gid", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2090569797 - }, - "m_name": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1717359772 - }, - "m_nodeIDs": { - "type": "gid", - "id": 2, - "offset": 112, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1430564382 - } - } - }, - "566693623": { - "name": "class ReqHangingCharm", - "bases": [ - "ConditionalSpellEffectRequirement", - "Requirement", - "PropertyClass" - ], - "hash": 566693623, - "properties": { - "m_applyNOT": { - "type": "bool", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1746328074, - "enum_options": { - "__DEFAULT": 0 - } - }, - "m_operator": { - "type": "enum Requirement::Operator", - "id": 1, - "offset": 76, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2672792317, - "enum_options": { - "ROP_AND": 0, - "ROP_OR": 1, - "__DEFAULT": "ROP_AND" - } - }, - "m_targetType": { - "type": "enum ConditionalSpellEffectRequirement::RequirementTarget", - "id": 2, - "offset": 80, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2547737902, - "enum_options": { - "RT_Caster": 0, - "RT_Target": 1 - } - }, - "m_disposition": { - "type": "enum SpellEffect::kHangingDisposition", - "id": 3, - "offset": 88, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1904841031, - "enum_options": { - "SpellEffect::kBoth": 0, - "SpellEffect::kBeneficial": 1, - "SpellEffect::kHarmful": 2 - } - }, - "m_minCount": { - "type": "int", - "id": 4, - "offset": 92, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1486503815 - }, - "m_maxCount": { - "type": "int", - "id": 5, - "offset": 96, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 136048585 - } - } - }, - "951503204": { - "name": "class TransformationEffectTemplate*", - "bases": [ - "GameEffectTemplate", - "PropertyClass" - ], - "hash": 951503204, - "properties": { - "m_effectName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2029161513 - }, - "m_effectCategory": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1852673222 - }, - "m_sortOrder": { - "type": "int", - "id": 2, - "offset": 148, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1411218206 - }, - "m_duration": { - "type": "double", - "id": 3, - "offset": 192, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2727932435 - }, - "m_stackingCategories": { - "type": "std::string", - "id": 4, - "offset": 160, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1774497525 - }, - "m_isPersistent": { - "type": "bool", - "id": 5, - "offset": 153, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 923861920 - }, - "m_bIsOnPet": { - "type": "bool", - "id": 6, - "offset": 154, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 522593303 - }, - "m_isPublic": { - "type": "bool", - "id": 7, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1728439822 - }, - "m_visualEffectAddName": { - "type": "std::string", - "id": 8, - "offset": 200, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3382086694 - }, - "m_visualEffectRemoveName": { - "type": "std::string", - "id": 9, - "offset": 232, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1541697323 - }, - "m_onAddFunctorName": { - "type": "std::string", - "id": 10, - "offset": 280, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1561843107 - }, - "m_onRemoveFunctorName": { - "type": "std::string", - "id": 11, - "offset": 312, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2559017864 - }, - "m_stackingRule": { - "type": "enum STACKING_RULE", - "id": 12, - "offset": 144, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 431568889, - "enum_options": { - "STACKING_ALLOWED": 0, - "STACKING_NOSTACK": 1, - "STACKING_REPLACE": 2 - } - }, - "m_sRace": { - "type": "std::string", - "id": 13, - "offset": 360, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306580681 - }, - "m_fScale": { - "type": "float", - "id": 14, - "offset": 392, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 503137701 - }, - "m_nPrimaryColor": { - "type": "int", - "id": 15, - "offset": 396, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 310334923 - }, - "m_nSecondaryColor": { - "type": "int", - "id": 16, - "offset": 400, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 516938671 - }, - "m_nPatternOption": { - "type": "int", - "id": 17, - "offset": 404, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 413195679 - }, - "m_nGeometryOption": { - "type": "int", - "id": 18, - "offset": 408, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 676541869 - }, - "m_sNaturalAttack": { - "type": "std::string", - "id": 19, - "offset": 416, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2131867453 - } - } - }, - "951472174": { - "name": "class InitialPackageInfo*", - "bases": [ - "PropertyClass" - ], - "hash": 951472174, - "properties": { - "m_packageContents": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 268435463, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 3309777205, - "enum_options": { - "__BASECLASS": "ZoneData" - } - } - } - }, - "2134229290": { - "name": "class ClientStageBacklashEffectCinematicAction", - "bases": [ - "StageBacklashEffectCinematicAction", - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 2134229290, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - } - } - }, - "950839518": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 950839518, - "properties": { - "m_itemID": { - "type": "gid", - "id": 0, - "offset": 80, - "flags": 33554439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 569545460 - }, - "m_adjective": { - "type": "std::string", - "id": 1, - "offset": 88, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3429518154 - }, - "m_quantity": { - "type": "int", - "id": 2, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 169215289 - }, - "m_spellTemplate": { - "type": "std::string", - "id": 3, - "offset": 128, - "flags": 268435463, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1746600759, - "enum_options": { - "__BASECLASS": "SpellTemplate" - } - }, - "m_ingredientType": { - "type": "enum Ingredient::INGREDIENT_TYPE", - "id": 4, - "offset": 72, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3347167757, - "enum_options": { - "INGREDIENT_REAGENT": 0, - "INGREDIENT_TREASURE": 1, - "INGREDIENT_ITEM": 2, - "INGREDIENT_FISH": 3, - "INGREDIENT_PET_SNACK": 4 - } - } - } - }, - "1728604949": { - "name": "class SharedPointer", - "bases": [ - "GameEffectTemplate", - "PropertyClass" - ], - "hash": 1728604949, - "properties": { - "m_effectName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2029161513 - }, - "m_effectCategory": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1852673222 - }, - "m_sortOrder": { - "type": "int", - "id": 2, - "offset": 148, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1411218206 - }, - "m_duration": { - "type": "double", - "id": 3, - "offset": 192, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2727932435 - }, - "m_stackingCategories": { - "type": "std::string", - "id": 4, - "offset": 160, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1774497525 - }, - "m_isPersistent": { - "type": "bool", - "id": 5, - "offset": 153, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 923861920 - }, - "m_bIsOnPet": { - "type": "bool", - "id": 6, - "offset": 154, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 522593303 - }, - "m_isPublic": { - "type": "bool", - "id": 7, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1728439822 - }, - "m_visualEffectAddName": { - "type": "std::string", - "id": 8, - "offset": 200, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3382086694 - }, - "m_visualEffectRemoveName": { - "type": "std::string", - "id": 9, - "offset": 232, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1541697323 - }, - "m_onAddFunctorName": { - "type": "std::string", - "id": 10, - "offset": 280, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1561843107 - }, - "m_onRemoveFunctorName": { - "type": "std::string", - "id": 11, - "offset": 312, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2559017864 - }, - "m_stackingRule": { - "type": "enum STACKING_RULE", - "id": 12, - "offset": 144, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 431568889, - "enum_options": { - "STACKING_ALLOWED": 0, - "STACKING_NOSTACK": 1, - "STACKING_REPLACE": 2 - } - }, - "m_pulsePeriod": { - "type": "double", - "id": 13, - "offset": 360, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3960618585 - }, - "m_pulseEventName": { - "type": "std::string", - "id": 14, - "offset": 368, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1858926599 - } - } - }, - "568907445": { - "name": "class RotateActorCinematicAction", - "bases": [ - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 568907445, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - }, - "m_deltaYaw": { - "type": "float", - "id": 2, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1518691890 - } - } - }, - "1343249825": { - "name": "class MonsterMagicBehaviorTemplate*", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 1343249825, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - } - } - }, - "1728494489": { - "name": "class SharedPointer", - "bases": [ - "GameEffectTemplate", - "PropertyClass" - ], - "hash": 1728494489, - "properties": { - "m_effectName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2029161513 - }, - "m_effectCategory": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1852673222 - }, - "m_sortOrder": { - "type": "int", - "id": 2, - "offset": 148, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1411218206 - }, - "m_duration": { - "type": "double", - "id": 3, - "offset": 192, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2727932435 - }, - "m_stackingCategories": { - "type": "std::string", - "id": 4, - "offset": 160, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1774497525 - }, - "m_isPersistent": { - "type": "bool", - "id": 5, - "offset": 153, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 923861920 - }, - "m_bIsOnPet": { - "type": "bool", - "id": 6, - "offset": 154, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 522593303 - }, - "m_isPublic": { - "type": "bool", - "id": 7, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1728439822 - }, - "m_visualEffectAddName": { - "type": "std::string", - "id": 8, - "offset": 200, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3382086694 - }, - "m_visualEffectRemoveName": { - "type": "std::string", - "id": 9, - "offset": 232, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1541697323 - }, - "m_onAddFunctorName": { - "type": "std::string", - "id": 10, - "offset": 280, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1561843107 - }, - "m_onRemoveFunctorName": { - "type": "std::string", - "id": 11, - "offset": 312, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2559017864 - }, - "m_stackingRule": { - "type": "enum STACKING_RULE", - "id": 12, - "offset": 144, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 431568889, - "enum_options": { - "STACKING_ALLOWED": 0, - "STACKING_NOSTACK": 1, - "STACKING_REPLACE": 2 - } - }, - "m_state": { - "type": "std::string", - "id": 13, - "offset": 360, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2307803100 - }, - "m_animation": { - "type": "std::string", - "id": 14, - "offset": 392, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3431428731 - }, - "m_override": { - "type": "bool", - "id": 15, - "offset": 424, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 139353587 - } - } - }, - "567077787": { - "name": "enum PetDerbyActions", - "bases": [], - "hash": 567077787, - "properties": {} - }, - "1342590395": { - "name": "class HealthGlobe", - "bases": [ - "StatGlobe", - "ControlSprite", - "Window", - "PropertyClass" - ], - "hash": 1342590395, - "properties": { - "m_sName": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306437263 - }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621225959 - }, - "m_Style": { - "type": "unsigned int", - "id": 2, - "offset": 152, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "SCALE_CHILDREN": 2, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "FOCUS_LOCKED": 64, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152 - } - }, - "m_Flags": { - "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648, - "ONE_SHOT": 8388608, - "FLIPPED_HORIZONTAL": 16777216, - "FLIPPED_VERTICAL": 33554432 - } - }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3105139380 - }, - "m_fTargetAlpha": { - "type": "float", - "id": 5, - "offset": 212, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1809129834 - }, - "m_fDisabledAlpha": { - "type": "float", - "id": 6, - "offset": 216, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1389987675 - }, - "m_fAlpha": { - "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 482130755 - }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3623628394 - }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2102211316 - }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1846695875 - }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3389835433 - }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2547159940 - }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2587533771 - }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3091503757 - }, - "m_pMaterial": { - "type": "class SharedPointer", - "id": 16, - "offset": 592, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3479277078 - }, - "m_fRotation": { - "type": "float", - "id": 17, - "offset": 608, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1175400173 - }, - "m_Color": { - "type": "class Color", - "id": 18, - "offset": 584, - "flags": 262279, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1753714077 - }, - "m_textColor": { - "type": "class Color", - "id": 19, - "offset": 612, - "flags": 262279, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2528109250 - }, - "m_textComponent": { - "type": "class TextComponent", - "id": 20, - "offset": 616, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3491704390 - }, - "m_amount": { - "type": "int", - "id": 21, - "offset": 800, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 248546638 - } - } - }, - "2137655096": { - "name": "class ClientClearBottomTeamCinematicAction", - "bases": [ - "ClearBottomTeamCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 2137655096, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_interpDuration": { - "type": "float", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237711951 - } - } - }, - "1342532259": { - "name": "enum DerbyTerrainTargetType", - "bases": [], - "hash": 1342532259, - "properties": {} - }, - "2136413240": { - "name": "class PipCinematicActor*", - "bases": [ - "CinematicActor", - "PropertyClass" - ], - "hash": 2136413240, - "properties": {} - }, - "951509348": { - "name": "class TransformationEffectTemplate", - "bases": [ - "GameEffectTemplate", - "PropertyClass" - ], - "hash": 951509348, - "properties": { - "m_effectName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2029161513 - }, - "m_effectCategory": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1852673222 - }, - "m_sortOrder": { - "type": "int", - "id": 2, - "offset": 148, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1411218206 - }, - "m_duration": { - "type": "double", - "id": 3, - "offset": 192, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2727932435 - }, - "m_stackingCategories": { - "type": "std::string", - "id": 4, - "offset": 160, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1774497525 - }, - "m_isPersistent": { - "type": "bool", - "id": 5, - "offset": 153, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 923861920 - }, - "m_bIsOnPet": { - "type": "bool", - "id": 6, - "offset": 154, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 522593303 - }, - "m_isPublic": { - "type": "bool", - "id": 7, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1728439822 - }, - "m_visualEffectAddName": { - "type": "std::string", - "id": 8, - "offset": 200, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3382086694 - }, - "m_visualEffectRemoveName": { - "type": "std::string", - "id": 9, - "offset": 232, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1541697323 - }, - "m_onAddFunctorName": { - "type": "std::string", - "id": 10, - "offset": 280, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1561843107 - }, - "m_onRemoveFunctorName": { - "type": "std::string", - "id": 11, - "offset": 312, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2559017864 - }, - "m_stackingRule": { - "type": "enum STACKING_RULE", - "id": 12, - "offset": 144, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 431568889, - "enum_options": { - "STACKING_ALLOWED": 0, - "STACKING_NOSTACK": 1, - "STACKING_REPLACE": 2 - } - }, - "m_sRace": { - "type": "std::string", - "id": 13, - "offset": 360, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306580681 - }, - "m_fScale": { - "type": "float", - "id": 14, - "offset": 392, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 503137701 - }, - "m_nPrimaryColor": { - "type": "int", - "id": 15, - "offset": 396, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 310334923 - }, - "m_nSecondaryColor": { - "type": "int", - "id": 16, - "offset": 400, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 516938671 - }, - "m_nPatternOption": { - "type": "int", - "id": 17, - "offset": 404, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 413195679 - }, - "m_nGeometryOption": { - "type": "int", - "id": 18, - "offset": 408, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 676541869 - }, - "m_sNaturalAttack": { - "type": "std::string", - "id": 19, - "offset": 416, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2131867453 - } - } - }, - "2135033656": { - "name": "class ClientClearBottomTeamCinematicAction*", - "bases": [ - "ClearBottomTeamCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 2135033656, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_interpDuration": { - "type": "float", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237711951 - } - } - }, - "1728983951": { - "name": "class SharedPointer", - "bases": [ - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 1728983951, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - }, - "m_cloaked": { - "type": "bool", - "id": 2, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 7349510 - }, - "m_detonate": { - "type": "bool", - "id": 3, - "offset": 153, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1738601959 - }, - "m_burnSound": { - "type": "std::string", - "id": 4, - "offset": 120, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1827806971 - } - } - }, - "2134814364": { - "name": "class SharedPointer", - "bases": [ - "WinAnimSize", - "WindowAnimation", - "PropertyClass" - ], - "hash": 2134814364, - "properties": { - "m_bUseDeepCopy": { - "type": "bool", - "id": 0, - "offset": 72, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 433380635 - }, - "m_size": { - "type": "class Size", - "id": 1, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 251247159 - }, - "m_fTimeTotal": { - "type": "float", - "id": 2, - "offset": 88, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 661225456 - }, - "m_fTimeRemaining": { - "type": "float", - "id": 3, - "offset": 92, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1591443014 - }, - "m_currentSize": { - "type": "class Vector3D", - "id": 4, - "offset": 96, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2914066496 - } - } - }, - "569312441": { - "name": "class PetActor", - "bases": [ - "MatchActor", - "PropertyClass" - ], - "hash": 569312441, - "properties": { - "m_nActorID": { - "type": "gid", - "id": 0, - "offset": 88, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 663762476 - }, - "m_nLadderContainerID": { - "type": "gid", - "id": 1, - "offset": 96, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 782107042 - }, - "m_nTournamentNameID": { - "type": "unsigned int", - "id": 2, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 471412886 - }, - "m_nTournamentID": { - "type": "gid", - "id": 3, - "offset": 112, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 105258688 - }, - "m_leagueID": { - "type": "unsigned int", - "id": 4, - "offset": 124, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 692361645 - }, - "m_seasonID": { - "type": "unsigned int", - "id": 5, - "offset": 120, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 535260643 - }, - "m_nMatchNameID": { - "type": "unsigned int", - "id": 6, - "offset": 128, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 497033398 - }, - "m_nMatchID": { - "type": "gid", - "id": 7, - "offset": 136, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1050279648 - }, - "m_nTeamID": { - "type": "gid", - "id": 8, - "offset": 144, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 374990266 - }, - "m_status": { - "type": "int", - "id": 9, - "offset": 160, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 960781182 - }, - "m_costAdj": { - "type": "class MatchCostAdjustment", - "id": 10, - "offset": 200, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 913243331 - }, - "m_pLadder": { - "type": "class SharedPointer", - "id": 11, - "offset": 304, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2484171182 - }, - "m_bracketID": { - "type": "gid", - "id": 12, - "offset": 152, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 441272961 - }, - "m_overridingELO": { - "type": "int", - "id": 13, - "offset": 284, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1428697363 - }, - "m_matchKFactor": { - "type": "int", - "id": 14, - "offset": 288, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 773340305 - }, - "m_userID": { - "type": "gid", - "id": 15, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1037989700 - }, - "m_matchMakingRangeForMatches": { - "type": "unsigned int", - "id": 16, - "offset": 320, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1193045098 - }, - "m_maxMatchMakingRangeForMatches": { - "type": "unsigned int", - "id": 17, - "offset": 324, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1279540944 - }, - "m_allowRangeToExceedMaxForMatches": { - "type": "bool", - "id": 18, - "offset": 328, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1260448226 - }, - "m_matchCrownsCost": { - "type": "int", - "id": 19, - "offset": 280, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1094489596 - }, - "m_machineID": { - "type": "gid", - "id": 20, - "offset": 336, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 281396698 - }, - "m_tier": { - "type": "int", - "id": 21, - "offset": 344, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 219884238 - }, - "m_rank": { - "type": "int", - "id": 22, - "offset": 348, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 219803942 - }, - "m_rating": { - "type": "int", - "id": 23, - "offset": 352, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 899783871 - }, - "m_levelBand": { - "type": "int", - "id": 24, - "offset": 356, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2097286567 - }, - "m_enteredQueue": { - "type": "int", - "id": 25, - "offset": 376, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 638238406 - }, - "m_isSubscriber": { - "type": "bool", - "id": 26, - "offset": 428, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 952325795 - }, - "m_meetBracketBadgeRequirnments": { - "type": "bool", - "id": 27, - "offset": 429, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 438139258 - }, - "m_1v1": { - "type": "bool", - "id": 28, - "offset": 430, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 269458571 - }, - "m_streak": { - "type": "int", - "id": 29, - "offset": 360, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 961375108 - }, - "m_matches": { - "type": "int", - "id": 30, - "offset": 364, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1757638687 - }, - "m_lastFight": { - "type": "int", - "id": 31, - "offset": 368, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 91176384 - }, - "m_PVPHistoryStr": { - "type": "std::string", - "id": 32, - "offset": 384, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1498439420 - }, - "m_maxCritHit": { - "type": "float", - "id": 33, - "offset": 416, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2225327348 - }, - "m_maxBlockCrit": { - "type": "float", - "id": 34, - "offset": 420, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 135865530 - }, - "m_shadowPipRating": { - "type": "float", - "id": 35, - "offset": 424, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 507126123 - }, - "m_optInOut": { - "type": "std::string", - "id": 36, - "offset": 168, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3013935453 - }, - "m_playerTimeDraw": { - "type": "bool", - "id": 37, - "offset": 431, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 447636221 - }, - "m_nTemplateID": { - "type": "unsigned __int64", - "id": 38, - "offset": 448, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1575131408 - }, - "m_nRank": { - "type": "unsigned char", - "id": 39, - "offset": 456, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1440551274 - }, - "m_petID": { - "type": "gid", - "id": 40, - "offset": 432, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 806009486 - }, - "m_petPermanentID": { - "type": "gid", - "id": 41, - "offset": 440, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1647183032 - }, - "m_nameBlob": { - "type": "std::string", - "id": 42, - "offset": 464, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3058206907 - } - } - }, - "951959122": { - "name": "class WindowBubble", - "bases": [ - "PropertyClass" - ], - "hash": 951959122, - "properties": { - "m_sFilename": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2431512111 - }, - "m_Flags": { - "type": "unsigned int", - "id": 1, - "offset": 104, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 967851578, - "enum_options": { - "DOCK_BL_OF_BUBBLE": 1, - "DOCK_BR_OF_BUBBLE": 2, - "DOCK_TL_OF_BUBBLE": 4, - "DOCK_TR_OF_BUBBLE": 8 - } - }, - "m_DockToPoint": { - "type": "class Point", - "id": 2, - "offset": 144, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2353513904 - } - } - }, - "1343255969": { - "name": "class MonsterMagicBehaviorTemplate", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 1343255969, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - } - } - }, - "1729298571": { - "name": "class SharedPointer", - "bases": [ - "DerbyModifyMoraleChance", - "DerbyEffect", - "PropertyClass" - ], - "hash": 1729298571, - "properties": { - "m_buffType": { - "type": "enum DerbyTalentBuffType", - "id": 0, - "offset": 92, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1149251982, - "enum_options": { - "Buff": 0, - "Debuff": 1, - "Neither": 2 - } - }, - "m_kTarget": { - "type": "enum DerbyTargetType", - "id": 1, - "offset": 96, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1807803351, - "enum_options": { - "kTargetInFront": 0, - "kTargetBehind": 1, - "kTargetFirst": 2, - "kTargetSelf": 3, - "kTargetAll": 4, - "kTargetLast": 5 - } - }, - "m_nDuration": { - "type": "int", - "id": 2, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1110167982 - }, - "m_effectID": { - "type": "unsigned int", - "id": 3, - "offset": 88, - "flags": 24, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2347630439 - }, - "m_imageFilename": { - "type": "std::string", - "id": 4, - "offset": 112, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2813328063 - }, - "m_iconIndex": { - "type": "unsigned int", - "id": 5, - "offset": 144, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1265133262 - }, - "m_soundOnActivate": { - "type": "std::string", - "id": 6, - "offset": 152, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1956929714 - }, - "m_soundOnTarget": { - "type": "std::string", - "id": 7, - "offset": 184, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3444214056 - }, - "m_targetParticleEffect": { - "type": "std::string", - "id": 8, - "offset": 216, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3048234723 - }, - "m_overheadMessage": { - "type": "std::string", - "id": 9, - "offset": 248, - "flags": 8388639, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1701018190 - }, - "m_requirements": { - "type": "class RequirementList", - "id": 10, - "offset": 280, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2840988582 - }, - "m_moraleChanceActionMap": { - "type": "class MoraleModificationMap", - "id": 11, - "offset": 376, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1654668404 - } - } - }, - "2135915104": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 2135915104, - "properties": {} - }, - "1729147506": { - "name": "class ClientFaceTargetTeamActorCinematicAction", - "bases": [ - "FaceTargetTeamActorCinematicAction", - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 1729147506, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - }, - "m_bCaster": { - "type": "bool", - "id": 2, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1390351511 - } - } - }, - "569978041": { - "name": "class std::list >", - "bases": [], - "hash": 569978041, - "properties": {} - }, - "1343498593": { - "name": "class MatchTeamResult*", - "bases": [ - "PropertyClass" - ], - "hash": 1343498593, - "properties": { - "m_teamID": { - "type": "gid", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 982102220 - }, - "m_teamResolution": { - "type": "unsigned char", - "id": 1, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1933240587 - } - } - }, - "569336481": { - "name": "class PvPActor*", - "bases": [ - "MatchActor", - "PropertyClass" - ], - "hash": 569336481, - "properties": { - "m_nActorID": { - "type": "gid", - "id": 0, - "offset": 88, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 663762476 - }, - "m_nLadderContainerID": { - "type": "gid", - "id": 1, - "offset": 96, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 782107042 - }, - "m_nTournamentNameID": { - "type": "unsigned int", - "id": 2, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 471412886 - }, - "m_nTournamentID": { - "type": "gid", - "id": 3, - "offset": 112, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 105258688 - }, - "m_leagueID": { - "type": "unsigned int", - "id": 4, - "offset": 124, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 692361645 - }, - "m_seasonID": { - "type": "unsigned int", - "id": 5, - "offset": 120, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 535260643 - }, - "m_nMatchNameID": { - "type": "unsigned int", - "id": 6, - "offset": 128, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 497033398 - }, - "m_nMatchID": { - "type": "gid", - "id": 7, - "offset": 136, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1050279648 - }, - "m_nTeamID": { - "type": "gid", - "id": 8, - "offset": 144, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 374990266 - }, - "m_status": { - "type": "int", - "id": 9, - "offset": 160, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 960781182 - }, - "m_costAdj": { - "type": "class MatchCostAdjustment", - "id": 10, - "offset": 200, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 913243331 - }, - "m_pLadder": { - "type": "class SharedPointer", - "id": 11, - "offset": 304, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2484171182 - }, - "m_bracketID": { - "type": "gid", - "id": 12, - "offset": 152, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 441272961 - }, - "m_overridingELO": { - "type": "int", - "id": 13, - "offset": 284, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1428697363 - }, - "m_matchKFactor": { - "type": "int", - "id": 14, - "offset": 288, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 773340305 - }, - "m_userID": { - "type": "gid", - "id": 15, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1037989700 - }, - "m_matchMakingRangeForMatches": { - "type": "unsigned int", - "id": 16, - "offset": 320, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1193045098 - }, - "m_maxMatchMakingRangeForMatches": { - "type": "unsigned int", - "id": 17, - "offset": 324, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1279540944 - }, - "m_allowRangeToExceedMaxForMatches": { - "type": "bool", - "id": 18, - "offset": 328, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1260448226 - }, - "m_matchCrownsCost": { - "type": "int", - "id": 19, - "offset": 280, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1094489596 - }, - "m_machineID": { - "type": "gid", - "id": 20, - "offset": 336, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 281396698 - }, - "m_tier": { - "type": "int", - "id": 21, - "offset": 344, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 219884238 - }, - "m_rank": { - "type": "int", - "id": 22, - "offset": 348, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 219803942 - }, - "m_rating": { - "type": "int", - "id": 23, - "offset": 352, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 899783871 - }, - "m_levelBand": { - "type": "int", - "id": 24, - "offset": 356, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2097286567 - }, - "m_enteredQueue": { - "type": "int", - "id": 25, - "offset": 376, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 638238406 - }, - "m_isSubscriber": { - "type": "bool", - "id": 26, - "offset": 428, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 952325795 - }, - "m_meetBracketBadgeRequirnments": { - "type": "bool", - "id": 27, - "offset": 429, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 438139258 - }, - "m_1v1": { - "type": "bool", - "id": 28, - "offset": 430, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 269458571 - }, - "m_streak": { - "type": "int", - "id": 29, - "offset": 360, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 961375108 - }, - "m_matches": { - "type": "int", - "id": 30, - "offset": 364, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1757638687 - }, - "m_lastFight": { - "type": "int", - "id": 31, - "offset": 368, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 91176384 - }, - "m_PVPHistoryStr": { - "type": "std::string", - "id": 32, - "offset": 384, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1498439420 - }, - "m_maxCritHit": { - "type": "float", - "id": 33, - "offset": 416, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2225327348 - }, - "m_maxBlockCrit": { - "type": "float", - "id": 34, - "offset": 420, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 135865530 - }, - "m_shadowPipRating": { - "type": "float", - "id": 35, - "offset": 424, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 507126123 - }, - "m_optInOut": { - "type": "std::string", - "id": 36, - "offset": 168, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3013935453 - }, - "m_playerTimeDraw": { - "type": "bool", - "id": 37, - "offset": 431, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 447636221 - }, - "m_pvpStatus": { - "type": "unsigned char", - "id": 38, - "offset": 432, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 773570858 - }, - "m_gender": { - "type": "short", - "id": 39, - "offset": 434, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 564443897 - }, - "m_level": { - "type": "int", - "id": 40, - "offset": 436, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 801285362 - }, - "m_nameBlob": { - "type": "std::string", - "id": 41, - "offset": 440, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3058206907 - }, - "m_sSchool": { - "type": "std::string", - "id": 42, - "offset": 472, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1846342998 - }, - "m_timeLeft": { - "type": "int", - "id": 43, - "offset": 508, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1315288020 - } - } - }, - "954027565": { - "name": "struct PointData*", - "bases": [ - "PropertyClass" - ], - "hash": 954027565, - "properties": { - "m_position": { - "type": "class Vector3D", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3697900983 - }, - "m_pitch": { - "type": "float", - "id": 1, - "offset": 84, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 896371695 - }, - "m_yaw": { - "type": "float", - "id": 2, - "offset": 88, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 357256328 - }, - "m_roll": { - "type": "float", - "id": 3, - "offset": 92, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 310020272, - "enum_options": { - "__DEFAULT": 0 - } - } - } - }, - "569335841": { - "name": "class PvPActor", - "bases": [ - "MatchActor", - "PropertyClass" - ], - "hash": 569335841, - "properties": { - "m_nActorID": { - "type": "gid", - "id": 0, - "offset": 88, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 663762476 - }, - "m_nLadderContainerID": { - "type": "gid", - "id": 1, - "offset": 96, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 782107042 - }, - "m_nTournamentNameID": { - "type": "unsigned int", - "id": 2, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 471412886 - }, - "m_nTournamentID": { - "type": "gid", - "id": 3, - "offset": 112, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 105258688 - }, - "m_leagueID": { - "type": "unsigned int", - "id": 4, - "offset": 124, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 692361645 - }, - "m_seasonID": { - "type": "unsigned int", - "id": 5, - "offset": 120, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 535260643 - }, - "m_nMatchNameID": { - "type": "unsigned int", - "id": 6, - "offset": 128, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 497033398 - }, - "m_nMatchID": { - "type": "gid", - "id": 7, - "offset": 136, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1050279648 - }, - "m_nTeamID": { - "type": "gid", - "id": 8, - "offset": 144, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 374990266 - }, - "m_status": { - "type": "int", - "id": 9, - "offset": 160, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 960781182 - }, - "m_costAdj": { - "type": "class MatchCostAdjustment", - "id": 10, - "offset": 200, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 913243331 - }, - "m_pLadder": { - "type": "class SharedPointer", - "id": 11, - "offset": 304, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2484171182 - }, - "m_bracketID": { - "type": "gid", - "id": 12, - "offset": 152, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 441272961 - }, - "m_overridingELO": { - "type": "int", - "id": 13, - "offset": 284, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1428697363 - }, - "m_matchKFactor": { - "type": "int", - "id": 14, - "offset": 288, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 773340305 - }, - "m_userID": { - "type": "gid", - "id": 15, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1037989700 - }, - "m_matchMakingRangeForMatches": { - "type": "unsigned int", - "id": 16, - "offset": 320, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1193045098 - }, - "m_maxMatchMakingRangeForMatches": { - "type": "unsigned int", - "id": 17, - "offset": 324, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1279540944 - }, - "m_allowRangeToExceedMaxForMatches": { - "type": "bool", - "id": 18, - "offset": 328, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1260448226 - }, - "m_matchCrownsCost": { - "type": "int", - "id": 19, - "offset": 280, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1094489596 - }, - "m_machineID": { - "type": "gid", - "id": 20, - "offset": 336, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 281396698 - }, - "m_tier": { - "type": "int", - "id": 21, - "offset": 344, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 219884238 - }, - "m_rank": { - "type": "int", - "id": 22, - "offset": 348, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 219803942 - }, - "m_rating": { - "type": "int", - "id": 23, - "offset": 352, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 899783871 - }, - "m_levelBand": { - "type": "int", - "id": 24, - "offset": 356, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2097286567 - }, - "m_enteredQueue": { - "type": "int", - "id": 25, - "offset": 376, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 638238406 - }, - "m_isSubscriber": { - "type": "bool", - "id": 26, - "offset": 428, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 952325795 - }, - "m_meetBracketBadgeRequirnments": { - "type": "bool", - "id": 27, - "offset": 429, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 438139258 - }, - "m_1v1": { - "type": "bool", - "id": 28, - "offset": 430, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 269458571 - }, - "m_streak": { - "type": "int", - "id": 29, - "offset": 360, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 961375108 - }, - "m_matches": { - "type": "int", - "id": 30, - "offset": 364, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1757638687 - }, - "m_lastFight": { - "type": "int", - "id": 31, - "offset": 368, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 91176384 - }, - "m_PVPHistoryStr": { - "type": "std::string", - "id": 32, - "offset": 384, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1498439420 - }, - "m_maxCritHit": { - "type": "float", - "id": 33, - "offset": 416, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2225327348 - }, - "m_maxBlockCrit": { - "type": "float", - "id": 34, - "offset": 420, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 135865530 - }, - "m_shadowPipRating": { - "type": "float", - "id": 35, - "offset": 424, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 507126123 - }, - "m_optInOut": { - "type": "std::string", - "id": 36, - "offset": 168, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3013935453 - }, - "m_playerTimeDraw": { - "type": "bool", - "id": 37, - "offset": 431, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 447636221 - }, - "m_pvpStatus": { - "type": "unsigned char", - "id": 38, - "offset": 432, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 773570858 - }, - "m_gender": { - "type": "short", - "id": 39, - "offset": 434, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 564443897 - }, - "m_level": { - "type": "int", - "id": 40, - "offset": 436, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 801285362 - }, - "m_nameBlob": { - "type": "std::string", - "id": 41, - "offset": 440, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3058206907 - }, - "m_sSchool": { - "type": "std::string", - "id": 42, - "offset": 472, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1846342998 - }, - "m_timeLeft": { - "type": "int", - "id": 43, - "offset": 508, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1315288020 - } - } - }, - "953634349": { - "name": "struct PointData", - "bases": [ - "PropertyClass" - ], - "hash": 953634349, - "properties": { - "m_position": { - "type": "class Vector3D", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3697900983 - }, - "m_pitch": { - "type": "float", - "id": 1, - "offset": 84, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 896371695 - }, - "m_yaw": { - "type": "float", - "id": 2, - "offset": 88, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 357256328 - }, - "m_roll": { - "type": "float", - "id": 3, - "offset": 92, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 310020272, - "enum_options": { - "__DEFAULT": 0 - } - } - } - }, - "2137559660": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 2137559660, - "properties": {} - }, - "1729608655": { - "name": "class HousingMusicPlayerBehaviorBase", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1729608655, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_playlist": { - "type": "unsigned int", - "id": 1, - "offset": 112, - "flags": 65567, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1986295487 - }, - "m_currentSelection": { - "type": "unsigned int", - "id": 2, - "offset": 128, - "flags": 65567, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 906571734 - }, - "m_playStyle": { - "type": "unsigned int", - "id": 3, - "offset": 132, - "flags": 65567, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 768737172 - } - } - }, - "952944170": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 952944170, - "properties": { - "m_nVersion": { - "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2302239105 - }, - "m_sSerializedCache": { - "type": "class SerializedBuffer", - "id": 1, - "offset": 96, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3187138089 - } - } - }, - "1349858095": { - "name": "class SharedPointer", - "bases": [ - "Window", - "PropertyClass" - ], - "hash": 1349858095, - "properties": { - "m_sName": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306437263 - }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621225959 - }, - "m_Style": { - "type": "unsigned int", - "id": 2, - "offset": 152, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "SCALE_CHILDREN": 2, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "FOCUS_LOCKED": 64, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152 - } - }, - "m_Flags": { - "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } - }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3105139380 - }, - "m_fTargetAlpha": { - "type": "float", - "id": 5, - "offset": 212, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1809129834 - }, - "m_fDisabledAlpha": { - "type": "float", - "id": 6, - "offset": 216, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1389987675 - }, - "m_fAlpha": { - "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 482130755 - }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3623628394 - }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2102211316 - }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1846695875 - }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3389835433 - }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2547159940 - }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2587533771 - }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3091503757 - } - } - }, - "2137546231": { - "name": "class TeamUpWindow*", - "bases": [ - "Window", - "PropertyClass" - ], - "hash": 2137546231, - "properties": { - "m_sName": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306437263 - }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621225959 - }, - "m_Style": { - "type": "unsigned int", - "id": 2, - "offset": 152, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "SCALE_CHILDREN": 2, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "FOCUS_LOCKED": 64, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152 - } - }, - "m_Flags": { - "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } - }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3105139380 - }, - "m_fTargetAlpha": { - "type": "float", - "id": 5, - "offset": 212, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1809129834 - }, - "m_fDisabledAlpha": { - "type": "float", - "id": 6, - "offset": 216, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1389987675 - }, - "m_fAlpha": { - "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 482130755 - }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3623628394 - }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2102211316 - }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1846695875 - }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3389835433 - }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2547159940 - }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2587533771 - }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3091503757 - } - } - }, - "1729595253": { - "name": "class PositionalSoundBehaviorTemplate*", - "bases": [ - "SoundBehaviorTemplate", - "AreaBehaviorTemplate", - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 1729595253, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - }, - "m_radius": { - "type": "float", - "id": 1, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 989410271 - }, - "m_category": { - "type": "enum AudioCategory", - "id": 2, - "offset": 124, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2951251982, - "enum_options": { - "AudioCategory_Irrelevent": 0, - "AudioCategory_Accoustic": 1, - "AudioCategory_Noise": 2, - "AudioCategory_Music": 3, - "AudioCategory_MusicAtSFXVolume": 4, - "AudioCategory_Dialog": 5, - "AudioCategory_UI": 6, - "AudioCategory_NoiseAtMusicVolume": 7 - } - }, - "m_exclusive": { - "type": "bool", - "id": 3, - "offset": 128, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 824383403 - }, - "m_active": { - "type": "bool", - "id": 4, - "offset": 129, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 239335471 - }, - "m_enableReqs": { - "type": "class SharedPointer", - "id": 5, - "offset": 136, - "flags": 263, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3158020443 - }, - "m_trackFilenameList": { - "type": "std::string", - "id": 6, - "offset": 152, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2531081709 - }, - "m_playList": { - "type": "class PlayListEntry*", - "id": 7, - "offset": 176, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 3907873161 - }, - "m_priority": { - "type": "int", - "id": 8, - "offset": 208, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1235205852 - }, - "m_volume": { - "type": "float", - "id": 9, - "offset": 200, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1162855023 - }, - "m_loopCount": { - "type": "int", - "id": 10, - "offset": 204, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 865634717 - }, - "m_progression": { - "type": "enum PlayList::Progression", - "id": 11, - "offset": 220, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3279400238, - "enum_options": { - "Sequence": 0, - "Random": 1, - "SequenceOnceOnly": 2, - "RandomNoRepeat": 3 - } - }, - "m_progressMin": { - "type": "float", - "id": 12, - "offset": 212, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1497550192 - }, - "m_progressMax": { - "type": "float", - "id": 13, - "offset": 216, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1497549938 - }, - "m_audioFilterSet": { - "type": "unsigned int", - "id": 14, - "offset": 224, - "flags": 33554439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 831339825 - }, - "m_animationNameFilter": { - "type": "std::string", - "id": 15, - "offset": 232, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2292854242 - }, - "m_functionallabel": { - "type": "std::string", - "id": 16, - "offset": 264, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3589331278 - }, - "m_innerRadius": { - "type": "float", - "id": 17, - "offset": 296, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 686816091 - }, - "m_inverted": { - "type": "bool", - "id": 18, - "offset": 300, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1034821044 - } - } - }, - "1346482734": { - "name": "class SharedPointer", - "bases": [ - "AvatarOptionBase", - "PropertyClass" - ], - "hash": 1346482734, - "properties": { - "m_conditionFlags": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2483653903 - }, - "m_materialName": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1878140043 - }, - "m_textures": { - "type": "std::string", - "id": 2, - "offset": 136, - "flags": 131079, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2391848735 - }, - "m_decals": { - "type": "std::string", - "id": 3, - "offset": 160, - "flags": 131079, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1853711975 - }, - "m_decals2": { - "type": "std::string", - "id": 4, - "offset": 184, - "flags": 131079, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2505858617 - }, - "m_tintColors": { - "type": "class Vector3D", - "id": 5, - "offset": 208, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 3059416083 - }, - "m_tintColorNames": { - "type": "std::string", - "id": 6, - "offset": 232, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1803799469 - }, - "m_useTintColor": { - "type": "bool", - "id": 7, - "offset": 256, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1646372318 - } - } - }, - "569722406": { - "name": "class SharedPointer", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 569722406, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - } - } - }, - "1344283767": { - "name": "class FishingBehaviorTemplate*", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 1344283767, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - } - } - }, - "1344070866": { - "name": "class PetJewelBehavior", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1344070866, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - } - } - }, - "569762910": { - "name": "class SharedPointer", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 569762910, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_nLadderContainerID": { - "type": "gid", - "id": 1, - "offset": 112, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 782107042 - } - } - }, - "955208943": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 955208943, - "properties": { - "m_sName": { - "type": "std::string", - "id": 0, - "offset": 88, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306437263 - }, - "m_baseOrientation": { - "type": "class Matrix3x3", - "id": 1, - "offset": 176, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1692424809 - }, - "m_basePosition": { - "type": "class Vector3D", - "id": 2, - "offset": 224, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1912112658 - }, - "m_fCurrentScale": { - "type": "float", - "id": 3, - "offset": 236, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 234778792 - }, - "m_surfaceType": { - "type": "std::string", - "id": 4, - "offset": 280, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2553995974 - }, - "m_pInitialParams": { - "type": "class SharedPointer", - "id": 5, - "offset": 240, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1000009870 - } - } - }, - "1343615589": { - "name": "class BattlegroundPlayerStats", - "bases": [ - "PropertyClass" - ], - "hash": 1343615589, - "properties": { - "m_status": { - "type": "enum BattlegroundPlayerStats::PlayerStatusEnum", - "id": 0, - "offset": 72, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1862714304, - "enum_options": { - "ACTIVE": 0, - "IN_COMBAT": 1, - "DEAD": 2, - "MISSING": 3, - "RED_TEAM": 0, - "BLUE_TEAM": 1 - } - }, - "m_team": { - "type": "enum BattlegroundPlayerStats::PlayerTeamEnum", - "id": 1, - "offset": 76, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1426706772 - }, - "m_packedName": { - "type": "std::string", - "id": 2, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1805208228 - }, - "m_playerID": { - "type": "gid", - "id": 3, - "offset": 112, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1774633426 - }, - "m_polymorphID": { - "type": "unsigned int", - "id": 4, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 702888164 - }, - "m_rating": { - "type": "int", - "id": 5, - "offset": 124, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 899783871 - }, - "m_playerKills": { - "type": "int", - "id": 6, - "offset": 128, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 742064870 - }, - "m_mobKills": { - "type": "int", - "id": 7, - "offset": 132, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 185014199 - }, - "m_autoCaps": { - "type": "int", - "id": 8, - "offset": 136, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1916916346 - }, - "m_combatCaps": { - "type": "int", - "id": 9, - "offset": 140, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 975573175 - }, - "m_deaths": { - "type": "int", - "id": 10, - "offset": 144, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 355961043 - } - } - }, - "2139592188": { - "name": "class HousingBlobCustomObject", - "bases": [ - "HousingBlobObject", - "PropertyClass" - ], - "hash": 2139592188, - "properties": { - "m_gameObjectTemplateID": { - "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1154586887, - "enum_options": { - "__DEFAULT": 0 - } - }, - "m_positionXY": { - "type": "unsigned int", - "id": 1, - "offset": 76, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1263476723, - "enum_options": { - "__DEFAULT": 0 - } - }, - "m_positionZ": { - "type": "float", - "id": 2, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 837995846, - "enum_options": { - "__DEFAULT": 0 - } - }, - "m_yaw": { - "type": "unsigned char", - "id": 3, - "offset": 84, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 904654625, - "enum_options": { - "__DEFAULT": 0 - } - }, - "m_extraData1": { - "type": "unsigned int", - "id": 4, - "offset": 88, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 693220060, - "enum_options": { - "__DEFAULT": 0 - } - }, - "m_customData": { - "type": "std::string", - "id": 5, - "offset": 96, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1638082768 - } - } - }, - "1733038175": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1733038175, - "properties": { - "m_sQuestTitle": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2282339874 - }, - "m_sFirstGoalLocation": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2049077170 - }, - "m_sSchoolFocus": { - "type": "std::string", - "id": 2, - "offset": 136, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2205763286 - } - } - }, - "954462744": { - "name": "class SharedPointer", - "bases": [ - "PolymorphCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 954462744, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - } - } - }, - "1343587371": { - "name": "class GraphicalPvPCurrencyBonus", - "bases": [ - "GraphicalSpell", - "Spell", - "PropertyClass" - ], - "hash": 1343587371, - "properties": { - "m_templateID": { - "type": "unsigned int", - "id": 0, - "offset": 128, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1286746870 - }, - "m_enchantment": { - "type": "unsigned int", - "id": 1, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2217886818 - }, - "m_pipCost": { - "type": "class SharedPointer", - "id": 2, - "offset": 176, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3605704820 - }, - "m_regularAdjust": { - "type": "int", - "id": 3, - "offset": 192, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1420453335 - }, - "m_magicSchoolID": { - "type": "unsigned int", - "id": 4, - "offset": 136, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 893146499 - }, - "m_accuracy": { - "type": "unsigned char", - "id": 5, - "offset": 132, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2273914939 - }, - "m_treasureCard": { - "type": "bool", - "id": 6, - "offset": 197, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1764879128 - }, - "m_battleCard": { - "type": "bool", - "id": 7, - "offset": 198, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1332843753 - }, - "m_itemCard": { - "type": "bool", - "id": 8, - "offset": 199, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1683654300 - }, - "m_sideBoard": { - "type": "bool", - "id": 9, - "offset": 200, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1897838368 - }, - "m_spellID": { - "type": "unsigned int", - "id": 10, - "offset": 204, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1697483258 - }, - "m_leavesPlayWhenCastOverride": { - "type": "bool", - "id": 11, - "offset": 216, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 874407398 - }, - "m_cloaked": { - "type": "bool", - "id": 12, - "offset": 196, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 7349510 - }, - "m_enchantmentSpellIsItemCard": { - "type": "bool", - "id": 13, - "offset": 76, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 531590701 - }, - "m_premutationSpellID": { - "type": "unsigned int", - "id": 14, - "offset": 112, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1530256370 - }, - "m_enchantedThisCombat": { - "type": "bool", - "id": 15, - "offset": 77, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1895738923 - }, - "m_paramOverrides": { - "type": "class SharedPointer", - "id": 16, - "offset": 224, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2061635599 - }, - "m_subEffectMeta": { - "type": "class SharedPointer", - "id": 17, - "offset": 240, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1944101106 - }, - "m_delayEnchantment": { - "type": "bool", - "id": 18, - "offset": 257, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 191336919 - }, - "m_PvE": { - "type": "bool", - "id": 19, - "offset": 264, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 269492350 - }, - "m_delayEnchantmentOrder": { - "type": "enum SpellEffect::kDelayOrder", - "id": 20, - "offset": 72, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2526055263, - "enum_options": { - "SpellEffect::kAnyOrder": 0, - "SpellEffect::kFirst": 1, - "SpellEffect::kSecond": 2 - } - }, - "m_roundAddedTC": { - "type": "int", - "id": 21, - "offset": 260, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 112365451 - }, - "m_secondarySchoolID": { - "type": "unsigned int", - "id": 22, - "offset": 304, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2081206026 - } - } - }, - "2138834812": { - "name": "enum CreateActorCinematicAction::kCreateOrientation", - "bases": [], - "hash": 2138834812, - "properties": {} - }, - "1732213806": { - "name": "enum SpellEffect::kDelayOrder", - "bases": [], - "hash": 1732213806, - "properties": {} - }, - "1731493831": { - "name": "class HousingMusicPlayerBehavior*", - "bases": [ - "HousingMusicPlayerBehaviorBase", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1731493831, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_playlist": { - "type": "unsigned int", - "id": 1, - "offset": 112, - "flags": 65567, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1986295487 - }, - "m_currentSelection": { - "type": "unsigned int", - "id": 2, - "offset": 128, - "flags": 65567, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 906571734 - }, - "m_playStyle": { - "type": "unsigned int", - "id": 3, - "offset": 132, - "flags": 65567, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 768737172 - }, - "m_musicData": { - "type": "std::string", - "id": 4, - "offset": 136, - "flags": 551, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2963606294 - } - } - }, - "570152106": { - "name": "class FaceTargetTeamActorCinematicAction*", - "bases": [ - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 570152106, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - }, - "m_bCaster": { - "type": "bool", - "id": 2, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1390351511 - } - } - }, - "1731335353": { - "name": "enum WizardStatTable::STAT_TYPE", - "bases": [], - "hash": 1731335353, - "properties": {} - }, - "956054874": { - "name": "class LoyaltyInfoUpdateData*", - "bases": [ - "PropertyClass" - ], - "hash": 956054874, - "properties": { - "m_loyaltyNumTokens": { - "type": "int", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1274122412 - }, - "m_loyaltyTier": { - "type": "int", - "id": 1, - "offset": 76, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 186471516 - }, - "m_loyaltyLastTier": { - "type": "int", - "id": 2, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 848314000 - }, - "m_loyaltyNumTokensCanClaim": { - "type": "int", - "id": 3, - "offset": 84, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1792573988 - }, - "m_loyaltyPurchaseHistoryLimit": { - "type": "unsigned int", - "id": 4, - "offset": 88, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2121059751 - }, - "m_loyaltyPurchaseHistoryData": { - "type": "class SharedPointer", - "id": 5, - "offset": 96, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1737702413 - }, - "m_loyaltyPurchaseLimitCountersData": { - "type": "class SharedPointer", - "id": 6, - "offset": 112, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2330097972 - } - } - }, - "2139951695": { - "name": "class SharedPointer", - "bases": [ - "WizClientLeashedObject", - "WizClientObject", - "ClientObject", - "CoreObject", - "PropertyClass" - ], - "hash": 2139951695, - "properties": { - "m_inactiveBehaviors": { - "type": "class SharedPointer", - "id": 0, - "offset": 224, - "flags": 31, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1850812559 - }, - "m_globalID.m_full": { - "type": "unsigned __int64", - "id": 1, - "offset": 72, - "flags": 16777247, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2312465444 - }, - "m_permID": { - "type": "unsigned __int64", - "id": 2, - "offset": 80, - "flags": 16777247, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1298909658 - }, - "m_location": { - "type": "class Vector3D", - "id": 3, - "offset": 168, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2239683611 - }, - "m_orientation": { - "type": "class Vector3D", - "id": 4, - "offset": 180, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2344058766 - }, - "m_fScale": { - "type": "float", - "id": 5, - "offset": 196, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 503137701 - }, - "m_templateID.m_full": { - "type": "unsigned __int64", - "id": 6, - "offset": 96, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 633907631 - }, - "m_debugName": { - "type": "std::string", - "id": 7, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3553984419 - }, - "m_displayKey": { - "type": "std::string", - "id": 8, - "offset": 136, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3023276954 - }, - "m_zoneTagID": { - "type": "unsigned int", - "id": 9, - "offset": 344, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 965291410 - }, - "m_speedMultiplier": { - "type": "short", - "id": 10, - "offset": 192, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 123130076 - }, - "m_nMobileID": { - "type": "unsigned short", - "id": 11, - "offset": 194, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1054318939 - }, - "m_characterId": { - "type": "gid", - "id": 12, - "offset": 440, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 210498418 - }, - "m_gameStats": { - "type": "class WizGameStats*", - "id": 13, - "offset": 544, - "flags": 27, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3194480406 - }, - "m_leashed": { - "type": "bool", - "id": 14, - "offset": 576, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 603235945 - } - } - }, - "1731281342": { - "name": "class BattlegroundSigilTemplate", - "bases": [ - "CombatSigilTemplate", - "SigilTemplate", - "CoreTemplate", - "PropertyClass" - ], - "hash": 1731281342, - "properties": { - "m_behaviors": { - "type": "class BehaviorTemplate*", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1197808594 - }, - "m_sigilName": { - "type": "std::string", - "id": 1, - "offset": 96, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3177657588 - }, - "m_sigilType": { - "type": "std::string", - "id": 2, - "offset": 136, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3177899445 - }, - "m_entryResults": { - "type": "class ResultList*", - "id": 3, - "offset": 184, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3262956108 - }, - "m_requirements": { - "type": "class RequirementList*", - "id": 4, - "offset": 176, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2840985510 - }, - "m_cancelResults": { - "type": "class ResultList*", - "id": 5, - "offset": 192, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3799257120 - }, - "m_completeResults": { - "type": "class ResultList*", - "id": 6, - "offset": 200, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1964258099 - }, - "m_useState": { - "type": "bool", - "id": 7, - "offset": 216, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 683320865 - }, - "m_stateOverride": { - "type": "std::string", - "id": 8, - "offset": 224, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1949715548 - }, - "m_subCircles": { - "type": "class SigilSubCircle*", - "id": 9, - "offset": 256, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2227135493 - }, - "m_engageRadius": { - "type": "float", - "id": 10, - "offset": 304, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1429683718 - }, - "m_battlefieldEffects": { - "type": "class SharedPointer", - "id": 11, - "offset": 312, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1245973515 - }, - "m_playerVictoryCinematic": { - "type": "std::string", - "id": 12, - "offset": 336, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2684536069 - }, - "m_combatMusic": { - "type": "std::string", - "id": 13, - "offset": 368, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3636593682 - }, - "m_prePlanningCinematicOverride": { - "type": "std::string", - "id": 14, - "offset": 400, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2585096390 - }, - "m_planningCinematicOverride": { - "type": "std::string", - "id": 15, - "offset": 432, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3592819999 - }, - "m_shadowThresholdType": { - "type": "enum kShadow_Threshold_Type", - "id": 16, - "offset": 464, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2847763136, - "enum_options": { - "SHADOW_THRESHOLD_MIN": 0, - "SHADOW_THRESHOLD_AVG": 1, - "SHADOW_THRESHOLD_MAX": 2 - } - }, - "m_shadowThresholdFactor": { - "type": "float", - "id": 17, - "offset": 468, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2104355177 - }, - "m_shadowPipRatingFactor": { - "type": "float", - "id": 18, - "offset": 472, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1061434314 - }, - "m_scalarDamagePvP": { - "type": "float", - "id": 19, - "offset": 476, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2195445026 - }, - "m_scalarResistPvP": { - "type": "float", - "id": 20, - "offset": 480, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1947822077 - }, - "m_scalarPiercePvP": { - "type": "float", - "id": 21, - "offset": 484, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 441266907 - }, - "m_scalarDamagePvE": { - "type": "float", - "id": 22, - "offset": 488, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2195445015 - }, - "m_scalarResistPvE": { - "type": "float", - "id": 23, - "offset": 492, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1947822066 - }, - "m_scalarPiercePvE": { - "type": "float", - "id": 24, - "offset": 496, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 441266896 - }, - "m_damageLimitPvP": { - "type": "float", - "id": 25, - "offset": 500, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1990135243 - }, - "m_dK0PvP": { - "type": "float", - "id": 26, - "offset": 504, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 413528556 - }, - "m_dN0PvP": { - "type": "float", - "id": 27, - "offset": 508, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 417086319 - }, - "m_resistLimitPvP": { - "type": "float", - "id": 28, - "offset": 512, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1174512006 - }, - "m_rK0PvP": { - "type": "float", - "id": 29, - "offset": 516, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 961424058 - }, - "m_rN0PvP": { - "type": "float", - "id": 30, - "offset": 520, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 964981821 - }, - "m_damageLimitPvE": { - "type": "float", - "id": 31, - "offset": 524, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1990135232 - }, - "m_dK0PvE": { - "type": "float", - "id": 32, - "offset": 528, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 413528545 - }, - "m_dN0PvE": { - "type": "float", - "id": 33, - "offset": 532, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 417086308 - }, - "m_resistLimitPvE": { - "type": "float", - "id": 34, - "offset": 536, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1174511995 - }, - "m_rK0PvE": { - "type": "float", - "id": 35, - "offset": 540, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 961424047 - }, - "m_rN0PvE": { - "type": "float", - "id": 36, - "offset": 544, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 964981810 - }, - "m_tickRateMS": { - "type": "unsigned int", - "id": 37, - "offset": 552, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 646469284 - }, - "m_playerAggroRange": { - "type": "float", - "id": 38, - "offset": 556, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1776075073 - }, - "m_deathEffect": { - "type": "std::string", - "id": 39, - "offset": 560, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2339494958 - }, - "m_noAggroEffect": { - "type": "std::string", - "id": 40, - "offset": 592, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1645655765 - }, - "m_redTeamStart": { - "type": "std::string", - "id": 41, - "offset": 624, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2958941675 - }, - "m_blueTeamStart": { - "type": "std::string", - "id": 42, - "offset": 656, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2806152280 - }, - "m_redPlaceholdObjectID": { - "type": "unsigned int", - "id": 43, - "offset": 688, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1608575032 - }, - "m_bluePlaceholdObjectID": { - "type": "unsigned int", - "id": 44, - "offset": 692, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1635754917 - } - } - }, - "956053594": { - "name": "class LoyaltyInfoUpdateData", - "bases": [ - "PropertyClass" - ], - "hash": 956053594, - "properties": { - "m_loyaltyNumTokens": { - "type": "int", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1274122412 - }, - "m_loyaltyTier": { - "type": "int", - "id": 1, - "offset": 76, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 186471516 - }, - "m_loyaltyLastTier": { - "type": "int", - "id": 2, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 848314000 - }, - "m_loyaltyNumTokensCanClaim": { - "type": "int", - "id": 3, - "offset": 84, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1792573988 - }, - "m_loyaltyPurchaseHistoryLimit": { - "type": "unsigned int", - "id": 4, - "offset": 88, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2121059751 - }, - "m_loyaltyPurchaseHistoryData": { - "type": "class SharedPointer", - "id": 5, - "offset": 96, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1737702413 - }, - "m_loyaltyPurchaseLimitCountersData": { - "type": "class SharedPointer", - "id": 6, - "offset": 112, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2330097972 - } - } - }, - "1344169170": { - "name": "class PetJewelBehavior*", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1344169170, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - } - } - }, - "574762755": { - "name": "class PolymorphCinematicAction", - "bases": [ - "CinematicAction", - "PropertyClass" - ], - "hash": 574762755, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - } - } - }, - "572593628": { - "name": "class BattlegroundPOIData", - "bases": [ - "PropertyClass" - ], - "hash": 572593628, - "properties": { - "m_poiType": { - "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2082807927 - }, - "m_icon": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1717182340 - }, - "m_objectID": { - "type": "gid", - "id": 2, - "offset": 112, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 257032380 - }, - "m_position": { - "type": "class Vector3D", - "id": 3, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3697900983 - }, - "m_yaw": { - "type": "float", - "id": 4, - "offset": 132, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 357256328 - } - } - }, - "2142253013": { - "name": "class std::list >", - "bases": [], - "hash": 2142253013, - "properties": {} - }, - "572550549": { - "name": "class RemoveInterceptCinematicAction*", - "bases": [ - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 572550549, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - } - } - }, - "1345594487": { - "name": "class FishingBehaviorTemplate", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 1345594487, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - } - } - }, - "2140381725": { - "name": "class CastleBlockDoorBehaviorTemplate", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 2140381725, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - } - } - }, - "1731493837": { - "name": "class HousingMusicPlayerBehavior", - "bases": [ - "HousingMusicPlayerBehaviorBase", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1731493837, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_playlist": { - "type": "unsigned int", - "id": 1, - "offset": 112, - "flags": 65567, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1986295487 - }, - "m_currentSelection": { - "type": "unsigned int", - "id": 2, - "offset": 128, - "flags": 65567, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 906571734 - }, - "m_playStyle": { - "type": "unsigned int", - "id": 3, - "offset": 132, - "flags": 65567, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 768737172 - }, - "m_musicData": { - "type": "std::string", - "id": 4, - "offset": 136, - "flags": 551, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2963606294 - } - } - }, - "571302417": { - "name": "class CraftingSlot*", - "bases": [ - "CoreObject", - "PropertyClass" - ], - "hash": 571302417, - "properties": { - "m_inactiveBehaviors": { - "type": "class SharedPointer", - "id": 0, - "offset": 224, - "flags": 31, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1850812559 - }, - "m_globalID.m_full": { - "type": "unsigned __int64", - "id": 1, - "offset": 72, - "flags": 16777247, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2312465444 - }, - "m_permID": { - "type": "unsigned __int64", - "id": 2, - "offset": 80, - "flags": 16777247, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1298909658 - }, - "m_location": { - "type": "class Vector3D", - "id": 3, - "offset": 168, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2239683611 - }, - "m_orientation": { - "type": "class Vector3D", - "id": 4, - "offset": 180, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2344058766 - }, - "m_fScale": { - "type": "float", - "id": 5, - "offset": 196, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 503137701 - }, - "m_templateID.m_full": { - "type": "unsigned __int64", - "id": 6, - "offset": 96, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 633907631 - }, - "m_debugName": { - "type": "std::string", - "id": 7, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3553984419 - }, - "m_displayKey": { - "type": "std::string", - "id": 8, - "offset": 136, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3023276954 - }, - "m_zoneTagID": { - "type": "unsigned int", - "id": 9, - "offset": 344, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 965291410 - }, - "m_speedMultiplier": { - "type": "short", - "id": 10, - "offset": 192, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 123130076 - }, - "m_nMobileID": { - "type": "unsigned short", - "id": 11, - "offset": 194, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1054318939 - }, - "m_recipeName": { - "type": "std::string", - "id": 12, - "offset": 392, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3311832788 - }, - "m_timeFinished": { - "type": "int", - "id": 13, - "offset": 388, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2127619571 - } - } - }, - "965525414": { - "name": "class SharedPointer", - "bases": [ - "ActorRenameCinematicAction", - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 965525414, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - }, - "m_newNamePattern": { - "type": "std::string", - "id": 2, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1519245892 - }, - "m_bActOnlyOnFirstActor": { - "type": "bool", - "id": 3, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2050856077 - } - } - }, - "1344617197": { - "name": "class SharedPointer", - "bases": [ - "ReqBaseMagicLevel", - "ReqNumeric", - "Requirement", - "PropertyClass" - ], - "hash": 1344617197, - "properties": { - "m_applyNOT": { - "type": "bool", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1746328074, - "enum_options": { - "__DEFAULT": 0 - } - }, - "m_operator": { - "type": "enum Requirement::Operator", - "id": 1, - "offset": 76, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2672792317, - "enum_options": { - "ROP_AND": 0, - "ROP_OR": 1, - "__DEFAULT": "ROP_AND" - } - }, - "m_numericValue": { - "type": "float", - "id": 2, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 521915239 - }, - "m_operatorType": { - "type": "enum ReqNumeric::OPERATOR_TYPE", - "id": 3, - "offset": 84, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2228122961, - "enum_options": { - "OPERATOR_UNKNOWN": 4294967295, - "OPERATOR_EQUALS": 0, - "OPERATOR_GREATER_THAN": 1, - "OPERATOR_LESS_THAN": 2, - "OPERATOR_GREATER_THAN_EQ": 3, - "OPERATOR_LESS_THAN_EQ": 4 - } - }, - "m_magicSchool": { - "type": "std::string", - "id": 4, - "offset": 88, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1597012900 - } - } - }, - "2140375945": { - "name": "class MinigameSigilOptionMonthlyGauntletFields*", - "bases": [ - "PropertyClass" - ], - "hash": 2140375945, - "properties": { - "m_classProjectID": { - "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 996536487 - }, - "m_sigilIcon": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3177480156 - } - } - }, - "960367082": { - "name": "class ResultSourceType*", - "bases": [ - "Result", - "PropertyClass" - ], - "hash": 960367082, - "properties": { - "m_sourceType": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2305508654 - }, - "m_zoneLevelMax": { - "type": "unsigned int", - "id": 1, - "offset": 76, - "flags": 263, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1028933895 - }, - "m_zoneLevelMin": { - "type": "unsigned int", - "id": 2, - "offset": 72, - "flags": 263, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1028934149 - } - } - }, - "1344420981": { - "name": "class std::list >", - "bases": [], - "hash": 1344420981, - "properties": {} - }, - "958846690": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 958846690, - "properties": { - "m_ignoreName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2203859488 - }, - "m_characterID": { - "type": "gid", - "id": 1, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 210498386 - }, - "m_gameObjectID": { - "type": "gid", - "id": 2, - "offset": 112, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 23229750 - } - } - }, - "2140378620": { - "name": "class HousingBlobCustomObject*", - "bases": [ - "HousingBlobObject", - "PropertyClass" - ], - "hash": 2140378620, - "properties": { - "m_gameObjectTemplateID": { - "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1154586887, - "enum_options": { - "__DEFAULT": 0 - } - }, - "m_positionXY": { - "type": "unsigned int", - "id": 1, - "offset": 76, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1263476723, - "enum_options": { - "__DEFAULT": 0 - } - }, - "m_positionZ": { - "type": "float", - "id": 2, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 837995846, - "enum_options": { - "__DEFAULT": 0 - } - }, - "m_yaw": { - "type": "unsigned char", - "id": 3, - "offset": 84, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 904654625, - "enum_options": { - "__DEFAULT": 0 - } - }, - "m_extraData1": { - "type": "unsigned int", - "id": 4, - "offset": 88, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 693220060, - "enum_options": { - "__DEFAULT": 0 - } - }, - "m_customData": { - "type": "std::string", - "id": 5, - "offset": 96, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1638082768 - } - } - }, - "1732744233": { - "name": "class SharedPointer", - "bases": [ - "GameEffectBase", - "PropertyClass" - ], - "hash": 1732744233, - "properties": { - "m_currentTickCount": { - "type": "double", - "id": 0, - "offset": 80, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2533274692 - }, - "m_effectNameID": { - "type": "unsigned int", - "id": 1, - "offset": 96, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1204067144 - }, - "m_bIsOnPet": { - "type": "bool", - "id": 2, - "offset": 73, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 522593303 - }, - "m_originatorID": { - "type": "gid", - "id": 3, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1131810019 - }, - "m_itemSlotID": { - "type": "unsigned int", - "id": 4, - "offset": 112, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1895747595 - }, - "m_internalID": { - "type": "int", - "id": 5, - "offset": 92, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1643137924 - }, - "m_endTime": { - "type": "unsigned int", - "id": 6, - "offset": 88, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 716479635 - }, - "m_happinessCost": { - "type": "int", - "id": 7, - "offset": 128, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1107125310 - }, - "m_cooldown": { - "type": "int", - "id": 8, - "offset": 132, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1897549823 - }, - "m_usesPerCombat": { - "type": "int", - "id": 9, - "offset": 136, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1445312791 - }, - "m_combatTalent": { - "type": "bool", - "id": 10, - "offset": 140, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2113651857 - }, - "m_triggerName": { - "type": "std::string", - "id": 11, - "offset": 144, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3100183568 - }, - "m_extra1": { - "type": "std::string", - "id": 12, - "offset": 176, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1916008880 - }, - "m_extra2": { - "type": "std::string", - "id": 13, - "offset": 208, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1916008881 - }, - "m_lootTableName": { - "type": "std::string", - "id": 14, - "offset": 240, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2333333378 - }, - "m_powerDisplayName": { - "type": "std::string", - "id": 15, - "offset": 272, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2338393887 - }, - "m_requirementList": { - "type": "class SharedPointer", - "id": 16, - "offset": 304, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3783909798 - }, - "m_requirementFailedString": { - "type": "std::string", - "id": 17, - "offset": 320, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2051573416 - }, - "m_noPVP": { - "type": "bool", - "id": 18, - "offset": 356, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 806455846 - }, - "m_rampUp": { - "type": "int", - "id": 19, - "offset": 360, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 899539119 - }, - "m_description": { - "type": "std::string", - "id": 20, - "offset": 368, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1649374815 - }, - "m_myTurn": { - "type": "bool", - "id": 21, - "offset": 400, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 733913410 - } - } - }, - "957500440": { - "name": "class ClientBurnInterceptCinematicAction*", - "bases": [ - "BurnInterceptCinematicAction", - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 957500440, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - } - } - }, - "573542747": { - "name": "class SharedPointer", - "bases": [ - "WinAnimScale", - "WindowAnimation", - "PropertyClass" - ], - "hash": 573542747, - "properties": { - "m_bUseDeepCopy": { - "type": "bool", - "id": 0, - "offset": 72, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 433380635 - }, - "m_scale": { - "type": "float", - "id": 1, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 899693439 - }, - "m_fTimeTotal": { - "type": "float", - "id": 2, - "offset": 96, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 661225456 - }, - "m_fTimeRemaining": { - "type": "float", - "id": 3, - "offset": 100, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1591443014 - } - } - }, - "957498904": { - "name": "class ClientBurnInterceptCinematicAction", - "bases": [ - "BurnInterceptCinematicAction", - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 957498904, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - } - } - }, - "1345110589": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1345110589, - "properties": { - "m_position": { - "type": "class Vector3D", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3697900983 - }, - "m_templateID": { - "type": "unsigned int", - "id": 1, - "offset": 84, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1286746870 - }, - "m_nextStageTimeSeconds": { - "type": "unsigned int", - "id": 2, - "offset": 92, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 752026046 - }, - "m_flags": { - "type": "unsigned int", - "id": 3, - "offset": 88, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1005801050 - }, - "m_needsWaterTimeSeconds": { - "type": "unsigned int", - "id": 4, - "offset": 100, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1144013149 - }, - "m_needsSunTimeSeconds": { - "type": "unsigned int", - "id": 5, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1376682128 - }, - "m_needsPollinationTimeSeconds": { - "type": "unsigned int", - "id": 6, - "offset": 108, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1487147427 - }, - "m_needsMagicTimeSeconds": { - "type": "unsigned int", - "id": 7, - "offset": 112, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 655591099 - }, - "m_needsMusicTimeSeconds": { - "type": "unsigned int", - "id": 8, - "offset": 116, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 799722843 - }, - "m_harvestTimeSeconds": { - "type": "unsigned int", - "id": 9, - "offset": 96, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 675583752 - }, - "m_pestCheckTimeSeconds": { - "type": "unsigned int", - "id": 10, - "offset": 120, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2302681477 - }, - "m_pestTemplateID": { - "type": "unsigned int", - "id": 11, - "offset": 124, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1301457330 - }, - "m_pestProtectionTemplateID": { - "type": "unsigned int", - "id": 12, - "offset": 128, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1429720889 - }, - "m_pestProtectionTimeSeconds": { - "type": "unsigned int", - "id": 13, - "offset": 132, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1440479886 - }, - "m_stageStartTimeSeconds": { - "type": "unsigned int", - "id": 14, - "offset": 136, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1075432461 - }, - "m_likesDislikesModifier": { - "type": "float", - "id": 15, - "offset": 140, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 840714742 - }, - "m_plantIdentifierForETL": { - "type": "gid", - "id": 16, - "offset": 144, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 450491014 - }, - "m_harvestCount": { - "type": "unsigned int", - "id": 17, - "offset": 152, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 245460819 - } - } - }, - "572602059": { - "name": "class ClientHidePolymorphFloatyTextCinematicAction*", - "bases": [ - "HidePolymorphFloatyTextCinematicAction", - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 572602059, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - } - } - }, - "956885104": { - "name": "class HousingSignOperator", - "bases": [ - "HelpChatOperator", - "PropertyClass" - ], - "hash": 956885104, - "properties": { - "m_rootElement": { - "type": "class HelpChatElement", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2242085258 - } - } - }, - "1344786591": { - "name": "class SharedPointer", - "bases": [ - "ClientElixirBehavior", - "ClientTimedItemBehavior", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1344786591, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_expireTime": { - "type": "unsigned int", - "id": 1, - "offset": 112, - "flags": 59, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1836304873 - }, - "m_statsApplied": { - "type": "bool", - "id": 2, - "offset": 328, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 828970945 - } - } - }, - "2141477314": { - "name": "class ExtraHousingZoneBehaviorTemplate*", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 2141477314, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - }, - "m_lotWorldZone": { - "type": "std::string", - "id": 1, - "offset": 120, - "flags": 268435463, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3026711022, - "enum_options": { - "__BASECLASS": "ZoneData" - } - } - } - }, - "1734454951": { - "name": "class FishingLevelControl", - "bases": [ - "Window", - "PropertyClass" - ], - "hash": 1734454951, - "properties": { - "m_sName": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306437263 - }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 65667, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621225959 - }, - "m_Style": { - "type": "unsigned int", - "id": 2, - "offset": 152, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "SCALE_CHILDREN": 2, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "FOCUS_LOCKED": 64, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152 - } - }, - "m_Flags": { - "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } - }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3105139380 - }, - "m_fTargetAlpha": { - "type": "float", - "id": 5, - "offset": 212, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1809129834 - }, - "m_fDisabledAlpha": { - "type": "float", - "id": 6, - "offset": 216, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1389987675 - }, - "m_fAlpha": { - "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 482130755 - }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3623628394 - }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2102211316 - }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1846695875 - }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3389835433 - }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2547159940 - }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2587533771 - }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3091503757 - } - } - }, - "2140553562": { - "name": "class ClientBurnHangingEffectCinematicAction", - "bases": [ - "BurnHangingEffectCinematicAction", - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 2140553562, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - }, - "m_cloaked": { - "type": "bool", - "id": 2, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 7349510 - }, - "m_detonate": { - "type": "bool", - "id": 3, - "offset": 153, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1738601959 - }, - "m_burnSound": { - "type": "std::string", - "id": 4, - "offset": 120, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1827806971 - } - } - }, - "1733238545": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1733238545, - "properties": { - "m_killer": { - "type": "gid", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 635022555 - }, - "m_despawnEffect": { - "type": "unsigned int", - "id": 1, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1477583404 - } - } - }, - "1733211933": { - "name": "class SharedPointer", - "bases": [ - "WizItemLocations", - "PropertyClass" - ], - "hash": 1733211933, - "properties": { - "m_itemType": { - "type": "enum WizItemLocations::eItemType", - "id": 0, - "offset": 72, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3482173907, - "enum_options": { - "shop": 0, - "quest": 1, - "boss": 2, - "gardening": 3, - "goldChest": 4 - } - }, - "m_quests": { - "type": "class SharedPointer", - "id": 1, - "offset": 80, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2616788661 - } - } - }, - "595661052": { - "name": "class SharedPointer", - "bases": [ - "ServiceOptionBase", - "PropertyClass" - ], - "hash": 595661052, - "properties": { - "m_serviceName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2206028813 - }, - "m_iconKey": { - "type": "std::string", - "id": 1, - "offset": 168, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2457138637 - }, - "m_displayKey": { - "type": "std::string", - "id": 2, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3023276954 - }, - "m_serviceIndex": { - "type": "unsigned int", - "id": 3, - "offset": 204, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2103126710 - }, - "m_forceInteract": { - "type": "bool", - "id": 4, - "offset": 200, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1705789564 - } - } - }, - "978669458": { - "name": "class WizStatisticEffect", - "bases": [ - "StatisticEffect", - "GameEffectBase", - "PropertyClass" - ], - "hash": 978669458, - "properties": { - "m_currentTickCount": { - "type": "double", - "id": 0, - "offset": 80, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2533274692 - }, - "m_effectNameID": { - "type": "unsigned int", - "id": 1, - "offset": 96, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1204067144 - }, - "m_bIsOnPet": { - "type": "bool", - "id": 2, - "offset": 73, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 522593303 - }, - "m_originatorID": { - "type": "gid", - "id": 3, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1131810019 - }, - "m_itemSlotID": { - "type": "unsigned int", - "id": 4, - "offset": 112, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1895747595 - }, - "m_internalID": { - "type": "int", - "id": 5, - "offset": 92, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1643137924 - }, - "m_endTime": { - "type": "unsigned int", - "id": 6, - "offset": 88, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 716479635 - }, - "m_lookupIndex": { - "type": "int", - "id": 7, - "offset": 128, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1626623948 - }, - "m_damageBonusPercent": { - "type": "float", - "id": 8, - "offset": 136, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 623230606 - }, - "m_damageBonusFlat": { - "type": "float", - "id": 9, - "offset": 180, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2212039108 - }, - "m_accuracyBonusPercent": { - "type": "float", - "id": 10, - "offset": 140, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1972336538 - }, - "m_armorPiercingBonusPercent": { - "type": "float", - "id": 11, - "offset": 144, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1569912641 - }, - "m_damageReducePercent": { - "type": "float", - "id": 12, - "offset": 148, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 541736927 - }, - "m_damageReduceFlat": { - "type": "float", - "id": 13, - "offset": 152, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 684172469 - }, - "m_accuracyReducePercent": { - "type": "float", - "id": 14, - "offset": 156, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2112559723 - }, - "m_healBonusPercent": { - "type": "float", - "id": 15, - "offset": 160, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 562313577 - }, - "m_healIncBonusPercent": { - "type": "float", - "id": 16, - "offset": 164, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2182535587 - }, - "m_hitPointBonus": { - "type": "float", - "id": 17, - "offset": 204, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 880644461 - }, - "m_spellChargeBonus": { - "type": "int", - "id": 18, - "offset": 212, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2019610507 - }, - "m_powerPipBonusPercent": { - "type": "float", - "id": 19, - "offset": 168, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1671446341 - }, - "m_petActChance": { - "type": "int", - "id": 20, - "offset": 200, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 237418461 - }, - "m_manaBonus": { - "type": "float", - "id": 21, - "offset": 208, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1372708603 - }, - "m_expPercent": { - "type": "float", - "id": 22, - "offset": 184, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1147850677 - }, - "m_goldPercent": { - "type": "float", - "id": 23, - "offset": 188, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1095720878 - }, - "m_energyBonus": { - "type": "float", - "id": 24, - "offset": 216, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2223158984 - }, - "m_criticalHitRating": { - "type": "float", - "id": 25, - "offset": 220, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1978690540 - }, - "m_blockRating": { - "type": "float", - "id": 26, - "offset": 224, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2088486759 - }, - "m_accuracyRating": { - "type": "float", - "id": 27, - "offset": 228, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 165525575 - }, - "m_powerPipRating": { - "type": "float", - "id": 28, - "offset": 232, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1355340722 - }, - "m_damageResistanceRating": { - "type": "float", - "id": 29, - "offset": 240, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1961377740 - }, - "m_archmastery": { - "type": "float", - "id": 30, - "offset": 244, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1963579610 - }, - "m_archmasteryBonusPercent": { - "type": "float", - "id": 31, - "offset": 288, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1908627154 - }, - "m_balanceMastery": { - "type": "int", - "id": 32, - "offset": 248, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 149062181 - }, - "m_deathMastery": { - "type": "int", - "id": 33, - "offset": 252, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1421218661 - }, - "m_fireMastery": { - "type": "int", - "id": 34, - "offset": 256, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1431794949 - }, - "m_iceMastery": { - "type": "int", - "id": 35, - "offset": 260, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 704864240 - }, - "m_lifeMastery": { - "type": "int", - "id": 36, - "offset": 264, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2142136447 - }, - "m_mythMastery": { - "type": "int", - "id": 37, - "offset": 268, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1766317185 - }, - "m_stormMastery": { - "type": "int", - "id": 38, - "offset": 272, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1883988244 - }, - "m_stunResistancePercent": { - "type": "float", - "id": 39, - "offset": 276, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1868382627 - }, - "m_fishingLuckBonusPercent": { - "type": "float", - "id": 40, - "offset": 192, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1363349254 - }, - "m_shadowPipBonusPercent": { - "type": "float", - "id": 41, - "offset": 172, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1426533310 - }, - "m_wispBonusPercent": { - "type": "float", - "id": 42, - "offset": 196, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1304386546 - }, - "m_pipConversionRating": { - "type": "float", - "id": 43, - "offset": 280, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 246855691 - }, - "m_shadowPipRating": { - "type": "float", - "id": 44, - "offset": 236, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 507126123 - } - } - }, - "573920673": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 573920673, - "properties": { - "m_loopNumber": { - "type": "int", - "id": 0, - "offset": 72, - "flags": 65543, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1083131517 - }, - "m_composerPackedName": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 65536, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1558621676 - }, - "m_composerGID": { - "type": "gid", - "id": 2, - "offset": 112, - "flags": 65536, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 538993812 - }, - "m_metronomeTempo": { - "type": "float", - "id": 3, - "offset": 120, - "flags": 65543, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 547183282 - }, - "m_firstNodeDelay": { - "type": "float", - "id": 4, - "offset": 124, - "flags": 65543, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 830925908 - }, - "m_musicNoteList": { - "type": "class SharedPointer", - "id": 5, - "offset": 128, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 3278314746 - }, - "m_compressedmusicNoteData": { - "type": "std::string", - "id": 6, - "offset": 144, - "flags": 65536, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2482881473 - } - } - }, - "958775582": { - "name": "class ClientRecipe", - "bases": [ - "Recipe", - "CoreObject", - "PropertyClass" - ], - "hash": 958775582, - "properties": { - "m_inactiveBehaviors": { - "type": "class SharedPointer", - "id": 0, - "offset": 224, - "flags": 31, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1850812559 - }, - "m_globalID.m_full": { - "type": "unsigned __int64", - "id": 1, - "offset": 72, - "flags": 16777247, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2312465444 - }, - "m_permID": { - "type": "unsigned __int64", - "id": 2, - "offset": 80, - "flags": 16777247, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1298909658 - }, - "m_location": { - "type": "class Vector3D", - "id": 3, - "offset": 168, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2239683611 - }, - "m_orientation": { - "type": "class Vector3D", - "id": 4, - "offset": 180, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2344058766 - }, - "m_fScale": { - "type": "float", - "id": 5, - "offset": 196, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 503137701 - }, - "m_templateID.m_full": { - "type": "unsigned __int64", - "id": 6, - "offset": 96, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 633907631 - }, - "m_debugName": { - "type": "std::string", - "id": 7, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3553984419 - }, - "m_displayKey": { - "type": "std::string", - "id": 8, - "offset": 136, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3023276954 - }, - "m_zoneTagID": { - "type": "unsigned int", - "id": 9, - "offset": 344, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 965291410 - }, - "m_speedMultiplier": { - "type": "short", - "id": 10, - "offset": 192, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 123130076 - }, - "m_nMobileID": { - "type": "unsigned short", - "id": 11, - "offset": 194, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1054318939 - }, - "m_recipeNameID": { - "type": "unsigned int", - "id": 12, - "offset": 384, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2168714419 - } - } - }, - "958408073": { - "name": "class SharedPointer", - "bases": [ - "Window", - "PropertyClass" - ], - "hash": 958408073, - "properties": { - "m_sName": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306437263 - }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 65667, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621225959 - }, - "m_Style": { - "type": "unsigned int", - "id": 2, - "offset": 152, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "SCALE_CHILDREN": 2, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "FOCUS_LOCKED": 64, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152 - } - }, - "m_Flags": { - "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } - }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3105139380 - }, - "m_fTargetAlpha": { - "type": "float", - "id": 5, - "offset": 212, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1809129834 - }, - "m_fDisabledAlpha": { - "type": "float", - "id": 6, - "offset": 216, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1389987675 - }, - "m_fAlpha": { - "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 482130755 - }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3623628394 - }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2102211316 - }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1846695875 - }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3389835433 - }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2547159940 - }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2587533771 - }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3091503757 - } - } - }, - "1734332143": { - "name": "class SharedPointer", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 1734332143, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - }, - "m_visualAttributeType": { - "type": "enum VisualAttributeType", - "id": 1, - "offset": 120, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2701225082, - "enum_options": { - "VAT_HairStyle": 0, - "VAT_HairColor": 1, - "VAT_FaceStyle": 2, - "VAT_SkinColor": 3, - "VAT_EyeColor": 4, - "VAT_FacePaint": 5, - "VAT_NewEyeColor": 6, - "VAT_NewFaceStyle": 7, - "VAT_NoseStyle": 8, - "VAT_MouthStyle": 9, - "VAT_AccessoryStyle": 10, - "VAT_EyebrowStyle": 11, - "VAT_LipColorStyle": 12, - "VAT_BoyColor": 13, - "VAT_BoyTrimColor": 14, - "VAT_GirlColor": 15, - "VAT_GirlTrimColor": 16 - } - }, - "m_sourceFile": { - "type": "std::string", - "id": 2, - "offset": 128, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2304987980 - }, - "m_referenceFile": { - "type": "std::string", - "id": 3, - "offset": 160, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1866483306 - }, - "m_color": { - "type": "class Color", - "id": 4, - "offset": 192, - "flags": 262151, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1791663549 - }, - "m_equipmentIcon": { - "type": "std::string", - "id": 5, - "offset": 200, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1920035708 - } - } - }, - "176417900": { - "name": "class SharedPointer", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 176417900, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - } - } - }, - "2141629391": { - "name": "class SharedPointer", - "bases": [ - "ShadowCreatureCameraCutCinematicAction", - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 2141629391, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - } - } - }, - "1733903409": { - "name": "class SchoolOfFocusOption", - "bases": [ - "PropertyClass" - ], - "hash": 1733903409, - "properties": { - "m_schoolNameID": { - "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 624113571 - } - } - }, - "176143188": { - "name": "class CastleTourTeleportInfo*", - "bases": [ - "PropertyClass" - ], - "hash": 176143188, - "properties": { - "m_houseTemplateID": { - "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2326023642 - }, - "m_structureTemplateID": { - "type": "unsigned int", - "id": 1, - "offset": 76, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1037379271 - }, - "m_lotInstanceGID": { - "type": "gid", - "id": 2, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2010711536 - }, - "m_structureInstanceGID": { - "type": "gid", - "id": 3, - "offset": 88, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2083588818 - }, - "m_owningCharacterGID": { - "type": "gid", - "id": 4, - "offset": 96, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 316234091 - } - } - }, - "574436278": { - "name": "class ControlTileMap", - "bases": [ - "Window", - "PropertyClass" - ], - "hash": 574436278, - "properties": { - "m_sName": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306437263 - }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621225959 - }, - "m_Style": { - "type": "unsigned int", - "id": 2, - "offset": 152, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "SCALE_CHILDREN": 2, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "FOCUS_LOCKED": 64, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152 - } - }, - "m_Flags": { - "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } - }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3105139380 - }, - "m_fTargetAlpha": { - "type": "float", - "id": 5, - "offset": 212, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1809129834 - }, - "m_fDisabledAlpha": { - "type": "float", - "id": 6, - "offset": 216, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1389987675 - }, - "m_fAlpha": { - "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 482130755 - }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3623628394 - }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2102211316 - }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1846695875 - }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3389835433 - }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2547159940 - }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2587533771 - }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3091503757 - }, - "m_nBorderSize": { - "type": "int", - "id": 16, - "offset": 584, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2016376897 - }, - "m_TileSize": { - "type": "class Size", - "id": 17, - "offset": 588, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1169748581 - }, - "m_MapSize": { - "type": "class Size", - "id": 18, - "offset": 596, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1258934261 - }, - "m_nDefaultTile": { - "type": "int", - "id": 19, - "offset": 604, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1771469243 - }, - "m_Tiles": { - "type": "class SharedPointer", - "id": 20, - "offset": 608, - "flags": 135, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2276817757 - }, - "m_Map": { - "type": "class SharedPointer", - "id": 21, - "offset": 632, - "flags": 135, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1765608522 - }, - "m_nCursorOverTile": { - "type": "int", - "id": 22, - "offset": 664, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 590305648 - } - } - }, - "176102228": { - "name": "class CastleTourTeleportInfo", - "bases": [ - "PropertyClass" - ], - "hash": 176102228, - "properties": { - "m_houseTemplateID": { - "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2326023642 - }, - "m_structureTemplateID": { - "type": "unsigned int", - "id": 1, - "offset": 76, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1037379271 - }, - "m_lotInstanceGID": { - "type": "gid", - "id": 2, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2010711536 - }, - "m_structureInstanceGID": { - "type": "gid", - "id": 3, - "offset": 88, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2083588818 - }, - "m_owningCharacterGID": { - "type": "gid", - "id": 4, - "offset": 96, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 316234091 - } - } - }, - "2142089254": { - "name": "class SchoolPipSelector*", - "bases": [ - "Window", - "PropertyClass" - ], - "hash": 2142089254, - "properties": { - "m_sName": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306437263 - }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621225959 - }, - "m_Style": { - "type": "unsigned int", - "id": 2, - "offset": 152, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "SCALE_CHILDREN": 2, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "FOCUS_LOCKED": 64, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152 - } - }, - "m_Flags": { - "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } - }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3105139380 - }, - "m_fTargetAlpha": { - "type": "float", - "id": 5, - "offset": 212, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1809129834 - }, - "m_fDisabledAlpha": { - "type": "float", - "id": 6, - "offset": 216, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1389987675 - }, - "m_fAlpha": { - "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 482130755 - }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3623628394 - }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2102211316 - }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1846695875 - }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3389835433 - }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2547159940 - }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2587533771 - }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3091503757 - } - } - }, - "960119003": { - "name": "class SharedPointer", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 960119003, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - } - } - }, - "1734635885": { - "name": "class SharedPointer", - "bases": [ - "GameEffectTemplate", - "PropertyClass" - ], - "hash": 1734635885, - "properties": { - "m_effectName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2029161513 - }, - "m_effectCategory": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1852673222 - }, - "m_sortOrder": { - "type": "int", - "id": 2, - "offset": 148, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1411218206 - }, - "m_duration": { - "type": "double", - "id": 3, - "offset": 192, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2727932435 - }, - "m_stackingCategories": { - "type": "std::string", - "id": 4, - "offset": 160, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1774497525 - }, - "m_isPersistent": { - "type": "bool", - "id": 5, - "offset": 153, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 923861920 - }, - "m_bIsOnPet": { - "type": "bool", - "id": 6, - "offset": 154, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 522593303 - }, - "m_isPublic": { - "type": "bool", - "id": 7, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1728439822 - }, - "m_visualEffectAddName": { - "type": "std::string", - "id": 8, - "offset": 200, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3382086694 - }, - "m_visualEffectRemoveName": { - "type": "std::string", - "id": 9, - "offset": 232, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1541697323 - }, - "m_onAddFunctorName": { - "type": "std::string", - "id": 10, - "offset": 280, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1561843107 - }, - "m_onRemoveFunctorName": { - "type": "std::string", - "id": 11, - "offset": 312, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2559017864 - }, - "m_stackingRule": { - "type": "enum STACKING_RULE", - "id": 12, - "offset": 144, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 431568889, - "enum_options": { - "STACKING_ALLOWED": 0, - "STACKING_NOSTACK": 1, - "STACKING_REPLACE": 2 - } - } - } - }, - "576077362": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 576077362, - "properties": { - "m_name": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1717359772 - }, - "m_minScore": { - "type": "int", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1505040890 - }, - "m_maxScore": { - "type": "int", - "id": 2, - "offset": 108, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 154585660 - }, - "m_pvpIcon": { - "type": "std::string", - "id": 3, - "offset": 112, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1503451354 - }, - "m_petIcon": { - "type": "std::string", - "id": 4, - "offset": 144, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2990377005 - } - } - }, - "959047476": { - "name": "class MobMonsterMagicBehaviorTemplate", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 959047476, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - }, - "m_worldName": { - "type": "std::string", - "id": 1, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1846757476 - }, - "m_collectionResistance": { - "type": "int", - "id": 2, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 717150423 - }, - "m_isBoss": { - "type": "bool", - "id": 3, - "offset": 156, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 569602950 - }, - "m_essencesPerSummonTC": { - "type": "int", - "id": 4, - "offset": 160, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2052433520 - }, - "m_goldPerSummonTC": { - "type": "int", - "id": 5, - "offset": 164, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1978867293 - }, - "m_essencesPerHouseGuest": { - "type": "int", - "id": 6, - "offset": 168, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 254219206 - }, - "m_goldPerHouseGuest": { - "type": "int", - "id": 7, - "offset": 172, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1744976627 - }, - "m_essencesPerKillTC": { - "type": "int", - "id": 8, - "offset": 176, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 305653757 - }, - "m_goldPerKillTC": { - "type": "int", - "id": 9, - "offset": 180, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 910983338 - }, - "m_houseGuestTemplateID": { - "type": "unsigned int", - "id": 10, - "offset": 184, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 612813314 - }, - "m_alternateMobTemplateID": { - "type": "unsigned int", - "id": 11, - "offset": 188, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 233156212 - }, - "m_collectedAsTemplateID": { - "type": "unsigned int", - "id": 12, - "offset": 232, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1661926425 - } - } - }, - "1751420527": { - "name": "class RemoveCameraMappingCinematicAction*", - "bases": [ - "CinematicAction", - "PropertyClass" - ], - "hash": 1751420527, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_camToReplace": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2286913643 - } - } - }, - "575889771": { - "name": "class RaidPortalBehavior*", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 575889771, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_active": { - "type": "bool", - "id": 1, - "offset": 112, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 239335471 - } - } - }, - "2146029155": { - "name": "class ControlList::ListItemState*", - "bases": [ - "PropertyClass" - ], - "hash": 2146029155, - "properties": { - "m_pMaterial": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3479277078 - }, - "m_nMaterialFrame": { - "type": "int", - "id": 1, - "offset": 88, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1641923970 - } - } - }, - "176582648": { - "name": "class BeneficialProximityBehaviorTemplate*", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 176582648, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - }, - "m_radius": { - "type": "float", - "id": 1, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 989410271 - }, - "m_duration": { - "type": "float", - "id": 2, - "offset": 124, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 920323453 - }, - "m_benefitType": { - "type": "enum BenefitType", - "id": 3, - "offset": 128, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3823810885, - "enum_options": { - "BT_Heal": 0, - "BT_Mana": 1, - "BT_FishingLuck": 2, - "BT_HealMana": 3 - } - }, - "m_value": { - "type": "float", - "id": 4, - "offset": 132, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 903191604 - } - } - }, - "2143827168": { - "name": "class HangingEffectProtectionRemovedStageTemplate", - "bases": [ - "CinematicStageTemplate", - "PropertyClass" - ], - "hash": 2143827168, - "properties": { - "m_name": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1717359772 - }, - "m_duration": { - "type": "float", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 920323453 - }, - "m_actions": { - "type": "class SharedPointer", - "id": 2, - "offset": 112, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1380578687 - }, - "m_stageRelationships": { - "type": "class SharedPointer", - "id": 3, - "offset": 128, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 499983354 - }, - "m_stopRotating": { - "type": "bool", - "id": 4, - "offset": 153, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 13587553 - }, - "m_startRotating": { - "type": "bool", - "id": 5, - "offset": 154, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 839204969 - }, - "m_startRotationTime": { - "type": "float", - "id": 6, - "offset": 156, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1011449124 - }, - "m_camRel": { - "type": "enum CameraCutCinematicAction::kCameraRelative", - "id": 7, - "offset": 164, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 919962138, - "enum_options": { - "kSigil": 1, - "kTarget": 2, - "kSource": 3, - "kActor": 4, - "__DEFAULT": "kTarget" - } - }, - "m_bSwitchCameraToWideLong": { - "type": "bool", - "id": 8, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2136912684, - "enum_options": { - "__DEFAULT": 1 - } - }, - "m_isCloaked": { - "type": "bool", - "id": 9, - "offset": 160, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1175302050 - } - } - }, - "960268778": { - "name": "class ResultSourceType", - "bases": [ - "Result", - "PropertyClass" - ], - "hash": 960268778, - "properties": { - "m_sourceType": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2305508654 - }, - "m_zoneLevelMax": { - "type": "unsigned int", - "id": 1, - "offset": 76, - "flags": 263, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1028933895 - }, - "m_zoneLevelMin": { - "type": "unsigned int", - "id": 2, - "offset": 72, - "flags": 263, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1028934149 - } - } - }, - "2143311988": { - "name": "class SharedPointer", - "bases": [ - "Window", - "PropertyClass" - ], - "hash": 2143311988, - "properties": { - "m_sName": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306437263 - }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621225959 - }, - "m_Style": { - "type": "unsigned int", - "id": 2, - "offset": 152, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152, - "SHOW_HOTKEY": 16777216, - "EFFECT_SCALE": 67108864, - "LOCK_ICON_SIZE": 33554432, - "LEFT_TEXT": 536870912, - "NO_FIT_TEXT": 1073741824 - } - }, - "m_Flags": { - "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } - }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3105139380 - }, - "m_fTargetAlpha": { - "type": "float", - "id": 5, - "offset": 212, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1809129834 - }, - "m_fDisabledAlpha": { - "type": "float", - "id": 6, - "offset": 216, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1389987675 - }, - "m_fAlpha": { - "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 482130755 - }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3623628394 - }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2102211316 - }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1846695875 - }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3389835433 - }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2547159940 - }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2587533771 - }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3091503757 - }, - "m_bToggle": { - "type": "bool", - "id": 16, - "offset": 608, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2071810903 - }, - "m_bButtonDown": { - "type": "bool", - "id": 17, - "offset": 609, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 840041705 - }, - "m_sLabel": { - "type": "std::wstring", - "id": 18, - "offset": 616, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2207009163 - }, - "m_labelOffset": { - "type": "class Rect", - "id": 19, - "offset": 832, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1990646723 - }, - "m_pButton": { - "type": "class SharedPointer", - "id": 20, - "offset": 656, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1543855875 - }, - "m_HotKey": { - "type": "unsigned int", - "id": 21, - "offset": 672, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1631553409 - }, - "m_Color": { - "type": "class Color", - "id": 22, - "offset": 676, - "flags": 262279, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1753714077 - }, - "m_bCursorOver": { - "type": "bool", - "id": 23, - "offset": 689, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 283981103 - }, - "m_bAbortWhenCursorNotOver": { - "type": "bool", - "id": 24, - "offset": 706, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 325405258 - }, - "m_bHotKeyDown": { - "type": "bool", - "id": 25, - "offset": 680, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 616989185 - }, - "m_fTime": { - "type": "float", - "id": 26, - "offset": 684, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 883746156 - }, - "m_bGreyed": { - "type": "bool", - "id": 27, - "offset": 688, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1566556053 - }, - "m_fMaxScale": { - "type": "float", - "id": 28, - "offset": 692, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2070186635 - }, - "m_fScaleSpeed": { - "type": "float", - "id": 29, - "offset": 696, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1457135702 - }, - "m_bUseDropShadow": { - "type": "bool", - "id": 30, - "offset": 704, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 93063037 - }, - "m_bUseOutline": { - "type": "bool", - "id": 31, - "offset": 705, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 744292994 - }, - "m_pGreyedState": { - "type": "class SharedPointer", - "id": 32, - "offset": 768, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2703352263 - }, - "m_pNormalState": { - "type": "class SharedPointer", - "id": 33, - "offset": 752, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1887909808 - }, - "m_pHighlightedState": { - "type": "class SharedPointer", - "id": 34, - "offset": 784, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2200177608 - }, - "m_pSelectedState": { - "type": "class SharedPointer", - "id": 35, - "offset": 800, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2266776432 - }, - "m_pDepressedState": { - "type": "class SharedPointer", - "id": 36, - "offset": 816, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1878185798 - } - } - }, - "1741772096": { - "name": "class SharedPointer", - "bases": [ - "Window", - "PropertyClass" - ], - "hash": 1741772096, - "properties": { - "m_sName": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306437263 - }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621225959 - }, - "m_Style": { - "type": "unsigned int", - "id": 2, - "offset": 152, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152, - "DLC_SPELLTIP": 16777216, - "DLC_SELECT": 33554432 - } - }, - "m_Flags": { - "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } - }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3105139380 - }, - "m_fTargetAlpha": { - "type": "float", - "id": 5, - "offset": 212, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1809129834 - }, - "m_fDisabledAlpha": { - "type": "float", - "id": 6, - "offset": 216, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1389987675 - }, - "m_fAlpha": { - "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 482130755 - }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3623628394 - }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2102211316 - }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1846695875 - }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3389835433 - }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2547159940 - }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2587533771 - }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3091503757 - }, - "m_cardSize": { - "type": "class Size", - "id": 16, - "offset": 676, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1135567057 - }, - "m_spacing": { - "type": "int", - "id": 17, - "offset": 684, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1481011679 - }, - "m_verticalSpacingAdjust": { - "type": "int", - "id": 18, - "offset": 688, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2069000644 - }, - "m_slotImage": { - "type": "class SharedPointer", - "id": 19, - "offset": 616, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2088856988 - }, - "m_treasureFrame": { - "type": "int", - "id": 20, - "offset": 632, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 178393840 - } - } - }, - "577435712": { - "name": "class SharedPointer", - "bases": [ - "RemoveInterceptCinematicAction", - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 577435712, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - } - } - }, - "2142632602": { - "name": "class HousingPetMovement", - "bases": [ - "PropertyClass" - ], - "hash": 2142632602, - "properties": {} - }, - "1738298685": { - "name": "class ActorDialogList", - "bases": [ - "ActorDialogListBase", - "PropertyClass" - ], - "hash": 1738298685, - "properties": { - "m_dialogs": { - "type": "class ActorDialog*", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2112889951 - } - } - }, - "176724800": { - "name": "class ClientRemoveCameraMappingCinematicAction", - "bases": [ - "RemoveCameraMappingCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 176724800, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_camToReplace": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2286913643 - } - } - }, - "576999877": { - "name": "class ReqHasGoal", - "bases": [ - "Requirement", - "PropertyClass" - ], - "hash": 576999877, - "properties": { - "m_applyNOT": { - "type": "bool", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1746328074, - "enum_options": { - "__DEFAULT": 0 - } - }, - "m_operator": { - "type": "enum Requirement::Operator", - "id": 1, - "offset": 76, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2672792317, - "enum_options": { - "ROP_AND": 0, - "ROP_OR": 1, - "__DEFAULT": "ROP_AND" - } - }, - "m_questName": { - "type": "std::string", - "id": 2, - "offset": 80, - "flags": 268435463, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1702112846, - "enum_options": { - "__BASECLASS": "QuestTemplate" - } - }, - "m_goalName": { - "type": "std::string", - "id": 3, - "offset": 112, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1521627807 - }, - "m_requiredStatus": { - "type": "enum GoalStatusRequirement", - "id": 4, - "offset": 144, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1705123608, - "enum_options": { - "DontCare": 0, - "Complete": 1, - "Incomplete": 2, - "__DEFAULT": "DontCare" - } - } - } - }, - "1738178676": { - "name": "class DailyQuestReward", - "bases": [ - "PropertyClass" - ], - "hash": 1738178676, - "properties": { - "m_quantity": { - "type": "int", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 169215289 - }, - "m_rewardType": { - "type": "enum DailyQuestReward::RewardTypes", - "id": 1, - "offset": 76, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3431311734, - "enum_options": { - "RT_Gold": 0, - "RT_Crowns": 1, - "RT_ArenaTickets": 2, - "RT_PvPCurrency": 3, - "RT_PvPTourneyCurrency": 4, - "RT_Chest": 5, - "RT_Quest": 6 - } - }, - "m_lootTable": { - "type": "std::string", - "id": 2, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2539512673 - }, - "m_doubleLootTable": { - "type": "std::string", - "id": 3, - "offset": 112, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2975549628 - }, - "m_anniversaryLootTable": { - "type": "std::string", - "id": 4, - "offset": 144, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1514594483 - }, - "m_halloweenLootTable": { - "type": "std::string", - "id": 5, - "offset": 176, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2915828832 - }, - "m_christmasLootTable": { - "type": "std::string", - "id": 6, - "offset": 208, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1878775663 - } - } - }, - "176724416": { - "name": "class ClientRemoveCameraMappingCinematicAction*", - "bases": [ - "RemoveCameraMappingCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 176724416, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_camToReplace": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2286913643 - } - } - }, - "1448327191": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1448327191, - "properties": { - "m_infoList": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1525681909 - } - } - }, - "961429584": { - "name": "class SharedPointer", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 961429584, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - } - } - }, - "1737415754": { - "name": "class ZoneTokenBooleanControl*", - "bases": [ - "ZoneTokenBaseControl", - "Window", - "PropertyClass" - ], - "hash": 1737415754, - "properties": { - "m_sName": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306437263 - }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621225959 - }, - "m_Style": { - "type": "unsigned int", - "id": 2, - "offset": 152, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "SCALE_CHILDREN": 2, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "FOCUS_LOCKED": 64, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152 - } - }, - "m_Flags": { - "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } - }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3105139380 - }, - "m_fTargetAlpha": { - "type": "float", - "id": 5, - "offset": 212, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1809129834 - }, - "m_fDisabledAlpha": { - "type": "float", - "id": 6, - "offset": 216, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1389987675 - }, - "m_fAlpha": { - "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 482130755 - }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3623628394 - }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2102211316 - }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1846695875 - }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3389835433 - }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2547159940 - }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2587533771 - }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3091503757 - } - } - }, - "960612356": { - "name": "class MoveCommandYawTime*", - "bases": [ - "MoveController::MoveCommand", - "PropertyClass" - ], - "hash": 960612356, - "properties": { - "m_fYaw": { - "type": "float", - "id": 0, - "offset": 88, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 309564718 - }, - "m_fTime": { - "type": "double", - "id": 1, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2691355138 - } - } - }, - "1736610199": { - "name": "class SharedPointer", - "bases": [ - "DerbyForceLaneChange", - "DerbyEffect", - "PropertyClass" - ], - "hash": 1736610199, - "properties": { - "m_buffType": { - "type": "enum DerbyTalentBuffType", - "id": 0, - "offset": 92, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1149251982, - "enum_options": { - "Buff": 0, - "Debuff": 1, - "Neither": 2 - } - }, - "m_kTarget": { - "type": "enum DerbyTargetType", - "id": 1, - "offset": 96, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1807803351, - "enum_options": { - "kTargetInFront": 0, - "kTargetBehind": 1, - "kTargetFirst": 2, - "kTargetSelf": 3, - "kTargetAll": 4, - "kTargetLast": 5 - } - }, - "m_nDuration": { - "type": "int", - "id": 2, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1110167982 - }, - "m_effectID": { - "type": "unsigned int", - "id": 3, - "offset": 88, - "flags": 24, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2347630439 - }, - "m_imageFilename": { - "type": "std::string", - "id": 4, - "offset": 112, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2813328063 - }, - "m_iconIndex": { - "type": "unsigned int", - "id": 5, - "offset": 144, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1265133262 - }, - "m_soundOnActivate": { - "type": "std::string", - "id": 6, - "offset": 152, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1956929714 - }, - "m_soundOnTarget": { - "type": "std::string", - "id": 7, - "offset": 184, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3444214056 - }, - "m_targetParticleEffect": { - "type": "std::string", - "id": 8, - "offset": 216, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3048234723 - }, - "m_overheadMessage": { - "type": "std::string", - "id": 9, - "offset": 248, - "flags": 8388639, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1701018190 - }, - "m_requirements": { - "type": "class RequirementList", - "id": 10, - "offset": 280, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2840988582 - } - } - }, - "960379009": { - "name": "class ReqIsGender*", - "bases": [ - "Requirement", - "PropertyClass" - ], - "hash": 960379009, - "properties": { - "m_applyNOT": { - "type": "bool", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1746328074, - "enum_options": { - "__DEFAULT": 0 - } - }, - "m_operator": { - "type": "enum Requirement::Operator", - "id": 1, - "offset": 76, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2672792317, - "enum_options": { - "ROP_AND": 0, - "ROP_OR": 1, - "__DEFAULT": "ROP_AND" - } - }, - "m_playerGender": { - "type": "std::string", - "id": 2, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2199467133 - } - } - }, - "2144314239": { - "name": "class SharedPointer", - "bases": [ - "ClientLeashBehavior", - "LeashBehavior", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 2144314239, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_ownerGid": { - "type": "gid", - "id": 1, - "offset": 128, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1765088663 - }, - "m_radius": { - "type": "float", - "id": 2, - "offset": 136, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 989410271 - }, - "m_angle": { - "type": "float", - "id": 3, - "offset": 140, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 878748702 - }, - "m_leashType": { - "type": "enum LeashType", - "id": 4, - "offset": 144, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2170708051, - "enum_options": { - "LLT_Rigid": 0, - "LLT_Elastic": 1 - } - }, - "m_alwaysDisplay": { - "type": "bool", - "id": 5, - "offset": 161, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2071781402 - } - } - }, - "1735114774": { - "name": "class GuildAchievementBehaviorTemplate", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 1735114774, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - } - } - }, - "177787577": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 177787577, - "properties": { - "m_mappings": { - "type": "class FontMapping", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 3543733145 - }, - "m_defaultFont": { - "type": "std::string", - "id": 1, - "offset": 88, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2375516599 - } - } - }, - "577336023": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 577336023, - "properties": { - "m_behaviors": { - "type": "class BehaviorTemplate*", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1197808594 - } - } - }, - "2144212177": { - "name": "class SharedPointer", - "bases": [ - "AddCameraMappingCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 2144212177, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_camToReplace": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2286913643 - }, - "m_replaceWithCam": { - "type": "std::string", - "id": 2, - "offset": 112, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2992754084 - } - } - }, - "176748547": { - "name": "class FishingXPLootInfo", - "bases": [ - "LootInfo", - "LootInfoBase", - "PropertyClass" - ], - "hash": 176748547, - "properties": { - "m_lootType": { - "type": "enum LootInfo::LOOT_TYPE", - "id": 0, - "offset": 72, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1591891442, - "enum_options": { - "LOOT_TYPE_NONE": 0, - "LOOT_TYPE_GOLD": 1, - "LOOT_TYPE_MANA": 2, - "LOOT_TYPE_ITEM": 3, - "LOOT_TYPE_TREASURE_CARD": 4, - "LOOT_TYPE_MAGIC_XP": 5, - "LOOT_TYPE_ADD_SPELL": 6, - "LOOT_TYPE_MAX_HEALTH": 7, - "LOOT_TYPE_MAX_GOLD": 8, - "LOOT_TYPE_MAX_MANA": 9, - "LOOT_TYPE_MAX_POTION": 10, - "LOOT_TYPE_TRAINING_POINTS": 11, - "LOOT_TYPE_RECIPE": 12, - "LOOT_TYPE_CRAFTING_SLOT": 13, - "LOOT_TYPE_REAGENT": 14, - "LOOT_TYPE_PETSNACK": 15, - "LOOT_TYPE_GARDENING_XP": 16, - "LOOT_TYPE_PET_XP": 17, - "LOOT_TYPE_TREASURE_TABLE": 18, - "LOOT_TYPE_ARENA_POINTS": 19, - "LOOT_TYPE_ARENA_BONUS_POINTS": 20, - "LOOT_TYPE_GROUP": 21, - "LOOT_TYPE_FISHING_XP": 22, - "LOOT_TYPE_EVENT_CURRENCY_1": 24, - "LOOT_TYPE_EVENT_CURRENCY_2": 25, - "LOOT_TYPE_PVP_CURRENCY": 26, - "LOOT_TYPE_PVP_CURRENCY_BONUS": 27, - "LOOT_TYPE_PVP_TOURNEY_CURRENCY": 28, - "LOOT_TYPE_PVP_TOURNEY_CURRENCY_BONUS": 29, - "LOOT_TYPE_FURNITURE_ESSENCE": 30 - } - }, - "m_experience": { - "type": "int", - "id": 1, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 759357570 - } - } - }, - "960864669": { - "name": "class SharedPointer", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 960864669, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - } - } - }, - "1737361018": { - "name": "WeightedEntryT", - "bases": [ - "WeightedEntry", - "PropertyClass" - ], - "hash": 1737361018, - "properties": { - "m_weight": { - "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1311209301 - }, - "m_entry": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2291005229 - } - } - }, - "577605360": { - "name": "class EquivalentItemBehaviorTemplate", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 577605360, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - }, - "m_equivalentItemTemplateID": { - "type": "gid", - "id": 1, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 657877294 - } - } - }, - "2144947950": { - "name": "class ShadowCreatureLevelTransitionCinematicAction", - "bases": [ - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 2144947950, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - } - } - }, - "178242146": { - "name": "class SharedPointer", - "bases": [ - "ObstacleCourseObstaclePathBaseTemplate", - "ObstacleCourseObstacleBehaviorTemplate", - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 178242146, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - }, - "m_rate": { - "type": "float", - "id": 1, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 310005283 - }, - "m_penaltyTime": { - "type": "float", - "id": 2, - "offset": 124, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2083389507 - }, - "m_totalObstacleSize": { - "type": "class Vector3D", - "id": 3, - "offset": 128, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2379878414 - }, - "m_bounds": { - "type": "class Vector3D", - "id": 4, - "offset": 152, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1948083181 - }, - "m_orientToPath": { - "type": "bool", - "id": 5, - "offset": 176, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 655036148 - }, - "m_heightUp": { - "type": "float", - "id": 6, - "offset": 140, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2208713013 - }, - "m_heightDown": { - "type": "float", - "id": 7, - "offset": 144, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 655333896 - }, - "m_speedAmount": { - "type": "double", - "id": 8, - "offset": 184, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3716841682 - }, - "m_buffTime": { - "type": "double", - "id": 9, - "offset": 192, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2925547231 - }, - "m_effectWearingOff": { - "type": "std::string", - "id": 10, - "offset": 200, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1540780784 - }, - "m_soundWearingOff": { - "type": "std::string", - "id": 11, - "offset": 232, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1848004524 - }, - "m_effectApply": { - "type": "std::string", - "id": 12, - "offset": 264, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1838368078 - }, - "m_soundApply": { - "type": "std::string", - "id": 13, - "offset": 296, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3579526282 - }, - "m_effectDespawn": { - "type": "std::string", - "id": 14, - "offset": 328, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2174851674 - }, - "m_soundDespawn": { - "type": "std::string", - "id": 15, - "offset": 360, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2068074646 - }, - "m_effectWhileActive": { - "type": "std::string", - "id": 16, - "offset": 392, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3074038205 - }, - "m_soundWhileActive": { - "type": "std::string", - "id": 17, - "offset": 424, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2475003385 - }, - "m_effectRespawning": { - "type": "std::string", - "id": 18, - "offset": 456, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3091986790 - }, - "m_soundRespawning": { - "type": "std::string", - "id": 19, - "offset": 488, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3399210530 - } - } - }, - "577655237": { - "name": "class ReqHasGoal*", - "bases": [ - "Requirement", - "PropertyClass" - ], - "hash": 577655237, - "properties": { - "m_applyNOT": { - "type": "bool", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1746328074, - "enum_options": { - "__DEFAULT": 0 - } - }, - "m_operator": { - "type": "enum Requirement::Operator", - "id": 1, - "offset": 76, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2672792317, - "enum_options": { - "ROP_AND": 0, - "ROP_OR": 1, - "__DEFAULT": "ROP_AND" - } - }, - "m_questName": { - "type": "std::string", - "id": 2, - "offset": 80, - "flags": 268435463, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1702112846, - "enum_options": { - "__BASECLASS": "QuestTemplate" - } - }, - "m_goalName": { - "type": "std::string", - "id": 3, - "offset": 112, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1521627807 - }, - "m_requiredStatus": { - "type": "enum GoalStatusRequirement", - "id": 4, - "offset": 144, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1705123608, - "enum_options": { - "DontCare": 0, - "Complete": 1, - "Incomplete": 2, - "__DEFAULT": "DontCare" - } - } - } - }, - "962892045": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 962892045, - "properties": {} - }, - "2145575168": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 2145575168, - "properties": { - "m_characterGID": { - "type": "gid", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 501688601 - }, - "m_packedName": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1805208228 - }, - "m_playerLevel": { - "type": "int", - "id": 2, - "offset": 112, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 743117695 - }, - "m_badgeCount": { - "type": "int", - "id": 3, - "offset": 116, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 265710774 - }, - "m_school": { - "type": "unsigned int", - "id": 4, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1152268885 - }, - "m_lastBadgeName": { - "type": "std::string", - "id": 5, - "offset": 128, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3502394755 - } - } - }, - "1738014836": { - "name": "class DailyQuestReward*", - "bases": [ - "PropertyClass" - ], - "hash": 1738014836, - "properties": { - "m_quantity": { - "type": "int", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 169215289 - }, - "m_rewardType": { - "type": "enum DailyQuestReward::RewardTypes", - "id": 1, - "offset": 76, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3431311734, - "enum_options": { - "RT_Gold": 0, - "RT_Crowns": 1, - "RT_ArenaTickets": 2, - "RT_PvPCurrency": 3, - "RT_PvPTourneyCurrency": 4, - "RT_Chest": 5, - "RT_Quest": 6 - } - }, - "m_lootTable": { - "type": "std::string", - "id": 2, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2539512673 - }, - "m_doubleLootTable": { - "type": "std::string", - "id": 3, - "offset": 112, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2975549628 - }, - "m_anniversaryLootTable": { - "type": "std::string", - "id": 4, - "offset": 144, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1514594483 - }, - "m_halloweenLootTable": { - "type": "std::string", - "id": 5, - "offset": 176, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2915828832 - }, - "m_christmasLootTable": { - "type": "std::string", - "id": 6, - "offset": 208, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1878775663 - } - } - }, - "962227962": { - "name": "class SharedPointer", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 962227962, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - }, - "m_visualBreadCrumb": { - "type": "bool", - "id": 1, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1118570878 - } - } - }, - "180508292": { - "name": "class CameraCutCinematicAction", - "bases": [ - "CinematicAction", - "PropertyClass" - ], - "hash": 180508292, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_cameras": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 131079, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 3217341687 - }, - "m_altcameras": { - "type": "std::string", - "id": 2, - "offset": 104, - "flags": 131079, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1882980152 - }, - "m_initialCameraName": { - "type": "std::string", - "id": 3, - "offset": 128, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2526319343 - }, - "m_camRel": { - "type": "enum CameraCutCinematicAction::kCameraRelative", - "id": 4, - "offset": 168, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 919962138, - "enum_options": { - "kNone": 0, - "kSigil": 1, - "kTarget": 2, - "kSource": 3, - "kActor": 4 - } - }, - "m_interpolationDuration": { - "type": "float", - "id": 5, - "offset": 160, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1458058437 - }, - "m_releaseInterpolationDuration": { - "type": "float", - "id": 6, - "offset": 164, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1807754278, - "enum_options": { - "__DEFAULT": "1.0" - } - }, - "m_bUseOrientationOverride": { - "type": "bool", - "id": 7, - "offset": 188, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1088002894 - }, - "m_overrideOrientation": { - "type": "class Vector3D", - "id": 8, - "offset": 192, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3267199758 - }, - "m_bUseLocationOverride": { - "type": "bool", - "id": 9, - "offset": 172, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1767170875 - }, - "m_overrideLocation": { - "type": "class Vector3D", - "id": 10, - "offset": 176, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3776417691 - }, - "m_namedActor": { - "type": "std::string", - "id": 11, - "offset": 208, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3413532537 - }, - "m_camScale": { - "type": "float", - "id": 12, - "offset": 240, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 979098224 - } - } - }, - "961689718": { - "name": "class ToSendCheerModsList*", - "bases": [ - "PropertyClass" - ], - "hash": 961689718, - "properties": { - "m_list": { - "type": "class TerrainCheerCostMap", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2021860698 - } - } - }, - "180322525": { - "name": "class SpawnCreatureCinematicAction", - "bases": [ - "QueuedCombatCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 180322525, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - } - } - }, - "580128221": { - "name": "class WizPolymorphTemplate", - "bases": [ - "CoreTemplate", - "PropertyClass" - ], - "hash": 580128221, - "properties": { - "m_behaviors": { - "type": "class BehaviorTemplate*", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1197808594 - }, - "m_templateID": { - "type": "unsigned int", - "id": 1, - "offset": 96, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1286746870 - }, - "m_mobTemplateID": { - "type": "unsigned int", - "id": 2, - "offset": 100, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1268089108 - }, - "m_effects": { - "type": "class GameEffectInfo*", - "id": 3, - "offset": 104, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 588086299 - } - } - }, - "2146911761": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 2146911761, - "properties": { - "m_shoppingColors": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 646294186 - }, - "m_dyeShopMods": { - "type": "class SharedPointer", - "id": 1, - "offset": 88, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2565828981 - }, - "m_sellMods": { - "type": "class SharedPointer", - "id": 2, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 789769746 - }, - "m_treasureMods": { - "type": "class SharedPointer", - "id": 3, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2392153009 - } - } - }, - "1738293565": { - "name": "class ActorDialogList*", - "bases": [ - "ActorDialogListBase", - "PropertyClass" - ], - "hash": 1738293565, - "properties": { - "m_dialogs": { - "type": "class ActorDialog*", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2112889951 - } - } - }, - "179572547": { - "name": "class InfractionCategory*", - "bases": [ - "PropertyClass" - ], - "hash": 179572547, - "properties": { - "m_category": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2682050233 - }, - "m_events": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 716105444 - }, - "m_penalties": { - "type": "class SharedPointer", - "id": 2, - "offset": 128, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1631054690 - } - } - }, - "578480685": { - "name": "class PromoGiftList*", - "bases": [ - "PropertyClass" - ], - "hash": 578480685, - "properties": { - "m_promoGifts": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 885904406 - } - } - }, - "2146780054": { - "name": "struct ControlTileMap::Tile*", - "bases": [ - "PropertyClass" - ], - "hash": 2146780054, - "properties": { - "m_Color": { - "type": "class Color", - "id": 0, - "offset": 72, - "flags": 262279, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1753714077 - }, - "m_pMaterial": { - "type": "class SharedPointer", - "id": 1, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3479277078 - }, - "m_UV": { - "type": "class Rect", - "id": 2, - "offset": 96, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3810095225 - }, - "m_nNextTile": { - "type": "int", - "id": 3, - "offset": 112, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1012895541 - }, - "m_textComponent": { - "type": "class TextComponent", - "id": 4, - "offset": 120, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3491704390 - } - } - }, - "1738202186": { - "name": "class ZoneTokenBooleanControl", - "bases": [ - "ZoneTokenBaseControl", - "Window", - "PropertyClass" - ], - "hash": 1738202186, - "properties": { - "m_sName": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306437263 - }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621225959 - }, - "m_Style": { - "type": "unsigned int", - "id": 2, - "offset": 152, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "SCALE_CHILDREN": 2, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "FOCUS_LOCKED": 64, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152 - } - }, - "m_Flags": { - "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } - }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3105139380 - }, - "m_fTargetAlpha": { - "type": "float", - "id": 5, - "offset": 212, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1809129834 - }, - "m_fDisabledAlpha": { - "type": "float", - "id": 6, - "offset": 216, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1389987675 - }, - "m_fAlpha": { - "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 482130755 - }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3623628394 - }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2102211316 - }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1846695875 - }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3389835433 - }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2547159940 - }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2587533771 - }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3091503757 - } - } - }, - "178987841": { - "name": "class GoalCompleteLogic*", - "bases": [ - "PropertyClass" - ], - "hash": 178987841, - "properties": { - "m_goalsAND": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1522921572 - }, - "m_goalsOR": { - "type": "std::string", - "id": 1, - "offset": 88, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2474679090 - }, - "m_goalsToAdd": { - "type": "std::string", - "id": 2, - "offset": 104, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 3122082173 - }, - "m_completeQuest": { - "type": "bool", - "id": 3, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1096497470 - }, - "m_requiredORCount": { - "type": "int", - "id": 4, - "offset": 124, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1209220805 - } - } - }, - "578431894": { - "name": "class ControlComboBox*", - "bases": [ - "Window", - "PropertyClass" - ], - "hash": 578431894, - "properties": { - "m_sName": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306437263 - }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621225959 - }, - "m_Style": { - "type": "unsigned int", - "id": 2, - "offset": 152, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152, - "CBF_SORTED": 16777216 - } - }, - "m_Flags": { - "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } - }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3105139380 - }, - "m_fTargetAlpha": { - "type": "float", - "id": 5, - "offset": 212, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1809129834 - }, - "m_fDisabledAlpha": { - "type": "float", - "id": 6, - "offset": 216, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1389987675 - }, - "m_fAlpha": { - "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 482130755 - }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3623628394 - }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2102211316 - }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1846695875 - }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3389835433 - }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2547159940 - }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2587533771 - }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3091503757 - }, - "m_Items": { - "type": "class ComboItem", - "id": 16, - "offset": 584, - "flags": 135, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2627949239 - }, - "m_nSelected": { - "type": "int", - "id": 17, - "offset": 608, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1017366545 - }, - "m_nExpandedSize": { - "type": "int", - "id": 18, - "offset": 612, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1542607084 - }, - "m_nButtonSize": { - "type": "int", - "id": 19, - "offset": 616, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1917634655 - }, - "m_pButtonMaterial": { - "type": "class SharedPointer", - "id": 20, - "offset": 624, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2439977842 - }, - "m_buttonStyle": { - "type": "class SharedPointer", - "id": 21, - "offset": 736, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1791389598 - } - } - }, - "2146431389": { - "name": "enum NewRideTypes", - "bases": [], - "hash": 2146431389, - "properties": {} - }, - "578054091": { - "name": "class SharedPointer", - "bases": [ - "CoreTemplate", - "PropertyClass" - ], - "hash": 578054091, - "properties": { - "m_behaviors": { - "type": "class BehaviorTemplate*", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1197808594 - }, - "m_name": { - "type": "std::string", - "id": 1, - "offset": 96, - "flags": 134217735, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1717359772 - }, - "m_spellNameList": { - "type": "std::string", - "id": 2, - "offset": 136, - "flags": 268435463, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2848889656, - "enum_options": { - "__BASECLASS": "SpellTemplate" - } - } - } - }, - "964426667": { - "name": "class MagicalSoccerGameComponent", - "bases": [ - "HousingGameInterface", - "PropertyClass" - ], - "hash": 964426667, - "properties": {} - }, - "2146029161": { - "name": "class ControlList::ListItemState", - "bases": [ - "PropertyClass" - ], - "hash": 2146029161, - "properties": { - "m_pMaterial": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3479277078 - }, - "m_nMaterialFrame": { - "type": "int", - "id": 1, - "offset": 88, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1641923970 - } - } - }, - "179134095": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 179134095, - "properties": { - "m_gameID": { - "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 680439828 - }, - "m_bluePlayerGID": { - "type": "gid", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 253380865 - }, - "m_bluePackedName": { - "type": "std::string", - "id": 2, - "offset": 88, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1812461836 - }, - "m_orangePlayerGID": { - "type": "gid", - "id": 3, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1870113109 - }, - "m_orangePackedName": { - "type": "std::string", - "id": 4, - "offset": 128, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3625018336 - }, - "m_redPlayerGID": { - "type": "gid", - "id": 5, - "offset": 160, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 406170260 - }, - "m_redPackedName": { - "type": "std::string", - "id": 6, - "offset": 168, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2559544575 - } - } - }, - "577733819": { - "name": "class PriceModifiers", - "bases": [ - "PropertyClass" - ], - "hash": 577733819, - "properties": { - "m_shoppingColors": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 646294186 - }, - "m_dyeShopMods": { - "type": "class SharedPointer", - "id": 1, - "offset": 88, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2565828981 - }, - "m_sellMods": { - "type": "class SharedPointer", - "id": 2, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 789769746 - }, - "m_treasureMods": { - "type": "class SharedPointer", - "id": 3, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2392153009 - } - } - }, - "964426657": { - "name": "class MagicalSoccerGameComponent*", - "bases": [ - "HousingGameInterface", - "PropertyClass" - ], - "hash": 964426657, - "properties": {} - }, - "1740094415": { - "name": "class HousingMusicPlayerBehaviorBase*", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1740094415, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_playlist": { - "type": "unsigned int", - "id": 1, - "offset": 112, - "flags": 65567, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1986295487 - }, - "m_currentSelection": { - "type": "unsigned int", - "id": 2, - "offset": 128, - "flags": 65567, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 906571734 - }, - "m_playStyle": { - "type": "unsigned int", - "id": 3, - "offset": 132, - "flags": 65567, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 768737172 - } - } - }, - "1738392973": { - "name": "class PVP5thAgeLeagueTotals*", - "bases": [ - "PropertyClass" - ], - "hash": 1738392973, - "properties": { - "m_leagueID": { - "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 692361645 - }, - "m_elo": { - "type": "int", - "id": 1, - "offset": 76, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 267033754 - }, - "m_rank": { - "type": "int", - "id": 2, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 219803942 - }, - "m_wins": { - "type": "int", - "id": 3, - "offset": 84, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 219992347 - }, - "m_losses": { - "type": "int", - "id": 4, - "offset": 88, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 681549075 - } - } - }, - "180211958": { - "name": "class SharedPointer", - "bases": [ - "ConditionalSpellEffectRequirement", - "Requirement", - "PropertyClass" - ], - "hash": 180211958, - "properties": { - "m_applyNOT": { - "type": "bool", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1746328074, - "enum_options": { - "__DEFAULT": 0 - } - }, - "m_operator": { - "type": "enum Requirement::Operator", - "id": 1, - "offset": 76, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2672792317, - "enum_options": { - "ROP_AND": 0, - "ROP_OR": 1, - "__DEFAULT": "ROP_AND" - } - }, - "m_targetType": { - "type": "enum ConditionalSpellEffectRequirement::RequirementTarget", - "id": 2, - "offset": 80, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2547737902, - "enum_options": { - "RT_Caster": 0, - "RT_Target": 1 - } - }, - "m_fMinPercent": { - "type": "float", - "id": 3, - "offset": 88, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 262693330 - }, - "m_fMaxPercent": { - "type": "float", - "id": 4, - "offset": 92, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 643246740 - } - } - }, - "578293631": { - "name": "class SharedPointer", - "bases": [ - "GameObjectTemplate", - "CoreTemplate", - "PropertyClass" - ], - "hash": 578293631, - "properties": { - "m_behaviors": { - "type": "class BehaviorTemplate*", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1197808594 - }, - "m_objectName": { - "type": "std::string", - "id": 1, - "offset": 96, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2154940147 - }, - "m_templateID": { - "type": "unsigned int", - "id": 2, - "offset": 128, - "flags": 16777223, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1286746870 - }, - "m_visualID": { - "type": "unsigned int", - "id": 3, - "offset": 132, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1118778894 - }, - "m_adjectiveList": { - "type": "std::string", - "id": 4, - "offset": 248, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 3195213318 - }, - "m_exemptFromAOI": { - "type": "bool", - "id": 5, - "offset": 240, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1457879059 - }, - "m_displayName": { - "type": "std::string", - "id": 6, - "offset": 168, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2446900370 - }, - "m_description": { - "type": "std::string", - "id": 7, - "offset": 136, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1649374815 - }, - "m_nObjectType": { - "type": "enum ObjectType", - "id": 8, - "offset": 200, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2118905880, - "enum_options": { - "OT_UNDEFINED": 0, - "OT_PLAYER": 1, - "OT_NPC": 2, - "OT_PROP": 3, - "OT_OBJECT": 4, - "OT_HOUSE": 5, - "OT_KEY": 6, - "OT_OLD_KEY": 7, - "OT_DEED": 8, - "OT_MAIL": 9, - "OT_RECIPE": 17, - "OT_EQUIP_HEAD": 10, - "OT_EQUIP_CHEST": 11, - "OT_EQUIP_LEGS": 12, - "OT_EQUIP_HANDS": 13, - "OT_EQUIP_FINGER": 14, - "OT_EQUIP_FEET": 15, - "OT_EQUIP_EAR": 16, - "OT_BUILDING_BLOCK": 18, - "OT_BUILDING_BLOCK_SOLID": 19, - "OT_GOLF": 20, - "OT_DOOR": 21, - "OT_PET": 22, - "OT_FABRIC": 23, - "OT_WINDOW": 24, - "OT_ROOF": 25, - "OT_HORSE": 26, - "OT_STRUCTURE": 27, - "OT_HOUSING_TEXTURE": 28, - "OT_PLANT": 29 - } - }, - "m_sIcon": { - "type": "std::string", - "id": 9, - "offset": 208, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306259831 - }, - "m_equipRequirements": { - "type": "class RequirementList*", - "id": 10, - "offset": 280, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2762617226 - }, - "m_purchaseRequirements": { - "type": "class RequirementList*", - "id": 11, - "offset": 288, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3174641793 - }, - "m_equipEffects": { - "type": "class GameEffectInfo*", - "id": 12, - "offset": 296, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 836628351 - }, - "m_baseCost": { - "type": "float", - "id": 13, - "offset": 312, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1565352651 - }, - "m_creditsCost": { - "type": "float", - "id": 14, - "offset": 320, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 805514974 - }, - "m_avatarInfo": { - "type": "class AvatarItemInfoBase*", - "id": 15, - "offset": 328, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2627321299 - }, - "m_avatarFlags": { - "type": "std::string", - "id": 16, - "offset": 336, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2347762759 - }, - "m_itemLimit": { - "type": "int", - "id": 17, - "offset": 316, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1799746856 - }, - "m_holidayFlag": { - "type": "std::string", - "id": 18, - "offset": 352, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2994795359 - }, - "m_itemSetBonusTemplateID": { - "type": "unsigned int", - "id": 19, - "offset": 384, - "flags": 33554439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1316835672 - } - } - }, - "964510138": { - "name": "class TutorialInfo", - "bases": [ - "PropertyClass" - ], - "hash": 964510138, - "properties": { - "m_tutorialNameID": { - "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2228828719 - }, - "m_tutorialStage": { - "type": "int", - "id": 1, - "offset": 76, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 328120386 - } - } - }, - "2146780822": { - "name": "struct ControlTileMap::Tile", - "bases": [ - "PropertyClass" - ], - "hash": 2146780822, - "properties": { - "m_Color": { - "type": "class Color", - "id": 0, - "offset": 72, - "flags": 262279, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1753714077 - }, - "m_pMaterial": { - "type": "class SharedPointer", - "id": 1, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3479277078 - }, - "m_UV": { - "type": "class Rect", - "id": 2, - "offset": 96, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3810095225 - }, - "m_nNextTile": { - "type": "int", - "id": 3, - "offset": 112, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1012895541 - }, - "m_textComponent": { - "type": "class TextComponent", - "id": 4, - "offset": 120, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3491704390 - } - } - }, - "1738391693": { - "name": "class PVP5thAgeLeagueTotals", - "bases": [ - "PropertyClass" - ], - "hash": 1738391693, - "properties": { - "m_leagueID": { - "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 692361645 - }, - "m_elo": { - "type": "int", - "id": 1, - "offset": 76, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 267033754 - }, - "m_rank": { - "type": "int", - "id": 2, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 219803942 - }, - "m_wins": { - "type": "int", - "id": 3, - "offset": 84, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 219992347 - }, - "m_losses": { - "type": "int", - "id": 4, - "offset": 88, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 681549075 - } - } - }, - "179999879": { - "name": "class SharedPointer", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 179999879, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - }, - "m_dependentResourceList": { - "type": "class DependentResourceContainer", - "id": 1, - "offset": 120, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 893254530 - } - } - }, - "578437831": { - "name": "class SharedPointer", - "bases": [ - "CoreTemplate", - "PropertyClass" - ], - "hash": 578437831, - "properties": { - "m_behaviors": { - "type": "class BehaviorTemplate*", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1197808594 - }, - "m_goalName": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1521627807 - }, - "m_goalNameID": { - "type": "unsigned int", - "id": 2, - "offset": 496, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 403158846 - }, - "m_goalTitle": { - "type": "std::string", - "id": 3, - "offset": 136, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2291910240 - }, - "m_goalUnderway": { - "type": "std::string", - "id": 4, - "offset": 168, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3153144269 - }, - "m_hyperlink": { - "type": "std::string", - "id": 5, - "offset": 200, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2887798993 - }, - "m_completeText": { - "type": "std::string", - "id": 6, - "offset": 232, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2767458393 - }, - "m_completeResults": { - "type": "class ResultList*", - "id": 7, - "offset": 440, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1964258099 - }, - "m_goalRequirements": { - "type": "class RequirementList*", - "id": 8, - "offset": 448, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2979967145 - }, - "m_tallyCounter": { - "type": "class TallyCounterTemplate*", - "id": 9, - "offset": 456, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1884546193 - }, - "m_locationName": { - "type": "std::string", - "id": 10, - "offset": 272, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1824218389 - }, - "m_displayImage1": { - "type": "std::string", - "id": 11, - "offset": 304, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1959572133 - }, - "m_displayImage2": { - "type": "std::string", - "id": 12, - "offset": 336, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1959572134 - }, - "m_clientTags": { - "type": "std::string", - "id": 13, - "offset": 368, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2319030025 - }, - "m_genericEvents": { - "type": "std::string", - "id": 14, - "offset": 384, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 3466670829 - }, - "m_autoQualify": { - "type": "bool", - "id": 15, - "offset": 400, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1878907431 - }, - "m_autoComplete": { - "type": "bool", - "id": 16, - "offset": 401, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1302545445 - }, - "m_destinationZone": { - "type": "std::string", - "id": 17, - "offset": 408, - "flags": 268435463, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2605356153, - "enum_options": { - "__BASECLASS": "ZoneData" - } - }, - "m_dialogList": { - "type": "class ActorDialogListBase*", - "id": 18, - "offset": 264, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1909154969 - }, - "m_goalType": { - "type": "enum GoalTemplate::GOAL_TYPE", - "id": 19, - "offset": 96, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1488021149, - "enum_options": { - "GOAL_TYPE_UNKNOWN": 0, - "GOAL_TYPE_BOUNTY": 1, - "GOAL_TYPE_BOUNTYCOLLECT": 2, - "GOAL_TYPE_SCAVENGE": 3, - "GOAL_TYPE_PERSONA": 4, - "GOAL_TYPE_WAYPOINT": 5, - "GOAL_TYPE_SCAVENGEFAKE": 6, - "GOAL_TYPE_ACHIEVERANK": 7, - "GOAL_TYPE_USAGE": 8, - "GOAL_TYPE_COMPLETEQUEST": 9, - "GOAL_TYPE_SOCIARANK": 10, - "GOAL_TYPE_SOCIACURRENCY": 11, - "GOAL_TYPE_SOCIAMINIGAME": 12, - "GOAL_TYPE_SOCIAGIVEITEM": 13, - "GOAL_TYPE_SOCIAGETITEM": 14, - "GOAL_TYPE_COLLECTAFTERBOUNTY": 15, - "GOAL_TYPE_ENCOUNTER_WAYPOINT_FOREACH": 16 - } - }, - "m_noQuestHelper": { - "type": "bool", - "id": 20, - "offset": 500, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 578010882, - "enum_options": { - "__DEFAULT": 0 - } - }, - "m_petOnlyQuest": { - "type": "bool", - "id": 21, - "offset": 501, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 679359344, - "enum_options": { - "__DEFAULT": 0 - } - }, - "m_activateResults": { - "type": "class ResultList*", - "id": 22, - "offset": 504, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3790153995 - }, - "m_hideGoalFloatyText": { - "type": "bool", - "id": 23, - "offset": 512, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1919383204, - "enum_options": { - "__DEFAULT": 0 - } - } - } - }, - "970892637": { - "name": "class SpellData", - "bases": [ - "PropertyClass" - ], - "hash": 970892637, - "properties": { - "m_templateID": { - "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1286746870 - }, - "m_enchantment": { - "type": "unsigned int", - "id": 1, - "offset": 76, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2217886818 - }, - "m_quantity": { - "type": "unsigned int", - "id": 2, - "offset": 80, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 380617740 - } - } - }, - "2147332134": { - "name": "class SchoolPipSelector", - "bases": [ - "Window", - "PropertyClass" - ], - "hash": 2147332134, - "properties": { - "m_sName": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306437263 - }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621225959 - }, - "m_Style": { - "type": "unsigned int", - "id": 2, - "offset": 152, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "SCALE_CHILDREN": 2, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "FOCUS_LOCKED": 64, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152 - } - }, - "m_Flags": { - "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } - }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3105139380 - }, - "m_fTargetAlpha": { - "type": "float", - "id": 5, - "offset": 212, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1809129834 - }, - "m_fDisabledAlpha": { - "type": "float", - "id": 6, - "offset": 216, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1389987675 - }, - "m_fAlpha": { - "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 482130755 - }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3623628394 - }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2102211316 - }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1846695875 - }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3389835433 - }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2547159940 - }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2587533771 - }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3091503757 - } - } - }, - "1739828921": { - "name": "class SharedPointer", - "bases": [ - "Window", - "PropertyClass" - ], - "hash": 1739828921, - "properties": { - "m_sName": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306437263 - }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621225959 - }, - "m_Style": { - "type": "unsigned int", - "id": 2, - "offset": 152, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "SCALE_CHILDREN": 2, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "FOCUS_LOCKED": 64, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152 - } - }, - "m_Flags": { - "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } - }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3105139380 - }, - "m_fTargetAlpha": { - "type": "float", - "id": 5, - "offset": 212, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1809129834 - }, - "m_fDisabledAlpha": { - "type": "float", - "id": 6, - "offset": 216, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1389987675 - }, - "m_fAlpha": { - "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 482130755 - }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3623628394 - }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2102211316 - }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1846695875 - }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3389835433 - }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2547159940 - }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2587533771 - }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3091503757 - } - } - }, - "578437014": { - "name": "class ControlComboBox", - "bases": [ - "Window", - "PropertyClass" - ], - "hash": 578437014, - "properties": { - "m_sName": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306437263 - }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621225959 - }, - "m_Style": { - "type": "unsigned int", - "id": 2, - "offset": 152, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152, - "CBF_SORTED": 16777216 - } - }, - "m_Flags": { - "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } - }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3105139380 - }, - "m_fTargetAlpha": { - "type": "float", - "id": 5, - "offset": 212, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1809129834 - }, - "m_fDisabledAlpha": { - "type": "float", - "id": 6, - "offset": 216, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1389987675 - }, - "m_fAlpha": { - "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 482130755 - }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3623628394 - }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2102211316 - }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1846695875 - }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3389835433 - }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2547159940 - }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2587533771 - }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3091503757 - }, - "m_Items": { - "type": "class ComboItem", - "id": 16, - "offset": 584, - "flags": 135, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2627949239 - }, - "m_nSelected": { - "type": "int", - "id": 17, - "offset": 608, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1017366545 - }, - "m_nExpandedSize": { - "type": "int", - "id": 18, - "offset": 612, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1542607084 - }, - "m_nButtonSize": { - "type": "int", - "id": 19, - "offset": 616, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1917634655 - }, - "m_pButtonMaterial": { - "type": "class SharedPointer", - "id": 20, - "offset": 624, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2439977842 - }, - "m_buttonStyle": { - "type": "class SharedPointer", - "id": 21, - "offset": 736, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1791389598 - } - } - }, - "969402988": { - "name": "class PlayerHasBadge*", - "bases": [ - "PropertyClass" - ], - "hash": 969402988, - "properties": { - "m_sBadgeName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1846044066 - }, - "m_hasBadge": { - "type": "bool", - "id": 1, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1597294914 - } - } - }, - "180332765": { - "name": "class SpawnCreatureCinematicAction*", - "bases": [ - "QueuedCombatCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 180332765, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - } - } - }, - "966497934": { - "name": "class SharedPointer", - "bases": [ - "RenderBehaviorTemplate", - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 966497934, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - }, - "m_assetName": { - "type": "std::string", - "id": 1, - "offset": 120, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513131580 - }, - "m_proxyName": { - "type": "std::string", - "id": 2, - "offset": 152, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3120358366 - }, - "m_height": { - "type": "float", - "id": 3, - "offset": 184, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 602977104 - }, - "m_bStaticObject": { - "type": "bool", - "id": 4, - "offset": 188, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 108091444 - }, - "m_bCastsShadow": { - "type": "bool", - "id": 5, - "offset": 189, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 652868121 - }, - "m_bFadesIn": { - "type": "bool", - "id": 6, - "offset": 190, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 263337711, - "enum_options": { - "__DEFAULT": 1 - } - }, - "m_opacity": { - "type": "float", - "id": 7, - "offset": 192, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 700308464, - "enum_options": { - "__DEFAULT": 1 - } - }, - "m_bFadesOut": { - "type": "bool", - "id": 8, - "offset": 196, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 17988464, - "enum_options": { - "__DEFAULT": 1 - } - }, - "m_bPortalExcluded": { - "type": "bool", - "id": 9, - "offset": 197, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 239086293 - }, - "m_scale": { - "type": "float", - "id": 10, - "offset": 200, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 899693439, - "enum_options": { - "__DEFAULT": 1 - } - }, - "m_bCanBeHiddenByCamera": { - "type": "bool", - "id": 11, - "offset": 204, - "flags": 263, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 185252414 - }, - "m_nLightType": { - "type": "enum RenderBehaviorTemplate::LightingType", - "id": 12, - "offset": 208, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2027385184, - "enum_options": { - "None": 0, - "Char": 1, - "Env": 2 - } - }, - "m_shadowAssetName": { - "type": "std::string", - "id": 13, - "offset": 216, - "flags": 131335, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1844059970 - }, - "m_enableReqs": { - "type": "class SharedPointer", - "id": 14, - "offset": 248, - "flags": 263, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3158020443 - }, - "m_skeletonID": { - "type": "int", - "id": 15, - "offset": 264, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1375865996 - }, - "m_dataLookupAssetName": { - "type": "std::string", - "id": 16, - "offset": 272, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1944770480 - }, - "m_animationAssetName": { - "type": "std::string", - "id": 17, - "offset": 304, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2944957756 - }, - "m_movementScale": { - "type": "float", - "id": 18, - "offset": 336, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 768663914 - }, - "m_idleAnimationName": { - "type": "std::string", - "id": 19, - "offset": 344, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1616739386 - }, - "m_animationEventList": { - "type": "class SharedPointer", - "id": 20, - "offset": 376, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2858101335 - } - } - }, - "966024816": { - "name": "class WhirlyBurlyScoreUpdateData*", - "bases": [ - "PropertyClass" - ], - "hash": 966024816, - "properties": { - "m_blueTeamScore": { - "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1519259416 - }, - "m_orangeTeamScore": { - "type": "unsigned int", - "id": 1, - "offset": 76, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 988508012 - }, - "m_redTeamScore": { - "type": "unsigned int", - "id": 2, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1672048811 - }, - "m_passport": { - "type": "unsigned int", - "id": 3, - "offset": 84, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1362521513 - }, - "m_gameState": { - "type": "std::string", - "id": 4, - "offset": 88, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2824634006 - } - } - }, - "1740693570": { - "name": "class GraphicalEventCurrency1", - "bases": [ - "GraphicalSpell", - "Spell", - "PropertyClass" - ], - "hash": 1740693570, - "properties": { - "m_templateID": { - "type": "unsigned int", - "id": 0, - "offset": 128, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1286746870 - }, - "m_enchantment": { - "type": "unsigned int", - "id": 1, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2217886818 - }, - "m_pipCost": { - "type": "class SharedPointer", - "id": 2, - "offset": 176, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3605704820 - }, - "m_regularAdjust": { - "type": "int", - "id": 3, - "offset": 192, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1420453335 - }, - "m_magicSchoolID": { - "type": "unsigned int", - "id": 4, - "offset": 136, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 893146499 - }, - "m_accuracy": { - "type": "unsigned char", - "id": 5, - "offset": 132, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2273914939 - }, - "m_treasureCard": { - "type": "bool", - "id": 6, - "offset": 197, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1764879128 - }, - "m_battleCard": { - "type": "bool", - "id": 7, - "offset": 198, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1332843753 - }, - "m_itemCard": { - "type": "bool", - "id": 8, - "offset": 199, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1683654300 - }, - "m_sideBoard": { - "type": "bool", - "id": 9, - "offset": 200, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1897838368 - }, - "m_spellID": { - "type": "unsigned int", - "id": 10, - "offset": 204, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1697483258 - }, - "m_leavesPlayWhenCastOverride": { - "type": "bool", - "id": 11, - "offset": 216, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 874407398 - }, - "m_cloaked": { - "type": "bool", - "id": 12, - "offset": 196, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 7349510 - }, - "m_enchantmentSpellIsItemCard": { - "type": "bool", - "id": 13, - "offset": 76, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 531590701 - }, - "m_premutationSpellID": { - "type": "unsigned int", - "id": 14, - "offset": 112, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1530256370 - }, - "m_enchantedThisCombat": { - "type": "bool", - "id": 15, - "offset": 77, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1895738923 - }, - "m_paramOverrides": { - "type": "class SharedPointer", - "id": 16, - "offset": 224, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2061635599 - }, - "m_subEffectMeta": { - "type": "class SharedPointer", - "id": 17, - "offset": 240, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1944101106 - }, - "m_delayEnchantment": { - "type": "bool", - "id": 18, - "offset": 257, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 191336919 - }, - "m_PvE": { - "type": "bool", - "id": 19, - "offset": 264, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 269492350 - }, - "m_delayEnchantmentOrder": { - "type": "enum SpellEffect::kDelayOrder", - "id": 20, - "offset": 72, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2526055263, - "enum_options": { - "SpellEffect::kAnyOrder": 0, - "SpellEffect::kFirst": 1, - "SpellEffect::kSecond": 2 - } - }, - "m_roundAddedTC": { - "type": "int", - "id": 21, - "offset": 260, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 112365451 - }, - "m_secondarySchoolID": { - "type": "unsigned int", - "id": 22, - "offset": 304, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2081206026 - } - } - }, - "578480682": { - "name": "class PromoGiftList", - "bases": [ - "PropertyClass" - ], - "hash": 578480682, - "properties": { - "m_promoGifts": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 885904406 - } - } - }, - "965649875": { - "name": "class AdvPvpLeaderboardFields*", - "bases": [ - "PropertyClass" - ], - "hash": 965649875, - "properties": { - "m_leagueID": { - "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 692361645 - }, - "m_seasonID": { - "type": "unsigned int", - "id": 1, - "offset": 76, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 535260643 - }, - "m_startTime": { - "type": "unsigned int", - "id": 2, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1598371274 - }, - "m_characterID": { - "type": "gid", - "id": 3, - "offset": 88, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 210498386 - }, - "m_characterSchool": { - "type": "unsigned int", - "id": 4, - "offset": 96, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1330015234 - }, - "m_nameKeys": { - "type": "unsigned int", - "id": 5, - "offset": 100, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1772225898 - }, - "m_level": { - "type": "int", - "id": 6, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 801285362 - }, - "m_wins": { - "type": "int", - "id": 7, - "offset": 108, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 219992347 - }, - "m_score": { - "type": "int", - "id": 8, - "offset": 112, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 809507734 - }, - "m_rank": { - "type": "int", - "id": 9, - "offset": 116, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 219803942 - }, - "m_visualBlob": { - "type": "std::string", - "id": 10, - "offset": 120, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1691722510 - }, - "m_oldScore": { - "type": "int", - "id": 11, - "offset": 152, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 30663605 - } - } - }, - "1740689474": { - "name": "class GraphicalEventCurrency2", - "bases": [ - "GraphicalSpell", - "Spell", - "PropertyClass" - ], - "hash": 1740689474, - "properties": { - "m_templateID": { - "type": "unsigned int", - "id": 0, - "offset": 128, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1286746870 - }, - "m_enchantment": { - "type": "unsigned int", - "id": 1, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2217886818 - }, - "m_pipCost": { - "type": "class SharedPointer", - "id": 2, - "offset": 176, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3605704820 - }, - "m_regularAdjust": { - "type": "int", - "id": 3, - "offset": 192, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1420453335 - }, - "m_magicSchoolID": { - "type": "unsigned int", - "id": 4, - "offset": 136, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 893146499 - }, - "m_accuracy": { - "type": "unsigned char", - "id": 5, - "offset": 132, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2273914939 - }, - "m_treasureCard": { - "type": "bool", - "id": 6, - "offset": 197, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1764879128 - }, - "m_battleCard": { - "type": "bool", - "id": 7, - "offset": 198, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1332843753 - }, - "m_itemCard": { - "type": "bool", - "id": 8, - "offset": 199, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1683654300 - }, - "m_sideBoard": { - "type": "bool", - "id": 9, - "offset": 200, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1897838368 - }, - "m_spellID": { - "type": "unsigned int", - "id": 10, - "offset": 204, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1697483258 - }, - "m_leavesPlayWhenCastOverride": { - "type": "bool", - "id": 11, - "offset": 216, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 874407398 - }, - "m_cloaked": { - "type": "bool", - "id": 12, - "offset": 196, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 7349510 - }, - "m_enchantmentSpellIsItemCard": { - "type": "bool", - "id": 13, - "offset": 76, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 531590701 - }, - "m_premutationSpellID": { - "type": "unsigned int", - "id": 14, - "offset": 112, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1530256370 - }, - "m_enchantedThisCombat": { - "type": "bool", - "id": 15, - "offset": 77, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1895738923 - }, - "m_paramOverrides": { - "type": "class SharedPointer", - "id": 16, - "offset": 224, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2061635599 - }, - "m_subEffectMeta": { - "type": "class SharedPointer", - "id": 17, - "offset": 240, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1944101106 - }, - "m_delayEnchantment": { - "type": "bool", - "id": 18, - "offset": 257, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 191336919 - }, - "m_PvE": { - "type": "bool", - "id": 19, - "offset": 264, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 269492350 - }, - "m_delayEnchantmentOrder": { - "type": "enum SpellEffect::kDelayOrder", - "id": 20, - "offset": 72, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2526055263, - "enum_options": { - "SpellEffect::kAnyOrder": 0, - "SpellEffect::kFirst": 1, - "SpellEffect::kSecond": 2 - } - }, - "m_roundAddedTC": { - "type": "int", - "id": 21, - "offset": 260, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 112365451 - }, - "m_secondarySchoolID": { - "type": "unsigned int", - "id": 22, - "offset": 304, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2081206026 - } - } - }, - "181991427": { - "name": "class FishingXPLootInfo*", - "bases": [ - "LootInfo", - "LootInfoBase", - "PropertyClass" - ], - "hash": 181991427, - "properties": { - "m_lootType": { - "type": "enum LootInfo::LOOT_TYPE", - "id": 0, - "offset": 72, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1591891442, - "enum_options": { - "LOOT_TYPE_NONE": 0, - "LOOT_TYPE_GOLD": 1, - "LOOT_TYPE_MANA": 2, - "LOOT_TYPE_ITEM": 3, - "LOOT_TYPE_TREASURE_CARD": 4, - "LOOT_TYPE_MAGIC_XP": 5, - "LOOT_TYPE_ADD_SPELL": 6, - "LOOT_TYPE_MAX_HEALTH": 7, - "LOOT_TYPE_MAX_GOLD": 8, - "LOOT_TYPE_MAX_MANA": 9, - "LOOT_TYPE_MAX_POTION": 10, - "LOOT_TYPE_TRAINING_POINTS": 11, - "LOOT_TYPE_RECIPE": 12, - "LOOT_TYPE_CRAFTING_SLOT": 13, - "LOOT_TYPE_REAGENT": 14, - "LOOT_TYPE_PETSNACK": 15, - "LOOT_TYPE_GARDENING_XP": 16, - "LOOT_TYPE_PET_XP": 17, - "LOOT_TYPE_TREASURE_TABLE": 18, - "LOOT_TYPE_ARENA_POINTS": 19, - "LOOT_TYPE_ARENA_BONUS_POINTS": 20, - "LOOT_TYPE_GROUP": 21, - "LOOT_TYPE_FISHING_XP": 22, - "LOOT_TYPE_EVENT_CURRENCY_1": 24, - "LOOT_TYPE_EVENT_CURRENCY_2": 25, - "LOOT_TYPE_PVP_CURRENCY": 26, - "LOOT_TYPE_PVP_CURRENCY_BONUS": 27, - "LOOT_TYPE_PVP_TOURNEY_CURRENCY": 28, - "LOOT_TYPE_PVP_TOURNEY_CURRENCY_BONUS": 29, - "LOOT_TYPE_FURNITURE_ESSENCE": 30 - } - }, - "m_experience": { - "type": "int", - "id": 1, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 759357570 - } - } - }, - "181655478": { - "name": "class SharedPointer", - "bases": [ - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 181655478, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - } - } - }, - "578842005": { - "name": "class RemoveInterceptCinematicAction", - "bases": [ - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 578842005, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - } - } - }, - "966436307": { - "name": "class AdvPvpLeaderboardFields", - "bases": [ - "PropertyClass" - ], - "hash": 966436307, - "properties": { - "m_leagueID": { - "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 692361645 - }, - "m_seasonID": { - "type": "unsigned int", - "id": 1, - "offset": 76, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 535260643 - }, - "m_startTime": { - "type": "unsigned int", - "id": 2, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1598371274 - }, - "m_characterID": { - "type": "gid", - "id": 3, - "offset": 88, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 210498386 - }, - "m_characterSchool": { - "type": "unsigned int", - "id": 4, - "offset": 96, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1330015234 - }, - "m_nameKeys": { - "type": "unsigned int", - "id": 5, - "offset": 100, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1772225898 - }, - "m_level": { - "type": "int", - "id": 6, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 801285362 - }, - "m_wins": { - "type": "int", - "id": 7, - "offset": 108, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 219992347 - }, - "m_score": { - "type": "int", - "id": 8, - "offset": 112, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 809507734 - }, - "m_rank": { - "type": "int", - "id": 9, - "offset": 116, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 219803942 - }, - "m_visualBlob": { - "type": "std::string", - "id": 10, - "offset": 120, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1691722510 - }, - "m_oldScore": { - "type": "int", - "id": 11, - "offset": 152, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 30663605 - } - } - }, - "1740846621": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1740846621, - "properties": {} - }, - "181983076": { - "name": "struct std::pair", - "bases": [], - "hash": 181983076, - "properties": {} - }, - "966024826": { - "name": "class WhirlyBurlyScoreUpdateData", - "bases": [ - "PropertyClass" - ], - "hash": 966024826, - "properties": { - "m_blueTeamScore": { - "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1519259416 - }, - "m_orangeTeamScore": { - "type": "unsigned int", - "id": 1, - "offset": 76, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 988508012 - }, - "m_redTeamScore": { - "type": "unsigned int", - "id": 2, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1672048811 - }, - "m_passport": { - "type": "unsigned int", - "id": 3, - "offset": 84, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1362521513 - }, - "m_gameState": { - "type": "std::string", - "id": 4, - "offset": 88, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2824634006 - } - } - }, - "580030335": { - "name": "class WizClientObjectItem*", - "bases": [ - "ClientObject", - "CoreObject", - "PropertyClass" - ], - "hash": 580030335, - "properties": { - "m_inactiveBehaviors": { - "type": "class SharedPointer", - "id": 0, - "offset": 224, - "flags": 31, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1850812559 - }, - "m_globalID.m_full": { - "type": "unsigned __int64", - "id": 1, - "offset": 72, - "flags": 16777247, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2312465444 - }, - "m_permID": { - "type": "unsigned __int64", - "id": 2, - "offset": 80, - "flags": 16777247, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1298909658 - }, - "m_location": { - "type": "class Vector3D", - "id": 3, - "offset": 168, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2239683611 - }, - "m_orientation": { - "type": "class Vector3D", - "id": 4, - "offset": 180, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2344058766 - }, - "m_fScale": { - "type": "float", - "id": 5, - "offset": 196, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 503137701 - }, - "m_templateID.m_full": { - "type": "unsigned __int64", - "id": 6, - "offset": 96, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 633907631 - }, - "m_debugName": { - "type": "std::string", - "id": 7, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3553984419 - }, - "m_displayKey": { - "type": "std::string", - "id": 8, - "offset": 136, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3023276954 - }, - "m_zoneTagID": { - "type": "unsigned int", - "id": 9, - "offset": 344, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 965291410 - }, - "m_speedMultiplier": { - "type": "short", - "id": 10, - "offset": 192, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 123130076 - }, - "m_nMobileID": { - "type": "unsigned short", - "id": 11, - "offset": 194, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1054318939 - }, - "m_characterId": { - "type": "gid", - "id": 12, - "offset": 440, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 210498418 - }, - "m_primaryColor": { - "type": "int", - "id": 13, - "offset": 560, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 900965981 - }, - "m_pattern": { - "type": "int", - "id": 14, - "offset": 564, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1337683384 - }, - "m_secondaryColor": { - "type": "int", - "id": 15, - "offset": 568, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1616550081 - }, - "m_displayID": { - "type": "gid", - "id": 16, - "offset": 576, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1022427803 - }, - "m_itemFlags": { - "type": "unsigned int", - "id": 17, - "offset": 584, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2004128457 - } - } - }, - "1744038418": { - "name": "class WinAnimMoveToLocationTimeEase", - "bases": [ - "WinAnimMoveToLocationTime", - "WinAnimMoveToLocation", - "WindowAnimation", - "PropertyClass" - ], - "hash": 1744038418, - "properties": { - "m_bUseDeepCopy": { - "type": "bool", - "id": 0, - "offset": 72, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 433380635 - }, - "m_targetLocation": { - "type": "class Vector3D", - "id": 1, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2653859938 - }, - "m_fTimeRemaining": { - "type": "float", - "id": 2, - "offset": 100, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1591443014 - }, - "m_fTimeTotal": { - "type": "float", - "id": 3, - "offset": 96, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 661225456 - }, - "m_fEaseInPercent": { - "type": "float", - "id": 4, - "offset": 120, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1482967843 - }, - "m_fEaseOutPercent": { - "type": "float", - "id": 5, - "offset": 124, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1272154212 - }, - "m_fTotalDistance": { - "type": "float", - "id": 6, - "offset": 128, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1894338732 - } - } - }, - "183660688": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 183660688, - "properties": { - "m_waterX": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1185657746 - }, - "m_waterY": { - "type": "float", - "id": 1, - "offset": 76, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1185657747 - }, - "m_secondsToRespawn": { - "type": "unsigned int", - "id": 2, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1001169759 - }, - "m_numberOfFish": { - "type": "int", - "id": 3, - "offset": 84, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1143336898 - }, - "m_zoneFishList": { - "type": "class SharedPointer", - "id": 4, - "offset": 96, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2647022847 - }, - "m_waterType": { - "type": "int", - "id": 5, - "offset": 88, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 869659615 - } - } - }, - "1742004290": { - "name": "class GraphicalEventCurrency1*", - "bases": [ - "GraphicalSpell", - "Spell", - "PropertyClass" - ], - "hash": 1742004290, - "properties": { - "m_templateID": { - "type": "unsigned int", - "id": 0, - "offset": 128, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1286746870 - }, - "m_enchantment": { - "type": "unsigned int", - "id": 1, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2217886818 - }, - "m_pipCost": { - "type": "class SharedPointer", - "id": 2, - "offset": 176, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3605704820 - }, - "m_regularAdjust": { - "type": "int", - "id": 3, - "offset": 192, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1420453335 - }, - "m_magicSchoolID": { - "type": "unsigned int", - "id": 4, - "offset": 136, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 893146499 - }, - "m_accuracy": { - "type": "unsigned char", - "id": 5, - "offset": 132, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2273914939 - }, - "m_treasureCard": { - "type": "bool", - "id": 6, - "offset": 197, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1764879128 - }, - "m_battleCard": { - "type": "bool", - "id": 7, - "offset": 198, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1332843753 - }, - "m_itemCard": { - "type": "bool", - "id": 8, - "offset": 199, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1683654300 - }, - "m_sideBoard": { - "type": "bool", - "id": 9, - "offset": 200, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1897838368 - }, - "m_spellID": { - "type": "unsigned int", - "id": 10, - "offset": 204, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1697483258 - }, - "m_leavesPlayWhenCastOverride": { - "type": "bool", - "id": 11, - "offset": 216, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 874407398 - }, - "m_cloaked": { - "type": "bool", - "id": 12, - "offset": 196, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 7349510 - }, - "m_enchantmentSpellIsItemCard": { - "type": "bool", - "id": 13, - "offset": 76, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 531590701 - }, - "m_premutationSpellID": { - "type": "unsigned int", - "id": 14, - "offset": 112, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1530256370 - }, - "m_enchantedThisCombat": { - "type": "bool", - "id": 15, - "offset": 77, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1895738923 - }, - "m_paramOverrides": { - "type": "class SharedPointer", - "id": 16, - "offset": 224, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2061635599 - }, - "m_subEffectMeta": { - "type": "class SharedPointer", - "id": 17, - "offset": 240, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1944101106 - }, - "m_delayEnchantment": { - "type": "bool", - "id": 18, - "offset": 257, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 191336919 - }, - "m_PvE": { - "type": "bool", - "id": 19, - "offset": 264, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 269492350 - }, - "m_delayEnchantmentOrder": { - "type": "enum SpellEffect::kDelayOrder", - "id": 20, - "offset": 72, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2526055263, - "enum_options": { - "SpellEffect::kAnyOrder": 0, - "SpellEffect::kFirst": 1, - "SpellEffect::kSecond": 2 - } - }, - "m_roundAddedTC": { - "type": "int", - "id": 21, - "offset": 260, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 112365451 - }, - "m_secondarySchoolID": { - "type": "unsigned int", - "id": 22, - "offset": 304, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2081206026 - } - } - }, - "182158083": { - "name": "class SharedPointer", - "bases": [ - "LoyaltyStoreOption", - "ServiceOptionBase", - "PropertyClass" - ], - "hash": 182158083, - "properties": { - "m_serviceName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2206028813 - }, - "m_iconKey": { - "type": "std::string", - "id": 1, - "offset": 168, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2457138637 - }, - "m_displayKey": { - "type": "std::string", - "id": 2, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3023276954 - }, - "m_serviceIndex": { - "type": "unsigned int", - "id": 3, - "offset": 204, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2103126710 - }, - "m_forceInteract": { - "type": "bool", - "id": 4, - "offset": 200, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1705789564 - } - } - }, - "583846831": { - "name": "class ControlList*", - "bases": [ - "ControlText", - "Window", - "PropertyClass" - ], - "hash": 583846831, - "properties": { - "m_sName": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306437263 - }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621225959 - }, - "m_Style": { - "type": "unsigned int", - "id": 2, - "offset": 152, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152, - "ITEM_HEIGHT": 16777216, - "COLUMN_CENTER": 33554432, - "VERTICAL_CENTER": 67108864, - "DO_NOT_WRAP": 134217728, - "IGNORE_KEYBOARD": 536870912 - } - }, - "m_Flags": { - "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } - }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3105139380 - }, - "m_fTargetAlpha": { - "type": "float", - "id": 5, - "offset": 212, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1809129834 - }, - "m_fDisabledAlpha": { - "type": "float", - "id": 6, - "offset": 216, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1389987675 - }, - "m_fAlpha": { - "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 482130755 - }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3623628394 - }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2102211316 - }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1846695875 - }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3389835433 - }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2547159940 - }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2587533771 - }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3091503757 - }, - "m_sText": { - "type": "std::wstring", - "id": 16, - "offset": 584, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2102642960 - }, - "m_sTooltip": { - "type": "std::wstring", - "id": 17, - "offset": 616, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1680475798 - }, - "m_bUseDropShadow": { - "type": "bool", - "id": 18, - "offset": 653, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 93063037 - }, - "m_bUseOutline": { - "type": "bool", - "id": 19, - "offset": 654, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 744292994 - }, - "m_bEnableWordWrap": { - "type": "bool", - "id": 20, - "offset": 655, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 430904562 - }, - "m_bEnableToggle": { - "type": "bool", - "id": 21, - "offset": 652, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1937994142 - }, - "m_nLeadingAdjust": { - "type": "int", - "id": 22, - "offset": 656, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1559480167 - }, - "m_TextColor": { - "type": "class Color", - "id": 23, - "offset": 696, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2267136674 - }, - "m_SelectColor": { - "type": "class Color", - "id": 24, - "offset": 700, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2792529213 - }, - "m_HighlightColor": { - "type": "class Color", - "id": 25, - "offset": 704, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1047198101 - }, - "m_bSortEnable": { - "type": "bool", - "id": 26, - "offset": 784, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 24009764 - }, - "m_nSortByColumn": { - "type": "int", - "id": 27, - "offset": 788, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1829537401 - }, - "m_bSortAscending": { - "type": "bool", - "id": 28, - "offset": 792, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1369222793 - }, - "m_nHighlighted": { - "type": "int", - "id": 29, - "offset": 796, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1020338345 - }, - "m_nSelected": { - "type": "int", - "id": 30, - "offset": 800, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1017366545 - }, - "m_bListInvalid": { - "type": "bool", - "id": 31, - "offset": 804, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 376155128 - }, - "m_bSortInvalid": { - "type": "bool", - "id": 32, - "offset": 805, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1605867140 - }, - "m_pScrollWin": { - "type": "class SharedPointer", - "id": 33, - "offset": 808, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3263557131 - }, - "m_itemHeight": { - "type": "int", - "id": 34, - "offset": 824, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1245325666 - }, - "m_itemNormalState": { - "type": "class ControlList::ListItemState*", - "id": 35, - "offset": 832, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2253036141 - }, - "m_itemHighlightedState": { - "type": "class ControlList::ListItemState*", - "id": 36, - "offset": 840, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2949959141 - }, - "m_itemSelectedState": { - "type": "class ControlList::ListItemState*", - "id": 37, - "offset": 848, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2463527405 - }, - "m_itemDisabledState": { - "type": "class ControlList::ListItemState*", - "id": 38, - "offset": 856, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 4008046876 - } - } - }, - "967376213": { - "name": "class FXBySlotEffectTemplate*", - "bases": [ - "GameEffectTemplate", - "PropertyClass" - ], - "hash": 967376213, - "properties": { - "m_effectName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2029161513 - }, - "m_effectCategory": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1852673222 - }, - "m_sortOrder": { - "type": "int", - "id": 2, - "offset": 148, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1411218206 - }, - "m_duration": { - "type": "double", - "id": 3, - "offset": 192, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2727932435 - }, - "m_stackingCategories": { - "type": "std::string", - "id": 4, - "offset": 160, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1774497525 - }, - "m_isPersistent": { - "type": "bool", - "id": 5, - "offset": 153, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 923861920 - }, - "m_bIsOnPet": { - "type": "bool", - "id": 6, - "offset": 154, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 522593303 - }, - "m_isPublic": { - "type": "bool", - "id": 7, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1728439822 - }, - "m_visualEffectAddName": { - "type": "std::string", - "id": 8, - "offset": 200, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3382086694 - }, - "m_visualEffectRemoveName": { - "type": "std::string", - "id": 9, - "offset": 232, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1541697323 - }, - "m_onAddFunctorName": { - "type": "std::string", - "id": 10, - "offset": 280, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1561843107 - }, - "m_onRemoveFunctorName": { - "type": "std::string", - "id": 11, - "offset": 312, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2559017864 - }, - "m_stackingRule": { - "type": "enum STACKING_RULE", - "id": 12, - "offset": 144, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 431568889, - "enum_options": { - "STACKING_ALLOWED": 0, - "STACKING_NOSTACK": 1, - "STACKING_REPLACE": 2 - } - }, - "m_fxList": { - "type": "class SharedPointer", - "id": 13, - "offset": 360, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 549626493 - } - } - }, - "1741861439": { - "name": "class LinearStateSoundBehaviorTemplate", - "bases": [ - "LinearSoundBehaviorTemplate", - "PositionalSoundBehaviorTemplate", - "SoundBehaviorTemplate", - "AreaBehaviorTemplate", - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 1741861439, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - }, - "m_radius": { - "type": "float", - "id": 1, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 989410271 - }, - "m_category": { - "type": "enum AudioCategory", - "id": 2, - "offset": 124, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2951251982, - "enum_options": { - "AudioCategory_Irrelevent": 0, - "AudioCategory_Accoustic": 1, - "AudioCategory_Noise": 2, - "AudioCategory_Music": 3, - "AudioCategory_MusicAtSFXVolume": 4, - "AudioCategory_Dialog": 5, - "AudioCategory_UI": 6, - "AudioCategory_NoiseAtMusicVolume": 7 - } - }, - "m_exclusive": { - "type": "bool", - "id": 3, - "offset": 128, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 824383403 - }, - "m_active": { - "type": "bool", - "id": 4, - "offset": 129, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 239335471 - }, - "m_enableReqs": { - "type": "class SharedPointer", - "id": 5, - "offset": 136, - "flags": 263, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3158020443 - }, - "m_trackFilenameList": { - "type": "std::string", - "id": 6, - "offset": 152, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2531081709 - }, - "m_playList": { - "type": "class PlayListEntry*", - "id": 7, - "offset": 176, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 3907873161 - }, - "m_priority": { - "type": "int", - "id": 8, - "offset": 208, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1235205852 - }, - "m_volume": { - "type": "float", - "id": 9, - "offset": 200, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1162855023 - }, - "m_loopCount": { - "type": "int", - "id": 10, - "offset": 204, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 865634717 - }, - "m_progression": { - "type": "enum PlayList::Progression", - "id": 11, - "offset": 220, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3279400238, - "enum_options": { - "Sequence": 0, - "Random": 1, - "SequenceOnceOnly": 2, - "RandomNoRepeat": 3 - } - }, - "m_progressMin": { - "type": "float", - "id": 12, - "offset": 212, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1497550192 - }, - "m_progressMax": { - "type": "float", - "id": 13, - "offset": 216, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1497549938 - }, - "m_audioFilterSet": { - "type": "unsigned int", - "id": 14, - "offset": 224, - "flags": 33554439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 831339825 - }, - "m_animationNameFilter": { - "type": "std::string", - "id": 15, - "offset": 232, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2292854242 - }, - "m_functionallabel": { - "type": "std::string", - "id": 16, - "offset": 264, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3589331278 - }, - "m_innerRadius": { - "type": "float", - "id": 17, - "offset": 296, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 686816091 - }, - "m_inverted": { - "type": "bool", - "id": 18, - "offset": 300, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1034821044 - }, - "m_fRangeScale": { - "type": "float", - "id": 19, - "offset": 304, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1749294034 - }, - "m_fAttenuationFactor": { - "type": "float", - "id": 20, - "offset": 308, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 273292776 - }, - "m_eAttenuationType": { - "type": "enum PositionInfoAttenuationType", - "id": 21, - "offset": 312, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2427193304, - "enum_options": { - "Standard": 0, - "Unit Range Power": 1 - } - }, - "m_vPositions": { - "type": "class Vector3D", - "id": 22, - "offset": 320, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 3599600160 - } - } - }, - "582722789": { - "name": "class FishSellingOption*", - "bases": [ - "ServiceOptionBase", - "PropertyClass" - ], - "hash": 582722789, - "properties": { - "m_serviceName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2206028813 - }, - "m_iconKey": { - "type": "std::string", - "id": 1, - "offset": 168, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2457138637 - }, - "m_displayKey": { - "type": "std::string", - "id": 2, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3023276954 - }, - "m_serviceIndex": { - "type": "unsigned int", - "id": 3, - "offset": 204, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2103126710 - }, - "m_forceInteract": { - "type": "bool", - "id": 4, - "offset": 200, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1705789564 - } - } - }, - "967335253": { - "name": "class FXBySlotEffectTemplate", - "bases": [ - "GameEffectTemplate", - "PropertyClass" - ], - "hash": 967335253, - "properties": { - "m_effectName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2029161513 - }, - "m_effectCategory": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1852673222 - }, - "m_sortOrder": { - "type": "int", - "id": 2, - "offset": 148, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1411218206 - }, - "m_duration": { - "type": "double", - "id": 3, - "offset": 192, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2727932435 - }, - "m_stackingCategories": { - "type": "std::string", - "id": 4, - "offset": 160, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1774497525 - }, - "m_isPersistent": { - "type": "bool", - "id": 5, - "offset": 153, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 923861920 - }, - "m_bIsOnPet": { - "type": "bool", - "id": 6, - "offset": 154, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 522593303 - }, - "m_isPublic": { - "type": "bool", - "id": 7, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1728439822 - }, - "m_visualEffectAddName": { - "type": "std::string", - "id": 8, - "offset": 200, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3382086694 - }, - "m_visualEffectRemoveName": { - "type": "std::string", - "id": 9, - "offset": 232, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1541697323 - }, - "m_onAddFunctorName": { - "type": "std::string", - "id": 10, - "offset": 280, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1561843107 - }, - "m_onRemoveFunctorName": { - "type": "std::string", - "id": 11, - "offset": 312, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2559017864 - }, - "m_stackingRule": { - "type": "enum STACKING_RULE", - "id": 12, - "offset": 144, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 431568889, - "enum_options": { - "STACKING_ALLOWED": 0, - "STACKING_NOSTACK": 1, - "STACKING_REPLACE": 2 - } - }, - "m_fxList": { - "type": "class SharedPointer", - "id": 13, - "offset": 360, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 549626493 - } - } - }, - "1741798753": { - "name": "class ReqIsGoal*", - "bases": [ - "Requirement", - "PropertyClass" - ], - "hash": 1741798753, - "properties": { - "m_applyNOT": { - "type": "bool", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1746328074, - "enum_options": { - "__DEFAULT": 0 - } - }, - "m_operator": { - "type": "enum Requirement::Operator", - "id": 1, - "offset": 76, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2672792317, - "enum_options": { - "ROP_AND": 0, - "ROP_OR": 1, - "__DEFAULT": "ROP_AND" - } - }, - "m_questName": { - "type": "std::string", - "id": 2, - "offset": 80, - "flags": 268435463, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1702112846, - "enum_options": { - "__BASECLASS": "QuestTemplate" - } - }, - "m_goalName": { - "type": "std::string", - "id": 3, - "offset": 112, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1521627807 - } - } - }, - "580931103": { - "name": "class PotionButton*", - "bases": [ - "ControlButton", - "Window", - "PropertyClass" - ], - "hash": 580931103, - "properties": { - "m_sName": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306437263 - }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621225959 - }, - "m_Style": { - "type": "unsigned int", - "id": 2, - "offset": 152, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152, - "SHOW_HOTKEY": 16777216, - "EFFECT_SCALE": 67108864, - "LOCK_ICON_SIZE": 33554432, - "LEFT_TEXT": 536870912, - "NO_FIT_TEXT": 1073741824 - } - }, - "m_Flags": { - "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } - }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3105139380 - }, - "m_fTargetAlpha": { - "type": "float", - "id": 5, - "offset": 212, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1809129834 - }, - "m_fDisabledAlpha": { - "type": "float", - "id": 6, - "offset": 216, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1389987675 - }, - "m_fAlpha": { - "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 482130755 - }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3623628394 - }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2102211316 - }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1846695875 - }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3389835433 - }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2547159940 - }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2587533771 - }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3091503757 - }, - "m_bToggle": { - "type": "bool", - "id": 16, - "offset": 608, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2071810903 - }, - "m_bButtonDown": { - "type": "bool", - "id": 17, - "offset": 609, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 840041705 - }, - "m_sLabel": { - "type": "std::wstring", - "id": 18, - "offset": 616, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2207009163 - }, - "m_labelOffset": { - "type": "class Rect", - "id": 19, - "offset": 832, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1990646723 - }, - "m_pButton": { - "type": "class SharedPointer", - "id": 20, - "offset": 656, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1543855875 - }, - "m_HotKey": { - "type": "unsigned int", - "id": 21, - "offset": 672, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1631553409 - }, - "m_Color": { - "type": "class Color", - "id": 22, - "offset": 676, - "flags": 262279, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1753714077 - }, - "m_bCursorOver": { - "type": "bool", - "id": 23, - "offset": 689, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 283981103 - }, - "m_bAbortWhenCursorNotOver": { - "type": "bool", - "id": 24, - "offset": 706, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 325405258 - }, - "m_bHotKeyDown": { - "type": "bool", - "id": 25, - "offset": 680, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 616989185 - }, - "m_fTime": { - "type": "float", - "id": 26, - "offset": 684, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 883746156 - }, - "m_bGreyed": { - "type": "bool", - "id": 27, - "offset": 688, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1566556053 - }, - "m_fMaxScale": { - "type": "float", - "id": 28, - "offset": 692, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2070186635 - }, - "m_fScaleSpeed": { - "type": "float", - "id": 29, - "offset": 696, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1457135702 - }, - "m_bUseDropShadow": { - "type": "bool", - "id": 30, - "offset": 704, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 93063037 - }, - "m_bUseOutline": { - "type": "bool", - "id": 31, - "offset": 705, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 744292994 - }, - "m_pGreyedState": { - "type": "class SharedPointer", - "id": 32, - "offset": 768, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2703352263 - }, - "m_pNormalState": { - "type": "class SharedPointer", - "id": 33, - "offset": 752, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1887909808 - }, - "m_pHighlightedState": { - "type": "class SharedPointer", - "id": 34, - "offset": 784, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2200177608 - }, - "m_pSelectedState": { - "type": "class SharedPointer", - "id": 35, - "offset": 800, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2266776432 - }, - "m_pDepressedState": { - "type": "class SharedPointer", - "id": 36, - "offset": 816, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1878185798 - } - } - }, - "184230721": { - "name": "class GoalCompleteLogic", - "bases": [ - "PropertyClass" - ], - "hash": 184230721, - "properties": { - "m_goalsAND": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1522921572 - }, - "m_goalsOR": { - "type": "std::string", - "id": 1, - "offset": 88, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2474679090 - }, - "m_goalsToAdd": { - "type": "std::string", - "id": 2, - "offset": 104, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 3122082173 - }, - "m_completeQuest": { - "type": "bool", - "id": 3, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1096497470 - }, - "m_requiredORCount": { - "type": "int", - "id": 4, - "offset": 124, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1209220805 - } - } - }, - "580128245": { - "name": "class WizPolymorphTemplate*", - "bases": [ - "CoreTemplate", - "PropertyClass" - ], - "hash": 580128245, - "properties": { - "m_behaviors": { - "type": "class BehaviorTemplate*", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1197808594 - }, - "m_templateID": { - "type": "unsigned int", - "id": 1, - "offset": 96, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1286746870 - }, - "m_mobTemplateID": { - "type": "unsigned int", - "id": 2, - "offset": 100, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1268089108 - }, - "m_effects": { - "type": "class GameEffectInfo*", - "id": 3, - "offset": 104, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 588086299 - } - } - }, - "1741811041": { - "name": "class ReqIsGoal", - "bases": [ - "Requirement", - "PropertyClass" - ], - "hash": 1741811041, - "properties": { - "m_applyNOT": { - "type": "bool", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1746328074, - "enum_options": { - "__DEFAULT": 0 - } - }, - "m_operator": { - "type": "enum Requirement::Operator", - "id": 1, - "offset": 76, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2672792317, - "enum_options": { - "ROP_AND": 0, - "ROP_OR": 1, - "__DEFAULT": "ROP_AND" - } - }, - "m_questName": { - "type": "std::string", - "id": 2, - "offset": 80, - "flags": 268435463, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1702112846, - "enum_options": { - "__BASECLASS": "QuestTemplate" - } - }, - "m_goalName": { - "type": "std::string", - "id": 3, - "offset": 112, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1521627807 - } - } - }, - "968691156": { - "name": "class SharedPointer", - "bases": [ - "WindowLayout", - "Window", - "PropertyClass" - ], - "hash": 968691156, - "properties": { - "m_sName": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306437263 - }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621225959 - }, - "m_Style": { - "type": "unsigned int", - "id": 2, - "offset": 152, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152, - "H_CENTER": 16777216, - "H_RIGHT": 33554432, - "V_CENTER": 2147483648, - "V_BOTTOM": 67108864, - "SORT": 536870912, - "LAYOUT_VERT": 1073741824, - "LAYOUT_REVERSE": 2147483648, - "DO_NOT_WRAP": 134217728 - } - }, - "m_Flags": { - "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } - }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3105139380 - }, - "m_fTargetAlpha": { - "type": "float", - "id": 5, - "offset": 212, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1809129834 - }, - "m_fDisabledAlpha": { - "type": "float", - "id": 6, - "offset": 216, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1389987675 - }, - "m_fAlpha": { - "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 482130755 - }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3623628394 - }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2102211316 - }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1846695875 - }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3389835433 - }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2547159940 - }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2587533771 - }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3091503757 - }, - "m_nHSpacing": { - "type": "int", - "id": 16, - "offset": 584, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 893611957 - }, - "m_nVSpacing": { - "type": "int", - "id": 17, - "offset": 588, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 551359491 - } - } - }, - "580269176": { - "name": "class CursorStyle", - "bases": [ - "PropertyClass" - ], - "hash": 580269176, - "properties": { - "m_name": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1717359772 - }, - "m_cursorState": { - "type": "enum CursorState", - "id": 1, - "offset": 104, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2665308791, - "enum_options": { - "CS_POINTER": 1, - "CS_MOVE": 2, - "CS_HARROW": 3, - "CS_VARROW": 4, - "CS_EDIT": 5, - "CS_SELECT": 6, - "CS_USER1": 7, - "CS_USER2": 8, - "CS_USER3": 9, - "CS_USER4": 10, - "CS_USER5": 11 - } - }, - "m_moveable": { - "type": "bool", - "id": 2, - "offset": 320, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1000738782 - }, - "m_softwareStyle": { - "type": "class SoftwareStyle", - "id": 3, - "offset": 112, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2133920820 - }, - "m_hardwareStyle": { - "type": "class HardwareStyle", - "id": 4, - "offset": 216, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1521077471 - } - } - }, - "968235387": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 968235387, - "properties": { - "m_lootTypeMaxes": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 3636229967 - }, - "m_templateID": { - "type": "unsigned int", - "id": 1, - "offset": 88, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1286746870 - } - } - }, - "187568735": { - "name": "class AnimationSet", - "bases": [ - "PropertyClass" - ], - "hash": 187568735, - "properties": { - "m_setName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2569991048 - }, - "m_pairs": { - "type": "class AnimationPair*", - "id": 1, - "offset": 112, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1888571563 - } - } - }, - "1742000194": { - "name": "class GraphicalEventCurrency2*", - "bases": [ - "GraphicalSpell", - "Spell", - "PropertyClass" - ], - "hash": 1742000194, - "properties": { - "m_templateID": { - "type": "unsigned int", - "id": 0, - "offset": 128, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1286746870 - }, - "m_enchantment": { - "type": "unsigned int", - "id": 1, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2217886818 - }, - "m_pipCost": { - "type": "class SharedPointer", - "id": 2, - "offset": 176, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3605704820 - }, - "m_regularAdjust": { - "type": "int", - "id": 3, - "offset": 192, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1420453335 - }, - "m_magicSchoolID": { - "type": "unsigned int", - "id": 4, - "offset": 136, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 893146499 - }, - "m_accuracy": { - "type": "unsigned char", - "id": 5, - "offset": 132, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2273914939 - }, - "m_treasureCard": { - "type": "bool", - "id": 6, - "offset": 197, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1764879128 - }, - "m_battleCard": { - "type": "bool", - "id": 7, - "offset": 198, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1332843753 - }, - "m_itemCard": { - "type": "bool", - "id": 8, - "offset": 199, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1683654300 - }, - "m_sideBoard": { - "type": "bool", - "id": 9, - "offset": 200, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1897838368 - }, - "m_spellID": { - "type": "unsigned int", - "id": 10, - "offset": 204, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1697483258 - }, - "m_leavesPlayWhenCastOverride": { - "type": "bool", - "id": 11, - "offset": 216, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 874407398 - }, - "m_cloaked": { - "type": "bool", - "id": 12, - "offset": 196, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 7349510 - }, - "m_enchantmentSpellIsItemCard": { - "type": "bool", - "id": 13, - "offset": 76, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 531590701 - }, - "m_premutationSpellID": { - "type": "unsigned int", - "id": 14, - "offset": 112, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1530256370 - }, - "m_enchantedThisCombat": { - "type": "bool", - "id": 15, - "offset": 77, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1895738923 - }, - "m_paramOverrides": { - "type": "class SharedPointer", - "id": 16, - "offset": 224, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2061635599 - }, - "m_subEffectMeta": { - "type": "class SharedPointer", - "id": 17, - "offset": 240, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1944101106 - }, - "m_delayEnchantment": { - "type": "bool", - "id": 18, - "offset": 257, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 191336919 - }, - "m_PvE": { - "type": "bool", - "id": 19, - "offset": 264, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 269492350 - }, - "m_delayEnchantmentOrder": { - "type": "enum SpellEffect::kDelayOrder", - "id": 20, - "offset": 72, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2526055263, - "enum_options": { - "SpellEffect::kAnyOrder": 0, - "SpellEffect::kFirst": 1, - "SpellEffect::kSecond": 2 - } - }, - "m_roundAddedTC": { - "type": "int", - "id": 21, - "offset": 260, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 112365451 - }, - "m_secondarySchoolID": { - "type": "unsigned int", - "id": 22, - "offset": 304, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2081206026 - } - } - }, - "185996623": { - "name": "class SharedPointer", - "bases": [ - "ServiceOptionBase", - "PropertyClass" - ], - "hash": 185996623, - "properties": { - "m_serviceName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2206028813 - }, - "m_iconKey": { - "type": "std::string", - "id": 1, - "offset": 168, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2457138637 - }, - "m_displayKey": { - "type": "std::string", - "id": 2, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3023276954 - }, - "m_serviceIndex": { - "type": "unsigned int", - "id": 3, - "offset": 204, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2103126710 - }, - "m_forceInteract": { - "type": "bool", - "id": 4, - "offset": 200, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1705789564 - } - } - }, - "185512734": { - "name": "class DeedBehaviorTemplate", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 185512734, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - }, - "m_lotWorldZone": { - "type": "std::string", - "id": 1, - "offset": 120, - "flags": 268435463, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3026711022, - "enum_options": { - "__BASECLASS": "ZoneData" - } - }, - "m_itemLimit": { - "type": "int", - "id": 2, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1799746856 - }, - "m_structureTemplateID": { - "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 33554439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1037379271 - }, - "m_previewWorldZone": { - "type": "std::string", - "id": 4, - "offset": 160, - "flags": 268435463, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2100214145, - "enum_options": { - "__BASECLASS": "ZoneData" - } - }, - "m_initialItemLayoutFile": { - "type": "std::string", - "id": 5, - "offset": 192, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1741580370 - }, - "m_alternateDeedTemplateID": { - "type": "unsigned int", - "id": 6, - "offset": 224, - "flags": 33554439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 264986664 - }, - "m_castleBlockLimit": { - "type": "int", - "id": 7, - "offset": 228, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 276037600 - } - } - }, - "581707131": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 581707131, - "properties": { - "m_start": { - "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1021505883 - }, - "m_stop": { - "type": "unsigned int", - "id": 1, - "offset": 76, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 431263059 - } - } - }, - "969118507": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 969118507, - "properties": { - "m_worldName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1846757476 - }, - "m_worldDoorTemplateID": { - "type": "unsigned int", - "id": 1, - "offset": 104, - "flags": 33554439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1255097074 - }, - "m_levelScaleLevel": { - "type": "int", - "id": 2, - "offset": 132, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1013218162 - }, - "m_galleryZone": { - "type": "std::string", - "id": 3, - "offset": 136, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2919416423 - }, - "m_exhibitList": { - "type": "class SharedPointer", - "id": 4, - "offset": 112, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2401157639 - }, - "m_displayName": { - "type": "std::string", - "id": 5, - "offset": 168, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2446900370 - }, - "m_debugName": { - "type": "std::string", - "id": 6, - "offset": 200, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3553984419 - } - } - }, - "185378075": { - "name": "class PestBehaviorTemplate", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 185378075, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - }, - "m_pestRank": { - "type": "int", - "id": 1, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2022116066 - }, - "m_wiltMinRate": { - "type": "std::string", - "id": 2, - "offset": 128, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3102833515 - }, - "m_wiltMaxRate": { - "type": "std::string", - "id": 3, - "offset": 160, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2801609581 - }, - "m_goodPest": { - "type": "bool", - "id": 4, - "offset": 192, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 564893944 - }, - "m_useSizeAnimations": { - "type": "bool", - "id": 5, - "offset": 193, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1095895662 - }, - "m_providesWater": { - "type": "bool", - "id": 6, - "offset": 194, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1403713858 - }, - "m_providesSun": { - "type": "bool", - "id": 7, - "offset": 195, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1942306581 - }, - "m_providesPollination": { - "type": "bool", - "id": 8, - "offset": 196, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 443775752 - }, - "m_providesMagic": { - "type": "bool", - "id": 9, - "offset": 197, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1391840608 - }, - "m_providesMusic": { - "type": "bool", - "id": 10, - "offset": 198, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1392572416 - } - } - }, - "581406359": { - "name": "class ReqGoldBagPercent", - "bases": [ - "ReqNumeric", - "Requirement", - "PropertyClass" - ], - "hash": 581406359, - "properties": { - "m_applyNOT": { - "type": "bool", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1746328074, - "enum_options": { - "__DEFAULT": 0 - } - }, - "m_operator": { - "type": "enum Requirement::Operator", - "id": 1, - "offset": 76, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2672792317, - "enum_options": { - "ROP_AND": 0, - "ROP_OR": 1, - "__DEFAULT": "ROP_AND" - } - }, - "m_numericValue": { - "type": "float", - "id": 2, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 521915239 - }, - "m_operatorType": { - "type": "enum ReqNumeric::OPERATOR_TYPE", - "id": 3, - "offset": 84, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2228122961, - "enum_options": { - "OPERATOR_UNKNOWN": 4294967295, - "OPERATOR_EQUALS": 0, - "OPERATOR_GREATER_THAN": 1, - "OPERATOR_LESS_THAN": 2, - "OPERATOR_GREATER_THAN_EQ": 3, - "OPERATOR_LESS_THAN_EQ": 4 - } - } - } - }, - "1743150052": { - "name": "enum Material::Repeating", - "bases": [], - "hash": 1743150052, - "properties": {} - }, - "185174602": { - "name": "class PlayerStatueBehaviorTemplate*", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 185174602, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - }, - "m_groundOffset": { - "type": "float", - "id": 1, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 684524077 - }, - "m_yaw": { - "type": "float", - "id": 2, - "offset": 124, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 357256328 - }, - "m_showNametag": { - "type": "bool", - "id": 3, - "offset": 128, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 584664753 - }, - "m_scale": { - "type": "float", - "id": 4, - "offset": 132, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 899693439 - }, - "m_alpha": { - "type": "float", - "id": 5, - "offset": 136, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 878686493 - }, - "m_cycleSec": { - "type": "float", - "id": 6, - "offset": 140, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1547908898 - }, - "m_animDelaySec": { - "type": "float", - "id": 7, - "offset": 144, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2131058854 - }, - "m_animChance": { - "type": "float", - "id": 8, - "offset": 148, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 434823806 - }, - "m_animList": { - "type": "std::string", - "id": 9, - "offset": 152, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2531745852 - }, - "m_settings": { - "type": "class SharedPointer", - "id": 10, - "offset": 168, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2944992476 - } - } - }, - "1743036804": { - "name": "class SharedPointer", - "bases": [ - "GameEffectBase", - "PropertyClass" - ], - "hash": 1743036804, - "properties": { - "m_currentTickCount": { - "type": "double", - "id": 0, - "offset": 80, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2533274692 - }, - "m_effectNameID": { - "type": "unsigned int", - "id": 1, - "offset": 96, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1204067144 - }, - "m_bIsOnPet": { - "type": "bool", - "id": 2, - "offset": 73, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 522593303 - }, - "m_originatorID": { - "type": "gid", - "id": 3, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1131810019 - }, - "m_itemSlotID": { - "type": "unsigned int", - "id": 4, - "offset": 112, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1895747595 - }, - "m_internalID": { - "type": "int", - "id": 5, - "offset": 92, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1643137924 - }, - "m_endTime": { - "type": "unsigned int", - "id": 6, - "offset": 88, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 716479635 - } - } - }, - "184400866": { - "name": "class NumCategoryInInventory*", - "bases": [ - "PropertyClass" - ], - "hash": 184400866, - "properties": { - "m_sCategory": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1996239916 - }, - "m_numCategoryInInventory": { - "type": "int", - "id": 1, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 639845069 - } - } - }, - "970711488": { - "name": "class CastleMagicCameraInfo*", - "bases": [ - "PropertyClass" - ], - "hash": 970711488, - "properties": {} - }, - "1742404070": { - "name": "class SharedPointer", - "bases": [ - "GameEffectInfo", - "PropertyClass" - ], - "hash": 1742404070, - "properties": { - "m_effectName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2029161513 - }, - "m_lookupIndex": { - "type": "int", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1626623948 - } - } - }, - "582059271": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 582059271, - "properties": { - "m_World": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1731856744 - } - } - }, - "970444798": { - "name": "class ZoneTokenTrackingBehavior", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 970444798, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - } - } - }, - "969769211": { - "name": "class ClassProjectGlobalLootPoint", - "bases": [ - "PropertyClass" - ], - "hash": 969769211, - "properties": { - "m_globalPointLevel": { - "type": "int", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1056567917 - }, - "m_descriptionText": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3396736580 - } - } - }, - "185180746": { - "name": "class PlayerStatueBehaviorTemplate", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 185180746, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - }, - "m_groundOffset": { - "type": "float", - "id": 1, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 684524077 - }, - "m_yaw": { - "type": "float", - "id": 2, - "offset": 124, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 357256328 - }, - "m_showNametag": { - "type": "bool", - "id": 3, - "offset": 128, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 584664753 - }, - "m_scale": { - "type": "float", - "id": 4, - "offset": 132, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 899693439 - }, - "m_alpha": { - "type": "float", - "id": 5, - "offset": 136, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 878686493 - }, - "m_cycleSec": { - "type": "float", - "id": 6, - "offset": 140, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1547908898 - }, - "m_animDelaySec": { - "type": "float", - "id": 7, - "offset": 144, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2131058854 - }, - "m_animChance": { - "type": "float", - "id": 8, - "offset": 148, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 434823806 - }, - "m_animList": { - "type": "std::string", - "id": 9, - "offset": 152, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2531745852 - }, - "m_settings": { - "type": "class SharedPointer", - "id": 10, - "offset": 168, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2944992476 - } - } - }, - "969403084": { - "name": "class PlayerHasBadge", - "bases": [ - "PropertyClass" - ], - "hash": 969403084, - "properties": { - "m_sBadgeName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1846044066 - }, - "m_hasBadge": { - "type": "bool", - "id": 1, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1597294914 - } - } - }, - "583801085": { - "name": "class ControlEdit*", - "bases": [ - "Window", - "PropertyClass" - ], - "hash": 583801085, - "properties": { - "m_sName": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306437263 - }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621225959 - }, - "m_Style": { - "type": "unsigned int", - "id": 2, - "offset": 152, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152, - "FORCE_NUMERIC": 16777216, - "FORCE_ALPHA": 268435456, - "FORCE_ALPHANUMERIC": 536870912, - "FORCE_INTEGER": 33554432, - "FORCE_POSITIVE": 67108864, - "FORCE_RANGE": 134217728 - } - }, - "m_Flags": { - "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } - }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3105139380 - }, - "m_fTargetAlpha": { - "type": "float", - "id": 5, - "offset": 212, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1809129834 - }, - "m_fDisabledAlpha": { - "type": "float", - "id": 6, - "offset": 216, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1389987675 - }, - "m_fAlpha": { - "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 482130755 - }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3623628394 - }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2102211316 - }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1846695875 - }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3389835433 - }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2547159940 - }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2587533771 - }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3091503757 - }, - "m_sText": { - "type": "std::wstring", - "id": 16, - "offset": 584, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2102642960 - }, - "m_nMaxLength": { - "type": "int", - "id": 17, - "offset": 620, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1183478416 - }, - "m_bPassword": { - "type": "bool", - "id": 18, - "offset": 624, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1604468200 - }, - "m_bLog": { - "type": "bool", - "id": 19, - "offset": 625, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 221687287 - }, - "m_previousNext": { - "type": "bool", - "id": 20, - "offset": 627, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 858581071 - }, - "m_nMaxLogSize": { - "type": "int", - "id": 21, - "offset": 712, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 779573899 - }, - "m_bEditing": { - "type": "bool", - "id": 22, - "offset": 616, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1243218553 - }, - "m_bAllowPaste": { - "type": "bool", - "id": 23, - "offset": 626, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1129316721 - }, - "m_nLogPosition": { - "type": "int", - "id": 24, - "offset": 704, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1120160767 - }, - "m_nCursor": { - "type": "int", - "id": 25, - "offset": 716, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1876782150 - }, - "m_nEditBegin": { - "type": "int", - "id": 26, - "offset": 720, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1066592403 - }, - "m_nEditEnd": { - "type": "int", - "id": 27, - "offset": 724, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1560905669 - }, - "m_sSavedText": { - "type": "std::wstring", - "id": 28, - "offset": 728, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2197953283 - }, - "m_fCursorBlinkSpeed": { - "type": "float", - "id": 29, - "offset": 760, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2232655228 - }, - "m_fCursorTimer": { - "type": "float", - "id": 30, - "offset": 764, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1929942748 - }, - "m_bCursorBlink": { - "type": "bool", - "id": 31, - "offset": 768, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 683441507 - }, - "m_fMinRange": { - "type": "double", - "id": 32, - "offset": 776, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3079523396 - }, - "m_fMaxRange": { - "type": "double", - "id": 33, - "offset": 784, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3876551814 - }, - "m_nPrecision": { - "type": "int", - "id": 34, - "offset": 792, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1404974196 - }, - "m_bDeleteOnFirstChar": { - "type": "bool", - "id": 35, - "offset": 618, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 902105643 - } - } - }, - "1743889188": { - "name": "class WizItemLocations", - "bases": [ - "PropertyClass" - ], - "hash": 1743889188, - "properties": { - "m_itemType": { - "type": "enum WizItemLocations::eItemType", - "id": 0, - "offset": 72, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3482173907, - "enum_options": { - "shop": 0, - "quest": 1, - "boss": 2, - "gardening": 3, - "goldChest": 4 - } - } - } - }, - "583314915": { - "name": "class SharedPointer", - "bases": [ - "Spell", - "PropertyClass" - ], - "hash": 583314915, - "properties": { - "m_templateID": { - "type": "unsigned int", - "id": 0, - "offset": 128, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1286746870 - }, - "m_enchantment": { - "type": "unsigned int", - "id": 1, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2217886818 - }, - "m_pipCost": { - "type": "class SharedPointer", - "id": 2, - "offset": 176, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3605704820 - }, - "m_regularAdjust": { - "type": "int", - "id": 3, - "offset": 192, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1420453335 - }, - "m_magicSchoolID": { - "type": "unsigned int", - "id": 4, - "offset": 136, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 893146499 - }, - "m_accuracy": { - "type": "unsigned char", - "id": 5, - "offset": 132, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2273914939 - }, - "m_treasureCard": { - "type": "bool", - "id": 6, - "offset": 197, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1764879128 - }, - "m_battleCard": { - "type": "bool", - "id": 7, - "offset": 198, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1332843753 - }, - "m_itemCard": { - "type": "bool", - "id": 8, - "offset": 199, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1683654300 - }, - "m_sideBoard": { - "type": "bool", - "id": 9, - "offset": 200, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1897838368 - }, - "m_spellID": { - "type": "unsigned int", - "id": 10, - "offset": 204, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1697483258 - }, - "m_leavesPlayWhenCastOverride": { - "type": "bool", - "id": 11, - "offset": 216, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 874407398 - }, - "m_cloaked": { - "type": "bool", - "id": 12, - "offset": 196, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 7349510 - }, - "m_enchantmentSpellIsItemCard": { - "type": "bool", - "id": 13, - "offset": 76, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 531590701 - }, - "m_premutationSpellID": { - "type": "unsigned int", - "id": 14, - "offset": 112, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1530256370 - }, - "m_enchantedThisCombat": { - "type": "bool", - "id": 15, - "offset": 77, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1895738923 - }, - "m_paramOverrides": { - "type": "class SharedPointer", - "id": 16, - "offset": 224, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2061635599 - }, - "m_subEffectMeta": { - "type": "class SharedPointer", - "id": 17, - "offset": 240, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1944101106 - }, - "m_delayEnchantment": { - "type": "bool", - "id": 18, - "offset": 257, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 191336919 - }, - "m_PvE": { - "type": "bool", - "id": 19, - "offset": 264, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 269492350 - }, - "m_delayEnchantmentOrder": { - "type": "enum SpellEffect::kDelayOrder", - "id": 20, - "offset": 72, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2526055263, - "enum_options": { - "SpellEffect::kAnyOrder": 0, - "SpellEffect::kFirst": 1, - "SpellEffect::kSecond": 2 - } - }, - "m_roundAddedTC": { - "type": "int", - "id": 21, - "offset": 260, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 112365451 - }, - "m_secondarySchoolID": { - "type": "unsigned int", - "id": 22, - "offset": 304, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2081206026 - } - } - }, - "1743741015": { - "name": "class SharedPointer", - "bases": [ - "CameraController", - "PropertyClass" - ], - "hash": 1743741015, - "properties": {} - }, - "185378099": { - "name": "class PestBehaviorTemplate*", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 185378099, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - }, - "m_pestRank": { - "type": "int", - "id": 1, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2022116066 - }, - "m_wiltMinRate": { - "type": "std::string", - "id": 2, - "offset": 128, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3102833515 - }, - "m_wiltMaxRate": { - "type": "std::string", - "id": 3, - "offset": 160, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2801609581 - }, - "m_goodPest": { - "type": "bool", - "id": 4, - "offset": 192, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 564893944 - }, - "m_useSizeAnimations": { - "type": "bool", - "id": 5, - "offset": 193, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1095895662 - }, - "m_providesWater": { - "type": "bool", - "id": 6, - "offset": 194, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1403713858 - }, - "m_providesSun": { - "type": "bool", - "id": 7, - "offset": 195, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1942306581 - }, - "m_providesPollination": { - "type": "bool", - "id": 8, - "offset": 196, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 443775752 - }, - "m_providesMagic": { - "type": "bool", - "id": 9, - "offset": 197, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1391840608 - }, - "m_providesMusic": { - "type": "bool", - "id": 10, - "offset": 198, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1392572416 - } - } - }, - "969769403": { - "name": "class ClassProjectGlobalLootPoint*", - "bases": [ - "PropertyClass" - ], - "hash": 969769403, - "properties": { - "m_globalPointLevel": { - "type": "int", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1056567917 - }, - "m_descriptionText": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3396736580 - } - } - }, - "583831711": { - "name": "class ControlText*", - "bases": [ - "Window", - "PropertyClass" - ], - "hash": 583831711, - "properties": { - "m_sName": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306437263 - }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621225959 - }, - "m_Style": { - "type": "unsigned int", - "id": 2, - "offset": 152, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152, - "DO_NOT_WRAP": 134217728, - "FIT_TEXT": 268435456 - } - }, - "m_Flags": { - "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } - }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3105139380 - }, - "m_fTargetAlpha": { - "type": "float", - "id": 5, - "offset": 212, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1809129834 - }, - "m_fDisabledAlpha": { - "type": "float", - "id": 6, - "offset": 216, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1389987675 - }, - "m_fAlpha": { - "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 482130755 - }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3623628394 - }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2102211316 - }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1846695875 - }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3389835433 - }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2547159940 - }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2587533771 - }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3091503757 - }, - "m_sText": { - "type": "std::wstring", - "id": 16, - "offset": 584, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2102642960 - }, - "m_sTooltip": { - "type": "std::wstring", - "id": 17, - "offset": 616, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1680475798 - }, - "m_bUseDropShadow": { - "type": "bool", - "id": 18, - "offset": 653, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 93063037 - }, - "m_bUseOutline": { - "type": "bool", - "id": 19, - "offset": 654, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 744292994 - }, - "m_bEnableWordWrap": { - "type": "bool", - "id": 20, - "offset": 655, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 430904562 - }, - "m_bEnableToggle": { - "type": "bool", - "id": 21, - "offset": 652, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1937994142 - }, - "m_nLeadingAdjust": { - "type": "int", - "id": 22, - "offset": 656, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1559480167 - } - } - }, - "1743987492": { - "name": "class WizItemLocations*", - "bases": [ - "PropertyClass" - ], - "hash": 1743987492, - "properties": { - "m_itemType": { - "type": "enum WizItemLocations::eItemType", - "id": 0, - "offset": 72, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3482173907, - "enum_options": { - "shop": 0, - "quest": 1, - "boss": 2, - "gardening": 3, - "goldChest": 4 - } - } - } - }, - "185541139": { - "name": "class PathBehaviorTemplate*", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 185541139, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - }, - "m_kPathType": { - "type": "enum PathBehaviorTemplate::PathType", - "id": 1, - "offset": 120, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2890959924, - "enum_options": { - "PT_LOOP": 0, - "PT_CHAIN": 1, - "PT_RANDOM": 2 - } - }, - "m_pathID": { - "type": "gid", - "id": 2, - "offset": 128, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 821494322 - }, - "m_nPathDirection": { - "type": "int", - "id": 3, - "offset": 136, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2081830230, - "enum_options": { - "__DEFAULT": 1 - } - }, - "m_actionList": { - "type": "class SharedPointer", - "id": 4, - "offset": 144, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2665183795 - }, - "m_pauseChance": { - "type": "unsigned int", - "id": 5, - "offset": 160, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 821317997 - }, - "m_timeToPause": { - "type": "float", - "id": 6, - "offset": 164, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 408413991 - } - } - }, - "970573129": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 970573129, - "properties": { - "m_templateIdList": { - "type": "gid", - "id": 0, - "offset": 72, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1466334173 - } - } - }, - "185512758": { - "name": "class DeedBehaviorTemplate*", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 185512758, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - }, - "m_lotWorldZone": { - "type": "std::string", - "id": 1, - "offset": 120, - "flags": 268435463, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3026711022, - "enum_options": { - "__BASECLASS": "ZoneData" - } - }, - "m_itemLimit": { - "type": "int", - "id": 2, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1799746856 - }, - "m_structureTemplateID": { - "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 33554439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1037379271 - }, - "m_previewWorldZone": { - "type": "std::string", - "id": 4, - "offset": 160, - "flags": 268435463, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2100214145, - "enum_options": { - "__BASECLASS": "ZoneData" - } - }, - "m_initialItemLayoutFile": { - "type": "std::string", - "id": 5, - "offset": 192, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1741580370 - }, - "m_alternateDeedTemplateID": { - "type": "unsigned int", - "id": 6, - "offset": 224, - "flags": 33554439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 264986664 - }, - "m_castleBlockLimit": { - "type": "int", - "id": 7, - "offset": 228, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 276037600 - } - } - }, - "584940895": { - "name": "class ControlTree*", - "bases": [ - "Window", - "PropertyClass" - ], - "hash": 584940895, - "properties": { - "m_sName": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306437263 - }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621225959 - }, - "m_Style": { - "type": "unsigned int", - "id": 2, - "offset": 152, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152, - "SINGLE_EXPAND": 16777216 - } - }, - "m_Flags": { - "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } - }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3105139380 - }, - "m_fTargetAlpha": { - "type": "float", - "id": 5, - "offset": 212, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1809129834 - }, - "m_fDisabledAlpha": { - "type": "float", - "id": 6, - "offset": 216, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1389987675 - }, - "m_fAlpha": { - "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 482130755 - }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3623628394 - }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2102211316 - }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1846695875 - }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3389835433 - }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2547159940 - }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2587533771 - }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3091503757 - }, - "m_nIndent": { - "type": "int", - "id": 16, - "offset": 584, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2102774666 - }, - "m_pRoot": { - "type": "struct ControlTree::Item*", - "id": 17, - "offset": 592, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1289445775 - }, - "m_pCursorOver": { - "type": "struct ControlTree::Item*", - "id": 18, - "offset": 600, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2025071845 - }, - "m_pSelected": { - "type": "struct ControlTree::Item*", - "id": 19, - "offset": 608, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1115130964 - }, - "m_bCursorInWindow": { - "type": "bool", - "id": 20, - "offset": 616, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1768047842 - } - } - }, - "1744308813": { - "name": "class SharedPointer", - "bases": [ - "PositionalSoundBehavior", - "SoundBehavior", - "AreaBehavior", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1744308813, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_radius": { - "type": "float", - "id": 1, - "offset": 116, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 989410271 - }, - "m_category": { - "type": "enum AudioCategory", - "id": 2, - "offset": 124, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2951251982, - "enum_options": { - "AudioCategory_Irrelevent": 0, - "AudioCategory_Accoustic": 1, - "AudioCategory_Noise": 2, - "AudioCategory_Music": 3 - } - }, - "m_exclusive": { - "type": "bool", - "id": 3, - "offset": 128, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 824383403 - }, - "m_playList": { - "type": "class PlayList", - "id": 4, - "offset": 176, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2061221957 - }, - "m_volume": { - "type": "float", - "id": 5, - "offset": 304, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1162855023 - }, - "m_loopCount": { - "type": "int", - "id": 6, - "offset": 308, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 865634717 - }, - "m_minimumFalloff": { - "type": "float", - "id": 7, - "offset": 328, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 355697197 - }, - "m_maximumFalloff": { - "type": "float", - "id": 8, - "offset": 332, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2210192367 - }, - "m_animDriven": { - "type": "bool", - "id": 9, - "offset": 392, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 398394720 - }, - "m_inverted": { - "type": "bool", - "id": 10, - "offset": 397, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1034821044 - } - } - }, - "584015231": { - "name": "class ControlDraw*", - "bases": [ - "Window", - "PropertyClass" - ], - "hash": 584015231, - "properties": { - "m_sName": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306437263 - }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621225959 - }, - "m_Style": { - "type": "unsigned int", - "id": 2, - "offset": 152, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "SCALE_CHILDREN": 2, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "FOCUS_LOCKED": 64, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152 - } - }, - "m_Flags": { - "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } - }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3105139380 - }, - "m_fTargetAlpha": { - "type": "float", - "id": 5, - "offset": 212, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1809129834 - }, - "m_fDisabledAlpha": { - "type": "float", - "id": 6, - "offset": 216, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1389987675 - }, - "m_fAlpha": { - "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 482130755 - }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3623628394 - }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2102211316 - }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1846695875 - }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3389835433 - }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2547159940 - }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2587533771 - }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3091503757 - }, - "m_Markers": { - "type": "class ControlDraw::GesturePoint", - "id": 16, - "offset": 592, - "flags": 135, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2001006042 - }, - "m_RefPoints": { - "type": "class ControlDraw::GesturePoint", - "id": 17, - "offset": 616, - "flags": 135, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1442006431 - }, - "m_LineList": { - "type": "class ControlDraw::Line", - "id": 18, - "offset": 664, - "flags": 135, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2941180014 - } - } - }, - "970712256": { - "name": "class CastleMagicCameraInfo", - "bases": [ - "PropertyClass" - ], - "hash": 970712256, - "properties": {} - }, - "1744138021": { - "name": "class GearVaultBehaviorBase", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1744138021, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_gearList": { - "type": "std::string", - "id": 1, - "offset": 112, - "flags": 65567, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1498902582 - } - } - }, - "185554206": { - "name": "class DeckBehaviorTemplate", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 185554206, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - }, - "m_defaultDeck": { - "type": "std::string", - "id": 1, - "offset": 120, - "flags": 268435463, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2375433463, - "enum_options": { - "__BASECLASS": "DeckTemplate" - } - }, - "m_primarySchoolName": { - "type": "std::string", - "id": 2, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3211370408 - }, - "m_genericMaxRank": { - "type": "int", - "id": 3, - "offset": 188, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1490181353 - }, - "m_schoolMaxRank": { - "type": "int", - "id": 4, - "offset": 192, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1600140084 - }, - "m_genericMaxInstances": { - "type": "int", - "id": 5, - "offset": 196, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1724791269 - }, - "m_schoolMaxInstances": { - "type": "int", - "id": 6, - "offset": 200, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1818539792 - }, - "m_maxSpells": { - "type": "int", - "id": 7, - "offset": 204, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 818580275 - }, - "m_maxTreasureCards": { - "type": "int", - "id": 8, - "offset": 208, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 383300312 - }, - "m_maxArchmasteryPoints": { - "type": "float", - "id": 9, - "offset": 212, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 430012637 - } - } - }, - "583896816": { - "name": "class EquivalentItemBehaviorTemplate*", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 583896816, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - }, - "m_equivalentItemTemplateID": { - "type": "gid", - "id": 1, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 657877294 - } - } - }, - "1744136741": { - "name": "class GearVaultBehaviorBase*", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1744136741, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_gearList": { - "type": "std::string", - "id": 1, - "offset": 112, - "flags": 65567, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1498902582 - } - } - }, - "185541179": { - "name": "class PathBehaviorTemplate", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 185541179, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - }, - "m_kPathType": { - "type": "enum PathBehaviorTemplate::PathType", - "id": 1, - "offset": 120, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2890959924, - "enum_options": { - "PT_LOOP": 0, - "PT_CHAIN": 1, - "PT_RANDOM": 2 - } - }, - "m_pathID": { - "type": "gid", - "id": 2, - "offset": 128, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 821494322 - }, - "m_nPathDirection": { - "type": "int", - "id": 3, - "offset": 136, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2081830230, - "enum_options": { - "__DEFAULT": 1 - } - }, - "m_actionList": { - "type": "class SharedPointer", - "id": 4, - "offset": 144, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2665183795 - }, - "m_pauseChance": { - "type": "unsigned int", - "id": 5, - "offset": 160, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 821317997 - }, - "m_timeToPause": { - "type": "float", - "id": 6, - "offset": 164, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 408413991 - } - } - }, - "974020150": { - "name": "class FadeActorCinematicAction", - "bases": [ - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 974020150, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - }, - "m_fadeDuration": { - "type": "float", - "id": 2, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1402536557 - }, - "m_alphaTarget": { - "type": "float", - "id": 3, - "offset": 124, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 197622500 - } - } - }, - "584917507": { - "name": "class ControlZone*", - "bases": [ - "Window", - "PropertyClass" - ], - "hash": 584917507, - "properties": { - "m_sName": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306437263 - }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621225959 - }, - "m_Style": { - "type": "unsigned int", - "id": 2, - "offset": 152, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "SCALE_CHILDREN": 2, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "FOCUS_LOCKED": 64, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152 - } - }, - "m_Flags": { - "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } - }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3105139380 - }, - "m_fTargetAlpha": { - "type": "float", - "id": 5, - "offset": 212, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1809129834 - }, - "m_fDisabledAlpha": { - "type": "float", - "id": 6, - "offset": 216, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1389987675 - }, - "m_fAlpha": { - "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 482130755 - }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3623628394 - }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2102211316 - }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1846695875 - }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3389835433 - }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2547159940 - }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2587533771 - }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3091503757 - }, - "m_bButtonDown": { - "type": "bool", - "id": 16, - "offset": 584, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 840041705 - }, - "m_bCursorOver": { - "type": "bool", - "id": 17, - "offset": 585, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 283981103 - }, - "m_bSavedCursorOver": { - "type": "bool", - "id": 18, - "offset": 586, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1803318978 - } - } - }, - "971222955": { - "name": "class ActorDialog", - "bases": [ - "ActorDialogBase", - "PropertyClass" - ], - "hash": 971222955, - "properties": { - "m_dialogTag": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2743232871 - }, - "m_dialogEntries": { - "type": "class ActorDialogEntry*", - "id": 1, - "offset": 104, - "flags": 31, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1260107933 - }, - "m_madlibs": { - "type": "class ActorMadlib*", - "id": 2, - "offset": 128, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2877219372 - }, - "m_dialogEvents": { - "type": "std::string", - "id": 3, - "offset": 152, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2778675200 - }, - "m_noAggroWhileDialogIsUp": { - "type": "bool", - "id": 4, - "offset": 168, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1753481610 - }, - "m_noAggroNoDelay": { - "type": "bool", - "id": 5, - "offset": 169, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1784936140 - } - } - }, - "1744235026": { - "name": "class WinAnimMoveToLocationTimeEase*", - "bases": [ - "WinAnimMoveToLocationTime", - "WinAnimMoveToLocation", - "WindowAnimation", - "PropertyClass" - ], - "hash": 1744235026, - "properties": { - "m_bUseDeepCopy": { - "type": "bool", - "id": 0, - "offset": 72, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 433380635 - }, - "m_targetLocation": { - "type": "class Vector3D", - "id": 1, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2653859938 - }, - "m_fTimeRemaining": { - "type": "float", - "id": 2, - "offset": 100, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1591443014 - }, - "m_fTimeTotal": { - "type": "float", - "id": 3, - "offset": 96, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 661225456 - }, - "m_fEaseInPercent": { - "type": "float", - "id": 4, - "offset": 120, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1482967843 - }, - "m_fEaseOutPercent": { - "type": "float", - "id": 5, - "offset": 124, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1272154212 - }, - "m_fTotalDistance": { - "type": "float", - "id": 6, - "offset": 128, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1894338732 - } - } - }, - "185554230": { - "name": "class DeckBehaviorTemplate*", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 185554230, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - }, - "m_defaultDeck": { - "type": "std::string", - "id": 1, - "offset": 120, - "flags": 268435463, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2375433463, - "enum_options": { - "__BASECLASS": "DeckTemplate" - } - }, - "m_primarySchoolName": { - "type": "std::string", - "id": 2, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3211370408 - }, - "m_genericMaxRank": { - "type": "int", - "id": 3, - "offset": 188, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1490181353 - }, - "m_schoolMaxRank": { - "type": "int", - "id": 4, - "offset": 192, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1600140084 - }, - "m_genericMaxInstances": { - "type": "int", - "id": 5, - "offset": 196, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1724791269 - }, - "m_schoolMaxInstances": { - "type": "int", - "id": 6, - "offset": 200, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1818539792 - }, - "m_maxSpells": { - "type": "int", - "id": 7, - "offset": 204, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 818580275 - }, - "m_maxTreasureCards": { - "type": "int", - "id": 8, - "offset": 208, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 383300312 - }, - "m_maxArchmasteryPoints": { - "type": "float", - "id": 9, - "offset": 212, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 430012637 - } - } - }, - "970913117": { - "name": "class SpellData*", - "bases": [ - "PropertyClass" - ], - "hash": 970913117, - "properties": { - "m_templateID": { - "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1286746870 - }, - "m_enchantment": { - "type": "unsigned int", - "id": 1, - "offset": 76, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2217886818 - }, - "m_quantity": { - "type": "unsigned int", - "id": 2, - "offset": 80, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 380617740 - } - } - }, - "584917935": { - "name": "class ControlLine*", - "bases": [ - "Window", - "PropertyClass" - ], - "hash": 584917935, - "properties": { - "m_sName": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306437263 - }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621225959 - }, - "m_Style": { - "type": "unsigned int", - "id": 2, - "offset": 152, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "SCALE_CHILDREN": 2, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "FOCUS_LOCKED": 64, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152 - } - }, - "m_Flags": { - "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } - }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3105139380 - }, - "m_fTargetAlpha": { - "type": "float", - "id": 5, - "offset": 212, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1809129834 - }, - "m_fDisabledAlpha": { - "type": "float", - "id": 6, - "offset": 216, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1389987675 - }, - "m_fAlpha": { - "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 482130755 - }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3623628394 - }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2102211316 - }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1846695875 - }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3389835433 - }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2547159940 - }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2587533771 - }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3091503757 - }, - "m_Color": { - "type": "class Color", - "id": 16, - "offset": 584, - "flags": 262279, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1753714077 - } - } - }, - "971012085": { - "name": "class SharedPointer", - "bases": [ - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 971012085, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - } - } - }, - "1745417124": { - "name": "class MonsterMagicWorldTotalList", - "bases": [ - "PropertyClass" - ], - "hash": 1745417124, - "properties": { - "m_monsterMagicWorldTotalList": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 3735585298 - } - } - }, - "186499850": { - "name": "class StopHangingRotationCinematicAction*", - "bases": [ - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 186499850, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - }, - "m_cloaked": { - "type": "bool", - "id": 2, - "offset": 124, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 7349510 - }, - "m_type": { - "type": "enum StopHangingRotationCinematicAction::kStopHangingTypes", - "id": 3, - "offset": 120, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2339468071, - "enum_options": { - "kStopHanging_Burn": 0, - "kStopHanging_Add": 1 - } - } - } - }, - "1744590945": { - "name": "class PetGameConfig*", - "bases": [ - "PropertyClass" - ], - "hash": 1744590945, - "properties": { - "m_games": { - "type": "class SharedPointer", - "id": 0, - "offset": 80, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": true, - "pointer": true, - "hash": 2009270740 - } - } - }, - "186228234": { - "name": "class SharedPointer", - "bases": [ - "AnimatePipsCinematicAction", - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 186228234, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - }, - "m_sActorPrefix": { - "type": "std::string", - "id": 2, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3246317205 - }, - "m_fPerPipDelay": { - "type": "float", - "id": 3, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1466507836 - }, - "m_fRate": { - "type": "float", - "id": 4, - "offset": 156, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 883665801 - } - } - }, - "585174517": { - "name": "class DailyQuestInfo*", - "bases": [ - "PropertyClass" - ], - "hash": 585174517, - "properties": { - "m_circleNumber": { - "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2324347272 - }, - "m_templateID": { - "type": "unsigned int", - "id": 1, - "offset": 76, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1286746870 - }, - "m_zonePath": { - "type": "std::string", - "id": 2, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2171239844 - }, - "m_activatorVolumeName": { - "type": "std::string", - "id": 3, - "offset": 112, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2802025985 - }, - "m_locationDisplayName": { - "type": "std::string", - "id": 4, - "offset": 144, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2796282603 - }, - "m_zoneDisplayName": { - "type": "std::string", - "id": 5, - "offset": 176, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1962339438 - }, - "m_overrideOffer": { - "type": "std::string", - "id": 6, - "offset": 208, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2733092717 - }, - "m_overrideCompleted": { - "type": "std::string", - "id": 7, - "offset": 240, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2887301912 - } - } - }, - "585174357": { - "name": "class DailyQuestInfo", - "bases": [ - "PropertyClass" - ], - "hash": 585174357, - "properties": { - "m_circleNumber": { - "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2324347272 - }, - "m_templateID": { - "type": "unsigned int", - "id": 1, - "offset": 76, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1286746870 - }, - "m_zonePath": { - "type": "std::string", - "id": 2, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2171239844 - }, - "m_activatorVolumeName": { - "type": "std::string", - "id": 3, - "offset": 112, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2802025985 - }, - "m_locationDisplayName": { - "type": "std::string", - "id": 4, - "offset": 144, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2796282603 - }, - "m_zoneDisplayName": { - "type": "std::string", - "id": 5, - "offset": 176, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1962339438 - }, - "m_overrideOffer": { - "type": "std::string", - "id": 6, - "offset": 208, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2733092717 - }, - "m_overrideCompleted": { - "type": "std::string", - "id": 7, - "offset": 240, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2887301912 - } - } - }, - "972417074": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 972417074, - "properties": { - "m_characterID": { - "type": "gid", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 210498386 - }, - "m_nameBlob": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3058206907 - }, - "m_schoolLevel": { - "type": "unsigned int", - "id": 2, - "offset": 112, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 221776365 - }, - "m_objectID": { - "type": "gid", - "id": 3, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 257032380 - } - } - }, - "1744590948": { - "name": "class PetGameConfig", - "bases": [ - "PropertyClass" - ], - "hash": 1744590948, - "properties": { - "m_games": { - "type": "class SharedPointer", - "id": 0, - "offset": 80, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": true, - "pointer": true, - "hash": 2009270740 - } - } - }, - "186498713": { - "name": "class SharedPointer", - "bases": [ - "RandomSpellEffect", - "SpellEffect", - "PropertyClass" - ], - "hash": 186498713, - "properties": { - "m_effectType": { - "type": "enum SpellEffect::kSpellEffects", - "id": 0, - "offset": 72, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2578255295, - "enum_options": { - "kInvalidSpellEffect": 0, - "kDamage": 1, - "kDamageNoCrit": 2, - "kHeal": 3, - "kHealPercent": 4, - "kSetHealPercent": 113, - "kStealHealth": 5, - "kReduceOverTime": 6, - "kDetonateOverTime": 7, - "kPushCharm": 8, - "kStealCharm": 9, - "kPushWard": 10, - "kStealWard": 11, - "kPushOverTime": 12, - "kStealOverTime": 13, - "kRemoveCharm": 14, - "kRemoveWard": 15, - "kRemoveOverTime": 16, - "kRemoveAura": 17, - "kSwapAll": 18, - "kSwapCharm": 19, - "kSwapWard": 20, - "kSwapOverTime": 21, - "kModifyIncomingDamage": 22, - "kModifyIncomingDamageFlat": 119, - "kMaximumIncomingDamage": 23, - "kModifyIncomingHeal": 24, - "kModifyIncomingHealFlat": 118, - "kModifyIncomingDamageType": 25, - "kModifyIncomingArmorPiercing": 26, - "kModifyOutgoingDamage": 27, - "kModifyOutgoingDamageFlat": 121, - "kModifyOutgoingHeal": 28, - "kModifyOutgoingHealFlat": 120, - "kModifyOutgoingDamageType": 29, - "kModifyOutgoingArmorPiercing": 30, - "kModifyOutgoingStealHealth": 31, - "kModifyIncomingStealHealth": 32, - "kBounceNext": 33, - "kBouncePrevious": 34, - "kBounceBack": 35, - "kBounceAll": 36, - "kAbsorbDamage": 37, - "kAbsorbHeal": 38, - "kModifyAccuracy": 39, - "kDispel": 40, - "kConfusion": 41, - "kCloakedCharm": 42, - "kCloakedWard": 43, - "kStunResist": 44, - "kClue": 111, - "kPipConversion": 45, - "kCritBoost": 46, - "kCritBlock": 47, - "kPolymorph": 48, - "kDelayCast": 49, - "kModifyCardCloak": 50, - "kModifyCardDamage": 51, - "kModifyCardAccuracy": 53, - "kModifyCardMutation": 54, - "kModifyCardRank": 55, - "kModifyCardArmorPiercing": 56, - "kSummonCreature": 65, - "kTeleportPlayer": 66, - "kStun": 67, - "kDampen": 68, - "kReshuffle": 69, - "kMindControl": 70, - "kModifyPips": 71, - "kModifyPowerPips": 72, - "kModifyShadowPips": 73, - "kModifyHate": 74, - "kDamageOverTime": 75, - "kHealOverTime": 76, - "kModifyPowerPipChance": 77, - "kModifyRank": 78, - "kStunBlock": 79, - "kRevealCloak": 80, - "kInstantKill": 81, - "kAfterlife": 82, - "kDeferredDamage": 83, - "kDamagePerTotalPipPower": 84, - "kModifyCardHeal": 52, - "kModifyCardCharm": 57, - "kModifyCardWard": 58, - "kModifyCardOutgoingDamage": 59, - "kModifyCardOutgoingAccuracy": 60, - "kModifyCardOutgoingHeal": 61, - "kModifyCardOutgoingArmorPiercing": 62, - "kModifyCardIncomingDamage": 63, - "kModifyCardAbsorbDamage": 64, - "kCloakedWardNoRemove": 86, - "kAddCombatTriggerList": 87, - "kRemoveCombatTriggerList": 88, - "kBacklashDamage": 89, - "kModifyBacklash": 90, - "kIntercept": 91, - "kShadowSelf": 92, - "kShadowCreature": 93, - "kModifyShadowCreatureLevel": 94, - "kSelectShadowCreatureAttackTarget": 95, - "kShadowDecrementTurn": 96, - "kCritBoostSchoolSpecific": 97, - "kSpawnCreature": 98, - "kUnPolymorph": 99, - "kPowerPipConversion": 100, - "kProtectCardBeneficial": 101, - "kProtectCardHarmful": 102, - "kProtectBeneficial": 103, - "kProtectHarmful": 104, - "kDivideDamage": 105, - "kCollectEssence": 106, - "kKillCreature": 107, - "kDispelBlock": 108, - "kConfusionBlock": 109, - "kModifyPipRoundRate": 110, - "kMaxHealthDamage": 112, - "kUntargetable": 114, - "kMakeTargetable": 115, - "kForceTargetable": 116, - "kRemoveStunBlock": 117, - "kExitCombat": 122, - "kSuspendPips": 123, - "kResumePips": 124, - "kAutoPass": 125, - "kStopAutoPass": 126, - "kVanish": 127, - "kStopVanish": 128, - "kMaxHealthHeal": 129, - "kHealByWard": 130, - "kTaunt": 131, - "kPacify": 132, - "kRemoveTargetRestriction": 133, - "kConvertHangingEffect": 134, - "kAddSpellToDeck": 135, - "kAddSpellToHand": 136, - "kModifyIncomingDamageOverTime": 137, - "kModifyIncomingHealOverTime": 138, - "kModifyCardDamagebyRank": 139, - "kPushConvertedCharm": 140, - "kStealConvertedCharm": 141, - "kPushConvertedWard": 142, - "kStealConvertedWard": 143, - "kPushConvertedOverTime": 144, - "kStealConvertedOverTime": 145, - "kRemoveConvertedCharm": 146, - "kRemoveConvertedWard": 147, - "kRemoveConvertedOverTime": 148, - "kModifyOverTimeDuration": 149, - "kModifySchoolPips": 150 - } - }, - "m_effectParam": { - "type": "int", - "id": 1, - "offset": 76, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 357920024 - }, - "m_disposition": { - "type": "enum SpellEffect::kHangingDisposition", - "id": 2, - "offset": 80, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1904841031, - "enum_options": { - "kBoth": 0, - "kBeneficial": 1, - "kHarmful": 2 - } - }, - "m_sDamageType": { - "type": "std::string", - "id": 3, - "offset": 88, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2501054223 - }, - "m_damageType": { - "type": "unsigned int", - "id": 4, - "offset": 84, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 737882766 - }, - "m_pipNum": { - "type": "int", - "id": 5, - "offset": 128, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 830827539 - }, - "m_actNum": { - "type": "int", - "id": 6, - "offset": 132, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 236824866 - }, - "m_effectTarget": { - "type": "enum SpellEffect::kEffectTarget", - "id": 7, - "offset": 140, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2458940523, - "enum_options": { - "kInvalidTarget": 0, - "kSpell": 1, - "kSpecificSpells": 2, - "kGlobal": 3, - "kEnemyTeam": 4, - "kEnemyTeamAllAtOnce": 5, - "kFriendlyTeam": 6, - "kFriendlyTeamAllAtOnce": 7, - "kEnemySingle": 8, - "kFriendlySingle": 9, - "kMinion": 10, - "kFriendlyMinion": 17, - "kEnemyMinion": 18, - "kSelf": 11, - "kAtLeastOneEnemy": 13, - "kPreselectedEnemySingle": 12, - "kMultiTargetEnemy": 14, - "kMultiTargetFriendly": 15, - "kFriendlySingleNotMe": 16 - } - }, - "m_numRounds": { - "type": "int", - "id": 8, - "offset": 144, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1229753829 - }, - "m_paramPerRound": { - "type": "int", - "id": 9, - "offset": 148, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 683234234 - }, - "m_healModifier": { - "type": "float", - "id": 10, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1317921248, - "enum_options": { - "__DEFAULT": "1.0" - } - }, - "m_spellTemplateID": { - "type": "unsigned int", - "id": 11, - "offset": 120, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 585567702 - }, - "m_enchantmentSpellTemplateID": { - "type": "unsigned int", - "id": 12, - "offset": 124, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 246955115 - }, - "m_act": { - "type": "bool", - "id": 13, - "offset": 136, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 269510283 - }, - "m_cloaked": { - "type": "bool", - "id": 14, - "offset": 157, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 7349510 - }, - "m_bypassProtection": { - "type": "bool", - "id": 15, - "offset": 159, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1657138252 - }, - "m_armorPiercingParam": { - "type": "int", - "id": 16, - "offset": 160, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2025530205 - }, - "m_chancePerTarget": { - "type": "int", - "id": 17, - "offset": 164, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 845426794 - }, - "m_protected": { - "type": "bool", - "id": 18, - "offset": 168, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1445655037 - }, - "m_converted": { - "type": "bool", - "id": 19, - "offset": 169, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1590428797 - }, - "m_rank": { - "type": "int", - "id": 20, - "offset": 208, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 219803942 - }, - "m_effectList": { - "type": "class SharedPointer", - "id": 21, - "offset": 224, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 707154804 - } - } - }, - "971982829": { - "name": "class ReqCanSummonHenchman*", - "bases": [ - "Requirement", - "PropertyClass" - ], - "hash": 971982829, - "properties": { - "m_applyNOT": { - "type": "bool", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1746328074, - "enum_options": { - "__DEFAULT": 0 - } - }, - "m_operator": { - "type": "enum Requirement::Operator", - "id": 1, - "offset": 76, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2672792317, - "enum_options": { - "ROP_AND": 0, - "ROP_OR": 1, - "__DEFAULT": "ROP_AND" - } - } - } - }, - "971982789": { - "name": "class ReqCanSummonHenchman", - "bases": [ - "Requirement", - "PropertyClass" - ], - "hash": 971982789, - "properties": { - "m_applyNOT": { - "type": "bool", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1746328074, - "enum_options": { - "__DEFAULT": 0 - } - }, - "m_operator": { - "type": "enum Requirement::Operator", - "id": 1, - "offset": 76, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2672792317, - "enum_options": { - "ROP_AND": 0, - "ROP_OR": 1, - "__DEFAULT": "ROP_AND" - } - } - } - }, - "585868517": { - "name": "class FishSellingOption", - "bases": [ - "ServiceOptionBase", - "PropertyClass" - ], - "hash": 585868517, - "properties": { - "m_serviceName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2206028813 - }, - "m_iconKey": { - "type": "std::string", - "id": 1, - "offset": 168, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2457138637 - }, - "m_displayKey": { - "type": "std::string", - "id": 2, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3023276954 - }, - "m_serviceIndex": { - "type": "unsigned int", - "id": 3, - "offset": 204, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2103126710 - }, - "m_forceInteract": { - "type": "bool", - "id": 4, - "offset": 200, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1705789564 - } - } - }, - "1745417134": { - "name": "class MonsterMagicWorldTotalList*", - "bases": [ - "PropertyClass" - ], - "hash": 1745417134, - "properties": { - "m_monsterMagicWorldTotalList": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 3735585298 - } - } - }, - "187425016": { - "name": "class TipFrame", - "bases": [ - "WindowLayout", - "Window", - "PropertyClass" - ], - "hash": 187425016, - "properties": { - "m_sName": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306437263 - }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621225959 - }, - "m_Style": { - "type": "unsigned int", - "id": 2, - "offset": 152, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152, - "H_CENTER": 16777216, - "H_RIGHT": 33554432, - "V_CENTER": 2147483648, - "V_BOTTOM": 67108864, - "SORT": 536870912, - "LAYOUT_VERT": 1073741824, - "LAYOUT_REVERSE": 2147483648, - "DO_NOT_WRAP": 134217728 - } - }, - "m_Flags": { - "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } - }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3105139380 - }, - "m_fTargetAlpha": { - "type": "float", - "id": 5, - "offset": 212, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1809129834 - }, - "m_fDisabledAlpha": { - "type": "float", - "id": 6, - "offset": 216, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1389987675 - }, - "m_fAlpha": { - "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 482130755 - }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3623628394 - }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2102211316 - }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1846695875 - }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3389835433 - }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2547159940 - }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2587533771 - }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3091503757 - }, - "m_nHSpacing": { - "type": "int", - "id": 16, - "offset": 584, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 893611957 - }, - "m_nVSpacing": { - "type": "int", - "id": 17, - "offset": 588, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 551359491 - } - } - }, - "585372564": { - "name": "class InvisibilityEffect", - "bases": [ - "GameEffectBase", - "PropertyClass" - ], - "hash": 585372564, - "properties": { - "m_currentTickCount": { - "type": "double", - "id": 0, - "offset": 80, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2533274692 - }, - "m_effectNameID": { - "type": "unsigned int", - "id": 1, - "offset": 96, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1204067144 - }, - "m_bIsOnPet": { - "type": "bool", - "id": 2, - "offset": 73, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 522593303 - }, - "m_originatorID": { - "type": "gid", - "id": 3, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1131810019 - }, - "m_itemSlotID": { - "type": "unsigned int", - "id": 4, - "offset": 112, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1895747595 - }, - "m_internalID": { - "type": "int", - "id": 5, - "offset": 92, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1643137924 - }, - "m_endTime": { - "type": "unsigned int", - "id": 6, - "offset": 88, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 716479635 - } - } - }, - "186501386": { - "name": "class StopHangingRotationCinematicAction", - "bases": [ - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 186501386, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - }, - "m_cloaked": { - "type": "bool", - "id": 2, - "offset": 124, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 7349510 - }, - "m_type": { - "type": "enum StopHangingRotationCinematicAction::kStopHangingTypes", - "id": 3, - "offset": 120, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2339468071, - "enum_options": { - "kStopHanging_Burn": 0, - "kStopHanging_Add": 1 - } - } - } - }, - "972235290": { - "name": "class SharedPointer", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 972235290, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - } - } - }, - "1745458179": { - "name": "class SharedPointer", - "bases": [ - "PortraitWindow", - "Window", - "PropertyClass" - ], - "hash": 1745458179, - "properties": { - "m_sName": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306437263 - }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621225959 - }, - "m_Style": { - "type": "unsigned int", - "id": 2, - "offset": 152, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "SCALE_CHILDREN": 2, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "FOCUS_LOCKED": 64, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152 - } - }, - "m_Flags": { - "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } - }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3105139380 - }, - "m_fTargetAlpha": { - "type": "float", - "id": 5, - "offset": 212, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1809129834 - }, - "m_fDisabledAlpha": { - "type": "float", - "id": 6, - "offset": 216, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1389987675 - }, - "m_fAlpha": { - "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 482130755 - }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3623628394 - }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2102211316 - }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1846695875 - }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3389835433 - }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2547159940 - }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2587533771 - }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3091503757 - }, - "m_pMaterial": { - "type": "class SharedPointer", - "id": 16, - "offset": 632, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3479277078 - }, - "m_alphaMask": { - "type": "class SharedPointer", - "id": 17, - "offset": 648, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2624275869 - } - } - }, - "187087308": { - "name": "class ResistLimitOverride", - "bases": [ - "CombatRule", - "PropertyClass" - ], - "hash": 187087308, - "properties": { - "m_resistLimit": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1192834544 - }, - "m_rK0": { - "type": "float", - "id": 1, - "offset": 76, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 357247908 - }, - "m_rN0": { - "type": "float", - "id": 2, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 357248007 - } - } - }, - "637687903": { - "name": "unsigned char", - "bases": [], - "hash": 637687903, - "properties": {} - }, - "972529497": { - "name": "class SharedPointer", - "bases": [ - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 972529497, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - } - } - }, - "1750459267": { - "name": "class SharedPointer", - "bases": [ - "CinematicAction", - "PropertyClass" - ], - "hash": 1750459267, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - } - } - }, - "604413508": { - "name": "class RateMyStitchOption*", - "bases": [ - "ServiceOptionBase", - "PropertyClass" - ], - "hash": 604413508, - "properties": { - "m_serviceName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2206028813 - }, - "m_iconKey": { - "type": "std::string", - "id": 1, - "offset": 168, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2457138637 - }, - "m_displayKey": { - "type": "std::string", - "id": 2, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3023276954 - }, - "m_serviceIndex": { - "type": "unsigned int", - "id": 3, - "offset": 204, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2103126710 - }, - "m_forceInteract": { - "type": "bool", - "id": 4, - "offset": 200, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1705789564 - } - } - }, - "972419488": { - "name": "class SharedPointer", - "bases": [ - "TimedItemBehaviorTemplate", - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 972419488, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - }, - "m_expireTime": { - "type": "std::string", - "id": 1, - "offset": 128, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3122602039 - }, - "m_timerType": { - "type": "enum TimerType", - "id": 2, - "offset": 120, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 571744132, - "enum_options": { - "TimerType_Game": 0, - "TimerType_Calendar": 1 - } - }, - "m_typeList": { - "type": "std::string", - "id": 3, - "offset": 160, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2119049625 - } - } - }, - "1749171433": { - "name": "class RaidTeleportBehaviorBase", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1749171433, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - } - } - }, - "187425400": { - "name": "class TipFrame*", - "bases": [ - "WindowLayout", - "Window", - "PropertyClass" - ], - "hash": 187425400, - "properties": { - "m_sName": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306437263 - }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621225959 - }, - "m_Style": { - "type": "unsigned int", - "id": 2, - "offset": 152, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152, - "H_CENTER": 16777216, - "H_RIGHT": 33554432, - "V_CENTER": 2147483648, - "V_BOTTOM": 67108864, - "SORT": 536870912, - "LAYOUT_VERT": 1073741824, - "LAYOUT_REVERSE": 2147483648, - "DO_NOT_WRAP": 134217728 - } - }, - "m_Flags": { - "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } - }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3105139380 - }, - "m_fTargetAlpha": { - "type": "float", - "id": 5, - "offset": 212, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1809129834 - }, - "m_fDisabledAlpha": { - "type": "float", - "id": 6, - "offset": 216, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1389987675 - }, - "m_fAlpha": { - "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 482130755 - }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3623628394 - }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2102211316 - }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1846695875 - }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3389835433 - }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2547159940 - }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2587533771 - }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3091503757 - }, - "m_nHSpacing": { - "type": "int", - "id": 16, - "offset": 584, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 893611957 - }, - "m_nVSpacing": { - "type": "int", - "id": 17, - "offset": 588, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 551359491 - } - } - }, - "596429743": { - "name": "class ControlList", - "bases": [ - "ControlText", - "Window", - "PropertyClass" - ], - "hash": 596429743, - "properties": { - "m_sName": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306437263 - }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621225959 - }, - "m_Style": { - "type": "unsigned int", - "id": 2, - "offset": 152, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152, - "ITEM_HEIGHT": 16777216, - "COLUMN_CENTER": 33554432, - "VERTICAL_CENTER": 67108864, - "DO_NOT_WRAP": 134217728, - "IGNORE_KEYBOARD": 536870912 - } - }, - "m_Flags": { - "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } - }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3105139380 - }, - "m_fTargetAlpha": { - "type": "float", - "id": 5, - "offset": 212, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1809129834 - }, - "m_fDisabledAlpha": { - "type": "float", - "id": 6, - "offset": 216, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1389987675 - }, - "m_fAlpha": { - "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 482130755 - }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3623628394 - }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2102211316 - }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1846695875 - }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3389835433 - }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2547159940 - }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2587533771 - }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3091503757 - }, - "m_sText": { - "type": "std::wstring", - "id": 16, - "offset": 584, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2102642960 - }, - "m_sTooltip": { - "type": "std::wstring", - "id": 17, - "offset": 616, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1680475798 - }, - "m_bUseDropShadow": { - "type": "bool", - "id": 18, - "offset": 653, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 93063037 - }, - "m_bUseOutline": { - "type": "bool", - "id": 19, - "offset": 654, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 744292994 - }, - "m_bEnableWordWrap": { - "type": "bool", - "id": 20, - "offset": 655, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 430904562 - }, - "m_bEnableToggle": { - "type": "bool", - "id": 21, - "offset": 652, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1937994142 - }, - "m_nLeadingAdjust": { - "type": "int", - "id": 22, - "offset": 656, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1559480167 - }, - "m_TextColor": { - "type": "class Color", - "id": 23, - "offset": 696, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2267136674 - }, - "m_SelectColor": { - "type": "class Color", - "id": 24, - "offset": 700, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2792529213 - }, - "m_HighlightColor": { - "type": "class Color", - "id": 25, - "offset": 704, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1047198101 - }, - "m_bSortEnable": { - "type": "bool", - "id": 26, - "offset": 784, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 24009764 - }, - "m_nSortByColumn": { - "type": "int", - "id": 27, - "offset": 788, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1829537401 - }, - "m_bSortAscending": { - "type": "bool", - "id": 28, - "offset": 792, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1369222793 - }, - "m_nHighlighted": { - "type": "int", - "id": 29, - "offset": 796, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1020338345 - }, - "m_nSelected": { - "type": "int", - "id": 30, - "offset": 800, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1017366545 - }, - "m_bListInvalid": { - "type": "bool", - "id": 31, - "offset": 804, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 376155128 - }, - "m_bSortInvalid": { - "type": "bool", - "id": 32, - "offset": 805, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1605867140 - }, - "m_pScrollWin": { - "type": "class SharedPointer", - "id": 33, - "offset": 808, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3263557131 - }, - "m_itemHeight": { - "type": "int", - "id": 34, - "offset": 824, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1245325666 - }, - "m_itemNormalState": { - "type": "class ControlList::ListItemState*", - "id": 35, - "offset": 832, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2253036141 - }, - "m_itemHighlightedState": { - "type": "class ControlList::ListItemState*", - "id": 36, - "offset": 840, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2949959141 - }, - "m_itemSelectedState": { - "type": "class ControlList::ListItemState*", - "id": 37, - "offset": 848, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2463527405 - }, - "m_itemDisabledState": { - "type": "class ControlList::ListItemState*", - "id": 38, - "offset": 856, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 4008046876 - } - } - }, - "1747888129": { - "name": "class SharedPointer", - "bases": [ - "GameEffectBase", - "PropertyClass" - ], - "hash": 1747888129, - "properties": { - "m_currentTickCount": { - "type": "double", - "id": 0, - "offset": 80, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2533274692 - }, - "m_effectNameID": { - "type": "unsigned int", - "id": 1, - "offset": 96, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1204067144 - }, - "m_bIsOnPet": { - "type": "bool", - "id": 2, - "offset": 73, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 522593303 - }, - "m_originatorID": { - "type": "gid", - "id": 3, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1131810019 - }, - "m_itemSlotID": { - "type": "unsigned int", - "id": 4, - "offset": 112, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1895747595 - }, - "m_internalID": { - "type": "int", - "id": 5, - "offset": 92, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1643137924 - }, - "m_endTime": { - "type": "unsigned int", - "id": 6, - "offset": 88, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 716479635 - }, - "m_sRace": { - "type": "std::string", - "id": 7, - "offset": 128, - "flags": 268435487, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306580681, - "enum_options": { - "__BASECLASS": "CharacterRaceTable" - } - }, - "m_eGender": { - "type": "enum eGender", - "id": 8, - "offset": 160, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2776344943 - }, - "m_fScale": { - "type": "float", - "id": 9, - "offset": 164, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 503137701 - }, - "m_nPrimaryColor": { - "type": "int", - "id": 10, - "offset": 168, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 310334923 - }, - "m_nSecondaryColor": { - "type": "int", - "id": 11, - "offset": 172, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 516938671 - }, - "m_nPatternOption": { - "type": "int", - "id": 12, - "offset": 176, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 413195679 - }, - "m_nGeometryOption": { - "type": "int", - "id": 13, - "offset": 180, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 676541869 - }, - "m_sNaturalAttack": { - "type": "std::string", - "id": 14, - "offset": 184, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2131867453 - } - } - }, - "587236144": { - "name": "class SharedPointer", - "bases": [ - "BeneficialProximityBehaviorBase", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 587236144, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - } - } - }, - "1746342530": { - "name": "class MobAggroBehavior*", - "bases": [ - "AggroBehavior", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1746342530, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - } - } - }, - "586867051": { - "name": "class MakeTargetableCinematicAction*", - "bases": [ - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 586867051, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - } - } - }, - "1746244226": { - "name": "class MobAggroBehavior", - "bases": [ - "AggroBehavior", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1746244226, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - } - } - }, - "188979109": { - "name": "enum SG_GameAction::SG_Target", - "bases": [], - "hash": 188979109, - "properties": {} - }, - "586342748": { - "name": "class SharedPointer", - "bases": [ - "DerbyEffect", - "PropertyClass" - ], - "hash": 586342748, - "properties": { - "m_buffType": { - "type": "enum DerbyTalentBuffType", - "id": 0, - "offset": 92, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1149251982, - "enum_options": { - "Buff": 0, - "Debuff": 1, - "Neither": 2 - } - }, - "m_kTarget": { - "type": "enum DerbyTargetType", - "id": 1, - "offset": 96, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1807803351, - "enum_options": { - "kTargetInFront": 0, - "kTargetBehind": 1, - "kTargetFirst": 2, - "kTargetSelf": 3, - "kTargetAll": 4, - "kTargetLast": 5 - } - }, - "m_nDuration": { - "type": "int", - "id": 2, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1110167982 - }, - "m_effectID": { - "type": "unsigned int", - "id": 3, - "offset": 88, - "flags": 24, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2347630439 - }, - "m_imageFilename": { - "type": "std::string", - "id": 4, - "offset": 112, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2813328063 - }, - "m_iconIndex": { - "type": "unsigned int", - "id": 5, - "offset": 144, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1265133262 - }, - "m_soundOnActivate": { - "type": "std::string", - "id": 6, - "offset": 152, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1956929714 - }, - "m_soundOnTarget": { - "type": "std::string", - "id": 7, - "offset": 184, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3444214056 - }, - "m_targetParticleEffect": { - "type": "std::string", - "id": 8, - "offset": 216, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3048234723 - }, - "m_overheadMessage": { - "type": "std::string", - "id": 9, - "offset": 248, - "flags": 8388639, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1701018190 - }, - "m_requirements": { - "type": "class RequirementList", - "id": 10, - "offset": 280, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2840988582 - }, - "m_costMap": { - "type": "class TerrainCheerCostMap", - "id": 11, - "offset": 376, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1929931701 - } - } - }, - "975757311": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 975757311, - "properties": { - "m_globalPointLevel": { - "type": "int", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1056567917 - }, - "m_descriptionText": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3396736580 - } - } - }, - "188417868": { - "name": "class ClientBGSigilProxyBehavior", - "bases": [ - "BGSigilProxyBehavior", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 188417868, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_autoCapTimer": { - "type": "class BGSigilTimer", - "id": 1, - "offset": 112, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2270881950 - }, - "m_timerTeam": { - "type": "std::string", - "id": 2, - "offset": 216, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1994153155 - }, - "m_teamOwner": { - "type": "std::string", - "id": 3, - "offset": 248, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3126686637 - }, - "m_combatActive": { - "type": "bool", - "id": 4, - "offset": 280, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1372743333 - }, - "m_captureable": { - "type": "bool", - "id": 5, - "offset": 281, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1101963387 - }, - "m_allowAutoCap": { - "type": "bool", - "id": 6, - "offset": 282, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 946300927 - }, - "m_sigilAggroRange": { - "type": "float", - "id": 7, - "offset": 284, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 995063020 - }, - "m_playerAggroRange": { - "type": "float", - "id": 8, - "offset": 288, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1776075073 - }, - "m_triggerOrientation": { - "type": "class Vector3D", - "id": 9, - "offset": 292, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2671004802 - }, - "m_triggerLocation": { - "type": "class Vector3D", - "id": 10, - "offset": 304, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2573315471 - }, - "m_triggerBox": { - "type": "bool", - "id": 11, - "offset": 316, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 962168144 - }, - "m_width": { - "type": "float", - "id": 12, - "offset": 320, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 904656279 - }, - "m_length": { - "type": "float", - "id": 13, - "offset": 324, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 759698745 - }, - "m_triggerSphere": { - "type": "bool", - "id": 14, - "offset": 328, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1467830382 - }, - "m_radius": { - "type": "float", - "id": 15, - "offset": 332, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 989410271 - }, - "m_inRange": { - "type": "class SharedPointer", - "id": 16, - "offset": 336, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2259190010 - } - } - }, - "586123042": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 586123042, - "properties": { - "m_adventurePartyGID": { - "type": "gid", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2003479882 - }, - "m_adventurePartyName": { - "type": "unsigned int", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1899719436 - }, - "m_adventurePartyNameLocale": { - "type": "int", - "id": 2, - "offset": 84, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 695833705 - }, - "m_creationDate": { - "type": "unsigned int", - "id": 3, - "offset": 88, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2141685120 - }, - "m_ownerGID": { - "type": "gid", - "id": 4, - "offset": 96, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1765087575 - }, - "m_ownerName": { - "type": "std::string", - "id": 5, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1761521415 - }, - "m_purposeType": { - "type": "int", - "id": 6, - "offset": 136, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1148443466 - }, - "m_purposeWorldID": { - "type": "unsigned int", - "id": 7, - "offset": 140, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1790486832 - }, - "m_flags": { - "type": "unsigned int", - "id": 8, - "offset": 144, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1005801050 - }, - "m_equippedHouseInstanceGID": { - "type": "gid", - "id": 9, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 63247330 - }, - "m_equippedInteriorInstanceGID": { - "type": "gid", - "id": 10, - "offset": 160, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1578260586 - }, - "m_adventurePartyMemberList": { - "type": "class SharedPointer", - "id": 11, - "offset": 168, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2861967351 - }, - "m_messageBoardList": { - "type": "class SharedPointer", - "id": 12, - "offset": 184, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2175215327 - }, - "m_renameCooldownTime": { - "type": "unsigned int", - "id": 13, - "offset": 200, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 762261177 - }, - "m_newOwnerTime": { - "type": "unsigned int", - "id": 14, - "offset": 204, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 453769201 - } - } - }, - "975017639": { - "name": "class SigilCamera", - "bases": [ - "PropertyClass" - ], - "hash": 975017639, - "properties": { - "m_cameraName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3252786917 - }, - "m_overrideName": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1990707228 - }, - "m_fMinHeight": { - "type": "float", - "id": 2, - "offset": 136, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2189896538 - } - } - }, - "188334317": { - "name": "class SharedPointer", - "bases": [ - "ObstacleCourseObstacleBehavior", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 188334317, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - } - } - }, - "974112325": { - "name": "class ReqBaseMagicLevel*", - "bases": [ - "ReqNumeric", - "Requirement", - "PropertyClass" - ], - "hash": 974112325, - "properties": { - "m_applyNOT": { - "type": "bool", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1746328074, - "enum_options": { - "__DEFAULT": 0 - } - }, - "m_operator": { - "type": "enum Requirement::Operator", - "id": 1, - "offset": 76, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2672792317, - "enum_options": { - "ROP_AND": 0, - "ROP_OR": 1, - "__DEFAULT": "ROP_AND" - } - }, - "m_numericValue": { - "type": "float", - "id": 2, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 521915239 - }, - "m_operatorType": { - "type": "enum ReqNumeric::OPERATOR_TYPE", - "id": 3, - "offset": 84, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2228122961, - "enum_options": { - "OPERATOR_UNKNOWN": 4294967295, - "OPERATOR_EQUALS": 0, - "OPERATOR_GREATER_THAN": 1, - "OPERATOR_LESS_THAN": 2, - "OPERATOR_GREATER_THAN_EQ": 3, - "OPERATOR_LESS_THAN_EQ": 4 - } - }, - "m_magicSchool": { - "type": "std::string", - "id": 4, - "offset": 88, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1597012900 - } - } - }, - "1747063668": { - "name": "class DuelModifier", - "bases": [ - "PropertyClass" - ], - "hash": 1747063668, - "properties": { - "m_combatTriggers": { - "type": "std::string", - "id": 0, - "offset": 104, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 3023646200 - }, - "m_noTreasureCards": { - "type": "bool", - "id": 1, - "offset": 137, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1653008424 - }, - "m_battlefieldEffects": { - "type": "class SharedPointer", - "id": 2, - "offset": 72, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1245973515 - }, - "m_gameEffects": { - "type": "class SharedPointer", - "id": 3, - "offset": 88, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1187421775 - }, - "m_onlyTreasureCards": { - "type": "bool", - "id": 4, - "offset": 138, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 752220749 - }, - "m_noShadowSpells": { - "type": "bool", - "id": 5, - "offset": 139, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2142185705 - }, - "m_noCrits": { - "type": "bool", - "id": 6, - "offset": 136, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1394430197 - }, - "m_noEnchantedTreasureCards": { - "type": "bool", - "id": 7, - "offset": 140, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1780948882 - }, - "m_noEnchantmentSpells": { - "type": "bool", - "id": 8, - "offset": 141, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1325982520 - }, - "m_noMaycastSpells": { - "type": "bool", - "id": 9, - "offset": 142, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1409034133 - }, - "m_enableSpellLevelRestrictions": { - "type": "bool", - "id": 10, - "offset": 143, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1272415451 - }, - "m_ignoreSpellsPvPOnlyFlag": { - "type": "bool", - "id": 11, - "offset": 144, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1714276188 - }, - "m_ignoreSpellsPvEOnlyFlag": { - "type": "bool", - "id": 12, - "offset": 145, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1691675729 - }, - "m_requiredSpellsAdjectives": { - "type": "int", - "id": 13, - "offset": 152, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1262019376 - }, - "m_bannedSpellsAdjectives": { - "type": "int", - "id": 14, - "offset": 168, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1474039287 - } - } - }, - "187586277": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 187586277, - "properties": { - "m_characterGID": { - "type": "gid", - "id": 0, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 501688601 - }, - "m_nameBlob": { - "type": "std::string", - "id": 1, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3058206907 - }, - "m_schoolCode": { - "type": "unsigned int", - "id": 2, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2098672048 - }, - "m_zoneDisplayName": { - "type": "std::string", - "id": 3, - "offset": 112, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1962339438 - }, - "m_level": { - "type": "unsigned char", - "id": 4, - "offset": 144, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1438884808 - }, - "m_groupStatus": { - "type": "unsigned char", - "id": 5, - "offset": 145, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1901216097 - }, - "m_hasFreeChat": { - "type": "unsigned char", - "id": 6, - "offset": 160, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1722302062 - }, - "m_isOnline": { - "type": "bool", - "id": 7, - "offset": 161, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1681359252 - } - } - }, - "586576885": { - "name": "class CombatCheatSettings*", - "bases": [ - "PropertyClass" - ], - "hash": 586576885, - "properties": { - "m_settings": { - "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1279804446 - }, - "m_maycastChance": { - "type": "float", - "id": 1, - "offset": 76, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1532158347 - } - } - }, - "975260560": { - "name": "class InteractiveMusicBehaviorTemplate*", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 975260560, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - }, - "m_titleText": { - "type": "std::string", - "id": 1, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2703025890 - }, - "m_instrumentGUI": { - "type": "std::string", - "id": 2, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1548997465 - }, - "m_useAlternateHighlighting": { - "type": "int", - "id": 3, - "offset": 184, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 275839645 - }, - "m_buttonSampleList": { - "type": "class SharedPointer", - "id": 4, - "offset": 192, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2024362058 - }, - "m_musicLoopList": { - "type": "class SharedPointer", - "id": 5, - "offset": 208, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2490589385 - } - } - }, - "1749033089": { - "name": "class DerbyModifyCheerCost*", - "bases": [ - "DerbyEffect", - "PropertyClass" - ], - "hash": 1749033089, - "properties": { - "m_buffType": { - "type": "enum DerbyTalentBuffType", - "id": 0, - "offset": 92, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1149251982, - "enum_options": { - "Buff": 0, - "Debuff": 1, - "Neither": 2 - } - }, - "m_kTarget": { - "type": "enum DerbyTargetType", - "id": 1, - "offset": 96, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1807803351, - "enum_options": { - "kTargetInFront": 0, - "kTargetBehind": 1, - "kTargetFirst": 2, - "kTargetSelf": 3, - "kTargetAll": 4, - "kTargetLast": 5 - } - }, - "m_nDuration": { - "type": "int", - "id": 2, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1110167982 - }, - "m_effectID": { - "type": "unsigned int", - "id": 3, - "offset": 88, - "flags": 24, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2347630439 - }, - "m_imageFilename": { - "type": "std::string", - "id": 4, - "offset": 112, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2813328063 - }, - "m_iconIndex": { - "type": "unsigned int", - "id": 5, - "offset": 144, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1265133262 - }, - "m_soundOnActivate": { - "type": "std::string", - "id": 6, - "offset": 152, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1956929714 - }, - "m_soundOnTarget": { - "type": "std::string", - "id": 7, - "offset": 184, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3444214056 - }, - "m_targetParticleEffect": { - "type": "std::string", - "id": 8, - "offset": 216, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3048234723 - }, - "m_overheadMessage": { - "type": "std::string", - "id": 9, - "offset": 248, - "flags": 8388639, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1701018190 - }, - "m_requirements": { - "type": "class RequirementList", - "id": 10, - "offset": 280, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2840988582 - }, - "m_costMap": { - "type": "class TerrainCheerCostMap", - "id": 11, - "offset": 376, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1929931701 - } - } - }, - "188417858": { - "name": "class ClientBGSigilProxyBehavior*", - "bases": [ - "BGSigilProxyBehavior", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 188417858, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_autoCapTimer": { - "type": "class BGSigilTimer", - "id": 1, - "offset": 112, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2270881950 - }, - "m_timerTeam": { - "type": "std::string", - "id": 2, - "offset": 216, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1994153155 - }, - "m_teamOwner": { - "type": "std::string", - "id": 3, - "offset": 248, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3126686637 - }, - "m_combatActive": { - "type": "bool", - "id": 4, - "offset": 280, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1372743333 - }, - "m_captureable": { - "type": "bool", - "id": 5, - "offset": 281, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1101963387 - }, - "m_allowAutoCap": { - "type": "bool", - "id": 6, - "offset": 282, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 946300927 - }, - "m_sigilAggroRange": { - "type": "float", - "id": 7, - "offset": 284, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 995063020 - }, - "m_playerAggroRange": { - "type": "float", - "id": 8, - "offset": 288, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1776075073 - }, - "m_triggerOrientation": { - "type": "class Vector3D", - "id": 9, - "offset": 292, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2671004802 - }, - "m_triggerLocation": { - "type": "class Vector3D", - "id": 10, - "offset": 304, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2573315471 - }, - "m_triggerBox": { - "type": "bool", - "id": 11, - "offset": 316, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 962168144 - }, - "m_width": { - "type": "float", - "id": 12, - "offset": 320, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 904656279 - }, - "m_length": { - "type": "float", - "id": 13, - "offset": 324, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 759698745 - }, - "m_triggerSphere": { - "type": "bool", - "id": 14, - "offset": 328, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1467830382 - }, - "m_radius": { - "type": "float", - "id": 15, - "offset": 332, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 989410271 - }, - "m_inRange": { - "type": "class SharedPointer", - "id": 16, - "offset": 336, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2259190010 - } - } - }, - "586649239": { - "name": "class ReqGoldBagPercent*", - "bases": [ - "ReqNumeric", - "Requirement", - "PropertyClass" - ], - "hash": 586649239, - "properties": { - "m_applyNOT": { - "type": "bool", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1746328074, - "enum_options": { - "__DEFAULT": 0 - } - }, - "m_operator": { - "type": "enum Requirement::Operator", - "id": 1, - "offset": 76, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2672792317, - "enum_options": { - "ROP_AND": 0, - "ROP_OR": 1, - "__DEFAULT": "ROP_AND" - } - }, - "m_numericValue": { - "type": "float", - "id": 2, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 521915239 - }, - "m_operatorType": { - "type": "enum ReqNumeric::OPERATOR_TYPE", - "id": 3, - "offset": 84, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2228122961, - "enum_options": { - "OPERATOR_UNKNOWN": 4294967295, - "OPERATOR_EQUALS": 0, - "OPERATOR_GREATER_THAN": 1, - "OPERATOR_LESS_THAN": 2, - "OPERATOR_GREATER_THAN_EQ": 3, - "OPERATOR_LESS_THAN_EQ": 4 - } - } - } - }, - "1748154660": { - "name": "class ZoneTickEffectInfo", - "bases": [ - "GameEffectInfo", - "PropertyClass" - ], - "hash": 1748154660, - "properties": { - "m_effectName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2029161513 - }, - "m_tickOnAdd": { - "type": "bool", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 663357284 - }, - "m_zoneEventName": { - "type": "std::string", - "id": 2, - "offset": 112, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2601481434 - }, - "m_tickRateSec": { - "type": "float", - "id": 3, - "offset": 144, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1559681353 - }, - "m_maxTicks": { - "type": "int", - "id": 4, - "offset": 148, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 155973918 - } - } - }, - "975470997": { - "name": "class SharedPointer", - "bases": [ - "GameEffectInfo", - "PropertyClass" - ], - "hash": 975470997, - "properties": { - "m_effectName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2029161513 - }, - "m_tickOnAdd": { - "type": "bool", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 663357284 - }, - "m_zoneEventName": { - "type": "std::string", - "id": 2, - "offset": 112, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2601481434 - }, - "m_tickRateSec": { - "type": "float", - "id": 3, - "offset": 144, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1559681353 - }, - "m_maxTicks": { - "type": "int", - "id": 4, - "offset": 148, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 155973918 - } - } - }, - "1748894102": { - "name": "class ClientPetSnackItem", - "bases": [ - "WizClientObjectItem", - "ClientObject", - "CoreObject", - "PropertyClass" - ], - "hash": 1748894102, - "properties": { - "m_inactiveBehaviors": { - "type": "class SharedPointer", - "id": 0, - "offset": 224, - "flags": 31, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1850812559 - }, - "m_globalID.m_full": { - "type": "unsigned __int64", - "id": 1, - "offset": 72, - "flags": 16777247, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2312465444 - }, - "m_permID": { - "type": "unsigned __int64", - "id": 2, - "offset": 80, - "flags": 16777247, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1298909658 - }, - "m_location": { - "type": "class Vector3D", - "id": 3, - "offset": 168, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2239683611 - }, - "m_orientation": { - "type": "class Vector3D", - "id": 4, - "offset": 180, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2344058766 - }, - "m_fScale": { - "type": "float", - "id": 5, - "offset": 196, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 503137701 - }, - "m_templateID.m_full": { - "type": "unsigned __int64", - "id": 6, - "offset": 96, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 633907631 - }, - "m_debugName": { - "type": "std::string", - "id": 7, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3553984419 - }, - "m_displayKey": { - "type": "std::string", - "id": 8, - "offset": 136, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3023276954 - }, - "m_zoneTagID": { - "type": "unsigned int", - "id": 9, - "offset": 344, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 965291410 - }, - "m_speedMultiplier": { - "type": "short", - "id": 10, - "offset": 192, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 123130076 - }, - "m_nMobileID": { - "type": "unsigned short", - "id": 11, - "offset": 194, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1054318939 - }, - "m_characterId": { - "type": "gid", - "id": 12, - "offset": 440, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 210498418 - }, - "m_primaryColor": { - "type": "int", - "id": 13, - "offset": 560, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 900965981 - }, - "m_pattern": { - "type": "int", - "id": 14, - "offset": 564, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1337683384 - }, - "m_secondaryColor": { - "type": "int", - "id": 15, - "offset": 568, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1616550081 - }, - "m_displayID": { - "type": "gid", - "id": 16, - "offset": 576, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1022427803 - }, - "m_itemFlags": { - "type": "unsigned int", - "id": 17, - "offset": 584, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2004128457 - }, - "m_quantity": { - "type": "int", - "id": 18, - "offset": 600, - "flags": 27, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 169215289 - } - } - }, - "188519115": { - "name": "class ObstacleCourseCatapultBehavior", - "bases": [ - "ObstacleCourseObstacleBehavior", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 188519115, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - } - } - }, - "586907222": { - "name": "class ControlCheckBox", - "bases": [ - "ControlButton", - "Window", - "PropertyClass" - ], - "hash": 586907222, - "properties": { - "m_sName": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306437263 - }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621225959 - }, - "m_Style": { - "type": "unsigned int", - "id": 2, - "offset": 152, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152, - "EFFECT_SCALE": 67108864, - "LOCK_ICON_SIZE": 33554432, - "LEFT_TEXT": 536870912, - "NO_FIT_TEXT": 1073741824, - "CHECKBOX_TEXTOVERIMAGE": 16777216 - } - }, - "m_Flags": { - "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } - }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3105139380 - }, - "m_fTargetAlpha": { - "type": "float", - "id": 5, - "offset": 212, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1809129834 - }, - "m_fDisabledAlpha": { - "type": "float", - "id": 6, - "offset": 216, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1389987675 - }, - "m_fAlpha": { - "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 482130755 - }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3623628394 - }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2102211316 - }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1846695875 - }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3389835433 - }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2547159940 - }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2587533771 - }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3091503757 - }, - "m_bToggle": { - "type": "bool", - "id": 16, - "offset": 608, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2071810903 - }, - "m_bButtonDown": { - "type": "bool", - "id": 17, - "offset": 609, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 840041705 - }, - "m_sLabel": { - "type": "std::wstring", - "id": 18, - "offset": 616, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2207009163 - }, - "m_labelOffset": { - "type": "class Rect", - "id": 19, - "offset": 832, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1990646723 - }, - "m_pButton": { - "type": "class SharedPointer", - "id": 20, - "offset": 656, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1543855875 - }, - "m_HotKey": { - "type": "unsigned int", - "id": 21, - "offset": 672, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1631553409 - }, - "m_Color": { - "type": "class Color", - "id": 22, - "offset": 676, - "flags": 262279, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1753714077 - }, - "m_bCursorOver": { - "type": "bool", - "id": 23, - "offset": 689, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 283981103 - }, - "m_bAbortWhenCursorNotOver": { - "type": "bool", - "id": 24, - "offset": 706, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 325405258 - }, - "m_bHotKeyDown": { - "type": "bool", - "id": 25, - "offset": 680, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 616989185 - }, - "m_fTime": { - "type": "float", - "id": 26, - "offset": 684, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 883746156 - }, - "m_bGreyed": { - "type": "bool", - "id": 27, - "offset": 688, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1566556053 - }, - "m_fMaxScale": { - "type": "float", - "id": 28, - "offset": 692, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2070186635 - }, - "m_fScaleSpeed": { - "type": "float", - "id": 29, - "offset": 696, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1457135702 - }, - "m_bUseDropShadow": { - "type": "bool", - "id": 30, - "offset": 704, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 93063037 - }, - "m_bUseOutline": { - "type": "bool", - "id": 31, - "offset": 705, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 744292994 - }, - "m_pGreyedState": { - "type": "class SharedPointer", - "id": 32, - "offset": 768, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2703352263 - }, - "m_pNormalState": { - "type": "class SharedPointer", - "id": 33, - "offset": 752, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1887909808 - }, - "m_pHighlightedState": { - "type": "class SharedPointer", - "id": 34, - "offset": 784, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2200177608 - }, - "m_pSelectedState": { - "type": "class SharedPointer", - "id": 35, - "offset": 800, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2266776432 - }, - "m_pDepressedState": { - "type": "class SharedPointer", - "id": 36, - "offset": 816, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1878185798 - }, - "m_nGroupID": { - "type": "int", - "id": 37, - "offset": 880, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 403966850 - }, - "m_bChecked": { - "type": "bool", - "id": 38, - "offset": 884, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 958955100 - }, - "m_pCheckedState": { - "type": "class SharedPointer", - "id": 39, - "offset": 888, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1210539694 - }, - "m_pCheckedGreyedState": { - "type": "class SharedPointer", - "id": 40, - "offset": 904, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2702030126 - }, - "m_pCheckedHighlightedState": { - "type": "class SharedPointer", - "id": 41, - "offset": 920, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1320097679 - }, - "m_pCheckedDepressedState": { - "type": "class SharedPointer", - "id": 42, - "offset": 936, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1609188685 - } - } - }, - "586902102": { - "name": "class ControlCheckBox*", - "bases": [ - "ControlButton", - "Window", - "PropertyClass" - ], - "hash": 586902102, - "properties": { - "m_sName": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306437263 - }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621225959 - }, - "m_Style": { - "type": "unsigned int", - "id": 2, - "offset": 152, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152, - "EFFECT_SCALE": 67108864, - "LOCK_ICON_SIZE": 33554432, - "LEFT_TEXT": 536870912, - "NO_FIT_TEXT": 1073741824, - "CHECKBOX_TEXTOVERIMAGE": 16777216 - } - }, - "m_Flags": { - "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } - }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3105139380 - }, - "m_fTargetAlpha": { - "type": "float", - "id": 5, - "offset": 212, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1809129834 - }, - "m_fDisabledAlpha": { - "type": "float", - "id": 6, - "offset": 216, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1389987675 - }, - "m_fAlpha": { - "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 482130755 - }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3623628394 - }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2102211316 - }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1846695875 - }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3389835433 - }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2547159940 - }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2587533771 - }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3091503757 - }, - "m_bToggle": { - "type": "bool", - "id": 16, - "offset": 608, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2071810903 - }, - "m_bButtonDown": { - "type": "bool", - "id": 17, - "offset": 609, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 840041705 - }, - "m_sLabel": { - "type": "std::wstring", - "id": 18, - "offset": 616, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2207009163 - }, - "m_labelOffset": { - "type": "class Rect", - "id": 19, - "offset": 832, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1990646723 - }, - "m_pButton": { - "type": "class SharedPointer", - "id": 20, - "offset": 656, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1543855875 - }, - "m_HotKey": { - "type": "unsigned int", - "id": 21, - "offset": 672, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1631553409 - }, - "m_Color": { - "type": "class Color", - "id": 22, - "offset": 676, - "flags": 262279, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1753714077 - }, - "m_bCursorOver": { - "type": "bool", - "id": 23, - "offset": 689, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 283981103 - }, - "m_bAbortWhenCursorNotOver": { - "type": "bool", - "id": 24, - "offset": 706, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 325405258 - }, - "m_bHotKeyDown": { - "type": "bool", - "id": 25, - "offset": 680, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 616989185 - }, - "m_fTime": { - "type": "float", - "id": 26, - "offset": 684, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 883746156 - }, - "m_bGreyed": { - "type": "bool", - "id": 27, - "offset": 688, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1566556053 - }, - "m_fMaxScale": { - "type": "float", - "id": 28, - "offset": 692, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2070186635 - }, - "m_fScaleSpeed": { - "type": "float", - "id": 29, - "offset": 696, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1457135702 - }, - "m_bUseDropShadow": { - "type": "bool", - "id": 30, - "offset": 704, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 93063037 - }, - "m_bUseOutline": { - "type": "bool", - "id": 31, - "offset": 705, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 744292994 - }, - "m_pGreyedState": { - "type": "class SharedPointer", - "id": 32, - "offset": 768, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2703352263 - }, - "m_pNormalState": { - "type": "class SharedPointer", - "id": 33, - "offset": 752, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1887909808 - }, - "m_pHighlightedState": { - "type": "class SharedPointer", - "id": 34, - "offset": 784, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2200177608 - }, - "m_pSelectedState": { - "type": "class SharedPointer", - "id": 35, - "offset": 800, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2266776432 - }, - "m_pDepressedState": { - "type": "class SharedPointer", - "id": 36, - "offset": 816, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1878185798 - }, - "m_nGroupID": { - "type": "int", - "id": 37, - "offset": 880, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 403966850 - }, - "m_bChecked": { - "type": "bool", - "id": 38, - "offset": 884, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 958955100 - }, - "m_pCheckedState": { - "type": "class SharedPointer", - "id": 39, - "offset": 888, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1210539694 - }, - "m_pCheckedGreyedState": { - "type": "class SharedPointer", - "id": 40, - "offset": 904, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2702030126 - }, - "m_pCheckedHighlightedState": { - "type": "class SharedPointer", - "id": 41, - "offset": 920, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1320097679 - }, - "m_pCheckedDepressedState": { - "type": "class SharedPointer", - "id": 42, - "offset": 936, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1609188685 - } - } - }, - "976615779": { - "name": "class PetGameKioskOption", - "bases": [ - "ServiceOptionBase", - "PropertyClass" - ], - "hash": 976615779, - "properties": { - "m_serviceName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2206028813 - }, - "m_iconKey": { - "type": "std::string", - "id": 1, - "offset": 168, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2457138637 - }, - "m_displayKey": { - "type": "std::string", - "id": 2, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3023276954 - }, - "m_serviceIndex": { - "type": "unsigned int", - "id": 3, - "offset": 204, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2103126710 - }, - "m_forceInteract": { - "type": "bool", - "id": 4, - "offset": 200, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1705789564 - } - } - }, - "976280423": { - "name": "class ReqHangingOverTime*", - "bases": [ - "ConditionalSpellEffectRequirement", - "Requirement", - "PropertyClass" - ], - "hash": 976280423, - "properties": { - "m_applyNOT": { - "type": "bool", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1746328074, - "enum_options": { - "__DEFAULT": 0 - } - }, - "m_operator": { - "type": "enum Requirement::Operator", - "id": 1, - "offset": 76, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2672792317, - "enum_options": { - "ROP_AND": 0, - "ROP_OR": 1, - "__DEFAULT": "ROP_AND" - } - }, - "m_targetType": { - "type": "enum ConditionalSpellEffectRequirement::RequirementTarget", - "id": 2, - "offset": 80, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2547737902, - "enum_options": { - "RT_Caster": 0, - "RT_Target": 1 - } - }, - "m_disposition": { - "type": "enum SpellEffect::kHangingDisposition", - "id": 3, - "offset": 88, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1904841031, - "enum_options": { - "SpellEffect::kBoth": 0, - "SpellEffect::kBeneficial": 1, - "SpellEffect::kHarmful": 2 - } - }, - "m_minCount": { - "type": "int", - "id": 4, - "offset": 92, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1486503815 - }, - "m_maxCount": { - "type": "int", - "id": 5, - "offset": 96, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 136048585 - } - } - }, - "1749033129": { - "name": "class DerbyModifyCheerCost", - "bases": [ - "DerbyEffect", - "PropertyClass" - ], - "hash": 1749033129, - "properties": { - "m_buffType": { - "type": "enum DerbyTalentBuffType", - "id": 0, - "offset": 92, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1149251982, - "enum_options": { - "Buff": 0, - "Debuff": 1, - "Neither": 2 - } - }, - "m_kTarget": { - "type": "enum DerbyTargetType", - "id": 1, - "offset": 96, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1807803351, - "enum_options": { - "kTargetInFront": 0, - "kTargetBehind": 1, - "kTargetFirst": 2, - "kTargetSelf": 3, - "kTargetAll": 4, - "kTargetLast": 5 - } - }, - "m_nDuration": { - "type": "int", - "id": 2, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1110167982 - }, - "m_effectID": { - "type": "unsigned int", - "id": 3, - "offset": 88, - "flags": 24, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2347630439 - }, - "m_imageFilename": { - "type": "std::string", - "id": 4, - "offset": 112, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2813328063 - }, - "m_iconIndex": { - "type": "unsigned int", - "id": 5, - "offset": 144, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1265133262 - }, - "m_soundOnActivate": { - "type": "std::string", - "id": 6, - "offset": 152, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1956929714 - }, - "m_soundOnTarget": { - "type": "std::string", - "id": 7, - "offset": 184, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3444214056 - }, - "m_targetParticleEffect": { - "type": "std::string", - "id": 8, - "offset": 216, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3048234723 - }, - "m_overheadMessage": { - "type": "std::string", - "id": 9, - "offset": 248, - "flags": 8388639, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1701018190 - }, - "m_requirements": { - "type": "class RequirementList", - "id": 10, - "offset": 280, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2840988582 - }, - "m_costMap": { - "type": "class TerrainCheerCostMap", - "id": 11, - "offset": 376, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1929931701 - } - } - }, - "191497925": { - "name": "class CombatSigilTemplate", - "bases": [ - "SigilTemplate", - "CoreTemplate", - "PropertyClass" - ], - "hash": 191497925, - "properties": { - "m_behaviors": { - "type": "class BehaviorTemplate*", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1197808594 - }, - "m_sigilName": { - "type": "std::string", - "id": 1, - "offset": 96, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3177657588 - }, - "m_sigilType": { - "type": "std::string", - "id": 2, - "offset": 136, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3177899445 - }, - "m_entryResults": { - "type": "class ResultList*", - "id": 3, - "offset": 184, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3262956108 - }, - "m_requirements": { - "type": "class RequirementList*", - "id": 4, - "offset": 176, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2840985510 - }, - "m_cancelResults": { - "type": "class ResultList*", - "id": 5, - "offset": 192, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3799257120 - }, - "m_completeResults": { - "type": "class ResultList*", - "id": 6, - "offset": 200, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1964258099 - }, - "m_useState": { - "type": "bool", - "id": 7, - "offset": 216, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 683320865 - }, - "m_stateOverride": { - "type": "std::string", - "id": 8, - "offset": 224, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1949715548 - }, - "m_subCircles": { - "type": "class SigilSubCircle*", - "id": 9, - "offset": 256, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2227135493 - }, - "m_engageRadius": { - "type": "float", - "id": 10, - "offset": 304, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1429683718 - }, - "m_battlefieldEffects": { - "type": "class SharedPointer", - "id": 11, - "offset": 312, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1245973515 - }, - "m_playerVictoryCinematic": { - "type": "std::string", - "id": 12, - "offset": 336, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2684536069 - }, - "m_combatMusic": { - "type": "std::string", - "id": 13, - "offset": 368, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3636593682 - }, - "m_prePlanningCinematicOverride": { - "type": "std::string", - "id": 14, - "offset": 400, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2585096390 - }, - "m_planningCinematicOverride": { - "type": "std::string", - "id": 15, - "offset": 432, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3592819999 - }, - "m_shadowThresholdType": { - "type": "enum kShadow_Threshold_Type", - "id": 16, - "offset": 464, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2847763136, - "enum_options": { - "SHADOW_THRESHOLD_MIN": 0, - "SHADOW_THRESHOLD_AVG": 1, - "SHADOW_THRESHOLD_MAX": 2 - } - }, - "m_shadowThresholdFactor": { - "type": "float", - "id": 17, - "offset": 468, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2104355177 - }, - "m_shadowPipRatingFactor": { - "type": "float", - "id": 18, - "offset": 472, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1061434314 - }, - "m_scalarDamagePvP": { - "type": "float", - "id": 19, - "offset": 476, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2195445026 - }, - "m_scalarResistPvP": { - "type": "float", - "id": 20, - "offset": 480, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1947822077 - }, - "m_scalarPiercePvP": { - "type": "float", - "id": 21, - "offset": 484, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 441266907 - }, - "m_scalarDamagePvE": { - "type": "float", - "id": 22, - "offset": 488, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2195445015 - }, - "m_scalarResistPvE": { - "type": "float", - "id": 23, - "offset": 492, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1947822066 - }, - "m_scalarPiercePvE": { - "type": "float", - "id": 24, - "offset": 496, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 441266896 - }, - "m_damageLimitPvP": { - "type": "float", - "id": 25, - "offset": 500, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1990135243 - }, - "m_dK0PvP": { - "type": "float", - "id": 26, - "offset": 504, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 413528556 - }, - "m_dN0PvP": { - "type": "float", - "id": 27, - "offset": 508, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 417086319 - }, - "m_resistLimitPvP": { - "type": "float", - "id": 28, - "offset": 512, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1174512006 - }, - "m_rK0PvP": { - "type": "float", - "id": 29, - "offset": 516, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 961424058 - }, - "m_rN0PvP": { - "type": "float", - "id": 30, - "offset": 520, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 964981821 - }, - "m_damageLimitPvE": { - "type": "float", - "id": 31, - "offset": 524, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1990135232 - }, - "m_dK0PvE": { - "type": "float", - "id": 32, - "offset": 528, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 413528545 - }, - "m_dN0PvE": { - "type": "float", - "id": 33, - "offset": 532, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 417086308 - }, - "m_resistLimitPvE": { - "type": "float", - "id": 34, - "offset": 536, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1174511995 - }, - "m_rK0PvE": { - "type": "float", - "id": 35, - "offset": 540, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 961424047 - }, - "m_rN0PvE": { - "type": "float", - "id": 36, - "offset": 544, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 964981810 - } - } - }, - "975906679": { - "name": "class PetDerbyRacerState*", - "bases": [ - "PropertyClass" - ], - "hash": 975906679, - "properties": { - "m_playerOID": { - "type": "gid", - "id": 0, - "offset": 88, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 578546081 - }, - "m_currentTerrain": { - "type": "enum PetDerbyTrackTerrain", - "id": 1, - "offset": 100, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3426350446, - "enum_options": { - "PDTT_Cobblestone": 0, - "PDTT_Water": 1, - "PDTT_Grass": 2, - "PDTT_Clay": 3, - "PDTT_Dirt": 4, - "PDTT_Mud": 5 - } - }, - "m_currentLane": { - "type": "int", - "id": 2, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1255984189 - }, - "m_currentLap": { - "type": "unsigned int", - "id": 3, - "offset": 120, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2006580429 - }, - "m_indexIntoArray": { - "type": "unsigned char", - "id": 4, - "offset": 96, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1554314337 - } - } - }, - "189494233": { - "name": "class SharedPointer", - "bases": [ - "SpellEffect", - "PropertyClass" - ], - "hash": 189494233, - "properties": { - "m_effectType": { - "type": "enum SpellEffect::kSpellEffects", - "id": 0, - "offset": 72, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2578255295, - "enum_options": { - "kInvalidSpellEffect": 0, - "kDamage": 1, - "kDamageNoCrit": 2, - "kHeal": 3, - "kHealPercent": 4, - "kSetHealPercent": 113, - "kStealHealth": 5, - "kReduceOverTime": 6, - "kDetonateOverTime": 7, - "kPushCharm": 8, - "kStealCharm": 9, - "kPushWard": 10, - "kStealWard": 11, - "kPushOverTime": 12, - "kStealOverTime": 13, - "kRemoveCharm": 14, - "kRemoveWard": 15, - "kRemoveOverTime": 16, - "kRemoveAura": 17, - "kSwapAll": 18, - "kSwapCharm": 19, - "kSwapWard": 20, - "kSwapOverTime": 21, - "kModifyIncomingDamage": 22, - "kModifyIncomingDamageFlat": 119, - "kMaximumIncomingDamage": 23, - "kModifyIncomingHeal": 24, - "kModifyIncomingHealFlat": 118, - "kModifyIncomingDamageType": 25, - "kModifyIncomingArmorPiercing": 26, - "kModifyOutgoingDamage": 27, - "kModifyOutgoingDamageFlat": 121, - "kModifyOutgoingHeal": 28, - "kModifyOutgoingHealFlat": 120, - "kModifyOutgoingDamageType": 29, - "kModifyOutgoingArmorPiercing": 30, - "kModifyOutgoingStealHealth": 31, - "kModifyIncomingStealHealth": 32, - "kBounceNext": 33, - "kBouncePrevious": 34, - "kBounceBack": 35, - "kBounceAll": 36, - "kAbsorbDamage": 37, - "kAbsorbHeal": 38, - "kModifyAccuracy": 39, - "kDispel": 40, - "kConfusion": 41, - "kCloakedCharm": 42, - "kCloakedWard": 43, - "kStunResist": 44, - "kClue": 111, - "kPipConversion": 45, - "kCritBoost": 46, - "kCritBlock": 47, - "kPolymorph": 48, - "kDelayCast": 49, - "kModifyCardCloak": 50, - "kModifyCardDamage": 51, - "kModifyCardAccuracy": 53, - "kModifyCardMutation": 54, - "kModifyCardRank": 55, - "kModifyCardArmorPiercing": 56, - "kSummonCreature": 65, - "kTeleportPlayer": 66, - "kStun": 67, - "kDampen": 68, - "kReshuffle": 69, - "kMindControl": 70, - "kModifyPips": 71, - "kModifyPowerPips": 72, - "kModifyShadowPips": 73, - "kModifyHate": 74, - "kDamageOverTime": 75, - "kHealOverTime": 76, - "kModifyPowerPipChance": 77, - "kModifyRank": 78, - "kStunBlock": 79, - "kRevealCloak": 80, - "kInstantKill": 81, - "kAfterlife": 82, - "kDeferredDamage": 83, - "kDamagePerTotalPipPower": 84, - "kModifyCardHeal": 52, - "kModifyCardCharm": 57, - "kModifyCardWard": 58, - "kModifyCardOutgoingDamage": 59, - "kModifyCardOutgoingAccuracy": 60, - "kModifyCardOutgoingHeal": 61, - "kModifyCardOutgoingArmorPiercing": 62, - "kModifyCardIncomingDamage": 63, - "kModifyCardAbsorbDamage": 64, - "kCloakedWardNoRemove": 86, - "kAddCombatTriggerList": 87, - "kRemoveCombatTriggerList": 88, - "kBacklashDamage": 89, - "kModifyBacklash": 90, - "kIntercept": 91, - "kShadowSelf": 92, - "kShadowCreature": 93, - "kModifyShadowCreatureLevel": 94, - "kSelectShadowCreatureAttackTarget": 95, - "kShadowDecrementTurn": 96, - "kCritBoostSchoolSpecific": 97, - "kSpawnCreature": 98, - "kUnPolymorph": 99, - "kPowerPipConversion": 100, - "kProtectCardBeneficial": 101, - "kProtectCardHarmful": 102, - "kProtectBeneficial": 103, - "kProtectHarmful": 104, - "kDivideDamage": 105, - "kCollectEssence": 106, - "kKillCreature": 107, - "kDispelBlock": 108, - "kConfusionBlock": 109, - "kModifyPipRoundRate": 110, - "kMaxHealthDamage": 112, - "kUntargetable": 114, - "kMakeTargetable": 115, - "kForceTargetable": 116, - "kRemoveStunBlock": 117, - "kExitCombat": 122, - "kSuspendPips": 123, - "kResumePips": 124, - "kAutoPass": 125, - "kStopAutoPass": 126, - "kVanish": 127, - "kStopVanish": 128, - "kMaxHealthHeal": 129, - "kHealByWard": 130, - "kTaunt": 131, - "kPacify": 132, - "kRemoveTargetRestriction": 133, - "kConvertHangingEffect": 134, - "kAddSpellToDeck": 135, - "kAddSpellToHand": 136, - "kModifyIncomingDamageOverTime": 137, - "kModifyIncomingHealOverTime": 138, - "kModifyCardDamagebyRank": 139, - "kPushConvertedCharm": 140, - "kStealConvertedCharm": 141, - "kPushConvertedWard": 142, - "kStealConvertedWard": 143, - "kPushConvertedOverTime": 144, - "kStealConvertedOverTime": 145, - "kRemoveConvertedCharm": 146, - "kRemoveConvertedWard": 147, - "kRemoveConvertedOverTime": 148, - "kModifyOverTimeDuration": 149, - "kModifySchoolPips": 150 - } - }, - "m_effectParam": { - "type": "int", - "id": 1, - "offset": 76, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 357920024 - }, - "m_disposition": { - "type": "enum SpellEffect::kHangingDisposition", - "id": 2, - "offset": 80, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1904841031, - "enum_options": { - "kBoth": 0, - "kBeneficial": 1, - "kHarmful": 2 - } - }, - "m_sDamageType": { - "type": "std::string", - "id": 3, - "offset": 88, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2501054223 - }, - "m_damageType": { - "type": "unsigned int", - "id": 4, - "offset": 84, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 737882766 - }, - "m_pipNum": { - "type": "int", - "id": 5, - "offset": 128, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 830827539 - }, - "m_actNum": { - "type": "int", - "id": 6, - "offset": 132, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 236824866 - }, - "m_effectTarget": { - "type": "enum SpellEffect::kEffectTarget", - "id": 7, - "offset": 140, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2458940523, - "enum_options": { - "kInvalidTarget": 0, - "kSpell": 1, - "kSpecificSpells": 2, - "kGlobal": 3, - "kEnemyTeam": 4, - "kEnemyTeamAllAtOnce": 5, - "kFriendlyTeam": 6, - "kFriendlyTeamAllAtOnce": 7, - "kEnemySingle": 8, - "kFriendlySingle": 9, - "kMinion": 10, - "kFriendlyMinion": 17, - "kEnemyMinion": 18, - "kSelf": 11, - "kAtLeastOneEnemy": 13, - "kPreselectedEnemySingle": 12, - "kMultiTargetEnemy": 14, - "kMultiTargetFriendly": 15, - "kFriendlySingleNotMe": 16 - } - }, - "m_numRounds": { - "type": "int", - "id": 8, - "offset": 144, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1229753829 - }, - "m_paramPerRound": { - "type": "int", - "id": 9, - "offset": 148, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 683234234 - }, - "m_healModifier": { - "type": "float", - "id": 10, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1317921248, - "enum_options": { - "__DEFAULT": "1.0" - } - }, - "m_spellTemplateID": { - "type": "unsigned int", - "id": 11, - "offset": 120, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 585567702 - }, - "m_enchantmentSpellTemplateID": { - "type": "unsigned int", - "id": 12, - "offset": 124, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 246955115 - }, - "m_act": { - "type": "bool", - "id": 13, - "offset": 136, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 269510283 - }, - "m_cloaked": { - "type": "bool", - "id": 14, - "offset": 157, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 7349510 - }, - "m_bypassProtection": { - "type": "bool", - "id": 15, - "offset": 159, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1657138252 - }, - "m_armorPiercingParam": { - "type": "int", - "id": 16, - "offset": 160, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2025530205 - }, - "m_chancePerTarget": { - "type": "int", - "id": 17, - "offset": 164, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 845426794 - }, - "m_protected": { - "type": "bool", - "id": 18, - "offset": 168, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1445655037 - }, - "m_converted": { - "type": "bool", - "id": 19, - "offset": 169, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1590428797 - }, - "m_rank": { - "type": "int", - "id": 20, - "offset": 208, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 219803942 - }, - "m_effectList": { - "type": "class SharedPointer", - "id": 21, - "offset": 224, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 707154804 - } - } - }, - "587194731": { - "name": "class MakeTargetableCinematicAction", - "bases": [ - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 587194731, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - } - } - }, - "189089363": { - "name": "class AttenuatedFileDescription*", - "bases": [ - "PropertyClass" - ], - "hash": 189089363, - "properties": { - "m_fileName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3116172444 - }, - "m_attenuationPercent": { - "type": "float", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1412579028 - } - } - }, - "587141562": { - "name": "struct std::pair,class std::allocator >,union gid>", - "bases": [], - "hash": 587141562, - "properties": {} - }, - "1749405138": { - "name": "class InclusiveRange*", - "bases": [ - "PropertyClass" - ], - "hash": 1749405138, - "properties": { - "m_start": { - "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1021505883 - }, - "m_stop": { - "type": "unsigned int", - "id": 1, - "offset": 76, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 431263059 - } - } - }, - "976321589": { - "name": "class SharedPointer", - "bases": [ - "Requirement", - "PropertyClass" - ], - "hash": 976321589, - "properties": { - "m_applyNOT": { - "type": "bool", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1746328074, - "enum_options": { - "__DEFAULT": 0 - } - }, - "m_operator": { - "type": "enum Requirement::Operator", - "id": 1, - "offset": 76, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2672792317, - "enum_options": { - "ROP_AND": 0, - "ROP_OR": 1, - "__DEFAULT": "ROP_AND" - } - } - } - }, - "1749405042": { - "name": "class InclusiveRange", - "bases": [ - "PropertyClass" - ], - "hash": 1749405042, - "properties": { - "m_start": { - "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1021505883 - }, - "m_stop": { - "type": "unsigned int", - "id": 1, - "offset": 76, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 431263059 - } - } - }, - "191363213": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 191363213, - "properties": { - "m_src": { - "type": "unsigned short", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 820631632 - }, - "m_dst": { - "type": "unsigned short", - "id": 1, - "offset": 74, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 820615347 - } - } - }, - "593680133": { - "name": "class SharedPointer", - "bases": [ - "ZoneTokenBaseControl", - "Window", - "PropertyClass" - ], - "hash": 593680133, - "properties": { - "m_sName": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306437263 - }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621225959 - }, - "m_Style": { - "type": "unsigned int", - "id": 2, - "offset": 152, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "SCALE_CHILDREN": 2, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "FOCUS_LOCKED": 64, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152 - } - }, - "m_Flags": { - "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } - }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3105139380 - }, - "m_fTargetAlpha": { - "type": "float", - "id": 5, - "offset": 212, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1809129834 - }, - "m_fDisabledAlpha": { - "type": "float", - "id": 6, - "offset": 216, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1389987675 - }, - "m_fAlpha": { - "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 482130755 - }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3623628394 - }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2102211316 - }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1846695875 - }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3389835433 - }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2547159940 - }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2587533771 - }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3091503757 - } - } - }, - "977177732": { - "name": "class FishingBehaviorBase", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 977177732, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_caughtFishList": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 1, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2107365240 - }, - "m_fishHistoryList": { - "type": "class SharedPointer", - "id": 2, - "offset": 128, - "flags": 1, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 3741999493 - } - } - }, - "1749905795": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1749905795, - "properties": { - "m_promoRewards": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 3146833727 - } - } - }, - "588389354": { - "name": "class TransformationEffect*", - "bases": [ - "GameEffectBase", - "PropertyClass" - ], - "hash": 588389354, - "properties": { - "m_currentTickCount": { - "type": "double", - "id": 0, - "offset": 80, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2533274692 - }, - "m_effectNameID": { - "type": "unsigned int", - "id": 1, - "offset": 96, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1204067144 - }, - "m_bIsOnPet": { - "type": "bool", - "id": 2, - "offset": 73, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 522593303 - }, - "m_originatorID": { - "type": "gid", - "id": 3, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1131810019 - }, - "m_itemSlotID": { - "type": "unsigned int", - "id": 4, - "offset": 112, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1895747595 - }, - "m_internalID": { - "type": "int", - "id": 5, - "offset": 92, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1643137924 - }, - "m_endTime": { - "type": "unsigned int", - "id": 6, - "offset": 88, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 716479635 - }, - "m_sRace": { - "type": "std::string", - "id": 7, - "offset": 128, - "flags": 268435487, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306580681, - "enum_options": { - "__BASECLASS": "CharacterRaceTable" - } - }, - "m_eGender": { - "type": "enum eGender", - "id": 8, - "offset": 160, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2776344943 - }, - "m_fScale": { - "type": "float", - "id": 9, - "offset": 164, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 503137701 - }, - "m_nPrimaryColor": { - "type": "int", - "id": 10, - "offset": 168, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 310334923 - }, - "m_nSecondaryColor": { - "type": "int", - "id": 11, - "offset": 172, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 516938671 - }, - "m_nPatternOption": { - "type": "int", - "id": 12, - "offset": 176, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 413195679 - }, - "m_nGeometryOption": { - "type": "int", - "id": 13, - "offset": 180, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 676541869 - }, - "m_sNaturalAttack": { - "type": "std::string", - "id": 14, - "offset": 184, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2131867453 - } - } - }, - "976817436": { - "name": "class ObstacleCourseSpeedUpBehaviorTemplate", - "bases": [ - "ObstacleCourseObstaclePathBaseTemplate", - "ObstacleCourseObstacleBehaviorTemplate", - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 976817436, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - }, - "m_rate": { - "type": "float", - "id": 1, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 310005283 - }, - "m_penaltyTime": { - "type": "float", - "id": 2, - "offset": 124, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2083389507 - }, - "m_totalObstacleSize": { - "type": "class Vector3D", - "id": 3, - "offset": 128, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2379878414 - }, - "m_bounds": { - "type": "class Vector3D", - "id": 4, - "offset": 152, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1948083181 - }, - "m_orientToPath": { - "type": "bool", - "id": 5, - "offset": 176, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 655036148 - }, - "m_heightUp": { - "type": "float", - "id": 6, - "offset": 140, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2208713013 - }, - "m_heightDown": { - "type": "float", - "id": 7, - "offset": 144, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 655333896 - }, - "m_speedAmount": { - "type": "double", - "id": 8, - "offset": 184, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3716841682 - }, - "m_buffTime": { - "type": "double", - "id": 9, - "offset": 192, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2925547231 - }, - "m_effectWearingOff": { - "type": "std::string", - "id": 10, - "offset": 200, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1540780784 - }, - "m_soundWearingOff": { - "type": "std::string", - "id": 11, - "offset": 232, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1848004524 - }, - "m_effectApply": { - "type": "std::string", - "id": 12, - "offset": 264, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1838368078 - }, - "m_soundApply": { - "type": "std::string", - "id": 13, - "offset": 296, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3579526282 - }, - "m_effectDespawn": { - "type": "std::string", - "id": 14, - "offset": 328, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2174851674 - }, - "m_soundDespawn": { - "type": "std::string", - "id": 15, - "offset": 360, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2068074646 - }, - "m_effectWhileActive": { - "type": "std::string", - "id": 16, - "offset": 392, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3074038205 - }, - "m_soundWhileActive": { - "type": "std::string", - "id": 17, - "offset": 424, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2475003385 - }, - "m_effectRespawning": { - "type": "std::string", - "id": 18, - "offset": 456, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3091986790 - }, - "m_soundRespawning": { - "type": "std::string", - "id": 19, - "offset": 488, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3399210530 - } - } - }, - "1749612496": { - "name": "class WinAnimScaleTime*", - "bases": [ - "WinAnimScale", - "WindowAnimation", - "PropertyClass" - ], - "hash": 1749612496, - "properties": { - "m_bUseDeepCopy": { - "type": "bool", - "id": 0, - "offset": 72, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 433380635 - }, - "m_scale": { - "type": "float", - "id": 1, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 899693439 - }, - "m_fTimeTotal": { - "type": "float", - "id": 2, - "offset": 96, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 661225456 - }, - "m_fTimeRemaining": { - "type": "float", - "id": 3, - "offset": 100, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1591443014 - } - } - }, - "191581363": { - "name": "class SharedPointer", - "bases": [ - "DestroyActorCinematicAction", - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 191581363, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - } - } - }, - "587810934": { - "name": "class ClientGameEffectTimerSoundTrigger*", - "bases": [ - "GameEffectTimerSoundTrigger", - "GameEffectTimerTrigger", - "PropertyClass" - ], - "hash": 587810934, - "properties": { - "m_radius": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 989410271 - }, - "m_triggerT": { - "type": "float", - "id": 1, - "offset": 76, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2138083583 - }, - "m_soundFiles": { - "type": "std::string", - "id": 2, - "offset": 80, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 3585199735 - } - } - }, - "1749585459": { - "name": "class ItemTemplate*", - "bases": [ - "GameObjectTemplate", - "CoreTemplate", - "PropertyClass" - ], - "hash": 1749585459, - "properties": { - "m_behaviors": { - "type": "class BehaviorTemplate*", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1197808594 - }, - "m_objectName": { - "type": "std::string", - "id": 1, - "offset": 96, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2154940147 - }, - "m_templateID": { - "type": "unsigned int", - "id": 2, - "offset": 128, - "flags": 16777223, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1286746870 - }, - "m_visualID": { - "type": "unsigned int", - "id": 3, - "offset": 132, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1118778894 - }, - "m_adjectiveList": { - "type": "std::string", - "id": 4, - "offset": 248, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 3195213318 - }, - "m_exemptFromAOI": { - "type": "bool", - "id": 5, - "offset": 240, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1457879059 - }, - "m_displayName": { - "type": "std::string", - "id": 6, - "offset": 168, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2446900370 - }, - "m_description": { - "type": "std::string", - "id": 7, - "offset": 136, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1649374815 - }, - "m_nObjectType": { - "type": "enum ObjectType", - "id": 8, - "offset": 200, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2118905880, - "enum_options": { - "OT_UNDEFINED": 0, - "OT_PLAYER": 1, - "OT_NPC": 2, - "OT_PROP": 3, - "OT_OBJECT": 4, - "OT_HOUSE": 5, - "OT_KEY": 6, - "OT_OLD_KEY": 7, - "OT_DEED": 8, - "OT_MAIL": 9, - "OT_RECIPE": 17, - "OT_EQUIP_HEAD": 10, - "OT_EQUIP_CHEST": 11, - "OT_EQUIP_LEGS": 12, - "OT_EQUIP_HANDS": 13, - "OT_EQUIP_FINGER": 14, - "OT_EQUIP_FEET": 15, - "OT_EQUIP_EAR": 16, - "OT_BUILDING_BLOCK": 18, - "OT_BUILDING_BLOCK_SOLID": 19, - "OT_GOLF": 20, - "OT_DOOR": 21, - "OT_PET": 22, - "OT_FABRIC": 23, - "OT_WINDOW": 24, - "OT_ROOF": 25, - "OT_HORSE": 26, - "OT_STRUCTURE": 27, - "OT_HOUSING_TEXTURE": 28, - "OT_PLANT": 29 - } - }, - "m_sIcon": { - "type": "std::string", - "id": 9, - "offset": 208, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306259831 - }, - "m_equipRequirements": { - "type": "class RequirementList*", - "id": 10, - "offset": 280, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2762617226 - }, - "m_purchaseRequirements": { - "type": "class RequirementList*", - "id": 11, - "offset": 288, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3174641793 - }, - "m_equipEffects": { - "type": "class GameEffectInfo*", - "id": 12, - "offset": 296, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 836628351 - }, - "m_baseCost": { - "type": "float", - "id": 13, - "offset": 312, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1565352651 - }, - "m_creditsCost": { - "type": "float", - "id": 14, - "offset": 320, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 805514974 - }, - "m_avatarInfo": { - "type": "class AvatarItemInfoBase*", - "id": 15, - "offset": 328, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2627321299 - }, - "m_avatarFlags": { - "type": "std::string", - "id": 16, - "offset": 336, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2347762759 - }, - "m_itemLimit": { - "type": "int", - "id": 17, - "offset": 316, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1799746856 - }, - "m_holidayFlag": { - "type": "std::string", - "id": 18, - "offset": 352, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2994795359 - }, - "m_itemSetBonusTemplateID": { - "type": "unsigned int", - "id": 19, - "offset": 384, - "flags": 33554439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1316835672 - } - } - }, - "191512483": { - "name": "class SharedPointer", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 191512483, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - }, - "m_spellNames": { - "type": "std::string", - "id": 1, - "offset": 120, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2136089135 - }, - "m_targetNode": { - "type": "std::string", - "id": 2, - "offset": 136, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2698500040 - }, - "m_offset": { - "type": "class Vector3D", - "id": 3, - "offset": 168, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2445636425 - }, - "m_rotate": { - "type": "class Vector3D", - "id": 4, - "offset": 180, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2574199889 - }, - "m_height": { - "type": "float", - "id": 5, - "offset": 192, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 602977104 - }, - "m_alpha": { - "type": "float", - "id": 6, - "offset": 196, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 878686493 - }, - "m_cycleRate": { - "type": "float", - "id": 7, - "offset": 200, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 947046355 - } - } - }, - "587810854": { - "name": "class ClientGameEffectTimerSoundTrigger", - "bases": [ - "GameEffectTimerSoundTrigger", - "GameEffectTimerTrigger", - "PropertyClass" - ], - "hash": 587810854, - "properties": { - "m_radius": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 989410271 - }, - "m_triggerT": { - "type": "float", - "id": 1, - "offset": 76, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2138083583 - }, - "m_soundFiles": { - "type": "std::string", - "id": 2, - "offset": 80, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 3585199735 - } - } - }, - "991927505": { - "name": "class WizItemTemplate*", - "bases": [ - "ItemTemplate", - "GameObjectTemplate", - "CoreTemplate", - "PropertyClass" - ], - "hash": 991927505, - "properties": { - "m_behaviors": { - "type": "class BehaviorTemplate*", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1197808594 - }, - "m_objectName": { - "type": "std::string", - "id": 1, - "offset": 96, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2154940147 - }, - "m_templateID": { - "type": "unsigned int", - "id": 2, - "offset": 128, - "flags": 16777223, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1286746870 - }, - "m_visualID": { - "type": "unsigned int", - "id": 3, - "offset": 132, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1118778894 - }, - "m_adjectiveList": { - "type": "std::string", - "id": 4, - "offset": 248, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 3195213318 - }, - "m_exemptFromAOI": { - "type": "bool", - "id": 5, - "offset": 240, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1457879059 - }, - "m_displayName": { - "type": "std::string", - "id": 6, - "offset": 168, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2446900370 - }, - "m_description": { - "type": "std::string", - "id": 7, - "offset": 136, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1649374815 - }, - "m_nObjectType": { - "type": "enum ObjectType", - "id": 8, - "offset": 200, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2118905880, - "enum_options": { - "OT_UNDEFINED": 0, - "OT_PLAYER": 1, - "OT_NPC": 2, - "OT_PROP": 3, - "OT_OBJECT": 4, - "OT_HOUSE": 5, - "OT_KEY": 6, - "OT_OLD_KEY": 7, - "OT_DEED": 8, - "OT_MAIL": 9, - "OT_RECIPE": 17, - "OT_EQUIP_HEAD": 10, - "OT_EQUIP_CHEST": 11, - "OT_EQUIP_LEGS": 12, - "OT_EQUIP_HANDS": 13, - "OT_EQUIP_FINGER": 14, - "OT_EQUIP_FEET": 15, - "OT_EQUIP_EAR": 16, - "OT_BUILDING_BLOCK": 18, - "OT_BUILDING_BLOCK_SOLID": 19, - "OT_GOLF": 20, - "OT_DOOR": 21, - "OT_PET": 22, - "OT_FABRIC": 23, - "OT_WINDOW": 24, - "OT_ROOF": 25, - "OT_HORSE": 26, - "OT_STRUCTURE": 27, - "OT_HOUSING_TEXTURE": 28, - "OT_PLANT": 29 - } - }, - "m_sIcon": { - "type": "std::string", - "id": 9, - "offset": 208, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306259831 - }, - "m_equipRequirements": { - "type": "class RequirementList*", - "id": 10, - "offset": 280, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2762617226 - }, - "m_purchaseRequirements": { - "type": "class RequirementList*", - "id": 11, - "offset": 288, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3174641793 - }, - "m_equipEffects": { - "type": "class GameEffectInfo*", - "id": 12, - "offset": 296, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 836628351 - }, - "m_baseCost": { - "type": "float", - "id": 13, - "offset": 312, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1565352651 - }, - "m_creditsCost": { - "type": "float", - "id": 14, - "offset": 320, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 805514974 - }, - "m_avatarInfo": { - "type": "class AvatarItemInfoBase*", - "id": 15, - "offset": 328, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2627321299 - }, - "m_avatarFlags": { - "type": "std::string", - "id": 16, - "offset": 336, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2347762759 - }, - "m_itemLimit": { - "type": "int", - "id": 17, - "offset": 316, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1799746856 - }, - "m_holidayFlag": { - "type": "std::string", - "id": 18, - "offset": 352, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2994795359 - }, - "m_itemSetBonusTemplateID": { - "type": "unsigned int", - "id": 19, - "offset": 384, - "flags": 33554439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1316835672 - }, - "m_numPrimaryColors": { - "type": "int", - "id": 20, - "offset": 428, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 981103872 - }, - "m_numSecondaryColors": { - "type": "int", - "id": 21, - "offset": 432, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1310416868 - }, - "m_numPatterns": { - "type": "int", - "id": 22, - "offset": 436, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 953162171 - }, - "m_school": { - "type": "std::string", - "id": 23, - "offset": 392, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2438566051 - }, - "m_arenaPointCost": { - "type": "int", - "id": 24, - "offset": 440, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1819621796 - }, - "m_pvpCurrencyCost": { - "type": "int", - "id": 25, - "offset": 444, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 645595444 - }, - "m_pvpTourneyCurrencyCost": { - "type": "int", - "id": 26, - "offset": 448, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 517874954 - }, - "m_rank": { - "type": "int", - "id": 27, - "offset": 424, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 219803942 - }, - "m_boyIconIndex": { - "type": "int", - "id": 28, - "offset": 452, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 802140453 - }, - "m_girlIconIndex": { - "type": "int", - "id": 29, - "offset": 456, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 832706793 - }, - "m_leashOffsetOverride": { - "type": "class SharedPointer", - "id": 30, - "offset": 464, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1692586788 - }, - "m_rarity": { - "type": "enum RarityType", - "id": 31, - "offset": 460, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2253792108, - "enum_options": { - "RT_COMMON": 0, - "RT_UNCOMMON": 1, - "RT_RARE": 2, - "RT_ULTRARARE": 3, - "RT_EPIC": 4 - } - } - } - }, - "1749710800": { - "name": "class WinAnimScaleTime", - "bases": [ - "WinAnimScale", - "WindowAnimation", - "PropertyClass" - ], - "hash": 1749710800, - "properties": { - "m_bUseDeepCopy": { - "type": "bool", - "id": 0, - "offset": 72, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 433380635 - }, - "m_scale": { - "type": "float", - "id": 1, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 899693439 - }, - "m_fTimeTotal": { - "type": "float", - "id": 2, - "offset": 96, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 661225456 - }, - "m_fTimeRemaining": { - "type": "float", - "id": 3, - "offset": 100, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1591443014 - } - } - }, - "588091261": { - "name": "class CastleTourHouseTemplateList*", - "bases": [ - "PropertyClass" - ], - "hash": 588091261, - "properties": { - "m_houseTemplateList": { - "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 835319593 - } - } - }, - "985119122": { - "name": "class BadgeButton", - "bases": [ - "ControlCheckBox", - "ControlButton", - "Window", - "PropertyClass" - ], - "hash": 985119122, - "properties": { - "m_sName": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306437263 - }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621225959 - }, - "m_Style": { - "type": "unsigned int", - "id": 2, - "offset": 152, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152, - "EFFECT_SCALE": 67108864, - "LOCK_ICON_SIZE": 33554432, - "LEFT_TEXT": 536870912, - "NO_FIT_TEXT": 1073741824, - "CHECKBOX_TEXTOVERIMAGE": 16777216 - } - }, - "m_Flags": { - "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } - }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3105139380 - }, - "m_fTargetAlpha": { - "type": "float", - "id": 5, - "offset": 212, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1809129834 - }, - "m_fDisabledAlpha": { - "type": "float", - "id": 6, - "offset": 216, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1389987675 - }, - "m_fAlpha": { - "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 482130755 - }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3623628394 - }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2102211316 - }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1846695875 - }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3389835433 - }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2547159940 - }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2587533771 - }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3091503757 - }, - "m_bToggle": { - "type": "bool", - "id": 16, - "offset": 608, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2071810903 - }, - "m_bButtonDown": { - "type": "bool", - "id": 17, - "offset": 609, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 840041705 - }, - "m_sLabel": { - "type": "std::wstring", - "id": 18, - "offset": 616, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2207009163 - }, - "m_labelOffset": { - "type": "class Rect", - "id": 19, - "offset": 832, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1990646723 - }, - "m_pButton": { - "type": "class SharedPointer", - "id": 20, - "offset": 656, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1543855875 - }, - "m_HotKey": { - "type": "unsigned int", - "id": 21, - "offset": 672, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1631553409 - }, - "m_Color": { - "type": "class Color", - "id": 22, - "offset": 676, - "flags": 262279, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1753714077 - }, - "m_bCursorOver": { - "type": "bool", - "id": 23, - "offset": 689, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 283981103 - }, - "m_bAbortWhenCursorNotOver": { - "type": "bool", - "id": 24, - "offset": 706, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 325405258 - }, - "m_bHotKeyDown": { - "type": "bool", - "id": 25, - "offset": 680, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 616989185 - }, - "m_fTime": { - "type": "float", - "id": 26, - "offset": 684, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 883746156 - }, - "m_bGreyed": { - "type": "bool", - "id": 27, - "offset": 688, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1566556053 - }, - "m_fMaxScale": { - "type": "float", - "id": 28, - "offset": 692, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2070186635 - }, - "m_fScaleSpeed": { - "type": "float", - "id": 29, - "offset": 696, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1457135702 - }, - "m_bUseDropShadow": { - "type": "bool", - "id": 30, - "offset": 704, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 93063037 - }, - "m_bUseOutline": { - "type": "bool", - "id": 31, - "offset": 705, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 744292994 - }, - "m_pGreyedState": { - "type": "class SharedPointer", - "id": 32, - "offset": 768, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2703352263 - }, - "m_pNormalState": { - "type": "class SharedPointer", - "id": 33, - "offset": 752, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1887909808 - }, - "m_pHighlightedState": { - "type": "class SharedPointer", - "id": 34, - "offset": 784, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2200177608 - }, - "m_pSelectedState": { - "type": "class SharedPointer", - "id": 35, - "offset": 800, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2266776432 - }, - "m_pDepressedState": { - "type": "class SharedPointer", - "id": 36, - "offset": 816, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1878185798 - }, - "m_nGroupID": { - "type": "int", - "id": 37, - "offset": 880, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 403966850 - }, - "m_bChecked": { - "type": "bool", - "id": 38, - "offset": 884, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 958955100 - }, - "m_pCheckedState": { - "type": "class SharedPointer", - "id": 39, - "offset": 888, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1210539694 - }, - "m_pCheckedGreyedState": { - "type": "class SharedPointer", - "id": 40, - "offset": 904, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2702030126 - }, - "m_pCheckedHighlightedState": { - "type": "class SharedPointer", - "id": 41, - "offset": 920, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1320097679 - }, - "m_pCheckedDepressedState": { - "type": "class SharedPointer", - "id": 42, - "offset": 936, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1609188685 - } - } - }, - "202889897": { - "name": "class SharedPointer", - "bases": [ - "ServiceOptionBase", - "PropertyClass" - ], - "hash": 202889897, - "properties": { - "m_serviceName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2206028813 - }, - "m_iconKey": { - "type": "std::string", - "id": 1, - "offset": 168, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2457138637 - }, - "m_displayKey": { - "type": "std::string", - "id": 2, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3023276954 - }, - "m_serviceIndex": { - "type": "unsigned int", - "id": 3, - "offset": 204, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2103126710 - }, - "m_forceInteract": { - "type": "bool", - "id": 4, - "offset": 200, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1705789564 - } - } - }, - "588090941": { - "name": "class CastleTourHouseTemplateList", - "bases": [ - "PropertyClass" - ], - "hash": 588090941, - "properties": { - "m_houseTemplateList": { - "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 835319593 - } - } - }, - "982801654": { - "name": "class TournamentConfig", - "bases": [ - "PropertyClass" - ], - "hash": 982801654, - "properties": { - "m_principalTournamentNames": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 268435463, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 3082525214, - "enum_options": { - "__BASECLASS": "TournamentTemplate" - } - }, - "m_temporaryTournamentNames": { - "type": "std::string", - "id": 1, - "offset": 96, - "flags": 268435463, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1792424127, - "enum_options": { - "__BASECLASS": "TournamentTemplate" - } - }, - "m_observerTimeout": { - "type": "int", - "id": 2, - "offset": 76, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 562500777 - }, - "m_forfeitTimeout": { - "type": "int", - "id": 3, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 688716240 - }, - "m_activeSeason": { - "type": "unsigned int", - "id": 4, - "offset": 112, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 277598322 - }, - "m_maxUpdateTime": { - "type": "unsigned int", - "id": 5, - "offset": 116, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1535609605 - }, - "m_maxUpdateCount": { - "type": "unsigned int", - "id": 6, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 937799039 - }, - "m_cacheUpdateTime": { - "type": "unsigned int", - "id": 7, - "offset": 124, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 887219635 - }, - "m_bracketScheduleFilename": { - "type": "std::string", - "id": 8, - "offset": 128, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3625222117 - }, - "m_bracketStringTableFilename": { - "type": "std::string", - "id": 9, - "offset": 160, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2974204087 - }, - "m_bracketRewardsPlaceMappingList": { - "type": "class SharedPointer", - "id": 10, - "offset": 192, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 3271398156 - } - } - }, - "200792996": { - "name": "class ClientCinematicActor", - "bases": [ - "CinematicActor", - "PropertyClass" - ], - "hash": 200792996, - "properties": {} - }, - "978661103": { - "name": "class ClientCreateHangingEffectActorCinematicAction", - "bases": [ - "CreateHangingEffectActorCinematicAction", - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 978661103, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - }, - "m_cloaked": { - "type": "bool", - "id": 2, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 7349510 - }, - "m_newActorName": { - "type": "std::string", - "id": 3, - "offset": 128, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2029131039 - } - } - }, - "1750319716": { - "name": "class ControlTextAlert", - "bases": [ - "ControlText", - "Window", - "PropertyClass" - ], - "hash": 1750319716, - "properties": { - "m_sName": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306437263 - }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621225959 - }, - "m_Style": { - "type": "unsigned int", - "id": 2, - "offset": 152, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152, - "DO_NOT_WRAP": 134217728, - "FIT_TEXT": 268435456 - } - }, - "m_Flags": { - "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } - }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3105139380 - }, - "m_fTargetAlpha": { - "type": "float", - "id": 5, - "offset": 212, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1809129834 - }, - "m_fDisabledAlpha": { - "type": "float", - "id": 6, - "offset": 216, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1389987675 - }, - "m_fAlpha": { - "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 482130755 - }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3623628394 - }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2102211316 - }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1846695875 - }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3389835433 - }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2547159940 - }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2587533771 - }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3091503757 - }, - "m_sText": { - "type": "std::wstring", - "id": 16, - "offset": 584, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2102642960 - }, - "m_sTooltip": { - "type": "std::wstring", - "id": 17, - "offset": 616, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1680475798 - }, - "m_bUseDropShadow": { - "type": "bool", - "id": 18, - "offset": 653, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 93063037 - }, - "m_bUseOutline": { - "type": "bool", - "id": 19, - "offset": 654, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 744292994 - }, - "m_bEnableWordWrap": { - "type": "bool", - "id": 20, - "offset": 655, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 430904562 - }, - "m_bEnableToggle": { - "type": "bool", - "id": 21, - "offset": 652, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1937994142 - }, - "m_nLeadingAdjust": { - "type": "int", - "id": 22, - "offset": 656, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1559480167 - }, - "m_fadeInDuration": { - "type": "float", - "id": 23, - "offset": 696, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 770484100 - }, - "m_idleDuration": { - "type": "float", - "id": 24, - "offset": 700, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 383632219 - }, - "m_fadeOutDuration": { - "type": "float", - "id": 25, - "offset": 704, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 666963557 - }, - "m_easeInFunction": { - "type": "unsigned int", - "id": 26, - "offset": 716, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 662405480, - "enum_options": { - "Linear": 0, - "Quadratic": 1, - "Cubic": 2, - "Quartic": 3, - "Quintic": 4, - "Trigonometric": 5, - "Exponential": 6, - "Circular": 7 - } - }, - "m_easeOutFunction": { - "type": "unsigned int", - "id": 27, - "offset": 720, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2174208521, - "enum_options": { - "Linear": 0, - "Quadratic": 1, - "Cubic": 2, - "Quartic": 3, - "Quintic": 4, - "Trigonometric": 5, - "Exponential": 6, - "Circular": 7 - } - } - } - }, - "194422607": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 194422607, - "properties": { - "m_name": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1717359772 - }, - "m_zone": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 268435463, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1717806295, - "enum_options": { - "__BASECLASS": "ZoneData" - } - }, - "m_iconArt": { - "type": "std::string", - "id": 2, - "offset": 136, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2457128171 - }, - "m_scoreThresholds": { - "type": "int", - "id": 3, - "offset": 168, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1790576374 - }, - "m_rewardTable": { - "type": "std::string", - "id": 4, - "offset": 192, - "flags": 268435463, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2569041800, - "enum_options": { - "__BASECLASS": "LootTable" - } - } - } - }, - "978238671": { - "name": "class SharedPointer", - "bases": [ - "GameObjectTemplate", - "CoreTemplate", - "PropertyClass" - ], - "hash": 978238671, - "properties": { - "m_behaviors": { - "type": "class BehaviorTemplate*", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1197808594 - }, - "m_objectName": { - "type": "std::string", - "id": 1, - "offset": 96, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2154940147 - }, - "m_templateID": { - "type": "unsigned int", - "id": 2, - "offset": 128, - "flags": 16777223, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1286746870 - }, - "m_visualID": { - "type": "unsigned int", - "id": 3, - "offset": 132, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1118778894 - }, - "m_adjectiveList": { - "type": "std::string", - "id": 4, - "offset": 248, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 3195213318 - }, - "m_exemptFromAOI": { - "type": "bool", - "id": 5, - "offset": 240, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1457879059 - }, - "m_displayName": { - "type": "std::string", - "id": 6, - "offset": 168, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2446900370 - }, - "m_description": { - "type": "std::string", - "id": 7, - "offset": 136, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1649374815 - }, - "m_nObjectType": { - "type": "enum ObjectType", - "id": 8, - "offset": 200, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2118905880, - "enum_options": { - "OT_UNDEFINED": 0, - "OT_PLAYER": 1, - "OT_NPC": 2, - "OT_PROP": 3, - "OT_OBJECT": 4, - "OT_HOUSE": 5, - "OT_KEY": 6, - "OT_OLD_KEY": 7, - "OT_DEED": 8, - "OT_MAIL": 9, - "OT_RECIPE": 17, - "OT_EQUIP_HEAD": 10, - "OT_EQUIP_CHEST": 11, - "OT_EQUIP_LEGS": 12, - "OT_EQUIP_HANDS": 13, - "OT_EQUIP_FINGER": 14, - "OT_EQUIP_FEET": 15, - "OT_EQUIP_EAR": 16, - "OT_BUILDING_BLOCK": 18, - "OT_BUILDING_BLOCK_SOLID": 19, - "OT_GOLF": 20, - "OT_DOOR": 21, - "OT_PET": 22, - "OT_FABRIC": 23, - "OT_WINDOW": 24, - "OT_ROOF": 25, - "OT_HORSE": 26, - "OT_STRUCTURE": 27, - "OT_HOUSING_TEXTURE": 28, - "OT_PLANT": 29 - } - }, - "m_sIcon": { - "type": "std::string", - "id": 9, - "offset": 208, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306259831 - }, - "m_lootTable": { - "type": "std::string", - "id": 10, - "offset": 280, - "flags": 268435463, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2539512673, - "enum_options": { - "__BASECLASS": "LootTable" - } - }, - "m_deathParticles": { - "type": "std::string", - "id": 11, - "offset": 296, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3201049672 - }, - "m_deathSound": { - "type": "std::string", - "id": 12, - "offset": 328, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1865613610 - }, - "m_hitSound": { - "type": "std::string", - "id": 13, - "offset": 360, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2746656777 - }, - "m_castSound": { - "type": "std::string", - "id": 14, - "offset": 392, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3343064815 - }, - "m_aggroSound": { - "type": "std::string", - "id": 15, - "offset": 424, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3421949940 - }, - "m_primarySchoolName": { - "type": "std::string", - "id": 16, - "offset": 456, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3211370408 - }, - "m_locationPreference": { - "type": "std::string", - "id": 17, - "offset": 488, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2817699507 - }, - "m_leashOffsetOverride": { - "type": "class SharedPointer", - "id": 18, - "offset": 528, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1692586788 - } - } - }, - "1750155876": { - "name": "class ControlTextAlert*", - "bases": [ - "ControlText", - "Window", - "PropertyClass" - ], - "hash": 1750155876, - "properties": { - "m_sName": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306437263 - }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621225959 - }, - "m_Style": { - "type": "unsigned int", - "id": 2, - "offset": 152, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152, - "DO_NOT_WRAP": 134217728, - "FIT_TEXT": 268435456 - } - }, - "m_Flags": { - "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } - }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3105139380 - }, - "m_fTargetAlpha": { - "type": "float", - "id": 5, - "offset": 212, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1809129834 - }, - "m_fDisabledAlpha": { - "type": "float", - "id": 6, - "offset": 216, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1389987675 - }, - "m_fAlpha": { - "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 482130755 - }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3623628394 - }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2102211316 - }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1846695875 - }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3389835433 - }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2547159940 - }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2587533771 - }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3091503757 - }, - "m_sText": { - "type": "std::wstring", - "id": 16, - "offset": 584, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2102642960 - }, - "m_sTooltip": { - "type": "std::wstring", - "id": 17, - "offset": 616, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1680475798 - }, - "m_bUseDropShadow": { - "type": "bool", - "id": 18, - "offset": 653, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 93063037 - }, - "m_bUseOutline": { - "type": "bool", - "id": 19, - "offset": 654, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 744292994 - }, - "m_bEnableWordWrap": { - "type": "bool", - "id": 20, - "offset": 655, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 430904562 - }, - "m_bEnableToggle": { - "type": "bool", - "id": 21, - "offset": 652, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1937994142 - }, - "m_nLeadingAdjust": { - "type": "int", - "id": 22, - "offset": 656, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1559480167 - }, - "m_fadeInDuration": { - "type": "float", - "id": 23, - "offset": 696, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 770484100 - }, - "m_idleDuration": { - "type": "float", - "id": 24, - "offset": 700, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 383632219 - }, - "m_fadeOutDuration": { - "type": "float", - "id": 25, - "offset": 704, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 666963557 - }, - "m_easeInFunction": { - "type": "unsigned int", - "id": 26, - "offset": 716, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 662405480, - "enum_options": { - "Linear": 0, - "Quadratic": 1, - "Cubic": 2, - "Quartic": 3, - "Quintic": 4, - "Trigonometric": 5, - "Exponential": 6, - "Circular": 7 - } - }, - "m_easeOutFunction": { - "type": "unsigned int", - "id": 27, - "offset": 720, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2174208521, - "enum_options": { - "Linear": 0, - "Quadratic": 1, - "Cubic": 2, - "Quartic": 3, - "Quintic": 4, - "Trigonometric": 5, - "Exponential": 6, - "Circular": 7 - } - } - } - }, - "193975864": { - "name": "class RemoveBacklashEffectCinematicAction*", - "bases": [ - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 193975864, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - } - } - }, - "588389314": { - "name": "class TransformationEffect", - "bases": [ - "GameEffectBase", - "PropertyClass" - ], - "hash": 588389314, - "properties": { - "m_currentTickCount": { - "type": "double", - "id": 0, - "offset": 80, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2533274692 - }, - "m_effectNameID": { - "type": "unsigned int", - "id": 1, - "offset": 96, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1204067144 - }, - "m_bIsOnPet": { - "type": "bool", - "id": 2, - "offset": 73, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 522593303 - }, - "m_originatorID": { - "type": "gid", - "id": 3, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1131810019 - }, - "m_itemSlotID": { - "type": "unsigned int", - "id": 4, - "offset": 112, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1895747595 - }, - "m_internalID": { - "type": "int", - "id": 5, - "offset": 92, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1643137924 - }, - "m_endTime": { - "type": "unsigned int", - "id": 6, - "offset": 88, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 716479635 - }, - "m_sRace": { - "type": "std::string", - "id": 7, - "offset": 128, - "flags": 268435487, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306580681, - "enum_options": { - "__BASECLASS": "CharacterRaceTable" - } - }, - "m_eGender": { - "type": "enum eGender", - "id": 8, - "offset": 160, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2776344943 - }, - "m_fScale": { - "type": "float", - "id": 9, - "offset": 164, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 503137701 - }, - "m_nPrimaryColor": { - "type": "int", - "id": 10, - "offset": 168, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 310334923 - }, - "m_nSecondaryColor": { - "type": "int", - "id": 11, - "offset": 172, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 516938671 - }, - "m_nPatternOption": { - "type": "int", - "id": 12, - "offset": 176, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 413195679 - }, - "m_nGeometryOption": { - "type": "int", - "id": 13, - "offset": 180, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 676541869 - }, - "m_sNaturalAttack": { - "type": "std::string", - "id": 14, - "offset": 184, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2131867453 - } - } - }, - "977663716": { - "name": "class ShoppingSellModifiers*", - "bases": [ - "PropertyClass" - ], - "hash": 977663716, - "properties": { - "m_sellMultiplier": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1673304590 - }, - "m_sellAdditive": { - "type": "int", - "id": 1, - "offset": 76, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 776461780 - } - } - }, - "192911190": { - "name": "class MoveController::MoveCommand", - "bases": [ - "PropertyClass" - ], - "hash": 192911190, - "properties": {} - }, - "192847376": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 192847376, - "properties": { - "m_addedPremiumPets": { - "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2021117594 - }, - "m_removedPremiumPets": { - "type": "unsigned int", - "id": 1, - "offset": 88, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 636888858 - } - } - }, - "1750389220": { - "name": "class ClientShadowSelfCinematicAction", - "bases": [ - "ShadowSelfCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 1750389220, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - } - } - }, - "192797137": { - "name": "class SharedPointer", - "bases": [ - "UnlockTriggerBehaviorBase", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 192797137, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - } - } - }, - "590221919": { - "name": "class AnimationSet*", - "bases": [ - "PropertyClass" - ], - "hash": 590221919, - "properties": { - "m_setName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2569991048 - }, - "m_pairs": { - "type": "class AnimationPair*", - "id": 1, - "offset": 112, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1888571563 - } - } - }, - "978661098": { - "name": "class ClientCreateHangingEffectActorCinematicAction*", - "bases": [ - "CreateHangingEffectActorCinematicAction", - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 978661098, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - }, - "m_cloaked": { - "type": "bool", - "id": 2, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 7349510 - }, - "m_newActorName": { - "type": "std::string", - "id": 3, - "offset": 128, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2029131039 - } - } - }, - "593207899": { - "name": "class SharedPointer", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 593207899, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_maxSlots": { - "type": "unsigned char", - "id": 1, - "offset": 128, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 792508619 - }, - "m_morphingSlots": { - "type": "class SharedPointer", - "id": 2, - "offset": 112, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2241134624 - }, - "m_energyTickTimeSecs": { - "type": "unsigned int", - "id": 3, - "offset": 136, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1255384991 - }, - "m_energy": { - "type": "int", - "id": 4, - "offset": 132, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 405911268 - }, - "m_playingAsPet": { - "type": "bool", - "id": 5, - "offset": 140, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1865705156 - } - } - }, - "1755781776": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1755781776, - "properties": { - "m_eloRankUp": { - "type": "int", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2072991243 - }, - "m_eloRankDown": { - "type": "int", - "id": 1, - "offset": 76, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 385300382 - }, - "m_kFactor": { - "type": "int", - "id": 2, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 243011684 - }, - "m_carryoverElo": { - "type": "int", - "id": 3, - "offset": 84, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 61027127 - }, - "m_rankName": { - "type": "std::string", - "id": 4, - "offset": 88, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1779957096 - }, - "m_icon": { - "type": "std::string", - "id": 5, - "offset": 120, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1717182340 - }, - "m_badgeName": { - "type": "std::string", - "id": 6, - "offset": 152, - "flags": 268435463, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3002948047, - "enum_options": { - "__BASECLASS": "BadgeTemplate" - } - } - } - }, - "980682381": { - "name": "class BadgeFilterInfo*", - "bases": [ - "PropertyClass" - ], - "hash": 980682381, - "properties": { - "m_badgeFilterNameID": { - "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2064078516 - }, - "m_numberOfBadges": { - "type": "int", - "id": 1, - "offset": 76, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1438042878 - }, - "m_numberOfExtraCreditBadges": { - "type": "int", - "id": 2, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 301196253 - } - } - }, - "192910870": { - "name": "class MoveController::MoveCommand*", - "bases": [ - "PropertyClass" - ], - "hash": 192910870, - "properties": {} - }, - "1753170313": { - "name": "class ClientCantripsInvisibilityEffect*", - "bases": [ - "CantripsInvisibilityEffect", - "GameEffectBase", - "PropertyClass" - ], - "hash": 1753170313, - "properties": { - "m_currentTickCount": { - "type": "double", - "id": 0, - "offset": 80, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2533274692 - }, - "m_effectNameID": { - "type": "unsigned int", - "id": 1, - "offset": 96, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1204067144 - }, - "m_bIsOnPet": { - "type": "bool", - "id": 2, - "offset": 73, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 522593303 - }, - "m_originatorID": { - "type": "gid", - "id": 3, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1131810019 - }, - "m_itemSlotID": { - "type": "unsigned int", - "id": 4, - "offset": 112, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1895747595 - }, - "m_internalID": { - "type": "int", - "id": 5, - "offset": 92, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1643137924 - }, - "m_endTime": { - "type": "unsigned int", - "id": 6, - "offset": 88, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 716479635 - } - } - }, - "978917191": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 978917191, - "properties": { - "m_name": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1717359772 - }, - "m_icon": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1717182340 - }, - "m_shortcutList": { - "type": "std::string", - "id": 2, - "offset": 136, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 3408488691 - }, - "m_skinTone": { - "type": "unsigned int", - "id": 3, - "offset": 172, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2147803096 - } - } - }, - "1345908908": { - "name": "class SharedPointer", - "bases": [ - "DerbyLockLane", - "DerbyEffect", - "PropertyClass" - ], - "hash": 1345908908, - "properties": { - "m_buffType": { - "type": "enum DerbyTalentBuffType", - "id": 0, - "offset": 92, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1149251982, - "enum_options": { - "Buff": 0, - "Debuff": 1, - "Neither": 2 - } - }, - "m_kTarget": { - "type": "enum DerbyTargetType", - "id": 1, - "offset": 96, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1807803351, - "enum_options": { - "kTargetInFront": 0, - "kTargetBehind": 1, - "kTargetFirst": 2, - "kTargetSelf": 3, - "kTargetAll": 4, - "kTargetLast": 5 - } - }, - "m_nDuration": { - "type": "int", - "id": 2, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1110167982 - }, - "m_effectID": { - "type": "unsigned int", - "id": 3, - "offset": 88, - "flags": 24, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2347630439 - }, - "m_imageFilename": { - "type": "std::string", - "id": 4, - "offset": 112, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2813328063 - }, - "m_iconIndex": { - "type": "unsigned int", - "id": 5, - "offset": 144, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1265133262 - }, - "m_soundOnActivate": { - "type": "std::string", - "id": 6, - "offset": 152, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1956929714 - }, - "m_soundOnTarget": { - "type": "std::string", - "id": 7, - "offset": 184, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3444214056 - }, - "m_targetParticleEffect": { - "type": "std::string", - "id": 8, - "offset": 216, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3048234723 - }, - "m_overheadMessage": { - "type": "std::string", - "id": 9, - "offset": 248, - "flags": 8388639, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1701018190 - }, - "m_requirements": { - "type": "class RequirementList", - "id": 10, - "offset": 280, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2840988582 - } - } - }, - "1751417967": { - "name": "class RemoveCameraMappingCinematicAction", - "bases": [ - "CinematicAction", - "PropertyClass" - ], - "hash": 1751417967, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_camToReplace": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2286913643 - } - } - }, - "1347645193": { - "name": "class UIScaleConfigEntry*", - "bases": [ - "PropertyClass" - ], - "hash": 1347645193, - "properties": { - "m_res": { - "type": "int", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 267047684 - }, - "m_microScale": { - "type": "float", - "id": 1, - "offset": 76, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1618708793 - }, - "m_tinyScale": { - "type": "float", - "id": 2, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 477118371 - }, - "m_smallScale": { - "type": "float", - "id": 3, - "offset": 84, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 491529176 - }, - "m_regularScale": { - "type": "float", - "id": 4, - "offset": 88, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1846588305 - }, - "m_largeScale": { - "type": "float", - "id": 5, - "offset": 92, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 710194858 - }, - "m_hugeScale": { - "type": "float", - "id": 6, - "offset": 96, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1882331208 - } - } - }, - "1752903624": { - "name": "class ClientRecreateNPCActorCinematicAction", - "bases": [ - "RecreateNPCActorCinematicAction", - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 1752903624, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - } - } - }, - "1347422349": { - "name": "class HousingGameManager", - "bases": [ - "PropertyClass" - ], - "hash": 1347422349, - "properties": {} - }, - "1751459467": { - "name": "class SharedPointer", - "bases": [ - "CoreObject", - "PropertyClass" - ], - "hash": 1751459467, - "properties": { - "m_inactiveBehaviors": { - "type": "class SharedPointer", - "id": 0, - "offset": 224, - "flags": 31, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1850812559 - }, - "m_globalID.m_full": { - "type": "unsigned __int64", - "id": 1, - "offset": 72, - "flags": 16777247, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2312465444 - }, - "m_permID": { - "type": "unsigned __int64", - "id": 2, - "offset": 80, - "flags": 16777247, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1298909658 - }, - "m_location": { - "type": "class Vector3D", - "id": 3, - "offset": 168, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2239683611 - }, - "m_orientation": { - "type": "class Vector3D", - "id": 4, - "offset": 180, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2344058766 - }, - "m_fScale": { - "type": "float", - "id": 5, - "offset": 196, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 503137701 - }, - "m_templateID.m_full": { - "type": "unsigned __int64", - "id": 6, - "offset": 96, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 633907631 - }, - "m_debugName": { - "type": "std::string", - "id": 7, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3553984419 - }, - "m_displayKey": { - "type": "std::string", - "id": 8, - "offset": 136, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3023276954 - }, - "m_zoneTagID": { - "type": "unsigned int", - "id": 9, - "offset": 344, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 965291410 - }, - "m_speedMultiplier": { - "type": "short", - "id": 10, - "offset": 192, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 123130076 - }, - "m_nMobileID": { - "type": "unsigned short", - "id": 11, - "offset": 194, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1054318939 - }, - "m_characterId": { - "type": "gid", - "id": 12, - "offset": 440, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 210498418 - } - } - }, - "1346799028": { - "name": "enum ConditionalSpellEffectRequirement::RequirementTarget", - "bases": [], - "hash": 1346799028, - "properties": {} - }, - "1347111689": { - "name": "class TournamentLevelModifiers", - "bases": [ - "CoreTemplate", - "PropertyClass" - ], - "hash": 1347111689, - "properties": { - "m_behaviors": { - "type": "class BehaviorTemplate*", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1197808594 - }, - "m_levelToRankMod": { - "type": "class Point", - "id": 1, - "offset": 96, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 3747681891 - }, - "m_templateID": { - "type": "unsigned int", - "id": 2, - "offset": 136, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1286746870 - } - } - }, - "1752993966": { - "name": "class SharedPointer", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1752993966, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_wsNameOverride": { - "type": "std::wstring", - "id": 1, - "offset": 120, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2131249091 - } - } - }, - "1347638330": { - "name": "class TempStartingPipEffect*", - "bases": [ - "GameEffectBase", - "PropertyClass" - ], - "hash": 1347638330, - "properties": { - "m_currentTickCount": { - "type": "double", - "id": 0, - "offset": 80, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2533274692 - }, - "m_effectNameID": { - "type": "unsigned int", - "id": 1, - "offset": 96, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1204067144 - }, - "m_bIsOnPet": { - "type": "bool", - "id": 2, - "offset": 73, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 522593303 - }, - "m_originatorID": { - "type": "gid", - "id": 3, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1131810019 - }, - "m_itemSlotID": { - "type": "unsigned int", - "id": 4, - "offset": 112, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1895747595 - }, - "m_internalID": { - "type": "int", - "id": 5, - "offset": 92, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1643137924 - }, - "m_endTime": { - "type": "unsigned int", - "id": 6, - "offset": 88, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 716479635 - }, - "m_pipsGiven": { - "type": "int", - "id": 7, - "offset": 128, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1346249167 - }, - "m_powerPipsGiven": { - "type": "int", - "id": 8, - "offset": 132, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 377908508 - } - } - }, - "1754037696": { - "name": "class SharedPointer", - "bases": [ - "BurnAuraCinematicAction", - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 1754037696, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - } - } - }, - "1347637562": { - "name": "class TempStartingPipEffect", - "bases": [ - "GameEffectBase", - "PropertyClass" - ], - "hash": 1347637562, - "properties": { - "m_currentTickCount": { - "type": "double", - "id": 0, - "offset": 80, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2533274692 - }, - "m_effectNameID": { - "type": "unsigned int", - "id": 1, - "offset": 96, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1204067144 - }, - "m_bIsOnPet": { - "type": "bool", - "id": 2, - "offset": 73, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 522593303 - }, - "m_originatorID": { - "type": "gid", - "id": 3, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1131810019 - }, - "m_itemSlotID": { - "type": "unsigned int", - "id": 4, - "offset": 112, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1895747595 - }, - "m_internalID": { - "type": "int", - "id": 5, - "offset": 92, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1643137924 - }, - "m_endTime": { - "type": "unsigned int", - "id": 6, - "offset": 88, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 716479635 - }, - "m_pipsGiven": { - "type": "int", - "id": 7, - "offset": 128, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1346249167 - }, - "m_powerPipsGiven": { - "type": "int", - "id": 8, - "offset": 132, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 377908508 - } - } - }, - "1753843605": { - "name": "class SharedPointer", - "bases": [ - "IdleAuraCinematicAction", - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 1753843605, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - } - } - }, - "1753945993": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1753945993, - "properties": { - "m_plantList": { - "type": "class GardenPlant", - "id": 0, - "offset": 72, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 645587347 - } - } - }, - "1347681001": { - "name": "class WindowTip*", - "bases": [ - "ControlText", - "Window", - "PropertyClass" - ], - "hash": 1347681001, - "properties": { - "m_sName": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306437263 - }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621225959 - }, - "m_Style": { - "type": "unsigned int", - "id": 2, - "offset": 152, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152, - "DO_NOT_WRAP": 134217728, - "FIT_TEXT": 268435456 - } - }, - "m_Flags": { - "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } - }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3105139380 - }, - "m_fTargetAlpha": { - "type": "float", - "id": 5, - "offset": 212, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1809129834 - }, - "m_fDisabledAlpha": { - "type": "float", - "id": 6, - "offset": 216, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1389987675 - }, - "m_fAlpha": { - "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 482130755 - }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3623628394 - }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2102211316 - }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1846695875 - }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3389835433 - }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2547159940 - }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2587533771 - }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3091503757 - }, - "m_sText": { - "type": "std::wstring", - "id": 16, - "offset": 584, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2102642960 - }, - "m_sTooltip": { - "type": "std::wstring", - "id": 17, - "offset": 616, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1680475798 - }, - "m_bUseDropShadow": { - "type": "bool", - "id": 18, - "offset": 653, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 93063037 - }, - "m_bUseOutline": { - "type": "bool", - "id": 19, - "offset": 654, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 744292994 - }, - "m_bEnableWordWrap": { - "type": "bool", - "id": 20, - "offset": 655, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 430904562 - }, - "m_bEnableToggle": { - "type": "bool", - "id": 21, - "offset": 652, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1937994142 - }, - "m_nLeadingAdjust": { - "type": "int", - "id": 22, - "offset": 656, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1559480167 - } - } - }, - "1347660521": { - "name": "class WindowTip", - "bases": [ - "ControlText", - "Window", - "PropertyClass" - ], - "hash": 1347660521, - "properties": { - "m_sName": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306437263 - }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621225959 - }, - "m_Style": { - "type": "unsigned int", - "id": 2, - "offset": 152, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152, - "DO_NOT_WRAP": 134217728, - "FIT_TEXT": 268435456 - } - }, - "m_Flags": { - "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } - }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3105139380 - }, - "m_fTargetAlpha": { - "type": "float", - "id": 5, - "offset": 212, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1809129834 - }, - "m_fDisabledAlpha": { - "type": "float", - "id": 6, - "offset": 216, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1389987675 - }, - "m_fAlpha": { - "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 482130755 - }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3623628394 - }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2102211316 - }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1846695875 - }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3389835433 - }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2547159940 - }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2587533771 - }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3091503757 - }, - "m_sText": { - "type": "std::wstring", - "id": 16, - "offset": 584, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2102642960 - }, - "m_sTooltip": { - "type": "std::wstring", - "id": 17, - "offset": 616, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1680475798 - }, - "m_bUseDropShadow": { - "type": "bool", - "id": 18, - "offset": 653, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 93063037 - }, - "m_bUseOutline": { - "type": "bool", - "id": 19, - "offset": 654, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 744292994 - }, - "m_bEnableWordWrap": { - "type": "bool", - "id": 20, - "offset": 655, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 430904562 - }, - "m_bEnableToggle": { - "type": "bool", - "id": 21, - "offset": 652, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1937994142 - }, - "m_nLeadingAdjust": { - "type": "int", - "id": 22, - "offset": 656, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1559480167 - } - } - }, - "1754613237": { - "name": "class SharedPointer", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 1754613237, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - }, - "m_maxReagentsPerStack": { - "type": "int", - "id": 1, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1052405942 - } - } - }, - "1754288358": { - "name": "class std::list >", - "bases": [], - "hash": 1754288358, - "properties": {} - }, - "1347903865": { - "name": "class MonsterArenaBehaviorTemplate", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 1347903865, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - } - } - }, - "1347897721": { - "name": "class MonsterArenaBehaviorTemplate*", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 1347897721, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - } - } - }, - "1754780671": { - "name": "class HouseTransferResult*", - "bases": [ - "PropertyClass" - ], - "hash": 1754780671, - "properties": { - "m_templateID": { - "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1286746870 - }, - "m_statusResult": { - "type": "int", - "id": 1, - "offset": 76, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1273560413 - } - } - }, - "1348860702": { - "name": "class SharedPointer", - "bases": [ - "Requirement", - "PropertyClass" - ], - "hash": 1348860702, - "properties": { - "m_applyNOT": { - "type": "bool", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1746328074, - "enum_options": { - "__DEFAULT": 0 - } - }, - "m_operator": { - "type": "enum Requirement::Operator", - "id": 1, - "offset": 76, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2672792317, - "enum_options": { - "ROP_AND": 0, - "ROP_OR": 1, - "__DEFAULT": "ROP_AND" - } - } - } - }, - "1758482786": { - "name": "class SharedPointer", - "bases": [ - "CinematicAction", - "PropertyClass" - ], - "hash": 1758482786, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_bSetVisible": { - "type": "bool", - "id": 1, - "offset": 88, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 471535983 - }, - "m_fTimeToSet": { - "type": "float", - "id": 2, - "offset": 84, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 661189659 - }, - "m_timerStrKey": { - "type": "std::string", - "id": 3, - "offset": 96, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3000196414 - }, - "m_timerOp": { - "type": "enum TimerControlCinematicAction::kControlOperation", - "id": 4, - "offset": 80, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1809610086, - "enum_options": { - "kNone": 0, - "kStartTimer": 1, - "kSetVisible": 2, - "kSetTimerString": 3, - "kSetTimeToShow": 4 - } - } - } - }, - "1756429664": { - "name": "struct std::pair,union gid>", - "bases": [], - "hash": 1756429664, - "properties": {} - }, - "1755995099": { - "name": "class ClientZoneTokenBehavior", - "bases": [ - "ZoneTokenBehavior", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1755995099, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_tokens": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 27, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621026866 - } - } - }, - "1353792470": { - "name": "class PetTalentBaseTemplate*", - "bases": [ - "CoreTemplate", - "PropertyClass" - ], - "hash": 1353792470, - "properties": { - "m_behaviors": { - "type": "class BehaviorTemplate*", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1197808594 - }, - "m_talentName": { - "type": "std::string", - "id": 1, - "offset": 96, - "flags": 134217735, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2455147588 - }, - "m_displayName": { - "type": "std::string", - "id": 2, - "offset": 136, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2446900370 - }, - "m_description": { - "type": "std::string", - "id": 3, - "offset": 168, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1649374815 - }, - "m_imageIndex": { - "type": "unsigned int", - "id": 4, - "offset": 200, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1781902856 - }, - "m_imageName": { - "type": "std::string", - "id": 5, - "offset": 208, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2391520543 - }, - "m_rank": { - "type": "unsigned char", - "id": 6, - "offset": 240, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 857403388 - }, - "m_breedsAsTalentName": { - "type": "std::string", - "id": 7, - "offset": 248, - "flags": 268435463, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2143399629, - "enum_options": { - "__BASECLASS": "PetTalentBaseTemplate" - } - }, - "m_bRetired": { - "type": "bool", - "id": 8, - "offset": 280, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 904227684, - "enum_options": { - "__DEFAULT": 0 - } - }, - "m_unsearchable": { - "type": "bool", - "id": 9, - "offset": 281, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1760679968, - "enum_options": { - "__DEFAULT": 0 - } - } - } - }, - "1351220360": { - "name": "class WaypointGoalTemplate*", - "bases": [ - "GoalTemplate", - "CoreTemplate", - "PropertyClass" - ], - "hash": 1351220360, - "properties": { - "m_behaviors": { - "type": "class BehaviorTemplate*", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1197808594 - }, - "m_goalName": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1521627807 - }, - "m_goalNameID": { - "type": "unsigned int", - "id": 2, - "offset": 496, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 403158846 - }, - "m_goalTitle": { - "type": "std::string", - "id": 3, - "offset": 136, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2291910240 - }, - "m_goalUnderway": { - "type": "std::string", - "id": 4, - "offset": 168, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3153144269 - }, - "m_hyperlink": { - "type": "std::string", - "id": 5, - "offset": 200, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2887798993 - }, - "m_completeText": { - "type": "std::string", - "id": 6, - "offset": 232, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2767458393 - }, - "m_completeResults": { - "type": "class ResultList*", - "id": 7, - "offset": 440, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1964258099 - }, - "m_goalRequirements": { - "type": "class RequirementList*", - "id": 8, - "offset": 448, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2979967145 - }, - "m_tallyCounter": { - "type": "class TallyCounterTemplate*", - "id": 9, - "offset": 456, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1884546193 - }, - "m_locationName": { - "type": "std::string", - "id": 10, - "offset": 272, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1824218389 - }, - "m_displayImage1": { - "type": "std::string", - "id": 11, - "offset": 304, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1959572133 - }, - "m_displayImage2": { - "type": "std::string", - "id": 12, - "offset": 336, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1959572134 - }, - "m_clientTags": { - "type": "std::string", - "id": 13, - "offset": 368, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2319030025 - }, - "m_genericEvents": { - "type": "std::string", - "id": 14, - "offset": 384, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 3466670829 - }, - "m_autoQualify": { - "type": "bool", - "id": 15, - "offset": 400, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1878907431 - }, - "m_autoComplete": { - "type": "bool", - "id": 16, - "offset": 401, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1302545445 - }, - "m_destinationZone": { - "type": "std::string", - "id": 17, - "offset": 408, - "flags": 268435463, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2605356153, - "enum_options": { - "__BASECLASS": "ZoneData" - } - }, - "m_dialogList": { - "type": "class ActorDialogListBase*", - "id": 18, - "offset": 264, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1909154969 - }, - "m_goalType": { - "type": "enum GoalTemplate::GOAL_TYPE", - "id": 19, - "offset": 96, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1488021149, - "enum_options": { - "GOAL_TYPE_UNKNOWN": 0, - "GOAL_TYPE_BOUNTY": 1, - "GOAL_TYPE_BOUNTYCOLLECT": 2, - "GOAL_TYPE_SCAVENGE": 3, - "GOAL_TYPE_PERSONA": 4, - "GOAL_TYPE_WAYPOINT": 5, - "GOAL_TYPE_SCAVENGEFAKE": 6, - "GOAL_TYPE_ACHIEVERANK": 7, - "GOAL_TYPE_USAGE": 8, - "GOAL_TYPE_COMPLETEQUEST": 9, - "GOAL_TYPE_SOCIARANK": 10, - "GOAL_TYPE_SOCIACURRENCY": 11, - "GOAL_TYPE_SOCIAMINIGAME": 12, - "GOAL_TYPE_SOCIAGIVEITEM": 13, - "GOAL_TYPE_SOCIAGETITEM": 14, - "GOAL_TYPE_COLLECTAFTERBOUNTY": 15, - "GOAL_TYPE_ENCOUNTER_WAYPOINT_FOREACH": 16 - } - }, - "m_noQuestHelper": { - "type": "bool", - "id": 20, - "offset": 500, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 578010882, - "enum_options": { - "__DEFAULT": 0 - } - }, - "m_petOnlyQuest": { - "type": "bool", - "id": 21, - "offset": 501, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 679359344, - "enum_options": { - "__DEFAULT": 0 - } - }, - "m_activateResults": { - "type": "class ResultList*", - "id": 22, - "offset": 504, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3790153995 - }, - "m_hideGoalFloatyText": { - "type": "bool", - "id": 23, - "offset": 512, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1919383204, - "enum_options": { - "__DEFAULT": 0 - } - }, - "m_zoneEntry": { - "type": "bool", - "id": 24, - "offset": 520, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 739064065 - }, - "m_zoneTag": { - "type": "std::string", - "id": 25, - "offset": 528, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3405382643 - }, - "m_proximityTag": { - "type": "std::string", - "id": 26, - "offset": 560, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1743105804 - }, - "m_zoneExit": { - "type": "bool", - "id": 27, - "offset": 521, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 675650793 - } - } - }, - "1350596654": { - "name": "class SharedPointer", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1350596654, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - } - } - }, - "1757305819": { - "name": "class ClientZoneTokenBehavior*", - "bases": [ - "ZoneTokenBehavior", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1757305819, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_tokens": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 27, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621026866 - } - } - }, - "1350408327": { - "name": "class InfractionMessageBoxInfo", - "bases": [ - "InfractionPenaltyInfo", - "PropertyClass" - ], - "hash": 1350408327, - "properties": { - "m_addAtPointValue": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1071217084 - }, - "m_removeAtPointValue": { - "type": "float", - "id": 1, - "offset": 76, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2112196961 - }, - "m_lifespan": { - "type": "std::string", - "id": 2, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3042809453 - }, - "m_titleKey": { - "type": "std::string", - "id": 3, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3096106918 - }, - "m_messageKey": { - "type": "std::string", - "id": 4, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3561518217 - } - } - }, - "1756484975": { - "name": "class SharedPointer", - "bases": [ - "GameEffectBase", - "PropertyClass" - ], - "hash": 1756484975, - "properties": { - "m_currentTickCount": { - "type": "double", - "id": 0, - "offset": 80, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2533274692 - }, - "m_effectNameID": { - "type": "unsigned int", - "id": 1, - "offset": 96, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1204067144 - }, - "m_bIsOnPet": { - "type": "bool", - "id": 2, - "offset": 73, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 522593303 - }, - "m_originatorID": { - "type": "gid", - "id": 3, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1131810019 - }, - "m_itemSlotID": { - "type": "unsigned int", - "id": 4, - "offset": 112, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1895747595 - }, - "m_internalID": { - "type": "int", - "id": 5, - "offset": 92, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1643137924 - }, - "m_endTime": { - "type": "unsigned int", - "id": 6, - "offset": 88, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 716479635 - } - } - }, - "1756710922": { - "name": "class SharedPointer", - "bases": [ - "GameEffectInfo", - "PropertyClass" - ], - "hash": 1756710922, - "properties": { - "m_effectName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2029161513 - }, - "m_pipsGiven": { - "type": "int", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1346249167 - }, - "m_powerPipsGiven": { - "type": "int", - "id": 2, - "offset": 108, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 377908508 - } - } - }, - "1350840418": { - "name": "class ClassProjectTemplate*", - "bases": [ - "PropertyClass" - ], - "hash": 1350840418, - "properties": { - "m_projectName": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2223751667 - }, - "m_projectTitle": { - "type": "std::string", - "id": 1, - "offset": 112, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1839677492 - }, - "m_projectDescription": { - "type": "std::string", - "id": 2, - "offset": 144, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3174112214 - }, - "m_projectType": { - "type": "enum ClassProjectType", - "id": 3, - "offset": 176, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 772612819, - "enum_options": { - "CPT_TreasureTower": 0, - "CPT_Battleground": 1, - "CPT_SideActivity": 2, - "CPT_SeasonPass": 3, - "CPT_PetActivity": 4, - "CPT_HousingSideActivity": 5, - "CPT_RateMyStitch": 6, - "CPT_MonthlyGauntlet": 7 - } - }, - "m_initialHoliday": { - "type": "std::string", - "id": 4, - "offset": 184, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1940089679 - }, - "m_maximumLengthInDays": { - "type": "int", - "id": 5, - "offset": 216, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 725301602 - }, - "m_crownsCost": { - "type": "int", - "id": 6, - "offset": 220, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1592212719 - }, - "m_useRankAsProgress": { - "type": "int", - "id": 7, - "offset": 224, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 878502460 - }, - "m_rankProgressOffset": { - "type": "int", - "id": 8, - "offset": 228, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1364950050 - }, - "m_minimumCreditsPerDay": { - "type": "int", - "id": 9, - "offset": 232, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 826102537 - }, - "m_leaderboardRewardItemID": { - "type": "unsigned int", - "id": 10, - "offset": 236, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1667943971 - }, - "m_leaderboardSize": { - "type": "int", - "id": 11, - "offset": 240, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 683398282 - }, - "m_mainDoodle": { - "type": "std::string", - "id": 12, - "offset": 248, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2211594423 - }, - "m_purchasedCredits": { - "type": "int", - "id": 13, - "offset": 280, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2038693799 - }, - "m_friendLootPosition": { - "type": "int", - "id": 14, - "offset": 284, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 109123685 - }, - "m_friendLootTable": { - "type": "std::string", - "id": 15, - "offset": 288, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2327793817 - }, - "m_enterPortalText": { - "type": "std::string", - "id": 16, - "offset": 320, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2956016240 - }, - "m_goldCost": { - "type": "int", - "id": 17, - "offset": 352, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 444550297 - }, - "m_numberOfGoldCredits": { - "type": "int", - "id": 18, - "offset": 356, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1425904684 - }, - "m_restoreHealthAndManaAtExit": { - "type": "int", - "id": 19, - "offset": 360, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 810519539 - }, - "m_endingGracePeriodInDays": { - "type": "int", - "id": 20, - "offset": 364, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 953234780 - }, - "m_eventTeleportZone": { - "type": "std::string", - "id": 21, - "offset": 368, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3270861128 - }, - "m_eventTeleportLocation": { - "type": "std::string", - "id": 22, - "offset": 400, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2332042341 - }, - "m_subscriberCreditsPerDay": { - "type": "int", - "id": 23, - "offset": 432, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2010087361 - }, - "m_extendedTemplateName": { - "type": "std::string", - "id": 24, - "offset": 440, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2221427049 - }, - "m_creditsOverrideName": { - "type": "std::string", - "id": 25, - "offset": 472, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1508357386 - }, - "m_sortPriority": { - "type": "int", - "id": 26, - "offset": 504, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 967438884 - }, - "m_excludeFromSeasonPass": { - "type": "int", - "id": 27, - "offset": 508, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1149583224 - }, - "m_isSeasonPass": { - "type": "int", - "id": 28, - "offset": 512, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 540828470 - }, - "m_autoStartYear": { - "type": "int", - "id": 29, - "offset": 516, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1267259570 - }, - "m_autoStartMonth": { - "type": "int", - "id": 30, - "offset": 520, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1000688519 - }, - "m_autoStartDay": { - "type": "int", - "id": 31, - "offset": 524, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1990722463 - }, - "m_maximumSeasonPassPoints": { - "type": "int", - "id": 32, - "offset": 528, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1165009301 - }, - "m_subscriberCownsCost": { - "type": "int", - "id": 33, - "offset": 532, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 352653713 - }, - "m_hideGlobalProgressBar": { - "type": "int", - "id": 34, - "offset": 536, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 102179695 - }, - "m_seasonPassPicture": { - "type": "std::string", - "id": 35, - "offset": 552, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2691396375 - }, - "m_top10LeaderboardBadgeName": { - "type": "std::string", - "id": 36, - "offset": 584, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2561324632 - }, - "m_top100LeaderboardBadgeName": { - "type": "std::string", - "id": 37, - "offset": 616, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1556059944 - }, - "m_top1LeaderboardBadgeName": { - "type": "std::string", - "id": 38, - "offset": 648, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2266410888 - }, - "m_activityList": { - "type": "class SharedPointer", - "id": 39, - "offset": 680, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 458837381 - }, - "m_rewardList": { - "type": "class SharedPointer", - "id": 40, - "offset": 696, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 4055911451 - }, - "m_tokenRewardList": { - "type": "class SharedPointer", - "id": 41, - "offset": 712, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 3225972988 - }, - "m_locationList": { - "type": "class SharedPointer", - "id": 42, - "offset": 728, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 776321471 - }, - "m_globalLootPointList": { - "type": "class SharedPointer", - "id": 43, - "offset": 744, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2460390565 - }, - "m_finalRewardList": { - "type": "class SharedPointer", - "id": 44, - "offset": 760, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 527856021 - }, - "m_featuredRewardList": { - "type": "class SharedPointer", - "id": 45, - "offset": 776, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 3028130027 - }, - "m_isBattlePass": { - "type": "int", - "id": 46, - "offset": 540, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1473359625 - }, - "m_isEnabledProgressAdvancement": { - "type": "int", - "id": 47, - "offset": 544, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1623438236 - }, - "m_extraDataList": { - "type": "std::string", - "id": 48, - "offset": 792, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2533725525 - }, - "m_isDisableActivitiesSection": { - "type": "int", - "id": 49, - "offset": 548, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2093397492 - } - } - }, - "1350840394": { - "name": "class ClassProjectTemplate", - "bases": [ - "PropertyClass" - ], - "hash": 1350840394, - "properties": { - "m_projectName": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2223751667 - }, - "m_projectTitle": { - "type": "std::string", - "id": 1, - "offset": 112, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1839677492 - }, - "m_projectDescription": { - "type": "std::string", - "id": 2, - "offset": 144, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3174112214 - }, - "m_projectType": { - "type": "enum ClassProjectType", - "id": 3, - "offset": 176, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 772612819, - "enum_options": { - "CPT_TreasureTower": 0, - "CPT_Battleground": 1, - "CPT_SideActivity": 2, - "CPT_SeasonPass": 3, - "CPT_PetActivity": 4, - "CPT_HousingSideActivity": 5, - "CPT_RateMyStitch": 6, - "CPT_MonthlyGauntlet": 7 - } - }, - "m_initialHoliday": { - "type": "std::string", - "id": 4, - "offset": 184, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1940089679 - }, - "m_maximumLengthInDays": { - "type": "int", - "id": 5, - "offset": 216, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 725301602 - }, - "m_crownsCost": { - "type": "int", - "id": 6, - "offset": 220, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1592212719 - }, - "m_useRankAsProgress": { - "type": "int", - "id": 7, - "offset": 224, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 878502460 - }, - "m_rankProgressOffset": { - "type": "int", - "id": 8, - "offset": 228, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1364950050 - }, - "m_minimumCreditsPerDay": { - "type": "int", - "id": 9, - "offset": 232, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 826102537 - }, - "m_leaderboardRewardItemID": { - "type": "unsigned int", - "id": 10, - "offset": 236, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1667943971 - }, - "m_leaderboardSize": { - "type": "int", - "id": 11, - "offset": 240, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 683398282 - }, - "m_mainDoodle": { - "type": "std::string", - "id": 12, - "offset": 248, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2211594423 - }, - "m_purchasedCredits": { - "type": "int", - "id": 13, - "offset": 280, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2038693799 - }, - "m_friendLootPosition": { - "type": "int", - "id": 14, - "offset": 284, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 109123685 - }, - "m_friendLootTable": { - "type": "std::string", - "id": 15, - "offset": 288, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2327793817 - }, - "m_enterPortalText": { - "type": "std::string", - "id": 16, - "offset": 320, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2956016240 - }, - "m_goldCost": { - "type": "int", - "id": 17, - "offset": 352, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 444550297 - }, - "m_numberOfGoldCredits": { - "type": "int", - "id": 18, - "offset": 356, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1425904684 - }, - "m_restoreHealthAndManaAtExit": { - "type": "int", - "id": 19, - "offset": 360, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 810519539 - }, - "m_endingGracePeriodInDays": { - "type": "int", - "id": 20, - "offset": 364, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 953234780 - }, - "m_eventTeleportZone": { - "type": "std::string", - "id": 21, - "offset": 368, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3270861128 - }, - "m_eventTeleportLocation": { - "type": "std::string", - "id": 22, - "offset": 400, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2332042341 - }, - "m_subscriberCreditsPerDay": { - "type": "int", - "id": 23, - "offset": 432, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2010087361 - }, - "m_extendedTemplateName": { - "type": "std::string", - "id": 24, - "offset": 440, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2221427049 - }, - "m_creditsOverrideName": { - "type": "std::string", - "id": 25, - "offset": 472, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1508357386 - }, - "m_sortPriority": { - "type": "int", - "id": 26, - "offset": 504, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 967438884 - }, - "m_excludeFromSeasonPass": { - "type": "int", - "id": 27, - "offset": 508, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1149583224 - }, - "m_isSeasonPass": { - "type": "int", - "id": 28, - "offset": 512, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 540828470 - }, - "m_autoStartYear": { - "type": "int", - "id": 29, - "offset": 516, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1267259570 - }, - "m_autoStartMonth": { - "type": "int", - "id": 30, - "offset": 520, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1000688519 - }, - "m_autoStartDay": { - "type": "int", - "id": 31, - "offset": 524, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1990722463 - }, - "m_maximumSeasonPassPoints": { - "type": "int", - "id": 32, - "offset": 528, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1165009301 - }, - "m_subscriberCownsCost": { - "type": "int", - "id": 33, - "offset": 532, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 352653713 - }, - "m_hideGlobalProgressBar": { - "type": "int", - "id": 34, - "offset": 536, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 102179695 - }, - "m_seasonPassPicture": { - "type": "std::string", - "id": 35, - "offset": 552, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2691396375 - }, - "m_top10LeaderboardBadgeName": { - "type": "std::string", - "id": 36, - "offset": 584, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2561324632 - }, - "m_top100LeaderboardBadgeName": { - "type": "std::string", - "id": 37, - "offset": 616, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1556059944 - }, - "m_top1LeaderboardBadgeName": { - "type": "std::string", - "id": 38, - "offset": 648, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2266410888 - }, - "m_activityList": { - "type": "class SharedPointer", - "id": 39, - "offset": 680, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 458837381 - }, - "m_rewardList": { - "type": "class SharedPointer", - "id": 40, - "offset": 696, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 4055911451 - }, - "m_tokenRewardList": { - "type": "class SharedPointer", - "id": 41, - "offset": 712, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 3225972988 - }, - "m_locationList": { - "type": "class SharedPointer", - "id": 42, - "offset": 728, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 776321471 - }, - "m_globalLootPointList": { - "type": "class SharedPointer", - "id": 43, - "offset": 744, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2460390565 - }, - "m_finalRewardList": { - "type": "class SharedPointer", - "id": 44, - "offset": 760, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 527856021 - }, - "m_featuredRewardList": { - "type": "class SharedPointer", - "id": 45, - "offset": 776, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 3028130027 - }, - "m_isBattlePass": { - "type": "int", - "id": 46, - "offset": 540, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1473359625 - }, - "m_isEnabledProgressAdvancement": { - "type": "int", - "id": 47, - "offset": 544, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1623438236 - }, - "m_extraDataList": { - "type": "std::string", - "id": 48, - "offset": 792, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2533725525 - }, - "m_isDisableActivitiesSection": { - "type": "int", - "id": 49, - "offset": 548, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2093397492 - } - } - }, - "1757865141": { - "name": "class SharedPointer", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 1757865141, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - }, - "m_visible": { - "type": "bool", - "id": 1, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 810536225 - }, - "m_showToPets": { - "type": "bool", - "id": 2, - "offset": 121, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1441936691 - } - } - }, - "1351604036": { - "name": "class SharedPointer", - "bases": [ - "CinematicAction", - "PropertyClass" - ], - "hash": 1351604036, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_maximumDurationInSeconds": { - "type": "float", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1457214913 - }, - "m_hideUI": { - "type": "bool", - "id": 2, - "offset": 84, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 519818283 - }, - "m_stopMovement": { - "type": "bool", - "id": 3, - "offset": 85, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1752496036 - } - } - }, - "1759866452": { - "name": "class LootDialogEntry", - "bases": [ - "ActorDialogEntry", - "PropertyClass" - ], - "hash": 1759866452, - "properties": { - "m_requirements": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 263, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3043523229 - }, - "m_dialog": { - "type": "std::string", - "id": 1, - "offset": 88, - "flags": 8388639, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1858395851 - }, - "m_picture": { - "type": "std::string", - "id": 2, - "offset": 120, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3128322903 - }, - "m_soundFile": { - "type": "std::string", - "id": 3, - "offset": 152, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2276870852 - }, - "m_action": { - "type": "std::string", - "id": 4, - "offset": 184, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1734553689 - }, - "m_dialogEvent": { - "type": "std::string", - "id": 5, - "offset": 216, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2707957549 - }, - "m_actorTemplateID": { - "type": "unsigned int", - "id": 6, - "offset": 248, - "flags": 33554463, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2134265679 - }, - "m_cameraName": { - "type": "std::string", - "id": 7, - "offset": 256, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3252786917 - }, - "m_interpolationDuration": { - "type": "float", - "id": 8, - "offset": 312, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1458058437, - "enum_options": { - "__DEFAULT": "1.0" - } - }, - "m_cameraOffsetX": { - "type": "float", - "id": 9, - "offset": 288, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1515912895 - }, - "m_cameraOffsetY": { - "type": "float", - "id": 10, - "offset": 292, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1515912896 - }, - "m_cameraOffsetZ": { - "type": "float", - "id": 11, - "offset": 296, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1515912897 - }, - "m_pitch": { - "type": "float", - "id": 12, - "offset": 304, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 896371695 - }, - "m_yaw": { - "type": "float", - "id": 13, - "offset": 300, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 357256328 - }, - "m_roll": { - "type": "float", - "id": 14, - "offset": 308, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 310020272 - }, - "m_cameraShakeType": { - "type": "std::string", - "id": 15, - "offset": 320, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1754128882, - "enum_options": { - "": 0, - "Constant": "Constant", - "Quake": "Quake", - "Thud": "Thud", - "End": "End", - "__DEFAULT": 0 - } - }, - "m_cameraShakeDuration": { - "type": "float", - "id": 16, - "offset": 352, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 316581010, - "enum_options": { - "__DEFAULT": "0.0" - } - }, - "m_cameraShakeAmplitude": { - "type": "float", - "id": 17, - "offset": 356, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2179718321, - "enum_options": { - "__DEFAULT": "0.0" - } - }, - "m_bypassCameraOnReview": { - "type": "bool", - "id": 18, - "offset": 360, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1412905725, - "enum_options": { - "__DEFAULT": 1 - } - }, - "m_cameraZoneName": { - "type": "std::string", - "id": 19, - "offset": 368, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3131581121 - }, - "m_duration": { - "type": "float", - "id": 20, - "offset": 400, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 920323453 - }, - "m_delay": { - "type": "float", - "id": 21, - "offset": 404, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 881988134 - }, - "m_cameraHidePlayers": { - "type": "int", - "id": 22, - "offset": 408, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 28533149 - }, - "m_walkAwayNpcTemplateID": { - "type": "gid", - "id": 23, - "offset": 416, - "flags": 33554719, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 942697507 - }, - "m_walkAwayExitDirectionInDegrees": { - "type": "float", - "id": 24, - "offset": 424, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 396419785 - }, - "m_walkAwayFadeTime": { - "type": "float", - "id": 25, - "offset": 428, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 822405687 - }, - "m_walkAwayUseCurrentFacing": { - "type": "bool", - "id": 26, - "offset": 432, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1464855436 - }, - "m_standInPlayerTag": { - "type": "std::string", - "id": 27, - "offset": 440, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1590121141 - }, - "m_fadeOutCamera": { - "type": "bool", - "id": 28, - "offset": 472, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1766121252 - }, - "m_snapCameraToPlayerAtExit": { - "type": "bool", - "id": 29, - "offset": 473, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1323369645 - }, - "m_secondaryCameraName": { - "type": "std::string", - "id": 30, - "offset": 480, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1670705581 - }, - "m_secondaryInterpolationDuration": { - "type": "float", - "id": 31, - "offset": 512, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1873822349 - }, - "m_npcStandInList": { - "type": "std::string", - "id": 32, - "offset": 520, - "flags": 287, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2076308937 - }, - "m_dialogAnimationList": { - "type": "std::string", - "id": 33, - "offset": 536, - "flags": 287, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2444806919 - }, - "m_dialogTurningList": { - "type": "std::string", - "id": 34, - "offset": 552, - "flags": 287, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2782869422 - }, - "m_npcYawOffsetInDegrees": { - "type": "float", - "id": 35, - "offset": 568, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1395075270 - }, - "m_allowPlayerToMove": { - "type": "bool", - "id": 36, - "offset": 572, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 225101337 - }, - "m_soundEffectFile": { - "type": "std::string", - "id": 37, - "offset": 576, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3235157265 - }, - "m_musicFile": { - "type": "std::string", - "id": 38, - "offset": 608, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2963686620 - }, - "m_nonStackableMusic": { - "type": "bool", - "id": 39, - "offset": 640, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1675595625 - }, - "m_nonRepeatableMusic": { - "type": "bool", - "id": 40, - "offset": 641, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2138315572 - }, - "m_playMusicAtSFXVolume": { - "type": "bool", - "id": 41, - "offset": 642, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2130871816 - }, - "m_soundEffectDelay": { - "type": "float", - "id": 42, - "offset": 644, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1586382460 - }, - "m_musicDelay": { - "type": "float", - "id": 43, - "offset": 648, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1217785767 - }, - "m_musicFadeTime": { - "type": "float", - "id": 44, - "offset": 652, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 502925015 - }, - "m_dontReleaseCameraAtExit": { - "type": "bool", - "id": 45, - "offset": 474, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1107508961 - }, - "m_disableBackButton": { - "type": "bool", - "id": 46, - "offset": 656, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 122355444 - }, - "m_enableExitButton": { - "type": "bool", - "id": 47, - "offset": 657, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1824693936 - }, - "m_cameraFadeType": { - "type": "std::string", - "id": 48, - "offset": 664, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2021935382, - "enum_options": { - "": 0, - "In Out Black": "In Out Black", - "In Out White": "In Out White", - "In Black": "In Black", - "Out Black": "Out Black", - "In White": "In White", - "Out White": "Out White", - "__DEFAULT": 0 - } - }, - "m_cameraFadeTime": { - "type": "float", - "id": 49, - "offset": 696, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 614419391, - "enum_options": { - "__DEFAULT": "0.5" - } - }, - "m_idleAnimation": { - "type": "std::string", - "id": 50, - "offset": 704, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2900487193 - }, - "m_spamTime": { - "type": "float", - "id": 51, - "offset": 736, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1727215063, - "enum_options": { - "__DEFAULT": "1.0" - } - }, - "m_playSoundIfSpamming": { - "type": "bool", - "id": 52, - "offset": 740, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 690006749, - "enum_options": { - "__DEFAULT": 1 - } - }, - "m_playMusicIfSpamming": { - "type": "bool", - "id": 53, - "offset": 741, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 538564341, - "enum_options": { - "__DEFAULT": 1 - } - }, - "m_stopMusicFadeTime": { - "type": "float", - "id": 54, - "offset": 744, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 696390845, - "enum_options": { - "__DEFAULT": "0.0" - } - }, - "m_restartMusicFadeTime": { - "type": "float", - "id": 55, - "offset": 748, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 709379292, - "enum_options": { - "__DEFAULT": "0.0" - } - }, - "m_meetsRequirements": { - "type": "bool", - "id": 56, - "offset": 752, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 296443061 - }, - "m_secondaryCameraInitalDelay": { - "type": "float", - "id": 57, - "offset": 516, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1812842232 - }, - "m_displayButtonsOnTimedDialog": { - "type": "bool", - "id": 58, - "offset": 753, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 569741400 - } - } - }, - "1351220400": { - "name": "class WaypointGoalTemplate", - "bases": [ - "GoalTemplate", - "CoreTemplate", - "PropertyClass" - ], - "hash": 1351220400, - "properties": { - "m_behaviors": { - "type": "class BehaviorTemplate*", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1197808594 - }, - "m_goalName": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1521627807 - }, - "m_goalNameID": { - "type": "unsigned int", - "id": 2, - "offset": 496, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 403158846 - }, - "m_goalTitle": { - "type": "std::string", - "id": 3, - "offset": 136, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2291910240 - }, - "m_goalUnderway": { - "type": "std::string", - "id": 4, - "offset": 168, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3153144269 - }, - "m_hyperlink": { - "type": "std::string", - "id": 5, - "offset": 200, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2887798993 - }, - "m_completeText": { - "type": "std::string", - "id": 6, - "offset": 232, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2767458393 - }, - "m_completeResults": { - "type": "class ResultList*", - "id": 7, - "offset": 440, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1964258099 - }, - "m_goalRequirements": { - "type": "class RequirementList*", - "id": 8, - "offset": 448, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2979967145 - }, - "m_tallyCounter": { - "type": "class TallyCounterTemplate*", - "id": 9, - "offset": 456, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1884546193 - }, - "m_locationName": { - "type": "std::string", - "id": 10, - "offset": 272, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1824218389 - }, - "m_displayImage1": { - "type": "std::string", - "id": 11, - "offset": 304, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1959572133 - }, - "m_displayImage2": { - "type": "std::string", - "id": 12, - "offset": 336, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1959572134 - }, - "m_clientTags": { - "type": "std::string", - "id": 13, - "offset": 368, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2319030025 - }, - "m_genericEvents": { - "type": "std::string", - "id": 14, - "offset": 384, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 3466670829 - }, - "m_autoQualify": { - "type": "bool", - "id": 15, - "offset": 400, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1878907431 - }, - "m_autoComplete": { - "type": "bool", - "id": 16, - "offset": 401, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1302545445 - }, - "m_destinationZone": { - "type": "std::string", - "id": 17, - "offset": 408, - "flags": 268435463, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2605356153, - "enum_options": { - "__BASECLASS": "ZoneData" - } - }, - "m_dialogList": { - "type": "class ActorDialogListBase*", - "id": 18, - "offset": 264, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1909154969 - }, - "m_goalType": { - "type": "enum GoalTemplate::GOAL_TYPE", - "id": 19, - "offset": 96, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1488021149, - "enum_options": { - "GOAL_TYPE_UNKNOWN": 0, - "GOAL_TYPE_BOUNTY": 1, - "GOAL_TYPE_BOUNTYCOLLECT": 2, - "GOAL_TYPE_SCAVENGE": 3, - "GOAL_TYPE_PERSONA": 4, - "GOAL_TYPE_WAYPOINT": 5, - "GOAL_TYPE_SCAVENGEFAKE": 6, - "GOAL_TYPE_ACHIEVERANK": 7, - "GOAL_TYPE_USAGE": 8, - "GOAL_TYPE_COMPLETEQUEST": 9, - "GOAL_TYPE_SOCIARANK": 10, - "GOAL_TYPE_SOCIACURRENCY": 11, - "GOAL_TYPE_SOCIAMINIGAME": 12, - "GOAL_TYPE_SOCIAGIVEITEM": 13, - "GOAL_TYPE_SOCIAGETITEM": 14, - "GOAL_TYPE_COLLECTAFTERBOUNTY": 15, - "GOAL_TYPE_ENCOUNTER_WAYPOINT_FOREACH": 16 - } - }, - "m_noQuestHelper": { - "type": "bool", - "id": 20, - "offset": 500, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 578010882, - "enum_options": { - "__DEFAULT": 0 - } - }, - "m_petOnlyQuest": { - "type": "bool", - "id": 21, - "offset": 501, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 679359344, - "enum_options": { - "__DEFAULT": 0 - } - }, - "m_activateResults": { - "type": "class ResultList*", - "id": 22, - "offset": 504, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3790153995 - }, - "m_hideGoalFloatyText": { - "type": "bool", - "id": 23, - "offset": 512, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1919383204, - "enum_options": { - "__DEFAULT": 0 - } - }, - "m_zoneEntry": { - "type": "bool", - "id": 24, - "offset": 520, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 739064065 - }, - "m_zoneTag": { - "type": "std::string", - "id": 25, - "offset": 528, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3405382643 - }, - "m_proximityTag": { - "type": "std::string", - "id": 26, - "offset": 560, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1743105804 - }, - "m_zoneExit": { - "type": "bool", - "id": 27, - "offset": 521, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 675650793 - } - } - }, - "1759744146": { - "name": "class WizItemBossList*", - "bases": [ - "WizItemLocations", - "PropertyClass" - ], - "hash": 1759744146, - "properties": { - "m_itemType": { - "type": "enum WizItemLocations::eItemType", - "id": 0, - "offset": 72, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3482173907, - "enum_options": { - "shop": 0, - "quest": 1, - "boss": 2, - "gardening": 3, - "goldChest": 4 - } - }, - "m_bosses": { - "type": "unsigned int", - "id": 1, - "offset": 80, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 501597596 - } - } - }, - "1759741074": { - "name": "class WizItemBossList", - "bases": [ - "WizItemLocations", - "PropertyClass" - ], - "hash": 1759741074, - "properties": { - "m_itemType": { - "type": "enum WizItemLocations::eItemType", - "id": 0, - "offset": 72, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3482173907, - "enum_options": { - "shop": 0, - "quest": 1, - "boss": 2, - "gardening": 3, - "goldChest": 4 - } - }, - "m_bosses": { - "type": "unsigned int", - "id": 1, - "offset": 80, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 501597596 - } - } - }, - "1353579900": { - "name": "class CharacterSet", - "bases": [ - "PropertyClass" - ], - "hash": 1353579900, - "properties": { - "m_set": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 848667448 - }, - "m_cost": { - "type": "unsigned int", - "id": 1, - "offset": 88, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 430682758 - } - } - }, - "1352786064": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1352786064, - "properties": { - "m_bGlobalEffect": { - "type": "bool", - "id": 0, - "offset": 112, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1403478355 - }, - "m_globalEffect": { - "type": "class SharedPointer", - "id": 1, - "offset": 120, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 967055913 - }, - "m_battlefieldEffects": { - "type": "class SharedPointer", - "id": 2, - "offset": 136, - "flags": 31, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1245973515 - } - } - }, - "1351843379": { - "name": "class ClientDerbyLockLane", - "bases": [ - "DerbyLockLane", - "DerbyEffect", - "PropertyClass" - ], - "hash": 1351843379, - "properties": { - "m_buffType": { - "type": "enum DerbyTalentBuffType", - "id": 0, - "offset": 92, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1149251982, - "enum_options": { - "Buff": 0, - "Debuff": 1, - "Neither": 2 - } - }, - "m_kTarget": { - "type": "enum DerbyTargetType", - "id": 1, - "offset": 96, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1807803351, - "enum_options": { - "kTargetInFront": 0, - "kTargetBehind": 1, - "kTargetFirst": 2, - "kTargetSelf": 3, - "kTargetAll": 4, - "kTargetLast": 5 - } - }, - "m_nDuration": { - "type": "int", - "id": 2, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1110167982 - }, - "m_effectID": { - "type": "unsigned int", - "id": 3, - "offset": 88, - "flags": 24, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2347630439 - }, - "m_imageFilename": { - "type": "std::string", - "id": 4, - "offset": 112, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2813328063 - }, - "m_iconIndex": { - "type": "unsigned int", - "id": 5, - "offset": 144, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1265133262 - }, - "m_soundOnActivate": { - "type": "std::string", - "id": 6, - "offset": 152, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1956929714 - }, - "m_soundOnTarget": { - "type": "std::string", - "id": 7, - "offset": 184, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3444214056 - }, - "m_targetParticleEffect": { - "type": "std::string", - "id": 8, - "offset": 216, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3048234723 - }, - "m_overheadMessage": { - "type": "std::string", - "id": 9, - "offset": 248, - "flags": 8388639, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1701018190 - }, - "m_requirements": { - "type": "class RequirementList", - "id": 10, - "offset": 280, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2840988582 - } - } - }, - "1759880407": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1759880407, - "properties": { - "m_crownsCost": { - "type": "int", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1592212719 - }, - "m_msrpCost": { - "type": "int", - "id": 1, - "offset": 76, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1724602037 - }, - "m_purchaseText": { - "type": "std::string", - "id": 2, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2216277819 - }, - "m_buttonText": { - "type": "std::string", - "id": 3, - "offset": 112, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3388300476 - }, - "m_type": { - "type": "enum PremiumContentOption::ContentType", - "id": 4, - "offset": 144, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2088156959, - "enum_options": { - "PCOT_UNKNOWN": 0, - "PCOT_ACCESSPASS": 1, - "PCOT_PURCHASE": 2, - "PCOT_TIMEDACCESSPASS": 3, - "PCOT_SAMPLEACCESSPASS": 4 - } - } - } - }, - "1759869524": { - "name": "class LootDialogEntry*", - "bases": [ - "ActorDialogEntry", - "PropertyClass" - ], - "hash": 1759869524, - "properties": { - "m_requirements": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 263, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3043523229 - }, - "m_dialog": { - "type": "std::string", - "id": 1, - "offset": 88, - "flags": 8388639, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1858395851 - }, - "m_picture": { - "type": "std::string", - "id": 2, - "offset": 120, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3128322903 - }, - "m_soundFile": { - "type": "std::string", - "id": 3, - "offset": 152, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2276870852 - }, - "m_action": { - "type": "std::string", - "id": 4, - "offset": 184, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1734553689 - }, - "m_dialogEvent": { - "type": "std::string", - "id": 5, - "offset": 216, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2707957549 - }, - "m_actorTemplateID": { - "type": "unsigned int", - "id": 6, - "offset": 248, - "flags": 33554463, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2134265679 - }, - "m_cameraName": { - "type": "std::string", - "id": 7, - "offset": 256, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3252786917 - }, - "m_interpolationDuration": { - "type": "float", - "id": 8, - "offset": 312, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1458058437, - "enum_options": { - "__DEFAULT": "1.0" - } - }, - "m_cameraOffsetX": { - "type": "float", - "id": 9, - "offset": 288, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1515912895 - }, - "m_cameraOffsetY": { - "type": "float", - "id": 10, - "offset": 292, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1515912896 - }, - "m_cameraOffsetZ": { - "type": "float", - "id": 11, - "offset": 296, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1515912897 - }, - "m_pitch": { - "type": "float", - "id": 12, - "offset": 304, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 896371695 - }, - "m_yaw": { - "type": "float", - "id": 13, - "offset": 300, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 357256328 - }, - "m_roll": { - "type": "float", - "id": 14, - "offset": 308, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 310020272 - }, - "m_cameraShakeType": { - "type": "std::string", - "id": 15, - "offset": 320, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1754128882, - "enum_options": { - "": 0, - "Constant": "Constant", - "Quake": "Quake", - "Thud": "Thud", - "End": "End", - "__DEFAULT": 0 - } - }, - "m_cameraShakeDuration": { - "type": "float", - "id": 16, - "offset": 352, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 316581010, - "enum_options": { - "__DEFAULT": "0.0" - } - }, - "m_cameraShakeAmplitude": { - "type": "float", - "id": 17, - "offset": 356, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2179718321, - "enum_options": { - "__DEFAULT": "0.0" - } - }, - "m_bypassCameraOnReview": { - "type": "bool", - "id": 18, - "offset": 360, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1412905725, - "enum_options": { - "__DEFAULT": 1 - } - }, - "m_cameraZoneName": { - "type": "std::string", - "id": 19, - "offset": 368, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3131581121 - }, - "m_duration": { - "type": "float", - "id": 20, - "offset": 400, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 920323453 - }, - "m_delay": { - "type": "float", - "id": 21, - "offset": 404, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 881988134 - }, - "m_cameraHidePlayers": { - "type": "int", - "id": 22, - "offset": 408, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 28533149 - }, - "m_walkAwayNpcTemplateID": { - "type": "gid", - "id": 23, - "offset": 416, - "flags": 33554719, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 942697507 - }, - "m_walkAwayExitDirectionInDegrees": { - "type": "float", - "id": 24, - "offset": 424, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 396419785 - }, - "m_walkAwayFadeTime": { - "type": "float", - "id": 25, - "offset": 428, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 822405687 - }, - "m_walkAwayUseCurrentFacing": { - "type": "bool", - "id": 26, - "offset": 432, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1464855436 - }, - "m_standInPlayerTag": { - "type": "std::string", - "id": 27, - "offset": 440, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1590121141 - }, - "m_fadeOutCamera": { - "type": "bool", - "id": 28, - "offset": 472, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1766121252 - }, - "m_snapCameraToPlayerAtExit": { - "type": "bool", - "id": 29, - "offset": 473, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1323369645 - }, - "m_secondaryCameraName": { - "type": "std::string", - "id": 30, - "offset": 480, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1670705581 - }, - "m_secondaryInterpolationDuration": { - "type": "float", - "id": 31, - "offset": 512, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1873822349 - }, - "m_npcStandInList": { - "type": "std::string", - "id": 32, - "offset": 520, - "flags": 287, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2076308937 - }, - "m_dialogAnimationList": { - "type": "std::string", - "id": 33, - "offset": 536, - "flags": 287, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2444806919 - }, - "m_dialogTurningList": { - "type": "std::string", - "id": 34, - "offset": 552, - "flags": 287, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2782869422 - }, - "m_npcYawOffsetInDegrees": { - "type": "float", - "id": 35, - "offset": 568, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1395075270 - }, - "m_allowPlayerToMove": { - "type": "bool", - "id": 36, - "offset": 572, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 225101337 - }, - "m_soundEffectFile": { - "type": "std::string", - "id": 37, - "offset": 576, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3235157265 - }, - "m_musicFile": { - "type": "std::string", - "id": 38, - "offset": 608, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2963686620 - }, - "m_nonStackableMusic": { - "type": "bool", - "id": 39, - "offset": 640, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1675595625 - }, - "m_nonRepeatableMusic": { - "type": "bool", - "id": 40, - "offset": 641, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2138315572 - }, - "m_playMusicAtSFXVolume": { - "type": "bool", - "id": 41, - "offset": 642, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2130871816 - }, - "m_soundEffectDelay": { - "type": "float", - "id": 42, - "offset": 644, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1586382460 - }, - "m_musicDelay": { - "type": "float", - "id": 43, - "offset": 648, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1217785767 - }, - "m_musicFadeTime": { - "type": "float", - "id": 44, - "offset": 652, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 502925015 - }, - "m_dontReleaseCameraAtExit": { - "type": "bool", - "id": 45, - "offset": 474, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1107508961 - }, - "m_disableBackButton": { - "type": "bool", - "id": 46, - "offset": 656, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 122355444 - }, - "m_enableExitButton": { - "type": "bool", - "id": 47, - "offset": 657, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1824693936 - }, - "m_cameraFadeType": { - "type": "std::string", - "id": 48, - "offset": 664, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2021935382, - "enum_options": { - "": 0, - "In Out Black": "In Out Black", - "In Out White": "In Out White", - "In Black": "In Black", - "Out Black": "Out Black", - "In White": "In White", - "Out White": "Out White", - "__DEFAULT": 0 - } - }, - "m_cameraFadeTime": { - "type": "float", - "id": 49, - "offset": 696, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 614419391, - "enum_options": { - "__DEFAULT": "0.5" - } - }, - "m_idleAnimation": { - "type": "std::string", - "id": 50, - "offset": 704, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2900487193 - }, - "m_spamTime": { - "type": "float", - "id": 51, - "offset": 736, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1727215063, - "enum_options": { - "__DEFAULT": "1.0" - } - }, - "m_playSoundIfSpamming": { - "type": "bool", - "id": 52, - "offset": 740, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 690006749, - "enum_options": { - "__DEFAULT": 1 - } - }, - "m_playMusicIfSpamming": { - "type": "bool", - "id": 53, - "offset": 741, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 538564341, - "enum_options": { - "__DEFAULT": 1 - } - }, - "m_stopMusicFadeTime": { - "type": "float", - "id": 54, - "offset": 744, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 696390845, - "enum_options": { - "__DEFAULT": "0.0" - } - }, - "m_restartMusicFadeTime": { - "type": "float", - "id": 55, - "offset": 748, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 709379292, - "enum_options": { - "__DEFAULT": "0.0" - } - }, - "m_meetsRequirements": { - "type": "bool", - "id": 56, - "offset": 752, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 296443061 - }, - "m_secondaryCameraInitalDelay": { - "type": "float", - "id": 57, - "offset": 516, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1812842232 - }, - "m_displayButtonsOnTimedDialog": { - "type": "bool", - "id": 58, - "offset": 753, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 569741400 - } - } - }, - "1353357255": { - "name": "class SharedPointer", - "bases": [ - "CombatSigilTemplate", - "SigilTemplate", - "CoreTemplate", - "PropertyClass" - ], - "hash": 1353357255, - "properties": { - "m_behaviors": { - "type": "class BehaviorTemplate*", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1197808594 - }, - "m_sigilName": { - "type": "std::string", - "id": 1, - "offset": 96, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3177657588 - }, - "m_sigilType": { - "type": "std::string", - "id": 2, - "offset": 136, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3177899445 - }, - "m_entryResults": { - "type": "class ResultList*", - "id": 3, - "offset": 184, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3262956108 - }, - "m_requirements": { - "type": "class RequirementList*", - "id": 4, - "offset": 176, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2840985510 - }, - "m_cancelResults": { - "type": "class ResultList*", - "id": 5, - "offset": 192, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3799257120 - }, - "m_completeResults": { - "type": "class ResultList*", - "id": 6, - "offset": 200, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1964258099 - }, - "m_useState": { - "type": "bool", - "id": 7, - "offset": 216, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 683320865 - }, - "m_stateOverride": { - "type": "std::string", - "id": 8, - "offset": 224, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1949715548 - }, - "m_subCircles": { - "type": "class SigilSubCircle*", - "id": 9, - "offset": 256, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2227135493 - }, - "m_engageRadius": { - "type": "float", - "id": 10, - "offset": 304, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1429683718 - }, - "m_battlefieldEffects": { - "type": "class SharedPointer", - "id": 11, - "offset": 312, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1245973515 - }, - "m_playerVictoryCinematic": { - "type": "std::string", - "id": 12, - "offset": 336, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2684536069 - }, - "m_combatMusic": { - "type": "std::string", - "id": 13, - "offset": 368, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3636593682 - }, - "m_prePlanningCinematicOverride": { - "type": "std::string", - "id": 14, - "offset": 400, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2585096390 - }, - "m_planningCinematicOverride": { - "type": "std::string", - "id": 15, - "offset": 432, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3592819999 - }, - "m_shadowThresholdType": { - "type": "enum kShadow_Threshold_Type", - "id": 16, - "offset": 464, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2847763136, - "enum_options": { - "SHADOW_THRESHOLD_MIN": 0, - "SHADOW_THRESHOLD_AVG": 1, - "SHADOW_THRESHOLD_MAX": 2 - } - }, - "m_shadowThresholdFactor": { - "type": "float", - "id": 17, - "offset": 468, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2104355177 - }, - "m_shadowPipRatingFactor": { - "type": "float", - "id": 18, - "offset": 472, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1061434314 - }, - "m_scalarDamagePvP": { - "type": "float", - "id": 19, - "offset": 476, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2195445026 - }, - "m_scalarResistPvP": { - "type": "float", - "id": 20, - "offset": 480, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1947822077 - }, - "m_scalarPiercePvP": { - "type": "float", - "id": 21, - "offset": 484, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 441266907 - }, - "m_scalarDamagePvE": { - "type": "float", - "id": 22, - "offset": 488, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2195445015 - }, - "m_scalarResistPvE": { - "type": "float", - "id": 23, - "offset": 492, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1947822066 - }, - "m_scalarPiercePvE": { - "type": "float", - "id": 24, - "offset": 496, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 441266896 - }, - "m_damageLimitPvP": { - "type": "float", - "id": 25, - "offset": 500, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1990135243 - }, - "m_dK0PvP": { - "type": "float", - "id": 26, - "offset": 504, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 413528556 - }, - "m_dN0PvP": { - "type": "float", - "id": 27, - "offset": 508, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 417086319 - }, - "m_resistLimitPvP": { - "type": "float", - "id": 28, - "offset": 512, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1174512006 - }, - "m_rK0PvP": { - "type": "float", - "id": 29, - "offset": 516, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 961424058 - }, - "m_rN0PvP": { - "type": "float", - "id": 30, - "offset": 520, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 964981821 - }, - "m_damageLimitPvE": { - "type": "float", - "id": 31, - "offset": 524, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1990135232 - }, - "m_dK0PvE": { - "type": "float", - "id": 32, - "offset": 528, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 413528545 - }, - "m_dN0PvE": { - "type": "float", - "id": 33, - "offset": 532, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 417086308 - }, - "m_resistLimitPvE": { - "type": "float", - "id": 34, - "offset": 536, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1174511995 - }, - "m_rK0PvE": { - "type": "float", - "id": 35, - "offset": 540, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 961424047 - }, - "m_rN0PvE": { - "type": "float", - "id": 36, - "offset": 544, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 964981810 - }, - "m_minimumOnSide": { - "type": "int", - "id": 37, - "offset": 552, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 179638776 - }, - "m_minimumError": { - "type": "std::string", - "id": 38, - "offset": 560, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1816923809 - } - } - }, - "1760380666": { - "name": "class std::list >", - "bases": [], - "hash": 1760380666, - "properties": {} - }, - "1759951601": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1759951601, - "properties": { - "m_list": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1753240061 - } - } - }, - "1353777412": { - "name": "class SharedPointer", - "bases": [ - "CinematicAction", - "PropertyClass" - ], - "hash": 1353777412, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_interpDuration": { - "type": "float", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237711951 - } - } - }, - "1354168352": { - "name": "enum RarityType", - "bases": [], - "hash": 1354168352, - "properties": {} - }, - "1788781264": { - "name": "class NumItemInInventory", - "bases": [ - "PropertyClass" - ], - "hash": 1788781264, - "properties": { - "m_itemTemplateID": { - "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2190120133 - }, - "m_numItemInInventory": { - "type": "int", - "id": 1, - "offset": 76, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1351636478 - } - } - }, - "1775705579": { - "name": "class Point", - "bases": [], - "hash": 1775705579, - "properties": {} - }, - "1764201896": { - "name": "class DailyQuestOption", - "bases": [ - "ServiceOptionBase", - "PropertyClass" - ], - "hash": 1764201896, - "properties": { - "m_serviceName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2206028813 - }, - "m_iconKey": { - "type": "std::string", - "id": 1, - "offset": 168, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2457138637 - }, - "m_displayKey": { - "type": "std::string", - "id": 2, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3023276954 - }, - "m_serviceIndex": { - "type": "unsigned int", - "id": 3, - "offset": 204, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2103126710 - }, - "m_forceInteract": { - "type": "bool", - "id": 4, - "offset": 200, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1705789564 - } - } - }, - "1762370452": { - "name": "class SharedPointer", - "bases": [ - "ServiceOptionBase", - "PropertyClass" - ], - "hash": 1762370452, - "properties": { - "m_serviceName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2206028813 - }, - "m_iconKey": { - "type": "std::string", - "id": 1, - "offset": 168, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2457138637 - }, - "m_displayKey": { - "type": "std::string", - "id": 2, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3023276954 - }, - "m_serviceIndex": { - "type": "unsigned int", - "id": 3, - "offset": 204, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2103126710 - }, - "m_forceInteract": { - "type": "bool", - "id": 4, - "offset": 200, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1705789564 - }, - "m_failureMessage": { - "type": "std::string", - "id": 5, - "offset": 224, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1882376712 - } - } - }, - "1363468403": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1363468403, - "properties": {} - }, - "1761496848": { - "name": "class ClientServerSyncCinematicAction", - "bases": [ - "ServerSyncCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 1761496848, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_eventToSend": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1564059786 - } - } - }, - "1353954794": { - "name": "class HousingPetBehaviorTemplate", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 1353954794, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - } - } - }, - "1760816619": { - "name": "class EffectListSpellEffect", - "bases": [ - "SpellEffect", - "PropertyClass" - ], - "hash": 1760816619, - "properties": { - "m_effectType": { - "type": "enum SpellEffect::kSpellEffects", - "id": 0, - "offset": 72, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2578255295, - "enum_options": { - "kInvalidSpellEffect": 0, - "kDamage": 1, - "kDamageNoCrit": 2, - "kHeal": 3, - "kHealPercent": 4, - "kSetHealPercent": 113, - "kStealHealth": 5, - "kReduceOverTime": 6, - "kDetonateOverTime": 7, - "kPushCharm": 8, - "kStealCharm": 9, - "kPushWard": 10, - "kStealWard": 11, - "kPushOverTime": 12, - "kStealOverTime": 13, - "kRemoveCharm": 14, - "kRemoveWard": 15, - "kRemoveOverTime": 16, - "kRemoveAura": 17, - "kSwapAll": 18, - "kSwapCharm": 19, - "kSwapWard": 20, - "kSwapOverTime": 21, - "kModifyIncomingDamage": 22, - "kModifyIncomingDamageFlat": 119, - "kMaximumIncomingDamage": 23, - "kModifyIncomingHeal": 24, - "kModifyIncomingHealFlat": 118, - "kModifyIncomingDamageType": 25, - "kModifyIncomingArmorPiercing": 26, - "kModifyOutgoingDamage": 27, - "kModifyOutgoingDamageFlat": 121, - "kModifyOutgoingHeal": 28, - "kModifyOutgoingHealFlat": 120, - "kModifyOutgoingDamageType": 29, - "kModifyOutgoingArmorPiercing": 30, - "kModifyOutgoingStealHealth": 31, - "kModifyIncomingStealHealth": 32, - "kBounceNext": 33, - "kBouncePrevious": 34, - "kBounceBack": 35, - "kBounceAll": 36, - "kAbsorbDamage": 37, - "kAbsorbHeal": 38, - "kModifyAccuracy": 39, - "kDispel": 40, - "kConfusion": 41, - "kCloakedCharm": 42, - "kCloakedWard": 43, - "kStunResist": 44, - "kClue": 111, - "kPipConversion": 45, - "kCritBoost": 46, - "kCritBlock": 47, - "kPolymorph": 48, - "kDelayCast": 49, - "kModifyCardCloak": 50, - "kModifyCardDamage": 51, - "kModifyCardAccuracy": 53, - "kModifyCardMutation": 54, - "kModifyCardRank": 55, - "kModifyCardArmorPiercing": 56, - "kSummonCreature": 65, - "kTeleportPlayer": 66, - "kStun": 67, - "kDampen": 68, - "kReshuffle": 69, - "kMindControl": 70, - "kModifyPips": 71, - "kModifyPowerPips": 72, - "kModifyShadowPips": 73, - "kModifyHate": 74, - "kDamageOverTime": 75, - "kHealOverTime": 76, - "kModifyPowerPipChance": 77, - "kModifyRank": 78, - "kStunBlock": 79, - "kRevealCloak": 80, - "kInstantKill": 81, - "kAfterlife": 82, - "kDeferredDamage": 83, - "kDamagePerTotalPipPower": 84, - "kModifyCardHeal": 52, - "kModifyCardCharm": 57, - "kModifyCardWard": 58, - "kModifyCardOutgoingDamage": 59, - "kModifyCardOutgoingAccuracy": 60, - "kModifyCardOutgoingHeal": 61, - "kModifyCardOutgoingArmorPiercing": 62, - "kModifyCardIncomingDamage": 63, - "kModifyCardAbsorbDamage": 64, - "kCloakedWardNoRemove": 86, - "kAddCombatTriggerList": 87, - "kRemoveCombatTriggerList": 88, - "kBacklashDamage": 89, - "kModifyBacklash": 90, - "kIntercept": 91, - "kShadowSelf": 92, - "kShadowCreature": 93, - "kModifyShadowCreatureLevel": 94, - "kSelectShadowCreatureAttackTarget": 95, - "kShadowDecrementTurn": 96, - "kCritBoostSchoolSpecific": 97, - "kSpawnCreature": 98, - "kUnPolymorph": 99, - "kPowerPipConversion": 100, - "kProtectCardBeneficial": 101, - "kProtectCardHarmful": 102, - "kProtectBeneficial": 103, - "kProtectHarmful": 104, - "kDivideDamage": 105, - "kCollectEssence": 106, - "kKillCreature": 107, - "kDispelBlock": 108, - "kConfusionBlock": 109, - "kModifyPipRoundRate": 110, - "kMaxHealthDamage": 112, - "kUntargetable": 114, - "kMakeTargetable": 115, - "kForceTargetable": 116, - "kRemoveStunBlock": 117, - "kExitCombat": 122, - "kSuspendPips": 123, - "kResumePips": 124, - "kAutoPass": 125, - "kStopAutoPass": 126, - "kVanish": 127, - "kStopVanish": 128, - "kMaxHealthHeal": 129, - "kHealByWard": 130, - "kTaunt": 131, - "kPacify": 132, - "kRemoveTargetRestriction": 133, - "kConvertHangingEffect": 134, - "kAddSpellToDeck": 135, - "kAddSpellToHand": 136, - "kModifyIncomingDamageOverTime": 137, - "kModifyIncomingHealOverTime": 138, - "kModifyCardDamagebyRank": 139, - "kPushConvertedCharm": 140, - "kStealConvertedCharm": 141, - "kPushConvertedWard": 142, - "kStealConvertedWard": 143, - "kPushConvertedOverTime": 144, - "kStealConvertedOverTime": 145, - "kRemoveConvertedCharm": 146, - "kRemoveConvertedWard": 147, - "kRemoveConvertedOverTime": 148, - "kModifyOverTimeDuration": 149, - "kModifySchoolPips": 150 - } - }, - "m_effectParam": { - "type": "int", - "id": 1, - "offset": 76, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 357920024 - }, - "m_disposition": { - "type": "enum SpellEffect::kHangingDisposition", - "id": 2, - "offset": 80, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1904841031, - "enum_options": { - "kBoth": 0, - "kBeneficial": 1, - "kHarmful": 2 - } - }, - "m_sDamageType": { - "type": "std::string", - "id": 3, - "offset": 88, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2501054223 - }, - "m_damageType": { - "type": "unsigned int", - "id": 4, - "offset": 84, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 737882766 - }, - "m_pipNum": { - "type": "int", - "id": 5, - "offset": 128, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 830827539 - }, - "m_actNum": { - "type": "int", - "id": 6, - "offset": 132, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 236824866 - }, - "m_effectTarget": { - "type": "enum SpellEffect::kEffectTarget", - "id": 7, - "offset": 140, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2458940523, - "enum_options": { - "kInvalidTarget": 0, - "kSpell": 1, - "kSpecificSpells": 2, - "kGlobal": 3, - "kEnemyTeam": 4, - "kEnemyTeamAllAtOnce": 5, - "kFriendlyTeam": 6, - "kFriendlyTeamAllAtOnce": 7, - "kEnemySingle": 8, - "kFriendlySingle": 9, - "kMinion": 10, - "kFriendlyMinion": 17, - "kEnemyMinion": 18, - "kSelf": 11, - "kAtLeastOneEnemy": 13, - "kPreselectedEnemySingle": 12, - "kMultiTargetEnemy": 14, - "kMultiTargetFriendly": 15, - "kFriendlySingleNotMe": 16 - } - }, - "m_numRounds": { - "type": "int", - "id": 8, - "offset": 144, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1229753829 - }, - "m_paramPerRound": { - "type": "int", - "id": 9, - "offset": 148, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 683234234 - }, - "m_healModifier": { - "type": "float", - "id": 10, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1317921248, - "enum_options": { - "__DEFAULT": "1.0" - } - }, - "m_spellTemplateID": { - "type": "unsigned int", - "id": 11, - "offset": 120, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 585567702 - }, - "m_enchantmentSpellTemplateID": { - "type": "unsigned int", - "id": 12, - "offset": 124, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 246955115 - }, - "m_act": { - "type": "bool", - "id": 13, - "offset": 136, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 269510283 - }, - "m_cloaked": { - "type": "bool", - "id": 14, - "offset": 157, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 7349510 - }, - "m_bypassProtection": { - "type": "bool", - "id": 15, - "offset": 159, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1657138252 - }, - "m_armorPiercingParam": { - "type": "int", - "id": 16, - "offset": 160, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2025530205 - }, - "m_chancePerTarget": { - "type": "int", - "id": 17, - "offset": 164, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 845426794 - }, - "m_protected": { - "type": "bool", - "id": 18, - "offset": 168, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1445655037 - }, - "m_converted": { - "type": "bool", - "id": 19, - "offset": 169, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1590428797 - }, - "m_rank": { - "type": "int", - "id": 20, - "offset": 208, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 219803942 - }, - "m_effectList": { - "type": "class SharedPointer", - "id": 21, - "offset": 224, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 707154804 - } - } - }, - "1353954784": { - "name": "class HousingPetBehaviorTemplate*", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 1353954784, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - } - } - }, - "1760815339": { - "name": "class EffectListSpellEffect*", - "bases": [ - "SpellEffect", - "PropertyClass" - ], - "hash": 1760815339, - "properties": { - "m_effectType": { - "type": "enum SpellEffect::kSpellEffects", - "id": 0, - "offset": 72, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2578255295, - "enum_options": { - "kInvalidSpellEffect": 0, - "kDamage": 1, - "kDamageNoCrit": 2, - "kHeal": 3, - "kHealPercent": 4, - "kSetHealPercent": 113, - "kStealHealth": 5, - "kReduceOverTime": 6, - "kDetonateOverTime": 7, - "kPushCharm": 8, - "kStealCharm": 9, - "kPushWard": 10, - "kStealWard": 11, - "kPushOverTime": 12, - "kStealOverTime": 13, - "kRemoveCharm": 14, - "kRemoveWard": 15, - "kRemoveOverTime": 16, - "kRemoveAura": 17, - "kSwapAll": 18, - "kSwapCharm": 19, - "kSwapWard": 20, - "kSwapOverTime": 21, - "kModifyIncomingDamage": 22, - "kModifyIncomingDamageFlat": 119, - "kMaximumIncomingDamage": 23, - "kModifyIncomingHeal": 24, - "kModifyIncomingHealFlat": 118, - "kModifyIncomingDamageType": 25, - "kModifyIncomingArmorPiercing": 26, - "kModifyOutgoingDamage": 27, - "kModifyOutgoingDamageFlat": 121, - "kModifyOutgoingHeal": 28, - "kModifyOutgoingHealFlat": 120, - "kModifyOutgoingDamageType": 29, - "kModifyOutgoingArmorPiercing": 30, - "kModifyOutgoingStealHealth": 31, - "kModifyIncomingStealHealth": 32, - "kBounceNext": 33, - "kBouncePrevious": 34, - "kBounceBack": 35, - "kBounceAll": 36, - "kAbsorbDamage": 37, - "kAbsorbHeal": 38, - "kModifyAccuracy": 39, - "kDispel": 40, - "kConfusion": 41, - "kCloakedCharm": 42, - "kCloakedWard": 43, - "kStunResist": 44, - "kClue": 111, - "kPipConversion": 45, - "kCritBoost": 46, - "kCritBlock": 47, - "kPolymorph": 48, - "kDelayCast": 49, - "kModifyCardCloak": 50, - "kModifyCardDamage": 51, - "kModifyCardAccuracy": 53, - "kModifyCardMutation": 54, - "kModifyCardRank": 55, - "kModifyCardArmorPiercing": 56, - "kSummonCreature": 65, - "kTeleportPlayer": 66, - "kStun": 67, - "kDampen": 68, - "kReshuffle": 69, - "kMindControl": 70, - "kModifyPips": 71, - "kModifyPowerPips": 72, - "kModifyShadowPips": 73, - "kModifyHate": 74, - "kDamageOverTime": 75, - "kHealOverTime": 76, - "kModifyPowerPipChance": 77, - "kModifyRank": 78, - "kStunBlock": 79, - "kRevealCloak": 80, - "kInstantKill": 81, - "kAfterlife": 82, - "kDeferredDamage": 83, - "kDamagePerTotalPipPower": 84, - "kModifyCardHeal": 52, - "kModifyCardCharm": 57, - "kModifyCardWard": 58, - "kModifyCardOutgoingDamage": 59, - "kModifyCardOutgoingAccuracy": 60, - "kModifyCardOutgoingHeal": 61, - "kModifyCardOutgoingArmorPiercing": 62, - "kModifyCardIncomingDamage": 63, - "kModifyCardAbsorbDamage": 64, - "kCloakedWardNoRemove": 86, - "kAddCombatTriggerList": 87, - "kRemoveCombatTriggerList": 88, - "kBacklashDamage": 89, - "kModifyBacklash": 90, - "kIntercept": 91, - "kShadowSelf": 92, - "kShadowCreature": 93, - "kModifyShadowCreatureLevel": 94, - "kSelectShadowCreatureAttackTarget": 95, - "kShadowDecrementTurn": 96, - "kCritBoostSchoolSpecific": 97, - "kSpawnCreature": 98, - "kUnPolymorph": 99, - "kPowerPipConversion": 100, - "kProtectCardBeneficial": 101, - "kProtectCardHarmful": 102, - "kProtectBeneficial": 103, - "kProtectHarmful": 104, - "kDivideDamage": 105, - "kCollectEssence": 106, - "kKillCreature": 107, - "kDispelBlock": 108, - "kConfusionBlock": 109, - "kModifyPipRoundRate": 110, - "kMaxHealthDamage": 112, - "kUntargetable": 114, - "kMakeTargetable": 115, - "kForceTargetable": 116, - "kRemoveStunBlock": 117, - "kExitCombat": 122, - "kSuspendPips": 123, - "kResumePips": 124, - "kAutoPass": 125, - "kStopAutoPass": 126, - "kVanish": 127, - "kStopVanish": 128, - "kMaxHealthHeal": 129, - "kHealByWard": 130, - "kTaunt": 131, - "kPacify": 132, - "kRemoveTargetRestriction": 133, - "kConvertHangingEffect": 134, - "kAddSpellToDeck": 135, - "kAddSpellToHand": 136, - "kModifyIncomingDamageOverTime": 137, - "kModifyIncomingHealOverTime": 138, - "kModifyCardDamagebyRank": 139, - "kPushConvertedCharm": 140, - "kStealConvertedCharm": 141, - "kPushConvertedWard": 142, - "kStealConvertedWard": 143, - "kPushConvertedOverTime": 144, - "kStealConvertedOverTime": 145, - "kRemoveConvertedCharm": 146, - "kRemoveConvertedWard": 147, - "kRemoveConvertedOverTime": 148, - "kModifyOverTimeDuration": 149, - "kModifySchoolPips": 150 - } - }, - "m_effectParam": { - "type": "int", - "id": 1, - "offset": 76, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 357920024 - }, - "m_disposition": { - "type": "enum SpellEffect::kHangingDisposition", - "id": 2, - "offset": 80, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1904841031, - "enum_options": { - "kBoth": 0, - "kBeneficial": 1, - "kHarmful": 2 - } - }, - "m_sDamageType": { - "type": "std::string", - "id": 3, - "offset": 88, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2501054223 - }, - "m_damageType": { - "type": "unsigned int", - "id": 4, - "offset": 84, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 737882766 - }, - "m_pipNum": { - "type": "int", - "id": 5, - "offset": 128, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 830827539 - }, - "m_actNum": { - "type": "int", - "id": 6, - "offset": 132, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 236824866 - }, - "m_effectTarget": { - "type": "enum SpellEffect::kEffectTarget", - "id": 7, - "offset": 140, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2458940523, - "enum_options": { - "kInvalidTarget": 0, - "kSpell": 1, - "kSpecificSpells": 2, - "kGlobal": 3, - "kEnemyTeam": 4, - "kEnemyTeamAllAtOnce": 5, - "kFriendlyTeam": 6, - "kFriendlyTeamAllAtOnce": 7, - "kEnemySingle": 8, - "kFriendlySingle": 9, - "kMinion": 10, - "kFriendlyMinion": 17, - "kEnemyMinion": 18, - "kSelf": 11, - "kAtLeastOneEnemy": 13, - "kPreselectedEnemySingle": 12, - "kMultiTargetEnemy": 14, - "kMultiTargetFriendly": 15, - "kFriendlySingleNotMe": 16 - } - }, - "m_numRounds": { - "type": "int", - "id": 8, - "offset": 144, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1229753829 - }, - "m_paramPerRound": { - "type": "int", - "id": 9, - "offset": 148, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 683234234 - }, - "m_healModifier": { - "type": "float", - "id": 10, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1317921248, - "enum_options": { - "__DEFAULT": "1.0" - } - }, - "m_spellTemplateID": { - "type": "unsigned int", - "id": 11, - "offset": 120, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 585567702 - }, - "m_enchantmentSpellTemplateID": { - "type": "unsigned int", - "id": 12, - "offset": 124, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 246955115 - }, - "m_act": { - "type": "bool", - "id": 13, - "offset": 136, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 269510283 - }, - "m_cloaked": { - "type": "bool", - "id": 14, - "offset": 157, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 7349510 - }, - "m_bypassProtection": { - "type": "bool", - "id": 15, - "offset": 159, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1657138252 - }, - "m_armorPiercingParam": { - "type": "int", - "id": 16, - "offset": 160, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2025530205 - }, - "m_chancePerTarget": { - "type": "int", - "id": 17, - "offset": 164, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 845426794 - }, - "m_protected": { - "type": "bool", - "id": 18, - "offset": 168, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1445655037 - }, - "m_converted": { - "type": "bool", - "id": 19, - "offset": 169, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1590428797 - }, - "m_rank": { - "type": "int", - "id": 20, - "offset": 208, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 219803942 - }, - "m_effectList": { - "type": "class SharedPointer", - "id": 21, - "offset": 224, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 707154804 - } - } - }, - "1760739446": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1760739446, - "properties": { - "m_templateID": { - "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1286746870 - }, - "m_enchantment": { - "type": "unsigned int", - "id": 1, - "offset": 76, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2217886818 - } - } - }, - "1354043738": { - "name": "class ShadowPipOverride", - "bases": [ - "CombatRule", - "PropertyClass" - ], - "hash": 1354043738, - "properties": { - "m_shadowThresholdType": { - "type": "enum kShadow_Threshold_Type", - "id": 0, - "offset": 72, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2847763136, - "enum_options": { - "SHADOW_THRESHOLD_MIN": 0, - "SHADOW_THRESHOLD_AVG": 1, - "SHADOW_THRESHOLD_MAX": 2 - } - }, - "m_shadowThresholdFactor": { - "type": "float", - "id": 1, - "offset": 76, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2104355177 - }, - "m_shadowPipRatingFactor": { - "type": "float", - "id": 2, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1061434314 - } - } - }, - "1760883980": { - "name": "class SharedPointer", - "bases": [ - "BattlegroundPlayerStatsManager", - "PropertyClass" - ], - "hash": 1760883980, - "properties": { - "m_statsList": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2999855587 - }, - "m_poi": { - "type": "class SharedPointer", - "id": 1, - "offset": 88, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1342603341 - } - } - }, - "1354781601": { - "name": "struct LockData*", - "bases": [ - "PropertyClass" - ], - "hash": 1354781601, - "properties": { - "m_tag": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1764749335 - }, - "m_unlocked": { - "type": "bool", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 974984968 - } - } - }, - "1760864890": { - "name": "class SharedPointer", - "bases": [ - "SpellTemplate", - "CoreTemplate", - "PropertyClass" - ], - "hash": 1760864890, - "properties": { - "m_behaviors": { - "type": "class BehaviorTemplate*", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1197808594 - }, - "m_name": { - "type": "std::string", - "id": 1, - "offset": 96, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1717359772 - }, - "m_description": { - "type": "std::string", - "id": 2, - "offset": 168, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1649374815 - }, - "m_advancedDescription": { - "type": "std::string", - "id": 3, - "offset": 200, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3465713013 - }, - "m_displayName": { - "type": "std::string", - "id": 4, - "offset": 136, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2446900370 - }, - "m_spellBase": { - "type": "std::string", - "id": 5, - "offset": 248, - "flags": 268435463, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2688054198, - "enum_options": { - "__BASECLASS": "CinematicTemplate" - } - }, - "m_effects": { - "type": "class SharedPointer", - "id": 6, - "offset": 280, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 370726379 - }, - "m_sMagicSchoolName": { - "type": "std::string", - "id": 7, - "offset": 312, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2035693400 - }, - "m_sTypeName": { - "type": "std::string", - "id": 8, - "offset": 352, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3580785905 - }, - "m_trainingCost": { - "type": "int", - "id": 9, - "offset": 384, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 982588239 - }, - "m_accuracy": { - "type": "int", - "id": 10, - "offset": 388, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1636315493 - }, - "m_baseCost": { - "type": "int", - "id": 11, - "offset": 232, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1475151502 - }, - "m_creditsCost": { - "type": "int", - "id": 12, - "offset": 236, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 715313825 - }, - "m_pvpCurrencyCost": { - "type": "int", - "id": 13, - "offset": 240, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 645595444 - }, - "m_pvpTourneyCurrencyCost": { - "type": "int", - "id": 14, - "offset": 244, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 517874954 - }, - "m_boosterPackIcon": { - "type": "std::string", - "id": 15, - "offset": 496, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3428653697 - }, - "m_validTargetSpells": { - "type": "unsigned int", - "id": 16, - "offset": 392, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2355782967 - }, - "m_PvP": { - "type": "bool", - "id": 17, - "offset": 408, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 269492361 - }, - "m_PvE": { - "type": "bool", - "id": 18, - "offset": 409, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 269492350 - }, - "m_noPvPEnchant": { - "type": "bool", - "id": 19, - "offset": 410, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 661581703 - }, - "m_noPvEEnchant": { - "type": "bool", - "id": 20, - "offset": 411, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 10144220 - }, - "m_battlegroundsOnly": { - "type": "bool", - "id": 21, - "offset": 412, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1244782419 - }, - "m_Treasure": { - "type": "bool", - "id": 22, - "offset": 413, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1749096414 - }, - "m_noDiscard": { - "type": "bool", - "id": 23, - "offset": 414, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 565749226 - }, - "m_leavesPlayWhenCast": { - "type": "bool", - "id": 24, - "offset": 532, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 698216294 - }, - "m_imageIndex": { - "type": "int", - "id": 25, - "offset": 416, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1570500405 - }, - "m_imageName": { - "type": "std::string", - "id": 26, - "offset": 424, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2391520543 - }, - "m_cloaked": { - "type": "bool", - "id": 27, - "offset": 489, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 7349510 - }, - "m_casterInvisible": { - "type": "bool", - "id": 28, - "offset": 490, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 310214650 - }, - "m_adjectives": { - "type": "std::string", - "id": 29, - "offset": 576, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2967855037 - }, - "m_spellSourceType": { - "type": "enum SpellTemplate::kSpellSourceType", - "id": 30, - "offset": 528, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 156272727, - "enum_options": { - "kCaster": 0, - "kPet": 1, - "kShadowCreature": 2, - "kWeapon": 3, - "kEquipment": 4 - } - }, - "m_cloakedName": { - "type": "std::string", - "id": 31, - "offset": 536, - "flags": 268435463, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2846679215, - "enum_options": { - "__BASECLASS": "SpellTemplate" - } - }, - "m_purchaseRequirements": { - "type": "class RequirementList*", - "id": 32, - "offset": 608, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3174641793 - }, - "m_displayRequirements": { - "type": "class RequirementList*", - "id": 33, - "offset": 840, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3646782876 - }, - "m_descriptionTrainer": { - "type": "std::string", - "id": 34, - "offset": 616, - "flags": 8388871, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1756093908 - }, - "m_descriptionCombatHUD": { - "type": "std::string", - "id": 35, - "offset": 648, - "flags": 8388871, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1631478006 - }, - "m_displayIndex": { - "type": "int", - "id": 36, - "offset": 680, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1250551048 - }, - "m_hiddenFromEffectsWindow": { - "type": "bool", - "id": 37, - "offset": 684, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1832736331 - }, - "m_ignoreCharms": { - "type": "bool", - "id": 38, - "offset": 685, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1840075893 - }, - "m_alwaysFizzle": { - "type": "bool", - "id": 39, - "offset": 686, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2030988856 - }, - "m_spellCategory": { - "type": "std::string", - "id": 40, - "offset": 688, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2472376729 - }, - "m_showPolymorphedName": { - "type": "bool", - "id": 41, - "offset": 720, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2097929096 - }, - "m_skipTruncation": { - "type": "bool", - "id": 42, - "offset": 721, - "flags": 263, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1838335249 - }, - "m_maxCopies": { - "type": "unsigned int", - "id": 43, - "offset": 724, - "flags": 263, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 403022326 - }, - "m_levelRestriction": { - "type": "int", - "id": 44, - "offset": 728, - "flags": 263, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 176502472 - }, - "m_delayEnchantment": { - "type": "bool", - "id": 45, - "offset": 732, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 191336919 - }, - "m_delayEnchantmentOrder": { - "type": "enum SpellEffect::kDelayOrder", - "id": 46, - "offset": 736, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2526055263, - "enum_options": { - "SpellEffect::kAnyOrder": 0, - "SpellEffect::kFirst": 1, - "SpellEffect::kSecond": 2 - } - }, - "m_previousSpellName": { - "type": "std::string", - "id": 47, - "offset": 744, - "flags": 268435463, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2903322585, - "enum_options": { - "__BASECLASS": "SpellTemplate" - } - }, - "m_cardFront": { - "type": "std::string", - "id": 48, - "offset": 456, - "flags": 131359, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3557598526 - }, - "m_useGloss": { - "type": "bool", - "id": 49, - "offset": 488, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 668817544 - }, - "m_ignoreDispel": { - "type": "bool", - "id": 50, - "offset": 776, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1881041624 - }, - "m_backRowFriendly": { - "type": "bool", - "id": 51, - "offset": 777, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 501584377 - }, - "m_spellRank": { - "type": "class SharedPointer", - "id": 52, - "offset": 784, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3152361374 - }, - "m_secondarySchoolName": { - "type": "std::string", - "id": 53, - "offset": 800, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1803268236 - }, - "m_spellFusion": { - "type": "unsigned int", - "id": 54, - "offset": 836, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1658928321 - }, - "m_requiredSchoolName": { - "type": "std::string", - "id": 55, - "offset": 848, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3576058981 - }, - "m_fishingSpellType": { - "type": "enum FishingSpellTemplate::FishingSpellType", - "id": 56, - "offset": 880, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3230697370, - "enum_options": { - "FS_Catching": 0, - "FS_Utility": 1, - "FS_PredatorBanishment": 2 - } - }, - "m_energyCost": { - "type": "int", - "id": 57, - "offset": 884, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1236111677 - }, - "m_animationKFM": { - "type": "std::string", - "id": 58, - "offset": 888, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2466280761 - }, - "m_animationName": { - "type": "std::string", - "id": 59, - "offset": 920, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3393414044 - }, - "m_soundEffectName": { - "type": "std::string", - "id": 60, - "offset": 952, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3235436082 - }, - "m_soundEffectGain": { - "type": "float", - "id": 61, - "offset": 984, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1827685932, - "enum_options": { - "__DEFAULT": "1.0" - } - }, - "m_fishingSpellImageIndex": { - "type": "int", - "id": 62, - "offset": 988, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 757127517 - }, - "m_fishingSpellImageName": { - "type": "std::string", - "id": 63, - "offset": 992, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1585969735 - }, - "m_fishingSchoolFocus": { - "type": "std::string", - "id": 64, - "offset": 1024, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2178393483 - } - } - }, - "1354196102": { - "name": "class std::list >", - "bases": [], - "hash": 1354196102, - "properties": {} - }, - "1354761121": { - "name": "struct LockData", - "bases": [ - "PropertyClass" - ], - "hash": 1354761121, - "properties": { - "m_tag": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1764749335 - }, - "m_unlocked": { - "type": "bool", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 974984968 - } - } - }, - "1761511214": { - "name": "class JewelSocketUnlockCostList", - "bases": [ - "PropertyClass" - ], - "hash": 1761511214, - "properties": { - "m_jewelSocketUnlockList": { - "type": "class JewelSocketUnlockCost", - "id": 0, - "offset": 72, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2753944903 - } - } - }, - "1355369388": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1355369388, - "properties": { - "m_schoolID": { - "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 369010242 - }, - "m_spellsToGive": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 3002626524 - }, - "m_questsToComplete": { - "type": "std::string", - "id": 2, - "offset": 96, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 3386208316 - }, - "m_questsToAdd": { - "type": "std::string", - "id": 3, - "offset": 112, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2101794028 - }, - "m_itemsToPlaceInInventory": { - "type": "unsigned int", - "id": 4, - "offset": 128, - "flags": 33554439, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 792703868 - }, - "m_gearToEquip": { - "type": "unsigned int", - "id": 5, - "offset": 144, - "flags": 33554439, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1383467923 - }, - "m_teleportToZoneOnComplete": { - "type": "std::string", - "id": 6, - "offset": 176, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2109587583 - }, - "m_badgesToComplete": { - "type": "std::string", - "id": 7, - "offset": 160, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2133622941 - }, - "m_schoolName": { - "type": "std::string", - "id": 8, - "offset": 208, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3385349572 - }, - "m_propertyRegistryEntires": { - "type": "class LevelUpElixirPropertyRegistryEntry", - "id": 9, - "offset": 240, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2009387835 - }, - "m_addTrainingPointIfQuestNotComplete": { - "type": "std::string", - "id": 10, - "offset": 256, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 3422771029 - } - } - }, - "1762362701": { - "name": "class SharedPointer", - "bases": [ - "Requirement", - "PropertyClass" - ], - "hash": 1762362701, - "properties": { - "m_applyNOT": { - "type": "bool", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1746328074, - "enum_options": { - "__DEFAULT": 0 - } - }, - "m_operator": { - "type": "enum Requirement::Operator", - "id": 1, - "offset": 76, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2672792317, - "enum_options": { - "ROP_AND": 0, - "ROP_OR": 1, - "__DEFAULT": "ROP_AND" - } - } - } - }, - "1392527194": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1392527194, - "properties": { - "m_numOfTeams": { - "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2164625196 - }, - "m_mappedPlace": { - "type": "unsigned int", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1626881929 - } - } - }, - "1763936555": { - "name": "class SharedPointer", - "bases": [ - "AvatarItemInfoBase", - "PropertyClass" - ], - "hash": 1763936555, - "properties": { - "m_partName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2609631923 - }, - "m_slotName": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2819781566 - }, - "m_flags": { - "type": "std::string", - "id": 2, - "offset": 144, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2292098216 - }, - "m_options": { - "type": "class SharedPointer", - "id": 3, - "offset": 160, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2499357824 - }, - "m_textureOptions": { - "type": "class SharedPointer", - "id": 4, - "offset": 176, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2667548348 - }, - "m_defaultOption": { - "type": "class SharedPointer", - "id": 5, - "offset": 192, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2436336754 - }, - "m_defaultTextureOption": { - "type": "class SharedPointer", - "id": 6, - "offset": 208, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2712636654 - } - } - }, - "1365661780": { - "name": "class std::vector >", - "bases": [], - "hash": 1365661780, - "properties": {} - }, - "1763688462": { - "name": "class SharedPointer", - "bases": [ - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 1763688462, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - } - } - }, - "1362719164": { - "name": "class MountDyeToTexture", - "bases": [ - "PropertyClass" - ], - "hash": 1362719164, - "properties": { - "m_dye": { - "type": "int", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 267033084 - }, - "m_texture": { - "type": "int", - "id": 1, - "offset": 76, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 222406987 - } - } - }, - "1762673847": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1762673847, - "properties": { - "m_badgeFilterInfoList": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2012631232 - } - } - }, - "1357743376": { - "name": "class MinigameSigilOptionAdvancedModeFields", - "bases": [ - "PropertyClass" - ], - "hash": 1357743376, - "properties": { - "m_sigilNameKey": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3055768893 - }, - "m_sigilTextKey": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2384767873 - }, - "m_sigilEncounterInfoTextKey": { - "type": "std::string", - "id": 2, - "offset": 168, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3121233376 - }, - "m_successZone": { - "type": "std::string", - "id": 3, - "offset": 200, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1516681392 - }, - "m_sigilIcon": { - "type": "std::string", - "id": 4, - "offset": 136, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3177480156 - }, - "m_teamUpAllowed": { - "type": "int", - "id": 5, - "offset": 232, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1016118542 - }, - "m_isCluster": { - "type": "bool", - "id": 6, - "offset": 236, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1183074257 - }, - "m_passedReqs": { - "type": "bool", - "id": 7, - "offset": 237, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1047234766 - }, - "m_failedRequirement": { - "type": "class SharedPointer", - "id": 8, - "offset": 240, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2322583945 - } - } - }, - "1357373195": { - "name": "class InfractionMessageBox*", - "bases": [ - "InfractionPenalty", - "PropertyClass" - ], - "hash": 1357373195, - "properties": { - "m_internalID": { - "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1854540375 - }, - "m_categoryID": { - "type": "unsigned int", - "id": 1, - "offset": 76, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1382795736 - }, - "m_removeAtPointValue": { - "type": "float", - "id": 2, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2112196961 - }, - "m_expireTime": { - "type": "unsigned int", - "id": 3, - "offset": 84, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1836304873 - }, - "m_titleKey": { - "type": "std::string", - "id": 4, - "offset": 88, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3096106918 - }, - "m_messageKey": { - "type": "std::string", - "id": 5, - "offset": 120, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3561518217 - } - } - }, - "1762715060": { - "name": "std::string const", - "bases": [], - "hash": 1762715060, - "properties": {} - }, - "1355995049": { - "name": "class GameObjectAnimStateTracker", - "bases": [ - "PropertyClass" - ], - "hash": 1355995049, - "properties": { - "m_animDataList": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1685449834 - } - } - }, - "1355995043": { - "name": "class GameObjectAnimStateTracker*", - "bases": [ - "PropertyClass" - ], - "hash": 1355995043, - "properties": { - "m_animDataList": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1685449834 - } - } - }, - "1763889430": { - "name": "class SharedPointer", - "bases": [ - "GroupObserver", - "PropertyClass" - ], - "hash": 1763889430, - "properties": {} - }, - "1357284531": { - "name": "class SharedPointer", - "bases": [ - "ServiceOptionBase", - "PropertyClass" - ], - "hash": 1357284531, - "properties": { - "m_serviceName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2206028813 - }, - "m_iconKey": { - "type": "std::string", - "id": 1, - "offset": 168, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2457138637 - }, - "m_displayKey": { - "type": "std::string", - "id": 2, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3023276954 - }, - "m_serviceIndex": { - "type": "unsigned int", - "id": 3, - "offset": 204, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2103126710 - }, - "m_forceInteract": { - "type": "bool", - "id": 4, - "offset": 200, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1705789564 - } - } - }, - "1357189466": { - "name": "class ShadowPipOverride*", - "bases": [ - "CombatRule", - "PropertyClass" - ], - "hash": 1357189466, - "properties": { - "m_shadowThresholdType": { - "type": "enum kShadow_Threshold_Type", - "id": 0, - "offset": 72, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2847763136, - "enum_options": { - "SHADOW_THRESHOLD_MIN": 0, - "SHADOW_THRESHOLD_AVG": 1, - "SHADOW_THRESHOLD_MAX": 2 - } - }, - "m_shadowThresholdFactor": { - "type": "float", - "id": 1, - "offset": 76, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2104355177 - }, - "m_shadowPipRatingFactor": { - "type": "float", - "id": 2, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1061434314 - } - } - }, - "1764081471": { - "name": "class ReqInZone*", - "bases": [ - "Requirement", - "PropertyClass" - ], - "hash": 1764081471, - "properties": { - "m_applyNOT": { - "type": "bool", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1746328074, - "enum_options": { - "__DEFAULT": 0 - } - }, - "m_operator": { - "type": "enum Requirement::Operator", - "id": 1, - "offset": 76, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2672792317, - "enum_options": { - "ROP_AND": 0, - "ROP_OR": 1, - "__DEFAULT": "ROP_AND" - } - }, - "m_zoneName": { - "type": "std::string", - "id": 2, - "offset": 80, - "flags": 268435463, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2171167736, - "enum_options": { - "__BASECLASS": "ZoneData" - } - } - } - }, - "1764038056": { - "name": "class DailyQuestOption*", - "bases": [ - "ServiceOptionBase", - "PropertyClass" - ], - "hash": 1764038056, - "properties": { - "m_serviceName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2206028813 - }, - "m_iconKey": { - "type": "std::string", - "id": 1, - "offset": 168, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2457138637 - }, - "m_displayKey": { - "type": "std::string", - "id": 2, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3023276954 - }, - "m_serviceIndex": { - "type": "unsigned int", - "id": 3, - "offset": 204, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2103126710 - }, - "m_forceInteract": { - "type": "bool", - "id": 4, - "offset": 200, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1705789564 - } - } - }, - "1357373219": { - "name": "class InfractionMessageBox", - "bases": [ - "InfractionPenalty", - "PropertyClass" - ], - "hash": 1357373219, - "properties": { - "m_internalID": { - "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1854540375 - }, - "m_categoryID": { - "type": "unsigned int", - "id": 1, - "offset": 76, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1382795736 - }, - "m_removeAtPointValue": { - "type": "float", - "id": 2, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2112196961 - }, - "m_expireTime": { - "type": "unsigned int", - "id": 3, - "offset": 84, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1836304873 - }, - "m_titleKey": { - "type": "std::string", - "id": 4, - "offset": 88, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3096106918 - }, - "m_messageKey": { - "type": "std::string", - "id": 5, - "offset": 120, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3561518217 - } - } - }, - "1764126921": { - "name": "class CastleGamesBehavior*", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1764126921, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - } - } - }, - "1764093759": { - "name": "class ReqInZone", - "bases": [ - "Requirement", - "PropertyClass" - ], - "hash": 1764093759, - "properties": { - "m_applyNOT": { - "type": "bool", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1746328074, - "enum_options": { - "__DEFAULT": 0 - } - }, - "m_operator": { - "type": "enum Requirement::Operator", - "id": 1, - "offset": 76, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2672792317, - "enum_options": { - "ROP_AND": 0, - "ROP_OR": 1, - "__DEFAULT": "ROP_AND" - } - }, - "m_zoneName": { - "type": "std::string", - "id": 2, - "offset": 80, - "flags": 268435463, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2171167736, - "enum_options": { - "__BASECLASS": "ZoneData" - } - } - } - }, - "1357374669": { - "name": "class AquariumBehaviorTemplate", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 1357374669, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - }, - "m_fishtankSize": { - "type": "int", - "id": 1, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1397459629 - }, - "m_fishtankType": { - "type": "int", - "id": 2, - "offset": 124, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1397512660 - }, - "m_numberOfFish": { - "type": "int", - "id": 3, - "offset": 128, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1143336898 - } - } - }, - "1361134829": { - "name": "class MailList*", - "bases": [ - "PropertyClass" - ], - "hash": 1361134829, - "properties": { - "m_messages": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1129442288 - } - } - }, - "1766989823": { - "name": "enum AudioCategory", - "bases": [], - "hash": 1766989823, - "properties": {} - }, - "1358892158": { - "name": "class SharedPointer", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1358892158, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - } - } - }, - "1766234697": { - "name": "class SharedPointer", - "bases": [ - "ServiceOptionBase", - "PropertyClass" - ], - "hash": 1766234697, - "properties": { - "m_serviceName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2206028813 - }, - "m_iconKey": { - "type": "std::string", - "id": 1, - "offset": 168, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2457138637 - }, - "m_displayKey": { - "type": "std::string", - "id": 2, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3023276954 - }, - "m_serviceIndex": { - "type": "unsigned int", - "id": 3, - "offset": 204, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2103126710 - }, - "m_forceInteract": { - "type": "bool", - "id": 4, - "offset": 200, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1705789564 - } - } - }, - "1358137158": { - "name": "class MagicSchoolInfo", - "bases": [ - "PropertyClass" - ], - "hash": 1358137158, - "properties": { - "m_schoolName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3385349572 - } - } - }, - "1765298473": { - "name": "class SharedPointer", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1765298473, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_mobList": { - "type": "unsigned int", - "id": 1, - "offset": 112, - "flags": 65543, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 347281415 - }, - "m_zoneGID": { - "type": "gid", - "id": 2, - "offset": 128, - "flags": 65543, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1907651624 - } - } - }, - "1357944479": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1357944479, - "properties": { - "m_name": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1717359772 - }, - "m_blockInteraction": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1884044102 - }, - "m_blockTypeDestroyed": { - "type": "std::string", - "id": 2, - "offset": 136, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3388691227 - }, - "m_ballGraphic": { - "type": "std::string", - "id": 3, - "offset": 200, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2352594772 - }, - "m_impactGraphic": { - "type": "std::string", - "id": 4, - "offset": 232, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3208005463 - }, - "m_powerComboMultipliers": { - "type": "class SharedPointer", - "id": 5, - "offset": 328, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1957941557 - }, - "m_impactSound": { - "type": "std::string", - "id": 6, - "offset": 264, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2087348962 - }, - "m_selectSound": { - "type": "std::string", - "id": 7, - "offset": 296, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1892320740 - } - } - }, - "1764650802": { - "name": "class ObjStateTransition*", - "bases": [ - "PropertyClass" - ], - "hash": 1764650802, - "properties": { - "m_targetState": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2472683907 - }, - "m_transitionState": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2166469639 - } - } - }, - "1358140230": { - "name": "class MagicSchoolInfo*", - "bases": [ - "PropertyClass" - ], - "hash": 1358140230, - "properties": { - "m_schoolName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3385349572 - } - } - }, - "1766406068": { - "name": "class CurrencyTemplate", - "bases": [ - "WizItemTemplate", - "ItemTemplate", - "GameObjectTemplate", - "CoreTemplate", - "PropertyClass" - ], - "hash": 1766406068, - "properties": { - "m_behaviors": { - "type": "class BehaviorTemplate*", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1197808594 - }, - "m_objectName": { - "type": "std::string", - "id": 1, - "offset": 96, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2154940147 - }, - "m_templateID": { - "type": "unsigned int", - "id": 2, - "offset": 128, - "flags": 16777223, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1286746870 - }, - "m_visualID": { - "type": "unsigned int", - "id": 3, - "offset": 132, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1118778894 - }, - "m_adjectiveList": { - "type": "std::string", - "id": 4, - "offset": 248, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 3195213318 - }, - "m_exemptFromAOI": { - "type": "bool", - "id": 5, - "offset": 240, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1457879059 - }, - "m_displayName": { - "type": "std::string", - "id": 6, - "offset": 168, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2446900370 - }, - "m_description": { - "type": "std::string", - "id": 7, - "offset": 136, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1649374815 - }, - "m_nObjectType": { - "type": "enum ObjectType", - "id": 8, - "offset": 200, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2118905880, - "enum_options": { - "OT_UNDEFINED": 0, - "OT_PLAYER": 1, - "OT_NPC": 2, - "OT_PROP": 3, - "OT_OBJECT": 4, - "OT_HOUSE": 5, - "OT_KEY": 6, - "OT_OLD_KEY": 7, - "OT_DEED": 8, - "OT_MAIL": 9, - "OT_RECIPE": 17, - "OT_EQUIP_HEAD": 10, - "OT_EQUIP_CHEST": 11, - "OT_EQUIP_LEGS": 12, - "OT_EQUIP_HANDS": 13, - "OT_EQUIP_FINGER": 14, - "OT_EQUIP_FEET": 15, - "OT_EQUIP_EAR": 16, - "OT_BUILDING_BLOCK": 18, - "OT_BUILDING_BLOCK_SOLID": 19, - "OT_GOLF": 20, - "OT_DOOR": 21, - "OT_PET": 22, - "OT_FABRIC": 23, - "OT_WINDOW": 24, - "OT_ROOF": 25, - "OT_HORSE": 26, - "OT_STRUCTURE": 27, - "OT_HOUSING_TEXTURE": 28, - "OT_PLANT": 29 - } - }, - "m_sIcon": { - "type": "std::string", - "id": 9, - "offset": 208, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306259831 - }, - "m_equipRequirements": { - "type": "class RequirementList*", - "id": 10, - "offset": 280, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2762617226 - }, - "m_purchaseRequirements": { - "type": "class RequirementList*", - "id": 11, - "offset": 288, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3174641793 - }, - "m_equipEffects": { - "type": "class GameEffectInfo*", - "id": 12, - "offset": 296, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 836628351 - }, - "m_baseCost": { - "type": "float", - "id": 13, - "offset": 312, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1565352651 - }, - "m_creditsCost": { - "type": "float", - "id": 14, - "offset": 320, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 805514974 - }, - "m_avatarInfo": { - "type": "class AvatarItemInfoBase*", - "id": 15, - "offset": 328, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2627321299 - }, - "m_avatarFlags": { - "type": "std::string", - "id": 16, - "offset": 336, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2347762759 - }, - "m_itemLimit": { - "type": "int", - "id": 17, - "offset": 316, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1799746856 - }, - "m_holidayFlag": { - "type": "std::string", - "id": 18, - "offset": 352, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2994795359 - }, - "m_itemSetBonusTemplateID": { - "type": "unsigned int", - "id": 19, - "offset": 384, - "flags": 33554439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1316835672 - }, - "m_numPrimaryColors": { - "type": "int", - "id": 20, - "offset": 428, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 981103872 - }, - "m_numSecondaryColors": { - "type": "int", - "id": 21, - "offset": 432, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1310416868 - }, - "m_numPatterns": { - "type": "int", - "id": 22, - "offset": 436, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 953162171 - }, - "m_school": { - "type": "std::string", - "id": 23, - "offset": 392, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2438566051 - }, - "m_arenaPointCost": { - "type": "int", - "id": 24, - "offset": 440, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1819621796 - }, - "m_pvpCurrencyCost": { - "type": "int", - "id": 25, - "offset": 444, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 645595444 - }, - "m_pvpTourneyCurrencyCost": { - "type": "int", - "id": 26, - "offset": 448, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 517874954 - }, - "m_rank": { - "type": "int", - "id": 27, - "offset": 424, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 219803942 - }, - "m_boyIconIndex": { - "type": "int", - "id": 28, - "offset": 452, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 802140453 - }, - "m_girlIconIndex": { - "type": "int", - "id": 29, - "offset": 456, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 832706793 - }, - "m_leashOffsetOverride": { - "type": "class SharedPointer", - "id": 30, - "offset": 464, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1692586788 - }, - "m_rarity": { - "type": "enum RarityType", - "id": 31, - "offset": 460, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2253792108, - "enum_options": { - "RT_COMMON": 0, - "RT_UNCOMMON": 1, - "RT_RARE": 2, - "RT_ULTRARARE": 3, - "RT_EPIC": 4 - } - }, - "m_currencyType": { - "type": "enum CurrencyTemplate::CurrencyTypes", - "id": 32, - "offset": 480, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 461057706, - "enum_options": { - "CURRENCY_GOLD": 0, - "CURRENCY_ARENATICKETS": 1, - "CURRENCY_CROWNS": 2, - "CURRENCY_EC1": 3, - "CURRENCY_EC2": 4, - "CURRENCY_PVPCUR": 5, - "CURRENCY_PVPTOURNEYCUR": 6, - "CURRENCY_LOYALTYTOKENS": 7 - } - } - } - }, - "1766371717": { - "name": "class PhysicsBehaviorTemplate", - "bases": [ - "CollisionBehaviorTemplate", - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 1766371717, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - }, - "m_walkableCollisionFilename": { - "type": "std::string", - "id": 1, - "offset": 120, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2223282859 - }, - "m_solidCollisionFilename": { - "type": "std::string", - "id": 2, - "offset": 152, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3292753187 - }, - "m_clickableCollisionFilename": { - "type": "std::string", - "id": 3, - "offset": 184, - "flags": 131335, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1964485570 - }, - "m_bAutoClickBox": { - "type": "bool", - "id": 4, - "offset": 216, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 13289565 - }, - "m_bDisableCollision": { - "type": "bool", - "id": 5, - "offset": 217, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2086036629 - }, - "m_bClientOnly": { - "type": "bool", - "id": 6, - "offset": 218, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1918653686 - }, - "m_nSimulationMethod": { - "type": "enum PhysicsBehaviorTemplate::SimulationMethod", - "id": 7, - "offset": 224, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1994289470, - "enum_options": { - "SM_CLIENT": 0, - "SM_SERVER_CLIENT": 1, - "__DEFAULT": "SM_CLIENT" - } - }, - "m_bEnableGravity": { - "type": "bool", - "id": 8, - "offset": 228, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2096165250, - "enum_options": { - "__DEFAULT": 1 - } - }, - "m_bEnableDamping": { - "type": "bool", - "id": 9, - "offset": 229, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1865442172, - "enum_options": { - "__DEFAULT": 0 - } - }, - "m_bStartsEnabled": { - "type": "bool", - "id": 10, - "offset": 230, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 648666209, - "enum_options": { - "__DEFAULT": 1 - } - }, - "m_fDampingX": { - "type": "float", - "id": 11, - "offset": 232, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 360421173 - }, - "m_fDampingY": { - "type": "float", - "id": 12, - "offset": 236, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 360421174 - }, - "m_fDampingZ": { - "type": "float", - "id": 13, - "offset": 240, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 360421175 - }, - "m_fAngDampingX": { - "type": "float", - "id": 14, - "offset": 244, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 725080299 - }, - "m_fAngDampingY": { - "type": "float", - "id": 15, - "offset": 248, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 725080300 - }, - "m_fAngDampingZ": { - "type": "float", - "id": 16, - "offset": 252, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 725080301 - }, - "m_fCenterX": { - "type": "float", - "id": 17, - "offset": 256, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1763110710 - }, - "m_fCenterY": { - "type": "float", - "id": 18, - "offset": 260, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1763110711 - }, - "m_fCenterZ": { - "type": "float", - "id": 19, - "offset": 264, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1763110712 - }, - "m_massShapes": { - "type": "class MassShapeTemplate*", - "id": 20, - "offset": 272, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1089760892 - } - } - }, - "1360198868": { - "name": "class SharedPointer", - "bases": [ - "CoreTemplate", - "PropertyClass" - ], - "hash": 1360198868, - "properties": { - "m_behaviors": { - "type": "class BehaviorTemplate*", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1197808594 - }, - "m_questName": { - "type": "std::string", - "id": 1, - "offset": 96, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1702112846 - }, - "m_questNameID": { - "type": "unsigned int", - "id": 2, - "offset": 128, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1530354349 - }, - "m_questTitle": { - "type": "std::string", - "id": 3, - "offset": 136, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1805465583 - }, - "m_questInfo": { - "type": "std::string", - "id": 4, - "offset": 168, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1701947097 - }, - "m_questPrep": { - "type": "std::string", - "id": 5, - "offset": 200, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1702202980 - }, - "m_questUnderway": { - "type": "std::string", - "id": 6, - "offset": 232, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2308400380 - }, - "m_questComplete": { - "type": "std::string", - "id": 7, - "offset": 264, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3484586150 - }, - "m_startGoals": { - "type": "std::string", - "id": 8, - "offset": 392, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2152469471 - }, - "m_goals": { - "type": "class SharedPointer", - "id": 9, - "offset": 408, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1374041870 - }, - "m_startResults": { - "type": "class SharedPointer", - "id": 10, - "offset": 424, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2094517692 - }, - "m_endResults": { - "type": "class SharedPointer", - "id": 11, - "offset": 440, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2118364133 - }, - "m_requirements": { - "type": "class RequirementList*", - "id": 12, - "offset": 456, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2840985510 - }, - "m_prepRequirements": { - "type": "class RequirementList*", - "id": 13, - "offset": 464, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3016776541 - }, - "m_pruneRequirements": { - "type": "class RequirementList*", - "id": 14, - "offset": 472, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3211248912 - }, - "m_prepAlways": { - "type": "bool", - "id": 15, - "offset": 304, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1423046331 - }, - "m_clientTags": { - "type": "std::string", - "id": 16, - "offset": 312, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2319030025 - }, - "m_goalLogic": { - "type": "class GoalCompleteLogic*", - "id": 17, - "offset": 520, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 963824003 - }, - "m_questLevel": { - "type": "int", - "id": 18, - "offset": 296, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 298136804 - }, - "m_questRepeat": { - "type": "int", - "id": 19, - "offset": 300, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1480345805 - }, - "m_onStartQuestScript": { - "type": "std::string", - "id": 20, - "offset": 328, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2577549709 - }, - "m_onEndQuestScript": { - "type": "std::string", - "id": 21, - "offset": 360, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285648118 - }, - "m_dialogList": { - "type": "class ActorDialogListBase*", - "id": 22, - "offset": 480, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1909154969 - }, - "m_missionDoors": { - "type": "std::string", - "id": 23, - "offset": 504, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2428103908 - }, - "m_dynaMods": { - "type": "class QuestDynaModInfo*", - "id": 24, - "offset": 488, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 3330743945 - }, - "m_isHidden": { - "type": "bool", - "id": 25, - "offset": 305, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1401188667 - }, - "m_outdated": { - "type": "bool", - "id": 26, - "offset": 306, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1565198349 - }, - "m_noQuestHelper": { - "type": "bool", - "id": 27, - "offset": 307, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 578010882 - }, - "m_mainline": { - "type": "bool", - "id": 28, - "offset": 552, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1749856224 - }, - "m_defaultDialogAnimation": { - "type": "std::string", - "id": 29, - "offset": 560, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2400834320 - }, - "m_skipQHAutoSelect": { - "type": "bool", - "id": 30, - "offset": 553, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2024815836 - }, - "m_questEffectInfoList": { - "type": "class SharedPointer", - "id": 31, - "offset": 536, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2494024956 - }, - "m_forceInteraction": { - "type": "bool", - "id": 32, - "offset": 554, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1038376866 - }, - "m_checkInventoryForCrafting": { - "type": "bool", - "id": 33, - "offset": 608, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1549644020 - }, - "m_playAsYourPetNPC": { - "type": "bool", - "id": 34, - "offset": 609, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 827482678 - }, - "m_activityType": { - "type": "enum QuestTemplate::ActivityType", - "id": 35, - "offset": 612, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 231656390, - "enum_options": { - "ACTIVITY_NotActivity": 0, - "ACTIVITY_Crafting": 2, - "ACTIVITY_Fishing": 3, - "ACTIVITY_Gardening": 4, - "ACTIVITY_Pet": 5, - "ACTIVITY_Spell": 1 - } - } - } - }, - "1359634476": { - "name": "class TeamHelpUpdateSigilInfo", - "bases": [ - "PropertyClass" - ], - "hash": 1359634476, - "properties": { - "m_sigilID": { - "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1425799538 - }, - "m_buttonStringKey": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3226477495 - }, - "m_playerSchoolIDList": { - "type": "unsigned int", - "id": 2, - "offset": 112, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 346919403 - }, - "m_isInstance": { - "type": "bool", - "id": 3, - "offset": 128, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 822314308 - }, - "m_secondsElapsed": { - "type": "unsigned int", - "id": 4, - "offset": 132, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1701124410 - }, - "m_isFarming": { - "type": "bool", - "id": 5, - "offset": 136, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 328236467 - }, - "m_minimumTeamSize": { - "type": "unsigned char", - "id": 6, - "offset": 137, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 904550318 - }, - "m_pSigilMonthlyGauntletInfo": { - "type": "class SharedPointer", - "id": 7, - "offset": 144, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1631820172 - }, - "m_requestedSigilMode": { - "type": "enum RequestedSigilMode", - "id": 8, - "offset": 76, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1327681577, - "enum_options": { - "REQUESTED_DEFAULT_MODE_SIGIL": 0, - "REQUESTED_STANDARD_MODE_SIGIL": 1, - "REQUESTED_ADVANCED_MODE_SIGIL": 2, - "REQUESTED_MONTHLYGAUNTLET_MODE_SIGIL": 3 - } - } - } - }, - "1359234207": { - "name": "class NonCombatMayCastSpellInfo", - "bases": [ - "GameEffectInfo", - "PropertyClass" - ], - "hash": 1359234207, - "properties": { - "m_effectName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2029161513 - }, - "m_spellName": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 268435463, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2688485244, - "enum_options": { - "__BASECLASS": "SpellTemplate" - } - }, - "m_percentChance": { - "type": "int", - "id": 2, - "offset": 136, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 385662509 - }, - "m_spellDescription": { - "type": "class SharedPointer", - "id": 3, - "offset": 144, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 790341621 - } - } - }, - "1766569908": { - "name": "class CurrencyTemplate*", - "bases": [ - "WizItemTemplate", - "ItemTemplate", - "GameObjectTemplate", - "CoreTemplate", - "PropertyClass" - ], - "hash": 1766569908, - "properties": { - "m_behaviors": { - "type": "class BehaviorTemplate*", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1197808594 - }, - "m_objectName": { - "type": "std::string", - "id": 1, - "offset": 96, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2154940147 - }, - "m_templateID": { - "type": "unsigned int", - "id": 2, - "offset": 128, - "flags": 16777223, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1286746870 - }, - "m_visualID": { - "type": "unsigned int", - "id": 3, - "offset": 132, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1118778894 - }, - "m_adjectiveList": { - "type": "std::string", - "id": 4, - "offset": 248, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 3195213318 - }, - "m_exemptFromAOI": { - "type": "bool", - "id": 5, - "offset": 240, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1457879059 - }, - "m_displayName": { - "type": "std::string", - "id": 6, - "offset": 168, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2446900370 - }, - "m_description": { - "type": "std::string", - "id": 7, - "offset": 136, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1649374815 - }, - "m_nObjectType": { - "type": "enum ObjectType", - "id": 8, - "offset": 200, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2118905880, - "enum_options": { - "OT_UNDEFINED": 0, - "OT_PLAYER": 1, - "OT_NPC": 2, - "OT_PROP": 3, - "OT_OBJECT": 4, - "OT_HOUSE": 5, - "OT_KEY": 6, - "OT_OLD_KEY": 7, - "OT_DEED": 8, - "OT_MAIL": 9, - "OT_RECIPE": 17, - "OT_EQUIP_HEAD": 10, - "OT_EQUIP_CHEST": 11, - "OT_EQUIP_LEGS": 12, - "OT_EQUIP_HANDS": 13, - "OT_EQUIP_FINGER": 14, - "OT_EQUIP_FEET": 15, - "OT_EQUIP_EAR": 16, - "OT_BUILDING_BLOCK": 18, - "OT_BUILDING_BLOCK_SOLID": 19, - "OT_GOLF": 20, - "OT_DOOR": 21, - "OT_PET": 22, - "OT_FABRIC": 23, - "OT_WINDOW": 24, - "OT_ROOF": 25, - "OT_HORSE": 26, - "OT_STRUCTURE": 27, - "OT_HOUSING_TEXTURE": 28, - "OT_PLANT": 29 - } - }, - "m_sIcon": { - "type": "std::string", - "id": 9, - "offset": 208, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306259831 - }, - "m_equipRequirements": { - "type": "class RequirementList*", - "id": 10, - "offset": 280, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2762617226 - }, - "m_purchaseRequirements": { - "type": "class RequirementList*", - "id": 11, - "offset": 288, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3174641793 - }, - "m_equipEffects": { - "type": "class GameEffectInfo*", - "id": 12, - "offset": 296, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 836628351 - }, - "m_baseCost": { - "type": "float", - "id": 13, - "offset": 312, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1565352651 - }, - "m_creditsCost": { - "type": "float", - "id": 14, - "offset": 320, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 805514974 - }, - "m_avatarInfo": { - "type": "class AvatarItemInfoBase*", - "id": 15, - "offset": 328, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2627321299 - }, - "m_avatarFlags": { - "type": "std::string", - "id": 16, - "offset": 336, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2347762759 - }, - "m_itemLimit": { - "type": "int", - "id": 17, - "offset": 316, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1799746856 - }, - "m_holidayFlag": { - "type": "std::string", - "id": 18, - "offset": 352, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2994795359 - }, - "m_itemSetBonusTemplateID": { - "type": "unsigned int", - "id": 19, - "offset": 384, - "flags": 33554439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1316835672 - }, - "m_numPrimaryColors": { - "type": "int", - "id": 20, - "offset": 428, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 981103872 - }, - "m_numSecondaryColors": { - "type": "int", - "id": 21, - "offset": 432, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1310416868 - }, - "m_numPatterns": { - "type": "int", - "id": 22, - "offset": 436, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 953162171 - }, - "m_school": { - "type": "std::string", - "id": 23, - "offset": 392, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2438566051 - }, - "m_arenaPointCost": { - "type": "int", - "id": 24, - "offset": 440, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1819621796 - }, - "m_pvpCurrencyCost": { - "type": "int", - "id": 25, - "offset": 444, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 645595444 - }, - "m_pvpTourneyCurrencyCost": { - "type": "int", - "id": 26, - "offset": 448, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 517874954 - }, - "m_rank": { - "type": "int", - "id": 27, - "offset": 424, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 219803942 - }, - "m_boyIconIndex": { - "type": "int", - "id": 28, - "offset": 452, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 802140453 - }, - "m_girlIconIndex": { - "type": "int", - "id": 29, - "offset": 456, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 832706793 - }, - "m_leashOffsetOverride": { - "type": "class SharedPointer", - "id": 30, - "offset": 464, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1692586788 - }, - "m_rarity": { - "type": "enum RarityType", - "id": 31, - "offset": 460, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2253792108, - "enum_options": { - "RT_COMMON": 0, - "RT_UNCOMMON": 1, - "RT_RARE": 2, - "RT_ULTRARARE": 3, - "RT_EPIC": 4 - } - }, - "m_currencyType": { - "type": "enum CurrencyTemplate::CurrencyTypes", - "id": 32, - "offset": 480, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 461057706, - "enum_options": { - "CURRENCY_GOLD": 0, - "CURRENCY_ARENATICKETS": 1, - "CURRENCY_CROWNS": 2, - "CURRENCY_EC1": 3, - "CURRENCY_EC2": 4, - "CURRENCY_PVPCUR": 5, - "CURRENCY_PVPTOURNEYCUR": 6, - "CURRENCY_LOYALTYTOKENS": 7 - } - } - } - }, - "1360038994": { - "name": "class SharedPointer", - "bases": [ - "ClientObjectInfo", - "CoreObjectInfo", - "PropertyClass" - ], - "hash": 1360038994, - "properties": { - "m_templateID.m_full": { - "type": "unsigned __int64", - "id": 0, - "offset": 72, - "flags": 33554439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 633907631 - }, - "m_nObjectID": { - "type": "unsigned int", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 748496927 - }, - "m_location": { - "type": "class Vector3D", - "id": 2, - "offset": 84, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2239683611 - }, - "m_orientation": { - "type": "class Vector3D", - "id": 3, - "offset": 96, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2344058766 - }, - "m_fScale": { - "type": "float", - "id": 4, - "offset": 108, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 503137701 - }, - "m_zoneTag": { - "type": "std::string", - "id": 5, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3405382643 - }, - "m_startState": { - "type": "std::string", - "id": 6, - "offset": 184, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2166880458 - }, - "m_overrideName": { - "type": "std::string", - "id": 7, - "offset": 120, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1990707228 - }, - "m_globalDynamic": { - "type": "bool", - "id": 8, - "offset": 116, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1951691017 - }, - "m_bUndetectable": { - "type": "bool", - "id": 9, - "offset": 216, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1907454341 - }, - "m_spawnRequirements": { - "type": "class SharedPointer", - "id": 10, - "offset": 224, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2309120870 - }, - "m_loadingType": { - "type": "enum CoreObjectInfo::LoadingType", - "id": 11, - "offset": 112, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3522422550, - "enum_options": { - "STATIC_CLIENT_SERVER": 0, - "STATIC_CLIENT": 1, - "STATIC_SERVER": 2, - "DYNAMIC_SERVER": 3 - } - }, - "m_radius": { - "type": "float", - "id": 12, - "offset": 256, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 989410271 - }, - "m_exclusive": { - "type": "bool", - "id": 13, - "offset": 260, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 824383403 - }, - "m_startActive": { - "type": "bool", - "id": 14, - "offset": 261, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2031339229 - }, - "m_category": { - "type": "enum AudioCategory", - "id": 15, - "offset": 264, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2951251982, - "enum_options": { - "AudioCategory_Irrelevent": 0, - "AudioCategory_Accoustic": 1, - "AudioCategory_Noise": 2, - "AudioCategory_Music": 3 - } - }, - "m_override": { - "type": "int", - "id": 16, - "offset": 268, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 136872410, - "enum_options": { - "OVR_RADIUS": 1, - "OVR_CATEGORY": 2, - "OVR_EXCLUSIVE": 4, - "OVR_SIGNATURE": 64, - "OVR_VOLUME": 8, - "OVR_LOOPCOUNT": 16, - "OVR_ACTIVE": 32, - "OVR_PLAYPROG": 128, - "OVR_PRIORITY": 256, - "OVR_PROGTIME": 512, - "OVR_FILTERSET": 1024 - } - }, - "m_enableReqs": { - "type": "class SharedPointer", - "id": 17, - "offset": 272, - "flags": 263, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3158020443 - } - } - }, - "1771497150": { - "name": "class ColorPickerSWF*", - "bases": [ - "Window", - "PropertyClass" - ], - "hash": 1771497150, - "properties": { - "m_sName": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306437263 - }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621225959 - }, - "m_Style": { - "type": "unsigned int", - "id": 2, - "offset": 152, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "SCALE_CHILDREN": 2, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "FOCUS_LOCKED": 64, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152 - } - }, - "m_Flags": { - "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } - }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3105139380 - }, - "m_fTargetAlpha": { - "type": "float", - "id": 5, - "offset": 212, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1809129834 - }, - "m_fDisabledAlpha": { - "type": "float", - "id": 6, - "offset": 216, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1389987675 - }, - "m_fAlpha": { - "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 482130755 - }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3623628394 - }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2102211316 - }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1846695875 - }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3389835433 - }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2547159940 - }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2587533771 - }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3091503757 - } - } - }, - "1770449266": { - "name": "class SharedPointer", - "bases": [ - "ObjectRemapBehavior", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1770449266, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - } - } - }, - "1768274090": { - "name": "class SharedPointer", - "bases": [ - "TournamentUpdate", - "PropertyClass" - ], - "hash": 1768274090, - "properties": { - "m_teamID": { - "type": "gid", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 982102220 - } - } - }, - "1360945196": { - "name": "class TeamHelpUpdateSigilInfo*", - "bases": [ - "PropertyClass" - ], - "hash": 1360945196, - "properties": { - "m_sigilID": { - "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1425799538 - }, - "m_buttonStringKey": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3226477495 - }, - "m_playerSchoolIDList": { - "type": "unsigned int", - "id": 2, - "offset": 112, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 346919403 - }, - "m_isInstance": { - "type": "bool", - "id": 3, - "offset": 128, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 822314308 - }, - "m_secondsElapsed": { - "type": "unsigned int", - "id": 4, - "offset": 132, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1701124410 - }, - "m_isFarming": { - "type": "bool", - "id": 5, - "offset": 136, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 328236467 - }, - "m_minimumTeamSize": { - "type": "unsigned char", - "id": 6, - "offset": 137, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 904550318 - }, - "m_pSigilMonthlyGauntletInfo": { - "type": "class SharedPointer", - "id": 7, - "offset": 144, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1631820172 - }, - "m_requestedSigilMode": { - "type": "enum RequestedSigilMode", - "id": 8, - "offset": 76, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1327681577, - "enum_options": { - "REQUESTED_DEFAULT_MODE_SIGIL": 0, - "REQUESTED_STANDARD_MODE_SIGIL": 1, - "REQUESTED_ADVANCED_MODE_SIGIL": 2, - "REQUESTED_MONTHLYGAUNTLET_MODE_SIGIL": 3 - } - } - } - }, - "1767682437": { - "name": "class PhysicsBehaviorTemplate*", - "bases": [ - "CollisionBehaviorTemplate", - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 1767682437, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - }, - "m_walkableCollisionFilename": { - "type": "std::string", - "id": 1, - "offset": 120, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2223282859 - }, - "m_solidCollisionFilename": { - "type": "std::string", - "id": 2, - "offset": 152, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3292753187 - }, - "m_clickableCollisionFilename": { - "type": "std::string", - "id": 3, - "offset": 184, - "flags": 131335, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1964485570 - }, - "m_bAutoClickBox": { - "type": "bool", - "id": 4, - "offset": 216, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 13289565 - }, - "m_bDisableCollision": { - "type": "bool", - "id": 5, - "offset": 217, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2086036629 - }, - "m_bClientOnly": { - "type": "bool", - "id": 6, - "offset": 218, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1918653686 - }, - "m_nSimulationMethod": { - "type": "enum PhysicsBehaviorTemplate::SimulationMethod", - "id": 7, - "offset": 224, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1994289470, - "enum_options": { - "SM_CLIENT": 0, - "SM_SERVER_CLIENT": 1, - "__DEFAULT": "SM_CLIENT" - } - }, - "m_bEnableGravity": { - "type": "bool", - "id": 8, - "offset": 228, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2096165250, - "enum_options": { - "__DEFAULT": 1 - } - }, - "m_bEnableDamping": { - "type": "bool", - "id": 9, - "offset": 229, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1865442172, - "enum_options": { - "__DEFAULT": 0 - } - }, - "m_bStartsEnabled": { - "type": "bool", - "id": 10, - "offset": 230, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 648666209, - "enum_options": { - "__DEFAULT": 1 - } - }, - "m_fDampingX": { - "type": "float", - "id": 11, - "offset": 232, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 360421173 - }, - "m_fDampingY": { - "type": "float", - "id": 12, - "offset": 236, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 360421174 - }, - "m_fDampingZ": { - "type": "float", - "id": 13, - "offset": 240, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 360421175 - }, - "m_fAngDampingX": { - "type": "float", - "id": 14, - "offset": 244, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 725080299 - }, - "m_fAngDampingY": { - "type": "float", - "id": 15, - "offset": 248, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 725080300 - }, - "m_fAngDampingZ": { - "type": "float", - "id": 16, - "offset": 252, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 725080301 - }, - "m_fCenterX": { - "type": "float", - "id": 17, - "offset": 256, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1763110710 - }, - "m_fCenterY": { - "type": "float", - "id": 18, - "offset": 260, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1763110711 - }, - "m_fCenterZ": { - "type": "float", - "id": 19, - "offset": 264, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1763110712 - }, - "m_massShapes": { - "type": "class MassShapeTemplate*", - "id": 20, - "offset": 272, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1089760892 - } - } - }, - "1768017235": { - "name": "class CastleMagicPlayersInZone*", - "bases": [ - "PropertyClass" - ], - "hash": 1768017235, - "properties": { - "m_playersInZoneList": { - "type": "gid", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1367168135 - } - } - }, - "1361990231": { - "name": "class DynamicSigilRound*", - "bases": [ - "PropertyClass" - ], - "hash": 1361990231, - "properties": { - "m_turns": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1624806566 - } - } - }, - "1361135213": { - "name": "class MailList", - "bases": [ - "PropertyClass" - ], - "hash": 1361135213, - "properties": { - "m_messages": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1129442288 - } - } - }, - "1769926063": { - "name": "class std::list >", - "bases": [], - "hash": 1769926063, - "properties": {} - }, - "1362569714": { - "name": "class SharedPointer", - "bases": [ - "Window", - "PropertyClass" - ], - "hash": 1362569714, - "properties": { - "m_sName": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306437263 - }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621225959 - }, - "m_Style": { - "type": "unsigned int", - "id": 2, - "offset": 152, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "SCALE_CHILDREN": 2, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "FOCUS_LOCKED": 64, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152 - } - }, - "m_Flags": { - "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } - }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3105139380 - }, - "m_fTargetAlpha": { - "type": "float", - "id": 5, - "offset": 212, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1809129834 - }, - "m_fDisabledAlpha": { - "type": "float", - "id": 6, - "offset": 216, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1389987675 - }, - "m_fAlpha": { - "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 482130755 - }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3623628394 - }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2102211316 - }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1846695875 - }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3389835433 - }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2547159940 - }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2587533771 - }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3091503757 - } - } - }, - "1771496990": { - "name": "class ColorPickerSWF", - "bases": [ - "Window", - "PropertyClass" - ], - "hash": 1771496990, - "properties": { - "m_sName": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306437263 - }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621225959 - }, - "m_Style": { - "type": "unsigned int", - "id": 2, - "offset": 152, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "SCALE_CHILDREN": 2, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "FOCUS_LOCKED": 64, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152 - } - }, - "m_Flags": { - "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } - }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3105139380 - }, - "m_fTargetAlpha": { - "type": "float", - "id": 5, - "offset": 212, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1809129834 - }, - "m_fDisabledAlpha": { - "type": "float", - "id": 6, - "offset": 216, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1389987675 - }, - "m_fAlpha": { - "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 482130755 - }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3623628394 - }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2102211316 - }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1846695875 - }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3389835433 - }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2547159940 - }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2587533771 - }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3091503757 - } - } - }, - "1362663815": { - "name": "class ProvidePetPowerInfo*", - "bases": [ - "GameEffectInfo", - "PropertyClass" - ], - "hash": 1362663815, - "properties": { - "m_effectName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2029161513 - }, - "m_happinessCost": { - "type": "int", - "id": 1, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1107125310 - }, - "m_cooldown": { - "type": "int", - "id": 2, - "offset": 108, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1897549823 - }, - "m_usesPerCombat": { - "type": "int", - "id": 3, - "offset": 112, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1445312791 - }, - "m_unlockedTemplate": { - "type": "std::string", - "id": 4, - "offset": 120, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1809846764 - }, - "m_lockedTemplate": { - "type": "std::string", - "id": 5, - "offset": 152, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2044999913 - }, - "m_combatTalent": { - "type": "bool", - "id": 6, - "offset": 184, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2113651857 - }, - "m_triggerName": { - "type": "std::string", - "id": 7, - "offset": 192, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3100183568 - }, - "m_unlockReagentAmount1": { - "type": "int", - "id": 8, - "offset": 224, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1546338481 - }, - "m_unlockReagentTemplate1": { - "type": "unsigned int", - "id": 9, - "offset": 228, - "flags": 33554463, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 943550188 - }, - "m_unlockReagentAmount2": { - "type": "int", - "id": 10, - "offset": 232, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1546338482 - }, - "m_unlockReagentTemplate2": { - "type": "unsigned int", - "id": 11, - "offset": 236, - "flags": 33554463, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 943550189 - }, - "m_unlockReagentAmount3": { - "type": "int", - "id": 12, - "offset": 240, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1546338483 - }, - "m_unlockReagentTemplate3": { - "type": "unsigned int", - "id": 13, - "offset": 244, - "flags": 33554463, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 943550190 - }, - "m_unlockReagentAmount4": { - "type": "int", - "id": 14, - "offset": 248, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1546338484 - }, - "m_unlockReagentTemplate4": { - "type": "unsigned int", - "id": 15, - "offset": 252, - "flags": 33554463, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 943550191 - }, - "m_extra1": { - "type": "std::string", - "id": 16, - "offset": 256, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1916008880 - }, - "m_extra2": { - "type": "std::string", - "id": 17, - "offset": 288, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1916008881 - }, - "m_lootTableName": { - "type": "std::string", - "id": 18, - "offset": 320, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2333333378 - }, - "m_powerDisplayName": { - "type": "std::string", - "id": 19, - "offset": 352, - "flags": 8388639, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2338393887 - }, - "m_requirementList": { - "type": "class SharedPointer", - "id": 20, - "offset": 384, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3783909798 - }, - "m_requirementFailedString": { - "type": "std::string", - "id": 21, - "offset": 400, - "flags": 8388639, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2051573416 - }, - "m_noPVP": { - "type": "bool", - "id": 22, - "offset": 436, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 806455846 - }, - "m_rampUp": { - "type": "int", - "id": 23, - "offset": 440, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 899539119 - }, - "m_description": { - "type": "std::string", - "id": 24, - "offset": 448, - "flags": 8388639, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1649374815 - }, - "m_myTurn": { - "type": "bool", - "id": 25, - "offset": 480, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 733913410 - } - } - }, - "1772446089": { - "name": "class SharedPointer", - "bases": [ - "UnShadowSelfCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 1772446089, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - } - } - }, - "1365023945": { - "name": "class SharedPointer", - "bases": [ - "HousingGameInterface", - "PropertyClass" - ], - "hash": 1365023945, - "properties": {} - }, - "1771997653": { - "name": "class SoundAcousticsInfo*", - "bases": [ - "SoundInfo", - "ClientObjectInfo", - "CoreObjectInfo", - "PropertyClass" - ], - "hash": 1771997653, - "properties": { - "m_templateID.m_full": { - "type": "unsigned __int64", - "id": 0, - "offset": 72, - "flags": 33554439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 633907631 - }, - "m_nObjectID": { - "type": "unsigned int", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 748496927 - }, - "m_location": { - "type": "class Vector3D", - "id": 2, - "offset": 84, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2239683611 - }, - "m_orientation": { - "type": "class Vector3D", - "id": 3, - "offset": 96, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2344058766 - }, - "m_fScale": { - "type": "float", - "id": 4, - "offset": 108, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 503137701 - }, - "m_zoneTag": { - "type": "std::string", - "id": 5, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3405382643 - }, - "m_startState": { - "type": "std::string", - "id": 6, - "offset": 184, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2166880458 - }, - "m_overrideName": { - "type": "std::string", - "id": 7, - "offset": 120, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1990707228 - }, - "m_globalDynamic": { - "type": "bool", - "id": 8, - "offset": 116, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1951691017 - }, - "m_bUndetectable": { - "type": "bool", - "id": 9, - "offset": 216, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1907454341 - }, - "m_spawnRequirements": { - "type": "class SharedPointer", - "id": 10, - "offset": 224, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2309120870 - }, - "m_loadingType": { - "type": "enum CoreObjectInfo::LoadingType", - "id": 11, - "offset": 112, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3522422550, - "enum_options": { - "STATIC_CLIENT_SERVER": 0, - "STATIC_CLIENT": 1, - "STATIC_SERVER": 2, - "DYNAMIC_SERVER": 3 - } - }, - "m_radius": { - "type": "float", - "id": 12, - "offset": 256, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 989410271 - }, - "m_exclusive": { - "type": "bool", - "id": 13, - "offset": 260, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 824383403 - }, - "m_startActive": { - "type": "bool", - "id": 14, - "offset": 261, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2031339229 - }, - "m_category": { - "type": "enum AudioCategory", - "id": 15, - "offset": 264, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2951251982, - "enum_options": { - "AudioCategory_Irrelevent": 0, - "AudioCategory_Accoustic": 1, - "AudioCategory_Noise": 2, - "AudioCategory_Music": 3 - } - }, - "m_override": { - "type": "int", - "id": 16, - "offset": 268, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 136872410, - "enum_options": { - "OVR_RADIUS": 1, - "OVR_CATEGORY": 2, - "OVR_EXCLUSIVE": 4, - "OVR_SIGNATURE": 64, - "OVR_VOLUME": 8, - "OVR_LOOPCOUNT": 16, - "OVR_ACTIVE": 32, - "OVR_PLAYPROG": 128, - "OVR_PRIORITY": 256, - "OVR_PROGTIME": 512, - "OVR_FILTERSET": 1024 - } - }, - "m_enableReqs": { - "type": "class SharedPointer", - "id": 17, - "offset": 272, - "flags": 263, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3158020443 - }, - "m_effect": { - "type": "enum AccousticSignature", - "id": 18, - "offset": 288, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1284866962, - "enum_options": { - "Generic": 0, - "Padded Cell": 1, - "Room": 2, - "Bath Room": 3, - "Living Room": 4, - "Stone Room": 5, - "Auditorium": 6, - "Concert Hall": 7, - "Cave": 8, - "Arena": 9, - "Hanger": 10, - "Carpeted Hallway": 11, - "Hallway": 12, - "Stone Corridor": 13, - "Alley": 14, - "Forest": 15, - "City": 16, - "Mountains": 17, - "Quarry": 18, - "Plain": 19, - "Parking Lot": 20, - "Sewer Pipe": 21, - "Underwater": 22, - "Drugged": 23, - "Dizzy": 24, - "Psychotic": 25 - } - } - } - }, - "1363561915": { - "name": "class HealthGlobe*", - "bases": [ - "StatGlobe", - "ControlSprite", - "Window", - "PropertyClass" - ], - "hash": 1363561915, - "properties": { - "m_sName": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306437263 - }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621225959 - }, - "m_Style": { - "type": "unsigned int", - "id": 2, - "offset": 152, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "SCALE_CHILDREN": 2, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "FOCUS_LOCKED": 64, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152 - } - }, - "m_Flags": { - "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648, - "ONE_SHOT": 8388608, - "FLIPPED_HORIZONTAL": 16777216, - "FLIPPED_VERTICAL": 33554432 - } - }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3105139380 - }, - "m_fTargetAlpha": { - "type": "float", - "id": 5, - "offset": 212, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1809129834 - }, - "m_fDisabledAlpha": { - "type": "float", - "id": 6, - "offset": 216, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1389987675 - }, - "m_fAlpha": { - "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 482130755 - }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3623628394 - }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2102211316 - }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1846695875 - }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3389835433 - }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2547159940 - }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2587533771 - }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3091503757 - }, - "m_pMaterial": { - "type": "class SharedPointer", - "id": 16, - "offset": 592, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3479277078 - }, - "m_fRotation": { - "type": "float", - "id": 17, - "offset": 608, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1175400173 - }, - "m_Color": { - "type": "class Color", - "id": 18, - "offset": 584, - "flags": 262279, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1753714077 - }, - "m_textColor": { - "type": "class Color", - "id": 19, - "offset": 612, - "flags": 262279, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2528109250 - }, - "m_textComponent": { - "type": "class TextComponent", - "id": 20, - "offset": 616, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3491704390 - }, - "m_amount": { - "type": "int", - "id": 21, - "offset": 800, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 248546638 - } - } - }, - "1771806448": { - "name": "class SharedPointer", - "bases": [ - "GameEffectTimerSoundTrigger", - "GameEffectTimerTrigger", - "PropertyClass" - ], - "hash": 1771806448, - "properties": { - "m_radius": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 989410271 - }, - "m_triggerT": { - "type": "float", - "id": 1, - "offset": 76, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2138083583 - }, - "m_soundFiles": { - "type": "std::string", - "id": 2, - "offset": 80, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 3585199735 - } - } - }, - "1363385110": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1363385110, - "properties": { - "m_badgeNameID": { - "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 800680558 - }, - "m_badgeTitle": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1783354256 - }, - "m_badgeInfo": { - "type": "std::string", - "id": 2, - "offset": 112, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3002782298 - }, - "m_badgeProgressInfo": { - "type": "std::string", - "id": 3, - "offset": 144, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1902667503 - }, - "m_badgeProgress": { - "type": "int", - "id": 4, - "offset": 176, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1577305122 - }, - "m_badgeMax": { - "type": "int", - "id": 5, - "offset": 180, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 891676691 - }, - "m_badgeComplete": { - "type": "bool", - "id": 6, - "offset": 184, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1943559071 - }, - "m_index": { - "type": "unsigned int", - "id": 7, - "offset": 188, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1009433893 - }, - "m_badgeOutline": { - "type": "std::string", - "id": 8, - "offset": 192, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1548975214 - }, - "m_badgeImage": { - "type": "std::string", - "id": 9, - "offset": 224, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1770432017 - }, - "m_dynamicBadge": { - "type": "bool", - "id": 10, - "offset": 256, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1496846667 - }, - "m_badgeFilterID": { - "type": "unsigned int", - "id": 11, - "offset": 260, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1965286611 - }, - "m_filterIndex": { - "type": "unsigned int", - "id": 12, - "offset": 264, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1526994539 - }, - "m_overcount": { - "type": "bool", - "id": 13, - "offset": 268, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 203918520 - }, - "m_hasLoot": { - "type": "bool", - "id": 14, - "offset": 269, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1743226445 - }, - "m_badgeLoot": { - "type": "std::string", - "id": 15, - "offset": 272, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3002891500 - }, - "m_extraCredit": { - "type": "bool", - "id": 16, - "offset": 304, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 847737554 - }, - "m_overcountInterval": { - "type": "unsigned int", - "id": 17, - "offset": 308, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1845137015 - }, - "m_recurringRewardsDescription": { - "type": "std::string", - "id": 18, - "offset": 312, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1668915496 - }, - "m_overcountLoot": { - "type": "std::string", - "id": 19, - "offset": 344, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2371089534 - } - } - }, - "1362764071": { - "name": "class PlaySoundCinematicAction*", - "bases": [ - "CinematicAction", - "PropertyClass" - ], - "hash": 1362764071, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_sound": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 131079, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2307644996 - }, - "m_useClientLocation": { - "type": "bool", - "id": 2, - "offset": 100, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 98585784 - }, - "m_soundType": { - "type": "enum PlaySoundCinematicAction::SoundType", - "id": 3, - "offset": 96, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 868075053, - "enum_options": { - "kSigil": 0, - "kGotHit": 1, - "kDeath": 2, - "kChatter": 4, - "__DEFAULT": "kSigil" - } - }, - "m_streamSound": { - "type": "bool", - "id": 4, - "offset": 101, - "flags": 263, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1693179368 - }, - "m_playMusic": { - "type": "bool", - "id": 5, - "offset": 102, - "flags": 263, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 552729674 - }, - "m_fadeDuration": { - "type": "float", - "id": 6, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1402536557 - } - } - }, - "1772012586": { - "name": "class PvPStatueBehavior", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1772012586, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_targetLeague": { - "type": "std::string", - "id": 1, - "offset": 112, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3312829397 - }, - "m_rank": { - "type": "int", - "id": 2, - "offset": 144, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 219803942 - }, - "m_refreshRateSec": { - "type": "int", - "id": 3, - "offset": 148, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 418402320 - }, - "m_groundOffset": { - "type": "float", - "id": 4, - "offset": 152, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 684524077 - }, - "m_yaw": { - "type": "float", - "id": 5, - "offset": 156, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 357256328 - }, - "m_showNametag": { - "type": "bool", - "id": 6, - "offset": 160, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 584664753 - }, - "m_showInGrace": { - "type": "bool", - "id": 7, - "offset": 161, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1033917517 - }, - "m_showActive": { - "type": "bool", - "id": 8, - "offset": 162, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 685431312 - }, - "m_scale": { - "type": "float", - "id": 9, - "offset": 164, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 899693439 - }, - "m_alpha": { - "type": "float", - "id": 10, - "offset": 168, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 878686493 - }, - "m_animDelaySec": { - "type": "float", - "id": 11, - "offset": 172, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2131058854 - }, - "m_animChance": { - "type": "float", - "id": 12, - "offset": 176, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 434823806 - }, - "m_animList": { - "type": "std::string", - "id": 13, - "offset": 184, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2531745852 - }, - "m_leagueID": { - "type": "unsigned int", - "id": 14, - "offset": 200, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 692361645 - }, - "m_seasonID": { - "type": "unsigned int", - "id": 15, - "offset": 204, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 535260643 - }, - "m_startTime": { - "type": "unsigned int", - "id": 16, - "offset": 208, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1598371274 - }, - "m_visualBlob": { - "type": "std::string", - "id": 17, - "offset": 216, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1691722510 - } - } - }, - "208779552": { - "name": "class SharedPointer", - "bases": [ - "ReqNumeric", - "Requirement", - "PropertyClass" - ], - "hash": 208779552, - "properties": { - "m_applyNOT": { - "type": "bool", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1746328074, - "enum_options": { - "__DEFAULT": 0 - } - }, - "m_operator": { - "type": "enum Requirement::Operator", - "id": 1, - "offset": 76, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2672792317, - "enum_options": { - "ROP_AND": 0, - "ROP_OR": 1, - "__DEFAULT": "ROP_AND" - } - }, - "m_numericValue": { - "type": "float", - "id": 2, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 521915239 - }, - "m_operatorType": { - "type": "enum ReqNumeric::OPERATOR_TYPE", - "id": 3, - "offset": 84, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2228122961, - "enum_options": { - "OPERATOR_UNKNOWN": 4294967295, - "OPERATOR_EQUALS": 0, - "OPERATOR_GREATER_THAN": 1, - "OPERATOR_LESS_THAN": 2, - "OPERATOR_GREATER_THAN_EQ": 3, - "OPERATOR_LESS_THAN_EQ": 4 - } - } - } - }, - "1382540493": { - "name": "class AquariumBehaviorTemplate*", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 1382540493, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - }, - "m_fishtankSize": { - "type": "int", - "id": 1, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1397459629 - }, - "m_fishtankType": { - "type": "int", - "id": 2, - "offset": 124, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1397512660 - }, - "m_numberOfFish": { - "type": "int", - "id": 3, - "offset": 128, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1143336898 - } - } - }, - "193893944": { - "name": "class RemoveBacklashEffectCinematicAction", - "bases": [ - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 193893944, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - } - } - }, - "193290005": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 193290005, - "properties": { - "m_startPosition": { - "type": "int", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1469535773 - }, - "m_totalPlayerCount": { - "type": "unsigned int", - "id": 1, - "offset": 76, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1303598439 - }, - "m_entries": { - "type": "class SharedPointer", - "id": 2, - "offset": 80, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1843584395 - } - } - }, - "980221033": { - "name": "class PetSiegeGameManager", - "bases": [ - "PropertyClass" - ], - "hash": 980221033, - "properties": { - "m_fPetMass": { - "type": "float", - "id": 0, - "offset": 76, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": true, - "pointer": false, - "hash": 1378034810 - }, - "m_fBounce": { - "type": "float", - "id": 1, - "offset": 92, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": true, - "pointer": false, - "hash": 179025177 - }, - "m_fBounceThreshold": { - "type": "float", - "id": 2, - "offset": 96, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": true, - "pointer": false, - "hash": 1371486086 - }, - "m_fMU": { - "type": "float", - "id": 3, - "offset": 100, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": true, - "pointer": false, - "hash": 357234943 - }, - "m_fERP": { - "type": "float", - "id": 4, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": true, - "pointer": false, - "hash": 309542404 - }, - "m_fCFM": { - "type": "float", - "id": 5, - "offset": 108, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": true, - "pointer": false, - "hash": 309539827 - }, - "m_fContactSurfaceDepth": { - "type": "float", - "id": 6, - "offset": 112, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": true, - "pointer": false, - "hash": 999400231 - }, - "m_bAutoDisable": { - "type": "bool", - "id": 7, - "offset": 116, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": true, - "pointer": false, - "hash": 1449036226 - }, - "m_fAutoDisableLinearThreshold": { - "type": "float", - "id": 8, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": true, - "pointer": false, - "hash": 2028120914 - }, - "m_fAutoDisableAngularThreshold": { - "type": "float", - "id": 9, - "offset": 124, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": true, - "pointer": false, - "hash": 391896705 - }, - "m_iAutoDisableSteps": { - "type": "int", - "id": 10, - "offset": 128, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": true, - "pointer": false, - "hash": 380025343 - }, - "m_fAutoDisableTime": { - "type": "float", - "id": 11, - "offset": 132, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": true, - "pointer": false, - "hash": 1114279513 - }, - "m_fContactMaxCorrectingVel": { - "type": "float", - "id": 12, - "offset": 136, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": true, - "pointer": false, - "hash": 2046803974 - }, - "m_fGravityX": { - "type": "float", - "id": 13, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": true, - "pointer": false, - "hash": 1531831803 - }, - "m_fGravityY": { - "type": "float", - "id": 14, - "offset": 84, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": true, - "pointer": false, - "hash": 1531831804 - }, - "m_fGravityZ": { - "type": "float", - "id": 15, - "offset": 88, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": true, - "pointer": false, - "hash": 1531831805 - }, - "m_perShotLeftoverScoreBonus": { - "type": "int", - "id": 16, - "offset": 140, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": true, - "pointer": false, - "hash": 1865826121 - }, - "m_iSoundCollisionThreshold": { - "type": "int", - "id": 17, - "offset": 144, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": true, - "pointer": false, - "hash": 610409093 - }, - "m_gamePowers": { - "type": "class SharedPointer", - "id": 18, - "offset": 152, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": true, - "pointer": true, - "hash": 2071626314 - }, - "m_gameInteractions": { - "type": "class SharedPointer", - "id": 19, - "offset": 168, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": true, - "pointer": true, - "hash": 3264886543 - }, - "m_gameEvents": { - "type": "class SharedPointer", - "id": 20, - "offset": 184, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": true, - "pointer": true, - "hash": 1839206463 - }, - "m_gameLevelData": { - "type": "class SharedPointer", - "id": 21, - "offset": 200, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": true, - "pointer": true, - "hash": 1151370820 - }, - "m_blockTypes": { - "type": "class SharedPointer", - "id": 22, - "offset": 216, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": true, - "pointer": true, - "hash": 811905140 - }, - "m_comboMultipliers": { - "type": "class SharedPointer", - "id": 23, - "offset": 232, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": true, - "pointer": true, - "hash": 3057704584 - } - } - }, - "1364452653": { - "name": "class ObjectStateBehaviorTemplate", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 1364452653, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - }, - "m_stateSetName": { - "type": "std::string", - "id": 1, - "offset": 120, - "flags": 268435463, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1863712969, - "enum_options": { - "__BASECLASS": "ObjStateSet" - } - } - } - }, - "979355205": { - "name": "class ReqBaseMagicLevel", - "bases": [ - "ReqNumeric", - "Requirement", - "PropertyClass" - ], - "hash": 979355205, - "properties": { - "m_applyNOT": { - "type": "bool", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1746328074, - "enum_options": { - "__DEFAULT": 0 - } - }, - "m_operator": { - "type": "enum Requirement::Operator", - "id": 1, - "offset": 76, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2672792317, - "enum_options": { - "ROP_AND": 0, - "ROP_OR": 1, - "__DEFAULT": "ROP_AND" - } - }, - "m_numericValue": { - "type": "float", - "id": 2, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 521915239 - }, - "m_operatorType": { - "type": "enum ReqNumeric::OPERATOR_TYPE", - "id": 3, - "offset": 84, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2228122961, - "enum_options": { - "OPERATOR_UNKNOWN": 4294967295, - "OPERATOR_EQUALS": 0, - "OPERATOR_GREATER_THAN": 1, - "OPERATOR_LESS_THAN": 2, - "OPERATOR_GREATER_THAN_EQ": 3, - "OPERATOR_LESS_THAN_EQ": 4 - } - }, - "m_magicSchool": { - "type": "std::string", - "id": 4, - "offset": 88, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1597012900 - } - } - }, - "1364452461": { - "name": "class ObjectStateBehaviorTemplate*", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 1364452461, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - }, - "m_stateSetName": { - "type": "std::string", - "id": 1, - "offset": 120, - "flags": 268435463, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1863712969, - "enum_options": { - "__BASECLASS": "ObjStateSet" - } - } - } - }, - "1363939464": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1363939464, - "properties": { - "m_projectName": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2223751667 - }, - "m_projectTitle": { - "type": "std::string", - "id": 1, - "offset": 112, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1839677492 - }, - "m_projectDescription": { - "type": "std::string", - "id": 2, - "offset": 144, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3174112214 - }, - "m_projectType": { - "type": "enum ClassProjectType", - "id": 3, - "offset": 176, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 772612819, - "enum_options": { - "CPT_TreasureTower": 0, - "CPT_Battleground": 1, - "CPT_SideActivity": 2, - "CPT_SeasonPass": 3, - "CPT_PetActivity": 4, - "CPT_HousingSideActivity": 5, - "CPT_RateMyStitch": 6, - "CPT_MonthlyGauntlet": 7 - } - }, - "m_initialHoliday": { - "type": "std::string", - "id": 4, - "offset": 184, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1940089679 - }, - "m_maximumLengthInDays": { - "type": "int", - "id": 5, - "offset": 216, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 725301602 - }, - "m_crownsCost": { - "type": "int", - "id": 6, - "offset": 220, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1592212719 - }, - "m_useRankAsProgress": { - "type": "int", - "id": 7, - "offset": 224, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 878502460 - }, - "m_rankProgressOffset": { - "type": "int", - "id": 8, - "offset": 228, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1364950050 - }, - "m_minimumCreditsPerDay": { - "type": "int", - "id": 9, - "offset": 232, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 826102537 - }, - "m_leaderboardRewardItemID": { - "type": "unsigned int", - "id": 10, - "offset": 236, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1667943971 - }, - "m_leaderboardSize": { - "type": "int", - "id": 11, - "offset": 240, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 683398282 - }, - "m_mainDoodle": { - "type": "std::string", - "id": 12, - "offset": 248, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2211594423 - }, - "m_purchasedCredits": { - "type": "int", - "id": 13, - "offset": 280, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2038693799 - }, - "m_friendLootPosition": { - "type": "int", - "id": 14, - "offset": 284, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 109123685 - }, - "m_friendLootTable": { - "type": "std::string", - "id": 15, - "offset": 288, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2327793817 - }, - "m_enterPortalText": { - "type": "std::string", - "id": 16, - "offset": 320, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2956016240 - }, - "m_goldCost": { - "type": "int", - "id": 17, - "offset": 352, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 444550297 - }, - "m_numberOfGoldCredits": { - "type": "int", - "id": 18, - "offset": 356, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1425904684 - }, - "m_restoreHealthAndManaAtExit": { - "type": "int", - "id": 19, - "offset": 360, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 810519539 - }, - "m_endingGracePeriodInDays": { - "type": "int", - "id": 20, - "offset": 364, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 953234780 - }, - "m_eventTeleportZone": { - "type": "std::string", - "id": 21, - "offset": 368, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3270861128 - }, - "m_eventTeleportLocation": { - "type": "std::string", - "id": 22, - "offset": 400, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2332042341 - }, - "m_subscriberCreditsPerDay": { - "type": "int", - "id": 23, - "offset": 432, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2010087361 - }, - "m_extendedTemplateName": { - "type": "std::string", - "id": 24, - "offset": 440, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2221427049 - }, - "m_creditsOverrideName": { - "type": "std::string", - "id": 25, - "offset": 472, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1508357386 - }, - "m_sortPriority": { - "type": "int", - "id": 26, - "offset": 504, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 967438884 - }, - "m_excludeFromSeasonPass": { - "type": "int", - "id": 27, - "offset": 508, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1149583224 - }, - "m_isSeasonPass": { - "type": "int", - "id": 28, - "offset": 512, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 540828470 - }, - "m_autoStartYear": { - "type": "int", - "id": 29, - "offset": 516, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1267259570 - }, - "m_autoStartMonth": { - "type": "int", - "id": 30, - "offset": 520, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1000688519 - }, - "m_autoStartDay": { - "type": "int", - "id": 31, - "offset": 524, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1990722463 - }, - "m_maximumSeasonPassPoints": { - "type": "int", - "id": 32, - "offset": 528, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1165009301 - }, - "m_subscriberCownsCost": { - "type": "int", - "id": 33, - "offset": 532, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 352653713 - }, - "m_hideGlobalProgressBar": { - "type": "int", - "id": 34, - "offset": 536, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 102179695 - }, - "m_seasonPassPicture": { - "type": "std::string", - "id": 35, - "offset": 552, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2691396375 - }, - "m_top10LeaderboardBadgeName": { - "type": "std::string", - "id": 36, - "offset": 584, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2561324632 - }, - "m_top100LeaderboardBadgeName": { - "type": "std::string", - "id": 37, - "offset": 616, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1556059944 - }, - "m_top1LeaderboardBadgeName": { - "type": "std::string", - "id": 38, - "offset": 648, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2266410888 - }, - "m_activityList": { - "type": "class SharedPointer", - "id": 39, - "offset": 680, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 458837381 - }, - "m_rewardList": { - "type": "class SharedPointer", - "id": 40, - "offset": 696, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 4055911451 - }, - "m_tokenRewardList": { - "type": "class SharedPointer", - "id": 41, - "offset": 712, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 3225972988 - }, - "m_locationList": { - "type": "class SharedPointer", - "id": 42, - "offset": 728, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 776321471 - }, - "m_globalLootPointList": { - "type": "class SharedPointer", - "id": 43, - "offset": 744, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2460390565 - }, - "m_finalRewardList": { - "type": "class SharedPointer", - "id": 44, - "offset": 760, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 527856021 - }, - "m_featuredRewardList": { - "type": "class SharedPointer", - "id": 45, - "offset": 776, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 3028130027 - }, - "m_isBattlePass": { - "type": "int", - "id": 46, - "offset": 540, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1473359625 - }, - "m_isEnabledProgressAdvancement": { - "type": "int", - "id": 47, - "offset": 544, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1623438236 - }, - "m_extraDataList": { - "type": "std::string", - "id": 48, - "offset": 792, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2533725525 - }, - "m_isDisableActivitiesSection": { - "type": "int", - "id": 49, - "offset": 548, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2093397492 - } - } - }, - "194076899": { - "name": "class SharedPointer", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 194076899, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - }, - "m_worldName": { - "type": "std::string", - "id": 1, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1846757476 - }, - "m_collectionResistance": { - "type": "int", - "id": 2, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 717150423 - }, - "m_isBoss": { - "type": "bool", - "id": 3, - "offset": 156, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 569602950 - }, - "m_essencesPerSummonTC": { - "type": "int", - "id": 4, - "offset": 160, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2052433520 - }, - "m_goldPerSummonTC": { - "type": "int", - "id": 5, - "offset": 164, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1978867293 - }, - "m_essencesPerHouseGuest": { - "type": "int", - "id": 6, - "offset": 168, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 254219206 - }, - "m_goldPerHouseGuest": { - "type": "int", - "id": 7, - "offset": 172, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1744976627 - }, - "m_essencesPerKillTC": { - "type": "int", - "id": 8, - "offset": 176, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 305653757 - }, - "m_goldPerKillTC": { - "type": "int", - "id": 9, - "offset": 180, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 910983338 - }, - "m_houseGuestTemplateID": { - "type": "unsigned int", - "id": 10, - "offset": 184, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 612813314 - }, - "m_alternateMobTemplateID": { - "type": "unsigned int", - "id": 11, - "offset": 188, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 233156212 - }, - "m_collectedAsTemplateID": { - "type": "unsigned int", - "id": 12, - "offset": 232, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1661926425 - } - } - }, - "980944407": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 980944407, - "properties": { - "m_trackID": { - "type": "gid", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 703251290 - }, - "m_zone": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1717806295 - }, - "m_key": { - "type": "std::string", - "id": 2, - "offset": 112, - "flags": 8388639, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1764739684 - }, - "m_rank": { - "type": "unsigned char", - "id": 3, - "offset": 144, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 857403388 - }, - "m_lapCount": { - "type": "unsigned char", - "id": 4, - "offset": 145, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 791794870 - } - } - }, - "198649050": { - "name": "class ObstacleCoursePendulumBehaviorClient", - "bases": [ - "ObstacleCoursePendulumBehavior", - "ObstacleCourseObstacleBehavior", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 198649050, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - } - } - }, - "980685453": { - "name": "class BadgeFilterInfo", - "bases": [ - "PropertyClass" - ], - "hash": 980685453, - "properties": { - "m_badgeFilterNameID": { - "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2064078516 - }, - "m_numberOfBadges": { - "type": "int", - "id": 1, - "offset": 76, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1438042878 - }, - "m_numberOfExtraCreditBadges": { - "type": "int", - "id": 2, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 301196253 - } - } - }, - "1364979541": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1364979541, - "properties": { - "m_tabName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1536087219 - }, - "m_tabWindow": { - "type": "class SharedPointer", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2814298381 - }, - "m_tabButton": { - "type": "class SharedPointer", - "id": 2, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 847778038 - } - } - }, - "195365054": { - "name": "class AdvPvPEloBehaviorTemplate", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 195365054, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - } - } - }, - "195054584": { - "name": "class SharedPointer", - "bases": [ - "ConditionalSpellEffectRequirement", - "Requirement", - "PropertyClass" - ], - "hash": 195054584, - "properties": { - "m_applyNOT": { - "type": "bool", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1746328074, - "enum_options": { - "__DEFAULT": 0 - } - }, - "m_operator": { - "type": "enum Requirement::Operator", - "id": 1, - "offset": 76, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2672792317, - "enum_options": { - "ROP_AND": 0, - "ROP_OR": 1, - "__DEFAULT": "ROP_AND" - } - }, - "m_targetType": { - "type": "enum ConditionalSpellEffectRequirement::RequirementTarget", - "id": 2, - "offset": 80, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2547737902, - "enum_options": { - "RT_Caster": 0, - "RT_Target": 1 - } - }, - "m_status": { - "type": "enum ReqCombatStatus::kStatusEffect", - "id": 3, - "offset": 88, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2594569198, - "enum_options": { - "kStunned": 0, - "kConfused": 1 - } - } - } - }, - "194810571": { - "name": "class ObstacleCourseCatapultBehavior*", - "bases": [ - "ObstacleCourseObstacleBehavior", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 194810571, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - } - } - }, - "982408862": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 982408862, - "properties": { - "m_sBadgeName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1846044066 - }, - "m_hasBadge": { - "type": "bool", - "id": 1, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1597294914 - } - } - }, - "1365512403": { - "name": "class ActorDialogCinematicAction", - "bases": [ - "CinematicAction", - "PropertyClass" - ], - "hash": 1365512403, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_dialog": { - "type": "class ActorDialog*", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1310859212 - }, - "m_activePersona": { - "type": "std::string", - "id": 2, - "offset": 88, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1972573231 - } - } - }, - "1365468914": { - "name": "class SharedPointer", - "bases": [ - "ControlCheckBox", - "ControlButton", - "Window", - "PropertyClass" - ], - "hash": 1365468914, - "properties": { - "m_sName": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306437263 - }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621225959 - }, - "m_Style": { - "type": "unsigned int", - "id": 2, - "offset": 152, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152, - "EFFECT_SCALE": 67108864, - "LOCK_ICON_SIZE": 33554432, - "LEFT_TEXT": 536870912, - "NO_FIT_TEXT": 1073741824, - "CHECKBOX_TEXTOVERIMAGE": 16777216 - } - }, - "m_Flags": { - "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } - }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3105139380 - }, - "m_fTargetAlpha": { - "type": "float", - "id": 5, - "offset": 212, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1809129834 - }, - "m_fDisabledAlpha": { - "type": "float", - "id": 6, - "offset": 216, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1389987675 - }, - "m_fAlpha": { - "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 482130755 - }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3623628394 - }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2102211316 - }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1846695875 - }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3389835433 - }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2547159940 - }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2587533771 - }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3091503757 - }, - "m_bToggle": { - "type": "bool", - "id": 16, - "offset": 608, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2071810903 - }, - "m_bButtonDown": { - "type": "bool", - "id": 17, - "offset": 609, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 840041705 - }, - "m_sLabel": { - "type": "std::wstring", - "id": 18, - "offset": 616, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2207009163 - }, - "m_labelOffset": { - "type": "class Rect", - "id": 19, - "offset": 832, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1990646723 - }, - "m_pButton": { - "type": "class SharedPointer", - "id": 20, - "offset": 656, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1543855875 - }, - "m_HotKey": { - "type": "unsigned int", - "id": 21, - "offset": 672, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1631553409 - }, - "m_Color": { - "type": "class Color", - "id": 22, - "offset": 676, - "flags": 262279, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1753714077 - }, - "m_bCursorOver": { - "type": "bool", - "id": 23, - "offset": 689, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 283981103 - }, - "m_bAbortWhenCursorNotOver": { - "type": "bool", - "id": 24, - "offset": 706, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 325405258 - }, - "m_bHotKeyDown": { - "type": "bool", - "id": 25, - "offset": 680, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 616989185 - }, - "m_fTime": { - "type": "float", - "id": 26, - "offset": 684, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 883746156 - }, - "m_bGreyed": { - "type": "bool", - "id": 27, - "offset": 688, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1566556053 - }, - "m_fMaxScale": { - "type": "float", - "id": 28, - "offset": 692, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2070186635 - }, - "m_fScaleSpeed": { - "type": "float", - "id": 29, - "offset": 696, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1457135702 - }, - "m_bUseDropShadow": { - "type": "bool", - "id": 30, - "offset": 704, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 93063037 - }, - "m_bUseOutline": { - "type": "bool", - "id": 31, - "offset": 705, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 744292994 - }, - "m_pGreyedState": { - "type": "class SharedPointer", - "id": 32, - "offset": 768, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2703352263 - }, - "m_pNormalState": { - "type": "class SharedPointer", - "id": 33, - "offset": 752, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1887909808 - }, - "m_pHighlightedState": { - "type": "class SharedPointer", - "id": 34, - "offset": 784, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2200177608 - }, - "m_pSelectedState": { - "type": "class SharedPointer", - "id": 35, - "offset": 800, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2266776432 - }, - "m_pDepressedState": { - "type": "class SharedPointer", - "id": 36, - "offset": 816, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1878185798 - }, - "m_nGroupID": { - "type": "int", - "id": 37, - "offset": 880, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 403966850 - }, - "m_bChecked": { - "type": "bool", - "id": 38, - "offset": 884, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 958955100 - }, - "m_pCheckedState": { - "type": "class SharedPointer", - "id": 39, - "offset": 888, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1210539694 - }, - "m_pCheckedGreyedState": { - "type": "class SharedPointer", - "id": 40, - "offset": 904, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2702030126 - }, - "m_pCheckedHighlightedState": { - "type": "class SharedPointer", - "id": 41, - "offset": 920, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1320097679 - }, - "m_pCheckedDepressedState": { - "type": "class SharedPointer", - "id": 42, - "offset": 936, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1609188685 - } - } - }, - "195332260": { - "name": "class WinAnimScaleSpeed", - "bases": [ - "WinAnimScale", - "WindowAnimation", - "PropertyClass" - ], - "hash": 195332260, - "properties": { - "m_bUseDeepCopy": { - "type": "bool", - "id": 0, - "offset": 72, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 433380635 - }, - "m_scale": { - "type": "float", - "id": 1, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 899693439 - }, - "m_fSpeed": { - "type": "float", - "id": 2, - "offset": 96, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 503609006 - } - } - }, - "983962843": { - "name": "class GeomParams*", - "bases": [ - "PropertyClass" - ], - "hash": 983962843, - "properties": { - "m_eType": { - "type": "enum ProxyType", - "id": 0, - "offset": 72, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1656534066, - "enum_options": { - "ProxyTypeBox": 0, - "ProxyTypeRay": 1, - "ProxyTypeSphere": 2, - "ProxyTypeCylinder": 3, - "ProxyTypeTube": 4, - "ProxyTypePlane": 5, - "ProxyTypeMesh": 6, - "ProxyTypeInvalid": 7 - } - } - } - }, - "982965494": { - "name": "class TournamentConfig*", - "bases": [ - "PropertyClass" - ], - "hash": 982965494, - "properties": { - "m_principalTournamentNames": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 268435463, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 3082525214, - "enum_options": { - "__BASECLASS": "TournamentTemplate" - } - }, - "m_temporaryTournamentNames": { - "type": "std::string", - "id": 1, - "offset": 96, - "flags": 268435463, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1792424127, - "enum_options": { - "__BASECLASS": "TournamentTemplate" - } - }, - "m_observerTimeout": { - "type": "int", - "id": 2, - "offset": 76, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 562500777 - }, - "m_forfeitTimeout": { - "type": "int", - "id": 3, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 688716240 - }, - "m_activeSeason": { - "type": "unsigned int", - "id": 4, - "offset": 112, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 277598322 - }, - "m_maxUpdateTime": { - "type": "unsigned int", - "id": 5, - "offset": 116, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1535609605 - }, - "m_maxUpdateCount": { - "type": "unsigned int", - "id": 6, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 937799039 - }, - "m_cacheUpdateTime": { - "type": "unsigned int", - "id": 7, - "offset": 124, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 887219635 - }, - "m_bracketScheduleFilename": { - "type": "std::string", - "id": 8, - "offset": 128, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3625222117 - }, - "m_bracketStringTableFilename": { - "type": "std::string", - "id": 9, - "offset": 160, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2974204087 - }, - "m_bracketRewardsPlaceMappingList": { - "type": "class SharedPointer", - "id": 10, - "offset": 192, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 3271398156 - } - } - }, - "1365512409": { - "name": "class ActorDialogCinematicAction*", - "bases": [ - "CinematicAction", - "PropertyClass" - ], - "hash": 1365512409, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_dialog": { - "type": "class ActorDialog*", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1310859212 - }, - "m_activePersona": { - "type": "std::string", - "id": 2, - "offset": 88, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1972573231 - } - } - }, - "982839443": { - "name": "class BGPolymorphSelectBehavior", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 982839443, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_polyCategoryInactiveToRedTeamPlayers": { - "type": "gid", - "id": 1, - "offset": 112, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 757020210 - }, - "m_polyCategoryUnavailableToRedTeamPlayers": { - "type": "gid", - "id": 2, - "offset": 128, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1382977667 - }, - "m_polyCategoryInactiveToBlueTeamPlayers": { - "type": "gid", - "id": 3, - "offset": 144, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1877669599 - }, - "m_polyCategoryUnavailableToBlueTeamPlayers": { - "type": "gid", - "id": 4, - "offset": 160, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1059429200 - } - } - }, - "196391805": { - "name": "class QuestEffectInfo*", - "bases": [ - "GameEffectInfo", - "PropertyClass" - ], - "hash": 196391805, - "properties": { - "m_effectName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2029161513 - }, - "m_startReqs": { - "type": "class SharedPointer", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3147529602 - }, - "m_startResults": { - "type": "class SharedPointer", - "id": 2, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2094517692 - }, - "m_endResults": { - "type": "class SharedPointer", - "id": 3, - "offset": 136, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2118364133 - } - } - }, - "196388733": { - "name": "class QuestEffectInfo", - "bases": [ - "GameEffectInfo", - "PropertyClass" - ], - "hash": 196388733, - "properties": { - "m_effectName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2029161513 - }, - "m_startReqs": { - "type": "class SharedPointer", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3147529602 - }, - "m_startResults": { - "type": "class SharedPointer", - "id": 2, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2094517692 - }, - "m_endResults": { - "type": "class SharedPointer", - "id": 3, - "offset": 136, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2118364133 - } - } - }, - "1375294089": { - "name": "class ClientStartHangingRotationCinematicAction", - "bases": [ - "StartHangingRotationCinematicAction", - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 1375294089, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - }, - "m_cloaked": { - "type": "bool", - "id": 2, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 7349510 - } - } - }, - "983246711": { - "name": "class PetDerbyRacerStats*", - "bases": [ - "PropertyClass" - ], - "hash": 983246711, - "properties": { - "m_initialStats": { - "type": "class PetStat", - "id": 0, - "offset": 72, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2249155308 - } - } - }, - "1368448727": { - "name": "class SharedPointer", - "bases": [ - "GoalTemplate", - "CoreTemplate", - "PropertyClass" - ], - "hash": 1368448727, - "properties": { - "m_behaviors": { - "type": "class BehaviorTemplate*", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1197808594 - }, - "m_goalName": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1521627807 - }, - "m_goalNameID": { - "type": "unsigned int", - "id": 2, - "offset": 496, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 403158846 - }, - "m_goalTitle": { - "type": "std::string", - "id": 3, - "offset": 136, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2291910240 - }, - "m_goalUnderway": { - "type": "std::string", - "id": 4, - "offset": 168, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3153144269 - }, - "m_hyperlink": { - "type": "std::string", - "id": 5, - "offset": 200, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2887798993 - }, - "m_completeText": { - "type": "std::string", - "id": 6, - "offset": 232, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2767458393 - }, - "m_completeResults": { - "type": "class ResultList*", - "id": 7, - "offset": 440, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1964258099 - }, - "m_goalRequirements": { - "type": "class RequirementList*", - "id": 8, - "offset": 448, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2979967145 - }, - "m_tallyCounter": { - "type": "class TallyCounterTemplate*", - "id": 9, - "offset": 456, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1884546193 - }, - "m_locationName": { - "type": "std::string", - "id": 10, - "offset": 272, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1824218389 - }, - "m_displayImage1": { - "type": "std::string", - "id": 11, - "offset": 304, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1959572133 - }, - "m_displayImage2": { - "type": "std::string", - "id": 12, - "offset": 336, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1959572134 - }, - "m_clientTags": { - "type": "std::string", - "id": 13, - "offset": 368, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2319030025 - }, - "m_genericEvents": { - "type": "std::string", - "id": 14, - "offset": 384, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 3466670829 - }, - "m_autoQualify": { - "type": "bool", - "id": 15, - "offset": 400, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1878907431 - }, - "m_autoComplete": { - "type": "bool", - "id": 16, - "offset": 401, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1302545445 - }, - "m_destinationZone": { - "type": "std::string", - "id": 17, - "offset": 408, - "flags": 268435463, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2605356153, - "enum_options": { - "__BASECLASS": "ZoneData" - } - }, - "m_dialogList": { - "type": "class ActorDialogListBase*", - "id": 18, - "offset": 264, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1909154969 - }, - "m_goalType": { - "type": "enum GoalTemplate::GOAL_TYPE", - "id": 19, - "offset": 96, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1488021149, - "enum_options": { - "GOAL_TYPE_UNKNOWN": 0, - "GOAL_TYPE_BOUNTY": 1, - "GOAL_TYPE_BOUNTYCOLLECT": 2, - "GOAL_TYPE_SCAVENGE": 3, - "GOAL_TYPE_PERSONA": 4, - "GOAL_TYPE_WAYPOINT": 5, - "GOAL_TYPE_SCAVENGEFAKE": 6, - "GOAL_TYPE_ACHIEVERANK": 7, - "GOAL_TYPE_USAGE": 8, - "GOAL_TYPE_COMPLETEQUEST": 9, - "GOAL_TYPE_SOCIARANK": 10, - "GOAL_TYPE_SOCIACURRENCY": 11, - "GOAL_TYPE_SOCIAMINIGAME": 12, - "GOAL_TYPE_SOCIAGIVEITEM": 13, - "GOAL_TYPE_SOCIAGETITEM": 14, - "GOAL_TYPE_COLLECTAFTERBOUNTY": 15, - "GOAL_TYPE_ENCOUNTER_WAYPOINT_FOREACH": 16 - } - }, - "m_noQuestHelper": { - "type": "bool", - "id": 20, - "offset": 500, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 578010882, - "enum_options": { - "__DEFAULT": 0 - } - }, - "m_petOnlyQuest": { - "type": "bool", - "id": 21, - "offset": 501, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 679359344, - "enum_options": { - "__DEFAULT": 0 - } - }, - "m_activateResults": { - "type": "class ResultList*", - "id": 22, - "offset": 504, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3790153995 - }, - "m_hideGoalFloatyText": { - "type": "bool", - "id": 23, - "offset": 512, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1919383204, - "enum_options": { - "__DEFAULT": 0 - } - }, - "m_zoneEntry": { - "type": "bool", - "id": 24, - "offset": 520, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 739064065 - }, - "m_zoneTag": { - "type": "std::string", - "id": 25, - "offset": 528, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3405382643 - }, - "m_proximityTag": { - "type": "std::string", - "id": 26, - "offset": 560, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1743105804 - }, - "m_zoneExit": { - "type": "bool", - "id": 27, - "offset": 521, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 675650793 - } - } - }, - "1367233111": { - "name": "class DynamicSigilRound", - "bases": [ - "PropertyClass" - ], - "hash": 1367233111, - "properties": { - "m_turns": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1624806566 - } - } - }, - "1365872854": { - "name": "class ClientDerbyModifyPetStat*", - "bases": [ - "DerbyModifyPetStat", - "DerbyEffect", - "PropertyClass" - ], - "hash": 1365872854, - "properties": { - "m_buffType": { - "type": "enum DerbyTalentBuffType", - "id": 0, - "offset": 92, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1149251982, - "enum_options": { - "Buff": 0, - "Debuff": 1, - "Neither": 2 - } - }, - "m_kTarget": { - "type": "enum DerbyTargetType", - "id": 1, - "offset": 96, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1807803351, - "enum_options": { - "kTargetInFront": 0, - "kTargetBehind": 1, - "kTargetFirst": 2, - "kTargetSelf": 3, - "kTargetAll": 4, - "kTargetLast": 5 - } - }, - "m_nDuration": { - "type": "int", - "id": 2, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1110167982 - }, - "m_effectID": { - "type": "unsigned int", - "id": 3, - "offset": 88, - "flags": 24, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2347630439 - }, - "m_imageFilename": { - "type": "std::string", - "id": 4, - "offset": 112, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2813328063 - }, - "m_iconIndex": { - "type": "unsigned int", - "id": 5, - "offset": 144, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1265133262 - }, - "m_soundOnActivate": { - "type": "std::string", - "id": 6, - "offset": 152, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1956929714 - }, - "m_soundOnTarget": { - "type": "std::string", - "id": 7, - "offset": 184, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3444214056 - }, - "m_targetParticleEffect": { - "type": "std::string", - "id": 8, - "offset": 216, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3048234723 - }, - "m_overheadMessage": { - "type": "std::string", - "id": 9, - "offset": 248, - "flags": 8388639, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1701018190 - }, - "m_requirements": { - "type": "class RequirementList", - "id": 10, - "offset": 280, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2840988582 - }, - "m_mods": { - "type": "class PetStatModificationSet", - "id": 11, - "offset": 376, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 686212266 - } - } - }, - "200575140": { - "name": "class WinAnimScaleSpeed*", - "bases": [ - "WinAnimScale", - "WindowAnimation", - "PropertyClass" - ], - "hash": 200575140, - "properties": { - "m_bUseDeepCopy": { - "type": "bool", - "id": 0, - "offset": 72, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 433380635 - }, - "m_scale": { - "type": "float", - "id": 1, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 899693439 - }, - "m_fSpeed": { - "type": "float", - "id": 2, - "offset": 96, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 503609006 - } - } - }, - "984356059": { - "name": "class GeomParams", - "bases": [ - "PropertyClass" - ], - "hash": 984356059, - "properties": { - "m_eType": { - "type": "enum ProxyType", - "id": 0, - "offset": 72, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1656534066, - "enum_options": { - "ProxyTypeBox": 0, - "ProxyTypeRay": 1, - "ProxyTypeSphere": 2, - "ProxyTypeCylinder": 3, - "ProxyTypeTube": 4, - "ProxyTypePlane": 5, - "ProxyTypeMesh": 6, - "ProxyTypeInvalid": 7 - } - } - } - }, - "1365864892": { - "name": "class MountDyeToTexture*", - "bases": [ - "PropertyClass" - ], - "hash": 1365864892, - "properties": { - "m_dye": { - "type": "int", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 267033084 - }, - "m_texture": { - "type": "int", - "id": 1, - "offset": 76, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 222406987 - } - } - }, - "200235874": { - "name": "class PromoPromotionList", - "bases": [ - "PropertyClass" - ], - "hash": 200235874, - "properties": { - "m_promoPromotions": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2231640821 - } - } - }, - "199659650": { - "name": "class ClientJewelSocketBehavior*", - "bases": [ - "JewelSocketBehaviorBase", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 199659650, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_publicJewelInfo": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2051956582 - } - } - }, - "984388735": { - "name": "class HatchmakingCrownsPetList", - "bases": [ - "PropertyClass" - ], - "hash": 984388735, - "properties": { - "m_petTemplateList": { - "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 567776494 - } - } - }, - "1366245278": { - "name": "class WindowAnimation", - "bases": [ - "PropertyClass" - ], - "hash": 1366245278, - "properties": { - "m_bUseDeepCopy": { - "type": "bool", - "id": 0, - "offset": 72, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 433380635 - } - } - }, - "1366240158": { - "name": "class WindowAnimation*", - "bases": [ - "PropertyClass" - ], - "hash": 1366240158, - "properties": { - "m_bUseDeepCopy": { - "type": "bool", - "id": 0, - "offset": 72, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 433380635 - } - } - }, - "991279519": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 991279519, - "properties": { - "m_templateID": { - "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1286746870 - }, - "m_enchantment": { - "type": "unsigned int", - "id": 1, - "offset": 76, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2217886818 - }, - "m_quantity": { - "type": "unsigned int", - "id": 2, - "offset": 80, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 380617740 - } - } - }, - "200792972": { - "name": "class ClientCinematicActor*", - "bases": [ - "CinematicActor", - "PropertyClass" - ], - "hash": 200792972, - "properties": {} - }, - "987802706": { - "name": "class ActorDeathCinematicAction", - "bases": [ - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 987802706, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - } - } - }, - "985603441": { - "name": "class SharedPointer", - "bases": [ - "SpellCardAttachmentCinematicAction", - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 985603441, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - }, - "m_nodeName": { - "type": "std::string", - "id": 2, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3607089954 - }, - "m_offset": { - "type": "class Vector3D", - "id": 3, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2445636425 - }, - "m_rotation": { - "type": "class Vector3D", - "id": 4, - "offset": 164, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3065089042 - } - } - }, - "1366824841": { - "name": "class std::list >", - "bases": [], - "hash": 1366824841, - "properties": {} - }, - "985460862": { - "name": "class PermanentShop", - "bases": [ - "Window", - "PropertyClass" - ], - "hash": 985460862, - "properties": { - "m_sName": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306437263 - }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621225959 - }, - "m_Style": { - "type": "unsigned int", - "id": 2, - "offset": 152, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "SCALE_CHILDREN": 2, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "FOCUS_LOCKED": 64, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152 - } - }, - "m_Flags": { - "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } - }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3105139380 - }, - "m_fTargetAlpha": { - "type": "float", - "id": 5, - "offset": 212, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1809129834 - }, - "m_fDisabledAlpha": { - "type": "float", - "id": 6, - "offset": 216, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1389987675 - }, - "m_fAlpha": { - "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 482130755 - }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3623628394 - }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2102211316 - }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1846695875 - }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3389835433 - }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2547159940 - }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2587533771 - }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3091503757 - }, - "m_currentTab": { - "type": "int", - "id": 16, - "offset": 944, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1795186676 - }, - "m_totalCrowns": { - "type": "int", - "id": 17, - "offset": 768, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2094555642 - }, - "m_pInventory": { - "type": "class SharedPointer", - "id": 18, - "offset": 1448, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2295349946 - }, - "m_pEquipment": { - "type": "class SharedPointer", - "id": 19, - "offset": 1464, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3072576019 - }, - "m_buyBtnDisableReason": { - "type": "std::string", - "id": 20, - "offset": 1416, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2225989675 - } - } - }, - "201573366": { - "name": "class WizItemPlantList*", - "bases": [ - "WizItemLocations", - "PropertyClass" - ], - "hash": 201573366, - "properties": { - "m_itemType": { - "type": "enum WizItemLocations::eItemType", - "id": 0, - "offset": 72, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3482173907, - "enum_options": { - "shop": 0, - "quest": 1, - "boss": 2, - "gardening": 3, - "goldChest": 4 - } - }, - "m_plants": { - "type": "unsigned int", - "id": 1, - "offset": 80, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1045283519 - } - } - }, - "985460859": { - "name": "class PermanentShop*", - "bases": [ - "Window", - "PropertyClass" - ], - "hash": 985460859, - "properties": { - "m_sName": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306437263 - }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621225959 - }, - "m_Style": { - "type": "unsigned int", - "id": 2, - "offset": 152, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "SCALE_CHILDREN": 2, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "FOCUS_LOCKED": 64, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152 - } - }, - "m_Flags": { - "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } - }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3105139380 - }, - "m_fTargetAlpha": { - "type": "float", - "id": 5, - "offset": 212, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1809129834 - }, - "m_fDisabledAlpha": { - "type": "float", - "id": 6, - "offset": 216, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1389987675 - }, - "m_fAlpha": { - "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 482130755 - }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3623628394 - }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2102211316 - }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1846695875 - }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3389835433 - }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2547159940 - }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2587533771 - }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3091503757 - }, - "m_currentTab": { - "type": "int", - "id": 16, - "offset": 944, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1795186676 - }, - "m_totalCrowns": { - "type": "int", - "id": 17, - "offset": 768, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2094555642 - }, - "m_pInventory": { - "type": "class SharedPointer", - "id": 18, - "offset": 1448, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2295349946 - }, - "m_pEquipment": { - "type": "class SharedPointer", - "id": 19, - "offset": 1464, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3072576019 - }, - "m_buyBtnDisableReason": { - "type": "std::string", - "id": 20, - "offset": 1416, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2225989675 - } - } - }, - "201320466": { - "name": "class ClientTagList*", - "bases": [ - "PropertyClass" - ], - "hash": 201320466, - "properties": { - "m_clientTags": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2319030025 - } - } - }, - "1368264426": { - "name": "class BasicChatChannelInvite", - "bases": [ - "PropertyClass" - ], - "hash": 1368264426, - "properties": {} - }, - "201270490": { - "name": "class ObstacleCoursePendulumBehaviorClient*", - "bases": [ - "ObstacleCoursePendulumBehavior", - "ObstacleCourseObstacleBehavior", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 201270490, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - } - } - }, - "1367643865": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1367643865, - "properties": { - "m_ignoreDataList": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2636534189 - } - } - }, - "985487403": { - "name": "class ComplexRotationInfo*", - "bases": [ - "PropertyClass" - ], - "hash": 985487403, - "properties": { - "m_startWeight": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 834528109 - }, - "m_middleWeight": { - "type": "float", - "id": 1, - "offset": 76, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1016481710 - }, - "m_endWeight": { - "type": "float", - "id": 2, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 379723894 - }, - "m_desiredSpeed": { - "type": "float", - "id": 3, - "offset": 84, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 406717000 - }, - "m_durationSeconds": { - "type": "float", - "id": 4, - "offset": 88, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1349797100 - } - } - }, - "201409526": { - "name": "class WizItemPlantList", - "bases": [ - "WizItemLocations", - "PropertyClass" - ], - "hash": 201409526, - "properties": { - "m_itemType": { - "type": "enum WizItemLocations::eItemType", - "id": 0, - "offset": 72, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3482173907, - "enum_options": { - "shop": 0, - "quest": 1, - "boss": 2, - "gardening": 3, - "goldChest": 4 - } - }, - "m_plants": { - "type": "unsigned int", - "id": 1, - "offset": 80, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1045283519 - } - } - }, - "1368305386": { - "name": "class BasicChatChannelInvite*", - "bases": [ - "PropertyClass" - ], - "hash": 1368305386, - "properties": {} - }, - "201320469": { - "name": "class ClientTagList", - "bases": [ - "PropertyClass" - ], - "hash": 201320469, - "properties": { - "m_clientTags": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2319030025 - } - } - }, - "987169196": { - "name": "class SharedPointer", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 987169196, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - } - } - }, - "1371853249": { - "name": "class SharedPointer", - "bases": [ - "ServiceOptionBase", - "PropertyClass" - ], - "hash": 1371853249, - "properties": { - "m_serviceName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2206028813 - }, - "m_iconKey": { - "type": "std::string", - "id": 1, - "offset": 168, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2457138637 - }, - "m_displayKey": { - "type": "std::string", - "id": 2, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3023276954 - }, - "m_serviceIndex": { - "type": "unsigned int", - "id": 3, - "offset": 204, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2103126710 - }, - "m_forceInteract": { - "type": "bool", - "id": 4, - "offset": 200, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1705789564 - } - } - }, - "988432547": { - "name": "class AreaBehavior*", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 988432547, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_radius": { - "type": "float", - "id": 1, - "offset": 116, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 989410271 - }, - "m_category": { - "type": "enum AudioCategory", - "id": 2, - "offset": 124, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2951251982, - "enum_options": { - "AudioCategory_Irrelevent": 0, - "AudioCategory_Accoustic": 1, - "AudioCategory_Noise": 2, - "AudioCategory_Music": 3 - } - }, - "m_exclusive": { - "type": "bool", - "id": 3, - "offset": 128, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 824383403 - } - } - }, - "1370470054": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1370470054, - "properties": { - "m_oldAnim": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1953606335 - }, - "m_newAnim": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2558206762 - } - } - }, - "202303865": { - "name": "class ItemLocatorList*", - "bases": [ - "PropertyClass" - ], - "hash": 202303865, - "properties": { - "m_locations": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2663343121 - }, - "m_bIsMinigameLoot": { - "type": "bool", - "id": 1, - "offset": 88, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1122496566 - }, - "m_bIsFishingLoot": { - "type": "bool", - "id": 2, - "offset": 89, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1595567415 - }, - "m_bIsMonstrologyHouseGuest": { - "type": "bool", - "id": 3, - "offset": 90, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1974190378 - }, - "m_sUrl": { - "type": "std::string", - "id": 4, - "offset": 96, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1717526561 - } - } - }, - "988181265": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 988181265, - "properties": { - "m_templateID": { - "type": "int", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1075344419 - }, - "m_name": { - "type": "std::wstring", - "id": 1, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513345113 - }, - "m_shouldRename": { - "type": "bool", - "id": 2, - "offset": 128, - "flags": 24, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1741266202 - }, - "m_globalID": { - "type": "gid", - "id": 3, - "offset": 120, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 981205014 - }, - "m_userID": { - "type": "gid", - "id": 4, - "offset": 112, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1037989700 - }, - "m_quarantined": { - "type": "bool", - "id": 5, - "offset": 129, - "flags": 24, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 637025007 - } - } - }, - "1368565995": { - "name": "class PathActionEmote*", - "bases": [ - "PathBehaviorTemplate::Action", - "PropertyClass" - ], - "hash": 1368565995, - "properties": { - "m_nPathID": { - "type": "gid", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 214382368 - }, - "m_nNodeID": { - "type": "int", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 152152635, - "enum_options": { - "__DEFAULT": 4294967295 - } - }, - "m_nPriority": { - "type": "int", - "id": 2, - "offset": 84, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1515251530, - "enum_options": { - "__DEFAULT": 100 - } - }, - "m_nChance": { - "type": "int", - "id": 3, - "offset": 88, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1860748394, - "enum_options": { - "__DEFAULT": 50 - } - }, - "m_sEmoteName": { - "type": "std::string", - "id": 4, - "offset": 96, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3416743849 - }, - "m_fMinTime": { - "type": "float", - "id": 5, - "offset": 128, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1948284304 - }, - "m_fMaxTime": { - "type": "float", - "id": 6, - "offset": 132, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1647060370 - } - } - }, - "202004298": { - "name": "class CSRAccessPassList*", - "bases": [ - "PropertyClass" - ], - "hash": 202004298, - "properties": { - "m_passList": { - "type": "class CSRAccessPassInfo", - "id": 0, - "offset": 72, - "flags": 23, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 3089809672 - } - } - }, - "1368511284": { - "name": "class WizDisableItemStatEffectTemplate*", - "bases": [ - "StatisticEffectTemplate", - "GameEffectTemplate", - "PropertyClass" - ], - "hash": 1368511284, - "properties": { - "m_effectName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2029161513 - }, - "m_effectCategory": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1852673222 - }, - "m_sortOrder": { - "type": "int", - "id": 2, - "offset": 148, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1411218206 - }, - "m_duration": { - "type": "double", - "id": 3, - "offset": 192, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2727932435 - }, - "m_stackingCategories": { - "type": "std::string", - "id": 4, - "offset": 160, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1774497525 - }, - "m_isPersistent": { - "type": "bool", - "id": 5, - "offset": 153, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 923861920 - }, - "m_bIsOnPet": { - "type": "bool", - "id": 6, - "offset": 154, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 522593303 - }, - "m_isPublic": { - "type": "bool", - "id": 7, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1728439822 - }, - "m_visualEffectAddName": { - "type": "std::string", - "id": 8, - "offset": 200, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3382086694 - }, - "m_visualEffectRemoveName": { - "type": "std::string", - "id": 9, - "offset": 232, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1541697323 - }, - "m_onAddFunctorName": { - "type": "std::string", - "id": 10, - "offset": 280, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1561843107 - }, - "m_onRemoveFunctorName": { - "type": "std::string", - "id": 11, - "offset": 312, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2559017864 - }, - "m_stackingRule": { - "type": "enum STACKING_RULE", - "id": 12, - "offset": 144, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 431568889, - "enum_options": { - "STACKING_ALLOWED": 0, - "STACKING_NOSTACK": 1, - "STACKING_REPLACE": 2 - } - }, - "m_itemSlots": { - "type": "std::string", - "id": 13, - "offset": 360, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 3305858271 - } - } - }, - "201578593": { - "name": "class SpawnObject", - "bases": [ - "PropertyClass" - ], - "hash": 201578593, - "properties": { - "m_name": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1717359772 - }, - "m_id": { - "type": "gid", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2090569797 - }, - "m_active": { - "type": "bool", - "id": 2, - "offset": 112, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 239335471 - }, - "m_popSensitive": { - "type": "bool", - "id": 3, - "offset": 113, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1597743708 - }, - "m_maxNumberOfSpawns": { - "type": "unsigned int", - "id": 4, - "offset": 116, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 641389965 - }, - "m_atLeastOneSpawn": { - "type": "bool", - "id": 5, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 739650380 - }, - "m_activateAtMax": { - "type": "bool", - "id": 6, - "offset": 121, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 992369727 - }, - "m_spawnTime": { - "type": "int", - "id": 7, - "offset": 124, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 752966546 - }, - "m_respawnRate": { - "type": "unsigned int", - "id": 8, - "offset": 128, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1675694521 - }, - "m_spawnList": { - "type": "class SpawnItem*", - "id": 9, - "offset": 160, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2620469846 - }, - "m_globalDynamicReqs": { - "type": "class RequirementList*", - "id": 10, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3534313715 - }, - "m_globalDynamic": { - "type": "bool", - "id": 11, - "offset": 144, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1951691017 - }, - "m_waitForTimer": { - "type": "bool", - "id": 12, - "offset": 122, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2143039664 - }, - "m_zoneLevelMin": { - "type": "unsigned int", - "id": 13, - "offset": 132, - "flags": 263, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1028934149 - }, - "m_zoneLevelMax": { - "type": "unsigned int", - "id": 14, - "offset": 136, - "flags": 263, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1028933895 - }, - "m_zoneLevelUp": { - "type": "unsigned int", - "id": 15, - "offset": 140, - "flags": 263, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1342541638 - } - } - }, - "988276124": { - "name": "class AttenuatedFileList", - "bases": [ - "PropertyClass" - ], - "hash": 988276124, - "properties": { - "m_attenuatedFileDescriptionList": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 395748088 - } - } - }, - "1368571115": { - "name": "class PathActionEmote", - "bases": [ - "PathBehaviorTemplate::Action", - "PropertyClass" - ], - "hash": 1368571115, - "properties": { - "m_nPathID": { - "type": "gid", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 214382368 - }, - "m_nNodeID": { - "type": "int", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 152152635, - "enum_options": { - "__DEFAULT": 4294967295 - } - }, - "m_nPriority": { - "type": "int", - "id": 2, - "offset": 84, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1515251530, - "enum_options": { - "__DEFAULT": 100 - } - }, - "m_nChance": { - "type": "int", - "id": 3, - "offset": 88, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1860748394, - "enum_options": { - "__DEFAULT": 50 - } - }, - "m_sEmoteName": { - "type": "std::string", - "id": 4, - "offset": 96, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3416743849 - }, - "m_fMinTime": { - "type": "float", - "id": 5, - "offset": 128, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1948284304 - }, - "m_fMaxTime": { - "type": "float", - "id": 6, - "offset": 132, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1647060370 - } - } - }, - "202147871": { - "name": "class SharedPointer", - "bases": [ - "ReqNumeric", - "Requirement", - "PropertyClass" - ], - "hash": 202147871, - "properties": { - "m_applyNOT": { - "type": "bool", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1746328074, - "enum_options": { - "__DEFAULT": 0 - } - }, - "m_operator": { - "type": "enum Requirement::Operator", - "id": 1, - "offset": 76, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2672792317, - "enum_options": { - "ROP_AND": 0, - "ROP_OR": 1, - "__DEFAULT": "ROP_AND" - } - }, - "m_numericValue": { - "type": "float", - "id": 2, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 521915239 - }, - "m_operatorType": { - "type": "enum ReqNumeric::OPERATOR_TYPE", - "id": 3, - "offset": 84, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2228122961, - "enum_options": { - "OPERATOR_UNKNOWN": 4294967295, - "OPERATOR_EQUALS": 0, - "OPERATOR_GREATER_THAN": 1, - "OPERATOR_LESS_THAN": 2, - "OPERATOR_GREATER_THAN_EQ": 3, - "OPERATOR_LESS_THAN_EQ": 4 - } - }, - "m_magicSchool": { - "type": "std::string", - "id": 4, - "offset": 88, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1597012900 - } - } - }, - "989603832": { - "name": "enum MountRecord::VolumeTypes", - "bases": [], - "hash": 989603832, - "properties": {} - }, - "202096137": { - "name": "class SharedPointer", - "bases": [ - "BGPlayerBehavior", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 202096137, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - } - } - }, - "988470090": { - "name": "class MoveBehavior*", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 988470090, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_nFlags": { - "type": "unsigned int", - "id": 1, - "offset": 112, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 922328456 - }, - "m_nMoveState": { - "type": "enum MoveState", - "id": 2, - "offset": 116, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1430960270, - "enum_options": { - "MS_WALKING": 0, - "MS_RUNNING": 1, - "MS_SWIMMING": 2, - "MS_FLYING": 3, - "MS_JUMPING": 4, - "MS_FALLING": 5 - } - } - } - }, - "1370887798": { - "name": "class SharedPointer", - "bases": [ - "CombatSigilTemplate", - "SigilTemplate", - "CoreTemplate", - "PropertyClass" - ], - "hash": 1370887798, - "properties": { - "m_behaviors": { - "type": "class BehaviorTemplate*", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1197808594 - }, - "m_sigilName": { - "type": "std::string", - "id": 1, - "offset": 96, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3177657588 - }, - "m_sigilType": { - "type": "std::string", - "id": 2, - "offset": 136, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3177899445 - }, - "m_entryResults": { - "type": "class ResultList*", - "id": 3, - "offset": 184, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3262956108 - }, - "m_requirements": { - "type": "class RequirementList*", - "id": 4, - "offset": 176, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2840985510 - }, - "m_cancelResults": { - "type": "class ResultList*", - "id": 5, - "offset": 192, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3799257120 - }, - "m_completeResults": { - "type": "class ResultList*", - "id": 6, - "offset": 200, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1964258099 - }, - "m_useState": { - "type": "bool", - "id": 7, - "offset": 216, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 683320865 - }, - "m_stateOverride": { - "type": "std::string", - "id": 8, - "offset": 224, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1949715548 - }, - "m_subCircles": { - "type": "class SigilSubCircle*", - "id": 9, - "offset": 256, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2227135493 - }, - "m_engageRadius": { - "type": "float", - "id": 10, - "offset": 304, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1429683718 - }, - "m_battlefieldEffects": { - "type": "class SharedPointer", - "id": 11, - "offset": 312, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1245973515 - }, - "m_playerVictoryCinematic": { - "type": "std::string", - "id": 12, - "offset": 336, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2684536069 - }, - "m_combatMusic": { - "type": "std::string", - "id": 13, - "offset": 368, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3636593682 - }, - "m_prePlanningCinematicOverride": { - "type": "std::string", - "id": 14, - "offset": 400, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2585096390 - }, - "m_planningCinematicOverride": { - "type": "std::string", - "id": 15, - "offset": 432, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3592819999 - }, - "m_shadowThresholdType": { - "type": "enum kShadow_Threshold_Type", - "id": 16, - "offset": 464, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2847763136, - "enum_options": { - "SHADOW_THRESHOLD_MIN": 0, - "SHADOW_THRESHOLD_AVG": 1, - "SHADOW_THRESHOLD_MAX": 2 - } - }, - "m_shadowThresholdFactor": { - "type": "float", - "id": 17, - "offset": 468, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2104355177 - }, - "m_shadowPipRatingFactor": { - "type": "float", - "id": 18, - "offset": 472, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1061434314 - }, - "m_scalarDamagePvP": { - "type": "float", - "id": 19, - "offset": 476, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2195445026 - }, - "m_scalarResistPvP": { - "type": "float", - "id": 20, - "offset": 480, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1947822077 - }, - "m_scalarPiercePvP": { - "type": "float", - "id": 21, - "offset": 484, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 441266907 - }, - "m_scalarDamagePvE": { - "type": "float", - "id": 22, - "offset": 488, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2195445015 - }, - "m_scalarResistPvE": { - "type": "float", - "id": 23, - "offset": 492, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1947822066 - }, - "m_scalarPiercePvE": { - "type": "float", - "id": 24, - "offset": 496, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 441266896 - }, - "m_damageLimitPvP": { - "type": "float", - "id": 25, - "offset": 500, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1990135243 - }, - "m_dK0PvP": { - "type": "float", - "id": 26, - "offset": 504, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 413528556 - }, - "m_dN0PvP": { - "type": "float", - "id": 27, - "offset": 508, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 417086319 - }, - "m_resistLimitPvP": { - "type": "float", - "id": 28, - "offset": 512, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1174512006 - }, - "m_rK0PvP": { - "type": "float", - "id": 29, - "offset": 516, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 961424058 - }, - "m_rN0PvP": { - "type": "float", - "id": 30, - "offset": 520, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 964981821 - }, - "m_damageLimitPvE": { - "type": "float", - "id": 31, - "offset": 524, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1990135232 - }, - "m_dK0PvE": { - "type": "float", - "id": 32, - "offset": 528, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 413528545 - }, - "m_dN0PvE": { - "type": "float", - "id": 33, - "offset": 532, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 417086308 - }, - "m_resistLimitPvE": { - "type": "float", - "id": 34, - "offset": 536, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1174511995 - }, - "m_rK0PvE": { - "type": "float", - "id": 35, - "offset": 540, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 961424047 - }, - "m_rN0PvE": { - "type": "float", - "id": 36, - "offset": 544, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 964981810 - } - } - }, - "988744390": { - "name": "class SharedPointer", - "bases": [ - "WizClientObjectItem", - "ClientObject", - "CoreObject", - "PropertyClass" - ], - "hash": 988744390, - "properties": { - "m_inactiveBehaviors": { - "type": "class SharedPointer", - "id": 0, - "offset": 224, - "flags": 31, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1850812559 - }, - "m_globalID.m_full": { - "type": "unsigned __int64", - "id": 1, - "offset": 72, - "flags": 16777247, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2312465444 - }, - "m_permID": { - "type": "unsigned __int64", - "id": 2, - "offset": 80, - "flags": 16777247, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1298909658 - }, - "m_location": { - "type": "class Vector3D", - "id": 3, - "offset": 168, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2239683611 - }, - "m_orientation": { - "type": "class Vector3D", - "id": 4, - "offset": 180, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2344058766 - }, - "m_fScale": { - "type": "float", - "id": 5, - "offset": 196, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 503137701 - }, - "m_templateID.m_full": { - "type": "unsigned __int64", - "id": 6, - "offset": 96, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 633907631 - }, - "m_debugName": { - "type": "std::string", - "id": 7, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3553984419 - }, - "m_displayKey": { - "type": "std::string", - "id": 8, - "offset": 136, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3023276954 - }, - "m_zoneTagID": { - "type": "unsigned int", - "id": 9, - "offset": 344, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 965291410 - }, - "m_speedMultiplier": { - "type": "short", - "id": 10, - "offset": 192, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 123130076 - }, - "m_nMobileID": { - "type": "unsigned short", - "id": 11, - "offset": 194, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1054318939 - }, - "m_characterId": { - "type": "gid", - "id": 12, - "offset": 440, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 210498418 - }, - "m_primaryColor": { - "type": "int", - "id": 13, - "offset": 560, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 900965981 - }, - "m_pattern": { - "type": "int", - "id": 14, - "offset": 564, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1337683384 - }, - "m_secondaryColor": { - "type": "int", - "id": 15, - "offset": 568, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1616550081 - }, - "m_displayID": { - "type": "gid", - "id": 16, - "offset": 576, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1022427803 - }, - "m_itemFlags": { - "type": "unsigned int", - "id": 17, - "offset": 584, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2004128457 - }, - "m_quantity": { - "type": "int", - "id": 18, - "offset": 600, - "flags": 27, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 169215289 - } - } - }, - "1370520859": { - "name": "class SharedPointer", - "bases": [ - "DynaMod", - "PropertyClass" - ], - "hash": 1370520859, - "properties": { - "m_clientTag": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3409856790 - }, - "m_zoneName": { - "type": "std::string", - "id": 1, - "offset": 112, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2171167736 - }, - "m_zoneInstance": { - "type": "gid", - "id": 2, - "offset": 152, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 449538121 - }, - "m_originator": { - "type": "gid", - "id": 3, - "offset": 72, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 709051254 - }, - "m_index": { - "type": "int", - "id": 4, - "offset": 160, - "flags": 30, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 798031442 - }, - "m_zoneID": { - "type": "unsigned int", - "id": 5, - "offset": 144, - "flags": 16, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1440651126 - } - } - }, - "202181984": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 202181984, - "properties": { - "m_tierOneSpell": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1522049297 - }, - "m_adjectiveList": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 3195213318 - }, - "m_returnRate": { - "type": "unsigned int", - "id": 2, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1243911353 - }, - "m_unhideReqs": { - "type": "class RequirementList*", - "id": 3, - "offset": 128, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1858952922 - }, - "m_shardType": { - "type": "gid", - "id": 4, - "offset": 136, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1047787692 - }, - "m_overrideStringNotEnoughShards": { - "type": "std::string", - "id": 5, - "offset": 144, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2854831694 - }, - "m_crownsResetSubscribers": { - "type": "unsigned int", - "id": 6, - "offset": 176, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1405160851 - }, - "m_goldResetSubscribers": { - "type": "unsigned int", - "id": 7, - "offset": 180, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2047077437 - }, - "m_crownsResetNonSubscribers": { - "type": "unsigned int", - "id": 8, - "offset": 184, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2241447230 - }, - "m_goldResetNonSubscribers": { - "type": "unsigned int", - "id": 9, - "offset": 188, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 380967848 - } - } - }, - "1370845633": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1370845633, - "properties": { - "m_focusOptions": { - "type": "class SchoolOfFocusOption*", - "id": 0, - "offset": 72, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1945607055 - }, - "m_titleOptions": { - "type": "class TitleOption*", - "id": 1, - "offset": 88, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 755264106 - }, - "m_currentSchoolID": { - "type": "unsigned int", - "id": 2, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1800324389 - }, - "m_currentTitleKey": { - "type": "std::string", - "id": 3, - "offset": 112, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2379937417 - } - } - }, - "989912959": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 989912959, - "properties": { - "m_registryEntryName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1765562503 - }, - "m_value": { - "type": "int", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 812990455 - }, - "m_questRegistry": { - "type": "bool", - "id": 2, - "offset": 108, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1043261502 - }, - "m_questName": { - "type": "std::string", - "id": 3, - "offset": 112, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1702112846 - } - } - }, - "202432097": { - "name": "class StatePositionalSoundBehavior*", - "bases": [ - "PositionalSoundBehavior", - "SoundBehavior", - "AreaBehavior", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 202432097, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_radius": { - "type": "float", - "id": 1, - "offset": 116, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 989410271 - }, - "m_category": { - "type": "enum AudioCategory", - "id": 2, - "offset": 124, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2951251982, - "enum_options": { - "AudioCategory_Irrelevent": 0, - "AudioCategory_Accoustic": 1, - "AudioCategory_Noise": 2, - "AudioCategory_Music": 3 - } - }, - "m_exclusive": { - "type": "bool", - "id": 3, - "offset": 128, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 824383403 - }, - "m_playList": { - "type": "class PlayList", - "id": 4, - "offset": 176, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2061221957 - }, - "m_volume": { - "type": "float", - "id": 5, - "offset": 304, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1162855023 - }, - "m_loopCount": { - "type": "int", - "id": 6, - "offset": 308, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 865634717 - }, - "m_minimumFalloff": { - "type": "float", - "id": 7, - "offset": 328, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 355697197 - }, - "m_maximumFalloff": { - "type": "float", - "id": 8, - "offset": 332, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2210192367 - }, - "m_animDriven": { - "type": "bool", - "id": 9, - "offset": 392, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 398394720 - }, - "m_inverted": { - "type": "bool", - "id": 10, - "offset": 397, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1034821044 - } - } - }, - "202308985": { - "name": "class ItemLocatorList", - "bases": [ - "PropertyClass" - ], - "hash": 202308985, - "properties": { - "m_locations": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2663343121 - }, - "m_bIsMinigameLoot": { - "type": "bool", - "id": 1, - "offset": 88, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1122496566 - }, - "m_bIsFishingLoot": { - "type": "bool", - "id": 2, - "offset": 89, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1595567415 - }, - "m_bIsMonstrologyHouseGuest": { - "type": "bool", - "id": 3, - "offset": 90, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1974190378 - }, - "m_sUrl": { - "type": "std::string", - "id": 4, - "offset": 96, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1717526561 - } - } - }, - "1370975780": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1370975780, - "properties": { - "Name": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3587174096 - }, - "Value": { - "type": "std::wstring", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1533522313 - }, - "Nodes": { - "type": "class SharedPointer", - "id": 2, - "offset": 136, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1601731202 - } - } - }, - "991531582": { - "name": "class AnimationSoundData*", - "bases": [ - "PropertyClass" - ], - "hash": 991531582, - "properties": { - "m_animationName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3393414044 - }, - "m_soundFileName": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3058120805 - }, - "m_introSoundFileName": { - "type": "std::string", - "id": 2, - "offset": 136, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2449081745 - }, - "m_endSoundFileName": { - "type": "std::string", - "id": 3, - "offset": 168, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2326794300 - }, - "m_loop": { - "type": "bool", - "id": 4, - "offset": 200, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 222084781 - }, - "m_innerRadius": { - "type": "float", - "id": 5, - "offset": 204, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 686816091 - }, - "m_outerRadius": { - "type": "float", - "id": 6, - "offset": 208, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 542169294 - }, - "m_volume": { - "type": "float", - "id": 7, - "offset": 212, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1162855023 - }, - "m_introFadeInTime": { - "type": "float", - "id": 8, - "offset": 216, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 677198649 - }, - "m_introFadeOutTime": { - "type": "float", - "id": 9, - "offset": 220, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1748430618 - }, - "m_endFadeInTime": { - "type": "float", - "id": 10, - "offset": 224, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 717770180 - }, - "m_endFadeOutTime": { - "type": "float", - "id": 11, - "offset": 228, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 939807493 - } - } - }, - "991340342": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 991340342, - "properties": { - "m_list": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 908909694 - } - } - }, - "202629338": { - "name": "class SharedPointer", - "bases": [ - "Requirement", - "PropertyClass" - ], - "hash": 202629338, - "properties": { - "m_applyNOT": { - "type": "bool", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1746328074, - "enum_options": { - "__DEFAULT": 0 - } - }, - "m_operator": { - "type": "enum Requirement::Operator", - "id": 1, - "offset": 76, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2672792317, - "enum_options": { - "ROP_AND": 0, - "ROP_OR": 1, - "__DEFAULT": "ROP_AND" - } - } - } - }, - "1373471513": { - "name": "class Result", - "bases": [ - "PropertyClass" - ], - "hash": 1373471513, - "properties": {} - }, - "202438241": { - "name": "class StatePositionalSoundBehavior", - "bases": [ - "PositionalSoundBehavior", - "SoundBehavior", - "AreaBehavior", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 202438241, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_radius": { - "type": "float", - "id": 1, - "offset": 116, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 989410271 - }, - "m_category": { - "type": "enum AudioCategory", - "id": 2, - "offset": 124, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2951251982, - "enum_options": { - "AudioCategory_Irrelevent": 0, - "AudioCategory_Accoustic": 1, - "AudioCategory_Noise": 2, - "AudioCategory_Music": 3 - } - }, - "m_exclusive": { - "type": "bool", - "id": 3, - "offset": 128, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 824383403 - }, - "m_playList": { - "type": "class PlayList", - "id": 4, - "offset": 176, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2061221957 - }, - "m_volume": { - "type": "float", - "id": 5, - "offset": 304, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1162855023 - }, - "m_loopCount": { - "type": "int", - "id": 6, - "offset": 308, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 865634717 - }, - "m_minimumFalloff": { - "type": "float", - "id": 7, - "offset": 328, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 355697197 - }, - "m_maximumFalloff": { - "type": "float", - "id": 8, - "offset": 332, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2210192367 - }, - "m_animDriven": { - "type": "bool", - "id": 9, - "offset": 392, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 398394720 - }, - "m_inverted": { - "type": "bool", - "id": 10, - "offset": 397, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1034821044 - } - } - }, - "1372363388": { - "name": "class ClientCantripsMajorInvisibilityEffect*", - "bases": [ - "CantripsMajorInvisibilityEffect", - "CantripsInvisibilityEffect", - "GameEffectBase", - "PropertyClass" - ], - "hash": 1372363388, - "properties": { - "m_currentTickCount": { - "type": "double", - "id": 0, - "offset": 80, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2533274692 - }, - "m_effectNameID": { - "type": "unsigned int", - "id": 1, - "offset": 96, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1204067144 - }, - "m_bIsOnPet": { - "type": "bool", - "id": 2, - "offset": 73, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 522593303 - }, - "m_originatorID": { - "type": "gid", - "id": 3, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1131810019 - }, - "m_itemSlotID": { - "type": "unsigned int", - "id": 4, - "offset": 112, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1895747595 - }, - "m_internalID": { - "type": "int", - "id": 5, - "offset": 92, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1643137924 - }, - "m_endTime": { - "type": "unsigned int", - "id": 6, - "offset": 88, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 716479635 - } - } - }, - "991922385": { - "name": "class WizItemTemplate", - "bases": [ - "ItemTemplate", - "GameObjectTemplate", - "CoreTemplate", - "PropertyClass" - ], - "hash": 991922385, - "properties": { - "m_behaviors": { - "type": "class BehaviorTemplate*", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1197808594 - }, - "m_objectName": { - "type": "std::string", - "id": 1, - "offset": 96, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2154940147 - }, - "m_templateID": { - "type": "unsigned int", - "id": 2, - "offset": 128, - "flags": 16777223, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1286746870 - }, - "m_visualID": { - "type": "unsigned int", - "id": 3, - "offset": 132, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1118778894 - }, - "m_adjectiveList": { - "type": "std::string", - "id": 4, - "offset": 248, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 3195213318 - }, - "m_exemptFromAOI": { - "type": "bool", - "id": 5, - "offset": 240, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1457879059 - }, - "m_displayName": { - "type": "std::string", - "id": 6, - "offset": 168, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2446900370 - }, - "m_description": { - "type": "std::string", - "id": 7, - "offset": 136, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1649374815 - }, - "m_nObjectType": { - "type": "enum ObjectType", - "id": 8, - "offset": 200, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2118905880, - "enum_options": { - "OT_UNDEFINED": 0, - "OT_PLAYER": 1, - "OT_NPC": 2, - "OT_PROP": 3, - "OT_OBJECT": 4, - "OT_HOUSE": 5, - "OT_KEY": 6, - "OT_OLD_KEY": 7, - "OT_DEED": 8, - "OT_MAIL": 9, - "OT_RECIPE": 17, - "OT_EQUIP_HEAD": 10, - "OT_EQUIP_CHEST": 11, - "OT_EQUIP_LEGS": 12, - "OT_EQUIP_HANDS": 13, - "OT_EQUIP_FINGER": 14, - "OT_EQUIP_FEET": 15, - "OT_EQUIP_EAR": 16, - "OT_BUILDING_BLOCK": 18, - "OT_BUILDING_BLOCK_SOLID": 19, - "OT_GOLF": 20, - "OT_DOOR": 21, - "OT_PET": 22, - "OT_FABRIC": 23, - "OT_WINDOW": 24, - "OT_ROOF": 25, - "OT_HORSE": 26, - "OT_STRUCTURE": 27, - "OT_HOUSING_TEXTURE": 28, - "OT_PLANT": 29 - } - }, - "m_sIcon": { - "type": "std::string", - "id": 9, - "offset": 208, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306259831 - }, - "m_equipRequirements": { - "type": "class RequirementList*", - "id": 10, - "offset": 280, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2762617226 - }, - "m_purchaseRequirements": { - "type": "class RequirementList*", - "id": 11, - "offset": 288, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3174641793 - }, - "m_equipEffects": { - "type": "class GameEffectInfo*", - "id": 12, - "offset": 296, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 836628351 - }, - "m_baseCost": { - "type": "float", - "id": 13, - "offset": 312, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1565352651 - }, - "m_creditsCost": { - "type": "float", - "id": 14, - "offset": 320, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 805514974 - }, - "m_avatarInfo": { - "type": "class AvatarItemInfoBase*", - "id": 15, - "offset": 328, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2627321299 - }, - "m_avatarFlags": { - "type": "std::string", - "id": 16, - "offset": 336, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2347762759 - }, - "m_itemLimit": { - "type": "int", - "id": 17, - "offset": 316, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1799746856 - }, - "m_holidayFlag": { - "type": "std::string", - "id": 18, - "offset": 352, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2994795359 - }, - "m_itemSetBonusTemplateID": { - "type": "unsigned int", - "id": 19, - "offset": 384, - "flags": 33554439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1316835672 - }, - "m_numPrimaryColors": { - "type": "int", - "id": 20, - "offset": 428, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 981103872 - }, - "m_numSecondaryColors": { - "type": "int", - "id": 21, - "offset": 432, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1310416868 - }, - "m_numPatterns": { - "type": "int", - "id": 22, - "offset": 436, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 953162171 - }, - "m_school": { - "type": "std::string", - "id": 23, - "offset": 392, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2438566051 - }, - "m_arenaPointCost": { - "type": "int", - "id": 24, - "offset": 440, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1819621796 - }, - "m_pvpCurrencyCost": { - "type": "int", - "id": 25, - "offset": 444, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 645595444 - }, - "m_pvpTourneyCurrencyCost": { - "type": "int", - "id": 26, - "offset": 448, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 517874954 - }, - "m_rank": { - "type": "int", - "id": 27, - "offset": 424, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 219803942 - }, - "m_boyIconIndex": { - "type": "int", - "id": 28, - "offset": 452, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 802140453 - }, - "m_girlIconIndex": { - "type": "int", - "id": 29, - "offset": 456, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 832706793 - }, - "m_leashOffsetOverride": { - "type": "class SharedPointer", - "id": 30, - "offset": 464, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1692586788 - }, - "m_rarity": { - "type": "enum RarityType", - "id": 31, - "offset": 460, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2253792108, - "enum_options": { - "RT_COMMON": 0, - "RT_UNCOMMON": 1, - "RT_RARE": 2, - "RT_ULTRARARE": 3, - "RT_EPIC": 4 - } - } - } - }, - "1372973245": { - "name": "class ClientDuel", - "bases": [ - "Duel", - "PropertyClass" - ], - "hash": 1372973245, - "properties": { - "m_flatParticipantList": { - "type": "class SharedPointer", - "id": 0, - "offset": 80, - "flags": 31, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 3375244498 - }, - "m_dynamicTeams": { - "type": "class SharedPointer", - "id": 1, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3227206264 - }, - "m_dynamicTurn": { - "type": "unsigned int", - "id": 2, - "offset": 120, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1168494811 - }, - "m_dynamicTurnSubcircles": { - "type": "unsigned int", - "id": 3, - "offset": 124, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 618930538 - }, - "m_dynamicTurnCounter": { - "type": "int", - "id": 4, - "offset": 128, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 543404296 - }, - "m_duelID.m_full": { - "type": "unsigned __int64", - "id": 5, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1024980477 - }, - "m_planningTimer": { - "type": "float", - "id": 6, - "offset": 144, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1142844143 - }, - "m_position": { - "type": "class Vector3D", - "id": 7, - "offset": 148, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3697900983 - }, - "m_yaw": { - "type": "float", - "id": 8, - "offset": 160, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 357256328 - }, - "m_disableTimer": { - "type": "bool", - "id": 9, - "offset": 179, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1571862248 - }, - "m_tutorialMode": { - "type": "bool", - "id": 10, - "offset": 180, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1704245836 - }, - "m_firstTeamToAct": { - "type": "int", - "id": 11, - "offset": 184, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1499447620 - }, - "m_combatResolver": { - "type": "class CombatResolver*", - "id": 12, - "offset": 136, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1627811879 - }, - "m_bPVP": { - "type": "bool", - "id": 13, - "offset": 176, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 221690795 - }, - "m_bBattleground": { - "type": "bool", - "id": 14, - "offset": 177, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1158269184 - }, - "m_bRaid": { - "type": "bool", - "id": 15, - "offset": 178, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 791201781 - }, - "m_roundNum": { - "type": "int", - "id": 16, - "offset": 192, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1461215570 - }, - "m_executionPhaseTimer": { - "type": "float", - "id": 17, - "offset": 200, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1645062877 - }, - "m_executionPhaseCombatActions": { - "type": "class CombatAction", - "id": 18, - "offset": 208, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 270648678 - }, - "m_sigilActions": { - "type": "class CombatAction", - "id": 19, - "offset": 224, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2176432675 - }, - "m_shadowPipRule": { - "type": "class SharedPointer", - "id": 20, - "offset": 280, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2692865990 - }, - "m_gameObjectAnimStateTracker": { - "type": "class GameObjectAnimStateTracker", - "id": 21, - "offset": 296, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3120084989 - }, - "m_duelPhase": { - "type": "enum kDuelPhase", - "id": 22, - "offset": 196, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1813818086, - "enum_options": { - "kPhase_Starting": 0, - "kPhase_PrePlanning": 1, - "kPhase_Planning": 2, - "kPhase_PreExecution": 3, - "kPhase_Execution": 4, - "kPhase_Resolution": 5, - "kPhase_Victory": 6, - "kPhase_Ended": 7, - "kPhase_MAX": 10 - } - }, - "m_duelModifier": { - "type": "class SharedPointer", - "id": 23, - "offset": 264, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3330438158 - }, - "m_initiativeSwitchMode": { - "type": "enum Duel::SigilInitiativeSwitchMode", - "id": 24, - "offset": 384, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1258091520, - "enum_options": { - "InitiativeSwitchMode_None": 0, - "InitiativeSwitchMode_Reroll": 1, - "InitiativeSwitchMode_Switch": 2 - } - }, - "m_initiativeSwitchRounds": { - "type": "int", - "id": 25, - "offset": 388, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 540229885 - }, - "m_combatRules": { - "type": "class SharedPointer", - "id": 26, - "offset": 464, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 3327225763 - }, - "m_gameEffectInfo": { - "type": "class SharedPointer", - "id": 27, - "offset": 496, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2275096584 - }, - "m_pStatEffects": { - "type": "class SharedPointer", - "id": 28, - "offset": 512, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1275229758 - }, - "m_alternateTurnCombatRule": { - "type": "class SharedPointer", - "id": 29, - "offset": 480, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1715882395 - }, - "m_altTurnCounter": { - "type": "int", - "id": 30, - "offset": 456, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1434810564 - }, - "m_originalFirstTeamToAct": { - "type": "int", - "id": 31, - "offset": 188, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 560350457 - }, - "m_executionOrder": { - "type": "enum kDuelExecutionOrder", - "id": 32, - "offset": 528, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3362082097, - "enum_options": { - "kDEO_Sequential": 0, - "kDEO_Alternating": 1 - } - }, - "m_noHenchmen": { - "type": "bool", - "id": 33, - "offset": 532, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1163855414 - }, - "m_SpellTruncation": { - "type": "bool", - "id": 34, - "offset": 540, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1257440762 - }, - "m_shadowThresholdFactor": { - "type": "float", - "id": 35, - "offset": 548, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2104355177 - }, - "m_shadowPipRatingFactor": { - "type": "float", - "id": 36, - "offset": 552, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1061434314 - }, - "m_defaultShadowPipRating": { - "type": "float", - "id": 37, - "offset": 556, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1544572080 - }, - "m_shadowPipThresholdTeam0": { - "type": "float", - "id": 38, - "offset": 560, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 447039594 - }, - "m_shadowPipThresholdTeam1": { - "type": "float", - "id": 39, - "offset": 564, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 447039595 - }, - "m_maxArchmasteryTeam0": { - "type": "float", - "id": 40, - "offset": 568, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 300185527 - }, - "m_maxArchmasteryTeam1": { - "type": "float", - "id": 41, - "offset": 572, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 300185528 - }, - "m_scalarDamage": { - "type": "float", - "id": 42, - "offset": 600, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1865068300 - }, - "m_scalarResist": { - "type": "float", - "id": 43, - "offset": 604, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 270448583 - }, - "m_scalarPierce": { - "type": "float", - "id": 44, - "offset": 608, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 196427621 - }, - "m_damageLimit": { - "type": "float", - "id": 45, - "offset": 612, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 271286357 - }, - "m_dK0": { - "type": "float", - "id": 46, - "offset": 616, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 357232662 - }, - "m_dN0": { - "type": "float", - "id": 47, - "offset": 620, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 357232761 - }, - "m_resistLimit": { - "type": "float", - "id": 48, - "offset": 624, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1192834544 - }, - "m_rK0": { - "type": "float", - "id": 49, - "offset": 628, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 357247908 - }, - "m_rN0": { - "type": "float", - "id": 50, - "offset": 632, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 357248007 - }, - "m_fullPartyGroup": { - "type": "bool", - "id": 51, - "offset": 636, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1888593059 - }, - "m_matchTimer": { - "type": "float", - "id": 52, - "offset": 656, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1510935909 - }, - "m_bonusTime": { - "type": "int", - "id": 53, - "offset": 660, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1757496496 - }, - "m_passPenalty": { - "type": "int", - "id": 54, - "offset": 664, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 982951662 - }, - "m_yellowTime": { - "type": "int", - "id": 55, - "offset": 668, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1017028741 - }, - "m_redTime": { - "type": "int", - "id": 56, - "offset": 672, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1909556708 - }, - "m_minTurnTime": { - "type": "int", - "id": 57, - "offset": 676, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 652524886 - }, - "m_bIsPlayerTimedDuel": { - "type": "bool", - "id": 58, - "offset": 637, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 857311611 - }, - "m_hideNoncombatantDistance": { - "type": "float", - "id": 59, - "offset": 536, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1733017888 - } - } - }, - "202764820": { - "name": "class CriticalObjectList", - "bases": [ - "PropertyClass" - ], - "hash": 202764820, - "properties": { - "m_objList": { - "type": "gid", - "id": 0, - "offset": 72, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 72042095 - } - } - }, - "995444126": { - "name": "class SoundBehavior", - "bases": [ - "AreaBehavior", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 995444126, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_radius": { - "type": "float", - "id": 1, - "offset": 116, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 989410271 - }, - "m_category": { - "type": "enum AudioCategory", - "id": 2, - "offset": 124, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2951251982, - "enum_options": { - "AudioCategory_Irrelevent": 0, - "AudioCategory_Accoustic": 1, - "AudioCategory_Noise": 2, - "AudioCategory_Music": 3 - } - }, - "m_exclusive": { - "type": "bool", - "id": 3, - "offset": 128, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 824383403 - }, - "m_playList": { - "type": "class PlayList", - "id": 4, - "offset": 176, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2061221957 - }, - "m_volume": { - "type": "float", - "id": 5, - "offset": 304, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1162855023 - }, - "m_loopCount": { - "type": "int", - "id": 6, - "offset": 308, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 865634717 - } - } - }, - "993477102": { - "name": "class ClientActorDialogCinematicAction*", - "bases": [ - "ActorDialogCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 993477102, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_dialog": { - "type": "class ActorDialog*", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1310859212 - }, - "m_activePersona": { - "type": "std::string", - "id": 2, - "offset": 88, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1972573231 - } - } - }, - "1373804370": { - "name": "class SharedPointer", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1373804370, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_tutorialTipData": { - "type": "std::string", - "id": 1, - "offset": 128, - "flags": 551, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3119782422 - } - } - }, - "207511076": { - "name": "class SharedPointer", - "bases": [ - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 207511076, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - }, - "m_nodeName": { - "type": "std::string", - "id": 2, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3607089954 - }, - "m_offset": { - "type": "class Vector3D", - "id": 3, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2445636425 - }, - "m_rotation": { - "type": "class Vector3D", - "id": 4, - "offset": 164, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3065089042 - } - } - }, - "993106589": { - "name": "class SortedCaughtFish*", - "bases": [ - "PropertyClass" - ], - "hash": 993106589, - "properties": {} - }, - "1373628605": { - "name": "class ClientDuel*", - "bases": [ - "Duel", - "PropertyClass" - ], - "hash": 1373628605, - "properties": { - "m_flatParticipantList": { - "type": "class SharedPointer", - "id": 0, - "offset": 80, - "flags": 31, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 3375244498 - }, - "m_dynamicTeams": { - "type": "class SharedPointer", - "id": 1, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3227206264 - }, - "m_dynamicTurn": { - "type": "unsigned int", - "id": 2, - "offset": 120, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1168494811 - }, - "m_dynamicTurnSubcircles": { - "type": "unsigned int", - "id": 3, - "offset": 124, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 618930538 - }, - "m_dynamicTurnCounter": { - "type": "int", - "id": 4, - "offset": 128, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 543404296 - }, - "m_duelID.m_full": { - "type": "unsigned __int64", - "id": 5, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1024980477 - }, - "m_planningTimer": { - "type": "float", - "id": 6, - "offset": 144, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1142844143 - }, - "m_position": { - "type": "class Vector3D", - "id": 7, - "offset": 148, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3697900983 - }, - "m_yaw": { - "type": "float", - "id": 8, - "offset": 160, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 357256328 - }, - "m_disableTimer": { - "type": "bool", - "id": 9, - "offset": 179, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1571862248 - }, - "m_tutorialMode": { - "type": "bool", - "id": 10, - "offset": 180, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1704245836 - }, - "m_firstTeamToAct": { - "type": "int", - "id": 11, - "offset": 184, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1499447620 - }, - "m_combatResolver": { - "type": "class CombatResolver*", - "id": 12, - "offset": 136, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1627811879 - }, - "m_bPVP": { - "type": "bool", - "id": 13, - "offset": 176, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 221690795 - }, - "m_bBattleground": { - "type": "bool", - "id": 14, - "offset": 177, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1158269184 - }, - "m_bRaid": { - "type": "bool", - "id": 15, - "offset": 178, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 791201781 - }, - "m_roundNum": { - "type": "int", - "id": 16, - "offset": 192, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1461215570 - }, - "m_executionPhaseTimer": { - "type": "float", - "id": 17, - "offset": 200, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1645062877 - }, - "m_executionPhaseCombatActions": { - "type": "class CombatAction", - "id": 18, - "offset": 208, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 270648678 - }, - "m_sigilActions": { - "type": "class CombatAction", - "id": 19, - "offset": 224, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2176432675 - }, - "m_shadowPipRule": { - "type": "class SharedPointer", - "id": 20, - "offset": 280, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2692865990 - }, - "m_gameObjectAnimStateTracker": { - "type": "class GameObjectAnimStateTracker", - "id": 21, - "offset": 296, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3120084989 - }, - "m_duelPhase": { - "type": "enum kDuelPhase", - "id": 22, - "offset": 196, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1813818086, - "enum_options": { - "kPhase_Starting": 0, - "kPhase_PrePlanning": 1, - "kPhase_Planning": 2, - "kPhase_PreExecution": 3, - "kPhase_Execution": 4, - "kPhase_Resolution": 5, - "kPhase_Victory": 6, - "kPhase_Ended": 7, - "kPhase_MAX": 10 - } - }, - "m_duelModifier": { - "type": "class SharedPointer", - "id": 23, - "offset": 264, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3330438158 - }, - "m_initiativeSwitchMode": { - "type": "enum Duel::SigilInitiativeSwitchMode", - "id": 24, - "offset": 384, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1258091520, - "enum_options": { - "InitiativeSwitchMode_None": 0, - "InitiativeSwitchMode_Reroll": 1, - "InitiativeSwitchMode_Switch": 2 - } - }, - "m_initiativeSwitchRounds": { - "type": "int", - "id": 25, - "offset": 388, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 540229885 - }, - "m_combatRules": { - "type": "class SharedPointer", - "id": 26, - "offset": 464, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 3327225763 - }, - "m_gameEffectInfo": { - "type": "class SharedPointer", - "id": 27, - "offset": 496, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2275096584 - }, - "m_pStatEffects": { - "type": "class SharedPointer", - "id": 28, - "offset": 512, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1275229758 - }, - "m_alternateTurnCombatRule": { - "type": "class SharedPointer", - "id": 29, - "offset": 480, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1715882395 - }, - "m_altTurnCounter": { - "type": "int", - "id": 30, - "offset": 456, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1434810564 - }, - "m_originalFirstTeamToAct": { - "type": "int", - "id": 31, - "offset": 188, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 560350457 - }, - "m_executionOrder": { - "type": "enum kDuelExecutionOrder", - "id": 32, - "offset": 528, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3362082097, - "enum_options": { - "kDEO_Sequential": 0, - "kDEO_Alternating": 1 - } - }, - "m_noHenchmen": { - "type": "bool", - "id": 33, - "offset": 532, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1163855414 - }, - "m_SpellTruncation": { - "type": "bool", - "id": 34, - "offset": 540, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1257440762 - }, - "m_shadowThresholdFactor": { - "type": "float", - "id": 35, - "offset": 548, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2104355177 - }, - "m_shadowPipRatingFactor": { - "type": "float", - "id": 36, - "offset": 552, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1061434314 - }, - "m_defaultShadowPipRating": { - "type": "float", - "id": 37, - "offset": 556, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1544572080 - }, - "m_shadowPipThresholdTeam0": { - "type": "float", - "id": 38, - "offset": 560, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 447039594 - }, - "m_shadowPipThresholdTeam1": { - "type": "float", - "id": 39, - "offset": 564, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 447039595 - }, - "m_maxArchmasteryTeam0": { - "type": "float", - "id": 40, - "offset": 568, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 300185527 - }, - "m_maxArchmasteryTeam1": { - "type": "float", - "id": 41, - "offset": 572, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 300185528 - }, - "m_scalarDamage": { - "type": "float", - "id": 42, - "offset": 600, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1865068300 - }, - "m_scalarResist": { - "type": "float", - "id": 43, - "offset": 604, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 270448583 - }, - "m_scalarPierce": { - "type": "float", - "id": 44, - "offset": 608, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 196427621 - }, - "m_damageLimit": { - "type": "float", - "id": 45, - "offset": 612, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 271286357 - }, - "m_dK0": { - "type": "float", - "id": 46, - "offset": 616, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 357232662 - }, - "m_dN0": { - "type": "float", - "id": 47, - "offset": 620, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 357232761 - }, - "m_resistLimit": { - "type": "float", - "id": 48, - "offset": 624, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1192834544 - }, - "m_rK0": { - "type": "float", - "id": 49, - "offset": 628, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 357247908 - }, - "m_rN0": { - "type": "float", - "id": 50, - "offset": 632, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 357248007 - }, - "m_fullPartyGroup": { - "type": "bool", - "id": 51, - "offset": 636, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1888593059 - }, - "m_matchTimer": { - "type": "float", - "id": 52, - "offset": 656, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1510935909 - }, - "m_bonusTime": { - "type": "int", - "id": 53, - "offset": 660, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1757496496 - }, - "m_passPenalty": { - "type": "int", - "id": 54, - "offset": 664, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 982951662 - }, - "m_yellowTime": { - "type": "int", - "id": 55, - "offset": 668, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1017028741 - }, - "m_redTime": { - "type": "int", - "id": 56, - "offset": 672, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1909556708 - }, - "m_minTurnTime": { - "type": "int", - "id": 57, - "offset": 676, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 652524886 - }, - "m_bIsPlayerTimedDuel": { - "type": "bool", - "id": 58, - "offset": 637, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 857311611 - }, - "m_hideNoncombatantDistance": { - "type": "float", - "id": 59, - "offset": 536, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1733017888 - } - } - }, - "205208996": { - "name": "class CastleMagicMovingObject*", - "bases": [ - "PropertyClass" - ], - "hash": 205208996, - "properties": {} - }, - "992651530": { - "name": "class std::list >", - "bases": [], - "hash": 992651530, - "properties": {} - }, - "203869730": { - "name": "class MatchResult*", - "bases": [ - "Result", - "PropertyClass" - ], - "hash": 203869730, - "properties": { - "m_requirements": { - "type": "class RequirementList*", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2840985510 - }, - "m_results": { - "type": "class ResultList*", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3776744154 - } - } - }, - "992577087": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 992577087, - "properties": { - "m_cameraName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3252786917 - }, - "m_overrideName": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1990707228 - }, - "m_fMinHeight": { - "type": "float", - "id": 2, - "offset": 136, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2189896538 - } - } - }, - "203351476": { - "name": "class WizItemQuestList*", - "bases": [ - "WizItemLocations", - "PropertyClass" - ], - "hash": 203351476, - "properties": { - "m_itemType": { - "type": "enum WizItemLocations::eItemType", - "id": 0, - "offset": 72, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3482173907, - "enum_options": { - "shop": 0, - "quest": 1, - "boss": 2, - "gardening": 3, - "goldChest": 4 - } - }, - "m_quests": { - "type": "class SharedPointer", - "id": 1, - "offset": 80, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2616788661 - } - } - }, - "992329990": { - "name": "class CombatResult", - "bases": [ - "PropertyClass" - ], - "hash": 992329990, - "properties": { - "m_resultType": { - "type": "enum CombatResult::kResultType", - "id": 0, - "offset": 72, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1482430415, - "enum_options": { - "kResult_StartSpellCast": 0, - "kResult_StartSpellNoCast": 1, - "kResult_Focus": 2, - "kResult_Discard": 3, - "kResult_Flee": 4, - "kResult_HangingEffectAdded": 5, - "kResult_ProtectedHangingEffectAdded": 6, - "kResult_RemovingHangingEffect": 7, - "kResult_HangingEffectRemovedIncoming": 8, - "kResult_HangingEffectRemovedIncomingFast": 9, - "kResult_HangingEffectRemovedIncomingDetonated": 10, - "kResult_HangingEffectRemovedOutgoing": 11, - "kResult_HangingEffectRemovedOutgoingFast": 12, - "kResult_HangingEffectProcessed": 13, - "kResult_HangingEffectRoundsModified": 14, - "kResult_Bounce": 15, - "kResult_TakeDamage": 16, - "kResult_HealDamage": 17, - "kResult_TakeDamageOverTime": 18, - "kResult_HealDamageOverTime": 19, - "kResult_StealTake": 20, - "kResult_StealGive": 21, - "kResult_AbsorbDamage": 22, - "kResult_AbsorbHeal": 110, - "kResult_Miss": 23, - "kResult_Hit": 24, - "kResult_CriticalBlocked": 25, - "kResult_CriticalHit": 26, - "kResult_GlobalEffectProcessed": 27, - "kResult_GlobalEffectAdded": 28, - "kResult_GlobalEffectRemoved": 29, - "kResult_PlayerDied": 30, - "kResult_CreatureSummoned": 31, - "kResult_TeleportPlayer": 32, - "kResult_PipsModified": 33, - "kResult_PowerPipsModified": 34, - "kResult_ShadowPipsModified": 35, - "kResult_Stunned": 36, - "kResult_Unstunned": 37, - "kResult_Polymorphed": 38, - "kResult_UnPolymorphed": 39, - "kResult_Reshuffle": 40, - "kResult_SpellDone": 41, - "kResult_ModifyHate": 42, - "kResult_MindControlled": 43, - "kResult_UnMindControlled": 44, - "kResult_MindControlImmune": 45, - "kResult_AddAura": 46, - "kResult_RemoveAura": 47, - "kResult_BuffDebuff": 48, - "kResult_Resurrected": 49, - "kResult_DamageTypeChanged": 50, - "kResult_CloakedEffectAdded": 51, - "kResult_RevealCloakedEffect": 52, - "kResult_StunResist": 53, - "kResult_StunResistFailed": 54, - "kResult_StunImmune": 55, - "kResult_ArmorPierced": 56, - "kResult_AfterlifeEffectsProcessed": 57, - "kResult_AfterlifeEffectsAdded": 58, - "kResult_AfterlifeEffectsRemoved": 59, - "kResult_EffectFailed": 60, - "kResult_StartAOE": 61, - "kResult_StopAOE": 62, - "kResult_StartAOEAct": 63, - "kResult_StopAOEAct": 64, - "kResult_CombatTriggerListAdded": 65, - "kResult_CombatTriggerListRemoved": 66, - "kResult_AddBacklashResult": 72, - "kResult_RemoveBacklashResult": 73, - "kResult_AddShadowSpellEffect": 67, - "kResult_ChangeShadowSelfEffect": 71, - "kResult_RemoveShadowSpellEffect": 68, - "kResult_ShadowSelfEffect": 69, - "kResult_UnShadowSelfEffect": 70, - "kResult_ModifyBacklash": 74, - "kResult_AddIntercept": 75, - "kResult_RemoveIntercept": 76, - "kResult_TakeInterceptDamage": 77, - "kResult_InterceptedDamage": 78, - "kResult_InterceptedDamageThisRound": 79, - "kResult_IncreaseShadowCreatureLevel": 81, - "kResult_DecreaseShadowCreatureLevel": 82, - "kResult_SetShadowCreatureLevel": 83, - "kResult_RemoveShadowCreature": 84, - "kResult_ShadowCreatureAttack": 85, - "kResult_PostActionProcess": 86, - "kResult_CreatureSpawned": 88, - "kResult_HangingEffectRemovedProtection": 90, - "kResult_planningPhasePipSync": 97, - "kResult_pipConversionRefund": 96, - "kResult_FirstPlayerSwitched": 98, - "kResult_Confused": 99, - "kResult_Unconfused": 100, - "kResult_Clued": 102, - "kResult_ClueImmune": 103, - "kResult_PetCasted": 112, - "kResult_CastSigilSpell": 113, - "kResult_AddSpellToDeck": 114, - "kResult_SetTopTeam": 115, - "kResult_SetBottomTeam": 116, - "kResult_ClearTopTeam": 117, - "kResult_ClearBottomTeam": 118, - "kResult_StartBackRowCast": 119, - "kResult_StopBackRowCast": 120, - "kResult_SchoolPipsModified": 121, - "kResult_None": 122 - } - }, - "m_participantSubCircle": { - "type": "int", - "id": 1, - "offset": 76, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1360563125 - }, - "m_effectType": { - "type": "int", - "id": 2, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 531703753 - }, - "m_effectAmount": { - "type": "int", - "id": 3, - "offset": 84, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 498226203 - }, - "m_spellTemplateID": { - "type": "unsigned int", - "id": 4, - "offset": 88, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 585567702 - }, - "m_spellBaseOverrideTemplateID": { - "type": "unsigned int", - "id": 5, - "offset": 92, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2024236913 - }, - "m_targetSubCircle": { - "type": "int", - "id": 6, - "offset": 96, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1278786653 - }, - "m_durationModifier": { - "type": "float", - "id": 7, - "offset": 192, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 753259116 - }, - "m_petCasted": { - "type": "bool", - "id": 8, - "offset": 196, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1697247120 - }, - "m_petCastedTarget": { - "type": "int", - "id": 9, - "offset": 200, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1344025214 - }, - "m_cloaked": { - "type": "bool", - "id": 10, - "offset": 204, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 7349510 - } - } - }, - "1375273609": { - "name": "class ClientStartHangingRotationCinematicAction*", - "bases": [ - "StartHangingRotationCinematicAction", - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 1375273609, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - }, - "m_cloaked": { - "type": "bool", - "id": 2, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 7349510 - } - } - }, - "203187636": { - "name": "class WizItemQuestList", - "bases": [ - "WizItemLocations", - "PropertyClass" - ], - "hash": 203187636, - "properties": { - "m_itemType": { - "type": "enum WizItemLocations::eItemType", - "id": 0, - "offset": 72, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3482173907, - "enum_options": { - "shop": 0, - "quest": 1, - "boss": 2, - "gardening": 3, - "goldChest": 4 - } - }, - "m_quests": { - "type": "class SharedPointer", - "id": 1, - "offset": 80, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2616788661 - } - } - }, - "1382053342": { - "name": "class SharedPointer", - "bases": [ - "CinematicAction", - "PropertyClass" - ], - "hash": 1382053342, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_spellText": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2688705600 - } - } - }, - "203771635": { - "name": "class SharedPointer", - "bases": [ - "ControlSprite", - "Window", - "PropertyClass" - ], - "hash": 203771635, - "properties": { - "m_sName": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306437263 - }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621225959 - }, - "m_Style": { - "type": "unsigned int", - "id": 2, - "offset": 152, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "SCALE_CHILDREN": 2, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "FOCUS_LOCKED": 64, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152 - } - }, - "m_Flags": { - "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648, - "ONE_SHOT": 8388608, - "FLIPPED_HORIZONTAL": 16777216, - "FLIPPED_VERTICAL": 33554432 - } - }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3105139380 - }, - "m_fTargetAlpha": { - "type": "float", - "id": 5, - "offset": 212, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1809129834 - }, - "m_fDisabledAlpha": { - "type": "float", - "id": 6, - "offset": 216, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1389987675 - }, - "m_fAlpha": { - "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 482130755 - }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3623628394 - }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2102211316 - }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1846695875 - }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3389835433 - }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2547159940 - }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2587533771 - }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3091503757 - }, - "m_pMaterial": { - "type": "class SharedPointer", - "id": 16, - "offset": 592, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3479277078 - }, - "m_fRotation": { - "type": "float", - "id": 17, - "offset": 608, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1175400173 - }, - "m_Color": { - "type": "class Color", - "id": 18, - "offset": 584, - "flags": 262279, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1753714077 - }, - "m_textColor": { - "type": "class Color", - "id": 19, - "offset": 612, - "flags": 262279, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2528109250 - }, - "m_textComponent": { - "type": "class TextComponent", - "id": 20, - "offset": 616, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3491704390 - } - } - }, - "993084640": { - "name": "class PetSnackBehavior*", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 993084640, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_snackBag": { - "type": "class ObjectBag", - "id": 1, - "offset": 112, - "flags": 27, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2027393587 - } - } - }, - "1377570551": { - "name": "class SharedPointer", - "bases": [ - "CoreTemplate", - "PropertyClass" - ], - "hash": 1377570551, - "properties": { - "m_behaviors": { - "type": "class BehaviorTemplate*", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1197808594 - }, - "m_talentName": { - "type": "std::string", - "id": 1, - "offset": 96, - "flags": 134217735, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2455147588 - }, - "m_displayName": { - "type": "std::string", - "id": 2, - "offset": 136, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2446900370 - }, - "m_description": { - "type": "std::string", - "id": 3, - "offset": 168, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1649374815 - }, - "m_imageIndex": { - "type": "unsigned int", - "id": 4, - "offset": 200, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1781902856 - }, - "m_imageName": { - "type": "std::string", - "id": 5, - "offset": 208, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2391520543 - }, - "m_rank": { - "type": "unsigned char", - "id": 6, - "offset": 240, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 857403388 - }, - "m_breedsAsTalentName": { - "type": "std::string", - "id": 7, - "offset": 248, - "flags": 268435463, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2143399629, - "enum_options": { - "__BASECLASS": "PetTalentBaseTemplate" - } - }, - "m_bRetired": { - "type": "bool", - "id": 8, - "offset": 280, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 904227684, - "enum_options": { - "__DEFAULT": 0 - } - }, - "m_unsearchable": { - "type": "bool", - "id": 9, - "offset": 281, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1760679968, - "enum_options": { - "__DEFAULT": 0 - } - } - } - }, - "203682485": { - "name": "class SharedPointer", - "bases": [ - "GameEffectTemplate", - "PropertyClass" - ], - "hash": 203682485, - "properties": { - "m_effectName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2029161513 - }, - "m_effectCategory": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1852673222 - }, - "m_sortOrder": { - "type": "int", - "id": 2, - "offset": 148, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1411218206 - }, - "m_duration": { - "type": "double", - "id": 3, - "offset": 192, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2727932435 - }, - "m_stackingCategories": { - "type": "std::string", - "id": 4, - "offset": 160, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1774497525 - }, - "m_isPersistent": { - "type": "bool", - "id": 5, - "offset": 153, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 923861920 - }, - "m_bIsOnPet": { - "type": "bool", - "id": 6, - "offset": 154, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 522593303 - }, - "m_isPublic": { - "type": "bool", - "id": 7, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1728439822 - }, - "m_visualEffectAddName": { - "type": "std::string", - "id": 8, - "offset": 200, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3382086694 - }, - "m_visualEffectRemoveName": { - "type": "std::string", - "id": 9, - "offset": 232, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1541697323 - }, - "m_onAddFunctorName": { - "type": "std::string", - "id": 10, - "offset": 280, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1561843107 - }, - "m_onRemoveFunctorName": { - "type": "std::string", - "id": 11, - "offset": 312, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2559017864 - }, - "m_stackingRule": { - "type": "enum STACKING_RULE", - "id": 12, - "offset": 144, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 431568889, - "enum_options": { - "STACKING_ALLOWED": 0, - "STACKING_NOSTACK": 1, - "STACKING_REPLACE": 2 - } - } - } - }, - "1376523329": { - "name": "class SharedPointer", - "bases": [ - "DerbyEffect", - "PropertyClass" - ], - "hash": 1376523329, - "properties": { - "m_buffType": { - "type": "enum DerbyTalentBuffType", - "id": 0, - "offset": 92, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1149251982, - "enum_options": { - "Buff": 0, - "Debuff": 1, - "Neither": 2 - } - }, - "m_kTarget": { - "type": "enum DerbyTargetType", - "id": 1, - "offset": 96, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1807803351, - "enum_options": { - "kTargetInFront": 0, - "kTargetBehind": 1, - "kTargetFirst": 2, - "kTargetSelf": 3, - "kTargetAll": 4, - "kTargetLast": 5 - } - }, - "m_nDuration": { - "type": "int", - "id": 2, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1110167982 - }, - "m_effectID": { - "type": "unsigned int", - "id": 3, - "offset": 88, - "flags": 24, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2347630439 - }, - "m_imageFilename": { - "type": "std::string", - "id": 4, - "offset": 112, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2813328063 - }, - "m_iconIndex": { - "type": "unsigned int", - "id": 5, - "offset": 144, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1265133262 - }, - "m_soundOnActivate": { - "type": "std::string", - "id": 6, - "offset": 152, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1956929714 - }, - "m_soundOnTarget": { - "type": "std::string", - "id": 7, - "offset": 184, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3444214056 - }, - "m_targetParticleEffect": { - "type": "std::string", - "id": 8, - "offset": 216, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3048234723 - }, - "m_overheadMessage": { - "type": "std::string", - "id": 9, - "offset": 248, - "flags": 8388639, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1701018190 - }, - "m_requirements": { - "type": "class RequirementList", - "id": 10, - "offset": 280, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2840988582 - }, - "m_terrainType": { - "type": "enum PetDerbyTrackTerrain", - "id": 11, - "offset": 376, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2688629581, - "enum_options": { - "Cobblestone": 0, - "Water": 1, - "Grass": 2, - "Clay": 3, - "Dirt": 4, - "Mud": 5 - } - }, - "m_fEffectReapplyTime": { - "type": "float", - "id": 12, - "offset": 380, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1483497206 - }, - "m_effectsToApply": { - "type": "class SharedPointer", - "id": 13, - "offset": 384, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2042624288 - }, - "m_permanentEffects": { - "type": "class SharedPointer", - "id": 14, - "offset": 400, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2129171809 - } - } - }, - "1375974384": { - "name": "class InteractiveMusicPlayerList", - "bases": [ - "PropertyClass" - ], - "hash": 1375974384, - "properties": { - "m_playerList": { - "type": "gid", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1909774945 - } - } - }, - "993204893": { - "name": "class SortedCaughtFish", - "bases": [ - "PropertyClass" - ], - "hash": 993204893, - "properties": {} - }, - "1375527308": { - "name": "class PetDerbyTrackManager*", - "bases": [ - "PropertyClass" - ], - "hash": 1375527308, - "properties": { - "m_moraleBase": { - "type": "int", - "id": 0, - "offset": 76, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": true, - "pointer": false, - "hash": 1266117365 - }, - "m_rateBase": { - "type": "int", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": true, - "pointer": false, - "hash": 509523265 - }, - "m_speedBoostBase": { - "type": "int", - "id": 2, - "offset": 84, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": true, - "pointer": false, - "hash": 1322305965 - }, - "m_speedometerMin": { - "type": "unsigned int", - "id": 3, - "offset": 88, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": true, - "pointer": false, - "hash": 2086670670 - }, - "m_speedometerMax": { - "type": "unsigned int", - "id": 4, - "offset": 92, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": true, - "pointer": false, - "hash": 2086670416 - }, - "m_willTerrainFactor": { - "type": "float", - "id": 5, - "offset": 96, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": true, - "pointer": false, - "hash": 1504784419 - }, - "m_intelligenceTerrainFactor": { - "type": "float", - "id": 6, - "offset": 100, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": true, - "pointer": false, - "hash": 1222264734 - }, - "m_agilityTerrainFactor": { - "type": "float", - "id": 7, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": true, - "pointer": false, - "hash": 739714590 - }, - "m_strengthTerrainFactor": { - "type": "float", - "id": 8, - "offset": 108, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": true, - "pointer": false, - "hash": 2193163834 - }, - "m_moraleBaseChance": { - "type": "int", - "id": 9, - "offset": 112, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": true, - "pointer": false, - "hash": 1198290007 - }, - "m_startingSpeed": { - "type": "int", - "id": 10, - "offset": 116, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": true, - "pointer": false, - "hash": 2138873047 - }, - "m_cheerCostBase": { - "type": "int", - "id": 11, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": true, - "pointer": false, - "hash": 260219765 - }, - "m_fMoraleFactor": { - "type": "float", - "id": 12, - "offset": 124, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": true, - "pointer": false, - "hash": 1908498588 - }, - "m_fTerrainCostFactor": { - "type": "float", - "id": 13, - "offset": 128, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": true, - "pointer": false, - "hash": 1632613482 - }, - "m_fSpeedBoostFactor": { - "type": "float", - "id": 14, - "offset": 132, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": true, - "pointer": false, - "hash": 1763479636 - }, - "m_cheerTimerInMS": { - "type": "int", - "id": 15, - "offset": 136, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": true, - "pointer": false, - "hash": 1155591641 - }, - "m_slowTimerInMS": { - "type": "int", - "id": 16, - "offset": 140, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": true, - "pointer": false, - "hash": 2014411479 - }, - "m_cobblestoneCost": { - "type": "int", - "id": 17, - "offset": 144, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": true, - "pointer": false, - "hash": 539222659 - }, - "m_terrainEffects": { - "type": "class SharedPointer", - "id": 18, - "offset": 208, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": true, - "pointer": true, - "hash": 3143618983 - }, - "m_cheerEffects": { - "type": "class SharedPointer", - "id": 19, - "offset": 224, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": true, - "pointer": true, - "hash": 1565796382 - }, - "m_slowEffects": { - "type": "class SharedPointer", - "id": 20, - "offset": 240, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": true, - "pointer": true, - "hash": 409034140 - }, - "m_tracks": { - "type": "class SharedPointer", - "id": 21, - "offset": 152, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": true, - "pointer": true, - "hash": 1978381840 - } - } - }, - "1375296642": { - "name": "class SharedPointer", - "bases": [ - "SpellListControl", - "Window", - "PropertyClass" - ], - "hash": 1375296642, - "properties": { - "m_sName": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306437263 - }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621225959 - }, - "m_Style": { - "type": "unsigned int", - "id": 2, - "offset": 152, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152, - "SLC_NUMBERS": 16777216 - } - }, - "m_Flags": { - "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } - }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3105139380 - }, - "m_fTargetAlpha": { - "type": "float", - "id": 5, - "offset": 212, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1809129834 - }, - "m_fDisabledAlpha": { - "type": "float", - "id": 6, - "offset": 216, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1389987675 - }, - "m_fAlpha": { - "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 482130755 - }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3623628394 - }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2102211316 - }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1846695875 - }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3389835433 - }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2547159940 - }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2587533771 - }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3091503757 - }, - "m_cardSize": { - "type": "class Size", - "id": 16, - "offset": 716, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1135567057 - }, - "m_spacing": { - "type": "class Point", - "id": 17, - "offset": 724, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3187881255 - }, - "m_holes": { - "type": "class Rect", - "id": 18, - "offset": 696, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1902151287 - }, - "m_ingredientSize": { - "type": "class Size", - "id": 19, - "offset": 760, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1856724800 - }, - "m_ingredientSpacing": { - "type": "class Point", - "id": 20, - "offset": 768, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2794695056 - } - } - }, - "204422564": { - "name": "class CastleMagicMovingObject", - "bases": [ - "PropertyClass" - ], - "hash": 204422564, - "properties": {} - }, - "993248480": { - "name": "class PetSnackBehavior", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 993248480, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_snackBag": { - "type": "class ObjectBag", - "id": 1, - "offset": 112, - "flags": 27, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2027393587 - } - } - }, - "204173336": { - "name": "class SharedPointer", - "bases": [ - "PipFloatingTextCinematicAction", - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 204173336, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - } - } - }, - "204094750": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 204094750, - "properties": { - "m_zoneTag": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3405382643 - }, - "m_zoneTagID": { - "type": "unsigned int", - "id": 1, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 965291410 - }, - "m_animation": { - "type": "std::string", - "id": 2, - "offset": 112, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3431428731 - }, - "m_backupAnimation": { - "type": "std::string", - "id": 3, - "offset": 144, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1661537937 - }, - "m_default": { - "type": "bool", - "id": 4, - "offset": 176, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1014207576 - }, - "m_evenWhileDead": { - "type": "bool", - "id": 5, - "offset": 177, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2100875368 - } - } - }, - "1375527332": { - "name": "class PetDerbyTrackManager", - "bases": [ - "PropertyClass" - ], - "hash": 1375527332, - "properties": { - "m_moraleBase": { - "type": "int", - "id": 0, - "offset": 76, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": true, - "pointer": false, - "hash": 1266117365 - }, - "m_rateBase": { - "type": "int", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": true, - "pointer": false, - "hash": 509523265 - }, - "m_speedBoostBase": { - "type": "int", - "id": 2, - "offset": 84, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": true, - "pointer": false, - "hash": 1322305965 - }, - "m_speedometerMin": { - "type": "unsigned int", - "id": 3, - "offset": 88, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": true, - "pointer": false, - "hash": 2086670670 - }, - "m_speedometerMax": { - "type": "unsigned int", - "id": 4, - "offset": 92, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": true, - "pointer": false, - "hash": 2086670416 - }, - "m_willTerrainFactor": { - "type": "float", - "id": 5, - "offset": 96, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": true, - "pointer": false, - "hash": 1504784419 - }, - "m_intelligenceTerrainFactor": { - "type": "float", - "id": 6, - "offset": 100, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": true, - "pointer": false, - "hash": 1222264734 - }, - "m_agilityTerrainFactor": { - "type": "float", - "id": 7, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": true, - "pointer": false, - "hash": 739714590 - }, - "m_strengthTerrainFactor": { - "type": "float", - "id": 8, - "offset": 108, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": true, - "pointer": false, - "hash": 2193163834 - }, - "m_moraleBaseChance": { - "type": "int", - "id": 9, - "offset": 112, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": true, - "pointer": false, - "hash": 1198290007 - }, - "m_startingSpeed": { - "type": "int", - "id": 10, - "offset": 116, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": true, - "pointer": false, - "hash": 2138873047 - }, - "m_cheerCostBase": { - "type": "int", - "id": 11, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": true, - "pointer": false, - "hash": 260219765 - }, - "m_fMoraleFactor": { - "type": "float", - "id": 12, - "offset": 124, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": true, - "pointer": false, - "hash": 1908498588 - }, - "m_fTerrainCostFactor": { - "type": "float", - "id": 13, - "offset": 128, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": true, - "pointer": false, - "hash": 1632613482 - }, - "m_fSpeedBoostFactor": { - "type": "float", - "id": 14, - "offset": 132, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": true, - "pointer": false, - "hash": 1763479636 - }, - "m_cheerTimerInMS": { - "type": "int", - "id": 15, - "offset": 136, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": true, - "pointer": false, - "hash": 1155591641 - }, - "m_slowTimerInMS": { - "type": "int", - "id": 16, - "offset": 140, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": true, - "pointer": false, - "hash": 2014411479 - }, - "m_cobblestoneCost": { - "type": "int", - "id": 17, - "offset": 144, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": true, - "pointer": false, - "hash": 539222659 - }, - "m_terrainEffects": { - "type": "class SharedPointer", - "id": 18, - "offset": 208, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": true, - "pointer": true, - "hash": 3143618983 - }, - "m_cheerEffects": { - "type": "class SharedPointer", - "id": 19, - "offset": 224, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": true, - "pointer": true, - "hash": 1565796382 - }, - "m_slowEffects": { - "type": "class SharedPointer", - "id": 20, - "offset": 240, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": true, - "pointer": true, - "hash": 409034140 - }, - "m_tracks": { - "type": "class SharedPointer", - "id": 21, - "offset": 152, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": true, - "pointer": true, - "hash": 1978381840 - } - } - }, - "995395519": { - "name": "enum MadlibIconUseCase", - "bases": [], - "hash": 995395519, - "properties": {} - }, - "994024280": { - "name": "class SharedPointer", - "bases": [ - "GraphicalSpell", - "Spell", - "PropertyClass" - ], - "hash": 994024280, - "properties": { - "m_templateID": { - "type": "unsigned int", - "id": 0, - "offset": 128, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1286746870 - }, - "m_enchantment": { - "type": "unsigned int", - "id": 1, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2217886818 - }, - "m_pipCost": { - "type": "class SharedPointer", - "id": 2, - "offset": 176, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3605704820 - }, - "m_regularAdjust": { - "type": "int", - "id": 3, - "offset": 192, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1420453335 - }, - "m_magicSchoolID": { - "type": "unsigned int", - "id": 4, - "offset": 136, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 893146499 - }, - "m_accuracy": { - "type": "unsigned char", - "id": 5, - "offset": 132, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2273914939 - }, - "m_treasureCard": { - "type": "bool", - "id": 6, - "offset": 197, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1764879128 - }, - "m_battleCard": { - "type": "bool", - "id": 7, - "offset": 198, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1332843753 - }, - "m_itemCard": { - "type": "bool", - "id": 8, - "offset": 199, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1683654300 - }, - "m_sideBoard": { - "type": "bool", - "id": 9, - "offset": 200, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1897838368 - }, - "m_spellID": { - "type": "unsigned int", - "id": 10, - "offset": 204, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1697483258 - }, - "m_leavesPlayWhenCastOverride": { - "type": "bool", - "id": 11, - "offset": 216, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 874407398 - }, - "m_cloaked": { - "type": "bool", - "id": 12, - "offset": 196, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 7349510 - }, - "m_enchantmentSpellIsItemCard": { - "type": "bool", - "id": 13, - "offset": 76, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 531590701 - }, - "m_premutationSpellID": { - "type": "unsigned int", - "id": 14, - "offset": 112, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1530256370 - }, - "m_enchantedThisCombat": { - "type": "bool", - "id": 15, - "offset": 77, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1895738923 - }, - "m_paramOverrides": { - "type": "class SharedPointer", - "id": 16, - "offset": 224, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2061635599 - }, - "m_subEffectMeta": { - "type": "class SharedPointer", - "id": 17, - "offset": 240, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1944101106 - }, - "m_delayEnchantment": { - "type": "bool", - "id": 18, - "offset": 257, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 191336919 - }, - "m_PvE": { - "type": "bool", - "id": 19, - "offset": 264, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 269492350 - }, - "m_delayEnchantmentOrder": { - "type": "enum SpellEffect::kDelayOrder", - "id": 20, - "offset": 72, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2526055263, - "enum_options": { - "SpellEffect::kAnyOrder": 0, - "SpellEffect::kFirst": 1, - "SpellEffect::kSecond": 2 - } - }, - "m_roundAddedTC": { - "type": "int", - "id": 21, - "offset": 260, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 112365451 - }, - "m_secondarySchoolID": { - "type": "unsigned int", - "id": 22, - "offset": 304, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2081206026 - } - } - }, - "993546017": { - "name": "class ReqBaseHasMagicSchool*", - "bases": [ - "Requirement", - "PropertyClass" - ], - "hash": 993546017, - "properties": { - "m_applyNOT": { - "type": "bool", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1746328074, - "enum_options": { - "__DEFAULT": 0 - } - }, - "m_operator": { - "type": "enum Requirement::Operator", - "id": 1, - "offset": 76, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2672792317, - "enum_options": { - "ROP_AND": 0, - "ROP_OR": 1, - "__DEFAULT": "ROP_AND" - } - }, - "m_magicSchool": { - "type": "std::string", - "id": 2, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1597012900 - } - } - }, - "1375974394": { - "name": "class InteractiveMusicPlayerList*", - "bases": [ - "PropertyClass" - ], - "hash": 1375974394, - "properties": { - "m_playerList": { - "type": "gid", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1909774945 - } - } - }, - "204825615": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 204825615, - "properties": { - "m_badges": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1636336781 - } - } - }, - "993544737": { - "name": "class ReqBaseHasMagicSchool", - "bases": [ - "Requirement", - "PropertyClass" - ], - "hash": 993544737, - "properties": { - "m_applyNOT": { - "type": "bool", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1746328074, - "enum_options": { - "__DEFAULT": 0 - } - }, - "m_operator": { - "type": "enum Requirement::Operator", - "id": 1, - "offset": 76, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2672792317, - "enum_options": { - "ROP_AND": 0, - "ROP_OR": 1, - "__DEFAULT": "ROP_AND" - } - }, - "m_magicSchool": { - "type": "std::string", - "id": 2, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1597012900 - } - } - }, - "204818717": { - "name": "class TutorialZoneMod", - "bases": [ - "PropertyClass" - ], - "hash": 204818717, - "properties": { - "m_stageMin": { - "type": "int", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 353899634 - }, - "m_stageMax": { - "type": "int", - "id": 1, - "offset": 76, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 353899380 - }, - "m_zoneEvents": { - "type": "std::string", - "id": 2, - "offset": 112, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2188728076 - }, - "m_zone": { - "type": "std::string", - "id": 3, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1717806295 - } - } - }, - "1376486542": { - "name": "class InitialCombatSoundsList*", - "bases": [ - "PropertyClass" - ], - "hash": 1376486542, - "properties": { - "m_initialCombatSoundsList": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1746599966 - } - } - }, - "204823837": { - "name": "class TutorialZoneMod*", - "bases": [ - "PropertyClass" - ], - "hash": 204823837, - "properties": { - "m_stageMin": { - "type": "int", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 353899634 - }, - "m_stageMax": { - "type": "int", - "id": 1, - "offset": 76, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 353899380 - }, - "m_zoneEvents": { - "type": "std::string", - "id": 2, - "offset": 112, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2188728076 - }, - "m_zone": { - "type": "std::string", - "id": 3, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1717806295 - } - } - }, - "993596468": { - "name": "union gid", - "bases": [], - "hash": 993596468, - "properties": {} - }, - "1376942752": { - "name": "class SharedPointer", - "bases": [ - "Window", - "PropertyClass" - ], - "hash": 1376942752, - "properties": { - "m_sName": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306437263 - }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621225959 - }, - "m_Style": { - "type": "unsigned int", - "id": 2, - "offset": 152, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "SCALE_CHILDREN": 2, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "FOCUS_LOCKED": 64, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152 - } - }, - "m_Flags": { - "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } - }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3105139380 - }, - "m_fTargetAlpha": { - "type": "float", - "id": 5, - "offset": 212, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1809129834 - }, - "m_fDisabledAlpha": { - "type": "float", - "id": 6, - "offset": 216, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1389987675 - }, - "m_fAlpha": { - "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 482130755 - }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3623628394 - }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2102211316 - }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1846695875 - }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3389835433 - }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2547159940 - }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2587533771 - }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3091503757 - } - } - }, - "205069278": { - "name": "class TieredSpellRetired*", - "bases": [ - "PropertyClass" - ], - "hash": 205069278, - "properties": { - "m_tieredSpellRetiredList": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 955625460 - } - } - }, - "994988126": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 994988126, - "properties": {} - }, - "1377272120": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1377272120, - "properties": { - "m_connectionType": { - "type": "enum HousingNode::ConnectionType", - "id": 0, - "offset": 72, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 427658421, - "enum_options": { - "MALE": 0, - "FEMALE": 1, - "__DEFAULT": "MALE" - } - }, - "m_locationType": { - "type": "unsigned int", - "id": 1, - "offset": 76, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 538163080, - "enum_options": { - "INSIDE": 1, - "OUTSIDE": 2, - "INACCESSIBLE": 4, - "__DEFAULT": "INSIDE" - } - }, - "m_exclusiveRestrictions": { - "type": "enum HousingNode::ExclusiveRestrictions", - "id": 2, - "offset": 80, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3137090195, - "enum_options": { - "NO_RESTRICTIONS": 0, - "WALL_ONLY": 1, - "DOOR_ONLY": 2, - "WINDOW_ONLY": 3, - "STAIR_ONLY": 4, - "EDGE_ONLY": 5, - "CEILING_ONLY": 6, - "INSIDE_VASE_ONLY": 7, - "RECTANGLE_ONLY": 8, - "WINDOW_SMALLROUNDTOP": 9, - "WINDOW_TALLROUNDTOP": 10, - "WINDOW_TALLSQUARETOP": 11, - "WINDOW_STANDARD": 12, - "WINDOW_LARGE": 13, - "DOOR_SINGLEROUNDTOP": 14, - "DOOR_SINGLESQUARETOP": 15, - "DOOR_DOUBLEROUNDTOP": 16, - "DOOR_DOUBLESQUARETOP": 17, - "GARDEN_ONLY": 18, - "ENCHANTED_GARDEN_ONLY": 19, - "ENRICHED_GARDEN_ONLY": 20, - "WALL_EDGE": 21, - "__DEFAULT": "NO_RESTRICTIONS" - } - }, - "m_supportSurface": { - "type": "bool", - "id": 3, - "offset": 84, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1804627449, - "enum_options": { - "__DEFAULT": 0 - } - }, - "m_position": { - "type": "class Vector3D", - "id": 4, - "offset": 88, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3697900983 - } - } - }, - "994494061": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 994494061, - "properties": { - "m_housingLayoutObjectList": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2580715899 - } - } - }, - "206068909": { - "name": "class BaseClientHousingBlobStrategy", - "bases": [ - "BlobCacheInterface", - "PropertyClass" - ], - "hash": 206068909, - "properties": {} - }, - "1380906622": { - "name": "class ActCinematicStageTemplate*", - "bases": [ - "CinematicStageTemplate", - "PropertyClass" - ], - "hash": 1380906622, - "properties": { - "m_name": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1717359772 - }, - "m_duration": { - "type": "float", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 920323453 - }, - "m_actions": { - "type": "class SharedPointer", - "id": 2, - "offset": 112, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1380578687 - }, - "m_stageRelationships": { - "type": "class SharedPointer", - "id": 3, - "offset": 128, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 499983354 - }, - "m_cameras": { - "type": "std::string", - "id": 4, - "offset": 152, - "flags": 131079, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 3217341687 - }, - "m_altcameras": { - "type": "std::string", - "id": 5, - "offset": 176, - "flags": 131079, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1882980152 - }, - "m_actAnim": { - "type": "std::string", - "id": 6, - "offset": 200, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2867163800 - }, - "m_camRel": { - "type": "enum CameraCutCinematicAction::kCameraRelative", - "id": 7, - "offset": 232, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 919962138, - "enum_options": { - "kSigil": 1, - "kTarget": 2, - "kSource": 3, - "kActor": 4, - "__DEFAULT": "kTarget" - } - }, - "m_sound": { - "type": "std::string", - "id": 8, - "offset": 240, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2307644996 - }, - "m_interpDuration": { - "type": "float", - "id": 9, - "offset": 272, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237711951, - "enum_options": { - "__DEFAULT": "1.0" - } - }, - "m_announcesSpell": { - "type": "bool", - "id": 10, - "offset": 276, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 652261533 - } - } - }, - "205985930": { - "name": "class GameEffectTimerDisplayBehavior", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 205985930, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_effectName": { - "type": "std::string", - "id": 1, - "offset": 112, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2029161513 - }, - "m_textKey": { - "type": "std::string", - "id": 2, - "offset": 144, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1720060457 - }, - "m_height": { - "type": "float", - "id": 3, - "offset": 176, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 602977104 - }, - "m_zOffset": { - "type": "float", - "id": 4, - "offset": 180, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 736134072 - }, - "m_red": { - "type": "unsigned char", - "id": 5, - "offset": 184, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 904647115 - }, - "m_green": { - "type": "unsigned char", - "id": 6, - "offset": 185, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1433403873 - }, - "m_blue": { - "type": "unsigned char", - "id": 7, - "offset": 186, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 856840600 - }, - "m_triggers": { - "type": "class SharedPointer", - "id": 8, - "offset": 192, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 3290329276 - } - } - }, - "1378671505": { - "name": "class SharedPointer", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1378671505, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_itemList": { - "type": "class SharedPointer", - "id": 1, - "offset": 120, - "flags": 27, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1983655699 - }, - "m_slotList": { - "type": "class SharedPointer", - "id": 2, - "offset": 136, - "flags": 27, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 3213026923 - }, - "m_publicItemList": { - "type": "class SharedPointer", - "id": 3, - "offset": 152, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1693467991 - } - } - }, - "205859154": { - "name": "class SharedPointer", - "bases": [ - "NamedEffect", - "GameEffectBase", - "PropertyClass" - ], - "hash": 205859154, - "properties": { - "m_currentTickCount": { - "type": "double", - "id": 0, - "offset": 80, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2533274692 - }, - "m_effectNameID": { - "type": "unsigned int", - "id": 1, - "offset": 96, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1204067144 - }, - "m_bIsOnPet": { - "type": "bool", - "id": 2, - "offset": 73, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 522593303 - }, - "m_originatorID": { - "type": "gid", - "id": 3, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1131810019 - }, - "m_itemSlotID": { - "type": "unsigned int", - "id": 4, - "offset": 112, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1895747595 - }, - "m_internalID": { - "type": "int", - "id": 5, - "offset": 92, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1643137924 - }, - "m_endTime": { - "type": "unsigned int", - "id": 6, - "offset": 88, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 716479635 - }, - "m_overrideName": { - "type": "std::string", - "id": 7, - "offset": 128, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1990707228 - }, - "m_startReqs": { - "type": "class SharedPointer", - "id": 8, - "offset": 168, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3147529602 - }, - "m_startResults": { - "type": "class SharedPointer", - "id": 9, - "offset": 184, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2094517692 - }, - "m_endResults": { - "type": "class SharedPointer", - "id": 10, - "offset": 200, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2118364133 - } - } - }, - "995444121": { - "name": "class SoundBehavior*", - "bases": [ - "AreaBehavior", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 995444121, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_radius": { - "type": "float", - "id": 1, - "offset": 116, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 989410271 - }, - "m_category": { - "type": "enum AudioCategory", - "id": 2, - "offset": 124, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2951251982, - "enum_options": { - "AudioCategory_Irrelevent": 0, - "AudioCategory_Accoustic": 1, - "AudioCategory_Noise": 2, - "AudioCategory_Music": 3 - } - }, - "m_exclusive": { - "type": "bool", - "id": 3, - "offset": 128, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 824383403 - }, - "m_playList": { - "type": "class PlayList", - "id": 4, - "offset": 176, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2061221957 - }, - "m_volume": { - "type": "float", - "id": 5, - "offset": 304, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1162855023 - }, - "m_loopCount": { - "type": "int", - "id": 6, - "offset": 308, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 865634717 - } - } - }, - "1377797262": { - "name": "class InitialCombatSoundsList", - "bases": [ - "PropertyClass" - ], - "hash": 1377797262, - "properties": { - "m_initialCombatSoundsList": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1746599966 - } - } - }, - "1378328752": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1378328752, - "properties": { - "m_entryList": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 619674006 - }, - "m_numberOfGames": { - "type": "int", - "id": 1, - "offset": 88, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1220956901 - } - } - }, - "206019058": { - "name": "class MountRecord*", - "bases": [ - "PropertyClass" - ], - "hash": 206019058, - "properties": { - "m_nVolumeType": { - "type": "enum MountRecord::VolumeTypes", - "id": 0, - "offset": 72, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2832170609, - "enum_options": { - "DISK": 1, - "DSA": 2, - "WAD": 3 - } - }, - "m_sOption": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1705643111 - }, - "m_nPriority": { - "type": "int", - "id": 2, - "offset": 112, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1515251530 - }, - "m_sMount": { - "type": "std::string", - "id": 3, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2412733857 - }, - "m_bWritable": { - "type": "bool", - "id": 4, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1522487983 - } - } - }, - "998296624": { - "name": "class SavedDebugCommand*", - "bases": [ - "PropertyClass" - ], - "hash": 998296624, - "properties": { - "m_commandName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1931590331 - }, - "m_command": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1618022938 - } - } - }, - "996754183": { - "name": "class PathManager::NodeTemplateList", - "bases": [ - "PropertyClass" - ], - "hash": 996754183, - "properties": { - "m_nodeList": { - "type": "class NodeObject*", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2187152017 - } - } - }, - "996418475": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 996418475, - "properties": {} - }, - "1379159272": { - "name": "class SharedPointer", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 1379159272, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - } - } - }, - "206696055": { - "name": "class MapInfoRequirementsRequest*", - "bases": [ - "PropertyClass" - ], - "hash": 206696055, - "properties": { - "m_id": { - "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2301988666 - }, - "m_serializedRequirements": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1527408971 - } - } - }, - "996397320": { - "name": "class SharedPointer", - "bases": [ - "TeleportToNode", - "PathBehaviorTemplate::Action", - "PropertyClass" - ], - "hash": 996397320, - "properties": { - "m_nPathID": { - "type": "gid", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 214382368 - }, - "m_nNodeID": { - "type": "int", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 152152635, - "enum_options": { - "__DEFAULT": 4294967295 - } - }, - "m_nPriority": { - "type": "int", - "id": 2, - "offset": 84, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1515251530, - "enum_options": { - "__DEFAULT": 100 - } - }, - "m_nChance": { - "type": "int", - "id": 3, - "offset": 88, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1860748394, - "enum_options": { - "__DEFAULT": 50 - } - }, - "m_nDestinationNodeID": { - "type": "int", - "id": 4, - "offset": 96, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 44784029 - }, - "m_bContinuePathing": { - "type": "bool", - "id": 5, - "offset": 100, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2053386917 - } - } - }, - "1378978089": { - "name": "class HousingNode*", - "bases": [ - "PropertyClass" - ], - "hash": 1378978089, - "properties": { - "m_connectionType": { - "type": "enum HousingNode::ConnectionType", - "id": 0, - "offset": 72, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 427658421, - "enum_options": { - "MALE": 0, - "FEMALE": 1, - "__DEFAULT": "MALE" - } - }, - "m_locationType": { - "type": "unsigned int", - "id": 1, - "offset": 76, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 538163080, - "enum_options": { - "INSIDE": 1, - "OUTSIDE": 2, - "INACCESSIBLE": 4, - "__DEFAULT": "INSIDE" - } - }, - "m_exclusiveRestrictions": { - "type": "enum HousingNode::ExclusiveRestrictions", - "id": 2, - "offset": 80, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3137090195, - "enum_options": { - "NO_RESTRICTIONS": 0, - "WALL_ONLY": 1, - "DOOR_ONLY": 2, - "WINDOW_ONLY": 3, - "STAIR_ONLY": 4, - "EDGE_ONLY": 5, - "CEILING_ONLY": 6, - "INSIDE_VASE_ONLY": 7, - "RECTANGLE_ONLY": 8, - "WINDOW_SMALLROUNDTOP": 9, - "WINDOW_TALLROUNDTOP": 10, - "WINDOW_TALLSQUARETOP": 11, - "WINDOW_STANDARD": 12, - "WINDOW_LARGE": 13, - "DOOR_SINGLEROUNDTOP": 14, - "DOOR_SINGLESQUARETOP": 15, - "DOOR_DOUBLEROUNDTOP": 16, - "DOOR_DOUBLESQUARETOP": 17, - "GARDEN_ONLY": 18, - "ENCHANTED_GARDEN_ONLY": 19, - "ENRICHED_GARDEN_ONLY": 20, - "WALL_EDGE": 21, - "__DEFAULT": "NO_RESTRICTIONS" - } - }, - "m_supportSurface": { - "type": "bool", - "id": 3, - "offset": 84, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1804627449, - "enum_options": { - "__DEFAULT": 0 - } - }, - "m_position": { - "type": "class Vector3D", - "id": 4, - "offset": 88, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3697900983 - } - } - }, - "206396589": { - "name": "class BaseClientHousingBlobStrategy*", - "bases": [ - "BlobCacheInterface", - "PropertyClass" - ], - "hash": 206396589, - "properties": {} - }, - "995989159": { - "name": "class SigilCamera*", - "bases": [ - "PropertyClass" - ], - "hash": 995989159, - "properties": { - "m_cameraName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3252786917 - }, - "m_overrideName": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1990707228 - }, - "m_fMinHeight": { - "type": "float", - "id": 2, - "offset": 136, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2189896538 - } - } - }, - "1094316001": { - "name": "class SharedPointer", - "bases": [ - "PhysicsSimMass", - "PropertyClass" - ], - "hash": 1094316001, - "properties": {} - }, - "1379324401": { - "name": "class HousingBlob*", - "bases": [ - "PropertyClass" - ], - "hash": 1379324401, - "properties": { - "m_housingBlobObjectList": { - "type": "class SharedPointer", - "id": 0, - "offset": 80, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2812881480 - } - } - }, - "207050182": { - "name": "class SharedPointer", - "bases": [ - "NodeDescriptor", - "PropertyClass" - ], - "hash": 207050182, - "properties": { - "m_nodeType": { - "type": "enum LeashedPathNodeType", - "id": 0, - "offset": 72, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3706891451, - "enum_options": { - "NT_NONE": 0, - "NT_ANIM": 1, - "NT_SPEEDSCALE": 2, - "NT_TELEPORT": 3 - } - }, - "m_animationName": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3393414044 - }, - "m_teleportToZone": { - "type": "std::string", - "id": 2, - "offset": 112, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2018677929 - }, - "m_zoneLocation": { - "type": "std::string", - "id": 3, - "offset": 144, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1597011152 - }, - "m_speedScale": { - "type": "float", - "id": 4, - "offset": 176, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2118638608 - } - } - }, - "206696061": { - "name": "class MapInfoRequirementsRequest", - "bases": [ - "PropertyClass" - ], - "hash": 206696061, - "properties": { - "m_id": { - "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2301988666 - }, - "m_serializedRequirements": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1527408971 - } - } - }, - "998830168": { - "name": "class CastleMagicItemDetector", - "bases": [ - "PropertyClass" - ], - "hash": 998830168, - "properties": {} - }, - "1381022525": { - "name": "class SharedPointer", - "bases": [ - "AquariumBehaviorBase", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1381022525, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_fishData": { - "type": "std::string", - "id": 1, - "offset": 128, - "flags": 575, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3393318815 - } - } - }, - "996663137": { - "name": "struct std::pair", - "bases": [], - "hash": 996663137, - "properties": {} - }, - "1380961597": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1380961597, - "properties": { - "m_adventurePartyGID": { - "type": "gid", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2003479882 - }, - "m_adventurePartyName": { - "type": "unsigned int", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1899719436 - }, - "m_adventurePartyNameLocale": { - "type": "int", - "id": 2, - "offset": 84, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 695833705 - }, - "m_purposeType": { - "type": "int", - "id": 3, - "offset": 88, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1148443466 - }, - "m_purposeWorldID": { - "type": "unsigned int", - "id": 4, - "offset": 92, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1790486832 - }, - "m_partySize": { - "type": "int", - "id": 5, - "offset": 96, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 234201381 - }, - "m_onlineCount": { - "type": "int", - "id": 6, - "offset": 100, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 35306568 - } - } - }, - "207247178": { - "name": "class CSRAccessPassList", - "bases": [ - "PropertyClass" - ], - "hash": 207247178, - "properties": { - "m_passList": { - "type": "class CSRAccessPassInfo", - "id": 0, - "offset": 72, - "flags": 23, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 3089809672 - } - } - }, - "997322632": { - "name": "class InfractionEvent", - "bases": [ - "PropertyClass" - ], - "hash": 997322632, - "properties": { - "m_eventName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3493260286 - }, - "m_basePoints": { - "type": "float", - "id": 1, - "offset": 108, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 624575055 - }, - "m_repeatScaler": { - "type": "float", - "id": 2, - "offset": 112, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 322423826 - }, - "m_lifespan": { - "type": "std::string", - "id": 3, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3042809453 - }, - "m_collapse": { - "type": "bool", - "id": 4, - "offset": 156, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1782517958 - } - } - }, - "1381951784": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1381951784, - "properties": { - "m_pReqs": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2565964996 - }, - "m_pEffect": { - "type": "class SharedPointer", - "id": 1, - "offset": 88, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 400541736 - } - } - }, - "210080629": { - "name": "class NewListUpdate*", - "bases": [ - "TournamentUpdate", - "PropertyClass" - ], - "hash": 210080629, - "properties": { - "m_tournamentID": { - "type": "gid", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 695889746 - }, - "m_tournamentName": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3329241865 - }, - "m_tournamentNameID": { - "type": "unsigned int", - "id": 2, - "offset": 112, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1799846440 - }, - "m_clearData": { - "type": "bool", - "id": 3, - "offset": 116, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 890225684 - }, - "m_matches": { - "type": "class SharedPointer", - "id": 4, - "offset": 128, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 3618423638 - }, - "m_teams": { - "type": "class SharedPointer", - "id": 5, - "offset": 144, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1984373608 - }, - "m_brackets": { - "type": "class SharedPointer", - "id": 6, - "offset": 160, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1419131309 - }, - "m_totalTeams": { - "type": "int", - "id": 7, - "offset": 124, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1059363992 - } - } - }, - "996950791": { - "name": "class PathManager::NodeTemplateList*", - "bases": [ - "PropertyClass" - ], - "hash": 996950791, - "properties": { - "m_nodeList": { - "type": "class NodeObject*", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2187152017 - } - } - }, - "1381891467": { - "name": "class SpellFusionTemplate", - "bases": [ - "CoreTemplate", - "PropertyClass" - ], - "hash": 1381891467, - "properties": { - "m_behaviors": { - "type": "class BehaviorTemplate*", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1197808594 - }, - "m_templateID": { - "type": "unsigned int", - "id": 1, - "offset": 96, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1286746870 - }, - "m_debugName": { - "type": "std::string", - "id": 2, - "offset": 104, - "flags": 134217735, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3553984419 - }, - "m_displayKey": { - "type": "std::string", - "id": 3, - "offset": 136, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3023276954 - }, - "m_adjectives": { - "type": "std::string", - "id": 4, - "offset": 168, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2967855037 - }, - "m_primaryIngredient": { - "type": "class SpellIngredient*", - "id": 5, - "offset": 184, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1337011809 - }, - "m_secondaryIngredient": { - "type": "class SpellIngredient*", - "id": 6, - "offset": 192, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2076393285 - } - } - }, - "208493123": { - "name": "class MusicFileInfo", - "bases": [ - "PropertyClass" - ], - "hash": 208493123, - "properties": { - "m_altMusicFileName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2103410014 - }, - "m_requirements": { - "type": "class RequirementList", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2840988582 - } - } - }, - "996811752": { - "name": "class PathManager::PathTemplateList", - "bases": [ - "PropertyClass" - ], - "hash": 996811752, - "properties": { - "m_pathList": { - "type": "class PathObjectTemplate*", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2517543930 - } - } - }, - "1381403585": { - "name": "class WizStatisticScalerEffectTemplate", - "bases": [ - "StatisticEffectTemplate", - "GameEffectTemplate", - "PropertyClass" - ], - "hash": 1381403585, - "properties": { - "m_effectName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2029161513 - }, - "m_effectCategory": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1852673222 - }, - "m_sortOrder": { - "type": "int", - "id": 2, - "offset": 148, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1411218206 - }, - "m_duration": { - "type": "double", - "id": 3, - "offset": 192, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2727932435 - }, - "m_stackingCategories": { - "type": "std::string", - "id": 4, - "offset": 160, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1774497525 - }, - "m_isPersistent": { - "type": "bool", - "id": 5, - "offset": 153, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 923861920 - }, - "m_bIsOnPet": { - "type": "bool", - "id": 6, - "offset": 154, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 522593303 - }, - "m_isPublic": { - "type": "bool", - "id": 7, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1728439822 - }, - "m_visualEffectAddName": { - "type": "std::string", - "id": 8, - "offset": 200, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3382086694 - }, - "m_visualEffectRemoveName": { - "type": "std::string", - "id": 9, - "offset": 232, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1541697323 - }, - "m_onAddFunctorName": { - "type": "std::string", - "id": 10, - "offset": 280, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1561843107 - }, - "m_onRemoveFunctorName": { - "type": "std::string", - "id": 11, - "offset": 312, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2559017864 - }, - "m_stackingRule": { - "type": "enum STACKING_RULE", - "id": 12, - "offset": 144, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 431568889, - "enum_options": { - "STACKING_ALLOWED": 0, - "STACKING_NOSTACK": 1, - "STACKING_REPLACE": 2 - } - }, - "m_baseHitpoints": { - "type": "float", - "id": 13, - "offset": 360, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 686307060 - }, - "m_baseMana": { - "type": "float", - "id": 14, - "offset": 364, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1565696591 - }, - "m_xpPercentIncrease": { - "type": "float", - "id": 15, - "offset": 368, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1051081338 - }, - "m_goldPercent": { - "type": "float", - "id": 16, - "offset": 372, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1095720878 - }, - "m_wispBonusPercent": { - "type": "float", - "id": 17, - "offset": 376, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1304386546 - }, - "m_powerPipBonusPercent": { - "type": "float", - "id": 18, - "offset": 380, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1671446341 - }, - "m_shadowPipBonusPercent": { - "type": "float", - "id": 19, - "offset": 384, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1426533310 - }, - "m_shadowPipRating": { - "type": "float", - "id": 20, - "offset": 388, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 507126123 - }, - "m_archmasteryBonus": { - "type": "float", - "id": 21, - "offset": 392, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1445460001 - }, - "m_stunResistancePercent": { - "type": "float", - "id": 22, - "offset": 396, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1868382627 - }, - "m_school": { - "type": "std::string", - "id": 23, - "offset": 400, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2438566051 - }, - "m_pipConversionRating": { - "type": "float", - "id": 24, - "offset": 432, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 246855691 - }, - "m_criticalHitRating": { - "type": "float", - "id": 25, - "offset": 436, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1978690540 - }, - "m_blockRating": { - "type": "float", - "id": 26, - "offset": 440, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2088486759 - }, - "m_dmgBonusPercent": { - "type": "float", - "id": 27, - "offset": 444, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 194501159 - }, - "m_dmgBonusFlat": { - "type": "float", - "id": 28, - "offset": 448, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1837769725 - }, - "m_accBonusPercent": { - "type": "float", - "id": 29, - "offset": 452, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 331557526 - }, - "m_apBonusPercent": { - "type": "float", - "id": 30, - "offset": 456, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1228557984 - }, - "m_dmgReducePercent": { - "type": "float", - "id": 31, - "offset": 460, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1426050712 - }, - "m_dmgReduceFlat": { - "type": "float", - "id": 32, - "offset": 464, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1218184718 - }, - "m_accReducePercent": { - "type": "float", - "id": 33, - "offset": 468, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1653943527 - }, - "m_healBonusPercent": { - "type": "float", - "id": 34, - "offset": 472, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 562313577 - }, - "m_healIncBonusPercent": { - "type": "float", - "id": 35, - "offset": 476, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2182535587 - }, - "m_fishingLuckBonusPercent": { - "type": "float", - "id": 36, - "offset": 480, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1363349254 - } - } - }, - "207643327": { - "name": "class ZoneTokenBase*", - "bases": [ - "PropertyClass" - ], - "hash": 207643327, - "properties": { - "m_debugName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3553984419 - }, - "m_adjectiveList": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 3195213318 - }, - "m_icon": { - "type": "std::string", - "id": 2, - "offset": 120, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1717182340 - }, - "m_iconBW": { - "type": "std::string", - "id": 3, - "offset": 152, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2047461085 - }, - "m_description": { - "type": "std::string", - "id": 4, - "offset": 184, - "flags": 8388639, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1649374815 - }, - "m_displayMode": { - "type": "enum ZTDisplayMode", - "id": 5, - "offset": 216, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2216526410, - "enum_options": { - "ZTDM_Shown": 0, - "ZTDM_Discoverable": 1, - "ZTDM_Hidden": 2 - } - }, - "m_storage": { - "type": "enum ZTStorage", - "id": 6, - "offset": 220, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2290454852, - "enum_options": { - "ZTS_Player": 0, - "ZTS_Zone": 1 - } - }, - "m_onEnable": { - "type": "class SharedPointer", - "id": 7, - "offset": 224, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2591736864 - }, - "m_onDiscover": { - "type": "class SharedPointer", - "id": 8, - "offset": 240, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2826026872 - }, - "m_onDisable": { - "type": "class SharedPointer", - "id": 9, - "offset": 256, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1860656717 - }, - "m_sourceID": { - "type": "gid", - "id": 10, - "offset": 272, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1134700470 - }, - "m_inZone": { - "type": "bool", - "id": 11, - "offset": 280, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 564535654 - }, - "m_enabled": { - "type": "bool", - "id": 12, - "offset": 281, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 504506718 - }, - "m_discovered": { - "type": "bool", - "id": 13, - "offset": 282, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2060478331 - } - } - }, - "207643322": { - "name": "class ZoneTokenBase", - "bases": [ - "PropertyClass" - ], - "hash": 207643322, - "properties": { - "m_debugName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3553984419 - }, - "m_adjectiveList": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 3195213318 - }, - "m_icon": { - "type": "std::string", - "id": 2, - "offset": 120, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1717182340 - }, - "m_iconBW": { - "type": "std::string", - "id": 3, - "offset": 152, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2047461085 - }, - "m_description": { - "type": "std::string", - "id": 4, - "offset": 184, - "flags": 8388639, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1649374815 - }, - "m_displayMode": { - "type": "enum ZTDisplayMode", - "id": 5, - "offset": 216, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2216526410, - "enum_options": { - "ZTDM_Shown": 0, - "ZTDM_Discoverable": 1, - "ZTDM_Hidden": 2 - } - }, - "m_storage": { - "type": "enum ZTStorage", - "id": 6, - "offset": 220, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2290454852, - "enum_options": { - "ZTS_Player": 0, - "ZTS_Zone": 1 - } - }, - "m_onEnable": { - "type": "class SharedPointer", - "id": 7, - "offset": 224, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2591736864 - }, - "m_onDiscover": { - "type": "class SharedPointer", - "id": 8, - "offset": 240, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2826026872 - }, - "m_onDisable": { - "type": "class SharedPointer", - "id": 9, - "offset": 256, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1860656717 - }, - "m_sourceID": { - "type": "gid", - "id": 10, - "offset": 272, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1134700470 - }, - "m_inZone": { - "type": "bool", - "id": 11, - "offset": 280, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 564535654 - }, - "m_enabled": { - "type": "bool", - "id": 12, - "offset": 281, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 504506718 - }, - "m_discovered": { - "type": "bool", - "id": 13, - "offset": 282, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2060478331 - } - } - }, - "996940629": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 996940629, - "properties": { - "m_leaderboardSize": { - "type": "int", - "id": 0, - "offset": 88, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 683398282 - }, - "m_leaderboardList": { - "type": "class SharedPointer", - "id": 1, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2590936732 - }, - "m_topEntry": { - "type": "int", - "id": 2, - "offset": 92, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 554856543 - } - } - }, - "1382050381": { - "name": "class ReqIsSchool", - "bases": [ - "ConditionalSpellEffectRequirement", - "Requirement", - "PropertyClass" - ], - "hash": 1382050381, - "properties": { - "m_applyNOT": { - "type": "bool", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1746328074, - "enum_options": { - "__DEFAULT": 0 - } - }, - "m_operator": { - "type": "enum Requirement::Operator", - "id": 1, - "offset": 76, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2672792317, - "enum_options": { - "ROP_AND": 0, - "ROP_OR": 1, - "__DEFAULT": "ROP_AND" - } - }, - "m_targetType": { - "type": "enum ConditionalSpellEffectRequirement::RequirementTarget", - "id": 2, - "offset": 80, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2547737902, - "enum_options": { - "RT_Caster": 0, - "RT_Target": 1 - } - }, - "m_magicSchoolName": { - "type": "std::string", - "id": 3, - "offset": 88, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2939083077 - } - } - }, - "208437911": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 208437911, - "properties": { - "m_name": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1717359772 - }, - "m_distanceRatio": { - "type": "float", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1358433825 - }, - "m_value": { - "type": "float", - "id": 2, - "offset": 128, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 903191604 - }, - "m_needsUpdate": { - "type": "bool", - "id": 3, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1787634021 - } - } - }, - "997139432": { - "name": "class PathManager::PathTemplateList*", - "bases": [ - "PropertyClass" - ], - "hash": 997139432, - "properties": { - "m_pathList": { - "type": "class PathObjectTemplate*", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2517543930 - } - } - }, - "208186592": { - "name": "MadlibArgT", - "bases": [ - "MadlibArg", - "PropertyClass" - ], - "hash": 208186592, - "properties": { - "m_madlibToken": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3058682373 - }, - "m_madlibArgument": { - "type": "std::wstring", - "id": 1, - "offset": 112, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2172177124 - } - } - }, - "1385240368": { - "name": "class ClientHaltCinematicAction", - "bases": [ - "HaltCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 1385240368, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - } - } - }, - "997325704": { - "name": "class InfractionEvent*", - "bases": [ - "PropertyClass" - ], - "hash": 997325704, - "properties": { - "m_eventName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3493260286 - }, - "m_basePoints": { - "type": "float", - "id": 1, - "offset": 108, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 624575055 - }, - "m_repeatScaler": { - "type": "float", - "id": 2, - "offset": 112, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 322423826 - }, - "m_lifespan": { - "type": "std::string", - "id": 3, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3042809453 - }, - "m_collapse": { - "type": "bool", - "id": 4, - "offset": 156, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1782517958 - } - } - }, - "1384040277": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1384040277, - "properties": {} - }, - "1382358890": { - "name": "class SharedPointer", - "bases": [ - "TutorialLogBehaviorBase", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1382358890, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_tutorialTipData": { - "type": "std::string", - "id": 1, - "offset": 128, - "flags": 551, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3119782422 - } - } - }, - "208553075": { - "name": "class MessageBoardMessage*", - "bases": [ - "PropertyClass" - ], - "hash": 208553075, - "properties": { - "m_playerGID": { - "type": "gid", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 578537369 - }, - "m_messageBoardMessageType": { - "type": "int", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1435388398 - }, - "m_playerName": { - "type": "std::string", - "id": 2, - "offset": 88, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3407553929 - }, - "m_messageBoardActivityType": { - "type": "int", - "id": 3, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1226468534 - }, - "m_worldID": { - "type": "unsigned int", - "id": 4, - "offset": 124, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 397177058 - }, - "m_partyNameLocale": { - "type": "int", - "id": 5, - "offset": 128, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 104095035 - }, - "m_centralSeconds": { - "type": "unsigned int", - "id": 6, - "offset": 132, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1225584997 - }, - "m_removalTime": { - "type": "unsigned int", - "id": 7, - "offset": 136, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1506221490 - }, - "m_creationTime": { - "type": "unsigned int", - "id": 8, - "offset": 140, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2142268593 - }, - "m_playerResponses": { - "type": "gid", - "id": 9, - "offset": 144, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1006378727 - } - } - }, - "997557873": { - "name": "class ObstacleCoursePendulumBehaviorTemplate", - "bases": [ - "ObstacleCourseObstacleBehaviorTemplate", - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 997557873, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - }, - "m_rate": { - "type": "double", - "id": 1, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2117614265 - }, - "m_penaltyTime": { - "type": "double", - "id": 2, - "offset": 128, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3890998489 - }, - "m_boxAngle": { - "type": "double", - "id": 3, - "offset": 136, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2280680509 - }, - "m_nearMissBoxAngle": { - "type": "double", - "id": 4, - "offset": 144, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2597648767 - }, - "m_nearMissWidth": { - "type": "double", - "id": 5, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3819808431 - }, - "m_pendulumHeight": { - "type": "double", - "id": 6, - "offset": 160, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3283581360 - }, - "m_angleMax": { - "type": "double", - "id": 7, - "offset": 168, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2853267002 - }, - "m_pendulumWidth": { - "type": "double", - "id": 8, - "offset": 176, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2478418615 - }, - "m_collisionHeight": { - "type": "double", - "id": 9, - "offset": 184, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3980975122 - }, - "m_pendulumHitSoundList": { - "type": "class WeightedList", - "id": 10, - "offset": 192, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1356951419 - } - } - }, - "1382157496": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1382157496, - "properties": { - "m_housingBlobObjectList": { - "type": "class SharedPointer", - "id": 0, - "offset": 80, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2812881480 - } - } - }, - "208493128": { - "name": "class MusicFileInfo*", - "bases": [ - "PropertyClass" - ], - "hash": 208493128, - "properties": { - "m_altMusicFileName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2103410014 - }, - "m_requirements": { - "type": "class RequirementList", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2840988582 - } - } - }, - "1382096106": { - "name": "class SharedPointer", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 1382096106, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - }, - "m_radius": { - "type": "float", - "id": 1, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 989410271 - }, - "m_offsetX": { - "type": "float", - "id": 2, - "offset": 124, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 315454742 - }, - "m_offsetY": { - "type": "float", - "id": 3, - "offset": 128, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 315454743 - }, - "m_offsetZ": { - "type": "float", - "id": 4, - "offset": 132, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 315454744 - }, - "m_locationName": { - "type": "std::string", - "id": 5, - "offset": 136, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1824218389 - }, - "m_housingExtraZone": { - "type": "std::string", - "id": 6, - "offset": 168, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2893855128 - }, - "m_requirementList": { - "type": "class RequirementList*", - "id": 7, - "offset": 200, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3581372079 - } - } - }, - "999930307": { - "name": "class RaidGateBehaviorBase*", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 999930307, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_raidKeyTemplateID": { - "type": "unsigned int", - "id": 1, - "offset": 112, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 884418367 - } - } - }, - "210080626": { - "name": "class NewListUpdate", - "bases": [ - "TournamentUpdate", - "PropertyClass" - ], - "hash": 210080626, - "properties": { - "m_tournamentID": { - "type": "gid", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 695889746 - }, - "m_tournamentName": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3329241865 - }, - "m_tournamentNameID": { - "type": "unsigned int", - "id": 2, - "offset": 112, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1799846440 - }, - "m_clearData": { - "type": "bool", - "id": 3, - "offset": 116, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 890225684 - }, - "m_matches": { - "type": "class SharedPointer", - "id": 4, - "offset": 128, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 3618423638 - }, - "m_teams": { - "type": "class SharedPointer", - "id": 5, - "offset": 144, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1984373608 - }, - "m_brackets": { - "type": "class SharedPointer", - "id": 6, - "offset": 160, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1419131309 - }, - "m_totalTeams": { - "type": "int", - "id": 7, - "offset": 124, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1059363992 - } - } - }, - "999496944": { - "name": "class ChangeActorStateCinematicAction*", - "bases": [ - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 999496944, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - }, - "m_newState": { - "type": "std::string", - "id": 2, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2153420230 - } - } - }, - "595084853": { - "name": "class CastleToursFavoritesBehavior*", - "bases": [ - "CastleToursFavoritesBehaviorBase", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 595084853, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_castleToursFavoritesData": { - "type": "std::string", - "id": 1, - "offset": 128, - "flags": 575, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1708015073 - } - } - }, - "1774211212": { - "name": "class SharedPointer", - "bases": [ - "ConditionalSpellEffectRequirement", - "Requirement", - "PropertyClass" - ], - "hash": 1774211212, - "properties": { - "m_applyNOT": { - "type": "bool", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1746328074, - "enum_options": { - "__DEFAULT": 0 - } - }, - "m_operator": { - "type": "enum Requirement::Operator", - "id": 1, - "offset": 76, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2672792317, - "enum_options": { - "ROP_AND": 0, - "ROP_OR": 1, - "__DEFAULT": "ROP_AND" - } - }, - "m_targetType": { - "type": "enum ConditionalSpellEffectRequirement::RequirementTarget", - "id": 2, - "offset": 80, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2547737902, - "enum_options": { - "RT_Caster": 0, - "RT_Target": 1 - } - }, - "m_disposition": { - "type": "enum SpellEffect::kHangingDisposition", - "id": 3, - "offset": 88, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1904841031, - "enum_options": { - "SpellEffect::kBoth": 0, - "SpellEffect::kBeneficial": 1, - "SpellEffect::kHarmful": 2 - } - }, - "m_minCount": { - "type": "int", - "id": 4, - "offset": 92, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1486503815 - }, - "m_maxCount": { - "type": "int", - "id": 5, - "offset": 96, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 136048585 - } - } - }, - "1772497408": { - "name": "class MoveBehaviorClient*", - "bases": [ - "MoveBehavior", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1772497408, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_nFlags": { - "type": "unsigned int", - "id": 1, - "offset": 112, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 922328456 - }, - "m_nMoveState": { - "type": "enum MoveState", - "id": 2, - "offset": 116, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1430960270, - "enum_options": { - "MS_WALKING": 0, - "MS_RUNNING": 1, - "MS_SWIMMING": 2, - "MS_FLYING": 3, - "MS_JUMPING": 4, - "MS_FALLING": 5 - } - } - } - }, - "595095093": { - "name": "class CastleToursFavoritesBehavior", - "bases": [ - "CastleToursFavoritesBehaviorBase", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 595095093, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_castleToursFavoritesData": { - "type": "std::string", - "id": 1, - "offset": 128, - "flags": 575, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1708015073 - } - } - }, - "211235820": { - "name": "class ExpansionData*", - "bases": [ - "PropertyClass" - ], - "hash": 211235820, - "properties": { - "m_category": { - "type": "enum ExpansionData::Category", - "id": 0, - "offset": 72, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2705349254, - "enum_options": { - "EDC_Bank": 0, - "EDC_FriendsList": 1 - } - }, - "m_maxExpansions": { - "type": "int", - "id": 1, - "offset": 76, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 944258472 - }, - "m_expansionSize": { - "type": "int", - "id": 2, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 186190666 - } - } - }, - "1773656594": { - "name": "class SharedPointer", - "bases": [ - "CinematicDefTemplate", - "CoreTemplate", - "PropertyClass" - ], - "hash": 1773656594, - "properties": { - "m_behaviors": { - "type": "class BehaviorTemplate*", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1197808594 - }, - "m_nifFile": { - "type": "std::string", - "id": 1, - "offset": 136, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2694762008 - }, - "m_delay": { - "type": "double", - "id": 2, - "offset": 168, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2689597116 - }, - "m_cinematicName": { - "type": "std::string", - "id": 3, - "offset": 96, - "flags": 134217735, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2611527497 - }, - "m_completeEvents": { - "type": "class CinematicEventInfo*", - "id": 4, - "offset": 272, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2945338320 - }, - "m_stateChangeEvents": { - "type": "class CinematicEventInfo*", - "id": 5, - "offset": 304, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1874505374 - }, - "m_stateInteractions": { - "type": "class CinematicInteractInfo*", - "id": 6, - "offset": 336, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1949887389 - }, - "m_targetGameState": { - "type": "std::string", - "id": 7, - "offset": 176, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3607550909 - }, - "m_actorStateSet": { - "type": "std::string", - "id": 8, - "offset": 208, - "flags": 268435463, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1765258049, - "enum_options": { - "__BASECLASS": "ObjStateSet" - } - }, - "m_rootAsset": { - "type": "std::string", - "id": 9, - "offset": 240, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3506101791 - } - } - }, - "211113118": { - "name": "class TestControlTableWindow", - "bases": [ - "Window", - "PropertyClass" - ], - "hash": 211113118, - "properties": { - "m_sName": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306437263 - }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621225959 - }, - "m_Style": { - "type": "unsigned int", - "id": 2, - "offset": 152, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "SCALE_CHILDREN": 2, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "FOCUS_LOCKED": 64, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152 - } - }, - "m_Flags": { - "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } - }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3105139380 - }, - "m_fTargetAlpha": { - "type": "float", - "id": 5, - "offset": 212, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1809129834 - }, - "m_fDisabledAlpha": { - "type": "float", - "id": 6, - "offset": 216, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1389987675 - }, - "m_fAlpha": { - "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 482130755 - }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3623628394 - }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2102211316 - }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1846695875 - }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3389835433 - }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2547159940 - }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2587533771 - }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3091503757 - } - } - }, - "210944601": { - "name": "class SharedPointer", - "bases": [ - "GamebryoBody", - "Body", - "PropertyClass" - ], - "hash": 210944601, - "properties": { - "m_position": { - "type": "class Vector3D", - "id": 0, - "offset": 88, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3697900983 - }, - "m_pitch": { - "type": "float", - "id": 1, - "offset": 100, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 896371695 - }, - "m_roll": { - "type": "float", - "id": 2, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 310020272 - }, - "m_yaw": { - "type": "float", - "id": 3, - "offset": 108, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 357256328 - }, - "m_fHeight": { - "type": "float", - "id": 4, - "offset": 132, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 401539638 - }, - "m_scale": { - "type": "float", - "id": 5, - "offset": 112, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 899693439 - } - } - }, - "596383997": { - "name": "class ControlEdit", - "bases": [ - "Window", - "PropertyClass" - ], - "hash": 596383997, - "properties": { - "m_sName": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306437263 - }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621225959 - }, - "m_Style": { - "type": "unsigned int", - "id": 2, - "offset": 152, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152, - "FORCE_NUMERIC": 16777216, - "FORCE_ALPHA": 268435456, - "FORCE_ALPHANUMERIC": 536870912, - "FORCE_INTEGER": 33554432, - "FORCE_POSITIVE": 67108864, - "FORCE_RANGE": 134217728 - } - }, - "m_Flags": { - "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } - }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3105139380 - }, - "m_fTargetAlpha": { - "type": "float", - "id": 5, - "offset": 212, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1809129834 - }, - "m_fDisabledAlpha": { - "type": "float", - "id": 6, - "offset": 216, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1389987675 - }, - "m_fAlpha": { - "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 482130755 - }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3623628394 - }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2102211316 - }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1846695875 - }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3389835433 - }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2547159940 - }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2587533771 - }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3091503757 - }, - "m_sText": { - "type": "std::wstring", - "id": 16, - "offset": 584, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2102642960 - }, - "m_nMaxLength": { - "type": "int", - "id": 17, - "offset": 620, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1183478416 - }, - "m_bPassword": { - "type": "bool", - "id": 18, - "offset": 624, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1604468200 - }, - "m_bLog": { - "type": "bool", - "id": 19, - "offset": 625, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 221687287 - }, - "m_previousNext": { - "type": "bool", - "id": 20, - "offset": 627, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 858581071 - }, - "m_nMaxLogSize": { - "type": "int", - "id": 21, - "offset": 712, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 779573899 - }, - "m_bEditing": { - "type": "bool", - "id": 22, - "offset": 616, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1243218553 - }, - "m_bAllowPaste": { - "type": "bool", - "id": 23, - "offset": 626, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1129316721 - }, - "m_nLogPosition": { - "type": "int", - "id": 24, - "offset": 704, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1120160767 - }, - "m_nCursor": { - "type": "int", - "id": 25, - "offset": 716, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1876782150 - }, - "m_nEditBegin": { - "type": "int", - "id": 26, - "offset": 720, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1066592403 - }, - "m_nEditEnd": { - "type": "int", - "id": 27, - "offset": 724, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1560905669 - }, - "m_sSavedText": { - "type": "std::wstring", - "id": 28, - "offset": 728, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2197953283 - }, - "m_fCursorBlinkSpeed": { - "type": "float", - "id": 29, - "offset": 760, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2232655228 - }, - "m_fCursorTimer": { - "type": "float", - "id": 30, - "offset": 764, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1929942748 - }, - "m_bCursorBlink": { - "type": "bool", - "id": 31, - "offset": 768, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 683441507 - }, - "m_fMinRange": { - "type": "double", - "id": 32, - "offset": 776, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3079523396 - }, - "m_fMaxRange": { - "type": "double", - "id": 33, - "offset": 784, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3876551814 - }, - "m_nPrecision": { - "type": "int", - "id": 34, - "offset": 792, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1404974196 - }, - "m_bDeleteOnFirstChar": { - "type": "bool", - "id": 35, - "offset": 618, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 902105643 - } - } - }, - "596139110": { - "name": "class TransformationEffectInfo", - "bases": [ - "GameEffectInfo", - "PropertyClass" - ], - "hash": 596139110, - "properties": { - "m_effectName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2029161513 - }, - "m_sRace": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 268435463, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306580681, - "enum_options": { - "__BASECLASS": "CharacterRaceTable" - } - }, - "m_eGender": { - "type": "enum eGender", - "id": 2, - "offset": 136, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2776344943, - "enum_options": { - "Male": 1, - "Female": 0, - "Neutral": 2 - } - }, - "m_fScale": { - "type": "float", - "id": 3, - "offset": 140, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 503137701 - }, - "m_nPrimaryColor": { - "type": "int", - "id": 4, - "offset": 144, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 310334923 - }, - "m_nSecondaryColor": { - "type": "int", - "id": 5, - "offset": 148, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 516938671 - }, - "m_nPatternOption": { - "type": "int", - "id": 6, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 413195679 - }, - "m_nGeometryOption": { - "type": "int", - "id": 7, - "offset": 156, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 676541869 - }, - "m_sNaturalAttack": { - "type": "std::string", - "id": 8, - "offset": 160, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2131867453 - } - } - }, - "1775158314": { - "name": "class PvPStatueBehavior*", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1775158314, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_targetLeague": { - "type": "std::string", - "id": 1, - "offset": 112, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3312829397 - }, - "m_rank": { - "type": "int", - "id": 2, - "offset": 144, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 219803942 - }, - "m_refreshRateSec": { - "type": "int", - "id": 3, - "offset": 148, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 418402320 - }, - "m_groundOffset": { - "type": "float", - "id": 4, - "offset": 152, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 684524077 - }, - "m_yaw": { - "type": "float", - "id": 5, - "offset": 156, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 357256328 - }, - "m_showNametag": { - "type": "bool", - "id": 6, - "offset": 160, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 584664753 - }, - "m_showInGrace": { - "type": "bool", - "id": 7, - "offset": 161, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1033917517 - }, - "m_showActive": { - "type": "bool", - "id": 8, - "offset": 162, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 685431312 - }, - "m_scale": { - "type": "float", - "id": 9, - "offset": 164, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 899693439 - }, - "m_alpha": { - "type": "float", - "id": 10, - "offset": 168, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 878686493 - }, - "m_animDelaySec": { - "type": "float", - "id": 11, - "offset": 172, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2131058854 - }, - "m_animChance": { - "type": "float", - "id": 12, - "offset": 176, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 434823806 - }, - "m_animList": { - "type": "std::string", - "id": 13, - "offset": 184, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2531745852 - }, - "m_leagueID": { - "type": "unsigned int", - "id": 14, - "offset": 200, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 692361645 - }, - "m_seasonID": { - "type": "unsigned int", - "id": 15, - "offset": 204, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 535260643 - }, - "m_startTime": { - "type": "unsigned int", - "id": 16, - "offset": 208, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1598371274 - }, - "m_visualBlob": { - "type": "std::string", - "id": 17, - "offset": 216, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1691722510 - } - } - }, - "1774565521": { - "name": "class CinematicEventInfo", - "bases": [ - "PropertyClass" - ], - "hash": 1774565521, - "properties": { - "m_event": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2291276253 - }, - "m_newState": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2153420230 - }, - "m_requiredState": { - "type": "std::string", - "id": 2, - "offset": 136, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2654559709 - } - } - }, - "211154078": { - "name": "class TestControlTableWindow*", - "bases": [ - "Window", - "PropertyClass" - ], - "hash": 211154078, - "properties": { - "m_sName": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306437263 - }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621225959 - }, - "m_Style": { - "type": "unsigned int", - "id": 2, - "offset": 152, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "SCALE_CHILDREN": 2, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "FOCUS_LOCKED": 64, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152 - } - }, - "m_Flags": { - "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } - }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3105139380 - }, - "m_fTargetAlpha": { - "type": "float", - "id": 5, - "offset": 212, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1809129834 - }, - "m_fDisabledAlpha": { - "type": "float", - "id": 6, - "offset": 216, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1389987675 - }, - "m_fAlpha": { - "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 482130755 - }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3623628394 - }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2102211316 - }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1846695875 - }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3389835433 - }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2547159940 - }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2587533771 - }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3091503757 - } - } - }, - "596414623": { - "name": "class ControlText", - "bases": [ - "Window", - "PropertyClass" - ], - "hash": 596414623, - "properties": { - "m_sName": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306437263 - }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621225959 - }, - "m_Style": { - "type": "unsigned int", - "id": 2, - "offset": 152, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152, - "DO_NOT_WRAP": 134217728, - "FIT_TEXT": 268435456 - } - }, - "m_Flags": { - "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } - }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3105139380 - }, - "m_fTargetAlpha": { - "type": "float", - "id": 5, - "offset": 212, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1809129834 - }, - "m_fDisabledAlpha": { - "type": "float", - "id": 6, - "offset": 216, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1389987675 - }, - "m_fAlpha": { - "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 482130755 - }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3623628394 - }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2102211316 - }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1846695875 - }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3389835433 - }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2547159940 - }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2587533771 - }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3091503757 - }, - "m_sText": { - "type": "std::wstring", - "id": 16, - "offset": 584, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2102642960 - }, - "m_sTooltip": { - "type": "std::wstring", - "id": 17, - "offset": 616, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1680475798 - }, - "m_bUseDropShadow": { - "type": "bool", - "id": 18, - "offset": 653, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 93063037 - }, - "m_bUseOutline": { - "type": "bool", - "id": 19, - "offset": 654, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 744292994 - }, - "m_bEnableWordWrap": { - "type": "bool", - "id": 20, - "offset": 655, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 430904562 - }, - "m_bEnableToggle": { - "type": "bool", - "id": 21, - "offset": 652, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1937994142 - }, - "m_nLeadingAdjust": { - "type": "int", - "id": 22, - "offset": 656, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1559480167 - } - } - }, - "211235823": { - "name": "class ExpansionData", - "bases": [ - "PropertyClass" - ], - "hash": 211235823, - "properties": { - "m_category": { - "type": "enum ExpansionData::Category", - "id": 0, - "offset": 72, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2705349254, - "enum_options": { - "EDC_Bank": 0, - "EDC_FriendsList": 1 - } - }, - "m_maxExpansions": { - "type": "int", - "id": 1, - "offset": 76, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 944258472 - }, - "m_expansionSize": { - "type": "int", - "id": 2, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 186190666 - } - } - }, - "1783795726": { - "name": "class DynaModDelta", - "bases": [ - "DynaMod", - "PropertyClass" - ], - "hash": 1783795726, - "properties": { - "m_clientTag": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3409856790 - }, - "m_zoneName": { - "type": "std::string", - "id": 1, - "offset": 112, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2171167736 - }, - "m_zoneInstance": { - "type": "gid", - "id": 2, - "offset": 152, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 449538121 - }, - "m_originator": { - "type": "gid", - "id": 3, - "offset": 72, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 709051254 - }, - "m_index": { - "type": "int", - "id": 4, - "offset": 160, - "flags": 30, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 798031442 - }, - "m_zoneID": { - "type": "unsigned int", - "id": 5, - "offset": 144, - "flags": 16, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1440651126 - }, - "m_remove": { - "type": "bool", - "id": 6, - "offset": 176, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 906763969 - }, - "m_state": { - "type": "std::string", - "id": 7, - "offset": 184, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2307803100 - }, - "m_stateID": { - "type": "unsigned int", - "id": 8, - "offset": 216, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1849561019 - } - } - }, - "601407923": { - "name": "class ControlBar", - "bases": [ - "Window", - "PropertyClass" - ], - "hash": 601407923, - "properties": { - "m_sName": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306437263 - }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621225959 - }, - "m_Style": { - "type": "unsigned int", - "id": 2, - "offset": 152, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "SCALE_CHILDREN": 2, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "FOCUS_LOCKED": 64, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152 - } - }, - "m_Flags": { - "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } - }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3105139380 - }, - "m_fTargetAlpha": { - "type": "float", - "id": 5, - "offset": 212, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1809129834 - }, - "m_fDisabledAlpha": { - "type": "float", - "id": 6, - "offset": 216, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1389987675 - }, - "m_fAlpha": { - "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 482130755 - }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3623628394 - }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2102211316 - }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1846695875 - }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3389835433 - }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2547159940 - }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2587533771 - }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3091503757 - }, - "m_fPosition": { - "type": "float", - "id": 16, - "offset": 584, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1808212114 - }, - "m_BaseColor": { - "type": "class Color", - "id": 17, - "offset": 588, - "flags": 262279, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2172251096 - }, - "m_BarColor": { - "type": "class Color", - "id": 18, - "offset": 592, - "flags": 262279, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2259916498 - }, - "m_bDisplayVertical": { - "type": "bool", - "id": 19, - "offset": 596, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1359621189 - }, - "m_pBarMaterial": { - "type": "class SharedPointer", - "id": 20, - "offset": 600, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2481929515 - }, - "m_pTopLeftMaterial": { - "type": "class SharedPointer", - "id": 21, - "offset": 616, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3248096916 - }, - "m_pCenterMaterial": { - "type": "class SharedPointer", - "id": 22, - "offset": 632, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1519560055 - }, - "m_pBottomRightMaterial": { - "type": "class SharedPointer", - "id": 23, - "offset": 648, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2932444745 - } - } - }, - "1778176712": { - "name": "class TextureRemapBehaviorTemplate", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 1778176712, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - } - } - }, - "598787175": { - "name": "class CinematicSoundEmitterInfo*", - "bases": [ - "PropertyClass" - ], - "hash": 598787175, - "properties": { - "m_volume": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1162855023 - }, - "m_loopCount": { - "type": "int", - "id": 1, - "offset": 76, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 865634717 - }, - "m_priority": { - "type": "int", - "id": 2, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1235205852 - }, - "m_progression": { - "type": "enum CinematicSoundEmitterInfo::Progression", - "id": 3, - "offset": 84, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2562723160, - "enum_options": { - "Sequence": 0, - "Random": 1, - "SequenceOnceOnly": 2, - "RandomNoRepeat": 3 - } - }, - "m_progressMin": { - "type": "float", - "id": 4, - "offset": 88, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1497550192 - }, - "m_progressMax": { - "type": "float", - "id": 5, - "offset": 92, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1497549938 - }, - "m_trackFilenameList": { - "type": "std::string", - "id": 6, - "offset": 96, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2531081709 - }, - "m_category": { - "type": "enum CinematicSoundEmitterInfo::AudioCategory", - "id": 7, - "offset": 120, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2525629195, - "enum_options": { - "AudioCategory_Irrelevent": 0, - "AudioCategory_Accoustic": 1, - "AudioCategory_Noise": 2, - "AudioCategory_Music": 3, - "AudioCategory_MusicAtSFXVolume": 4, - "AudioCategory_Dialog": 5, - "AudioCategory_UI": 6, - "AudioCategory_NoiseAtMusicVolume": 7 - } - }, - "m_name": { - "type": "std::string", - "id": 8, - "offset": 144, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1717359772 - }, - "m_useClientLocation": { - "type": "bool", - "id": 9, - "offset": 176, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 98585784 - }, - "m_fadeInDuration": { - "type": "float", - "id": 10, - "offset": 124, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 770484100 - }, - "m_fadeOutDuration": { - "type": "float", - "id": 11, - "offset": 128, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 666963557 - }, - "m_wetReverb": { - "type": "float", - "id": 12, - "offset": 136, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1024635181 - }, - "m_dryReverb": { - "type": "float", - "id": 13, - "offset": 132, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 403787084 - }, - "m_isStreamed": { - "type": "bool", - "id": 14, - "offset": 140, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 906929764 - } - } - }, - "1776162513": { - "name": "class SharedPointer", - "bases": [ - "RemoveBacklashEffectCinematicAction", - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 1776162513, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - } - } - }, - "346713663": { - "name": "class SharedPointer", - "bases": [], - "hash": 346713663, - "properties": {} - }, - "597523807": { - "name": "class ControlTree", - "bases": [ - "Window", - "PropertyClass" - ], - "hash": 597523807, - "properties": { - "m_sName": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306437263 - }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621225959 - }, - "m_Style": { - "type": "unsigned int", - "id": 2, - "offset": 152, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152, - "SINGLE_EXPAND": 16777216 - } - }, - "m_Flags": { - "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } - }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3105139380 - }, - "m_fTargetAlpha": { - "type": "float", - "id": 5, - "offset": 212, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1809129834 - }, - "m_fDisabledAlpha": { - "type": "float", - "id": 6, - "offset": 216, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1389987675 - }, - "m_fAlpha": { - "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 482130755 - }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3623628394 - }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2102211316 - }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1846695875 - }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3389835433 - }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2547159940 - }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2587533771 - }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3091503757 - }, - "m_nIndent": { - "type": "int", - "id": 16, - "offset": 584, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2102774666 - }, - "m_pRoot": { - "type": "struct ControlTree::Item*", - "id": 17, - "offset": 592, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1289445775 - }, - "m_pCursorOver": { - "type": "struct ControlTree::Item*", - "id": 18, - "offset": 600, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2025071845 - }, - "m_pSelected": { - "type": "struct ControlTree::Item*", - "id": 19, - "offset": 608, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1115130964 - }, - "m_bCursorInWindow": { - "type": "bool", - "id": 20, - "offset": 616, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1768047842 - } - } - }, - "1775751166": { - "name": "class ZoneTokenTrackingBehavior*", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1775751166, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - } - } - }, - "273923706": { - "name": "class Window", - "bases": [ - "PropertyClass" - ], - "hash": 273923706, - "properties": { - "m_sName": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306437263 - }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621225959 - }, - "m_Style": { - "type": "unsigned int", - "id": 2, - "offset": 152, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "SCALE_CHILDREN": 2, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "FOCUS_LOCKED": 64, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152 - } - }, - "m_Flags": { - "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } - }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3105139380 - }, - "m_fTargetAlpha": { - "type": "float", - "id": 5, - "offset": 212, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1809129834 - }, - "m_fDisabledAlpha": { - "type": "float", - "id": 6, - "offset": 216, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1389987675 - }, - "m_fAlpha": { - "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 482130755 - }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3623628394 - }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2102211316 - }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1846695875 - }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3389835433 - }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2547159940 - }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2587533771 - }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3091503757 - } - } - }, - "596467571": { - "name": "class HousingSignBehaviorTemplate", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 596467571, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - }, - "m_materialName": { - "type": "std::string", - "id": 1, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1878140043 - }, - "m_red": { - "type": "float", - "id": 2, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 357248818 - }, - "m_green": { - "type": "float", - "id": 3, - "offset": 156, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 886005576 - }, - "m_blue": { - "type": "float", - "id": 4, - "offset": 160, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 309442303 - }, - "m_hasShadow": { - "type": "bool", - "id": 5, - "offset": 164, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1762388821 - }, - "m_animate": { - "type": "bool", - "id": 6, - "offset": 165, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1790956978 - }, - "m_defaultSignText": { - "type": "std::string", - "id": 7, - "offset": 168, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3351101718 - } - } - }, - "1775750257": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1775750257, - "properties": { - "m_houseTemplateList": { - "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 835319593 - } - } - }, - "251412083": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 251412083, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - } - } - }, - "596467251": { - "name": "class HousingSignBehaviorTemplate*", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 596467251, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - }, - "m_materialName": { - "type": "std::string", - "id": 1, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1878140043 - }, - "m_red": { - "type": "float", - "id": 2, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 357248818 - }, - "m_green": { - "type": "float", - "id": 3, - "offset": 156, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 886005576 - }, - "m_blue": { - "type": "float", - "id": 4, - "offset": 160, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 309442303 - }, - "m_hasShadow": { - "type": "bool", - "id": 5, - "offset": 164, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1762388821 - }, - "m_animate": { - "type": "bool", - "id": 6, - "offset": 165, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1790956978 - }, - "m_defaultSignText": { - "type": "std::string", - "id": 7, - "offset": 168, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3351101718 - } - } - }, - "224841250": { - "name": "class MatchResult", - "bases": [ - "Result", - "PropertyClass" - ], - "hash": 224841250, - "properties": { - "m_requirements": { - "type": "class RequirementList*", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2840985510 - }, - "m_results": { - "type": "class ResultList*", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3776744154 - } - } - }, - "219206259": { - "name": "class SharedPointer", - "bases": [ - "CombatRule", - "PropertyClass" - ], - "hash": 219206259, - "properties": { - "m_alternateTurns": { - "type": "bool", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1974126767 - }, - "m_pipsForBothTeamsAtOnce": { - "type": "bool", - "id": 1, - "offset": 73, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 289530295 - } - } - }, - "1775891459": { - "name": "class SharedPointer", - "bases": [ - "CreatePipCinematicActorsFromResult", - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 1775891459, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - }, - "m_newActorName": { - "type": "std::string", - "id": 2, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2029131039 - } - } - }, - "215859203": { - "name": "class PvPMatchJoinQueueRequirements", - "bases": [ - "PropertyClass" - ], - "hash": 215859203, - "properties": { - "m_minLevel": { - "type": "int", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1496818518 - }, - "m_maxLevel": { - "type": "int", - "id": 1, - "offset": 76, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 146363288 - }, - "m_minEloRating": { - "type": "int", - "id": 2, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 979905379 - }, - "m_maxEloRating": { - "type": "int", - "id": 3, - "offset": 84, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 938224805 - }, - "m_minEloRank": { - "type": "int", - "id": 4, - "offset": 88, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1961133770 - }, - "m_maxEloRank": { - "type": "int", - "id": 5, - "offset": 92, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 194203532 - }, - "m_minMatchesPlayed": { - "type": "int", - "id": 6, - "offset": 96, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 650179746 - }, - "m_maxMatchesPlayed": { - "type": "int", - "id": 7, - "offset": 100, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1560790756 - }, - "m_requiredBadge": { - "type": "std::string", - "id": 8, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2633719087 - }, - "m_membersOnly": { - "type": "bool", - "id": 9, - "offset": 136, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1051823616 - }, - "m_friendsOnly": { - "type": "bool", - "id": 10, - "offset": 137, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1420401792 - } - } - }, - "597222636": { - "name": "class SharedPointer", - "bases": [ - "WidgetBackground", - "PropertyClass" - ], - "hash": 597222636, - "properties": { - "m_fBackgroundAlpha": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1164086307 - }, - "m_pTopLeftBackgroundAlphaMask": { - "type": "class SharedPointer", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2652729643 - }, - "m_pTopRightBackgroundAlphaMask": { - "type": "class SharedPointer", - "id": 2, - "offset": 96, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2236264926 - }, - "m_pBottomLeftBackgroundAlphaMask": { - "type": "class SharedPointer", - "id": 3, - "offset": 112, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3301927117 - }, - "m_pBottomRightBackgroundAlphaMask": { - "type": "class SharedPointer", - "id": 4, - "offset": 128, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2184945088 - }, - "m_pBottomBackgroundAlphaMask": { - "type": "class SharedPointer", - "id": 5, - "offset": 144, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2408122274 - }, - "m_pTopBackgroundAlphaMask": { - "type": "class SharedPointer", - "id": 6, - "offset": 160, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3440742656 - }, - "m_pLeftBackgroundAlphaMask": { - "type": "class SharedPointer", - "id": 7, - "offset": 176, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2348634648 - }, - "m_pRightBackgroundAlphaMask": { - "type": "class SharedPointer", - "id": 8, - "offset": 192, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2938548331 - }, - "m_pCenterBackgroundAlphaMask": { - "type": "class SharedPointer", - "id": 9, - "offset": 208, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3347258414 - }, - "m_TopLeftColor": { - "type": "class Color", - "id": 10, - "offset": 224, - "flags": 262151, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2827413723 - }, - "m_TopRightColor": { - "type": "class Color", - "id": 11, - "offset": 228, - "flags": 262151, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1853016654 - }, - "m_BottomLeftColor": { - "type": "class Color", - "id": 12, - "offset": 232, - "flags": 262151, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1172117245 - }, - "m_BottomRightColor": { - "type": "class Color", - "id": 13, - "offset": 236, - "flags": 262151, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3062807728 - } - } - }, - "211793389": { - "name": "class ConfirmOption*", - "bases": [ - "ServiceOptionBase", - "PropertyClass" - ], - "hash": 211793389, - "properties": { - "m_serviceName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2206028813 - }, - "m_iconKey": { - "type": "std::string", - "id": 1, - "offset": 168, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2457138637 - }, - "m_displayKey": { - "type": "std::string", - "id": 2, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3023276954 - }, - "m_serviceIndex": { - "type": "unsigned int", - "id": 3, - "offset": 204, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2103126710 - }, - "m_forceInteract": { - "type": "bool", - "id": 4, - "offset": 200, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1705789564 - }, - "m_confirmMessageTitleKey": { - "type": "std::string", - "id": 5, - "offset": 216, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1941136953 - }, - "m_confirmMessageTitleKeyAdvancedMode": { - "type": "std::string", - "id": 6, - "offset": 248, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3219201588 - }, - "m_confirmMessageKey": { - "type": "std::string", - "id": 7, - "offset": 280, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2088579351 - }, - "m_confirmMessageKeyAdvancedMode": { - "type": "std::string", - "id": 8, - "offset": 312, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2417239570 - }, - "m_promptSound": { - "type": "std::string", - "id": 9, - "offset": 344, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3178681510 - }, - "m_promptSoundAdvancedMode": { - "type": "std::string", - "id": 10, - "offset": 376, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1739626529 - }, - "m_acceptKey": { - "type": "std::string", - "id": 11, - "offset": 472, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3325790708 - }, - "m_declineKey": { - "type": "std::string", - "id": 12, - "offset": 504, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1679578008 - }, - "m_optionToConfirm": { - "type": "class SharedPointer", - "id": 13, - "offset": 536, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1224791766 - }, - "m_ignoreOption": { - "type": "std::string", - "id": 14, - "offset": 408, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1667595832 - }, - "m_ignoreAdvancedModeOption": { - "type": "std::string", - "id": 15, - "offset": 440, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2665095027 - } - } - }, - "596598143": { - "name": "class ControlDraw", - "bases": [ - "Window", - "PropertyClass" - ], - "hash": 596598143, - "properties": { - "m_sName": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306437263 - }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621225959 - }, - "m_Style": { - "type": "unsigned int", - "id": 2, - "offset": 152, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "SCALE_CHILDREN": 2, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "FOCUS_LOCKED": 64, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152 - } - }, - "m_Flags": { - "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } - }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3105139380 - }, - "m_fTargetAlpha": { - "type": "float", - "id": 5, - "offset": 212, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1809129834 - }, - "m_fDisabledAlpha": { - "type": "float", - "id": 6, - "offset": 216, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1389987675 - }, - "m_fAlpha": { - "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 482130755 - }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3623628394 - }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2102211316 - }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1846695875 - }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3389835433 - }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2547159940 - }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2587533771 - }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3091503757 - }, - "m_Markers": { - "type": "class ControlDraw::GesturePoint", - "id": 16, - "offset": 592, - "flags": 135, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2001006042 - }, - "m_RefPoints": { - "type": "class ControlDraw::GesturePoint", - "id": 17, - "offset": 616, - "flags": 135, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1442006431 - }, - "m_LineList": { - "type": "class ControlDraw::Line", - "id": 18, - "offset": 664, - "flags": 135, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2941180014 - } - } - }, - "211793384": { - "name": "class ConfirmOption", - "bases": [ - "ServiceOptionBase", - "PropertyClass" - ], - "hash": 211793384, - "properties": { - "m_serviceName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2206028813 - }, - "m_iconKey": { - "type": "std::string", - "id": 1, - "offset": 168, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2457138637 - }, - "m_displayKey": { - "type": "std::string", - "id": 2, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3023276954 - }, - "m_serviceIndex": { - "type": "unsigned int", - "id": 3, - "offset": 204, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2103126710 - }, - "m_forceInteract": { - "type": "bool", - "id": 4, - "offset": 200, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1705789564 - }, - "m_confirmMessageTitleKey": { - "type": "std::string", - "id": 5, - "offset": 216, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1941136953 - }, - "m_confirmMessageTitleKeyAdvancedMode": { - "type": "std::string", - "id": 6, - "offset": 248, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3219201588 - }, - "m_confirmMessageKey": { - "type": "std::string", - "id": 7, - "offset": 280, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2088579351 - }, - "m_confirmMessageKeyAdvancedMode": { - "type": "std::string", - "id": 8, - "offset": 312, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2417239570 - }, - "m_promptSound": { - "type": "std::string", - "id": 9, - "offset": 344, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3178681510 - }, - "m_promptSoundAdvancedMode": { - "type": "std::string", - "id": 10, - "offset": 376, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1739626529 - }, - "m_acceptKey": { - "type": "std::string", - "id": 11, - "offset": 472, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3325790708 - }, - "m_declineKey": { - "type": "std::string", - "id": 12, - "offset": 504, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1679578008 - }, - "m_optionToConfirm": { - "type": "class SharedPointer", - "id": 13, - "offset": 536, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1224791766 - }, - "m_ignoreOption": { - "type": "std::string", - "id": 14, - "offset": 408, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1667595832 - }, - "m_ignoreAdvancedModeOption": { - "type": "std::string", - "id": 15, - "offset": 440, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2665095027 - } - } - }, - "1777498103": { - "name": "class GuildMuseumGalleryInfo*", - "bases": [ - "PropertyClass" - ], - "hash": 1777498103, - "properties": { - "m_worldName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1846757476 - }, - "m_worldDoorTemplateID": { - "type": "unsigned int", - "id": 1, - "offset": 104, - "flags": 33554439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1255097074 - }, - "m_levelScaleLevel": { - "type": "int", - "id": 2, - "offset": 132, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1013218162 - }, - "m_galleryZone": { - "type": "std::string", - "id": 3, - "offset": 136, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2919416423 - }, - "m_exhibitList": { - "type": "class SharedPointer", - "id": 4, - "offset": 112, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2401157639 - }, - "m_displayName": { - "type": "std::string", - "id": 5, - "offset": 168, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2446900370 - }, - "m_debugName": { - "type": "std::string", - "id": 6, - "offset": 200, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3553984419 - } - } - }, - "1776782264": { - "name": "class std::list >", - "bases": [], - "hash": 1776782264, - "properties": {} - }, - "597500419": { - "name": "class ControlZone", - "bases": [ - "Window", - "PropertyClass" - ], - "hash": 597500419, - "properties": { - "m_sName": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306437263 - }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621225959 - }, - "m_Style": { - "type": "unsigned int", - "id": 2, - "offset": 152, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "SCALE_CHILDREN": 2, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "FOCUS_LOCKED": 64, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152 - } - }, - "m_Flags": { - "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } - }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3105139380 - }, - "m_fTargetAlpha": { - "type": "float", - "id": 5, - "offset": 212, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1809129834 - }, - "m_fDisabledAlpha": { - "type": "float", - "id": 6, - "offset": 216, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1389987675 - }, - "m_fAlpha": { - "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 482130755 - }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3623628394 - }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2102211316 - }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1846695875 - }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3389835433 - }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2547159940 - }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2587533771 - }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3091503757 - }, - "m_bButtonDown": { - "type": "bool", - "id": 16, - "offset": 584, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 840041705 - }, - "m_bCursorOver": { - "type": "bool", - "id": 17, - "offset": 585, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 283981103 - }, - "m_bSavedCursorOver": { - "type": "bool", - "id": 18, - "offset": 586, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1803318978 - } - } - }, - "214606636": { - "name": "class HousingPetBehavior*", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 214606636, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - } - } - }, - "213549285": { - "name": "class AnimationBehavior", - "bases": [ - "RenderBehavior", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 213549285, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - } - } - }, - "597500847": { - "name": "class ControlLine", - "bases": [ - "Window", - "PropertyClass" - ], - "hash": 597500847, - "properties": { - "m_sName": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306437263 - }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621225959 - }, - "m_Style": { - "type": "unsigned int", - "id": 2, - "offset": 152, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "SCALE_CHILDREN": 2, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "FOCUS_LOCKED": 64, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152 - } - }, - "m_Flags": { - "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } - }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3105139380 - }, - "m_fTargetAlpha": { - "type": "float", - "id": 5, - "offset": 212, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1809129834 - }, - "m_fDisabledAlpha": { - "type": "float", - "id": 6, - "offset": 216, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1389987675 - }, - "m_fAlpha": { - "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 482130755 - }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3623628394 - }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2102211316 - }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1846695875 - }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3389835433 - }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2547159940 - }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2587533771 - }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3091503757 - }, - "m_Color": { - "type": "class Color", - "id": 16, - "offset": 584, - "flags": 262279, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1753714077 - } - } - }, - "1777630230": { - "name": "class SharedPointer", - "bases": [ - "SG_GameAction", - "PropertyClass" - ], - "hash": 1777630230, - "properties": { - "m_target": { - "type": "enum SG_GameAction::SG_Target", - "id": 0, - "offset": 72, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1166870973, - "enum_options": { - "Target_Ball": 0, - "Target_Self": 1, - "Target_Connections": 2, - "__DEFAULT": "Target_Ball" - } - }, - "m_interactor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3125502454 - } - } - }, - "1777522679": { - "name": "class GuildMuseumGalleryInfo", - "bases": [ - "PropertyClass" - ], - "hash": 1777522679, - "properties": { - "m_worldName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1846757476 - }, - "m_worldDoorTemplateID": { - "type": "unsigned int", - "id": 1, - "offset": 104, - "flags": 33554439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1255097074 - }, - "m_levelScaleLevel": { - "type": "int", - "id": 2, - "offset": 132, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1013218162 - }, - "m_galleryZone": { - "type": "std::string", - "id": 3, - "offset": 136, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2919416423 - }, - "m_exhibitList": { - "type": "class SharedPointer", - "id": 4, - "offset": 112, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2401157639 - }, - "m_displayName": { - "type": "std::string", - "id": 5, - "offset": 168, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2446900370 - }, - "m_debugName": { - "type": "std::string", - "id": 6, - "offset": 200, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3553984419 - } - } - }, - "215531523": { - "name": "class PvPMatchJoinQueueRequirements*", - "bases": [ - "PropertyClass" - ], - "hash": 215531523, - "properties": { - "m_minLevel": { - "type": "int", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1496818518 - }, - "m_maxLevel": { - "type": "int", - "id": 1, - "offset": 76, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 146363288 - }, - "m_minEloRating": { - "type": "int", - "id": 2, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 979905379 - }, - "m_maxEloRating": { - "type": "int", - "id": 3, - "offset": 84, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 938224805 - }, - "m_minEloRank": { - "type": "int", - "id": 4, - "offset": 88, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1961133770 - }, - "m_maxEloRank": { - "type": "int", - "id": 5, - "offset": 92, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 194203532 - }, - "m_minMatchesPlayed": { - "type": "int", - "id": 6, - "offset": 96, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 650179746 - }, - "m_maxMatchesPlayed": { - "type": "int", - "id": 7, - "offset": 100, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1560790756 - }, - "m_requiredBadge": { - "type": "std::string", - "id": 8, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2633719087 - }, - "m_membersOnly": { - "type": "bool", - "id": 9, - "offset": 136, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1051823616 - }, - "m_friendsOnly": { - "type": "bool", - "id": 10, - "offset": 137, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1420401792 - } - } - }, - "598174810": { - "name": "class MonsterMagicWorldTotal*", - "bases": [ - "PropertyClass" - ], - "hash": 598174810, - "properties": { - "m_worldName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1846757476 - }, - "m_monsterCount": { - "type": "unsigned int", - "id": 1, - "offset": 108, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2119592350 - } - } - }, - "597893369": { - "name": "class SharedPointer", - "bases": [ - "TransformationEffect", - "GameEffectBase", - "PropertyClass" - ], - "hash": 597893369, - "properties": { - "m_currentTickCount": { - "type": "double", - "id": 0, - "offset": 80, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2533274692 - }, - "m_effectNameID": { - "type": "unsigned int", - "id": 1, - "offset": 96, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1204067144 - }, - "m_bIsOnPet": { - "type": "bool", - "id": 2, - "offset": 73, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 522593303 - }, - "m_originatorID": { - "type": "gid", - "id": 3, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1131810019 - }, - "m_itemSlotID": { - "type": "unsigned int", - "id": 4, - "offset": 112, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1895747595 - }, - "m_internalID": { - "type": "int", - "id": 5, - "offset": 92, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1643137924 - }, - "m_endTime": { - "type": "unsigned int", - "id": 6, - "offset": 88, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 716479635 - }, - "m_sRace": { - "type": "std::string", - "id": 7, - "offset": 128, - "flags": 268435487, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306580681, - "enum_options": { - "__BASECLASS": "CharacterRaceTable" - } - }, - "m_eGender": { - "type": "enum eGender", - "id": 8, - "offset": 160, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2776344943 - }, - "m_fScale": { - "type": "float", - "id": 9, - "offset": 164, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 503137701 - }, - "m_nPrimaryColor": { - "type": "int", - "id": 10, - "offset": 168, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 310334923 - }, - "m_nSecondaryColor": { - "type": "int", - "id": 11, - "offset": 172, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 516938671 - }, - "m_nPatternOption": { - "type": "int", - "id": 12, - "offset": 176, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 413195679 - }, - "m_nGeometryOption": { - "type": "int", - "id": 13, - "offset": 180, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 676541869 - }, - "m_sNaturalAttack": { - "type": "std::string", - "id": 14, - "offset": 184, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2131867453 - } - } - }, - "1781605467": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1781605467, - "properties": { - "m_target": { - "type": "enum SG_GameAction::SG_Target", - "id": 0, - "offset": 72, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1166870973, - "enum_options": { - "Target_Ball": 0, - "Target_Self": 1, - "Target_Connections": 2, - "__DEFAULT": "Target_Ball" - } - } - } - }, - "218034742": { - "name": "class PetCastEffectActorCinematicAction", - "bases": [ - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 218034742, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - } - } - }, - "1780868059": { - "name": "class DdWinAnimMoveMob*", - "bases": [ - "WinAnimMoveToLocationSpeed", - "WinAnimMoveToLocation", - "WindowAnimation", - "PropertyClass" - ], - "hash": 1780868059, - "properties": { - "m_bUseDeepCopy": { - "type": "bool", - "id": 0, - "offset": 72, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 433380635 - }, - "m_targetLocation": { - "type": "class Vector3D", - "id": 1, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2653859938 - }, - "m_fSpeed": { - "type": "float", - "id": 2, - "offset": 96, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 503609006 - }, - "m_facing": { - "type": "enum DoodleDoug::DdDirection", - "id": 3, - "offset": 112, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 591537519 - }, - "m_cameFrom": { - "type": "enum DoodleDoug::DdDirection", - "id": 4, - "offset": 116, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1071209393 - }, - "m_nextWaypoint": { - "type": "class Point", - "id": 5, - "offset": 120, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2346187452 - }, - "m_myBoard": { - "type": "class DoodleDoug*", - "id": 6, - "offset": 136, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2212758093 - } - } - }, - "217538642": { - "name": "class ClientObjectRemapBehavior", - "bases": [ - "ObjectRemapBehavior", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 217538642, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - } - } - }, - "598199386": { - "name": "class MonsterMagicWorldTotal", - "bases": [ - "PropertyClass" - ], - "hash": 598199386, - "properties": { - "m_worldName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1846757476 - }, - "m_monsterCount": { - "type": "unsigned int", - "id": 1, - "offset": 108, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2119592350 - } - } - }, - "1778533046": { - "name": "class ParticipantPipData", - "bases": [ - "PropertyClass" - ], - "hash": 1778533046, - "properties": { - "m_partID": { - "type": "gid", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 821435516 - }, - "m_pips": { - "type": "class SharedPointer", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1511196686 - }, - "m_acq": { - "type": "unsigned int", - "id": 2, - "offset": 96, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 478431554 - }, - "m_arch": { - "type": "unsigned int", - "id": 3, - "offset": 100, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 430613611 - }, - "m_archPoints": { - "type": "float", - "id": 4, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2151979634 - } - } - }, - "216582048": { - "name": "class NameOverrideBehavior*", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 216582048, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_wsNameOverride": { - "type": "std::wstring", - "id": 1, - "offset": 120, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2131249091 - } - } - }, - "598182007": { - "name": "class PathBehaviorClient", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 598182007, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - } - } - }, - "1778186952": { - "name": "class TextureRemapBehaviorTemplate*", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 1778186952, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - } - } - }, - "216426719": { - "name": "class SharedPointer", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 216426719, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - } - } - }, - "216211581": { - "name": "class ResTeleport*", - "bases": [ - "Result", - "PropertyClass" - ], - "hash": 216211581, - "properties": {} - }, - "1780762321": { - "name": "class SharedPointer", - "bases": [ - "Requirement", - "PropertyClass" - ], - "hash": 1780762321, - "properties": { - "m_applyNOT": { - "type": "bool", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1746328074, - "enum_options": { - "__DEFAULT": 0 - } - }, - "m_operator": { - "type": "enum Requirement::Operator", - "id": 1, - "offset": 76, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2672792317, - "enum_options": { - "ROP_AND": 0, - "ROP_OR": 1, - "__DEFAULT": "ROP_AND" - } - }, - "m_questName": { - "type": "std::string", - "id": 2, - "offset": 80, - "flags": 268435463, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1702112846, - "enum_options": { - "__BASECLASS": "QuestTemplate" - } - } - } - }, - "600931345": { - "name": "class ControlSWF*", - "bases": [ - "Window", - "PropertyClass" - ], - "hash": 600931345, - "properties": { - "m_sName": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306437263 - }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621225959 - }, - "m_Style": { - "type": "unsigned int", - "id": 2, - "offset": 152, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "SCALE_CHILDREN": 2, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "FOCUS_LOCKED": 64, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152 - } - }, - "m_Flags": { - "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648, - "RESIZE_TO_FIT_MOVIE": 8388608 - } - }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3105139380 - }, - "m_fTargetAlpha": { - "type": "float", - "id": 5, - "offset": 212, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1809129834 - }, - "m_fDisabledAlpha": { - "type": "float", - "id": 6, - "offset": 216, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1389987675 - }, - "m_fAlpha": { - "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 482130755 - }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3623628394 - }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2102211316 - }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1846695875 - }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3389835433 - }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2547159940 - }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2587533771 - }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3091503757 - }, - "m_sMovieFilename": { - "type": "std::string", - "id": 16, - "offset": 584, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1581619567 - } - } - }, - "216471690": { - "name": "class GameEffectTimerDisplayBehavior*", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 216471690, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_effectName": { - "type": "std::string", - "id": 1, - "offset": 112, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2029161513 - }, - "m_textKey": { - "type": "std::string", - "id": 2, - "offset": 144, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1720060457 - }, - "m_height": { - "type": "float", - "id": 3, - "offset": 176, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 602977104 - }, - "m_zOffset": { - "type": "float", - "id": 4, - "offset": 180, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 736134072 - }, - "m_red": { - "type": "unsigned char", - "id": 5, - "offset": 184, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 904647115 - }, - "m_green": { - "type": "unsigned char", - "id": 6, - "offset": 185, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1433403873 - }, - "m_blue": { - "type": "unsigned char", - "id": 7, - "offset": 186, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 856840600 - }, - "m_triggers": { - "type": "class SharedPointer", - "id": 8, - "offset": 192, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 3290329276 - } - } - }, - "599050860": { - "name": "class SharedPointer", - "bases": [ - "ControlText", - "Window", - "PropertyClass" - ], - "hash": 599050860, - "properties": { - "m_sName": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306437263 - }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621225959 - }, - "m_Style": { - "type": "unsigned int", - "id": 2, - "offset": 152, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152, - "DO_NOT_WRAP": 134217728, - "FIT_TEXT": 268435456 - } - }, - "m_Flags": { - "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } - }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3105139380 - }, - "m_fTargetAlpha": { - "type": "float", - "id": 5, - "offset": 212, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1809129834 - }, - "m_fDisabledAlpha": { - "type": "float", - "id": 6, - "offset": 216, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1389987675 - }, - "m_fAlpha": { - "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 482130755 - }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3623628394 - }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2102211316 - }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1846695875 - }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3389835433 - }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2547159940 - }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2587533771 - }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3091503757 - }, - "m_sText": { - "type": "std::wstring", - "id": 16, - "offset": 584, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2102642960 - }, - "m_sTooltip": { - "type": "std::wstring", - "id": 17, - "offset": 616, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1680475798 - }, - "m_bUseDropShadow": { - "type": "bool", - "id": 18, - "offset": 653, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 93063037 - }, - "m_bUseOutline": { - "type": "bool", - "id": 19, - "offset": 654, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 744292994 - }, - "m_bEnableWordWrap": { - "type": "bool", - "id": 20, - "offset": 655, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 430904562 - }, - "m_bEnableToggle": { - "type": "bool", - "id": 21, - "offset": 652, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1937994142 - }, - "m_nLeadingAdjust": { - "type": "int", - "id": 22, - "offset": 656, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1559480167 - }, - "m_fadeInDuration": { - "type": "float", - "id": 23, - "offset": 696, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 770484100 - }, - "m_idleDuration": { - "type": "float", - "id": 24, - "offset": 700, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 383632219 - }, - "m_fadeOutDuration": { - "type": "float", - "id": 25, - "offset": 704, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 666963557 - }, - "m_easeInFunction": { - "type": "unsigned int", - "id": 26, - "offset": 716, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 662405480, - "enum_options": { - "Linear": 0, - "Quadratic": 1, - "Cubic": 2, - "Quartic": 3, - "Quintic": 4, - "Trigonometric": 5, - "Exponential": 6, - "Circular": 7 - } - }, - "m_easeOutFunction": { - "type": "unsigned int", - "id": 27, - "offset": 720, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2174208521, - "enum_options": { - "Linear": 0, - "Quadratic": 1, - "Cubic": 2, - "Quartic": 3, - "Quintic": 4, - "Trigonometric": 5, - "Exponential": 6, - "Circular": 7 - } - } - } - }, - "598910457": { - "name": "class SharedPointer", - "bases": [ - "PositionalSoundEmitterInfo", - "SoundEmitterInfo", - "SoundInfo", - "ClientObjectInfo", - "CoreObjectInfo", - "PropertyClass" - ], - "hash": 598910457, - "properties": { - "m_templateID.m_full": { - "type": "unsigned __int64", - "id": 0, - "offset": 72, - "flags": 33554439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 633907631 - }, - "m_nObjectID": { - "type": "unsigned int", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 748496927 - }, - "m_location": { - "type": "class Vector3D", - "id": 2, - "offset": 84, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2239683611 - }, - "m_orientation": { - "type": "class Vector3D", - "id": 3, - "offset": 96, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2344058766 - }, - "m_fScale": { - "type": "float", - "id": 4, - "offset": 108, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 503137701 - }, - "m_zoneTag": { - "type": "std::string", - "id": 5, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3405382643 - }, - "m_startState": { - "type": "std::string", - "id": 6, - "offset": 184, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2166880458 - }, - "m_overrideName": { - "type": "std::string", - "id": 7, - "offset": 120, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1990707228 - }, - "m_globalDynamic": { - "type": "bool", - "id": 8, - "offset": 116, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1951691017 - }, - "m_bUndetectable": { - "type": "bool", - "id": 9, - "offset": 216, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1907454341 - }, - "m_spawnRequirements": { - "type": "class SharedPointer", - "id": 10, - "offset": 224, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2309120870 - }, - "m_loadingType": { - "type": "enum CoreObjectInfo::LoadingType", - "id": 11, - "offset": 112, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3522422550, - "enum_options": { - "STATIC_CLIENT_SERVER": 0, - "STATIC_CLIENT": 1, - "STATIC_SERVER": 2, - "DYNAMIC_SERVER": 3 - } - }, - "m_radius": { - "type": "float", - "id": 12, - "offset": 256, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 989410271 - }, - "m_exclusive": { - "type": "bool", - "id": 13, - "offset": 260, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 824383403 - }, - "m_startActive": { - "type": "bool", - "id": 14, - "offset": 261, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2031339229 - }, - "m_category": { - "type": "enum AudioCategory", - "id": 15, - "offset": 264, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2951251982, - "enum_options": { - "AudioCategory_Irrelevent": 0, - "AudioCategory_Accoustic": 1, - "AudioCategory_Noise": 2, - "AudioCategory_Music": 3 - } - }, - "m_override": { - "type": "int", - "id": 16, - "offset": 268, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 136872410, - "enum_options": { - "OVR_RADIUS": 1, - "OVR_CATEGORY": 2, - "OVR_EXCLUSIVE": 4, - "OVR_SIGNATURE": 64, - "OVR_VOLUME": 8, - "OVR_LOOPCOUNT": 16, - "OVR_ACTIVE": 32, - "OVR_PLAYPROG": 128, - "OVR_PRIORITY": 256, - "OVR_PROGTIME": 512, - "OVR_FILTERSET": 1024 - } - }, - "m_enableReqs": { - "type": "class SharedPointer", - "id": 17, - "offset": 272, - "flags": 263, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3158020443 - }, - "m_volume": { - "type": "float", - "id": 18, - "offset": 288, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1162855023 - }, - "m_loopCount": { - "type": "int", - "id": 19, - "offset": 292, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 865634717 - }, - "m_trackFilenameList": { - "type": "std::string", - "id": 20, - "offset": 312, - "flags": 131079, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2531081709 - }, - "m_playList": { - "type": "class PlayListEntry*", - "id": 21, - "offset": 336, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 3907873161 - }, - "m_priority": { - "type": "int", - "id": 22, - "offset": 296, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1235205852 - }, - "m_progression": { - "type": "enum PlayList::Progression", - "id": 23, - "offset": 300, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3279400238, - "enum_options": { - "Sequence": 0, - "Random": 1, - "SequenceOnceOnly": 2, - "RandomNoRepeat": 3 - } - }, - "m_progressMin": { - "type": "float", - "id": 24, - "offset": 304, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1497550192 - }, - "m_progressMax": { - "type": "float", - "id": 25, - "offset": 308, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1497549938 - }, - "m_audioFilterSet": { - "type": "unsigned int", - "id": 26, - "offset": 360, - "flags": 33554439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 831339825 - }, - "m_clientTag": { - "type": "std::string", - "id": 27, - "offset": 368, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3409856790 - }, - "m_innerRadius": { - "type": "float", - "id": 28, - "offset": 400, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 686816091 - }, - "m_nifObjName": { - "type": "std::string", - "id": 29, - "offset": 408, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513857812 - }, - "m_animNIFObjName": { - "type": "std::string", - "id": 30, - "offset": 440, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2245834777 - }, - "m_inverted": { - "type": "bool", - "id": 31, - "offset": 472, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1034821044 - }, - "m_initialDelay": { - "type": "float", - "id": 32, - "offset": 476, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 629858288 - }, - "m_fInsideAngle": { - "type": "float", - "id": 33, - "offset": 480, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1114383840 - }, - "m_fOutsideAngle": { - "type": "float", - "id": 34, - "offset": 484, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1627152289 - }, - "m_fOutsideVolume": { - "type": "float", - "id": 35, - "offset": 488, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 90369618 - }, - "m_fRangeScale": { - "type": "float", - "id": 36, - "offset": 492, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1749294034 - }, - "m_fAttenuationFactor": { - "type": "float", - "id": 37, - "offset": 496, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 273292776 - }, - "m_eAttenuationType": { - "type": "enum PositionInfoAttenuationType", - "id": 38, - "offset": 500, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2427193304, - "enum_options": { - "Standard": 0, - "Unit Range Power": 1 - } - } - } - }, - "1780966363": { - "name": "class DdWinAnimMoveMob", - "bases": [ - "WinAnimMoveToLocationSpeed", - "WinAnimMoveToLocation", - "WindowAnimation", - "PropertyClass" - ], - "hash": 1780966363, - "properties": { - "m_bUseDeepCopy": { - "type": "bool", - "id": 0, - "offset": 72, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 433380635 - }, - "m_targetLocation": { - "type": "class Vector3D", - "id": 1, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2653859938 - }, - "m_fSpeed": { - "type": "float", - "id": 2, - "offset": 96, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 503609006 - }, - "m_facing": { - "type": "enum DoodleDoug::DdDirection", - "id": 3, - "offset": 112, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 591537519 - }, - "m_cameFrom": { - "type": "enum DoodleDoug::DdDirection", - "id": 4, - "offset": 116, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1071209393 - }, - "m_nextWaypoint": { - "type": "class Point", - "id": 5, - "offset": 120, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2346187452 - }, - "m_myBoard": { - "type": "class DoodleDoug*", - "id": 6, - "offset": 136, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2212758093 - } - } - }, - "216582072": { - "name": "class NameOverrideBehavior", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 216582072, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_wsNameOverride": { - "type": "std::wstring", - "id": 1, - "offset": 120, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2131249091 - } - } - }, - "1781100628": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1781100628, - "properties": { - "m_state": { - "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1021505934 - }, - "m_chatID": { - "type": "unsigned int", - "id": 1, - "offset": 76, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 531784794 - }, - "m_usage": { - "type": "unsigned int", - "id": 2, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1023841410 - } - } - }, - "599926675": { - "name": "class SharedPointer", - "bases": [ - "ObjStateOverrideInfo", - "PropertyClass" - ], - "hash": 599926675, - "properties": { - "m_stateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2039264668 - }, - "m_emoteName": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2426164182 - }, - "m_particleAsset": { - "type": "std::string", - "id": 2, - "offset": 112, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2165004143 - }, - "m_loop": { - "type": "bool", - "id": 3, - "offset": 144, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 222084781 - }, - "m_particleNode": { - "type": "std::string", - "id": 4, - "offset": 152, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3405651669 - }, - "m_soundAsset": { - "type": "std::string", - "id": 5, - "offset": 184, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3579637124 - }, - "m_wizBangID": { - "type": "unsigned int", - "id": 6, - "offset": 216, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 496076748 - } - } - }, - "216695013": { - "name": "class AnimationBehavior*", - "bases": [ - "RenderBehavior", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 216695013, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - } - } - }, - "599191426": { - "name": "class PipConversionValues", - "bases": [ - "PropertyClass" - ], - "hash": 599191426, - "properties": { - "m_capValue": { - "type": "float", - "id": 0, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1100002568 - }, - "m_scalarBase": { - "type": "float", - "id": 1, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2028329704 - }, - "m_scalingFactor": { - "type": "float", - "id": 2, - "offset": 76, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1636384119 - } - } - }, - "1783190033": { - "name": "class ScriptBehaviorTemplate*", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 1783190033, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - }, - "m_scriptFilename": { - "type": "std::string", - "id": 1, - "offset": 120, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1831462225 - }, - "m_bDisableAutoRestart": { - "type": "bool", - "id": 2, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 815844583, - "enum_options": { - "__DEFAULT": 0 - } - }, - "m_clientScriptFilename": { - "type": "std::string", - "id": 3, - "offset": 160, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2499494128 - } - } - }, - "1782150143": { - "name": "class SharedPointer", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 1782150143, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - }, - "m_materialName": { - "type": "std::string", - "id": 1, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1878140043 - }, - "m_alternateAssetName": { - "type": "std::string", - "id": 2, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2009140124 - } - } - }, - "217737562": { - "name": "class SharedPointer", - "bases": [ - "FXBySlotEffect", - "GameEffectBase", - "PropertyClass" - ], - "hash": 217737562, - "properties": { - "m_currentTickCount": { - "type": "double", - "id": 0, - "offset": 80, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2533274692 - }, - "m_effectNameID": { - "type": "unsigned int", - "id": 1, - "offset": 96, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1204067144 - }, - "m_bIsOnPet": { - "type": "bool", - "id": 2, - "offset": 73, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 522593303 - }, - "m_originatorID": { - "type": "gid", - "id": 3, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1131810019 - }, - "m_itemSlotID": { - "type": "unsigned int", - "id": 4, - "offset": 112, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1895747595 - }, - "m_internalID": { - "type": "int", - "id": 5, - "offset": 92, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1643137924 - }, - "m_endTime": { - "type": "unsigned int", - "id": 6, - "offset": 88, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 716479635 - } - } - }, - "601014707": { - "name": "class ControlBar*", - "bases": [ - "Window", - "PropertyClass" - ], - "hash": 601014707, - "properties": { - "m_sName": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306437263 - }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621225959 - }, - "m_Style": { - "type": "unsigned int", - "id": 2, - "offset": 152, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "SCALE_CHILDREN": 2, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "FOCUS_LOCKED": 64, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152 - } - }, - "m_Flags": { - "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } - }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3105139380 - }, - "m_fTargetAlpha": { - "type": "float", - "id": 5, - "offset": 212, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1809129834 - }, - "m_fDisabledAlpha": { - "type": "float", - "id": 6, - "offset": 216, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1389987675 - }, - "m_fAlpha": { - "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 482130755 - }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3623628394 - }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2102211316 - }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1846695875 - }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3389835433 - }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2547159940 - }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2587533771 - }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3091503757 - }, - "m_fPosition": { - "type": "float", - "id": 16, - "offset": 584, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1808212114 - }, - "m_BaseColor": { - "type": "class Color", - "id": 17, - "offset": 588, - "flags": 262279, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2172251096 - }, - "m_BarColor": { - "type": "class Color", - "id": 18, - "offset": 592, - "flags": 262279, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2259916498 - }, - "m_bDisplayVertical": { - "type": "bool", - "id": 19, - "offset": 596, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1359621189 - }, - "m_pBarMaterial": { - "type": "class SharedPointer", - "id": 20, - "offset": 600, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2481929515 - }, - "m_pTopLeftMaterial": { - "type": "class SharedPointer", - "id": 21, - "offset": 616, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3248096916 - }, - "m_pCenterMaterial": { - "type": "class SharedPointer", - "id": 22, - "offset": 632, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1519560055 - }, - "m_pBottomRightMaterial": { - "type": "class SharedPointer", - "id": 23, - "offset": 648, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2932444745 - } - } - }, - "600962558": { - "name": "class LeashedPathMovementBehavior", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 600962558, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - } - } - }, - "1783230993": { - "name": "class ScriptBehaviorTemplate", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 1783230993, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - }, - "m_scriptFilename": { - "type": "std::string", - "id": 1, - "offset": 120, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1831462225 - }, - "m_bDisableAutoRestart": { - "type": "bool", - "id": 2, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 815844583, - "enum_options": { - "__DEFAULT": 0 - } - }, - "m_clientScriptFilename": { - "type": "std::string", - "id": 3, - "offset": 160, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2499494128 - } - } - }, - "218724417": { - "name": "class SharedPointer", - "bases": [ - "ServiceOptionBase", - "PropertyClass" - ], - "hash": 218724417, - "properties": { - "m_serviceName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2206028813 - }, - "m_iconKey": { - "type": "std::string", - "id": 1, - "offset": 168, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2457138637 - }, - "m_displayKey": { - "type": "std::string", - "id": 2, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3023276954 - }, - "m_serviceIndex": { - "type": "unsigned int", - "id": 3, - "offset": 204, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2103126710 - }, - "m_forceInteract": { - "type": "bool", - "id": 4, - "offset": 200, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1705789564 - } - } - }, - "600962238": { - "name": "class LeashedPathMovementBehavior*", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 600962238, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - } - } - }, - "218177868": { - "name": "class MonsterMagicLevelControl*", - "bases": [ - "Window", - "PropertyClass" - ], - "hash": 218177868, - "properties": { - "m_sName": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306437263 - }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 65667, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621225959 - }, - "m_Style": { - "type": "unsigned int", - "id": 2, - "offset": 152, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "SCALE_CHILDREN": 2, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "FOCUS_LOCKED": 64, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152 - } - }, - "m_Flags": { - "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } - }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3105139380 - }, - "m_fTargetAlpha": { - "type": "float", - "id": 5, - "offset": 212, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1809129834 - }, - "m_fDisabledAlpha": { - "type": "float", - "id": 6, - "offset": 216, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1389987675 - }, - "m_fAlpha": { - "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 482130755 - }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3623628394 - }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2102211316 - }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1846695875 - }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3389835433 - }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2547159940 - }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2587533771 - }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3091503757 - } - } - }, - "600933158": { - "name": "class SharedPointer", - "bases": [ - "Result", - "PropertyClass" - ], - "hash": 600933158, - "properties": { - "m_templateID": { - "type": "gid", - "id": 0, - "offset": 72, - "flags": 33554439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1075328001 - } - } - }, - "218084997": { - "name": "class NotInActiveTournamentOrPvP*", - "bases": [ - "Requirement", - "PropertyClass" - ], - "hash": 218084997, - "properties": { - "m_applyNOT": { - "type": "bool", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1746328074, - "enum_options": { - "__DEFAULT": 0 - } - }, - "m_operator": { - "type": "enum Requirement::Operator", - "id": 1, - "offset": 76, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2672792317, - "enum_options": { - "ROP_AND": 0, - "ROP_OR": 1, - "__DEFAULT": "ROP_AND" - } - } - } - }, - "1787487711": { - "name": "class BGSigilTimer", - "bases": [ - "PropertyClass" - ], - "hash": 1787487711, - "properties": { - "m_state": { - "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1021505934 - }, - "m_startTimeMS": { - "type": "unsigned int", - "id": 1, - "offset": 76, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 843207562 - }, - "m_snapshotT": { - "type": "float", - "id": 2, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1238335003 - }, - "m_snapshotMS": { - "type": "unsigned int", - "id": 3, - "offset": 84, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1589766845 - }, - "m_endTimeMS": { - "type": "unsigned int", - "id": 4, - "offset": 88, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 388403347 - }, - "m_durationMS": { - "type": "unsigned int", - "id": 5, - "offset": 92, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2175220755 - }, - "m_timeScale": { - "type": "float", - "id": 6, - "offset": 96, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 550426190 - } - } - }, - "218034790": { - "name": "class PetCastEffectActorCinematicAction*", - "bases": [ - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 218034790, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - } - } - }, - "1784997521": { - "name": "class PlayerStatuePvPBlob", - "bases": [ - "PlayerStatueBlob", - "PropertyClass" - ], - "hash": 1784997521, - "properties": { - "m_level": { - "type": "int", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 801285362 - }, - "m_school": { - "type": "unsigned int", - "id": 1, - "offset": 76, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1152268885 - }, - "m_gender": { - "type": "int", - "id": 2, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 473816879 - }, - "m_nameKeys": { - "type": "unsigned int", - "id": 3, - "offset": 84, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1772225898 - }, - "m_badge": { - "type": "std::string", - "id": 4, - "offset": 88, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2286962478 - }, - "m_pCharacterBehavior": { - "type": "class SharedPointer", - "id": 5, - "offset": 120, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2724673923 - }, - "m_pEquipment": { - "type": "class SharedPointer", - "id": 6, - "offset": 136, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2473540161 - }, - "m_pStats": { - "type": "class SharedPointer", - "id": 7, - "offset": 152, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2212894623 - }, - "m_pGameEffects": { - "type": "class SharedPointer", - "id": 8, - "offset": 168, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1557857436 - }, - "m_petTID": { - "type": "unsigned int", - "id": 9, - "offset": 200, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1037635095 - }, - "m_pPetBehavior": { - "type": "class SharedPointer", - "id": 10, - "offset": 208, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2663493503 - }, - "m_pPetJewels": { - "type": "class SharedPointer", - "id": 11, - "offset": 224, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 733229991 - } - } - }, - "1784197918": { - "name": "class GraphicalPvPTourneyCurrencyBonus*", - "bases": [ - "GraphicalSpell", - "Spell", - "PropertyClass" - ], - "hash": 1784197918, - "properties": { - "m_templateID": { - "type": "unsigned int", - "id": 0, - "offset": 128, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1286746870 - }, - "m_enchantment": { - "type": "unsigned int", - "id": 1, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2217886818 - }, - "m_pipCost": { - "type": "class SharedPointer", - "id": 2, - "offset": 176, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3605704820 - }, - "m_regularAdjust": { - "type": "int", - "id": 3, - "offset": 192, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1420453335 - }, - "m_magicSchoolID": { - "type": "unsigned int", - "id": 4, - "offset": 136, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 893146499 - }, - "m_accuracy": { - "type": "unsigned char", - "id": 5, - "offset": 132, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2273914939 - }, - "m_treasureCard": { - "type": "bool", - "id": 6, - "offset": 197, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1764879128 - }, - "m_battleCard": { - "type": "bool", - "id": 7, - "offset": 198, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1332843753 - }, - "m_itemCard": { - "type": "bool", - "id": 8, - "offset": 199, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1683654300 - }, - "m_sideBoard": { - "type": "bool", - "id": 9, - "offset": 200, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1897838368 - }, - "m_spellID": { - "type": "unsigned int", - "id": 10, - "offset": 204, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1697483258 - }, - "m_leavesPlayWhenCastOverride": { - "type": "bool", - "id": 11, - "offset": 216, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 874407398 - }, - "m_cloaked": { - "type": "bool", - "id": 12, - "offset": 196, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 7349510 - }, - "m_enchantmentSpellIsItemCard": { - "type": "bool", - "id": 13, - "offset": 76, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 531590701 - }, - "m_premutationSpellID": { - "type": "unsigned int", - "id": 14, - "offset": 112, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1530256370 - }, - "m_enchantedThisCombat": { - "type": "bool", - "id": 15, - "offset": 77, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1895738923 - }, - "m_paramOverrides": { - "type": "class SharedPointer", - "id": 16, - "offset": 224, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2061635599 - }, - "m_subEffectMeta": { - "type": "class SharedPointer", - "id": 17, - "offset": 240, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1944101106 - }, - "m_delayEnchantment": { - "type": "bool", - "id": 18, - "offset": 257, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 191336919 - }, - "m_PvE": { - "type": "bool", - "id": 19, - "offset": 264, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 269492350 - }, - "m_delayEnchantmentOrder": { - "type": "enum SpellEffect::kDelayOrder", - "id": 20, - "offset": 72, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2526055263, - "enum_options": { - "SpellEffect::kAnyOrder": 0, - "SpellEffect::kFirst": 1, - "SpellEffect::kSecond": 2 - } - }, - "m_roundAddedTC": { - "type": "int", - "id": 21, - "offset": 260, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 112365451 - }, - "m_secondarySchoolID": { - "type": "unsigned int", - "id": 22, - "offset": 304, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2081206026 - } - } - }, - "600981919": { - "name": "class ControlTab*", - "bases": [ - "Window", - "PropertyClass" - ], - "hash": 600981919, - "properties": { - "m_sName": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306437263 - }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621225959 - }, - "m_Style": { - "type": "unsigned int", - "id": 2, - "offset": 152, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "SCALE_CHILDREN": 2, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "FOCUS_LOCKED": 64, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152 - } - }, - "m_Flags": { - "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } - }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3105139380 - }, - "m_fTargetAlpha": { - "type": "float", - "id": 5, - "offset": 212, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1809129834 - }, - "m_fDisabledAlpha": { - "type": "float", - "id": 6, - "offset": 216, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1389987675 - }, - "m_fAlpha": { - "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 482130755 - }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3623628394 - }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2102211316 - }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1846695875 - }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3389835433 - }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2547159940 - }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2587533771 - }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3091503757 - }, - "m_bAutomaticFormatting": { - "type": "bool", - "id": 16, - "offset": 664, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 78023831 - }, - "m_tabPages": { - "type": "class ControlTab::Page", - "id": 17, - "offset": 720, - "flags": 135, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2885422823 - }, - "m_tabSize": { - "type": "class Size", - "id": 18, - "offset": 672, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 69974606 - }, - "m_tabPageRect": { - "type": "class Rect", - "id": 19, - "offset": 616, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2839803454 - }, - "m_tabButtonsRect": { - "type": "class Rect", - "id": 20, - "offset": 632, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1836144176 - }, - "m_tabAlign": { - "type": "enum ControlTab::TabAlignment", - "id": 21, - "offset": 668, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1511299133, - "enum_options": { - "Top": 0, - "Bottom": 1, - "Left": 2, - "Right": 3 - } - } - } - }, - "1783925270": { - "name": "class SharedPointer", - "bases": [ - "ControlRichEdit", - "ControlEdit", - "Window", - "PropertyClass" - ], - "hash": 1783925270, - "properties": { - "m_sName": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306437263 - }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621225959 - }, - "m_Style": { - "type": "unsigned int", - "id": 2, - "offset": 152, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152, - "FORCE_NUMERIC": 16777216, - "FORCE_ALPHA": 268435456, - "FORCE_ALPHANUMERIC": 536870912, - "FORCE_INTEGER": 33554432, - "FORCE_POSITIVE": 67108864, - "FORCE_RANGE": 134217728 - } - }, - "m_Flags": { - "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } - }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3105139380 - }, - "m_fTargetAlpha": { - "type": "float", - "id": 5, - "offset": 212, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1809129834 - }, - "m_fDisabledAlpha": { - "type": "float", - "id": 6, - "offset": 216, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1389987675 - }, - "m_fAlpha": { - "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 482130755 - }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3623628394 - }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2102211316 - }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1846695875 - }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3389835433 - }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2547159940 - }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2587533771 - }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3091503757 - }, - "m_sText": { - "type": "std::wstring", - "id": 16, - "offset": 584, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2102642960 - }, - "m_nMaxLength": { - "type": "int", - "id": 17, - "offset": 620, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1183478416 - }, - "m_bPassword": { - "type": "bool", - "id": 18, - "offset": 624, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1604468200 - }, - "m_bLog": { - "type": "bool", - "id": 19, - "offset": 625, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 221687287 - }, - "m_previousNext": { - "type": "bool", - "id": 20, - "offset": 627, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 858581071 - }, - "m_nMaxLogSize": { - "type": "int", - "id": 21, - "offset": 712, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 779573899 - }, - "m_bEditing": { - "type": "bool", - "id": 22, - "offset": 616, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1243218553 - }, - "m_bAllowPaste": { - "type": "bool", - "id": 23, - "offset": 626, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1129316721 - }, - "m_nLogPosition": { - "type": "int", - "id": 24, - "offset": 704, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1120160767 - }, - "m_nCursor": { - "type": "int", - "id": 25, - "offset": 716, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1876782150 - }, - "m_nEditBegin": { - "type": "int", - "id": 26, - "offset": 720, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1066592403 - }, - "m_nEditEnd": { - "type": "int", - "id": 27, - "offset": 724, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1560905669 - }, - "m_sSavedText": { - "type": "std::wstring", - "id": 28, - "offset": 728, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2197953283 - }, - "m_fCursorBlinkSpeed": { - "type": "float", - "id": 29, - "offset": 760, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2232655228 - }, - "m_fCursorTimer": { - "type": "float", - "id": 30, - "offset": 764, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1929942748 - }, - "m_bCursorBlink": { - "type": "bool", - "id": 31, - "offset": 768, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 683441507 - }, - "m_fMinRange": { - "type": "double", - "id": 32, - "offset": 776, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3079523396 - }, - "m_fMaxRange": { - "type": "double", - "id": 33, - "offset": 784, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3876551814 - }, - "m_nPrecision": { - "type": "int", - "id": 34, - "offset": 792, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1404974196 - }, - "m_bDeleteOnFirstChar": { - "type": "bool", - "id": 35, - "offset": 618, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 902105643 - } - } - }, - "218085007": { - "name": "class NotInActiveTournamentOrPvP", - "bases": [ - "Requirement", - "PropertyClass" - ], - "hash": 218085007, - "properties": { - "m_applyNOT": { - "type": "bool", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1746328074, - "enum_options": { - "__DEFAULT": 0 - } - }, - "m_operator": { - "type": "enum Requirement::Operator", - "id": 1, - "offset": 76, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2672792317, - "enum_options": { - "ROP_AND": 0, - "ROP_OR": 1, - "__DEFAULT": "ROP_AND" - } - } - } - }, - "601312987": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 601312987, - "properties": { - "m_rewardID": { - "type": "unsigned __int64", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1967538827 - }, - "m_rewardModifier": { - "type": "unsigned __int64", - "id": 1, - "offset": 112, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1325279053 - }, - "m_giftID": { - "type": "std::string", - "id": 2, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1975989138 - } - } - }, - "1784391444": { - "name": "class ZoneTickEffect*", - "bases": [ - "GameEffectBase", - "PropertyClass" - ], - "hash": 1784391444, - "properties": { - "m_currentTickCount": { - "type": "double", - "id": 0, - "offset": 80, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2533274692 - }, - "m_effectNameID": { - "type": "unsigned int", - "id": 1, - "offset": 96, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1204067144 - }, - "m_bIsOnPet": { - "type": "bool", - "id": 2, - "offset": 73, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 522593303 - }, - "m_originatorID": { - "type": "gid", - "id": 3, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1131810019 - }, - "m_itemSlotID": { - "type": "unsigned int", - "id": 4, - "offset": 112, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1895747595 - }, - "m_internalID": { - "type": "int", - "id": 5, - "offset": 92, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1643137924 - }, - "m_endTime": { - "type": "unsigned int", - "id": 6, - "offset": 88, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 716479635 - }, - "m_tickOnAdd": { - "type": "bool", - "id": 7, - "offset": 128, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 663357284 - }, - "m_zoneEventName": { - "type": "std::string", - "id": 8, - "offset": 136, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2601481434 - }, - "m_tickRateSec": { - "type": "float", - "id": 9, - "offset": 168, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1559681353 - }, - "m_maxTicks": { - "type": "int", - "id": 10, - "offset": 172, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 155973918 - } - } - }, - "218529137": { - "name": "class HousingItemList", - "bases": [ - "PropertyClass" - ], - "hash": 218529137, - "properties": { - "m_housingItemGIDList": { - "type": "gid", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 310124628 - } - } - }, - "601240696": { - "name": "class CursorStyle*", - "bases": [ - "PropertyClass" - ], - "hash": 601240696, - "properties": { - "m_name": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1717359772 - }, - "m_cursorState": { - "type": "enum CursorState", - "id": 1, - "offset": 104, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2665308791, - "enum_options": { - "CS_POINTER": 1, - "CS_MOVE": 2, - "CS_HARROW": 3, - "CS_VARROW": 4, - "CS_EDIT": 5, - "CS_SELECT": 6, - "CS_USER1": 7, - "CS_USER2": 8, - "CS_USER3": 9, - "CS_USER4": 10, - "CS_USER5": 11 - } - }, - "m_moveable": { - "type": "bool", - "id": 2, - "offset": 320, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1000738782 - }, - "m_softwareStyle": { - "type": "class SoftwareStyle", - "id": 3, - "offset": 112, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2133920820 - }, - "m_hardwareStyle": { - "type": "class HardwareStyle", - "id": 4, - "offset": 216, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1521077471 - } - } - }, - "1784271976": { - "name": "class ClassProjectProgressHistoryList*", - "bases": [ - "PropertyClass" - ], - "hash": 1784271976, - "properties": { - "m_progressHistoryList": { - "type": "int", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1514478333 - } - } - }, - "218524017": { - "name": "class HousingItemList*", - "bases": [ - "PropertyClass" - ], - "hash": 218524017, - "properties": { - "m_housingItemGIDList": { - "type": "gid", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 310124628 - } - } - }, - "601375135": { - "name": "class ControlTab", - "bases": [ - "Window", - "PropertyClass" - ], - "hash": 601375135, - "properties": { - "m_sName": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306437263 - }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621225959 - }, - "m_Style": { - "type": "unsigned int", - "id": 2, - "offset": 152, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "SCALE_CHILDREN": 2, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "FOCUS_LOCKED": 64, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152 - } - }, - "m_Flags": { - "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } - }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3105139380 - }, - "m_fTargetAlpha": { - "type": "float", - "id": 5, - "offset": 212, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1809129834 - }, - "m_fDisabledAlpha": { - "type": "float", - "id": 6, - "offset": 216, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1389987675 - }, - "m_fAlpha": { - "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 482130755 - }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3623628394 - }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2102211316 - }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1846695875 - }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3389835433 - }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2547159940 - }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2587533771 - }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3091503757 - }, - "m_bAutomaticFormatting": { - "type": "bool", - "id": 16, - "offset": 664, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 78023831 - }, - "m_tabPages": { - "type": "class ControlTab::Page", - "id": 17, - "offset": 720, - "flags": 135, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2885422823 - }, - "m_tabSize": { - "type": "class Size", - "id": 18, - "offset": 672, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 69974606 - }, - "m_tabPageRect": { - "type": "class Rect", - "id": 19, - "offset": 616, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2839803454 - }, - "m_tabButtonsRect": { - "type": "class Rect", - "id": 20, - "offset": 632, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1836144176 - }, - "m_tabAlign": { - "type": "enum ControlTab::TabAlignment", - "id": 21, - "offset": 668, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1511299133, - "enum_options": { - "Top": 0, - "Bottom": 1, - "Left": 2, - "Right": 3 - } - } - } - }, - "1784391604": { - "name": "class ZoneTickEffect", - "bases": [ - "GameEffectBase", - "PropertyClass" - ], - "hash": 1784391604, - "properties": { - "m_currentTickCount": { - "type": "double", - "id": 0, - "offset": 80, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2533274692 - }, - "m_effectNameID": { - "type": "unsigned int", - "id": 1, - "offset": 96, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1204067144 - }, - "m_bIsOnPet": { - "type": "bool", - "id": 2, - "offset": 73, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 522593303 - }, - "m_originatorID": { - "type": "gid", - "id": 3, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1131810019 - }, - "m_itemSlotID": { - "type": "unsigned int", - "id": 4, - "offset": 112, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1895747595 - }, - "m_internalID": { - "type": "int", - "id": 5, - "offset": 92, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1643137924 - }, - "m_endTime": { - "type": "unsigned int", - "id": 6, - "offset": 88, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 716479635 - }, - "m_tickOnAdd": { - "type": "bool", - "id": 7, - "offset": 128, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 663357284 - }, - "m_zoneEventName": { - "type": "std::string", - "id": 8, - "offset": 136, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2601481434 - }, - "m_tickRateSec": { - "type": "float", - "id": 9, - "offset": 168, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1559681353 - }, - "m_maxTicks": { - "type": "int", - "id": 10, - "offset": 172, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 155973918 - } - } - }, - "218601970": { - "name": "class MountRecord", - "bases": [ - "PropertyClass" - ], - "hash": 218601970, - "properties": { - "m_nVolumeType": { - "type": "enum MountRecord::VolumeTypes", - "id": 0, - "offset": 72, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2832170609, - "enum_options": { - "DISK": 1, - "DSA": 2, - "WAD": 3 - } - }, - "m_sOption": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1705643111 - }, - "m_nPriority": { - "type": "int", - "id": 2, - "offset": 112, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1515251530 - }, - "m_sMount": { - "type": "std::string", - "id": 3, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2412733857 - }, - "m_bWritable": { - "type": "bool", - "id": 4, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1522487983 - } - } - }, - "602324641": { - "name": "class SpeedEffectTemplate*", - "bases": [ - "GameEffectTemplate", - "PropertyClass" - ], - "hash": 602324641, - "properties": { - "m_effectName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2029161513 - }, - "m_effectCategory": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1852673222 - }, - "m_sortOrder": { - "type": "int", - "id": 2, - "offset": 148, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1411218206 - }, - "m_duration": { - "type": "double", - "id": 3, - "offset": 192, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2727932435 - }, - "m_stackingCategories": { - "type": "std::string", - "id": 4, - "offset": 160, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1774497525 - }, - "m_isPersistent": { - "type": "bool", - "id": 5, - "offset": 153, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 923861920 - }, - "m_bIsOnPet": { - "type": "bool", - "id": 6, - "offset": 154, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 522593303 - }, - "m_isPublic": { - "type": "bool", - "id": 7, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1728439822 - }, - "m_visualEffectAddName": { - "type": "std::string", - "id": 8, - "offset": 200, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3382086694 - }, - "m_visualEffectRemoveName": { - "type": "std::string", - "id": 9, - "offset": 232, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1541697323 - }, - "m_onAddFunctorName": { - "type": "std::string", - "id": 10, - "offset": 280, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1561843107 - }, - "m_onRemoveFunctorName": { - "type": "std::string", - "id": 11, - "offset": 312, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2559017864 - }, - "m_stackingRule": { - "type": "enum STACKING_RULE", - "id": 12, - "offset": 144, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 431568889, - "enum_options": { - "STACKING_ALLOWED": 0, - "STACKING_NOSTACK": 1, - "STACKING_REPLACE": 2 - } - }, - "m_speedMultiplier": { - "type": "int", - "id": 13, - "offset": 360, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 32503058 - } - } - }, - "1785530485": { - "name": "class SharedPointer", - "bases": [ - "ControlSprite", - "Window", - "PropertyClass" - ], - "hash": 1785530485, - "properties": { - "m_sName": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306437263 - }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621225959 - }, - "m_Style": { - "type": "unsigned int", - "id": 2, - "offset": 152, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "SCALE_CHILDREN": 2, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "FOCUS_LOCKED": 64, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152 - } - }, - "m_Flags": { - "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648, - "ONE_SHOT": 8388608, - "FLIPPED_HORIZONTAL": 16777216, - "FLIPPED_VERTICAL": 33554432 - } - }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3105139380 - }, - "m_fTargetAlpha": { - "type": "float", - "id": 5, - "offset": 212, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1809129834 - }, - "m_fDisabledAlpha": { - "type": "float", - "id": 6, - "offset": 216, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1389987675 - }, - "m_fAlpha": { - "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 482130755 - }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3623628394 - }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2102211316 - }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1846695875 - }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3389835433 - }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2547159940 - }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2587533771 - }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3091503757 - }, - "m_pMaterial": { - "type": "class SharedPointer", - "id": 16, - "offset": 592, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3479277078 - }, - "m_fRotation": { - "type": "float", - "id": 17, - "offset": 608, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1175400173 - }, - "m_Color": { - "type": "class Color", - "id": 18, - "offset": 584, - "flags": 262279, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1753714077 - }, - "m_textColor": { - "type": "class Color", - "id": 19, - "offset": 612, - "flags": 262279, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2528109250 - }, - "m_textComponent": { - "type": "class TextComponent", - "id": 20, - "offset": 616, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3491704390 - } - } - }, - "219050943": { - "name": "class HousingNodeList", - "bases": [ - "PropertyClass" - ], - "hash": 219050943, - "properties": { - "m_nodeList": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 3486511051 - } - } - }, - "601813023": { - "name": "class PetTomeBehavior", - "bases": [ - "PetTomeBehaviorBase", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 601813023, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_petData": { - "type": "std::string", - "id": 1, - "offset": 144, - "flags": 551, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2990195294 - } - } - }, - "1785229827": { - "name": "class ObstacleCourseObstaclePathBase", - "bases": [ - "ObstacleCourseObstacleBehavior", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1785229827, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - } - } - }, - "219047871": { - "name": "class HousingNodeList*", - "bases": [ - "PropertyClass" - ], - "hash": 219047871, - "properties": { - "m_nodeList": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 3486511051 - } - } - }, - "601713999": { - "name": "MadlibArgT", - "bases": [ - "MadlibArg", - "PropertyClass" - ], - "hash": 601713999, - "properties": { - "m_madlibToken": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3058682373 - }, - "m_madlibArgument": { - "type": "float", - "id": 1, - "offset": 112, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 968693315 - } - } - }, - "1785100757": { - "name": "class ClientPetBoostPlayerStatEffect", - "bases": [ - "PetBoostPlayerStatEffect", - "WizStatisticEffect", - "StatisticEffect", - "GameEffectBase", - "PropertyClass" - ], - "hash": 1785100757, - "properties": { - "m_currentTickCount": { - "type": "double", - "id": 0, - "offset": 80, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2533274692 - }, - "m_effectNameID": { - "type": "unsigned int", - "id": 1, - "offset": 96, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1204067144 - }, - "m_bIsOnPet": { - "type": "bool", - "id": 2, - "offset": 73, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 522593303 - }, - "m_originatorID": { - "type": "gid", - "id": 3, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1131810019 - }, - "m_itemSlotID": { - "type": "unsigned int", - "id": 4, - "offset": 112, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1895747595 - }, - "m_internalID": { - "type": "int", - "id": 5, - "offset": 92, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1643137924 - }, - "m_endTime": { - "type": "unsigned int", - "id": 6, - "offset": 88, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 716479635 - }, - "m_lookupIndex": { - "type": "int", - "id": 7, - "offset": 128, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1626623948 - }, - "m_damageBonusPercent": { - "type": "float", - "id": 8, - "offset": 136, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 623230606 - }, - "m_damageBonusFlat": { - "type": "float", - "id": 9, - "offset": 180, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2212039108 - }, - "m_accuracyBonusPercent": { - "type": "float", - "id": 10, - "offset": 140, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1972336538 - }, - "m_armorPiercingBonusPercent": { - "type": "float", - "id": 11, - "offset": 144, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1569912641 - }, - "m_damageReducePercent": { - "type": "float", - "id": 12, - "offset": 148, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 541736927 - }, - "m_damageReduceFlat": { - "type": "float", - "id": 13, - "offset": 152, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 684172469 - }, - "m_accuracyReducePercent": { - "type": "float", - "id": 14, - "offset": 156, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2112559723 - }, - "m_healBonusPercent": { - "type": "float", - "id": 15, - "offset": 160, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 562313577 - }, - "m_healIncBonusPercent": { - "type": "float", - "id": 16, - "offset": 164, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2182535587 - }, - "m_hitPointBonus": { - "type": "float", - "id": 17, - "offset": 204, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 880644461 - }, - "m_spellChargeBonus": { - "type": "int", - "id": 18, - "offset": 212, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2019610507 - }, - "m_powerPipBonusPercent": { - "type": "float", - "id": 19, - "offset": 168, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1671446341 - }, - "m_petActChance": { - "type": "int", - "id": 20, - "offset": 200, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 237418461 - }, - "m_manaBonus": { - "type": "float", - "id": 21, - "offset": 208, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1372708603 - }, - "m_expPercent": { - "type": "float", - "id": 22, - "offset": 184, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1147850677 - }, - "m_goldPercent": { - "type": "float", - "id": 23, - "offset": 188, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1095720878 - }, - "m_energyBonus": { - "type": "float", - "id": 24, - "offset": 216, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2223158984 - }, - "m_criticalHitRating": { - "type": "float", - "id": 25, - "offset": 220, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1978690540 - }, - "m_blockRating": { - "type": "float", - "id": 26, - "offset": 224, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2088486759 - }, - "m_accuracyRating": { - "type": "float", - "id": 27, - "offset": 228, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 165525575 - }, - "m_powerPipRating": { - "type": "float", - "id": 28, - "offset": 232, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1355340722 - }, - "m_damageResistanceRating": { - "type": "float", - "id": 29, - "offset": 240, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1961377740 - }, - "m_archmastery": { - "type": "float", - "id": 30, - "offset": 244, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1963579610 - }, - "m_archmasteryBonusPercent": { - "type": "float", - "id": 31, - "offset": 288, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1908627154 - }, - "m_balanceMastery": { - "type": "int", - "id": 32, - "offset": 248, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 149062181 - }, - "m_deathMastery": { - "type": "int", - "id": 33, - "offset": 252, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1421218661 - }, - "m_fireMastery": { - "type": "int", - "id": 34, - "offset": 256, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1431794949 - }, - "m_iceMastery": { - "type": "int", - "id": 35, - "offset": 260, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 704864240 - }, - "m_lifeMastery": { - "type": "int", - "id": 36, - "offset": 264, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2142136447 - }, - "m_mythMastery": { - "type": "int", - "id": 37, - "offset": 268, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1766317185 - }, - "m_stormMastery": { - "type": "int", - "id": 38, - "offset": 272, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1883988244 - }, - "m_stunResistancePercent": { - "type": "float", - "id": 39, - "offset": 276, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1868382627 - }, - "m_fishingLuckBonusPercent": { - "type": "float", - "id": 40, - "offset": 192, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1363349254 - }, - "m_shadowPipBonusPercent": { - "type": "float", - "id": 41, - "offset": 172, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1426533310 - }, - "m_wispBonusPercent": { - "type": "float", - "id": 42, - "offset": 196, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1304386546 - }, - "m_pipConversionRating": { - "type": "float", - "id": 43, - "offset": 280, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 246855691 - }, - "m_shadowPipRating": { - "type": "float", - "id": 44, - "offset": 236, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 507126123 - }, - "m_petID": { - "type": "gid", - "id": 45, - "offset": 304, - "flags": 24, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 806009486 - }, - "m_primaryStat1": { - "type": "std::string", - "id": 46, - "offset": 312, - "flags": 24, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2417808140 - }, - "m_primaryStat2": { - "type": "std::string", - "id": 47, - "offset": 344, - "flags": 24, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2417808141 - }, - "m_secondaryStat": { - "type": "std::string", - "id": 48, - "offset": 376, - "flags": 24, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3564684959 - }, - "m_secondaryValue": { - "type": "float", - "id": 49, - "offset": 408, - "flags": 24, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1728780796 - } - } - }, - "601586705": { - "name": "class ControlSWF", - "bases": [ - "Window", - "PropertyClass" - ], - "hash": 601586705, - "properties": { - "m_sName": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306437263 - }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621225959 - }, - "m_Style": { - "type": "unsigned int", - "id": 2, - "offset": 152, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "SCALE_CHILDREN": 2, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "FOCUS_LOCKED": 64, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152 - } - }, - "m_Flags": { - "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648, - "RESIZE_TO_FIT_MOVIE": 8388608 - } - }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3105139380 - }, - "m_fTargetAlpha": { - "type": "float", - "id": 5, - "offset": 212, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1809129834 - }, - "m_fDisabledAlpha": { - "type": "float", - "id": 6, - "offset": 216, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1389987675 - }, - "m_fAlpha": { - "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 482130755 - }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3623628394 - }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2102211316 - }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1846695875 - }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3389835433 - }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2547159940 - }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2587533771 - }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3091503757 - }, - "m_sMovieFilename": { - "type": "std::string", - "id": 16, - "offset": 584, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1581619567 - } - } - }, - "219111838": { - "name": "class SharedPointer", - "bases": [ - "QueuedCombatCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 219111838, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - } - } - }, - "1785326906": { - "name": "class std::list >", - "bases": [], - "hash": 1785326906, - "properties": {} - }, - "601809951": { - "name": "class PetTomeBehavior*", - "bases": [ - "PetTomeBehaviorBase", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 601809951, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_petData": { - "type": "std::string", - "id": 1, - "offset": 144, - "flags": 551, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2990195294 - } - } - }, - "221572089": { - "name": "class ReqNumeric", - "bases": [ - "Requirement", - "PropertyClass" - ], - "hash": 221572089, - "properties": { - "m_applyNOT": { - "type": "bool", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1746328074, - "enum_options": { - "__DEFAULT": 0 - } - }, - "m_operator": { - "type": "enum Requirement::Operator", - "id": 1, - "offset": 76, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2672792317, - "enum_options": { - "ROP_AND": 0, - "ROP_OR": 1, - "__DEFAULT": "ROP_AND" - } - }, - "m_numericValue": { - "type": "float", - "id": 2, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 521915239 - }, - "m_operatorType": { - "type": "enum ReqNumeric::OPERATOR_TYPE", - "id": 3, - "offset": 84, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2228122961, - "enum_options": { - "OPERATOR_UNKNOWN": 4294967295, - "OPERATOR_EQUALS": 0, - "OPERATOR_GREATER_THAN": 1, - "OPERATOR_LESS_THAN": 2, - "OPERATOR_GREATER_THAN_EQ": 3, - "OPERATOR_LESS_THAN_EQ": 4 - } - } - } - }, - "1786373465": { - "name": "class CastleMagicTutorial*", - "bases": [ - "PropertyClass" - ], - "hash": 1786373465, - "properties": {} - }, - "219878676": { - "name": "class BanishBacklashEffectCinematicAction*", - "bases": [ - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 219878676, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - } - } - }, - "602087822": { - "name": "class RemoveProtectionEffectCinematicAction*", - "bases": [ - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 602087822, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - } - } - }, - "219829524": { - "name": "class BanishBacklashEffectCinematicAction", - "bases": [ - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 219829524, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - } - } - }, - "601922177": { - "name": "class StateEffectTemplate*", - "bases": [ - "GameEffectTemplate", - "PropertyClass" - ], - "hash": 601922177, - "properties": { - "m_effectName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2029161513 - }, - "m_effectCategory": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1852673222 - }, - "m_sortOrder": { - "type": "int", - "id": 2, - "offset": 148, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1411218206 - }, - "m_duration": { - "type": "double", - "id": 3, - "offset": 192, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2727932435 - }, - "m_stackingCategories": { - "type": "std::string", - "id": 4, - "offset": 160, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1774497525 - }, - "m_isPersistent": { - "type": "bool", - "id": 5, - "offset": 153, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 923861920 - }, - "m_bIsOnPet": { - "type": "bool", - "id": 6, - "offset": 154, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 522593303 - }, - "m_isPublic": { - "type": "bool", - "id": 7, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1728439822 - }, - "m_visualEffectAddName": { - "type": "std::string", - "id": 8, - "offset": 200, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3382086694 - }, - "m_visualEffectRemoveName": { - "type": "std::string", - "id": 9, - "offset": 232, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1541697323 - }, - "m_onAddFunctorName": { - "type": "std::string", - "id": 10, - "offset": 280, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1561843107 - }, - "m_onRemoveFunctorName": { - "type": "std::string", - "id": 11, - "offset": 312, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2559017864 - }, - "m_stackingRule": { - "type": "enum STACKING_RULE", - "id": 12, - "offset": 144, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 431568889, - "enum_options": { - "STACKING_ALLOWED": 0, - "STACKING_NOSTACK": 1, - "STACKING_REPLACE": 2 - } - }, - "m_state": { - "type": "std::string", - "id": 13, - "offset": 360, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2307803100 - }, - "m_animation": { - "type": "std::string", - "id": 14, - "offset": 392, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3431428731 - }, - "m_override": { - "type": "bool", - "id": 15, - "offset": 424, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 139353587 - } - } - }, - "1788145811": { - "name": "class BGPolymorphSelectBehavior*", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1788145811, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_polyCategoryInactiveToRedTeamPlayers": { - "type": "gid", - "id": 1, - "offset": 112, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 757020210 - }, - "m_polyCategoryUnavailableToRedTeamPlayers": { - "type": "gid", - "id": 2, - "offset": 128, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1382977667 - }, - "m_polyCategoryInactiveToBlueTeamPlayers": { - "type": "gid", - "id": 3, - "offset": 144, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1877669599 - }, - "m_polyCategoryUnavailableToBlueTeamPlayers": { - "type": "gid", - "id": 4, - "offset": 160, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1059429200 - } - } - }, - "1787742457": { - "name": "class QuestDynaModInfo*", - "bases": [ - "PropertyClass" - ], - "hash": 1787742457, - "properties": { - "m_hideObjects": { - "type": "bool", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 487002423 - }, - "m_alterState": { - "type": "bool", - "id": 1, - "offset": 73, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1458202892 - }, - "m_zoneTag": { - "type": "std::string", - "id": 2, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3405382643 - }, - "m_modState": { - "type": "std::string", - "id": 3, - "offset": 112, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1770855548 - }, - "m_existBeyondQuest": { - "type": "bool", - "id": 4, - "offset": 74, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 923590707 - } - } - }, - "220133073": { - "name": "class ClientMountOwnerBehavior", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 220133073, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_gender": { - "type": "enum eGender", - "id": 1, - "offset": 176, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2121766730, - "enum_options": { - "Male": 1, - "Female": 0, - "Neutral": 2 - } - }, - "m_race": { - "type": "enum eRace", - "id": 2, - "offset": 180, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 390582957, - "enum_options": { - "Bat": 88066, - "BatLightning": 1472842576, - "Boar": 2624962, - "CatThug": 1855674386, - "ChristmasElf": 819908552, - "ChristmasSnowman": 1146515225, - "Colossus_Ice": 1063279538, - "Cyclops": 1691813655, - "DragonBeta": 417003588, - "DragonFriendly": 69049013, - "EvilSnowman": 1579630926, - "FireElf": 443793687, - "Firecat": 2045525741, - "Frog": 2274918, - "FrostBeetle": 7692383, - "GhostBlue": 1097396892, - "GhostGreen": 882822629, - "GhostRed": 560510742, - "GhostYellow": 909974358, - "Ghoul": 82556199, - "GoatMonk": 486215564, - "GolemBrass": 1057388325, - "GolemClockwork": 1143380031, - "GolemSteel": 1660583674, - "GolemWood": 1426849876, - "HalloweenCat": 1042869199, - "Heckhound": 626736403, - "Helephant": 719065368, - "Human": 79806088, - "Hydra": 70785800, - "Imp": 84361, - "Krokomummy": 555755242, - "Kroktut": 1352354178, - "Leprechaun": 2106466410, - "LeprechaunPattyDay": 380507781, - "LightningBat": 228257682, - "Mannequin": 428442544, - "Minotaur": 949570680, - "Mount_Broom": 94637995, - "Mount_Cat": 1150940211, - "Mount_Dragon": 1565720148, - "Mount_Horse": 2054712767, - "Mount_PlayerWings": 589829552, - "Nikkos": 1563122418, - "NinjaPig": 607400740, - "Orthus": 1552590225, - "Piggle": 1897753328, - "Piggle_Valentine": 687697592, - "Piggle_ValentinePart2": 1760391091, - "Pixie": 74836240, - "RatMagician": 885542120, - "SalamanderFire": 48480175, - "SalamanderIce": 2011152164, - "SalamanderStorm": 600331072, - "Satyr": 84793363, - "Scarab": 2143810477, - "Sheep": 86220083, - "SkeletonArmored": 1791586239, - "SnowSerpent": 138621543, - "Spider": 1603064269, - "SpiderBlack": 559353179, - "SpiderBrown": 557941675, - "SpiderCrystal": 2119625297, - "SpiderGolem": 1632616514, - "Sprite": 1889156557, - "SpriteDark": 1888685518, - "Stormzilla": 252684095, - "SunBird": 1602211198, - "Transformation_ArmoredSkeleton": 1861349834, - "Transformation_CatThug": 1175387611, - "Transformation_Cat_Bandit": 1012395694, - "Transformation_ClockworkGolem": 601121214, - "Transformation_Cyclops": 620156297, - "Transformation_DarkFairy": 1206757203, - "Transformation_DraconianSorcerer": 1212016810, - "Transformation_Draconian": 450730089, - "Transformation_EarthColossus": 140119452, - "Transformation_EvilSnowman": 1497097122, - "Transformation_FatGobbler": 634003800, - "Transformation_FireElemental": 822233230, - "Transformation_FireElf": 46585468, - "Transformation_FireSalamander": 2118418114, - "Transformation_Gobbler_Skinny": 162365207, - "Transformation_GolemSteel": 1329184184, - "Transformation_Ice_Colossus": 430406408, - "Transformation_Krokomummy": 1644615769, - "Transformation_MagmaMan": 545064542, - "Transformation_Mander": 88998828, - "Transformation_NinjaPig": 1029132174, - "Transformation_Ninja_Pig_04": 7093548, - "Transformation_RatThug": 1175352795, - "Transformation_RavenMystic": 1443197359, - "Transformation_StormElemental": 637088511, - "Transformation_Treant": 1874998327, - "Transformation_WarPig": 691088645, - "Transformation_WolfScout": 263523463, - "Transformation_WolfWarrior": 6092463, - "Transformationn_SkeletonPirate": 1821341863, - "Treant": 1396597132, - "Troll": 82261620, - "Unicorn": 550546918, - "Unknown": 718677478, - "Wolverine": 528843083, - "Wraith": 1788506505, - "Wyrmkin": 379044612, - "Transformation_CyrusDrake": 94277831, - "PetEgg": 1973167984, - "GhostLady": 493415959, - "Banshee": 827805677, - "GobblerRed": 250135875, - "Ghoul_Gravedigger": 161812468, - "SkeletonWarrior": 734585814, - "BansheeBoss": 806445565, - "Seraph": 1792950125, - "CrabKing": 277875784, - "UndeadCaster": 1680689397, - "DragonFrontier": 1829438301, - "HeckhoundGhost": 872406464, - "Mount_Unicorn": 212699468, - "Jellyfish": 910724608, - "SeaDragon": 1194541306, - "Turtle": 1897184620, - "Starfish": 1447562471, - "SpinyFish": 162948281, - "Mount_Gryphon": 2110522960, - "Mount_Shark": 1170186623, - "Mount_Manta": 979931598, - "Mount_Seahorse": 1554833818, - "Mount_Seahorse_Tough": 1245859453, - "Mount_Koi": 1150937409, - "Mount_Lobster": 2025618875, - "Mount_Turtle": 1490849128, - "VenusFlyTrap": 1612039757, - "GDN_MED_BabyCarrots": 327334743, - "GDN_SM_BoomShroom": 31324632, - "GDN_SM_Dandelion": 2058674142, - "GDN_SM_Disparagus": 1732989489, - "GDN_MED_EvilSnowPeas": 747408607, - "GDN_SM_FicklePickle": 205381955, - "GDN_SM_HappyHolidaisy": 1736236340, - "GDN_MED_HelephantEars": 1803669659, - "GDN_MED_HoneySickle": 424149132, - "GDN_LG_NinjaFig": 847338104, - "GDN_LG_SnapDragon": 1076151689, - "GDN_SM_StinkWeed": 845383431, - "GDN_MED_TrumpetVine": 1922690264, - "GDN_MED_VenusFlyTrap": 1560899638, - "GDN_SM_Laughodil": 1278979588, - "GDN_LG_BreadFruitBush": 533042934, - "GDN_MED_PricklyBearCactus": 1236846986, - "GDN_MED_KingParsley": 110148182, - "LeprechaunPatriotic": 414730890, - "SeraphYuletide": 1325846853, - "DragonGhost": 1502126893, - "UnicornNightmare": 604358256, - "EvilSnowmanSandman": 1579432150, - "Colossus_Spirit": 422514215, - "Rock": 2393554, - "GDN_MED_GivingTree": 2047236132, - "Egg": 70853, - "Mount_Carpets": 1602744888, - "Kraken": 1737191829, - "Wyvern": 1727802601, - "Phoenix": 1765559002, - "Judgement": 562901781, - "ForestLord": 1390734923, - "Humongofrog": 1272123051, - "Scarecrow": 41441599, - "Mount_Ram": 77196599, - "BasketSnake": 1835657086, - "Samoorai": 522797493, - "Transformation_RavenWarrior": 701169336, - "PhoenixStorm": 1325268802, - "PhoenixDeath": 1281634042, - "GDN_LG_CouchPotatoes": 879742725, - "GDN_MED_KeyLimes": 811516024, - "Mount_BoneDragon": 1023618313, - "Mount_BigBoneDragon": 1124383680, - "Mount_FairyWings": 1904926612, - "Mount_DragonWings": 755225925, - "Mount_Pegasus": 1621244140, - "GDN_MED_BellPepper": 1710238687, - "GDN_MED_GrapesOfWrath": 1068787103, - "GDN_SM_TigerLily": 1899057048, - "WysteriaPiggle": 49173891, - "Mount_Wyvern": 1658410744, - "Mount_2P_Rhino": 1052779475, - "NightHawk": 358964390, - "Giraffe": 935214826, - "Mount_Hawk": 2070898895, - "Mount_HalloweenNightmare": 726136378, - "GobblerHalloween": 1482399836, - "Leopard": 1606863715, - "Skink": 76950867, - "Mount_Ostrich": 466111322, - "Mount_Crocagator": 1981222087, - "Transformation_Blacktusk-01": 401543565, - "Mount_Hippogriff": 2043817624, - "Transformation_Gorilla-01": 1555853240, - "Transformation_Gorilla-02": 1606184888, - "Mount_Raven": 94983735, - "Mount_Chrismoose": 1822495199, - "Mount_CandyCane": 1148551147, - "Ivy_League": 925492799, - "GDN_MED_Ivy_League": 1630077794, - "Mount_Kirin": 1168691825, - "GDN_SM_Moonflower": 2068754330, - "GDN_MED_BoonTree": 788055729, - "Snowball": 2046118016, - "Foo_Dog": 1549710807, - "ShenlongDragon": 932676736, - "Monkey": 1233866291, - "Wolfhound": 626884686, - "Redcap": 1540319086, - "Raven": 79941650, - "HollowKnight": 1107268274, - "Book": 2405826, - "GDN_MED_AngoraBunnyEars": 1547559854, - "GDN_MED_FortuneCookieTree": 786686214, - "GDN_MED_GooseTree": 809354938, - "GDN_SM_HoneyBeePlant": 1528880373, - "GDN_MED_BambooShoots": 1096708900, - "GDN_SM_Huckleberries": 1937475840, - "Rock_Moustache": 962221287, - "Efreet_Myth": 1834555522, - "Efreet": 1401700123, - "Mammoth": 1395147745, - "Triton": 1730466188, - "Gnome": 74954215, - "BoneDragon": 429245206, - "Basilisk": 1457899086, - "Chimera": 529027789, - "Transformation_GammaTemplate": 1337834518, - "Mount_Camel": 1168198963, - "Mount_RenaissanceWings": 1049782088, - "Bull_Mount": 1713506759, - "Mount_Owl": 1150938242, - "Mount_Alphyn": 487264165, - "Mount_Stag": 1150353823, - "Mount_Auroch": 509865325, - "Mount_Warg": 1150358072, - "StrangeBeast": 511334734, - "Efreet_Ice": 1820009122, - "Efreet_Storm": 1269986674, - "GDN_LG_AlligatorPear": 1293913372, - "Mount_2P_Treant": 928450863, - "Mount_2P_Dragon": 1431637933, - "Mount_Pogo_Stick_WC": 1462849298, - "Mount_Pogo_Stick_MB": 1349603090, - "GDN_LG_MeltingCheese": 1914589015, - "GDN_SM_FishOnAVine": 1734955358, - "GDN_LG_AngelOak": 1539539424, - "GDN_LG_MeltingCheese_Angel": 1254781264, - "SnowyOwl": 1682262138, - "Mount_3P_Hydra": 1207475250, - "WeaselMinstrel": 1541234616, - "MOUNT_Rickshaw": 938282973, - "Transformation_Sherlock-Bones": 509126601, - "Mount_Phoenix": 556355452, - "Toaddle": 597488187, - "Pantera": 528797696, - "WildfireTreant": 673362041, - "StoneTiger": 746336665, - "Blowfish": 1447737334, - "Smith": 78327187, - "FlyingCat": 1254472614, - "RamWarrior": 536916302, - "Ladybug": 1846384669, - "BurlapBoy": 607590898, - "DeerKnight": 560802130, - "Gargoyle": 1227701700, - "Chameleon": 596131510, - "Scorpion": 1462253104, - "GDN_SM_BoiledPeanuts": 544885684, - "GDN_SM_ClockFlower": 676513046, - "GDN_SM_DeadBeets": 650783482, - "GDN_MED_SnowApple": 1916648180, - "Eyecaramba_Violet": 1804780775, - "Eyecaramba_Green": 750346574, - "Eyecaramba_Orange": 687614854, - "Piggle_Grandfather": 131445665, - "Velociraptor": 1042311818, - "Babydactyl": 1180982194, - "Stegosaurus": 476811765, - "Mount_Pegasus_Spectral": 948250730, - "Mount_2P_Scarydactyl": 1808983335, - "Mount_2P_TRex": 1495851852, - "Therizinosaurus": 80337863, - "Runtosaurus": 476200406, - "FrilledLizard": 420993517, - "Mount_Ankylosaurus": 669692274, - "Mount_Triceratops": 1126950204, - "Mount_2P_Glider": 1630365881, - "Transformation_Thunderhorn": 1045262037, - "Transformation_Jaguar": 1080966062, - "Transformation_Pteranadon": 273836142, - "Transformation_ShadowWeaver": 255927111, - "Transformation_EagleWarrior": 1880471875, - "Mount_Falalalallama": 389890123, - "Mount_2P_WinterTreant": 1850265056, - "GDN_LG_MissileToe": 1767792974, - "GDN_MED_PointSetta": 647257205, - "Nutcracker2012": 1598217699, - "Coal2012": 1627852119, - "Mount_Sleigh": 1636615519, - "Mount_Sabertooth": 1613031507, - "Mount_MechanicalWings": 1014917438, - "PiranhaHunter": 686271163, - "Quetzal": 2020925822, - "Mount_Sloth": 1169387359, - "HollowKnightLife": 2114081886, - "BettaFish": 138088968, - "MummyCat": 62372925, - "TrojanHorse": 1725299194, - "WC_Storm_Possessed": 186960228, - "AV_Possessed": 1106693085, - "AZ_Possessed": 1106692701, - "CL_Possessed": 1106692255, - "KT_Possessed": 1106693015, - "MS_Possessed": 1106692977, - "WC_Possessed": 1106692459, - "Mount_2P_Whale": 448824263, - "Mount_2P_Chariot": 88035298, - "Mount_WarBoar": 1159836211, - "Mount_Palanquin": 47587550, - "BearCub": 672664722, - "Transformation_Minotaur": 1454233452, - "DragonGauntlet": 797645257, - "DeathUnicorn": 924144161, - "Flamingo": 1488424911, - "Mount_Gorilla": 1939919432, - "Mount_WarUnicorn": 1361393198, - "GargoyleMyth": 1819685060, - "TikiMan": 16098567, - "Siren": 79937811, - "GoldenRam": 410220227, - "Harpy": 96026632, - "SwordShield": 1668411785, - "ClockworkKnight": 1059948980, - "Mount_MechanicalEagle": 1720948645, - "Mount_Cloud": 1166233435, - "Mount_Surfboard": 1914250039, - "Mount_BetaDragon": 1023653721, - "Mount_BeeWings": 1387988401, - "Vampire": 524731385, - "FrankenBunny": 589797989, - "BumbleBee": 249592226, - "Mount_Dragonfly": 1028843656, - "BronzeGolem": 1320867859, - "TarantulaHawk": 1983939429, - "Mount_Grasshopper": 1852850928, - "FlyingSquirrel": 847551166, - "GDN_MED_Sunion": 1652707634, - "GDN_MED_SwordFern": 548761438, - "GDN_SM_SugarKhrystal": 267539461, - "GDN_SM_SawPalmetto": 1892888046, - "GDN_LG_FacePalm": 2050814140, - "GDN_LG_QueenCrapeMyrtle": 80378450, - "Transformation_ShadowTank": 1304943609, - "Transformation_ShadowHeal": 1254024185, - "Transformation_ShadowDPS": 87276537, - "Mount_Noelephant": 1383672248, - "SaintBernard": 572932242, - "ParkaFox": 2009808189, - "Goose": 75019719, - "Mount_Coconut": 791151432, - "CreepyBeetle": 345594179, - "BabyDragonfly": 1367084335, - "FennecFox": 41315063, - "PP_Leviathan": 833901526, - "PP_SunSerpent": 1062677009, - "PP_LordOfWinter": 960214698, - "PP_Medusa": 867812931, - "PP_Dryad": 147654656, - "PP_AvengingFossil": 315904647, - "PP_Sabertooth": 1799146677, - "Mount_Butterfly": 1283940943, - "Mount_Hare": 2070851023, - "Transformation_MorganthB": 197306990, - "Transformation_MorganthC": 197831278, - "Transformation_MorganthD": 200452718, - "BabyPegasus": 1215000859, - "ArcaneHelp": 1899247549, - "Mount_Vines": 98389624, - "Mount_ArcaneMinecart": 2001270930, - "Hobgoblin": 2133668461, - "Mount_2P_Rowboat": 237071469, - "ForestSpirit": 1178454602, - "Mount_SpiritWolf": 531991076, - "Otter": 84138671, - "OrigamiBird": 550984083, - "DinoSkeletal": 233277835, - "Mount_HarrowingsGreen": 1605746772, - "Mount_HarrowingsBlue": 477152436, - "Mount_HarrowingsPurple": 2092807554, - "RedPanda": 1744233845, - "Ibis": 2665577, - "Corgi": 78823875, - "Mount_Yak": 996545739, - "Mount_FlyingBalance": 436519643, - "Transformation_ShadowMalistaire": 1043814435, - "Transformation_DragonMalistaire": 841867699, - "Mount_Scarab": 1687658791, - "Transformation_MisterHound": 1973578844, - "Mount_BahHumbug": 55114077, - "Skates": 1568993965, - "Moose": 75019725, - "Mount_Gargoyle": 1456663874, - "GDN_MED_VenusFlyTrapEpic": 1594069606, - "Mount_PlayerWingsPink": 19403046, - "GDN_LG_AlligatorPearEpic": 1326804812, - "Pet_Armadillo": 825736847, - "Mount_JoustingDestrierDyeable": 1683448768, - "GDN_MED_VampireCarrots": 871596496, - "GDN_SM_WhiteTigerLilyEpic": 1703271434, - "GDN_LG_NinjaFigEpic": 938504823, - "GDN_LG_SnapDragonEpic": 2071674466, - "GDN_MED_HelephantEarsEpic": 719166107, - "GDN_MED_TrumpetVineEpic": 225854518, - "GDN_SM_DandelionEpic": 728637442, - "GDN_SM_HuckleberriesEpic": 1903258448, - "GDN_MED_SnowAppleEpic": 1231175967, - "GDN_SM_BoomShroomEpic": 981598771, - "GDN_MED_KingParsleyEpic": 2038371004, - "Mount_Raptor": 749695031, - "Pet_Toucan": 581477475, - "Pet_Squirrel": 969881395, - "Mount_WonkyDonkey": 1481657312, - "Mount_HawkPatriotic": 509149743, - "Pet_FrogAssistant": 1945041750, - "Mount_Cat2": 1151054899, - "Mount_Cat2BW": 1603515443, - "Pet_ArmadilloBW": 825733899, - "Pet_FrankieForearms": 1100195857, - "Mount_SolarSabre": 1281093703, - "MNT_MechOstrich": 258667969, - "MNT_BootsBalance": 1799191558, - "MNT_BootsDeath": 1034912971, - "MNT_BootsFire": 606061658, - "MNT_BootsIce": 2142643294, - "MNT_BootsLife": 773751898, - "MNT_BootsMyth": 144792486, - "MNT_BootsStorm": 1525245121, - "Pet_CorgiBirthday": 1951779369, - "OrigamiBirdBDay": 1909935955, - "Pet_FlyingBlackCat": 432111988, - "Mount_Narwhal": 449637834, - "Mount_NightOwl": 1648420845, - "Pet_Penguin": 137342907, - "MNT_PowerGemUnicorn": 411234062, - "Pet_CrystalButterfly": 512136094, - "Mount_BabyMammoth": 185831059, - "MNT_BabaYaga": 564874997, - "Pet_BabySeal": 657606984, - "Pet_BabyYeti": 635847496, - "Transformation_BallerinaBear": 1525333600, - "Mount_StagYuletide": 1508680687, - "Transformation_TitanMedium": 1700742736, - "Transformation_TitanLarge": 718614967, - "Pet_SirenIce": 849851564, - "Mount_FlyingDeath": 1717725588, - "Mount_FlyingFire": 1177216332, - "Mount_FlyingIce": 1238841184, - "Mount_FlyingLife": 433397684, - "Mount_FlyingMyth": 164983572, - "Mount_FlyingStorm": 375872049, - "Dragonling": 1730534849, - "Pet_EggChicken": 952873217, - "HeckhoundGhost_MAW": 893368960, - "Mount_WinterTrain": 751515281, - "Mount_RubberDucky": 1826548479, - "Pet_BansheeSpellwrit": 917979583, - "Pet_SamooraiSpellwrit": 370057597, - "Mount_UnicornAstral": 886914505, - "Guest_Boochbeard": 1958574095, - "Pet_MouseSister": 1267930350, - "Pet_MouseFather": 2010008339, - "Pet_VampireSquirrel": 250588691, - "Mount_CoffinCar": 1387606595, - "Mount_BabyElephant": 2026559639, - "Pet_RoadHog": 601156960, - "Mount_WolfGryphonWings": 543038283, - "MNT_ClockworkSteed": 891371132, - "Mount_Chopper": 1196683136, - "Pet_ButterflyLamb": 527214392, - "Pet_MouseMother": 2012687123, - "Pet_MouseBrother": 1174380856, - "Pet_Cherub": 769208559, - "GDN_SM_Jewel": 1104045832, - "MR_Death_Duncan_Grimwater": 1850289001, - "Mount_DesertRunner": 2049036229, - "Pet_MonkeyMirage": 418612892, - "Pet_ClockworkOwl": 1038482431, - "Pet_NinjaTurtle": 2024540686, - "Mount_Vines_Halloween": 82852149, - "Mount_SwarmBat": 1151836459, - "Mount_2P_NinjaDragon": 1239694057, - "Mount_Gobler": 1820615236, - "Mount_MaryleboneCar": 2027689685, - "JackOLantern": 1016361578, - "Transformation_DjinnCommonA_Balance": 996127128, - "Transformation_MedicineMode": 25960701, - "CactusHopper": 1956293007, - "Transformation_Mimic_ChestGold_A": 414145432, - "Mount_Ghoulture": 1067671195, - "Pet_Macaw": 1087278472, - "Pet_SandWorm": 653200803, - "Transformation_DromelDancer": 1071824116, - "Pet_Bunnies": 695874547, - "Mount_Snowboard": 1914380015, - "Transformation_DrommelDancer": 226294468, - "Mount_Carpet_New": 1618650322, - "Mount_BunnySleigh": 599915427, - "Helephant_Heart": 419161272, - "Mount_Snowboard_Holiday": 876339060, - "Transformation_GhostDog": 646575420, - "Transformation_PrinceGobblestone": 693826496, - "Transformation_Mithraya": 1240010601, - "Transformation_LuskaCharmbeak": 897469730, - "Transformation_YoungCyrusDrake": 15595663, - "Kookaburra": 1069759154, - "BorealisGolemPet": 797488492, - "FlyingEyePet": 505959833, - "StormCloudPet": 548463069, - "BullPet": 1993917801, - "OpossumPet": 284003652, - "GhoulturePet": 939920734, - "StormCloudPetB": 548463001, - "StormCloudPetC": 548463003, - "Guest_LordNightshade": 1221409981, - "BullPetB": 1993917561, - "BullPetC": 1993917553, - "BullPetD": 1993917513, - "Transformation_ShadowCrit": 1392195065, - "Mount_Pennyfarthing": 1551926344, - "Mount_RowboatPirate": 2079208803, - "Mount_IceCube": 1261861595, - "Guest_LostMaiden": 883675592, - "Guest_BoatswainMcGee": 1359750850, - "Guest_ChiefMateMcGurk": 329643845, - "Guest_DoomedBones": 2015643882, - "Guest_SpectreoftheBrocken": 266357448, - "Guest_DrownedKnight": 1100966093, - "Guest_TarntheDrowned": 329540205, - "Guest_DisloyalKnight": 1853240753, - "Guest_NamelessKnight": 1065677876, - "Guest_LambentFire": 489886605, - "Guest_LordoftheBrocken": 1662003371, - "Guest_StormCaiman": 1147500291, - "Guest_GrinningDeathMoon": 737595789, - "Guest_MoonSkullWight": 1720039490, - "Guest_HuemacSpearWreath": 1522021131, - "Guest_HowlingBanshee": 1340855338, - "Guest_Sea-Booter": 1818491983, - "Guest_DeadRover": 1009273257, - "Guest_CelestianRemnant": 1312268448, - "Guest_Shadow-WebConscript": 1500529411, - "Guest_Shadow-WebMercenary": 623672171, - "Guest_Shadow-WebWraith": 810956416, - "Guest_Shadow-WebHaunt": 500586883, - "Guest_CelestianPartisan": 633346892, - "Guest_CelestianDefender": 482102727, - "Guest_ThraleBonestriker": 1172972733, - "Guest_VorgenSoulbreaker": 1935693246, - "Guest_ServusBloodsword": 1703995647, - "Guest_QueenCalypso": 845803519, - "Guest_BlueBart": 77043390, - "Guest_KarolakNightspinner": 1008737316, - "Guest_ArachtusDuskweb": 1787750209, - "Guest_ZhalarStarcloud": 1453644105, - "Guest_NarallorNightborn": 1963363700, - "Guest_SelwynSkywatcher": 1413136893, - "Guest_OsseusNightreaver": 306827003, - "Guest_IrateBanshee": 865143109, - "Guest_FuriousHowler": 1607252558, - "Guest_CryingSpirit": 1559074820, - "Guest_UndeadDraconian": 169249571, - "Guest_ReanimatedDraconian": 247067807, - "Guest_GhastlySlave": 80127661, - "Guest_BoundSpecter": 369706568, - "Guest_NecroticHaunter": 1714841563, - "Guest_LoathsomeCreeper": 1087245229, - "Guest_FleshrotRetriever": 1925148031, - "Guest_BarbarianSpirit": 2112552732, - "Guest_BeghastionCrowcaller": 586628832, - "Guest_BeghastionFieldburner": 1650751959, - "Guest_BoneWarrior": 76802026, - "Guest_FleshlessSentry": 708431820, - "Guest_PirateRavager": 945157059, - "Guest_RottenScallywag": 974666855, - "Guest_ArmoredBonewalker": 1444568072, - "Guest_UndeadWizard": 1622435563, - "Guest_SoulSearcher": 2094392941, - "Guest_DecayingBlackguard": 412324062, - "Guest_FoulReaper": 919877614, - "Guest_NightShadow": 1675932226, - "Guest_MotleyCrew": 653779218, - "Guest_OrinGrimcaster": 472649066, - "Guest_GhostofSylviaDrake": 218332449, - "Guest_VikaMarkmaker": 1145181168, - "Guest_VasekAshweaver": 1001434369, - "Guest_FireWraith": 1027720368, - "Guest_HungrySoul": 1722435576, - "Guest_FrostBones": 456145606, - "Guest_SnowSkull": 835837850, - "Guest_WinterSkull": 1556601065, - "Guest_LothinDoombringer": 860995070, - "Guest_MimirWinterbane": 1111898070, - "Guest_KulgrimSoulsunder": 278037985, - "Guest_HitojiniDeathcaster": 1144499043, - "Guest_GaikotsuSkeleton": 1113949902, - "Guest_PhantomAce": 1917639347, - "Guest_PhantomGlider": 849918336, - "Guest_Krokomummy": 857773886, - "Guest_NiriniAncientGuard": 359313880, - "Guest_NiriniFireSpirit": 1863811476, - "Guest_VaultHaunter": 197723476, - "Guest_VigilantDefender": 171276829, - "Guest_WanderingAhnicSpirit": 1702865088, - "Guest_ForgottenDjeseritSoul": 1170568256, - "Guest_KaranahnDeathfeeder": 1612857711, - "Guest_ShamblingAhnic": 1579129677, - "Guest_RisenDjeserit": 287855500, - "Guest_KaranahnMortifier": 874288111, - "Guest_DjeseritDweller": 2058423665, - "Guest_AhnicStrider": 1776992302, - "Guest_GuardianoftheFang": 1816795524, - "Guest_DefenderoftheFang": 354353604, - "Guest_ProtectoroftheFang": 1290191037, - "Guest_SouloftheCharmed": 422890577, - "Guest_KaranahnKeeper": 77581557, - "Guest_NiriniIntimidator": 677205957, - "Guest_CondemnedSoldier": 449152244, - "Guest_NimahtheWicked": 1298248873, - "Guest_AkoriNirini": 1123159753, - "Guest_SoulScavenger": 892852198, - "Guest_KeeperoftheFang": 1676773499, - "Guest_ItennuSokkwi": 699159408, - "Guest_Tempestra": 334938435, - "Guest_QueenIrisiDjeserit": 1861434100, - "Guest_TheBonekeeper": 1302503449, - "Guest_CryptScavenger": 1893795791, - "Guest_Soulsapper": 1699756010, - "Guest_KingUroAhnic": 1788825731, - "Guest_KingShemetDjeserit": 1350067043, - "Guest_UnholyWraith": 1871146013, - "Guest_PikeSpiritcrusher": 498715531, - "Guest_SpellwritScreamer": 801626733, - "Guest_SpellwritRonin": 1671439174, - "Guest_Shrieker": 805966229, - "Guest_GravePhantom": 731622936, - "Guest_NightmareSpirit": 230709057, - "Guest_VengefulCreeper": 1100197884, - "Guest_TombRoamer": 1277825068, - "Guest_ShieldSkeleton": 1634270152, - "Guest_AgonyWraith": 30384496, - "Guest_IcyGhost": 768353592, - "Guest_Half-wittedSkeleton": 647996362, - "Guest_LazyHenchman": 1329554426, - "Guest_TiredFighter": 210248632, - "Guest_Screecher": 469007005, - "Guest_SeethingWraith": 664913100, - "Guest_ColdConfusion": 1304943934, - "Guest_OssuaryConscript": 1017667150, - "Guest_Ghulture": 1330558655, - "Guest_BodyGuard": 1048581801, - "Guest_SpectralGuardian": 422805602, - "Guest_VaultConscript": 1388398065, - "Guest_FootPatrol": 1692393321, - "Guest_ArmedGuard": 2045920536, - "Guest_Chilly": 1764665905, - "Guest_Achey": 973370519, - "Guest_Sneezy": 1769440773, - "Guest_Cough": 1170200073, - "Guest_Shadowbones": 1316133167, - "Guest_ForgottenConscript": 1466348281, - "Guest_BarracksGuardian": 236603440, - "Guest_CryptConscript": 314755436, - "Guest_DurvishSeeker": 1825622267, - "Guest_MedicineMode": 167015574, - "Guest_Myriarch2": 593881680, - "Guest_Myriarch3": 593881616, - "Guest_MyriarchEphialtes": 773531895, - "Guest_MotherGhulture": 1585201915, - "Guest_CaptainCosrow": 727107332, - "Guest_VizierRafaj": 214040637, - "Guest_DarkmoorSerf": 1522169114, - "Guest_DarkmoorSquire": 1822567109, - "Guest_ScarletWampyr": 1683954247, - "Guest_DraconianRevenant": 741497298, - "Guest_DraconianEidolon": 107733297, - "Guest_AnguishedWraith": 1078602022, - "Guest_DraconianPyromancer": 729577007, - "Guest_DraconianThaumaturge": 189734361, - "Guest_DraconianDiviner": 472633746, - "Guest_DraconianConjurer": 1824962835, - "Guest_DraconianTheurgist": 1828628416, - "Guest_DraconianNecromancer": 175364324, - "Guest_DraconianSorcerer": 1262893339, - "Guest_SirBlackwater": 366308464, - "Guest_AkhtangWormCrawl": 1589032404, - "Guest_SpiritofDarkmoor": 579455915, - "Guest_ShanevonShane": 2096517522, - "Guest_YevgenyNightCreeper": 1535282881, - "Guest_MalistairetheUndying": 824508513, - "Guest_Bunferatu": 1015806005, - "Guest_CountBelaBlackSleep": 761647679, - "Guest_DeathSoldier": 1715141574, - "Guest_SorrowWhisperer": 556532003, - "Guest_GriefSpectre": 1425488559, - "Guest_HowlingShade": 631460247, - "Guest_WalkingDead": 318527090, - "Guest_Akuji": 977635799, - "Guest_TorturedKakedaSoul": 1716874833, - "Guest_KakedaSpiritSlave": 1814699344, - "Guest_DishonoredSamoorai": 320085744, - "Guest_CursedRonin": 1204095686, - "Guest_TomugawatheEvil": 166125424, - "Guest_OyotomitheDefiler": 1672714483, - "Guest_Fushiko": 801492770, - "Guest_BrokenLandGuardian": 294671991, - "Guest_ShatteredSkyGuardian": 746681463, - "Guest_SunderedSeamGuardian": 1439618652, - "Guest_BrokenLandSpirit": 860105895, - "Guest_ShatteredSkySpirit": 2104112380, - "Guest_SunderedSeamSpirit": 69572311, - "Guest_LostSoul": 204361577, - "Guest_RottingFodder": 308249734, - "Guest_HauntedMinion": 689597338, - "Guest_FieldGuard": 1175228991, - "Guest_SkeletalWarrior": 778393993, - "Guest_SkeletalPirate": 1476730220, - "Guest_WanderingSpecter": 126188449, - "Guest_LivingScarecrow": 1442943145, - "Guest_FrostPhantom": 1809776664, - "Guest_FireShrieker": 173332719, - "Guest_CryptCrawler": 2118799272, - "Guest_ViridianSpecter": 383149977, - "Guest_ArgentClatterer": 525414714, - "Guest_SwimmingSpecter": 1494025094, - "Guest_ScarletScreamer": 1689589811, - "Guest_BoneDigger": 1351421123, - "Guest_HowlingGhost": 664019391, - "Guest_SkeletalSoldier": 750463116, - "Guest_MaidenofHate": 444442868, - "Guest_SkeletalRetainer": 1409032775, - "Guest_SoulHunter": 1900267551, - "Guest_MidnightShuffler": 1991052065, - "Guest_PlaguedSoul": 419071561, - "Guest_HauntingBanshee": 345837052, - "Guest_SimontheSayer": 1352807820, - "Guest_TheHarvestLord": 1923575206, - "Guest_LadyBlackhope": 1403431623, - "Guest_SergeantSkullsplitter": 898737831, - "Guest_Foulgaze": 2063419769, - "Guest_Wormguts": 788697519, - "Guest_Rattlebones": 125602919, - "Guest_Paulson": 1112716921, - "Guest_Grubb": 1167554274, - "Guest_Norton": 581021964, - "Guest_NightStalker": 1447653309, - "Guest_AddereTimeo": 1491420030, - "Guest_TheReaper": 1526369733, - "Guest_AngrusHollowsoul": 1427862805, - "Guest_OrrickNightglider": 951078615, - "Guest_SteelSentinel": 885250894, - "Guest_Shadow-WebSoldier": 2014925398, - "Guest_LostCeleste": 1725301830, - "Guest_CapnNigelSkullcrack": 1665439970, - "Guest_HaulAwayJoe": 1075985331, - "Guest_OldMaui": 15300840, - "Guest_LordAgue": 140791419, - "Guest_MelweenaSmite": 432188189, - "Guest_HalloweenTrickster": 2043736417, - "Guest_PumpkinHead": 1098332105, - "Guest_BaronMordecai": 817370918, - "Guest_KaimaniteMummy": 1332671420, - "Guest_VeggieRevanant": 928504192, - "Guest_BloodBat": 76467389, - "Guest_DeadBeets": 157829578, - "Guest_Desparagus": 1130644076, - "Guest_MeanestFly-Trap": 1652898868, - "Guest_Nosferabbit": 1021159436, - "Guest_ThrallofSothmekhet": 330780177, - "Guest_VileApparition": 426627869, - "Guest_SoulServant": 1183110886, - "Guest_SoulKeeper": 917518313, - "Guest_AdmiralBontau": 2032168402, - "Guest_DeathWhisperer": 3814952, - "Mount_RollerBlades": 111369373, - "Guest_BaneWyrm": 147033576, - "Guest_BlackDragon": 939469656, - "Guest_DragonSpawn": 1829803517, - "Guest_Fire-SpitterSpawn": 616624489, - "Guest_CaoranachtheFire-Spitter": 323513000, - "Guest_Jabberwock": 1552492834, - "Guest_CatalantheLightningLizard": 1155778705, - "Guest_WhiteDragon": 2009449331, - "Guest_WinterWyrm": 478925069, - "Guest_WyrmStatue": 2119216210, - "Guest_AlgidWyrm": 1309546482, - "Guest_BruleeSucre": 390936202, - "Guest_HebitohoWyrmling": 1682026810, - "Guest_Shadowwock": 505539184, - "Guest_EirikurAxebreaker": 1361453552, - "Guest_WarWyrm": 1124740742, - "Guest_StrayFireflier": 610979811, - "Guest_BurningFlamewing": 2041225130, - "Guest_FeralLavaling": 371483057, - "Guest_SplinterWing": 923421333, - "Guest_ChanticoBlueAir": 1572441903, - "Guest_CopperWingGuard": 302783602, - "Guest_ObsidianBeak": 2016227452, - "Guest_CaquixNineShadows": 2070101060, - "Guest_LustrousTlalocan": 1201030473, - "Guest_SeedThief": 263211181, - "Guest_PopZotzUnluckyDay": 1416773489, - "Guest_NezathePoet": 1905861376, - "Guest_MazenStingerBee": 1642023393, - "Guest_ImperialJusticePayne": 1285679745, - "Guest_AssistantWardenPorfiry": 22099059, - "Guest_MarshalKamensky": 524669730, - "Guest_WardenVissarovich": 882556823, - "Guest_GulagGuard": 100744159, - "Guest_CaptainKravchuck": 690830770, - "Guest_ImperialGuard": 346803640, - "Guest_IronPaw": 1797329688, - "Guest_TundarianEnforcer": 134256836, - "Guest_Ivan": 996220221, - "Guest_ColonelOrlov": 1381254189, - "Guest_IronPawIntakeCaptain": 2099184835, - "Guest_SolitaryWarden": 1503529566, - "Guest_CaptainZubkov": 793725366, - "Guest_SergeantBobrik": 722182485, - "Guest_WailingWraith": 946976407, - "EggChick": 1452316301, - "BunnyMallow": 518233330, - "Guest_ThunderHornZombie": 1007920040, - "Guest_SmokingMirrorZombie": 340971759, - "Guest_ShamblingZombie": 1920485146, - "Guest_MoonSkullZombie": 809249764, - "Guest_DeathlessStormHorn": 812397213, - "Guest_MozarTurtleHunter": 561749043, - "Guest_GuillermoShatterer": 499565054, - "Guest_XiuhcoatlBarbedTooth": 1719245305, - "Guest_AzcalFireAnt": 1281366337, - "Guest_TlotzinMoonThief": 407285761, - "Guest_PocaCruelStar": 1117353085, - "Guest_ThunderHornGhoul": 597878999, - "Guest_TezomocStoneSinger": 733511940, - "Guest_EzhuaBadTaste": 632779219, - "Guest_UacalxochitlBloodEye": 1614856226, - "Guest_WanadiBlackSky": 349829749, - "Guest_ElMarrow": 483880636, - "Guest_GrimCalaca": 1534029144, - "Guest_XipeFlayedOne": 1343577398, - "Guest_MotecumaDeathMask": 1782393717, - "Guest_EkeChuah": 13416770, - "Guest_AnacaonaBlackSnake": 1543344897, - "Guest_SmokingMirrorWight": 776452983, - "Guest_Tolkemec": 217428080, - "Mount_Fox": 77199428, - "PP_OwlProtege": 268847192, - "Mount_SharkSki": 331374103, - "PP_Dolphin": 1662291612, - "Mount_CastSymbol_D": 1134428045, - "Mount_CastSymbol_E": 1136525197, - "Mount_CastSymbol_F": 1138622349, - "Mount_CastSymbol_G": 1140719501, - "Mount_CastSymbol_A": 1128136589, - "Mount_CastSymbol_B": 1130233741, - "Mount_CastSymbol_C": 1132330893, - "Guest_LionSpectralGuardian": 1791543691, - "Guest_KillmareSpiritwalker": 1818928165, - "Guest_ZebraSpectralGuardian": 815933596, - "Guest_GorillaSpectralGuardian": 1635182119, - "Guest_IklawGhostWarrior": 373465545, - "Guest_BwanaShadowriver": 1307628747, - "Guest_ElephantSpectralGuardian": 1579402208, - "Guest_ZangaZebu": 1218173119, - "Guest_GrumishGreataxe": 486953385, - "PP_GlowFairy_A": 2028856748, - "Guest_RestlessSoldier": 1142701763, - "Guest_WanderingWizard": 209518514, - "Guest_ColonelIvanenko": 399169035, - "Guest_DetollitheDestroyer": 655767295, - "Guest_Jawniak": 1791298433, - "Guest_Tajniak": 356182394, - "Guest_Ygor": 996316081, - "Guest_KyaniteLancer": 2136703656, - "Guest_VestaShadowmark": 1846747836, - "Guest_ZoraSteelwielder": 1186470644, - "Guest_AndorBristleback": 1949884743, - "Guest_GalliumPaladin": 1812340868, - "Guest_GalliumFootman": 1295203112, - "Guest_GalliumShardtrooper": 1210699836, - "Guest_GalliumJuggernaut": 3527584, - "Guest_VladimirDarkflame": 1575322237, - "Guest_KyaniteLieutenant": 561528977, - "Guest_DrusillaMorningbane": 155837810, - "Guest_KyaniteValkyrie": 53242136, - "Transformation_20Q_SherlockBones": 1112674320, - "Guest_DevoraShadowcrown": 1813459117, - "Guest_YoualaNightDrinker": 881289828, - "Guest_Pendragon": 715669945, - "Guest_CelestianRevenant": 515730327, - "Guest_SoullessServant": 1505662730, - "Guest_SpiritServant": 104517373, - "Guest_SoulSerf": 1188214406, - "Guest_ServileSoul": 871844607, - "Guest_SkeletalCorsair": 239414410, - "Guest_RottedFodder": 1301186193, - "Guest_ScarletScreecher": 600457915, - "PP_FrankBunnyBride_A": 974707030, - "Guest_BastillaGravewynd": 2100015237, - "Guest_VilaraMoonwraith": 2067986693, - "Guest_YngvarSharptooth": 1783361972, - "Guest_TroubledWarrior": 1569033392, - "Guest_VeggieRevanant2": 928503904, - "Guest_VeggieRevanant3": 928503888, - "Guest_VeggieRevanant4": 928503872, - "Guest_VeggieRevanant5": 928503856, - "Guest_AncientQhatWarrior": 1564521104, - "Guest_EmperorPaleolo": 2079384347, - "Guest_SpiritofIntolerance": 1627658048, - "Guest_SpiritofInquiry": 1320544891, - "Guest_FirstGuardian": 1982227776, - "Guest_FallenMerc": 225926286, - "Guest_NightShadow2": 1638183490, - "Guest_NightShadow3": 1636086338, - "Guest_NightShadow2-2": 1436856907, - "Guest_NightShadow3-2": 1434759755, - "Guest_NightShadow4-2": 1432662603, - "Guest_NightShadow5-2": 1430565451, - "Guest_NightShadow6-2": 1428468299, - "Guest_NightShadow7-2": 1426371147, - "Guest_FirstScythe": 738854032, - "Guest_GreyMantisCaptain": 860186057, - "Guest_GreyMantisHunter": 1239274377, - "Guest_Atlach-Leng": 836136649, - "Guest_PetrovGloomstrider": 2045783873, - "Guest_NauyotolDownIntheHole": 1134251106, - "Guest_SandorSpearcaller": 1351072377, - "Guest_MavraFlamewing": 1477685600, - "Guest_Scaldling": 208751819, - "Guest_WoebegoneWraith": 1166488705, - "Guest_BorisBlackrock": 1365399915, - "Guest_KatiaFirewinter": 521255834, - "Guest_ValerikBrightsword": 1244055782, - "Guest_RurikFlamesoul": 1962726850, - "Guest_IonaPyrelance": 722266491, - "Guest_DarkPoltergeist": 818162178, - "Guest_TheCollector": 1772287612, - "Guest_ViktorSnowcrusher": 1028387381, - "Guest_ValeskaRedwind": 19316351, - "Guest_ScarrikGallowgaunt": 105397333, - "Guest_Neberyx": 1453883041, - "Guest_AsrikWidebelt": 401936422, - "Guest_GothricHonorbound": 750072340, - "Guest_HalfangBristlecrown": 618779562, - "Guest_OsvudFleetpaw": 1023466459, - "PP_PufferFish_A": 1578606029, - "Guest_OzelUnderwaterCat": 1033669302, - "PP_BabyGreenMan_A": 910025246, - "PP_SchoolTurtle_A": 1012620678, - "PP_DarkBalloon_A": 1229308566, - "MT_JetsamCopter": 92127678, - "Mount_4P_DarkClownCar": 420246262, - "MNT_BalloonsBunch": 2000358474, - "Guest_TempleGuardian": 632574316, - "Guest_TemplePhantom": 1701097840, - "Guest_MahonStarsearcher": 1549093341, - "Guest_LostKnight": 858980994, - "Guest_AnguishedWoodman": 174606918, - "Guest_TormentedTreant": 294050331, - "Guest_WildfireTreant": 1902129818, - "Guest_BlightedYaxche": 679097088, - "Guest_Junglethorn": 1734561424, - "Guest_Tangleroot": 2027061721, - "Guest_BlightedFreerooter": 1109803061, - "Guest_Winterbranch": 1170787806, - "Guest_DecayingBogwalker": 1338670789, - "Guest_BrownwoodTormentor": 1655181754, - "Guest_Wildroot": 1839747182, - "Guest_Ironsplinter": 668295157, - "Guest_Frostbranch": 75974631, - "Guest_KyoukonteiTreant": 474446232, - "Guest_BrokenStumps": 414724364, - "Guest_WordlessWoodsmen": 1813881830, - "Guest_DesiccatedTreebeard": 1826942903, - "Guest_ShadowoftheLand": 1612385317, - "Guest_TreeRoot": 1406633546, - "Guest_BefouledWoodwalker": 1517919498, - "Guest_ConfusedForestWarrior": 750805985, - "Guest_CrazedForestSpirit": 1007960507, - "Guest_Oakheart": 1158293719, - "Guest_SnowTreant": 1028620035, - "Guest_Snowbeard": 1997921701, - "Guest_BarkskinTreant": 2143957812, - "Guest_RazorleafTreant": 2133159197, - "Guest_CarrionFlowerMan": 1120698936, - "Guest_Kurokage": 355651925, - "Guest_LacombeStrawHouse": 568809873, - "Guest_BerkshireStickHouse": 1932133405, - "Guest_TamworthBrickHouse": 894027634, - "Guest_RustyTinderSpark": 1237916230, - "Guest_CoraWinterBranch": 1901918989, - "Guest_GrambleGoldRook": 1986988546, - "Guest_PiperStormTree": 1109520133, - "Guest_Hanadzura": 124838500, - "Guest_Kuchisaki": 2084188681, - "Guest_Kaizoku": 807430784, - "Guest_JaxonLastRites": 1653711119, - "Guest_SeijunKiller": 657647155, - "Guest_ZarichiTarakata": 1129212566, - "Guest_BladelessRonin": 1577395797, - "Guest_SanzokuOutlaw": 1682888807, - "Guest_SanzokuBandit": 1766198653, - "Guest_KakedaPainbringer": 1260119278, - "Guest_KakedaStalker": 367458449, - "Guest_KakedaShadow": 1604499626, - "Guest_KakedaSoulcrusher": 1961168112, - "Guest_ImitsuPlaguemaster": 1361539025, - "Guest_ImitsuDefouler": 1299791045, - "Guest_ImitsuPunisher": 234819300, - "Guest_StudentofKhai": 249757647, - "Guest_OtomoBattlemage": 918160114, - "Guest_OtomoCourier": 1373253378, - "Guest_OtomoSupplyRunner": 1580070577, - "Guest_OtomoScout": 1814051082, - "Guest_OtomoWrestler": 1053571230, - "Guest_OtomoFury": 111319603, - "Guest_Hyottoko": 307080225, - "Guest_Usunoki": 1881339626, - "Guest_Kagemoosha": 1842766119, - "Guest_UdoJin-e": 850816224, - "Guest_TakedaKanryu": 536087422, - "Guest_Tamauji": 818613882, - "Guest_Jikiru": 794167355, - "Guest_Nomoonaga": 849534658, - "Guest_Aiuchi": 515942855, - "Guest_Kurogaso": 1426248002, - "Guest_Ideyoshi": 1814038213, - "Guest_Koto": 1151260427, - "Guest_Usegi": 977549586, - "Guest_Kanago": 1644367227, - "Guest_Kyuto": 1168225979, - "Guest_Haru": 2070048389, - "Guest_Ashikata": 1523446928, - "Guest_Katsumori": 1823914597, - "Guest_Hingen": 1567896261, - "Guest_Yakedo": 502298497, - "Guest_Do-Daga": 1239945714, - "Guest_Maito": 979260804, - "Guest_TonkatsuThug": 1758658397, - "Guest_GobbloreanGuard": 1286210991, - "Guest_BabblingMeints": 413418139, - "Guest_PrinceGobblestone": 1813171676, - "Guest_GobblerMuncher": 1517159487, - "Guest_GobblerGorger": 130736772, - "Guest_GobblerScouter": 1509427587, - "Guest_GobblerGlutton": 1912199781, - "Guest_GobblerScavenger": 136586791, - "Guest_BaronGreebly": 1028182200, - "Guest_BaronRotunda": 457132907, - "PP_DeathMimic": 1811942047, - "Guest_GreenMan": 1126663802, - "Guest_ForestGrump": 1602350320, - "Guest_ErvintheBarbarian": 1671762776, - "Guest_RazortuskWarrior": 1109994549, - "Guest_RazortuskBrawler": 732265321, - "Guest_SplithoofRager": 1922134329, - "Guest_TuskedRaider": 1920114147, - "Guest_SviniBeserker": 1146317608, - "Guest_SviniReaver": 216717251, - "Guest_Shattertusk": 1191456730, - "Guest_SplithoofBarbarian": 296671728, - "Guest_Bloodseeker": 2086598239, - "Guest_Scarsnout": 1831766077, - "Guest_MasterTonkatsu": 1783298894, - "Guest_Grisletusk": 657393295, - "Guest_SplithoofBloodguard": 488382274, - "Guest_BristlehideRaider": 237078958, - "Guest_Gullin": 1656401882, - "Guest_ForestNymph": 812055814, - "Guest_SassafrasMan": 1327049788, - "Guest_RandolfSpellshine": 108808620, - "Guest_BleysFlamerender": 434070106, - "Transformation_Khan": 1398327634, - "Transformation_TheBat": 1675113521, - "MNT_DireWolf": 845578449, - "MNT_YuleMule": 1976182058, - "MNT_LightBlades": 829118450, - "MNT_FlyingSquid": 1573132252, - "PP_Globulin": 467801224, - "PP_BeastBaby": 1807874692, - "PP_SaniBot": 670845902, - "Mount_SwarmSand": 1277669407, - "Guest_Nodnarb": 211478288, - "Guest_LordBramble": 1118781162, - "Guest_Yogash": 506264561, - "Guest_Marcio": 499428996, - "Guest_Procyon": 1115376865, - "Guest_Thunderfin": 2029218563, - "Guest_ArkynMoonblade": 1152775206, - "Guest_CreeCurdWright": 1714953095, - "Guest_DeerMouseRevenant": 315064435, - "Guest_ElanaDarksun": 837982094, - "Guest_KingAlricFateSailor": 1934591130, - "Guest_LaughingCalaca": 984492527, - "Guest_WraithKnight": 620484548, - "Guest_FieryEchoofApep": 484636593, - "Guest_FrostyEchoofApep": 171933154, - "Guest_FalseEchoofApep": 479387377, - "Guest_ChargedEchoofApep": 1229406800, - "Guest_ShrowdengersQhat": 101563303, - "Guest_Scrollkeeper": 643219293, - "Guest_TerrorHound": 753341570, - "Guest_CondemnedMander": 445370758, - "Mnt_SnowStorm": 1491572670, - "Mount_ChimneySweeper": 378571534, - "MNT_PineappleCandyCane": 1630795796, - "Guest_TyphonDustwind": 740849673, - "MNT_StickHorse": 216654744, - "MimicTemplate": 1461219184, - "MNT_Ball_N_Chain": 289720920, - "PP_PeaceDove_A": 1785119671, - "Mount_Gyrocycle": 1495008048, - "PP_BattleMageDragon_A": 1864696711, - "MNT_BattleBeast": 1304449286, - "MNT_SmokeTrails": 387873030, - "Mount_FriendshipHare": 677127330, - "MNT_ButterflySwarm": 383602683, - "PP_EggChick_B": 1959154042, - "MNT_Unicorn": 562210585, - "PP_StuffedUnicorn": 1731641773, - "MNT_ParadeTruck": 2026348978, - "MNT_ParadeTruckXmas": 1017864627, - "MNT_AutumnLeafSwarm": 1540002279, - "PP_GingerbreadMan": 1796172229, - "PP_DecadeDragon": 1819398630, - "MNT_StageShip": 829852992, - "PP_DramaLlama": 255896529, - "PP_HallMinotaur_A": 1492017563, - "Guest_MacDeath": 1526226705, - "Guest_MacDeathUnderstudy": 1731752647, - "Guest_MacLifeUnderstudy": 257466641, - "Guest_MacStormUnderstudy": 8295117, - "MNT_Pantera": 1135198, - "MNT_StagLight": 1908778048, - "MNT_GiantSpider": 1247185021, - "MNT_StagEvil": 872303931, - "PP_BaskHound": 1093866594, - "PP_Marionette": 1688299938, - "PP_Marionette_B": 1688297824, - "Guest_Izft": 996301405, - "Guest_SapotisMinion": 1625665891, - "Guest_CrazedSlave": 1473233468, - "Guest_CharmedSlave": 803043667, - "Guest_EnsorcelledSlave": 40920285, - "Guest_HallServant": 2038116460, - "Guest_SiathePerceiver": 1235571913, - "Guest_Kiwu": 1151177787, - "Guest_NightImp": 1051843424, - "Guest_EvilTrickster": 1035477123, - "Guest_DeepWoodsImp": 1502444054, - "Guest_ForestPest": 802235713, - "Guest_TaintedForestImp": 1030343985, - "Guest_Youkai": 518367729, - "Guest_CarthaginianElephantWarrior": 776293919, - "Guest_IdrisBeast-Taker": 106759521, - "Guest_MikaSkarka": 237956516, - "Guest_Belloq": 757247833, - "Guest_GurtokPiercer": 549466122, - "Guest_GurtokFirebender": 817966523, - "Guest_GurtokDemon": 544070162, - "Guest_GeneralFiretusk": 2073037770, - "Guest_GurtokBarrierDemon": 44657563, - "Guest_BlacktuskShaman": 1009070925, - "Guest_FireDemon": 158367196, - "Guest_DeathOni": 1916642000, - "Guest_JadeOni": 1289517185, - "Guest_PlagueOni": 1464586443, - "Guest_WarOni": 1630196094, - "Guest_BrokenLandMammoth": 1587008312, - "Guest_SunderedSeamMammoth": 1272698721, - "Guest_BullyMammoth": 170705927, - "Guest_Bullhemoth": 146998717, - "Guest_Kogasha": 1909654543, - "Guest_MusuthBerserker": 1741298129, - "Guest_BlackTuskCultist": 1771575961, - "Guest_AksilBlacktrunk": 1253596409, - "Guest_LongdreamerShaman": 1521283133, - "Guest_MuratGreyeyes": 1296814314, - "Guest_ElephantSoldier": 1443670145, - "Guest_DarajaniGuard": 1597288495, - "Guest_Loremaster": 1792470809, - "Guest_Pork": 2069999347, - "Guest_Beans": 97706585, - "MNT_Ox": 1292937747, - "PP_PropellerSquirrel": 1657443894, - "Guest_RasikPridefall": 97921485, - "Guest_AmedrasLightstep": 1818417025, - "MNT_SmokeTrails_Balance": 1358150715, - "MNT_SmokeTrails_Fire": 702971609, - "MNT_SmokeTrails_Ice": 190218501, - "MNT_SmokeTrails_Life": 2045542105, - "MNT_SmokeTrails_Myth": 1276281121, - "MNT_SmokeTrails_Storm": 564954622, - "Guest_Bellosh": 1407013027, - "Guest_AcampiReedfist": 2076527733, - "Guest_AgnettaBroadblade": 14864960, - "Guest_FrostheartRaider": 1574787221, - "Guest_JordaSwordbearer": 1627071850, - "Guest_KasaiBaku": 1153107369, - "Guest_ZoraimeiHelephant": 1002482606, - "Guest_ConscriptedMander": 43811125, - "Firecat_Decade": 409516955, - "MNT_BatGlider": 2086258491, - "Transformation_PlayerHomework": 673389670, - "Transformation_PlayerAttendance": 422287307, - "Transformation_PlayerLecture": 2035625874, - "Transformation_PlayerPopQuiz": 483367038, - "MNT_GingerbreadHorse": 1369242781, - "MNT_NimbariChariot": 1251740392, - "PP_NimbariDog": 1235126828, - "Transformation_PlayerGrandma": 1128332272, - "Transformation_PlayerScionA": 33862367, - "PP_Mushroom": 1568942158, - "MNT_Scooter": 1148167046, - "MNT_Scooter_B": 2079302532, - "MNT_Scooter_C": 1810867076, - "MNT_Scooter_D": 468689796, - "MNT_IceCycle": 415797788, - "Transformation_PlayerScionA02": 33921759, - "Guest_FearoftheFuture": 947210229, - "Guest_FearofGremlins": 405857384, - "Guest_RootGuardian": 922940845, - "Guest_VineThrasher": 172546427, - "Guest_BlightWalker": 1438155154, - "Guest_BriarScourge": 615681851, - "Guest_DreamJabberwock": 907754098, - "Guest_DreamBelloq": 990352002, - "Guest_Voltergeist": 1558128068, - "Guest_SpecialBranch": 1927849418, - "Guest_MutantBriar": 805892802, - "Guest_FeralBriar": 883790223, - "Guest_MaizeMonster": 688905764, - "Guest_DreamShadowwock": 1432458248, - "Mount_Heartboard": 1421972759, - "PP_ChocoBunny": 324797859, - "Mount-PogoFlower": 906659501, - "MNT_AethyrCloud": 1586061078, - "MNT_Fangle": 7846854, - "Guest_StarfallSpider": 1177620831, - "Guest_AshSpider": 1588502553, - "Guest_CorruptedWeaver": 38937211, - "Guest_CrystalCrawler": 1197980149, - "Guest_ShimmerWidow": 1300740128, - "Guest_FacetedSpikespinner": 1939719331, - "Guest_CrystallineQueen": 1999282256, - "Guest_AncientCrystalweaver": 1409608801, - "Guest_FangtoothLavaspinner": 1538042104, - "Guest_VenomousHeatseeker": 1234682482, - "Guest_FireweaveRockbiter": 300743778, - "Guest_MonkeySpider": 754090007, - "Guest_CryptSpider": 1545405304, - "Guest_CommonHouseSpider": 613486002, - "Guest_ArachnaMagnaMagus": 825817937, - "Guest_ArachnaSoldier": 270978709, - "Guest_Gnissa": 1699826178, - "Guest_WebwoodScuttler": 1728611075, - "Guest_SandSpider": 61789007, - "Guest_WebwoodCreeper": 1013382584, - "Guest_Skathi": 1631429165, - "Guest_ArchmagusLorcan": 321146960, - "Guest_CrawleroftheMist": 2076696304, - "Guest_PaintedSpider": 1482115552, - "Guest_GiantSpider": 1545526191, - "Guest_CaveCrawler": 2101587667, - "Guest_RattleCatcher": 1472707326, - "Guest_TrapdoorSpider": 1321643694, - "Guest_RockClinger": 1304266411, - "Guest_InquisitorXimenez": 1053483090, - "Guest_ElderMagus": 1017836836, - "Guest_WardenBenthamic": 18807199, - "Guest_SpiderArchmagus": 387645558, - "Guest_SpiderAdept": 2094873407, - "Guest_InterrogatorRentenius": 1245984179, - "Guest_WarpedWeaver": 495882677, - "Guest_ArachnaSkinner": 281864085, - "Guest_SkinnerConscript": 2028526453, - "Guest_ArachnaGladiator": 2492046, - "Guest_LorcanInitiate": 353311753, - "Guest_Serket": 1871335773, - "Guest_IceWeaver": 2063216026, - "Guest_SpiritSpinner": 525666327, - "Guest_MysteriousCrawler": 218352756, - "Guest_BlackWidow": 1909331619, - "Guest_BrownRecluse": 1146386275, - "Guest_Creeper": 1197442790, - "Guest_GearSpinner": 67020478, - "Guest_Clinker": 1194519062, - "Guest_Clanker": 1194517014, - "Guest_GrandfatherSpider": 1330981335, - "Guest_Spiderling": 1400274461, - "Guest_ManekiWebWalker": 888348786, - "Guest_KoganiDeathCrawler": 276010604, - "Guest_CheliceranCrawler": 1169176517, - "Guest_ArachniteCreeper": 1850534774, - "Guest_ChelicaranStalker": 2057291848, - "Guest_HornedMonkeySpider": 1301514577, - "Guest_GreyOgreSpider": 1533774471, - "Guest_StarburstSpider": 698029451, - "Guest_PaintedCaveMonster": 601315479, - "Guest_RubbleRouser": 220785666, - "Guest_EarthElemental": 435260049, - "Guest_SharpshardWarrior": 1403237237, - "Guest_Firevein": 1220046430, - "Guest_Blackblade": 458130537, - "Guest_VengefulFireheart": 563205004, - "Guest_FirerockStomper": 608552855, - "Guest_BlackrockGuardian": 1663799582, - "Guest_ConfusedSentry": 24655510, - "Guest_SilverSentinel": 1090673683, - "Guest_SilverServant": 84560693, - "Guest_GiantHomunculus": 456098557, - "Guest_PropertyMaster": 229101764, - "Guest_VaultProtector": 185568207, - "Guest_PlatedDefender": 79324363, - "Guest_Avalanche": 761613547, - "Guest_RockReaver": 919912933, - "Guest_Frostmantle": 856308090, - "Guest_GlacierWalker": 131215932, - "Guest_SandBehemoth": 272513357, - "Guest_RunedAnnihilator": 121339936, - "Guest_RunedDevestator": 1611071181, - "Guest_RunedGuardian": 1986312667, - "Guest_CanyonRager": 1123038266, - "Guest_RubbleReaver": 220774678, - "Guest_Boulderbone": 122279242, - "Guest_Nali": 77467516, - "Guest_Gnar": 1151164930, - "Guest_GlacialAvenger": 1181253632, - "Guest_SokkwiKeymaster": 190919624, - "Guest_SandsofTime": 34920273, - "Guest_BladeGolem": 435561523, - "Guest_FrostColossus": 1564686403, - "Guest_IceColossus": 335477257, - "Guest_PollutedEarthWalker": 86045387, - "Guest_CorruptedEarthSpirit": 1135891559, - "Guest_Stonebreaker": 1317905436, - "Guest_StoneElemental": 1715022018, - "Guest_VolcanisGolem": 1904918929, - "Guest_WaterElemental": 1717850987, - "Guest_AshenDeathMonkeySpider": 35356665, - "Guest_DeathMonkeySpider": 1525508507, - "Guest_MotherMonkeySpider": 110317392, - "Guest_DoomMonkey": 1135105500, - "Guest_DreamMorganthe": 907599965, - "Guest_DragonBeetle": 1974635734, - "Guest_SandWalker": 1530843985, - "MNT_PandaMama": 916371162, - "PP_BabyPandas": 778536285, - "PP_FrogPrince": 729975205, - "MNT_PumpkinCarriage": 183672737, - "Mount_Gobbler_B": 1193388729, - "PP_Hamster": 1578040708, - "Guest_Steeleton": 657429968, - "Guest_GoldenWyrm": 311022393, - "MNT_Roc": 1564431869, - "PP_BabyGriffin": 1913686406, - "Transformation_ShadowDPSMob": 936133896, - "Transformation_ShadowTankMob": 305660992, - "Transformation_ShadowHealMob": 356596800, - "Guest_SpiritofIgnorance": 1577360126, - "Guest_FecklessSoul": 519648315, - "Guest_BurnedOutSoul": 312181646, - "Guest_BenightedRevenant": 2131956962, - "Guest_TombLurker": 1901203489, - "Guest_DesertGolem": 543642682, - "Guest_KumoOni": 215822625, - "Guest_SpellwritStalker": 161772776, - "PP_Sun": 1723237840, - "Guest_Leadite": 4480416, - "Mount_FestiveFox": 2125832348, - "PP_FenrisWolf": 1601784680, - "PP_SchoolPiggle": 109782407, - "PP_FenrisWolf_Red": 1597992854, - "PP_FenrisWolf_Teal": 1455058454, - "PP_FenrisWolf_White": 1102186199, - "Transformation_NinjaPig_Fire": 984575055, - "Transformation_BG_RatThief_Myth": 1191155131, - "Transformation_BG_RatThief_Storm": 675891897, - "MNT_Umbrella": 955683437, - "Transformation_BG_Elf_Ice": 1209681129, - "Transformation_BG_Fairy_DarkMinion_Balance": 33521202, - "Transformation_BG_Cyclops_Death": 876023972, - "Transformation_BG_Minotuar_Fire": 1118476387, - "Transformation_BG_WolfWarrior_Storm": 2075594475, - "Transformation_BG_WolfWarrior_Balance": 746159992, - "Transformation_BG_Draconian_Myth": 903606820, - "Transformation_BG_Draconian_Life": 1501291044, - "Transformation_BG_Colossus_Life": 1320377666, - "MNT_DolphinChariot": 102982520, - "MNT_EvilWagon": 685457563, - "MNT_FlyingDutchman": 1176206544, - "PP_SeaHorse": 2024322494, - "PP_EvilTeddy": 1159020925, - "PP_ZombieParrot": 384805107, - "Transformation_BG_Ice_Colossus": 299613211, - "MNT_CarrierBat": 7323333, - "Transformation_BG_Minotaur_MythTempalte": 430330904, - "PP_FeatheredTabby": 452526748, - "Transformation_Detritus01": 1335763402, - "Guest_Metallossus": 335457082, - "MNT_SantaJaws": 464410203, - "MNT_BattleBadger": 532858222, - "Transformation_Shedder01": 2069145892, - "PP_NatureSpirit": 373176286, - "Transformation_Devourer01": 1004421540, - "Guest_TheDevourer": 1591187996, - "Guest_Treeminder": 1093207850, - "Guest_RenegadeDruid": 2087982292, - "Guest_FractalTreeminder": 927174548, - "Guest_UnsettledTreeminder": 486164163, - "Guest_DragonspyreCrusader": 247317280, - "Guest_YoungGreggor": 66068670, - "Guest_GeneralGreyflame": 499924835, - "Guest_OldGreggor": 391726170, - "Guest_PrinceViggor": 853556298, - "Guest_DragonspyreVanguard": 693851565, - "Guest_SilasConviction": 177362659, - "Guest_SilasWeariness": 893431021, - "Guest_SilasRage": 1288904439, - "Guest_SilasDoubt": 1479426285, - "Guest_Lorekeeper": 147779344, - "Guest_FelixPhotomongerIII": 68387506, - "Guest_WarHavox": 1634324022, - "Guest_Mis-assembledSkeleton": 221832082, - "Guest_TreeminderGhost": 200408510, - "Guest_ViggorsDrake": 340449521, - "Guest_BlueNinjaPig": 938539327, - "Guest_RedNinjaPig": 2097962021, - "Guest_OrangeNinjaPig": 625058258, - "Guest_PurpleNinjaPig": 445746449, - "Guest_RitualColossus": 844563319, - "Guest_TinyDragon": 1123127688, - "Guest_RitualSpider": 429827552, - "Guest_RitualDraconian": 837510372, - "Guest_CC_Druid_Warrior_C_01": 55314616, - "Guest_CC_Druid_Wizard_A_01": 1046261169, - "Guest_CC_Druid_Wizard_B_01": 1046244785, - "Guest_CC_Druid_Warrior_A_01": 56363192, - "MNT_Toboggan": 995356805, - "MNT_2P_WickerTreant-001": 2065440944, - "PP_Ratatoskr": 1003497600, - "PP_Trash": 1195047012, - "Guest_CC_Druid_Wizard_D_01": 1046343089, - "MNT_Sunflower": 721091531, - "MNT_Whoopee": 1383311238, - "MNT_Warthog": 8060761, - "PP_ShamRock": 943893325, - "PP_LeapingLeprechaun": 132882517, - "PP_LionCubs": 465759803, - "PP_Tanuki": 670387843, - "MNT_Crane": 433122675, - "MNT_Krokosphinx": 739938754, - "Transformation_BG_Fairy_Life": 1897480818, - "Transformation_LiceDeepSpawnA": 244795720, - "Piggle_Alien": 1761605655, - "PP_JeweledScarab": 620544607, - "Guest_KR_Nymph_DrkMage_D50": 1248526054, - "Guest_KR_Nymph_DrkMage_C50": 1246953190, - "Guest_KR_Nymph_DrkMage_B50": 1247477478, - "Guest_KR_Nymph_DrkMage_A50": 1245904614, - "Guest_EM_Spider_Ash_01": 185724938, - "UFO": 47349, - "PP_Kit10": 326796620, - "PP_Lumi_Tulip": 84119585, - "PP_Lumi_Fern": 117015078, - "PP_Lumi_Violet": 1468797578, - "PP_Lumi_Sunny": 1769236703, - "PP_Lumi_Daisy": 1743454175, - "MNT_CelestianMech": 1238076872, - "MNT_Brontosaurus": 402157167, - "Guest_HG_AKT_Krok_Cyber_A_Balance_25": 1367985604, - "Guest_HG_AKT_Krok_Cyber_A_Balance_50": 1368084932, - "Guest_HG_AKT_Krok_Cyber_A_Balance_75": 1367988676, - "Guest_HG_AKT_Krok_Cyber_A_Balance_100": 1351303620, - "Guest_HG_AKT_Krok_Cyber_A_Balance_130": 1351270852, - "Guest_HG_AKT_Krok_Cyber_A_Fire_25": 976558490, - "Guest_HG_AKT_Krok_Cyber_A_Fire_50": 37034397, - "Guest_HG_AKT_Krok_Cyber_A_Fire_75": 305469850, - "Guest_HG_AKT_Krok_Cyber_A_Fire_100": 573905821, - "Guest_HG_AKT_Krok_Cyber_A_Fire_130": 573905824, - "Guest_HG_AKT_Krok_Cyber_A_Ice_25": 159411377, - "Guest_HG_AKT_Krok_Cyber_A_Ice_50": 541093041, - "Guest_HG_AKT_Krok_Cyber_A_Ice_75": 146828465, - "Guest_HG_AKT_Krok_Cyber_A_Ice_100": 557870241, - "Guest_HG_AKT_Krok_Cyber_A_Ice_130": 960523425, - "Guest_HG_AKT_Krok_Cyber_A_Myth_25": 976187830, - "Guest_HG_AKT_Krok_Cyber_A_Myth_50": 36663729, - "Guest_HG_AKT_Krok_Cyber_A_Myth_75": 305099190, - "Guest_HG_AKT_Krok_Cyber_A_Myth_100": 573535153, - "Guest_HG_AKT_Krok_Cyber_A_Myth_130": 573535156, - "Guest_CL-GolemButler-R9": 780077559, - "Guest_CL-GolemDigger-Boss-R10": 562020288, - "Guest_CL-GolemDigger-R9": 789375095, - "Guest_CL-GolemDigger-Rank8MythBoss-R10": 930527857, - "Guest_CL-GolemWorker-R9-1": 1072815287, - "Guest_CL-FishbotBrown-R9-1": 2006155417, - "Guest_CL-FishbotBrown-R9-2": 395542681, - "Guest_CL-FishbotGold-Boss-R10": 611881707, - "Guest_CL-FishbotGold-R9": 705414492, - "Guest_CL-FishbotYellow-Boss-R10": 23145662, - "Guest_CL-Protector-Black-Boss-R10-2": 679228793, - "Guest_CL-Protector-Gold-R10": 1909636609, - "Guest_CL-Protector-Gold-R9-1": 1909634804, - "Guest_CL-Protector-Gold-R9-2": 1909634932, - "Guest_CL-Protector-Gold-R9-3": 1909635060, - "Guest_CL-Protector-Gold-R9-4": 1909634164, - "Guest_CL-Protector-Purple-R9-Boss": 1889837072, - "Guest_CL-Protector-Purple-R9": 81760161, - "Guest_CL-Protector-Tan-Boss-R10": 912663188, - "Guest_KR_Golem_Worker": 1784607296, - "Guest_Golem-Brass-R7-1": 718939445, - "Guest_Golem-Clockwork-R7": 1161173708, - "Guest_EM_Robot_Batbot_A_01": 1482867950, - "Guest_EM_Robot_Batbot_B_02": 945947886, - "Guest_EM_Robot_Batbot_B_01": 1482818798, - "Guest_EM_Robot_Batbot_B_03": 409076974, - "Guest_EM_Robot_Batbot_B_04": 127793938, - "Guest_EM_Robot_Batbot_B_05": 664664850, - "Guest_EM_Robot_Drone_A_02": 1215188569, - "Guest_EM_Robot_Drone_A_03": 1231965785, - "Guest_EM_Robot_Drone_A_01": 1265520217, - "Guest_EM_Robot_Drone_A_04": 1315851865, - "Guest_EM_Robot_Drone_A_05": 1332629081, - "Guest_EM_Robot_Drone_A_06": 1282297433, - "Guest_EM_Robot_Drone_A_07": 1299074649, - "Guest_EM_Robot_Drone_A_08": 1114525273, - "Guest_EM_Robot_Drone_A_09": 1131302489, - "Guest_EM_Robot_Drone_A_Boss_01": 1960661151, - "Guest_EM_Robot_Drone_A_Boss_02": 1960530079, - "Guest_EM_Robot_Drone_E_01": 1265518169, - "Guest_EM_Robot_Tank_A_01": 1314796420, - "Guest_EM_Robot_Tank_A_02": 1313223556, - "Guest_EM_Robot_Drone_C_02": 1215187545, - "Guest_EM_Robot_Drone_D_03": 1231963225, - "Guest_EM_Robot_Drone_D_01": 1265517657, - "Guest_EM_Robot_Drone_D_02": 1215186009, - "Guest_EM_Robot_Tank_B_01": 1314796468, - "Guest_EM_Robot_Drone_C_01": 1265519193, - "Guest_G14-BP-Golem_Steel_Boss": 2071105129, - "Guest_G14-BP-Golem_Steel_Puzzle": 715790979, - "Guest_Golem-Brass-Elite-L38": 1163662532, - "Guest_Golem-Brass-Elite-L56": 2057562884, - "Guest_Golem-Brass-MBBoss-L48": 1498830732, - "Guest_Golem-Brass-MBBoss-L71": 1498829576, - "Guest_Golem-Brass-MBBoss-L76": 1498828936, - "Guest_Golem-Clockwork-Elite-L54-Metal": 417151527, - "Guest_Golem-Clockwork-Elite-L37": 1961943722, - "Guest_Golem-Clockwork-Elite-L54": 1950147242, - "Guest_Golem-Clockwork-L28": 1561959116, - "Guest_Golem-Clockwork-MBBoss-L37": 973152783, - "Guest_Golem-Clockwork-MBBoss-L69": 1262559759, - "Guest_Golem-Steel-Elite-L39": 1430496717, - "Guest_Golem-Steel-MBBoss-L40": 1229578887, - "Guest_Golem-Steel-MBBoss-L43": 1229579015, - "Guest_Golem-Steel-MBBoss-L50-1": 1231762051, - "Guest_Golem-Steel-MBBoss-L50": 1229578883, - "Guest_Golem-Steel-MBBoss-LXX": 1229583927, - "Guest_Golem-Wood-Elite-L35": 904360756, - "Guest_Golem-Wood-Elite-L37": 1978102580, - "Guest_Golem-Wood-Elite-L50": 1813548236, - "Guest_Golem-Wood-MBBoss-L63": 1392041724, - "Guest_MB-Gauntlet-Golem-Clockwork": 854649045, - "Guest_Spider-Golem-MBBoss-L67": 253352706, - "Guest_Spider-Golem-MBBoss-L96": 253348994, - "Guest_WC-MAW-GasGolem-Minion": 1511013798, - "Guest_WC-MAW-GasGolemLife-Minion": 1306026584, - "Guest_Golem-Steel-L02": 1027229749, - "Guest_Golem-Clockwork-L01": 1409915596, - "Guest_Gauntlet-01-Golem-Steel-Ghost-R8": 402816318, - "Guest_Golem-Wood-L01": 156976035, - "Guest_HG-Clock-ClockworkSpanner-20": 1523370449, - "Guest_HG-Clock-ClockworkSpanner-40": 1523370455, - "Guest_HG-Clock-ClockworkSpanner-60": 1523370453, - "Guest_HG-Clock-ClockworkSpanner-80": 1523370459, - "Guest_HG-Clock-ClockworkSpanner-100": 1523354068, - "Guest_HG-Clock-ClockworkSpanner-120": 1523354004, - "Guest_AQ-Cyclops-Guard": 191361948, - "Guest_AQ_Cyclops_Guard_A_Boss_01": 114747100, - "Guest_CL-Cyclops-Death-R10": 611013866, - "Guest_Cyclops-Death-Boss-R7": 1192370725, - "Guest_Cyclops-Death-Boss-R9": 1192370717, - "Guest_Cyclops-Death-R7": 144593791, - "Guest_GH-Cyclops-Death-R6": 594236619, - "Guest_Cyclops-BlueHelmet-KTBoss-L03": 1720105277, - "Guest_Cyclops-Red-L12": 1816429840, - "Guest_MR_Cyclops02WHelmet_Model_01": 1483732416, - "Guest_Cyclops-Blue-L02": 1633021234, - "Guest_Cyclops-BlueHelmet-WCBoss-L03": 427378332, - "Guest_Cyclops-RedHelmet-WCBoss-L03": 2021269422, - "Guest_HG_Sinbad_Cyclops_25": 911979034, - "Guest_HG_Sinbad_Cyclops_50": 1856261606, - "Guest_HG_Sinbad_Cyclops_75": 861647386, - "Guest_HG_Sinbad_Cyclops_100": 1789152678, - "Guest_HG_Sinbad_Cyclops_130": 178539942, - "Guest_HG_Sinbad_IronSultan_25": 930031152, - "Guest_HG_Sinbad_IronSultan_50": 930051504, - "Guest_HG_Sinbad_IronSultan_75": 930030768, - "Guest_HG_Sinbad_IronSultan_100": 927954864, - "Guest_HG_Sinbad_IronSultan_130": 927942576, - "MNT_SweetRide": 1643297840, - "PP_FrilledDino": 1395342809, - "PP_Celestian": 95679303, - "PP_Sun_Angry": 1955190071, - "PP_Marshmallow": 1220667954, - "MNT_Umbrella_B": 923364822, - "MNT_Tamer": 1050737194, - "PP_BumbleBee_B": 858653433, - "MNT_PunkFlamingo": 1634690818, - "MNT_2P_WoolyRhino": 1395943031, - "PP_Retriever": 72842604, - "PP_Piggle_Caveman": 181356174, - "PP_DecennialDragon": 1396523337, - "MNT_Tiger_Rainbow": 515535412, - "MNT_CarrierGhosts": 1833039309, - "MNT_Sled": 617654308, - "Transformation_BG_RatThief_Death": 30691641, - "Transformation_BG_Elf_Storm": 44352983, - "Transformation_BG_WolfWarrior_Ice": 986304351, - "MNT_CarriorGhost_B": 1768732109, - "MNT_CarriorGhost_C": 1766634957, - "Transformation_BG_Colossus_Fire": 1318803522, - "Transformation_BG_Krok_Balance": 140952965, - "Guest_KM_Gobbler_Skinny_A_11": 773648065, - "Guest_KM_Robot_Candy_A_01": 480414124, - "Guest_KM_Robot_Candy_A_02": 530745772, - "Guest_KM_Robot_Candy_A_03": 513968556, - "Guest_KM_Robot_Candy_A_04": 430082476, - "Guest_KM_Robot_Candy_A_05": 413305260, - "Guest_KM_Gummy_Bear_A_01": 1940905059, - "Guest_KM_Gummy_Bear_D_01": 1940905011, - "Guest_KM_Gummy_Bear_E_01": 1940904995, - "Guest_KM_Gummy_Bear_A_02": 1941429347, - "Guest_KM_Gummy_Bear_D_02": 1941429299, - "Guest_KM_Gummy_Bear_E_02": 1941429283, - "Guest_KM_Gummy_Bear_B_01": 1940905043, - "Guest_KM_Gummy_Bear_B_02": 1941429331, - "Guest_KM_Gummy_Bear_B_03": 1941953619, - "Guest_KM_Gummy_BearHat_A_01": 853226448, - "Guest_KM_Gummy_BearHat_A_02": 853226460, - "Guest_KM_Gummy_Bunny_A_01": 324805042, - "Guest_KM_Gummy_Bunny_C_01": 324806066, - "Guest_KM_Gummy_Bunny_D_01": 324807602, - "Guest_KM_Gummy_Bunny_E_01": 324807090, - "Guest_KM_Gummy_Bunny_F_01": 324808626, - "Guest_KM_Gummy_BunnyUber_A_01": 525565930, - "Guest_KM_Gummy_Worm_A_01": 231044195, - "Guest_KM_Gummy_Worm_B_01": 231044179, - "Guest_KM_Gummy_Worm_C_01": 231044163, - "Guest_KM_Gummy_Worm_A_02": 232617059, - "Guest_KM_Gummy_Worm_B_02": 232617043, - "Guest_KM_Gummy_Worm_C_02": 232617027, - "Guest_KM_Gummy_Bear_F_01": 1940904979, - "Guest_KM_Gummy_Bear_F_02": 1941429267, - "Guest_KM_Gummy_Bunny_C_02": 274474418, - "Guest_KM_Robot_Candy_A_06": 463636908, - "Guest_KM_Alphoi_DarkF_A_01": 475441543, - "Guest_KM_Gobbler_Skinny_A_01": 773648069, - "Guest_KM_Gobbler_Skinny_A_02": 773648197, - "Guest_KM_Gobbler_Skinny_A_03": 773648325, - "Guest_KM_Gobbler_SkinnyF_A_01": 254411012, - "Guest_KM_Gobbler_Skinny_A_04": 773647429, - "Guest_KM_Gobbler_Skinny_A_05": 773647557, - "Guest_KM_Gobbler_Skinny_A_06": 773647685, - "Guest_KM_Gobbler_SkinnyF_A_02": 254423300, - "Guest_KM_Gobbler_Skinny_A_07": 773647813, - "Guest_KM_Gobbler_Skinny_A_08": 773646917, - "Guest_KM_Gobbler_Skinny_A_09": 773647045, - "Guest_KM_Gobbler_SkinnyF_A_03": 254419204, - "Guest_KM_Gobbler_Fat_A_01": 1440595742, - "Guest_KM_Gobbler_Fruit_B_01": 1236446660, - "Guest_KM_Gobbler_Fruit_A_01": 1235922372, - "Guest_KM_Gobbler_Guard_B_01": 1435667582, - "Guest_KM_Gobbler_Skinny_A_10": 773647937, - "Transformation_PlayerBabyCarrot": 1580787628, - "Transformation_PlayerDeadBeet": 1992261692, - "Transformation_PlayerDisparagus": 373797484, - "Transformation_PlayerSnowPeas": 634199102, - "PP_Snowflake": 2036143125, - "PP_GummyBear_Myth": 117787890, - "PP_GummyBear_Death": 236577760, - "PP_GummyBear_Balance": 2100524337, - "PP_GummyBear_Life": 118020336, - "PP_GummyBear_Fire": 117995748, - "PP_GummyBear_Storm": 247437198, - "PP_GummyBear_Ice": 122536570, - "MNT_SnowOwl": 1578473542, - "Guest_KM_Gummy_Bear_Uber_A_01": 1856208859, - "Guest_KM_Gummy_Bear_Uber_A_02": 1856196571, - "MNT_ChocolateMoose": 567538552, - "MNT_Ram_Candied": 1913603720, - "Guest_KM_Spider_Mage_A_01": 1529720120, - "Guest_KM_Spider_Mage_B_01": 1529719608, - "Guest_KM_Spider_Mage_C_01": 1529719096, - "Guest_KM_Spider_Mage_D_01": 1529718584, - "Guest_KM_Spider_Mage_E_01": 1529718072, - "PP_SpriteDark_Balance": 914900728, - "MNT_Tricycle": 991465753, - "Guest_Tri-Gauntlet-Protector-Gold": 2029952053, - "Guest_Tri-Gauntlet-FishbotGold": 130267882, - "Guest_HG-Clock-Clockworker-20": 281216243, - "Guest_HG-Clock-Clockworker-40": 281217011, - "Guest_HG-Clock-Clockworker-60": 281216755, - "Guest_HG-Clock-Clockworker-80": 281215475, - "Guest_HG-Clock-Clockworker-100": 283313523, - "Guest_HG-Clock-Clockworker-120": 283321715, - "Guest_HG-Clock-Lugs-20": 1452756928, - "Guest_HG-Clock-Lugs-40": 1452756960, - "Guest_HG-Clock-Lugs-60": 1452756992, - "Guest_HG-Clock-Lugs-80": 1452756768, - "Guest_HG-Clock-Lugs-100": 1452494736, - "Guest_HG-Clock-Lugs-120": 1452493712, - "Guest_HG-Clock-Lucia-20": 1041451626, - "Guest_HG-Clock-Lucia-40": 1041450602, - "Guest_HG-Clock-Lucia-60": 1041449578, - "Guest_HG-Clock-Lucia-80": 1041456746, - "Guest_HG-Clock-Lucia-100": 1049840746, - "Guest_HG-Clock-Lucia-120": 1049873514, - "Guest_KM_Gummy_Worm_A_03": 232092771, - "MNT_Scooter_E": 200254340, - "PP_WolfWarrior_Balance": 991302673, - "PP_PetGift": 1816280689, - "PP_RatThief": 1390866051, - "Guest_PL_Titan_Small_A": 2015819364, - "Guest_PL_Titan_Large_B": 699791264, - "Guest_PL_Titan_Medium_A": 326730424, - "PP_Draconian": 1631557208, - "MNT_Pantera_Astral": 106092538, - "PP_YearOx": 105653084, - "PP_WolfWarrior_Ice": 1043644935, - "PP_SpriteDark": 2031730054, - "PP_Brudel": 1355697143, - "MNT_Astronomers": 742732792, - "MNT_CouchPotato": 418050932, - "MNT_Flowerfarthing": 1396771051, - "MNT_Astronomers_Blue": 236532779, - "MNT_Astronomers_Rainbow": 4428274, - "PP_Astronomer": 782095961, - "Guest_KM_Gummy_Bunny_B_01": 324806578, - "Guest_KM_DeadBeets_A_01": 1396016635, - "MNT_GummyBunny": 775900704, - "MNT_GummyBunny_A": 775834080, - "MNT_GummyBunny_B": 775836128, - "MNT_GummyBunny_C": 775838176, - "Transformation_BG_Minotaur_Life": 1445109091, - "MNT_Armadillo": 825635826, - "PP_SootGremlin": 768969093, - "PP_RoadRunner": 2057802060, - "MNT_TinyTrolly": 160881792, - "PP_Frog_B": 1530124761, - "MNT_FjordDragon": 129204340, - "Transformation_BG_NinjaPig_Myth": 422914079, - "PP_CorgiPup": 1638656105, - "MNT_Skateboard": 728018224, - "PP_Krokomummy": 326396577, - "MNT_Vroom": 1736383110, - "MNT_PlayerWings_AtralRaven": 1514774167, - "PP_Blimp": 690882397, - "Guest_GH_WoodenSkeletonKey_Boar_Boss_Grey_01": 678055851, - "Guest_GH_StoneSkeletonKey_Boar_Boss_Grey_01": 571670691, - "Guest_GH_GoldSkeletonKey_Boar_Boss_Grey_01": 961728819, - "MNT_Cloud_Promo_AW_01": 2032670992, - "Guest_EM_Hornet_Burner_A_01": 1881854632, - "Guest_EM_Hornet_Burner_A_02": 1881854636, - "Guest_EM_Hornet_Zapper_A_01": 2058539689, - "Guest_EM_Hornet_Zapper_A_02": 2058539685, - "Guest_EM_Ant_Giant_D_01": 379386121, - "Guest_EM_Ant_Giant_A_02": 1768146677, - "Guest_EM_Ant_Giant_A_01": 1768097525, - "Guest_EM_Ant_Giant_B_01": 379386122, - "Guest_KR_Moth_Priest_G_Achera": 381233569, - "Guest_KR_BeeMonsterF_A": 135146211, - "Guest_KR_BeeMonsterF_A_Weak": 1824123847, - "Guest_KR_Bee_Warrior_A": 1569202664, - "Guest_KR_Bee_Warrior_B": 1569204200, - "Guest_KR_Bee_Warrior_C_BossDrones": 1217189631, - "Guest_KR_Bee_Warrior_D": 1569205224, - "Guest_KR_Bee_Warrior_E": 1569204712, - "Guest_KR_Bee_Warrior_G": 1569205736, - "Guest_KR_Bee_Warrior_G_BossFight": 1055035476, - "Guest_KR_Bee_Warrior_H": 1569207272, - "Guest_KR_Bee_Warrior_I": 1569206760, - "Guest_KR_Bee_Warrior_L": 1569209320, - "Guest_KR_Bee_Warrior_M": 1569208808, - "Guest_KR_DragonBeetle_Monster_A": 1777853782, - "Guest_KR_Hornet_Drone_A": 1161590757, - "Guest_KR_Hornet_Drone_B": 1161607141, - "Guest_KR_Hornet_Drone_C": 1161623525, - "Guest_KR_Hornet_Drone_D": 1161639909, - "Guest_KR_Hornet_Drone_E": 1161656293, - "Guest_KR_Lice_DeepSpawn_A": 761604959, - "Guest_KR_Mantis_HunterF_A": 820917199, - "Guest_KR_Mantis_HunterF_B": 871248847, - "Guest_KR_Mantis_HunterF_C": 854471631, - "Guest_KR_Mantis_HunterF_D": 904803279, - "Guest_KR_Mantis_HunterF_F": 938357711, - "Guest_KR_Mantis_HunterF_F_Driftwood": 2053608437, - "Guest_KR_Mantis_HunterF_G": 921580495, - "Guest_KR_Mantis_HunterF_H": 971912143, - "Guest_KR_Mantis_HunterF_I": 955134927, - "Guest_KR_Mantis_HunterF_I_Zuzka": 935478878, - "Guest_KR_Mantis_HunterF_J": 1005466575, - "Guest_KR_Mantis_HunterF_J_Zelda": 886910558, - "Guest_KR_Mantis_HunterF_K": 988689359, - "Guest_KR_Mantis_HunterF_K_LongShd": 1767574336, - "Guest_KR_Mantis_HunterF_L": 1039021007, - "Guest_KR_Mantis_HunterF_M": 1022243791, - "Guest_KR_Mantis_HunterF_P_Bossfight": 1731428987, - "Guest_KR_Mantis_HunterF_Q": 552481743, - "Guest_KR_Mantis_HunterF_R": 602813391, - "Guest_KR_Mantis_HunterF_S": 586036175, - "Guest_KR_Mantis_HunterF_SecondColumnCpt_A": 1354033994, - "Guest_KR_Mantis_HunterF_T": 636367823, - "Guest_KR_Mantis_HunterF_Tribute": 1946371041, - "Guest_KR_Mantis_HunterF_U": 619590607, - "Guest_KR_Mantis_HunterF_V": 669922255, - "Guest_KR_Mantis_HunterF_W": 653145039, - "Guest_KR_Mantis_HunterF_Y": 686699471, - "Guest_KR_Mantis_HunterF_Z_Officer": 206016474, - "Guest_KR_Mantis_ProphetF_B": 1791139097, - "Guest_KR_Mantis_ProphetF_C": 1254268185, - "Guest_KR_Milipede_Warrior_A": 410726278, - "Guest_KR_Milipede_Warrior_B": 410726282, - "Guest_KR_Milipede_Warrior_C": 410726286, - "Guest_KR_Milipede_Warrior_D": 410726290, - "Guest_KR_Milipede_Warrior_H": 410726306, - "Guest_KR_Milipede_Warrior_J": 410726314, - "Guest_KR_Milipede_Warrior_K": 410726318, - "Guest_KR_Moth_Priest_A": 1421532604, - "Guest_KR_Moth_Priest_B": 1421532092, - "Guest_KR_Moth_Priest_C": 1421531580, - "Guest_KR_Moth_Priest_D": 1421531068, - "Guest_KR_Moth_Priest_D_Drepa": 1483393420, - "Guest_KR_Moth_Priest_E": 1421530556, - "Guest_KR_Moth_Priest_F": 1421530044, - "Guest_KR_Mantis_HunterF_Z": 737031119, - "Guest_KR_Roach_AntLion_A": 1860517987, - "Guest_KR_Roach_AntLion_B_Bossfight": 993284625, - "Guest_KR_Roach_AntLion_C": 1861566563, - "Guest_KR_Roach_Cook_A": 259847495, - "Guest_KR_Roach_Glutton_B": 249524334, - "Guest_KR_Roach_WaterBug_A": 1795473599, - "Guest_KR_Roach_WaterBug_B": 1745141951, - "Guest_MR_Beetle_Scarab_A_01": 1789741503, - "Guest_MR_Beetle_Scarab_A_02": 1789741491, - "Guest_MR_Beetle_Scarab_B_01": 1790265791, - "Guest_ZF-Goliath-R10-Boss-01": 7034074, - "Guest_ZF-Goliath-R10-Boss-02": 7034202, - "Guest_ZF-Goliath-R10-Boss-03": 7034330, - "Guest_ZF-Goliath-R10-Boss": 1603576807, - "Guest_ZF-Goliath-R11-Boss-01": 2140449574, - "Guest_ZF-Goliath-R11-Boss-02": 2140449446, - "Guest_ZF-Goliath-R11-Boss-03": 2140449318, - "Guest_ME1_Ant_Aunt_A": 707251855, - "Guest_ME1_Ant_Aunt_B": 1440231794, - "Guest_CC_Fly_Worker_A_01": 1497784524, - "Guest_CC_Roach_Worker_A_01": 1026321602, - "Guest_CC_Roach_Lieutenant_A_01": 1081690299, - "Guest_CC_Roach_Lieutenant_B_01": 1081690295, - "Guest_CC_Roach_Don_A_01": 547836893, - "Guest_CC_Roach_BBug_A_01": 1021150157, - "Guest_CC_Roach_RoachSteady_A_01": 859409247, - "Guest_Draconian-Caster-Yellow-Boss-R8": 1016221419, - "Guest_Draconian-Zombie-R8-2-1": 1226055265, - "Guest_Draconian-Zombie-R8-2": 1226115297, - "Guest_Draconian-Caster-Green-R7": 2143342719, - "Guest_Draconian-Warrior-Gold-Boss-R8": 1044388248, - "Guest_Draconian-Caster-Gray-R7": 95878769, - "Guest_DS-Boss-MAW": 1676071241, - "Guest_Draconian-Zombie-R8-1": 1226115309, - "Guest_Draconian-Warrior-Purple-Boss-R7": 601813964, - "Guest_Draconian-Caster-Tan-Boss-R7": 1973339532, - "Guest_Draconian-Caster-Blue-R6": 1684210173, - "Guest_Draconian-Caster-Yellow-R8": 2129956646, - "Guest_Draconian-Warrior-Red-R7": 521861944, - "Guest_Draconian-Warrior-Tan-R6": 1726416112, - "Guest_Draconian-Warrior-Purple-R8": 1896270341, - "Guest_Draconian-Caster-Blue-Boss-R7": 401581134, - "Guest_Draconian-Zombie-R8": 384497496, - "Guest_GH2-Draconian-HENCH-R10": 1149202878, - "Guest_GH2-Draconian-BOSS-R10": 2114378473, - "Guest_G14-DM-Draconian_Boss": 490246211, - "Guest_G14-DM-Draconian_Storm": 2035239226, - "Guest_G14-DM-Draconian_Ice": 782200563, - "Guest_G14-DM-Draconian_Malistaire_M": 1904691727, - "Guest_G14-DM-Draconian_Malistaire_S": 1904685583, - "Guest_G14-DM-Draconian_Malistaire_D": 1904700943, - "Guest_G14-DM-Draconian_Malistaire": 1904736751, - "Guest_G14-DM-Draconian_Malistaire_B": 1904702991, - "Guest_G14-DM-Draconian_Malistaire_I": 1904695823, - "Guest_G14-DM-Draconian_Malistaire_L": 1904692751, - "Guest_G14-DM-Draconian_Malistaire_F": 1904698895, - "Guest_Draconian-PW-Gauntlet-Boss": 493080513, - "Guest_CC_Draconian_A_01": 551348115, - "Guest_AZ-Parasaur-Undead-E": 2041242846, - "Guest_AZ-Parasaur-drkPriestF-F": 898239615, - "Guest_EM_Parasaur_DrkPriestF_A_01": 1007099606, - "Guest_EM_Parasaur_DrkPriestF_A_02": 1007099605, - "Guest_AZ-Parasaur-drkPriestF-D": 898501759, - "Guest_AZ-Parasaur-drkPriestF-E": 898370687, - "Guest_AZ-Parasaur-drkPriestF-A": 897846399, - "Guest_AZ-Parasaur-Undead-B": 1716853538, - "Guest_AZ-Parasaur-Undead-A": 106240802, - "Guest_AZ-Parasaur-Undead-G": 967501022, - "Guest_AZ-Parasaur-PriestF-D": 1177445525, - "Guest_AZ-Parasaur-Undead-C": 1179982626, - "Guest_AZ-Parasaur-drkPriestF-C": 897584255, - "Guest_AZ-Parasaur-Undead-SkurkisMinion": 1414766977, - "Guest_AZ-Parasaur-drkPriestF-B": 897715327, - "Guest_AZ-Parasaur-drkPriestF-B-Script": 1414847875, - "Guest_AZ_Parasaur_Priest_A_Boss_01": 890025421, - "Guest_AZ-Parasaur-Undead-D": 1504371934, - "Guest_AZ-Pteranodon-Knight-D": 1127364049, - "Guest_AZ-StoneSkeletonKey-Ixcax-Cursedwing": 699239601, - "Guest_AZ-Pteranodon-Knight-E": 1127363921, - "Guest_AZ-Pteranodon-Knight-F": 1127363793, - "Guest_AZ-Pteranodon-Knight-A-PageEvent": 942589002, - "Guest_AZ-StoneSkeletonKey-Minion-Death": 311645584, - "Guest_AZ-Pteranodon-Knight-A": 1127364433, - "Guest_AZ-Raptor-Wraith-A": 585729247, - "Guest_AZ-Raptor-Undead-D": 893623689, - "Guest_G14-HS-Ifzt": 1914694612, - "Guest_AZ-Raptor-Warrior-A": 855749884, - "Guest_AZ-Raptor-Undead-C": 897293705, - "Guest_AZ-Raptor-Undead-B": 896769417, - "Guest_AZ-Raptor-Undead-F": 894672265, - "Guest_AZ-Raptor-Warrior-F": 872527100, - "Guest_AZ-Raptor-Warrior-H": 973190396, - "Guest_AZ-Tritops-Warrior-I": 1942669769, - "Guest_AZ-Tritops-Undead-H": 1215305911, - "Guest_AZ-Tritops-Undead-E": 1164974263, - "Guest_AZ-Tritops-SpkWarrior-A": 860850257, - "Guest_AZ-Tritops-SpkWarrior-B": 860862545, - "Guest_AZ-Tritops-Undead-F": 1181751479, - "Guest_AZ-Tritops-Warrior-K": 868927945, - "Guest_AZ-Tritops-Undead-G": 1198528695, - "Guest_AZ-Tritops-Mummy-A": 1912444877, - "Guest_AZ-Tritops-Warrior-G": 1278555704, - "Guest_AZ-Tritops-Undead-D": 1148197047, - "Guest_AZ-Tritops-Undead-A": 1097865399, - "Guest_AZ-Tritops-SpkChief-B": 2096319577, - "Guest_AZ-Tritops-Mummy-B": 1910872013, - "Guest_AZ-Tritops-Warrior-H": 1405798857, - "Guest_AZ-Dino-Undead-A": 508678670, - "Guest_AZ-Dino-Undead-B": 508679182, - "Guest_AZ-Dino-Undead-D": 508680206, - "Guest_KR_Dino_Undead_A": 1638800628, - "Guest_KR_Dino_Undead_Minion_A": 892450235, - "MNT_HayRideTruck": 75377404, - "MNT_ShadowSpiderForm": 1439860426, - "Transformation_BG_Draconian_Death": 794598804, - "PP_BabyOrca": 1056061090, - "Transformation_BG_Cyclops_Fire": 638854828, - "Transformation_BG_Fairy_Ice": 874078461, - "PP_SpriteLife": 1824998010, - "PP_Raccoon": 1107326808, - "PP_FireKitten": 593048189, - "MNT_SkeletalDuck": 1306273036, - "PP_VampireSquid": 431023109, - "PP_CottonCandy": 891201813, - "PP_ThreeHeadGoat": 1282096939, - "PP_EyeBot": 260189248, - "MNT_DeathBoat": 1444454568, - "MNT_Lemuria": 908974762, - "MNT_DeathBoat_B": 1444456538, - "MNT_DeathBoat_C": 1444456474, - "MNT_Spooky3": 1667775622, - "MNT_PresentBox": 122082000, - "MNT_Orca": 1726961653, - "Guest_LM_Golem_Steel_A_01": 19551853, - "Guest_LM_Golem_Steel_A_02": 36329069, - "Guest_LM_EyeBot_A_01_Death": 380508535, - "Guest_LM_EyeBot_A_01_Myth": 167840640, - "PP_ThreeHeadGoat_B": 1209286443, - "PP_ThreeHeadGoat_C": 1211383595, - "Guest_KR_Eel_Whirligig_A": 1062268734, - "Guest_KR_Goliath_Behemoth_A": 1231139987, - "Guest_KR_Goliath_Behemoth_C": 1231139995, - "Guest_KR_Goliath_Behemoth_D": 1231139975, - "Guest_KR_Goliath_Behemoth_E": 1231139971, - "Guest_KR_Goliath_Behemoth_H": 1231140023, - "Guest_KR_Goliath_Crusher_C": 1651720060, - "Guest_KR_Goliath_Crusher_D": 2106376324, - "Guest_KR_Goliath_Crusher_F": 1032634500, - "Guest_KR_Goliath_Crusher_G": 495763588, - "Guest_KR_Goliath_Crusher_K": 1651720059, - "Guest_AZ-Goliath-Crusher-A": 1874784966, - "Guest_AZ-Goliath-Crusher-B": 264172230, - "Guest_AZ-Goliath-Crusher-C": 801043142, - "Guest_AZ-Goliath-Crusher-D": 809569594, - "Guest_AZ-Goliath-Crusher-E": 272698682, - "Guest_HG_AKT_Butterfly_Time_A_25": 1788523059, - "Guest_HG_AKT_Butterfly_Time_A_50": 1130017331, - "Guest_HG_AKT_Butterfly_Time_A_75": 1809494579, - "Guest_HG_AKT_Butterfly_Time_A_100": 1113240099, - "Guest_HG_AKT_Butterfly_Time_A_130": 1515893283, - "MNT_DeathBoat_D": 1444456922, - "Guest_KR_RhinoBeetle_Sun_A_Bossfight": 47895417, - "Guest_KR_RhinoBeetle_Star_A": 1947510103, - "Guest_KR_RhinoBeetle_Moon_A": 1751275863, - "Guest_ME1_Clockwork_Marine_A": 1481452452, - "Guest_ME1_Clockwork_Marine_B": 1481452068, - "Guest_CC_GoldSkeletonKey_Lice_DeepSpawn_B": 1306132994, - "Guest_KR_DamdinBazar_A_Bossfight": 1333596311, - "Guest_DS-Minion-MAW2": 356796677, - "Guest_KH-Wyrmling-1": 116330513, - "Guest_KH-Wyrmling-20": 183439385, - "Guest_KH-Wyrmling-40": 317657113, - "Guest_KH-Wyrmling-60": 451874841, - "Guest_KH-Wyrmling-80": 586092569, - "Guest_PL_Polar_Bear_Solider_C": 1785662565, - "Guest_Skeleton-Silver-WCBoss-L01": 17766963, - "Guest_Banshee-Red-Elite-L24_B": 1902069117, - "Transformation_BG_WolfWarrior_Myth": 339098032, - "Transformation_BG_RatThief_Balance": 881728218, - "Transformation_BG_Colossus_Storm": 593527492, - "Transformation_BG_Elf_Life": 347405087, - "Transformation_BG_Minotaur_Ice": 1197752291, - "MNT_TRex_B": 660285500, - "PP_SpriteDark_Ice": 2036248504, - "MNT_RollingBall": 1658139390, - "Guest_LM_TRex_Base_A_03": 1378630657, - "Guest_LM_TRex_Base_A_04": 1378745345, - "Guest_LM_TRex_Base_A_05": 1378728961, - "Guest_LM_TRex_Base_A_01": 1378663425, - "Guest_LM_TRex_Base_A_02": 1378647041, - "Guest_LM_TRex_Cyborg_A_01": 151609741, - "Guest_LM_TRex_Cyborg_A_02": 168386957, - "Guest_LM_TRex_Cyborg_A_03": 185164173, - "Guest_LM_TRex_Cyborg_B_01": 151611277, - "Guest_LM_TRex_Cyborg_D_01": 151612301, - "Guest_LM_TRex_Cyborg_E_01": 151611789, - "Guest_LM_TRex_Cyborg_C_01": 151610765, - "Guest_LM_Draconian_Base_A_01": 1607373112, - "Guest_LM_EyeBot_B_01": 1085543056, - "Guest_LM_Drone_Eye_C_01": 916954037, - "Guest_LM_Drone_Eye_D_01": 1230529608, - "Guest_LM_Drone_Eye_D_02": 1230545992, - "Guest_LM_Drone_Eye_D_04": 1230578760, - "Guest_LM_Drone_Eye_D_03": 1230562376, - "Guest_LM_Drone_Eye_A_01": 916954038, - "Guest_LM_Drone_Eye_A_02": 916937654, - "Guest_LM_Drone_Eye_B_01": 1230529611, - "Guest_LM_Drone_Eye_D_05": 1230595144, - "Guest_LM_Drone_Eye_D_07": 1230627912, - "Guest_LM_Drone_Eye_D_08": 1230644296, - "Guest_LM_Drone_Eye_A_03": 916921270, - "Guest_LM_Drone_Eye_A_04": 916904886, - "Guest_LM_Drone_Eye_C_02": 916937653, - "Guest_LM_EyeBot_B_02": 1061940593, - "Guest_LM_EyeBot_B_03": 1085543055, - "Guest_LM_EyeBot_B_04": 1061940594, - "Guest_LM_Drone_Eye_C_03": 916921269, - "Guest_LM_Robot_Kit10_A_01": 199936400, - "Guest_LM_Colossus_Mander_A_01": 2107529026, - "Guest_LM_Robot_Future_A_01": 998840846, - "Guest_LM_Robot_FutureBIG_A_01": 340408568, - "Guest_LM_Robot_FutureBIG_A_02": 340396280, - "Guest_LM_Robot_FutureBIG_A_03": 340400376, - "Guest_LM_Robot_OldOne_A_01": 779070973, - "Guest_LM_Robot_OldOne_A_02": 1315941885, - "Guest_LM_Millipede_Centi_A_01": 168575797, - "Guest_LM_Millipede_Centi_A_03": 168583989, - "Guest_LM_Millipede_Centi_A_02": 168588085, - "Guest_LM_Millipede_Centi_A_04": 168563509, - "Guest_LM_Moth_Sorcerer_A_01": 228191136, - "Guest_LM_Boar_Barbarian_A_01": 1238634912, - "Guest_LM_Boar_Barbarian_A_02": 1238634528, - "Guest_LM_Boar_Barbarian_A_03": 1238634656, - "Guest_LM_Boar_Barbarian_A_04": 1238635296, - "Guest_LM_Boar_Barbarian_A_05": 1238635424, - "Guest_LM_Boar_Chief_A_01": 357051311, - "Guest_LM_Fungus_Humango_A_01": 1398460044, - "Guest_LM_Fungus_Humango_A_02": 1398460172, - "Guest_LM_Treant_Base_A_01": 1658172241, - "Guest_LM_GiantTree_EvilRoots_A_01": 282225934, - "Guest_LM_PA_GreenMan_A_01": 67705044, - "Guest_LM_Fungus_Humango_B_01": 1348128396, - "Guest_LM_Fungus_Humango_A_03": 1398460300, - "Guest_LM_Fungus_Man_C_01": 1648824156, - "Guest_LM_Fungus_Man_C_02": 1650397020, - "Guest_LM_Rhino_Zombie_A_01": 248513993, - "Guest_LM_Malughast_Base_01": 883820436, - "Guest_LM_Malughast_Base_02": 1420691348, - "Guest_LM_Lemur_HierarchF_H_04": 231562115, - "Guest_LM_Malughast_Base_03": 1957562260, - "Guest_LM_Malughast_Base_05": 1263663212, - "Guest_LM_Malughast_Base_06": 726792300, - "Guest_LM_Malughast_Base_08": 346949523, - "Guest_LM_Malughast_Base_09": 883820435, - "Guest_LM_Malughast_Base_04": 1800534124, - "Guest_LM_Minotaur_Skeleton_A_01": 1865122824, - "Guest_LM_Lemur_Wild_B_03": 1783764037, - "Guest_LM_Lemur_HierarchF_H_01": 231541635, - "Guest_LM_Lemur_HierarchF_H_02": 231553923, - "Guest_LM_Mander_Warrior_A_01": 1651245419, - "Guest_LM_Mander_Warrior_A_02": 1651245291, - "Guest_LM_Mander_Warrior_B_01": 1634468203, - "Guest_LM_Mander_Warrior_B_02": 1634468075, - "Guest_LM_Mander_Warrior_A_03": 1651245163, - "Guest_LM_Mander_Warrior_B_03": 1634467947, - "Guest_LM_Mander_Warrior_A_06": 1651245803, - "Guest_LM_Mander_Warrior_A_05": 1651245931, - "Guest_LM_Mander_Mummy_B_01": 1844111521, - "Guest_LM_Mander_Hero_B_01": 865113284, - "MNT_HolidayHippogriff": 938892112, - "MNT_Sabertooth_Ice": 1870381696, - "PP_FenrisWolf_Bantam": 776647759, - "MNT_JetPack": 1986300552, - "MNT_Scooter_F": 1005560708, - "PP_FossaKitten_A": 431748212, - "PP_Elfvis": 147991405, - "Guest_LM_Chicken_Hero_A_01": 1308728300, - "Guest_LM_Horse_Explorer_A_01": 434405482, - "Guest_LM_Duck_HeroineF_A_01": 133199186, - "Guest_LM_Crane_Hero_A_01": 204272548, - "Guest_LM_Deer_HeroineF_A_01": 1800374959, - "Guest_LM_Deer_Hero_A_01": 223109503, - "Guest_LM_Dog_Hero_A_01": 1434615064, - "PP_YearTiger": 777048708, - "MNT_Barrel": 3576425, - "MNT_Krampus": 404117611, - "PP_ChineseTigerCub": 1256032005, - "PP_Lemur": 565774155, - "PP_Robot": 1089075331, - "PP_Capybara": 451970762, - "Guest_LM_Ghoul_Base_A_01": 1822415945, - "Guest_LM_Lemur_HierarchF_H_03": 231549827, - "Guest_LM_Ghoul_Base_A_02": 1820843081, - "Guest_LM_Ghoul_Base_A_03": 1821367369, - "MNT_SpringSoF2022": 1685679511, - "MNT_WarElephant": 875015497, - "PP_Strix": 514230046, - "MNT_Beachball": 791896033, - "MNT_Blank": 633398131, - "MNT_CardboardFlier": 1646636689, - "MNT_LochMonster": 879660722, - "Transformation_BG_Krok_Death": 1395067182, - "Transformation_BG_Draconian_Fire": 1551581732, - "PP_Scotty": 1708580475, - "Guest_KR_Mice_Knight_A": 480101508, - "PP_Peacock": 1178721112, - "MNT_PoodleMoth": 975420235, - "PP_Hummingbird": 624666906, - "PP_WolfWarrior_Myth": 470737416, - "Guest_HG_UFD_Ghost_QueenF_A_100": 795323059, - "Guest_HG_UFD_Ghost_QueenF_A_50": 728230579, - "Guest_HG_UFD_Pirate_UndeadHighland_A_Balance_150": 201145133, - "Guest_HG_UFD_Pirate_UndeadHighland_A_Balance_100": 201144941, - "Guest_HG_UFD_Pirate_UndeadHighland_A_Balance_50": 201177701, - "Guest_HG_UFD_Pirate_UndeadHighland_A_Star_150": 1329885920, - "Guest_HG_UFD_Pirate_UndeadHighland_A_Star_100": 1304720096, - "Guest_HG_UFD_Pirate_UndeadHighland_A_Star_50": 1305768671, - "Guest_HG_UFD_Pirate_UndeadHighland_A_Shadow_150": 1263689971, - "Guest_HG_UFD_Pirate_UndeadHighland_A_Shadow_100": 1263689977, - "Guest_HG_UFD_Pirate_UndeadHighland_A_Shadow_50": 189949177, - "Guest_HG_UFD_Kelpie_Warrior_A_150": 54296095, - "Guest_HG_UFD_Kelpie_Warrior_A_100": 725384735, - "Guest_HG_UFD_Kelpie_Warrior_A_50": 708607503, - "Guest_HG_UFD_Pirate_UndeadHighland_B_150": 1099317831, - "Guest_HG_UFD_Pirate_UndeadHighland_B_100": 25576008, - "Guest_HG_UFD_Pirate_UndeadHighland_B_50": 159793864, - "Guest_HG_UFD_Ghost_QueenF_A_150": 795716275, - "PP_SpiderMinion": 557357331, - "MNT_Vines_Rainbow": 1587180338, - "MNT_YoungDrake": 1279496198, - "PP_Pet_Coconut": 444388490, - "DragonKI": 1490194214, - "PP_Sharkfish": 601628284, - "PP_MimicCake": 48071878, - "Guest_AQ-Bronze-Eagle": 375279744, - "Guest_Spider-Brown-L26": 2128680185, - "Guest_KR_Spider_Giant_D": 744401035, - "Guest_Wizard-Female-Band-Blue-R8": 1447486557, - "Guest_CC_Human_DSCrusaderF_A_01": 726538068, - "Guest_WC_Scarecrow_A_01": 867491011, - "Guest_WC_Banshee_A_01": 1433786463, - "Guest_WC_LostSoul_A_01": 796936146, - "PP_Fairy_Myth": 1117624344, - "PP_SpriteDark_Myth": 1884257976, - "BG_CyclopsLife_A": 944091673, - "Transformation_BG_NinjaPig_Storm": 2005137181, - "Transformation_BG_Fairy_Myth": 1880704188, - "Transformation_BG_Cyclops_Life": 638936708, - "Guest_AQ-Eagle-Praetorian": 1988013806, - "Guest_KM_BabyCarrot_A_01": 766239512, - "Guest_G14-DM-Gargoyle": 282898047, - "Guest_MR_Durvish_Sergeant_A_Boss_01": 1532609325, - "Guest_Cyclops-RedHelmet-KTBoss-L28": 2072371506, - "Guest_EM_Pig_Singer_A_01": 698597069, - "Guest_EM_Pig_Captain_A": 977505995, - "Guest_EM_Pig_Crewman_A": 465576459, - "PP_ChipmunkConductor": 1089819900, - "PP_LuckyCat": 1109326826, - "MNT_ImpCar": 1736092191, - "MNT_Book": 1547655078, - "MNT_JackoLantern": 649919658, - "MNT_Zheng": 742453108, - "MNT_Train": 413197899, - "MNT_Cerberus": 552686313, - "PP_Coconut": 1122741587, - "Transformation_Statue": 1153168084, - "Transformation_Nullity": 622504394, - "PP_Irk": 1825277392, - "Guest_Wyrmling-Fire-R8-1": 531485009, - "MNT_WolfLowPoly_A": 1947890962, - "MNT_WolfLowPoly_B": 1947825426, - "Transformation_BG_RatThief_Fire": 1169330235, - "Transformation_BG_WolfWarrior_Death": 159966683, - "Transformation_BG_Minotaur_Balance": 657855108, - "Transformation_BG_Draconian_Ice": 1907339814, - "Transformation_BG_Colossus_Myth": 1305894338, - "Transformation_NV_Penguin": 1757096851, - "Transformation_NV_Unicorn": 60447768, - "Transformation_NV_Monkey": 1379873688, - "Transformation_NV_Dog": 1961288968, - "PP_Wolf_Storm": 455227171, - "PP_WoodDuck": 1680912895, - "MNT_RockingHorse": 1205280059, - "MNT_SOF2022_Car": 219868812, - "PP_Buffaloon": 796152873, - "MNT_Steamboat": 1969530127, - "MNT_FelizNavidog": 847046394, - "PP_Mustache": 1571079379, - "Guest_DD-DS01-Skeleton-Pirate-20": 226826848, - "Guest_DD-DS01-Skeleton-Pirate-40": 201661024, - "Guest_DD-DS01-Skeleton-Pirate-60": 210049632, - "Guest_DD-DS01-Skeleton-Pirate-80": 251992672, - "Guest_DD-DS01-Skeleton-Pirate": 1994450336, - "Guest_DD-DS01-Shadow-Minion-Fire": 1074864956, - "Guest_DD-DS01-Shadow-Minion-Ice": 1841681214, - "Guest_DD-DS01-Shadow-Minion-Fire-20": 1074880881, - "Guest_DD-DS01-Shadow-Minion-Fire-40": 1074880945, - "Guest_DD-DS01-Shadow-Minion-Ice-20": 96850220, - "Guest_DD-DS01-Shadow-Minion-Ice-40": 96850218, - "Guest_DD-DS01-Shadow-Minion-Fire-60": 1074881009, - "Guest_DD-DS01-Shadow-Minion-Ice-60": 96850216, - "Guest_DD-DS01-Shadow-Minion-Fire-80": 1074880561, - "Guest_DD-DS01-Shadow-Minion-Ice-80": 96850214, - "Guest_SC-SpectreOfB-1": 1471950935, - "Guest_SC-SpectreOfB-20": 1471942759, - "Guest_SC-SpectreOfB-40": 1471942663, - "Guest_SC-SpectreOfB-60": 1471942695, - "Guest_SC-SpectreOfB-80": 1471942855, - "Guest_KH-Skeleton-Ice-60": 2108358962, - "Guest_KH-Skeleton-Ice-40": 2108391730, - "Guest_KH-Skeleton-Ice-20": 2108293426, - "Guest_KH-Skeleton-Ice-1": 2099953970, - "Guest_KH-Skeleton-Ice-80": 2108195122, - "Guest_KH-Undead-Caster-60": 1662604496, - "Guest_KH-Undead-Caster-40": 1661555920, - "Guest_KH-Undead-Caster-20": 1664701648, - "Guest_KH-Undead-Caster-1": 1931564240, - "Guest_KH-Undead-Caster-80": 1667847376, - "Guest_DD-PA01-DeadBeets": 1664999367, - "Guest_DD-PA01-DeadBeets-20": 1901453253, - "Guest_DD-PA01-DeadBeets-40": 2002116549, - "Guest_DD-PA01-DeadBeets-60": 1968562117, - "Guest_DD-PA01-DeadBeets-80": 2069225413, - "Guest_DD-PA01-Disparagus": 1865816461, - "Guest_DD-PA01-Disparagus-20": 573970895, - "Guest_DD-PA01-Disparagus-40": 499770929, - "Guest_DD-PA01-Disparagus-60": 1573512753, - "Guest_DD-PA01-Disparagus-80": 1647712718, - "Guest_DD-PA01-MeanestFlyTrap": 2001546861, - "Guest_DD-PA01-MeanestFlyTrap-20": 1936326253, - "Guest_DD-PA01-MeanestFlyTrap-40": 1936064109, - "Guest_DD-PA01-MeanestFlyTrap-60": 1935801965, - "Guest_DD-PA01-MeanestFlyTrap-80": 1937636973, - "Guest_HG-MD-MacDeath-20": 182639104, - "Guest_HG-MD-MacDeath-40": 182638080, - "Guest_HG-MD-MacDeath-60": 182637056, - "Guest_HG-MD-MacDeath-80": 182636032, - "Guest_HG-MD-MacDeath-100": 174252032, - "Guest_HG-MD-MacDeath-130": 174202880, - "Guest_HG_Sinbad_Skeleton_25": 494617874, - "Guest_HG_Sinbad_Skeleton_50": 42253050, - "Guest_HG_Sinbad_Skeleton_75": 1115994862, - "Guest_HG_Sinbad_Skeleton_100": 2105232646, - "Guest_HG_Sinbad_Skeleton_130": 2105232650, - "Guest_HG_Sinbad_Skeleton_25_02": 492722834, - "Guest_HG_Sinbad_Skeleton_50_02": 44148090, - "Guest_HG_Sinbad_Skeleton_75_02": 1117889902, - "Guest_HG_Sinbad_Skeleton_100_02": 2044247302, - "Guest_HG_Sinbad_Skeleton_130_02": 2044247306, - "Guest_DD-AV01-WyrmBoss": 1648677986, - "Guest_DD-AV01-WyrmBoss-20": 1926730850, - "Guest_DD-AV01-WyrmBoss-40": 1927779426, - "Guest_DD-AV01-WyrmBoss-60": 1928828002, - "Guest_DD-AV01-WyrmBoss-80": 1921487970, - "Guest_RH-Wyrm-Boss-01": 1027277645, - "Guest_RH-Wyrm-Boss-20": 1027277660, - "Guest_RH-Wyrm-Boss-40": 1027277663, - "Guest_RH-Wyrm-Boss-60": 1027277662, - "Guest_RH-Wyrm-Boss-80": 1027277657, - "Guest_HG_Sinbad_Wyrm_25": 1101443356, - "Guest_HG_Sinbad_Wyrm_50": 1101528860, - "Guest_HG_Sinbad_Wyrm_75": 1101445916, - "Guest_HG_Sinbad_Wyrm_100": 1093138204, - "Guest_HG_Sinbad_Wyrm_130": 1093089052, - "Guest_KH-Treant-1": 2001244331, - "Guest_KH-Treant-60": 1968148651, - "Guest_KH-Treant-40": 1968017579, - "Guest_KH-Treant-20": 1967886507, - "Guest_KH-Treant-80": 1967231147, - "Guest_DD-PA01-ForestGrump": 1969685870, - "Guest_DD-PA01-ForestGrump-20": 714666713, - "Guest_DD-PA01-ForestGrump-40": 714666689, - "Guest_DD-PA01-ForestGrump-60": 714666697, - "Guest_DD-PA01-ForestGrump-80": 714666737, - "Guest_DD-PA01-ForestNymphs": 227087348, - "Guest_DD-PA01-ForestNymphs-20": 227023552, - "Guest_DD-PA01-ForestNymphs-60": 227023040, - "Guest_DD-PA01-ForestNymphs-80": 227024832, - "Guest_SC-Pig-BalanceWizardA-1": 475456968, - "Guest_SC-Pig-BalanceWizardA-20": 477550024, - "Guest_SC-Pig-BalanceWizardA-40": 477541832, - "Guest_SC-Pig-BalanceWizardA-60": 477533640, - "Guest_SC-Pig-BalanceWizardA-80": 477525448, - "Guest_SC-Pig-BalanceWizardB-1": 475456964, - "Guest_SC-Pig-BalanceWizardB-20": 477550020, - "Guest_SC-Pig-BalanceWizardB-40": 477541828, - "Guest_SC-Pig-BalanceWizardB-60": 477533636, - "Guest_SC-Pig-BalanceWizardB-80": 477525444, - "Guest_SC-Pig-BalanceWizardC-1": 475456960, - "Guest_SC-Pig-BalanceWizardC-20": 477550016, - "Guest_SC-Pig-FireWizard-1": 2048176291, - "Guest_SC-Pig-FireWizard-20": 2031399073, - "Guest_SC-Pig-FireWizard-40": 2132062369, - "Guest_SC-Pig-FireWizard-60": 2098507937, - "Guest_SC-Pig-FireWizard-80": 1930735777, - "Guest_SC-Pig-IceWizardF-1": 1178687744, - "Guest_SC-Pig-IceWizardF-20": 1161910526, - "Guest_SC-Pig-IceWizardF-40": 1128356094, - "Guest_SC-Pig-IceWizardF-60": 1094801662, - "Guest_SC-Pig-IceWizardF-80": 1329682686, - "Guest_SC-Pig-MythWizard-1": 2048492725, - "Guest_SC-Pig-MythWizard-20": 2031715511, - "Guest_SC-Pig-MythWizard-40": 2132378807, - "Guest_SC-Pig-MythWizard-60": 2098824375, - "Guest_SC-Pig-MythWizard-80": 1931052215, - "Guest_SC-Pig-StormWizardF-1": 1743849420, - "Guest_SC-Pig-StormWizardF-20": 1743851464, - "Guest_SC-Pig-StormWizardF-40": 1743851488, - "Guest_SC-Pig-StormWizardF-60": 1743851480, - "Guest_SC-Pig-StormWizardF-80": 1743851504, - "Guest_KH-Pig-Bandit-Lord-1": 1080496628, - "Guest_KH-Pig-Bandit-Lord-20": 543625652, - "Guest_KH-Pig-Bandit-Lord-40": 530116172, - "Guest_KH-Pig-Bandit-Lord-60": 1603857996, - "Guest_KH-Pig-Bandit-Lord-80": 1617367475, - "Guest_KH-Pig-Bandit-Ninja-1": 1945100907, - "Guest_KH-Pig-Bandit-Ninja-20": 1945102951, - "Guest_KH-Pig-Bandit-Ninja-40": 1945102975, - "Guest_KH-Pig-Bandit-Ninja-60": 1945102967, - "Guest_KH-Pig-Bandit-Ninja-80": 1945102927, - "Guest_KH-Pig-War-Caster-1": 656859765, - "Guest_KH-Pig-War-Caster-20": 606528119, - "Guest_KH-Pig-War-Caster-40": 572973687, - "Guest_KH-Pig-War-Caster-60": 539419255, - "Guest_KH-Pig-War-Caster-80": 774300279, - "Guest_KH-Pig-War-Warrior-Boss-1": 16342355, - "Guest_KH-Pig-War-Warrior-Boss-20": 2143724205, - "Guest_KH-Pig-War-Warrior-Boss-40": 2118558381, - "Guest_KH-Pig-War-Warrior-Boss-60": 2126946989, - "Guest_KH-Pig-War-Warrior-Boss-80": 2101781165, - "Guest_SC-Pig-BalanceWizardC-40": 477541824, - "Guest_SC-Pig-BalanceWizardC-60": 477533632, - "Guest_SC-Pig-BalanceWizardC-80": 477525440, - "Guest_KH-Helephant-Death-20": 1109389719, - "Guest_KH-Helephant-Death-40": 2111835753, - "Guest_KH-Helephant-Death-60": 1038093929, - "Guest_KH-Helephant-Death-80": 35647896, - "Guest_KH-GreyOgre-Spider-1": 356368404, - "Guest_KH-GreyOgre-Spider-20": 1966981204, - "Guest_KH-GreyOgre-Spider-40": 1254244268, - "Guest_KH-GreyOgre-Spider-60": 180502444, - "Guest_KH-GreyOgre-Spider-80": 893239379, - "Guest_HG_Sinbad_Colossus_25": 1190802829, - "Guest_HG_Sinbad_Colossus_50": 1493551719, - "Guest_HG_Sinbad_Colossus_75": 419809907, - "Guest_HG_Sinbad_Colossus_100": 653933977, - "Guest_HG_Sinbad_Colossus_130": 653933973, - "Guest_NV_Dino_AberrantUndead_A_01": 2035087398, - "Guest_NV_Hellephant_Aberrant_A_01": 989522333, - "Guest_NV_Hellephant_Aberrant_A_02": 989522334, - "Guest_NV_BananaSpider_Base_A_01": 1585810541, - "Guest_NV_BananaSpider_Base_A_02": 1581616237, - "Guest_NV_BananaSpider_Base_A_03": 1577421933, - "Guest_NV_BananaSpider_Base_A_04": 1606782061, - "Guest_NV_BananaSpider_Base_A_05": 1602587757, - "Guest_NV_Wyrm_Aberrant_A_01": 16108415, - "Guest_NV_Monkey_Zombie_A_01": 1854775300, - "Guest_NV_Monkey_Zombie_A_02": 1854775304, - "Guest_NV_Monkey_Zombie_A_03": 1854775308, - "Guest_NV_Monkey_Zombie_A_04": 1854775312, - "MNT_Flag_Monster": 867940056, - "Guest_SKB_WY_DarkBramble_A_30": 2046798767, - "Guest_SKB_WY_DarkBramble_A_50": 2046797999, - "Guest_SKB_WY_DarkBramble_A_100": 2044701359, - "Guest_SKB_WY_DarkBramble_A_150": 2044721839, - "Guest_SKB_GH_Boar_A_30": 1547921275, - "Guest_SKB_WC_SpiritIgnorance_A_50": 1488876986, - "Guest_SKB_WC_SpiritIgnorance_A_100": 2025748410, - "Guest_SKB_WC_SpiritIgnorance_A_150": 2025748413, - "Guest_SKB_DS_Loremaster_A_50": 527751539, - "Guest_SKB_DS_Loremaster_A_100": 527817059, - "Guest_SKB_DS_Loremaster_A_150": 527817699, - "Guest_SKB_CL_Dan_A_50": 637418706, - "Guest_SKB_CL_Dan_A_60": 1510064941, - "Guest_SKB_CL_Dan_A_100": 637410512, - "Guest_SKB_CL_Dan_A_150": 637410432, - "Guest_SKB_AV_Spectre_A_50": 2104631195, - "Guest_SKB_AV_Spectre_A_100": 2102534041, - "Guest_SKB_AV_Spectre_A_150": 2018647961, - "Guest_SKB_MS_Samoorai_A_50": 2029641915, - "Guest_SKB_MS_Samoorai_A_100": 2096750843, - "Guest_SKB_MS_Samoorai_A_150": 587603717, - "Transformation_BG_Krok_StromTemplate": 1317694546, - "PP_ChineseRabbit": 382941643, - "PP_ParadeElf": 1036247808, - "MNT_HeartSwarm": 918199310, - "MNT_SpringSOF2023": 1417178519, - "Transformation_BG_Elf_Death2Template": 1606653101, - "MNT_GummyBunny_D": 775840224, - "Transformation_BG_Krok_Life2Template": 747486212, - "PP_Flame": 959186933, - "PP_YachtRock": 1500927358, - "PP_PirateYachtRock": 1227549100, - "PP_ChickenMonster": 1845706534, - "PP_SnowHoppers_B": 1496460038, - "PP_SnowHoppers_C": 1496457990, - "MNT_Oarfish": 29720265, - "PP_RingTailedCat": 993143427, - "MNT_Fanboat": 19347694, - "MNT_MiniSub": 298697910, - "PP_DumboOctopus": 966435639, - "PP_Glowbug_Balance": 1405529577, - "PP_Glowbug_Death": 405117107, - "PP_Glowbug_Fire": 651698987, - "PP_Glowbug_Ice": 2124926395, - "PP_Glowbug_Life": 601367299, - "PP_Glowbug_Myth": 592978024, - "PP_Glowbug_Storm": 61190446, - "PP_DumboOctopus_B": 968448823, - "PP_DumboOctopus_C": 968383287, - "PP_BananaSpider_01": 1074383522, - "PP_BananaSpider_02": 1080674978, - "PP_BananaSpider_03": 1078577826, - "Guest_HG_NM_BeardDragon_Base_C_01": 82913785, - "Guest_HG_NM_BeardDragon_Base_C_02": 82913786, - "Guest_HG_NM_BeardDragon_Base_C_03": 82913787, - "Guest_HG_NM_Glowbug_Base_C_01": 544959703, - "Guest_HG_NM_Glowbug_Base_C_02": 544955607, - "Guest_HG_NM_Glowbug_Base_C_03": 544951511, - "Guest_HG_NM_Glowbug_Base_C_04": 544947415, - "Guest_HG_NM_Glowbug_Base_C_05": 544943319, - "Guest_HG_NM_Glowbug_Base_C_06": 544939223, - "Guest_HG_NM_Glowbug_Base_C_07": 544935127, - "MNT_BouquetofFlowers": 1511180560, - "PP_Piggle_Rainbow": 91081383, - "MNT_Sabertooth_FlameSaber": 1949516909, - "Guest_HG_NM_BeardDragon_Base_A_01": 83175929, - "Guest_HG_NM_BeardDragon_Base_A_02": 83175930, - "Guest_HG_NM_BeardDragon_Base_A_03": 83175931, - "Guest_HG_NM_BeardDragon_Base_B_01": 83044857, - "Guest_HG_NM_BeardDragon_Base_B_02": 83044858, - "Guest_HG_NM_BeardDragon_Base_B_03": 83044859, - "Guest_HG_NM_Glowbug_Base_B_01": 8088791, - "Guest_HG_NM_Glowbug_Base_B_02": 8084695, - "Guest_HG_NM_Glowbug_Base_B_03": 8080599, - "Guest_HG_NM_Glowbug_Base_B_04": 8076503, - "Guest_HG_NM_Glowbug_Base_B_05": 8072407, - "Guest_HG_NM_Glowbug_Base_B_06": 8068311, - "Guest_HG_NM_Glowbug_Base_B_07": 8064215, - "Guest_HG_NM_Glowbug_Base_A_01": 1618701527, - "Guest_HG_NM_Glowbug_Base_A_02": 1618697431, - "Guest_HG_NM_Glowbug_Base_A_03": 1618693335, - "Guest_HG_NM_Glowbug_Base_A_04": 1618689239, - "Guest_HG_NM_Glowbug_Base_A_05": 1618685143, - "Guest_HG_NM_Glowbug_Base_A_06": 1618681047, - "Guest_HG_NM_Glowbug_Base_A_07": 1618676951, - "MNT_SummerSOF2023": 1636120912, - "PP_Cyclops_Fire": 7821755, - "PP_Death_Elf": 1535744155, - "PP_Newt": 1438123483, - "PP_Echidna": 735439358, - "MNT_Wombat": 580544786, - "Transformation_BG_NinjaPig_Balance": 1799661438, - "Transformation_BG_Cyclops_Ice": 647975824, - "Transformation_BG_Minotaur_Storm": 1005667041, - "Transformation_GR_Parasaur_Priest_Ice": 1101466351, - "Transformation_GR_Parasaur_Priest_Fire": 892193041, - "Transformation_GR_Parasaur_Priest_Storm": 1525882116, - "Transformation_GR_Parasaur_Priest_Balance": 1127637476, - "Guest_GR_AZ_Parasaur_Undead_B_01": 322587487, - "MNT_WitchCat": 1167097888, - "PP_RolyPoly": 578538330, - "PP_Capybara_B": 628131532, - "MNT_OutbackTruck": 1815527801, - "PP_PoodleSailor": 2137704795, - "MNT_PolarianCannon": 2103490826, - "PP_TazmanianDevil": 1773548765, - "Guest_SKB_AZ_Ixcax_A_100": 556560994, - "Guest_SKB_AZ_Ixcax_A_150": 556610146, - "Guest_SKB_AZ_Ixcax_A_50": 564951650, - "MNT_GhoulsShovel": 2035610946, - "PP_CrystalBdayDragon": 1897078804, - "PP_SunGobblerBall": 1522469440, - "PP_Sun_GreenGobbler": 1337690394, - "MNT_2P_AutumnTreant": 1063435527, - "PP_AutumnTreant": 561077291, - "MNT_FlyingMonkey": 490807393, - "PP_BabyPlantMonster": 2076646587, - "MNT_PlantCreature_A": 1802823265, - "Transformation_BG_Fairy_Fire": 2065252898, - "Transformation_BG_Krok_Myth": 277926564, - "Transformation_BG_RatThief_Life": 1167758651, - "Transformation_BG_Elf_Balance": 1628238937, - "Transformation_BG_Colossus_Death": 184392004, - "Transformation_FortressPod": 139738335, - "P_Wombat_POLYMORPH": 1132264953, - "PP_SharkWobbegong": 1994247222, - "PP_ChineseNYDragon": 1126999021, - "PP_JingleBellRock": 1076037919, - "PP_Krok_Mummy_Myth": 438487583, - "PP_Cyclops_Ice": 1476966187, - "MNT_OutbackTruckB": 1813299577, - "MNT_EvilSnowmanBall": 758818712, - "MNT_ThanksgivingGobbler": 1760011910, - "Guest_WL_Ghost_LostSoul_A_01": 1224111704, - "Guest_WL_Kangaroo_Drover_F_01": 2025562931, - "Guest_WL_Spider_WarriorMage_C_01": 1296557888, - "Guest_WL_Spider_WarriorMage_C_02": 1430775616, - "Guest_WL_Spider_WarriorMage_C_03": 1564993344, - "Guest_WL_Spider_WarriorMage_C_04": 1699211072, - "Guest_WL_Spider_WarriorMage_C_05": 1833428800, - "Guest_WL_Spider_WarriorMage_C_06": 1967646528, - "Guest_WL_Spider_WarriorMage_C_07": 2101864256, - "Guest_SKB_KR_Lightbane_A_100": 837930677, - "Guest_SKB_KR_Lightbane_A_160": 837930669, - "Guest_SKB_KR_Lightbane_A_50": 1309555019, - "Transformation_WL_Phantasmanian_DevilTemplate": 384891502, - "MNT_2P_LeaflessTreant": 623083386, - "PP_Minotaur_Ice": 700151737, - "MNT_Scooter_G": 737125252, - "Guest_WL_Frog_Owner_B_01": 767864686, - "MNT_SilentKnight": 646654812, - "Guest_WL_TRex_Base_A_01": 1842562033, - "Guest_WL_TRex_Base_B_01": 304921616, - "PP_Groundhog": 108643243, - "Guest_NV_Unicorn_Guard_C_04": 1845621, - "MNT_EmuPunk": 647315080, - "MNT_HeartBalloon": 798826551, - "PP_ValentineHoppers": 968693964, - "MNT_SpringSOF2024_Heckhound": 453640548, - "Guest_AQ-Centaur-Arion": 1856508139, - "Guest_AQ-Centaur-Artemis": 333294011, - "Guest_AQ-Horse-Sea": 724896200, - "Guest_KR_Horse_Warlord_A_Bossfight": 1302284326, - "Guest_KR_Horse_Warlord_A_BossfightSP": 1300726822, - "Guest_KR_Zebra_Thrall_A": 1250265667, - "Guest_KR_Zebra_Thrall_A_Boss_Minion": 345677011, - "Guest_KR_Zebra_Thrall_A_Gallery": 1520303483, - "Guest_KH-Gray-Horse-40": 1802231403, - "Guest_KH-Gray-Horse-20": 1802231307, - "Guest_G14-BP-Unicorn_Fencer_Boss": 1602044152, - "Guest_Horse-Merc-Brown-L37": 1831175255, - "Guest_Horse-Merc-Tan-L39": 1363854837, - "Guest_Horse-Merc-Tan-L39-1": 2085275127, - "Guest_Horse-Merc-Gray-MSBoss-L39": 1863452041, - "Guest_Horse-Merc-Gray-L39": 2039135564, - "Guest_Horse-Merc-Tan-L38": 1363330549, - "Guest_WC_Horse_Mercenary_Roberto": 891924774, - "Guest_ZF-Nathi-Yellowstripe-R11": 1505157721, - "Guest_ZF-TseTse-Main-R11-Boss": 114927854, - "Guest_ZF-TseTse-Elephant-R11": 894147273, - "Guest_ZF-Zebra-Impi-Raider-R11": 1378242919, - "Guest_ZF-Zebra-Warrior-Male-R10-1": 1791906265, - "Guest_ZF-Zebra-Senzan-Zebu-R10-Boss": 373712721, - "Guest_ZF-Zebra-Shaka-Zebu-R10-Boss": 662142985, - "Guest_ZF-Zebra-Warrior-Female-R10-02": 1507835670, - "Guest_ZF-Zebra-Warrior-Male-R10": 47075786, - "Guest_ZF-Zebra-Warrior-Male-R10-02": 1791906714, - "Guest_ZF-Zebra-Warrior-Male-R10-03": 1791906746, - "Guest_ZF-Zebra-Warrior-Male-R10-05": 1791906682, - "Guest_ZF-Zebra-Warrior-Male-R10-2": 1791906268, - "Guest_ZF_Zebra_Spectral_Guardian-R11": 431970996, - "Guest_CC_Horse_Apoc_A_01": 644668374, - "Guest_CC_Horse_Apoc_B_01": 644668390, - "Guest_CC_Horse_Apoc_C_01": 644668406, - "Guest_CC_Horse_Apoc_D_01": 644668294, - "Guest_CC_Horse_Apoc_D_02": 645192582, - "Guest_CC_Unicorn_CorsairF_B_01": 1378532506, - "Guest_CC_Unicorn_Duelist_B_01": 64891542, - "Guest_CC_Unicorn_Guard_B_01": 1075063242, - "Guest_CC_Unicorn_Guard_B_02": 1075063238, - "Guest_CC_Unicorn_Guard_B_03": 1075063234, - "Guest_NV_Horse_HordeSoldier_A_01": 504396960, - "Guest_NV_Horse_HordeSoldier_A_02": 101743776, - "Guest_NV_Horse_HordeOfficer_A_01": 343600992, - "Guest_NV_Horse_HordeSoldier_A_03": 235961504, - "Guest_NV_Horse_HordeOfficer_A_02": 209383264, - "Guest_NV_Horse_AberrantTungAk_A_01": 952263441, - "Guest_NV_Horse_AberrantTungAk_A_02": 952263537, - "Guest_NV_Horse_TungAk_B_01": 1194718672, - "Guest_NV_Horse_TungAk_B_02": 657847760, - "Guest_NV_Horse_HordeOfficer_B_01": 343596896, - "Guest_NV_Horse_HordeOfficer_B_02": 209379168, - "Guest_NV_Horse_TungAk_A_01": 1194669520, - "Guest_NV_Unicorn_Guard_C_01": 1845601, - "Guest_NV_Unicorn_Guard_A_01": 797025, - "Guest_NV_Unicorn_AberrantGuard_A_01": 739851573, - "Guest_NV_Unicorn_Guard_C_02": 1845613, - "Guest_NV_Unicorn_Guard_C_03": 1845609, - "Guest_NV_Unicorn_AberrantGuard_A_02": 739848501, - "Guest_NV_Unicorn_Guard_A_02": 797037, - "Guest_NV_Unicorn_AberrantGuard_A_03": 739849525, - "Guest_NV_Unicorn_AberrantGuard_A_04": 739846453, - "Guest_NV_Horse_HordeOfficer_A_03": 75165536, - "Guest_NV_Horse_HordeSoldier_A_04": 907050144, - "Guest_NV_Horse_HordeSoldier_A_05": 1041267872, - "Guest_NV_Horse_HordeSoldier_C_01": 504388768, - "Guest_HG_TRAIN_Horse_MustangFencerF_A_Balance_50": 871182987, - "Guest_HG_TRAIN_Horse_MustangFencerF_A_Balance_75": 871176715, - "Guest_HG_TRAIN_Horse_MustangFencerF_A_Life_100": 886489645, - "Guest_HG_TRAIN_Horse_MustangFencerF_A_Balance_25": 871177035, - "Guest_HG_TRAIN_Horse_MustangFencerF_A_Balance_100": 872231819, - "Guest_HG_TRAIN_Horse_MustangFencerF_A_Life_140": 1960231469, - "Guest_HG_TRAIN_Horse_MustangFencerF_B_100": 2089957067, - "Guest_HG_TRAIN_Horse_MustangFencerF_A_Life_25": 1700184589, - "Guest_HG_TRAIN_Horse_MustangFencerF_A_Life_50": 920044045, - "Guest_HG_TRAIN_Horse_MustangFencerF_A_Life_75": 1742127629, - "Guest_HG_TRAIN_Horse_MustangFencerF_A_Balance_140": 872223627, - "Guest_HG_TRAIN_Horse_MustangFencerF_B_50": 2089952970, - "Guest_HG_TRAIN_Horse_MustangFencerF_B_75": 57530654, - "Guest_HG_TRAIN_Horse_MustangFencerF_B_140": 2089957099, - "Guest_HG_TRAIN_Horse_MustangFencerF_B_25": 1131272477, - "Guest_LM_Horse_Explorer_A_01_Hard": 1711837140, - "Guest_WL_Unicorn_Guard_A_01": 1074538935, - "Guest_WL_Unicorn_CorsairF_E_01": 1378532603, - "Guest_WL_Unicorn_Warlord_A_01": 1321310496, - "Guest_KH-Gray-Horse-1": 1802239547, - "Guest_KH-Gray-Horse-60": 1802231371, - "Guest_KH-Gray-Horse-80": 1802231467, - "Transformation_BG_NinjaPig_Ice": 186026527, - "Transformation_BG_Cyclops_Storm": 897316984, - "PP_MinotaurBalance": 1344665951, - "PP_OrthusMoon": 1804503950, - "PP_CoolPineapple": 1149318906, - "PP_TwinkleStars": 766378011, - "PP_Scroll": 1613313091, - "PP_Colossus_Death": 40713075, - "PP_ColossusDeath": 530964029, - "PP_KILiveRock": 1975550570, - "MNT_Outrigger": 1417937299, - "MNT_BookWyrm": 2080129190, - "MNT_RacingSnail": 1996220963, - "MNT_UmbrellaCloud": 145762615, - "PP_PropellerCat": 2094718580, - "MNT_TRex_Shirt": 586746001, - "MNT_Swarm_Bee": 1625228695, - "MNT__CelestialMoon": 968360256, - "Guest_ME_Sinbad_IronSultan_150": 2001676223, - "Guest_ME_Sinbad_Cyclops_150": 1968943689, - "Guest_ME_Sinbad_Skeleton_150": 1031490819, - "Guest_ME_Sinbad_Colossus_150": 1727675806, - "Guest_ME_Sinbad_Skeleton_150_02": 970505475, - "Guest_ME_Sinbad_Wyrm_150": 19314443, - "Guest_ZF-Zebra-Inzinzebu-Bandit-R11": 430262550, - "Guest_ZF-Zebra-Warrior-Male-R10-04": 1791906650, - "PP_TwinkleStars_02": 805304347, - "PP_TwinkleStars_03": 803207195, - "PP_TwinkleStars_01": 799012891, - "Transformation_BodleianHarrow": 609627870, - "Guest_HG_Gryphon_OwlStatue_A_01_L170": 77756046, - "Guest_HG_Gryphon_OwlStatue_A_02_L170": 73561742, - "Guest_HG_Gryphon_OwlStatue_A_01_L100": 77752974, - "Guest_HG_Gryphon_OwlStatue_A_02_L100": 73558670, - "Guest_HG_Gryphon_OwlStatue_A_01_L50": 78277134, - "Guest_HG_Gryphon_OwlStatue_A_02_L50": 74082830, - "MNT_SummerSOF2024_JudgementWings": 1078163967, - "MNT_Pegasus_E": 131704054, - "MNT_PolarisHero": 665176426, - "PP_Duckana": 1128961578, - "PP_QueenBee": 833291695, - "Transformation_BG_Draconian_Balance": 2078940682, - "Transformation_BG_WolfWarrior_Fire": 1762248682, - "Transformation_BG_Minotaur_Death": 309090657, - "PP_WolfWarrior_Fire": 685685256, - "PP_WolfWarrior_Death": 1857202724, - "Guest_ME-GTAV01-WyrmBoss-150": 1482208618, - "Guest_ME_SpectreOfB_L150": 684104791, - "Guest_ME_MD_MacDeath_L150": 1128977615, - "Guest_ME_Pig_BalanceWizardA_L150": 959913724, - "Guest_ME_Pig_BalanceWizardB_L150": 959913712, - "Guest_ME_Pig_BalanceWizardC_L150": 959913716, - "Guest_ME_Pig_FireWizard_L150": 964392255, - "Guest_ME_Pig_IceWizardF_L150": 86941026, - "Guest_ME_Pig_MythWizard_L150": 964051241, - "Guest_ME_Pig_StormWizardF_L150": 2016383602, - "Guest_ME_Clock_Clockworker_L150": 1424569772, - "Guest_ME_Clock_ClockworkSpanner_L150": 1966824609, - "Guest_ME_Clock_Lugs_L150": 370290904, - "Guest_ME_Clock_Lucia_L150": 1857768409, - "MNT_EvilChair": 339577702, - "PP_Cyclops_Storm": 621464512, - "PP_Krokomummy_Life": 462432735, - "Transformation_CL_Rematch_Crustacean": 1686865207, - "Transformation_CL_Rematch_Protector": 1893951532, - "Transformation_CL_Rematch_Angler": 120412196, - "Transformation_CL_Rematch_Piscean": 1624106070, - "Transformation_Zebra_Template": 1900548493, - "Transformation_Zebra2_Template": 325099540, - "Transformation_Zebra3_Template": 325099524, - "Transformation_Zebra4_Template": 325099636, - "MNT_SweetSixteenBirthday": 1009398096, - "MNT_2P_TRex_Bones": 1618543266, - "MNT_SpringBumperCar": 1725007788, - "PP_WinterGoblin": 2025052443, - "PP_OnyxAnubis": 1552575189, - "PP_OttomanCat": 223541582, - "MNT_HolidayYeti": 780983974, - "MNT_IceSled": 979912604, - "MNT_TurtleDoves": 1850191638, - "MNT_KrokChariot": 559783620, - "MNT_Mustang": 1775949401, - "MNT_PumpkinBall": 382849054, - "Transformation_BG_Fairy_Storm": 836920873, - "Transformation_BG_Elf_Myth": 1506493664, - "Transformation_NinjaPig_Life": 816802847, - "Transformation_BG_Krok_Fire": 1060580712, - "Transformation_BG_Colossus_Balance": 1067963041, - "Transformation_BG_NinjaPig_Life": 441460895, - "PP_Penguin_03": 1623028104, - "Transformation_Duck_Librarian_B": 864067551, - "Transformation_Duck_Librarian_A": 859873247, - "Transformation_Duck_Adventurer": 194560769, - "Transformation_Gummy_Bunny_C": 1298087941, - "Transformation_Frog_Horned_A": 837201339, - "Transformation_Glowbug_Storm": 2096380446, - "Transformation_Marshmallow_Critter_A": 1036335317, - "Transformation_Snipe_Base_B": 232132109, - "Transformation_Snowball": 915248481, - "Transformation_Wombat_Base": 333435450, - "Transformation_Human_Malistaire": 1414887773, - "Transformation_Morganthe_E": 1745180054, - "Transformation_Spider_Grandfather": 1131773979, - "Transformation_Khrulhu_Dasein_B": 367878762, - "Transformation_Devourer_Base": 698770016, - "Transformation_Alien_Meteor": 638746168, - "Transformation_Nightmare_Malus": 704212821, - "Transformation_Daemon_Personal": 278266463, - "PP_ValentinesDay": 810003364, - "PP_BabyHippo": 422858138, - "PP_Aardwold": 1592150119, - "PP_Aardwold_C": 1902528613, - "MNT_Cobra": 472847981, - "MNT_Serpopard": 1629558909, - "MNT_Serpopard_B": 1629556867, - "MNT_Serpopard_C": 1629556931, - "PP_Fairy_Fire": 1847789544, - "MNT_Mustang_B": 1448793691, - "PP_FireElfMyth": 1933609060, - "MNT_KT-BoatRide": 1560860110 - } - }, - "m_eMountType": { - "type": "enum eMountType", - "id": 3, - "offset": 184, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3097765662, - "enum_options": { - "eMNT_Standard": 0, - "eMNT_Floating": 1 - } - }, - "m_primaryColor": { - "type": "int", - "id": 4, - "offset": 188, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 900965981 - }, - "m_secondaryColor": { - "type": "int", - "id": 5, - "offset": 192, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1616550081 - }, - "m_patternColor": { - "type": "int", - "id": 6, - "offset": 196, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1304790295 - }, - "m_adjustableAnimationRate": { - "type": "bool", - "id": 7, - "offset": 200, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 698897022 - }, - "m_geometryOption": { - "type": "int", - "id": 8, - "offset": 204, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1776153279 - }, - "m_lastMountID": { - "type": "gid", - "id": 9, - "offset": 168, - "flags": 33554491, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1112551276 - } - } - }, - "1483265571": { - "name": "class ClientPetNameBehavior", - "bases": [ - "ClientWizPlayerNameBehavior", - "NameOverrideBehavior", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1483265571, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_wsNameOverride": { - "type": "std::wstring", - "id": 1, - "offset": 120, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2131249091 - }, - "m_nameKeys": { - "type": "unsigned int", - "id": 2, - "offset": 352, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1772225898 - }, - "m_useRank": { - "type": "bool", - "id": 3, - "offset": 356, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2040475372 - }, - "m_eGender": { - "type": "enum eGender", - "id": 4, - "offset": 432, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2776344943, - "enum_options": { - "Male": 1, - "Female": 0, - "Neutral": 2 - } - }, - "m_eRace": { - "type": "enum eRace", - "id": 5, - "offset": 436, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 963057554, - "enum_options": { - "Bat": 88066, - "BatLightning": 1472842576, - "Boar": 2624962, - "CatThug": 1855674386, - "ChristmasElf": 819908552, - "ChristmasSnowman": 1146515225, - "Colossus_Ice": 1063279538, - "Cyclops": 1691813655, - "DragonBeta": 417003588, - "DragonFriendly": 69049013, - "EvilSnowman": 1579630926, - "FireElf": 443793687, - "Firecat": 2045525741, - "Frog": 2274918, - "FrostBeetle": 7692383, - "GhostBlue": 1097396892, - "GhostGreen": 882822629, - "GhostRed": 560510742, - "GhostYellow": 909974358, - "Ghoul": 82556199, - "GoatMonk": 486215564, - "GolemBrass": 1057388325, - "GolemClockwork": 1143380031, - "GolemSteel": 1660583674, - "GolemWood": 1426849876, - "HalloweenCat": 1042869199, - "Heckhound": 626736403, - "Helephant": 719065368, - "Human": 79806088, - "Hydra": 70785800, - "Imp": 84361, - "Krokomummy": 555755242, - "Kroktut": 1352354178, - "Leprechaun": 2106466410, - "LeprechaunPattyDay": 380507781, - "LightningBat": 228257682, - "Mannequin": 428442544, - "Minotaur": 949570680, - "Mount_Broom": 94637995, - "Mount_Cat": 1150940211, - "Mount_Dragon": 1565720148, - "Mount_Horse": 2054712767, - "Mount_PlayerWings": 589829552, - "Nikkos": 1563122418, - "NinjaPig": 607400740, - "Orthus": 1552590225, - "Piggle": 1897753328, - "Piggle_Valentine": 687697592, - "Piggle_ValentinePart2": 1760391091, - "Pixie": 74836240, - "RatMagician": 885542120, - "SalamanderFire": 48480175, - "SalamanderIce": 2011152164, - "SalamanderStorm": 600331072, - "Satyr": 84793363, - "Scarab": 2143810477, - "Sheep": 86220083, - "SkeletonArmored": 1791586239, - "SnowSerpent": 138621543, - "Spider": 1603064269, - "SpiderBlack": 559353179, - "SpiderBrown": 557941675, - "SpiderCrystal": 2119625297, - "SpiderGolem": 1632616514, - "Sprite": 1889156557, - "SpriteDark": 1888685518, - "Stormzilla": 252684095, - "SunBird": 1602211198, - "Transformation_ArmoredSkeleton": 1861349834, - "Transformation_CatThug": 1175387611, - "Transformation_Cat_Bandit": 1012395694, - "Transformation_ClockworkGolem": 601121214, - "Transformation_Cyclops": 620156297, - "Transformation_DarkFairy": 1206757203, - "Transformation_DraconianSorcerer": 1212016810, - "Transformation_Draconian": 450730089, - "Transformation_EarthColossus": 140119452, - "Transformation_EvilSnowman": 1497097122, - "Transformation_FatGobbler": 634003800, - "Transformation_FireElemental": 822233230, - "Transformation_FireElf": 46585468, - "Transformation_FireSalamander": 2118418114, - "Transformation_Gobbler_Skinny": 162365207, - "Transformation_GolemSteel": 1329184184, - "Transformation_Ice_Colossus": 430406408, - "Transformation_Krokomummy": 1644615769, - "Transformation_MagmaMan": 545064542, - "Transformation_Mander": 88998828, - "Transformation_NinjaPig": 1029132174, - "Transformation_Ninja_Pig_04": 7093548, - "Transformation_RatThug": 1175352795, - "Transformation_RavenMystic": 1443197359, - "Transformation_StormElemental": 637088511, - "Transformation_Treant": 1874998327, - "Transformation_WarPig": 691088645, - "Transformation_WolfScout": 263523463, - "Transformation_WolfWarrior": 6092463, - "Transformationn_SkeletonPirate": 1821341863, - "Treant": 1396597132, - "Troll": 82261620, - "Unicorn": 550546918, - "Unknown": 718677478, - "Wolverine": 528843083, - "Wraith": 1788506505, - "Wyrmkin": 379044612, - "Transformation_CyrusDrake": 94277831, - "PetEgg": 1973167984, - "GhostLady": 493415959, - "Banshee": 827805677, - "GobblerRed": 250135875, - "Ghoul_Gravedigger": 161812468, - "SkeletonWarrior": 734585814, - "BansheeBoss": 806445565, - "Seraph": 1792950125, - "CrabKing": 277875784, - "UndeadCaster": 1680689397, - "DragonFrontier": 1829438301, - "HeckhoundGhost": 872406464, - "Mount_Unicorn": 212699468, - "Jellyfish": 910724608, - "SeaDragon": 1194541306, - "Turtle": 1897184620, - "Starfish": 1447562471, - "SpinyFish": 162948281, - "Mount_Gryphon": 2110522960, - "Mount_Shark": 1170186623, - "Mount_Manta": 979931598, - "Mount_Seahorse": 1554833818, - "Mount_Seahorse_Tough": 1245859453, - "Mount_Koi": 1150937409, - "Mount_Lobster": 2025618875, - "Mount_Turtle": 1490849128, - "VenusFlyTrap": 1612039757, - "GDN_MED_BabyCarrots": 327334743, - "GDN_SM_BoomShroom": 31324632, - "GDN_SM_Dandelion": 2058674142, - "GDN_SM_Disparagus": 1732989489, - "GDN_MED_EvilSnowPeas": 747408607, - "GDN_SM_FicklePickle": 205381955, - "GDN_SM_HappyHolidaisy": 1736236340, - "GDN_MED_HelephantEars": 1803669659, - "GDN_MED_HoneySickle": 424149132, - "GDN_LG_NinjaFig": 847338104, - "GDN_LG_SnapDragon": 1076151689, - "GDN_SM_StinkWeed": 845383431, - "GDN_MED_TrumpetVine": 1922690264, - "GDN_MED_VenusFlyTrap": 1560899638, - "GDN_SM_Laughodil": 1278979588, - "GDN_LG_BreadFruitBush": 533042934, - "GDN_MED_PricklyBearCactus": 1236846986, - "GDN_MED_KingParsley": 110148182, - "LeprechaunPatriotic": 414730890, - "SeraphYuletide": 1325846853, - "DragonGhost": 1502126893, - "UnicornNightmare": 604358256, - "EvilSnowmanSandman": 1579432150, - "Colossus_Spirit": 422514215, - "Rock": 2393554, - "GDN_MED_GivingTree": 2047236132, - "Egg": 70853, - "Mount_Carpets": 1602744888, - "Kraken": 1737191829, - "Wyvern": 1727802601, - "Phoenix": 1765559002, - "Judgement": 562901781, - "ForestLord": 1390734923, - "Humongofrog": 1272123051, - "Scarecrow": 41441599, - "Mount_Ram": 77196599, - "BasketSnake": 1835657086, - "Samoorai": 522797493, - "Transformation_RavenWarrior": 701169336, - "PhoenixStorm": 1325268802, - "PhoenixDeath": 1281634042, - "GDN_LG_CouchPotatoes": 879742725, - "GDN_MED_KeyLimes": 811516024, - "Mount_BoneDragon": 1023618313, - "Mount_BigBoneDragon": 1124383680, - "Mount_FairyWings": 1904926612, - "Mount_DragonWings": 755225925, - "Mount_Pegasus": 1621244140, - "GDN_MED_BellPepper": 1710238687, - "GDN_MED_GrapesOfWrath": 1068787103, - "GDN_SM_TigerLily": 1899057048, - "WysteriaPiggle": 49173891, - "Mount_Wyvern": 1658410744, - "Mount_2P_Rhino": 1052779475, - "NightHawk": 358964390, - "Giraffe": 935214826, - "Mount_Hawk": 2070898895, - "Mount_HalloweenNightmare": 726136378, - "GobblerHalloween": 1482399836, - "Leopard": 1606863715, - "Skink": 76950867, - "Mount_Ostrich": 466111322, - "Mount_Crocagator": 1981222087, - "Transformation_Blacktusk-01": 401543565, - "Mount_Hippogriff": 2043817624, - "Transformation_Gorilla-01": 1555853240, - "Transformation_Gorilla-02": 1606184888, - "Mount_Raven": 94983735, - "Mount_Chrismoose": 1822495199, - "Mount_CandyCane": 1148551147, - "Ivy_League": 925492799, - "GDN_MED_Ivy_League": 1630077794, - "Mount_Kirin": 1168691825, - "GDN_SM_Moonflower": 2068754330, - "GDN_MED_BoonTree": 788055729, - "Snowball": 2046118016, - "Foo_Dog": 1549710807, - "ShenlongDragon": 932676736, - "Monkey": 1233866291, - "Wolfhound": 626884686, - "Redcap": 1540319086, - "Raven": 79941650, - "HollowKnight": 1107268274, - "Book": 2405826, - "GDN_MED_AngoraBunnyEars": 1547559854, - "GDN_MED_FortuneCookieTree": 786686214, - "GDN_MED_GooseTree": 809354938, - "GDN_SM_HoneyBeePlant": 1528880373, - "GDN_MED_BambooShoots": 1096708900, - "GDN_SM_Huckleberries": 1937475840, - "Rock_Moustache": 962221287, - "Efreet_Myth": 1834555522, - "Efreet": 1401700123, - "Mammoth": 1395147745, - "Triton": 1730466188, - "Gnome": 74954215, - "BoneDragon": 429245206, - "Basilisk": 1457899086, - "Chimera": 529027789, - "Transformation_GammaTemplate": 1337834518, - "Mount_Camel": 1168198963, - "Mount_RenaissanceWings": 1049782088, - "Bull_Mount": 1713506759, - "Mount_Owl": 1150938242, - "Mount_Alphyn": 487264165, - "Mount_Stag": 1150353823, - "Mount_Auroch": 509865325, - "Mount_Warg": 1150358072, - "StrangeBeast": 511334734, - "Efreet_Ice": 1820009122, - "Efreet_Storm": 1269986674, - "GDN_LG_AlligatorPear": 1293913372, - "Mount_2P_Treant": 928450863, - "Mount_2P_Dragon": 1431637933, - "Mount_Pogo_Stick_WC": 1462849298, - "Mount_Pogo_Stick_MB": 1349603090, - "GDN_LG_MeltingCheese": 1914589015, - "GDN_SM_FishOnAVine": 1734955358, - "GDN_LG_AngelOak": 1539539424, - "GDN_LG_MeltingCheese_Angel": 1254781264, - "SnowyOwl": 1682262138, - "Mount_3P_Hydra": 1207475250, - "WeaselMinstrel": 1541234616, - "MOUNT_Rickshaw": 938282973, - "Transformation_Sherlock-Bones": 509126601, - "Mount_Phoenix": 556355452, - "Toaddle": 597488187, - "Pantera": 528797696, - "WildfireTreant": 673362041, - "StoneTiger": 746336665, - "Blowfish": 1447737334, - "Smith": 78327187, - "FlyingCat": 1254472614, - "RamWarrior": 536916302, - "Ladybug": 1846384669, - "BurlapBoy": 607590898, - "DeerKnight": 560802130, - "Gargoyle": 1227701700, - "Chameleon": 596131510, - "Scorpion": 1462253104, - "GDN_SM_BoiledPeanuts": 544885684, - "GDN_SM_ClockFlower": 676513046, - "GDN_SM_DeadBeets": 650783482, - "GDN_MED_SnowApple": 1916648180, - "Eyecaramba_Violet": 1804780775, - "Eyecaramba_Green": 750346574, - "Eyecaramba_Orange": 687614854, - "Piggle_Grandfather": 131445665, - "Velociraptor": 1042311818, - "Babydactyl": 1180982194, - "Stegosaurus": 476811765, - "Mount_Pegasus_Spectral": 948250730, - "Mount_2P_Scarydactyl": 1808983335, - "Mount_2P_TRex": 1495851852, - "Therizinosaurus": 80337863, - "Runtosaurus": 476200406, - "FrilledLizard": 420993517, - "Mount_Ankylosaurus": 669692274, - "Mount_Triceratops": 1126950204, - "Mount_2P_Glider": 1630365881, - "Transformation_Thunderhorn": 1045262037, - "Transformation_Jaguar": 1080966062, - "Transformation_Pteranadon": 273836142, - "Transformation_ShadowWeaver": 255927111, - "Transformation_EagleWarrior": 1880471875, - "Mount_Falalalallama": 389890123, - "Mount_2P_WinterTreant": 1850265056, - "GDN_LG_MissileToe": 1767792974, - "GDN_MED_PointSetta": 647257205, - "Nutcracker2012": 1598217699, - "Coal2012": 1627852119, - "Mount_Sleigh": 1636615519, - "Mount_Sabertooth": 1613031507, - "Mount_MechanicalWings": 1014917438, - "PiranhaHunter": 686271163, - "Quetzal": 2020925822, - "Mount_Sloth": 1169387359, - "HollowKnightLife": 2114081886, - "BettaFish": 138088968, - "MummyCat": 62372925, - "TrojanHorse": 1725299194, - "WC_Storm_Possessed": 186960228, - "AV_Possessed": 1106693085, - "AZ_Possessed": 1106692701, - "CL_Possessed": 1106692255, - "KT_Possessed": 1106693015, - "MS_Possessed": 1106692977, - "WC_Possessed": 1106692459, - "Mount_2P_Whale": 448824263, - "Mount_2P_Chariot": 88035298, - "Mount_WarBoar": 1159836211, - "Mount_Palanquin": 47587550, - "BearCub": 672664722, - "Transformation_Minotaur": 1454233452, - "DragonGauntlet": 797645257, - "DeathUnicorn": 924144161, - "Flamingo": 1488424911, - "Mount_Gorilla": 1939919432, - "Mount_WarUnicorn": 1361393198, - "GargoyleMyth": 1819685060, - "TikiMan": 16098567, - "Siren": 79937811, - "GoldenRam": 410220227, - "Harpy": 96026632, - "SwordShield": 1668411785, - "ClockworkKnight": 1059948980, - "Mount_MechanicalEagle": 1720948645, - "Mount_Cloud": 1166233435, - "Mount_Surfboard": 1914250039, - "Mount_BetaDragon": 1023653721, - "Mount_BeeWings": 1387988401, - "Vampire": 524731385, - "FrankenBunny": 589797989, - "BumbleBee": 249592226, - "Mount_Dragonfly": 1028843656, - "BronzeGolem": 1320867859, - "TarantulaHawk": 1983939429, - "Mount_Grasshopper": 1852850928, - "FlyingSquirrel": 847551166, - "GDN_MED_Sunion": 1652707634, - "GDN_MED_SwordFern": 548761438, - "GDN_SM_SugarKhrystal": 267539461, - "GDN_SM_SawPalmetto": 1892888046, - "GDN_LG_FacePalm": 2050814140, - "GDN_LG_QueenCrapeMyrtle": 80378450, - "Transformation_ShadowTank": 1304943609, - "Transformation_ShadowHeal": 1254024185, - "Transformation_ShadowDPS": 87276537, - "Mount_Noelephant": 1383672248, - "SaintBernard": 572932242, - "ParkaFox": 2009808189, - "Goose": 75019719, - "Mount_Coconut": 791151432, - "CreepyBeetle": 345594179, - "BabyDragonfly": 1367084335, - "FennecFox": 41315063, - "PP_Leviathan": 833901526, - "PP_SunSerpent": 1062677009, - "PP_LordOfWinter": 960214698, - "PP_Medusa": 867812931, - "PP_Dryad": 147654656, - "PP_AvengingFossil": 315904647, - "PP_Sabertooth": 1799146677, - "Mount_Butterfly": 1283940943, - "Mount_Hare": 2070851023, - "Transformation_MorganthB": 197306990, - "Transformation_MorganthC": 197831278, - "Transformation_MorganthD": 200452718, - "BabyPegasus": 1215000859, - "ArcaneHelp": 1899247549, - "Mount_Vines": 98389624, - "Mount_ArcaneMinecart": 2001270930, - "Hobgoblin": 2133668461, - "Mount_2P_Rowboat": 237071469, - "ForestSpirit": 1178454602, - "Mount_SpiritWolf": 531991076, - "Otter": 84138671, - "OrigamiBird": 550984083, - "DinoSkeletal": 233277835, - "Mount_HarrowingsGreen": 1605746772, - "Mount_HarrowingsBlue": 477152436, - "Mount_HarrowingsPurple": 2092807554, - "RedPanda": 1744233845, - "Ibis": 2665577, - "Corgi": 78823875, - "Mount_Yak": 996545739, - "Mount_FlyingBalance": 436519643, - "Transformation_ShadowMalistaire": 1043814435, - "Transformation_DragonMalistaire": 841867699, - "Mount_Scarab": 1687658791, - "Transformation_MisterHound": 1973578844, - "Mount_BahHumbug": 55114077, - "Skates": 1568993965, - "Moose": 75019725, - "Mount_Gargoyle": 1456663874, - "GDN_MED_VenusFlyTrapEpic": 1594069606, - "Mount_PlayerWingsPink": 19403046, - "GDN_LG_AlligatorPearEpic": 1326804812, - "Pet_Armadillo": 825736847, - "Mount_JoustingDestrierDyeable": 1683448768, - "GDN_MED_VampireCarrots": 871596496, - "GDN_SM_WhiteTigerLilyEpic": 1703271434, - "GDN_LG_NinjaFigEpic": 938504823, - "GDN_LG_SnapDragonEpic": 2071674466, - "GDN_MED_HelephantEarsEpic": 719166107, - "GDN_MED_TrumpetVineEpic": 225854518, - "GDN_SM_DandelionEpic": 728637442, - "GDN_SM_HuckleberriesEpic": 1903258448, - "GDN_MED_SnowAppleEpic": 1231175967, - "GDN_SM_BoomShroomEpic": 981598771, - "GDN_MED_KingParsleyEpic": 2038371004, - "Mount_Raptor": 749695031, - "Pet_Toucan": 581477475, - "Pet_Squirrel": 969881395, - "Mount_WonkyDonkey": 1481657312, - "Mount_HawkPatriotic": 509149743, - "Pet_FrogAssistant": 1945041750, - "Mount_Cat2": 1151054899, - "Mount_Cat2BW": 1603515443, - "Pet_ArmadilloBW": 825733899, - "Pet_FrankieForearms": 1100195857, - "Mount_SolarSabre": 1281093703, - "MNT_MechOstrich": 258667969, - "MNT_BootsBalance": 1799191558, - "MNT_BootsDeath": 1034912971, - "MNT_BootsFire": 606061658, - "MNT_BootsIce": 2142643294, - "MNT_BootsLife": 773751898, - "MNT_BootsMyth": 144792486, - "MNT_BootsStorm": 1525245121, - "Pet_CorgiBirthday": 1951779369, - "OrigamiBirdBDay": 1909935955, - "Pet_FlyingBlackCat": 432111988, - "Mount_Narwhal": 449637834, - "Mount_NightOwl": 1648420845, - "Pet_Penguin": 137342907, - "MNT_PowerGemUnicorn": 411234062, - "Pet_CrystalButterfly": 512136094, - "Mount_BabyMammoth": 185831059, - "MNT_BabaYaga": 564874997, - "Pet_BabySeal": 657606984, - "Pet_BabyYeti": 635847496, - "Transformation_BallerinaBear": 1525333600, - "Mount_StagYuletide": 1508680687, - "Transformation_TitanMedium": 1700742736, - "Transformation_TitanLarge": 718614967, - "Pet_SirenIce": 849851564, - "Mount_FlyingDeath": 1717725588, - "Mount_FlyingFire": 1177216332, - "Mount_FlyingIce": 1238841184, - "Mount_FlyingLife": 433397684, - "Mount_FlyingMyth": 164983572, - "Mount_FlyingStorm": 375872049, - "Dragonling": 1730534849, - "Pet_EggChicken": 952873217, - "HeckhoundGhost_MAW": 893368960, - "Mount_WinterTrain": 751515281, - "Mount_RubberDucky": 1826548479, - "Pet_BansheeSpellwrit": 917979583, - "Pet_SamooraiSpellwrit": 370057597, - "Mount_UnicornAstral": 886914505, - "Guest_Boochbeard": 1958574095, - "Pet_MouseSister": 1267930350, - "Pet_MouseFather": 2010008339, - "Pet_VampireSquirrel": 250588691, - "Mount_CoffinCar": 1387606595, - "Mount_BabyElephant": 2026559639, - "Pet_RoadHog": 601156960, - "Mount_WolfGryphonWings": 543038283, - "MNT_ClockworkSteed": 891371132, - "Mount_Chopper": 1196683136, - "Pet_ButterflyLamb": 527214392, - "Pet_MouseMother": 2012687123, - "Pet_MouseBrother": 1174380856, - "Pet_Cherub": 769208559, - "GDN_SM_Jewel": 1104045832, - "MR_Death_Duncan_Grimwater": 1850289001, - "Mount_DesertRunner": 2049036229, - "Pet_MonkeyMirage": 418612892, - "Pet_ClockworkOwl": 1038482431, - "Pet_NinjaTurtle": 2024540686, - "Mount_Vines_Halloween": 82852149, - "Mount_SwarmBat": 1151836459, - "Mount_2P_NinjaDragon": 1239694057, - "Mount_Gobler": 1820615236, - "Mount_MaryleboneCar": 2027689685, - "JackOLantern": 1016361578, - "Transformation_DjinnCommonA_Balance": 996127128, - "Transformation_MedicineMode": 25960701, - "CactusHopper": 1956293007, - "Transformation_Mimic_ChestGold_A": 414145432, - "Mount_Ghoulture": 1067671195, - "Pet_Macaw": 1087278472, - "Pet_SandWorm": 653200803, - "Transformation_DromelDancer": 1071824116, - "Pet_Bunnies": 695874547, - "Mount_Snowboard": 1914380015, - "Transformation_DrommelDancer": 226294468, - "Mount_Carpet_New": 1618650322, - "Mount_BunnySleigh": 599915427, - "Helephant_Heart": 419161272, - "Mount_Snowboard_Holiday": 876339060, - "Transformation_GhostDog": 646575420, - "Transformation_PrinceGobblestone": 693826496, - "Transformation_Mithraya": 1240010601, - "Transformation_LuskaCharmbeak": 897469730, - "Transformation_YoungCyrusDrake": 15595663, - "Kookaburra": 1069759154, - "BorealisGolemPet": 797488492, - "FlyingEyePet": 505959833, - "StormCloudPet": 548463069, - "BullPet": 1993917801, - "OpossumPet": 284003652, - "GhoulturePet": 939920734, - "StormCloudPetB": 548463001, - "StormCloudPetC": 548463003, - "Guest_LordNightshade": 1221409981, - "BullPetB": 1993917561, - "BullPetC": 1993917553, - "BullPetD": 1993917513, - "Transformation_ShadowCrit": 1392195065, - "Mount_Pennyfarthing": 1551926344, - "Mount_RowboatPirate": 2079208803, - "Mount_IceCube": 1261861595, - "Guest_LostMaiden": 883675592, - "Guest_BoatswainMcGee": 1359750850, - "Guest_ChiefMateMcGurk": 329643845, - "Guest_DoomedBones": 2015643882, - "Guest_SpectreoftheBrocken": 266357448, - "Guest_DrownedKnight": 1100966093, - "Guest_TarntheDrowned": 329540205, - "Guest_DisloyalKnight": 1853240753, - "Guest_NamelessKnight": 1065677876, - "Guest_LambentFire": 489886605, - "Guest_LordoftheBrocken": 1662003371, - "Guest_StormCaiman": 1147500291, - "Guest_GrinningDeathMoon": 737595789, - "Guest_MoonSkullWight": 1720039490, - "Guest_HuemacSpearWreath": 1522021131, - "Guest_HowlingBanshee": 1340855338, - "Guest_Sea-Booter": 1818491983, - "Guest_DeadRover": 1009273257, - "Guest_CelestianRemnant": 1312268448, - "Guest_Shadow-WebConscript": 1500529411, - "Guest_Shadow-WebMercenary": 623672171, - "Guest_Shadow-WebWraith": 810956416, - "Guest_Shadow-WebHaunt": 500586883, - "Guest_CelestianPartisan": 633346892, - "Guest_CelestianDefender": 482102727, - "Guest_ThraleBonestriker": 1172972733, - "Guest_VorgenSoulbreaker": 1935693246, - "Guest_ServusBloodsword": 1703995647, - "Guest_QueenCalypso": 845803519, - "Guest_BlueBart": 77043390, - "Guest_KarolakNightspinner": 1008737316, - "Guest_ArachtusDuskweb": 1787750209, - "Guest_ZhalarStarcloud": 1453644105, - "Guest_NarallorNightborn": 1963363700, - "Guest_SelwynSkywatcher": 1413136893, - "Guest_OsseusNightreaver": 306827003, - "Guest_IrateBanshee": 865143109, - "Guest_FuriousHowler": 1607252558, - "Guest_CryingSpirit": 1559074820, - "Guest_UndeadDraconian": 169249571, - "Guest_ReanimatedDraconian": 247067807, - "Guest_GhastlySlave": 80127661, - "Guest_BoundSpecter": 369706568, - "Guest_NecroticHaunter": 1714841563, - "Guest_LoathsomeCreeper": 1087245229, - "Guest_FleshrotRetriever": 1925148031, - "Guest_BarbarianSpirit": 2112552732, - "Guest_BeghastionCrowcaller": 586628832, - "Guest_BeghastionFieldburner": 1650751959, - "Guest_BoneWarrior": 76802026, - "Guest_FleshlessSentry": 708431820, - "Guest_PirateRavager": 945157059, - "Guest_RottenScallywag": 974666855, - "Guest_ArmoredBonewalker": 1444568072, - "Guest_UndeadWizard": 1622435563, - "Guest_SoulSearcher": 2094392941, - "Guest_DecayingBlackguard": 412324062, - "Guest_FoulReaper": 919877614, - "Guest_NightShadow": 1675932226, - "Guest_MotleyCrew": 653779218, - "Guest_OrinGrimcaster": 472649066, - "Guest_GhostofSylviaDrake": 218332449, - "Guest_VikaMarkmaker": 1145181168, - "Guest_VasekAshweaver": 1001434369, - "Guest_FireWraith": 1027720368, - "Guest_HungrySoul": 1722435576, - "Guest_FrostBones": 456145606, - "Guest_SnowSkull": 835837850, - "Guest_WinterSkull": 1556601065, - "Guest_LothinDoombringer": 860995070, - "Guest_MimirWinterbane": 1111898070, - "Guest_KulgrimSoulsunder": 278037985, - "Guest_HitojiniDeathcaster": 1144499043, - "Guest_GaikotsuSkeleton": 1113949902, - "Guest_PhantomAce": 1917639347, - "Guest_PhantomGlider": 849918336, - "Guest_Krokomummy": 857773886, - "Guest_NiriniAncientGuard": 359313880, - "Guest_NiriniFireSpirit": 1863811476, - "Guest_VaultHaunter": 197723476, - "Guest_VigilantDefender": 171276829, - "Guest_WanderingAhnicSpirit": 1702865088, - "Guest_ForgottenDjeseritSoul": 1170568256, - "Guest_KaranahnDeathfeeder": 1612857711, - "Guest_ShamblingAhnic": 1579129677, - "Guest_RisenDjeserit": 287855500, - "Guest_KaranahnMortifier": 874288111, - "Guest_DjeseritDweller": 2058423665, - "Guest_AhnicStrider": 1776992302, - "Guest_GuardianoftheFang": 1816795524, - "Guest_DefenderoftheFang": 354353604, - "Guest_ProtectoroftheFang": 1290191037, - "Guest_SouloftheCharmed": 422890577, - "Guest_KaranahnKeeper": 77581557, - "Guest_NiriniIntimidator": 677205957, - "Guest_CondemnedSoldier": 449152244, - "Guest_NimahtheWicked": 1298248873, - "Guest_AkoriNirini": 1123159753, - "Guest_SoulScavenger": 892852198, - "Guest_KeeperoftheFang": 1676773499, - "Guest_ItennuSokkwi": 699159408, - "Guest_Tempestra": 334938435, - "Guest_QueenIrisiDjeserit": 1861434100, - "Guest_TheBonekeeper": 1302503449, - "Guest_CryptScavenger": 1893795791, - "Guest_Soulsapper": 1699756010, - "Guest_KingUroAhnic": 1788825731, - "Guest_KingShemetDjeserit": 1350067043, - "Guest_UnholyWraith": 1871146013, - "Guest_PikeSpiritcrusher": 498715531, - "Guest_SpellwritScreamer": 801626733, - "Guest_SpellwritRonin": 1671439174, - "Guest_Shrieker": 805966229, - "Guest_GravePhantom": 731622936, - "Guest_NightmareSpirit": 230709057, - "Guest_VengefulCreeper": 1100197884, - "Guest_TombRoamer": 1277825068, - "Guest_ShieldSkeleton": 1634270152, - "Guest_AgonyWraith": 30384496, - "Guest_IcyGhost": 768353592, - "Guest_Half-wittedSkeleton": 647996362, - "Guest_LazyHenchman": 1329554426, - "Guest_TiredFighter": 210248632, - "Guest_Screecher": 469007005, - "Guest_SeethingWraith": 664913100, - "Guest_ColdConfusion": 1304943934, - "Guest_OssuaryConscript": 1017667150, - "Guest_Ghulture": 1330558655, - "Guest_BodyGuard": 1048581801, - "Guest_SpectralGuardian": 422805602, - "Guest_VaultConscript": 1388398065, - "Guest_FootPatrol": 1692393321, - "Guest_ArmedGuard": 2045920536, - "Guest_Chilly": 1764665905, - "Guest_Achey": 973370519, - "Guest_Sneezy": 1769440773, - "Guest_Cough": 1170200073, - "Guest_Shadowbones": 1316133167, - "Guest_ForgottenConscript": 1466348281, - "Guest_BarracksGuardian": 236603440, - "Guest_CryptConscript": 314755436, - "Guest_DurvishSeeker": 1825622267, - "Guest_MedicineMode": 167015574, - "Guest_Myriarch2": 593881680, - "Guest_Myriarch3": 593881616, - "Guest_MyriarchEphialtes": 773531895, - "Guest_MotherGhulture": 1585201915, - "Guest_CaptainCosrow": 727107332, - "Guest_VizierRafaj": 214040637, - "Guest_DarkmoorSerf": 1522169114, - "Guest_DarkmoorSquire": 1822567109, - "Guest_ScarletWampyr": 1683954247, - "Guest_DraconianRevenant": 741497298, - "Guest_DraconianEidolon": 107733297, - "Guest_AnguishedWraith": 1078602022, - "Guest_DraconianPyromancer": 729577007, - "Guest_DraconianThaumaturge": 189734361, - "Guest_DraconianDiviner": 472633746, - "Guest_DraconianConjurer": 1824962835, - "Guest_DraconianTheurgist": 1828628416, - "Guest_DraconianNecromancer": 175364324, - "Guest_DraconianSorcerer": 1262893339, - "Guest_SirBlackwater": 366308464, - "Guest_AkhtangWormCrawl": 1589032404, - "Guest_SpiritofDarkmoor": 579455915, - "Guest_ShanevonShane": 2096517522, - "Guest_YevgenyNightCreeper": 1535282881, - "Guest_MalistairetheUndying": 824508513, - "Guest_Bunferatu": 1015806005, - "Guest_CountBelaBlackSleep": 761647679, - "Guest_DeathSoldier": 1715141574, - "Guest_SorrowWhisperer": 556532003, - "Guest_GriefSpectre": 1425488559, - "Guest_HowlingShade": 631460247, - "Guest_WalkingDead": 318527090, - "Guest_Akuji": 977635799, - "Guest_TorturedKakedaSoul": 1716874833, - "Guest_KakedaSpiritSlave": 1814699344, - "Guest_DishonoredSamoorai": 320085744, - "Guest_CursedRonin": 1204095686, - "Guest_TomugawatheEvil": 166125424, - "Guest_OyotomitheDefiler": 1672714483, - "Guest_Fushiko": 801492770, - "Guest_BrokenLandGuardian": 294671991, - "Guest_ShatteredSkyGuardian": 746681463, - "Guest_SunderedSeamGuardian": 1439618652, - "Guest_BrokenLandSpirit": 860105895, - "Guest_ShatteredSkySpirit": 2104112380, - "Guest_SunderedSeamSpirit": 69572311, - "Guest_LostSoul": 204361577, - "Guest_RottingFodder": 308249734, - "Guest_HauntedMinion": 689597338, - "Guest_FieldGuard": 1175228991, - "Guest_SkeletalWarrior": 778393993, - "Guest_SkeletalPirate": 1476730220, - "Guest_WanderingSpecter": 126188449, - "Guest_LivingScarecrow": 1442943145, - "Guest_FrostPhantom": 1809776664, - "Guest_FireShrieker": 173332719, - "Guest_CryptCrawler": 2118799272, - "Guest_ViridianSpecter": 383149977, - "Guest_ArgentClatterer": 525414714, - "Guest_SwimmingSpecter": 1494025094, - "Guest_ScarletScreamer": 1689589811, - "Guest_BoneDigger": 1351421123, - "Guest_HowlingGhost": 664019391, - "Guest_SkeletalSoldier": 750463116, - "Guest_MaidenofHate": 444442868, - "Guest_SkeletalRetainer": 1409032775, - "Guest_SoulHunter": 1900267551, - "Guest_MidnightShuffler": 1991052065, - "Guest_PlaguedSoul": 419071561, - "Guest_HauntingBanshee": 345837052, - "Guest_SimontheSayer": 1352807820, - "Guest_TheHarvestLord": 1923575206, - "Guest_LadyBlackhope": 1403431623, - "Guest_SergeantSkullsplitter": 898737831, - "Guest_Foulgaze": 2063419769, - "Guest_Wormguts": 788697519, - "Guest_Rattlebones": 125602919, - "Guest_Paulson": 1112716921, - "Guest_Grubb": 1167554274, - "Guest_Norton": 581021964, - "Guest_NightStalker": 1447653309, - "Guest_AddereTimeo": 1491420030, - "Guest_TheReaper": 1526369733, - "Guest_AngrusHollowsoul": 1427862805, - "Guest_OrrickNightglider": 951078615, - "Guest_SteelSentinel": 885250894, - "Guest_Shadow-WebSoldier": 2014925398, - "Guest_LostCeleste": 1725301830, - "Guest_CapnNigelSkullcrack": 1665439970, - "Guest_HaulAwayJoe": 1075985331, - "Guest_OldMaui": 15300840, - "Guest_LordAgue": 140791419, - "Guest_MelweenaSmite": 432188189, - "Guest_HalloweenTrickster": 2043736417, - "Guest_PumpkinHead": 1098332105, - "Guest_BaronMordecai": 817370918, - "Guest_KaimaniteMummy": 1332671420, - "Guest_VeggieRevanant": 928504192, - "Guest_BloodBat": 76467389, - "Guest_DeadBeets": 157829578, - "Guest_Desparagus": 1130644076, - "Guest_MeanestFly-Trap": 1652898868, - "Guest_Nosferabbit": 1021159436, - "Guest_ThrallofSothmekhet": 330780177, - "Guest_VileApparition": 426627869, - "Guest_SoulServant": 1183110886, - "Guest_SoulKeeper": 917518313, - "Guest_AdmiralBontau": 2032168402, - "Guest_DeathWhisperer": 3814952, - "Mount_RollerBlades": 111369373, - "Guest_BaneWyrm": 147033576, - "Guest_BlackDragon": 939469656, - "Guest_DragonSpawn": 1829803517, - "Guest_Fire-SpitterSpawn": 616624489, - "Guest_CaoranachtheFire-Spitter": 323513000, - "Guest_Jabberwock": 1552492834, - "Guest_CatalantheLightningLizard": 1155778705, - "Guest_WhiteDragon": 2009449331, - "Guest_WinterWyrm": 478925069, - "Guest_WyrmStatue": 2119216210, - "Guest_AlgidWyrm": 1309546482, - "Guest_BruleeSucre": 390936202, - "Guest_HebitohoWyrmling": 1682026810, - "Guest_Shadowwock": 505539184, - "Guest_EirikurAxebreaker": 1361453552, - "Guest_WarWyrm": 1124740742, - "Guest_StrayFireflier": 610979811, - "Guest_BurningFlamewing": 2041225130, - "Guest_FeralLavaling": 371483057, - "Guest_SplinterWing": 923421333, - "Guest_ChanticoBlueAir": 1572441903, - "Guest_CopperWingGuard": 302783602, - "Guest_ObsidianBeak": 2016227452, - "Guest_CaquixNineShadows": 2070101060, - "Guest_LustrousTlalocan": 1201030473, - "Guest_SeedThief": 263211181, - "Guest_PopZotzUnluckyDay": 1416773489, - "Guest_NezathePoet": 1905861376, - "Guest_MazenStingerBee": 1642023393, - "Guest_ImperialJusticePayne": 1285679745, - "Guest_AssistantWardenPorfiry": 22099059, - "Guest_MarshalKamensky": 524669730, - "Guest_WardenVissarovich": 882556823, - "Guest_GulagGuard": 100744159, - "Guest_CaptainKravchuck": 690830770, - "Guest_ImperialGuard": 346803640, - "Guest_IronPaw": 1797329688, - "Guest_TundarianEnforcer": 134256836, - "Guest_Ivan": 996220221, - "Guest_ColonelOrlov": 1381254189, - "Guest_IronPawIntakeCaptain": 2099184835, - "Guest_SolitaryWarden": 1503529566, - "Guest_CaptainZubkov": 793725366, - "Guest_SergeantBobrik": 722182485, - "Guest_WailingWraith": 946976407, - "EggChick": 1452316301, - "BunnyMallow": 518233330, - "Guest_ThunderHornZombie": 1007920040, - "Guest_SmokingMirrorZombie": 340971759, - "Guest_ShamblingZombie": 1920485146, - "Guest_MoonSkullZombie": 809249764, - "Guest_DeathlessStormHorn": 812397213, - "Guest_MozarTurtleHunter": 561749043, - "Guest_GuillermoShatterer": 499565054, - "Guest_XiuhcoatlBarbedTooth": 1719245305, - "Guest_AzcalFireAnt": 1281366337, - "Guest_TlotzinMoonThief": 407285761, - "Guest_PocaCruelStar": 1117353085, - "Guest_ThunderHornGhoul": 597878999, - "Guest_TezomocStoneSinger": 733511940, - "Guest_EzhuaBadTaste": 632779219, - "Guest_UacalxochitlBloodEye": 1614856226, - "Guest_WanadiBlackSky": 349829749, - "Guest_ElMarrow": 483880636, - "Guest_GrimCalaca": 1534029144, - "Guest_XipeFlayedOne": 1343577398, - "Guest_MotecumaDeathMask": 1782393717, - "Guest_EkeChuah": 13416770, - "Guest_AnacaonaBlackSnake": 1543344897, - "Guest_SmokingMirrorWight": 776452983, - "Guest_Tolkemec": 217428080, - "Mount_Fox": 77199428, - "PP_OwlProtege": 268847192, - "Mount_SharkSki": 331374103, - "PP_Dolphin": 1662291612, - "Mount_CastSymbol_D": 1134428045, - "Mount_CastSymbol_E": 1136525197, - "Mount_CastSymbol_F": 1138622349, - "Mount_CastSymbol_G": 1140719501, - "Mount_CastSymbol_A": 1128136589, - "Mount_CastSymbol_B": 1130233741, - "Mount_CastSymbol_C": 1132330893, - "Guest_LionSpectralGuardian": 1791543691, - "Guest_KillmareSpiritwalker": 1818928165, - "Guest_ZebraSpectralGuardian": 815933596, - "Guest_GorillaSpectralGuardian": 1635182119, - "Guest_IklawGhostWarrior": 373465545, - "Guest_BwanaShadowriver": 1307628747, - "Guest_ElephantSpectralGuardian": 1579402208, - "Guest_ZangaZebu": 1218173119, - "Guest_GrumishGreataxe": 486953385, - "PP_GlowFairy_A": 2028856748, - "Guest_RestlessSoldier": 1142701763, - "Guest_WanderingWizard": 209518514, - "Guest_ColonelIvanenko": 399169035, - "Guest_DetollitheDestroyer": 655767295, - "Guest_Jawniak": 1791298433, - "Guest_Tajniak": 356182394, - "Guest_Ygor": 996316081, - "Guest_KyaniteLancer": 2136703656, - "Guest_VestaShadowmark": 1846747836, - "Guest_ZoraSteelwielder": 1186470644, - "Guest_AndorBristleback": 1949884743, - "Guest_GalliumPaladin": 1812340868, - "Guest_GalliumFootman": 1295203112, - "Guest_GalliumShardtrooper": 1210699836, - "Guest_GalliumJuggernaut": 3527584, - "Guest_VladimirDarkflame": 1575322237, - "Guest_KyaniteLieutenant": 561528977, - "Guest_DrusillaMorningbane": 155837810, - "Guest_KyaniteValkyrie": 53242136, - "Transformation_20Q_SherlockBones": 1112674320, - "Guest_DevoraShadowcrown": 1813459117, - "Guest_YoualaNightDrinker": 881289828, - "Guest_Pendragon": 715669945, - "Guest_CelestianRevenant": 515730327, - "Guest_SoullessServant": 1505662730, - "Guest_SpiritServant": 104517373, - "Guest_SoulSerf": 1188214406, - "Guest_ServileSoul": 871844607, - "Guest_SkeletalCorsair": 239414410, - "Guest_RottedFodder": 1301186193, - "Guest_ScarletScreecher": 600457915, - "PP_FrankBunnyBride_A": 974707030, - "Guest_BastillaGravewynd": 2100015237, - "Guest_VilaraMoonwraith": 2067986693, - "Guest_YngvarSharptooth": 1783361972, - "Guest_TroubledWarrior": 1569033392, - "Guest_VeggieRevanant2": 928503904, - "Guest_VeggieRevanant3": 928503888, - "Guest_VeggieRevanant4": 928503872, - "Guest_VeggieRevanant5": 928503856, - "Guest_AncientQhatWarrior": 1564521104, - "Guest_EmperorPaleolo": 2079384347, - "Guest_SpiritofIntolerance": 1627658048, - "Guest_SpiritofInquiry": 1320544891, - "Guest_FirstGuardian": 1982227776, - "Guest_FallenMerc": 225926286, - "Guest_NightShadow2": 1638183490, - "Guest_NightShadow3": 1636086338, - "Guest_NightShadow2-2": 1436856907, - "Guest_NightShadow3-2": 1434759755, - "Guest_NightShadow4-2": 1432662603, - "Guest_NightShadow5-2": 1430565451, - "Guest_NightShadow6-2": 1428468299, - "Guest_NightShadow7-2": 1426371147, - "Guest_FirstScythe": 738854032, - "Guest_GreyMantisCaptain": 860186057, - "Guest_GreyMantisHunter": 1239274377, - "Guest_Atlach-Leng": 836136649, - "Guest_PetrovGloomstrider": 2045783873, - "Guest_NauyotolDownIntheHole": 1134251106, - "Guest_SandorSpearcaller": 1351072377, - "Guest_MavraFlamewing": 1477685600, - "Guest_Scaldling": 208751819, - "Guest_WoebegoneWraith": 1166488705, - "Guest_BorisBlackrock": 1365399915, - "Guest_KatiaFirewinter": 521255834, - "Guest_ValerikBrightsword": 1244055782, - "Guest_RurikFlamesoul": 1962726850, - "Guest_IonaPyrelance": 722266491, - "Guest_DarkPoltergeist": 818162178, - "Guest_TheCollector": 1772287612, - "Guest_ViktorSnowcrusher": 1028387381, - "Guest_ValeskaRedwind": 19316351, - "Guest_ScarrikGallowgaunt": 105397333, - "Guest_Neberyx": 1453883041, - "Guest_AsrikWidebelt": 401936422, - "Guest_GothricHonorbound": 750072340, - "Guest_HalfangBristlecrown": 618779562, - "Guest_OsvudFleetpaw": 1023466459, - "PP_PufferFish_A": 1578606029, - "Guest_OzelUnderwaterCat": 1033669302, - "PP_BabyGreenMan_A": 910025246, - "PP_SchoolTurtle_A": 1012620678, - "PP_DarkBalloon_A": 1229308566, - "MT_JetsamCopter": 92127678, - "Mount_4P_DarkClownCar": 420246262, - "MNT_BalloonsBunch": 2000358474, - "Guest_TempleGuardian": 632574316, - "Guest_TemplePhantom": 1701097840, - "Guest_MahonStarsearcher": 1549093341, - "Guest_LostKnight": 858980994, - "Guest_AnguishedWoodman": 174606918, - "Guest_TormentedTreant": 294050331, - "Guest_WildfireTreant": 1902129818, - "Guest_BlightedYaxche": 679097088, - "Guest_Junglethorn": 1734561424, - "Guest_Tangleroot": 2027061721, - "Guest_BlightedFreerooter": 1109803061, - "Guest_Winterbranch": 1170787806, - "Guest_DecayingBogwalker": 1338670789, - "Guest_BrownwoodTormentor": 1655181754, - "Guest_Wildroot": 1839747182, - "Guest_Ironsplinter": 668295157, - "Guest_Frostbranch": 75974631, - "Guest_KyoukonteiTreant": 474446232, - "Guest_BrokenStumps": 414724364, - "Guest_WordlessWoodsmen": 1813881830, - "Guest_DesiccatedTreebeard": 1826942903, - "Guest_ShadowoftheLand": 1612385317, - "Guest_TreeRoot": 1406633546, - "Guest_BefouledWoodwalker": 1517919498, - "Guest_ConfusedForestWarrior": 750805985, - "Guest_CrazedForestSpirit": 1007960507, - "Guest_Oakheart": 1158293719, - "Guest_SnowTreant": 1028620035, - "Guest_Snowbeard": 1997921701, - "Guest_BarkskinTreant": 2143957812, - "Guest_RazorleafTreant": 2133159197, - "Guest_CarrionFlowerMan": 1120698936, - "Guest_Kurokage": 355651925, - "Guest_LacombeStrawHouse": 568809873, - "Guest_BerkshireStickHouse": 1932133405, - "Guest_TamworthBrickHouse": 894027634, - "Guest_RustyTinderSpark": 1237916230, - "Guest_CoraWinterBranch": 1901918989, - "Guest_GrambleGoldRook": 1986988546, - "Guest_PiperStormTree": 1109520133, - "Guest_Hanadzura": 124838500, - "Guest_Kuchisaki": 2084188681, - "Guest_Kaizoku": 807430784, - "Guest_JaxonLastRites": 1653711119, - "Guest_SeijunKiller": 657647155, - "Guest_ZarichiTarakata": 1129212566, - "Guest_BladelessRonin": 1577395797, - "Guest_SanzokuOutlaw": 1682888807, - "Guest_SanzokuBandit": 1766198653, - "Guest_KakedaPainbringer": 1260119278, - "Guest_KakedaStalker": 367458449, - "Guest_KakedaShadow": 1604499626, - "Guest_KakedaSoulcrusher": 1961168112, - "Guest_ImitsuPlaguemaster": 1361539025, - "Guest_ImitsuDefouler": 1299791045, - "Guest_ImitsuPunisher": 234819300, - "Guest_StudentofKhai": 249757647, - "Guest_OtomoBattlemage": 918160114, - "Guest_OtomoCourier": 1373253378, - "Guest_OtomoSupplyRunner": 1580070577, - "Guest_OtomoScout": 1814051082, - "Guest_OtomoWrestler": 1053571230, - "Guest_OtomoFury": 111319603, - "Guest_Hyottoko": 307080225, - "Guest_Usunoki": 1881339626, - "Guest_Kagemoosha": 1842766119, - "Guest_UdoJin-e": 850816224, - "Guest_TakedaKanryu": 536087422, - "Guest_Tamauji": 818613882, - "Guest_Jikiru": 794167355, - "Guest_Nomoonaga": 849534658, - "Guest_Aiuchi": 515942855, - "Guest_Kurogaso": 1426248002, - "Guest_Ideyoshi": 1814038213, - "Guest_Koto": 1151260427, - "Guest_Usegi": 977549586, - "Guest_Kanago": 1644367227, - "Guest_Kyuto": 1168225979, - "Guest_Haru": 2070048389, - "Guest_Ashikata": 1523446928, - "Guest_Katsumori": 1823914597, - "Guest_Hingen": 1567896261, - "Guest_Yakedo": 502298497, - "Guest_Do-Daga": 1239945714, - "Guest_Maito": 979260804, - "Guest_TonkatsuThug": 1758658397, - "Guest_GobbloreanGuard": 1286210991, - "Guest_BabblingMeints": 413418139, - "Guest_PrinceGobblestone": 1813171676, - "Guest_GobblerMuncher": 1517159487, - "Guest_GobblerGorger": 130736772, - "Guest_GobblerScouter": 1509427587, - "Guest_GobblerGlutton": 1912199781, - "Guest_GobblerScavenger": 136586791, - "Guest_BaronGreebly": 1028182200, - "Guest_BaronRotunda": 457132907, - "PP_DeathMimic": 1811942047, - "Guest_GreenMan": 1126663802, - "Guest_ForestGrump": 1602350320, - "Guest_ErvintheBarbarian": 1671762776, - "Guest_RazortuskWarrior": 1109994549, - "Guest_RazortuskBrawler": 732265321, - "Guest_SplithoofRager": 1922134329, - "Guest_TuskedRaider": 1920114147, - "Guest_SviniBeserker": 1146317608, - "Guest_SviniReaver": 216717251, - "Guest_Shattertusk": 1191456730, - "Guest_SplithoofBarbarian": 296671728, - "Guest_Bloodseeker": 2086598239, - "Guest_Scarsnout": 1831766077, - "Guest_MasterTonkatsu": 1783298894, - "Guest_Grisletusk": 657393295, - "Guest_SplithoofBloodguard": 488382274, - "Guest_BristlehideRaider": 237078958, - "Guest_Gullin": 1656401882, - "Guest_ForestNymph": 812055814, - "Guest_SassafrasMan": 1327049788, - "Guest_RandolfSpellshine": 108808620, - "Guest_BleysFlamerender": 434070106, - "Transformation_Khan": 1398327634, - "Transformation_TheBat": 1675113521, - "MNT_DireWolf": 845578449, - "MNT_YuleMule": 1976182058, - "MNT_LightBlades": 829118450, - "MNT_FlyingSquid": 1573132252, - "PP_Globulin": 467801224, - "PP_BeastBaby": 1807874692, - "PP_SaniBot": 670845902, - "Mount_SwarmSand": 1277669407, - "Guest_Nodnarb": 211478288, - "Guest_LordBramble": 1118781162, - "Guest_Yogash": 506264561, - "Guest_Marcio": 499428996, - "Guest_Procyon": 1115376865, - "Guest_Thunderfin": 2029218563, - "Guest_ArkynMoonblade": 1152775206, - "Guest_CreeCurdWright": 1714953095, - "Guest_DeerMouseRevenant": 315064435, - "Guest_ElanaDarksun": 837982094, - "Guest_KingAlricFateSailor": 1934591130, - "Guest_LaughingCalaca": 984492527, - "Guest_WraithKnight": 620484548, - "Guest_FieryEchoofApep": 484636593, - "Guest_FrostyEchoofApep": 171933154, - "Guest_FalseEchoofApep": 479387377, - "Guest_ChargedEchoofApep": 1229406800, - "Guest_ShrowdengersQhat": 101563303, - "Guest_Scrollkeeper": 643219293, - "Guest_TerrorHound": 753341570, - "Guest_CondemnedMander": 445370758, - "Mnt_SnowStorm": 1491572670, - "Mount_ChimneySweeper": 378571534, - "MNT_PineappleCandyCane": 1630795796, - "Guest_TyphonDustwind": 740849673, - "MNT_StickHorse": 216654744, - "MimicTemplate": 1461219184, - "MNT_Ball_N_Chain": 289720920, - "PP_PeaceDove_A": 1785119671, - "Mount_Gyrocycle": 1495008048, - "PP_BattleMageDragon_A": 1864696711, - "MNT_BattleBeast": 1304449286, - "MNT_SmokeTrails": 387873030, - "Mount_FriendshipHare": 677127330, - "MNT_ButterflySwarm": 383602683, - "PP_EggChick_B": 1959154042, - "MNT_Unicorn": 562210585, - "PP_StuffedUnicorn": 1731641773, - "MNT_ParadeTruck": 2026348978, - "MNT_ParadeTruckXmas": 1017864627, - "MNT_AutumnLeafSwarm": 1540002279, - "PP_GingerbreadMan": 1796172229, - "PP_DecadeDragon": 1819398630, - "MNT_StageShip": 829852992, - "PP_DramaLlama": 255896529, - "PP_HallMinotaur_A": 1492017563, - "Guest_MacDeath": 1526226705, - "Guest_MacDeathUnderstudy": 1731752647, - "Guest_MacLifeUnderstudy": 257466641, - "Guest_MacStormUnderstudy": 8295117, - "MNT_Pantera": 1135198, - "MNT_StagLight": 1908778048, - "MNT_GiantSpider": 1247185021, - "MNT_StagEvil": 872303931, - "PP_BaskHound": 1093866594, - "PP_Marionette": 1688299938, - "PP_Marionette_B": 1688297824, - "Guest_Izft": 996301405, - "Guest_SapotisMinion": 1625665891, - "Guest_CrazedSlave": 1473233468, - "Guest_CharmedSlave": 803043667, - "Guest_EnsorcelledSlave": 40920285, - "Guest_HallServant": 2038116460, - "Guest_SiathePerceiver": 1235571913, - "Guest_Kiwu": 1151177787, - "Guest_NightImp": 1051843424, - "Guest_EvilTrickster": 1035477123, - "Guest_DeepWoodsImp": 1502444054, - "Guest_ForestPest": 802235713, - "Guest_TaintedForestImp": 1030343985, - "Guest_Youkai": 518367729, - "Guest_CarthaginianElephantWarrior": 776293919, - "Guest_IdrisBeast-Taker": 106759521, - "Guest_MikaSkarka": 237956516, - "Guest_Belloq": 757247833, - "Guest_GurtokPiercer": 549466122, - "Guest_GurtokFirebender": 817966523, - "Guest_GurtokDemon": 544070162, - "Guest_GeneralFiretusk": 2073037770, - "Guest_GurtokBarrierDemon": 44657563, - "Guest_BlacktuskShaman": 1009070925, - "Guest_FireDemon": 158367196, - "Guest_DeathOni": 1916642000, - "Guest_JadeOni": 1289517185, - "Guest_PlagueOni": 1464586443, - "Guest_WarOni": 1630196094, - "Guest_BrokenLandMammoth": 1587008312, - "Guest_SunderedSeamMammoth": 1272698721, - "Guest_BullyMammoth": 170705927, - "Guest_Bullhemoth": 146998717, - "Guest_Kogasha": 1909654543, - "Guest_MusuthBerserker": 1741298129, - "Guest_BlackTuskCultist": 1771575961, - "Guest_AksilBlacktrunk": 1253596409, - "Guest_LongdreamerShaman": 1521283133, - "Guest_MuratGreyeyes": 1296814314, - "Guest_ElephantSoldier": 1443670145, - "Guest_DarajaniGuard": 1597288495, - "Guest_Loremaster": 1792470809, - "Guest_Pork": 2069999347, - "Guest_Beans": 97706585, - "MNT_Ox": 1292937747, - "PP_PropellerSquirrel": 1657443894, - "Guest_RasikPridefall": 97921485, - "Guest_AmedrasLightstep": 1818417025, - "MNT_SmokeTrails_Balance": 1358150715, - "MNT_SmokeTrails_Fire": 702971609, - "MNT_SmokeTrails_Ice": 190218501, - "MNT_SmokeTrails_Life": 2045542105, - "MNT_SmokeTrails_Myth": 1276281121, - "MNT_SmokeTrails_Storm": 564954622, - "Guest_Bellosh": 1407013027, - "Guest_AcampiReedfist": 2076527733, - "Guest_AgnettaBroadblade": 14864960, - "Guest_FrostheartRaider": 1574787221, - "Guest_JordaSwordbearer": 1627071850, - "Guest_KasaiBaku": 1153107369, - "Guest_ZoraimeiHelephant": 1002482606, - "Guest_ConscriptedMander": 43811125, - "Firecat_Decade": 409516955, - "MNT_BatGlider": 2086258491, - "Transformation_PlayerHomework": 673389670, - "Transformation_PlayerAttendance": 422287307, - "Transformation_PlayerLecture": 2035625874, - "Transformation_PlayerPopQuiz": 483367038, - "MNT_GingerbreadHorse": 1369242781, - "MNT_NimbariChariot": 1251740392, - "PP_NimbariDog": 1235126828, - "Transformation_PlayerGrandma": 1128332272, - "Transformation_PlayerScionA": 33862367, - "PP_Mushroom": 1568942158, - "MNT_Scooter": 1148167046, - "MNT_Scooter_B": 2079302532, - "MNT_Scooter_C": 1810867076, - "MNT_Scooter_D": 468689796, - "MNT_IceCycle": 415797788, - "Transformation_PlayerScionA02": 33921759, - "Guest_FearoftheFuture": 947210229, - "Guest_FearofGremlins": 405857384, - "Guest_RootGuardian": 922940845, - "Guest_VineThrasher": 172546427, - "Guest_BlightWalker": 1438155154, - "Guest_BriarScourge": 615681851, - "Guest_DreamJabberwock": 907754098, - "Guest_DreamBelloq": 990352002, - "Guest_Voltergeist": 1558128068, - "Guest_SpecialBranch": 1927849418, - "Guest_MutantBriar": 805892802, - "Guest_FeralBriar": 883790223, - "Guest_MaizeMonster": 688905764, - "Guest_DreamShadowwock": 1432458248, - "Mount_Heartboard": 1421972759, - "PP_ChocoBunny": 324797859, - "Mount-PogoFlower": 906659501, - "MNT_AethyrCloud": 1586061078, - "MNT_Fangle": 7846854, - "Guest_StarfallSpider": 1177620831, - "Guest_AshSpider": 1588502553, - "Guest_CorruptedWeaver": 38937211, - "Guest_CrystalCrawler": 1197980149, - "Guest_ShimmerWidow": 1300740128, - "Guest_FacetedSpikespinner": 1939719331, - "Guest_CrystallineQueen": 1999282256, - "Guest_AncientCrystalweaver": 1409608801, - "Guest_FangtoothLavaspinner": 1538042104, - "Guest_VenomousHeatseeker": 1234682482, - "Guest_FireweaveRockbiter": 300743778, - "Guest_MonkeySpider": 754090007, - "Guest_CryptSpider": 1545405304, - "Guest_CommonHouseSpider": 613486002, - "Guest_ArachnaMagnaMagus": 825817937, - "Guest_ArachnaSoldier": 270978709, - "Guest_Gnissa": 1699826178, - "Guest_WebwoodScuttler": 1728611075, - "Guest_SandSpider": 61789007, - "Guest_WebwoodCreeper": 1013382584, - "Guest_Skathi": 1631429165, - "Guest_ArchmagusLorcan": 321146960, - "Guest_CrawleroftheMist": 2076696304, - "Guest_PaintedSpider": 1482115552, - "Guest_GiantSpider": 1545526191, - "Guest_CaveCrawler": 2101587667, - "Guest_RattleCatcher": 1472707326, - "Guest_TrapdoorSpider": 1321643694, - "Guest_RockClinger": 1304266411, - "Guest_InquisitorXimenez": 1053483090, - "Guest_ElderMagus": 1017836836, - "Guest_WardenBenthamic": 18807199, - "Guest_SpiderArchmagus": 387645558, - "Guest_SpiderAdept": 2094873407, - "Guest_InterrogatorRentenius": 1245984179, - "Guest_WarpedWeaver": 495882677, - "Guest_ArachnaSkinner": 281864085, - "Guest_SkinnerConscript": 2028526453, - "Guest_ArachnaGladiator": 2492046, - "Guest_LorcanInitiate": 353311753, - "Guest_Serket": 1871335773, - "Guest_IceWeaver": 2063216026, - "Guest_SpiritSpinner": 525666327, - "Guest_MysteriousCrawler": 218352756, - "Guest_BlackWidow": 1909331619, - "Guest_BrownRecluse": 1146386275, - "Guest_Creeper": 1197442790, - "Guest_GearSpinner": 67020478, - "Guest_Clinker": 1194519062, - "Guest_Clanker": 1194517014, - "Guest_GrandfatherSpider": 1330981335, - "Guest_Spiderling": 1400274461, - "Guest_ManekiWebWalker": 888348786, - "Guest_KoganiDeathCrawler": 276010604, - "Guest_CheliceranCrawler": 1169176517, - "Guest_ArachniteCreeper": 1850534774, - "Guest_ChelicaranStalker": 2057291848, - "Guest_HornedMonkeySpider": 1301514577, - "Guest_GreyOgreSpider": 1533774471, - "Guest_StarburstSpider": 698029451, - "Guest_PaintedCaveMonster": 601315479, - "Guest_RubbleRouser": 220785666, - "Guest_EarthElemental": 435260049, - "Guest_SharpshardWarrior": 1403237237, - "Guest_Firevein": 1220046430, - "Guest_Blackblade": 458130537, - "Guest_VengefulFireheart": 563205004, - "Guest_FirerockStomper": 608552855, - "Guest_BlackrockGuardian": 1663799582, - "Guest_ConfusedSentry": 24655510, - "Guest_SilverSentinel": 1090673683, - "Guest_SilverServant": 84560693, - "Guest_GiantHomunculus": 456098557, - "Guest_PropertyMaster": 229101764, - "Guest_VaultProtector": 185568207, - "Guest_PlatedDefender": 79324363, - "Guest_Avalanche": 761613547, - "Guest_RockReaver": 919912933, - "Guest_Frostmantle": 856308090, - "Guest_GlacierWalker": 131215932, - "Guest_SandBehemoth": 272513357, - "Guest_RunedAnnihilator": 121339936, - "Guest_RunedDevestator": 1611071181, - "Guest_RunedGuardian": 1986312667, - "Guest_CanyonRager": 1123038266, - "Guest_RubbleReaver": 220774678, - "Guest_Boulderbone": 122279242, - "Guest_Nali": 77467516, - "Guest_Gnar": 1151164930, - "Guest_GlacialAvenger": 1181253632, - "Guest_SokkwiKeymaster": 190919624, - "Guest_SandsofTime": 34920273, - "Guest_BladeGolem": 435561523, - "Guest_FrostColossus": 1564686403, - "Guest_IceColossus": 335477257, - "Guest_PollutedEarthWalker": 86045387, - "Guest_CorruptedEarthSpirit": 1135891559, - "Guest_Stonebreaker": 1317905436, - "Guest_StoneElemental": 1715022018, - "Guest_VolcanisGolem": 1904918929, - "Guest_WaterElemental": 1717850987, - "Guest_AshenDeathMonkeySpider": 35356665, - "Guest_DeathMonkeySpider": 1525508507, - "Guest_MotherMonkeySpider": 110317392, - "Guest_DoomMonkey": 1135105500, - "Guest_DreamMorganthe": 907599965, - "Guest_DragonBeetle": 1974635734, - "Guest_SandWalker": 1530843985, - "MNT_PandaMama": 916371162, - "PP_BabyPandas": 778536285, - "PP_FrogPrince": 729975205, - "MNT_PumpkinCarriage": 183672737, - "Mount_Gobbler_B": 1193388729, - "PP_Hamster": 1578040708, - "Guest_Steeleton": 657429968, - "Guest_GoldenWyrm": 311022393, - "MNT_Roc": 1564431869, - "PP_BabyGriffin": 1913686406, - "Transformation_ShadowDPSMob": 936133896, - "Transformation_ShadowTankMob": 305660992, - "Transformation_ShadowHealMob": 356596800, - "Guest_SpiritofIgnorance": 1577360126, - "Guest_FecklessSoul": 519648315, - "Guest_BurnedOutSoul": 312181646, - "Guest_BenightedRevenant": 2131956962, - "Guest_TombLurker": 1901203489, - "Guest_DesertGolem": 543642682, - "Guest_KumoOni": 215822625, - "Guest_SpellwritStalker": 161772776, - "PP_Sun": 1723237840, - "Guest_Leadite": 4480416, - "Mount_FestiveFox": 2125832348, - "PP_FenrisWolf": 1601784680, - "PP_SchoolPiggle": 109782407, - "PP_FenrisWolf_Red": 1597992854, - "PP_FenrisWolf_Teal": 1455058454, - "PP_FenrisWolf_White": 1102186199, - "Transformation_NinjaPig_Fire": 984575055, - "Transformation_BG_RatThief_Myth": 1191155131, - "Transformation_BG_RatThief_Storm": 675891897, - "MNT_Umbrella": 955683437, - "Transformation_BG_Elf_Ice": 1209681129, - "Transformation_BG_Fairy_DarkMinion_Balance": 33521202, - "Transformation_BG_Cyclops_Death": 876023972, - "Transformation_BG_Minotuar_Fire": 1118476387, - "Transformation_BG_WolfWarrior_Storm": 2075594475, - "Transformation_BG_WolfWarrior_Balance": 746159992, - "Transformation_BG_Draconian_Myth": 903606820, - "Transformation_BG_Draconian_Life": 1501291044, - "Transformation_BG_Colossus_Life": 1320377666, - "MNT_DolphinChariot": 102982520, - "MNT_EvilWagon": 685457563, - "MNT_FlyingDutchman": 1176206544, - "PP_SeaHorse": 2024322494, - "PP_EvilTeddy": 1159020925, - "PP_ZombieParrot": 384805107, - "Transformation_BG_Ice_Colossus": 299613211, - "MNT_CarrierBat": 7323333, - "Transformation_BG_Minotaur_MythTempalte": 430330904, - "PP_FeatheredTabby": 452526748, - "Transformation_Detritus01": 1335763402, - "Guest_Metallossus": 335457082, - "MNT_SantaJaws": 464410203, - "MNT_BattleBadger": 532858222, - "Transformation_Shedder01": 2069145892, - "PP_NatureSpirit": 373176286, - "Transformation_Devourer01": 1004421540, - "Guest_TheDevourer": 1591187996, - "Guest_Treeminder": 1093207850, - "Guest_RenegadeDruid": 2087982292, - "Guest_FractalTreeminder": 927174548, - "Guest_UnsettledTreeminder": 486164163, - "Guest_DragonspyreCrusader": 247317280, - "Guest_YoungGreggor": 66068670, - "Guest_GeneralGreyflame": 499924835, - "Guest_OldGreggor": 391726170, - "Guest_PrinceViggor": 853556298, - "Guest_DragonspyreVanguard": 693851565, - "Guest_SilasConviction": 177362659, - "Guest_SilasWeariness": 893431021, - "Guest_SilasRage": 1288904439, - "Guest_SilasDoubt": 1479426285, - "Guest_Lorekeeper": 147779344, - "Guest_FelixPhotomongerIII": 68387506, - "Guest_WarHavox": 1634324022, - "Guest_Mis-assembledSkeleton": 221832082, - "Guest_TreeminderGhost": 200408510, - "Guest_ViggorsDrake": 340449521, - "Guest_BlueNinjaPig": 938539327, - "Guest_RedNinjaPig": 2097962021, - "Guest_OrangeNinjaPig": 625058258, - "Guest_PurpleNinjaPig": 445746449, - "Guest_RitualColossus": 844563319, - "Guest_TinyDragon": 1123127688, - "Guest_RitualSpider": 429827552, - "Guest_RitualDraconian": 837510372, - "Guest_CC_Druid_Warrior_C_01": 55314616, - "Guest_CC_Druid_Wizard_A_01": 1046261169, - "Guest_CC_Druid_Wizard_B_01": 1046244785, - "Guest_CC_Druid_Warrior_A_01": 56363192, - "MNT_Toboggan": 995356805, - "MNT_2P_WickerTreant-001": 2065440944, - "PP_Ratatoskr": 1003497600, - "PP_Trash": 1195047012, - "Guest_CC_Druid_Wizard_D_01": 1046343089, - "MNT_Sunflower": 721091531, - "MNT_Whoopee": 1383311238, - "MNT_Warthog": 8060761, - "PP_ShamRock": 943893325, - "PP_LeapingLeprechaun": 132882517, - "PP_LionCubs": 465759803, - "PP_Tanuki": 670387843, - "MNT_Crane": 433122675, - "MNT_Krokosphinx": 739938754, - "Transformation_BG_Fairy_Life": 1897480818, - "Transformation_LiceDeepSpawnA": 244795720, - "Piggle_Alien": 1761605655, - "PP_JeweledScarab": 620544607, - "Guest_KR_Nymph_DrkMage_D50": 1248526054, - "Guest_KR_Nymph_DrkMage_C50": 1246953190, - "Guest_KR_Nymph_DrkMage_B50": 1247477478, - "Guest_KR_Nymph_DrkMage_A50": 1245904614, - "Guest_EM_Spider_Ash_01": 185724938, - "UFO": 47349, - "PP_Kit10": 326796620, - "PP_Lumi_Tulip": 84119585, - "PP_Lumi_Fern": 117015078, - "PP_Lumi_Violet": 1468797578, - "PP_Lumi_Sunny": 1769236703, - "PP_Lumi_Daisy": 1743454175, - "MNT_CelestianMech": 1238076872, - "MNT_Brontosaurus": 402157167, - "Guest_HG_AKT_Krok_Cyber_A_Balance_25": 1367985604, - "Guest_HG_AKT_Krok_Cyber_A_Balance_50": 1368084932, - "Guest_HG_AKT_Krok_Cyber_A_Balance_75": 1367988676, - "Guest_HG_AKT_Krok_Cyber_A_Balance_100": 1351303620, - "Guest_HG_AKT_Krok_Cyber_A_Balance_130": 1351270852, - "Guest_HG_AKT_Krok_Cyber_A_Fire_25": 976558490, - "Guest_HG_AKT_Krok_Cyber_A_Fire_50": 37034397, - "Guest_HG_AKT_Krok_Cyber_A_Fire_75": 305469850, - "Guest_HG_AKT_Krok_Cyber_A_Fire_100": 573905821, - "Guest_HG_AKT_Krok_Cyber_A_Fire_130": 573905824, - "Guest_HG_AKT_Krok_Cyber_A_Ice_25": 159411377, - "Guest_HG_AKT_Krok_Cyber_A_Ice_50": 541093041, - "Guest_HG_AKT_Krok_Cyber_A_Ice_75": 146828465, - "Guest_HG_AKT_Krok_Cyber_A_Ice_100": 557870241, - "Guest_HG_AKT_Krok_Cyber_A_Ice_130": 960523425, - "Guest_HG_AKT_Krok_Cyber_A_Myth_25": 976187830, - "Guest_HG_AKT_Krok_Cyber_A_Myth_50": 36663729, - "Guest_HG_AKT_Krok_Cyber_A_Myth_75": 305099190, - "Guest_HG_AKT_Krok_Cyber_A_Myth_100": 573535153, - "Guest_HG_AKT_Krok_Cyber_A_Myth_130": 573535156, - "Guest_CL-GolemButler-R9": 780077559, - "Guest_CL-GolemDigger-Boss-R10": 562020288, - "Guest_CL-GolemDigger-R9": 789375095, - "Guest_CL-GolemDigger-Rank8MythBoss-R10": 930527857, - "Guest_CL-GolemWorker-R9-1": 1072815287, - "Guest_CL-FishbotBrown-R9-1": 2006155417, - "Guest_CL-FishbotBrown-R9-2": 395542681, - "Guest_CL-FishbotGold-Boss-R10": 611881707, - "Guest_CL-FishbotGold-R9": 705414492, - "Guest_CL-FishbotYellow-Boss-R10": 23145662, - "Guest_CL-Protector-Black-Boss-R10-2": 679228793, - "Guest_CL-Protector-Gold-R10": 1909636609, - "Guest_CL-Protector-Gold-R9-1": 1909634804, - "Guest_CL-Protector-Gold-R9-2": 1909634932, - "Guest_CL-Protector-Gold-R9-3": 1909635060, - "Guest_CL-Protector-Gold-R9-4": 1909634164, - "Guest_CL-Protector-Purple-R9-Boss": 1889837072, - "Guest_CL-Protector-Purple-R9": 81760161, - "Guest_CL-Protector-Tan-Boss-R10": 912663188, - "Guest_KR_Golem_Worker": 1784607296, - "Guest_Golem-Brass-R7-1": 718939445, - "Guest_Golem-Clockwork-R7": 1161173708, - "Guest_EM_Robot_Batbot_A_01": 1482867950, - "Guest_EM_Robot_Batbot_B_02": 945947886, - "Guest_EM_Robot_Batbot_B_01": 1482818798, - "Guest_EM_Robot_Batbot_B_03": 409076974, - "Guest_EM_Robot_Batbot_B_04": 127793938, - "Guest_EM_Robot_Batbot_B_05": 664664850, - "Guest_EM_Robot_Drone_A_02": 1215188569, - "Guest_EM_Robot_Drone_A_03": 1231965785, - "Guest_EM_Robot_Drone_A_01": 1265520217, - "Guest_EM_Robot_Drone_A_04": 1315851865, - "Guest_EM_Robot_Drone_A_05": 1332629081, - "Guest_EM_Robot_Drone_A_06": 1282297433, - "Guest_EM_Robot_Drone_A_07": 1299074649, - "Guest_EM_Robot_Drone_A_08": 1114525273, - "Guest_EM_Robot_Drone_A_09": 1131302489, - "Guest_EM_Robot_Drone_A_Boss_01": 1960661151, - "Guest_EM_Robot_Drone_A_Boss_02": 1960530079, - "Guest_EM_Robot_Drone_E_01": 1265518169, - "Guest_EM_Robot_Tank_A_01": 1314796420, - "Guest_EM_Robot_Tank_A_02": 1313223556, - "Guest_EM_Robot_Drone_C_02": 1215187545, - "Guest_EM_Robot_Drone_D_03": 1231963225, - "Guest_EM_Robot_Drone_D_01": 1265517657, - "Guest_EM_Robot_Drone_D_02": 1215186009, - "Guest_EM_Robot_Tank_B_01": 1314796468, - "Guest_EM_Robot_Drone_C_01": 1265519193, - "Guest_G14-BP-Golem_Steel_Boss": 2071105129, - "Guest_G14-BP-Golem_Steel_Puzzle": 715790979, - "Guest_Golem-Brass-Elite-L38": 1163662532, - "Guest_Golem-Brass-Elite-L56": 2057562884, - "Guest_Golem-Brass-MBBoss-L48": 1498830732, - "Guest_Golem-Brass-MBBoss-L71": 1498829576, - "Guest_Golem-Brass-MBBoss-L76": 1498828936, - "Guest_Golem-Clockwork-Elite-L54-Metal": 417151527, - "Guest_Golem-Clockwork-Elite-L37": 1961943722, - "Guest_Golem-Clockwork-Elite-L54": 1950147242, - "Guest_Golem-Clockwork-L28": 1561959116, - "Guest_Golem-Clockwork-MBBoss-L37": 973152783, - "Guest_Golem-Clockwork-MBBoss-L69": 1262559759, - "Guest_Golem-Steel-Elite-L39": 1430496717, - "Guest_Golem-Steel-MBBoss-L40": 1229578887, - "Guest_Golem-Steel-MBBoss-L43": 1229579015, - "Guest_Golem-Steel-MBBoss-L50-1": 1231762051, - "Guest_Golem-Steel-MBBoss-L50": 1229578883, - "Guest_Golem-Steel-MBBoss-LXX": 1229583927, - "Guest_Golem-Wood-Elite-L35": 904360756, - "Guest_Golem-Wood-Elite-L37": 1978102580, - "Guest_Golem-Wood-Elite-L50": 1813548236, - "Guest_Golem-Wood-MBBoss-L63": 1392041724, - "Guest_MB-Gauntlet-Golem-Clockwork": 854649045, - "Guest_Spider-Golem-MBBoss-L67": 253352706, - "Guest_Spider-Golem-MBBoss-L96": 253348994, - "Guest_WC-MAW-GasGolem-Minion": 1511013798, - "Guest_WC-MAW-GasGolemLife-Minion": 1306026584, - "Guest_Golem-Steel-L02": 1027229749, - "Guest_Golem-Clockwork-L01": 1409915596, - "Guest_Gauntlet-01-Golem-Steel-Ghost-R8": 402816318, - "Guest_Golem-Wood-L01": 156976035, - "Guest_HG-Clock-ClockworkSpanner-20": 1523370449, - "Guest_HG-Clock-ClockworkSpanner-40": 1523370455, - "Guest_HG-Clock-ClockworkSpanner-60": 1523370453, - "Guest_HG-Clock-ClockworkSpanner-80": 1523370459, - "Guest_HG-Clock-ClockworkSpanner-100": 1523354068, - "Guest_HG-Clock-ClockworkSpanner-120": 1523354004, - "Guest_AQ-Cyclops-Guard": 191361948, - "Guest_AQ_Cyclops_Guard_A_Boss_01": 114747100, - "Guest_CL-Cyclops-Death-R10": 611013866, - "Guest_Cyclops-Death-Boss-R7": 1192370725, - "Guest_Cyclops-Death-Boss-R9": 1192370717, - "Guest_Cyclops-Death-R7": 144593791, - "Guest_GH-Cyclops-Death-R6": 594236619, - "Guest_Cyclops-BlueHelmet-KTBoss-L03": 1720105277, - "Guest_Cyclops-Red-L12": 1816429840, - "Guest_MR_Cyclops02WHelmet_Model_01": 1483732416, - "Guest_Cyclops-Blue-L02": 1633021234, - "Guest_Cyclops-BlueHelmet-WCBoss-L03": 427378332, - "Guest_Cyclops-RedHelmet-WCBoss-L03": 2021269422, - "Guest_HG_Sinbad_Cyclops_25": 911979034, - "Guest_HG_Sinbad_Cyclops_50": 1856261606, - "Guest_HG_Sinbad_Cyclops_75": 861647386, - "Guest_HG_Sinbad_Cyclops_100": 1789152678, - "Guest_HG_Sinbad_Cyclops_130": 178539942, - "Guest_HG_Sinbad_IronSultan_25": 930031152, - "Guest_HG_Sinbad_IronSultan_50": 930051504, - "Guest_HG_Sinbad_IronSultan_75": 930030768, - "Guest_HG_Sinbad_IronSultan_100": 927954864, - "Guest_HG_Sinbad_IronSultan_130": 927942576, - "MNT_SweetRide": 1643297840, - "PP_FrilledDino": 1395342809, - "PP_Celestian": 95679303, - "PP_Sun_Angry": 1955190071, - "PP_Marshmallow": 1220667954, - "MNT_Umbrella_B": 923364822, - "MNT_Tamer": 1050737194, - "PP_BumbleBee_B": 858653433, - "MNT_PunkFlamingo": 1634690818, - "MNT_2P_WoolyRhino": 1395943031, - "PP_Retriever": 72842604, - "PP_Piggle_Caveman": 181356174, - "PP_DecennialDragon": 1396523337, - "MNT_Tiger_Rainbow": 515535412, - "MNT_CarrierGhosts": 1833039309, - "MNT_Sled": 617654308, - "Transformation_BG_RatThief_Death": 30691641, - "Transformation_BG_Elf_Storm": 44352983, - "Transformation_BG_WolfWarrior_Ice": 986304351, - "MNT_CarriorGhost_B": 1768732109, - "MNT_CarriorGhost_C": 1766634957, - "Transformation_BG_Colossus_Fire": 1318803522, - "Transformation_BG_Krok_Balance": 140952965, - "Guest_KM_Gobbler_Skinny_A_11": 773648065, - "Guest_KM_Robot_Candy_A_01": 480414124, - "Guest_KM_Robot_Candy_A_02": 530745772, - "Guest_KM_Robot_Candy_A_03": 513968556, - "Guest_KM_Robot_Candy_A_04": 430082476, - "Guest_KM_Robot_Candy_A_05": 413305260, - "Guest_KM_Gummy_Bear_A_01": 1940905059, - "Guest_KM_Gummy_Bear_D_01": 1940905011, - "Guest_KM_Gummy_Bear_E_01": 1940904995, - "Guest_KM_Gummy_Bear_A_02": 1941429347, - "Guest_KM_Gummy_Bear_D_02": 1941429299, - "Guest_KM_Gummy_Bear_E_02": 1941429283, - "Guest_KM_Gummy_Bear_B_01": 1940905043, - "Guest_KM_Gummy_Bear_B_02": 1941429331, - "Guest_KM_Gummy_Bear_B_03": 1941953619, - "Guest_KM_Gummy_BearHat_A_01": 853226448, - "Guest_KM_Gummy_BearHat_A_02": 853226460, - "Guest_KM_Gummy_Bunny_A_01": 324805042, - "Guest_KM_Gummy_Bunny_C_01": 324806066, - "Guest_KM_Gummy_Bunny_D_01": 324807602, - "Guest_KM_Gummy_Bunny_E_01": 324807090, - "Guest_KM_Gummy_Bunny_F_01": 324808626, - "Guest_KM_Gummy_BunnyUber_A_01": 525565930, - "Guest_KM_Gummy_Worm_A_01": 231044195, - "Guest_KM_Gummy_Worm_B_01": 231044179, - "Guest_KM_Gummy_Worm_C_01": 231044163, - "Guest_KM_Gummy_Worm_A_02": 232617059, - "Guest_KM_Gummy_Worm_B_02": 232617043, - "Guest_KM_Gummy_Worm_C_02": 232617027, - "Guest_KM_Gummy_Bear_F_01": 1940904979, - "Guest_KM_Gummy_Bear_F_02": 1941429267, - "Guest_KM_Gummy_Bunny_C_02": 274474418, - "Guest_KM_Robot_Candy_A_06": 463636908, - "Guest_KM_Alphoi_DarkF_A_01": 475441543, - "Guest_KM_Gobbler_Skinny_A_01": 773648069, - "Guest_KM_Gobbler_Skinny_A_02": 773648197, - "Guest_KM_Gobbler_Skinny_A_03": 773648325, - "Guest_KM_Gobbler_SkinnyF_A_01": 254411012, - "Guest_KM_Gobbler_Skinny_A_04": 773647429, - "Guest_KM_Gobbler_Skinny_A_05": 773647557, - "Guest_KM_Gobbler_Skinny_A_06": 773647685, - "Guest_KM_Gobbler_SkinnyF_A_02": 254423300, - "Guest_KM_Gobbler_Skinny_A_07": 773647813, - "Guest_KM_Gobbler_Skinny_A_08": 773646917, - "Guest_KM_Gobbler_Skinny_A_09": 773647045, - "Guest_KM_Gobbler_SkinnyF_A_03": 254419204, - "Guest_KM_Gobbler_Fat_A_01": 1440595742, - "Guest_KM_Gobbler_Fruit_B_01": 1236446660, - "Guest_KM_Gobbler_Fruit_A_01": 1235922372, - "Guest_KM_Gobbler_Guard_B_01": 1435667582, - "Guest_KM_Gobbler_Skinny_A_10": 773647937, - "Transformation_PlayerBabyCarrot": 1580787628, - "Transformation_PlayerDeadBeet": 1992261692, - "Transformation_PlayerDisparagus": 373797484, - "Transformation_PlayerSnowPeas": 634199102, - "PP_Snowflake": 2036143125, - "PP_GummyBear_Myth": 117787890, - "PP_GummyBear_Death": 236577760, - "PP_GummyBear_Balance": 2100524337, - "PP_GummyBear_Life": 118020336, - "PP_GummyBear_Fire": 117995748, - "PP_GummyBear_Storm": 247437198, - "PP_GummyBear_Ice": 122536570, - "MNT_SnowOwl": 1578473542, - "Guest_KM_Gummy_Bear_Uber_A_01": 1856208859, - "Guest_KM_Gummy_Bear_Uber_A_02": 1856196571, - "MNT_ChocolateMoose": 567538552, - "MNT_Ram_Candied": 1913603720, - "Guest_KM_Spider_Mage_A_01": 1529720120, - "Guest_KM_Spider_Mage_B_01": 1529719608, - "Guest_KM_Spider_Mage_C_01": 1529719096, - "Guest_KM_Spider_Mage_D_01": 1529718584, - "Guest_KM_Spider_Mage_E_01": 1529718072, - "PP_SpriteDark_Balance": 914900728, - "MNT_Tricycle": 991465753, - "Guest_Tri-Gauntlet-Protector-Gold": 2029952053, - "Guest_Tri-Gauntlet-FishbotGold": 130267882, - "Guest_HG-Clock-Clockworker-20": 281216243, - "Guest_HG-Clock-Clockworker-40": 281217011, - "Guest_HG-Clock-Clockworker-60": 281216755, - "Guest_HG-Clock-Clockworker-80": 281215475, - "Guest_HG-Clock-Clockworker-100": 283313523, - "Guest_HG-Clock-Clockworker-120": 283321715, - "Guest_HG-Clock-Lugs-20": 1452756928, - "Guest_HG-Clock-Lugs-40": 1452756960, - "Guest_HG-Clock-Lugs-60": 1452756992, - "Guest_HG-Clock-Lugs-80": 1452756768, - "Guest_HG-Clock-Lugs-100": 1452494736, - "Guest_HG-Clock-Lugs-120": 1452493712, - "Guest_HG-Clock-Lucia-20": 1041451626, - "Guest_HG-Clock-Lucia-40": 1041450602, - "Guest_HG-Clock-Lucia-60": 1041449578, - "Guest_HG-Clock-Lucia-80": 1041456746, - "Guest_HG-Clock-Lucia-100": 1049840746, - "Guest_HG-Clock-Lucia-120": 1049873514, - "Guest_KM_Gummy_Worm_A_03": 232092771, - "MNT_Scooter_E": 200254340, - "PP_WolfWarrior_Balance": 991302673, - "PP_PetGift": 1816280689, - "PP_RatThief": 1390866051, - "Guest_PL_Titan_Small_A": 2015819364, - "Guest_PL_Titan_Large_B": 699791264, - "Guest_PL_Titan_Medium_A": 326730424, - "PP_Draconian": 1631557208, - "MNT_Pantera_Astral": 106092538, - "PP_YearOx": 105653084, - "PP_WolfWarrior_Ice": 1043644935, - "PP_SpriteDark": 2031730054, - "PP_Brudel": 1355697143, - "MNT_Astronomers": 742732792, - "MNT_CouchPotato": 418050932, - "MNT_Flowerfarthing": 1396771051, - "MNT_Astronomers_Blue": 236532779, - "MNT_Astronomers_Rainbow": 4428274, - "PP_Astronomer": 782095961, - "Guest_KM_Gummy_Bunny_B_01": 324806578, - "Guest_KM_DeadBeets_A_01": 1396016635, - "MNT_GummyBunny": 775900704, - "MNT_GummyBunny_A": 775834080, - "MNT_GummyBunny_B": 775836128, - "MNT_GummyBunny_C": 775838176, - "Transformation_BG_Minotaur_Life": 1445109091, - "MNT_Armadillo": 825635826, - "PP_SootGremlin": 768969093, - "PP_RoadRunner": 2057802060, - "MNT_TinyTrolly": 160881792, - "PP_Frog_B": 1530124761, - "MNT_FjordDragon": 129204340, - "Transformation_BG_NinjaPig_Myth": 422914079, - "PP_CorgiPup": 1638656105, - "MNT_Skateboard": 728018224, - "PP_Krokomummy": 326396577, - "MNT_Vroom": 1736383110, - "MNT_PlayerWings_AtralRaven": 1514774167, - "PP_Blimp": 690882397, - "Guest_GH_WoodenSkeletonKey_Boar_Boss_Grey_01": 678055851, - "Guest_GH_StoneSkeletonKey_Boar_Boss_Grey_01": 571670691, - "Guest_GH_GoldSkeletonKey_Boar_Boss_Grey_01": 961728819, - "MNT_Cloud_Promo_AW_01": 2032670992, - "Guest_EM_Hornet_Burner_A_01": 1881854632, - "Guest_EM_Hornet_Burner_A_02": 1881854636, - "Guest_EM_Hornet_Zapper_A_01": 2058539689, - "Guest_EM_Hornet_Zapper_A_02": 2058539685, - "Guest_EM_Ant_Giant_D_01": 379386121, - "Guest_EM_Ant_Giant_A_02": 1768146677, - "Guest_EM_Ant_Giant_A_01": 1768097525, - "Guest_EM_Ant_Giant_B_01": 379386122, - "Guest_KR_Moth_Priest_G_Achera": 381233569, - "Guest_KR_BeeMonsterF_A": 135146211, - "Guest_KR_BeeMonsterF_A_Weak": 1824123847, - "Guest_KR_Bee_Warrior_A": 1569202664, - "Guest_KR_Bee_Warrior_B": 1569204200, - "Guest_KR_Bee_Warrior_C_BossDrones": 1217189631, - "Guest_KR_Bee_Warrior_D": 1569205224, - "Guest_KR_Bee_Warrior_E": 1569204712, - "Guest_KR_Bee_Warrior_G": 1569205736, - "Guest_KR_Bee_Warrior_G_BossFight": 1055035476, - "Guest_KR_Bee_Warrior_H": 1569207272, - "Guest_KR_Bee_Warrior_I": 1569206760, - "Guest_KR_Bee_Warrior_L": 1569209320, - "Guest_KR_Bee_Warrior_M": 1569208808, - "Guest_KR_DragonBeetle_Monster_A": 1777853782, - "Guest_KR_Hornet_Drone_A": 1161590757, - "Guest_KR_Hornet_Drone_B": 1161607141, - "Guest_KR_Hornet_Drone_C": 1161623525, - "Guest_KR_Hornet_Drone_D": 1161639909, - "Guest_KR_Hornet_Drone_E": 1161656293, - "Guest_KR_Lice_DeepSpawn_A": 761604959, - "Guest_KR_Mantis_HunterF_A": 820917199, - "Guest_KR_Mantis_HunterF_B": 871248847, - "Guest_KR_Mantis_HunterF_C": 854471631, - "Guest_KR_Mantis_HunterF_D": 904803279, - "Guest_KR_Mantis_HunterF_F": 938357711, - "Guest_KR_Mantis_HunterF_F_Driftwood": 2053608437, - "Guest_KR_Mantis_HunterF_G": 921580495, - "Guest_KR_Mantis_HunterF_H": 971912143, - "Guest_KR_Mantis_HunterF_I": 955134927, - "Guest_KR_Mantis_HunterF_I_Zuzka": 935478878, - "Guest_KR_Mantis_HunterF_J": 1005466575, - "Guest_KR_Mantis_HunterF_J_Zelda": 886910558, - "Guest_KR_Mantis_HunterF_K": 988689359, - "Guest_KR_Mantis_HunterF_K_LongShd": 1767574336, - "Guest_KR_Mantis_HunterF_L": 1039021007, - "Guest_KR_Mantis_HunterF_M": 1022243791, - "Guest_KR_Mantis_HunterF_P_Bossfight": 1731428987, - "Guest_KR_Mantis_HunterF_Q": 552481743, - "Guest_KR_Mantis_HunterF_R": 602813391, - "Guest_KR_Mantis_HunterF_S": 586036175, - "Guest_KR_Mantis_HunterF_SecondColumnCpt_A": 1354033994, - "Guest_KR_Mantis_HunterF_T": 636367823, - "Guest_KR_Mantis_HunterF_Tribute": 1946371041, - "Guest_KR_Mantis_HunterF_U": 619590607, - "Guest_KR_Mantis_HunterF_V": 669922255, - "Guest_KR_Mantis_HunterF_W": 653145039, - "Guest_KR_Mantis_HunterF_Y": 686699471, - "Guest_KR_Mantis_HunterF_Z_Officer": 206016474, - "Guest_KR_Mantis_ProphetF_B": 1791139097, - "Guest_KR_Mantis_ProphetF_C": 1254268185, - "Guest_KR_Milipede_Warrior_A": 410726278, - "Guest_KR_Milipede_Warrior_B": 410726282, - "Guest_KR_Milipede_Warrior_C": 410726286, - "Guest_KR_Milipede_Warrior_D": 410726290, - "Guest_KR_Milipede_Warrior_H": 410726306, - "Guest_KR_Milipede_Warrior_J": 410726314, - "Guest_KR_Milipede_Warrior_K": 410726318, - "Guest_KR_Moth_Priest_A": 1421532604, - "Guest_KR_Moth_Priest_B": 1421532092, - "Guest_KR_Moth_Priest_C": 1421531580, - "Guest_KR_Moth_Priest_D": 1421531068, - "Guest_KR_Moth_Priest_D_Drepa": 1483393420, - "Guest_KR_Moth_Priest_E": 1421530556, - "Guest_KR_Moth_Priest_F": 1421530044, - "Guest_KR_Mantis_HunterF_Z": 737031119, - "Guest_KR_Roach_AntLion_A": 1860517987, - "Guest_KR_Roach_AntLion_B_Bossfight": 993284625, - "Guest_KR_Roach_AntLion_C": 1861566563, - "Guest_KR_Roach_Cook_A": 259847495, - "Guest_KR_Roach_Glutton_B": 249524334, - "Guest_KR_Roach_WaterBug_A": 1795473599, - "Guest_KR_Roach_WaterBug_B": 1745141951, - "Guest_MR_Beetle_Scarab_A_01": 1789741503, - "Guest_MR_Beetle_Scarab_A_02": 1789741491, - "Guest_MR_Beetle_Scarab_B_01": 1790265791, - "Guest_ZF-Goliath-R10-Boss-01": 7034074, - "Guest_ZF-Goliath-R10-Boss-02": 7034202, - "Guest_ZF-Goliath-R10-Boss-03": 7034330, - "Guest_ZF-Goliath-R10-Boss": 1603576807, - "Guest_ZF-Goliath-R11-Boss-01": 2140449574, - "Guest_ZF-Goliath-R11-Boss-02": 2140449446, - "Guest_ZF-Goliath-R11-Boss-03": 2140449318, - "Guest_ME1_Ant_Aunt_A": 707251855, - "Guest_ME1_Ant_Aunt_B": 1440231794, - "Guest_CC_Fly_Worker_A_01": 1497784524, - "Guest_CC_Roach_Worker_A_01": 1026321602, - "Guest_CC_Roach_Lieutenant_A_01": 1081690299, - "Guest_CC_Roach_Lieutenant_B_01": 1081690295, - "Guest_CC_Roach_Don_A_01": 547836893, - "Guest_CC_Roach_BBug_A_01": 1021150157, - "Guest_CC_Roach_RoachSteady_A_01": 859409247, - "Guest_Draconian-Caster-Yellow-Boss-R8": 1016221419, - "Guest_Draconian-Zombie-R8-2-1": 1226055265, - "Guest_Draconian-Zombie-R8-2": 1226115297, - "Guest_Draconian-Caster-Green-R7": 2143342719, - "Guest_Draconian-Warrior-Gold-Boss-R8": 1044388248, - "Guest_Draconian-Caster-Gray-R7": 95878769, - "Guest_DS-Boss-MAW": 1676071241, - "Guest_Draconian-Zombie-R8-1": 1226115309, - "Guest_Draconian-Warrior-Purple-Boss-R7": 601813964, - "Guest_Draconian-Caster-Tan-Boss-R7": 1973339532, - "Guest_Draconian-Caster-Blue-R6": 1684210173, - "Guest_Draconian-Caster-Yellow-R8": 2129956646, - "Guest_Draconian-Warrior-Red-R7": 521861944, - "Guest_Draconian-Warrior-Tan-R6": 1726416112, - "Guest_Draconian-Warrior-Purple-R8": 1896270341, - "Guest_Draconian-Caster-Blue-Boss-R7": 401581134, - "Guest_Draconian-Zombie-R8": 384497496, - "Guest_GH2-Draconian-HENCH-R10": 1149202878, - "Guest_GH2-Draconian-BOSS-R10": 2114378473, - "Guest_G14-DM-Draconian_Boss": 490246211, - "Guest_G14-DM-Draconian_Storm": 2035239226, - "Guest_G14-DM-Draconian_Ice": 782200563, - "Guest_G14-DM-Draconian_Malistaire_M": 1904691727, - "Guest_G14-DM-Draconian_Malistaire_S": 1904685583, - "Guest_G14-DM-Draconian_Malistaire_D": 1904700943, - "Guest_G14-DM-Draconian_Malistaire": 1904736751, - "Guest_G14-DM-Draconian_Malistaire_B": 1904702991, - "Guest_G14-DM-Draconian_Malistaire_I": 1904695823, - "Guest_G14-DM-Draconian_Malistaire_L": 1904692751, - "Guest_G14-DM-Draconian_Malistaire_F": 1904698895, - "Guest_Draconian-PW-Gauntlet-Boss": 493080513, - "Guest_CC_Draconian_A_01": 551348115, - "Guest_AZ-Parasaur-Undead-E": 2041242846, - "Guest_AZ-Parasaur-drkPriestF-F": 898239615, - "Guest_EM_Parasaur_DrkPriestF_A_01": 1007099606, - "Guest_EM_Parasaur_DrkPriestF_A_02": 1007099605, - "Guest_AZ-Parasaur-drkPriestF-D": 898501759, - "Guest_AZ-Parasaur-drkPriestF-E": 898370687, - "Guest_AZ-Parasaur-drkPriestF-A": 897846399, - "Guest_AZ-Parasaur-Undead-B": 1716853538, - "Guest_AZ-Parasaur-Undead-A": 106240802, - "Guest_AZ-Parasaur-Undead-G": 967501022, - "Guest_AZ-Parasaur-PriestF-D": 1177445525, - "Guest_AZ-Parasaur-Undead-C": 1179982626, - "Guest_AZ-Parasaur-drkPriestF-C": 897584255, - "Guest_AZ-Parasaur-Undead-SkurkisMinion": 1414766977, - "Guest_AZ-Parasaur-drkPriestF-B": 897715327, - "Guest_AZ-Parasaur-drkPriestF-B-Script": 1414847875, - "Guest_AZ_Parasaur_Priest_A_Boss_01": 890025421, - "Guest_AZ-Parasaur-Undead-D": 1504371934, - "Guest_AZ-Pteranodon-Knight-D": 1127364049, - "Guest_AZ-StoneSkeletonKey-Ixcax-Cursedwing": 699239601, - "Guest_AZ-Pteranodon-Knight-E": 1127363921, - "Guest_AZ-Pteranodon-Knight-F": 1127363793, - "Guest_AZ-Pteranodon-Knight-A-PageEvent": 942589002, - "Guest_AZ-StoneSkeletonKey-Minion-Death": 311645584, - "Guest_AZ-Pteranodon-Knight-A": 1127364433, - "Guest_AZ-Raptor-Wraith-A": 585729247, - "Guest_AZ-Raptor-Undead-D": 893623689, - "Guest_G14-HS-Ifzt": 1914694612, - "Guest_AZ-Raptor-Warrior-A": 855749884, - "Guest_AZ-Raptor-Undead-C": 897293705, - "Guest_AZ-Raptor-Undead-B": 896769417, - "Guest_AZ-Raptor-Undead-F": 894672265, - "Guest_AZ-Raptor-Warrior-F": 872527100, - "Guest_AZ-Raptor-Warrior-H": 973190396, - "Guest_AZ-Tritops-Warrior-I": 1942669769, - "Guest_AZ-Tritops-Undead-H": 1215305911, - "Guest_AZ-Tritops-Undead-E": 1164974263, - "Guest_AZ-Tritops-SpkWarrior-A": 860850257, - "Guest_AZ-Tritops-SpkWarrior-B": 860862545, - "Guest_AZ-Tritops-Undead-F": 1181751479, - "Guest_AZ-Tritops-Warrior-K": 868927945, - "Guest_AZ-Tritops-Undead-G": 1198528695, - "Guest_AZ-Tritops-Mummy-A": 1912444877, - "Guest_AZ-Tritops-Warrior-G": 1278555704, - "Guest_AZ-Tritops-Undead-D": 1148197047, - "Guest_AZ-Tritops-Undead-A": 1097865399, - "Guest_AZ-Tritops-SpkChief-B": 2096319577, - "Guest_AZ-Tritops-Mummy-B": 1910872013, - "Guest_AZ-Tritops-Warrior-H": 1405798857, - "Guest_AZ-Dino-Undead-A": 508678670, - "Guest_AZ-Dino-Undead-B": 508679182, - "Guest_AZ-Dino-Undead-D": 508680206, - "Guest_KR_Dino_Undead_A": 1638800628, - "Guest_KR_Dino_Undead_Minion_A": 892450235, - "MNT_HayRideTruck": 75377404, - "MNT_ShadowSpiderForm": 1439860426, - "Transformation_BG_Draconian_Death": 794598804, - "PP_BabyOrca": 1056061090, - "Transformation_BG_Cyclops_Fire": 638854828, - "Transformation_BG_Fairy_Ice": 874078461, - "PP_SpriteLife": 1824998010, - "PP_Raccoon": 1107326808, - "PP_FireKitten": 593048189, - "MNT_SkeletalDuck": 1306273036, - "PP_VampireSquid": 431023109, - "PP_CottonCandy": 891201813, - "PP_ThreeHeadGoat": 1282096939, - "PP_EyeBot": 260189248, - "MNT_DeathBoat": 1444454568, - "MNT_Lemuria": 908974762, - "MNT_DeathBoat_B": 1444456538, - "MNT_DeathBoat_C": 1444456474, - "MNT_Spooky3": 1667775622, - "MNT_PresentBox": 122082000, - "MNT_Orca": 1726961653, - "Guest_LM_Golem_Steel_A_01": 19551853, - "Guest_LM_Golem_Steel_A_02": 36329069, - "Guest_LM_EyeBot_A_01_Death": 380508535, - "Guest_LM_EyeBot_A_01_Myth": 167840640, - "PP_ThreeHeadGoat_B": 1209286443, - "PP_ThreeHeadGoat_C": 1211383595, - "Guest_KR_Eel_Whirligig_A": 1062268734, - "Guest_KR_Goliath_Behemoth_A": 1231139987, - "Guest_KR_Goliath_Behemoth_C": 1231139995, - "Guest_KR_Goliath_Behemoth_D": 1231139975, - "Guest_KR_Goliath_Behemoth_E": 1231139971, - "Guest_KR_Goliath_Behemoth_H": 1231140023, - "Guest_KR_Goliath_Crusher_C": 1651720060, - "Guest_KR_Goliath_Crusher_D": 2106376324, - "Guest_KR_Goliath_Crusher_F": 1032634500, - "Guest_KR_Goliath_Crusher_G": 495763588, - "Guest_KR_Goliath_Crusher_K": 1651720059, - "Guest_AZ-Goliath-Crusher-A": 1874784966, - "Guest_AZ-Goliath-Crusher-B": 264172230, - "Guest_AZ-Goliath-Crusher-C": 801043142, - "Guest_AZ-Goliath-Crusher-D": 809569594, - "Guest_AZ-Goliath-Crusher-E": 272698682, - "Guest_HG_AKT_Butterfly_Time_A_25": 1788523059, - "Guest_HG_AKT_Butterfly_Time_A_50": 1130017331, - "Guest_HG_AKT_Butterfly_Time_A_75": 1809494579, - "Guest_HG_AKT_Butterfly_Time_A_100": 1113240099, - "Guest_HG_AKT_Butterfly_Time_A_130": 1515893283, - "MNT_DeathBoat_D": 1444456922, - "Guest_KR_RhinoBeetle_Sun_A_Bossfight": 47895417, - "Guest_KR_RhinoBeetle_Star_A": 1947510103, - "Guest_KR_RhinoBeetle_Moon_A": 1751275863, - "Guest_ME1_Clockwork_Marine_A": 1481452452, - "Guest_ME1_Clockwork_Marine_B": 1481452068, - "Guest_CC_GoldSkeletonKey_Lice_DeepSpawn_B": 1306132994, - "Guest_KR_DamdinBazar_A_Bossfight": 1333596311, - "Guest_DS-Minion-MAW2": 356796677, - "Guest_KH-Wyrmling-1": 116330513, - "Guest_KH-Wyrmling-20": 183439385, - "Guest_KH-Wyrmling-40": 317657113, - "Guest_KH-Wyrmling-60": 451874841, - "Guest_KH-Wyrmling-80": 586092569, - "Guest_PL_Polar_Bear_Solider_C": 1785662565, - "Guest_Skeleton-Silver-WCBoss-L01": 17766963, - "Guest_Banshee-Red-Elite-L24_B": 1902069117, - "Transformation_BG_WolfWarrior_Myth": 339098032, - "Transformation_BG_RatThief_Balance": 881728218, - "Transformation_BG_Colossus_Storm": 593527492, - "Transformation_BG_Elf_Life": 347405087, - "Transformation_BG_Minotaur_Ice": 1197752291, - "MNT_TRex_B": 660285500, - "PP_SpriteDark_Ice": 2036248504, - "MNT_RollingBall": 1658139390, - "Guest_LM_TRex_Base_A_03": 1378630657, - "Guest_LM_TRex_Base_A_04": 1378745345, - "Guest_LM_TRex_Base_A_05": 1378728961, - "Guest_LM_TRex_Base_A_01": 1378663425, - "Guest_LM_TRex_Base_A_02": 1378647041, - "Guest_LM_TRex_Cyborg_A_01": 151609741, - "Guest_LM_TRex_Cyborg_A_02": 168386957, - "Guest_LM_TRex_Cyborg_A_03": 185164173, - "Guest_LM_TRex_Cyborg_B_01": 151611277, - "Guest_LM_TRex_Cyborg_D_01": 151612301, - "Guest_LM_TRex_Cyborg_E_01": 151611789, - "Guest_LM_TRex_Cyborg_C_01": 151610765, - "Guest_LM_Draconian_Base_A_01": 1607373112, - "Guest_LM_EyeBot_B_01": 1085543056, - "Guest_LM_Drone_Eye_C_01": 916954037, - "Guest_LM_Drone_Eye_D_01": 1230529608, - "Guest_LM_Drone_Eye_D_02": 1230545992, - "Guest_LM_Drone_Eye_D_04": 1230578760, - "Guest_LM_Drone_Eye_D_03": 1230562376, - "Guest_LM_Drone_Eye_A_01": 916954038, - "Guest_LM_Drone_Eye_A_02": 916937654, - "Guest_LM_Drone_Eye_B_01": 1230529611, - "Guest_LM_Drone_Eye_D_05": 1230595144, - "Guest_LM_Drone_Eye_D_07": 1230627912, - "Guest_LM_Drone_Eye_D_08": 1230644296, - "Guest_LM_Drone_Eye_A_03": 916921270, - "Guest_LM_Drone_Eye_A_04": 916904886, - "Guest_LM_Drone_Eye_C_02": 916937653, - "Guest_LM_EyeBot_B_02": 1061940593, - "Guest_LM_EyeBot_B_03": 1085543055, - "Guest_LM_EyeBot_B_04": 1061940594, - "Guest_LM_Drone_Eye_C_03": 916921269, - "Guest_LM_Robot_Kit10_A_01": 199936400, - "Guest_LM_Colossus_Mander_A_01": 2107529026, - "Guest_LM_Robot_Future_A_01": 998840846, - "Guest_LM_Robot_FutureBIG_A_01": 340408568, - "Guest_LM_Robot_FutureBIG_A_02": 340396280, - "Guest_LM_Robot_FutureBIG_A_03": 340400376, - "Guest_LM_Robot_OldOne_A_01": 779070973, - "Guest_LM_Robot_OldOne_A_02": 1315941885, - "Guest_LM_Millipede_Centi_A_01": 168575797, - "Guest_LM_Millipede_Centi_A_03": 168583989, - "Guest_LM_Millipede_Centi_A_02": 168588085, - "Guest_LM_Millipede_Centi_A_04": 168563509, - "Guest_LM_Moth_Sorcerer_A_01": 228191136, - "Guest_LM_Boar_Barbarian_A_01": 1238634912, - "Guest_LM_Boar_Barbarian_A_02": 1238634528, - "Guest_LM_Boar_Barbarian_A_03": 1238634656, - "Guest_LM_Boar_Barbarian_A_04": 1238635296, - "Guest_LM_Boar_Barbarian_A_05": 1238635424, - "Guest_LM_Boar_Chief_A_01": 357051311, - "Guest_LM_Fungus_Humango_A_01": 1398460044, - "Guest_LM_Fungus_Humango_A_02": 1398460172, - "Guest_LM_Treant_Base_A_01": 1658172241, - "Guest_LM_GiantTree_EvilRoots_A_01": 282225934, - "Guest_LM_PA_GreenMan_A_01": 67705044, - "Guest_LM_Fungus_Humango_B_01": 1348128396, - "Guest_LM_Fungus_Humango_A_03": 1398460300, - "Guest_LM_Fungus_Man_C_01": 1648824156, - "Guest_LM_Fungus_Man_C_02": 1650397020, - "Guest_LM_Rhino_Zombie_A_01": 248513993, - "Guest_LM_Malughast_Base_01": 883820436, - "Guest_LM_Malughast_Base_02": 1420691348, - "Guest_LM_Lemur_HierarchF_H_04": 231562115, - "Guest_LM_Malughast_Base_03": 1957562260, - "Guest_LM_Malughast_Base_05": 1263663212, - "Guest_LM_Malughast_Base_06": 726792300, - "Guest_LM_Malughast_Base_08": 346949523, - "Guest_LM_Malughast_Base_09": 883820435, - "Guest_LM_Malughast_Base_04": 1800534124, - "Guest_LM_Minotaur_Skeleton_A_01": 1865122824, - "Guest_LM_Lemur_Wild_B_03": 1783764037, - "Guest_LM_Lemur_HierarchF_H_01": 231541635, - "Guest_LM_Lemur_HierarchF_H_02": 231553923, - "Guest_LM_Mander_Warrior_A_01": 1651245419, - "Guest_LM_Mander_Warrior_A_02": 1651245291, - "Guest_LM_Mander_Warrior_B_01": 1634468203, - "Guest_LM_Mander_Warrior_B_02": 1634468075, - "Guest_LM_Mander_Warrior_A_03": 1651245163, - "Guest_LM_Mander_Warrior_B_03": 1634467947, - "Guest_LM_Mander_Warrior_A_06": 1651245803, - "Guest_LM_Mander_Warrior_A_05": 1651245931, - "Guest_LM_Mander_Mummy_B_01": 1844111521, - "Guest_LM_Mander_Hero_B_01": 865113284, - "MNT_HolidayHippogriff": 938892112, - "MNT_Sabertooth_Ice": 1870381696, - "PP_FenrisWolf_Bantam": 776647759, - "MNT_JetPack": 1986300552, - "MNT_Scooter_F": 1005560708, - "PP_FossaKitten_A": 431748212, - "PP_Elfvis": 147991405, - "Guest_LM_Chicken_Hero_A_01": 1308728300, - "Guest_LM_Horse_Explorer_A_01": 434405482, - "Guest_LM_Duck_HeroineF_A_01": 133199186, - "Guest_LM_Crane_Hero_A_01": 204272548, - "Guest_LM_Deer_HeroineF_A_01": 1800374959, - "Guest_LM_Deer_Hero_A_01": 223109503, - "Guest_LM_Dog_Hero_A_01": 1434615064, - "PP_YearTiger": 777048708, - "MNT_Barrel": 3576425, - "MNT_Krampus": 404117611, - "PP_ChineseTigerCub": 1256032005, - "PP_Lemur": 565774155, - "PP_Robot": 1089075331, - "PP_Capybara": 451970762, - "Guest_LM_Ghoul_Base_A_01": 1822415945, - "Guest_LM_Lemur_HierarchF_H_03": 231549827, - "Guest_LM_Ghoul_Base_A_02": 1820843081, - "Guest_LM_Ghoul_Base_A_03": 1821367369, - "MNT_SpringSoF2022": 1685679511, - "MNT_WarElephant": 875015497, - "PP_Strix": 514230046, - "MNT_Beachball": 791896033, - "MNT_Blank": 633398131, - "MNT_CardboardFlier": 1646636689, - "MNT_LochMonster": 879660722, - "Transformation_BG_Krok_Death": 1395067182, - "Transformation_BG_Draconian_Fire": 1551581732, - "PP_Scotty": 1708580475, - "Guest_KR_Mice_Knight_A": 480101508, - "PP_Peacock": 1178721112, - "MNT_PoodleMoth": 975420235, - "PP_Hummingbird": 624666906, - "PP_WolfWarrior_Myth": 470737416, - "Guest_HG_UFD_Ghost_QueenF_A_100": 795323059, - "Guest_HG_UFD_Ghost_QueenF_A_50": 728230579, - "Guest_HG_UFD_Pirate_UndeadHighland_A_Balance_150": 201145133, - "Guest_HG_UFD_Pirate_UndeadHighland_A_Balance_100": 201144941, - "Guest_HG_UFD_Pirate_UndeadHighland_A_Balance_50": 201177701, - "Guest_HG_UFD_Pirate_UndeadHighland_A_Star_150": 1329885920, - "Guest_HG_UFD_Pirate_UndeadHighland_A_Star_100": 1304720096, - "Guest_HG_UFD_Pirate_UndeadHighland_A_Star_50": 1305768671, - "Guest_HG_UFD_Pirate_UndeadHighland_A_Shadow_150": 1263689971, - "Guest_HG_UFD_Pirate_UndeadHighland_A_Shadow_100": 1263689977, - "Guest_HG_UFD_Pirate_UndeadHighland_A_Shadow_50": 189949177, - "Guest_HG_UFD_Kelpie_Warrior_A_150": 54296095, - "Guest_HG_UFD_Kelpie_Warrior_A_100": 725384735, - "Guest_HG_UFD_Kelpie_Warrior_A_50": 708607503, - "Guest_HG_UFD_Pirate_UndeadHighland_B_150": 1099317831, - "Guest_HG_UFD_Pirate_UndeadHighland_B_100": 25576008, - "Guest_HG_UFD_Pirate_UndeadHighland_B_50": 159793864, - "Guest_HG_UFD_Ghost_QueenF_A_150": 795716275, - "PP_SpiderMinion": 557357331, - "MNT_Vines_Rainbow": 1587180338, - "MNT_YoungDrake": 1279496198, - "PP_Pet_Coconut": 444388490, - "DragonKI": 1490194214, - "PP_Sharkfish": 601628284, - "PP_MimicCake": 48071878, - "Guest_AQ-Bronze-Eagle": 375279744, - "Guest_Spider-Brown-L26": 2128680185, - "Guest_KR_Spider_Giant_D": 744401035, - "Guest_Wizard-Female-Band-Blue-R8": 1447486557, - "Guest_CC_Human_DSCrusaderF_A_01": 726538068, - "Guest_WC_Scarecrow_A_01": 867491011, - "Guest_WC_Banshee_A_01": 1433786463, - "Guest_WC_LostSoul_A_01": 796936146, - "PP_Fairy_Myth": 1117624344, - "PP_SpriteDark_Myth": 1884257976, - "BG_CyclopsLife_A": 944091673, - "Transformation_BG_NinjaPig_Storm": 2005137181, - "Transformation_BG_Fairy_Myth": 1880704188, - "Transformation_BG_Cyclops_Life": 638936708, - "Guest_AQ-Eagle-Praetorian": 1988013806, - "Guest_KM_BabyCarrot_A_01": 766239512, - "Guest_G14-DM-Gargoyle": 282898047, - "Guest_MR_Durvish_Sergeant_A_Boss_01": 1532609325, - "Guest_Cyclops-RedHelmet-KTBoss-L28": 2072371506, - "Guest_EM_Pig_Singer_A_01": 698597069, - "Guest_EM_Pig_Captain_A": 977505995, - "Guest_EM_Pig_Crewman_A": 465576459, - "PP_ChipmunkConductor": 1089819900, - "PP_LuckyCat": 1109326826, - "MNT_ImpCar": 1736092191, - "MNT_Book": 1547655078, - "MNT_JackoLantern": 649919658, - "MNT_Zheng": 742453108, - "MNT_Train": 413197899, - "MNT_Cerberus": 552686313, - "PP_Coconut": 1122741587, - "Transformation_Statue": 1153168084, - "Transformation_Nullity": 622504394, - "PP_Irk": 1825277392, - "Guest_Wyrmling-Fire-R8-1": 531485009, - "MNT_WolfLowPoly_A": 1947890962, - "MNT_WolfLowPoly_B": 1947825426, - "Transformation_BG_RatThief_Fire": 1169330235, - "Transformation_BG_WolfWarrior_Death": 159966683, - "Transformation_BG_Minotaur_Balance": 657855108, - "Transformation_BG_Draconian_Ice": 1907339814, - "Transformation_BG_Colossus_Myth": 1305894338, - "Transformation_NV_Penguin": 1757096851, - "Transformation_NV_Unicorn": 60447768, - "Transformation_NV_Monkey": 1379873688, - "Transformation_NV_Dog": 1961288968, - "PP_Wolf_Storm": 455227171, - "PP_WoodDuck": 1680912895, - "MNT_RockingHorse": 1205280059, - "MNT_SOF2022_Car": 219868812, - "PP_Buffaloon": 796152873, - "MNT_Steamboat": 1969530127, - "MNT_FelizNavidog": 847046394, - "PP_Mustache": 1571079379, - "Guest_DD-DS01-Skeleton-Pirate-20": 226826848, - "Guest_DD-DS01-Skeleton-Pirate-40": 201661024, - "Guest_DD-DS01-Skeleton-Pirate-60": 210049632, - "Guest_DD-DS01-Skeleton-Pirate-80": 251992672, - "Guest_DD-DS01-Skeleton-Pirate": 1994450336, - "Guest_DD-DS01-Shadow-Minion-Fire": 1074864956, - "Guest_DD-DS01-Shadow-Minion-Ice": 1841681214, - "Guest_DD-DS01-Shadow-Minion-Fire-20": 1074880881, - "Guest_DD-DS01-Shadow-Minion-Fire-40": 1074880945, - "Guest_DD-DS01-Shadow-Minion-Ice-20": 96850220, - "Guest_DD-DS01-Shadow-Minion-Ice-40": 96850218, - "Guest_DD-DS01-Shadow-Minion-Fire-60": 1074881009, - "Guest_DD-DS01-Shadow-Minion-Ice-60": 96850216, - "Guest_DD-DS01-Shadow-Minion-Fire-80": 1074880561, - "Guest_DD-DS01-Shadow-Minion-Ice-80": 96850214, - "Guest_SC-SpectreOfB-1": 1471950935, - "Guest_SC-SpectreOfB-20": 1471942759, - "Guest_SC-SpectreOfB-40": 1471942663, - "Guest_SC-SpectreOfB-60": 1471942695, - "Guest_SC-SpectreOfB-80": 1471942855, - "Guest_KH-Skeleton-Ice-60": 2108358962, - "Guest_KH-Skeleton-Ice-40": 2108391730, - "Guest_KH-Skeleton-Ice-20": 2108293426, - "Guest_KH-Skeleton-Ice-1": 2099953970, - "Guest_KH-Skeleton-Ice-80": 2108195122, - "Guest_KH-Undead-Caster-60": 1662604496, - "Guest_KH-Undead-Caster-40": 1661555920, - "Guest_KH-Undead-Caster-20": 1664701648, - "Guest_KH-Undead-Caster-1": 1931564240, - "Guest_KH-Undead-Caster-80": 1667847376, - "Guest_DD-PA01-DeadBeets": 1664999367, - "Guest_DD-PA01-DeadBeets-20": 1901453253, - "Guest_DD-PA01-DeadBeets-40": 2002116549, - "Guest_DD-PA01-DeadBeets-60": 1968562117, - "Guest_DD-PA01-DeadBeets-80": 2069225413, - "Guest_DD-PA01-Disparagus": 1865816461, - "Guest_DD-PA01-Disparagus-20": 573970895, - "Guest_DD-PA01-Disparagus-40": 499770929, - "Guest_DD-PA01-Disparagus-60": 1573512753, - "Guest_DD-PA01-Disparagus-80": 1647712718, - "Guest_DD-PA01-MeanestFlyTrap": 2001546861, - "Guest_DD-PA01-MeanestFlyTrap-20": 1936326253, - "Guest_DD-PA01-MeanestFlyTrap-40": 1936064109, - "Guest_DD-PA01-MeanestFlyTrap-60": 1935801965, - "Guest_DD-PA01-MeanestFlyTrap-80": 1937636973, - "Guest_HG-MD-MacDeath-20": 182639104, - "Guest_HG-MD-MacDeath-40": 182638080, - "Guest_HG-MD-MacDeath-60": 182637056, - "Guest_HG-MD-MacDeath-80": 182636032, - "Guest_HG-MD-MacDeath-100": 174252032, - "Guest_HG-MD-MacDeath-130": 174202880, - "Guest_HG_Sinbad_Skeleton_25": 494617874, - "Guest_HG_Sinbad_Skeleton_50": 42253050, - "Guest_HG_Sinbad_Skeleton_75": 1115994862, - "Guest_HG_Sinbad_Skeleton_100": 2105232646, - "Guest_HG_Sinbad_Skeleton_130": 2105232650, - "Guest_HG_Sinbad_Skeleton_25_02": 492722834, - "Guest_HG_Sinbad_Skeleton_50_02": 44148090, - "Guest_HG_Sinbad_Skeleton_75_02": 1117889902, - "Guest_HG_Sinbad_Skeleton_100_02": 2044247302, - "Guest_HG_Sinbad_Skeleton_130_02": 2044247306, - "Guest_DD-AV01-WyrmBoss": 1648677986, - "Guest_DD-AV01-WyrmBoss-20": 1926730850, - "Guest_DD-AV01-WyrmBoss-40": 1927779426, - "Guest_DD-AV01-WyrmBoss-60": 1928828002, - "Guest_DD-AV01-WyrmBoss-80": 1921487970, - "Guest_RH-Wyrm-Boss-01": 1027277645, - "Guest_RH-Wyrm-Boss-20": 1027277660, - "Guest_RH-Wyrm-Boss-40": 1027277663, - "Guest_RH-Wyrm-Boss-60": 1027277662, - "Guest_RH-Wyrm-Boss-80": 1027277657, - "Guest_HG_Sinbad_Wyrm_25": 1101443356, - "Guest_HG_Sinbad_Wyrm_50": 1101528860, - "Guest_HG_Sinbad_Wyrm_75": 1101445916, - "Guest_HG_Sinbad_Wyrm_100": 1093138204, - "Guest_HG_Sinbad_Wyrm_130": 1093089052, - "Guest_KH-Treant-1": 2001244331, - "Guest_KH-Treant-60": 1968148651, - "Guest_KH-Treant-40": 1968017579, - "Guest_KH-Treant-20": 1967886507, - "Guest_KH-Treant-80": 1967231147, - "Guest_DD-PA01-ForestGrump": 1969685870, - "Guest_DD-PA01-ForestGrump-20": 714666713, - "Guest_DD-PA01-ForestGrump-40": 714666689, - "Guest_DD-PA01-ForestGrump-60": 714666697, - "Guest_DD-PA01-ForestGrump-80": 714666737, - "Guest_DD-PA01-ForestNymphs": 227087348, - "Guest_DD-PA01-ForestNymphs-20": 227023552, - "Guest_DD-PA01-ForestNymphs-60": 227023040, - "Guest_DD-PA01-ForestNymphs-80": 227024832, - "Guest_SC-Pig-BalanceWizardA-1": 475456968, - "Guest_SC-Pig-BalanceWizardA-20": 477550024, - "Guest_SC-Pig-BalanceWizardA-40": 477541832, - "Guest_SC-Pig-BalanceWizardA-60": 477533640, - "Guest_SC-Pig-BalanceWizardA-80": 477525448, - "Guest_SC-Pig-BalanceWizardB-1": 475456964, - "Guest_SC-Pig-BalanceWizardB-20": 477550020, - "Guest_SC-Pig-BalanceWizardB-40": 477541828, - "Guest_SC-Pig-BalanceWizardB-60": 477533636, - "Guest_SC-Pig-BalanceWizardB-80": 477525444, - "Guest_SC-Pig-BalanceWizardC-1": 475456960, - "Guest_SC-Pig-BalanceWizardC-20": 477550016, - "Guest_SC-Pig-FireWizard-1": 2048176291, - "Guest_SC-Pig-FireWizard-20": 2031399073, - "Guest_SC-Pig-FireWizard-40": 2132062369, - "Guest_SC-Pig-FireWizard-60": 2098507937, - "Guest_SC-Pig-FireWizard-80": 1930735777, - "Guest_SC-Pig-IceWizardF-1": 1178687744, - "Guest_SC-Pig-IceWizardF-20": 1161910526, - "Guest_SC-Pig-IceWizardF-40": 1128356094, - "Guest_SC-Pig-IceWizardF-60": 1094801662, - "Guest_SC-Pig-IceWizardF-80": 1329682686, - "Guest_SC-Pig-MythWizard-1": 2048492725, - "Guest_SC-Pig-MythWizard-20": 2031715511, - "Guest_SC-Pig-MythWizard-40": 2132378807, - "Guest_SC-Pig-MythWizard-60": 2098824375, - "Guest_SC-Pig-MythWizard-80": 1931052215, - "Guest_SC-Pig-StormWizardF-1": 1743849420, - "Guest_SC-Pig-StormWizardF-20": 1743851464, - "Guest_SC-Pig-StormWizardF-40": 1743851488, - "Guest_SC-Pig-StormWizardF-60": 1743851480, - "Guest_SC-Pig-StormWizardF-80": 1743851504, - "Guest_KH-Pig-Bandit-Lord-1": 1080496628, - "Guest_KH-Pig-Bandit-Lord-20": 543625652, - "Guest_KH-Pig-Bandit-Lord-40": 530116172, - "Guest_KH-Pig-Bandit-Lord-60": 1603857996, - "Guest_KH-Pig-Bandit-Lord-80": 1617367475, - "Guest_KH-Pig-Bandit-Ninja-1": 1945100907, - "Guest_KH-Pig-Bandit-Ninja-20": 1945102951, - "Guest_KH-Pig-Bandit-Ninja-40": 1945102975, - "Guest_KH-Pig-Bandit-Ninja-60": 1945102967, - "Guest_KH-Pig-Bandit-Ninja-80": 1945102927, - "Guest_KH-Pig-War-Caster-1": 656859765, - "Guest_KH-Pig-War-Caster-20": 606528119, - "Guest_KH-Pig-War-Caster-40": 572973687, - "Guest_KH-Pig-War-Caster-60": 539419255, - "Guest_KH-Pig-War-Caster-80": 774300279, - "Guest_KH-Pig-War-Warrior-Boss-1": 16342355, - "Guest_KH-Pig-War-Warrior-Boss-20": 2143724205, - "Guest_KH-Pig-War-Warrior-Boss-40": 2118558381, - "Guest_KH-Pig-War-Warrior-Boss-60": 2126946989, - "Guest_KH-Pig-War-Warrior-Boss-80": 2101781165, - "Guest_SC-Pig-BalanceWizardC-40": 477541824, - "Guest_SC-Pig-BalanceWizardC-60": 477533632, - "Guest_SC-Pig-BalanceWizardC-80": 477525440, - "Guest_KH-Helephant-Death-20": 1109389719, - "Guest_KH-Helephant-Death-40": 2111835753, - "Guest_KH-Helephant-Death-60": 1038093929, - "Guest_KH-Helephant-Death-80": 35647896, - "Guest_KH-GreyOgre-Spider-1": 356368404, - "Guest_KH-GreyOgre-Spider-20": 1966981204, - "Guest_KH-GreyOgre-Spider-40": 1254244268, - "Guest_KH-GreyOgre-Spider-60": 180502444, - "Guest_KH-GreyOgre-Spider-80": 893239379, - "Guest_HG_Sinbad_Colossus_25": 1190802829, - "Guest_HG_Sinbad_Colossus_50": 1493551719, - "Guest_HG_Sinbad_Colossus_75": 419809907, - "Guest_HG_Sinbad_Colossus_100": 653933977, - "Guest_HG_Sinbad_Colossus_130": 653933973, - "Guest_NV_Dino_AberrantUndead_A_01": 2035087398, - "Guest_NV_Hellephant_Aberrant_A_01": 989522333, - "Guest_NV_Hellephant_Aberrant_A_02": 989522334, - "Guest_NV_BananaSpider_Base_A_01": 1585810541, - "Guest_NV_BananaSpider_Base_A_02": 1581616237, - "Guest_NV_BananaSpider_Base_A_03": 1577421933, - "Guest_NV_BananaSpider_Base_A_04": 1606782061, - "Guest_NV_BananaSpider_Base_A_05": 1602587757, - "Guest_NV_Wyrm_Aberrant_A_01": 16108415, - "Guest_NV_Monkey_Zombie_A_01": 1854775300, - "Guest_NV_Monkey_Zombie_A_02": 1854775304, - "Guest_NV_Monkey_Zombie_A_03": 1854775308, - "Guest_NV_Monkey_Zombie_A_04": 1854775312, - "MNT_Flag_Monster": 867940056, - "Guest_SKB_WY_DarkBramble_A_30": 2046798767, - "Guest_SKB_WY_DarkBramble_A_50": 2046797999, - "Guest_SKB_WY_DarkBramble_A_100": 2044701359, - "Guest_SKB_WY_DarkBramble_A_150": 2044721839, - "Guest_SKB_GH_Boar_A_30": 1547921275, - "Guest_SKB_WC_SpiritIgnorance_A_50": 1488876986, - "Guest_SKB_WC_SpiritIgnorance_A_100": 2025748410, - "Guest_SKB_WC_SpiritIgnorance_A_150": 2025748413, - "Guest_SKB_DS_Loremaster_A_50": 527751539, - "Guest_SKB_DS_Loremaster_A_100": 527817059, - "Guest_SKB_DS_Loremaster_A_150": 527817699, - "Guest_SKB_CL_Dan_A_50": 637418706, - "Guest_SKB_CL_Dan_A_60": 1510064941, - "Guest_SKB_CL_Dan_A_100": 637410512, - "Guest_SKB_CL_Dan_A_150": 637410432, - "Guest_SKB_AV_Spectre_A_50": 2104631195, - "Guest_SKB_AV_Spectre_A_100": 2102534041, - "Guest_SKB_AV_Spectre_A_150": 2018647961, - "Guest_SKB_MS_Samoorai_A_50": 2029641915, - "Guest_SKB_MS_Samoorai_A_100": 2096750843, - "Guest_SKB_MS_Samoorai_A_150": 587603717, - "Transformation_BG_Krok_StromTemplate": 1317694546, - "PP_ChineseRabbit": 382941643, - "PP_ParadeElf": 1036247808, - "MNT_HeartSwarm": 918199310, - "MNT_SpringSOF2023": 1417178519, - "Transformation_BG_Elf_Death2Template": 1606653101, - "MNT_GummyBunny_D": 775840224, - "Transformation_BG_Krok_Life2Template": 747486212, - "PP_Flame": 959186933, - "PP_YachtRock": 1500927358, - "PP_PirateYachtRock": 1227549100, - "PP_ChickenMonster": 1845706534, - "PP_SnowHoppers_B": 1496460038, - "PP_SnowHoppers_C": 1496457990, - "MNT_Oarfish": 29720265, - "PP_RingTailedCat": 993143427, - "MNT_Fanboat": 19347694, - "MNT_MiniSub": 298697910, - "PP_DumboOctopus": 966435639, - "PP_Glowbug_Balance": 1405529577, - "PP_Glowbug_Death": 405117107, - "PP_Glowbug_Fire": 651698987, - "PP_Glowbug_Ice": 2124926395, - "PP_Glowbug_Life": 601367299, - "PP_Glowbug_Myth": 592978024, - "PP_Glowbug_Storm": 61190446, - "PP_DumboOctopus_B": 968448823, - "PP_DumboOctopus_C": 968383287, - "PP_BananaSpider_01": 1074383522, - "PP_BananaSpider_02": 1080674978, - "PP_BananaSpider_03": 1078577826, - "Guest_HG_NM_BeardDragon_Base_C_01": 82913785, - "Guest_HG_NM_BeardDragon_Base_C_02": 82913786, - "Guest_HG_NM_BeardDragon_Base_C_03": 82913787, - "Guest_HG_NM_Glowbug_Base_C_01": 544959703, - "Guest_HG_NM_Glowbug_Base_C_02": 544955607, - "Guest_HG_NM_Glowbug_Base_C_03": 544951511, - "Guest_HG_NM_Glowbug_Base_C_04": 544947415, - "Guest_HG_NM_Glowbug_Base_C_05": 544943319, - "Guest_HG_NM_Glowbug_Base_C_06": 544939223, - "Guest_HG_NM_Glowbug_Base_C_07": 544935127, - "MNT_BouquetofFlowers": 1511180560, - "PP_Piggle_Rainbow": 91081383, - "MNT_Sabertooth_FlameSaber": 1949516909, - "Guest_HG_NM_BeardDragon_Base_A_01": 83175929, - "Guest_HG_NM_BeardDragon_Base_A_02": 83175930, - "Guest_HG_NM_BeardDragon_Base_A_03": 83175931, - "Guest_HG_NM_BeardDragon_Base_B_01": 83044857, - "Guest_HG_NM_BeardDragon_Base_B_02": 83044858, - "Guest_HG_NM_BeardDragon_Base_B_03": 83044859, - "Guest_HG_NM_Glowbug_Base_B_01": 8088791, - "Guest_HG_NM_Glowbug_Base_B_02": 8084695, - "Guest_HG_NM_Glowbug_Base_B_03": 8080599, - "Guest_HG_NM_Glowbug_Base_B_04": 8076503, - "Guest_HG_NM_Glowbug_Base_B_05": 8072407, - "Guest_HG_NM_Glowbug_Base_B_06": 8068311, - "Guest_HG_NM_Glowbug_Base_B_07": 8064215, - "Guest_HG_NM_Glowbug_Base_A_01": 1618701527, - "Guest_HG_NM_Glowbug_Base_A_02": 1618697431, - "Guest_HG_NM_Glowbug_Base_A_03": 1618693335, - "Guest_HG_NM_Glowbug_Base_A_04": 1618689239, - "Guest_HG_NM_Glowbug_Base_A_05": 1618685143, - "Guest_HG_NM_Glowbug_Base_A_06": 1618681047, - "Guest_HG_NM_Glowbug_Base_A_07": 1618676951, - "MNT_SummerSOF2023": 1636120912, - "PP_Cyclops_Fire": 7821755, - "PP_Death_Elf": 1535744155, - "PP_Newt": 1438123483, - "PP_Echidna": 735439358, - "MNT_Wombat": 580544786, - "Transformation_BG_NinjaPig_Balance": 1799661438, - "Transformation_BG_Cyclops_Ice": 647975824, - "Transformation_BG_Minotaur_Storm": 1005667041, - "Transformation_GR_Parasaur_Priest_Ice": 1101466351, - "Transformation_GR_Parasaur_Priest_Fire": 892193041, - "Transformation_GR_Parasaur_Priest_Storm": 1525882116, - "Transformation_GR_Parasaur_Priest_Balance": 1127637476, - "Guest_GR_AZ_Parasaur_Undead_B_01": 322587487, - "MNT_WitchCat": 1167097888, - "PP_RolyPoly": 578538330, - "PP_Capybara_B": 628131532, - "MNT_OutbackTruck": 1815527801, - "PP_PoodleSailor": 2137704795, - "MNT_PolarianCannon": 2103490826, - "PP_TazmanianDevil": 1773548765, - "Guest_SKB_AZ_Ixcax_A_100": 556560994, - "Guest_SKB_AZ_Ixcax_A_150": 556610146, - "Guest_SKB_AZ_Ixcax_A_50": 564951650, - "MNT_GhoulsShovel": 2035610946, - "PP_CrystalBdayDragon": 1897078804, - "PP_SunGobblerBall": 1522469440, - "PP_Sun_GreenGobbler": 1337690394, - "MNT_2P_AutumnTreant": 1063435527, - "PP_AutumnTreant": 561077291, - "MNT_FlyingMonkey": 490807393, - "PP_BabyPlantMonster": 2076646587, - "MNT_PlantCreature_A": 1802823265, - "Transformation_BG_Fairy_Fire": 2065252898, - "Transformation_BG_Krok_Myth": 277926564, - "Transformation_BG_RatThief_Life": 1167758651, - "Transformation_BG_Elf_Balance": 1628238937, - "Transformation_BG_Colossus_Death": 184392004, - "Transformation_FortressPod": 139738335, - "P_Wombat_POLYMORPH": 1132264953, - "PP_SharkWobbegong": 1994247222, - "PP_ChineseNYDragon": 1126999021, - "PP_JingleBellRock": 1076037919, - "PP_Krok_Mummy_Myth": 438487583, - "PP_Cyclops_Ice": 1476966187, - "MNT_OutbackTruckB": 1813299577, - "MNT_EvilSnowmanBall": 758818712, - "MNT_ThanksgivingGobbler": 1760011910, - "Guest_WL_Ghost_LostSoul_A_01": 1224111704, - "Guest_WL_Kangaroo_Drover_F_01": 2025562931, - "Guest_WL_Spider_WarriorMage_C_01": 1296557888, - "Guest_WL_Spider_WarriorMage_C_02": 1430775616, - "Guest_WL_Spider_WarriorMage_C_03": 1564993344, - "Guest_WL_Spider_WarriorMage_C_04": 1699211072, - "Guest_WL_Spider_WarriorMage_C_05": 1833428800, - "Guest_WL_Spider_WarriorMage_C_06": 1967646528, - "Guest_WL_Spider_WarriorMage_C_07": 2101864256, - "Guest_SKB_KR_Lightbane_A_100": 837930677, - "Guest_SKB_KR_Lightbane_A_160": 837930669, - "Guest_SKB_KR_Lightbane_A_50": 1309555019, - "Transformation_WL_Phantasmanian_DevilTemplate": 384891502, - "MNT_2P_LeaflessTreant": 623083386, - "PP_Minotaur_Ice": 700151737, - "MNT_Scooter_G": 737125252, - "Guest_WL_Frog_Owner_B_01": 767864686, - "MNT_SilentKnight": 646654812, - "Guest_WL_TRex_Base_A_01": 1842562033, - "Guest_WL_TRex_Base_B_01": 304921616, - "PP_Groundhog": 108643243, - "Guest_NV_Unicorn_Guard_C_04": 1845621, - "MNT_EmuPunk": 647315080, - "MNT_HeartBalloon": 798826551, - "PP_ValentineHoppers": 968693964, - "MNT_SpringSOF2024_Heckhound": 453640548, - "Guest_AQ-Centaur-Arion": 1856508139, - "Guest_AQ-Centaur-Artemis": 333294011, - "Guest_AQ-Horse-Sea": 724896200, - "Guest_KR_Horse_Warlord_A_Bossfight": 1302284326, - "Guest_KR_Horse_Warlord_A_BossfightSP": 1300726822, - "Guest_KR_Zebra_Thrall_A": 1250265667, - "Guest_KR_Zebra_Thrall_A_Boss_Minion": 345677011, - "Guest_KR_Zebra_Thrall_A_Gallery": 1520303483, - "Guest_KH-Gray-Horse-40": 1802231403, - "Guest_KH-Gray-Horse-20": 1802231307, - "Guest_G14-BP-Unicorn_Fencer_Boss": 1602044152, - "Guest_Horse-Merc-Brown-L37": 1831175255, - "Guest_Horse-Merc-Tan-L39": 1363854837, - "Guest_Horse-Merc-Tan-L39-1": 2085275127, - "Guest_Horse-Merc-Gray-MSBoss-L39": 1863452041, - "Guest_Horse-Merc-Gray-L39": 2039135564, - "Guest_Horse-Merc-Tan-L38": 1363330549, - "Guest_WC_Horse_Mercenary_Roberto": 891924774, - "Guest_ZF-Nathi-Yellowstripe-R11": 1505157721, - "Guest_ZF-TseTse-Main-R11-Boss": 114927854, - "Guest_ZF-TseTse-Elephant-R11": 894147273, - "Guest_ZF-Zebra-Impi-Raider-R11": 1378242919, - "Guest_ZF-Zebra-Warrior-Male-R10-1": 1791906265, - "Guest_ZF-Zebra-Senzan-Zebu-R10-Boss": 373712721, - "Guest_ZF-Zebra-Shaka-Zebu-R10-Boss": 662142985, - "Guest_ZF-Zebra-Warrior-Female-R10-02": 1507835670, - "Guest_ZF-Zebra-Warrior-Male-R10": 47075786, - "Guest_ZF-Zebra-Warrior-Male-R10-02": 1791906714, - "Guest_ZF-Zebra-Warrior-Male-R10-03": 1791906746, - "Guest_ZF-Zebra-Warrior-Male-R10-05": 1791906682, - "Guest_ZF-Zebra-Warrior-Male-R10-2": 1791906268, - "Guest_ZF_Zebra_Spectral_Guardian-R11": 431970996, - "Guest_CC_Horse_Apoc_A_01": 644668374, - "Guest_CC_Horse_Apoc_B_01": 644668390, - "Guest_CC_Horse_Apoc_C_01": 644668406, - "Guest_CC_Horse_Apoc_D_01": 644668294, - "Guest_CC_Horse_Apoc_D_02": 645192582, - "Guest_CC_Unicorn_CorsairF_B_01": 1378532506, - "Guest_CC_Unicorn_Duelist_B_01": 64891542, - "Guest_CC_Unicorn_Guard_B_01": 1075063242, - "Guest_CC_Unicorn_Guard_B_02": 1075063238, - "Guest_CC_Unicorn_Guard_B_03": 1075063234, - "Guest_NV_Horse_HordeSoldier_A_01": 504396960, - "Guest_NV_Horse_HordeSoldier_A_02": 101743776, - "Guest_NV_Horse_HordeOfficer_A_01": 343600992, - "Guest_NV_Horse_HordeSoldier_A_03": 235961504, - "Guest_NV_Horse_HordeOfficer_A_02": 209383264, - "Guest_NV_Horse_AberrantTungAk_A_01": 952263441, - "Guest_NV_Horse_AberrantTungAk_A_02": 952263537, - "Guest_NV_Horse_TungAk_B_01": 1194718672, - "Guest_NV_Horse_TungAk_B_02": 657847760, - "Guest_NV_Horse_HordeOfficer_B_01": 343596896, - "Guest_NV_Horse_HordeOfficer_B_02": 209379168, - "Guest_NV_Horse_TungAk_A_01": 1194669520, - "Guest_NV_Unicorn_Guard_C_01": 1845601, - "Guest_NV_Unicorn_Guard_A_01": 797025, - "Guest_NV_Unicorn_AberrantGuard_A_01": 739851573, - "Guest_NV_Unicorn_Guard_C_02": 1845613, - "Guest_NV_Unicorn_Guard_C_03": 1845609, - "Guest_NV_Unicorn_AberrantGuard_A_02": 739848501, - "Guest_NV_Unicorn_Guard_A_02": 797037, - "Guest_NV_Unicorn_AberrantGuard_A_03": 739849525, - "Guest_NV_Unicorn_AberrantGuard_A_04": 739846453, - "Guest_NV_Horse_HordeOfficer_A_03": 75165536, - "Guest_NV_Horse_HordeSoldier_A_04": 907050144, - "Guest_NV_Horse_HordeSoldier_A_05": 1041267872, - "Guest_NV_Horse_HordeSoldier_C_01": 504388768, - "Guest_HG_TRAIN_Horse_MustangFencerF_A_Balance_50": 871182987, - "Guest_HG_TRAIN_Horse_MustangFencerF_A_Balance_75": 871176715, - "Guest_HG_TRAIN_Horse_MustangFencerF_A_Life_100": 886489645, - "Guest_HG_TRAIN_Horse_MustangFencerF_A_Balance_25": 871177035, - "Guest_HG_TRAIN_Horse_MustangFencerF_A_Balance_100": 872231819, - "Guest_HG_TRAIN_Horse_MustangFencerF_A_Life_140": 1960231469, - "Guest_HG_TRAIN_Horse_MustangFencerF_B_100": 2089957067, - "Guest_HG_TRAIN_Horse_MustangFencerF_A_Life_25": 1700184589, - "Guest_HG_TRAIN_Horse_MustangFencerF_A_Life_50": 920044045, - "Guest_HG_TRAIN_Horse_MustangFencerF_A_Life_75": 1742127629, - "Guest_HG_TRAIN_Horse_MustangFencerF_A_Balance_140": 872223627, - "Guest_HG_TRAIN_Horse_MustangFencerF_B_50": 2089952970, - "Guest_HG_TRAIN_Horse_MustangFencerF_B_75": 57530654, - "Guest_HG_TRAIN_Horse_MustangFencerF_B_140": 2089957099, - "Guest_HG_TRAIN_Horse_MustangFencerF_B_25": 1131272477, - "Guest_LM_Horse_Explorer_A_01_Hard": 1711837140, - "Guest_WL_Unicorn_Guard_A_01": 1074538935, - "Guest_WL_Unicorn_CorsairF_E_01": 1378532603, - "Guest_WL_Unicorn_Warlord_A_01": 1321310496, - "Guest_KH-Gray-Horse-1": 1802239547, - "Guest_KH-Gray-Horse-60": 1802231371, - "Guest_KH-Gray-Horse-80": 1802231467, - "Transformation_BG_NinjaPig_Ice": 186026527, - "Transformation_BG_Cyclops_Storm": 897316984, - "PP_MinotaurBalance": 1344665951, - "PP_OrthusMoon": 1804503950, - "PP_CoolPineapple": 1149318906, - "PP_TwinkleStars": 766378011, - "PP_Scroll": 1613313091, - "PP_Colossus_Death": 40713075, - "PP_ColossusDeath": 530964029, - "PP_KILiveRock": 1975550570, - "MNT_Outrigger": 1417937299, - "MNT_BookWyrm": 2080129190, - "MNT_RacingSnail": 1996220963, - "MNT_UmbrellaCloud": 145762615, - "PP_PropellerCat": 2094718580, - "MNT_TRex_Shirt": 586746001, - "MNT_Swarm_Bee": 1625228695, - "MNT__CelestialMoon": 968360256, - "Guest_ME_Sinbad_IronSultan_150": 2001676223, - "Guest_ME_Sinbad_Cyclops_150": 1968943689, - "Guest_ME_Sinbad_Skeleton_150": 1031490819, - "Guest_ME_Sinbad_Colossus_150": 1727675806, - "Guest_ME_Sinbad_Skeleton_150_02": 970505475, - "Guest_ME_Sinbad_Wyrm_150": 19314443, - "Guest_ZF-Zebra-Inzinzebu-Bandit-R11": 430262550, - "Guest_ZF-Zebra-Warrior-Male-R10-04": 1791906650, - "PP_TwinkleStars_02": 805304347, - "PP_TwinkleStars_03": 803207195, - "PP_TwinkleStars_01": 799012891, - "Transformation_BodleianHarrow": 609627870, - "Guest_HG_Gryphon_OwlStatue_A_01_L170": 77756046, - "Guest_HG_Gryphon_OwlStatue_A_02_L170": 73561742, - "Guest_HG_Gryphon_OwlStatue_A_01_L100": 77752974, - "Guest_HG_Gryphon_OwlStatue_A_02_L100": 73558670, - "Guest_HG_Gryphon_OwlStatue_A_01_L50": 78277134, - "Guest_HG_Gryphon_OwlStatue_A_02_L50": 74082830, - "MNT_SummerSOF2024_JudgementWings": 1078163967, - "MNT_Pegasus_E": 131704054, - "MNT_PolarisHero": 665176426, - "PP_Duckana": 1128961578, - "PP_QueenBee": 833291695, - "Transformation_BG_Draconian_Balance": 2078940682, - "Transformation_BG_WolfWarrior_Fire": 1762248682, - "Transformation_BG_Minotaur_Death": 309090657, - "PP_WolfWarrior_Fire": 685685256, - "PP_WolfWarrior_Death": 1857202724, - "Guest_ME-GTAV01-WyrmBoss-150": 1482208618, - "Guest_ME_SpectreOfB_L150": 684104791, - "Guest_ME_MD_MacDeath_L150": 1128977615, - "Guest_ME_Pig_BalanceWizardA_L150": 959913724, - "Guest_ME_Pig_BalanceWizardB_L150": 959913712, - "Guest_ME_Pig_BalanceWizardC_L150": 959913716, - "Guest_ME_Pig_FireWizard_L150": 964392255, - "Guest_ME_Pig_IceWizardF_L150": 86941026, - "Guest_ME_Pig_MythWizard_L150": 964051241, - "Guest_ME_Pig_StormWizardF_L150": 2016383602, - "Guest_ME_Clock_Clockworker_L150": 1424569772, - "Guest_ME_Clock_ClockworkSpanner_L150": 1966824609, - "Guest_ME_Clock_Lugs_L150": 370290904, - "Guest_ME_Clock_Lucia_L150": 1857768409, - "MNT_EvilChair": 339577702, - "PP_Cyclops_Storm": 621464512, - "PP_Krokomummy_Life": 462432735, - "Transformation_CL_Rematch_Crustacean": 1686865207, - "Transformation_CL_Rematch_Protector": 1893951532, - "Transformation_CL_Rematch_Angler": 120412196, - "Transformation_CL_Rematch_Piscean": 1624106070, - "Transformation_Zebra_Template": 1900548493, - "Transformation_Zebra2_Template": 325099540, - "Transformation_Zebra3_Template": 325099524, - "Transformation_Zebra4_Template": 325099636, - "MNT_SweetSixteenBirthday": 1009398096, - "MNT_2P_TRex_Bones": 1618543266, - "MNT_SpringBumperCar": 1725007788, - "PP_WinterGoblin": 2025052443, - "PP_OnyxAnubis": 1552575189, - "PP_OttomanCat": 223541582, - "MNT_HolidayYeti": 780983974, - "MNT_IceSled": 979912604, - "MNT_TurtleDoves": 1850191638, - "MNT_KrokChariot": 559783620, - "MNT_Mustang": 1775949401, - "MNT_PumpkinBall": 382849054, - "Transformation_BG_Fairy_Storm": 836920873, - "Transformation_BG_Elf_Myth": 1506493664, - "Transformation_NinjaPig_Life": 816802847, - "Transformation_BG_Krok_Fire": 1060580712, - "Transformation_BG_Colossus_Balance": 1067963041, - "Transformation_BG_NinjaPig_Life": 441460895, - "PP_Penguin_03": 1623028104, - "Transformation_Duck_Librarian_B": 864067551, - "Transformation_Duck_Librarian_A": 859873247, - "Transformation_Duck_Adventurer": 194560769, - "Transformation_Gummy_Bunny_C": 1298087941, - "Transformation_Frog_Horned_A": 837201339, - "Transformation_Glowbug_Storm": 2096380446, - "Transformation_Marshmallow_Critter_A": 1036335317, - "Transformation_Snipe_Base_B": 232132109, - "Transformation_Snowball": 915248481, - "Transformation_Wombat_Base": 333435450, - "Transformation_Human_Malistaire": 1414887773, - "Transformation_Morganthe_E": 1745180054, - "Transformation_Spider_Grandfather": 1131773979, - "Transformation_Khrulhu_Dasein_B": 367878762, - "Transformation_Devourer_Base": 698770016, - "Transformation_Alien_Meteor": 638746168, - "Transformation_Nightmare_Malus": 704212821, - "Transformation_Daemon_Personal": 278266463, - "PP_ValentinesDay": 810003364, - "PP_BabyHippo": 422858138, - "PP_Aardwold": 1592150119, - "PP_Aardwold_C": 1902528613, - "MNT_Cobra": 472847981, - "MNT_Serpopard": 1629558909, - "MNT_Serpopard_B": 1629556867, - "MNT_Serpopard_C": 1629556931, - "PP_Fairy_Fire": 1847789544, - "MNT_Mustang_B": 1448793691, - "PP_FireElfMyth": 1933609060, - "MNT_KT-BoatRide": 1560860110 - } - }, - "m_badgeTitle": { - "type": "std::string", - "id": 6, - "offset": 440, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1783354256 - }, - "m_chatPermissions": { - "type": "unsigned int", - "id": 7, - "offset": 360, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1848314473 - }, - "m_pvpIconID": { - "type": "unsigned int", - "id": 8, - "offset": 472, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2083838009 - }, - "m_localeID": { - "type": "unsigned int", - "id": 9, - "offset": 484, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 792971274 - }, - "m_friendlyPlayer": { - "type": "bool", - "id": 10, - "offset": 490, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 990699901 - }, - "m_volunteer": { - "type": "bool", - "id": 11, - "offset": 491, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1751284471 - }, - "m_guildName": { - "type": "unsigned int", - "id": 12, - "offset": 492, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 778026115 - }, - "m_guildNameLocale": { - "type": "int", - "id": 13, - "offset": 496, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 656991008 - }, - "m_overallRating": { - "type": "unsigned int", - "id": 14, - "offset": 544, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 462138631 - }, - "m_activeRating": { - "type": "unsigned int", - "id": 15, - "offset": 548, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 234391118 - }, - "m_petLevel": { - "type": "unsigned int", - "id": 16, - "offset": 552, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2225922446 - }, - "m_bHasSocketedJewel": { - "type": "bool", - "id": 17, - "offset": 556, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 103587834 - }, - "m_hideName": { - "type": "bool", - "id": 18, - "offset": 557, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 645410894 - }, - "m_templateID": { - "type": "unsigned int", - "id": 19, - "offset": 564, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1286746870 - } - } - }, - "1787628863": { - "name": "class SharedPointer", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 1787628863, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - }, - "m_actionType": { - "type": "enum PetDerbyActions", - "id": 1, - "offset": 120, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2398162476, - "enum_options": { - "PDA_None": 0, - "PDA_Duck": 2, - "PDA_Jump": 1 - } - }, - "m_canDestroy": { - "type": "bool", - "id": 2, - "offset": 124, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1271539151 - }, - "m_decisionRadius": { - "type": "float", - "id": 3, - "offset": 128, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 104770413 - }, - "m_moraleIncrease": { - "type": "int", - "id": 4, - "offset": 132, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 202238852 - }, - "m_spinEffect": { - "type": "std::string", - "id": 5, - "offset": 184, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1896457826 - }, - "m_impactSound": { - "type": "std::string", - "id": 6, - "offset": 216, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2087348962 - }, - "m_addToWorldSound": { - "type": "std::string", - "id": 7, - "offset": 248, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3324219384 - }, - "m_derbyEffectList": { - "type": "class SharedPointer", - "id": 8, - "offset": 136, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1276867926 - }, - "m_onActionSuccessEffectList": { - "type": "class SharedPointer", - "id": 9, - "offset": 152, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1046745620 - }, - "m_onActionFailEffectList": { - "type": "class SharedPointer", - "id": 10, - "offset": 168, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 901707255 - } - } - }, - "220042309": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 220042309, - "properties": { - "m_tournamentID": { - "type": "gid", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 695889746 - }, - "m_tournamentName": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3329241865 - }, - "m_tournamentNameID": { - "type": "unsigned int", - "id": 2, - "offset": 112, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1799846440 - } - } - }, - "1483251235": { - "name": "class ClientPetGameBehavior", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1483251235, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - } - } - }, - "1787578617": { - "name": "class QuestDynaModInfo", - "bases": [ - "PropertyClass" - ], - "hash": 1787578617, - "properties": { - "m_hideObjects": { - "type": "bool", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 487002423 - }, - "m_alterState": { - "type": "bool", - "id": 1, - "offset": 73, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1458202892 - }, - "m_zoneTag": { - "type": "std::string", - "id": 2, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3405382643 - }, - "m_modState": { - "type": "std::string", - "id": 3, - "offset": 112, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1770855548 - }, - "m_existBeyondQuest": { - "type": "bool", - "id": 4, - "offset": 74, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 923590707 - } - } - }, - "220557015": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 220557015, - "properties": { - "m_startWeight": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 834528109 - }, - "m_middleWeight": { - "type": "float", - "id": 1, - "offset": 76, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1016481710 - }, - "m_endWeight": { - "type": "float", - "id": 2, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 379723894 - }, - "m_desiredSpeed": { - "type": "float", - "id": 3, - "offset": 84, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 406717000 - }, - "m_durationSeconds": { - "type": "float", - "id": 4, - "offset": 88, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1349797100 - } - } - }, - "602322479": { - "name": "class NamedEffectTemplate", - "bases": [ - "GameEffectTemplate", - "PropertyClass" - ], - "hash": 602322479, - "properties": { - "m_effectName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2029161513 - }, - "m_effectCategory": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1852673222 - }, - "m_sortOrder": { - "type": "int", - "id": 2, - "offset": 148, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1411218206 - }, - "m_duration": { - "type": "double", - "id": 3, - "offset": 192, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2727932435 - }, - "m_stackingCategories": { - "type": "std::string", - "id": 4, - "offset": 160, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1774497525 - }, - "m_isPersistent": { - "type": "bool", - "id": 5, - "offset": 153, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 923861920 - }, - "m_bIsOnPet": { - "type": "bool", - "id": 6, - "offset": 154, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 522593303 - }, - "m_isPublic": { - "type": "bool", - "id": 7, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1728439822 - }, - "m_visualEffectAddName": { - "type": "std::string", - "id": 8, - "offset": 200, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3382086694 - }, - "m_visualEffectRemoveName": { - "type": "std::string", - "id": 9, - "offset": 232, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1541697323 - }, - "m_onAddFunctorName": { - "type": "std::string", - "id": 10, - "offset": 280, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1561843107 - }, - "m_onRemoveFunctorName": { - "type": "std::string", - "id": 11, - "offset": 312, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2559017864 - }, - "m_stackingRule": { - "type": "enum STACKING_RULE", - "id": 12, - "offset": 144, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 431568889, - "enum_options": { - "STACKING_ALLOWED": 0, - "STACKING_NOSTACK": 1, - "STACKING_REPLACE": 2 - } - } - } - }, - "1787676233": { - "name": "class LocationTemplate*", - "bases": [ - "PropertyClass" - ], - "hash": 1787676233, - "properties": { - "m_locName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2490843130 - }, - "m_location": { - "type": "class Vector3D", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2239683611 - }, - "m_direction": { - "type": "float", - "id": 2, - "offset": 116, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1528165112 - } - } - }, - "220386132": { - "name": "class MobRankLevel*", - "bases": [ - "PropertyClass" - ], - "hash": 220386132, - "properties": { - "m_rank": { - "type": "int", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 219803942 - }, - "m_level": { - "type": "int", - "id": 1, - "offset": 76, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 801285362 - } - } - }, - "603995590": { - "name": "class AddInterceptCinematicAction*", - "bases": [ - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 603995590, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - }, - "m_effect": { - "type": "std::string", - "id": 2, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1894145160 - }, - "m_idleOnly": { - "type": "bool", - "id": 3, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 612425235 - } - } - }, - "1787762264": { - "name": "class DerbyAffectEffects", - "bases": [ - "DerbyEffect", - "PropertyClass" - ], - "hash": 1787762264, - "properties": { - "m_buffType": { - "type": "enum DerbyTalentBuffType", - "id": 0, - "offset": 92, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1149251982, - "enum_options": { - "Buff": 0, - "Debuff": 1, - "Neither": 2 - } - }, - "m_kTarget": { - "type": "enum DerbyTargetType", - "id": 1, - "offset": 96, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1807803351, - "enum_options": { - "kTargetInFront": 0, - "kTargetBehind": 1, - "kTargetFirst": 2, - "kTargetSelf": 3, - "kTargetAll": 4, - "kTargetLast": 5 - } - }, - "m_nDuration": { - "type": "int", - "id": 2, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1110167982 - }, - "m_effectID": { - "type": "unsigned int", - "id": 3, - "offset": 88, - "flags": 24, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2347630439 - }, - "m_imageFilename": { - "type": "std::string", - "id": 4, - "offset": 112, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2813328063 - }, - "m_iconIndex": { - "type": "unsigned int", - "id": 5, - "offset": 144, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1265133262 - }, - "m_soundOnActivate": { - "type": "std::string", - "id": 6, - "offset": 152, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1956929714 - }, - "m_soundOnTarget": { - "type": "std::string", - "id": 7, - "offset": 184, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3444214056 - }, - "m_targetParticleEffect": { - "type": "std::string", - "id": 8, - "offset": 216, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3048234723 - }, - "m_overheadMessage": { - "type": "std::string", - "id": 9, - "offset": 248, - "flags": 8388639, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1701018190 - }, - "m_requirements": { - "type": "class RequirementList", - "id": 10, - "offset": 280, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2840988582 - }, - "m_nNumBuffs": { - "type": "int", - "id": 11, - "offset": 376, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1860427310 - }, - "m_nNumDebuffs": { - "type": "int", - "id": 12, - "offset": 380, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 637090007 - } - } - }, - "221488256": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 221488256, - "properties": { - "m_badgeLeaderboardInfoList": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 3286468481 - }, - "m_page": { - "type": "int", - "id": 1, - "offset": 88, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 219731831 - }, - "m_extraCredit": { - "type": "bool", - "id": 2, - "offset": 92, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 847737554 - }, - "m_totalEntries": { - "type": "int", - "id": 3, - "offset": 96, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 682683672 - }, - "m_isFriends": { - "type": "bool", - "id": 4, - "offset": 100, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 982582490 - } - } - }, - "602849149": { - "name": "class ControlPopupButton", - "bases": [ - "ControlButton", - "Window", - "PropertyClass" - ], - "hash": 602849149, - "properties": { - "m_sName": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306437263 - }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621225959 - }, - "m_Style": { - "type": "unsigned int", - "id": 2, - "offset": 152, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152, - "POPDOWN_SIBLINGS": 67108864, - "DISABLE_CHILDREN": 134217728, - "HIDE_SIBLINGS": 268435456, - "POPUP_ON_HOVER": 536870912 - } - }, - "m_Flags": { - "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } - }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3105139380 - }, - "m_fTargetAlpha": { - "type": "float", - "id": 5, - "offset": 212, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1809129834 - }, - "m_fDisabledAlpha": { - "type": "float", - "id": 6, - "offset": 216, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1389987675 - }, - "m_fAlpha": { - "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 482130755 - }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3623628394 - }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2102211316 - }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1846695875 - }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3389835433 - }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2547159940 - }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2587533771 - }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3091503757 - }, - "m_bToggle": { - "type": "bool", - "id": 16, - "offset": 608, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2071810903 - }, - "m_bButtonDown": { - "type": "bool", - "id": 17, - "offset": 609, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 840041705 - }, - "m_sLabel": { - "type": "std::wstring", - "id": 18, - "offset": 616, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2207009163 - }, - "m_labelOffset": { - "type": "class Rect", - "id": 19, - "offset": 832, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1990646723 - }, - "m_pButton": { - "type": "class SharedPointer", - "id": 20, - "offset": 656, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1543855875 - }, - "m_HotKey": { - "type": "unsigned int", - "id": 21, - "offset": 672, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1631553409 - }, - "m_Color": { - "type": "class Color", - "id": 22, - "offset": 676, - "flags": 262279, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1753714077 - }, - "m_bCursorOver": { - "type": "bool", - "id": 23, - "offset": 689, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 283981103 - }, - "m_bAbortWhenCursorNotOver": { - "type": "bool", - "id": 24, - "offset": 706, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 325405258 - }, - "m_bHotKeyDown": { - "type": "bool", - "id": 25, - "offset": 680, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 616989185 - }, - "m_fTime": { - "type": "float", - "id": 26, - "offset": 684, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 883746156 - }, - "m_bGreyed": { - "type": "bool", - "id": 27, - "offset": 688, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1566556053 - }, - "m_fMaxScale": { - "type": "float", - "id": 28, - "offset": 692, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2070186635 - }, - "m_fScaleSpeed": { - "type": "float", - "id": 29, - "offset": 696, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1457135702 - }, - "m_bUseDropShadow": { - "type": "bool", - "id": 30, - "offset": 704, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 93063037 - }, - "m_bUseOutline": { - "type": "bool", - "id": 31, - "offset": 705, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 744292994 - }, - "m_pGreyedState": { - "type": "class SharedPointer", - "id": 32, - "offset": 768, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2703352263 - }, - "m_pNormalState": { - "type": "class SharedPointer", - "id": 33, - "offset": 752, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1887909808 - }, - "m_pHighlightedState": { - "type": "class SharedPointer", - "id": 34, - "offset": 784, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2200177608 - }, - "m_pSelectedState": { - "type": "class SharedPointer", - "id": 35, - "offset": 800, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2266776432 - }, - "m_pDepressedState": { - "type": "class SharedPointer", - "id": 36, - "offset": 816, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1878185798 - }, - "m_bUp": { - "type": "bool", - "id": 37, - "offset": 880, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 269510906 - } - } - }, - "602480413": { - "name": "struct GameOverlayActivated_t*", - "bases": [], - "hash": 602480413, - "properties": {} - }, - "1787774537": { - "name": "class LocationTemplate", - "bases": [ - "PropertyClass" - ], - "hash": 1787774537, - "properties": { - "m_locName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2490843130 - }, - "m_location": { - "type": "class Vector3D", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2239683611 - }, - "m_direction": { - "type": "float", - "id": 2, - "offset": 116, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1528165112 - } - } - }, - "602336913": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 602336913, - "properties": { - "m_projectID": { - "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1263221425 - }, - "m_classProjectPlayer": { - "type": "class SharedPointer", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1748630410 - } - } - }, - "223381506": { - "name": "class CrownShopSegReqsSummary", - "bases": [ - "PropertyClass" - ], - "hash": 223381506, - "properties": { - "m_csvNItemsList": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2185990931 - }, - "m_csvNItemsCategoryList": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3441955153 - }, - "m_csvNDaysSinceItemPurchasedList": { - "type": "std::string", - "id": 2, - "offset": 168, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2623003714 - }, - "m_csvHasBadgeList": { - "type": "std::string", - "id": 3, - "offset": 136, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1794307506 - } - } - }, - "1896682356": { - "name": "class RidableBehaviorTemplate*", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 1896682356, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - }, - "m_icon": { - "type": "std::string", - "id": 1, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1717182340 - }, - "m_title": { - "type": "std::string", - "id": 2, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2308614141 - }, - "m_promptText": { - "type": "std::string", - "id": 3, - "offset": 184, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1874125698 - }, - "m_numberOfSlots": { - "type": "int", - "id": 4, - "offset": 216, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1235585933 - }, - "m_rideType": { - "type": "int", - "id": 5, - "offset": 220, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1625839040 - }, - "m_riderKFM": { - "type": "std::string", - "id": 6, - "offset": 224, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 3124565263 - }, - "m_rideDuration": { - "type": "float", - "id": 7, - "offset": 240, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1239878913 - }, - "m_zOffset": { - "type": "float", - "id": 8, - "offset": 244, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 736134072 - }, - "m_newRideType": { - "type": "enum NewRideTypes", - "id": 9, - "offset": 248, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2665245566, - "enum_options": { - "NRT_UseRideType": 0, - "NRT_Chimney": 12 - } - } - } - }, - "222595074": { - "name": "class CrownShopSegReqsSummary*", - "bases": [ - "PropertyClass" - ], - "hash": 222595074, - "properties": { - "m_csvNItemsList": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2185990931 - }, - "m_csvNItemsCategoryList": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3441955153 - }, - "m_csvNDaysSinceItemPurchasedList": { - "type": "std::string", - "id": 2, - "offset": 168, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2623003714 - }, - "m_csvHasBadgeList": { - "type": "std::string", - "id": 3, - "offset": 136, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1794307506 - } - } - }, - "1788177856": { - "name": "class ThumbnailControl*", - "bases": [ - "Window", - "PropertyClass" - ], - "hash": 1788177856, - "properties": { - "m_sName": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306437263 - }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621225959 - }, - "m_Style": { - "type": "unsigned int", - "id": 2, - "offset": 152, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "SCALE_CHILDREN": 2, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "FOCUS_LOCKED": 64, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152 - } - }, - "m_Flags": { - "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } - }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3105139380 - }, - "m_fTargetAlpha": { - "type": "float", - "id": 5, - "offset": 212, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1809129834 - }, - "m_fDisabledAlpha": { - "type": "float", - "id": 6, - "offset": 216, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1389987675 - }, - "m_fAlpha": { - "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 482130755 - }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3623628394 - }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2102211316 - }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1846695875 - }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3389835433 - }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2547159940 - }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2587533771 - }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3091503757 - }, - "m_frameImage": { - "type": "class SharedPointer", - "id": 16, - "offset": 584, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3125725509 - } - } - }, - "222227449": { - "name": "class ReqNumeric*", - "bases": [ - "Requirement", - "PropertyClass" - ], - "hash": 222227449, - "properties": { - "m_applyNOT": { - "type": "bool", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1746328074, - "enum_options": { - "__DEFAULT": 0 - } - }, - "m_operator": { - "type": "enum Requirement::Operator", - "id": 1, - "offset": 76, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2672792317, - "enum_options": { - "ROP_AND": 0, - "ROP_OR": 1, - "__DEFAULT": "ROP_AND" - } - }, - "m_numericValue": { - "type": "float", - "id": 2, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 521915239 - }, - "m_operatorType": { - "type": "enum ReqNumeric::OPERATOR_TYPE", - "id": 3, - "offset": 84, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2228122961, - "enum_options": { - "OPERATOR_UNKNOWN": 4294967295, - "OPERATOR_EQUALS": 0, - "OPERATOR_GREATER_THAN": 1, - "OPERATOR_LESS_THAN": 2, - "OPERATOR_GREATER_THAN_EQ": 3, - "OPERATOR_LESS_THAN_EQ": 4 - } - } - } - }, - "1788341696": { - "name": "class ThumbnailControl", - "bases": [ - "Window", - "PropertyClass" - ], - "hash": 1788341696, - "properties": { - "m_sName": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306437263 - }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621225959 - }, - "m_Style": { - "type": "unsigned int", - "id": 2, - "offset": 152, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "SCALE_CHILDREN": 2, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "FOCUS_LOCKED": 64, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152 - } - }, - "m_Flags": { - "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } - }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3105139380 - }, - "m_fTargetAlpha": { - "type": "float", - "id": 5, - "offset": 212, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1809129834 - }, - "m_fDisabledAlpha": { - "type": "float", - "id": 6, - "offset": 216, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1389987675 - }, - "m_fAlpha": { - "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 482130755 - }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3623628394 - }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2102211316 - }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1846695875 - }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3389835433 - }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2547159940 - }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2587533771 - }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3091503757 - }, - "m_frameImage": { - "type": "class SharedPointer", - "id": 16, - "offset": 584, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3125725509 - } - } - }, - "1791934037": { - "name": "class SharedPointer", - "bases": [ - "ControlBar", - "Window", - "PropertyClass" - ], - "hash": 1791934037, - "properties": { - "m_sName": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306437263 - }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621225959 - }, - "m_Style": { - "type": "unsigned int", - "id": 2, - "offset": 152, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "SCALE_CHILDREN": 2, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "FOCUS_LOCKED": 64, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152 - } - }, - "m_Flags": { - "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } - }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3105139380 - }, - "m_fTargetAlpha": { - "type": "float", - "id": 5, - "offset": 212, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1809129834 - }, - "m_fDisabledAlpha": { - "type": "float", - "id": 6, - "offset": 216, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1389987675 - }, - "m_fAlpha": { - "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 482130755 - }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3623628394 - }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2102211316 - }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1846695875 - }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3389835433 - }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2547159940 - }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2587533771 - }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3091503757 - }, - "m_fPosition": { - "type": "float", - "id": 16, - "offset": 584, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1808212114 - }, - "m_BaseColor": { - "type": "class Color", - "id": 17, - "offset": 588, - "flags": 262279, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2172251096 - }, - "m_BarColor": { - "type": "class Color", - "id": 18, - "offset": 592, - "flags": 262279, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2259916498 - }, - "m_bDisplayVertical": { - "type": "bool", - "id": 19, - "offset": 596, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1359621189 - }, - "m_pBarMaterial": { - "type": "class SharedPointer", - "id": 20, - "offset": 600, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2481929515 - }, - "m_pTopLeftMaterial": { - "type": "class SharedPointer", - "id": 21, - "offset": 616, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3248096916 - }, - "m_pCenterMaterial": { - "type": "class SharedPointer", - "id": 22, - "offset": 632, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1519560055 - }, - "m_pBottomRightMaterial": { - "type": "class SharedPointer", - "id": 23, - "offset": 648, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2932444745 - }, - "m_fMin": { - "type": "float", - "id": 24, - "offset": 700, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 309551905 - }, - "m_fMax": { - "type": "float", - "id": 25, - "offset": 704, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 309551651 - }, - "m_nTabWidth": { - "type": "int", - "id": 26, - "offset": 708, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1554957503 - } - } - }, - "222099698": { - "name": "class CustomEmoteBehavior", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 222099698, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - } - } - }, - "603529192": { - "name": "class ReqBankPercent", - "bases": [ - "ReqNumeric", - "Requirement", - "PropertyClass" - ], - "hash": 603529192, - "properties": { - "m_applyNOT": { - "type": "bool", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1746328074, - "enum_options": { - "__DEFAULT": 0 - } - }, - "m_operator": { - "type": "enum Requirement::Operator", - "id": 1, - "offset": 76, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2672792317, - "enum_options": { - "ROP_AND": 0, - "ROP_OR": 1, - "__DEFAULT": "ROP_AND" - } - }, - "m_numericValue": { - "type": "float", - "id": 2, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 521915239 - }, - "m_operatorType": { - "type": "enum ReqNumeric::OPERATOR_TYPE", - "id": 3, - "offset": 84, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2228122961, - "enum_options": { - "OPERATOR_UNKNOWN": 4294967295, - "OPERATOR_EQUALS": 0, - "OPERATOR_GREATER_THAN": 1, - "OPERATOR_LESS_THAN": 2, - "OPERATOR_GREATER_THAN_EQ": 3, - "OPERATOR_LESS_THAN_EQ": 4 - } - } - } - }, - "603529032": { - "name": "class ReqBankPercent*", - "bases": [ - "ReqNumeric", - "Requirement", - "PropertyClass" - ], - "hash": 603529032, - "properties": { - "m_applyNOT": { - "type": "bool", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1746328074, - "enum_options": { - "__DEFAULT": 0 - } - }, - "m_operator": { - "type": "enum Requirement::Operator", - "id": 1, - "offset": 76, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2672792317, - "enum_options": { - "ROP_AND": 0, - "ROP_OR": 1, - "__DEFAULT": "ROP_AND" - } - }, - "m_numericValue": { - "type": "float", - "id": 2, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 521915239 - }, - "m_operatorType": { - "type": "enum ReqNumeric::OPERATOR_TYPE", - "id": 3, - "offset": 84, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2228122961, - "enum_options": { - "OPERATOR_UNKNOWN": 4294967295, - "OPERATOR_EQUALS": 0, - "OPERATOR_GREATER_THAN": 1, - "OPERATOR_LESS_THAN": 2, - "OPERATOR_GREATER_THAN_EQ": 3, - "OPERATOR_LESS_THAN_EQ": 4 - } - } - } - }, - "1788267634": { - "name": "class SharedPointer", - "bases": [ - "ConditionalSpellEffectRequirement", - "Requirement", - "PropertyClass" - ], - "hash": 1788267634, - "properties": { - "m_applyNOT": { - "type": "bool", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1746328074, - "enum_options": { - "__DEFAULT": 0 - } - }, - "m_operator": { - "type": "enum Requirement::Operator", - "id": 1, - "offset": 76, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2672792317, - "enum_options": { - "ROP_AND": 0, - "ROP_OR": 1, - "__DEFAULT": "ROP_AND" - } - }, - "m_targetType": { - "type": "enum ConditionalSpellEffectRequirement::RequirementTarget", - "id": 2, - "offset": 80, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2547737902, - "enum_options": { - "RT_Caster": 0, - "RT_Target": 1 - } - }, - "m_minionType": { - "type": "enum ReqMinion::MinionType", - "id": 3, - "offset": 88, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2627992580, - "enum_options": { - "Is_Minion": 0, - "Has_Minion": 1, - "On_Team": 2, - "On_Other_Team": 3, - "On_Any_Team": 4 - } - } - } - }, - "222292814": { - "name": "class SharedPointer", - "bases": [ - "Window", - "PropertyClass" - ], - "hash": 222292814, - "properties": { - "m_sName": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306437263 - }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621225959 - }, - "m_Style": { - "type": "unsigned int", - "id": 2, - "offset": 152, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "SCALE_CHILDREN": 2, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "FOCUS_LOCKED": 64, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152 - } - }, - "m_Flags": { - "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } - }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3105139380 - }, - "m_fTargetAlpha": { - "type": "float", - "id": 5, - "offset": 212, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1809129834 - }, - "m_fDisabledAlpha": { - "type": "float", - "id": 6, - "offset": 216, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1389987675 - }, - "m_fAlpha": { - "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 482130755 - }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3623628394 - }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2102211316 - }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1846695875 - }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3389835433 - }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2547159940 - }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2587533771 - }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3091503757 - }, - "m_currentTab": { - "type": "int", - "id": 16, - "offset": 944, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1795186676 - }, - "m_totalCrowns": { - "type": "int", - "id": 17, - "offset": 768, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2094555642 - }, - "m_pInventory": { - "type": "class SharedPointer", - "id": 18, - "offset": 1448, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2295349946 - }, - "m_pEquipment": { - "type": "class SharedPointer", - "id": 19, - "offset": 1464, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3072576019 - }, - "m_buyBtnDisableReason": { - "type": "std::string", - "id": 20, - "offset": 1416, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2225989675 - } - } - }, - "222243512": { - "name": "class CombatPetXPEffect*", - "bases": [ - "GameEffectBase", - "PropertyClass" - ], - "hash": 222243512, - "properties": { - "m_currentTickCount": { - "type": "double", - "id": 0, - "offset": 80, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2533274692 - }, - "m_effectNameID": { - "type": "unsigned int", - "id": 1, - "offset": 96, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1204067144 - }, - "m_bIsOnPet": { - "type": "bool", - "id": 2, - "offset": 73, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 522593303 - }, - "m_originatorID": { - "type": "gid", - "id": 3, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1131810019 - }, - "m_itemSlotID": { - "type": "unsigned int", - "id": 4, - "offset": 112, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1895747595 - }, - "m_internalID": { - "type": "int", - "id": 5, - "offset": 92, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1643137924 - }, - "m_endTime": { - "type": "unsigned int", - "id": 6, - "offset": 88, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 716479635 - }, - "m_lootTableName": { - "type": "std::string", - "id": 7, - "offset": 128, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2333333378 - } - } - }, - "603995270": { - "name": "class AddInterceptCinematicAction", - "bases": [ - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 603995270, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - }, - "m_effect": { - "type": "std::string", - "id": 2, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1894145160 - }, - "m_idleOnly": { - "type": "bool", - "id": 3, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 612425235 - } - } - }, - "1788349519": { - "name": "class ToggleInterfaceControlCinematicAction*", - "bases": [ - "CinematicAction", - "PropertyClass" - ], - "hash": 1788349519, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_maximumDurationInSeconds": { - "type": "float", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1457214913 - }, - "m_hideUI": { - "type": "bool", - "id": 2, - "offset": 84, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 519818283 - }, - "m_stopMovement": { - "type": "bool", - "id": 3, - "offset": 85, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1752496036 - } - } - }, - "222550113": { - "name": "class SpawnObject*", - "bases": [ - "PropertyClass" - ], - "hash": 222550113, - "properties": { - "m_name": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1717359772 - }, - "m_id": { - "type": "gid", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2090569797 - }, - "m_active": { - "type": "bool", - "id": 2, - "offset": 112, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 239335471 - }, - "m_popSensitive": { - "type": "bool", - "id": 3, - "offset": 113, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1597743708 - }, - "m_maxNumberOfSpawns": { - "type": "unsigned int", - "id": 4, - "offset": 116, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 641389965 - }, - "m_atLeastOneSpawn": { - "type": "bool", - "id": 5, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 739650380 - }, - "m_activateAtMax": { - "type": "bool", - "id": 6, - "offset": 121, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 992369727 - }, - "m_spawnTime": { - "type": "int", - "id": 7, - "offset": 124, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 752966546 - }, - "m_respawnRate": { - "type": "unsigned int", - "id": 8, - "offset": 128, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1675694521 - }, - "m_spawnList": { - "type": "class SpawnItem*", - "id": 9, - "offset": 160, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2620469846 - }, - "m_globalDynamicReqs": { - "type": "class RequirementList*", - "id": 10, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3534313715 - }, - "m_globalDynamic": { - "type": "bool", - "id": 11, - "offset": 144, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1951691017 - }, - "m_waitForTimer": { - "type": "bool", - "id": 12, - "offset": 122, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2143039664 - }, - "m_zoneLevelMin": { - "type": "unsigned int", - "id": 13, - "offset": 132, - "flags": 263, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1028934149 - }, - "m_zoneLevelMax": { - "type": "unsigned int", - "id": 14, - "offset": 136, - "flags": 263, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1028933895 - }, - "m_zoneLevelUp": { - "type": "unsigned int", - "id": 15, - "offset": 140, - "flags": 263, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1342541638 - } - } - }, - "604021729": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 604021729, - "properties": { - "m_sString": { - "type": "std::wstring", - "id": 0, - "offset": 72, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1662841794 - }, - "m_sTooltip": { - "type": "std::wstring", - "id": 1, - "offset": 104, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1680475798 - } - } - }, - "1799411660": { - "name": "class UnstitchOption", - "bases": [ - "ServiceOptionBase", - "PropertyClass" - ], - "hash": 1799411660, - "properties": { - "m_serviceName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2206028813 - }, - "m_iconKey": { - "type": "std::string", - "id": 1, - "offset": 168, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2457138637 - }, - "m_displayKey": { - "type": "std::string", - "id": 2, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3023276954 - }, - "m_serviceIndex": { - "type": "unsigned int", - "id": 3, - "offset": 204, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2103126710 - }, - "m_forceInteract": { - "type": "bool", - "id": 4, - "offset": 200, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1705789564 - } - } - }, - "1793109074": { - "name": "class ActorDeathCinematicAction*", - "bases": [ - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 1793109074, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - } - } - }, - "1791114473": { - "name": "class RaidTeleportBehaviorBase*", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1791114473, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - } - } - }, - "222730674": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 222730674, - "properties": { - "m_requirements": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 263, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3043523229 - }, - "m_dialog": { - "type": "std::string", - "id": 1, - "offset": 88, - "flags": 8388639, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1858395851 - }, - "m_picture": { - "type": "std::string", - "id": 2, - "offset": 120, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3128322903 - }, - "m_soundFile": { - "type": "std::string", - "id": 3, - "offset": 152, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2276870852 - }, - "m_action": { - "type": "std::string", - "id": 4, - "offset": 184, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1734553689 - }, - "m_dialogEvent": { - "type": "std::string", - "id": 5, - "offset": 216, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2707957549 - }, - "m_actorTemplateID": { - "type": "unsigned int", - "id": 6, - "offset": 248, - "flags": 33554463, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2134265679 - }, - "m_cameraName": { - "type": "std::string", - "id": 7, - "offset": 256, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3252786917 - }, - "m_interpolationDuration": { - "type": "float", - "id": 8, - "offset": 312, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1458058437, - "enum_options": { - "__DEFAULT": "1.0" - } - }, - "m_cameraOffsetX": { - "type": "float", - "id": 9, - "offset": 288, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1515912895 - }, - "m_cameraOffsetY": { - "type": "float", - "id": 10, - "offset": 292, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1515912896 - }, - "m_cameraOffsetZ": { - "type": "float", - "id": 11, - "offset": 296, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1515912897 - }, - "m_pitch": { - "type": "float", - "id": 12, - "offset": 304, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 896371695 - }, - "m_yaw": { - "type": "float", - "id": 13, - "offset": 300, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 357256328 - }, - "m_roll": { - "type": "float", - "id": 14, - "offset": 308, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 310020272 - }, - "m_cameraShakeType": { - "type": "std::string", - "id": 15, - "offset": 320, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1754128882, - "enum_options": { - "": 0, - "Constant": "Constant", - "Quake": "Quake", - "Thud": "Thud", - "End": "End", - "__DEFAULT": 0 - } - }, - "m_cameraShakeDuration": { - "type": "float", - "id": 16, - "offset": 352, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 316581010, - "enum_options": { - "__DEFAULT": "0.0" - } - }, - "m_cameraShakeAmplitude": { - "type": "float", - "id": 17, - "offset": 356, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2179718321, - "enum_options": { - "__DEFAULT": "0.0" - } - }, - "m_bypassCameraOnReview": { - "type": "bool", - "id": 18, - "offset": 360, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1412905725, - "enum_options": { - "__DEFAULT": 1 - } - }, - "m_cameraZoneName": { - "type": "std::string", - "id": 19, - "offset": 368, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3131581121 - }, - "m_duration": { - "type": "float", - "id": 20, - "offset": 400, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 920323453 - }, - "m_delay": { - "type": "float", - "id": 21, - "offset": 404, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 881988134 - }, - "m_cameraHidePlayers": { - "type": "int", - "id": 22, - "offset": 408, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 28533149 - }, - "m_walkAwayNpcTemplateID": { - "type": "gid", - "id": 23, - "offset": 416, - "flags": 33554719, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 942697507 - }, - "m_walkAwayExitDirectionInDegrees": { - "type": "float", - "id": 24, - "offset": 424, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 396419785 - }, - "m_walkAwayFadeTime": { - "type": "float", - "id": 25, - "offset": 428, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 822405687 - }, - "m_walkAwayUseCurrentFacing": { - "type": "bool", - "id": 26, - "offset": 432, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1464855436 - }, - "m_standInPlayerTag": { - "type": "std::string", - "id": 27, - "offset": 440, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1590121141 - }, - "m_fadeOutCamera": { - "type": "bool", - "id": 28, - "offset": 472, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1766121252 - }, - "m_snapCameraToPlayerAtExit": { - "type": "bool", - "id": 29, - "offset": 473, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1323369645 - }, - "m_secondaryCameraName": { - "type": "std::string", - "id": 30, - "offset": 480, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1670705581 - }, - "m_secondaryInterpolationDuration": { - "type": "float", - "id": 31, - "offset": 512, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1873822349 - }, - "m_npcStandInList": { - "type": "std::string", - "id": 32, - "offset": 520, - "flags": 287, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2076308937 - }, - "m_dialogAnimationList": { - "type": "std::string", - "id": 33, - "offset": 536, - "flags": 287, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2444806919 - }, - "m_dialogTurningList": { - "type": "std::string", - "id": 34, - "offset": 552, - "flags": 287, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2782869422 - }, - "m_npcYawOffsetInDegrees": { - "type": "float", - "id": 35, - "offset": 568, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1395075270 - }, - "m_allowPlayerToMove": { - "type": "bool", - "id": 36, - "offset": 572, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 225101337 - }, - "m_soundEffectFile": { - "type": "std::string", - "id": 37, - "offset": 576, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3235157265 - }, - "m_musicFile": { - "type": "std::string", - "id": 38, - "offset": 608, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2963686620 - }, - "m_nonStackableMusic": { - "type": "bool", - "id": 39, - "offset": 640, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1675595625 - }, - "m_nonRepeatableMusic": { - "type": "bool", - "id": 40, - "offset": 641, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2138315572 - }, - "m_playMusicAtSFXVolume": { - "type": "bool", - "id": 41, - "offset": 642, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2130871816 - }, - "m_soundEffectDelay": { - "type": "float", - "id": 42, - "offset": 644, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1586382460 - }, - "m_musicDelay": { - "type": "float", - "id": 43, - "offset": 648, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1217785767 - }, - "m_musicFadeTime": { - "type": "float", - "id": 44, - "offset": 652, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 502925015 - }, - "m_dontReleaseCameraAtExit": { - "type": "bool", - "id": 45, - "offset": 474, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1107508961 - }, - "m_disableBackButton": { - "type": "bool", - "id": 46, - "offset": 656, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 122355444 - }, - "m_enableExitButton": { - "type": "bool", - "id": 47, - "offset": 657, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1824693936 - }, - "m_cameraFadeType": { - "type": "std::string", - "id": 48, - "offset": 664, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2021935382, - "enum_options": { - "": 0, - "In Out Black": "In Out Black", - "In Out White": "In Out White", - "In Black": "In Black", - "Out Black": "Out Black", - "In White": "In White", - "Out White": "Out White", - "__DEFAULT": 0 - } - }, - "m_cameraFadeTime": { - "type": "float", - "id": 49, - "offset": 696, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 614419391, - "enum_options": { - "__DEFAULT": "0.5" - } - }, - "m_idleAnimation": { - "type": "std::string", - "id": 50, - "offset": 704, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2900487193 - }, - "m_spamTime": { - "type": "float", - "id": 51, - "offset": 736, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1727215063, - "enum_options": { - "__DEFAULT": "1.0" - } - }, - "m_playSoundIfSpamming": { - "type": "bool", - "id": 52, - "offset": 740, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 690006749, - "enum_options": { - "__DEFAULT": 1 - } - }, - "m_playMusicIfSpamming": { - "type": "bool", - "id": 53, - "offset": 741, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 538564341, - "enum_options": { - "__DEFAULT": 1 - } - }, - "m_stopMusicFadeTime": { - "type": "float", - "id": 54, - "offset": 744, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 696390845, - "enum_options": { - "__DEFAULT": "0.0" - } - }, - "m_restartMusicFadeTime": { - "type": "float", - "id": 55, - "offset": 748, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 709379292, - "enum_options": { - "__DEFAULT": "0.0" - } - }, - "m_meetsRequirements": { - "type": "bool", - "id": 56, - "offset": 752, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 296443061 - }, - "m_secondaryCameraInitalDelay": { - "type": "float", - "id": 57, - "offset": 516, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1812842232 - }, - "m_displayButtonsOnTimedDialog": { - "type": "bool", - "id": 58, - "offset": 753, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 569741400 - } - } - }, - "619657520": { - "name": "class AnimateActorCinematicAction", - "bases": [ - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 619657520, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - }, - "m_animation": { - "type": "std::string", - "id": 2, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3431428731 - }, - "m_backupAnimation": { - "type": "std::string", - "id": 3, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1661537937 - }, - "m_default": { - "type": "bool", - "id": 4, - "offset": 184, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1014207576 - }, - "m_evenWhileDead": { - "type": "bool", - "id": 5, - "offset": 185, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2100875368 - }, - "m_fadeOutAfter": { - "type": "bool", - "id": 6, - "offset": 186, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2006083917 - }, - "m_startsImportantAnimations": { - "type": "bool", - "id": 7, - "offset": 187, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 734711685 - }, - "m_forcesStageToWait": { - "type": "bool", - "id": 8, - "offset": 188, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 74507905 - }, - "m_storeAnimForLateComers": { - "type": "bool", - "id": 9, - "offset": 190, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 634303291 - } - } - }, - "1790835185": { - "name": "class InfractionPenalty*", - "bases": [ - "PropertyClass" - ], - "hash": 1790835185, - "properties": { - "m_internalID": { - "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1854540375 - }, - "m_categoryID": { - "type": "unsigned int", - "id": 1, - "offset": 76, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1382795736 - }, - "m_removeAtPointValue": { - "type": "float", - "id": 2, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2112196961 - }, - "m_expireTime": { - "type": "unsigned int", - "id": 3, - "offset": 84, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1836304873 - } - } - }, - "616474503": { - "name": "class SharedPointer", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 616474503, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - } - } - }, - "1789922147": { - "name": "class InstanceInfoList*", - "bases": [ - "PropertyClass" - ], - "hash": 1789922147, - "properties": { - "m_instanceList": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2930750483 - } - } - }, - "610080582": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 610080582, - "properties": { - "m_effectType": { - "type": "enum SpellEffect::kSpellEffects", - "id": 0, - "offset": 72, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2578255295, - "enum_options": { - "SpellEffect::kInvalidSpellEffect": 0, - "SpellEffect::kDamage": 1, - "SpellEffect::kDamageNoCrit": 2, - "SpellEffect::kHeal": 3, - "SpellEffect::kStealHealth": 5, - "SpellEffect::kReduceOverTime": 6, - "SpellEffect::kDetonateOverTime": 7, - "SpellEffect::kPushCharm": 8, - "SpellEffect::kStealCharm": 9, - "SpellEffect::kPushWard": 10, - "SpellEffect::kStealWard": 11, - "SpellEffect::kPushOverTime": 12, - "SpellEffect::kStealOverTime": 13, - "SpellEffect::kRemoveCharm": 14, - "SpellEffect::kRemoveWard": 15, - "SpellEffect::kRemoveStunBlock": 117, - "SpellEffect::kRemoveOverTime": 16, - "SpellEffect::kRemoveAura": 17, - "SpellEffect::kSwapCharm": 19, - "SpellEffect::kSwapWard": 20, - "SpellEffect::kSwapOverTime": 21, - "SpellEffect::kModifyIncomingDamage": 22, - "SpellEffect::kModifyIncomingDamageFlat": 119, - "SpellEffect::kModifyIncomingDamageOverTime": 137, - "SpellEffect::kMaximumIncomingDamage": 23, - "SpellEffect::kModifyIncomingHeal": 24, - "SpellEffect::kModifyIncomingHealFlat": 118, - "SpellEffect::kModifyIncomingHealOverTime": 138, - "SpellEffect::kModifyIncomingDamageType": 25, - "SpellEffect::kModifyIncomingArmorPiercing": 26, - "SpellEffect::kModifyOutgoingDamage": 27, - "SpellEffect::kModifyOutgoingDamageFlat": 121, - "SpellEffect::kModifyOutgoingHeal": 28, - "SpellEffect::kModifyOutgoingHealFlat": 120, - "SpellEffect::kModifyOutgoingDamageType": 29, - "SpellEffect::kModifyOutgoingArmorPiercing": 30, - "SpellEffect::kBounceNext": 33, - "SpellEffect::kBouncePrevious": 34, - "SpellEffect::kBounceBack": 35, - "SpellEffect::kBounceAll": 36, - "SpellEffect::kAbsorbDamage": 37, - "SpellEffect::kAbsorbHeal": 38, - "SpellEffect::kModifyAccuracy": 39, - "SpellEffect::kDispel": 40, - "SpellEffect::kConfusion": 41, - "SpellEffect::kCloakedCharm": 42, - "SpellEffect::kCloakedWard": 43, - "SpellEffect::kStunResist": 44, - "SpellEffect::kPipConversion": 45, - "SpellEffect::kCritBoost": 46, - "SpellEffect::kCritBlock": 47, - "SpellEffect::kPolymorph": 48, - "SpellEffect::kModifyCardCloak": 50, - "SpellEffect::kModifyCardDamage": 51, - "SpellEffect::kModifyCardAccuracy": 53, - "SpellEffect::kModifyCardMutation": 54, - "SpellEffect::kModifyCardRank": 55, - "SpellEffect::kModifyCardArmorPiercing": 56, - "SpellEffect::kSummonCreature": 65, - "SpellEffect::kTeleportPlayer": 66, - "SpellEffect::kStun": 67, - "SpellEffect::kDampen": 68, - "SpellEffect::kReshuffle": 69, - "SpellEffect::kMindControl": 70, - "SpellEffect::kModifyPips": 71, - "SpellEffect::kModifyPowerPips": 72, - "SpellEffect::kModifyShadowPips": 73, - "SpellEffect::kModifyHate": 74, - "SpellEffect::kDamageOverTime": 75, - "SpellEffect::kHealOverTime": 76, - "SpellEffect::kModifyPowerPipChance": 77, - "SpellEffect::kModifyRank": 78, - "SpellEffect::kStunBlock": 79, - "SpellEffect::kRevealCloak": 80, - "SpellEffect::kInstantKill": 81, - "SpellEffect::kAfterlife": 82, - "SpellEffect::kDeferredDamage": 83, - "SpellEffect::kDamagePerTotalPipPower": 84, - "SpellEffect::kCloakedWardNoRemove": 86, - "SpellEffect::kAddCombatTriggerList": 87, - "SpellEffect::kRemoveCombatTriggerList": 88, - "SpellEffect::kBacklashDamage": 89, - "SpellEffect::kMaxHealthDamage": 112, - "SpellEffect::kModifyBacklash": 90, - "SpellEffect::kIntercept": 91, - "SpellEffect::kShadowSelf": 92, - "SpellEffect::kShadowCreature": 93, - "SpellEffect::kModifyShadowCreatureLevel": 94, - "SpellEffect::kSelectShadowCreatureAttackTarget": 95, - "SpellEffect::kShadowDecrementTurn": 96, - "SpellEffect::kCritBoostSchoolSpecific": 97, - "SpellEffect::kSpawnCreature": 98, - "SpellEffect::kUnPolymorph": 99, - "SpellEffect::kPowerPipConversion": 100, - "SpellEffect::kProtectBeneficial": 103, - "SpellEffect::kProtectHarmful": 104, - "SpellEffect::kProtectCardBeneficial": 101, - "SpellEffect::kProtectCardHarmful": 102, - "SpellEffect::kDivideDamage": 105, - "SpellEffect::kConfusionBlock": 109, - "SpellEffect::kModifyPipRoundRate": 110, - "SpellEffect::kMaxHealthHeal": 129, - "SpellEffect::kHealByWard": 130, - "SpellEffect::kTaunt": 131, - "SpellEffect::kPacify": 132, - "SpellEffect::kModifySchoolPips": 150 - } - }, - "m_disposition": { - "type": "enum SpellEffect::kHangingDisposition", - "id": 1, - "offset": 76, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1904841031, - "enum_options": { - "SpellEffect::kBoth": 0, - "SpellEffect::kBeneficial": 1, - "SpellEffect::kHarmful": 2 - } - }, - "m_penaltyTime": { - "type": "int", - "id": 2, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1993188358 - } - } - }, - "1789247509": { - "name": "class SharedPointer", - "bases": [ - "Window", - "PropertyClass" - ], - "hash": 1789247509, - "properties": { - "m_sName": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306437263 - }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621225959 - }, - "m_Style": { - "type": "unsigned int", - "id": 2, - "offset": 152, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "SCALE_CHILDREN": 2, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "FOCUS_LOCKED": 64, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152 - } - }, - "m_Flags": { - "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } - }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3105139380 - }, - "m_fTargetAlpha": { - "type": "float", - "id": 5, - "offset": 212, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1809129834 - }, - "m_fDisabledAlpha": { - "type": "float", - "id": 6, - "offset": 216, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1389987675 - }, - "m_fAlpha": { - "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 482130755 - }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3623628394 - }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2102211316 - }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1846695875 - }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3389835433 - }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2547159940 - }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2587533771 - }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3091503757 - } - } - }, - "224030200": { - "name": "class WizardAutobotQuestManagerGraphicalClient*", - "bases": [ - "WizardAutobotQuestManager", - "AutobotQuestManager", - "PropertyClass" - ], - "hash": 224030200, - "properties": {} - }, - "606823866": { - "name": "class ClientFishBehavior", - "bases": [ - "FishBehavior", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 606823866, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_fishSize": { - "type": "float", - "id": 1, - "offset": 112, - "flags": 65536, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1986368316 - } - } - }, - "223749239": { - "name": "class SharedPointer", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 223749239, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - } - } - }, - "605703999": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 605703999, - "properties": {} - }, - "604721566": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 604721566, - "properties": { - "m_crownsAdded": { - "type": "int", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 997797672 - }, - "m_itemsAdded": { - "type": "int", - "id": 1, - "offset": 76, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 737787694 - } - } - }, - "1790085987": { - "name": "class InstanceInfoList", - "bases": [ - "PropertyClass" - ], - "hash": 1790085987, - "properties": { - "m_instanceList": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2930750483 - } - } - }, - "604647414": { - "name": "class SharedPointer", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 604647414, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - }, - "m_textureType": { - "type": "enum HousingTextureType", - "id": 1, - "offset": 120, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1680179944, - "enum_options": { - "HTT_FLOOR": 0, - "HTT_WALL": 1 - } - }, - "m_textureFilename": { - "type": "std::string", - "id": 2, - "offset": 128, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2208648365 - } - } - }, - "1789949058": { - "name": "class EncounterTemplate", - "bases": [ - "QuestTemplate", - "CoreTemplate", - "PropertyClass" - ], - "hash": 1789949058, - "properties": { - "m_behaviors": { - "type": "class BehaviorTemplate*", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1197808594 - }, - "m_questName": { - "type": "std::string", - "id": 1, - "offset": 96, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1702112846 - }, - "m_questNameID": { - "type": "unsigned int", - "id": 2, - "offset": 128, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1530354349 - }, - "m_questTitle": { - "type": "std::string", - "id": 3, - "offset": 136, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1805465583 - }, - "m_questInfo": { - "type": "std::string", - "id": 4, - "offset": 168, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1701947097 - }, - "m_questPrep": { - "type": "std::string", - "id": 5, - "offset": 200, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1702202980 - }, - "m_questUnderway": { - "type": "std::string", - "id": 6, - "offset": 232, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2308400380 - }, - "m_questComplete": { - "type": "std::string", - "id": 7, - "offset": 264, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3484586150 - }, - "m_startGoals": { - "type": "std::string", - "id": 8, - "offset": 392, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2152469471 - }, - "m_goals": { - "type": "class SharedPointer", - "id": 9, - "offset": 408, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1374041870 - }, - "m_startResults": { - "type": "class SharedPointer", - "id": 10, - "offset": 424, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2094517692 - }, - "m_endResults": { - "type": "class SharedPointer", - "id": 11, - "offset": 440, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2118364133 - }, - "m_requirements": { - "type": "class RequirementList*", - "id": 12, - "offset": 456, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2840985510 - }, - "m_prepRequirements": { - "type": "class RequirementList*", - "id": 13, - "offset": 464, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3016776541 - }, - "m_pruneRequirements": { - "type": "class RequirementList*", - "id": 14, - "offset": 472, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3211248912 - }, - "m_prepAlways": { - "type": "bool", - "id": 15, - "offset": 304, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1423046331 - }, - "m_clientTags": { - "type": "std::string", - "id": 16, - "offset": 312, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2319030025 - }, - "m_goalLogic": { - "type": "class GoalCompleteLogic*", - "id": 17, - "offset": 520, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 963824003 - }, - "m_questLevel": { - "type": "int", - "id": 18, - "offset": 296, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 298136804 - }, - "m_questRepeat": { - "type": "int", - "id": 19, - "offset": 300, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1480345805 - }, - "m_onStartQuestScript": { - "type": "std::string", - "id": 20, - "offset": 328, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2577549709 - }, - "m_onEndQuestScript": { - "type": "std::string", - "id": 21, - "offset": 360, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285648118 - }, - "m_dialogList": { - "type": "class ActorDialogListBase*", - "id": 22, - "offset": 480, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1909154969 - }, - "m_missionDoors": { - "type": "std::string", - "id": 23, - "offset": 504, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2428103908 - }, - "m_dynaMods": { - "type": "class QuestDynaModInfo*", - "id": 24, - "offset": 488, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 3330743945 - }, - "m_isHidden": { - "type": "bool", - "id": 25, - "offset": 305, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1401188667 - }, - "m_outdated": { - "type": "bool", - "id": 26, - "offset": 306, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1565198349 - }, - "m_noQuestHelper": { - "type": "bool", - "id": 27, - "offset": 307, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 578010882 - }, - "m_mainline": { - "type": "bool", - "id": 28, - "offset": 552, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1749856224 - }, - "m_defaultDialogAnimation": { - "type": "std::string", - "id": 29, - "offset": 560, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2400834320 - }, - "m_skipQHAutoSelect": { - "type": "bool", - "id": 30, - "offset": 553, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2024815836 - }, - "m_questEffectInfoList": { - "type": "class SharedPointer", - "id": 31, - "offset": 536, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2494024956 - }, - "m_forceInteraction": { - "type": "bool", - "id": 32, - "offset": 554, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1038376866 - }, - "m_checkInventoryForCrafting": { - "type": "bool", - "id": 33, - "offset": 608, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1549644020 - }, - "m_playAsYourPetNPC": { - "type": "bool", - "id": 34, - "offset": 609, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 827482678 - }, - "m_activityType": { - "type": "enum QuestTemplate::ActivityType", - "id": 35, - "offset": 612, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 231656390, - "enum_options": { - "ACTIVITY_NotActivity": 0, - "ACTIVITY_Crafting": 2, - "ACTIVITY_Fishing": 3, - "ACTIVITY_Gardening": 4, - "ACTIVITY_Pet": 5, - "ACTIVITY_Spell": 1 - } - } - } - }, - "224638087": { - "name": "class ReqClassicMode*", - "bases": [ - "Requirement", - "PropertyClass" - ], - "hash": 224638087, - "properties": { - "m_applyNOT": { - "type": "bool", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1746328074, - "enum_options": { - "__DEFAULT": 0 - } - }, - "m_operator": { - "type": "enum Requirement::Operator", - "id": 1, - "offset": 76, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2672792317, - "enum_options": { - "ROP_AND": 0, - "ROP_OR": 1, - "__DEFAULT": "ROP_AND" - } - } - } - }, - "224030584": { - "name": "class WizardAutobotQuestManagerGraphicalClient", - "bases": [ - "WizardAutobotQuestManager", - "AutobotQuestManager", - "PropertyClass" - ], - "hash": 224030584, - "properties": {} - }, - "605598665": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 605598665, - "properties": { - "m_PointData": { - "type": "class Point", - "id": 0, - "offset": 72, - "flags": 135, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2358246150 - }, - "m_Color": { - "type": "class Color", - "id": 1, - "offset": 96, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1753714077 - } - } - }, - "1790605206": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1790605206, - "properties": { - "m_filename": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3117322428 - }, - "m_id": { - "type": "unsigned int", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2301988666 - } - } - }, - "224637991": { - "name": "class ReqClassicMode", - "bases": [ - "Requirement", - "PropertyClass" - ], - "hash": 224637991, - "properties": { - "m_applyNOT": { - "type": "bool", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1746328074, - "enum_options": { - "__DEFAULT": 0 - } - }, - "m_operator": { - "type": "enum Requirement::Operator", - "id": 1, - "offset": 76, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2672792317, - "enum_options": { - "ROP_AND": 0, - "ROP_OR": 1, - "__DEFAULT": "ROP_AND" - } - } - } - }, - "606351405": { - "name": "class SharedPointer", - "bases": [ - "LinearSoundBehaviorTemplate", - "PositionalSoundBehaviorTemplate", - "SoundBehaviorTemplate", - "AreaBehaviorTemplate", - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 606351405, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - }, - "m_radius": { - "type": "float", - "id": 1, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 989410271 - }, - "m_category": { - "type": "enum AudioCategory", - "id": 2, - "offset": 124, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2951251982, - "enum_options": { - "AudioCategory_Irrelevent": 0, - "AudioCategory_Accoustic": 1, - "AudioCategory_Noise": 2, - "AudioCategory_Music": 3, - "AudioCategory_MusicAtSFXVolume": 4, - "AudioCategory_Dialog": 5, - "AudioCategory_UI": 6, - "AudioCategory_NoiseAtMusicVolume": 7 - } - }, - "m_exclusive": { - "type": "bool", - "id": 3, - "offset": 128, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 824383403 - }, - "m_active": { - "type": "bool", - "id": 4, - "offset": 129, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 239335471 - }, - "m_enableReqs": { - "type": "class SharedPointer", - "id": 5, - "offset": 136, - "flags": 263, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3158020443 - }, - "m_trackFilenameList": { - "type": "std::string", - "id": 6, - "offset": 152, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2531081709 - }, - "m_playList": { - "type": "class PlayListEntry*", - "id": 7, - "offset": 176, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 3907873161 - }, - "m_priority": { - "type": "int", - "id": 8, - "offset": 208, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1235205852 - }, - "m_volume": { - "type": "float", - "id": 9, - "offset": 200, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1162855023 - }, - "m_loopCount": { - "type": "int", - "id": 10, - "offset": 204, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 865634717 - }, - "m_progression": { - "type": "enum PlayList::Progression", - "id": 11, - "offset": 220, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3279400238, - "enum_options": { - "Sequence": 0, - "Random": 1, - "SequenceOnceOnly": 2, - "RandomNoRepeat": 3 - } - }, - "m_progressMin": { - "type": "float", - "id": 12, - "offset": 212, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1497550192 - }, - "m_progressMax": { - "type": "float", - "id": 13, - "offset": 216, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1497549938 - }, - "m_audioFilterSet": { - "type": "unsigned int", - "id": 14, - "offset": 224, - "flags": 33554439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 831339825 - }, - "m_animationNameFilter": { - "type": "std::string", - "id": 15, - "offset": 232, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2292854242 - }, - "m_functionallabel": { - "type": "std::string", - "id": 16, - "offset": 264, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3589331278 - }, - "m_innerRadius": { - "type": "float", - "id": 17, - "offset": 296, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 686816091 - }, - "m_inverted": { - "type": "bool", - "id": 18, - "offset": 300, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1034821044 - }, - "m_fRangeScale": { - "type": "float", - "id": 19, - "offset": 304, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1749294034 - }, - "m_fAttenuationFactor": { - "type": "float", - "id": 20, - "offset": 308, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 273292776 - }, - "m_eAttenuationType": { - "type": "enum PositionInfoAttenuationType", - "id": 21, - "offset": 312, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2427193304, - "enum_options": { - "Standard": 0, - "Unit Range Power": 1 - } - }, - "m_vPositions": { - "type": "class Vector3D", - "id": 22, - "offset": 320, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 3599600160 - } - } - }, - "1791112128": { - "name": "class HidePolymorphFloatyTextCinematicAction", - "bases": [ - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 1791112128, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - } - } - }, - "224838099": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 224838099, - "properties": { - "m_rarity": { - "type": "enum RarityType", - "id": 0, - "offset": 80, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2253792108, - "enum_options": { - "RT_COMMON": 0, - "RT_UNCOMMON": 1, - "RT_RARE": 2, - "RT_ULTRARARE": 3, - "RT_EPIC": 4 - } - }, - "m_lootGid": { - "type": "gid", - "id": 1, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1008695306 - }, - "m_expectedValue": { - "type": "float", - "id": 2, - "offset": 104, - "flags": 23, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1011900742 - }, - "m_expectedChance": { - "type": "float", - "id": 3, - "offset": 108, - "flags": 23, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1850495755 - } - } - }, - "605996469": { - "name": "class SharedPointer", - "bases": [ - "Requirement", - "PropertyClass" - ], - "hash": 605996469, - "properties": { - "m_applyNOT": { - "type": "bool", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1746328074, - "enum_options": { - "__DEFAULT": 0 - } - }, - "m_operator": { - "type": "enum Requirement::Operator", - "id": 1, - "offset": 76, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2672792317, - "enum_options": { - "ROP_AND": 0, - "ROP_OR": 1, - "__DEFAULT": "ROP_AND" - } - }, - "m_questName": { - "type": "std::string", - "id": 2, - "offset": 80, - "flags": 268435463, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1702112846, - "enum_options": { - "__BASECLASS": "QuestTemplate" - } - }, - "m_goalName": { - "type": "std::string", - "id": 3, - "offset": 112, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1521627807 - } - } - }, - "1791521283": { - "name": "class ObstacleCourseObstaclePathBase*", - "bases": [ - "ObstacleCourseObstacleBehavior", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1791521283, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - } - } - }, - "238090246": { - "name": "class MatchTeam*", - "bases": [ - "PropertyClass" - ], - "hash": 238090246, - "properties": { - "m_nTeamID": { - "type": "gid", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 374990266 - }, - "m_matchId": { - "type": "gid", - "id": 1, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1757621330 - }, - "m_matchNameID": { - "type": "unsigned int", - "id": 2, - "offset": 88, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1751361288 - }, - "m_creatorId": { - "type": "gid", - "id": 3, - "offset": 96, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1051766069 - }, - "m_friendsOnly": { - "type": "bool", - "id": 4, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1420401792 - }, - "m_actors": { - "type": "class SharedPointer", - "id": 5, - "offset": 112, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 568947970 - }, - "m_bracketID": { - "type": "gid", - "id": 6, - "offset": 152, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 441272961 - }, - "m_leagueID": { - "type": "unsigned int", - "id": 7, - "offset": 160, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 692361645 - }, - "m_seasonID": { - "type": "unsigned int", - "id": 8, - "offset": 164, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 535260643 - }, - "m_maxActorLevel": { - "type": "int", - "id": 9, - "offset": 144, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 120597521 - } - } - }, - "606653373": { - "name": "class SharedPointer", - "bases": [ - "MakeTargetableCinematicAction", - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 606653373, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - } - } - }, - "1791392213": { - "name": "class ClientPetBoostPlayerStatEffect*", - "bases": [ - "PetBoostPlayerStatEffect", - "WizStatisticEffect", - "StatisticEffect", - "GameEffectBase", - "PropertyClass" - ], - "hash": 1791392213, - "properties": { - "m_currentTickCount": { - "type": "double", - "id": 0, - "offset": 80, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2533274692 - }, - "m_effectNameID": { - "type": "unsigned int", - "id": 1, - "offset": 96, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1204067144 - }, - "m_bIsOnPet": { - "type": "bool", - "id": 2, - "offset": 73, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 522593303 - }, - "m_originatorID": { - "type": "gid", - "id": 3, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1131810019 - }, - "m_itemSlotID": { - "type": "unsigned int", - "id": 4, - "offset": 112, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1895747595 - }, - "m_internalID": { - "type": "int", - "id": 5, - "offset": 92, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1643137924 - }, - "m_endTime": { - "type": "unsigned int", - "id": 6, - "offset": 88, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 716479635 - }, - "m_lookupIndex": { - "type": "int", - "id": 7, - "offset": 128, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1626623948 - }, - "m_damageBonusPercent": { - "type": "float", - "id": 8, - "offset": 136, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 623230606 - }, - "m_damageBonusFlat": { - "type": "float", - "id": 9, - "offset": 180, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2212039108 - }, - "m_accuracyBonusPercent": { - "type": "float", - "id": 10, - "offset": 140, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1972336538 - }, - "m_armorPiercingBonusPercent": { - "type": "float", - "id": 11, - "offset": 144, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1569912641 - }, - "m_damageReducePercent": { - "type": "float", - "id": 12, - "offset": 148, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 541736927 - }, - "m_damageReduceFlat": { - "type": "float", - "id": 13, - "offset": 152, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 684172469 - }, - "m_accuracyReducePercent": { - "type": "float", - "id": 14, - "offset": 156, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2112559723 - }, - "m_healBonusPercent": { - "type": "float", - "id": 15, - "offset": 160, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 562313577 - }, - "m_healIncBonusPercent": { - "type": "float", - "id": 16, - "offset": 164, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2182535587 - }, - "m_hitPointBonus": { - "type": "float", - "id": 17, - "offset": 204, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 880644461 - }, - "m_spellChargeBonus": { - "type": "int", - "id": 18, - "offset": 212, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2019610507 - }, - "m_powerPipBonusPercent": { - "type": "float", - "id": 19, - "offset": 168, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1671446341 - }, - "m_petActChance": { - "type": "int", - "id": 20, - "offset": 200, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 237418461 - }, - "m_manaBonus": { - "type": "float", - "id": 21, - "offset": 208, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1372708603 - }, - "m_expPercent": { - "type": "float", - "id": 22, - "offset": 184, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1147850677 - }, - "m_goldPercent": { - "type": "float", - "id": 23, - "offset": 188, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1095720878 - }, - "m_energyBonus": { - "type": "float", - "id": 24, - "offset": 216, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2223158984 - }, - "m_criticalHitRating": { - "type": "float", - "id": 25, - "offset": 220, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1978690540 - }, - "m_blockRating": { - "type": "float", - "id": 26, - "offset": 224, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2088486759 - }, - "m_accuracyRating": { - "type": "float", - "id": 27, - "offset": 228, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 165525575 - }, - "m_powerPipRating": { - "type": "float", - "id": 28, - "offset": 232, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1355340722 - }, - "m_damageResistanceRating": { - "type": "float", - "id": 29, - "offset": 240, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1961377740 - }, - "m_archmastery": { - "type": "float", - "id": 30, - "offset": 244, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1963579610 - }, - "m_archmasteryBonusPercent": { - "type": "float", - "id": 31, - "offset": 288, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1908627154 - }, - "m_balanceMastery": { - "type": "int", - "id": 32, - "offset": 248, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 149062181 - }, - "m_deathMastery": { - "type": "int", - "id": 33, - "offset": 252, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1421218661 - }, - "m_fireMastery": { - "type": "int", - "id": 34, - "offset": 256, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1431794949 - }, - "m_iceMastery": { - "type": "int", - "id": 35, - "offset": 260, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 704864240 - }, - "m_lifeMastery": { - "type": "int", - "id": 36, - "offset": 264, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2142136447 - }, - "m_mythMastery": { - "type": "int", - "id": 37, - "offset": 268, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1766317185 - }, - "m_stormMastery": { - "type": "int", - "id": 38, - "offset": 272, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1883988244 - }, - "m_stunResistancePercent": { - "type": "float", - "id": 39, - "offset": 276, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1868382627 - }, - "m_fishingLuckBonusPercent": { - "type": "float", - "id": 40, - "offset": 192, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1363349254 - }, - "m_shadowPipBonusPercent": { - "type": "float", - "id": 41, - "offset": 172, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1426533310 - }, - "m_wispBonusPercent": { - "type": "float", - "id": 42, - "offset": 196, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1304386546 - }, - "m_pipConversionRating": { - "type": "float", - "id": 43, - "offset": 280, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 246855691 - }, - "m_shadowPipRating": { - "type": "float", - "id": 44, - "offset": 236, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 507126123 - }, - "m_petID": { - "type": "gid", - "id": 45, - "offset": 304, - "flags": 24, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 806009486 - }, - "m_primaryStat1": { - "type": "std::string", - "id": 46, - "offset": 312, - "flags": 24, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2417808140 - }, - "m_primaryStat2": { - "type": "std::string", - "id": 47, - "offset": 344, - "flags": 24, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2417808141 - }, - "m_secondaryStat": { - "type": "std::string", - "id": 48, - "offset": 376, - "flags": 24, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3564684959 - }, - "m_secondaryValue": { - "type": "float", - "id": 49, - "offset": 408, - "flags": 24, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1728780796 - } - } - }, - "231842303": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 231842303, - "properties": { - "m_eType": { - "type": "enum ProxyType", - "id": 0, - "offset": 72, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1656534066, - "enum_options": { - "ProxyTypeBox": 0, - "ProxyTypeRay": 1, - "ProxyTypeSphere": 2, - "ProxyTypeCylinder": 3, - "ProxyTypeTube": 4, - "ProxyTypePlane": 5, - "ProxyTypeMesh": 6, - "ProxyTypeInvalid": 7 - } - } - } - }, - "1791221189": { - "name": "class SharedPointer", - "bases": [ - "Window", - "PropertyClass" - ], - "hash": 1791221189, - "properties": { - "m_sName": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306437263 - }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621225959 - }, - "m_Style": { - "type": "unsigned int", - "id": 2, - "offset": 152, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "SCALE_CHILDREN": 2, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "FOCUS_LOCKED": 64, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152 - } - }, - "m_Flags": { - "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } - }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3105139380 - }, - "m_fTargetAlpha": { - "type": "float", - "id": 5, - "offset": 212, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1809129834 - }, - "m_fDisabledAlpha": { - "type": "float", - "id": 6, - "offset": 216, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1389987675 - }, - "m_fAlpha": { - "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 482130755 - }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3623628394 - }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2102211316 - }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1846695875 - }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3389835433 - }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2547159940 - }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2587533771 - }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3091503757 - } - } - }, - "227865691": { - "name": "class StartBacklashRotationEffectCinematicAction*", - "bases": [ - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 227865691, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - } - } - }, - "226176838": { - "name": "class WindowLayout*", - "bases": [ - "Window", - "PropertyClass" - ], - "hash": 226176838, - "properties": { - "m_sName": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306437263 - }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621225959 - }, - "m_Style": { - "type": "unsigned int", - "id": 2, - "offset": 152, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152, - "H_CENTER": 16777216, - "H_RIGHT": 33554432, - "V_CENTER": 2147483648, - "V_BOTTOM": 67108864, - "SORT": 536870912, - "LAYOUT_VERT": 1073741824, - "LAYOUT_REVERSE": 2147483648, - "DO_NOT_WRAP": 134217728 - } - }, - "m_Flags": { - "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } - }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3105139380 - }, - "m_fTargetAlpha": { - "type": "float", - "id": 5, - "offset": 212, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1809129834 - }, - "m_fDisabledAlpha": { - "type": "float", - "id": 6, - "offset": 216, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1389987675 - }, - "m_fAlpha": { - "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 482130755 - }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3623628394 - }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2102211316 - }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1846695875 - }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3389835433 - }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2547159940 - }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2587533771 - }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3091503757 - }, - "m_nHSpacing": { - "type": "int", - "id": 16, - "offset": 584, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 893611957 - }, - "m_nVSpacing": { - "type": "int", - "id": 17, - "offset": 588, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 551359491 - } - } - }, - "607769058": { - "name": "class SharedPointer", - "bases": [ - "RemoveHangingEffectCinematicAction", - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 607769058, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - }, - "m_cloaked": { - "type": "bool", - "id": 2, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 7349510 - } - } - }, - "225525893": { - "name": "class AutobotQuestManager*", - "bases": [ - "PropertyClass" - ], - "hash": 225525893, - "properties": {} - }, - "607574517": { - "name": "enum CameraCutCinematicAction::kCameraRelative", - "bases": [], - "hash": 607574517, - "properties": {} - }, - "1791438932": { - "name": "class RateMyStitchBehavior*", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1791438932, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - } - } - }, - "225389240": { - "name": "class CombatPetXPEffect", - "bases": [ - "GameEffectBase", - "PropertyClass" - ], - "hash": 225389240, - "properties": { - "m_currentTickCount": { - "type": "double", - "id": 0, - "offset": 80, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2533274692 - }, - "m_effectNameID": { - "type": "unsigned int", - "id": 1, - "offset": 96, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1204067144 - }, - "m_bIsOnPet": { - "type": "bool", - "id": 2, - "offset": 73, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 522593303 - }, - "m_originatorID": { - "type": "gid", - "id": 3, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1131810019 - }, - "m_itemSlotID": { - "type": "unsigned int", - "id": 4, - "offset": 112, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1895747595 - }, - "m_internalID": { - "type": "int", - "id": 5, - "offset": 92, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1643137924 - }, - "m_endTime": { - "type": "unsigned int", - "id": 6, - "offset": 88, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 716479635 - }, - "m_lootTableName": { - "type": "std::string", - "id": 7, - "offset": 128, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2333333378 - } - } - }, - "1791438972": { - "name": "class RateMyStitchBehavior", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1791438972, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - } - } - }, - "609678368": { - "name": "class PetTomeBehaviorBase*", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 609678368, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_petData": { - "type": "std::string", - "id": 1, - "offset": 144, - "flags": 551, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2990195294 - } - } - }, - "226028732": { - "name": "class ElixirBenefitEffectTemplate*", - "bases": [ - "GameEffectTemplate", - "PropertyClass" - ], - "hash": 226028732, - "properties": { - "m_effectName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2029161513 - }, - "m_effectCategory": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1852673222 - }, - "m_sortOrder": { - "type": "int", - "id": 2, - "offset": 148, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1411218206 - }, - "m_duration": { - "type": "double", - "id": 3, - "offset": 192, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2727932435 - }, - "m_stackingCategories": { - "type": "std::string", - "id": 4, - "offset": 160, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1774497525 - }, - "m_isPersistent": { - "type": "bool", - "id": 5, - "offset": 153, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 923861920 - }, - "m_bIsOnPet": { - "type": "bool", - "id": 6, - "offset": 154, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 522593303 - }, - "m_isPublic": { - "type": "bool", - "id": 7, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1728439822 - }, - "m_visualEffectAddName": { - "type": "std::string", - "id": 8, - "offset": 200, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3382086694 - }, - "m_visualEffectRemoveName": { - "type": "std::string", - "id": 9, - "offset": 232, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1541697323 - }, - "m_onAddFunctorName": { - "type": "std::string", - "id": 10, - "offset": 280, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1561843107 - }, - "m_onRemoveFunctorName": { - "type": "std::string", - "id": 11, - "offset": 312, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2559017864 - }, - "m_stackingRule": { - "type": "enum STACKING_RULE", - "id": 12, - "offset": 144, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 431568889, - "enum_options": { - "STACKING_ALLOWED": 0, - "STACKING_NOSTACK": 1, - "STACKING_REPLACE": 2 - } - }, - "m_flags": { - "type": "unsigned int", - "id": 13, - "offset": 360, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1005801050, - "enum_options": { - "GardeningBonus": 1, - "DoublePetXP": 2, - "FreeRespec": 4, - "DailyQuestBonus": 8, - "MonsterMagic": 16, - "DailyPvPBonus": 32, - "FishingBonus": 64, - "CraftingBonus": 128, - "SecondChanceChestBonus": 256, - "DoubleScrollOfFortunePoints": 512, - "FasterEnergyRegeneration": 1024 - } - } - } - }, - "608182659": { - "name": "class ClientAddBacklashEffectCinematicAction", - "bases": [ - "AddBacklashEffectCinematicAction", - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 608182659, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - }, - "m_backlashEffect": { - "type": "std::string", - "id": 2, - "offset": 120, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3051687009 - } - } - }, - "225693728": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 225693728, - "properties": { - "m_templateID.m_full": { - "type": "unsigned __int64", - "id": 0, - "offset": 72, - "flags": 33554439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 633907631 - }, - "m_nObjectID": { - "type": "unsigned int", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 748496927 - }, - "m_location": { - "type": "class Vector3D", - "id": 2, - "offset": 84, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2239683611 - }, - "m_orientation": { - "type": "class Vector3D", - "id": 3, - "offset": 96, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2344058766 - }, - "m_fScale": { - "type": "float", - "id": 4, - "offset": 108, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 503137701 - }, - "m_zoneTag": { - "type": "std::string", - "id": 5, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3405382643 - }, - "m_startState": { - "type": "std::string", - "id": 6, - "offset": 184, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2166880458 - }, - "m_overrideName": { - "type": "std::string", - "id": 7, - "offset": 120, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1990707228 - }, - "m_globalDynamic": { - "type": "bool", - "id": 8, - "offset": 116, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1951691017 - }, - "m_bUndetectable": { - "type": "bool", - "id": 9, - "offset": 216, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1907454341 - }, - "m_spawnRequirements": { - "type": "class SharedPointer", - "id": 10, - "offset": 224, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2309120870 - }, - "m_loadingType": { - "type": "enum CoreObjectInfo::LoadingType", - "id": 11, - "offset": 112, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3522422550, - "enum_options": { - "STATIC_CLIENT_SERVER": 0, - "STATIC_CLIENT": 1, - "STATIC_SERVER": 2, - "DYNAMIC_SERVER": 3 - } - } - } - }, - "1015231469": { - "name": "class CrownShopCategory", - "bases": [ - "PropertyClass" - ], - "hash": 1015231469, - "properties": { - "m_name": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1717359772 - }, - "m_ID": { - "type": "int", - "id": 1, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2090585127 - }, - "m_parentTabID": { - "type": "int", - "id": 2, - "offset": 108, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 16409672 - }, - "m_description": { - "type": "std::string", - "id": 3, - "offset": 112, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1649374815 - }, - "m_iconResource": { - "type": "std::string", - "id": 4, - "offset": 144, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2838396012 - }, - "m_tags": { - "type": "std::string", - "id": 5, - "offset": 184, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1717575210 - }, - "m_dontFilterOwnedRecoItems": { - "type": "bool", - "id": 6, - "offset": 216, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2079281430 - }, - "m_allowMultipleBuy": { - "type": "bool", - "id": 7, - "offset": 217, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 831782030 - }, - "m_forceDisallowMultipleBuy": { - "type": "bool", - "id": 8, - "offset": 218, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 19425277 - }, - "m_isHousesCategory": { - "type": "bool", - "id": 9, - "offset": 220, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1982819524 - }, - "m_isEverythingCategory": { - "type": "bool", - "id": 10, - "offset": 219, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 111927122 - }, - "m_isGroupElixirsCategory": { - "type": "bool", - "id": 11, - "offset": 221, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 768811642 - } - } - }, - "609775250": { - "name": "class BattlegroundPolymorphList", - "bases": [ - "PropertyClass" - ], - "hash": 609775250, - "properties": { - "m_polymorphList": { - "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 619826355 - }, - "m_polymorphCategory": { - "type": "std::string", - "id": 1, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3076206595 - }, - "m_polymorphRole": { - "type": "std::string", - "id": 2, - "offset": 184, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1906345431 - }, - "m_ratingBadgeInfo": { - "type": "class SharedPointer", - "id": 3, - "offset": 96, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1212938427 - } - } - }, - "999035778": { - "name": "class SharedPointer", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 999035778, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - } - } - }, - "614202738": { - "name": "class SharedPointer", - "bases": [ - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 614202738, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - } - } - }, - "999684289": { - "name": "class SharedPointer", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 999684289, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - } - } - }, - "613357707": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 613357707, - "properties": { - "m_mapInfoRequirementsList": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1745192089 - } - } - }, - "610266273": { - "name": "class CollectedEssenceTrackingList*", - "bases": [ - "PropertyClass" - ], - "hash": 610266273, - "properties": { - "m_essenceTrackingList": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2834468954 - }, - "m_collectedEssenceCount": { - "type": "int", - "id": 1, - "offset": 88, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 144807032 - }, - "m_failedToCollectReason": { - "type": "int", - "id": 2, - "offset": 92, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 160435248 - } - } - }, - "610256033": { - "name": "class CollectedEssenceTrackingList", - "bases": [ - "PropertyClass" - ], - "hash": 610256033, - "properties": { - "m_essenceTrackingList": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2834468954 - }, - "m_collectedEssenceCount": { - "type": "int", - "id": 1, - "offset": 88, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 144807032 - }, - "m_failedToCollectReason": { - "type": "int", - "id": 2, - "offset": 92, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 160435248 - } - } - }, - "1000140888": { - "name": "class CastleMagicItemDetector*", - "bases": [ - "PropertyClass" - ], - "hash": 1000140888, - "properties": {} - }, - "999930347": { - "name": "class RaidGateBehaviorBase", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 999930347, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_raidKeyTemplateID": { - "type": "unsigned int", - "id": 1, - "offset": 112, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 884418367 - } - } - }, - "611164797": { - "name": "struct std::pair", - "bases": [], - "hash": 611164797, - "properties": {} - }, - "1000347226": { - "name": "class SharedPointer", - "bases": [ - "FloatingTextCinematicAction", - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 1000347226, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - }, - "m_stringTableEntry": { - "type": "std::string", - "id": 2, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2181170604 - } - } - }, - "612483618": { - "name": "class SharedPointer", - "bases": [ - "CombatObserver", - "PropertyClass" - ], - "hash": 612483618, - "properties": { - "m_playerStats": { - "type": "class SharedPointer", - "id": 0, - "offset": 88, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 873719258 - } - } - }, - "1000601203": { - "name": "class KhanDanceComponent*", - "bases": [ - "HousingGameInterface", - "PropertyClass" - ], - "hash": 1000601203, - "properties": {} - }, - "613768738": { - "name": "class SharedPointer", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 613768738, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_expireTime": { - "type": "unsigned int", - "id": 1, - "offset": 112, - "flags": 59, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1836304873 - } - } - }, - "1537542334": { - "name": "class AdvPvPEloBehaviorTemplate*", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 1537542334, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - } - } - }, - "1293773415": { - "name": "std::wstring", - "bases": [], - "hash": 1293773415, - "properties": {} - }, - "615619818": { - "name": "class DerbyModifyMorale*", - "bases": [ - "DerbyEffect", - "PropertyClass" - ], - "hash": 615619818, - "properties": { - "m_buffType": { - "type": "enum DerbyTalentBuffType", - "id": 0, - "offset": 92, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1149251982, - "enum_options": { - "Buff": 0, - "Debuff": 1, - "Neither": 2 - } - }, - "m_kTarget": { - "type": "enum DerbyTargetType", - "id": 1, - "offset": 96, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1807803351, - "enum_options": { - "kTargetInFront": 0, - "kTargetBehind": 1, - "kTargetFirst": 2, - "kTargetSelf": 3, - "kTargetAll": 4, - "kTargetLast": 5 - } - }, - "m_nDuration": { - "type": "int", - "id": 2, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1110167982 - }, - "m_effectID": { - "type": "unsigned int", - "id": 3, - "offset": 88, - "flags": 24, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2347630439 - }, - "m_imageFilename": { - "type": "std::string", - "id": 4, - "offset": 112, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2813328063 - }, - "m_iconIndex": { - "type": "unsigned int", - "id": 5, - "offset": 144, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1265133262 - }, - "m_soundOnActivate": { - "type": "std::string", - "id": 6, - "offset": 152, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1956929714 - }, - "m_soundOnTarget": { - "type": "std::string", - "id": 7, - "offset": 184, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3444214056 - }, - "m_targetParticleEffect": { - "type": "std::string", - "id": 8, - "offset": 216, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3048234723 - }, - "m_overheadMessage": { - "type": "std::string", - "id": 9, - "offset": 248, - "flags": 8388639, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1701018190 - }, - "m_requirements": { - "type": "class RequirementList", - "id": 10, - "offset": 280, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2840988582 - }, - "m_nMoraleChange": { - "type": "int", - "id": 11, - "offset": 376, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1624723118 - } - } - }, - "1146643298": { - "name": "class Euler", - "bases": [], - "hash": 1146643298, - "properties": {} - }, - "615526527": { - "name": "class DerbyTerrainEffect*", - "bases": [ - "DerbyEffect", - "PropertyClass" - ], - "hash": 615526527, - "properties": { - "m_buffType": { - "type": "enum DerbyTalentBuffType", - "id": 0, - "offset": 92, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1149251982, - "enum_options": { - "Buff": 0, - "Debuff": 1, - "Neither": 2 - } - }, - "m_kTarget": { - "type": "enum DerbyTargetType", - "id": 1, - "offset": 96, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1807803351, - "enum_options": { - "kTargetInFront": 0, - "kTargetBehind": 1, - "kTargetFirst": 2, - "kTargetSelf": 3, - "kTargetAll": 4, - "kTargetLast": 5 - } - }, - "m_nDuration": { - "type": "int", - "id": 2, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1110167982 - }, - "m_effectID": { - "type": "unsigned int", - "id": 3, - "offset": 88, - "flags": 24, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2347630439 - }, - "m_imageFilename": { - "type": "std::string", - "id": 4, - "offset": 112, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2813328063 - }, - "m_iconIndex": { - "type": "unsigned int", - "id": 5, - "offset": 144, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1265133262 - }, - "m_soundOnActivate": { - "type": "std::string", - "id": 6, - "offset": 152, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1956929714 - }, - "m_soundOnTarget": { - "type": "std::string", - "id": 7, - "offset": 184, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3444214056 - }, - "m_targetParticleEffect": { - "type": "std::string", - "id": 8, - "offset": 216, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3048234723 - }, - "m_overheadMessage": { - "type": "std::string", - "id": 9, - "offset": 248, - "flags": 8388639, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1701018190 - }, - "m_requirements": { - "type": "class RequirementList", - "id": 10, - "offset": 280, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2840988582 - }, - "m_terrainType": { - "type": "enum PetDerbyTrackTerrain", - "id": 11, - "offset": 376, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2688629581, - "enum_options": { - "Cobblestone": 0, - "Water": 1, - "Grass": 2, - "Clay": 3, - "Dirt": 4, - "Mud": 5 - } - }, - "m_fEffectReapplyTime": { - "type": "float", - "id": 12, - "offset": 380, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1483497206 - }, - "m_effectsToApply": { - "type": "class SharedPointer", - "id": 13, - "offset": 384, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2042624288 - }, - "m_permanentEffects": { - "type": "class SharedPointer", - "id": 14, - "offset": 400, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2129171809 - } - } - }, - "1086776960": { - "name": "class AdvPvPEloRecordClient", - "bases": [ - "AdvPvPEloRecord", - "PropertyClass" - ], - "hash": 1086776960, - "properties": { - "m_eloRecordID": { - "type": "gid", - "id": 0, - "offset": 72, - "flags": 16777279, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 832082468 - }, - "m_leagueID": { - "type": "unsigned int", - "id": 1, - "offset": 80, - "flags": 33554495, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 692361645 - }, - "m_seasonID": { - "type": "unsigned int", - "id": 2, - "offset": 84, - "flags": 33554495, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 535260643 - }, - "m_startTime": { - "type": "unsigned int", - "id": 3, - "offset": 88, - "flags": 33554495, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1598371274 - }, - "m_ended": { - "type": "bool", - "id": 4, - "offset": 92, - "flags": 33554495, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 795768915 - }, - "m_elo": { - "type": "int", - "id": 5, - "offset": 96, - "flags": 33554495, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 267033754 - }, - "m_rankIndex": { - "type": "int", - "id": 6, - "offset": 100, - "flags": 33554495, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 716259486 - }, - "m_wins": { - "type": "int", - "id": 7, - "offset": 104, - "flags": 33554495, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 219992347 - }, - "m_losses": { - "type": "int", - "id": 8, - "offset": 108, - "flags": 33554495, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 681549075 - }, - "m_draws": { - "type": "int", - "id": 9, - "offset": 112, - "flags": 33554495, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 792242907 - } - } - }, - "1048473177": { - "name": "class SharedPointer", - "bases": [ - "ActorDialogEntry", - "PropertyClass" - ], - "hash": 1048473177, - "properties": { - "m_requirements": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 263, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3043523229 - }, - "m_dialog": { - "type": "std::string", - "id": 1, - "offset": 88, - "flags": 8388639, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1858395851 - }, - "m_picture": { - "type": "std::string", - "id": 2, - "offset": 120, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3128322903 - }, - "m_soundFile": { - "type": "std::string", - "id": 3, - "offset": 152, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2276870852 - }, - "m_action": { - "type": "std::string", - "id": 4, - "offset": 184, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1734553689 - }, - "m_dialogEvent": { - "type": "std::string", - "id": 5, - "offset": 216, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2707957549 - }, - "m_actorTemplateID": { - "type": "unsigned int", - "id": 6, - "offset": 248, - "flags": 33554463, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2134265679 - }, - "m_cameraName": { - "type": "std::string", - "id": 7, - "offset": 256, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3252786917 - }, - "m_interpolationDuration": { - "type": "float", - "id": 8, - "offset": 312, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1458058437, - "enum_options": { - "__DEFAULT": "1.0" - } - }, - "m_cameraOffsetX": { - "type": "float", - "id": 9, - "offset": 288, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1515912895 - }, - "m_cameraOffsetY": { - "type": "float", - "id": 10, - "offset": 292, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1515912896 - }, - "m_cameraOffsetZ": { - "type": "float", - "id": 11, - "offset": 296, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1515912897 - }, - "m_pitch": { - "type": "float", - "id": 12, - "offset": 304, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 896371695 - }, - "m_yaw": { - "type": "float", - "id": 13, - "offset": 300, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 357256328 - }, - "m_roll": { - "type": "float", - "id": 14, - "offset": 308, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 310020272 - }, - "m_cameraShakeType": { - "type": "std::string", - "id": 15, - "offset": 320, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1754128882, - "enum_options": { - "": 0, - "Constant": "Constant", - "Quake": "Quake", - "Thud": "Thud", - "End": "End", - "__DEFAULT": 0 - } - }, - "m_cameraShakeDuration": { - "type": "float", - "id": 16, - "offset": 352, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 316581010, - "enum_options": { - "__DEFAULT": "0.0" - } - }, - "m_cameraShakeAmplitude": { - "type": "float", - "id": 17, - "offset": 356, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2179718321, - "enum_options": { - "__DEFAULT": "0.0" - } - }, - "m_bypassCameraOnReview": { - "type": "bool", - "id": 18, - "offset": 360, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1412905725, - "enum_options": { - "__DEFAULT": 1 - } - }, - "m_cameraZoneName": { - "type": "std::string", - "id": 19, - "offset": 368, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3131581121 - }, - "m_duration": { - "type": "float", - "id": 20, - "offset": 400, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 920323453 - }, - "m_delay": { - "type": "float", - "id": 21, - "offset": 404, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 881988134 - }, - "m_cameraHidePlayers": { - "type": "int", - "id": 22, - "offset": 408, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 28533149 - }, - "m_walkAwayNpcTemplateID": { - "type": "gid", - "id": 23, - "offset": 416, - "flags": 33554719, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 942697507 - }, - "m_walkAwayExitDirectionInDegrees": { - "type": "float", - "id": 24, - "offset": 424, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 396419785 - }, - "m_walkAwayFadeTime": { - "type": "float", - "id": 25, - "offset": 428, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 822405687 - }, - "m_walkAwayUseCurrentFacing": { - "type": "bool", - "id": 26, - "offset": 432, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1464855436 - }, - "m_standInPlayerTag": { - "type": "std::string", - "id": 27, - "offset": 440, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1590121141 - }, - "m_fadeOutCamera": { - "type": "bool", - "id": 28, - "offset": 472, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1766121252 - }, - "m_snapCameraToPlayerAtExit": { - "type": "bool", - "id": 29, - "offset": 473, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1323369645 - }, - "m_secondaryCameraName": { - "type": "std::string", - "id": 30, - "offset": 480, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1670705581 - }, - "m_secondaryInterpolationDuration": { - "type": "float", - "id": 31, - "offset": 512, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1873822349 - }, - "m_npcStandInList": { - "type": "std::string", - "id": 32, - "offset": 520, - "flags": 287, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2076308937 - }, - "m_dialogAnimationList": { - "type": "std::string", - "id": 33, - "offset": 536, - "flags": 287, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2444806919 - }, - "m_dialogTurningList": { - "type": "std::string", - "id": 34, - "offset": 552, - "flags": 287, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2782869422 - }, - "m_npcYawOffsetInDegrees": { - "type": "float", - "id": 35, - "offset": 568, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1395075270 - }, - "m_allowPlayerToMove": { - "type": "bool", - "id": 36, - "offset": 572, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 225101337 - }, - "m_soundEffectFile": { - "type": "std::string", - "id": 37, - "offset": 576, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3235157265 - }, - "m_musicFile": { - "type": "std::string", - "id": 38, - "offset": 608, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2963686620 - }, - "m_nonStackableMusic": { - "type": "bool", - "id": 39, - "offset": 640, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1675595625 - }, - "m_nonRepeatableMusic": { - "type": "bool", - "id": 40, - "offset": 641, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2138315572 - }, - "m_playMusicAtSFXVolume": { - "type": "bool", - "id": 41, - "offset": 642, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2130871816 - }, - "m_soundEffectDelay": { - "type": "float", - "id": 42, - "offset": 644, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1586382460 - }, - "m_musicDelay": { - "type": "float", - "id": 43, - "offset": 648, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1217785767 - }, - "m_musicFadeTime": { - "type": "float", - "id": 44, - "offset": 652, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 502925015 - }, - "m_dontReleaseCameraAtExit": { - "type": "bool", - "id": 45, - "offset": 474, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1107508961 - }, - "m_disableBackButton": { - "type": "bool", - "id": 46, - "offset": 656, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 122355444 - }, - "m_enableExitButton": { - "type": "bool", - "id": 47, - "offset": 657, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1824693936 - }, - "m_cameraFadeType": { - "type": "std::string", - "id": 48, - "offset": 664, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2021935382, - "enum_options": { - "": 0, - "In Out Black": "In Out Black", - "In Out White": "In Out White", - "In Black": "In Black", - "Out Black": "Out Black", - "In White": "In White", - "Out White": "Out White", - "__DEFAULT": 0 - } - }, - "m_cameraFadeTime": { - "type": "float", - "id": 49, - "offset": 696, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 614419391, - "enum_options": { - "__DEFAULT": "0.5" - } - }, - "m_idleAnimation": { - "type": "std::string", - "id": 50, - "offset": 704, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2900487193 - }, - "m_spamTime": { - "type": "float", - "id": 51, - "offset": 736, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1727215063, - "enum_options": { - "__DEFAULT": "1.0" - } - }, - "m_playSoundIfSpamming": { - "type": "bool", - "id": 52, - "offset": 740, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 690006749, - "enum_options": { - "__DEFAULT": 1 - } - }, - "m_playMusicIfSpamming": { - "type": "bool", - "id": 53, - "offset": 741, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 538564341, - "enum_options": { - "__DEFAULT": 1 - } - }, - "m_stopMusicFadeTime": { - "type": "float", - "id": 54, - "offset": 744, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 696390845, - "enum_options": { - "__DEFAULT": "0.0" - } - }, - "m_restartMusicFadeTime": { - "type": "float", - "id": 55, - "offset": 748, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 709379292, - "enum_options": { - "__DEFAULT": "0.0" - } - }, - "m_meetsRequirements": { - "type": "bool", - "id": 56, - "offset": 752, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 296443061 - }, - "m_secondaryCameraInitalDelay": { - "type": "float", - "id": 57, - "offset": 516, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1812842232 - }, - "m_displayButtonsOnTimedDialog": { - "type": "bool", - "id": 58, - "offset": 753, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 569741400 - }, - "m_personaName": { - "type": "std::string", - "id": 59, - "offset": 776, - "flags": 268435487, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2514452244, - "enum_options": { - "__BASECLASS": "Persona" - } - }, - "m_nameOverride": { - "type": "std::string", - "id": 60, - "offset": 840, - "flags": 8388639, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2854590748 - }, - "m_nameSTKey": { - "type": "std::string", - "id": 61, - "offset": 808, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3618744844 - }, - "m_guiDisplay": { - "type": "std::string", - "id": 62, - "offset": 872, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3134563510 - }, - "m_maxTimeSeconds": { - "type": "int", - "id": 63, - "offset": 904, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1762503230 - }, - "m_invisible": { - "type": "bool", - "id": 64, - "offset": 908, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2011940728 - } - } - }, - "1026663843": { - "name": "class SharedPointer", - "bases": [ - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 1026663843, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - } - } - }, - "616037828": { - "name": "class PlayerController", - "bases": [ - "MoveBehavior::Controller", - "PropertyClass" - ], - "hash": 616037828, - "properties": { - "m_bCollisionDisabled": { - "type": "bool", - "id": 0, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1732895577 - }, - "m_bVehicleMode": { - "type": "bool", - "id": 1, - "offset": 121, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1597295002 - }, - "m_fForwardModifier": { - "type": "float", - "id": 2, - "offset": 124, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1173988321 - }, - "m_fBackModifier": { - "type": "float", - "id": 3, - "offset": 128, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 148042045 - }, - "m_fStrafeModifier": { - "type": "float", - "id": 4, - "offset": 132, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 226084913 - }, - "m_fTurnModifier": { - "type": "float", - "id": 5, - "offset": 136, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2134998805 - }, - "m_fAccelerationModifier": { - "type": "float", - "id": 6, - "offset": 144, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 592902742 - }, - "m_fDecelerationModifier": { - "type": "float", - "id": 7, - "offset": 148, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1770082811 - } - } - }, - "1015235151": { - "name": "class std::list >", - "bases": [], - "hash": 1015235151, - "properties": {} - }, - "615873988": { - "name": "class PlayerController*", - "bases": [ - "MoveBehavior::Controller", - "PropertyClass" - ], - "hash": 615873988, - "properties": { - "m_bCollisionDisabled": { - "type": "bool", - "id": 0, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1732895577 - }, - "m_bVehicleMode": { - "type": "bool", - "id": 1, - "offset": 121, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1597295002 - }, - "m_fForwardModifier": { - "type": "float", - "id": 2, - "offset": 124, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1173988321 - }, - "m_fBackModifier": { - "type": "float", - "id": 3, - "offset": 128, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 148042045 - }, - "m_fStrafeModifier": { - "type": "float", - "id": 4, - "offset": 132, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 226084913 - }, - "m_fTurnModifier": { - "type": "float", - "id": 5, - "offset": 136, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2134998805 - }, - "m_fAccelerationModifier": { - "type": "float", - "id": 6, - "offset": 144, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 592902742 - }, - "m_fDecelerationModifier": { - "type": "float", - "id": 7, - "offset": 148, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1770082811 - } - } - }, - "1006261753": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1006261753, - "properties": { - "m_effectName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2029161513 - }, - "m_effectCategory": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1852673222 - }, - "m_sortOrder": { - "type": "int", - "id": 2, - "offset": 148, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1411218206 - }, - "m_duration": { - "type": "double", - "id": 3, - "offset": 192, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2727932435 - }, - "m_stackingCategories": { - "type": "std::string", - "id": 4, - "offset": 160, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1774497525 - }, - "m_isPersistent": { - "type": "bool", - "id": 5, - "offset": 153, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 923861920 - }, - "m_bIsOnPet": { - "type": "bool", - "id": 6, - "offset": 154, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 522593303 - }, - "m_isPublic": { - "type": "bool", - "id": 7, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1728439822 - }, - "m_visualEffectAddName": { - "type": "std::string", - "id": 8, - "offset": 200, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3382086694 - }, - "m_visualEffectRemoveName": { - "type": "std::string", - "id": 9, - "offset": 232, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1541697323 - }, - "m_onAddFunctorName": { - "type": "std::string", - "id": 10, - "offset": 280, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1561843107 - }, - "m_onRemoveFunctorName": { - "type": "std::string", - "id": 11, - "offset": 312, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2559017864 - }, - "m_stackingRule": { - "type": "enum STACKING_RULE", - "id": 12, - "offset": 144, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 431568889, - "enum_options": { - "STACKING_ALLOWED": 0, - "STACKING_NOSTACK": 1, - "STACKING_REPLACE": 2 - } - } - } - }, - "1002414152": { - "name": "class ClientAttachEffectToTurnIndicatorCinematicAction", - "bases": [ - "AttachEffectToTurnIndicatorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 1002414152, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_minDuration": { - "type": "float", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1733171553 - }, - "m_assetName": { - "type": "std::string", - "id": 2, - "offset": 88, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513131580 - } - } - }, - "669408959": { - "name": "class ClientRemoveInterceptCinematicAction*", - "bases": [ - "RemoveInterceptCinematicAction", - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 669408959, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - } - } - }, - "1001657760": { - "name": "class AdvancedPetsConfig*", - "bases": [ - "PropertyClass" - ], - "hash": 1001657760, - "properties": { - "m_energyTick": { - "type": "int", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1236715535 - }, - "m_minPetLevelForJewels": { - "type": "unsigned char", - "id": 1, - "offset": 76, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1631450758 - }, - "m_petJewelTalentIcon": { - "type": "std::string", - "id": 2, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3286601420 - } - } - }, - "1001234342": { - "name": "class Group", - "bases": [ - "PropertyClass" - ], - "hash": 1001234342, - "properties": { - "m_GroupID": { - "type": "gid", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 586506386 - }, - "m_ChannelID": { - "type": "gid", - "id": 1, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1585983742 - }, - "m_MemberList": { - "type": "class SharedPointer", - "id": 2, - "offset": 88, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2864705424 - }, - "m_nMaxSize": { - "type": "unsigned int", - "id": 3, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1265869948 - }, - "m_fromAdventureParty": { - "type": "bool", - "id": 4, - "offset": 128, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 940992997 - }, - "m_leaderGID": { - "type": "gid", - "id": 5, - "offset": 136, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 700505145 - }, - "m_questGID": { - "type": "gid", - "id": 6, - "offset": 144, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 331631550 - }, - "m_goalGID": { - "type": "gid", - "id": 7, - "offset": 152, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 976914927 - } - } - }, - "630766317": { - "name": "class SharedPointer", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 630766317, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - }, - "m_petTalentName": { - "type": "std::string", - "id": 1, - "offset": 120, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1985615789 - }, - "m_minPetLevel": { - "type": "unsigned char", - "id": 2, - "offset": 136, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1317483893 - } - } - }, - "617909374": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 617909374, - "properties": { - "m_dye": { - "type": "int", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 267033084 - }, - "m_texture": { - "type": "int", - "id": 1, - "offset": 76, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 222406987 - } - } - }, - "1002328733": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1002328733, - "properties": { - "m_displayedTips": { - "type": "gid", - "id": 0, - "offset": 112, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": true, - "pointer": false, - "hash": 1546509239 - }, - "m_finishedTips": { - "type": "gid", - "id": 1, - "offset": 128, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": true, - "pointer": false, - "hash": 1286351938 - }, - "m_chatStatsByState": { - "type": "struct CharacterChatStatsByState", - "id": 2, - "offset": 144, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": true, - "pointer": false, - "hash": 3487355966 - }, - "m_chatStatsByText": { - "type": "struct CharacterChatStatsByText", - "id": 3, - "offset": 176, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": true, - "pointer": false, - "hash": 3265910788 - }, - "m_lockList": { - "type": "struct LockData", - "id": 4, - "offset": 208, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": true, - "pointer": false, - "hash": 1946956503 - }, - "m_friendList": { - "type": "struct FriendData", - "id": 5, - "offset": 288, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": true, - "pointer": false, - "hash": 2895296598 - }, - "m_activeQuestId": { - "type": "gid", - "id": 6, - "offset": 304, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": true, - "pointer": false, - "hash": 229595059 - }, - "m_activeGoalId": { - "type": "unsigned int", - "id": 7, - "offset": 336, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": true, - "pointer": false, - "hash": 1967307577 - }, - "m_activeGoalSetByPlayer": { - "type": "bool", - "id": 8, - "offset": 340, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": true, - "pointer": false, - "hash": 1365712422 - }, - "m_crownShopSettings": { - "type": "class SharedPointer", - "id": 9, - "offset": 240, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": true, - "pointer": true, - "hash": 2058124240 - }, - "m_loginHistory": { - "type": "class LoginHistoryEntry", - "id": 10, - "offset": 360, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": true, - "pointer": false, - "hash": 1668671153 - } - } - }, - "616899240": { - "name": "class UnlockTriggerBehaviorBase", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 616899240, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - } - } - }, - "1002250312": { - "name": "class ClientAttachEffectToTurnIndicatorCinematicAction*", - "bases": [ - "AttachEffectToTurnIndicatorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 1002250312, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_minDuration": { - "type": "float", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1733171553 - }, - "m_assetName": { - "type": "std::string", - "id": 2, - "offset": 88, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513131580 - } - } - }, - "616641470": { - "name": "class SharedPointer", - "bases": [ - "GameEffectTemplate", - "PropertyClass" - ], - "hash": 616641470, - "properties": { - "m_effectName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2029161513 - }, - "m_effectCategory": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1852673222 - }, - "m_sortOrder": { - "type": "int", - "id": 2, - "offset": 148, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1411218206 - }, - "m_duration": { - "type": "double", - "id": 3, - "offset": 192, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2727932435 - }, - "m_stackingCategories": { - "type": "std::string", - "id": 4, - "offset": 160, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1774497525 - }, - "m_isPersistent": { - "type": "bool", - "id": 5, - "offset": 153, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 923861920 - }, - "m_bIsOnPet": { - "type": "bool", - "id": 6, - "offset": 154, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 522593303 - }, - "m_isPublic": { - "type": "bool", - "id": 7, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1728439822 - }, - "m_visualEffectAddName": { - "type": "std::string", - "id": 8, - "offset": 200, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3382086694 - }, - "m_visualEffectRemoveName": { - "type": "std::string", - "id": 9, - "offset": 232, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1541697323 - }, - "m_onAddFunctorName": { - "type": "std::string", - "id": 10, - "offset": 280, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1561843107 - }, - "m_onRemoveFunctorName": { - "type": "std::string", - "id": 11, - "offset": 312, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2559017864 - }, - "m_stackingRule": { - "type": "enum STACKING_RULE", - "id": 12, - "offset": 144, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 431568889, - "enum_options": { - "STACKING_ALLOWED": 0, - "STACKING_NOSTACK": 1, - "STACKING_REPLACE": 2 - } - }, - "m_lootTableName": { - "type": "std::string", - "id": 13, - "offset": 360, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2333333378 - } - } - }, - "1002373704": { - "name": "class PetTalentTemplate*", - "bases": [ - "PetTalentBaseTemplate", - "CoreTemplate", - "PropertyClass" - ], - "hash": 1002373704, - "properties": { - "m_behaviors": { - "type": "class BehaviorTemplate*", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1197808594 - }, - "m_talentName": { - "type": "std::string", - "id": 1, - "offset": 96, - "flags": 134217735, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2455147588 - }, - "m_displayName": { - "type": "std::string", - "id": 2, - "offset": 136, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2446900370 - }, - "m_description": { - "type": "std::string", - "id": 3, - "offset": 168, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1649374815 - }, - "m_imageIndex": { - "type": "unsigned int", - "id": 4, - "offset": 200, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1781902856 - }, - "m_imageName": { - "type": "std::string", - "id": 5, - "offset": 208, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2391520543 - }, - "m_rank": { - "type": "unsigned char", - "id": 6, - "offset": 240, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 857403388 - }, - "m_breedsAsTalentName": { - "type": "std::string", - "id": 7, - "offset": 248, - "flags": 268435463, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2143399629, - "enum_options": { - "__BASECLASS": "PetTalentBaseTemplate" - } - }, - "m_bRetired": { - "type": "bool", - "id": 8, - "offset": 280, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 904227684, - "enum_options": { - "__DEFAULT": 0 - } - }, - "m_unsearchable": { - "type": "bool", - "id": 9, - "offset": 281, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1760679968, - "enum_options": { - "__DEFAULT": 0 - } - }, - "m_effectList": { - "type": "class GameEffectInfo*", - "id": 10, - "offset": 288, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 924514724 - }, - "m_maxStatList": { - "type": "class PetStat", - "id": 11, - "offset": 304, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2545839409 - } - } - }, - "617172048": { - "name": "class SharedPointer", - "bases": [ - "ClientDerbyTerrainEffect", - "DerbyTerrainEffect", - "DerbyEffect", - "PropertyClass" - ], - "hash": 617172048, - "properties": { - "m_buffType": { - "type": "enum DerbyTalentBuffType", - "id": 0, - "offset": 92, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1149251982, - "enum_options": { - "Buff": 0, - "Debuff": 1, - "Neither": 2 - } - }, - "m_kTarget": { - "type": "enum DerbyTargetType", - "id": 1, - "offset": 96, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1807803351, - "enum_options": { - "kTargetInFront": 0, - "kTargetBehind": 1, - "kTargetFirst": 2, - "kTargetSelf": 3, - "kTargetAll": 4, - "kTargetLast": 5 - } - }, - "m_nDuration": { - "type": "int", - "id": 2, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1110167982 - }, - "m_effectID": { - "type": "unsigned int", - "id": 3, - "offset": 88, - "flags": 24, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2347630439 - }, - "m_imageFilename": { - "type": "std::string", - "id": 4, - "offset": 112, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2813328063 - }, - "m_iconIndex": { - "type": "unsigned int", - "id": 5, - "offset": 144, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1265133262 - }, - "m_soundOnActivate": { - "type": "std::string", - "id": 6, - "offset": 152, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1956929714 - }, - "m_soundOnTarget": { - "type": "std::string", - "id": 7, - "offset": 184, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3444214056 - }, - "m_targetParticleEffect": { - "type": "std::string", - "id": 8, - "offset": 216, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3048234723 - }, - "m_overheadMessage": { - "type": "std::string", - "id": 9, - "offset": 248, - "flags": 8388639, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1701018190 - }, - "m_requirements": { - "type": "class RequirementList", - "id": 10, - "offset": 280, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2840988582 - }, - "m_terrainType": { - "type": "enum PetDerbyTrackTerrain", - "id": 11, - "offset": 376, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2688629581, - "enum_options": { - "Cobblestone": 0, - "Water": 1, - "Grass": 2, - "Clay": 3, - "Dirt": 4, - "Mud": 5 - } - }, - "m_fEffectReapplyTime": { - "type": "float", - "id": 12, - "offset": 380, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1483497206 - }, - "m_effectsToApply": { - "type": "class SharedPointer", - "id": 13, - "offset": 384, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2042624288 - }, - "m_permanentEffects": { - "type": "class SharedPointer", - "id": 14, - "offset": 400, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2129171809 - } - } - }, - "617154041": { - "name": "class TempStartingPipEffectTemplate*", - "bases": [ - "GameEffectTemplate", - "PropertyClass" - ], - "hash": 617154041, - "properties": { - "m_effectName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2029161513 - }, - "m_effectCategory": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1852673222 - }, - "m_sortOrder": { - "type": "int", - "id": 2, - "offset": 148, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1411218206 - }, - "m_duration": { - "type": "double", - "id": 3, - "offset": 192, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2727932435 - }, - "m_stackingCategories": { - "type": "std::string", - "id": 4, - "offset": 160, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1774497525 - }, - "m_isPersistent": { - "type": "bool", - "id": 5, - "offset": 153, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 923861920 - }, - "m_bIsOnPet": { - "type": "bool", - "id": 6, - "offset": 154, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 522593303 - }, - "m_isPublic": { - "type": "bool", - "id": 7, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1728439822 - }, - "m_visualEffectAddName": { - "type": "std::string", - "id": 8, - "offset": 200, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3382086694 - }, - "m_visualEffectRemoveName": { - "type": "std::string", - "id": 9, - "offset": 232, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1541697323 - }, - "m_onAddFunctorName": { - "type": "std::string", - "id": 10, - "offset": 280, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1561843107 - }, - "m_onRemoveFunctorName": { - "type": "std::string", - "id": 11, - "offset": 312, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2559017864 - }, - "m_stackingRule": { - "type": "enum STACKING_RULE", - "id": 12, - "offset": 144, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 431568889, - "enum_options": { - "STACKING_ALLOWED": 0, - "STACKING_NOSTACK": 1, - "STACKING_REPLACE": 2 - } - }, - "m_pipsGiven": { - "type": "int", - "id": 13, - "offset": 360, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1346249167 - }, - "m_powerPipsGiven": { - "type": "int", - "id": 14, - "offset": 364, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 377908508 - } - } - }, - "1004751703": { - "name": "class SharedPointer", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 1004751703, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - }, - "m_nifStateList": { - "type": "std::string", - "id": 1, - "offset": 120, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2130407509 - }, - "m_requirementList": { - "type": "class RequirementList*", - "id": 2, - "offset": 136, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3581372079 - }, - "m_activatedResultList": { - "type": "class ResultList*", - "id": 3, - "offset": 144, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3738420568 - }, - "m_questEvent": { - "type": "std::string", - "id": 4, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1788127695 - }, - "m_singleUse": { - "type": "bool", - "id": 5, - "offset": 184, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2055323234 - }, - "m_removalTime": { - "type": "float", - "id": 6, - "offset": 224, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1385020188 - }, - "m_lootTable": { - "type": "std::string", - "id": 7, - "offset": 192, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2539512673 - }, - "m_useStates": { - "type": "bool", - "id": 8, - "offset": 228, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 992523892 - }, - "m_stateList": { - "type": "std::string", - "id": 9, - "offset": 232, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2944863128 - }, - "m_unlockFirst": { - "type": "bool", - "id": 10, - "offset": 248, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1802051527 - }, - "m_removedState": { - "type": "std::string", - "id": 11, - "offset": 256, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1831242670 - }, - "m_allowedSchoolsList": { - "type": "std::string", - "id": 12, - "offset": 288, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2565048282 - }, - "m_wrongSchoolResultList": { - "type": "class ResultList*", - "id": 13, - "offset": 320, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3155773624 - } - } - }, - "1003539504": { - "name": "class SavedDebugCommand", - "bases": [ - "PropertyClass" - ], - "hash": 1003539504, - "properties": { - "m_commandName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1931590331 - }, - "m_command": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1618022938 - } - } - }, - "617271339": { - "name": "class PauseAction", - "bases": [ - "PathBehaviorTemplate::Action", - "PropertyClass" - ], - "hash": 617271339, - "properties": { - "m_nPathID": { - "type": "gid", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 214382368 - }, - "m_nNodeID": { - "type": "int", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 152152635, - "enum_options": { - "__DEFAULT": 4294967295 - } - }, - "m_nPriority": { - "type": "int", - "id": 2, - "offset": 84, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1515251530, - "enum_options": { - "__DEFAULT": 100 - } - }, - "m_nChance": { - "type": "int", - "id": 3, - "offset": 88, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1860748394, - "enum_options": { - "__DEFAULT": 50 - } - }, - "m_fMinPauseTime": { - "type": "float", - "id": 4, - "offset": 96, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 388964206 - }, - "m_fMaxPauseTime": { - "type": "float", - "id": 5, - "offset": 100, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 347283632 - } - } - }, - "1003075574": { - "name": "class SharedPointer", - "bases": [ - "ObstacleCourseObstaclePathBase", - "ObstacleCourseObstacleBehavior", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1003075574, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - } - } - }, - "1002934410": { - "name": "class WinAnimDelay", - "bases": [ - "WindowAnimation", - "PropertyClass" - ], - "hash": 1002934410, - "properties": { - "m_bUseDeepCopy": { - "type": "bool", - "id": 0, - "offset": 72, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 433380635 - }, - "m_fDelay": { - "type": "float", - "id": 1, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 485432396 - }, - "m_fElapsedTime": { - "type": "float", - "id": 2, - "offset": 84, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1862647402 - } - } - }, - "617350649": { - "name": "class TempStartingPipEffectTemplate", - "bases": [ - "GameEffectTemplate", - "PropertyClass" - ], - "hash": 617350649, - "properties": { - "m_effectName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2029161513 - }, - "m_effectCategory": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1852673222 - }, - "m_sortOrder": { - "type": "int", - "id": 2, - "offset": 148, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1411218206 - }, - "m_duration": { - "type": "double", - "id": 3, - "offset": 192, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2727932435 - }, - "m_stackingCategories": { - "type": "std::string", - "id": 4, - "offset": 160, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1774497525 - }, - "m_isPersistent": { - "type": "bool", - "id": 5, - "offset": 153, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 923861920 - }, - "m_bIsOnPet": { - "type": "bool", - "id": 6, - "offset": 154, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 522593303 - }, - "m_isPublic": { - "type": "bool", - "id": 7, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1728439822 - }, - "m_visualEffectAddName": { - "type": "std::string", - "id": 8, - "offset": 200, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3382086694 - }, - "m_visualEffectRemoveName": { - "type": "std::string", - "id": 9, - "offset": 232, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1541697323 - }, - "m_onAddFunctorName": { - "type": "std::string", - "id": 10, - "offset": 280, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1561843107 - }, - "m_onRemoveFunctorName": { - "type": "std::string", - "id": 11, - "offset": 312, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2559017864 - }, - "m_stackingRule": { - "type": "enum STACKING_RULE", - "id": 12, - "offset": 144, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 431568889, - "enum_options": { - "STACKING_ALLOWED": 0, - "STACKING_NOSTACK": 1, - "STACKING_REPLACE": 2 - } - }, - "m_pipsGiven": { - "type": "int", - "id": 13, - "offset": 360, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1346249167 - }, - "m_powerPipsGiven": { - "type": "int", - "id": 14, - "offset": 364, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 377908508 - } - } - }, - "1003527095": { - "name": "class PetStatModification*", - "bases": [ - "PropertyClass" - ], - "hash": 1003527095, - "properties": { - "m_name": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1717359772 - }, - "m_change": { - "type": "int", - "id": 1, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 320376832 - }, - "m_actualChange": { - "type": "unsigned int", - "id": 2, - "offset": 108, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 448133229 - } - } - }, - "619552454": { - "name": "class TeamHelpUpdateSigilInfoList*", - "bases": [ - "PropertyClass" - ], - "hash": 619552454, - "properties": { - "m_sigilInfoList": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2125475193 - } - } - }, - "619155095": { - "name": "class GardeningBehaviorTemplate*", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 619155095, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - } - } - }, - "618765546": { - "name": "class DerbyModifyMorale", - "bases": [ - "DerbyEffect", - "PropertyClass" - ], - "hash": 618765546, - "properties": { - "m_buffType": { - "type": "enum DerbyTalentBuffType", - "id": 0, - "offset": 92, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1149251982, - "enum_options": { - "Buff": 0, - "Debuff": 1, - "Neither": 2 - } - }, - "m_kTarget": { - "type": "enum DerbyTargetType", - "id": 1, - "offset": 96, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1807803351, - "enum_options": { - "kTargetInFront": 0, - "kTargetBehind": 1, - "kTargetFirst": 2, - "kTargetSelf": 3, - "kTargetAll": 4, - "kTargetLast": 5 - } - }, - "m_nDuration": { - "type": "int", - "id": 2, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1110167982 - }, - "m_effectID": { - "type": "unsigned int", - "id": 3, - "offset": 88, - "flags": 24, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2347630439 - }, - "m_imageFilename": { - "type": "std::string", - "id": 4, - "offset": 112, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2813328063 - }, - "m_iconIndex": { - "type": "unsigned int", - "id": 5, - "offset": 144, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1265133262 - }, - "m_soundOnActivate": { - "type": "std::string", - "id": 6, - "offset": 152, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1956929714 - }, - "m_soundOnTarget": { - "type": "std::string", - "id": 7, - "offset": 184, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3444214056 - }, - "m_targetParticleEffect": { - "type": "std::string", - "id": 8, - "offset": 216, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3048234723 - }, - "m_overheadMessage": { - "type": "std::string", - "id": 9, - "offset": 248, - "flags": 8388639, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1701018190 - }, - "m_requirements": { - "type": "class RequirementList", - "id": 10, - "offset": 280, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2840988582 - }, - "m_nMoraleChange": { - "type": "int", - "id": 11, - "offset": 376, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1624723118 - } - } - }, - "1004108292": { - "name": "class BattlegroundTemplateChatList", - "bases": [ - "PropertyClass" - ], - "hash": 1004108292, - "properties": { - "m_templates": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1496975562 - } - } - }, - "618196191": { - "name": "class std::vector >", - "bases": [], - "hash": 618196191, - "properties": {} - }, - "1004098052": { - "name": "class BattlegroundTemplateChatList*", - "bases": [ - "PropertyClass" - ], - "hash": 1004098052, - "properties": { - "m_templates": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1496975562 - } - } - }, - "618890634": { - "name": "class WizGoalData", - "bases": [ - "PropertyClass" - ], - "hash": 618890634, - "properties": { - "m_goalID": { - "type": "gid", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 485200232 - }, - "m_name": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1717359772 - }, - "m_nameID": { - "type": "unsigned int", - "id": 2, - "offset": 112, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 954387579 - }, - "m_status": { - "type": "enum GOAL_STATUS", - "id": 3, - "offset": 116, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3025501257, - "enum_options": { - "GOAL_STATUS_INVALID": 4294967295, - "GOAL_STATUS_INCOMPLETE": 0, - "GOAL_STATUS_COMPLETE": 1 - } - }, - "m_location": { - "type": "std::string", - "id": 4, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2079561588 - }, - "m_type": { - "type": "enum GoalTemplate::GOAL_TYPE", - "id": 5, - "offset": 184, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1683753114, - "enum_options": { - "GoalTemplate::GOAL_TYPE_UNKNOWN": 0, - "GoalTemplate::GOAL_TYPE_BOUNTY": 1, - "GoalTemplate::GOAL_TYPE_BOUNTYCOLLECT": 2, - "GoalTemplate::GOAL_TYPE_SCAVENGE": 3, - "GoalTemplate::GOAL_TYPE_PERSONA": 4, - "GoalTemplate::GOAL_TYPE_WAYPOINT": 5, - "GoalTemplate::GOAL_TYPE_SCAVENGEFAKE": 6, - "GoalTemplate::GOAL_TYPE_ACHIEVERANK": 7, - "GoalTemplate::GOAL_TYPE_USAGE": 8, - "GoalTemplate::GOAL_TYPE_COMPLETEQUEST": 9, - "GoalTemplate::GOAL_TYPE_SOCIARANK": 10, - "GoalTemplate::GOAL_TYPE_SOCIACURRENCY": 11, - "GoalTemplate::GOAL_TYPE_SOCIAMINIGAME": 12, - "GoalTemplate::GOAL_TYPE_SOCIAGIVEITEM": 13, - "GoalTemplate::GOAL_TYPE_SOCIAGETITEM": 14, - "GoalTemplate::GOAL_TYPE_COLLECTAFTERBOUNTY": 15, - "GoalTemplate::GOAL_TYPE_ENCOUNTER_WAYPOINT_FOREACH": 16 - } - }, - "m_sendType": { - "type": "enum ENUM_SENDTYPE", - "id": 6, - "offset": 188, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1837051977, - "enum_options": { - "SENDTYPE_UNKNOWN": 4294967295, - "SENDTYPE_NORMAL": 0, - "SENDTYPE_NEW": 1, - "SENDTYPE_UPDATE": 2, - "SENDTYPE_NOUPDATE": 3 - } - }, - "m_madLibs": { - "type": "class SharedPointer", - "id": 7, - "offset": 192, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2589921204 - }, - "m_image1": { - "type": "std::string", - "id": 8, - "offset": 208, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2058810671 - }, - "m_image2": { - "type": "std::string", - "id": 9, - "offset": 240, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2058810672 - }, - "m_tagList": { - "type": "class SharedPointer", - "id": 10, - "offset": 272, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 464541847 - }, - "m_completeText": { - "type": "std::string", - "id": 11, - "offset": 288, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2767458393 - }, - "m_QuestHelperEnabled": { - "type": "bool", - "id": 12, - "offset": 320, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1164796656 - }, - "m_petOnlyQuest": { - "type": "bool", - "id": 13, - "offset": 321, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 679359344 - }, - "m_hasActiveResults": { - "type": "bool", - "id": 14, - "offset": 322, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1571197213 - }, - "m_hideGoalFloatyText": { - "type": "bool", - "id": 15, - "offset": 323, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1919383204 - } - } - }, - "1004451249": { - "name": "class Spell", - "bases": [ - "PropertyClass" - ], - "hash": 1004451249, - "properties": { - "m_templateID": { - "type": "unsigned int", - "id": 0, - "offset": 128, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1286746870 - }, - "m_enchantment": { - "type": "unsigned int", - "id": 1, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2217886818 - }, - "m_pipCost": { - "type": "class SharedPointer", - "id": 2, - "offset": 176, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3605704820 - }, - "m_regularAdjust": { - "type": "int", - "id": 3, - "offset": 192, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1420453335 - }, - "m_magicSchoolID": { - "type": "unsigned int", - "id": 4, - "offset": 136, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 893146499 - }, - "m_accuracy": { - "type": "unsigned char", - "id": 5, - "offset": 132, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2273914939 - }, - "m_treasureCard": { - "type": "bool", - "id": 6, - "offset": 197, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1764879128 - }, - "m_battleCard": { - "type": "bool", - "id": 7, - "offset": 198, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1332843753 - }, - "m_itemCard": { - "type": "bool", - "id": 8, - "offset": 199, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1683654300 - }, - "m_sideBoard": { - "type": "bool", - "id": 9, - "offset": 200, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1897838368 - }, - "m_spellID": { - "type": "unsigned int", - "id": 10, - "offset": 204, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1697483258 - }, - "m_leavesPlayWhenCastOverride": { - "type": "bool", - "id": 11, - "offset": 216, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 874407398 - }, - "m_cloaked": { - "type": "bool", - "id": 12, - "offset": 196, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 7349510 - }, - "m_enchantmentSpellIsItemCard": { - "type": "bool", - "id": 13, - "offset": 76, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 531590701 - }, - "m_premutationSpellID": { - "type": "unsigned int", - "id": 14, - "offset": 112, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1530256370 - }, - "m_enchantedThisCombat": { - "type": "bool", - "id": 15, - "offset": 77, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1895738923 - }, - "m_paramOverrides": { - "type": "class SharedPointer", - "id": 16, - "offset": 224, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2061635599 - }, - "m_subEffectMeta": { - "type": "class SharedPointer", - "id": 17, - "offset": 240, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1944101106 - }, - "m_delayEnchantment": { - "type": "bool", - "id": 18, - "offset": 257, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 191336919 - }, - "m_PvE": { - "type": "bool", - "id": 19, - "offset": 264, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 269492350 - }, - "m_delayEnchantmentOrder": { - "type": "enum SpellEffect::kDelayOrder", - "id": 20, - "offset": 72, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2526055263, - "enum_options": { - "SpellEffect::kAnyOrder": 0, - "SpellEffect::kFirst": 1, - "SpellEffect::kSecond": 2 - } - }, - "m_roundAddedTC": { - "type": "int", - "id": 21, - "offset": 260, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 112365451 - }, - "m_secondarySchoolID": { - "type": "unsigned int", - "id": 22, - "offset": 304, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2081206026 - } - } - }, - "1004538019": { - "name": "class LevelScaledEffectTemplate", - "bases": [ - "StatisticEffectTemplate", - "GameEffectTemplate", - "PropertyClass" - ], - "hash": 1004538019, - "properties": { - "m_effectName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2029161513 - }, - "m_effectCategory": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1852673222 - }, - "m_sortOrder": { - "type": "int", - "id": 2, - "offset": 148, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1411218206 - }, - "m_duration": { - "type": "double", - "id": 3, - "offset": 192, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2727932435 - }, - "m_stackingCategories": { - "type": "std::string", - "id": 4, - "offset": 160, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1774497525 - }, - "m_isPersistent": { - "type": "bool", - "id": 5, - "offset": 153, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 923861920 - }, - "m_bIsOnPet": { - "type": "bool", - "id": 6, - "offset": 154, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 522593303 - }, - "m_isPublic": { - "type": "bool", - "id": 7, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1728439822 - }, - "m_visualEffectAddName": { - "type": "std::string", - "id": 8, - "offset": 200, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3382086694 - }, - "m_visualEffectRemoveName": { - "type": "std::string", - "id": 9, - "offset": 232, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1541697323 - }, - "m_onAddFunctorName": { - "type": "std::string", - "id": 10, - "offset": 280, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1561843107 - }, - "m_onRemoveFunctorName": { - "type": "std::string", - "id": 11, - "offset": 312, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2559017864 - }, - "m_stackingRule": { - "type": "enum STACKING_RULE", - "id": 12, - "offset": 144, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 431568889, - "enum_options": { - "STACKING_ALLOWED": 0, - "STACKING_NOSTACK": 1, - "STACKING_REPLACE": 2 - } - }, - "m_scaleToLevel": { - "type": "int", - "id": 13, - "offset": 360, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2018266685 - }, - "m_scaleUp": { - "type": "bool", - "id": 14, - "offset": 364, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 975051008 - } - } - }, - "619371965": { - "name": "struct SimpleFace", - "bases": [], - "hash": 619371965, - "properties": {} - }, - "1006192407": { - "name": "class CameraReleaseCinematicAction", - "bases": [ - "CinematicAction", - "PropertyClass" - ], - "hash": 1006192407, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_releaseInterpolationDuration": { - "type": "float", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1807754278, - "enum_options": { - "__DEFAULT": "1.0" - } - } - } - }, - "619562371": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 619562371, - "properties": { - "m_objectList": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 931236576 - } - } - }, - "1005519432": { - "name": "class PetTalentTemplate", - "bases": [ - "PetTalentBaseTemplate", - "CoreTemplate", - "PropertyClass" - ], - "hash": 1005519432, - "properties": { - "m_behaviors": { - "type": "class BehaviorTemplate*", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1197808594 - }, - "m_talentName": { - "type": "std::string", - "id": 1, - "offset": 96, - "flags": 134217735, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2455147588 - }, - "m_displayName": { - "type": "std::string", - "id": 2, - "offset": 136, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2446900370 - }, - "m_description": { - "type": "std::string", - "id": 3, - "offset": 168, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1649374815 - }, - "m_imageIndex": { - "type": "unsigned int", - "id": 4, - "offset": 200, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1781902856 - }, - "m_imageName": { - "type": "std::string", - "id": 5, - "offset": 208, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2391520543 - }, - "m_rank": { - "type": "unsigned char", - "id": 6, - "offset": 240, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 857403388 - }, - "m_breedsAsTalentName": { - "type": "std::string", - "id": 7, - "offset": 248, - "flags": 268435463, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2143399629, - "enum_options": { - "__BASECLASS": "PetTalentBaseTemplate" - } - }, - "m_bRetired": { - "type": "bool", - "id": 8, - "offset": 280, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 904227684, - "enum_options": { - "__DEFAULT": 0 - } - }, - "m_unsearchable": { - "type": "bool", - "id": 9, - "offset": 281, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1760679968, - "enum_options": { - "__DEFAULT": 0 - } - }, - "m_effectList": { - "type": "class GameEffectInfo*", - "id": 10, - "offset": 288, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 924514724 - }, - "m_maxStatList": { - "type": "class PetStat", - "id": 11, - "offset": 304, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2545839409 - } - } - }, - "619557059": { - "name": "class SharedPointer", - "bases": [ - "AreaBehaviorTemplate", - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 619557059, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - }, - "m_radius": { - "type": "float", - "id": 1, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 989410271 - }, - "m_category": { - "type": "enum AudioCategory", - "id": 2, - "offset": 124, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2951251982, - "enum_options": { - "AudioCategory_Irrelevent": 0, - "AudioCategory_Accoustic": 1, - "AudioCategory_Noise": 2, - "AudioCategory_Music": 3, - "AudioCategory_MusicAtSFXVolume": 4, - "AudioCategory_Dialog": 5, - "AudioCategory_UI": 6, - "AudioCategory_NoiseAtMusicVolume": 7 - } - }, - "m_exclusive": { - "type": "bool", - "id": 3, - "offset": 128, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 824383403 - }, - "m_active": { - "type": "bool", - "id": 4, - "offset": 129, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 239335471 - }, - "m_enableReqs": { - "type": "class SharedPointer", - "id": 5, - "offset": 136, - "flags": 263, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3158020443 - }, - "m_trackFilenameList": { - "type": "std::string", - "id": 6, - "offset": 152, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2531081709 - }, - "m_playList": { - "type": "class PlayListEntry*", - "id": 7, - "offset": 176, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 3907873161 - }, - "m_priority": { - "type": "int", - "id": 8, - "offset": 208, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1235205852 - }, - "m_volume": { - "type": "float", - "id": 9, - "offset": 200, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1162855023 - }, - "m_loopCount": { - "type": "int", - "id": 10, - "offset": 204, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 865634717 - }, - "m_progression": { - "type": "enum PlayList::Progression", - "id": 11, - "offset": 220, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3279400238, - "enum_options": { - "Sequence": 0, - "Random": 1, - "SequenceOnceOnly": 2, - "RandomNoRepeat": 3 - } - }, - "m_progressMin": { - "type": "float", - "id": 12, - "offset": 212, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1497550192 - }, - "m_progressMax": { - "type": "float", - "id": 13, - "offset": 216, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1497549938 - }, - "m_audioFilterSet": { - "type": "unsigned int", - "id": 14, - "offset": 224, - "flags": 33554439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 831339825 - }, - "m_animationNameFilter": { - "type": "std::string", - "id": 15, - "offset": 232, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2292854242 - }, - "m_functionallabel": { - "type": "std::string", - "id": 16, - "offset": 264, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3589331278 - } - } - }, - "1004997293": { - "name": "enum SpawnObjectInfo::StartNodeType", - "bases": [], - "hash": 1004997293, - "properties": {} - }, - "619552646": { - "name": "class TeamHelpUpdateSigilInfoList", - "bases": [ - "PropertyClass" - ], - "hash": 619552646, - "properties": { - "m_sigilInfoList": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2125475193 - } - } - }, - "1006090642": { - "name": "class BadgeButton*", - "bases": [ - "ControlCheckBox", - "ControlButton", - "Window", - "PropertyClass" - ], - "hash": 1006090642, - "properties": { - "m_sName": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306437263 - }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621225959 - }, - "m_Style": { - "type": "unsigned int", - "id": 2, - "offset": 152, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152, - "EFFECT_SCALE": 67108864, - "LOCK_ICON_SIZE": 33554432, - "LEFT_TEXT": 536870912, - "NO_FIT_TEXT": 1073741824, - "CHECKBOX_TEXTOVERIMAGE": 16777216 - } - }, - "m_Flags": { - "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } - }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3105139380 - }, - "m_fTargetAlpha": { - "type": "float", - "id": 5, - "offset": 212, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1809129834 - }, - "m_fDisabledAlpha": { - "type": "float", - "id": 6, - "offset": 216, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1389987675 - }, - "m_fAlpha": { - "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 482130755 - }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3623628394 - }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2102211316 - }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1846695875 - }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3389835433 - }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2547159940 - }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2587533771 - }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3091503757 - }, - "m_bToggle": { - "type": "bool", - "id": 16, - "offset": 608, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2071810903 - }, - "m_bButtonDown": { - "type": "bool", - "id": 17, - "offset": 609, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 840041705 - }, - "m_sLabel": { - "type": "std::wstring", - "id": 18, - "offset": 616, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2207009163 - }, - "m_labelOffset": { - "type": "class Rect", - "id": 19, - "offset": 832, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1990646723 - }, - "m_pButton": { - "type": "class SharedPointer", - "id": 20, - "offset": 656, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1543855875 - }, - "m_HotKey": { - "type": "unsigned int", - "id": 21, - "offset": 672, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1631553409 - }, - "m_Color": { - "type": "class Color", - "id": 22, - "offset": 676, - "flags": 262279, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1753714077 - }, - "m_bCursorOver": { - "type": "bool", - "id": 23, - "offset": 689, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 283981103 - }, - "m_bAbortWhenCursorNotOver": { - "type": "bool", - "id": 24, - "offset": 706, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 325405258 - }, - "m_bHotKeyDown": { - "type": "bool", - "id": 25, - "offset": 680, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 616989185 - }, - "m_fTime": { - "type": "float", - "id": 26, - "offset": 684, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 883746156 - }, - "m_bGreyed": { - "type": "bool", - "id": 27, - "offset": 688, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1566556053 - }, - "m_fMaxScale": { - "type": "float", - "id": 28, - "offset": 692, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2070186635 - }, - "m_fScaleSpeed": { - "type": "float", - "id": 29, - "offset": 696, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1457135702 - }, - "m_bUseDropShadow": { - "type": "bool", - "id": 30, - "offset": 704, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 93063037 - }, - "m_bUseOutline": { - "type": "bool", - "id": 31, - "offset": 705, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 744292994 - }, - "m_pGreyedState": { - "type": "class SharedPointer", - "id": 32, - "offset": 768, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2703352263 - }, - "m_pNormalState": { - "type": "class SharedPointer", - "id": 33, - "offset": 752, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1887909808 - }, - "m_pHighlightedState": { - "type": "class SharedPointer", - "id": 34, - "offset": 784, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2200177608 - }, - "m_pSelectedState": { - "type": "class SharedPointer", - "id": 35, - "offset": 800, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2266776432 - }, - "m_pDepressedState": { - "type": "class SharedPointer", - "id": 36, - "offset": 816, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1878185798 - }, - "m_nGroupID": { - "type": "int", - "id": 37, - "offset": 880, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 403966850 - }, - "m_bChecked": { - "type": "bool", - "id": 38, - "offset": 884, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 958955100 - }, - "m_pCheckedState": { - "type": "class SharedPointer", - "id": 39, - "offset": 888, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1210539694 - }, - "m_pCheckedGreyedState": { - "type": "class SharedPointer", - "id": 40, - "offset": 904, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2702030126 - }, - "m_pCheckedHighlightedState": { - "type": "class SharedPointer", - "id": 41, - "offset": 920, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1320097679 - }, - "m_pCheckedDepressedState": { - "type": "class SharedPointer", - "id": 42, - "offset": 936, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1609188685 - } - } - }, - "619657328": { - "name": "class AnimateActorCinematicAction*", - "bases": [ - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 619657328, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - }, - "m_animation": { - "type": "std::string", - "id": 2, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3431428731 - }, - "m_backupAnimation": { - "type": "std::string", - "id": 3, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1661537937 - }, - "m_default": { - "type": "bool", - "id": 4, - "offset": 184, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1014207576 - }, - "m_evenWhileDead": { - "type": "bool", - "id": 5, - "offset": 185, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2100875368 - }, - "m_fadeOutAfter": { - "type": "bool", - "id": 6, - "offset": 186, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2006083917 - }, - "m_startsImportantAnimations": { - "type": "bool", - "id": 7, - "offset": 187, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 734711685 - }, - "m_forcesStageToWait": { - "type": "bool", - "id": 8, - "offset": 188, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 74507905 - }, - "m_storeAnimForLateComers": { - "type": "bool", - "id": 9, - "offset": 190, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 634303291 - } - } - }, - "1006202647": { - "name": "class CameraReleaseCinematicAction*", - "bases": [ - "CinematicAction", - "PropertyClass" - ], - "hash": 1006202647, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_releaseInterpolationDuration": { - "type": "float", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1807754278, - "enum_options": { - "__DEFAULT": "1.0" - } - } - } - }, - "629469346": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 629469346, - "properties": { - "m_buyPriceMultiplier": { - "type": "int", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 999902276 - } - } - }, - "623908784": { - "name": "class SharedPointer", - "bases": [ - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 623908784, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - }, - "m_scaleDuration": { - "type": "float", - "id": 2, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1764097637 - }, - "m_scaleTarget": { - "type": "float", - "id": 3, - "offset": 124, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1502791366 - } - } - }, - "1012377041": { - "name": "class SharedPointer", - "bases": [ - "AnimateActorCinematicAction", - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 1012377041, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - }, - "m_animation": { - "type": "std::string", - "id": 2, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3431428731 - }, - "m_backupAnimation": { - "type": "std::string", - "id": 3, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1661537937 - }, - "m_default": { - "type": "bool", - "id": 4, - "offset": 184, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1014207576 - }, - "m_evenWhileDead": { - "type": "bool", - "id": 5, - "offset": 185, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2100875368 - }, - "m_fadeOutAfter": { - "type": "bool", - "id": 6, - "offset": 186, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2006083917 - }, - "m_startsImportantAnimations": { - "type": "bool", - "id": 7, - "offset": 187, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 734711685 - }, - "m_forcesStageToWait": { - "type": "bool", - "id": 8, - "offset": 188, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 74507905 - }, - "m_storeAnimForLateComers": { - "type": "bool", - "id": 9, - "offset": 190, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 634303291 - } - } - }, - "622847140": { - "name": "class ControlStretcher*", - "bases": [ - "Window", - "PropertyClass" - ], - "hash": 622847140, - "properties": { - "m_sName": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306437263 - }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621225959 - }, - "m_Style": { - "type": "unsigned int", - "id": 2, - "offset": 152, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152, - "STRETCH_VERTICALLY": 16777216 - } - }, - "m_Flags": { - "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } - }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3105139380 - }, - "m_fTargetAlpha": { - "type": "float", - "id": 5, - "offset": 212, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1809129834 - }, - "m_fDisabledAlpha": { - "type": "float", - "id": 6, - "offset": 216, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1389987675 - }, - "m_fAlpha": { - "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 482130755 - }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3623628394 - }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2102211316 - }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1846695875 - }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3389835433 - }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2547159940 - }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2587533771 - }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3091503757 - }, - "m_pTopLeftMaterial": { - "type": "class SharedPointer", - "id": 16, - "offset": 584, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3248096916 - }, - "m_pCenterMaterial": { - "type": "class SharedPointer", - "id": 17, - "offset": 600, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1519560055 - }, - "m_pBottomRightMaterial": { - "type": "class SharedPointer", - "id": 18, - "offset": 616, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2932444745 - }, - "m_MaximumSize": { - "type": "class Size", - "id": 19, - "offset": 632, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1781954165 - }, - "m_MinimumSize": { - "type": "class Size", - "id": 20, - "offset": 640, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2108593523 - } - } - }, - "1009112941": { - "name": "class SharedPointer", - "bases": [ - "CinematicAction", - "PropertyClass" - ], - "hash": 1009112941, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_rotationInfo": { - "type": "class SharedPointer", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2332010820 - } - } - }, - "620908650": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 620908650, - "properties": { - "m_mapName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3249832570 - }, - "m_zoneName": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2171167736 - } - } - }, - "1007357949": { - "name": "class TargetCountSpellEffect*", - "bases": [ - "SpellEffect", - "PropertyClass" - ], - "hash": 1007357949, - "properties": { - "m_effectType": { - "type": "enum SpellEffect::kSpellEffects", - "id": 0, - "offset": 72, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2578255295, - "enum_options": { - "kInvalidSpellEffect": 0, - "kDamage": 1, - "kDamageNoCrit": 2, - "kHeal": 3, - "kHealPercent": 4, - "kSetHealPercent": 113, - "kStealHealth": 5, - "kReduceOverTime": 6, - "kDetonateOverTime": 7, - "kPushCharm": 8, - "kStealCharm": 9, - "kPushWard": 10, - "kStealWard": 11, - "kPushOverTime": 12, - "kStealOverTime": 13, - "kRemoveCharm": 14, - "kRemoveWard": 15, - "kRemoveOverTime": 16, - "kRemoveAura": 17, - "kSwapAll": 18, - "kSwapCharm": 19, - "kSwapWard": 20, - "kSwapOverTime": 21, - "kModifyIncomingDamage": 22, - "kModifyIncomingDamageFlat": 119, - "kMaximumIncomingDamage": 23, - "kModifyIncomingHeal": 24, - "kModifyIncomingHealFlat": 118, - "kModifyIncomingDamageType": 25, - "kModifyIncomingArmorPiercing": 26, - "kModifyOutgoingDamage": 27, - "kModifyOutgoingDamageFlat": 121, - "kModifyOutgoingHeal": 28, - "kModifyOutgoingHealFlat": 120, - "kModifyOutgoingDamageType": 29, - "kModifyOutgoingArmorPiercing": 30, - "kModifyOutgoingStealHealth": 31, - "kModifyIncomingStealHealth": 32, - "kBounceNext": 33, - "kBouncePrevious": 34, - "kBounceBack": 35, - "kBounceAll": 36, - "kAbsorbDamage": 37, - "kAbsorbHeal": 38, - "kModifyAccuracy": 39, - "kDispel": 40, - "kConfusion": 41, - "kCloakedCharm": 42, - "kCloakedWard": 43, - "kStunResist": 44, - "kClue": 111, - "kPipConversion": 45, - "kCritBoost": 46, - "kCritBlock": 47, - "kPolymorph": 48, - "kDelayCast": 49, - "kModifyCardCloak": 50, - "kModifyCardDamage": 51, - "kModifyCardAccuracy": 53, - "kModifyCardMutation": 54, - "kModifyCardRank": 55, - "kModifyCardArmorPiercing": 56, - "kSummonCreature": 65, - "kTeleportPlayer": 66, - "kStun": 67, - "kDampen": 68, - "kReshuffle": 69, - "kMindControl": 70, - "kModifyPips": 71, - "kModifyPowerPips": 72, - "kModifyShadowPips": 73, - "kModifyHate": 74, - "kDamageOverTime": 75, - "kHealOverTime": 76, - "kModifyPowerPipChance": 77, - "kModifyRank": 78, - "kStunBlock": 79, - "kRevealCloak": 80, - "kInstantKill": 81, - "kAfterlife": 82, - "kDeferredDamage": 83, - "kDamagePerTotalPipPower": 84, - "kModifyCardHeal": 52, - "kModifyCardCharm": 57, - "kModifyCardWard": 58, - "kModifyCardOutgoingDamage": 59, - "kModifyCardOutgoingAccuracy": 60, - "kModifyCardOutgoingHeal": 61, - "kModifyCardOutgoingArmorPiercing": 62, - "kModifyCardIncomingDamage": 63, - "kModifyCardAbsorbDamage": 64, - "kCloakedWardNoRemove": 86, - "kAddCombatTriggerList": 87, - "kRemoveCombatTriggerList": 88, - "kBacklashDamage": 89, - "kModifyBacklash": 90, - "kIntercept": 91, - "kShadowSelf": 92, - "kShadowCreature": 93, - "kModifyShadowCreatureLevel": 94, - "kSelectShadowCreatureAttackTarget": 95, - "kShadowDecrementTurn": 96, - "kCritBoostSchoolSpecific": 97, - "kSpawnCreature": 98, - "kUnPolymorph": 99, - "kPowerPipConversion": 100, - "kProtectCardBeneficial": 101, - "kProtectCardHarmful": 102, - "kProtectBeneficial": 103, - "kProtectHarmful": 104, - "kDivideDamage": 105, - "kCollectEssence": 106, - "kKillCreature": 107, - "kDispelBlock": 108, - "kConfusionBlock": 109, - "kModifyPipRoundRate": 110, - "kMaxHealthDamage": 112, - "kUntargetable": 114, - "kMakeTargetable": 115, - "kForceTargetable": 116, - "kRemoveStunBlock": 117, - "kExitCombat": 122, - "kSuspendPips": 123, - "kResumePips": 124, - "kAutoPass": 125, - "kStopAutoPass": 126, - "kVanish": 127, - "kStopVanish": 128, - "kMaxHealthHeal": 129, - "kHealByWard": 130, - "kTaunt": 131, - "kPacify": 132, - "kRemoveTargetRestriction": 133, - "kConvertHangingEffect": 134, - "kAddSpellToDeck": 135, - "kAddSpellToHand": 136, - "kModifyIncomingDamageOverTime": 137, - "kModifyIncomingHealOverTime": 138, - "kModifyCardDamagebyRank": 139, - "kPushConvertedCharm": 140, - "kStealConvertedCharm": 141, - "kPushConvertedWard": 142, - "kStealConvertedWard": 143, - "kPushConvertedOverTime": 144, - "kStealConvertedOverTime": 145, - "kRemoveConvertedCharm": 146, - "kRemoveConvertedWard": 147, - "kRemoveConvertedOverTime": 148, - "kModifyOverTimeDuration": 149, - "kModifySchoolPips": 150 - } - }, - "m_effectParam": { - "type": "int", - "id": 1, - "offset": 76, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 357920024 - }, - "m_disposition": { - "type": "enum SpellEffect::kHangingDisposition", - "id": 2, - "offset": 80, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1904841031, - "enum_options": { - "kBoth": 0, - "kBeneficial": 1, - "kHarmful": 2 - } - }, - "m_sDamageType": { - "type": "std::string", - "id": 3, - "offset": 88, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2501054223 - }, - "m_damageType": { - "type": "unsigned int", - "id": 4, - "offset": 84, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 737882766 - }, - "m_pipNum": { - "type": "int", - "id": 5, - "offset": 128, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 830827539 - }, - "m_actNum": { - "type": "int", - "id": 6, - "offset": 132, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 236824866 - }, - "m_effectTarget": { - "type": "enum SpellEffect::kEffectTarget", - "id": 7, - "offset": 140, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2458940523, - "enum_options": { - "kInvalidTarget": 0, - "kSpell": 1, - "kSpecificSpells": 2, - "kGlobal": 3, - "kEnemyTeam": 4, - "kEnemyTeamAllAtOnce": 5, - "kFriendlyTeam": 6, - "kFriendlyTeamAllAtOnce": 7, - "kEnemySingle": 8, - "kFriendlySingle": 9, - "kMinion": 10, - "kFriendlyMinion": 17, - "kEnemyMinion": 18, - "kSelf": 11, - "kAtLeastOneEnemy": 13, - "kPreselectedEnemySingle": 12, - "kMultiTargetEnemy": 14, - "kMultiTargetFriendly": 15, - "kFriendlySingleNotMe": 16 - } - }, - "m_numRounds": { - "type": "int", - "id": 8, - "offset": 144, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1229753829 - }, - "m_paramPerRound": { - "type": "int", - "id": 9, - "offset": 148, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 683234234 - }, - "m_healModifier": { - "type": "float", - "id": 10, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1317921248, - "enum_options": { - "__DEFAULT": "1.0" - } - }, - "m_spellTemplateID": { - "type": "unsigned int", - "id": 11, - "offset": 120, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 585567702 - }, - "m_enchantmentSpellTemplateID": { - "type": "unsigned int", - "id": 12, - "offset": 124, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 246955115 - }, - "m_act": { - "type": "bool", - "id": 13, - "offset": 136, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 269510283 - }, - "m_cloaked": { - "type": "bool", - "id": 14, - "offset": 157, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 7349510 - }, - "m_bypassProtection": { - "type": "bool", - "id": 15, - "offset": 159, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1657138252 - }, - "m_armorPiercingParam": { - "type": "int", - "id": 16, - "offset": 160, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2025530205 - }, - "m_chancePerTarget": { - "type": "int", - "id": 17, - "offset": 164, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 845426794 - }, - "m_protected": { - "type": "bool", - "id": 18, - "offset": 168, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1445655037 - }, - "m_converted": { - "type": "bool", - "id": 19, - "offset": 169, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1590428797 - }, - "m_rank": { - "type": "int", - "id": 20, - "offset": 208, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 219803942 - }, - "m_effectLists": { - "type": "class SharedPointer", - "id": 21, - "offset": 224, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1054793289 - } - } - }, - "620760963": { - "name": "class SharedPointer", - "bases": [ - "InteractiveMusicBehaviorBase", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 620760963, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_musicData": { - "type": "std::string", - "id": 1, - "offset": 200, - "flags": 66087, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2963606294 - } - } - }, - "1006965807": { - "name": "class ReqHasSecondarySchool", - "bases": [ - "Requirement", - "PropertyClass" - ], - "hash": 1006965807, - "properties": { - "m_applyNOT": { - "type": "bool", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1746328074, - "enum_options": { - "__DEFAULT": 0 - } - }, - "m_operator": { - "type": "enum Requirement::Operator", - "id": 1, - "offset": 76, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2672792317, - "enum_options": { - "ROP_AND": 0, - "ROP_OR": 1, - "__DEFAULT": "ROP_AND" - } - }, - "m_secondarySchool": { - "type": "std::string", - "id": 2, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1765721963 - } - } - }, - "620450973": { - "name": "struct SimpleVert", - "bases": [], - "hash": 620450973, - "properties": {} - }, - "1006965039": { - "name": "class ReqHasSecondarySchool*", - "bases": [ - "Requirement", - "PropertyClass" - ], - "hash": 1006965039, - "properties": { - "m_applyNOT": { - "type": "bool", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1746328074, - "enum_options": { - "__DEFAULT": 0 - } - }, - "m_operator": { - "type": "enum Requirement::Operator", - "id": 1, - "offset": 76, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2672792317, - "enum_options": { - "ROP_AND": 0, - "ROP_OR": 1, - "__DEFAULT": "ROP_AND" - } - }, - "m_secondarySchool": { - "type": "std::string", - "id": 2, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1765721963 - } - } - }, - "1007200049": { - "name": "class SharedPointer", - "bases": [ - "GoalTemplate", - "CoreTemplate", - "PropertyClass" - ], - "hash": 1007200049, - "properties": { - "m_behaviors": { - "type": "class BehaviorTemplate*", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1197808594 - }, - "m_goalName": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1521627807 - }, - "m_goalNameID": { - "type": "unsigned int", - "id": 2, - "offset": 496, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 403158846 - }, - "m_goalTitle": { - "type": "std::string", - "id": 3, - "offset": 136, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2291910240 - }, - "m_goalUnderway": { - "type": "std::string", - "id": 4, - "offset": 168, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3153144269 - }, - "m_hyperlink": { - "type": "std::string", - "id": 5, - "offset": 200, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2887798993 - }, - "m_completeText": { - "type": "std::string", - "id": 6, - "offset": 232, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2767458393 - }, - "m_completeResults": { - "type": "class ResultList*", - "id": 7, - "offset": 440, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1964258099 - }, - "m_goalRequirements": { - "type": "class RequirementList*", - "id": 8, - "offset": 448, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2979967145 - }, - "m_tallyCounter": { - "type": "class TallyCounterTemplate*", - "id": 9, - "offset": 456, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1884546193 - }, - "m_locationName": { - "type": "std::string", - "id": 10, - "offset": 272, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1824218389 - }, - "m_displayImage1": { - "type": "std::string", - "id": 11, - "offset": 304, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1959572133 - }, - "m_displayImage2": { - "type": "std::string", - "id": 12, - "offset": 336, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1959572134 - }, - "m_clientTags": { - "type": "std::string", - "id": 13, - "offset": 368, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2319030025 - }, - "m_genericEvents": { - "type": "std::string", - "id": 14, - "offset": 384, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 3466670829 - }, - "m_autoQualify": { - "type": "bool", - "id": 15, - "offset": 400, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1878907431 - }, - "m_autoComplete": { - "type": "bool", - "id": 16, - "offset": 401, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1302545445 - }, - "m_destinationZone": { - "type": "std::string", - "id": 17, - "offset": 408, - "flags": 268435463, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2605356153, - "enum_options": { - "__BASECLASS": "ZoneData" - } - }, - "m_dialogList": { - "type": "class ActorDialogListBase*", - "id": 18, - "offset": 264, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1909154969 - }, - "m_goalType": { - "type": "enum GoalTemplate::GOAL_TYPE", - "id": 19, - "offset": 96, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1488021149, - "enum_options": { - "GOAL_TYPE_UNKNOWN": 0, - "GOAL_TYPE_BOUNTY": 1, - "GOAL_TYPE_BOUNTYCOLLECT": 2, - "GOAL_TYPE_SCAVENGE": 3, - "GOAL_TYPE_PERSONA": 4, - "GOAL_TYPE_WAYPOINT": 5, - "GOAL_TYPE_SCAVENGEFAKE": 6, - "GOAL_TYPE_ACHIEVERANK": 7, - "GOAL_TYPE_USAGE": 8, - "GOAL_TYPE_COMPLETEQUEST": 9, - "GOAL_TYPE_SOCIARANK": 10, - "GOAL_TYPE_SOCIACURRENCY": 11, - "GOAL_TYPE_SOCIAMINIGAME": 12, - "GOAL_TYPE_SOCIAGIVEITEM": 13, - "GOAL_TYPE_SOCIAGETITEM": 14, - "GOAL_TYPE_COLLECTAFTERBOUNTY": 15, - "GOAL_TYPE_ENCOUNTER_WAYPOINT_FOREACH": 16 - } - }, - "m_noQuestHelper": { - "type": "bool", - "id": 20, - "offset": 500, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 578010882, - "enum_options": { - "__DEFAULT": 0 - } - }, - "m_petOnlyQuest": { - "type": "bool", - "id": 21, - "offset": 501, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 679359344, - "enum_options": { - "__DEFAULT": 0 - } - }, - "m_activateResults": { - "type": "class ResultList*", - "id": 22, - "offset": 504, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3790153995 - }, - "m_hideGoalFloatyText": { - "type": "bool", - "id": 23, - "offset": 512, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1919383204, - "enum_options": { - "__DEFAULT": 0 - } - }, - "m_personaName": { - "type": "std::string", - "id": 24, - "offset": 520, - "flags": 268435463, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2514452244, - "enum_options": { - "__BASECLASS": "Persona" - } - }, - "m_usePatron": { - "type": "bool", - "id": 25, - "offset": 552, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 853266164 - } - } - }, - "622683300": { - "name": "class ControlStretcher", - "bases": [ - "Window", - "PropertyClass" - ], - "hash": 622683300, - "properties": { - "m_sName": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306437263 - }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621225959 - }, - "m_Style": { - "type": "unsigned int", - "id": 2, - "offset": 152, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152, - "STRETCH_VERTICALLY": 16777216 - } - }, - "m_Flags": { - "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } - }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3105139380 - }, - "m_fTargetAlpha": { - "type": "float", - "id": 5, - "offset": 212, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1809129834 - }, - "m_fDisabledAlpha": { - "type": "float", - "id": 6, - "offset": 216, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1389987675 - }, - "m_fAlpha": { - "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 482130755 - }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3623628394 - }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2102211316 - }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1846695875 - }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3389835433 - }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2547159940 - }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2587533771 - }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3091503757 - }, - "m_pTopLeftMaterial": { - "type": "class SharedPointer", - "id": 16, - "offset": 584, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3248096916 - }, - "m_pCenterMaterial": { - "type": "class SharedPointer", - "id": 17, - "offset": 600, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1519560055 - }, - "m_pBottomRightMaterial": { - "type": "class SharedPointer", - "id": 18, - "offset": 616, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2932444745 - }, - "m_MaximumSize": { - "type": "class Size", - "id": 19, - "offset": 632, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1781954165 - }, - "m_MinimumSize": { - "type": "class Size", - "id": 20, - "offset": 640, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2108593523 - } - } - }, - "1007179792": { - "name": "class DamageLimitOverride*", - "bases": [ - "CombatRule", - "PropertyClass" - ], - "hash": 1007179792, - "properties": { - "m_damageLimit": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 271286357 - }, - "m_dK0": { - "type": "float", - "id": 1, - "offset": 76, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 357232662 - }, - "m_dN0": { - "type": "float", - "id": 2, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 357232761 - } - } - }, - "621074346": { - "name": "class NonCombatMayCastSpellDescription*", - "bases": [ - "PropertyClass" - ], - "hash": 621074346, - "properties": { - "m_description": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1649374815 - }, - "m_displaySpellName": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 268435463, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3323484466, - "enum_options": { - "__BASECLASS": "SpellTemplate" - } - } - } - }, - "1007853913": { - "name": "class StatisticEffectInfo*", - "bases": [ - "GameEffectInfo", - "PropertyClass" - ], - "hash": 1007853913, - "properties": { - "m_effectName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2029161513 - }, - "m_lookupIndex": { - "type": "int", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1626623948 - } - } - }, - "623095051": { - "name": "class SharedPointer", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 623095051, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - } - } - }, - "1007398909": { - "name": "class TargetCountSpellEffect", - "bases": [ - "SpellEffect", - "PropertyClass" - ], - "hash": 1007398909, - "properties": { - "m_effectType": { - "type": "enum SpellEffect::kSpellEffects", - "id": 0, - "offset": 72, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2578255295, - "enum_options": { - "kInvalidSpellEffect": 0, - "kDamage": 1, - "kDamageNoCrit": 2, - "kHeal": 3, - "kHealPercent": 4, - "kSetHealPercent": 113, - "kStealHealth": 5, - "kReduceOverTime": 6, - "kDetonateOverTime": 7, - "kPushCharm": 8, - "kStealCharm": 9, - "kPushWard": 10, - "kStealWard": 11, - "kPushOverTime": 12, - "kStealOverTime": 13, - "kRemoveCharm": 14, - "kRemoveWard": 15, - "kRemoveOverTime": 16, - "kRemoveAura": 17, - "kSwapAll": 18, - "kSwapCharm": 19, - "kSwapWard": 20, - "kSwapOverTime": 21, - "kModifyIncomingDamage": 22, - "kModifyIncomingDamageFlat": 119, - "kMaximumIncomingDamage": 23, - "kModifyIncomingHeal": 24, - "kModifyIncomingHealFlat": 118, - "kModifyIncomingDamageType": 25, - "kModifyIncomingArmorPiercing": 26, - "kModifyOutgoingDamage": 27, - "kModifyOutgoingDamageFlat": 121, - "kModifyOutgoingHeal": 28, - "kModifyOutgoingHealFlat": 120, - "kModifyOutgoingDamageType": 29, - "kModifyOutgoingArmorPiercing": 30, - "kModifyOutgoingStealHealth": 31, - "kModifyIncomingStealHealth": 32, - "kBounceNext": 33, - "kBouncePrevious": 34, - "kBounceBack": 35, - "kBounceAll": 36, - "kAbsorbDamage": 37, - "kAbsorbHeal": 38, - "kModifyAccuracy": 39, - "kDispel": 40, - "kConfusion": 41, - "kCloakedCharm": 42, - "kCloakedWard": 43, - "kStunResist": 44, - "kClue": 111, - "kPipConversion": 45, - "kCritBoost": 46, - "kCritBlock": 47, - "kPolymorph": 48, - "kDelayCast": 49, - "kModifyCardCloak": 50, - "kModifyCardDamage": 51, - "kModifyCardAccuracy": 53, - "kModifyCardMutation": 54, - "kModifyCardRank": 55, - "kModifyCardArmorPiercing": 56, - "kSummonCreature": 65, - "kTeleportPlayer": 66, - "kStun": 67, - "kDampen": 68, - "kReshuffle": 69, - "kMindControl": 70, - "kModifyPips": 71, - "kModifyPowerPips": 72, - "kModifyShadowPips": 73, - "kModifyHate": 74, - "kDamageOverTime": 75, - "kHealOverTime": 76, - "kModifyPowerPipChance": 77, - "kModifyRank": 78, - "kStunBlock": 79, - "kRevealCloak": 80, - "kInstantKill": 81, - "kAfterlife": 82, - "kDeferredDamage": 83, - "kDamagePerTotalPipPower": 84, - "kModifyCardHeal": 52, - "kModifyCardCharm": 57, - "kModifyCardWard": 58, - "kModifyCardOutgoingDamage": 59, - "kModifyCardOutgoingAccuracy": 60, - "kModifyCardOutgoingHeal": 61, - "kModifyCardOutgoingArmorPiercing": 62, - "kModifyCardIncomingDamage": 63, - "kModifyCardAbsorbDamage": 64, - "kCloakedWardNoRemove": 86, - "kAddCombatTriggerList": 87, - "kRemoveCombatTriggerList": 88, - "kBacklashDamage": 89, - "kModifyBacklash": 90, - "kIntercept": 91, - "kShadowSelf": 92, - "kShadowCreature": 93, - "kModifyShadowCreatureLevel": 94, - "kSelectShadowCreatureAttackTarget": 95, - "kShadowDecrementTurn": 96, - "kCritBoostSchoolSpecific": 97, - "kSpawnCreature": 98, - "kUnPolymorph": 99, - "kPowerPipConversion": 100, - "kProtectCardBeneficial": 101, - "kProtectCardHarmful": 102, - "kProtectBeneficial": 103, - "kProtectHarmful": 104, - "kDivideDamage": 105, - "kCollectEssence": 106, - "kKillCreature": 107, - "kDispelBlock": 108, - "kConfusionBlock": 109, - "kModifyPipRoundRate": 110, - "kMaxHealthDamage": 112, - "kUntargetable": 114, - "kMakeTargetable": 115, - "kForceTargetable": 116, - "kRemoveStunBlock": 117, - "kExitCombat": 122, - "kSuspendPips": 123, - "kResumePips": 124, - "kAutoPass": 125, - "kStopAutoPass": 126, - "kVanish": 127, - "kStopVanish": 128, - "kMaxHealthHeal": 129, - "kHealByWard": 130, - "kTaunt": 131, - "kPacify": 132, - "kRemoveTargetRestriction": 133, - "kConvertHangingEffect": 134, - "kAddSpellToDeck": 135, - "kAddSpellToHand": 136, - "kModifyIncomingDamageOverTime": 137, - "kModifyIncomingHealOverTime": 138, - "kModifyCardDamagebyRank": 139, - "kPushConvertedCharm": 140, - "kStealConvertedCharm": 141, - "kPushConvertedWard": 142, - "kStealConvertedWard": 143, - "kPushConvertedOverTime": 144, - "kStealConvertedOverTime": 145, - "kRemoveConvertedCharm": 146, - "kRemoveConvertedWard": 147, - "kRemoveConvertedOverTime": 148, - "kModifyOverTimeDuration": 149, - "kModifySchoolPips": 150 - } - }, - "m_effectParam": { - "type": "int", - "id": 1, - "offset": 76, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 357920024 - }, - "m_disposition": { - "type": "enum SpellEffect::kHangingDisposition", - "id": 2, - "offset": 80, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1904841031, - "enum_options": { - "kBoth": 0, - "kBeneficial": 1, - "kHarmful": 2 - } - }, - "m_sDamageType": { - "type": "std::string", - "id": 3, - "offset": 88, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2501054223 - }, - "m_damageType": { - "type": "unsigned int", - "id": 4, - "offset": 84, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 737882766 - }, - "m_pipNum": { - "type": "int", - "id": 5, - "offset": 128, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 830827539 - }, - "m_actNum": { - "type": "int", - "id": 6, - "offset": 132, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 236824866 - }, - "m_effectTarget": { - "type": "enum SpellEffect::kEffectTarget", - "id": 7, - "offset": 140, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2458940523, - "enum_options": { - "kInvalidTarget": 0, - "kSpell": 1, - "kSpecificSpells": 2, - "kGlobal": 3, - "kEnemyTeam": 4, - "kEnemyTeamAllAtOnce": 5, - "kFriendlyTeam": 6, - "kFriendlyTeamAllAtOnce": 7, - "kEnemySingle": 8, - "kFriendlySingle": 9, - "kMinion": 10, - "kFriendlyMinion": 17, - "kEnemyMinion": 18, - "kSelf": 11, - "kAtLeastOneEnemy": 13, - "kPreselectedEnemySingle": 12, - "kMultiTargetEnemy": 14, - "kMultiTargetFriendly": 15, - "kFriendlySingleNotMe": 16 - } - }, - "m_numRounds": { - "type": "int", - "id": 8, - "offset": 144, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1229753829 - }, - "m_paramPerRound": { - "type": "int", - "id": 9, - "offset": 148, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 683234234 - }, - "m_healModifier": { - "type": "float", - "id": 10, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1317921248, - "enum_options": { - "__DEFAULT": "1.0" - } - }, - "m_spellTemplateID": { - "type": "unsigned int", - "id": 11, - "offset": 120, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 585567702 - }, - "m_enchantmentSpellTemplateID": { - "type": "unsigned int", - "id": 12, - "offset": 124, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 246955115 - }, - "m_act": { - "type": "bool", - "id": 13, - "offset": 136, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 269510283 - }, - "m_cloaked": { - "type": "bool", - "id": 14, - "offset": 157, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 7349510 - }, - "m_bypassProtection": { - "type": "bool", - "id": 15, - "offset": 159, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1657138252 - }, - "m_armorPiercingParam": { - "type": "int", - "id": 16, - "offset": 160, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2025530205 - }, - "m_chancePerTarget": { - "type": "int", - "id": 17, - "offset": 164, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 845426794 - }, - "m_protected": { - "type": "bool", - "id": 18, - "offset": 168, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1445655037 - }, - "m_converted": { - "type": "bool", - "id": 19, - "offset": 169, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1590428797 - }, - "m_rank": { - "type": "int", - "id": 20, - "offset": 208, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 219803942 - }, - "m_effectLists": { - "type": "class SharedPointer", - "id": 21, - "offset": 224, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1054793289 - } - } - }, - "623090702": { - "name": "class JewelVaultBehavior", - "bases": [ - "JewelVaultBehaviorBase", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 623090702, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_jewelList": { - "type": "unsigned int", - "id": 1, - "offset": 112, - "flags": 65543, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1839384000 - }, - "m_jewelData": { - "type": "std::string", - "id": 2, - "offset": 128, - "flags": 551, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3125384972 - } - } - }, - "623039316": { - "name": "class MobRankLevel", - "bases": [ - "PropertyClass" - ], - "hash": 623039316, - "properties": { - "m_rank": { - "type": "int", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 219803942 - }, - "m_level": { - "type": "int", - "id": 1, - "offset": 76, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 801285362 - } - } - }, - "1008725497": { - "name": "class BurnHangingEffectCinematicAction*", - "bases": [ - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 1008725497, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - }, - "m_cloaked": { - "type": "bool", - "id": 2, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 7349510 - }, - "m_detonate": { - "type": "bool", - "id": 3, - "offset": 153, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1738601959 - }, - "m_burnSound": { - "type": "std::string", - "id": 4, - "offset": 120, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1827806971 - } - } - }, - "623319248": { - "name": "class HatchmakingPremiumPetsList*", - "bases": [ - "PropertyClass" - ], - "hash": 623319248, - "properties": { - "m_addedPremiumPets": { - "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2021117594 - }, - "m_removedPremiumPets": { - "type": "unsigned int", - "id": 1, - "offset": 88, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 636888858 - } - } - }, - "1010776233": { - "name": "struct std::pair,class std::allocator > >", - "bases": [], - "hash": 1010776233, - "properties": {} - }, - "623319238": { - "name": "class HatchmakingPremiumPetsList", - "bases": [ - "PropertyClass" - ], - "hash": 623319238, - "properties": { - "m_addedPremiumPets": { - "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2021117594 - }, - "m_removedPremiumPets": { - "type": "unsigned int", - "id": 1, - "offset": 88, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 636888858 - } - } - }, - "1009616687": { - "name": "class DependentResourcesBehavior*", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1009616687, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - } - } - }, - "1009616677": { - "name": "class DependentResourcesBehavior", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1009616677, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - } - } - }, - "623766113": { - "name": "class SharedPointer", - "bases": [], - "hash": 623766113, - "properties": { - "m_templateID": { - "type": "gid", - "id": 0, - "offset": 88, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1075328001 - }, - "m_sortName": { - "type": "std::wstring", - "id": 1, - "offset": 352, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2312609697 - }, - "m_crownsCost": { - "type": "int", - "id": 2, - "offset": 336, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1592212719 - }, - "m_goldCost": { - "type": "int", - "id": 3, - "offset": 332, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 444550297 - }, - "m_description": { - "type": "std::wstring", - "id": 4, - "offset": 424, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1445360156 - }, - "m_category": { - "type": "unsigned int", - "id": 5, - "offset": 328, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1395753067 - }, - "m_isBundle": { - "type": "bool", - "id": 6, - "offset": 389, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1180966953 - }, - "m_sortType": { - "type": "int", - "id": 7, - "offset": 384, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1019166596 - }, - "m_itemLimitReached": { - "type": "bool", - "id": 8, - "offset": 261, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1250328557 - }, - "m_islandOwned": { - "type": "bool", - "id": 9, - "offset": 275, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 314755307 - } - } - }, - "1010369810": { - "name": "class SharedPointer", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1010369810, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_active": { - "type": "bool", - "id": 1, - "offset": 112, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 239335471 - } - } - }, - "627618564": { - "name": "class RenamePipActorsFromResult*", - "bases": [ - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 627618564, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - }, - "m_newActorName": { - "type": "std::string", - "id": 2, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2029131039 - }, - "m_newActorName2": { - "type": "std::string", - "id": 3, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1852236785 - }, - "m_oldActorName": { - "type": "std::string", - "id": 4, - "offset": 184, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2191892948 - } - } - }, - "626336237": { - "name": "class TieredSpellGroup*", - "bases": [ - "PropertyClass" - ], - "hash": 626336237, - "properties": { - "m_tierOneSpell": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1522049297 - }, - "m_adjectiveList": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 3195213318 - }, - "m_returnRate": { - "type": "unsigned int", - "id": 2, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1243911353 - }, - "m_unhideReqs": { - "type": "class RequirementList*", - "id": 3, - "offset": 128, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1858952922 - }, - "m_shardType": { - "type": "gid", - "id": 4, - "offset": 136, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1047787692 - }, - "m_overrideStringNotEnoughShards": { - "type": "std::string", - "id": 5, - "offset": 144, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2854831694 - }, - "m_crownsResetSubscribers": { - "type": "unsigned int", - "id": 6, - "offset": 176, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1405160851 - }, - "m_goldResetSubscribers": { - "type": "unsigned int", - "id": 7, - "offset": 180, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2047077437 - }, - "m_crownsResetNonSubscribers": { - "type": "unsigned int", - "id": 8, - "offset": 184, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2241447230 - }, - "m_goldResetNonSubscribers": { - "type": "unsigned int", - "id": 9, - "offset": 188, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 380967848 - } - } - }, - "1011626078": { - "name": "class SoundDefTemplate*", - "bases": [ - "CoreTemplate", - "PropertyClass" - ], - "hash": 1011626078, - "properties": { - "m_behaviors": { - "type": "class BehaviorTemplate*", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1197808594 - }, - "m_soundName": { - "type": "std::string", - "id": 1, - "offset": 96, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2277149669 - }, - "m_soundFile": { - "type": "std::string", - "id": 2, - "offset": 136, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2276870852 - }, - "m_delay": { - "type": "double", - "id": 3, - "offset": 168, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2689597116 - } - } - }, - "624344862": { - "name": "class std::list >", - "bases": [], - "hash": 624344862, - "properties": {} - }, - "1011303882": { - "name": "class SharedPointer", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 1011303882, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - }, - "m_galleryWorld": { - "type": "std::string", - "id": 1, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3310813907 - }, - "m_exhibit": { - "type": "std::string", - "id": 2, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2399621352 - } - } - }, - "624226416": { - "name": "class SharedPointer", - "bases": [ - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 624226416, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - }, - "m_position": { - "type": "class Vector3D", - "id": 2, - "offset": 124, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3697900983 - }, - "m_yawPitchRoll": { - "type": "class Vector3D", - "id": 3, - "offset": 136, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3349460132 - }, - "m_clonePlayer": { - "type": "bool", - "id": 4, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1369917873 - } - } - }, - "1011789918": { - "name": "class SoundDefTemplate", - "bases": [ - "CoreTemplate", - "PropertyClass" - ], - "hash": 1011789918, - "properties": { - "m_behaviors": { - "type": "class BehaviorTemplate*", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1197808594 - }, - "m_soundName": { - "type": "std::string", - "id": 1, - "offset": 96, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2277149669 - }, - "m_soundFile": { - "type": "std::string", - "id": 2, - "offset": 136, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2276870852 - }, - "m_delay": { - "type": "double", - "id": 3, - "offset": 168, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2689597116 - } - } - }, - "625705139": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 625705139, - "properties": { - "m_stringList": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1880105486 - } - } - }, - "624953103": { - "name": "class BoosterPackLootTypeMaxes*", - "bases": [ - "PropertyClass" - ], - "hash": 624953103, - "properties": { - "m_lootType": { - "type": "enum LootInfo::LOOT_TYPE", - "id": 0, - "offset": 72, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1591891442, - "enum_options": { - "LOOT_TYPE_NONE": 0, - "LOOT_TYPE_GOLD": 1, - "LOOT_TYPE_MANA": 2, - "LOOT_TYPE_ITEM": 3, - "LOOT_TYPE_TREASURE_CARD": 4, - "LOOT_TYPE_MAGIC_XP": 5, - "LOOT_TYPE_ADD_SPELL": 6, - "LOOT_TYPE_MAX_HEALTH": 7, - "LOOT_TYPE_MAX_GOLD": 8, - "LOOT_TYPE_MAX_MANA": 9, - "LOOT_TYPE_MAX_POTION": 10, - "LOOT_TYPE_TRAINING_POINTS": 11, - "LOOT_TYPE_RECIPE": 12, - "LOOT_TYPE_CRAFTING_SLOT": 13, - "LOOT_TYPE_REAGENT": 14, - "LOOT_TYPE_PETSNACK": 15, - "LOOT_TYPE_GARDENING_XP": 16, - "LOOT_TYPE_PET_XP": 17, - "LOOT_TYPE_TREASURE_TABLE": 18, - "LOOT_TYPE_ARENA_POINTS": 19, - "LOOT_TYPE_ARENA_BONUS_POINTS": 20, - "LOOT_TYPE_GROUP": 21, - "LOOT_TYPE_FISHING_XP": 22, - "LOOT_TYPE_JEWEL": 23, - "LOOT_TYPE_EMOTE": 23, - "LOOT_TYPE_TELEPORT_EFFECT": 23, - "LOOT_TYPE_PVP_CURRENCY": 26, - "LOOT_TYPE_PVP_CURRENCY_BONUS": 27, - "LOOT_TYPE_PVP_TOURNEY_CURRENCY": 28, - "LOOT_TYPE_PVP_TOURNEY_CURRENCY_BONUS": 29, - "LOOT_TYPE_FURNITURE_ESSENCE": 30 - } - }, - "m_max": { - "type": "int", - "id": 1, - "offset": 76, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 267042112 - } - } - }, - "1012115742": { - "name": "class PathActionZoneEvent*", - "bases": [ - "PathBehaviorTemplate::Action", - "PropertyClass" - ], - "hash": 1012115742, - "properties": { - "m_nPathID": { - "type": "gid", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 214382368 - }, - "m_nNodeID": { - "type": "int", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 152152635, - "enum_options": { - "__DEFAULT": 4294967295 - } - }, - "m_nPriority": { - "type": "int", - "id": 2, - "offset": 84, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1515251530, - "enum_options": { - "__DEFAULT": 100 - } - }, - "m_nChance": { - "type": "int", - "id": 3, - "offset": 88, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1860748394, - "enum_options": { - "__DEFAULT": 50 - } - }, - "m_zoneEvent": { - "type": "std::string", - "id": 4, - "offset": 96, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2234553529 - } - } - }, - "626301605": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 626301605, - "properties": { - "m_event": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2291276253 - }, - "m_newState": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2153420230 - }, - "m_requiredState": { - "type": "std::string", - "id": 2, - "offset": 136, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2654559709 - } - } - }, - "1012990469": { - "name": "class SpellCheckBox*", - "bases": [ - "ControlCheckBox", - "ControlButton", - "Window", - "PropertyClass" - ], - "hash": 1012990469, - "properties": { - "m_sName": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306437263 - }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621225959 - }, - "m_Style": { - "type": "unsigned int", - "id": 2, - "offset": 152, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152, - "EFFECT_SCALE": 67108864, - "LOCK_ICON_SIZE": 33554432, - "LEFT_TEXT": 536870912, - "NO_FIT_TEXT": 1073741824, - "CHECKBOX_TEXTOVERIMAGE": 16777216 - } - }, - "m_Flags": { - "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } - }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3105139380 - }, - "m_fTargetAlpha": { - "type": "float", - "id": 5, - "offset": 212, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1809129834 - }, - "m_fDisabledAlpha": { - "type": "float", - "id": 6, - "offset": 216, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1389987675 - }, - "m_fAlpha": { - "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 482130755 - }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3623628394 - }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2102211316 - }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1846695875 - }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3389835433 - }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2547159940 - }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2587533771 - }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3091503757 - }, - "m_bToggle": { - "type": "bool", - "id": 16, - "offset": 608, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2071810903 - }, - "m_bButtonDown": { - "type": "bool", - "id": 17, - "offset": 609, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 840041705 - }, - "m_sLabel": { - "type": "std::wstring", - "id": 18, - "offset": 616, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2207009163 - }, - "m_labelOffset": { - "type": "class Rect", - "id": 19, - "offset": 832, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1990646723 - }, - "m_pButton": { - "type": "class SharedPointer", - "id": 20, - "offset": 656, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1543855875 - }, - "m_HotKey": { - "type": "unsigned int", - "id": 21, - "offset": 672, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1631553409 - }, - "m_Color": { - "type": "class Color", - "id": 22, - "offset": 676, - "flags": 262279, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1753714077 - }, - "m_bCursorOver": { - "type": "bool", - "id": 23, - "offset": 689, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 283981103 - }, - "m_bAbortWhenCursorNotOver": { - "type": "bool", - "id": 24, - "offset": 706, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 325405258 - }, - "m_bHotKeyDown": { - "type": "bool", - "id": 25, - "offset": 680, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 616989185 - }, - "m_fTime": { - "type": "float", - "id": 26, - "offset": 684, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 883746156 - }, - "m_bGreyed": { - "type": "bool", - "id": 27, - "offset": 688, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1566556053 - }, - "m_fMaxScale": { - "type": "float", - "id": 28, - "offset": 692, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2070186635 - }, - "m_fScaleSpeed": { - "type": "float", - "id": 29, - "offset": 696, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1457135702 - }, - "m_bUseDropShadow": { - "type": "bool", - "id": 30, - "offset": 704, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 93063037 - }, - "m_bUseOutline": { - "type": "bool", - "id": 31, - "offset": 705, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 744292994 - }, - "m_pGreyedState": { - "type": "class SharedPointer", - "id": 32, - "offset": 768, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2703352263 - }, - "m_pNormalState": { - "type": "class SharedPointer", - "id": 33, - "offset": 752, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1887909808 - }, - "m_pHighlightedState": { - "type": "class SharedPointer", - "id": 34, - "offset": 784, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2200177608 - }, - "m_pSelectedState": { - "type": "class SharedPointer", - "id": 35, - "offset": 800, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2266776432 - }, - "m_pDepressedState": { - "type": "class SharedPointer", - "id": 36, - "offset": 816, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1878185798 - }, - "m_nGroupID": { - "type": "int", - "id": 37, - "offset": 880, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 403966850 - }, - "m_bChecked": { - "type": "bool", - "id": 38, - "offset": 884, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 958955100 - }, - "m_pCheckedState": { - "type": "class SharedPointer", - "id": 39, - "offset": 888, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1210539694 - }, - "m_pCheckedGreyedState": { - "type": "class SharedPointer", - "id": 40, - "offset": 904, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2702030126 - }, - "m_pCheckedHighlightedState": { - "type": "class SharedPointer", - "id": 41, - "offset": 920, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1320097679 - }, - "m_pCheckedDepressedState": { - "type": "class SharedPointer", - "id": 42, - "offset": 936, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1609188685 - } - } - }, - "1012592729": { - "name": "class SharedPointer", - "bases": [ - "ServiceOptionBase", - "PropertyClass" - ], - "hash": 1012592729, - "properties": { - "m_serviceName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2206028813 - }, - "m_iconKey": { - "type": "std::string", - "id": 1, - "offset": 168, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2457138637 - }, - "m_displayKey": { - "type": "std::string", - "id": 2, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3023276954 - }, - "m_serviceIndex": { - "type": "unsigned int", - "id": 3, - "offset": 204, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2103126710 - }, - "m_forceInteract": { - "type": "bool", - "id": 4, - "offset": 200, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1705789564 - } - } - }, - "1012413783": { - "name": "class SharedPointer", - "bases": [ - "CinematicStageTemplate", - "PropertyClass" - ], - "hash": 1012413783, - "properties": { - "m_name": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1717359772 - }, - "m_duration": { - "type": "float", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 920323453 - }, - "m_actions": { - "type": "class SharedPointer", - "id": 2, - "offset": 112, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1380578687 - }, - "m_stageRelationships": { - "type": "class SharedPointer", - "id": 3, - "offset": 128, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 499983354 - }, - "m_hanging": { - "type": "std::string", - "id": 4, - "offset": 152, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3233478999 - }, - "m_protection": { - "type": "std::string", - "id": 5, - "offset": 184, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1874970946 - }, - "m_sound": { - "type": "std::string", - "id": 6, - "offset": 216, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2307644996 - }, - "m_burnSound": { - "type": "std::string", - "id": 7, - "offset": 248, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1827806971 - }, - "m_stopRotating": { - "type": "bool", - "id": 8, - "offset": 282, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 13587553 - }, - "m_startRotating": { - "type": "bool", - "id": 9, - "offset": 283, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 839204969 - }, - "m_spellText": { - "type": "std::string", - "id": 10, - "offset": 288, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2688705600 - }, - "m_bSwitchCameraToWideLong": { - "type": "bool", - "id": 11, - "offset": 280, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2136912684, - "enum_options": { - "__DEFAULT": 1 - } - }, - "m_announcesSpell": { - "type": "bool", - "id": 12, - "offset": 281, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 652261533, - "enum_options": { - "__DEFAULT": 1 - } - } - } - }, - "626500077": { - "name": "class TieredSpellGroup", - "bases": [ - "PropertyClass" - ], - "hash": 626500077, - "properties": { - "m_tierOneSpell": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1522049297 - }, - "m_adjectiveList": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 3195213318 - }, - "m_returnRate": { - "type": "unsigned int", - "id": 2, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1243911353 - }, - "m_unhideReqs": { - "type": "class RequirementList*", - "id": 3, - "offset": 128, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1858952922 - }, - "m_shardType": { - "type": "gid", - "id": 4, - "offset": 136, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1047787692 - }, - "m_overrideStringNotEnoughShards": { - "type": "std::string", - "id": 5, - "offset": 144, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2854831694 - }, - "m_crownsResetSubscribers": { - "type": "unsigned int", - "id": 6, - "offset": 176, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1405160851 - }, - "m_goldResetSubscribers": { - "type": "unsigned int", - "id": 7, - "offset": 180, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2047077437 - }, - "m_crownsResetNonSubscribers": { - "type": "unsigned int", - "id": 8, - "offset": 184, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2241447230 - }, - "m_goldResetNonSubscribers": { - "type": "unsigned int", - "id": 9, - "offset": 188, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 380967848 - } - } - }, - "626385677": { - "name": "class ReqGetExhibitState", - "bases": [ - "ReqNumeric", - "Requirement", - "PropertyClass" - ], - "hash": 626385677, - "properties": { - "m_applyNOT": { - "type": "bool", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1746328074, - "enum_options": { - "__DEFAULT": 0 - } - }, - "m_operator": { - "type": "enum Requirement::Operator", - "id": 1, - "offset": 76, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2672792317, - "enum_options": { - "ROP_AND": 0, - "ROP_OR": 1, - "__DEFAULT": "ROP_AND" - } - }, - "m_numericValue": { - "type": "float", - "id": 2, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 521915239 - }, - "m_operatorType": { - "type": "enum ReqNumeric::OPERATOR_TYPE", - "id": 3, - "offset": 84, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2228122961, - "enum_options": { - "OPERATOR_UNKNOWN": 4294967295, - "OPERATOR_EQUALS": 0, - "OPERATOR_GREATER_THAN": 1, - "OPERATOR_LESS_THAN": 2, - "OPERATOR_GREATER_THAN_EQ": 3, - "OPERATOR_LESS_THAN_EQ": 4 - } - }, - "m_galleryWorld": { - "type": "std::string", - "id": 4, - "offset": 88, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3310813907 - }, - "m_exhibitName": { - "type": "std::string", - "id": 5, - "offset": 120, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1832300681 - }, - "m_testValue": { - "type": "float", - "id": 6, - "offset": 152, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1624748404 - } - } - }, - "1012990464": { - "name": "class SpellCheckBox", - "bases": [ - "ControlCheckBox", - "ControlButton", - "Window", - "PropertyClass" - ], - "hash": 1012990464, - "properties": { - "m_sName": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306437263 - }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621225959 - }, - "m_Style": { - "type": "unsigned int", - "id": 2, - "offset": 152, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152, - "EFFECT_SCALE": 67108864, - "LOCK_ICON_SIZE": 33554432, - "LEFT_TEXT": 536870912, - "NO_FIT_TEXT": 1073741824, - "CHECKBOX_TEXTOVERIMAGE": 16777216 - } - }, - "m_Flags": { - "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } - }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3105139380 - }, - "m_fTargetAlpha": { - "type": "float", - "id": 5, - "offset": 212, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1809129834 - }, - "m_fDisabledAlpha": { - "type": "float", - "id": 6, - "offset": 216, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1389987675 - }, - "m_fAlpha": { - "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 482130755 - }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3623628394 - }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2102211316 - }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1846695875 - }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3389835433 - }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2547159940 - }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2587533771 - }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3091503757 - }, - "m_bToggle": { - "type": "bool", - "id": 16, - "offset": 608, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2071810903 - }, - "m_bButtonDown": { - "type": "bool", - "id": 17, - "offset": 609, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 840041705 - }, - "m_sLabel": { - "type": "std::wstring", - "id": 18, - "offset": 616, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2207009163 - }, - "m_labelOffset": { - "type": "class Rect", - "id": 19, - "offset": 832, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1990646723 - }, - "m_pButton": { - "type": "class SharedPointer", - "id": 20, - "offset": 656, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1543855875 - }, - "m_HotKey": { - "type": "unsigned int", - "id": 21, - "offset": 672, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1631553409 - }, - "m_Color": { - "type": "class Color", - "id": 22, - "offset": 676, - "flags": 262279, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1753714077 - }, - "m_bCursorOver": { - "type": "bool", - "id": 23, - "offset": 689, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 283981103 - }, - "m_bAbortWhenCursorNotOver": { - "type": "bool", - "id": 24, - "offset": 706, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 325405258 - }, - "m_bHotKeyDown": { - "type": "bool", - "id": 25, - "offset": 680, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 616989185 - }, - "m_fTime": { - "type": "float", - "id": 26, - "offset": 684, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 883746156 - }, - "m_bGreyed": { - "type": "bool", - "id": 27, - "offset": 688, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1566556053 - }, - "m_fMaxScale": { - "type": "float", - "id": 28, - "offset": 692, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2070186635 - }, - "m_fScaleSpeed": { - "type": "float", - "id": 29, - "offset": 696, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1457135702 - }, - "m_bUseDropShadow": { - "type": "bool", - "id": 30, - "offset": 704, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 93063037 - }, - "m_bUseOutline": { - "type": "bool", - "id": 31, - "offset": 705, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 744292994 - }, - "m_pGreyedState": { - "type": "class SharedPointer", - "id": 32, - "offset": 768, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2703352263 - }, - "m_pNormalState": { - "type": "class SharedPointer", - "id": 33, - "offset": 752, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1887909808 - }, - "m_pHighlightedState": { - "type": "class SharedPointer", - "id": 34, - "offset": 784, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2200177608 - }, - "m_pSelectedState": { - "type": "class SharedPointer", - "id": 35, - "offset": 800, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2266776432 - }, - "m_pDepressedState": { - "type": "class SharedPointer", - "id": 36, - "offset": 816, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1878185798 - }, - "m_nGroupID": { - "type": "int", - "id": 37, - "offset": 880, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 403966850 - }, - "m_bChecked": { - "type": "bool", - "id": 38, - "offset": 884, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 958955100 - }, - "m_pCheckedState": { - "type": "class SharedPointer", - "id": 39, - "offset": 888, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1210539694 - }, - "m_pCheckedGreyedState": { - "type": "class SharedPointer", - "id": 40, - "offset": 904, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2702030126 - }, - "m_pCheckedHighlightedState": { - "type": "class SharedPointer", - "id": 41, - "offset": 920, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1320097679 - }, - "m_pCheckedDepressedState": { - "type": "class SharedPointer", - "id": 42, - "offset": 936, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1609188685 - } - } - }, - "627134908": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 627134908, - "properties": { - "m_tieredSpellRetiredList": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 955625460 - } - } - }, - "1013957864": { - "name": "class HiddenQuestsBehavior*", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1013957864, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_hiddenQuestsData": { - "type": "std::string", - "id": 1, - "offset": 128, - "flags": 575, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2912992358 - } - } - }, - "627595398": { - "name": "class NPCBehaviorTemplate*", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 627595398, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - }, - "m_nStartingHealth": { - "type": "int", - "id": 1, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 317221834 - }, - "m_HideCurrentHP": { - "type": "bool", - "id": 2, - "offset": 124, - "flags": 263, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 31360456 - }, - "m_nLevel": { - "type": "int", - "id": 3, - "offset": 128, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 717812768 - }, - "m_fIntelligence": { - "type": "float", - "id": 4, - "offset": 132, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1871176720 - }, - "m_fSelfishFactor": { - "type": "float", - "id": 5, - "offset": 136, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1823445130 - }, - "m_nameColor": { - "type": "class Color", - "id": 6, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3103779710 - }, - "m_bossMob": { - "type": "bool", - "id": 7, - "offset": 144, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 986129576 - }, - "m_turnTowardsPlayer": { - "type": "bool", - "id": 8, - "offset": 145, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1881705133 - }, - "m_mobTitle": { - "type": "enum NPCBehaviorTemplate::TITLE_TYPE", - "id": 9, - "offset": 148, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2205905992, - "enum_options": { - "Easy": 0, - "Normal": 1, - "Elite": 2, - "Boss": 3, - "Minion": 4 - } - }, - "m_schoolOfFocus": { - "type": "std::string", - "id": 10, - "offset": 160, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1523233848 - }, - "m_nAggressiveFactor": { - "type": "int", - "id": 11, - "offset": 140, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 783108599 - }, - "m_triggerList": { - "type": "std::string", - "id": 12, - "offset": 232, - "flags": 268435463, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3100120619, - "enum_options": { - "__BASECLASS": "CombatTriggerList" - } - }, - "m_cylinderScaleValue": { - "type": "float", - "id": 13, - "offset": 268, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1227245334 - }, - "m_maxShadowPips": { - "type": "int", - "id": 14, - "offset": 272, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 985142882 - }, - "m_baseEffects": { - "type": "class SharedPointer", - "id": 15, - "offset": 280, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1726069264 - }, - "m_secondarySchoolOfFocus": { - "type": "std::string", - "id": 16, - "offset": 200, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3043326464 - } - } - }, - "1013883089": { - "name": "class PhysicsBehaviorClient*", - "bases": [ - "PhysicsBehavior", - "CollisionBehavior", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1013883089, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_nHolderGID": { - "type": "gid", - "id": 1, - "offset": 352, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 133708664 - }, - "m_vHoldOffset": { - "type": "class Vector3D", - "id": 2, - "offset": 360, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3766080710 - }, - "m_fHoldForce": { - "type": "float", - "id": 3, - "offset": 372, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1792175219 - } - } - }, - "1013500798": { - "name": "class SharedPointer", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1013500798, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - } - } - }, - "1013188253": { - "name": "class ParalyzeScriptLink", - "bases": [ - "PropertyClass" - ], - "hash": 1013188253, - "properties": {} - }, - "627815801": { - "name": "class PetTalentControlBase*", - "bases": [ - "Window", - "PropertyClass" - ], - "hash": 627815801, - "properties": { - "m_sName": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306437263 - }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 65667, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621225959 - }, - "m_Style": { - "type": "unsigned int", - "id": 2, - "offset": 152, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "SCALE_CHILDREN": 2, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "FOCUS_LOCKED": 64, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152 - } - }, - "m_Flags": { - "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } - }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3105139380 - }, - "m_fTargetAlpha": { - "type": "float", - "id": 5, - "offset": 212, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1809129834 - }, - "m_fDisabledAlpha": { - "type": "float", - "id": 6, - "offset": 216, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1389987675 - }, - "m_fAlpha": { - "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 482130755 - }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3623628394 - }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2102211316 - }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1846695875 - }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3389835433 - }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2547159940 - }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2587533771 - }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3091503757 - } - } - }, - "627794136": { - "name": "class HousingTeleporterBehaviorBase*", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 627794136, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_lotInstanceGID": { - "type": "gid", - "id": 1, - "offset": 112, - "flags": 65567, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2010711536 - }, - "m_x": { - "type": "float", - "id": 2, - "offset": 120, - "flags": 65543, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 283788559 - }, - "m_y": { - "type": "float", - "id": 3, - "offset": 124, - "flags": 65543, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 283788560 - }, - "m_z": { - "type": "float", - "id": 4, - "offset": 128, - "flags": 65543, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 283788561 - }, - "m_yaw": { - "type": "float", - "id": 5, - "offset": 132, - "flags": 65543, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 357256328 - }, - "m_lotTemplateID": { - "type": "gid", - "id": 6, - "offset": 136, - "flags": 65543, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1344354096 - }, - "m_clusterGID": { - "type": "gid", - "id": 7, - "offset": 144, - "flags": 65543, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 112792526 - }, - "m_structureInstanceGID": { - "type": "gid", - "id": 8, - "offset": 152, - "flags": 65543, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2083588818 - }, - "m_structureTemplateID": { - "type": "gid", - "id": 9, - "offset": 160, - "flags": 65543, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 825960402 - }, - "m_isOutside": { - "type": "bool", - "id": 10, - "offset": 168, - "flags": 65543, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1999324940 - } - } - }, - "627745655": { - "name": "class ObstacleCourseObstacleBehavior", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 627745655, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - } - } - }, - "1013659918": { - "name": "class SharedPointer", - "bases": [ - "GameEffectTemplate", - "PropertyClass" - ], - "hash": 1013659918, - "properties": { - "m_effectName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2029161513 - }, - "m_effectCategory": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1852673222 - }, - "m_sortOrder": { - "type": "int", - "id": 2, - "offset": 148, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1411218206 - }, - "m_duration": { - "type": "double", - "id": 3, - "offset": 192, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2727932435 - }, - "m_stackingCategories": { - "type": "std::string", - "id": 4, - "offset": 160, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1774497525 - }, - "m_isPersistent": { - "type": "bool", - "id": 5, - "offset": 153, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 923861920 - }, - "m_bIsOnPet": { - "type": "bool", - "id": 6, - "offset": 154, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 522593303 - }, - "m_isPublic": { - "type": "bool", - "id": 7, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1728439822 - }, - "m_visualEffectAddName": { - "type": "std::string", - "id": 8, - "offset": 200, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3382086694 - }, - "m_visualEffectRemoveName": { - "type": "std::string", - "id": 9, - "offset": 232, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1541697323 - }, - "m_onAddFunctorName": { - "type": "std::string", - "id": 10, - "offset": 280, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1561843107 - }, - "m_onRemoveFunctorName": { - "type": "std::string", - "id": 11, - "offset": 312, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2559017864 - }, - "m_stackingRule": { - "type": "enum STACKING_RULE", - "id": 12, - "offset": 144, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 431568889, - "enum_options": { - "STACKING_ALLOWED": 0, - "STACKING_NOSTACK": 1, - "STACKING_REPLACE": 2 - } - }, - "m_fxList": { - "type": "class SharedPointer", - "id": 13, - "offset": 360, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 549626493 - } - } - }, - "627815761": { - "name": "class PetTalentControlBase", - "bases": [ - "Window", - "PropertyClass" - ], - "hash": 627815761, - "properties": { - "m_sName": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306437263 - }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 65667, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621225959 - }, - "m_Style": { - "type": "unsigned int", - "id": 2, - "offset": 152, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "SCALE_CHILDREN": 2, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "FOCUS_LOCKED": 64, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152 - } - }, - "m_Flags": { - "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } - }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3105139380 - }, - "m_fTargetAlpha": { - "type": "float", - "id": 5, - "offset": 212, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1809129834 - }, - "m_fDisabledAlpha": { - "type": "float", - "id": 6, - "offset": 216, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1389987675 - }, - "m_fAlpha": { - "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 482130755 - }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3623628394 - }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2102211316 - }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1846695875 - }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3389835433 - }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2547159940 - }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2587533771 - }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3091503757 - } - } - }, - "1013884369": { - "name": "class PhysicsBehaviorClient", - "bases": [ - "PhysicsBehavior", - "CollisionBehavior", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1013884369, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_nHolderGID": { - "type": "gid", - "id": 1, - "offset": 352, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 133708664 - }, - "m_vHoldOffset": { - "type": "class Vector3D", - "id": 2, - "offset": 360, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3766080710 - }, - "m_fHoldForce": { - "type": "float", - "id": 3, - "offset": 372, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1792175219 - } - } - }, - "1013957824": { - "name": "class HiddenQuestsBehavior", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1013957824, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_hiddenQuestsData": { - "type": "std::string", - "id": 1, - "offset": 128, - "flags": 575, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2912992358 - } - } - }, - "628830022": { - "name": "class WindowLayout", - "bases": [ - "Window", - "PropertyClass" - ], - "hash": 628830022, - "properties": { - "m_sName": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306437263 - }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621225959 - }, - "m_Style": { - "type": "unsigned int", - "id": 2, - "offset": 152, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152, - "H_CENTER": 16777216, - "H_RIGHT": 33554432, - "V_CENTER": 2147483648, - "V_BOTTOM": 67108864, - "SORT": 536870912, - "LAYOUT_VERT": 1073741824, - "LAYOUT_REVERSE": 2147483648, - "DO_NOT_WRAP": 134217728 - } - }, - "m_Flags": { - "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } - }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3105139380 - }, - "m_fTargetAlpha": { - "type": "float", - "id": 5, - "offset": 212, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1809129834 - }, - "m_fDisabledAlpha": { - "type": "float", - "id": 6, - "offset": 216, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1389987675 - }, - "m_fAlpha": { - "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 482130755 - }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3623628394 - }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2102211316 - }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1846695875 - }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3389835433 - }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2547159940 - }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2587533771 - }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3091503757 - }, - "m_nHSpacing": { - "type": "int", - "id": 16, - "offset": 584, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 893611957 - }, - "m_nVSpacing": { - "type": "int", - "id": 17, - "offset": 588, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 551359491 - } - } - }, - "627990744": { - "name": "class HousingTeleporterBehaviorBase", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 627990744, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_lotInstanceGID": { - "type": "gid", - "id": 1, - "offset": 112, - "flags": 65567, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2010711536 - }, - "m_x": { - "type": "float", - "id": 2, - "offset": 120, - "flags": 65543, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 283788559 - }, - "m_y": { - "type": "float", - "id": 3, - "offset": 124, - "flags": 65543, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 283788560 - }, - "m_z": { - "type": "float", - "id": 4, - "offset": 128, - "flags": 65543, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 283788561 - }, - "m_yaw": { - "type": "float", - "id": 5, - "offset": 132, - "flags": 65543, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 357256328 - }, - "m_lotTemplateID": { - "type": "gid", - "id": 6, - "offset": 136, - "flags": 65543, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1344354096 - }, - "m_clusterGID": { - "type": "gid", - "id": 7, - "offset": 144, - "flags": 65543, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 112792526 - }, - "m_structureInstanceGID": { - "type": "gid", - "id": 8, - "offset": 152, - "flags": 65543, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2083588818 - }, - "m_structureTemplateID": { - "type": "gid", - "id": 9, - "offset": 160, - "flags": 65543, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 825960402 - }, - "m_isOutside": { - "type": "bool", - "id": 10, - "offset": 168, - "flags": 65543, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1999324940 - } - } - }, - "1014784381": { - "name": "class FriendSortByWindow", - "bases": [ - "Window", - "PropertyClass" - ], - "hash": 1014784381, - "properties": { - "m_sName": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306437263 - }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621225959 - }, - "m_Style": { - "type": "unsigned int", - "id": 2, - "offset": 152, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "SCALE_CHILDREN": 2, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "FOCUS_LOCKED": 64, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152 - } - }, - "m_Flags": { - "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } - }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3105139380 - }, - "m_fTargetAlpha": { - "type": "float", - "id": 5, - "offset": 212, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1809129834 - }, - "m_fDisabledAlpha": { - "type": "float", - "id": 6, - "offset": 216, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1389987675 - }, - "m_fAlpha": { - "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 482130755 - }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3623628394 - }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2102211316 - }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1846695875 - }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3389835433 - }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2547159940 - }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2587533771 - }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3091503757 - } - } - }, - "1014153296": { - "name": "class SharedPointer", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 1014153296, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - }, - "m_lifespan": { - "type": "std::string", - "id": 1, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3042809453 - } - } - }, - "632214738": { - "name": "class SharedPointer", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 632214738, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - }, - "m_buttonDisplayName": { - "type": "std::string", - "id": 1, - "offset": 120, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1916274798 - } - } - }, - "1407820961": { - "name": "class SharedPointer", - "bases": [ - "ZoneTokenBase", - "PropertyClass" - ], - "hash": 1407820961, - "properties": { - "m_debugName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3553984419 - }, - "m_adjectiveList": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 3195213318 - }, - "m_icon": { - "type": "std::string", - "id": 2, - "offset": 120, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1717182340 - }, - "m_iconBW": { - "type": "std::string", - "id": 3, - "offset": 152, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2047461085 - }, - "m_description": { - "type": "std::string", - "id": 4, - "offset": 184, - "flags": 8388639, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1649374815 - }, - "m_displayMode": { - "type": "enum ZTDisplayMode", - "id": 5, - "offset": 216, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2216526410, - "enum_options": { - "ZTDM_Shown": 0, - "ZTDM_Discoverable": 1, - "ZTDM_Hidden": 2 - } - }, - "m_storage": { - "type": "enum ZTStorage", - "id": 6, - "offset": 220, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2290454852, - "enum_options": { - "ZTS_Player": 0, - "ZTS_Zone": 1 - } - }, - "m_onEnable": { - "type": "class SharedPointer", - "id": 7, - "offset": 224, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2591736864 - }, - "m_onDiscover": { - "type": "class SharedPointer", - "id": 8, - "offset": 240, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2826026872 - }, - "m_onDisable": { - "type": "class SharedPointer", - "id": 9, - "offset": 256, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1860656717 - }, - "m_sourceID": { - "type": "gid", - "id": 10, - "offset": 272, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1134700470 - }, - "m_inZone": { - "type": "bool", - "id": 11, - "offset": 280, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 564535654 - }, - "m_enabled": { - "type": "bool", - "id": 12, - "offset": 281, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 504506718 - }, - "m_discovered": { - "type": "bool", - "id": 13, - "offset": 282, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2060478331 - }, - "m_minValue": { - "type": "int", - "id": 14, - "offset": 288, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1508523611 - }, - "m_startValue": { - "type": "int", - "id": 15, - "offset": 292, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 672067813 - }, - "m_maxValue": { - "type": "int", - "id": 16, - "offset": 296, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 158068381 - }, - "m_curValue": { - "type": "int", - "id": 17, - "offset": 300, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1147627809 - }, - "m_counterType": { - "type": "enum ZTCounterType", - "id": 18, - "offset": 304, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1417526179, - "enum_options": { - "ZTCT_Full": 0, - "ZTCT_Count": 1, - "ZTCT_Meter": 2, - "ZTCT_Hidden": 3 - } - }, - "m_onIncrease": { - "type": "class SharedPointer", - "id": 19, - "offset": 312, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2723490243 - }, - "m_onDecrease": { - "type": "class SharedPointer", - "id": 20, - "offset": 328, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1346363029 - }, - "m_onEmpty": { - "type": "class SharedPointer", - "id": 21, - "offset": 344, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1658398600 - }, - "m_onFull": { - "type": "class SharedPointer", - "id": 22, - "offset": 360, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1955555436 - } - } - }, - "1812555346": { - "name": "class MagicLevelInfo*", - "bases": [ - "PropertyClass" - ], - "hash": 1812555346, - "properties": { - "m_level": { - "type": "int", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 801285362 - }, - "m_xpToLevel": { - "type": "int", - "id": 1, - "offset": 76, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1972600157 - }, - "m_hitpoints": { - "type": "int", - "id": 2, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1545062140 - }, - "m_mana": { - "type": "int", - "id": 3, - "offset": 84, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 219624247 - }, - "m_gold": { - "type": "int", - "id": 4, - "offset": 88, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 219423808 - }, - "m_levelName": { - "type": "std::string", - "id": 5, - "offset": 136, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3595417396 - }, - "m_pipChance": { - "type": "float", - "id": 6, - "offset": 168, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1744274210 - }, - "m_trainingPoints": { - "type": "int", - "id": 7, - "offset": 172, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1003892499 - }, - "m_craftingSlots": { - "type": "int", - "id": 8, - "offset": 92, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1998878589 - }, - "m_petEnergy": { - "type": "int", - "id": 9, - "offset": 96, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1787948493 - }, - "m_pipConversionRatingAllSchools": { - "type": "int", - "id": 10, - "offset": 100, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1570450594 - }, - "m_pipConversionRatingFire": { - "type": "int", - "id": 11, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1427121812 - }, - "m_pipConversionRatingIce": { - "type": "int", - "id": 12, - "offset": 108, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 108410207 - }, - "m_pipConversionRatingStorm": { - "type": "int", - "id": 13, - "offset": 112, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2010842115 - }, - "m_pipConversionRatingLife": { - "type": "int", - "id": 14, - "offset": 116, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1427337038 - }, - "m_pipConversionRatingMyth": { - "type": "int", - "id": 15, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1427390864 - }, - "m_pipConversionRatingDeath": { - "type": "int", - "id": 16, - "offset": 124, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1992499060 - }, - "m_pipConversionRatingBalance": { - "type": "int", - "id": 17, - "offset": 128, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 197129012 - }, - "m_shadowPipRating": { - "type": "float", - "id": 18, - "offset": 176, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 507126123 - }, - "m_archmastery": { - "type": "float", - "id": 19, - "offset": 180, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1963579610 - } - } - }, - "651931265": { - "name": "class SharedPointer", - "bases": [ - "CinematicAction", - "PropertyClass" - ], - "hash": 651931265, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - } - } - }, - "1032419822": { - "name": "class AvailableCompleteEntry*", - "bases": [ - "GoalEntry", - "ServiceOptionBase", - "PropertyClass" - ], - "hash": 1032419822, - "properties": { - "m_serviceName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2206028813 - }, - "m_iconKey": { - "type": "std::string", - "id": 1, - "offset": 168, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2457138637 - }, - "m_displayKey": { - "type": "std::string", - "id": 2, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3023276954 - }, - "m_serviceIndex": { - "type": "unsigned int", - "id": 3, - "offset": 204, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2103126710 - }, - "m_forceInteract": { - "type": "bool", - "id": 4, - "offset": 200, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1705789564 - }, - "m_questID": { - "type": "gid", - "id": 5, - "offset": 216, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1246549335 - }, - "m_goalID": { - "type": "gid", - "id": 6, - "offset": 224, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 485200232 - }, - "m_goalTitle": { - "type": "std::string", - "id": 7, - "offset": 272, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2291910240 - }, - "m_questTitle": { - "type": "std::string", - "id": 8, - "offset": 240, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1805465583 - }, - "m_goalNameID": { - "type": "unsigned int", - "id": 9, - "offset": 232, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 403158846 - } - } - }, - "225893351": { - "name": "class LoyaltyPurchaseLimitCounterEntry*", - "bases": [ - "PropertyClass" - ], - "hash": 225893351, - "properties": { - "m_itemTemplateID": { - "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2190120133 - }, - "m_purchaseCount": { - "type": "int", - "id": 1, - "offset": 76, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 68125278 - } - } - }, - "630450326": { - "name": "class SharedPointer", - "bases": [ - "DerbyEffect", - "PropertyClass" - ], - "hash": 630450326, - "properties": { - "m_buffType": { - "type": "enum DerbyTalentBuffType", - "id": 0, - "offset": 92, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1149251982, - "enum_options": { - "Buff": 0, - "Debuff": 1, - "Neither": 2 - } - }, - "m_kTarget": { - "type": "enum DerbyTargetType", - "id": 1, - "offset": 96, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1807803351, - "enum_options": { - "kTargetInFront": 0, - "kTargetBehind": 1, - "kTargetFirst": 2, - "kTargetSelf": 3, - "kTargetAll": 4, - "kTargetLast": 5 - } - }, - "m_nDuration": { - "type": "int", - "id": 2, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1110167982 - }, - "m_effectID": { - "type": "unsigned int", - "id": 3, - "offset": 88, - "flags": 24, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2347630439 - }, - "m_imageFilename": { - "type": "std::string", - "id": 4, - "offset": 112, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2813328063 - }, - "m_iconIndex": { - "type": "unsigned int", - "id": 5, - "offset": 144, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1265133262 - }, - "m_soundOnActivate": { - "type": "std::string", - "id": 6, - "offset": 152, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1956929714 - }, - "m_soundOnTarget": { - "type": "std::string", - "id": 7, - "offset": 184, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3444214056 - }, - "m_targetParticleEffect": { - "type": "std::string", - "id": 8, - "offset": 216, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3048234723 - }, - "m_overheadMessage": { - "type": "std::string", - "id": 9, - "offset": 248, - "flags": 8388639, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1701018190 - }, - "m_requirements": { - "type": "class RequirementList", - "id": 10, - "offset": 280, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2840988582 - }, - "m_bToDebuffs": { - "type": "bool", - "id": 11, - "offset": 376, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1216111639 - } - } - }, - "1791913178": { - "name": "class SharedPointer", - "bases": [ - "ClientEquipmentBehavior", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1791913178, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_itemList": { - "type": "class SharedPointer", - "id": 1, - "offset": 120, - "flags": 27, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1983655699 - }, - "m_slotList": { - "type": "class SharedPointer", - "id": 2, - "offset": 136, - "flags": 27, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 3213026923 - }, - "m_publicItemList": { - "type": "class SharedPointer", - "id": 3, - "offset": 152, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1693467991 - }, - "m_equipmentSets": { - "type": "class SharedPointer", - "id": 4, - "offset": 232, - "flags": 27, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1904799695 - } - } - }, - "630129460": { - "name": "class RemoveAuraCinematicAction*", - "bases": [ - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 630129460, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - } - } - }, - "1384179440": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1384179440, - "properties": { - "m_bodyOfWaterList": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 457750787 - } - } - }, - "629854251": { - "name": "class PauseAction*", - "bases": [ - "PathBehaviorTemplate::Action", - "PropertyClass" - ], - "hash": 629854251, - "properties": { - "m_nPathID": { - "type": "gid", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 214382368 - }, - "m_nNodeID": { - "type": "int", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 152152635, - "enum_options": { - "__DEFAULT": 4294967295 - } - }, - "m_nPriority": { - "type": "int", - "id": 2, - "offset": 84, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1515251530, - "enum_options": { - "__DEFAULT": 100 - } - }, - "m_nChance": { - "type": "int", - "id": 3, - "offset": 88, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1860748394, - "enum_options": { - "__DEFAULT": 50 - } - }, - "m_fMinPauseTime": { - "type": "float", - "id": 4, - "offset": 96, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 388964206 - }, - "m_fMaxPauseTime": { - "type": "float", - "id": 5, - "offset": 100, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 347283632 - } - } - }, - "1022903010": { - "name": "class ShadowSpellEffect*", - "bases": [ - "EffectListSpellEffect", - "SpellEffect", - "PropertyClass" - ], - "hash": 1022903010, - "properties": { - "m_effectType": { - "type": "enum SpellEffect::kSpellEffects", - "id": 0, - "offset": 72, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2578255295, - "enum_options": { - "kInvalidSpellEffect": 0, - "kDamage": 1, - "kDamageNoCrit": 2, - "kHeal": 3, - "kHealPercent": 4, - "kSetHealPercent": 113, - "kStealHealth": 5, - "kReduceOverTime": 6, - "kDetonateOverTime": 7, - "kPushCharm": 8, - "kStealCharm": 9, - "kPushWard": 10, - "kStealWard": 11, - "kPushOverTime": 12, - "kStealOverTime": 13, - "kRemoveCharm": 14, - "kRemoveWard": 15, - "kRemoveOverTime": 16, - "kRemoveAura": 17, - "kSwapAll": 18, - "kSwapCharm": 19, - "kSwapWard": 20, - "kSwapOverTime": 21, - "kModifyIncomingDamage": 22, - "kModifyIncomingDamageFlat": 119, - "kMaximumIncomingDamage": 23, - "kModifyIncomingHeal": 24, - "kModifyIncomingHealFlat": 118, - "kModifyIncomingDamageType": 25, - "kModifyIncomingArmorPiercing": 26, - "kModifyOutgoingDamage": 27, - "kModifyOutgoingDamageFlat": 121, - "kModifyOutgoingHeal": 28, - "kModifyOutgoingHealFlat": 120, - "kModifyOutgoingDamageType": 29, - "kModifyOutgoingArmorPiercing": 30, - "kModifyOutgoingStealHealth": 31, - "kModifyIncomingStealHealth": 32, - "kBounceNext": 33, - "kBouncePrevious": 34, - "kBounceBack": 35, - "kBounceAll": 36, - "kAbsorbDamage": 37, - "kAbsorbHeal": 38, - "kModifyAccuracy": 39, - "kDispel": 40, - "kConfusion": 41, - "kCloakedCharm": 42, - "kCloakedWard": 43, - "kStunResist": 44, - "kClue": 111, - "kPipConversion": 45, - "kCritBoost": 46, - "kCritBlock": 47, - "kPolymorph": 48, - "kDelayCast": 49, - "kModifyCardCloak": 50, - "kModifyCardDamage": 51, - "kModifyCardAccuracy": 53, - "kModifyCardMutation": 54, - "kModifyCardRank": 55, - "kModifyCardArmorPiercing": 56, - "kSummonCreature": 65, - "kTeleportPlayer": 66, - "kStun": 67, - "kDampen": 68, - "kReshuffle": 69, - "kMindControl": 70, - "kModifyPips": 71, - "kModifyPowerPips": 72, - "kModifyShadowPips": 73, - "kModifyHate": 74, - "kDamageOverTime": 75, - "kHealOverTime": 76, - "kModifyPowerPipChance": 77, - "kModifyRank": 78, - "kStunBlock": 79, - "kRevealCloak": 80, - "kInstantKill": 81, - "kAfterlife": 82, - "kDeferredDamage": 83, - "kDamagePerTotalPipPower": 84, - "kModifyCardHeal": 52, - "kModifyCardCharm": 57, - "kModifyCardWard": 58, - "kModifyCardOutgoingDamage": 59, - "kModifyCardOutgoingAccuracy": 60, - "kModifyCardOutgoingHeal": 61, - "kModifyCardOutgoingArmorPiercing": 62, - "kModifyCardIncomingDamage": 63, - "kModifyCardAbsorbDamage": 64, - "kCloakedWardNoRemove": 86, - "kAddCombatTriggerList": 87, - "kRemoveCombatTriggerList": 88, - "kBacklashDamage": 89, - "kModifyBacklash": 90, - "kIntercept": 91, - "kShadowSelf": 92, - "kShadowCreature": 93, - "kModifyShadowCreatureLevel": 94, - "kSelectShadowCreatureAttackTarget": 95, - "kShadowDecrementTurn": 96, - "kCritBoostSchoolSpecific": 97, - "kSpawnCreature": 98, - "kUnPolymorph": 99, - "kPowerPipConversion": 100, - "kProtectCardBeneficial": 101, - "kProtectCardHarmful": 102, - "kProtectBeneficial": 103, - "kProtectHarmful": 104, - "kDivideDamage": 105, - "kCollectEssence": 106, - "kKillCreature": 107, - "kDispelBlock": 108, - "kConfusionBlock": 109, - "kModifyPipRoundRate": 110, - "kMaxHealthDamage": 112, - "kUntargetable": 114, - "kMakeTargetable": 115, - "kForceTargetable": 116, - "kRemoveStunBlock": 117, - "kExitCombat": 122, - "kSuspendPips": 123, - "kResumePips": 124, - "kAutoPass": 125, - "kStopAutoPass": 126, - "kVanish": 127, - "kStopVanish": 128, - "kMaxHealthHeal": 129, - "kHealByWard": 130, - "kTaunt": 131, - "kPacify": 132, - "kRemoveTargetRestriction": 133, - "kConvertHangingEffect": 134, - "kAddSpellToDeck": 135, - "kAddSpellToHand": 136, - "kModifyIncomingDamageOverTime": 137, - "kModifyIncomingHealOverTime": 138, - "kModifyCardDamagebyRank": 139, - "kPushConvertedCharm": 140, - "kStealConvertedCharm": 141, - "kPushConvertedWard": 142, - "kStealConvertedWard": 143, - "kPushConvertedOverTime": 144, - "kStealConvertedOverTime": 145, - "kRemoveConvertedCharm": 146, - "kRemoveConvertedWard": 147, - "kRemoveConvertedOverTime": 148, - "kModifyOverTimeDuration": 149, - "kModifySchoolPips": 150 - } - }, - "m_effectParam": { - "type": "int", - "id": 1, - "offset": 76, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 357920024 - }, - "m_disposition": { - "type": "enum SpellEffect::kHangingDisposition", - "id": 2, - "offset": 80, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1904841031, - "enum_options": { - "kBoth": 0, - "kBeneficial": 1, - "kHarmful": 2 - } - }, - "m_sDamageType": { - "type": "std::string", - "id": 3, - "offset": 88, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2501054223 - }, - "m_damageType": { - "type": "unsigned int", - "id": 4, - "offset": 84, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 737882766 - }, - "m_pipNum": { - "type": "int", - "id": 5, - "offset": 128, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 830827539 - }, - "m_actNum": { - "type": "int", - "id": 6, - "offset": 132, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 236824866 - }, - "m_effectTarget": { - "type": "enum SpellEffect::kEffectTarget", - "id": 7, - "offset": 140, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2458940523, - "enum_options": { - "kInvalidTarget": 0, - "kSpell": 1, - "kSpecificSpells": 2, - "kGlobal": 3, - "kEnemyTeam": 4, - "kEnemyTeamAllAtOnce": 5, - "kFriendlyTeam": 6, - "kFriendlyTeamAllAtOnce": 7, - "kEnemySingle": 8, - "kFriendlySingle": 9, - "kMinion": 10, - "kFriendlyMinion": 17, - "kEnemyMinion": 18, - "kSelf": 11, - "kAtLeastOneEnemy": 13, - "kPreselectedEnemySingle": 12, - "kMultiTargetEnemy": 14, - "kMultiTargetFriendly": 15, - "kFriendlySingleNotMe": 16 - } - }, - "m_numRounds": { - "type": "int", - "id": 8, - "offset": 144, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1229753829 - }, - "m_paramPerRound": { - "type": "int", - "id": 9, - "offset": 148, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 683234234 - }, - "m_healModifier": { - "type": "float", - "id": 10, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1317921248, - "enum_options": { - "__DEFAULT": "1.0" - } - }, - "m_spellTemplateID": { - "type": "unsigned int", - "id": 11, - "offset": 120, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 585567702 - }, - "m_enchantmentSpellTemplateID": { - "type": "unsigned int", - "id": 12, - "offset": 124, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 246955115 - }, - "m_act": { - "type": "bool", - "id": 13, - "offset": 136, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 269510283 - }, - "m_cloaked": { - "type": "bool", - "id": 14, - "offset": 157, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 7349510 - }, - "m_bypassProtection": { - "type": "bool", - "id": 15, - "offset": 159, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1657138252 - }, - "m_armorPiercingParam": { - "type": "int", - "id": 16, - "offset": 160, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2025530205 - }, - "m_chancePerTarget": { - "type": "int", - "id": 17, - "offset": 164, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 845426794 - }, - "m_protected": { - "type": "bool", - "id": 18, - "offset": 168, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1445655037 - }, - "m_converted": { - "type": "bool", - "id": 19, - "offset": 169, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1590428797 - }, - "m_rank": { - "type": "int", - "id": 20, - "offset": 208, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 219803942 - }, - "m_effectList": { - "type": "class SharedPointer", - "id": 21, - "offset": 224, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 707154804 - }, - "m_initialBacklash": { - "type": "int", - "id": 22, - "offset": 240, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 300794109 - } - } - }, - "1792435378": { - "name": "class MinigameInfo*", - "bases": [ - "PropertyClass" - ], - "hash": 1792435378, - "properties": { - "m_name": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1717359772 - }, - "m_zone": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 268435463, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1717806295, - "enum_options": { - "__BASECLASS": "ZoneData" - } - }, - "m_iconArt": { - "type": "std::string", - "id": 2, - "offset": 136, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2457128171 - }, - "m_scoreThresholds": { - "type": "int", - "id": 3, - "offset": 168, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1790576374 - }, - "m_rewardTable": { - "type": "std::string", - "id": 4, - "offset": 192, - "flags": 268435463, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2569041800, - "enum_options": { - "__BASECLASS": "LootTable" - } - } - } - }, - "226029052": { - "name": "class ElixirBenefitEffectTemplate", - "bases": [ - "GameEffectTemplate", - "PropertyClass" - ], - "hash": 226029052, - "properties": { - "m_effectName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2029161513 - }, - "m_effectCategory": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1852673222 - }, - "m_sortOrder": { - "type": "int", - "id": 2, - "offset": 148, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1411218206 - }, - "m_duration": { - "type": "double", - "id": 3, - "offset": 192, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2727932435 - }, - "m_stackingCategories": { - "type": "std::string", - "id": 4, - "offset": 160, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1774497525 - }, - "m_isPersistent": { - "type": "bool", - "id": 5, - "offset": 153, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 923861920 - }, - "m_bIsOnPet": { - "type": "bool", - "id": 6, - "offset": 154, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 522593303 - }, - "m_isPublic": { - "type": "bool", - "id": 7, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1728439822 - }, - "m_visualEffectAddName": { - "type": "std::string", - "id": 8, - "offset": 200, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3382086694 - }, - "m_visualEffectRemoveName": { - "type": "std::string", - "id": 9, - "offset": 232, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1541697323 - }, - "m_onAddFunctorName": { - "type": "std::string", - "id": 10, - "offset": 280, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1561843107 - }, - "m_onRemoveFunctorName": { - "type": "std::string", - "id": 11, - "offset": 312, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2559017864 - }, - "m_stackingRule": { - "type": "enum STACKING_RULE", - "id": 12, - "offset": 144, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 431568889, - "enum_options": { - "STACKING_ALLOWED": 0, - "STACKING_NOSTACK": 1, - "STACKING_REPLACE": 2 - } - }, - "m_flags": { - "type": "unsigned int", - "id": 13, - "offset": 360, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1005801050, - "enum_options": { - "GardeningBonus": 1, - "DoublePetXP": 2, - "FreeRespec": 4, - "DailyQuestBonus": 8, - "MonsterMagic": 16, - "DailyPvPBonus": 32, - "FishingBonus": 64, - "CraftingBonus": 128, - "SecondChanceChestBonus": 256, - "DoubleScrollOfFortunePoints": 512, - "FasterEnergyRegeneration": 1024 - } - } - } - }, - "1020474349": { - "name": "class CrownShopCategory*", - "bases": [ - "PropertyClass" - ], - "hash": 1020474349, - "properties": { - "m_name": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1717359772 - }, - "m_ID": { - "type": "int", - "id": 1, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2090585127 - }, - "m_parentTabID": { - "type": "int", - "id": 2, - "offset": 108, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 16409672 - }, - "m_description": { - "type": "std::string", - "id": 3, - "offset": 112, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1649374815 - }, - "m_iconResource": { - "type": "std::string", - "id": 4, - "offset": 144, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2838396012 - }, - "m_tags": { - "type": "std::string", - "id": 5, - "offset": 184, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1717575210 - }, - "m_dontFilterOwnedRecoItems": { - "type": "bool", - "id": 6, - "offset": 216, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2079281430 - }, - "m_allowMultipleBuy": { - "type": "bool", - "id": 7, - "offset": 217, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 831782030 - }, - "m_forceDisallowMultipleBuy": { - "type": "bool", - "id": 8, - "offset": 218, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 19425277 - }, - "m_isHousesCategory": { - "type": "bool", - "id": 9, - "offset": 220, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1982819524 - }, - "m_isEverythingCategory": { - "type": "bool", - "id": 10, - "offset": 219, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 111927122 - }, - "m_isGroupElixirsCategory": { - "type": "bool", - "id": 11, - "offset": 221, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 768811642 - } - } - }, - "1017660130": { - "name": "class ShadowSpellEffect", - "bases": [ - "EffectListSpellEffect", - "SpellEffect", - "PropertyClass" - ], - "hash": 1017660130, - "properties": { - "m_effectType": { - "type": "enum SpellEffect::kSpellEffects", - "id": 0, - "offset": 72, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2578255295, - "enum_options": { - "kInvalidSpellEffect": 0, - "kDamage": 1, - "kDamageNoCrit": 2, - "kHeal": 3, - "kHealPercent": 4, - "kSetHealPercent": 113, - "kStealHealth": 5, - "kReduceOverTime": 6, - "kDetonateOverTime": 7, - "kPushCharm": 8, - "kStealCharm": 9, - "kPushWard": 10, - "kStealWard": 11, - "kPushOverTime": 12, - "kStealOverTime": 13, - "kRemoveCharm": 14, - "kRemoveWard": 15, - "kRemoveOverTime": 16, - "kRemoveAura": 17, - "kSwapAll": 18, - "kSwapCharm": 19, - "kSwapWard": 20, - "kSwapOverTime": 21, - "kModifyIncomingDamage": 22, - "kModifyIncomingDamageFlat": 119, - "kMaximumIncomingDamage": 23, - "kModifyIncomingHeal": 24, - "kModifyIncomingHealFlat": 118, - "kModifyIncomingDamageType": 25, - "kModifyIncomingArmorPiercing": 26, - "kModifyOutgoingDamage": 27, - "kModifyOutgoingDamageFlat": 121, - "kModifyOutgoingHeal": 28, - "kModifyOutgoingHealFlat": 120, - "kModifyOutgoingDamageType": 29, - "kModifyOutgoingArmorPiercing": 30, - "kModifyOutgoingStealHealth": 31, - "kModifyIncomingStealHealth": 32, - "kBounceNext": 33, - "kBouncePrevious": 34, - "kBounceBack": 35, - "kBounceAll": 36, - "kAbsorbDamage": 37, - "kAbsorbHeal": 38, - "kModifyAccuracy": 39, - "kDispel": 40, - "kConfusion": 41, - "kCloakedCharm": 42, - "kCloakedWard": 43, - "kStunResist": 44, - "kClue": 111, - "kPipConversion": 45, - "kCritBoost": 46, - "kCritBlock": 47, - "kPolymorph": 48, - "kDelayCast": 49, - "kModifyCardCloak": 50, - "kModifyCardDamage": 51, - "kModifyCardAccuracy": 53, - "kModifyCardMutation": 54, - "kModifyCardRank": 55, - "kModifyCardArmorPiercing": 56, - "kSummonCreature": 65, - "kTeleportPlayer": 66, - "kStun": 67, - "kDampen": 68, - "kReshuffle": 69, - "kMindControl": 70, - "kModifyPips": 71, - "kModifyPowerPips": 72, - "kModifyShadowPips": 73, - "kModifyHate": 74, - "kDamageOverTime": 75, - "kHealOverTime": 76, - "kModifyPowerPipChance": 77, - "kModifyRank": 78, - "kStunBlock": 79, - "kRevealCloak": 80, - "kInstantKill": 81, - "kAfterlife": 82, - "kDeferredDamage": 83, - "kDamagePerTotalPipPower": 84, - "kModifyCardHeal": 52, - "kModifyCardCharm": 57, - "kModifyCardWard": 58, - "kModifyCardOutgoingDamage": 59, - "kModifyCardOutgoingAccuracy": 60, - "kModifyCardOutgoingHeal": 61, - "kModifyCardOutgoingArmorPiercing": 62, - "kModifyCardIncomingDamage": 63, - "kModifyCardAbsorbDamage": 64, - "kCloakedWardNoRemove": 86, - "kAddCombatTriggerList": 87, - "kRemoveCombatTriggerList": 88, - "kBacklashDamage": 89, - "kModifyBacklash": 90, - "kIntercept": 91, - "kShadowSelf": 92, - "kShadowCreature": 93, - "kModifyShadowCreatureLevel": 94, - "kSelectShadowCreatureAttackTarget": 95, - "kShadowDecrementTurn": 96, - "kCritBoostSchoolSpecific": 97, - "kSpawnCreature": 98, - "kUnPolymorph": 99, - "kPowerPipConversion": 100, - "kProtectCardBeneficial": 101, - "kProtectCardHarmful": 102, - "kProtectBeneficial": 103, - "kProtectHarmful": 104, - "kDivideDamage": 105, - "kCollectEssence": 106, - "kKillCreature": 107, - "kDispelBlock": 108, - "kConfusionBlock": 109, - "kModifyPipRoundRate": 110, - "kMaxHealthDamage": 112, - "kUntargetable": 114, - "kMakeTargetable": 115, - "kForceTargetable": 116, - "kRemoveStunBlock": 117, - "kExitCombat": 122, - "kSuspendPips": 123, - "kResumePips": 124, - "kAutoPass": 125, - "kStopAutoPass": 126, - "kVanish": 127, - "kStopVanish": 128, - "kMaxHealthHeal": 129, - "kHealByWard": 130, - "kTaunt": 131, - "kPacify": 132, - "kRemoveTargetRestriction": 133, - "kConvertHangingEffect": 134, - "kAddSpellToDeck": 135, - "kAddSpellToHand": 136, - "kModifyIncomingDamageOverTime": 137, - "kModifyIncomingHealOverTime": 138, - "kModifyCardDamagebyRank": 139, - "kPushConvertedCharm": 140, - "kStealConvertedCharm": 141, - "kPushConvertedWard": 142, - "kStealConvertedWard": 143, - "kPushConvertedOverTime": 144, - "kStealConvertedOverTime": 145, - "kRemoveConvertedCharm": 146, - "kRemoveConvertedWard": 147, - "kRemoveConvertedOverTime": 148, - "kModifyOverTimeDuration": 149, - "kModifySchoolPips": 150 - } - }, - "m_effectParam": { - "type": "int", - "id": 1, - "offset": 76, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 357920024 - }, - "m_disposition": { - "type": "enum SpellEffect::kHangingDisposition", - "id": 2, - "offset": 80, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1904841031, - "enum_options": { - "kBoth": 0, - "kBeneficial": 1, - "kHarmful": 2 - } - }, - "m_sDamageType": { - "type": "std::string", - "id": 3, - "offset": 88, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2501054223 - }, - "m_damageType": { - "type": "unsigned int", - "id": 4, - "offset": 84, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 737882766 - }, - "m_pipNum": { - "type": "int", - "id": 5, - "offset": 128, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 830827539 - }, - "m_actNum": { - "type": "int", - "id": 6, - "offset": 132, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 236824866 - }, - "m_effectTarget": { - "type": "enum SpellEffect::kEffectTarget", - "id": 7, - "offset": 140, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2458940523, - "enum_options": { - "kInvalidTarget": 0, - "kSpell": 1, - "kSpecificSpells": 2, - "kGlobal": 3, - "kEnemyTeam": 4, - "kEnemyTeamAllAtOnce": 5, - "kFriendlyTeam": 6, - "kFriendlyTeamAllAtOnce": 7, - "kEnemySingle": 8, - "kFriendlySingle": 9, - "kMinion": 10, - "kFriendlyMinion": 17, - "kEnemyMinion": 18, - "kSelf": 11, - "kAtLeastOneEnemy": 13, - "kPreselectedEnemySingle": 12, - "kMultiTargetEnemy": 14, - "kMultiTargetFriendly": 15, - "kFriendlySingleNotMe": 16 - } - }, - "m_numRounds": { - "type": "int", - "id": 8, - "offset": 144, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1229753829 - }, - "m_paramPerRound": { - "type": "int", - "id": 9, - "offset": 148, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 683234234 - }, - "m_healModifier": { - "type": "float", - "id": 10, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1317921248, - "enum_options": { - "__DEFAULT": "1.0" - } - }, - "m_spellTemplateID": { - "type": "unsigned int", - "id": 11, - "offset": 120, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 585567702 - }, - "m_enchantmentSpellTemplateID": { - "type": "unsigned int", - "id": 12, - "offset": 124, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 246955115 - }, - "m_act": { - "type": "bool", - "id": 13, - "offset": 136, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 269510283 - }, - "m_cloaked": { - "type": "bool", - "id": 14, - "offset": 157, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 7349510 - }, - "m_bypassProtection": { - "type": "bool", - "id": 15, - "offset": 159, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1657138252 - }, - "m_armorPiercingParam": { - "type": "int", - "id": 16, - "offset": 160, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2025530205 - }, - "m_chancePerTarget": { - "type": "int", - "id": 17, - "offset": 164, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 845426794 - }, - "m_protected": { - "type": "bool", - "id": 18, - "offset": 168, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1445655037 - }, - "m_converted": { - "type": "bool", - "id": 19, - "offset": 169, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1590428797 - }, - "m_rank": { - "type": "int", - "id": 20, - "offset": 208, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 219803942 - }, - "m_effectList": { - "type": "class SharedPointer", - "id": 21, - "offset": 224, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 707154804 - }, - "m_initialBacklash": { - "type": "int", - "id": 22, - "offset": 240, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 300794109 - } - } - }, - "1391126556": { - "name": "class DeedBehavior", - "bases": [ - "DeedBehaviorBase", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1391126556, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_lotInstanceGID": { - "type": "gid", - "id": 1, - "offset": 120, - "flags": 33554495, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2010711536 - }, - "m_streetAddress": { - "type": "int", - "id": 2, - "offset": 112, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1809670519 - }, - "m_transferCoolDownTime": { - "type": "unsigned int", - "id": 3, - "offset": 128, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1616830022 - } - } - }, - "1793094786": { - "name": "class EncounterTemplate*", - "bases": [ - "QuestTemplate", - "CoreTemplate", - "PropertyClass" - ], - "hash": 1793094786, - "properties": { - "m_behaviors": { - "type": "class BehaviorTemplate*", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1197808594 - }, - "m_questName": { - "type": "std::string", - "id": 1, - "offset": 96, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1702112846 - }, - "m_questNameID": { - "type": "unsigned int", - "id": 2, - "offset": 128, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1530354349 - }, - "m_questTitle": { - "type": "std::string", - "id": 3, - "offset": 136, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1805465583 - }, - "m_questInfo": { - "type": "std::string", - "id": 4, - "offset": 168, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1701947097 - }, - "m_questPrep": { - "type": "std::string", - "id": 5, - "offset": 200, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1702202980 - }, - "m_questUnderway": { - "type": "std::string", - "id": 6, - "offset": 232, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2308400380 - }, - "m_questComplete": { - "type": "std::string", - "id": 7, - "offset": 264, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3484586150 - }, - "m_startGoals": { - "type": "std::string", - "id": 8, - "offset": 392, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2152469471 - }, - "m_goals": { - "type": "class SharedPointer", - "id": 9, - "offset": 408, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1374041870 - }, - "m_startResults": { - "type": "class SharedPointer", - "id": 10, - "offset": 424, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2094517692 - }, - "m_endResults": { - "type": "class SharedPointer", - "id": 11, - "offset": 440, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2118364133 - }, - "m_requirements": { - "type": "class RequirementList*", - "id": 12, - "offset": 456, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2840985510 - }, - "m_prepRequirements": { - "type": "class RequirementList*", - "id": 13, - "offset": 464, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3016776541 - }, - "m_pruneRequirements": { - "type": "class RequirementList*", - "id": 14, - "offset": 472, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3211248912 - }, - "m_prepAlways": { - "type": "bool", - "id": 15, - "offset": 304, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1423046331 - }, - "m_clientTags": { - "type": "std::string", - "id": 16, - "offset": 312, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2319030025 - }, - "m_goalLogic": { - "type": "class GoalCompleteLogic*", - "id": 17, - "offset": 520, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 963824003 - }, - "m_questLevel": { - "type": "int", - "id": 18, - "offset": 296, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 298136804 - }, - "m_questRepeat": { - "type": "int", - "id": 19, - "offset": 300, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1480345805 - }, - "m_onStartQuestScript": { - "type": "std::string", - "id": 20, - "offset": 328, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2577549709 - }, - "m_onEndQuestScript": { - "type": "std::string", - "id": 21, - "offset": 360, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285648118 - }, - "m_dialogList": { - "type": "class ActorDialogListBase*", - "id": 22, - "offset": 480, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1909154969 - }, - "m_missionDoors": { - "type": "std::string", - "id": 23, - "offset": 504, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2428103908 - }, - "m_dynaMods": { - "type": "class QuestDynaModInfo*", - "id": 24, - "offset": 488, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 3330743945 - }, - "m_isHidden": { - "type": "bool", - "id": 25, - "offset": 305, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1401188667 - }, - "m_outdated": { - "type": "bool", - "id": 26, - "offset": 306, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1565198349 - }, - "m_noQuestHelper": { - "type": "bool", - "id": 27, - "offset": 307, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 578010882 - }, - "m_mainline": { - "type": "bool", - "id": 28, - "offset": 552, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1749856224 - }, - "m_defaultDialogAnimation": { - "type": "std::string", - "id": 29, - "offset": 560, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2400834320 - }, - "m_skipQHAutoSelect": { - "type": "bool", - "id": 30, - "offset": 553, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2024815836 - }, - "m_questEffectInfoList": { - "type": "class SharedPointer", - "id": 31, - "offset": 536, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2494024956 - }, - "m_forceInteraction": { - "type": "bool", - "id": 32, - "offset": 554, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1038376866 - }, - "m_checkInventoryForCrafting": { - "type": "bool", - "id": 33, - "offset": 608, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1549644020 - }, - "m_playAsYourPetNPC": { - "type": "bool", - "id": 34, - "offset": 609, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 827482678 - }, - "m_activityType": { - "type": "enum QuestTemplate::ActivityType", - "id": 35, - "offset": 612, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 231656390, - "enum_options": { - "ACTIVITY_NotActivity": 0, - "ACTIVITY_Crafting": 2, - "ACTIVITY_Fishing": 3, - "ACTIVITY_Gardening": 4, - "ACTIVITY_Pet": 5, - "ACTIVITY_Spell": 1 - } - } - } - }, - "630223422": { - "name": "class PathActionChangeDirection*", - "bases": [ - "PathBehaviorTemplate::Action", - "PropertyClass" - ], - "hash": 630223422, - "properties": { - "m_nPathID": { - "type": "gid", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 214382368 - }, - "m_nNodeID": { - "type": "int", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 152152635, - "enum_options": { - "__DEFAULT": 4294967295 - } - }, - "m_nPriority": { - "type": "int", - "id": 2, - "offset": 84, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1515251530, - "enum_options": { - "__DEFAULT": 100 - } - }, - "m_nChance": { - "type": "int", - "id": 3, - "offset": 88, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1860748394, - "enum_options": { - "__DEFAULT": 50 - } - } - } - }, - "1017280399": { - "name": "class BracketReportInfo", - "bases": [ - "PropertyClass" - ], - "hash": 1017280399, - "properties": { - "m_scheduleID": { - "type": "gid", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1439120946 - }, - "m_bracketID": { - "type": "gid", - "id": 1, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 441272961 - }, - "m_bracketState": { - "type": "unsigned int", - "id": 2, - "offset": 88, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 790945386 - }, - "m_creationTime": { - "type": "int", - "id": 3, - "offset": 92, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1930866142 - }, - "m_registrationOpenTime": { - "type": "int", - "id": 4, - "offset": 96, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 313608566 - }, - "m_matchStartTime": { - "type": "int", - "id": 5, - "offset": 100, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1241735780 - }, - "m_tournamentNameID": { - "type": "unsigned int", - "id": 6, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1799846440 - }, - "m_tournamentDuration": { - "type": "unsigned int", - "id": 7, - "offset": 108, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 475739392 - }, - "m_minLevel": { - "type": "int", - "id": 8, - "offset": 112, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1496818518 - }, - "m_maxLevel": { - "type": "int", - "id": 9, - "offset": 116, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 146363288 - }, - "m_overrideTourneyName": { - "type": "std::string", - "id": 10, - "offset": 120, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2611946162 - }, - "m_firstTourneyNameSTKey": { - "type": "std::string", - "id": 11, - "offset": 152, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2731391050 - }, - "m_secondTourneyNameSTKey": { - "type": "std::string", - "id": 12, - "offset": 184, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1747016318 - } - } - }, - "1389616021": { - "name": "class SavedSetting*", - "bases": [ - "PropertyClass" - ], - "hash": 1389616021, - "properties": { - "m_settingName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2915007546 - }, - "m_settingValue": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3178360950 - } - } - }, - "226964966": { - "name": "class ShadowPipRule*", - "bases": [ - "PropertyClass" - ], - "hash": 226964966, - "properties": { - "m_roundList": { - "type": "class ShadowPipRule::RoundPercent", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2566333441 - } - } - }, - "1016460052": { - "name": "enum DerbyTargetType", - "bases": [], - "hash": 1016460052, - "properties": {} - }, - "1386526745": { - "name": "class PathActionStop*", - "bases": [ - "PathBehaviorTemplate::Action", - "PropertyClass" - ], - "hash": 1386526745, - "properties": { - "m_nPathID": { - "type": "gid", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 214382368 - }, - "m_nNodeID": { - "type": "int", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 152152635, - "enum_options": { - "__DEFAULT": 4294967295 - } - }, - "m_nPriority": { - "type": "int", - "id": 2, - "offset": 84, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1515251530, - "enum_options": { - "__DEFAULT": 100 - } - }, - "m_nChance": { - "type": "int", - "id": 3, - "offset": 88, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1860748394, - "enum_options": { - "__DEFAULT": 50 - } - } - } - }, - "226964961": { - "name": "class ShadowPipRule", - "bases": [ - "PropertyClass" - ], - "hash": 226964961, - "properties": { - "m_roundList": { - "type": "class ShadowPipRule::RoundPercent", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2566333441 - } - } - }, - "1015706531": { - "name": "class CantripsMajorInvisibilityEffectInfo*", - "bases": [ - "CantripsInvisibilityEffectInfo", - "GameEffectInfo", - "PropertyClass" - ], - "hash": 1015706531, - "properties": { - "m_effectName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2029161513 - } - } - }, - "1386115776": { - "name": "class SharedPointer", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1386115776, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - } - } - }, - "1796403913": { - "name": "class DynamicSigilSubcircle*", - "bases": [ - "PropertyClass" - ], - "hash": 1796403913, - "properties": { - "m_id": { - "type": "int", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2090586215 - }, - "m_teamIndex": { - "type": "int", - "id": 1, - "offset": 76, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1621537177 - }, - "m_rotation": { - "type": "float", - "id": 2, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1497468551 - }, - "m_radius": { - "type": "float", - "id": 3, - "offset": 84, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 989410271 - }, - "m_locationPreference": { - "type": "std::string", - "id": 4, - "offset": 88, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2817699507 - }, - "m_symbol": { - "type": "enum DynamicSigilSymbol", - "id": 5, - "offset": 120, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1055639026, - "enum_options": { - "NotSet": 0, - "Dagger": 1, - "Key": 2, - "Gem": 3, - "Spiral": 4, - "Book": 5, - "Chalice": 6, - "Wand": 7, - "Potion": 8, - "Sun": 9, - "Eye": 10, - "Star": 11, - "Moon": 12 - } - } - } - }, - "226779658": { - "name": "class CombatTimerListObj", - "bases": [ - "PropertyClass" - ], - "hash": 226779658, - "properties": { - "m_timeList": { - "type": "class ParticipantParameter", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2652015083 - }, - "m_duelID.m_full": { - "type": "unsigned __int64", - "id": 1, - "offset": 88, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1024980477 - } - } - }, - "630590567": { - "name": "class GraphicalArenaBonusPoints", - "bases": [ - "GraphicalSpell", - "Spell", - "PropertyClass" - ], - "hash": 630590567, - "properties": { - "m_templateID": { - "type": "unsigned int", - "id": 0, - "offset": 128, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1286746870 - }, - "m_enchantment": { - "type": "unsigned int", - "id": 1, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2217886818 - }, - "m_pipCost": { - "type": "class SharedPointer", - "id": 2, - "offset": 176, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3605704820 - }, - "m_regularAdjust": { - "type": "int", - "id": 3, - "offset": 192, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1420453335 - }, - "m_magicSchoolID": { - "type": "unsigned int", - "id": 4, - "offset": 136, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 893146499 - }, - "m_accuracy": { - "type": "unsigned char", - "id": 5, - "offset": 132, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2273914939 - }, - "m_treasureCard": { - "type": "bool", - "id": 6, - "offset": 197, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1764879128 - }, - "m_battleCard": { - "type": "bool", - "id": 7, - "offset": 198, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1332843753 - }, - "m_itemCard": { - "type": "bool", - "id": 8, - "offset": 199, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1683654300 - }, - "m_sideBoard": { - "type": "bool", - "id": 9, - "offset": 200, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1897838368 - }, - "m_spellID": { - "type": "unsigned int", - "id": 10, - "offset": 204, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1697483258 - }, - "m_leavesPlayWhenCastOverride": { - "type": "bool", - "id": 11, - "offset": 216, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 874407398 - }, - "m_cloaked": { - "type": "bool", - "id": 12, - "offset": 196, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 7349510 - }, - "m_enchantmentSpellIsItemCard": { - "type": "bool", - "id": 13, - "offset": 76, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 531590701 - }, - "m_premutationSpellID": { - "type": "unsigned int", - "id": 14, - "offset": 112, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1530256370 - }, - "m_enchantedThisCombat": { - "type": "bool", - "id": 15, - "offset": 77, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1895738923 - }, - "m_paramOverrides": { - "type": "class SharedPointer", - "id": 16, - "offset": 224, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2061635599 - }, - "m_subEffectMeta": { - "type": "class SharedPointer", - "id": 17, - "offset": 240, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1944101106 - }, - "m_delayEnchantment": { - "type": "bool", - "id": 18, - "offset": 257, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 191336919 - }, - "m_PvE": { - "type": "bool", - "id": 19, - "offset": 264, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 269492350 - }, - "m_delayEnchantmentOrder": { - "type": "enum SpellEffect::kDelayOrder", - "id": 20, - "offset": 72, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2526055263, - "enum_options": { - "SpellEffect::kAnyOrder": 0, - "SpellEffect::kFirst": 1, - "SpellEffect::kSecond": 2 - } - }, - "m_roundAddedTC": { - "type": "int", - "id": 21, - "offset": 260, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 112365451 - }, - "m_secondarySchoolID": { - "type": "unsigned int", - "id": 22, - "offset": 304, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2081206026 - } - } - }, - "1015536062": { - "name": "class TieredSpellTemplate", - "bases": [ - "SpellTemplate", - "CoreTemplate", - "PropertyClass" - ], - "hash": 1015536062, - "properties": { - "m_behaviors": { - "type": "class BehaviorTemplate*", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1197808594 - }, - "m_name": { - "type": "std::string", - "id": 1, - "offset": 96, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1717359772 - }, - "m_description": { - "type": "std::string", - "id": 2, - "offset": 168, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1649374815 - }, - "m_advancedDescription": { - "type": "std::string", - "id": 3, - "offset": 200, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3465713013 - }, - "m_displayName": { - "type": "std::string", - "id": 4, - "offset": 136, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2446900370 - }, - "m_spellBase": { - "type": "std::string", - "id": 5, - "offset": 248, - "flags": 268435463, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2688054198, - "enum_options": { - "__BASECLASS": "CinematicTemplate" - } - }, - "m_effects": { - "type": "class SharedPointer", - "id": 6, - "offset": 280, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 370726379 - }, - "m_sMagicSchoolName": { - "type": "std::string", - "id": 7, - "offset": 312, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2035693400 - }, - "m_sTypeName": { - "type": "std::string", - "id": 8, - "offset": 352, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3580785905 - }, - "m_trainingCost": { - "type": "int", - "id": 9, - "offset": 384, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 982588239 - }, - "m_accuracy": { - "type": "int", - "id": 10, - "offset": 388, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1636315493 - }, - "m_baseCost": { - "type": "int", - "id": 11, - "offset": 232, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1475151502 - }, - "m_creditsCost": { - "type": "int", - "id": 12, - "offset": 236, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 715313825 - }, - "m_pvpCurrencyCost": { - "type": "int", - "id": 13, - "offset": 240, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 645595444 - }, - "m_pvpTourneyCurrencyCost": { - "type": "int", - "id": 14, - "offset": 244, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 517874954 - }, - "m_boosterPackIcon": { - "type": "std::string", - "id": 15, - "offset": 496, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3428653697 - }, - "m_validTargetSpells": { - "type": "unsigned int", - "id": 16, - "offset": 392, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2355782967 - }, - "m_PvP": { - "type": "bool", - "id": 17, - "offset": 408, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 269492361 - }, - "m_PvE": { - "type": "bool", - "id": 18, - "offset": 409, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 269492350 - }, - "m_noPvPEnchant": { - "type": "bool", - "id": 19, - "offset": 410, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 661581703 - }, - "m_noPvEEnchant": { - "type": "bool", - "id": 20, - "offset": 411, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 10144220 - }, - "m_battlegroundsOnly": { - "type": "bool", - "id": 21, - "offset": 412, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1244782419 - }, - "m_Treasure": { - "type": "bool", - "id": 22, - "offset": 413, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1749096414 - }, - "m_noDiscard": { - "type": "bool", - "id": 23, - "offset": 414, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 565749226 - }, - "m_leavesPlayWhenCast": { - "type": "bool", - "id": 24, - "offset": 532, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 698216294 - }, - "m_imageIndex": { - "type": "int", - "id": 25, - "offset": 416, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1570500405 - }, - "m_imageName": { - "type": "std::string", - "id": 26, - "offset": 424, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2391520543 - }, - "m_cloaked": { - "type": "bool", - "id": 27, - "offset": 489, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 7349510 - }, - "m_casterInvisible": { - "type": "bool", - "id": 28, - "offset": 490, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 310214650 - }, - "m_adjectives": { - "type": "std::string", - "id": 29, - "offset": 576, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2967855037 - }, - "m_spellSourceType": { - "type": "enum SpellTemplate::kSpellSourceType", - "id": 30, - "offset": 528, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 156272727, - "enum_options": { - "kCaster": 0, - "kPet": 1, - "kShadowCreature": 2, - "kWeapon": 3, - "kEquipment": 4 - } - }, - "m_cloakedName": { - "type": "std::string", - "id": 31, - "offset": 536, - "flags": 268435463, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2846679215, - "enum_options": { - "__BASECLASS": "SpellTemplate" - } - }, - "m_purchaseRequirements": { - "type": "class RequirementList*", - "id": 32, - "offset": 608, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3174641793 - }, - "m_displayRequirements": { - "type": "class RequirementList*", - "id": 33, - "offset": 840, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3646782876 - }, - "m_descriptionTrainer": { - "type": "std::string", - "id": 34, - "offset": 616, - "flags": 8388871, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1756093908 - }, - "m_descriptionCombatHUD": { - "type": "std::string", - "id": 35, - "offset": 648, - "flags": 8388871, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1631478006 - }, - "m_displayIndex": { - "type": "int", - "id": 36, - "offset": 680, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1250551048 - }, - "m_hiddenFromEffectsWindow": { - "type": "bool", - "id": 37, - "offset": 684, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1832736331 - }, - "m_ignoreCharms": { - "type": "bool", - "id": 38, - "offset": 685, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1840075893 - }, - "m_alwaysFizzle": { - "type": "bool", - "id": 39, - "offset": 686, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2030988856 - }, - "m_spellCategory": { - "type": "std::string", - "id": 40, - "offset": 688, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2472376729 - }, - "m_showPolymorphedName": { - "type": "bool", - "id": 41, - "offset": 720, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2097929096 - }, - "m_skipTruncation": { - "type": "bool", - "id": 42, - "offset": 721, - "flags": 263, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1838335249 - }, - "m_maxCopies": { - "type": "unsigned int", - "id": 43, - "offset": 724, - "flags": 263, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 403022326 - }, - "m_levelRestriction": { - "type": "int", - "id": 44, - "offset": 728, - "flags": 263, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 176502472 - }, - "m_delayEnchantment": { - "type": "bool", - "id": 45, - "offset": 732, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 191336919 - }, - "m_delayEnchantmentOrder": { - "type": "enum SpellEffect::kDelayOrder", - "id": 46, - "offset": 736, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2526055263, - "enum_options": { - "SpellEffect::kAnyOrder": 0, - "SpellEffect::kFirst": 1, - "SpellEffect::kSecond": 2 - } - }, - "m_previousSpellName": { - "type": "std::string", - "id": 47, - "offset": 744, - "flags": 268435463, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2903322585, - "enum_options": { - "__BASECLASS": "SpellTemplate" - } - }, - "m_cardFront": { - "type": "std::string", - "id": 48, - "offset": 456, - "flags": 131359, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3557598526 - }, - "m_useGloss": { - "type": "bool", - "id": 49, - "offset": 488, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 668817544 - }, - "m_ignoreDispel": { - "type": "bool", - "id": 50, - "offset": 776, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1881041624 - }, - "m_backRowFriendly": { - "type": "bool", - "id": 51, - "offset": 777, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 501584377 - }, - "m_spellRank": { - "type": "class SharedPointer", - "id": 52, - "offset": 784, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3152361374 - }, - "m_secondarySchoolName": { - "type": "std::string", - "id": 53, - "offset": 800, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1803268236 - }, - "m_spellFusion": { - "type": "unsigned int", - "id": 54, - "offset": 836, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1658928321 - }, - "m_requiredSchoolName": { - "type": "std::string", - "id": 55, - "offset": 848, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3576058981 - }, - "m_retired": { - "type": "bool", - "id": 56, - "offset": 880, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1931776834 - }, - "m_shardCost": { - "type": "int", - "id": 57, - "offset": 884, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1047182405 - }, - "m_requirements": { - "type": "class RequirementList*", - "id": 58, - "offset": 888, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2840985510 - }, - "m_nextTierSpells": { - "type": "std::string", - "id": 59, - "offset": 896, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1762416321 - } - } - }, - "1795886179": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1795886179, - "properties": { - "m_defaultRatingsTable": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2295782328 - }, - "m_perLeagueRatingsTables": { - "type": "class SharedPointer", - "id": 1, - "offset": 88, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2644292192 - } - } - }, - "1793446538": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1793446538, - "properties": { - "m_resultList": { - "type": "class CombatResult", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2128076658 - }, - "m_duelID.m_full": { - "type": "unsigned __int64", - "id": 1, - "offset": 88, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1024980477 - } - } - }, - "1386526905": { - "name": "class PathActionStop", - "bases": [ - "PathBehaviorTemplate::Action", - "PropertyClass" - ], - "hash": 1386526905, - "properties": { - "m_nPathID": { - "type": "gid", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 214382368 - }, - "m_nNodeID": { - "type": "int", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 152152635, - "enum_options": { - "__DEFAULT": 4294967295 - } - }, - "m_nPriority": { - "type": "int", - "id": 2, - "offset": 84, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1515251530, - "enum_options": { - "__DEFAULT": 100 - } - }, - "m_nChance": { - "type": "int", - "id": 3, - "offset": 88, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1860748394, - "enum_options": { - "__DEFAULT": 50 - } - } - } - }, - "1793116337": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1793116337, - "properties": { - "m_worldList": { - "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 560397361 - } - } - }, - "631540322": { - "name": "class SharedPointer", - "bases": [ - "ServiceOptionBase", - "PropertyClass" - ], - "hash": 631540322, - "properties": { - "m_serviceName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2206028813 - }, - "m_iconKey": { - "type": "std::string", - "id": 1, - "offset": 168, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2457138637 - }, - "m_displayKey": { - "type": "std::string", - "id": 2, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3023276954 - }, - "m_serviceIndex": { - "type": "unsigned int", - "id": 3, - "offset": 204, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2103126710 - }, - "m_forceInteract": { - "type": "bool", - "id": 4, - "offset": 200, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1705789564 - } - } - }, - "1015755683": { - "name": "class CantripsMajorInvisibilityEffectInfo", - "bases": [ - "CantripsInvisibilityEffectInfo", - "GameEffectInfo", - "PropertyClass" - ], - "hash": 1015755683, - "properties": { - "m_effectName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2029161513 - } - } - }, - "227091653": { - "name": "class BlobDefinition*", - "bases": [ - "PropertyClass" - ], - "hash": 227091653, - "properties": { - "m_type": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1717601629 - }, - "m_subType": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3175052615 - }, - "m_versionNumber": { - "type": "unsigned int", - "id": 2, - "offset": 136, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1265259452 - }, - "m_packageNumber": { - "type": "int", - "id": 3, - "offset": 140, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1934060719 - }, - "m_associatedGID": { - "type": "gid", - "id": 4, - "offset": 144, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 148404716 - }, - "m_epochDays": { - "type": "unsigned int", - "id": 5, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1631557837 - } - } - }, - "631473546": { - "name": "class WizGoalData*", - "bases": [ - "PropertyClass" - ], - "hash": 631473546, - "properties": { - "m_goalID": { - "type": "gid", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 485200232 - }, - "m_name": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1717359772 - }, - "m_nameID": { - "type": "unsigned int", - "id": 2, - "offset": 112, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 954387579 - }, - "m_status": { - "type": "enum GOAL_STATUS", - "id": 3, - "offset": 116, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3025501257, - "enum_options": { - "GOAL_STATUS_INVALID": 4294967295, - "GOAL_STATUS_INCOMPLETE": 0, - "GOAL_STATUS_COMPLETE": 1 - } - }, - "m_location": { - "type": "std::string", - "id": 4, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2079561588 - }, - "m_type": { - "type": "enum GoalTemplate::GOAL_TYPE", - "id": 5, - "offset": 184, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1683753114, - "enum_options": { - "GoalTemplate::GOAL_TYPE_UNKNOWN": 0, - "GoalTemplate::GOAL_TYPE_BOUNTY": 1, - "GoalTemplate::GOAL_TYPE_BOUNTYCOLLECT": 2, - "GoalTemplate::GOAL_TYPE_SCAVENGE": 3, - "GoalTemplate::GOAL_TYPE_PERSONA": 4, - "GoalTemplate::GOAL_TYPE_WAYPOINT": 5, - "GoalTemplate::GOAL_TYPE_SCAVENGEFAKE": 6, - "GoalTemplate::GOAL_TYPE_ACHIEVERANK": 7, - "GoalTemplate::GOAL_TYPE_USAGE": 8, - "GoalTemplate::GOAL_TYPE_COMPLETEQUEST": 9, - "GoalTemplate::GOAL_TYPE_SOCIARANK": 10, - "GoalTemplate::GOAL_TYPE_SOCIACURRENCY": 11, - "GoalTemplate::GOAL_TYPE_SOCIAMINIGAME": 12, - "GoalTemplate::GOAL_TYPE_SOCIAGIVEITEM": 13, - "GoalTemplate::GOAL_TYPE_SOCIAGETITEM": 14, - "GoalTemplate::GOAL_TYPE_COLLECTAFTERBOUNTY": 15, - "GoalTemplate::GOAL_TYPE_ENCOUNTER_WAYPOINT_FOREACH": 16 - } - }, - "m_sendType": { - "type": "enum ENUM_SENDTYPE", - "id": 6, - "offset": 188, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1837051977, - "enum_options": { - "SENDTYPE_UNKNOWN": 4294967295, - "SENDTYPE_NORMAL": 0, - "SENDTYPE_NEW": 1, - "SENDTYPE_UPDATE": 2, - "SENDTYPE_NOUPDATE": 3 - } - }, - "m_madLibs": { - "type": "class SharedPointer", - "id": 7, - "offset": 192, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2589921204 - }, - "m_image1": { - "type": "std::string", - "id": 8, - "offset": 208, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2058810671 - }, - "m_image2": { - "type": "std::string", - "id": 9, - "offset": 240, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2058810672 - }, - "m_tagList": { - "type": "class SharedPointer", - "id": 10, - "offset": 272, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 464541847 - }, - "m_completeText": { - "type": "std::string", - "id": 11, - "offset": 288, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2767458393 - }, - "m_QuestHelperEnabled": { - "type": "bool", - "id": 12, - "offset": 320, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1164796656 - }, - "m_petOnlyQuest": { - "type": "bool", - "id": 13, - "offset": 321, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 679359344 - }, - "m_hasActiveResults": { - "type": "bool", - "id": 14, - "offset": 322, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1571197213 - }, - "m_hideGoalFloatyText": { - "type": "bool", - "id": 15, - "offset": 323, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1919383204 - } - } - }, - "1389054729": { - "name": "class TournamentLevelModifiers*", - "bases": [ - "CoreTemplate", - "PropertyClass" - ], - "hash": 1389054729, - "properties": { - "m_behaviors": { - "type": "class BehaviorTemplate*", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1197808594 - }, - "m_levelToRankMod": { - "type": "class Point", - "id": 1, - "offset": 96, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 3747681891 - }, - "m_templateID": { - "type": "unsigned int", - "id": 2, - "offset": 136, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1286746870 - } - } - }, - "227091557": { - "name": "class BlobDefinition", - "bases": [ - "PropertyClass" - ], - "hash": 227091557, - "properties": { - "m_type": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1717601629 - }, - "m_subType": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3175052615 - }, - "m_versionNumber": { - "type": "unsigned int", - "id": 2, - "offset": 136, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1265259452 - }, - "m_packageNumber": { - "type": "int", - "id": 3, - "offset": 140, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1934060719 - }, - "m_associatedGID": { - "type": "gid", - "id": 4, - "offset": 144, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 148404716 - }, - "m_epochDays": { - "type": "unsigned int", - "id": 5, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1631557837 - } - } - }, - "1793980913": { - "name": "class InfractionPenalty", - "bases": [ - "PropertyClass" - ], - "hash": 1793980913, - "properties": { - "m_internalID": { - "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1854540375 - }, - "m_categoryID": { - "type": "unsigned int", - "id": 1, - "offset": 76, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1382795736 - }, - "m_removeAtPointValue": { - "type": "float", - "id": 2, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2112196961 - }, - "m_expireTime": { - "type": "unsigned int", - "id": 3, - "offset": 84, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1836304873 - } - } - }, - "1016644098": { - "name": "class SharedPointer", - "bases": [ - "MoveController::MoveCommand", - "PropertyClass" - ], - "hash": 1016644098, - "properties": { - "m_vTarget": { - "type": "class Vector3D", - "id": 0, - "offset": 88, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3770499167 - } - } - }, - "1793816502": { - "name": "class SharedPointer", - "bases": [ - "Requirement", - "PropertyClass" - ], - "hash": 1793816502, - "properties": { - "m_applyNOT": { - "type": "bool", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1746328074, - "enum_options": { - "__DEFAULT": 0 - } - }, - "m_operator": { - "type": "enum Requirement::Operator", - "id": 1, - "offset": 76, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2672792317, - "enum_options": { - "ROP_AND": 0, - "ROP_OR": 1, - "__DEFAULT": "ROP_AND" - } - }, - "m_magicSchool": { - "type": "std::string", - "id": 2, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1597012900 - } - } - }, - "631552073": { - "name": "enum HangingConversionSpellEffect::HangingEffectType", - "bases": [], - "hash": 631552073, - "properties": {} - }, - "1390955293": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1390955293, - "properties": { - "m_messageBoardList": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2175215327 - } - } - }, - "1016770943": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1016770943, - "properties": { - "m_leagueID": { - "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 692361645 - }, - "m_seasonID": { - "type": "unsigned int", - "id": 1, - "offset": 76, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 535260643 - }, - "m_startTime": { - "type": "unsigned int", - "id": 2, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1598371274 - }, - "m_characterID": { - "type": "gid", - "id": 3, - "offset": 88, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 210498386 - }, - "m_characterSchool": { - "type": "unsigned int", - "id": 4, - "offset": 96, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1330015234 - }, - "m_nameKeys": { - "type": "unsigned int", - "id": 5, - "offset": 100, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1772225898 - }, - "m_level": { - "type": "int", - "id": 6, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 801285362 - }, - "m_wins": { - "type": "int", - "id": 7, - "offset": 108, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 219992347 - }, - "m_score": { - "type": "int", - "id": 8, - "offset": 112, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 809507734 - }, - "m_rank": { - "type": "int", - "id": 9, - "offset": 116, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 219803942 - }, - "m_visualBlob": { - "type": "std::string", - "id": 10, - "offset": 120, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1691722510 - }, - "m_oldScore": { - "type": "int", - "id": 11, - "offset": 152, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 30663605 - } - } - }, - "1389688502": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1389688502, - "properties": { - "m_sFilename": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2431512111 - }, - "m_Flags": { - "type": "unsigned int", - "id": 1, - "offset": 104, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 967851578, - "enum_options": { - "DOCK_BL_OF_BUBBLE": 1, - "DOCK_BR_OF_BUBBLE": 2, - "DOCK_TL_OF_BUBBLE": 4, - "DOCK_TR_OF_BUBBLE": 8 - } - }, - "m_DockToPoint": { - "type": "class Point", - "id": 2, - "offset": 144, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2353513904 - } - } - }, - "229887992": { - "name": "class SharedPointer", - "bases": [ - "GameEffectTimerTrigger", - "PropertyClass" - ], - "hash": 229887992, - "properties": { - "m_radius": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 989410271 - }, - "m_triggerT": { - "type": "float", - "id": 1, - "offset": 76, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2138083583 - }, - "m_popupKey": { - "type": "std::string", - "id": 2, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3434427096 - } - } - }, - "1794256664": { - "name": "class NonCombatMayCastSpellGameEffect*", - "bases": [ - "GameEffectBase", - "PropertyClass" - ], - "hash": 1794256664, - "properties": { - "m_currentTickCount": { - "type": "double", - "id": 0, - "offset": 80, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2533274692 - }, - "m_effectNameID": { - "type": "unsigned int", - "id": 1, - "offset": 96, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1204067144 - }, - "m_bIsOnPet": { - "type": "bool", - "id": 2, - "offset": 73, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 522593303 - }, - "m_originatorID": { - "type": "gid", - "id": 3, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1131810019 - }, - "m_itemSlotID": { - "type": "unsigned int", - "id": 4, - "offset": 112, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1895747595 - }, - "m_internalID": { - "type": "int", - "id": 5, - "offset": 92, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1643137924 - }, - "m_endTime": { - "type": "unsigned int", - "id": 6, - "offset": 88, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 716479635 - }, - "m_spellName": { - "type": "std::string", - "id": 7, - "offset": 128, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2688485244 - }, - "m_percentChance": { - "type": "int", - "id": 8, - "offset": 160, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 385662509 - } - } - }, - "228612715": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 228612715, - "properties": { - "m_instanceList": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2930750483 - } - } - }, - "634943410": { - "name": "class DerbyAddObstacle*", - "bases": [ - "DerbyEffect", - "PropertyClass" - ], - "hash": 634943410, - "properties": { - "m_buffType": { - "type": "enum DerbyTalentBuffType", - "id": 0, - "offset": 92, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1149251982, - "enum_options": { - "Buff": 0, - "Debuff": 1, - "Neither": 2 - } - }, - "m_kTarget": { - "type": "enum DerbyTargetType", - "id": 1, - "offset": 96, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1807803351, - "enum_options": { - "kTargetInFront": 0, - "kTargetBehind": 1, - "kTargetFirst": 2, - "kTargetSelf": 3, - "kTargetAll": 4, - "kTargetLast": 5 - } - }, - "m_nDuration": { - "type": "int", - "id": 2, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1110167982 - }, - "m_effectID": { - "type": "unsigned int", - "id": 3, - "offset": 88, - "flags": 24, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2347630439 - }, - "m_imageFilename": { - "type": "std::string", - "id": 4, - "offset": 112, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2813328063 - }, - "m_iconIndex": { - "type": "unsigned int", - "id": 5, - "offset": 144, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1265133262 - }, - "m_soundOnActivate": { - "type": "std::string", - "id": 6, - "offset": 152, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1956929714 - }, - "m_soundOnTarget": { - "type": "std::string", - "id": 7, - "offset": 184, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3444214056 - }, - "m_targetParticleEffect": { - "type": "std::string", - "id": 8, - "offset": 216, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3048234723 - }, - "m_overheadMessage": { - "type": "std::string", - "id": 9, - "offset": 248, - "flags": 8388639, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1701018190 - }, - "m_requirements": { - "type": "class RequirementList", - "id": 10, - "offset": 280, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2840988582 - }, - "m_lane": { - "type": "enum DerbyLaneEffect", - "id": 11, - "offset": 376, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1075628144, - "enum_options": { - "kLaneRandomONE": 0, - "kLaneAll": 1, - "kLaneMine": 2 - } - }, - "m_obstacleType": { - "type": "unsigned __int64", - "id": 12, - "offset": 384, - "flags": 33554439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2219764488 - }, - "m_nObstacleAmount": { - "type": "int", - "id": 13, - "offset": 392, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 52937033 - } - } - }, - "228521051": { - "name": "class StartBacklashRotationEffectCinematicAction", - "bases": [ - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 228521051, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - } - } - }, - "633843245": { - "name": "class ChannelResponseInfo", - "bases": [], - "hash": 633843245, - "properties": {} - }, - "1017639429": { - "name": "class MoraleModificationMap", - "bases": [ - "PropertyClass" - ], - "hash": 1017639429, - "properties": { - "m_nMoraleChanceAmt": { - "type": "int", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 853293452 - }, - "m_kActionType": { - "type": "enum DerbyActionTargetType", - "id": 1, - "offset": 76, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3131470053, - "enum_options": { - "Jump": 0, - "Duck": 1 - } - } - } - }, - "1391001119": { - "name": "class PestBehavior", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1391001119, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - } - } - }, - "633783930": { - "name": "class SharedPointer", - "bases": [ - "BGPenaltyMatchBan", - "InfractionPenalty", - "PropertyClass" - ], - "hash": 633783930, - "properties": { - "m_internalID": { - "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1854540375 - }, - "m_categoryID": { - "type": "unsigned int", - "id": 1, - "offset": 76, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1382795736 - }, - "m_removeAtPointValue": { - "type": "float", - "id": 2, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2112196961 - }, - "m_expireTime": { - "type": "unsigned int", - "id": 3, - "offset": 84, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1836304873 - }, - "m_duration": { - "type": "unsigned int", - "id": 4, - "offset": 88, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1041524755 - } - } - }, - "1795952116": { - "name": "class DailyQuestData*", - "bases": [ - "PropertyClass" - ], - "hash": 1795952116, - "properties": { - "m_dailyQuestList": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 3219359410 - } - } - }, - "633053991": { - "name": "class SharedPointer", - "bases": [ - "CoreTemplate", - "PropertyClass" - ], - "hash": 633053991, - "properties": { - "m_behaviors": { - "type": "class BehaviorTemplate*", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1197808594 - }, - "m_levelToRankMod": { - "type": "class Point", - "id": 1, - "offset": 96, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 3747681891 - }, - "m_templateID": { - "type": "unsigned int", - "id": 2, - "offset": 136, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1286746870 - } - } - }, - "1017640709": { - "name": "class MoraleModificationMap*", - "bases": [ - "PropertyClass" - ], - "hash": 1017640709, - "properties": { - "m_nMoraleChanceAmt": { - "type": "int", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 853293452 - }, - "m_kActionType": { - "type": "enum DerbyActionTargetType", - "id": 1, - "offset": 76, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3131470053, - "enum_options": { - "Jump": 0, - "Duck": 1 - } - } - } - }, - "1795951956": { - "name": "class DailyQuestData", - "bases": [ - "PropertyClass" - ], - "hash": 1795951956, - "properties": { - "m_dailyQuestList": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 3219359410 - } - } - }, - "229800752": { - "name": "class SharedPointer", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 229800752, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_maxTempStartingPips": { - "type": "int", - "id": 1, - "offset": 112, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 997576222 - }, - "m_maxTempStartingPowerPips": { - "type": "int", - "id": 2, - "offset": 116, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 31848011 - } - } - }, - "1391192220": { - "name": "class DuelBehavior", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1391192220, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_pDuel": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1066616366 - }, - "m_sigilTemplateID": { - "type": "unsigned int", - "id": 2, - "offset": 128, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 269055310 - } - } - }, - "228794493": { - "name": "class ResTeleport", - "bases": [ - "Result", - "PropertyClass" - ], - "hash": 228794493, - "properties": {} - }, - "1391136284": { - "name": "class DeckBehavior", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1391136284, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_spellList": { - "type": "class SharedPointer", - "id": 1, - "offset": 120, - "flags": 27, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2181913740 - }, - "m_serializedExclusionList": { - "type": "std::string", - "id": 2, - "offset": 152, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1502583517 - }, - "m_archmasterySchool": { - "type": "unsigned int", - "id": 3, - "offset": 184, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 485805784 - } - } - }, - "1019842935": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1019842935, - "properties": {} - }, - "1796253012": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1796253012, - "properties": { - "m_goals": { - "type": "class GoalEntryFull*", - "id": 0, - "offset": 72, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2484767728 - } - } - }, - "634037111": { - "name": "class ObstacleCourseObstacleBehavior*", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 634037111, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - } - } - }, - "1018187254": { - "name": "class ZoneTokenContainer*", - "bases": [ - "PropertyClass" - ], - "hash": 1018187254, - "properties": { - "m_tokens": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621026866 - } - } - }, - "1391163711": { - "name": "class PathBehavior", - "bases": [], - "hash": 1391163711, - "properties": {} - }, - "1017798083": { - "name": "class WizardSearchResultItem*", - "bases": [ - "Search::ResultItem", - "PropertyClass" - ], - "hash": 1017798083, - "properties": { - "m_userID": { - "type": "gid", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1037989700 - }, - "m_userName": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2213937019 - }, - "m_characterID": { - "type": "gid", - "id": 2, - "offset": 112, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 210498386 - }, - "m_characterName": { - "type": "std::wstring", - "id": 3, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2815013574 - }, - "m_zoneName": { - "type": "std::string", - "id": 4, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2171167736 - }, - "m_realmName": { - "type": "std::string", - "id": 5, - "offset": 184, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3507983949 - }, - "m_level": { - "type": "int", - "id": 6, - "offset": 216, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 801285362 - }, - "m_world": { - "type": "int", - "id": 7, - "offset": 232, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 814685730 - }, - "m_nameKey": { - "type": "unsigned int", - "id": 8, - "offset": 220, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1104764311 - }, - "m_gender": { - "type": "enum eGender", - "id": 9, - "offset": 224, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2121766730, - "enum_options": { - "Male": 1, - "Female": 0, - "Neutral": 2 - } - }, - "m_race": { - "type": "enum eRace", - "id": 10, - "offset": 228, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 390582957, - "enum_options": { - "Bat": 88066, - "BatLightning": 1472842576, - "Boar": 2624962, - "CatThug": 1855674386, - "ChristmasElf": 819908552, - "ChristmasSnowman": 1146515225, - "Colossus_Ice": 1063279538, - "Cyclops": 1691813655, - "DragonBeta": 417003588, - "DragonFriendly": 69049013, - "EvilSnowman": 1579630926, - "FireElf": 443793687, - "Firecat": 2045525741, - "Frog": 2274918, - "FrostBeetle": 7692383, - "GhostBlue": 1097396892, - "GhostGreen": 882822629, - "GhostRed": 560510742, - "GhostYellow": 909974358, - "Ghoul": 82556199, - "GoatMonk": 486215564, - "GolemBrass": 1057388325, - "GolemClockwork": 1143380031, - "GolemSteel": 1660583674, - "GolemWood": 1426849876, - "HalloweenCat": 1042869199, - "Heckhound": 626736403, - "Helephant": 719065368, - "Human": 79806088, - "Hydra": 70785800, - "Imp": 84361, - "Krokomummy": 555755242, - "Kroktut": 1352354178, - "Leprechaun": 2106466410, - "LeprechaunPattyDay": 380507781, - "LightningBat": 228257682, - "Mannequin": 428442544, - "Minotaur": 949570680, - "Mount_Broom": 94637995, - "Mount_Cat": 1150940211, - "Mount_Dragon": 1565720148, - "Mount_Horse": 2054712767, - "Mount_PlayerWings": 589829552, - "Nikkos": 1563122418, - "NinjaPig": 607400740, - "Orthus": 1552590225, - "Piggle": 1897753328, - "Piggle_Valentine": 687697592, - "Piggle_ValentinePart2": 1760391091, - "Pixie": 74836240, - "RatMagician": 885542120, - "SalamanderFire": 48480175, - "SalamanderIce": 2011152164, - "SalamanderStorm": 600331072, - "Satyr": 84793363, - "Scarab": 2143810477, - "Sheep": 86220083, - "SkeletonArmored": 1791586239, - "SnowSerpent": 138621543, - "Spider": 1603064269, - "SpiderBlack": 559353179, - "SpiderBrown": 557941675, - "SpiderCrystal": 2119625297, - "SpiderGolem": 1632616514, - "Sprite": 1889156557, - "SpriteDark": 1888685518, - "Stormzilla": 252684095, - "SunBird": 1602211198, - "Transformation_ArmoredSkeleton": 1861349834, - "Transformation_CatThug": 1175387611, - "Transformation_Cat_Bandit": 1012395694, - "Transformation_ClockworkGolem": 601121214, - "Transformation_Cyclops": 620156297, - "Transformation_DarkFairy": 1206757203, - "Transformation_DraconianSorcerer": 1212016810, - "Transformation_Draconian": 450730089, - "Transformation_EarthColossus": 140119452, - "Transformation_EvilSnowman": 1497097122, - "Transformation_FatGobbler": 634003800, - "Transformation_FireElemental": 822233230, - "Transformation_FireElf": 46585468, - "Transformation_FireSalamander": 2118418114, - "Transformation_Gobbler_Skinny": 162365207, - "Transformation_GolemSteel": 1329184184, - "Transformation_Ice_Colossus": 430406408, - "Transformation_Krokomummy": 1644615769, - "Transformation_MagmaMan": 545064542, - "Transformation_Mander": 88998828, - "Transformation_NinjaPig": 1029132174, - "Transformation_Ninja_Pig_04": 7093548, - "Transformation_RatThug": 1175352795, - "Transformation_RavenMystic": 1443197359, - "Transformation_StormElemental": 637088511, - "Transformation_Treant": 1874998327, - "Transformation_WarPig": 691088645, - "Transformation_WolfScout": 263523463, - "Transformation_WolfWarrior": 6092463, - "Transformationn_SkeletonPirate": 1821341863, - "Treant": 1396597132, - "Troll": 82261620, - "Unicorn": 550546918, - "Unknown": 718677478, - "Wolverine": 528843083, - "Wraith": 1788506505, - "Wyrmkin": 379044612, - "Transformation_CyrusDrake": 94277831, - "PetEgg": 1973167984, - "GhostLady": 493415959, - "Banshee": 827805677, - "GobblerRed": 250135875, - "Ghoul_Gravedigger": 161812468, - "SkeletonWarrior": 734585814, - "BansheeBoss": 806445565, - "Seraph": 1792950125, - "CrabKing": 277875784, - "UndeadCaster": 1680689397, - "DragonFrontier": 1829438301, - "HeckhoundGhost": 872406464, - "Mount_Unicorn": 212699468, - "Jellyfish": 910724608, - "SeaDragon": 1194541306, - "Turtle": 1897184620, - "Starfish": 1447562471, - "SpinyFish": 162948281, - "Mount_Gryphon": 2110522960, - "Mount_Shark": 1170186623, - "Mount_Manta": 979931598, - "Mount_Seahorse": 1554833818, - "Mount_Seahorse_Tough": 1245859453, - "Mount_Koi": 1150937409, - "Mount_Lobster": 2025618875, - "Mount_Turtle": 1490849128, - "VenusFlyTrap": 1612039757, - "GDN_MED_BabyCarrots": 327334743, - "GDN_SM_BoomShroom": 31324632, - "GDN_SM_Dandelion": 2058674142, - "GDN_SM_Disparagus": 1732989489, - "GDN_MED_EvilSnowPeas": 747408607, - "GDN_SM_FicklePickle": 205381955, - "GDN_SM_HappyHolidaisy": 1736236340, - "GDN_MED_HelephantEars": 1803669659, - "GDN_MED_HoneySickle": 424149132, - "GDN_LG_NinjaFig": 847338104, - "GDN_LG_SnapDragon": 1076151689, - "GDN_SM_StinkWeed": 845383431, - "GDN_MED_TrumpetVine": 1922690264, - "GDN_MED_VenusFlyTrap": 1560899638, - "GDN_SM_Laughodil": 1278979588, - "GDN_LG_BreadFruitBush": 533042934, - "GDN_MED_PricklyBearCactus": 1236846986, - "GDN_MED_KingParsley": 110148182, - "LeprechaunPatriotic": 414730890, - "SeraphYuletide": 1325846853, - "DragonGhost": 1502126893, - "UnicornNightmare": 604358256, - "EvilSnowmanSandman": 1579432150, - "Colossus_Spirit": 422514215, - "Rock": 2393554, - "GDN_MED_GivingTree": 2047236132, - "Egg": 70853, - "Mount_Carpets": 1602744888, - "Kraken": 1737191829, - "Wyvern": 1727802601, - "Phoenix": 1765559002, - "Judgement": 562901781, - "ForestLord": 1390734923, - "Humongofrog": 1272123051, - "Scarecrow": 41441599, - "Mount_Ram": 77196599, - "BasketSnake": 1835657086, - "Samoorai": 522797493, - "Transformation_RavenWarrior": 701169336, - "PhoenixStorm": 1325268802, - "PhoenixDeath": 1281634042, - "GDN_LG_CouchPotatoes": 879742725, - "GDN_MED_KeyLimes": 811516024, - "Mount_BoneDragon": 1023618313, - "Mount_BigBoneDragon": 1124383680, - "Mount_FairyWings": 1904926612, - "Mount_DragonWings": 755225925, - "Mount_Pegasus": 1621244140, - "GDN_MED_BellPepper": 1710238687, - "GDN_MED_GrapesOfWrath": 1068787103, - "GDN_SM_TigerLily": 1899057048, - "WysteriaPiggle": 49173891, - "Mount_Wyvern": 1658410744, - "Mount_2P_Rhino": 1052779475, - "NightHawk": 358964390, - "Giraffe": 935214826, - "Mount_Hawk": 2070898895, - "Mount_HalloweenNightmare": 726136378, - "GobblerHalloween": 1482399836, - "Leopard": 1606863715, - "Skink": 76950867, - "Mount_Ostrich": 466111322, - "Mount_Crocagator": 1981222087, - "Transformation_Blacktusk-01": 401543565, - "Mount_Hippogriff": 2043817624, - "Transformation_Gorilla-01": 1555853240, - "Transformation_Gorilla-02": 1606184888, - "Mount_Raven": 94983735, - "Mount_Chrismoose": 1822495199, - "Mount_CandyCane": 1148551147, - "Ivy_League": 925492799, - "GDN_MED_Ivy_League": 1630077794, - "Mount_Kirin": 1168691825, - "GDN_SM_Moonflower": 2068754330, - "GDN_MED_BoonTree": 788055729, - "Snowball": 2046118016, - "Foo_Dog": 1549710807, - "ShenlongDragon": 932676736, - "Monkey": 1233866291, - "Wolfhound": 626884686, - "Redcap": 1540319086, - "Raven": 79941650, - "HollowKnight": 1107268274, - "Book": 2405826, - "GDN_MED_AngoraBunnyEars": 1547559854, - "GDN_MED_FortuneCookieTree": 786686214, - "GDN_MED_GooseTree": 809354938, - "GDN_SM_HoneyBeePlant": 1528880373, - "GDN_MED_BambooShoots": 1096708900, - "GDN_SM_Huckleberries": 1937475840, - "Rock_Moustache": 962221287, - "Efreet_Myth": 1834555522, - "Efreet": 1401700123, - "Mammoth": 1395147745, - "Triton": 1730466188, - "Gnome": 74954215, - "BoneDragon": 429245206, - "Basilisk": 1457899086, - "Chimera": 529027789, - "Transformation_GammaTemplate": 1337834518, - "Mount_Camel": 1168198963, - "Mount_RenaissanceWings": 1049782088, - "Bull_Mount": 1713506759, - "Mount_Owl": 1150938242, - "Mount_Alphyn": 487264165, - "Mount_Stag": 1150353823, - "Mount_Auroch": 509865325, - "Mount_Warg": 1150358072, - "StrangeBeast": 511334734, - "Efreet_Ice": 1820009122, - "Efreet_Storm": 1269986674, - "GDN_LG_AlligatorPear": 1293913372, - "Mount_2P_Treant": 928450863, - "Mount_2P_Dragon": 1431637933, - "Mount_Pogo_Stick_WC": 1462849298, - "Mount_Pogo_Stick_MB": 1349603090, - "GDN_LG_MeltingCheese": 1914589015, - "GDN_SM_FishOnAVine": 1734955358, - "GDN_LG_AngelOak": 1539539424, - "GDN_LG_MeltingCheese_Angel": 1254781264, - "SnowyOwl": 1682262138, - "Mount_3P_Hydra": 1207475250, - "WeaselMinstrel": 1541234616, - "MOUNT_Rickshaw": 938282973, - "Transformation_Sherlock-Bones": 509126601, - "Mount_Phoenix": 556355452, - "Toaddle": 597488187, - "Pantera": 528797696, - "WildfireTreant": 673362041, - "StoneTiger": 746336665, - "Blowfish": 1447737334, - "Smith": 78327187, - "FlyingCat": 1254472614, - "RamWarrior": 536916302, - "Ladybug": 1846384669, - "BurlapBoy": 607590898, - "DeerKnight": 560802130, - "Gargoyle": 1227701700, - "Chameleon": 596131510, - "Scorpion": 1462253104, - "GDN_SM_BoiledPeanuts": 544885684, - "GDN_SM_ClockFlower": 676513046, - "GDN_SM_DeadBeets": 650783482, - "GDN_MED_SnowApple": 1916648180, - "Eyecaramba_Violet": 1804780775, - "Eyecaramba_Green": 750346574, - "Eyecaramba_Orange": 687614854, - "Piggle_Grandfather": 131445665, - "Velociraptor": 1042311818, - "Babydactyl": 1180982194, - "Stegosaurus": 476811765, - "Mount_Pegasus_Spectral": 948250730, - "Mount_2P_Scarydactyl": 1808983335, - "Mount_2P_TRex": 1495851852, - "Therizinosaurus": 80337863, - "Runtosaurus": 476200406, - "FrilledLizard": 420993517, - "Mount_Ankylosaurus": 669692274, - "Mount_Triceratops": 1126950204, - "Mount_2P_Glider": 1630365881, - "Transformation_Thunderhorn": 1045262037, - "Transformation_Jaguar": 1080966062, - "Transformation_Pteranadon": 273836142, - "Transformation_ShadowWeaver": 255927111, - "Transformation_EagleWarrior": 1880471875, - "Mount_Falalalallama": 389890123, - "Mount_2P_WinterTreant": 1850265056, - "GDN_LG_MissileToe": 1767792974, - "GDN_MED_PointSetta": 647257205, - "Nutcracker2012": 1598217699, - "Coal2012": 1627852119, - "Mount_Sleigh": 1636615519, - "Mount_Sabertooth": 1613031507, - "Mount_MechanicalWings": 1014917438, - "PiranhaHunter": 686271163, - "Quetzal": 2020925822, - "Mount_Sloth": 1169387359, - "HollowKnightLife": 2114081886, - "BettaFish": 138088968, - "MummyCat": 62372925, - "TrojanHorse": 1725299194, - "WC_Storm_Possessed": 186960228, - "AV_Possessed": 1106693085, - "AZ_Possessed": 1106692701, - "CL_Possessed": 1106692255, - "KT_Possessed": 1106693015, - "MS_Possessed": 1106692977, - "WC_Possessed": 1106692459, - "Mount_2P_Whale": 448824263, - "Mount_2P_Chariot": 88035298, - "Mount_WarBoar": 1159836211, - "Mount_Palanquin": 47587550, - "BearCub": 672664722, - "Transformation_Minotaur": 1454233452, - "DragonGauntlet": 797645257, - "DeathUnicorn": 924144161, - "Flamingo": 1488424911, - "Mount_Gorilla": 1939919432, - "Mount_WarUnicorn": 1361393198, - "GargoyleMyth": 1819685060, - "TikiMan": 16098567, - "Siren": 79937811, - "GoldenRam": 410220227, - "Harpy": 96026632, - "SwordShield": 1668411785, - "ClockworkKnight": 1059948980, - "Mount_MechanicalEagle": 1720948645, - "Mount_Cloud": 1166233435, - "Mount_Surfboard": 1914250039, - "Mount_BetaDragon": 1023653721, - "Mount_BeeWings": 1387988401, - "Vampire": 524731385, - "FrankenBunny": 589797989, - "BumbleBee": 249592226, - "Mount_Dragonfly": 1028843656, - "BronzeGolem": 1320867859, - "TarantulaHawk": 1983939429, - "Mount_Grasshopper": 1852850928, - "FlyingSquirrel": 847551166, - "GDN_MED_Sunion": 1652707634, - "GDN_MED_SwordFern": 548761438, - "GDN_SM_SugarKhrystal": 267539461, - "GDN_SM_SawPalmetto": 1892888046, - "GDN_LG_FacePalm": 2050814140, - "GDN_LG_QueenCrapeMyrtle": 80378450, - "Transformation_ShadowTank": 1304943609, - "Transformation_ShadowHeal": 1254024185, - "Transformation_ShadowDPS": 87276537, - "Mount_Noelephant": 1383672248, - "SaintBernard": 572932242, - "ParkaFox": 2009808189, - "Goose": 75019719, - "Mount_Coconut": 791151432, - "CreepyBeetle": 345594179, - "BabyDragonfly": 1367084335, - "FennecFox": 41315063, - "PP_Leviathan": 833901526, - "PP_SunSerpent": 1062677009, - "PP_LordOfWinter": 960214698, - "PP_Medusa": 867812931, - "PP_Dryad": 147654656, - "PP_AvengingFossil": 315904647, - "PP_Sabertooth": 1799146677, - "Mount_Butterfly": 1283940943, - "Mount_Hare": 2070851023, - "Transformation_MorganthB": 197306990, - "Transformation_MorganthC": 197831278, - "Transformation_MorganthD": 200452718, - "BabyPegasus": 1215000859, - "ArcaneHelp": 1899247549, - "Mount_Vines": 98389624, - "Mount_ArcaneMinecart": 2001270930, - "Hobgoblin": 2133668461, - "Mount_2P_Rowboat": 237071469, - "ForestSpirit": 1178454602, - "Mount_SpiritWolf": 531991076, - "Otter": 84138671, - "OrigamiBird": 550984083, - "DinoSkeletal": 233277835, - "Mount_HarrowingsGreen": 1605746772, - "Mount_HarrowingsBlue": 477152436, - "Mount_HarrowingsPurple": 2092807554, - "RedPanda": 1744233845, - "Ibis": 2665577, - "Corgi": 78823875, - "Mount_Yak": 996545739, - "Mount_FlyingBalance": 436519643, - "Transformation_ShadowMalistaire": 1043814435, - "Transformation_DragonMalistaire": 841867699, - "Mount_Scarab": 1687658791, - "Transformation_MisterHound": 1973578844, - "Mount_BahHumbug": 55114077, - "Skates": 1568993965, - "Moose": 75019725, - "Mount_Gargoyle": 1456663874, - "GDN_MED_VenusFlyTrapEpic": 1594069606, - "Mount_PlayerWingsPink": 19403046, - "GDN_LG_AlligatorPearEpic": 1326804812, - "Pet_Armadillo": 825736847, - "Mount_JoustingDestrierDyeable": 1683448768, - "GDN_MED_VampireCarrots": 871596496, - "GDN_SM_WhiteTigerLilyEpic": 1703271434, - "GDN_LG_NinjaFigEpic": 938504823, - "GDN_LG_SnapDragonEpic": 2071674466, - "GDN_MED_HelephantEarsEpic": 719166107, - "GDN_MED_TrumpetVineEpic": 225854518, - "GDN_SM_DandelionEpic": 728637442, - "GDN_SM_HuckleberriesEpic": 1903258448, - "GDN_MED_SnowAppleEpic": 1231175967, - "GDN_SM_BoomShroomEpic": 981598771, - "GDN_MED_KingParsleyEpic": 2038371004, - "Mount_Raptor": 749695031, - "Pet_Toucan": 581477475, - "Pet_Squirrel": 969881395, - "Mount_WonkyDonkey": 1481657312, - "Mount_HawkPatriotic": 509149743, - "Pet_FrogAssistant": 1945041750, - "Mount_Cat2": 1151054899, - "Mount_Cat2BW": 1603515443, - "Pet_ArmadilloBW": 825733899, - "Pet_FrankieForearms": 1100195857, - "Mount_SolarSabre": 1281093703, - "MNT_MechOstrich": 258667969, - "MNT_BootsBalance": 1799191558, - "MNT_BootsDeath": 1034912971, - "MNT_BootsFire": 606061658, - "MNT_BootsIce": 2142643294, - "MNT_BootsLife": 773751898, - "MNT_BootsMyth": 144792486, - "MNT_BootsStorm": 1525245121, - "Pet_CorgiBirthday": 1951779369, - "OrigamiBirdBDay": 1909935955, - "Pet_FlyingBlackCat": 432111988, - "Mount_Narwhal": 449637834, - "Mount_NightOwl": 1648420845, - "Pet_Penguin": 137342907, - "MNT_PowerGemUnicorn": 411234062, - "Pet_CrystalButterfly": 512136094, - "Mount_BabyMammoth": 185831059, - "MNT_BabaYaga": 564874997, - "Pet_BabySeal": 657606984, - "Pet_BabyYeti": 635847496, - "Transformation_BallerinaBear": 1525333600, - "Mount_StagYuletide": 1508680687, - "Transformation_TitanMedium": 1700742736, - "Transformation_TitanLarge": 718614967, - "Pet_SirenIce": 849851564, - "Mount_FlyingDeath": 1717725588, - "Mount_FlyingFire": 1177216332, - "Mount_FlyingIce": 1238841184, - "Mount_FlyingLife": 433397684, - "Mount_FlyingMyth": 164983572, - "Mount_FlyingStorm": 375872049, - "Dragonling": 1730534849, - "Pet_EggChicken": 952873217, - "HeckhoundGhost_MAW": 893368960, - "Mount_WinterTrain": 751515281, - "Mount_RubberDucky": 1826548479, - "Pet_BansheeSpellwrit": 917979583, - "Pet_SamooraiSpellwrit": 370057597, - "Mount_UnicornAstral": 886914505, - "Guest_Boochbeard": 1958574095, - "Pet_MouseSister": 1267930350, - "Pet_MouseFather": 2010008339, - "Pet_VampireSquirrel": 250588691, - "Mount_CoffinCar": 1387606595, - "Mount_BabyElephant": 2026559639, - "Pet_RoadHog": 601156960, - "Mount_WolfGryphonWings": 543038283, - "MNT_ClockworkSteed": 891371132, - "Mount_Chopper": 1196683136, - "Pet_ButterflyLamb": 527214392, - "Pet_MouseMother": 2012687123, - "Pet_MouseBrother": 1174380856, - "Pet_Cherub": 769208559, - "GDN_SM_Jewel": 1104045832, - "MR_Death_Duncan_Grimwater": 1850289001, - "Mount_DesertRunner": 2049036229, - "Pet_MonkeyMirage": 418612892, - "Pet_ClockworkOwl": 1038482431, - "Pet_NinjaTurtle": 2024540686, - "Mount_Vines_Halloween": 82852149, - "Mount_SwarmBat": 1151836459, - "Mount_2P_NinjaDragon": 1239694057, - "Mount_Gobler": 1820615236, - "Mount_MaryleboneCar": 2027689685, - "JackOLantern": 1016361578, - "Transformation_DjinnCommonA_Balance": 996127128, - "Transformation_MedicineMode": 25960701, - "CactusHopper": 1956293007, - "Transformation_Mimic_ChestGold_A": 414145432, - "Mount_Ghoulture": 1067671195, - "Pet_Macaw": 1087278472, - "Pet_SandWorm": 653200803, - "Transformation_DromelDancer": 1071824116, - "Pet_Bunnies": 695874547, - "Mount_Snowboard": 1914380015, - "Transformation_DrommelDancer": 226294468, - "Mount_Carpet_New": 1618650322, - "Mount_BunnySleigh": 599915427, - "Helephant_Heart": 419161272, - "Mount_Snowboard_Holiday": 876339060, - "Transformation_GhostDog": 646575420, - "Transformation_PrinceGobblestone": 693826496, - "Transformation_Mithraya": 1240010601, - "Transformation_LuskaCharmbeak": 897469730, - "Transformation_YoungCyrusDrake": 15595663, - "Kookaburra": 1069759154, - "BorealisGolemPet": 797488492, - "FlyingEyePet": 505959833, - "StormCloudPet": 548463069, - "BullPet": 1993917801, - "OpossumPet": 284003652, - "GhoulturePet": 939920734, - "StormCloudPetB": 548463001, - "StormCloudPetC": 548463003, - "Guest_LordNightshade": 1221409981, - "BullPetB": 1993917561, - "BullPetC": 1993917553, - "BullPetD": 1993917513, - "Transformation_ShadowCrit": 1392195065, - "Mount_Pennyfarthing": 1551926344, - "Mount_RowboatPirate": 2079208803, - "Mount_IceCube": 1261861595, - "Guest_LostMaiden": 883675592, - "Guest_BoatswainMcGee": 1359750850, - "Guest_ChiefMateMcGurk": 329643845, - "Guest_DoomedBones": 2015643882, - "Guest_SpectreoftheBrocken": 266357448, - "Guest_DrownedKnight": 1100966093, - "Guest_TarntheDrowned": 329540205, - "Guest_DisloyalKnight": 1853240753, - "Guest_NamelessKnight": 1065677876, - "Guest_LambentFire": 489886605, - "Guest_LordoftheBrocken": 1662003371, - "Guest_StormCaiman": 1147500291, - "Guest_GrinningDeathMoon": 737595789, - "Guest_MoonSkullWight": 1720039490, - "Guest_HuemacSpearWreath": 1522021131, - "Guest_HowlingBanshee": 1340855338, - "Guest_Sea-Booter": 1818491983, - "Guest_DeadRover": 1009273257, - "Guest_CelestianRemnant": 1312268448, - "Guest_Shadow-WebConscript": 1500529411, - "Guest_Shadow-WebMercenary": 623672171, - "Guest_Shadow-WebWraith": 810956416, - "Guest_Shadow-WebHaunt": 500586883, - "Guest_CelestianPartisan": 633346892, - "Guest_CelestianDefender": 482102727, - "Guest_ThraleBonestriker": 1172972733, - "Guest_VorgenSoulbreaker": 1935693246, - "Guest_ServusBloodsword": 1703995647, - "Guest_QueenCalypso": 845803519, - "Guest_BlueBart": 77043390, - "Guest_KarolakNightspinner": 1008737316, - "Guest_ArachtusDuskweb": 1787750209, - "Guest_ZhalarStarcloud": 1453644105, - "Guest_NarallorNightborn": 1963363700, - "Guest_SelwynSkywatcher": 1413136893, - "Guest_OsseusNightreaver": 306827003, - "Guest_IrateBanshee": 865143109, - "Guest_FuriousHowler": 1607252558, - "Guest_CryingSpirit": 1559074820, - "Guest_UndeadDraconian": 169249571, - "Guest_ReanimatedDraconian": 247067807, - "Guest_GhastlySlave": 80127661, - "Guest_BoundSpecter": 369706568, - "Guest_NecroticHaunter": 1714841563, - "Guest_LoathsomeCreeper": 1087245229, - "Guest_FleshrotRetriever": 1925148031, - "Guest_BarbarianSpirit": 2112552732, - "Guest_BeghastionCrowcaller": 586628832, - "Guest_BeghastionFieldburner": 1650751959, - "Guest_BoneWarrior": 76802026, - "Guest_FleshlessSentry": 708431820, - "Guest_PirateRavager": 945157059, - "Guest_RottenScallywag": 974666855, - "Guest_ArmoredBonewalker": 1444568072, - "Guest_UndeadWizard": 1622435563, - "Guest_SoulSearcher": 2094392941, - "Guest_DecayingBlackguard": 412324062, - "Guest_FoulReaper": 919877614, - "Guest_NightShadow": 1675932226, - "Guest_MotleyCrew": 653779218, - "Guest_OrinGrimcaster": 472649066, - "Guest_GhostofSylviaDrake": 218332449, - "Guest_VikaMarkmaker": 1145181168, - "Guest_VasekAshweaver": 1001434369, - "Guest_FireWraith": 1027720368, - "Guest_HungrySoul": 1722435576, - "Guest_FrostBones": 456145606, - "Guest_SnowSkull": 835837850, - "Guest_WinterSkull": 1556601065, - "Guest_LothinDoombringer": 860995070, - "Guest_MimirWinterbane": 1111898070, - "Guest_KulgrimSoulsunder": 278037985, - "Guest_HitojiniDeathcaster": 1144499043, - "Guest_GaikotsuSkeleton": 1113949902, - "Guest_PhantomAce": 1917639347, - "Guest_PhantomGlider": 849918336, - "Guest_Krokomummy": 857773886, - "Guest_NiriniAncientGuard": 359313880, - "Guest_NiriniFireSpirit": 1863811476, - "Guest_VaultHaunter": 197723476, - "Guest_VigilantDefender": 171276829, - "Guest_WanderingAhnicSpirit": 1702865088, - "Guest_ForgottenDjeseritSoul": 1170568256, - "Guest_KaranahnDeathfeeder": 1612857711, - "Guest_ShamblingAhnic": 1579129677, - "Guest_RisenDjeserit": 287855500, - "Guest_KaranahnMortifier": 874288111, - "Guest_DjeseritDweller": 2058423665, - "Guest_AhnicStrider": 1776992302, - "Guest_GuardianoftheFang": 1816795524, - "Guest_DefenderoftheFang": 354353604, - "Guest_ProtectoroftheFang": 1290191037, - "Guest_SouloftheCharmed": 422890577, - "Guest_KaranahnKeeper": 77581557, - "Guest_NiriniIntimidator": 677205957, - "Guest_CondemnedSoldier": 449152244, - "Guest_NimahtheWicked": 1298248873, - "Guest_AkoriNirini": 1123159753, - "Guest_SoulScavenger": 892852198, - "Guest_KeeperoftheFang": 1676773499, - "Guest_ItennuSokkwi": 699159408, - "Guest_Tempestra": 334938435, - "Guest_QueenIrisiDjeserit": 1861434100, - "Guest_TheBonekeeper": 1302503449, - "Guest_CryptScavenger": 1893795791, - "Guest_Soulsapper": 1699756010, - "Guest_KingUroAhnic": 1788825731, - "Guest_KingShemetDjeserit": 1350067043, - "Guest_UnholyWraith": 1871146013, - "Guest_PikeSpiritcrusher": 498715531, - "Guest_SpellwritScreamer": 801626733, - "Guest_SpellwritRonin": 1671439174, - "Guest_Shrieker": 805966229, - "Guest_GravePhantom": 731622936, - "Guest_NightmareSpirit": 230709057, - "Guest_VengefulCreeper": 1100197884, - "Guest_TombRoamer": 1277825068, - "Guest_ShieldSkeleton": 1634270152, - "Guest_AgonyWraith": 30384496, - "Guest_IcyGhost": 768353592, - "Guest_Half-wittedSkeleton": 647996362, - "Guest_LazyHenchman": 1329554426, - "Guest_TiredFighter": 210248632, - "Guest_Screecher": 469007005, - "Guest_SeethingWraith": 664913100, - "Guest_ColdConfusion": 1304943934, - "Guest_OssuaryConscript": 1017667150, - "Guest_Ghulture": 1330558655, - "Guest_BodyGuard": 1048581801, - "Guest_SpectralGuardian": 422805602, - "Guest_VaultConscript": 1388398065, - "Guest_FootPatrol": 1692393321, - "Guest_ArmedGuard": 2045920536, - "Guest_Chilly": 1764665905, - "Guest_Achey": 973370519, - "Guest_Sneezy": 1769440773, - "Guest_Cough": 1170200073, - "Guest_Shadowbones": 1316133167, - "Guest_ForgottenConscript": 1466348281, - "Guest_BarracksGuardian": 236603440, - "Guest_CryptConscript": 314755436, - "Guest_DurvishSeeker": 1825622267, - "Guest_MedicineMode": 167015574, - "Guest_Myriarch2": 593881680, - "Guest_Myriarch3": 593881616, - "Guest_MyriarchEphialtes": 773531895, - "Guest_MotherGhulture": 1585201915, - "Guest_CaptainCosrow": 727107332, - "Guest_VizierRafaj": 214040637, - "Guest_DarkmoorSerf": 1522169114, - "Guest_DarkmoorSquire": 1822567109, - "Guest_ScarletWampyr": 1683954247, - "Guest_DraconianRevenant": 741497298, - "Guest_DraconianEidolon": 107733297, - "Guest_AnguishedWraith": 1078602022, - "Guest_DraconianPyromancer": 729577007, - "Guest_DraconianThaumaturge": 189734361, - "Guest_DraconianDiviner": 472633746, - "Guest_DraconianConjurer": 1824962835, - "Guest_DraconianTheurgist": 1828628416, - "Guest_DraconianNecromancer": 175364324, - "Guest_DraconianSorcerer": 1262893339, - "Guest_SirBlackwater": 366308464, - "Guest_AkhtangWormCrawl": 1589032404, - "Guest_SpiritofDarkmoor": 579455915, - "Guest_ShanevonShane": 2096517522, - "Guest_YevgenyNightCreeper": 1535282881, - "Guest_MalistairetheUndying": 824508513, - "Guest_Bunferatu": 1015806005, - "Guest_CountBelaBlackSleep": 761647679, - "Guest_DeathSoldier": 1715141574, - "Guest_SorrowWhisperer": 556532003, - "Guest_GriefSpectre": 1425488559, - "Guest_HowlingShade": 631460247, - "Guest_WalkingDead": 318527090, - "Guest_Akuji": 977635799, - "Guest_TorturedKakedaSoul": 1716874833, - "Guest_KakedaSpiritSlave": 1814699344, - "Guest_DishonoredSamoorai": 320085744, - "Guest_CursedRonin": 1204095686, - "Guest_TomugawatheEvil": 166125424, - "Guest_OyotomitheDefiler": 1672714483, - "Guest_Fushiko": 801492770, - "Guest_BrokenLandGuardian": 294671991, - "Guest_ShatteredSkyGuardian": 746681463, - "Guest_SunderedSeamGuardian": 1439618652, - "Guest_BrokenLandSpirit": 860105895, - "Guest_ShatteredSkySpirit": 2104112380, - "Guest_SunderedSeamSpirit": 69572311, - "Guest_LostSoul": 204361577, - "Guest_RottingFodder": 308249734, - "Guest_HauntedMinion": 689597338, - "Guest_FieldGuard": 1175228991, - "Guest_SkeletalWarrior": 778393993, - "Guest_SkeletalPirate": 1476730220, - "Guest_WanderingSpecter": 126188449, - "Guest_LivingScarecrow": 1442943145, - "Guest_FrostPhantom": 1809776664, - "Guest_FireShrieker": 173332719, - "Guest_CryptCrawler": 2118799272, - "Guest_ViridianSpecter": 383149977, - "Guest_ArgentClatterer": 525414714, - "Guest_SwimmingSpecter": 1494025094, - "Guest_ScarletScreamer": 1689589811, - "Guest_BoneDigger": 1351421123, - "Guest_HowlingGhost": 664019391, - "Guest_SkeletalSoldier": 750463116, - "Guest_MaidenofHate": 444442868, - "Guest_SkeletalRetainer": 1409032775, - "Guest_SoulHunter": 1900267551, - "Guest_MidnightShuffler": 1991052065, - "Guest_PlaguedSoul": 419071561, - "Guest_HauntingBanshee": 345837052, - "Guest_SimontheSayer": 1352807820, - "Guest_TheHarvestLord": 1923575206, - "Guest_LadyBlackhope": 1403431623, - "Guest_SergeantSkullsplitter": 898737831, - "Guest_Foulgaze": 2063419769, - "Guest_Wormguts": 788697519, - "Guest_Rattlebones": 125602919, - "Guest_Paulson": 1112716921, - "Guest_Grubb": 1167554274, - "Guest_Norton": 581021964, - "Guest_NightStalker": 1447653309, - "Guest_AddereTimeo": 1491420030, - "Guest_TheReaper": 1526369733, - "Guest_AngrusHollowsoul": 1427862805, - "Guest_OrrickNightglider": 951078615, - "Guest_SteelSentinel": 885250894, - "Guest_Shadow-WebSoldier": 2014925398, - "Guest_LostCeleste": 1725301830, - "Guest_CapnNigelSkullcrack": 1665439970, - "Guest_HaulAwayJoe": 1075985331, - "Guest_OldMaui": 15300840, - "Guest_LordAgue": 140791419, - "Guest_MelweenaSmite": 432188189, - "Guest_HalloweenTrickster": 2043736417, - "Guest_PumpkinHead": 1098332105, - "Guest_BaronMordecai": 817370918, - "Guest_KaimaniteMummy": 1332671420, - "Guest_VeggieRevanant": 928504192, - "Guest_BloodBat": 76467389, - "Guest_DeadBeets": 157829578, - "Guest_Desparagus": 1130644076, - "Guest_MeanestFly-Trap": 1652898868, - "Guest_Nosferabbit": 1021159436, - "Guest_ThrallofSothmekhet": 330780177, - "Guest_VileApparition": 426627869, - "Guest_SoulServant": 1183110886, - "Guest_SoulKeeper": 917518313, - "Guest_AdmiralBontau": 2032168402, - "Guest_DeathWhisperer": 3814952, - "Mount_RollerBlades": 111369373, - "Guest_BaneWyrm": 147033576, - "Guest_BlackDragon": 939469656, - "Guest_DragonSpawn": 1829803517, - "Guest_Fire-SpitterSpawn": 616624489, - "Guest_CaoranachtheFire-Spitter": 323513000, - "Guest_Jabberwock": 1552492834, - "Guest_CatalantheLightningLizard": 1155778705, - "Guest_WhiteDragon": 2009449331, - "Guest_WinterWyrm": 478925069, - "Guest_WyrmStatue": 2119216210, - "Guest_AlgidWyrm": 1309546482, - "Guest_BruleeSucre": 390936202, - "Guest_HebitohoWyrmling": 1682026810, - "Guest_Shadowwock": 505539184, - "Guest_EirikurAxebreaker": 1361453552, - "Guest_WarWyrm": 1124740742, - "Guest_StrayFireflier": 610979811, - "Guest_BurningFlamewing": 2041225130, - "Guest_FeralLavaling": 371483057, - "Guest_SplinterWing": 923421333, - "Guest_ChanticoBlueAir": 1572441903, - "Guest_CopperWingGuard": 302783602, - "Guest_ObsidianBeak": 2016227452, - "Guest_CaquixNineShadows": 2070101060, - "Guest_LustrousTlalocan": 1201030473, - "Guest_SeedThief": 263211181, - "Guest_PopZotzUnluckyDay": 1416773489, - "Guest_NezathePoet": 1905861376, - "Guest_MazenStingerBee": 1642023393, - "Guest_ImperialJusticePayne": 1285679745, - "Guest_AssistantWardenPorfiry": 22099059, - "Guest_MarshalKamensky": 524669730, - "Guest_WardenVissarovich": 882556823, - "Guest_GulagGuard": 100744159, - "Guest_CaptainKravchuck": 690830770, - "Guest_ImperialGuard": 346803640, - "Guest_IronPaw": 1797329688, - "Guest_TundarianEnforcer": 134256836, - "Guest_Ivan": 996220221, - "Guest_ColonelOrlov": 1381254189, - "Guest_IronPawIntakeCaptain": 2099184835, - "Guest_SolitaryWarden": 1503529566, - "Guest_CaptainZubkov": 793725366, - "Guest_SergeantBobrik": 722182485, - "Guest_WailingWraith": 946976407, - "EggChick": 1452316301, - "BunnyMallow": 518233330, - "Guest_ThunderHornZombie": 1007920040, - "Guest_SmokingMirrorZombie": 340971759, - "Guest_ShamblingZombie": 1920485146, - "Guest_MoonSkullZombie": 809249764, - "Guest_DeathlessStormHorn": 812397213, - "Guest_MozarTurtleHunter": 561749043, - "Guest_GuillermoShatterer": 499565054, - "Guest_XiuhcoatlBarbedTooth": 1719245305, - "Guest_AzcalFireAnt": 1281366337, - "Guest_TlotzinMoonThief": 407285761, - "Guest_PocaCruelStar": 1117353085, - "Guest_ThunderHornGhoul": 597878999, - "Guest_TezomocStoneSinger": 733511940, - "Guest_EzhuaBadTaste": 632779219, - "Guest_UacalxochitlBloodEye": 1614856226, - "Guest_WanadiBlackSky": 349829749, - "Guest_ElMarrow": 483880636, - "Guest_GrimCalaca": 1534029144, - "Guest_XipeFlayedOne": 1343577398, - "Guest_MotecumaDeathMask": 1782393717, - "Guest_EkeChuah": 13416770, - "Guest_AnacaonaBlackSnake": 1543344897, - "Guest_SmokingMirrorWight": 776452983, - "Guest_Tolkemec": 217428080, - "Mount_Fox": 77199428, - "PP_OwlProtege": 268847192, - "Mount_SharkSki": 331374103, - "PP_Dolphin": 1662291612, - "Mount_CastSymbol_D": 1134428045, - "Mount_CastSymbol_E": 1136525197, - "Mount_CastSymbol_F": 1138622349, - "Mount_CastSymbol_G": 1140719501, - "Mount_CastSymbol_A": 1128136589, - "Mount_CastSymbol_B": 1130233741, - "Mount_CastSymbol_C": 1132330893, - "Guest_LionSpectralGuardian": 1791543691, - "Guest_KillmareSpiritwalker": 1818928165, - "Guest_ZebraSpectralGuardian": 815933596, - "Guest_GorillaSpectralGuardian": 1635182119, - "Guest_IklawGhostWarrior": 373465545, - "Guest_BwanaShadowriver": 1307628747, - "Guest_ElephantSpectralGuardian": 1579402208, - "Guest_ZangaZebu": 1218173119, - "Guest_GrumishGreataxe": 486953385, - "PP_GlowFairy_A": 2028856748, - "Guest_RestlessSoldier": 1142701763, - "Guest_WanderingWizard": 209518514, - "Guest_ColonelIvanenko": 399169035, - "Guest_DetollitheDestroyer": 655767295, - "Guest_Jawniak": 1791298433, - "Guest_Tajniak": 356182394, - "Guest_Ygor": 996316081, - "Guest_KyaniteLancer": 2136703656, - "Guest_VestaShadowmark": 1846747836, - "Guest_ZoraSteelwielder": 1186470644, - "Guest_AndorBristleback": 1949884743, - "Guest_GalliumPaladin": 1812340868, - "Guest_GalliumFootman": 1295203112, - "Guest_GalliumShardtrooper": 1210699836, - "Guest_GalliumJuggernaut": 3527584, - "Guest_VladimirDarkflame": 1575322237, - "Guest_KyaniteLieutenant": 561528977, - "Guest_DrusillaMorningbane": 155837810, - "Guest_KyaniteValkyrie": 53242136, - "Transformation_20Q_SherlockBones": 1112674320, - "Guest_DevoraShadowcrown": 1813459117, - "Guest_YoualaNightDrinker": 881289828, - "Guest_Pendragon": 715669945, - "Guest_CelestianRevenant": 515730327, - "Guest_SoullessServant": 1505662730, - "Guest_SpiritServant": 104517373, - "Guest_SoulSerf": 1188214406, - "Guest_ServileSoul": 871844607, - "Guest_SkeletalCorsair": 239414410, - "Guest_RottedFodder": 1301186193, - "Guest_ScarletScreecher": 600457915, - "PP_FrankBunnyBride_A": 974707030, - "Guest_BastillaGravewynd": 2100015237, - "Guest_VilaraMoonwraith": 2067986693, - "Guest_YngvarSharptooth": 1783361972, - "Guest_TroubledWarrior": 1569033392, - "Guest_VeggieRevanant2": 928503904, - "Guest_VeggieRevanant3": 928503888, - "Guest_VeggieRevanant4": 928503872, - "Guest_VeggieRevanant5": 928503856, - "Guest_AncientQhatWarrior": 1564521104, - "Guest_EmperorPaleolo": 2079384347, - "Guest_SpiritofIntolerance": 1627658048, - "Guest_SpiritofInquiry": 1320544891, - "Guest_FirstGuardian": 1982227776, - "Guest_FallenMerc": 225926286, - "Guest_NightShadow2": 1638183490, - "Guest_NightShadow3": 1636086338, - "Guest_NightShadow2-2": 1436856907, - "Guest_NightShadow3-2": 1434759755, - "Guest_NightShadow4-2": 1432662603, - "Guest_NightShadow5-2": 1430565451, - "Guest_NightShadow6-2": 1428468299, - "Guest_NightShadow7-2": 1426371147, - "Guest_FirstScythe": 738854032, - "Guest_GreyMantisCaptain": 860186057, - "Guest_GreyMantisHunter": 1239274377, - "Guest_Atlach-Leng": 836136649, - "Guest_PetrovGloomstrider": 2045783873, - "Guest_NauyotolDownIntheHole": 1134251106, - "Guest_SandorSpearcaller": 1351072377, - "Guest_MavraFlamewing": 1477685600, - "Guest_Scaldling": 208751819, - "Guest_WoebegoneWraith": 1166488705, - "Guest_BorisBlackrock": 1365399915, - "Guest_KatiaFirewinter": 521255834, - "Guest_ValerikBrightsword": 1244055782, - "Guest_RurikFlamesoul": 1962726850, - "Guest_IonaPyrelance": 722266491, - "Guest_DarkPoltergeist": 818162178, - "Guest_TheCollector": 1772287612, - "Guest_ViktorSnowcrusher": 1028387381, - "Guest_ValeskaRedwind": 19316351, - "Guest_ScarrikGallowgaunt": 105397333, - "Guest_Neberyx": 1453883041, - "Guest_AsrikWidebelt": 401936422, - "Guest_GothricHonorbound": 750072340, - "Guest_HalfangBristlecrown": 618779562, - "Guest_OsvudFleetpaw": 1023466459, - "PP_PufferFish_A": 1578606029, - "Guest_OzelUnderwaterCat": 1033669302, - "PP_BabyGreenMan_A": 910025246, - "PP_SchoolTurtle_A": 1012620678, - "PP_DarkBalloon_A": 1229308566, - "MT_JetsamCopter": 92127678, - "Mount_4P_DarkClownCar": 420246262, - "MNT_BalloonsBunch": 2000358474, - "Guest_TempleGuardian": 632574316, - "Guest_TemplePhantom": 1701097840, - "Guest_MahonStarsearcher": 1549093341, - "Guest_LostKnight": 858980994, - "Guest_AnguishedWoodman": 174606918, - "Guest_TormentedTreant": 294050331, - "Guest_WildfireTreant": 1902129818, - "Guest_BlightedYaxche": 679097088, - "Guest_Junglethorn": 1734561424, - "Guest_Tangleroot": 2027061721, - "Guest_BlightedFreerooter": 1109803061, - "Guest_Winterbranch": 1170787806, - "Guest_DecayingBogwalker": 1338670789, - "Guest_BrownwoodTormentor": 1655181754, - "Guest_Wildroot": 1839747182, - "Guest_Ironsplinter": 668295157, - "Guest_Frostbranch": 75974631, - "Guest_KyoukonteiTreant": 474446232, - "Guest_BrokenStumps": 414724364, - "Guest_WordlessWoodsmen": 1813881830, - "Guest_DesiccatedTreebeard": 1826942903, - "Guest_ShadowoftheLand": 1612385317, - "Guest_TreeRoot": 1406633546, - "Guest_BefouledWoodwalker": 1517919498, - "Guest_ConfusedForestWarrior": 750805985, - "Guest_CrazedForestSpirit": 1007960507, - "Guest_Oakheart": 1158293719, - "Guest_SnowTreant": 1028620035, - "Guest_Snowbeard": 1997921701, - "Guest_BarkskinTreant": 2143957812, - "Guest_RazorleafTreant": 2133159197, - "Guest_CarrionFlowerMan": 1120698936, - "Guest_Kurokage": 355651925, - "Guest_LacombeStrawHouse": 568809873, - "Guest_BerkshireStickHouse": 1932133405, - "Guest_TamworthBrickHouse": 894027634, - "Guest_RustyTinderSpark": 1237916230, - "Guest_CoraWinterBranch": 1901918989, - "Guest_GrambleGoldRook": 1986988546, - "Guest_PiperStormTree": 1109520133, - "Guest_Hanadzura": 124838500, - "Guest_Kuchisaki": 2084188681, - "Guest_Kaizoku": 807430784, - "Guest_JaxonLastRites": 1653711119, - "Guest_SeijunKiller": 657647155, - "Guest_ZarichiTarakata": 1129212566, - "Guest_BladelessRonin": 1577395797, - "Guest_SanzokuOutlaw": 1682888807, - "Guest_SanzokuBandit": 1766198653, - "Guest_KakedaPainbringer": 1260119278, - "Guest_KakedaStalker": 367458449, - "Guest_KakedaShadow": 1604499626, - "Guest_KakedaSoulcrusher": 1961168112, - "Guest_ImitsuPlaguemaster": 1361539025, - "Guest_ImitsuDefouler": 1299791045, - "Guest_ImitsuPunisher": 234819300, - "Guest_StudentofKhai": 249757647, - "Guest_OtomoBattlemage": 918160114, - "Guest_OtomoCourier": 1373253378, - "Guest_OtomoSupplyRunner": 1580070577, - "Guest_OtomoScout": 1814051082, - "Guest_OtomoWrestler": 1053571230, - "Guest_OtomoFury": 111319603, - "Guest_Hyottoko": 307080225, - "Guest_Usunoki": 1881339626, - "Guest_Kagemoosha": 1842766119, - "Guest_UdoJin-e": 850816224, - "Guest_TakedaKanryu": 536087422, - "Guest_Tamauji": 818613882, - "Guest_Jikiru": 794167355, - "Guest_Nomoonaga": 849534658, - "Guest_Aiuchi": 515942855, - "Guest_Kurogaso": 1426248002, - "Guest_Ideyoshi": 1814038213, - "Guest_Koto": 1151260427, - "Guest_Usegi": 977549586, - "Guest_Kanago": 1644367227, - "Guest_Kyuto": 1168225979, - "Guest_Haru": 2070048389, - "Guest_Ashikata": 1523446928, - "Guest_Katsumori": 1823914597, - "Guest_Hingen": 1567896261, - "Guest_Yakedo": 502298497, - "Guest_Do-Daga": 1239945714, - "Guest_Maito": 979260804, - "Guest_TonkatsuThug": 1758658397, - "Guest_GobbloreanGuard": 1286210991, - "Guest_BabblingMeints": 413418139, - "Guest_PrinceGobblestone": 1813171676, - "Guest_GobblerMuncher": 1517159487, - "Guest_GobblerGorger": 130736772, - "Guest_GobblerScouter": 1509427587, - "Guest_GobblerGlutton": 1912199781, - "Guest_GobblerScavenger": 136586791, - "Guest_BaronGreebly": 1028182200, - "Guest_BaronRotunda": 457132907, - "PP_DeathMimic": 1811942047, - "Guest_GreenMan": 1126663802, - "Guest_ForestGrump": 1602350320, - "Guest_ErvintheBarbarian": 1671762776, - "Guest_RazortuskWarrior": 1109994549, - "Guest_RazortuskBrawler": 732265321, - "Guest_SplithoofRager": 1922134329, - "Guest_TuskedRaider": 1920114147, - "Guest_SviniBeserker": 1146317608, - "Guest_SviniReaver": 216717251, - "Guest_Shattertusk": 1191456730, - "Guest_SplithoofBarbarian": 296671728, - "Guest_Bloodseeker": 2086598239, - "Guest_Scarsnout": 1831766077, - "Guest_MasterTonkatsu": 1783298894, - "Guest_Grisletusk": 657393295, - "Guest_SplithoofBloodguard": 488382274, - "Guest_BristlehideRaider": 237078958, - "Guest_Gullin": 1656401882, - "Guest_ForestNymph": 812055814, - "Guest_SassafrasMan": 1327049788, - "Guest_RandolfSpellshine": 108808620, - "Guest_BleysFlamerender": 434070106, - "Transformation_Khan": 1398327634, - "Transformation_TheBat": 1675113521, - "MNT_DireWolf": 845578449, - "MNT_YuleMule": 1976182058, - "MNT_LightBlades": 829118450, - "MNT_FlyingSquid": 1573132252, - "PP_Globulin": 467801224, - "PP_BeastBaby": 1807874692, - "PP_SaniBot": 670845902, - "Mount_SwarmSand": 1277669407, - "Guest_Nodnarb": 211478288, - "Guest_LordBramble": 1118781162, - "Guest_Yogash": 506264561, - "Guest_Marcio": 499428996, - "Guest_Procyon": 1115376865, - "Guest_Thunderfin": 2029218563, - "Guest_ArkynMoonblade": 1152775206, - "Guest_CreeCurdWright": 1714953095, - "Guest_DeerMouseRevenant": 315064435, - "Guest_ElanaDarksun": 837982094, - "Guest_KingAlricFateSailor": 1934591130, - "Guest_LaughingCalaca": 984492527, - "Guest_WraithKnight": 620484548, - "Guest_FieryEchoofApep": 484636593, - "Guest_FrostyEchoofApep": 171933154, - "Guest_FalseEchoofApep": 479387377, - "Guest_ChargedEchoofApep": 1229406800, - "Guest_ShrowdengersQhat": 101563303, - "Guest_Scrollkeeper": 643219293, - "Guest_TerrorHound": 753341570, - "Guest_CondemnedMander": 445370758, - "Mnt_SnowStorm": 1491572670, - "Mount_ChimneySweeper": 378571534, - "MNT_PineappleCandyCane": 1630795796, - "Guest_TyphonDustwind": 740849673, - "MNT_StickHorse": 216654744, - "MimicTemplate": 1461219184, - "MNT_Ball_N_Chain": 289720920, - "PP_PeaceDove_A": 1785119671, - "Mount_Gyrocycle": 1495008048, - "PP_BattleMageDragon_A": 1864696711, - "MNT_BattleBeast": 1304449286, - "MNT_SmokeTrails": 387873030, - "Mount_FriendshipHare": 677127330, - "MNT_ButterflySwarm": 383602683, - "PP_EggChick_B": 1959154042, - "MNT_Unicorn": 562210585, - "PP_StuffedUnicorn": 1731641773, - "MNT_ParadeTruck": 2026348978, - "MNT_ParadeTruckXmas": 1017864627, - "MNT_AutumnLeafSwarm": 1540002279, - "PP_GingerbreadMan": 1796172229, - "PP_DecadeDragon": 1819398630, - "MNT_StageShip": 829852992, - "PP_DramaLlama": 255896529, - "PP_HallMinotaur_A": 1492017563, - "Guest_MacDeath": 1526226705, - "Guest_MacDeathUnderstudy": 1731752647, - "Guest_MacLifeUnderstudy": 257466641, - "Guest_MacStormUnderstudy": 8295117, - "MNT_Pantera": 1135198, - "MNT_StagLight": 1908778048, - "MNT_GiantSpider": 1247185021, - "MNT_StagEvil": 872303931, - "PP_BaskHound": 1093866594, - "PP_Marionette": 1688299938, - "PP_Marionette_B": 1688297824, - "Guest_Izft": 996301405, - "Guest_SapotisMinion": 1625665891, - "Guest_CrazedSlave": 1473233468, - "Guest_CharmedSlave": 803043667, - "Guest_EnsorcelledSlave": 40920285, - "Guest_HallServant": 2038116460, - "Guest_SiathePerceiver": 1235571913, - "Guest_Kiwu": 1151177787, - "Guest_NightImp": 1051843424, - "Guest_EvilTrickster": 1035477123, - "Guest_DeepWoodsImp": 1502444054, - "Guest_ForestPest": 802235713, - "Guest_TaintedForestImp": 1030343985, - "Guest_Youkai": 518367729, - "Guest_CarthaginianElephantWarrior": 776293919, - "Guest_IdrisBeast-Taker": 106759521, - "Guest_MikaSkarka": 237956516, - "Guest_Belloq": 757247833, - "Guest_GurtokPiercer": 549466122, - "Guest_GurtokFirebender": 817966523, - "Guest_GurtokDemon": 544070162, - "Guest_GeneralFiretusk": 2073037770, - "Guest_GurtokBarrierDemon": 44657563, - "Guest_BlacktuskShaman": 1009070925, - "Guest_FireDemon": 158367196, - "Guest_DeathOni": 1916642000, - "Guest_JadeOni": 1289517185, - "Guest_PlagueOni": 1464586443, - "Guest_WarOni": 1630196094, - "Guest_BrokenLandMammoth": 1587008312, - "Guest_SunderedSeamMammoth": 1272698721, - "Guest_BullyMammoth": 170705927, - "Guest_Bullhemoth": 146998717, - "Guest_Kogasha": 1909654543, - "Guest_MusuthBerserker": 1741298129, - "Guest_BlackTuskCultist": 1771575961, - "Guest_AksilBlacktrunk": 1253596409, - "Guest_LongdreamerShaman": 1521283133, - "Guest_MuratGreyeyes": 1296814314, - "Guest_ElephantSoldier": 1443670145, - "Guest_DarajaniGuard": 1597288495, - "Guest_Loremaster": 1792470809, - "Guest_Pork": 2069999347, - "Guest_Beans": 97706585, - "MNT_Ox": 1292937747, - "PP_PropellerSquirrel": 1657443894, - "Guest_RasikPridefall": 97921485, - "Guest_AmedrasLightstep": 1818417025, - "MNT_SmokeTrails_Balance": 1358150715, - "MNT_SmokeTrails_Fire": 702971609, - "MNT_SmokeTrails_Ice": 190218501, - "MNT_SmokeTrails_Life": 2045542105, - "MNT_SmokeTrails_Myth": 1276281121, - "MNT_SmokeTrails_Storm": 564954622, - "Guest_Bellosh": 1407013027, - "Guest_AcampiReedfist": 2076527733, - "Guest_AgnettaBroadblade": 14864960, - "Guest_FrostheartRaider": 1574787221, - "Guest_JordaSwordbearer": 1627071850, - "Guest_KasaiBaku": 1153107369, - "Guest_ZoraimeiHelephant": 1002482606, - "Guest_ConscriptedMander": 43811125, - "Firecat_Decade": 409516955, - "MNT_BatGlider": 2086258491, - "Transformation_PlayerHomework": 673389670, - "Transformation_PlayerAttendance": 422287307, - "Transformation_PlayerLecture": 2035625874, - "Transformation_PlayerPopQuiz": 483367038, - "MNT_GingerbreadHorse": 1369242781, - "MNT_NimbariChariot": 1251740392, - "PP_NimbariDog": 1235126828, - "Transformation_PlayerGrandma": 1128332272, - "Transformation_PlayerScionA": 33862367, - "PP_Mushroom": 1568942158, - "MNT_Scooter": 1148167046, - "MNT_Scooter_B": 2079302532, - "MNT_Scooter_C": 1810867076, - "MNT_Scooter_D": 468689796, - "MNT_IceCycle": 415797788, - "Transformation_PlayerScionA02": 33921759, - "Guest_FearoftheFuture": 947210229, - "Guest_FearofGremlins": 405857384, - "Guest_RootGuardian": 922940845, - "Guest_VineThrasher": 172546427, - "Guest_BlightWalker": 1438155154, - "Guest_BriarScourge": 615681851, - "Guest_DreamJabberwock": 907754098, - "Guest_DreamBelloq": 990352002, - "Guest_Voltergeist": 1558128068, - "Guest_SpecialBranch": 1927849418, - "Guest_MutantBriar": 805892802, - "Guest_FeralBriar": 883790223, - "Guest_MaizeMonster": 688905764, - "Guest_DreamShadowwock": 1432458248, - "Mount_Heartboard": 1421972759, - "PP_ChocoBunny": 324797859, - "Mount-PogoFlower": 906659501, - "MNT_AethyrCloud": 1586061078, - "MNT_Fangle": 7846854, - "Guest_StarfallSpider": 1177620831, - "Guest_AshSpider": 1588502553, - "Guest_CorruptedWeaver": 38937211, - "Guest_CrystalCrawler": 1197980149, - "Guest_ShimmerWidow": 1300740128, - "Guest_FacetedSpikespinner": 1939719331, - "Guest_CrystallineQueen": 1999282256, - "Guest_AncientCrystalweaver": 1409608801, - "Guest_FangtoothLavaspinner": 1538042104, - "Guest_VenomousHeatseeker": 1234682482, - "Guest_FireweaveRockbiter": 300743778, - "Guest_MonkeySpider": 754090007, - "Guest_CryptSpider": 1545405304, - "Guest_CommonHouseSpider": 613486002, - "Guest_ArachnaMagnaMagus": 825817937, - "Guest_ArachnaSoldier": 270978709, - "Guest_Gnissa": 1699826178, - "Guest_WebwoodScuttler": 1728611075, - "Guest_SandSpider": 61789007, - "Guest_WebwoodCreeper": 1013382584, - "Guest_Skathi": 1631429165, - "Guest_ArchmagusLorcan": 321146960, - "Guest_CrawleroftheMist": 2076696304, - "Guest_PaintedSpider": 1482115552, - "Guest_GiantSpider": 1545526191, - "Guest_CaveCrawler": 2101587667, - "Guest_RattleCatcher": 1472707326, - "Guest_TrapdoorSpider": 1321643694, - "Guest_RockClinger": 1304266411, - "Guest_InquisitorXimenez": 1053483090, - "Guest_ElderMagus": 1017836836, - "Guest_WardenBenthamic": 18807199, - "Guest_SpiderArchmagus": 387645558, - "Guest_SpiderAdept": 2094873407, - "Guest_InterrogatorRentenius": 1245984179, - "Guest_WarpedWeaver": 495882677, - "Guest_ArachnaSkinner": 281864085, - "Guest_SkinnerConscript": 2028526453, - "Guest_ArachnaGladiator": 2492046, - "Guest_LorcanInitiate": 353311753, - "Guest_Serket": 1871335773, - "Guest_IceWeaver": 2063216026, - "Guest_SpiritSpinner": 525666327, - "Guest_MysteriousCrawler": 218352756, - "Guest_BlackWidow": 1909331619, - "Guest_BrownRecluse": 1146386275, - "Guest_Creeper": 1197442790, - "Guest_GearSpinner": 67020478, - "Guest_Clinker": 1194519062, - "Guest_Clanker": 1194517014, - "Guest_GrandfatherSpider": 1330981335, - "Guest_Spiderling": 1400274461, - "Guest_ManekiWebWalker": 888348786, - "Guest_KoganiDeathCrawler": 276010604, - "Guest_CheliceranCrawler": 1169176517, - "Guest_ArachniteCreeper": 1850534774, - "Guest_ChelicaranStalker": 2057291848, - "Guest_HornedMonkeySpider": 1301514577, - "Guest_GreyOgreSpider": 1533774471, - "Guest_StarburstSpider": 698029451, - "Guest_PaintedCaveMonster": 601315479, - "Guest_RubbleRouser": 220785666, - "Guest_EarthElemental": 435260049, - "Guest_SharpshardWarrior": 1403237237, - "Guest_Firevein": 1220046430, - "Guest_Blackblade": 458130537, - "Guest_VengefulFireheart": 563205004, - "Guest_FirerockStomper": 608552855, - "Guest_BlackrockGuardian": 1663799582, - "Guest_ConfusedSentry": 24655510, - "Guest_SilverSentinel": 1090673683, - "Guest_SilverServant": 84560693, - "Guest_GiantHomunculus": 456098557, - "Guest_PropertyMaster": 229101764, - "Guest_VaultProtector": 185568207, - "Guest_PlatedDefender": 79324363, - "Guest_Avalanche": 761613547, - "Guest_RockReaver": 919912933, - "Guest_Frostmantle": 856308090, - "Guest_GlacierWalker": 131215932, - "Guest_SandBehemoth": 272513357, - "Guest_RunedAnnihilator": 121339936, - "Guest_RunedDevestator": 1611071181, - "Guest_RunedGuardian": 1986312667, - "Guest_CanyonRager": 1123038266, - "Guest_RubbleReaver": 220774678, - "Guest_Boulderbone": 122279242, - "Guest_Nali": 77467516, - "Guest_Gnar": 1151164930, - "Guest_GlacialAvenger": 1181253632, - "Guest_SokkwiKeymaster": 190919624, - "Guest_SandsofTime": 34920273, - "Guest_BladeGolem": 435561523, - "Guest_FrostColossus": 1564686403, - "Guest_IceColossus": 335477257, - "Guest_PollutedEarthWalker": 86045387, - "Guest_CorruptedEarthSpirit": 1135891559, - "Guest_Stonebreaker": 1317905436, - "Guest_StoneElemental": 1715022018, - "Guest_VolcanisGolem": 1904918929, - "Guest_WaterElemental": 1717850987, - "Guest_AshenDeathMonkeySpider": 35356665, - "Guest_DeathMonkeySpider": 1525508507, - "Guest_MotherMonkeySpider": 110317392, - "Guest_DoomMonkey": 1135105500, - "Guest_DreamMorganthe": 907599965, - "Guest_DragonBeetle": 1974635734, - "Guest_SandWalker": 1530843985, - "MNT_PandaMama": 916371162, - "PP_BabyPandas": 778536285, - "PP_FrogPrince": 729975205, - "MNT_PumpkinCarriage": 183672737, - "Mount_Gobbler_B": 1193388729, - "PP_Hamster": 1578040708, - "Guest_Steeleton": 657429968, - "Guest_GoldenWyrm": 311022393, - "MNT_Roc": 1564431869, - "PP_BabyGriffin": 1913686406, - "Transformation_ShadowDPSMob": 936133896, - "Transformation_ShadowTankMob": 305660992, - "Transformation_ShadowHealMob": 356596800, - "Guest_SpiritofIgnorance": 1577360126, - "Guest_FecklessSoul": 519648315, - "Guest_BurnedOutSoul": 312181646, - "Guest_BenightedRevenant": 2131956962, - "Guest_TombLurker": 1901203489, - "Guest_DesertGolem": 543642682, - "Guest_KumoOni": 215822625, - "Guest_SpellwritStalker": 161772776, - "PP_Sun": 1723237840, - "Guest_Leadite": 4480416, - "Mount_FestiveFox": 2125832348, - "PP_FenrisWolf": 1601784680, - "PP_SchoolPiggle": 109782407, - "PP_FenrisWolf_Red": 1597992854, - "PP_FenrisWolf_Teal": 1455058454, - "PP_FenrisWolf_White": 1102186199, - "Transformation_NinjaPig_Fire": 984575055, - "Transformation_BG_RatThief_Myth": 1191155131, - "Transformation_BG_RatThief_Storm": 675891897, - "MNT_Umbrella": 955683437, - "Transformation_BG_Elf_Ice": 1209681129, - "Transformation_BG_Fairy_DarkMinion_Balance": 33521202, - "Transformation_BG_Cyclops_Death": 876023972, - "Transformation_BG_Minotuar_Fire": 1118476387, - "Transformation_BG_WolfWarrior_Storm": 2075594475, - "Transformation_BG_WolfWarrior_Balance": 746159992, - "Transformation_BG_Draconian_Myth": 903606820, - "Transformation_BG_Draconian_Life": 1501291044, - "Transformation_BG_Colossus_Life": 1320377666, - "MNT_DolphinChariot": 102982520, - "MNT_EvilWagon": 685457563, - "MNT_FlyingDutchman": 1176206544, - "PP_SeaHorse": 2024322494, - "PP_EvilTeddy": 1159020925, - "PP_ZombieParrot": 384805107, - "Transformation_BG_Ice_Colossus": 299613211, - "MNT_CarrierBat": 7323333, - "Transformation_BG_Minotaur_MythTempalte": 430330904, - "PP_FeatheredTabby": 452526748, - "Transformation_Detritus01": 1335763402, - "Guest_Metallossus": 335457082, - "MNT_SantaJaws": 464410203, - "MNT_BattleBadger": 532858222, - "Transformation_Shedder01": 2069145892, - "PP_NatureSpirit": 373176286, - "Transformation_Devourer01": 1004421540, - "Guest_TheDevourer": 1591187996, - "Guest_Treeminder": 1093207850, - "Guest_RenegadeDruid": 2087982292, - "Guest_FractalTreeminder": 927174548, - "Guest_UnsettledTreeminder": 486164163, - "Guest_DragonspyreCrusader": 247317280, - "Guest_YoungGreggor": 66068670, - "Guest_GeneralGreyflame": 499924835, - "Guest_OldGreggor": 391726170, - "Guest_PrinceViggor": 853556298, - "Guest_DragonspyreVanguard": 693851565, - "Guest_SilasConviction": 177362659, - "Guest_SilasWeariness": 893431021, - "Guest_SilasRage": 1288904439, - "Guest_SilasDoubt": 1479426285, - "Guest_Lorekeeper": 147779344, - "Guest_FelixPhotomongerIII": 68387506, - "Guest_WarHavox": 1634324022, - "Guest_Mis-assembledSkeleton": 221832082, - "Guest_TreeminderGhost": 200408510, - "Guest_ViggorsDrake": 340449521, - "Guest_BlueNinjaPig": 938539327, - "Guest_RedNinjaPig": 2097962021, - "Guest_OrangeNinjaPig": 625058258, - "Guest_PurpleNinjaPig": 445746449, - "Guest_RitualColossus": 844563319, - "Guest_TinyDragon": 1123127688, - "Guest_RitualSpider": 429827552, - "Guest_RitualDraconian": 837510372, - "Guest_CC_Druid_Warrior_C_01": 55314616, - "Guest_CC_Druid_Wizard_A_01": 1046261169, - "Guest_CC_Druid_Wizard_B_01": 1046244785, - "Guest_CC_Druid_Warrior_A_01": 56363192, - "MNT_Toboggan": 995356805, - "MNT_2P_WickerTreant-001": 2065440944, - "PP_Ratatoskr": 1003497600, - "PP_Trash": 1195047012, - "Guest_CC_Druid_Wizard_D_01": 1046343089, - "MNT_Sunflower": 721091531, - "MNT_Whoopee": 1383311238, - "MNT_Warthog": 8060761, - "PP_ShamRock": 943893325, - "PP_LeapingLeprechaun": 132882517, - "PP_LionCubs": 465759803, - "PP_Tanuki": 670387843, - "MNT_Crane": 433122675, - "MNT_Krokosphinx": 739938754, - "Transformation_BG_Fairy_Life": 1897480818, - "Transformation_LiceDeepSpawnA": 244795720, - "Piggle_Alien": 1761605655, - "PP_JeweledScarab": 620544607, - "Guest_KR_Nymph_DrkMage_D50": 1248526054, - "Guest_KR_Nymph_DrkMage_C50": 1246953190, - "Guest_KR_Nymph_DrkMage_B50": 1247477478, - "Guest_KR_Nymph_DrkMage_A50": 1245904614, - "Guest_EM_Spider_Ash_01": 185724938, - "UFO": 47349, - "PP_Kit10": 326796620, - "PP_Lumi_Tulip": 84119585, - "PP_Lumi_Fern": 117015078, - "PP_Lumi_Violet": 1468797578, - "PP_Lumi_Sunny": 1769236703, - "PP_Lumi_Daisy": 1743454175, - "MNT_CelestianMech": 1238076872, - "MNT_Brontosaurus": 402157167, - "Guest_HG_AKT_Krok_Cyber_A_Balance_25": 1367985604, - "Guest_HG_AKT_Krok_Cyber_A_Balance_50": 1368084932, - "Guest_HG_AKT_Krok_Cyber_A_Balance_75": 1367988676, - "Guest_HG_AKT_Krok_Cyber_A_Balance_100": 1351303620, - "Guest_HG_AKT_Krok_Cyber_A_Balance_130": 1351270852, - "Guest_HG_AKT_Krok_Cyber_A_Fire_25": 976558490, - "Guest_HG_AKT_Krok_Cyber_A_Fire_50": 37034397, - "Guest_HG_AKT_Krok_Cyber_A_Fire_75": 305469850, - "Guest_HG_AKT_Krok_Cyber_A_Fire_100": 573905821, - "Guest_HG_AKT_Krok_Cyber_A_Fire_130": 573905824, - "Guest_HG_AKT_Krok_Cyber_A_Ice_25": 159411377, - "Guest_HG_AKT_Krok_Cyber_A_Ice_50": 541093041, - "Guest_HG_AKT_Krok_Cyber_A_Ice_75": 146828465, - "Guest_HG_AKT_Krok_Cyber_A_Ice_100": 557870241, - "Guest_HG_AKT_Krok_Cyber_A_Ice_130": 960523425, - "Guest_HG_AKT_Krok_Cyber_A_Myth_25": 976187830, - "Guest_HG_AKT_Krok_Cyber_A_Myth_50": 36663729, - "Guest_HG_AKT_Krok_Cyber_A_Myth_75": 305099190, - "Guest_HG_AKT_Krok_Cyber_A_Myth_100": 573535153, - "Guest_HG_AKT_Krok_Cyber_A_Myth_130": 573535156, - "Guest_CL-GolemButler-R9": 780077559, - "Guest_CL-GolemDigger-Boss-R10": 562020288, - "Guest_CL-GolemDigger-R9": 789375095, - "Guest_CL-GolemDigger-Rank8MythBoss-R10": 930527857, - "Guest_CL-GolemWorker-R9-1": 1072815287, - "Guest_CL-FishbotBrown-R9-1": 2006155417, - "Guest_CL-FishbotBrown-R9-2": 395542681, - "Guest_CL-FishbotGold-Boss-R10": 611881707, - "Guest_CL-FishbotGold-R9": 705414492, - "Guest_CL-FishbotYellow-Boss-R10": 23145662, - "Guest_CL-Protector-Black-Boss-R10-2": 679228793, - "Guest_CL-Protector-Gold-R10": 1909636609, - "Guest_CL-Protector-Gold-R9-1": 1909634804, - "Guest_CL-Protector-Gold-R9-2": 1909634932, - "Guest_CL-Protector-Gold-R9-3": 1909635060, - "Guest_CL-Protector-Gold-R9-4": 1909634164, - "Guest_CL-Protector-Purple-R9-Boss": 1889837072, - "Guest_CL-Protector-Purple-R9": 81760161, - "Guest_CL-Protector-Tan-Boss-R10": 912663188, - "Guest_KR_Golem_Worker": 1784607296, - "Guest_Golem-Brass-R7-1": 718939445, - "Guest_Golem-Clockwork-R7": 1161173708, - "Guest_EM_Robot_Batbot_A_01": 1482867950, - "Guest_EM_Robot_Batbot_B_02": 945947886, - "Guest_EM_Robot_Batbot_B_01": 1482818798, - "Guest_EM_Robot_Batbot_B_03": 409076974, - "Guest_EM_Robot_Batbot_B_04": 127793938, - "Guest_EM_Robot_Batbot_B_05": 664664850, - "Guest_EM_Robot_Drone_A_02": 1215188569, - "Guest_EM_Robot_Drone_A_03": 1231965785, - "Guest_EM_Robot_Drone_A_01": 1265520217, - "Guest_EM_Robot_Drone_A_04": 1315851865, - "Guest_EM_Robot_Drone_A_05": 1332629081, - "Guest_EM_Robot_Drone_A_06": 1282297433, - "Guest_EM_Robot_Drone_A_07": 1299074649, - "Guest_EM_Robot_Drone_A_08": 1114525273, - "Guest_EM_Robot_Drone_A_09": 1131302489, - "Guest_EM_Robot_Drone_A_Boss_01": 1960661151, - "Guest_EM_Robot_Drone_A_Boss_02": 1960530079, - "Guest_EM_Robot_Drone_E_01": 1265518169, - "Guest_EM_Robot_Tank_A_01": 1314796420, - "Guest_EM_Robot_Tank_A_02": 1313223556, - "Guest_EM_Robot_Drone_C_02": 1215187545, - "Guest_EM_Robot_Drone_D_03": 1231963225, - "Guest_EM_Robot_Drone_D_01": 1265517657, - "Guest_EM_Robot_Drone_D_02": 1215186009, - "Guest_EM_Robot_Tank_B_01": 1314796468, - "Guest_EM_Robot_Drone_C_01": 1265519193, - "Guest_G14-BP-Golem_Steel_Boss": 2071105129, - "Guest_G14-BP-Golem_Steel_Puzzle": 715790979, - "Guest_Golem-Brass-Elite-L38": 1163662532, - "Guest_Golem-Brass-Elite-L56": 2057562884, - "Guest_Golem-Brass-MBBoss-L48": 1498830732, - "Guest_Golem-Brass-MBBoss-L71": 1498829576, - "Guest_Golem-Brass-MBBoss-L76": 1498828936, - "Guest_Golem-Clockwork-Elite-L54-Metal": 417151527, - "Guest_Golem-Clockwork-Elite-L37": 1961943722, - "Guest_Golem-Clockwork-Elite-L54": 1950147242, - "Guest_Golem-Clockwork-L28": 1561959116, - "Guest_Golem-Clockwork-MBBoss-L37": 973152783, - "Guest_Golem-Clockwork-MBBoss-L69": 1262559759, - "Guest_Golem-Steel-Elite-L39": 1430496717, - "Guest_Golem-Steel-MBBoss-L40": 1229578887, - "Guest_Golem-Steel-MBBoss-L43": 1229579015, - "Guest_Golem-Steel-MBBoss-L50-1": 1231762051, - "Guest_Golem-Steel-MBBoss-L50": 1229578883, - "Guest_Golem-Steel-MBBoss-LXX": 1229583927, - "Guest_Golem-Wood-Elite-L35": 904360756, - "Guest_Golem-Wood-Elite-L37": 1978102580, - "Guest_Golem-Wood-Elite-L50": 1813548236, - "Guest_Golem-Wood-MBBoss-L63": 1392041724, - "Guest_MB-Gauntlet-Golem-Clockwork": 854649045, - "Guest_Spider-Golem-MBBoss-L67": 253352706, - "Guest_Spider-Golem-MBBoss-L96": 253348994, - "Guest_WC-MAW-GasGolem-Minion": 1511013798, - "Guest_WC-MAW-GasGolemLife-Minion": 1306026584, - "Guest_Golem-Steel-L02": 1027229749, - "Guest_Golem-Clockwork-L01": 1409915596, - "Guest_Gauntlet-01-Golem-Steel-Ghost-R8": 402816318, - "Guest_Golem-Wood-L01": 156976035, - "Guest_HG-Clock-ClockworkSpanner-20": 1523370449, - "Guest_HG-Clock-ClockworkSpanner-40": 1523370455, - "Guest_HG-Clock-ClockworkSpanner-60": 1523370453, - "Guest_HG-Clock-ClockworkSpanner-80": 1523370459, - "Guest_HG-Clock-ClockworkSpanner-100": 1523354068, - "Guest_HG-Clock-ClockworkSpanner-120": 1523354004, - "Guest_AQ-Cyclops-Guard": 191361948, - "Guest_AQ_Cyclops_Guard_A_Boss_01": 114747100, - "Guest_CL-Cyclops-Death-R10": 611013866, - "Guest_Cyclops-Death-Boss-R7": 1192370725, - "Guest_Cyclops-Death-Boss-R9": 1192370717, - "Guest_Cyclops-Death-R7": 144593791, - "Guest_GH-Cyclops-Death-R6": 594236619, - "Guest_Cyclops-BlueHelmet-KTBoss-L03": 1720105277, - "Guest_Cyclops-Red-L12": 1816429840, - "Guest_MR_Cyclops02WHelmet_Model_01": 1483732416, - "Guest_Cyclops-Blue-L02": 1633021234, - "Guest_Cyclops-BlueHelmet-WCBoss-L03": 427378332, - "Guest_Cyclops-RedHelmet-WCBoss-L03": 2021269422, - "Guest_HG_Sinbad_Cyclops_25": 911979034, - "Guest_HG_Sinbad_Cyclops_50": 1856261606, - "Guest_HG_Sinbad_Cyclops_75": 861647386, - "Guest_HG_Sinbad_Cyclops_100": 1789152678, - "Guest_HG_Sinbad_Cyclops_130": 178539942, - "Guest_HG_Sinbad_IronSultan_25": 930031152, - "Guest_HG_Sinbad_IronSultan_50": 930051504, - "Guest_HG_Sinbad_IronSultan_75": 930030768, - "Guest_HG_Sinbad_IronSultan_100": 927954864, - "Guest_HG_Sinbad_IronSultan_130": 927942576, - "MNT_SweetRide": 1643297840, - "PP_FrilledDino": 1395342809, - "PP_Celestian": 95679303, - "PP_Sun_Angry": 1955190071, - "PP_Marshmallow": 1220667954, - "MNT_Umbrella_B": 923364822, - "MNT_Tamer": 1050737194, - "PP_BumbleBee_B": 858653433, - "MNT_PunkFlamingo": 1634690818, - "MNT_2P_WoolyRhino": 1395943031, - "PP_Retriever": 72842604, - "PP_Piggle_Caveman": 181356174, - "PP_DecennialDragon": 1396523337, - "MNT_Tiger_Rainbow": 515535412, - "MNT_CarrierGhosts": 1833039309, - "MNT_Sled": 617654308, - "Transformation_BG_RatThief_Death": 30691641, - "Transformation_BG_Elf_Storm": 44352983, - "Transformation_BG_WolfWarrior_Ice": 986304351, - "MNT_CarriorGhost_B": 1768732109, - "MNT_CarriorGhost_C": 1766634957, - "Transformation_BG_Colossus_Fire": 1318803522, - "Transformation_BG_Krok_Balance": 140952965, - "Guest_KM_Gobbler_Skinny_A_11": 773648065, - "Guest_KM_Robot_Candy_A_01": 480414124, - "Guest_KM_Robot_Candy_A_02": 530745772, - "Guest_KM_Robot_Candy_A_03": 513968556, - "Guest_KM_Robot_Candy_A_04": 430082476, - "Guest_KM_Robot_Candy_A_05": 413305260, - "Guest_KM_Gummy_Bear_A_01": 1940905059, - "Guest_KM_Gummy_Bear_D_01": 1940905011, - "Guest_KM_Gummy_Bear_E_01": 1940904995, - "Guest_KM_Gummy_Bear_A_02": 1941429347, - "Guest_KM_Gummy_Bear_D_02": 1941429299, - "Guest_KM_Gummy_Bear_E_02": 1941429283, - "Guest_KM_Gummy_Bear_B_01": 1940905043, - "Guest_KM_Gummy_Bear_B_02": 1941429331, - "Guest_KM_Gummy_Bear_B_03": 1941953619, - "Guest_KM_Gummy_BearHat_A_01": 853226448, - "Guest_KM_Gummy_BearHat_A_02": 853226460, - "Guest_KM_Gummy_Bunny_A_01": 324805042, - "Guest_KM_Gummy_Bunny_C_01": 324806066, - "Guest_KM_Gummy_Bunny_D_01": 324807602, - "Guest_KM_Gummy_Bunny_E_01": 324807090, - "Guest_KM_Gummy_Bunny_F_01": 324808626, - "Guest_KM_Gummy_BunnyUber_A_01": 525565930, - "Guest_KM_Gummy_Worm_A_01": 231044195, - "Guest_KM_Gummy_Worm_B_01": 231044179, - "Guest_KM_Gummy_Worm_C_01": 231044163, - "Guest_KM_Gummy_Worm_A_02": 232617059, - "Guest_KM_Gummy_Worm_B_02": 232617043, - "Guest_KM_Gummy_Worm_C_02": 232617027, - "Guest_KM_Gummy_Bear_F_01": 1940904979, - "Guest_KM_Gummy_Bear_F_02": 1941429267, - "Guest_KM_Gummy_Bunny_C_02": 274474418, - "Guest_KM_Robot_Candy_A_06": 463636908, - "Guest_KM_Alphoi_DarkF_A_01": 475441543, - "Guest_KM_Gobbler_Skinny_A_01": 773648069, - "Guest_KM_Gobbler_Skinny_A_02": 773648197, - "Guest_KM_Gobbler_Skinny_A_03": 773648325, - "Guest_KM_Gobbler_SkinnyF_A_01": 254411012, - "Guest_KM_Gobbler_Skinny_A_04": 773647429, - "Guest_KM_Gobbler_Skinny_A_05": 773647557, - "Guest_KM_Gobbler_Skinny_A_06": 773647685, - "Guest_KM_Gobbler_SkinnyF_A_02": 254423300, - "Guest_KM_Gobbler_Skinny_A_07": 773647813, - "Guest_KM_Gobbler_Skinny_A_08": 773646917, - "Guest_KM_Gobbler_Skinny_A_09": 773647045, - "Guest_KM_Gobbler_SkinnyF_A_03": 254419204, - "Guest_KM_Gobbler_Fat_A_01": 1440595742, - "Guest_KM_Gobbler_Fruit_B_01": 1236446660, - "Guest_KM_Gobbler_Fruit_A_01": 1235922372, - "Guest_KM_Gobbler_Guard_B_01": 1435667582, - "Guest_KM_Gobbler_Skinny_A_10": 773647937, - "Transformation_PlayerBabyCarrot": 1580787628, - "Transformation_PlayerDeadBeet": 1992261692, - "Transformation_PlayerDisparagus": 373797484, - "Transformation_PlayerSnowPeas": 634199102, - "PP_Snowflake": 2036143125, - "PP_GummyBear_Myth": 117787890, - "PP_GummyBear_Death": 236577760, - "PP_GummyBear_Balance": 2100524337, - "PP_GummyBear_Life": 118020336, - "PP_GummyBear_Fire": 117995748, - "PP_GummyBear_Storm": 247437198, - "PP_GummyBear_Ice": 122536570, - "MNT_SnowOwl": 1578473542, - "Guest_KM_Gummy_Bear_Uber_A_01": 1856208859, - "Guest_KM_Gummy_Bear_Uber_A_02": 1856196571, - "MNT_ChocolateMoose": 567538552, - "MNT_Ram_Candied": 1913603720, - "Guest_KM_Spider_Mage_A_01": 1529720120, - "Guest_KM_Spider_Mage_B_01": 1529719608, - "Guest_KM_Spider_Mage_C_01": 1529719096, - "Guest_KM_Spider_Mage_D_01": 1529718584, - "Guest_KM_Spider_Mage_E_01": 1529718072, - "PP_SpriteDark_Balance": 914900728, - "MNT_Tricycle": 991465753, - "Guest_Tri-Gauntlet-Protector-Gold": 2029952053, - "Guest_Tri-Gauntlet-FishbotGold": 130267882, - "Guest_HG-Clock-Clockworker-20": 281216243, - "Guest_HG-Clock-Clockworker-40": 281217011, - "Guest_HG-Clock-Clockworker-60": 281216755, - "Guest_HG-Clock-Clockworker-80": 281215475, - "Guest_HG-Clock-Clockworker-100": 283313523, - "Guest_HG-Clock-Clockworker-120": 283321715, - "Guest_HG-Clock-Lugs-20": 1452756928, - "Guest_HG-Clock-Lugs-40": 1452756960, - "Guest_HG-Clock-Lugs-60": 1452756992, - "Guest_HG-Clock-Lugs-80": 1452756768, - "Guest_HG-Clock-Lugs-100": 1452494736, - "Guest_HG-Clock-Lugs-120": 1452493712, - "Guest_HG-Clock-Lucia-20": 1041451626, - "Guest_HG-Clock-Lucia-40": 1041450602, - "Guest_HG-Clock-Lucia-60": 1041449578, - "Guest_HG-Clock-Lucia-80": 1041456746, - "Guest_HG-Clock-Lucia-100": 1049840746, - "Guest_HG-Clock-Lucia-120": 1049873514, - "Guest_KM_Gummy_Worm_A_03": 232092771, - "MNT_Scooter_E": 200254340, - "PP_WolfWarrior_Balance": 991302673, - "PP_PetGift": 1816280689, - "PP_RatThief": 1390866051, - "Guest_PL_Titan_Small_A": 2015819364, - "Guest_PL_Titan_Large_B": 699791264, - "Guest_PL_Titan_Medium_A": 326730424, - "PP_Draconian": 1631557208, - "MNT_Pantera_Astral": 106092538, - "PP_YearOx": 105653084, - "PP_WolfWarrior_Ice": 1043644935, - "PP_SpriteDark": 2031730054, - "PP_Brudel": 1355697143, - "MNT_Astronomers": 742732792, - "MNT_CouchPotato": 418050932, - "MNT_Flowerfarthing": 1396771051, - "MNT_Astronomers_Blue": 236532779, - "MNT_Astronomers_Rainbow": 4428274, - "PP_Astronomer": 782095961, - "Guest_KM_Gummy_Bunny_B_01": 324806578, - "Guest_KM_DeadBeets_A_01": 1396016635, - "MNT_GummyBunny": 775900704, - "MNT_GummyBunny_A": 775834080, - "MNT_GummyBunny_B": 775836128, - "MNT_GummyBunny_C": 775838176, - "Transformation_BG_Minotaur_Life": 1445109091, - "MNT_Armadillo": 825635826, - "PP_SootGremlin": 768969093, - "PP_RoadRunner": 2057802060, - "MNT_TinyTrolly": 160881792, - "PP_Frog_B": 1530124761, - "MNT_FjordDragon": 129204340, - "Transformation_BG_NinjaPig_Myth": 422914079, - "PP_CorgiPup": 1638656105, - "MNT_Skateboard": 728018224, - "PP_Krokomummy": 326396577, - "MNT_Vroom": 1736383110, - "MNT_PlayerWings_AtralRaven": 1514774167, - "PP_Blimp": 690882397, - "Guest_GH_WoodenSkeletonKey_Boar_Boss_Grey_01": 678055851, - "Guest_GH_StoneSkeletonKey_Boar_Boss_Grey_01": 571670691, - "Guest_GH_GoldSkeletonKey_Boar_Boss_Grey_01": 961728819, - "MNT_Cloud_Promo_AW_01": 2032670992, - "Guest_EM_Hornet_Burner_A_01": 1881854632, - "Guest_EM_Hornet_Burner_A_02": 1881854636, - "Guest_EM_Hornet_Zapper_A_01": 2058539689, - "Guest_EM_Hornet_Zapper_A_02": 2058539685, - "Guest_EM_Ant_Giant_D_01": 379386121, - "Guest_EM_Ant_Giant_A_02": 1768146677, - "Guest_EM_Ant_Giant_A_01": 1768097525, - "Guest_EM_Ant_Giant_B_01": 379386122, - "Guest_KR_Moth_Priest_G_Achera": 381233569, - "Guest_KR_BeeMonsterF_A": 135146211, - "Guest_KR_BeeMonsterF_A_Weak": 1824123847, - "Guest_KR_Bee_Warrior_A": 1569202664, - "Guest_KR_Bee_Warrior_B": 1569204200, - "Guest_KR_Bee_Warrior_C_BossDrones": 1217189631, - "Guest_KR_Bee_Warrior_D": 1569205224, - "Guest_KR_Bee_Warrior_E": 1569204712, - "Guest_KR_Bee_Warrior_G": 1569205736, - "Guest_KR_Bee_Warrior_G_BossFight": 1055035476, - "Guest_KR_Bee_Warrior_H": 1569207272, - "Guest_KR_Bee_Warrior_I": 1569206760, - "Guest_KR_Bee_Warrior_L": 1569209320, - "Guest_KR_Bee_Warrior_M": 1569208808, - "Guest_KR_DragonBeetle_Monster_A": 1777853782, - "Guest_KR_Hornet_Drone_A": 1161590757, - "Guest_KR_Hornet_Drone_B": 1161607141, - "Guest_KR_Hornet_Drone_C": 1161623525, - "Guest_KR_Hornet_Drone_D": 1161639909, - "Guest_KR_Hornet_Drone_E": 1161656293, - "Guest_KR_Lice_DeepSpawn_A": 761604959, - "Guest_KR_Mantis_HunterF_A": 820917199, - "Guest_KR_Mantis_HunterF_B": 871248847, - "Guest_KR_Mantis_HunterF_C": 854471631, - "Guest_KR_Mantis_HunterF_D": 904803279, - "Guest_KR_Mantis_HunterF_F": 938357711, - "Guest_KR_Mantis_HunterF_F_Driftwood": 2053608437, - "Guest_KR_Mantis_HunterF_G": 921580495, - "Guest_KR_Mantis_HunterF_H": 971912143, - "Guest_KR_Mantis_HunterF_I": 955134927, - "Guest_KR_Mantis_HunterF_I_Zuzka": 935478878, - "Guest_KR_Mantis_HunterF_J": 1005466575, - "Guest_KR_Mantis_HunterF_J_Zelda": 886910558, - "Guest_KR_Mantis_HunterF_K": 988689359, - "Guest_KR_Mantis_HunterF_K_LongShd": 1767574336, - "Guest_KR_Mantis_HunterF_L": 1039021007, - "Guest_KR_Mantis_HunterF_M": 1022243791, - "Guest_KR_Mantis_HunterF_P_Bossfight": 1731428987, - "Guest_KR_Mantis_HunterF_Q": 552481743, - "Guest_KR_Mantis_HunterF_R": 602813391, - "Guest_KR_Mantis_HunterF_S": 586036175, - "Guest_KR_Mantis_HunterF_SecondColumnCpt_A": 1354033994, - "Guest_KR_Mantis_HunterF_T": 636367823, - "Guest_KR_Mantis_HunterF_Tribute": 1946371041, - "Guest_KR_Mantis_HunterF_U": 619590607, - "Guest_KR_Mantis_HunterF_V": 669922255, - "Guest_KR_Mantis_HunterF_W": 653145039, - "Guest_KR_Mantis_HunterF_Y": 686699471, - "Guest_KR_Mantis_HunterF_Z_Officer": 206016474, - "Guest_KR_Mantis_ProphetF_B": 1791139097, - "Guest_KR_Mantis_ProphetF_C": 1254268185, - "Guest_KR_Milipede_Warrior_A": 410726278, - "Guest_KR_Milipede_Warrior_B": 410726282, - "Guest_KR_Milipede_Warrior_C": 410726286, - "Guest_KR_Milipede_Warrior_D": 410726290, - "Guest_KR_Milipede_Warrior_H": 410726306, - "Guest_KR_Milipede_Warrior_J": 410726314, - "Guest_KR_Milipede_Warrior_K": 410726318, - "Guest_KR_Moth_Priest_A": 1421532604, - "Guest_KR_Moth_Priest_B": 1421532092, - "Guest_KR_Moth_Priest_C": 1421531580, - "Guest_KR_Moth_Priest_D": 1421531068, - "Guest_KR_Moth_Priest_D_Drepa": 1483393420, - "Guest_KR_Moth_Priest_E": 1421530556, - "Guest_KR_Moth_Priest_F": 1421530044, - "Guest_KR_Mantis_HunterF_Z": 737031119, - "Guest_KR_Roach_AntLion_A": 1860517987, - "Guest_KR_Roach_AntLion_B_Bossfight": 993284625, - "Guest_KR_Roach_AntLion_C": 1861566563, - "Guest_KR_Roach_Cook_A": 259847495, - "Guest_KR_Roach_Glutton_B": 249524334, - "Guest_KR_Roach_WaterBug_A": 1795473599, - "Guest_KR_Roach_WaterBug_B": 1745141951, - "Guest_MR_Beetle_Scarab_A_01": 1789741503, - "Guest_MR_Beetle_Scarab_A_02": 1789741491, - "Guest_MR_Beetle_Scarab_B_01": 1790265791, - "Guest_ZF-Goliath-R10-Boss-01": 7034074, - "Guest_ZF-Goliath-R10-Boss-02": 7034202, - "Guest_ZF-Goliath-R10-Boss-03": 7034330, - "Guest_ZF-Goliath-R10-Boss": 1603576807, - "Guest_ZF-Goliath-R11-Boss-01": 2140449574, - "Guest_ZF-Goliath-R11-Boss-02": 2140449446, - "Guest_ZF-Goliath-R11-Boss-03": 2140449318, - "Guest_ME1_Ant_Aunt_A": 707251855, - "Guest_ME1_Ant_Aunt_B": 1440231794, - "Guest_CC_Fly_Worker_A_01": 1497784524, - "Guest_CC_Roach_Worker_A_01": 1026321602, - "Guest_CC_Roach_Lieutenant_A_01": 1081690299, - "Guest_CC_Roach_Lieutenant_B_01": 1081690295, - "Guest_CC_Roach_Don_A_01": 547836893, - "Guest_CC_Roach_BBug_A_01": 1021150157, - "Guest_CC_Roach_RoachSteady_A_01": 859409247, - "Guest_Draconian-Caster-Yellow-Boss-R8": 1016221419, - "Guest_Draconian-Zombie-R8-2-1": 1226055265, - "Guest_Draconian-Zombie-R8-2": 1226115297, - "Guest_Draconian-Caster-Green-R7": 2143342719, - "Guest_Draconian-Warrior-Gold-Boss-R8": 1044388248, - "Guest_Draconian-Caster-Gray-R7": 95878769, - "Guest_DS-Boss-MAW": 1676071241, - "Guest_Draconian-Zombie-R8-1": 1226115309, - "Guest_Draconian-Warrior-Purple-Boss-R7": 601813964, - "Guest_Draconian-Caster-Tan-Boss-R7": 1973339532, - "Guest_Draconian-Caster-Blue-R6": 1684210173, - "Guest_Draconian-Caster-Yellow-R8": 2129956646, - "Guest_Draconian-Warrior-Red-R7": 521861944, - "Guest_Draconian-Warrior-Tan-R6": 1726416112, - "Guest_Draconian-Warrior-Purple-R8": 1896270341, - "Guest_Draconian-Caster-Blue-Boss-R7": 401581134, - "Guest_Draconian-Zombie-R8": 384497496, - "Guest_GH2-Draconian-HENCH-R10": 1149202878, - "Guest_GH2-Draconian-BOSS-R10": 2114378473, - "Guest_G14-DM-Draconian_Boss": 490246211, - "Guest_G14-DM-Draconian_Storm": 2035239226, - "Guest_G14-DM-Draconian_Ice": 782200563, - "Guest_G14-DM-Draconian_Malistaire_M": 1904691727, - "Guest_G14-DM-Draconian_Malistaire_S": 1904685583, - "Guest_G14-DM-Draconian_Malistaire_D": 1904700943, - "Guest_G14-DM-Draconian_Malistaire": 1904736751, - "Guest_G14-DM-Draconian_Malistaire_B": 1904702991, - "Guest_G14-DM-Draconian_Malistaire_I": 1904695823, - "Guest_G14-DM-Draconian_Malistaire_L": 1904692751, - "Guest_G14-DM-Draconian_Malistaire_F": 1904698895, - "Guest_Draconian-PW-Gauntlet-Boss": 493080513, - "Guest_CC_Draconian_A_01": 551348115, - "Guest_AZ-Parasaur-Undead-E": 2041242846, - "Guest_AZ-Parasaur-drkPriestF-F": 898239615, - "Guest_EM_Parasaur_DrkPriestF_A_01": 1007099606, - "Guest_EM_Parasaur_DrkPriestF_A_02": 1007099605, - "Guest_AZ-Parasaur-drkPriestF-D": 898501759, - "Guest_AZ-Parasaur-drkPriestF-E": 898370687, - "Guest_AZ-Parasaur-drkPriestF-A": 897846399, - "Guest_AZ-Parasaur-Undead-B": 1716853538, - "Guest_AZ-Parasaur-Undead-A": 106240802, - "Guest_AZ-Parasaur-Undead-G": 967501022, - "Guest_AZ-Parasaur-PriestF-D": 1177445525, - "Guest_AZ-Parasaur-Undead-C": 1179982626, - "Guest_AZ-Parasaur-drkPriestF-C": 897584255, - "Guest_AZ-Parasaur-Undead-SkurkisMinion": 1414766977, - "Guest_AZ-Parasaur-drkPriestF-B": 897715327, - "Guest_AZ-Parasaur-drkPriestF-B-Script": 1414847875, - "Guest_AZ_Parasaur_Priest_A_Boss_01": 890025421, - "Guest_AZ-Parasaur-Undead-D": 1504371934, - "Guest_AZ-Pteranodon-Knight-D": 1127364049, - "Guest_AZ-StoneSkeletonKey-Ixcax-Cursedwing": 699239601, - "Guest_AZ-Pteranodon-Knight-E": 1127363921, - "Guest_AZ-Pteranodon-Knight-F": 1127363793, - "Guest_AZ-Pteranodon-Knight-A-PageEvent": 942589002, - "Guest_AZ-StoneSkeletonKey-Minion-Death": 311645584, - "Guest_AZ-Pteranodon-Knight-A": 1127364433, - "Guest_AZ-Raptor-Wraith-A": 585729247, - "Guest_AZ-Raptor-Undead-D": 893623689, - "Guest_G14-HS-Ifzt": 1914694612, - "Guest_AZ-Raptor-Warrior-A": 855749884, - "Guest_AZ-Raptor-Undead-C": 897293705, - "Guest_AZ-Raptor-Undead-B": 896769417, - "Guest_AZ-Raptor-Undead-F": 894672265, - "Guest_AZ-Raptor-Warrior-F": 872527100, - "Guest_AZ-Raptor-Warrior-H": 973190396, - "Guest_AZ-Tritops-Warrior-I": 1942669769, - "Guest_AZ-Tritops-Undead-H": 1215305911, - "Guest_AZ-Tritops-Undead-E": 1164974263, - "Guest_AZ-Tritops-SpkWarrior-A": 860850257, - "Guest_AZ-Tritops-SpkWarrior-B": 860862545, - "Guest_AZ-Tritops-Undead-F": 1181751479, - "Guest_AZ-Tritops-Warrior-K": 868927945, - "Guest_AZ-Tritops-Undead-G": 1198528695, - "Guest_AZ-Tritops-Mummy-A": 1912444877, - "Guest_AZ-Tritops-Warrior-G": 1278555704, - "Guest_AZ-Tritops-Undead-D": 1148197047, - "Guest_AZ-Tritops-Undead-A": 1097865399, - "Guest_AZ-Tritops-SpkChief-B": 2096319577, - "Guest_AZ-Tritops-Mummy-B": 1910872013, - "Guest_AZ-Tritops-Warrior-H": 1405798857, - "Guest_AZ-Dino-Undead-A": 508678670, - "Guest_AZ-Dino-Undead-B": 508679182, - "Guest_AZ-Dino-Undead-D": 508680206, - "Guest_KR_Dino_Undead_A": 1638800628, - "Guest_KR_Dino_Undead_Minion_A": 892450235, - "MNT_HayRideTruck": 75377404, - "MNT_ShadowSpiderForm": 1439860426, - "Transformation_BG_Draconian_Death": 794598804, - "PP_BabyOrca": 1056061090, - "Transformation_BG_Cyclops_Fire": 638854828, - "Transformation_BG_Fairy_Ice": 874078461, - "PP_SpriteLife": 1824998010, - "PP_Raccoon": 1107326808, - "PP_FireKitten": 593048189, - "MNT_SkeletalDuck": 1306273036, - "PP_VampireSquid": 431023109, - "PP_CottonCandy": 891201813, - "PP_ThreeHeadGoat": 1282096939, - "PP_EyeBot": 260189248, - "MNT_DeathBoat": 1444454568, - "MNT_Lemuria": 908974762, - "MNT_DeathBoat_B": 1444456538, - "MNT_DeathBoat_C": 1444456474, - "MNT_Spooky3": 1667775622, - "MNT_PresentBox": 122082000, - "MNT_Orca": 1726961653, - "Guest_LM_Golem_Steel_A_01": 19551853, - "Guest_LM_Golem_Steel_A_02": 36329069, - "Guest_LM_EyeBot_A_01_Death": 380508535, - "Guest_LM_EyeBot_A_01_Myth": 167840640, - "PP_ThreeHeadGoat_B": 1209286443, - "PP_ThreeHeadGoat_C": 1211383595, - "Guest_KR_Eel_Whirligig_A": 1062268734, - "Guest_KR_Goliath_Behemoth_A": 1231139987, - "Guest_KR_Goliath_Behemoth_C": 1231139995, - "Guest_KR_Goliath_Behemoth_D": 1231139975, - "Guest_KR_Goliath_Behemoth_E": 1231139971, - "Guest_KR_Goliath_Behemoth_H": 1231140023, - "Guest_KR_Goliath_Crusher_C": 1651720060, - "Guest_KR_Goliath_Crusher_D": 2106376324, - "Guest_KR_Goliath_Crusher_F": 1032634500, - "Guest_KR_Goliath_Crusher_G": 495763588, - "Guest_KR_Goliath_Crusher_K": 1651720059, - "Guest_AZ-Goliath-Crusher-A": 1874784966, - "Guest_AZ-Goliath-Crusher-B": 264172230, - "Guest_AZ-Goliath-Crusher-C": 801043142, - "Guest_AZ-Goliath-Crusher-D": 809569594, - "Guest_AZ-Goliath-Crusher-E": 272698682, - "Guest_HG_AKT_Butterfly_Time_A_25": 1788523059, - "Guest_HG_AKT_Butterfly_Time_A_50": 1130017331, - "Guest_HG_AKT_Butterfly_Time_A_75": 1809494579, - "Guest_HG_AKT_Butterfly_Time_A_100": 1113240099, - "Guest_HG_AKT_Butterfly_Time_A_130": 1515893283, - "MNT_DeathBoat_D": 1444456922, - "Guest_KR_RhinoBeetle_Sun_A_Bossfight": 47895417, - "Guest_KR_RhinoBeetle_Star_A": 1947510103, - "Guest_KR_RhinoBeetle_Moon_A": 1751275863, - "Guest_ME1_Clockwork_Marine_A": 1481452452, - "Guest_ME1_Clockwork_Marine_B": 1481452068, - "Guest_CC_GoldSkeletonKey_Lice_DeepSpawn_B": 1306132994, - "Guest_KR_DamdinBazar_A_Bossfight": 1333596311, - "Guest_DS-Minion-MAW2": 356796677, - "Guest_KH-Wyrmling-1": 116330513, - "Guest_KH-Wyrmling-20": 183439385, - "Guest_KH-Wyrmling-40": 317657113, - "Guest_KH-Wyrmling-60": 451874841, - "Guest_KH-Wyrmling-80": 586092569, - "Guest_PL_Polar_Bear_Solider_C": 1785662565, - "Guest_Skeleton-Silver-WCBoss-L01": 17766963, - "Guest_Banshee-Red-Elite-L24_B": 1902069117, - "Transformation_BG_WolfWarrior_Myth": 339098032, - "Transformation_BG_RatThief_Balance": 881728218, - "Transformation_BG_Colossus_Storm": 593527492, - "Transformation_BG_Elf_Life": 347405087, - "Transformation_BG_Minotaur_Ice": 1197752291, - "MNT_TRex_B": 660285500, - "PP_SpriteDark_Ice": 2036248504, - "MNT_RollingBall": 1658139390, - "Guest_LM_TRex_Base_A_03": 1378630657, - "Guest_LM_TRex_Base_A_04": 1378745345, - "Guest_LM_TRex_Base_A_05": 1378728961, - "Guest_LM_TRex_Base_A_01": 1378663425, - "Guest_LM_TRex_Base_A_02": 1378647041, - "Guest_LM_TRex_Cyborg_A_01": 151609741, - "Guest_LM_TRex_Cyborg_A_02": 168386957, - "Guest_LM_TRex_Cyborg_A_03": 185164173, - "Guest_LM_TRex_Cyborg_B_01": 151611277, - "Guest_LM_TRex_Cyborg_D_01": 151612301, - "Guest_LM_TRex_Cyborg_E_01": 151611789, - "Guest_LM_TRex_Cyborg_C_01": 151610765, - "Guest_LM_Draconian_Base_A_01": 1607373112, - "Guest_LM_EyeBot_B_01": 1085543056, - "Guest_LM_Drone_Eye_C_01": 916954037, - "Guest_LM_Drone_Eye_D_01": 1230529608, - "Guest_LM_Drone_Eye_D_02": 1230545992, - "Guest_LM_Drone_Eye_D_04": 1230578760, - "Guest_LM_Drone_Eye_D_03": 1230562376, - "Guest_LM_Drone_Eye_A_01": 916954038, - "Guest_LM_Drone_Eye_A_02": 916937654, - "Guest_LM_Drone_Eye_B_01": 1230529611, - "Guest_LM_Drone_Eye_D_05": 1230595144, - "Guest_LM_Drone_Eye_D_07": 1230627912, - "Guest_LM_Drone_Eye_D_08": 1230644296, - "Guest_LM_Drone_Eye_A_03": 916921270, - "Guest_LM_Drone_Eye_A_04": 916904886, - "Guest_LM_Drone_Eye_C_02": 916937653, - "Guest_LM_EyeBot_B_02": 1061940593, - "Guest_LM_EyeBot_B_03": 1085543055, - "Guest_LM_EyeBot_B_04": 1061940594, - "Guest_LM_Drone_Eye_C_03": 916921269, - "Guest_LM_Robot_Kit10_A_01": 199936400, - "Guest_LM_Colossus_Mander_A_01": 2107529026, - "Guest_LM_Robot_Future_A_01": 998840846, - "Guest_LM_Robot_FutureBIG_A_01": 340408568, - "Guest_LM_Robot_FutureBIG_A_02": 340396280, - "Guest_LM_Robot_FutureBIG_A_03": 340400376, - "Guest_LM_Robot_OldOne_A_01": 779070973, - "Guest_LM_Robot_OldOne_A_02": 1315941885, - "Guest_LM_Millipede_Centi_A_01": 168575797, - "Guest_LM_Millipede_Centi_A_03": 168583989, - "Guest_LM_Millipede_Centi_A_02": 168588085, - "Guest_LM_Millipede_Centi_A_04": 168563509, - "Guest_LM_Moth_Sorcerer_A_01": 228191136, - "Guest_LM_Boar_Barbarian_A_01": 1238634912, - "Guest_LM_Boar_Barbarian_A_02": 1238634528, - "Guest_LM_Boar_Barbarian_A_03": 1238634656, - "Guest_LM_Boar_Barbarian_A_04": 1238635296, - "Guest_LM_Boar_Barbarian_A_05": 1238635424, - "Guest_LM_Boar_Chief_A_01": 357051311, - "Guest_LM_Fungus_Humango_A_01": 1398460044, - "Guest_LM_Fungus_Humango_A_02": 1398460172, - "Guest_LM_Treant_Base_A_01": 1658172241, - "Guest_LM_GiantTree_EvilRoots_A_01": 282225934, - "Guest_LM_PA_GreenMan_A_01": 67705044, - "Guest_LM_Fungus_Humango_B_01": 1348128396, - "Guest_LM_Fungus_Humango_A_03": 1398460300, - "Guest_LM_Fungus_Man_C_01": 1648824156, - "Guest_LM_Fungus_Man_C_02": 1650397020, - "Guest_LM_Rhino_Zombie_A_01": 248513993, - "Guest_LM_Malughast_Base_01": 883820436, - "Guest_LM_Malughast_Base_02": 1420691348, - "Guest_LM_Lemur_HierarchF_H_04": 231562115, - "Guest_LM_Malughast_Base_03": 1957562260, - "Guest_LM_Malughast_Base_05": 1263663212, - "Guest_LM_Malughast_Base_06": 726792300, - "Guest_LM_Malughast_Base_08": 346949523, - "Guest_LM_Malughast_Base_09": 883820435, - "Guest_LM_Malughast_Base_04": 1800534124, - "Guest_LM_Minotaur_Skeleton_A_01": 1865122824, - "Guest_LM_Lemur_Wild_B_03": 1783764037, - "Guest_LM_Lemur_HierarchF_H_01": 231541635, - "Guest_LM_Lemur_HierarchF_H_02": 231553923, - "Guest_LM_Mander_Warrior_A_01": 1651245419, - "Guest_LM_Mander_Warrior_A_02": 1651245291, - "Guest_LM_Mander_Warrior_B_01": 1634468203, - "Guest_LM_Mander_Warrior_B_02": 1634468075, - "Guest_LM_Mander_Warrior_A_03": 1651245163, - "Guest_LM_Mander_Warrior_B_03": 1634467947, - "Guest_LM_Mander_Warrior_A_06": 1651245803, - "Guest_LM_Mander_Warrior_A_05": 1651245931, - "Guest_LM_Mander_Mummy_B_01": 1844111521, - "Guest_LM_Mander_Hero_B_01": 865113284, - "MNT_HolidayHippogriff": 938892112, - "MNT_Sabertooth_Ice": 1870381696, - "PP_FenrisWolf_Bantam": 776647759, - "MNT_JetPack": 1986300552, - "MNT_Scooter_F": 1005560708, - "PP_FossaKitten_A": 431748212, - "PP_Elfvis": 147991405, - "Guest_LM_Chicken_Hero_A_01": 1308728300, - "Guest_LM_Horse_Explorer_A_01": 434405482, - "Guest_LM_Duck_HeroineF_A_01": 133199186, - "Guest_LM_Crane_Hero_A_01": 204272548, - "Guest_LM_Deer_HeroineF_A_01": 1800374959, - "Guest_LM_Deer_Hero_A_01": 223109503, - "Guest_LM_Dog_Hero_A_01": 1434615064, - "PP_YearTiger": 777048708, - "MNT_Barrel": 3576425, - "MNT_Krampus": 404117611, - "PP_ChineseTigerCub": 1256032005, - "PP_Lemur": 565774155, - "PP_Robot": 1089075331, - "PP_Capybara": 451970762, - "Guest_LM_Ghoul_Base_A_01": 1822415945, - "Guest_LM_Lemur_HierarchF_H_03": 231549827, - "Guest_LM_Ghoul_Base_A_02": 1820843081, - "Guest_LM_Ghoul_Base_A_03": 1821367369, - "MNT_SpringSoF2022": 1685679511, - "MNT_WarElephant": 875015497, - "PP_Strix": 514230046, - "MNT_Beachball": 791896033, - "MNT_Blank": 633398131, - "MNT_CardboardFlier": 1646636689, - "MNT_LochMonster": 879660722, - "Transformation_BG_Krok_Death": 1395067182, - "Transformation_BG_Draconian_Fire": 1551581732, - "PP_Scotty": 1708580475, - "Guest_KR_Mice_Knight_A": 480101508, - "PP_Peacock": 1178721112, - "MNT_PoodleMoth": 975420235, - "PP_Hummingbird": 624666906, - "PP_WolfWarrior_Myth": 470737416, - "Guest_HG_UFD_Ghost_QueenF_A_100": 795323059, - "Guest_HG_UFD_Ghost_QueenF_A_50": 728230579, - "Guest_HG_UFD_Pirate_UndeadHighland_A_Balance_150": 201145133, - "Guest_HG_UFD_Pirate_UndeadHighland_A_Balance_100": 201144941, - "Guest_HG_UFD_Pirate_UndeadHighland_A_Balance_50": 201177701, - "Guest_HG_UFD_Pirate_UndeadHighland_A_Star_150": 1329885920, - "Guest_HG_UFD_Pirate_UndeadHighland_A_Star_100": 1304720096, - "Guest_HG_UFD_Pirate_UndeadHighland_A_Star_50": 1305768671, - "Guest_HG_UFD_Pirate_UndeadHighland_A_Shadow_150": 1263689971, - "Guest_HG_UFD_Pirate_UndeadHighland_A_Shadow_100": 1263689977, - "Guest_HG_UFD_Pirate_UndeadHighland_A_Shadow_50": 189949177, - "Guest_HG_UFD_Kelpie_Warrior_A_150": 54296095, - "Guest_HG_UFD_Kelpie_Warrior_A_100": 725384735, - "Guest_HG_UFD_Kelpie_Warrior_A_50": 708607503, - "Guest_HG_UFD_Pirate_UndeadHighland_B_150": 1099317831, - "Guest_HG_UFD_Pirate_UndeadHighland_B_100": 25576008, - "Guest_HG_UFD_Pirate_UndeadHighland_B_50": 159793864, - "Guest_HG_UFD_Ghost_QueenF_A_150": 795716275, - "PP_SpiderMinion": 557357331, - "MNT_Vines_Rainbow": 1587180338, - "MNT_YoungDrake": 1279496198, - "PP_Pet_Coconut": 444388490, - "DragonKI": 1490194214, - "PP_Sharkfish": 601628284, - "PP_MimicCake": 48071878, - "Guest_AQ-Bronze-Eagle": 375279744, - "Guest_Spider-Brown-L26": 2128680185, - "Guest_KR_Spider_Giant_D": 744401035, - "Guest_Wizard-Female-Band-Blue-R8": 1447486557, - "Guest_CC_Human_DSCrusaderF_A_01": 726538068, - "Guest_WC_Scarecrow_A_01": 867491011, - "Guest_WC_Banshee_A_01": 1433786463, - "Guest_WC_LostSoul_A_01": 796936146, - "PP_Fairy_Myth": 1117624344, - "PP_SpriteDark_Myth": 1884257976, - "BG_CyclopsLife_A": 944091673, - "Transformation_BG_NinjaPig_Storm": 2005137181, - "Transformation_BG_Fairy_Myth": 1880704188, - "Transformation_BG_Cyclops_Life": 638936708, - "Guest_AQ-Eagle-Praetorian": 1988013806, - "Guest_KM_BabyCarrot_A_01": 766239512, - "Guest_G14-DM-Gargoyle": 282898047, - "Guest_MR_Durvish_Sergeant_A_Boss_01": 1532609325, - "Guest_Cyclops-RedHelmet-KTBoss-L28": 2072371506, - "Guest_EM_Pig_Singer_A_01": 698597069, - "Guest_EM_Pig_Captain_A": 977505995, - "Guest_EM_Pig_Crewman_A": 465576459, - "PP_ChipmunkConductor": 1089819900, - "PP_LuckyCat": 1109326826, - "MNT_ImpCar": 1736092191, - "MNT_Book": 1547655078, - "MNT_JackoLantern": 649919658, - "MNT_Zheng": 742453108, - "MNT_Train": 413197899, - "MNT_Cerberus": 552686313, - "PP_Coconut": 1122741587, - "Transformation_Statue": 1153168084, - "Transformation_Nullity": 622504394, - "PP_Irk": 1825277392, - "Guest_Wyrmling-Fire-R8-1": 531485009, - "MNT_WolfLowPoly_A": 1947890962, - "MNT_WolfLowPoly_B": 1947825426, - "Transformation_BG_RatThief_Fire": 1169330235, - "Transformation_BG_WolfWarrior_Death": 159966683, - "Transformation_BG_Minotaur_Balance": 657855108, - "Transformation_BG_Draconian_Ice": 1907339814, - "Transformation_BG_Colossus_Myth": 1305894338, - "Transformation_NV_Penguin": 1757096851, - "Transformation_NV_Unicorn": 60447768, - "Transformation_NV_Monkey": 1379873688, - "Transformation_NV_Dog": 1961288968, - "PP_Wolf_Storm": 455227171, - "PP_WoodDuck": 1680912895, - "MNT_RockingHorse": 1205280059, - "MNT_SOF2022_Car": 219868812, - "PP_Buffaloon": 796152873, - "MNT_Steamboat": 1969530127, - "MNT_FelizNavidog": 847046394, - "PP_Mustache": 1571079379, - "Guest_DD-DS01-Skeleton-Pirate-20": 226826848, - "Guest_DD-DS01-Skeleton-Pirate-40": 201661024, - "Guest_DD-DS01-Skeleton-Pirate-60": 210049632, - "Guest_DD-DS01-Skeleton-Pirate-80": 251992672, - "Guest_DD-DS01-Skeleton-Pirate": 1994450336, - "Guest_DD-DS01-Shadow-Minion-Fire": 1074864956, - "Guest_DD-DS01-Shadow-Minion-Ice": 1841681214, - "Guest_DD-DS01-Shadow-Minion-Fire-20": 1074880881, - "Guest_DD-DS01-Shadow-Minion-Fire-40": 1074880945, - "Guest_DD-DS01-Shadow-Minion-Ice-20": 96850220, - "Guest_DD-DS01-Shadow-Minion-Ice-40": 96850218, - "Guest_DD-DS01-Shadow-Minion-Fire-60": 1074881009, - "Guest_DD-DS01-Shadow-Minion-Ice-60": 96850216, - "Guest_DD-DS01-Shadow-Minion-Fire-80": 1074880561, - "Guest_DD-DS01-Shadow-Minion-Ice-80": 96850214, - "Guest_SC-SpectreOfB-1": 1471950935, - "Guest_SC-SpectreOfB-20": 1471942759, - "Guest_SC-SpectreOfB-40": 1471942663, - "Guest_SC-SpectreOfB-60": 1471942695, - "Guest_SC-SpectreOfB-80": 1471942855, - "Guest_KH-Skeleton-Ice-60": 2108358962, - "Guest_KH-Skeleton-Ice-40": 2108391730, - "Guest_KH-Skeleton-Ice-20": 2108293426, - "Guest_KH-Skeleton-Ice-1": 2099953970, - "Guest_KH-Skeleton-Ice-80": 2108195122, - "Guest_KH-Undead-Caster-60": 1662604496, - "Guest_KH-Undead-Caster-40": 1661555920, - "Guest_KH-Undead-Caster-20": 1664701648, - "Guest_KH-Undead-Caster-1": 1931564240, - "Guest_KH-Undead-Caster-80": 1667847376, - "Guest_DD-PA01-DeadBeets": 1664999367, - "Guest_DD-PA01-DeadBeets-20": 1901453253, - "Guest_DD-PA01-DeadBeets-40": 2002116549, - "Guest_DD-PA01-DeadBeets-60": 1968562117, - "Guest_DD-PA01-DeadBeets-80": 2069225413, - "Guest_DD-PA01-Disparagus": 1865816461, - "Guest_DD-PA01-Disparagus-20": 573970895, - "Guest_DD-PA01-Disparagus-40": 499770929, - "Guest_DD-PA01-Disparagus-60": 1573512753, - "Guest_DD-PA01-Disparagus-80": 1647712718, - "Guest_DD-PA01-MeanestFlyTrap": 2001546861, - "Guest_DD-PA01-MeanestFlyTrap-20": 1936326253, - "Guest_DD-PA01-MeanestFlyTrap-40": 1936064109, - "Guest_DD-PA01-MeanestFlyTrap-60": 1935801965, - "Guest_DD-PA01-MeanestFlyTrap-80": 1937636973, - "Guest_HG-MD-MacDeath-20": 182639104, - "Guest_HG-MD-MacDeath-40": 182638080, - "Guest_HG-MD-MacDeath-60": 182637056, - "Guest_HG-MD-MacDeath-80": 182636032, - "Guest_HG-MD-MacDeath-100": 174252032, - "Guest_HG-MD-MacDeath-130": 174202880, - "Guest_HG_Sinbad_Skeleton_25": 494617874, - "Guest_HG_Sinbad_Skeleton_50": 42253050, - "Guest_HG_Sinbad_Skeleton_75": 1115994862, - "Guest_HG_Sinbad_Skeleton_100": 2105232646, - "Guest_HG_Sinbad_Skeleton_130": 2105232650, - "Guest_HG_Sinbad_Skeleton_25_02": 492722834, - "Guest_HG_Sinbad_Skeleton_50_02": 44148090, - "Guest_HG_Sinbad_Skeleton_75_02": 1117889902, - "Guest_HG_Sinbad_Skeleton_100_02": 2044247302, - "Guest_HG_Sinbad_Skeleton_130_02": 2044247306, - "Guest_DD-AV01-WyrmBoss": 1648677986, - "Guest_DD-AV01-WyrmBoss-20": 1926730850, - "Guest_DD-AV01-WyrmBoss-40": 1927779426, - "Guest_DD-AV01-WyrmBoss-60": 1928828002, - "Guest_DD-AV01-WyrmBoss-80": 1921487970, - "Guest_RH-Wyrm-Boss-01": 1027277645, - "Guest_RH-Wyrm-Boss-20": 1027277660, - "Guest_RH-Wyrm-Boss-40": 1027277663, - "Guest_RH-Wyrm-Boss-60": 1027277662, - "Guest_RH-Wyrm-Boss-80": 1027277657, - "Guest_HG_Sinbad_Wyrm_25": 1101443356, - "Guest_HG_Sinbad_Wyrm_50": 1101528860, - "Guest_HG_Sinbad_Wyrm_75": 1101445916, - "Guest_HG_Sinbad_Wyrm_100": 1093138204, - "Guest_HG_Sinbad_Wyrm_130": 1093089052, - "Guest_KH-Treant-1": 2001244331, - "Guest_KH-Treant-60": 1968148651, - "Guest_KH-Treant-40": 1968017579, - "Guest_KH-Treant-20": 1967886507, - "Guest_KH-Treant-80": 1967231147, - "Guest_DD-PA01-ForestGrump": 1969685870, - "Guest_DD-PA01-ForestGrump-20": 714666713, - "Guest_DD-PA01-ForestGrump-40": 714666689, - "Guest_DD-PA01-ForestGrump-60": 714666697, - "Guest_DD-PA01-ForestGrump-80": 714666737, - "Guest_DD-PA01-ForestNymphs": 227087348, - "Guest_DD-PA01-ForestNymphs-20": 227023552, - "Guest_DD-PA01-ForestNymphs-60": 227023040, - "Guest_DD-PA01-ForestNymphs-80": 227024832, - "Guest_SC-Pig-BalanceWizardA-1": 475456968, - "Guest_SC-Pig-BalanceWizardA-20": 477550024, - "Guest_SC-Pig-BalanceWizardA-40": 477541832, - "Guest_SC-Pig-BalanceWizardA-60": 477533640, - "Guest_SC-Pig-BalanceWizardA-80": 477525448, - "Guest_SC-Pig-BalanceWizardB-1": 475456964, - "Guest_SC-Pig-BalanceWizardB-20": 477550020, - "Guest_SC-Pig-BalanceWizardB-40": 477541828, - "Guest_SC-Pig-BalanceWizardB-60": 477533636, - "Guest_SC-Pig-BalanceWizardB-80": 477525444, - "Guest_SC-Pig-BalanceWizardC-1": 475456960, - "Guest_SC-Pig-BalanceWizardC-20": 477550016, - "Guest_SC-Pig-FireWizard-1": 2048176291, - "Guest_SC-Pig-FireWizard-20": 2031399073, - "Guest_SC-Pig-FireWizard-40": 2132062369, - "Guest_SC-Pig-FireWizard-60": 2098507937, - "Guest_SC-Pig-FireWizard-80": 1930735777, - "Guest_SC-Pig-IceWizardF-1": 1178687744, - "Guest_SC-Pig-IceWizardF-20": 1161910526, - "Guest_SC-Pig-IceWizardF-40": 1128356094, - "Guest_SC-Pig-IceWizardF-60": 1094801662, - "Guest_SC-Pig-IceWizardF-80": 1329682686, - "Guest_SC-Pig-MythWizard-1": 2048492725, - "Guest_SC-Pig-MythWizard-20": 2031715511, - "Guest_SC-Pig-MythWizard-40": 2132378807, - "Guest_SC-Pig-MythWizard-60": 2098824375, - "Guest_SC-Pig-MythWizard-80": 1931052215, - "Guest_SC-Pig-StormWizardF-1": 1743849420, - "Guest_SC-Pig-StormWizardF-20": 1743851464, - "Guest_SC-Pig-StormWizardF-40": 1743851488, - "Guest_SC-Pig-StormWizardF-60": 1743851480, - "Guest_SC-Pig-StormWizardF-80": 1743851504, - "Guest_KH-Pig-Bandit-Lord-1": 1080496628, - "Guest_KH-Pig-Bandit-Lord-20": 543625652, - "Guest_KH-Pig-Bandit-Lord-40": 530116172, - "Guest_KH-Pig-Bandit-Lord-60": 1603857996, - "Guest_KH-Pig-Bandit-Lord-80": 1617367475, - "Guest_KH-Pig-Bandit-Ninja-1": 1945100907, - "Guest_KH-Pig-Bandit-Ninja-20": 1945102951, - "Guest_KH-Pig-Bandit-Ninja-40": 1945102975, - "Guest_KH-Pig-Bandit-Ninja-60": 1945102967, - "Guest_KH-Pig-Bandit-Ninja-80": 1945102927, - "Guest_KH-Pig-War-Caster-1": 656859765, - "Guest_KH-Pig-War-Caster-20": 606528119, - "Guest_KH-Pig-War-Caster-40": 572973687, - "Guest_KH-Pig-War-Caster-60": 539419255, - "Guest_KH-Pig-War-Caster-80": 774300279, - "Guest_KH-Pig-War-Warrior-Boss-1": 16342355, - "Guest_KH-Pig-War-Warrior-Boss-20": 2143724205, - "Guest_KH-Pig-War-Warrior-Boss-40": 2118558381, - "Guest_KH-Pig-War-Warrior-Boss-60": 2126946989, - "Guest_KH-Pig-War-Warrior-Boss-80": 2101781165, - "Guest_SC-Pig-BalanceWizardC-40": 477541824, - "Guest_SC-Pig-BalanceWizardC-60": 477533632, - "Guest_SC-Pig-BalanceWizardC-80": 477525440, - "Guest_KH-Helephant-Death-20": 1109389719, - "Guest_KH-Helephant-Death-40": 2111835753, - "Guest_KH-Helephant-Death-60": 1038093929, - "Guest_KH-Helephant-Death-80": 35647896, - "Guest_KH-GreyOgre-Spider-1": 356368404, - "Guest_KH-GreyOgre-Spider-20": 1966981204, - "Guest_KH-GreyOgre-Spider-40": 1254244268, - "Guest_KH-GreyOgre-Spider-60": 180502444, - "Guest_KH-GreyOgre-Spider-80": 893239379, - "Guest_HG_Sinbad_Colossus_25": 1190802829, - "Guest_HG_Sinbad_Colossus_50": 1493551719, - "Guest_HG_Sinbad_Colossus_75": 419809907, - "Guest_HG_Sinbad_Colossus_100": 653933977, - "Guest_HG_Sinbad_Colossus_130": 653933973, - "Guest_NV_Dino_AberrantUndead_A_01": 2035087398, - "Guest_NV_Hellephant_Aberrant_A_01": 989522333, - "Guest_NV_Hellephant_Aberrant_A_02": 989522334, - "Guest_NV_BananaSpider_Base_A_01": 1585810541, - "Guest_NV_BananaSpider_Base_A_02": 1581616237, - "Guest_NV_BananaSpider_Base_A_03": 1577421933, - "Guest_NV_BananaSpider_Base_A_04": 1606782061, - "Guest_NV_BananaSpider_Base_A_05": 1602587757, - "Guest_NV_Wyrm_Aberrant_A_01": 16108415, - "Guest_NV_Monkey_Zombie_A_01": 1854775300, - "Guest_NV_Monkey_Zombie_A_02": 1854775304, - "Guest_NV_Monkey_Zombie_A_03": 1854775308, - "Guest_NV_Monkey_Zombie_A_04": 1854775312, - "MNT_Flag_Monster": 867940056, - "Guest_SKB_WY_DarkBramble_A_30": 2046798767, - "Guest_SKB_WY_DarkBramble_A_50": 2046797999, - "Guest_SKB_WY_DarkBramble_A_100": 2044701359, - "Guest_SKB_WY_DarkBramble_A_150": 2044721839, - "Guest_SKB_GH_Boar_A_30": 1547921275, - "Guest_SKB_WC_SpiritIgnorance_A_50": 1488876986, - "Guest_SKB_WC_SpiritIgnorance_A_100": 2025748410, - "Guest_SKB_WC_SpiritIgnorance_A_150": 2025748413, - "Guest_SKB_DS_Loremaster_A_50": 527751539, - "Guest_SKB_DS_Loremaster_A_100": 527817059, - "Guest_SKB_DS_Loremaster_A_150": 527817699, - "Guest_SKB_CL_Dan_A_50": 637418706, - "Guest_SKB_CL_Dan_A_60": 1510064941, - "Guest_SKB_CL_Dan_A_100": 637410512, - "Guest_SKB_CL_Dan_A_150": 637410432, - "Guest_SKB_AV_Spectre_A_50": 2104631195, - "Guest_SKB_AV_Spectre_A_100": 2102534041, - "Guest_SKB_AV_Spectre_A_150": 2018647961, - "Guest_SKB_MS_Samoorai_A_50": 2029641915, - "Guest_SKB_MS_Samoorai_A_100": 2096750843, - "Guest_SKB_MS_Samoorai_A_150": 587603717, - "Transformation_BG_Krok_StromTemplate": 1317694546, - "PP_ChineseRabbit": 382941643, - "PP_ParadeElf": 1036247808, - "MNT_HeartSwarm": 918199310, - "MNT_SpringSOF2023": 1417178519, - "Transformation_BG_Elf_Death2Template": 1606653101, - "MNT_GummyBunny_D": 775840224, - "Transformation_BG_Krok_Life2Template": 747486212, - "PP_Flame": 959186933, - "PP_YachtRock": 1500927358, - "PP_PirateYachtRock": 1227549100, - "PP_ChickenMonster": 1845706534, - "PP_SnowHoppers_B": 1496460038, - "PP_SnowHoppers_C": 1496457990, - "MNT_Oarfish": 29720265, - "PP_RingTailedCat": 993143427, - "MNT_Fanboat": 19347694, - "MNT_MiniSub": 298697910, - "PP_DumboOctopus": 966435639, - "PP_Glowbug_Balance": 1405529577, - "PP_Glowbug_Death": 405117107, - "PP_Glowbug_Fire": 651698987, - "PP_Glowbug_Ice": 2124926395, - "PP_Glowbug_Life": 601367299, - "PP_Glowbug_Myth": 592978024, - "PP_Glowbug_Storm": 61190446, - "PP_DumboOctopus_B": 968448823, - "PP_DumboOctopus_C": 968383287, - "PP_BananaSpider_01": 1074383522, - "PP_BananaSpider_02": 1080674978, - "PP_BananaSpider_03": 1078577826, - "Guest_HG_NM_BeardDragon_Base_C_01": 82913785, - "Guest_HG_NM_BeardDragon_Base_C_02": 82913786, - "Guest_HG_NM_BeardDragon_Base_C_03": 82913787, - "Guest_HG_NM_Glowbug_Base_C_01": 544959703, - "Guest_HG_NM_Glowbug_Base_C_02": 544955607, - "Guest_HG_NM_Glowbug_Base_C_03": 544951511, - "Guest_HG_NM_Glowbug_Base_C_04": 544947415, - "Guest_HG_NM_Glowbug_Base_C_05": 544943319, - "Guest_HG_NM_Glowbug_Base_C_06": 544939223, - "Guest_HG_NM_Glowbug_Base_C_07": 544935127, - "MNT_BouquetofFlowers": 1511180560, - "PP_Piggle_Rainbow": 91081383, - "MNT_Sabertooth_FlameSaber": 1949516909, - "Guest_HG_NM_BeardDragon_Base_A_01": 83175929, - "Guest_HG_NM_BeardDragon_Base_A_02": 83175930, - "Guest_HG_NM_BeardDragon_Base_A_03": 83175931, - "Guest_HG_NM_BeardDragon_Base_B_01": 83044857, - "Guest_HG_NM_BeardDragon_Base_B_02": 83044858, - "Guest_HG_NM_BeardDragon_Base_B_03": 83044859, - "Guest_HG_NM_Glowbug_Base_B_01": 8088791, - "Guest_HG_NM_Glowbug_Base_B_02": 8084695, - "Guest_HG_NM_Glowbug_Base_B_03": 8080599, - "Guest_HG_NM_Glowbug_Base_B_04": 8076503, - "Guest_HG_NM_Glowbug_Base_B_05": 8072407, - "Guest_HG_NM_Glowbug_Base_B_06": 8068311, - "Guest_HG_NM_Glowbug_Base_B_07": 8064215, - "Guest_HG_NM_Glowbug_Base_A_01": 1618701527, - "Guest_HG_NM_Glowbug_Base_A_02": 1618697431, - "Guest_HG_NM_Glowbug_Base_A_03": 1618693335, - "Guest_HG_NM_Glowbug_Base_A_04": 1618689239, - "Guest_HG_NM_Glowbug_Base_A_05": 1618685143, - "Guest_HG_NM_Glowbug_Base_A_06": 1618681047, - "Guest_HG_NM_Glowbug_Base_A_07": 1618676951, - "MNT_SummerSOF2023": 1636120912, - "PP_Cyclops_Fire": 7821755, - "PP_Death_Elf": 1535744155, - "PP_Newt": 1438123483, - "PP_Echidna": 735439358, - "MNT_Wombat": 580544786, - "Transformation_BG_NinjaPig_Balance": 1799661438, - "Transformation_BG_Cyclops_Ice": 647975824, - "Transformation_BG_Minotaur_Storm": 1005667041, - "Transformation_GR_Parasaur_Priest_Ice": 1101466351, - "Transformation_GR_Parasaur_Priest_Fire": 892193041, - "Transformation_GR_Parasaur_Priest_Storm": 1525882116, - "Transformation_GR_Parasaur_Priest_Balance": 1127637476, - "Guest_GR_AZ_Parasaur_Undead_B_01": 322587487, - "MNT_WitchCat": 1167097888, - "PP_RolyPoly": 578538330, - "PP_Capybara_B": 628131532, - "MNT_OutbackTruck": 1815527801, - "PP_PoodleSailor": 2137704795, - "MNT_PolarianCannon": 2103490826, - "PP_TazmanianDevil": 1773548765, - "Guest_SKB_AZ_Ixcax_A_100": 556560994, - "Guest_SKB_AZ_Ixcax_A_150": 556610146, - "Guest_SKB_AZ_Ixcax_A_50": 564951650, - "MNT_GhoulsShovel": 2035610946, - "PP_CrystalBdayDragon": 1897078804, - "PP_SunGobblerBall": 1522469440, - "PP_Sun_GreenGobbler": 1337690394, - "MNT_2P_AutumnTreant": 1063435527, - "PP_AutumnTreant": 561077291, - "MNT_FlyingMonkey": 490807393, - "PP_BabyPlantMonster": 2076646587, - "MNT_PlantCreature_A": 1802823265, - "Transformation_BG_Fairy_Fire": 2065252898, - "Transformation_BG_Krok_Myth": 277926564, - "Transformation_BG_RatThief_Life": 1167758651, - "Transformation_BG_Elf_Balance": 1628238937, - "Transformation_BG_Colossus_Death": 184392004, - "Transformation_FortressPod": 139738335, - "P_Wombat_POLYMORPH": 1132264953, - "PP_SharkWobbegong": 1994247222, - "PP_ChineseNYDragon": 1126999021, - "PP_JingleBellRock": 1076037919, - "PP_Krok_Mummy_Myth": 438487583, - "PP_Cyclops_Ice": 1476966187, - "MNT_OutbackTruckB": 1813299577, - "MNT_EvilSnowmanBall": 758818712, - "MNT_ThanksgivingGobbler": 1760011910, - "Guest_WL_Ghost_LostSoul_A_01": 1224111704, - "Guest_WL_Kangaroo_Drover_F_01": 2025562931, - "Guest_WL_Spider_WarriorMage_C_01": 1296557888, - "Guest_WL_Spider_WarriorMage_C_02": 1430775616, - "Guest_WL_Spider_WarriorMage_C_03": 1564993344, - "Guest_WL_Spider_WarriorMage_C_04": 1699211072, - "Guest_WL_Spider_WarriorMage_C_05": 1833428800, - "Guest_WL_Spider_WarriorMage_C_06": 1967646528, - "Guest_WL_Spider_WarriorMage_C_07": 2101864256, - "Guest_SKB_KR_Lightbane_A_100": 837930677, - "Guest_SKB_KR_Lightbane_A_160": 837930669, - "Guest_SKB_KR_Lightbane_A_50": 1309555019, - "Transformation_WL_Phantasmanian_DevilTemplate": 384891502, - "MNT_2P_LeaflessTreant": 623083386, - "PP_Minotaur_Ice": 700151737, - "MNT_Scooter_G": 737125252, - "Guest_WL_Frog_Owner_B_01": 767864686, - "MNT_SilentKnight": 646654812, - "Guest_WL_TRex_Base_A_01": 1842562033, - "Guest_WL_TRex_Base_B_01": 304921616, - "PP_Groundhog": 108643243, - "Guest_NV_Unicorn_Guard_C_04": 1845621, - "MNT_EmuPunk": 647315080, - "MNT_HeartBalloon": 798826551, - "PP_ValentineHoppers": 968693964, - "MNT_SpringSOF2024_Heckhound": 453640548, - "Guest_AQ-Centaur-Arion": 1856508139, - "Guest_AQ-Centaur-Artemis": 333294011, - "Guest_AQ-Horse-Sea": 724896200, - "Guest_KR_Horse_Warlord_A_Bossfight": 1302284326, - "Guest_KR_Horse_Warlord_A_BossfightSP": 1300726822, - "Guest_KR_Zebra_Thrall_A": 1250265667, - "Guest_KR_Zebra_Thrall_A_Boss_Minion": 345677011, - "Guest_KR_Zebra_Thrall_A_Gallery": 1520303483, - "Guest_KH-Gray-Horse-40": 1802231403, - "Guest_KH-Gray-Horse-20": 1802231307, - "Guest_G14-BP-Unicorn_Fencer_Boss": 1602044152, - "Guest_Horse-Merc-Brown-L37": 1831175255, - "Guest_Horse-Merc-Tan-L39": 1363854837, - "Guest_Horse-Merc-Tan-L39-1": 2085275127, - "Guest_Horse-Merc-Gray-MSBoss-L39": 1863452041, - "Guest_Horse-Merc-Gray-L39": 2039135564, - "Guest_Horse-Merc-Tan-L38": 1363330549, - "Guest_WC_Horse_Mercenary_Roberto": 891924774, - "Guest_ZF-Nathi-Yellowstripe-R11": 1505157721, - "Guest_ZF-TseTse-Main-R11-Boss": 114927854, - "Guest_ZF-TseTse-Elephant-R11": 894147273, - "Guest_ZF-Zebra-Impi-Raider-R11": 1378242919, - "Guest_ZF-Zebra-Warrior-Male-R10-1": 1791906265, - "Guest_ZF-Zebra-Senzan-Zebu-R10-Boss": 373712721, - "Guest_ZF-Zebra-Shaka-Zebu-R10-Boss": 662142985, - "Guest_ZF-Zebra-Warrior-Female-R10-02": 1507835670, - "Guest_ZF-Zebra-Warrior-Male-R10": 47075786, - "Guest_ZF-Zebra-Warrior-Male-R10-02": 1791906714, - "Guest_ZF-Zebra-Warrior-Male-R10-03": 1791906746, - "Guest_ZF-Zebra-Warrior-Male-R10-05": 1791906682, - "Guest_ZF-Zebra-Warrior-Male-R10-2": 1791906268, - "Guest_ZF_Zebra_Spectral_Guardian-R11": 431970996, - "Guest_CC_Horse_Apoc_A_01": 644668374, - "Guest_CC_Horse_Apoc_B_01": 644668390, - "Guest_CC_Horse_Apoc_C_01": 644668406, - "Guest_CC_Horse_Apoc_D_01": 644668294, - "Guest_CC_Horse_Apoc_D_02": 645192582, - "Guest_CC_Unicorn_CorsairF_B_01": 1378532506, - "Guest_CC_Unicorn_Duelist_B_01": 64891542, - "Guest_CC_Unicorn_Guard_B_01": 1075063242, - "Guest_CC_Unicorn_Guard_B_02": 1075063238, - "Guest_CC_Unicorn_Guard_B_03": 1075063234, - "Guest_NV_Horse_HordeSoldier_A_01": 504396960, - "Guest_NV_Horse_HordeSoldier_A_02": 101743776, - "Guest_NV_Horse_HordeOfficer_A_01": 343600992, - "Guest_NV_Horse_HordeSoldier_A_03": 235961504, - "Guest_NV_Horse_HordeOfficer_A_02": 209383264, - "Guest_NV_Horse_AberrantTungAk_A_01": 952263441, - "Guest_NV_Horse_AberrantTungAk_A_02": 952263537, - "Guest_NV_Horse_TungAk_B_01": 1194718672, - "Guest_NV_Horse_TungAk_B_02": 657847760, - "Guest_NV_Horse_HordeOfficer_B_01": 343596896, - "Guest_NV_Horse_HordeOfficer_B_02": 209379168, - "Guest_NV_Horse_TungAk_A_01": 1194669520, - "Guest_NV_Unicorn_Guard_C_01": 1845601, - "Guest_NV_Unicorn_Guard_A_01": 797025, - "Guest_NV_Unicorn_AberrantGuard_A_01": 739851573, - "Guest_NV_Unicorn_Guard_C_02": 1845613, - "Guest_NV_Unicorn_Guard_C_03": 1845609, - "Guest_NV_Unicorn_AberrantGuard_A_02": 739848501, - "Guest_NV_Unicorn_Guard_A_02": 797037, - "Guest_NV_Unicorn_AberrantGuard_A_03": 739849525, - "Guest_NV_Unicorn_AberrantGuard_A_04": 739846453, - "Guest_NV_Horse_HordeOfficer_A_03": 75165536, - "Guest_NV_Horse_HordeSoldier_A_04": 907050144, - "Guest_NV_Horse_HordeSoldier_A_05": 1041267872, - "Guest_NV_Horse_HordeSoldier_C_01": 504388768, - "Guest_HG_TRAIN_Horse_MustangFencerF_A_Balance_50": 871182987, - "Guest_HG_TRAIN_Horse_MustangFencerF_A_Balance_75": 871176715, - "Guest_HG_TRAIN_Horse_MustangFencerF_A_Life_100": 886489645, - "Guest_HG_TRAIN_Horse_MustangFencerF_A_Balance_25": 871177035, - "Guest_HG_TRAIN_Horse_MustangFencerF_A_Balance_100": 872231819, - "Guest_HG_TRAIN_Horse_MustangFencerF_A_Life_140": 1960231469, - "Guest_HG_TRAIN_Horse_MustangFencerF_B_100": 2089957067, - "Guest_HG_TRAIN_Horse_MustangFencerF_A_Life_25": 1700184589, - "Guest_HG_TRAIN_Horse_MustangFencerF_A_Life_50": 920044045, - "Guest_HG_TRAIN_Horse_MustangFencerF_A_Life_75": 1742127629, - "Guest_HG_TRAIN_Horse_MustangFencerF_A_Balance_140": 872223627, - "Guest_HG_TRAIN_Horse_MustangFencerF_B_50": 2089952970, - "Guest_HG_TRAIN_Horse_MustangFencerF_B_75": 57530654, - "Guest_HG_TRAIN_Horse_MustangFencerF_B_140": 2089957099, - "Guest_HG_TRAIN_Horse_MustangFencerF_B_25": 1131272477, - "Guest_LM_Horse_Explorer_A_01_Hard": 1711837140, - "Guest_WL_Unicorn_Guard_A_01": 1074538935, - "Guest_WL_Unicorn_CorsairF_E_01": 1378532603, - "Guest_WL_Unicorn_Warlord_A_01": 1321310496, - "Guest_KH-Gray-Horse-1": 1802239547, - "Guest_KH-Gray-Horse-60": 1802231371, - "Guest_KH-Gray-Horse-80": 1802231467, - "Transformation_BG_NinjaPig_Ice": 186026527, - "Transformation_BG_Cyclops_Storm": 897316984, - "PP_MinotaurBalance": 1344665951, - "PP_OrthusMoon": 1804503950, - "PP_CoolPineapple": 1149318906, - "PP_TwinkleStars": 766378011, - "PP_Scroll": 1613313091, - "PP_Colossus_Death": 40713075, - "PP_ColossusDeath": 530964029, - "PP_KILiveRock": 1975550570, - "MNT_Outrigger": 1417937299, - "MNT_BookWyrm": 2080129190, - "MNT_RacingSnail": 1996220963, - "MNT_UmbrellaCloud": 145762615, - "PP_PropellerCat": 2094718580, - "MNT_TRex_Shirt": 586746001, - "MNT_Swarm_Bee": 1625228695, - "MNT__CelestialMoon": 968360256, - "Guest_ME_Sinbad_IronSultan_150": 2001676223, - "Guest_ME_Sinbad_Cyclops_150": 1968943689, - "Guest_ME_Sinbad_Skeleton_150": 1031490819, - "Guest_ME_Sinbad_Colossus_150": 1727675806, - "Guest_ME_Sinbad_Skeleton_150_02": 970505475, - "Guest_ME_Sinbad_Wyrm_150": 19314443, - "Guest_ZF-Zebra-Inzinzebu-Bandit-R11": 430262550, - "Guest_ZF-Zebra-Warrior-Male-R10-04": 1791906650, - "PP_TwinkleStars_02": 805304347, - "PP_TwinkleStars_03": 803207195, - "PP_TwinkleStars_01": 799012891, - "Transformation_BodleianHarrow": 609627870, - "Guest_HG_Gryphon_OwlStatue_A_01_L170": 77756046, - "Guest_HG_Gryphon_OwlStatue_A_02_L170": 73561742, - "Guest_HG_Gryphon_OwlStatue_A_01_L100": 77752974, - "Guest_HG_Gryphon_OwlStatue_A_02_L100": 73558670, - "Guest_HG_Gryphon_OwlStatue_A_01_L50": 78277134, - "Guest_HG_Gryphon_OwlStatue_A_02_L50": 74082830, - "MNT_SummerSOF2024_JudgementWings": 1078163967, - "MNT_Pegasus_E": 131704054, - "MNT_PolarisHero": 665176426, - "PP_Duckana": 1128961578, - "PP_QueenBee": 833291695, - "Transformation_BG_Draconian_Balance": 2078940682, - "Transformation_BG_WolfWarrior_Fire": 1762248682, - "Transformation_BG_Minotaur_Death": 309090657, - "PP_WolfWarrior_Fire": 685685256, - "PP_WolfWarrior_Death": 1857202724, - "Guest_ME-GTAV01-WyrmBoss-150": 1482208618, - "Guest_ME_SpectreOfB_L150": 684104791, - "Guest_ME_MD_MacDeath_L150": 1128977615, - "Guest_ME_Pig_BalanceWizardA_L150": 959913724, - "Guest_ME_Pig_BalanceWizardB_L150": 959913712, - "Guest_ME_Pig_BalanceWizardC_L150": 959913716, - "Guest_ME_Pig_FireWizard_L150": 964392255, - "Guest_ME_Pig_IceWizardF_L150": 86941026, - "Guest_ME_Pig_MythWizard_L150": 964051241, - "Guest_ME_Pig_StormWizardF_L150": 2016383602, - "Guest_ME_Clock_Clockworker_L150": 1424569772, - "Guest_ME_Clock_ClockworkSpanner_L150": 1966824609, - "Guest_ME_Clock_Lugs_L150": 370290904, - "Guest_ME_Clock_Lucia_L150": 1857768409, - "MNT_EvilChair": 339577702, - "PP_Cyclops_Storm": 621464512, - "PP_Krokomummy_Life": 462432735, - "Transformation_CL_Rematch_Crustacean": 1686865207, - "Transformation_CL_Rematch_Protector": 1893951532, - "Transformation_CL_Rematch_Angler": 120412196, - "Transformation_CL_Rematch_Piscean": 1624106070, - "Transformation_Zebra_Template": 1900548493, - "Transformation_Zebra2_Template": 325099540, - "Transformation_Zebra3_Template": 325099524, - "Transformation_Zebra4_Template": 325099636, - "MNT_SweetSixteenBirthday": 1009398096, - "MNT_2P_TRex_Bones": 1618543266, - "MNT_SpringBumperCar": 1725007788, - "PP_WinterGoblin": 2025052443, - "PP_OnyxAnubis": 1552575189, - "PP_OttomanCat": 223541582, - "MNT_HolidayYeti": 780983974, - "MNT_IceSled": 979912604, - "MNT_TurtleDoves": 1850191638, - "MNT_KrokChariot": 559783620, - "MNT_Mustang": 1775949401, - "MNT_PumpkinBall": 382849054, - "Transformation_BG_Fairy_Storm": 836920873, - "Transformation_BG_Elf_Myth": 1506493664, - "Transformation_NinjaPig_Life": 816802847, - "Transformation_BG_Krok_Fire": 1060580712, - "Transformation_BG_Colossus_Balance": 1067963041, - "Transformation_BG_NinjaPig_Life": 441460895, - "PP_Penguin_03": 1623028104, - "Transformation_Duck_Librarian_B": 864067551, - "Transformation_Duck_Librarian_A": 859873247, - "Transformation_Duck_Adventurer": 194560769, - "Transformation_Gummy_Bunny_C": 1298087941, - "Transformation_Frog_Horned_A": 837201339, - "Transformation_Glowbug_Storm": 2096380446, - "Transformation_Marshmallow_Critter_A": 1036335317, - "Transformation_Snipe_Base_B": 232132109, - "Transformation_Snowball": 915248481, - "Transformation_Wombat_Base": 333435450, - "Transformation_Human_Malistaire": 1414887773, - "Transformation_Morganthe_E": 1745180054, - "Transformation_Spider_Grandfather": 1131773979, - "Transformation_Khrulhu_Dasein_B": 367878762, - "Transformation_Devourer_Base": 698770016, - "Transformation_Alien_Meteor": 638746168, - "Transformation_Nightmare_Malus": 704212821, - "Transformation_Daemon_Personal": 278266463, - "PP_ValentinesDay": 810003364, - "PP_BabyHippo": 422858138, - "PP_Aardwold": 1592150119, - "PP_Aardwold_C": 1902528613, - "MNT_Cobra": 472847981, - "MNT_Serpopard": 1629558909, - "MNT_Serpopard_B": 1629556867, - "MNT_Serpopard_C": 1629556931, - "PP_Fairy_Fire": 1847789544, - "MNT_Mustang_B": 1448793691, - "PP_FireElfMyth": 1933609060, - "MNT_KT-BoatRide": 1560860110 - } - } - } - }, - "231446244": { - "name": "class ClientRenamePipActorsFromResult", - "bases": [ - "RenamePipActorsFromResult", - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 231446244, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - }, - "m_newActorName": { - "type": "std::string", - "id": 2, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2029131039 - }, - "m_newActorName2": { - "type": "std::string", - "id": 3, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1852236785 - }, - "m_oldActorName": { - "type": "std::string", - "id": 4, - "offset": 184, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2191892948 - } - } - }, - "1797670612": { - "name": "class std::vector >", - "bases": [], - "hash": 1797670612, - "properties": {} - }, - "230850271": { - "name": "class MountSoundBehavior*", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 230850271, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - } - } - }, - "635857054": { - "name": "enum ZTStorage", - "bases": [], - "hash": 635857054, - "properties": {} - }, - "1017839043": { - "name": "class WizardSearchResultItem", - "bases": [ - "Search::ResultItem", - "PropertyClass" - ], - "hash": 1017839043, - "properties": { - "m_userID": { - "type": "gid", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1037989700 - }, - "m_userName": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2213937019 - }, - "m_characterID": { - "type": "gid", - "id": 2, - "offset": 112, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 210498386 - }, - "m_characterName": { - "type": "std::wstring", - "id": 3, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2815013574 - }, - "m_zoneName": { - "type": "std::string", - "id": 4, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2171167736 - }, - "m_realmName": { - "type": "std::string", - "id": 5, - "offset": 184, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3507983949 - }, - "m_level": { - "type": "int", - "id": 6, - "offset": 216, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 801285362 - }, - "m_world": { - "type": "int", - "id": 7, - "offset": 232, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 814685730 - }, - "m_nameKey": { - "type": "unsigned int", - "id": 8, - "offset": 220, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1104764311 - }, - "m_gender": { - "type": "enum eGender", - "id": 9, - "offset": 224, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2121766730, - "enum_options": { - "Male": 1, - "Female": 0, - "Neutral": 2 - } - }, - "m_race": { - "type": "enum eRace", - "id": 10, - "offset": 228, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 390582957, - "enum_options": { - "Bat": 88066, - "BatLightning": 1472842576, - "Boar": 2624962, - "CatThug": 1855674386, - "ChristmasElf": 819908552, - "ChristmasSnowman": 1146515225, - "Colossus_Ice": 1063279538, - "Cyclops": 1691813655, - "DragonBeta": 417003588, - "DragonFriendly": 69049013, - "EvilSnowman": 1579630926, - "FireElf": 443793687, - "Firecat": 2045525741, - "Frog": 2274918, - "FrostBeetle": 7692383, - "GhostBlue": 1097396892, - "GhostGreen": 882822629, - "GhostRed": 560510742, - "GhostYellow": 909974358, - "Ghoul": 82556199, - "GoatMonk": 486215564, - "GolemBrass": 1057388325, - "GolemClockwork": 1143380031, - "GolemSteel": 1660583674, - "GolemWood": 1426849876, - "HalloweenCat": 1042869199, - "Heckhound": 626736403, - "Helephant": 719065368, - "Human": 79806088, - "Hydra": 70785800, - "Imp": 84361, - "Krokomummy": 555755242, - "Kroktut": 1352354178, - "Leprechaun": 2106466410, - "LeprechaunPattyDay": 380507781, - "LightningBat": 228257682, - "Mannequin": 428442544, - "Minotaur": 949570680, - "Mount_Broom": 94637995, - "Mount_Cat": 1150940211, - "Mount_Dragon": 1565720148, - "Mount_Horse": 2054712767, - "Mount_PlayerWings": 589829552, - "Nikkos": 1563122418, - "NinjaPig": 607400740, - "Orthus": 1552590225, - "Piggle": 1897753328, - "Piggle_Valentine": 687697592, - "Piggle_ValentinePart2": 1760391091, - "Pixie": 74836240, - "RatMagician": 885542120, - "SalamanderFire": 48480175, - "SalamanderIce": 2011152164, - "SalamanderStorm": 600331072, - "Satyr": 84793363, - "Scarab": 2143810477, - "Sheep": 86220083, - "SkeletonArmored": 1791586239, - "SnowSerpent": 138621543, - "Spider": 1603064269, - "SpiderBlack": 559353179, - "SpiderBrown": 557941675, - "SpiderCrystal": 2119625297, - "SpiderGolem": 1632616514, - "Sprite": 1889156557, - "SpriteDark": 1888685518, - "Stormzilla": 252684095, - "SunBird": 1602211198, - "Transformation_ArmoredSkeleton": 1861349834, - "Transformation_CatThug": 1175387611, - "Transformation_Cat_Bandit": 1012395694, - "Transformation_ClockworkGolem": 601121214, - "Transformation_Cyclops": 620156297, - "Transformation_DarkFairy": 1206757203, - "Transformation_DraconianSorcerer": 1212016810, - "Transformation_Draconian": 450730089, - "Transformation_EarthColossus": 140119452, - "Transformation_EvilSnowman": 1497097122, - "Transformation_FatGobbler": 634003800, - "Transformation_FireElemental": 822233230, - "Transformation_FireElf": 46585468, - "Transformation_FireSalamander": 2118418114, - "Transformation_Gobbler_Skinny": 162365207, - "Transformation_GolemSteel": 1329184184, - "Transformation_Ice_Colossus": 430406408, - "Transformation_Krokomummy": 1644615769, - "Transformation_MagmaMan": 545064542, - "Transformation_Mander": 88998828, - "Transformation_NinjaPig": 1029132174, - "Transformation_Ninja_Pig_04": 7093548, - "Transformation_RatThug": 1175352795, - "Transformation_RavenMystic": 1443197359, - "Transformation_StormElemental": 637088511, - "Transformation_Treant": 1874998327, - "Transformation_WarPig": 691088645, - "Transformation_WolfScout": 263523463, - "Transformation_WolfWarrior": 6092463, - "Transformationn_SkeletonPirate": 1821341863, - "Treant": 1396597132, - "Troll": 82261620, - "Unicorn": 550546918, - "Unknown": 718677478, - "Wolverine": 528843083, - "Wraith": 1788506505, - "Wyrmkin": 379044612, - "Transformation_CyrusDrake": 94277831, - "PetEgg": 1973167984, - "GhostLady": 493415959, - "Banshee": 827805677, - "GobblerRed": 250135875, - "Ghoul_Gravedigger": 161812468, - "SkeletonWarrior": 734585814, - "BansheeBoss": 806445565, - "Seraph": 1792950125, - "CrabKing": 277875784, - "UndeadCaster": 1680689397, - "DragonFrontier": 1829438301, - "HeckhoundGhost": 872406464, - "Mount_Unicorn": 212699468, - "Jellyfish": 910724608, - "SeaDragon": 1194541306, - "Turtle": 1897184620, - "Starfish": 1447562471, - "SpinyFish": 162948281, - "Mount_Gryphon": 2110522960, - "Mount_Shark": 1170186623, - "Mount_Manta": 979931598, - "Mount_Seahorse": 1554833818, - "Mount_Seahorse_Tough": 1245859453, - "Mount_Koi": 1150937409, - "Mount_Lobster": 2025618875, - "Mount_Turtle": 1490849128, - "VenusFlyTrap": 1612039757, - "GDN_MED_BabyCarrots": 327334743, - "GDN_SM_BoomShroom": 31324632, - "GDN_SM_Dandelion": 2058674142, - "GDN_SM_Disparagus": 1732989489, - "GDN_MED_EvilSnowPeas": 747408607, - "GDN_SM_FicklePickle": 205381955, - "GDN_SM_HappyHolidaisy": 1736236340, - "GDN_MED_HelephantEars": 1803669659, - "GDN_MED_HoneySickle": 424149132, - "GDN_LG_NinjaFig": 847338104, - "GDN_LG_SnapDragon": 1076151689, - "GDN_SM_StinkWeed": 845383431, - "GDN_MED_TrumpetVine": 1922690264, - "GDN_MED_VenusFlyTrap": 1560899638, - "GDN_SM_Laughodil": 1278979588, - "GDN_LG_BreadFruitBush": 533042934, - "GDN_MED_PricklyBearCactus": 1236846986, - "GDN_MED_KingParsley": 110148182, - "LeprechaunPatriotic": 414730890, - "SeraphYuletide": 1325846853, - "DragonGhost": 1502126893, - "UnicornNightmare": 604358256, - "EvilSnowmanSandman": 1579432150, - "Colossus_Spirit": 422514215, - "Rock": 2393554, - "GDN_MED_GivingTree": 2047236132, - "Egg": 70853, - "Mount_Carpets": 1602744888, - "Kraken": 1737191829, - "Wyvern": 1727802601, - "Phoenix": 1765559002, - "Judgement": 562901781, - "ForestLord": 1390734923, - "Humongofrog": 1272123051, - "Scarecrow": 41441599, - "Mount_Ram": 77196599, - "BasketSnake": 1835657086, - "Samoorai": 522797493, - "Transformation_RavenWarrior": 701169336, - "PhoenixStorm": 1325268802, - "PhoenixDeath": 1281634042, - "GDN_LG_CouchPotatoes": 879742725, - "GDN_MED_KeyLimes": 811516024, - "Mount_BoneDragon": 1023618313, - "Mount_BigBoneDragon": 1124383680, - "Mount_FairyWings": 1904926612, - "Mount_DragonWings": 755225925, - "Mount_Pegasus": 1621244140, - "GDN_MED_BellPepper": 1710238687, - "GDN_MED_GrapesOfWrath": 1068787103, - "GDN_SM_TigerLily": 1899057048, - "WysteriaPiggle": 49173891, - "Mount_Wyvern": 1658410744, - "Mount_2P_Rhino": 1052779475, - "NightHawk": 358964390, - "Giraffe": 935214826, - "Mount_Hawk": 2070898895, - "Mount_HalloweenNightmare": 726136378, - "GobblerHalloween": 1482399836, - "Leopard": 1606863715, - "Skink": 76950867, - "Mount_Ostrich": 466111322, - "Mount_Crocagator": 1981222087, - "Transformation_Blacktusk-01": 401543565, - "Mount_Hippogriff": 2043817624, - "Transformation_Gorilla-01": 1555853240, - "Transformation_Gorilla-02": 1606184888, - "Mount_Raven": 94983735, - "Mount_Chrismoose": 1822495199, - "Mount_CandyCane": 1148551147, - "Ivy_League": 925492799, - "GDN_MED_Ivy_League": 1630077794, - "Mount_Kirin": 1168691825, - "GDN_SM_Moonflower": 2068754330, - "GDN_MED_BoonTree": 788055729, - "Snowball": 2046118016, - "Foo_Dog": 1549710807, - "ShenlongDragon": 932676736, - "Monkey": 1233866291, - "Wolfhound": 626884686, - "Redcap": 1540319086, - "Raven": 79941650, - "HollowKnight": 1107268274, - "Book": 2405826, - "GDN_MED_AngoraBunnyEars": 1547559854, - "GDN_MED_FortuneCookieTree": 786686214, - "GDN_MED_GooseTree": 809354938, - "GDN_SM_HoneyBeePlant": 1528880373, - "GDN_MED_BambooShoots": 1096708900, - "GDN_SM_Huckleberries": 1937475840, - "Rock_Moustache": 962221287, - "Efreet_Myth": 1834555522, - "Efreet": 1401700123, - "Mammoth": 1395147745, - "Triton": 1730466188, - "Gnome": 74954215, - "BoneDragon": 429245206, - "Basilisk": 1457899086, - "Chimera": 529027789, - "Transformation_GammaTemplate": 1337834518, - "Mount_Camel": 1168198963, - "Mount_RenaissanceWings": 1049782088, - "Bull_Mount": 1713506759, - "Mount_Owl": 1150938242, - "Mount_Alphyn": 487264165, - "Mount_Stag": 1150353823, - "Mount_Auroch": 509865325, - "Mount_Warg": 1150358072, - "StrangeBeast": 511334734, - "Efreet_Ice": 1820009122, - "Efreet_Storm": 1269986674, - "GDN_LG_AlligatorPear": 1293913372, - "Mount_2P_Treant": 928450863, - "Mount_2P_Dragon": 1431637933, - "Mount_Pogo_Stick_WC": 1462849298, - "Mount_Pogo_Stick_MB": 1349603090, - "GDN_LG_MeltingCheese": 1914589015, - "GDN_SM_FishOnAVine": 1734955358, - "GDN_LG_AngelOak": 1539539424, - "GDN_LG_MeltingCheese_Angel": 1254781264, - "SnowyOwl": 1682262138, - "Mount_3P_Hydra": 1207475250, - "WeaselMinstrel": 1541234616, - "MOUNT_Rickshaw": 938282973, - "Transformation_Sherlock-Bones": 509126601, - "Mount_Phoenix": 556355452, - "Toaddle": 597488187, - "Pantera": 528797696, - "WildfireTreant": 673362041, - "StoneTiger": 746336665, - "Blowfish": 1447737334, - "Smith": 78327187, - "FlyingCat": 1254472614, - "RamWarrior": 536916302, - "Ladybug": 1846384669, - "BurlapBoy": 607590898, - "DeerKnight": 560802130, - "Gargoyle": 1227701700, - "Chameleon": 596131510, - "Scorpion": 1462253104, - "GDN_SM_BoiledPeanuts": 544885684, - "GDN_SM_ClockFlower": 676513046, - "GDN_SM_DeadBeets": 650783482, - "GDN_MED_SnowApple": 1916648180, - "Eyecaramba_Violet": 1804780775, - "Eyecaramba_Green": 750346574, - "Eyecaramba_Orange": 687614854, - "Piggle_Grandfather": 131445665, - "Velociraptor": 1042311818, - "Babydactyl": 1180982194, - "Stegosaurus": 476811765, - "Mount_Pegasus_Spectral": 948250730, - "Mount_2P_Scarydactyl": 1808983335, - "Mount_2P_TRex": 1495851852, - "Therizinosaurus": 80337863, - "Runtosaurus": 476200406, - "FrilledLizard": 420993517, - "Mount_Ankylosaurus": 669692274, - "Mount_Triceratops": 1126950204, - "Mount_2P_Glider": 1630365881, - "Transformation_Thunderhorn": 1045262037, - "Transformation_Jaguar": 1080966062, - "Transformation_Pteranadon": 273836142, - "Transformation_ShadowWeaver": 255927111, - "Transformation_EagleWarrior": 1880471875, - "Mount_Falalalallama": 389890123, - "Mount_2P_WinterTreant": 1850265056, - "GDN_LG_MissileToe": 1767792974, - "GDN_MED_PointSetta": 647257205, - "Nutcracker2012": 1598217699, - "Coal2012": 1627852119, - "Mount_Sleigh": 1636615519, - "Mount_Sabertooth": 1613031507, - "Mount_MechanicalWings": 1014917438, - "PiranhaHunter": 686271163, - "Quetzal": 2020925822, - "Mount_Sloth": 1169387359, - "HollowKnightLife": 2114081886, - "BettaFish": 138088968, - "MummyCat": 62372925, - "TrojanHorse": 1725299194, - "WC_Storm_Possessed": 186960228, - "AV_Possessed": 1106693085, - "AZ_Possessed": 1106692701, - "CL_Possessed": 1106692255, - "KT_Possessed": 1106693015, - "MS_Possessed": 1106692977, - "WC_Possessed": 1106692459, - "Mount_2P_Whale": 448824263, - "Mount_2P_Chariot": 88035298, - "Mount_WarBoar": 1159836211, - "Mount_Palanquin": 47587550, - "BearCub": 672664722, - "Transformation_Minotaur": 1454233452, - "DragonGauntlet": 797645257, - "DeathUnicorn": 924144161, - "Flamingo": 1488424911, - "Mount_Gorilla": 1939919432, - "Mount_WarUnicorn": 1361393198, - "GargoyleMyth": 1819685060, - "TikiMan": 16098567, - "Siren": 79937811, - "GoldenRam": 410220227, - "Harpy": 96026632, - "SwordShield": 1668411785, - "ClockworkKnight": 1059948980, - "Mount_MechanicalEagle": 1720948645, - "Mount_Cloud": 1166233435, - "Mount_Surfboard": 1914250039, - "Mount_BetaDragon": 1023653721, - "Mount_BeeWings": 1387988401, - "Vampire": 524731385, - "FrankenBunny": 589797989, - "BumbleBee": 249592226, - "Mount_Dragonfly": 1028843656, - "BronzeGolem": 1320867859, - "TarantulaHawk": 1983939429, - "Mount_Grasshopper": 1852850928, - "FlyingSquirrel": 847551166, - "GDN_MED_Sunion": 1652707634, - "GDN_MED_SwordFern": 548761438, - "GDN_SM_SugarKhrystal": 267539461, - "GDN_SM_SawPalmetto": 1892888046, - "GDN_LG_FacePalm": 2050814140, - "GDN_LG_QueenCrapeMyrtle": 80378450, - "Transformation_ShadowTank": 1304943609, - "Transformation_ShadowHeal": 1254024185, - "Transformation_ShadowDPS": 87276537, - "Mount_Noelephant": 1383672248, - "SaintBernard": 572932242, - "ParkaFox": 2009808189, - "Goose": 75019719, - "Mount_Coconut": 791151432, - "CreepyBeetle": 345594179, - "BabyDragonfly": 1367084335, - "FennecFox": 41315063, - "PP_Leviathan": 833901526, - "PP_SunSerpent": 1062677009, - "PP_LordOfWinter": 960214698, - "PP_Medusa": 867812931, - "PP_Dryad": 147654656, - "PP_AvengingFossil": 315904647, - "PP_Sabertooth": 1799146677, - "Mount_Butterfly": 1283940943, - "Mount_Hare": 2070851023, - "Transformation_MorganthB": 197306990, - "Transformation_MorganthC": 197831278, - "Transformation_MorganthD": 200452718, - "BabyPegasus": 1215000859, - "ArcaneHelp": 1899247549, - "Mount_Vines": 98389624, - "Mount_ArcaneMinecart": 2001270930, - "Hobgoblin": 2133668461, - "Mount_2P_Rowboat": 237071469, - "ForestSpirit": 1178454602, - "Mount_SpiritWolf": 531991076, - "Otter": 84138671, - "OrigamiBird": 550984083, - "DinoSkeletal": 233277835, - "Mount_HarrowingsGreen": 1605746772, - "Mount_HarrowingsBlue": 477152436, - "Mount_HarrowingsPurple": 2092807554, - "RedPanda": 1744233845, - "Ibis": 2665577, - "Corgi": 78823875, - "Mount_Yak": 996545739, - "Mount_FlyingBalance": 436519643, - "Transformation_ShadowMalistaire": 1043814435, - "Transformation_DragonMalistaire": 841867699, - "Mount_Scarab": 1687658791, - "Transformation_MisterHound": 1973578844, - "Mount_BahHumbug": 55114077, - "Skates": 1568993965, - "Moose": 75019725, - "Mount_Gargoyle": 1456663874, - "GDN_MED_VenusFlyTrapEpic": 1594069606, - "Mount_PlayerWingsPink": 19403046, - "GDN_LG_AlligatorPearEpic": 1326804812, - "Pet_Armadillo": 825736847, - "Mount_JoustingDestrierDyeable": 1683448768, - "GDN_MED_VampireCarrots": 871596496, - "GDN_SM_WhiteTigerLilyEpic": 1703271434, - "GDN_LG_NinjaFigEpic": 938504823, - "GDN_LG_SnapDragonEpic": 2071674466, - "GDN_MED_HelephantEarsEpic": 719166107, - "GDN_MED_TrumpetVineEpic": 225854518, - "GDN_SM_DandelionEpic": 728637442, - "GDN_SM_HuckleberriesEpic": 1903258448, - "GDN_MED_SnowAppleEpic": 1231175967, - "GDN_SM_BoomShroomEpic": 981598771, - "GDN_MED_KingParsleyEpic": 2038371004, - "Mount_Raptor": 749695031, - "Pet_Toucan": 581477475, - "Pet_Squirrel": 969881395, - "Mount_WonkyDonkey": 1481657312, - "Mount_HawkPatriotic": 509149743, - "Pet_FrogAssistant": 1945041750, - "Mount_Cat2": 1151054899, - "Mount_Cat2BW": 1603515443, - "Pet_ArmadilloBW": 825733899, - "Pet_FrankieForearms": 1100195857, - "Mount_SolarSabre": 1281093703, - "MNT_MechOstrich": 258667969, - "MNT_BootsBalance": 1799191558, - "MNT_BootsDeath": 1034912971, - "MNT_BootsFire": 606061658, - "MNT_BootsIce": 2142643294, - "MNT_BootsLife": 773751898, - "MNT_BootsMyth": 144792486, - "MNT_BootsStorm": 1525245121, - "Pet_CorgiBirthday": 1951779369, - "OrigamiBirdBDay": 1909935955, - "Pet_FlyingBlackCat": 432111988, - "Mount_Narwhal": 449637834, - "Mount_NightOwl": 1648420845, - "Pet_Penguin": 137342907, - "MNT_PowerGemUnicorn": 411234062, - "Pet_CrystalButterfly": 512136094, - "Mount_BabyMammoth": 185831059, - "MNT_BabaYaga": 564874997, - "Pet_BabySeal": 657606984, - "Pet_BabyYeti": 635847496, - "Transformation_BallerinaBear": 1525333600, - "Mount_StagYuletide": 1508680687, - "Transformation_TitanMedium": 1700742736, - "Transformation_TitanLarge": 718614967, - "Pet_SirenIce": 849851564, - "Mount_FlyingDeath": 1717725588, - "Mount_FlyingFire": 1177216332, - "Mount_FlyingIce": 1238841184, - "Mount_FlyingLife": 433397684, - "Mount_FlyingMyth": 164983572, - "Mount_FlyingStorm": 375872049, - "Dragonling": 1730534849, - "Pet_EggChicken": 952873217, - "HeckhoundGhost_MAW": 893368960, - "Mount_WinterTrain": 751515281, - "Mount_RubberDucky": 1826548479, - "Pet_BansheeSpellwrit": 917979583, - "Pet_SamooraiSpellwrit": 370057597, - "Mount_UnicornAstral": 886914505, - "Guest_Boochbeard": 1958574095, - "Pet_MouseSister": 1267930350, - "Pet_MouseFather": 2010008339, - "Pet_VampireSquirrel": 250588691, - "Mount_CoffinCar": 1387606595, - "Mount_BabyElephant": 2026559639, - "Pet_RoadHog": 601156960, - "Mount_WolfGryphonWings": 543038283, - "MNT_ClockworkSteed": 891371132, - "Mount_Chopper": 1196683136, - "Pet_ButterflyLamb": 527214392, - "Pet_MouseMother": 2012687123, - "Pet_MouseBrother": 1174380856, - "Pet_Cherub": 769208559, - "GDN_SM_Jewel": 1104045832, - "MR_Death_Duncan_Grimwater": 1850289001, - "Mount_DesertRunner": 2049036229, - "Pet_MonkeyMirage": 418612892, - "Pet_ClockworkOwl": 1038482431, - "Pet_NinjaTurtle": 2024540686, - "Mount_Vines_Halloween": 82852149, - "Mount_SwarmBat": 1151836459, - "Mount_2P_NinjaDragon": 1239694057, - "Mount_Gobler": 1820615236, - "Mount_MaryleboneCar": 2027689685, - "JackOLantern": 1016361578, - "Transformation_DjinnCommonA_Balance": 996127128, - "Transformation_MedicineMode": 25960701, - "CactusHopper": 1956293007, - "Transformation_Mimic_ChestGold_A": 414145432, - "Mount_Ghoulture": 1067671195, - "Pet_Macaw": 1087278472, - "Pet_SandWorm": 653200803, - "Transformation_DromelDancer": 1071824116, - "Pet_Bunnies": 695874547, - "Mount_Snowboard": 1914380015, - "Transformation_DrommelDancer": 226294468, - "Mount_Carpet_New": 1618650322, - "Mount_BunnySleigh": 599915427, - "Helephant_Heart": 419161272, - "Mount_Snowboard_Holiday": 876339060, - "Transformation_GhostDog": 646575420, - "Transformation_PrinceGobblestone": 693826496, - "Transformation_Mithraya": 1240010601, - "Transformation_LuskaCharmbeak": 897469730, - "Transformation_YoungCyrusDrake": 15595663, - "Kookaburra": 1069759154, - "BorealisGolemPet": 797488492, - "FlyingEyePet": 505959833, - "StormCloudPet": 548463069, - "BullPet": 1993917801, - "OpossumPet": 284003652, - "GhoulturePet": 939920734, - "StormCloudPetB": 548463001, - "StormCloudPetC": 548463003, - "Guest_LordNightshade": 1221409981, - "BullPetB": 1993917561, - "BullPetC": 1993917553, - "BullPetD": 1993917513, - "Transformation_ShadowCrit": 1392195065, - "Mount_Pennyfarthing": 1551926344, - "Mount_RowboatPirate": 2079208803, - "Mount_IceCube": 1261861595, - "Guest_LostMaiden": 883675592, - "Guest_BoatswainMcGee": 1359750850, - "Guest_ChiefMateMcGurk": 329643845, - "Guest_DoomedBones": 2015643882, - "Guest_SpectreoftheBrocken": 266357448, - "Guest_DrownedKnight": 1100966093, - "Guest_TarntheDrowned": 329540205, - "Guest_DisloyalKnight": 1853240753, - "Guest_NamelessKnight": 1065677876, - "Guest_LambentFire": 489886605, - "Guest_LordoftheBrocken": 1662003371, - "Guest_StormCaiman": 1147500291, - "Guest_GrinningDeathMoon": 737595789, - "Guest_MoonSkullWight": 1720039490, - "Guest_HuemacSpearWreath": 1522021131, - "Guest_HowlingBanshee": 1340855338, - "Guest_Sea-Booter": 1818491983, - "Guest_DeadRover": 1009273257, - "Guest_CelestianRemnant": 1312268448, - "Guest_Shadow-WebConscript": 1500529411, - "Guest_Shadow-WebMercenary": 623672171, - "Guest_Shadow-WebWraith": 810956416, - "Guest_Shadow-WebHaunt": 500586883, - "Guest_CelestianPartisan": 633346892, - "Guest_CelestianDefender": 482102727, - "Guest_ThraleBonestriker": 1172972733, - "Guest_VorgenSoulbreaker": 1935693246, - "Guest_ServusBloodsword": 1703995647, - "Guest_QueenCalypso": 845803519, - "Guest_BlueBart": 77043390, - "Guest_KarolakNightspinner": 1008737316, - "Guest_ArachtusDuskweb": 1787750209, - "Guest_ZhalarStarcloud": 1453644105, - "Guest_NarallorNightborn": 1963363700, - "Guest_SelwynSkywatcher": 1413136893, - "Guest_OsseusNightreaver": 306827003, - "Guest_IrateBanshee": 865143109, - "Guest_FuriousHowler": 1607252558, - "Guest_CryingSpirit": 1559074820, - "Guest_UndeadDraconian": 169249571, - "Guest_ReanimatedDraconian": 247067807, - "Guest_GhastlySlave": 80127661, - "Guest_BoundSpecter": 369706568, - "Guest_NecroticHaunter": 1714841563, - "Guest_LoathsomeCreeper": 1087245229, - "Guest_FleshrotRetriever": 1925148031, - "Guest_BarbarianSpirit": 2112552732, - "Guest_BeghastionCrowcaller": 586628832, - "Guest_BeghastionFieldburner": 1650751959, - "Guest_BoneWarrior": 76802026, - "Guest_FleshlessSentry": 708431820, - "Guest_PirateRavager": 945157059, - "Guest_RottenScallywag": 974666855, - "Guest_ArmoredBonewalker": 1444568072, - "Guest_UndeadWizard": 1622435563, - "Guest_SoulSearcher": 2094392941, - "Guest_DecayingBlackguard": 412324062, - "Guest_FoulReaper": 919877614, - "Guest_NightShadow": 1675932226, - "Guest_MotleyCrew": 653779218, - "Guest_OrinGrimcaster": 472649066, - "Guest_GhostofSylviaDrake": 218332449, - "Guest_VikaMarkmaker": 1145181168, - "Guest_VasekAshweaver": 1001434369, - "Guest_FireWraith": 1027720368, - "Guest_HungrySoul": 1722435576, - "Guest_FrostBones": 456145606, - "Guest_SnowSkull": 835837850, - "Guest_WinterSkull": 1556601065, - "Guest_LothinDoombringer": 860995070, - "Guest_MimirWinterbane": 1111898070, - "Guest_KulgrimSoulsunder": 278037985, - "Guest_HitojiniDeathcaster": 1144499043, - "Guest_GaikotsuSkeleton": 1113949902, - "Guest_PhantomAce": 1917639347, - "Guest_PhantomGlider": 849918336, - "Guest_Krokomummy": 857773886, - "Guest_NiriniAncientGuard": 359313880, - "Guest_NiriniFireSpirit": 1863811476, - "Guest_VaultHaunter": 197723476, - "Guest_VigilantDefender": 171276829, - "Guest_WanderingAhnicSpirit": 1702865088, - "Guest_ForgottenDjeseritSoul": 1170568256, - "Guest_KaranahnDeathfeeder": 1612857711, - "Guest_ShamblingAhnic": 1579129677, - "Guest_RisenDjeserit": 287855500, - "Guest_KaranahnMortifier": 874288111, - "Guest_DjeseritDweller": 2058423665, - "Guest_AhnicStrider": 1776992302, - "Guest_GuardianoftheFang": 1816795524, - "Guest_DefenderoftheFang": 354353604, - "Guest_ProtectoroftheFang": 1290191037, - "Guest_SouloftheCharmed": 422890577, - "Guest_KaranahnKeeper": 77581557, - "Guest_NiriniIntimidator": 677205957, - "Guest_CondemnedSoldier": 449152244, - "Guest_NimahtheWicked": 1298248873, - "Guest_AkoriNirini": 1123159753, - "Guest_SoulScavenger": 892852198, - "Guest_KeeperoftheFang": 1676773499, - "Guest_ItennuSokkwi": 699159408, - "Guest_Tempestra": 334938435, - "Guest_QueenIrisiDjeserit": 1861434100, - "Guest_TheBonekeeper": 1302503449, - "Guest_CryptScavenger": 1893795791, - "Guest_Soulsapper": 1699756010, - "Guest_KingUroAhnic": 1788825731, - "Guest_KingShemetDjeserit": 1350067043, - "Guest_UnholyWraith": 1871146013, - "Guest_PikeSpiritcrusher": 498715531, - "Guest_SpellwritScreamer": 801626733, - "Guest_SpellwritRonin": 1671439174, - "Guest_Shrieker": 805966229, - "Guest_GravePhantom": 731622936, - "Guest_NightmareSpirit": 230709057, - "Guest_VengefulCreeper": 1100197884, - "Guest_TombRoamer": 1277825068, - "Guest_ShieldSkeleton": 1634270152, - "Guest_AgonyWraith": 30384496, - "Guest_IcyGhost": 768353592, - "Guest_Half-wittedSkeleton": 647996362, - "Guest_LazyHenchman": 1329554426, - "Guest_TiredFighter": 210248632, - "Guest_Screecher": 469007005, - "Guest_SeethingWraith": 664913100, - "Guest_ColdConfusion": 1304943934, - "Guest_OssuaryConscript": 1017667150, - "Guest_Ghulture": 1330558655, - "Guest_BodyGuard": 1048581801, - "Guest_SpectralGuardian": 422805602, - "Guest_VaultConscript": 1388398065, - "Guest_FootPatrol": 1692393321, - "Guest_ArmedGuard": 2045920536, - "Guest_Chilly": 1764665905, - "Guest_Achey": 973370519, - "Guest_Sneezy": 1769440773, - "Guest_Cough": 1170200073, - "Guest_Shadowbones": 1316133167, - "Guest_ForgottenConscript": 1466348281, - "Guest_BarracksGuardian": 236603440, - "Guest_CryptConscript": 314755436, - "Guest_DurvishSeeker": 1825622267, - "Guest_MedicineMode": 167015574, - "Guest_Myriarch2": 593881680, - "Guest_Myriarch3": 593881616, - "Guest_MyriarchEphialtes": 773531895, - "Guest_MotherGhulture": 1585201915, - "Guest_CaptainCosrow": 727107332, - "Guest_VizierRafaj": 214040637, - "Guest_DarkmoorSerf": 1522169114, - "Guest_DarkmoorSquire": 1822567109, - "Guest_ScarletWampyr": 1683954247, - "Guest_DraconianRevenant": 741497298, - "Guest_DraconianEidolon": 107733297, - "Guest_AnguishedWraith": 1078602022, - "Guest_DraconianPyromancer": 729577007, - "Guest_DraconianThaumaturge": 189734361, - "Guest_DraconianDiviner": 472633746, - "Guest_DraconianConjurer": 1824962835, - "Guest_DraconianTheurgist": 1828628416, - "Guest_DraconianNecromancer": 175364324, - "Guest_DraconianSorcerer": 1262893339, - "Guest_SirBlackwater": 366308464, - "Guest_AkhtangWormCrawl": 1589032404, - "Guest_SpiritofDarkmoor": 579455915, - "Guest_ShanevonShane": 2096517522, - "Guest_YevgenyNightCreeper": 1535282881, - "Guest_MalistairetheUndying": 824508513, - "Guest_Bunferatu": 1015806005, - "Guest_CountBelaBlackSleep": 761647679, - "Guest_DeathSoldier": 1715141574, - "Guest_SorrowWhisperer": 556532003, - "Guest_GriefSpectre": 1425488559, - "Guest_HowlingShade": 631460247, - "Guest_WalkingDead": 318527090, - "Guest_Akuji": 977635799, - "Guest_TorturedKakedaSoul": 1716874833, - "Guest_KakedaSpiritSlave": 1814699344, - "Guest_DishonoredSamoorai": 320085744, - "Guest_CursedRonin": 1204095686, - "Guest_TomugawatheEvil": 166125424, - "Guest_OyotomitheDefiler": 1672714483, - "Guest_Fushiko": 801492770, - "Guest_BrokenLandGuardian": 294671991, - "Guest_ShatteredSkyGuardian": 746681463, - "Guest_SunderedSeamGuardian": 1439618652, - "Guest_BrokenLandSpirit": 860105895, - "Guest_ShatteredSkySpirit": 2104112380, - "Guest_SunderedSeamSpirit": 69572311, - "Guest_LostSoul": 204361577, - "Guest_RottingFodder": 308249734, - "Guest_HauntedMinion": 689597338, - "Guest_FieldGuard": 1175228991, - "Guest_SkeletalWarrior": 778393993, - "Guest_SkeletalPirate": 1476730220, - "Guest_WanderingSpecter": 126188449, - "Guest_LivingScarecrow": 1442943145, - "Guest_FrostPhantom": 1809776664, - "Guest_FireShrieker": 173332719, - "Guest_CryptCrawler": 2118799272, - "Guest_ViridianSpecter": 383149977, - "Guest_ArgentClatterer": 525414714, - "Guest_SwimmingSpecter": 1494025094, - "Guest_ScarletScreamer": 1689589811, - "Guest_BoneDigger": 1351421123, - "Guest_HowlingGhost": 664019391, - "Guest_SkeletalSoldier": 750463116, - "Guest_MaidenofHate": 444442868, - "Guest_SkeletalRetainer": 1409032775, - "Guest_SoulHunter": 1900267551, - "Guest_MidnightShuffler": 1991052065, - "Guest_PlaguedSoul": 419071561, - "Guest_HauntingBanshee": 345837052, - "Guest_SimontheSayer": 1352807820, - "Guest_TheHarvestLord": 1923575206, - "Guest_LadyBlackhope": 1403431623, - "Guest_SergeantSkullsplitter": 898737831, - "Guest_Foulgaze": 2063419769, - "Guest_Wormguts": 788697519, - "Guest_Rattlebones": 125602919, - "Guest_Paulson": 1112716921, - "Guest_Grubb": 1167554274, - "Guest_Norton": 581021964, - "Guest_NightStalker": 1447653309, - "Guest_AddereTimeo": 1491420030, - "Guest_TheReaper": 1526369733, - "Guest_AngrusHollowsoul": 1427862805, - "Guest_OrrickNightglider": 951078615, - "Guest_SteelSentinel": 885250894, - "Guest_Shadow-WebSoldier": 2014925398, - "Guest_LostCeleste": 1725301830, - "Guest_CapnNigelSkullcrack": 1665439970, - "Guest_HaulAwayJoe": 1075985331, - "Guest_OldMaui": 15300840, - "Guest_LordAgue": 140791419, - "Guest_MelweenaSmite": 432188189, - "Guest_HalloweenTrickster": 2043736417, - "Guest_PumpkinHead": 1098332105, - "Guest_BaronMordecai": 817370918, - "Guest_KaimaniteMummy": 1332671420, - "Guest_VeggieRevanant": 928504192, - "Guest_BloodBat": 76467389, - "Guest_DeadBeets": 157829578, - "Guest_Desparagus": 1130644076, - "Guest_MeanestFly-Trap": 1652898868, - "Guest_Nosferabbit": 1021159436, - "Guest_ThrallofSothmekhet": 330780177, - "Guest_VileApparition": 426627869, - "Guest_SoulServant": 1183110886, - "Guest_SoulKeeper": 917518313, - "Guest_AdmiralBontau": 2032168402, - "Guest_DeathWhisperer": 3814952, - "Mount_RollerBlades": 111369373, - "Guest_BaneWyrm": 147033576, - "Guest_BlackDragon": 939469656, - "Guest_DragonSpawn": 1829803517, - "Guest_Fire-SpitterSpawn": 616624489, - "Guest_CaoranachtheFire-Spitter": 323513000, - "Guest_Jabberwock": 1552492834, - "Guest_CatalantheLightningLizard": 1155778705, - "Guest_WhiteDragon": 2009449331, - "Guest_WinterWyrm": 478925069, - "Guest_WyrmStatue": 2119216210, - "Guest_AlgidWyrm": 1309546482, - "Guest_BruleeSucre": 390936202, - "Guest_HebitohoWyrmling": 1682026810, - "Guest_Shadowwock": 505539184, - "Guest_EirikurAxebreaker": 1361453552, - "Guest_WarWyrm": 1124740742, - "Guest_StrayFireflier": 610979811, - "Guest_BurningFlamewing": 2041225130, - "Guest_FeralLavaling": 371483057, - "Guest_SplinterWing": 923421333, - "Guest_ChanticoBlueAir": 1572441903, - "Guest_CopperWingGuard": 302783602, - "Guest_ObsidianBeak": 2016227452, - "Guest_CaquixNineShadows": 2070101060, - "Guest_LustrousTlalocan": 1201030473, - "Guest_SeedThief": 263211181, - "Guest_PopZotzUnluckyDay": 1416773489, - "Guest_NezathePoet": 1905861376, - "Guest_MazenStingerBee": 1642023393, - "Guest_ImperialJusticePayne": 1285679745, - "Guest_AssistantWardenPorfiry": 22099059, - "Guest_MarshalKamensky": 524669730, - "Guest_WardenVissarovich": 882556823, - "Guest_GulagGuard": 100744159, - "Guest_CaptainKravchuck": 690830770, - "Guest_ImperialGuard": 346803640, - "Guest_IronPaw": 1797329688, - "Guest_TundarianEnforcer": 134256836, - "Guest_Ivan": 996220221, - "Guest_ColonelOrlov": 1381254189, - "Guest_IronPawIntakeCaptain": 2099184835, - "Guest_SolitaryWarden": 1503529566, - "Guest_CaptainZubkov": 793725366, - "Guest_SergeantBobrik": 722182485, - "Guest_WailingWraith": 946976407, - "EggChick": 1452316301, - "BunnyMallow": 518233330, - "Guest_ThunderHornZombie": 1007920040, - "Guest_SmokingMirrorZombie": 340971759, - "Guest_ShamblingZombie": 1920485146, - "Guest_MoonSkullZombie": 809249764, - "Guest_DeathlessStormHorn": 812397213, - "Guest_MozarTurtleHunter": 561749043, - "Guest_GuillermoShatterer": 499565054, - "Guest_XiuhcoatlBarbedTooth": 1719245305, - "Guest_AzcalFireAnt": 1281366337, - "Guest_TlotzinMoonThief": 407285761, - "Guest_PocaCruelStar": 1117353085, - "Guest_ThunderHornGhoul": 597878999, - "Guest_TezomocStoneSinger": 733511940, - "Guest_EzhuaBadTaste": 632779219, - "Guest_UacalxochitlBloodEye": 1614856226, - "Guest_WanadiBlackSky": 349829749, - "Guest_ElMarrow": 483880636, - "Guest_GrimCalaca": 1534029144, - "Guest_XipeFlayedOne": 1343577398, - "Guest_MotecumaDeathMask": 1782393717, - "Guest_EkeChuah": 13416770, - "Guest_AnacaonaBlackSnake": 1543344897, - "Guest_SmokingMirrorWight": 776452983, - "Guest_Tolkemec": 217428080, - "Mount_Fox": 77199428, - "PP_OwlProtege": 268847192, - "Mount_SharkSki": 331374103, - "PP_Dolphin": 1662291612, - "Mount_CastSymbol_D": 1134428045, - "Mount_CastSymbol_E": 1136525197, - "Mount_CastSymbol_F": 1138622349, - "Mount_CastSymbol_G": 1140719501, - "Mount_CastSymbol_A": 1128136589, - "Mount_CastSymbol_B": 1130233741, - "Mount_CastSymbol_C": 1132330893, - "Guest_LionSpectralGuardian": 1791543691, - "Guest_KillmareSpiritwalker": 1818928165, - "Guest_ZebraSpectralGuardian": 815933596, - "Guest_GorillaSpectralGuardian": 1635182119, - "Guest_IklawGhostWarrior": 373465545, - "Guest_BwanaShadowriver": 1307628747, - "Guest_ElephantSpectralGuardian": 1579402208, - "Guest_ZangaZebu": 1218173119, - "Guest_GrumishGreataxe": 486953385, - "PP_GlowFairy_A": 2028856748, - "Guest_RestlessSoldier": 1142701763, - "Guest_WanderingWizard": 209518514, - "Guest_ColonelIvanenko": 399169035, - "Guest_DetollitheDestroyer": 655767295, - "Guest_Jawniak": 1791298433, - "Guest_Tajniak": 356182394, - "Guest_Ygor": 996316081, - "Guest_KyaniteLancer": 2136703656, - "Guest_VestaShadowmark": 1846747836, - "Guest_ZoraSteelwielder": 1186470644, - "Guest_AndorBristleback": 1949884743, - "Guest_GalliumPaladin": 1812340868, - "Guest_GalliumFootman": 1295203112, - "Guest_GalliumShardtrooper": 1210699836, - "Guest_GalliumJuggernaut": 3527584, - "Guest_VladimirDarkflame": 1575322237, - "Guest_KyaniteLieutenant": 561528977, - "Guest_DrusillaMorningbane": 155837810, - "Guest_KyaniteValkyrie": 53242136, - "Transformation_20Q_SherlockBones": 1112674320, - "Guest_DevoraShadowcrown": 1813459117, - "Guest_YoualaNightDrinker": 881289828, - "Guest_Pendragon": 715669945, - "Guest_CelestianRevenant": 515730327, - "Guest_SoullessServant": 1505662730, - "Guest_SpiritServant": 104517373, - "Guest_SoulSerf": 1188214406, - "Guest_ServileSoul": 871844607, - "Guest_SkeletalCorsair": 239414410, - "Guest_RottedFodder": 1301186193, - "Guest_ScarletScreecher": 600457915, - "PP_FrankBunnyBride_A": 974707030, - "Guest_BastillaGravewynd": 2100015237, - "Guest_VilaraMoonwraith": 2067986693, - "Guest_YngvarSharptooth": 1783361972, - "Guest_TroubledWarrior": 1569033392, - "Guest_VeggieRevanant2": 928503904, - "Guest_VeggieRevanant3": 928503888, - "Guest_VeggieRevanant4": 928503872, - "Guest_VeggieRevanant5": 928503856, - "Guest_AncientQhatWarrior": 1564521104, - "Guest_EmperorPaleolo": 2079384347, - "Guest_SpiritofIntolerance": 1627658048, - "Guest_SpiritofInquiry": 1320544891, - "Guest_FirstGuardian": 1982227776, - "Guest_FallenMerc": 225926286, - "Guest_NightShadow2": 1638183490, - "Guest_NightShadow3": 1636086338, - "Guest_NightShadow2-2": 1436856907, - "Guest_NightShadow3-2": 1434759755, - "Guest_NightShadow4-2": 1432662603, - "Guest_NightShadow5-2": 1430565451, - "Guest_NightShadow6-2": 1428468299, - "Guest_NightShadow7-2": 1426371147, - "Guest_FirstScythe": 738854032, - "Guest_GreyMantisCaptain": 860186057, - "Guest_GreyMantisHunter": 1239274377, - "Guest_Atlach-Leng": 836136649, - "Guest_PetrovGloomstrider": 2045783873, - "Guest_NauyotolDownIntheHole": 1134251106, - "Guest_SandorSpearcaller": 1351072377, - "Guest_MavraFlamewing": 1477685600, - "Guest_Scaldling": 208751819, - "Guest_WoebegoneWraith": 1166488705, - "Guest_BorisBlackrock": 1365399915, - "Guest_KatiaFirewinter": 521255834, - "Guest_ValerikBrightsword": 1244055782, - "Guest_RurikFlamesoul": 1962726850, - "Guest_IonaPyrelance": 722266491, - "Guest_DarkPoltergeist": 818162178, - "Guest_TheCollector": 1772287612, - "Guest_ViktorSnowcrusher": 1028387381, - "Guest_ValeskaRedwind": 19316351, - "Guest_ScarrikGallowgaunt": 105397333, - "Guest_Neberyx": 1453883041, - "Guest_AsrikWidebelt": 401936422, - "Guest_GothricHonorbound": 750072340, - "Guest_HalfangBristlecrown": 618779562, - "Guest_OsvudFleetpaw": 1023466459, - "PP_PufferFish_A": 1578606029, - "Guest_OzelUnderwaterCat": 1033669302, - "PP_BabyGreenMan_A": 910025246, - "PP_SchoolTurtle_A": 1012620678, - "PP_DarkBalloon_A": 1229308566, - "MT_JetsamCopter": 92127678, - "Mount_4P_DarkClownCar": 420246262, - "MNT_BalloonsBunch": 2000358474, - "Guest_TempleGuardian": 632574316, - "Guest_TemplePhantom": 1701097840, - "Guest_MahonStarsearcher": 1549093341, - "Guest_LostKnight": 858980994, - "Guest_AnguishedWoodman": 174606918, - "Guest_TormentedTreant": 294050331, - "Guest_WildfireTreant": 1902129818, - "Guest_BlightedYaxche": 679097088, - "Guest_Junglethorn": 1734561424, - "Guest_Tangleroot": 2027061721, - "Guest_BlightedFreerooter": 1109803061, - "Guest_Winterbranch": 1170787806, - "Guest_DecayingBogwalker": 1338670789, - "Guest_BrownwoodTormentor": 1655181754, - "Guest_Wildroot": 1839747182, - "Guest_Ironsplinter": 668295157, - "Guest_Frostbranch": 75974631, - "Guest_KyoukonteiTreant": 474446232, - "Guest_BrokenStumps": 414724364, - "Guest_WordlessWoodsmen": 1813881830, - "Guest_DesiccatedTreebeard": 1826942903, - "Guest_ShadowoftheLand": 1612385317, - "Guest_TreeRoot": 1406633546, - "Guest_BefouledWoodwalker": 1517919498, - "Guest_ConfusedForestWarrior": 750805985, - "Guest_CrazedForestSpirit": 1007960507, - "Guest_Oakheart": 1158293719, - "Guest_SnowTreant": 1028620035, - "Guest_Snowbeard": 1997921701, - "Guest_BarkskinTreant": 2143957812, - "Guest_RazorleafTreant": 2133159197, - "Guest_CarrionFlowerMan": 1120698936, - "Guest_Kurokage": 355651925, - "Guest_LacombeStrawHouse": 568809873, - "Guest_BerkshireStickHouse": 1932133405, - "Guest_TamworthBrickHouse": 894027634, - "Guest_RustyTinderSpark": 1237916230, - "Guest_CoraWinterBranch": 1901918989, - "Guest_GrambleGoldRook": 1986988546, - "Guest_PiperStormTree": 1109520133, - "Guest_Hanadzura": 124838500, - "Guest_Kuchisaki": 2084188681, - "Guest_Kaizoku": 807430784, - "Guest_JaxonLastRites": 1653711119, - "Guest_SeijunKiller": 657647155, - "Guest_ZarichiTarakata": 1129212566, - "Guest_BladelessRonin": 1577395797, - "Guest_SanzokuOutlaw": 1682888807, - "Guest_SanzokuBandit": 1766198653, - "Guest_KakedaPainbringer": 1260119278, - "Guest_KakedaStalker": 367458449, - "Guest_KakedaShadow": 1604499626, - "Guest_KakedaSoulcrusher": 1961168112, - "Guest_ImitsuPlaguemaster": 1361539025, - "Guest_ImitsuDefouler": 1299791045, - "Guest_ImitsuPunisher": 234819300, - "Guest_StudentofKhai": 249757647, - "Guest_OtomoBattlemage": 918160114, - "Guest_OtomoCourier": 1373253378, - "Guest_OtomoSupplyRunner": 1580070577, - "Guest_OtomoScout": 1814051082, - "Guest_OtomoWrestler": 1053571230, - "Guest_OtomoFury": 111319603, - "Guest_Hyottoko": 307080225, - "Guest_Usunoki": 1881339626, - "Guest_Kagemoosha": 1842766119, - "Guest_UdoJin-e": 850816224, - "Guest_TakedaKanryu": 536087422, - "Guest_Tamauji": 818613882, - "Guest_Jikiru": 794167355, - "Guest_Nomoonaga": 849534658, - "Guest_Aiuchi": 515942855, - "Guest_Kurogaso": 1426248002, - "Guest_Ideyoshi": 1814038213, - "Guest_Koto": 1151260427, - "Guest_Usegi": 977549586, - "Guest_Kanago": 1644367227, - "Guest_Kyuto": 1168225979, - "Guest_Haru": 2070048389, - "Guest_Ashikata": 1523446928, - "Guest_Katsumori": 1823914597, - "Guest_Hingen": 1567896261, - "Guest_Yakedo": 502298497, - "Guest_Do-Daga": 1239945714, - "Guest_Maito": 979260804, - "Guest_TonkatsuThug": 1758658397, - "Guest_GobbloreanGuard": 1286210991, - "Guest_BabblingMeints": 413418139, - "Guest_PrinceGobblestone": 1813171676, - "Guest_GobblerMuncher": 1517159487, - "Guest_GobblerGorger": 130736772, - "Guest_GobblerScouter": 1509427587, - "Guest_GobblerGlutton": 1912199781, - "Guest_GobblerScavenger": 136586791, - "Guest_BaronGreebly": 1028182200, - "Guest_BaronRotunda": 457132907, - "PP_DeathMimic": 1811942047, - "Guest_GreenMan": 1126663802, - "Guest_ForestGrump": 1602350320, - "Guest_ErvintheBarbarian": 1671762776, - "Guest_RazortuskWarrior": 1109994549, - "Guest_RazortuskBrawler": 732265321, - "Guest_SplithoofRager": 1922134329, - "Guest_TuskedRaider": 1920114147, - "Guest_SviniBeserker": 1146317608, - "Guest_SviniReaver": 216717251, - "Guest_Shattertusk": 1191456730, - "Guest_SplithoofBarbarian": 296671728, - "Guest_Bloodseeker": 2086598239, - "Guest_Scarsnout": 1831766077, - "Guest_MasterTonkatsu": 1783298894, - "Guest_Grisletusk": 657393295, - "Guest_SplithoofBloodguard": 488382274, - "Guest_BristlehideRaider": 237078958, - "Guest_Gullin": 1656401882, - "Guest_ForestNymph": 812055814, - "Guest_SassafrasMan": 1327049788, - "Guest_RandolfSpellshine": 108808620, - "Guest_BleysFlamerender": 434070106, - "Transformation_Khan": 1398327634, - "Transformation_TheBat": 1675113521, - "MNT_DireWolf": 845578449, - "MNT_YuleMule": 1976182058, - "MNT_LightBlades": 829118450, - "MNT_FlyingSquid": 1573132252, - "PP_Globulin": 467801224, - "PP_BeastBaby": 1807874692, - "PP_SaniBot": 670845902, - "Mount_SwarmSand": 1277669407, - "Guest_Nodnarb": 211478288, - "Guest_LordBramble": 1118781162, - "Guest_Yogash": 506264561, - "Guest_Marcio": 499428996, - "Guest_Procyon": 1115376865, - "Guest_Thunderfin": 2029218563, - "Guest_ArkynMoonblade": 1152775206, - "Guest_CreeCurdWright": 1714953095, - "Guest_DeerMouseRevenant": 315064435, - "Guest_ElanaDarksun": 837982094, - "Guest_KingAlricFateSailor": 1934591130, - "Guest_LaughingCalaca": 984492527, - "Guest_WraithKnight": 620484548, - "Guest_FieryEchoofApep": 484636593, - "Guest_FrostyEchoofApep": 171933154, - "Guest_FalseEchoofApep": 479387377, - "Guest_ChargedEchoofApep": 1229406800, - "Guest_ShrowdengersQhat": 101563303, - "Guest_Scrollkeeper": 643219293, - "Guest_TerrorHound": 753341570, - "Guest_CondemnedMander": 445370758, - "Mnt_SnowStorm": 1491572670, - "Mount_ChimneySweeper": 378571534, - "MNT_PineappleCandyCane": 1630795796, - "Guest_TyphonDustwind": 740849673, - "MNT_StickHorse": 216654744, - "MimicTemplate": 1461219184, - "MNT_Ball_N_Chain": 289720920, - "PP_PeaceDove_A": 1785119671, - "Mount_Gyrocycle": 1495008048, - "PP_BattleMageDragon_A": 1864696711, - "MNT_BattleBeast": 1304449286, - "MNT_SmokeTrails": 387873030, - "Mount_FriendshipHare": 677127330, - "MNT_ButterflySwarm": 383602683, - "PP_EggChick_B": 1959154042, - "MNT_Unicorn": 562210585, - "PP_StuffedUnicorn": 1731641773, - "MNT_ParadeTruck": 2026348978, - "MNT_ParadeTruckXmas": 1017864627, - "MNT_AutumnLeafSwarm": 1540002279, - "PP_GingerbreadMan": 1796172229, - "PP_DecadeDragon": 1819398630, - "MNT_StageShip": 829852992, - "PP_DramaLlama": 255896529, - "PP_HallMinotaur_A": 1492017563, - "Guest_MacDeath": 1526226705, - "Guest_MacDeathUnderstudy": 1731752647, - "Guest_MacLifeUnderstudy": 257466641, - "Guest_MacStormUnderstudy": 8295117, - "MNT_Pantera": 1135198, - "MNT_StagLight": 1908778048, - "MNT_GiantSpider": 1247185021, - "MNT_StagEvil": 872303931, - "PP_BaskHound": 1093866594, - "PP_Marionette": 1688299938, - "PP_Marionette_B": 1688297824, - "Guest_Izft": 996301405, - "Guest_SapotisMinion": 1625665891, - "Guest_CrazedSlave": 1473233468, - "Guest_CharmedSlave": 803043667, - "Guest_EnsorcelledSlave": 40920285, - "Guest_HallServant": 2038116460, - "Guest_SiathePerceiver": 1235571913, - "Guest_Kiwu": 1151177787, - "Guest_NightImp": 1051843424, - "Guest_EvilTrickster": 1035477123, - "Guest_DeepWoodsImp": 1502444054, - "Guest_ForestPest": 802235713, - "Guest_TaintedForestImp": 1030343985, - "Guest_Youkai": 518367729, - "Guest_CarthaginianElephantWarrior": 776293919, - "Guest_IdrisBeast-Taker": 106759521, - "Guest_MikaSkarka": 237956516, - "Guest_Belloq": 757247833, - "Guest_GurtokPiercer": 549466122, - "Guest_GurtokFirebender": 817966523, - "Guest_GurtokDemon": 544070162, - "Guest_GeneralFiretusk": 2073037770, - "Guest_GurtokBarrierDemon": 44657563, - "Guest_BlacktuskShaman": 1009070925, - "Guest_FireDemon": 158367196, - "Guest_DeathOni": 1916642000, - "Guest_JadeOni": 1289517185, - "Guest_PlagueOni": 1464586443, - "Guest_WarOni": 1630196094, - "Guest_BrokenLandMammoth": 1587008312, - "Guest_SunderedSeamMammoth": 1272698721, - "Guest_BullyMammoth": 170705927, - "Guest_Bullhemoth": 146998717, - "Guest_Kogasha": 1909654543, - "Guest_MusuthBerserker": 1741298129, - "Guest_BlackTuskCultist": 1771575961, - "Guest_AksilBlacktrunk": 1253596409, - "Guest_LongdreamerShaman": 1521283133, - "Guest_MuratGreyeyes": 1296814314, - "Guest_ElephantSoldier": 1443670145, - "Guest_DarajaniGuard": 1597288495, - "Guest_Loremaster": 1792470809, - "Guest_Pork": 2069999347, - "Guest_Beans": 97706585, - "MNT_Ox": 1292937747, - "PP_PropellerSquirrel": 1657443894, - "Guest_RasikPridefall": 97921485, - "Guest_AmedrasLightstep": 1818417025, - "MNT_SmokeTrails_Balance": 1358150715, - "MNT_SmokeTrails_Fire": 702971609, - "MNT_SmokeTrails_Ice": 190218501, - "MNT_SmokeTrails_Life": 2045542105, - "MNT_SmokeTrails_Myth": 1276281121, - "MNT_SmokeTrails_Storm": 564954622, - "Guest_Bellosh": 1407013027, - "Guest_AcampiReedfist": 2076527733, - "Guest_AgnettaBroadblade": 14864960, - "Guest_FrostheartRaider": 1574787221, - "Guest_JordaSwordbearer": 1627071850, - "Guest_KasaiBaku": 1153107369, - "Guest_ZoraimeiHelephant": 1002482606, - "Guest_ConscriptedMander": 43811125, - "Firecat_Decade": 409516955, - "MNT_BatGlider": 2086258491, - "Transformation_PlayerHomework": 673389670, - "Transformation_PlayerAttendance": 422287307, - "Transformation_PlayerLecture": 2035625874, - "Transformation_PlayerPopQuiz": 483367038, - "MNT_GingerbreadHorse": 1369242781, - "MNT_NimbariChariot": 1251740392, - "PP_NimbariDog": 1235126828, - "Transformation_PlayerGrandma": 1128332272, - "Transformation_PlayerScionA": 33862367, - "PP_Mushroom": 1568942158, - "MNT_Scooter": 1148167046, - "MNT_Scooter_B": 2079302532, - "MNT_Scooter_C": 1810867076, - "MNT_Scooter_D": 468689796, - "MNT_IceCycle": 415797788, - "Transformation_PlayerScionA02": 33921759, - "Guest_FearoftheFuture": 947210229, - "Guest_FearofGremlins": 405857384, - "Guest_RootGuardian": 922940845, - "Guest_VineThrasher": 172546427, - "Guest_BlightWalker": 1438155154, - "Guest_BriarScourge": 615681851, - "Guest_DreamJabberwock": 907754098, - "Guest_DreamBelloq": 990352002, - "Guest_Voltergeist": 1558128068, - "Guest_SpecialBranch": 1927849418, - "Guest_MutantBriar": 805892802, - "Guest_FeralBriar": 883790223, - "Guest_MaizeMonster": 688905764, - "Guest_DreamShadowwock": 1432458248, - "Mount_Heartboard": 1421972759, - "PP_ChocoBunny": 324797859, - "Mount-PogoFlower": 906659501, - "MNT_AethyrCloud": 1586061078, - "MNT_Fangle": 7846854, - "Guest_StarfallSpider": 1177620831, - "Guest_AshSpider": 1588502553, - "Guest_CorruptedWeaver": 38937211, - "Guest_CrystalCrawler": 1197980149, - "Guest_ShimmerWidow": 1300740128, - "Guest_FacetedSpikespinner": 1939719331, - "Guest_CrystallineQueen": 1999282256, - "Guest_AncientCrystalweaver": 1409608801, - "Guest_FangtoothLavaspinner": 1538042104, - "Guest_VenomousHeatseeker": 1234682482, - "Guest_FireweaveRockbiter": 300743778, - "Guest_MonkeySpider": 754090007, - "Guest_CryptSpider": 1545405304, - "Guest_CommonHouseSpider": 613486002, - "Guest_ArachnaMagnaMagus": 825817937, - "Guest_ArachnaSoldier": 270978709, - "Guest_Gnissa": 1699826178, - "Guest_WebwoodScuttler": 1728611075, - "Guest_SandSpider": 61789007, - "Guest_WebwoodCreeper": 1013382584, - "Guest_Skathi": 1631429165, - "Guest_ArchmagusLorcan": 321146960, - "Guest_CrawleroftheMist": 2076696304, - "Guest_PaintedSpider": 1482115552, - "Guest_GiantSpider": 1545526191, - "Guest_CaveCrawler": 2101587667, - "Guest_RattleCatcher": 1472707326, - "Guest_TrapdoorSpider": 1321643694, - "Guest_RockClinger": 1304266411, - "Guest_InquisitorXimenez": 1053483090, - "Guest_ElderMagus": 1017836836, - "Guest_WardenBenthamic": 18807199, - "Guest_SpiderArchmagus": 387645558, - "Guest_SpiderAdept": 2094873407, - "Guest_InterrogatorRentenius": 1245984179, - "Guest_WarpedWeaver": 495882677, - "Guest_ArachnaSkinner": 281864085, - "Guest_SkinnerConscript": 2028526453, - "Guest_ArachnaGladiator": 2492046, - "Guest_LorcanInitiate": 353311753, - "Guest_Serket": 1871335773, - "Guest_IceWeaver": 2063216026, - "Guest_SpiritSpinner": 525666327, - "Guest_MysteriousCrawler": 218352756, - "Guest_BlackWidow": 1909331619, - "Guest_BrownRecluse": 1146386275, - "Guest_Creeper": 1197442790, - "Guest_GearSpinner": 67020478, - "Guest_Clinker": 1194519062, - "Guest_Clanker": 1194517014, - "Guest_GrandfatherSpider": 1330981335, - "Guest_Spiderling": 1400274461, - "Guest_ManekiWebWalker": 888348786, - "Guest_KoganiDeathCrawler": 276010604, - "Guest_CheliceranCrawler": 1169176517, - "Guest_ArachniteCreeper": 1850534774, - "Guest_ChelicaranStalker": 2057291848, - "Guest_HornedMonkeySpider": 1301514577, - "Guest_GreyOgreSpider": 1533774471, - "Guest_StarburstSpider": 698029451, - "Guest_PaintedCaveMonster": 601315479, - "Guest_RubbleRouser": 220785666, - "Guest_EarthElemental": 435260049, - "Guest_SharpshardWarrior": 1403237237, - "Guest_Firevein": 1220046430, - "Guest_Blackblade": 458130537, - "Guest_VengefulFireheart": 563205004, - "Guest_FirerockStomper": 608552855, - "Guest_BlackrockGuardian": 1663799582, - "Guest_ConfusedSentry": 24655510, - "Guest_SilverSentinel": 1090673683, - "Guest_SilverServant": 84560693, - "Guest_GiantHomunculus": 456098557, - "Guest_PropertyMaster": 229101764, - "Guest_VaultProtector": 185568207, - "Guest_PlatedDefender": 79324363, - "Guest_Avalanche": 761613547, - "Guest_RockReaver": 919912933, - "Guest_Frostmantle": 856308090, - "Guest_GlacierWalker": 131215932, - "Guest_SandBehemoth": 272513357, - "Guest_RunedAnnihilator": 121339936, - "Guest_RunedDevestator": 1611071181, - "Guest_RunedGuardian": 1986312667, - "Guest_CanyonRager": 1123038266, - "Guest_RubbleReaver": 220774678, - "Guest_Boulderbone": 122279242, - "Guest_Nali": 77467516, - "Guest_Gnar": 1151164930, - "Guest_GlacialAvenger": 1181253632, - "Guest_SokkwiKeymaster": 190919624, - "Guest_SandsofTime": 34920273, - "Guest_BladeGolem": 435561523, - "Guest_FrostColossus": 1564686403, - "Guest_IceColossus": 335477257, - "Guest_PollutedEarthWalker": 86045387, - "Guest_CorruptedEarthSpirit": 1135891559, - "Guest_Stonebreaker": 1317905436, - "Guest_StoneElemental": 1715022018, - "Guest_VolcanisGolem": 1904918929, - "Guest_WaterElemental": 1717850987, - "Guest_AshenDeathMonkeySpider": 35356665, - "Guest_DeathMonkeySpider": 1525508507, - "Guest_MotherMonkeySpider": 110317392, - "Guest_DoomMonkey": 1135105500, - "Guest_DreamMorganthe": 907599965, - "Guest_DragonBeetle": 1974635734, - "Guest_SandWalker": 1530843985, - "MNT_PandaMama": 916371162, - "PP_BabyPandas": 778536285, - "PP_FrogPrince": 729975205, - "MNT_PumpkinCarriage": 183672737, - "Mount_Gobbler_B": 1193388729, - "PP_Hamster": 1578040708, - "Guest_Steeleton": 657429968, - "Guest_GoldenWyrm": 311022393, - "MNT_Roc": 1564431869, - "PP_BabyGriffin": 1913686406, - "Transformation_ShadowDPSMob": 936133896, - "Transformation_ShadowTankMob": 305660992, - "Transformation_ShadowHealMob": 356596800, - "Guest_SpiritofIgnorance": 1577360126, - "Guest_FecklessSoul": 519648315, - "Guest_BurnedOutSoul": 312181646, - "Guest_BenightedRevenant": 2131956962, - "Guest_TombLurker": 1901203489, - "Guest_DesertGolem": 543642682, - "Guest_KumoOni": 215822625, - "Guest_SpellwritStalker": 161772776, - "PP_Sun": 1723237840, - "Guest_Leadite": 4480416, - "Mount_FestiveFox": 2125832348, - "PP_FenrisWolf": 1601784680, - "PP_SchoolPiggle": 109782407, - "PP_FenrisWolf_Red": 1597992854, - "PP_FenrisWolf_Teal": 1455058454, - "PP_FenrisWolf_White": 1102186199, - "Transformation_NinjaPig_Fire": 984575055, - "Transformation_BG_RatThief_Myth": 1191155131, - "Transformation_BG_RatThief_Storm": 675891897, - "MNT_Umbrella": 955683437, - "Transformation_BG_Elf_Ice": 1209681129, - "Transformation_BG_Fairy_DarkMinion_Balance": 33521202, - "Transformation_BG_Cyclops_Death": 876023972, - "Transformation_BG_Minotuar_Fire": 1118476387, - "Transformation_BG_WolfWarrior_Storm": 2075594475, - "Transformation_BG_WolfWarrior_Balance": 746159992, - "Transformation_BG_Draconian_Myth": 903606820, - "Transformation_BG_Draconian_Life": 1501291044, - "Transformation_BG_Colossus_Life": 1320377666, - "MNT_DolphinChariot": 102982520, - "MNT_EvilWagon": 685457563, - "MNT_FlyingDutchman": 1176206544, - "PP_SeaHorse": 2024322494, - "PP_EvilTeddy": 1159020925, - "PP_ZombieParrot": 384805107, - "Transformation_BG_Ice_Colossus": 299613211, - "MNT_CarrierBat": 7323333, - "Transformation_BG_Minotaur_MythTempalte": 430330904, - "PP_FeatheredTabby": 452526748, - "Transformation_Detritus01": 1335763402, - "Guest_Metallossus": 335457082, - "MNT_SantaJaws": 464410203, - "MNT_BattleBadger": 532858222, - "Transformation_Shedder01": 2069145892, - "PP_NatureSpirit": 373176286, - "Transformation_Devourer01": 1004421540, - "Guest_TheDevourer": 1591187996, - "Guest_Treeminder": 1093207850, - "Guest_RenegadeDruid": 2087982292, - "Guest_FractalTreeminder": 927174548, - "Guest_UnsettledTreeminder": 486164163, - "Guest_DragonspyreCrusader": 247317280, - "Guest_YoungGreggor": 66068670, - "Guest_GeneralGreyflame": 499924835, - "Guest_OldGreggor": 391726170, - "Guest_PrinceViggor": 853556298, - "Guest_DragonspyreVanguard": 693851565, - "Guest_SilasConviction": 177362659, - "Guest_SilasWeariness": 893431021, - "Guest_SilasRage": 1288904439, - "Guest_SilasDoubt": 1479426285, - "Guest_Lorekeeper": 147779344, - "Guest_FelixPhotomongerIII": 68387506, - "Guest_WarHavox": 1634324022, - "Guest_Mis-assembledSkeleton": 221832082, - "Guest_TreeminderGhost": 200408510, - "Guest_ViggorsDrake": 340449521, - "Guest_BlueNinjaPig": 938539327, - "Guest_RedNinjaPig": 2097962021, - "Guest_OrangeNinjaPig": 625058258, - "Guest_PurpleNinjaPig": 445746449, - "Guest_RitualColossus": 844563319, - "Guest_TinyDragon": 1123127688, - "Guest_RitualSpider": 429827552, - "Guest_RitualDraconian": 837510372, - "Guest_CC_Druid_Warrior_C_01": 55314616, - "Guest_CC_Druid_Wizard_A_01": 1046261169, - "Guest_CC_Druid_Wizard_B_01": 1046244785, - "Guest_CC_Druid_Warrior_A_01": 56363192, - "MNT_Toboggan": 995356805, - "MNT_2P_WickerTreant-001": 2065440944, - "PP_Ratatoskr": 1003497600, - "PP_Trash": 1195047012, - "Guest_CC_Druid_Wizard_D_01": 1046343089, - "MNT_Sunflower": 721091531, - "MNT_Whoopee": 1383311238, - "MNT_Warthog": 8060761, - "PP_ShamRock": 943893325, - "PP_LeapingLeprechaun": 132882517, - "PP_LionCubs": 465759803, - "PP_Tanuki": 670387843, - "MNT_Crane": 433122675, - "MNT_Krokosphinx": 739938754, - "Transformation_BG_Fairy_Life": 1897480818, - "Transformation_LiceDeepSpawnA": 244795720, - "Piggle_Alien": 1761605655, - "PP_JeweledScarab": 620544607, - "Guest_KR_Nymph_DrkMage_D50": 1248526054, - "Guest_KR_Nymph_DrkMage_C50": 1246953190, - "Guest_KR_Nymph_DrkMage_B50": 1247477478, - "Guest_KR_Nymph_DrkMage_A50": 1245904614, - "Guest_EM_Spider_Ash_01": 185724938, - "UFO": 47349, - "PP_Kit10": 326796620, - "PP_Lumi_Tulip": 84119585, - "PP_Lumi_Fern": 117015078, - "PP_Lumi_Violet": 1468797578, - "PP_Lumi_Sunny": 1769236703, - "PP_Lumi_Daisy": 1743454175, - "MNT_CelestianMech": 1238076872, - "MNT_Brontosaurus": 402157167, - "Guest_HG_AKT_Krok_Cyber_A_Balance_25": 1367985604, - "Guest_HG_AKT_Krok_Cyber_A_Balance_50": 1368084932, - "Guest_HG_AKT_Krok_Cyber_A_Balance_75": 1367988676, - "Guest_HG_AKT_Krok_Cyber_A_Balance_100": 1351303620, - "Guest_HG_AKT_Krok_Cyber_A_Balance_130": 1351270852, - "Guest_HG_AKT_Krok_Cyber_A_Fire_25": 976558490, - "Guest_HG_AKT_Krok_Cyber_A_Fire_50": 37034397, - "Guest_HG_AKT_Krok_Cyber_A_Fire_75": 305469850, - "Guest_HG_AKT_Krok_Cyber_A_Fire_100": 573905821, - "Guest_HG_AKT_Krok_Cyber_A_Fire_130": 573905824, - "Guest_HG_AKT_Krok_Cyber_A_Ice_25": 159411377, - "Guest_HG_AKT_Krok_Cyber_A_Ice_50": 541093041, - "Guest_HG_AKT_Krok_Cyber_A_Ice_75": 146828465, - "Guest_HG_AKT_Krok_Cyber_A_Ice_100": 557870241, - "Guest_HG_AKT_Krok_Cyber_A_Ice_130": 960523425, - "Guest_HG_AKT_Krok_Cyber_A_Myth_25": 976187830, - "Guest_HG_AKT_Krok_Cyber_A_Myth_50": 36663729, - "Guest_HG_AKT_Krok_Cyber_A_Myth_75": 305099190, - "Guest_HG_AKT_Krok_Cyber_A_Myth_100": 573535153, - "Guest_HG_AKT_Krok_Cyber_A_Myth_130": 573535156, - "Guest_CL-GolemButler-R9": 780077559, - "Guest_CL-GolemDigger-Boss-R10": 562020288, - "Guest_CL-GolemDigger-R9": 789375095, - "Guest_CL-GolemDigger-Rank8MythBoss-R10": 930527857, - "Guest_CL-GolemWorker-R9-1": 1072815287, - "Guest_CL-FishbotBrown-R9-1": 2006155417, - "Guest_CL-FishbotBrown-R9-2": 395542681, - "Guest_CL-FishbotGold-Boss-R10": 611881707, - "Guest_CL-FishbotGold-R9": 705414492, - "Guest_CL-FishbotYellow-Boss-R10": 23145662, - "Guest_CL-Protector-Black-Boss-R10-2": 679228793, - "Guest_CL-Protector-Gold-R10": 1909636609, - "Guest_CL-Protector-Gold-R9-1": 1909634804, - "Guest_CL-Protector-Gold-R9-2": 1909634932, - "Guest_CL-Protector-Gold-R9-3": 1909635060, - "Guest_CL-Protector-Gold-R9-4": 1909634164, - "Guest_CL-Protector-Purple-R9-Boss": 1889837072, - "Guest_CL-Protector-Purple-R9": 81760161, - "Guest_CL-Protector-Tan-Boss-R10": 912663188, - "Guest_KR_Golem_Worker": 1784607296, - "Guest_Golem-Brass-R7-1": 718939445, - "Guest_Golem-Clockwork-R7": 1161173708, - "Guest_EM_Robot_Batbot_A_01": 1482867950, - "Guest_EM_Robot_Batbot_B_02": 945947886, - "Guest_EM_Robot_Batbot_B_01": 1482818798, - "Guest_EM_Robot_Batbot_B_03": 409076974, - "Guest_EM_Robot_Batbot_B_04": 127793938, - "Guest_EM_Robot_Batbot_B_05": 664664850, - "Guest_EM_Robot_Drone_A_02": 1215188569, - "Guest_EM_Robot_Drone_A_03": 1231965785, - "Guest_EM_Robot_Drone_A_01": 1265520217, - "Guest_EM_Robot_Drone_A_04": 1315851865, - "Guest_EM_Robot_Drone_A_05": 1332629081, - "Guest_EM_Robot_Drone_A_06": 1282297433, - "Guest_EM_Robot_Drone_A_07": 1299074649, - "Guest_EM_Robot_Drone_A_08": 1114525273, - "Guest_EM_Robot_Drone_A_09": 1131302489, - "Guest_EM_Robot_Drone_A_Boss_01": 1960661151, - "Guest_EM_Robot_Drone_A_Boss_02": 1960530079, - "Guest_EM_Robot_Drone_E_01": 1265518169, - "Guest_EM_Robot_Tank_A_01": 1314796420, - "Guest_EM_Robot_Tank_A_02": 1313223556, - "Guest_EM_Robot_Drone_C_02": 1215187545, - "Guest_EM_Robot_Drone_D_03": 1231963225, - "Guest_EM_Robot_Drone_D_01": 1265517657, - "Guest_EM_Robot_Drone_D_02": 1215186009, - "Guest_EM_Robot_Tank_B_01": 1314796468, - "Guest_EM_Robot_Drone_C_01": 1265519193, - "Guest_G14-BP-Golem_Steel_Boss": 2071105129, - "Guest_G14-BP-Golem_Steel_Puzzle": 715790979, - "Guest_Golem-Brass-Elite-L38": 1163662532, - "Guest_Golem-Brass-Elite-L56": 2057562884, - "Guest_Golem-Brass-MBBoss-L48": 1498830732, - "Guest_Golem-Brass-MBBoss-L71": 1498829576, - "Guest_Golem-Brass-MBBoss-L76": 1498828936, - "Guest_Golem-Clockwork-Elite-L54-Metal": 417151527, - "Guest_Golem-Clockwork-Elite-L37": 1961943722, - "Guest_Golem-Clockwork-Elite-L54": 1950147242, - "Guest_Golem-Clockwork-L28": 1561959116, - "Guest_Golem-Clockwork-MBBoss-L37": 973152783, - "Guest_Golem-Clockwork-MBBoss-L69": 1262559759, - "Guest_Golem-Steel-Elite-L39": 1430496717, - "Guest_Golem-Steel-MBBoss-L40": 1229578887, - "Guest_Golem-Steel-MBBoss-L43": 1229579015, - "Guest_Golem-Steel-MBBoss-L50-1": 1231762051, - "Guest_Golem-Steel-MBBoss-L50": 1229578883, - "Guest_Golem-Steel-MBBoss-LXX": 1229583927, - "Guest_Golem-Wood-Elite-L35": 904360756, - "Guest_Golem-Wood-Elite-L37": 1978102580, - "Guest_Golem-Wood-Elite-L50": 1813548236, - "Guest_Golem-Wood-MBBoss-L63": 1392041724, - "Guest_MB-Gauntlet-Golem-Clockwork": 854649045, - "Guest_Spider-Golem-MBBoss-L67": 253352706, - "Guest_Spider-Golem-MBBoss-L96": 253348994, - "Guest_WC-MAW-GasGolem-Minion": 1511013798, - "Guest_WC-MAW-GasGolemLife-Minion": 1306026584, - "Guest_Golem-Steel-L02": 1027229749, - "Guest_Golem-Clockwork-L01": 1409915596, - "Guest_Gauntlet-01-Golem-Steel-Ghost-R8": 402816318, - "Guest_Golem-Wood-L01": 156976035, - "Guest_HG-Clock-ClockworkSpanner-20": 1523370449, - "Guest_HG-Clock-ClockworkSpanner-40": 1523370455, - "Guest_HG-Clock-ClockworkSpanner-60": 1523370453, - "Guest_HG-Clock-ClockworkSpanner-80": 1523370459, - "Guest_HG-Clock-ClockworkSpanner-100": 1523354068, - "Guest_HG-Clock-ClockworkSpanner-120": 1523354004, - "Guest_AQ-Cyclops-Guard": 191361948, - "Guest_AQ_Cyclops_Guard_A_Boss_01": 114747100, - "Guest_CL-Cyclops-Death-R10": 611013866, - "Guest_Cyclops-Death-Boss-R7": 1192370725, - "Guest_Cyclops-Death-Boss-R9": 1192370717, - "Guest_Cyclops-Death-R7": 144593791, - "Guest_GH-Cyclops-Death-R6": 594236619, - "Guest_Cyclops-BlueHelmet-KTBoss-L03": 1720105277, - "Guest_Cyclops-Red-L12": 1816429840, - "Guest_MR_Cyclops02WHelmet_Model_01": 1483732416, - "Guest_Cyclops-Blue-L02": 1633021234, - "Guest_Cyclops-BlueHelmet-WCBoss-L03": 427378332, - "Guest_Cyclops-RedHelmet-WCBoss-L03": 2021269422, - "Guest_HG_Sinbad_Cyclops_25": 911979034, - "Guest_HG_Sinbad_Cyclops_50": 1856261606, - "Guest_HG_Sinbad_Cyclops_75": 861647386, - "Guest_HG_Sinbad_Cyclops_100": 1789152678, - "Guest_HG_Sinbad_Cyclops_130": 178539942, - "Guest_HG_Sinbad_IronSultan_25": 930031152, - "Guest_HG_Sinbad_IronSultan_50": 930051504, - "Guest_HG_Sinbad_IronSultan_75": 930030768, - "Guest_HG_Sinbad_IronSultan_100": 927954864, - "Guest_HG_Sinbad_IronSultan_130": 927942576, - "MNT_SweetRide": 1643297840, - "PP_FrilledDino": 1395342809, - "PP_Celestian": 95679303, - "PP_Sun_Angry": 1955190071, - "PP_Marshmallow": 1220667954, - "MNT_Umbrella_B": 923364822, - "MNT_Tamer": 1050737194, - "PP_BumbleBee_B": 858653433, - "MNT_PunkFlamingo": 1634690818, - "MNT_2P_WoolyRhino": 1395943031, - "PP_Retriever": 72842604, - "PP_Piggle_Caveman": 181356174, - "PP_DecennialDragon": 1396523337, - "MNT_Tiger_Rainbow": 515535412, - "MNT_CarrierGhosts": 1833039309, - "MNT_Sled": 617654308, - "Transformation_BG_RatThief_Death": 30691641, - "Transformation_BG_Elf_Storm": 44352983, - "Transformation_BG_WolfWarrior_Ice": 986304351, - "MNT_CarriorGhost_B": 1768732109, - "MNT_CarriorGhost_C": 1766634957, - "Transformation_BG_Colossus_Fire": 1318803522, - "Transformation_BG_Krok_Balance": 140952965, - "Guest_KM_Gobbler_Skinny_A_11": 773648065, - "Guest_KM_Robot_Candy_A_01": 480414124, - "Guest_KM_Robot_Candy_A_02": 530745772, - "Guest_KM_Robot_Candy_A_03": 513968556, - "Guest_KM_Robot_Candy_A_04": 430082476, - "Guest_KM_Robot_Candy_A_05": 413305260, - "Guest_KM_Gummy_Bear_A_01": 1940905059, - "Guest_KM_Gummy_Bear_D_01": 1940905011, - "Guest_KM_Gummy_Bear_E_01": 1940904995, - "Guest_KM_Gummy_Bear_A_02": 1941429347, - "Guest_KM_Gummy_Bear_D_02": 1941429299, - "Guest_KM_Gummy_Bear_E_02": 1941429283, - "Guest_KM_Gummy_Bear_B_01": 1940905043, - "Guest_KM_Gummy_Bear_B_02": 1941429331, - "Guest_KM_Gummy_Bear_B_03": 1941953619, - "Guest_KM_Gummy_BearHat_A_01": 853226448, - "Guest_KM_Gummy_BearHat_A_02": 853226460, - "Guest_KM_Gummy_Bunny_A_01": 324805042, - "Guest_KM_Gummy_Bunny_C_01": 324806066, - "Guest_KM_Gummy_Bunny_D_01": 324807602, - "Guest_KM_Gummy_Bunny_E_01": 324807090, - "Guest_KM_Gummy_Bunny_F_01": 324808626, - "Guest_KM_Gummy_BunnyUber_A_01": 525565930, - "Guest_KM_Gummy_Worm_A_01": 231044195, - "Guest_KM_Gummy_Worm_B_01": 231044179, - "Guest_KM_Gummy_Worm_C_01": 231044163, - "Guest_KM_Gummy_Worm_A_02": 232617059, - "Guest_KM_Gummy_Worm_B_02": 232617043, - "Guest_KM_Gummy_Worm_C_02": 232617027, - "Guest_KM_Gummy_Bear_F_01": 1940904979, - "Guest_KM_Gummy_Bear_F_02": 1941429267, - "Guest_KM_Gummy_Bunny_C_02": 274474418, - "Guest_KM_Robot_Candy_A_06": 463636908, - "Guest_KM_Alphoi_DarkF_A_01": 475441543, - "Guest_KM_Gobbler_Skinny_A_01": 773648069, - "Guest_KM_Gobbler_Skinny_A_02": 773648197, - "Guest_KM_Gobbler_Skinny_A_03": 773648325, - "Guest_KM_Gobbler_SkinnyF_A_01": 254411012, - "Guest_KM_Gobbler_Skinny_A_04": 773647429, - "Guest_KM_Gobbler_Skinny_A_05": 773647557, - "Guest_KM_Gobbler_Skinny_A_06": 773647685, - "Guest_KM_Gobbler_SkinnyF_A_02": 254423300, - "Guest_KM_Gobbler_Skinny_A_07": 773647813, - "Guest_KM_Gobbler_Skinny_A_08": 773646917, - "Guest_KM_Gobbler_Skinny_A_09": 773647045, - "Guest_KM_Gobbler_SkinnyF_A_03": 254419204, - "Guest_KM_Gobbler_Fat_A_01": 1440595742, - "Guest_KM_Gobbler_Fruit_B_01": 1236446660, - "Guest_KM_Gobbler_Fruit_A_01": 1235922372, - "Guest_KM_Gobbler_Guard_B_01": 1435667582, - "Guest_KM_Gobbler_Skinny_A_10": 773647937, - "Transformation_PlayerBabyCarrot": 1580787628, - "Transformation_PlayerDeadBeet": 1992261692, - "Transformation_PlayerDisparagus": 373797484, - "Transformation_PlayerSnowPeas": 634199102, - "PP_Snowflake": 2036143125, - "PP_GummyBear_Myth": 117787890, - "PP_GummyBear_Death": 236577760, - "PP_GummyBear_Balance": 2100524337, - "PP_GummyBear_Life": 118020336, - "PP_GummyBear_Fire": 117995748, - "PP_GummyBear_Storm": 247437198, - "PP_GummyBear_Ice": 122536570, - "MNT_SnowOwl": 1578473542, - "Guest_KM_Gummy_Bear_Uber_A_01": 1856208859, - "Guest_KM_Gummy_Bear_Uber_A_02": 1856196571, - "MNT_ChocolateMoose": 567538552, - "MNT_Ram_Candied": 1913603720, - "Guest_KM_Spider_Mage_A_01": 1529720120, - "Guest_KM_Spider_Mage_B_01": 1529719608, - "Guest_KM_Spider_Mage_C_01": 1529719096, - "Guest_KM_Spider_Mage_D_01": 1529718584, - "Guest_KM_Spider_Mage_E_01": 1529718072, - "PP_SpriteDark_Balance": 914900728, - "MNT_Tricycle": 991465753, - "Guest_Tri-Gauntlet-Protector-Gold": 2029952053, - "Guest_Tri-Gauntlet-FishbotGold": 130267882, - "Guest_HG-Clock-Clockworker-20": 281216243, - "Guest_HG-Clock-Clockworker-40": 281217011, - "Guest_HG-Clock-Clockworker-60": 281216755, - "Guest_HG-Clock-Clockworker-80": 281215475, - "Guest_HG-Clock-Clockworker-100": 283313523, - "Guest_HG-Clock-Clockworker-120": 283321715, - "Guest_HG-Clock-Lugs-20": 1452756928, - "Guest_HG-Clock-Lugs-40": 1452756960, - "Guest_HG-Clock-Lugs-60": 1452756992, - "Guest_HG-Clock-Lugs-80": 1452756768, - "Guest_HG-Clock-Lugs-100": 1452494736, - "Guest_HG-Clock-Lugs-120": 1452493712, - "Guest_HG-Clock-Lucia-20": 1041451626, - "Guest_HG-Clock-Lucia-40": 1041450602, - "Guest_HG-Clock-Lucia-60": 1041449578, - "Guest_HG-Clock-Lucia-80": 1041456746, - "Guest_HG-Clock-Lucia-100": 1049840746, - "Guest_HG-Clock-Lucia-120": 1049873514, - "Guest_KM_Gummy_Worm_A_03": 232092771, - "MNT_Scooter_E": 200254340, - "PP_WolfWarrior_Balance": 991302673, - "PP_PetGift": 1816280689, - "PP_RatThief": 1390866051, - "Guest_PL_Titan_Small_A": 2015819364, - "Guest_PL_Titan_Large_B": 699791264, - "Guest_PL_Titan_Medium_A": 326730424, - "PP_Draconian": 1631557208, - "MNT_Pantera_Astral": 106092538, - "PP_YearOx": 105653084, - "PP_WolfWarrior_Ice": 1043644935, - "PP_SpriteDark": 2031730054, - "PP_Brudel": 1355697143, - "MNT_Astronomers": 742732792, - "MNT_CouchPotato": 418050932, - "MNT_Flowerfarthing": 1396771051, - "MNT_Astronomers_Blue": 236532779, - "MNT_Astronomers_Rainbow": 4428274, - "PP_Astronomer": 782095961, - "Guest_KM_Gummy_Bunny_B_01": 324806578, - "Guest_KM_DeadBeets_A_01": 1396016635, - "MNT_GummyBunny": 775900704, - "MNT_GummyBunny_A": 775834080, - "MNT_GummyBunny_B": 775836128, - "MNT_GummyBunny_C": 775838176, - "Transformation_BG_Minotaur_Life": 1445109091, - "MNT_Armadillo": 825635826, - "PP_SootGremlin": 768969093, - "PP_RoadRunner": 2057802060, - "MNT_TinyTrolly": 160881792, - "PP_Frog_B": 1530124761, - "MNT_FjordDragon": 129204340, - "Transformation_BG_NinjaPig_Myth": 422914079, - "PP_CorgiPup": 1638656105, - "MNT_Skateboard": 728018224, - "PP_Krokomummy": 326396577, - "MNT_Vroom": 1736383110, - "MNT_PlayerWings_AtralRaven": 1514774167, - "PP_Blimp": 690882397, - "Guest_GH_WoodenSkeletonKey_Boar_Boss_Grey_01": 678055851, - "Guest_GH_StoneSkeletonKey_Boar_Boss_Grey_01": 571670691, - "Guest_GH_GoldSkeletonKey_Boar_Boss_Grey_01": 961728819, - "MNT_Cloud_Promo_AW_01": 2032670992, - "Guest_EM_Hornet_Burner_A_01": 1881854632, - "Guest_EM_Hornet_Burner_A_02": 1881854636, - "Guest_EM_Hornet_Zapper_A_01": 2058539689, - "Guest_EM_Hornet_Zapper_A_02": 2058539685, - "Guest_EM_Ant_Giant_D_01": 379386121, - "Guest_EM_Ant_Giant_A_02": 1768146677, - "Guest_EM_Ant_Giant_A_01": 1768097525, - "Guest_EM_Ant_Giant_B_01": 379386122, - "Guest_KR_Moth_Priest_G_Achera": 381233569, - "Guest_KR_BeeMonsterF_A": 135146211, - "Guest_KR_BeeMonsterF_A_Weak": 1824123847, - "Guest_KR_Bee_Warrior_A": 1569202664, - "Guest_KR_Bee_Warrior_B": 1569204200, - "Guest_KR_Bee_Warrior_C_BossDrones": 1217189631, - "Guest_KR_Bee_Warrior_D": 1569205224, - "Guest_KR_Bee_Warrior_E": 1569204712, - "Guest_KR_Bee_Warrior_G": 1569205736, - "Guest_KR_Bee_Warrior_G_BossFight": 1055035476, - "Guest_KR_Bee_Warrior_H": 1569207272, - "Guest_KR_Bee_Warrior_I": 1569206760, - "Guest_KR_Bee_Warrior_L": 1569209320, - "Guest_KR_Bee_Warrior_M": 1569208808, - "Guest_KR_DragonBeetle_Monster_A": 1777853782, - "Guest_KR_Hornet_Drone_A": 1161590757, - "Guest_KR_Hornet_Drone_B": 1161607141, - "Guest_KR_Hornet_Drone_C": 1161623525, - "Guest_KR_Hornet_Drone_D": 1161639909, - "Guest_KR_Hornet_Drone_E": 1161656293, - "Guest_KR_Lice_DeepSpawn_A": 761604959, - "Guest_KR_Mantis_HunterF_A": 820917199, - "Guest_KR_Mantis_HunterF_B": 871248847, - "Guest_KR_Mantis_HunterF_C": 854471631, - "Guest_KR_Mantis_HunterF_D": 904803279, - "Guest_KR_Mantis_HunterF_F": 938357711, - "Guest_KR_Mantis_HunterF_F_Driftwood": 2053608437, - "Guest_KR_Mantis_HunterF_G": 921580495, - "Guest_KR_Mantis_HunterF_H": 971912143, - "Guest_KR_Mantis_HunterF_I": 955134927, - "Guest_KR_Mantis_HunterF_I_Zuzka": 935478878, - "Guest_KR_Mantis_HunterF_J": 1005466575, - "Guest_KR_Mantis_HunterF_J_Zelda": 886910558, - "Guest_KR_Mantis_HunterF_K": 988689359, - "Guest_KR_Mantis_HunterF_K_LongShd": 1767574336, - "Guest_KR_Mantis_HunterF_L": 1039021007, - "Guest_KR_Mantis_HunterF_M": 1022243791, - "Guest_KR_Mantis_HunterF_P_Bossfight": 1731428987, - "Guest_KR_Mantis_HunterF_Q": 552481743, - "Guest_KR_Mantis_HunterF_R": 602813391, - "Guest_KR_Mantis_HunterF_S": 586036175, - "Guest_KR_Mantis_HunterF_SecondColumnCpt_A": 1354033994, - "Guest_KR_Mantis_HunterF_T": 636367823, - "Guest_KR_Mantis_HunterF_Tribute": 1946371041, - "Guest_KR_Mantis_HunterF_U": 619590607, - "Guest_KR_Mantis_HunterF_V": 669922255, - "Guest_KR_Mantis_HunterF_W": 653145039, - "Guest_KR_Mantis_HunterF_Y": 686699471, - "Guest_KR_Mantis_HunterF_Z_Officer": 206016474, - "Guest_KR_Mantis_ProphetF_B": 1791139097, - "Guest_KR_Mantis_ProphetF_C": 1254268185, - "Guest_KR_Milipede_Warrior_A": 410726278, - "Guest_KR_Milipede_Warrior_B": 410726282, - "Guest_KR_Milipede_Warrior_C": 410726286, - "Guest_KR_Milipede_Warrior_D": 410726290, - "Guest_KR_Milipede_Warrior_H": 410726306, - "Guest_KR_Milipede_Warrior_J": 410726314, - "Guest_KR_Milipede_Warrior_K": 410726318, - "Guest_KR_Moth_Priest_A": 1421532604, - "Guest_KR_Moth_Priest_B": 1421532092, - "Guest_KR_Moth_Priest_C": 1421531580, - "Guest_KR_Moth_Priest_D": 1421531068, - "Guest_KR_Moth_Priest_D_Drepa": 1483393420, - "Guest_KR_Moth_Priest_E": 1421530556, - "Guest_KR_Moth_Priest_F": 1421530044, - "Guest_KR_Mantis_HunterF_Z": 737031119, - "Guest_KR_Roach_AntLion_A": 1860517987, - "Guest_KR_Roach_AntLion_B_Bossfight": 993284625, - "Guest_KR_Roach_AntLion_C": 1861566563, - "Guest_KR_Roach_Cook_A": 259847495, - "Guest_KR_Roach_Glutton_B": 249524334, - "Guest_KR_Roach_WaterBug_A": 1795473599, - "Guest_KR_Roach_WaterBug_B": 1745141951, - "Guest_MR_Beetle_Scarab_A_01": 1789741503, - "Guest_MR_Beetle_Scarab_A_02": 1789741491, - "Guest_MR_Beetle_Scarab_B_01": 1790265791, - "Guest_ZF-Goliath-R10-Boss-01": 7034074, - "Guest_ZF-Goliath-R10-Boss-02": 7034202, - "Guest_ZF-Goliath-R10-Boss-03": 7034330, - "Guest_ZF-Goliath-R10-Boss": 1603576807, - "Guest_ZF-Goliath-R11-Boss-01": 2140449574, - "Guest_ZF-Goliath-R11-Boss-02": 2140449446, - "Guest_ZF-Goliath-R11-Boss-03": 2140449318, - "Guest_ME1_Ant_Aunt_A": 707251855, - "Guest_ME1_Ant_Aunt_B": 1440231794, - "Guest_CC_Fly_Worker_A_01": 1497784524, - "Guest_CC_Roach_Worker_A_01": 1026321602, - "Guest_CC_Roach_Lieutenant_A_01": 1081690299, - "Guest_CC_Roach_Lieutenant_B_01": 1081690295, - "Guest_CC_Roach_Don_A_01": 547836893, - "Guest_CC_Roach_BBug_A_01": 1021150157, - "Guest_CC_Roach_RoachSteady_A_01": 859409247, - "Guest_Draconian-Caster-Yellow-Boss-R8": 1016221419, - "Guest_Draconian-Zombie-R8-2-1": 1226055265, - "Guest_Draconian-Zombie-R8-2": 1226115297, - "Guest_Draconian-Caster-Green-R7": 2143342719, - "Guest_Draconian-Warrior-Gold-Boss-R8": 1044388248, - "Guest_Draconian-Caster-Gray-R7": 95878769, - "Guest_DS-Boss-MAW": 1676071241, - "Guest_Draconian-Zombie-R8-1": 1226115309, - "Guest_Draconian-Warrior-Purple-Boss-R7": 601813964, - "Guest_Draconian-Caster-Tan-Boss-R7": 1973339532, - "Guest_Draconian-Caster-Blue-R6": 1684210173, - "Guest_Draconian-Caster-Yellow-R8": 2129956646, - "Guest_Draconian-Warrior-Red-R7": 521861944, - "Guest_Draconian-Warrior-Tan-R6": 1726416112, - "Guest_Draconian-Warrior-Purple-R8": 1896270341, - "Guest_Draconian-Caster-Blue-Boss-R7": 401581134, - "Guest_Draconian-Zombie-R8": 384497496, - "Guest_GH2-Draconian-HENCH-R10": 1149202878, - "Guest_GH2-Draconian-BOSS-R10": 2114378473, - "Guest_G14-DM-Draconian_Boss": 490246211, - "Guest_G14-DM-Draconian_Storm": 2035239226, - "Guest_G14-DM-Draconian_Ice": 782200563, - "Guest_G14-DM-Draconian_Malistaire_M": 1904691727, - "Guest_G14-DM-Draconian_Malistaire_S": 1904685583, - "Guest_G14-DM-Draconian_Malistaire_D": 1904700943, - "Guest_G14-DM-Draconian_Malistaire": 1904736751, - "Guest_G14-DM-Draconian_Malistaire_B": 1904702991, - "Guest_G14-DM-Draconian_Malistaire_I": 1904695823, - "Guest_G14-DM-Draconian_Malistaire_L": 1904692751, - "Guest_G14-DM-Draconian_Malistaire_F": 1904698895, - "Guest_Draconian-PW-Gauntlet-Boss": 493080513, - "Guest_CC_Draconian_A_01": 551348115, - "Guest_AZ-Parasaur-Undead-E": 2041242846, - "Guest_AZ-Parasaur-drkPriestF-F": 898239615, - "Guest_EM_Parasaur_DrkPriestF_A_01": 1007099606, - "Guest_EM_Parasaur_DrkPriestF_A_02": 1007099605, - "Guest_AZ-Parasaur-drkPriestF-D": 898501759, - "Guest_AZ-Parasaur-drkPriestF-E": 898370687, - "Guest_AZ-Parasaur-drkPriestF-A": 897846399, - "Guest_AZ-Parasaur-Undead-B": 1716853538, - "Guest_AZ-Parasaur-Undead-A": 106240802, - "Guest_AZ-Parasaur-Undead-G": 967501022, - "Guest_AZ-Parasaur-PriestF-D": 1177445525, - "Guest_AZ-Parasaur-Undead-C": 1179982626, - "Guest_AZ-Parasaur-drkPriestF-C": 897584255, - "Guest_AZ-Parasaur-Undead-SkurkisMinion": 1414766977, - "Guest_AZ-Parasaur-drkPriestF-B": 897715327, - "Guest_AZ-Parasaur-drkPriestF-B-Script": 1414847875, - "Guest_AZ_Parasaur_Priest_A_Boss_01": 890025421, - "Guest_AZ-Parasaur-Undead-D": 1504371934, - "Guest_AZ-Pteranodon-Knight-D": 1127364049, - "Guest_AZ-StoneSkeletonKey-Ixcax-Cursedwing": 699239601, - "Guest_AZ-Pteranodon-Knight-E": 1127363921, - "Guest_AZ-Pteranodon-Knight-F": 1127363793, - "Guest_AZ-Pteranodon-Knight-A-PageEvent": 942589002, - "Guest_AZ-StoneSkeletonKey-Minion-Death": 311645584, - "Guest_AZ-Pteranodon-Knight-A": 1127364433, - "Guest_AZ-Raptor-Wraith-A": 585729247, - "Guest_AZ-Raptor-Undead-D": 893623689, - "Guest_G14-HS-Ifzt": 1914694612, - "Guest_AZ-Raptor-Warrior-A": 855749884, - "Guest_AZ-Raptor-Undead-C": 897293705, - "Guest_AZ-Raptor-Undead-B": 896769417, - "Guest_AZ-Raptor-Undead-F": 894672265, - "Guest_AZ-Raptor-Warrior-F": 872527100, - "Guest_AZ-Raptor-Warrior-H": 973190396, - "Guest_AZ-Tritops-Warrior-I": 1942669769, - "Guest_AZ-Tritops-Undead-H": 1215305911, - "Guest_AZ-Tritops-Undead-E": 1164974263, - "Guest_AZ-Tritops-SpkWarrior-A": 860850257, - "Guest_AZ-Tritops-SpkWarrior-B": 860862545, - "Guest_AZ-Tritops-Undead-F": 1181751479, - "Guest_AZ-Tritops-Warrior-K": 868927945, - "Guest_AZ-Tritops-Undead-G": 1198528695, - "Guest_AZ-Tritops-Mummy-A": 1912444877, - "Guest_AZ-Tritops-Warrior-G": 1278555704, - "Guest_AZ-Tritops-Undead-D": 1148197047, - "Guest_AZ-Tritops-Undead-A": 1097865399, - "Guest_AZ-Tritops-SpkChief-B": 2096319577, - "Guest_AZ-Tritops-Mummy-B": 1910872013, - "Guest_AZ-Tritops-Warrior-H": 1405798857, - "Guest_AZ-Dino-Undead-A": 508678670, - "Guest_AZ-Dino-Undead-B": 508679182, - "Guest_AZ-Dino-Undead-D": 508680206, - "Guest_KR_Dino_Undead_A": 1638800628, - "Guest_KR_Dino_Undead_Minion_A": 892450235, - "MNT_HayRideTruck": 75377404, - "MNT_ShadowSpiderForm": 1439860426, - "Transformation_BG_Draconian_Death": 794598804, - "PP_BabyOrca": 1056061090, - "Transformation_BG_Cyclops_Fire": 638854828, - "Transformation_BG_Fairy_Ice": 874078461, - "PP_SpriteLife": 1824998010, - "PP_Raccoon": 1107326808, - "PP_FireKitten": 593048189, - "MNT_SkeletalDuck": 1306273036, - "PP_VampireSquid": 431023109, - "PP_CottonCandy": 891201813, - "PP_ThreeHeadGoat": 1282096939, - "PP_EyeBot": 260189248, - "MNT_DeathBoat": 1444454568, - "MNT_Lemuria": 908974762, - "MNT_DeathBoat_B": 1444456538, - "MNT_DeathBoat_C": 1444456474, - "MNT_Spooky3": 1667775622, - "MNT_PresentBox": 122082000, - "MNT_Orca": 1726961653, - "Guest_LM_Golem_Steel_A_01": 19551853, - "Guest_LM_Golem_Steel_A_02": 36329069, - "Guest_LM_EyeBot_A_01_Death": 380508535, - "Guest_LM_EyeBot_A_01_Myth": 167840640, - "PP_ThreeHeadGoat_B": 1209286443, - "PP_ThreeHeadGoat_C": 1211383595, - "Guest_KR_Eel_Whirligig_A": 1062268734, - "Guest_KR_Goliath_Behemoth_A": 1231139987, - "Guest_KR_Goliath_Behemoth_C": 1231139995, - "Guest_KR_Goliath_Behemoth_D": 1231139975, - "Guest_KR_Goliath_Behemoth_E": 1231139971, - "Guest_KR_Goliath_Behemoth_H": 1231140023, - "Guest_KR_Goliath_Crusher_C": 1651720060, - "Guest_KR_Goliath_Crusher_D": 2106376324, - "Guest_KR_Goliath_Crusher_F": 1032634500, - "Guest_KR_Goliath_Crusher_G": 495763588, - "Guest_KR_Goliath_Crusher_K": 1651720059, - "Guest_AZ-Goliath-Crusher-A": 1874784966, - "Guest_AZ-Goliath-Crusher-B": 264172230, - "Guest_AZ-Goliath-Crusher-C": 801043142, - "Guest_AZ-Goliath-Crusher-D": 809569594, - "Guest_AZ-Goliath-Crusher-E": 272698682, - "Guest_HG_AKT_Butterfly_Time_A_25": 1788523059, - "Guest_HG_AKT_Butterfly_Time_A_50": 1130017331, - "Guest_HG_AKT_Butterfly_Time_A_75": 1809494579, - "Guest_HG_AKT_Butterfly_Time_A_100": 1113240099, - "Guest_HG_AKT_Butterfly_Time_A_130": 1515893283, - "MNT_DeathBoat_D": 1444456922, - "Guest_KR_RhinoBeetle_Sun_A_Bossfight": 47895417, - "Guest_KR_RhinoBeetle_Star_A": 1947510103, - "Guest_KR_RhinoBeetle_Moon_A": 1751275863, - "Guest_ME1_Clockwork_Marine_A": 1481452452, - "Guest_ME1_Clockwork_Marine_B": 1481452068, - "Guest_CC_GoldSkeletonKey_Lice_DeepSpawn_B": 1306132994, - "Guest_KR_DamdinBazar_A_Bossfight": 1333596311, - "Guest_DS-Minion-MAW2": 356796677, - "Guest_KH-Wyrmling-1": 116330513, - "Guest_KH-Wyrmling-20": 183439385, - "Guest_KH-Wyrmling-40": 317657113, - "Guest_KH-Wyrmling-60": 451874841, - "Guest_KH-Wyrmling-80": 586092569, - "Guest_PL_Polar_Bear_Solider_C": 1785662565, - "Guest_Skeleton-Silver-WCBoss-L01": 17766963, - "Guest_Banshee-Red-Elite-L24_B": 1902069117, - "Transformation_BG_WolfWarrior_Myth": 339098032, - "Transformation_BG_RatThief_Balance": 881728218, - "Transformation_BG_Colossus_Storm": 593527492, - "Transformation_BG_Elf_Life": 347405087, - "Transformation_BG_Minotaur_Ice": 1197752291, - "MNT_TRex_B": 660285500, - "PP_SpriteDark_Ice": 2036248504, - "MNT_RollingBall": 1658139390, - "Guest_LM_TRex_Base_A_03": 1378630657, - "Guest_LM_TRex_Base_A_04": 1378745345, - "Guest_LM_TRex_Base_A_05": 1378728961, - "Guest_LM_TRex_Base_A_01": 1378663425, - "Guest_LM_TRex_Base_A_02": 1378647041, - "Guest_LM_TRex_Cyborg_A_01": 151609741, - "Guest_LM_TRex_Cyborg_A_02": 168386957, - "Guest_LM_TRex_Cyborg_A_03": 185164173, - "Guest_LM_TRex_Cyborg_B_01": 151611277, - "Guest_LM_TRex_Cyborg_D_01": 151612301, - "Guest_LM_TRex_Cyborg_E_01": 151611789, - "Guest_LM_TRex_Cyborg_C_01": 151610765, - "Guest_LM_Draconian_Base_A_01": 1607373112, - "Guest_LM_EyeBot_B_01": 1085543056, - "Guest_LM_Drone_Eye_C_01": 916954037, - "Guest_LM_Drone_Eye_D_01": 1230529608, - "Guest_LM_Drone_Eye_D_02": 1230545992, - "Guest_LM_Drone_Eye_D_04": 1230578760, - "Guest_LM_Drone_Eye_D_03": 1230562376, - "Guest_LM_Drone_Eye_A_01": 916954038, - "Guest_LM_Drone_Eye_A_02": 916937654, - "Guest_LM_Drone_Eye_B_01": 1230529611, - "Guest_LM_Drone_Eye_D_05": 1230595144, - "Guest_LM_Drone_Eye_D_07": 1230627912, - "Guest_LM_Drone_Eye_D_08": 1230644296, - "Guest_LM_Drone_Eye_A_03": 916921270, - "Guest_LM_Drone_Eye_A_04": 916904886, - "Guest_LM_Drone_Eye_C_02": 916937653, - "Guest_LM_EyeBot_B_02": 1061940593, - "Guest_LM_EyeBot_B_03": 1085543055, - "Guest_LM_EyeBot_B_04": 1061940594, - "Guest_LM_Drone_Eye_C_03": 916921269, - "Guest_LM_Robot_Kit10_A_01": 199936400, - "Guest_LM_Colossus_Mander_A_01": 2107529026, - "Guest_LM_Robot_Future_A_01": 998840846, - "Guest_LM_Robot_FutureBIG_A_01": 340408568, - "Guest_LM_Robot_FutureBIG_A_02": 340396280, - "Guest_LM_Robot_FutureBIG_A_03": 340400376, - "Guest_LM_Robot_OldOne_A_01": 779070973, - "Guest_LM_Robot_OldOne_A_02": 1315941885, - "Guest_LM_Millipede_Centi_A_01": 168575797, - "Guest_LM_Millipede_Centi_A_03": 168583989, - "Guest_LM_Millipede_Centi_A_02": 168588085, - "Guest_LM_Millipede_Centi_A_04": 168563509, - "Guest_LM_Moth_Sorcerer_A_01": 228191136, - "Guest_LM_Boar_Barbarian_A_01": 1238634912, - "Guest_LM_Boar_Barbarian_A_02": 1238634528, - "Guest_LM_Boar_Barbarian_A_03": 1238634656, - "Guest_LM_Boar_Barbarian_A_04": 1238635296, - "Guest_LM_Boar_Barbarian_A_05": 1238635424, - "Guest_LM_Boar_Chief_A_01": 357051311, - "Guest_LM_Fungus_Humango_A_01": 1398460044, - "Guest_LM_Fungus_Humango_A_02": 1398460172, - "Guest_LM_Treant_Base_A_01": 1658172241, - "Guest_LM_GiantTree_EvilRoots_A_01": 282225934, - "Guest_LM_PA_GreenMan_A_01": 67705044, - "Guest_LM_Fungus_Humango_B_01": 1348128396, - "Guest_LM_Fungus_Humango_A_03": 1398460300, - "Guest_LM_Fungus_Man_C_01": 1648824156, - "Guest_LM_Fungus_Man_C_02": 1650397020, - "Guest_LM_Rhino_Zombie_A_01": 248513993, - "Guest_LM_Malughast_Base_01": 883820436, - "Guest_LM_Malughast_Base_02": 1420691348, - "Guest_LM_Lemur_HierarchF_H_04": 231562115, - "Guest_LM_Malughast_Base_03": 1957562260, - "Guest_LM_Malughast_Base_05": 1263663212, - "Guest_LM_Malughast_Base_06": 726792300, - "Guest_LM_Malughast_Base_08": 346949523, - "Guest_LM_Malughast_Base_09": 883820435, - "Guest_LM_Malughast_Base_04": 1800534124, - "Guest_LM_Minotaur_Skeleton_A_01": 1865122824, - "Guest_LM_Lemur_Wild_B_03": 1783764037, - "Guest_LM_Lemur_HierarchF_H_01": 231541635, - "Guest_LM_Lemur_HierarchF_H_02": 231553923, - "Guest_LM_Mander_Warrior_A_01": 1651245419, - "Guest_LM_Mander_Warrior_A_02": 1651245291, - "Guest_LM_Mander_Warrior_B_01": 1634468203, - "Guest_LM_Mander_Warrior_B_02": 1634468075, - "Guest_LM_Mander_Warrior_A_03": 1651245163, - "Guest_LM_Mander_Warrior_B_03": 1634467947, - "Guest_LM_Mander_Warrior_A_06": 1651245803, - "Guest_LM_Mander_Warrior_A_05": 1651245931, - "Guest_LM_Mander_Mummy_B_01": 1844111521, - "Guest_LM_Mander_Hero_B_01": 865113284, - "MNT_HolidayHippogriff": 938892112, - "MNT_Sabertooth_Ice": 1870381696, - "PP_FenrisWolf_Bantam": 776647759, - "MNT_JetPack": 1986300552, - "MNT_Scooter_F": 1005560708, - "PP_FossaKitten_A": 431748212, - "PP_Elfvis": 147991405, - "Guest_LM_Chicken_Hero_A_01": 1308728300, - "Guest_LM_Horse_Explorer_A_01": 434405482, - "Guest_LM_Duck_HeroineF_A_01": 133199186, - "Guest_LM_Crane_Hero_A_01": 204272548, - "Guest_LM_Deer_HeroineF_A_01": 1800374959, - "Guest_LM_Deer_Hero_A_01": 223109503, - "Guest_LM_Dog_Hero_A_01": 1434615064, - "PP_YearTiger": 777048708, - "MNT_Barrel": 3576425, - "MNT_Krampus": 404117611, - "PP_ChineseTigerCub": 1256032005, - "PP_Lemur": 565774155, - "PP_Robot": 1089075331, - "PP_Capybara": 451970762, - "Guest_LM_Ghoul_Base_A_01": 1822415945, - "Guest_LM_Lemur_HierarchF_H_03": 231549827, - "Guest_LM_Ghoul_Base_A_02": 1820843081, - "Guest_LM_Ghoul_Base_A_03": 1821367369, - "MNT_SpringSoF2022": 1685679511, - "MNT_WarElephant": 875015497, - "PP_Strix": 514230046, - "MNT_Beachball": 791896033, - "MNT_Blank": 633398131, - "MNT_CardboardFlier": 1646636689, - "MNT_LochMonster": 879660722, - "Transformation_BG_Krok_Death": 1395067182, - "Transformation_BG_Draconian_Fire": 1551581732, - "PP_Scotty": 1708580475, - "Guest_KR_Mice_Knight_A": 480101508, - "PP_Peacock": 1178721112, - "MNT_PoodleMoth": 975420235, - "PP_Hummingbird": 624666906, - "PP_WolfWarrior_Myth": 470737416, - "Guest_HG_UFD_Ghost_QueenF_A_100": 795323059, - "Guest_HG_UFD_Ghost_QueenF_A_50": 728230579, - "Guest_HG_UFD_Pirate_UndeadHighland_A_Balance_150": 201145133, - "Guest_HG_UFD_Pirate_UndeadHighland_A_Balance_100": 201144941, - "Guest_HG_UFD_Pirate_UndeadHighland_A_Balance_50": 201177701, - "Guest_HG_UFD_Pirate_UndeadHighland_A_Star_150": 1329885920, - "Guest_HG_UFD_Pirate_UndeadHighland_A_Star_100": 1304720096, - "Guest_HG_UFD_Pirate_UndeadHighland_A_Star_50": 1305768671, - "Guest_HG_UFD_Pirate_UndeadHighland_A_Shadow_150": 1263689971, - "Guest_HG_UFD_Pirate_UndeadHighland_A_Shadow_100": 1263689977, - "Guest_HG_UFD_Pirate_UndeadHighland_A_Shadow_50": 189949177, - "Guest_HG_UFD_Kelpie_Warrior_A_150": 54296095, - "Guest_HG_UFD_Kelpie_Warrior_A_100": 725384735, - "Guest_HG_UFD_Kelpie_Warrior_A_50": 708607503, - "Guest_HG_UFD_Pirate_UndeadHighland_B_150": 1099317831, - "Guest_HG_UFD_Pirate_UndeadHighland_B_100": 25576008, - "Guest_HG_UFD_Pirate_UndeadHighland_B_50": 159793864, - "Guest_HG_UFD_Ghost_QueenF_A_150": 795716275, - "PP_SpiderMinion": 557357331, - "MNT_Vines_Rainbow": 1587180338, - "MNT_YoungDrake": 1279496198, - "PP_Pet_Coconut": 444388490, - "DragonKI": 1490194214, - "PP_Sharkfish": 601628284, - "PP_MimicCake": 48071878, - "Guest_AQ-Bronze-Eagle": 375279744, - "Guest_Spider-Brown-L26": 2128680185, - "Guest_KR_Spider_Giant_D": 744401035, - "Guest_Wizard-Female-Band-Blue-R8": 1447486557, - "Guest_CC_Human_DSCrusaderF_A_01": 726538068, - "Guest_WC_Scarecrow_A_01": 867491011, - "Guest_WC_Banshee_A_01": 1433786463, - "Guest_WC_LostSoul_A_01": 796936146, - "PP_Fairy_Myth": 1117624344, - "PP_SpriteDark_Myth": 1884257976, - "BG_CyclopsLife_A": 944091673, - "Transformation_BG_NinjaPig_Storm": 2005137181, - "Transformation_BG_Fairy_Myth": 1880704188, - "Transformation_BG_Cyclops_Life": 638936708, - "Guest_AQ-Eagle-Praetorian": 1988013806, - "Guest_KM_BabyCarrot_A_01": 766239512, - "Guest_G14-DM-Gargoyle": 282898047, - "Guest_MR_Durvish_Sergeant_A_Boss_01": 1532609325, - "Guest_Cyclops-RedHelmet-KTBoss-L28": 2072371506, - "Guest_EM_Pig_Singer_A_01": 698597069, - "Guest_EM_Pig_Captain_A": 977505995, - "Guest_EM_Pig_Crewman_A": 465576459, - "PP_ChipmunkConductor": 1089819900, - "PP_LuckyCat": 1109326826, - "MNT_ImpCar": 1736092191, - "MNT_Book": 1547655078, - "MNT_JackoLantern": 649919658, - "MNT_Zheng": 742453108, - "MNT_Train": 413197899, - "MNT_Cerberus": 552686313, - "PP_Coconut": 1122741587, - "Transformation_Statue": 1153168084, - "Transformation_Nullity": 622504394, - "PP_Irk": 1825277392, - "Guest_Wyrmling-Fire-R8-1": 531485009, - "MNT_WolfLowPoly_A": 1947890962, - "MNT_WolfLowPoly_B": 1947825426, - "Transformation_BG_RatThief_Fire": 1169330235, - "Transformation_BG_WolfWarrior_Death": 159966683, - "Transformation_BG_Minotaur_Balance": 657855108, - "Transformation_BG_Draconian_Ice": 1907339814, - "Transformation_BG_Colossus_Myth": 1305894338, - "Transformation_NV_Penguin": 1757096851, - "Transformation_NV_Unicorn": 60447768, - "Transformation_NV_Monkey": 1379873688, - "Transformation_NV_Dog": 1961288968, - "PP_Wolf_Storm": 455227171, - "PP_WoodDuck": 1680912895, - "MNT_RockingHorse": 1205280059, - "MNT_SOF2022_Car": 219868812, - "PP_Buffaloon": 796152873, - "MNT_Steamboat": 1969530127, - "MNT_FelizNavidog": 847046394, - "PP_Mustache": 1571079379, - "Guest_DD-DS01-Skeleton-Pirate-20": 226826848, - "Guest_DD-DS01-Skeleton-Pirate-40": 201661024, - "Guest_DD-DS01-Skeleton-Pirate-60": 210049632, - "Guest_DD-DS01-Skeleton-Pirate-80": 251992672, - "Guest_DD-DS01-Skeleton-Pirate": 1994450336, - "Guest_DD-DS01-Shadow-Minion-Fire": 1074864956, - "Guest_DD-DS01-Shadow-Minion-Ice": 1841681214, - "Guest_DD-DS01-Shadow-Minion-Fire-20": 1074880881, - "Guest_DD-DS01-Shadow-Minion-Fire-40": 1074880945, - "Guest_DD-DS01-Shadow-Minion-Ice-20": 96850220, - "Guest_DD-DS01-Shadow-Minion-Ice-40": 96850218, - "Guest_DD-DS01-Shadow-Minion-Fire-60": 1074881009, - "Guest_DD-DS01-Shadow-Minion-Ice-60": 96850216, - "Guest_DD-DS01-Shadow-Minion-Fire-80": 1074880561, - "Guest_DD-DS01-Shadow-Minion-Ice-80": 96850214, - "Guest_SC-SpectreOfB-1": 1471950935, - "Guest_SC-SpectreOfB-20": 1471942759, - "Guest_SC-SpectreOfB-40": 1471942663, - "Guest_SC-SpectreOfB-60": 1471942695, - "Guest_SC-SpectreOfB-80": 1471942855, - "Guest_KH-Skeleton-Ice-60": 2108358962, - "Guest_KH-Skeleton-Ice-40": 2108391730, - "Guest_KH-Skeleton-Ice-20": 2108293426, - "Guest_KH-Skeleton-Ice-1": 2099953970, - "Guest_KH-Skeleton-Ice-80": 2108195122, - "Guest_KH-Undead-Caster-60": 1662604496, - "Guest_KH-Undead-Caster-40": 1661555920, - "Guest_KH-Undead-Caster-20": 1664701648, - "Guest_KH-Undead-Caster-1": 1931564240, - "Guest_KH-Undead-Caster-80": 1667847376, - "Guest_DD-PA01-DeadBeets": 1664999367, - "Guest_DD-PA01-DeadBeets-20": 1901453253, - "Guest_DD-PA01-DeadBeets-40": 2002116549, - "Guest_DD-PA01-DeadBeets-60": 1968562117, - "Guest_DD-PA01-DeadBeets-80": 2069225413, - "Guest_DD-PA01-Disparagus": 1865816461, - "Guest_DD-PA01-Disparagus-20": 573970895, - "Guest_DD-PA01-Disparagus-40": 499770929, - "Guest_DD-PA01-Disparagus-60": 1573512753, - "Guest_DD-PA01-Disparagus-80": 1647712718, - "Guest_DD-PA01-MeanestFlyTrap": 2001546861, - "Guest_DD-PA01-MeanestFlyTrap-20": 1936326253, - "Guest_DD-PA01-MeanestFlyTrap-40": 1936064109, - "Guest_DD-PA01-MeanestFlyTrap-60": 1935801965, - "Guest_DD-PA01-MeanestFlyTrap-80": 1937636973, - "Guest_HG-MD-MacDeath-20": 182639104, - "Guest_HG-MD-MacDeath-40": 182638080, - "Guest_HG-MD-MacDeath-60": 182637056, - "Guest_HG-MD-MacDeath-80": 182636032, - "Guest_HG-MD-MacDeath-100": 174252032, - "Guest_HG-MD-MacDeath-130": 174202880, - "Guest_HG_Sinbad_Skeleton_25": 494617874, - "Guest_HG_Sinbad_Skeleton_50": 42253050, - "Guest_HG_Sinbad_Skeleton_75": 1115994862, - "Guest_HG_Sinbad_Skeleton_100": 2105232646, - "Guest_HG_Sinbad_Skeleton_130": 2105232650, - "Guest_HG_Sinbad_Skeleton_25_02": 492722834, - "Guest_HG_Sinbad_Skeleton_50_02": 44148090, - "Guest_HG_Sinbad_Skeleton_75_02": 1117889902, - "Guest_HG_Sinbad_Skeleton_100_02": 2044247302, - "Guest_HG_Sinbad_Skeleton_130_02": 2044247306, - "Guest_DD-AV01-WyrmBoss": 1648677986, - "Guest_DD-AV01-WyrmBoss-20": 1926730850, - "Guest_DD-AV01-WyrmBoss-40": 1927779426, - "Guest_DD-AV01-WyrmBoss-60": 1928828002, - "Guest_DD-AV01-WyrmBoss-80": 1921487970, - "Guest_RH-Wyrm-Boss-01": 1027277645, - "Guest_RH-Wyrm-Boss-20": 1027277660, - "Guest_RH-Wyrm-Boss-40": 1027277663, - "Guest_RH-Wyrm-Boss-60": 1027277662, - "Guest_RH-Wyrm-Boss-80": 1027277657, - "Guest_HG_Sinbad_Wyrm_25": 1101443356, - "Guest_HG_Sinbad_Wyrm_50": 1101528860, - "Guest_HG_Sinbad_Wyrm_75": 1101445916, - "Guest_HG_Sinbad_Wyrm_100": 1093138204, - "Guest_HG_Sinbad_Wyrm_130": 1093089052, - "Guest_KH-Treant-1": 2001244331, - "Guest_KH-Treant-60": 1968148651, - "Guest_KH-Treant-40": 1968017579, - "Guest_KH-Treant-20": 1967886507, - "Guest_KH-Treant-80": 1967231147, - "Guest_DD-PA01-ForestGrump": 1969685870, - "Guest_DD-PA01-ForestGrump-20": 714666713, - "Guest_DD-PA01-ForestGrump-40": 714666689, - "Guest_DD-PA01-ForestGrump-60": 714666697, - "Guest_DD-PA01-ForestGrump-80": 714666737, - "Guest_DD-PA01-ForestNymphs": 227087348, - "Guest_DD-PA01-ForestNymphs-20": 227023552, - "Guest_DD-PA01-ForestNymphs-60": 227023040, - "Guest_DD-PA01-ForestNymphs-80": 227024832, - "Guest_SC-Pig-BalanceWizardA-1": 475456968, - "Guest_SC-Pig-BalanceWizardA-20": 477550024, - "Guest_SC-Pig-BalanceWizardA-40": 477541832, - "Guest_SC-Pig-BalanceWizardA-60": 477533640, - "Guest_SC-Pig-BalanceWizardA-80": 477525448, - "Guest_SC-Pig-BalanceWizardB-1": 475456964, - "Guest_SC-Pig-BalanceWizardB-20": 477550020, - "Guest_SC-Pig-BalanceWizardB-40": 477541828, - "Guest_SC-Pig-BalanceWizardB-60": 477533636, - "Guest_SC-Pig-BalanceWizardB-80": 477525444, - "Guest_SC-Pig-BalanceWizardC-1": 475456960, - "Guest_SC-Pig-BalanceWizardC-20": 477550016, - "Guest_SC-Pig-FireWizard-1": 2048176291, - "Guest_SC-Pig-FireWizard-20": 2031399073, - "Guest_SC-Pig-FireWizard-40": 2132062369, - "Guest_SC-Pig-FireWizard-60": 2098507937, - "Guest_SC-Pig-FireWizard-80": 1930735777, - "Guest_SC-Pig-IceWizardF-1": 1178687744, - "Guest_SC-Pig-IceWizardF-20": 1161910526, - "Guest_SC-Pig-IceWizardF-40": 1128356094, - "Guest_SC-Pig-IceWizardF-60": 1094801662, - "Guest_SC-Pig-IceWizardF-80": 1329682686, - "Guest_SC-Pig-MythWizard-1": 2048492725, - "Guest_SC-Pig-MythWizard-20": 2031715511, - "Guest_SC-Pig-MythWizard-40": 2132378807, - "Guest_SC-Pig-MythWizard-60": 2098824375, - "Guest_SC-Pig-MythWizard-80": 1931052215, - "Guest_SC-Pig-StormWizardF-1": 1743849420, - "Guest_SC-Pig-StormWizardF-20": 1743851464, - "Guest_SC-Pig-StormWizardF-40": 1743851488, - "Guest_SC-Pig-StormWizardF-60": 1743851480, - "Guest_SC-Pig-StormWizardF-80": 1743851504, - "Guest_KH-Pig-Bandit-Lord-1": 1080496628, - "Guest_KH-Pig-Bandit-Lord-20": 543625652, - "Guest_KH-Pig-Bandit-Lord-40": 530116172, - "Guest_KH-Pig-Bandit-Lord-60": 1603857996, - "Guest_KH-Pig-Bandit-Lord-80": 1617367475, - "Guest_KH-Pig-Bandit-Ninja-1": 1945100907, - "Guest_KH-Pig-Bandit-Ninja-20": 1945102951, - "Guest_KH-Pig-Bandit-Ninja-40": 1945102975, - "Guest_KH-Pig-Bandit-Ninja-60": 1945102967, - "Guest_KH-Pig-Bandit-Ninja-80": 1945102927, - "Guest_KH-Pig-War-Caster-1": 656859765, - "Guest_KH-Pig-War-Caster-20": 606528119, - "Guest_KH-Pig-War-Caster-40": 572973687, - "Guest_KH-Pig-War-Caster-60": 539419255, - "Guest_KH-Pig-War-Caster-80": 774300279, - "Guest_KH-Pig-War-Warrior-Boss-1": 16342355, - "Guest_KH-Pig-War-Warrior-Boss-20": 2143724205, - "Guest_KH-Pig-War-Warrior-Boss-40": 2118558381, - "Guest_KH-Pig-War-Warrior-Boss-60": 2126946989, - "Guest_KH-Pig-War-Warrior-Boss-80": 2101781165, - "Guest_SC-Pig-BalanceWizardC-40": 477541824, - "Guest_SC-Pig-BalanceWizardC-60": 477533632, - "Guest_SC-Pig-BalanceWizardC-80": 477525440, - "Guest_KH-Helephant-Death-20": 1109389719, - "Guest_KH-Helephant-Death-40": 2111835753, - "Guest_KH-Helephant-Death-60": 1038093929, - "Guest_KH-Helephant-Death-80": 35647896, - "Guest_KH-GreyOgre-Spider-1": 356368404, - "Guest_KH-GreyOgre-Spider-20": 1966981204, - "Guest_KH-GreyOgre-Spider-40": 1254244268, - "Guest_KH-GreyOgre-Spider-60": 180502444, - "Guest_KH-GreyOgre-Spider-80": 893239379, - "Guest_HG_Sinbad_Colossus_25": 1190802829, - "Guest_HG_Sinbad_Colossus_50": 1493551719, - "Guest_HG_Sinbad_Colossus_75": 419809907, - "Guest_HG_Sinbad_Colossus_100": 653933977, - "Guest_HG_Sinbad_Colossus_130": 653933973, - "Guest_NV_Dino_AberrantUndead_A_01": 2035087398, - "Guest_NV_Hellephant_Aberrant_A_01": 989522333, - "Guest_NV_Hellephant_Aberrant_A_02": 989522334, - "Guest_NV_BananaSpider_Base_A_01": 1585810541, - "Guest_NV_BananaSpider_Base_A_02": 1581616237, - "Guest_NV_BananaSpider_Base_A_03": 1577421933, - "Guest_NV_BananaSpider_Base_A_04": 1606782061, - "Guest_NV_BananaSpider_Base_A_05": 1602587757, - "Guest_NV_Wyrm_Aberrant_A_01": 16108415, - "Guest_NV_Monkey_Zombie_A_01": 1854775300, - "Guest_NV_Monkey_Zombie_A_02": 1854775304, - "Guest_NV_Monkey_Zombie_A_03": 1854775308, - "Guest_NV_Monkey_Zombie_A_04": 1854775312, - "MNT_Flag_Monster": 867940056, - "Guest_SKB_WY_DarkBramble_A_30": 2046798767, - "Guest_SKB_WY_DarkBramble_A_50": 2046797999, - "Guest_SKB_WY_DarkBramble_A_100": 2044701359, - "Guest_SKB_WY_DarkBramble_A_150": 2044721839, - "Guest_SKB_GH_Boar_A_30": 1547921275, - "Guest_SKB_WC_SpiritIgnorance_A_50": 1488876986, - "Guest_SKB_WC_SpiritIgnorance_A_100": 2025748410, - "Guest_SKB_WC_SpiritIgnorance_A_150": 2025748413, - "Guest_SKB_DS_Loremaster_A_50": 527751539, - "Guest_SKB_DS_Loremaster_A_100": 527817059, - "Guest_SKB_DS_Loremaster_A_150": 527817699, - "Guest_SKB_CL_Dan_A_50": 637418706, - "Guest_SKB_CL_Dan_A_60": 1510064941, - "Guest_SKB_CL_Dan_A_100": 637410512, - "Guest_SKB_CL_Dan_A_150": 637410432, - "Guest_SKB_AV_Spectre_A_50": 2104631195, - "Guest_SKB_AV_Spectre_A_100": 2102534041, - "Guest_SKB_AV_Spectre_A_150": 2018647961, - "Guest_SKB_MS_Samoorai_A_50": 2029641915, - "Guest_SKB_MS_Samoorai_A_100": 2096750843, - "Guest_SKB_MS_Samoorai_A_150": 587603717, - "Transformation_BG_Krok_StromTemplate": 1317694546, - "PP_ChineseRabbit": 382941643, - "PP_ParadeElf": 1036247808, - "MNT_HeartSwarm": 918199310, - "MNT_SpringSOF2023": 1417178519, - "Transformation_BG_Elf_Death2Template": 1606653101, - "MNT_GummyBunny_D": 775840224, - "Transformation_BG_Krok_Life2Template": 747486212, - "PP_Flame": 959186933, - "PP_YachtRock": 1500927358, - "PP_PirateYachtRock": 1227549100, - "PP_ChickenMonster": 1845706534, - "PP_SnowHoppers_B": 1496460038, - "PP_SnowHoppers_C": 1496457990, - "MNT_Oarfish": 29720265, - "PP_RingTailedCat": 993143427, - "MNT_Fanboat": 19347694, - "MNT_MiniSub": 298697910, - "PP_DumboOctopus": 966435639, - "PP_Glowbug_Balance": 1405529577, - "PP_Glowbug_Death": 405117107, - "PP_Glowbug_Fire": 651698987, - "PP_Glowbug_Ice": 2124926395, - "PP_Glowbug_Life": 601367299, - "PP_Glowbug_Myth": 592978024, - "PP_Glowbug_Storm": 61190446, - "PP_DumboOctopus_B": 968448823, - "PP_DumboOctopus_C": 968383287, - "PP_BananaSpider_01": 1074383522, - "PP_BananaSpider_02": 1080674978, - "PP_BananaSpider_03": 1078577826, - "Guest_HG_NM_BeardDragon_Base_C_01": 82913785, - "Guest_HG_NM_BeardDragon_Base_C_02": 82913786, - "Guest_HG_NM_BeardDragon_Base_C_03": 82913787, - "Guest_HG_NM_Glowbug_Base_C_01": 544959703, - "Guest_HG_NM_Glowbug_Base_C_02": 544955607, - "Guest_HG_NM_Glowbug_Base_C_03": 544951511, - "Guest_HG_NM_Glowbug_Base_C_04": 544947415, - "Guest_HG_NM_Glowbug_Base_C_05": 544943319, - "Guest_HG_NM_Glowbug_Base_C_06": 544939223, - "Guest_HG_NM_Glowbug_Base_C_07": 544935127, - "MNT_BouquetofFlowers": 1511180560, - "PP_Piggle_Rainbow": 91081383, - "MNT_Sabertooth_FlameSaber": 1949516909, - "Guest_HG_NM_BeardDragon_Base_A_01": 83175929, - "Guest_HG_NM_BeardDragon_Base_A_02": 83175930, - "Guest_HG_NM_BeardDragon_Base_A_03": 83175931, - "Guest_HG_NM_BeardDragon_Base_B_01": 83044857, - "Guest_HG_NM_BeardDragon_Base_B_02": 83044858, - "Guest_HG_NM_BeardDragon_Base_B_03": 83044859, - "Guest_HG_NM_Glowbug_Base_B_01": 8088791, - "Guest_HG_NM_Glowbug_Base_B_02": 8084695, - "Guest_HG_NM_Glowbug_Base_B_03": 8080599, - "Guest_HG_NM_Glowbug_Base_B_04": 8076503, - "Guest_HG_NM_Glowbug_Base_B_05": 8072407, - "Guest_HG_NM_Glowbug_Base_B_06": 8068311, - "Guest_HG_NM_Glowbug_Base_B_07": 8064215, - "Guest_HG_NM_Glowbug_Base_A_01": 1618701527, - "Guest_HG_NM_Glowbug_Base_A_02": 1618697431, - "Guest_HG_NM_Glowbug_Base_A_03": 1618693335, - "Guest_HG_NM_Glowbug_Base_A_04": 1618689239, - "Guest_HG_NM_Glowbug_Base_A_05": 1618685143, - "Guest_HG_NM_Glowbug_Base_A_06": 1618681047, - "Guest_HG_NM_Glowbug_Base_A_07": 1618676951, - "MNT_SummerSOF2023": 1636120912, - "PP_Cyclops_Fire": 7821755, - "PP_Death_Elf": 1535744155, - "PP_Newt": 1438123483, - "PP_Echidna": 735439358, - "MNT_Wombat": 580544786, - "Transformation_BG_NinjaPig_Balance": 1799661438, - "Transformation_BG_Cyclops_Ice": 647975824, - "Transformation_BG_Minotaur_Storm": 1005667041, - "Transformation_GR_Parasaur_Priest_Ice": 1101466351, - "Transformation_GR_Parasaur_Priest_Fire": 892193041, - "Transformation_GR_Parasaur_Priest_Storm": 1525882116, - "Transformation_GR_Parasaur_Priest_Balance": 1127637476, - "Guest_GR_AZ_Parasaur_Undead_B_01": 322587487, - "MNT_WitchCat": 1167097888, - "PP_RolyPoly": 578538330, - "PP_Capybara_B": 628131532, - "MNT_OutbackTruck": 1815527801, - "PP_PoodleSailor": 2137704795, - "MNT_PolarianCannon": 2103490826, - "PP_TazmanianDevil": 1773548765, - "Guest_SKB_AZ_Ixcax_A_100": 556560994, - "Guest_SKB_AZ_Ixcax_A_150": 556610146, - "Guest_SKB_AZ_Ixcax_A_50": 564951650, - "MNT_GhoulsShovel": 2035610946, - "PP_CrystalBdayDragon": 1897078804, - "PP_SunGobblerBall": 1522469440, - "PP_Sun_GreenGobbler": 1337690394, - "MNT_2P_AutumnTreant": 1063435527, - "PP_AutumnTreant": 561077291, - "MNT_FlyingMonkey": 490807393, - "PP_BabyPlantMonster": 2076646587, - "MNT_PlantCreature_A": 1802823265, - "Transformation_BG_Fairy_Fire": 2065252898, - "Transformation_BG_Krok_Myth": 277926564, - "Transformation_BG_RatThief_Life": 1167758651, - "Transformation_BG_Elf_Balance": 1628238937, - "Transformation_BG_Colossus_Death": 184392004, - "Transformation_FortressPod": 139738335, - "P_Wombat_POLYMORPH": 1132264953, - "PP_SharkWobbegong": 1994247222, - "PP_ChineseNYDragon": 1126999021, - "PP_JingleBellRock": 1076037919, - "PP_Krok_Mummy_Myth": 438487583, - "PP_Cyclops_Ice": 1476966187, - "MNT_OutbackTruckB": 1813299577, - "MNT_EvilSnowmanBall": 758818712, - "MNT_ThanksgivingGobbler": 1760011910, - "Guest_WL_Ghost_LostSoul_A_01": 1224111704, - "Guest_WL_Kangaroo_Drover_F_01": 2025562931, - "Guest_WL_Spider_WarriorMage_C_01": 1296557888, - "Guest_WL_Spider_WarriorMage_C_02": 1430775616, - "Guest_WL_Spider_WarriorMage_C_03": 1564993344, - "Guest_WL_Spider_WarriorMage_C_04": 1699211072, - "Guest_WL_Spider_WarriorMage_C_05": 1833428800, - "Guest_WL_Spider_WarriorMage_C_06": 1967646528, - "Guest_WL_Spider_WarriorMage_C_07": 2101864256, - "Guest_SKB_KR_Lightbane_A_100": 837930677, - "Guest_SKB_KR_Lightbane_A_160": 837930669, - "Guest_SKB_KR_Lightbane_A_50": 1309555019, - "Transformation_WL_Phantasmanian_DevilTemplate": 384891502, - "MNT_2P_LeaflessTreant": 623083386, - "PP_Minotaur_Ice": 700151737, - "MNT_Scooter_G": 737125252, - "Guest_WL_Frog_Owner_B_01": 767864686, - "MNT_SilentKnight": 646654812, - "Guest_WL_TRex_Base_A_01": 1842562033, - "Guest_WL_TRex_Base_B_01": 304921616, - "PP_Groundhog": 108643243, - "Guest_NV_Unicorn_Guard_C_04": 1845621, - "MNT_EmuPunk": 647315080, - "MNT_HeartBalloon": 798826551, - "PP_ValentineHoppers": 968693964, - "MNT_SpringSOF2024_Heckhound": 453640548, - "Guest_AQ-Centaur-Arion": 1856508139, - "Guest_AQ-Centaur-Artemis": 333294011, - "Guest_AQ-Horse-Sea": 724896200, - "Guest_KR_Horse_Warlord_A_Bossfight": 1302284326, - "Guest_KR_Horse_Warlord_A_BossfightSP": 1300726822, - "Guest_KR_Zebra_Thrall_A": 1250265667, - "Guest_KR_Zebra_Thrall_A_Boss_Minion": 345677011, - "Guest_KR_Zebra_Thrall_A_Gallery": 1520303483, - "Guest_KH-Gray-Horse-40": 1802231403, - "Guest_KH-Gray-Horse-20": 1802231307, - "Guest_G14-BP-Unicorn_Fencer_Boss": 1602044152, - "Guest_Horse-Merc-Brown-L37": 1831175255, - "Guest_Horse-Merc-Tan-L39": 1363854837, - "Guest_Horse-Merc-Tan-L39-1": 2085275127, - "Guest_Horse-Merc-Gray-MSBoss-L39": 1863452041, - "Guest_Horse-Merc-Gray-L39": 2039135564, - "Guest_Horse-Merc-Tan-L38": 1363330549, - "Guest_WC_Horse_Mercenary_Roberto": 891924774, - "Guest_ZF-Nathi-Yellowstripe-R11": 1505157721, - "Guest_ZF-TseTse-Main-R11-Boss": 114927854, - "Guest_ZF-TseTse-Elephant-R11": 894147273, - "Guest_ZF-Zebra-Impi-Raider-R11": 1378242919, - "Guest_ZF-Zebra-Warrior-Male-R10-1": 1791906265, - "Guest_ZF-Zebra-Senzan-Zebu-R10-Boss": 373712721, - "Guest_ZF-Zebra-Shaka-Zebu-R10-Boss": 662142985, - "Guest_ZF-Zebra-Warrior-Female-R10-02": 1507835670, - "Guest_ZF-Zebra-Warrior-Male-R10": 47075786, - "Guest_ZF-Zebra-Warrior-Male-R10-02": 1791906714, - "Guest_ZF-Zebra-Warrior-Male-R10-03": 1791906746, - "Guest_ZF-Zebra-Warrior-Male-R10-05": 1791906682, - "Guest_ZF-Zebra-Warrior-Male-R10-2": 1791906268, - "Guest_ZF_Zebra_Spectral_Guardian-R11": 431970996, - "Guest_CC_Horse_Apoc_A_01": 644668374, - "Guest_CC_Horse_Apoc_B_01": 644668390, - "Guest_CC_Horse_Apoc_C_01": 644668406, - "Guest_CC_Horse_Apoc_D_01": 644668294, - "Guest_CC_Horse_Apoc_D_02": 645192582, - "Guest_CC_Unicorn_CorsairF_B_01": 1378532506, - "Guest_CC_Unicorn_Duelist_B_01": 64891542, - "Guest_CC_Unicorn_Guard_B_01": 1075063242, - "Guest_CC_Unicorn_Guard_B_02": 1075063238, - "Guest_CC_Unicorn_Guard_B_03": 1075063234, - "Guest_NV_Horse_HordeSoldier_A_01": 504396960, - "Guest_NV_Horse_HordeSoldier_A_02": 101743776, - "Guest_NV_Horse_HordeOfficer_A_01": 343600992, - "Guest_NV_Horse_HordeSoldier_A_03": 235961504, - "Guest_NV_Horse_HordeOfficer_A_02": 209383264, - "Guest_NV_Horse_AberrantTungAk_A_01": 952263441, - "Guest_NV_Horse_AberrantTungAk_A_02": 952263537, - "Guest_NV_Horse_TungAk_B_01": 1194718672, - "Guest_NV_Horse_TungAk_B_02": 657847760, - "Guest_NV_Horse_HordeOfficer_B_01": 343596896, - "Guest_NV_Horse_HordeOfficer_B_02": 209379168, - "Guest_NV_Horse_TungAk_A_01": 1194669520, - "Guest_NV_Unicorn_Guard_C_01": 1845601, - "Guest_NV_Unicorn_Guard_A_01": 797025, - "Guest_NV_Unicorn_AberrantGuard_A_01": 739851573, - "Guest_NV_Unicorn_Guard_C_02": 1845613, - "Guest_NV_Unicorn_Guard_C_03": 1845609, - "Guest_NV_Unicorn_AberrantGuard_A_02": 739848501, - "Guest_NV_Unicorn_Guard_A_02": 797037, - "Guest_NV_Unicorn_AberrantGuard_A_03": 739849525, - "Guest_NV_Unicorn_AberrantGuard_A_04": 739846453, - "Guest_NV_Horse_HordeOfficer_A_03": 75165536, - "Guest_NV_Horse_HordeSoldier_A_04": 907050144, - "Guest_NV_Horse_HordeSoldier_A_05": 1041267872, - "Guest_NV_Horse_HordeSoldier_C_01": 504388768, - "Guest_HG_TRAIN_Horse_MustangFencerF_A_Balance_50": 871182987, - "Guest_HG_TRAIN_Horse_MustangFencerF_A_Balance_75": 871176715, - "Guest_HG_TRAIN_Horse_MustangFencerF_A_Life_100": 886489645, - "Guest_HG_TRAIN_Horse_MustangFencerF_A_Balance_25": 871177035, - "Guest_HG_TRAIN_Horse_MustangFencerF_A_Balance_100": 872231819, - "Guest_HG_TRAIN_Horse_MustangFencerF_A_Life_140": 1960231469, - "Guest_HG_TRAIN_Horse_MustangFencerF_B_100": 2089957067, - "Guest_HG_TRAIN_Horse_MustangFencerF_A_Life_25": 1700184589, - "Guest_HG_TRAIN_Horse_MustangFencerF_A_Life_50": 920044045, - "Guest_HG_TRAIN_Horse_MustangFencerF_A_Life_75": 1742127629, - "Guest_HG_TRAIN_Horse_MustangFencerF_A_Balance_140": 872223627, - "Guest_HG_TRAIN_Horse_MustangFencerF_B_50": 2089952970, - "Guest_HG_TRAIN_Horse_MustangFencerF_B_75": 57530654, - "Guest_HG_TRAIN_Horse_MustangFencerF_B_140": 2089957099, - "Guest_HG_TRAIN_Horse_MustangFencerF_B_25": 1131272477, - "Guest_LM_Horse_Explorer_A_01_Hard": 1711837140, - "Guest_WL_Unicorn_Guard_A_01": 1074538935, - "Guest_WL_Unicorn_CorsairF_E_01": 1378532603, - "Guest_WL_Unicorn_Warlord_A_01": 1321310496, - "Guest_KH-Gray-Horse-1": 1802239547, - "Guest_KH-Gray-Horse-60": 1802231371, - "Guest_KH-Gray-Horse-80": 1802231467, - "Transformation_BG_NinjaPig_Ice": 186026527, - "Transformation_BG_Cyclops_Storm": 897316984, - "PP_MinotaurBalance": 1344665951, - "PP_OrthusMoon": 1804503950, - "PP_CoolPineapple": 1149318906, - "PP_TwinkleStars": 766378011, - "PP_Scroll": 1613313091, - "PP_Colossus_Death": 40713075, - "PP_ColossusDeath": 530964029, - "PP_KILiveRock": 1975550570, - "MNT_Outrigger": 1417937299, - "MNT_BookWyrm": 2080129190, - "MNT_RacingSnail": 1996220963, - "MNT_UmbrellaCloud": 145762615, - "PP_PropellerCat": 2094718580, - "MNT_TRex_Shirt": 586746001, - "MNT_Swarm_Bee": 1625228695, - "MNT__CelestialMoon": 968360256, - "Guest_ME_Sinbad_IronSultan_150": 2001676223, - "Guest_ME_Sinbad_Cyclops_150": 1968943689, - "Guest_ME_Sinbad_Skeleton_150": 1031490819, - "Guest_ME_Sinbad_Colossus_150": 1727675806, - "Guest_ME_Sinbad_Skeleton_150_02": 970505475, - "Guest_ME_Sinbad_Wyrm_150": 19314443, - "Guest_ZF-Zebra-Inzinzebu-Bandit-R11": 430262550, - "Guest_ZF-Zebra-Warrior-Male-R10-04": 1791906650, - "PP_TwinkleStars_02": 805304347, - "PP_TwinkleStars_03": 803207195, - "PP_TwinkleStars_01": 799012891, - "Transformation_BodleianHarrow": 609627870, - "Guest_HG_Gryphon_OwlStatue_A_01_L170": 77756046, - "Guest_HG_Gryphon_OwlStatue_A_02_L170": 73561742, - "Guest_HG_Gryphon_OwlStatue_A_01_L100": 77752974, - "Guest_HG_Gryphon_OwlStatue_A_02_L100": 73558670, - "Guest_HG_Gryphon_OwlStatue_A_01_L50": 78277134, - "Guest_HG_Gryphon_OwlStatue_A_02_L50": 74082830, - "MNT_SummerSOF2024_JudgementWings": 1078163967, - "MNT_Pegasus_E": 131704054, - "MNT_PolarisHero": 665176426, - "PP_Duckana": 1128961578, - "PP_QueenBee": 833291695, - "Transformation_BG_Draconian_Balance": 2078940682, - "Transformation_BG_WolfWarrior_Fire": 1762248682, - "Transformation_BG_Minotaur_Death": 309090657, - "PP_WolfWarrior_Fire": 685685256, - "PP_WolfWarrior_Death": 1857202724, - "Guest_ME-GTAV01-WyrmBoss-150": 1482208618, - "Guest_ME_SpectreOfB_L150": 684104791, - "Guest_ME_MD_MacDeath_L150": 1128977615, - "Guest_ME_Pig_BalanceWizardA_L150": 959913724, - "Guest_ME_Pig_BalanceWizardB_L150": 959913712, - "Guest_ME_Pig_BalanceWizardC_L150": 959913716, - "Guest_ME_Pig_FireWizard_L150": 964392255, - "Guest_ME_Pig_IceWizardF_L150": 86941026, - "Guest_ME_Pig_MythWizard_L150": 964051241, - "Guest_ME_Pig_StormWizardF_L150": 2016383602, - "Guest_ME_Clock_Clockworker_L150": 1424569772, - "Guest_ME_Clock_ClockworkSpanner_L150": 1966824609, - "Guest_ME_Clock_Lugs_L150": 370290904, - "Guest_ME_Clock_Lucia_L150": 1857768409, - "MNT_EvilChair": 339577702, - "PP_Cyclops_Storm": 621464512, - "PP_Krokomummy_Life": 462432735, - "Transformation_CL_Rematch_Crustacean": 1686865207, - "Transformation_CL_Rematch_Protector": 1893951532, - "Transformation_CL_Rematch_Angler": 120412196, - "Transformation_CL_Rematch_Piscean": 1624106070, - "Transformation_Zebra_Template": 1900548493, - "Transformation_Zebra2_Template": 325099540, - "Transformation_Zebra3_Template": 325099524, - "Transformation_Zebra4_Template": 325099636, - "MNT_SweetSixteenBirthday": 1009398096, - "MNT_2P_TRex_Bones": 1618543266, - "MNT_SpringBumperCar": 1725007788, - "PP_WinterGoblin": 2025052443, - "PP_OnyxAnubis": 1552575189, - "PP_OttomanCat": 223541582, - "MNT_HolidayYeti": 780983974, - "MNT_IceSled": 979912604, - "MNT_TurtleDoves": 1850191638, - "MNT_KrokChariot": 559783620, - "MNT_Mustang": 1775949401, - "MNT_PumpkinBall": 382849054, - "Transformation_BG_Fairy_Storm": 836920873, - "Transformation_BG_Elf_Myth": 1506493664, - "Transformation_NinjaPig_Life": 816802847, - "Transformation_BG_Krok_Fire": 1060580712, - "Transformation_BG_Colossus_Balance": 1067963041, - "Transformation_BG_NinjaPig_Life": 441460895, - "PP_Penguin_03": 1623028104, - "Transformation_Duck_Librarian_B": 864067551, - "Transformation_Duck_Librarian_A": 859873247, - "Transformation_Duck_Adventurer": 194560769, - "Transformation_Gummy_Bunny_C": 1298087941, - "Transformation_Frog_Horned_A": 837201339, - "Transformation_Glowbug_Storm": 2096380446, - "Transformation_Marshmallow_Critter_A": 1036335317, - "Transformation_Snipe_Base_B": 232132109, - "Transformation_Snowball": 915248481, - "Transformation_Wombat_Base": 333435450, - "Transformation_Human_Malistaire": 1414887773, - "Transformation_Morganthe_E": 1745180054, - "Transformation_Spider_Grandfather": 1131773979, - "Transformation_Khrulhu_Dasein_B": 367878762, - "Transformation_Devourer_Base": 698770016, - "Transformation_Alien_Meteor": 638746168, - "Transformation_Nightmare_Malus": 704212821, - "Transformation_Daemon_Personal": 278266463, - "PP_ValentinesDay": 810003364, - "PP_BabyHippo": 422858138, - "PP_Aardwold": 1592150119, - "PP_Aardwold_C": 1902528613, - "MNT_Cobra": 472847981, - "MNT_Serpopard": 1629558909, - "MNT_Serpopard_B": 1629556867, - "MNT_Serpopard_C": 1629556931, - "PP_Fairy_Fire": 1847789544, - "MNT_Mustang_B": 1448793691, - "PP_FireElfMyth": 1933609060, - "MNT_KT-BoatRide": 1560860110 - } - } - } - }, - "1392351367": { - "name": "class InfractionMessageBoxInfo*", - "bases": [ - "InfractionPenaltyInfo", - "PropertyClass" - ], - "hash": 1392351367, - "properties": { - "m_addAtPointValue": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1071217084 - }, - "m_removeAtPointValue": { - "type": "float", - "id": 1, - "offset": 76, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2112196961 - }, - "m_lifespan": { - "type": "std::string", - "id": 2, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3042809453 - }, - "m_titleKey": { - "type": "std::string", - "id": 3, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3096106918 - }, - "m_messageKey": { - "type": "std::string", - "id": 4, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3561518217 - } - } - }, - "1796755863": { - "name": "class DynamicURLWhitelist", - "bases": [ - "PropertyClass" - ], - "hash": 1796755863, - "properties": { - "m_whitelist": { - "type": "class DynamicURLDescriptor", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2741681576 - } - } - }, - "635107250": { - "name": "class DerbyAddObstacle", - "bases": [ - "DerbyEffect", - "PropertyClass" - ], - "hash": 635107250, - "properties": { - "m_buffType": { - "type": "enum DerbyTalentBuffType", - "id": 0, - "offset": 92, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1149251982, - "enum_options": { - "Buff": 0, - "Debuff": 1, - "Neither": 2 - } - }, - "m_kTarget": { - "type": "enum DerbyTargetType", - "id": 1, - "offset": 96, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1807803351, - "enum_options": { - "kTargetInFront": 0, - "kTargetBehind": 1, - "kTargetFirst": 2, - "kTargetSelf": 3, - "kTargetAll": 4, - "kTargetLast": 5 - } - }, - "m_nDuration": { - "type": "int", - "id": 2, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1110167982 - }, - "m_effectID": { - "type": "unsigned int", - "id": 3, - "offset": 88, - "flags": 24, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2347630439 - }, - "m_imageFilename": { - "type": "std::string", - "id": 4, - "offset": 112, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2813328063 - }, - "m_iconIndex": { - "type": "unsigned int", - "id": 5, - "offset": 144, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1265133262 - }, - "m_soundOnActivate": { - "type": "std::string", - "id": 6, - "offset": 152, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1956929714 - }, - "m_soundOnTarget": { - "type": "std::string", - "id": 7, - "offset": 184, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3444214056 - }, - "m_targetParticleEffect": { - "type": "std::string", - "id": 8, - "offset": 216, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3048234723 - }, - "m_overheadMessage": { - "type": "std::string", - "id": 9, - "offset": 248, - "flags": 8388639, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1701018190 - }, - "m_requirements": { - "type": "class RequirementList", - "id": 10, - "offset": 280, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2840988582 - }, - "m_lane": { - "type": "enum DerbyLaneEffect", - "id": 11, - "offset": 376, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1075628144, - "enum_options": { - "kLaneRandomONE": 0, - "kLaneAll": 1, - "kLaneMine": 2 - } - }, - "m_obstacleType": { - "type": "unsigned __int64", - "id": 12, - "offset": 384, - "flags": 33554439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2219764488 - }, - "m_nObstacleAmount": { - "type": "int", - "id": 13, - "offset": 392, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 52937033 - } - } - }, - "1391905761": { - "name": "class SharedPointer", - "bases": [ - "MatchActorResult", - "PropertyClass" - ], - "hash": 1391905761, - "properties": { - "m_pActor": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1115051967 - }, - "m_place": { - "type": "int", - "id": 1, - "offset": 88, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 806257663 - }, - "m_ratingGained": { - "type": "int", - "id": 2, - "offset": 92, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1426436071 - }, - "m_arenaPoints": { - "type": "int", - "id": 3, - "offset": 96, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 511478910 - }, - "m_pvpCurrency": { - "type": "int", - "id": 4, - "offset": 100, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 611304283 - }, - "m_pvpTourneyCurrency": { - "type": "int", - "id": 5, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1184787505 - }, - "m_gold": { - "type": "int", - "id": 6, - "offset": 108, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 219423808 - }, - "m_gameResult": { - "type": "unsigned char", - "id": 7, - "offset": 112, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1417654793 - } - } - }, - "1796405193": { - "name": "class DynamicSigilSubcircle", - "bases": [ - "PropertyClass" - ], - "hash": 1796405193, - "properties": { - "m_id": { - "type": "int", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2090586215 - }, - "m_teamIndex": { - "type": "int", - "id": 1, - "offset": 76, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1621537177 - }, - "m_rotation": { - "type": "float", - "id": 2, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1497468551 - }, - "m_radius": { - "type": "float", - "id": 3, - "offset": 84, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 989410271 - }, - "m_locationPreference": { - "type": "std::string", - "id": 4, - "offset": 88, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2817699507 - }, - "m_symbol": { - "type": "enum DynamicSigilSymbol", - "id": 5, - "offset": 120, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1055639026, - "enum_options": { - "NotSet": 0, - "Dagger": 1, - "Key": 2, - "Gem": 3, - "Spiral": 4, - "Book": 5, - "Chalice": 6, - "Wand": 7, - "Potion": 8, - "Sun": 9, - "Eye": 10, - "Star": 11, - "Moon": 12 - } - } - } - }, - "231777837": { - "name": "class ClientClearHangingEffectsCinematicAction*", - "bases": [ - "ClearHangingEffectsCinematicAction", - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 231777837, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - } - } - }, - "635261917": { - "name": "class std::list >", - "bases": [], - "hash": 635261917, - "properties": {} - }, - "1018214453": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1018214453, - "properties": { - "m_items": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1610486152 - }, - "m_requestHandle": { - "type": "gid", - "id": 1, - "offset": 88, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 563564461 - } - } - }, - "231777453": { - "name": "class ClientClearHangingEffectsCinematicAction", - "bases": [ - "ClearHangingEffectsCinematicAction", - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 231777453, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - } - } - }, - "1797086702": { - "name": "class SharedPointer", - "bases": [ - "GoalTemplate", - "CoreTemplate", - "PropertyClass" - ], - "hash": 1797086702, - "properties": { - "m_behaviors": { - "type": "class BehaviorTemplate*", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1197808594 - }, - "m_goalName": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1521627807 - }, - "m_goalNameID": { - "type": "unsigned int", - "id": 2, - "offset": 496, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 403158846 - }, - "m_goalTitle": { - "type": "std::string", - "id": 3, - "offset": 136, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2291910240 - }, - "m_goalUnderway": { - "type": "std::string", - "id": 4, - "offset": 168, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3153144269 - }, - "m_hyperlink": { - "type": "std::string", - "id": 5, - "offset": 200, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2887798993 - }, - "m_completeText": { - "type": "std::string", - "id": 6, - "offset": 232, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2767458393 - }, - "m_completeResults": { - "type": "class ResultList*", - "id": 7, - "offset": 440, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1964258099 - }, - "m_goalRequirements": { - "type": "class RequirementList*", - "id": 8, - "offset": 448, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2979967145 - }, - "m_tallyCounter": { - "type": "class TallyCounterTemplate*", - "id": 9, - "offset": 456, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1884546193 - }, - "m_locationName": { - "type": "std::string", - "id": 10, - "offset": 272, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1824218389 - }, - "m_displayImage1": { - "type": "std::string", - "id": 11, - "offset": 304, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1959572133 - }, - "m_displayImage2": { - "type": "std::string", - "id": 12, - "offset": 336, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1959572134 - }, - "m_clientTags": { - "type": "std::string", - "id": 13, - "offset": 368, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2319030025 - }, - "m_genericEvents": { - "type": "std::string", - "id": 14, - "offset": 384, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 3466670829 - }, - "m_autoQualify": { - "type": "bool", - "id": 15, - "offset": 400, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1878907431 - }, - "m_autoComplete": { - "type": "bool", - "id": 16, - "offset": 401, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1302545445 - }, - "m_destinationZone": { - "type": "std::string", - "id": 17, - "offset": 408, - "flags": 268435463, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2605356153, - "enum_options": { - "__BASECLASS": "ZoneData" - } - }, - "m_dialogList": { - "type": "class ActorDialogListBase*", - "id": 18, - "offset": 264, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1909154969 - }, - "m_goalType": { - "type": "enum GoalTemplate::GOAL_TYPE", - "id": 19, - "offset": 96, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1488021149, - "enum_options": { - "GOAL_TYPE_UNKNOWN": 0, - "GOAL_TYPE_BOUNTY": 1, - "GOAL_TYPE_BOUNTYCOLLECT": 2, - "GOAL_TYPE_SCAVENGE": 3, - "GOAL_TYPE_PERSONA": 4, - "GOAL_TYPE_WAYPOINT": 5, - "GOAL_TYPE_SCAVENGEFAKE": 6, - "GOAL_TYPE_ACHIEVERANK": 7, - "GOAL_TYPE_USAGE": 8, - "GOAL_TYPE_COMPLETEQUEST": 9, - "GOAL_TYPE_SOCIARANK": 10, - "GOAL_TYPE_SOCIACURRENCY": 11, - "GOAL_TYPE_SOCIAMINIGAME": 12, - "GOAL_TYPE_SOCIAGIVEITEM": 13, - "GOAL_TYPE_SOCIAGETITEM": 14, - "GOAL_TYPE_COLLECTAFTERBOUNTY": 15, - "GOAL_TYPE_ENCOUNTER_WAYPOINT_FOREACH": 16 - } - }, - "m_noQuestHelper": { - "type": "bool", - "id": 20, - "offset": 500, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 578010882, - "enum_options": { - "__DEFAULT": 0 - } - }, - "m_petOnlyQuest": { - "type": "bool", - "id": 21, - "offset": 501, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 679359344, - "enum_options": { - "__DEFAULT": 0 - } - }, - "m_activateResults": { - "type": "class ResultList*", - "id": 22, - "offset": 504, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3790153995 - }, - "m_hideGoalFloatyText": { - "type": "bool", - "id": 23, - "offset": 512, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1919383204, - "enum_options": { - "__DEFAULT": 0 - } - }, - "m_itemAdjectives": { - "type": "std::string", - "id": 24, - "offset": 528, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1723744652 - }, - "m_itemTotal": { - "type": "int", - "id": 25, - "offset": 520, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1809457197 - } - } - }, - "1019731476": { - "name": "class PetDerbyObstacleBehaviorTemplate*", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 1019731476, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - }, - "m_actionType": { - "type": "enum PetDerbyActions", - "id": 1, - "offset": 120, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2398162476, - "enum_options": { - "PDA_None": 0, - "PDA_Duck": 2, - "PDA_Jump": 1 - } - }, - "m_canDestroy": { - "type": "bool", - "id": 2, - "offset": 124, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1271539151 - }, - "m_decisionRadius": { - "type": "float", - "id": 3, - "offset": 128, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 104770413 - }, - "m_moraleIncrease": { - "type": "int", - "id": 4, - "offset": 132, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 202238852 - }, - "m_spinEffect": { - "type": "std::string", - "id": 5, - "offset": 184, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1896457826 - }, - "m_impactSound": { - "type": "std::string", - "id": 6, - "offset": 216, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2087348962 - }, - "m_addToWorldSound": { - "type": "std::string", - "id": 7, - "offset": 248, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3324219384 - }, - "m_derbyEffectList": { - "type": "class SharedPointer", - "id": 8, - "offset": 136, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1276867926 - }, - "m_onActionSuccessEffectList": { - "type": "class SharedPointer", - "id": 9, - "offset": 152, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1046745620 - }, - "m_onActionFailEffectList": { - "type": "class SharedPointer", - "id": 10, - "offset": 168, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 901707255 - } - } - }, - "1421568713": { - "name": "class LoyaltyConfig*", - "bases": [ - "PropertyClass" - ], - "hash": 1421568713, - "properties": { - "m_loyaltyTierCount": { - "type": "int", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1322604645 - }, - "m_loyaltyTierDemotionTrigger": { - "type": "int", - "id": 1, - "offset": 76, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1427712879 - }, - "m_loyaltyTierLevelDuration": { - "type": "int", - "id": 2, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 599216410 - } - } - }, - "637473994": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 637473994, - "properties": { - "m_skyLayerCount": { - "type": "int", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 816414615 - }, - "m_skyLayerName": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2824410256 - }, - "m_clientTag": { - "type": "std::string", - "id": 2, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3409856790 - } - } - }, - "1408483926": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1408483926, - "properties": { - "m_numTemplates": { - "type": "int", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 837442809 - }, - "m_sellMod": { - "type": "float", - "id": 1, - "offset": 76, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1154061607 - }, - "m_buyMod": { - "type": "float", - "id": 2, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 387686375 - } - } - }, - "1399461061": { - "name": "class CrownShopData*", - "bases": [ - "PropertyClass" - ], - "hash": 1399461061, - "properties": { - "m_items": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2089538472 - }, - "m_crownShopLayout": { - "type": "class SharedPointer", - "id": 1, - "offset": 88, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2296174117 - }, - "m_recomendedItems": { - "type": "class SharedPointer", - "id": 2, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 971256066 - }, - "m_crownShopSegReqsSummary": { - "type": "class SharedPointer", - "id": 3, - "offset": 120, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2152734186 - }, - "m_wishlistMaxSize": { - "type": "int", - "id": 4, - "offset": 136, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 590778194 - }, - "m_wishlistSBExpansionSize": { - "type": "int", - "id": 5, - "offset": 140, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1131167734 - } - } - }, - "1798409544": { - "name": "class EmbeddedBrowserConfig*", - "bases": [ - "PropertyClass" - ], - "hash": 1798409544, - "properties": { - "m_sFallbackPage": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": true, - "pointer": false, - "hash": 1789796475 - }, - "m_entries": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": true, - "pointer": true, - "hash": 1210334404 - } - } - }, - "236598037": { - "name": "class BurnAuraCinematicAction", - "bases": [ - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 236598037, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - } - } - }, - "1020038651": { - "name": "class TreasureCardPosterBehaviorTemplate*", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 1020038651, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - }, - "m_materialName": { - "type": "std::string", - "id": 1, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1878140043 - }, - "m_alternateAssetName": { - "type": "std::string", - "id": 2, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2009140124 - } - } - }, - "1397593676": { - "name": "class AttachEffectToTurnIndicatorCinematicAction*", - "bases": [ - "CinematicAction", - "PropertyClass" - ], - "hash": 1397593676, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_minDuration": { - "type": "float", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1733171553 - }, - "m_assetName": { - "type": "std::string", - "id": 2, - "offset": 88, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513131580 - } - } - }, - "1798408264": { - "name": "class EmbeddedBrowserConfig", - "bases": [ - "PropertyClass" - ], - "hash": 1798408264, - "properties": { - "m_sFallbackPage": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": true, - "pointer": false, - "hash": 1789796475 - }, - "m_entries": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": true, - "pointer": true, - "hash": 1210334404 - } - } - }, - "235559991": { - "name": "class SharedPointer", - "bases": [ - "Window", - "PropertyClass" - ], - "hash": 235559991, - "properties": { - "m_sName": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306437263 - }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621225959 - }, - "m_Style": { - "type": "unsigned int", - "id": 2, - "offset": 152, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "SCALE_CHILDREN": 2, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "FOCUS_LOCKED": 64, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152 - } - }, - "m_Flags": { - "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } - }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3105139380 - }, - "m_fTargetAlpha": { - "type": "float", - "id": 5, - "offset": 212, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1809129834 - }, - "m_fDisabledAlpha": { - "type": "float", - "id": 6, - "offset": 216, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1389987675 - }, - "m_fAlpha": { - "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 482130755 - }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3623628394 - }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2102211316 - }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1846695875 - }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3389835433 - }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2547159940 - }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2587533771 - }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3091503757 - }, - "m_spell": { - "type": "class SharedPointer", - "id": 16, - "offset": 584, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1393190292 - }, - "m_spellName": { - "type": "std::string", - "id": 17, - "offset": 600, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2688485244 - }, - "m_grayscale": { - "type": "bool", - "id": 18, - "offset": 636, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 348289198 - } - } - }, - "652864668": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 652864668, - "properties": { - "m_minigames": { - "type": "class MinigameInfo*", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2928955645 - } - } - }, - "1020037115": { - "name": "class TreasureCardPosterBehaviorTemplate", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 1020037115, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - }, - "m_materialName": { - "type": "std::string", - "id": 1, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1878140043 - }, - "m_alternateAssetName": { - "type": "std::string", - "id": 2, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2009140124 - } - } - }, - "1396967034": { - "name": "class ClientQuantityBehavior*", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1396967034, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_quantity": { - "type": "int", - "id": 1, - "offset": 112, - "flags": 27, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 169215289 - } - } - }, - "232569253": { - "name": "class GuildMuseumExhibitInfo*", - "bases": [ - "PropertyClass" - ], - "hash": 232569253, - "properties": { - "m_displayName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2446900370 - }, - "m_tagName": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1542016824 - }, - "m_artifactList": { - "type": "class SharedPointer", - "id": 2, - "offset": 136, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 768482721 - } - } - }, - "647371914": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 647371914, - "properties": { - "m_fBackgroundAlpha": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1164086307 - }, - "m_pTopLeftBackgroundAlphaMask": { - "type": "class SharedPointer", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2652729643 - }, - "m_pTopRightBackgroundAlphaMask": { - "type": "class SharedPointer", - "id": 2, - "offset": 96, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2236264926 - }, - "m_pBottomLeftBackgroundAlphaMask": { - "type": "class SharedPointer", - "id": 3, - "offset": 112, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3301927117 - }, - "m_pBottomRightBackgroundAlphaMask": { - "type": "class SharedPointer", - "id": 4, - "offset": 128, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2184945088 - }, - "m_pBottomBackgroundAlphaMask": { - "type": "class SharedPointer", - "id": 5, - "offset": 144, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2408122274 - }, - "m_pTopBackgroundAlphaMask": { - "type": "class SharedPointer", - "id": 6, - "offset": 160, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3440742656 - }, - "m_pLeftBackgroundAlphaMask": { - "type": "class SharedPointer", - "id": 7, - "offset": 176, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2348634648 - }, - "m_pRightBackgroundAlphaMask": { - "type": "class SharedPointer", - "id": 8, - "offset": 192, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2938548331 - }, - "m_pCenterBackgroundAlphaMask": { - "type": "class SharedPointer", - "id": 9, - "offset": 208, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3347258414 - } - } - }, - "1394633293": { - "name": "class ReqIsSchool*", - "bases": [ - "ConditionalSpellEffectRequirement", - "Requirement", - "PropertyClass" - ], - "hash": 1394633293, - "properties": { - "m_applyNOT": { - "type": "bool", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1746328074, - "enum_options": { - "__DEFAULT": 0 - } - }, - "m_operator": { - "type": "enum Requirement::Operator", - "id": 1, - "offset": 76, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2672792317, - "enum_options": { - "ROP_AND": 0, - "ROP_OR": 1, - "__DEFAULT": "ROP_AND" - } - }, - "m_targetType": { - "type": "enum ConditionalSpellEffectRequirement::RequirementTarget", - "id": 2, - "offset": 80, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2547737902, - "enum_options": { - "RT_Caster": 0, - "RT_Target": 1 - } - }, - "m_magicSchoolName": { - "type": "std::string", - "id": 3, - "offset": 88, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2939083077 - } - } - }, - "232528293": { - "name": "class GuildMuseumExhibitInfo", - "bases": [ - "PropertyClass" - ], - "hash": 232528293, - "properties": { - "m_displayName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2446900370 - }, - "m_tagName": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1542016824 - }, - "m_artifactList": { - "type": "class SharedPointer", - "id": 2, - "offset": 136, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 768482721 - } - } - }, - "643466482": { - "name": "class CreateAuraActorCinematicAction*", - "bases": [ - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 643466482, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - }, - "m_newActorName": { - "type": "std::string", - "id": 2, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2029131039 - } - } - }, - "1393380106": { - "name": "class SharedPointer", - "bases": [ - "ZoneData", - "PropertyClass" - ], - "hash": 1393380106, - "properties": { - "m_nType": { - "type": "enum ZoneData::Type", - "id": 0, - "offset": 72, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2656861130, - "enum_options": { - "ZONETYPE_INVALID": 4294967295, - "ZONETYPE_START": 0, - "ZONETYPE_STATIC": 1, - "ZONETYPE_DYNAMIC": 2 - } - }, - "m_zoneName": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 134217735, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2171167736 - }, - "m_zoneDisplayName": { - "type": "std::string", - "id": 2, - "offset": 112, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1962339438 - }, - "m_skyDomeName": { - "type": "std::string", - "id": 3, - "offset": 144, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2339979448 - }, - "m_skyLayerName": { - "type": "std::string", - "id": 4, - "offset": 184, - "flags": 131079, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2824410256 - }, - "m_collisionFileName": { - "type": "std::string", - "id": 5, - "offset": 208, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1725365192 - }, - "m_gamebryoSceneFileName": { - "type": "std::string", - "id": 6, - "offset": 240, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3084395168 - }, - "m_musicFileName": { - "type": "std::string", - "id": 7, - "offset": 272, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1817607805 - }, - "m_spawnList": { - "type": "class SpawnPointTemplate", - "id": 8, - "offset": 304, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1063041926 - }, - "m_teleportList": { - "type": "class TeleporterTemplate", - "id": 9, - "offset": 320, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1031682046 - }, - "m_locationList": { - "type": "class LocationTemplate", - "id": 10, - "offset": 336, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2114141903 - }, - "m_objectList": { - "type": "class SharedPointer", - "id": 11, - "offset": 352, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 882782852 - }, - "m_allEffects": { - "type": "std::string", - "id": 12, - "offset": 368, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2483362772 - }, - "m_healingPerMinute": { - "type": "int", - "id": 13, - "offset": 480, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 782115659 - }, - "m_playerPopThresh": { - "type": "int", - "id": 14, - "offset": 484, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1692004900 - }, - "m_nSoftLimit": { - "type": "int", - "id": 15, - "offset": 488, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1593689635, - "enum_options": { - "__DEFAULT": 50 - } - }, - "m_nHardLimit": { - "type": "int", - "id": 16, - "offset": 492, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1752405446, - "enum_options": { - "__DEFAULT": 100 - } - }, - "m_farClip": { - "type": "float", - "id": 17, - "offset": 496, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1393981304, - "enum_options": { - "__DEFAULT": 25000 - } - }, - "m_nearClipOverride": { - "type": "float", - "id": 18, - "offset": 500, - "flags": 519, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1092806405, - "enum_options": { - "__DEFAULT": 1 - } - }, - "m_defaultBackgroundColorRed": { - "type": "float", - "id": 19, - "offset": 504, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1511995894 - }, - "m_defaultBackgroundColorGreen": { - "type": "float", - "id": 20, - "offset": 508, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2127637260 - }, - "m_defaultBackgroundColorBlue": { - "type": "float", - "id": 21, - "offset": 512, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1908873795 - }, - "m_fogColorRed": { - "type": "int", - "id": 22, - "offset": 516, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1578810896 - }, - "m_fogColorGreen": { - "type": "int", - "id": 23, - "offset": 520, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1229332710 - }, - "m_fogColorBlue": { - "type": "int", - "id": 24, - "offset": 524, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 557754685 - }, - "m_fogDensity": { - "type": "float", - "id": 25, - "offset": 528, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1170901171 - }, - "m_fogStartDensity": { - "type": "float", - "id": 26, - "offset": 532, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1642636961 - }, - "m_fogEnabled": { - "type": "bool", - "id": 27, - "offset": 536, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 563358906 - }, - "m_nObjectID": { - "type": "unsigned int", - "id": 28, - "offset": 540, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 748496927 - }, - "m_bDisableTransitionAutoHide": { - "type": "bool", - "id": 29, - "offset": 544, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 702738663 - }, - "m_encounterNames": { - "type": "std::string", - "id": 30, - "offset": 384, - "flags": 268435463, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2150841410, - "enum_options": { - "__BASECLASS": "EncounterTemplate" - } - }, - "m_encounterGroup": { - "type": "std::string", - "id": 31, - "offset": 400, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2143153595 - }, - "m_zoneAdjectives": { - "type": "std::string", - "id": 32, - "offset": 432, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 3603923993 - }, - "m_zonePermissions": { - "type": "std::string", - "id": 33, - "offset": 464, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2928923475 - }, - "m_canPlaceTeleportMarker": { - "type": "bool", - "id": 34, - "offset": 545, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 600985755 - }, - "m_filterSetUID": { - "type": "unsigned int", - "id": 35, - "offset": 548, - "flags": 33554695, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1054674497 - }, - "m_conditionalSkyboxes": { - "type": "class SkyboxInfo", - "id": 36, - "offset": 552, - "flags": 263, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2512765286 - }, - "m_musicDelay": { - "type": "float", - "id": 37, - "offset": 568, - "flags": 263, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1217785767 - }, - "m_combatMusic": { - "type": "std::string", - "id": 38, - "offset": 576, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3636593682 - }, - "m_guiFile": { - "type": "std::string", - "id": 39, - "offset": 608, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2717603296 - }, - "m_bloomBrightnessThreshold": { - "type": "float", - "id": 40, - "offset": 640, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1052055702, - "enum_options": { - "__DEFAULT": "0.044892" - } - }, - "m_bloomScale": { - "type": "float", - "id": 41, - "offset": 644, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 955880152, - "enum_options": { - "__DEFAULT": "0.970443" - } - }, - "m_bloomCount": { - "type": "int", - "id": 42, - "offset": 648, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 847157372, - "enum_options": { - "__DEFAULT": 3 - } - }, - "m_noMounts": { - "type": "bool", - "id": 43, - "offset": 652, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1225032630 - }, - "m_a2wFog": { - "type": "bool", - "id": 44, - "offset": 653, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 181294809 - }, - "m_swimZone": { - "type": "bool", - "id": 45, - "offset": 654, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 255657967 - }, - "m_altMusicFile": { - "type": "class MusicFileInfo", - "id": 46, - "offset": 656, - "flags": 263, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2140137174 - } - } - }, - "1799170530": { - "name": "class SharedPointer", - "bases": [ - "WindowAnimation", - "PropertyClass" - ], - "hash": 1799170530, - "properties": { - "m_bUseDeepCopy": { - "type": "bool", - "id": 0, - "offset": 72, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 433380635 - }, - "m_size": { - "type": "class Size", - "id": 1, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 251247159 - } - } - }, - "643140503": { - "name": "class ClientAnimateActorCinematicAction", - "bases": [ - "AnimateActorCinematicAction", - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 643140503, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - }, - "m_animation": { - "type": "std::string", - "id": 2, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3431428731 - }, - "m_backupAnimation": { - "type": "std::string", - "id": 3, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1661537937 - }, - "m_default": { - "type": "bool", - "id": 4, - "offset": 184, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1014207576 - }, - "m_evenWhileDead": { - "type": "bool", - "id": 5, - "offset": 185, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2100875368 - }, - "m_fadeOutAfter": { - "type": "bool", - "id": 6, - "offset": 186, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2006083917 - }, - "m_startsImportantAnimations": { - "type": "bool", - "id": 7, - "offset": 187, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 734711685 - }, - "m_forcesStageToWait": { - "type": "bool", - "id": 8, - "offset": 188, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 74507905 - }, - "m_storeAnimForLateComers": { - "type": "bool", - "id": 9, - "offset": 190, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 634303291 - } - } - }, - "1393273154": { - "name": "class PlayComplexSoundCinematicAction*", - "bases": [ - "CinematicAction", - "PropertyClass" - ], - "hash": 1393273154, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_cinematicSoundEmitterInfo": { - "type": "class SharedPointer", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2303770088 - } - } - }, - "1799035973": { - "name": "class GuildMuseumDataList*", - "bases": [ - "PropertyClass" - ], - "hash": 1799035973, - "properties": { - "m_worldIDList": { - "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2050801310 - }, - "m_exhibitIDList": { - "type": "unsigned int", - "id": 1, - "offset": 88, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1339737091 - }, - "m_stateList": { - "type": "unsigned int", - "id": 2, - "offset": 104, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1658565962 - }, - "m_doorList": { - "type": "unsigned int", - "id": 3, - "offset": 120, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1783968669 - } - } - }, - "638780470": { - "name": "class SharedPointer", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 638780470, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - } - } - }, - "1021926573": { - "name": "class ClientObject*", - "bases": [ - "CoreObject", - "PropertyClass" - ], - "hash": 1021926573, - "properties": { - "m_inactiveBehaviors": { - "type": "class SharedPointer", - "id": 0, - "offset": 224, - "flags": 31, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1850812559 - }, - "m_globalID.m_full": { - "type": "unsigned __int64", - "id": 1, - "offset": 72, - "flags": 16777247, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2312465444 - }, - "m_permID": { - "type": "unsigned __int64", - "id": 2, - "offset": 80, - "flags": 16777247, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1298909658 - }, - "m_location": { - "type": "class Vector3D", - "id": 3, - "offset": 168, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2239683611 - }, - "m_orientation": { - "type": "class Vector3D", - "id": 4, - "offset": 180, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2344058766 - }, - "m_fScale": { - "type": "float", - "id": 5, - "offset": 196, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 503137701 - }, - "m_templateID.m_full": { - "type": "unsigned __int64", - "id": 6, - "offset": 96, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 633907631 - }, - "m_debugName": { - "type": "std::string", - "id": 7, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3553984419 - }, - "m_displayKey": { - "type": "std::string", - "id": 8, - "offset": 136, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3023276954 - }, - "m_zoneTagID": { - "type": "unsigned int", - "id": 9, - "offset": 344, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 965291410 - }, - "m_speedMultiplier": { - "type": "short", - "id": 10, - "offset": 192, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 123130076 - }, - "m_nMobileID": { - "type": "unsigned short", - "id": 11, - "offset": 194, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1054318939 - }, - "m_characterId": { - "type": "gid", - "id": 12, - "offset": 440, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 210498418 - } - } - }, - "232827851": { - "name": "class DerbyModifyPetStat", - "bases": [ - "DerbyEffect", - "PropertyClass" - ], - "hash": 232827851, - "properties": { - "m_buffType": { - "type": "enum DerbyTalentBuffType", - "id": 0, - "offset": 92, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1149251982, - "enum_options": { - "Buff": 0, - "Debuff": 1, - "Neither": 2 - } - }, - "m_kTarget": { - "type": "enum DerbyTargetType", - "id": 1, - "offset": 96, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1807803351, - "enum_options": { - "kTargetInFront": 0, - "kTargetBehind": 1, - "kTargetFirst": 2, - "kTargetSelf": 3, - "kTargetAll": 4, - "kTargetLast": 5 - } - }, - "m_nDuration": { - "type": "int", - "id": 2, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1110167982 - }, - "m_effectID": { - "type": "unsigned int", - "id": 3, - "offset": 88, - "flags": 24, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2347630439 - }, - "m_imageFilename": { - "type": "std::string", - "id": 4, - "offset": 112, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2813328063 - }, - "m_iconIndex": { - "type": "unsigned int", - "id": 5, - "offset": 144, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1265133262 - }, - "m_soundOnActivate": { - "type": "std::string", - "id": 6, - "offset": 152, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1956929714 - }, - "m_soundOnTarget": { - "type": "std::string", - "id": 7, - "offset": 184, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3444214056 - }, - "m_targetParticleEffect": { - "type": "std::string", - "id": 8, - "offset": 216, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3048234723 - }, - "m_overheadMessage": { - "type": "std::string", - "id": 9, - "offset": 248, - "flags": 8388639, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1701018190 - }, - "m_requirements": { - "type": "class RequirementList", - "id": 10, - "offset": 280, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2840988582 - }, - "m_mods": { - "type": "class PetStatModificationSet", - "id": 11, - "offset": 376, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 686212266 - } - } - }, - "638420246": { - "name": "class ClientRemoveAuraCinematicAction*", - "bases": [ - "RemoveAuraCinematicAction", - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 638420246, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - } - } - }, - "1020756089": { - "name": "class TagGameComponent*", - "bases": [ - "HousingGameInterface", - "PropertyClass" - ], - "hash": 1020756089, - "properties": {} - }, - "637939831": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 637939831, - "properties": {} - }, - "1020592249": { - "name": "class TagGameComponent", - "bases": [ - "HousingGameInterface", - "PropertyClass" - ], - "hash": 1020592249, - "properties": {} - }, - "1394116509": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1394116509, - "properties": { - "m_entryList": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1753877873 - } - } - }, - "1799411564": { - "name": "class UnstitchOption*", - "bases": [ - "ServiceOptionBase", - "PropertyClass" - ], - "hash": 1799411564, - "properties": { - "m_serviceName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2206028813 - }, - "m_iconKey": { - "type": "std::string", - "id": 1, - "offset": 168, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2457138637 - }, - "m_displayKey": { - "type": "std::string", - "id": 2, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3023276954 - }, - "m_serviceIndex": { - "type": "unsigned int", - "id": 3, - "offset": 204, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2103126710 - }, - "m_forceInteract": { - "type": "bool", - "id": 4, - "offset": 200, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1705789564 - } - } - }, - "235811605": { - "name": "class BurnAuraCinematicAction*", - "bases": [ - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 235811605, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - } - } - }, - "638512673": { - "name": "class RentalBehaviorTemplate*", - "bases": [ - "TimedItemBehaviorTemplate", - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 638512673, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - }, - "m_expireTime": { - "type": "std::string", - "id": 1, - "offset": 128, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3122602039 - }, - "m_timerType": { - "type": "enum TimerType", - "id": 2, - "offset": 120, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 571744132, - "enum_options": { - "TimerType_Game": 0, - "TimerType_Calendar": 1 - } - }, - "m_typeList": { - "type": "std::string", - "id": 3, - "offset": 160, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2119049625 - } - } - }, - "1021238115": { - "name": "class ScavengeGoalTemplate", - "bases": [ - "GoalTemplate", - "CoreTemplate", - "PropertyClass" - ], - "hash": 1021238115, - "properties": { - "m_behaviors": { - "type": "class BehaviorTemplate*", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1197808594 - }, - "m_goalName": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1521627807 - }, - "m_goalNameID": { - "type": "unsigned int", - "id": 2, - "offset": 496, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 403158846 - }, - "m_goalTitle": { - "type": "std::string", - "id": 3, - "offset": 136, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2291910240 - }, - "m_goalUnderway": { - "type": "std::string", - "id": 4, - "offset": 168, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3153144269 - }, - "m_hyperlink": { - "type": "std::string", - "id": 5, - "offset": 200, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2887798993 - }, - "m_completeText": { - "type": "std::string", - "id": 6, - "offset": 232, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2767458393 - }, - "m_completeResults": { - "type": "class ResultList*", - "id": 7, - "offset": 440, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1964258099 - }, - "m_goalRequirements": { - "type": "class RequirementList*", - "id": 8, - "offset": 448, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2979967145 - }, - "m_tallyCounter": { - "type": "class TallyCounterTemplate*", - "id": 9, - "offset": 456, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1884546193 - }, - "m_locationName": { - "type": "std::string", - "id": 10, - "offset": 272, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1824218389 - }, - "m_displayImage1": { - "type": "std::string", - "id": 11, - "offset": 304, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1959572133 - }, - "m_displayImage2": { - "type": "std::string", - "id": 12, - "offset": 336, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1959572134 - }, - "m_clientTags": { - "type": "std::string", - "id": 13, - "offset": 368, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2319030025 - }, - "m_genericEvents": { - "type": "std::string", - "id": 14, - "offset": 384, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 3466670829 - }, - "m_autoQualify": { - "type": "bool", - "id": 15, - "offset": 400, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1878907431 - }, - "m_autoComplete": { - "type": "bool", - "id": 16, - "offset": 401, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1302545445 - }, - "m_destinationZone": { - "type": "std::string", - "id": 17, - "offset": 408, - "flags": 268435463, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2605356153, - "enum_options": { - "__BASECLASS": "ZoneData" - } - }, - "m_dialogList": { - "type": "class ActorDialogListBase*", - "id": 18, - "offset": 264, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1909154969 - }, - "m_goalType": { - "type": "enum GoalTemplate::GOAL_TYPE", - "id": 19, - "offset": 96, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1488021149, - "enum_options": { - "GOAL_TYPE_UNKNOWN": 0, - "GOAL_TYPE_BOUNTY": 1, - "GOAL_TYPE_BOUNTYCOLLECT": 2, - "GOAL_TYPE_SCAVENGE": 3, - "GOAL_TYPE_PERSONA": 4, - "GOAL_TYPE_WAYPOINT": 5, - "GOAL_TYPE_SCAVENGEFAKE": 6, - "GOAL_TYPE_ACHIEVERANK": 7, - "GOAL_TYPE_USAGE": 8, - "GOAL_TYPE_COMPLETEQUEST": 9, - "GOAL_TYPE_SOCIARANK": 10, - "GOAL_TYPE_SOCIACURRENCY": 11, - "GOAL_TYPE_SOCIAMINIGAME": 12, - "GOAL_TYPE_SOCIAGIVEITEM": 13, - "GOAL_TYPE_SOCIAGETITEM": 14, - "GOAL_TYPE_COLLECTAFTERBOUNTY": 15, - "GOAL_TYPE_ENCOUNTER_WAYPOINT_FOREACH": 16 - } - }, - "m_noQuestHelper": { - "type": "bool", - "id": 20, - "offset": 500, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 578010882, - "enum_options": { - "__DEFAULT": 0 - } - }, - "m_petOnlyQuest": { - "type": "bool", - "id": 21, - "offset": 501, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 679359344, - "enum_options": { - "__DEFAULT": 0 - } - }, - "m_activateResults": { - "type": "class ResultList*", - "id": 22, - "offset": 504, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3790153995 - }, - "m_hideGoalFloatyText": { - "type": "bool", - "id": 23, - "offset": 512, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1919383204, - "enum_options": { - "__DEFAULT": 0 - } - }, - "m_itemAdjectives": { - "type": "std::string", - "id": 24, - "offset": 528, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1723744652 - }, - "m_itemTotal": { - "type": "int", - "id": 25, - "offset": 520, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1809457197 - } - } - }, - "1396703270": { - "name": "class HousingSignBehaviorBase*", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1396703270, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_packedName": { - "type": "std::string", - "id": 1, - "offset": 112, - "flags": 65543, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1805208228 - }, - "m_signText": { - "type": "std::string", - "id": 2, - "offset": 144, - "flags": 65543, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2920366641 - } - } - }, - "1807406761": { - "name": "class SharedPointer", - "bases": [ - "ContainerEffect", - "GameEffectBase", - "PropertyClass" - ], - "hash": 1807406761, - "properties": { - "m_currentTickCount": { - "type": "double", - "id": 0, - "offset": 80, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2533274692 - }, - "m_effectNameID": { - "type": "unsigned int", - "id": 1, - "offset": 96, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1204067144 - }, - "m_bIsOnPet": { - "type": "bool", - "id": 2, - "offset": 73, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 522593303 - }, - "m_originatorID": { - "type": "gid", - "id": 3, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1131810019 - }, - "m_itemSlotID": { - "type": "unsigned int", - "id": 4, - "offset": 112, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1895747595 - }, - "m_internalID": { - "type": "int", - "id": 5, - "offset": 92, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1643137924 - }, - "m_endTime": { - "type": "unsigned int", - "id": 6, - "offset": 88, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 716479635 - }, - "m_displayInfo": { - "type": "class SharedPointer", - "id": 7, - "offset": 128, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2998612909 - } - } - }, - "236178796": { - "name": "class TreasureCardVaultBehavior", - "bases": [ - "TreasureCardVaultBehaviorBase", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 236178796, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_spellData": { - "type": "std::string", - "id": 1, - "offset": 128, - "flags": 575, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2688126101 - } - } - }, - "638471713": { - "name": "class RentalBehaviorTemplate", - "bases": [ - "TimedItemBehaviorTemplate", - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 638471713, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - }, - "m_expireTime": { - "type": "std::string", - "id": 1, - "offset": 128, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3122602039 - }, - "m_timerType": { - "type": "enum TimerType", - "id": 2, - "offset": 120, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 571744132, - "enum_options": { - "TimerType_Game": 0, - "TimerType_Calendar": 1 - } - }, - "m_typeList": { - "type": "std::string", - "id": 3, - "offset": 160, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2119049625 - } - } - }, - "1021238091": { - "name": "class ScavengeGoalTemplate*", - "bases": [ - "GoalTemplate", - "CoreTemplate", - "PropertyClass" - ], - "hash": 1021238091, - "properties": { - "m_behaviors": { - "type": "class BehaviorTemplate*", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1197808594 - }, - "m_goalName": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1521627807 - }, - "m_goalNameID": { - "type": "unsigned int", - "id": 2, - "offset": 496, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 403158846 - }, - "m_goalTitle": { - "type": "std::string", - "id": 3, - "offset": 136, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2291910240 - }, - "m_goalUnderway": { - "type": "std::string", - "id": 4, - "offset": 168, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3153144269 - }, - "m_hyperlink": { - "type": "std::string", - "id": 5, - "offset": 200, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2887798993 - }, - "m_completeText": { - "type": "std::string", - "id": 6, - "offset": 232, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2767458393 - }, - "m_completeResults": { - "type": "class ResultList*", - "id": 7, - "offset": 440, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1964258099 - }, - "m_goalRequirements": { - "type": "class RequirementList*", - "id": 8, - "offset": 448, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2979967145 - }, - "m_tallyCounter": { - "type": "class TallyCounterTemplate*", - "id": 9, - "offset": 456, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1884546193 - }, - "m_locationName": { - "type": "std::string", - "id": 10, - "offset": 272, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1824218389 - }, - "m_displayImage1": { - "type": "std::string", - "id": 11, - "offset": 304, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1959572133 - }, - "m_displayImage2": { - "type": "std::string", - "id": 12, - "offset": 336, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1959572134 - }, - "m_clientTags": { - "type": "std::string", - "id": 13, - "offset": 368, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2319030025 - }, - "m_genericEvents": { - "type": "std::string", - "id": 14, - "offset": 384, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 3466670829 - }, - "m_autoQualify": { - "type": "bool", - "id": 15, - "offset": 400, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1878907431 - }, - "m_autoComplete": { - "type": "bool", - "id": 16, - "offset": 401, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1302545445 - }, - "m_destinationZone": { - "type": "std::string", - "id": 17, - "offset": 408, - "flags": 268435463, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2605356153, - "enum_options": { - "__BASECLASS": "ZoneData" - } - }, - "m_dialogList": { - "type": "class ActorDialogListBase*", - "id": 18, - "offset": 264, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1909154969 - }, - "m_goalType": { - "type": "enum GoalTemplate::GOAL_TYPE", - "id": 19, - "offset": 96, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1488021149, - "enum_options": { - "GOAL_TYPE_UNKNOWN": 0, - "GOAL_TYPE_BOUNTY": 1, - "GOAL_TYPE_BOUNTYCOLLECT": 2, - "GOAL_TYPE_SCAVENGE": 3, - "GOAL_TYPE_PERSONA": 4, - "GOAL_TYPE_WAYPOINT": 5, - "GOAL_TYPE_SCAVENGEFAKE": 6, - "GOAL_TYPE_ACHIEVERANK": 7, - "GOAL_TYPE_USAGE": 8, - "GOAL_TYPE_COMPLETEQUEST": 9, - "GOAL_TYPE_SOCIARANK": 10, - "GOAL_TYPE_SOCIACURRENCY": 11, - "GOAL_TYPE_SOCIAMINIGAME": 12, - "GOAL_TYPE_SOCIAGIVEITEM": 13, - "GOAL_TYPE_SOCIAGETITEM": 14, - "GOAL_TYPE_COLLECTAFTERBOUNTY": 15, - "GOAL_TYPE_ENCOUNTER_WAYPOINT_FOREACH": 16 - } - }, - "m_noQuestHelper": { - "type": "bool", - "id": 20, - "offset": 500, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 578010882, - "enum_options": { - "__DEFAULT": 0 - } - }, - "m_petOnlyQuest": { - "type": "bool", - "id": 21, - "offset": 501, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 679359344, - "enum_options": { - "__DEFAULT": 0 - } - }, - "m_activateResults": { - "type": "class ResultList*", - "id": 22, - "offset": 504, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3790153995 - }, - "m_hideGoalFloatyText": { - "type": "bool", - "id": 23, - "offset": 512, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1919383204, - "enum_options": { - "__DEFAULT": 0 - } - }, - "m_itemAdjectives": { - "type": "std::string", - "id": 24, - "offset": 528, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1723744652 - }, - "m_itemTotal": { - "type": "int", - "id": 25, - "offset": 520, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1809457197 - } - } - }, - "1395450017": { - "name": "class CritBlockOverride*", - "bases": [ - "CombatRule", - "PropertyClass" - ], - "hash": 1395450017, - "properties": { - "m_baseCritDivisor": { - "type": "int", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1793948871 - }, - "m_baseBlockDivisor": { - "type": "int", - "id": 1, - "offset": 76, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 331192160 - }, - "m_critScalarDivisor": { - "type": "int", - "id": 2, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 353250050 - }, - "m_blockScalarDivisor": { - "type": "int", - "id": 3, - "offset": 84, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 778321147 - }, - "m_finalCritMedian1": { - "type": "float", - "id": 4, - "offset": 88, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1779518738 - }, - "m_finalCritMedian2": { - "type": "float", - "id": 5, - "offset": 92, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1779518739 - }, - "m_finalBlockMedian1": { - "type": "float", - "id": 6, - "offset": 96, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2233508235 - }, - "m_finalBlockMedian2": { - "type": "float", - "id": 7, - "offset": 100, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2233508236 - } - } - }, - "1804837405": { - "name": "class CastleBlockDoorBehaviorTemplate*", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 1804837405, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - } - } - }, - "1801521354": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1801521354, - "properties": {} - }, - "1801200575": { - "name": "class StopBacklashRotationEffectCinematicAction", - "bases": [ - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 1801200575, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - } - } - }, - "237586676": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 237586676, - "properties": { - "m_playerList": { - "type": "gid", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1909774945 - } - } - }, - "1021837526": { - "name": "class SharedPointer", - "bases": [ - "DerbyEffect", - "PropertyClass" - ], - "hash": 1021837526, - "properties": { - "m_buffType": { - "type": "enum DerbyTalentBuffType", - "id": 0, - "offset": 92, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1149251982, - "enum_options": { - "Buff": 0, - "Debuff": 1, - "Neither": 2 - } - }, - "m_kTarget": { - "type": "enum DerbyTargetType", - "id": 1, - "offset": 96, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1807803351, - "enum_options": { - "kTargetInFront": 0, - "kTargetBehind": 1, - "kTargetFirst": 2, - "kTargetSelf": 3, - "kTargetAll": 4, - "kTargetLast": 5 - } - }, - "m_nDuration": { - "type": "int", - "id": 2, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1110167982 - }, - "m_effectID": { - "type": "unsigned int", - "id": 3, - "offset": 88, - "flags": 24, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2347630439 - }, - "m_imageFilename": { - "type": "std::string", - "id": 4, - "offset": 112, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2813328063 - }, - "m_iconIndex": { - "type": "unsigned int", - "id": 5, - "offset": 144, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1265133262 - }, - "m_soundOnActivate": { - "type": "std::string", - "id": 6, - "offset": 152, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1956929714 - }, - "m_soundOnTarget": { - "type": "std::string", - "id": 7, - "offset": 184, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3444214056 - }, - "m_targetParticleEffect": { - "type": "std::string", - "id": 8, - "offset": 216, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3048234723 - }, - "m_overheadMessage": { - "type": "std::string", - "id": 9, - "offset": 248, - "flags": 8388639, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1701018190 - }, - "m_requirements": { - "type": "class RequirementList", - "id": 10, - "offset": 280, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2840988582 - } - } - }, - "1800347048": { - "name": "class WinAnimFillGlobeTime*", - "bases": [ - "WindowAnimation", - "PropertyClass" - ], - "hash": 1800347048, - "properties": { - "m_bUseDeepCopy": { - "type": "bool", - "id": 0, - "offset": 72, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 433380635 - }, - "m_nAmount": { - "type": "int", - "id": 1, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1788918332 - }, - "m_fTime": { - "type": "float", - "id": 2, - "offset": 84, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 883746156 - }, - "m_fTimeRemaining": { - "type": "float", - "id": 3, - "offset": 88, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1591443014 - }, - "m_bEndTutorialOnFinish": { - "type": "bool", - "id": 4, - "offset": 92, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1777836702 - } - } - }, - "237188687": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 237188687, - "properties": { - "m_infoList": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1814698255 - } - } - }, - "641636619": { - "name": "class CharacterCreationInfo", - "bases": [ - "PropertyClass" - ], - "hash": 641636619, - "properties": { - "m_templateID": { - "type": "int", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1075344419 - }, - "m_name": { - "type": "std::wstring", - "id": 1, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513345113 - }, - "m_shouldRename": { - "type": "bool", - "id": 2, - "offset": 128, - "flags": 24, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1741266202 - }, - "m_globalID": { - "type": "gid", - "id": 3, - "offset": 120, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 981205014 - }, - "m_userID": { - "type": "gid", - "id": 4, - "offset": 112, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1037989700 - }, - "m_quarantined": { - "type": "bool", - "id": 5, - "offset": 129, - "flags": 24, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 637025007 - } - } - }, - "1397124761": { - "name": "class AddBacklashEffectCinematicAction*", - "bases": [ - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 1397124761, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - }, - "m_backlashEffect": { - "type": "std::string", - "id": 2, - "offset": 120, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3051687009 - } - } - }, - "1800347008": { - "name": "class WinAnimFillGlobeTime", - "bases": [ - "WindowAnimation", - "PropertyClass" - ], - "hash": 1800347008, - "properties": { - "m_bUseDeepCopy": { - "type": "bool", - "id": 0, - "offset": 72, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 433380635 - }, - "m_nAmount": { - "type": "int", - "id": 1, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1788918332 - }, - "m_fTime": { - "type": "float", - "id": 2, - "offset": 84, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 883746156 - }, - "m_fTimeRemaining": { - "type": "float", - "id": 3, - "offset": 88, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1591443014 - }, - "m_bEndTutorialOnFinish": { - "type": "bool", - "id": 4, - "offset": 92, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1777836702 - } - } - }, - "237141223": { - "name": "class Result*", - "bases": [ - "PropertyClass" - ], - "hash": 237141223, - "properties": {} - }, - "638801051": { - "name": "class InfractionBehaviorTemplate*", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 638801051, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - } - } - }, - "1397007994": { - "name": "class ClientQuantityBehavior", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1397007994, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_quantity": { - "type": "int", - "id": 1, - "offset": 112, - "flags": 27, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 169215289 - } - } - }, - "638801041": { - "name": "class InfractionBehaviorTemplate", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 638801041, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - } - } - }, - "1022523279": { - "name": "class BracketReportInfo*", - "bases": [ - "PropertyClass" - ], - "hash": 1022523279, - "properties": { - "m_scheduleID": { - "type": "gid", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1439120946 - }, - "m_bracketID": { - "type": "gid", - "id": 1, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 441272961 - }, - "m_bracketState": { - "type": "unsigned int", - "id": 2, - "offset": 88, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 790945386 - }, - "m_creationTime": { - "type": "int", - "id": 3, - "offset": 92, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1930866142 - }, - "m_registrationOpenTime": { - "type": "int", - "id": 4, - "offset": 96, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 313608566 - }, - "m_matchStartTime": { - "type": "int", - "id": 5, - "offset": 100, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1241735780 - }, - "m_tournamentNameID": { - "type": "unsigned int", - "id": 6, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1799846440 - }, - "m_tournamentDuration": { - "type": "unsigned int", - "id": 7, - "offset": 108, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 475739392 - }, - "m_minLevel": { - "type": "int", - "id": 8, - "offset": 112, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1496818518 - }, - "m_maxLevel": { - "type": "int", - "id": 9, - "offset": 116, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 146363288 - }, - "m_overrideTourneyName": { - "type": "std::string", - "id": 10, - "offset": 120, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2611946162 - }, - "m_firstTourneyNameSTKey": { - "type": "std::string", - "id": 11, - "offset": 152, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2731391050 - }, - "m_secondTourneyNameSTKey": { - "type": "std::string", - "id": 12, - "offset": 184, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1747016318 - } - } - }, - "1022345450": { - "name": "class SharedPointer", - "bases": [ - "PlayerStatueBlob", - "PropertyClass" - ], - "hash": 1022345450, - "properties": { - "m_packedName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1805208228 - }, - "m_characterBuffer": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1972275298 - }, - "m_equipmentBuffer": { - "type": "std::string", - "id": 2, - "offset": 136, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1511030957 - }, - "m_emoteID": { - "type": "unsigned int", - "id": 3, - "offset": 168, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 691533780 - } - } - }, - "1397024285": { - "name": "class std::list >", - "bases": [], - "hash": 1397024285, - "properties": {} - }, - "1800452241": { - "name": "enum WizItemLocations::eItemType", - "bases": [], - "hash": 1800452241, - "properties": {} - }, - "237502247": { - "name": "class HatchmakingPetTypesList*", - "bases": [ - "PropertyClass" - ], - "hash": 237502247, - "properties": { - "m_hatchmakingPetTypesList": { - "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1843158182 - } - } - }, - "1800602614": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1800602614, - "properties": { - "m_resultType": { - "type": "enum CombatResult::kResultType", - "id": 0, - "offset": 72, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1482430415, - "enum_options": { - "kResult_StartSpellCast": 0, - "kResult_StartSpellNoCast": 1, - "kResult_Focus": 2, - "kResult_Discard": 3, - "kResult_Flee": 4, - "kResult_HangingEffectAdded": 5, - "kResult_ProtectedHangingEffectAdded": 6, - "kResult_RemovingHangingEffect": 7, - "kResult_HangingEffectRemovedIncoming": 8, - "kResult_HangingEffectRemovedIncomingFast": 9, - "kResult_HangingEffectRemovedIncomingDetonated": 10, - "kResult_HangingEffectRemovedOutgoing": 11, - "kResult_HangingEffectRemovedOutgoingFast": 12, - "kResult_HangingEffectProcessed": 13, - "kResult_HangingEffectRoundsModified": 14, - "kResult_Bounce": 15, - "kResult_TakeDamage": 16, - "kResult_HealDamage": 17, - "kResult_TakeDamageOverTime": 18, - "kResult_HealDamageOverTime": 19, - "kResult_StealTake": 20, - "kResult_StealGive": 21, - "kResult_AbsorbDamage": 22, - "kResult_AbsorbHeal": 110, - "kResult_Miss": 23, - "kResult_Hit": 24, - "kResult_CriticalBlocked": 25, - "kResult_CriticalHit": 26, - "kResult_GlobalEffectProcessed": 27, - "kResult_GlobalEffectAdded": 28, - "kResult_GlobalEffectRemoved": 29, - "kResult_PlayerDied": 30, - "kResult_CreatureSummoned": 31, - "kResult_TeleportPlayer": 32, - "kResult_PipsModified": 33, - "kResult_PowerPipsModified": 34, - "kResult_ShadowPipsModified": 35, - "kResult_Stunned": 36, - "kResult_Unstunned": 37, - "kResult_Polymorphed": 38, - "kResult_UnPolymorphed": 39, - "kResult_Reshuffle": 40, - "kResult_SpellDone": 41, - "kResult_ModifyHate": 42, - "kResult_MindControlled": 43, - "kResult_UnMindControlled": 44, - "kResult_MindControlImmune": 45, - "kResult_AddAura": 46, - "kResult_RemoveAura": 47, - "kResult_BuffDebuff": 48, - "kResult_Resurrected": 49, - "kResult_DamageTypeChanged": 50, - "kResult_CloakedEffectAdded": 51, - "kResult_RevealCloakedEffect": 52, - "kResult_StunResist": 53, - "kResult_StunResistFailed": 54, - "kResult_StunImmune": 55, - "kResult_ArmorPierced": 56, - "kResult_AfterlifeEffectsProcessed": 57, - "kResult_AfterlifeEffectsAdded": 58, - "kResult_AfterlifeEffectsRemoved": 59, - "kResult_EffectFailed": 60, - "kResult_StartAOE": 61, - "kResult_StopAOE": 62, - "kResult_StartAOEAct": 63, - "kResult_StopAOEAct": 64, - "kResult_CombatTriggerListAdded": 65, - "kResult_CombatTriggerListRemoved": 66, - "kResult_AddBacklashResult": 72, - "kResult_RemoveBacklashResult": 73, - "kResult_AddShadowSpellEffect": 67, - "kResult_ChangeShadowSelfEffect": 71, - "kResult_RemoveShadowSpellEffect": 68, - "kResult_ShadowSelfEffect": 69, - "kResult_UnShadowSelfEffect": 70, - "kResult_ModifyBacklash": 74, - "kResult_AddIntercept": 75, - "kResult_RemoveIntercept": 76, - "kResult_TakeInterceptDamage": 77, - "kResult_InterceptedDamage": 78, - "kResult_InterceptedDamageThisRound": 79, - "kResult_IncreaseShadowCreatureLevel": 81, - "kResult_DecreaseShadowCreatureLevel": 82, - "kResult_SetShadowCreatureLevel": 83, - "kResult_RemoveShadowCreature": 84, - "kResult_ShadowCreatureAttack": 85, - "kResult_PostActionProcess": 86, - "kResult_CreatureSpawned": 88, - "kResult_HangingEffectRemovedProtection": 90, - "kResult_planningPhasePipSync": 97, - "kResult_pipConversionRefund": 96, - "kResult_FirstPlayerSwitched": 98, - "kResult_Confused": 99, - "kResult_Unconfused": 100, - "kResult_Clued": 102, - "kResult_ClueImmune": 103, - "kResult_PetCasted": 112, - "kResult_CastSigilSpell": 113, - "kResult_AddSpellToDeck": 114, - "kResult_SetTopTeam": 115, - "kResult_SetBottomTeam": 116, - "kResult_ClearTopTeam": 117, - "kResult_ClearBottomTeam": 118, - "kResult_StartBackRowCast": 119, - "kResult_StopBackRowCast": 120, - "kResult_SchoolPipsModified": 121, - "kResult_None": 122 - } - }, - "m_participantSubCircle": { - "type": "int", - "id": 1, - "offset": 76, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1360563125 - }, - "m_effectType": { - "type": "int", - "id": 2, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 531703753 - }, - "m_effectAmount": { - "type": "int", - "id": 3, - "offset": 84, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 498226203 - }, - "m_spellTemplateID": { - "type": "unsigned int", - "id": 4, - "offset": 88, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 585567702 - }, - "m_spellBaseOverrideTemplateID": { - "type": "unsigned int", - "id": 5, - "offset": 92, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2024236913 - }, - "m_targetSubCircle": { - "type": "int", - "id": 6, - "offset": 96, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1278786653 - }, - "m_durationModifier": { - "type": "float", - "id": 7, - "offset": 192, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 753259116 - }, - "m_petCasted": { - "type": "bool", - "id": 8, - "offset": 196, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1697247120 - }, - "m_petCastedTarget": { - "type": "int", - "id": 9, - "offset": 200, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1344025214 - }, - "m_cloaked": { - "type": "bool", - "id": 10, - "offset": 204, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 7349510 - } - } - }, - "641828861": { - "name": "class PolymorphImprovementRatingInfo*", - "bases": [ - "PropertyClass" - ], - "hash": 641828861, - "properties": { - "m_polymorphTemplateID": { - "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1026295488 - }, - "m_personalRating": { - "type": "int", - "id": 1, - "offset": 76, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 209790915 - }, - "m_eventRating": { - "type": "int", - "id": 2, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2120160417 - } - } - }, - "1022686164": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1022686164, - "properties": { - "m_ownerGID": { - "type": "gid", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1765087575 - }, - "m_essencesCollected": { - "type": "int", - "id": 1, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1632116450 - }, - "m_templateID": { - "type": "unsigned int", - "id": 2, - "offset": 84, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1286746870 - } - } - }, - "1397200460": { - "name": "class AttachEffectToTurnIndicatorCinematicAction", - "bases": [ - "CinematicAction", - "PropertyClass" - ], - "hash": 1397200460, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_minDuration": { - "type": "float", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1733171553 - }, - "m_assetName": { - "type": "std::string", - "id": 2, - "offset": 88, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513131580 - } - } - }, - "237745633": { - "name": "struct std::pair", - "bases": [], - "hash": 237745633, - "properties": {} - }, - "641637387": { - "name": "class CharacterCreationInfo*", - "bases": [ - "PropertyClass" - ], - "hash": 641637387, - "properties": { - "m_templateID": { - "type": "int", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1075344419 - }, - "m_name": { - "type": "std::wstring", - "id": 1, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513345113 - }, - "m_shouldRename": { - "type": "bool", - "id": 2, - "offset": 128, - "flags": 24, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1741266202 - }, - "m_globalID": { - "type": "gid", - "id": 3, - "offset": 120, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 981205014 - }, - "m_userID": { - "type": "gid", - "id": 4, - "offset": 112, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1037989700 - }, - "m_quarantined": { - "type": "bool", - "id": 5, - "offset": 129, - "flags": 24, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 637025007 - } - } - }, - "237715458": { - "name": "class ClientDuelBehavior*", - "bases": [ - "DuelBehavior", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 237715458, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_pDuel": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1066616366 - }, - "m_sigilTemplateID": { - "type": "unsigned int", - "id": 2, - "offset": 128, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 269055310 - } - } - }, - "1801221055": { - "name": "class StopBacklashRotationEffectCinematicAction*", - "bases": [ - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 1801221055, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - } - } - }, - "1024574928": { - "name": "class ControlSprite", - "bases": [ - "Window", - "PropertyClass" - ], - "hash": 1024574928, - "properties": { - "m_sName": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306437263 - }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621225959 - }, - "m_Style": { - "type": "unsigned int", - "id": 2, - "offset": 152, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "SCALE_CHILDREN": 2, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "FOCUS_LOCKED": 64, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152 - } - }, - "m_Flags": { - "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648, - "ONE_SHOT": 8388608, - "FLIPPED_HORIZONTAL": 16777216, - "FLIPPED_VERTICAL": 33554432 - } - }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3105139380 - }, - "m_fTargetAlpha": { - "type": "float", - "id": 5, - "offset": 212, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1809129834 - }, - "m_fDisabledAlpha": { - "type": "float", - "id": 6, - "offset": 216, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1389987675 - }, - "m_fAlpha": { - "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 482130755 - }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3623628394 - }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2102211316 - }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1846695875 - }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3389835433 - }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2547159940 - }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2587533771 - }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3091503757 - }, - "m_pMaterial": { - "type": "class SharedPointer", - "id": 16, - "offset": 592, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3479277078 - }, - "m_fRotation": { - "type": "float", - "id": 17, - "offset": 608, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1175400173 - }, - "m_Color": { - "type": "class Color", - "id": 18, - "offset": 584, - "flags": 262279, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1753714077 - }, - "m_textColor": { - "type": "class Color", - "id": 19, - "offset": 612, - "flags": 262279, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2528109250 - }, - "m_textComponent": { - "type": "class TextComponent", - "id": 20, - "offset": 616, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3491704390 - } - } - }, - "1399036544": { - "name": "class LevelUpElixirSchoolSpecificData", - "bases": [ - "PropertyClass" - ], - "hash": 1399036544, - "properties": { - "m_schoolID": { - "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 369010242 - }, - "m_spellsToGive": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 3002626524 - }, - "m_questsToComplete": { - "type": "std::string", - "id": 2, - "offset": 96, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 3386208316 - }, - "m_questsToAdd": { - "type": "std::string", - "id": 3, - "offset": 112, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2101794028 - }, - "m_itemsToPlaceInInventory": { - "type": "unsigned int", - "id": 4, - "offset": 128, - "flags": 33554439, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 792703868 - }, - "m_gearToEquip": { - "type": "unsigned int", - "id": 5, - "offset": 144, - "flags": 33554439, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1383467923 - }, - "m_teleportToZoneOnComplete": { - "type": "std::string", - "id": 6, - "offset": 176, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2109587583 - }, - "m_badgesToComplete": { - "type": "std::string", - "id": 7, - "offset": 160, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2133622941 - }, - "m_schoolName": { - "type": "std::string", - "id": 8, - "offset": 208, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3385349572 - }, - "m_propertyRegistryEntires": { - "type": "class LevelUpElixirPropertyRegistryEntry", - "id": 9, - "offset": 240, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2009387835 - }, - "m_addTrainingPointIfQuestNotComplete": { - "type": "std::string", - "id": 10, - "offset": 256, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 3422771029 - } - } - }, - "237730210": { - "name": "class ClientDeckBehavior*", - "bases": [ - "DeckBehavior", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 237730210, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_spellList": { - "type": "class SharedPointer", - "id": 1, - "offset": 120, - "flags": 27, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2181913740 - }, - "m_serializedExclusionList": { - "type": "std::string", - "id": 2, - "offset": 152, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1502583517 - }, - "m_archmasterySchool": { - "type": "unsigned int", - "id": 3, - "offset": 184, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 485805784 - } - } - }, - "642743690": { - "name": "class SharedPointer", - "bases": [ - "MoveController::MoveCommand", - "PropertyClass" - ], - "hash": 642743690, - "properties": { - "m_vTarget": { - "type": "class Vector3D", - "id": 0, - "offset": 88, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3770499167 - }, - "m_kState": { - "type": "enum MoveState", - "id": 1, - "offset": 100, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 677163988, - "enum_options": { - "MS_WALKING": 0, - "MS_RUNNING": 1, - "MS_SWIMMING": 2, - "MS_FLYING": 3 - } - } - } - }, - "1023954011": { - "name": "class HousingWaterManager", - "bases": [ - "PropertyClass" - ], - "hash": 1023954011, - "properties": {} - }, - "1398131030": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1398131030, - "properties": { - "m_realmName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3507983949 - }, - "m_displayName": { - "type": "std::wstring", - "id": 1, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2242885711 - }, - "m_realmPopulation": { - "type": "int", - "id": 2, - "offset": 136, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1904140438 - } - } - }, - "1023541332": { - "name": "class SharedPointer", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1023541332, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - } - } - }, - "1398013990": { - "name": "class HousingSignBehaviorBase", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1398013990, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_packedName": { - "type": "std::string", - "id": 1, - "offset": 112, - "flags": 65543, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1805208228 - }, - "m_signText": { - "type": "std::string", - "id": 2, - "offset": 144, - "flags": 65543, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2920366641 - } - } - }, - "1803315568": { - "name": "class TubeGeomParams*", - "bases": [ - "GeomParams", - "PropertyClass" - ], - "hash": 1803315568, - "properties": { - "m_eType": { - "type": "enum ProxyType", - "id": 0, - "offset": 72, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1656534066, - "enum_options": { - "ProxyTypeBox": 0, - "ProxyTypeRay": 1, - "ProxyTypeSphere": 2, - "ProxyTypeCylinder": 3, - "ProxyTypeTube": 4, - "ProxyTypePlane": 5, - "ProxyTypeMesh": 6, - "ProxyTypeInvalid": 7 - } - }, - "m_fRadius": { - "type": "float", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 787972805 - }, - "m_fLength": { - "type": "float", - "id": 2, - "offset": 84, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 558261279 - } - } - }, - "643033356": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 643033356, - "properties": { - "m_macAddress": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3156887154 - }, - "m_systemMemory": { - "type": "unsigned short", - "id": 1, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 852349606 - }, - "m_freeDiskSpace": { - "type": "unsigned short", - "id": 2, - "offset": 106, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1250782497 - }, - "m_processorArchitecture": { - "type": "unsigned short", - "id": 3, - "offset": 108, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2088980971 - }, - "m_numProcessors": { - "type": "char", - "id": 4, - "offset": 110, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 706266711 - }, - "m_processorType": { - "type": "unsigned int", - "id": 5, - "offset": 112, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1199310607 - }, - "m_processorLevel": { - "type": "unsigned short", - "id": 6, - "offset": 116, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 929266784 - }, - "m_processorRevision": { - "type": "unsigned short", - "id": 7, - "offset": 118, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1573335831 - }, - "m_vendorID": { - "type": "unsigned short", - "id": 8, - "offset": 120, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2522209987 - }, - "m_deviceID": { - "type": "unsigned short", - "id": 9, - "offset": 122, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2360466085 - }, - "m_subSysID": { - "type": "unsigned int", - "id": 10, - "offset": 124, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1872946051 - }, - "m_textureMemory": { - "type": "unsigned short", - "id": 11, - "offset": 128, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1738572338 - }, - "m_hwTransformAndLight": { - "type": "bool", - "id": 12, - "offset": 130, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2100427321 - }, - "m_dynamicTextures": { - "type": "bool", - "id": 13, - "offset": 131, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2010245916 - }, - "m_renderToTexture_A8R8G8B8": { - "type": "bool", - "id": 14, - "offset": 132, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1029952834 - }, - "m_renderToTexture_A8B8G8R8": { - "type": "bool", - "id": 15, - "offset": 133, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 403787074 - }, - "m_textureFromSystemMemory": { - "type": "bool", - "id": 16, - "offset": 134, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1414058230 - }, - "m_textureFromVideoMemory": { - "type": "bool", - "id": 17, - "offset": 135, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 501373448 - }, - "m_maxTextureBlendStages": { - "type": "char", - "id": 18, - "offset": 136, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 783320407 - }, - "m_maxActiveLights": { - "type": "char", - "id": 19, - "offset": 137, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1302798081 - }, - "m_maxSimultaneousTextures": { - "type": "char", - "id": 20, - "offset": 138, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1083967879 - }, - "m_maxTextureWidth": { - "type": "unsigned short", - "id": 21, - "offset": 140, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1649109567 - }, - "m_maxTextureHeight": { - "type": "unsigned short", - "id": 22, - "offset": 142, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1751799512 - }, - "m_vertexShaderVersion": { - "type": "unsigned int", - "id": 23, - "offset": 144, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2017875080 - }, - "m_pixelShaderVersion": { - "type": "unsigned int", - "id": 24, - "offset": 148, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2108833228 - }, - "m_numMonitors": { - "type": "int", - "id": 25, - "offset": 152, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 452729285 - }, - "m_mouseButtons": { - "type": "int", - "id": 26, - "offset": 156, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 980265490 - }, - "m_screenResX": { - "type": "unsigned short", - "id": 27, - "offset": 160, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 857804618 - }, - "m_screenResY": { - "type": "unsigned short", - "id": 28, - "offset": 162, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 857804619 - }, - "m_packedOSVersion": { - "type": "unsigned int", - "id": 29, - "offset": 164, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 701472349 - }, - "m_packedOSServicePack": { - "type": "unsigned int", - "id": 30, - "offset": 168, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 888199623 - }, - "m_hostedOS": { - "type": "bool", - "id": 31, - "offset": 172, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 409932636 - }, - "m_flashPluginInstalled": { - "type": "bool", - "id": 32, - "offset": 173, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 557011344 - }, - "m_isAdministrator": { - "type": "bool", - "id": 33, - "offset": 174, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1925580112 - }, - "m_tabletPC": { - "type": "bool", - "id": 34, - "offset": 175, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1302169794 - }, - "m_touchCapabilites": { - "type": "int", - "id": 35, - "offset": 176, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 422911998 - }, - "m_hwID": { - "type": "std::string", - "id": 36, - "offset": 184, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1717166887 - }, - "m_hwSerials": { - "type": "std::string", - "id": 37, - "offset": 216, - "flags": 31, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2604793293 - } - } - }, - "1023267948": { - "name": "enum ENUM_SENDTYPE", - "bases": [], - "hash": 1023267948, - "properties": {} - }, - "1397782695": { - "name": "class HousingSignBehavior*", - "bases": [ - "HousingSignBehaviorBase", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1397782695, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_packedName": { - "type": "std::string", - "id": 1, - "offset": 112, - "flags": 65543, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1805208228 - }, - "m_signText": { - "type": "std::string", - "id": 2, - "offset": 144, - "flags": 65543, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2920366641 - } - } - }, - "1801776167": { - "name": "class AvatarOption", - "bases": [ - "AvatarOptionBase", - "PropertyClass" - ], - "hash": 1801776167, - "properties": { - "m_conditionFlags": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2483653903 - }, - "m_mesh": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1717328392 - }, - "m_noMesh": { - "type": "bool", - "id": 2, - "offset": 168, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 760920637 - }, - "m_geometry": { - "type": "std::string", - "id": 3, - "offset": 136, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2041778855 - } - } - }, - "238069766": { - "name": "class MatchTeam", - "bases": [ - "PropertyClass" - ], - "hash": 238069766, - "properties": { - "m_nTeamID": { - "type": "gid", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 374990266 - }, - "m_matchId": { - "type": "gid", - "id": 1, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1757621330 - }, - "m_matchNameID": { - "type": "unsigned int", - "id": 2, - "offset": 88, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1751361288 - }, - "m_creatorId": { - "type": "gid", - "id": 3, - "offset": 96, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1051766069 - }, - "m_friendsOnly": { - "type": "bool", - "id": 4, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1420401792 - }, - "m_actors": { - "type": "class SharedPointer", - "id": 5, - "offset": 112, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 568947970 - }, - "m_bracketID": { - "type": "gid", - "id": 6, - "offset": 152, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 441272961 - }, - "m_leagueID": { - "type": "unsigned int", - "id": 7, - "offset": 160, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 692361645 - }, - "m_seasonID": { - "type": "unsigned int", - "id": 8, - "offset": 164, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 535260643 - }, - "m_maxActorLevel": { - "type": "int", - "id": 9, - "offset": 144, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 120597521 - } - } - }, - "1801768152": { - "name": "class SharedPointer", - "bases": [ - "SpawnObjectInfo", - "CoreObjectInfo", - "PropertyClass" - ], - "hash": 1801768152, - "properties": { - "m_templateID.m_full": { - "type": "unsigned __int64", - "id": 0, - "offset": 72, - "flags": 33554439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 633907631 - }, - "m_nObjectID": { - "type": "unsigned int", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 748496927 - }, - "m_location": { - "type": "class Vector3D", - "id": 2, - "offset": 84, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2239683611 - }, - "m_orientation": { - "type": "class Vector3D", - "id": 3, - "offset": 96, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2344058766 - }, - "m_fScale": { - "type": "float", - "id": 4, - "offset": 108, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 503137701 - }, - "m_zoneTag": { - "type": "std::string", - "id": 5, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3405382643 - }, - "m_startState": { - "type": "std::string", - "id": 6, - "offset": 184, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2166880458 - }, - "m_overrideName": { - "type": "std::string", - "id": 7, - "offset": 120, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1990707228 - }, - "m_globalDynamic": { - "type": "bool", - "id": 8, - "offset": 116, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1951691017 - }, - "m_bUndetectable": { - "type": "bool", - "id": 9, - "offset": 216, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1907454341 - }, - "m_spawnRequirements": { - "type": "class SharedPointer", - "id": 10, - "offset": 224, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2309120870 - }, - "m_loadingType": { - "type": "enum CoreObjectInfo::LoadingType", - "id": 11, - "offset": 112, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3522422550, - "enum_options": { - "STATIC_CLIENT_SERVER": 0, - "STATIC_CLIENT": 1, - "STATIC_SERVER": 2, - "DYNAMIC_SERVER": 3 - } - }, - "m_kStartNodeType": { - "type": "enum SpawnObjectInfo::StartNodeType", - "id": 12, - "offset": 240, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1545814623, - "enum_options": { - "SNT_RANDOM": 0, - "SNT_RANDOM_UNIQUE": 1, - "SNT_FIRST": 2, - "SNT_LAST": 3, - "SNT_SPECIFIC": 4 - } - }, - "m_startNode": { - "type": "unsigned int", - "id": 13, - "offset": 256, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1598161889, - "enum_options": { - "__DEFAULT": 0 - } - }, - "m_pathID": { - "type": "gid", - "id": 14, - "offset": 248, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 821494322 - }, - "m_uniqueLoc": { - "type": "char", - "id": 15, - "offset": 260, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 400014505 - } - } - }, - "643272000": { - "name": "class DespawnTimedBehaviorTemplate*", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 643272000, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - }, - "m_lifespan": { - "type": "std::string", - "id": 1, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3042809453 - } - } - }, - "242438011": { - "name": "class CreatePipCinematicActorsFromResult", - "bases": [ - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 242438011, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - }, - "m_newActorName": { - "type": "std::string", - "id": 2, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2029131039 - } - } - }, - "643140551": { - "name": "class ClientAnimateActorCinematicAction*", - "bases": [ - "AnimateActorCinematicAction", - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 643140551, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - }, - "m_animation": { - "type": "std::string", - "id": 2, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3431428731 - }, - "m_backupAnimation": { - "type": "std::string", - "id": 3, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1661537937 - }, - "m_default": { - "type": "bool", - "id": 4, - "offset": 184, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1014207576 - }, - "m_evenWhileDead": { - "type": "bool", - "id": 5, - "offset": 185, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2100875368 - }, - "m_fadeOutAfter": { - "type": "bool", - "id": 6, - "offset": 186, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2006083917 - }, - "m_startsImportantAnimations": { - "type": "bool", - "id": 7, - "offset": 187, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 734711685 - }, - "m_forcesStageToWait": { - "type": "bool", - "id": 8, - "offset": 188, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 74507905 - }, - "m_storeAnimForLateComers": { - "type": "bool", - "id": 9, - "offset": 190, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 634303291 - } - } - }, - "1024146477": { - "name": "class SharedPointer", - "bases": [ - "DerbyEffect", - "PropertyClass" - ], - "hash": 1024146477, - "properties": { - "m_buffType": { - "type": "enum DerbyTalentBuffType", - "id": 0, - "offset": 92, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1149251982, - "enum_options": { - "Buff": 0, - "Debuff": 1, - "Neither": 2 - } - }, - "m_kTarget": { - "type": "enum DerbyTargetType", - "id": 1, - "offset": 96, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1807803351, - "enum_options": { - "kTargetInFront": 0, - "kTargetBehind": 1, - "kTargetFirst": 2, - "kTargetSelf": 3, - "kTargetAll": 4, - "kTargetLast": 5 - } - }, - "m_nDuration": { - "type": "int", - "id": 2, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1110167982 - }, - "m_effectID": { - "type": "unsigned int", - "id": 3, - "offset": 88, - "flags": 24, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2347630439 - }, - "m_imageFilename": { - "type": "std::string", - "id": 4, - "offset": 112, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2813328063 - }, - "m_iconIndex": { - "type": "unsigned int", - "id": 5, - "offset": 144, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1265133262 - }, - "m_soundOnActivate": { - "type": "std::string", - "id": 6, - "offset": 152, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1956929714 - }, - "m_soundOnTarget": { - "type": "std::string", - "id": 7, - "offset": 184, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3444214056 - }, - "m_targetParticleEffect": { - "type": "std::string", - "id": 8, - "offset": 216, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3048234723 - }, - "m_overheadMessage": { - "type": "std::string", - "id": 9, - "offset": 248, - "flags": 8388639, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1701018190 - }, - "m_requirements": { - "type": "class RequirementList", - "id": 10, - "offset": 280, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2840988582 - }, - "m_nSpeedChange": { - "type": "int", - "id": 11, - "offset": 376, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 636533855 - } - } - }, - "1399015043": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1399015043, - "properties": { - "m_effectIndex": { - "type": "int", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 350070655 - }, - "m_chosenSubEffect": { - "type": "int", - "id": 1, - "offset": 76, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1555389905 - } - } - }, - "1802351949": { - "name": "class TerrainCheerCostMap", - "bases": [ - "PropertyClass" - ], - "hash": 1802351949, - "properties": { - "m_nCostChangeAmt": { - "type": "int", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1687521865 - }, - "m_kTerrainType": { - "type": "enum DerbyTerrainTargetType", - "id": 1, - "offset": 76, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2546445910, - "enum_options": { - "Grass": 0, - "Dirt": 1, - "Clay": 2, - "AllObstacleTerrain": 4 - } - } - } - }, - "239887307": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 239887307, - "properties": { - "m_hideObjects": { - "type": "bool", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 487002423 - }, - "m_alterState": { - "type": "bool", - "id": 1, - "offset": 73, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1458202892 - }, - "m_zoneTag": { - "type": "std::string", - "id": 2, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3405382643 - }, - "m_modState": { - "type": "std::string", - "id": 3, - "offset": 112, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1770855548 - }, - "m_existBeyondQuest": { - "type": "bool", - "id": 4, - "offset": 74, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 923590707 - } - } - }, - "1802064045": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1802064045, - "properties": { - "m_racerStates": { - "type": "class PetDerbyRacerState", - "id": 0, - "offset": 72, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1371870313 - }, - "m_racerStats": { - "type": "class PetDerbyRacerStats", - "id": 1, - "offset": 88, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2589589540 - }, - "m_numberOfLaps": { - "type": "unsigned int", - "id": 2, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1354946171 - } - } - }, - "239372967": { - "name": "class PositionalSoundBehavior", - "bases": [ - "SoundBehavior", - "AreaBehavior", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 239372967, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_radius": { - "type": "float", - "id": 1, - "offset": 116, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 989410271 - }, - "m_category": { - "type": "enum AudioCategory", - "id": 2, - "offset": 124, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2951251982, - "enum_options": { - "AudioCategory_Irrelevent": 0, - "AudioCategory_Accoustic": 1, - "AudioCategory_Noise": 2, - "AudioCategory_Music": 3 - } - }, - "m_exclusive": { - "type": "bool", - "id": 3, - "offset": 128, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 824383403 - }, - "m_playList": { - "type": "class PlayList", - "id": 4, - "offset": 176, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2061221957 - }, - "m_volume": { - "type": "float", - "id": 5, - "offset": 304, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1162855023 - }, - "m_loopCount": { - "type": "int", - "id": 6, - "offset": 308, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 865634717 - }, - "m_minimumFalloff": { - "type": "float", - "id": 7, - "offset": 328, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 355697197 - }, - "m_maximumFalloff": { - "type": "float", - "id": 8, - "offset": 332, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2210192367 - }, - "m_animDriven": { - "type": "bool", - "id": 9, - "offset": 392, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 398394720 - }, - "m_inverted": { - "type": "bool", - "id": 10, - "offset": 397, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1034821044 - } - } - }, - "238969606": { - "name": "class WizItemHouseList*", - "bases": [ - "WizItemLocations", - "PropertyClass" - ], - "hash": 238969606, - "properties": { - "m_itemType": { - "type": "enum WizItemLocations::eItemType", - "id": 0, - "offset": 72, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3482173907, - "enum_options": { - "shop": 0, - "quest": 1, - "boss": 2, - "gardening": 3, - "goldChest": 4 - } - }, - "m_houseNames": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2902609843 - } - } - }, - "643371492": { - "name": "class SharedPointer", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 643371492, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_gearList": { - "type": "std::string", - "id": 1, - "offset": 112, - "flags": 65567, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1498902582 - } - } - }, - "1025664612": { - "name": "class TodaysQuestData", - "bases": [ - "PropertyClass" - ], - "hash": 1025664612, - "properties": { - "m_todaysQuestList": { - "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1866614959 - } - } - }, - "1399397008": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1399397008, - "properties": { - "m_healthList": { - "type": "class ParticipantParameter", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2874774642 - }, - "m_duelID.m_full": { - "type": "unsigned __int64", - "id": 1, - "offset": 88, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1024980477 - } - } - }, - "238871302": { - "name": "class WizItemHouseList", - "bases": [ - "WizItemLocations", - "PropertyClass" - ], - "hash": 238871302, - "properties": { - "m_itemType": { - "type": "enum WizItemLocations::eItemType", - "id": 0, - "offset": 72, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3482173907, - "enum_options": { - "shop": 0, - "quest": 1, - "boss": 2, - "gardening": 3, - "goldChest": 4 - } - }, - "m_houseNames": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2902609843 - } - } - }, - "643278144": { - "name": "class DespawnTimedBehaviorTemplate", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 643278144, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - }, - "m_lifespan": { - "type": "std::string", - "id": 1, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3042809453 - } - } - }, - "1024574933": { - "name": "class ControlSprite*", - "bases": [ - "Window", - "PropertyClass" - ], - "hash": 1024574933, - "properties": { - "m_sName": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306437263 - }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621225959 - }, - "m_Style": { - "type": "unsigned int", - "id": 2, - "offset": 152, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "SCALE_CHILDREN": 2, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "FOCUS_LOCKED": 64, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152 - } - }, - "m_Flags": { - "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648, - "ONE_SHOT": 8388608, - "FLIPPED_HORIZONTAL": 16777216, - "FLIPPED_VERTICAL": 33554432 - } - }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3105139380 - }, - "m_fTargetAlpha": { - "type": "float", - "id": 5, - "offset": 212, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1809129834 - }, - "m_fDisabledAlpha": { - "type": "float", - "id": 6, - "offset": 216, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1389987675 - }, - "m_fAlpha": { - "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 482130755 - }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3623628394 - }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2102211316 - }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1846695875 - }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3389835433 - }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2547159940 - }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2587533771 - }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3091503757 - }, - "m_pMaterial": { - "type": "class SharedPointer", - "id": 16, - "offset": 592, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3479277078 - }, - "m_fRotation": { - "type": "float", - "id": 17, - "offset": 608, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1175400173 - }, - "m_Color": { - "type": "class Color", - "id": 18, - "offset": 584, - "flags": 262279, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1753714077 - }, - "m_textColor": { - "type": "class Color", - "id": 19, - "offset": 612, - "flags": 262279, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2528109250 - }, - "m_textComponent": { - "type": "class TextComponent", - "id": 20, - "offset": 616, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3491704390 - } - } - }, - "1399316746": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1399316746, - "properties": { - "m_projectID": { - "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1263221425 - }, - "m_countdownSeconds": { - "type": "float", - "id": 1, - "offset": 76, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 255072071 - }, - "m_matchSize": { - "type": "int", - "id": 2, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 563704930 - }, - "m_cancelCooldownSeconds": { - "type": "int", - "id": 3, - "offset": 84, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1074662868 - }, - "m_teamCount": { - "type": "int", - "id": 4, - "offset": 88, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1614476394 - }, - "m_matchmakingList": { - "type": "class SharedPointer", - "id": 5, - "offset": 96, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 3012888769 - } - } - }, - "1802769031": { - "name": "class std::list >", - "bases": [], - "hash": 1802769031, - "properties": {} - }, - "238288679": { - "name": "class HatchmakingPetTypesList", - "bases": [ - "PropertyClass" - ], - "hash": 238288679, - "properties": { - "m_hatchmakingPetTypesList": { - "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1843158182 - } - } - }, - "1025731298": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1025731298, - "properties": { - "m_zoneName": { - "type": "std::string", - "id": 0, - "offset": 96, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2171167736 - }, - "m_mapImage": { - "type": "std::string", - "id": 1, - "offset": 128, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3475170332 - }, - "m_imageSize": { - "type": "class Size", - "id": 2, - "offset": 160, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 925407930 - }, - "m_doodleData": { - "type": "class SharedPointer", - "id": 3, - "offset": 168, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 3059121346 - }, - "m_mapRotation": { - "type": "int", - "id": 4, - "offset": 184, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1291362088 - } - } - }, - "1399461056": { - "name": "class CrownShopData", - "bases": [ - "PropertyClass" - ], - "hash": 1399461056, - "properties": { - "m_items": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2089538472 - }, - "m_crownShopLayout": { - "type": "class SharedPointer", - "id": 1, - "offset": 88, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2296174117 - }, - "m_recomendedItems": { - "type": "class SharedPointer", - "id": 2, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 971256066 - }, - "m_crownShopSegReqsSummary": { - "type": "class SharedPointer", - "id": 3, - "offset": 120, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2152734186 - }, - "m_wishlistMaxSize": { - "type": "int", - "id": 4, - "offset": 136, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 590778194 - }, - "m_wishlistSBExpansionSize": { - "type": "int", - "id": 5, - "offset": 140, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1131167734 - } - } - }, - "1803315664": { - "name": "class TubeGeomParams", - "bases": [ - "GeomParams", - "PropertyClass" - ], - "hash": 1803315664, - "properties": { - "m_eType": { - "type": "enum ProxyType", - "id": 0, - "offset": 72, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1656534066, - "enum_options": { - "ProxyTypeBox": 0, - "ProxyTypeRay": 1, - "ProxyTypeSphere": 2, - "ProxyTypeCylinder": 3, - "ProxyTypeTube": 4, - "ProxyTypePlane": 5, - "ProxyTypeMesh": 6, - "ProxyTypeInvalid": 7 - } - }, - "m_fRadius": { - "type": "float", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 787972805 - }, - "m_fLength": { - "type": "float", - "id": 2, - "offset": 84, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 558261279 - } - } - }, - "645358224": { - "name": "class PetDialogEntry", - "bases": [ - "ActorDialogEntry", - "PropertyClass" - ], - "hash": 645358224, - "properties": { - "m_requirements": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 263, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3043523229 - }, - "m_dialog": { - "type": "std::string", - "id": 1, - "offset": 88, - "flags": 8388639, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1858395851 - }, - "m_picture": { - "type": "std::string", - "id": 2, - "offset": 120, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3128322903 - }, - "m_soundFile": { - "type": "std::string", - "id": 3, - "offset": 152, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2276870852 - }, - "m_action": { - "type": "std::string", - "id": 4, - "offset": 184, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1734553689 - }, - "m_dialogEvent": { - "type": "std::string", - "id": 5, - "offset": 216, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2707957549 - }, - "m_actorTemplateID": { - "type": "unsigned int", - "id": 6, - "offset": 248, - "flags": 33554463, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2134265679 - }, - "m_cameraName": { - "type": "std::string", - "id": 7, - "offset": 256, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3252786917 - }, - "m_interpolationDuration": { - "type": "float", - "id": 8, - "offset": 312, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1458058437, - "enum_options": { - "__DEFAULT": "1.0" - } - }, - "m_cameraOffsetX": { - "type": "float", - "id": 9, - "offset": 288, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1515912895 - }, - "m_cameraOffsetY": { - "type": "float", - "id": 10, - "offset": 292, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1515912896 - }, - "m_cameraOffsetZ": { - "type": "float", - "id": 11, - "offset": 296, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1515912897 - }, - "m_pitch": { - "type": "float", - "id": 12, - "offset": 304, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 896371695 - }, - "m_yaw": { - "type": "float", - "id": 13, - "offset": 300, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 357256328 - }, - "m_roll": { - "type": "float", - "id": 14, - "offset": 308, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 310020272 - }, - "m_cameraShakeType": { - "type": "std::string", - "id": 15, - "offset": 320, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1754128882, - "enum_options": { - "": 0, - "Constant": "Constant", - "Quake": "Quake", - "Thud": "Thud", - "End": "End", - "__DEFAULT": 0 - } - }, - "m_cameraShakeDuration": { - "type": "float", - "id": 16, - "offset": 352, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 316581010, - "enum_options": { - "__DEFAULT": "0.0" - } - }, - "m_cameraShakeAmplitude": { - "type": "float", - "id": 17, - "offset": 356, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2179718321, - "enum_options": { - "__DEFAULT": "0.0" - } - }, - "m_bypassCameraOnReview": { - "type": "bool", - "id": 18, - "offset": 360, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1412905725, - "enum_options": { - "__DEFAULT": 1 - } - }, - "m_cameraZoneName": { - "type": "std::string", - "id": 19, - "offset": 368, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3131581121 - }, - "m_duration": { - "type": "float", - "id": 20, - "offset": 400, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 920323453 - }, - "m_delay": { - "type": "float", - "id": 21, - "offset": 404, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 881988134 - }, - "m_cameraHidePlayers": { - "type": "int", - "id": 22, - "offset": 408, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 28533149 - }, - "m_walkAwayNpcTemplateID": { - "type": "gid", - "id": 23, - "offset": 416, - "flags": 33554719, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 942697507 - }, - "m_walkAwayExitDirectionInDegrees": { - "type": "float", - "id": 24, - "offset": 424, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 396419785 - }, - "m_walkAwayFadeTime": { - "type": "float", - "id": 25, - "offset": 428, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 822405687 - }, - "m_walkAwayUseCurrentFacing": { - "type": "bool", - "id": 26, - "offset": 432, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1464855436 - }, - "m_standInPlayerTag": { - "type": "std::string", - "id": 27, - "offset": 440, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1590121141 - }, - "m_fadeOutCamera": { - "type": "bool", - "id": 28, - "offset": 472, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1766121252 - }, - "m_snapCameraToPlayerAtExit": { - "type": "bool", - "id": 29, - "offset": 473, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1323369645 - }, - "m_secondaryCameraName": { - "type": "std::string", - "id": 30, - "offset": 480, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1670705581 - }, - "m_secondaryInterpolationDuration": { - "type": "float", - "id": 31, - "offset": 512, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1873822349 - }, - "m_npcStandInList": { - "type": "std::string", - "id": 32, - "offset": 520, - "flags": 287, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2076308937 - }, - "m_dialogAnimationList": { - "type": "std::string", - "id": 33, - "offset": 536, - "flags": 287, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2444806919 - }, - "m_dialogTurningList": { - "type": "std::string", - "id": 34, - "offset": 552, - "flags": 287, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2782869422 - }, - "m_npcYawOffsetInDegrees": { - "type": "float", - "id": 35, - "offset": 568, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1395075270 - }, - "m_allowPlayerToMove": { - "type": "bool", - "id": 36, - "offset": 572, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 225101337 - }, - "m_soundEffectFile": { - "type": "std::string", - "id": 37, - "offset": 576, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3235157265 - }, - "m_musicFile": { - "type": "std::string", - "id": 38, - "offset": 608, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2963686620 - }, - "m_nonStackableMusic": { - "type": "bool", - "id": 39, - "offset": 640, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1675595625 - }, - "m_nonRepeatableMusic": { - "type": "bool", - "id": 40, - "offset": 641, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2138315572 - }, - "m_playMusicAtSFXVolume": { - "type": "bool", - "id": 41, - "offset": 642, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2130871816 - }, - "m_soundEffectDelay": { - "type": "float", - "id": 42, - "offset": 644, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1586382460 - }, - "m_musicDelay": { - "type": "float", - "id": 43, - "offset": 648, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1217785767 - }, - "m_musicFadeTime": { - "type": "float", - "id": 44, - "offset": 652, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 502925015 - }, - "m_dontReleaseCameraAtExit": { - "type": "bool", - "id": 45, - "offset": 474, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1107508961 - }, - "m_disableBackButton": { - "type": "bool", - "id": 46, - "offset": 656, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 122355444 - }, - "m_enableExitButton": { - "type": "bool", - "id": 47, - "offset": 657, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1824693936 - }, - "m_cameraFadeType": { - "type": "std::string", - "id": 48, - "offset": 664, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2021935382, - "enum_options": { - "": 0, - "In Out Black": "In Out Black", - "In Out White": "In Out White", - "In Black": "In Black", - "Out Black": "Out Black", - "In White": "In White", - "Out White": "Out White", - "__DEFAULT": 0 - } - }, - "m_cameraFadeTime": { - "type": "float", - "id": 49, - "offset": 696, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 614419391, - "enum_options": { - "__DEFAULT": "0.5" - } - }, - "m_idleAnimation": { - "type": "std::string", - "id": 50, - "offset": 704, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2900487193 - }, - "m_spamTime": { - "type": "float", - "id": 51, - "offset": 736, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1727215063, - "enum_options": { - "__DEFAULT": "1.0" - } - }, - "m_playSoundIfSpamming": { - "type": "bool", - "id": 52, - "offset": 740, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 690006749, - "enum_options": { - "__DEFAULT": 1 - } - }, - "m_playMusicIfSpamming": { - "type": "bool", - "id": 53, - "offset": 741, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 538564341, - "enum_options": { - "__DEFAULT": 1 - } - }, - "m_stopMusicFadeTime": { - "type": "float", - "id": 54, - "offset": 744, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 696390845, - "enum_options": { - "__DEFAULT": "0.0" - } - }, - "m_restartMusicFadeTime": { - "type": "float", - "id": 55, - "offset": 748, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 709379292, - "enum_options": { - "__DEFAULT": "0.0" - } - }, - "m_meetsRequirements": { - "type": "bool", - "id": 56, - "offset": 752, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 296443061 - }, - "m_secondaryCameraInitalDelay": { - "type": "float", - "id": 57, - "offset": 516, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1812842232 - }, - "m_displayButtonsOnTimedDialog": { - "type": "bool", - "id": 58, - "offset": 753, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 569741400 - } - } - }, - "1025667684": { - "name": "class TodaysQuestData*", - "bases": [ - "PropertyClass" - ], - "hash": 1025667684, - "properties": { - "m_todaysQuestList": { - "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1866614959 - } - } - }, - "239304037": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 239304037, - "properties": { - "m_savedSettingList": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2421895488 - } - } - }, - "644686228": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 644686228, - "properties": { - "m_itemType": { - "type": "enum WizItemLocations::eItemType", - "id": 0, - "offset": 72, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3482173907, - "enum_options": { - "shop": 0, - "quest": 1, - "boss": 2, - "gardening": 3, - "goldChest": 4 - } - } - } - }, - "644539674": { - "name": "class DynamicURLDescriptor", - "bases": [ - "PropertyClass" - ], - "hash": 644539674, - "properties": { - "m_domain": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1865930451 - }, - "m_path": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1717431880 - } - } - }, - "1403011087": { - "name": "class SetHangingEffectAlphaCinematicAction*", - "bases": [ - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 1403011087, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - }, - "m_cloaked": { - "type": "bool", - "id": 2, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 7349510 - }, - "m_alpha": { - "type": "float", - "id": 3, - "offset": 124, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 878686493 - } - } - }, - "1805572620": { - "name": "class CastleMagicTimer*", - "bases": [ - "PropertyClass" - ], - "hash": 1805572620, - "properties": { - "m_timerGID": { - "type": "gid", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1316603533 - }, - "m_onSeconds": { - "type": "unsigned int", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 782324633 - }, - "m_offSeconds": { - "type": "unsigned int", - "id": 2, - "offset": 84, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1856084727 - }, - "m_timerRunsContinuously": { - "type": "bool", - "id": 3, - "offset": 88, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1984044184 - }, - "m_isOnTimer": { - "type": "bool", - "id": 4, - "offset": 90, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1687072749 - }, - "m_timeLeft": { - "type": "float", - "id": 5, - "offset": 92, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1405489169 - }, - "m_displayOnScreen": { - "type": "bool", - "id": 6, - "offset": 89, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1273696038 - }, - "m_fastTimer": { - "type": "bool", - "id": 7, - "offset": 97, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1269294082 - } - } - }, - "644021855": { - "name": "class SharedPointer", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 644021855, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - }, - "m_introTime": { - "type": "float", - "id": 1, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2010936242 - } - } - }, - "1026276119": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1026276119, - "properties": { - "m_name": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1717359772 - } - } - }, - "1400612680": { - "name": "class SharedPointer", - "bases": [ - "DerbyEffect", - "PropertyClass" - ], - "hash": 1400612680, - "properties": { - "m_buffType": { - "type": "enum DerbyTalentBuffType", - "id": 0, - "offset": 92, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1149251982, - "enum_options": { - "Buff": 0, - "Debuff": 1, - "Neither": 2 - } - }, - "m_kTarget": { - "type": "enum DerbyTargetType", - "id": 1, - "offset": 96, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1807803351, - "enum_options": { - "kTargetInFront": 0, - "kTargetBehind": 1, - "kTargetFirst": 2, - "kTargetSelf": 3, - "kTargetAll": 4, - "kTargetLast": 5 - } - }, - "m_nDuration": { - "type": "int", - "id": 2, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1110167982 - }, - "m_effectID": { - "type": "unsigned int", - "id": 3, - "offset": 88, - "flags": 24, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2347630439 - }, - "m_imageFilename": { - "type": "std::string", - "id": 4, - "offset": 112, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2813328063 - }, - "m_iconIndex": { - "type": "unsigned int", - "id": 5, - "offset": 144, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1265133262 - }, - "m_soundOnActivate": { - "type": "std::string", - "id": 6, - "offset": 152, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1956929714 - }, - "m_soundOnTarget": { - "type": "std::string", - "id": 7, - "offset": 184, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3444214056 - }, - "m_targetParticleEffect": { - "type": "std::string", - "id": 8, - "offset": 216, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3048234723 - }, - "m_overheadMessage": { - "type": "std::string", - "id": 9, - "offset": 248, - "flags": 8388639, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1701018190 - }, - "m_requirements": { - "type": "class RequirementList", - "id": 10, - "offset": 280, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2840988582 - }, - "m_nTimesToAdd": { - "type": "int", - "id": 11, - "offset": 376, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1414275638 - } - } - }, - "1805408780": { - "name": "class CastleMagicTimer", - "bases": [ - "PropertyClass" - ], - "hash": 1805408780, - "properties": { - "m_timerGID": { - "type": "gid", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1316603533 - }, - "m_onSeconds": { - "type": "unsigned int", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 782324633 - }, - "m_offSeconds": { - "type": "unsigned int", - "id": 2, - "offset": 84, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1856084727 - }, - "m_timerRunsContinuously": { - "type": "bool", - "id": 3, - "offset": 88, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1984044184 - }, - "m_isOnTimer": { - "type": "bool", - "id": 4, - "offset": 90, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1687072749 - }, - "m_timeLeft": { - "type": "float", - "id": 5, - "offset": 92, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1405489169 - }, - "m_displayOnScreen": { - "type": "bool", - "id": 6, - "offset": 89, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1273696038 - }, - "m_fastTimer": { - "type": "bool", - "id": 7, - "offset": 97, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1269294082 - } - } - }, - "239990823": { - "name": "class MonsterMagicLevelInfo", - "bases": [ - "PropertyClass" - ], - "hash": 239990823, - "properties": { - "m_level": { - "type": "unsigned char", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1438884808 - }, - "m_xpToLevel": { - "type": "int", - "id": 1, - "offset": 76, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1972600157 - }, - "m_levelName": { - "type": "std::string", - "id": 2, - "offset": 80, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3595417396 - } - } - }, - "643772277": { - "name": "enum BoosterPackTemplate::BoosterPackType", - "bases": [], - "hash": 643772277, - "properties": {} - }, - "1400222946": { - "name": "class PetDerbyTalentTemplate", - "bases": [ - "PetTalentBaseTemplate", - "CoreTemplate", - "PropertyClass" - ], - "hash": 1400222946, - "properties": { - "m_behaviors": { - "type": "class BehaviorTemplate*", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1197808594 - }, - "m_talentName": { - "type": "std::string", - "id": 1, - "offset": 96, - "flags": 134217735, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2455147588 - }, - "m_displayName": { - "type": "std::string", - "id": 2, - "offset": 136, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2446900370 - }, - "m_description": { - "type": "std::string", - "id": 3, - "offset": 168, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1649374815 - }, - "m_imageIndex": { - "type": "unsigned int", - "id": 4, - "offset": 200, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1781902856 - }, - "m_imageName": { - "type": "std::string", - "id": 5, - "offset": 208, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2391520543 - }, - "m_rank": { - "type": "unsigned char", - "id": 6, - "offset": 240, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 857403388 - }, - "m_breedsAsTalentName": { - "type": "std::string", - "id": 7, - "offset": 248, - "flags": 268435463, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2143399629, - "enum_options": { - "__BASECLASS": "PetTalentBaseTemplate" - } - }, - "m_bRetired": { - "type": "bool", - "id": 8, - "offset": 280, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 904227684, - "enum_options": { - "__DEFAULT": 0 - } - }, - "m_unsearchable": { - "type": "bool", - "id": 9, - "offset": 281, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1760679968, - "enum_options": { - "__DEFAULT": 0 - } - }, - "m_isBuff": { - "type": "enum DerbyTalentBuffType", - "id": 10, - "offset": 288, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 688625224, - "enum_options": { - "Buff": 0, - "Debuff": 1, - "Neither": 2 - } - }, - "m_fCooldown": { - "type": "float", - "id": 11, - "offset": 292, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1665682594 - }, - "m_derbyEffects": { - "type": "class SharedPointer", - "id": 12, - "offset": 296, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1259488141 - } - } - }, - "1804927325": { - "name": "MadlibArgT", - "bases": [ - "MadlibArg", - "PropertyClass" - ], - "hash": 1804927325, - "properties": { - "m_madlibToken": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3058682373 - }, - "m_madlibArgument": { - "type": "std::string", - "id": 1, - "offset": 112, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2376191783 - } - } - }, - "1400153498": { - "name": "class HatchmakingKioskBehaviorTemplate", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 1400153498, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - }, - "m_isKiosk": { - "type": "bool", - "id": 1, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1545253296 - } - } - }, - "239992103": { - "name": "class MonsterMagicLevelInfo*", - "bases": [ - "PropertyClass" - ], - "hash": 239992103, - "properties": { - "m_level": { - "type": "unsigned char", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1438884808 - }, - "m_xpToLevel": { - "type": "int", - "id": 1, - "offset": 76, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1972600157 - }, - "m_levelName": { - "type": "std::string", - "id": 2, - "offset": 80, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3595417396 - } - } - }, - "1036579686": { - "name": "class SharedPointer", - "bases": [ - "InteractableOption", - "ServiceOptionBase", - "PropertyClass" - ], - "hash": 1036579686, - "properties": { - "m_serviceName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2206028813 - }, - "m_iconKey": { - "type": "std::string", - "id": 1, - "offset": 168, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2457138637 - }, - "m_displayKey": { - "type": "std::string", - "id": 2, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3023276954 - }, - "m_serviceIndex": { - "type": "unsigned int", - "id": 3, - "offset": 204, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2103126710 - }, - "m_forceInteract": { - "type": "bool", - "id": 4, - "offset": 200, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1705789564 - }, - "m_optionIndex": { - "type": "int", - "id": 5, - "offset": 216, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 276287019 - } - } - }, - "1399949609": { - "name": "class HousingNode", - "bases": [ - "PropertyClass" - ], - "hash": 1399949609, - "properties": { - "m_connectionType": { - "type": "enum HousingNode::ConnectionType", - "id": 0, - "offset": 72, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 427658421, - "enum_options": { - "MALE": 0, - "FEMALE": 1, - "__DEFAULT": "MALE" - } - }, - "m_locationType": { - "type": "unsigned int", - "id": 1, - "offset": 76, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 538163080, - "enum_options": { - "INSIDE": 1, - "OUTSIDE": 2, - "INACCESSIBLE": 4, - "__DEFAULT": "INSIDE" - } - }, - "m_exclusiveRestrictions": { - "type": "enum HousingNode::ExclusiveRestrictions", - "id": 2, - "offset": 80, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3137090195, - "enum_options": { - "NO_RESTRICTIONS": 0, - "WALL_ONLY": 1, - "DOOR_ONLY": 2, - "WINDOW_ONLY": 3, - "STAIR_ONLY": 4, - "EDGE_ONLY": 5, - "CEILING_ONLY": 6, - "INSIDE_VASE_ONLY": 7, - "RECTANGLE_ONLY": 8, - "WINDOW_SMALLROUNDTOP": 9, - "WINDOW_TALLROUNDTOP": 10, - "WINDOW_TALLSQUARETOP": 11, - "WINDOW_STANDARD": 12, - "WINDOW_LARGE": 13, - "DOOR_SINGLEROUNDTOP": 14, - "DOOR_SINGLESQUARETOP": 15, - "DOOR_DOUBLEROUNDTOP": 16, - "DOOR_DOUBLESQUARETOP": 17, - "GARDEN_ONLY": 18, - "ENCHANTED_GARDEN_ONLY": 19, - "ENRICHED_GARDEN_ONLY": 20, - "WALL_EDGE": 21, - "__DEFAULT": "NO_RESTRICTIONS" - } - }, - "m_supportSurface": { - "type": "bool", - "id": 3, - "offset": 84, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1804627449, - "enum_options": { - "__DEFAULT": 0 - } - }, - "m_position": { - "type": "class Vector3D", - "id": 4, - "offset": 88, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3697900983 - } - } - }, - "1029736407": { - "name": "class PlayerAggroBehavior*", - "bases": [ - "AggroBehavior", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1029736407, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - } - } - }, - "644539698": { - "name": "class DynamicURLDescriptor*", - "bases": [ - "PropertyClass" - ], - "hash": 644539698, - "properties": { - "m_domain": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1865930451 - }, - "m_path": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1717431880 - } - } - }, - "1028134658": { - "name": "class SpectatorWindow*", - "bases": [ - "Window", - "PropertyClass" - ], - "hash": 1028134658, - "properties": { - "m_sName": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306437263 - }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621225959 - }, - "m_Style": { - "type": "unsigned int", - "id": 2, - "offset": 152, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "SCALE_CHILDREN": 2, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "FOCUS_LOCKED": 64, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152 - } - }, - "m_Flags": { - "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } - }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3105139380 - }, - "m_fTargetAlpha": { - "type": "float", - "id": 5, - "offset": 212, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1809129834 - }, - "m_fDisabledAlpha": { - "type": "float", - "id": 6, - "offset": 216, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1389987675 - }, - "m_fAlpha": { - "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 482130755 - }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3623628394 - }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2102211316 - }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1846695875 - }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3389835433 - }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2547159940 - }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2587533771 - }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3091503757 - } - } - }, - "1806521907": { - "name": "class std::list >", - "bases": [], - "hash": 1806521907, - "properties": {} - }, - "240601586": { - "name": "class SharedPointer", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 240601586, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - } - } - }, - "1026850629": { - "name": "class ClientAnnounceTextCinematicAction*", - "bases": [ - "AnnounceTextCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 1026850629, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_text": { - "type": "std::string", - "id": 1, - "offset": 112, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1717580128 - }, - "m_onlyForPlayer": { - "type": "bool", - "id": 2, - "offset": 144, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 249913353 - }, - "m_stringTable": { - "type": "std::string", - "id": 3, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3386025626 - }, - "m_effectParamMadlib": { - "type": "bool", - "id": 4, - "offset": 146, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 292989178 - } - } - }, - "1400181986": { - "name": "class PetDerbyTalentTemplate*", - "bases": [ - "PetTalentBaseTemplate", - "CoreTemplate", - "PropertyClass" - ], - "hash": 1400181986, - "properties": { - "m_behaviors": { - "type": "class BehaviorTemplate*", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1197808594 - }, - "m_talentName": { - "type": "std::string", - "id": 1, - "offset": 96, - "flags": 134217735, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2455147588 - }, - "m_displayName": { - "type": "std::string", - "id": 2, - "offset": 136, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2446900370 - }, - "m_description": { - "type": "std::string", - "id": 3, - "offset": 168, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1649374815 - }, - "m_imageIndex": { - "type": "unsigned int", - "id": 4, - "offset": 200, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1781902856 - }, - "m_imageName": { - "type": "std::string", - "id": 5, - "offset": 208, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2391520543 - }, - "m_rank": { - "type": "unsigned char", - "id": 6, - "offset": 240, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 857403388 - }, - "m_breedsAsTalentName": { - "type": "std::string", - "id": 7, - "offset": 248, - "flags": 268435463, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2143399629, - "enum_options": { - "__BASECLASS": "PetTalentBaseTemplate" - } - }, - "m_bRetired": { - "type": "bool", - "id": 8, - "offset": 280, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 904227684, - "enum_options": { - "__DEFAULT": 0 - } - }, - "m_unsearchable": { - "type": "bool", - "id": 9, - "offset": 281, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1760679968, - "enum_options": { - "__DEFAULT": 0 - } - }, - "m_isBuff": { - "type": "enum DerbyTalentBuffType", - "id": 10, - "offset": 288, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 688625224, - "enum_options": { - "Buff": 0, - "Debuff": 1, - "Neither": 2 - } - }, - "m_fCooldown": { - "type": "float", - "id": 11, - "offset": 292, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1665682594 - }, - "m_derbyEffects": { - "type": "class SharedPointer", - "id": 12, - "offset": 296, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1259488141 - } - } - }, - "1806355324": { - "name": "class SharedPointer", - "bases": [ - "WindowAnimation", - "PropertyClass" - ], - "hash": 1806355324, - "properties": { - "m_bUseDeepCopy": { - "type": "bool", - "id": 0, - "offset": 72, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 433380635 - }, - "m_winAnimList": { - "type": "class SharedPointer", - "id": 1, - "offset": 80, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1941062728 - }, - "m_bLooping": { - "type": "bool", - "id": 2, - "offset": 104, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2131020845 - } - } - }, - "1026850581": { - "name": "class ClientAnnounceTextCinematicAction", - "bases": [ - "AnnounceTextCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 1026850581, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_text": { - "type": "std::string", - "id": 1, - "offset": 112, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1717580128 - }, - "m_onlyForPlayer": { - "type": "bool", - "id": 2, - "offset": 144, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 249913353 - }, - "m_stringTable": { - "type": "std::string", - "id": 3, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3386025626 - }, - "m_effectParamMadlib": { - "type": "bool", - "id": 4, - "offset": 146, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 292989178 - } - } - }, - "1805935916": { - "name": "class SharedPointer", - "bases": [ - "GameEffectBase", - "PropertyClass" - ], - "hash": 1805935916, - "properties": { - "m_currentTickCount": { - "type": "double", - "id": 0, - "offset": 80, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2533274692 - }, - "m_effectNameID": { - "type": "unsigned int", - "id": 1, - "offset": 96, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1204067144 - }, - "m_bIsOnPet": { - "type": "bool", - "id": 2, - "offset": 73, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 522593303 - }, - "m_originatorID": { - "type": "gid", - "id": 3, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1131810019 - }, - "m_itemSlotID": { - "type": "unsigned int", - "id": 4, - "offset": 112, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1895747595 - }, - "m_internalID": { - "type": "int", - "id": 5, - "offset": 92, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1643137924 - }, - "m_endTime": { - "type": "unsigned int", - "id": 6, - "offset": 88, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 716479635 - }, - "m_pipsGiven": { - "type": "int", - "id": 7, - "offset": 128, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1346249167 - }, - "m_powerPipsGiven": { - "type": "int", - "id": 8, - "offset": 132, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 377908508 - } - } - }, - "645358128": { - "name": "class PetDialogEntry*", - "bases": [ - "ActorDialogEntry", - "PropertyClass" - ], - "hash": 645358128, - "properties": { - "m_requirements": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 263, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3043523229 - }, - "m_dialog": { - "type": "std::string", - "id": 1, - "offset": 88, - "flags": 8388639, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1858395851 - }, - "m_picture": { - "type": "std::string", - "id": 2, - "offset": 120, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3128322903 - }, - "m_soundFile": { - "type": "std::string", - "id": 3, - "offset": 152, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2276870852 - }, - "m_action": { - "type": "std::string", - "id": 4, - "offset": 184, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1734553689 - }, - "m_dialogEvent": { - "type": "std::string", - "id": 5, - "offset": 216, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2707957549 - }, - "m_actorTemplateID": { - "type": "unsigned int", - "id": 6, - "offset": 248, - "flags": 33554463, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2134265679 - }, - "m_cameraName": { - "type": "std::string", - "id": 7, - "offset": 256, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3252786917 - }, - "m_interpolationDuration": { - "type": "float", - "id": 8, - "offset": 312, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1458058437, - "enum_options": { - "__DEFAULT": "1.0" - } - }, - "m_cameraOffsetX": { - "type": "float", - "id": 9, - "offset": 288, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1515912895 - }, - "m_cameraOffsetY": { - "type": "float", - "id": 10, - "offset": 292, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1515912896 - }, - "m_cameraOffsetZ": { - "type": "float", - "id": 11, - "offset": 296, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1515912897 - }, - "m_pitch": { - "type": "float", - "id": 12, - "offset": 304, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 896371695 - }, - "m_yaw": { - "type": "float", - "id": 13, - "offset": 300, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 357256328 - }, - "m_roll": { - "type": "float", - "id": 14, - "offset": 308, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 310020272 - }, - "m_cameraShakeType": { - "type": "std::string", - "id": 15, - "offset": 320, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1754128882, - "enum_options": { - "": 0, - "Constant": "Constant", - "Quake": "Quake", - "Thud": "Thud", - "End": "End", - "__DEFAULT": 0 - } - }, - "m_cameraShakeDuration": { - "type": "float", - "id": 16, - "offset": 352, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 316581010, - "enum_options": { - "__DEFAULT": "0.0" - } - }, - "m_cameraShakeAmplitude": { - "type": "float", - "id": 17, - "offset": 356, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2179718321, - "enum_options": { - "__DEFAULT": "0.0" - } - }, - "m_bypassCameraOnReview": { - "type": "bool", - "id": 18, - "offset": 360, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1412905725, - "enum_options": { - "__DEFAULT": 1 - } - }, - "m_cameraZoneName": { - "type": "std::string", - "id": 19, - "offset": 368, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3131581121 - }, - "m_duration": { - "type": "float", - "id": 20, - "offset": 400, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 920323453 - }, - "m_delay": { - "type": "float", - "id": 21, - "offset": 404, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 881988134 - }, - "m_cameraHidePlayers": { - "type": "int", - "id": 22, - "offset": 408, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 28533149 - }, - "m_walkAwayNpcTemplateID": { - "type": "gid", - "id": 23, - "offset": 416, - "flags": 33554719, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 942697507 - }, - "m_walkAwayExitDirectionInDegrees": { - "type": "float", - "id": 24, - "offset": 424, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 396419785 - }, - "m_walkAwayFadeTime": { - "type": "float", - "id": 25, - "offset": 428, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 822405687 - }, - "m_walkAwayUseCurrentFacing": { - "type": "bool", - "id": 26, - "offset": 432, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1464855436 - }, - "m_standInPlayerTag": { - "type": "std::string", - "id": 27, - "offset": 440, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1590121141 - }, - "m_fadeOutCamera": { - "type": "bool", - "id": 28, - "offset": 472, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1766121252 - }, - "m_snapCameraToPlayerAtExit": { - "type": "bool", - "id": 29, - "offset": 473, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1323369645 - }, - "m_secondaryCameraName": { - "type": "std::string", - "id": 30, - "offset": 480, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1670705581 - }, - "m_secondaryInterpolationDuration": { - "type": "float", - "id": 31, - "offset": 512, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1873822349 - }, - "m_npcStandInList": { - "type": "std::string", - "id": 32, - "offset": 520, - "flags": 287, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2076308937 - }, - "m_dialogAnimationList": { - "type": "std::string", - "id": 33, - "offset": 536, - "flags": 287, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2444806919 - }, - "m_dialogTurningList": { - "type": "std::string", - "id": 34, - "offset": 552, - "flags": 287, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2782869422 - }, - "m_npcYawOffsetInDegrees": { - "type": "float", - "id": 35, - "offset": 568, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1395075270 - }, - "m_allowPlayerToMove": { - "type": "bool", - "id": 36, - "offset": 572, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 225101337 - }, - "m_soundEffectFile": { - "type": "std::string", - "id": 37, - "offset": 576, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3235157265 - }, - "m_musicFile": { - "type": "std::string", - "id": 38, - "offset": 608, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2963686620 - }, - "m_nonStackableMusic": { - "type": "bool", - "id": 39, - "offset": 640, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1675595625 - }, - "m_nonRepeatableMusic": { - "type": "bool", - "id": 40, - "offset": 641, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2138315572 - }, - "m_playMusicAtSFXVolume": { - "type": "bool", - "id": 41, - "offset": 642, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2130871816 - }, - "m_soundEffectDelay": { - "type": "float", - "id": 42, - "offset": 644, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1586382460 - }, - "m_musicDelay": { - "type": "float", - "id": 43, - "offset": 648, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1217785767 - }, - "m_musicFadeTime": { - "type": "float", - "id": 44, - "offset": 652, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 502925015 - }, - "m_dontReleaseCameraAtExit": { - "type": "bool", - "id": 45, - "offset": 474, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1107508961 - }, - "m_disableBackButton": { - "type": "bool", - "id": 46, - "offset": 656, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 122355444 - }, - "m_enableExitButton": { - "type": "bool", - "id": 47, - "offset": 657, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1824693936 - }, - "m_cameraFadeType": { - "type": "std::string", - "id": 48, - "offset": 664, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2021935382, - "enum_options": { - "": 0, - "In Out Black": "In Out Black", - "In Out White": "In Out White", - "In Black": "In Black", - "Out Black": "Out Black", - "In White": "In White", - "Out White": "Out White", - "__DEFAULT": 0 - } - }, - "m_cameraFadeTime": { - "type": "float", - "id": 49, - "offset": 696, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 614419391, - "enum_options": { - "__DEFAULT": "0.5" - } - }, - "m_idleAnimation": { - "type": "std::string", - "id": 50, - "offset": 704, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2900487193 - }, - "m_spamTime": { - "type": "float", - "id": 51, - "offset": 736, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1727215063, - "enum_options": { - "__DEFAULT": "1.0" - } - }, - "m_playSoundIfSpamming": { - "type": "bool", - "id": 52, - "offset": 740, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 690006749, - "enum_options": { - "__DEFAULT": 1 - } - }, - "m_playMusicIfSpamming": { - "type": "bool", - "id": 53, - "offset": 741, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 538564341, - "enum_options": { - "__DEFAULT": 1 - } - }, - "m_stopMusicFadeTime": { - "type": "float", - "id": 54, - "offset": 744, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 696390845, - "enum_options": { - "__DEFAULT": "0.0" - } - }, - "m_restartMusicFadeTime": { - "type": "float", - "id": 55, - "offset": 748, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 709379292, - "enum_options": { - "__DEFAULT": "0.0" - } - }, - "m_meetsRequirements": { - "type": "bool", - "id": 56, - "offset": 752, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 296443061 - }, - "m_secondaryCameraInitalDelay": { - "type": "float", - "id": 57, - "offset": 516, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1812842232 - }, - "m_displayButtonsOnTimedDialog": { - "type": "bool", - "id": 58, - "offset": 753, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 569741400 - } - } - }, - "241655929": { - "name": "class WhirlyBurlyStartGame*", - "bases": [ - "PropertyClass" - ], - "hash": 241655929, - "properties": { - "m_playerList": { - "type": "gid", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1909774945 - }, - "m_teamColorList": { - "type": "int", - "id": 1, - "offset": 88, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 351259772 - }, - "m_packedNameList": { - "type": "std::string", - "id": 2, - "offset": 104, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 3513135712 - } - } - }, - "1400295921": { - "name": "class HousingBlob", - "bases": [ - "PropertyClass" - ], - "hash": 1400295921, - "properties": { - "m_housingBlobObjectList": { - "type": "class SharedPointer", - "id": 0, - "offset": 80, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2812881480 - } - } - }, - "241655889": { - "name": "class WhirlyBurlyStartGame", - "bases": [ - "PropertyClass" - ], - "hash": 241655889, - "properties": { - "m_playerList": { - "type": "gid", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1909774945 - }, - "m_teamColorList": { - "type": "int", - "id": 1, - "offset": 88, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 351259772 - }, - "m_packedNameList": { - "type": "std::string", - "id": 2, - "offset": 104, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 3513135712 - } - } - }, - "1028129538": { - "name": "class SpectatorWindow", - "bases": [ - "Window", - "PropertyClass" - ], - "hash": 1028129538, - "properties": { - "m_sName": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306437263 - }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621225959 - }, - "m_Style": { - "type": "unsigned int", - "id": 2, - "offset": 152, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "SCALE_CHILDREN": 2, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "FOCUS_LOCKED": 64, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152 - } - }, - "m_Flags": { - "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } - }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3105139380 - }, - "m_fTargetAlpha": { - "type": "float", - "id": 5, - "offset": 212, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1809129834 - }, - "m_fDisabledAlpha": { - "type": "float", - "id": 6, - "offset": 216, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1389987675 - }, - "m_fAlpha": { - "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 482130755 - }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3623628394 - }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2102211316 - }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1846695875 - }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3389835433 - }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2547159940 - }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2587533771 - }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3091503757 - } - } - }, - "241581292": { - "name": "class PetGameBehaviorTemplate", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 241581292, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - }, - "m_gameName": { - "type": "std::string", - "id": 1, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3229752342 - } - } - }, - "646045862": { - "name": "class CharacterElementTable", - "bases": [ - "PropertyClass" - ], - "hash": 646045862, - "properties": { - "m_sGender": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3526777091 - }, - "m_sBodySource": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2802913933 - }, - "m_sSkeletonSource": { - "type": "std::string", - "id": 2, - "offset": 136, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1545150788 - }, - "m_idleAnimation": { - "type": "int", - "id": 3, - "offset": 168, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1402787576 - }, - "m_headElementList": { - "type": "class CharacterElement*", - "id": 4, - "offset": 176, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 568589744 - }, - "m_hatElementList": { - "type": "class CharacterElement*", - "id": 5, - "offset": 200, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2416614427 - }, - "m_hairElementList": { - "type": "class CharacterElement*", - "id": 6, - "offset": 224, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1563065986 - }, - "m_torsoElementList": { - "type": "class CharacterElement*", - "id": 7, - "offset": 248, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2307446133 - }, - "m_feetElementList": { - "type": "class CharacterElement*", - "id": 8, - "offset": 272, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 671555138 - }, - "m_hairTextureList": { - "type": "class CharacterElement*", - "id": 9, - "offset": 296, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2218875305 - }, - "m_torsoTextureList": { - "type": "class CharacterElement*", - "id": 10, - "offset": 320, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 815771804 - }, - "m_torsoDecalList": { - "type": "class CharacterElement*", - "id": 11, - "offset": 344, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 808442148 - }, - "m_skinTextureList": { - "type": "class CharacterElement*", - "id": 12, - "offset": 368, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2500320186 - }, - "m_skinDecalList": { - "type": "class CharacterElement*", - "id": 13, - "offset": 392, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2545329346 - }, - "m_hatTextureList": { - "type": "class CharacterElement*", - "id": 14, - "offset": 416, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 924940098 - }, - "m_hatDecalList": { - "type": "class CharacterElement*", - "id": 15, - "offset": 440, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1780727370 - }, - "m_feetTextureList": { - "type": "class CharacterElement*", - "id": 16, - "offset": 464, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1327364457 - }, - "m_feetDecalList": { - "type": "class CharacterElement*", - "id": 17, - "offset": 488, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1828424369 - }, - "m_attachSlotList": { - "type": "class CharacterElement*", - "id": 18, - "offset": 512, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1124990027 - }, - "m_attachableList": { - "type": "class NamedCharacterElement", - "id": 19, - "offset": 536, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2132808559 - }, - "m_skinDecalList2": { - "type": "class CharacterElement*", - "id": 20, - "offset": 560, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1599566932 - }, - "m_faceElementList": { - "type": "class CharacterElement*", - "id": 21, - "offset": 584, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1040559117 - }, - "m_eyeElementList": { - "type": "class CharacterElement*", - "id": 22, - "offset": 608, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1894800033 - }, - "m_mouthElementList": { - "type": "class CharacterElement*", - "id": 23, - "offset": 632, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1586296075 - }, - "m_noseElementList": { - "type": "class CharacterElement*", - "id": 24, - "offset": 656, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2343885043 - }, - "m_accessoryElementList": { - "type": "class CharacterElement*", - "id": 25, - "offset": 680, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 771146122 - }, - "m_eyeColorTextureList": { - "type": "class CharacterElement*", - "id": 26, - "offset": 704, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1921350375 - }, - "m_faceDecalTextureList": { - "type": "class CharacterElement*", - "id": 27, - "offset": 728, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1002745901 - }, - "m_mouthDecalTextureList": { - "type": "class CharacterElement*", - "id": 28, - "offset": 752, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2358724587 - } - } - }, - "1027538353": { - "name": "class TeamHelpUpdateInfo", - "bases": [ - "PropertyClass" - ], - "hash": 1027538353, - "properties": { - "m_worldList": { - "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 560397361 - } - } - }, - "1807257677": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1807257677, - "properties": { - "m_wadFile": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3265100503 - }, - "m_fullReplacement": { - "type": "bool", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1453969174 - } - } - }, - "645798460": { - "name": "class PhysicsSimMassTube*", - "bases": [ - "PhysicsSimMassCylinder", - "PhysicsSimMassSphere", - "PhysicsSimMass", - "PropertyClass" - ], - "hash": 645798460, - "properties": {} - }, - "1401438223": { - "name": "class SetHangingEffectAlphaCinematicAction", - "bases": [ - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 1401438223, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - }, - "m_cloaked": { - "type": "bool", - "id": 2, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 7349510 - }, - "m_alpha": { - "type": "float", - "id": 3, - "offset": 124, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 878686493 - } - } - }, - "645711197": { - "name": "class Size", - "bases": [], - "hash": 645711197, - "properties": {} - }, - "1400788495": { - "name": "class TeleportProximityBehavior*", - "bases": [ - "TeleportProximityBehaviorBase", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1400788495, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - } - } - }, - "1400692897": { - "name": "class CritBlockOverride", - "bases": [ - "CombatRule", - "PropertyClass" - ], - "hash": 1400692897, - "properties": { - "m_baseCritDivisor": { - "type": "int", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1793948871 - }, - "m_baseBlockDivisor": { - "type": "int", - "id": 1, - "offset": 76, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 331192160 - }, - "m_critScalarDivisor": { - "type": "int", - "id": 2, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 353250050 - }, - "m_blockScalarDivisor": { - "type": "int", - "id": 3, - "offset": 84, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 778321147 - }, - "m_finalCritMedian1": { - "type": "float", - "id": 4, - "offset": 88, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1779518738 - }, - "m_finalCritMedian2": { - "type": "float", - "id": 5, - "offset": 92, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1779518739 - }, - "m_finalBlockMedian1": { - "type": "float", - "id": 6, - "offset": 96, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2233508235 - }, - "m_finalBlockMedian2": { - "type": "float", - "id": 7, - "offset": 100, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2233508236 - } - } - }, - "1810637158": { - "name": "class UnSwapShadowMaterialActorCinematicAction*", - "bases": [ - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 1810637158, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - } - } - }, - "242435451": { - "name": "class CreatePipCinematicActorsFromResult*", - "bases": [ - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 242435451, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - }, - "m_newActorName": { - "type": "std::string", - "id": 2, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2029131039 - } - } - }, - "1028717844": { - "name": "class PeriodicSubscription", - "bases": [ - "PropertyClass" - ], - "hash": 1028717844, - "properties": { - "m_type": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1717601629 - }, - "m_resetTime": { - "type": "unsigned __int64", - "id": 1, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1841687339 - }, - "m_productIconType": { - "type": "std::string", - "id": 2, - "offset": 112, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3026584199 - }, - "m_status": { - "type": "std::string", - "id": 3, - "offset": 144, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2458480799 - }, - "m_itemsStatus": { - "type": "std::string", - "id": 4, - "offset": 176, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2942863777 - }, - "m_membership": { - "type": "bool", - "id": 5, - "offset": 208, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1596198559 - } - } - }, - "1809378271": { - "name": "class SharedPointer", - "bases": [ - "HousingGameInterface", - "PropertyClass" - ], - "hash": 1809378271, - "properties": {} - }, - "242367724": { - "name": "class PetGameBehaviorTemplate*", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 242367724, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - }, - "m_gameName": { - "type": "std::string", - "id": 1, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3229752342 - } - } - }, - "645912571": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 645912571, - "properties": { - "m_monsterMagicWorldTotalList": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 3735585298 - } - } - }, - "1028402989": { - "name": "class ObjStateOverrideInfo*", - "bases": [ - "PropertyClass" - ], - "hash": 1028402989, - "properties": { - "m_stateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2039264668 - } - } - }, - "1808348459": { - "name": "class SharedPointer", - "bases": [ - "ClientInventoryBehavior", - "InventoryBehaviorBase", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1808348459, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_itemList": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 27, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1983655699 - }, - "m_numItemsAllowed": { - "type": "int", - "id": 2, - "offset": 160, - "flags": 27, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1404509492 - }, - "m_numJewelsAllowed": { - "type": "int", - "id": 3, - "offset": 164, - "flags": 27, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 49168892 - }, - "m_numCEEmotesAllowed": { - "type": "int", - "id": 4, - "offset": 168, - "flags": 27, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 259951495 - }, - "m_numCETeleportsAllowed": { - "type": "int", - "id": 5, - "offset": 172, - "flags": 27, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 284631772 - } - } - }, - "1028205814": { - "name": "class ClientRentalBehavior", - "bases": [ - "ClientTimedItemBehavior", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1028205814, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_expireTime": { - "type": "unsigned int", - "id": 1, - "offset": 112, - "flags": 59, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1836304873 - } - } - }, - "1401067856": { - "name": "class WizardAutobotMobAvoidance", - "bases": [ - "AutobotMobAvoidance", - "PropertyClass" - ], - "hash": 1401067856, - "properties": {} - }, - "1808035674": { - "name": "enum MatchCostAdjustment::ADJUSTMENT_TYPE", - "bases": [], - "hash": 1808035674, - "properties": {} - }, - "1028205790": { - "name": "class ClientRentalBehavior*", - "bases": [ - "ClientTimedItemBehavior", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1028205790, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_expireTime": { - "type": "unsigned int", - "id": 1, - "offset": 112, - "flags": 59, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1836304873 - } - } - }, - "647324141": { - "name": "class ClientSpawnActorCinematicAction", - "bases": [ - "SpawnActorCinematicAction", - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 647324141, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - }, - "m_objectInfo": { - "type": "class CoreObjectInfo*", - "id": 2, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1373700953 - }, - "m_bStartHidden": { - "type": "bool", - "id": 3, - "offset": 128, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1939845615 - } - } - }, - "245734984": { - "name": "class SharedPointer", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 245734984, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_playerList": { - "type": "gid", - "id": 1, - "offset": 112, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1909774945 - } - } - }, - "646047142": { - "name": "class CharacterElementTable*", - "bases": [ - "PropertyClass" - ], - "hash": 646047142, - "properties": { - "m_sGender": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3526777091 - }, - "m_sBodySource": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2802913933 - }, - "m_sSkeletonSource": { - "type": "std::string", - "id": 2, - "offset": 136, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1545150788 - }, - "m_idleAnimation": { - "type": "int", - "id": 3, - "offset": 168, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1402787576 - }, - "m_headElementList": { - "type": "class CharacterElement*", - "id": 4, - "offset": 176, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 568589744 - }, - "m_hatElementList": { - "type": "class CharacterElement*", - "id": 5, - "offset": 200, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2416614427 - }, - "m_hairElementList": { - "type": "class CharacterElement*", - "id": 6, - "offset": 224, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1563065986 - }, - "m_torsoElementList": { - "type": "class CharacterElement*", - "id": 7, - "offset": 248, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2307446133 - }, - "m_feetElementList": { - "type": "class CharacterElement*", - "id": 8, - "offset": 272, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 671555138 - }, - "m_hairTextureList": { - "type": "class CharacterElement*", - "id": 9, - "offset": 296, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2218875305 - }, - "m_torsoTextureList": { - "type": "class CharacterElement*", - "id": 10, - "offset": 320, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 815771804 - }, - "m_torsoDecalList": { - "type": "class CharacterElement*", - "id": 11, - "offset": 344, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 808442148 - }, - "m_skinTextureList": { - "type": "class CharacterElement*", - "id": 12, - "offset": 368, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2500320186 - }, - "m_skinDecalList": { - "type": "class CharacterElement*", - "id": 13, - "offset": 392, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2545329346 - }, - "m_hatTextureList": { - "type": "class CharacterElement*", - "id": 14, - "offset": 416, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 924940098 - }, - "m_hatDecalList": { - "type": "class CharacterElement*", - "id": 15, - "offset": 440, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1780727370 - }, - "m_feetTextureList": { - "type": "class CharacterElement*", - "id": 16, - "offset": 464, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1327364457 - }, - "m_feetDecalList": { - "type": "class CharacterElement*", - "id": 17, - "offset": 488, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1828424369 - }, - "m_attachSlotList": { - "type": "class CharacterElement*", - "id": 18, - "offset": 512, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1124990027 - }, - "m_attachableList": { - "type": "class NamedCharacterElement", - "id": 19, - "offset": 536, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2132808559 - }, - "m_skinDecalList2": { - "type": "class CharacterElement*", - "id": 20, - "offset": 560, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1599566932 - }, - "m_faceElementList": { - "type": "class CharacterElement*", - "id": 21, - "offset": 584, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1040559117 - }, - "m_eyeElementList": { - "type": "class CharacterElement*", - "id": 22, - "offset": 608, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1894800033 - }, - "m_mouthElementList": { - "type": "class CharacterElement*", - "id": 23, - "offset": 632, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1586296075 - }, - "m_noseElementList": { - "type": "class CharacterElement*", - "id": 24, - "offset": 656, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2343885043 - }, - "m_accessoryElementList": { - "type": "class CharacterElement*", - "id": 25, - "offset": 680, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 771146122 - }, - "m_eyeColorTextureList": { - "type": "class CharacterElement*", - "id": 26, - "offset": 704, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1921350375 - }, - "m_faceDecalTextureList": { - "type": "class CharacterElement*", - "id": 27, - "offset": 728, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1002745901 - }, - "m_mouthDecalTextureList": { - "type": "class CharacterElement*", - "id": 28, - "offset": 752, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2358724587 - } - } - }, - "1402381500": { - "name": "class SharedPointer", - "bases": [ - "LootInfo", - "LootInfoBase", - "PropertyClass" - ], - "hash": 1402381500, - "properties": { - "m_lootType": { - "type": "enum LootInfo::LOOT_TYPE", - "id": 0, - "offset": 72, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1591891442, - "enum_options": { - "LOOT_TYPE_NONE": 0, - "LOOT_TYPE_GOLD": 1, - "LOOT_TYPE_MANA": 2, - "LOOT_TYPE_ITEM": 3, - "LOOT_TYPE_TREASURE_CARD": 4, - "LOOT_TYPE_MAGIC_XP": 5, - "LOOT_TYPE_ADD_SPELL": 6, - "LOOT_TYPE_MAX_HEALTH": 7, - "LOOT_TYPE_MAX_GOLD": 8, - "LOOT_TYPE_MAX_MANA": 9, - "LOOT_TYPE_MAX_POTION": 10, - "LOOT_TYPE_TRAINING_POINTS": 11, - "LOOT_TYPE_RECIPE": 12, - "LOOT_TYPE_CRAFTING_SLOT": 13, - "LOOT_TYPE_REAGENT": 14, - "LOOT_TYPE_PETSNACK": 15, - "LOOT_TYPE_GARDENING_XP": 16, - "LOOT_TYPE_PET_XP": 17, - "LOOT_TYPE_TREASURE_TABLE": 18, - "LOOT_TYPE_ARENA_POINTS": 19, - "LOOT_TYPE_ARENA_BONUS_POINTS": 20, - "LOOT_TYPE_GROUP": 21, - "LOOT_TYPE_FISHING_XP": 22, - "LOOT_TYPE_EVENT_CURRENCY_1": 24, - "LOOT_TYPE_EVENT_CURRENCY_2": 25, - "LOOT_TYPE_PVP_CURRENCY": 26, - "LOOT_TYPE_PVP_CURRENCY_BONUS": 27, - "LOOT_TYPE_PVP_TOURNEY_CURRENCY": 28, - "LOOT_TYPE_PVP_TOURNEY_CURRENCY_BONUS": 29, - "LOOT_TYPE_FURNITURE_ESSENCE": 30 - } - }, - "m_maxGoldToAdd": { - "type": "int", - "id": 1, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 667552370 - } - } - }, - "1809095340": { - "name": "class SharedPointer", - "bases": [ - "WizClientObject", - "ClientObject", - "CoreObject", - "PropertyClass" - ], - "hash": 1809095340, - "properties": { - "m_inactiveBehaviors": { - "type": "class SharedPointer", - "id": 0, - "offset": 224, - "flags": 31, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1850812559 - }, - "m_globalID.m_full": { - "type": "unsigned __int64", - "id": 1, - "offset": 72, - "flags": 16777247, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2312465444 - }, - "m_permID": { - "type": "unsigned __int64", - "id": 2, - "offset": 80, - "flags": 16777247, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1298909658 - }, - "m_location": { - "type": "class Vector3D", - "id": 3, - "offset": 168, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2239683611 - }, - "m_orientation": { - "type": "class Vector3D", - "id": 4, - "offset": 180, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2344058766 - }, - "m_fScale": { - "type": "float", - "id": 5, - "offset": 196, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 503137701 - }, - "m_templateID.m_full": { - "type": "unsigned __int64", - "id": 6, - "offset": 96, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 633907631 - }, - "m_debugName": { - "type": "std::string", - "id": 7, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3553984419 - }, - "m_displayKey": { - "type": "std::string", - "id": 8, - "offset": 136, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3023276954 - }, - "m_zoneTagID": { - "type": "unsigned int", - "id": 9, - "offset": 344, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 965291410 - }, - "m_speedMultiplier": { - "type": "short", - "id": 10, - "offset": 192, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 123130076 - }, - "m_nMobileID": { - "type": "unsigned short", - "id": 11, - "offset": 194, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1054318939 - }, - "m_characterId": { - "type": "gid", - "id": 12, - "offset": 440, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 210498418 - }, - "m_gameStats": { - "type": "class WizGameStats*", - "id": 13, - "offset": 544, - "flags": 27, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3194480406 - }, - "m_leashed": { - "type": "bool", - "id": 14, - "offset": 576, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 603235945 - } - } - }, - "244078257": { - "name": "enum CustomEmoteType", - "bases": [], - "hash": 244078257, - "properties": {} - }, - "1028402949": { - "name": "class ObjStateOverrideInfo", - "bases": [ - "PropertyClass" - ], - "hash": 1028402949, - "properties": { - "m_stateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2039264668 - } - } - }, - "242821038": { - "name": "class SharedPointer", - "bases": [ - "RemoveCameraMappingCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 242821038, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_camToReplace": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2286913643 - } - } - }, - "1402444235": { - "name": "class CastleToursFavoritesBehaviorBase", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1402444235, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_castleToursFavoritesData": { - "type": "std::string", - "id": 1, - "offset": 128, - "flags": 575, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1708015073 - } - } - }, - "1809832555": { - "name": "class SharedPointer", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 1809832555, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - }, - "m_league": { - "type": "std::string", - "id": 1, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2166730062 - }, - "m_rank": { - "type": "int", - "id": 2, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 219803942 - }, - "m_refreshRateSec": { - "type": "int", - "id": 3, - "offset": 156, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 418402320 - }, - "m_groundOffset": { - "type": "float", - "id": 4, - "offset": 160, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 684524077 - }, - "m_yaw": { - "type": "float", - "id": 5, - "offset": 164, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 357256328 - }, - "m_showNametag": { - "type": "bool", - "id": 6, - "offset": 168, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 584664753 - }, - "m_showInGrace": { - "type": "bool", - "id": 7, - "offset": 169, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1033917517 - }, - "m_showActive": { - "type": "bool", - "id": 8, - "offset": 170, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 685431312 - }, - "m_scale": { - "type": "float", - "id": 9, - "offset": 172, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 899693439 - }, - "m_alpha": { - "type": "float", - "id": 10, - "offset": 176, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 878686493 - }, - "m_animDelaySec": { - "type": "float", - "id": 11, - "offset": 180, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2131058854 - }, - "m_animChance": { - "type": "float", - "id": 12, - "offset": 184, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 434823806 - }, - "m_animList": { - "type": "std::string", - "id": 13, - "offset": 192, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2531745852 - } - } - }, - "243042507": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 243042507, - "properties": { - "m_locName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2490843130 - }, - "m_location": { - "type": "class Vector3D", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2239683611 - }, - "m_direction": { - "type": "float", - "id": 2, - "offset": 116, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1528165112 - } - } - }, - "651082221": { - "name": "class BGPlayerInfo*", - "bases": [ - "PropertyClass" - ], - "hash": 651082221, - "properties": { - "m_playerID": { - "type": "gid", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1774633426 - }, - "m_team": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1717579362 - } - } - }, - "1028679754": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1028679754, - "properties": { - "m_localeMappingList": { - "type": "class LocaleMapping", - "id": 0, - "offset": 104, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 762464984 - } - } - }, - "1809640557": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1809640557, - "properties": { - "m_minLevel": { - "type": "int", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1496818518 - }, - "m_maxLevel": { - "type": "int", - "id": 1, - "offset": 76, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 146363288 - }, - "m_minEloRating": { - "type": "int", - "id": 2, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 979905379 - }, - "m_maxEloRating": { - "type": "int", - "id": 3, - "offset": 84, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 938224805 - }, - "m_minEloRank": { - "type": "int", - "id": 4, - "offset": 88, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1961133770 - }, - "m_maxEloRank": { - "type": "int", - "id": 5, - "offset": 92, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 194203532 - }, - "m_minMatchesPlayed": { - "type": "int", - "id": 6, - "offset": 96, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 650179746 - }, - "m_maxMatchesPlayed": { - "type": "int", - "id": 7, - "offset": 100, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1560790756 - }, - "m_requiredBadge": { - "type": "std::string", - "id": 8, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2633719087 - }, - "m_membersOnly": { - "type": "bool", - "id": 9, - "offset": 136, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1051823616 - }, - "m_friendsOnly": { - "type": "bool", - "id": 10, - "offset": 137, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1420401792 - } - } - }, - "648253786": { - "name": "class SharedPointer", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 648253786, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - } - } - }, - "1406476367": { - "name": "class SpellEffectPenalty*", - "bases": [ - "PropertyClass" - ], - "hash": 1406476367, - "properties": { - "m_effectType": { - "type": "enum SpellEffect::kSpellEffects", - "id": 0, - "offset": 72, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2578255295, - "enum_options": { - "SpellEffect::kInvalidSpellEffect": 0, - "SpellEffect::kDamage": 1, - "SpellEffect::kDamageNoCrit": 2, - "SpellEffect::kHeal": 3, - "SpellEffect::kStealHealth": 5, - "SpellEffect::kReduceOverTime": 6, - "SpellEffect::kDetonateOverTime": 7, - "SpellEffect::kPushCharm": 8, - "SpellEffect::kStealCharm": 9, - "SpellEffect::kPushWard": 10, - "SpellEffect::kStealWard": 11, - "SpellEffect::kPushOverTime": 12, - "SpellEffect::kStealOverTime": 13, - "SpellEffect::kRemoveCharm": 14, - "SpellEffect::kRemoveWard": 15, - "SpellEffect::kRemoveStunBlock": 117, - "SpellEffect::kRemoveOverTime": 16, - "SpellEffect::kRemoveAura": 17, - "SpellEffect::kSwapCharm": 19, - "SpellEffect::kSwapWard": 20, - "SpellEffect::kSwapOverTime": 21, - "SpellEffect::kModifyIncomingDamage": 22, - "SpellEffect::kModifyIncomingDamageFlat": 119, - "SpellEffect::kModifyIncomingDamageOverTime": 137, - "SpellEffect::kMaximumIncomingDamage": 23, - "SpellEffect::kModifyIncomingHeal": 24, - "SpellEffect::kModifyIncomingHealFlat": 118, - "SpellEffect::kModifyIncomingHealOverTime": 138, - "SpellEffect::kModifyIncomingDamageType": 25, - "SpellEffect::kModifyIncomingArmorPiercing": 26, - "SpellEffect::kModifyOutgoingDamage": 27, - "SpellEffect::kModifyOutgoingDamageFlat": 121, - "SpellEffect::kModifyOutgoingHeal": 28, - "SpellEffect::kModifyOutgoingHealFlat": 120, - "SpellEffect::kModifyOutgoingDamageType": 29, - "SpellEffect::kModifyOutgoingArmorPiercing": 30, - "SpellEffect::kBounceNext": 33, - "SpellEffect::kBouncePrevious": 34, - "SpellEffect::kBounceBack": 35, - "SpellEffect::kBounceAll": 36, - "SpellEffect::kAbsorbDamage": 37, - "SpellEffect::kAbsorbHeal": 38, - "SpellEffect::kModifyAccuracy": 39, - "SpellEffect::kDispel": 40, - "SpellEffect::kConfusion": 41, - "SpellEffect::kCloakedCharm": 42, - "SpellEffect::kCloakedWard": 43, - "SpellEffect::kStunResist": 44, - "SpellEffect::kPipConversion": 45, - "SpellEffect::kCritBoost": 46, - "SpellEffect::kCritBlock": 47, - "SpellEffect::kPolymorph": 48, - "SpellEffect::kModifyCardCloak": 50, - "SpellEffect::kModifyCardDamage": 51, - "SpellEffect::kModifyCardAccuracy": 53, - "SpellEffect::kModifyCardMutation": 54, - "SpellEffect::kModifyCardRank": 55, - "SpellEffect::kModifyCardArmorPiercing": 56, - "SpellEffect::kSummonCreature": 65, - "SpellEffect::kTeleportPlayer": 66, - "SpellEffect::kStun": 67, - "SpellEffect::kDampen": 68, - "SpellEffect::kReshuffle": 69, - "SpellEffect::kMindControl": 70, - "SpellEffect::kModifyPips": 71, - "SpellEffect::kModifyPowerPips": 72, - "SpellEffect::kModifyShadowPips": 73, - "SpellEffect::kModifyHate": 74, - "SpellEffect::kDamageOverTime": 75, - "SpellEffect::kHealOverTime": 76, - "SpellEffect::kModifyPowerPipChance": 77, - "SpellEffect::kModifyRank": 78, - "SpellEffect::kStunBlock": 79, - "SpellEffect::kRevealCloak": 80, - "SpellEffect::kInstantKill": 81, - "SpellEffect::kAfterlife": 82, - "SpellEffect::kDeferredDamage": 83, - "SpellEffect::kDamagePerTotalPipPower": 84, - "SpellEffect::kCloakedWardNoRemove": 86, - "SpellEffect::kAddCombatTriggerList": 87, - "SpellEffect::kRemoveCombatTriggerList": 88, - "SpellEffect::kBacklashDamage": 89, - "SpellEffect::kMaxHealthDamage": 112, - "SpellEffect::kModifyBacklash": 90, - "SpellEffect::kIntercept": 91, - "SpellEffect::kShadowSelf": 92, - "SpellEffect::kShadowCreature": 93, - "SpellEffect::kModifyShadowCreatureLevel": 94, - "SpellEffect::kSelectShadowCreatureAttackTarget": 95, - "SpellEffect::kShadowDecrementTurn": 96, - "SpellEffect::kCritBoostSchoolSpecific": 97, - "SpellEffect::kSpawnCreature": 98, - "SpellEffect::kUnPolymorph": 99, - "SpellEffect::kPowerPipConversion": 100, - "SpellEffect::kProtectBeneficial": 103, - "SpellEffect::kProtectHarmful": 104, - "SpellEffect::kProtectCardBeneficial": 101, - "SpellEffect::kProtectCardHarmful": 102, - "SpellEffect::kDivideDamage": 105, - "SpellEffect::kConfusionBlock": 109, - "SpellEffect::kModifyPipRoundRate": 110, - "SpellEffect::kMaxHealthHeal": 129, - "SpellEffect::kHealByWard": 130, - "SpellEffect::kTaunt": 131, - "SpellEffect::kPacify": 132, - "SpellEffect::kModifySchoolPips": 150 - } - }, - "m_disposition": { - "type": "enum SpellEffect::kHangingDisposition", - "id": 1, - "offset": 76, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1904841031, - "enum_options": { - "SpellEffect::kBoth": 0, - "SpellEffect::kBeneficial": 1, - "SpellEffect::kHarmful": 2 - } - }, - "m_penaltyTime": { - "type": "int", - "id": 2, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1993188358 - } - } - }, - "647936459": { - "name": "class ClientScaleActorCinematicAction", - "bases": [ - "ScaleActorCinematicAction", - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 647936459, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - }, - "m_scaleDuration": { - "type": "float", - "id": 2, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1764097637 - }, - "m_scaleTarget": { - "type": "float", - "id": 3, - "offset": 124, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1502791366 - } - } - }, - "1404707111": { - "name": "class PlaySoundCinematicAction", - "bases": [ - "CinematicAction", - "PropertyClass" - ], - "hash": 1404707111, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_sound": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 131079, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2307644996 - }, - "m_useClientLocation": { - "type": "bool", - "id": 2, - "offset": 100, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 98585784 - }, - "m_soundType": { - "type": "enum PlaySoundCinematicAction::SoundType", - "id": 3, - "offset": 96, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 868075053, - "enum_options": { - "kSigil": 0, - "kGotHit": 1, - "kDeath": 2, - "kChatter": 4, - "__DEFAULT": "kSigil" - } - }, - "m_streamSound": { - "type": "bool", - "id": 4, - "offset": 101, - "flags": 263, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1693179368 - }, - "m_playMusic": { - "type": "bool", - "id": 5, - "offset": 102, - "flags": 263, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 552729674 - }, - "m_fadeDuration": { - "type": "float", - "id": 6, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1402536557 - } - } - }, - "244743924": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 244743924, - "properties": {} - }, - "647724802": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 647724802, - "properties": { - "m_resultList": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1783304302 - } - } - }, - "1028717884": { - "name": "class PeriodicSubscription*", - "bases": [ - "PropertyClass" - ], - "hash": 1028717884, - "properties": { - "m_type": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1717601629 - }, - "m_resetTime": { - "type": "unsigned __int64", - "id": 1, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1841687339 - }, - "m_productIconType": { - "type": "std::string", - "id": 2, - "offset": 112, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3026584199 - }, - "m_status": { - "type": "std::string", - "id": 3, - "offset": 144, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2458480799 - }, - "m_itemsStatus": { - "type": "std::string", - "id": 4, - "offset": 176, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2942863777 - }, - "m_membership": { - "type": "bool", - "id": 5, - "offset": 208, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1596198559 - } - } - }, - "1403243436": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1403243436, - "properties": { - "m_percentChance": { - "type": "unsigned char", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1023261955 - }, - "m_objectInfo": { - "type": "class SpawnObjectInfo*", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1481415047 - } - } - }, - "1809960275": { - "name": "class CastleMagicPlayersInZone", - "bases": [ - "PropertyClass" - ], - "hash": 1809960275, - "properties": { - "m_playersInZoneList": { - "type": "gid", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1367168135 - } - } - }, - "244342776": { - "name": "class std::list >", - "bases": [], - "hash": 244342776, - "properties": {} - }, - "647557634": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 647557634, - "properties": { - "m_petNumber": { - "type": "int", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1254828 - }, - "m_finishTime": { - "type": "float", - "id": 1, - "offset": 76, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1090658759 - }, - "m_tickets": { - "type": "int", - "id": 2, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 353703441 - }, - "m_gold": { - "type": "int", - "id": 3, - "offset": 84, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 219423808 - } - } - }, - "1809844387": { - "name": "class LevelScaledEffectTemplate*", - "bases": [ - "StatisticEffectTemplate", - "GameEffectTemplate", - "PropertyClass" - ], - "hash": 1809844387, - "properties": { - "m_effectName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2029161513 - }, - "m_effectCategory": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1852673222 - }, - "m_sortOrder": { - "type": "int", - "id": 2, - "offset": 148, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1411218206 - }, - "m_duration": { - "type": "double", - "id": 3, - "offset": 192, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2727932435 - }, - "m_stackingCategories": { - "type": "std::string", - "id": 4, - "offset": 160, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1774497525 - }, - "m_isPersistent": { - "type": "bool", - "id": 5, - "offset": 153, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 923861920 - }, - "m_bIsOnPet": { - "type": "bool", - "id": 6, - "offset": 154, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 522593303 - }, - "m_isPublic": { - "type": "bool", - "id": 7, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1728439822 - }, - "m_visualEffectAddName": { - "type": "std::string", - "id": 8, - "offset": 200, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3382086694 - }, - "m_visualEffectRemoveName": { - "type": "std::string", - "id": 9, - "offset": 232, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1541697323 - }, - "m_onAddFunctorName": { - "type": "std::string", - "id": 10, - "offset": 280, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1561843107 - }, - "m_onRemoveFunctorName": { - "type": "std::string", - "id": 11, - "offset": 312, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2559017864 - }, - "m_stackingRule": { - "type": "enum STACKING_RULE", - "id": 12, - "offset": 144, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 431568889, - "enum_options": { - "STACKING_ALLOWED": 0, - "STACKING_NOSTACK": 1, - "STACKING_REPLACE": 2 - } - }, - "m_scaleToLevel": { - "type": "int", - "id": 13, - "offset": 360, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2018266685 - }, - "m_scaleUp": { - "type": "bool", - "id": 14, - "offset": 364, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 975051008 - } - } - }, - "1030977293": { - "name": "class SharedPointer", - "bases": [ - "CinematicAction", - "PropertyClass" - ], - "hash": 1030977293, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - } - } - }, - "1404794289": { - "name": "class BoosterPackTemplate", - "bases": [ - "WizItemTemplate", - "ItemTemplate", - "GameObjectTemplate", - "CoreTemplate", - "PropertyClass" - ], - "hash": 1404794289, - "properties": { - "m_behaviors": { - "type": "class BehaviorTemplate*", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1197808594 - }, - "m_objectName": { - "type": "std::string", - "id": 1, - "offset": 96, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2154940147 - }, - "m_templateID": { - "type": "unsigned int", - "id": 2, - "offset": 128, - "flags": 16777223, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1286746870 - }, - "m_visualID": { - "type": "unsigned int", - "id": 3, - "offset": 132, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1118778894 - }, - "m_adjectiveList": { - "type": "std::string", - "id": 4, - "offset": 248, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 3195213318 - }, - "m_exemptFromAOI": { - "type": "bool", - "id": 5, - "offset": 240, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1457879059 - }, - "m_displayName": { - "type": "std::string", - "id": 6, - "offset": 168, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2446900370 - }, - "m_description": { - "type": "std::string", - "id": 7, - "offset": 136, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1649374815 - }, - "m_nObjectType": { - "type": "enum ObjectType", - "id": 8, - "offset": 200, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2118905880, - "enum_options": { - "OT_UNDEFINED": 0, - "OT_PLAYER": 1, - "OT_NPC": 2, - "OT_PROP": 3, - "OT_OBJECT": 4, - "OT_HOUSE": 5, - "OT_KEY": 6, - "OT_OLD_KEY": 7, - "OT_DEED": 8, - "OT_MAIL": 9, - "OT_RECIPE": 17, - "OT_EQUIP_HEAD": 10, - "OT_EQUIP_CHEST": 11, - "OT_EQUIP_LEGS": 12, - "OT_EQUIP_HANDS": 13, - "OT_EQUIP_FINGER": 14, - "OT_EQUIP_FEET": 15, - "OT_EQUIP_EAR": 16, - "OT_BUILDING_BLOCK": 18, - "OT_BUILDING_BLOCK_SOLID": 19, - "OT_GOLF": 20, - "OT_DOOR": 21, - "OT_PET": 22, - "OT_FABRIC": 23, - "OT_WINDOW": 24, - "OT_ROOF": 25, - "OT_HORSE": 26, - "OT_STRUCTURE": 27, - "OT_HOUSING_TEXTURE": 28, - "OT_PLANT": 29 - } - }, - "m_sIcon": { - "type": "std::string", - "id": 9, - "offset": 208, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306259831 - }, - "m_equipRequirements": { - "type": "class RequirementList*", - "id": 10, - "offset": 280, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2762617226 - }, - "m_purchaseRequirements": { - "type": "class RequirementList*", - "id": 11, - "offset": 288, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3174641793 - }, - "m_equipEffects": { - "type": "class GameEffectInfo*", - "id": 12, - "offset": 296, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 836628351 - }, - "m_baseCost": { - "type": "float", - "id": 13, - "offset": 312, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1565352651 - }, - "m_creditsCost": { - "type": "float", - "id": 14, - "offset": 320, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 805514974 - }, - "m_avatarInfo": { - "type": "class AvatarItemInfoBase*", - "id": 15, - "offset": 328, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2627321299 - }, - "m_avatarFlags": { - "type": "std::string", - "id": 16, - "offset": 336, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2347762759 - }, - "m_itemLimit": { - "type": "int", - "id": 17, - "offset": 316, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1799746856 - }, - "m_holidayFlag": { - "type": "std::string", - "id": 18, - "offset": 352, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2994795359 - }, - "m_itemSetBonusTemplateID": { - "type": "unsigned int", - "id": 19, - "offset": 384, - "flags": 33554439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1316835672 - }, - "m_numPrimaryColors": { - "type": "int", - "id": 20, - "offset": 428, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 981103872 - }, - "m_numSecondaryColors": { - "type": "int", - "id": 21, - "offset": 432, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1310416868 - }, - "m_numPatterns": { - "type": "int", - "id": 22, - "offset": 436, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 953162171 - }, - "m_school": { - "type": "std::string", - "id": 23, - "offset": 392, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2438566051 - }, - "m_arenaPointCost": { - "type": "int", - "id": 24, - "offset": 440, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1819621796 - }, - "m_pvpCurrencyCost": { - "type": "int", - "id": 25, - "offset": 444, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 645595444 - }, - "m_pvpTourneyCurrencyCost": { - "type": "int", - "id": 26, - "offset": 448, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 517874954 - }, - "m_rank": { - "type": "int", - "id": 27, - "offset": 424, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 219803942 - }, - "m_boyIconIndex": { - "type": "int", - "id": 28, - "offset": 452, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 802140453 - }, - "m_girlIconIndex": { - "type": "int", - "id": 29, - "offset": 456, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 832706793 - }, - "m_leashOffsetOverride": { - "type": "class SharedPointer", - "id": 30, - "offset": 464, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1692586788 - }, - "m_rarity": { - "type": "enum RarityType", - "id": 31, - "offset": 460, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2253792108, - "enum_options": { - "RT_COMMON": 0, - "RT_UNCOMMON": 1, - "RT_RARE": 2, - "RT_ULTRARARE": 3, - "RT_EPIC": 4 - } - }, - "m_lootTables": { - "type": "std::string", - "id": 32, - "offset": 488, - "flags": 268435463, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1514961588, - "enum_options": { - "__BASECLASS": "LootTable" - } - }, - "m_featuredRewards": { - "type": "gid", - "id": 33, - "offset": 504, - "flags": 33554439, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1360288832 - }, - "m_nif": { - "type": "std::string", - "id": 34, - "offset": 520, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1764743064 - }, - "m_boosterPackType": { - "type": "enum BoosterPackTemplate::BoosterPackType", - "id": 35, - "offset": 480, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2575057189, - "enum_options": { - "TreasureCards": 0, - "Reagents": 1, - "Snacks": 2, - "GardenTreasureCards": 3, - "Items": 4, - "MixOfVarious": 5, - "RockhammerJewelPack": 6, - "PurreauPack": 7, - "SchoolJewelPack": 8 - } - } - } - }, - "245118520": { - "name": "class ClientDerbyImmunityEffect", - "bases": [ - "DerbyImmunityEffect", - "DerbyEffect", - "PropertyClass" - ], - "hash": 245118520, - "properties": { - "m_buffType": { - "type": "enum DerbyTalentBuffType", - "id": 0, - "offset": 92, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1149251982, - "enum_options": { - "Buff": 0, - "Debuff": 1, - "Neither": 2 - } - }, - "m_kTarget": { - "type": "enum DerbyTargetType", - "id": 1, - "offset": 96, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1807803351, - "enum_options": { - "kTargetInFront": 0, - "kTargetBehind": 1, - "kTargetFirst": 2, - "kTargetSelf": 3, - "kTargetAll": 4, - "kTargetLast": 5 - } - }, - "m_nDuration": { - "type": "int", - "id": 2, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1110167982 - }, - "m_effectID": { - "type": "unsigned int", - "id": 3, - "offset": 88, - "flags": 24, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2347630439 - }, - "m_imageFilename": { - "type": "std::string", - "id": 4, - "offset": 112, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2813328063 - }, - "m_iconIndex": { - "type": "unsigned int", - "id": 5, - "offset": 144, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1265133262 - }, - "m_soundOnActivate": { - "type": "std::string", - "id": 6, - "offset": 152, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1956929714 - }, - "m_soundOnTarget": { - "type": "std::string", - "id": 7, - "offset": 184, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3444214056 - }, - "m_targetParticleEffect": { - "type": "std::string", - "id": 8, - "offset": 216, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3048234723 - }, - "m_overheadMessage": { - "type": "std::string", - "id": 9, - "offset": 248, - "flags": 8388639, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1701018190 - }, - "m_requirements": { - "type": "class RequirementList", - "id": 10, - "offset": 280, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2840988582 - }, - "m_bToDebuffs": { - "type": "bool", - "id": 11, - "offset": 376, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1216111639 - } - } - }, - "647932500": { - "name": "class ClientCloneActorCinematicAction", - "bases": [ - "CloneActorCinematicAction", - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 647932500, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - }, - "m_position": { - "type": "class Vector3D", - "id": 2, - "offset": 124, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3697900983 - }, - "m_yawPitchRoll": { - "type": "class Vector3D", - "id": 3, - "offset": 136, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3349460132 - }, - "m_clonePlayer": { - "type": "bool", - "id": 4, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1369917873 - } - } - }, - "1030093719": { - "name": "class SharedPointer", - "bases": [ - "DdWinAnimMoveMob", - "WinAnimMoveToLocationSpeed", - "WinAnimMoveToLocation", - "WindowAnimation", - "PropertyClass" - ], - "hash": 1030093719, - "properties": { - "m_bUseDeepCopy": { - "type": "bool", - "id": 0, - "offset": 72, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 433380635 - }, - "m_targetLocation": { - "type": "class Vector3D", - "id": 1, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2653859938 - }, - "m_fSpeed": { - "type": "float", - "id": 2, - "offset": 96, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 503609006 - }, - "m_facing": { - "type": "enum DoodleDoug::DdDirection", - "id": 3, - "offset": 112, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 591537519 - }, - "m_cameFrom": { - "type": "enum DoodleDoug::DdDirection", - "id": 4, - "offset": 116, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1071209393 - }, - "m_nextWaypoint": { - "type": "class Point", - "id": 5, - "offset": 120, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2346187452 - }, - "m_myBoard": { - "type": "class DoodleDoug*", - "id": 6, - "offset": 136, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2212758093 - } - } - }, - "1404790188": { - "name": "class ObstacleCourseFinishLineBehaviorTemplate*", - "bases": [ - "ObstacleCourseObstacleBehaviorTemplate", - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 1404790188, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - }, - "m_width": { - "type": "double", - "id": 1, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2712265261 - }, - "m_height": { - "type": "double", - "id": 2, - "offset": 128, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2410586086 - } - } - }, - "1810157138": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1810157138, - "properties": { - "m_personaName": { - "type": "std::string", - "id": 0, - "offset": 144, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2514452244 - }, - "m_firstName": { - "type": "std::string", - "id": 1, - "offset": 208, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3116002948 - }, - "m_lastName": { - "type": "std::string", - "id": 2, - "offset": 240, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1826203600 - }, - "m_title": { - "type": "std::string", - "id": 3, - "offset": 272, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2308614141 - }, - "m_nickname": { - "type": "std::string", - "id": 4, - "offset": 304, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2269863201 - }, - "m_questList": { - "type": "std::string", - "id": 5, - "offset": 360, - "flags": 268435463, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1702049897, - "enum_options": { - "__BASECLASS": "QuestTemplate" - } - }, - "m_questArcList": { - "type": "std::string", - "id": 6, - "offset": 376, - "flags": 268435463, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 3113974815, - "enum_options": { - "__BASECLASS": "QuestArc" - } - }, - "m_icon": { - "type": "std::string", - "id": 7, - "offset": 176, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1717182340 - }, - "m_showTitle": { - "type": "bool", - "id": 8, - "offset": 336, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2128418998 - }, - "m_titleLast": { - "type": "bool", - "id": 9, - "offset": 337, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1207515433 - }, - "m_maintainQuestOrder": { - "type": "bool", - "id": 10, - "offset": 338, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 317861362 - }, - "m_offerArcsFirst": { - "type": "bool", - "id": 11, - "offset": 339, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1663706614 - } - } - }, - "1029974602": { - "name": "class SharedPointer", - "bases": [ - "ShadowCreatureIdleCinematicAction", - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 1029974602, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - } - } - }, - "1404790572": { - "name": "class ObstacleCourseFinishLineBehaviorTemplate", - "bases": [ - "ObstacleCourseObstacleBehaviorTemplate", - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 1404790572, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - }, - "m_width": { - "type": "double", - "id": 1, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2712265261 - }, - "m_height": { - "type": "double", - "id": 2, - "offset": 128, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2410586086 - } - } - }, - "247823439": { - "name": "class SegmentationRequrinment*", - "bases": [ - "PropertyClass" - ], - "hash": 247823439, - "properties": { - "m_sReqName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3206441047 - }, - "m_reqOperatorType": { - "type": "enum SegmentationRequrinment::OPERATOR_TYPE", - "id": 1, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1334217449 - }, - "m_sReqValue": { - "type": "std::string", - "id": 2, - "offset": 112, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2058248243 - } - } - }, - "648103902": { - "name": "class BattleBookBehavior*", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 648103902, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_spellList": { - "type": "class SharedPointer", - "id": 1, - "offset": 120, - "flags": 27, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2181913740 - }, - "m_rating": { - "type": "class SharedPointer", - "id": 2, - "offset": 136, - "flags": 27, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2464459535 - } - } - }, - "1812503040": { - "name": "class SharedPointer", - "bases": [ - "HousingSignBehaviorBase", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1812503040, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_packedName": { - "type": "std::string", - "id": 1, - "offset": 112, - "flags": 65543, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1805208228 - }, - "m_signText": { - "type": "std::string", - "id": 2, - "offset": 144, - "flags": 65543, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2920366641 - } - } - }, - "247544837": { - "name": "class CritAndBlockValues", - "bases": [ - "PropertyClass" - ], - "hash": 247544837, - "properties": { - "m_capValue": { - "type": "float", - "id": 0, - "offset": 88, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1100002568 - }, - "m_criticalHitScalarBase": { - "type": "float", - "id": 1, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 448021976 - }, - "m_criticalHitScalingFactor": { - "type": "float", - "id": 2, - "offset": 76, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 322634343 - }, - "m_blockScalarBase": { - "type": "float", - "id": 3, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1713825491 - }, - "m_blockScalingFactor": { - "type": "float", - "id": 4, - "offset": 84, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1504920962 - } - } - }, - "1030229640": { - "name": "class ItemSetBonusData*", - "bases": [ - "PropertyClass" - ], - "hash": 1030229640, - "properties": { - "m_numItemsToEquip": { - "type": "int", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 243822227 - }, - "m_description": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1649374815 - }, - "m_equipEffectsGrantedRequirements": { - "type": "class RequirementList*", - "id": 2, - "offset": 112, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2841976527 - }, - "m_equipEffectsGranted": { - "type": "class GameEffectInfo*", - "id": 3, - "offset": 120, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1136533636 - } - } - }, - "1810773573": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1810773573, - "properties": { - "m_setName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2569991048 - }, - "m_pairs": { - "type": "class AnimationPair*", - "id": 1, - "offset": 112, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1888571563 - } - } - }, - "247337949": { - "name": "class SharedPointer", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 247337949, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - }, - "m_radius": { - "type": "float", - "id": 1, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 989410271 - }, - "m_duration": { - "type": "float", - "id": 2, - "offset": 124, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 920323453 - }, - "m_benefitType": { - "type": "enum BenefitType", - "id": 3, - "offset": 128, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3823810885, - "enum_options": { - "BT_Heal": 0, - "BT_Mana": 1, - "BT_FishingLuck": 2, - "BT_HealMana": 3 - } - }, - "m_value": { - "type": "float", - "id": 4, - "offset": 132, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 903191604 - } - } - }, - "1405682796": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1405682796, - "properties": { - "sText": { - "type": "std::wstring", - "id": 0, - "offset": 72, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1567439332 - }, - "dwFlags": { - "type": "unsigned int", - "id": 1, - "offset": 104, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1021307529 - } - } - }, - "1810637798": { - "name": "class UnSwapShadowMaterialActorCinematicAction", - "bases": [ - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 1810637798, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - } - } - }, - "650228404": { - "name": "class SharedPointer", - "bases": [ - "WinAnimMoveToLocationTime", - "WinAnimMoveToLocation", - "WindowAnimation", - "PropertyClass" - ], - "hash": 650228404, - "properties": { - "m_bUseDeepCopy": { - "type": "bool", - "id": 0, - "offset": 72, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 433380635 - }, - "m_targetLocation": { - "type": "class Vector3D", - "id": 1, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2653859938 - }, - "m_fTimeRemaining": { - "type": "float", - "id": 2, - "offset": 100, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1591443014 - }, - "m_fTimeTotal": { - "type": "float", - "id": 3, - "offset": 96, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 661225456 - }, - "m_fEaseInPercent": { - "type": "float", - "id": 4, - "offset": 120, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1482967843 - }, - "m_fEaseOutPercent": { - "type": "float", - "id": 5, - "offset": 124, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1272154212 - }, - "m_fTotalDistance": { - "type": "float", - "id": 6, - "offset": 128, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1894338732 - } - } - }, - "1030393480": { - "name": "class ItemSetBonusData", - "bases": [ - "PropertyClass" - ], - "hash": 1030393480, - "properties": { - "m_numItemsToEquip": { - "type": "int", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 243822227 - }, - "m_description": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1649374815 - }, - "m_equipEffectsGrantedRequirements": { - "type": "class RequirementList*", - "id": 2, - "offset": 112, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2841976527 - }, - "m_equipEffectsGranted": { - "type": "class GameEffectInfo*", - "id": 3, - "offset": 120, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1136533636 - } - } - }, - "650188677": { - "name": "class SharedPointer", - "bases": [ - "GraphicalSpell", - "Spell", - "PropertyClass" - ], - "hash": 650188677, - "properties": { - "m_templateID": { - "type": "unsigned int", - "id": 0, - "offset": 128, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1286746870 - }, - "m_enchantment": { - "type": "unsigned int", - "id": 1, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2217886818 - }, - "m_pipCost": { - "type": "class SharedPointer", - "id": 2, - "offset": 176, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3605704820 - }, - "m_regularAdjust": { - "type": "int", - "id": 3, - "offset": 192, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1420453335 - }, - "m_magicSchoolID": { - "type": "unsigned int", - "id": 4, - "offset": 136, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 893146499 - }, - "m_accuracy": { - "type": "unsigned char", - "id": 5, - "offset": 132, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2273914939 - }, - "m_treasureCard": { - "type": "bool", - "id": 6, - "offset": 197, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1764879128 - }, - "m_battleCard": { - "type": "bool", - "id": 7, - "offset": 198, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1332843753 - }, - "m_itemCard": { - "type": "bool", - "id": 8, - "offset": 199, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1683654300 - }, - "m_sideBoard": { - "type": "bool", - "id": 9, - "offset": 200, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1897838368 - }, - "m_spellID": { - "type": "unsigned int", - "id": 10, - "offset": 204, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1697483258 - }, - "m_leavesPlayWhenCastOverride": { - "type": "bool", - "id": 11, - "offset": 216, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 874407398 - }, - "m_cloaked": { - "type": "bool", - "id": 12, - "offset": 196, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 7349510 - }, - "m_enchantmentSpellIsItemCard": { - "type": "bool", - "id": 13, - "offset": 76, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 531590701 - }, - "m_premutationSpellID": { - "type": "unsigned int", - "id": 14, - "offset": 112, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1530256370 - }, - "m_enchantedThisCombat": { - "type": "bool", - "id": 15, - "offset": 77, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1895738923 - }, - "m_paramOverrides": { - "type": "class SharedPointer", - "id": 16, - "offset": 224, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2061635599 - }, - "m_subEffectMeta": { - "type": "class SharedPointer", - "id": 17, - "offset": 240, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1944101106 - }, - "m_delayEnchantment": { - "type": "bool", - "id": 18, - "offset": 257, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 191336919 - }, - "m_PvE": { - "type": "bool", - "id": 19, - "offset": 264, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 269492350 - }, - "m_delayEnchantmentOrder": { - "type": "enum SpellEffect::kDelayOrder", - "id": 20, - "offset": 72, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2526055263, - "enum_options": { - "SpellEffect::kAnyOrder": 0, - "SpellEffect::kFirst": 1, - "SpellEffect::kSecond": 2 - } - }, - "m_roundAddedTC": { - "type": "int", - "id": 21, - "offset": 260, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 112365451 - }, - "m_secondarySchoolID": { - "type": "unsigned int", - "id": 22, - "offset": 304, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2081206026 - } - } - }, - "247551112": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 247551112, - "properties": { - "m_worldID": { - "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 397177058 - }, - "m_flags": { - "type": "unsigned char", - "id": 1, - "offset": 76, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1431998045 - } - } - }, - "1407815894": { - "name": "class ClientDerbyModifyPetStat", - "bases": [ - "DerbyModifyPetStat", - "DerbyEffect", - "PropertyClass" - ], - "hash": 1407815894, - "properties": { - "m_buffType": { - "type": "enum DerbyTalentBuffType", - "id": 0, - "offset": 92, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1149251982, - "enum_options": { - "Buff": 0, - "Debuff": 1, - "Neither": 2 - } - }, - "m_kTarget": { - "type": "enum DerbyTargetType", - "id": 1, - "offset": 96, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1807803351, - "enum_options": { - "kTargetInFront": 0, - "kTargetBehind": 1, - "kTargetFirst": 2, - "kTargetSelf": 3, - "kTargetAll": 4, - "kTargetLast": 5 - } - }, - "m_nDuration": { - "type": "int", - "id": 2, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1110167982 - }, - "m_effectID": { - "type": "unsigned int", - "id": 3, - "offset": 88, - "flags": 24, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2347630439 - }, - "m_imageFilename": { - "type": "std::string", - "id": 4, - "offset": 112, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2813328063 - }, - "m_iconIndex": { - "type": "unsigned int", - "id": 5, - "offset": 144, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1265133262 - }, - "m_soundOnActivate": { - "type": "std::string", - "id": 6, - "offset": 152, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1956929714 - }, - "m_soundOnTarget": { - "type": "std::string", - "id": 7, - "offset": 184, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3444214056 - }, - "m_targetParticleEffect": { - "type": "std::string", - "id": 8, - "offset": 216, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3048234723 - }, - "m_overheadMessage": { - "type": "std::string", - "id": 9, - "offset": 248, - "flags": 8388639, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1701018190 - }, - "m_requirements": { - "type": "class RequirementList", - "id": 10, - "offset": 280, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2840988582 - }, - "m_mods": { - "type": "class PetStatModificationSet", - "id": 11, - "offset": 376, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 686212266 - } - } - }, - "1811737919": { - "name": "class WizMinigameOffering*", - "bases": [ - "PropertyClass" - ], - "hash": 1811737919, - "properties": {} - }, - "1034232908": { - "name": "enum PetDerbyClientLogic::GameState", - "bases": [], - "hash": 1034232908, - "properties": {} - }, - "1407154906": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1407154906, - "properties": { - "m_spawners": { - "type": "class SharedPointer", - "id": 0, - "offset": 144, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 3173126402 - } - } - }, - "1810994553": { - "name": "class PetGameMorphPartner", - "bases": [ - "PropertyClass" - ], - "hash": 1810994553, - "properties": { - "m_characterId": { - "type": "gid", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 210498418 - }, - "m_pets": { - "type": "class SharedPointer", - "id": 1, - "offset": 80, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 521887012 - } - } - }, - "247740370": { - "name": "class SharedPointer", - "bases": [ - "CinematicStageTemplate", - "PropertyClass" - ], - "hash": 247740370, - "properties": { - "m_name": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1717359772 - }, - "m_duration": { - "type": "float", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 920323453 - }, - "m_actions": { - "type": "class SharedPointer", - "id": 2, - "offset": 112, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1380578687 - }, - "m_stageRelationships": { - "type": "class SharedPointer", - "id": 3, - "offset": 128, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 499983354 - } - } - }, - "650810645": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 650810645, - "properties": { - "m_games": { - "type": "class SharedPointer", - "id": 0, - "offset": 80, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": true, - "pointer": true, - "hash": 2009270740 - } - } - }, - "1032147317": { - "name": "class CombatParticipant*", - "bases": [ - "PropertyClass" - ], - "hash": 1032147317, - "properties": { - "m_ownerID.m_full": { - "type": "unsigned __int64", - "id": 0, - "offset": 112, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2149616286 - }, - "m_templateID.m_full": { - "type": "unsigned __int64", - "id": 1, - "offset": 120, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 633907631 - }, - "m_isPlayer": { - "type": "bool", - "id": 2, - "offset": 128, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1717744636 - }, - "m_zoneID.m_full": { - "type": "unsigned __int64", - "id": 3, - "offset": 136, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2105998895 - }, - "m_teamID": { - "type": "int", - "id": 4, - "offset": 144, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 982118638 - }, - "m_primaryMagicSchoolID": { - "type": "int", - "id": 5, - "offset": 148, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1864910356 - }, - "m_pipCount": { - "type": "class SharedPointer", - "id": 6, - "offset": 152, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1862540484 - }, - "m_pipRoundRates": { - "type": "class SharedPointer", - "id": 7, - "offset": 168, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1859513241 - }, - "m_PipsSuspended": { - "type": "bool", - "id": 8, - "offset": 184, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 98171898 - }, - "m_stunned": { - "type": "int", - "id": 9, - "offset": 188, - "flags": 25, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1661672123 - }, - "m_mindcontrolled": { - "type": "int", - "id": 10, - "offset": 216, - "flags": 25, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2059794744 - }, - "m_originalTeam": { - "type": "int", - "id": 11, - "offset": 224, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1121355446 - }, - "m_nAuraTurnLength": { - "type": "int", - "id": 12, - "offset": 236, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1719821564 - }, - "m_clue": { - "type": "int", - "id": 13, - "offset": 228, - "flags": 25, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 219277091 - }, - "m_roundsDead": { - "type": "int", - "id": 14, - "offset": 232, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2071727747 - }, - "m_nPolymorphTurnLength": { - "type": "int", - "id": 15, - "offset": 240, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1619550301 - }, - "m_playerHealth": { - "type": "int", - "id": 16, - "offset": 244, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 740444925 - }, - "m_maxPlayerHealth": { - "type": "int", - "id": 17, - "offset": 248, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 96027363 - }, - "m_HideCurrentHP": { - "type": "bool", - "id": 18, - "offset": 252, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 31360456 - }, - "m_maxHandSize": { - "type": "int", - "id": 19, - "offset": 256, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1925169782 - }, - "m_pHand": { - "type": "class Hand*", - "id": 20, - "offset": 264, - "flags": 1, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 892448765 - }, - "m_pSavedHand": { - "type": "class Hand*", - "id": 21, - "offset": 272, - "flags": 1, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 787912720 - }, - "m_pPlayDeck": { - "type": "class PlayDeck*", - "id": 22, - "offset": 280, - "flags": 1, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2053198667 - }, - "m_pSavedPlayDeck": { - "type": "class PlayDeck*", - "id": 23, - "offset": 288, - "flags": 1, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 498207966 - }, - "m_pSavedGameStats": { - "type": "class SharedPointer", - "id": 24, - "offset": 296, - "flags": 1, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1599533644 - }, - "m_savedPrimaryMagicSchoolID": { - "type": "int", - "id": 25, - "offset": 312, - "flags": 1, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 983035431 - }, - "m_pGameStats": { - "type": "class SharedPointer", - "id": 26, - "offset": 320, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3522102873 - }, - "m_color": { - "type": "class Color", - "id": 27, - "offset": 336, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1791663549 - }, - "m_rotation": { - "type": "float", - "id": 28, - "offset": 340, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1497468551 - }, - "m_radius": { - "type": "float", - "id": 29, - "offset": 344, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 989410271 - }, - "m_subcircle": { - "type": "int", - "id": 30, - "offset": 348, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1748202326 - }, - "m_pvp": { - "type": "bool", - "id": 31, - "offset": 352, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 269527241 - }, - "m_raid": { - "type": "bool", - "id": 32, - "offset": 353, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 222284947 - }, - "m_dynamicSymbol": { - "type": "enum DynamicSigilSymbol", - "id": 33, - "offset": 356, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 701705655 - }, - "m_accuracyBonus": { - "type": "float", - "id": 34, - "offset": 396, - "flags": 1, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1440672233 - }, - "m_minionSubCircle": { - "type": "int", - "id": 35, - "offset": 400, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1896926112 - }, - "m_isMinion": { - "type": "bool", - "id": 36, - "offset": 404, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1597230777 - }, - "m_isAccompanyNPC": { - "type": "bool", - "id": 37, - "offset": 412, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1067399659 - }, - "m_hangingEffects": { - "type": "class SpellEffect", - "id": 38, - "offset": 416, - "flags": 27, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2685029606 - }, - "m_publicHangingEffects": { - "type": "class SpellEffect", - "id": 39, - "offset": 432, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1243141029 - }, - "m_auraEffects": { - "type": "class SpellEffect", - "id": 40, - "offset": 448, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2783652947 - }, - "m_shadowEffects": { - "type": "class SharedPointer", - "id": 41, - "offset": 464, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1712698903 - }, - "m_shadowSpellEffects": { - "type": "class SpellEffect", - "id": 42, - "offset": 480, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1808623792 - }, - "m_deathActivatedEffects": { - "type": "class SharedPointer", - "id": 43, - "offset": 512, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1347166054 - }, - "m_delayCastEffects": { - "type": "class DelaySpellEffect", - "id": 44, - "offset": 528, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2596123949 - }, - "m_polymorphSpellTemplateID": { - "type": "unsigned int", - "id": 45, - "offset": 576, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1320079328 - }, - "m_side": { - "type": "std::string", - "id": 46, - "offset": 600, - "flags": 1, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1717547872 - }, - "m_shadowSpellsDisabled": { - "type": "bool", - "id": 47, - "offset": 672, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2077139652 - }, - "m_ignoreSpellsPvPOnlyFlag": { - "type": "bool", - "id": 48, - "offset": 673, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1714276188 - }, - "m_ignoreSpellsPvEOnlyFlag": { - "type": "bool", - "id": 49, - "offset": 674, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1691675729 - }, - "m_bossMob": { - "type": "bool", - "id": 50, - "offset": 675, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 986129576 - }, - "m_hidePVPEnemyChat": { - "type": "bool", - "id": 51, - "offset": 676, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1284658049 - }, - "m_combatTriggerIDs": { - "type": "int", - "id": 52, - "offset": 696, - "flags": 1, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1654684388 - }, - "m_backlash": { - "type": "int", - "id": 53, - "offset": 724, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 857558899 - }, - "m_pastBacklash": { - "type": "int", - "id": 54, - "offset": 728, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1229328939 - }, - "m_shadowCreatureLevel": { - "type": "int", - "id": 55, - "offset": 732, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1119572179 - }, - "m_pastShadowCreatureLevel": { - "type": "int", - "id": 56, - "offset": 736, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1267855499 - }, - "m_shadowCreatureLevelCount": { - "type": "int", - "id": 57, - "offset": 744, - "flags": 31, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 975615804 - }, - "m_interceptEffect": { - "type": "class SharedPointer", - "id": 58, - "offset": 768, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 339294150 - }, - "m_roundsSinceShadowPip": { - "type": "int", - "id": 59, - "offset": 800, - "flags": 1, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 682042934 - }, - "m_polymorphEffect": { - "type": "class SharedPointer", - "id": 60, - "offset": 824, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2193528962 - }, - "m_confused": { - "type": "int", - "id": 61, - "offset": 196, - "flags": 25, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1851913585 - }, - "m_confusionTrigger": { - "type": "int", - "id": 62, - "offset": 200, - "flags": 25, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 554584130 - }, - "m_confusionDisplay": { - "type": "bool", - "id": 63, - "offset": 204, - "flags": 25, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1028383709 - }, - "m_confusedTarget": { - "type": "bool", - "id": 64, - "offset": 205, - "flags": 25, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1193542673 - }, - "m_untargetable": { - "type": "bool", - "id": 65, - "offset": 206, - "flags": 25, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 36479793 - }, - "m_untargetableRounds": { - "type": "int", - "id": 66, - "offset": 208, - "flags": 25, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 80618355 - }, - "m_restrictedTarget": { - "type": "bool", - "id": 67, - "offset": 212, - "flags": 25, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 394144563 - }, - "m_exitCombat": { - "type": "bool", - "id": 68, - "offset": 213, - "flags": 25, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1293141763 - }, - "m_stunnedDisplay": { - "type": "bool", - "id": 69, - "offset": 192, - "flags": 25, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 892304554 - }, - "m_mindcontrolledDisplay": { - "type": "bool", - "id": 70, - "offset": 220, - "flags": 25, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 174689415 - }, - "m_autoPass": { - "type": "bool", - "id": 71, - "offset": 720, - "flags": 25, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1919864803 - }, - "m_vanish": { - "type": "bool", - "id": 72, - "offset": 721, - "flags": 25, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1058591164 - }, - "m_myTeamTurn": { - "type": "bool", - "id": 73, - "offset": 722, - "flags": 25, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1134422697 - }, - "m_needToCleanAuras": { - "type": "bool", - "id": 74, - "offset": 888, - "flags": 25, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1159570481 - }, - "m_planningPhasePipAquiredType": { - "type": "enum CombatParticipant::PipAquiredByEnum", - "id": 75, - "offset": 816, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1435933659, - "enum_options": { - "CombatParticipant::AQUIRED_PIP_UNKNOWN": 0, - "CombatParticipant::AQUIRED_PIP_NORMAL": 1, - "CombatParticipant::AQUIRED_PIP_POWER": 2, - "CombatParticipant::AQUIRED_NORMAL_TO_POWER_PIP_CONVERSION": 4, - "CombatParticipant::IMPEDE_PIPS": 5 - } - }, - "m_cheatSettings": { - "type": "class SharedPointer", - "id": 76, - "offset": 96, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2742666223 - }, - "m_isMonster": { - "type": "unsigned int", - "id": 77, - "offset": 408, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1530878065 - }, - "m_weaponNifSoundList": { - "type": "class SharedPointer", - "id": 78, - "offset": 80, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2575326929 - }, - "m_petCombatTrigger": { - "type": "int", - "id": 79, - "offset": 712, - "flags": 1, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 822894541 - }, - "m_petCombatTriggerTarget": { - "type": "int", - "id": 80, - "offset": 716, - "flags": 1, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 675145556 - }, - "m_shadowPipRateThreshold": { - "type": "float", - "id": 81, - "offset": 840, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1215959391 - }, - "m_baseSpellDamage": { - "type": "int", - "id": 82, - "offset": 844, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 871613364 - }, - "m_statDamage": { - "type": "float", - "id": 83, - "offset": 848, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1480169970 - }, - "m_statResist": { - "type": "float", - "id": 84, - "offset": 852, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2033033901 - }, - "m_statPierce": { - "type": "float", - "id": 85, - "offset": 856, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1959012939 - }, - "m_mobLevel": { - "type": "int", - "id": 86, - "offset": 860, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 186067024 - }, - "m_bPlayerTimeUpdated": { - "type": "bool", - "id": 87, - "offset": 864, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 877395800 - }, - "m_bPlayerTimeEliminated": { - "type": "bool", - "id": 88, - "offset": 865, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1842006605 - }, - "m_bPlayerTimeWarning": { - "type": "bool", - "id": 89, - "offset": 866, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 742875591 - }, - "m_deckFullness": { - "type": "float", - "id": 90, - "offset": 868, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 156080730 - }, - "m_archmasteryPoints": { - "type": "float", - "id": 91, - "offset": 872, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 261464375 - }, - "m_maxArchmasteryPoints": { - "type": "float", - "id": 92, - "offset": 876, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 430012637 - }, - "m_archmasterySchool": { - "type": "unsigned int", - "id": 93, - "offset": 880, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 485805784 - }, - "m_archmasteryFlags": { - "type": "unsigned int", - "id": 94, - "offset": 884, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1571282557 - } - } - }, - "1406835428": { - "name": "class SharedPointer", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1406835428, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_visualBlobs": { - "type": "std::string", - "id": 1, - "offset": 176, - "flags": 31, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 3602657281 - } - } - }, - "650254213": { - "name": "class SharedPointer", - "bases": [ - "GraphicalSpell", - "Spell", - "PropertyClass" - ], - "hash": 650254213, - "properties": { - "m_templateID": { - "type": "unsigned int", - "id": 0, - "offset": 128, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1286746870 - }, - "m_enchantment": { - "type": "unsigned int", - "id": 1, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2217886818 - }, - "m_pipCost": { - "type": "class SharedPointer", - "id": 2, - "offset": 176, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3605704820 - }, - "m_regularAdjust": { - "type": "int", - "id": 3, - "offset": 192, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1420453335 - }, - "m_magicSchoolID": { - "type": "unsigned int", - "id": 4, - "offset": 136, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 893146499 - }, - "m_accuracy": { - "type": "unsigned char", - "id": 5, - "offset": 132, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2273914939 - }, - "m_treasureCard": { - "type": "bool", - "id": 6, - "offset": 197, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1764879128 - }, - "m_battleCard": { - "type": "bool", - "id": 7, - "offset": 198, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1332843753 - }, - "m_itemCard": { - "type": "bool", - "id": 8, - "offset": 199, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1683654300 - }, - "m_sideBoard": { - "type": "bool", - "id": 9, - "offset": 200, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1897838368 - }, - "m_spellID": { - "type": "unsigned int", - "id": 10, - "offset": 204, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1697483258 - }, - "m_leavesPlayWhenCastOverride": { - "type": "bool", - "id": 11, - "offset": 216, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 874407398 - }, - "m_cloaked": { - "type": "bool", - "id": 12, - "offset": 196, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 7349510 - }, - "m_enchantmentSpellIsItemCard": { - "type": "bool", - "id": 13, - "offset": 76, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 531590701 - }, - "m_premutationSpellID": { - "type": "unsigned int", - "id": 14, - "offset": 112, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1530256370 - }, - "m_enchantedThisCombat": { - "type": "bool", - "id": 15, - "offset": 77, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1895738923 - }, - "m_paramOverrides": { - "type": "class SharedPointer", - "id": 16, - "offset": 224, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2061635599 - }, - "m_subEffectMeta": { - "type": "class SharedPointer", - "id": 17, - "offset": 240, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1944101106 - }, - "m_delayEnchantment": { - "type": "bool", - "id": 18, - "offset": 257, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 191336919 - }, - "m_PvE": { - "type": "bool", - "id": 19, - "offset": 264, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 269492350 - }, - "m_delayEnchantmentOrder": { - "type": "enum SpellEffect::kDelayOrder", - "id": 20, - "offset": 72, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2526055263, - "enum_options": { - "SpellEffect::kAnyOrder": 0, - "SpellEffect::kFirst": 1, - "SpellEffect::kSecond": 2 - } - }, - "m_roundAddedTC": { - "type": "int", - "id": 21, - "offset": 260, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 112365451 - }, - "m_secondarySchoolID": { - "type": "unsigned int", - "id": 22, - "offset": 304, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2081206026 - } - } - }, - "1031358787": { - "name": "class SharedPointer", - "bases": [ - "Cinematic", - "PropertyClass" - ], - "hash": 1031358787, - "properties": {} - }, - "1812346332": { - "name": "class GraphicalItemCard*", - "bases": [ - "GraphicalSpell", - "Spell", - "PropertyClass" - ], - "hash": 1812346332, - "properties": { - "m_templateID": { - "type": "unsigned int", - "id": 0, - "offset": 128, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1286746870 - }, - "m_enchantment": { - "type": "unsigned int", - "id": 1, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2217886818 - }, - "m_pipCost": { - "type": "class SharedPointer", - "id": 2, - "offset": 176, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3605704820 - }, - "m_regularAdjust": { - "type": "int", - "id": 3, - "offset": 192, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1420453335 - }, - "m_magicSchoolID": { - "type": "unsigned int", - "id": 4, - "offset": 136, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 893146499 - }, - "m_accuracy": { - "type": "unsigned char", - "id": 5, - "offset": 132, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2273914939 - }, - "m_treasureCard": { - "type": "bool", - "id": 6, - "offset": 197, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1764879128 - }, - "m_battleCard": { - "type": "bool", - "id": 7, - "offset": 198, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1332843753 - }, - "m_itemCard": { - "type": "bool", - "id": 8, - "offset": 199, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1683654300 - }, - "m_sideBoard": { - "type": "bool", - "id": 9, - "offset": 200, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1897838368 - }, - "m_spellID": { - "type": "unsigned int", - "id": 10, - "offset": 204, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1697483258 - }, - "m_leavesPlayWhenCastOverride": { - "type": "bool", - "id": 11, - "offset": 216, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 874407398 - }, - "m_cloaked": { - "type": "bool", - "id": 12, - "offset": 196, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 7349510 - }, - "m_enchantmentSpellIsItemCard": { - "type": "bool", - "id": 13, - "offset": 76, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 531590701 - }, - "m_premutationSpellID": { - "type": "unsigned int", - "id": 14, - "offset": 112, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1530256370 - }, - "m_enchantedThisCombat": { - "type": "bool", - "id": 15, - "offset": 77, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1895738923 - }, - "m_paramOverrides": { - "type": "class SharedPointer", - "id": 16, - "offset": 224, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2061635599 - }, - "m_subEffectMeta": { - "type": "class SharedPointer", - "id": 17, - "offset": 240, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1944101106 - }, - "m_delayEnchantment": { - "type": "bool", - "id": 18, - "offset": 257, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 191336919 - }, - "m_PvE": { - "type": "bool", - "id": 19, - "offset": 264, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 269492350 - }, - "m_delayEnchantmentOrder": { - "type": "enum SpellEffect::kDelayOrder", - "id": 20, - "offset": 72, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2526055263, - "enum_options": { - "SpellEffect::kAnyOrder": 0, - "SpellEffect::kFirst": 1, - "SpellEffect::kSecond": 2 - } - }, - "m_roundAddedTC": { - "type": "int", - "id": 21, - "offset": 260, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 112365451 - }, - "m_secondarySchoolID": { - "type": "unsigned int", - "id": 22, - "offset": 304, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2081206026 - } - } - }, - "248609871": { - "name": "class SegmentationRequrinment", - "bases": [ - "PropertyClass" - ], - "hash": 248609871, - "properties": { - "m_sReqName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3206441047 - }, - "m_reqOperatorType": { - "type": "enum SegmentationRequrinment::OPERATOR_TYPE", - "id": 1, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1334217449 - }, - "m_sReqValue": { - "type": "std::string", - "id": 2, - "offset": 112, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2058248243 - } - } - }, - "1031496930": { - "name": "class TeleporterTemplate", - "bases": [ - "PropertyClass" - ], - "hash": 1031496930, - "properties": { - "m_targetZone": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2698931614 - }, - "m_targetLocation": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2493737915 - }, - "m_location": { - "type": "class Vector3D", - "id": 2, - "offset": 136, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2239683611 - } - } - }, - "1407199496": { - "name": "class MadlibArgT,class std::allocator > >*", - "bases": [ - "MadlibArg", - "PropertyClass" - ], - "hash": 1407199496, - "properties": { - "m_madlibToken": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3058682373 - }, - "m_madlibArgument": { - "type": "std::string", - "id": 1, - "offset": 112, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2376191783 - } - } - }, - "248098457": { - "name": "class BoosterPackSpaceHelper*", - "bases": [ - "PropertyClass" - ], - "hash": 248098457, - "properties": { - "m_allPacks": { - "type": "class SharedPointer", - "id": 0, - "offset": 80, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": true, - "pointer": true, - "hash": 1650503223 - } - } - }, - "651050002": { - "name": "class ObstacleCourseFinishLineBehaviorClient", - "bases": [ - "ObstacleCourseFinishLineBehavior", - "ObstacleCourseObstacleBehavior", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 651050002, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - } - } - }, - "248057497": { - "name": "class BoosterPackSpaceHelper", - "bases": [ - "PropertyClass" - ], - "hash": 248057497, - "properties": { - "m_allPacks": { - "type": "class SharedPointer", - "id": 0, - "offset": 80, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": true, - "pointer": true, - "hash": 1650503223 - } - } - }, - "1812702742": { - "name": "class AdvPvPEloBehaviorClient", - "bases": [ - "AdvPvPEloBehavior", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1812702742, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_loaded": { - "type": "bool", - "id": 1, - "offset": 112, - "flags": 27, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 683367036 - }, - "m_entries": { - "type": "class SharedPointer", - "id": 2, - "offset": 120, - "flags": 27, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1075986553 - }, - "m_recordCache": { - "type": "class SharedPointer", - "id": 3, - "offset": 136, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 828243474 - } - } - }, - "1032444398": { - "name": "class AvailableCompleteEntry", - "bases": [ - "GoalEntry", - "ServiceOptionBase", - "PropertyClass" - ], - "hash": 1032444398, - "properties": { - "m_serviceName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2206028813 - }, - "m_iconKey": { - "type": "std::string", - "id": 1, - "offset": 168, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2457138637 - }, - "m_displayKey": { - "type": "std::string", - "id": 2, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3023276954 - }, - "m_serviceIndex": { - "type": "unsigned int", - "id": 3, - "offset": 204, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2103126710 - }, - "m_forceInteract": { - "type": "bool", - "id": 4, - "offset": 200, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1705789564 - }, - "m_questID": { - "type": "gid", - "id": 5, - "offset": 216, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1246549335 - }, - "m_goalID": { - "type": "gid", - "id": 6, - "offset": 224, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 485200232 - }, - "m_goalTitle": { - "type": "std::string", - "id": 7, - "offset": 272, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2291910240 - }, - "m_questTitle": { - "type": "std::string", - "id": 8, - "offset": 240, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1805465583 - }, - "m_goalNameID": { - "type": "unsigned int", - "id": 9, - "offset": 232, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 403158846 - } - } - }, - "1408081391": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1408081391, - "properties": { - "m_baseHitpoints": { - "type": "int", - "id": 0, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 596105911 - }, - "m_baseMana": { - "type": "int", - "id": 1, - "offset": 84, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1475495442 - }, - "m_baseGoldPouch": { - "type": "int", - "id": 2, - "offset": 88, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 848889754 - }, - "m_baseEventCurrency1Pouch": { - "type": "int", - "id": 3, - "offset": 92, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1227701106 - }, - "m_baseEventCurrency2Pouch": { - "type": "int", - "id": 4, - "offset": 96, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1266836499 - }, - "m_basePvPCurrencyPouch": { - "type": "int", - "id": 5, - "offset": 100, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 250034965 - }, - "m_basePvPTourneyCurrencyPouch": { - "type": "int", - "id": 6, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2005272907 - }, - "m_energyMax": { - "type": "int", - "id": 7, - "offset": 108, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 493080970 - }, - "m_currentHitpoints": { - "type": "int", - "id": 8, - "offset": 112, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1533788735 - }, - "m_currentGold": { - "type": "int", - "id": 9, - "offset": 116, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1255819683 - }, - "m_currentEventCurrency1": { - "type": "int", - "id": 10, - "offset": 120, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1718583419 - }, - "m_currentEventCurrency2": { - "type": "int", - "id": 11, - "offset": 124, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1718583420 - }, - "m_currentPvPCurrency": { - "type": "int", - "id": 12, - "offset": 128, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 958495550 - }, - "m_currentPvPTourneyCurrency": { - "type": "int", - "id": 13, - "offset": 132, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 398198452 - }, - "m_currentMana": { - "type": "int", - "id": 14, - "offset": 136, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1256020122 - }, - "m_currentArenaPoints": { - "type": "int", - "id": 15, - "offset": 140, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1119642753 - }, - "m_spellChargeBase": { - "type": "int", - "id": 16, - "offset": 144, - "flags": 31, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 712023615 - }, - "m_potionMax": { - "type": "float", - "id": 17, - "offset": 168, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2123676470 - }, - "m_potionCharge": { - "type": "float", - "id": 18, - "offset": 172, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1104179290 - }, - "m_pArenaLadder": { - "type": "class SharedPointer", - "id": 19, - "offset": 176, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2717766581 - }, - "m_pDerbyLadder": { - "type": "class SharedPointer", - "id": 20, - "offset": 192, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2352744804 - }, - "m_bracketLader": { - "type": "class SharedPointer", - "id": 21, - "offset": 208, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2562001526 - }, - "m_bonusHitpoints": { - "type": "int", - "id": 22, - "offset": 224, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 103057475 - }, - "m_bonusMana": { - "type": "int", - "id": 23, - "offset": 228, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1757236254 - }, - "m_bonusEnergy": { - "type": "int", - "id": 24, - "offset": 244, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1975625099 - }, - "m_criticalHitPercentAll": { - "type": "float", - "id": 25, - "offset": 248, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2085066513 - }, - "m_blockPercentAll": { - "type": "float", - "id": 26, - "offset": 252, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1203386380 - }, - "m_criticalHitRatingAll": { - "type": "float", - "id": 27, - "offset": 256, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 923968773 - }, - "m_blockRatingAll": { - "type": "float", - "id": 28, - "offset": 260, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1743229600 - }, - "m_referenceLevel": { - "type": "int", - "id": 29, - "offset": 324, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1436595649 - }, - "m_highestCharacterLevelOnAccount": { - "type": "int", - "id": 30, - "offset": 336, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1662017333 - }, - "m_petActChance": { - "type": "int", - "id": 31, - "offset": 344, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 237418461 - }, - "m_dmgBonusPercent": { - "type": "float", - "id": 32, - "offset": 352, - "flags": 31, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 194501159 - }, - "m_dmgBonusFlat": { - "type": "float", - "id": 33, - "offset": 376, - "flags": 31, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1837769725 - }, - "m_accBonusPercent": { - "type": "float", - "id": 34, - "offset": 400, - "flags": 31, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 331557526 - }, - "m_apBonusPercent": { - "type": "float", - "id": 35, - "offset": 424, - "flags": 31, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1228557984 - }, - "m_dmgReducePercent": { - "type": "float", - "id": 36, - "offset": 448, - "flags": 31, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1426050712 - }, - "m_dmgReduceFlat": { - "type": "float", - "id": 37, - "offset": 472, - "flags": 31, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1218184718 - }, - "m_accReducePercent": { - "type": "float", - "id": 38, - "offset": 496, - "flags": 31, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1653943527 - }, - "m_healBonusPercent": { - "type": "float", - "id": 39, - "offset": 520, - "flags": 31, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 562313577 - }, - "m_healIncBonusPercent": { - "type": "float", - "id": 40, - "offset": 544, - "flags": 31, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2182535587 - }, - "m_spellChargeBonus": { - "type": "int", - "id": 41, - "offset": 592, - "flags": 31, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2019610507 - }, - "m_dmgBonusPercentAll": { - "type": "float", - "id": 42, - "offset": 712, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2076945760 - }, - "m_dmgBonusFlatAll": { - "type": "float", - "id": 43, - "offset": 716, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 419082102 - }, - "m_accBonusPercentAll": { - "type": "float", - "id": 44, - "offset": 720, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1144118127 - }, - "m_apBonusPercentAll": { - "type": "float", - "id": 45, - "offset": 724, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 772537145 - }, - "m_dmgReducePercentAll": { - "type": "float", - "id": 46, - "offset": 728, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 635246641 - }, - "m_dmgReduceFlatAll": { - "type": "float", - "id": 47, - "offset": 732, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1650631655 - }, - "m_accReducePercentAll": { - "type": "float", - "id": 48, - "offset": 736, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2064189472 - }, - "m_healBonusPercentAll": { - "type": "float", - "id": 49, - "offset": 740, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 242474338 - }, - "m_healIncBonusPercentAll": { - "type": "float", - "id": 50, - "offset": 744, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1436699484 - }, - "m_spellChargeBonusAll": { - "type": "int", - "id": 51, - "offset": 752, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1354189604 - }, - "m_powerPipBase": { - "type": "float", - "id": 52, - "offset": 756, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 345261352 - }, - "m_powerPipBonusPercentAll": { - "type": "float", - "id": 53, - "offset": 792, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1850107326 - }, - "m_xpPercentIncrease": { - "type": "float", - "id": 54, - "offset": 800, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1051081338 - }, - "m_criticalHitPercentBySchool": { - "type": "float", - "id": 55, - "offset": 616, - "flags": 31, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1022327067 - }, - "m_blockPercentBySchool": { - "type": "float", - "id": 56, - "offset": 640, - "flags": 31, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2189750006 - }, - "m_criticalHitRatingBySchool": { - "type": "float", - "id": 57, - "offset": 664, - "flags": 31, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2060803983 - }, - "m_blockRatingBySchool": { - "type": "float", - "id": 58, - "offset": 688, - "flags": 31, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 274073098 - }, - "m_balanceMastery": { - "type": "int", - "id": 59, - "offset": 832, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 149062181 - }, - "m_deathMastery": { - "type": "int", - "id": 60, - "offset": 836, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1421218661 - }, - "m_fireMastery": { - "type": "int", - "id": 61, - "offset": 840, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1431794949 - }, - "m_iceMastery": { - "type": "int", - "id": 62, - "offset": 844, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 704864240 - }, - "m_lifeMastery": { - "type": "int", - "id": 63, - "offset": 848, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2142136447 - }, - "m_mythMastery": { - "type": "int", - "id": 64, - "offset": 852, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1766317185 - }, - "m_stormMastery": { - "type": "int", - "id": 65, - "offset": 856, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1883988244 - }, - "m_maximumNumberOfIslands": { - "type": "int", - "id": 66, - "offset": 860, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 412109412 - }, - "m_gardeningLevel": { - "type": "unsigned char", - "id": 67, - "offset": 864, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2456231799 - }, - "m_gardeningXP": { - "type": "int", - "id": 68, - "offset": 868, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 590238801 - }, - "m_invisibleToFriends": { - "type": "bool", - "id": 69, - "offset": 872, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 416456454 - }, - "m_showItemLock": { - "type": "bool", - "id": 70, - "offset": 873, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3575244 - }, - "m_questFinderEnabled": { - "type": "bool", - "id": 71, - "offset": 874, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 125544072 - }, - "m_buddyListLimit": { - "type": "int", - "id": 72, - "offset": 876, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1103577965 - }, - "m_dontAllowFriendFinderCodes": { - "type": "bool", - "id": 73, - "offset": 884, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1360721765 - }, - "m_stunResistancePercent": { - "type": "float", - "id": 74, - "offset": 880, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1868382627 - }, - "m_shadowMagicUnlocked": { - "type": "bool", - "id": 75, - "offset": 892, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1642162767 - }, - "m_shadowPipMax": { - "type": "int", - "id": 76, - "offset": 888, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1774396431 - }, - "m_fishingLevel": { - "type": "unsigned char", - "id": 77, - "offset": 893, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 682785040 - }, - "m_fishingXP": { - "type": "int", - "id": 78, - "offset": 896, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 319909002 - }, - "m_fishingLuckBonusPercent": { - "type": "float", - "id": 79, - "offset": 568, - "flags": 31, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1363349254 - }, - "m_fishingLuckBonusPercentAll": { - "type": "float", - "id": 80, - "offset": 748, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2190780895 - }, - "m_subscriberBenefitFlags": { - "type": "unsigned int", - "id": 81, - "offset": 900, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1587324747 - }, - "m_elixirBenefitFlags": { - "type": "unsigned int", - "id": 82, - "offset": 904, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2320773252 - }, - "m_shadowPipBonusPercent": { - "type": "float", - "id": 83, - "offset": 796, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1426533310 - }, - "m_wispBonusPercent": { - "type": "float", - "id": 84, - "offset": 824, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1304386546 - }, - "m_pipConversionRatingAll": { - "type": "float", - "id": 85, - "offset": 288, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 198602948 - }, - "m_pipConversionRatingPerSchool": { - "type": "float", - "id": 86, - "offset": 264, - "flags": 31, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 930350362 - }, - "m_pipConversionPercentAll": { - "type": "float", - "id": 87, - "offset": 320, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1770314416 - }, - "m_pipConversionPercentPerSchool": { - "type": "float", - "id": 88, - "offset": 296, - "flags": 31, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 960311302 - }, - "m_monsterMagicLevel": { - "type": "unsigned char", - "id": 89, - "offset": 908, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 729572689 - }, - "m_monsterMagicXP": { - "type": "int", - "id": 90, - "offset": 912, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 770955371 - }, - "m_playerChatChannelIsPublic": { - "type": "bool", - "id": 91, - "offset": 916, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 50035796 - }, - "m_extraInventorySpace": { - "type": "int", - "id": 92, - "offset": 920, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1757105784 - }, - "m_rememberLastRealm": { - "type": "bool", - "id": 93, - "offset": 924, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 746394247 - }, - "m_newSpellbookLayoutWarning": { - "type": "bool", - "id": 94, - "offset": 925, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1509105148 - }, - "m_pipConversionBaseAllSchools": { - "type": "int", - "id": 95, - "offset": 760, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 307930968 - }, - "m_pipConversionBasePerSchool": { - "type": "int", - "id": 96, - "offset": 768, - "flags": 31, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1322493139 - }, - "m_purchasedCustomEmotes1": { - "type": "unsigned int", - "id": 97, - "offset": 928, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2104336133 - }, - "m_purchasedCustomTeleportEffects1": { - "type": "unsigned int", - "id": 98, - "offset": 932, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 603893351 - }, - "m_equippedTeleportEffect": { - "type": "unsigned int", - "id": 99, - "offset": 936, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 918478182 - }, - "m_highestWorld1ID": { - "type": "unsigned int", - "id": 100, - "offset": 956, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2049405919 - }, - "m_highestWorld2ID": { - "type": "unsigned int", - "id": 101, - "offset": 960, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2049407008 - }, - "m_activeClassProjectsList": { - "type": "unsigned int", - "id": 102, - "offset": 968, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1952826405 - }, - "m_disabledItemSlotIDs": { - "type": "unsigned int", - "id": 103, - "offset": 984, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1477574262 - }, - "m_adventurePowerCooldownTime": { - "type": "unsigned int", - "id": 104, - "offset": 1000, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1774753180 - }, - "m_purchasedCustomEmotes2": { - "type": "unsigned int", - "id": 105, - "offset": 940, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2104336134 - }, - "m_purchasedCustomTeleportEffects2": { - "type": "unsigned int", - "id": 106, - "offset": 944, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 603893352 - }, - "m_purchasedCustomEmotes3": { - "type": "unsigned int", - "id": 107, - "offset": 948, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2104336135 - }, - "m_purchasedCustomTeleportEffects3": { - "type": "unsigned int", - "id": 108, - "offset": 952, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 603893353 - }, - "m_shadowPipRating": { - "type": "float", - "id": 109, - "offset": 1004, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 507126123 - }, - "m_bonusShadowPipRating": { - "type": "float", - "id": 110, - "offset": 1008, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 578452466 - }, - "m_shadowPipRateAccumulated": { - "type": "float", - "id": 111, - "offset": 1012, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 922051738 - }, - "m_shadowPipRateThreshold": { - "type": "float", - "id": 112, - "offset": 1016, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1215959391 - }, - "m_shadowPipRatePercentage": { - "type": "int", - "id": 113, - "offset": 1020, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2119696723 - }, - "m_friendlyPlayer": { - "type": "bool", - "id": 114, - "offset": 1024, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 990699901 - }, - "m_emojiSkinTone": { - "type": "int", - "id": 115, - "offset": 1028, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1291044345 - }, - "m_showPVPOption": { - "type": "unsigned int", - "id": 116, - "offset": 1032, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2052204093 - }, - "m_favoriteSlot": { - "type": "int", - "id": 117, - "offset": 1036, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 13456252 - }, - "m_cantripLevel": { - "type": "unsigned char", - "id": 118, - "offset": 1040, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 788457241 - }, - "m_cantripXP": { - "type": "int", - "id": 119, - "offset": 1044, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1867018035 - }, - "m_archmasteryBase": { - "type": "float", - "id": 120, - "offset": 1048, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2213748661 - }, - "m_archmasteryBonusFlat": { - "type": "float", - "id": 121, - "offset": 1052, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2047862920 - }, - "m_archmasteryBonusPercentage": { - "type": "float", - "id": 122, - "offset": 1056, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2054419871 - }, - "m_highestCharacterWorldOnAccount": { - "type": "int", - "id": 123, - "offset": 340, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1240477285 - }, - "m_schoolID": { - "type": "unsigned int", - "id": 124, - "offset": 328, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 369010242 - }, - "m_levelScaled": { - "type": "int", - "id": 125, - "offset": 332, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1740930910 - }, - "m_currentZoneName": { - "type": "std::string", - "id": 126, - "offset": 1064, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3602481883 - }, - "m_mailSentToday": { - "type": "unsigned char", - "id": 127, - "offset": 1096, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2737597102 - }, - "m_secondarySchool": { - "type": "unsigned int", - "id": 128, - "offset": 1100, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 479424797 - } - } - }, - "1812555506": { - "name": "class MagicLevelInfo", - "bases": [ - "PropertyClass" - ], - "hash": 1812555506, - "properties": { - "m_level": { - "type": "int", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 801285362 - }, - "m_xpToLevel": { - "type": "int", - "id": 1, - "offset": 76, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1972600157 - }, - "m_hitpoints": { - "type": "int", - "id": 2, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1545062140 - }, - "m_mana": { - "type": "int", - "id": 3, - "offset": 84, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 219624247 - }, - "m_gold": { - "type": "int", - "id": 4, - "offset": 88, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 219423808 - }, - "m_levelName": { - "type": "std::string", - "id": 5, - "offset": 136, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3595417396 - }, - "m_pipChance": { - "type": "float", - "id": 6, - "offset": 168, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1744274210 - }, - "m_trainingPoints": { - "type": "int", - "id": 7, - "offset": 172, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1003892499 - }, - "m_craftingSlots": { - "type": "int", - "id": 8, - "offset": 92, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1998878589 - }, - "m_petEnergy": { - "type": "int", - "id": 9, - "offset": 96, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1787948493 - }, - "m_pipConversionRatingAllSchools": { - "type": "int", - "id": 10, - "offset": 100, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1570450594 - }, - "m_pipConversionRatingFire": { - "type": "int", - "id": 11, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1427121812 - }, - "m_pipConversionRatingIce": { - "type": "int", - "id": 12, - "offset": 108, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 108410207 - }, - "m_pipConversionRatingStorm": { - "type": "int", - "id": 13, - "offset": 112, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2010842115 - }, - "m_pipConversionRatingLife": { - "type": "int", - "id": 14, - "offset": 116, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1427337038 - }, - "m_pipConversionRatingMyth": { - "type": "int", - "id": 15, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1427390864 - }, - "m_pipConversionRatingDeath": { - "type": "int", - "id": 16, - "offset": 124, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1992499060 - }, - "m_pipConversionRatingBalance": { - "type": "int", - "id": 17, - "offset": 128, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 197129012 - }, - "m_shadowPipRating": { - "type": "float", - "id": 18, - "offset": 176, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 507126123 - }, - "m_archmastery": { - "type": "float", - "id": 19, - "offset": 180, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1963579610 - } - } - }, - "266713393": { - "name": "class AttachParticleActorCinematicAction*", - "bases": [ - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 266713393, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - }, - "m_effectName": { - "type": "std::string", - "id": 2, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2029161513 - }, - "m_nodeName": { - "type": "std::string", - "id": 3, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3607089954 - }, - "m_assetName": { - "type": "std::string", - "id": 4, - "offset": 184, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513131580 - } - } - }, - "248429037": { - "name": "class BGPlayerInfo", - "bases": [ - "PropertyClass" - ], - "hash": 248429037, - "properties": { - "m_playerID": { - "type": "gid", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1774633426 - }, - "m_team": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1717579362 - } - } - }, - "1834710024": { - "name": "class SharedPointer", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1834710024, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_quantity": { - "type": "int", - "id": 1, - "offset": 112, - "flags": 27, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 169215289 - } - } - }, - "1408207052": { - "name": "class SummonMinionEffect", - "bases": [ - "GameEffectBase", - "PropertyClass" - ], - "hash": 1408207052, - "properties": { - "m_currentTickCount": { - "type": "double", - "id": 0, - "offset": 80, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2533274692 - }, - "m_effectNameID": { - "type": "unsigned int", - "id": 1, - "offset": 96, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1204067144 - }, - "m_bIsOnPet": { - "type": "bool", - "id": 2, - "offset": 73, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 522593303 - }, - "m_originatorID": { - "type": "gid", - "id": 3, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1131810019 - }, - "m_itemSlotID": { - "type": "unsigned int", - "id": 4, - "offset": 112, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1895747595 - }, - "m_internalID": { - "type": "int", - "id": 5, - "offset": 92, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1643137924 - }, - "m_endTime": { - "type": "unsigned int", - "id": 6, - "offset": 88, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 716479635 - }, - "m_minionType": { - "type": "enum MinionType", - "id": 7, - "offset": 128, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3186373083, - "enum_options": { - "MT_NONE": 0, - "MT_ACCOMPANY": 1, - "MT_MINION": 2, - "MT_MONSTER": 3 - } - }, - "m_summonedTemplateID": { - "type": "int", - "id": 8, - "offset": 132, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1109386027 - } - } - }, - "251238039": { - "name": "class ClientPlayerStatueStitchBlob*", - "bases": [ - "PlayerStatueStitchBlob", - "PlayerStatueBlob", - "PropertyClass" - ], - "hash": 251238039, - "properties": { - "m_packedName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1805208228 - }, - "m_characterBuffer": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1972275298 - }, - "m_equipmentBuffer": { - "type": "std::string", - "id": 2, - "offset": 136, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1511030957 - }, - "m_emoteID": { - "type": "unsigned int", - "id": 3, - "offset": 168, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 691533780 - } - } - }, - "1812723997": { - "name": "class MoveCommandSteered*", - "bases": [ - "MoveController::MoveCommand", - "PropertyClass" - ], - "hash": 1812723997, - "properties": { - "m_vTarget": { - "type": "class Vector3D", - "id": 0, - "offset": 88, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3770499167 - }, - "m_kState": { - "type": "enum MoveState", - "id": 1, - "offset": 100, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 677163988, - "enum_options": { - "MS_WALKING": 0, - "MS_RUNNING": 1, - "MS_SWIMMING": 2, - "MS_FLYING": 3 - } - } - } - }, - "250334545": { - "name": "class SharedPointer", - "bases": [ - "DerbyModifyCheerCost", - "DerbyEffect", - "PropertyClass" - ], - "hash": 250334545, - "properties": { - "m_buffType": { - "type": "enum DerbyTalentBuffType", - "id": 0, - "offset": 92, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1149251982, - "enum_options": { - "Buff": 0, - "Debuff": 1, - "Neither": 2 - } - }, - "m_kTarget": { - "type": "enum DerbyTargetType", - "id": 1, - "offset": 96, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1807803351, - "enum_options": { - "kTargetInFront": 0, - "kTargetBehind": 1, - "kTargetFirst": 2, - "kTargetSelf": 3, - "kTargetAll": 4, - "kTargetLast": 5 - } - }, - "m_nDuration": { - "type": "int", - "id": 2, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1110167982 - }, - "m_effectID": { - "type": "unsigned int", - "id": 3, - "offset": 88, - "flags": 24, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2347630439 - }, - "m_imageFilename": { - "type": "std::string", - "id": 4, - "offset": 112, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2813328063 - }, - "m_iconIndex": { - "type": "unsigned int", - "id": 5, - "offset": 144, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1265133262 - }, - "m_soundOnActivate": { - "type": "std::string", - "id": 6, - "offset": 152, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1956929714 - }, - "m_soundOnTarget": { - "type": "std::string", - "id": 7, - "offset": 184, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3444214056 - }, - "m_targetParticleEffect": { - "type": "std::string", - "id": 8, - "offset": 216, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3048234723 - }, - "m_overheadMessage": { - "type": "std::string", - "id": 9, - "offset": 248, - "flags": 8388639, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1701018190 - }, - "m_requirements": { - "type": "class RequirementList", - "id": 10, - "offset": 280, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2840988582 - }, - "m_costMap": { - "type": "class TerrainCheerCostMap", - "id": 11, - "offset": 376, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1929931701 - } - } - }, - "1418217115": { - "name": "class SharedPointer", - "bases": [ - "TournamentUpdate", - "PropertyClass" - ], - "hash": 1418217115, - "properties": { - "m_actor": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1120253775 - } - } - }, - "1415260764": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1415260764, - "properties": { - "m_tagName": { - "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 27, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 255719658 - }, - "m_textureFilename": { - "type": "unsigned int", - "id": 1, - "offset": 76, - "flags": 27, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 922351199 - } - } - }, - "1966410406": { - "name": "class MadlibArg*", - "bases": [ - "PropertyClass" - ], - "hash": 1966410406, - "properties": { - "m_madlibToken": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3058682373 - } - } - }, - "251248279": { - "name": "class ClientPlayerStatueStitchBlob", - "bases": [ - "PlayerStatueStitchBlob", - "PlayerStatueBlob", - "PropertyClass" - ], - "hash": 251248279, - "properties": { - "m_packedName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1805208228 - }, - "m_characterBuffer": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1972275298 - }, - "m_equipmentBuffer": { - "type": "std::string", - "id": 2, - "offset": 136, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1511030957 - }, - "m_emoteID": { - "type": "unsigned int", - "id": 3, - "offset": 168, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 691533780 - } - } - }, - "1409602905": { - "name": "class SharedPointer", - "bases": [ - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 1409602905, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - }, - "m_effect": { - "type": "std::string", - "id": 2, - "offset": 120, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1894145160 - }, - "m_revealsCloaked": { - "type": "bool", - "id": 3, - "offset": 156, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1618772408 - } - } - }, - "1897898588": { - "name": "double", - "bases": [], - "hash": 1897898588, - "properties": {} - }, - "1408632626": { - "name": "class ClientStartBacklashRotationEffectCinematicAction", - "bases": [ - "StartBacklashRotationEffectCinematicAction", - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 1408632626, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - } - } - }, - "1849063507": { - "name": "class std::basic_string,class std::allocator >", - "bases": [], - "hash": 1849063507, - "properties": {} - }, - "1835661928": { - "name": "class SharedPointer", - "bases": [ - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 1835661928, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - }, - "m_backlashEffect": { - "type": "std::string", - "id": 2, - "offset": 120, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3051687009 - } - } - }, - "260318106": { - "name": "class SharedPointer", - "bases": [ - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 260318106, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - }, - "m_newActorName": { - "type": "std::string", - "id": 2, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2029131039 - }, - "m_newActorName2": { - "type": "std::string", - "id": 3, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1852236785 - }, - "m_oldActorName": { - "type": "std::string", - "id": 4, - "offset": 184, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2191892948 - } - } - }, - "1823883939": { - "name": "class JewelSocket*", - "bases": [ - "PropertyClass" - ], - "hash": 1823883939, - "properties": { - "m_socketType": { - "type": "enum JewelSocket::JewelSocketType", - "id": 0, - "offset": 72, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3989417709, - "enum_options": { - "SOCKETTYPE_SQUARE": 0, - "SOCKETTYPE_CIRCLE": 1, - "SOCKETTYPE_TRIANGLE": 2, - "SOCKETTYPE_TEAR": 3, - "SOCKETTYPE_PET": 4, - "SOCKETTYPE_PINSQUAREPIP": 5, - "SOCKETTYPE_PINSQUARESHIELD": 6, - "SOCKETTYPE_PINSQUARESWORD": 7 - } - }, - "m_bLockable": { - "type": "bool", - "id": 1, - "offset": 76, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1046128242 - } - } - }, - "253456620": { - "name": "class SharedPointer", - "bases": [ - "ScaleActorCinematicAction", - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 253456620, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - }, - "m_scaleDuration": { - "type": "float", - "id": 2, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1764097637 - }, - "m_scaleTarget": { - "type": "float", - "id": 3, - "offset": 124, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1502791366 - } - } - }, - "1409100552": { - "name": "class TeamHelpWindow*", - "bases": [ - "Window", - "PropertyClass" - ], - "hash": 1409100552, - "properties": { - "m_sName": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306437263 - }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621225959 - }, - "m_Style": { - "type": "unsigned int", - "id": 2, - "offset": 152, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "SCALE_CHILDREN": 2, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "FOCUS_LOCKED": 64, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152 - } - }, - "m_Flags": { - "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } - }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3105139380 - }, - "m_fTargetAlpha": { - "type": "float", - "id": 5, - "offset": 212, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1809129834 - }, - "m_fDisabledAlpha": { - "type": "float", - "id": 6, - "offset": 216, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1389987675 - }, - "m_fAlpha": { - "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 482130755 - }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3623628394 - }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2102211316 - }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1846695875 - }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3389835433 - }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2547159940 - }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2587533771 - }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3091503757 - } - } - }, - "1819325754": { - "name": "class TrackedPlant", - "bases": [ - "PropertyClass" - ], - "hash": 1819325754, - "properties": {} - }, - "252637921": { - "name": "class DeathParticleCinematicAction", - "bases": [ - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 252637921, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - } - } - }, - "1817311555": { - "name": "class ClientPetCastEffectActorCinematicAction*", - "bases": [ - "PetCastEffectActorCinematicAction", - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 1817311555, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - } - } - }, - "252229277": { - "name": "class ActiveMusicLoop*", - "bases": [ - "PropertyClass" - ], - "hash": 252229277, - "properties": {} - }, - "1814993515": { - "name": "class SharedPointer", - "bases": [ - "DeathParticleCinematicAction", - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 1814993515, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - } - } - }, - "252224157": { - "name": "class ActiveMusicLoop", - "bases": [ - "PropertyClass" - ], - "hash": 252224157, - "properties": {} - }, - "1409100712": { - "name": "class TeamHelpWindow", - "bases": [ - "Window", - "PropertyClass" - ], - "hash": 1409100712, - "properties": { - "m_sName": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306437263 - }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621225959 - }, - "m_Style": { - "type": "unsigned int", - "id": 2, - "offset": 152, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "SCALE_CHILDREN": 2, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "FOCUS_LOCKED": 64, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152 - } - }, - "m_Flags": { - "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } - }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3105139380 - }, - "m_fTargetAlpha": { - "type": "float", - "id": 5, - "offset": 212, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1809129834 - }, - "m_fDisabledAlpha": { - "type": "float", - "id": 6, - "offset": 216, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1389987675 - }, - "m_fAlpha": { - "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 482130755 - }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3623628394 - }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2102211316 - }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1846695875 - }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3389835433 - }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2547159940 - }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2587533771 - }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3091503757 - } - } - }, - "1814845786": { - "name": "class WizStatisticEffectTemplate*", - "bases": [ - "StatisticEffectTemplate", - "GameEffectTemplate", - "PropertyClass" - ], - "hash": 1814845786, - "properties": { - "m_effectName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2029161513 - }, - "m_effectCategory": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1852673222 - }, - "m_sortOrder": { - "type": "int", - "id": 2, - "offset": 148, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1411218206 - }, - "m_duration": { - "type": "double", - "id": 3, - "offset": 192, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2727932435 - }, - "m_stackingCategories": { - "type": "std::string", - "id": 4, - "offset": 160, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1774497525 - }, - "m_isPersistent": { - "type": "bool", - "id": 5, - "offset": 153, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 923861920 - }, - "m_bIsOnPet": { - "type": "bool", - "id": 6, - "offset": 154, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 522593303 - }, - "m_isPublic": { - "type": "bool", - "id": 7, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1728439822 - }, - "m_visualEffectAddName": { - "type": "std::string", - "id": 8, - "offset": 200, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3382086694 - }, - "m_visualEffectRemoveName": { - "type": "std::string", - "id": 9, - "offset": 232, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1541697323 - }, - "m_onAddFunctorName": { - "type": "std::string", - "id": 10, - "offset": 280, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1561843107 - }, - "m_onRemoveFunctorName": { - "type": "std::string", - "id": 11, - "offset": 312, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2559017864 - }, - "m_stackingRule": { - "type": "enum STACKING_RULE", - "id": 12, - "offset": 144, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 431568889, - "enum_options": { - "STACKING_ALLOWED": 0, - "STACKING_NOSTACK": 1, - "STACKING_REPLACE": 2 - } - }, - "m_buffAll": { - "type": "bool", - "id": 13, - "offset": 392, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1205044623 - }, - "m_school": { - "type": "std::string", - "id": 14, - "offset": 400, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2438566051 - }, - "m_damageBonusPercent": { - "type": "float", - "id": 15, - "offset": 440, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 623230606 - }, - "m_damageBonusFlat": { - "type": "float", - "id": 16, - "offset": 488, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2212039108 - }, - "m_accuracyBonusPercent": { - "type": "float", - "id": 17, - "offset": 444, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1972336538 - }, - "m_armorPiercingBonusPercent": { - "type": "float", - "id": 18, - "offset": 448, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1569912641 - }, - "m_damageReducePercent": { - "type": "float", - "id": 19, - "offset": 452, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 541736927 - }, - "m_damageReduceFlat": { - "type": "float", - "id": 20, - "offset": 456, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 684172469 - }, - "m_accuracyReducePercent": { - "type": "float", - "id": 21, - "offset": 460, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2112559723 - }, - "m_healBonusPercent": { - "type": "float", - "id": 22, - "offset": 464, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 562313577 - }, - "m_healIncBonusPercent": { - "type": "float", - "id": 23, - "offset": 468, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2182535587 - }, - "m_hitPointBonus": { - "type": "float", - "id": 24, - "offset": 496, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 880644461 - }, - "m_spellChargeBonus": { - "type": "float", - "id": 25, - "offset": 504, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2109811656 - }, - "m_powerPipBonusPercent": { - "type": "float", - "id": 26, - "offset": 472, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1671446341 - }, - "m_petActChance": { - "type": "int", - "id": 27, - "offset": 492, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 237418461 - }, - "m_manaBonus": { - "type": "float", - "id": 28, - "offset": 500, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1372708603 - }, - "m_statTableName": { - "type": "std::string", - "id": 29, - "offset": 360, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1616642912 - }, - "m_manaReducePercent": { - "type": "float", - "id": 30, - "offset": 568, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 348324221 - }, - "m_expPercent": { - "type": "float", - "id": 31, - "offset": 572, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1147850677 - }, - "m_goldPercent": { - "type": "float", - "id": 32, - "offset": 576, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1095720878 - }, - "m_energyBonus": { - "type": "float", - "id": 33, - "offset": 508, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2223158984 - }, - "m_criticalHitRating": { - "type": "float", - "id": 34, - "offset": 512, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1978690540 - }, - "m_blockRating": { - "type": "float", - "id": 35, - "offset": 516, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2088486759 - }, - "m_accuracyRating": { - "type": "float", - "id": 36, - "offset": 520, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 165525575 - }, - "m_powerPipRating": { - "type": "float", - "id": 37, - "offset": 524, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1355340722 - }, - "m_damageResistanceRating": { - "type": "float", - "id": 38, - "offset": 532, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1961377740 - }, - "m_archmastery": { - "type": "float", - "id": 39, - "offset": 536, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1963579610 - }, - "m_archmasteryBonusPercent": { - "type": "float", - "id": 40, - "offset": 588, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1908627154 - }, - "m_balanceMastery": { - "type": "int", - "id": 41, - "offset": 540, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 149062181 - }, - "m_deathMastery": { - "type": "int", - "id": 42, - "offset": 544, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1421218661 - }, - "m_fireMastery": { - "type": "int", - "id": 43, - "offset": 548, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1431794949 - }, - "m_iceMastery": { - "type": "int", - "id": 44, - "offset": 552, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 704864240 - }, - "m_lifeMastery": { - "type": "int", - "id": 45, - "offset": 556, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2142136447 - }, - "m_mythMastery": { - "type": "int", - "id": 46, - "offset": 560, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1766317185 - }, - "m_stormMastery": { - "type": "int", - "id": 47, - "offset": 564, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1883988244 - }, - "m_stunResistancePercent": { - "type": "float", - "id": 48, - "offset": 580, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1868382627 - }, - "m_fishingLuckBonusPercent": { - "type": "float", - "id": 49, - "offset": 480, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1363349254 - }, - "m_shadowPipBonusPercent": { - "type": "float", - "id": 50, - "offset": 476, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1426533310 - }, - "m_wispBonusPercent": { - "type": "float", - "id": 51, - "offset": 484, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1304386546 - }, - "m_pipConversionRating": { - "type": "float", - "id": 52, - "offset": 584, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 246855691 - }, - "m_shadowPipRating": { - "type": "float", - "id": 53, - "offset": 528, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 507126123 - } - } - }, - "252123478": { - "name": "class ExpansionBehavior", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 252123478, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_bankExpansions": { - "type": "int", - "id": 1, - "offset": 112, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1369075454 - }, - "m_friendListExpansions": { - "type": "int", - "id": 2, - "offset": 116, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1057398198 - } - } - }, - "1814845780": { - "name": "class WizStatisticEffectTemplate", - "bases": [ - "StatisticEffectTemplate", - "GameEffectTemplate", - "PropertyClass" - ], - "hash": 1814845780, - "properties": { - "m_effectName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2029161513 - }, - "m_effectCategory": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1852673222 - }, - "m_sortOrder": { - "type": "int", - "id": 2, - "offset": 148, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1411218206 - }, - "m_duration": { - "type": "double", - "id": 3, - "offset": 192, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2727932435 - }, - "m_stackingCategories": { - "type": "std::string", - "id": 4, - "offset": 160, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1774497525 - }, - "m_isPersistent": { - "type": "bool", - "id": 5, - "offset": 153, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 923861920 - }, - "m_bIsOnPet": { - "type": "bool", - "id": 6, - "offset": 154, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 522593303 - }, - "m_isPublic": { - "type": "bool", - "id": 7, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1728439822 - }, - "m_visualEffectAddName": { - "type": "std::string", - "id": 8, - "offset": 200, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3382086694 - }, - "m_visualEffectRemoveName": { - "type": "std::string", - "id": 9, - "offset": 232, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1541697323 - }, - "m_onAddFunctorName": { - "type": "std::string", - "id": 10, - "offset": 280, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1561843107 - }, - "m_onRemoveFunctorName": { - "type": "std::string", - "id": 11, - "offset": 312, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2559017864 - }, - "m_stackingRule": { - "type": "enum STACKING_RULE", - "id": 12, - "offset": 144, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 431568889, - "enum_options": { - "STACKING_ALLOWED": 0, - "STACKING_NOSTACK": 1, - "STACKING_REPLACE": 2 - } - }, - "m_buffAll": { - "type": "bool", - "id": 13, - "offset": 392, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1205044623 - }, - "m_school": { - "type": "std::string", - "id": 14, - "offset": 400, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2438566051 - }, - "m_damageBonusPercent": { - "type": "float", - "id": 15, - "offset": 440, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 623230606 - }, - "m_damageBonusFlat": { - "type": "float", - "id": 16, - "offset": 488, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2212039108 - }, - "m_accuracyBonusPercent": { - "type": "float", - "id": 17, - "offset": 444, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1972336538 - }, - "m_armorPiercingBonusPercent": { - "type": "float", - "id": 18, - "offset": 448, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1569912641 - }, - "m_damageReducePercent": { - "type": "float", - "id": 19, - "offset": 452, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 541736927 - }, - "m_damageReduceFlat": { - "type": "float", - "id": 20, - "offset": 456, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 684172469 - }, - "m_accuracyReducePercent": { - "type": "float", - "id": 21, - "offset": 460, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2112559723 - }, - "m_healBonusPercent": { - "type": "float", - "id": 22, - "offset": 464, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 562313577 - }, - "m_healIncBonusPercent": { - "type": "float", - "id": 23, - "offset": 468, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2182535587 - }, - "m_hitPointBonus": { - "type": "float", - "id": 24, - "offset": 496, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 880644461 - }, - "m_spellChargeBonus": { - "type": "float", - "id": 25, - "offset": 504, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2109811656 - }, - "m_powerPipBonusPercent": { - "type": "float", - "id": 26, - "offset": 472, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1671446341 - }, - "m_petActChance": { - "type": "int", - "id": 27, - "offset": 492, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 237418461 - }, - "m_manaBonus": { - "type": "float", - "id": 28, - "offset": 500, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1372708603 - }, - "m_statTableName": { - "type": "std::string", - "id": 29, - "offset": 360, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1616642912 - }, - "m_manaReducePercent": { - "type": "float", - "id": 30, - "offset": 568, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 348324221 - }, - "m_expPercent": { - "type": "float", - "id": 31, - "offset": 572, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1147850677 - }, - "m_goldPercent": { - "type": "float", - "id": 32, - "offset": 576, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1095720878 - }, - "m_energyBonus": { - "type": "float", - "id": 33, - "offset": 508, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2223158984 - }, - "m_criticalHitRating": { - "type": "float", - "id": 34, - "offset": 512, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1978690540 - }, - "m_blockRating": { - "type": "float", - "id": 35, - "offset": 516, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2088486759 - }, - "m_accuracyRating": { - "type": "float", - "id": 36, - "offset": 520, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 165525575 - }, - "m_powerPipRating": { - "type": "float", - "id": 37, - "offset": 524, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1355340722 - }, - "m_damageResistanceRating": { - "type": "float", - "id": 38, - "offset": 532, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1961377740 - }, - "m_archmastery": { - "type": "float", - "id": 39, - "offset": 536, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1963579610 - }, - "m_archmasteryBonusPercent": { - "type": "float", - "id": 40, - "offset": 588, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1908627154 - }, - "m_balanceMastery": { - "type": "int", - "id": 41, - "offset": 540, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 149062181 - }, - "m_deathMastery": { - "type": "int", - "id": 42, - "offset": 544, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1421218661 - }, - "m_fireMastery": { - "type": "int", - "id": 43, - "offset": 548, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1431794949 - }, - "m_iceMastery": { - "type": "int", - "id": 44, - "offset": 552, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 704864240 - }, - "m_lifeMastery": { - "type": "int", - "id": 45, - "offset": 556, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2142136447 - }, - "m_mythMastery": { - "type": "int", - "id": 46, - "offset": 560, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1766317185 - }, - "m_stormMastery": { - "type": "int", - "id": 47, - "offset": 564, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1883988244 - }, - "m_stunResistancePercent": { - "type": "float", - "id": 48, - "offset": 580, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1868382627 - }, - "m_fishingLuckBonusPercent": { - "type": "float", - "id": 49, - "offset": 480, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1363349254 - }, - "m_shadowPipBonusPercent": { - "type": "float", - "id": 50, - "offset": 476, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1426533310 - }, - "m_wispBonusPercent": { - "type": "float", - "id": 51, - "offset": 484, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1304386546 - }, - "m_pipConversionRating": { - "type": "float", - "id": 52, - "offset": 584, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 246855691 - }, - "m_shadowPipRating": { - "type": "float", - "id": 53, - "offset": 528, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 507126123 - } - } - }, - "1412412438": { - "name": "class AnnounceRoundCinematicAction", - "bases": [ - "CinematicAction", - "PropertyClass" - ], - "hash": 1412412438, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - } - } - }, - "1410565496": { - "name": "class ZoneTokenBoolean*", - "bases": [ - "ZoneTokenBase", - "PropertyClass" - ], - "hash": 1410565496, - "properties": { - "m_debugName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3553984419 - }, - "m_adjectiveList": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 3195213318 - }, - "m_icon": { - "type": "std::string", - "id": 2, - "offset": 120, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1717182340 - }, - "m_iconBW": { - "type": "std::string", - "id": 3, - "offset": 152, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2047461085 - }, - "m_description": { - "type": "std::string", - "id": 4, - "offset": 184, - "flags": 8388639, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1649374815 - }, - "m_displayMode": { - "type": "enum ZTDisplayMode", - "id": 5, - "offset": 216, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2216526410, - "enum_options": { - "ZTDM_Shown": 0, - "ZTDM_Discoverable": 1, - "ZTDM_Hidden": 2 - } - }, - "m_storage": { - "type": "enum ZTStorage", - "id": 6, - "offset": 220, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2290454852, - "enum_options": { - "ZTS_Player": 0, - "ZTS_Zone": 1 - } - }, - "m_onEnable": { - "type": "class SharedPointer", - "id": 7, - "offset": 224, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2591736864 - }, - "m_onDiscover": { - "type": "class SharedPointer", - "id": 8, - "offset": 240, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2826026872 - }, - "m_onDisable": { - "type": "class SharedPointer", - "id": 9, - "offset": 256, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1860656717 - }, - "m_sourceID": { - "type": "gid", - "id": 10, - "offset": 272, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1134700470 - }, - "m_inZone": { - "type": "bool", - "id": 11, - "offset": 280, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 564535654 - }, - "m_enabled": { - "type": "bool", - "id": 12, - "offset": 281, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 504506718 - }, - "m_discovered": { - "type": "bool", - "id": 13, - "offset": 282, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2060478331 - }, - "m_onSet": { - "type": "class SharedPointer", - "id": 14, - "offset": 288, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1964529317 - }, - "m_onClear": { - "type": "class SharedPointer", - "id": 15, - "offset": 304, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1655978208 - }, - "m_bSet": { - "type": "bool", - "id": 16, - "offset": 320, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 221694593 - } - } - }, - "1814984572": { - "name": "class SharedPointer", - "bases": [ - "CinematicStageTemplate", - "PropertyClass" - ], - "hash": 1814984572, - "properties": { - "m_name": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1717359772 - }, - "m_duration": { - "type": "float", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 920323453 - }, - "m_actions": { - "type": "class SharedPointer", - "id": 2, - "offset": 112, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1380578687 - }, - "m_stageRelationships": { - "type": "class SharedPointer", - "id": 3, - "offset": 128, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 499983354 - }, - "m_sound": { - "type": "std::string", - "id": 4, - "offset": 152, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2307644996 - } - } - }, - "252631777": { - "name": "class DeathParticleCinematicAction*", - "bases": [ - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 252631777, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - } - } - }, - "1410401656": { - "name": "class ZoneTokenBoolean", - "bases": [ - "ZoneTokenBase", - "PropertyClass" - ], - "hash": 1410401656, - "properties": { - "m_debugName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3553984419 - }, - "m_adjectiveList": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 3195213318 - }, - "m_icon": { - "type": "std::string", - "id": 2, - "offset": 120, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1717182340 - }, - "m_iconBW": { - "type": "std::string", - "id": 3, - "offset": 152, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2047461085 - }, - "m_description": { - "type": "std::string", - "id": 4, - "offset": 184, - "flags": 8388639, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1649374815 - }, - "m_displayMode": { - "type": "enum ZTDisplayMode", - "id": 5, - "offset": 216, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2216526410, - "enum_options": { - "ZTDM_Shown": 0, - "ZTDM_Discoverable": 1, - "ZTDM_Hidden": 2 - } - }, - "m_storage": { - "type": "enum ZTStorage", - "id": 6, - "offset": 220, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2290454852, - "enum_options": { - "ZTS_Player": 0, - "ZTS_Zone": 1 - } - }, - "m_onEnable": { - "type": "class SharedPointer", - "id": 7, - "offset": 224, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2591736864 - }, - "m_onDiscover": { - "type": "class SharedPointer", - "id": 8, - "offset": 240, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2826026872 - }, - "m_onDisable": { - "type": "class SharedPointer", - "id": 9, - "offset": 256, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1860656717 - }, - "m_sourceID": { - "type": "gid", - "id": 10, - "offset": 272, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1134700470 - }, - "m_inZone": { - "type": "bool", - "id": 11, - "offset": 280, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 564535654 - }, - "m_enabled": { - "type": "bool", - "id": 12, - "offset": 281, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 504506718 - }, - "m_discovered": { - "type": "bool", - "id": 13, - "offset": 282, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2060478331 - }, - "m_onSet": { - "type": "class SharedPointer", - "id": 14, - "offset": 288, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1964529317 - }, - "m_onClear": { - "type": "class SharedPointer", - "id": 15, - "offset": 304, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1655978208 - }, - "m_bSet": { - "type": "bool", - "id": 16, - "offset": 320, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 221694593 - } - } - }, - "1816211566": { - "name": "class SharedPointer", - "bases": [ - "Search::ResultItem", - "PropertyClass" - ], - "hash": 1816211566, - "properties": { - "m_userID": { - "type": "gid", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1037989700 - }, - "m_userName": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2213937019 - }, - "m_characterID": { - "type": "gid", - "id": 2, - "offset": 112, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 210498386 - }, - "m_characterName": { - "type": "std::wstring", - "id": 3, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2815013574 - }, - "m_zoneName": { - "type": "std::string", - "id": 4, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2171167736 - }, - "m_realmName": { - "type": "std::string", - "id": 5, - "offset": 184, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3507983949 - }, - "m_level": { - "type": "int", - "id": 6, - "offset": 216, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 801285362 - }, - "m_world": { - "type": "int", - "id": 7, - "offset": 232, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 814685730 - }, - "m_nameKey": { - "type": "unsigned int", - "id": 8, - "offset": 220, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1104764311 - }, - "m_gender": { - "type": "enum eGender", - "id": 9, - "offset": 224, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2121766730, - "enum_options": { - "Male": 1, - "Female": 0, - "Neutral": 2 - } - }, - "m_race": { - "type": "enum eRace", - "id": 10, - "offset": 228, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 390582957, - "enum_options": { - "Bat": 88066, - "BatLightning": 1472842576, - "Boar": 2624962, - "CatThug": 1855674386, - "ChristmasElf": 819908552, - "ChristmasSnowman": 1146515225, - "Colossus_Ice": 1063279538, - "Cyclops": 1691813655, - "DragonBeta": 417003588, - "DragonFriendly": 69049013, - "EvilSnowman": 1579630926, - "FireElf": 443793687, - "Firecat": 2045525741, - "Frog": 2274918, - "FrostBeetle": 7692383, - "GhostBlue": 1097396892, - "GhostGreen": 882822629, - "GhostRed": 560510742, - "GhostYellow": 909974358, - "Ghoul": 82556199, - "GoatMonk": 486215564, - "GolemBrass": 1057388325, - "GolemClockwork": 1143380031, - "GolemSteel": 1660583674, - "GolemWood": 1426849876, - "HalloweenCat": 1042869199, - "Heckhound": 626736403, - "Helephant": 719065368, - "Human": 79806088, - "Hydra": 70785800, - "Imp": 84361, - "Krokomummy": 555755242, - "Kroktut": 1352354178, - "Leprechaun": 2106466410, - "LeprechaunPattyDay": 380507781, - "LightningBat": 228257682, - "Mannequin": 428442544, - "Minotaur": 949570680, - "Mount_Broom": 94637995, - "Mount_Cat": 1150940211, - "Mount_Dragon": 1565720148, - "Mount_Horse": 2054712767, - "Mount_PlayerWings": 589829552, - "Nikkos": 1563122418, - "NinjaPig": 607400740, - "Orthus": 1552590225, - "Piggle": 1897753328, - "Piggle_Valentine": 687697592, - "Piggle_ValentinePart2": 1760391091, - "Pixie": 74836240, - "RatMagician": 885542120, - "SalamanderFire": 48480175, - "SalamanderIce": 2011152164, - "SalamanderStorm": 600331072, - "Satyr": 84793363, - "Scarab": 2143810477, - "Sheep": 86220083, - "SkeletonArmored": 1791586239, - "SnowSerpent": 138621543, - "Spider": 1603064269, - "SpiderBlack": 559353179, - "SpiderBrown": 557941675, - "SpiderCrystal": 2119625297, - "SpiderGolem": 1632616514, - "Sprite": 1889156557, - "SpriteDark": 1888685518, - "Stormzilla": 252684095, - "SunBird": 1602211198, - "Transformation_ArmoredSkeleton": 1861349834, - "Transformation_CatThug": 1175387611, - "Transformation_Cat_Bandit": 1012395694, - "Transformation_ClockworkGolem": 601121214, - "Transformation_Cyclops": 620156297, - "Transformation_DarkFairy": 1206757203, - "Transformation_DraconianSorcerer": 1212016810, - "Transformation_Draconian": 450730089, - "Transformation_EarthColossus": 140119452, - "Transformation_EvilSnowman": 1497097122, - "Transformation_FatGobbler": 634003800, - "Transformation_FireElemental": 822233230, - "Transformation_FireElf": 46585468, - "Transformation_FireSalamander": 2118418114, - "Transformation_Gobbler_Skinny": 162365207, - "Transformation_GolemSteel": 1329184184, - "Transformation_Ice_Colossus": 430406408, - "Transformation_Krokomummy": 1644615769, - "Transformation_MagmaMan": 545064542, - "Transformation_Mander": 88998828, - "Transformation_NinjaPig": 1029132174, - "Transformation_Ninja_Pig_04": 7093548, - "Transformation_RatThug": 1175352795, - "Transformation_RavenMystic": 1443197359, - "Transformation_StormElemental": 637088511, - "Transformation_Treant": 1874998327, - "Transformation_WarPig": 691088645, - "Transformation_WolfScout": 263523463, - "Transformation_WolfWarrior": 6092463, - "Transformationn_SkeletonPirate": 1821341863, - "Treant": 1396597132, - "Troll": 82261620, - "Unicorn": 550546918, - "Unknown": 718677478, - "Wolverine": 528843083, - "Wraith": 1788506505, - "Wyrmkin": 379044612, - "Transformation_CyrusDrake": 94277831, - "PetEgg": 1973167984, - "GhostLady": 493415959, - "Banshee": 827805677, - "GobblerRed": 250135875, - "Ghoul_Gravedigger": 161812468, - "SkeletonWarrior": 734585814, - "BansheeBoss": 806445565, - "Seraph": 1792950125, - "CrabKing": 277875784, - "UndeadCaster": 1680689397, - "DragonFrontier": 1829438301, - "HeckhoundGhost": 872406464, - "Mount_Unicorn": 212699468, - "Jellyfish": 910724608, - "SeaDragon": 1194541306, - "Turtle": 1897184620, - "Starfish": 1447562471, - "SpinyFish": 162948281, - "Mount_Gryphon": 2110522960, - "Mount_Shark": 1170186623, - "Mount_Manta": 979931598, - "Mount_Seahorse": 1554833818, - "Mount_Seahorse_Tough": 1245859453, - "Mount_Koi": 1150937409, - "Mount_Lobster": 2025618875, - "Mount_Turtle": 1490849128, - "VenusFlyTrap": 1612039757, - "GDN_MED_BabyCarrots": 327334743, - "GDN_SM_BoomShroom": 31324632, - "GDN_SM_Dandelion": 2058674142, - "GDN_SM_Disparagus": 1732989489, - "GDN_MED_EvilSnowPeas": 747408607, - "GDN_SM_FicklePickle": 205381955, - "GDN_SM_HappyHolidaisy": 1736236340, - "GDN_MED_HelephantEars": 1803669659, - "GDN_MED_HoneySickle": 424149132, - "GDN_LG_NinjaFig": 847338104, - "GDN_LG_SnapDragon": 1076151689, - "GDN_SM_StinkWeed": 845383431, - "GDN_MED_TrumpetVine": 1922690264, - "GDN_MED_VenusFlyTrap": 1560899638, - "GDN_SM_Laughodil": 1278979588, - "GDN_LG_BreadFruitBush": 533042934, - "GDN_MED_PricklyBearCactus": 1236846986, - "GDN_MED_KingParsley": 110148182, - "LeprechaunPatriotic": 414730890, - "SeraphYuletide": 1325846853, - "DragonGhost": 1502126893, - "UnicornNightmare": 604358256, - "EvilSnowmanSandman": 1579432150, - "Colossus_Spirit": 422514215, - "Rock": 2393554, - "GDN_MED_GivingTree": 2047236132, - "Egg": 70853, - "Mount_Carpets": 1602744888, - "Kraken": 1737191829, - "Wyvern": 1727802601, - "Phoenix": 1765559002, - "Judgement": 562901781, - "ForestLord": 1390734923, - "Humongofrog": 1272123051, - "Scarecrow": 41441599, - "Mount_Ram": 77196599, - "BasketSnake": 1835657086, - "Samoorai": 522797493, - "Transformation_RavenWarrior": 701169336, - "PhoenixStorm": 1325268802, - "PhoenixDeath": 1281634042, - "GDN_LG_CouchPotatoes": 879742725, - "GDN_MED_KeyLimes": 811516024, - "Mount_BoneDragon": 1023618313, - "Mount_BigBoneDragon": 1124383680, - "Mount_FairyWings": 1904926612, - "Mount_DragonWings": 755225925, - "Mount_Pegasus": 1621244140, - "GDN_MED_BellPepper": 1710238687, - "GDN_MED_GrapesOfWrath": 1068787103, - "GDN_SM_TigerLily": 1899057048, - "WysteriaPiggle": 49173891, - "Mount_Wyvern": 1658410744, - "Mount_2P_Rhino": 1052779475, - "NightHawk": 358964390, - "Giraffe": 935214826, - "Mount_Hawk": 2070898895, - "Mount_HalloweenNightmare": 726136378, - "GobblerHalloween": 1482399836, - "Leopard": 1606863715, - "Skink": 76950867, - "Mount_Ostrich": 466111322, - "Mount_Crocagator": 1981222087, - "Transformation_Blacktusk-01": 401543565, - "Mount_Hippogriff": 2043817624, - "Transformation_Gorilla-01": 1555853240, - "Transformation_Gorilla-02": 1606184888, - "Mount_Raven": 94983735, - "Mount_Chrismoose": 1822495199, - "Mount_CandyCane": 1148551147, - "Ivy_League": 925492799, - "GDN_MED_Ivy_League": 1630077794, - "Mount_Kirin": 1168691825, - "GDN_SM_Moonflower": 2068754330, - "GDN_MED_BoonTree": 788055729, - "Snowball": 2046118016, - "Foo_Dog": 1549710807, - "ShenlongDragon": 932676736, - "Monkey": 1233866291, - "Wolfhound": 626884686, - "Redcap": 1540319086, - "Raven": 79941650, - "HollowKnight": 1107268274, - "Book": 2405826, - "GDN_MED_AngoraBunnyEars": 1547559854, - "GDN_MED_FortuneCookieTree": 786686214, - "GDN_MED_GooseTree": 809354938, - "GDN_SM_HoneyBeePlant": 1528880373, - "GDN_MED_BambooShoots": 1096708900, - "GDN_SM_Huckleberries": 1937475840, - "Rock_Moustache": 962221287, - "Efreet_Myth": 1834555522, - "Efreet": 1401700123, - "Mammoth": 1395147745, - "Triton": 1730466188, - "Gnome": 74954215, - "BoneDragon": 429245206, - "Basilisk": 1457899086, - "Chimera": 529027789, - "Transformation_GammaTemplate": 1337834518, - "Mount_Camel": 1168198963, - "Mount_RenaissanceWings": 1049782088, - "Bull_Mount": 1713506759, - "Mount_Owl": 1150938242, - "Mount_Alphyn": 487264165, - "Mount_Stag": 1150353823, - "Mount_Auroch": 509865325, - "Mount_Warg": 1150358072, - "StrangeBeast": 511334734, - "Efreet_Ice": 1820009122, - "Efreet_Storm": 1269986674, - "GDN_LG_AlligatorPear": 1293913372, - "Mount_2P_Treant": 928450863, - "Mount_2P_Dragon": 1431637933, - "Mount_Pogo_Stick_WC": 1462849298, - "Mount_Pogo_Stick_MB": 1349603090, - "GDN_LG_MeltingCheese": 1914589015, - "GDN_SM_FishOnAVine": 1734955358, - "GDN_LG_AngelOak": 1539539424, - "GDN_LG_MeltingCheese_Angel": 1254781264, - "SnowyOwl": 1682262138, - "Mount_3P_Hydra": 1207475250, - "WeaselMinstrel": 1541234616, - "MOUNT_Rickshaw": 938282973, - "Transformation_Sherlock-Bones": 509126601, - "Mount_Phoenix": 556355452, - "Toaddle": 597488187, - "Pantera": 528797696, - "WildfireTreant": 673362041, - "StoneTiger": 746336665, - "Blowfish": 1447737334, - "Smith": 78327187, - "FlyingCat": 1254472614, - "RamWarrior": 536916302, - "Ladybug": 1846384669, - "BurlapBoy": 607590898, - "DeerKnight": 560802130, - "Gargoyle": 1227701700, - "Chameleon": 596131510, - "Scorpion": 1462253104, - "GDN_SM_BoiledPeanuts": 544885684, - "GDN_SM_ClockFlower": 676513046, - "GDN_SM_DeadBeets": 650783482, - "GDN_MED_SnowApple": 1916648180, - "Eyecaramba_Violet": 1804780775, - "Eyecaramba_Green": 750346574, - "Eyecaramba_Orange": 687614854, - "Piggle_Grandfather": 131445665, - "Velociraptor": 1042311818, - "Babydactyl": 1180982194, - "Stegosaurus": 476811765, - "Mount_Pegasus_Spectral": 948250730, - "Mount_2P_Scarydactyl": 1808983335, - "Mount_2P_TRex": 1495851852, - "Therizinosaurus": 80337863, - "Runtosaurus": 476200406, - "FrilledLizard": 420993517, - "Mount_Ankylosaurus": 669692274, - "Mount_Triceratops": 1126950204, - "Mount_2P_Glider": 1630365881, - "Transformation_Thunderhorn": 1045262037, - "Transformation_Jaguar": 1080966062, - "Transformation_Pteranadon": 273836142, - "Transformation_ShadowWeaver": 255927111, - "Transformation_EagleWarrior": 1880471875, - "Mount_Falalalallama": 389890123, - "Mount_2P_WinterTreant": 1850265056, - "GDN_LG_MissileToe": 1767792974, - "GDN_MED_PointSetta": 647257205, - "Nutcracker2012": 1598217699, - "Coal2012": 1627852119, - "Mount_Sleigh": 1636615519, - "Mount_Sabertooth": 1613031507, - "Mount_MechanicalWings": 1014917438, - "PiranhaHunter": 686271163, - "Quetzal": 2020925822, - "Mount_Sloth": 1169387359, - "HollowKnightLife": 2114081886, - "BettaFish": 138088968, - "MummyCat": 62372925, - "TrojanHorse": 1725299194, - "WC_Storm_Possessed": 186960228, - "AV_Possessed": 1106693085, - "AZ_Possessed": 1106692701, - "CL_Possessed": 1106692255, - "KT_Possessed": 1106693015, - "MS_Possessed": 1106692977, - "WC_Possessed": 1106692459, - "Mount_2P_Whale": 448824263, - "Mount_2P_Chariot": 88035298, - "Mount_WarBoar": 1159836211, - "Mount_Palanquin": 47587550, - "BearCub": 672664722, - "Transformation_Minotaur": 1454233452, - "DragonGauntlet": 797645257, - "DeathUnicorn": 924144161, - "Flamingo": 1488424911, - "Mount_Gorilla": 1939919432, - "Mount_WarUnicorn": 1361393198, - "GargoyleMyth": 1819685060, - "TikiMan": 16098567, - "Siren": 79937811, - "GoldenRam": 410220227, - "Harpy": 96026632, - "SwordShield": 1668411785, - "ClockworkKnight": 1059948980, - "Mount_MechanicalEagle": 1720948645, - "Mount_Cloud": 1166233435, - "Mount_Surfboard": 1914250039, - "Mount_BetaDragon": 1023653721, - "Mount_BeeWings": 1387988401, - "Vampire": 524731385, - "FrankenBunny": 589797989, - "BumbleBee": 249592226, - "Mount_Dragonfly": 1028843656, - "BronzeGolem": 1320867859, - "TarantulaHawk": 1983939429, - "Mount_Grasshopper": 1852850928, - "FlyingSquirrel": 847551166, - "GDN_MED_Sunion": 1652707634, - "GDN_MED_SwordFern": 548761438, - "GDN_SM_SugarKhrystal": 267539461, - "GDN_SM_SawPalmetto": 1892888046, - "GDN_LG_FacePalm": 2050814140, - "GDN_LG_QueenCrapeMyrtle": 80378450, - "Transformation_ShadowTank": 1304943609, - "Transformation_ShadowHeal": 1254024185, - "Transformation_ShadowDPS": 87276537, - "Mount_Noelephant": 1383672248, - "SaintBernard": 572932242, - "ParkaFox": 2009808189, - "Goose": 75019719, - "Mount_Coconut": 791151432, - "CreepyBeetle": 345594179, - "BabyDragonfly": 1367084335, - "FennecFox": 41315063, - "PP_Leviathan": 833901526, - "PP_SunSerpent": 1062677009, - "PP_LordOfWinter": 960214698, - "PP_Medusa": 867812931, - "PP_Dryad": 147654656, - "PP_AvengingFossil": 315904647, - "PP_Sabertooth": 1799146677, - "Mount_Butterfly": 1283940943, - "Mount_Hare": 2070851023, - "Transformation_MorganthB": 197306990, - "Transformation_MorganthC": 197831278, - "Transformation_MorganthD": 200452718, - "BabyPegasus": 1215000859, - "ArcaneHelp": 1899247549, - "Mount_Vines": 98389624, - "Mount_ArcaneMinecart": 2001270930, - "Hobgoblin": 2133668461, - "Mount_2P_Rowboat": 237071469, - "ForestSpirit": 1178454602, - "Mount_SpiritWolf": 531991076, - "Otter": 84138671, - "OrigamiBird": 550984083, - "DinoSkeletal": 233277835, - "Mount_HarrowingsGreen": 1605746772, - "Mount_HarrowingsBlue": 477152436, - "Mount_HarrowingsPurple": 2092807554, - "RedPanda": 1744233845, - "Ibis": 2665577, - "Corgi": 78823875, - "Mount_Yak": 996545739, - "Mount_FlyingBalance": 436519643, - "Transformation_ShadowMalistaire": 1043814435, - "Transformation_DragonMalistaire": 841867699, - "Mount_Scarab": 1687658791, - "Transformation_MisterHound": 1973578844, - "Mount_BahHumbug": 55114077, - "Skates": 1568993965, - "Moose": 75019725, - "Mount_Gargoyle": 1456663874, - "GDN_MED_VenusFlyTrapEpic": 1594069606, - "Mount_PlayerWingsPink": 19403046, - "GDN_LG_AlligatorPearEpic": 1326804812, - "Pet_Armadillo": 825736847, - "Mount_JoustingDestrierDyeable": 1683448768, - "GDN_MED_VampireCarrots": 871596496, - "GDN_SM_WhiteTigerLilyEpic": 1703271434, - "GDN_LG_NinjaFigEpic": 938504823, - "GDN_LG_SnapDragonEpic": 2071674466, - "GDN_MED_HelephantEarsEpic": 719166107, - "GDN_MED_TrumpetVineEpic": 225854518, - "GDN_SM_DandelionEpic": 728637442, - "GDN_SM_HuckleberriesEpic": 1903258448, - "GDN_MED_SnowAppleEpic": 1231175967, - "GDN_SM_BoomShroomEpic": 981598771, - "GDN_MED_KingParsleyEpic": 2038371004, - "Mount_Raptor": 749695031, - "Pet_Toucan": 581477475, - "Pet_Squirrel": 969881395, - "Mount_WonkyDonkey": 1481657312, - "Mount_HawkPatriotic": 509149743, - "Pet_FrogAssistant": 1945041750, - "Mount_Cat2": 1151054899, - "Mount_Cat2BW": 1603515443, - "Pet_ArmadilloBW": 825733899, - "Pet_FrankieForearms": 1100195857, - "Mount_SolarSabre": 1281093703, - "MNT_MechOstrich": 258667969, - "MNT_BootsBalance": 1799191558, - "MNT_BootsDeath": 1034912971, - "MNT_BootsFire": 606061658, - "MNT_BootsIce": 2142643294, - "MNT_BootsLife": 773751898, - "MNT_BootsMyth": 144792486, - "MNT_BootsStorm": 1525245121, - "Pet_CorgiBirthday": 1951779369, - "OrigamiBirdBDay": 1909935955, - "Pet_FlyingBlackCat": 432111988, - "Mount_Narwhal": 449637834, - "Mount_NightOwl": 1648420845, - "Pet_Penguin": 137342907, - "MNT_PowerGemUnicorn": 411234062, - "Pet_CrystalButterfly": 512136094, - "Mount_BabyMammoth": 185831059, - "MNT_BabaYaga": 564874997, - "Pet_BabySeal": 657606984, - "Pet_BabyYeti": 635847496, - "Transformation_BallerinaBear": 1525333600, - "Mount_StagYuletide": 1508680687, - "Transformation_TitanMedium": 1700742736, - "Transformation_TitanLarge": 718614967, - "Pet_SirenIce": 849851564, - "Mount_FlyingDeath": 1717725588, - "Mount_FlyingFire": 1177216332, - "Mount_FlyingIce": 1238841184, - "Mount_FlyingLife": 433397684, - "Mount_FlyingMyth": 164983572, - "Mount_FlyingStorm": 375872049, - "Dragonling": 1730534849, - "Pet_EggChicken": 952873217, - "HeckhoundGhost_MAW": 893368960, - "Mount_WinterTrain": 751515281, - "Mount_RubberDucky": 1826548479, - "Pet_BansheeSpellwrit": 917979583, - "Pet_SamooraiSpellwrit": 370057597, - "Mount_UnicornAstral": 886914505, - "Guest_Boochbeard": 1958574095, - "Pet_MouseSister": 1267930350, - "Pet_MouseFather": 2010008339, - "Pet_VampireSquirrel": 250588691, - "Mount_CoffinCar": 1387606595, - "Mount_BabyElephant": 2026559639, - "Pet_RoadHog": 601156960, - "Mount_WolfGryphonWings": 543038283, - "MNT_ClockworkSteed": 891371132, - "Mount_Chopper": 1196683136, - "Pet_ButterflyLamb": 527214392, - "Pet_MouseMother": 2012687123, - "Pet_MouseBrother": 1174380856, - "Pet_Cherub": 769208559, - "GDN_SM_Jewel": 1104045832, - "MR_Death_Duncan_Grimwater": 1850289001, - "Mount_DesertRunner": 2049036229, - "Pet_MonkeyMirage": 418612892, - "Pet_ClockworkOwl": 1038482431, - "Pet_NinjaTurtle": 2024540686, - "Mount_Vines_Halloween": 82852149, - "Mount_SwarmBat": 1151836459, - "Mount_2P_NinjaDragon": 1239694057, - "Mount_Gobler": 1820615236, - "Mount_MaryleboneCar": 2027689685, - "JackOLantern": 1016361578, - "Transformation_DjinnCommonA_Balance": 996127128, - "Transformation_MedicineMode": 25960701, - "CactusHopper": 1956293007, - "Transformation_Mimic_ChestGold_A": 414145432, - "Mount_Ghoulture": 1067671195, - "Pet_Macaw": 1087278472, - "Pet_SandWorm": 653200803, - "Transformation_DromelDancer": 1071824116, - "Pet_Bunnies": 695874547, - "Mount_Snowboard": 1914380015, - "Transformation_DrommelDancer": 226294468, - "Mount_Carpet_New": 1618650322, - "Mount_BunnySleigh": 599915427, - "Helephant_Heart": 419161272, - "Mount_Snowboard_Holiday": 876339060, - "Transformation_GhostDog": 646575420, - "Transformation_PrinceGobblestone": 693826496, - "Transformation_Mithraya": 1240010601, - "Transformation_LuskaCharmbeak": 897469730, - "Transformation_YoungCyrusDrake": 15595663, - "Kookaburra": 1069759154, - "BorealisGolemPet": 797488492, - "FlyingEyePet": 505959833, - "StormCloudPet": 548463069, - "BullPet": 1993917801, - "OpossumPet": 284003652, - "GhoulturePet": 939920734, - "StormCloudPetB": 548463001, - "StormCloudPetC": 548463003, - "Guest_LordNightshade": 1221409981, - "BullPetB": 1993917561, - "BullPetC": 1993917553, - "BullPetD": 1993917513, - "Transformation_ShadowCrit": 1392195065, - "Mount_Pennyfarthing": 1551926344, - "Mount_RowboatPirate": 2079208803, - "Mount_IceCube": 1261861595, - "Guest_LostMaiden": 883675592, - "Guest_BoatswainMcGee": 1359750850, - "Guest_ChiefMateMcGurk": 329643845, - "Guest_DoomedBones": 2015643882, - "Guest_SpectreoftheBrocken": 266357448, - "Guest_DrownedKnight": 1100966093, - "Guest_TarntheDrowned": 329540205, - "Guest_DisloyalKnight": 1853240753, - "Guest_NamelessKnight": 1065677876, - "Guest_LambentFire": 489886605, - "Guest_LordoftheBrocken": 1662003371, - "Guest_StormCaiman": 1147500291, - "Guest_GrinningDeathMoon": 737595789, - "Guest_MoonSkullWight": 1720039490, - "Guest_HuemacSpearWreath": 1522021131, - "Guest_HowlingBanshee": 1340855338, - "Guest_Sea-Booter": 1818491983, - "Guest_DeadRover": 1009273257, - "Guest_CelestianRemnant": 1312268448, - "Guest_Shadow-WebConscript": 1500529411, - "Guest_Shadow-WebMercenary": 623672171, - "Guest_Shadow-WebWraith": 810956416, - "Guest_Shadow-WebHaunt": 500586883, - "Guest_CelestianPartisan": 633346892, - "Guest_CelestianDefender": 482102727, - "Guest_ThraleBonestriker": 1172972733, - "Guest_VorgenSoulbreaker": 1935693246, - "Guest_ServusBloodsword": 1703995647, - "Guest_QueenCalypso": 845803519, - "Guest_BlueBart": 77043390, - "Guest_KarolakNightspinner": 1008737316, - "Guest_ArachtusDuskweb": 1787750209, - "Guest_ZhalarStarcloud": 1453644105, - "Guest_NarallorNightborn": 1963363700, - "Guest_SelwynSkywatcher": 1413136893, - "Guest_OsseusNightreaver": 306827003, - "Guest_IrateBanshee": 865143109, - "Guest_FuriousHowler": 1607252558, - "Guest_CryingSpirit": 1559074820, - "Guest_UndeadDraconian": 169249571, - "Guest_ReanimatedDraconian": 247067807, - "Guest_GhastlySlave": 80127661, - "Guest_BoundSpecter": 369706568, - "Guest_NecroticHaunter": 1714841563, - "Guest_LoathsomeCreeper": 1087245229, - "Guest_FleshrotRetriever": 1925148031, - "Guest_BarbarianSpirit": 2112552732, - "Guest_BeghastionCrowcaller": 586628832, - "Guest_BeghastionFieldburner": 1650751959, - "Guest_BoneWarrior": 76802026, - "Guest_FleshlessSentry": 708431820, - "Guest_PirateRavager": 945157059, - "Guest_RottenScallywag": 974666855, - "Guest_ArmoredBonewalker": 1444568072, - "Guest_UndeadWizard": 1622435563, - "Guest_SoulSearcher": 2094392941, - "Guest_DecayingBlackguard": 412324062, - "Guest_FoulReaper": 919877614, - "Guest_NightShadow": 1675932226, - "Guest_MotleyCrew": 653779218, - "Guest_OrinGrimcaster": 472649066, - "Guest_GhostofSylviaDrake": 218332449, - "Guest_VikaMarkmaker": 1145181168, - "Guest_VasekAshweaver": 1001434369, - "Guest_FireWraith": 1027720368, - "Guest_HungrySoul": 1722435576, - "Guest_FrostBones": 456145606, - "Guest_SnowSkull": 835837850, - "Guest_WinterSkull": 1556601065, - "Guest_LothinDoombringer": 860995070, - "Guest_MimirWinterbane": 1111898070, - "Guest_KulgrimSoulsunder": 278037985, - "Guest_HitojiniDeathcaster": 1144499043, - "Guest_GaikotsuSkeleton": 1113949902, - "Guest_PhantomAce": 1917639347, - "Guest_PhantomGlider": 849918336, - "Guest_Krokomummy": 857773886, - "Guest_NiriniAncientGuard": 359313880, - "Guest_NiriniFireSpirit": 1863811476, - "Guest_VaultHaunter": 197723476, - "Guest_VigilantDefender": 171276829, - "Guest_WanderingAhnicSpirit": 1702865088, - "Guest_ForgottenDjeseritSoul": 1170568256, - "Guest_KaranahnDeathfeeder": 1612857711, - "Guest_ShamblingAhnic": 1579129677, - "Guest_RisenDjeserit": 287855500, - "Guest_KaranahnMortifier": 874288111, - "Guest_DjeseritDweller": 2058423665, - "Guest_AhnicStrider": 1776992302, - "Guest_GuardianoftheFang": 1816795524, - "Guest_DefenderoftheFang": 354353604, - "Guest_ProtectoroftheFang": 1290191037, - "Guest_SouloftheCharmed": 422890577, - "Guest_KaranahnKeeper": 77581557, - "Guest_NiriniIntimidator": 677205957, - "Guest_CondemnedSoldier": 449152244, - "Guest_NimahtheWicked": 1298248873, - "Guest_AkoriNirini": 1123159753, - "Guest_SoulScavenger": 892852198, - "Guest_KeeperoftheFang": 1676773499, - "Guest_ItennuSokkwi": 699159408, - "Guest_Tempestra": 334938435, - "Guest_QueenIrisiDjeserit": 1861434100, - "Guest_TheBonekeeper": 1302503449, - "Guest_CryptScavenger": 1893795791, - "Guest_Soulsapper": 1699756010, - "Guest_KingUroAhnic": 1788825731, - "Guest_KingShemetDjeserit": 1350067043, - "Guest_UnholyWraith": 1871146013, - "Guest_PikeSpiritcrusher": 498715531, - "Guest_SpellwritScreamer": 801626733, - "Guest_SpellwritRonin": 1671439174, - "Guest_Shrieker": 805966229, - "Guest_GravePhantom": 731622936, - "Guest_NightmareSpirit": 230709057, - "Guest_VengefulCreeper": 1100197884, - "Guest_TombRoamer": 1277825068, - "Guest_ShieldSkeleton": 1634270152, - "Guest_AgonyWraith": 30384496, - "Guest_IcyGhost": 768353592, - "Guest_Half-wittedSkeleton": 647996362, - "Guest_LazyHenchman": 1329554426, - "Guest_TiredFighter": 210248632, - "Guest_Screecher": 469007005, - "Guest_SeethingWraith": 664913100, - "Guest_ColdConfusion": 1304943934, - "Guest_OssuaryConscript": 1017667150, - "Guest_Ghulture": 1330558655, - "Guest_BodyGuard": 1048581801, - "Guest_SpectralGuardian": 422805602, - "Guest_VaultConscript": 1388398065, - "Guest_FootPatrol": 1692393321, - "Guest_ArmedGuard": 2045920536, - "Guest_Chilly": 1764665905, - "Guest_Achey": 973370519, - "Guest_Sneezy": 1769440773, - "Guest_Cough": 1170200073, - "Guest_Shadowbones": 1316133167, - "Guest_ForgottenConscript": 1466348281, - "Guest_BarracksGuardian": 236603440, - "Guest_CryptConscript": 314755436, - "Guest_DurvishSeeker": 1825622267, - "Guest_MedicineMode": 167015574, - "Guest_Myriarch2": 593881680, - "Guest_Myriarch3": 593881616, - "Guest_MyriarchEphialtes": 773531895, - "Guest_MotherGhulture": 1585201915, - "Guest_CaptainCosrow": 727107332, - "Guest_VizierRafaj": 214040637, - "Guest_DarkmoorSerf": 1522169114, - "Guest_DarkmoorSquire": 1822567109, - "Guest_ScarletWampyr": 1683954247, - "Guest_DraconianRevenant": 741497298, - "Guest_DraconianEidolon": 107733297, - "Guest_AnguishedWraith": 1078602022, - "Guest_DraconianPyromancer": 729577007, - "Guest_DraconianThaumaturge": 189734361, - "Guest_DraconianDiviner": 472633746, - "Guest_DraconianConjurer": 1824962835, - "Guest_DraconianTheurgist": 1828628416, - "Guest_DraconianNecromancer": 175364324, - "Guest_DraconianSorcerer": 1262893339, - "Guest_SirBlackwater": 366308464, - "Guest_AkhtangWormCrawl": 1589032404, - "Guest_SpiritofDarkmoor": 579455915, - "Guest_ShanevonShane": 2096517522, - "Guest_YevgenyNightCreeper": 1535282881, - "Guest_MalistairetheUndying": 824508513, - "Guest_Bunferatu": 1015806005, - "Guest_CountBelaBlackSleep": 761647679, - "Guest_DeathSoldier": 1715141574, - "Guest_SorrowWhisperer": 556532003, - "Guest_GriefSpectre": 1425488559, - "Guest_HowlingShade": 631460247, - "Guest_WalkingDead": 318527090, - "Guest_Akuji": 977635799, - "Guest_TorturedKakedaSoul": 1716874833, - "Guest_KakedaSpiritSlave": 1814699344, - "Guest_DishonoredSamoorai": 320085744, - "Guest_CursedRonin": 1204095686, - "Guest_TomugawatheEvil": 166125424, - "Guest_OyotomitheDefiler": 1672714483, - "Guest_Fushiko": 801492770, - "Guest_BrokenLandGuardian": 294671991, - "Guest_ShatteredSkyGuardian": 746681463, - "Guest_SunderedSeamGuardian": 1439618652, - "Guest_BrokenLandSpirit": 860105895, - "Guest_ShatteredSkySpirit": 2104112380, - "Guest_SunderedSeamSpirit": 69572311, - "Guest_LostSoul": 204361577, - "Guest_RottingFodder": 308249734, - "Guest_HauntedMinion": 689597338, - "Guest_FieldGuard": 1175228991, - "Guest_SkeletalWarrior": 778393993, - "Guest_SkeletalPirate": 1476730220, - "Guest_WanderingSpecter": 126188449, - "Guest_LivingScarecrow": 1442943145, - "Guest_FrostPhantom": 1809776664, - "Guest_FireShrieker": 173332719, - "Guest_CryptCrawler": 2118799272, - "Guest_ViridianSpecter": 383149977, - "Guest_ArgentClatterer": 525414714, - "Guest_SwimmingSpecter": 1494025094, - "Guest_ScarletScreamer": 1689589811, - "Guest_BoneDigger": 1351421123, - "Guest_HowlingGhost": 664019391, - "Guest_SkeletalSoldier": 750463116, - "Guest_MaidenofHate": 444442868, - "Guest_SkeletalRetainer": 1409032775, - "Guest_SoulHunter": 1900267551, - "Guest_MidnightShuffler": 1991052065, - "Guest_PlaguedSoul": 419071561, - "Guest_HauntingBanshee": 345837052, - "Guest_SimontheSayer": 1352807820, - "Guest_TheHarvestLord": 1923575206, - "Guest_LadyBlackhope": 1403431623, - "Guest_SergeantSkullsplitter": 898737831, - "Guest_Foulgaze": 2063419769, - "Guest_Wormguts": 788697519, - "Guest_Rattlebones": 125602919, - "Guest_Paulson": 1112716921, - "Guest_Grubb": 1167554274, - "Guest_Norton": 581021964, - "Guest_NightStalker": 1447653309, - "Guest_AddereTimeo": 1491420030, - "Guest_TheReaper": 1526369733, - "Guest_AngrusHollowsoul": 1427862805, - "Guest_OrrickNightglider": 951078615, - "Guest_SteelSentinel": 885250894, - "Guest_Shadow-WebSoldier": 2014925398, - "Guest_LostCeleste": 1725301830, - "Guest_CapnNigelSkullcrack": 1665439970, - "Guest_HaulAwayJoe": 1075985331, - "Guest_OldMaui": 15300840, - "Guest_LordAgue": 140791419, - "Guest_MelweenaSmite": 432188189, - "Guest_HalloweenTrickster": 2043736417, - "Guest_PumpkinHead": 1098332105, - "Guest_BaronMordecai": 817370918, - "Guest_KaimaniteMummy": 1332671420, - "Guest_VeggieRevanant": 928504192, - "Guest_BloodBat": 76467389, - "Guest_DeadBeets": 157829578, - "Guest_Desparagus": 1130644076, - "Guest_MeanestFly-Trap": 1652898868, - "Guest_Nosferabbit": 1021159436, - "Guest_ThrallofSothmekhet": 330780177, - "Guest_VileApparition": 426627869, - "Guest_SoulServant": 1183110886, - "Guest_SoulKeeper": 917518313, - "Guest_AdmiralBontau": 2032168402, - "Guest_DeathWhisperer": 3814952, - "Mount_RollerBlades": 111369373, - "Guest_BaneWyrm": 147033576, - "Guest_BlackDragon": 939469656, - "Guest_DragonSpawn": 1829803517, - "Guest_Fire-SpitterSpawn": 616624489, - "Guest_CaoranachtheFire-Spitter": 323513000, - "Guest_Jabberwock": 1552492834, - "Guest_CatalantheLightningLizard": 1155778705, - "Guest_WhiteDragon": 2009449331, - "Guest_WinterWyrm": 478925069, - "Guest_WyrmStatue": 2119216210, - "Guest_AlgidWyrm": 1309546482, - "Guest_BruleeSucre": 390936202, - "Guest_HebitohoWyrmling": 1682026810, - "Guest_Shadowwock": 505539184, - "Guest_EirikurAxebreaker": 1361453552, - "Guest_WarWyrm": 1124740742, - "Guest_StrayFireflier": 610979811, - "Guest_BurningFlamewing": 2041225130, - "Guest_FeralLavaling": 371483057, - "Guest_SplinterWing": 923421333, - "Guest_ChanticoBlueAir": 1572441903, - "Guest_CopperWingGuard": 302783602, - "Guest_ObsidianBeak": 2016227452, - "Guest_CaquixNineShadows": 2070101060, - "Guest_LustrousTlalocan": 1201030473, - "Guest_SeedThief": 263211181, - "Guest_PopZotzUnluckyDay": 1416773489, - "Guest_NezathePoet": 1905861376, - "Guest_MazenStingerBee": 1642023393, - "Guest_ImperialJusticePayne": 1285679745, - "Guest_AssistantWardenPorfiry": 22099059, - "Guest_MarshalKamensky": 524669730, - "Guest_WardenVissarovich": 882556823, - "Guest_GulagGuard": 100744159, - "Guest_CaptainKravchuck": 690830770, - "Guest_ImperialGuard": 346803640, - "Guest_IronPaw": 1797329688, - "Guest_TundarianEnforcer": 134256836, - "Guest_Ivan": 996220221, - "Guest_ColonelOrlov": 1381254189, - "Guest_IronPawIntakeCaptain": 2099184835, - "Guest_SolitaryWarden": 1503529566, - "Guest_CaptainZubkov": 793725366, - "Guest_SergeantBobrik": 722182485, - "Guest_WailingWraith": 946976407, - "EggChick": 1452316301, - "BunnyMallow": 518233330, - "Guest_ThunderHornZombie": 1007920040, - "Guest_SmokingMirrorZombie": 340971759, - "Guest_ShamblingZombie": 1920485146, - "Guest_MoonSkullZombie": 809249764, - "Guest_DeathlessStormHorn": 812397213, - "Guest_MozarTurtleHunter": 561749043, - "Guest_GuillermoShatterer": 499565054, - "Guest_XiuhcoatlBarbedTooth": 1719245305, - "Guest_AzcalFireAnt": 1281366337, - "Guest_TlotzinMoonThief": 407285761, - "Guest_PocaCruelStar": 1117353085, - "Guest_ThunderHornGhoul": 597878999, - "Guest_TezomocStoneSinger": 733511940, - "Guest_EzhuaBadTaste": 632779219, - "Guest_UacalxochitlBloodEye": 1614856226, - "Guest_WanadiBlackSky": 349829749, - "Guest_ElMarrow": 483880636, - "Guest_GrimCalaca": 1534029144, - "Guest_XipeFlayedOne": 1343577398, - "Guest_MotecumaDeathMask": 1782393717, - "Guest_EkeChuah": 13416770, - "Guest_AnacaonaBlackSnake": 1543344897, - "Guest_SmokingMirrorWight": 776452983, - "Guest_Tolkemec": 217428080, - "Mount_Fox": 77199428, - "PP_OwlProtege": 268847192, - "Mount_SharkSki": 331374103, - "PP_Dolphin": 1662291612, - "Mount_CastSymbol_D": 1134428045, - "Mount_CastSymbol_E": 1136525197, - "Mount_CastSymbol_F": 1138622349, - "Mount_CastSymbol_G": 1140719501, - "Mount_CastSymbol_A": 1128136589, - "Mount_CastSymbol_B": 1130233741, - "Mount_CastSymbol_C": 1132330893, - "Guest_LionSpectralGuardian": 1791543691, - "Guest_KillmareSpiritwalker": 1818928165, - "Guest_ZebraSpectralGuardian": 815933596, - "Guest_GorillaSpectralGuardian": 1635182119, - "Guest_IklawGhostWarrior": 373465545, - "Guest_BwanaShadowriver": 1307628747, - "Guest_ElephantSpectralGuardian": 1579402208, - "Guest_ZangaZebu": 1218173119, - "Guest_GrumishGreataxe": 486953385, - "PP_GlowFairy_A": 2028856748, - "Guest_RestlessSoldier": 1142701763, - "Guest_WanderingWizard": 209518514, - "Guest_ColonelIvanenko": 399169035, - "Guest_DetollitheDestroyer": 655767295, - "Guest_Jawniak": 1791298433, - "Guest_Tajniak": 356182394, - "Guest_Ygor": 996316081, - "Guest_KyaniteLancer": 2136703656, - "Guest_VestaShadowmark": 1846747836, - "Guest_ZoraSteelwielder": 1186470644, - "Guest_AndorBristleback": 1949884743, - "Guest_GalliumPaladin": 1812340868, - "Guest_GalliumFootman": 1295203112, - "Guest_GalliumShardtrooper": 1210699836, - "Guest_GalliumJuggernaut": 3527584, - "Guest_VladimirDarkflame": 1575322237, - "Guest_KyaniteLieutenant": 561528977, - "Guest_DrusillaMorningbane": 155837810, - "Guest_KyaniteValkyrie": 53242136, - "Transformation_20Q_SherlockBones": 1112674320, - "Guest_DevoraShadowcrown": 1813459117, - "Guest_YoualaNightDrinker": 881289828, - "Guest_Pendragon": 715669945, - "Guest_CelestianRevenant": 515730327, - "Guest_SoullessServant": 1505662730, - "Guest_SpiritServant": 104517373, - "Guest_SoulSerf": 1188214406, - "Guest_ServileSoul": 871844607, - "Guest_SkeletalCorsair": 239414410, - "Guest_RottedFodder": 1301186193, - "Guest_ScarletScreecher": 600457915, - "PP_FrankBunnyBride_A": 974707030, - "Guest_BastillaGravewynd": 2100015237, - "Guest_VilaraMoonwraith": 2067986693, - "Guest_YngvarSharptooth": 1783361972, - "Guest_TroubledWarrior": 1569033392, - "Guest_VeggieRevanant2": 928503904, - "Guest_VeggieRevanant3": 928503888, - "Guest_VeggieRevanant4": 928503872, - "Guest_VeggieRevanant5": 928503856, - "Guest_AncientQhatWarrior": 1564521104, - "Guest_EmperorPaleolo": 2079384347, - "Guest_SpiritofIntolerance": 1627658048, - "Guest_SpiritofInquiry": 1320544891, - "Guest_FirstGuardian": 1982227776, - "Guest_FallenMerc": 225926286, - "Guest_NightShadow2": 1638183490, - "Guest_NightShadow3": 1636086338, - "Guest_NightShadow2-2": 1436856907, - "Guest_NightShadow3-2": 1434759755, - "Guest_NightShadow4-2": 1432662603, - "Guest_NightShadow5-2": 1430565451, - "Guest_NightShadow6-2": 1428468299, - "Guest_NightShadow7-2": 1426371147, - "Guest_FirstScythe": 738854032, - "Guest_GreyMantisCaptain": 860186057, - "Guest_GreyMantisHunter": 1239274377, - "Guest_Atlach-Leng": 836136649, - "Guest_PetrovGloomstrider": 2045783873, - "Guest_NauyotolDownIntheHole": 1134251106, - "Guest_SandorSpearcaller": 1351072377, - "Guest_MavraFlamewing": 1477685600, - "Guest_Scaldling": 208751819, - "Guest_WoebegoneWraith": 1166488705, - "Guest_BorisBlackrock": 1365399915, - "Guest_KatiaFirewinter": 521255834, - "Guest_ValerikBrightsword": 1244055782, - "Guest_RurikFlamesoul": 1962726850, - "Guest_IonaPyrelance": 722266491, - "Guest_DarkPoltergeist": 818162178, - "Guest_TheCollector": 1772287612, - "Guest_ViktorSnowcrusher": 1028387381, - "Guest_ValeskaRedwind": 19316351, - "Guest_ScarrikGallowgaunt": 105397333, - "Guest_Neberyx": 1453883041, - "Guest_AsrikWidebelt": 401936422, - "Guest_GothricHonorbound": 750072340, - "Guest_HalfangBristlecrown": 618779562, - "Guest_OsvudFleetpaw": 1023466459, - "PP_PufferFish_A": 1578606029, - "Guest_OzelUnderwaterCat": 1033669302, - "PP_BabyGreenMan_A": 910025246, - "PP_SchoolTurtle_A": 1012620678, - "PP_DarkBalloon_A": 1229308566, - "MT_JetsamCopter": 92127678, - "Mount_4P_DarkClownCar": 420246262, - "MNT_BalloonsBunch": 2000358474, - "Guest_TempleGuardian": 632574316, - "Guest_TemplePhantom": 1701097840, - "Guest_MahonStarsearcher": 1549093341, - "Guest_LostKnight": 858980994, - "Guest_AnguishedWoodman": 174606918, - "Guest_TormentedTreant": 294050331, - "Guest_WildfireTreant": 1902129818, - "Guest_BlightedYaxche": 679097088, - "Guest_Junglethorn": 1734561424, - "Guest_Tangleroot": 2027061721, - "Guest_BlightedFreerooter": 1109803061, - "Guest_Winterbranch": 1170787806, - "Guest_DecayingBogwalker": 1338670789, - "Guest_BrownwoodTormentor": 1655181754, - "Guest_Wildroot": 1839747182, - "Guest_Ironsplinter": 668295157, - "Guest_Frostbranch": 75974631, - "Guest_KyoukonteiTreant": 474446232, - "Guest_BrokenStumps": 414724364, - "Guest_WordlessWoodsmen": 1813881830, - "Guest_DesiccatedTreebeard": 1826942903, - "Guest_ShadowoftheLand": 1612385317, - "Guest_TreeRoot": 1406633546, - "Guest_BefouledWoodwalker": 1517919498, - "Guest_ConfusedForestWarrior": 750805985, - "Guest_CrazedForestSpirit": 1007960507, - "Guest_Oakheart": 1158293719, - "Guest_SnowTreant": 1028620035, - "Guest_Snowbeard": 1997921701, - "Guest_BarkskinTreant": 2143957812, - "Guest_RazorleafTreant": 2133159197, - "Guest_CarrionFlowerMan": 1120698936, - "Guest_Kurokage": 355651925, - "Guest_LacombeStrawHouse": 568809873, - "Guest_BerkshireStickHouse": 1932133405, - "Guest_TamworthBrickHouse": 894027634, - "Guest_RustyTinderSpark": 1237916230, - "Guest_CoraWinterBranch": 1901918989, - "Guest_GrambleGoldRook": 1986988546, - "Guest_PiperStormTree": 1109520133, - "Guest_Hanadzura": 124838500, - "Guest_Kuchisaki": 2084188681, - "Guest_Kaizoku": 807430784, - "Guest_JaxonLastRites": 1653711119, - "Guest_SeijunKiller": 657647155, - "Guest_ZarichiTarakata": 1129212566, - "Guest_BladelessRonin": 1577395797, - "Guest_SanzokuOutlaw": 1682888807, - "Guest_SanzokuBandit": 1766198653, - "Guest_KakedaPainbringer": 1260119278, - "Guest_KakedaStalker": 367458449, - "Guest_KakedaShadow": 1604499626, - "Guest_KakedaSoulcrusher": 1961168112, - "Guest_ImitsuPlaguemaster": 1361539025, - "Guest_ImitsuDefouler": 1299791045, - "Guest_ImitsuPunisher": 234819300, - "Guest_StudentofKhai": 249757647, - "Guest_OtomoBattlemage": 918160114, - "Guest_OtomoCourier": 1373253378, - "Guest_OtomoSupplyRunner": 1580070577, - "Guest_OtomoScout": 1814051082, - "Guest_OtomoWrestler": 1053571230, - "Guest_OtomoFury": 111319603, - "Guest_Hyottoko": 307080225, - "Guest_Usunoki": 1881339626, - "Guest_Kagemoosha": 1842766119, - "Guest_UdoJin-e": 850816224, - "Guest_TakedaKanryu": 536087422, - "Guest_Tamauji": 818613882, - "Guest_Jikiru": 794167355, - "Guest_Nomoonaga": 849534658, - "Guest_Aiuchi": 515942855, - "Guest_Kurogaso": 1426248002, - "Guest_Ideyoshi": 1814038213, - "Guest_Koto": 1151260427, - "Guest_Usegi": 977549586, - "Guest_Kanago": 1644367227, - "Guest_Kyuto": 1168225979, - "Guest_Haru": 2070048389, - "Guest_Ashikata": 1523446928, - "Guest_Katsumori": 1823914597, - "Guest_Hingen": 1567896261, - "Guest_Yakedo": 502298497, - "Guest_Do-Daga": 1239945714, - "Guest_Maito": 979260804, - "Guest_TonkatsuThug": 1758658397, - "Guest_GobbloreanGuard": 1286210991, - "Guest_BabblingMeints": 413418139, - "Guest_PrinceGobblestone": 1813171676, - "Guest_GobblerMuncher": 1517159487, - "Guest_GobblerGorger": 130736772, - "Guest_GobblerScouter": 1509427587, - "Guest_GobblerGlutton": 1912199781, - "Guest_GobblerScavenger": 136586791, - "Guest_BaronGreebly": 1028182200, - "Guest_BaronRotunda": 457132907, - "PP_DeathMimic": 1811942047, - "Guest_GreenMan": 1126663802, - "Guest_ForestGrump": 1602350320, - "Guest_ErvintheBarbarian": 1671762776, - "Guest_RazortuskWarrior": 1109994549, - "Guest_RazortuskBrawler": 732265321, - "Guest_SplithoofRager": 1922134329, - "Guest_TuskedRaider": 1920114147, - "Guest_SviniBeserker": 1146317608, - "Guest_SviniReaver": 216717251, - "Guest_Shattertusk": 1191456730, - "Guest_SplithoofBarbarian": 296671728, - "Guest_Bloodseeker": 2086598239, - "Guest_Scarsnout": 1831766077, - "Guest_MasterTonkatsu": 1783298894, - "Guest_Grisletusk": 657393295, - "Guest_SplithoofBloodguard": 488382274, - "Guest_BristlehideRaider": 237078958, - "Guest_Gullin": 1656401882, - "Guest_ForestNymph": 812055814, - "Guest_SassafrasMan": 1327049788, - "Guest_RandolfSpellshine": 108808620, - "Guest_BleysFlamerender": 434070106, - "Transformation_Khan": 1398327634, - "Transformation_TheBat": 1675113521, - "MNT_DireWolf": 845578449, - "MNT_YuleMule": 1976182058, - "MNT_LightBlades": 829118450, - "MNT_FlyingSquid": 1573132252, - "PP_Globulin": 467801224, - "PP_BeastBaby": 1807874692, - "PP_SaniBot": 670845902, - "Mount_SwarmSand": 1277669407, - "Guest_Nodnarb": 211478288, - "Guest_LordBramble": 1118781162, - "Guest_Yogash": 506264561, - "Guest_Marcio": 499428996, - "Guest_Procyon": 1115376865, - "Guest_Thunderfin": 2029218563, - "Guest_ArkynMoonblade": 1152775206, - "Guest_CreeCurdWright": 1714953095, - "Guest_DeerMouseRevenant": 315064435, - "Guest_ElanaDarksun": 837982094, - "Guest_KingAlricFateSailor": 1934591130, - "Guest_LaughingCalaca": 984492527, - "Guest_WraithKnight": 620484548, - "Guest_FieryEchoofApep": 484636593, - "Guest_FrostyEchoofApep": 171933154, - "Guest_FalseEchoofApep": 479387377, - "Guest_ChargedEchoofApep": 1229406800, - "Guest_ShrowdengersQhat": 101563303, - "Guest_Scrollkeeper": 643219293, - "Guest_TerrorHound": 753341570, - "Guest_CondemnedMander": 445370758, - "Mnt_SnowStorm": 1491572670, - "Mount_ChimneySweeper": 378571534, - "MNT_PineappleCandyCane": 1630795796, - "Guest_TyphonDustwind": 740849673, - "MNT_StickHorse": 216654744, - "MimicTemplate": 1461219184, - "MNT_Ball_N_Chain": 289720920, - "PP_PeaceDove_A": 1785119671, - "Mount_Gyrocycle": 1495008048, - "PP_BattleMageDragon_A": 1864696711, - "MNT_BattleBeast": 1304449286, - "MNT_SmokeTrails": 387873030, - "Mount_FriendshipHare": 677127330, - "MNT_ButterflySwarm": 383602683, - "PP_EggChick_B": 1959154042, - "MNT_Unicorn": 562210585, - "PP_StuffedUnicorn": 1731641773, - "MNT_ParadeTruck": 2026348978, - "MNT_ParadeTruckXmas": 1017864627, - "MNT_AutumnLeafSwarm": 1540002279, - "PP_GingerbreadMan": 1796172229, - "PP_DecadeDragon": 1819398630, - "MNT_StageShip": 829852992, - "PP_DramaLlama": 255896529, - "PP_HallMinotaur_A": 1492017563, - "Guest_MacDeath": 1526226705, - "Guest_MacDeathUnderstudy": 1731752647, - "Guest_MacLifeUnderstudy": 257466641, - "Guest_MacStormUnderstudy": 8295117, - "MNT_Pantera": 1135198, - "MNT_StagLight": 1908778048, - "MNT_GiantSpider": 1247185021, - "MNT_StagEvil": 872303931, - "PP_BaskHound": 1093866594, - "PP_Marionette": 1688299938, - "PP_Marionette_B": 1688297824, - "Guest_Izft": 996301405, - "Guest_SapotisMinion": 1625665891, - "Guest_CrazedSlave": 1473233468, - "Guest_CharmedSlave": 803043667, - "Guest_EnsorcelledSlave": 40920285, - "Guest_HallServant": 2038116460, - "Guest_SiathePerceiver": 1235571913, - "Guest_Kiwu": 1151177787, - "Guest_NightImp": 1051843424, - "Guest_EvilTrickster": 1035477123, - "Guest_DeepWoodsImp": 1502444054, - "Guest_ForestPest": 802235713, - "Guest_TaintedForestImp": 1030343985, - "Guest_Youkai": 518367729, - "Guest_CarthaginianElephantWarrior": 776293919, - "Guest_IdrisBeast-Taker": 106759521, - "Guest_MikaSkarka": 237956516, - "Guest_Belloq": 757247833, - "Guest_GurtokPiercer": 549466122, - "Guest_GurtokFirebender": 817966523, - "Guest_GurtokDemon": 544070162, - "Guest_GeneralFiretusk": 2073037770, - "Guest_GurtokBarrierDemon": 44657563, - "Guest_BlacktuskShaman": 1009070925, - "Guest_FireDemon": 158367196, - "Guest_DeathOni": 1916642000, - "Guest_JadeOni": 1289517185, - "Guest_PlagueOni": 1464586443, - "Guest_WarOni": 1630196094, - "Guest_BrokenLandMammoth": 1587008312, - "Guest_SunderedSeamMammoth": 1272698721, - "Guest_BullyMammoth": 170705927, - "Guest_Bullhemoth": 146998717, - "Guest_Kogasha": 1909654543, - "Guest_MusuthBerserker": 1741298129, - "Guest_BlackTuskCultist": 1771575961, - "Guest_AksilBlacktrunk": 1253596409, - "Guest_LongdreamerShaman": 1521283133, - "Guest_MuratGreyeyes": 1296814314, - "Guest_ElephantSoldier": 1443670145, - "Guest_DarajaniGuard": 1597288495, - "Guest_Loremaster": 1792470809, - "Guest_Pork": 2069999347, - "Guest_Beans": 97706585, - "MNT_Ox": 1292937747, - "PP_PropellerSquirrel": 1657443894, - "Guest_RasikPridefall": 97921485, - "Guest_AmedrasLightstep": 1818417025, - "MNT_SmokeTrails_Balance": 1358150715, - "MNT_SmokeTrails_Fire": 702971609, - "MNT_SmokeTrails_Ice": 190218501, - "MNT_SmokeTrails_Life": 2045542105, - "MNT_SmokeTrails_Myth": 1276281121, - "MNT_SmokeTrails_Storm": 564954622, - "Guest_Bellosh": 1407013027, - "Guest_AcampiReedfist": 2076527733, - "Guest_AgnettaBroadblade": 14864960, - "Guest_FrostheartRaider": 1574787221, - "Guest_JordaSwordbearer": 1627071850, - "Guest_KasaiBaku": 1153107369, - "Guest_ZoraimeiHelephant": 1002482606, - "Guest_ConscriptedMander": 43811125, - "Firecat_Decade": 409516955, - "MNT_BatGlider": 2086258491, - "Transformation_PlayerHomework": 673389670, - "Transformation_PlayerAttendance": 422287307, - "Transformation_PlayerLecture": 2035625874, - "Transformation_PlayerPopQuiz": 483367038, - "MNT_GingerbreadHorse": 1369242781, - "MNT_NimbariChariot": 1251740392, - "PP_NimbariDog": 1235126828, - "Transformation_PlayerGrandma": 1128332272, - "Transformation_PlayerScionA": 33862367, - "PP_Mushroom": 1568942158, - "MNT_Scooter": 1148167046, - "MNT_Scooter_B": 2079302532, - "MNT_Scooter_C": 1810867076, - "MNT_Scooter_D": 468689796, - "MNT_IceCycle": 415797788, - "Transformation_PlayerScionA02": 33921759, - "Guest_FearoftheFuture": 947210229, - "Guest_FearofGremlins": 405857384, - "Guest_RootGuardian": 922940845, - "Guest_VineThrasher": 172546427, - "Guest_BlightWalker": 1438155154, - "Guest_BriarScourge": 615681851, - "Guest_DreamJabberwock": 907754098, - "Guest_DreamBelloq": 990352002, - "Guest_Voltergeist": 1558128068, - "Guest_SpecialBranch": 1927849418, - "Guest_MutantBriar": 805892802, - "Guest_FeralBriar": 883790223, - "Guest_MaizeMonster": 688905764, - "Guest_DreamShadowwock": 1432458248, - "Mount_Heartboard": 1421972759, - "PP_ChocoBunny": 324797859, - "Mount-PogoFlower": 906659501, - "MNT_AethyrCloud": 1586061078, - "MNT_Fangle": 7846854, - "Guest_StarfallSpider": 1177620831, - "Guest_AshSpider": 1588502553, - "Guest_CorruptedWeaver": 38937211, - "Guest_CrystalCrawler": 1197980149, - "Guest_ShimmerWidow": 1300740128, - "Guest_FacetedSpikespinner": 1939719331, - "Guest_CrystallineQueen": 1999282256, - "Guest_AncientCrystalweaver": 1409608801, - "Guest_FangtoothLavaspinner": 1538042104, - "Guest_VenomousHeatseeker": 1234682482, - "Guest_FireweaveRockbiter": 300743778, - "Guest_MonkeySpider": 754090007, - "Guest_CryptSpider": 1545405304, - "Guest_CommonHouseSpider": 613486002, - "Guest_ArachnaMagnaMagus": 825817937, - "Guest_ArachnaSoldier": 270978709, - "Guest_Gnissa": 1699826178, - "Guest_WebwoodScuttler": 1728611075, - "Guest_SandSpider": 61789007, - "Guest_WebwoodCreeper": 1013382584, - "Guest_Skathi": 1631429165, - "Guest_ArchmagusLorcan": 321146960, - "Guest_CrawleroftheMist": 2076696304, - "Guest_PaintedSpider": 1482115552, - "Guest_GiantSpider": 1545526191, - "Guest_CaveCrawler": 2101587667, - "Guest_RattleCatcher": 1472707326, - "Guest_TrapdoorSpider": 1321643694, - "Guest_RockClinger": 1304266411, - "Guest_InquisitorXimenez": 1053483090, - "Guest_ElderMagus": 1017836836, - "Guest_WardenBenthamic": 18807199, - "Guest_SpiderArchmagus": 387645558, - "Guest_SpiderAdept": 2094873407, - "Guest_InterrogatorRentenius": 1245984179, - "Guest_WarpedWeaver": 495882677, - "Guest_ArachnaSkinner": 281864085, - "Guest_SkinnerConscript": 2028526453, - "Guest_ArachnaGladiator": 2492046, - "Guest_LorcanInitiate": 353311753, - "Guest_Serket": 1871335773, - "Guest_IceWeaver": 2063216026, - "Guest_SpiritSpinner": 525666327, - "Guest_MysteriousCrawler": 218352756, - "Guest_BlackWidow": 1909331619, - "Guest_BrownRecluse": 1146386275, - "Guest_Creeper": 1197442790, - "Guest_GearSpinner": 67020478, - "Guest_Clinker": 1194519062, - "Guest_Clanker": 1194517014, - "Guest_GrandfatherSpider": 1330981335, - "Guest_Spiderling": 1400274461, - "Guest_ManekiWebWalker": 888348786, - "Guest_KoganiDeathCrawler": 276010604, - "Guest_CheliceranCrawler": 1169176517, - "Guest_ArachniteCreeper": 1850534774, - "Guest_ChelicaranStalker": 2057291848, - "Guest_HornedMonkeySpider": 1301514577, - "Guest_GreyOgreSpider": 1533774471, - "Guest_StarburstSpider": 698029451, - "Guest_PaintedCaveMonster": 601315479, - "Guest_RubbleRouser": 220785666, - "Guest_EarthElemental": 435260049, - "Guest_SharpshardWarrior": 1403237237, - "Guest_Firevein": 1220046430, - "Guest_Blackblade": 458130537, - "Guest_VengefulFireheart": 563205004, - "Guest_FirerockStomper": 608552855, - "Guest_BlackrockGuardian": 1663799582, - "Guest_ConfusedSentry": 24655510, - "Guest_SilverSentinel": 1090673683, - "Guest_SilverServant": 84560693, - "Guest_GiantHomunculus": 456098557, - "Guest_PropertyMaster": 229101764, - "Guest_VaultProtector": 185568207, - "Guest_PlatedDefender": 79324363, - "Guest_Avalanche": 761613547, - "Guest_RockReaver": 919912933, - "Guest_Frostmantle": 856308090, - "Guest_GlacierWalker": 131215932, - "Guest_SandBehemoth": 272513357, - "Guest_RunedAnnihilator": 121339936, - "Guest_RunedDevestator": 1611071181, - "Guest_RunedGuardian": 1986312667, - "Guest_CanyonRager": 1123038266, - "Guest_RubbleReaver": 220774678, - "Guest_Boulderbone": 122279242, - "Guest_Nali": 77467516, - "Guest_Gnar": 1151164930, - "Guest_GlacialAvenger": 1181253632, - "Guest_SokkwiKeymaster": 190919624, - "Guest_SandsofTime": 34920273, - "Guest_BladeGolem": 435561523, - "Guest_FrostColossus": 1564686403, - "Guest_IceColossus": 335477257, - "Guest_PollutedEarthWalker": 86045387, - "Guest_CorruptedEarthSpirit": 1135891559, - "Guest_Stonebreaker": 1317905436, - "Guest_StoneElemental": 1715022018, - "Guest_VolcanisGolem": 1904918929, - "Guest_WaterElemental": 1717850987, - "Guest_AshenDeathMonkeySpider": 35356665, - "Guest_DeathMonkeySpider": 1525508507, - "Guest_MotherMonkeySpider": 110317392, - "Guest_DoomMonkey": 1135105500, - "Guest_DreamMorganthe": 907599965, - "Guest_DragonBeetle": 1974635734, - "Guest_SandWalker": 1530843985, - "MNT_PandaMama": 916371162, - "PP_BabyPandas": 778536285, - "PP_FrogPrince": 729975205, - "MNT_PumpkinCarriage": 183672737, - "Mount_Gobbler_B": 1193388729, - "PP_Hamster": 1578040708, - "Guest_Steeleton": 657429968, - "Guest_GoldenWyrm": 311022393, - "MNT_Roc": 1564431869, - "PP_BabyGriffin": 1913686406, - "Transformation_ShadowDPSMob": 936133896, - "Transformation_ShadowTankMob": 305660992, - "Transformation_ShadowHealMob": 356596800, - "Guest_SpiritofIgnorance": 1577360126, - "Guest_FecklessSoul": 519648315, - "Guest_BurnedOutSoul": 312181646, - "Guest_BenightedRevenant": 2131956962, - "Guest_TombLurker": 1901203489, - "Guest_DesertGolem": 543642682, - "Guest_KumoOni": 215822625, - "Guest_SpellwritStalker": 161772776, - "PP_Sun": 1723237840, - "Guest_Leadite": 4480416, - "Mount_FestiveFox": 2125832348, - "PP_FenrisWolf": 1601784680, - "PP_SchoolPiggle": 109782407, - "PP_FenrisWolf_Red": 1597992854, - "PP_FenrisWolf_Teal": 1455058454, - "PP_FenrisWolf_White": 1102186199, - "Transformation_NinjaPig_Fire": 984575055, - "Transformation_BG_RatThief_Myth": 1191155131, - "Transformation_BG_RatThief_Storm": 675891897, - "MNT_Umbrella": 955683437, - "Transformation_BG_Elf_Ice": 1209681129, - "Transformation_BG_Fairy_DarkMinion_Balance": 33521202, - "Transformation_BG_Cyclops_Death": 876023972, - "Transformation_BG_Minotuar_Fire": 1118476387, - "Transformation_BG_WolfWarrior_Storm": 2075594475, - "Transformation_BG_WolfWarrior_Balance": 746159992, - "Transformation_BG_Draconian_Myth": 903606820, - "Transformation_BG_Draconian_Life": 1501291044, - "Transformation_BG_Colossus_Life": 1320377666, - "MNT_DolphinChariot": 102982520, - "MNT_EvilWagon": 685457563, - "MNT_FlyingDutchman": 1176206544, - "PP_SeaHorse": 2024322494, - "PP_EvilTeddy": 1159020925, - "PP_ZombieParrot": 384805107, - "Transformation_BG_Ice_Colossus": 299613211, - "MNT_CarrierBat": 7323333, - "Transformation_BG_Minotaur_MythTempalte": 430330904, - "PP_FeatheredTabby": 452526748, - "Transformation_Detritus01": 1335763402, - "Guest_Metallossus": 335457082, - "MNT_SantaJaws": 464410203, - "MNT_BattleBadger": 532858222, - "Transformation_Shedder01": 2069145892, - "PP_NatureSpirit": 373176286, - "Transformation_Devourer01": 1004421540, - "Guest_TheDevourer": 1591187996, - "Guest_Treeminder": 1093207850, - "Guest_RenegadeDruid": 2087982292, - "Guest_FractalTreeminder": 927174548, - "Guest_UnsettledTreeminder": 486164163, - "Guest_DragonspyreCrusader": 247317280, - "Guest_YoungGreggor": 66068670, - "Guest_GeneralGreyflame": 499924835, - "Guest_OldGreggor": 391726170, - "Guest_PrinceViggor": 853556298, - "Guest_DragonspyreVanguard": 693851565, - "Guest_SilasConviction": 177362659, - "Guest_SilasWeariness": 893431021, - "Guest_SilasRage": 1288904439, - "Guest_SilasDoubt": 1479426285, - "Guest_Lorekeeper": 147779344, - "Guest_FelixPhotomongerIII": 68387506, - "Guest_WarHavox": 1634324022, - "Guest_Mis-assembledSkeleton": 221832082, - "Guest_TreeminderGhost": 200408510, - "Guest_ViggorsDrake": 340449521, - "Guest_BlueNinjaPig": 938539327, - "Guest_RedNinjaPig": 2097962021, - "Guest_OrangeNinjaPig": 625058258, - "Guest_PurpleNinjaPig": 445746449, - "Guest_RitualColossus": 844563319, - "Guest_TinyDragon": 1123127688, - "Guest_RitualSpider": 429827552, - "Guest_RitualDraconian": 837510372, - "Guest_CC_Druid_Warrior_C_01": 55314616, - "Guest_CC_Druid_Wizard_A_01": 1046261169, - "Guest_CC_Druid_Wizard_B_01": 1046244785, - "Guest_CC_Druid_Warrior_A_01": 56363192, - "MNT_Toboggan": 995356805, - "MNT_2P_WickerTreant-001": 2065440944, - "PP_Ratatoskr": 1003497600, - "PP_Trash": 1195047012, - "Guest_CC_Druid_Wizard_D_01": 1046343089, - "MNT_Sunflower": 721091531, - "MNT_Whoopee": 1383311238, - "MNT_Warthog": 8060761, - "PP_ShamRock": 943893325, - "PP_LeapingLeprechaun": 132882517, - "PP_LionCubs": 465759803, - "PP_Tanuki": 670387843, - "MNT_Crane": 433122675, - "MNT_Krokosphinx": 739938754, - "Transformation_BG_Fairy_Life": 1897480818, - "Transformation_LiceDeepSpawnA": 244795720, - "Piggle_Alien": 1761605655, - "PP_JeweledScarab": 620544607, - "Guest_KR_Nymph_DrkMage_D50": 1248526054, - "Guest_KR_Nymph_DrkMage_C50": 1246953190, - "Guest_KR_Nymph_DrkMage_B50": 1247477478, - "Guest_KR_Nymph_DrkMage_A50": 1245904614, - "Guest_EM_Spider_Ash_01": 185724938, - "UFO": 47349, - "PP_Kit10": 326796620, - "PP_Lumi_Tulip": 84119585, - "PP_Lumi_Fern": 117015078, - "PP_Lumi_Violet": 1468797578, - "PP_Lumi_Sunny": 1769236703, - "PP_Lumi_Daisy": 1743454175, - "MNT_CelestianMech": 1238076872, - "MNT_Brontosaurus": 402157167, - "Guest_HG_AKT_Krok_Cyber_A_Balance_25": 1367985604, - "Guest_HG_AKT_Krok_Cyber_A_Balance_50": 1368084932, - "Guest_HG_AKT_Krok_Cyber_A_Balance_75": 1367988676, - "Guest_HG_AKT_Krok_Cyber_A_Balance_100": 1351303620, - "Guest_HG_AKT_Krok_Cyber_A_Balance_130": 1351270852, - "Guest_HG_AKT_Krok_Cyber_A_Fire_25": 976558490, - "Guest_HG_AKT_Krok_Cyber_A_Fire_50": 37034397, - "Guest_HG_AKT_Krok_Cyber_A_Fire_75": 305469850, - "Guest_HG_AKT_Krok_Cyber_A_Fire_100": 573905821, - "Guest_HG_AKT_Krok_Cyber_A_Fire_130": 573905824, - "Guest_HG_AKT_Krok_Cyber_A_Ice_25": 159411377, - "Guest_HG_AKT_Krok_Cyber_A_Ice_50": 541093041, - "Guest_HG_AKT_Krok_Cyber_A_Ice_75": 146828465, - "Guest_HG_AKT_Krok_Cyber_A_Ice_100": 557870241, - "Guest_HG_AKT_Krok_Cyber_A_Ice_130": 960523425, - "Guest_HG_AKT_Krok_Cyber_A_Myth_25": 976187830, - "Guest_HG_AKT_Krok_Cyber_A_Myth_50": 36663729, - "Guest_HG_AKT_Krok_Cyber_A_Myth_75": 305099190, - "Guest_HG_AKT_Krok_Cyber_A_Myth_100": 573535153, - "Guest_HG_AKT_Krok_Cyber_A_Myth_130": 573535156, - "Guest_CL-GolemButler-R9": 780077559, - "Guest_CL-GolemDigger-Boss-R10": 562020288, - "Guest_CL-GolemDigger-R9": 789375095, - "Guest_CL-GolemDigger-Rank8MythBoss-R10": 930527857, - "Guest_CL-GolemWorker-R9-1": 1072815287, - "Guest_CL-FishbotBrown-R9-1": 2006155417, - "Guest_CL-FishbotBrown-R9-2": 395542681, - "Guest_CL-FishbotGold-Boss-R10": 611881707, - "Guest_CL-FishbotGold-R9": 705414492, - "Guest_CL-FishbotYellow-Boss-R10": 23145662, - "Guest_CL-Protector-Black-Boss-R10-2": 679228793, - "Guest_CL-Protector-Gold-R10": 1909636609, - "Guest_CL-Protector-Gold-R9-1": 1909634804, - "Guest_CL-Protector-Gold-R9-2": 1909634932, - "Guest_CL-Protector-Gold-R9-3": 1909635060, - "Guest_CL-Protector-Gold-R9-4": 1909634164, - "Guest_CL-Protector-Purple-R9-Boss": 1889837072, - "Guest_CL-Protector-Purple-R9": 81760161, - "Guest_CL-Protector-Tan-Boss-R10": 912663188, - "Guest_KR_Golem_Worker": 1784607296, - "Guest_Golem-Brass-R7-1": 718939445, - "Guest_Golem-Clockwork-R7": 1161173708, - "Guest_EM_Robot_Batbot_A_01": 1482867950, - "Guest_EM_Robot_Batbot_B_02": 945947886, - "Guest_EM_Robot_Batbot_B_01": 1482818798, - "Guest_EM_Robot_Batbot_B_03": 409076974, - "Guest_EM_Robot_Batbot_B_04": 127793938, - "Guest_EM_Robot_Batbot_B_05": 664664850, - "Guest_EM_Robot_Drone_A_02": 1215188569, - "Guest_EM_Robot_Drone_A_03": 1231965785, - "Guest_EM_Robot_Drone_A_01": 1265520217, - "Guest_EM_Robot_Drone_A_04": 1315851865, - "Guest_EM_Robot_Drone_A_05": 1332629081, - "Guest_EM_Robot_Drone_A_06": 1282297433, - "Guest_EM_Robot_Drone_A_07": 1299074649, - "Guest_EM_Robot_Drone_A_08": 1114525273, - "Guest_EM_Robot_Drone_A_09": 1131302489, - "Guest_EM_Robot_Drone_A_Boss_01": 1960661151, - "Guest_EM_Robot_Drone_A_Boss_02": 1960530079, - "Guest_EM_Robot_Drone_E_01": 1265518169, - "Guest_EM_Robot_Tank_A_01": 1314796420, - "Guest_EM_Robot_Tank_A_02": 1313223556, - "Guest_EM_Robot_Drone_C_02": 1215187545, - "Guest_EM_Robot_Drone_D_03": 1231963225, - "Guest_EM_Robot_Drone_D_01": 1265517657, - "Guest_EM_Robot_Drone_D_02": 1215186009, - "Guest_EM_Robot_Tank_B_01": 1314796468, - "Guest_EM_Robot_Drone_C_01": 1265519193, - "Guest_G14-BP-Golem_Steel_Boss": 2071105129, - "Guest_G14-BP-Golem_Steel_Puzzle": 715790979, - "Guest_Golem-Brass-Elite-L38": 1163662532, - "Guest_Golem-Brass-Elite-L56": 2057562884, - "Guest_Golem-Brass-MBBoss-L48": 1498830732, - "Guest_Golem-Brass-MBBoss-L71": 1498829576, - "Guest_Golem-Brass-MBBoss-L76": 1498828936, - "Guest_Golem-Clockwork-Elite-L54-Metal": 417151527, - "Guest_Golem-Clockwork-Elite-L37": 1961943722, - "Guest_Golem-Clockwork-Elite-L54": 1950147242, - "Guest_Golem-Clockwork-L28": 1561959116, - "Guest_Golem-Clockwork-MBBoss-L37": 973152783, - "Guest_Golem-Clockwork-MBBoss-L69": 1262559759, - "Guest_Golem-Steel-Elite-L39": 1430496717, - "Guest_Golem-Steel-MBBoss-L40": 1229578887, - "Guest_Golem-Steel-MBBoss-L43": 1229579015, - "Guest_Golem-Steel-MBBoss-L50-1": 1231762051, - "Guest_Golem-Steel-MBBoss-L50": 1229578883, - "Guest_Golem-Steel-MBBoss-LXX": 1229583927, - "Guest_Golem-Wood-Elite-L35": 904360756, - "Guest_Golem-Wood-Elite-L37": 1978102580, - "Guest_Golem-Wood-Elite-L50": 1813548236, - "Guest_Golem-Wood-MBBoss-L63": 1392041724, - "Guest_MB-Gauntlet-Golem-Clockwork": 854649045, - "Guest_Spider-Golem-MBBoss-L67": 253352706, - "Guest_Spider-Golem-MBBoss-L96": 253348994, - "Guest_WC-MAW-GasGolem-Minion": 1511013798, - "Guest_WC-MAW-GasGolemLife-Minion": 1306026584, - "Guest_Golem-Steel-L02": 1027229749, - "Guest_Golem-Clockwork-L01": 1409915596, - "Guest_Gauntlet-01-Golem-Steel-Ghost-R8": 402816318, - "Guest_Golem-Wood-L01": 156976035, - "Guest_HG-Clock-ClockworkSpanner-20": 1523370449, - "Guest_HG-Clock-ClockworkSpanner-40": 1523370455, - "Guest_HG-Clock-ClockworkSpanner-60": 1523370453, - "Guest_HG-Clock-ClockworkSpanner-80": 1523370459, - "Guest_HG-Clock-ClockworkSpanner-100": 1523354068, - "Guest_HG-Clock-ClockworkSpanner-120": 1523354004, - "Guest_AQ-Cyclops-Guard": 191361948, - "Guest_AQ_Cyclops_Guard_A_Boss_01": 114747100, - "Guest_CL-Cyclops-Death-R10": 611013866, - "Guest_Cyclops-Death-Boss-R7": 1192370725, - "Guest_Cyclops-Death-Boss-R9": 1192370717, - "Guest_Cyclops-Death-R7": 144593791, - "Guest_GH-Cyclops-Death-R6": 594236619, - "Guest_Cyclops-BlueHelmet-KTBoss-L03": 1720105277, - "Guest_Cyclops-Red-L12": 1816429840, - "Guest_MR_Cyclops02WHelmet_Model_01": 1483732416, - "Guest_Cyclops-Blue-L02": 1633021234, - "Guest_Cyclops-BlueHelmet-WCBoss-L03": 427378332, - "Guest_Cyclops-RedHelmet-WCBoss-L03": 2021269422, - "Guest_HG_Sinbad_Cyclops_25": 911979034, - "Guest_HG_Sinbad_Cyclops_50": 1856261606, - "Guest_HG_Sinbad_Cyclops_75": 861647386, - "Guest_HG_Sinbad_Cyclops_100": 1789152678, - "Guest_HG_Sinbad_Cyclops_130": 178539942, - "Guest_HG_Sinbad_IronSultan_25": 930031152, - "Guest_HG_Sinbad_IronSultan_50": 930051504, - "Guest_HG_Sinbad_IronSultan_75": 930030768, - "Guest_HG_Sinbad_IronSultan_100": 927954864, - "Guest_HG_Sinbad_IronSultan_130": 927942576, - "MNT_SweetRide": 1643297840, - "PP_FrilledDino": 1395342809, - "PP_Celestian": 95679303, - "PP_Sun_Angry": 1955190071, - "PP_Marshmallow": 1220667954, - "MNT_Umbrella_B": 923364822, - "MNT_Tamer": 1050737194, - "PP_BumbleBee_B": 858653433, - "MNT_PunkFlamingo": 1634690818, - "MNT_2P_WoolyRhino": 1395943031, - "PP_Retriever": 72842604, - "PP_Piggle_Caveman": 181356174, - "PP_DecennialDragon": 1396523337, - "MNT_Tiger_Rainbow": 515535412, - "MNT_CarrierGhosts": 1833039309, - "MNT_Sled": 617654308, - "Transformation_BG_RatThief_Death": 30691641, - "Transformation_BG_Elf_Storm": 44352983, - "Transformation_BG_WolfWarrior_Ice": 986304351, - "MNT_CarriorGhost_B": 1768732109, - "MNT_CarriorGhost_C": 1766634957, - "Transformation_BG_Colossus_Fire": 1318803522, - "Transformation_BG_Krok_Balance": 140952965, - "Guest_KM_Gobbler_Skinny_A_11": 773648065, - "Guest_KM_Robot_Candy_A_01": 480414124, - "Guest_KM_Robot_Candy_A_02": 530745772, - "Guest_KM_Robot_Candy_A_03": 513968556, - "Guest_KM_Robot_Candy_A_04": 430082476, - "Guest_KM_Robot_Candy_A_05": 413305260, - "Guest_KM_Gummy_Bear_A_01": 1940905059, - "Guest_KM_Gummy_Bear_D_01": 1940905011, - "Guest_KM_Gummy_Bear_E_01": 1940904995, - "Guest_KM_Gummy_Bear_A_02": 1941429347, - "Guest_KM_Gummy_Bear_D_02": 1941429299, - "Guest_KM_Gummy_Bear_E_02": 1941429283, - "Guest_KM_Gummy_Bear_B_01": 1940905043, - "Guest_KM_Gummy_Bear_B_02": 1941429331, - "Guest_KM_Gummy_Bear_B_03": 1941953619, - "Guest_KM_Gummy_BearHat_A_01": 853226448, - "Guest_KM_Gummy_BearHat_A_02": 853226460, - "Guest_KM_Gummy_Bunny_A_01": 324805042, - "Guest_KM_Gummy_Bunny_C_01": 324806066, - "Guest_KM_Gummy_Bunny_D_01": 324807602, - "Guest_KM_Gummy_Bunny_E_01": 324807090, - "Guest_KM_Gummy_Bunny_F_01": 324808626, - "Guest_KM_Gummy_BunnyUber_A_01": 525565930, - "Guest_KM_Gummy_Worm_A_01": 231044195, - "Guest_KM_Gummy_Worm_B_01": 231044179, - "Guest_KM_Gummy_Worm_C_01": 231044163, - "Guest_KM_Gummy_Worm_A_02": 232617059, - "Guest_KM_Gummy_Worm_B_02": 232617043, - "Guest_KM_Gummy_Worm_C_02": 232617027, - "Guest_KM_Gummy_Bear_F_01": 1940904979, - "Guest_KM_Gummy_Bear_F_02": 1941429267, - "Guest_KM_Gummy_Bunny_C_02": 274474418, - "Guest_KM_Robot_Candy_A_06": 463636908, - "Guest_KM_Alphoi_DarkF_A_01": 475441543, - "Guest_KM_Gobbler_Skinny_A_01": 773648069, - "Guest_KM_Gobbler_Skinny_A_02": 773648197, - "Guest_KM_Gobbler_Skinny_A_03": 773648325, - "Guest_KM_Gobbler_SkinnyF_A_01": 254411012, - "Guest_KM_Gobbler_Skinny_A_04": 773647429, - "Guest_KM_Gobbler_Skinny_A_05": 773647557, - "Guest_KM_Gobbler_Skinny_A_06": 773647685, - "Guest_KM_Gobbler_SkinnyF_A_02": 254423300, - "Guest_KM_Gobbler_Skinny_A_07": 773647813, - "Guest_KM_Gobbler_Skinny_A_08": 773646917, - "Guest_KM_Gobbler_Skinny_A_09": 773647045, - "Guest_KM_Gobbler_SkinnyF_A_03": 254419204, - "Guest_KM_Gobbler_Fat_A_01": 1440595742, - "Guest_KM_Gobbler_Fruit_B_01": 1236446660, - "Guest_KM_Gobbler_Fruit_A_01": 1235922372, - "Guest_KM_Gobbler_Guard_B_01": 1435667582, - "Guest_KM_Gobbler_Skinny_A_10": 773647937, - "Transformation_PlayerBabyCarrot": 1580787628, - "Transformation_PlayerDeadBeet": 1992261692, - "Transformation_PlayerDisparagus": 373797484, - "Transformation_PlayerSnowPeas": 634199102, - "PP_Snowflake": 2036143125, - "PP_GummyBear_Myth": 117787890, - "PP_GummyBear_Death": 236577760, - "PP_GummyBear_Balance": 2100524337, - "PP_GummyBear_Life": 118020336, - "PP_GummyBear_Fire": 117995748, - "PP_GummyBear_Storm": 247437198, - "PP_GummyBear_Ice": 122536570, - "MNT_SnowOwl": 1578473542, - "Guest_KM_Gummy_Bear_Uber_A_01": 1856208859, - "Guest_KM_Gummy_Bear_Uber_A_02": 1856196571, - "MNT_ChocolateMoose": 567538552, - "MNT_Ram_Candied": 1913603720, - "Guest_KM_Spider_Mage_A_01": 1529720120, - "Guest_KM_Spider_Mage_B_01": 1529719608, - "Guest_KM_Spider_Mage_C_01": 1529719096, - "Guest_KM_Spider_Mage_D_01": 1529718584, - "Guest_KM_Spider_Mage_E_01": 1529718072, - "PP_SpriteDark_Balance": 914900728, - "MNT_Tricycle": 991465753, - "Guest_Tri-Gauntlet-Protector-Gold": 2029952053, - "Guest_Tri-Gauntlet-FishbotGold": 130267882, - "Guest_HG-Clock-Clockworker-20": 281216243, - "Guest_HG-Clock-Clockworker-40": 281217011, - "Guest_HG-Clock-Clockworker-60": 281216755, - "Guest_HG-Clock-Clockworker-80": 281215475, - "Guest_HG-Clock-Clockworker-100": 283313523, - "Guest_HG-Clock-Clockworker-120": 283321715, - "Guest_HG-Clock-Lugs-20": 1452756928, - "Guest_HG-Clock-Lugs-40": 1452756960, - "Guest_HG-Clock-Lugs-60": 1452756992, - "Guest_HG-Clock-Lugs-80": 1452756768, - "Guest_HG-Clock-Lugs-100": 1452494736, - "Guest_HG-Clock-Lugs-120": 1452493712, - "Guest_HG-Clock-Lucia-20": 1041451626, - "Guest_HG-Clock-Lucia-40": 1041450602, - "Guest_HG-Clock-Lucia-60": 1041449578, - "Guest_HG-Clock-Lucia-80": 1041456746, - "Guest_HG-Clock-Lucia-100": 1049840746, - "Guest_HG-Clock-Lucia-120": 1049873514, - "Guest_KM_Gummy_Worm_A_03": 232092771, - "MNT_Scooter_E": 200254340, - "PP_WolfWarrior_Balance": 991302673, - "PP_PetGift": 1816280689, - "PP_RatThief": 1390866051, - "Guest_PL_Titan_Small_A": 2015819364, - "Guest_PL_Titan_Large_B": 699791264, - "Guest_PL_Titan_Medium_A": 326730424, - "PP_Draconian": 1631557208, - "MNT_Pantera_Astral": 106092538, - "PP_YearOx": 105653084, - "PP_WolfWarrior_Ice": 1043644935, - "PP_SpriteDark": 2031730054, - "PP_Brudel": 1355697143, - "MNT_Astronomers": 742732792, - "MNT_CouchPotato": 418050932, - "MNT_Flowerfarthing": 1396771051, - "MNT_Astronomers_Blue": 236532779, - "MNT_Astronomers_Rainbow": 4428274, - "PP_Astronomer": 782095961, - "Guest_KM_Gummy_Bunny_B_01": 324806578, - "Guest_KM_DeadBeets_A_01": 1396016635, - "MNT_GummyBunny": 775900704, - "MNT_GummyBunny_A": 775834080, - "MNT_GummyBunny_B": 775836128, - "MNT_GummyBunny_C": 775838176, - "Transformation_BG_Minotaur_Life": 1445109091, - "MNT_Armadillo": 825635826, - "PP_SootGremlin": 768969093, - "PP_RoadRunner": 2057802060, - "MNT_TinyTrolly": 160881792, - "PP_Frog_B": 1530124761, - "MNT_FjordDragon": 129204340, - "Transformation_BG_NinjaPig_Myth": 422914079, - "PP_CorgiPup": 1638656105, - "MNT_Skateboard": 728018224, - "PP_Krokomummy": 326396577, - "MNT_Vroom": 1736383110, - "MNT_PlayerWings_AtralRaven": 1514774167, - "PP_Blimp": 690882397, - "Guest_GH_WoodenSkeletonKey_Boar_Boss_Grey_01": 678055851, - "Guest_GH_StoneSkeletonKey_Boar_Boss_Grey_01": 571670691, - "Guest_GH_GoldSkeletonKey_Boar_Boss_Grey_01": 961728819, - "MNT_Cloud_Promo_AW_01": 2032670992, - "Guest_EM_Hornet_Burner_A_01": 1881854632, - "Guest_EM_Hornet_Burner_A_02": 1881854636, - "Guest_EM_Hornet_Zapper_A_01": 2058539689, - "Guest_EM_Hornet_Zapper_A_02": 2058539685, - "Guest_EM_Ant_Giant_D_01": 379386121, - "Guest_EM_Ant_Giant_A_02": 1768146677, - "Guest_EM_Ant_Giant_A_01": 1768097525, - "Guest_EM_Ant_Giant_B_01": 379386122, - "Guest_KR_Moth_Priest_G_Achera": 381233569, - "Guest_KR_BeeMonsterF_A": 135146211, - "Guest_KR_BeeMonsterF_A_Weak": 1824123847, - "Guest_KR_Bee_Warrior_A": 1569202664, - "Guest_KR_Bee_Warrior_B": 1569204200, - "Guest_KR_Bee_Warrior_C_BossDrones": 1217189631, - "Guest_KR_Bee_Warrior_D": 1569205224, - "Guest_KR_Bee_Warrior_E": 1569204712, - "Guest_KR_Bee_Warrior_G": 1569205736, - "Guest_KR_Bee_Warrior_G_BossFight": 1055035476, - "Guest_KR_Bee_Warrior_H": 1569207272, - "Guest_KR_Bee_Warrior_I": 1569206760, - "Guest_KR_Bee_Warrior_L": 1569209320, - "Guest_KR_Bee_Warrior_M": 1569208808, - "Guest_KR_DragonBeetle_Monster_A": 1777853782, - "Guest_KR_Hornet_Drone_A": 1161590757, - "Guest_KR_Hornet_Drone_B": 1161607141, - "Guest_KR_Hornet_Drone_C": 1161623525, - "Guest_KR_Hornet_Drone_D": 1161639909, - "Guest_KR_Hornet_Drone_E": 1161656293, - "Guest_KR_Lice_DeepSpawn_A": 761604959, - "Guest_KR_Mantis_HunterF_A": 820917199, - "Guest_KR_Mantis_HunterF_B": 871248847, - "Guest_KR_Mantis_HunterF_C": 854471631, - "Guest_KR_Mantis_HunterF_D": 904803279, - "Guest_KR_Mantis_HunterF_F": 938357711, - "Guest_KR_Mantis_HunterF_F_Driftwood": 2053608437, - "Guest_KR_Mantis_HunterF_G": 921580495, - "Guest_KR_Mantis_HunterF_H": 971912143, - "Guest_KR_Mantis_HunterF_I": 955134927, - "Guest_KR_Mantis_HunterF_I_Zuzka": 935478878, - "Guest_KR_Mantis_HunterF_J": 1005466575, - "Guest_KR_Mantis_HunterF_J_Zelda": 886910558, - "Guest_KR_Mantis_HunterF_K": 988689359, - "Guest_KR_Mantis_HunterF_K_LongShd": 1767574336, - "Guest_KR_Mantis_HunterF_L": 1039021007, - "Guest_KR_Mantis_HunterF_M": 1022243791, - "Guest_KR_Mantis_HunterF_P_Bossfight": 1731428987, - "Guest_KR_Mantis_HunterF_Q": 552481743, - "Guest_KR_Mantis_HunterF_R": 602813391, - "Guest_KR_Mantis_HunterF_S": 586036175, - "Guest_KR_Mantis_HunterF_SecondColumnCpt_A": 1354033994, - "Guest_KR_Mantis_HunterF_T": 636367823, - "Guest_KR_Mantis_HunterF_Tribute": 1946371041, - "Guest_KR_Mantis_HunterF_U": 619590607, - "Guest_KR_Mantis_HunterF_V": 669922255, - "Guest_KR_Mantis_HunterF_W": 653145039, - "Guest_KR_Mantis_HunterF_Y": 686699471, - "Guest_KR_Mantis_HunterF_Z_Officer": 206016474, - "Guest_KR_Mantis_ProphetF_B": 1791139097, - "Guest_KR_Mantis_ProphetF_C": 1254268185, - "Guest_KR_Milipede_Warrior_A": 410726278, - "Guest_KR_Milipede_Warrior_B": 410726282, - "Guest_KR_Milipede_Warrior_C": 410726286, - "Guest_KR_Milipede_Warrior_D": 410726290, - "Guest_KR_Milipede_Warrior_H": 410726306, - "Guest_KR_Milipede_Warrior_J": 410726314, - "Guest_KR_Milipede_Warrior_K": 410726318, - "Guest_KR_Moth_Priest_A": 1421532604, - "Guest_KR_Moth_Priest_B": 1421532092, - "Guest_KR_Moth_Priest_C": 1421531580, - "Guest_KR_Moth_Priest_D": 1421531068, - "Guest_KR_Moth_Priest_D_Drepa": 1483393420, - "Guest_KR_Moth_Priest_E": 1421530556, - "Guest_KR_Moth_Priest_F": 1421530044, - "Guest_KR_Mantis_HunterF_Z": 737031119, - "Guest_KR_Roach_AntLion_A": 1860517987, - "Guest_KR_Roach_AntLion_B_Bossfight": 993284625, - "Guest_KR_Roach_AntLion_C": 1861566563, - "Guest_KR_Roach_Cook_A": 259847495, - "Guest_KR_Roach_Glutton_B": 249524334, - "Guest_KR_Roach_WaterBug_A": 1795473599, - "Guest_KR_Roach_WaterBug_B": 1745141951, - "Guest_MR_Beetle_Scarab_A_01": 1789741503, - "Guest_MR_Beetle_Scarab_A_02": 1789741491, - "Guest_MR_Beetle_Scarab_B_01": 1790265791, - "Guest_ZF-Goliath-R10-Boss-01": 7034074, - "Guest_ZF-Goliath-R10-Boss-02": 7034202, - "Guest_ZF-Goliath-R10-Boss-03": 7034330, - "Guest_ZF-Goliath-R10-Boss": 1603576807, - "Guest_ZF-Goliath-R11-Boss-01": 2140449574, - "Guest_ZF-Goliath-R11-Boss-02": 2140449446, - "Guest_ZF-Goliath-R11-Boss-03": 2140449318, - "Guest_ME1_Ant_Aunt_A": 707251855, - "Guest_ME1_Ant_Aunt_B": 1440231794, - "Guest_CC_Fly_Worker_A_01": 1497784524, - "Guest_CC_Roach_Worker_A_01": 1026321602, - "Guest_CC_Roach_Lieutenant_A_01": 1081690299, - "Guest_CC_Roach_Lieutenant_B_01": 1081690295, - "Guest_CC_Roach_Don_A_01": 547836893, - "Guest_CC_Roach_BBug_A_01": 1021150157, - "Guest_CC_Roach_RoachSteady_A_01": 859409247, - "Guest_Draconian-Caster-Yellow-Boss-R8": 1016221419, - "Guest_Draconian-Zombie-R8-2-1": 1226055265, - "Guest_Draconian-Zombie-R8-2": 1226115297, - "Guest_Draconian-Caster-Green-R7": 2143342719, - "Guest_Draconian-Warrior-Gold-Boss-R8": 1044388248, - "Guest_Draconian-Caster-Gray-R7": 95878769, - "Guest_DS-Boss-MAW": 1676071241, - "Guest_Draconian-Zombie-R8-1": 1226115309, - "Guest_Draconian-Warrior-Purple-Boss-R7": 601813964, - "Guest_Draconian-Caster-Tan-Boss-R7": 1973339532, - "Guest_Draconian-Caster-Blue-R6": 1684210173, - "Guest_Draconian-Caster-Yellow-R8": 2129956646, - "Guest_Draconian-Warrior-Red-R7": 521861944, - "Guest_Draconian-Warrior-Tan-R6": 1726416112, - "Guest_Draconian-Warrior-Purple-R8": 1896270341, - "Guest_Draconian-Caster-Blue-Boss-R7": 401581134, - "Guest_Draconian-Zombie-R8": 384497496, - "Guest_GH2-Draconian-HENCH-R10": 1149202878, - "Guest_GH2-Draconian-BOSS-R10": 2114378473, - "Guest_G14-DM-Draconian_Boss": 490246211, - "Guest_G14-DM-Draconian_Storm": 2035239226, - "Guest_G14-DM-Draconian_Ice": 782200563, - "Guest_G14-DM-Draconian_Malistaire_M": 1904691727, - "Guest_G14-DM-Draconian_Malistaire_S": 1904685583, - "Guest_G14-DM-Draconian_Malistaire_D": 1904700943, - "Guest_G14-DM-Draconian_Malistaire": 1904736751, - "Guest_G14-DM-Draconian_Malistaire_B": 1904702991, - "Guest_G14-DM-Draconian_Malistaire_I": 1904695823, - "Guest_G14-DM-Draconian_Malistaire_L": 1904692751, - "Guest_G14-DM-Draconian_Malistaire_F": 1904698895, - "Guest_Draconian-PW-Gauntlet-Boss": 493080513, - "Guest_CC_Draconian_A_01": 551348115, - "Guest_AZ-Parasaur-Undead-E": 2041242846, - "Guest_AZ-Parasaur-drkPriestF-F": 898239615, - "Guest_EM_Parasaur_DrkPriestF_A_01": 1007099606, - "Guest_EM_Parasaur_DrkPriestF_A_02": 1007099605, - "Guest_AZ-Parasaur-drkPriestF-D": 898501759, - "Guest_AZ-Parasaur-drkPriestF-E": 898370687, - "Guest_AZ-Parasaur-drkPriestF-A": 897846399, - "Guest_AZ-Parasaur-Undead-B": 1716853538, - "Guest_AZ-Parasaur-Undead-A": 106240802, - "Guest_AZ-Parasaur-Undead-G": 967501022, - "Guest_AZ-Parasaur-PriestF-D": 1177445525, - "Guest_AZ-Parasaur-Undead-C": 1179982626, - "Guest_AZ-Parasaur-drkPriestF-C": 897584255, - "Guest_AZ-Parasaur-Undead-SkurkisMinion": 1414766977, - "Guest_AZ-Parasaur-drkPriestF-B": 897715327, - "Guest_AZ-Parasaur-drkPriestF-B-Script": 1414847875, - "Guest_AZ_Parasaur_Priest_A_Boss_01": 890025421, - "Guest_AZ-Parasaur-Undead-D": 1504371934, - "Guest_AZ-Pteranodon-Knight-D": 1127364049, - "Guest_AZ-StoneSkeletonKey-Ixcax-Cursedwing": 699239601, - "Guest_AZ-Pteranodon-Knight-E": 1127363921, - "Guest_AZ-Pteranodon-Knight-F": 1127363793, - "Guest_AZ-Pteranodon-Knight-A-PageEvent": 942589002, - "Guest_AZ-StoneSkeletonKey-Minion-Death": 311645584, - "Guest_AZ-Pteranodon-Knight-A": 1127364433, - "Guest_AZ-Raptor-Wraith-A": 585729247, - "Guest_AZ-Raptor-Undead-D": 893623689, - "Guest_G14-HS-Ifzt": 1914694612, - "Guest_AZ-Raptor-Warrior-A": 855749884, - "Guest_AZ-Raptor-Undead-C": 897293705, - "Guest_AZ-Raptor-Undead-B": 896769417, - "Guest_AZ-Raptor-Undead-F": 894672265, - "Guest_AZ-Raptor-Warrior-F": 872527100, - "Guest_AZ-Raptor-Warrior-H": 973190396, - "Guest_AZ-Tritops-Warrior-I": 1942669769, - "Guest_AZ-Tritops-Undead-H": 1215305911, - "Guest_AZ-Tritops-Undead-E": 1164974263, - "Guest_AZ-Tritops-SpkWarrior-A": 860850257, - "Guest_AZ-Tritops-SpkWarrior-B": 860862545, - "Guest_AZ-Tritops-Undead-F": 1181751479, - "Guest_AZ-Tritops-Warrior-K": 868927945, - "Guest_AZ-Tritops-Undead-G": 1198528695, - "Guest_AZ-Tritops-Mummy-A": 1912444877, - "Guest_AZ-Tritops-Warrior-G": 1278555704, - "Guest_AZ-Tritops-Undead-D": 1148197047, - "Guest_AZ-Tritops-Undead-A": 1097865399, - "Guest_AZ-Tritops-SpkChief-B": 2096319577, - "Guest_AZ-Tritops-Mummy-B": 1910872013, - "Guest_AZ-Tritops-Warrior-H": 1405798857, - "Guest_AZ-Dino-Undead-A": 508678670, - "Guest_AZ-Dino-Undead-B": 508679182, - "Guest_AZ-Dino-Undead-D": 508680206, - "Guest_KR_Dino_Undead_A": 1638800628, - "Guest_KR_Dino_Undead_Minion_A": 892450235, - "MNT_HayRideTruck": 75377404, - "MNT_ShadowSpiderForm": 1439860426, - "Transformation_BG_Draconian_Death": 794598804, - "PP_BabyOrca": 1056061090, - "Transformation_BG_Cyclops_Fire": 638854828, - "Transformation_BG_Fairy_Ice": 874078461, - "PP_SpriteLife": 1824998010, - "PP_Raccoon": 1107326808, - "PP_FireKitten": 593048189, - "MNT_SkeletalDuck": 1306273036, - "PP_VampireSquid": 431023109, - "PP_CottonCandy": 891201813, - "PP_ThreeHeadGoat": 1282096939, - "PP_EyeBot": 260189248, - "MNT_DeathBoat": 1444454568, - "MNT_Lemuria": 908974762, - "MNT_DeathBoat_B": 1444456538, - "MNT_DeathBoat_C": 1444456474, - "MNT_Spooky3": 1667775622, - "MNT_PresentBox": 122082000, - "MNT_Orca": 1726961653, - "Guest_LM_Golem_Steel_A_01": 19551853, - "Guest_LM_Golem_Steel_A_02": 36329069, - "Guest_LM_EyeBot_A_01_Death": 380508535, - "Guest_LM_EyeBot_A_01_Myth": 167840640, - "PP_ThreeHeadGoat_B": 1209286443, - "PP_ThreeHeadGoat_C": 1211383595, - "Guest_KR_Eel_Whirligig_A": 1062268734, - "Guest_KR_Goliath_Behemoth_A": 1231139987, - "Guest_KR_Goliath_Behemoth_C": 1231139995, - "Guest_KR_Goliath_Behemoth_D": 1231139975, - "Guest_KR_Goliath_Behemoth_E": 1231139971, - "Guest_KR_Goliath_Behemoth_H": 1231140023, - "Guest_KR_Goliath_Crusher_C": 1651720060, - "Guest_KR_Goliath_Crusher_D": 2106376324, - "Guest_KR_Goliath_Crusher_F": 1032634500, - "Guest_KR_Goliath_Crusher_G": 495763588, - "Guest_KR_Goliath_Crusher_K": 1651720059, - "Guest_AZ-Goliath-Crusher-A": 1874784966, - "Guest_AZ-Goliath-Crusher-B": 264172230, - "Guest_AZ-Goliath-Crusher-C": 801043142, - "Guest_AZ-Goliath-Crusher-D": 809569594, - "Guest_AZ-Goliath-Crusher-E": 272698682, - "Guest_HG_AKT_Butterfly_Time_A_25": 1788523059, - "Guest_HG_AKT_Butterfly_Time_A_50": 1130017331, - "Guest_HG_AKT_Butterfly_Time_A_75": 1809494579, - "Guest_HG_AKT_Butterfly_Time_A_100": 1113240099, - "Guest_HG_AKT_Butterfly_Time_A_130": 1515893283, - "MNT_DeathBoat_D": 1444456922, - "Guest_KR_RhinoBeetle_Sun_A_Bossfight": 47895417, - "Guest_KR_RhinoBeetle_Star_A": 1947510103, - "Guest_KR_RhinoBeetle_Moon_A": 1751275863, - "Guest_ME1_Clockwork_Marine_A": 1481452452, - "Guest_ME1_Clockwork_Marine_B": 1481452068, - "Guest_CC_GoldSkeletonKey_Lice_DeepSpawn_B": 1306132994, - "Guest_KR_DamdinBazar_A_Bossfight": 1333596311, - "Guest_DS-Minion-MAW2": 356796677, - "Guest_KH-Wyrmling-1": 116330513, - "Guest_KH-Wyrmling-20": 183439385, - "Guest_KH-Wyrmling-40": 317657113, - "Guest_KH-Wyrmling-60": 451874841, - "Guest_KH-Wyrmling-80": 586092569, - "Guest_PL_Polar_Bear_Solider_C": 1785662565, - "Guest_Skeleton-Silver-WCBoss-L01": 17766963, - "Guest_Banshee-Red-Elite-L24_B": 1902069117, - "Transformation_BG_WolfWarrior_Myth": 339098032, - "Transformation_BG_RatThief_Balance": 881728218, - "Transformation_BG_Colossus_Storm": 593527492, - "Transformation_BG_Elf_Life": 347405087, - "Transformation_BG_Minotaur_Ice": 1197752291, - "MNT_TRex_B": 660285500, - "PP_SpriteDark_Ice": 2036248504, - "MNT_RollingBall": 1658139390, - "Guest_LM_TRex_Base_A_03": 1378630657, - "Guest_LM_TRex_Base_A_04": 1378745345, - "Guest_LM_TRex_Base_A_05": 1378728961, - "Guest_LM_TRex_Base_A_01": 1378663425, - "Guest_LM_TRex_Base_A_02": 1378647041, - "Guest_LM_TRex_Cyborg_A_01": 151609741, - "Guest_LM_TRex_Cyborg_A_02": 168386957, - "Guest_LM_TRex_Cyborg_A_03": 185164173, - "Guest_LM_TRex_Cyborg_B_01": 151611277, - "Guest_LM_TRex_Cyborg_D_01": 151612301, - "Guest_LM_TRex_Cyborg_E_01": 151611789, - "Guest_LM_TRex_Cyborg_C_01": 151610765, - "Guest_LM_Draconian_Base_A_01": 1607373112, - "Guest_LM_EyeBot_B_01": 1085543056, - "Guest_LM_Drone_Eye_C_01": 916954037, - "Guest_LM_Drone_Eye_D_01": 1230529608, - "Guest_LM_Drone_Eye_D_02": 1230545992, - "Guest_LM_Drone_Eye_D_04": 1230578760, - "Guest_LM_Drone_Eye_D_03": 1230562376, - "Guest_LM_Drone_Eye_A_01": 916954038, - "Guest_LM_Drone_Eye_A_02": 916937654, - "Guest_LM_Drone_Eye_B_01": 1230529611, - "Guest_LM_Drone_Eye_D_05": 1230595144, - "Guest_LM_Drone_Eye_D_07": 1230627912, - "Guest_LM_Drone_Eye_D_08": 1230644296, - "Guest_LM_Drone_Eye_A_03": 916921270, - "Guest_LM_Drone_Eye_A_04": 916904886, - "Guest_LM_Drone_Eye_C_02": 916937653, - "Guest_LM_EyeBot_B_02": 1061940593, - "Guest_LM_EyeBot_B_03": 1085543055, - "Guest_LM_EyeBot_B_04": 1061940594, - "Guest_LM_Drone_Eye_C_03": 916921269, - "Guest_LM_Robot_Kit10_A_01": 199936400, - "Guest_LM_Colossus_Mander_A_01": 2107529026, - "Guest_LM_Robot_Future_A_01": 998840846, - "Guest_LM_Robot_FutureBIG_A_01": 340408568, - "Guest_LM_Robot_FutureBIG_A_02": 340396280, - "Guest_LM_Robot_FutureBIG_A_03": 340400376, - "Guest_LM_Robot_OldOne_A_01": 779070973, - "Guest_LM_Robot_OldOne_A_02": 1315941885, - "Guest_LM_Millipede_Centi_A_01": 168575797, - "Guest_LM_Millipede_Centi_A_03": 168583989, - "Guest_LM_Millipede_Centi_A_02": 168588085, - "Guest_LM_Millipede_Centi_A_04": 168563509, - "Guest_LM_Moth_Sorcerer_A_01": 228191136, - "Guest_LM_Boar_Barbarian_A_01": 1238634912, - "Guest_LM_Boar_Barbarian_A_02": 1238634528, - "Guest_LM_Boar_Barbarian_A_03": 1238634656, - "Guest_LM_Boar_Barbarian_A_04": 1238635296, - "Guest_LM_Boar_Barbarian_A_05": 1238635424, - "Guest_LM_Boar_Chief_A_01": 357051311, - "Guest_LM_Fungus_Humango_A_01": 1398460044, - "Guest_LM_Fungus_Humango_A_02": 1398460172, - "Guest_LM_Treant_Base_A_01": 1658172241, - "Guest_LM_GiantTree_EvilRoots_A_01": 282225934, - "Guest_LM_PA_GreenMan_A_01": 67705044, - "Guest_LM_Fungus_Humango_B_01": 1348128396, - "Guest_LM_Fungus_Humango_A_03": 1398460300, - "Guest_LM_Fungus_Man_C_01": 1648824156, - "Guest_LM_Fungus_Man_C_02": 1650397020, - "Guest_LM_Rhino_Zombie_A_01": 248513993, - "Guest_LM_Malughast_Base_01": 883820436, - "Guest_LM_Malughast_Base_02": 1420691348, - "Guest_LM_Lemur_HierarchF_H_04": 231562115, - "Guest_LM_Malughast_Base_03": 1957562260, - "Guest_LM_Malughast_Base_05": 1263663212, - "Guest_LM_Malughast_Base_06": 726792300, - "Guest_LM_Malughast_Base_08": 346949523, - "Guest_LM_Malughast_Base_09": 883820435, - "Guest_LM_Malughast_Base_04": 1800534124, - "Guest_LM_Minotaur_Skeleton_A_01": 1865122824, - "Guest_LM_Lemur_Wild_B_03": 1783764037, - "Guest_LM_Lemur_HierarchF_H_01": 231541635, - "Guest_LM_Lemur_HierarchF_H_02": 231553923, - "Guest_LM_Mander_Warrior_A_01": 1651245419, - "Guest_LM_Mander_Warrior_A_02": 1651245291, - "Guest_LM_Mander_Warrior_B_01": 1634468203, - "Guest_LM_Mander_Warrior_B_02": 1634468075, - "Guest_LM_Mander_Warrior_A_03": 1651245163, - "Guest_LM_Mander_Warrior_B_03": 1634467947, - "Guest_LM_Mander_Warrior_A_06": 1651245803, - "Guest_LM_Mander_Warrior_A_05": 1651245931, - "Guest_LM_Mander_Mummy_B_01": 1844111521, - "Guest_LM_Mander_Hero_B_01": 865113284, - "MNT_HolidayHippogriff": 938892112, - "MNT_Sabertooth_Ice": 1870381696, - "PP_FenrisWolf_Bantam": 776647759, - "MNT_JetPack": 1986300552, - "MNT_Scooter_F": 1005560708, - "PP_FossaKitten_A": 431748212, - "PP_Elfvis": 147991405, - "Guest_LM_Chicken_Hero_A_01": 1308728300, - "Guest_LM_Horse_Explorer_A_01": 434405482, - "Guest_LM_Duck_HeroineF_A_01": 133199186, - "Guest_LM_Crane_Hero_A_01": 204272548, - "Guest_LM_Deer_HeroineF_A_01": 1800374959, - "Guest_LM_Deer_Hero_A_01": 223109503, - "Guest_LM_Dog_Hero_A_01": 1434615064, - "PP_YearTiger": 777048708, - "MNT_Barrel": 3576425, - "MNT_Krampus": 404117611, - "PP_ChineseTigerCub": 1256032005, - "PP_Lemur": 565774155, - "PP_Robot": 1089075331, - "PP_Capybara": 451970762, - "Guest_LM_Ghoul_Base_A_01": 1822415945, - "Guest_LM_Lemur_HierarchF_H_03": 231549827, - "Guest_LM_Ghoul_Base_A_02": 1820843081, - "Guest_LM_Ghoul_Base_A_03": 1821367369, - "MNT_SpringSoF2022": 1685679511, - "MNT_WarElephant": 875015497, - "PP_Strix": 514230046, - "MNT_Beachball": 791896033, - "MNT_Blank": 633398131, - "MNT_CardboardFlier": 1646636689, - "MNT_LochMonster": 879660722, - "Transformation_BG_Krok_Death": 1395067182, - "Transformation_BG_Draconian_Fire": 1551581732, - "PP_Scotty": 1708580475, - "Guest_KR_Mice_Knight_A": 480101508, - "PP_Peacock": 1178721112, - "MNT_PoodleMoth": 975420235, - "PP_Hummingbird": 624666906, - "PP_WolfWarrior_Myth": 470737416, - "Guest_HG_UFD_Ghost_QueenF_A_100": 795323059, - "Guest_HG_UFD_Ghost_QueenF_A_50": 728230579, - "Guest_HG_UFD_Pirate_UndeadHighland_A_Balance_150": 201145133, - "Guest_HG_UFD_Pirate_UndeadHighland_A_Balance_100": 201144941, - "Guest_HG_UFD_Pirate_UndeadHighland_A_Balance_50": 201177701, - "Guest_HG_UFD_Pirate_UndeadHighland_A_Star_150": 1329885920, - "Guest_HG_UFD_Pirate_UndeadHighland_A_Star_100": 1304720096, - "Guest_HG_UFD_Pirate_UndeadHighland_A_Star_50": 1305768671, - "Guest_HG_UFD_Pirate_UndeadHighland_A_Shadow_150": 1263689971, - "Guest_HG_UFD_Pirate_UndeadHighland_A_Shadow_100": 1263689977, - "Guest_HG_UFD_Pirate_UndeadHighland_A_Shadow_50": 189949177, - "Guest_HG_UFD_Kelpie_Warrior_A_150": 54296095, - "Guest_HG_UFD_Kelpie_Warrior_A_100": 725384735, - "Guest_HG_UFD_Kelpie_Warrior_A_50": 708607503, - "Guest_HG_UFD_Pirate_UndeadHighland_B_150": 1099317831, - "Guest_HG_UFD_Pirate_UndeadHighland_B_100": 25576008, - "Guest_HG_UFD_Pirate_UndeadHighland_B_50": 159793864, - "Guest_HG_UFD_Ghost_QueenF_A_150": 795716275, - "PP_SpiderMinion": 557357331, - "MNT_Vines_Rainbow": 1587180338, - "MNT_YoungDrake": 1279496198, - "PP_Pet_Coconut": 444388490, - "DragonKI": 1490194214, - "PP_Sharkfish": 601628284, - "PP_MimicCake": 48071878, - "Guest_AQ-Bronze-Eagle": 375279744, - "Guest_Spider-Brown-L26": 2128680185, - "Guest_KR_Spider_Giant_D": 744401035, - "Guest_Wizard-Female-Band-Blue-R8": 1447486557, - "Guest_CC_Human_DSCrusaderF_A_01": 726538068, - "Guest_WC_Scarecrow_A_01": 867491011, - "Guest_WC_Banshee_A_01": 1433786463, - "Guest_WC_LostSoul_A_01": 796936146, - "PP_Fairy_Myth": 1117624344, - "PP_SpriteDark_Myth": 1884257976, - "BG_CyclopsLife_A": 944091673, - "Transformation_BG_NinjaPig_Storm": 2005137181, - "Transformation_BG_Fairy_Myth": 1880704188, - "Transformation_BG_Cyclops_Life": 638936708, - "Guest_AQ-Eagle-Praetorian": 1988013806, - "Guest_KM_BabyCarrot_A_01": 766239512, - "Guest_G14-DM-Gargoyle": 282898047, - "Guest_MR_Durvish_Sergeant_A_Boss_01": 1532609325, - "Guest_Cyclops-RedHelmet-KTBoss-L28": 2072371506, - "Guest_EM_Pig_Singer_A_01": 698597069, - "Guest_EM_Pig_Captain_A": 977505995, - "Guest_EM_Pig_Crewman_A": 465576459, - "PP_ChipmunkConductor": 1089819900, - "PP_LuckyCat": 1109326826, - "MNT_ImpCar": 1736092191, - "MNT_Book": 1547655078, - "MNT_JackoLantern": 649919658, - "MNT_Zheng": 742453108, - "MNT_Train": 413197899, - "MNT_Cerberus": 552686313, - "PP_Coconut": 1122741587, - "Transformation_Statue": 1153168084, - "Transformation_Nullity": 622504394, - "PP_Irk": 1825277392, - "Guest_Wyrmling-Fire-R8-1": 531485009, - "MNT_WolfLowPoly_A": 1947890962, - "MNT_WolfLowPoly_B": 1947825426, - "Transformation_BG_RatThief_Fire": 1169330235, - "Transformation_BG_WolfWarrior_Death": 159966683, - "Transformation_BG_Minotaur_Balance": 657855108, - "Transformation_BG_Draconian_Ice": 1907339814, - "Transformation_BG_Colossus_Myth": 1305894338, - "Transformation_NV_Penguin": 1757096851, - "Transformation_NV_Unicorn": 60447768, - "Transformation_NV_Monkey": 1379873688, - "Transformation_NV_Dog": 1961288968, - "PP_Wolf_Storm": 455227171, - "PP_WoodDuck": 1680912895, - "MNT_RockingHorse": 1205280059, - "MNT_SOF2022_Car": 219868812, - "PP_Buffaloon": 796152873, - "MNT_Steamboat": 1969530127, - "MNT_FelizNavidog": 847046394, - "PP_Mustache": 1571079379, - "Guest_DD-DS01-Skeleton-Pirate-20": 226826848, - "Guest_DD-DS01-Skeleton-Pirate-40": 201661024, - "Guest_DD-DS01-Skeleton-Pirate-60": 210049632, - "Guest_DD-DS01-Skeleton-Pirate-80": 251992672, - "Guest_DD-DS01-Skeleton-Pirate": 1994450336, - "Guest_DD-DS01-Shadow-Minion-Fire": 1074864956, - "Guest_DD-DS01-Shadow-Minion-Ice": 1841681214, - "Guest_DD-DS01-Shadow-Minion-Fire-20": 1074880881, - "Guest_DD-DS01-Shadow-Minion-Fire-40": 1074880945, - "Guest_DD-DS01-Shadow-Minion-Ice-20": 96850220, - "Guest_DD-DS01-Shadow-Minion-Ice-40": 96850218, - "Guest_DD-DS01-Shadow-Minion-Fire-60": 1074881009, - "Guest_DD-DS01-Shadow-Minion-Ice-60": 96850216, - "Guest_DD-DS01-Shadow-Minion-Fire-80": 1074880561, - "Guest_DD-DS01-Shadow-Minion-Ice-80": 96850214, - "Guest_SC-SpectreOfB-1": 1471950935, - "Guest_SC-SpectreOfB-20": 1471942759, - "Guest_SC-SpectreOfB-40": 1471942663, - "Guest_SC-SpectreOfB-60": 1471942695, - "Guest_SC-SpectreOfB-80": 1471942855, - "Guest_KH-Skeleton-Ice-60": 2108358962, - "Guest_KH-Skeleton-Ice-40": 2108391730, - "Guest_KH-Skeleton-Ice-20": 2108293426, - "Guest_KH-Skeleton-Ice-1": 2099953970, - "Guest_KH-Skeleton-Ice-80": 2108195122, - "Guest_KH-Undead-Caster-60": 1662604496, - "Guest_KH-Undead-Caster-40": 1661555920, - "Guest_KH-Undead-Caster-20": 1664701648, - "Guest_KH-Undead-Caster-1": 1931564240, - "Guest_KH-Undead-Caster-80": 1667847376, - "Guest_DD-PA01-DeadBeets": 1664999367, - "Guest_DD-PA01-DeadBeets-20": 1901453253, - "Guest_DD-PA01-DeadBeets-40": 2002116549, - "Guest_DD-PA01-DeadBeets-60": 1968562117, - "Guest_DD-PA01-DeadBeets-80": 2069225413, - "Guest_DD-PA01-Disparagus": 1865816461, - "Guest_DD-PA01-Disparagus-20": 573970895, - "Guest_DD-PA01-Disparagus-40": 499770929, - "Guest_DD-PA01-Disparagus-60": 1573512753, - "Guest_DD-PA01-Disparagus-80": 1647712718, - "Guest_DD-PA01-MeanestFlyTrap": 2001546861, - "Guest_DD-PA01-MeanestFlyTrap-20": 1936326253, - "Guest_DD-PA01-MeanestFlyTrap-40": 1936064109, - "Guest_DD-PA01-MeanestFlyTrap-60": 1935801965, - "Guest_DD-PA01-MeanestFlyTrap-80": 1937636973, - "Guest_HG-MD-MacDeath-20": 182639104, - "Guest_HG-MD-MacDeath-40": 182638080, - "Guest_HG-MD-MacDeath-60": 182637056, - "Guest_HG-MD-MacDeath-80": 182636032, - "Guest_HG-MD-MacDeath-100": 174252032, - "Guest_HG-MD-MacDeath-130": 174202880, - "Guest_HG_Sinbad_Skeleton_25": 494617874, - "Guest_HG_Sinbad_Skeleton_50": 42253050, - "Guest_HG_Sinbad_Skeleton_75": 1115994862, - "Guest_HG_Sinbad_Skeleton_100": 2105232646, - "Guest_HG_Sinbad_Skeleton_130": 2105232650, - "Guest_HG_Sinbad_Skeleton_25_02": 492722834, - "Guest_HG_Sinbad_Skeleton_50_02": 44148090, - "Guest_HG_Sinbad_Skeleton_75_02": 1117889902, - "Guest_HG_Sinbad_Skeleton_100_02": 2044247302, - "Guest_HG_Sinbad_Skeleton_130_02": 2044247306, - "Guest_DD-AV01-WyrmBoss": 1648677986, - "Guest_DD-AV01-WyrmBoss-20": 1926730850, - "Guest_DD-AV01-WyrmBoss-40": 1927779426, - "Guest_DD-AV01-WyrmBoss-60": 1928828002, - "Guest_DD-AV01-WyrmBoss-80": 1921487970, - "Guest_RH-Wyrm-Boss-01": 1027277645, - "Guest_RH-Wyrm-Boss-20": 1027277660, - "Guest_RH-Wyrm-Boss-40": 1027277663, - "Guest_RH-Wyrm-Boss-60": 1027277662, - "Guest_RH-Wyrm-Boss-80": 1027277657, - "Guest_HG_Sinbad_Wyrm_25": 1101443356, - "Guest_HG_Sinbad_Wyrm_50": 1101528860, - "Guest_HG_Sinbad_Wyrm_75": 1101445916, - "Guest_HG_Sinbad_Wyrm_100": 1093138204, - "Guest_HG_Sinbad_Wyrm_130": 1093089052, - "Guest_KH-Treant-1": 2001244331, - "Guest_KH-Treant-60": 1968148651, - "Guest_KH-Treant-40": 1968017579, - "Guest_KH-Treant-20": 1967886507, - "Guest_KH-Treant-80": 1967231147, - "Guest_DD-PA01-ForestGrump": 1969685870, - "Guest_DD-PA01-ForestGrump-20": 714666713, - "Guest_DD-PA01-ForestGrump-40": 714666689, - "Guest_DD-PA01-ForestGrump-60": 714666697, - "Guest_DD-PA01-ForestGrump-80": 714666737, - "Guest_DD-PA01-ForestNymphs": 227087348, - "Guest_DD-PA01-ForestNymphs-20": 227023552, - "Guest_DD-PA01-ForestNymphs-60": 227023040, - "Guest_DD-PA01-ForestNymphs-80": 227024832, - "Guest_SC-Pig-BalanceWizardA-1": 475456968, - "Guest_SC-Pig-BalanceWizardA-20": 477550024, - "Guest_SC-Pig-BalanceWizardA-40": 477541832, - "Guest_SC-Pig-BalanceWizardA-60": 477533640, - "Guest_SC-Pig-BalanceWizardA-80": 477525448, - "Guest_SC-Pig-BalanceWizardB-1": 475456964, - "Guest_SC-Pig-BalanceWizardB-20": 477550020, - "Guest_SC-Pig-BalanceWizardB-40": 477541828, - "Guest_SC-Pig-BalanceWizardB-60": 477533636, - "Guest_SC-Pig-BalanceWizardB-80": 477525444, - "Guest_SC-Pig-BalanceWizardC-1": 475456960, - "Guest_SC-Pig-BalanceWizardC-20": 477550016, - "Guest_SC-Pig-FireWizard-1": 2048176291, - "Guest_SC-Pig-FireWizard-20": 2031399073, - "Guest_SC-Pig-FireWizard-40": 2132062369, - "Guest_SC-Pig-FireWizard-60": 2098507937, - "Guest_SC-Pig-FireWizard-80": 1930735777, - "Guest_SC-Pig-IceWizardF-1": 1178687744, - "Guest_SC-Pig-IceWizardF-20": 1161910526, - "Guest_SC-Pig-IceWizardF-40": 1128356094, - "Guest_SC-Pig-IceWizardF-60": 1094801662, - "Guest_SC-Pig-IceWizardF-80": 1329682686, - "Guest_SC-Pig-MythWizard-1": 2048492725, - "Guest_SC-Pig-MythWizard-20": 2031715511, - "Guest_SC-Pig-MythWizard-40": 2132378807, - "Guest_SC-Pig-MythWizard-60": 2098824375, - "Guest_SC-Pig-MythWizard-80": 1931052215, - "Guest_SC-Pig-StormWizardF-1": 1743849420, - "Guest_SC-Pig-StormWizardF-20": 1743851464, - "Guest_SC-Pig-StormWizardF-40": 1743851488, - "Guest_SC-Pig-StormWizardF-60": 1743851480, - "Guest_SC-Pig-StormWizardF-80": 1743851504, - "Guest_KH-Pig-Bandit-Lord-1": 1080496628, - "Guest_KH-Pig-Bandit-Lord-20": 543625652, - "Guest_KH-Pig-Bandit-Lord-40": 530116172, - "Guest_KH-Pig-Bandit-Lord-60": 1603857996, - "Guest_KH-Pig-Bandit-Lord-80": 1617367475, - "Guest_KH-Pig-Bandit-Ninja-1": 1945100907, - "Guest_KH-Pig-Bandit-Ninja-20": 1945102951, - "Guest_KH-Pig-Bandit-Ninja-40": 1945102975, - "Guest_KH-Pig-Bandit-Ninja-60": 1945102967, - "Guest_KH-Pig-Bandit-Ninja-80": 1945102927, - "Guest_KH-Pig-War-Caster-1": 656859765, - "Guest_KH-Pig-War-Caster-20": 606528119, - "Guest_KH-Pig-War-Caster-40": 572973687, - "Guest_KH-Pig-War-Caster-60": 539419255, - "Guest_KH-Pig-War-Caster-80": 774300279, - "Guest_KH-Pig-War-Warrior-Boss-1": 16342355, - "Guest_KH-Pig-War-Warrior-Boss-20": 2143724205, - "Guest_KH-Pig-War-Warrior-Boss-40": 2118558381, - "Guest_KH-Pig-War-Warrior-Boss-60": 2126946989, - "Guest_KH-Pig-War-Warrior-Boss-80": 2101781165, - "Guest_SC-Pig-BalanceWizardC-40": 477541824, - "Guest_SC-Pig-BalanceWizardC-60": 477533632, - "Guest_SC-Pig-BalanceWizardC-80": 477525440, - "Guest_KH-Helephant-Death-20": 1109389719, - "Guest_KH-Helephant-Death-40": 2111835753, - "Guest_KH-Helephant-Death-60": 1038093929, - "Guest_KH-Helephant-Death-80": 35647896, - "Guest_KH-GreyOgre-Spider-1": 356368404, - "Guest_KH-GreyOgre-Spider-20": 1966981204, - "Guest_KH-GreyOgre-Spider-40": 1254244268, - "Guest_KH-GreyOgre-Spider-60": 180502444, - "Guest_KH-GreyOgre-Spider-80": 893239379, - "Guest_HG_Sinbad_Colossus_25": 1190802829, - "Guest_HG_Sinbad_Colossus_50": 1493551719, - "Guest_HG_Sinbad_Colossus_75": 419809907, - "Guest_HG_Sinbad_Colossus_100": 653933977, - "Guest_HG_Sinbad_Colossus_130": 653933973, - "Guest_NV_Dino_AberrantUndead_A_01": 2035087398, - "Guest_NV_Hellephant_Aberrant_A_01": 989522333, - "Guest_NV_Hellephant_Aberrant_A_02": 989522334, - "Guest_NV_BananaSpider_Base_A_01": 1585810541, - "Guest_NV_BananaSpider_Base_A_02": 1581616237, - "Guest_NV_BananaSpider_Base_A_03": 1577421933, - "Guest_NV_BananaSpider_Base_A_04": 1606782061, - "Guest_NV_BananaSpider_Base_A_05": 1602587757, - "Guest_NV_Wyrm_Aberrant_A_01": 16108415, - "Guest_NV_Monkey_Zombie_A_01": 1854775300, - "Guest_NV_Monkey_Zombie_A_02": 1854775304, - "Guest_NV_Monkey_Zombie_A_03": 1854775308, - "Guest_NV_Monkey_Zombie_A_04": 1854775312, - "MNT_Flag_Monster": 867940056, - "Guest_SKB_WY_DarkBramble_A_30": 2046798767, - "Guest_SKB_WY_DarkBramble_A_50": 2046797999, - "Guest_SKB_WY_DarkBramble_A_100": 2044701359, - "Guest_SKB_WY_DarkBramble_A_150": 2044721839, - "Guest_SKB_GH_Boar_A_30": 1547921275, - "Guest_SKB_WC_SpiritIgnorance_A_50": 1488876986, - "Guest_SKB_WC_SpiritIgnorance_A_100": 2025748410, - "Guest_SKB_WC_SpiritIgnorance_A_150": 2025748413, - "Guest_SKB_DS_Loremaster_A_50": 527751539, - "Guest_SKB_DS_Loremaster_A_100": 527817059, - "Guest_SKB_DS_Loremaster_A_150": 527817699, - "Guest_SKB_CL_Dan_A_50": 637418706, - "Guest_SKB_CL_Dan_A_60": 1510064941, - "Guest_SKB_CL_Dan_A_100": 637410512, - "Guest_SKB_CL_Dan_A_150": 637410432, - "Guest_SKB_AV_Spectre_A_50": 2104631195, - "Guest_SKB_AV_Spectre_A_100": 2102534041, - "Guest_SKB_AV_Spectre_A_150": 2018647961, - "Guest_SKB_MS_Samoorai_A_50": 2029641915, - "Guest_SKB_MS_Samoorai_A_100": 2096750843, - "Guest_SKB_MS_Samoorai_A_150": 587603717, - "Transformation_BG_Krok_StromTemplate": 1317694546, - "PP_ChineseRabbit": 382941643, - "PP_ParadeElf": 1036247808, - "MNT_HeartSwarm": 918199310, - "MNT_SpringSOF2023": 1417178519, - "Transformation_BG_Elf_Death2Template": 1606653101, - "MNT_GummyBunny_D": 775840224, - "Transformation_BG_Krok_Life2Template": 747486212, - "PP_Flame": 959186933, - "PP_YachtRock": 1500927358, - "PP_PirateYachtRock": 1227549100, - "PP_ChickenMonster": 1845706534, - "PP_SnowHoppers_B": 1496460038, - "PP_SnowHoppers_C": 1496457990, - "MNT_Oarfish": 29720265, - "PP_RingTailedCat": 993143427, - "MNT_Fanboat": 19347694, - "MNT_MiniSub": 298697910, - "PP_DumboOctopus": 966435639, - "PP_Glowbug_Balance": 1405529577, - "PP_Glowbug_Death": 405117107, - "PP_Glowbug_Fire": 651698987, - "PP_Glowbug_Ice": 2124926395, - "PP_Glowbug_Life": 601367299, - "PP_Glowbug_Myth": 592978024, - "PP_Glowbug_Storm": 61190446, - "PP_DumboOctopus_B": 968448823, - "PP_DumboOctopus_C": 968383287, - "PP_BananaSpider_01": 1074383522, - "PP_BananaSpider_02": 1080674978, - "PP_BananaSpider_03": 1078577826, - "Guest_HG_NM_BeardDragon_Base_C_01": 82913785, - "Guest_HG_NM_BeardDragon_Base_C_02": 82913786, - "Guest_HG_NM_BeardDragon_Base_C_03": 82913787, - "Guest_HG_NM_Glowbug_Base_C_01": 544959703, - "Guest_HG_NM_Glowbug_Base_C_02": 544955607, - "Guest_HG_NM_Glowbug_Base_C_03": 544951511, - "Guest_HG_NM_Glowbug_Base_C_04": 544947415, - "Guest_HG_NM_Glowbug_Base_C_05": 544943319, - "Guest_HG_NM_Glowbug_Base_C_06": 544939223, - "Guest_HG_NM_Glowbug_Base_C_07": 544935127, - "MNT_BouquetofFlowers": 1511180560, - "PP_Piggle_Rainbow": 91081383, - "MNT_Sabertooth_FlameSaber": 1949516909, - "Guest_HG_NM_BeardDragon_Base_A_01": 83175929, - "Guest_HG_NM_BeardDragon_Base_A_02": 83175930, - "Guest_HG_NM_BeardDragon_Base_A_03": 83175931, - "Guest_HG_NM_BeardDragon_Base_B_01": 83044857, - "Guest_HG_NM_BeardDragon_Base_B_02": 83044858, - "Guest_HG_NM_BeardDragon_Base_B_03": 83044859, - "Guest_HG_NM_Glowbug_Base_B_01": 8088791, - "Guest_HG_NM_Glowbug_Base_B_02": 8084695, - "Guest_HG_NM_Glowbug_Base_B_03": 8080599, - "Guest_HG_NM_Glowbug_Base_B_04": 8076503, - "Guest_HG_NM_Glowbug_Base_B_05": 8072407, - "Guest_HG_NM_Glowbug_Base_B_06": 8068311, - "Guest_HG_NM_Glowbug_Base_B_07": 8064215, - "Guest_HG_NM_Glowbug_Base_A_01": 1618701527, - "Guest_HG_NM_Glowbug_Base_A_02": 1618697431, - "Guest_HG_NM_Glowbug_Base_A_03": 1618693335, - "Guest_HG_NM_Glowbug_Base_A_04": 1618689239, - "Guest_HG_NM_Glowbug_Base_A_05": 1618685143, - "Guest_HG_NM_Glowbug_Base_A_06": 1618681047, - "Guest_HG_NM_Glowbug_Base_A_07": 1618676951, - "MNT_SummerSOF2023": 1636120912, - "PP_Cyclops_Fire": 7821755, - "PP_Death_Elf": 1535744155, - "PP_Newt": 1438123483, - "PP_Echidna": 735439358, - "MNT_Wombat": 580544786, - "Transformation_BG_NinjaPig_Balance": 1799661438, - "Transformation_BG_Cyclops_Ice": 647975824, - "Transformation_BG_Minotaur_Storm": 1005667041, - "Transformation_GR_Parasaur_Priest_Ice": 1101466351, - "Transformation_GR_Parasaur_Priest_Fire": 892193041, - "Transformation_GR_Parasaur_Priest_Storm": 1525882116, - "Transformation_GR_Parasaur_Priest_Balance": 1127637476, - "Guest_GR_AZ_Parasaur_Undead_B_01": 322587487, - "MNT_WitchCat": 1167097888, - "PP_RolyPoly": 578538330, - "PP_Capybara_B": 628131532, - "MNT_OutbackTruck": 1815527801, - "PP_PoodleSailor": 2137704795, - "MNT_PolarianCannon": 2103490826, - "PP_TazmanianDevil": 1773548765, - "Guest_SKB_AZ_Ixcax_A_100": 556560994, - "Guest_SKB_AZ_Ixcax_A_150": 556610146, - "Guest_SKB_AZ_Ixcax_A_50": 564951650, - "MNT_GhoulsShovel": 2035610946, - "PP_CrystalBdayDragon": 1897078804, - "PP_SunGobblerBall": 1522469440, - "PP_Sun_GreenGobbler": 1337690394, - "MNT_2P_AutumnTreant": 1063435527, - "PP_AutumnTreant": 561077291, - "MNT_FlyingMonkey": 490807393, - "PP_BabyPlantMonster": 2076646587, - "MNT_PlantCreature_A": 1802823265, - "Transformation_BG_Fairy_Fire": 2065252898, - "Transformation_BG_Krok_Myth": 277926564, - "Transformation_BG_RatThief_Life": 1167758651, - "Transformation_BG_Elf_Balance": 1628238937, - "Transformation_BG_Colossus_Death": 184392004, - "Transformation_FortressPod": 139738335, - "P_Wombat_POLYMORPH": 1132264953, - "PP_SharkWobbegong": 1994247222, - "PP_ChineseNYDragon": 1126999021, - "PP_JingleBellRock": 1076037919, - "PP_Krok_Mummy_Myth": 438487583, - "PP_Cyclops_Ice": 1476966187, - "MNT_OutbackTruckB": 1813299577, - "MNT_EvilSnowmanBall": 758818712, - "MNT_ThanksgivingGobbler": 1760011910, - "Guest_WL_Ghost_LostSoul_A_01": 1224111704, - "Guest_WL_Kangaroo_Drover_F_01": 2025562931, - "Guest_WL_Spider_WarriorMage_C_01": 1296557888, - "Guest_WL_Spider_WarriorMage_C_02": 1430775616, - "Guest_WL_Spider_WarriorMage_C_03": 1564993344, - "Guest_WL_Spider_WarriorMage_C_04": 1699211072, - "Guest_WL_Spider_WarriorMage_C_05": 1833428800, - "Guest_WL_Spider_WarriorMage_C_06": 1967646528, - "Guest_WL_Spider_WarriorMage_C_07": 2101864256, - "Guest_SKB_KR_Lightbane_A_100": 837930677, - "Guest_SKB_KR_Lightbane_A_160": 837930669, - "Guest_SKB_KR_Lightbane_A_50": 1309555019, - "Transformation_WL_Phantasmanian_DevilTemplate": 384891502, - "MNT_2P_LeaflessTreant": 623083386, - "PP_Minotaur_Ice": 700151737, - "MNT_Scooter_G": 737125252, - "Guest_WL_Frog_Owner_B_01": 767864686, - "MNT_SilentKnight": 646654812, - "Guest_WL_TRex_Base_A_01": 1842562033, - "Guest_WL_TRex_Base_B_01": 304921616, - "PP_Groundhog": 108643243, - "Guest_NV_Unicorn_Guard_C_04": 1845621, - "MNT_EmuPunk": 647315080, - "MNT_HeartBalloon": 798826551, - "PP_ValentineHoppers": 968693964, - "MNT_SpringSOF2024_Heckhound": 453640548, - "Guest_AQ-Centaur-Arion": 1856508139, - "Guest_AQ-Centaur-Artemis": 333294011, - "Guest_AQ-Horse-Sea": 724896200, - "Guest_KR_Horse_Warlord_A_Bossfight": 1302284326, - "Guest_KR_Horse_Warlord_A_BossfightSP": 1300726822, - "Guest_KR_Zebra_Thrall_A": 1250265667, - "Guest_KR_Zebra_Thrall_A_Boss_Minion": 345677011, - "Guest_KR_Zebra_Thrall_A_Gallery": 1520303483, - "Guest_KH-Gray-Horse-40": 1802231403, - "Guest_KH-Gray-Horse-20": 1802231307, - "Guest_G14-BP-Unicorn_Fencer_Boss": 1602044152, - "Guest_Horse-Merc-Brown-L37": 1831175255, - "Guest_Horse-Merc-Tan-L39": 1363854837, - "Guest_Horse-Merc-Tan-L39-1": 2085275127, - "Guest_Horse-Merc-Gray-MSBoss-L39": 1863452041, - "Guest_Horse-Merc-Gray-L39": 2039135564, - "Guest_Horse-Merc-Tan-L38": 1363330549, - "Guest_WC_Horse_Mercenary_Roberto": 891924774, - "Guest_ZF-Nathi-Yellowstripe-R11": 1505157721, - "Guest_ZF-TseTse-Main-R11-Boss": 114927854, - "Guest_ZF-TseTse-Elephant-R11": 894147273, - "Guest_ZF-Zebra-Impi-Raider-R11": 1378242919, - "Guest_ZF-Zebra-Warrior-Male-R10-1": 1791906265, - "Guest_ZF-Zebra-Senzan-Zebu-R10-Boss": 373712721, - "Guest_ZF-Zebra-Shaka-Zebu-R10-Boss": 662142985, - "Guest_ZF-Zebra-Warrior-Female-R10-02": 1507835670, - "Guest_ZF-Zebra-Warrior-Male-R10": 47075786, - "Guest_ZF-Zebra-Warrior-Male-R10-02": 1791906714, - "Guest_ZF-Zebra-Warrior-Male-R10-03": 1791906746, - "Guest_ZF-Zebra-Warrior-Male-R10-05": 1791906682, - "Guest_ZF-Zebra-Warrior-Male-R10-2": 1791906268, - "Guest_ZF_Zebra_Spectral_Guardian-R11": 431970996, - "Guest_CC_Horse_Apoc_A_01": 644668374, - "Guest_CC_Horse_Apoc_B_01": 644668390, - "Guest_CC_Horse_Apoc_C_01": 644668406, - "Guest_CC_Horse_Apoc_D_01": 644668294, - "Guest_CC_Horse_Apoc_D_02": 645192582, - "Guest_CC_Unicorn_CorsairF_B_01": 1378532506, - "Guest_CC_Unicorn_Duelist_B_01": 64891542, - "Guest_CC_Unicorn_Guard_B_01": 1075063242, - "Guest_CC_Unicorn_Guard_B_02": 1075063238, - "Guest_CC_Unicorn_Guard_B_03": 1075063234, - "Guest_NV_Horse_HordeSoldier_A_01": 504396960, - "Guest_NV_Horse_HordeSoldier_A_02": 101743776, - "Guest_NV_Horse_HordeOfficer_A_01": 343600992, - "Guest_NV_Horse_HordeSoldier_A_03": 235961504, - "Guest_NV_Horse_HordeOfficer_A_02": 209383264, - "Guest_NV_Horse_AberrantTungAk_A_01": 952263441, - "Guest_NV_Horse_AberrantTungAk_A_02": 952263537, - "Guest_NV_Horse_TungAk_B_01": 1194718672, - "Guest_NV_Horse_TungAk_B_02": 657847760, - "Guest_NV_Horse_HordeOfficer_B_01": 343596896, - "Guest_NV_Horse_HordeOfficer_B_02": 209379168, - "Guest_NV_Horse_TungAk_A_01": 1194669520, - "Guest_NV_Unicorn_Guard_C_01": 1845601, - "Guest_NV_Unicorn_Guard_A_01": 797025, - "Guest_NV_Unicorn_AberrantGuard_A_01": 739851573, - "Guest_NV_Unicorn_Guard_C_02": 1845613, - "Guest_NV_Unicorn_Guard_C_03": 1845609, - "Guest_NV_Unicorn_AberrantGuard_A_02": 739848501, - "Guest_NV_Unicorn_Guard_A_02": 797037, - "Guest_NV_Unicorn_AberrantGuard_A_03": 739849525, - "Guest_NV_Unicorn_AberrantGuard_A_04": 739846453, - "Guest_NV_Horse_HordeOfficer_A_03": 75165536, - "Guest_NV_Horse_HordeSoldier_A_04": 907050144, - "Guest_NV_Horse_HordeSoldier_A_05": 1041267872, - "Guest_NV_Horse_HordeSoldier_C_01": 504388768, - "Guest_HG_TRAIN_Horse_MustangFencerF_A_Balance_50": 871182987, - "Guest_HG_TRAIN_Horse_MustangFencerF_A_Balance_75": 871176715, - "Guest_HG_TRAIN_Horse_MustangFencerF_A_Life_100": 886489645, - "Guest_HG_TRAIN_Horse_MustangFencerF_A_Balance_25": 871177035, - "Guest_HG_TRAIN_Horse_MustangFencerF_A_Balance_100": 872231819, - "Guest_HG_TRAIN_Horse_MustangFencerF_A_Life_140": 1960231469, - "Guest_HG_TRAIN_Horse_MustangFencerF_B_100": 2089957067, - "Guest_HG_TRAIN_Horse_MustangFencerF_A_Life_25": 1700184589, - "Guest_HG_TRAIN_Horse_MustangFencerF_A_Life_50": 920044045, - "Guest_HG_TRAIN_Horse_MustangFencerF_A_Life_75": 1742127629, - "Guest_HG_TRAIN_Horse_MustangFencerF_A_Balance_140": 872223627, - "Guest_HG_TRAIN_Horse_MustangFencerF_B_50": 2089952970, - "Guest_HG_TRAIN_Horse_MustangFencerF_B_75": 57530654, - "Guest_HG_TRAIN_Horse_MustangFencerF_B_140": 2089957099, - "Guest_HG_TRAIN_Horse_MustangFencerF_B_25": 1131272477, - "Guest_LM_Horse_Explorer_A_01_Hard": 1711837140, - "Guest_WL_Unicorn_Guard_A_01": 1074538935, - "Guest_WL_Unicorn_CorsairF_E_01": 1378532603, - "Guest_WL_Unicorn_Warlord_A_01": 1321310496, - "Guest_KH-Gray-Horse-1": 1802239547, - "Guest_KH-Gray-Horse-60": 1802231371, - "Guest_KH-Gray-Horse-80": 1802231467, - "Transformation_BG_NinjaPig_Ice": 186026527, - "Transformation_BG_Cyclops_Storm": 897316984, - "PP_MinotaurBalance": 1344665951, - "PP_OrthusMoon": 1804503950, - "PP_CoolPineapple": 1149318906, - "PP_TwinkleStars": 766378011, - "PP_Scroll": 1613313091, - "PP_Colossus_Death": 40713075, - "PP_ColossusDeath": 530964029, - "PP_KILiveRock": 1975550570, - "MNT_Outrigger": 1417937299, - "MNT_BookWyrm": 2080129190, - "MNT_RacingSnail": 1996220963, - "MNT_UmbrellaCloud": 145762615, - "PP_PropellerCat": 2094718580, - "MNT_TRex_Shirt": 586746001, - "MNT_Swarm_Bee": 1625228695, - "MNT__CelestialMoon": 968360256, - "Guest_ME_Sinbad_IronSultan_150": 2001676223, - "Guest_ME_Sinbad_Cyclops_150": 1968943689, - "Guest_ME_Sinbad_Skeleton_150": 1031490819, - "Guest_ME_Sinbad_Colossus_150": 1727675806, - "Guest_ME_Sinbad_Skeleton_150_02": 970505475, - "Guest_ME_Sinbad_Wyrm_150": 19314443, - "Guest_ZF-Zebra-Inzinzebu-Bandit-R11": 430262550, - "Guest_ZF-Zebra-Warrior-Male-R10-04": 1791906650, - "PP_TwinkleStars_02": 805304347, - "PP_TwinkleStars_03": 803207195, - "PP_TwinkleStars_01": 799012891, - "Transformation_BodleianHarrow": 609627870, - "Guest_HG_Gryphon_OwlStatue_A_01_L170": 77756046, - "Guest_HG_Gryphon_OwlStatue_A_02_L170": 73561742, - "Guest_HG_Gryphon_OwlStatue_A_01_L100": 77752974, - "Guest_HG_Gryphon_OwlStatue_A_02_L100": 73558670, - "Guest_HG_Gryphon_OwlStatue_A_01_L50": 78277134, - "Guest_HG_Gryphon_OwlStatue_A_02_L50": 74082830, - "MNT_SummerSOF2024_JudgementWings": 1078163967, - "MNT_Pegasus_E": 131704054, - "MNT_PolarisHero": 665176426, - "PP_Duckana": 1128961578, - "PP_QueenBee": 833291695, - "Transformation_BG_Draconian_Balance": 2078940682, - "Transformation_BG_WolfWarrior_Fire": 1762248682, - "Transformation_BG_Minotaur_Death": 309090657, - "PP_WolfWarrior_Fire": 685685256, - "PP_WolfWarrior_Death": 1857202724, - "Guest_ME-GTAV01-WyrmBoss-150": 1482208618, - "Guest_ME_SpectreOfB_L150": 684104791, - "Guest_ME_MD_MacDeath_L150": 1128977615, - "Guest_ME_Pig_BalanceWizardA_L150": 959913724, - "Guest_ME_Pig_BalanceWizardB_L150": 959913712, - "Guest_ME_Pig_BalanceWizardC_L150": 959913716, - "Guest_ME_Pig_FireWizard_L150": 964392255, - "Guest_ME_Pig_IceWizardF_L150": 86941026, - "Guest_ME_Pig_MythWizard_L150": 964051241, - "Guest_ME_Pig_StormWizardF_L150": 2016383602, - "Guest_ME_Clock_Clockworker_L150": 1424569772, - "Guest_ME_Clock_ClockworkSpanner_L150": 1966824609, - "Guest_ME_Clock_Lugs_L150": 370290904, - "Guest_ME_Clock_Lucia_L150": 1857768409, - "MNT_EvilChair": 339577702, - "PP_Cyclops_Storm": 621464512, - "PP_Krokomummy_Life": 462432735, - "Transformation_CL_Rematch_Crustacean": 1686865207, - "Transformation_CL_Rematch_Protector": 1893951532, - "Transformation_CL_Rematch_Angler": 120412196, - "Transformation_CL_Rematch_Piscean": 1624106070, - "Transformation_Zebra_Template": 1900548493, - "Transformation_Zebra2_Template": 325099540, - "Transformation_Zebra3_Template": 325099524, - "Transformation_Zebra4_Template": 325099636, - "MNT_SweetSixteenBirthday": 1009398096, - "MNT_2P_TRex_Bones": 1618543266, - "MNT_SpringBumperCar": 1725007788, - "PP_WinterGoblin": 2025052443, - "PP_OnyxAnubis": 1552575189, - "PP_OttomanCat": 223541582, - "MNT_HolidayYeti": 780983974, - "MNT_IceSled": 979912604, - "MNT_TurtleDoves": 1850191638, - "MNT_KrokChariot": 559783620, - "MNT_Mustang": 1775949401, - "MNT_PumpkinBall": 382849054, - "Transformation_BG_Fairy_Storm": 836920873, - "Transformation_BG_Elf_Myth": 1506493664, - "Transformation_NinjaPig_Life": 816802847, - "Transformation_BG_Krok_Fire": 1060580712, - "Transformation_BG_Colossus_Balance": 1067963041, - "Transformation_BG_NinjaPig_Life": 441460895, - "PP_Penguin_03": 1623028104, - "Transformation_Duck_Librarian_B": 864067551, - "Transformation_Duck_Librarian_A": 859873247, - "Transformation_Duck_Adventurer": 194560769, - "Transformation_Gummy_Bunny_C": 1298087941, - "Transformation_Frog_Horned_A": 837201339, - "Transformation_Glowbug_Storm": 2096380446, - "Transformation_Marshmallow_Critter_A": 1036335317, - "Transformation_Snipe_Base_B": 232132109, - "Transformation_Snowball": 915248481, - "Transformation_Wombat_Base": 333435450, - "Transformation_Human_Malistaire": 1414887773, - "Transformation_Morganthe_E": 1745180054, - "Transformation_Spider_Grandfather": 1131773979, - "Transformation_Khrulhu_Dasein_B": 367878762, - "Transformation_Devourer_Base": 698770016, - "Transformation_Alien_Meteor": 638746168, - "Transformation_Nightmare_Malus": 704212821, - "Transformation_Daemon_Personal": 278266463, - "PP_ValentinesDay": 810003364, - "PP_BabyHippo": 422858138, - "PP_Aardwold": 1592150119, - "PP_Aardwold_C": 1902528613, - "MNT_Cobra": 472847981, - "MNT_Serpopard": 1629558909, - "MNT_Serpopard_B": 1629556867, - "MNT_Serpopard_C": 1629556931, - "PP_Fairy_Fire": 1847789544, - "MNT_Mustang_B": 1448793691, - "PP_FireElfMyth": 1933609060, - "MNT_KT-BoatRide": 1560860110 - } - } - } - }, - "253304353": { - "name": "class SharedPointer", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 253304353, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_lotInstanceGID": { - "type": "gid", - "id": 1, - "offset": 112, - "flags": 65567, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2010711536 - }, - "m_x": { - "type": "float", - "id": 2, - "offset": 120, - "flags": 65543, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 283788559 - }, - "m_y": { - "type": "float", - "id": 3, - "offset": 124, - "flags": 65543, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 283788560 - }, - "m_z": { - "type": "float", - "id": 4, - "offset": 128, - "flags": 65543, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 283788561 - }, - "m_yaw": { - "type": "float", - "id": 5, - "offset": 132, - "flags": 65543, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 357256328 - }, - "m_lotTemplateID": { - "type": "gid", - "id": 6, - "offset": 136, - "flags": 65543, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1344354096 - }, - "m_clusterGID": { - "type": "gid", - "id": 7, - "offset": 144, - "flags": 65543, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 112792526 - }, - "m_structureInstanceGID": { - "type": "gid", - "id": 8, - "offset": 152, - "flags": 65543, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2083588818 - }, - "m_structureTemplateID": { - "type": "gid", - "id": 9, - "offset": 160, - "flags": 65543, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 825960402 - }, - "m_isOutside": { - "type": "bool", - "id": 10, - "offset": 168, - "flags": 65543, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1999324940 - } - } - }, - "1412406294": { - "name": "class AnnounceRoundCinematicAction*", - "bases": [ - "CinematicAction", - "PropertyClass" - ], - "hash": 1412406294, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - } - } - }, - "1815822310": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1815822310, - "properties": { - "m_passName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 23, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2647581395 - }, - "m_hasPass": { - "type": "bool", - "id": 1, - "offset": 104, - "flags": 23, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1743355078 - }, - "m_grantedByRight": { - "type": "bool", - "id": 2, - "offset": 105, - "flags": 23, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 498060849 - } - } - }, - "252736215": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 252736215, - "properties": { - "m_Score": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 861759411 - }, - "m_statMods": { - "type": "class SharedPointer", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 836453997 - }, - "m_xpGain": { - "type": "unsigned int", - "id": 2, - "offset": 96, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1362161460 - }, - "m_wins": { - "type": "unsigned int", - "id": 3, - "offset": 100, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 431394798 - } - } - }, - "1411541191": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1411541191, - "properties": { - "m_animDataList": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1685449834 - } - } - }, - "1816766624": { - "name": "class ClientConfirmOption*", - "bases": [ - "ConfirmOption", - "ServiceOptionBase", - "PropertyClass" - ], - "hash": 1816766624, - "properties": { - "m_serviceName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2206028813 - }, - "m_iconKey": { - "type": "std::string", - "id": 1, - "offset": 168, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2457138637 - }, - "m_displayKey": { - "type": "std::string", - "id": 2, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3023276954 - }, - "m_serviceIndex": { - "type": "unsigned int", - "id": 3, - "offset": 204, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2103126710 - }, - "m_forceInteract": { - "type": "bool", - "id": 4, - "offset": 200, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1705789564 - }, - "m_confirmMessageTitleKey": { - "type": "std::string", - "id": 5, - "offset": 216, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1941136953 - }, - "m_confirmMessageTitleKeyAdvancedMode": { - "type": "std::string", - "id": 6, - "offset": 248, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3219201588 - }, - "m_confirmMessageKey": { - "type": "std::string", - "id": 7, - "offset": 280, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2088579351 - }, - "m_confirmMessageKeyAdvancedMode": { - "type": "std::string", - "id": 8, - "offset": 312, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2417239570 - }, - "m_promptSound": { - "type": "std::string", - "id": 9, - "offset": 344, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3178681510 - }, - "m_promptSoundAdvancedMode": { - "type": "std::string", - "id": 10, - "offset": 376, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1739626529 - }, - "m_acceptKey": { - "type": "std::string", - "id": 11, - "offset": 472, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3325790708 - }, - "m_declineKey": { - "type": "std::string", - "id": 12, - "offset": 504, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1679578008 - }, - "m_optionToConfirm": { - "type": "class SharedPointer", - "id": 13, - "offset": 536, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1224791766 - }, - "m_ignoreOption": { - "type": "std::string", - "id": 14, - "offset": 408, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1667595832 - }, - "m_ignoreAdvancedModeOption": { - "type": "std::string", - "id": 15, - "offset": 440, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2665095027 - } - } - }, - "253380892": { - "name": "class SharedPointer", - "bases": [ - "CloneActorCinematicAction", - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 253380892, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - }, - "m_position": { - "type": "class Vector3D", - "id": 2, - "offset": 124, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3697900983 - }, - "m_yawPitchRoll": { - "type": "class Vector3D", - "id": 3, - "offset": 136, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3349460132 - }, - "m_clonePlayer": { - "type": "bool", - "id": 4, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1369917873 - } - } - }, - "1414740256": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1414740256, - "properties": { - "m_value": { - "type": "s24", - "id": 0, - "offset": 76, - "flags": 16, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 812923009 - }, - "m_propertyID": { - "type": "unsigned int", - "id": 1, - "offset": 72, - "flags": 16, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1883057791 - } - } - }, - "1412474150": { - "name": "class ModifyPipsCinematicAction", - "bases": [ - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 1412474150, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - } - } - }, - "1817589212": { - "name": "class GraphicalItemCard", - "bases": [ - "GraphicalSpell", - "Spell", - "PropertyClass" - ], - "hash": 1817589212, - "properties": { - "m_templateID": { - "type": "unsigned int", - "id": 0, - "offset": 128, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1286746870 - }, - "m_enchantment": { - "type": "unsigned int", - "id": 1, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2217886818 - }, - "m_pipCost": { - "type": "class SharedPointer", - "id": 2, - "offset": 176, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3605704820 - }, - "m_regularAdjust": { - "type": "int", - "id": 3, - "offset": 192, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1420453335 - }, - "m_magicSchoolID": { - "type": "unsigned int", - "id": 4, - "offset": 136, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 893146499 - }, - "m_accuracy": { - "type": "unsigned char", - "id": 5, - "offset": 132, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2273914939 - }, - "m_treasureCard": { - "type": "bool", - "id": 6, - "offset": 197, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1764879128 - }, - "m_battleCard": { - "type": "bool", - "id": 7, - "offset": 198, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1332843753 - }, - "m_itemCard": { - "type": "bool", - "id": 8, - "offset": 199, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1683654300 - }, - "m_sideBoard": { - "type": "bool", - "id": 9, - "offset": 200, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1897838368 - }, - "m_spellID": { - "type": "unsigned int", - "id": 10, - "offset": 204, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1697483258 - }, - "m_leavesPlayWhenCastOverride": { - "type": "bool", - "id": 11, - "offset": 216, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 874407398 - }, - "m_cloaked": { - "type": "bool", - "id": 12, - "offset": 196, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 7349510 - }, - "m_enchantmentSpellIsItemCard": { - "type": "bool", - "id": 13, - "offset": 76, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 531590701 - }, - "m_premutationSpellID": { - "type": "unsigned int", - "id": 14, - "offset": 112, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1530256370 - }, - "m_enchantedThisCombat": { - "type": "bool", - "id": 15, - "offset": 77, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1895738923 - }, - "m_paramOverrides": { - "type": "class SharedPointer", - "id": 16, - "offset": 224, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2061635599 - }, - "m_subEffectMeta": { - "type": "class SharedPointer", - "id": 17, - "offset": 240, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1944101106 - }, - "m_delayEnchantment": { - "type": "bool", - "id": 18, - "offset": 257, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 191336919 - }, - "m_PvE": { - "type": "bool", - "id": 19, - "offset": 264, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 269492350 - }, - "m_delayEnchantmentOrder": { - "type": "enum SpellEffect::kDelayOrder", - "id": 20, - "offset": 72, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2526055263, - "enum_options": { - "SpellEffect::kAnyOrder": 0, - "SpellEffect::kFirst": 1, - "SpellEffect::kSecond": 2 - } - }, - "m_roundAddedTC": { - "type": "int", - "id": 21, - "offset": 260, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 112365451 - }, - "m_secondarySchoolID": { - "type": "unsigned int", - "id": 22, - "offset": 304, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2081206026 - } - } - }, - "256444830": { - "name": "class AnnounceSpellTextCinematicAction*", - "bases": [ - "CinematicAction", - "PropertyClass" - ], - "hash": 256444830, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_spellText": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2688705600 - } - } - }, - "1817311575": { - "name": "class ClientPetCastEffectActorCinematicAction", - "bases": [ - "PetCastEffectActorCinematicAction", - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 1817311575, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - } - } - }, - "254014761": { - "name": "class SharedPointer", - "bases": [ - "ObstacleCourseObstaclePathBase", - "ObstacleCourseObstacleBehavior", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 254014761, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - } - } - }, - "1414664130": { - "name": "class TextTagPair*", - "bases": [ - "PropertyClass" - ], - "hash": 1414664130, - "properties": { - "m_tag": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1764749335 - }, - "m_time": { - "type": "float", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 310085638 - } - } - }, - "253722957": { - "name": "class SharedPointer", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 253722957, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_gender": { - "type": "enum eGender", - "id": 1, - "offset": 176, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2121766730, - "enum_options": { - "Male": 1, - "Female": 0, - "Neutral": 2 - } - }, - "m_race": { - "type": "enum eRace", - "id": 2, - "offset": 180, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 390582957, - "enum_options": { - "Bat": 88066, - "BatLightning": 1472842576, - "Boar": 2624962, - "CatThug": 1855674386, - "ChristmasElf": 819908552, - "ChristmasSnowman": 1146515225, - "Colossus_Ice": 1063279538, - "Cyclops": 1691813655, - "DragonBeta": 417003588, - "DragonFriendly": 69049013, - "EvilSnowman": 1579630926, - "FireElf": 443793687, - "Firecat": 2045525741, - "Frog": 2274918, - "FrostBeetle": 7692383, - "GhostBlue": 1097396892, - "GhostGreen": 882822629, - "GhostRed": 560510742, - "GhostYellow": 909974358, - "Ghoul": 82556199, - "GoatMonk": 486215564, - "GolemBrass": 1057388325, - "GolemClockwork": 1143380031, - "GolemSteel": 1660583674, - "GolemWood": 1426849876, - "HalloweenCat": 1042869199, - "Heckhound": 626736403, - "Helephant": 719065368, - "Human": 79806088, - "Hydra": 70785800, - "Imp": 84361, - "Krokomummy": 555755242, - "Kroktut": 1352354178, - "Leprechaun": 2106466410, - "LeprechaunPattyDay": 380507781, - "LightningBat": 228257682, - "Mannequin": 428442544, - "Minotaur": 949570680, - "Mount_Broom": 94637995, - "Mount_Cat": 1150940211, - "Mount_Dragon": 1565720148, - "Mount_Horse": 2054712767, - "Mount_PlayerWings": 589829552, - "Nikkos": 1563122418, - "NinjaPig": 607400740, - "Orthus": 1552590225, - "Piggle": 1897753328, - "Piggle_Valentine": 687697592, - "Piggle_ValentinePart2": 1760391091, - "Pixie": 74836240, - "RatMagician": 885542120, - "SalamanderFire": 48480175, - "SalamanderIce": 2011152164, - "SalamanderStorm": 600331072, - "Satyr": 84793363, - "Scarab": 2143810477, - "Sheep": 86220083, - "SkeletonArmored": 1791586239, - "SnowSerpent": 138621543, - "Spider": 1603064269, - "SpiderBlack": 559353179, - "SpiderBrown": 557941675, - "SpiderCrystal": 2119625297, - "SpiderGolem": 1632616514, - "Sprite": 1889156557, - "SpriteDark": 1888685518, - "Stormzilla": 252684095, - "SunBird": 1602211198, - "Transformation_ArmoredSkeleton": 1861349834, - "Transformation_CatThug": 1175387611, - "Transformation_Cat_Bandit": 1012395694, - "Transformation_ClockworkGolem": 601121214, - "Transformation_Cyclops": 620156297, - "Transformation_DarkFairy": 1206757203, - "Transformation_DraconianSorcerer": 1212016810, - "Transformation_Draconian": 450730089, - "Transformation_EarthColossus": 140119452, - "Transformation_EvilSnowman": 1497097122, - "Transformation_FatGobbler": 634003800, - "Transformation_FireElemental": 822233230, - "Transformation_FireElf": 46585468, - "Transformation_FireSalamander": 2118418114, - "Transformation_Gobbler_Skinny": 162365207, - "Transformation_GolemSteel": 1329184184, - "Transformation_Ice_Colossus": 430406408, - "Transformation_Krokomummy": 1644615769, - "Transformation_MagmaMan": 545064542, - "Transformation_Mander": 88998828, - "Transformation_NinjaPig": 1029132174, - "Transformation_Ninja_Pig_04": 7093548, - "Transformation_RatThug": 1175352795, - "Transformation_RavenMystic": 1443197359, - "Transformation_StormElemental": 637088511, - "Transformation_Treant": 1874998327, - "Transformation_WarPig": 691088645, - "Transformation_WolfScout": 263523463, - "Transformation_WolfWarrior": 6092463, - "Transformationn_SkeletonPirate": 1821341863, - "Treant": 1396597132, - "Troll": 82261620, - "Unicorn": 550546918, - "Unknown": 718677478, - "Wolverine": 528843083, - "Wraith": 1788506505, - "Wyrmkin": 379044612, - "Transformation_CyrusDrake": 94277831, - "PetEgg": 1973167984, - "GhostLady": 493415959, - "Banshee": 827805677, - "GobblerRed": 250135875, - "Ghoul_Gravedigger": 161812468, - "SkeletonWarrior": 734585814, - "BansheeBoss": 806445565, - "Seraph": 1792950125, - "CrabKing": 277875784, - "UndeadCaster": 1680689397, - "DragonFrontier": 1829438301, - "HeckhoundGhost": 872406464, - "Mount_Unicorn": 212699468, - "Jellyfish": 910724608, - "SeaDragon": 1194541306, - "Turtle": 1897184620, - "Starfish": 1447562471, - "SpinyFish": 162948281, - "Mount_Gryphon": 2110522960, - "Mount_Shark": 1170186623, - "Mount_Manta": 979931598, - "Mount_Seahorse": 1554833818, - "Mount_Seahorse_Tough": 1245859453, - "Mount_Koi": 1150937409, - "Mount_Lobster": 2025618875, - "Mount_Turtle": 1490849128, - "VenusFlyTrap": 1612039757, - "GDN_MED_BabyCarrots": 327334743, - "GDN_SM_BoomShroom": 31324632, - "GDN_SM_Dandelion": 2058674142, - "GDN_SM_Disparagus": 1732989489, - "GDN_MED_EvilSnowPeas": 747408607, - "GDN_SM_FicklePickle": 205381955, - "GDN_SM_HappyHolidaisy": 1736236340, - "GDN_MED_HelephantEars": 1803669659, - "GDN_MED_HoneySickle": 424149132, - "GDN_LG_NinjaFig": 847338104, - "GDN_LG_SnapDragon": 1076151689, - "GDN_SM_StinkWeed": 845383431, - "GDN_MED_TrumpetVine": 1922690264, - "GDN_MED_VenusFlyTrap": 1560899638, - "GDN_SM_Laughodil": 1278979588, - "GDN_LG_BreadFruitBush": 533042934, - "GDN_MED_PricklyBearCactus": 1236846986, - "GDN_MED_KingParsley": 110148182, - "LeprechaunPatriotic": 414730890, - "SeraphYuletide": 1325846853, - "DragonGhost": 1502126893, - "UnicornNightmare": 604358256, - "EvilSnowmanSandman": 1579432150, - "Colossus_Spirit": 422514215, - "Rock": 2393554, - "GDN_MED_GivingTree": 2047236132, - "Egg": 70853, - "Mount_Carpets": 1602744888, - "Kraken": 1737191829, - "Wyvern": 1727802601, - "Phoenix": 1765559002, - "Judgement": 562901781, - "ForestLord": 1390734923, - "Humongofrog": 1272123051, - "Scarecrow": 41441599, - "Mount_Ram": 77196599, - "BasketSnake": 1835657086, - "Samoorai": 522797493, - "Transformation_RavenWarrior": 701169336, - "PhoenixStorm": 1325268802, - "PhoenixDeath": 1281634042, - "GDN_LG_CouchPotatoes": 879742725, - "GDN_MED_KeyLimes": 811516024, - "Mount_BoneDragon": 1023618313, - "Mount_BigBoneDragon": 1124383680, - "Mount_FairyWings": 1904926612, - "Mount_DragonWings": 755225925, - "Mount_Pegasus": 1621244140, - "GDN_MED_BellPepper": 1710238687, - "GDN_MED_GrapesOfWrath": 1068787103, - "GDN_SM_TigerLily": 1899057048, - "WysteriaPiggle": 49173891, - "Mount_Wyvern": 1658410744, - "Mount_2P_Rhino": 1052779475, - "NightHawk": 358964390, - "Giraffe": 935214826, - "Mount_Hawk": 2070898895, - "Mount_HalloweenNightmare": 726136378, - "GobblerHalloween": 1482399836, - "Leopard": 1606863715, - "Skink": 76950867, - "Mount_Ostrich": 466111322, - "Mount_Crocagator": 1981222087, - "Transformation_Blacktusk-01": 401543565, - "Mount_Hippogriff": 2043817624, - "Transformation_Gorilla-01": 1555853240, - "Transformation_Gorilla-02": 1606184888, - "Mount_Raven": 94983735, - "Mount_Chrismoose": 1822495199, - "Mount_CandyCane": 1148551147, - "Ivy_League": 925492799, - "GDN_MED_Ivy_League": 1630077794, - "Mount_Kirin": 1168691825, - "GDN_SM_Moonflower": 2068754330, - "GDN_MED_BoonTree": 788055729, - "Snowball": 2046118016, - "Foo_Dog": 1549710807, - "ShenlongDragon": 932676736, - "Monkey": 1233866291, - "Wolfhound": 626884686, - "Redcap": 1540319086, - "Raven": 79941650, - "HollowKnight": 1107268274, - "Book": 2405826, - "GDN_MED_AngoraBunnyEars": 1547559854, - "GDN_MED_FortuneCookieTree": 786686214, - "GDN_MED_GooseTree": 809354938, - "GDN_SM_HoneyBeePlant": 1528880373, - "GDN_MED_BambooShoots": 1096708900, - "GDN_SM_Huckleberries": 1937475840, - "Rock_Moustache": 962221287, - "Efreet_Myth": 1834555522, - "Efreet": 1401700123, - "Mammoth": 1395147745, - "Triton": 1730466188, - "Gnome": 74954215, - "BoneDragon": 429245206, - "Basilisk": 1457899086, - "Chimera": 529027789, - "Transformation_GammaTemplate": 1337834518, - "Mount_Camel": 1168198963, - "Mount_RenaissanceWings": 1049782088, - "Bull_Mount": 1713506759, - "Mount_Owl": 1150938242, - "Mount_Alphyn": 487264165, - "Mount_Stag": 1150353823, - "Mount_Auroch": 509865325, - "Mount_Warg": 1150358072, - "StrangeBeast": 511334734, - "Efreet_Ice": 1820009122, - "Efreet_Storm": 1269986674, - "GDN_LG_AlligatorPear": 1293913372, - "Mount_2P_Treant": 928450863, - "Mount_2P_Dragon": 1431637933, - "Mount_Pogo_Stick_WC": 1462849298, - "Mount_Pogo_Stick_MB": 1349603090, - "GDN_LG_MeltingCheese": 1914589015, - "GDN_SM_FishOnAVine": 1734955358, - "GDN_LG_AngelOak": 1539539424, - "GDN_LG_MeltingCheese_Angel": 1254781264, - "SnowyOwl": 1682262138, - "Mount_3P_Hydra": 1207475250, - "WeaselMinstrel": 1541234616, - "MOUNT_Rickshaw": 938282973, - "Transformation_Sherlock-Bones": 509126601, - "Mount_Phoenix": 556355452, - "Toaddle": 597488187, - "Pantera": 528797696, - "WildfireTreant": 673362041, - "StoneTiger": 746336665, - "Blowfish": 1447737334, - "Smith": 78327187, - "FlyingCat": 1254472614, - "RamWarrior": 536916302, - "Ladybug": 1846384669, - "BurlapBoy": 607590898, - "DeerKnight": 560802130, - "Gargoyle": 1227701700, - "Chameleon": 596131510, - "Scorpion": 1462253104, - "GDN_SM_BoiledPeanuts": 544885684, - "GDN_SM_ClockFlower": 676513046, - "GDN_SM_DeadBeets": 650783482, - "GDN_MED_SnowApple": 1916648180, - "Eyecaramba_Violet": 1804780775, - "Eyecaramba_Green": 750346574, - "Eyecaramba_Orange": 687614854, - "Piggle_Grandfather": 131445665, - "Velociraptor": 1042311818, - "Babydactyl": 1180982194, - "Stegosaurus": 476811765, - "Mount_Pegasus_Spectral": 948250730, - "Mount_2P_Scarydactyl": 1808983335, - "Mount_2P_TRex": 1495851852, - "Therizinosaurus": 80337863, - "Runtosaurus": 476200406, - "FrilledLizard": 420993517, - "Mount_Ankylosaurus": 669692274, - "Mount_Triceratops": 1126950204, - "Mount_2P_Glider": 1630365881, - "Transformation_Thunderhorn": 1045262037, - "Transformation_Jaguar": 1080966062, - "Transformation_Pteranadon": 273836142, - "Transformation_ShadowWeaver": 255927111, - "Transformation_EagleWarrior": 1880471875, - "Mount_Falalalallama": 389890123, - "Mount_2P_WinterTreant": 1850265056, - "GDN_LG_MissileToe": 1767792974, - "GDN_MED_PointSetta": 647257205, - "Nutcracker2012": 1598217699, - "Coal2012": 1627852119, - "Mount_Sleigh": 1636615519, - "Mount_Sabertooth": 1613031507, - "Mount_MechanicalWings": 1014917438, - "PiranhaHunter": 686271163, - "Quetzal": 2020925822, - "Mount_Sloth": 1169387359, - "HollowKnightLife": 2114081886, - "BettaFish": 138088968, - "MummyCat": 62372925, - "TrojanHorse": 1725299194, - "WC_Storm_Possessed": 186960228, - "AV_Possessed": 1106693085, - "AZ_Possessed": 1106692701, - "CL_Possessed": 1106692255, - "KT_Possessed": 1106693015, - "MS_Possessed": 1106692977, - "WC_Possessed": 1106692459, - "Mount_2P_Whale": 448824263, - "Mount_2P_Chariot": 88035298, - "Mount_WarBoar": 1159836211, - "Mount_Palanquin": 47587550, - "BearCub": 672664722, - "Transformation_Minotaur": 1454233452, - "DragonGauntlet": 797645257, - "DeathUnicorn": 924144161, - "Flamingo": 1488424911, - "Mount_Gorilla": 1939919432, - "Mount_WarUnicorn": 1361393198, - "GargoyleMyth": 1819685060, - "TikiMan": 16098567, - "Siren": 79937811, - "GoldenRam": 410220227, - "Harpy": 96026632, - "SwordShield": 1668411785, - "ClockworkKnight": 1059948980, - "Mount_MechanicalEagle": 1720948645, - "Mount_Cloud": 1166233435, - "Mount_Surfboard": 1914250039, - "Mount_BetaDragon": 1023653721, - "Mount_BeeWings": 1387988401, - "Vampire": 524731385, - "FrankenBunny": 589797989, - "BumbleBee": 249592226, - "Mount_Dragonfly": 1028843656, - "BronzeGolem": 1320867859, - "TarantulaHawk": 1983939429, - "Mount_Grasshopper": 1852850928, - "FlyingSquirrel": 847551166, - "GDN_MED_Sunion": 1652707634, - "GDN_MED_SwordFern": 548761438, - "GDN_SM_SugarKhrystal": 267539461, - "GDN_SM_SawPalmetto": 1892888046, - "GDN_LG_FacePalm": 2050814140, - "GDN_LG_QueenCrapeMyrtle": 80378450, - "Transformation_ShadowTank": 1304943609, - "Transformation_ShadowHeal": 1254024185, - "Transformation_ShadowDPS": 87276537, - "Mount_Noelephant": 1383672248, - "SaintBernard": 572932242, - "ParkaFox": 2009808189, - "Goose": 75019719, - "Mount_Coconut": 791151432, - "CreepyBeetle": 345594179, - "BabyDragonfly": 1367084335, - "FennecFox": 41315063, - "PP_Leviathan": 833901526, - "PP_SunSerpent": 1062677009, - "PP_LordOfWinter": 960214698, - "PP_Medusa": 867812931, - "PP_Dryad": 147654656, - "PP_AvengingFossil": 315904647, - "PP_Sabertooth": 1799146677, - "Mount_Butterfly": 1283940943, - "Mount_Hare": 2070851023, - "Transformation_MorganthB": 197306990, - "Transformation_MorganthC": 197831278, - "Transformation_MorganthD": 200452718, - "BabyPegasus": 1215000859, - "ArcaneHelp": 1899247549, - "Mount_Vines": 98389624, - "Mount_ArcaneMinecart": 2001270930, - "Hobgoblin": 2133668461, - "Mount_2P_Rowboat": 237071469, - "ForestSpirit": 1178454602, - "Mount_SpiritWolf": 531991076, - "Otter": 84138671, - "OrigamiBird": 550984083, - "DinoSkeletal": 233277835, - "Mount_HarrowingsGreen": 1605746772, - "Mount_HarrowingsBlue": 477152436, - "Mount_HarrowingsPurple": 2092807554, - "RedPanda": 1744233845, - "Ibis": 2665577, - "Corgi": 78823875, - "Mount_Yak": 996545739, - "Mount_FlyingBalance": 436519643, - "Transformation_ShadowMalistaire": 1043814435, - "Transformation_DragonMalistaire": 841867699, - "Mount_Scarab": 1687658791, - "Transformation_MisterHound": 1973578844, - "Mount_BahHumbug": 55114077, - "Skates": 1568993965, - "Moose": 75019725, - "Mount_Gargoyle": 1456663874, - "GDN_MED_VenusFlyTrapEpic": 1594069606, - "Mount_PlayerWingsPink": 19403046, - "GDN_LG_AlligatorPearEpic": 1326804812, - "Pet_Armadillo": 825736847, - "Mount_JoustingDestrierDyeable": 1683448768, - "GDN_MED_VampireCarrots": 871596496, - "GDN_SM_WhiteTigerLilyEpic": 1703271434, - "GDN_LG_NinjaFigEpic": 938504823, - "GDN_LG_SnapDragonEpic": 2071674466, - "GDN_MED_HelephantEarsEpic": 719166107, - "GDN_MED_TrumpetVineEpic": 225854518, - "GDN_SM_DandelionEpic": 728637442, - "GDN_SM_HuckleberriesEpic": 1903258448, - "GDN_MED_SnowAppleEpic": 1231175967, - "GDN_SM_BoomShroomEpic": 981598771, - "GDN_MED_KingParsleyEpic": 2038371004, - "Mount_Raptor": 749695031, - "Pet_Toucan": 581477475, - "Pet_Squirrel": 969881395, - "Mount_WonkyDonkey": 1481657312, - "Mount_HawkPatriotic": 509149743, - "Pet_FrogAssistant": 1945041750, - "Mount_Cat2": 1151054899, - "Mount_Cat2BW": 1603515443, - "Pet_ArmadilloBW": 825733899, - "Pet_FrankieForearms": 1100195857, - "Mount_SolarSabre": 1281093703, - "MNT_MechOstrich": 258667969, - "MNT_BootsBalance": 1799191558, - "MNT_BootsDeath": 1034912971, - "MNT_BootsFire": 606061658, - "MNT_BootsIce": 2142643294, - "MNT_BootsLife": 773751898, - "MNT_BootsMyth": 144792486, - "MNT_BootsStorm": 1525245121, - "Pet_CorgiBirthday": 1951779369, - "OrigamiBirdBDay": 1909935955, - "Pet_FlyingBlackCat": 432111988, - "Mount_Narwhal": 449637834, - "Mount_NightOwl": 1648420845, - "Pet_Penguin": 137342907, - "MNT_PowerGemUnicorn": 411234062, - "Pet_CrystalButterfly": 512136094, - "Mount_BabyMammoth": 185831059, - "MNT_BabaYaga": 564874997, - "Pet_BabySeal": 657606984, - "Pet_BabyYeti": 635847496, - "Transformation_BallerinaBear": 1525333600, - "Mount_StagYuletide": 1508680687, - "Transformation_TitanMedium": 1700742736, - "Transformation_TitanLarge": 718614967, - "Pet_SirenIce": 849851564, - "Mount_FlyingDeath": 1717725588, - "Mount_FlyingFire": 1177216332, - "Mount_FlyingIce": 1238841184, - "Mount_FlyingLife": 433397684, - "Mount_FlyingMyth": 164983572, - "Mount_FlyingStorm": 375872049, - "Dragonling": 1730534849, - "Pet_EggChicken": 952873217, - "HeckhoundGhost_MAW": 893368960, - "Mount_WinterTrain": 751515281, - "Mount_RubberDucky": 1826548479, - "Pet_BansheeSpellwrit": 917979583, - "Pet_SamooraiSpellwrit": 370057597, - "Mount_UnicornAstral": 886914505, - "Guest_Boochbeard": 1958574095, - "Pet_MouseSister": 1267930350, - "Pet_MouseFather": 2010008339, - "Pet_VampireSquirrel": 250588691, - "Mount_CoffinCar": 1387606595, - "Mount_BabyElephant": 2026559639, - "Pet_RoadHog": 601156960, - "Mount_WolfGryphonWings": 543038283, - "MNT_ClockworkSteed": 891371132, - "Mount_Chopper": 1196683136, - "Pet_ButterflyLamb": 527214392, - "Pet_MouseMother": 2012687123, - "Pet_MouseBrother": 1174380856, - "Pet_Cherub": 769208559, - "GDN_SM_Jewel": 1104045832, - "MR_Death_Duncan_Grimwater": 1850289001, - "Mount_DesertRunner": 2049036229, - "Pet_MonkeyMirage": 418612892, - "Pet_ClockworkOwl": 1038482431, - "Pet_NinjaTurtle": 2024540686, - "Mount_Vines_Halloween": 82852149, - "Mount_SwarmBat": 1151836459, - "Mount_2P_NinjaDragon": 1239694057, - "Mount_Gobler": 1820615236, - "Mount_MaryleboneCar": 2027689685, - "JackOLantern": 1016361578, - "Transformation_DjinnCommonA_Balance": 996127128, - "Transformation_MedicineMode": 25960701, - "CactusHopper": 1956293007, - "Transformation_Mimic_ChestGold_A": 414145432, - "Mount_Ghoulture": 1067671195, - "Pet_Macaw": 1087278472, - "Pet_SandWorm": 653200803, - "Transformation_DromelDancer": 1071824116, - "Pet_Bunnies": 695874547, - "Mount_Snowboard": 1914380015, - "Transformation_DrommelDancer": 226294468, - "Mount_Carpet_New": 1618650322, - "Mount_BunnySleigh": 599915427, - "Helephant_Heart": 419161272, - "Mount_Snowboard_Holiday": 876339060, - "Transformation_GhostDog": 646575420, - "Transformation_PrinceGobblestone": 693826496, - "Transformation_Mithraya": 1240010601, - "Transformation_LuskaCharmbeak": 897469730, - "Transformation_YoungCyrusDrake": 15595663, - "Kookaburra": 1069759154, - "BorealisGolemPet": 797488492, - "FlyingEyePet": 505959833, - "StormCloudPet": 548463069, - "BullPet": 1993917801, - "OpossumPet": 284003652, - "GhoulturePet": 939920734, - "StormCloudPetB": 548463001, - "StormCloudPetC": 548463003, - "Guest_LordNightshade": 1221409981, - "BullPetB": 1993917561, - "BullPetC": 1993917553, - "BullPetD": 1993917513, - "Transformation_ShadowCrit": 1392195065, - "Mount_Pennyfarthing": 1551926344, - "Mount_RowboatPirate": 2079208803, - "Mount_IceCube": 1261861595, - "Guest_LostMaiden": 883675592, - "Guest_BoatswainMcGee": 1359750850, - "Guest_ChiefMateMcGurk": 329643845, - "Guest_DoomedBones": 2015643882, - "Guest_SpectreoftheBrocken": 266357448, - "Guest_DrownedKnight": 1100966093, - "Guest_TarntheDrowned": 329540205, - "Guest_DisloyalKnight": 1853240753, - "Guest_NamelessKnight": 1065677876, - "Guest_LambentFire": 489886605, - "Guest_LordoftheBrocken": 1662003371, - "Guest_StormCaiman": 1147500291, - "Guest_GrinningDeathMoon": 737595789, - "Guest_MoonSkullWight": 1720039490, - "Guest_HuemacSpearWreath": 1522021131, - "Guest_HowlingBanshee": 1340855338, - "Guest_Sea-Booter": 1818491983, - "Guest_DeadRover": 1009273257, - "Guest_CelestianRemnant": 1312268448, - "Guest_Shadow-WebConscript": 1500529411, - "Guest_Shadow-WebMercenary": 623672171, - "Guest_Shadow-WebWraith": 810956416, - "Guest_Shadow-WebHaunt": 500586883, - "Guest_CelestianPartisan": 633346892, - "Guest_CelestianDefender": 482102727, - "Guest_ThraleBonestriker": 1172972733, - "Guest_VorgenSoulbreaker": 1935693246, - "Guest_ServusBloodsword": 1703995647, - "Guest_QueenCalypso": 845803519, - "Guest_BlueBart": 77043390, - "Guest_KarolakNightspinner": 1008737316, - "Guest_ArachtusDuskweb": 1787750209, - "Guest_ZhalarStarcloud": 1453644105, - "Guest_NarallorNightborn": 1963363700, - "Guest_SelwynSkywatcher": 1413136893, - "Guest_OsseusNightreaver": 306827003, - "Guest_IrateBanshee": 865143109, - "Guest_FuriousHowler": 1607252558, - "Guest_CryingSpirit": 1559074820, - "Guest_UndeadDraconian": 169249571, - "Guest_ReanimatedDraconian": 247067807, - "Guest_GhastlySlave": 80127661, - "Guest_BoundSpecter": 369706568, - "Guest_NecroticHaunter": 1714841563, - "Guest_LoathsomeCreeper": 1087245229, - "Guest_FleshrotRetriever": 1925148031, - "Guest_BarbarianSpirit": 2112552732, - "Guest_BeghastionCrowcaller": 586628832, - "Guest_BeghastionFieldburner": 1650751959, - "Guest_BoneWarrior": 76802026, - "Guest_FleshlessSentry": 708431820, - "Guest_PirateRavager": 945157059, - "Guest_RottenScallywag": 974666855, - "Guest_ArmoredBonewalker": 1444568072, - "Guest_UndeadWizard": 1622435563, - "Guest_SoulSearcher": 2094392941, - "Guest_DecayingBlackguard": 412324062, - "Guest_FoulReaper": 919877614, - "Guest_NightShadow": 1675932226, - "Guest_MotleyCrew": 653779218, - "Guest_OrinGrimcaster": 472649066, - "Guest_GhostofSylviaDrake": 218332449, - "Guest_VikaMarkmaker": 1145181168, - "Guest_VasekAshweaver": 1001434369, - "Guest_FireWraith": 1027720368, - "Guest_HungrySoul": 1722435576, - "Guest_FrostBones": 456145606, - "Guest_SnowSkull": 835837850, - "Guest_WinterSkull": 1556601065, - "Guest_LothinDoombringer": 860995070, - "Guest_MimirWinterbane": 1111898070, - "Guest_KulgrimSoulsunder": 278037985, - "Guest_HitojiniDeathcaster": 1144499043, - "Guest_GaikotsuSkeleton": 1113949902, - "Guest_PhantomAce": 1917639347, - "Guest_PhantomGlider": 849918336, - "Guest_Krokomummy": 857773886, - "Guest_NiriniAncientGuard": 359313880, - "Guest_NiriniFireSpirit": 1863811476, - "Guest_VaultHaunter": 197723476, - "Guest_VigilantDefender": 171276829, - "Guest_WanderingAhnicSpirit": 1702865088, - "Guest_ForgottenDjeseritSoul": 1170568256, - "Guest_KaranahnDeathfeeder": 1612857711, - "Guest_ShamblingAhnic": 1579129677, - "Guest_RisenDjeserit": 287855500, - "Guest_KaranahnMortifier": 874288111, - "Guest_DjeseritDweller": 2058423665, - "Guest_AhnicStrider": 1776992302, - "Guest_GuardianoftheFang": 1816795524, - "Guest_DefenderoftheFang": 354353604, - "Guest_ProtectoroftheFang": 1290191037, - "Guest_SouloftheCharmed": 422890577, - "Guest_KaranahnKeeper": 77581557, - "Guest_NiriniIntimidator": 677205957, - "Guest_CondemnedSoldier": 449152244, - "Guest_NimahtheWicked": 1298248873, - "Guest_AkoriNirini": 1123159753, - "Guest_SoulScavenger": 892852198, - "Guest_KeeperoftheFang": 1676773499, - "Guest_ItennuSokkwi": 699159408, - "Guest_Tempestra": 334938435, - "Guest_QueenIrisiDjeserit": 1861434100, - "Guest_TheBonekeeper": 1302503449, - "Guest_CryptScavenger": 1893795791, - "Guest_Soulsapper": 1699756010, - "Guest_KingUroAhnic": 1788825731, - "Guest_KingShemetDjeserit": 1350067043, - "Guest_UnholyWraith": 1871146013, - "Guest_PikeSpiritcrusher": 498715531, - "Guest_SpellwritScreamer": 801626733, - "Guest_SpellwritRonin": 1671439174, - "Guest_Shrieker": 805966229, - "Guest_GravePhantom": 731622936, - "Guest_NightmareSpirit": 230709057, - "Guest_VengefulCreeper": 1100197884, - "Guest_TombRoamer": 1277825068, - "Guest_ShieldSkeleton": 1634270152, - "Guest_AgonyWraith": 30384496, - "Guest_IcyGhost": 768353592, - "Guest_Half-wittedSkeleton": 647996362, - "Guest_LazyHenchman": 1329554426, - "Guest_TiredFighter": 210248632, - "Guest_Screecher": 469007005, - "Guest_SeethingWraith": 664913100, - "Guest_ColdConfusion": 1304943934, - "Guest_OssuaryConscript": 1017667150, - "Guest_Ghulture": 1330558655, - "Guest_BodyGuard": 1048581801, - "Guest_SpectralGuardian": 422805602, - "Guest_VaultConscript": 1388398065, - "Guest_FootPatrol": 1692393321, - "Guest_ArmedGuard": 2045920536, - "Guest_Chilly": 1764665905, - "Guest_Achey": 973370519, - "Guest_Sneezy": 1769440773, - "Guest_Cough": 1170200073, - "Guest_Shadowbones": 1316133167, - "Guest_ForgottenConscript": 1466348281, - "Guest_BarracksGuardian": 236603440, - "Guest_CryptConscript": 314755436, - "Guest_DurvishSeeker": 1825622267, - "Guest_MedicineMode": 167015574, - "Guest_Myriarch2": 593881680, - "Guest_Myriarch3": 593881616, - "Guest_MyriarchEphialtes": 773531895, - "Guest_MotherGhulture": 1585201915, - "Guest_CaptainCosrow": 727107332, - "Guest_VizierRafaj": 214040637, - "Guest_DarkmoorSerf": 1522169114, - "Guest_DarkmoorSquire": 1822567109, - "Guest_ScarletWampyr": 1683954247, - "Guest_DraconianRevenant": 741497298, - "Guest_DraconianEidolon": 107733297, - "Guest_AnguishedWraith": 1078602022, - "Guest_DraconianPyromancer": 729577007, - "Guest_DraconianThaumaturge": 189734361, - "Guest_DraconianDiviner": 472633746, - "Guest_DraconianConjurer": 1824962835, - "Guest_DraconianTheurgist": 1828628416, - "Guest_DraconianNecromancer": 175364324, - "Guest_DraconianSorcerer": 1262893339, - "Guest_SirBlackwater": 366308464, - "Guest_AkhtangWormCrawl": 1589032404, - "Guest_SpiritofDarkmoor": 579455915, - "Guest_ShanevonShane": 2096517522, - "Guest_YevgenyNightCreeper": 1535282881, - "Guest_MalistairetheUndying": 824508513, - "Guest_Bunferatu": 1015806005, - "Guest_CountBelaBlackSleep": 761647679, - "Guest_DeathSoldier": 1715141574, - "Guest_SorrowWhisperer": 556532003, - "Guest_GriefSpectre": 1425488559, - "Guest_HowlingShade": 631460247, - "Guest_WalkingDead": 318527090, - "Guest_Akuji": 977635799, - "Guest_TorturedKakedaSoul": 1716874833, - "Guest_KakedaSpiritSlave": 1814699344, - "Guest_DishonoredSamoorai": 320085744, - "Guest_CursedRonin": 1204095686, - "Guest_TomugawatheEvil": 166125424, - "Guest_OyotomitheDefiler": 1672714483, - "Guest_Fushiko": 801492770, - "Guest_BrokenLandGuardian": 294671991, - "Guest_ShatteredSkyGuardian": 746681463, - "Guest_SunderedSeamGuardian": 1439618652, - "Guest_BrokenLandSpirit": 860105895, - "Guest_ShatteredSkySpirit": 2104112380, - "Guest_SunderedSeamSpirit": 69572311, - "Guest_LostSoul": 204361577, - "Guest_RottingFodder": 308249734, - "Guest_HauntedMinion": 689597338, - "Guest_FieldGuard": 1175228991, - "Guest_SkeletalWarrior": 778393993, - "Guest_SkeletalPirate": 1476730220, - "Guest_WanderingSpecter": 126188449, - "Guest_LivingScarecrow": 1442943145, - "Guest_FrostPhantom": 1809776664, - "Guest_FireShrieker": 173332719, - "Guest_CryptCrawler": 2118799272, - "Guest_ViridianSpecter": 383149977, - "Guest_ArgentClatterer": 525414714, - "Guest_SwimmingSpecter": 1494025094, - "Guest_ScarletScreamer": 1689589811, - "Guest_BoneDigger": 1351421123, - "Guest_HowlingGhost": 664019391, - "Guest_SkeletalSoldier": 750463116, - "Guest_MaidenofHate": 444442868, - "Guest_SkeletalRetainer": 1409032775, - "Guest_SoulHunter": 1900267551, - "Guest_MidnightShuffler": 1991052065, - "Guest_PlaguedSoul": 419071561, - "Guest_HauntingBanshee": 345837052, - "Guest_SimontheSayer": 1352807820, - "Guest_TheHarvestLord": 1923575206, - "Guest_LadyBlackhope": 1403431623, - "Guest_SergeantSkullsplitter": 898737831, - "Guest_Foulgaze": 2063419769, - "Guest_Wormguts": 788697519, - "Guest_Rattlebones": 125602919, - "Guest_Paulson": 1112716921, - "Guest_Grubb": 1167554274, - "Guest_Norton": 581021964, - "Guest_NightStalker": 1447653309, - "Guest_AddereTimeo": 1491420030, - "Guest_TheReaper": 1526369733, - "Guest_AngrusHollowsoul": 1427862805, - "Guest_OrrickNightglider": 951078615, - "Guest_SteelSentinel": 885250894, - "Guest_Shadow-WebSoldier": 2014925398, - "Guest_LostCeleste": 1725301830, - "Guest_CapnNigelSkullcrack": 1665439970, - "Guest_HaulAwayJoe": 1075985331, - "Guest_OldMaui": 15300840, - "Guest_LordAgue": 140791419, - "Guest_MelweenaSmite": 432188189, - "Guest_HalloweenTrickster": 2043736417, - "Guest_PumpkinHead": 1098332105, - "Guest_BaronMordecai": 817370918, - "Guest_KaimaniteMummy": 1332671420, - "Guest_VeggieRevanant": 928504192, - "Guest_BloodBat": 76467389, - "Guest_DeadBeets": 157829578, - "Guest_Desparagus": 1130644076, - "Guest_MeanestFly-Trap": 1652898868, - "Guest_Nosferabbit": 1021159436, - "Guest_ThrallofSothmekhet": 330780177, - "Guest_VileApparition": 426627869, - "Guest_SoulServant": 1183110886, - "Guest_SoulKeeper": 917518313, - "Guest_AdmiralBontau": 2032168402, - "Guest_DeathWhisperer": 3814952, - "Mount_RollerBlades": 111369373, - "Guest_BaneWyrm": 147033576, - "Guest_BlackDragon": 939469656, - "Guest_DragonSpawn": 1829803517, - "Guest_Fire-SpitterSpawn": 616624489, - "Guest_CaoranachtheFire-Spitter": 323513000, - "Guest_Jabberwock": 1552492834, - "Guest_CatalantheLightningLizard": 1155778705, - "Guest_WhiteDragon": 2009449331, - "Guest_WinterWyrm": 478925069, - "Guest_WyrmStatue": 2119216210, - "Guest_AlgidWyrm": 1309546482, - "Guest_BruleeSucre": 390936202, - "Guest_HebitohoWyrmling": 1682026810, - "Guest_Shadowwock": 505539184, - "Guest_EirikurAxebreaker": 1361453552, - "Guest_WarWyrm": 1124740742, - "Guest_StrayFireflier": 610979811, - "Guest_BurningFlamewing": 2041225130, - "Guest_FeralLavaling": 371483057, - "Guest_SplinterWing": 923421333, - "Guest_ChanticoBlueAir": 1572441903, - "Guest_CopperWingGuard": 302783602, - "Guest_ObsidianBeak": 2016227452, - "Guest_CaquixNineShadows": 2070101060, - "Guest_LustrousTlalocan": 1201030473, - "Guest_SeedThief": 263211181, - "Guest_PopZotzUnluckyDay": 1416773489, - "Guest_NezathePoet": 1905861376, - "Guest_MazenStingerBee": 1642023393, - "Guest_ImperialJusticePayne": 1285679745, - "Guest_AssistantWardenPorfiry": 22099059, - "Guest_MarshalKamensky": 524669730, - "Guest_WardenVissarovich": 882556823, - "Guest_GulagGuard": 100744159, - "Guest_CaptainKravchuck": 690830770, - "Guest_ImperialGuard": 346803640, - "Guest_IronPaw": 1797329688, - "Guest_TundarianEnforcer": 134256836, - "Guest_Ivan": 996220221, - "Guest_ColonelOrlov": 1381254189, - "Guest_IronPawIntakeCaptain": 2099184835, - "Guest_SolitaryWarden": 1503529566, - "Guest_CaptainZubkov": 793725366, - "Guest_SergeantBobrik": 722182485, - "Guest_WailingWraith": 946976407, - "EggChick": 1452316301, - "BunnyMallow": 518233330, - "Guest_ThunderHornZombie": 1007920040, - "Guest_SmokingMirrorZombie": 340971759, - "Guest_ShamblingZombie": 1920485146, - "Guest_MoonSkullZombie": 809249764, - "Guest_DeathlessStormHorn": 812397213, - "Guest_MozarTurtleHunter": 561749043, - "Guest_GuillermoShatterer": 499565054, - "Guest_XiuhcoatlBarbedTooth": 1719245305, - "Guest_AzcalFireAnt": 1281366337, - "Guest_TlotzinMoonThief": 407285761, - "Guest_PocaCruelStar": 1117353085, - "Guest_ThunderHornGhoul": 597878999, - "Guest_TezomocStoneSinger": 733511940, - "Guest_EzhuaBadTaste": 632779219, - "Guest_UacalxochitlBloodEye": 1614856226, - "Guest_WanadiBlackSky": 349829749, - "Guest_ElMarrow": 483880636, - "Guest_GrimCalaca": 1534029144, - "Guest_XipeFlayedOne": 1343577398, - "Guest_MotecumaDeathMask": 1782393717, - "Guest_EkeChuah": 13416770, - "Guest_AnacaonaBlackSnake": 1543344897, - "Guest_SmokingMirrorWight": 776452983, - "Guest_Tolkemec": 217428080, - "Mount_Fox": 77199428, - "PP_OwlProtege": 268847192, - "Mount_SharkSki": 331374103, - "PP_Dolphin": 1662291612, - "Mount_CastSymbol_D": 1134428045, - "Mount_CastSymbol_E": 1136525197, - "Mount_CastSymbol_F": 1138622349, - "Mount_CastSymbol_G": 1140719501, - "Mount_CastSymbol_A": 1128136589, - "Mount_CastSymbol_B": 1130233741, - "Mount_CastSymbol_C": 1132330893, - "Guest_LionSpectralGuardian": 1791543691, - "Guest_KillmareSpiritwalker": 1818928165, - "Guest_ZebraSpectralGuardian": 815933596, - "Guest_GorillaSpectralGuardian": 1635182119, - "Guest_IklawGhostWarrior": 373465545, - "Guest_BwanaShadowriver": 1307628747, - "Guest_ElephantSpectralGuardian": 1579402208, - "Guest_ZangaZebu": 1218173119, - "Guest_GrumishGreataxe": 486953385, - "PP_GlowFairy_A": 2028856748, - "Guest_RestlessSoldier": 1142701763, - "Guest_WanderingWizard": 209518514, - "Guest_ColonelIvanenko": 399169035, - "Guest_DetollitheDestroyer": 655767295, - "Guest_Jawniak": 1791298433, - "Guest_Tajniak": 356182394, - "Guest_Ygor": 996316081, - "Guest_KyaniteLancer": 2136703656, - "Guest_VestaShadowmark": 1846747836, - "Guest_ZoraSteelwielder": 1186470644, - "Guest_AndorBristleback": 1949884743, - "Guest_GalliumPaladin": 1812340868, - "Guest_GalliumFootman": 1295203112, - "Guest_GalliumShardtrooper": 1210699836, - "Guest_GalliumJuggernaut": 3527584, - "Guest_VladimirDarkflame": 1575322237, - "Guest_KyaniteLieutenant": 561528977, - "Guest_DrusillaMorningbane": 155837810, - "Guest_KyaniteValkyrie": 53242136, - "Transformation_20Q_SherlockBones": 1112674320, - "Guest_DevoraShadowcrown": 1813459117, - "Guest_YoualaNightDrinker": 881289828, - "Guest_Pendragon": 715669945, - "Guest_CelestianRevenant": 515730327, - "Guest_SoullessServant": 1505662730, - "Guest_SpiritServant": 104517373, - "Guest_SoulSerf": 1188214406, - "Guest_ServileSoul": 871844607, - "Guest_SkeletalCorsair": 239414410, - "Guest_RottedFodder": 1301186193, - "Guest_ScarletScreecher": 600457915, - "PP_FrankBunnyBride_A": 974707030, - "Guest_BastillaGravewynd": 2100015237, - "Guest_VilaraMoonwraith": 2067986693, - "Guest_YngvarSharptooth": 1783361972, - "Guest_TroubledWarrior": 1569033392, - "Guest_VeggieRevanant2": 928503904, - "Guest_VeggieRevanant3": 928503888, - "Guest_VeggieRevanant4": 928503872, - "Guest_VeggieRevanant5": 928503856, - "Guest_AncientQhatWarrior": 1564521104, - "Guest_EmperorPaleolo": 2079384347, - "Guest_SpiritofIntolerance": 1627658048, - "Guest_SpiritofInquiry": 1320544891, - "Guest_FirstGuardian": 1982227776, - "Guest_FallenMerc": 225926286, - "Guest_NightShadow2": 1638183490, - "Guest_NightShadow3": 1636086338, - "Guest_NightShadow2-2": 1436856907, - "Guest_NightShadow3-2": 1434759755, - "Guest_NightShadow4-2": 1432662603, - "Guest_NightShadow5-2": 1430565451, - "Guest_NightShadow6-2": 1428468299, - "Guest_NightShadow7-2": 1426371147, - "Guest_FirstScythe": 738854032, - "Guest_GreyMantisCaptain": 860186057, - "Guest_GreyMantisHunter": 1239274377, - "Guest_Atlach-Leng": 836136649, - "Guest_PetrovGloomstrider": 2045783873, - "Guest_NauyotolDownIntheHole": 1134251106, - "Guest_SandorSpearcaller": 1351072377, - "Guest_MavraFlamewing": 1477685600, - "Guest_Scaldling": 208751819, - "Guest_WoebegoneWraith": 1166488705, - "Guest_BorisBlackrock": 1365399915, - "Guest_KatiaFirewinter": 521255834, - "Guest_ValerikBrightsword": 1244055782, - "Guest_RurikFlamesoul": 1962726850, - "Guest_IonaPyrelance": 722266491, - "Guest_DarkPoltergeist": 818162178, - "Guest_TheCollector": 1772287612, - "Guest_ViktorSnowcrusher": 1028387381, - "Guest_ValeskaRedwind": 19316351, - "Guest_ScarrikGallowgaunt": 105397333, - "Guest_Neberyx": 1453883041, - "Guest_AsrikWidebelt": 401936422, - "Guest_GothricHonorbound": 750072340, - "Guest_HalfangBristlecrown": 618779562, - "Guest_OsvudFleetpaw": 1023466459, - "PP_PufferFish_A": 1578606029, - "Guest_OzelUnderwaterCat": 1033669302, - "PP_BabyGreenMan_A": 910025246, - "PP_SchoolTurtle_A": 1012620678, - "PP_DarkBalloon_A": 1229308566, - "MT_JetsamCopter": 92127678, - "Mount_4P_DarkClownCar": 420246262, - "MNT_BalloonsBunch": 2000358474, - "Guest_TempleGuardian": 632574316, - "Guest_TemplePhantom": 1701097840, - "Guest_MahonStarsearcher": 1549093341, - "Guest_LostKnight": 858980994, - "Guest_AnguishedWoodman": 174606918, - "Guest_TormentedTreant": 294050331, - "Guest_WildfireTreant": 1902129818, - "Guest_BlightedYaxche": 679097088, - "Guest_Junglethorn": 1734561424, - "Guest_Tangleroot": 2027061721, - "Guest_BlightedFreerooter": 1109803061, - "Guest_Winterbranch": 1170787806, - "Guest_DecayingBogwalker": 1338670789, - "Guest_BrownwoodTormentor": 1655181754, - "Guest_Wildroot": 1839747182, - "Guest_Ironsplinter": 668295157, - "Guest_Frostbranch": 75974631, - "Guest_KyoukonteiTreant": 474446232, - "Guest_BrokenStumps": 414724364, - "Guest_WordlessWoodsmen": 1813881830, - "Guest_DesiccatedTreebeard": 1826942903, - "Guest_ShadowoftheLand": 1612385317, - "Guest_TreeRoot": 1406633546, - "Guest_BefouledWoodwalker": 1517919498, - "Guest_ConfusedForestWarrior": 750805985, - "Guest_CrazedForestSpirit": 1007960507, - "Guest_Oakheart": 1158293719, - "Guest_SnowTreant": 1028620035, - "Guest_Snowbeard": 1997921701, - "Guest_BarkskinTreant": 2143957812, - "Guest_RazorleafTreant": 2133159197, - "Guest_CarrionFlowerMan": 1120698936, - "Guest_Kurokage": 355651925, - "Guest_LacombeStrawHouse": 568809873, - "Guest_BerkshireStickHouse": 1932133405, - "Guest_TamworthBrickHouse": 894027634, - "Guest_RustyTinderSpark": 1237916230, - "Guest_CoraWinterBranch": 1901918989, - "Guest_GrambleGoldRook": 1986988546, - "Guest_PiperStormTree": 1109520133, - "Guest_Hanadzura": 124838500, - "Guest_Kuchisaki": 2084188681, - "Guest_Kaizoku": 807430784, - "Guest_JaxonLastRites": 1653711119, - "Guest_SeijunKiller": 657647155, - "Guest_ZarichiTarakata": 1129212566, - "Guest_BladelessRonin": 1577395797, - "Guest_SanzokuOutlaw": 1682888807, - "Guest_SanzokuBandit": 1766198653, - "Guest_KakedaPainbringer": 1260119278, - "Guest_KakedaStalker": 367458449, - "Guest_KakedaShadow": 1604499626, - "Guest_KakedaSoulcrusher": 1961168112, - "Guest_ImitsuPlaguemaster": 1361539025, - "Guest_ImitsuDefouler": 1299791045, - "Guest_ImitsuPunisher": 234819300, - "Guest_StudentofKhai": 249757647, - "Guest_OtomoBattlemage": 918160114, - "Guest_OtomoCourier": 1373253378, - "Guest_OtomoSupplyRunner": 1580070577, - "Guest_OtomoScout": 1814051082, - "Guest_OtomoWrestler": 1053571230, - "Guest_OtomoFury": 111319603, - "Guest_Hyottoko": 307080225, - "Guest_Usunoki": 1881339626, - "Guest_Kagemoosha": 1842766119, - "Guest_UdoJin-e": 850816224, - "Guest_TakedaKanryu": 536087422, - "Guest_Tamauji": 818613882, - "Guest_Jikiru": 794167355, - "Guest_Nomoonaga": 849534658, - "Guest_Aiuchi": 515942855, - "Guest_Kurogaso": 1426248002, - "Guest_Ideyoshi": 1814038213, - "Guest_Koto": 1151260427, - "Guest_Usegi": 977549586, - "Guest_Kanago": 1644367227, - "Guest_Kyuto": 1168225979, - "Guest_Haru": 2070048389, - "Guest_Ashikata": 1523446928, - "Guest_Katsumori": 1823914597, - "Guest_Hingen": 1567896261, - "Guest_Yakedo": 502298497, - "Guest_Do-Daga": 1239945714, - "Guest_Maito": 979260804, - "Guest_TonkatsuThug": 1758658397, - "Guest_GobbloreanGuard": 1286210991, - "Guest_BabblingMeints": 413418139, - "Guest_PrinceGobblestone": 1813171676, - "Guest_GobblerMuncher": 1517159487, - "Guest_GobblerGorger": 130736772, - "Guest_GobblerScouter": 1509427587, - "Guest_GobblerGlutton": 1912199781, - "Guest_GobblerScavenger": 136586791, - "Guest_BaronGreebly": 1028182200, - "Guest_BaronRotunda": 457132907, - "PP_DeathMimic": 1811942047, - "Guest_GreenMan": 1126663802, - "Guest_ForestGrump": 1602350320, - "Guest_ErvintheBarbarian": 1671762776, - "Guest_RazortuskWarrior": 1109994549, - "Guest_RazortuskBrawler": 732265321, - "Guest_SplithoofRager": 1922134329, - "Guest_TuskedRaider": 1920114147, - "Guest_SviniBeserker": 1146317608, - "Guest_SviniReaver": 216717251, - "Guest_Shattertusk": 1191456730, - "Guest_SplithoofBarbarian": 296671728, - "Guest_Bloodseeker": 2086598239, - "Guest_Scarsnout": 1831766077, - "Guest_MasterTonkatsu": 1783298894, - "Guest_Grisletusk": 657393295, - "Guest_SplithoofBloodguard": 488382274, - "Guest_BristlehideRaider": 237078958, - "Guest_Gullin": 1656401882, - "Guest_ForestNymph": 812055814, - "Guest_SassafrasMan": 1327049788, - "Guest_RandolfSpellshine": 108808620, - "Guest_BleysFlamerender": 434070106, - "Transformation_Khan": 1398327634, - "Transformation_TheBat": 1675113521, - "MNT_DireWolf": 845578449, - "MNT_YuleMule": 1976182058, - "MNT_LightBlades": 829118450, - "MNT_FlyingSquid": 1573132252, - "PP_Globulin": 467801224, - "PP_BeastBaby": 1807874692, - "PP_SaniBot": 670845902, - "Mount_SwarmSand": 1277669407, - "Guest_Nodnarb": 211478288, - "Guest_LordBramble": 1118781162, - "Guest_Yogash": 506264561, - "Guest_Marcio": 499428996, - "Guest_Procyon": 1115376865, - "Guest_Thunderfin": 2029218563, - "Guest_ArkynMoonblade": 1152775206, - "Guest_CreeCurdWright": 1714953095, - "Guest_DeerMouseRevenant": 315064435, - "Guest_ElanaDarksun": 837982094, - "Guest_KingAlricFateSailor": 1934591130, - "Guest_LaughingCalaca": 984492527, - "Guest_WraithKnight": 620484548, - "Guest_FieryEchoofApep": 484636593, - "Guest_FrostyEchoofApep": 171933154, - "Guest_FalseEchoofApep": 479387377, - "Guest_ChargedEchoofApep": 1229406800, - "Guest_ShrowdengersQhat": 101563303, - "Guest_Scrollkeeper": 643219293, - "Guest_TerrorHound": 753341570, - "Guest_CondemnedMander": 445370758, - "Mnt_SnowStorm": 1491572670, - "Mount_ChimneySweeper": 378571534, - "MNT_PineappleCandyCane": 1630795796, - "Guest_TyphonDustwind": 740849673, - "MNT_StickHorse": 216654744, - "MimicTemplate": 1461219184, - "MNT_Ball_N_Chain": 289720920, - "PP_PeaceDove_A": 1785119671, - "Mount_Gyrocycle": 1495008048, - "PP_BattleMageDragon_A": 1864696711, - "MNT_BattleBeast": 1304449286, - "MNT_SmokeTrails": 387873030, - "Mount_FriendshipHare": 677127330, - "MNT_ButterflySwarm": 383602683, - "PP_EggChick_B": 1959154042, - "MNT_Unicorn": 562210585, - "PP_StuffedUnicorn": 1731641773, - "MNT_ParadeTruck": 2026348978, - "MNT_ParadeTruckXmas": 1017864627, - "MNT_AutumnLeafSwarm": 1540002279, - "PP_GingerbreadMan": 1796172229, - "PP_DecadeDragon": 1819398630, - "MNT_StageShip": 829852992, - "PP_DramaLlama": 255896529, - "PP_HallMinotaur_A": 1492017563, - "Guest_MacDeath": 1526226705, - "Guest_MacDeathUnderstudy": 1731752647, - "Guest_MacLifeUnderstudy": 257466641, - "Guest_MacStormUnderstudy": 8295117, - "MNT_Pantera": 1135198, - "MNT_StagLight": 1908778048, - "MNT_GiantSpider": 1247185021, - "MNT_StagEvil": 872303931, - "PP_BaskHound": 1093866594, - "PP_Marionette": 1688299938, - "PP_Marionette_B": 1688297824, - "Guest_Izft": 996301405, - "Guest_SapotisMinion": 1625665891, - "Guest_CrazedSlave": 1473233468, - "Guest_CharmedSlave": 803043667, - "Guest_EnsorcelledSlave": 40920285, - "Guest_HallServant": 2038116460, - "Guest_SiathePerceiver": 1235571913, - "Guest_Kiwu": 1151177787, - "Guest_NightImp": 1051843424, - "Guest_EvilTrickster": 1035477123, - "Guest_DeepWoodsImp": 1502444054, - "Guest_ForestPest": 802235713, - "Guest_TaintedForestImp": 1030343985, - "Guest_Youkai": 518367729, - "Guest_CarthaginianElephantWarrior": 776293919, - "Guest_IdrisBeast-Taker": 106759521, - "Guest_MikaSkarka": 237956516, - "Guest_Belloq": 757247833, - "Guest_GurtokPiercer": 549466122, - "Guest_GurtokFirebender": 817966523, - "Guest_GurtokDemon": 544070162, - "Guest_GeneralFiretusk": 2073037770, - "Guest_GurtokBarrierDemon": 44657563, - "Guest_BlacktuskShaman": 1009070925, - "Guest_FireDemon": 158367196, - "Guest_DeathOni": 1916642000, - "Guest_JadeOni": 1289517185, - "Guest_PlagueOni": 1464586443, - "Guest_WarOni": 1630196094, - "Guest_BrokenLandMammoth": 1587008312, - "Guest_SunderedSeamMammoth": 1272698721, - "Guest_BullyMammoth": 170705927, - "Guest_Bullhemoth": 146998717, - "Guest_Kogasha": 1909654543, - "Guest_MusuthBerserker": 1741298129, - "Guest_BlackTuskCultist": 1771575961, - "Guest_AksilBlacktrunk": 1253596409, - "Guest_LongdreamerShaman": 1521283133, - "Guest_MuratGreyeyes": 1296814314, - "Guest_ElephantSoldier": 1443670145, - "Guest_DarajaniGuard": 1597288495, - "Guest_Loremaster": 1792470809, - "Guest_Pork": 2069999347, - "Guest_Beans": 97706585, - "MNT_Ox": 1292937747, - "PP_PropellerSquirrel": 1657443894, - "Guest_RasikPridefall": 97921485, - "Guest_AmedrasLightstep": 1818417025, - "MNT_SmokeTrails_Balance": 1358150715, - "MNT_SmokeTrails_Fire": 702971609, - "MNT_SmokeTrails_Ice": 190218501, - "MNT_SmokeTrails_Life": 2045542105, - "MNT_SmokeTrails_Myth": 1276281121, - "MNT_SmokeTrails_Storm": 564954622, - "Guest_Bellosh": 1407013027, - "Guest_AcampiReedfist": 2076527733, - "Guest_AgnettaBroadblade": 14864960, - "Guest_FrostheartRaider": 1574787221, - "Guest_JordaSwordbearer": 1627071850, - "Guest_KasaiBaku": 1153107369, - "Guest_ZoraimeiHelephant": 1002482606, - "Guest_ConscriptedMander": 43811125, - "Firecat_Decade": 409516955, - "MNT_BatGlider": 2086258491, - "Transformation_PlayerHomework": 673389670, - "Transformation_PlayerAttendance": 422287307, - "Transformation_PlayerLecture": 2035625874, - "Transformation_PlayerPopQuiz": 483367038, - "MNT_GingerbreadHorse": 1369242781, - "MNT_NimbariChariot": 1251740392, - "PP_NimbariDog": 1235126828, - "Transformation_PlayerGrandma": 1128332272, - "Transformation_PlayerScionA": 33862367, - "PP_Mushroom": 1568942158, - "MNT_Scooter": 1148167046, - "MNT_Scooter_B": 2079302532, - "MNT_Scooter_C": 1810867076, - "MNT_Scooter_D": 468689796, - "MNT_IceCycle": 415797788, - "Transformation_PlayerScionA02": 33921759, - "Guest_FearoftheFuture": 947210229, - "Guest_FearofGremlins": 405857384, - "Guest_RootGuardian": 922940845, - "Guest_VineThrasher": 172546427, - "Guest_BlightWalker": 1438155154, - "Guest_BriarScourge": 615681851, - "Guest_DreamJabberwock": 907754098, - "Guest_DreamBelloq": 990352002, - "Guest_Voltergeist": 1558128068, - "Guest_SpecialBranch": 1927849418, - "Guest_MutantBriar": 805892802, - "Guest_FeralBriar": 883790223, - "Guest_MaizeMonster": 688905764, - "Guest_DreamShadowwock": 1432458248, - "Mount_Heartboard": 1421972759, - "PP_ChocoBunny": 324797859, - "Mount-PogoFlower": 906659501, - "MNT_AethyrCloud": 1586061078, - "MNT_Fangle": 7846854, - "Guest_StarfallSpider": 1177620831, - "Guest_AshSpider": 1588502553, - "Guest_CorruptedWeaver": 38937211, - "Guest_CrystalCrawler": 1197980149, - "Guest_ShimmerWidow": 1300740128, - "Guest_FacetedSpikespinner": 1939719331, - "Guest_CrystallineQueen": 1999282256, - "Guest_AncientCrystalweaver": 1409608801, - "Guest_FangtoothLavaspinner": 1538042104, - "Guest_VenomousHeatseeker": 1234682482, - "Guest_FireweaveRockbiter": 300743778, - "Guest_MonkeySpider": 754090007, - "Guest_CryptSpider": 1545405304, - "Guest_CommonHouseSpider": 613486002, - "Guest_ArachnaMagnaMagus": 825817937, - "Guest_ArachnaSoldier": 270978709, - "Guest_Gnissa": 1699826178, - "Guest_WebwoodScuttler": 1728611075, - "Guest_SandSpider": 61789007, - "Guest_WebwoodCreeper": 1013382584, - "Guest_Skathi": 1631429165, - "Guest_ArchmagusLorcan": 321146960, - "Guest_CrawleroftheMist": 2076696304, - "Guest_PaintedSpider": 1482115552, - "Guest_GiantSpider": 1545526191, - "Guest_CaveCrawler": 2101587667, - "Guest_RattleCatcher": 1472707326, - "Guest_TrapdoorSpider": 1321643694, - "Guest_RockClinger": 1304266411, - "Guest_InquisitorXimenez": 1053483090, - "Guest_ElderMagus": 1017836836, - "Guest_WardenBenthamic": 18807199, - "Guest_SpiderArchmagus": 387645558, - "Guest_SpiderAdept": 2094873407, - "Guest_InterrogatorRentenius": 1245984179, - "Guest_WarpedWeaver": 495882677, - "Guest_ArachnaSkinner": 281864085, - "Guest_SkinnerConscript": 2028526453, - "Guest_ArachnaGladiator": 2492046, - "Guest_LorcanInitiate": 353311753, - "Guest_Serket": 1871335773, - "Guest_IceWeaver": 2063216026, - "Guest_SpiritSpinner": 525666327, - "Guest_MysteriousCrawler": 218352756, - "Guest_BlackWidow": 1909331619, - "Guest_BrownRecluse": 1146386275, - "Guest_Creeper": 1197442790, - "Guest_GearSpinner": 67020478, - "Guest_Clinker": 1194519062, - "Guest_Clanker": 1194517014, - "Guest_GrandfatherSpider": 1330981335, - "Guest_Spiderling": 1400274461, - "Guest_ManekiWebWalker": 888348786, - "Guest_KoganiDeathCrawler": 276010604, - "Guest_CheliceranCrawler": 1169176517, - "Guest_ArachniteCreeper": 1850534774, - "Guest_ChelicaranStalker": 2057291848, - "Guest_HornedMonkeySpider": 1301514577, - "Guest_GreyOgreSpider": 1533774471, - "Guest_StarburstSpider": 698029451, - "Guest_PaintedCaveMonster": 601315479, - "Guest_RubbleRouser": 220785666, - "Guest_EarthElemental": 435260049, - "Guest_SharpshardWarrior": 1403237237, - "Guest_Firevein": 1220046430, - "Guest_Blackblade": 458130537, - "Guest_VengefulFireheart": 563205004, - "Guest_FirerockStomper": 608552855, - "Guest_BlackrockGuardian": 1663799582, - "Guest_ConfusedSentry": 24655510, - "Guest_SilverSentinel": 1090673683, - "Guest_SilverServant": 84560693, - "Guest_GiantHomunculus": 456098557, - "Guest_PropertyMaster": 229101764, - "Guest_VaultProtector": 185568207, - "Guest_PlatedDefender": 79324363, - "Guest_Avalanche": 761613547, - "Guest_RockReaver": 919912933, - "Guest_Frostmantle": 856308090, - "Guest_GlacierWalker": 131215932, - "Guest_SandBehemoth": 272513357, - "Guest_RunedAnnihilator": 121339936, - "Guest_RunedDevestator": 1611071181, - "Guest_RunedGuardian": 1986312667, - "Guest_CanyonRager": 1123038266, - "Guest_RubbleReaver": 220774678, - "Guest_Boulderbone": 122279242, - "Guest_Nali": 77467516, - "Guest_Gnar": 1151164930, - "Guest_GlacialAvenger": 1181253632, - "Guest_SokkwiKeymaster": 190919624, - "Guest_SandsofTime": 34920273, - "Guest_BladeGolem": 435561523, - "Guest_FrostColossus": 1564686403, - "Guest_IceColossus": 335477257, - "Guest_PollutedEarthWalker": 86045387, - "Guest_CorruptedEarthSpirit": 1135891559, - "Guest_Stonebreaker": 1317905436, - "Guest_StoneElemental": 1715022018, - "Guest_VolcanisGolem": 1904918929, - "Guest_WaterElemental": 1717850987, - "Guest_AshenDeathMonkeySpider": 35356665, - "Guest_DeathMonkeySpider": 1525508507, - "Guest_MotherMonkeySpider": 110317392, - "Guest_DoomMonkey": 1135105500, - "Guest_DreamMorganthe": 907599965, - "Guest_DragonBeetle": 1974635734, - "Guest_SandWalker": 1530843985, - "MNT_PandaMama": 916371162, - "PP_BabyPandas": 778536285, - "PP_FrogPrince": 729975205, - "MNT_PumpkinCarriage": 183672737, - "Mount_Gobbler_B": 1193388729, - "PP_Hamster": 1578040708, - "Guest_Steeleton": 657429968, - "Guest_GoldenWyrm": 311022393, - "MNT_Roc": 1564431869, - "PP_BabyGriffin": 1913686406, - "Transformation_ShadowDPSMob": 936133896, - "Transformation_ShadowTankMob": 305660992, - "Transformation_ShadowHealMob": 356596800, - "Guest_SpiritofIgnorance": 1577360126, - "Guest_FecklessSoul": 519648315, - "Guest_BurnedOutSoul": 312181646, - "Guest_BenightedRevenant": 2131956962, - "Guest_TombLurker": 1901203489, - "Guest_DesertGolem": 543642682, - "Guest_KumoOni": 215822625, - "Guest_SpellwritStalker": 161772776, - "PP_Sun": 1723237840, - "Guest_Leadite": 4480416, - "Mount_FestiveFox": 2125832348, - "PP_FenrisWolf": 1601784680, - "PP_SchoolPiggle": 109782407, - "PP_FenrisWolf_Red": 1597992854, - "PP_FenrisWolf_Teal": 1455058454, - "PP_FenrisWolf_White": 1102186199, - "Transformation_NinjaPig_Fire": 984575055, - "Transformation_BG_RatThief_Myth": 1191155131, - "Transformation_BG_RatThief_Storm": 675891897, - "MNT_Umbrella": 955683437, - "Transformation_BG_Elf_Ice": 1209681129, - "Transformation_BG_Fairy_DarkMinion_Balance": 33521202, - "Transformation_BG_Cyclops_Death": 876023972, - "Transformation_BG_Minotuar_Fire": 1118476387, - "Transformation_BG_WolfWarrior_Storm": 2075594475, - "Transformation_BG_WolfWarrior_Balance": 746159992, - "Transformation_BG_Draconian_Myth": 903606820, - "Transformation_BG_Draconian_Life": 1501291044, - "Transformation_BG_Colossus_Life": 1320377666, - "MNT_DolphinChariot": 102982520, - "MNT_EvilWagon": 685457563, - "MNT_FlyingDutchman": 1176206544, - "PP_SeaHorse": 2024322494, - "PP_EvilTeddy": 1159020925, - "PP_ZombieParrot": 384805107, - "Transformation_BG_Ice_Colossus": 299613211, - "MNT_CarrierBat": 7323333, - "Transformation_BG_Minotaur_MythTempalte": 430330904, - "PP_FeatheredTabby": 452526748, - "Transformation_Detritus01": 1335763402, - "Guest_Metallossus": 335457082, - "MNT_SantaJaws": 464410203, - "MNT_BattleBadger": 532858222, - "Transformation_Shedder01": 2069145892, - "PP_NatureSpirit": 373176286, - "Transformation_Devourer01": 1004421540, - "Guest_TheDevourer": 1591187996, - "Guest_Treeminder": 1093207850, - "Guest_RenegadeDruid": 2087982292, - "Guest_FractalTreeminder": 927174548, - "Guest_UnsettledTreeminder": 486164163, - "Guest_DragonspyreCrusader": 247317280, - "Guest_YoungGreggor": 66068670, - "Guest_GeneralGreyflame": 499924835, - "Guest_OldGreggor": 391726170, - "Guest_PrinceViggor": 853556298, - "Guest_DragonspyreVanguard": 693851565, - "Guest_SilasConviction": 177362659, - "Guest_SilasWeariness": 893431021, - "Guest_SilasRage": 1288904439, - "Guest_SilasDoubt": 1479426285, - "Guest_Lorekeeper": 147779344, - "Guest_FelixPhotomongerIII": 68387506, - "Guest_WarHavox": 1634324022, - "Guest_Mis-assembledSkeleton": 221832082, - "Guest_TreeminderGhost": 200408510, - "Guest_ViggorsDrake": 340449521, - "Guest_BlueNinjaPig": 938539327, - "Guest_RedNinjaPig": 2097962021, - "Guest_OrangeNinjaPig": 625058258, - "Guest_PurpleNinjaPig": 445746449, - "Guest_RitualColossus": 844563319, - "Guest_TinyDragon": 1123127688, - "Guest_RitualSpider": 429827552, - "Guest_RitualDraconian": 837510372, - "Guest_CC_Druid_Warrior_C_01": 55314616, - "Guest_CC_Druid_Wizard_A_01": 1046261169, - "Guest_CC_Druid_Wizard_B_01": 1046244785, - "Guest_CC_Druid_Warrior_A_01": 56363192, - "MNT_Toboggan": 995356805, - "MNT_2P_WickerTreant-001": 2065440944, - "PP_Ratatoskr": 1003497600, - "PP_Trash": 1195047012, - "Guest_CC_Druid_Wizard_D_01": 1046343089, - "MNT_Sunflower": 721091531, - "MNT_Whoopee": 1383311238, - "MNT_Warthog": 8060761, - "PP_ShamRock": 943893325, - "PP_LeapingLeprechaun": 132882517, - "PP_LionCubs": 465759803, - "PP_Tanuki": 670387843, - "MNT_Crane": 433122675, - "MNT_Krokosphinx": 739938754, - "Transformation_BG_Fairy_Life": 1897480818, - "Transformation_LiceDeepSpawnA": 244795720, - "Piggle_Alien": 1761605655, - "PP_JeweledScarab": 620544607, - "Guest_KR_Nymph_DrkMage_D50": 1248526054, - "Guest_KR_Nymph_DrkMage_C50": 1246953190, - "Guest_KR_Nymph_DrkMage_B50": 1247477478, - "Guest_KR_Nymph_DrkMage_A50": 1245904614, - "Guest_EM_Spider_Ash_01": 185724938, - "UFO": 47349, - "PP_Kit10": 326796620, - "PP_Lumi_Tulip": 84119585, - "PP_Lumi_Fern": 117015078, - "PP_Lumi_Violet": 1468797578, - "PP_Lumi_Sunny": 1769236703, - "PP_Lumi_Daisy": 1743454175, - "MNT_CelestianMech": 1238076872, - "MNT_Brontosaurus": 402157167, - "Guest_HG_AKT_Krok_Cyber_A_Balance_25": 1367985604, - "Guest_HG_AKT_Krok_Cyber_A_Balance_50": 1368084932, - "Guest_HG_AKT_Krok_Cyber_A_Balance_75": 1367988676, - "Guest_HG_AKT_Krok_Cyber_A_Balance_100": 1351303620, - "Guest_HG_AKT_Krok_Cyber_A_Balance_130": 1351270852, - "Guest_HG_AKT_Krok_Cyber_A_Fire_25": 976558490, - "Guest_HG_AKT_Krok_Cyber_A_Fire_50": 37034397, - "Guest_HG_AKT_Krok_Cyber_A_Fire_75": 305469850, - "Guest_HG_AKT_Krok_Cyber_A_Fire_100": 573905821, - "Guest_HG_AKT_Krok_Cyber_A_Fire_130": 573905824, - "Guest_HG_AKT_Krok_Cyber_A_Ice_25": 159411377, - "Guest_HG_AKT_Krok_Cyber_A_Ice_50": 541093041, - "Guest_HG_AKT_Krok_Cyber_A_Ice_75": 146828465, - "Guest_HG_AKT_Krok_Cyber_A_Ice_100": 557870241, - "Guest_HG_AKT_Krok_Cyber_A_Ice_130": 960523425, - "Guest_HG_AKT_Krok_Cyber_A_Myth_25": 976187830, - "Guest_HG_AKT_Krok_Cyber_A_Myth_50": 36663729, - "Guest_HG_AKT_Krok_Cyber_A_Myth_75": 305099190, - "Guest_HG_AKT_Krok_Cyber_A_Myth_100": 573535153, - "Guest_HG_AKT_Krok_Cyber_A_Myth_130": 573535156, - "Guest_CL-GolemButler-R9": 780077559, - "Guest_CL-GolemDigger-Boss-R10": 562020288, - "Guest_CL-GolemDigger-R9": 789375095, - "Guest_CL-GolemDigger-Rank8MythBoss-R10": 930527857, - "Guest_CL-GolemWorker-R9-1": 1072815287, - "Guest_CL-FishbotBrown-R9-1": 2006155417, - "Guest_CL-FishbotBrown-R9-2": 395542681, - "Guest_CL-FishbotGold-Boss-R10": 611881707, - "Guest_CL-FishbotGold-R9": 705414492, - "Guest_CL-FishbotYellow-Boss-R10": 23145662, - "Guest_CL-Protector-Black-Boss-R10-2": 679228793, - "Guest_CL-Protector-Gold-R10": 1909636609, - "Guest_CL-Protector-Gold-R9-1": 1909634804, - "Guest_CL-Protector-Gold-R9-2": 1909634932, - "Guest_CL-Protector-Gold-R9-3": 1909635060, - "Guest_CL-Protector-Gold-R9-4": 1909634164, - "Guest_CL-Protector-Purple-R9-Boss": 1889837072, - "Guest_CL-Protector-Purple-R9": 81760161, - "Guest_CL-Protector-Tan-Boss-R10": 912663188, - "Guest_KR_Golem_Worker": 1784607296, - "Guest_Golem-Brass-R7-1": 718939445, - "Guest_Golem-Clockwork-R7": 1161173708, - "Guest_EM_Robot_Batbot_A_01": 1482867950, - "Guest_EM_Robot_Batbot_B_02": 945947886, - "Guest_EM_Robot_Batbot_B_01": 1482818798, - "Guest_EM_Robot_Batbot_B_03": 409076974, - "Guest_EM_Robot_Batbot_B_04": 127793938, - "Guest_EM_Robot_Batbot_B_05": 664664850, - "Guest_EM_Robot_Drone_A_02": 1215188569, - "Guest_EM_Robot_Drone_A_03": 1231965785, - "Guest_EM_Robot_Drone_A_01": 1265520217, - "Guest_EM_Robot_Drone_A_04": 1315851865, - "Guest_EM_Robot_Drone_A_05": 1332629081, - "Guest_EM_Robot_Drone_A_06": 1282297433, - "Guest_EM_Robot_Drone_A_07": 1299074649, - "Guest_EM_Robot_Drone_A_08": 1114525273, - "Guest_EM_Robot_Drone_A_09": 1131302489, - "Guest_EM_Robot_Drone_A_Boss_01": 1960661151, - "Guest_EM_Robot_Drone_A_Boss_02": 1960530079, - "Guest_EM_Robot_Drone_E_01": 1265518169, - "Guest_EM_Robot_Tank_A_01": 1314796420, - "Guest_EM_Robot_Tank_A_02": 1313223556, - "Guest_EM_Robot_Drone_C_02": 1215187545, - "Guest_EM_Robot_Drone_D_03": 1231963225, - "Guest_EM_Robot_Drone_D_01": 1265517657, - "Guest_EM_Robot_Drone_D_02": 1215186009, - "Guest_EM_Robot_Tank_B_01": 1314796468, - "Guest_EM_Robot_Drone_C_01": 1265519193, - "Guest_G14-BP-Golem_Steel_Boss": 2071105129, - "Guest_G14-BP-Golem_Steel_Puzzle": 715790979, - "Guest_Golem-Brass-Elite-L38": 1163662532, - "Guest_Golem-Brass-Elite-L56": 2057562884, - "Guest_Golem-Brass-MBBoss-L48": 1498830732, - "Guest_Golem-Brass-MBBoss-L71": 1498829576, - "Guest_Golem-Brass-MBBoss-L76": 1498828936, - "Guest_Golem-Clockwork-Elite-L54-Metal": 417151527, - "Guest_Golem-Clockwork-Elite-L37": 1961943722, - "Guest_Golem-Clockwork-Elite-L54": 1950147242, - "Guest_Golem-Clockwork-L28": 1561959116, - "Guest_Golem-Clockwork-MBBoss-L37": 973152783, - "Guest_Golem-Clockwork-MBBoss-L69": 1262559759, - "Guest_Golem-Steel-Elite-L39": 1430496717, - "Guest_Golem-Steel-MBBoss-L40": 1229578887, - "Guest_Golem-Steel-MBBoss-L43": 1229579015, - "Guest_Golem-Steel-MBBoss-L50-1": 1231762051, - "Guest_Golem-Steel-MBBoss-L50": 1229578883, - "Guest_Golem-Steel-MBBoss-LXX": 1229583927, - "Guest_Golem-Wood-Elite-L35": 904360756, - "Guest_Golem-Wood-Elite-L37": 1978102580, - "Guest_Golem-Wood-Elite-L50": 1813548236, - "Guest_Golem-Wood-MBBoss-L63": 1392041724, - "Guest_MB-Gauntlet-Golem-Clockwork": 854649045, - "Guest_Spider-Golem-MBBoss-L67": 253352706, - "Guest_Spider-Golem-MBBoss-L96": 253348994, - "Guest_WC-MAW-GasGolem-Minion": 1511013798, - "Guest_WC-MAW-GasGolemLife-Minion": 1306026584, - "Guest_Golem-Steel-L02": 1027229749, - "Guest_Golem-Clockwork-L01": 1409915596, - "Guest_Gauntlet-01-Golem-Steel-Ghost-R8": 402816318, - "Guest_Golem-Wood-L01": 156976035, - "Guest_HG-Clock-ClockworkSpanner-20": 1523370449, - "Guest_HG-Clock-ClockworkSpanner-40": 1523370455, - "Guest_HG-Clock-ClockworkSpanner-60": 1523370453, - "Guest_HG-Clock-ClockworkSpanner-80": 1523370459, - "Guest_HG-Clock-ClockworkSpanner-100": 1523354068, - "Guest_HG-Clock-ClockworkSpanner-120": 1523354004, - "Guest_AQ-Cyclops-Guard": 191361948, - "Guest_AQ_Cyclops_Guard_A_Boss_01": 114747100, - "Guest_CL-Cyclops-Death-R10": 611013866, - "Guest_Cyclops-Death-Boss-R7": 1192370725, - "Guest_Cyclops-Death-Boss-R9": 1192370717, - "Guest_Cyclops-Death-R7": 144593791, - "Guest_GH-Cyclops-Death-R6": 594236619, - "Guest_Cyclops-BlueHelmet-KTBoss-L03": 1720105277, - "Guest_Cyclops-Red-L12": 1816429840, - "Guest_MR_Cyclops02WHelmet_Model_01": 1483732416, - "Guest_Cyclops-Blue-L02": 1633021234, - "Guest_Cyclops-BlueHelmet-WCBoss-L03": 427378332, - "Guest_Cyclops-RedHelmet-WCBoss-L03": 2021269422, - "Guest_HG_Sinbad_Cyclops_25": 911979034, - "Guest_HG_Sinbad_Cyclops_50": 1856261606, - "Guest_HG_Sinbad_Cyclops_75": 861647386, - "Guest_HG_Sinbad_Cyclops_100": 1789152678, - "Guest_HG_Sinbad_Cyclops_130": 178539942, - "Guest_HG_Sinbad_IronSultan_25": 930031152, - "Guest_HG_Sinbad_IronSultan_50": 930051504, - "Guest_HG_Sinbad_IronSultan_75": 930030768, - "Guest_HG_Sinbad_IronSultan_100": 927954864, - "Guest_HG_Sinbad_IronSultan_130": 927942576, - "MNT_SweetRide": 1643297840, - "PP_FrilledDino": 1395342809, - "PP_Celestian": 95679303, - "PP_Sun_Angry": 1955190071, - "PP_Marshmallow": 1220667954, - "MNT_Umbrella_B": 923364822, - "MNT_Tamer": 1050737194, - "PP_BumbleBee_B": 858653433, - "MNT_PunkFlamingo": 1634690818, - "MNT_2P_WoolyRhino": 1395943031, - "PP_Retriever": 72842604, - "PP_Piggle_Caveman": 181356174, - "PP_DecennialDragon": 1396523337, - "MNT_Tiger_Rainbow": 515535412, - "MNT_CarrierGhosts": 1833039309, - "MNT_Sled": 617654308, - "Transformation_BG_RatThief_Death": 30691641, - "Transformation_BG_Elf_Storm": 44352983, - "Transformation_BG_WolfWarrior_Ice": 986304351, - "MNT_CarriorGhost_B": 1768732109, - "MNT_CarriorGhost_C": 1766634957, - "Transformation_BG_Colossus_Fire": 1318803522, - "Transformation_BG_Krok_Balance": 140952965, - "Guest_KM_Gobbler_Skinny_A_11": 773648065, - "Guest_KM_Robot_Candy_A_01": 480414124, - "Guest_KM_Robot_Candy_A_02": 530745772, - "Guest_KM_Robot_Candy_A_03": 513968556, - "Guest_KM_Robot_Candy_A_04": 430082476, - "Guest_KM_Robot_Candy_A_05": 413305260, - "Guest_KM_Gummy_Bear_A_01": 1940905059, - "Guest_KM_Gummy_Bear_D_01": 1940905011, - "Guest_KM_Gummy_Bear_E_01": 1940904995, - "Guest_KM_Gummy_Bear_A_02": 1941429347, - "Guest_KM_Gummy_Bear_D_02": 1941429299, - "Guest_KM_Gummy_Bear_E_02": 1941429283, - "Guest_KM_Gummy_Bear_B_01": 1940905043, - "Guest_KM_Gummy_Bear_B_02": 1941429331, - "Guest_KM_Gummy_Bear_B_03": 1941953619, - "Guest_KM_Gummy_BearHat_A_01": 853226448, - "Guest_KM_Gummy_BearHat_A_02": 853226460, - "Guest_KM_Gummy_Bunny_A_01": 324805042, - "Guest_KM_Gummy_Bunny_C_01": 324806066, - "Guest_KM_Gummy_Bunny_D_01": 324807602, - "Guest_KM_Gummy_Bunny_E_01": 324807090, - "Guest_KM_Gummy_Bunny_F_01": 324808626, - "Guest_KM_Gummy_BunnyUber_A_01": 525565930, - "Guest_KM_Gummy_Worm_A_01": 231044195, - "Guest_KM_Gummy_Worm_B_01": 231044179, - "Guest_KM_Gummy_Worm_C_01": 231044163, - "Guest_KM_Gummy_Worm_A_02": 232617059, - "Guest_KM_Gummy_Worm_B_02": 232617043, - "Guest_KM_Gummy_Worm_C_02": 232617027, - "Guest_KM_Gummy_Bear_F_01": 1940904979, - "Guest_KM_Gummy_Bear_F_02": 1941429267, - "Guest_KM_Gummy_Bunny_C_02": 274474418, - "Guest_KM_Robot_Candy_A_06": 463636908, - "Guest_KM_Alphoi_DarkF_A_01": 475441543, - "Guest_KM_Gobbler_Skinny_A_01": 773648069, - "Guest_KM_Gobbler_Skinny_A_02": 773648197, - "Guest_KM_Gobbler_Skinny_A_03": 773648325, - "Guest_KM_Gobbler_SkinnyF_A_01": 254411012, - "Guest_KM_Gobbler_Skinny_A_04": 773647429, - "Guest_KM_Gobbler_Skinny_A_05": 773647557, - "Guest_KM_Gobbler_Skinny_A_06": 773647685, - "Guest_KM_Gobbler_SkinnyF_A_02": 254423300, - "Guest_KM_Gobbler_Skinny_A_07": 773647813, - "Guest_KM_Gobbler_Skinny_A_08": 773646917, - "Guest_KM_Gobbler_Skinny_A_09": 773647045, - "Guest_KM_Gobbler_SkinnyF_A_03": 254419204, - "Guest_KM_Gobbler_Fat_A_01": 1440595742, - "Guest_KM_Gobbler_Fruit_B_01": 1236446660, - "Guest_KM_Gobbler_Fruit_A_01": 1235922372, - "Guest_KM_Gobbler_Guard_B_01": 1435667582, - "Guest_KM_Gobbler_Skinny_A_10": 773647937, - "Transformation_PlayerBabyCarrot": 1580787628, - "Transformation_PlayerDeadBeet": 1992261692, - "Transformation_PlayerDisparagus": 373797484, - "Transformation_PlayerSnowPeas": 634199102, - "PP_Snowflake": 2036143125, - "PP_GummyBear_Myth": 117787890, - "PP_GummyBear_Death": 236577760, - "PP_GummyBear_Balance": 2100524337, - "PP_GummyBear_Life": 118020336, - "PP_GummyBear_Fire": 117995748, - "PP_GummyBear_Storm": 247437198, - "PP_GummyBear_Ice": 122536570, - "MNT_SnowOwl": 1578473542, - "Guest_KM_Gummy_Bear_Uber_A_01": 1856208859, - "Guest_KM_Gummy_Bear_Uber_A_02": 1856196571, - "MNT_ChocolateMoose": 567538552, - "MNT_Ram_Candied": 1913603720, - "Guest_KM_Spider_Mage_A_01": 1529720120, - "Guest_KM_Spider_Mage_B_01": 1529719608, - "Guest_KM_Spider_Mage_C_01": 1529719096, - "Guest_KM_Spider_Mage_D_01": 1529718584, - "Guest_KM_Spider_Mage_E_01": 1529718072, - "PP_SpriteDark_Balance": 914900728, - "MNT_Tricycle": 991465753, - "Guest_Tri-Gauntlet-Protector-Gold": 2029952053, - "Guest_Tri-Gauntlet-FishbotGold": 130267882, - "Guest_HG-Clock-Clockworker-20": 281216243, - "Guest_HG-Clock-Clockworker-40": 281217011, - "Guest_HG-Clock-Clockworker-60": 281216755, - "Guest_HG-Clock-Clockworker-80": 281215475, - "Guest_HG-Clock-Clockworker-100": 283313523, - "Guest_HG-Clock-Clockworker-120": 283321715, - "Guest_HG-Clock-Lugs-20": 1452756928, - "Guest_HG-Clock-Lugs-40": 1452756960, - "Guest_HG-Clock-Lugs-60": 1452756992, - "Guest_HG-Clock-Lugs-80": 1452756768, - "Guest_HG-Clock-Lugs-100": 1452494736, - "Guest_HG-Clock-Lugs-120": 1452493712, - "Guest_HG-Clock-Lucia-20": 1041451626, - "Guest_HG-Clock-Lucia-40": 1041450602, - "Guest_HG-Clock-Lucia-60": 1041449578, - "Guest_HG-Clock-Lucia-80": 1041456746, - "Guest_HG-Clock-Lucia-100": 1049840746, - "Guest_HG-Clock-Lucia-120": 1049873514, - "Guest_KM_Gummy_Worm_A_03": 232092771, - "MNT_Scooter_E": 200254340, - "PP_WolfWarrior_Balance": 991302673, - "PP_PetGift": 1816280689, - "PP_RatThief": 1390866051, - "Guest_PL_Titan_Small_A": 2015819364, - "Guest_PL_Titan_Large_B": 699791264, - "Guest_PL_Titan_Medium_A": 326730424, - "PP_Draconian": 1631557208, - "MNT_Pantera_Astral": 106092538, - "PP_YearOx": 105653084, - "PP_WolfWarrior_Ice": 1043644935, - "PP_SpriteDark": 2031730054, - "PP_Brudel": 1355697143, - "MNT_Astronomers": 742732792, - "MNT_CouchPotato": 418050932, - "MNT_Flowerfarthing": 1396771051, - "MNT_Astronomers_Blue": 236532779, - "MNT_Astronomers_Rainbow": 4428274, - "PP_Astronomer": 782095961, - "Guest_KM_Gummy_Bunny_B_01": 324806578, - "Guest_KM_DeadBeets_A_01": 1396016635, - "MNT_GummyBunny": 775900704, - "MNT_GummyBunny_A": 775834080, - "MNT_GummyBunny_B": 775836128, - "MNT_GummyBunny_C": 775838176, - "Transformation_BG_Minotaur_Life": 1445109091, - "MNT_Armadillo": 825635826, - "PP_SootGremlin": 768969093, - "PP_RoadRunner": 2057802060, - "MNT_TinyTrolly": 160881792, - "PP_Frog_B": 1530124761, - "MNT_FjordDragon": 129204340, - "Transformation_BG_NinjaPig_Myth": 422914079, - "PP_CorgiPup": 1638656105, - "MNT_Skateboard": 728018224, - "PP_Krokomummy": 326396577, - "MNT_Vroom": 1736383110, - "MNT_PlayerWings_AtralRaven": 1514774167, - "PP_Blimp": 690882397, - "Guest_GH_WoodenSkeletonKey_Boar_Boss_Grey_01": 678055851, - "Guest_GH_StoneSkeletonKey_Boar_Boss_Grey_01": 571670691, - "Guest_GH_GoldSkeletonKey_Boar_Boss_Grey_01": 961728819, - "MNT_Cloud_Promo_AW_01": 2032670992, - "Guest_EM_Hornet_Burner_A_01": 1881854632, - "Guest_EM_Hornet_Burner_A_02": 1881854636, - "Guest_EM_Hornet_Zapper_A_01": 2058539689, - "Guest_EM_Hornet_Zapper_A_02": 2058539685, - "Guest_EM_Ant_Giant_D_01": 379386121, - "Guest_EM_Ant_Giant_A_02": 1768146677, - "Guest_EM_Ant_Giant_A_01": 1768097525, - "Guest_EM_Ant_Giant_B_01": 379386122, - "Guest_KR_Moth_Priest_G_Achera": 381233569, - "Guest_KR_BeeMonsterF_A": 135146211, - "Guest_KR_BeeMonsterF_A_Weak": 1824123847, - "Guest_KR_Bee_Warrior_A": 1569202664, - "Guest_KR_Bee_Warrior_B": 1569204200, - "Guest_KR_Bee_Warrior_C_BossDrones": 1217189631, - "Guest_KR_Bee_Warrior_D": 1569205224, - "Guest_KR_Bee_Warrior_E": 1569204712, - "Guest_KR_Bee_Warrior_G": 1569205736, - "Guest_KR_Bee_Warrior_G_BossFight": 1055035476, - "Guest_KR_Bee_Warrior_H": 1569207272, - "Guest_KR_Bee_Warrior_I": 1569206760, - "Guest_KR_Bee_Warrior_L": 1569209320, - "Guest_KR_Bee_Warrior_M": 1569208808, - "Guest_KR_DragonBeetle_Monster_A": 1777853782, - "Guest_KR_Hornet_Drone_A": 1161590757, - "Guest_KR_Hornet_Drone_B": 1161607141, - "Guest_KR_Hornet_Drone_C": 1161623525, - "Guest_KR_Hornet_Drone_D": 1161639909, - "Guest_KR_Hornet_Drone_E": 1161656293, - "Guest_KR_Lice_DeepSpawn_A": 761604959, - "Guest_KR_Mantis_HunterF_A": 820917199, - "Guest_KR_Mantis_HunterF_B": 871248847, - "Guest_KR_Mantis_HunterF_C": 854471631, - "Guest_KR_Mantis_HunterF_D": 904803279, - "Guest_KR_Mantis_HunterF_F": 938357711, - "Guest_KR_Mantis_HunterF_F_Driftwood": 2053608437, - "Guest_KR_Mantis_HunterF_G": 921580495, - "Guest_KR_Mantis_HunterF_H": 971912143, - "Guest_KR_Mantis_HunterF_I": 955134927, - "Guest_KR_Mantis_HunterF_I_Zuzka": 935478878, - "Guest_KR_Mantis_HunterF_J": 1005466575, - "Guest_KR_Mantis_HunterF_J_Zelda": 886910558, - "Guest_KR_Mantis_HunterF_K": 988689359, - "Guest_KR_Mantis_HunterF_K_LongShd": 1767574336, - "Guest_KR_Mantis_HunterF_L": 1039021007, - "Guest_KR_Mantis_HunterF_M": 1022243791, - "Guest_KR_Mantis_HunterF_P_Bossfight": 1731428987, - "Guest_KR_Mantis_HunterF_Q": 552481743, - "Guest_KR_Mantis_HunterF_R": 602813391, - "Guest_KR_Mantis_HunterF_S": 586036175, - "Guest_KR_Mantis_HunterF_SecondColumnCpt_A": 1354033994, - "Guest_KR_Mantis_HunterF_T": 636367823, - "Guest_KR_Mantis_HunterF_Tribute": 1946371041, - "Guest_KR_Mantis_HunterF_U": 619590607, - "Guest_KR_Mantis_HunterF_V": 669922255, - "Guest_KR_Mantis_HunterF_W": 653145039, - "Guest_KR_Mantis_HunterF_Y": 686699471, - "Guest_KR_Mantis_HunterF_Z_Officer": 206016474, - "Guest_KR_Mantis_ProphetF_B": 1791139097, - "Guest_KR_Mantis_ProphetF_C": 1254268185, - "Guest_KR_Milipede_Warrior_A": 410726278, - "Guest_KR_Milipede_Warrior_B": 410726282, - "Guest_KR_Milipede_Warrior_C": 410726286, - "Guest_KR_Milipede_Warrior_D": 410726290, - "Guest_KR_Milipede_Warrior_H": 410726306, - "Guest_KR_Milipede_Warrior_J": 410726314, - "Guest_KR_Milipede_Warrior_K": 410726318, - "Guest_KR_Moth_Priest_A": 1421532604, - "Guest_KR_Moth_Priest_B": 1421532092, - "Guest_KR_Moth_Priest_C": 1421531580, - "Guest_KR_Moth_Priest_D": 1421531068, - "Guest_KR_Moth_Priest_D_Drepa": 1483393420, - "Guest_KR_Moth_Priest_E": 1421530556, - "Guest_KR_Moth_Priest_F": 1421530044, - "Guest_KR_Mantis_HunterF_Z": 737031119, - "Guest_KR_Roach_AntLion_A": 1860517987, - "Guest_KR_Roach_AntLion_B_Bossfight": 993284625, - "Guest_KR_Roach_AntLion_C": 1861566563, - "Guest_KR_Roach_Cook_A": 259847495, - "Guest_KR_Roach_Glutton_B": 249524334, - "Guest_KR_Roach_WaterBug_A": 1795473599, - "Guest_KR_Roach_WaterBug_B": 1745141951, - "Guest_MR_Beetle_Scarab_A_01": 1789741503, - "Guest_MR_Beetle_Scarab_A_02": 1789741491, - "Guest_MR_Beetle_Scarab_B_01": 1790265791, - "Guest_ZF-Goliath-R10-Boss-01": 7034074, - "Guest_ZF-Goliath-R10-Boss-02": 7034202, - "Guest_ZF-Goliath-R10-Boss-03": 7034330, - "Guest_ZF-Goliath-R10-Boss": 1603576807, - "Guest_ZF-Goliath-R11-Boss-01": 2140449574, - "Guest_ZF-Goliath-R11-Boss-02": 2140449446, - "Guest_ZF-Goliath-R11-Boss-03": 2140449318, - "Guest_ME1_Ant_Aunt_A": 707251855, - "Guest_ME1_Ant_Aunt_B": 1440231794, - "Guest_CC_Fly_Worker_A_01": 1497784524, - "Guest_CC_Roach_Worker_A_01": 1026321602, - "Guest_CC_Roach_Lieutenant_A_01": 1081690299, - "Guest_CC_Roach_Lieutenant_B_01": 1081690295, - "Guest_CC_Roach_Don_A_01": 547836893, - "Guest_CC_Roach_BBug_A_01": 1021150157, - "Guest_CC_Roach_RoachSteady_A_01": 859409247, - "Guest_Draconian-Caster-Yellow-Boss-R8": 1016221419, - "Guest_Draconian-Zombie-R8-2-1": 1226055265, - "Guest_Draconian-Zombie-R8-2": 1226115297, - "Guest_Draconian-Caster-Green-R7": 2143342719, - "Guest_Draconian-Warrior-Gold-Boss-R8": 1044388248, - "Guest_Draconian-Caster-Gray-R7": 95878769, - "Guest_DS-Boss-MAW": 1676071241, - "Guest_Draconian-Zombie-R8-1": 1226115309, - "Guest_Draconian-Warrior-Purple-Boss-R7": 601813964, - "Guest_Draconian-Caster-Tan-Boss-R7": 1973339532, - "Guest_Draconian-Caster-Blue-R6": 1684210173, - "Guest_Draconian-Caster-Yellow-R8": 2129956646, - "Guest_Draconian-Warrior-Red-R7": 521861944, - "Guest_Draconian-Warrior-Tan-R6": 1726416112, - "Guest_Draconian-Warrior-Purple-R8": 1896270341, - "Guest_Draconian-Caster-Blue-Boss-R7": 401581134, - "Guest_Draconian-Zombie-R8": 384497496, - "Guest_GH2-Draconian-HENCH-R10": 1149202878, - "Guest_GH2-Draconian-BOSS-R10": 2114378473, - "Guest_G14-DM-Draconian_Boss": 490246211, - "Guest_G14-DM-Draconian_Storm": 2035239226, - "Guest_G14-DM-Draconian_Ice": 782200563, - "Guest_G14-DM-Draconian_Malistaire_M": 1904691727, - "Guest_G14-DM-Draconian_Malistaire_S": 1904685583, - "Guest_G14-DM-Draconian_Malistaire_D": 1904700943, - "Guest_G14-DM-Draconian_Malistaire": 1904736751, - "Guest_G14-DM-Draconian_Malistaire_B": 1904702991, - "Guest_G14-DM-Draconian_Malistaire_I": 1904695823, - "Guest_G14-DM-Draconian_Malistaire_L": 1904692751, - "Guest_G14-DM-Draconian_Malistaire_F": 1904698895, - "Guest_Draconian-PW-Gauntlet-Boss": 493080513, - "Guest_CC_Draconian_A_01": 551348115, - "Guest_AZ-Parasaur-Undead-E": 2041242846, - "Guest_AZ-Parasaur-drkPriestF-F": 898239615, - "Guest_EM_Parasaur_DrkPriestF_A_01": 1007099606, - "Guest_EM_Parasaur_DrkPriestF_A_02": 1007099605, - "Guest_AZ-Parasaur-drkPriestF-D": 898501759, - "Guest_AZ-Parasaur-drkPriestF-E": 898370687, - "Guest_AZ-Parasaur-drkPriestF-A": 897846399, - "Guest_AZ-Parasaur-Undead-B": 1716853538, - "Guest_AZ-Parasaur-Undead-A": 106240802, - "Guest_AZ-Parasaur-Undead-G": 967501022, - "Guest_AZ-Parasaur-PriestF-D": 1177445525, - "Guest_AZ-Parasaur-Undead-C": 1179982626, - "Guest_AZ-Parasaur-drkPriestF-C": 897584255, - "Guest_AZ-Parasaur-Undead-SkurkisMinion": 1414766977, - "Guest_AZ-Parasaur-drkPriestF-B": 897715327, - "Guest_AZ-Parasaur-drkPriestF-B-Script": 1414847875, - "Guest_AZ_Parasaur_Priest_A_Boss_01": 890025421, - "Guest_AZ-Parasaur-Undead-D": 1504371934, - "Guest_AZ-Pteranodon-Knight-D": 1127364049, - "Guest_AZ-StoneSkeletonKey-Ixcax-Cursedwing": 699239601, - "Guest_AZ-Pteranodon-Knight-E": 1127363921, - "Guest_AZ-Pteranodon-Knight-F": 1127363793, - "Guest_AZ-Pteranodon-Knight-A-PageEvent": 942589002, - "Guest_AZ-StoneSkeletonKey-Minion-Death": 311645584, - "Guest_AZ-Pteranodon-Knight-A": 1127364433, - "Guest_AZ-Raptor-Wraith-A": 585729247, - "Guest_AZ-Raptor-Undead-D": 893623689, - "Guest_G14-HS-Ifzt": 1914694612, - "Guest_AZ-Raptor-Warrior-A": 855749884, - "Guest_AZ-Raptor-Undead-C": 897293705, - "Guest_AZ-Raptor-Undead-B": 896769417, - "Guest_AZ-Raptor-Undead-F": 894672265, - "Guest_AZ-Raptor-Warrior-F": 872527100, - "Guest_AZ-Raptor-Warrior-H": 973190396, - "Guest_AZ-Tritops-Warrior-I": 1942669769, - "Guest_AZ-Tritops-Undead-H": 1215305911, - "Guest_AZ-Tritops-Undead-E": 1164974263, - "Guest_AZ-Tritops-SpkWarrior-A": 860850257, - "Guest_AZ-Tritops-SpkWarrior-B": 860862545, - "Guest_AZ-Tritops-Undead-F": 1181751479, - "Guest_AZ-Tritops-Warrior-K": 868927945, - "Guest_AZ-Tritops-Undead-G": 1198528695, - "Guest_AZ-Tritops-Mummy-A": 1912444877, - "Guest_AZ-Tritops-Warrior-G": 1278555704, - "Guest_AZ-Tritops-Undead-D": 1148197047, - "Guest_AZ-Tritops-Undead-A": 1097865399, - "Guest_AZ-Tritops-SpkChief-B": 2096319577, - "Guest_AZ-Tritops-Mummy-B": 1910872013, - "Guest_AZ-Tritops-Warrior-H": 1405798857, - "Guest_AZ-Dino-Undead-A": 508678670, - "Guest_AZ-Dino-Undead-B": 508679182, - "Guest_AZ-Dino-Undead-D": 508680206, - "Guest_KR_Dino_Undead_A": 1638800628, - "Guest_KR_Dino_Undead_Minion_A": 892450235, - "MNT_HayRideTruck": 75377404, - "MNT_ShadowSpiderForm": 1439860426, - "Transformation_BG_Draconian_Death": 794598804, - "PP_BabyOrca": 1056061090, - "Transformation_BG_Cyclops_Fire": 638854828, - "Transformation_BG_Fairy_Ice": 874078461, - "PP_SpriteLife": 1824998010, - "PP_Raccoon": 1107326808, - "PP_FireKitten": 593048189, - "MNT_SkeletalDuck": 1306273036, - "PP_VampireSquid": 431023109, - "PP_CottonCandy": 891201813, - "PP_ThreeHeadGoat": 1282096939, - "PP_EyeBot": 260189248, - "MNT_DeathBoat": 1444454568, - "MNT_Lemuria": 908974762, - "MNT_DeathBoat_B": 1444456538, - "MNT_DeathBoat_C": 1444456474, - "MNT_Spooky3": 1667775622, - "MNT_PresentBox": 122082000, - "MNT_Orca": 1726961653, - "Guest_LM_Golem_Steel_A_01": 19551853, - "Guest_LM_Golem_Steel_A_02": 36329069, - "Guest_LM_EyeBot_A_01_Death": 380508535, - "Guest_LM_EyeBot_A_01_Myth": 167840640, - "PP_ThreeHeadGoat_B": 1209286443, - "PP_ThreeHeadGoat_C": 1211383595, - "Guest_KR_Eel_Whirligig_A": 1062268734, - "Guest_KR_Goliath_Behemoth_A": 1231139987, - "Guest_KR_Goliath_Behemoth_C": 1231139995, - "Guest_KR_Goliath_Behemoth_D": 1231139975, - "Guest_KR_Goliath_Behemoth_E": 1231139971, - "Guest_KR_Goliath_Behemoth_H": 1231140023, - "Guest_KR_Goliath_Crusher_C": 1651720060, - "Guest_KR_Goliath_Crusher_D": 2106376324, - "Guest_KR_Goliath_Crusher_F": 1032634500, - "Guest_KR_Goliath_Crusher_G": 495763588, - "Guest_KR_Goliath_Crusher_K": 1651720059, - "Guest_AZ-Goliath-Crusher-A": 1874784966, - "Guest_AZ-Goliath-Crusher-B": 264172230, - "Guest_AZ-Goliath-Crusher-C": 801043142, - "Guest_AZ-Goliath-Crusher-D": 809569594, - "Guest_AZ-Goliath-Crusher-E": 272698682, - "Guest_HG_AKT_Butterfly_Time_A_25": 1788523059, - "Guest_HG_AKT_Butterfly_Time_A_50": 1130017331, - "Guest_HG_AKT_Butterfly_Time_A_75": 1809494579, - "Guest_HG_AKT_Butterfly_Time_A_100": 1113240099, - "Guest_HG_AKT_Butterfly_Time_A_130": 1515893283, - "MNT_DeathBoat_D": 1444456922, - "Guest_KR_RhinoBeetle_Sun_A_Bossfight": 47895417, - "Guest_KR_RhinoBeetle_Star_A": 1947510103, - "Guest_KR_RhinoBeetle_Moon_A": 1751275863, - "Guest_ME1_Clockwork_Marine_A": 1481452452, - "Guest_ME1_Clockwork_Marine_B": 1481452068, - "Guest_CC_GoldSkeletonKey_Lice_DeepSpawn_B": 1306132994, - "Guest_KR_DamdinBazar_A_Bossfight": 1333596311, - "Guest_DS-Minion-MAW2": 356796677, - "Guest_KH-Wyrmling-1": 116330513, - "Guest_KH-Wyrmling-20": 183439385, - "Guest_KH-Wyrmling-40": 317657113, - "Guest_KH-Wyrmling-60": 451874841, - "Guest_KH-Wyrmling-80": 586092569, - "Guest_PL_Polar_Bear_Solider_C": 1785662565, - "Guest_Skeleton-Silver-WCBoss-L01": 17766963, - "Guest_Banshee-Red-Elite-L24_B": 1902069117, - "Transformation_BG_WolfWarrior_Myth": 339098032, - "Transformation_BG_RatThief_Balance": 881728218, - "Transformation_BG_Colossus_Storm": 593527492, - "Transformation_BG_Elf_Life": 347405087, - "Transformation_BG_Minotaur_Ice": 1197752291, - "MNT_TRex_B": 660285500, - "PP_SpriteDark_Ice": 2036248504, - "MNT_RollingBall": 1658139390, - "Guest_LM_TRex_Base_A_03": 1378630657, - "Guest_LM_TRex_Base_A_04": 1378745345, - "Guest_LM_TRex_Base_A_05": 1378728961, - "Guest_LM_TRex_Base_A_01": 1378663425, - "Guest_LM_TRex_Base_A_02": 1378647041, - "Guest_LM_TRex_Cyborg_A_01": 151609741, - "Guest_LM_TRex_Cyborg_A_02": 168386957, - "Guest_LM_TRex_Cyborg_A_03": 185164173, - "Guest_LM_TRex_Cyborg_B_01": 151611277, - "Guest_LM_TRex_Cyborg_D_01": 151612301, - "Guest_LM_TRex_Cyborg_E_01": 151611789, - "Guest_LM_TRex_Cyborg_C_01": 151610765, - "Guest_LM_Draconian_Base_A_01": 1607373112, - "Guest_LM_EyeBot_B_01": 1085543056, - "Guest_LM_Drone_Eye_C_01": 916954037, - "Guest_LM_Drone_Eye_D_01": 1230529608, - "Guest_LM_Drone_Eye_D_02": 1230545992, - "Guest_LM_Drone_Eye_D_04": 1230578760, - "Guest_LM_Drone_Eye_D_03": 1230562376, - "Guest_LM_Drone_Eye_A_01": 916954038, - "Guest_LM_Drone_Eye_A_02": 916937654, - "Guest_LM_Drone_Eye_B_01": 1230529611, - "Guest_LM_Drone_Eye_D_05": 1230595144, - "Guest_LM_Drone_Eye_D_07": 1230627912, - "Guest_LM_Drone_Eye_D_08": 1230644296, - "Guest_LM_Drone_Eye_A_03": 916921270, - "Guest_LM_Drone_Eye_A_04": 916904886, - "Guest_LM_Drone_Eye_C_02": 916937653, - "Guest_LM_EyeBot_B_02": 1061940593, - "Guest_LM_EyeBot_B_03": 1085543055, - "Guest_LM_EyeBot_B_04": 1061940594, - "Guest_LM_Drone_Eye_C_03": 916921269, - "Guest_LM_Robot_Kit10_A_01": 199936400, - "Guest_LM_Colossus_Mander_A_01": 2107529026, - "Guest_LM_Robot_Future_A_01": 998840846, - "Guest_LM_Robot_FutureBIG_A_01": 340408568, - "Guest_LM_Robot_FutureBIG_A_02": 340396280, - "Guest_LM_Robot_FutureBIG_A_03": 340400376, - "Guest_LM_Robot_OldOne_A_01": 779070973, - "Guest_LM_Robot_OldOne_A_02": 1315941885, - "Guest_LM_Millipede_Centi_A_01": 168575797, - "Guest_LM_Millipede_Centi_A_03": 168583989, - "Guest_LM_Millipede_Centi_A_02": 168588085, - "Guest_LM_Millipede_Centi_A_04": 168563509, - "Guest_LM_Moth_Sorcerer_A_01": 228191136, - "Guest_LM_Boar_Barbarian_A_01": 1238634912, - "Guest_LM_Boar_Barbarian_A_02": 1238634528, - "Guest_LM_Boar_Barbarian_A_03": 1238634656, - "Guest_LM_Boar_Barbarian_A_04": 1238635296, - "Guest_LM_Boar_Barbarian_A_05": 1238635424, - "Guest_LM_Boar_Chief_A_01": 357051311, - "Guest_LM_Fungus_Humango_A_01": 1398460044, - "Guest_LM_Fungus_Humango_A_02": 1398460172, - "Guest_LM_Treant_Base_A_01": 1658172241, - "Guest_LM_GiantTree_EvilRoots_A_01": 282225934, - "Guest_LM_PA_GreenMan_A_01": 67705044, - "Guest_LM_Fungus_Humango_B_01": 1348128396, - "Guest_LM_Fungus_Humango_A_03": 1398460300, - "Guest_LM_Fungus_Man_C_01": 1648824156, - "Guest_LM_Fungus_Man_C_02": 1650397020, - "Guest_LM_Rhino_Zombie_A_01": 248513993, - "Guest_LM_Malughast_Base_01": 883820436, - "Guest_LM_Malughast_Base_02": 1420691348, - "Guest_LM_Lemur_HierarchF_H_04": 231562115, - "Guest_LM_Malughast_Base_03": 1957562260, - "Guest_LM_Malughast_Base_05": 1263663212, - "Guest_LM_Malughast_Base_06": 726792300, - "Guest_LM_Malughast_Base_08": 346949523, - "Guest_LM_Malughast_Base_09": 883820435, - "Guest_LM_Malughast_Base_04": 1800534124, - "Guest_LM_Minotaur_Skeleton_A_01": 1865122824, - "Guest_LM_Lemur_Wild_B_03": 1783764037, - "Guest_LM_Lemur_HierarchF_H_01": 231541635, - "Guest_LM_Lemur_HierarchF_H_02": 231553923, - "Guest_LM_Mander_Warrior_A_01": 1651245419, - "Guest_LM_Mander_Warrior_A_02": 1651245291, - "Guest_LM_Mander_Warrior_B_01": 1634468203, - "Guest_LM_Mander_Warrior_B_02": 1634468075, - "Guest_LM_Mander_Warrior_A_03": 1651245163, - "Guest_LM_Mander_Warrior_B_03": 1634467947, - "Guest_LM_Mander_Warrior_A_06": 1651245803, - "Guest_LM_Mander_Warrior_A_05": 1651245931, - "Guest_LM_Mander_Mummy_B_01": 1844111521, - "Guest_LM_Mander_Hero_B_01": 865113284, - "MNT_HolidayHippogriff": 938892112, - "MNT_Sabertooth_Ice": 1870381696, - "PP_FenrisWolf_Bantam": 776647759, - "MNT_JetPack": 1986300552, - "MNT_Scooter_F": 1005560708, - "PP_FossaKitten_A": 431748212, - "PP_Elfvis": 147991405, - "Guest_LM_Chicken_Hero_A_01": 1308728300, - "Guest_LM_Horse_Explorer_A_01": 434405482, - "Guest_LM_Duck_HeroineF_A_01": 133199186, - "Guest_LM_Crane_Hero_A_01": 204272548, - "Guest_LM_Deer_HeroineF_A_01": 1800374959, - "Guest_LM_Deer_Hero_A_01": 223109503, - "Guest_LM_Dog_Hero_A_01": 1434615064, - "PP_YearTiger": 777048708, - "MNT_Barrel": 3576425, - "MNT_Krampus": 404117611, - "PP_ChineseTigerCub": 1256032005, - "PP_Lemur": 565774155, - "PP_Robot": 1089075331, - "PP_Capybara": 451970762, - "Guest_LM_Ghoul_Base_A_01": 1822415945, - "Guest_LM_Lemur_HierarchF_H_03": 231549827, - "Guest_LM_Ghoul_Base_A_02": 1820843081, - "Guest_LM_Ghoul_Base_A_03": 1821367369, - "MNT_SpringSoF2022": 1685679511, - "MNT_WarElephant": 875015497, - "PP_Strix": 514230046, - "MNT_Beachball": 791896033, - "MNT_Blank": 633398131, - "MNT_CardboardFlier": 1646636689, - "MNT_LochMonster": 879660722, - "Transformation_BG_Krok_Death": 1395067182, - "Transformation_BG_Draconian_Fire": 1551581732, - "PP_Scotty": 1708580475, - "Guest_KR_Mice_Knight_A": 480101508, - "PP_Peacock": 1178721112, - "MNT_PoodleMoth": 975420235, - "PP_Hummingbird": 624666906, - "PP_WolfWarrior_Myth": 470737416, - "Guest_HG_UFD_Ghost_QueenF_A_100": 795323059, - "Guest_HG_UFD_Ghost_QueenF_A_50": 728230579, - "Guest_HG_UFD_Pirate_UndeadHighland_A_Balance_150": 201145133, - "Guest_HG_UFD_Pirate_UndeadHighland_A_Balance_100": 201144941, - "Guest_HG_UFD_Pirate_UndeadHighland_A_Balance_50": 201177701, - "Guest_HG_UFD_Pirate_UndeadHighland_A_Star_150": 1329885920, - "Guest_HG_UFD_Pirate_UndeadHighland_A_Star_100": 1304720096, - "Guest_HG_UFD_Pirate_UndeadHighland_A_Star_50": 1305768671, - "Guest_HG_UFD_Pirate_UndeadHighland_A_Shadow_150": 1263689971, - "Guest_HG_UFD_Pirate_UndeadHighland_A_Shadow_100": 1263689977, - "Guest_HG_UFD_Pirate_UndeadHighland_A_Shadow_50": 189949177, - "Guest_HG_UFD_Kelpie_Warrior_A_150": 54296095, - "Guest_HG_UFD_Kelpie_Warrior_A_100": 725384735, - "Guest_HG_UFD_Kelpie_Warrior_A_50": 708607503, - "Guest_HG_UFD_Pirate_UndeadHighland_B_150": 1099317831, - "Guest_HG_UFD_Pirate_UndeadHighland_B_100": 25576008, - "Guest_HG_UFD_Pirate_UndeadHighland_B_50": 159793864, - "Guest_HG_UFD_Ghost_QueenF_A_150": 795716275, - "PP_SpiderMinion": 557357331, - "MNT_Vines_Rainbow": 1587180338, - "MNT_YoungDrake": 1279496198, - "PP_Pet_Coconut": 444388490, - "DragonKI": 1490194214, - "PP_Sharkfish": 601628284, - "PP_MimicCake": 48071878, - "Guest_AQ-Bronze-Eagle": 375279744, - "Guest_Spider-Brown-L26": 2128680185, - "Guest_KR_Spider_Giant_D": 744401035, - "Guest_Wizard-Female-Band-Blue-R8": 1447486557, - "Guest_CC_Human_DSCrusaderF_A_01": 726538068, - "Guest_WC_Scarecrow_A_01": 867491011, - "Guest_WC_Banshee_A_01": 1433786463, - "Guest_WC_LostSoul_A_01": 796936146, - "PP_Fairy_Myth": 1117624344, - "PP_SpriteDark_Myth": 1884257976, - "BG_CyclopsLife_A": 944091673, - "Transformation_BG_NinjaPig_Storm": 2005137181, - "Transformation_BG_Fairy_Myth": 1880704188, - "Transformation_BG_Cyclops_Life": 638936708, - "Guest_AQ-Eagle-Praetorian": 1988013806, - "Guest_KM_BabyCarrot_A_01": 766239512, - "Guest_G14-DM-Gargoyle": 282898047, - "Guest_MR_Durvish_Sergeant_A_Boss_01": 1532609325, - "Guest_Cyclops-RedHelmet-KTBoss-L28": 2072371506, - "Guest_EM_Pig_Singer_A_01": 698597069, - "Guest_EM_Pig_Captain_A": 977505995, - "Guest_EM_Pig_Crewman_A": 465576459, - "PP_ChipmunkConductor": 1089819900, - "PP_LuckyCat": 1109326826, - "MNT_ImpCar": 1736092191, - "MNT_Book": 1547655078, - "MNT_JackoLantern": 649919658, - "MNT_Zheng": 742453108, - "MNT_Train": 413197899, - "MNT_Cerberus": 552686313, - "PP_Coconut": 1122741587, - "Transformation_Statue": 1153168084, - "Transformation_Nullity": 622504394, - "PP_Irk": 1825277392, - "Guest_Wyrmling-Fire-R8-1": 531485009, - "MNT_WolfLowPoly_A": 1947890962, - "MNT_WolfLowPoly_B": 1947825426, - "Transformation_BG_RatThief_Fire": 1169330235, - "Transformation_BG_WolfWarrior_Death": 159966683, - "Transformation_BG_Minotaur_Balance": 657855108, - "Transformation_BG_Draconian_Ice": 1907339814, - "Transformation_BG_Colossus_Myth": 1305894338, - "Transformation_NV_Penguin": 1757096851, - "Transformation_NV_Unicorn": 60447768, - "Transformation_NV_Monkey": 1379873688, - "Transformation_NV_Dog": 1961288968, - "PP_Wolf_Storm": 455227171, - "PP_WoodDuck": 1680912895, - "MNT_RockingHorse": 1205280059, - "MNT_SOF2022_Car": 219868812, - "PP_Buffaloon": 796152873, - "MNT_Steamboat": 1969530127, - "MNT_FelizNavidog": 847046394, - "PP_Mustache": 1571079379, - "Guest_DD-DS01-Skeleton-Pirate-20": 226826848, - "Guest_DD-DS01-Skeleton-Pirate-40": 201661024, - "Guest_DD-DS01-Skeleton-Pirate-60": 210049632, - "Guest_DD-DS01-Skeleton-Pirate-80": 251992672, - "Guest_DD-DS01-Skeleton-Pirate": 1994450336, - "Guest_DD-DS01-Shadow-Minion-Fire": 1074864956, - "Guest_DD-DS01-Shadow-Minion-Ice": 1841681214, - "Guest_DD-DS01-Shadow-Minion-Fire-20": 1074880881, - "Guest_DD-DS01-Shadow-Minion-Fire-40": 1074880945, - "Guest_DD-DS01-Shadow-Minion-Ice-20": 96850220, - "Guest_DD-DS01-Shadow-Minion-Ice-40": 96850218, - "Guest_DD-DS01-Shadow-Minion-Fire-60": 1074881009, - "Guest_DD-DS01-Shadow-Minion-Ice-60": 96850216, - "Guest_DD-DS01-Shadow-Minion-Fire-80": 1074880561, - "Guest_DD-DS01-Shadow-Minion-Ice-80": 96850214, - "Guest_SC-SpectreOfB-1": 1471950935, - "Guest_SC-SpectreOfB-20": 1471942759, - "Guest_SC-SpectreOfB-40": 1471942663, - "Guest_SC-SpectreOfB-60": 1471942695, - "Guest_SC-SpectreOfB-80": 1471942855, - "Guest_KH-Skeleton-Ice-60": 2108358962, - "Guest_KH-Skeleton-Ice-40": 2108391730, - "Guest_KH-Skeleton-Ice-20": 2108293426, - "Guest_KH-Skeleton-Ice-1": 2099953970, - "Guest_KH-Skeleton-Ice-80": 2108195122, - "Guest_KH-Undead-Caster-60": 1662604496, - "Guest_KH-Undead-Caster-40": 1661555920, - "Guest_KH-Undead-Caster-20": 1664701648, - "Guest_KH-Undead-Caster-1": 1931564240, - "Guest_KH-Undead-Caster-80": 1667847376, - "Guest_DD-PA01-DeadBeets": 1664999367, - "Guest_DD-PA01-DeadBeets-20": 1901453253, - "Guest_DD-PA01-DeadBeets-40": 2002116549, - "Guest_DD-PA01-DeadBeets-60": 1968562117, - "Guest_DD-PA01-DeadBeets-80": 2069225413, - "Guest_DD-PA01-Disparagus": 1865816461, - "Guest_DD-PA01-Disparagus-20": 573970895, - "Guest_DD-PA01-Disparagus-40": 499770929, - "Guest_DD-PA01-Disparagus-60": 1573512753, - "Guest_DD-PA01-Disparagus-80": 1647712718, - "Guest_DD-PA01-MeanestFlyTrap": 2001546861, - "Guest_DD-PA01-MeanestFlyTrap-20": 1936326253, - "Guest_DD-PA01-MeanestFlyTrap-40": 1936064109, - "Guest_DD-PA01-MeanestFlyTrap-60": 1935801965, - "Guest_DD-PA01-MeanestFlyTrap-80": 1937636973, - "Guest_HG-MD-MacDeath-20": 182639104, - "Guest_HG-MD-MacDeath-40": 182638080, - "Guest_HG-MD-MacDeath-60": 182637056, - "Guest_HG-MD-MacDeath-80": 182636032, - "Guest_HG-MD-MacDeath-100": 174252032, - "Guest_HG-MD-MacDeath-130": 174202880, - "Guest_HG_Sinbad_Skeleton_25": 494617874, - "Guest_HG_Sinbad_Skeleton_50": 42253050, - "Guest_HG_Sinbad_Skeleton_75": 1115994862, - "Guest_HG_Sinbad_Skeleton_100": 2105232646, - "Guest_HG_Sinbad_Skeleton_130": 2105232650, - "Guest_HG_Sinbad_Skeleton_25_02": 492722834, - "Guest_HG_Sinbad_Skeleton_50_02": 44148090, - "Guest_HG_Sinbad_Skeleton_75_02": 1117889902, - "Guest_HG_Sinbad_Skeleton_100_02": 2044247302, - "Guest_HG_Sinbad_Skeleton_130_02": 2044247306, - "Guest_DD-AV01-WyrmBoss": 1648677986, - "Guest_DD-AV01-WyrmBoss-20": 1926730850, - "Guest_DD-AV01-WyrmBoss-40": 1927779426, - "Guest_DD-AV01-WyrmBoss-60": 1928828002, - "Guest_DD-AV01-WyrmBoss-80": 1921487970, - "Guest_RH-Wyrm-Boss-01": 1027277645, - "Guest_RH-Wyrm-Boss-20": 1027277660, - "Guest_RH-Wyrm-Boss-40": 1027277663, - "Guest_RH-Wyrm-Boss-60": 1027277662, - "Guest_RH-Wyrm-Boss-80": 1027277657, - "Guest_HG_Sinbad_Wyrm_25": 1101443356, - "Guest_HG_Sinbad_Wyrm_50": 1101528860, - "Guest_HG_Sinbad_Wyrm_75": 1101445916, - "Guest_HG_Sinbad_Wyrm_100": 1093138204, - "Guest_HG_Sinbad_Wyrm_130": 1093089052, - "Guest_KH-Treant-1": 2001244331, - "Guest_KH-Treant-60": 1968148651, - "Guest_KH-Treant-40": 1968017579, - "Guest_KH-Treant-20": 1967886507, - "Guest_KH-Treant-80": 1967231147, - "Guest_DD-PA01-ForestGrump": 1969685870, - "Guest_DD-PA01-ForestGrump-20": 714666713, - "Guest_DD-PA01-ForestGrump-40": 714666689, - "Guest_DD-PA01-ForestGrump-60": 714666697, - "Guest_DD-PA01-ForestGrump-80": 714666737, - "Guest_DD-PA01-ForestNymphs": 227087348, - "Guest_DD-PA01-ForestNymphs-20": 227023552, - "Guest_DD-PA01-ForestNymphs-60": 227023040, - "Guest_DD-PA01-ForestNymphs-80": 227024832, - "Guest_SC-Pig-BalanceWizardA-1": 475456968, - "Guest_SC-Pig-BalanceWizardA-20": 477550024, - "Guest_SC-Pig-BalanceWizardA-40": 477541832, - "Guest_SC-Pig-BalanceWizardA-60": 477533640, - "Guest_SC-Pig-BalanceWizardA-80": 477525448, - "Guest_SC-Pig-BalanceWizardB-1": 475456964, - "Guest_SC-Pig-BalanceWizardB-20": 477550020, - "Guest_SC-Pig-BalanceWizardB-40": 477541828, - "Guest_SC-Pig-BalanceWizardB-60": 477533636, - "Guest_SC-Pig-BalanceWizardB-80": 477525444, - "Guest_SC-Pig-BalanceWizardC-1": 475456960, - "Guest_SC-Pig-BalanceWizardC-20": 477550016, - "Guest_SC-Pig-FireWizard-1": 2048176291, - "Guest_SC-Pig-FireWizard-20": 2031399073, - "Guest_SC-Pig-FireWizard-40": 2132062369, - "Guest_SC-Pig-FireWizard-60": 2098507937, - "Guest_SC-Pig-FireWizard-80": 1930735777, - "Guest_SC-Pig-IceWizardF-1": 1178687744, - "Guest_SC-Pig-IceWizardF-20": 1161910526, - "Guest_SC-Pig-IceWizardF-40": 1128356094, - "Guest_SC-Pig-IceWizardF-60": 1094801662, - "Guest_SC-Pig-IceWizardF-80": 1329682686, - "Guest_SC-Pig-MythWizard-1": 2048492725, - "Guest_SC-Pig-MythWizard-20": 2031715511, - "Guest_SC-Pig-MythWizard-40": 2132378807, - "Guest_SC-Pig-MythWizard-60": 2098824375, - "Guest_SC-Pig-MythWizard-80": 1931052215, - "Guest_SC-Pig-StormWizardF-1": 1743849420, - "Guest_SC-Pig-StormWizardF-20": 1743851464, - "Guest_SC-Pig-StormWizardF-40": 1743851488, - "Guest_SC-Pig-StormWizardF-60": 1743851480, - "Guest_SC-Pig-StormWizardF-80": 1743851504, - "Guest_KH-Pig-Bandit-Lord-1": 1080496628, - "Guest_KH-Pig-Bandit-Lord-20": 543625652, - "Guest_KH-Pig-Bandit-Lord-40": 530116172, - "Guest_KH-Pig-Bandit-Lord-60": 1603857996, - "Guest_KH-Pig-Bandit-Lord-80": 1617367475, - "Guest_KH-Pig-Bandit-Ninja-1": 1945100907, - "Guest_KH-Pig-Bandit-Ninja-20": 1945102951, - "Guest_KH-Pig-Bandit-Ninja-40": 1945102975, - "Guest_KH-Pig-Bandit-Ninja-60": 1945102967, - "Guest_KH-Pig-Bandit-Ninja-80": 1945102927, - "Guest_KH-Pig-War-Caster-1": 656859765, - "Guest_KH-Pig-War-Caster-20": 606528119, - "Guest_KH-Pig-War-Caster-40": 572973687, - "Guest_KH-Pig-War-Caster-60": 539419255, - "Guest_KH-Pig-War-Caster-80": 774300279, - "Guest_KH-Pig-War-Warrior-Boss-1": 16342355, - "Guest_KH-Pig-War-Warrior-Boss-20": 2143724205, - "Guest_KH-Pig-War-Warrior-Boss-40": 2118558381, - "Guest_KH-Pig-War-Warrior-Boss-60": 2126946989, - "Guest_KH-Pig-War-Warrior-Boss-80": 2101781165, - "Guest_SC-Pig-BalanceWizardC-40": 477541824, - "Guest_SC-Pig-BalanceWizardC-60": 477533632, - "Guest_SC-Pig-BalanceWizardC-80": 477525440, - "Guest_KH-Helephant-Death-20": 1109389719, - "Guest_KH-Helephant-Death-40": 2111835753, - "Guest_KH-Helephant-Death-60": 1038093929, - "Guest_KH-Helephant-Death-80": 35647896, - "Guest_KH-GreyOgre-Spider-1": 356368404, - "Guest_KH-GreyOgre-Spider-20": 1966981204, - "Guest_KH-GreyOgre-Spider-40": 1254244268, - "Guest_KH-GreyOgre-Spider-60": 180502444, - "Guest_KH-GreyOgre-Spider-80": 893239379, - "Guest_HG_Sinbad_Colossus_25": 1190802829, - "Guest_HG_Sinbad_Colossus_50": 1493551719, - "Guest_HG_Sinbad_Colossus_75": 419809907, - "Guest_HG_Sinbad_Colossus_100": 653933977, - "Guest_HG_Sinbad_Colossus_130": 653933973, - "Guest_NV_Dino_AberrantUndead_A_01": 2035087398, - "Guest_NV_Hellephant_Aberrant_A_01": 989522333, - "Guest_NV_Hellephant_Aberrant_A_02": 989522334, - "Guest_NV_BananaSpider_Base_A_01": 1585810541, - "Guest_NV_BananaSpider_Base_A_02": 1581616237, - "Guest_NV_BananaSpider_Base_A_03": 1577421933, - "Guest_NV_BananaSpider_Base_A_04": 1606782061, - "Guest_NV_BananaSpider_Base_A_05": 1602587757, - "Guest_NV_Wyrm_Aberrant_A_01": 16108415, - "Guest_NV_Monkey_Zombie_A_01": 1854775300, - "Guest_NV_Monkey_Zombie_A_02": 1854775304, - "Guest_NV_Monkey_Zombie_A_03": 1854775308, - "Guest_NV_Monkey_Zombie_A_04": 1854775312, - "MNT_Flag_Monster": 867940056, - "Guest_SKB_WY_DarkBramble_A_30": 2046798767, - "Guest_SKB_WY_DarkBramble_A_50": 2046797999, - "Guest_SKB_WY_DarkBramble_A_100": 2044701359, - "Guest_SKB_WY_DarkBramble_A_150": 2044721839, - "Guest_SKB_GH_Boar_A_30": 1547921275, - "Guest_SKB_WC_SpiritIgnorance_A_50": 1488876986, - "Guest_SKB_WC_SpiritIgnorance_A_100": 2025748410, - "Guest_SKB_WC_SpiritIgnorance_A_150": 2025748413, - "Guest_SKB_DS_Loremaster_A_50": 527751539, - "Guest_SKB_DS_Loremaster_A_100": 527817059, - "Guest_SKB_DS_Loremaster_A_150": 527817699, - "Guest_SKB_CL_Dan_A_50": 637418706, - "Guest_SKB_CL_Dan_A_60": 1510064941, - "Guest_SKB_CL_Dan_A_100": 637410512, - "Guest_SKB_CL_Dan_A_150": 637410432, - "Guest_SKB_AV_Spectre_A_50": 2104631195, - "Guest_SKB_AV_Spectre_A_100": 2102534041, - "Guest_SKB_AV_Spectre_A_150": 2018647961, - "Guest_SKB_MS_Samoorai_A_50": 2029641915, - "Guest_SKB_MS_Samoorai_A_100": 2096750843, - "Guest_SKB_MS_Samoorai_A_150": 587603717, - "Transformation_BG_Krok_StromTemplate": 1317694546, - "PP_ChineseRabbit": 382941643, - "PP_ParadeElf": 1036247808, - "MNT_HeartSwarm": 918199310, - "MNT_SpringSOF2023": 1417178519, - "Transformation_BG_Elf_Death2Template": 1606653101, - "MNT_GummyBunny_D": 775840224, - "Transformation_BG_Krok_Life2Template": 747486212, - "PP_Flame": 959186933, - "PP_YachtRock": 1500927358, - "PP_PirateYachtRock": 1227549100, - "PP_ChickenMonster": 1845706534, - "PP_SnowHoppers_B": 1496460038, - "PP_SnowHoppers_C": 1496457990, - "MNT_Oarfish": 29720265, - "PP_RingTailedCat": 993143427, - "MNT_Fanboat": 19347694, - "MNT_MiniSub": 298697910, - "PP_DumboOctopus": 966435639, - "PP_Glowbug_Balance": 1405529577, - "PP_Glowbug_Death": 405117107, - "PP_Glowbug_Fire": 651698987, - "PP_Glowbug_Ice": 2124926395, - "PP_Glowbug_Life": 601367299, - "PP_Glowbug_Myth": 592978024, - "PP_Glowbug_Storm": 61190446, - "PP_DumboOctopus_B": 968448823, - "PP_DumboOctopus_C": 968383287, - "PP_BananaSpider_01": 1074383522, - "PP_BananaSpider_02": 1080674978, - "PP_BananaSpider_03": 1078577826, - "Guest_HG_NM_BeardDragon_Base_C_01": 82913785, - "Guest_HG_NM_BeardDragon_Base_C_02": 82913786, - "Guest_HG_NM_BeardDragon_Base_C_03": 82913787, - "Guest_HG_NM_Glowbug_Base_C_01": 544959703, - "Guest_HG_NM_Glowbug_Base_C_02": 544955607, - "Guest_HG_NM_Glowbug_Base_C_03": 544951511, - "Guest_HG_NM_Glowbug_Base_C_04": 544947415, - "Guest_HG_NM_Glowbug_Base_C_05": 544943319, - "Guest_HG_NM_Glowbug_Base_C_06": 544939223, - "Guest_HG_NM_Glowbug_Base_C_07": 544935127, - "MNT_BouquetofFlowers": 1511180560, - "PP_Piggle_Rainbow": 91081383, - "MNT_Sabertooth_FlameSaber": 1949516909, - "Guest_HG_NM_BeardDragon_Base_A_01": 83175929, - "Guest_HG_NM_BeardDragon_Base_A_02": 83175930, - "Guest_HG_NM_BeardDragon_Base_A_03": 83175931, - "Guest_HG_NM_BeardDragon_Base_B_01": 83044857, - "Guest_HG_NM_BeardDragon_Base_B_02": 83044858, - "Guest_HG_NM_BeardDragon_Base_B_03": 83044859, - "Guest_HG_NM_Glowbug_Base_B_01": 8088791, - "Guest_HG_NM_Glowbug_Base_B_02": 8084695, - "Guest_HG_NM_Glowbug_Base_B_03": 8080599, - "Guest_HG_NM_Glowbug_Base_B_04": 8076503, - "Guest_HG_NM_Glowbug_Base_B_05": 8072407, - "Guest_HG_NM_Glowbug_Base_B_06": 8068311, - "Guest_HG_NM_Glowbug_Base_B_07": 8064215, - "Guest_HG_NM_Glowbug_Base_A_01": 1618701527, - "Guest_HG_NM_Glowbug_Base_A_02": 1618697431, - "Guest_HG_NM_Glowbug_Base_A_03": 1618693335, - "Guest_HG_NM_Glowbug_Base_A_04": 1618689239, - "Guest_HG_NM_Glowbug_Base_A_05": 1618685143, - "Guest_HG_NM_Glowbug_Base_A_06": 1618681047, - "Guest_HG_NM_Glowbug_Base_A_07": 1618676951, - "MNT_SummerSOF2023": 1636120912, - "PP_Cyclops_Fire": 7821755, - "PP_Death_Elf": 1535744155, - "PP_Newt": 1438123483, - "PP_Echidna": 735439358, - "MNT_Wombat": 580544786, - "Transformation_BG_NinjaPig_Balance": 1799661438, - "Transformation_BG_Cyclops_Ice": 647975824, - "Transformation_BG_Minotaur_Storm": 1005667041, - "Transformation_GR_Parasaur_Priest_Ice": 1101466351, - "Transformation_GR_Parasaur_Priest_Fire": 892193041, - "Transformation_GR_Parasaur_Priest_Storm": 1525882116, - "Transformation_GR_Parasaur_Priest_Balance": 1127637476, - "Guest_GR_AZ_Parasaur_Undead_B_01": 322587487, - "MNT_WitchCat": 1167097888, - "PP_RolyPoly": 578538330, - "PP_Capybara_B": 628131532, - "MNT_OutbackTruck": 1815527801, - "PP_PoodleSailor": 2137704795, - "MNT_PolarianCannon": 2103490826, - "PP_TazmanianDevil": 1773548765, - "Guest_SKB_AZ_Ixcax_A_100": 556560994, - "Guest_SKB_AZ_Ixcax_A_150": 556610146, - "Guest_SKB_AZ_Ixcax_A_50": 564951650, - "MNT_GhoulsShovel": 2035610946, - "PP_CrystalBdayDragon": 1897078804, - "PP_SunGobblerBall": 1522469440, - "PP_Sun_GreenGobbler": 1337690394, - "MNT_2P_AutumnTreant": 1063435527, - "PP_AutumnTreant": 561077291, - "MNT_FlyingMonkey": 490807393, - "PP_BabyPlantMonster": 2076646587, - "MNT_PlantCreature_A": 1802823265, - "Transformation_BG_Fairy_Fire": 2065252898, - "Transformation_BG_Krok_Myth": 277926564, - "Transformation_BG_RatThief_Life": 1167758651, - "Transformation_BG_Elf_Balance": 1628238937, - "Transformation_BG_Colossus_Death": 184392004, - "Transformation_FortressPod": 139738335, - "P_Wombat_POLYMORPH": 1132264953, - "PP_SharkWobbegong": 1994247222, - "PP_ChineseNYDragon": 1126999021, - "PP_JingleBellRock": 1076037919, - "PP_Krok_Mummy_Myth": 438487583, - "PP_Cyclops_Ice": 1476966187, - "MNT_OutbackTruckB": 1813299577, - "MNT_EvilSnowmanBall": 758818712, - "MNT_ThanksgivingGobbler": 1760011910, - "Guest_WL_Ghost_LostSoul_A_01": 1224111704, - "Guest_WL_Kangaroo_Drover_F_01": 2025562931, - "Guest_WL_Spider_WarriorMage_C_01": 1296557888, - "Guest_WL_Spider_WarriorMage_C_02": 1430775616, - "Guest_WL_Spider_WarriorMage_C_03": 1564993344, - "Guest_WL_Spider_WarriorMage_C_04": 1699211072, - "Guest_WL_Spider_WarriorMage_C_05": 1833428800, - "Guest_WL_Spider_WarriorMage_C_06": 1967646528, - "Guest_WL_Spider_WarriorMage_C_07": 2101864256, - "Guest_SKB_KR_Lightbane_A_100": 837930677, - "Guest_SKB_KR_Lightbane_A_160": 837930669, - "Guest_SKB_KR_Lightbane_A_50": 1309555019, - "Transformation_WL_Phantasmanian_DevilTemplate": 384891502, - "MNT_2P_LeaflessTreant": 623083386, - "PP_Minotaur_Ice": 700151737, - "MNT_Scooter_G": 737125252, - "Guest_WL_Frog_Owner_B_01": 767864686, - "MNT_SilentKnight": 646654812, - "Guest_WL_TRex_Base_A_01": 1842562033, - "Guest_WL_TRex_Base_B_01": 304921616, - "PP_Groundhog": 108643243, - "Guest_NV_Unicorn_Guard_C_04": 1845621, - "MNT_EmuPunk": 647315080, - "MNT_HeartBalloon": 798826551, - "PP_ValentineHoppers": 968693964, - "MNT_SpringSOF2024_Heckhound": 453640548, - "Guest_AQ-Centaur-Arion": 1856508139, - "Guest_AQ-Centaur-Artemis": 333294011, - "Guest_AQ-Horse-Sea": 724896200, - "Guest_KR_Horse_Warlord_A_Bossfight": 1302284326, - "Guest_KR_Horse_Warlord_A_BossfightSP": 1300726822, - "Guest_KR_Zebra_Thrall_A": 1250265667, - "Guest_KR_Zebra_Thrall_A_Boss_Minion": 345677011, - "Guest_KR_Zebra_Thrall_A_Gallery": 1520303483, - "Guest_KH-Gray-Horse-40": 1802231403, - "Guest_KH-Gray-Horse-20": 1802231307, - "Guest_G14-BP-Unicorn_Fencer_Boss": 1602044152, - "Guest_Horse-Merc-Brown-L37": 1831175255, - "Guest_Horse-Merc-Tan-L39": 1363854837, - "Guest_Horse-Merc-Tan-L39-1": 2085275127, - "Guest_Horse-Merc-Gray-MSBoss-L39": 1863452041, - "Guest_Horse-Merc-Gray-L39": 2039135564, - "Guest_Horse-Merc-Tan-L38": 1363330549, - "Guest_WC_Horse_Mercenary_Roberto": 891924774, - "Guest_ZF-Nathi-Yellowstripe-R11": 1505157721, - "Guest_ZF-TseTse-Main-R11-Boss": 114927854, - "Guest_ZF-TseTse-Elephant-R11": 894147273, - "Guest_ZF-Zebra-Impi-Raider-R11": 1378242919, - "Guest_ZF-Zebra-Warrior-Male-R10-1": 1791906265, - "Guest_ZF-Zebra-Senzan-Zebu-R10-Boss": 373712721, - "Guest_ZF-Zebra-Shaka-Zebu-R10-Boss": 662142985, - "Guest_ZF-Zebra-Warrior-Female-R10-02": 1507835670, - "Guest_ZF-Zebra-Warrior-Male-R10": 47075786, - "Guest_ZF-Zebra-Warrior-Male-R10-02": 1791906714, - "Guest_ZF-Zebra-Warrior-Male-R10-03": 1791906746, - "Guest_ZF-Zebra-Warrior-Male-R10-05": 1791906682, - "Guest_ZF-Zebra-Warrior-Male-R10-2": 1791906268, - "Guest_ZF_Zebra_Spectral_Guardian-R11": 431970996, - "Guest_CC_Horse_Apoc_A_01": 644668374, - "Guest_CC_Horse_Apoc_B_01": 644668390, - "Guest_CC_Horse_Apoc_C_01": 644668406, - "Guest_CC_Horse_Apoc_D_01": 644668294, - "Guest_CC_Horse_Apoc_D_02": 645192582, - "Guest_CC_Unicorn_CorsairF_B_01": 1378532506, - "Guest_CC_Unicorn_Duelist_B_01": 64891542, - "Guest_CC_Unicorn_Guard_B_01": 1075063242, - "Guest_CC_Unicorn_Guard_B_02": 1075063238, - "Guest_CC_Unicorn_Guard_B_03": 1075063234, - "Guest_NV_Horse_HordeSoldier_A_01": 504396960, - "Guest_NV_Horse_HordeSoldier_A_02": 101743776, - "Guest_NV_Horse_HordeOfficer_A_01": 343600992, - "Guest_NV_Horse_HordeSoldier_A_03": 235961504, - "Guest_NV_Horse_HordeOfficer_A_02": 209383264, - "Guest_NV_Horse_AberrantTungAk_A_01": 952263441, - "Guest_NV_Horse_AberrantTungAk_A_02": 952263537, - "Guest_NV_Horse_TungAk_B_01": 1194718672, - "Guest_NV_Horse_TungAk_B_02": 657847760, - "Guest_NV_Horse_HordeOfficer_B_01": 343596896, - "Guest_NV_Horse_HordeOfficer_B_02": 209379168, - "Guest_NV_Horse_TungAk_A_01": 1194669520, - "Guest_NV_Unicorn_Guard_C_01": 1845601, - "Guest_NV_Unicorn_Guard_A_01": 797025, - "Guest_NV_Unicorn_AberrantGuard_A_01": 739851573, - "Guest_NV_Unicorn_Guard_C_02": 1845613, - "Guest_NV_Unicorn_Guard_C_03": 1845609, - "Guest_NV_Unicorn_AberrantGuard_A_02": 739848501, - "Guest_NV_Unicorn_Guard_A_02": 797037, - "Guest_NV_Unicorn_AberrantGuard_A_03": 739849525, - "Guest_NV_Unicorn_AberrantGuard_A_04": 739846453, - "Guest_NV_Horse_HordeOfficer_A_03": 75165536, - "Guest_NV_Horse_HordeSoldier_A_04": 907050144, - "Guest_NV_Horse_HordeSoldier_A_05": 1041267872, - "Guest_NV_Horse_HordeSoldier_C_01": 504388768, - "Guest_HG_TRAIN_Horse_MustangFencerF_A_Balance_50": 871182987, - "Guest_HG_TRAIN_Horse_MustangFencerF_A_Balance_75": 871176715, - "Guest_HG_TRAIN_Horse_MustangFencerF_A_Life_100": 886489645, - "Guest_HG_TRAIN_Horse_MustangFencerF_A_Balance_25": 871177035, - "Guest_HG_TRAIN_Horse_MustangFencerF_A_Balance_100": 872231819, - "Guest_HG_TRAIN_Horse_MustangFencerF_A_Life_140": 1960231469, - "Guest_HG_TRAIN_Horse_MustangFencerF_B_100": 2089957067, - "Guest_HG_TRAIN_Horse_MustangFencerF_A_Life_25": 1700184589, - "Guest_HG_TRAIN_Horse_MustangFencerF_A_Life_50": 920044045, - "Guest_HG_TRAIN_Horse_MustangFencerF_A_Life_75": 1742127629, - "Guest_HG_TRAIN_Horse_MustangFencerF_A_Balance_140": 872223627, - "Guest_HG_TRAIN_Horse_MustangFencerF_B_50": 2089952970, - "Guest_HG_TRAIN_Horse_MustangFencerF_B_75": 57530654, - "Guest_HG_TRAIN_Horse_MustangFencerF_B_140": 2089957099, - "Guest_HG_TRAIN_Horse_MustangFencerF_B_25": 1131272477, - "Guest_LM_Horse_Explorer_A_01_Hard": 1711837140, - "Guest_WL_Unicorn_Guard_A_01": 1074538935, - "Guest_WL_Unicorn_CorsairF_E_01": 1378532603, - "Guest_WL_Unicorn_Warlord_A_01": 1321310496, - "Guest_KH-Gray-Horse-1": 1802239547, - "Guest_KH-Gray-Horse-60": 1802231371, - "Guest_KH-Gray-Horse-80": 1802231467, - "Transformation_BG_NinjaPig_Ice": 186026527, - "Transformation_BG_Cyclops_Storm": 897316984, - "PP_MinotaurBalance": 1344665951, - "PP_OrthusMoon": 1804503950, - "PP_CoolPineapple": 1149318906, - "PP_TwinkleStars": 766378011, - "PP_Scroll": 1613313091, - "PP_Colossus_Death": 40713075, - "PP_ColossusDeath": 530964029, - "PP_KILiveRock": 1975550570, - "MNT_Outrigger": 1417937299, - "MNT_BookWyrm": 2080129190, - "MNT_RacingSnail": 1996220963, - "MNT_UmbrellaCloud": 145762615, - "PP_PropellerCat": 2094718580, - "MNT_TRex_Shirt": 586746001, - "MNT_Swarm_Bee": 1625228695, - "MNT__CelestialMoon": 968360256, - "Guest_ME_Sinbad_IronSultan_150": 2001676223, - "Guest_ME_Sinbad_Cyclops_150": 1968943689, - "Guest_ME_Sinbad_Skeleton_150": 1031490819, - "Guest_ME_Sinbad_Colossus_150": 1727675806, - "Guest_ME_Sinbad_Skeleton_150_02": 970505475, - "Guest_ME_Sinbad_Wyrm_150": 19314443, - "Guest_ZF-Zebra-Inzinzebu-Bandit-R11": 430262550, - "Guest_ZF-Zebra-Warrior-Male-R10-04": 1791906650, - "PP_TwinkleStars_02": 805304347, - "PP_TwinkleStars_03": 803207195, - "PP_TwinkleStars_01": 799012891, - "Transformation_BodleianHarrow": 609627870, - "Guest_HG_Gryphon_OwlStatue_A_01_L170": 77756046, - "Guest_HG_Gryphon_OwlStatue_A_02_L170": 73561742, - "Guest_HG_Gryphon_OwlStatue_A_01_L100": 77752974, - "Guest_HG_Gryphon_OwlStatue_A_02_L100": 73558670, - "Guest_HG_Gryphon_OwlStatue_A_01_L50": 78277134, - "Guest_HG_Gryphon_OwlStatue_A_02_L50": 74082830, - "MNT_SummerSOF2024_JudgementWings": 1078163967, - "MNT_Pegasus_E": 131704054, - "MNT_PolarisHero": 665176426, - "PP_Duckana": 1128961578, - "PP_QueenBee": 833291695, - "Transformation_BG_Draconian_Balance": 2078940682, - "Transformation_BG_WolfWarrior_Fire": 1762248682, - "Transformation_BG_Minotaur_Death": 309090657, - "PP_WolfWarrior_Fire": 685685256, - "PP_WolfWarrior_Death": 1857202724, - "Guest_ME-GTAV01-WyrmBoss-150": 1482208618, - "Guest_ME_SpectreOfB_L150": 684104791, - "Guest_ME_MD_MacDeath_L150": 1128977615, - "Guest_ME_Pig_BalanceWizardA_L150": 959913724, - "Guest_ME_Pig_BalanceWizardB_L150": 959913712, - "Guest_ME_Pig_BalanceWizardC_L150": 959913716, - "Guest_ME_Pig_FireWizard_L150": 964392255, - "Guest_ME_Pig_IceWizardF_L150": 86941026, - "Guest_ME_Pig_MythWizard_L150": 964051241, - "Guest_ME_Pig_StormWizardF_L150": 2016383602, - "Guest_ME_Clock_Clockworker_L150": 1424569772, - "Guest_ME_Clock_ClockworkSpanner_L150": 1966824609, - "Guest_ME_Clock_Lugs_L150": 370290904, - "Guest_ME_Clock_Lucia_L150": 1857768409, - "MNT_EvilChair": 339577702, - "PP_Cyclops_Storm": 621464512, - "PP_Krokomummy_Life": 462432735, - "Transformation_CL_Rematch_Crustacean": 1686865207, - "Transformation_CL_Rematch_Protector": 1893951532, - "Transformation_CL_Rematch_Angler": 120412196, - "Transformation_CL_Rematch_Piscean": 1624106070, - "Transformation_Zebra_Template": 1900548493, - "Transformation_Zebra2_Template": 325099540, - "Transformation_Zebra3_Template": 325099524, - "Transformation_Zebra4_Template": 325099636, - "MNT_SweetSixteenBirthday": 1009398096, - "MNT_2P_TRex_Bones": 1618543266, - "MNT_SpringBumperCar": 1725007788, - "PP_WinterGoblin": 2025052443, - "PP_OnyxAnubis": 1552575189, - "PP_OttomanCat": 223541582, - "MNT_HolidayYeti": 780983974, - "MNT_IceSled": 979912604, - "MNT_TurtleDoves": 1850191638, - "MNT_KrokChariot": 559783620, - "MNT_Mustang": 1775949401, - "MNT_PumpkinBall": 382849054, - "Transformation_BG_Fairy_Storm": 836920873, - "Transformation_BG_Elf_Myth": 1506493664, - "Transformation_NinjaPig_Life": 816802847, - "Transformation_BG_Krok_Fire": 1060580712, - "Transformation_BG_Colossus_Balance": 1067963041, - "Transformation_BG_NinjaPig_Life": 441460895, - "PP_Penguin_03": 1623028104, - "Transformation_Duck_Librarian_B": 864067551, - "Transformation_Duck_Librarian_A": 859873247, - "Transformation_Duck_Adventurer": 194560769, - "Transformation_Gummy_Bunny_C": 1298087941, - "Transformation_Frog_Horned_A": 837201339, - "Transformation_Glowbug_Storm": 2096380446, - "Transformation_Marshmallow_Critter_A": 1036335317, - "Transformation_Snipe_Base_B": 232132109, - "Transformation_Snowball": 915248481, - "Transformation_Wombat_Base": 333435450, - "Transformation_Human_Malistaire": 1414887773, - "Transformation_Morganthe_E": 1745180054, - "Transformation_Spider_Grandfather": 1131773979, - "Transformation_Khrulhu_Dasein_B": 367878762, - "Transformation_Devourer_Base": 698770016, - "Transformation_Alien_Meteor": 638746168, - "Transformation_Nightmare_Malus": 704212821, - "Transformation_Daemon_Personal": 278266463, - "PP_ValentinesDay": 810003364, - "PP_BabyHippo": 422858138, - "PP_Aardwold": 1592150119, - "PP_Aardwold_C": 1902528613, - "MNT_Cobra": 472847981, - "MNT_Serpopard": 1629558909, - "MNT_Serpopard_B": 1629556867, - "MNT_Serpopard_C": 1629556931, - "PP_Fairy_Fire": 1847789544, - "MNT_Mustang_B": 1448793691, - "PP_FireElfMyth": 1933609060, - "MNT_KT-BoatRide": 1560860110 - } - }, - "m_eMountType": { - "type": "enum eMountType", - "id": 3, - "offset": 184, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3097765662, - "enum_options": { - "eMNT_Standard": 0, - "eMNT_Floating": 1 - } - }, - "m_primaryColor": { - "type": "int", - "id": 4, - "offset": 188, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 900965981 - }, - "m_secondaryColor": { - "type": "int", - "id": 5, - "offset": 192, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1616550081 - }, - "m_patternColor": { - "type": "int", - "id": 6, - "offset": 196, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1304790295 - }, - "m_adjustableAnimationRate": { - "type": "bool", - "id": 7, - "offset": 200, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 698897022 - }, - "m_geometryOption": { - "type": "int", - "id": 8, - "offset": 204, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1776153279 - }, - "m_lastMountID": { - "type": "gid", - "id": 9, - "offset": 168, - "flags": 33554491, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1112551276 - } - } - }, - "1817549006": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1817549006, - "properties": { - "m_passList": { - "type": "class CSRAccessPassInfo", - "id": 0, - "offset": 72, - "flags": 23, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 3089809672 - } - } - }, - "253457010": { - "name": "class SharedPointer", - "bases": [ - "RaidGateBehaviorBase", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 253457010, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_raidKeyTemplateID": { - "type": "unsigned int", - "id": 1, - "offset": 112, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 884418367 - } - } - }, - "1414949704": { - "name": "enum CastleMagicSpellTemplate::CastleMagicSpellType", - "bases": [], - "hash": 1414949704, - "properties": {} - }, - "1819046960": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1819046960, - "properties": { - "m_matchSize": { - "type": "int", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 563704930 - }, - "m_secondsWaited": { - "type": "int", - "id": 1, - "offset": 76, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 606761671 - } - } - }, - "1817674746": { - "name": "class ClientGameEffectTimerDisplayBehavior*", - "bases": [ - "GameEffectTimerDisplayBehavior", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1817674746, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_effectName": { - "type": "std::string", - "id": 1, - "offset": 112, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2029161513 - }, - "m_textKey": { - "type": "std::string", - "id": 2, - "offset": 144, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1720060457 - }, - "m_height": { - "type": "float", - "id": 3, - "offset": 176, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 602977104 - }, - "m_zOffset": { - "type": "float", - "id": 4, - "offset": 180, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 736134072 - }, - "m_red": { - "type": "unsigned char", - "id": 5, - "offset": 184, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 904647115 - }, - "m_green": { - "type": "unsigned char", - "id": 6, - "offset": 185, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1433403873 - }, - "m_blue": { - "type": "unsigned char", - "id": 7, - "offset": 186, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 856840600 - }, - "m_triggers": { - "type": "class SharedPointer", - "id": 8, - "offset": 192, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 3290329276 - } - } - }, - "256150132": { - "name": "class MessageBoardList*", - "bases": [ - "PropertyClass" - ], - "hash": 256150132, - "properties": { - "m_messageBoardList": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2175215327 - } - } - }, - "1416022909": { - "name": "class TextComponent", - "bases": [ - "PropertyClass" - ], - "hash": 1416022909, - "properties": { - "m_useDropShadow": { - "type": "bool", - "id": 0, - "offset": 96, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1447894491 - }, - "m_useOutline": { - "type": "bool", - "id": 1, - "offset": 97, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1796769184 - } - } - }, - "254169350": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 254169350, - "properties": { - "m_buffType": { - "type": "enum DerbyTalentBuffType", - "id": 0, - "offset": 92, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1149251982, - "enum_options": { - "Buff": 0, - "Debuff": 1, - "Neither": 2 - } - }, - "m_kTarget": { - "type": "enum DerbyTargetType", - "id": 1, - "offset": 96, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1807803351, - "enum_options": { - "kTargetInFront": 0, - "kTargetBehind": 1, - "kTargetFirst": 2, - "kTargetSelf": 3, - "kTargetAll": 4, - "kTargetLast": 5 - } - }, - "m_nDuration": { - "type": "int", - "id": 2, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1110167982 - }, - "m_effectID": { - "type": "unsigned int", - "id": 3, - "offset": 88, - "flags": 24, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2347630439 - }, - "m_imageFilename": { - "type": "std::string", - "id": 4, - "offset": 112, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2813328063 - }, - "m_iconIndex": { - "type": "unsigned int", - "id": 5, - "offset": 144, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1265133262 - }, - "m_soundOnActivate": { - "type": "std::string", - "id": 6, - "offset": 152, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1956929714 - }, - "m_soundOnTarget": { - "type": "std::string", - "id": 7, - "offset": 184, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3444214056 - }, - "m_targetParticleEffect": { - "type": "std::string", - "id": 8, - "offset": 216, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3048234723 - }, - "m_overheadMessage": { - "type": "std::string", - "id": 9, - "offset": 248, - "flags": 8388639, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1701018190 - }, - "m_requirements": { - "type": "class RequirementList", - "id": 10, - "offset": 280, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2840988582 - } - } - }, - "1416022906": { - "name": "class TextComponent*", - "bases": [ - "PropertyClass" - ], - "hash": 1416022906, - "properties": { - "m_useDropShadow": { - "type": "bool", - "id": 0, - "offset": 96, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1447894491 - }, - "m_useOutline": { - "type": "bool", - "id": 1, - "offset": 97, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1796769184 - } - } - }, - "1821845783": { - "name": "class ClientAttachParticleActorCinematicAction", - "bases": [ - "AttachParticleActorCinematicAction", - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 1821845783, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - }, - "m_effectName": { - "type": "std::string", - "id": 2, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2029161513 - }, - "m_nodeName": { - "type": "std::string", - "id": 3, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3607089954 - }, - "m_assetName": { - "type": "std::string", - "id": 4, - "offset": 184, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513131580 - } - } - }, - "256248436": { - "name": "class MessageBoardList", - "bases": [ - "PropertyClass" - ], - "hash": 256248436, - "properties": { - "m_messageBoardList": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2175215327 - } - } - }, - "1417535973": { - "name": "class BackpackBuddyOptions*", - "bases": [ - "PropertyClass" - ], - "hash": 1417535973, - "properties": { - "m_sellCrownsItems": { - "type": "bool", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 264897697 - }, - "m_sellNoAuctionItems": { - "type": "bool", - "id": 1, - "offset": 73, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 521218229 - }, - "m_sellStitchedItems": { - "type": "bool", - "id": 2, - "offset": 74, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1261254173 - }, - "m_sellCosmeticItems": { - "type": "bool", - "id": 3, - "offset": 75, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 661884604 - }, - "m_sellItemsWithJewels": { - "type": "bool", - "id": 4, - "offset": 76, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1195509291 - }, - "m_equipmentRequirementSchools": { - "type": "class SharedPointer", - "id": 5, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1963747469 - }, - "m_equipmentLevelDifference": { - "type": "int", - "id": 6, - "offset": 96, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 882949685 - }, - "m_equipmentLevelCategories": { - "type": "class SharedPointer", - "id": 7, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 875757928 - }, - "m_equipmentDuplicateCount": { - "type": "int", - "id": 8, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1546271990 - }, - "m_equipmentDuplicateCategories": { - "type": "class SharedPointer", - "id": 9, - "offset": 128, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 616694667 - }, - "m_sellEmptyDecks": { - "type": "bool", - "id": 10, - "offset": 144, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1837351132 - }, - "m_sellTemporaryMounts": { - "type": "bool", - "id": 11, - "offset": 145, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1610059564 - }, - "m_sellAllHousingCategories": { - "type": "class SharedPointer", - "id": 12, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2030133551 - }, - "m_keepSkeletonKeys": { - "type": "bool", - "id": 13, - "offset": 168, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1475507737 - }, - "m_keepGuildGateKeys": { - "type": "bool", - "id": 14, - "offset": 169, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1977825738 - }, - "m_keepSocketWrenches": { - "type": "bool", - "id": 15, - "offset": 170, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 418836224 - }, - "m_keepGauntletsOneShotDungeons": { - "type": "bool", - "id": 16, - "offset": 171, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1849469010 - }, - "m_keepQuintecentCores": { - "type": "bool", - "id": 17, - "offset": 172, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 164534196 - }, - "m_keepCrownSeeds": { - "type": "bool", - "id": 18, - "offset": 173, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1924786069 - }, - "m_housingDuplicateCount": { - "type": "int", - "id": 19, - "offset": 176, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 545140859 - }, - "m_sellHousingDuplicateCategories": { - "type": "class SharedPointer", - "id": 20, - "offset": 184, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1794770481 - }, - "m_libraryTreasureCardSchools": { - "type": "class SharedPointer", - "id": 21, - "offset": 200, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3468556638 - }, - "m_treasureCardDuplicateCount": { - "type": "int", - "id": 22, - "offset": 216, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1921259619 - }, - "m_treasureCardDuplicateSchools": { - "type": "class SharedPointer", - "id": 23, - "offset": 224, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3246907172 - }, - "m_sellAllGardeningTC": { - "type": "bool", - "id": 24, - "offset": 240, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1661696866 - }, - "m_sellAllCastleMagicTC": { - "type": "bool", - "id": 25, - "offset": 241, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 221153712 - }, - "m_sellAllCantripTC": { - "type": "bool", - "id": 26, - "offset": 242, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 815472644 - }, - "m_sellAllJewelSchools": { - "type": "class SharedPointer", - "id": 27, - "offset": 248, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2852898436 - }, - "m_jewelDuplicateCount": { - "type": "int", - "id": 28, - "offset": 264, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 9285909 - }, - "m_sellAllPinSchools": { - "type": "class SharedPointer", - "id": 29, - "offset": 272, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2024509716 - }, - "m_pinDuplicateCount": { - "type": "int", - "id": 30, - "offset": 288, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 17477605 - }, - "m_sellBlockJewels": { - "type": "bool", - "id": 31, - "offset": 292, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 947085848 - }, - "m_sellCriticalJewels": { - "type": "bool", - "id": 32, - "offset": 293, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1662439960 - }, - "m_sellAccuracyJewels": { - "type": "bool", - "id": 33, - "offset": 294, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 575425784 - }, - "m_sellFlatResistJewels": { - "type": "bool", - "id": 34, - "offset": 295, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1422401486 - }, - "m_sellFlatDamageJewels": { - "type": "bool", - "id": 35, - "offset": 296, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1076082387 - }, - "m_sellIncomingHealingJewels": { - "type": "bool", - "id": 36, - "offset": 297, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1056576185 - }, - "m_sellOutgoingHealingJewels": { - "type": "bool", - "id": 37, - "offset": 298, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 769504177 - }, - "m_sellHealthJewels": { - "type": "bool", - "id": 38, - "offset": 299, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 895258275 - }, - "m_sellManaJewels": { - "type": "bool", - "id": 39, - "offset": 300, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 497642570 - }, - "m_sellGivesSpellJewels": { - "type": "bool", - "id": 40, - "offset": 301, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1610892139 - }, - "m_sellDerbyJewels": { - "type": "bool", - "id": 41, - "offset": 302, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1304798563 - } - } - }, - "1820883985": { - "name": "class SharedPointer", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1820883985, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - } - } - }, - "1417535949": { - "name": "class BackpackBuddyOptions", - "bases": [ - "PropertyClass" - ], - "hash": 1417535949, - "properties": { - "m_sellCrownsItems": { - "type": "bool", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 264897697 - }, - "m_sellNoAuctionItems": { - "type": "bool", - "id": 1, - "offset": 73, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 521218229 - }, - "m_sellStitchedItems": { - "type": "bool", - "id": 2, - "offset": 74, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1261254173 - }, - "m_sellCosmeticItems": { - "type": "bool", - "id": 3, - "offset": 75, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 661884604 - }, - "m_sellItemsWithJewels": { - "type": "bool", - "id": 4, - "offset": 76, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1195509291 - }, - "m_equipmentRequirementSchools": { - "type": "class SharedPointer", - "id": 5, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1963747469 - }, - "m_equipmentLevelDifference": { - "type": "int", - "id": 6, - "offset": 96, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 882949685 - }, - "m_equipmentLevelCategories": { - "type": "class SharedPointer", - "id": 7, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 875757928 - }, - "m_equipmentDuplicateCount": { - "type": "int", - "id": 8, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1546271990 - }, - "m_equipmentDuplicateCategories": { - "type": "class SharedPointer", - "id": 9, - "offset": 128, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 616694667 - }, - "m_sellEmptyDecks": { - "type": "bool", - "id": 10, - "offset": 144, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1837351132 - }, - "m_sellTemporaryMounts": { - "type": "bool", - "id": 11, - "offset": 145, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1610059564 - }, - "m_sellAllHousingCategories": { - "type": "class SharedPointer", - "id": 12, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2030133551 - }, - "m_keepSkeletonKeys": { - "type": "bool", - "id": 13, - "offset": 168, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1475507737 - }, - "m_keepGuildGateKeys": { - "type": "bool", - "id": 14, - "offset": 169, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1977825738 - }, - "m_keepSocketWrenches": { - "type": "bool", - "id": 15, - "offset": 170, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 418836224 - }, - "m_keepGauntletsOneShotDungeons": { - "type": "bool", - "id": 16, - "offset": 171, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1849469010 - }, - "m_keepQuintecentCores": { - "type": "bool", - "id": 17, - "offset": 172, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 164534196 - }, - "m_keepCrownSeeds": { - "type": "bool", - "id": 18, - "offset": 173, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1924786069 - }, - "m_housingDuplicateCount": { - "type": "int", - "id": 19, - "offset": 176, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 545140859 - }, - "m_sellHousingDuplicateCategories": { - "type": "class SharedPointer", - "id": 20, - "offset": 184, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1794770481 - }, - "m_libraryTreasureCardSchools": { - "type": "class SharedPointer", - "id": 21, - "offset": 200, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3468556638 - }, - "m_treasureCardDuplicateCount": { - "type": "int", - "id": 22, - "offset": 216, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1921259619 - }, - "m_treasureCardDuplicateSchools": { - "type": "class SharedPointer", - "id": 23, - "offset": 224, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3246907172 - }, - "m_sellAllGardeningTC": { - "type": "bool", - "id": 24, - "offset": 240, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1661696866 - }, - "m_sellAllCastleMagicTC": { - "type": "bool", - "id": 25, - "offset": 241, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 221153712 - }, - "m_sellAllCantripTC": { - "type": "bool", - "id": 26, - "offset": 242, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 815472644 - }, - "m_sellAllJewelSchools": { - "type": "class SharedPointer", - "id": 27, - "offset": 248, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2852898436 - }, - "m_jewelDuplicateCount": { - "type": "int", - "id": 28, - "offset": 264, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 9285909 - }, - "m_sellAllPinSchools": { - "type": "class SharedPointer", - "id": 29, - "offset": 272, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2024509716 - }, - "m_pinDuplicateCount": { - "type": "int", - "id": 30, - "offset": 288, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 17477605 - }, - "m_sellBlockJewels": { - "type": "bool", - "id": 31, - "offset": 292, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 947085848 - }, - "m_sellCriticalJewels": { - "type": "bool", - "id": 32, - "offset": 293, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1662439960 - }, - "m_sellAccuracyJewels": { - "type": "bool", - "id": 33, - "offset": 294, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 575425784 - }, - "m_sellFlatResistJewels": { - "type": "bool", - "id": 34, - "offset": 295, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1422401486 - }, - "m_sellFlatDamageJewels": { - "type": "bool", - "id": 35, - "offset": 296, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1076082387 - }, - "m_sellIncomingHealingJewels": { - "type": "bool", - "id": 36, - "offset": 297, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1056576185 - }, - "m_sellOutgoingHealingJewels": { - "type": "bool", - "id": 37, - "offset": 298, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 769504177 - }, - "m_sellHealthJewels": { - "type": "bool", - "id": 38, - "offset": 299, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 895258275 - }, - "m_sellManaJewels": { - "type": "bool", - "id": 39, - "offset": 300, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 497642570 - }, - "m_sellGivesSpellJewels": { - "type": "bool", - "id": 40, - "offset": 301, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1610892139 - }, - "m_sellDerbyJewels": { - "type": "bool", - "id": 41, - "offset": 302, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1304798563 - } - } - }, - "1819500544": { - "name": "class ManaGlobe*", - "bases": [ - "StatGlobe", - "ControlSprite", - "Window", - "PropertyClass" - ], - "hash": 1819500544, - "properties": { - "m_sName": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306437263 - }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621225959 - }, - "m_Style": { - "type": "unsigned int", - "id": 2, - "offset": 152, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "SCALE_CHILDREN": 2, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "FOCUS_LOCKED": 64, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152 - } - }, - "m_Flags": { - "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648, - "ONE_SHOT": 8388608, - "FLIPPED_HORIZONTAL": 16777216, - "FLIPPED_VERTICAL": 33554432 - } - }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3105139380 - }, - "m_fTargetAlpha": { - "type": "float", - "id": 5, - "offset": 212, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1809129834 - }, - "m_fDisabledAlpha": { - "type": "float", - "id": 6, - "offset": 216, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1389987675 - }, - "m_fAlpha": { - "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 482130755 - }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3623628394 - }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2102211316 - }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1846695875 - }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3389835433 - }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2547159940 - }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2587533771 - }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3091503757 - }, - "m_pMaterial": { - "type": "class SharedPointer", - "id": 16, - "offset": 592, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3479277078 - }, - "m_fRotation": { - "type": "float", - "id": 17, - "offset": 608, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1175400173 - }, - "m_Color": { - "type": "class Color", - "id": 18, - "offset": 584, - "flags": 262279, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1753714077 - }, - "m_textColor": { - "type": "class Color", - "id": 19, - "offset": 612, - "flags": 262279, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2528109250 - }, - "m_textComponent": { - "type": "class TextComponent", - "id": 20, - "offset": 616, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3491704390 - }, - "m_amount": { - "type": "int", - "id": 21, - "offset": 800, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 248546638 - } - } - }, - "1819480064": { - "name": "class ManaGlobe", - "bases": [ - "StatGlobe", - "ControlSprite", - "Window", - "PropertyClass" - ], - "hash": 1819480064, - "properties": { - "m_sName": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306437263 - }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621225959 - }, - "m_Style": { - "type": "unsigned int", - "id": 2, - "offset": 152, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "SCALE_CHILDREN": 2, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "FOCUS_LOCKED": 64, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152 - } - }, - "m_Flags": { - "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648, - "ONE_SHOT": 8388608, - "FLIPPED_HORIZONTAL": 16777216, - "FLIPPED_VERTICAL": 33554432 - } - }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3105139380 - }, - "m_fTargetAlpha": { - "type": "float", - "id": 5, - "offset": 212, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1809129834 - }, - "m_fDisabledAlpha": { - "type": "float", - "id": 6, - "offset": 216, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1389987675 - }, - "m_fAlpha": { - "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 482130755 - }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3623628394 - }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2102211316 - }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1846695875 - }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3389835433 - }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2547159940 - }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2587533771 - }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3091503757 - }, - "m_pMaterial": { - "type": "class SharedPointer", - "id": 16, - "offset": 592, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3479277078 - }, - "m_fRotation": { - "type": "float", - "id": 17, - "offset": 608, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1175400173 - }, - "m_Color": { - "type": "class Color", - "id": 18, - "offset": 584, - "flags": 262279, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1753714077 - }, - "m_textColor": { - "type": "class Color", - "id": 19, - "offset": 612, - "flags": 262279, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2528109250 - }, - "m_textComponent": { - "type": "class TextComponent", - "id": 20, - "offset": 616, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3491704390 - }, - "m_amount": { - "type": "int", - "id": 21, - "offset": 800, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 248546638 - } - } - }, - "258004483": { - "name": "class EffectsBehavior*", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 258004483, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - } - } - }, - "1819344950": { - "name": "class std::list >", - "bases": [], - "hash": 1819344950, - "properties": {} - }, - "256553494": { - "name": "class AdventurePartyJoinInfo*", - "bases": [ - "PropertyClass" - ], - "hash": 256553494, - "properties": { - "m_adventurePartyGID": { - "type": "gid", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2003479882 - }, - "m_adventurePartyName": { - "type": "unsigned int", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1899719436 - }, - "m_adventurePartyNameLocale": { - "type": "int", - "id": 2, - "offset": 84, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 695833705 - }, - "m_purposeType": { - "type": "int", - "id": 3, - "offset": 88, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1148443466 - }, - "m_purposeWorldID": { - "type": "unsigned int", - "id": 4, - "offset": 92, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1790486832 - }, - "m_partySize": { - "type": "int", - "id": 5, - "offset": 96, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 234201381 - }, - "m_onlineCount": { - "type": "int", - "id": 6, - "offset": 100, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 35306568 - } - } - }, - "256512534": { - "name": "class AdventurePartyJoinInfo", - "bases": [ - "PropertyClass" - ], - "hash": 256512534, - "properties": { - "m_adventurePartyGID": { - "type": "gid", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2003479882 - }, - "m_adventurePartyName": { - "type": "unsigned int", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1899719436 - }, - "m_adventurePartyNameLocale": { - "type": "int", - "id": 2, - "offset": 84, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 695833705 - }, - "m_purposeType": { - "type": "int", - "id": 3, - "offset": 88, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1148443466 - }, - "m_purposeWorldID": { - "type": "unsigned int", - "id": 4, - "offset": 92, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1790486832 - }, - "m_partySize": { - "type": "int", - "id": 5, - "offset": 96, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 234201381 - }, - "m_onlineCount": { - "type": "int", - "id": 6, - "offset": 100, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 35306568 - } - } - }, - "1419807349": { - "name": "class SG_GameLevelData", - "bases": [ - "PropertyClass" - ], - "hash": 1419807349, - "properties": { - "m_filePath": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3116244552 - }, - "m_shotLimit": { - "type": "int", - "id": 1, - "offset": 136, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1999036567 - }, - "m_levelIndex": { - "type": "unsigned int", - "id": 2, - "offset": 140, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 708309693 - }, - "m_perfectScore": { - "type": "int", - "id": 3, - "offset": 144, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 147156703 - }, - "m_flyOverCamera": { - "type": "std::string", - "id": 4, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3580817515 - } - } - }, - "1418605543": { - "name": "class CantripLevelControl", - "bases": [ - "Window", - "PropertyClass" - ], - "hash": 1418605543, - "properties": { - "m_sName": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306437263 - }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 65667, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621225959 - }, - "m_Style": { - "type": "unsigned int", - "id": 2, - "offset": 152, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "SCALE_CHILDREN": 2, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "FOCUS_LOCKED": 64, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152 - } - }, - "m_Flags": { - "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } - }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3105139380 - }, - "m_fTargetAlpha": { - "type": "float", - "id": 5, - "offset": 212, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1809129834 - }, - "m_fDisabledAlpha": { - "type": "float", - "id": 6, - "offset": 216, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1389987675 - }, - "m_fAlpha": { - "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 482130755 - }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3623628394 - }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2102211316 - }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1846695875 - }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3389835433 - }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2547159940 - }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2587533771 - }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3091503757 - } - } - }, - "1418397150": { - "name": "class PetTomePetTotal*", - "bases": [ - "PropertyClass" - ], - "hash": 1418397150, - "properties": { - "m_className": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2220521682 - }, - "m_petCount": { - "type": "unsigned int", - "id": 1, - "offset": 108, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2215607743 - } - } - }, - "1820296186": { - "name": "class ClientGameEffectTimerDisplayBehavior", - "bases": [ - "GameEffectTimerDisplayBehavior", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1820296186, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_effectName": { - "type": "std::string", - "id": 1, - "offset": 112, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2029161513 - }, - "m_textKey": { - "type": "std::string", - "id": 2, - "offset": 144, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1720060457 - }, - "m_height": { - "type": "float", - "id": 3, - "offset": 176, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 602977104 - }, - "m_zOffset": { - "type": "float", - "id": 4, - "offset": 180, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 736134072 - }, - "m_red": { - "type": "unsigned char", - "id": 5, - "offset": 184, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 904647115 - }, - "m_green": { - "type": "unsigned char", - "id": 6, - "offset": 185, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1433403873 - }, - "m_blue": { - "type": "unsigned char", - "id": 7, - "offset": 186, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 856840600 - }, - "m_triggers": { - "type": "class SharedPointer", - "id": 8, - "offset": 192, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 3290329276 - } - } - }, - "257999363": { - "name": "class EffectsBehavior", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 257999363, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - } - } - }, - "1418255974": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1418255974, - "properties": { - "m_sMaterialName": { - "type": "std::wstring", - "id": 0, - "offset": 72, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1299185467 - }, - "m_Blending": { - "type": "enum Material::Blending", - "id": 1, - "offset": 116, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3003693822, - "enum_options": { - "B_NONE": 0, - "B_ADDITIVE": 1, - "B_ALPHA": 2, - "B_ALPHA_INV": 3, - "B_ADDITIVE_INV": 4, - "__DEFAULT": "B_ALPHA" - } - }, - "m_eRepeat": { - "type": "enum Material::Repeating", - "id": 2, - "offset": 176, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3302018843, - "enum_options": { - "R_NONE": 0, - "R_REPEAT": 1 - } - }, - "m_pDiffuseMap": { - "type": "class SharedPointer", - "id": 3, - "offset": 120, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 4008975679 - }, - "m_pAlphaMask": { - "type": "class SharedPointer", - "id": 4, - "offset": 136, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3411451405 - }, - "m_fLastAlpha": { - "type": "float", - "id": 5, - "offset": 152, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 284727287 - }, - "m_Diffuse": { - "type": "class Color", - "id": 6, - "offset": 156, - "flags": 262279, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1644364836 - }, - "m_Ambient": { - "type": "class Color", - "id": 7, - "offset": 160, - "flags": 262279, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2216816350 - }, - "m_Specular": { - "type": "class Color", - "id": 8, - "offset": 168, - "flags": 262279, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2645528957 - }, - "m_fSpecularPower": { - "type": "float", - "id": 9, - "offset": 172, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 539146057 - }, - "m_Frames": { - "type": "class Rect", - "id": 10, - "offset": 192, - "flags": 65671, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 3064301836 - }, - "m_nCurrentFrame": { - "type": "int", - "id": 11, - "offset": 216, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 45308854 - }, - "m_fAnimRate": { - "type": "float", - "id": 12, - "offset": 228, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 802385934 - }, - "m_nAnimBegin": { - "type": "int", - "id": 13, - "offset": 220, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 400513266 - }, - "m_nAnimEnd": { - "type": "int", - "id": 14, - "offset": 224, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1081103460 - }, - "m_fAnimTime": { - "type": "float", - "id": 15, - "offset": 232, - "flags": 134, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 802466289 - }, - "m_fMaterialScaleX": { - "type": "float", - "id": 16, - "offset": 180, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 634638220 - }, - "m_fMaterialScaleY": { - "type": "float", - "id": 17, - "offset": 184, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 634638221 - } - } - }, - "257366358": { - "name": "class ExpansionBehavior*", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 257366358, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_bankExpansions": { - "type": "int", - "id": 1, - "offset": 112, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1369075454 - }, - "m_friendListExpansions": { - "type": "int", - "id": 2, - "offset": 116, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1057398198 - } - } - }, - "1821618587": { - "name": "class SharedPointer", - "bases": [ - "GraphicalSpell", - "Spell", - "PropertyClass" - ], - "hash": 1821618587, - "properties": { - "m_templateID": { - "type": "unsigned int", - "id": 0, - "offset": 128, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1286746870 - }, - "m_enchantment": { - "type": "unsigned int", - "id": 1, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2217886818 - }, - "m_pipCost": { - "type": "class SharedPointer", - "id": 2, - "offset": 176, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3605704820 - }, - "m_regularAdjust": { - "type": "int", - "id": 3, - "offset": 192, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1420453335 - }, - "m_magicSchoolID": { - "type": "unsigned int", - "id": 4, - "offset": 136, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 893146499 - }, - "m_accuracy": { - "type": "unsigned char", - "id": 5, - "offset": 132, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2273914939 - }, - "m_treasureCard": { - "type": "bool", - "id": 6, - "offset": 197, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1764879128 - }, - "m_battleCard": { - "type": "bool", - "id": 7, - "offset": 198, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1332843753 - }, - "m_itemCard": { - "type": "bool", - "id": 8, - "offset": 199, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1683654300 - }, - "m_sideBoard": { - "type": "bool", - "id": 9, - "offset": 200, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1897838368 - }, - "m_spellID": { - "type": "unsigned int", - "id": 10, - "offset": 204, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1697483258 - }, - "m_leavesPlayWhenCastOverride": { - "type": "bool", - "id": 11, - "offset": 216, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 874407398 - }, - "m_cloaked": { - "type": "bool", - "id": 12, - "offset": 196, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 7349510 - }, - "m_enchantmentSpellIsItemCard": { - "type": "bool", - "id": 13, - "offset": 76, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 531590701 - }, - "m_premutationSpellID": { - "type": "unsigned int", - "id": 14, - "offset": 112, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1530256370 - }, - "m_enchantedThisCombat": { - "type": "bool", - "id": 15, - "offset": 77, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1895738923 - }, - "m_paramOverrides": { - "type": "class SharedPointer", - "id": 16, - "offset": 224, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2061635599 - }, - "m_subEffectMeta": { - "type": "class SharedPointer", - "id": 17, - "offset": 240, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1944101106 - }, - "m_delayEnchantment": { - "type": "bool", - "id": 18, - "offset": 257, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 191336919 - }, - "m_PvE": { - "type": "bool", - "id": 19, - "offset": 264, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 269492350 - }, - "m_delayEnchantmentOrder": { - "type": "enum SpellEffect::kDelayOrder", - "id": 20, - "offset": 72, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2526055263, - "enum_options": { - "SpellEffect::kAnyOrder": 0, - "SpellEffect::kFirst": 1, - "SpellEffect::kSecond": 2 - } - }, - "m_roundAddedTC": { - "type": "int", - "id": 21, - "offset": 260, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 112365451 - }, - "m_secondarySchoolID": { - "type": "unsigned int", - "id": 22, - "offset": 304, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2081206026 - } - } - }, - "1418400222": { - "name": "class PetTomePetTotal", - "bases": [ - "PropertyClass" - ], - "hash": 1418400222, - "properties": { - "m_className": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2220521682 - }, - "m_petCount": { - "type": "unsigned int", - "id": 1, - "offset": 108, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2215607743 - } - } - }, - "1821553501": { - "name": "class StartingPipEffectInfo*", - "bases": [ - "GameEffectInfo", - "PropertyClass" - ], - "hash": 1821553501, - "properties": { - "m_effectName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2029161513 - }, - "m_pipsGiven": { - "type": "int", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1346249167 - }, - "m_powerPipsGiven": { - "type": "int", - "id": 2, - "offset": 108, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 377908508 - } - } - }, - "1821360121": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1821360121, - "properties": { - "m_stage": { - "type": "unsigned short", - "id": 0, - "offset": 74, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": true, - "pointer": false, - "hash": 1363685500 - } - } - }, - "260120908": { - "name": "class MonsterMagicLevelControl", - "bases": [ - "Window", - "PropertyClass" - ], - "hash": 260120908, - "properties": { - "m_sName": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306437263 - }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 65667, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621225959 - }, - "m_Style": { - "type": "unsigned int", - "id": 2, - "offset": 152, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "SCALE_CHILDREN": 2, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "FOCUS_LOCKED": 64, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152 - } - }, - "m_Flags": { - "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } - }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3105139380 - }, - "m_fTargetAlpha": { - "type": "float", - "id": 5, - "offset": 212, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1809129834 - }, - "m_fDisabledAlpha": { - "type": "float", - "id": 6, - "offset": 216, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1389987675 - }, - "m_fAlpha": { - "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 482130755 - }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3623628394 - }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2102211316 - }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1846695875 - }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3389835433 - }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2547159940 - }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2587533771 - }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3091503757 - } - } - }, - "1418484713": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1418484713, - "properties": { - "m_uPathID": { - "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 876142428 - }, - "m_nFullnessScoreTarget": { - "type": "int", - "id": 1, - "offset": 76, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 293633463 - }, - "m_nTimeLimitInSeconds": { - "type": "int", - "id": 2, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1125165468 - }, - "m_nWeightChangeInSeconds": { - "type": "int", - "id": 3, - "offset": 84, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1881631612 - }, - "m_fDropsPerSecondAtStart": { - "type": "float", - "id": 4, - "offset": 88, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 752496235 - }, - "m_fDropsPerSecondAtEnd": { - "type": "float", - "id": 5, - "offset": 92, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1684240180 - }, - "m_fCatchDistance": { - "type": "float", - "id": 6, - "offset": 96, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 879620619 - }, - "m_fFreezeSpeed": { - "type": "float", - "id": 7, - "offset": 100, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1366477327 - }, - "m_fSpeedNormal": { - "type": "float", - "id": 8, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1038542199 - }, - "m_fSpeedBonus": { - "type": "float", - "id": 9, - "offset": 108, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1406294645 - }, - "m_fSpeedPenalty": { - "type": "float", - "id": 10, - "offset": 112, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1356789899 - }, - "m_fInitialItemHeight": { - "type": "float", - "id": 11, - "offset": 116, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2124739791 - }, - "m_fGroundHeight": { - "type": "float", - "id": 12, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2050728741 - }, - "m_fPetHeight": { - "type": "float", - "id": 13, - "offset": 124, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2094176095 - }, - "m_fJumpHeight": { - "type": "float", - "id": 14, - "offset": 128, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1742092018 - }, - "m_fMaxScaleIncrease": { - "type": "float", - "id": 15, - "offset": 132, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1883110517 - }, - "m_sItemHitGroundSound": { - "type": "std::string", - "id": 16, - "offset": 136, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1678384346 - }, - "m_sItemHitGroundFX": { - "type": "std::string", - "id": 17, - "offset": 168, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1855437679 - }, - "m_foodItems": { - "type": "class SharedPointer", - "id": 18, - "offset": 200, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2404207033 - } - } - }, - "1821326350": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1821326350, - "properties": { - "m_nMoraleChanceAmt": { - "type": "int", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 853293452 - }, - "m_kActionType": { - "type": "enum DerbyActionTargetType", - "id": 1, - "offset": 76, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3131470053, - "enum_options": { - "Jump": 0, - "Duck": 1 - } - } - } - }, - "258825569": { - "name": "class ReqMagicLevel*", - "bases": [ - "ReqBaseMagicLevel", - "ReqNumeric", - "Requirement", - "PropertyClass" - ], - "hash": 258825569, - "properties": { - "m_applyNOT": { - "type": "bool", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1746328074, - "enum_options": { - "__DEFAULT": 0 - } - }, - "m_operator": { - "type": "enum Requirement::Operator", - "id": 1, - "offset": 76, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2672792317, - "enum_options": { - "ROP_AND": 0, - "ROP_OR": 1, - "__DEFAULT": "ROP_AND" - } - }, - "m_numericValue": { - "type": "float", - "id": 2, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 521915239 - }, - "m_operatorType": { - "type": "enum ReqNumeric::OPERATOR_TYPE", - "id": 3, - "offset": 84, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2228122961, - "enum_options": { - "OPERATOR_UNKNOWN": 4294967295, - "OPERATOR_EQUALS": 0, - "OPERATOR_GREATER_THAN": 1, - "OPERATOR_LESS_THAN": 2, - "OPERATOR_GREATER_THAN_EQ": 3, - "OPERATOR_LESS_THAN_EQ": 4 - } - }, - "m_magicSchool": { - "type": "std::string", - "id": 4, - "offset": 88, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1597012900 - } - } - }, - "258825572": { - "name": "class ReqMagicLevel", - "bases": [ - "ReqBaseMagicLevel", - "ReqNumeric", - "Requirement", - "PropertyClass" - ], - "hash": 258825572, - "properties": { - "m_applyNOT": { - "type": "bool", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1746328074, - "enum_options": { - "__DEFAULT": 0 - } - }, - "m_operator": { - "type": "enum Requirement::Operator", - "id": 1, - "offset": 76, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2672792317, - "enum_options": { - "ROP_AND": 0, - "ROP_OR": 1, - "__DEFAULT": "ROP_AND" - } - }, - "m_numericValue": { - "type": "float", - "id": 2, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 521915239 - }, - "m_operatorType": { - "type": "enum ReqNumeric::OPERATOR_TYPE", - "id": 3, - "offset": 84, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2228122961, - "enum_options": { - "OPERATOR_UNKNOWN": 4294967295, - "OPERATOR_EQUALS": 0, - "OPERATOR_GREATER_THAN": 1, - "OPERATOR_LESS_THAN": 2, - "OPERATOR_GREATER_THAN_EQ": 3, - "OPERATOR_LESS_THAN_EQ": 4 - } - }, - "m_magicSchool": { - "type": "std::string", - "id": 4, - "offset": 88, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1597012900 - } - } - }, - "1419572853": { - "name": "class ForcedStateInfo", - "bases": [ - "PropertyClass" - ], - "hash": 1419572853, - "properties": { - "m_forcedState": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2861191727 - }, - "m_category": { - "type": "std::string", - "id": 1, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2682050233 - }, - "m_fromState": { - "type": "std::string", - "id": 2, - "offset": 112, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2430398224 - } - } - }, - "1419567733": { - "name": "class ForcedStateInfo*", - "bases": [ - "PropertyClass" - ], - "hash": 1419567733, - "properties": { - "m_forcedState": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2861191727 - }, - "m_category": { - "type": "std::string", - "id": 1, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2682050233 - }, - "m_fromState": { - "type": "std::string", - "id": 2, - "offset": 112, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2430398224 - } - } - }, - "1821554269": { - "name": "class StartingPipEffectInfo", - "bases": [ - "GameEffectInfo", - "PropertyClass" - ], - "hash": 1821554269, - "properties": { - "m_effectName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2029161513 - }, - "m_pipsGiven": { - "type": "int", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1346249167 - }, - "m_powerPipsGiven": { - "type": "int", - "id": 2, - "offset": 108, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 377908508 - } - } - }, - "1418991225": { - "name": "class SharedPointer", - "bases": [ - "WizItemTemplate", - "ItemTemplate", - "GameObjectTemplate", - "CoreTemplate", - "PropertyClass" - ], - "hash": 1418991225, - "properties": { - "m_behaviors": { - "type": "class BehaviorTemplate*", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1197808594 - }, - "m_objectName": { - "type": "std::string", - "id": 1, - "offset": 96, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2154940147 - }, - "m_templateID": { - "type": "unsigned int", - "id": 2, - "offset": 128, - "flags": 16777223, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1286746870 - }, - "m_visualID": { - "type": "unsigned int", - "id": 3, - "offset": 132, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1118778894 - }, - "m_adjectiveList": { - "type": "std::string", - "id": 4, - "offset": 248, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 3195213318 - }, - "m_exemptFromAOI": { - "type": "bool", - "id": 5, - "offset": 240, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1457879059 - }, - "m_displayName": { - "type": "std::string", - "id": 6, - "offset": 168, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2446900370 - }, - "m_description": { - "type": "std::string", - "id": 7, - "offset": 136, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1649374815 - }, - "m_nObjectType": { - "type": "enum ObjectType", - "id": 8, - "offset": 200, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2118905880, - "enum_options": { - "OT_UNDEFINED": 0, - "OT_PLAYER": 1, - "OT_NPC": 2, - "OT_PROP": 3, - "OT_OBJECT": 4, - "OT_HOUSE": 5, - "OT_KEY": 6, - "OT_OLD_KEY": 7, - "OT_DEED": 8, - "OT_MAIL": 9, - "OT_RECIPE": 17, - "OT_EQUIP_HEAD": 10, - "OT_EQUIP_CHEST": 11, - "OT_EQUIP_LEGS": 12, - "OT_EQUIP_HANDS": 13, - "OT_EQUIP_FINGER": 14, - "OT_EQUIP_FEET": 15, - "OT_EQUIP_EAR": 16, - "OT_BUILDING_BLOCK": 18, - "OT_BUILDING_BLOCK_SOLID": 19, - "OT_GOLF": 20, - "OT_DOOR": 21, - "OT_PET": 22, - "OT_FABRIC": 23, - "OT_WINDOW": 24, - "OT_ROOF": 25, - "OT_HORSE": 26, - "OT_STRUCTURE": 27, - "OT_HOUSING_TEXTURE": 28, - "OT_PLANT": 29 - } - }, - "m_sIcon": { - "type": "std::string", - "id": 9, - "offset": 208, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306259831 - }, - "m_equipRequirements": { - "type": "class RequirementList*", - "id": 10, - "offset": 280, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2762617226 - }, - "m_purchaseRequirements": { - "type": "class RequirementList*", - "id": 11, - "offset": 288, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3174641793 - }, - "m_equipEffects": { - "type": "class GameEffectInfo*", - "id": 12, - "offset": 296, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 836628351 - }, - "m_baseCost": { - "type": "float", - "id": 13, - "offset": 312, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1565352651 - }, - "m_creditsCost": { - "type": "float", - "id": 14, - "offset": 320, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 805514974 - }, - "m_avatarInfo": { - "type": "class AvatarItemInfoBase*", - "id": 15, - "offset": 328, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2627321299 - }, - "m_avatarFlags": { - "type": "std::string", - "id": 16, - "offset": 336, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2347762759 - }, - "m_itemLimit": { - "type": "int", - "id": 17, - "offset": 316, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1799746856 - }, - "m_holidayFlag": { - "type": "std::string", - "id": 18, - "offset": 352, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2994795359 - }, - "m_itemSetBonusTemplateID": { - "type": "unsigned int", - "id": 19, - "offset": 384, - "flags": 33554439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1316835672 - }, - "m_numPrimaryColors": { - "type": "int", - "id": 20, - "offset": 428, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 981103872 - }, - "m_numSecondaryColors": { - "type": "int", - "id": 21, - "offset": 432, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1310416868 - }, - "m_numPatterns": { - "type": "int", - "id": 22, - "offset": 436, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 953162171 - }, - "m_school": { - "type": "std::string", - "id": 23, - "offset": 392, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2438566051 - }, - "m_arenaPointCost": { - "type": "int", - "id": 24, - "offset": 440, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1819621796 - }, - "m_pvpCurrencyCost": { - "type": "int", - "id": 25, - "offset": 444, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 645595444 - }, - "m_pvpTourneyCurrencyCost": { - "type": "int", - "id": 26, - "offset": 448, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 517874954 - }, - "m_rank": { - "type": "int", - "id": 27, - "offset": 424, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 219803942 - }, - "m_boyIconIndex": { - "type": "int", - "id": 28, - "offset": 452, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 802140453 - }, - "m_girlIconIndex": { - "type": "int", - "id": 29, - "offset": 456, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 832706793 - }, - "m_leashOffsetOverride": { - "type": "class SharedPointer", - "id": 30, - "offset": 464, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1692586788 - }, - "m_rarity": { - "type": "enum RarityType", - "id": 31, - "offset": 460, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2253792108, - "enum_options": { - "RT_COMMON": 0, - "RT_UNCOMMON": 1, - "RT_RARE": 2, - "RT_ULTRARARE": 3, - "RT_EPIC": 4 - } - }, - "m_cantripName": { - "type": "std::string", - "id": 32, - "offset": 480, - "flags": 33554439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3064230349 - } - } - }, - "260276437": { - "name": "class WizardCharacterBehaviorTemplate", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 260276437, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - }, - "m_nHeadHandsModel": { - "type": "int", - "id": 1, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 998398489 - }, - "m_nHairModel": { - "type": "int", - "id": 2, - "offset": 124, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1415899069 - }, - "m_nHatModel": { - "type": "int", - "id": 3, - "offset": 128, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1927542998 - }, - "m_nTorsoModel": { - "type": "int", - "id": 4, - "offset": 132, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1482459696 - }, - "m_nFeetModel": { - "type": "int", - "id": 5, - "offset": 136, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1832171389 - }, - "m_nWandModel": { - "type": "int", - "id": 6, - "offset": 140, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 132808131 - }, - "m_nSkinColor": { - "type": "int", - "id": 7, - "offset": 144, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 105291612 - }, - "m_nSkinDecal": { - "type": "int", - "id": 8, - "offset": 148, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 106107894 - }, - "m_nHairColor": { - "type": "int", - "id": 9, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1404048907 - }, - "m_nHatColor": { - "type": "int", - "id": 10, - "offset": 156, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1915692836 - }, - "m_nHatDecal": { - "type": "int", - "id": 11, - "offset": 160, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1916509118 - }, - "m_nTorsoColor": { - "type": "int", - "id": 12, - "offset": 164, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1470609534 - }, - "m_nTorsoDecal": { - "type": "int", - "id": 13, - "offset": 168, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1471425816 - }, - "m_nTorsoDecal2": { - "type": "int", - "id": 14, - "offset": 172, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1309581098 - }, - "m_nFeetColor": { - "type": "int", - "id": 15, - "offset": 176, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1820321227 - }, - "m_nFeetDecal": { - "type": "int", - "id": 16, - "offset": 180, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1821137509 - }, - "m_eGender": { - "type": "enum eGender", - "id": 17, - "offset": 184, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2776344943, - "enum_options": { - "Male": 1, - "Female": 0, - "Neutral": 2 - } - }, - "m_eRace": { - "type": "enum eRace", - "id": 18, - "offset": 188, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 963057554, - "enum_options": { - "Bat": 88066, - "BatLightning": 1472842576, - "Boar": 2624962, - "CatThug": 1855674386, - "ChristmasElf": 819908552, - "ChristmasSnowman": 1146515225, - "Colossus_Ice": 1063279538, - "Cyclops": 1691813655, - "DragonBeta": 417003588, - "DragonFriendly": 69049013, - "EvilSnowman": 1579630926, - "FireElf": 443793687, - "Firecat": 2045525741, - "Frog": 2274918, - "FrostBeetle": 7692383, - "GhostBlue": 1097396892, - "GhostGreen": 882822629, - "GhostRed": 560510742, - "GhostYellow": 909974358, - "Ghoul": 82556199, - "GoatMonk": 486215564, - "GolemBrass": 1057388325, - "GolemClockwork": 1143380031, - "GolemSteel": 1660583674, - "GolemWood": 1426849876, - "HalloweenCat": 1042869199, - "Heckhound": 626736403, - "Helephant": 719065368, - "Human": 79806088, - "Hydra": 70785800, - "Imp": 84361, - "Krokomummy": 555755242, - "Kroktut": 1352354178, - "Leprechaun": 2106466410, - "LeprechaunPattyDay": 380507781, - "LightningBat": 228257682, - "Mannequin": 428442544, - "Minotaur": 949570680, - "Mount_Broom": 94637995, - "Mount_Cat": 1150940211, - "Mount_Dragon": 1565720148, - "Mount_Horse": 2054712767, - "Mount_PlayerWings": 589829552, - "Nikkos": 1563122418, - "NinjaPig": 607400740, - "Orthus": 1552590225, - "Piggle": 1897753328, - "Piggle_Valentine": 687697592, - "Piggle_ValentinePart2": 1760391091, - "Pixie": 74836240, - "RatMagician": 885542120, - "SalamanderFire": 48480175, - "SalamanderIce": 2011152164, - "SalamanderStorm": 600331072, - "Satyr": 84793363, - "Scarab": 2143810477, - "Sheep": 86220083, - "SkeletonArmored": 1791586239, - "SnowSerpent": 138621543, - "Spider": 1603064269, - "SpiderBlack": 559353179, - "SpiderBrown": 557941675, - "SpiderCrystal": 2119625297, - "SpiderGolem": 1632616514, - "Sprite": 1889156557, - "SpriteDark": 1888685518, - "Stormzilla": 252684095, - "SunBird": 1602211198, - "Transformation_ArmoredSkeleton": 1861349834, - "Transformation_CatThug": 1175387611, - "Transformation_Cat_Bandit": 1012395694, - "Transformation_ClockworkGolem": 601121214, - "Transformation_Cyclops": 620156297, - "Transformation_DarkFairy": 1206757203, - "Transformation_DraconianSorcerer": 1212016810, - "Transformation_Draconian": 450730089, - "Transformation_EarthColossus": 140119452, - "Transformation_EvilSnowman": 1497097122, - "Transformation_FatGobbler": 634003800, - "Transformation_FireElemental": 822233230, - "Transformation_FireElf": 46585468, - "Transformation_FireSalamander": 2118418114, - "Transformation_Gobbler_Skinny": 162365207, - "Transformation_GolemSteel": 1329184184, - "Transformation_Ice_Colossus": 430406408, - "Transformation_Krokomummy": 1644615769, - "Transformation_MagmaMan": 545064542, - "Transformation_Mander": 88998828, - "Transformation_NinjaPig": 1029132174, - "Transformation_Ninja_Pig_04": 7093548, - "Transformation_RatThug": 1175352795, - "Transformation_RavenMystic": 1443197359, - "Transformation_StormElemental": 637088511, - "Transformation_Treant": 1874998327, - "Transformation_WarPig": 691088645, - "Transformation_WolfScout": 263523463, - "Transformation_WolfWarrior": 6092463, - "Transformationn_SkeletonPirate": 1821341863, - "Treant": 1396597132, - "Troll": 82261620, - "Unicorn": 550546918, - "Unknown": 718677478, - "Wolverine": 528843083, - "Wraith": 1788506505, - "Wyrmkin": 379044612, - "Transformation_CyrusDrake": 94277831, - "PetEgg": 1973167984, - "GhostLady": 493415959, - "Banshee": 827805677, - "GobblerRed": 250135875, - "Ghoul_Gravedigger": 161812468, - "SkeletonWarrior": 734585814, - "BansheeBoss": 806445565, - "Seraph": 1792950125, - "CrabKing": 277875784, - "UndeadCaster": 1680689397, - "DragonFrontier": 1829438301, - "HeckhoundGhost": 872406464, - "Mount_Unicorn": 212699468, - "Jellyfish": 910724608, - "SeaDragon": 1194541306, - "Turtle": 1897184620, - "Starfish": 1447562471, - "SpinyFish": 162948281, - "Mount_Gryphon": 2110522960, - "Mount_Shark": 1170186623, - "Mount_Manta": 979931598, - "Mount_Seahorse": 1554833818, - "Mount_Seahorse_Tough": 1245859453, - "Mount_Koi": 1150937409, - "Mount_Lobster": 2025618875, - "Mount_Turtle": 1490849128, - "VenusFlyTrap": 1612039757, - "GDN_MED_BabyCarrots": 327334743, - "GDN_SM_BoomShroom": 31324632, - "GDN_SM_Dandelion": 2058674142, - "GDN_SM_Disparagus": 1732989489, - "GDN_MED_EvilSnowPeas": 747408607, - "GDN_SM_FicklePickle": 205381955, - "GDN_SM_HappyHolidaisy": 1736236340, - "GDN_MED_HelephantEars": 1803669659, - "GDN_MED_HoneySickle": 424149132, - "GDN_LG_NinjaFig": 847338104, - "GDN_LG_SnapDragon": 1076151689, - "GDN_SM_StinkWeed": 845383431, - "GDN_MED_TrumpetVine": 1922690264, - "GDN_MED_VenusFlyTrap": 1560899638, - "GDN_SM_Laughodil": 1278979588, - "GDN_LG_BreadFruitBush": 533042934, - "GDN_MED_PricklyBearCactus": 1236846986, - "GDN_MED_KingParsley": 110148182, - "LeprechaunPatriotic": 414730890, - "SeraphYuletide": 1325846853, - "DragonGhost": 1502126893, - "UnicornNightmare": 604358256, - "EvilSnowmanSandman": 1579432150, - "Colossus_Spirit": 422514215, - "Rock": 2393554, - "GDN_MED_GivingTree": 2047236132, - "Egg": 70853, - "Mount_Carpets": 1602744888, - "Kraken": 1737191829, - "Wyvern": 1727802601, - "Phoenix": 1765559002, - "Judgement": 562901781, - "ForestLord": 1390734923, - "Humongofrog": 1272123051, - "Scarecrow": 41441599, - "Mount_Ram": 77196599, - "BasketSnake": 1835657086, - "Samoorai": 522797493, - "Transformation_RavenWarrior": 701169336, - "PhoenixStorm": 1325268802, - "PhoenixDeath": 1281634042, - "GDN_LG_CouchPotatoes": 879742725, - "GDN_MED_KeyLimes": 811516024, - "Mount_BoneDragon": 1023618313, - "Mount_BigBoneDragon": 1124383680, - "Mount_FairyWings": 1904926612, - "Mount_DragonWings": 755225925, - "Mount_Pegasus": 1621244140, - "GDN_MED_BellPepper": 1710238687, - "GDN_MED_GrapesOfWrath": 1068787103, - "GDN_SM_TigerLily": 1899057048, - "WysteriaPiggle": 49173891, - "Mount_Wyvern": 1658410744, - "Mount_2P_Rhino": 1052779475, - "NightHawk": 358964390, - "Giraffe": 935214826, - "Mount_Hawk": 2070898895, - "Mount_HalloweenNightmare": 726136378, - "GobblerHalloween": 1482399836, - "Leopard": 1606863715, - "Skink": 76950867, - "Mount_Ostrich": 466111322, - "Mount_Crocagator": 1981222087, - "Transformation_Blacktusk-01": 401543565, - "Mount_Hippogriff": 2043817624, - "Transformation_Gorilla-01": 1555853240, - "Transformation_Gorilla-02": 1606184888, - "Mount_Raven": 94983735, - "Mount_Chrismoose": 1822495199, - "Mount_CandyCane": 1148551147, - "Ivy_League": 925492799, - "GDN_MED_Ivy_League": 1630077794, - "Mount_Kirin": 1168691825, - "GDN_SM_Moonflower": 2068754330, - "GDN_MED_BoonTree": 788055729, - "Snowball": 2046118016, - "Foo_Dog": 1549710807, - "ShenlongDragon": 932676736, - "Monkey": 1233866291, - "Wolfhound": 626884686, - "Redcap": 1540319086, - "Raven": 79941650, - "HollowKnight": 1107268274, - "Book": 2405826, - "GDN_MED_AngoraBunnyEars": 1547559854, - "GDN_MED_FortuneCookieTree": 786686214, - "GDN_MED_GooseTree": 809354938, - "GDN_SM_HoneyBeePlant": 1528880373, - "GDN_MED_BambooShoots": 1096708900, - "GDN_SM_Huckleberries": 1937475840, - "Rock_Moustache": 962221287, - "Efreet_Myth": 1834555522, - "Efreet": 1401700123, - "Mammoth": 1395147745, - "Triton": 1730466188, - "Gnome": 74954215, - "BoneDragon": 429245206, - "Basilisk": 1457899086, - "Chimera": 529027789, - "Transformation_GammaTemplate": 1337834518, - "Mount_Camel": 1168198963, - "Mount_RenaissanceWings": 1049782088, - "Bull_Mount": 1713506759, - "Mount_Owl": 1150938242, - "Mount_Alphyn": 487264165, - "Mount_Stag": 1150353823, - "Mount_Auroch": 509865325, - "Mount_Warg": 1150358072, - "StrangeBeast": 511334734, - "Efreet_Ice": 1820009122, - "Efreet_Storm": 1269986674, - "GDN_LG_AlligatorPear": 1293913372, - "Mount_2P_Treant": 928450863, - "Mount_2P_Dragon": 1431637933, - "Mount_Pogo_Stick_WC": 1462849298, - "Mount_Pogo_Stick_MB": 1349603090, - "GDN_LG_MeltingCheese": 1914589015, - "GDN_SM_FishOnAVine": 1734955358, - "GDN_LG_AngelOak": 1539539424, - "GDN_LG_MeltingCheese_Angel": 1254781264, - "SnowyOwl": 1682262138, - "Mount_3P_Hydra": 1207475250, - "WeaselMinstrel": 1541234616, - "MOUNT_Rickshaw": 938282973, - "Transformation_Sherlock-Bones": 509126601, - "Mount_Phoenix": 556355452, - "Toaddle": 597488187, - "Pantera": 528797696, - "WildfireTreant": 673362041, - "StoneTiger": 746336665, - "Blowfish": 1447737334, - "Smith": 78327187, - "FlyingCat": 1254472614, - "RamWarrior": 536916302, - "Ladybug": 1846384669, - "BurlapBoy": 607590898, - "DeerKnight": 560802130, - "Gargoyle": 1227701700, - "Chameleon": 596131510, - "Scorpion": 1462253104, - "GDN_SM_BoiledPeanuts": 544885684, - "GDN_SM_ClockFlower": 676513046, - "GDN_SM_DeadBeets": 650783482, - "GDN_MED_SnowApple": 1916648180, - "Eyecaramba_Violet": 1804780775, - "Eyecaramba_Green": 750346574, - "Eyecaramba_Orange": 687614854, - "Piggle_Grandfather": 131445665, - "Velociraptor": 1042311818, - "Babydactyl": 1180982194, - "Stegosaurus": 476811765, - "Mount_Pegasus_Spectral": 948250730, - "Mount_2P_Scarydactyl": 1808983335, - "Mount_2P_TRex": 1495851852, - "Therizinosaurus": 80337863, - "Runtosaurus": 476200406, - "FrilledLizard": 420993517, - "Mount_Ankylosaurus": 669692274, - "Mount_Triceratops": 1126950204, - "Mount_2P_Glider": 1630365881, - "Transformation_Thunderhorn": 1045262037, - "Transformation_Jaguar": 1080966062, - "Transformation_Pteranadon": 273836142, - "Transformation_ShadowWeaver": 255927111, - "Transformation_EagleWarrior": 1880471875, - "Mount_Falalalallama": 389890123, - "Mount_2P_WinterTreant": 1850265056, - "GDN_LG_MissileToe": 1767792974, - "GDN_MED_PointSetta": 647257205, - "Nutcracker2012": 1598217699, - "Coal2012": 1627852119, - "Mount_Sleigh": 1636615519, - "Mount_Sabertooth": 1613031507, - "Mount_MechanicalWings": 1014917438, - "PiranhaHunter": 686271163, - "Quetzal": 2020925822, - "Mount_Sloth": 1169387359, - "HollowKnightLife": 2114081886, - "BettaFish": 138088968, - "MummyCat": 62372925, - "TrojanHorse": 1725299194, - "WC_Storm_Possessed": 186960228, - "AV_Possessed": 1106693085, - "AZ_Possessed": 1106692701, - "CL_Possessed": 1106692255, - "KT_Possessed": 1106693015, - "MS_Possessed": 1106692977, - "WC_Possessed": 1106692459, - "Mount_2P_Whale": 448824263, - "Mount_2P_Chariot": 88035298, - "Mount_WarBoar": 1159836211, - "Mount_Palanquin": 47587550, - "BearCub": 672664722, - "Transformation_Minotaur": 1454233452, - "DragonGauntlet": 797645257, - "DeathUnicorn": 924144161, - "Flamingo": 1488424911, - "Mount_Gorilla": 1939919432, - "Mount_WarUnicorn": 1361393198, - "GargoyleMyth": 1819685060, - "TikiMan": 16098567, - "Siren": 79937811, - "GoldenRam": 410220227, - "Harpy": 96026632, - "SwordShield": 1668411785, - "ClockworkKnight": 1059948980, - "Mount_MechanicalEagle": 1720948645, - "Mount_Cloud": 1166233435, - "Mount_Surfboard": 1914250039, - "Mount_BetaDragon": 1023653721, - "Mount_BeeWings": 1387988401, - "Vampire": 524731385, - "FrankenBunny": 589797989, - "BumbleBee": 249592226, - "Mount_Dragonfly": 1028843656, - "BronzeGolem": 1320867859, - "TarantulaHawk": 1983939429, - "Mount_Grasshopper": 1852850928, - "FlyingSquirrel": 847551166, - "GDN_MED_Sunion": 1652707634, - "GDN_MED_SwordFern": 548761438, - "GDN_SM_SugarKhrystal": 267539461, - "GDN_SM_SawPalmetto": 1892888046, - "GDN_LG_FacePalm": 2050814140, - "GDN_LG_QueenCrapeMyrtle": 80378450, - "Transformation_ShadowTank": 1304943609, - "Transformation_ShadowHeal": 1254024185, - "Transformation_ShadowDPS": 87276537, - "Mount_Noelephant": 1383672248, - "SaintBernard": 572932242, - "ParkaFox": 2009808189, - "Goose": 75019719, - "Mount_Coconut": 791151432, - "CreepyBeetle": 345594179, - "BabyDragonfly": 1367084335, - "FennecFox": 41315063, - "PP_Leviathan": 833901526, - "PP_SunSerpent": 1062677009, - "PP_LordOfWinter": 960214698, - "PP_Medusa": 867812931, - "PP_Dryad": 147654656, - "PP_AvengingFossil": 315904647, - "PP_Sabertooth": 1799146677, - "Mount_Butterfly": 1283940943, - "Mount_Hare": 2070851023, - "Transformation_MorganthB": 197306990, - "Transformation_MorganthC": 197831278, - "Transformation_MorganthD": 200452718, - "BabyPegasus": 1215000859, - "ArcaneHelp": 1899247549, - "Mount_Vines": 98389624, - "Mount_ArcaneMinecart": 2001270930, - "Hobgoblin": 2133668461, - "Mount_2P_Rowboat": 237071469, - "ForestSpirit": 1178454602, - "Mount_SpiritWolf": 531991076, - "Otter": 84138671, - "OrigamiBird": 550984083, - "DinoSkeletal": 233277835, - "Mount_HarrowingsGreen": 1605746772, - "Mount_HarrowingsBlue": 477152436, - "Mount_HarrowingsPurple": 2092807554, - "RedPanda": 1744233845, - "Ibis": 2665577, - "Corgi": 78823875, - "Mount_Yak": 996545739, - "Mount_FlyingBalance": 436519643, - "Transformation_ShadowMalistaire": 1043814435, - "Transformation_DragonMalistaire": 841867699, - "Mount_Scarab": 1687658791, - "Transformation_MisterHound": 1973578844, - "Mount_BahHumbug": 55114077, - "Skates": 1568993965, - "Moose": 75019725, - "Mount_Gargoyle": 1456663874, - "GDN_MED_VenusFlyTrapEpic": 1594069606, - "Mount_PlayerWingsPink": 19403046, - "GDN_LG_AlligatorPearEpic": 1326804812, - "Pet_Armadillo": 825736847, - "Mount_JoustingDestrierDyeable": 1683448768, - "GDN_MED_VampireCarrots": 871596496, - "GDN_SM_WhiteTigerLilyEpic": 1703271434, - "GDN_LG_NinjaFigEpic": 938504823, - "GDN_LG_SnapDragonEpic": 2071674466, - "GDN_MED_HelephantEarsEpic": 719166107, - "GDN_MED_TrumpetVineEpic": 225854518, - "GDN_SM_DandelionEpic": 728637442, - "GDN_SM_HuckleberriesEpic": 1903258448, - "GDN_MED_SnowAppleEpic": 1231175967, - "GDN_SM_BoomShroomEpic": 981598771, - "GDN_MED_KingParsleyEpic": 2038371004, - "Mount_Raptor": 749695031, - "Pet_Toucan": 581477475, - "Pet_Squirrel": 969881395, - "Mount_WonkyDonkey": 1481657312, - "Mount_HawkPatriotic": 509149743, - "Pet_FrogAssistant": 1945041750, - "Mount_Cat2": 1151054899, - "Mount_Cat2BW": 1603515443, - "Pet_ArmadilloBW": 825733899, - "Pet_FrankieForearms": 1100195857, - "Mount_SolarSabre": 1281093703, - "MNT_MechOstrich": 258667969, - "MNT_BootsBalance": 1799191558, - "MNT_BootsDeath": 1034912971, - "MNT_BootsFire": 606061658, - "MNT_BootsIce": 2142643294, - "MNT_BootsLife": 773751898, - "MNT_BootsMyth": 144792486, - "MNT_BootsStorm": 1525245121, - "Pet_CorgiBirthday": 1951779369, - "OrigamiBirdBDay": 1909935955, - "Pet_FlyingBlackCat": 432111988, - "Mount_Narwhal": 449637834, - "Mount_NightOwl": 1648420845, - "Pet_Penguin": 137342907, - "MNT_PowerGemUnicorn": 411234062, - "Pet_CrystalButterfly": 512136094, - "Mount_BabyMammoth": 185831059, - "MNT_BabaYaga": 564874997, - "Pet_BabySeal": 657606984, - "Pet_BabyYeti": 635847496, - "Transformation_BallerinaBear": 1525333600, - "Mount_StagYuletide": 1508680687, - "Transformation_TitanMedium": 1700742736, - "Transformation_TitanLarge": 718614967, - "Pet_SirenIce": 849851564, - "Mount_FlyingDeath": 1717725588, - "Mount_FlyingFire": 1177216332, - "Mount_FlyingIce": 1238841184, - "Mount_FlyingLife": 433397684, - "Mount_FlyingMyth": 164983572, - "Mount_FlyingStorm": 375872049, - "Dragonling": 1730534849, - "Pet_EggChicken": 952873217, - "HeckhoundGhost_MAW": 893368960, - "Mount_WinterTrain": 751515281, - "Mount_RubberDucky": 1826548479, - "Pet_BansheeSpellwrit": 917979583, - "Pet_SamooraiSpellwrit": 370057597, - "Mount_UnicornAstral": 886914505, - "Guest_Boochbeard": 1958574095, - "Pet_MouseSister": 1267930350, - "Pet_MouseFather": 2010008339, - "Pet_VampireSquirrel": 250588691, - "Mount_CoffinCar": 1387606595, - "Mount_BabyElephant": 2026559639, - "Pet_RoadHog": 601156960, - "Mount_WolfGryphonWings": 543038283, - "MNT_ClockworkSteed": 891371132, - "Mount_Chopper": 1196683136, - "Pet_ButterflyLamb": 527214392, - "Pet_MouseMother": 2012687123, - "Pet_MouseBrother": 1174380856, - "Pet_Cherub": 769208559, - "GDN_SM_Jewel": 1104045832, - "MR_Death_Duncan_Grimwater": 1850289001, - "Mount_DesertRunner": 2049036229, - "Pet_MonkeyMirage": 418612892, - "Pet_ClockworkOwl": 1038482431, - "Pet_NinjaTurtle": 2024540686, - "Mount_Vines_Halloween": 82852149, - "Mount_SwarmBat": 1151836459, - "Mount_2P_NinjaDragon": 1239694057, - "Mount_Gobler": 1820615236, - "Mount_MaryleboneCar": 2027689685, - "JackOLantern": 1016361578, - "Transformation_DjinnCommonA_Balance": 996127128, - "Transformation_MedicineMode": 25960701, - "CactusHopper": 1956293007, - "Transformation_Mimic_ChestGold_A": 414145432, - "Mount_Ghoulture": 1067671195, - "Pet_Macaw": 1087278472, - "Pet_SandWorm": 653200803, - "Transformation_DromelDancer": 1071824116, - "Pet_Bunnies": 695874547, - "Mount_Snowboard": 1914380015, - "Transformation_DrommelDancer": 226294468, - "Mount_Carpet_New": 1618650322, - "Mount_BunnySleigh": 599915427, - "Helephant_Heart": 419161272, - "Mount_Snowboard_Holiday": 876339060, - "Transformation_GhostDog": 646575420, - "Transformation_PrinceGobblestone": 693826496, - "Transformation_Mithraya": 1240010601, - "Transformation_LuskaCharmbeak": 897469730, - "Transformation_YoungCyrusDrake": 15595663, - "Kookaburra": 1069759154, - "BorealisGolemPet": 797488492, - "FlyingEyePet": 505959833, - "StormCloudPet": 548463069, - "BullPet": 1993917801, - "OpossumPet": 284003652, - "GhoulturePet": 939920734, - "StormCloudPetB": 548463001, - "StormCloudPetC": 548463003, - "Guest_LordNightshade": 1221409981, - "BullPetB": 1993917561, - "BullPetC": 1993917553, - "BullPetD": 1993917513, - "Transformation_ShadowCrit": 1392195065, - "Mount_Pennyfarthing": 1551926344, - "Mount_RowboatPirate": 2079208803, - "Mount_IceCube": 1261861595, - "Guest_LostMaiden": 883675592, - "Guest_BoatswainMcGee": 1359750850, - "Guest_ChiefMateMcGurk": 329643845, - "Guest_DoomedBones": 2015643882, - "Guest_SpectreoftheBrocken": 266357448, - "Guest_DrownedKnight": 1100966093, - "Guest_TarntheDrowned": 329540205, - "Guest_DisloyalKnight": 1853240753, - "Guest_NamelessKnight": 1065677876, - "Guest_LambentFire": 489886605, - "Guest_LordoftheBrocken": 1662003371, - "Guest_StormCaiman": 1147500291, - "Guest_GrinningDeathMoon": 737595789, - "Guest_MoonSkullWight": 1720039490, - "Guest_HuemacSpearWreath": 1522021131, - "Guest_HowlingBanshee": 1340855338, - "Guest_Sea-Booter": 1818491983, - "Guest_DeadRover": 1009273257, - "Guest_CelestianRemnant": 1312268448, - "Guest_Shadow-WebConscript": 1500529411, - "Guest_Shadow-WebMercenary": 623672171, - "Guest_Shadow-WebWraith": 810956416, - "Guest_Shadow-WebHaunt": 500586883, - "Guest_CelestianPartisan": 633346892, - "Guest_CelestianDefender": 482102727, - "Guest_ThraleBonestriker": 1172972733, - "Guest_VorgenSoulbreaker": 1935693246, - "Guest_ServusBloodsword": 1703995647, - "Guest_QueenCalypso": 845803519, - "Guest_BlueBart": 77043390, - "Guest_KarolakNightspinner": 1008737316, - "Guest_ArachtusDuskweb": 1787750209, - "Guest_ZhalarStarcloud": 1453644105, - "Guest_NarallorNightborn": 1963363700, - "Guest_SelwynSkywatcher": 1413136893, - "Guest_OsseusNightreaver": 306827003, - "Guest_IrateBanshee": 865143109, - "Guest_FuriousHowler": 1607252558, - "Guest_CryingSpirit": 1559074820, - "Guest_UndeadDraconian": 169249571, - "Guest_ReanimatedDraconian": 247067807, - "Guest_GhastlySlave": 80127661, - "Guest_BoundSpecter": 369706568, - "Guest_NecroticHaunter": 1714841563, - "Guest_LoathsomeCreeper": 1087245229, - "Guest_FleshrotRetriever": 1925148031, - "Guest_BarbarianSpirit": 2112552732, - "Guest_BeghastionCrowcaller": 586628832, - "Guest_BeghastionFieldburner": 1650751959, - "Guest_BoneWarrior": 76802026, - "Guest_FleshlessSentry": 708431820, - "Guest_PirateRavager": 945157059, - "Guest_RottenScallywag": 974666855, - "Guest_ArmoredBonewalker": 1444568072, - "Guest_UndeadWizard": 1622435563, - "Guest_SoulSearcher": 2094392941, - "Guest_DecayingBlackguard": 412324062, - "Guest_FoulReaper": 919877614, - "Guest_NightShadow": 1675932226, - "Guest_MotleyCrew": 653779218, - "Guest_OrinGrimcaster": 472649066, - "Guest_GhostofSylviaDrake": 218332449, - "Guest_VikaMarkmaker": 1145181168, - "Guest_VasekAshweaver": 1001434369, - "Guest_FireWraith": 1027720368, - "Guest_HungrySoul": 1722435576, - "Guest_FrostBones": 456145606, - "Guest_SnowSkull": 835837850, - "Guest_WinterSkull": 1556601065, - "Guest_LothinDoombringer": 860995070, - "Guest_MimirWinterbane": 1111898070, - "Guest_KulgrimSoulsunder": 278037985, - "Guest_HitojiniDeathcaster": 1144499043, - "Guest_GaikotsuSkeleton": 1113949902, - "Guest_PhantomAce": 1917639347, - "Guest_PhantomGlider": 849918336, - "Guest_Krokomummy": 857773886, - "Guest_NiriniAncientGuard": 359313880, - "Guest_NiriniFireSpirit": 1863811476, - "Guest_VaultHaunter": 197723476, - "Guest_VigilantDefender": 171276829, - "Guest_WanderingAhnicSpirit": 1702865088, - "Guest_ForgottenDjeseritSoul": 1170568256, - "Guest_KaranahnDeathfeeder": 1612857711, - "Guest_ShamblingAhnic": 1579129677, - "Guest_RisenDjeserit": 287855500, - "Guest_KaranahnMortifier": 874288111, - "Guest_DjeseritDweller": 2058423665, - "Guest_AhnicStrider": 1776992302, - "Guest_GuardianoftheFang": 1816795524, - "Guest_DefenderoftheFang": 354353604, - "Guest_ProtectoroftheFang": 1290191037, - "Guest_SouloftheCharmed": 422890577, - "Guest_KaranahnKeeper": 77581557, - "Guest_NiriniIntimidator": 677205957, - "Guest_CondemnedSoldier": 449152244, - "Guest_NimahtheWicked": 1298248873, - "Guest_AkoriNirini": 1123159753, - "Guest_SoulScavenger": 892852198, - "Guest_KeeperoftheFang": 1676773499, - "Guest_ItennuSokkwi": 699159408, - "Guest_Tempestra": 334938435, - "Guest_QueenIrisiDjeserit": 1861434100, - "Guest_TheBonekeeper": 1302503449, - "Guest_CryptScavenger": 1893795791, - "Guest_Soulsapper": 1699756010, - "Guest_KingUroAhnic": 1788825731, - "Guest_KingShemetDjeserit": 1350067043, - "Guest_UnholyWraith": 1871146013, - "Guest_PikeSpiritcrusher": 498715531, - "Guest_SpellwritScreamer": 801626733, - "Guest_SpellwritRonin": 1671439174, - "Guest_Shrieker": 805966229, - "Guest_GravePhantom": 731622936, - "Guest_NightmareSpirit": 230709057, - "Guest_VengefulCreeper": 1100197884, - "Guest_TombRoamer": 1277825068, - "Guest_ShieldSkeleton": 1634270152, - "Guest_AgonyWraith": 30384496, - "Guest_IcyGhost": 768353592, - "Guest_Half-wittedSkeleton": 647996362, - "Guest_LazyHenchman": 1329554426, - "Guest_TiredFighter": 210248632, - "Guest_Screecher": 469007005, - "Guest_SeethingWraith": 664913100, - "Guest_ColdConfusion": 1304943934, - "Guest_OssuaryConscript": 1017667150, - "Guest_Ghulture": 1330558655, - "Guest_BodyGuard": 1048581801, - "Guest_SpectralGuardian": 422805602, - "Guest_VaultConscript": 1388398065, - "Guest_FootPatrol": 1692393321, - "Guest_ArmedGuard": 2045920536, - "Guest_Chilly": 1764665905, - "Guest_Achey": 973370519, - "Guest_Sneezy": 1769440773, - "Guest_Cough": 1170200073, - "Guest_Shadowbones": 1316133167, - "Guest_ForgottenConscript": 1466348281, - "Guest_BarracksGuardian": 236603440, - "Guest_CryptConscript": 314755436, - "Guest_DurvishSeeker": 1825622267, - "Guest_MedicineMode": 167015574, - "Guest_Myriarch2": 593881680, - "Guest_Myriarch3": 593881616, - "Guest_MyriarchEphialtes": 773531895, - "Guest_MotherGhulture": 1585201915, - "Guest_CaptainCosrow": 727107332, - "Guest_VizierRafaj": 214040637, - "Guest_DarkmoorSerf": 1522169114, - "Guest_DarkmoorSquire": 1822567109, - "Guest_ScarletWampyr": 1683954247, - "Guest_DraconianRevenant": 741497298, - "Guest_DraconianEidolon": 107733297, - "Guest_AnguishedWraith": 1078602022, - "Guest_DraconianPyromancer": 729577007, - "Guest_DraconianThaumaturge": 189734361, - "Guest_DraconianDiviner": 472633746, - "Guest_DraconianConjurer": 1824962835, - "Guest_DraconianTheurgist": 1828628416, - "Guest_DraconianNecromancer": 175364324, - "Guest_DraconianSorcerer": 1262893339, - "Guest_SirBlackwater": 366308464, - "Guest_AkhtangWormCrawl": 1589032404, - "Guest_SpiritofDarkmoor": 579455915, - "Guest_ShanevonShane": 2096517522, - "Guest_YevgenyNightCreeper": 1535282881, - "Guest_MalistairetheUndying": 824508513, - "Guest_Bunferatu": 1015806005, - "Guest_CountBelaBlackSleep": 761647679, - "Guest_DeathSoldier": 1715141574, - "Guest_SorrowWhisperer": 556532003, - "Guest_GriefSpectre": 1425488559, - "Guest_HowlingShade": 631460247, - "Guest_WalkingDead": 318527090, - "Guest_Akuji": 977635799, - "Guest_TorturedKakedaSoul": 1716874833, - "Guest_KakedaSpiritSlave": 1814699344, - "Guest_DishonoredSamoorai": 320085744, - "Guest_CursedRonin": 1204095686, - "Guest_TomugawatheEvil": 166125424, - "Guest_OyotomitheDefiler": 1672714483, - "Guest_Fushiko": 801492770, - "Guest_BrokenLandGuardian": 294671991, - "Guest_ShatteredSkyGuardian": 746681463, - "Guest_SunderedSeamGuardian": 1439618652, - "Guest_BrokenLandSpirit": 860105895, - "Guest_ShatteredSkySpirit": 2104112380, - "Guest_SunderedSeamSpirit": 69572311, - "Guest_LostSoul": 204361577, - "Guest_RottingFodder": 308249734, - "Guest_HauntedMinion": 689597338, - "Guest_FieldGuard": 1175228991, - "Guest_SkeletalWarrior": 778393993, - "Guest_SkeletalPirate": 1476730220, - "Guest_WanderingSpecter": 126188449, - "Guest_LivingScarecrow": 1442943145, - "Guest_FrostPhantom": 1809776664, - "Guest_FireShrieker": 173332719, - "Guest_CryptCrawler": 2118799272, - "Guest_ViridianSpecter": 383149977, - "Guest_ArgentClatterer": 525414714, - "Guest_SwimmingSpecter": 1494025094, - "Guest_ScarletScreamer": 1689589811, - "Guest_BoneDigger": 1351421123, - "Guest_HowlingGhost": 664019391, - "Guest_SkeletalSoldier": 750463116, - "Guest_MaidenofHate": 444442868, - "Guest_SkeletalRetainer": 1409032775, - "Guest_SoulHunter": 1900267551, - "Guest_MidnightShuffler": 1991052065, - "Guest_PlaguedSoul": 419071561, - "Guest_HauntingBanshee": 345837052, - "Guest_SimontheSayer": 1352807820, - "Guest_TheHarvestLord": 1923575206, - "Guest_LadyBlackhope": 1403431623, - "Guest_SergeantSkullsplitter": 898737831, - "Guest_Foulgaze": 2063419769, - "Guest_Wormguts": 788697519, - "Guest_Rattlebones": 125602919, - "Guest_Paulson": 1112716921, - "Guest_Grubb": 1167554274, - "Guest_Norton": 581021964, - "Guest_NightStalker": 1447653309, - "Guest_AddereTimeo": 1491420030, - "Guest_TheReaper": 1526369733, - "Guest_AngrusHollowsoul": 1427862805, - "Guest_OrrickNightglider": 951078615, - "Guest_SteelSentinel": 885250894, - "Guest_Shadow-WebSoldier": 2014925398, - "Guest_LostCeleste": 1725301830, - "Guest_CapnNigelSkullcrack": 1665439970, - "Guest_HaulAwayJoe": 1075985331, - "Guest_OldMaui": 15300840, - "Guest_LordAgue": 140791419, - "Guest_MelweenaSmite": 432188189, - "Guest_HalloweenTrickster": 2043736417, - "Guest_PumpkinHead": 1098332105, - "Guest_BaronMordecai": 817370918, - "Guest_KaimaniteMummy": 1332671420, - "Guest_VeggieRevanant": 928504192, - "Guest_BloodBat": 76467389, - "Guest_DeadBeets": 157829578, - "Guest_Desparagus": 1130644076, - "Guest_MeanestFly-Trap": 1652898868, - "Guest_Nosferabbit": 1021159436, - "Guest_ThrallofSothmekhet": 330780177, - "Guest_VileApparition": 426627869, - "Guest_SoulServant": 1183110886, - "Guest_SoulKeeper": 917518313, - "Guest_AdmiralBontau": 2032168402, - "Guest_DeathWhisperer": 3814952, - "Mount_RollerBlades": 111369373, - "Guest_BaneWyrm": 147033576, - "Guest_BlackDragon": 939469656, - "Guest_DragonSpawn": 1829803517, - "Guest_Fire-SpitterSpawn": 616624489, - "Guest_CaoranachtheFire-Spitter": 323513000, - "Guest_Jabberwock": 1552492834, - "Guest_CatalantheLightningLizard": 1155778705, - "Guest_WhiteDragon": 2009449331, - "Guest_WinterWyrm": 478925069, - "Guest_WyrmStatue": 2119216210, - "Guest_AlgidWyrm": 1309546482, - "Guest_BruleeSucre": 390936202, - "Guest_HebitohoWyrmling": 1682026810, - "Guest_Shadowwock": 505539184, - "Guest_EirikurAxebreaker": 1361453552, - "Guest_WarWyrm": 1124740742, - "Guest_StrayFireflier": 610979811, - "Guest_BurningFlamewing": 2041225130, - "Guest_FeralLavaling": 371483057, - "Guest_SplinterWing": 923421333, - "Guest_ChanticoBlueAir": 1572441903, - "Guest_CopperWingGuard": 302783602, - "Guest_ObsidianBeak": 2016227452, - "Guest_CaquixNineShadows": 2070101060, - "Guest_LustrousTlalocan": 1201030473, - "Guest_SeedThief": 263211181, - "Guest_PopZotzUnluckyDay": 1416773489, - "Guest_NezathePoet": 1905861376, - "Guest_MazenStingerBee": 1642023393, - "Guest_ImperialJusticePayne": 1285679745, - "Guest_AssistantWardenPorfiry": 22099059, - "Guest_MarshalKamensky": 524669730, - "Guest_WardenVissarovich": 882556823, - "Guest_GulagGuard": 100744159, - "Guest_CaptainKravchuck": 690830770, - "Guest_ImperialGuard": 346803640, - "Guest_IronPaw": 1797329688, - "Guest_TundarianEnforcer": 134256836, - "Guest_Ivan": 996220221, - "Guest_ColonelOrlov": 1381254189, - "Guest_IronPawIntakeCaptain": 2099184835, - "Guest_SolitaryWarden": 1503529566, - "Guest_CaptainZubkov": 793725366, - "Guest_SergeantBobrik": 722182485, - "Guest_WailingWraith": 946976407, - "EggChick": 1452316301, - "BunnyMallow": 518233330, - "Guest_ThunderHornZombie": 1007920040, - "Guest_SmokingMirrorZombie": 340971759, - "Guest_ShamblingZombie": 1920485146, - "Guest_MoonSkullZombie": 809249764, - "Guest_DeathlessStormHorn": 812397213, - "Guest_MozarTurtleHunter": 561749043, - "Guest_GuillermoShatterer": 499565054, - "Guest_XiuhcoatlBarbedTooth": 1719245305, - "Guest_AzcalFireAnt": 1281366337, - "Guest_TlotzinMoonThief": 407285761, - "Guest_PocaCruelStar": 1117353085, - "Guest_ThunderHornGhoul": 597878999, - "Guest_TezomocStoneSinger": 733511940, - "Guest_EzhuaBadTaste": 632779219, - "Guest_UacalxochitlBloodEye": 1614856226, - "Guest_WanadiBlackSky": 349829749, - "Guest_ElMarrow": 483880636, - "Guest_GrimCalaca": 1534029144, - "Guest_XipeFlayedOne": 1343577398, - "Guest_MotecumaDeathMask": 1782393717, - "Guest_EkeChuah": 13416770, - "Guest_AnacaonaBlackSnake": 1543344897, - "Guest_SmokingMirrorWight": 776452983, - "Guest_Tolkemec": 217428080, - "Mount_Fox": 77199428, - "PP_OwlProtege": 268847192, - "Mount_SharkSki": 331374103, - "PP_Dolphin": 1662291612, - "Mount_CastSymbol_D": 1134428045, - "Mount_CastSymbol_E": 1136525197, - "Mount_CastSymbol_F": 1138622349, - "Mount_CastSymbol_G": 1140719501, - "Mount_CastSymbol_A": 1128136589, - "Mount_CastSymbol_B": 1130233741, - "Mount_CastSymbol_C": 1132330893, - "Guest_LionSpectralGuardian": 1791543691, - "Guest_KillmareSpiritwalker": 1818928165, - "Guest_ZebraSpectralGuardian": 815933596, - "Guest_GorillaSpectralGuardian": 1635182119, - "Guest_IklawGhostWarrior": 373465545, - "Guest_BwanaShadowriver": 1307628747, - "Guest_ElephantSpectralGuardian": 1579402208, - "Guest_ZangaZebu": 1218173119, - "Guest_GrumishGreataxe": 486953385, - "PP_GlowFairy_A": 2028856748, - "Guest_RestlessSoldier": 1142701763, - "Guest_WanderingWizard": 209518514, - "Guest_ColonelIvanenko": 399169035, - "Guest_DetollitheDestroyer": 655767295, - "Guest_Jawniak": 1791298433, - "Guest_Tajniak": 356182394, - "Guest_Ygor": 996316081, - "Guest_KyaniteLancer": 2136703656, - "Guest_VestaShadowmark": 1846747836, - "Guest_ZoraSteelwielder": 1186470644, - "Guest_AndorBristleback": 1949884743, - "Guest_GalliumPaladin": 1812340868, - "Guest_GalliumFootman": 1295203112, - "Guest_GalliumShardtrooper": 1210699836, - "Guest_GalliumJuggernaut": 3527584, - "Guest_VladimirDarkflame": 1575322237, - "Guest_KyaniteLieutenant": 561528977, - "Guest_DrusillaMorningbane": 155837810, - "Guest_KyaniteValkyrie": 53242136, - "Transformation_20Q_SherlockBones": 1112674320, - "Guest_DevoraShadowcrown": 1813459117, - "Guest_YoualaNightDrinker": 881289828, - "Guest_Pendragon": 715669945, - "Guest_CelestianRevenant": 515730327, - "Guest_SoullessServant": 1505662730, - "Guest_SpiritServant": 104517373, - "Guest_SoulSerf": 1188214406, - "Guest_ServileSoul": 871844607, - "Guest_SkeletalCorsair": 239414410, - "Guest_RottedFodder": 1301186193, - "Guest_ScarletScreecher": 600457915, - "PP_FrankBunnyBride_A": 974707030, - "Guest_BastillaGravewynd": 2100015237, - "Guest_VilaraMoonwraith": 2067986693, - "Guest_YngvarSharptooth": 1783361972, - "Guest_TroubledWarrior": 1569033392, - "Guest_VeggieRevanant2": 928503904, - "Guest_VeggieRevanant3": 928503888, - "Guest_VeggieRevanant4": 928503872, - "Guest_VeggieRevanant5": 928503856, - "Guest_AncientQhatWarrior": 1564521104, - "Guest_EmperorPaleolo": 2079384347, - "Guest_SpiritofIntolerance": 1627658048, - "Guest_SpiritofInquiry": 1320544891, - "Guest_FirstGuardian": 1982227776, - "Guest_FallenMerc": 225926286, - "Guest_NightShadow2": 1638183490, - "Guest_NightShadow3": 1636086338, - "Guest_NightShadow2-2": 1436856907, - "Guest_NightShadow3-2": 1434759755, - "Guest_NightShadow4-2": 1432662603, - "Guest_NightShadow5-2": 1430565451, - "Guest_NightShadow6-2": 1428468299, - "Guest_NightShadow7-2": 1426371147, - "Guest_FirstScythe": 738854032, - "Guest_GreyMantisCaptain": 860186057, - "Guest_GreyMantisHunter": 1239274377, - "Guest_Atlach-Leng": 836136649, - "Guest_PetrovGloomstrider": 2045783873, - "Guest_NauyotolDownIntheHole": 1134251106, - "Guest_SandorSpearcaller": 1351072377, - "Guest_MavraFlamewing": 1477685600, - "Guest_Scaldling": 208751819, - "Guest_WoebegoneWraith": 1166488705, - "Guest_BorisBlackrock": 1365399915, - "Guest_KatiaFirewinter": 521255834, - "Guest_ValerikBrightsword": 1244055782, - "Guest_RurikFlamesoul": 1962726850, - "Guest_IonaPyrelance": 722266491, - "Guest_DarkPoltergeist": 818162178, - "Guest_TheCollector": 1772287612, - "Guest_ViktorSnowcrusher": 1028387381, - "Guest_ValeskaRedwind": 19316351, - "Guest_ScarrikGallowgaunt": 105397333, - "Guest_Neberyx": 1453883041, - "Guest_AsrikWidebelt": 401936422, - "Guest_GothricHonorbound": 750072340, - "Guest_HalfangBristlecrown": 618779562, - "Guest_OsvudFleetpaw": 1023466459, - "PP_PufferFish_A": 1578606029, - "Guest_OzelUnderwaterCat": 1033669302, - "PP_BabyGreenMan_A": 910025246, - "PP_SchoolTurtle_A": 1012620678, - "PP_DarkBalloon_A": 1229308566, - "MT_JetsamCopter": 92127678, - "Mount_4P_DarkClownCar": 420246262, - "MNT_BalloonsBunch": 2000358474, - "Guest_TempleGuardian": 632574316, - "Guest_TemplePhantom": 1701097840, - "Guest_MahonStarsearcher": 1549093341, - "Guest_LostKnight": 858980994, - "Guest_AnguishedWoodman": 174606918, - "Guest_TormentedTreant": 294050331, - "Guest_WildfireTreant": 1902129818, - "Guest_BlightedYaxche": 679097088, - "Guest_Junglethorn": 1734561424, - "Guest_Tangleroot": 2027061721, - "Guest_BlightedFreerooter": 1109803061, - "Guest_Winterbranch": 1170787806, - "Guest_DecayingBogwalker": 1338670789, - "Guest_BrownwoodTormentor": 1655181754, - "Guest_Wildroot": 1839747182, - "Guest_Ironsplinter": 668295157, - "Guest_Frostbranch": 75974631, - "Guest_KyoukonteiTreant": 474446232, - "Guest_BrokenStumps": 414724364, - "Guest_WordlessWoodsmen": 1813881830, - "Guest_DesiccatedTreebeard": 1826942903, - "Guest_ShadowoftheLand": 1612385317, - "Guest_TreeRoot": 1406633546, - "Guest_BefouledWoodwalker": 1517919498, - "Guest_ConfusedForestWarrior": 750805985, - "Guest_CrazedForestSpirit": 1007960507, - "Guest_Oakheart": 1158293719, - "Guest_SnowTreant": 1028620035, - "Guest_Snowbeard": 1997921701, - "Guest_BarkskinTreant": 2143957812, - "Guest_RazorleafTreant": 2133159197, - "Guest_CarrionFlowerMan": 1120698936, - "Guest_Kurokage": 355651925, - "Guest_LacombeStrawHouse": 568809873, - "Guest_BerkshireStickHouse": 1932133405, - "Guest_TamworthBrickHouse": 894027634, - "Guest_RustyTinderSpark": 1237916230, - "Guest_CoraWinterBranch": 1901918989, - "Guest_GrambleGoldRook": 1986988546, - "Guest_PiperStormTree": 1109520133, - "Guest_Hanadzura": 124838500, - "Guest_Kuchisaki": 2084188681, - "Guest_Kaizoku": 807430784, - "Guest_JaxonLastRites": 1653711119, - "Guest_SeijunKiller": 657647155, - "Guest_ZarichiTarakata": 1129212566, - "Guest_BladelessRonin": 1577395797, - "Guest_SanzokuOutlaw": 1682888807, - "Guest_SanzokuBandit": 1766198653, - "Guest_KakedaPainbringer": 1260119278, - "Guest_KakedaStalker": 367458449, - "Guest_KakedaShadow": 1604499626, - "Guest_KakedaSoulcrusher": 1961168112, - "Guest_ImitsuPlaguemaster": 1361539025, - "Guest_ImitsuDefouler": 1299791045, - "Guest_ImitsuPunisher": 234819300, - "Guest_StudentofKhai": 249757647, - "Guest_OtomoBattlemage": 918160114, - "Guest_OtomoCourier": 1373253378, - "Guest_OtomoSupplyRunner": 1580070577, - "Guest_OtomoScout": 1814051082, - "Guest_OtomoWrestler": 1053571230, - "Guest_OtomoFury": 111319603, - "Guest_Hyottoko": 307080225, - "Guest_Usunoki": 1881339626, - "Guest_Kagemoosha": 1842766119, - "Guest_UdoJin-e": 850816224, - "Guest_TakedaKanryu": 536087422, - "Guest_Tamauji": 818613882, - "Guest_Jikiru": 794167355, - "Guest_Nomoonaga": 849534658, - "Guest_Aiuchi": 515942855, - "Guest_Kurogaso": 1426248002, - "Guest_Ideyoshi": 1814038213, - "Guest_Koto": 1151260427, - "Guest_Usegi": 977549586, - "Guest_Kanago": 1644367227, - "Guest_Kyuto": 1168225979, - "Guest_Haru": 2070048389, - "Guest_Ashikata": 1523446928, - "Guest_Katsumori": 1823914597, - "Guest_Hingen": 1567896261, - "Guest_Yakedo": 502298497, - "Guest_Do-Daga": 1239945714, - "Guest_Maito": 979260804, - "Guest_TonkatsuThug": 1758658397, - "Guest_GobbloreanGuard": 1286210991, - "Guest_BabblingMeints": 413418139, - "Guest_PrinceGobblestone": 1813171676, - "Guest_GobblerMuncher": 1517159487, - "Guest_GobblerGorger": 130736772, - "Guest_GobblerScouter": 1509427587, - "Guest_GobblerGlutton": 1912199781, - "Guest_GobblerScavenger": 136586791, - "Guest_BaronGreebly": 1028182200, - "Guest_BaronRotunda": 457132907, - "PP_DeathMimic": 1811942047, - "Guest_GreenMan": 1126663802, - "Guest_ForestGrump": 1602350320, - "Guest_ErvintheBarbarian": 1671762776, - "Guest_RazortuskWarrior": 1109994549, - "Guest_RazortuskBrawler": 732265321, - "Guest_SplithoofRager": 1922134329, - "Guest_TuskedRaider": 1920114147, - "Guest_SviniBeserker": 1146317608, - "Guest_SviniReaver": 216717251, - "Guest_Shattertusk": 1191456730, - "Guest_SplithoofBarbarian": 296671728, - "Guest_Bloodseeker": 2086598239, - "Guest_Scarsnout": 1831766077, - "Guest_MasterTonkatsu": 1783298894, - "Guest_Grisletusk": 657393295, - "Guest_SplithoofBloodguard": 488382274, - "Guest_BristlehideRaider": 237078958, - "Guest_Gullin": 1656401882, - "Guest_ForestNymph": 812055814, - "Guest_SassafrasMan": 1327049788, - "Guest_RandolfSpellshine": 108808620, - "Guest_BleysFlamerender": 434070106, - "Transformation_Khan": 1398327634, - "Transformation_TheBat": 1675113521, - "MNT_DireWolf": 845578449, - "MNT_YuleMule": 1976182058, - "MNT_LightBlades": 829118450, - "MNT_FlyingSquid": 1573132252, - "PP_Globulin": 467801224, - "PP_BeastBaby": 1807874692, - "PP_SaniBot": 670845902, - "Mount_SwarmSand": 1277669407, - "Guest_Nodnarb": 211478288, - "Guest_LordBramble": 1118781162, - "Guest_Yogash": 506264561, - "Guest_Marcio": 499428996, - "Guest_Procyon": 1115376865, - "Guest_Thunderfin": 2029218563, - "Guest_ArkynMoonblade": 1152775206, - "Guest_CreeCurdWright": 1714953095, - "Guest_DeerMouseRevenant": 315064435, - "Guest_ElanaDarksun": 837982094, - "Guest_KingAlricFateSailor": 1934591130, - "Guest_LaughingCalaca": 984492527, - "Guest_WraithKnight": 620484548, - "Guest_FieryEchoofApep": 484636593, - "Guest_FrostyEchoofApep": 171933154, - "Guest_FalseEchoofApep": 479387377, - "Guest_ChargedEchoofApep": 1229406800, - "Guest_ShrowdengersQhat": 101563303, - "Guest_Scrollkeeper": 643219293, - "Guest_TerrorHound": 753341570, - "Guest_CondemnedMander": 445370758, - "Mnt_SnowStorm": 1491572670, - "Mount_ChimneySweeper": 378571534, - "MNT_PineappleCandyCane": 1630795796, - "Guest_TyphonDustwind": 740849673, - "MNT_StickHorse": 216654744, - "MimicTemplate": 1461219184, - "MNT_Ball_N_Chain": 289720920, - "PP_PeaceDove_A": 1785119671, - "Mount_Gyrocycle": 1495008048, - "PP_BattleMageDragon_A": 1864696711, - "MNT_BattleBeast": 1304449286, - "MNT_SmokeTrails": 387873030, - "Mount_FriendshipHare": 677127330, - "MNT_ButterflySwarm": 383602683, - "PP_EggChick_B": 1959154042, - "MNT_Unicorn": 562210585, - "PP_StuffedUnicorn": 1731641773, - "MNT_ParadeTruck": 2026348978, - "MNT_ParadeTruckXmas": 1017864627, - "MNT_AutumnLeafSwarm": 1540002279, - "PP_GingerbreadMan": 1796172229, - "PP_DecadeDragon": 1819398630, - "MNT_StageShip": 829852992, - "PP_DramaLlama": 255896529, - "PP_HallMinotaur_A": 1492017563, - "Guest_MacDeath": 1526226705, - "Guest_MacDeathUnderstudy": 1731752647, - "Guest_MacLifeUnderstudy": 257466641, - "Guest_MacStormUnderstudy": 8295117, - "MNT_Pantera": 1135198, - "MNT_StagLight": 1908778048, - "MNT_GiantSpider": 1247185021, - "MNT_StagEvil": 872303931, - "PP_BaskHound": 1093866594, - "PP_Marionette": 1688299938, - "PP_Marionette_B": 1688297824, - "Guest_Izft": 996301405, - "Guest_SapotisMinion": 1625665891, - "Guest_CrazedSlave": 1473233468, - "Guest_CharmedSlave": 803043667, - "Guest_EnsorcelledSlave": 40920285, - "Guest_HallServant": 2038116460, - "Guest_SiathePerceiver": 1235571913, - "Guest_Kiwu": 1151177787, - "Guest_NightImp": 1051843424, - "Guest_EvilTrickster": 1035477123, - "Guest_DeepWoodsImp": 1502444054, - "Guest_ForestPest": 802235713, - "Guest_TaintedForestImp": 1030343985, - "Guest_Youkai": 518367729, - "Guest_CarthaginianElephantWarrior": 776293919, - "Guest_IdrisBeast-Taker": 106759521, - "Guest_MikaSkarka": 237956516, - "Guest_Belloq": 757247833, - "Guest_GurtokPiercer": 549466122, - "Guest_GurtokFirebender": 817966523, - "Guest_GurtokDemon": 544070162, - "Guest_GeneralFiretusk": 2073037770, - "Guest_GurtokBarrierDemon": 44657563, - "Guest_BlacktuskShaman": 1009070925, - "Guest_FireDemon": 158367196, - "Guest_DeathOni": 1916642000, - "Guest_JadeOni": 1289517185, - "Guest_PlagueOni": 1464586443, - "Guest_WarOni": 1630196094, - "Guest_BrokenLandMammoth": 1587008312, - "Guest_SunderedSeamMammoth": 1272698721, - "Guest_BullyMammoth": 170705927, - "Guest_Bullhemoth": 146998717, - "Guest_Kogasha": 1909654543, - "Guest_MusuthBerserker": 1741298129, - "Guest_BlackTuskCultist": 1771575961, - "Guest_AksilBlacktrunk": 1253596409, - "Guest_LongdreamerShaman": 1521283133, - "Guest_MuratGreyeyes": 1296814314, - "Guest_ElephantSoldier": 1443670145, - "Guest_DarajaniGuard": 1597288495, - "Guest_Loremaster": 1792470809, - "Guest_Pork": 2069999347, - "Guest_Beans": 97706585, - "MNT_Ox": 1292937747, - "PP_PropellerSquirrel": 1657443894, - "Guest_RasikPridefall": 97921485, - "Guest_AmedrasLightstep": 1818417025, - "MNT_SmokeTrails_Balance": 1358150715, - "MNT_SmokeTrails_Fire": 702971609, - "MNT_SmokeTrails_Ice": 190218501, - "MNT_SmokeTrails_Life": 2045542105, - "MNT_SmokeTrails_Myth": 1276281121, - "MNT_SmokeTrails_Storm": 564954622, - "Guest_Bellosh": 1407013027, - "Guest_AcampiReedfist": 2076527733, - "Guest_AgnettaBroadblade": 14864960, - "Guest_FrostheartRaider": 1574787221, - "Guest_JordaSwordbearer": 1627071850, - "Guest_KasaiBaku": 1153107369, - "Guest_ZoraimeiHelephant": 1002482606, - "Guest_ConscriptedMander": 43811125, - "Firecat_Decade": 409516955, - "MNT_BatGlider": 2086258491, - "Transformation_PlayerHomework": 673389670, - "Transformation_PlayerAttendance": 422287307, - "Transformation_PlayerLecture": 2035625874, - "Transformation_PlayerPopQuiz": 483367038, - "MNT_GingerbreadHorse": 1369242781, - "MNT_NimbariChariot": 1251740392, - "PP_NimbariDog": 1235126828, - "Transformation_PlayerGrandma": 1128332272, - "Transformation_PlayerScionA": 33862367, - "PP_Mushroom": 1568942158, - "MNT_Scooter": 1148167046, - "MNT_Scooter_B": 2079302532, - "MNT_Scooter_C": 1810867076, - "MNT_Scooter_D": 468689796, - "MNT_IceCycle": 415797788, - "Transformation_PlayerScionA02": 33921759, - "Guest_FearoftheFuture": 947210229, - "Guest_FearofGremlins": 405857384, - "Guest_RootGuardian": 922940845, - "Guest_VineThrasher": 172546427, - "Guest_BlightWalker": 1438155154, - "Guest_BriarScourge": 615681851, - "Guest_DreamJabberwock": 907754098, - "Guest_DreamBelloq": 990352002, - "Guest_Voltergeist": 1558128068, - "Guest_SpecialBranch": 1927849418, - "Guest_MutantBriar": 805892802, - "Guest_FeralBriar": 883790223, - "Guest_MaizeMonster": 688905764, - "Guest_DreamShadowwock": 1432458248, - "Mount_Heartboard": 1421972759, - "PP_ChocoBunny": 324797859, - "Mount-PogoFlower": 906659501, - "MNT_AethyrCloud": 1586061078, - "MNT_Fangle": 7846854, - "Guest_StarfallSpider": 1177620831, - "Guest_AshSpider": 1588502553, - "Guest_CorruptedWeaver": 38937211, - "Guest_CrystalCrawler": 1197980149, - "Guest_ShimmerWidow": 1300740128, - "Guest_FacetedSpikespinner": 1939719331, - "Guest_CrystallineQueen": 1999282256, - "Guest_AncientCrystalweaver": 1409608801, - "Guest_FangtoothLavaspinner": 1538042104, - "Guest_VenomousHeatseeker": 1234682482, - "Guest_FireweaveRockbiter": 300743778, - "Guest_MonkeySpider": 754090007, - "Guest_CryptSpider": 1545405304, - "Guest_CommonHouseSpider": 613486002, - "Guest_ArachnaMagnaMagus": 825817937, - "Guest_ArachnaSoldier": 270978709, - "Guest_Gnissa": 1699826178, - "Guest_WebwoodScuttler": 1728611075, - "Guest_SandSpider": 61789007, - "Guest_WebwoodCreeper": 1013382584, - "Guest_Skathi": 1631429165, - "Guest_ArchmagusLorcan": 321146960, - "Guest_CrawleroftheMist": 2076696304, - "Guest_PaintedSpider": 1482115552, - "Guest_GiantSpider": 1545526191, - "Guest_CaveCrawler": 2101587667, - "Guest_RattleCatcher": 1472707326, - "Guest_TrapdoorSpider": 1321643694, - "Guest_RockClinger": 1304266411, - "Guest_InquisitorXimenez": 1053483090, - "Guest_ElderMagus": 1017836836, - "Guest_WardenBenthamic": 18807199, - "Guest_SpiderArchmagus": 387645558, - "Guest_SpiderAdept": 2094873407, - "Guest_InterrogatorRentenius": 1245984179, - "Guest_WarpedWeaver": 495882677, - "Guest_ArachnaSkinner": 281864085, - "Guest_SkinnerConscript": 2028526453, - "Guest_ArachnaGladiator": 2492046, - "Guest_LorcanInitiate": 353311753, - "Guest_Serket": 1871335773, - "Guest_IceWeaver": 2063216026, - "Guest_SpiritSpinner": 525666327, - "Guest_MysteriousCrawler": 218352756, - "Guest_BlackWidow": 1909331619, - "Guest_BrownRecluse": 1146386275, - "Guest_Creeper": 1197442790, - "Guest_GearSpinner": 67020478, - "Guest_Clinker": 1194519062, - "Guest_Clanker": 1194517014, - "Guest_GrandfatherSpider": 1330981335, - "Guest_Spiderling": 1400274461, - "Guest_ManekiWebWalker": 888348786, - "Guest_KoganiDeathCrawler": 276010604, - "Guest_CheliceranCrawler": 1169176517, - "Guest_ArachniteCreeper": 1850534774, - "Guest_ChelicaranStalker": 2057291848, - "Guest_HornedMonkeySpider": 1301514577, - "Guest_GreyOgreSpider": 1533774471, - "Guest_StarburstSpider": 698029451, - "Guest_PaintedCaveMonster": 601315479, - "Guest_RubbleRouser": 220785666, - "Guest_EarthElemental": 435260049, - "Guest_SharpshardWarrior": 1403237237, - "Guest_Firevein": 1220046430, - "Guest_Blackblade": 458130537, - "Guest_VengefulFireheart": 563205004, - "Guest_FirerockStomper": 608552855, - "Guest_BlackrockGuardian": 1663799582, - "Guest_ConfusedSentry": 24655510, - "Guest_SilverSentinel": 1090673683, - "Guest_SilverServant": 84560693, - "Guest_GiantHomunculus": 456098557, - "Guest_PropertyMaster": 229101764, - "Guest_VaultProtector": 185568207, - "Guest_PlatedDefender": 79324363, - "Guest_Avalanche": 761613547, - "Guest_RockReaver": 919912933, - "Guest_Frostmantle": 856308090, - "Guest_GlacierWalker": 131215932, - "Guest_SandBehemoth": 272513357, - "Guest_RunedAnnihilator": 121339936, - "Guest_RunedDevestator": 1611071181, - "Guest_RunedGuardian": 1986312667, - "Guest_CanyonRager": 1123038266, - "Guest_RubbleReaver": 220774678, - "Guest_Boulderbone": 122279242, - "Guest_Nali": 77467516, - "Guest_Gnar": 1151164930, - "Guest_GlacialAvenger": 1181253632, - "Guest_SokkwiKeymaster": 190919624, - "Guest_SandsofTime": 34920273, - "Guest_BladeGolem": 435561523, - "Guest_FrostColossus": 1564686403, - "Guest_IceColossus": 335477257, - "Guest_PollutedEarthWalker": 86045387, - "Guest_CorruptedEarthSpirit": 1135891559, - "Guest_Stonebreaker": 1317905436, - "Guest_StoneElemental": 1715022018, - "Guest_VolcanisGolem": 1904918929, - "Guest_WaterElemental": 1717850987, - "Guest_AshenDeathMonkeySpider": 35356665, - "Guest_DeathMonkeySpider": 1525508507, - "Guest_MotherMonkeySpider": 110317392, - "Guest_DoomMonkey": 1135105500, - "Guest_DreamMorganthe": 907599965, - "Guest_DragonBeetle": 1974635734, - "Guest_SandWalker": 1530843985, - "MNT_PandaMama": 916371162, - "PP_BabyPandas": 778536285, - "PP_FrogPrince": 729975205, - "MNT_PumpkinCarriage": 183672737, - "Mount_Gobbler_B": 1193388729, - "PP_Hamster": 1578040708, - "Guest_Steeleton": 657429968, - "Guest_GoldenWyrm": 311022393, - "MNT_Roc": 1564431869, - "PP_BabyGriffin": 1913686406, - "Transformation_ShadowDPSMob": 936133896, - "Transformation_ShadowTankMob": 305660992, - "Transformation_ShadowHealMob": 356596800, - "Guest_SpiritofIgnorance": 1577360126, - "Guest_FecklessSoul": 519648315, - "Guest_BurnedOutSoul": 312181646, - "Guest_BenightedRevenant": 2131956962, - "Guest_TombLurker": 1901203489, - "Guest_DesertGolem": 543642682, - "Guest_KumoOni": 215822625, - "Guest_SpellwritStalker": 161772776, - "PP_Sun": 1723237840, - "Guest_Leadite": 4480416, - "Mount_FestiveFox": 2125832348, - "PP_FenrisWolf": 1601784680, - "PP_SchoolPiggle": 109782407, - "PP_FenrisWolf_Red": 1597992854, - "PP_FenrisWolf_Teal": 1455058454, - "PP_FenrisWolf_White": 1102186199, - "Transformation_NinjaPig_Fire": 984575055, - "Transformation_BG_RatThief_Myth": 1191155131, - "Transformation_BG_RatThief_Storm": 675891897, - "MNT_Umbrella": 955683437, - "Transformation_BG_Elf_Ice": 1209681129, - "Transformation_BG_Fairy_DarkMinion_Balance": 33521202, - "Transformation_BG_Cyclops_Death": 876023972, - "Transformation_BG_Minotuar_Fire": 1118476387, - "Transformation_BG_WolfWarrior_Storm": 2075594475, - "Transformation_BG_WolfWarrior_Balance": 746159992, - "Transformation_BG_Draconian_Myth": 903606820, - "Transformation_BG_Draconian_Life": 1501291044, - "Transformation_BG_Colossus_Life": 1320377666, - "MNT_DolphinChariot": 102982520, - "MNT_EvilWagon": 685457563, - "MNT_FlyingDutchman": 1176206544, - "PP_SeaHorse": 2024322494, - "PP_EvilTeddy": 1159020925, - "PP_ZombieParrot": 384805107, - "Transformation_BG_Ice_Colossus": 299613211, - "MNT_CarrierBat": 7323333, - "Transformation_BG_Minotaur_MythTempalte": 430330904, - "PP_FeatheredTabby": 452526748, - "Transformation_Detritus01": 1335763402, - "Guest_Metallossus": 335457082, - "MNT_SantaJaws": 464410203, - "MNT_BattleBadger": 532858222, - "Transformation_Shedder01": 2069145892, - "PP_NatureSpirit": 373176286, - "Transformation_Devourer01": 1004421540, - "Guest_TheDevourer": 1591187996, - "Guest_Treeminder": 1093207850, - "Guest_RenegadeDruid": 2087982292, - "Guest_FractalTreeminder": 927174548, - "Guest_UnsettledTreeminder": 486164163, - "Guest_DragonspyreCrusader": 247317280, - "Guest_YoungGreggor": 66068670, - "Guest_GeneralGreyflame": 499924835, - "Guest_OldGreggor": 391726170, - "Guest_PrinceViggor": 853556298, - "Guest_DragonspyreVanguard": 693851565, - "Guest_SilasConviction": 177362659, - "Guest_SilasWeariness": 893431021, - "Guest_SilasRage": 1288904439, - "Guest_SilasDoubt": 1479426285, - "Guest_Lorekeeper": 147779344, - "Guest_FelixPhotomongerIII": 68387506, - "Guest_WarHavox": 1634324022, - "Guest_Mis-assembledSkeleton": 221832082, - "Guest_TreeminderGhost": 200408510, - "Guest_ViggorsDrake": 340449521, - "Guest_BlueNinjaPig": 938539327, - "Guest_RedNinjaPig": 2097962021, - "Guest_OrangeNinjaPig": 625058258, - "Guest_PurpleNinjaPig": 445746449, - "Guest_RitualColossus": 844563319, - "Guest_TinyDragon": 1123127688, - "Guest_RitualSpider": 429827552, - "Guest_RitualDraconian": 837510372, - "Guest_CC_Druid_Warrior_C_01": 55314616, - "Guest_CC_Druid_Wizard_A_01": 1046261169, - "Guest_CC_Druid_Wizard_B_01": 1046244785, - "Guest_CC_Druid_Warrior_A_01": 56363192, - "MNT_Toboggan": 995356805, - "MNT_2P_WickerTreant-001": 2065440944, - "PP_Ratatoskr": 1003497600, - "PP_Trash": 1195047012, - "Guest_CC_Druid_Wizard_D_01": 1046343089, - "MNT_Sunflower": 721091531, - "MNT_Whoopee": 1383311238, - "MNT_Warthog": 8060761, - "PP_ShamRock": 943893325, - "PP_LeapingLeprechaun": 132882517, - "PP_LionCubs": 465759803, - "PP_Tanuki": 670387843, - "MNT_Crane": 433122675, - "MNT_Krokosphinx": 739938754, - "Transformation_BG_Fairy_Life": 1897480818, - "Transformation_LiceDeepSpawnA": 244795720, - "Piggle_Alien": 1761605655, - "PP_JeweledScarab": 620544607, - "Guest_KR_Nymph_DrkMage_D50": 1248526054, - "Guest_KR_Nymph_DrkMage_C50": 1246953190, - "Guest_KR_Nymph_DrkMage_B50": 1247477478, - "Guest_KR_Nymph_DrkMage_A50": 1245904614, - "Guest_EM_Spider_Ash_01": 185724938, - "UFO": 47349, - "PP_Kit10": 326796620, - "PP_Lumi_Tulip": 84119585, - "PP_Lumi_Fern": 117015078, - "PP_Lumi_Violet": 1468797578, - "PP_Lumi_Sunny": 1769236703, - "PP_Lumi_Daisy": 1743454175, - "MNT_CelestianMech": 1238076872, - "MNT_Brontosaurus": 402157167, - "Guest_HG_AKT_Krok_Cyber_A_Balance_25": 1367985604, - "Guest_HG_AKT_Krok_Cyber_A_Balance_50": 1368084932, - "Guest_HG_AKT_Krok_Cyber_A_Balance_75": 1367988676, - "Guest_HG_AKT_Krok_Cyber_A_Balance_100": 1351303620, - "Guest_HG_AKT_Krok_Cyber_A_Balance_130": 1351270852, - "Guest_HG_AKT_Krok_Cyber_A_Fire_25": 976558490, - "Guest_HG_AKT_Krok_Cyber_A_Fire_50": 37034397, - "Guest_HG_AKT_Krok_Cyber_A_Fire_75": 305469850, - "Guest_HG_AKT_Krok_Cyber_A_Fire_100": 573905821, - "Guest_HG_AKT_Krok_Cyber_A_Fire_130": 573905824, - "Guest_HG_AKT_Krok_Cyber_A_Ice_25": 159411377, - "Guest_HG_AKT_Krok_Cyber_A_Ice_50": 541093041, - "Guest_HG_AKT_Krok_Cyber_A_Ice_75": 146828465, - "Guest_HG_AKT_Krok_Cyber_A_Ice_100": 557870241, - "Guest_HG_AKT_Krok_Cyber_A_Ice_130": 960523425, - "Guest_HG_AKT_Krok_Cyber_A_Myth_25": 976187830, - "Guest_HG_AKT_Krok_Cyber_A_Myth_50": 36663729, - "Guest_HG_AKT_Krok_Cyber_A_Myth_75": 305099190, - "Guest_HG_AKT_Krok_Cyber_A_Myth_100": 573535153, - "Guest_HG_AKT_Krok_Cyber_A_Myth_130": 573535156, - "Guest_CL-GolemButler-R9": 780077559, - "Guest_CL-GolemDigger-Boss-R10": 562020288, - "Guest_CL-GolemDigger-R9": 789375095, - "Guest_CL-GolemDigger-Rank8MythBoss-R10": 930527857, - "Guest_CL-GolemWorker-R9-1": 1072815287, - "Guest_CL-FishbotBrown-R9-1": 2006155417, - "Guest_CL-FishbotBrown-R9-2": 395542681, - "Guest_CL-FishbotGold-Boss-R10": 611881707, - "Guest_CL-FishbotGold-R9": 705414492, - "Guest_CL-FishbotYellow-Boss-R10": 23145662, - "Guest_CL-Protector-Black-Boss-R10-2": 679228793, - "Guest_CL-Protector-Gold-R10": 1909636609, - "Guest_CL-Protector-Gold-R9-1": 1909634804, - "Guest_CL-Protector-Gold-R9-2": 1909634932, - "Guest_CL-Protector-Gold-R9-3": 1909635060, - "Guest_CL-Protector-Gold-R9-4": 1909634164, - "Guest_CL-Protector-Purple-R9-Boss": 1889837072, - "Guest_CL-Protector-Purple-R9": 81760161, - "Guest_CL-Protector-Tan-Boss-R10": 912663188, - "Guest_KR_Golem_Worker": 1784607296, - "Guest_Golem-Brass-R7-1": 718939445, - "Guest_Golem-Clockwork-R7": 1161173708, - "Guest_EM_Robot_Batbot_A_01": 1482867950, - "Guest_EM_Robot_Batbot_B_02": 945947886, - "Guest_EM_Robot_Batbot_B_01": 1482818798, - "Guest_EM_Robot_Batbot_B_03": 409076974, - "Guest_EM_Robot_Batbot_B_04": 127793938, - "Guest_EM_Robot_Batbot_B_05": 664664850, - "Guest_EM_Robot_Drone_A_02": 1215188569, - "Guest_EM_Robot_Drone_A_03": 1231965785, - "Guest_EM_Robot_Drone_A_01": 1265520217, - "Guest_EM_Robot_Drone_A_04": 1315851865, - "Guest_EM_Robot_Drone_A_05": 1332629081, - "Guest_EM_Robot_Drone_A_06": 1282297433, - "Guest_EM_Robot_Drone_A_07": 1299074649, - "Guest_EM_Robot_Drone_A_08": 1114525273, - "Guest_EM_Robot_Drone_A_09": 1131302489, - "Guest_EM_Robot_Drone_A_Boss_01": 1960661151, - "Guest_EM_Robot_Drone_A_Boss_02": 1960530079, - "Guest_EM_Robot_Drone_E_01": 1265518169, - "Guest_EM_Robot_Tank_A_01": 1314796420, - "Guest_EM_Robot_Tank_A_02": 1313223556, - "Guest_EM_Robot_Drone_C_02": 1215187545, - "Guest_EM_Robot_Drone_D_03": 1231963225, - "Guest_EM_Robot_Drone_D_01": 1265517657, - "Guest_EM_Robot_Drone_D_02": 1215186009, - "Guest_EM_Robot_Tank_B_01": 1314796468, - "Guest_EM_Robot_Drone_C_01": 1265519193, - "Guest_G14-BP-Golem_Steel_Boss": 2071105129, - "Guest_G14-BP-Golem_Steel_Puzzle": 715790979, - "Guest_Golem-Brass-Elite-L38": 1163662532, - "Guest_Golem-Brass-Elite-L56": 2057562884, - "Guest_Golem-Brass-MBBoss-L48": 1498830732, - "Guest_Golem-Brass-MBBoss-L71": 1498829576, - "Guest_Golem-Brass-MBBoss-L76": 1498828936, - "Guest_Golem-Clockwork-Elite-L54-Metal": 417151527, - "Guest_Golem-Clockwork-Elite-L37": 1961943722, - "Guest_Golem-Clockwork-Elite-L54": 1950147242, - "Guest_Golem-Clockwork-L28": 1561959116, - "Guest_Golem-Clockwork-MBBoss-L37": 973152783, - "Guest_Golem-Clockwork-MBBoss-L69": 1262559759, - "Guest_Golem-Steel-Elite-L39": 1430496717, - "Guest_Golem-Steel-MBBoss-L40": 1229578887, - "Guest_Golem-Steel-MBBoss-L43": 1229579015, - "Guest_Golem-Steel-MBBoss-L50-1": 1231762051, - "Guest_Golem-Steel-MBBoss-L50": 1229578883, - "Guest_Golem-Steel-MBBoss-LXX": 1229583927, - "Guest_Golem-Wood-Elite-L35": 904360756, - "Guest_Golem-Wood-Elite-L37": 1978102580, - "Guest_Golem-Wood-Elite-L50": 1813548236, - "Guest_Golem-Wood-MBBoss-L63": 1392041724, - "Guest_MB-Gauntlet-Golem-Clockwork": 854649045, - "Guest_Spider-Golem-MBBoss-L67": 253352706, - "Guest_Spider-Golem-MBBoss-L96": 253348994, - "Guest_WC-MAW-GasGolem-Minion": 1511013798, - "Guest_WC-MAW-GasGolemLife-Minion": 1306026584, - "Guest_Golem-Steel-L02": 1027229749, - "Guest_Golem-Clockwork-L01": 1409915596, - "Guest_Gauntlet-01-Golem-Steel-Ghost-R8": 402816318, - "Guest_Golem-Wood-L01": 156976035, - "Guest_HG-Clock-ClockworkSpanner-20": 1523370449, - "Guest_HG-Clock-ClockworkSpanner-40": 1523370455, - "Guest_HG-Clock-ClockworkSpanner-60": 1523370453, - "Guest_HG-Clock-ClockworkSpanner-80": 1523370459, - "Guest_HG-Clock-ClockworkSpanner-100": 1523354068, - "Guest_HG-Clock-ClockworkSpanner-120": 1523354004, - "Guest_AQ-Cyclops-Guard": 191361948, - "Guest_AQ_Cyclops_Guard_A_Boss_01": 114747100, - "Guest_CL-Cyclops-Death-R10": 611013866, - "Guest_Cyclops-Death-Boss-R7": 1192370725, - "Guest_Cyclops-Death-Boss-R9": 1192370717, - "Guest_Cyclops-Death-R7": 144593791, - "Guest_GH-Cyclops-Death-R6": 594236619, - "Guest_Cyclops-BlueHelmet-KTBoss-L03": 1720105277, - "Guest_Cyclops-Red-L12": 1816429840, - "Guest_MR_Cyclops02WHelmet_Model_01": 1483732416, - "Guest_Cyclops-Blue-L02": 1633021234, - "Guest_Cyclops-BlueHelmet-WCBoss-L03": 427378332, - "Guest_Cyclops-RedHelmet-WCBoss-L03": 2021269422, - "Guest_HG_Sinbad_Cyclops_25": 911979034, - "Guest_HG_Sinbad_Cyclops_50": 1856261606, - "Guest_HG_Sinbad_Cyclops_75": 861647386, - "Guest_HG_Sinbad_Cyclops_100": 1789152678, - "Guest_HG_Sinbad_Cyclops_130": 178539942, - "Guest_HG_Sinbad_IronSultan_25": 930031152, - "Guest_HG_Sinbad_IronSultan_50": 930051504, - "Guest_HG_Sinbad_IronSultan_75": 930030768, - "Guest_HG_Sinbad_IronSultan_100": 927954864, - "Guest_HG_Sinbad_IronSultan_130": 927942576, - "MNT_SweetRide": 1643297840, - "PP_FrilledDino": 1395342809, - "PP_Celestian": 95679303, - "PP_Sun_Angry": 1955190071, - "PP_Marshmallow": 1220667954, - "MNT_Umbrella_B": 923364822, - "MNT_Tamer": 1050737194, - "PP_BumbleBee_B": 858653433, - "MNT_PunkFlamingo": 1634690818, - "MNT_2P_WoolyRhino": 1395943031, - "PP_Retriever": 72842604, - "PP_Piggle_Caveman": 181356174, - "PP_DecennialDragon": 1396523337, - "MNT_Tiger_Rainbow": 515535412, - "MNT_CarrierGhosts": 1833039309, - "MNT_Sled": 617654308, - "Transformation_BG_RatThief_Death": 30691641, - "Transformation_BG_Elf_Storm": 44352983, - "Transformation_BG_WolfWarrior_Ice": 986304351, - "MNT_CarriorGhost_B": 1768732109, - "MNT_CarriorGhost_C": 1766634957, - "Transformation_BG_Colossus_Fire": 1318803522, - "Transformation_BG_Krok_Balance": 140952965, - "Guest_KM_Gobbler_Skinny_A_11": 773648065, - "Guest_KM_Robot_Candy_A_01": 480414124, - "Guest_KM_Robot_Candy_A_02": 530745772, - "Guest_KM_Robot_Candy_A_03": 513968556, - "Guest_KM_Robot_Candy_A_04": 430082476, - "Guest_KM_Robot_Candy_A_05": 413305260, - "Guest_KM_Gummy_Bear_A_01": 1940905059, - "Guest_KM_Gummy_Bear_D_01": 1940905011, - "Guest_KM_Gummy_Bear_E_01": 1940904995, - "Guest_KM_Gummy_Bear_A_02": 1941429347, - "Guest_KM_Gummy_Bear_D_02": 1941429299, - "Guest_KM_Gummy_Bear_E_02": 1941429283, - "Guest_KM_Gummy_Bear_B_01": 1940905043, - "Guest_KM_Gummy_Bear_B_02": 1941429331, - "Guest_KM_Gummy_Bear_B_03": 1941953619, - "Guest_KM_Gummy_BearHat_A_01": 853226448, - "Guest_KM_Gummy_BearHat_A_02": 853226460, - "Guest_KM_Gummy_Bunny_A_01": 324805042, - "Guest_KM_Gummy_Bunny_C_01": 324806066, - "Guest_KM_Gummy_Bunny_D_01": 324807602, - "Guest_KM_Gummy_Bunny_E_01": 324807090, - "Guest_KM_Gummy_Bunny_F_01": 324808626, - "Guest_KM_Gummy_BunnyUber_A_01": 525565930, - "Guest_KM_Gummy_Worm_A_01": 231044195, - "Guest_KM_Gummy_Worm_B_01": 231044179, - "Guest_KM_Gummy_Worm_C_01": 231044163, - "Guest_KM_Gummy_Worm_A_02": 232617059, - "Guest_KM_Gummy_Worm_B_02": 232617043, - "Guest_KM_Gummy_Worm_C_02": 232617027, - "Guest_KM_Gummy_Bear_F_01": 1940904979, - "Guest_KM_Gummy_Bear_F_02": 1941429267, - "Guest_KM_Gummy_Bunny_C_02": 274474418, - "Guest_KM_Robot_Candy_A_06": 463636908, - "Guest_KM_Alphoi_DarkF_A_01": 475441543, - "Guest_KM_Gobbler_Skinny_A_01": 773648069, - "Guest_KM_Gobbler_Skinny_A_02": 773648197, - "Guest_KM_Gobbler_Skinny_A_03": 773648325, - "Guest_KM_Gobbler_SkinnyF_A_01": 254411012, - "Guest_KM_Gobbler_Skinny_A_04": 773647429, - "Guest_KM_Gobbler_Skinny_A_05": 773647557, - "Guest_KM_Gobbler_Skinny_A_06": 773647685, - "Guest_KM_Gobbler_SkinnyF_A_02": 254423300, - "Guest_KM_Gobbler_Skinny_A_07": 773647813, - "Guest_KM_Gobbler_Skinny_A_08": 773646917, - "Guest_KM_Gobbler_Skinny_A_09": 773647045, - "Guest_KM_Gobbler_SkinnyF_A_03": 254419204, - "Guest_KM_Gobbler_Fat_A_01": 1440595742, - "Guest_KM_Gobbler_Fruit_B_01": 1236446660, - "Guest_KM_Gobbler_Fruit_A_01": 1235922372, - "Guest_KM_Gobbler_Guard_B_01": 1435667582, - "Guest_KM_Gobbler_Skinny_A_10": 773647937, - "Transformation_PlayerBabyCarrot": 1580787628, - "Transformation_PlayerDeadBeet": 1992261692, - "Transformation_PlayerDisparagus": 373797484, - "Transformation_PlayerSnowPeas": 634199102, - "PP_Snowflake": 2036143125, - "PP_GummyBear_Myth": 117787890, - "PP_GummyBear_Death": 236577760, - "PP_GummyBear_Balance": 2100524337, - "PP_GummyBear_Life": 118020336, - "PP_GummyBear_Fire": 117995748, - "PP_GummyBear_Storm": 247437198, - "PP_GummyBear_Ice": 122536570, - "MNT_SnowOwl": 1578473542, - "Guest_KM_Gummy_Bear_Uber_A_01": 1856208859, - "Guest_KM_Gummy_Bear_Uber_A_02": 1856196571, - "MNT_ChocolateMoose": 567538552, - "MNT_Ram_Candied": 1913603720, - "Guest_KM_Spider_Mage_A_01": 1529720120, - "Guest_KM_Spider_Mage_B_01": 1529719608, - "Guest_KM_Spider_Mage_C_01": 1529719096, - "Guest_KM_Spider_Mage_D_01": 1529718584, - "Guest_KM_Spider_Mage_E_01": 1529718072, - "PP_SpriteDark_Balance": 914900728, - "MNT_Tricycle": 991465753, - "Guest_Tri-Gauntlet-Protector-Gold": 2029952053, - "Guest_Tri-Gauntlet-FishbotGold": 130267882, - "Guest_HG-Clock-Clockworker-20": 281216243, - "Guest_HG-Clock-Clockworker-40": 281217011, - "Guest_HG-Clock-Clockworker-60": 281216755, - "Guest_HG-Clock-Clockworker-80": 281215475, - "Guest_HG-Clock-Clockworker-100": 283313523, - "Guest_HG-Clock-Clockworker-120": 283321715, - "Guest_HG-Clock-Lugs-20": 1452756928, - "Guest_HG-Clock-Lugs-40": 1452756960, - "Guest_HG-Clock-Lugs-60": 1452756992, - "Guest_HG-Clock-Lugs-80": 1452756768, - "Guest_HG-Clock-Lugs-100": 1452494736, - "Guest_HG-Clock-Lugs-120": 1452493712, - "Guest_HG-Clock-Lucia-20": 1041451626, - "Guest_HG-Clock-Lucia-40": 1041450602, - "Guest_HG-Clock-Lucia-60": 1041449578, - "Guest_HG-Clock-Lucia-80": 1041456746, - "Guest_HG-Clock-Lucia-100": 1049840746, - "Guest_HG-Clock-Lucia-120": 1049873514, - "Guest_KM_Gummy_Worm_A_03": 232092771, - "MNT_Scooter_E": 200254340, - "PP_WolfWarrior_Balance": 991302673, - "PP_PetGift": 1816280689, - "PP_RatThief": 1390866051, - "Guest_PL_Titan_Small_A": 2015819364, - "Guest_PL_Titan_Large_B": 699791264, - "Guest_PL_Titan_Medium_A": 326730424, - "PP_Draconian": 1631557208, - "MNT_Pantera_Astral": 106092538, - "PP_YearOx": 105653084, - "PP_WolfWarrior_Ice": 1043644935, - "PP_SpriteDark": 2031730054, - "PP_Brudel": 1355697143, - "MNT_Astronomers": 742732792, - "MNT_CouchPotato": 418050932, - "MNT_Flowerfarthing": 1396771051, - "MNT_Astronomers_Blue": 236532779, - "MNT_Astronomers_Rainbow": 4428274, - "PP_Astronomer": 782095961, - "Guest_KM_Gummy_Bunny_B_01": 324806578, - "Guest_KM_DeadBeets_A_01": 1396016635, - "MNT_GummyBunny": 775900704, - "MNT_GummyBunny_A": 775834080, - "MNT_GummyBunny_B": 775836128, - "MNT_GummyBunny_C": 775838176, - "Transformation_BG_Minotaur_Life": 1445109091, - "MNT_Armadillo": 825635826, - "PP_SootGremlin": 768969093, - "PP_RoadRunner": 2057802060, - "MNT_TinyTrolly": 160881792, - "PP_Frog_B": 1530124761, - "MNT_FjordDragon": 129204340, - "Transformation_BG_NinjaPig_Myth": 422914079, - "PP_CorgiPup": 1638656105, - "MNT_Skateboard": 728018224, - "PP_Krokomummy": 326396577, - "MNT_Vroom": 1736383110, - "MNT_PlayerWings_AtralRaven": 1514774167, - "PP_Blimp": 690882397, - "Guest_GH_WoodenSkeletonKey_Boar_Boss_Grey_01": 678055851, - "Guest_GH_StoneSkeletonKey_Boar_Boss_Grey_01": 571670691, - "Guest_GH_GoldSkeletonKey_Boar_Boss_Grey_01": 961728819, - "MNT_Cloud_Promo_AW_01": 2032670992, - "Guest_EM_Hornet_Burner_A_01": 1881854632, - "Guest_EM_Hornet_Burner_A_02": 1881854636, - "Guest_EM_Hornet_Zapper_A_01": 2058539689, - "Guest_EM_Hornet_Zapper_A_02": 2058539685, - "Guest_EM_Ant_Giant_D_01": 379386121, - "Guest_EM_Ant_Giant_A_02": 1768146677, - "Guest_EM_Ant_Giant_A_01": 1768097525, - "Guest_EM_Ant_Giant_B_01": 379386122, - "Guest_KR_Moth_Priest_G_Achera": 381233569, - "Guest_KR_BeeMonsterF_A": 135146211, - "Guest_KR_BeeMonsterF_A_Weak": 1824123847, - "Guest_KR_Bee_Warrior_A": 1569202664, - "Guest_KR_Bee_Warrior_B": 1569204200, - "Guest_KR_Bee_Warrior_C_BossDrones": 1217189631, - "Guest_KR_Bee_Warrior_D": 1569205224, - "Guest_KR_Bee_Warrior_E": 1569204712, - "Guest_KR_Bee_Warrior_G": 1569205736, - "Guest_KR_Bee_Warrior_G_BossFight": 1055035476, - "Guest_KR_Bee_Warrior_H": 1569207272, - "Guest_KR_Bee_Warrior_I": 1569206760, - "Guest_KR_Bee_Warrior_L": 1569209320, - "Guest_KR_Bee_Warrior_M": 1569208808, - "Guest_KR_DragonBeetle_Monster_A": 1777853782, - "Guest_KR_Hornet_Drone_A": 1161590757, - "Guest_KR_Hornet_Drone_B": 1161607141, - "Guest_KR_Hornet_Drone_C": 1161623525, - "Guest_KR_Hornet_Drone_D": 1161639909, - "Guest_KR_Hornet_Drone_E": 1161656293, - "Guest_KR_Lice_DeepSpawn_A": 761604959, - "Guest_KR_Mantis_HunterF_A": 820917199, - "Guest_KR_Mantis_HunterF_B": 871248847, - "Guest_KR_Mantis_HunterF_C": 854471631, - "Guest_KR_Mantis_HunterF_D": 904803279, - "Guest_KR_Mantis_HunterF_F": 938357711, - "Guest_KR_Mantis_HunterF_F_Driftwood": 2053608437, - "Guest_KR_Mantis_HunterF_G": 921580495, - "Guest_KR_Mantis_HunterF_H": 971912143, - "Guest_KR_Mantis_HunterF_I": 955134927, - "Guest_KR_Mantis_HunterF_I_Zuzka": 935478878, - "Guest_KR_Mantis_HunterF_J": 1005466575, - "Guest_KR_Mantis_HunterF_J_Zelda": 886910558, - "Guest_KR_Mantis_HunterF_K": 988689359, - "Guest_KR_Mantis_HunterF_K_LongShd": 1767574336, - "Guest_KR_Mantis_HunterF_L": 1039021007, - "Guest_KR_Mantis_HunterF_M": 1022243791, - "Guest_KR_Mantis_HunterF_P_Bossfight": 1731428987, - "Guest_KR_Mantis_HunterF_Q": 552481743, - "Guest_KR_Mantis_HunterF_R": 602813391, - "Guest_KR_Mantis_HunterF_S": 586036175, - "Guest_KR_Mantis_HunterF_SecondColumnCpt_A": 1354033994, - "Guest_KR_Mantis_HunterF_T": 636367823, - "Guest_KR_Mantis_HunterF_Tribute": 1946371041, - "Guest_KR_Mantis_HunterF_U": 619590607, - "Guest_KR_Mantis_HunterF_V": 669922255, - "Guest_KR_Mantis_HunterF_W": 653145039, - "Guest_KR_Mantis_HunterF_Y": 686699471, - "Guest_KR_Mantis_HunterF_Z_Officer": 206016474, - "Guest_KR_Mantis_ProphetF_B": 1791139097, - "Guest_KR_Mantis_ProphetF_C": 1254268185, - "Guest_KR_Milipede_Warrior_A": 410726278, - "Guest_KR_Milipede_Warrior_B": 410726282, - "Guest_KR_Milipede_Warrior_C": 410726286, - "Guest_KR_Milipede_Warrior_D": 410726290, - "Guest_KR_Milipede_Warrior_H": 410726306, - "Guest_KR_Milipede_Warrior_J": 410726314, - "Guest_KR_Milipede_Warrior_K": 410726318, - "Guest_KR_Moth_Priest_A": 1421532604, - "Guest_KR_Moth_Priest_B": 1421532092, - "Guest_KR_Moth_Priest_C": 1421531580, - "Guest_KR_Moth_Priest_D": 1421531068, - "Guest_KR_Moth_Priest_D_Drepa": 1483393420, - "Guest_KR_Moth_Priest_E": 1421530556, - "Guest_KR_Moth_Priest_F": 1421530044, - "Guest_KR_Mantis_HunterF_Z": 737031119, - "Guest_KR_Roach_AntLion_A": 1860517987, - "Guest_KR_Roach_AntLion_B_Bossfight": 993284625, - "Guest_KR_Roach_AntLion_C": 1861566563, - "Guest_KR_Roach_Cook_A": 259847495, - "Guest_KR_Roach_Glutton_B": 249524334, - "Guest_KR_Roach_WaterBug_A": 1795473599, - "Guest_KR_Roach_WaterBug_B": 1745141951, - "Guest_MR_Beetle_Scarab_A_01": 1789741503, - "Guest_MR_Beetle_Scarab_A_02": 1789741491, - "Guest_MR_Beetle_Scarab_B_01": 1790265791, - "Guest_ZF-Goliath-R10-Boss-01": 7034074, - "Guest_ZF-Goliath-R10-Boss-02": 7034202, - "Guest_ZF-Goliath-R10-Boss-03": 7034330, - "Guest_ZF-Goliath-R10-Boss": 1603576807, - "Guest_ZF-Goliath-R11-Boss-01": 2140449574, - "Guest_ZF-Goliath-R11-Boss-02": 2140449446, - "Guest_ZF-Goliath-R11-Boss-03": 2140449318, - "Guest_ME1_Ant_Aunt_A": 707251855, - "Guest_ME1_Ant_Aunt_B": 1440231794, - "Guest_CC_Fly_Worker_A_01": 1497784524, - "Guest_CC_Roach_Worker_A_01": 1026321602, - "Guest_CC_Roach_Lieutenant_A_01": 1081690299, - "Guest_CC_Roach_Lieutenant_B_01": 1081690295, - "Guest_CC_Roach_Don_A_01": 547836893, - "Guest_CC_Roach_BBug_A_01": 1021150157, - "Guest_CC_Roach_RoachSteady_A_01": 859409247, - "Guest_Draconian-Caster-Yellow-Boss-R8": 1016221419, - "Guest_Draconian-Zombie-R8-2-1": 1226055265, - "Guest_Draconian-Zombie-R8-2": 1226115297, - "Guest_Draconian-Caster-Green-R7": 2143342719, - "Guest_Draconian-Warrior-Gold-Boss-R8": 1044388248, - "Guest_Draconian-Caster-Gray-R7": 95878769, - "Guest_DS-Boss-MAW": 1676071241, - "Guest_Draconian-Zombie-R8-1": 1226115309, - "Guest_Draconian-Warrior-Purple-Boss-R7": 601813964, - "Guest_Draconian-Caster-Tan-Boss-R7": 1973339532, - "Guest_Draconian-Caster-Blue-R6": 1684210173, - "Guest_Draconian-Caster-Yellow-R8": 2129956646, - "Guest_Draconian-Warrior-Red-R7": 521861944, - "Guest_Draconian-Warrior-Tan-R6": 1726416112, - "Guest_Draconian-Warrior-Purple-R8": 1896270341, - "Guest_Draconian-Caster-Blue-Boss-R7": 401581134, - "Guest_Draconian-Zombie-R8": 384497496, - "Guest_GH2-Draconian-HENCH-R10": 1149202878, - "Guest_GH2-Draconian-BOSS-R10": 2114378473, - "Guest_G14-DM-Draconian_Boss": 490246211, - "Guest_G14-DM-Draconian_Storm": 2035239226, - "Guest_G14-DM-Draconian_Ice": 782200563, - "Guest_G14-DM-Draconian_Malistaire_M": 1904691727, - "Guest_G14-DM-Draconian_Malistaire_S": 1904685583, - "Guest_G14-DM-Draconian_Malistaire_D": 1904700943, - "Guest_G14-DM-Draconian_Malistaire": 1904736751, - "Guest_G14-DM-Draconian_Malistaire_B": 1904702991, - "Guest_G14-DM-Draconian_Malistaire_I": 1904695823, - "Guest_G14-DM-Draconian_Malistaire_L": 1904692751, - "Guest_G14-DM-Draconian_Malistaire_F": 1904698895, - "Guest_Draconian-PW-Gauntlet-Boss": 493080513, - "Guest_CC_Draconian_A_01": 551348115, - "Guest_AZ-Parasaur-Undead-E": 2041242846, - "Guest_AZ-Parasaur-drkPriestF-F": 898239615, - "Guest_EM_Parasaur_DrkPriestF_A_01": 1007099606, - "Guest_EM_Parasaur_DrkPriestF_A_02": 1007099605, - "Guest_AZ-Parasaur-drkPriestF-D": 898501759, - "Guest_AZ-Parasaur-drkPriestF-E": 898370687, - "Guest_AZ-Parasaur-drkPriestF-A": 897846399, - "Guest_AZ-Parasaur-Undead-B": 1716853538, - "Guest_AZ-Parasaur-Undead-A": 106240802, - "Guest_AZ-Parasaur-Undead-G": 967501022, - "Guest_AZ-Parasaur-PriestF-D": 1177445525, - "Guest_AZ-Parasaur-Undead-C": 1179982626, - "Guest_AZ-Parasaur-drkPriestF-C": 897584255, - "Guest_AZ-Parasaur-Undead-SkurkisMinion": 1414766977, - "Guest_AZ-Parasaur-drkPriestF-B": 897715327, - "Guest_AZ-Parasaur-drkPriestF-B-Script": 1414847875, - "Guest_AZ_Parasaur_Priest_A_Boss_01": 890025421, - "Guest_AZ-Parasaur-Undead-D": 1504371934, - "Guest_AZ-Pteranodon-Knight-D": 1127364049, - "Guest_AZ-StoneSkeletonKey-Ixcax-Cursedwing": 699239601, - "Guest_AZ-Pteranodon-Knight-E": 1127363921, - "Guest_AZ-Pteranodon-Knight-F": 1127363793, - "Guest_AZ-Pteranodon-Knight-A-PageEvent": 942589002, - "Guest_AZ-StoneSkeletonKey-Minion-Death": 311645584, - "Guest_AZ-Pteranodon-Knight-A": 1127364433, - "Guest_AZ-Raptor-Wraith-A": 585729247, - "Guest_AZ-Raptor-Undead-D": 893623689, - "Guest_G14-HS-Ifzt": 1914694612, - "Guest_AZ-Raptor-Warrior-A": 855749884, - "Guest_AZ-Raptor-Undead-C": 897293705, - "Guest_AZ-Raptor-Undead-B": 896769417, - "Guest_AZ-Raptor-Undead-F": 894672265, - "Guest_AZ-Raptor-Warrior-F": 872527100, - "Guest_AZ-Raptor-Warrior-H": 973190396, - "Guest_AZ-Tritops-Warrior-I": 1942669769, - "Guest_AZ-Tritops-Undead-H": 1215305911, - "Guest_AZ-Tritops-Undead-E": 1164974263, - "Guest_AZ-Tritops-SpkWarrior-A": 860850257, - "Guest_AZ-Tritops-SpkWarrior-B": 860862545, - "Guest_AZ-Tritops-Undead-F": 1181751479, - "Guest_AZ-Tritops-Warrior-K": 868927945, - "Guest_AZ-Tritops-Undead-G": 1198528695, - "Guest_AZ-Tritops-Mummy-A": 1912444877, - "Guest_AZ-Tritops-Warrior-G": 1278555704, - "Guest_AZ-Tritops-Undead-D": 1148197047, - "Guest_AZ-Tritops-Undead-A": 1097865399, - "Guest_AZ-Tritops-SpkChief-B": 2096319577, - "Guest_AZ-Tritops-Mummy-B": 1910872013, - "Guest_AZ-Tritops-Warrior-H": 1405798857, - "Guest_AZ-Dino-Undead-A": 508678670, - "Guest_AZ-Dino-Undead-B": 508679182, - "Guest_AZ-Dino-Undead-D": 508680206, - "Guest_KR_Dino_Undead_A": 1638800628, - "Guest_KR_Dino_Undead_Minion_A": 892450235, - "MNT_HayRideTruck": 75377404, - "MNT_ShadowSpiderForm": 1439860426, - "Transformation_BG_Draconian_Death": 794598804, - "PP_BabyOrca": 1056061090, - "Transformation_BG_Cyclops_Fire": 638854828, - "Transformation_BG_Fairy_Ice": 874078461, - "PP_SpriteLife": 1824998010, - "PP_Raccoon": 1107326808, - "PP_FireKitten": 593048189, - "MNT_SkeletalDuck": 1306273036, - "PP_VampireSquid": 431023109, - "PP_CottonCandy": 891201813, - "PP_ThreeHeadGoat": 1282096939, - "PP_EyeBot": 260189248, - "MNT_DeathBoat": 1444454568, - "MNT_Lemuria": 908974762, - "MNT_DeathBoat_B": 1444456538, - "MNT_DeathBoat_C": 1444456474, - "MNT_Spooky3": 1667775622, - "MNT_PresentBox": 122082000, - "MNT_Orca": 1726961653, - "Guest_LM_Golem_Steel_A_01": 19551853, - "Guest_LM_Golem_Steel_A_02": 36329069, - "Guest_LM_EyeBot_A_01_Death": 380508535, - "Guest_LM_EyeBot_A_01_Myth": 167840640, - "PP_ThreeHeadGoat_B": 1209286443, - "PP_ThreeHeadGoat_C": 1211383595, - "Guest_KR_Eel_Whirligig_A": 1062268734, - "Guest_KR_Goliath_Behemoth_A": 1231139987, - "Guest_KR_Goliath_Behemoth_C": 1231139995, - "Guest_KR_Goliath_Behemoth_D": 1231139975, - "Guest_KR_Goliath_Behemoth_E": 1231139971, - "Guest_KR_Goliath_Behemoth_H": 1231140023, - "Guest_KR_Goliath_Crusher_C": 1651720060, - "Guest_KR_Goliath_Crusher_D": 2106376324, - "Guest_KR_Goliath_Crusher_F": 1032634500, - "Guest_KR_Goliath_Crusher_G": 495763588, - "Guest_KR_Goliath_Crusher_K": 1651720059, - "Guest_AZ-Goliath-Crusher-A": 1874784966, - "Guest_AZ-Goliath-Crusher-B": 264172230, - "Guest_AZ-Goliath-Crusher-C": 801043142, - "Guest_AZ-Goliath-Crusher-D": 809569594, - "Guest_AZ-Goliath-Crusher-E": 272698682, - "Guest_HG_AKT_Butterfly_Time_A_25": 1788523059, - "Guest_HG_AKT_Butterfly_Time_A_50": 1130017331, - "Guest_HG_AKT_Butterfly_Time_A_75": 1809494579, - "Guest_HG_AKT_Butterfly_Time_A_100": 1113240099, - "Guest_HG_AKT_Butterfly_Time_A_130": 1515893283, - "MNT_DeathBoat_D": 1444456922, - "Guest_KR_RhinoBeetle_Sun_A_Bossfight": 47895417, - "Guest_KR_RhinoBeetle_Star_A": 1947510103, - "Guest_KR_RhinoBeetle_Moon_A": 1751275863, - "Guest_ME1_Clockwork_Marine_A": 1481452452, - "Guest_ME1_Clockwork_Marine_B": 1481452068, - "Guest_CC_GoldSkeletonKey_Lice_DeepSpawn_B": 1306132994, - "Guest_KR_DamdinBazar_A_Bossfight": 1333596311, - "Guest_DS-Minion-MAW2": 356796677, - "Guest_KH-Wyrmling-1": 116330513, - "Guest_KH-Wyrmling-20": 183439385, - "Guest_KH-Wyrmling-40": 317657113, - "Guest_KH-Wyrmling-60": 451874841, - "Guest_KH-Wyrmling-80": 586092569, - "Guest_PL_Polar_Bear_Solider_C": 1785662565, - "Guest_Skeleton-Silver-WCBoss-L01": 17766963, - "Guest_Banshee-Red-Elite-L24_B": 1902069117, - "Transformation_BG_WolfWarrior_Myth": 339098032, - "Transformation_BG_RatThief_Balance": 881728218, - "Transformation_BG_Colossus_Storm": 593527492, - "Transformation_BG_Elf_Life": 347405087, - "Transformation_BG_Minotaur_Ice": 1197752291, - "MNT_TRex_B": 660285500, - "PP_SpriteDark_Ice": 2036248504, - "MNT_RollingBall": 1658139390, - "Guest_LM_TRex_Base_A_03": 1378630657, - "Guest_LM_TRex_Base_A_04": 1378745345, - "Guest_LM_TRex_Base_A_05": 1378728961, - "Guest_LM_TRex_Base_A_01": 1378663425, - "Guest_LM_TRex_Base_A_02": 1378647041, - "Guest_LM_TRex_Cyborg_A_01": 151609741, - "Guest_LM_TRex_Cyborg_A_02": 168386957, - "Guest_LM_TRex_Cyborg_A_03": 185164173, - "Guest_LM_TRex_Cyborg_B_01": 151611277, - "Guest_LM_TRex_Cyborg_D_01": 151612301, - "Guest_LM_TRex_Cyborg_E_01": 151611789, - "Guest_LM_TRex_Cyborg_C_01": 151610765, - "Guest_LM_Draconian_Base_A_01": 1607373112, - "Guest_LM_EyeBot_B_01": 1085543056, - "Guest_LM_Drone_Eye_C_01": 916954037, - "Guest_LM_Drone_Eye_D_01": 1230529608, - "Guest_LM_Drone_Eye_D_02": 1230545992, - "Guest_LM_Drone_Eye_D_04": 1230578760, - "Guest_LM_Drone_Eye_D_03": 1230562376, - "Guest_LM_Drone_Eye_A_01": 916954038, - "Guest_LM_Drone_Eye_A_02": 916937654, - "Guest_LM_Drone_Eye_B_01": 1230529611, - "Guest_LM_Drone_Eye_D_05": 1230595144, - "Guest_LM_Drone_Eye_D_07": 1230627912, - "Guest_LM_Drone_Eye_D_08": 1230644296, - "Guest_LM_Drone_Eye_A_03": 916921270, - "Guest_LM_Drone_Eye_A_04": 916904886, - "Guest_LM_Drone_Eye_C_02": 916937653, - "Guest_LM_EyeBot_B_02": 1061940593, - "Guest_LM_EyeBot_B_03": 1085543055, - "Guest_LM_EyeBot_B_04": 1061940594, - "Guest_LM_Drone_Eye_C_03": 916921269, - "Guest_LM_Robot_Kit10_A_01": 199936400, - "Guest_LM_Colossus_Mander_A_01": 2107529026, - "Guest_LM_Robot_Future_A_01": 998840846, - "Guest_LM_Robot_FutureBIG_A_01": 340408568, - "Guest_LM_Robot_FutureBIG_A_02": 340396280, - "Guest_LM_Robot_FutureBIG_A_03": 340400376, - "Guest_LM_Robot_OldOne_A_01": 779070973, - "Guest_LM_Robot_OldOne_A_02": 1315941885, - "Guest_LM_Millipede_Centi_A_01": 168575797, - "Guest_LM_Millipede_Centi_A_03": 168583989, - "Guest_LM_Millipede_Centi_A_02": 168588085, - "Guest_LM_Millipede_Centi_A_04": 168563509, - "Guest_LM_Moth_Sorcerer_A_01": 228191136, - "Guest_LM_Boar_Barbarian_A_01": 1238634912, - "Guest_LM_Boar_Barbarian_A_02": 1238634528, - "Guest_LM_Boar_Barbarian_A_03": 1238634656, - "Guest_LM_Boar_Barbarian_A_04": 1238635296, - "Guest_LM_Boar_Barbarian_A_05": 1238635424, - "Guest_LM_Boar_Chief_A_01": 357051311, - "Guest_LM_Fungus_Humango_A_01": 1398460044, - "Guest_LM_Fungus_Humango_A_02": 1398460172, - "Guest_LM_Treant_Base_A_01": 1658172241, - "Guest_LM_GiantTree_EvilRoots_A_01": 282225934, - "Guest_LM_PA_GreenMan_A_01": 67705044, - "Guest_LM_Fungus_Humango_B_01": 1348128396, - "Guest_LM_Fungus_Humango_A_03": 1398460300, - "Guest_LM_Fungus_Man_C_01": 1648824156, - "Guest_LM_Fungus_Man_C_02": 1650397020, - "Guest_LM_Rhino_Zombie_A_01": 248513993, - "Guest_LM_Malughast_Base_01": 883820436, - "Guest_LM_Malughast_Base_02": 1420691348, - "Guest_LM_Lemur_HierarchF_H_04": 231562115, - "Guest_LM_Malughast_Base_03": 1957562260, - "Guest_LM_Malughast_Base_05": 1263663212, - "Guest_LM_Malughast_Base_06": 726792300, - "Guest_LM_Malughast_Base_08": 346949523, - "Guest_LM_Malughast_Base_09": 883820435, - "Guest_LM_Malughast_Base_04": 1800534124, - "Guest_LM_Minotaur_Skeleton_A_01": 1865122824, - "Guest_LM_Lemur_Wild_B_03": 1783764037, - "Guest_LM_Lemur_HierarchF_H_01": 231541635, - "Guest_LM_Lemur_HierarchF_H_02": 231553923, - "Guest_LM_Mander_Warrior_A_01": 1651245419, - "Guest_LM_Mander_Warrior_A_02": 1651245291, - "Guest_LM_Mander_Warrior_B_01": 1634468203, - "Guest_LM_Mander_Warrior_B_02": 1634468075, - "Guest_LM_Mander_Warrior_A_03": 1651245163, - "Guest_LM_Mander_Warrior_B_03": 1634467947, - "Guest_LM_Mander_Warrior_A_06": 1651245803, - "Guest_LM_Mander_Warrior_A_05": 1651245931, - "Guest_LM_Mander_Mummy_B_01": 1844111521, - "Guest_LM_Mander_Hero_B_01": 865113284, - "MNT_HolidayHippogriff": 938892112, - "MNT_Sabertooth_Ice": 1870381696, - "PP_FenrisWolf_Bantam": 776647759, - "MNT_JetPack": 1986300552, - "MNT_Scooter_F": 1005560708, - "PP_FossaKitten_A": 431748212, - "PP_Elfvis": 147991405, - "Guest_LM_Chicken_Hero_A_01": 1308728300, - "Guest_LM_Horse_Explorer_A_01": 434405482, - "Guest_LM_Duck_HeroineF_A_01": 133199186, - "Guest_LM_Crane_Hero_A_01": 204272548, - "Guest_LM_Deer_HeroineF_A_01": 1800374959, - "Guest_LM_Deer_Hero_A_01": 223109503, - "Guest_LM_Dog_Hero_A_01": 1434615064, - "PP_YearTiger": 777048708, - "MNT_Barrel": 3576425, - "MNT_Krampus": 404117611, - "PP_ChineseTigerCub": 1256032005, - "PP_Lemur": 565774155, - "PP_Robot": 1089075331, - "PP_Capybara": 451970762, - "Guest_LM_Ghoul_Base_A_01": 1822415945, - "Guest_LM_Lemur_HierarchF_H_03": 231549827, - "Guest_LM_Ghoul_Base_A_02": 1820843081, - "Guest_LM_Ghoul_Base_A_03": 1821367369, - "MNT_SpringSoF2022": 1685679511, - "MNT_WarElephant": 875015497, - "PP_Strix": 514230046, - "MNT_Beachball": 791896033, - "MNT_Blank": 633398131, - "MNT_CardboardFlier": 1646636689, - "MNT_LochMonster": 879660722, - "Transformation_BG_Krok_Death": 1395067182, - "Transformation_BG_Draconian_Fire": 1551581732, - "PP_Scotty": 1708580475, - "Guest_KR_Mice_Knight_A": 480101508, - "PP_Peacock": 1178721112, - "MNT_PoodleMoth": 975420235, - "PP_Hummingbird": 624666906, - "PP_WolfWarrior_Myth": 470737416, - "Guest_HG_UFD_Ghost_QueenF_A_100": 795323059, - "Guest_HG_UFD_Ghost_QueenF_A_50": 728230579, - "Guest_HG_UFD_Pirate_UndeadHighland_A_Balance_150": 201145133, - "Guest_HG_UFD_Pirate_UndeadHighland_A_Balance_100": 201144941, - "Guest_HG_UFD_Pirate_UndeadHighland_A_Balance_50": 201177701, - "Guest_HG_UFD_Pirate_UndeadHighland_A_Star_150": 1329885920, - "Guest_HG_UFD_Pirate_UndeadHighland_A_Star_100": 1304720096, - "Guest_HG_UFD_Pirate_UndeadHighland_A_Star_50": 1305768671, - "Guest_HG_UFD_Pirate_UndeadHighland_A_Shadow_150": 1263689971, - "Guest_HG_UFD_Pirate_UndeadHighland_A_Shadow_100": 1263689977, - "Guest_HG_UFD_Pirate_UndeadHighland_A_Shadow_50": 189949177, - "Guest_HG_UFD_Kelpie_Warrior_A_150": 54296095, - "Guest_HG_UFD_Kelpie_Warrior_A_100": 725384735, - "Guest_HG_UFD_Kelpie_Warrior_A_50": 708607503, - "Guest_HG_UFD_Pirate_UndeadHighland_B_150": 1099317831, - "Guest_HG_UFD_Pirate_UndeadHighland_B_100": 25576008, - "Guest_HG_UFD_Pirate_UndeadHighland_B_50": 159793864, - "Guest_HG_UFD_Ghost_QueenF_A_150": 795716275, - "PP_SpiderMinion": 557357331, - "MNT_Vines_Rainbow": 1587180338, - "MNT_YoungDrake": 1279496198, - "PP_Pet_Coconut": 444388490, - "DragonKI": 1490194214, - "PP_Sharkfish": 601628284, - "PP_MimicCake": 48071878, - "Guest_AQ-Bronze-Eagle": 375279744, - "Guest_Spider-Brown-L26": 2128680185, - "Guest_KR_Spider_Giant_D": 744401035, - "Guest_Wizard-Female-Band-Blue-R8": 1447486557, - "Guest_CC_Human_DSCrusaderF_A_01": 726538068, - "Guest_WC_Scarecrow_A_01": 867491011, - "Guest_WC_Banshee_A_01": 1433786463, - "Guest_WC_LostSoul_A_01": 796936146, - "PP_Fairy_Myth": 1117624344, - "PP_SpriteDark_Myth": 1884257976, - "BG_CyclopsLife_A": 944091673, - "Transformation_BG_NinjaPig_Storm": 2005137181, - "Transformation_BG_Fairy_Myth": 1880704188, - "Transformation_BG_Cyclops_Life": 638936708, - "Guest_AQ-Eagle-Praetorian": 1988013806, - "Guest_KM_BabyCarrot_A_01": 766239512, - "Guest_G14-DM-Gargoyle": 282898047, - "Guest_MR_Durvish_Sergeant_A_Boss_01": 1532609325, - "Guest_Cyclops-RedHelmet-KTBoss-L28": 2072371506, - "Guest_EM_Pig_Singer_A_01": 698597069, - "Guest_EM_Pig_Captain_A": 977505995, - "Guest_EM_Pig_Crewman_A": 465576459, - "PP_ChipmunkConductor": 1089819900, - "PP_LuckyCat": 1109326826, - "MNT_ImpCar": 1736092191, - "MNT_Book": 1547655078, - "MNT_JackoLantern": 649919658, - "MNT_Zheng": 742453108, - "MNT_Train": 413197899, - "MNT_Cerberus": 552686313, - "PP_Coconut": 1122741587, - "Transformation_Statue": 1153168084, - "Transformation_Nullity": 622504394, - "PP_Irk": 1825277392, - "Guest_Wyrmling-Fire-R8-1": 531485009, - "MNT_WolfLowPoly_A": 1947890962, - "MNT_WolfLowPoly_B": 1947825426, - "Transformation_BG_RatThief_Fire": 1169330235, - "Transformation_BG_WolfWarrior_Death": 159966683, - "Transformation_BG_Minotaur_Balance": 657855108, - "Transformation_BG_Draconian_Ice": 1907339814, - "Transformation_BG_Colossus_Myth": 1305894338, - "Transformation_NV_Penguin": 1757096851, - "Transformation_NV_Unicorn": 60447768, - "Transformation_NV_Monkey": 1379873688, - "Transformation_NV_Dog": 1961288968, - "PP_Wolf_Storm": 455227171, - "PP_WoodDuck": 1680912895, - "MNT_RockingHorse": 1205280059, - "MNT_SOF2022_Car": 219868812, - "PP_Buffaloon": 796152873, - "MNT_Steamboat": 1969530127, - "MNT_FelizNavidog": 847046394, - "PP_Mustache": 1571079379, - "Guest_DD-DS01-Skeleton-Pirate-20": 226826848, - "Guest_DD-DS01-Skeleton-Pirate-40": 201661024, - "Guest_DD-DS01-Skeleton-Pirate-60": 210049632, - "Guest_DD-DS01-Skeleton-Pirate-80": 251992672, - "Guest_DD-DS01-Skeleton-Pirate": 1994450336, - "Guest_DD-DS01-Shadow-Minion-Fire": 1074864956, - "Guest_DD-DS01-Shadow-Minion-Ice": 1841681214, - "Guest_DD-DS01-Shadow-Minion-Fire-20": 1074880881, - "Guest_DD-DS01-Shadow-Minion-Fire-40": 1074880945, - "Guest_DD-DS01-Shadow-Minion-Ice-20": 96850220, - "Guest_DD-DS01-Shadow-Minion-Ice-40": 96850218, - "Guest_DD-DS01-Shadow-Minion-Fire-60": 1074881009, - "Guest_DD-DS01-Shadow-Minion-Ice-60": 96850216, - "Guest_DD-DS01-Shadow-Minion-Fire-80": 1074880561, - "Guest_DD-DS01-Shadow-Minion-Ice-80": 96850214, - "Guest_SC-SpectreOfB-1": 1471950935, - "Guest_SC-SpectreOfB-20": 1471942759, - "Guest_SC-SpectreOfB-40": 1471942663, - "Guest_SC-SpectreOfB-60": 1471942695, - "Guest_SC-SpectreOfB-80": 1471942855, - "Guest_KH-Skeleton-Ice-60": 2108358962, - "Guest_KH-Skeleton-Ice-40": 2108391730, - "Guest_KH-Skeleton-Ice-20": 2108293426, - "Guest_KH-Skeleton-Ice-1": 2099953970, - "Guest_KH-Skeleton-Ice-80": 2108195122, - "Guest_KH-Undead-Caster-60": 1662604496, - "Guest_KH-Undead-Caster-40": 1661555920, - "Guest_KH-Undead-Caster-20": 1664701648, - "Guest_KH-Undead-Caster-1": 1931564240, - "Guest_KH-Undead-Caster-80": 1667847376, - "Guest_DD-PA01-DeadBeets": 1664999367, - "Guest_DD-PA01-DeadBeets-20": 1901453253, - "Guest_DD-PA01-DeadBeets-40": 2002116549, - "Guest_DD-PA01-DeadBeets-60": 1968562117, - "Guest_DD-PA01-DeadBeets-80": 2069225413, - "Guest_DD-PA01-Disparagus": 1865816461, - "Guest_DD-PA01-Disparagus-20": 573970895, - "Guest_DD-PA01-Disparagus-40": 499770929, - "Guest_DD-PA01-Disparagus-60": 1573512753, - "Guest_DD-PA01-Disparagus-80": 1647712718, - "Guest_DD-PA01-MeanestFlyTrap": 2001546861, - "Guest_DD-PA01-MeanestFlyTrap-20": 1936326253, - "Guest_DD-PA01-MeanestFlyTrap-40": 1936064109, - "Guest_DD-PA01-MeanestFlyTrap-60": 1935801965, - "Guest_DD-PA01-MeanestFlyTrap-80": 1937636973, - "Guest_HG-MD-MacDeath-20": 182639104, - "Guest_HG-MD-MacDeath-40": 182638080, - "Guest_HG-MD-MacDeath-60": 182637056, - "Guest_HG-MD-MacDeath-80": 182636032, - "Guest_HG-MD-MacDeath-100": 174252032, - "Guest_HG-MD-MacDeath-130": 174202880, - "Guest_HG_Sinbad_Skeleton_25": 494617874, - "Guest_HG_Sinbad_Skeleton_50": 42253050, - "Guest_HG_Sinbad_Skeleton_75": 1115994862, - "Guest_HG_Sinbad_Skeleton_100": 2105232646, - "Guest_HG_Sinbad_Skeleton_130": 2105232650, - "Guest_HG_Sinbad_Skeleton_25_02": 492722834, - "Guest_HG_Sinbad_Skeleton_50_02": 44148090, - "Guest_HG_Sinbad_Skeleton_75_02": 1117889902, - "Guest_HG_Sinbad_Skeleton_100_02": 2044247302, - "Guest_HG_Sinbad_Skeleton_130_02": 2044247306, - "Guest_DD-AV01-WyrmBoss": 1648677986, - "Guest_DD-AV01-WyrmBoss-20": 1926730850, - "Guest_DD-AV01-WyrmBoss-40": 1927779426, - "Guest_DD-AV01-WyrmBoss-60": 1928828002, - "Guest_DD-AV01-WyrmBoss-80": 1921487970, - "Guest_RH-Wyrm-Boss-01": 1027277645, - "Guest_RH-Wyrm-Boss-20": 1027277660, - "Guest_RH-Wyrm-Boss-40": 1027277663, - "Guest_RH-Wyrm-Boss-60": 1027277662, - "Guest_RH-Wyrm-Boss-80": 1027277657, - "Guest_HG_Sinbad_Wyrm_25": 1101443356, - "Guest_HG_Sinbad_Wyrm_50": 1101528860, - "Guest_HG_Sinbad_Wyrm_75": 1101445916, - "Guest_HG_Sinbad_Wyrm_100": 1093138204, - "Guest_HG_Sinbad_Wyrm_130": 1093089052, - "Guest_KH-Treant-1": 2001244331, - "Guest_KH-Treant-60": 1968148651, - "Guest_KH-Treant-40": 1968017579, - "Guest_KH-Treant-20": 1967886507, - "Guest_KH-Treant-80": 1967231147, - "Guest_DD-PA01-ForestGrump": 1969685870, - "Guest_DD-PA01-ForestGrump-20": 714666713, - "Guest_DD-PA01-ForestGrump-40": 714666689, - "Guest_DD-PA01-ForestGrump-60": 714666697, - "Guest_DD-PA01-ForestGrump-80": 714666737, - "Guest_DD-PA01-ForestNymphs": 227087348, - "Guest_DD-PA01-ForestNymphs-20": 227023552, - "Guest_DD-PA01-ForestNymphs-60": 227023040, - "Guest_DD-PA01-ForestNymphs-80": 227024832, - "Guest_SC-Pig-BalanceWizardA-1": 475456968, - "Guest_SC-Pig-BalanceWizardA-20": 477550024, - "Guest_SC-Pig-BalanceWizardA-40": 477541832, - "Guest_SC-Pig-BalanceWizardA-60": 477533640, - "Guest_SC-Pig-BalanceWizardA-80": 477525448, - "Guest_SC-Pig-BalanceWizardB-1": 475456964, - "Guest_SC-Pig-BalanceWizardB-20": 477550020, - "Guest_SC-Pig-BalanceWizardB-40": 477541828, - "Guest_SC-Pig-BalanceWizardB-60": 477533636, - "Guest_SC-Pig-BalanceWizardB-80": 477525444, - "Guest_SC-Pig-BalanceWizardC-1": 475456960, - "Guest_SC-Pig-BalanceWizardC-20": 477550016, - "Guest_SC-Pig-FireWizard-1": 2048176291, - "Guest_SC-Pig-FireWizard-20": 2031399073, - "Guest_SC-Pig-FireWizard-40": 2132062369, - "Guest_SC-Pig-FireWizard-60": 2098507937, - "Guest_SC-Pig-FireWizard-80": 1930735777, - "Guest_SC-Pig-IceWizardF-1": 1178687744, - "Guest_SC-Pig-IceWizardF-20": 1161910526, - "Guest_SC-Pig-IceWizardF-40": 1128356094, - "Guest_SC-Pig-IceWizardF-60": 1094801662, - "Guest_SC-Pig-IceWizardF-80": 1329682686, - "Guest_SC-Pig-MythWizard-1": 2048492725, - "Guest_SC-Pig-MythWizard-20": 2031715511, - "Guest_SC-Pig-MythWizard-40": 2132378807, - "Guest_SC-Pig-MythWizard-60": 2098824375, - "Guest_SC-Pig-MythWizard-80": 1931052215, - "Guest_SC-Pig-StormWizardF-1": 1743849420, - "Guest_SC-Pig-StormWizardF-20": 1743851464, - "Guest_SC-Pig-StormWizardF-40": 1743851488, - "Guest_SC-Pig-StormWizardF-60": 1743851480, - "Guest_SC-Pig-StormWizardF-80": 1743851504, - "Guest_KH-Pig-Bandit-Lord-1": 1080496628, - "Guest_KH-Pig-Bandit-Lord-20": 543625652, - "Guest_KH-Pig-Bandit-Lord-40": 530116172, - "Guest_KH-Pig-Bandit-Lord-60": 1603857996, - "Guest_KH-Pig-Bandit-Lord-80": 1617367475, - "Guest_KH-Pig-Bandit-Ninja-1": 1945100907, - "Guest_KH-Pig-Bandit-Ninja-20": 1945102951, - "Guest_KH-Pig-Bandit-Ninja-40": 1945102975, - "Guest_KH-Pig-Bandit-Ninja-60": 1945102967, - "Guest_KH-Pig-Bandit-Ninja-80": 1945102927, - "Guest_KH-Pig-War-Caster-1": 656859765, - "Guest_KH-Pig-War-Caster-20": 606528119, - "Guest_KH-Pig-War-Caster-40": 572973687, - "Guest_KH-Pig-War-Caster-60": 539419255, - "Guest_KH-Pig-War-Caster-80": 774300279, - "Guest_KH-Pig-War-Warrior-Boss-1": 16342355, - "Guest_KH-Pig-War-Warrior-Boss-20": 2143724205, - "Guest_KH-Pig-War-Warrior-Boss-40": 2118558381, - "Guest_KH-Pig-War-Warrior-Boss-60": 2126946989, - "Guest_KH-Pig-War-Warrior-Boss-80": 2101781165, - "Guest_SC-Pig-BalanceWizardC-40": 477541824, - "Guest_SC-Pig-BalanceWizardC-60": 477533632, - "Guest_SC-Pig-BalanceWizardC-80": 477525440, - "Guest_KH-Helephant-Death-20": 1109389719, - "Guest_KH-Helephant-Death-40": 2111835753, - "Guest_KH-Helephant-Death-60": 1038093929, - "Guest_KH-Helephant-Death-80": 35647896, - "Guest_KH-GreyOgre-Spider-1": 356368404, - "Guest_KH-GreyOgre-Spider-20": 1966981204, - "Guest_KH-GreyOgre-Spider-40": 1254244268, - "Guest_KH-GreyOgre-Spider-60": 180502444, - "Guest_KH-GreyOgre-Spider-80": 893239379, - "Guest_HG_Sinbad_Colossus_25": 1190802829, - "Guest_HG_Sinbad_Colossus_50": 1493551719, - "Guest_HG_Sinbad_Colossus_75": 419809907, - "Guest_HG_Sinbad_Colossus_100": 653933977, - "Guest_HG_Sinbad_Colossus_130": 653933973, - "Guest_NV_Dino_AberrantUndead_A_01": 2035087398, - "Guest_NV_Hellephant_Aberrant_A_01": 989522333, - "Guest_NV_Hellephant_Aberrant_A_02": 989522334, - "Guest_NV_BananaSpider_Base_A_01": 1585810541, - "Guest_NV_BananaSpider_Base_A_02": 1581616237, - "Guest_NV_BananaSpider_Base_A_03": 1577421933, - "Guest_NV_BananaSpider_Base_A_04": 1606782061, - "Guest_NV_BananaSpider_Base_A_05": 1602587757, - "Guest_NV_Wyrm_Aberrant_A_01": 16108415, - "Guest_NV_Monkey_Zombie_A_01": 1854775300, - "Guest_NV_Monkey_Zombie_A_02": 1854775304, - "Guest_NV_Monkey_Zombie_A_03": 1854775308, - "Guest_NV_Monkey_Zombie_A_04": 1854775312, - "MNT_Flag_Monster": 867940056, - "Guest_SKB_WY_DarkBramble_A_30": 2046798767, - "Guest_SKB_WY_DarkBramble_A_50": 2046797999, - "Guest_SKB_WY_DarkBramble_A_100": 2044701359, - "Guest_SKB_WY_DarkBramble_A_150": 2044721839, - "Guest_SKB_GH_Boar_A_30": 1547921275, - "Guest_SKB_WC_SpiritIgnorance_A_50": 1488876986, - "Guest_SKB_WC_SpiritIgnorance_A_100": 2025748410, - "Guest_SKB_WC_SpiritIgnorance_A_150": 2025748413, - "Guest_SKB_DS_Loremaster_A_50": 527751539, - "Guest_SKB_DS_Loremaster_A_100": 527817059, - "Guest_SKB_DS_Loremaster_A_150": 527817699, - "Guest_SKB_CL_Dan_A_50": 637418706, - "Guest_SKB_CL_Dan_A_60": 1510064941, - "Guest_SKB_CL_Dan_A_100": 637410512, - "Guest_SKB_CL_Dan_A_150": 637410432, - "Guest_SKB_AV_Spectre_A_50": 2104631195, - "Guest_SKB_AV_Spectre_A_100": 2102534041, - "Guest_SKB_AV_Spectre_A_150": 2018647961, - "Guest_SKB_MS_Samoorai_A_50": 2029641915, - "Guest_SKB_MS_Samoorai_A_100": 2096750843, - "Guest_SKB_MS_Samoorai_A_150": 587603717, - "Transformation_BG_Krok_StromTemplate": 1317694546, - "PP_ChineseRabbit": 382941643, - "PP_ParadeElf": 1036247808, - "MNT_HeartSwarm": 918199310, - "MNT_SpringSOF2023": 1417178519, - "Transformation_BG_Elf_Death2Template": 1606653101, - "MNT_GummyBunny_D": 775840224, - "Transformation_BG_Krok_Life2Template": 747486212, - "PP_Flame": 959186933, - "PP_YachtRock": 1500927358, - "PP_PirateYachtRock": 1227549100, - "PP_ChickenMonster": 1845706534, - "PP_SnowHoppers_B": 1496460038, - "PP_SnowHoppers_C": 1496457990, - "MNT_Oarfish": 29720265, - "PP_RingTailedCat": 993143427, - "MNT_Fanboat": 19347694, - "MNT_MiniSub": 298697910, - "PP_DumboOctopus": 966435639, - "PP_Glowbug_Balance": 1405529577, - "PP_Glowbug_Death": 405117107, - "PP_Glowbug_Fire": 651698987, - "PP_Glowbug_Ice": 2124926395, - "PP_Glowbug_Life": 601367299, - "PP_Glowbug_Myth": 592978024, - "PP_Glowbug_Storm": 61190446, - "PP_DumboOctopus_B": 968448823, - "PP_DumboOctopus_C": 968383287, - "PP_BananaSpider_01": 1074383522, - "PP_BananaSpider_02": 1080674978, - "PP_BananaSpider_03": 1078577826, - "Guest_HG_NM_BeardDragon_Base_C_01": 82913785, - "Guest_HG_NM_BeardDragon_Base_C_02": 82913786, - "Guest_HG_NM_BeardDragon_Base_C_03": 82913787, - "Guest_HG_NM_Glowbug_Base_C_01": 544959703, - "Guest_HG_NM_Glowbug_Base_C_02": 544955607, - "Guest_HG_NM_Glowbug_Base_C_03": 544951511, - "Guest_HG_NM_Glowbug_Base_C_04": 544947415, - "Guest_HG_NM_Glowbug_Base_C_05": 544943319, - "Guest_HG_NM_Glowbug_Base_C_06": 544939223, - "Guest_HG_NM_Glowbug_Base_C_07": 544935127, - "MNT_BouquetofFlowers": 1511180560, - "PP_Piggle_Rainbow": 91081383, - "MNT_Sabertooth_FlameSaber": 1949516909, - "Guest_HG_NM_BeardDragon_Base_A_01": 83175929, - "Guest_HG_NM_BeardDragon_Base_A_02": 83175930, - "Guest_HG_NM_BeardDragon_Base_A_03": 83175931, - "Guest_HG_NM_BeardDragon_Base_B_01": 83044857, - "Guest_HG_NM_BeardDragon_Base_B_02": 83044858, - "Guest_HG_NM_BeardDragon_Base_B_03": 83044859, - "Guest_HG_NM_Glowbug_Base_B_01": 8088791, - "Guest_HG_NM_Glowbug_Base_B_02": 8084695, - "Guest_HG_NM_Glowbug_Base_B_03": 8080599, - "Guest_HG_NM_Glowbug_Base_B_04": 8076503, - "Guest_HG_NM_Glowbug_Base_B_05": 8072407, - "Guest_HG_NM_Glowbug_Base_B_06": 8068311, - "Guest_HG_NM_Glowbug_Base_B_07": 8064215, - "Guest_HG_NM_Glowbug_Base_A_01": 1618701527, - "Guest_HG_NM_Glowbug_Base_A_02": 1618697431, - "Guest_HG_NM_Glowbug_Base_A_03": 1618693335, - "Guest_HG_NM_Glowbug_Base_A_04": 1618689239, - "Guest_HG_NM_Glowbug_Base_A_05": 1618685143, - "Guest_HG_NM_Glowbug_Base_A_06": 1618681047, - "Guest_HG_NM_Glowbug_Base_A_07": 1618676951, - "MNT_SummerSOF2023": 1636120912, - "PP_Cyclops_Fire": 7821755, - "PP_Death_Elf": 1535744155, - "PP_Newt": 1438123483, - "PP_Echidna": 735439358, - "MNT_Wombat": 580544786, - "Transformation_BG_NinjaPig_Balance": 1799661438, - "Transformation_BG_Cyclops_Ice": 647975824, - "Transformation_BG_Minotaur_Storm": 1005667041, - "Transformation_GR_Parasaur_Priest_Ice": 1101466351, - "Transformation_GR_Parasaur_Priest_Fire": 892193041, - "Transformation_GR_Parasaur_Priest_Storm": 1525882116, - "Transformation_GR_Parasaur_Priest_Balance": 1127637476, - "Guest_GR_AZ_Parasaur_Undead_B_01": 322587487, - "MNT_WitchCat": 1167097888, - "PP_RolyPoly": 578538330, - "PP_Capybara_B": 628131532, - "MNT_OutbackTruck": 1815527801, - "PP_PoodleSailor": 2137704795, - "MNT_PolarianCannon": 2103490826, - "PP_TazmanianDevil": 1773548765, - "Guest_SKB_AZ_Ixcax_A_100": 556560994, - "Guest_SKB_AZ_Ixcax_A_150": 556610146, - "Guest_SKB_AZ_Ixcax_A_50": 564951650, - "MNT_GhoulsShovel": 2035610946, - "PP_CrystalBdayDragon": 1897078804, - "PP_SunGobblerBall": 1522469440, - "PP_Sun_GreenGobbler": 1337690394, - "MNT_2P_AutumnTreant": 1063435527, - "PP_AutumnTreant": 561077291, - "MNT_FlyingMonkey": 490807393, - "PP_BabyPlantMonster": 2076646587, - "MNT_PlantCreature_A": 1802823265, - "Transformation_BG_Fairy_Fire": 2065252898, - "Transformation_BG_Krok_Myth": 277926564, - "Transformation_BG_RatThief_Life": 1167758651, - "Transformation_BG_Elf_Balance": 1628238937, - "Transformation_BG_Colossus_Death": 184392004, - "Transformation_FortressPod": 139738335, - "P_Wombat_POLYMORPH": 1132264953, - "PP_SharkWobbegong": 1994247222, - "PP_ChineseNYDragon": 1126999021, - "PP_JingleBellRock": 1076037919, - "PP_Krok_Mummy_Myth": 438487583, - "PP_Cyclops_Ice": 1476966187, - "MNT_OutbackTruckB": 1813299577, - "MNT_EvilSnowmanBall": 758818712, - "MNT_ThanksgivingGobbler": 1760011910, - "Guest_WL_Ghost_LostSoul_A_01": 1224111704, - "Guest_WL_Kangaroo_Drover_F_01": 2025562931, - "Guest_WL_Spider_WarriorMage_C_01": 1296557888, - "Guest_WL_Spider_WarriorMage_C_02": 1430775616, - "Guest_WL_Spider_WarriorMage_C_03": 1564993344, - "Guest_WL_Spider_WarriorMage_C_04": 1699211072, - "Guest_WL_Spider_WarriorMage_C_05": 1833428800, - "Guest_WL_Spider_WarriorMage_C_06": 1967646528, - "Guest_WL_Spider_WarriorMage_C_07": 2101864256, - "Guest_SKB_KR_Lightbane_A_100": 837930677, - "Guest_SKB_KR_Lightbane_A_160": 837930669, - "Guest_SKB_KR_Lightbane_A_50": 1309555019, - "Transformation_WL_Phantasmanian_DevilTemplate": 384891502, - "MNT_2P_LeaflessTreant": 623083386, - "PP_Minotaur_Ice": 700151737, - "MNT_Scooter_G": 737125252, - "Guest_WL_Frog_Owner_B_01": 767864686, - "MNT_SilentKnight": 646654812, - "Guest_WL_TRex_Base_A_01": 1842562033, - "Guest_WL_TRex_Base_B_01": 304921616, - "PP_Groundhog": 108643243, - "Guest_NV_Unicorn_Guard_C_04": 1845621, - "MNT_EmuPunk": 647315080, - "MNT_HeartBalloon": 798826551, - "PP_ValentineHoppers": 968693964, - "MNT_SpringSOF2024_Heckhound": 453640548, - "Guest_AQ-Centaur-Arion": 1856508139, - "Guest_AQ-Centaur-Artemis": 333294011, - "Guest_AQ-Horse-Sea": 724896200, - "Guest_KR_Horse_Warlord_A_Bossfight": 1302284326, - "Guest_KR_Horse_Warlord_A_BossfightSP": 1300726822, - "Guest_KR_Zebra_Thrall_A": 1250265667, - "Guest_KR_Zebra_Thrall_A_Boss_Minion": 345677011, - "Guest_KR_Zebra_Thrall_A_Gallery": 1520303483, - "Guest_KH-Gray-Horse-40": 1802231403, - "Guest_KH-Gray-Horse-20": 1802231307, - "Guest_G14-BP-Unicorn_Fencer_Boss": 1602044152, - "Guest_Horse-Merc-Brown-L37": 1831175255, - "Guest_Horse-Merc-Tan-L39": 1363854837, - "Guest_Horse-Merc-Tan-L39-1": 2085275127, - "Guest_Horse-Merc-Gray-MSBoss-L39": 1863452041, - "Guest_Horse-Merc-Gray-L39": 2039135564, - "Guest_Horse-Merc-Tan-L38": 1363330549, - "Guest_WC_Horse_Mercenary_Roberto": 891924774, - "Guest_ZF-Nathi-Yellowstripe-R11": 1505157721, - "Guest_ZF-TseTse-Main-R11-Boss": 114927854, - "Guest_ZF-TseTse-Elephant-R11": 894147273, - "Guest_ZF-Zebra-Impi-Raider-R11": 1378242919, - "Guest_ZF-Zebra-Warrior-Male-R10-1": 1791906265, - "Guest_ZF-Zebra-Senzan-Zebu-R10-Boss": 373712721, - "Guest_ZF-Zebra-Shaka-Zebu-R10-Boss": 662142985, - "Guest_ZF-Zebra-Warrior-Female-R10-02": 1507835670, - "Guest_ZF-Zebra-Warrior-Male-R10": 47075786, - "Guest_ZF-Zebra-Warrior-Male-R10-02": 1791906714, - "Guest_ZF-Zebra-Warrior-Male-R10-03": 1791906746, - "Guest_ZF-Zebra-Warrior-Male-R10-05": 1791906682, - "Guest_ZF-Zebra-Warrior-Male-R10-2": 1791906268, - "Guest_ZF_Zebra_Spectral_Guardian-R11": 431970996, - "Guest_CC_Horse_Apoc_A_01": 644668374, - "Guest_CC_Horse_Apoc_B_01": 644668390, - "Guest_CC_Horse_Apoc_C_01": 644668406, - "Guest_CC_Horse_Apoc_D_01": 644668294, - "Guest_CC_Horse_Apoc_D_02": 645192582, - "Guest_CC_Unicorn_CorsairF_B_01": 1378532506, - "Guest_CC_Unicorn_Duelist_B_01": 64891542, - "Guest_CC_Unicorn_Guard_B_01": 1075063242, - "Guest_CC_Unicorn_Guard_B_02": 1075063238, - "Guest_CC_Unicorn_Guard_B_03": 1075063234, - "Guest_NV_Horse_HordeSoldier_A_01": 504396960, - "Guest_NV_Horse_HordeSoldier_A_02": 101743776, - "Guest_NV_Horse_HordeOfficer_A_01": 343600992, - "Guest_NV_Horse_HordeSoldier_A_03": 235961504, - "Guest_NV_Horse_HordeOfficer_A_02": 209383264, - "Guest_NV_Horse_AberrantTungAk_A_01": 952263441, - "Guest_NV_Horse_AberrantTungAk_A_02": 952263537, - "Guest_NV_Horse_TungAk_B_01": 1194718672, - "Guest_NV_Horse_TungAk_B_02": 657847760, - "Guest_NV_Horse_HordeOfficer_B_01": 343596896, - "Guest_NV_Horse_HordeOfficer_B_02": 209379168, - "Guest_NV_Horse_TungAk_A_01": 1194669520, - "Guest_NV_Unicorn_Guard_C_01": 1845601, - "Guest_NV_Unicorn_Guard_A_01": 797025, - "Guest_NV_Unicorn_AberrantGuard_A_01": 739851573, - "Guest_NV_Unicorn_Guard_C_02": 1845613, - "Guest_NV_Unicorn_Guard_C_03": 1845609, - "Guest_NV_Unicorn_AberrantGuard_A_02": 739848501, - "Guest_NV_Unicorn_Guard_A_02": 797037, - "Guest_NV_Unicorn_AberrantGuard_A_03": 739849525, - "Guest_NV_Unicorn_AberrantGuard_A_04": 739846453, - "Guest_NV_Horse_HordeOfficer_A_03": 75165536, - "Guest_NV_Horse_HordeSoldier_A_04": 907050144, - "Guest_NV_Horse_HordeSoldier_A_05": 1041267872, - "Guest_NV_Horse_HordeSoldier_C_01": 504388768, - "Guest_HG_TRAIN_Horse_MustangFencerF_A_Balance_50": 871182987, - "Guest_HG_TRAIN_Horse_MustangFencerF_A_Balance_75": 871176715, - "Guest_HG_TRAIN_Horse_MustangFencerF_A_Life_100": 886489645, - "Guest_HG_TRAIN_Horse_MustangFencerF_A_Balance_25": 871177035, - "Guest_HG_TRAIN_Horse_MustangFencerF_A_Balance_100": 872231819, - "Guest_HG_TRAIN_Horse_MustangFencerF_A_Life_140": 1960231469, - "Guest_HG_TRAIN_Horse_MustangFencerF_B_100": 2089957067, - "Guest_HG_TRAIN_Horse_MustangFencerF_A_Life_25": 1700184589, - "Guest_HG_TRAIN_Horse_MustangFencerF_A_Life_50": 920044045, - "Guest_HG_TRAIN_Horse_MustangFencerF_A_Life_75": 1742127629, - "Guest_HG_TRAIN_Horse_MustangFencerF_A_Balance_140": 872223627, - "Guest_HG_TRAIN_Horse_MustangFencerF_B_50": 2089952970, - "Guest_HG_TRAIN_Horse_MustangFencerF_B_75": 57530654, - "Guest_HG_TRAIN_Horse_MustangFencerF_B_140": 2089957099, - "Guest_HG_TRAIN_Horse_MustangFencerF_B_25": 1131272477, - "Guest_LM_Horse_Explorer_A_01_Hard": 1711837140, - "Guest_WL_Unicorn_Guard_A_01": 1074538935, - "Guest_WL_Unicorn_CorsairF_E_01": 1378532603, - "Guest_WL_Unicorn_Warlord_A_01": 1321310496, - "Guest_KH-Gray-Horse-1": 1802239547, - "Guest_KH-Gray-Horse-60": 1802231371, - "Guest_KH-Gray-Horse-80": 1802231467, - "Transformation_BG_NinjaPig_Ice": 186026527, - "Transformation_BG_Cyclops_Storm": 897316984, - "PP_MinotaurBalance": 1344665951, - "PP_OrthusMoon": 1804503950, - "PP_CoolPineapple": 1149318906, - "PP_TwinkleStars": 766378011, - "PP_Scroll": 1613313091, - "PP_Colossus_Death": 40713075, - "PP_ColossusDeath": 530964029, - "PP_KILiveRock": 1975550570, - "MNT_Outrigger": 1417937299, - "MNT_BookWyrm": 2080129190, - "MNT_RacingSnail": 1996220963, - "MNT_UmbrellaCloud": 145762615, - "PP_PropellerCat": 2094718580, - "MNT_TRex_Shirt": 586746001, - "MNT_Swarm_Bee": 1625228695, - "MNT__CelestialMoon": 968360256, - "Guest_ME_Sinbad_IronSultan_150": 2001676223, - "Guest_ME_Sinbad_Cyclops_150": 1968943689, - "Guest_ME_Sinbad_Skeleton_150": 1031490819, - "Guest_ME_Sinbad_Colossus_150": 1727675806, - "Guest_ME_Sinbad_Skeleton_150_02": 970505475, - "Guest_ME_Sinbad_Wyrm_150": 19314443, - "Guest_ZF-Zebra-Inzinzebu-Bandit-R11": 430262550, - "Guest_ZF-Zebra-Warrior-Male-R10-04": 1791906650, - "PP_TwinkleStars_02": 805304347, - "PP_TwinkleStars_03": 803207195, - "PP_TwinkleStars_01": 799012891, - "Transformation_BodleianHarrow": 609627870, - "Guest_HG_Gryphon_OwlStatue_A_01_L170": 77756046, - "Guest_HG_Gryphon_OwlStatue_A_02_L170": 73561742, - "Guest_HG_Gryphon_OwlStatue_A_01_L100": 77752974, - "Guest_HG_Gryphon_OwlStatue_A_02_L100": 73558670, - "Guest_HG_Gryphon_OwlStatue_A_01_L50": 78277134, - "Guest_HG_Gryphon_OwlStatue_A_02_L50": 74082830, - "MNT_SummerSOF2024_JudgementWings": 1078163967, - "MNT_Pegasus_E": 131704054, - "MNT_PolarisHero": 665176426, - "PP_Duckana": 1128961578, - "PP_QueenBee": 833291695, - "Transformation_BG_Draconian_Balance": 2078940682, - "Transformation_BG_WolfWarrior_Fire": 1762248682, - "Transformation_BG_Minotaur_Death": 309090657, - "PP_WolfWarrior_Fire": 685685256, - "PP_WolfWarrior_Death": 1857202724, - "Guest_ME-GTAV01-WyrmBoss-150": 1482208618, - "Guest_ME_SpectreOfB_L150": 684104791, - "Guest_ME_MD_MacDeath_L150": 1128977615, - "Guest_ME_Pig_BalanceWizardA_L150": 959913724, - "Guest_ME_Pig_BalanceWizardB_L150": 959913712, - "Guest_ME_Pig_BalanceWizardC_L150": 959913716, - "Guest_ME_Pig_FireWizard_L150": 964392255, - "Guest_ME_Pig_IceWizardF_L150": 86941026, - "Guest_ME_Pig_MythWizard_L150": 964051241, - "Guest_ME_Pig_StormWizardF_L150": 2016383602, - "Guest_ME_Clock_Clockworker_L150": 1424569772, - "Guest_ME_Clock_ClockworkSpanner_L150": 1966824609, - "Guest_ME_Clock_Lugs_L150": 370290904, - "Guest_ME_Clock_Lucia_L150": 1857768409, - "MNT_EvilChair": 339577702, - "PP_Cyclops_Storm": 621464512, - "PP_Krokomummy_Life": 462432735, - "Transformation_CL_Rematch_Crustacean": 1686865207, - "Transformation_CL_Rematch_Protector": 1893951532, - "Transformation_CL_Rematch_Angler": 120412196, - "Transformation_CL_Rematch_Piscean": 1624106070, - "Transformation_Zebra_Template": 1900548493, - "Transformation_Zebra2_Template": 325099540, - "Transformation_Zebra3_Template": 325099524, - "Transformation_Zebra4_Template": 325099636, - "MNT_SweetSixteenBirthday": 1009398096, - "MNT_2P_TRex_Bones": 1618543266, - "MNT_SpringBumperCar": 1725007788, - "PP_WinterGoblin": 2025052443, - "PP_OnyxAnubis": 1552575189, - "PP_OttomanCat": 223541582, - "MNT_HolidayYeti": 780983974, - "MNT_IceSled": 979912604, - "MNT_TurtleDoves": 1850191638, - "MNT_KrokChariot": 559783620, - "MNT_Mustang": 1775949401, - "MNT_PumpkinBall": 382849054, - "Transformation_BG_Fairy_Storm": 836920873, - "Transformation_BG_Elf_Myth": 1506493664, - "Transformation_NinjaPig_Life": 816802847, - "Transformation_BG_Krok_Fire": 1060580712, - "Transformation_BG_Colossus_Balance": 1067963041, - "Transformation_BG_NinjaPig_Life": 441460895, - "PP_Penguin_03": 1623028104, - "Transformation_Duck_Librarian_B": 864067551, - "Transformation_Duck_Librarian_A": 859873247, - "Transformation_Duck_Adventurer": 194560769, - "Transformation_Gummy_Bunny_C": 1298087941, - "Transformation_Frog_Horned_A": 837201339, - "Transformation_Glowbug_Storm": 2096380446, - "Transformation_Marshmallow_Critter_A": 1036335317, - "Transformation_Snipe_Base_B": 232132109, - "Transformation_Snowball": 915248481, - "Transformation_Wombat_Base": 333435450, - "Transformation_Human_Malistaire": 1414887773, - "Transformation_Morganthe_E": 1745180054, - "Transformation_Spider_Grandfather": 1131773979, - "Transformation_Khrulhu_Dasein_B": 367878762, - "Transformation_Devourer_Base": 698770016, - "Transformation_Alien_Meteor": 638746168, - "Transformation_Nightmare_Malus": 704212821, - "Transformation_Daemon_Personal": 278266463, - "PP_ValentinesDay": 810003364, - "PP_BabyHippo": 422858138, - "PP_Aardwold": 1592150119, - "PP_Aardwold_C": 1902528613, - "MNT_Cobra": 472847981, - "MNT_Serpopard": 1629558909, - "MNT_Serpopard_B": 1629556867, - "MNT_Serpopard_C": 1629556931, - "PP_Fairy_Fire": 1847789544, - "MNT_Mustang_B": 1448793691, - "PP_FireElfMyth": 1933609060, - "MNT_KT-BoatRide": 1560860110 - } - } - } - }, - "1821800296": { - "name": "class SharedPointer", - "bases": [ - "CinematicAction", - "PropertyClass" - ], - "hash": 1821800296, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_minDuration": { - "type": "float", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1733171553 - }, - "m_assetName": { - "type": "std::string", - "id": 2, - "offset": 88, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513131580 - } - } - }, - "265102095": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 265102095, - "properties": { - "m_principalTournamentNames": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 268435463, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 3082525214, - "enum_options": { - "__BASECLASS": "TournamentTemplate" - } - }, - "m_temporaryTournamentNames": { - "type": "std::string", - "id": 1, - "offset": 96, - "flags": 268435463, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1792424127, - "enum_options": { - "__BASECLASS": "TournamentTemplate" - } - }, - "m_observerTimeout": { - "type": "int", - "id": 2, - "offset": 76, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 562500777 - }, - "m_forfeitTimeout": { - "type": "int", - "id": 3, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 688716240 - }, - "m_activeSeason": { - "type": "unsigned int", - "id": 4, - "offset": 112, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 277598322 - }, - "m_maxUpdateTime": { - "type": "unsigned int", - "id": 5, - "offset": 116, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1535609605 - }, - "m_maxUpdateCount": { - "type": "unsigned int", - "id": 6, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 937799039 - }, - "m_cacheUpdateTime": { - "type": "unsigned int", - "id": 7, - "offset": 124, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 887219635 - }, - "m_bracketScheduleFilename": { - "type": "std::string", - "id": 8, - "offset": 128, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3625222117 - }, - "m_bracketStringTableFilename": { - "type": "std::string", - "id": 9, - "offset": 160, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2974204087 - }, - "m_bracketRewardsPlaceMappingList": { - "type": "class SharedPointer", - "id": 10, - "offset": 192, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 3271398156 - } - } - }, - "1419629436": { - "name": "class ScrollWindowStyle", - "bases": [ - "WindowStyle", - "PropertyClass" - ], - "hash": 1419629436, - "properties": { - "m_pBackMaterial": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1628562023 - }, - "m_pFont": { - "type": "class SharedPointer", - "id": 1, - "offset": 88, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1067686307 - }, - "m_pLargeFont": { - "type": "class SharedPointer", - "id": 2, - "offset": 104, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1523900782 - }, - "m_pSmallFont": { - "type": "class SharedPointer", - "id": 3, - "offset": 120, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2363252956 - }, - "m_Color": { - "type": "class Color", - "id": 4, - "offset": 136, - "flags": 262279, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1753714077 - }, - "m_HighColor": { - "type": "class Color", - "id": 5, - "offset": 140, - "flags": 262279, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2310527421 - }, - "m_SelectColor": { - "type": "class Color", - "id": 6, - "offset": 144, - "flags": 262279, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2792529213 - }, - "m_BorderColor": { - "type": "class Color", - "id": 7, - "offset": 148, - "flags": 262279, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1470576795 - }, - "m_BackColor": { - "type": "class Color", - "id": 8, - "offset": 152, - "flags": 262279, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1070928782 - }, - "m_ScrollBarColor": { - "type": "class Color", - "id": 9, - "offset": 156, - "flags": 262279, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1180747361 - }, - "m_ScrollTabColor": { - "type": "class Color", - "id": 10, - "offset": 160, - "flags": 262279, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1034892323 - }, - "m_nBorderSize": { - "type": "int", - "id": 11, - "offset": 164, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2016376897 - }, - "m_nScrollSize": { - "type": "int", - "id": 12, - "offset": 168, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 632681746 - }, - "m_sHoverSound": { - "type": "std::string", - "id": 13, - "offset": 176, - "flags": 131207, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2662773595 - }, - "m_sSelectSound": { - "type": "std::string", - "id": 14, - "offset": 208, - "flags": 131207, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2596786807 - }, - "m_pVMiddle": { - "type": "class SharedPointer", - "id": 15, - "offset": 248, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1896076876 - }, - "m_pVSliderTop": { - "type": "class SharedPointer", - "id": 16, - "offset": 264, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1590678131 - }, - "m_pVSliderMiddle": { - "type": "class SharedPointer", - "id": 17, - "offset": 280, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1981605647 - }, - "m_pVSliderBottom": { - "type": "class SharedPointer", - "id": 18, - "offset": 296, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1558824373 - }, - "m_pVUpButton": { - "type": "class SharedPointer", - "id": 19, - "offset": 312, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3584564972 - }, - "m_pVDownButton": { - "type": "class SharedPointer", - "id": 20, - "offset": 328, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2411725119 - }, - "m_pHLeftArrow": { - "type": "class SharedPointer", - "id": 21, - "offset": 344, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3168852677 - }, - "m_pHRightArrow": { - "type": "class SharedPointer", - "id": 22, - "offset": 360, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1981350104 - }, - "m_pHMiddle": { - "type": "class SharedPointer", - "id": 23, - "offset": 376, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3142878142 - }, - "m_pHSliderLeft": { - "type": "class SharedPointer", - "id": 24, - "offset": 392, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1553456157 - }, - "m_pHSliderMiddle": { - "type": "class SharedPointer", - "id": 25, - "offset": 408, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2666160641 - }, - "m_pHSliderRight": { - "type": "class SharedPointer", - "id": 26, - "offset": 424, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1592154800 - }, - "m_nScrollButtonDelta": { - "type": "int", - "id": 27, - "offset": 240, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1455137917 - } - } - }, - "262867083": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 262867083, - "properties": {} - }, - "1823339363": { - "name": "class ClientDeathParticleCinematicAction*", - "bases": [ - "DeathParticleCinematicAction", - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 1823339363, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - } - } - }, - "262013957": { - "name": "class SharedPointer", - "bases": [ - "AreaBehavior", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 262013957, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_radius": { - "type": "float", - "id": 1, - "offset": 116, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 989410271 - }, - "m_category": { - "type": "enum AudioCategory", - "id": 2, - "offset": 124, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2951251982, - "enum_options": { - "AudioCategory_Irrelevent": 0, - "AudioCategory_Accoustic": 1, - "AudioCategory_Noise": 2, - "AudioCategory_Music": 3 - } - }, - "m_exclusive": { - "type": "bool", - "id": 3, - "offset": 128, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 824383403 - }, - "m_accousticSignature": { - "type": "enum AccousticSignature", - "id": 4, - "offset": 176, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1188263221, - "enum_options": { - "Generic": 0, - "Padded Cell": 1, - "Room": 2, - "Bath Room": 3, - "Living Room": 4, - "Stone Room": 5, - "Auditorium": 6, - "Concert Hall": 7, - "Cave": 8, - "Arena": 9, - "Hanger": 10, - "Carpeted Hallway": 11, - "Hallway": 12, - "Stone Corridor": 13, - "Alley": 14, - "Forest": 15, - "City": 16, - "Mountains": 17, - "Quarry": 18, - "Plain": 19, - "Parking Lot": 20, - "Sewer Pipe": 21, - "Underwater": 22, - "Drugged": 23, - "Dizzy": 24, - "Psychotic": 25 - } - } - } - }, - "1822932661": { - "name": "class SharedPointer", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 1822932661, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - } - } - }, - "260544318": { - "name": "class PvPUpdateMessage*", - "bases": [ - "PropertyClass" - ], - "hash": 260544318, - "properties": { - "m_messageType": { - "type": "int", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1531535105 - } - } - }, - "1420749714": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1420749714, - "properties": { - "m_browserWidth": { - "type": "int", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1384030174 - }, - "m_browserHeight": { - "type": "int", - "id": 1, - "offset": 76, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2128883223 - }, - "m_windowWidth": { - "type": "int", - "id": 2, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1557707410 - }, - "m_windowHeight": { - "type": "int", - "id": 3, - "offset": 84, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1417781067 - }, - "m_windowXoff": { - "type": "int", - "id": 4, - "offset": 88, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1999589413 - }, - "m_windowYoff": { - "type": "int", - "id": 5, - "offset": 92, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1999625350 - } - } - }, - "1821846423": { - "name": "class ClientAttachParticleActorCinematicAction*", - "bases": [ - "AttachParticleActorCinematicAction", - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 1821846423, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - }, - "m_effectName": { - "type": "std::string", - "id": 2, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2029161513 - }, - "m_nodeName": { - "type": "std::string", - "id": 3, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3607089954 - }, - "m_assetName": { - "type": "std::string", - "id": 4, - "offset": 184, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513131580 - } - } - }, - "260380478": { - "name": "class PvPUpdateMessage", - "bases": [ - "PropertyClass" - ], - "hash": 260380478, - "properties": { - "m_messageType": { - "type": "int", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1531535105 - } - } - }, - "1420078581": { - "name": "class SharedPointer", - "bases": [ - "ControlSprite", - "Window", - "PropertyClass" - ], - "hash": 1420078581, - "properties": { - "m_sName": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306437263 - }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621225959 - }, - "m_Style": { - "type": "unsigned int", - "id": 2, - "offset": 152, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "SCALE_CHILDREN": 2, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "FOCUS_LOCKED": 64, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152 - } - }, - "m_Flags": { - "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648, - "ONE_SHOT": 8388608, - "FLIPPED_HORIZONTAL": 16777216, - "FLIPPED_VERTICAL": 33554432 - } - }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3105139380 - }, - "m_fTargetAlpha": { - "type": "float", - "id": 5, - "offset": 212, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1809129834 - }, - "m_fDisabledAlpha": { - "type": "float", - "id": 6, - "offset": 216, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1389987675 - }, - "m_fAlpha": { - "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 482130755 - }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3623628394 - }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2102211316 - }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1846695875 - }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3389835433 - }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2547159940 - }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2587533771 - }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3091503757 - }, - "m_pMaterial": { - "type": "class SharedPointer", - "id": 16, - "offset": 592, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3479277078 - }, - "m_fRotation": { - "type": "float", - "id": 17, - "offset": 608, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1175400173 - }, - "m_Color": { - "type": "class Color", - "id": 18, - "offset": 584, - "flags": 262279, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1753714077 - }, - "m_textColor": { - "type": "class Color", - "id": 19, - "offset": 612, - "flags": 262279, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2528109250 - }, - "m_textComponent": { - "type": "class TextComponent", - "id": 20, - "offset": 616, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3491704390 - } - } - }, - "1419905653": { - "name": "class SG_GameLevelData*", - "bases": [ - "PropertyClass" - ], - "hash": 1419905653, - "properties": { - "m_filePath": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3116244552 - }, - "m_shotLimit": { - "type": "int", - "id": 1, - "offset": 136, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1999036567 - }, - "m_levelIndex": { - "type": "unsigned int", - "id": 2, - "offset": 140, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 708309693 - }, - "m_perfectScore": { - "type": "int", - "id": 3, - "offset": 144, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 147156703 - }, - "m_flyOverCamera": { - "type": "std::string", - "id": 4, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3580817515 - } - } - }, - "260512027": { - "name": "class SharedPointer", - "bases": [ - "BlobDefinition", - "PropertyClass" - ], - "hash": 260512027, - "properties": { - "m_type": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1717601629 - }, - "m_subType": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3175052615 - }, - "m_versionNumber": { - "type": "unsigned int", - "id": 2, - "offset": 136, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1265259452 - }, - "m_packageNumber": { - "type": "int", - "id": 3, - "offset": 140, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1934060719 - }, - "m_associatedGID": { - "type": "gid", - "id": 4, - "offset": 144, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 148404716 - }, - "m_epochDays": { - "type": "unsigned int", - "id": 5, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1631557837 - }, - "m_data": { - "type": "class SharedPointer", - "id": 6, - "offset": 160, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 565926218 - } - } - }, - "1823063982": { - "name": "class SharedPointer", - "bases": [ - "AddHangingEffectCinematicAction", - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 1823063982, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - }, - "m_effect": { - "type": "std::string", - "id": 2, - "offset": 120, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1894145160 - }, - "m_revealsCloaked": { - "type": "bool", - "id": 3, - "offset": 156, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1618772408 - } - } - }, - "1420624436": { - "name": "class SharedPointer", - "bases": [ - "MoveController::MoveCommand", - "PropertyClass" - ], - "hash": 1420624436, - "properties": { - "m_vTarget": { - "type": "class Vector3D", - "id": 0, - "offset": 100, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3770499167 - }, - "m_fTime": { - "type": "float", - "id": 1, - "offset": 124, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 883746156 - } - } - }, - "261848999": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 261848999, - "properties": { - "m_mailId": { - "type": "gid", - "id": 0, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 703697224 - }, - "m_timeStamp": { - "type": "unsigned __int64", - "id": 1, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 933557677 - }, - "m_senderId": { - "type": "gid", - "id": 2, - "offset": 88, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 814458086 - }, - "m_recipientId": { - "type": "gid", - "id": 3, - "offset": 96, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2065780840 - }, - "m_messageType": { - "type": "int", - "id": 4, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1531535105 - }, - "m_messageData": { - "type": "std::string", - "id": 5, - "offset": 112, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3028633722 - }, - "m_messageFlags": { - "type": "int", - "id": 6, - "offset": 108, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1128617708 - }, - "m_expireDuration": { - "type": "unsigned int", - "id": 7, - "offset": 144, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2308711904 - } - } - }, - "1823353267": { - "name": "class ProcessGlobalCinematicStageTemplate", - "bases": [ - "CinematicStageTemplate", - "PropertyClass" - ], - "hash": 1823353267, - "properties": { - "m_name": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1717359772 - }, - "m_duration": { - "type": "float", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 920323453 - }, - "m_actions": { - "type": "class SharedPointer", - "id": 2, - "offset": 112, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1380578687 - }, - "m_stageRelationships": { - "type": "class SharedPointer", - "id": 3, - "offset": 128, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 499983354 - }, - "m_sound": { - "type": "std::string", - "id": 4, - "offset": 152, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2307644996 - } - } - }, - "260771763": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 260771763, - "properties": { - "m_spellList": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1541139342 - }, - "m_spellFusionList": { - "type": "class SpellTemplate*", - "id": 1, - "offset": 88, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2334460620 - } - } - }, - "1823340899": { - "name": "class ClientDeathParticleCinematicAction", - "bases": [ - "DeathParticleCinematicAction", - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 1823340899, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - } - } - }, - "260742121": { - "name": "class SharedPointer", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 260742121, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - }, - "m_nStartingHealth": { - "type": "int", - "id": 1, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 317221834 - }, - "m_HideCurrentHP": { - "type": "bool", - "id": 2, - "offset": 124, - "flags": 263, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 31360456 - }, - "m_nLevel": { - "type": "int", - "id": 3, - "offset": 128, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 717812768 - }, - "m_fIntelligence": { - "type": "float", - "id": 4, - "offset": 132, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1871176720 - }, - "m_fSelfishFactor": { - "type": "float", - "id": 5, - "offset": 136, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1823445130 - }, - "m_nameColor": { - "type": "class Color", - "id": 6, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3103779710 - }, - "m_bossMob": { - "type": "bool", - "id": 7, - "offset": 144, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 986129576 - }, - "m_turnTowardsPlayer": { - "type": "bool", - "id": 8, - "offset": 145, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1881705133 - }, - "m_mobTitle": { - "type": "enum NPCBehaviorTemplate::TITLE_TYPE", - "id": 9, - "offset": 148, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2205905992, - "enum_options": { - "Easy": 0, - "Normal": 1, - "Elite": 2, - "Boss": 3, - "Minion": 4 - } - }, - "m_schoolOfFocus": { - "type": "std::string", - "id": 10, - "offset": 160, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1523233848 - }, - "m_nAggressiveFactor": { - "type": "int", - "id": 11, - "offset": 140, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 783108599 - }, - "m_triggerList": { - "type": "std::string", - "id": 12, - "offset": 232, - "flags": 268435463, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3100120619, - "enum_options": { - "__BASECLASS": "CombatTriggerList" - } - }, - "m_cylinderScaleValue": { - "type": "float", - "id": 13, - "offset": 268, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1227245334 - }, - "m_maxShadowPips": { - "type": "int", - "id": 14, - "offset": 272, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 985142882 - }, - "m_baseEffects": { - "type": "class SharedPointer", - "id": 15, - "offset": 280, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1726069264 - }, - "m_secondarySchoolOfFocus": { - "type": "std::string", - "id": 16, - "offset": 200, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3043326464 - } - } - }, - "1421022817": { - "name": "class RemoveTeamFromMatchUpdate", - "bases": [ - "TournamentUpdate", - "PropertyClass" - ], - "hash": 1421022817, - "properties": { - "m_teamID": { - "type": "gid", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 982102220 - }, - "m_matchID": { - "type": "gid", - "id": 1, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1757621298 - } - } - }, - "1421343378": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1421343378, - "properties": {} - }, - "1823441807": { - "name": "class ClientExpansionBehavior", - "bases": [ - "ExpansionBehavior", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1823441807, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_bankExpansions": { - "type": "int", - "id": 1, - "offset": 112, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1369075454 - }, - "m_friendListExpansions": { - "type": "int", - "id": 2, - "offset": 116, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1057398198 - } - } - }, - "261078294": { - "name": "class SharedPointer", - "bases": [ - "CastleTourTeleportInfo", - "PropertyClass" - ], - "hash": 261078294, - "properties": { - "m_houseTemplateID": { - "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2326023642 - }, - "m_structureTemplateID": { - "type": "unsigned int", - "id": 1, - "offset": 76, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1037379271 - }, - "m_lotInstanceGID": { - "type": "gid", - "id": 2, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2010711536 - }, - "m_structureInstanceGID": { - "type": "gid", - "id": 3, - "offset": 88, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2083588818 - }, - "m_owningCharacterGID": { - "type": "gid", - "id": 4, - "offset": 96, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 316234091 - }, - "m_type": { - "type": "unsigned char", - "id": 5, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 857501458 - }, - "m_packedName": { - "type": "std::string", - "id": 6, - "offset": 112, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1805208228 - }, - "m_rank": { - "type": "unsigned short", - "id": 7, - "offset": 144, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 773386388 - } - } - }, - "1823435187": { - "name": "class ProcessGlobalCinematicStageTemplate*", - "bases": [ - "CinematicStageTemplate", - "PropertyClass" - ], - "hash": 1823435187, - "properties": { - "m_name": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1717359772 - }, - "m_duration": { - "type": "float", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 920323453 - }, - "m_actions": { - "type": "class SharedPointer", - "id": 2, - "offset": 112, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1380578687 - }, - "m_stageRelationships": { - "type": "class SharedPointer", - "id": 3, - "offset": 128, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 499983354 - }, - "m_sound": { - "type": "std::string", - "id": 4, - "offset": 152, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2307644996 - } - } - }, - "1432454230": { - "name": "class SharedPointer", - "bases": [ - "AdvPvPEloRecord", - "PropertyClass" - ], - "hash": 1432454230, - "properties": { - "m_eloRecordID": { - "type": "gid", - "id": 0, - "offset": 72, - "flags": 16777279, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 832082468 - }, - "m_leagueID": { - "type": "unsigned int", - "id": 1, - "offset": 80, - "flags": 33554495, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 692361645 - }, - "m_seasonID": { - "type": "unsigned int", - "id": 2, - "offset": 84, - "flags": 33554495, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 535260643 - }, - "m_startTime": { - "type": "unsigned int", - "id": 3, - "offset": 88, - "flags": 33554495, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1598371274 - }, - "m_ended": { - "type": "bool", - "id": 4, - "offset": 92, - "flags": 33554495, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 795768915 - }, - "m_elo": { - "type": "int", - "id": 5, - "offset": 96, - "flags": 33554495, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 267033754 - }, - "m_rankIndex": { - "type": "int", - "id": 6, - "offset": 100, - "flags": 33554495, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 716259486 - }, - "m_wins": { - "type": "int", - "id": 7, - "offset": 104, - "flags": 33554495, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 219992347 - }, - "m_losses": { - "type": "int", - "id": 8, - "offset": 108, - "flags": 33554495, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 681549075 - }, - "m_draws": { - "type": "int", - "id": 9, - "offset": 112, - "flags": 33554495, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 792242907 - } - } - }, - "261862787": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 261862787, - "properties": { - "m_flatParticipantList": { - "type": "class SharedPointer", - "id": 0, - "offset": 80, - "flags": 31, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 3375244498 - }, - "m_dynamicTeams": { - "type": "class SharedPointer", - "id": 1, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3227206264 - }, - "m_dynamicTurn": { - "type": "unsigned int", - "id": 2, - "offset": 120, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1168494811 - }, - "m_dynamicTurnSubcircles": { - "type": "unsigned int", - "id": 3, - "offset": 124, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 618930538 - }, - "m_dynamicTurnCounter": { - "type": "int", - "id": 4, - "offset": 128, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 543404296 - }, - "m_duelID.m_full": { - "type": "unsigned __int64", - "id": 5, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1024980477 - }, - "m_planningTimer": { - "type": "float", - "id": 6, - "offset": 144, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1142844143 - }, - "m_position": { - "type": "class Vector3D", - "id": 7, - "offset": 148, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3697900983 - }, - "m_yaw": { - "type": "float", - "id": 8, - "offset": 160, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 357256328 - }, - "m_disableTimer": { - "type": "bool", - "id": 9, - "offset": 179, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1571862248 - }, - "m_tutorialMode": { - "type": "bool", - "id": 10, - "offset": 180, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1704245836 - }, - "m_firstTeamToAct": { - "type": "int", - "id": 11, - "offset": 184, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1499447620 - }, - "m_combatResolver": { - "type": "class CombatResolver*", - "id": 12, - "offset": 136, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1627811879 - }, - "m_bPVP": { - "type": "bool", - "id": 13, - "offset": 176, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 221690795 - }, - "m_bBattleground": { - "type": "bool", - "id": 14, - "offset": 177, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1158269184 - }, - "m_bRaid": { - "type": "bool", - "id": 15, - "offset": 178, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 791201781 - }, - "m_roundNum": { - "type": "int", - "id": 16, - "offset": 192, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1461215570 - }, - "m_executionPhaseTimer": { - "type": "float", - "id": 17, - "offset": 200, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1645062877 - }, - "m_executionPhaseCombatActions": { - "type": "class CombatAction", - "id": 18, - "offset": 208, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 270648678 - }, - "m_sigilActions": { - "type": "class CombatAction", - "id": 19, - "offset": 224, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2176432675 - }, - "m_shadowPipRule": { - "type": "class SharedPointer", - "id": 20, - "offset": 280, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2692865990 - }, - "m_gameObjectAnimStateTracker": { - "type": "class GameObjectAnimStateTracker", - "id": 21, - "offset": 296, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3120084989 - }, - "m_duelPhase": { - "type": "enum kDuelPhase", - "id": 22, - "offset": 196, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1813818086, - "enum_options": { - "kPhase_Starting": 0, - "kPhase_PrePlanning": 1, - "kPhase_Planning": 2, - "kPhase_PreExecution": 3, - "kPhase_Execution": 4, - "kPhase_Resolution": 5, - "kPhase_Victory": 6, - "kPhase_Ended": 7, - "kPhase_MAX": 10 - } - }, - "m_duelModifier": { - "type": "class SharedPointer", - "id": 23, - "offset": 264, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3330438158 - }, - "m_initiativeSwitchMode": { - "type": "enum Duel::SigilInitiativeSwitchMode", - "id": 24, - "offset": 384, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1258091520, - "enum_options": { - "InitiativeSwitchMode_None": 0, - "InitiativeSwitchMode_Reroll": 1, - "InitiativeSwitchMode_Switch": 2 - } - }, - "m_initiativeSwitchRounds": { - "type": "int", - "id": 25, - "offset": 388, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 540229885 - }, - "m_combatRules": { - "type": "class SharedPointer", - "id": 26, - "offset": 464, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 3327225763 - }, - "m_gameEffectInfo": { - "type": "class SharedPointer", - "id": 27, - "offset": 496, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2275096584 - }, - "m_pStatEffects": { - "type": "class SharedPointer", - "id": 28, - "offset": 512, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1275229758 - }, - "m_alternateTurnCombatRule": { - "type": "class SharedPointer", - "id": 29, - "offset": 480, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1715882395 - }, - "m_altTurnCounter": { - "type": "int", - "id": 30, - "offset": 456, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1434810564 - }, - "m_originalFirstTeamToAct": { - "type": "int", - "id": 31, - "offset": 188, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 560350457 - }, - "m_executionOrder": { - "type": "enum kDuelExecutionOrder", - "id": 32, - "offset": 528, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3362082097, - "enum_options": { - "kDEO_Sequential": 0, - "kDEO_Alternating": 1 - } - }, - "m_noHenchmen": { - "type": "bool", - "id": 33, - "offset": 532, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1163855414 - }, - "m_SpellTruncation": { - "type": "bool", - "id": 34, - "offset": 540, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1257440762 - }, - "m_shadowThresholdFactor": { - "type": "float", - "id": 35, - "offset": 548, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2104355177 - }, - "m_shadowPipRatingFactor": { - "type": "float", - "id": 36, - "offset": 552, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1061434314 - }, - "m_defaultShadowPipRating": { - "type": "float", - "id": 37, - "offset": 556, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1544572080 - }, - "m_shadowPipThresholdTeam0": { - "type": "float", - "id": 38, - "offset": 560, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 447039594 - }, - "m_shadowPipThresholdTeam1": { - "type": "float", - "id": 39, - "offset": 564, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 447039595 - }, - "m_maxArchmasteryTeam0": { - "type": "float", - "id": 40, - "offset": 568, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 300185527 - }, - "m_maxArchmasteryTeam1": { - "type": "float", - "id": 41, - "offset": 572, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 300185528 - }, - "m_scalarDamage": { - "type": "float", - "id": 42, - "offset": 600, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1865068300 - }, - "m_scalarResist": { - "type": "float", - "id": 43, - "offset": 604, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 270448583 - }, - "m_scalarPierce": { - "type": "float", - "id": 44, - "offset": 608, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 196427621 - }, - "m_damageLimit": { - "type": "float", - "id": 45, - "offset": 612, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 271286357 - }, - "m_dK0": { - "type": "float", - "id": 46, - "offset": 616, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 357232662 - }, - "m_dN0": { - "type": "float", - "id": 47, - "offset": 620, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 357232761 - }, - "m_resistLimit": { - "type": "float", - "id": 48, - "offset": 624, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1192834544 - }, - "m_rK0": { - "type": "float", - "id": 49, - "offset": 628, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 357247908 - }, - "m_rN0": { - "type": "float", - "id": 50, - "offset": 632, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 357248007 - }, - "m_fullPartyGroup": { - "type": "bool", - "id": 51, - "offset": 636, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1888593059 - }, - "m_matchTimer": { - "type": "float", - "id": 52, - "offset": 656, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1510935909 - }, - "m_bonusTime": { - "type": "int", - "id": 53, - "offset": 660, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1757496496 - }, - "m_passPenalty": { - "type": "int", - "id": 54, - "offset": 664, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 982951662 - }, - "m_yellowTime": { - "type": "int", - "id": 55, - "offset": 668, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1017028741 - }, - "m_redTime": { - "type": "int", - "id": 56, - "offset": 672, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1909556708 - }, - "m_minTurnTime": { - "type": "int", - "id": 57, - "offset": 676, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 652524886 - }, - "m_bIsPlayerTimedDuel": { - "type": "bool", - "id": 58, - "offset": 637, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 857311611 - }, - "m_hideNoncombatantDistance": { - "type": "float", - "id": 59, - "offset": 536, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1733017888 - } - } - }, - "1424862416": { - "name": "class CreateHangingEffectActorCinematicAction", - "bases": [ - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 1424862416, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - }, - "m_cloaked": { - "type": "bool", - "id": 2, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 7349510 - }, - "m_newActorName": { - "type": "std::string", - "id": 3, - "offset": 128, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2029131039 - } - } - }, - "1823552898": { - "name": "class std::vector >", - "bases": [], - "hash": 1823552898, - "properties": {} - }, - "1422695036": { - "name": "class ClientCantripsMajorInvisibilityEffect", - "bases": [ - "CantripsMajorInvisibilityEffect", - "CantripsInvisibilityEffect", - "GameEffectBase", - "PropertyClass" - ], - "hash": 1422695036, - "properties": { - "m_currentTickCount": { - "type": "double", - "id": 0, - "offset": 80, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2533274692 - }, - "m_effectNameID": { - "type": "unsigned int", - "id": 1, - "offset": 96, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1204067144 - }, - "m_bIsOnPet": { - "type": "bool", - "id": 2, - "offset": 73, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 522593303 - }, - "m_originatorID": { - "type": "gid", - "id": 3, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1131810019 - }, - "m_itemSlotID": { - "type": "unsigned int", - "id": 4, - "offset": 112, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1895747595 - }, - "m_internalID": { - "type": "int", - "id": 5, - "offset": 92, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1643137924 - }, - "m_endTime": { - "type": "unsigned int", - "id": 6, - "offset": 88, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 716479635 - } - } - }, - "1422341125": { - "name": "class ObstacleCourseSpringboardBehavior*", - "bases": [ - "ObstacleCourseObstacleBehavior", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1422341125, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - } - } - }, - "262599308": { - "name": "class SharedPointer", - "bases": [ - "SpawnActorCinematicAction", - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 262599308, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - }, - "m_objectInfo": { - "type": "class CoreObjectInfo*", - "id": 2, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1373700953 - }, - "m_bStartHidden": { - "type": "bool", - "id": 3, - "offset": 128, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1939845615 - } - } - }, - "1421568718": { - "name": "class LoyaltyConfig", - "bases": [ - "PropertyClass" - ], - "hash": 1421568718, - "properties": { - "m_loyaltyTierCount": { - "type": "int", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1322604645 - }, - "m_loyaltyTierDemotionTrigger": { - "type": "int", - "id": 1, - "offset": 76, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1427712879 - }, - "m_loyaltyTierLevelDuration": { - "type": "int", - "id": 2, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 599216410 - } - } - }, - "1831901072": { - "name": "class SharedPointer", - "bases": [ - "AnnounceSpellTextCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 1831901072, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_spellText": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2688705600 - } - } - }, - "262341653": { - "name": "class SharedPointer", - "bases": [ - "MobAggroBehavior", - "AggroBehavior", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 262341653, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - } - } - }, - "1828534039": { - "name": "class AvatarItemInfo*", - "bases": [ - "AvatarItemInfoBase", - "PropertyClass" - ], - "hash": 1828534039, - "properties": { - "m_partName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2609631923 - }, - "m_slotName": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2819781566 - }, - "m_flags": { - "type": "std::string", - "id": 2, - "offset": 144, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2292098216 - }, - "m_options": { - "type": "class SharedPointer", - "id": 3, - "offset": 160, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2499357824 - }, - "m_textureOptions": { - "type": "class SharedPointer", - "id": 4, - "offset": 176, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2667548348 - }, - "m_defaultOption": { - "type": "class SharedPointer", - "id": 5, - "offset": 192, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2436336754 - }, - "m_defaultTextureOption": { - "type": "class SharedPointer", - "id": 6, - "offset": 208, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2712636654 - } - } - }, - "262076113": { - "name": "class ClientMountOwnerBehavior*", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 262076113, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_gender": { - "type": "enum eGender", - "id": 1, - "offset": 176, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2121766730, - "enum_options": { - "Male": 1, - "Female": 0, - "Neutral": 2 - } - }, - "m_race": { - "type": "enum eRace", - "id": 2, - "offset": 180, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 390582957, - "enum_options": { - "Bat": 88066, - "BatLightning": 1472842576, - "Boar": 2624962, - "CatThug": 1855674386, - "ChristmasElf": 819908552, - "ChristmasSnowman": 1146515225, - "Colossus_Ice": 1063279538, - "Cyclops": 1691813655, - "DragonBeta": 417003588, - "DragonFriendly": 69049013, - "EvilSnowman": 1579630926, - "FireElf": 443793687, - "Firecat": 2045525741, - "Frog": 2274918, - "FrostBeetle": 7692383, - "GhostBlue": 1097396892, - "GhostGreen": 882822629, - "GhostRed": 560510742, - "GhostYellow": 909974358, - "Ghoul": 82556199, - "GoatMonk": 486215564, - "GolemBrass": 1057388325, - "GolemClockwork": 1143380031, - "GolemSteel": 1660583674, - "GolemWood": 1426849876, - "HalloweenCat": 1042869199, - "Heckhound": 626736403, - "Helephant": 719065368, - "Human": 79806088, - "Hydra": 70785800, - "Imp": 84361, - "Krokomummy": 555755242, - "Kroktut": 1352354178, - "Leprechaun": 2106466410, - "LeprechaunPattyDay": 380507781, - "LightningBat": 228257682, - "Mannequin": 428442544, - "Minotaur": 949570680, - "Mount_Broom": 94637995, - "Mount_Cat": 1150940211, - "Mount_Dragon": 1565720148, - "Mount_Horse": 2054712767, - "Mount_PlayerWings": 589829552, - "Nikkos": 1563122418, - "NinjaPig": 607400740, - "Orthus": 1552590225, - "Piggle": 1897753328, - "Piggle_Valentine": 687697592, - "Piggle_ValentinePart2": 1760391091, - "Pixie": 74836240, - "RatMagician": 885542120, - "SalamanderFire": 48480175, - "SalamanderIce": 2011152164, - "SalamanderStorm": 600331072, - "Satyr": 84793363, - "Scarab": 2143810477, - "Sheep": 86220083, - "SkeletonArmored": 1791586239, - "SnowSerpent": 138621543, - "Spider": 1603064269, - "SpiderBlack": 559353179, - "SpiderBrown": 557941675, - "SpiderCrystal": 2119625297, - "SpiderGolem": 1632616514, - "Sprite": 1889156557, - "SpriteDark": 1888685518, - "Stormzilla": 252684095, - "SunBird": 1602211198, - "Transformation_ArmoredSkeleton": 1861349834, - "Transformation_CatThug": 1175387611, - "Transformation_Cat_Bandit": 1012395694, - "Transformation_ClockworkGolem": 601121214, - "Transformation_Cyclops": 620156297, - "Transformation_DarkFairy": 1206757203, - "Transformation_DraconianSorcerer": 1212016810, - "Transformation_Draconian": 450730089, - "Transformation_EarthColossus": 140119452, - "Transformation_EvilSnowman": 1497097122, - "Transformation_FatGobbler": 634003800, - "Transformation_FireElemental": 822233230, - "Transformation_FireElf": 46585468, - "Transformation_FireSalamander": 2118418114, - "Transformation_Gobbler_Skinny": 162365207, - "Transformation_GolemSteel": 1329184184, - "Transformation_Ice_Colossus": 430406408, - "Transformation_Krokomummy": 1644615769, - "Transformation_MagmaMan": 545064542, - "Transformation_Mander": 88998828, - "Transformation_NinjaPig": 1029132174, - "Transformation_Ninja_Pig_04": 7093548, - "Transformation_RatThug": 1175352795, - "Transformation_RavenMystic": 1443197359, - "Transformation_StormElemental": 637088511, - "Transformation_Treant": 1874998327, - "Transformation_WarPig": 691088645, - "Transformation_WolfScout": 263523463, - "Transformation_WolfWarrior": 6092463, - "Transformationn_SkeletonPirate": 1821341863, - "Treant": 1396597132, - "Troll": 82261620, - "Unicorn": 550546918, - "Unknown": 718677478, - "Wolverine": 528843083, - "Wraith": 1788506505, - "Wyrmkin": 379044612, - "Transformation_CyrusDrake": 94277831, - "PetEgg": 1973167984, - "GhostLady": 493415959, - "Banshee": 827805677, - "GobblerRed": 250135875, - "Ghoul_Gravedigger": 161812468, - "SkeletonWarrior": 734585814, - "BansheeBoss": 806445565, - "Seraph": 1792950125, - "CrabKing": 277875784, - "UndeadCaster": 1680689397, - "DragonFrontier": 1829438301, - "HeckhoundGhost": 872406464, - "Mount_Unicorn": 212699468, - "Jellyfish": 910724608, - "SeaDragon": 1194541306, - "Turtle": 1897184620, - "Starfish": 1447562471, - "SpinyFish": 162948281, - "Mount_Gryphon": 2110522960, - "Mount_Shark": 1170186623, - "Mount_Manta": 979931598, - "Mount_Seahorse": 1554833818, - "Mount_Seahorse_Tough": 1245859453, - "Mount_Koi": 1150937409, - "Mount_Lobster": 2025618875, - "Mount_Turtle": 1490849128, - "VenusFlyTrap": 1612039757, - "GDN_MED_BabyCarrots": 327334743, - "GDN_SM_BoomShroom": 31324632, - "GDN_SM_Dandelion": 2058674142, - "GDN_SM_Disparagus": 1732989489, - "GDN_MED_EvilSnowPeas": 747408607, - "GDN_SM_FicklePickle": 205381955, - "GDN_SM_HappyHolidaisy": 1736236340, - "GDN_MED_HelephantEars": 1803669659, - "GDN_MED_HoneySickle": 424149132, - "GDN_LG_NinjaFig": 847338104, - "GDN_LG_SnapDragon": 1076151689, - "GDN_SM_StinkWeed": 845383431, - "GDN_MED_TrumpetVine": 1922690264, - "GDN_MED_VenusFlyTrap": 1560899638, - "GDN_SM_Laughodil": 1278979588, - "GDN_LG_BreadFruitBush": 533042934, - "GDN_MED_PricklyBearCactus": 1236846986, - "GDN_MED_KingParsley": 110148182, - "LeprechaunPatriotic": 414730890, - "SeraphYuletide": 1325846853, - "DragonGhost": 1502126893, - "UnicornNightmare": 604358256, - "EvilSnowmanSandman": 1579432150, - "Colossus_Spirit": 422514215, - "Rock": 2393554, - "GDN_MED_GivingTree": 2047236132, - "Egg": 70853, - "Mount_Carpets": 1602744888, - "Kraken": 1737191829, - "Wyvern": 1727802601, - "Phoenix": 1765559002, - "Judgement": 562901781, - "ForestLord": 1390734923, - "Humongofrog": 1272123051, - "Scarecrow": 41441599, - "Mount_Ram": 77196599, - "BasketSnake": 1835657086, - "Samoorai": 522797493, - "Transformation_RavenWarrior": 701169336, - "PhoenixStorm": 1325268802, - "PhoenixDeath": 1281634042, - "GDN_LG_CouchPotatoes": 879742725, - "GDN_MED_KeyLimes": 811516024, - "Mount_BoneDragon": 1023618313, - "Mount_BigBoneDragon": 1124383680, - "Mount_FairyWings": 1904926612, - "Mount_DragonWings": 755225925, - "Mount_Pegasus": 1621244140, - "GDN_MED_BellPepper": 1710238687, - "GDN_MED_GrapesOfWrath": 1068787103, - "GDN_SM_TigerLily": 1899057048, - "WysteriaPiggle": 49173891, - "Mount_Wyvern": 1658410744, - "Mount_2P_Rhino": 1052779475, - "NightHawk": 358964390, - "Giraffe": 935214826, - "Mount_Hawk": 2070898895, - "Mount_HalloweenNightmare": 726136378, - "GobblerHalloween": 1482399836, - "Leopard": 1606863715, - "Skink": 76950867, - "Mount_Ostrich": 466111322, - "Mount_Crocagator": 1981222087, - "Transformation_Blacktusk-01": 401543565, - "Mount_Hippogriff": 2043817624, - "Transformation_Gorilla-01": 1555853240, - "Transformation_Gorilla-02": 1606184888, - "Mount_Raven": 94983735, - "Mount_Chrismoose": 1822495199, - "Mount_CandyCane": 1148551147, - "Ivy_League": 925492799, - "GDN_MED_Ivy_League": 1630077794, - "Mount_Kirin": 1168691825, - "GDN_SM_Moonflower": 2068754330, - "GDN_MED_BoonTree": 788055729, - "Snowball": 2046118016, - "Foo_Dog": 1549710807, - "ShenlongDragon": 932676736, - "Monkey": 1233866291, - "Wolfhound": 626884686, - "Redcap": 1540319086, - "Raven": 79941650, - "HollowKnight": 1107268274, - "Book": 2405826, - "GDN_MED_AngoraBunnyEars": 1547559854, - "GDN_MED_FortuneCookieTree": 786686214, - "GDN_MED_GooseTree": 809354938, - "GDN_SM_HoneyBeePlant": 1528880373, - "GDN_MED_BambooShoots": 1096708900, - "GDN_SM_Huckleberries": 1937475840, - "Rock_Moustache": 962221287, - "Efreet_Myth": 1834555522, - "Efreet": 1401700123, - "Mammoth": 1395147745, - "Triton": 1730466188, - "Gnome": 74954215, - "BoneDragon": 429245206, - "Basilisk": 1457899086, - "Chimera": 529027789, - "Transformation_GammaTemplate": 1337834518, - "Mount_Camel": 1168198963, - "Mount_RenaissanceWings": 1049782088, - "Bull_Mount": 1713506759, - "Mount_Owl": 1150938242, - "Mount_Alphyn": 487264165, - "Mount_Stag": 1150353823, - "Mount_Auroch": 509865325, - "Mount_Warg": 1150358072, - "StrangeBeast": 511334734, - "Efreet_Ice": 1820009122, - "Efreet_Storm": 1269986674, - "GDN_LG_AlligatorPear": 1293913372, - "Mount_2P_Treant": 928450863, - "Mount_2P_Dragon": 1431637933, - "Mount_Pogo_Stick_WC": 1462849298, - "Mount_Pogo_Stick_MB": 1349603090, - "GDN_LG_MeltingCheese": 1914589015, - "GDN_SM_FishOnAVine": 1734955358, - "GDN_LG_AngelOak": 1539539424, - "GDN_LG_MeltingCheese_Angel": 1254781264, - "SnowyOwl": 1682262138, - "Mount_3P_Hydra": 1207475250, - "WeaselMinstrel": 1541234616, - "MOUNT_Rickshaw": 938282973, - "Transformation_Sherlock-Bones": 509126601, - "Mount_Phoenix": 556355452, - "Toaddle": 597488187, - "Pantera": 528797696, - "WildfireTreant": 673362041, - "StoneTiger": 746336665, - "Blowfish": 1447737334, - "Smith": 78327187, - "FlyingCat": 1254472614, - "RamWarrior": 536916302, - "Ladybug": 1846384669, - "BurlapBoy": 607590898, - "DeerKnight": 560802130, - "Gargoyle": 1227701700, - "Chameleon": 596131510, - "Scorpion": 1462253104, - "GDN_SM_BoiledPeanuts": 544885684, - "GDN_SM_ClockFlower": 676513046, - "GDN_SM_DeadBeets": 650783482, - "GDN_MED_SnowApple": 1916648180, - "Eyecaramba_Violet": 1804780775, - "Eyecaramba_Green": 750346574, - "Eyecaramba_Orange": 687614854, - "Piggle_Grandfather": 131445665, - "Velociraptor": 1042311818, - "Babydactyl": 1180982194, - "Stegosaurus": 476811765, - "Mount_Pegasus_Spectral": 948250730, - "Mount_2P_Scarydactyl": 1808983335, - "Mount_2P_TRex": 1495851852, - "Therizinosaurus": 80337863, - "Runtosaurus": 476200406, - "FrilledLizard": 420993517, - "Mount_Ankylosaurus": 669692274, - "Mount_Triceratops": 1126950204, - "Mount_2P_Glider": 1630365881, - "Transformation_Thunderhorn": 1045262037, - "Transformation_Jaguar": 1080966062, - "Transformation_Pteranadon": 273836142, - "Transformation_ShadowWeaver": 255927111, - "Transformation_EagleWarrior": 1880471875, - "Mount_Falalalallama": 389890123, - "Mount_2P_WinterTreant": 1850265056, - "GDN_LG_MissileToe": 1767792974, - "GDN_MED_PointSetta": 647257205, - "Nutcracker2012": 1598217699, - "Coal2012": 1627852119, - "Mount_Sleigh": 1636615519, - "Mount_Sabertooth": 1613031507, - "Mount_MechanicalWings": 1014917438, - "PiranhaHunter": 686271163, - "Quetzal": 2020925822, - "Mount_Sloth": 1169387359, - "HollowKnightLife": 2114081886, - "BettaFish": 138088968, - "MummyCat": 62372925, - "TrojanHorse": 1725299194, - "WC_Storm_Possessed": 186960228, - "AV_Possessed": 1106693085, - "AZ_Possessed": 1106692701, - "CL_Possessed": 1106692255, - "KT_Possessed": 1106693015, - "MS_Possessed": 1106692977, - "WC_Possessed": 1106692459, - "Mount_2P_Whale": 448824263, - "Mount_2P_Chariot": 88035298, - "Mount_WarBoar": 1159836211, - "Mount_Palanquin": 47587550, - "BearCub": 672664722, - "Transformation_Minotaur": 1454233452, - "DragonGauntlet": 797645257, - "DeathUnicorn": 924144161, - "Flamingo": 1488424911, - "Mount_Gorilla": 1939919432, - "Mount_WarUnicorn": 1361393198, - "GargoyleMyth": 1819685060, - "TikiMan": 16098567, - "Siren": 79937811, - "GoldenRam": 410220227, - "Harpy": 96026632, - "SwordShield": 1668411785, - "ClockworkKnight": 1059948980, - "Mount_MechanicalEagle": 1720948645, - "Mount_Cloud": 1166233435, - "Mount_Surfboard": 1914250039, - "Mount_BetaDragon": 1023653721, - "Mount_BeeWings": 1387988401, - "Vampire": 524731385, - "FrankenBunny": 589797989, - "BumbleBee": 249592226, - "Mount_Dragonfly": 1028843656, - "BronzeGolem": 1320867859, - "TarantulaHawk": 1983939429, - "Mount_Grasshopper": 1852850928, - "FlyingSquirrel": 847551166, - "GDN_MED_Sunion": 1652707634, - "GDN_MED_SwordFern": 548761438, - "GDN_SM_SugarKhrystal": 267539461, - "GDN_SM_SawPalmetto": 1892888046, - "GDN_LG_FacePalm": 2050814140, - "GDN_LG_QueenCrapeMyrtle": 80378450, - "Transformation_ShadowTank": 1304943609, - "Transformation_ShadowHeal": 1254024185, - "Transformation_ShadowDPS": 87276537, - "Mount_Noelephant": 1383672248, - "SaintBernard": 572932242, - "ParkaFox": 2009808189, - "Goose": 75019719, - "Mount_Coconut": 791151432, - "CreepyBeetle": 345594179, - "BabyDragonfly": 1367084335, - "FennecFox": 41315063, - "PP_Leviathan": 833901526, - "PP_SunSerpent": 1062677009, - "PP_LordOfWinter": 960214698, - "PP_Medusa": 867812931, - "PP_Dryad": 147654656, - "PP_AvengingFossil": 315904647, - "PP_Sabertooth": 1799146677, - "Mount_Butterfly": 1283940943, - "Mount_Hare": 2070851023, - "Transformation_MorganthB": 197306990, - "Transformation_MorganthC": 197831278, - "Transformation_MorganthD": 200452718, - "BabyPegasus": 1215000859, - "ArcaneHelp": 1899247549, - "Mount_Vines": 98389624, - "Mount_ArcaneMinecart": 2001270930, - "Hobgoblin": 2133668461, - "Mount_2P_Rowboat": 237071469, - "ForestSpirit": 1178454602, - "Mount_SpiritWolf": 531991076, - "Otter": 84138671, - "OrigamiBird": 550984083, - "DinoSkeletal": 233277835, - "Mount_HarrowingsGreen": 1605746772, - "Mount_HarrowingsBlue": 477152436, - "Mount_HarrowingsPurple": 2092807554, - "RedPanda": 1744233845, - "Ibis": 2665577, - "Corgi": 78823875, - "Mount_Yak": 996545739, - "Mount_FlyingBalance": 436519643, - "Transformation_ShadowMalistaire": 1043814435, - "Transformation_DragonMalistaire": 841867699, - "Mount_Scarab": 1687658791, - "Transformation_MisterHound": 1973578844, - "Mount_BahHumbug": 55114077, - "Skates": 1568993965, - "Moose": 75019725, - "Mount_Gargoyle": 1456663874, - "GDN_MED_VenusFlyTrapEpic": 1594069606, - "Mount_PlayerWingsPink": 19403046, - "GDN_LG_AlligatorPearEpic": 1326804812, - "Pet_Armadillo": 825736847, - "Mount_JoustingDestrierDyeable": 1683448768, - "GDN_MED_VampireCarrots": 871596496, - "GDN_SM_WhiteTigerLilyEpic": 1703271434, - "GDN_LG_NinjaFigEpic": 938504823, - "GDN_LG_SnapDragonEpic": 2071674466, - "GDN_MED_HelephantEarsEpic": 719166107, - "GDN_MED_TrumpetVineEpic": 225854518, - "GDN_SM_DandelionEpic": 728637442, - "GDN_SM_HuckleberriesEpic": 1903258448, - "GDN_MED_SnowAppleEpic": 1231175967, - "GDN_SM_BoomShroomEpic": 981598771, - "GDN_MED_KingParsleyEpic": 2038371004, - "Mount_Raptor": 749695031, - "Pet_Toucan": 581477475, - "Pet_Squirrel": 969881395, - "Mount_WonkyDonkey": 1481657312, - "Mount_HawkPatriotic": 509149743, - "Pet_FrogAssistant": 1945041750, - "Mount_Cat2": 1151054899, - "Mount_Cat2BW": 1603515443, - "Pet_ArmadilloBW": 825733899, - "Pet_FrankieForearms": 1100195857, - "Mount_SolarSabre": 1281093703, - "MNT_MechOstrich": 258667969, - "MNT_BootsBalance": 1799191558, - "MNT_BootsDeath": 1034912971, - "MNT_BootsFire": 606061658, - "MNT_BootsIce": 2142643294, - "MNT_BootsLife": 773751898, - "MNT_BootsMyth": 144792486, - "MNT_BootsStorm": 1525245121, - "Pet_CorgiBirthday": 1951779369, - "OrigamiBirdBDay": 1909935955, - "Pet_FlyingBlackCat": 432111988, - "Mount_Narwhal": 449637834, - "Mount_NightOwl": 1648420845, - "Pet_Penguin": 137342907, - "MNT_PowerGemUnicorn": 411234062, - "Pet_CrystalButterfly": 512136094, - "Mount_BabyMammoth": 185831059, - "MNT_BabaYaga": 564874997, - "Pet_BabySeal": 657606984, - "Pet_BabyYeti": 635847496, - "Transformation_BallerinaBear": 1525333600, - "Mount_StagYuletide": 1508680687, - "Transformation_TitanMedium": 1700742736, - "Transformation_TitanLarge": 718614967, - "Pet_SirenIce": 849851564, - "Mount_FlyingDeath": 1717725588, - "Mount_FlyingFire": 1177216332, - "Mount_FlyingIce": 1238841184, - "Mount_FlyingLife": 433397684, - "Mount_FlyingMyth": 164983572, - "Mount_FlyingStorm": 375872049, - "Dragonling": 1730534849, - "Pet_EggChicken": 952873217, - "HeckhoundGhost_MAW": 893368960, - "Mount_WinterTrain": 751515281, - "Mount_RubberDucky": 1826548479, - "Pet_BansheeSpellwrit": 917979583, - "Pet_SamooraiSpellwrit": 370057597, - "Mount_UnicornAstral": 886914505, - "Guest_Boochbeard": 1958574095, - "Pet_MouseSister": 1267930350, - "Pet_MouseFather": 2010008339, - "Pet_VampireSquirrel": 250588691, - "Mount_CoffinCar": 1387606595, - "Mount_BabyElephant": 2026559639, - "Pet_RoadHog": 601156960, - "Mount_WolfGryphonWings": 543038283, - "MNT_ClockworkSteed": 891371132, - "Mount_Chopper": 1196683136, - "Pet_ButterflyLamb": 527214392, - "Pet_MouseMother": 2012687123, - "Pet_MouseBrother": 1174380856, - "Pet_Cherub": 769208559, - "GDN_SM_Jewel": 1104045832, - "MR_Death_Duncan_Grimwater": 1850289001, - "Mount_DesertRunner": 2049036229, - "Pet_MonkeyMirage": 418612892, - "Pet_ClockworkOwl": 1038482431, - "Pet_NinjaTurtle": 2024540686, - "Mount_Vines_Halloween": 82852149, - "Mount_SwarmBat": 1151836459, - "Mount_2P_NinjaDragon": 1239694057, - "Mount_Gobler": 1820615236, - "Mount_MaryleboneCar": 2027689685, - "JackOLantern": 1016361578, - "Transformation_DjinnCommonA_Balance": 996127128, - "Transformation_MedicineMode": 25960701, - "CactusHopper": 1956293007, - "Transformation_Mimic_ChestGold_A": 414145432, - "Mount_Ghoulture": 1067671195, - "Pet_Macaw": 1087278472, - "Pet_SandWorm": 653200803, - "Transformation_DromelDancer": 1071824116, - "Pet_Bunnies": 695874547, - "Mount_Snowboard": 1914380015, - "Transformation_DrommelDancer": 226294468, - "Mount_Carpet_New": 1618650322, - "Mount_BunnySleigh": 599915427, - "Helephant_Heart": 419161272, - "Mount_Snowboard_Holiday": 876339060, - "Transformation_GhostDog": 646575420, - "Transformation_PrinceGobblestone": 693826496, - "Transformation_Mithraya": 1240010601, - "Transformation_LuskaCharmbeak": 897469730, - "Transformation_YoungCyrusDrake": 15595663, - "Kookaburra": 1069759154, - "BorealisGolemPet": 797488492, - "FlyingEyePet": 505959833, - "StormCloudPet": 548463069, - "BullPet": 1993917801, - "OpossumPet": 284003652, - "GhoulturePet": 939920734, - "StormCloudPetB": 548463001, - "StormCloudPetC": 548463003, - "Guest_LordNightshade": 1221409981, - "BullPetB": 1993917561, - "BullPetC": 1993917553, - "BullPetD": 1993917513, - "Transformation_ShadowCrit": 1392195065, - "Mount_Pennyfarthing": 1551926344, - "Mount_RowboatPirate": 2079208803, - "Mount_IceCube": 1261861595, - "Guest_LostMaiden": 883675592, - "Guest_BoatswainMcGee": 1359750850, - "Guest_ChiefMateMcGurk": 329643845, - "Guest_DoomedBones": 2015643882, - "Guest_SpectreoftheBrocken": 266357448, - "Guest_DrownedKnight": 1100966093, - "Guest_TarntheDrowned": 329540205, - "Guest_DisloyalKnight": 1853240753, - "Guest_NamelessKnight": 1065677876, - "Guest_LambentFire": 489886605, - "Guest_LordoftheBrocken": 1662003371, - "Guest_StormCaiman": 1147500291, - "Guest_GrinningDeathMoon": 737595789, - "Guest_MoonSkullWight": 1720039490, - "Guest_HuemacSpearWreath": 1522021131, - "Guest_HowlingBanshee": 1340855338, - "Guest_Sea-Booter": 1818491983, - "Guest_DeadRover": 1009273257, - "Guest_CelestianRemnant": 1312268448, - "Guest_Shadow-WebConscript": 1500529411, - "Guest_Shadow-WebMercenary": 623672171, - "Guest_Shadow-WebWraith": 810956416, - "Guest_Shadow-WebHaunt": 500586883, - "Guest_CelestianPartisan": 633346892, - "Guest_CelestianDefender": 482102727, - "Guest_ThraleBonestriker": 1172972733, - "Guest_VorgenSoulbreaker": 1935693246, - "Guest_ServusBloodsword": 1703995647, - "Guest_QueenCalypso": 845803519, - "Guest_BlueBart": 77043390, - "Guest_KarolakNightspinner": 1008737316, - "Guest_ArachtusDuskweb": 1787750209, - "Guest_ZhalarStarcloud": 1453644105, - "Guest_NarallorNightborn": 1963363700, - "Guest_SelwynSkywatcher": 1413136893, - "Guest_OsseusNightreaver": 306827003, - "Guest_IrateBanshee": 865143109, - "Guest_FuriousHowler": 1607252558, - "Guest_CryingSpirit": 1559074820, - "Guest_UndeadDraconian": 169249571, - "Guest_ReanimatedDraconian": 247067807, - "Guest_GhastlySlave": 80127661, - "Guest_BoundSpecter": 369706568, - "Guest_NecroticHaunter": 1714841563, - "Guest_LoathsomeCreeper": 1087245229, - "Guest_FleshrotRetriever": 1925148031, - "Guest_BarbarianSpirit": 2112552732, - "Guest_BeghastionCrowcaller": 586628832, - "Guest_BeghastionFieldburner": 1650751959, - "Guest_BoneWarrior": 76802026, - "Guest_FleshlessSentry": 708431820, - "Guest_PirateRavager": 945157059, - "Guest_RottenScallywag": 974666855, - "Guest_ArmoredBonewalker": 1444568072, - "Guest_UndeadWizard": 1622435563, - "Guest_SoulSearcher": 2094392941, - "Guest_DecayingBlackguard": 412324062, - "Guest_FoulReaper": 919877614, - "Guest_NightShadow": 1675932226, - "Guest_MotleyCrew": 653779218, - "Guest_OrinGrimcaster": 472649066, - "Guest_GhostofSylviaDrake": 218332449, - "Guest_VikaMarkmaker": 1145181168, - "Guest_VasekAshweaver": 1001434369, - "Guest_FireWraith": 1027720368, - "Guest_HungrySoul": 1722435576, - "Guest_FrostBones": 456145606, - "Guest_SnowSkull": 835837850, - "Guest_WinterSkull": 1556601065, - "Guest_LothinDoombringer": 860995070, - "Guest_MimirWinterbane": 1111898070, - "Guest_KulgrimSoulsunder": 278037985, - "Guest_HitojiniDeathcaster": 1144499043, - "Guest_GaikotsuSkeleton": 1113949902, - "Guest_PhantomAce": 1917639347, - "Guest_PhantomGlider": 849918336, - "Guest_Krokomummy": 857773886, - "Guest_NiriniAncientGuard": 359313880, - "Guest_NiriniFireSpirit": 1863811476, - "Guest_VaultHaunter": 197723476, - "Guest_VigilantDefender": 171276829, - "Guest_WanderingAhnicSpirit": 1702865088, - "Guest_ForgottenDjeseritSoul": 1170568256, - "Guest_KaranahnDeathfeeder": 1612857711, - "Guest_ShamblingAhnic": 1579129677, - "Guest_RisenDjeserit": 287855500, - "Guest_KaranahnMortifier": 874288111, - "Guest_DjeseritDweller": 2058423665, - "Guest_AhnicStrider": 1776992302, - "Guest_GuardianoftheFang": 1816795524, - "Guest_DefenderoftheFang": 354353604, - "Guest_ProtectoroftheFang": 1290191037, - "Guest_SouloftheCharmed": 422890577, - "Guest_KaranahnKeeper": 77581557, - "Guest_NiriniIntimidator": 677205957, - "Guest_CondemnedSoldier": 449152244, - "Guest_NimahtheWicked": 1298248873, - "Guest_AkoriNirini": 1123159753, - "Guest_SoulScavenger": 892852198, - "Guest_KeeperoftheFang": 1676773499, - "Guest_ItennuSokkwi": 699159408, - "Guest_Tempestra": 334938435, - "Guest_QueenIrisiDjeserit": 1861434100, - "Guest_TheBonekeeper": 1302503449, - "Guest_CryptScavenger": 1893795791, - "Guest_Soulsapper": 1699756010, - "Guest_KingUroAhnic": 1788825731, - "Guest_KingShemetDjeserit": 1350067043, - "Guest_UnholyWraith": 1871146013, - "Guest_PikeSpiritcrusher": 498715531, - "Guest_SpellwritScreamer": 801626733, - "Guest_SpellwritRonin": 1671439174, - "Guest_Shrieker": 805966229, - "Guest_GravePhantom": 731622936, - "Guest_NightmareSpirit": 230709057, - "Guest_VengefulCreeper": 1100197884, - "Guest_TombRoamer": 1277825068, - "Guest_ShieldSkeleton": 1634270152, - "Guest_AgonyWraith": 30384496, - "Guest_IcyGhost": 768353592, - "Guest_Half-wittedSkeleton": 647996362, - "Guest_LazyHenchman": 1329554426, - "Guest_TiredFighter": 210248632, - "Guest_Screecher": 469007005, - "Guest_SeethingWraith": 664913100, - "Guest_ColdConfusion": 1304943934, - "Guest_OssuaryConscript": 1017667150, - "Guest_Ghulture": 1330558655, - "Guest_BodyGuard": 1048581801, - "Guest_SpectralGuardian": 422805602, - "Guest_VaultConscript": 1388398065, - "Guest_FootPatrol": 1692393321, - "Guest_ArmedGuard": 2045920536, - "Guest_Chilly": 1764665905, - "Guest_Achey": 973370519, - "Guest_Sneezy": 1769440773, - "Guest_Cough": 1170200073, - "Guest_Shadowbones": 1316133167, - "Guest_ForgottenConscript": 1466348281, - "Guest_BarracksGuardian": 236603440, - "Guest_CryptConscript": 314755436, - "Guest_DurvishSeeker": 1825622267, - "Guest_MedicineMode": 167015574, - "Guest_Myriarch2": 593881680, - "Guest_Myriarch3": 593881616, - "Guest_MyriarchEphialtes": 773531895, - "Guest_MotherGhulture": 1585201915, - "Guest_CaptainCosrow": 727107332, - "Guest_VizierRafaj": 214040637, - "Guest_DarkmoorSerf": 1522169114, - "Guest_DarkmoorSquire": 1822567109, - "Guest_ScarletWampyr": 1683954247, - "Guest_DraconianRevenant": 741497298, - "Guest_DraconianEidolon": 107733297, - "Guest_AnguishedWraith": 1078602022, - "Guest_DraconianPyromancer": 729577007, - "Guest_DraconianThaumaturge": 189734361, - "Guest_DraconianDiviner": 472633746, - "Guest_DraconianConjurer": 1824962835, - "Guest_DraconianTheurgist": 1828628416, - "Guest_DraconianNecromancer": 175364324, - "Guest_DraconianSorcerer": 1262893339, - "Guest_SirBlackwater": 366308464, - "Guest_AkhtangWormCrawl": 1589032404, - "Guest_SpiritofDarkmoor": 579455915, - "Guest_ShanevonShane": 2096517522, - "Guest_YevgenyNightCreeper": 1535282881, - "Guest_MalistairetheUndying": 824508513, - "Guest_Bunferatu": 1015806005, - "Guest_CountBelaBlackSleep": 761647679, - "Guest_DeathSoldier": 1715141574, - "Guest_SorrowWhisperer": 556532003, - "Guest_GriefSpectre": 1425488559, - "Guest_HowlingShade": 631460247, - "Guest_WalkingDead": 318527090, - "Guest_Akuji": 977635799, - "Guest_TorturedKakedaSoul": 1716874833, - "Guest_KakedaSpiritSlave": 1814699344, - "Guest_DishonoredSamoorai": 320085744, - "Guest_CursedRonin": 1204095686, - "Guest_TomugawatheEvil": 166125424, - "Guest_OyotomitheDefiler": 1672714483, - "Guest_Fushiko": 801492770, - "Guest_BrokenLandGuardian": 294671991, - "Guest_ShatteredSkyGuardian": 746681463, - "Guest_SunderedSeamGuardian": 1439618652, - "Guest_BrokenLandSpirit": 860105895, - "Guest_ShatteredSkySpirit": 2104112380, - "Guest_SunderedSeamSpirit": 69572311, - "Guest_LostSoul": 204361577, - "Guest_RottingFodder": 308249734, - "Guest_HauntedMinion": 689597338, - "Guest_FieldGuard": 1175228991, - "Guest_SkeletalWarrior": 778393993, - "Guest_SkeletalPirate": 1476730220, - "Guest_WanderingSpecter": 126188449, - "Guest_LivingScarecrow": 1442943145, - "Guest_FrostPhantom": 1809776664, - "Guest_FireShrieker": 173332719, - "Guest_CryptCrawler": 2118799272, - "Guest_ViridianSpecter": 383149977, - "Guest_ArgentClatterer": 525414714, - "Guest_SwimmingSpecter": 1494025094, - "Guest_ScarletScreamer": 1689589811, - "Guest_BoneDigger": 1351421123, - "Guest_HowlingGhost": 664019391, - "Guest_SkeletalSoldier": 750463116, - "Guest_MaidenofHate": 444442868, - "Guest_SkeletalRetainer": 1409032775, - "Guest_SoulHunter": 1900267551, - "Guest_MidnightShuffler": 1991052065, - "Guest_PlaguedSoul": 419071561, - "Guest_HauntingBanshee": 345837052, - "Guest_SimontheSayer": 1352807820, - "Guest_TheHarvestLord": 1923575206, - "Guest_LadyBlackhope": 1403431623, - "Guest_SergeantSkullsplitter": 898737831, - "Guest_Foulgaze": 2063419769, - "Guest_Wormguts": 788697519, - "Guest_Rattlebones": 125602919, - "Guest_Paulson": 1112716921, - "Guest_Grubb": 1167554274, - "Guest_Norton": 581021964, - "Guest_NightStalker": 1447653309, - "Guest_AddereTimeo": 1491420030, - "Guest_TheReaper": 1526369733, - "Guest_AngrusHollowsoul": 1427862805, - "Guest_OrrickNightglider": 951078615, - "Guest_SteelSentinel": 885250894, - "Guest_Shadow-WebSoldier": 2014925398, - "Guest_LostCeleste": 1725301830, - "Guest_CapnNigelSkullcrack": 1665439970, - "Guest_HaulAwayJoe": 1075985331, - "Guest_OldMaui": 15300840, - "Guest_LordAgue": 140791419, - "Guest_MelweenaSmite": 432188189, - "Guest_HalloweenTrickster": 2043736417, - "Guest_PumpkinHead": 1098332105, - "Guest_BaronMordecai": 817370918, - "Guest_KaimaniteMummy": 1332671420, - "Guest_VeggieRevanant": 928504192, - "Guest_BloodBat": 76467389, - "Guest_DeadBeets": 157829578, - "Guest_Desparagus": 1130644076, - "Guest_MeanestFly-Trap": 1652898868, - "Guest_Nosferabbit": 1021159436, - "Guest_ThrallofSothmekhet": 330780177, - "Guest_VileApparition": 426627869, - "Guest_SoulServant": 1183110886, - "Guest_SoulKeeper": 917518313, - "Guest_AdmiralBontau": 2032168402, - "Guest_DeathWhisperer": 3814952, - "Mount_RollerBlades": 111369373, - "Guest_BaneWyrm": 147033576, - "Guest_BlackDragon": 939469656, - "Guest_DragonSpawn": 1829803517, - "Guest_Fire-SpitterSpawn": 616624489, - "Guest_CaoranachtheFire-Spitter": 323513000, - "Guest_Jabberwock": 1552492834, - "Guest_CatalantheLightningLizard": 1155778705, - "Guest_WhiteDragon": 2009449331, - "Guest_WinterWyrm": 478925069, - "Guest_WyrmStatue": 2119216210, - "Guest_AlgidWyrm": 1309546482, - "Guest_BruleeSucre": 390936202, - "Guest_HebitohoWyrmling": 1682026810, - "Guest_Shadowwock": 505539184, - "Guest_EirikurAxebreaker": 1361453552, - "Guest_WarWyrm": 1124740742, - "Guest_StrayFireflier": 610979811, - "Guest_BurningFlamewing": 2041225130, - "Guest_FeralLavaling": 371483057, - "Guest_SplinterWing": 923421333, - "Guest_ChanticoBlueAir": 1572441903, - "Guest_CopperWingGuard": 302783602, - "Guest_ObsidianBeak": 2016227452, - "Guest_CaquixNineShadows": 2070101060, - "Guest_LustrousTlalocan": 1201030473, - "Guest_SeedThief": 263211181, - "Guest_PopZotzUnluckyDay": 1416773489, - "Guest_NezathePoet": 1905861376, - "Guest_MazenStingerBee": 1642023393, - "Guest_ImperialJusticePayne": 1285679745, - "Guest_AssistantWardenPorfiry": 22099059, - "Guest_MarshalKamensky": 524669730, - "Guest_WardenVissarovich": 882556823, - "Guest_GulagGuard": 100744159, - "Guest_CaptainKravchuck": 690830770, - "Guest_ImperialGuard": 346803640, - "Guest_IronPaw": 1797329688, - "Guest_TundarianEnforcer": 134256836, - "Guest_Ivan": 996220221, - "Guest_ColonelOrlov": 1381254189, - "Guest_IronPawIntakeCaptain": 2099184835, - "Guest_SolitaryWarden": 1503529566, - "Guest_CaptainZubkov": 793725366, - "Guest_SergeantBobrik": 722182485, - "Guest_WailingWraith": 946976407, - "EggChick": 1452316301, - "BunnyMallow": 518233330, - "Guest_ThunderHornZombie": 1007920040, - "Guest_SmokingMirrorZombie": 340971759, - "Guest_ShamblingZombie": 1920485146, - "Guest_MoonSkullZombie": 809249764, - "Guest_DeathlessStormHorn": 812397213, - "Guest_MozarTurtleHunter": 561749043, - "Guest_GuillermoShatterer": 499565054, - "Guest_XiuhcoatlBarbedTooth": 1719245305, - "Guest_AzcalFireAnt": 1281366337, - "Guest_TlotzinMoonThief": 407285761, - "Guest_PocaCruelStar": 1117353085, - "Guest_ThunderHornGhoul": 597878999, - "Guest_TezomocStoneSinger": 733511940, - "Guest_EzhuaBadTaste": 632779219, - "Guest_UacalxochitlBloodEye": 1614856226, - "Guest_WanadiBlackSky": 349829749, - "Guest_ElMarrow": 483880636, - "Guest_GrimCalaca": 1534029144, - "Guest_XipeFlayedOne": 1343577398, - "Guest_MotecumaDeathMask": 1782393717, - "Guest_EkeChuah": 13416770, - "Guest_AnacaonaBlackSnake": 1543344897, - "Guest_SmokingMirrorWight": 776452983, - "Guest_Tolkemec": 217428080, - "Mount_Fox": 77199428, - "PP_OwlProtege": 268847192, - "Mount_SharkSki": 331374103, - "PP_Dolphin": 1662291612, - "Mount_CastSymbol_D": 1134428045, - "Mount_CastSymbol_E": 1136525197, - "Mount_CastSymbol_F": 1138622349, - "Mount_CastSymbol_G": 1140719501, - "Mount_CastSymbol_A": 1128136589, - "Mount_CastSymbol_B": 1130233741, - "Mount_CastSymbol_C": 1132330893, - "Guest_LionSpectralGuardian": 1791543691, - "Guest_KillmareSpiritwalker": 1818928165, - "Guest_ZebraSpectralGuardian": 815933596, - "Guest_GorillaSpectralGuardian": 1635182119, - "Guest_IklawGhostWarrior": 373465545, - "Guest_BwanaShadowriver": 1307628747, - "Guest_ElephantSpectralGuardian": 1579402208, - "Guest_ZangaZebu": 1218173119, - "Guest_GrumishGreataxe": 486953385, - "PP_GlowFairy_A": 2028856748, - "Guest_RestlessSoldier": 1142701763, - "Guest_WanderingWizard": 209518514, - "Guest_ColonelIvanenko": 399169035, - "Guest_DetollitheDestroyer": 655767295, - "Guest_Jawniak": 1791298433, - "Guest_Tajniak": 356182394, - "Guest_Ygor": 996316081, - "Guest_KyaniteLancer": 2136703656, - "Guest_VestaShadowmark": 1846747836, - "Guest_ZoraSteelwielder": 1186470644, - "Guest_AndorBristleback": 1949884743, - "Guest_GalliumPaladin": 1812340868, - "Guest_GalliumFootman": 1295203112, - "Guest_GalliumShardtrooper": 1210699836, - "Guest_GalliumJuggernaut": 3527584, - "Guest_VladimirDarkflame": 1575322237, - "Guest_KyaniteLieutenant": 561528977, - "Guest_DrusillaMorningbane": 155837810, - "Guest_KyaniteValkyrie": 53242136, - "Transformation_20Q_SherlockBones": 1112674320, - "Guest_DevoraShadowcrown": 1813459117, - "Guest_YoualaNightDrinker": 881289828, - "Guest_Pendragon": 715669945, - "Guest_CelestianRevenant": 515730327, - "Guest_SoullessServant": 1505662730, - "Guest_SpiritServant": 104517373, - "Guest_SoulSerf": 1188214406, - "Guest_ServileSoul": 871844607, - "Guest_SkeletalCorsair": 239414410, - "Guest_RottedFodder": 1301186193, - "Guest_ScarletScreecher": 600457915, - "PP_FrankBunnyBride_A": 974707030, - "Guest_BastillaGravewynd": 2100015237, - "Guest_VilaraMoonwraith": 2067986693, - "Guest_YngvarSharptooth": 1783361972, - "Guest_TroubledWarrior": 1569033392, - "Guest_VeggieRevanant2": 928503904, - "Guest_VeggieRevanant3": 928503888, - "Guest_VeggieRevanant4": 928503872, - "Guest_VeggieRevanant5": 928503856, - "Guest_AncientQhatWarrior": 1564521104, - "Guest_EmperorPaleolo": 2079384347, - "Guest_SpiritofIntolerance": 1627658048, - "Guest_SpiritofInquiry": 1320544891, - "Guest_FirstGuardian": 1982227776, - "Guest_FallenMerc": 225926286, - "Guest_NightShadow2": 1638183490, - "Guest_NightShadow3": 1636086338, - "Guest_NightShadow2-2": 1436856907, - "Guest_NightShadow3-2": 1434759755, - "Guest_NightShadow4-2": 1432662603, - "Guest_NightShadow5-2": 1430565451, - "Guest_NightShadow6-2": 1428468299, - "Guest_NightShadow7-2": 1426371147, - "Guest_FirstScythe": 738854032, - "Guest_GreyMantisCaptain": 860186057, - "Guest_GreyMantisHunter": 1239274377, - "Guest_Atlach-Leng": 836136649, - "Guest_PetrovGloomstrider": 2045783873, - "Guest_NauyotolDownIntheHole": 1134251106, - "Guest_SandorSpearcaller": 1351072377, - "Guest_MavraFlamewing": 1477685600, - "Guest_Scaldling": 208751819, - "Guest_WoebegoneWraith": 1166488705, - "Guest_BorisBlackrock": 1365399915, - "Guest_KatiaFirewinter": 521255834, - "Guest_ValerikBrightsword": 1244055782, - "Guest_RurikFlamesoul": 1962726850, - "Guest_IonaPyrelance": 722266491, - "Guest_DarkPoltergeist": 818162178, - "Guest_TheCollector": 1772287612, - "Guest_ViktorSnowcrusher": 1028387381, - "Guest_ValeskaRedwind": 19316351, - "Guest_ScarrikGallowgaunt": 105397333, - "Guest_Neberyx": 1453883041, - "Guest_AsrikWidebelt": 401936422, - "Guest_GothricHonorbound": 750072340, - "Guest_HalfangBristlecrown": 618779562, - "Guest_OsvudFleetpaw": 1023466459, - "PP_PufferFish_A": 1578606029, - "Guest_OzelUnderwaterCat": 1033669302, - "PP_BabyGreenMan_A": 910025246, - "PP_SchoolTurtle_A": 1012620678, - "PP_DarkBalloon_A": 1229308566, - "MT_JetsamCopter": 92127678, - "Mount_4P_DarkClownCar": 420246262, - "MNT_BalloonsBunch": 2000358474, - "Guest_TempleGuardian": 632574316, - "Guest_TemplePhantom": 1701097840, - "Guest_MahonStarsearcher": 1549093341, - "Guest_LostKnight": 858980994, - "Guest_AnguishedWoodman": 174606918, - "Guest_TormentedTreant": 294050331, - "Guest_WildfireTreant": 1902129818, - "Guest_BlightedYaxche": 679097088, - "Guest_Junglethorn": 1734561424, - "Guest_Tangleroot": 2027061721, - "Guest_BlightedFreerooter": 1109803061, - "Guest_Winterbranch": 1170787806, - "Guest_DecayingBogwalker": 1338670789, - "Guest_BrownwoodTormentor": 1655181754, - "Guest_Wildroot": 1839747182, - "Guest_Ironsplinter": 668295157, - "Guest_Frostbranch": 75974631, - "Guest_KyoukonteiTreant": 474446232, - "Guest_BrokenStumps": 414724364, - "Guest_WordlessWoodsmen": 1813881830, - "Guest_DesiccatedTreebeard": 1826942903, - "Guest_ShadowoftheLand": 1612385317, - "Guest_TreeRoot": 1406633546, - "Guest_BefouledWoodwalker": 1517919498, - "Guest_ConfusedForestWarrior": 750805985, - "Guest_CrazedForestSpirit": 1007960507, - "Guest_Oakheart": 1158293719, - "Guest_SnowTreant": 1028620035, - "Guest_Snowbeard": 1997921701, - "Guest_BarkskinTreant": 2143957812, - "Guest_RazorleafTreant": 2133159197, - "Guest_CarrionFlowerMan": 1120698936, - "Guest_Kurokage": 355651925, - "Guest_LacombeStrawHouse": 568809873, - "Guest_BerkshireStickHouse": 1932133405, - "Guest_TamworthBrickHouse": 894027634, - "Guest_RustyTinderSpark": 1237916230, - "Guest_CoraWinterBranch": 1901918989, - "Guest_GrambleGoldRook": 1986988546, - "Guest_PiperStormTree": 1109520133, - "Guest_Hanadzura": 124838500, - "Guest_Kuchisaki": 2084188681, - "Guest_Kaizoku": 807430784, - "Guest_JaxonLastRites": 1653711119, - "Guest_SeijunKiller": 657647155, - "Guest_ZarichiTarakata": 1129212566, - "Guest_BladelessRonin": 1577395797, - "Guest_SanzokuOutlaw": 1682888807, - "Guest_SanzokuBandit": 1766198653, - "Guest_KakedaPainbringer": 1260119278, - "Guest_KakedaStalker": 367458449, - "Guest_KakedaShadow": 1604499626, - "Guest_KakedaSoulcrusher": 1961168112, - "Guest_ImitsuPlaguemaster": 1361539025, - "Guest_ImitsuDefouler": 1299791045, - "Guest_ImitsuPunisher": 234819300, - "Guest_StudentofKhai": 249757647, - "Guest_OtomoBattlemage": 918160114, - "Guest_OtomoCourier": 1373253378, - "Guest_OtomoSupplyRunner": 1580070577, - "Guest_OtomoScout": 1814051082, - "Guest_OtomoWrestler": 1053571230, - "Guest_OtomoFury": 111319603, - "Guest_Hyottoko": 307080225, - "Guest_Usunoki": 1881339626, - "Guest_Kagemoosha": 1842766119, - "Guest_UdoJin-e": 850816224, - "Guest_TakedaKanryu": 536087422, - "Guest_Tamauji": 818613882, - "Guest_Jikiru": 794167355, - "Guest_Nomoonaga": 849534658, - "Guest_Aiuchi": 515942855, - "Guest_Kurogaso": 1426248002, - "Guest_Ideyoshi": 1814038213, - "Guest_Koto": 1151260427, - "Guest_Usegi": 977549586, - "Guest_Kanago": 1644367227, - "Guest_Kyuto": 1168225979, - "Guest_Haru": 2070048389, - "Guest_Ashikata": 1523446928, - "Guest_Katsumori": 1823914597, - "Guest_Hingen": 1567896261, - "Guest_Yakedo": 502298497, - "Guest_Do-Daga": 1239945714, - "Guest_Maito": 979260804, - "Guest_TonkatsuThug": 1758658397, - "Guest_GobbloreanGuard": 1286210991, - "Guest_BabblingMeints": 413418139, - "Guest_PrinceGobblestone": 1813171676, - "Guest_GobblerMuncher": 1517159487, - "Guest_GobblerGorger": 130736772, - "Guest_GobblerScouter": 1509427587, - "Guest_GobblerGlutton": 1912199781, - "Guest_GobblerScavenger": 136586791, - "Guest_BaronGreebly": 1028182200, - "Guest_BaronRotunda": 457132907, - "PP_DeathMimic": 1811942047, - "Guest_GreenMan": 1126663802, - "Guest_ForestGrump": 1602350320, - "Guest_ErvintheBarbarian": 1671762776, - "Guest_RazortuskWarrior": 1109994549, - "Guest_RazortuskBrawler": 732265321, - "Guest_SplithoofRager": 1922134329, - "Guest_TuskedRaider": 1920114147, - "Guest_SviniBeserker": 1146317608, - "Guest_SviniReaver": 216717251, - "Guest_Shattertusk": 1191456730, - "Guest_SplithoofBarbarian": 296671728, - "Guest_Bloodseeker": 2086598239, - "Guest_Scarsnout": 1831766077, - "Guest_MasterTonkatsu": 1783298894, - "Guest_Grisletusk": 657393295, - "Guest_SplithoofBloodguard": 488382274, - "Guest_BristlehideRaider": 237078958, - "Guest_Gullin": 1656401882, - "Guest_ForestNymph": 812055814, - "Guest_SassafrasMan": 1327049788, - "Guest_RandolfSpellshine": 108808620, - "Guest_BleysFlamerender": 434070106, - "Transformation_Khan": 1398327634, - "Transformation_TheBat": 1675113521, - "MNT_DireWolf": 845578449, - "MNT_YuleMule": 1976182058, - "MNT_LightBlades": 829118450, - "MNT_FlyingSquid": 1573132252, - "PP_Globulin": 467801224, - "PP_BeastBaby": 1807874692, - "PP_SaniBot": 670845902, - "Mount_SwarmSand": 1277669407, - "Guest_Nodnarb": 211478288, - "Guest_LordBramble": 1118781162, - "Guest_Yogash": 506264561, - "Guest_Marcio": 499428996, - "Guest_Procyon": 1115376865, - "Guest_Thunderfin": 2029218563, - "Guest_ArkynMoonblade": 1152775206, - "Guest_CreeCurdWright": 1714953095, - "Guest_DeerMouseRevenant": 315064435, - "Guest_ElanaDarksun": 837982094, - "Guest_KingAlricFateSailor": 1934591130, - "Guest_LaughingCalaca": 984492527, - "Guest_WraithKnight": 620484548, - "Guest_FieryEchoofApep": 484636593, - "Guest_FrostyEchoofApep": 171933154, - "Guest_FalseEchoofApep": 479387377, - "Guest_ChargedEchoofApep": 1229406800, - "Guest_ShrowdengersQhat": 101563303, - "Guest_Scrollkeeper": 643219293, - "Guest_TerrorHound": 753341570, - "Guest_CondemnedMander": 445370758, - "Mnt_SnowStorm": 1491572670, - "Mount_ChimneySweeper": 378571534, - "MNT_PineappleCandyCane": 1630795796, - "Guest_TyphonDustwind": 740849673, - "MNT_StickHorse": 216654744, - "MimicTemplate": 1461219184, - "MNT_Ball_N_Chain": 289720920, - "PP_PeaceDove_A": 1785119671, - "Mount_Gyrocycle": 1495008048, - "PP_BattleMageDragon_A": 1864696711, - "MNT_BattleBeast": 1304449286, - "MNT_SmokeTrails": 387873030, - "Mount_FriendshipHare": 677127330, - "MNT_ButterflySwarm": 383602683, - "PP_EggChick_B": 1959154042, - "MNT_Unicorn": 562210585, - "PP_StuffedUnicorn": 1731641773, - "MNT_ParadeTruck": 2026348978, - "MNT_ParadeTruckXmas": 1017864627, - "MNT_AutumnLeafSwarm": 1540002279, - "PP_GingerbreadMan": 1796172229, - "PP_DecadeDragon": 1819398630, - "MNT_StageShip": 829852992, - "PP_DramaLlama": 255896529, - "PP_HallMinotaur_A": 1492017563, - "Guest_MacDeath": 1526226705, - "Guest_MacDeathUnderstudy": 1731752647, - "Guest_MacLifeUnderstudy": 257466641, - "Guest_MacStormUnderstudy": 8295117, - "MNT_Pantera": 1135198, - "MNT_StagLight": 1908778048, - "MNT_GiantSpider": 1247185021, - "MNT_StagEvil": 872303931, - "PP_BaskHound": 1093866594, - "PP_Marionette": 1688299938, - "PP_Marionette_B": 1688297824, - "Guest_Izft": 996301405, - "Guest_SapotisMinion": 1625665891, - "Guest_CrazedSlave": 1473233468, - "Guest_CharmedSlave": 803043667, - "Guest_EnsorcelledSlave": 40920285, - "Guest_HallServant": 2038116460, - "Guest_SiathePerceiver": 1235571913, - "Guest_Kiwu": 1151177787, - "Guest_NightImp": 1051843424, - "Guest_EvilTrickster": 1035477123, - "Guest_DeepWoodsImp": 1502444054, - "Guest_ForestPest": 802235713, - "Guest_TaintedForestImp": 1030343985, - "Guest_Youkai": 518367729, - "Guest_CarthaginianElephantWarrior": 776293919, - "Guest_IdrisBeast-Taker": 106759521, - "Guest_MikaSkarka": 237956516, - "Guest_Belloq": 757247833, - "Guest_GurtokPiercer": 549466122, - "Guest_GurtokFirebender": 817966523, - "Guest_GurtokDemon": 544070162, - "Guest_GeneralFiretusk": 2073037770, - "Guest_GurtokBarrierDemon": 44657563, - "Guest_BlacktuskShaman": 1009070925, - "Guest_FireDemon": 158367196, - "Guest_DeathOni": 1916642000, - "Guest_JadeOni": 1289517185, - "Guest_PlagueOni": 1464586443, - "Guest_WarOni": 1630196094, - "Guest_BrokenLandMammoth": 1587008312, - "Guest_SunderedSeamMammoth": 1272698721, - "Guest_BullyMammoth": 170705927, - "Guest_Bullhemoth": 146998717, - "Guest_Kogasha": 1909654543, - "Guest_MusuthBerserker": 1741298129, - "Guest_BlackTuskCultist": 1771575961, - "Guest_AksilBlacktrunk": 1253596409, - "Guest_LongdreamerShaman": 1521283133, - "Guest_MuratGreyeyes": 1296814314, - "Guest_ElephantSoldier": 1443670145, - "Guest_DarajaniGuard": 1597288495, - "Guest_Loremaster": 1792470809, - "Guest_Pork": 2069999347, - "Guest_Beans": 97706585, - "MNT_Ox": 1292937747, - "PP_PropellerSquirrel": 1657443894, - "Guest_RasikPridefall": 97921485, - "Guest_AmedrasLightstep": 1818417025, - "MNT_SmokeTrails_Balance": 1358150715, - "MNT_SmokeTrails_Fire": 702971609, - "MNT_SmokeTrails_Ice": 190218501, - "MNT_SmokeTrails_Life": 2045542105, - "MNT_SmokeTrails_Myth": 1276281121, - "MNT_SmokeTrails_Storm": 564954622, - "Guest_Bellosh": 1407013027, - "Guest_AcampiReedfist": 2076527733, - "Guest_AgnettaBroadblade": 14864960, - "Guest_FrostheartRaider": 1574787221, - "Guest_JordaSwordbearer": 1627071850, - "Guest_KasaiBaku": 1153107369, - "Guest_ZoraimeiHelephant": 1002482606, - "Guest_ConscriptedMander": 43811125, - "Firecat_Decade": 409516955, - "MNT_BatGlider": 2086258491, - "Transformation_PlayerHomework": 673389670, - "Transformation_PlayerAttendance": 422287307, - "Transformation_PlayerLecture": 2035625874, - "Transformation_PlayerPopQuiz": 483367038, - "MNT_GingerbreadHorse": 1369242781, - "MNT_NimbariChariot": 1251740392, - "PP_NimbariDog": 1235126828, - "Transformation_PlayerGrandma": 1128332272, - "Transformation_PlayerScionA": 33862367, - "PP_Mushroom": 1568942158, - "MNT_Scooter": 1148167046, - "MNT_Scooter_B": 2079302532, - "MNT_Scooter_C": 1810867076, - "MNT_Scooter_D": 468689796, - "MNT_IceCycle": 415797788, - "Transformation_PlayerScionA02": 33921759, - "Guest_FearoftheFuture": 947210229, - "Guest_FearofGremlins": 405857384, - "Guest_RootGuardian": 922940845, - "Guest_VineThrasher": 172546427, - "Guest_BlightWalker": 1438155154, - "Guest_BriarScourge": 615681851, - "Guest_DreamJabberwock": 907754098, - "Guest_DreamBelloq": 990352002, - "Guest_Voltergeist": 1558128068, - "Guest_SpecialBranch": 1927849418, - "Guest_MutantBriar": 805892802, - "Guest_FeralBriar": 883790223, - "Guest_MaizeMonster": 688905764, - "Guest_DreamShadowwock": 1432458248, - "Mount_Heartboard": 1421972759, - "PP_ChocoBunny": 324797859, - "Mount-PogoFlower": 906659501, - "MNT_AethyrCloud": 1586061078, - "MNT_Fangle": 7846854, - "Guest_StarfallSpider": 1177620831, - "Guest_AshSpider": 1588502553, - "Guest_CorruptedWeaver": 38937211, - "Guest_CrystalCrawler": 1197980149, - "Guest_ShimmerWidow": 1300740128, - "Guest_FacetedSpikespinner": 1939719331, - "Guest_CrystallineQueen": 1999282256, - "Guest_AncientCrystalweaver": 1409608801, - "Guest_FangtoothLavaspinner": 1538042104, - "Guest_VenomousHeatseeker": 1234682482, - "Guest_FireweaveRockbiter": 300743778, - "Guest_MonkeySpider": 754090007, - "Guest_CryptSpider": 1545405304, - "Guest_CommonHouseSpider": 613486002, - "Guest_ArachnaMagnaMagus": 825817937, - "Guest_ArachnaSoldier": 270978709, - "Guest_Gnissa": 1699826178, - "Guest_WebwoodScuttler": 1728611075, - "Guest_SandSpider": 61789007, - "Guest_WebwoodCreeper": 1013382584, - "Guest_Skathi": 1631429165, - "Guest_ArchmagusLorcan": 321146960, - "Guest_CrawleroftheMist": 2076696304, - "Guest_PaintedSpider": 1482115552, - "Guest_GiantSpider": 1545526191, - "Guest_CaveCrawler": 2101587667, - "Guest_RattleCatcher": 1472707326, - "Guest_TrapdoorSpider": 1321643694, - "Guest_RockClinger": 1304266411, - "Guest_InquisitorXimenez": 1053483090, - "Guest_ElderMagus": 1017836836, - "Guest_WardenBenthamic": 18807199, - "Guest_SpiderArchmagus": 387645558, - "Guest_SpiderAdept": 2094873407, - "Guest_InterrogatorRentenius": 1245984179, - "Guest_WarpedWeaver": 495882677, - "Guest_ArachnaSkinner": 281864085, - "Guest_SkinnerConscript": 2028526453, - "Guest_ArachnaGladiator": 2492046, - "Guest_LorcanInitiate": 353311753, - "Guest_Serket": 1871335773, - "Guest_IceWeaver": 2063216026, - "Guest_SpiritSpinner": 525666327, - "Guest_MysteriousCrawler": 218352756, - "Guest_BlackWidow": 1909331619, - "Guest_BrownRecluse": 1146386275, - "Guest_Creeper": 1197442790, - "Guest_GearSpinner": 67020478, - "Guest_Clinker": 1194519062, - "Guest_Clanker": 1194517014, - "Guest_GrandfatherSpider": 1330981335, - "Guest_Spiderling": 1400274461, - "Guest_ManekiWebWalker": 888348786, - "Guest_KoganiDeathCrawler": 276010604, - "Guest_CheliceranCrawler": 1169176517, - "Guest_ArachniteCreeper": 1850534774, - "Guest_ChelicaranStalker": 2057291848, - "Guest_HornedMonkeySpider": 1301514577, - "Guest_GreyOgreSpider": 1533774471, - "Guest_StarburstSpider": 698029451, - "Guest_PaintedCaveMonster": 601315479, - "Guest_RubbleRouser": 220785666, - "Guest_EarthElemental": 435260049, - "Guest_SharpshardWarrior": 1403237237, - "Guest_Firevein": 1220046430, - "Guest_Blackblade": 458130537, - "Guest_VengefulFireheart": 563205004, - "Guest_FirerockStomper": 608552855, - "Guest_BlackrockGuardian": 1663799582, - "Guest_ConfusedSentry": 24655510, - "Guest_SilverSentinel": 1090673683, - "Guest_SilverServant": 84560693, - "Guest_GiantHomunculus": 456098557, - "Guest_PropertyMaster": 229101764, - "Guest_VaultProtector": 185568207, - "Guest_PlatedDefender": 79324363, - "Guest_Avalanche": 761613547, - "Guest_RockReaver": 919912933, - "Guest_Frostmantle": 856308090, - "Guest_GlacierWalker": 131215932, - "Guest_SandBehemoth": 272513357, - "Guest_RunedAnnihilator": 121339936, - "Guest_RunedDevestator": 1611071181, - "Guest_RunedGuardian": 1986312667, - "Guest_CanyonRager": 1123038266, - "Guest_RubbleReaver": 220774678, - "Guest_Boulderbone": 122279242, - "Guest_Nali": 77467516, - "Guest_Gnar": 1151164930, - "Guest_GlacialAvenger": 1181253632, - "Guest_SokkwiKeymaster": 190919624, - "Guest_SandsofTime": 34920273, - "Guest_BladeGolem": 435561523, - "Guest_FrostColossus": 1564686403, - "Guest_IceColossus": 335477257, - "Guest_PollutedEarthWalker": 86045387, - "Guest_CorruptedEarthSpirit": 1135891559, - "Guest_Stonebreaker": 1317905436, - "Guest_StoneElemental": 1715022018, - "Guest_VolcanisGolem": 1904918929, - "Guest_WaterElemental": 1717850987, - "Guest_AshenDeathMonkeySpider": 35356665, - "Guest_DeathMonkeySpider": 1525508507, - "Guest_MotherMonkeySpider": 110317392, - "Guest_DoomMonkey": 1135105500, - "Guest_DreamMorganthe": 907599965, - "Guest_DragonBeetle": 1974635734, - "Guest_SandWalker": 1530843985, - "MNT_PandaMama": 916371162, - "PP_BabyPandas": 778536285, - "PP_FrogPrince": 729975205, - "MNT_PumpkinCarriage": 183672737, - "Mount_Gobbler_B": 1193388729, - "PP_Hamster": 1578040708, - "Guest_Steeleton": 657429968, - "Guest_GoldenWyrm": 311022393, - "MNT_Roc": 1564431869, - "PP_BabyGriffin": 1913686406, - "Transformation_ShadowDPSMob": 936133896, - "Transformation_ShadowTankMob": 305660992, - "Transformation_ShadowHealMob": 356596800, - "Guest_SpiritofIgnorance": 1577360126, - "Guest_FecklessSoul": 519648315, - "Guest_BurnedOutSoul": 312181646, - "Guest_BenightedRevenant": 2131956962, - "Guest_TombLurker": 1901203489, - "Guest_DesertGolem": 543642682, - "Guest_KumoOni": 215822625, - "Guest_SpellwritStalker": 161772776, - "PP_Sun": 1723237840, - "Guest_Leadite": 4480416, - "Mount_FestiveFox": 2125832348, - "PP_FenrisWolf": 1601784680, - "PP_SchoolPiggle": 109782407, - "PP_FenrisWolf_Red": 1597992854, - "PP_FenrisWolf_Teal": 1455058454, - "PP_FenrisWolf_White": 1102186199, - "Transformation_NinjaPig_Fire": 984575055, - "Transformation_BG_RatThief_Myth": 1191155131, - "Transformation_BG_RatThief_Storm": 675891897, - "MNT_Umbrella": 955683437, - "Transformation_BG_Elf_Ice": 1209681129, - "Transformation_BG_Fairy_DarkMinion_Balance": 33521202, - "Transformation_BG_Cyclops_Death": 876023972, - "Transformation_BG_Minotuar_Fire": 1118476387, - "Transformation_BG_WolfWarrior_Storm": 2075594475, - "Transformation_BG_WolfWarrior_Balance": 746159992, - "Transformation_BG_Draconian_Myth": 903606820, - "Transformation_BG_Draconian_Life": 1501291044, - "Transformation_BG_Colossus_Life": 1320377666, - "MNT_DolphinChariot": 102982520, - "MNT_EvilWagon": 685457563, - "MNT_FlyingDutchman": 1176206544, - "PP_SeaHorse": 2024322494, - "PP_EvilTeddy": 1159020925, - "PP_ZombieParrot": 384805107, - "Transformation_BG_Ice_Colossus": 299613211, - "MNT_CarrierBat": 7323333, - "Transformation_BG_Minotaur_MythTempalte": 430330904, - "PP_FeatheredTabby": 452526748, - "Transformation_Detritus01": 1335763402, - "Guest_Metallossus": 335457082, - "MNT_SantaJaws": 464410203, - "MNT_BattleBadger": 532858222, - "Transformation_Shedder01": 2069145892, - "PP_NatureSpirit": 373176286, - "Transformation_Devourer01": 1004421540, - "Guest_TheDevourer": 1591187996, - "Guest_Treeminder": 1093207850, - "Guest_RenegadeDruid": 2087982292, - "Guest_FractalTreeminder": 927174548, - "Guest_UnsettledTreeminder": 486164163, - "Guest_DragonspyreCrusader": 247317280, - "Guest_YoungGreggor": 66068670, - "Guest_GeneralGreyflame": 499924835, - "Guest_OldGreggor": 391726170, - "Guest_PrinceViggor": 853556298, - "Guest_DragonspyreVanguard": 693851565, - "Guest_SilasConviction": 177362659, - "Guest_SilasWeariness": 893431021, - "Guest_SilasRage": 1288904439, - "Guest_SilasDoubt": 1479426285, - "Guest_Lorekeeper": 147779344, - "Guest_FelixPhotomongerIII": 68387506, - "Guest_WarHavox": 1634324022, - "Guest_Mis-assembledSkeleton": 221832082, - "Guest_TreeminderGhost": 200408510, - "Guest_ViggorsDrake": 340449521, - "Guest_BlueNinjaPig": 938539327, - "Guest_RedNinjaPig": 2097962021, - "Guest_OrangeNinjaPig": 625058258, - "Guest_PurpleNinjaPig": 445746449, - "Guest_RitualColossus": 844563319, - "Guest_TinyDragon": 1123127688, - "Guest_RitualSpider": 429827552, - "Guest_RitualDraconian": 837510372, - "Guest_CC_Druid_Warrior_C_01": 55314616, - "Guest_CC_Druid_Wizard_A_01": 1046261169, - "Guest_CC_Druid_Wizard_B_01": 1046244785, - "Guest_CC_Druid_Warrior_A_01": 56363192, - "MNT_Toboggan": 995356805, - "MNT_2P_WickerTreant-001": 2065440944, - "PP_Ratatoskr": 1003497600, - "PP_Trash": 1195047012, - "Guest_CC_Druid_Wizard_D_01": 1046343089, - "MNT_Sunflower": 721091531, - "MNT_Whoopee": 1383311238, - "MNT_Warthog": 8060761, - "PP_ShamRock": 943893325, - "PP_LeapingLeprechaun": 132882517, - "PP_LionCubs": 465759803, - "PP_Tanuki": 670387843, - "MNT_Crane": 433122675, - "MNT_Krokosphinx": 739938754, - "Transformation_BG_Fairy_Life": 1897480818, - "Transformation_LiceDeepSpawnA": 244795720, - "Piggle_Alien": 1761605655, - "PP_JeweledScarab": 620544607, - "Guest_KR_Nymph_DrkMage_D50": 1248526054, - "Guest_KR_Nymph_DrkMage_C50": 1246953190, - "Guest_KR_Nymph_DrkMage_B50": 1247477478, - "Guest_KR_Nymph_DrkMage_A50": 1245904614, - "Guest_EM_Spider_Ash_01": 185724938, - "UFO": 47349, - "PP_Kit10": 326796620, - "PP_Lumi_Tulip": 84119585, - "PP_Lumi_Fern": 117015078, - "PP_Lumi_Violet": 1468797578, - "PP_Lumi_Sunny": 1769236703, - "PP_Lumi_Daisy": 1743454175, - "MNT_CelestianMech": 1238076872, - "MNT_Brontosaurus": 402157167, - "Guest_HG_AKT_Krok_Cyber_A_Balance_25": 1367985604, - "Guest_HG_AKT_Krok_Cyber_A_Balance_50": 1368084932, - "Guest_HG_AKT_Krok_Cyber_A_Balance_75": 1367988676, - "Guest_HG_AKT_Krok_Cyber_A_Balance_100": 1351303620, - "Guest_HG_AKT_Krok_Cyber_A_Balance_130": 1351270852, - "Guest_HG_AKT_Krok_Cyber_A_Fire_25": 976558490, - "Guest_HG_AKT_Krok_Cyber_A_Fire_50": 37034397, - "Guest_HG_AKT_Krok_Cyber_A_Fire_75": 305469850, - "Guest_HG_AKT_Krok_Cyber_A_Fire_100": 573905821, - "Guest_HG_AKT_Krok_Cyber_A_Fire_130": 573905824, - "Guest_HG_AKT_Krok_Cyber_A_Ice_25": 159411377, - "Guest_HG_AKT_Krok_Cyber_A_Ice_50": 541093041, - "Guest_HG_AKT_Krok_Cyber_A_Ice_75": 146828465, - "Guest_HG_AKT_Krok_Cyber_A_Ice_100": 557870241, - "Guest_HG_AKT_Krok_Cyber_A_Ice_130": 960523425, - "Guest_HG_AKT_Krok_Cyber_A_Myth_25": 976187830, - "Guest_HG_AKT_Krok_Cyber_A_Myth_50": 36663729, - "Guest_HG_AKT_Krok_Cyber_A_Myth_75": 305099190, - "Guest_HG_AKT_Krok_Cyber_A_Myth_100": 573535153, - "Guest_HG_AKT_Krok_Cyber_A_Myth_130": 573535156, - "Guest_CL-GolemButler-R9": 780077559, - "Guest_CL-GolemDigger-Boss-R10": 562020288, - "Guest_CL-GolemDigger-R9": 789375095, - "Guest_CL-GolemDigger-Rank8MythBoss-R10": 930527857, - "Guest_CL-GolemWorker-R9-1": 1072815287, - "Guest_CL-FishbotBrown-R9-1": 2006155417, - "Guest_CL-FishbotBrown-R9-2": 395542681, - "Guest_CL-FishbotGold-Boss-R10": 611881707, - "Guest_CL-FishbotGold-R9": 705414492, - "Guest_CL-FishbotYellow-Boss-R10": 23145662, - "Guest_CL-Protector-Black-Boss-R10-2": 679228793, - "Guest_CL-Protector-Gold-R10": 1909636609, - "Guest_CL-Protector-Gold-R9-1": 1909634804, - "Guest_CL-Protector-Gold-R9-2": 1909634932, - "Guest_CL-Protector-Gold-R9-3": 1909635060, - "Guest_CL-Protector-Gold-R9-4": 1909634164, - "Guest_CL-Protector-Purple-R9-Boss": 1889837072, - "Guest_CL-Protector-Purple-R9": 81760161, - "Guest_CL-Protector-Tan-Boss-R10": 912663188, - "Guest_KR_Golem_Worker": 1784607296, - "Guest_Golem-Brass-R7-1": 718939445, - "Guest_Golem-Clockwork-R7": 1161173708, - "Guest_EM_Robot_Batbot_A_01": 1482867950, - "Guest_EM_Robot_Batbot_B_02": 945947886, - "Guest_EM_Robot_Batbot_B_01": 1482818798, - "Guest_EM_Robot_Batbot_B_03": 409076974, - "Guest_EM_Robot_Batbot_B_04": 127793938, - "Guest_EM_Robot_Batbot_B_05": 664664850, - "Guest_EM_Robot_Drone_A_02": 1215188569, - "Guest_EM_Robot_Drone_A_03": 1231965785, - "Guest_EM_Robot_Drone_A_01": 1265520217, - "Guest_EM_Robot_Drone_A_04": 1315851865, - "Guest_EM_Robot_Drone_A_05": 1332629081, - "Guest_EM_Robot_Drone_A_06": 1282297433, - "Guest_EM_Robot_Drone_A_07": 1299074649, - "Guest_EM_Robot_Drone_A_08": 1114525273, - "Guest_EM_Robot_Drone_A_09": 1131302489, - "Guest_EM_Robot_Drone_A_Boss_01": 1960661151, - "Guest_EM_Robot_Drone_A_Boss_02": 1960530079, - "Guest_EM_Robot_Drone_E_01": 1265518169, - "Guest_EM_Robot_Tank_A_01": 1314796420, - "Guest_EM_Robot_Tank_A_02": 1313223556, - "Guest_EM_Robot_Drone_C_02": 1215187545, - "Guest_EM_Robot_Drone_D_03": 1231963225, - "Guest_EM_Robot_Drone_D_01": 1265517657, - "Guest_EM_Robot_Drone_D_02": 1215186009, - "Guest_EM_Robot_Tank_B_01": 1314796468, - "Guest_EM_Robot_Drone_C_01": 1265519193, - "Guest_G14-BP-Golem_Steel_Boss": 2071105129, - "Guest_G14-BP-Golem_Steel_Puzzle": 715790979, - "Guest_Golem-Brass-Elite-L38": 1163662532, - "Guest_Golem-Brass-Elite-L56": 2057562884, - "Guest_Golem-Brass-MBBoss-L48": 1498830732, - "Guest_Golem-Brass-MBBoss-L71": 1498829576, - "Guest_Golem-Brass-MBBoss-L76": 1498828936, - "Guest_Golem-Clockwork-Elite-L54-Metal": 417151527, - "Guest_Golem-Clockwork-Elite-L37": 1961943722, - "Guest_Golem-Clockwork-Elite-L54": 1950147242, - "Guest_Golem-Clockwork-L28": 1561959116, - "Guest_Golem-Clockwork-MBBoss-L37": 973152783, - "Guest_Golem-Clockwork-MBBoss-L69": 1262559759, - "Guest_Golem-Steel-Elite-L39": 1430496717, - "Guest_Golem-Steel-MBBoss-L40": 1229578887, - "Guest_Golem-Steel-MBBoss-L43": 1229579015, - "Guest_Golem-Steel-MBBoss-L50-1": 1231762051, - "Guest_Golem-Steel-MBBoss-L50": 1229578883, - "Guest_Golem-Steel-MBBoss-LXX": 1229583927, - "Guest_Golem-Wood-Elite-L35": 904360756, - "Guest_Golem-Wood-Elite-L37": 1978102580, - "Guest_Golem-Wood-Elite-L50": 1813548236, - "Guest_Golem-Wood-MBBoss-L63": 1392041724, - "Guest_MB-Gauntlet-Golem-Clockwork": 854649045, - "Guest_Spider-Golem-MBBoss-L67": 253352706, - "Guest_Spider-Golem-MBBoss-L96": 253348994, - "Guest_WC-MAW-GasGolem-Minion": 1511013798, - "Guest_WC-MAW-GasGolemLife-Minion": 1306026584, - "Guest_Golem-Steel-L02": 1027229749, - "Guest_Golem-Clockwork-L01": 1409915596, - "Guest_Gauntlet-01-Golem-Steel-Ghost-R8": 402816318, - "Guest_Golem-Wood-L01": 156976035, - "Guest_HG-Clock-ClockworkSpanner-20": 1523370449, - "Guest_HG-Clock-ClockworkSpanner-40": 1523370455, - "Guest_HG-Clock-ClockworkSpanner-60": 1523370453, - "Guest_HG-Clock-ClockworkSpanner-80": 1523370459, - "Guest_HG-Clock-ClockworkSpanner-100": 1523354068, - "Guest_HG-Clock-ClockworkSpanner-120": 1523354004, - "Guest_AQ-Cyclops-Guard": 191361948, - "Guest_AQ_Cyclops_Guard_A_Boss_01": 114747100, - "Guest_CL-Cyclops-Death-R10": 611013866, - "Guest_Cyclops-Death-Boss-R7": 1192370725, - "Guest_Cyclops-Death-Boss-R9": 1192370717, - "Guest_Cyclops-Death-R7": 144593791, - "Guest_GH-Cyclops-Death-R6": 594236619, - "Guest_Cyclops-BlueHelmet-KTBoss-L03": 1720105277, - "Guest_Cyclops-Red-L12": 1816429840, - "Guest_MR_Cyclops02WHelmet_Model_01": 1483732416, - "Guest_Cyclops-Blue-L02": 1633021234, - "Guest_Cyclops-BlueHelmet-WCBoss-L03": 427378332, - "Guest_Cyclops-RedHelmet-WCBoss-L03": 2021269422, - "Guest_HG_Sinbad_Cyclops_25": 911979034, - "Guest_HG_Sinbad_Cyclops_50": 1856261606, - "Guest_HG_Sinbad_Cyclops_75": 861647386, - "Guest_HG_Sinbad_Cyclops_100": 1789152678, - "Guest_HG_Sinbad_Cyclops_130": 178539942, - "Guest_HG_Sinbad_IronSultan_25": 930031152, - "Guest_HG_Sinbad_IronSultan_50": 930051504, - "Guest_HG_Sinbad_IronSultan_75": 930030768, - "Guest_HG_Sinbad_IronSultan_100": 927954864, - "Guest_HG_Sinbad_IronSultan_130": 927942576, - "MNT_SweetRide": 1643297840, - "PP_FrilledDino": 1395342809, - "PP_Celestian": 95679303, - "PP_Sun_Angry": 1955190071, - "PP_Marshmallow": 1220667954, - "MNT_Umbrella_B": 923364822, - "MNT_Tamer": 1050737194, - "PP_BumbleBee_B": 858653433, - "MNT_PunkFlamingo": 1634690818, - "MNT_2P_WoolyRhino": 1395943031, - "PP_Retriever": 72842604, - "PP_Piggle_Caveman": 181356174, - "PP_DecennialDragon": 1396523337, - "MNT_Tiger_Rainbow": 515535412, - "MNT_CarrierGhosts": 1833039309, - "MNT_Sled": 617654308, - "Transformation_BG_RatThief_Death": 30691641, - "Transformation_BG_Elf_Storm": 44352983, - "Transformation_BG_WolfWarrior_Ice": 986304351, - "MNT_CarriorGhost_B": 1768732109, - "MNT_CarriorGhost_C": 1766634957, - "Transformation_BG_Colossus_Fire": 1318803522, - "Transformation_BG_Krok_Balance": 140952965, - "Guest_KM_Gobbler_Skinny_A_11": 773648065, - "Guest_KM_Robot_Candy_A_01": 480414124, - "Guest_KM_Robot_Candy_A_02": 530745772, - "Guest_KM_Robot_Candy_A_03": 513968556, - "Guest_KM_Robot_Candy_A_04": 430082476, - "Guest_KM_Robot_Candy_A_05": 413305260, - "Guest_KM_Gummy_Bear_A_01": 1940905059, - "Guest_KM_Gummy_Bear_D_01": 1940905011, - "Guest_KM_Gummy_Bear_E_01": 1940904995, - "Guest_KM_Gummy_Bear_A_02": 1941429347, - "Guest_KM_Gummy_Bear_D_02": 1941429299, - "Guest_KM_Gummy_Bear_E_02": 1941429283, - "Guest_KM_Gummy_Bear_B_01": 1940905043, - "Guest_KM_Gummy_Bear_B_02": 1941429331, - "Guest_KM_Gummy_Bear_B_03": 1941953619, - "Guest_KM_Gummy_BearHat_A_01": 853226448, - "Guest_KM_Gummy_BearHat_A_02": 853226460, - "Guest_KM_Gummy_Bunny_A_01": 324805042, - "Guest_KM_Gummy_Bunny_C_01": 324806066, - "Guest_KM_Gummy_Bunny_D_01": 324807602, - "Guest_KM_Gummy_Bunny_E_01": 324807090, - "Guest_KM_Gummy_Bunny_F_01": 324808626, - "Guest_KM_Gummy_BunnyUber_A_01": 525565930, - "Guest_KM_Gummy_Worm_A_01": 231044195, - "Guest_KM_Gummy_Worm_B_01": 231044179, - "Guest_KM_Gummy_Worm_C_01": 231044163, - "Guest_KM_Gummy_Worm_A_02": 232617059, - "Guest_KM_Gummy_Worm_B_02": 232617043, - "Guest_KM_Gummy_Worm_C_02": 232617027, - "Guest_KM_Gummy_Bear_F_01": 1940904979, - "Guest_KM_Gummy_Bear_F_02": 1941429267, - "Guest_KM_Gummy_Bunny_C_02": 274474418, - "Guest_KM_Robot_Candy_A_06": 463636908, - "Guest_KM_Alphoi_DarkF_A_01": 475441543, - "Guest_KM_Gobbler_Skinny_A_01": 773648069, - "Guest_KM_Gobbler_Skinny_A_02": 773648197, - "Guest_KM_Gobbler_Skinny_A_03": 773648325, - "Guest_KM_Gobbler_SkinnyF_A_01": 254411012, - "Guest_KM_Gobbler_Skinny_A_04": 773647429, - "Guest_KM_Gobbler_Skinny_A_05": 773647557, - "Guest_KM_Gobbler_Skinny_A_06": 773647685, - "Guest_KM_Gobbler_SkinnyF_A_02": 254423300, - "Guest_KM_Gobbler_Skinny_A_07": 773647813, - "Guest_KM_Gobbler_Skinny_A_08": 773646917, - "Guest_KM_Gobbler_Skinny_A_09": 773647045, - "Guest_KM_Gobbler_SkinnyF_A_03": 254419204, - "Guest_KM_Gobbler_Fat_A_01": 1440595742, - "Guest_KM_Gobbler_Fruit_B_01": 1236446660, - "Guest_KM_Gobbler_Fruit_A_01": 1235922372, - "Guest_KM_Gobbler_Guard_B_01": 1435667582, - "Guest_KM_Gobbler_Skinny_A_10": 773647937, - "Transformation_PlayerBabyCarrot": 1580787628, - "Transformation_PlayerDeadBeet": 1992261692, - "Transformation_PlayerDisparagus": 373797484, - "Transformation_PlayerSnowPeas": 634199102, - "PP_Snowflake": 2036143125, - "PP_GummyBear_Myth": 117787890, - "PP_GummyBear_Death": 236577760, - "PP_GummyBear_Balance": 2100524337, - "PP_GummyBear_Life": 118020336, - "PP_GummyBear_Fire": 117995748, - "PP_GummyBear_Storm": 247437198, - "PP_GummyBear_Ice": 122536570, - "MNT_SnowOwl": 1578473542, - "Guest_KM_Gummy_Bear_Uber_A_01": 1856208859, - "Guest_KM_Gummy_Bear_Uber_A_02": 1856196571, - "MNT_ChocolateMoose": 567538552, - "MNT_Ram_Candied": 1913603720, - "Guest_KM_Spider_Mage_A_01": 1529720120, - "Guest_KM_Spider_Mage_B_01": 1529719608, - "Guest_KM_Spider_Mage_C_01": 1529719096, - "Guest_KM_Spider_Mage_D_01": 1529718584, - "Guest_KM_Spider_Mage_E_01": 1529718072, - "PP_SpriteDark_Balance": 914900728, - "MNT_Tricycle": 991465753, - "Guest_Tri-Gauntlet-Protector-Gold": 2029952053, - "Guest_Tri-Gauntlet-FishbotGold": 130267882, - "Guest_HG-Clock-Clockworker-20": 281216243, - "Guest_HG-Clock-Clockworker-40": 281217011, - "Guest_HG-Clock-Clockworker-60": 281216755, - "Guest_HG-Clock-Clockworker-80": 281215475, - "Guest_HG-Clock-Clockworker-100": 283313523, - "Guest_HG-Clock-Clockworker-120": 283321715, - "Guest_HG-Clock-Lugs-20": 1452756928, - "Guest_HG-Clock-Lugs-40": 1452756960, - "Guest_HG-Clock-Lugs-60": 1452756992, - "Guest_HG-Clock-Lugs-80": 1452756768, - "Guest_HG-Clock-Lugs-100": 1452494736, - "Guest_HG-Clock-Lugs-120": 1452493712, - "Guest_HG-Clock-Lucia-20": 1041451626, - "Guest_HG-Clock-Lucia-40": 1041450602, - "Guest_HG-Clock-Lucia-60": 1041449578, - "Guest_HG-Clock-Lucia-80": 1041456746, - "Guest_HG-Clock-Lucia-100": 1049840746, - "Guest_HG-Clock-Lucia-120": 1049873514, - "Guest_KM_Gummy_Worm_A_03": 232092771, - "MNT_Scooter_E": 200254340, - "PP_WolfWarrior_Balance": 991302673, - "PP_PetGift": 1816280689, - "PP_RatThief": 1390866051, - "Guest_PL_Titan_Small_A": 2015819364, - "Guest_PL_Titan_Large_B": 699791264, - "Guest_PL_Titan_Medium_A": 326730424, - "PP_Draconian": 1631557208, - "MNT_Pantera_Astral": 106092538, - "PP_YearOx": 105653084, - "PP_WolfWarrior_Ice": 1043644935, - "PP_SpriteDark": 2031730054, - "PP_Brudel": 1355697143, - "MNT_Astronomers": 742732792, - "MNT_CouchPotato": 418050932, - "MNT_Flowerfarthing": 1396771051, - "MNT_Astronomers_Blue": 236532779, - "MNT_Astronomers_Rainbow": 4428274, - "PP_Astronomer": 782095961, - "Guest_KM_Gummy_Bunny_B_01": 324806578, - "Guest_KM_DeadBeets_A_01": 1396016635, - "MNT_GummyBunny": 775900704, - "MNT_GummyBunny_A": 775834080, - "MNT_GummyBunny_B": 775836128, - "MNT_GummyBunny_C": 775838176, - "Transformation_BG_Minotaur_Life": 1445109091, - "MNT_Armadillo": 825635826, - "PP_SootGremlin": 768969093, - "PP_RoadRunner": 2057802060, - "MNT_TinyTrolly": 160881792, - "PP_Frog_B": 1530124761, - "MNT_FjordDragon": 129204340, - "Transformation_BG_NinjaPig_Myth": 422914079, - "PP_CorgiPup": 1638656105, - "MNT_Skateboard": 728018224, - "PP_Krokomummy": 326396577, - "MNT_Vroom": 1736383110, - "MNT_PlayerWings_AtralRaven": 1514774167, - "PP_Blimp": 690882397, - "Guest_GH_WoodenSkeletonKey_Boar_Boss_Grey_01": 678055851, - "Guest_GH_StoneSkeletonKey_Boar_Boss_Grey_01": 571670691, - "Guest_GH_GoldSkeletonKey_Boar_Boss_Grey_01": 961728819, - "MNT_Cloud_Promo_AW_01": 2032670992, - "Guest_EM_Hornet_Burner_A_01": 1881854632, - "Guest_EM_Hornet_Burner_A_02": 1881854636, - "Guest_EM_Hornet_Zapper_A_01": 2058539689, - "Guest_EM_Hornet_Zapper_A_02": 2058539685, - "Guest_EM_Ant_Giant_D_01": 379386121, - "Guest_EM_Ant_Giant_A_02": 1768146677, - "Guest_EM_Ant_Giant_A_01": 1768097525, - "Guest_EM_Ant_Giant_B_01": 379386122, - "Guest_KR_Moth_Priest_G_Achera": 381233569, - "Guest_KR_BeeMonsterF_A": 135146211, - "Guest_KR_BeeMonsterF_A_Weak": 1824123847, - "Guest_KR_Bee_Warrior_A": 1569202664, - "Guest_KR_Bee_Warrior_B": 1569204200, - "Guest_KR_Bee_Warrior_C_BossDrones": 1217189631, - "Guest_KR_Bee_Warrior_D": 1569205224, - "Guest_KR_Bee_Warrior_E": 1569204712, - "Guest_KR_Bee_Warrior_G": 1569205736, - "Guest_KR_Bee_Warrior_G_BossFight": 1055035476, - "Guest_KR_Bee_Warrior_H": 1569207272, - "Guest_KR_Bee_Warrior_I": 1569206760, - "Guest_KR_Bee_Warrior_L": 1569209320, - "Guest_KR_Bee_Warrior_M": 1569208808, - "Guest_KR_DragonBeetle_Monster_A": 1777853782, - "Guest_KR_Hornet_Drone_A": 1161590757, - "Guest_KR_Hornet_Drone_B": 1161607141, - "Guest_KR_Hornet_Drone_C": 1161623525, - "Guest_KR_Hornet_Drone_D": 1161639909, - "Guest_KR_Hornet_Drone_E": 1161656293, - "Guest_KR_Lice_DeepSpawn_A": 761604959, - "Guest_KR_Mantis_HunterF_A": 820917199, - "Guest_KR_Mantis_HunterF_B": 871248847, - "Guest_KR_Mantis_HunterF_C": 854471631, - "Guest_KR_Mantis_HunterF_D": 904803279, - "Guest_KR_Mantis_HunterF_F": 938357711, - "Guest_KR_Mantis_HunterF_F_Driftwood": 2053608437, - "Guest_KR_Mantis_HunterF_G": 921580495, - "Guest_KR_Mantis_HunterF_H": 971912143, - "Guest_KR_Mantis_HunterF_I": 955134927, - "Guest_KR_Mantis_HunterF_I_Zuzka": 935478878, - "Guest_KR_Mantis_HunterF_J": 1005466575, - "Guest_KR_Mantis_HunterF_J_Zelda": 886910558, - "Guest_KR_Mantis_HunterF_K": 988689359, - "Guest_KR_Mantis_HunterF_K_LongShd": 1767574336, - "Guest_KR_Mantis_HunterF_L": 1039021007, - "Guest_KR_Mantis_HunterF_M": 1022243791, - "Guest_KR_Mantis_HunterF_P_Bossfight": 1731428987, - "Guest_KR_Mantis_HunterF_Q": 552481743, - "Guest_KR_Mantis_HunterF_R": 602813391, - "Guest_KR_Mantis_HunterF_S": 586036175, - "Guest_KR_Mantis_HunterF_SecondColumnCpt_A": 1354033994, - "Guest_KR_Mantis_HunterF_T": 636367823, - "Guest_KR_Mantis_HunterF_Tribute": 1946371041, - "Guest_KR_Mantis_HunterF_U": 619590607, - "Guest_KR_Mantis_HunterF_V": 669922255, - "Guest_KR_Mantis_HunterF_W": 653145039, - "Guest_KR_Mantis_HunterF_Y": 686699471, - "Guest_KR_Mantis_HunterF_Z_Officer": 206016474, - "Guest_KR_Mantis_ProphetF_B": 1791139097, - "Guest_KR_Mantis_ProphetF_C": 1254268185, - "Guest_KR_Milipede_Warrior_A": 410726278, - "Guest_KR_Milipede_Warrior_B": 410726282, - "Guest_KR_Milipede_Warrior_C": 410726286, - "Guest_KR_Milipede_Warrior_D": 410726290, - "Guest_KR_Milipede_Warrior_H": 410726306, - "Guest_KR_Milipede_Warrior_J": 410726314, - "Guest_KR_Milipede_Warrior_K": 410726318, - "Guest_KR_Moth_Priest_A": 1421532604, - "Guest_KR_Moth_Priest_B": 1421532092, - "Guest_KR_Moth_Priest_C": 1421531580, - "Guest_KR_Moth_Priest_D": 1421531068, - "Guest_KR_Moth_Priest_D_Drepa": 1483393420, - "Guest_KR_Moth_Priest_E": 1421530556, - "Guest_KR_Moth_Priest_F": 1421530044, - "Guest_KR_Mantis_HunterF_Z": 737031119, - "Guest_KR_Roach_AntLion_A": 1860517987, - "Guest_KR_Roach_AntLion_B_Bossfight": 993284625, - "Guest_KR_Roach_AntLion_C": 1861566563, - "Guest_KR_Roach_Cook_A": 259847495, - "Guest_KR_Roach_Glutton_B": 249524334, - "Guest_KR_Roach_WaterBug_A": 1795473599, - "Guest_KR_Roach_WaterBug_B": 1745141951, - "Guest_MR_Beetle_Scarab_A_01": 1789741503, - "Guest_MR_Beetle_Scarab_A_02": 1789741491, - "Guest_MR_Beetle_Scarab_B_01": 1790265791, - "Guest_ZF-Goliath-R10-Boss-01": 7034074, - "Guest_ZF-Goliath-R10-Boss-02": 7034202, - "Guest_ZF-Goliath-R10-Boss-03": 7034330, - "Guest_ZF-Goliath-R10-Boss": 1603576807, - "Guest_ZF-Goliath-R11-Boss-01": 2140449574, - "Guest_ZF-Goliath-R11-Boss-02": 2140449446, - "Guest_ZF-Goliath-R11-Boss-03": 2140449318, - "Guest_ME1_Ant_Aunt_A": 707251855, - "Guest_ME1_Ant_Aunt_B": 1440231794, - "Guest_CC_Fly_Worker_A_01": 1497784524, - "Guest_CC_Roach_Worker_A_01": 1026321602, - "Guest_CC_Roach_Lieutenant_A_01": 1081690299, - "Guest_CC_Roach_Lieutenant_B_01": 1081690295, - "Guest_CC_Roach_Don_A_01": 547836893, - "Guest_CC_Roach_BBug_A_01": 1021150157, - "Guest_CC_Roach_RoachSteady_A_01": 859409247, - "Guest_Draconian-Caster-Yellow-Boss-R8": 1016221419, - "Guest_Draconian-Zombie-R8-2-1": 1226055265, - "Guest_Draconian-Zombie-R8-2": 1226115297, - "Guest_Draconian-Caster-Green-R7": 2143342719, - "Guest_Draconian-Warrior-Gold-Boss-R8": 1044388248, - "Guest_Draconian-Caster-Gray-R7": 95878769, - "Guest_DS-Boss-MAW": 1676071241, - "Guest_Draconian-Zombie-R8-1": 1226115309, - "Guest_Draconian-Warrior-Purple-Boss-R7": 601813964, - "Guest_Draconian-Caster-Tan-Boss-R7": 1973339532, - "Guest_Draconian-Caster-Blue-R6": 1684210173, - "Guest_Draconian-Caster-Yellow-R8": 2129956646, - "Guest_Draconian-Warrior-Red-R7": 521861944, - "Guest_Draconian-Warrior-Tan-R6": 1726416112, - "Guest_Draconian-Warrior-Purple-R8": 1896270341, - "Guest_Draconian-Caster-Blue-Boss-R7": 401581134, - "Guest_Draconian-Zombie-R8": 384497496, - "Guest_GH2-Draconian-HENCH-R10": 1149202878, - "Guest_GH2-Draconian-BOSS-R10": 2114378473, - "Guest_G14-DM-Draconian_Boss": 490246211, - "Guest_G14-DM-Draconian_Storm": 2035239226, - "Guest_G14-DM-Draconian_Ice": 782200563, - "Guest_G14-DM-Draconian_Malistaire_M": 1904691727, - "Guest_G14-DM-Draconian_Malistaire_S": 1904685583, - "Guest_G14-DM-Draconian_Malistaire_D": 1904700943, - "Guest_G14-DM-Draconian_Malistaire": 1904736751, - "Guest_G14-DM-Draconian_Malistaire_B": 1904702991, - "Guest_G14-DM-Draconian_Malistaire_I": 1904695823, - "Guest_G14-DM-Draconian_Malistaire_L": 1904692751, - "Guest_G14-DM-Draconian_Malistaire_F": 1904698895, - "Guest_Draconian-PW-Gauntlet-Boss": 493080513, - "Guest_CC_Draconian_A_01": 551348115, - "Guest_AZ-Parasaur-Undead-E": 2041242846, - "Guest_AZ-Parasaur-drkPriestF-F": 898239615, - "Guest_EM_Parasaur_DrkPriestF_A_01": 1007099606, - "Guest_EM_Parasaur_DrkPriestF_A_02": 1007099605, - "Guest_AZ-Parasaur-drkPriestF-D": 898501759, - "Guest_AZ-Parasaur-drkPriestF-E": 898370687, - "Guest_AZ-Parasaur-drkPriestF-A": 897846399, - "Guest_AZ-Parasaur-Undead-B": 1716853538, - "Guest_AZ-Parasaur-Undead-A": 106240802, - "Guest_AZ-Parasaur-Undead-G": 967501022, - "Guest_AZ-Parasaur-PriestF-D": 1177445525, - "Guest_AZ-Parasaur-Undead-C": 1179982626, - "Guest_AZ-Parasaur-drkPriestF-C": 897584255, - "Guest_AZ-Parasaur-Undead-SkurkisMinion": 1414766977, - "Guest_AZ-Parasaur-drkPriestF-B": 897715327, - "Guest_AZ-Parasaur-drkPriestF-B-Script": 1414847875, - "Guest_AZ_Parasaur_Priest_A_Boss_01": 890025421, - "Guest_AZ-Parasaur-Undead-D": 1504371934, - "Guest_AZ-Pteranodon-Knight-D": 1127364049, - "Guest_AZ-StoneSkeletonKey-Ixcax-Cursedwing": 699239601, - "Guest_AZ-Pteranodon-Knight-E": 1127363921, - "Guest_AZ-Pteranodon-Knight-F": 1127363793, - "Guest_AZ-Pteranodon-Knight-A-PageEvent": 942589002, - "Guest_AZ-StoneSkeletonKey-Minion-Death": 311645584, - "Guest_AZ-Pteranodon-Knight-A": 1127364433, - "Guest_AZ-Raptor-Wraith-A": 585729247, - "Guest_AZ-Raptor-Undead-D": 893623689, - "Guest_G14-HS-Ifzt": 1914694612, - "Guest_AZ-Raptor-Warrior-A": 855749884, - "Guest_AZ-Raptor-Undead-C": 897293705, - "Guest_AZ-Raptor-Undead-B": 896769417, - "Guest_AZ-Raptor-Undead-F": 894672265, - "Guest_AZ-Raptor-Warrior-F": 872527100, - "Guest_AZ-Raptor-Warrior-H": 973190396, - "Guest_AZ-Tritops-Warrior-I": 1942669769, - "Guest_AZ-Tritops-Undead-H": 1215305911, - "Guest_AZ-Tritops-Undead-E": 1164974263, - "Guest_AZ-Tritops-SpkWarrior-A": 860850257, - "Guest_AZ-Tritops-SpkWarrior-B": 860862545, - "Guest_AZ-Tritops-Undead-F": 1181751479, - "Guest_AZ-Tritops-Warrior-K": 868927945, - "Guest_AZ-Tritops-Undead-G": 1198528695, - "Guest_AZ-Tritops-Mummy-A": 1912444877, - "Guest_AZ-Tritops-Warrior-G": 1278555704, - "Guest_AZ-Tritops-Undead-D": 1148197047, - "Guest_AZ-Tritops-Undead-A": 1097865399, - "Guest_AZ-Tritops-SpkChief-B": 2096319577, - "Guest_AZ-Tritops-Mummy-B": 1910872013, - "Guest_AZ-Tritops-Warrior-H": 1405798857, - "Guest_AZ-Dino-Undead-A": 508678670, - "Guest_AZ-Dino-Undead-B": 508679182, - "Guest_AZ-Dino-Undead-D": 508680206, - "Guest_KR_Dino_Undead_A": 1638800628, - "Guest_KR_Dino_Undead_Minion_A": 892450235, - "MNT_HayRideTruck": 75377404, - "MNT_ShadowSpiderForm": 1439860426, - "Transformation_BG_Draconian_Death": 794598804, - "PP_BabyOrca": 1056061090, - "Transformation_BG_Cyclops_Fire": 638854828, - "Transformation_BG_Fairy_Ice": 874078461, - "PP_SpriteLife": 1824998010, - "PP_Raccoon": 1107326808, - "PP_FireKitten": 593048189, - "MNT_SkeletalDuck": 1306273036, - "PP_VampireSquid": 431023109, - "PP_CottonCandy": 891201813, - "PP_ThreeHeadGoat": 1282096939, - "PP_EyeBot": 260189248, - "MNT_DeathBoat": 1444454568, - "MNT_Lemuria": 908974762, - "MNT_DeathBoat_B": 1444456538, - "MNT_DeathBoat_C": 1444456474, - "MNT_Spooky3": 1667775622, - "MNT_PresentBox": 122082000, - "MNT_Orca": 1726961653, - "Guest_LM_Golem_Steel_A_01": 19551853, - "Guest_LM_Golem_Steel_A_02": 36329069, - "Guest_LM_EyeBot_A_01_Death": 380508535, - "Guest_LM_EyeBot_A_01_Myth": 167840640, - "PP_ThreeHeadGoat_B": 1209286443, - "PP_ThreeHeadGoat_C": 1211383595, - "Guest_KR_Eel_Whirligig_A": 1062268734, - "Guest_KR_Goliath_Behemoth_A": 1231139987, - "Guest_KR_Goliath_Behemoth_C": 1231139995, - "Guest_KR_Goliath_Behemoth_D": 1231139975, - "Guest_KR_Goliath_Behemoth_E": 1231139971, - "Guest_KR_Goliath_Behemoth_H": 1231140023, - "Guest_KR_Goliath_Crusher_C": 1651720060, - "Guest_KR_Goliath_Crusher_D": 2106376324, - "Guest_KR_Goliath_Crusher_F": 1032634500, - "Guest_KR_Goliath_Crusher_G": 495763588, - "Guest_KR_Goliath_Crusher_K": 1651720059, - "Guest_AZ-Goliath-Crusher-A": 1874784966, - "Guest_AZ-Goliath-Crusher-B": 264172230, - "Guest_AZ-Goliath-Crusher-C": 801043142, - "Guest_AZ-Goliath-Crusher-D": 809569594, - "Guest_AZ-Goliath-Crusher-E": 272698682, - "Guest_HG_AKT_Butterfly_Time_A_25": 1788523059, - "Guest_HG_AKT_Butterfly_Time_A_50": 1130017331, - "Guest_HG_AKT_Butterfly_Time_A_75": 1809494579, - "Guest_HG_AKT_Butterfly_Time_A_100": 1113240099, - "Guest_HG_AKT_Butterfly_Time_A_130": 1515893283, - "MNT_DeathBoat_D": 1444456922, - "Guest_KR_RhinoBeetle_Sun_A_Bossfight": 47895417, - "Guest_KR_RhinoBeetle_Star_A": 1947510103, - "Guest_KR_RhinoBeetle_Moon_A": 1751275863, - "Guest_ME1_Clockwork_Marine_A": 1481452452, - "Guest_ME1_Clockwork_Marine_B": 1481452068, - "Guest_CC_GoldSkeletonKey_Lice_DeepSpawn_B": 1306132994, - "Guest_KR_DamdinBazar_A_Bossfight": 1333596311, - "Guest_DS-Minion-MAW2": 356796677, - "Guest_KH-Wyrmling-1": 116330513, - "Guest_KH-Wyrmling-20": 183439385, - "Guest_KH-Wyrmling-40": 317657113, - "Guest_KH-Wyrmling-60": 451874841, - "Guest_KH-Wyrmling-80": 586092569, - "Guest_PL_Polar_Bear_Solider_C": 1785662565, - "Guest_Skeleton-Silver-WCBoss-L01": 17766963, - "Guest_Banshee-Red-Elite-L24_B": 1902069117, - "Transformation_BG_WolfWarrior_Myth": 339098032, - "Transformation_BG_RatThief_Balance": 881728218, - "Transformation_BG_Colossus_Storm": 593527492, - "Transformation_BG_Elf_Life": 347405087, - "Transformation_BG_Minotaur_Ice": 1197752291, - "MNT_TRex_B": 660285500, - "PP_SpriteDark_Ice": 2036248504, - "MNT_RollingBall": 1658139390, - "Guest_LM_TRex_Base_A_03": 1378630657, - "Guest_LM_TRex_Base_A_04": 1378745345, - "Guest_LM_TRex_Base_A_05": 1378728961, - "Guest_LM_TRex_Base_A_01": 1378663425, - "Guest_LM_TRex_Base_A_02": 1378647041, - "Guest_LM_TRex_Cyborg_A_01": 151609741, - "Guest_LM_TRex_Cyborg_A_02": 168386957, - "Guest_LM_TRex_Cyborg_A_03": 185164173, - "Guest_LM_TRex_Cyborg_B_01": 151611277, - "Guest_LM_TRex_Cyborg_D_01": 151612301, - "Guest_LM_TRex_Cyborg_E_01": 151611789, - "Guest_LM_TRex_Cyborg_C_01": 151610765, - "Guest_LM_Draconian_Base_A_01": 1607373112, - "Guest_LM_EyeBot_B_01": 1085543056, - "Guest_LM_Drone_Eye_C_01": 916954037, - "Guest_LM_Drone_Eye_D_01": 1230529608, - "Guest_LM_Drone_Eye_D_02": 1230545992, - "Guest_LM_Drone_Eye_D_04": 1230578760, - "Guest_LM_Drone_Eye_D_03": 1230562376, - "Guest_LM_Drone_Eye_A_01": 916954038, - "Guest_LM_Drone_Eye_A_02": 916937654, - "Guest_LM_Drone_Eye_B_01": 1230529611, - "Guest_LM_Drone_Eye_D_05": 1230595144, - "Guest_LM_Drone_Eye_D_07": 1230627912, - "Guest_LM_Drone_Eye_D_08": 1230644296, - "Guest_LM_Drone_Eye_A_03": 916921270, - "Guest_LM_Drone_Eye_A_04": 916904886, - "Guest_LM_Drone_Eye_C_02": 916937653, - "Guest_LM_EyeBot_B_02": 1061940593, - "Guest_LM_EyeBot_B_03": 1085543055, - "Guest_LM_EyeBot_B_04": 1061940594, - "Guest_LM_Drone_Eye_C_03": 916921269, - "Guest_LM_Robot_Kit10_A_01": 199936400, - "Guest_LM_Colossus_Mander_A_01": 2107529026, - "Guest_LM_Robot_Future_A_01": 998840846, - "Guest_LM_Robot_FutureBIG_A_01": 340408568, - "Guest_LM_Robot_FutureBIG_A_02": 340396280, - "Guest_LM_Robot_FutureBIG_A_03": 340400376, - "Guest_LM_Robot_OldOne_A_01": 779070973, - "Guest_LM_Robot_OldOne_A_02": 1315941885, - "Guest_LM_Millipede_Centi_A_01": 168575797, - "Guest_LM_Millipede_Centi_A_03": 168583989, - "Guest_LM_Millipede_Centi_A_02": 168588085, - "Guest_LM_Millipede_Centi_A_04": 168563509, - "Guest_LM_Moth_Sorcerer_A_01": 228191136, - "Guest_LM_Boar_Barbarian_A_01": 1238634912, - "Guest_LM_Boar_Barbarian_A_02": 1238634528, - "Guest_LM_Boar_Barbarian_A_03": 1238634656, - "Guest_LM_Boar_Barbarian_A_04": 1238635296, - "Guest_LM_Boar_Barbarian_A_05": 1238635424, - "Guest_LM_Boar_Chief_A_01": 357051311, - "Guest_LM_Fungus_Humango_A_01": 1398460044, - "Guest_LM_Fungus_Humango_A_02": 1398460172, - "Guest_LM_Treant_Base_A_01": 1658172241, - "Guest_LM_GiantTree_EvilRoots_A_01": 282225934, - "Guest_LM_PA_GreenMan_A_01": 67705044, - "Guest_LM_Fungus_Humango_B_01": 1348128396, - "Guest_LM_Fungus_Humango_A_03": 1398460300, - "Guest_LM_Fungus_Man_C_01": 1648824156, - "Guest_LM_Fungus_Man_C_02": 1650397020, - "Guest_LM_Rhino_Zombie_A_01": 248513993, - "Guest_LM_Malughast_Base_01": 883820436, - "Guest_LM_Malughast_Base_02": 1420691348, - "Guest_LM_Lemur_HierarchF_H_04": 231562115, - "Guest_LM_Malughast_Base_03": 1957562260, - "Guest_LM_Malughast_Base_05": 1263663212, - "Guest_LM_Malughast_Base_06": 726792300, - "Guest_LM_Malughast_Base_08": 346949523, - "Guest_LM_Malughast_Base_09": 883820435, - "Guest_LM_Malughast_Base_04": 1800534124, - "Guest_LM_Minotaur_Skeleton_A_01": 1865122824, - "Guest_LM_Lemur_Wild_B_03": 1783764037, - "Guest_LM_Lemur_HierarchF_H_01": 231541635, - "Guest_LM_Lemur_HierarchF_H_02": 231553923, - "Guest_LM_Mander_Warrior_A_01": 1651245419, - "Guest_LM_Mander_Warrior_A_02": 1651245291, - "Guest_LM_Mander_Warrior_B_01": 1634468203, - "Guest_LM_Mander_Warrior_B_02": 1634468075, - "Guest_LM_Mander_Warrior_A_03": 1651245163, - "Guest_LM_Mander_Warrior_B_03": 1634467947, - "Guest_LM_Mander_Warrior_A_06": 1651245803, - "Guest_LM_Mander_Warrior_A_05": 1651245931, - "Guest_LM_Mander_Mummy_B_01": 1844111521, - "Guest_LM_Mander_Hero_B_01": 865113284, - "MNT_HolidayHippogriff": 938892112, - "MNT_Sabertooth_Ice": 1870381696, - "PP_FenrisWolf_Bantam": 776647759, - "MNT_JetPack": 1986300552, - "MNT_Scooter_F": 1005560708, - "PP_FossaKitten_A": 431748212, - "PP_Elfvis": 147991405, - "Guest_LM_Chicken_Hero_A_01": 1308728300, - "Guest_LM_Horse_Explorer_A_01": 434405482, - "Guest_LM_Duck_HeroineF_A_01": 133199186, - "Guest_LM_Crane_Hero_A_01": 204272548, - "Guest_LM_Deer_HeroineF_A_01": 1800374959, - "Guest_LM_Deer_Hero_A_01": 223109503, - "Guest_LM_Dog_Hero_A_01": 1434615064, - "PP_YearTiger": 777048708, - "MNT_Barrel": 3576425, - "MNT_Krampus": 404117611, - "PP_ChineseTigerCub": 1256032005, - "PP_Lemur": 565774155, - "PP_Robot": 1089075331, - "PP_Capybara": 451970762, - "Guest_LM_Ghoul_Base_A_01": 1822415945, - "Guest_LM_Lemur_HierarchF_H_03": 231549827, - "Guest_LM_Ghoul_Base_A_02": 1820843081, - "Guest_LM_Ghoul_Base_A_03": 1821367369, - "MNT_SpringSoF2022": 1685679511, - "MNT_WarElephant": 875015497, - "PP_Strix": 514230046, - "MNT_Beachball": 791896033, - "MNT_Blank": 633398131, - "MNT_CardboardFlier": 1646636689, - "MNT_LochMonster": 879660722, - "Transformation_BG_Krok_Death": 1395067182, - "Transformation_BG_Draconian_Fire": 1551581732, - "PP_Scotty": 1708580475, - "Guest_KR_Mice_Knight_A": 480101508, - "PP_Peacock": 1178721112, - "MNT_PoodleMoth": 975420235, - "PP_Hummingbird": 624666906, - "PP_WolfWarrior_Myth": 470737416, - "Guest_HG_UFD_Ghost_QueenF_A_100": 795323059, - "Guest_HG_UFD_Ghost_QueenF_A_50": 728230579, - "Guest_HG_UFD_Pirate_UndeadHighland_A_Balance_150": 201145133, - "Guest_HG_UFD_Pirate_UndeadHighland_A_Balance_100": 201144941, - "Guest_HG_UFD_Pirate_UndeadHighland_A_Balance_50": 201177701, - "Guest_HG_UFD_Pirate_UndeadHighland_A_Star_150": 1329885920, - "Guest_HG_UFD_Pirate_UndeadHighland_A_Star_100": 1304720096, - "Guest_HG_UFD_Pirate_UndeadHighland_A_Star_50": 1305768671, - "Guest_HG_UFD_Pirate_UndeadHighland_A_Shadow_150": 1263689971, - "Guest_HG_UFD_Pirate_UndeadHighland_A_Shadow_100": 1263689977, - "Guest_HG_UFD_Pirate_UndeadHighland_A_Shadow_50": 189949177, - "Guest_HG_UFD_Kelpie_Warrior_A_150": 54296095, - "Guest_HG_UFD_Kelpie_Warrior_A_100": 725384735, - "Guest_HG_UFD_Kelpie_Warrior_A_50": 708607503, - "Guest_HG_UFD_Pirate_UndeadHighland_B_150": 1099317831, - "Guest_HG_UFD_Pirate_UndeadHighland_B_100": 25576008, - "Guest_HG_UFD_Pirate_UndeadHighland_B_50": 159793864, - "Guest_HG_UFD_Ghost_QueenF_A_150": 795716275, - "PP_SpiderMinion": 557357331, - "MNT_Vines_Rainbow": 1587180338, - "MNT_YoungDrake": 1279496198, - "PP_Pet_Coconut": 444388490, - "DragonKI": 1490194214, - "PP_Sharkfish": 601628284, - "PP_MimicCake": 48071878, - "Guest_AQ-Bronze-Eagle": 375279744, - "Guest_Spider-Brown-L26": 2128680185, - "Guest_KR_Spider_Giant_D": 744401035, - "Guest_Wizard-Female-Band-Blue-R8": 1447486557, - "Guest_CC_Human_DSCrusaderF_A_01": 726538068, - "Guest_WC_Scarecrow_A_01": 867491011, - "Guest_WC_Banshee_A_01": 1433786463, - "Guest_WC_LostSoul_A_01": 796936146, - "PP_Fairy_Myth": 1117624344, - "PP_SpriteDark_Myth": 1884257976, - "BG_CyclopsLife_A": 944091673, - "Transformation_BG_NinjaPig_Storm": 2005137181, - "Transformation_BG_Fairy_Myth": 1880704188, - "Transformation_BG_Cyclops_Life": 638936708, - "Guest_AQ-Eagle-Praetorian": 1988013806, - "Guest_KM_BabyCarrot_A_01": 766239512, - "Guest_G14-DM-Gargoyle": 282898047, - "Guest_MR_Durvish_Sergeant_A_Boss_01": 1532609325, - "Guest_Cyclops-RedHelmet-KTBoss-L28": 2072371506, - "Guest_EM_Pig_Singer_A_01": 698597069, - "Guest_EM_Pig_Captain_A": 977505995, - "Guest_EM_Pig_Crewman_A": 465576459, - "PP_ChipmunkConductor": 1089819900, - "PP_LuckyCat": 1109326826, - "MNT_ImpCar": 1736092191, - "MNT_Book": 1547655078, - "MNT_JackoLantern": 649919658, - "MNT_Zheng": 742453108, - "MNT_Train": 413197899, - "MNT_Cerberus": 552686313, - "PP_Coconut": 1122741587, - "Transformation_Statue": 1153168084, - "Transformation_Nullity": 622504394, - "PP_Irk": 1825277392, - "Guest_Wyrmling-Fire-R8-1": 531485009, - "MNT_WolfLowPoly_A": 1947890962, - "MNT_WolfLowPoly_B": 1947825426, - "Transformation_BG_RatThief_Fire": 1169330235, - "Transformation_BG_WolfWarrior_Death": 159966683, - "Transformation_BG_Minotaur_Balance": 657855108, - "Transformation_BG_Draconian_Ice": 1907339814, - "Transformation_BG_Colossus_Myth": 1305894338, - "Transformation_NV_Penguin": 1757096851, - "Transformation_NV_Unicorn": 60447768, - "Transformation_NV_Monkey": 1379873688, - "Transformation_NV_Dog": 1961288968, - "PP_Wolf_Storm": 455227171, - "PP_WoodDuck": 1680912895, - "MNT_RockingHorse": 1205280059, - "MNT_SOF2022_Car": 219868812, - "PP_Buffaloon": 796152873, - "MNT_Steamboat": 1969530127, - "MNT_FelizNavidog": 847046394, - "PP_Mustache": 1571079379, - "Guest_DD-DS01-Skeleton-Pirate-20": 226826848, - "Guest_DD-DS01-Skeleton-Pirate-40": 201661024, - "Guest_DD-DS01-Skeleton-Pirate-60": 210049632, - "Guest_DD-DS01-Skeleton-Pirate-80": 251992672, - "Guest_DD-DS01-Skeleton-Pirate": 1994450336, - "Guest_DD-DS01-Shadow-Minion-Fire": 1074864956, - "Guest_DD-DS01-Shadow-Minion-Ice": 1841681214, - "Guest_DD-DS01-Shadow-Minion-Fire-20": 1074880881, - "Guest_DD-DS01-Shadow-Minion-Fire-40": 1074880945, - "Guest_DD-DS01-Shadow-Minion-Ice-20": 96850220, - "Guest_DD-DS01-Shadow-Minion-Ice-40": 96850218, - "Guest_DD-DS01-Shadow-Minion-Fire-60": 1074881009, - "Guest_DD-DS01-Shadow-Minion-Ice-60": 96850216, - "Guest_DD-DS01-Shadow-Minion-Fire-80": 1074880561, - "Guest_DD-DS01-Shadow-Minion-Ice-80": 96850214, - "Guest_SC-SpectreOfB-1": 1471950935, - "Guest_SC-SpectreOfB-20": 1471942759, - "Guest_SC-SpectreOfB-40": 1471942663, - "Guest_SC-SpectreOfB-60": 1471942695, - "Guest_SC-SpectreOfB-80": 1471942855, - "Guest_KH-Skeleton-Ice-60": 2108358962, - "Guest_KH-Skeleton-Ice-40": 2108391730, - "Guest_KH-Skeleton-Ice-20": 2108293426, - "Guest_KH-Skeleton-Ice-1": 2099953970, - "Guest_KH-Skeleton-Ice-80": 2108195122, - "Guest_KH-Undead-Caster-60": 1662604496, - "Guest_KH-Undead-Caster-40": 1661555920, - "Guest_KH-Undead-Caster-20": 1664701648, - "Guest_KH-Undead-Caster-1": 1931564240, - "Guest_KH-Undead-Caster-80": 1667847376, - "Guest_DD-PA01-DeadBeets": 1664999367, - "Guest_DD-PA01-DeadBeets-20": 1901453253, - "Guest_DD-PA01-DeadBeets-40": 2002116549, - "Guest_DD-PA01-DeadBeets-60": 1968562117, - "Guest_DD-PA01-DeadBeets-80": 2069225413, - "Guest_DD-PA01-Disparagus": 1865816461, - "Guest_DD-PA01-Disparagus-20": 573970895, - "Guest_DD-PA01-Disparagus-40": 499770929, - "Guest_DD-PA01-Disparagus-60": 1573512753, - "Guest_DD-PA01-Disparagus-80": 1647712718, - "Guest_DD-PA01-MeanestFlyTrap": 2001546861, - "Guest_DD-PA01-MeanestFlyTrap-20": 1936326253, - "Guest_DD-PA01-MeanestFlyTrap-40": 1936064109, - "Guest_DD-PA01-MeanestFlyTrap-60": 1935801965, - "Guest_DD-PA01-MeanestFlyTrap-80": 1937636973, - "Guest_HG-MD-MacDeath-20": 182639104, - "Guest_HG-MD-MacDeath-40": 182638080, - "Guest_HG-MD-MacDeath-60": 182637056, - "Guest_HG-MD-MacDeath-80": 182636032, - "Guest_HG-MD-MacDeath-100": 174252032, - "Guest_HG-MD-MacDeath-130": 174202880, - "Guest_HG_Sinbad_Skeleton_25": 494617874, - "Guest_HG_Sinbad_Skeleton_50": 42253050, - "Guest_HG_Sinbad_Skeleton_75": 1115994862, - "Guest_HG_Sinbad_Skeleton_100": 2105232646, - "Guest_HG_Sinbad_Skeleton_130": 2105232650, - "Guest_HG_Sinbad_Skeleton_25_02": 492722834, - "Guest_HG_Sinbad_Skeleton_50_02": 44148090, - "Guest_HG_Sinbad_Skeleton_75_02": 1117889902, - "Guest_HG_Sinbad_Skeleton_100_02": 2044247302, - "Guest_HG_Sinbad_Skeleton_130_02": 2044247306, - "Guest_DD-AV01-WyrmBoss": 1648677986, - "Guest_DD-AV01-WyrmBoss-20": 1926730850, - "Guest_DD-AV01-WyrmBoss-40": 1927779426, - "Guest_DD-AV01-WyrmBoss-60": 1928828002, - "Guest_DD-AV01-WyrmBoss-80": 1921487970, - "Guest_RH-Wyrm-Boss-01": 1027277645, - "Guest_RH-Wyrm-Boss-20": 1027277660, - "Guest_RH-Wyrm-Boss-40": 1027277663, - "Guest_RH-Wyrm-Boss-60": 1027277662, - "Guest_RH-Wyrm-Boss-80": 1027277657, - "Guest_HG_Sinbad_Wyrm_25": 1101443356, - "Guest_HG_Sinbad_Wyrm_50": 1101528860, - "Guest_HG_Sinbad_Wyrm_75": 1101445916, - "Guest_HG_Sinbad_Wyrm_100": 1093138204, - "Guest_HG_Sinbad_Wyrm_130": 1093089052, - "Guest_KH-Treant-1": 2001244331, - "Guest_KH-Treant-60": 1968148651, - "Guest_KH-Treant-40": 1968017579, - "Guest_KH-Treant-20": 1967886507, - "Guest_KH-Treant-80": 1967231147, - "Guest_DD-PA01-ForestGrump": 1969685870, - "Guest_DD-PA01-ForestGrump-20": 714666713, - "Guest_DD-PA01-ForestGrump-40": 714666689, - "Guest_DD-PA01-ForestGrump-60": 714666697, - "Guest_DD-PA01-ForestGrump-80": 714666737, - "Guest_DD-PA01-ForestNymphs": 227087348, - "Guest_DD-PA01-ForestNymphs-20": 227023552, - "Guest_DD-PA01-ForestNymphs-60": 227023040, - "Guest_DD-PA01-ForestNymphs-80": 227024832, - "Guest_SC-Pig-BalanceWizardA-1": 475456968, - "Guest_SC-Pig-BalanceWizardA-20": 477550024, - "Guest_SC-Pig-BalanceWizardA-40": 477541832, - "Guest_SC-Pig-BalanceWizardA-60": 477533640, - "Guest_SC-Pig-BalanceWizardA-80": 477525448, - "Guest_SC-Pig-BalanceWizardB-1": 475456964, - "Guest_SC-Pig-BalanceWizardB-20": 477550020, - "Guest_SC-Pig-BalanceWizardB-40": 477541828, - "Guest_SC-Pig-BalanceWizardB-60": 477533636, - "Guest_SC-Pig-BalanceWizardB-80": 477525444, - "Guest_SC-Pig-BalanceWizardC-1": 475456960, - "Guest_SC-Pig-BalanceWizardC-20": 477550016, - "Guest_SC-Pig-FireWizard-1": 2048176291, - "Guest_SC-Pig-FireWizard-20": 2031399073, - "Guest_SC-Pig-FireWizard-40": 2132062369, - "Guest_SC-Pig-FireWizard-60": 2098507937, - "Guest_SC-Pig-FireWizard-80": 1930735777, - "Guest_SC-Pig-IceWizardF-1": 1178687744, - "Guest_SC-Pig-IceWizardF-20": 1161910526, - "Guest_SC-Pig-IceWizardF-40": 1128356094, - "Guest_SC-Pig-IceWizardF-60": 1094801662, - "Guest_SC-Pig-IceWizardF-80": 1329682686, - "Guest_SC-Pig-MythWizard-1": 2048492725, - "Guest_SC-Pig-MythWizard-20": 2031715511, - "Guest_SC-Pig-MythWizard-40": 2132378807, - "Guest_SC-Pig-MythWizard-60": 2098824375, - "Guest_SC-Pig-MythWizard-80": 1931052215, - "Guest_SC-Pig-StormWizardF-1": 1743849420, - "Guest_SC-Pig-StormWizardF-20": 1743851464, - "Guest_SC-Pig-StormWizardF-40": 1743851488, - "Guest_SC-Pig-StormWizardF-60": 1743851480, - "Guest_SC-Pig-StormWizardF-80": 1743851504, - "Guest_KH-Pig-Bandit-Lord-1": 1080496628, - "Guest_KH-Pig-Bandit-Lord-20": 543625652, - "Guest_KH-Pig-Bandit-Lord-40": 530116172, - "Guest_KH-Pig-Bandit-Lord-60": 1603857996, - "Guest_KH-Pig-Bandit-Lord-80": 1617367475, - "Guest_KH-Pig-Bandit-Ninja-1": 1945100907, - "Guest_KH-Pig-Bandit-Ninja-20": 1945102951, - "Guest_KH-Pig-Bandit-Ninja-40": 1945102975, - "Guest_KH-Pig-Bandit-Ninja-60": 1945102967, - "Guest_KH-Pig-Bandit-Ninja-80": 1945102927, - "Guest_KH-Pig-War-Caster-1": 656859765, - "Guest_KH-Pig-War-Caster-20": 606528119, - "Guest_KH-Pig-War-Caster-40": 572973687, - "Guest_KH-Pig-War-Caster-60": 539419255, - "Guest_KH-Pig-War-Caster-80": 774300279, - "Guest_KH-Pig-War-Warrior-Boss-1": 16342355, - "Guest_KH-Pig-War-Warrior-Boss-20": 2143724205, - "Guest_KH-Pig-War-Warrior-Boss-40": 2118558381, - "Guest_KH-Pig-War-Warrior-Boss-60": 2126946989, - "Guest_KH-Pig-War-Warrior-Boss-80": 2101781165, - "Guest_SC-Pig-BalanceWizardC-40": 477541824, - "Guest_SC-Pig-BalanceWizardC-60": 477533632, - "Guest_SC-Pig-BalanceWizardC-80": 477525440, - "Guest_KH-Helephant-Death-20": 1109389719, - "Guest_KH-Helephant-Death-40": 2111835753, - "Guest_KH-Helephant-Death-60": 1038093929, - "Guest_KH-Helephant-Death-80": 35647896, - "Guest_KH-GreyOgre-Spider-1": 356368404, - "Guest_KH-GreyOgre-Spider-20": 1966981204, - "Guest_KH-GreyOgre-Spider-40": 1254244268, - "Guest_KH-GreyOgre-Spider-60": 180502444, - "Guest_KH-GreyOgre-Spider-80": 893239379, - "Guest_HG_Sinbad_Colossus_25": 1190802829, - "Guest_HG_Sinbad_Colossus_50": 1493551719, - "Guest_HG_Sinbad_Colossus_75": 419809907, - "Guest_HG_Sinbad_Colossus_100": 653933977, - "Guest_HG_Sinbad_Colossus_130": 653933973, - "Guest_NV_Dino_AberrantUndead_A_01": 2035087398, - "Guest_NV_Hellephant_Aberrant_A_01": 989522333, - "Guest_NV_Hellephant_Aberrant_A_02": 989522334, - "Guest_NV_BananaSpider_Base_A_01": 1585810541, - "Guest_NV_BananaSpider_Base_A_02": 1581616237, - "Guest_NV_BananaSpider_Base_A_03": 1577421933, - "Guest_NV_BananaSpider_Base_A_04": 1606782061, - "Guest_NV_BananaSpider_Base_A_05": 1602587757, - "Guest_NV_Wyrm_Aberrant_A_01": 16108415, - "Guest_NV_Monkey_Zombie_A_01": 1854775300, - "Guest_NV_Monkey_Zombie_A_02": 1854775304, - "Guest_NV_Monkey_Zombie_A_03": 1854775308, - "Guest_NV_Monkey_Zombie_A_04": 1854775312, - "MNT_Flag_Monster": 867940056, - "Guest_SKB_WY_DarkBramble_A_30": 2046798767, - "Guest_SKB_WY_DarkBramble_A_50": 2046797999, - "Guest_SKB_WY_DarkBramble_A_100": 2044701359, - "Guest_SKB_WY_DarkBramble_A_150": 2044721839, - "Guest_SKB_GH_Boar_A_30": 1547921275, - "Guest_SKB_WC_SpiritIgnorance_A_50": 1488876986, - "Guest_SKB_WC_SpiritIgnorance_A_100": 2025748410, - "Guest_SKB_WC_SpiritIgnorance_A_150": 2025748413, - "Guest_SKB_DS_Loremaster_A_50": 527751539, - "Guest_SKB_DS_Loremaster_A_100": 527817059, - "Guest_SKB_DS_Loremaster_A_150": 527817699, - "Guest_SKB_CL_Dan_A_50": 637418706, - "Guest_SKB_CL_Dan_A_60": 1510064941, - "Guest_SKB_CL_Dan_A_100": 637410512, - "Guest_SKB_CL_Dan_A_150": 637410432, - "Guest_SKB_AV_Spectre_A_50": 2104631195, - "Guest_SKB_AV_Spectre_A_100": 2102534041, - "Guest_SKB_AV_Spectre_A_150": 2018647961, - "Guest_SKB_MS_Samoorai_A_50": 2029641915, - "Guest_SKB_MS_Samoorai_A_100": 2096750843, - "Guest_SKB_MS_Samoorai_A_150": 587603717, - "Transformation_BG_Krok_StromTemplate": 1317694546, - "PP_ChineseRabbit": 382941643, - "PP_ParadeElf": 1036247808, - "MNT_HeartSwarm": 918199310, - "MNT_SpringSOF2023": 1417178519, - "Transformation_BG_Elf_Death2Template": 1606653101, - "MNT_GummyBunny_D": 775840224, - "Transformation_BG_Krok_Life2Template": 747486212, - "PP_Flame": 959186933, - "PP_YachtRock": 1500927358, - "PP_PirateYachtRock": 1227549100, - "PP_ChickenMonster": 1845706534, - "PP_SnowHoppers_B": 1496460038, - "PP_SnowHoppers_C": 1496457990, - "MNT_Oarfish": 29720265, - "PP_RingTailedCat": 993143427, - "MNT_Fanboat": 19347694, - "MNT_MiniSub": 298697910, - "PP_DumboOctopus": 966435639, - "PP_Glowbug_Balance": 1405529577, - "PP_Glowbug_Death": 405117107, - "PP_Glowbug_Fire": 651698987, - "PP_Glowbug_Ice": 2124926395, - "PP_Glowbug_Life": 601367299, - "PP_Glowbug_Myth": 592978024, - "PP_Glowbug_Storm": 61190446, - "PP_DumboOctopus_B": 968448823, - "PP_DumboOctopus_C": 968383287, - "PP_BananaSpider_01": 1074383522, - "PP_BananaSpider_02": 1080674978, - "PP_BananaSpider_03": 1078577826, - "Guest_HG_NM_BeardDragon_Base_C_01": 82913785, - "Guest_HG_NM_BeardDragon_Base_C_02": 82913786, - "Guest_HG_NM_BeardDragon_Base_C_03": 82913787, - "Guest_HG_NM_Glowbug_Base_C_01": 544959703, - "Guest_HG_NM_Glowbug_Base_C_02": 544955607, - "Guest_HG_NM_Glowbug_Base_C_03": 544951511, - "Guest_HG_NM_Glowbug_Base_C_04": 544947415, - "Guest_HG_NM_Glowbug_Base_C_05": 544943319, - "Guest_HG_NM_Glowbug_Base_C_06": 544939223, - "Guest_HG_NM_Glowbug_Base_C_07": 544935127, - "MNT_BouquetofFlowers": 1511180560, - "PP_Piggle_Rainbow": 91081383, - "MNT_Sabertooth_FlameSaber": 1949516909, - "Guest_HG_NM_BeardDragon_Base_A_01": 83175929, - "Guest_HG_NM_BeardDragon_Base_A_02": 83175930, - "Guest_HG_NM_BeardDragon_Base_A_03": 83175931, - "Guest_HG_NM_BeardDragon_Base_B_01": 83044857, - "Guest_HG_NM_BeardDragon_Base_B_02": 83044858, - "Guest_HG_NM_BeardDragon_Base_B_03": 83044859, - "Guest_HG_NM_Glowbug_Base_B_01": 8088791, - "Guest_HG_NM_Glowbug_Base_B_02": 8084695, - "Guest_HG_NM_Glowbug_Base_B_03": 8080599, - "Guest_HG_NM_Glowbug_Base_B_04": 8076503, - "Guest_HG_NM_Glowbug_Base_B_05": 8072407, - "Guest_HG_NM_Glowbug_Base_B_06": 8068311, - "Guest_HG_NM_Glowbug_Base_B_07": 8064215, - "Guest_HG_NM_Glowbug_Base_A_01": 1618701527, - "Guest_HG_NM_Glowbug_Base_A_02": 1618697431, - "Guest_HG_NM_Glowbug_Base_A_03": 1618693335, - "Guest_HG_NM_Glowbug_Base_A_04": 1618689239, - "Guest_HG_NM_Glowbug_Base_A_05": 1618685143, - "Guest_HG_NM_Glowbug_Base_A_06": 1618681047, - "Guest_HG_NM_Glowbug_Base_A_07": 1618676951, - "MNT_SummerSOF2023": 1636120912, - "PP_Cyclops_Fire": 7821755, - "PP_Death_Elf": 1535744155, - "PP_Newt": 1438123483, - "PP_Echidna": 735439358, - "MNT_Wombat": 580544786, - "Transformation_BG_NinjaPig_Balance": 1799661438, - "Transformation_BG_Cyclops_Ice": 647975824, - "Transformation_BG_Minotaur_Storm": 1005667041, - "Transformation_GR_Parasaur_Priest_Ice": 1101466351, - "Transformation_GR_Parasaur_Priest_Fire": 892193041, - "Transformation_GR_Parasaur_Priest_Storm": 1525882116, - "Transformation_GR_Parasaur_Priest_Balance": 1127637476, - "Guest_GR_AZ_Parasaur_Undead_B_01": 322587487, - "MNT_WitchCat": 1167097888, - "PP_RolyPoly": 578538330, - "PP_Capybara_B": 628131532, - "MNT_OutbackTruck": 1815527801, - "PP_PoodleSailor": 2137704795, - "MNT_PolarianCannon": 2103490826, - "PP_TazmanianDevil": 1773548765, - "Guest_SKB_AZ_Ixcax_A_100": 556560994, - "Guest_SKB_AZ_Ixcax_A_150": 556610146, - "Guest_SKB_AZ_Ixcax_A_50": 564951650, - "MNT_GhoulsShovel": 2035610946, - "PP_CrystalBdayDragon": 1897078804, - "PP_SunGobblerBall": 1522469440, - "PP_Sun_GreenGobbler": 1337690394, - "MNT_2P_AutumnTreant": 1063435527, - "PP_AutumnTreant": 561077291, - "MNT_FlyingMonkey": 490807393, - "PP_BabyPlantMonster": 2076646587, - "MNT_PlantCreature_A": 1802823265, - "Transformation_BG_Fairy_Fire": 2065252898, - "Transformation_BG_Krok_Myth": 277926564, - "Transformation_BG_RatThief_Life": 1167758651, - "Transformation_BG_Elf_Balance": 1628238937, - "Transformation_BG_Colossus_Death": 184392004, - "Transformation_FortressPod": 139738335, - "P_Wombat_POLYMORPH": 1132264953, - "PP_SharkWobbegong": 1994247222, - "PP_ChineseNYDragon": 1126999021, - "PP_JingleBellRock": 1076037919, - "PP_Krok_Mummy_Myth": 438487583, - "PP_Cyclops_Ice": 1476966187, - "MNT_OutbackTruckB": 1813299577, - "MNT_EvilSnowmanBall": 758818712, - "MNT_ThanksgivingGobbler": 1760011910, - "Guest_WL_Ghost_LostSoul_A_01": 1224111704, - "Guest_WL_Kangaroo_Drover_F_01": 2025562931, - "Guest_WL_Spider_WarriorMage_C_01": 1296557888, - "Guest_WL_Spider_WarriorMage_C_02": 1430775616, - "Guest_WL_Spider_WarriorMage_C_03": 1564993344, - "Guest_WL_Spider_WarriorMage_C_04": 1699211072, - "Guest_WL_Spider_WarriorMage_C_05": 1833428800, - "Guest_WL_Spider_WarriorMage_C_06": 1967646528, - "Guest_WL_Spider_WarriorMage_C_07": 2101864256, - "Guest_SKB_KR_Lightbane_A_100": 837930677, - "Guest_SKB_KR_Lightbane_A_160": 837930669, - "Guest_SKB_KR_Lightbane_A_50": 1309555019, - "Transformation_WL_Phantasmanian_DevilTemplate": 384891502, - "MNT_2P_LeaflessTreant": 623083386, - "PP_Minotaur_Ice": 700151737, - "MNT_Scooter_G": 737125252, - "Guest_WL_Frog_Owner_B_01": 767864686, - "MNT_SilentKnight": 646654812, - "Guest_WL_TRex_Base_A_01": 1842562033, - "Guest_WL_TRex_Base_B_01": 304921616, - "PP_Groundhog": 108643243, - "Guest_NV_Unicorn_Guard_C_04": 1845621, - "MNT_EmuPunk": 647315080, - "MNT_HeartBalloon": 798826551, - "PP_ValentineHoppers": 968693964, - "MNT_SpringSOF2024_Heckhound": 453640548, - "Guest_AQ-Centaur-Arion": 1856508139, - "Guest_AQ-Centaur-Artemis": 333294011, - "Guest_AQ-Horse-Sea": 724896200, - "Guest_KR_Horse_Warlord_A_Bossfight": 1302284326, - "Guest_KR_Horse_Warlord_A_BossfightSP": 1300726822, - "Guest_KR_Zebra_Thrall_A": 1250265667, - "Guest_KR_Zebra_Thrall_A_Boss_Minion": 345677011, - "Guest_KR_Zebra_Thrall_A_Gallery": 1520303483, - "Guest_KH-Gray-Horse-40": 1802231403, - "Guest_KH-Gray-Horse-20": 1802231307, - "Guest_G14-BP-Unicorn_Fencer_Boss": 1602044152, - "Guest_Horse-Merc-Brown-L37": 1831175255, - "Guest_Horse-Merc-Tan-L39": 1363854837, - "Guest_Horse-Merc-Tan-L39-1": 2085275127, - "Guest_Horse-Merc-Gray-MSBoss-L39": 1863452041, - "Guest_Horse-Merc-Gray-L39": 2039135564, - "Guest_Horse-Merc-Tan-L38": 1363330549, - "Guest_WC_Horse_Mercenary_Roberto": 891924774, - "Guest_ZF-Nathi-Yellowstripe-R11": 1505157721, - "Guest_ZF-TseTse-Main-R11-Boss": 114927854, - "Guest_ZF-TseTse-Elephant-R11": 894147273, - "Guest_ZF-Zebra-Impi-Raider-R11": 1378242919, - "Guest_ZF-Zebra-Warrior-Male-R10-1": 1791906265, - "Guest_ZF-Zebra-Senzan-Zebu-R10-Boss": 373712721, - "Guest_ZF-Zebra-Shaka-Zebu-R10-Boss": 662142985, - "Guest_ZF-Zebra-Warrior-Female-R10-02": 1507835670, - "Guest_ZF-Zebra-Warrior-Male-R10": 47075786, - "Guest_ZF-Zebra-Warrior-Male-R10-02": 1791906714, - "Guest_ZF-Zebra-Warrior-Male-R10-03": 1791906746, - "Guest_ZF-Zebra-Warrior-Male-R10-05": 1791906682, - "Guest_ZF-Zebra-Warrior-Male-R10-2": 1791906268, - "Guest_ZF_Zebra_Spectral_Guardian-R11": 431970996, - "Guest_CC_Horse_Apoc_A_01": 644668374, - "Guest_CC_Horse_Apoc_B_01": 644668390, - "Guest_CC_Horse_Apoc_C_01": 644668406, - "Guest_CC_Horse_Apoc_D_01": 644668294, - "Guest_CC_Horse_Apoc_D_02": 645192582, - "Guest_CC_Unicorn_CorsairF_B_01": 1378532506, - "Guest_CC_Unicorn_Duelist_B_01": 64891542, - "Guest_CC_Unicorn_Guard_B_01": 1075063242, - "Guest_CC_Unicorn_Guard_B_02": 1075063238, - "Guest_CC_Unicorn_Guard_B_03": 1075063234, - "Guest_NV_Horse_HordeSoldier_A_01": 504396960, - "Guest_NV_Horse_HordeSoldier_A_02": 101743776, - "Guest_NV_Horse_HordeOfficer_A_01": 343600992, - "Guest_NV_Horse_HordeSoldier_A_03": 235961504, - "Guest_NV_Horse_HordeOfficer_A_02": 209383264, - "Guest_NV_Horse_AberrantTungAk_A_01": 952263441, - "Guest_NV_Horse_AberrantTungAk_A_02": 952263537, - "Guest_NV_Horse_TungAk_B_01": 1194718672, - "Guest_NV_Horse_TungAk_B_02": 657847760, - "Guest_NV_Horse_HordeOfficer_B_01": 343596896, - "Guest_NV_Horse_HordeOfficer_B_02": 209379168, - "Guest_NV_Horse_TungAk_A_01": 1194669520, - "Guest_NV_Unicorn_Guard_C_01": 1845601, - "Guest_NV_Unicorn_Guard_A_01": 797025, - "Guest_NV_Unicorn_AberrantGuard_A_01": 739851573, - "Guest_NV_Unicorn_Guard_C_02": 1845613, - "Guest_NV_Unicorn_Guard_C_03": 1845609, - "Guest_NV_Unicorn_AberrantGuard_A_02": 739848501, - "Guest_NV_Unicorn_Guard_A_02": 797037, - "Guest_NV_Unicorn_AberrantGuard_A_03": 739849525, - "Guest_NV_Unicorn_AberrantGuard_A_04": 739846453, - "Guest_NV_Horse_HordeOfficer_A_03": 75165536, - "Guest_NV_Horse_HordeSoldier_A_04": 907050144, - "Guest_NV_Horse_HordeSoldier_A_05": 1041267872, - "Guest_NV_Horse_HordeSoldier_C_01": 504388768, - "Guest_HG_TRAIN_Horse_MustangFencerF_A_Balance_50": 871182987, - "Guest_HG_TRAIN_Horse_MustangFencerF_A_Balance_75": 871176715, - "Guest_HG_TRAIN_Horse_MustangFencerF_A_Life_100": 886489645, - "Guest_HG_TRAIN_Horse_MustangFencerF_A_Balance_25": 871177035, - "Guest_HG_TRAIN_Horse_MustangFencerF_A_Balance_100": 872231819, - "Guest_HG_TRAIN_Horse_MustangFencerF_A_Life_140": 1960231469, - "Guest_HG_TRAIN_Horse_MustangFencerF_B_100": 2089957067, - "Guest_HG_TRAIN_Horse_MustangFencerF_A_Life_25": 1700184589, - "Guest_HG_TRAIN_Horse_MustangFencerF_A_Life_50": 920044045, - "Guest_HG_TRAIN_Horse_MustangFencerF_A_Life_75": 1742127629, - "Guest_HG_TRAIN_Horse_MustangFencerF_A_Balance_140": 872223627, - "Guest_HG_TRAIN_Horse_MustangFencerF_B_50": 2089952970, - "Guest_HG_TRAIN_Horse_MustangFencerF_B_75": 57530654, - "Guest_HG_TRAIN_Horse_MustangFencerF_B_140": 2089957099, - "Guest_HG_TRAIN_Horse_MustangFencerF_B_25": 1131272477, - "Guest_LM_Horse_Explorer_A_01_Hard": 1711837140, - "Guest_WL_Unicorn_Guard_A_01": 1074538935, - "Guest_WL_Unicorn_CorsairF_E_01": 1378532603, - "Guest_WL_Unicorn_Warlord_A_01": 1321310496, - "Guest_KH-Gray-Horse-1": 1802239547, - "Guest_KH-Gray-Horse-60": 1802231371, - "Guest_KH-Gray-Horse-80": 1802231467, - "Transformation_BG_NinjaPig_Ice": 186026527, - "Transformation_BG_Cyclops_Storm": 897316984, - "PP_MinotaurBalance": 1344665951, - "PP_OrthusMoon": 1804503950, - "PP_CoolPineapple": 1149318906, - "PP_TwinkleStars": 766378011, - "PP_Scroll": 1613313091, - "PP_Colossus_Death": 40713075, - "PP_ColossusDeath": 530964029, - "PP_KILiveRock": 1975550570, - "MNT_Outrigger": 1417937299, - "MNT_BookWyrm": 2080129190, - "MNT_RacingSnail": 1996220963, - "MNT_UmbrellaCloud": 145762615, - "PP_PropellerCat": 2094718580, - "MNT_TRex_Shirt": 586746001, - "MNT_Swarm_Bee": 1625228695, - "MNT__CelestialMoon": 968360256, - "Guest_ME_Sinbad_IronSultan_150": 2001676223, - "Guest_ME_Sinbad_Cyclops_150": 1968943689, - "Guest_ME_Sinbad_Skeleton_150": 1031490819, - "Guest_ME_Sinbad_Colossus_150": 1727675806, - "Guest_ME_Sinbad_Skeleton_150_02": 970505475, - "Guest_ME_Sinbad_Wyrm_150": 19314443, - "Guest_ZF-Zebra-Inzinzebu-Bandit-R11": 430262550, - "Guest_ZF-Zebra-Warrior-Male-R10-04": 1791906650, - "PP_TwinkleStars_02": 805304347, - "PP_TwinkleStars_03": 803207195, - "PP_TwinkleStars_01": 799012891, - "Transformation_BodleianHarrow": 609627870, - "Guest_HG_Gryphon_OwlStatue_A_01_L170": 77756046, - "Guest_HG_Gryphon_OwlStatue_A_02_L170": 73561742, - "Guest_HG_Gryphon_OwlStatue_A_01_L100": 77752974, - "Guest_HG_Gryphon_OwlStatue_A_02_L100": 73558670, - "Guest_HG_Gryphon_OwlStatue_A_01_L50": 78277134, - "Guest_HG_Gryphon_OwlStatue_A_02_L50": 74082830, - "MNT_SummerSOF2024_JudgementWings": 1078163967, - "MNT_Pegasus_E": 131704054, - "MNT_PolarisHero": 665176426, - "PP_Duckana": 1128961578, - "PP_QueenBee": 833291695, - "Transformation_BG_Draconian_Balance": 2078940682, - "Transformation_BG_WolfWarrior_Fire": 1762248682, - "Transformation_BG_Minotaur_Death": 309090657, - "PP_WolfWarrior_Fire": 685685256, - "PP_WolfWarrior_Death": 1857202724, - "Guest_ME-GTAV01-WyrmBoss-150": 1482208618, - "Guest_ME_SpectreOfB_L150": 684104791, - "Guest_ME_MD_MacDeath_L150": 1128977615, - "Guest_ME_Pig_BalanceWizardA_L150": 959913724, - "Guest_ME_Pig_BalanceWizardB_L150": 959913712, - "Guest_ME_Pig_BalanceWizardC_L150": 959913716, - "Guest_ME_Pig_FireWizard_L150": 964392255, - "Guest_ME_Pig_IceWizardF_L150": 86941026, - "Guest_ME_Pig_MythWizard_L150": 964051241, - "Guest_ME_Pig_StormWizardF_L150": 2016383602, - "Guest_ME_Clock_Clockworker_L150": 1424569772, - "Guest_ME_Clock_ClockworkSpanner_L150": 1966824609, - "Guest_ME_Clock_Lugs_L150": 370290904, - "Guest_ME_Clock_Lucia_L150": 1857768409, - "MNT_EvilChair": 339577702, - "PP_Cyclops_Storm": 621464512, - "PP_Krokomummy_Life": 462432735, - "Transformation_CL_Rematch_Crustacean": 1686865207, - "Transformation_CL_Rematch_Protector": 1893951532, - "Transformation_CL_Rematch_Angler": 120412196, - "Transformation_CL_Rematch_Piscean": 1624106070, - "Transformation_Zebra_Template": 1900548493, - "Transformation_Zebra2_Template": 325099540, - "Transformation_Zebra3_Template": 325099524, - "Transformation_Zebra4_Template": 325099636, - "MNT_SweetSixteenBirthday": 1009398096, - "MNT_2P_TRex_Bones": 1618543266, - "MNT_SpringBumperCar": 1725007788, - "PP_WinterGoblin": 2025052443, - "PP_OnyxAnubis": 1552575189, - "PP_OttomanCat": 223541582, - "MNT_HolidayYeti": 780983974, - "MNT_IceSled": 979912604, - "MNT_TurtleDoves": 1850191638, - "MNT_KrokChariot": 559783620, - "MNT_Mustang": 1775949401, - "MNT_PumpkinBall": 382849054, - "Transformation_BG_Fairy_Storm": 836920873, - "Transformation_BG_Elf_Myth": 1506493664, - "Transformation_NinjaPig_Life": 816802847, - "Transformation_BG_Krok_Fire": 1060580712, - "Transformation_BG_Colossus_Balance": 1067963041, - "Transformation_BG_NinjaPig_Life": 441460895, - "PP_Penguin_03": 1623028104, - "Transformation_Duck_Librarian_B": 864067551, - "Transformation_Duck_Librarian_A": 859873247, - "Transformation_Duck_Adventurer": 194560769, - "Transformation_Gummy_Bunny_C": 1298087941, - "Transformation_Frog_Horned_A": 837201339, - "Transformation_Glowbug_Storm": 2096380446, - "Transformation_Marshmallow_Critter_A": 1036335317, - "Transformation_Snipe_Base_B": 232132109, - "Transformation_Snowball": 915248481, - "Transformation_Wombat_Base": 333435450, - "Transformation_Human_Malistaire": 1414887773, - "Transformation_Morganthe_E": 1745180054, - "Transformation_Spider_Grandfather": 1131773979, - "Transformation_Khrulhu_Dasein_B": 367878762, - "Transformation_Devourer_Base": 698770016, - "Transformation_Alien_Meteor": 638746168, - "Transformation_Nightmare_Malus": 704212821, - "Transformation_Daemon_Personal": 278266463, - "PP_ValentinesDay": 810003364, - "PP_BabyHippo": 422858138, - "PP_Aardwold": 1592150119, - "PP_Aardwold_C": 1902528613, - "MNT_Cobra": 472847981, - "MNT_Serpopard": 1629558909, - "MNT_Serpopard_B": 1629556867, - "MNT_Serpopard_C": 1629556931, - "PP_Fairy_Fire": 1847789544, - "MNT_Mustang_B": 1448793691, - "PP_FireElfMyth": 1933609060, - "MNT_KT-BoatRide": 1560860110 - } - }, - "m_eMountType": { - "type": "enum eMountType", - "id": 3, - "offset": 184, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3097765662, - "enum_options": { - "eMNT_Standard": 0, - "eMNT_Floating": 1 - } - }, - "m_primaryColor": { - "type": "int", - "id": 4, - "offset": 188, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 900965981 - }, - "m_secondaryColor": { - "type": "int", - "id": 5, - "offset": 192, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1616550081 - }, - "m_patternColor": { - "type": "int", - "id": 6, - "offset": 196, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1304790295 - }, - "m_adjustableAnimationRate": { - "type": "bool", - "id": 7, - "offset": 200, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 698897022 - }, - "m_geometryOption": { - "type": "int", - "id": 8, - "offset": 204, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1776153279 - }, - "m_lastMountID": { - "type": "gid", - "id": 9, - "offset": 168, - "flags": 33554491, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1112551276 - } - } - }, - "1827094409": { - "name": "class TileMaterial", - "bases": [ - "Material", - "PropertyClass" - ], - "hash": 1827094409, - "properties": { - "m_sMaterialName": { - "type": "std::wstring", - "id": 0, - "offset": 72, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1299185467 - }, - "m_Blending": { - "type": "enum Material::Blending", - "id": 1, - "offset": 116, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3003693822, - "enum_options": { - "B_NONE": 0, - "B_ADDITIVE": 1, - "B_ALPHA": 2, - "B_ALPHA_INV": 3, - "B_ADDITIVE_INV": 4, - "__DEFAULT": "B_ALPHA" - } - }, - "m_eRepeat": { - "type": "enum Material::Repeating", - "id": 2, - "offset": 176, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3302018843, - "enum_options": { - "R_NONE": 0, - "R_REPEAT": 1 - } - }, - "m_pDiffuseMap": { - "type": "class SharedPointer", - "id": 3, - "offset": 120, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 4008975679 - }, - "m_pAlphaMask": { - "type": "class SharedPointer", - "id": 4, - "offset": 136, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3411451405 - }, - "m_fLastAlpha": { - "type": "float", - "id": 5, - "offset": 152, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 284727287 - }, - "m_Diffuse": { - "type": "class Color", - "id": 6, - "offset": 156, - "flags": 262279, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1644364836 - }, - "m_Ambient": { - "type": "class Color", - "id": 7, - "offset": 160, - "flags": 262279, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2216816350 - }, - "m_Specular": { - "type": "class Color", - "id": 8, - "offset": 168, - "flags": 262279, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2645528957 - }, - "m_fSpecularPower": { - "type": "float", - "id": 9, - "offset": 172, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 539146057 - }, - "m_Frames": { - "type": "class Rect", - "id": 10, - "offset": 192, - "flags": 65671, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 3064301836 - }, - "m_nCurrentFrame": { - "type": "int", - "id": 11, - "offset": 216, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 45308854 - }, - "m_fAnimRate": { - "type": "float", - "id": 12, - "offset": 228, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 802385934 - }, - "m_nAnimBegin": { - "type": "int", - "id": 13, - "offset": 220, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 400513266 - }, - "m_nAnimEnd": { - "type": "int", - "id": 14, - "offset": 224, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1081103460 - }, - "m_fAnimTime": { - "type": "float", - "id": 15, - "offset": 232, - "flags": 134, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 802466289 - }, - "m_fMaterialScaleX": { - "type": "float", - "id": 16, - "offset": 180, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 634638220 - }, - "m_fMaterialScaleY": { - "type": "float", - "id": 17, - "offset": 184, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 634638221 - }, - "m_TilesX": { - "type": "int", - "id": 18, - "offset": 240, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1882401395 - }, - "m_TilesY": { - "type": "int", - "id": 19, - "offset": 244, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1882401396 - } - } - }, - "1422449663": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1422449663, - "properties": {} - }, - "1824262077": { - "name": "class ClientAnnounceSpellTextCinematicAction*", - "bases": [ - "AnnounceSpellTextCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 1824262077, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_spellText": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2688705600 - } - } - }, - "1422341205": { - "name": "class ObstacleCourseSpringboardBehavior", - "bases": [ - "ObstacleCourseObstacleBehavior", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1422341205, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - } - } - }, - "1824228239": { - "name": "class ClientExpansionBehavior*", - "bases": [ - "ExpansionBehavior", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1824228239, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_bankExpansions": { - "type": "int", - "id": 1, - "offset": 112, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1369075454 - }, - "m_friendListExpansions": { - "type": "int", - "id": 2, - "offset": 116, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1057398198 - } - } - }, - "262453194": { - "name": "enum ControlTab::TabAlignment", - "bases": [], - "hash": 262453194, - "properties": {} - }, - "1825252961": { - "name": "enum HousingNode::ExclusiveRestrictions", - "bases": [], - "hash": 1825252961, - "properties": {} - }, - "262747104": { - "name": "class GuildChatList*", - "bases": [ - "PropertyClass" - ], - "hash": 262747104, - "properties": { - "m_guildChatList": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2707919623 - } - } - }, - "1422886315": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1422886315, - "properties": { - "m_volunteerWorldList": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1802198369 - } - } - }, - "1824810258": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1824810258, - "properties": { - "m_activeProjectList": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 534931707 - } - } - }, - "262722099": { - "name": "class ZoneTokenTimer*", - "bases": [ - "ZoneTokenBase", - "PropertyClass" - ], - "hash": 262722099, - "properties": { - "m_debugName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3553984419 - }, - "m_adjectiveList": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 3195213318 - }, - "m_icon": { - "type": "std::string", - "id": 2, - "offset": 120, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1717182340 - }, - "m_iconBW": { - "type": "std::string", - "id": 3, - "offset": 152, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2047461085 - }, - "m_description": { - "type": "std::string", - "id": 4, - "offset": 184, - "flags": 8388639, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1649374815 - }, - "m_displayMode": { - "type": "enum ZTDisplayMode", - "id": 5, - "offset": 216, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2216526410, - "enum_options": { - "ZTDM_Shown": 0, - "ZTDM_Discoverable": 1, - "ZTDM_Hidden": 2 - } - }, - "m_storage": { - "type": "enum ZTStorage", - "id": 6, - "offset": 220, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2290454852, - "enum_options": { - "ZTS_Player": 0, - "ZTS_Zone": 1 - } - }, - "m_onEnable": { - "type": "class SharedPointer", - "id": 7, - "offset": 224, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2591736864 - }, - "m_onDiscover": { - "type": "class SharedPointer", - "id": 8, - "offset": 240, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2826026872 - }, - "m_onDisable": { - "type": "class SharedPointer", - "id": 9, - "offset": 256, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1860656717 - }, - "m_sourceID": { - "type": "gid", - "id": 10, - "offset": 272, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1134700470 - }, - "m_inZone": { - "type": "bool", - "id": 11, - "offset": 280, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 564535654 - }, - "m_enabled": { - "type": "bool", - "id": 12, - "offset": 281, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 504506718 - }, - "m_discovered": { - "type": "bool", - "id": 13, - "offset": 282, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2060478331 - }, - "m_duration": { - "type": "std::string", - "id": 14, - "offset": 288, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2327821921 - }, - "m_onExpire": { - "type": "class SharedPointer", - "id": 15, - "offset": 320, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2604142950 - }, - "m_timeTriggers": { - "type": "class SharedPointer", - "id": 16, - "offset": 336, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1112107844 - }, - "m_expireTime": { - "type": "unsigned int", - "id": 17, - "offset": 356, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1836304873 - } - } - }, - "1422775164": { - "name": "class ScrollWindowStyle*", - "bases": [ - "WindowStyle", - "PropertyClass" - ], - "hash": 1422775164, - "properties": { - "m_pBackMaterial": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1628562023 - }, - "m_pFont": { - "type": "class SharedPointer", - "id": 1, - "offset": 88, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1067686307 - }, - "m_pLargeFont": { - "type": "class SharedPointer", - "id": 2, - "offset": 104, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1523900782 - }, - "m_pSmallFont": { - "type": "class SharedPointer", - "id": 3, - "offset": 120, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2363252956 - }, - "m_Color": { - "type": "class Color", - "id": 4, - "offset": 136, - "flags": 262279, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1753714077 - }, - "m_HighColor": { - "type": "class Color", - "id": 5, - "offset": 140, - "flags": 262279, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2310527421 - }, - "m_SelectColor": { - "type": "class Color", - "id": 6, - "offset": 144, - "flags": 262279, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2792529213 - }, - "m_BorderColor": { - "type": "class Color", - "id": 7, - "offset": 148, - "flags": 262279, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1470576795 - }, - "m_BackColor": { - "type": "class Color", - "id": 8, - "offset": 152, - "flags": 262279, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1070928782 - }, - "m_ScrollBarColor": { - "type": "class Color", - "id": 9, - "offset": 156, - "flags": 262279, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1180747361 - }, - "m_ScrollTabColor": { - "type": "class Color", - "id": 10, - "offset": 160, - "flags": 262279, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1034892323 - }, - "m_nBorderSize": { - "type": "int", - "id": 11, - "offset": 164, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2016376897 - }, - "m_nScrollSize": { - "type": "int", - "id": 12, - "offset": 168, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 632681746 - }, - "m_sHoverSound": { - "type": "std::string", - "id": 13, - "offset": 176, - "flags": 131207, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2662773595 - }, - "m_sSelectSound": { - "type": "std::string", - "id": 14, - "offset": 208, - "flags": 131207, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2596786807 - }, - "m_pVMiddle": { - "type": "class SharedPointer", - "id": 15, - "offset": 248, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1896076876 - }, - "m_pVSliderTop": { - "type": "class SharedPointer", - "id": 16, - "offset": 264, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1590678131 - }, - "m_pVSliderMiddle": { - "type": "class SharedPointer", - "id": 17, - "offset": 280, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1981605647 - }, - "m_pVSliderBottom": { - "type": "class SharedPointer", - "id": 18, - "offset": 296, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1558824373 - }, - "m_pVUpButton": { - "type": "class SharedPointer", - "id": 19, - "offset": 312, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3584564972 - }, - "m_pVDownButton": { - "type": "class SharedPointer", - "id": 20, - "offset": 328, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2411725119 - }, - "m_pHLeftArrow": { - "type": "class SharedPointer", - "id": 21, - "offset": 344, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3168852677 - }, - "m_pHRightArrow": { - "type": "class SharedPointer", - "id": 22, - "offset": 360, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1981350104 - }, - "m_pHMiddle": { - "type": "class SharedPointer", - "id": 23, - "offset": 376, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3142878142 - }, - "m_pHSliderLeft": { - "type": "class SharedPointer", - "id": 24, - "offset": 392, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1553456157 - }, - "m_pHSliderMiddle": { - "type": "class SharedPointer", - "id": 25, - "offset": 408, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2666160641 - }, - "m_pHSliderRight": { - "type": "class SharedPointer", - "id": 26, - "offset": 424, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1592154800 - }, - "m_nScrollButtonDelta": { - "type": "int", - "id": 27, - "offset": 240, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1455137917 - } - } - }, - "262722195": { - "name": "class ZoneTokenTimer", - "bases": [ - "ZoneTokenBase", - "PropertyClass" - ], - "hash": 262722195, - "properties": { - "m_debugName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3553984419 - }, - "m_adjectiveList": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 3195213318 - }, - "m_icon": { - "type": "std::string", - "id": 2, - "offset": 120, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1717182340 - }, - "m_iconBW": { - "type": "std::string", - "id": 3, - "offset": 152, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2047461085 - }, - "m_description": { - "type": "std::string", - "id": 4, - "offset": 184, - "flags": 8388639, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1649374815 - }, - "m_displayMode": { - "type": "enum ZTDisplayMode", - "id": 5, - "offset": 216, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2216526410, - "enum_options": { - "ZTDM_Shown": 0, - "ZTDM_Discoverable": 1, - "ZTDM_Hidden": 2 - } - }, - "m_storage": { - "type": "enum ZTStorage", - "id": 6, - "offset": 220, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2290454852, - "enum_options": { - "ZTS_Player": 0, - "ZTS_Zone": 1 - } - }, - "m_onEnable": { - "type": "class SharedPointer", - "id": 7, - "offset": 224, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2591736864 - }, - "m_onDiscover": { - "type": "class SharedPointer", - "id": 8, - "offset": 240, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2826026872 - }, - "m_onDisable": { - "type": "class SharedPointer", - "id": 9, - "offset": 256, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1860656717 - }, - "m_sourceID": { - "type": "gid", - "id": 10, - "offset": 272, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1134700470 - }, - "m_inZone": { - "type": "bool", - "id": 11, - "offset": 280, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 564535654 - }, - "m_enabled": { - "type": "bool", - "id": 12, - "offset": 281, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 504506718 - }, - "m_discovered": { - "type": "bool", - "id": 13, - "offset": 282, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2060478331 - }, - "m_duration": { - "type": "std::string", - "id": 14, - "offset": 288, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2327821921 - }, - "m_onExpire": { - "type": "class SharedPointer", - "id": 15, - "offset": 320, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2604142950 - }, - "m_timeTriggers": { - "type": "class SharedPointer", - "id": 16, - "offset": 336, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1112107844 - }, - "m_expireTime": { - "type": "unsigned int", - "id": 17, - "offset": 356, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1836304873 - } - } - }, - "1825404303": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1825404303, - "properties": { - "m_activeProjectList": { - "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 284210684 - } - } - }, - "1424862404": { - "name": "class CreateHangingEffectActorCinematicAction*", - "bases": [ - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 1424862404, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - }, - "m_cloaked": { - "type": "bool", - "id": 2, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 7349510 - }, - "m_newActorName": { - "type": "std::string", - "id": 3, - "offset": 128, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2029131039 - } - } - }, - "1424739730": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1424739730, - "properties": { - "m_className": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2220521682 - }, - "m_classLevelInfo": { - "type": "class MagicLevelInfo*", - "id": 1, - "offset": 112, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 3643333981 - } - } - }, - "262747109": { - "name": "class GuildChatList", - "bases": [ - "PropertyClass" - ], - "hash": 262747109, - "properties": { - "m_guildChatList": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2707919623 - } - } - }, - "1827867278": { - "name": "class ReqHangingWard*", - "bases": [ - "ConditionalSpellEffectRequirement", - "Requirement", - "PropertyClass" - ], - "hash": 1827867278, - "properties": { - "m_applyNOT": { - "type": "bool", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1746328074, - "enum_options": { - "__DEFAULT": 0 - } - }, - "m_operator": { - "type": "enum Requirement::Operator", - "id": 1, - "offset": 76, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2672792317, - "enum_options": { - "ROP_AND": 0, - "ROP_OR": 1, - "__DEFAULT": "ROP_AND" - } - }, - "m_targetType": { - "type": "enum ConditionalSpellEffectRequirement::RequirementTarget", - "id": 2, - "offset": 80, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2547737902, - "enum_options": { - "RT_Caster": 0, - "RT_Target": 1 - } - }, - "m_disposition": { - "type": "enum SpellEffect::kHangingDisposition", - "id": 3, - "offset": 88, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1904841031, - "enum_options": { - "SpellEffect::kBoth": 0, - "SpellEffect::kBeneficial": 1, - "SpellEffect::kHarmful": 2 - } - }, - "m_minCount": { - "type": "int", - "id": 4, - "offset": 92, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1486503815 - }, - "m_maxCount": { - "type": "int", - "id": 5, - "offset": 96, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 136048585 - } - } - }, - "1827867182": { - "name": "class ReqHangingWard", - "bases": [ - "ConditionalSpellEffectRequirement", - "Requirement", - "PropertyClass" - ], - "hash": 1827867182, - "properties": { - "m_applyNOT": { - "type": "bool", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1746328074, - "enum_options": { - "__DEFAULT": 0 - } - }, - "m_operator": { - "type": "enum Requirement::Operator", - "id": 1, - "offset": 76, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2672792317, - "enum_options": { - "ROP_AND": 0, - "ROP_OR": 1, - "__DEFAULT": "ROP_AND" - } - }, - "m_targetType": { - "type": "enum ConditionalSpellEffectRequirement::RequirementTarget", - "id": 2, - "offset": 80, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2547737902, - "enum_options": { - "RT_Caster": 0, - "RT_Target": 1 - } - }, - "m_disposition": { - "type": "enum SpellEffect::kHangingDisposition", - "id": 3, - "offset": 88, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1904841031, - "enum_options": { - "SpellEffect::kBoth": 0, - "SpellEffect::kBeneficial": 1, - "SpellEffect::kHarmful": 2 - } - }, - "m_minCount": { - "type": "int", - "id": 4, - "offset": 92, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1486503815 - }, - "m_maxCount": { - "type": "int", - "id": 5, - "offset": 96, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 136048585 - } - } - }, - "263763107": { - "name": "class PetTalentCountControl", - "bases": [ - "Window", - "PropertyClass" - ], - "hash": 263763107, - "properties": { - "m_sName": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306437263 - }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 65667, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621225959 - }, - "m_Style": { - "type": "unsigned int", - "id": 2, - "offset": 152, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "SCALE_CHILDREN": 2, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "FOCUS_LOCKED": 64, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152 - } - }, - "m_Flags": { - "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } - }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3105139380 - }, - "m_fTargetAlpha": { - "type": "float", - "id": 5, - "offset": 212, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1809129834 - }, - "m_fDisabledAlpha": { - "type": "float", - "id": 6, - "offset": 216, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1389987675 - }, - "m_fAlpha": { - "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 482130755 - }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3623628394 - }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2102211316 - }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1846695875 - }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3389835433 - }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2547159940 - }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2587533771 - }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3091503757 - } - } - }, - "1430635390": { - "name": "class ExtraHousingZoneBehaviorBase*", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1430635390, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - } - } - }, - "263498549": { - "name": "class SharedPointer", - "bases": [ - "LootInfo", - "LootInfoBase", - "PropertyClass" - ], - "hash": 263498549, - "properties": { - "m_lootType": { - "type": "enum LootInfo::LOOT_TYPE", - "id": 0, - "offset": 72, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1591891442, - "enum_options": { - "LOOT_TYPE_NONE": 0, - "LOOT_TYPE_GOLD": 1, - "LOOT_TYPE_MANA": 2, - "LOOT_TYPE_ITEM": 3, - "LOOT_TYPE_TREASURE_CARD": 4, - "LOOT_TYPE_MAGIC_XP": 5, - "LOOT_TYPE_ADD_SPELL": 6, - "LOOT_TYPE_MAX_HEALTH": 7, - "LOOT_TYPE_MAX_GOLD": 8, - "LOOT_TYPE_MAX_MANA": 9, - "LOOT_TYPE_MAX_POTION": 10, - "LOOT_TYPE_TRAINING_POINTS": 11, - "LOOT_TYPE_RECIPE": 12, - "LOOT_TYPE_CRAFTING_SLOT": 13, - "LOOT_TYPE_REAGENT": 14, - "LOOT_TYPE_PETSNACK": 15, - "LOOT_TYPE_GARDENING_XP": 16, - "LOOT_TYPE_PET_XP": 17, - "LOOT_TYPE_TREASURE_TABLE": 18, - "LOOT_TYPE_ARENA_POINTS": 19, - "LOOT_TYPE_ARENA_BONUS_POINTS": 20, - "LOOT_TYPE_GROUP": 21, - "LOOT_TYPE_FISHING_XP": 22, - "LOOT_TYPE_EVENT_CURRENCY_1": 24, - "LOOT_TYPE_EVENT_CURRENCY_2": 25, - "LOOT_TYPE_PVP_CURRENCY": 26, - "LOOT_TYPE_PVP_CURRENCY_BONUS": 27, - "LOOT_TYPE_PVP_TOURNEY_CURRENCY": 28, - "LOOT_TYPE_PVP_TOURNEY_CURRENCY_BONUS": 29, - "LOOT_TYPE_FURNITURE_ESSENCE": 30 - } - }, - "m_magicSchool": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1597012900 - }, - "m_experience": { - "type": "int", - "id": 2, - "offset": 112, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 759357570 - } - } - }, - "1426889994": { - "name": "struct MoveStateAnimation*", - "bases": [ - "PropertyClass" - ], - "hash": 1426889994, - "properties": { - "m_nMoveState": { - "type": "enum MoveState", - "id": 0, - "offset": 72, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1430960270, - "enum_options": { - "MS_WALKING": 0, - "MS_RUNNING": 1, - "MS_SWIMMING": 2, - "MS_FLYING": 3, - "MS_JUMPING": 4, - "MS_FALLING": 5, - "MS_SLIDING": 6, - "__DEFAULT": "MS_WALKING" - } - }, - "m_nMoveAnimation": { - "type": "enum MoveAnimation", - "id": 1, - "offset": 76, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3179560950, - "enum_options": { - "MA_IDLE": 0, - "MA_FORWARD": 1, - "MA_BACK": 2, - "MA_LEFT": 3, - "MA_RIGHT": 4, - "MA_TURNLEFT": 5, - "MA_TURNRIGHT": 6, - "__DEFAULT": "MA_IDLE" - } - }, - "m_sAnimationName": { - "type": "std::string", - "id": 2, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1757815023 - } - } - }, - "1828026494": { - "name": "class StopComplexSoundCinematicAction*", - "bases": [ - "CinematicAction", - "PropertyClass" - ], - "hash": 1828026494, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_sound": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2307644996 - }, - "m_stopAllLoopingSounds": { - "type": "bool", - "id": 2, - "offset": 112, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1944220294 - }, - "m_fadeDuration": { - "type": "float", - "id": 3, - "offset": 116, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1402536557 - } - } - }, - "263301275": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 263301275, - "properties": { - "m_position": { - "type": "class Vector3D", - "id": 0, - "offset": 88, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3697900983 - }, - "m_pitch": { - "type": "float", - "id": 1, - "offset": 100, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 896371695 - }, - "m_roll": { - "type": "float", - "id": 2, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 310020272 - }, - "m_yaw": { - "type": "float", - "id": 3, - "offset": 108, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 357256328 - }, - "m_fHeight": { - "type": "float", - "id": 4, - "offset": 132, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 401539638 - }, - "m_scale": { - "type": "float", - "id": 5, - "offset": 112, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 899693439 - } - } - }, - "1425992564": { - "name": "class SharedPointer", - "bases": [ - "GameEffectBase", - "PropertyClass" - ], - "hash": 1425992564, - "properties": { - "m_currentTickCount": { - "type": "double", - "id": 0, - "offset": 80, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2533274692 - }, - "m_effectNameID": { - "type": "unsigned int", - "id": 1, - "offset": 96, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1204067144 - }, - "m_bIsOnPet": { - "type": "bool", - "id": 2, - "offset": 73, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 522593303 - }, - "m_originatorID": { - "type": "gid", - "id": 3, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1131810019 - }, - "m_itemSlotID": { - "type": "unsigned int", - "id": 4, - "offset": 112, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1895747595 - }, - "m_internalID": { - "type": "int", - "id": 5, - "offset": 92, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1643137924 - }, - "m_endTime": { - "type": "unsigned int", - "id": 6, - "offset": 88, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 716479635 - }, - "m_templateID": { - "type": "unsigned int", - "id": 7, - "offset": 128, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1286746870 - } - } - }, - "263197046": { - "name": "class SharedPointer", - "bases": [ - "Window", - "PropertyClass" - ], - "hash": 263197046, - "properties": { - "m_sName": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306437263 - }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621225959 - }, - "m_Style": { - "type": "unsigned int", - "id": 2, - "offset": 152, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "SCALE_CHILDREN": 2, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "FOCUS_LOCKED": 64, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152 - } - }, - "m_Flags": { - "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } - }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3105139380 - }, - "m_fTargetAlpha": { - "type": "float", - "id": 5, - "offset": 212, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1809129834 - }, - "m_fDisabledAlpha": { - "type": "float", - "id": 6, - "offset": 216, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1389987675 - }, - "m_fAlpha": { - "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 482130755 - }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3623628394 - }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2102211316 - }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1846695875 - }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3389835433 - }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2547159940 - }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2587533771 - }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3091503757 - } - } - }, - "1425351354": { - "name": "class ControlTickedSlider*", - "bases": [ - "ControlSlider", - "ControlBar", - "Window", - "PropertyClass" - ], - "hash": 1425351354, - "properties": { - "m_sName": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306437263 - }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621225959 - }, - "m_Style": { - "type": "unsigned int", - "id": 2, - "offset": 152, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152 - } - }, - "m_Flags": { - "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } - }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3105139380 - }, - "m_fTargetAlpha": { - "type": "float", - "id": 5, - "offset": 212, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1809129834 - }, - "m_fDisabledAlpha": { - "type": "float", - "id": 6, - "offset": 216, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1389987675 - }, - "m_fAlpha": { - "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 482130755 - }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3623628394 - }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2102211316 - }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1846695875 - }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3389835433 - }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2547159940 - }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2587533771 - }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3091503757 - }, - "m_fPosition": { - "type": "float", - "id": 16, - "offset": 584, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1808212114 - }, - "m_BaseColor": { - "type": "class Color", - "id": 17, - "offset": 588, - "flags": 262279, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2172251096 - }, - "m_BarColor": { - "type": "class Color", - "id": 18, - "offset": 592, - "flags": 262279, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2259916498 - }, - "m_bDisplayVertical": { - "type": "bool", - "id": 19, - "offset": 596, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1359621189 - }, - "m_pBarMaterial": { - "type": "class SharedPointer", - "id": 20, - "offset": 600, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2481929515 - }, - "m_pTopLeftMaterial": { - "type": "class SharedPointer", - "id": 21, - "offset": 616, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3248096916 - }, - "m_pCenterMaterial": { - "type": "class SharedPointer", - "id": 22, - "offset": 632, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1519560055 - }, - "m_pBottomRightMaterial": { - "type": "class SharedPointer", - "id": 23, - "offset": 648, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2932444745 - }, - "m_fMin": { - "type": "float", - "id": 24, - "offset": 700, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 309551905 - }, - "m_fMax": { - "type": "float", - "id": 25, - "offset": 704, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 309551651 - }, - "m_nTabWidth": { - "type": "int", - "id": 26, - "offset": 708, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1554957503 - }, - "m_nNumberOfTicks": { - "type": "int", - "id": 27, - "offset": 712, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1073178596 - } - } - }, - "1828751226": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1828751226, - "properties": { - "m_place": { - "type": "int", - "id": 0, - "offset": 72, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 806257663 - }, - "m_lootTableNameList": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2465726014 - }, - "m_lootTableNameBlob": { - "type": "std::string", - "id": 2, - "offset": 96, - "flags": 551, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2465369761 - }, - "m_templateIDList": { - "type": "unsigned int", - "id": 3, - "offset": 128, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1639803570 - }, - "m_templateIDListBlob": { - "type": "std::string", - "id": 4, - "offset": 144, - "flags": 551, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3246130975 - }, - "m_rewardDescriptor": { - "type": "std::string", - "id": 5, - "offset": 176, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1935206431 - } - } - }, - "1828534199": { - "name": "class AvatarItemInfo", - "bases": [ - "AvatarItemInfoBase", - "PropertyClass" - ], - "hash": 1828534199, - "properties": { - "m_partName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2609631923 - }, - "m_slotName": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2819781566 - }, - "m_flags": { - "type": "std::string", - "id": 2, - "offset": 144, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2292098216 - }, - "m_options": { - "type": "class SharedPointer", - "id": 3, - "offset": 160, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2499357824 - }, - "m_textureOptions": { - "type": "class SharedPointer", - "id": 4, - "offset": 176, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2667548348 - }, - "m_defaultOption": { - "type": "class SharedPointer", - "id": 5, - "offset": 192, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2436336754 - }, - "m_defaultTextureOption": { - "type": "class SharedPointer", - "id": 6, - "offset": 208, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2712636654 - } - } - }, - "263471392": { - "name": "class SharedPointer", - "bases": [ - "Window", - "PropertyClass" - ], - "hash": 263471392, - "properties": { - "m_sName": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306437263 - }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 65667, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621225959 - }, - "m_Style": { - "type": "unsigned int", - "id": 2, - "offset": 152, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "SCALE_CHILDREN": 2, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "FOCUS_LOCKED": 64, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152 - } - }, - "m_Flags": { - "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } - }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3105139380 - }, - "m_fTargetAlpha": { - "type": "float", - "id": 5, - "offset": 212, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1809129834 - }, - "m_fDisabledAlpha": { - "type": "float", - "id": 6, - "offset": 216, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1389987675 - }, - "m_fAlpha": { - "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 482130755 - }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3623628394 - }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2102211316 - }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1846695875 - }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3389835433 - }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2547159940 - }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2587533771 - }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3091503757 - } - } - }, - "1426522259": { - "name": "class SharedPointer", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1426522259, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - } - } - }, - "1426074023": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1426074023, - "properties": { - "m_tag": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1764749335 - }, - "m_unlocked": { - "type": "bool", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 974984968 - } - } - }, - "1828588173": { - "name": "class BadgeFilterInfoList", - "bases": [ - "PropertyClass" - ], - "hash": 1828588173, - "properties": { - "m_badgeFilterInfoList": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2012631232 - } - } - }, - "263762339": { - "name": "class PetTalentCountControl*", - "bases": [ - "Window", - "PropertyClass" - ], - "hash": 263762339, - "properties": { - "m_sName": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306437263 - }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 65667, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621225959 - }, - "m_Style": { - "type": "unsigned int", - "id": 2, - "offset": 152, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "SCALE_CHILDREN": 2, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "FOCUS_LOCKED": 64, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152 - } - }, - "m_Flags": { - "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } - }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3105139380 - }, - "m_fTargetAlpha": { - "type": "float", - "id": 5, - "offset": 212, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1809129834 - }, - "m_fDisabledAlpha": { - "type": "float", - "id": 6, - "offset": 216, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1389987675 - }, - "m_fAlpha": { - "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 482130755 - }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3623628394 - }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2102211316 - }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1846695875 - }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3389835433 - }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2547159940 - }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2587533771 - }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3091503757 - } - } - }, - "1830106368": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1830106368, - "properties": { - "m_image": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2295691902 - }, - "m_rect": { - "type": "class Rect", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1325069066 - }, - "m_onTags": { - "type": "std::string", - "id": 2, - "offset": 136, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2294335367 - }, - "m_label": { - "type": "std::string", - "id": 3, - "offset": 216, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2298819451 - }, - "m_displayText": { - "type": "std::string", - "id": 4, - "offset": 248, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2447120726 - }, - "m_margins": { - "type": "class Rect", - "id": 5, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2860673101 - }, - "m_childIds": { - "type": "unsigned int", - "id": 6, - "offset": 168, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1423756721 - }, - "m_id": { - "type": "unsigned int", - "id": 7, - "offset": 160, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2301988666 - }, - "m_bIgnoresMouse": { - "type": "bool", - "id": 8, - "offset": 292, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2149274933 - }, - "m_templateID": { - "type": "unsigned int", - "id": 9, - "offset": 312, - "flags": 33554439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1286746870 - }, - "m_childDisplayText": { - "type": "std::string", - "id": 10, - "offset": 320, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3062136730 - }, - "m_childImage": { - "type": "std::string", - "id": 11, - "offset": 352, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3100605890 - }, - "m_childRect": { - "type": "class Rect", - "id": 12, - "offset": 384, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2455739854 - }, - "m_childMargins": { - "type": "class Rect", - "id": 13, - "offset": 400, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3238677649 - }, - "m_displayRequirements": { - "type": "class RequirementList*", - "id": 14, - "offset": 424, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3646782876 - } - } - }, - "1427663574": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1427663574, - "properties": {} - }, - "1830098913": { - "name": "class SeedBehavior", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1830098913, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - } - } - }, - "264876985": { - "name": "class CrownsRewardsEventData*", - "bases": [ - "PropertyClass" - ], - "hash": 264876985, - "properties": { - "m_eventName": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3493260286 - }, - "m_startTime": { - "type": "unsigned __int64", - "id": 1, - "offset": 112, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1859690486 - }, - "m_endTime": { - "type": "unsigned __int64", - "id": 2, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 977798847 - }, - "m_active": { - "type": "bool", - "id": 3, - "offset": 128, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 239335471 - } - } - }, - "1427509360": { - "name": "class BadgeFilterDescriptionList", - "bases": [ - "PropertyClass" - ], - "hash": 1427509360, - "properties": { - "m_badgeFilterDescriptionList": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 3252782039 - } - } - }, - "264647145": { - "name": "class FriendlyPlayerQuestInfo", - "bases": [ - "PropertyClass" - ], - "hash": 264647145, - "properties": { - "m_characterIDList": { - "type": "gid", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 689466254 - }, - "m_questNameList": { - "type": "std::string", - "id": 1, - "offset": 88, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 3221150474 - } - } - }, - "1427247042": { - "name": "class TextTagPair", - "bases": [ - "PropertyClass" - ], - "hash": 1427247042, - "properties": { - "m_tag": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1764749335 - }, - "m_time": { - "type": "float", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 310085638 - } - } - }, - "264234337": { - "name": "class SharedPointer", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 264234337, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_polyCategoryInactiveToRedTeamPlayers": { - "type": "gid", - "id": 1, - "offset": 112, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 757020210 - }, - "m_polyCategoryUnavailableToRedTeamPlayers": { - "type": "gid", - "id": 2, - "offset": 128, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1382977667 - }, - "m_polyCategoryInactiveToBlueTeamPlayers": { - "type": "gid", - "id": 3, - "offset": 144, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1877669599 - }, - "m_polyCategoryUnavailableToBlueTeamPlayers": { - "type": "gid", - "id": 4, - "offset": 160, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1059429200 - } - } - }, - "1831314281": { - "name": "enum CantripsSpellTemplate::CantripsSpellEffect", - "bases": [], - "hash": 1831314281, - "properties": {} - }, - "264197323": { - "name": "class std::list >", - "bases": [], - "hash": 264197323, - "properties": {} - }, - "1830269644": { - "name": "class CinematicActorAnimationContainer", - "bases": [ - "PropertyClass" - ], - "hash": 1830269644, - "properties": { - "m_templateID": { - "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 71, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1286746870 - }, - "m_actorName": { - "type": "std::string", - "id": 1, - "offset": 96, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2050810421 - }, - "m_animations": { - "type": "class SharedPointer", - "id": 2, - "offset": 128, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2741681697 - }, - "m_templateIDs": { - "type": "unsigned int", - "id": 3, - "offset": 80, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1335199401 - } - } - }, - "1427509370": { - "name": "class BadgeFilterDescriptionList*", - "bases": [ - "PropertyClass" - ], - "hash": 1427509370, - "properties": { - "m_badgeFilterDescriptionList": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 3252782039 - } - } - }, - "264593925": { - "name": "class WeightedEntryT*", - "bases": [ - "WeightedEntry", - "PropertyClass" - ], - "hash": 264593925, - "properties": { - "m_weight": { - "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1311209301 - }, - "m_entry": { - "type": "class SplashCinematicInfo", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1951897293 - } - } - }, - "1831571432": { - "name": "class SharedPointer", - "bases": [ - "DerbyTerrainEffect", - "DerbyEffect", - "PropertyClass" - ], - "hash": 1831571432, - "properties": { - "m_buffType": { - "type": "enum DerbyTalentBuffType", - "id": 0, - "offset": 92, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1149251982, - "enum_options": { - "Buff": 0, - "Debuff": 1, - "Neither": 2 - } - }, - "m_kTarget": { - "type": "enum DerbyTargetType", - "id": 1, - "offset": 96, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1807803351, - "enum_options": { - "kTargetInFront": 0, - "kTargetBehind": 1, - "kTargetFirst": 2, - "kTargetSelf": 3, - "kTargetAll": 4, - "kTargetLast": 5 - } - }, - "m_nDuration": { - "type": "int", - "id": 2, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1110167982 - }, - "m_effectID": { - "type": "unsigned int", - "id": 3, - "offset": 88, - "flags": 24, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2347630439 - }, - "m_imageFilename": { - "type": "std::string", - "id": 4, - "offset": 112, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2813328063 - }, - "m_iconIndex": { - "type": "unsigned int", - "id": 5, - "offset": 144, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1265133262 - }, - "m_soundOnActivate": { - "type": "std::string", - "id": 6, - "offset": 152, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1956929714 - }, - "m_soundOnTarget": { - "type": "std::string", - "id": 7, - "offset": 184, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3444214056 - }, - "m_targetParticleEffect": { - "type": "std::string", - "id": 8, - "offset": 216, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3048234723 - }, - "m_overheadMessage": { - "type": "std::string", - "id": 9, - "offset": 248, - "flags": 8388639, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1701018190 - }, - "m_requirements": { - "type": "class RequirementList", - "id": 10, - "offset": 280, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2840988582 - }, - "m_terrainType": { - "type": "enum PetDerbyTrackTerrain", - "id": 11, - "offset": 376, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2688629581, - "enum_options": { - "Cobblestone": 0, - "Water": 1, - "Grass": 2, - "Clay": 3, - "Dirt": 4, - "Mud": 5 - } - }, - "m_fEffectReapplyTime": { - "type": "float", - "id": 12, - "offset": 380, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1483497206 - }, - "m_effectsToApply": { - "type": "class SharedPointer", - "id": 13, - "offset": 384, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2042624288 - }, - "m_permanentEffects": { - "type": "class SharedPointer", - "id": 14, - "offset": 400, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2129171809 - } - } - }, - "1428367074": { - "name": "class SharedPointer", - "bases": [ - "TournamentUpdate", - "PropertyClass" - ], - "hash": 1428367074, - "properties": { - "m_matchID": { - "type": "gid", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1757621298 - } - } - }, - "1427952611": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1427952611, - "properties": { - "m_capValue": { - "type": "float", - "id": 0, - "offset": 88, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1100002568 - }, - "m_criticalHitScalarBase": { - "type": "float", - "id": 1, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 448021976 - }, - "m_criticalHitScalingFactor": { - "type": "float", - "id": 2, - "offset": 76, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 322634343 - }, - "m_blockScalarBase": { - "type": "float", - "id": 3, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1713825491 - }, - "m_blockScalingFactor": { - "type": "float", - "id": 4, - "offset": 84, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1504920962 - } - } - }, - "264836025": { - "name": "class CrownsRewardsEventData", - "bases": [ - "PropertyClass" - ], - "hash": 264836025, - "properties": { - "m_eventName": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3493260286 - }, - "m_startTime": { - "type": "unsigned __int64", - "id": 1, - "offset": 112, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1859690486 - }, - "m_endTime": { - "type": "unsigned __int64", - "id": 2, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 977798847 - }, - "m_active": { - "type": "bool", - "id": 3, - "offset": 128, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 239335471 - } - } - }, - "1833914164": { - "name": "class FishCatchOfTheDayOption", - "bases": [ - "ServiceOptionBase", - "PropertyClass" - ], - "hash": 1833914164, - "properties": { - "m_serviceName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2206028813 - }, - "m_iconKey": { - "type": "std::string", - "id": 1, - "offset": 168, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2457138637 - }, - "m_displayKey": { - "type": "std::string", - "id": 2, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3023276954 - }, - "m_serviceIndex": { - "type": "unsigned int", - "id": 3, - "offset": 204, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2103126710 - }, - "m_forceInteract": { - "type": "bool", - "id": 4, - "offset": 200, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1705789564 - } - } - }, - "1833508009": { - "name": "class SharedPointer", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1833508009, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_monsterData": { - "type": "std::string", - "id": 1, - "offset": 128, - "flags": 551, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3377737309 - } - } - }, - "1832465385": { - "name": "class SharedPointer", - "bases": [ - "Requirement", - "PropertyClass" - ], - "hash": 1832465385, - "properties": { - "m_applyNOT": { - "type": "bool", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1746328074, - "enum_options": { - "__DEFAULT": 0 - } - }, - "m_operator": { - "type": "enum Requirement::Operator", - "id": 1, - "offset": 76, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2672792317, - "enum_options": { - "ROP_AND": 0, - "ROP_OR": 1, - "__DEFAULT": "ROP_AND" - } - } - } - }, - "264962611": { - "name": "class ChaseCamController*", - "bases": [ - "CameraController", - "PropertyClass" - ], - "hash": 264962611, - "properties": {} - }, - "1431561938": { - "name": "class SharedPointer", - "bases": [ - "LootInfo", - "LootInfoBase", - "PropertyClass" - ], - "hash": 1431561938, - "properties": { - "m_lootType": { - "type": "enum LootInfo::LOOT_TYPE", - "id": 0, - "offset": 72, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1591891442, - "enum_options": { - "LOOT_TYPE_NONE": 0, - "LOOT_TYPE_GOLD": 1, - "LOOT_TYPE_MANA": 2, - "LOOT_TYPE_ITEM": 3, - "LOOT_TYPE_TREASURE_CARD": 4, - "LOOT_TYPE_MAGIC_XP": 5, - "LOOT_TYPE_ADD_SPELL": 6, - "LOOT_TYPE_MAX_HEALTH": 7, - "LOOT_TYPE_MAX_GOLD": 8, - "LOOT_TYPE_MAX_MANA": 9, - "LOOT_TYPE_MAX_POTION": 10, - "LOOT_TYPE_TRAINING_POINTS": 11, - "LOOT_TYPE_RECIPE": 12, - "LOOT_TYPE_CRAFTING_SLOT": 13, - "LOOT_TYPE_REAGENT": 14, - "LOOT_TYPE_PETSNACK": 15, - "LOOT_TYPE_GARDENING_XP": 16, - "LOOT_TYPE_PET_XP": 17, - "LOOT_TYPE_TREASURE_TABLE": 18, - "LOOT_TYPE_ARENA_POINTS": 19, - "LOOT_TYPE_ARENA_BONUS_POINTS": 20, - "LOOT_TYPE_GROUP": 21, - "LOOT_TYPE_FISHING_XP": 22, - "LOOT_TYPE_EVENT_CURRENCY_1": 24, - "LOOT_TYPE_EVENT_CURRENCY_2": 25, - "LOOT_TYPE_PVP_CURRENCY": 26, - "LOOT_TYPE_PVP_CURRENCY_BONUS": 27, - "LOOT_TYPE_PVP_TOURNEY_CURRENCY": 28, - "LOOT_TYPE_PVP_TOURNEY_CURRENCY_BONUS": 29, - "LOOT_TYPE_FURNITURE_ESSENCE": 30 - } - }, - "m_pvpCurrencyBonusAmount": { - "type": "int", - "id": 1, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 447030870 - } - } - }, - "1431031301": { - "name": "class GameEffectTimerPopupTrigger", - "bases": [ - "GameEffectTimerTrigger", - "PropertyClass" - ], - "hash": 1431031301, - "properties": { - "m_radius": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 989410271 - }, - "m_triggerT": { - "type": "float", - "id": 1, - "offset": 76, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2138083583 - }, - "m_popupKey": { - "type": "std::string", - "id": 2, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3434427096 - } - } - }, - "1430645630": { - "name": "class ExtraHousingZoneBehaviorBase", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1430645630, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - } - } - }, - "266780779": { - "name": "class ClientEventDrivenCinematic*", - "bases": [ - "ClientCinematic", - "Cinematic", - "PropertyClass" - ], - "hash": 266780779, - "properties": {} - }, - "651598791": { - "name": "class SharedPointer", - "bases": [ - "InfractionPenaltyInfo", - "PropertyClass" - ], - "hash": 651598791, - "properties": { - "m_addAtPointValue": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1071217084 - }, - "m_removeAtPointValue": { - "type": "float", - "id": 1, - "offset": 76, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2112196961 - }, - "m_lifespan": { - "type": "std::string", - "id": 2, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3042809453 - }, - "m_titleKey": { - "type": "std::string", - "id": 3, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3096106918 - }, - "m_messageKey": { - "type": "std::string", - "id": 4, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3561518217 - } - } - }, - "1430930538": { - "name": "enum ClassProjectRewardType", - "bases": [], - "hash": 1430930538, - "properties": {} - }, - "651115199": { - "name": "class ZoneTokenInfo*", - "bases": [ - "CoreObjectInfo", - "PropertyClass" - ], - "hash": 651115199, - "properties": { - "m_templateID.m_full": { - "type": "unsigned __int64", - "id": 0, - "offset": 72, - "flags": 33554439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 633907631 - }, - "m_nObjectID": { - "type": "unsigned int", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 748496927 - }, - "m_location": { - "type": "class Vector3D", - "id": 2, - "offset": 84, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2239683611 - }, - "m_orientation": { - "type": "class Vector3D", - "id": 3, - "offset": 96, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2344058766 - }, - "m_fScale": { - "type": "float", - "id": 4, - "offset": 108, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 503137701 - }, - "m_zoneTag": { - "type": "std::string", - "id": 5, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3405382643 - }, - "m_startState": { - "type": "std::string", - "id": 6, - "offset": 184, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2166880458 - }, - "m_overrideName": { - "type": "std::string", - "id": 7, - "offset": 120, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1990707228 - }, - "m_globalDynamic": { - "type": "bool", - "id": 8, - "offset": 116, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1951691017 - }, - "m_bUndetectable": { - "type": "bool", - "id": 9, - "offset": 216, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1907454341 - }, - "m_spawnRequirements": { - "type": "class SharedPointer", - "id": 10, - "offset": 224, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2309120870 - }, - "m_loadingType": { - "type": "enum CoreObjectInfo::LoadingType", - "id": 11, - "offset": 112, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3522422550, - "enum_options": { - "STATIC_CLIENT_SERVER": 0, - "STATIC_CLIENT": 1, - "STATIC_SERVER": 2, - "DYNAMIC_SERVER": 3 - } - }, - "m_pContainer": { - "type": "class SharedPointer", - "id": 12, - "offset": 240, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 915185204 - } - } - }, - "651115194": { - "name": "class ZoneTokenInfo", - "bases": [ - "CoreObjectInfo", - "PropertyClass" - ], - "hash": 651115194, - "properties": { - "m_templateID.m_full": { - "type": "unsigned __int64", - "id": 0, - "offset": 72, - "flags": 33554439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 633907631 - }, - "m_nObjectID": { - "type": "unsigned int", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 748496927 - }, - "m_location": { - "type": "class Vector3D", - "id": 2, - "offset": 84, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2239683611 - }, - "m_orientation": { - "type": "class Vector3D", - "id": 3, - "offset": 96, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2344058766 - }, - "m_fScale": { - "type": "float", - "id": 4, - "offset": 108, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 503137701 - }, - "m_zoneTag": { - "type": "std::string", - "id": 5, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3405382643 - }, - "m_startState": { - "type": "std::string", - "id": 6, - "offset": 184, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2166880458 - }, - "m_overrideName": { - "type": "std::string", - "id": 7, - "offset": 120, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1990707228 - }, - "m_globalDynamic": { - "type": "bool", - "id": 8, - "offset": 116, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1951691017 - }, - "m_bUndetectable": { - "type": "bool", - "id": 9, - "offset": 216, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1907454341 - }, - "m_spawnRequirements": { - "type": "class SharedPointer", - "id": 10, - "offset": 224, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2309120870 - }, - "m_loadingType": { - "type": "enum CoreObjectInfo::LoadingType", - "id": 11, - "offset": 112, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3522422550, - "enum_options": { - "STATIC_CLIENT_SERVER": 0, - "STATIC_CLIENT": 1, - "STATIC_SERVER": 2, - "DYNAMIC_SERVER": 3 - } - }, - "m_pContainer": { - "type": "class SharedPointer", - "id": 12, - "offset": 240, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 915185204 - } - } - }, - "1033621019": { - "name": "class StaticControlButtonState*", - "bases": [ - "ControlButtonState", - "PropertyClass" - ], - "hash": 1033621019, - "properties": { - "m_nMaterialFrame": { - "type": "int", - "id": 0, - "offset": 72, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1641923970 - } - } - }, - "1032795298": { - "name": "class SharedPointer", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 1032795298, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - }, - "m_behaviorList": { - "type": "class BehaviorTemplate*", - "id": 1, - "offset": 120, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1993233019 - } - } - }, - "1431398034": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1431398034, - "properties": { - "m_myStitchEntryList": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621117270 - }, - "m_hasEventJudgesChoiceAvailable": { - "type": "bool", - "id": 1, - "offset": 88, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1875999071 - } - } - }, - "1431031621": { - "name": "class GameEffectTimerPopupTrigger*", - "bases": [ - "GameEffectTimerTrigger", - "PropertyClass" - ], - "hash": 1431031621, - "properties": { - "m_radius": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 989410271 - }, - "m_triggerT": { - "type": "float", - "id": 1, - "offset": 76, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2138083583 - }, - "m_popupKey": { - "type": "std::string", - "id": 2, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3434427096 - } - } - }, - "651470375": { - "name": "class FishTournamentEntry*", - "bases": [ - "PropertyClass" - ], - "hash": 651470375, - "properties": { - "m_characterGID": { - "type": "gid", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 501688601 - }, - "m_fishSize": { - "type": "float", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1986368316 - }, - "m_packedName": { - "type": "std::string", - "id": 2, - "offset": 88, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1805208228 - } - } - }, - "651386166": { - "name": "class PetObstacleCourseGameInfo", - "bases": [ - "PetGameInfo", - "PropertyClass" - ], - "hash": 651386166, - "properties": { - "m_isWebGame": { - "type": "bool", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 944547943 - }, - "m_name": { - "type": "std::string", - "id": 1, - "offset": 160, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1717359772 - }, - "m_energyCosts": { - "type": "class SharedPointer", - "id": 2, - "offset": 192, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 3378376555 - }, - "m_trackChoices": { - "type": "class SharedPointer", - "id": 3, - "offset": 208, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1548152913 - }, - "m_gameIcon": { - "type": "std::string", - "id": 4, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3229574910 - }, - "m_trackIcons": { - "type": "std::string", - "id": 5, - "offset": 112, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2211683916 - }, - "m_trackToolTips": { - "type": "std::string", - "id": 6, - "offset": 136, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1898819214 - }, - "m_petWidth": { - "type": "int", - "id": 7, - "offset": 232, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2027689763 - }, - "m_petHeight": { - "type": "int", - "id": 8, - "offset": 236, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1894813180 - }, - "m_petDepth": { - "type": "int", - "id": 9, - "offset": 240, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2005026584 - }, - "m_gravity": { - "type": "float", - "id": 10, - "offset": 244, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1184936541 - }, - "m_fallingPenalty": { - "type": "int", - "id": 11, - "offset": 248, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1717924532 - }, - "m_trackTimes": { - "type": "int", - "id": 12, - "offset": 256, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 727242577 - }, - "m_collectionInterval": { - "type": "double", - "id": 13, - "offset": 280, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3052813470 - }, - "m_tolerance": { - "type": "double", - "id": 14, - "offset": 288, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3410860138 - } - } - }, - "240934124": { - "name": "class PetTomeBehaviorTemplate", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 240934124, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - } - } - }, - "1034871299": { - "name": "class HubZoneMapping*", - "bases": [ - "PropertyClass" - ], - "hash": 1034871299, - "properties": { - "m_world": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2312385347 - }, - "m_hubZone": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 268435463, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1854011510, - "enum_options": { - "__BASECLASS": "ZoneData" - } - }, - "m_location": { - "type": "std::string", - "id": 2, - "offset": 136, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2079561588 - }, - "m_universeTPZone": { - "type": "std::string", - "id": 3, - "offset": 168, - "flags": 268435463, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1587575180, - "enum_options": { - "__BASECLASS": "ZoneData" - } - }, - "m_universeTPLocation": { - "type": "std::string", - "id": 4, - "offset": 200, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3141910185 - }, - "m_hubZoneDisplayName": { - "type": "std::string", - "id": 5, - "offset": 232, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3166854829 - }, - "m_specialZones": { - "type": "std::string", - "id": 6, - "offset": 264, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2731574123 - } - } - }, - "1431480669": { - "name": "class FXBySlotEffectInfo", - "bases": [ - "GameEffectInfo", - "PropertyClass" - ], - "hash": 1431480669, - "properties": { - "m_effectName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2029161513 - }, - "m_bIsOnPet": { - "type": "bool", - "id": 1, - "offset": 104, - "flags": 263, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 522593303 - } - } - }, - "1034582733": { - "name": "class WizBangTemplateManager*", - "bases": [ - "PropertyClass" - ], - "hash": 1034582733, - "properties": { - "m_templates": { - "type": "class WizBangTemplate", - "id": 0, - "offset": 80, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": true, - "pointer": false, - "hash": 1728528111 - } - } - }, - "651472722": { - "name": "class SharedPointer", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 651472722, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_spellNames": { - "type": "std::string", - "id": 1, - "offset": 112, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2136089135 - }, - "m_targetNode": { - "type": "std::string", - "id": 2, - "offset": 128, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2698500040 - }, - "m_offset": { - "type": "class Vector3D", - "id": 3, - "offset": 160, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2445636425 - }, - "m_rotate": { - "type": "class Vector3D", - "id": 4, - "offset": 172, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2574199889 - }, - "m_height": { - "type": "float", - "id": 5, - "offset": 184, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 602977104 - }, - "m_alpha": { - "type": "float", - "id": 6, - "offset": 188, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 878686493 - }, - "m_cycleRate": { - "type": "float", - "id": 7, - "offset": 192, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 947046355 - } - } - }, - "1034275375": { - "name": "class ElixirBenefitEffect", - "bases": [ - "GameEffectBase", - "PropertyClass" - ], - "hash": 1034275375, - "properties": { - "m_currentTickCount": { - "type": "double", - "id": 0, - "offset": 80, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2533274692 - }, - "m_effectNameID": { - "type": "unsigned int", - "id": 1, - "offset": 96, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1204067144 - }, - "m_bIsOnPet": { - "type": "bool", - "id": 2, - "offset": 73, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 522593303 - }, - "m_originatorID": { - "type": "gid", - "id": 3, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1131810019 - }, - "m_itemSlotID": { - "type": "unsigned int", - "id": 4, - "offset": 112, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1895747595 - }, - "m_internalID": { - "type": "int", - "id": 5, - "offset": 92, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1643137924 - }, - "m_endTime": { - "type": "unsigned int", - "id": 6, - "offset": 88, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 716479635 - }, - "m_flags": { - "type": "unsigned int", - "id": 7, - "offset": 128, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1005801050 - } - } - }, - "1431652126": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1431652126, - "properties": {} - }, - "651907595": { - "name": "class SharedPointer", - "bases": [ - "ControlRichEdit", - "ControlEdit", - "Window", - "PropertyClass" - ], - "hash": 651907595, - "properties": { - "m_sName": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306437263 - }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621225959 - }, - "m_Style": { - "type": "unsigned int", - "id": 2, - "offset": 152, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152, - "FORCE_NUMERIC": 16777216, - "FORCE_ALPHA": 268435456, - "FORCE_ALPHANUMERIC": 536870912, - "FORCE_INTEGER": 33554432, - "FORCE_POSITIVE": 67108864, - "FORCE_RANGE": 134217728 - } - }, - "m_Flags": { - "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } - }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3105139380 - }, - "m_fTargetAlpha": { - "type": "float", - "id": 5, - "offset": 212, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1809129834 - }, - "m_fDisabledAlpha": { - "type": "float", - "id": 6, - "offset": 216, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1389987675 - }, - "m_fAlpha": { - "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 482130755 - }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3623628394 - }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2102211316 - }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1846695875 - }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3389835433 - }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2547159940 - }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2587533771 - }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3091503757 - }, - "m_sText": { - "type": "std::wstring", - "id": 16, - "offset": 584, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2102642960 - }, - "m_nMaxLength": { - "type": "int", - "id": 17, - "offset": 620, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1183478416 - }, - "m_bPassword": { - "type": "bool", - "id": 18, - "offset": 624, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1604468200 - }, - "m_bLog": { - "type": "bool", - "id": 19, - "offset": 625, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 221687287 - }, - "m_previousNext": { - "type": "bool", - "id": 20, - "offset": 627, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 858581071 - }, - "m_nMaxLogSize": { - "type": "int", - "id": 21, - "offset": 712, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 779573899 - }, - "m_bEditing": { - "type": "bool", - "id": 22, - "offset": 616, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1243218553 - }, - "m_bAllowPaste": { - "type": "bool", - "id": 23, - "offset": 626, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1129316721 - }, - "m_nLogPosition": { - "type": "int", - "id": 24, - "offset": 704, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1120160767 - }, - "m_nCursor": { - "type": "int", - "id": 25, - "offset": 716, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1876782150 - }, - "m_nEditBegin": { - "type": "int", - "id": 26, - "offset": 720, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1066592403 - }, - "m_nEditEnd": { - "type": "int", - "id": 27, - "offset": 724, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1560905669 - }, - "m_sSavedText": { - "type": "std::wstring", - "id": 28, - "offset": 728, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2197953283 - }, - "m_fCursorBlinkSpeed": { - "type": "float", - "id": 29, - "offset": 760, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2232655228 - }, - "m_fCursorTimer": { - "type": "float", - "id": 30, - "offset": 764, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1929942748 - }, - "m_bCursorBlink": { - "type": "bool", - "id": 31, - "offset": 768, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 683441507 - }, - "m_fMinRange": { - "type": "double", - "id": 32, - "offset": 776, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3079523396 - }, - "m_fMaxRange": { - "type": "double", - "id": 33, - "offset": 784, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3876551814 - }, - "m_nPrecision": { - "type": "int", - "id": 34, - "offset": 792, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1404974196 - }, - "m_bDeleteOnFirstChar": { - "type": "bool", - "id": 35, - "offset": 618, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 902105643 - } - } - }, - "1034607309": { - "name": "class WizBangTemplateManager", - "bases": [ - "PropertyClass" - ], - "hash": 1034607309, - "properties": { - "m_templates": { - "type": "class WizBangTemplate", - "id": 0, - "offset": 80, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": true, - "pointer": false, - "hash": 1728528111 - } - } - }, - "1436943840": { - "name": "class SharedPointer", - "bases": [ - "FlareBacklashEffectCinematicAction", - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 1436943840, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - } - } - }, - "1434103692": { - "name": "class FaceTargetActorCinematicAction", - "bases": [ - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 1434103692, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - }, - "m_bCaster": { - "type": "bool", - "id": 2, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1390351511 - } - } - }, - "652409070": { - "name": "class SharedPointer", - "bases": [ - "Window", - "PropertyClass" - ], - "hash": 652409070, - "properties": { - "m_sName": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306437263 - }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 65667, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621225959 - }, - "m_Style": { - "type": "unsigned int", - "id": 2, - "offset": 152, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "SCALE_CHILDREN": 2, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "FOCUS_LOCKED": 64, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152 - } - }, - "m_Flags": { - "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } - }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3105139380 - }, - "m_fTargetAlpha": { - "type": "float", - "id": 5, - "offset": 212, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1809129834 - }, - "m_fDisabledAlpha": { - "type": "float", - "id": 6, - "offset": 216, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1389987675 - }, - "m_fAlpha": { - "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 482130755 - }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3623628394 - }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2102211316 - }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1846695875 - }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3389835433 - }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2547159940 - }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2587533771 - }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3091503757 - } - } - }, - "1034871459": { - "name": "class HubZoneMapping", - "bases": [ - "PropertyClass" - ], - "hash": 1034871459, - "properties": { - "m_world": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2312385347 - }, - "m_hubZone": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 268435463, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1854011510, - "enum_options": { - "__BASECLASS": "ZoneData" - } - }, - "m_location": { - "type": "std::string", - "id": 2, - "offset": 136, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2079561588 - }, - "m_universeTPZone": { - "type": "std::string", - "id": 3, - "offset": 168, - "flags": 268435463, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1587575180, - "enum_options": { - "__BASECLASS": "ZoneData" - } - }, - "m_universeTPLocation": { - "type": "std::string", - "id": 4, - "offset": 200, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3141910185 - }, - "m_hubZoneDisplayName": { - "type": "std::string", - "id": 5, - "offset": 232, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3166854829 - }, - "m_specialZones": { - "type": "std::string", - "id": 6, - "offset": 264, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2731574123 - } - } - }, - "1432926436": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1432926436, - "properties": { - "m_school": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2438566051 - }, - "m_level": { - "type": "int", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 801285362 - }, - "m_canonicalMaxHealth": { - "type": "float", - "id": 2, - "offset": 108, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2081916187 - }, - "m_canonicalMaxMana": { - "type": "float", - "id": 3, - "offset": 112, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1703399938 - }, - "m_canonicalFireAccuracy": { - "type": "float", - "id": 4, - "offset": 116, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 663526928 - }, - "m_canonicalIceAccuracy": { - "type": "float", - "id": 5, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1136218459 - }, - "m_canonicalStormAccuracy": { - "type": "float", - "id": 6, - "offset": 124, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 781009151 - }, - "m_canonicalMythAccuracy": { - "type": "float", - "id": 7, - "offset": 128, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 965342476 - }, - "m_canonicalLifeAccuracy": { - "type": "float", - "id": 8, - "offset": 132, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 482476234 - }, - "m_canonicalDeathAccuracy": { - "type": "float", - "id": 9, - "offset": 136, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 541998448 - }, - "m_canonicalBalanceAccuracy": { - "type": "float", - "id": 10, - "offset": 140, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1202638384 - }, - "m_canonicalStarAccuracy": { - "type": "float", - "id": 11, - "offset": 144, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2223128484 - }, - "m_canonicalSunAccuracy": { - "type": "float", - "id": 12, - "offset": 148, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1517720384 - }, - "m_canonicalMoonAccuracy": { - "type": "float", - "id": 13, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 715174115 - }, - "m_canonicalShadowAccuracy": { - "type": "float", - "id": 14, - "offset": 156, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 855808400 - }, - "m_canonicalFireArmorPiercing": { - "type": "float", - "id": 15, - "offset": 160, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1576771575 - }, - "m_canonicalIceArmorPiercing": { - "type": "float", - "id": 16, - "offset": 164, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 805509666 - }, - "m_canonicalStormArmorPiercing": { - "type": "float", - "id": 17, - "offset": 168, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1446146118 - }, - "m_canonicalMythArmorPiercing": { - "type": "float", - "id": 18, - "offset": 172, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 496153715 - }, - "m_canonicalLifeArmorPiercing": { - "type": "float", - "id": 19, - "offset": 176, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 666748657 - }, - "m_canonicalDeathArmorPiercing": { - "type": "float", - "id": 20, - "offset": 180, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 998759255 - }, - "m_canonicalBalanceArmorPiercing": { - "type": "float", - "id": 21, - "offset": 184, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 631301143 - }, - "m_canonicalStarArmorPiercing": { - "type": "float", - "id": 22, - "offset": 188, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2212060683 - }, - "m_canonicalSunArmorPiercing": { - "type": "float", - "id": 23, - "offset": 192, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 979260199 - }, - "m_canonicalMoonArmorPiercing": { - "type": "float", - "id": 24, - "offset": 196, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1453026986 - }, - "m_canonicalShadowArmorPiercing": { - "type": "float", - "id": 25, - "offset": 200, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2214251383 - }, - "m_canonicalFireDamage": { - "type": "float", - "id": 26, - "offset": 204, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1010754436 - }, - "m_canonicalIceDamage": { - "type": "float", - "id": 27, - "offset": 208, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1115703311 - }, - "m_canonicalStormDamage": { - "type": "float", - "id": 28, - "offset": 212, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 999030451 - }, - "m_canonicalMythDamage": { - "type": "float", - "id": 29, - "offset": 216, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1606568832 - }, - "m_canonicalLifeDamage": { - "type": "float", - "id": 30, - "offset": 220, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1097355198 - }, - "m_canonicalDeathDamage": { - "type": "float", - "id": 31, - "offset": 224, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 659630820 - }, - "m_canonicalBalanceDamage": { - "type": "float", - "id": 32, - "offset": 228, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 399936420 - }, - "m_canonicalStarDamage": { - "type": "float", - "id": 33, - "offset": 232, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 712445976 - }, - "m_canonicalSunDamage": { - "type": "float", - "id": 34, - "offset": 236, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 550096052 - }, - "m_canonicalMoonDamage": { - "type": "float", - "id": 35, - "offset": 240, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2205820311 - }, - "m_canonicalShadowDamage": { - "type": "float", - "id": 36, - "offset": 244, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 318766852 - }, - "m_canonicalFireFlatDamage": { - "type": "float", - "id": 37, - "offset": 248, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2042009387 - }, - "m_canonicalIceFlatDamage": { - "type": "float", - "id": 38, - "offset": 252, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1407011126 - }, - "m_canonicalStormFlatDamage": { - "type": "float", - "id": 39, - "offset": 256, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1131131354 - }, - "m_canonicalMythFlatDamage": { - "type": "float", - "id": 40, - "offset": 260, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2154143015 - }, - "m_canonicalLifeFlatDamage": { - "type": "float", - "id": 41, - "offset": 264, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 298815589 - }, - "m_canonicalDeathFlatDamage": { - "type": "float", - "id": 42, - "offset": 268, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 693997195 - }, - "m_canonicalBalanceFlatDamage": { - "type": "float", - "id": 43, - "offset": 272, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 723865419 - }, - "m_canonicalStarFlatDamage": { - "type": "float", - "id": 44, - "offset": 276, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1788538303 - }, - "m_canonicalSunFlatDamage": { - "type": "float", - "id": 45, - "offset": 280, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 250779739 - }, - "m_canonicalMoonFlatDamage": { - "type": "float", - "id": 46, - "offset": 284, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 303737534 - }, - "m_canonicalShadowFlatDamage": { - "type": "float", - "id": 47, - "offset": 288, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 983134891 - }, - "m_canonicalFireReduceDamage": { - "type": "float", - "id": 48, - "offset": 292, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2033292284 - }, - "m_canonicalIceReduceDamage": { - "type": "float", - "id": 49, - "offset": 296, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2009920711 - }, - "m_canonicalStormReduceDamage": { - "type": "float", - "id": 50, - "offset": 300, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2224559723 - }, - "m_canonicalDeathReduceDamage": { - "type": "float", - "id": 51, - "offset": 304, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 779346780 - }, - "m_canonicalMythReduceDamage": { - "type": "float", - "id": 52, - "offset": 308, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1740245240 - }, - "m_canonicalLifeReduceDamage": { - "type": "float", - "id": 53, - "offset": 312, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2070791094 - }, - "m_canonicalBalanceReduceDamage": { - "type": "float", - "id": 54, - "offset": 316, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1093587996 - }, - "m_canonicalStarReduceDamage": { - "type": "float", - "id": 55, - "offset": 320, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 881188752 - }, - "m_canonicalSunReduceDamage": { - "type": "float", - "id": 56, - "offset": 324, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1299357996 - }, - "m_canonicalMoonReduceDamage": { - "type": "float", - "id": 57, - "offset": 328, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 988338255 - }, - "m_canonicalShadowReduceDamage": { - "type": "float", - "id": 58, - "offset": 332, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2117685116 - }, - "m_canonicalFireFlatReduceDamage": { - "type": "float", - "id": 59, - "offset": 336, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1671506147 - }, - "m_canonicalIceFlatReduceDamage": { - "type": "float", - "id": 60, - "offset": 340, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 256243502 - }, - "m_canonicalStormFlatReduceDamage": { - "type": "float", - "id": 61, - "offset": 344, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1783712466 - }, - "m_canonicalDeathFlatReduceDamage": { - "type": "float", - "id": 62, - "offset": 348, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 104605763 - }, - "m_canonicalMythFlatReduceDamage": { - "type": "float", - "id": 63, - "offset": 352, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 454278111 - }, - "m_canonicalLifeFlatReduceDamage": { - "type": "float", - "id": 64, - "offset": 356, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2206377373 - }, - "m_canonicalBalanceFlatReduceDamage": { - "type": "float", - "id": 65, - "offset": 360, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1786870019 - }, - "m_canonicalStarFlatReduceDamage": { - "type": "float", - "id": 66, - "offset": 364, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2157518455 - }, - "m_canonicalSunFlatReduceDamage": { - "type": "float", - "id": 67, - "offset": 368, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1594183187 - }, - "m_canonicalMoonFlatReduceDamage": { - "type": "float", - "id": 68, - "offset": 372, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2100846262 - }, - "m_canonicalShadowFlatReduceDamage": { - "type": "float", - "id": 69, - "offset": 376, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1427809379 - }, - "m_canonicalPowerPip": { - "type": "float", - "id": 70, - "offset": 380, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1680220789 - }, - "m_canonicalShadowPipRating": { - "type": "float", - "id": 71, - "offset": 384, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1507596819 - }, - "m_canonicalIncHealing": { - "type": "float", - "id": 72, - "offset": 388, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1267876913 - }, - "m_canonicalLifeHealing": { - "type": "float", - "id": 73, - "offset": 392, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2124812407 - }, - "m_canonicalFireCriticalHit": { - "type": "float", - "id": 74, - "offset": 396, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1415646005 - }, - "m_canonicalIceCriticalHit": { - "type": "float", - "id": 75, - "offset": 400, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1935539872 - }, - "m_canonicalStormCriticalHit": { - "type": "float", - "id": 76, - "offset": 404, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1421441988 - }, - "m_canonicalMythCriticalHit": { - "type": "float", - "id": 77, - "offset": 408, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 821088433 - }, - "m_canonicalLifeCriticalHit": { - "type": "float", - "id": 78, - "offset": 412, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1872309167 - }, - "m_canonicalDeathCriticalHit": { - "type": "float", - "id": 79, - "offset": 416, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2028400277 - }, - "m_canonicalBalanceCriticalHit": { - "type": "float", - "id": 80, - "offset": 420, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 866568021 - }, - "m_canonicalStarCriticalHit": { - "type": "float", - "id": 81, - "offset": 424, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1641034825 - }, - "m_canonicalSunCriticalHit": { - "type": "float", - "id": 82, - "offset": 428, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 287126117 - }, - "m_canonicalMoonCriticalHit": { - "type": "float", - "id": 83, - "offset": 432, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2034733352 - }, - "m_canonicalShadowCriticalHit": { - "type": "float", - "id": 84, - "offset": 436, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 832526005 - }, - "m_canonicalFireBlock": { - "type": "float", - "id": 85, - "offset": 440, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 571735024 - }, - "m_canonicalIceBlock": { - "type": "float", - "id": 86, - "offset": 444, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 639990555 - }, - "m_canonicalStormBlock": { - "type": "float", - "id": 87, - "offset": 448, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1937960255 - }, - "m_canonicalMythBlock": { - "type": "float", - "id": 88, - "offset": 452, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 915166316 - }, - "m_canonicalLifeBlock": { - "type": "float", - "id": 89, - "offset": 456, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1094961386 - }, - "m_canonicalDeathBlock": { - "type": "float", - "id": 90, - "offset": 460, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 105568080 - }, - "m_canonicalBalanceBlock": { - "type": "float", - "id": 91, - "offset": 464, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1464279056 - }, - "m_canonicalStarBlock": { - "type": "float", - "id": 92, - "offset": 468, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 888071684 - }, - "m_canonicalSunBlock": { - "type": "float", - "id": 93, - "offset": 472, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1598979872 - }, - "m_canonicalMoonBlock": { - "type": "float", - "id": 94, - "offset": 476, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 152422307 - }, - "m_canonicalShadowBlock": { - "type": "float", - "id": 95, - "offset": 480, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1331668848 - }, - "m_canonicalFirePipConversion": { - "type": "float", - "id": 96, - "offset": 484, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1698926484 - }, - "m_canonicalIcePipConversion": { - "type": "float", - "id": 97, - "offset": 488, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 927664575 - }, - "m_canonicalStormPipConversion": { - "type": "float", - "id": 98, - "offset": 492, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1568301027 - }, - "m_canonicalMythPipConversion": { - "type": "float", - "id": 99, - "offset": 496, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 618308624 - }, - "m_canonicalLifePipConversion": { - "type": "float", - "id": 100, - "offset": 500, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 788903566 - }, - "m_canonicalDeathPipConversion": { - "type": "float", - "id": 101, - "offset": 504, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1120914164 - }, - "m_canonicalBalancePipConversion": { - "type": "float", - "id": 102, - "offset": 508, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 753456052 - }, - "m_canonicalStarPipConversion": { - "type": "float", - "id": 103, - "offset": 512, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 186731944 - }, - "m_canonicalSunPipConversion": { - "type": "float", - "id": 104, - "offset": 516, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1101415108 - }, - "m_canonicalMoonPipConversion": { - "type": "float", - "id": 105, - "offset": 520, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1575181895 - }, - "m_canonicalShadowPipConversion": { - "type": "float", - "id": 106, - "offset": 524, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 188922644 - }, - "m_canonicalAllArchmastery": { - "type": "float", - "id": 107, - "offset": 528, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 304759835 - }, - "m_maximumPips": { - "type": "int", - "id": 108, - "offset": 532, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 334257940 - }, - "m_maximumPowerPips": { - "type": "int", - "id": 109, - "offset": 536, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 952865025 - } - } - }, - "652077985": { - "name": "class ClientBGPlayerInfo*", - "bases": [ - "BGPlayerInfo", - "PropertyClass" - ], - "hash": 652077985, - "properties": { - "m_playerID": { - "type": "gid", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1774633426 - }, - "m_team": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1717579362 - } - } - }, - "1432483672": { - "name": "class PetGameEndData*", - "bases": [ - "PropertyClass" - ], - "hash": 1432483672, - "properties": { - "m_Score": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 861759411 - }, - "m_statMods": { - "type": "class SharedPointer", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 836453997 - }, - "m_xpGain": { - "type": "unsigned int", - "id": 2, - "offset": 96, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1362161460 - }, - "m_wins": { - "type": "unsigned int", - "id": 3, - "offset": 100, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 431394798 - } - } - }, - "652314621": { - "name": "class PolymorphImprovementRatingInfo", - "bases": [ - "PropertyClass" - ], - "hash": 652314621, - "properties": { - "m_polymorphTemplateID": { - "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1026295488 - }, - "m_personalRating": { - "type": "int", - "id": 1, - "offset": 76, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 209790915 - }, - "m_eventRating": { - "type": "int", - "id": 2, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2120160417 - } - } - }, - "1040108691": { - "name": "class TurnIndicatorCinematicAction*", - "bases": [ - "CinematicAction", - "PropertyClass" - ], - "hash": 1040108691, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - } - } - }, - "1432483832": { - "name": "class PetGameEndData", - "bases": [ - "PropertyClass" - ], - "hash": 1432483832, - "properties": { - "m_Score": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 861759411 - }, - "m_statMods": { - "type": "class SharedPointer", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 836453997 - }, - "m_xpGain": { - "type": "unsigned int", - "id": 2, - "offset": 96, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1362161460 - }, - "m_wins": { - "type": "unsigned int", - "id": 3, - "offset": 100, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 431394798 - } - } - }, - "1038212709": { - "name": "class CustomEmoteBehaviorTemplate*", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 1038212709, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - }, - "m_animation1": { - "type": "std::string", - "id": 1, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3030904012 - }, - "m_animation2": { - "type": "std::string", - "id": 2, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3030904013 - }, - "m_sound1": { - "type": "std::string", - "id": 3, - "offset": 184, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2453262773 - }, - "m_sound2": { - "type": "std::string", - "id": 4, - "offset": 216, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2453262774 - }, - "m_emoteText": { - "type": "std::string", - "id": 5, - "offset": 248, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2426384538 - }, - "m_emoteType": { - "type": "enum CustomEmoteType", - "id": 6, - "offset": 280, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1172696222, - "enum_options": { - "CE_Emote": 0, - "CE_Teleport": 1, - "CE_Dance": 2 - } - }, - "m_isMemberEmote": { - "type": "bool", - "id": 7, - "offset": 284, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1406867457 - }, - "m_isDefaultEmote": { - "type": "bool", - "id": 8, - "offset": 285, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1645218254 - }, - "m_bitFieldNumber": { - "type": "int", - "id": 9, - "offset": 288, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 59324198 - } - } - }, - "1036710414": { - "name": "class PlayGraphicOnActorAction", - "bases": [ - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 1036710414, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - }, - "m_assetName": { - "type": "std::string", - "id": 2, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513131580 - }, - "m_bDontFlipActorYaw": { - "type": "bool", - "id": 3, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 632297791 - } - } - }, - "240159399": { - "name": "class PositionalSoundBehavior*", - "bases": [ - "SoundBehavior", - "AreaBehavior", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 240159399, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_radius": { - "type": "float", - "id": 1, - "offset": 116, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 989410271 - }, - "m_category": { - "type": "enum AudioCategory", - "id": 2, - "offset": 124, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2951251982, - "enum_options": { - "AudioCategory_Irrelevent": 0, - "AudioCategory_Accoustic": 1, - "AudioCategory_Noise": 2, - "AudioCategory_Music": 3 - } - }, - "m_exclusive": { - "type": "bool", - "id": 3, - "offset": 128, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 824383403 - }, - "m_playList": { - "type": "class PlayList", - "id": 4, - "offset": 176, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2061221957 - }, - "m_volume": { - "type": "float", - "id": 5, - "offset": 304, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1162855023 - }, - "m_loopCount": { - "type": "int", - "id": 6, - "offset": 308, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 865634717 - }, - "m_minimumFalloff": { - "type": "float", - "id": 7, - "offset": 328, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 355697197 - }, - "m_maximumFalloff": { - "type": "float", - "id": 8, - "offset": 332, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2210192367 - }, - "m_animDriven": { - "type": "bool", - "id": 9, - "offset": 392, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 398394720 - }, - "m_inverted": { - "type": "bool", - "id": 10, - "offset": 397, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1034821044 - } - } - }, - "652419470": { - "name": "class RemoveProtectionEffectCinematicAction", - "bases": [ - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 652419470, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - } - } - }, - "1433886499": { - "name": "class PetSnackShopOption*", - "bases": [ - "ServiceOptionBase", - "PropertyClass" - ], - "hash": 1433886499, - "properties": { - "m_serviceName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2206028813 - }, - "m_iconKey": { - "type": "std::string", - "id": 1, - "offset": 168, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2457138637 - }, - "m_displayKey": { - "type": "std::string", - "id": 2, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3023276954 - }, - "m_serviceIndex": { - "type": "unsigned int", - "id": 3, - "offset": 204, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2103126710 - }, - "m_forceInteract": { - "type": "bool", - "id": 4, - "offset": 200, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1705789564 - } - } - }, - "1037390197": { - "name": "class CombatParticipant", - "bases": [ - "PropertyClass" - ], - "hash": 1037390197, - "properties": { - "m_ownerID.m_full": { - "type": "unsigned __int64", - "id": 0, - "offset": 112, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2149616286 - }, - "m_templateID.m_full": { - "type": "unsigned __int64", - "id": 1, - "offset": 120, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 633907631 - }, - "m_isPlayer": { - "type": "bool", - "id": 2, - "offset": 128, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1717744636 - }, - "m_zoneID.m_full": { - "type": "unsigned __int64", - "id": 3, - "offset": 136, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2105998895 - }, - "m_teamID": { - "type": "int", - "id": 4, - "offset": 144, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 982118638 - }, - "m_primaryMagicSchoolID": { - "type": "int", - "id": 5, - "offset": 148, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1864910356 - }, - "m_pipCount": { - "type": "class SharedPointer", - "id": 6, - "offset": 152, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1862540484 - }, - "m_pipRoundRates": { - "type": "class SharedPointer", - "id": 7, - "offset": 168, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1859513241 - }, - "m_PipsSuspended": { - "type": "bool", - "id": 8, - "offset": 184, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 98171898 - }, - "m_stunned": { - "type": "int", - "id": 9, - "offset": 188, - "flags": 25, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1661672123 - }, - "m_mindcontrolled": { - "type": "int", - "id": 10, - "offset": 216, - "flags": 25, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2059794744 - }, - "m_originalTeam": { - "type": "int", - "id": 11, - "offset": 224, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1121355446 - }, - "m_nAuraTurnLength": { - "type": "int", - "id": 12, - "offset": 236, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1719821564 - }, - "m_clue": { - "type": "int", - "id": 13, - "offset": 228, - "flags": 25, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 219277091 - }, - "m_roundsDead": { - "type": "int", - "id": 14, - "offset": 232, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2071727747 - }, - "m_nPolymorphTurnLength": { - "type": "int", - "id": 15, - "offset": 240, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1619550301 - }, - "m_playerHealth": { - "type": "int", - "id": 16, - "offset": 244, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 740444925 - }, - "m_maxPlayerHealth": { - "type": "int", - "id": 17, - "offset": 248, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 96027363 - }, - "m_HideCurrentHP": { - "type": "bool", - "id": 18, - "offset": 252, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 31360456 - }, - "m_maxHandSize": { - "type": "int", - "id": 19, - "offset": 256, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1925169782 - }, - "m_pHand": { - "type": "class Hand*", - "id": 20, - "offset": 264, - "flags": 1, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 892448765 - }, - "m_pSavedHand": { - "type": "class Hand*", - "id": 21, - "offset": 272, - "flags": 1, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 787912720 - }, - "m_pPlayDeck": { - "type": "class PlayDeck*", - "id": 22, - "offset": 280, - "flags": 1, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2053198667 - }, - "m_pSavedPlayDeck": { - "type": "class PlayDeck*", - "id": 23, - "offset": 288, - "flags": 1, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 498207966 - }, - "m_pSavedGameStats": { - "type": "class SharedPointer", - "id": 24, - "offset": 296, - "flags": 1, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1599533644 - }, - "m_savedPrimaryMagicSchoolID": { - "type": "int", - "id": 25, - "offset": 312, - "flags": 1, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 983035431 - }, - "m_pGameStats": { - "type": "class SharedPointer", - "id": 26, - "offset": 320, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3522102873 - }, - "m_color": { - "type": "class Color", - "id": 27, - "offset": 336, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1791663549 - }, - "m_rotation": { - "type": "float", - "id": 28, - "offset": 340, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1497468551 - }, - "m_radius": { - "type": "float", - "id": 29, - "offset": 344, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 989410271 - }, - "m_subcircle": { - "type": "int", - "id": 30, - "offset": 348, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1748202326 - }, - "m_pvp": { - "type": "bool", - "id": 31, - "offset": 352, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 269527241 - }, - "m_raid": { - "type": "bool", - "id": 32, - "offset": 353, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 222284947 - }, - "m_dynamicSymbol": { - "type": "enum DynamicSigilSymbol", - "id": 33, - "offset": 356, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 701705655 - }, - "m_accuracyBonus": { - "type": "float", - "id": 34, - "offset": 396, - "flags": 1, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1440672233 - }, - "m_minionSubCircle": { - "type": "int", - "id": 35, - "offset": 400, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1896926112 - }, - "m_isMinion": { - "type": "bool", - "id": 36, - "offset": 404, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1597230777 - }, - "m_isAccompanyNPC": { - "type": "bool", - "id": 37, - "offset": 412, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1067399659 - }, - "m_hangingEffects": { - "type": "class SpellEffect", - "id": 38, - "offset": 416, - "flags": 27, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2685029606 - }, - "m_publicHangingEffects": { - "type": "class SpellEffect", - "id": 39, - "offset": 432, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1243141029 - }, - "m_auraEffects": { - "type": "class SpellEffect", - "id": 40, - "offset": 448, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2783652947 - }, - "m_shadowEffects": { - "type": "class SharedPointer", - "id": 41, - "offset": 464, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1712698903 - }, - "m_shadowSpellEffects": { - "type": "class SpellEffect", - "id": 42, - "offset": 480, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1808623792 - }, - "m_deathActivatedEffects": { - "type": "class SharedPointer", - "id": 43, - "offset": 512, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1347166054 - }, - "m_delayCastEffects": { - "type": "class DelaySpellEffect", - "id": 44, - "offset": 528, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2596123949 - }, - "m_polymorphSpellTemplateID": { - "type": "unsigned int", - "id": 45, - "offset": 576, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1320079328 - }, - "m_side": { - "type": "std::string", - "id": 46, - "offset": 600, - "flags": 1, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1717547872 - }, - "m_shadowSpellsDisabled": { - "type": "bool", - "id": 47, - "offset": 672, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2077139652 - }, - "m_ignoreSpellsPvPOnlyFlag": { - "type": "bool", - "id": 48, - "offset": 673, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1714276188 - }, - "m_ignoreSpellsPvEOnlyFlag": { - "type": "bool", - "id": 49, - "offset": 674, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1691675729 - }, - "m_bossMob": { - "type": "bool", - "id": 50, - "offset": 675, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 986129576 - }, - "m_hidePVPEnemyChat": { - "type": "bool", - "id": 51, - "offset": 676, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1284658049 - }, - "m_combatTriggerIDs": { - "type": "int", - "id": 52, - "offset": 696, - "flags": 1, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1654684388 - }, - "m_backlash": { - "type": "int", - "id": 53, - "offset": 724, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 857558899 - }, - "m_pastBacklash": { - "type": "int", - "id": 54, - "offset": 728, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1229328939 - }, - "m_shadowCreatureLevel": { - "type": "int", - "id": 55, - "offset": 732, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1119572179 - }, - "m_pastShadowCreatureLevel": { - "type": "int", - "id": 56, - "offset": 736, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1267855499 - }, - "m_shadowCreatureLevelCount": { - "type": "int", - "id": 57, - "offset": 744, - "flags": 31, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 975615804 - }, - "m_interceptEffect": { - "type": "class SharedPointer", - "id": 58, - "offset": 768, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 339294150 - }, - "m_roundsSinceShadowPip": { - "type": "int", - "id": 59, - "offset": 800, - "flags": 1, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 682042934 - }, - "m_polymorphEffect": { - "type": "class SharedPointer", - "id": 60, - "offset": 824, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2193528962 - }, - "m_confused": { - "type": "int", - "id": 61, - "offset": 196, - "flags": 25, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1851913585 - }, - "m_confusionTrigger": { - "type": "int", - "id": 62, - "offset": 200, - "flags": 25, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 554584130 - }, - "m_confusionDisplay": { - "type": "bool", - "id": 63, - "offset": 204, - "flags": 25, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1028383709 - }, - "m_confusedTarget": { - "type": "bool", - "id": 64, - "offset": 205, - "flags": 25, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1193542673 - }, - "m_untargetable": { - "type": "bool", - "id": 65, - "offset": 206, - "flags": 25, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 36479793 - }, - "m_untargetableRounds": { - "type": "int", - "id": 66, - "offset": 208, - "flags": 25, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 80618355 - }, - "m_restrictedTarget": { - "type": "bool", - "id": 67, - "offset": 212, - "flags": 25, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 394144563 - }, - "m_exitCombat": { - "type": "bool", - "id": 68, - "offset": 213, - "flags": 25, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1293141763 - }, - "m_stunnedDisplay": { - "type": "bool", - "id": 69, - "offset": 192, - "flags": 25, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 892304554 - }, - "m_mindcontrolledDisplay": { - "type": "bool", - "id": 70, - "offset": 220, - "flags": 25, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 174689415 - }, - "m_autoPass": { - "type": "bool", - "id": 71, - "offset": 720, - "flags": 25, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1919864803 - }, - "m_vanish": { - "type": "bool", - "id": 72, - "offset": 721, - "flags": 25, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1058591164 - }, - "m_myTeamTurn": { - "type": "bool", - "id": 73, - "offset": 722, - "flags": 25, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1134422697 - }, - "m_needToCleanAuras": { - "type": "bool", - "id": 74, - "offset": 888, - "flags": 25, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1159570481 - }, - "m_planningPhasePipAquiredType": { - "type": "enum CombatParticipant::PipAquiredByEnum", - "id": 75, - "offset": 816, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1435933659, - "enum_options": { - "CombatParticipant::AQUIRED_PIP_UNKNOWN": 0, - "CombatParticipant::AQUIRED_PIP_NORMAL": 1, - "CombatParticipant::AQUIRED_PIP_POWER": 2, - "CombatParticipant::AQUIRED_NORMAL_TO_POWER_PIP_CONVERSION": 4, - "CombatParticipant::IMPEDE_PIPS": 5 - } - }, - "m_cheatSettings": { - "type": "class SharedPointer", - "id": 76, - "offset": 96, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2742666223 - }, - "m_isMonster": { - "type": "unsigned int", - "id": 77, - "offset": 408, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1530878065 - }, - "m_weaponNifSoundList": { - "type": "class SharedPointer", - "id": 78, - "offset": 80, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2575326929 - }, - "m_petCombatTrigger": { - "type": "int", - "id": 79, - "offset": 712, - "flags": 1, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 822894541 - }, - "m_petCombatTriggerTarget": { - "type": "int", - "id": 80, - "offset": 716, - "flags": 1, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 675145556 - }, - "m_shadowPipRateThreshold": { - "type": "float", - "id": 81, - "offset": 840, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1215959391 - }, - "m_baseSpellDamage": { - "type": "int", - "id": 82, - "offset": 844, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 871613364 - }, - "m_statDamage": { - "type": "float", - "id": 83, - "offset": 848, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1480169970 - }, - "m_statResist": { - "type": "float", - "id": 84, - "offset": 852, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2033033901 - }, - "m_statPierce": { - "type": "float", - "id": 85, - "offset": 856, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1959012939 - }, - "m_mobLevel": { - "type": "int", - "id": 86, - "offset": 860, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 186067024 - }, - "m_bPlayerTimeUpdated": { - "type": "bool", - "id": 87, - "offset": 864, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 877395800 - }, - "m_bPlayerTimeEliminated": { - "type": "bool", - "id": 88, - "offset": 865, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1842006605 - }, - "m_bPlayerTimeWarning": { - "type": "bool", - "id": 89, - "offset": 866, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 742875591 - }, - "m_deckFullness": { - "type": "float", - "id": 90, - "offset": 868, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 156080730 - }, - "m_archmasteryPoints": { - "type": "float", - "id": 91, - "offset": 872, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 261464375 - }, - "m_maxArchmasteryPoints": { - "type": "float", - "id": 92, - "offset": 876, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 430012637 - }, - "m_archmasterySchool": { - "type": "unsigned int", - "id": 93, - "offset": 880, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 485805784 - }, - "m_archmasteryFlags": { - "type": "unsigned int", - "id": 94, - "offset": 884, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1571282557 - } - } - }, - "673627990": { - "name": "class SharedPointer", - "bases": [ - "ServiceOptionBase", - "PropertyClass" - ], - "hash": 673627990, - "properties": { - "m_serviceName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2206028813 - }, - "m_iconKey": { - "type": "std::string", - "id": 1, - "offset": 168, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2457138637 - }, - "m_displayKey": { - "type": "std::string", - "id": 2, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3023276954 - }, - "m_serviceIndex": { - "type": "unsigned int", - "id": 3, - "offset": 204, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2103126710 - }, - "m_forceInteract": { - "type": "bool", - "id": 4, - "offset": 200, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1705789564 - } - } - }, - "1435498795": { - "name": "class ClientDerbyTeleport*", - "bases": [ - "DerbyTeleport", - "DerbyEffect", - "PropertyClass" - ], - "hash": 1435498795, - "properties": { - "m_buffType": { - "type": "enum DerbyTalentBuffType", - "id": 0, - "offset": 92, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1149251982, - "enum_options": { - "Buff": 0, - "Debuff": 1, - "Neither": 2 - } - }, - "m_kTarget": { - "type": "enum DerbyTargetType", - "id": 1, - "offset": 96, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1807803351, - "enum_options": { - "kTargetInFront": 0, - "kTargetBehind": 1, - "kTargetFirst": 2, - "kTargetSelf": 3, - "kTargetAll": 4, - "kTargetLast": 5 - } - }, - "m_nDuration": { - "type": "int", - "id": 2, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1110167982 - }, - "m_effectID": { - "type": "unsigned int", - "id": 3, - "offset": 88, - "flags": 24, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2347630439 - }, - "m_imageFilename": { - "type": "std::string", - "id": 4, - "offset": 112, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2813328063 - }, - "m_iconIndex": { - "type": "unsigned int", - "id": 5, - "offset": 144, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1265133262 - }, - "m_soundOnActivate": { - "type": "std::string", - "id": 6, - "offset": 152, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1956929714 - }, - "m_soundOnTarget": { - "type": "std::string", - "id": 7, - "offset": 184, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3444214056 - }, - "m_targetParticleEffect": { - "type": "std::string", - "id": 8, - "offset": 216, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3048234723 - }, - "m_overheadMessage": { - "type": "std::string", - "id": 9, - "offset": 248, - "flags": 8388639, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1701018190 - }, - "m_requirements": { - "type": "class RequirementList", - "id": 10, - "offset": 280, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2840988582 - }, - "m_kTeleportToTarget": { - "type": "enum DerbyTargetType", - "id": 11, - "offset": 376, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3096289769, - "enum_options": { - "kTargetInFront": 0, - "kTargetBehind": 1, - "kTargetFirst": 2, - "kTargetSelf": 3, - "kTargetAll": 4, - "kTargetLast": 5 - } - } - } - }, - "664792111": { - "name": "class MaxPotionLootInfo", - "bases": [ - "LootInfo", - "LootInfoBase", - "PropertyClass" - ], - "hash": 664792111, - "properties": { - "m_lootType": { - "type": "enum LootInfo::LOOT_TYPE", - "id": 0, - "offset": 72, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1591891442, - "enum_options": { - "LOOT_TYPE_NONE": 0, - "LOOT_TYPE_GOLD": 1, - "LOOT_TYPE_MANA": 2, - "LOOT_TYPE_ITEM": 3, - "LOOT_TYPE_TREASURE_CARD": 4, - "LOOT_TYPE_MAGIC_XP": 5, - "LOOT_TYPE_ADD_SPELL": 6, - "LOOT_TYPE_MAX_HEALTH": 7, - "LOOT_TYPE_MAX_GOLD": 8, - "LOOT_TYPE_MAX_MANA": 9, - "LOOT_TYPE_MAX_POTION": 10, - "LOOT_TYPE_TRAINING_POINTS": 11, - "LOOT_TYPE_RECIPE": 12, - "LOOT_TYPE_CRAFTING_SLOT": 13, - "LOOT_TYPE_REAGENT": 14, - "LOOT_TYPE_PETSNACK": 15, - "LOOT_TYPE_GARDENING_XP": 16, - "LOOT_TYPE_PET_XP": 17, - "LOOT_TYPE_TREASURE_TABLE": 18, - "LOOT_TYPE_ARENA_POINTS": 19, - "LOOT_TYPE_ARENA_BONUS_POINTS": 20, - "LOOT_TYPE_GROUP": 21, - "LOOT_TYPE_FISHING_XP": 22, - "LOOT_TYPE_EVENT_CURRENCY_1": 24, - "LOOT_TYPE_EVENT_CURRENCY_2": 25, - "LOOT_TYPE_PVP_CURRENCY": 26, - "LOOT_TYPE_PVP_CURRENCY_BONUS": 27, - "LOOT_TYPE_PVP_TOURNEY_CURRENCY": 28, - "LOOT_TYPE_PVP_TOURNEY_CURRENCY_BONUS": 29, - "LOOT_TYPE_FURNITURE_ESSENCE": 30 - } - }, - "m_maxPotionToAdd": { - "type": "int", - "id": 1, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1268091461 - } - } - }, - "1039195406": { - "name": "class SharedPointer", - "bases": [ - "LootInfo", - "LootInfoBase", - "PropertyClass" - ], - "hash": 1039195406, - "properties": { - "m_lootType": { - "type": "enum LootInfo::LOOT_TYPE", - "id": 0, - "offset": 72, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1591891442, - "enum_options": { - "LOOT_TYPE_NONE": 0, - "LOOT_TYPE_GOLD": 1, - "LOOT_TYPE_MANA": 2, - "LOOT_TYPE_ITEM": 3, - "LOOT_TYPE_TREASURE_CARD": 4, - "LOOT_TYPE_MAGIC_XP": 5, - "LOOT_TYPE_ADD_SPELL": 6, - "LOOT_TYPE_MAX_HEALTH": 7, - "LOOT_TYPE_MAX_GOLD": 8, - "LOOT_TYPE_MAX_MANA": 9, - "LOOT_TYPE_MAX_POTION": 10, - "LOOT_TYPE_TRAINING_POINTS": 11, - "LOOT_TYPE_RECIPE": 12, - "LOOT_TYPE_CRAFTING_SLOT": 13, - "LOOT_TYPE_REAGENT": 14, - "LOOT_TYPE_PETSNACK": 15, - "LOOT_TYPE_GARDENING_XP": 16, - "LOOT_TYPE_PET_XP": 17, - "LOOT_TYPE_TREASURE_TABLE": 18, - "LOOT_TYPE_ARENA_POINTS": 19, - "LOOT_TYPE_ARENA_BONUS_POINTS": 20, - "LOOT_TYPE_GROUP": 21, - "LOOT_TYPE_FISHING_XP": 22, - "LOOT_TYPE_EVENT_CURRENCY_1": 24, - "LOOT_TYPE_EVENT_CURRENCY_2": 25, - "LOOT_TYPE_PVP_CURRENCY": 26, - "LOOT_TYPE_PVP_CURRENCY_BONUS": 27, - "LOOT_TYPE_PVP_TOURNEY_CURRENCY": 28, - "LOOT_TYPE_PVP_TOURNEY_CURRENCY_BONUS": 29, - "LOOT_TYPE_FURNITURE_ESSENCE": 30 - } - }, - "m_pvpCurrencyAmount": { - "type": "int", - "id": 1, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 649262863 - } - } - }, - "1434446624": { - "name": "enum ObjectType", - "bases": [], - "hash": 1434446624, - "properties": {} - }, - "656938972": { - "name": "class WhirlyBurlyMovementData*", - "bases": [ - "PropertyClass" - ], - "hash": 656938972, - "properties": { - "m_unitType": { - "type": "unsigned char", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1498103218 - }, - "m_cardUsed": { - "type": "unsigned int", - "id": 1, - "offset": 76, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1315653400 - }, - "m_movementTurnTime": { - "type": "unsigned char", - "id": 2, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1100876371 - }, - "m_blueTeamScore": { - "type": "unsigned int", - "id": 3, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1519259416 - }, - "m_orangeTeamScore": { - "type": "unsigned int", - "id": 4, - "offset": 108, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 988508012 - }, - "m_redTeamScore": { - "type": "unsigned int", - "id": 5, - "offset": 112, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1672048811 - }, - "m_unitMovementList": { - "type": "unsigned int", - "id": 6, - "offset": 88, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 687999892 - } - } - }, - "1038212901": { - "name": "class CustomEmoteBehaviorTemplate", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 1038212901, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - }, - "m_animation1": { - "type": "std::string", - "id": 1, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3030904012 - }, - "m_animation2": { - "type": "std::string", - "id": 2, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3030904013 - }, - "m_sound1": { - "type": "std::string", - "id": 3, - "offset": 184, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2453262773 - }, - "m_sound2": { - "type": "std::string", - "id": 4, - "offset": 216, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2453262774 - }, - "m_emoteText": { - "type": "std::string", - "id": 5, - "offset": 248, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2426384538 - }, - "m_emoteType": { - "type": "enum CustomEmoteType", - "id": 6, - "offset": 280, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1172696222, - "enum_options": { - "CE_Emote": 0, - "CE_Teleport": 1, - "CE_Dance": 2 - } - }, - "m_isMemberEmote": { - "type": "bool", - "id": 7, - "offset": 284, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1406867457 - }, - "m_isDefaultEmote": { - "type": "bool", - "id": 8, - "offset": 285, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1645218254 - }, - "m_bitFieldNumber": { - "type": "int", - "id": 9, - "offset": 288, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 59324198 - } - } - }, - "1434117792": { - "name": "class SharedPointer", - "bases": [ - "CoreTemplate", - "PropertyClass" - ], - "hash": 1434117792, - "properties": { - "m_behaviors": { - "type": "class BehaviorTemplate*", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1197808594 - }, - "m_badgeName": { - "type": "std::string", - "id": 1, - "offset": 96, - "flags": 134217735, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3002948047 - }, - "m_badgeTitle": { - "type": "std::string", - "id": 2, - "offset": 136, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1783354256 - }, - "m_badgeInfo": { - "type": "std::string", - "id": 3, - "offset": 168, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3002782298 - }, - "m_badgeProgressInfo": { - "type": "std::string", - "id": 4, - "offset": 200, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1902667503 - }, - "m_badgeReplace": { - "type": "std::string", - "id": 5, - "offset": 256, - "flags": 268435463, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2644976426, - "enum_options": { - "__BASECLASS": "BadgeTemplate" - } - }, - "m_clearRegistry": { - "type": "bool", - "id": 6, - "offset": 248, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2092369011 - }, - "m_requirements": { - "type": "class RequirementList*", - "id": 7, - "offset": 232, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2840985510 - }, - "m_completeResults": { - "type": "class ResultList*", - "id": 8, - "offset": 240, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1964258099 - }, - "m_badgeAdjectives": { - "type": "std::string", - "id": 9, - "offset": 312, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 3438296880 - }, - "m_registryName": { - "type": "std::string", - "id": 10, - "offset": 344, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2065929269 - }, - "m_registryValue": { - "type": "int", - "id": 11, - "offset": 376, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1578365616 - }, - "m_showTitle": { - "type": "bool", - "id": 12, - "offset": 380, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2128418998 - }, - "m_autoAddBadge": { - "type": "bool", - "id": 13, - "offset": 381, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 236591912 - }, - "m_index": { - "type": "unsigned int", - "id": 14, - "offset": 384, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1009433893 - }, - "m_badgeOutline": { - "type": "std::string", - "id": 15, - "offset": 392, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1548975214 - }, - "m_badgeImage": { - "type": "std::string", - "id": 16, - "offset": 424, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1770432017 - }, - "m_dynamicBadge": { - "type": "bool", - "id": 17, - "offset": 456, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1496846667 - }, - "m_badgeFilterName": { - "type": "std::string", - "id": 18, - "offset": 464, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2268560533 - }, - "m_extraCredit": { - "type": "bool", - "id": 19, - "offset": 504, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 847737554 - }, - "m_overcount": { - "type": "bool", - "id": 20, - "offset": 505, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 203918520 - }, - "m_overcountInterval": { - "type": "unsigned int", - "id": 21, - "offset": 508, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1845137015 - }, - "m_overcountLootTable": { - "type": "std::string", - "id": 22, - "offset": 512, - "flags": 268435463, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3493569350, - "enum_options": { - "__BASECLASS": "LootTable" - } - }, - "m_recurringRewardsDescription": { - "type": "std::string", - "id": 23, - "offset": 544, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1668915496 - }, - "m_rewardLootTable": { - "type": "std::string", - "id": 24, - "offset": 576, - "flags": 268435463, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3635244294, - "enum_options": { - "__BASECLASS": "LootTable" - } - }, - "m_requiredAutoAddBadgeList": { - "type": "std::string", - "id": 25, - "offset": 608, - "flags": 268435463, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 3633108301, - "enum_options": { - "__BASECLASS": "BadgeTemplate" - } - }, - "m_forceRequirementsCheck": { - "type": "bool", - "id": 26, - "offset": 712, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1891065348 - } - } - }, - "655839544": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 655839544, - "properties": { - "m_socketNumber": { - "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 772707167 - }, - "m_jewelTemplateID": { - "type": "unsigned int", - "id": 1, - "offset": 76, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 396940685 - } - } - }, - "654524782": { - "name": "class ClientCrownsRewardsSchedule*", - "bases": [ - "CrownsRewardsSchedule", - "PropertyClass" - ], - "hash": 654524782, - "properties": {} - }, - "1038664208": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1038664208, - "properties": { - "m_tableName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3581058436 - }, - "m_schoolName": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3385349572 - }, - "m_modifyAll": { - "type": "bool", - "id": 2, - "offset": 140, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1269044724 - }, - "m_statType": { - "type": "enum WizardStatTable::STAT_TYPE", - "id": 3, - "offset": 144, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2100000712, - "enum_options": { - "STAT_TYPE_DAMAGE": 0, - "STAT_TYPE_ACCURACY": 1, - "STAT_TYPE_ARMOR_PIERCING": 2, - "STAT_TYPE_REDUCED_DAMAGE": 3, - "STAT_TYPE_REDUCED_ACCURACY": 4, - "STAT_TYPE_HEALING": 5, - "STAT_TYPE_POWER_PIP_CHANCE": 6, - "STAT_TYPE_MAX_MANA": 7, - "STAT_TYPE_MAX_HEALTH": 8, - "STAT_TYPE_PET_ACT_CHANCE": 9, - "STAT_TYPE_FLATDAMAGE": 10, - "STAT_TYPE_INC_HEALING": 11, - "STAT_TYPE_REDUCED_MAX_MANA": 12, - "STAT_TYPE_XP_PERCENT": 13, - "STAT_TYPE_GOLD_PERCENT": 14, - "STAT_TYPE_MAX_ENERGY": 15, - "STAT_TYPE_CRITICAL_HIT_RATING": 16, - "STAT_TYPE_BLOCK_RATING": 17, - "STAT_TYPE_ACCURACY_RATING": 18, - "STAT_TYPE_POWER_PIP_RATING": 19, - "STAT_TYPE_DAMAGE_RESISTANCE_RATING": 20, - "STAT_TYPE_BALANCE_MASTERY": 21, - "STAT_TYPE_DEATH_MASTERY": 22, - "STAT_TYPE_FIRE_MASTERY": 23, - "STAT_TYPE_ICE_MASTERY": 24, - "STAT_TYPE_LIFE_MASTERY": 25, - "STAT_TYPE_MYTH_MASTERY": 26, - "STAT_TYPE_STORM_MASTERY": 27, - "STAT_TYPE_STUN_RESISTANCE": 28, - "STAT_TYPE_FISHING_LUCK": 29, - "STAT_TYPE_SHADOW_PIP_CHANCE": 30, - "STAT_TYPE_REDUCED_DAMAGE_FLAT": 31, - "STAT_TYPE_WISP_BONUS": 32, - "STAT_TYPE_PIP_CONVERSION": 33, - "STAT_TYPE_SHADOW_PIP_RATING": 34, - "STAT_TYPE_ARCHMASTERY": 35, - "STAT_TYPE_ARCHMASTERY_PERCENTAGE": 36 - } - }, - "m_statVector": { - "type": "float", - "id": 4, - "offset": 152, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2189012326 - } - } - }, - "653952242": { - "name": "class CreateAuraActorCinematicAction", - "bases": [ - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 653952242, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - }, - "m_newActorName": { - "type": "std::string", - "id": 2, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2029131039 - } - } - }, - "652876292": { - "name": "class SoftwareStyle*", - "bases": [ - "PropertyClass" - ], - "hash": 652876292, - "properties": { - "m_material": { - "type": "class SharedPointer", - "id": 0, - "offset": 88, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1438090150 - }, - "m_size": { - "type": "class Size", - "id": 1, - "offset": 72, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 251247159 - }, - "m_hotSpot": { - "type": "class Point", - "id": 2, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1849465267 - } - } - }, - "1435853945": { - "name": "class ClientShadowCreatureCameraCutCinematicAction", - "bases": [ - "ShadowCreatureCameraCutCinematicAction", - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 1435853945, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - } - } - }, - "1039359922": { - "name": "class DespawnTimedBehavior*", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1039359922, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - } - } - }, - "652876295": { - "name": "class SoftwareStyle", - "bases": [ - "PropertyClass" - ], - "hash": 652876295, - "properties": { - "m_material": { - "type": "class SharedPointer", - "id": 0, - "offset": 88, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1438090150 - }, - "m_size": { - "type": "class Size", - "id": 1, - "offset": 72, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 251247159 - }, - "m_hotSpot": { - "type": "class Point", - "id": 2, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1849465267 - } - } - }, - "1039359898": { - "name": "class DespawnTimedBehavior", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1039359898, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - } - } - }, - "1436080545": { - "name": "class SharedPointer", - "bases": [ - "WindowAnimation", - "PropertyClass" - ], - "hash": 1436080545, - "properties": { - "m_bUseDeepCopy": { - "type": "bool", - "id": 0, - "offset": 72, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 433380635 - }, - "m_fCycleTime": { - "type": "float", - "id": 1, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1056288476 - }, - "m_fElapsedTime": { - "type": "float", - "id": 2, - "offset": 84, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1862647402 - }, - "m_cycle": { - "type": "bool", - "id": 3, - "offset": 92, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 793791523 - }, - "m_allowAlphaCycle": { - "type": "bool", - "id": 4, - "offset": 93, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1269348264 - } - } - }, - "654524462": { - "name": "class ClientCrownsRewardsSchedule", - "bases": [ - "CrownsRewardsSchedule", - "PropertyClass" - ], - "hash": 654524462, - "properties": {} - }, - "1438023804": { - "name": "class AddTeamUpdate", - "bases": [ - "TournamentUpdate", - "PropertyClass" - ], - "hash": 1438023804, - "properties": { - "m_team": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1393503221 - } - } - }, - "1043576859": { - "name": "class PolymorphBattlegroundsBehaviorTemplate", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 1043576859, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - }, - "m_maxTempStartingPips": { - "type": "int", - "id": 1, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 997576222 - }, - "m_maxTempStartingPowerPips": { - "type": "int", - "id": 2, - "offset": 124, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 31848011 - }, - "m_maxHandSize": { - "type": "int", - "id": 3, - "offset": 128, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1925169782 - }, - "m_pointValue": { - "type": "int", - "id": 4, - "offset": 132, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 61258881 - }, - "m_battleCardsForSale": { - "type": "class SharedPointer", - "id": 5, - "offset": 136, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2232728892 - }, - "m_ratingInfo": { - "type": "class SharedPointer", - "id": 6, - "offset": 152, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2739486523 - }, - "m_levelUpIngredients": { - "type": "class Ingredient*", - "id": 7, - "offset": 176, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 361958771 - }, - "m_levelUpCost": { - "type": "int", - "id": 8, - "offset": 192, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1833544304 - } - } - }, - "1437370059": { - "name": "class SharedPointer", - "bases": [ - "StageBacklashEffectCinematicAction", - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 1437370059, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - } - } - }, - "1040961205": { - "name": "class SharedPointer", - "bases": [ - "CameraController", - "PropertyClass" - ], - "hash": 1040961205, - "properties": {} - }, - "1437178010": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1437178010, - "properties": { - "m_trackFilename": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2957416369 - }, - "m_bIsStreamed": { - "type": "bool", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2001937222 - }, - "m_animPos": { - "type": "float", - "id": 2, - "offset": 108, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1878658286 - }, - "m_animObjName": { - "type": "std::string", - "id": 3, - "offset": 112, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2369937660 - } - } - }, - "655212718": { - "name": "class SharedPointer", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 655212718, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - }, - "m_islandTemplateID": { - "type": "unsigned int", - "id": 1, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1751952753 - } - } - }, - "1040114835": { - "name": "class TurnIndicatorCinematicAction", - "bases": [ - "CinematicAction", - "PropertyClass" - ], - "hash": 1040114835, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - } - } - }, - "1437118028": { - "name": "class SharedPointer", - "bases": [ - "ReqNumeric", - "Requirement", - "PropertyClass" - ], - "hash": 1437118028, - "properties": { - "m_applyNOT": { - "type": "bool", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1746328074, - "enum_options": { - "__DEFAULT": 0 - } - }, - "m_operator": { - "type": "enum Requirement::Operator", - "id": 1, - "offset": 76, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2672792317, - "enum_options": { - "ROP_AND": 0, - "ROP_OR": 1, - "__DEFAULT": "ROP_AND" - } - }, - "m_numericValue": { - "type": "float", - "id": 2, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 521915239 - }, - "m_operatorType": { - "type": "enum ReqNumeric::OPERATOR_TYPE", - "id": 3, - "offset": 84, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2228122961, - "enum_options": { - "OPERATOR_UNKNOWN": 4294967295, - "OPERATOR_EQUALS": 0, - "OPERATOR_GREATER_THAN": 1, - "OPERATOR_LESS_THAN": 2, - "OPERATOR_GREATER_THAN_EQ": 3, - "OPERATOR_LESS_THAN_EQ": 4 - } - }, - "m_entryName": { - "type": "std::string", - "id": 4, - "offset": 88, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2055270734 - }, - "m_displayName": { - "type": "std::string", - "id": 5, - "offset": 120, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2446900370 - }, - "m_isQuestRegistry": { - "type": "bool", - "id": 6, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1388902362 - }, - "m_questName": { - "type": "std::string", - "id": 7, - "offset": 160, - "flags": 268435463, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1702112846, - "enum_options": { - "__BASECLASS": "QuestTemplate" - } - } - } - }, - "654642652": { - "name": "class FXOverrideBehavior", - "bases": [ - "ClientEquipmentBehavior", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 654642652, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_itemList": { - "type": "class SharedPointer", - "id": 1, - "offset": 120, - "flags": 27, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1983655699 - }, - "m_slotList": { - "type": "class SharedPointer", - "id": 2, - "offset": 136, - "flags": 27, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 3213026923 - }, - "m_publicItemList": { - "type": "class SharedPointer", - "id": 3, - "offset": 152, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1693467991 - }, - "m_FXOverrideBehaviorInfo": { - "type": "class FXOverrideBehaviorInfo", - "id": 4, - "offset": 232, - "flags": 27, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1746411198 - } - } - }, - "1042178694": { - "name": "class ClassProjectPlayer*", - "bases": [ - "PropertyClass" - ], - "hash": 1042178694, - "properties": { - "m_playerGID": { - "type": "gid", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 578537369 - }, - "m_totalProgress": { - "type": "unsigned short", - "id": 1, - "offset": 88, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 770936385 - }, - "m_tokens": { - "type": "unsigned char", - "id": 2, - "offset": 90, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1631929220 - }, - "m_flags": { - "type": "unsigned short", - "id": 3, - "offset": 92, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1347981045 - }, - "m_goalProgress1": { - "type": "unsigned short", - "id": 4, - "offset": 94, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2533159345 - }, - "m_goalProgress2": { - "type": "unsigned short", - "id": 5, - "offset": 96, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2533159346 - }, - "m_goalProgress3": { - "type": "unsigned short", - "id": 6, - "offset": 98, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2533159347 - }, - "m_goalProgress4": { - "type": "unsigned short", - "id": 7, - "offset": 100, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2533159348 - }, - "m_goalProgress5": { - "type": "unsigned short", - "id": 8, - "offset": 102, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2533159349 - }, - "m_packedName": { - "type": "unsigned int", - "id": 9, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 518911062 - }, - "m_purchasedTokens": { - "type": "unsigned char", - "id": 10, - "offset": 91, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2467704067 - }, - "m_level": { - "type": "unsigned char", - "id": 11, - "offset": 108, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1438884808 - }, - "m_buddyListGID": { - "type": "gid", - "id": 12, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 50378240 - }, - "m_extendedData": { - "type": "unsigned char", - "id": 13, - "offset": 112, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2268810331 - }, - "m_usesExtraData": { - "type": "bool", - "id": 14, - "offset": 136, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1683530097 - } - } - }, - "1437347832": { - "name": "class CastleGamesEntry", - "bases": [ - "CastleTourTeleportInfo", - "PropertyClass" - ], - "hash": 1437347832, - "properties": { - "m_houseTemplateID": { - "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2326023642 - }, - "m_structureTemplateID": { - "type": "unsigned int", - "id": 1, - "offset": 76, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1037379271 - }, - "m_lotInstanceGID": { - "type": "gid", - "id": 2, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2010711536 - }, - "m_structureInstanceGID": { - "type": "gid", - "id": 3, - "offset": 88, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2083588818 - }, - "m_owningCharacterGID": { - "type": "gid", - "id": 4, - "offset": 96, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 316234091 - }, - "m_packedName": { - "type": "std::string", - "id": 5, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1805208228 - }, - "m_gameType": { - "type": "unsigned char", - "id": 6, - "offset": 136, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2369894028 - }, - "m_subGameType": { - "type": "unsigned char", - "id": 7, - "offset": 137, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2559216502 - } - } - }, - "655650935": { - "name": "class ClientRotateActorCinematicAction", - "bases": [ - "RotateActorCinematicAction", - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 655650935, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - }, - "m_deltaYaw": { - "type": "float", - "id": 2, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1518691890 - } - } - }, - "1041784726": { - "name": "class TipData*", - "bases": [ - "PropertyClass" - ], - "hash": 1041784726, - "properties": { - "m_id": { - "type": "gid", - "id": 0, - "offset": 88, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2090569797 - }, - "m_requirements": { - "type": "class RequirementList", - "id": 1, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2840988582 - }, - "m_actorImage": { - "type": "std::string", - "id": 2, - "offset": 248, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2562145079 - }, - "m_actorName": { - "type": "std::string", - "id": 3, - "offset": 280, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2050810421 - }, - "m_dialog": { - "type": "class SharedPointer", - "id": 4, - "offset": 352, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 440960800 - }, - "m_repeatable": { - "type": "bool", - "id": 5, - "offset": 368, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 366129064 - }, - "m_criticalTip": { - "type": "bool", - "id": 6, - "offset": 369, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 402676843 - }, - "m_backgroundMusic": { - "type": "std::string", - "id": 7, - "offset": 312, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1857091004 - }, - "m_musicAtSFXVolume": { - "type": "bool", - "id": 8, - "offset": 344, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2142315218 - }, - "m_eventName": { - "type": "std::string", - "id": 9, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 3493260286 - }, - "m_tutorialTipType": { - "type": "enum TutorialTipType", - "id": 10, - "offset": 372, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1666586963, - "enum_options": { - "TTT_Tutorial": 0, - "TTT_Warning": 1, - "TTT_Quest": 2, - "TTT_school": 3 - } - } - } - }, - "1041784706": { - "name": "class TipData", - "bases": [ - "PropertyClass" - ], - "hash": 1041784706, - "properties": { - "m_id": { - "type": "gid", - "id": 0, - "offset": 88, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2090569797 - }, - "m_requirements": { - "type": "class RequirementList", - "id": 1, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2840988582 - }, - "m_actorImage": { - "type": "std::string", - "id": 2, - "offset": 248, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2562145079 - }, - "m_actorName": { - "type": "std::string", - "id": 3, - "offset": 280, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2050810421 - }, - "m_dialog": { - "type": "class SharedPointer", - "id": 4, - "offset": 352, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 440960800 - }, - "m_repeatable": { - "type": "bool", - "id": 5, - "offset": 368, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 366129064 - }, - "m_criticalTip": { - "type": "bool", - "id": 6, - "offset": 369, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 402676843 - }, - "m_backgroundMusic": { - "type": "std::string", - "id": 7, - "offset": 312, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1857091004 - }, - "m_musicAtSFXVolume": { - "type": "bool", - "id": 8, - "offset": 344, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2142315218 - }, - "m_eventName": { - "type": "std::string", - "id": 9, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 3493260286 - }, - "m_tutorialTipType": { - "type": "enum TutorialTipType", - "id": 10, - "offset": 372, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1666586963, - "enum_options": { - "TTT_Tutorial": 0, - "TTT_Warning": 1, - "TTT_Quest": 2, - "TTT_school": 3 - } - } - } - }, - "1437913571": { - "name": "class ExpansionBehaviorTemplate*", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 1437913571, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - }, - "m_expansions": { - "type": "class SharedPointer", - "id": 1, - "offset": 120, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 3762221063 - } - } - }, - "656613322": { - "name": "class JewelVaultBehaviorBase*", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 656613322, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_jewelList": { - "type": "unsigned int", - "id": 1, - "offset": 112, - "flags": 65543, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1839384000 - } - } - }, - "1437511672": { - "name": "class CastleGamesEntry*", - "bases": [ - "CastleTourTeleportInfo", - "PropertyClass" - ], - "hash": 1437511672, - "properties": { - "m_houseTemplateID": { - "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2326023642 - }, - "m_structureTemplateID": { - "type": "unsigned int", - "id": 1, - "offset": 76, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1037379271 - }, - "m_lotInstanceGID": { - "type": "gid", - "id": 2, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2010711536 - }, - "m_structureInstanceGID": { - "type": "gid", - "id": 3, - "offset": 88, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2083588818 - }, - "m_owningCharacterGID": { - "type": "gid", - "id": 4, - "offset": 96, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 316234091 - }, - "m_packedName": { - "type": "std::string", - "id": 5, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1805208228 - }, - "m_gameType": { - "type": "unsigned char", - "id": 6, - "offset": 136, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2369894028 - }, - "m_subGameType": { - "type": "unsigned char", - "id": 7, - "offset": 137, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2559216502 - } - } - }, - "655912620": { - "name": "class SharedPointer", - "bases": [ - "Window", - "PropertyClass" - ], - "hash": 655912620, - "properties": { - "m_sName": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306437263 - }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621225959 - }, - "m_Style": { - "type": "unsigned int", - "id": 2, - "offset": 152, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "SCALE_CHILDREN": 2, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "FOCUS_LOCKED": 64, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152 - } - }, - "m_Flags": { - "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } - }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3105139380 - }, - "m_fTargetAlpha": { - "type": "float", - "id": 5, - "offset": 212, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1809129834 - }, - "m_fDisabledAlpha": { - "type": "float", - "id": 6, - "offset": 216, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1389987675 - }, - "m_fAlpha": { - "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 482130755 - }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3623628394 - }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2102211316 - }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1846695875 - }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3389835433 - }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2547159940 - }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2587533771 - }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3091503757 - } - } - }, - "1043196215": { - "name": "class SharedPointer", - "bases": [ - "PositionalSoundEmitterInfo", - "SoundEmitterInfo", - "SoundInfo", - "ClientObjectInfo", - "CoreObjectInfo", - "PropertyClass" - ], - "hash": 1043196215, - "properties": { - "m_templateID.m_full": { - "type": "unsigned __int64", - "id": 0, - "offset": 72, - "flags": 33554439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 633907631 - }, - "m_nObjectID": { - "type": "unsigned int", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 748496927 - }, - "m_location": { - "type": "class Vector3D", - "id": 2, - "offset": 84, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2239683611 - }, - "m_orientation": { - "type": "class Vector3D", - "id": 3, - "offset": 96, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2344058766 - }, - "m_fScale": { - "type": "float", - "id": 4, - "offset": 108, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 503137701 - }, - "m_zoneTag": { - "type": "std::string", - "id": 5, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3405382643 - }, - "m_startState": { - "type": "std::string", - "id": 6, - "offset": 184, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2166880458 - }, - "m_overrideName": { - "type": "std::string", - "id": 7, - "offset": 120, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1990707228 - }, - "m_globalDynamic": { - "type": "bool", - "id": 8, - "offset": 116, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1951691017 - }, - "m_bUndetectable": { - "type": "bool", - "id": 9, - "offset": 216, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1907454341 - }, - "m_spawnRequirements": { - "type": "class SharedPointer", - "id": 10, - "offset": 224, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2309120870 - }, - "m_loadingType": { - "type": "enum CoreObjectInfo::LoadingType", - "id": 11, - "offset": 112, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3522422550, - "enum_options": { - "STATIC_CLIENT_SERVER": 0, - "STATIC_CLIENT": 1, - "STATIC_SERVER": 2, - "DYNAMIC_SERVER": 3 - } - }, - "m_radius": { - "type": "float", - "id": 12, - "offset": 256, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 989410271 - }, - "m_exclusive": { - "type": "bool", - "id": 13, - "offset": 260, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 824383403 - }, - "m_startActive": { - "type": "bool", - "id": 14, - "offset": 261, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2031339229 - }, - "m_category": { - "type": "enum AudioCategory", - "id": 15, - "offset": 264, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2951251982, - "enum_options": { - "AudioCategory_Irrelevent": 0, - "AudioCategory_Accoustic": 1, - "AudioCategory_Noise": 2, - "AudioCategory_Music": 3 - } - }, - "m_override": { - "type": "int", - "id": 16, - "offset": 268, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 136872410, - "enum_options": { - "OVR_RADIUS": 1, - "OVR_CATEGORY": 2, - "OVR_EXCLUSIVE": 4, - "OVR_SIGNATURE": 64, - "OVR_VOLUME": 8, - "OVR_LOOPCOUNT": 16, - "OVR_ACTIVE": 32, - "OVR_PLAYPROG": 128, - "OVR_PRIORITY": 256, - "OVR_PROGTIME": 512, - "OVR_FILTERSET": 1024 - } - }, - "m_enableReqs": { - "type": "class SharedPointer", - "id": 17, - "offset": 272, - "flags": 263, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3158020443 - }, - "m_volume": { - "type": "float", - "id": 18, - "offset": 288, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1162855023 - }, - "m_loopCount": { - "type": "int", - "id": 19, - "offset": 292, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 865634717 - }, - "m_trackFilenameList": { - "type": "std::string", - "id": 20, - "offset": 312, - "flags": 131079, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2531081709 - }, - "m_playList": { - "type": "class PlayListEntry*", - "id": 21, - "offset": 336, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 3907873161 - }, - "m_priority": { - "type": "int", - "id": 22, - "offset": 296, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1235205852 - }, - "m_progression": { - "type": "enum PlayList::Progression", - "id": 23, - "offset": 300, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3279400238, - "enum_options": { - "Sequence": 0, - "Random": 1, - "SequenceOnceOnly": 2, - "RandomNoRepeat": 3 - } - }, - "m_progressMin": { - "type": "float", - "id": 24, - "offset": 304, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1497550192 - }, - "m_progressMax": { - "type": "float", - "id": 25, - "offset": 308, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1497549938 - }, - "m_audioFilterSet": { - "type": "unsigned int", - "id": 26, - "offset": 360, - "flags": 33554439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 831339825 - }, - "m_clientTag": { - "type": "std::string", - "id": 27, - "offset": 368, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3409856790 - }, - "m_innerRadius": { - "type": "float", - "id": 28, - "offset": 400, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 686816091 - }, - "m_nifObjName": { - "type": "std::string", - "id": 29, - "offset": 408, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513857812 - }, - "m_animNIFObjName": { - "type": "std::string", - "id": 30, - "offset": 440, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2245834777 - }, - "m_inverted": { - "type": "bool", - "id": 31, - "offset": 472, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1034821044 - }, - "m_initialDelay": { - "type": "float", - "id": 32, - "offset": 476, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 629858288 - }, - "m_fRangeScale": { - "type": "float", - "id": 33, - "offset": 480, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1749294034 - }, - "m_fAttenuationFactor": { - "type": "float", - "id": 34, - "offset": 484, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 273292776 - }, - "m_eAttenuationType": { - "type": "enum PositionInfoAttenuationType", - "id": 35, - "offset": 488, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2427193304, - "enum_options": { - "Standard": 0, - "Unit Range Power": 1 - } - }, - "m_vPositions": { - "type": "class Vector3D", - "id": 36, - "offset": 496, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 3599600160 - } - } - }, - "656654282": { - "name": "class JewelVaultBehaviorBase", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 656654282, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_jewelList": { - "type": "unsigned int", - "id": 1, - "offset": 112, - "flags": 65543, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1839384000 - } - } - }, - "1438839158": { - "name": "class BaseEffectCinematicAction*", - "bases": [ - "CinematicAction", - "PropertyClass" - ], - "hash": 1438839158, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_effectRel": { - "type": "enum BaseEffectCinematicAction::kEffectRelative", - "id": 1, - "offset": 80, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2978921287, - "enum_options": { - "kNone": 0, - "kSigil": 1, - "kTarget": 2, - "kSource": 3, - "kActor": 4 - } - } - } - }, - "1047068508": { - "name": "class PetFeedingRewardConfig*", - "bases": [ - "PropertyClass" - ], - "hash": 1047068508, - "properties": { - "m_standardItemFeedingRewards": { - "type": "class PetFeedingRewardInfo*", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2366849484 - }, - "m_crownsFeedingRewards": { - "type": "class PetFeedingRewardInfo*", - "id": 1, - "offset": 96, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1691121416 - }, - "m_fGoldScalingFactor": { - "type": "float", - "id": 2, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2001693763 - } - } - }, - "1438141282": { - "name": "class WizardVisibilityBehavior", - "bases": [ - "ClientVisibilityBehavior", - "VisibilityBehavior", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1438141282, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_showTo": { - "type": "gid", - "id": 1, - "offset": 112, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 947039004 - }, - "m_hideFrom": { - "type": "gid", - "id": 2, - "offset": 128, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 642644390 - }, - "m_visible": { - "type": "bool", - "id": 3, - "offset": 144, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 810536225 - } - } - }, - "1044895804": { - "name": "class ReqAddIncreaseInventory*", - "bases": [ - "Requirement", - "PropertyClass" - ], - "hash": 1044895804, - "properties": { - "m_applyNOT": { - "type": "bool", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1746328074, - "enum_options": { - "__DEFAULT": 0 - } - }, - "m_operator": { - "type": "enum Requirement::Operator", - "id": 1, - "offset": 76, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2672792317, - "enum_options": { - "ROP_AND": 0, - "ROP_OR": 1, - "__DEFAULT": "ROP_AND" - } - } - } - }, - "1438023807": { - "name": "class AddTeamUpdate*", - "bases": [ - "TournamentUpdate", - "PropertyClass" - ], - "hash": 1438023807, - "properties": { - "m_team": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1393503221 - } - } - }, - "660713128": { - "name": "class FishingLevelControl*", - "bases": [ - "Window", - "PropertyClass" - ], - "hash": 660713128, - "properties": { - "m_sName": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306437263 - }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 65667, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621225959 - }, - "m_Style": { - "type": "unsigned int", - "id": 2, - "offset": 152, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "SCALE_CHILDREN": 2, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "FOCUS_LOCKED": 64, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152 - } - }, - "m_Flags": { - "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } - }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3105139380 - }, - "m_fTargetAlpha": { - "type": "float", - "id": 5, - "offset": 212, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1809129834 - }, - "m_fDisabledAlpha": { - "type": "float", - "id": 6, - "offset": 216, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1389987675 - }, - "m_fAlpha": { - "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 482130755 - }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3623628394 - }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2102211316 - }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1846695875 - }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3389835433 - }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2547159940 - }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2587533771 - }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3091503757 - } - } - }, - "1044466289": { - "name": "class PetBoostPlayerStatEffectTemplate*", - "bases": [ - "WizStatisticEffectTemplate", - "StatisticEffectTemplate", - "GameEffectTemplate", - "PropertyClass" - ], - "hash": 1044466289, - "properties": { - "m_effectName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2029161513 - }, - "m_effectCategory": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1852673222 - }, - "m_sortOrder": { - "type": "int", - "id": 2, - "offset": 148, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1411218206 - }, - "m_duration": { - "type": "double", - "id": 3, - "offset": 192, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2727932435 - }, - "m_stackingCategories": { - "type": "std::string", - "id": 4, - "offset": 160, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1774497525 - }, - "m_isPersistent": { - "type": "bool", - "id": 5, - "offset": 153, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 923861920 - }, - "m_bIsOnPet": { - "type": "bool", - "id": 6, - "offset": 154, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 522593303 - }, - "m_isPublic": { - "type": "bool", - "id": 7, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1728439822 - }, - "m_visualEffectAddName": { - "type": "std::string", - "id": 8, - "offset": 200, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3382086694 - }, - "m_visualEffectRemoveName": { - "type": "std::string", - "id": 9, - "offset": 232, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1541697323 - }, - "m_onAddFunctorName": { - "type": "std::string", - "id": 10, - "offset": 280, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1561843107 - }, - "m_onRemoveFunctorName": { - "type": "std::string", - "id": 11, - "offset": 312, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2559017864 - }, - "m_stackingRule": { - "type": "enum STACKING_RULE", - "id": 12, - "offset": 144, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 431568889, - "enum_options": { - "STACKING_ALLOWED": 0, - "STACKING_NOSTACK": 1, - "STACKING_REPLACE": 2 - } - }, - "m_buffAll": { - "type": "bool", - "id": 13, - "offset": 392, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1205044623 - }, - "m_school": { - "type": "std::string", - "id": 14, - "offset": 400, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2438566051 - }, - "m_damageBonusPercent": { - "type": "float", - "id": 15, - "offset": 440, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 623230606 - }, - "m_damageBonusFlat": { - "type": "float", - "id": 16, - "offset": 488, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2212039108 - }, - "m_accuracyBonusPercent": { - "type": "float", - "id": 17, - "offset": 444, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1972336538 - }, - "m_armorPiercingBonusPercent": { - "type": "float", - "id": 18, - "offset": 448, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1569912641 - }, - "m_damageReducePercent": { - "type": "float", - "id": 19, - "offset": 452, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 541736927 - }, - "m_damageReduceFlat": { - "type": "float", - "id": 20, - "offset": 456, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 684172469 - }, - "m_accuracyReducePercent": { - "type": "float", - "id": 21, - "offset": 460, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2112559723 - }, - "m_healBonusPercent": { - "type": "float", - "id": 22, - "offset": 464, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 562313577 - }, - "m_healIncBonusPercent": { - "type": "float", - "id": 23, - "offset": 468, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2182535587 - }, - "m_hitPointBonus": { - "type": "float", - "id": 24, - "offset": 496, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 880644461 - }, - "m_spellChargeBonus": { - "type": "float", - "id": 25, - "offset": 504, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2109811656 - }, - "m_powerPipBonusPercent": { - "type": "float", - "id": 26, - "offset": 472, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1671446341 - }, - "m_petActChance": { - "type": "int", - "id": 27, - "offset": 492, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 237418461 - }, - "m_manaBonus": { - "type": "float", - "id": 28, - "offset": 500, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1372708603 - }, - "m_statTableName": { - "type": "std::string", - "id": 29, - "offset": 360, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1616642912 - }, - "m_manaReducePercent": { - "type": "float", - "id": 30, - "offset": 568, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 348324221 - }, - "m_expPercent": { - "type": "float", - "id": 31, - "offset": 572, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1147850677 - }, - "m_goldPercent": { - "type": "float", - "id": 32, - "offset": 576, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1095720878 - }, - "m_energyBonus": { - "type": "float", - "id": 33, - "offset": 508, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2223158984 - }, - "m_criticalHitRating": { - "type": "float", - "id": 34, - "offset": 512, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1978690540 - }, - "m_blockRating": { - "type": "float", - "id": 35, - "offset": 516, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2088486759 - }, - "m_accuracyRating": { - "type": "float", - "id": 36, - "offset": 520, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 165525575 - }, - "m_powerPipRating": { - "type": "float", - "id": 37, - "offset": 524, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1355340722 - }, - "m_damageResistanceRating": { - "type": "float", - "id": 38, - "offset": 532, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1961377740 - }, - "m_archmastery": { - "type": "float", - "id": 39, - "offset": 536, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1963579610 - }, - "m_archmasteryBonusPercent": { - "type": "float", - "id": 40, - "offset": 588, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1908627154 - }, - "m_balanceMastery": { - "type": "int", - "id": 41, - "offset": 540, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 149062181 - }, - "m_deathMastery": { - "type": "int", - "id": 42, - "offset": 544, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1421218661 - }, - "m_fireMastery": { - "type": "int", - "id": 43, - "offset": 548, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1431794949 - }, - "m_iceMastery": { - "type": "int", - "id": 44, - "offset": 552, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 704864240 - }, - "m_lifeMastery": { - "type": "int", - "id": 45, - "offset": 556, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2142136447 - }, - "m_mythMastery": { - "type": "int", - "id": 46, - "offset": 560, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1766317185 - }, - "m_stormMastery": { - "type": "int", - "id": 47, - "offset": 564, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1883988244 - }, - "m_stunResistancePercent": { - "type": "float", - "id": 48, - "offset": 580, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1868382627 - }, - "m_fishingLuckBonusPercent": { - "type": "float", - "id": 49, - "offset": 480, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1363349254 - }, - "m_shadowPipBonusPercent": { - "type": "float", - "id": 50, - "offset": 476, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1426533310 - }, - "m_wispBonusPercent": { - "type": "float", - "id": 51, - "offset": 484, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1304386546 - }, - "m_pipConversionRating": { - "type": "float", - "id": 52, - "offset": 584, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 246855691 - }, - "m_shadowPipRating": { - "type": "float", - "id": 53, - "offset": 528, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 507126123 - }, - "m_primaryStat1": { - "type": "std::string", - "id": 54, - "offset": 600, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2417808140 - }, - "m_primaryStat2": { - "type": "std::string", - "id": 55, - "offset": 632, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2417808141 - }, - "m_secondaryStat": { - "type": "std::string", - "id": 56, - "offset": 664, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3564684959 - }, - "m_secondaryModifier": { - "type": "float", - "id": 57, - "offset": 696, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2101148238 - } - } - }, - "658890583": { - "name": "class ClientZoneTokenCount*", - "bases": [ - "ZoneTokenCount", - "ZoneTokenBase", - "PropertyClass" - ], - "hash": 658890583, - "properties": { - "m_debugName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3553984419 - }, - "m_adjectiveList": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 3195213318 - }, - "m_icon": { - "type": "std::string", - "id": 2, - "offset": 120, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1717182340 - }, - "m_iconBW": { - "type": "std::string", - "id": 3, - "offset": 152, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2047461085 - }, - "m_description": { - "type": "std::string", - "id": 4, - "offset": 184, - "flags": 8388639, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1649374815 - }, - "m_displayMode": { - "type": "enum ZTDisplayMode", - "id": 5, - "offset": 216, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2216526410, - "enum_options": { - "ZTDM_Shown": 0, - "ZTDM_Discoverable": 1, - "ZTDM_Hidden": 2 - } - }, - "m_storage": { - "type": "enum ZTStorage", - "id": 6, - "offset": 220, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2290454852, - "enum_options": { - "ZTS_Player": 0, - "ZTS_Zone": 1 - } - }, - "m_onEnable": { - "type": "class SharedPointer", - "id": 7, - "offset": 224, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2591736864 - }, - "m_onDiscover": { - "type": "class SharedPointer", - "id": 8, - "offset": 240, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2826026872 - }, - "m_onDisable": { - "type": "class SharedPointer", - "id": 9, - "offset": 256, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1860656717 - }, - "m_sourceID": { - "type": "gid", - "id": 10, - "offset": 272, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1134700470 - }, - "m_inZone": { - "type": "bool", - "id": 11, - "offset": 280, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 564535654 - }, - "m_enabled": { - "type": "bool", - "id": 12, - "offset": 281, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 504506718 - }, - "m_discovered": { - "type": "bool", - "id": 13, - "offset": 282, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2060478331 - }, - "m_minValue": { - "type": "int", - "id": 14, - "offset": 288, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1508523611 - }, - "m_startValue": { - "type": "int", - "id": 15, - "offset": 292, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 672067813 - }, - "m_maxValue": { - "type": "int", - "id": 16, - "offset": 296, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 158068381 - }, - "m_curValue": { - "type": "int", - "id": 17, - "offset": 300, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1147627809 - }, - "m_counterType": { - "type": "enum ZTCounterType", - "id": 18, - "offset": 304, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1417526179, - "enum_options": { - "ZTCT_Full": 0, - "ZTCT_Count": 1, - "ZTCT_Meter": 2, - "ZTCT_Hidden": 3 - } - }, - "m_onIncrease": { - "type": "class SharedPointer", - "id": 19, - "offset": 312, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2723490243 - }, - "m_onDecrease": { - "type": "class SharedPointer", - "id": 20, - "offset": 328, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1346363029 - }, - "m_onEmpty": { - "type": "class SharedPointer", - "id": 21, - "offset": 344, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1658398600 - }, - "m_onFull": { - "type": "class SharedPointer", - "id": 22, - "offset": 360, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1955555436 - } - } - }, - "658249692": { - "name": "class WhirlyBurlyMovementData", - "bases": [ - "PropertyClass" - ], - "hash": 658249692, - "properties": { - "m_unitType": { - "type": "unsigned char", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1498103218 - }, - "m_cardUsed": { - "type": "unsigned int", - "id": 1, - "offset": 76, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1315653400 - }, - "m_movementTurnTime": { - "type": "unsigned char", - "id": 2, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1100876371 - }, - "m_blueTeamScore": { - "type": "unsigned int", - "id": 3, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1519259416 - }, - "m_orangeTeamScore": { - "type": "unsigned int", - "id": 4, - "offset": 108, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 988508012 - }, - "m_redTeamScore": { - "type": "unsigned int", - "id": 5, - "offset": 112, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1672048811 - }, - "m_unitMovementList": { - "type": "unsigned int", - "id": 6, - "offset": 88, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 687999892 - } - } - }, - "1438831683": { - "name": "class SharedPointer", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1438831683, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_wishlistData": { - "type": "std::string", - "id": 1, - "offset": 136, - "flags": 575, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2126601580 - } - } - }, - "658030730": { - "name": "class CustomNameOptions*", - "bases": [ - "PropertyClass" - ], - "hash": 658030730, - "properties": { - "m_customNameMaxLength": { - "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1680359153 - }, - "m_customNameMinLength": { - "type": "unsigned int", - "id": 1, - "offset": 76, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1148225135 - }, - "m_subStringNameExceptions": { - "type": "std::wstring", - "id": 2, - "offset": 88, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2526168028 - }, - "m_singleCharExceptions": { - "type": "std::wstring", - "id": 3, - "offset": 112, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1648919482 - }, - "m_caseInsensitive": { - "type": "bool", - "id": 4, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 182050912 - }, - "m_charSetCosts": { - "type": "class SharedPointer", - "id": 5, - "offset": 184, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1980234615 - } - } - }, - "1045682236": { - "name": "class ReqAddIncreaseInventory", - "bases": [ - "Requirement", - "PropertyClass" - ], - "hash": 1045682236, - "properties": { - "m_applyNOT": { - "type": "bool", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1746328074, - "enum_options": { - "__DEFAULT": 0 - } - }, - "m_operator": { - "type": "enum Requirement::Operator", - "id": 1, - "offset": 76, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2672792317, - "enum_options": { - "ROP_AND": 0, - "ROP_OR": 1, - "__DEFAULT": "ROP_AND" - } - } - } - }, - "1045435047": { - "name": "class SharedPointer", - "bases": [ - "QuestTemplate", - "CoreTemplate", - "PropertyClass" - ], - "hash": 1045435047, - "properties": { - "m_behaviors": { - "type": "class BehaviorTemplate*", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1197808594 - }, - "m_questName": { - "type": "std::string", - "id": 1, - "offset": 96, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1702112846 - }, - "m_questNameID": { - "type": "unsigned int", - "id": 2, - "offset": 128, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1530354349 - }, - "m_questTitle": { - "type": "std::string", - "id": 3, - "offset": 136, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1805465583 - }, - "m_questInfo": { - "type": "std::string", - "id": 4, - "offset": 168, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1701947097 - }, - "m_questPrep": { - "type": "std::string", - "id": 5, - "offset": 200, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1702202980 - }, - "m_questUnderway": { - "type": "std::string", - "id": 6, - "offset": 232, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2308400380 - }, - "m_questComplete": { - "type": "std::string", - "id": 7, - "offset": 264, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3484586150 - }, - "m_startGoals": { - "type": "std::string", - "id": 8, - "offset": 392, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2152469471 - }, - "m_goals": { - "type": "class SharedPointer", - "id": 9, - "offset": 408, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1374041870 - }, - "m_startResults": { - "type": "class SharedPointer", - "id": 10, - "offset": 424, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2094517692 - }, - "m_endResults": { - "type": "class SharedPointer", - "id": 11, - "offset": 440, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2118364133 - }, - "m_requirements": { - "type": "class RequirementList*", - "id": 12, - "offset": 456, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2840985510 - }, - "m_prepRequirements": { - "type": "class RequirementList*", - "id": 13, - "offset": 464, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3016776541 - }, - "m_pruneRequirements": { - "type": "class RequirementList*", - "id": 14, - "offset": 472, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3211248912 - }, - "m_prepAlways": { - "type": "bool", - "id": 15, - "offset": 304, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1423046331 - }, - "m_clientTags": { - "type": "std::string", - "id": 16, - "offset": 312, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2319030025 - }, - "m_goalLogic": { - "type": "class GoalCompleteLogic*", - "id": 17, - "offset": 520, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 963824003 - }, - "m_questLevel": { - "type": "int", - "id": 18, - "offset": 296, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 298136804 - }, - "m_questRepeat": { - "type": "int", - "id": 19, - "offset": 300, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1480345805 - }, - "m_onStartQuestScript": { - "type": "std::string", - "id": 20, - "offset": 328, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2577549709 - }, - "m_onEndQuestScript": { - "type": "std::string", - "id": 21, - "offset": 360, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285648118 - }, - "m_dialogList": { - "type": "class ActorDialogListBase*", - "id": 22, - "offset": 480, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1909154969 - }, - "m_missionDoors": { - "type": "std::string", - "id": 23, - "offset": 504, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2428103908 - }, - "m_dynaMods": { - "type": "class QuestDynaModInfo*", - "id": 24, - "offset": 488, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 3330743945 - }, - "m_isHidden": { - "type": "bool", - "id": 25, - "offset": 305, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1401188667 - }, - "m_outdated": { - "type": "bool", - "id": 26, - "offset": 306, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1565198349 - }, - "m_noQuestHelper": { - "type": "bool", - "id": 27, - "offset": 307, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 578010882 - }, - "m_mainline": { - "type": "bool", - "id": 28, - "offset": 552, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1749856224 - }, - "m_defaultDialogAnimation": { - "type": "std::string", - "id": 29, - "offset": 560, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2400834320 - }, - "m_skipQHAutoSelect": { - "type": "bool", - "id": 30, - "offset": 553, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2024815836 - }, - "m_questEffectInfoList": { - "type": "class SharedPointer", - "id": 31, - "offset": 536, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2494024956 - }, - "m_forceInteraction": { - "type": "bool", - "id": 32, - "offset": 554, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1038376866 - }, - "m_checkInventoryForCrafting": { - "type": "bool", - "id": 33, - "offset": 608, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1549644020 - }, - "m_playAsYourPetNPC": { - "type": "bool", - "id": 34, - "offset": 609, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 827482678 - }, - "m_activityType": { - "type": "enum QuestTemplate::ActivityType", - "id": 35, - "offset": 612, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 231656390, - "enum_options": { - "ACTIVITY_NotActivity": 0, - "ACTIVITY_Crafting": 2, - "ACTIVITY_Fishing": 3, - "ACTIVITY_Gardening": 4, - "ACTIVITY_Pet": 5, - "ACTIVITY_Spell": 1 - } - }, - "m_allowedQuests": { - "type": "std::string", - "id": 36, - "offset": 616, - "flags": 268435463, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1695271656, - "enum_options": { - "__BASECLASS": "QuestTemplate" - } - }, - "m_allowedZoneEvents": { - "type": "std::string", - "id": 37, - "offset": 632, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1503555828 - }, - "m_allowedMinigames": { - "type": "std::string", - "id": 38, - "offset": 648, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1962792925 - }, - "m_tutorialScript": { - "type": "std::string", - "id": 39, - "offset": 712, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1565876420 - }, - "m_modList": { - "type": "class TutorialZoneMod*", - "id": 40, - "offset": 664, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 342986186 - }, - "m_requiresTutorialZone": { - "type": "bool", - "id": 41, - "offset": 776, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1728419315 - }, - "m_scriptZone": { - "type": "std::string", - "id": 42, - "offset": 744, - "flags": 268435463, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3110729452, - "enum_options": { - "__BASECLASS": "ZoneData" - } - }, - "m_visibleTutorial": { - "type": "bool", - "id": 43, - "offset": 777, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1398395349 - } - } - }, - "1439032205": { - "name": "class ExtraHousingZoneBehavior", - "bases": [ - "ExtraHousingZoneBehaviorBase", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1439032205, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - } - } - }, - "658839169": { - "name": "class ReleaseCinematicStageTemplate*", - "bases": [ - "CinematicStageTemplate", - "PropertyClass" - ], - "hash": 658839169, - "properties": { - "m_name": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1717359772 - }, - "m_duration": { - "type": "float", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 920323453 - }, - "m_actions": { - "type": "class SharedPointer", - "id": 2, - "offset": 112, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1380578687 - }, - "m_stageRelationships": { - "type": "class SharedPointer", - "id": 3, - "offset": 128, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 499983354 - }, - "m_sound": { - "type": "std::string", - "id": 4, - "offset": 152, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2307644996 - } - } - }, - "1439027231": { - "name": "class AchieveRankGoalTemplate*", - "bases": [ - "GoalTemplate", - "CoreTemplate", - "PropertyClass" - ], - "hash": 1439027231, - "properties": { - "m_behaviors": { - "type": "class BehaviorTemplate*", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1197808594 - }, - "m_goalName": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1521627807 - }, - "m_goalNameID": { - "type": "unsigned int", - "id": 2, - "offset": 496, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 403158846 - }, - "m_goalTitle": { - "type": "std::string", - "id": 3, - "offset": 136, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2291910240 - }, - "m_goalUnderway": { - "type": "std::string", - "id": 4, - "offset": 168, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3153144269 - }, - "m_hyperlink": { - "type": "std::string", - "id": 5, - "offset": 200, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2887798993 - }, - "m_completeText": { - "type": "std::string", - "id": 6, - "offset": 232, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2767458393 - }, - "m_completeResults": { - "type": "class ResultList*", - "id": 7, - "offset": 440, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1964258099 - }, - "m_goalRequirements": { - "type": "class RequirementList*", - "id": 8, - "offset": 448, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2979967145 - }, - "m_tallyCounter": { - "type": "class TallyCounterTemplate*", - "id": 9, - "offset": 456, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1884546193 - }, - "m_locationName": { - "type": "std::string", - "id": 10, - "offset": 272, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1824218389 - }, - "m_displayImage1": { - "type": "std::string", - "id": 11, - "offset": 304, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1959572133 - }, - "m_displayImage2": { - "type": "std::string", - "id": 12, - "offset": 336, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1959572134 - }, - "m_clientTags": { - "type": "std::string", - "id": 13, - "offset": 368, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2319030025 - }, - "m_genericEvents": { - "type": "std::string", - "id": 14, - "offset": 384, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 3466670829 - }, - "m_autoQualify": { - "type": "bool", - "id": 15, - "offset": 400, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1878907431 - }, - "m_autoComplete": { - "type": "bool", - "id": 16, - "offset": 401, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1302545445 - }, - "m_destinationZone": { - "type": "std::string", - "id": 17, - "offset": 408, - "flags": 268435463, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2605356153, - "enum_options": { - "__BASECLASS": "ZoneData" - } - }, - "m_dialogList": { - "type": "class ActorDialogListBase*", - "id": 18, - "offset": 264, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1909154969 - }, - "m_goalType": { - "type": "enum GoalTemplate::GOAL_TYPE", - "id": 19, - "offset": 96, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1488021149, - "enum_options": { - "GOAL_TYPE_UNKNOWN": 0, - "GOAL_TYPE_BOUNTY": 1, - "GOAL_TYPE_BOUNTYCOLLECT": 2, - "GOAL_TYPE_SCAVENGE": 3, - "GOAL_TYPE_PERSONA": 4, - "GOAL_TYPE_WAYPOINT": 5, - "GOAL_TYPE_SCAVENGEFAKE": 6, - "GOAL_TYPE_ACHIEVERANK": 7, - "GOAL_TYPE_USAGE": 8, - "GOAL_TYPE_COMPLETEQUEST": 9, - "GOAL_TYPE_SOCIARANK": 10, - "GOAL_TYPE_SOCIACURRENCY": 11, - "GOAL_TYPE_SOCIAMINIGAME": 12, - "GOAL_TYPE_SOCIAGIVEITEM": 13, - "GOAL_TYPE_SOCIAGETITEM": 14, - "GOAL_TYPE_COLLECTAFTERBOUNTY": 15, - "GOAL_TYPE_ENCOUNTER_WAYPOINT_FOREACH": 16 - } - }, - "m_noQuestHelper": { - "type": "bool", - "id": 20, - "offset": 500, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 578010882, - "enum_options": { - "__DEFAULT": 0 - } - }, - "m_petOnlyQuest": { - "type": "bool", - "id": 21, - "offset": 501, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 679359344, - "enum_options": { - "__DEFAULT": 0 - } - }, - "m_activateResults": { - "type": "class ResultList*", - "id": 22, - "offset": 504, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3790153995 - }, - "m_hideGoalFloatyText": { - "type": "bool", - "id": 23, - "offset": 512, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1919383204, - "enum_options": { - "__DEFAULT": 0 - } - }, - "m_rank": { - "type": "int", - "id": 24, - "offset": 520, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 219803942 - } - } - }, - "1137884646": { - "name": "class LoyaltyPurchaseEntry", - "bases": [ - "PropertyClass" - ], - "hash": 1137884646, - "properties": { - "m_timeOfPurchase": { - "type": "int", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 556096185 - }, - "m_charID": { - "type": "gid", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 320363747 - }, - "m_packedName": { - "type": "std::string", - "id": 2, - "offset": 88, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1805208228 - }, - "m_itemTemplateID": { - "type": "unsigned int", - "id": 3, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2190120133 - }, - "m_tokensAmount": { - "type": "int", - "id": 4, - "offset": 124, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 440789666 - }, - "m_tokensBalance": { - "type": "int", - "id": 5, - "offset": 128, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 328409108 - } - } - }, - "658511489": { - "name": "class ReleaseCinematicStageTemplate", - "bases": [ - "CinematicStageTemplate", - "PropertyClass" - ], - "hash": 658511489, - "properties": { - "m_name": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1717359772 - }, - "m_duration": { - "type": "float", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 920323453 - }, - "m_actions": { - "type": "class SharedPointer", - "id": 2, - "offset": 112, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1380578687 - }, - "m_stageRelationships": { - "type": "class SharedPointer", - "id": 3, - "offset": 128, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 499983354 - }, - "m_sound": { - "type": "std::string", - "id": 4, - "offset": 152, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2307644996 - } - } - }, - "1093919580": { - "name": "class WizBGPolymorphStatisticOverrideEffect", - "bases": [ - "StatisticEffect", - "GameEffectBase", - "PropertyClass" - ], - "hash": 1093919580, - "properties": { - "m_currentTickCount": { - "type": "double", - "id": 0, - "offset": 80, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2533274692 - }, - "m_effectNameID": { - "type": "unsigned int", - "id": 1, - "offset": 96, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1204067144 - }, - "m_bIsOnPet": { - "type": "bool", - "id": 2, - "offset": 73, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 522593303 - }, - "m_originatorID": { - "type": "gid", - "id": 3, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1131810019 - }, - "m_itemSlotID": { - "type": "unsigned int", - "id": 4, - "offset": 112, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1895747595 - }, - "m_internalID": { - "type": "int", - "id": 5, - "offset": 92, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1643137924 - }, - "m_endTime": { - "type": "unsigned int", - "id": 6, - "offset": 88, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 716479635 - }, - "m_lookupIndex": { - "type": "int", - "id": 7, - "offset": 128, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1626623948 - }, - "m_baseHitpoints": { - "type": "int", - "id": 8, - "offset": 136, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 596105911 - } - } - }, - "1047833171": { - "name": "class std::list >", - "bases": [], - "hash": 1047833171, - "properties": {} - }, - "1439813663": { - "name": "class AchieveRankGoalTemplate", - "bases": [ - "GoalTemplate", - "CoreTemplate", - "PropertyClass" - ], - "hash": 1439813663, - "properties": { - "m_behaviors": { - "type": "class BehaviorTemplate*", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1197808594 - }, - "m_goalName": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1521627807 - }, - "m_goalNameID": { - "type": "unsigned int", - "id": 2, - "offset": 496, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 403158846 - }, - "m_goalTitle": { - "type": "std::string", - "id": 3, - "offset": 136, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2291910240 - }, - "m_goalUnderway": { - "type": "std::string", - "id": 4, - "offset": 168, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3153144269 - }, - "m_hyperlink": { - "type": "std::string", - "id": 5, - "offset": 200, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2887798993 - }, - "m_completeText": { - "type": "std::string", - "id": 6, - "offset": 232, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2767458393 - }, - "m_completeResults": { - "type": "class ResultList*", - "id": 7, - "offset": 440, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1964258099 - }, - "m_goalRequirements": { - "type": "class RequirementList*", - "id": 8, - "offset": 448, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2979967145 - }, - "m_tallyCounter": { - "type": "class TallyCounterTemplate*", - "id": 9, - "offset": 456, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1884546193 - }, - "m_locationName": { - "type": "std::string", - "id": 10, - "offset": 272, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1824218389 - }, - "m_displayImage1": { - "type": "std::string", - "id": 11, - "offset": 304, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1959572133 - }, - "m_displayImage2": { - "type": "std::string", - "id": 12, - "offset": 336, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1959572134 - }, - "m_clientTags": { - "type": "std::string", - "id": 13, - "offset": 368, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2319030025 - }, - "m_genericEvents": { - "type": "std::string", - "id": 14, - "offset": 384, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 3466670829 - }, - "m_autoQualify": { - "type": "bool", - "id": 15, - "offset": 400, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1878907431 - }, - "m_autoComplete": { - "type": "bool", - "id": 16, - "offset": 401, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1302545445 - }, - "m_destinationZone": { - "type": "std::string", - "id": 17, - "offset": 408, - "flags": 268435463, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2605356153, - "enum_options": { - "__BASECLASS": "ZoneData" - } - }, - "m_dialogList": { - "type": "class ActorDialogListBase*", - "id": 18, - "offset": 264, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1909154969 - }, - "m_goalType": { - "type": "enum GoalTemplate::GOAL_TYPE", - "id": 19, - "offset": 96, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1488021149, - "enum_options": { - "GOAL_TYPE_UNKNOWN": 0, - "GOAL_TYPE_BOUNTY": 1, - "GOAL_TYPE_BOUNTYCOLLECT": 2, - "GOAL_TYPE_SCAVENGE": 3, - "GOAL_TYPE_PERSONA": 4, - "GOAL_TYPE_WAYPOINT": 5, - "GOAL_TYPE_SCAVENGEFAKE": 6, - "GOAL_TYPE_ACHIEVERANK": 7, - "GOAL_TYPE_USAGE": 8, - "GOAL_TYPE_COMPLETEQUEST": 9, - "GOAL_TYPE_SOCIARANK": 10, - "GOAL_TYPE_SOCIACURRENCY": 11, - "GOAL_TYPE_SOCIAMINIGAME": 12, - "GOAL_TYPE_SOCIAGIVEITEM": 13, - "GOAL_TYPE_SOCIAGETITEM": 14, - "GOAL_TYPE_COLLECTAFTERBOUNTY": 15, - "GOAL_TYPE_ENCOUNTER_WAYPOINT_FOREACH": 16 - } - }, - "m_noQuestHelper": { - "type": "bool", - "id": 20, - "offset": 500, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 578010882, - "enum_options": { - "__DEFAULT": 0 - } - }, - "m_petOnlyQuest": { - "type": "bool", - "id": 21, - "offset": 501, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 679359344, - "enum_options": { - "__DEFAULT": 0 - } - }, - "m_activateResults": { - "type": "class ResultList*", - "id": 22, - "offset": 504, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3790153995 - }, - "m_hideGoalFloatyText": { - "type": "bool", - "id": 23, - "offset": 512, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1919383204, - "enum_options": { - "__DEFAULT": 0 - } - }, - "m_rank": { - "type": "int", - "id": 24, - "offset": 520, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 219803942 - } - } - }, - "1059335555": { - "name": "class WhirlyBurlyActor*", - "bases": [], - "hash": 1059335555, - "properties": {} - }, - "659748037": { - "name": "class SharedPointer", - "bases": [ - "MoveController::MoveCommand", - "PropertyClass" - ], - "hash": 659748037, - "properties": { - "m_fRoll": { - "type": "float", - "id": 0, - "offset": 88, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 883680790 - } - } - }, - "1047460700": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1047460700, - "properties": { - "m_entryList": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 818498005 - }, - "m_leaderboardSize": { - "type": "int", - "id": 1, - "offset": 88, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 683398282 - } - } - }, - "658890623": { - "name": "class ClientZoneTokenCount", - "bases": [ - "ZoneTokenCount", - "ZoneTokenBase", - "PropertyClass" - ], - "hash": 658890623, - "properties": { - "m_debugName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3553984419 - }, - "m_adjectiveList": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 3195213318 - }, - "m_icon": { - "type": "std::string", - "id": 2, - "offset": 120, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1717182340 - }, - "m_iconBW": { - "type": "std::string", - "id": 3, - "offset": 152, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2047461085 - }, - "m_description": { - "type": "std::string", - "id": 4, - "offset": 184, - "flags": 8388639, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1649374815 - }, - "m_displayMode": { - "type": "enum ZTDisplayMode", - "id": 5, - "offset": 216, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2216526410, - "enum_options": { - "ZTDM_Shown": 0, - "ZTDM_Discoverable": 1, - "ZTDM_Hidden": 2 - } - }, - "m_storage": { - "type": "enum ZTStorage", - "id": 6, - "offset": 220, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2290454852, - "enum_options": { - "ZTS_Player": 0, - "ZTS_Zone": 1 - } - }, - "m_onEnable": { - "type": "class SharedPointer", - "id": 7, - "offset": 224, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2591736864 - }, - "m_onDiscover": { - "type": "class SharedPointer", - "id": 8, - "offset": 240, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2826026872 - }, - "m_onDisable": { - "type": "class SharedPointer", - "id": 9, - "offset": 256, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1860656717 - }, - "m_sourceID": { - "type": "gid", - "id": 10, - "offset": 272, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1134700470 - }, - "m_inZone": { - "type": "bool", - "id": 11, - "offset": 280, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 564535654 - }, - "m_enabled": { - "type": "bool", - "id": 12, - "offset": 281, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 504506718 - }, - "m_discovered": { - "type": "bool", - "id": 13, - "offset": 282, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2060478331 - }, - "m_minValue": { - "type": "int", - "id": 14, - "offset": 288, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1508523611 - }, - "m_startValue": { - "type": "int", - "id": 15, - "offset": 292, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 672067813 - }, - "m_maxValue": { - "type": "int", - "id": 16, - "offset": 296, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 158068381 - }, - "m_curValue": { - "type": "int", - "id": 17, - "offset": 300, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1147627809 - }, - "m_counterType": { - "type": "enum ZTCounterType", - "id": 18, - "offset": 304, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1417526179, - "enum_options": { - "ZTCT_Full": 0, - "ZTCT_Count": 1, - "ZTCT_Meter": 2, - "ZTCT_Hidden": 3 - } - }, - "m_onIncrease": { - "type": "class SharedPointer", - "id": 19, - "offset": 312, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2723490243 - }, - "m_onDecrease": { - "type": "class SharedPointer", - "id": 20, - "offset": 328, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1346363029 - }, - "m_onEmpty": { - "type": "class SharedPointer", - "id": 21, - "offset": 344, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1658398600 - }, - "m_onFull": { - "type": "class SharedPointer", - "id": 22, - "offset": 360, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1955555436 - } - } - }, - "1497788074": { - "name": "std::string", - "bases": [], - "hash": 1497788074, - "properties": {} - }, - "1479974833": { - "name": "class Matrix3x3", - "bases": [], - "hash": 1479974833, - "properties": {} - }, - "1048126625": { - "name": "class SharedPointer", - "bases": [ - "ActorDialogEntry", - "PropertyClass" - ], - "hash": 1048126625, - "properties": { - "m_requirements": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 263, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3043523229 - }, - "m_dialog": { - "type": "std::string", - "id": 1, - "offset": 88, - "flags": 8388639, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1858395851 - }, - "m_picture": { - "type": "std::string", - "id": 2, - "offset": 120, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3128322903 - }, - "m_soundFile": { - "type": "std::string", - "id": 3, - "offset": 152, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2276870852 - }, - "m_action": { - "type": "std::string", - "id": 4, - "offset": 184, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1734553689 - }, - "m_dialogEvent": { - "type": "std::string", - "id": 5, - "offset": 216, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2707957549 - }, - "m_actorTemplateID": { - "type": "unsigned int", - "id": 6, - "offset": 248, - "flags": 33554463, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2134265679 - }, - "m_cameraName": { - "type": "std::string", - "id": 7, - "offset": 256, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3252786917 - }, - "m_interpolationDuration": { - "type": "float", - "id": 8, - "offset": 312, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1458058437, - "enum_options": { - "__DEFAULT": "1.0" - } - }, - "m_cameraOffsetX": { - "type": "float", - "id": 9, - "offset": 288, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1515912895 - }, - "m_cameraOffsetY": { - "type": "float", - "id": 10, - "offset": 292, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1515912896 - }, - "m_cameraOffsetZ": { - "type": "float", - "id": 11, - "offset": 296, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1515912897 - }, - "m_pitch": { - "type": "float", - "id": 12, - "offset": 304, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 896371695 - }, - "m_yaw": { - "type": "float", - "id": 13, - "offset": 300, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 357256328 - }, - "m_roll": { - "type": "float", - "id": 14, - "offset": 308, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 310020272 - }, - "m_cameraShakeType": { - "type": "std::string", - "id": 15, - "offset": 320, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1754128882, - "enum_options": { - "": 0, - "Constant": "Constant", - "Quake": "Quake", - "Thud": "Thud", - "End": "End", - "__DEFAULT": 0 - } - }, - "m_cameraShakeDuration": { - "type": "float", - "id": 16, - "offset": 352, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 316581010, - "enum_options": { - "__DEFAULT": "0.0" - } - }, - "m_cameraShakeAmplitude": { - "type": "float", - "id": 17, - "offset": 356, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2179718321, - "enum_options": { - "__DEFAULT": "0.0" - } - }, - "m_bypassCameraOnReview": { - "type": "bool", - "id": 18, - "offset": 360, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1412905725, - "enum_options": { - "__DEFAULT": 1 - } - }, - "m_cameraZoneName": { - "type": "std::string", - "id": 19, - "offset": 368, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3131581121 - }, - "m_duration": { - "type": "float", - "id": 20, - "offset": 400, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 920323453 - }, - "m_delay": { - "type": "float", - "id": 21, - "offset": 404, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 881988134 - }, - "m_cameraHidePlayers": { - "type": "int", - "id": 22, - "offset": 408, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 28533149 - }, - "m_walkAwayNpcTemplateID": { - "type": "gid", - "id": 23, - "offset": 416, - "flags": 33554719, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 942697507 - }, - "m_walkAwayExitDirectionInDegrees": { - "type": "float", - "id": 24, - "offset": 424, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 396419785 - }, - "m_walkAwayFadeTime": { - "type": "float", - "id": 25, - "offset": 428, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 822405687 - }, - "m_walkAwayUseCurrentFacing": { - "type": "bool", - "id": 26, - "offset": 432, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1464855436 - }, - "m_standInPlayerTag": { - "type": "std::string", - "id": 27, - "offset": 440, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1590121141 - }, - "m_fadeOutCamera": { - "type": "bool", - "id": 28, - "offset": 472, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1766121252 - }, - "m_snapCameraToPlayerAtExit": { - "type": "bool", - "id": 29, - "offset": 473, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1323369645 - }, - "m_secondaryCameraName": { - "type": "std::string", - "id": 30, - "offset": 480, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1670705581 - }, - "m_secondaryInterpolationDuration": { - "type": "float", - "id": 31, - "offset": 512, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1873822349 - }, - "m_npcStandInList": { - "type": "std::string", - "id": 32, - "offset": 520, - "flags": 287, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2076308937 - }, - "m_dialogAnimationList": { - "type": "std::string", - "id": 33, - "offset": 536, - "flags": 287, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2444806919 - }, - "m_dialogTurningList": { - "type": "std::string", - "id": 34, - "offset": 552, - "flags": 287, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2782869422 - }, - "m_npcYawOffsetInDegrees": { - "type": "float", - "id": 35, - "offset": 568, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1395075270 - }, - "m_allowPlayerToMove": { - "type": "bool", - "id": 36, - "offset": 572, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 225101337 - }, - "m_soundEffectFile": { - "type": "std::string", - "id": 37, - "offset": 576, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3235157265 - }, - "m_musicFile": { - "type": "std::string", - "id": 38, - "offset": 608, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2963686620 - }, - "m_nonStackableMusic": { - "type": "bool", - "id": 39, - "offset": 640, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1675595625 - }, - "m_nonRepeatableMusic": { - "type": "bool", - "id": 40, - "offset": 641, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2138315572 - }, - "m_playMusicAtSFXVolume": { - "type": "bool", - "id": 41, - "offset": 642, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2130871816 - }, - "m_soundEffectDelay": { - "type": "float", - "id": 42, - "offset": 644, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1586382460 - }, - "m_musicDelay": { - "type": "float", - "id": 43, - "offset": 648, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1217785767 - }, - "m_musicFadeTime": { - "type": "float", - "id": 44, - "offset": 652, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 502925015 - }, - "m_dontReleaseCameraAtExit": { - "type": "bool", - "id": 45, - "offset": 474, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1107508961 - }, - "m_disableBackButton": { - "type": "bool", - "id": 46, - "offset": 656, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 122355444 - }, - "m_enableExitButton": { - "type": "bool", - "id": 47, - "offset": 657, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1824693936 - }, - "m_cameraFadeType": { - "type": "std::string", - "id": 48, - "offset": 664, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2021935382, - "enum_options": { - "": 0, - "In Out Black": "In Out Black", - "In Out White": "In Out White", - "In Black": "In Black", - "Out Black": "Out Black", - "In White": "In White", - "Out White": "Out White", - "__DEFAULT": 0 - } - }, - "m_cameraFadeTime": { - "type": "float", - "id": 49, - "offset": 696, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 614419391, - "enum_options": { - "__DEFAULT": "0.5" - } - }, - "m_idleAnimation": { - "type": "std::string", - "id": 50, - "offset": 704, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2900487193 - }, - "m_spamTime": { - "type": "float", - "id": 51, - "offset": 736, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1727215063, - "enum_options": { - "__DEFAULT": "1.0" - } - }, - "m_playSoundIfSpamming": { - "type": "bool", - "id": 52, - "offset": 740, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 690006749, - "enum_options": { - "__DEFAULT": 1 - } - }, - "m_playMusicIfSpamming": { - "type": "bool", - "id": 53, - "offset": 741, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 538564341, - "enum_options": { - "__DEFAULT": 1 - } - }, - "m_stopMusicFadeTime": { - "type": "float", - "id": 54, - "offset": 744, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 696390845, - "enum_options": { - "__DEFAULT": "0.0" - } - }, - "m_restartMusicFadeTime": { - "type": "float", - "id": 55, - "offset": 748, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 709379292, - "enum_options": { - "__DEFAULT": "0.0" - } - }, - "m_meetsRequirements": { - "type": "bool", - "id": 56, - "offset": 752, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 296443061 - }, - "m_secondaryCameraInitalDelay": { - "type": "float", - "id": 57, - "offset": 516, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1812842232 - }, - "m_displayButtonsOnTimedDialog": { - "type": "bool", - "id": 58, - "offset": 753, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 569741400 - } - } - }, - "1466014316": { - "name": "class PaidLootRollStationOption", - "bases": [ - "ServiceOptionBase", - "PropertyClass" - ], - "hash": 1466014316, - "properties": { - "m_serviceName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2206028813 - }, - "m_iconKey": { - "type": "std::string", - "id": 1, - "offset": 168, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2457138637 - }, - "m_displayKey": { - "type": "std::string", - "id": 2, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3023276954 - }, - "m_serviceIndex": { - "type": "unsigned int", - "id": 3, - "offset": 204, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2103126710 - }, - "m_forceInteract": { - "type": "bool", - "id": 4, - "offset": 200, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1705789564 - } - } - }, - "660161586": { - "name": "class SchoolOfFocusOption*", - "bases": [ - "PropertyClass" - ], - "hash": 660161586, - "properties": { - "m_schoolNameID": { - "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 624113571 - } - } - }, - "1457519768": { - "name": "class DestroyActorCinematicAction", - "bases": [ - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 1457519768, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - } - } - }, - "1452686144": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1452686144, - "properties": {} - }, - "1069240592": { - "name": "class WizTrainingInteraction*", - "bases": [ - "ServiceOptionBase", - "PropertyClass" - ], - "hash": 1069240592, - "properties": { - "m_serviceName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2206028813 - }, - "m_iconKey": { - "type": "std::string", - "id": 1, - "offset": 168, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2457138637 - }, - "m_displayKey": { - "type": "std::string", - "id": 2, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3023276954 - }, - "m_serviceIndex": { - "type": "unsigned int", - "id": 3, - "offset": 204, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2103126710 - }, - "m_forceInteract": { - "type": "bool", - "id": 4, - "offset": 200, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1705789564 - } - } - }, - "1445860214": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1445860214, - "properties": { - "m_spellName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2688485244 - }, - "m_maxCopies": { - "type": "int", - "id": 1, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 191619875 - } - } - }, - "661699584": { - "name": "class UIScaleConfig*", - "bases": [ - "PropertyClass" - ], - "hash": 661699584, - "properties": { - "m_entries": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 998597073 - } - } - }, - "1059365023": { - "name": "class AuctionHouseOption*", - "bases": [ - "ServiceOptionBase", - "PropertyClass" - ], - "hash": 1059365023, - "properties": { - "m_serviceName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2206028813 - }, - "m_iconKey": { - "type": "std::string", - "id": 1, - "offset": 168, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2457138637 - }, - "m_displayKey": { - "type": "std::string", - "id": 2, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3023276954 - }, - "m_serviceIndex": { - "type": "unsigned int", - "id": 3, - "offset": 204, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2103126710 - }, - "m_forceInteract": { - "type": "bool", - "id": 4, - "offset": 200, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1705789564 - }, - "m_auctionHousePurchaseKey": { - "type": "unsigned int", - "id": 5, - "offset": 216, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 394777768 - }, - "m_sellModifier": { - "type": "float", - "id": 6, - "offset": 220, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 360128886 - } - } - }, - "1443902470": { - "name": "class PathMovementBehaviorTemplate*", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 1443902470, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - }, - "m_movementSpeed": { - "type": "float", - "id": 1, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 769135219 - }, - "m_movementScale": { - "type": "float", - "id": 2, - "offset": 124, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 768663914 - } - } - }, - "661176458": { - "name": "class CustomNameOptions", - "bases": [ - "PropertyClass" - ], - "hash": 661176458, - "properties": { - "m_customNameMaxLength": { - "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1680359153 - }, - "m_customNameMinLength": { - "type": "unsigned int", - "id": 1, - "offset": 76, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1148225135 - }, - "m_subStringNameExceptions": { - "type": "std::wstring", - "id": 2, - "offset": 88, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2526168028 - }, - "m_singleCharExceptions": { - "type": "std::wstring", - "id": 3, - "offset": 112, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1648919482 - }, - "m_caseInsensitive": { - "type": "bool", - "id": 4, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 182050912 - }, - "m_charSetCosts": { - "type": "class SharedPointer", - "id": 5, - "offset": 184, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1980234615 - } - } - }, - "1053587640": { - "name": "class DyeShopWindow::DyeShopItem*", - "bases": [ - "InventoryPageWindow::InventoryItem", - "ControlCheckBox", - "ControlButton", - "Window", - "PropertyClass" - ], - "hash": 1053587640, - "properties": { - "m_sName": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306437263 - }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621225959 - }, - "m_Style": { - "type": "unsigned int", - "id": 2, - "offset": 152, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152, - "EFFECT_SCALE": 67108864, - "LOCK_ICON_SIZE": 33554432, - "LEFT_TEXT": 536870912, - "NO_FIT_TEXT": 1073741824, - "CHECKBOX_TEXTOVERIMAGE": 16777216 - } - }, - "m_Flags": { - "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } - }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3105139380 - }, - "m_fTargetAlpha": { - "type": "float", - "id": 5, - "offset": 212, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1809129834 - }, - "m_fDisabledAlpha": { - "type": "float", - "id": 6, - "offset": 216, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1389987675 - }, - "m_fAlpha": { - "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 482130755 - }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3623628394 - }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2102211316 - }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1846695875 - }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3389835433 - }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2547159940 - }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2587533771 - }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3091503757 - }, - "m_bToggle": { - "type": "bool", - "id": 16, - "offset": 608, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2071810903 - }, - "m_bButtonDown": { - "type": "bool", - "id": 17, - "offset": 609, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 840041705 - }, - "m_sLabel": { - "type": "std::wstring", - "id": 18, - "offset": 616, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2207009163 - }, - "m_labelOffset": { - "type": "class Rect", - "id": 19, - "offset": 832, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1990646723 - }, - "m_pButton": { - "type": "class SharedPointer", - "id": 20, - "offset": 656, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1543855875 - }, - "m_HotKey": { - "type": "unsigned int", - "id": 21, - "offset": 672, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1631553409 - }, - "m_Color": { - "type": "class Color", - "id": 22, - "offset": 676, - "flags": 262279, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1753714077 - }, - "m_bCursorOver": { - "type": "bool", - "id": 23, - "offset": 689, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 283981103 - }, - "m_bAbortWhenCursorNotOver": { - "type": "bool", - "id": 24, - "offset": 706, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 325405258 - }, - "m_bHotKeyDown": { - "type": "bool", - "id": 25, - "offset": 680, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 616989185 - }, - "m_fTime": { - "type": "float", - "id": 26, - "offset": 684, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 883746156 - }, - "m_bGreyed": { - "type": "bool", - "id": 27, - "offset": 688, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1566556053 - }, - "m_fMaxScale": { - "type": "float", - "id": 28, - "offset": 692, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2070186635 - }, - "m_fScaleSpeed": { - "type": "float", - "id": 29, - "offset": 696, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1457135702 - }, - "m_bUseDropShadow": { - "type": "bool", - "id": 30, - "offset": 704, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 93063037 - }, - "m_bUseOutline": { - "type": "bool", - "id": 31, - "offset": 705, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 744292994 - }, - "m_pGreyedState": { - "type": "class SharedPointer", - "id": 32, - "offset": 768, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2703352263 - }, - "m_pNormalState": { - "type": "class SharedPointer", - "id": 33, - "offset": 752, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1887909808 - }, - "m_pHighlightedState": { - "type": "class SharedPointer", - "id": 34, - "offset": 784, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2200177608 - }, - "m_pSelectedState": { - "type": "class SharedPointer", - "id": 35, - "offset": 800, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2266776432 - }, - "m_pDepressedState": { - "type": "class SharedPointer", - "id": 36, - "offset": 816, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1878185798 - }, - "m_nGroupID": { - "type": "int", - "id": 37, - "offset": 880, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 403966850 - }, - "m_bChecked": { - "type": "bool", - "id": 38, - "offset": 884, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 958955100 - }, - "m_pCheckedState": { - "type": "class SharedPointer", - "id": 39, - "offset": 888, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1210539694 - }, - "m_pCheckedGreyedState": { - "type": "class SharedPointer", - "id": 40, - "offset": 904, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2702030126 - }, - "m_pCheckedHighlightedState": { - "type": "class SharedPointer", - "id": 41, - "offset": 920, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1320097679 - }, - "m_pCheckedDepressedState": { - "type": "class SharedPointer", - "id": 42, - "offset": 936, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1609188685 - }, - "m_pEquipNormalState": { - "type": "class SharedPointer", - "id": 43, - "offset": 976, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1322058516 - }, - "m_pEquipPressState": { - "type": "class SharedPointer", - "id": 44, - "offset": 992, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3019605144 - }, - "m_pEquipHighlightState": { - "type": "class SharedPointer", - "id": 45, - "offset": 1008, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2559056739 - }, - "m_pEquipCheckState": { - "type": "class SharedPointer", - "id": 46, - "offset": 1024, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2420681417 - }, - "m_pEquipCheckPressState": { - "type": "class SharedPointer", - "id": 47, - "offset": 1040, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2063281462 - }, - "m_pEquipCheckHighlightState": { - "type": "class SharedPointer", - "id": 48, - "offset": 1056, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2990990081 - } - } - }, - "1441629456": { - "name": "class MinigameSigilOptionAdvancedModeFields*", - "bases": [ - "PropertyClass" - ], - "hash": 1441629456, - "properties": { - "m_sigilNameKey": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3055768893 - }, - "m_sigilTextKey": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2384767873 - }, - "m_sigilEncounterInfoTextKey": { - "type": "std::string", - "id": 2, - "offset": 168, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3121233376 - }, - "m_successZone": { - "type": "std::string", - "id": 3, - "offset": 200, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1516681392 - }, - "m_sigilIcon": { - "type": "std::string", - "id": 4, - "offset": 136, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3177480156 - }, - "m_teamUpAllowed": { - "type": "int", - "id": 5, - "offset": 232, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1016118542 - }, - "m_isCluster": { - "type": "bool", - "id": 6, - "offset": 236, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1183074257 - }, - "m_passedReqs": { - "type": "bool", - "id": 7, - "offset": 237, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1047234766 - }, - "m_failedRequirement": { - "type": "class SharedPointer", - "id": 8, - "offset": 240, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2322583945 - } - } - }, - "1051565990": { - "name": "class Group*", - "bases": [ - "PropertyClass" - ], - "hash": 1051565990, - "properties": { - "m_GroupID": { - "type": "gid", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 586506386 - }, - "m_ChannelID": { - "type": "gid", - "id": 1, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1585983742 - }, - "m_MemberList": { - "type": "class SharedPointer", - "id": 2, - "offset": 88, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2864705424 - }, - "m_nMaxSize": { - "type": "unsigned int", - "id": 3, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1265869948 - }, - "m_fromAdventureParty": { - "type": "bool", - "id": 4, - "offset": 128, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 940992997 - }, - "m_leaderGID": { - "type": "gid", - "id": 5, - "offset": 136, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 700505145 - }, - "m_questGID": { - "type": "gid", - "id": 6, - "offset": 144, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 331631550 - }, - "m_goalGID": { - "type": "gid", - "id": 7, - "offset": 152, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 976914927 - } - } - }, - "1440433589": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1440433589, - "properties": { - "m_costFloorAdditive": { - "type": "int", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1871158175 - }, - "m_multiplierTemplateCost": { - "type": "float", - "id": 1, - "offset": 76, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1851711699 - }, - "m_multiplierIfDropList": { - "type": "float", - "id": 2, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1310969758 - }, - "m_multiplierIfDyeList": { - "type": "float", - "id": 3, - "offset": 84, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 257956107 - }, - "m_petRenameCost": { - "type": "int", - "id": 4, - "offset": 88, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 136443668 - } - } - }, - "1049222261": { - "name": "class ClientCameraFadeCinematicAction", - "bases": [ - "CameraFadeCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 1049222261, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_fDuration": { - "type": "float", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 598255075 - }, - "m_bCycle": { - "type": "bool", - "id": 2, - "offset": 84, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 240694213 - }, - "m_bFadeIn": { - "type": "bool", - "id": 3, - "offset": 85, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1507201372 - } - } - }, - "1440395148": { - "name": "class FaceTargetActorCinematicAction*", - "bases": [ - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 1440395148, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - }, - "m_bCaster": { - "type": "bool", - "id": 2, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1390351511 - } - } - }, - "664620549": { - "name": "class SharedPointer", - "bases": [ - "Window", - "PropertyClass" - ], - "hash": 664620549, - "properties": { - "m_sName": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306437263 - }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621225959 - }, - "m_Style": { - "type": "unsigned int", - "id": 2, - "offset": 152, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "SCALE_CHILDREN": 2, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "FOCUS_LOCKED": 64, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152 - } - }, - "m_Flags": { - "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } - }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3105139380 - }, - "m_fTargetAlpha": { - "type": "float", - "id": 5, - "offset": 212, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1809129834 - }, - "m_fDisabledAlpha": { - "type": "float", - "id": 6, - "offset": 216, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1389987675 - }, - "m_fAlpha": { - "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 482130755 - }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3623628394 - }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2102211316 - }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1846695875 - }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3389835433 - }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2547159940 - }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2587533771 - }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3091503757 - } - } - }, - "1048583992": { - "name": "class CastleMagicAction*", - "bases": [ - "PropertyClass" - ], - "hash": 1048583992, - "properties": {} - }, - "661699589": { - "name": "class UIScaleConfig", - "bases": [ - "PropertyClass" - ], - "hash": 661699589, - "properties": { - "m_entries": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 998597073 - } - } - }, - "1048521512": { - "name": "class SG_GameAction_AddPowerMultiplier*", - "bases": [ - "SG_GameAction", - "PropertyClass" - ], - "hash": 1048521512, - "properties": { - "m_target": { - "type": "enum SG_GameAction::SG_Target", - "id": 0, - "offset": 72, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1166870973, - "enum_options": { - "Target_Ball": 0, - "Target_Self": 1, - "Target_Connections": 2, - "__DEFAULT": "Target_Ball" - } - }, - "m_powerName": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2956499913 - } - } - }, - "1440845434": { - "name": "class ClientCastEffectCinematicAction*", - "bases": [ - "CastEffectCinematicAction", - "BaseEffectCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 1440845434, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_effectRel": { - "type": "enum BaseEffectCinematicAction::kEffectRelative", - "id": 1, - "offset": 80, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2978921287, - "enum_options": { - "kNone": 0, - "kSigil": 1, - "kTarget": 2, - "kSource": 3, - "kActor": 4 - } - }, - "m_namedActor": { - "type": "std::string", - "id": 2, - "offset": 88, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3413532537 - } - } - }, - "1441179207": { - "name": "class SharedPointer", - "bases": [ - "GameEffectTemplate", - "PropertyClass" - ], - "hash": 1441179207, - "properties": { - "m_effectName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2029161513 - }, - "m_effectCategory": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1852673222 - }, - "m_sortOrder": { - "type": "int", - "id": 2, - "offset": 148, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1411218206 - }, - "m_duration": { - "type": "double", - "id": 3, - "offset": 192, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2727932435 - }, - "m_stackingCategories": { - "type": "std::string", - "id": 4, - "offset": 160, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1774497525 - }, - "m_isPersistent": { - "type": "bool", - "id": 5, - "offset": 153, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 923861920 - }, - "m_bIsOnPet": { - "type": "bool", - "id": 6, - "offset": 154, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 522593303 - }, - "m_isPublic": { - "type": "bool", - "id": 7, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1728439822 - }, - "m_visualEffectAddName": { - "type": "std::string", - "id": 8, - "offset": 200, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3382086694 - }, - "m_visualEffectRemoveName": { - "type": "std::string", - "id": 9, - "offset": 232, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1541697323 - }, - "m_onAddFunctorName": { - "type": "std::string", - "id": 10, - "offset": 280, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1561843107 - }, - "m_onRemoveFunctorName": { - "type": "std::string", - "id": 11, - "offset": 312, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2559017864 - }, - "m_stackingRule": { - "type": "enum STACKING_RULE", - "id": 12, - "offset": 144, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 431568889, - "enum_options": { - "STACKING_ALLOWED": 0, - "STACKING_NOSTACK": 1, - "STACKING_REPLACE": 2 - } - }, - "m_spellName": { - "type": "std::string", - "id": 13, - "offset": 360, - "flags": 268435463, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2688485244, - "enum_options": { - "__BASECLASS": "SpellTemplate" - } - }, - "m_numSpells": { - "type": "int", - "id": 14, - "offset": 392, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1269498237 - } - } - }, - "667295280": { - "name": "class SharedPointer", - "bases": [ - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 667295280, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - }, - "m_objectInfo": { - "type": "class CoreObjectInfo*", - "id": 2, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1373700953 - }, - "m_bStartHidden": { - "type": "bool", - "id": 3, - "offset": 128, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1939845615 - } - } - }, - "1050755335": { - "name": "class DOTEffectTemplate*", - "bases": [ - "PulseEffectTemplate", - "GameEffectTemplate", - "PropertyClass" - ], - "hash": 1050755335, - "properties": { - "m_effectName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2029161513 - }, - "m_effectCategory": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1852673222 - }, - "m_sortOrder": { - "type": "int", - "id": 2, - "offset": 148, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1411218206 - }, - "m_duration": { - "type": "double", - "id": 3, - "offset": 192, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2727932435 - }, - "m_stackingCategories": { - "type": "std::string", - "id": 4, - "offset": 160, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1774497525 - }, - "m_isPersistent": { - "type": "bool", - "id": 5, - "offset": 153, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 923861920 - }, - "m_bIsOnPet": { - "type": "bool", - "id": 6, - "offset": 154, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 522593303 - }, - "m_isPublic": { - "type": "bool", - "id": 7, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1728439822 - }, - "m_visualEffectAddName": { - "type": "std::string", - "id": 8, - "offset": 200, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3382086694 - }, - "m_visualEffectRemoveName": { - "type": "std::string", - "id": 9, - "offset": 232, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1541697323 - }, - "m_onAddFunctorName": { - "type": "std::string", - "id": 10, - "offset": 280, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1561843107 - }, - "m_onRemoveFunctorName": { - "type": "std::string", - "id": 11, - "offset": 312, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2559017864 - }, - "m_stackingRule": { - "type": "enum STACKING_RULE", - "id": 12, - "offset": 144, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 431568889, - "enum_options": { - "STACKING_ALLOWED": 0, - "STACKING_NOSTACK": 1, - "STACKING_REPLACE": 2 - } - }, - "m_pulsePeriod": { - "type": "double", - "id": 13, - "offset": 360, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3960618585 - }, - "m_pulseEventName": { - "type": "std::string", - "id": 14, - "offset": 368, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1858926599 - }, - "m_statName": { - "type": "std::string", - "id": 15, - "offset": 408, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1866211576 - }, - "m_statMaxName": { - "type": "std::string", - "id": 16, - "offset": 440, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3164833118 - }, - "m_damage": { - "type": "int", - "id": 17, - "offset": 472, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 351627865 - } - } - }, - "667139644": { - "name": "class CloneActorCinematicAction", - "bases": [ - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 667139644, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - }, - "m_position": { - "type": "class Vector3D", - "id": 2, - "offset": 124, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3697900983 - }, - "m_yawPitchRoll": { - "type": "class Vector3D", - "id": 3, - "offset": 136, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3349460132 - }, - "m_clonePlayer": { - "type": "bool", - "id": 4, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1369917873 - } - } - }, - "1050674175": { - "name": "class SharedPointer", - "bases": [ - "SpellTemplate", - "CoreTemplate", - "PropertyClass" - ], - "hash": 1050674175, - "properties": { - "m_behaviors": { - "type": "class BehaviorTemplate*", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1197808594 - }, - "m_name": { - "type": "std::string", - "id": 1, - "offset": 96, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1717359772 - }, - "m_description": { - "type": "std::string", - "id": 2, - "offset": 168, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1649374815 - }, - "m_advancedDescription": { - "type": "std::string", - "id": 3, - "offset": 200, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3465713013 - }, - "m_displayName": { - "type": "std::string", - "id": 4, - "offset": 136, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2446900370 - }, - "m_spellBase": { - "type": "std::string", - "id": 5, - "offset": 248, - "flags": 268435463, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2688054198, - "enum_options": { - "__BASECLASS": "CinematicTemplate" - } - }, - "m_effects": { - "type": "class SharedPointer", - "id": 6, - "offset": 280, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 370726379 - }, - "m_sMagicSchoolName": { - "type": "std::string", - "id": 7, - "offset": 312, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2035693400 - }, - "m_sTypeName": { - "type": "std::string", - "id": 8, - "offset": 352, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3580785905 - }, - "m_trainingCost": { - "type": "int", - "id": 9, - "offset": 384, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 982588239 - }, - "m_accuracy": { - "type": "int", - "id": 10, - "offset": 388, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1636315493 - }, - "m_baseCost": { - "type": "int", - "id": 11, - "offset": 232, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1475151502 - }, - "m_creditsCost": { - "type": "int", - "id": 12, - "offset": 236, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 715313825 - }, - "m_pvpCurrencyCost": { - "type": "int", - "id": 13, - "offset": 240, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 645595444 - }, - "m_pvpTourneyCurrencyCost": { - "type": "int", - "id": 14, - "offset": 244, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 517874954 - }, - "m_boosterPackIcon": { - "type": "std::string", - "id": 15, - "offset": 496, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3428653697 - }, - "m_validTargetSpells": { - "type": "unsigned int", - "id": 16, - "offset": 392, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2355782967 - }, - "m_PvP": { - "type": "bool", - "id": 17, - "offset": 408, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 269492361 - }, - "m_PvE": { - "type": "bool", - "id": 18, - "offset": 409, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 269492350 - }, - "m_noPvPEnchant": { - "type": "bool", - "id": 19, - "offset": 410, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 661581703 - }, - "m_noPvEEnchant": { - "type": "bool", - "id": 20, - "offset": 411, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 10144220 - }, - "m_battlegroundsOnly": { - "type": "bool", - "id": 21, - "offset": 412, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1244782419 - }, - "m_Treasure": { - "type": "bool", - "id": 22, - "offset": 413, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1749096414 - }, - "m_noDiscard": { - "type": "bool", - "id": 23, - "offset": 414, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 565749226 - }, - "m_leavesPlayWhenCast": { - "type": "bool", - "id": 24, - "offset": 532, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 698216294 - }, - "m_imageIndex": { - "type": "int", - "id": 25, - "offset": 416, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1570500405 - }, - "m_imageName": { - "type": "std::string", - "id": 26, - "offset": 424, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2391520543 - }, - "m_cloaked": { - "type": "bool", - "id": 27, - "offset": 489, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 7349510 - }, - "m_casterInvisible": { - "type": "bool", - "id": 28, - "offset": 490, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 310214650 - }, - "m_adjectives": { - "type": "std::string", - "id": 29, - "offset": 576, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2967855037 - }, - "m_spellSourceType": { - "type": "enum SpellTemplate::kSpellSourceType", - "id": 30, - "offset": 528, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 156272727, - "enum_options": { - "kCaster": 0, - "kPet": 1, - "kShadowCreature": 2, - "kWeapon": 3, - "kEquipment": 4 - } - }, - "m_cloakedName": { - "type": "std::string", - "id": 31, - "offset": 536, - "flags": 268435463, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2846679215, - "enum_options": { - "__BASECLASS": "SpellTemplate" - } - }, - "m_purchaseRequirements": { - "type": "class RequirementList*", - "id": 32, - "offset": 608, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3174641793 - }, - "m_displayRequirements": { - "type": "class RequirementList*", - "id": 33, - "offset": 840, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3646782876 - }, - "m_descriptionTrainer": { - "type": "std::string", - "id": 34, - "offset": 616, - "flags": 8388871, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1756093908 - }, - "m_descriptionCombatHUD": { - "type": "std::string", - "id": 35, - "offset": 648, - "flags": 8388871, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1631478006 - }, - "m_displayIndex": { - "type": "int", - "id": 36, - "offset": 680, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1250551048 - }, - "m_hiddenFromEffectsWindow": { - "type": "bool", - "id": 37, - "offset": 684, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1832736331 - }, - "m_ignoreCharms": { - "type": "bool", - "id": 38, - "offset": 685, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1840075893 - }, - "m_alwaysFizzle": { - "type": "bool", - "id": 39, - "offset": 686, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2030988856 - }, - "m_spellCategory": { - "type": "std::string", - "id": 40, - "offset": 688, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2472376729 - }, - "m_showPolymorphedName": { - "type": "bool", - "id": 41, - "offset": 720, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2097929096 - }, - "m_skipTruncation": { - "type": "bool", - "id": 42, - "offset": 721, - "flags": 263, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1838335249 - }, - "m_maxCopies": { - "type": "unsigned int", - "id": 43, - "offset": 724, - "flags": 263, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 403022326 - }, - "m_levelRestriction": { - "type": "int", - "id": 44, - "offset": 728, - "flags": 263, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 176502472 - }, - "m_delayEnchantment": { - "type": "bool", - "id": 45, - "offset": 732, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 191336919 - }, - "m_delayEnchantmentOrder": { - "type": "enum SpellEffect::kDelayOrder", - "id": 46, - "offset": 736, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2526055263, - "enum_options": { - "SpellEffect::kAnyOrder": 0, - "SpellEffect::kFirst": 1, - "SpellEffect::kSecond": 2 - } - }, - "m_previousSpellName": { - "type": "std::string", - "id": 47, - "offset": 744, - "flags": 268435463, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2903322585, - "enum_options": { - "__BASECLASS": "SpellTemplate" - } - }, - "m_cardFront": { - "type": "std::string", - "id": 48, - "offset": 456, - "flags": 131359, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3557598526 - }, - "m_useGloss": { - "type": "bool", - "id": 49, - "offset": 488, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 668817544 - }, - "m_ignoreDispel": { - "type": "bool", - "id": 50, - "offset": 776, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1881041624 - }, - "m_backRowFriendly": { - "type": "bool", - "id": 51, - "offset": 777, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 501584377 - }, - "m_spellRank": { - "type": "class SharedPointer", - "id": 52, - "offset": 784, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3152361374 - }, - "m_secondarySchoolName": { - "type": "std::string", - "id": 53, - "offset": 800, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1803268236 - }, - "m_spellFusion": { - "type": "unsigned int", - "id": 54, - "offset": 836, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1658928321 - }, - "m_requiredSchoolName": { - "type": "std::string", - "id": 55, - "offset": 848, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3576058981 - }, - "m_gardenSpellType": { - "type": "enum GardenSpellTemplate::GardenSpellType", - "id": 56, - "offset": 880, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3204656351, - "enum_options": { - "GS_SoilPreparation": 0, - "GS_Growing": 1, - "GS_InsectFighting": 2, - "GS_PlantProtection": 3, - "GS_PlantUtility": 4 - } - }, - "m_animationKFM": { - "type": "std::string", - "id": 57, - "offset": 888, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2466280761 - }, - "m_animationName": { - "type": "std::string", - "id": 58, - "offset": 920, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3393414044 - }, - "m_soundEffectName": { - "type": "std::string", - "id": 59, - "offset": 1016, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3235436082 - }, - "m_soilTemplateID": { - "type": "unsigned int", - "id": 60, - "offset": 1048, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2225235405 - }, - "m_providesWater": { - "type": "bool", - "id": 61, - "offset": 1052, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1403713858 - }, - "m_providesSun": { - "type": "bool", - "id": 62, - "offset": 1053, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1942306581 - }, - "m_providesPollination": { - "type": "bool", - "id": 63, - "offset": 1054, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 443775752 - }, - "m_providesMagic": { - "type": "bool", - "id": 64, - "offset": 1055, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1391840608 - }, - "m_providesMusic": { - "type": "bool", - "id": 65, - "offset": 1056, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1392572416 - }, - "m_bugZapLevel": { - "type": "int", - "id": 66, - "offset": 1060, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1811340955 - }, - "m_protectionTemplateID": { - "type": "unsigned int", - "id": 67, - "offset": 1064, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 280411517 - }, - "m_soundEffectGain": { - "type": "float", - "id": 68, - "offset": 1068, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1827685932, - "enum_options": { - "__DEFAULT": "1.0" - } - }, - "m_utilitySpellType": { - "type": "enum GardenSpellTemplate::UtilitySpellType", - "id": 69, - "offset": 1072, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1635978289, - "enum_options": { - "US_None": 0, - "US_Zap": 1, - "US_Revive": 2, - "US_Inspect": 3, - "US_Stasis": 4, - "US_PlowAll": 5, - "US_PlantAll": 6, - "US_HarvestNow": 7 - } - }, - "m_affectedRadius": { - "type": "int", - "id": 70, - "offset": 1076, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 540739476 - }, - "m_yOffset": { - "type": "float", - "id": 71, - "offset": 1080, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1592149751 - }, - "m_energyCost": { - "type": "int", - "id": 72, - "offset": 1084, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1236111677 - }, - "m_gardenSpellImageIndex": { - "type": "int", - "id": 73, - "offset": 1088, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 721561158 - }, - "m_gardenSpellImageName": { - "type": "std::string", - "id": 74, - "offset": 1096, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3146698256 - }, - "m_animationNameSmall": { - "type": "std::string", - "id": 75, - "offset": 952, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2904009973 - }, - "m_animationNameLarge": { - "type": "std::string", - "id": 76, - "offset": 984, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2895295623 - } - } - }, - "666630246": { - "name": "class SharedPointer", - "bases": [ - "ControlButtonState", - "PropertyClass" - ], - "hash": 666630246, - "properties": { - "m_nAnimBeginFrame": { - "type": "int", - "id": 0, - "offset": 72, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1469531165 - }, - "m_nAnimEndFrame": { - "type": "int", - "id": 1, - "offset": 76, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1659451087 - }, - "m_fAnimRate": { - "type": "float", - "id": 2, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 802385934 - }, - "m_bAnimLoop": { - "type": "bool", - "id": 3, - "offset": 84, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1487150228 - }, - "m_bAnimForceFinish": { - "type": "bool", - "id": 4, - "offset": 85, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 943660298 - } - } - }, - "1443448914": { - "name": "class AnimationBehaviorTemplate*", - "bases": [ - "RenderBehaviorTemplate", - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 1443448914, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - }, - "m_assetName": { - "type": "std::string", - "id": 1, - "offset": 120, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513131580 - }, - "m_proxyName": { - "type": "std::string", - "id": 2, - "offset": 152, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3120358366 - }, - "m_height": { - "type": "float", - "id": 3, - "offset": 184, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 602977104 - }, - "m_bStaticObject": { - "type": "bool", - "id": 4, - "offset": 188, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 108091444 - }, - "m_bCastsShadow": { - "type": "bool", - "id": 5, - "offset": 189, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 652868121 - }, - "m_bFadesIn": { - "type": "bool", - "id": 6, - "offset": 190, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 263337711, - "enum_options": { - "__DEFAULT": 1 - } - }, - "m_opacity": { - "type": "float", - "id": 7, - "offset": 192, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 700308464, - "enum_options": { - "__DEFAULT": 1 - } - }, - "m_bFadesOut": { - "type": "bool", - "id": 8, - "offset": 196, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 17988464, - "enum_options": { - "__DEFAULT": 1 - } - }, - "m_bPortalExcluded": { - "type": "bool", - "id": 9, - "offset": 197, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 239086293 - }, - "m_scale": { - "type": "float", - "id": 10, - "offset": 200, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 899693439, - "enum_options": { - "__DEFAULT": 1 - } - }, - "m_bCanBeHiddenByCamera": { - "type": "bool", - "id": 11, - "offset": 204, - "flags": 263, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 185252414 - }, - "m_nLightType": { - "type": "enum RenderBehaviorTemplate::LightingType", - "id": 12, - "offset": 208, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2027385184, - "enum_options": { - "None": 0, - "Char": 1, - "Env": 2 - } - }, - "m_shadowAssetName": { - "type": "std::string", - "id": 13, - "offset": 216, - "flags": 131335, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1844059970 - }, - "m_enableReqs": { - "type": "class SharedPointer", - "id": 14, - "offset": 248, - "flags": 263, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3158020443 - }, - "m_skeletonID": { - "type": "int", - "id": 15, - "offset": 264, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1375865996 - }, - "m_dataLookupAssetName": { - "type": "std::string", - "id": 16, - "offset": 272, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1944770480 - }, - "m_animationAssetName": { - "type": "std::string", - "id": 17, - "offset": 304, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2944957756 - }, - "m_movementScale": { - "type": "float", - "id": 18, - "offset": 336, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 768663914 - }, - "m_idleAnimationName": { - "type": "std::string", - "id": 19, - "offset": 344, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1616739386 - }, - "m_animationEventList": { - "type": "class SharedPointer", - "id": 20, - "offset": 376, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2858101335 - } - } - }, - "666296540": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 666296540, - "properties": {} - }, - "1050735265": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1050735265, - "properties": { - "m_gid": { - "type": "gid", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 267019404 - }, - "m_schoolName": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3385349572 - }, - "m_schoolRank": { - "type": "std::wstring", - "id": 2, - "offset": 112, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3181478700 - }, - "m_schoolLevel": { - "type": "int", - "id": 3, - "offset": 144, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 10373914 - }, - "m_showPVPOption": { - "type": "unsigned int", - "id": 4, - "offset": 148, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2052204093 - }, - "m_petTemplateID": { - "type": "unsigned int", - "id": 5, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 817215071 - } - } - }, - "1442023214": { - "name": "class SharedPointer", - "bases": [ - "PathBehaviorTemplate::Action", - "PropertyClass" - ], - "hash": 1442023214, - "properties": { - "m_nPathID": { - "type": "gid", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 214382368 - }, - "m_nNodeID": { - "type": "int", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 152152635, - "enum_options": { - "__DEFAULT": 4294967295 - } - }, - "m_nPriority": { - "type": "int", - "id": 2, - "offset": 84, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1515251530, - "enum_options": { - "__DEFAULT": 100 - } - }, - "m_nChance": { - "type": "int", - "id": 3, - "offset": 88, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1860748394, - "enum_options": { - "__DEFAULT": 50 - } - }, - "m_nDestinationPathID": { - "type": "gid", - "id": 4, - "offset": 96, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 107013762 - }, - "m_nDestinationNodeID": { - "type": "int", - "id": 5, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 44784029, - "enum_options": { - "__DEFAULT": 4294967295 - } - } - } - }, - "1442272813": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1442272813, - "properties": { - "m_animationPath": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3393486152 - }, - "m_sound": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2307644996 - }, - "m_length": { - "type": "float", - "id": 2, - "offset": 136, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 759698745 - }, - "m_textTags": { - "type": "class SharedPointer", - "id": 3, - "offset": 144, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1768413037 - } - } - }, - "666859125": { - "name": "class GoldAmountTemplate*", - "bases": [ - "WizItemTemplate", - "ItemTemplate", - "GameObjectTemplate", - "CoreTemplate", - "PropertyClass" - ], - "hash": 666859125, - "properties": { - "m_behaviors": { - "type": "class BehaviorTemplate*", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1197808594 - }, - "m_objectName": { - "type": "std::string", - "id": 1, - "offset": 96, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2154940147 - }, - "m_templateID": { - "type": "unsigned int", - "id": 2, - "offset": 128, - "flags": 16777223, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1286746870 - }, - "m_visualID": { - "type": "unsigned int", - "id": 3, - "offset": 132, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1118778894 - }, - "m_adjectiveList": { - "type": "std::string", - "id": 4, - "offset": 248, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 3195213318 - }, - "m_exemptFromAOI": { - "type": "bool", - "id": 5, - "offset": 240, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1457879059 - }, - "m_displayName": { - "type": "std::string", - "id": 6, - "offset": 168, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2446900370 - }, - "m_description": { - "type": "std::string", - "id": 7, - "offset": 136, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1649374815 - }, - "m_nObjectType": { - "type": "enum ObjectType", - "id": 8, - "offset": 200, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2118905880, - "enum_options": { - "OT_UNDEFINED": 0, - "OT_PLAYER": 1, - "OT_NPC": 2, - "OT_PROP": 3, - "OT_OBJECT": 4, - "OT_HOUSE": 5, - "OT_KEY": 6, - "OT_OLD_KEY": 7, - "OT_DEED": 8, - "OT_MAIL": 9, - "OT_RECIPE": 17, - "OT_EQUIP_HEAD": 10, - "OT_EQUIP_CHEST": 11, - "OT_EQUIP_LEGS": 12, - "OT_EQUIP_HANDS": 13, - "OT_EQUIP_FINGER": 14, - "OT_EQUIP_FEET": 15, - "OT_EQUIP_EAR": 16, - "OT_BUILDING_BLOCK": 18, - "OT_BUILDING_BLOCK_SOLID": 19, - "OT_GOLF": 20, - "OT_DOOR": 21, - "OT_PET": 22, - "OT_FABRIC": 23, - "OT_WINDOW": 24, - "OT_ROOF": 25, - "OT_HORSE": 26, - "OT_STRUCTURE": 27, - "OT_HOUSING_TEXTURE": 28, - "OT_PLANT": 29 - } - }, - "m_sIcon": { - "type": "std::string", - "id": 9, - "offset": 208, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306259831 - }, - "m_equipRequirements": { - "type": "class RequirementList*", - "id": 10, - "offset": 280, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2762617226 - }, - "m_purchaseRequirements": { - "type": "class RequirementList*", - "id": 11, - "offset": 288, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3174641793 - }, - "m_equipEffects": { - "type": "class GameEffectInfo*", - "id": 12, - "offset": 296, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 836628351 - }, - "m_baseCost": { - "type": "float", - "id": 13, - "offset": 312, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1565352651 - }, - "m_creditsCost": { - "type": "float", - "id": 14, - "offset": 320, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 805514974 - }, - "m_avatarInfo": { - "type": "class AvatarItemInfoBase*", - "id": 15, - "offset": 328, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2627321299 - }, - "m_avatarFlags": { - "type": "std::string", - "id": 16, - "offset": 336, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2347762759 - }, - "m_itemLimit": { - "type": "int", - "id": 17, - "offset": 316, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1799746856 - }, - "m_holidayFlag": { - "type": "std::string", - "id": 18, - "offset": 352, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2994795359 - }, - "m_itemSetBonusTemplateID": { - "type": "unsigned int", - "id": 19, - "offset": 384, - "flags": 33554439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1316835672 - }, - "m_numPrimaryColors": { - "type": "int", - "id": 20, - "offset": 428, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 981103872 - }, - "m_numSecondaryColors": { - "type": "int", - "id": 21, - "offset": 432, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1310416868 - }, - "m_numPatterns": { - "type": "int", - "id": 22, - "offset": 436, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 953162171 - }, - "m_school": { - "type": "std::string", - "id": 23, - "offset": 392, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2438566051 - }, - "m_arenaPointCost": { - "type": "int", - "id": 24, - "offset": 440, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1819621796 - }, - "m_pvpCurrencyCost": { - "type": "int", - "id": 25, - "offset": 444, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 645595444 - }, - "m_pvpTourneyCurrencyCost": { - "type": "int", - "id": 26, - "offset": 448, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 517874954 - }, - "m_rank": { - "type": "int", - "id": 27, - "offset": 424, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 219803942 - }, - "m_boyIconIndex": { - "type": "int", - "id": 28, - "offset": 452, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 802140453 - }, - "m_girlIconIndex": { - "type": "int", - "id": 29, - "offset": 456, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 832706793 - }, - "m_leashOffsetOverride": { - "type": "class SharedPointer", - "id": 30, - "offset": 464, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1692586788 - }, - "m_rarity": { - "type": "enum RarityType", - "id": 31, - "offset": 460, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2253792108, - "enum_options": { - "RT_COMMON": 0, - "RT_UNCOMMON": 1, - "RT_RARE": 2, - "RT_ULTRARARE": 3, - "RT_EPIC": 4 - } - }, - "m_goldAmount": { - "type": "int", - "id": 32, - "offset": 480, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 754429876 - }, - "m_nif": { - "type": "std::string", - "id": 33, - "offset": 488, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1764743064 - } - } - }, - "1051372145": { - "name": "class SharedPointer", - "bases": [ - "GeomParams", - "PropertyClass" - ], - "hash": 1051372145, - "properties": { - "m_eType": { - "type": "enum ProxyType", - "id": 0, - "offset": 72, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1656534066, - "enum_options": { - "ProxyTypeBox": 0, - "ProxyTypeRay": 1, - "ProxyTypeSphere": 2, - "ProxyTypeCylinder": 3, - "ProxyTypeTube": 4, - "ProxyTypePlane": 5, - "ProxyTypeMesh": 6, - "ProxyTypeInvalid": 7 - } - }, - "m_vNormal": { - "type": "class Vector3D", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3552296097 - }, - "m_fDistance": { - "type": "float", - "id": 2, - "offset": 92, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 194015112 - } - } - }, - "666685277": { - "name": "class SharedPointer", - "bases": [ - "LootInfo", - "LootInfoBase", - "PropertyClass" - ], - "hash": 666685277, - "properties": { - "m_lootType": { - "type": "enum LootInfo::LOOT_TYPE", - "id": 0, - "offset": 72, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1591891442, - "enum_options": { - "LOOT_TYPE_NONE": 0, - "LOOT_TYPE_GOLD": 1, - "LOOT_TYPE_MANA": 2, - "LOOT_TYPE_ITEM": 3, - "LOOT_TYPE_TREASURE_CARD": 4, - "LOOT_TYPE_MAGIC_XP": 5, - "LOOT_TYPE_ADD_SPELL": 6, - "LOOT_TYPE_MAX_HEALTH": 7, - "LOOT_TYPE_MAX_GOLD": 8, - "LOOT_TYPE_MAX_MANA": 9, - "LOOT_TYPE_MAX_POTION": 10, - "LOOT_TYPE_TRAINING_POINTS": 11, - "LOOT_TYPE_RECIPE": 12, - "LOOT_TYPE_CRAFTING_SLOT": 13, - "LOOT_TYPE_REAGENT": 14, - "LOOT_TYPE_PETSNACK": 15, - "LOOT_TYPE_GARDENING_XP": 16, - "LOOT_TYPE_PET_XP": 17, - "LOOT_TYPE_TREASURE_TABLE": 18, - "LOOT_TYPE_ARENA_POINTS": 19, - "LOOT_TYPE_ARENA_BONUS_POINTS": 20, - "LOOT_TYPE_GROUP": 21, - "LOOT_TYPE_FISHING_XP": 22, - "LOOT_TYPE_EVENT_CURRENCY_1": 24, - "LOOT_TYPE_EVENT_CURRENCY_2": 25, - "LOOT_TYPE_PVP_CURRENCY": 26, - "LOOT_TYPE_PVP_CURRENCY_BONUS": 27, - "LOOT_TYPE_PVP_TOURNEY_CURRENCY": 28, - "LOOT_TYPE_PVP_TOURNEY_CURRENCY_BONUS": 29, - "LOOT_TYPE_FURNITURE_ESSENCE": 30 - } - }, - "m_spellName": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 268435487, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2688485244, - "enum_options": { - "__BASECLASS": "SpellTemplate" - } - }, - "m_internalName": { - "type": "std::string", - "id": 2, - "offset": 112, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1924993817 - }, - "m_spellID": { - "type": "unsigned int", - "id": 3, - "offset": 144, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1697483258 - } - } - }, - "1443896326": { - "name": "class PathMovementBehaviorTemplate", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 1443896326, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - }, - "m_movementSpeed": { - "type": "float", - "id": 1, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 769135219 - }, - "m_movementScale": { - "type": "float", - "id": 2, - "offset": 124, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 768663914 - } - } - }, - "1053087315": { - "name": "class HousingSigilManager", - "bases": [ - "PropertyClass" - ], - "hash": 1053087315, - "properties": {} - }, - "1443814052": { - "name": "class SharedPointer", - "bases": [ - "ObstacleCourseObstacleBehaviorTemplate", - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 1443814052, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - }, - "m_rate": { - "type": "float", - "id": 1, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 310005283 - }, - "m_penaltyTime": { - "type": "float", - "id": 2, - "offset": 124, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2083389507 - }, - "m_totalObstacleSize": { - "type": "class Vector3D", - "id": 3, - "offset": 128, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2379878414 - }, - "m_bounds": { - "type": "class Vector3D", - "id": 4, - "offset": 152, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1948083181 - }, - "m_orientToPath": { - "type": "bool", - "id": 5, - "offset": 176, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 655036148 - }, - "m_heightUp": { - "type": "float", - "id": 6, - "offset": 140, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2208713013 - }, - "m_heightDown": { - "type": "float", - "id": 7, - "offset": 144, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 655333896 - } - } - }, - "666896143": { - "name": "class BoosterPackLootTypeMaxes", - "bases": [ - "PropertyClass" - ], - "hash": 666896143, - "properties": { - "m_lootType": { - "type": "enum LootInfo::LOOT_TYPE", - "id": 0, - "offset": 72, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1591891442, - "enum_options": { - "LOOT_TYPE_NONE": 0, - "LOOT_TYPE_GOLD": 1, - "LOOT_TYPE_MANA": 2, - "LOOT_TYPE_ITEM": 3, - "LOOT_TYPE_TREASURE_CARD": 4, - "LOOT_TYPE_MAGIC_XP": 5, - "LOOT_TYPE_ADD_SPELL": 6, - "LOOT_TYPE_MAX_HEALTH": 7, - "LOOT_TYPE_MAX_GOLD": 8, - "LOOT_TYPE_MAX_MANA": 9, - "LOOT_TYPE_MAX_POTION": 10, - "LOOT_TYPE_TRAINING_POINTS": 11, - "LOOT_TYPE_RECIPE": 12, - "LOOT_TYPE_CRAFTING_SLOT": 13, - "LOOT_TYPE_REAGENT": 14, - "LOOT_TYPE_PETSNACK": 15, - "LOOT_TYPE_GARDENING_XP": 16, - "LOOT_TYPE_PET_XP": 17, - "LOOT_TYPE_TREASURE_TABLE": 18, - "LOOT_TYPE_ARENA_POINTS": 19, - "LOOT_TYPE_ARENA_BONUS_POINTS": 20, - "LOOT_TYPE_GROUP": 21, - "LOOT_TYPE_FISHING_XP": 22, - "LOOT_TYPE_JEWEL": 23, - "LOOT_TYPE_EMOTE": 23, - "LOOT_TYPE_TELEPORT_EFFECT": 23, - "LOOT_TYPE_PVP_CURRENCY": 26, - "LOOT_TYPE_PVP_CURRENCY_BONUS": 27, - "LOOT_TYPE_PVP_TOURNEY_CURRENCY": 28, - "LOOT_TYPE_PVP_TOURNEY_CURRENCY_BONUS": 29, - "LOOT_TYPE_FURNITURE_ESSENCE": 30 - } - }, - "m_max": { - "type": "int", - "id": 1, - "offset": 76, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 267042112 - } - } - }, - "1051982574": { - "name": "class SharedPointer", - "bases": [ - "WizItemTemplate", - "ItemTemplate", - "GameObjectTemplate", - "CoreTemplate", - "PropertyClass" - ], - "hash": 1051982574, - "properties": { - "m_behaviors": { - "type": "class BehaviorTemplate*", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1197808594 - }, - "m_objectName": { - "type": "std::string", - "id": 1, - "offset": 96, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2154940147 - }, - "m_templateID": { - "type": "unsigned int", - "id": 2, - "offset": 128, - "flags": 16777223, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1286746870 - }, - "m_visualID": { - "type": "unsigned int", - "id": 3, - "offset": 132, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1118778894 - }, - "m_adjectiveList": { - "type": "std::string", - "id": 4, - "offset": 248, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 3195213318 - }, - "m_exemptFromAOI": { - "type": "bool", - "id": 5, - "offset": 240, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1457879059 - }, - "m_displayName": { - "type": "std::string", - "id": 6, - "offset": 168, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2446900370 - }, - "m_description": { - "type": "std::string", - "id": 7, - "offset": 136, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1649374815 - }, - "m_nObjectType": { - "type": "enum ObjectType", - "id": 8, - "offset": 200, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2118905880, - "enum_options": { - "OT_UNDEFINED": 0, - "OT_PLAYER": 1, - "OT_NPC": 2, - "OT_PROP": 3, - "OT_OBJECT": 4, - "OT_HOUSE": 5, - "OT_KEY": 6, - "OT_OLD_KEY": 7, - "OT_DEED": 8, - "OT_MAIL": 9, - "OT_RECIPE": 17, - "OT_EQUIP_HEAD": 10, - "OT_EQUIP_CHEST": 11, - "OT_EQUIP_LEGS": 12, - "OT_EQUIP_HANDS": 13, - "OT_EQUIP_FINGER": 14, - "OT_EQUIP_FEET": 15, - "OT_EQUIP_EAR": 16, - "OT_BUILDING_BLOCK": 18, - "OT_BUILDING_BLOCK_SOLID": 19, - "OT_GOLF": 20, - "OT_DOOR": 21, - "OT_PET": 22, - "OT_FABRIC": 23, - "OT_WINDOW": 24, - "OT_ROOF": 25, - "OT_HORSE": 26, - "OT_STRUCTURE": 27, - "OT_HOUSING_TEXTURE": 28, - "OT_PLANT": 29 - } - }, - "m_sIcon": { - "type": "std::string", - "id": 9, - "offset": 208, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306259831 - }, - "m_equipRequirements": { - "type": "class RequirementList*", - "id": 10, - "offset": 280, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2762617226 - }, - "m_purchaseRequirements": { - "type": "class RequirementList*", - "id": 11, - "offset": 288, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3174641793 - }, - "m_equipEffects": { - "type": "class GameEffectInfo*", - "id": 12, - "offset": 296, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 836628351 - }, - "m_baseCost": { - "type": "float", - "id": 13, - "offset": 312, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1565352651 - }, - "m_creditsCost": { - "type": "float", - "id": 14, - "offset": 320, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 805514974 - }, - "m_avatarInfo": { - "type": "class AvatarItemInfoBase*", - "id": 15, - "offset": 328, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2627321299 - }, - "m_avatarFlags": { - "type": "std::string", - "id": 16, - "offset": 336, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2347762759 - }, - "m_itemLimit": { - "type": "int", - "id": 17, - "offset": 316, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1799746856 - }, - "m_holidayFlag": { - "type": "std::string", - "id": 18, - "offset": 352, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2994795359 - }, - "m_itemSetBonusTemplateID": { - "type": "unsigned int", - "id": 19, - "offset": 384, - "flags": 33554439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1316835672 - }, - "m_numPrimaryColors": { - "type": "int", - "id": 20, - "offset": 428, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 981103872 - }, - "m_numSecondaryColors": { - "type": "int", - "id": 21, - "offset": 432, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1310416868 - }, - "m_numPatterns": { - "type": "int", - "id": 22, - "offset": 436, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 953162171 - }, - "m_school": { - "type": "std::string", - "id": 23, - "offset": 392, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2438566051 - }, - "m_arenaPointCost": { - "type": "int", - "id": 24, - "offset": 440, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1819621796 - }, - "m_pvpCurrencyCost": { - "type": "int", - "id": 25, - "offset": 444, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 645595444 - }, - "m_pvpTourneyCurrencyCost": { - "type": "int", - "id": 26, - "offset": 448, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 517874954 - }, - "m_rank": { - "type": "int", - "id": 27, - "offset": 424, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 219803942 - }, - "m_boyIconIndex": { - "type": "int", - "id": 28, - "offset": 452, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 802140453 - }, - "m_girlIconIndex": { - "type": "int", - "id": 29, - "offset": 456, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 832706793 - }, - "m_leashOffsetOverride": { - "type": "class SharedPointer", - "id": 30, - "offset": 464, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1692586788 - }, - "m_rarity": { - "type": "enum RarityType", - "id": 31, - "offset": 460, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2253792108, - "enum_options": { - "RT_COMMON": 0, - "RT_UNCOMMON": 1, - "RT_RARE": 2, - "RT_ULTRARARE": 3, - "RT_EPIC": 4 - } - }, - "m_iconIndex": { - "type": "int", - "id": 32, - "offset": 480, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1053730811 - }, - "m_imageName": { - "type": "std::string", - "id": 33, - "offset": 488, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2391520543 - } - } - }, - "1051842193": { - "name": "class FriendSymbolWindow", - "bases": [ - "Window", - "PropertyClass" - ], - "hash": 1051842193, - "properties": { - "m_sName": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306437263 - }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621225959 - }, - "m_Style": { - "type": "unsigned int", - "id": 2, - "offset": 152, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "SCALE_CHILDREN": 2, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "FOCUS_LOCKED": 64, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152 - } - }, - "m_Flags": { - "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } - }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3105139380 - }, - "m_fTargetAlpha": { - "type": "float", - "id": 5, - "offset": 212, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1809129834 - }, - "m_fDisabledAlpha": { - "type": "float", - "id": 6, - "offset": 216, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1389987675 - }, - "m_fAlpha": { - "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 482130755 - }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3623628394 - }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2102211316 - }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1846695875 - }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3389835433 - }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2547159940 - }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2587533771 - }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3091503757 - } - } - }, - "667152448": { - "name": "class ScaleActorCinematicAction", - "bases": [ - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 667152448, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - }, - "m_scaleDuration": { - "type": "float", - "id": 2, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1764097637 - }, - "m_scaleTarget": { - "type": "float", - "id": 3, - "offset": 124, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1502791366 - } - } - }, - "1445136631": { - "name": "class GraphicalArenaPoints", - "bases": [ - "GraphicalSpell", - "Spell", - "PropertyClass" - ], - "hash": 1445136631, - "properties": { - "m_templateID": { - "type": "unsigned int", - "id": 0, - "offset": 128, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1286746870 - }, - "m_enchantment": { - "type": "unsigned int", - "id": 1, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2217886818 - }, - "m_pipCost": { - "type": "class SharedPointer", - "id": 2, - "offset": 176, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3605704820 - }, - "m_regularAdjust": { - "type": "int", - "id": 3, - "offset": 192, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1420453335 - }, - "m_magicSchoolID": { - "type": "unsigned int", - "id": 4, - "offset": 136, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 893146499 - }, - "m_accuracy": { - "type": "unsigned char", - "id": 5, - "offset": 132, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2273914939 - }, - "m_treasureCard": { - "type": "bool", - "id": 6, - "offset": 197, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1764879128 - }, - "m_battleCard": { - "type": "bool", - "id": 7, - "offset": 198, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1332843753 - }, - "m_itemCard": { - "type": "bool", - "id": 8, - "offset": 199, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1683654300 - }, - "m_sideBoard": { - "type": "bool", - "id": 9, - "offset": 200, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1897838368 - }, - "m_spellID": { - "type": "unsigned int", - "id": 10, - "offset": 204, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1697483258 - }, - "m_leavesPlayWhenCastOverride": { - "type": "bool", - "id": 11, - "offset": 216, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 874407398 - }, - "m_cloaked": { - "type": "bool", - "id": 12, - "offset": 196, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 7349510 - }, - "m_enchantmentSpellIsItemCard": { - "type": "bool", - "id": 13, - "offset": 76, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 531590701 - }, - "m_premutationSpellID": { - "type": "unsigned int", - "id": 14, - "offset": 112, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1530256370 - }, - "m_enchantedThisCombat": { - "type": "bool", - "id": 15, - "offset": 77, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1895738923 - }, - "m_paramOverrides": { - "type": "class SharedPointer", - "id": 16, - "offset": 224, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2061635599 - }, - "m_subEffectMeta": { - "type": "class SharedPointer", - "id": 17, - "offset": 240, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1944101106 - }, - "m_delayEnchantment": { - "type": "bool", - "id": 18, - "offset": 257, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 191336919 - }, - "m_PvE": { - "type": "bool", - "id": 19, - "offset": 264, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 269492350 - }, - "m_delayEnchantmentOrder": { - "type": "enum SpellEffect::kDelayOrder", - "id": 20, - "offset": 72, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2526055263, - "enum_options": { - "SpellEffect::kAnyOrder": 0, - "SpellEffect::kFirst": 1, - "SpellEffect::kSecond": 2 - } - }, - "m_roundAddedTC": { - "type": "int", - "id": 21, - "offset": 260, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 112365451 - }, - "m_secondarySchoolID": { - "type": "unsigned int", - "id": 22, - "offset": 304, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2081206026 - } - } - }, - "1052737293": { - "name": "class RecipeTemplate", - "bases": [ - "CoreTemplate", - "PropertyClass" - ], - "hash": 1052737293, - "properties": { - "m_behaviors": { - "type": "class BehaviorTemplate*", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1197808594 - }, - "m_recipeName": { - "type": "std::string", - "id": 1, - "offset": 136, - "flags": 134217735, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3311832788 - }, - "m_ingredients": { - "type": "class Ingredient*", - "id": 2, - "offset": 272, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1061809494 - }, - "m_displayKey": { - "type": "std::string", - "id": 3, - "offset": 240, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3023276954 - }, - "m_itemID": { - "type": "gid", - "id": 4, - "offset": 96, - "flags": 33554439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 569545460 - }, - "m_spellName": { - "type": "std::string", - "id": 5, - "offset": 104, - "flags": 268435463, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2688485244, - "enum_options": { - "__BASECLASS": "SpellTemplate" - } - }, - "m_adjectives": { - "type": "std::string", - "id": 6, - "offset": 288, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2967855037 - }, - "m_cookTime": { - "type": "int", - "id": 7, - "offset": 172, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1895782037 - }, - "m_goldCost": { - "type": "int", - "id": 8, - "offset": 176, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 444550297 - }, - "m_crownsCost": { - "type": "int", - "id": 9, - "offset": 180, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1592212719 - }, - "m_arenaPointCost": { - "type": "int", - "id": 10, - "offset": 184, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1819621796 - }, - "m_pvpCurrencyCost": { - "type": "int", - "id": 11, - "offset": 188, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 645595444 - }, - "m_pvpTourneyCurrencyCost": { - "type": "int", - "id": 12, - "offset": 192, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 517874954 - }, - "m_school": { - "type": "std::string", - "id": 13, - "offset": 208, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2438566051 - }, - "m_purchaseRequirements": { - "type": "class RequirementList*", - "id": 14, - "offset": 200, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3174641793 - }, - "m_holidayFlag": { - "type": "std::string", - "id": 15, - "offset": 320, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2994795359 - }, - "m_itemLootTable": { - "type": "std::string", - "id": 16, - "offset": 352, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2176436048 - }, - "m_alternateDescription": { - "type": "std::string", - "id": 17, - "offset": 384, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2784283583 - }, - "m_displayRequirements": { - "type": "class RequirementList*", - "id": 18, - "offset": 416, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3646782876 - } - } - }, - "1444430413": { - "name": "class SharedPointer", - "bases": [ - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 1444430413, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - } - } - }, - "1052552006": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1052552006, - "properties": { - "m_visibility": { - "type": "unsigned char", - "id": 0, - "offset": 72, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2550959800 - }, - "m_canUpgrade": { - "type": "int", - "id": 1, - "offset": 88, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 17860820 - } - } - }, - "1444338581": { - "name": "enum TimerControlCinematicAction::kControlOperation", - "bases": [], - "hash": 1444338581, - "properties": {} - }, - "668755451": { - "name": "class GamebryoClientDerbyTerrainEffect*", - "bases": [ - "ClientDerbyTerrainEffect", - "DerbyTerrainEffect", - "DerbyEffect", - "PropertyClass" - ], - "hash": 668755451, - "properties": { - "m_buffType": { - "type": "enum DerbyTalentBuffType", - "id": 0, - "offset": 92, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1149251982, - "enum_options": { - "Buff": 0, - "Debuff": 1, - "Neither": 2 - } - }, - "m_kTarget": { - "type": "enum DerbyTargetType", - "id": 1, - "offset": 96, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1807803351, - "enum_options": { - "kTargetInFront": 0, - "kTargetBehind": 1, - "kTargetFirst": 2, - "kTargetSelf": 3, - "kTargetAll": 4, - "kTargetLast": 5 - } - }, - "m_nDuration": { - "type": "int", - "id": 2, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1110167982 - }, - "m_effectID": { - "type": "unsigned int", - "id": 3, - "offset": 88, - "flags": 24, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2347630439 - }, - "m_imageFilename": { - "type": "std::string", - "id": 4, - "offset": 112, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2813328063 - }, - "m_iconIndex": { - "type": "unsigned int", - "id": 5, - "offset": 144, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1265133262 - }, - "m_soundOnActivate": { - "type": "std::string", - "id": 6, - "offset": 152, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1956929714 - }, - "m_soundOnTarget": { - "type": "std::string", - "id": 7, - "offset": 184, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3444214056 - }, - "m_targetParticleEffect": { - "type": "std::string", - "id": 8, - "offset": 216, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3048234723 - }, - "m_overheadMessage": { - "type": "std::string", - "id": 9, - "offset": 248, - "flags": 8388639, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1701018190 - }, - "m_requirements": { - "type": "class RequirementList", - "id": 10, - "offset": 280, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2840988582 - }, - "m_terrainType": { - "type": "enum PetDerbyTrackTerrain", - "id": 11, - "offset": 376, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2688629581, - "enum_options": { - "Cobblestone": 0, - "Water": 1, - "Grass": 2, - "Clay": 3, - "Dirt": 4, - "Mud": 5 - } - }, - "m_fEffectReapplyTime": { - "type": "float", - "id": 12, - "offset": 380, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1483497206 - }, - "m_effectsToApply": { - "type": "class SharedPointer", - "id": 13, - "offset": 384, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2042624288 - }, - "m_permanentEffects": { - "type": "class SharedPointer", - "id": 14, - "offset": 400, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2129171809 - } - } - }, - "667937839": { - "name": "class MaxPotionLootInfo*", - "bases": [ - "LootInfo", - "LootInfoBase", - "PropertyClass" - ], - "hash": 667937839, - "properties": { - "m_lootType": { - "type": "enum LootInfo::LOOT_TYPE", - "id": 0, - "offset": 72, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1591891442, - "enum_options": { - "LOOT_TYPE_NONE": 0, - "LOOT_TYPE_GOLD": 1, - "LOOT_TYPE_MANA": 2, - "LOOT_TYPE_ITEM": 3, - "LOOT_TYPE_TREASURE_CARD": 4, - "LOOT_TYPE_MAGIC_XP": 5, - "LOOT_TYPE_ADD_SPELL": 6, - "LOOT_TYPE_MAX_HEALTH": 7, - "LOOT_TYPE_MAX_GOLD": 8, - "LOOT_TYPE_MAX_MANA": 9, - "LOOT_TYPE_MAX_POTION": 10, - "LOOT_TYPE_TRAINING_POINTS": 11, - "LOOT_TYPE_RECIPE": 12, - "LOOT_TYPE_CRAFTING_SLOT": 13, - "LOOT_TYPE_REAGENT": 14, - "LOOT_TYPE_PETSNACK": 15, - "LOOT_TYPE_GARDENING_XP": 16, - "LOOT_TYPE_PET_XP": 17, - "LOOT_TYPE_TREASURE_TABLE": 18, - "LOOT_TYPE_ARENA_POINTS": 19, - "LOOT_TYPE_ARENA_BONUS_POINTS": 20, - "LOOT_TYPE_GROUP": 21, - "LOOT_TYPE_FISHING_XP": 22, - "LOOT_TYPE_EVENT_CURRENCY_1": 24, - "LOOT_TYPE_EVENT_CURRENCY_2": 25, - "LOOT_TYPE_PVP_CURRENCY": 26, - "LOOT_TYPE_PVP_CURRENCY_BONUS": 27, - "LOOT_TYPE_PVP_TOURNEY_CURRENCY": 28, - "LOOT_TYPE_PVP_TOURNEY_CURRENCY_BONUS": 29, - "LOOT_TYPE_FURNITURE_ESSENCE": 30 - } - }, - "m_maxPotionToAdd": { - "type": "int", - "id": 1, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1268091461 - } - } - }, - "667836095": { - "name": "class ClientRemoveInterceptCinematicAction", - "bases": [ - "RemoveInterceptCinematicAction", - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 667836095, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - } - } - }, - "1052737453": { - "name": "class RecipeTemplate*", - "bases": [ - "CoreTemplate", - "PropertyClass" - ], - "hash": 1052737453, - "properties": { - "m_behaviors": { - "type": "class BehaviorTemplate*", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1197808594 - }, - "m_recipeName": { - "type": "std::string", - "id": 1, - "offset": 136, - "flags": 134217735, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3311832788 - }, - "m_ingredients": { - "type": "class Ingredient*", - "id": 2, - "offset": 272, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1061809494 - }, - "m_displayKey": { - "type": "std::string", - "id": 3, - "offset": 240, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3023276954 - }, - "m_itemID": { - "type": "gid", - "id": 4, - "offset": 96, - "flags": 33554439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 569545460 - }, - "m_spellName": { - "type": "std::string", - "id": 5, - "offset": 104, - "flags": 268435463, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2688485244, - "enum_options": { - "__BASECLASS": "SpellTemplate" - } - }, - "m_adjectives": { - "type": "std::string", - "id": 6, - "offset": 288, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2967855037 - }, - "m_cookTime": { - "type": "int", - "id": 7, - "offset": 172, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1895782037 - }, - "m_goldCost": { - "type": "int", - "id": 8, - "offset": 176, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 444550297 - }, - "m_crownsCost": { - "type": "int", - "id": 9, - "offset": 180, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1592212719 - }, - "m_arenaPointCost": { - "type": "int", - "id": 10, - "offset": 184, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1819621796 - }, - "m_pvpCurrencyCost": { - "type": "int", - "id": 11, - "offset": 188, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 645595444 - }, - "m_pvpTourneyCurrencyCost": { - "type": "int", - "id": 12, - "offset": 192, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 517874954 - }, - "m_school": { - "type": "std::string", - "id": 13, - "offset": 208, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2438566051 - }, - "m_purchaseRequirements": { - "type": "class RequirementList*", - "id": 14, - "offset": 200, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3174641793 - }, - "m_holidayFlag": { - "type": "std::string", - "id": 15, - "offset": 320, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2994795359 - }, - "m_itemLootTable": { - "type": "std::string", - "id": 16, - "offset": 352, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2176436048 - }, - "m_alternateDescription": { - "type": "std::string", - "id": 17, - "offset": 384, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2784283583 - }, - "m_displayRequirements": { - "type": "class RequirementList*", - "id": 18, - "offset": 416, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3646782876 - } - } - }, - "1445136607": { - "name": "class GraphicalArenaPoints*", - "bases": [ - "GraphicalSpell", - "Spell", - "PropertyClass" - ], - "hash": 1445136607, - "properties": { - "m_templateID": { - "type": "unsigned int", - "id": 0, - "offset": 128, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1286746870 - }, - "m_enchantment": { - "type": "unsigned int", - "id": 1, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2217886818 - }, - "m_pipCost": { - "type": "class SharedPointer", - "id": 2, - "offset": 176, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3605704820 - }, - "m_regularAdjust": { - "type": "int", - "id": 3, - "offset": 192, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1420453335 - }, - "m_magicSchoolID": { - "type": "unsigned int", - "id": 4, - "offset": 136, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 893146499 - }, - "m_accuracy": { - "type": "unsigned char", - "id": 5, - "offset": 132, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2273914939 - }, - "m_treasureCard": { - "type": "bool", - "id": 6, - "offset": 197, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1764879128 - }, - "m_battleCard": { - "type": "bool", - "id": 7, - "offset": 198, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1332843753 - }, - "m_itemCard": { - "type": "bool", - "id": 8, - "offset": 199, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1683654300 - }, - "m_sideBoard": { - "type": "bool", - "id": 9, - "offset": 200, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1897838368 - }, - "m_spellID": { - "type": "unsigned int", - "id": 10, - "offset": 204, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1697483258 - }, - "m_leavesPlayWhenCastOverride": { - "type": "bool", - "id": 11, - "offset": 216, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 874407398 - }, - "m_cloaked": { - "type": "bool", - "id": 12, - "offset": 196, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 7349510 - }, - "m_enchantmentSpellIsItemCard": { - "type": "bool", - "id": 13, - "offset": 76, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 531590701 - }, - "m_premutationSpellID": { - "type": "unsigned int", - "id": 14, - "offset": 112, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1530256370 - }, - "m_enchantedThisCombat": { - "type": "bool", - "id": 15, - "offset": 77, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1895738923 - }, - "m_paramOverrides": { - "type": "class SharedPointer", - "id": 16, - "offset": 224, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2061635599 - }, - "m_subEffectMeta": { - "type": "class SharedPointer", - "id": 17, - "offset": 240, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1944101106 - }, - "m_delayEnchantment": { - "type": "bool", - "id": 18, - "offset": 257, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 191336919 - }, - "m_PvE": { - "type": "bool", - "id": 19, - "offset": 264, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 269492350 - }, - "m_delayEnchantmentOrder": { - "type": "enum SpellEffect::kDelayOrder", - "id": 20, - "offset": 72, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2526055263, - "enum_options": { - "SpellEffect::kAnyOrder": 0, - "SpellEffect::kFirst": 1, - "SpellEffect::kSecond": 2 - } - }, - "m_roundAddedTC": { - "type": "int", - "id": 21, - "offset": 260, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 112365451 - }, - "m_secondarySchoolID": { - "type": "unsigned int", - "id": 22, - "offset": 304, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2081206026 - } - } - }, - "668058700": { - "name": "class SharedPointer", - "bases": [ - "AggroBehavior", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 668058700, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - } - } - }, - "1053587634": { - "name": "class DyeShopWindow::DyeShopItem", - "bases": [ - "InventoryPageWindow::InventoryItem", - "ControlCheckBox", - "ControlButton", - "Window", - "PropertyClass" - ], - "hash": 1053587634, - "properties": { - "m_sName": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306437263 - }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621225959 - }, - "m_Style": { - "type": "unsigned int", - "id": 2, - "offset": 152, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152, - "EFFECT_SCALE": 67108864, - "LOCK_ICON_SIZE": 33554432, - "LEFT_TEXT": 536870912, - "NO_FIT_TEXT": 1073741824, - "CHECKBOX_TEXTOVERIMAGE": 16777216 - } - }, - "m_Flags": { - "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } - }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3105139380 - }, - "m_fTargetAlpha": { - "type": "float", - "id": 5, - "offset": 212, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1809129834 - }, - "m_fDisabledAlpha": { - "type": "float", - "id": 6, - "offset": 216, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1389987675 - }, - "m_fAlpha": { - "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 482130755 - }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3623628394 - }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2102211316 - }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1846695875 - }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3389835433 - }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2547159940 - }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2587533771 - }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3091503757 - }, - "m_bToggle": { - "type": "bool", - "id": 16, - "offset": 608, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2071810903 - }, - "m_bButtonDown": { - "type": "bool", - "id": 17, - "offset": 609, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 840041705 - }, - "m_sLabel": { - "type": "std::wstring", - "id": 18, - "offset": 616, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2207009163 - }, - "m_labelOffset": { - "type": "class Rect", - "id": 19, - "offset": 832, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1990646723 - }, - "m_pButton": { - "type": "class SharedPointer", - "id": 20, - "offset": 656, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1543855875 - }, - "m_HotKey": { - "type": "unsigned int", - "id": 21, - "offset": 672, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1631553409 - }, - "m_Color": { - "type": "class Color", - "id": 22, - "offset": 676, - "flags": 262279, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1753714077 - }, - "m_bCursorOver": { - "type": "bool", - "id": 23, - "offset": 689, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 283981103 - }, - "m_bAbortWhenCursorNotOver": { - "type": "bool", - "id": 24, - "offset": 706, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 325405258 - }, - "m_bHotKeyDown": { - "type": "bool", - "id": 25, - "offset": 680, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 616989185 - }, - "m_fTime": { - "type": "float", - "id": 26, - "offset": 684, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 883746156 - }, - "m_bGreyed": { - "type": "bool", - "id": 27, - "offset": 688, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1566556053 - }, - "m_fMaxScale": { - "type": "float", - "id": 28, - "offset": 692, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2070186635 - }, - "m_fScaleSpeed": { - "type": "float", - "id": 29, - "offset": 696, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1457135702 - }, - "m_bUseDropShadow": { - "type": "bool", - "id": 30, - "offset": 704, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 93063037 - }, - "m_bUseOutline": { - "type": "bool", - "id": 31, - "offset": 705, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 744292994 - }, - "m_pGreyedState": { - "type": "class SharedPointer", - "id": 32, - "offset": 768, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2703352263 - }, - "m_pNormalState": { - "type": "class SharedPointer", - "id": 33, - "offset": 752, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1887909808 - }, - "m_pHighlightedState": { - "type": "class SharedPointer", - "id": 34, - "offset": 784, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2200177608 - }, - "m_pSelectedState": { - "type": "class SharedPointer", - "id": 35, - "offset": 800, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2266776432 - }, - "m_pDepressedState": { - "type": "class SharedPointer", - "id": 36, - "offset": 816, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1878185798 - }, - "m_nGroupID": { - "type": "int", - "id": 37, - "offset": 880, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 403966850 - }, - "m_bChecked": { - "type": "bool", - "id": 38, - "offset": 884, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 958955100 - }, - "m_pCheckedState": { - "type": "class SharedPointer", - "id": 39, - "offset": 888, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1210539694 - }, - "m_pCheckedGreyedState": { - "type": "class SharedPointer", - "id": 40, - "offset": 904, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2702030126 - }, - "m_pCheckedHighlightedState": { - "type": "class SharedPointer", - "id": 41, - "offset": 920, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1320097679 - }, - "m_pCheckedDepressedState": { - "type": "class SharedPointer", - "id": 42, - "offset": 936, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1609188685 - }, - "m_pEquipNormalState": { - "type": "class SharedPointer", - "id": 43, - "offset": 976, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1322058516 - }, - "m_pEquipPressState": { - "type": "class SharedPointer", - "id": 44, - "offset": 992, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3019605144 - }, - "m_pEquipHighlightState": { - "type": "class SharedPointer", - "id": 45, - "offset": 1008, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2559056739 - }, - "m_pEquipCheckState": { - "type": "class SharedPointer", - "id": 46, - "offset": 1024, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2420681417 - }, - "m_pEquipCheckPressState": { - "type": "class SharedPointer", - "id": 47, - "offset": 1040, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2063281462 - }, - "m_pEquipCheckHighlightState": { - "type": "class SharedPointer", - "id": 48, - "offset": 1056, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2990990081 - } - } - }, - "1445383290": { - "name": "class TeleportToNodeClient*", - "bases": [ - "TeleportToNode", - "PathBehaviorTemplate::Action", - "PropertyClass" - ], - "hash": 1445383290, - "properties": { - "m_nPathID": { - "type": "gid", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 214382368 - }, - "m_nNodeID": { - "type": "int", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 152152635, - "enum_options": { - "__DEFAULT": 4294967295 - } - }, - "m_nPriority": { - "type": "int", - "id": 2, - "offset": 84, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1515251530, - "enum_options": { - "__DEFAULT": 100 - } - }, - "m_nChance": { - "type": "int", - "id": 3, - "offset": 88, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1860748394, - "enum_options": { - "__DEFAULT": 50 - } - }, - "m_nDestinationNodeID": { - "type": "int", - "id": 4, - "offset": 96, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 44784029 - }, - "m_bContinuePathing": { - "type": "bool", - "id": 5, - "offset": 100, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2053386917 - } - } - }, - "667941777": { - "name": "struct std::pair", - "bases": [], - "hash": 667941777, - "properties": {} - }, - "1445383250": { - "name": "class TeleportToNodeClient", - "bases": [ - "TeleportToNode", - "PathBehaviorTemplate::Action", - "PropertyClass" - ], - "hash": 1445383250, - "properties": { - "m_nPathID": { - "type": "gid", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 214382368 - }, - "m_nNodeID": { - "type": "int", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 152152635, - "enum_options": { - "__DEFAULT": 4294967295 - } - }, - "m_nPriority": { - "type": "int", - "id": 2, - "offset": 84, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1515251530, - "enum_options": { - "__DEFAULT": 100 - } - }, - "m_nChance": { - "type": "int", - "id": 3, - "offset": 88, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1860748394, - "enum_options": { - "__DEFAULT": 50 - } - }, - "m_nDestinationNodeID": { - "type": "int", - "id": 4, - "offset": 96, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 44784029 - }, - "m_bContinuePathing": { - "type": "bool", - "id": 5, - "offset": 100, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2053386917 - } - } - }, - "1445192435": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1445192435, - "properties": { - "m_blobDefinitionList": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2267613747 - } - } - }, - "1056749377": { - "name": "class SG_GameInteraction", - "bases": [ - "PropertyClass" - ], - "hash": 1056749377, - "properties": { - "m_interactorOneName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3615982777 - }, - "m_interactorTwoName": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1847465777 - }, - "m_eventsRaisedOnOne": { - "type": "std::string", - "id": 2, - "offset": 136, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2412613351 - } - } - }, - "668399039": { - "name": "class SharedPointer", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 668399039, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - }, - "m_radius": { - "type": "float", - "id": 1, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 989410271 - }, - "m_angle": { - "type": "float", - "id": 2, - "offset": 124, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 878748702 - }, - "m_leashType": { - "type": "enum LeashType", - "id": 3, - "offset": 128, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2170708051, - "enum_options": { - "LLT_Rigid": 0, - "LLT_Elastic": 1 - } - }, - "m_alwaysDisplay": { - "type": "bool", - "id": 4, - "offset": 132, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2071781402 - }, - "m_despawnOnUnleash": { - "type": "bool", - "id": 5, - "offset": 133, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 428306962 - } - } - }, - "1055998215": { - "name": "class DOTEffectTemplate", - "bases": [ - "PulseEffectTemplate", - "GameEffectTemplate", - "PropertyClass" - ], - "hash": 1055998215, - "properties": { - "m_effectName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2029161513 - }, - "m_effectCategory": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1852673222 - }, - "m_sortOrder": { - "type": "int", - "id": 2, - "offset": 148, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1411218206 - }, - "m_duration": { - "type": "double", - "id": 3, - "offset": 192, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2727932435 - }, - "m_stackingCategories": { - "type": "std::string", - "id": 4, - "offset": 160, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1774497525 - }, - "m_isPersistent": { - "type": "bool", - "id": 5, - "offset": 153, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 923861920 - }, - "m_bIsOnPet": { - "type": "bool", - "id": 6, - "offset": 154, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 522593303 - }, - "m_isPublic": { - "type": "bool", - "id": 7, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1728439822 - }, - "m_visualEffectAddName": { - "type": "std::string", - "id": 8, - "offset": 200, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3382086694 - }, - "m_visualEffectRemoveName": { - "type": "std::string", - "id": 9, - "offset": 232, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1541697323 - }, - "m_onAddFunctorName": { - "type": "std::string", - "id": 10, - "offset": 280, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1561843107 - }, - "m_onRemoveFunctorName": { - "type": "std::string", - "id": 11, - "offset": 312, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2559017864 - }, - "m_stackingRule": { - "type": "enum STACKING_RULE", - "id": 12, - "offset": 144, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 431568889, - "enum_options": { - "STACKING_ALLOWED": 0, - "STACKING_NOSTACK": 1, - "STACKING_REPLACE": 2 - } - }, - "m_pulsePeriod": { - "type": "double", - "id": 13, - "offset": 360, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3960618585 - }, - "m_pulseEventName": { - "type": "std::string", - "id": 14, - "offset": 368, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1858926599 - }, - "m_statName": { - "type": "std::string", - "id": 15, - "offset": 408, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1866211576 - }, - "m_statMaxName": { - "type": "std::string", - "id": 16, - "offset": 440, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3164833118 - }, - "m_damage": { - "type": "int", - "id": 17, - "offset": 472, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 351627865 - } - } - }, - "668287165": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 668287165, - "properties": { - "m_equipmentSetList": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1788831224 - } - } - }, - "1054782897": { - "name": "class Spell*", - "bases": [ - "PropertyClass" - ], - "hash": 1054782897, - "properties": { - "m_templateID": { - "type": "unsigned int", - "id": 0, - "offset": 128, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1286746870 - }, - "m_enchantment": { - "type": "unsigned int", - "id": 1, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2217886818 - }, - "m_pipCost": { - "type": "class SharedPointer", - "id": 2, - "offset": 176, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3605704820 - }, - "m_regularAdjust": { - "type": "int", - "id": 3, - "offset": 192, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1420453335 - }, - "m_magicSchoolID": { - "type": "unsigned int", - "id": 4, - "offset": 136, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 893146499 - }, - "m_accuracy": { - "type": "unsigned char", - "id": 5, - "offset": 132, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2273914939 - }, - "m_treasureCard": { - "type": "bool", - "id": 6, - "offset": 197, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1764879128 - }, - "m_battleCard": { - "type": "bool", - "id": 7, - "offset": 198, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1332843753 - }, - "m_itemCard": { - "type": "bool", - "id": 8, - "offset": 199, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1683654300 - }, - "m_sideBoard": { - "type": "bool", - "id": 9, - "offset": 200, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1897838368 - }, - "m_spellID": { - "type": "unsigned int", - "id": 10, - "offset": 204, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1697483258 - }, - "m_leavesPlayWhenCastOverride": { - "type": "bool", - "id": 11, - "offset": 216, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 874407398 - }, - "m_cloaked": { - "type": "bool", - "id": 12, - "offset": 196, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 7349510 - }, - "m_enchantmentSpellIsItemCard": { - "type": "bool", - "id": 13, - "offset": 76, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 531590701 - }, - "m_premutationSpellID": { - "type": "unsigned int", - "id": 14, - "offset": 112, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1530256370 - }, - "m_enchantedThisCombat": { - "type": "bool", - "id": 15, - "offset": 77, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1895738923 - }, - "m_paramOverrides": { - "type": "class SharedPointer", - "id": 16, - "offset": 224, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2061635599 - }, - "m_subEffectMeta": { - "type": "class SharedPointer", - "id": 17, - "offset": 240, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1944101106 - }, - "m_delayEnchantment": { - "type": "bool", - "id": 18, - "offset": 257, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 191336919 - }, - "m_PvE": { - "type": "bool", - "id": 19, - "offset": 264, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 269492350 - }, - "m_delayEnchantmentOrder": { - "type": "enum SpellEffect::kDelayOrder", - "id": 20, - "offset": 72, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2526055263, - "enum_options": { - "SpellEffect::kAnyOrder": 0, - "SpellEffect::kFirst": 1, - "SpellEffect::kSecond": 2 - } - }, - "m_roundAddedTC": { - "type": "int", - "id": 21, - "offset": 260, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 112365451 - }, - "m_secondarySchoolID": { - "type": "unsigned int", - "id": 22, - "offset": 304, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2081206026 - } - } - }, - "1053826872": { - "name": "class CastleMagicAction", - "bases": [ - "PropertyClass" - ], - "hash": 1053826872, - "properties": {} - }, - "1445719610": { - "name": "class SharedPointer", - "bases": [ - "Window", - "PropertyClass" - ], - "hash": 1445719610, - "properties": { - "m_sName": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306437263 - }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621225959 - }, - "m_Style": { - "type": "unsigned int", - "id": 2, - "offset": 152, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "SCALE_CHILDREN": 2, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "FOCUS_LOCKED": 64, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152 - } - }, - "m_Flags": { - "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } - }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3105139380 - }, - "m_fTargetAlpha": { - "type": "float", - "id": 5, - "offset": 212, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1809129834 - }, - "m_fDisabledAlpha": { - "type": "float", - "id": 6, - "offset": 216, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1389987675 - }, - "m_fAlpha": { - "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 482130755 - }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3623628394 - }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2102211316 - }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1846695875 - }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3389835433 - }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2547159940 - }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2587533771 - }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3091503757 - } - } - }, - "1053803721": { - "name": "class Reco::RecoItemData*", - "bases": [ - "PropertyClass" - ], - "hash": 1053803721, - "properties": { - "m_templateID": { - "type": "int", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1075344419 - }, - "m_rank": { - "type": "int", - "id": 1, - "offset": 76, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 219803942 - }, - "m_secondaryRank": { - "type": "int", - "id": 2, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2066929134 - } - } - }, - "734261487": { - "name": "class ActiveTimedPassEntry", - "bases": [ - "PropertyClass" - ], - "hash": 734261487, - "properties": { - "m_passInfo": { - "type": "class PassInfo", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2268899601 - }, - "m_expireTime": { - "type": "int", - "id": 1, - "offset": 240, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1624902422 - } - } - }, - "1451717073": { - "name": "class WhirlyBurlyKioskBehaviorTemplate", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 1451717073, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - } - } - }, - "1054532879": { - "name": "class SG_GameActionClient_PlaySound", - "bases": [ - "SG_GameAction_PlaySound", - "SG_GameAction", - "PropertyClass" - ], - "hash": 1054532879, - "properties": { - "m_target": { - "type": "enum SG_GameAction::SG_Target", - "id": 0, - "offset": 72, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1166870973, - "enum_options": { - "Target_Ball": 0, - "Target_Self": 1, - "Target_Connections": 2, - "__DEFAULT": "Target_Ball" - } - }, - "m_simpleSounds": { - "type": "std::string", - "id": 1, - "offset": 112, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 3351944033 - } - } - }, - "1448440427": { - "name": "class AddHangingCinematicStageTemplate*", - "bases": [ - "CinematicStageTemplate", - "PropertyClass" - ], - "hash": 1448440427, - "properties": { - "m_name": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1717359772 - }, - "m_duration": { - "type": "float", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 920323453 - }, - "m_actions": { - "type": "class SharedPointer", - "id": 2, - "offset": 112, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1380578687 - }, - "m_stageRelationships": { - "type": "class SharedPointer", - "id": 3, - "offset": 128, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 499983354 - }, - "m_hanging": { - "type": "std::string", - "id": 4, - "offset": 152, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3233478999 - }, - "m_protection": { - "type": "std::string", - "id": 5, - "offset": 184, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1874970946 - }, - "m_sound": { - "type": "std::string", - "id": 6, - "offset": 216, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2307644996 - }, - "m_burnSound": { - "type": "std::string", - "id": 7, - "offset": 248, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1827806971 - }, - "m_stopRotating": { - "type": "bool", - "id": 8, - "offset": 282, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 13587553 - }, - "m_startRotating": { - "type": "bool", - "id": 9, - "offset": 283, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 839204969 - }, - "m_spellText": { - "type": "std::string", - "id": 10, - "offset": 288, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2688705600 - }, - "m_bSwitchCameraToWideLong": { - "type": "bool", - "id": 11, - "offset": 280, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2136912684, - "enum_options": { - "__DEFAULT": 1 - } - }, - "m_announcesSpell": { - "type": "bool", - "id": 12, - "offset": 281, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 652261533, - "enum_options": { - "__DEFAULT": 1 - } - } - } - }, - "1446291400": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1446291400, - "properties": { - "m_schoolName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3385349572 - } - } - }, - "674187830": { - "name": "class FriendNotificationInfo", - "bases": [ - "PropertyClass" - ], - "hash": 674187830, - "properties": {} - }, - "1054641469": { - "name": "class SharedPointer", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1054641469, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_startLocation": { - "type": "class Vector3D", - "id": 1, - "offset": 112, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1669140041 - }, - "m_targetLocation": { - "type": "class Vector3D", - "id": 2, - "offset": 124, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2653859938 - }, - "m_rootAsset": { - "type": "std::string", - "id": 3, - "offset": 136, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3506101791 - } - } - }, - "1446241956": { - "name": "class SharedPointer", - "bases": [ - "CoreTemplate", - "PropertyClass" - ], - "hash": 1446241956, - "properties": { - "m_behaviors": { - "type": "class BehaviorTemplate*", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1197808594 - }, - "m_matchName": { - "type": "std::string", - "id": 1, - "offset": 128, - "flags": 134217735, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2061215721 - }, - "m_matchDisplayName": { - "type": "std::string", - "id": 2, - "offset": 96, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3201906495 - }, - "m_matchTitle": { - "type": "std::string", - "id": 3, - "offset": 168, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2918442218 - }, - "m_allowOverrides": { - "type": "bool", - "id": 4, - "offset": 200, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 469376485 - }, - "m_teamSize": { - "type": "unsigned int", - "id": 5, - "offset": 208, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2343388751 - }, - "m_teamCount": { - "type": "unsigned int", - "id": 6, - "offset": 204, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1825878845 - }, - "m_minTeams": { - "type": "unsigned int", - "id": 7, - "offset": 212, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1717685739 - }, - "m_timeout": { - "type": "int", - "id": 8, - "offset": 216, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 365357953 - }, - "m_maxPointsPerMatch": { - "type": "unsigned int", - "id": 9, - "offset": 280, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1397040900 - }, - "m_estimatedWeight": { - "type": "float", - "id": 10, - "offset": 284, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1374360127 - }, - "m_matchInfo": { - "type": "class SharedPointer", - "id": 11, - "offset": 256, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2424135306 - }, - "m_awardInfo": { - "type": "class SharedPointer", - "id": 12, - "offset": 224, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2862912855 - }, - "m_perLeagueAwardInfo": { - "type": "class SharedPointer", - "id": 13, - "offset": 240, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1635456322 - }, - "m_zones": { - "type": "std::string", - "id": 14, - "offset": 288, - "flags": 268435463, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2315938538, - "enum_options": { - "__BASECLASS": "ZoneData" - } - }, - "m_initialQueueThreshold": { - "type": "unsigned int", - "id": 15, - "offset": 312, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2069737705 - }, - "m_actorQueueTimeout": { - "type": "unsigned int", - "id": 16, - "offset": 316, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2220949042 - }, - "m_teamQueueTimeout": { - "type": "unsigned int", - "id": 17, - "offset": 320, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 905233664 - }, - "m_actorQueueGrowth": { - "type": "float", - "id": 18, - "offset": 324, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 499165488 - }, - "m_teamQueueGrowth": { - "type": "float", - "id": 19, - "offset": 328, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1500499518 - }, - "m_matchMakingLevelMultiplier": { - "type": "float", - "id": 20, - "offset": 332, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 838900890 - }, - "m_levelModifiersListID": { - "type": "gid", - "id": 21, - "offset": 336, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 383459035 - }, - "m_incompleteTeamTimeout": { - "type": "unsigned int", - "id": 22, - "offset": 276, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1580576011 - }, - "m_incompleteMatchTimeout": { - "type": "unsigned int", - "id": 23, - "offset": 272, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2167303729 - }, - "m_shortMatchDurationForPenaltySeconds": { - "type": "unsigned int", - "id": 24, - "offset": 360, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1403927011 - }, - "m_thresholdForExtendingMatchSearch": { - "type": "unsigned int", - "id": 25, - "offset": 364, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1973589002 - }, - "m_numberOfPlayersRequiredToExtendMatchSearch": { - "type": "unsigned int", - "id": 26, - "offset": 368, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 858588026 - }, - "m_showStatusOnJoinQueue": { - "type": "bool", - "id": 27, - "offset": 376, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1803391338 - }, - "m_allowExceedRangeForMatchesOptionForPlayers": { - "type": "bool", - "id": 28, - "offset": 377, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 592913977 - }, - "m_makeTeamsWithSameMatchOptsTimeoutSec": { - "type": "int", - "id": 29, - "offset": 372, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1787977769 - }, - "m_streakSize": { - "type": "int", - "id": 30, - "offset": 380, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1155220287 - }, - "m_historySize": { - "type": "int", - "id": 31, - "offset": 384, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 229055111 - }, - "m_queueWaitingTime": { - "type": "int", - "id": 32, - "offset": 388, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 15229089 - }, - "m_minQueueSize": { - "type": "int", - "id": 33, - "offset": 392, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1319267550 - }, - "m_maxQueueSize": { - "type": "int", - "id": 34, - "offset": 396, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1277586976 - }, - "m_confTierRankTimeout": { - "type": "int", - "id": 35, - "offset": 400, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 79057063 - }, - "m_matchTimer": { - "type": "float", - "id": 36, - "offset": 404, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1510935909 - }, - "m_bonusTime": { - "type": "int", - "id": 37, - "offset": 408, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1757496496 - }, - "m_passPenalty": { - "type": "int", - "id": 38, - "offset": 412, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 982951662 - }, - "m_yellowTime": { - "type": "int", - "id": 39, - "offset": 416, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1017028741 - }, - "m_redTime": { - "type": "int", - "id": 40, - "offset": 420, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1909556708 - }, - "m_minTurnTime": { - "type": "int", - "id": 41, - "offset": 424, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 652524886 - }, - "m_effects": { - "type": "class SharedPointer", - "id": 42, - "offset": 432, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 804962647 - }, - "m_updateBattlePassPoints": { - "type": "bool", - "id": 43, - "offset": 456, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 713306342 - }, - "m_battlePassWinPoints": { - "type": "int", - "id": 44, - "offset": 460, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1252337240 - }, - "m_battlePassLosePoints": { - "type": "int", - "id": 45, - "offset": 464, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1400839869 - } - } - }, - "671148226": { - "name": "class SharedPointer", - "bases": [ - "CinematicStageTemplate", - "PropertyClass" - ], - "hash": 671148226, - "properties": { - "m_name": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1717359772 - }, - "m_duration": { - "type": "float", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 920323453 - }, - "m_actions": { - "type": "class SharedPointer", - "id": 2, - "offset": 112, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1380578687 - }, - "m_stageRelationships": { - "type": "class SharedPointer", - "id": 3, - "offset": 128, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 499983354 - }, - "m_cameras": { - "type": "std::string", - "id": 4, - "offset": 152, - "flags": 131079, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 3217341687 - }, - "m_altcameras": { - "type": "std::string", - "id": 5, - "offset": 176, - "flags": 131079, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1882980152 - }, - "m_animation": { - "type": "std::string", - "id": 6, - "offset": 200, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3431428731 - }, - "m_bUsesGetHitSound": { - "type": "bool", - "id": 7, - "offset": 232, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 49296995 - } - } - }, - "669830056": { - "name": "enum BugType", - "bases": [], - "hash": 669830056, - "properties": {} - }, - "1054860559": { - "name": "class SG_GameActionClient_PlaySound*", - "bases": [ - "SG_GameAction_PlaySound", - "SG_GameAction", - "PropertyClass" - ], - "hash": 1054860559, - "properties": { - "m_target": { - "type": "enum SG_GameAction::SG_Target", - "id": 0, - "offset": 72, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1166870973, - "enum_options": { - "Target_Ball": 0, - "Target_Self": 1, - "Target_Connections": 2, - "__DEFAULT": "Target_Ball" - } - }, - "m_simpleSounds": { - "type": "std::string", - "id": 1, - "offset": 112, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 3351944033 - } - } - }, - "1448255009": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1448255009, - "properties": { - "m_petGID": { - "type": "gid", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 826202069 - }, - "m_ageOutTime": { - "type": "unsigned int", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 819371137 - }, - "m_cooldownTime": { - "type": "unsigned int", - "id": 2, - "offset": 84, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 902182593 - }, - "m_petTemplateID": { - "type": "unsigned int", - "id": 3, - "offset": 88, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 817215071 - }, - "m_hatchCount": { - "type": "unsigned int", - "id": 4, - "offset": 92, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1273194302 - }, - "m_nameKey": { - "type": "unsigned int", - "id": 5, - "offset": 96, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1104764311 - }, - "m_petItemGID": { - "type": "gid", - "id": 6, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2122895620 - } - } - }, - "671370420": { - "name": "class SharedPointer", - "bases": [ - "FaceTargetTeamActorCinematicAction", - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 671370420, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - }, - "m_bCaster": { - "type": "bool", - "id": 2, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1390351511 - } - } - }, - "1056133914": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1056133914, - "properties": { - "m_hatchmakingPetsList": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2100166473 - }, - "m_disableKiosk": { - "type": "bool", - "id": 1, - "offset": 88, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1561191592 - }, - "m_disableOffer": { - "type": "bool", - "id": 2, - "offset": 89, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1565817209 - }, - "m_premiumPetExceptionCode": { - "type": "unsigned int", - "id": 3, - "offset": 92, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2278118367 - } - } - }, - "672862035": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 672862035, - "properties": { - "m_madlibIconDataList": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 3692830504 - } - } - }, - "1056009323": { - "name": "class SharedPointer", - "bases": [ - "TournamentUpdate", - "PropertyClass" - ], - "hash": 1056009323, - "properties": { - "m_matchInfo": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2424135306 - } - } - }, - "1450572305": { - "name": "class TutorialQuestTemplate*", - "bases": [ - "QuestTemplate", - "CoreTemplate", - "PropertyClass" - ], - "hash": 1450572305, - "properties": { - "m_behaviors": { - "type": "class BehaviorTemplate*", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1197808594 - }, - "m_questName": { - "type": "std::string", - "id": 1, - "offset": 96, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1702112846 - }, - "m_questNameID": { - "type": "unsigned int", - "id": 2, - "offset": 128, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1530354349 - }, - "m_questTitle": { - "type": "std::string", - "id": 3, - "offset": 136, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1805465583 - }, - "m_questInfo": { - "type": "std::string", - "id": 4, - "offset": 168, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1701947097 - }, - "m_questPrep": { - "type": "std::string", - "id": 5, - "offset": 200, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1702202980 - }, - "m_questUnderway": { - "type": "std::string", - "id": 6, - "offset": 232, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2308400380 - }, - "m_questComplete": { - "type": "std::string", - "id": 7, - "offset": 264, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3484586150 - }, - "m_startGoals": { - "type": "std::string", - "id": 8, - "offset": 392, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2152469471 - }, - "m_goals": { - "type": "class SharedPointer", - "id": 9, - "offset": 408, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1374041870 - }, - "m_startResults": { - "type": "class SharedPointer", - "id": 10, - "offset": 424, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2094517692 - }, - "m_endResults": { - "type": "class SharedPointer", - "id": 11, - "offset": 440, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2118364133 - }, - "m_requirements": { - "type": "class RequirementList*", - "id": 12, - "offset": 456, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2840985510 - }, - "m_prepRequirements": { - "type": "class RequirementList*", - "id": 13, - "offset": 464, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3016776541 - }, - "m_pruneRequirements": { - "type": "class RequirementList*", - "id": 14, - "offset": 472, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3211248912 - }, - "m_prepAlways": { - "type": "bool", - "id": 15, - "offset": 304, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1423046331 - }, - "m_clientTags": { - "type": "std::string", - "id": 16, - "offset": 312, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2319030025 - }, - "m_goalLogic": { - "type": "class GoalCompleteLogic*", - "id": 17, - "offset": 520, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 963824003 - }, - "m_questLevel": { - "type": "int", - "id": 18, - "offset": 296, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 298136804 - }, - "m_questRepeat": { - "type": "int", - "id": 19, - "offset": 300, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1480345805 - }, - "m_onStartQuestScript": { - "type": "std::string", - "id": 20, - "offset": 328, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2577549709 - }, - "m_onEndQuestScript": { - "type": "std::string", - "id": 21, - "offset": 360, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285648118 - }, - "m_dialogList": { - "type": "class ActorDialogListBase*", - "id": 22, - "offset": 480, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1909154969 - }, - "m_missionDoors": { - "type": "std::string", - "id": 23, - "offset": 504, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2428103908 - }, - "m_dynaMods": { - "type": "class QuestDynaModInfo*", - "id": 24, - "offset": 488, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 3330743945 - }, - "m_isHidden": { - "type": "bool", - "id": 25, - "offset": 305, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1401188667 - }, - "m_outdated": { - "type": "bool", - "id": 26, - "offset": 306, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1565198349 - }, - "m_noQuestHelper": { - "type": "bool", - "id": 27, - "offset": 307, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 578010882 - }, - "m_mainline": { - "type": "bool", - "id": 28, - "offset": 552, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1749856224 - }, - "m_defaultDialogAnimation": { - "type": "std::string", - "id": 29, - "offset": 560, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2400834320 - }, - "m_skipQHAutoSelect": { - "type": "bool", - "id": 30, - "offset": 553, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2024815836 - }, - "m_questEffectInfoList": { - "type": "class SharedPointer", - "id": 31, - "offset": 536, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2494024956 - }, - "m_forceInteraction": { - "type": "bool", - "id": 32, - "offset": 554, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1038376866 - }, - "m_checkInventoryForCrafting": { - "type": "bool", - "id": 33, - "offset": 608, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1549644020 - }, - "m_playAsYourPetNPC": { - "type": "bool", - "id": 34, - "offset": 609, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 827482678 - }, - "m_activityType": { - "type": "enum QuestTemplate::ActivityType", - "id": 35, - "offset": 612, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 231656390, - "enum_options": { - "ACTIVITY_NotActivity": 0, - "ACTIVITY_Crafting": 2, - "ACTIVITY_Fishing": 3, - "ACTIVITY_Gardening": 4, - "ACTIVITY_Pet": 5, - "ACTIVITY_Spell": 1 - } - }, - "m_allowedQuests": { - "type": "std::string", - "id": 36, - "offset": 616, - "flags": 268435463, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1695271656, - "enum_options": { - "__BASECLASS": "QuestTemplate" - } - }, - "m_allowedZoneEvents": { - "type": "std::string", - "id": 37, - "offset": 632, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1503555828 - }, - "m_allowedMinigames": { - "type": "std::string", - "id": 38, - "offset": 648, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1962792925 - }, - "m_tutorialScript": { - "type": "std::string", - "id": 39, - "offset": 712, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1565876420 - }, - "m_modList": { - "type": "class TutorialZoneMod*", - "id": 40, - "offset": 664, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 342986186 - }, - "m_requiresTutorialZone": { - "type": "bool", - "id": 41, - "offset": 776, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1728419315 - }, - "m_scriptZone": { - "type": "std::string", - "id": 42, - "offset": 744, - "flags": 268435463, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3110729452, - "enum_options": { - "__BASECLASS": "ZoneData" - } - }, - "m_visibleTutorial": { - "type": "bool", - "id": 43, - "offset": 777, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1398395349 - } - } - }, - "1056070233": { - "name": "class ClientMountInteractableOption", - "bases": [ - "MountInteractableOption", - "InteractableOption", - "ServiceOptionBase", - "PropertyClass" - ], - "hash": 1056070233, - "properties": { - "m_serviceName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2206028813 - }, - "m_iconKey": { - "type": "std::string", - "id": 1, - "offset": 168, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2457138637 - }, - "m_displayKey": { - "type": "std::string", - "id": 2, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3023276954 - }, - "m_serviceIndex": { - "type": "unsigned int", - "id": 3, - "offset": 204, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2103126710 - }, - "m_forceInteract": { - "type": "bool", - "id": 4, - "offset": 200, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1705789564 - }, - "m_optionIndex": { - "type": "int", - "id": 5, - "offset": 216, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 276287019 - } - } - }, - "1449902705": { - "name": "class ReqItemIsEgg*", - "bases": [ - "Requirement", - "PropertyClass" - ], - "hash": 1449902705, - "properties": { - "m_applyNOT": { - "type": "bool", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1746328074, - "enum_options": { - "__DEFAULT": 0 - } - }, - "m_operator": { - "type": "enum Requirement::Operator", - "id": 1, - "offset": 76, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2672792317, - "enum_options": { - "ROP_AND": 0, - "ROP_OR": 1, - "__DEFAULT": "ROP_AND" - } - } - } - }, - "682949081": { - "name": "class CrownShopGiftRedemption*", - "bases": [ - "PropertyClass" - ], - "hash": 682949081, - "properties": { - "m_message": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3411261376 - }, - "m_itemId.m_full": { - "type": "unsigned __int64", - "id": 1, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 625276258 - }, - "m_itemCount": { - "type": "int", - "id": 2, - "offset": 120, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1789298066 - }, - "m_itemFlags": { - "type": "int", - "id": 3, - "offset": 124, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1792726006 - }, - "m_texture": { - "type": "int", - "id": 4, - "offset": 112, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 222406987 - }, - "m_decal": { - "type": "int", - "id": 5, - "offset": 116, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 791777171 - }, - "m_petName": { - "type": "int", - "id": 6, - "offset": 128, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1492854820 - }, - "m_giverAccountID": { - "type": "gid", - "id": 7, - "offset": 136, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 679105551 - }, - "m_itemTransactionId": { - "type": "std::string", - "id": 8, - "offset": 144, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1830751453 - } - } - }, - "677315704": { - "name": "class BeneficialProximityBehavior*", - "bases": [ - "BeneficialProximityBehaviorBase", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 677315704, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - } - } - }, - "675812536": { - "name": "class SharedPointer", - "bases": [ - "RotateActorCinematicAction", - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 675812536, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - }, - "m_deltaYaw": { - "type": "float", - "id": 2, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1518691890 - } - } - }, - "1056397913": { - "name": "class ClientMountInteractableOption*", - "bases": [ - "MountInteractableOption", - "InteractableOption", - "ServiceOptionBase", - "PropertyClass" - ], - "hash": 1056397913, - "properties": { - "m_serviceName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2206028813 - }, - "m_iconKey": { - "type": "std::string", - "id": 1, - "offset": 168, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2457138637 - }, - "m_displayKey": { - "type": "std::string", - "id": 2, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3023276954 - }, - "m_serviceIndex": { - "type": "unsigned int", - "id": 3, - "offset": 204, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2103126710 - }, - "m_forceInteract": { - "type": "bool", - "id": 4, - "offset": 200, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1705789564 - }, - "m_optionIndex": { - "type": "int", - "id": 5, - "offset": 216, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 276287019 - } - } - }, - "1450771853": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1450771853, - "properties": {} - }, - "675293646": { - "name": "class BodyOfWater*", - "bases": [ - "PropertyClass" - ], - "hash": 675293646, - "properties": { - "m_waterX": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1185657746 - }, - "m_waterY": { - "type": "float", - "id": 1, - "offset": 76, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1185657747 - }, - "m_secondsToRespawn": { - "type": "unsigned int", - "id": 2, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1001169759 - }, - "m_numberOfFish": { - "type": "int", - "id": 3, - "offset": 84, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1143336898 - }, - "m_zoneFishList": { - "type": "class SharedPointer", - "id": 4, - "offset": 96, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2647022847 - }, - "m_waterType": { - "type": "int", - "id": 5, - "offset": 88, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 869659615 - } - } - }, - "1450573585": { - "name": "class TutorialQuestTemplate", - "bases": [ - "QuestTemplate", - "CoreTemplate", - "PropertyClass" - ], - "hash": 1450573585, - "properties": { - "m_behaviors": { - "type": "class BehaviorTemplate*", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1197808594 - }, - "m_questName": { - "type": "std::string", - "id": 1, - "offset": 96, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1702112846 - }, - "m_questNameID": { - "type": "unsigned int", - "id": 2, - "offset": 128, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1530354349 - }, - "m_questTitle": { - "type": "std::string", - "id": 3, - "offset": 136, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1805465583 - }, - "m_questInfo": { - "type": "std::string", - "id": 4, - "offset": 168, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1701947097 - }, - "m_questPrep": { - "type": "std::string", - "id": 5, - "offset": 200, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1702202980 - }, - "m_questUnderway": { - "type": "std::string", - "id": 6, - "offset": 232, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2308400380 - }, - "m_questComplete": { - "type": "std::string", - "id": 7, - "offset": 264, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3484586150 - }, - "m_startGoals": { - "type": "std::string", - "id": 8, - "offset": 392, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2152469471 - }, - "m_goals": { - "type": "class SharedPointer", - "id": 9, - "offset": 408, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1374041870 - }, - "m_startResults": { - "type": "class SharedPointer", - "id": 10, - "offset": 424, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2094517692 - }, - "m_endResults": { - "type": "class SharedPointer", - "id": 11, - "offset": 440, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2118364133 - }, - "m_requirements": { - "type": "class RequirementList*", - "id": 12, - "offset": 456, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2840985510 - }, - "m_prepRequirements": { - "type": "class RequirementList*", - "id": 13, - "offset": 464, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3016776541 - }, - "m_pruneRequirements": { - "type": "class RequirementList*", - "id": 14, - "offset": 472, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3211248912 - }, - "m_prepAlways": { - "type": "bool", - "id": 15, - "offset": 304, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1423046331 - }, - "m_clientTags": { - "type": "std::string", - "id": 16, - "offset": 312, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2319030025 - }, - "m_goalLogic": { - "type": "class GoalCompleteLogic*", - "id": 17, - "offset": 520, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 963824003 - }, - "m_questLevel": { - "type": "int", - "id": 18, - "offset": 296, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 298136804 - }, - "m_questRepeat": { - "type": "int", - "id": 19, - "offset": 300, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1480345805 - }, - "m_onStartQuestScript": { - "type": "std::string", - "id": 20, - "offset": 328, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2577549709 - }, - "m_onEndQuestScript": { - "type": "std::string", - "id": 21, - "offset": 360, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285648118 - }, - "m_dialogList": { - "type": "class ActorDialogListBase*", - "id": 22, - "offset": 480, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1909154969 - }, - "m_missionDoors": { - "type": "std::string", - "id": 23, - "offset": 504, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2428103908 - }, - "m_dynaMods": { - "type": "class QuestDynaModInfo*", - "id": 24, - "offset": 488, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 3330743945 - }, - "m_isHidden": { - "type": "bool", - "id": 25, - "offset": 305, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1401188667 - }, - "m_outdated": { - "type": "bool", - "id": 26, - "offset": 306, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1565198349 - }, - "m_noQuestHelper": { - "type": "bool", - "id": 27, - "offset": 307, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 578010882 - }, - "m_mainline": { - "type": "bool", - "id": 28, - "offset": 552, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1749856224 - }, - "m_defaultDialogAnimation": { - "type": "std::string", - "id": 29, - "offset": 560, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2400834320 - }, - "m_skipQHAutoSelect": { - "type": "bool", - "id": 30, - "offset": 553, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2024815836 - }, - "m_questEffectInfoList": { - "type": "class SharedPointer", - "id": 31, - "offset": 536, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2494024956 - }, - "m_forceInteraction": { - "type": "bool", - "id": 32, - "offset": 554, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1038376866 - }, - "m_checkInventoryForCrafting": { - "type": "bool", - "id": 33, - "offset": 608, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1549644020 - }, - "m_playAsYourPetNPC": { - "type": "bool", - "id": 34, - "offset": 609, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 827482678 - }, - "m_activityType": { - "type": "enum QuestTemplate::ActivityType", - "id": 35, - "offset": 612, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 231656390, - "enum_options": { - "ACTIVITY_NotActivity": 0, - "ACTIVITY_Crafting": 2, - "ACTIVITY_Fishing": 3, - "ACTIVITY_Gardening": 4, - "ACTIVITY_Pet": 5, - "ACTIVITY_Spell": 1 - } - }, - "m_allowedQuests": { - "type": "std::string", - "id": 36, - "offset": 616, - "flags": 268435463, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1695271656, - "enum_options": { - "__BASECLASS": "QuestTemplate" - } - }, - "m_allowedZoneEvents": { - "type": "std::string", - "id": 37, - "offset": 632, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1503555828 - }, - "m_allowedMinigames": { - "type": "std::string", - "id": 38, - "offset": 648, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1962792925 - }, - "m_tutorialScript": { - "type": "std::string", - "id": 39, - "offset": 712, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1565876420 - }, - "m_modList": { - "type": "class TutorialZoneMod*", - "id": 40, - "offset": 664, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 342986186 - }, - "m_requiresTutorialZone": { - "type": "bool", - "id": 41, - "offset": 776, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1728419315 - }, - "m_scriptZone": { - "type": "std::string", - "id": 42, - "offset": 744, - "flags": 268435463, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3110729452, - "enum_options": { - "__BASECLASS": "ZoneData" - } - }, - "m_visibleTutorial": { - "type": "bool", - "id": 43, - "offset": 777, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1398395349 - } - } - }, - "674228790": { - "name": "class FriendNotificationInfo*", - "bases": [ - "PropertyClass" - ], - "hash": 674228790, - "properties": {} - }, - "1949477602": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1949477602, - "properties": { - "m_settingName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2915007546 - }, - "m_settingValue": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3178360950 - } - } - }, - "1075927301": { - "name": "class TournamentUpdateList*", - "bases": [ - "PropertyClass" - ], - "hash": 1075927301, - "properties": { - "m_updates": { - "type": "class SharedPointer", - "id": 0, - "offset": 88, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 3250680338 - }, - "m_matchCount": { - "type": "int", - "id": 1, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1400798736 - }, - "m_teamCount": { - "type": "int", - "id": 2, - "offset": 76, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1614476394 - }, - "m_actorCount": { - "type": "int", - "id": 3, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1057423836 - } - } - }, - "1834700596": { - "name": "class FishCatchOfTheDayOption*", - "bases": [ - "ServiceOptionBase", - "PropertyClass" - ], - "hash": 1834700596, - "properties": { - "m_serviceName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2206028813 - }, - "m_iconKey": { - "type": "std::string", - "id": 1, - "offset": 168, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2457138637 - }, - "m_displayKey": { - "type": "std::string", - "id": 2, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3023276954 - }, - "m_serviceIndex": { - "type": "unsigned int", - "id": 3, - "offset": 204, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2103126710 - }, - "m_forceInteract": { - "type": "bool", - "id": 4, - "offset": 200, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1705789564 - } - } - }, - "1058786843": { - "name": "class StaticControlButtonState", - "bases": [ - "ControlButtonState", - "PropertyClass" - ], - "hash": 1058786843, - "properties": { - "m_nMaterialFrame": { - "type": "int", - "id": 0, - "offset": 72, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1641923970 - } - } - }, - "1057863734": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1057863734, - "properties": { - "m_idList": { - "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 761088246 - } - } - }, - "1056961492": { - "name": "class SharedPointer", - "bases": [ - "LootInfo", - "LootInfoBase", - "PropertyClass" - ], - "hash": 1056961492, - "properties": { - "m_lootType": { - "type": "enum LootInfo::LOOT_TYPE", - "id": 0, - "offset": 72, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1591891442, - "enum_options": { - "LOOT_TYPE_NONE": 0, - "LOOT_TYPE_GOLD": 1, - "LOOT_TYPE_MANA": 2, - "LOOT_TYPE_ITEM": 3, - "LOOT_TYPE_TREASURE_CARD": 4, - "LOOT_TYPE_MAGIC_XP": 5, - "LOOT_TYPE_ADD_SPELL": 6, - "LOOT_TYPE_MAX_HEALTH": 7, - "LOOT_TYPE_MAX_GOLD": 8, - "LOOT_TYPE_MAX_MANA": 9, - "LOOT_TYPE_MAX_POTION": 10, - "LOOT_TYPE_TRAINING_POINTS": 11, - "LOOT_TYPE_RECIPE": 12, - "LOOT_TYPE_CRAFTING_SLOT": 13, - "LOOT_TYPE_REAGENT": 14, - "LOOT_TYPE_PETSNACK": 15, - "LOOT_TYPE_GARDENING_XP": 16, - "LOOT_TYPE_PET_XP": 17, - "LOOT_TYPE_TREASURE_TABLE": 18, - "LOOT_TYPE_ARENA_POINTS": 19, - "LOOT_TYPE_ARENA_BONUS_POINTS": 20, - "LOOT_TYPE_GROUP": 21, - "LOOT_TYPE_FISHING_XP": 22, - "LOOT_TYPE_EVENT_CURRENCY_1": 24, - "LOOT_TYPE_EVENT_CURRENCY_2": 25, - "LOOT_TYPE_PVP_CURRENCY": 26, - "LOOT_TYPE_PVP_CURRENCY_BONUS": 27, - "LOOT_TYPE_PVP_TOURNEY_CURRENCY": 28, - "LOOT_TYPE_PVP_TOURNEY_CURRENCY_BONUS": 29, - "LOOT_TYPE_FURNITURE_ESSENCE": 30 - } - }, - "m_trainingPoints": { - "type": "int", - "id": 1, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1003892499 - } - } - }, - "1835103159": { - "name": "class EquippedSlotInfo*", - "bases": [ - "PropertyClass" - ], - "hash": 1835103159, - "properties": { - "m_itemID": { - "type": "gid", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 569545460 - }, - "m_itemSlotNameID": { - "type": "unsigned int", - "id": 1, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1951735276 - } - } - }, - "1834780127": { - "name": "class std::list >", - "bases": [], - "hash": 1834780127, - "properties": {} - }, - "1058445275": { - "name": "enum GardenSpellTemplate::GardenSpellType", - "bases": [], - "hash": 1058445275, - "properties": {} - }, - "1835266999": { - "name": "class EquippedSlotInfo", - "bases": [ - "PropertyClass" - ], - "hash": 1835266999, - "properties": { - "m_itemID": { - "type": "gid", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 569545460 - }, - "m_itemSlotNameID": { - "type": "unsigned int", - "id": 1, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1951735276 - } - } - }, - "1059113908": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1059113908, - "properties": { - "m_minIntrinsicValue": { - "type": "int", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1962770606 - }, - "m_bCostsEnergy": { - "type": "bool", - "id": 1, - "offset": 76, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1061466155 - }, - "m_lootTables": { - "type": "std::string", - "id": 2, - "offset": 80, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1514961588 - } - } - }, - "1840579364": { - "name": "class SharedPointer", - "bases": [ - "ControlCheckBox", - "ControlButton", - "Window", - "PropertyClass" - ], - "hash": 1840579364, - "properties": { - "m_sName": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306437263 - }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621225959 - }, - "m_Style": { - "type": "unsigned int", - "id": 2, - "offset": 152, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152, - "EFFECT_SCALE": 67108864, - "LOCK_ICON_SIZE": 33554432, - "LEFT_TEXT": 536870912, - "NO_FIT_TEXT": 1073741824, - "CHECKBOX_TEXTOVERIMAGE": 16777216 - } - }, - "m_Flags": { - "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } - }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3105139380 - }, - "m_fTargetAlpha": { - "type": "float", - "id": 5, - "offset": 212, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1809129834 - }, - "m_fDisabledAlpha": { - "type": "float", - "id": 6, - "offset": 216, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1389987675 - }, - "m_fAlpha": { - "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 482130755 - }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3623628394 - }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2102211316 - }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1846695875 - }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3389835433 - }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2547159940 - }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2587533771 - }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3091503757 - }, - "m_bToggle": { - "type": "bool", - "id": 16, - "offset": 608, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2071810903 - }, - "m_bButtonDown": { - "type": "bool", - "id": 17, - "offset": 609, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 840041705 - }, - "m_sLabel": { - "type": "std::wstring", - "id": 18, - "offset": 616, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2207009163 - }, - "m_labelOffset": { - "type": "class Rect", - "id": 19, - "offset": 832, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1990646723 - }, - "m_pButton": { - "type": "class SharedPointer", - "id": 20, - "offset": 656, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1543855875 - }, - "m_HotKey": { - "type": "unsigned int", - "id": 21, - "offset": 672, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1631553409 - }, - "m_Color": { - "type": "class Color", - "id": 22, - "offset": 676, - "flags": 262279, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1753714077 - }, - "m_bCursorOver": { - "type": "bool", - "id": 23, - "offset": 689, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 283981103 - }, - "m_bAbortWhenCursorNotOver": { - "type": "bool", - "id": 24, - "offset": 706, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 325405258 - }, - "m_bHotKeyDown": { - "type": "bool", - "id": 25, - "offset": 680, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 616989185 - }, - "m_fTime": { - "type": "float", - "id": 26, - "offset": 684, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 883746156 - }, - "m_bGreyed": { - "type": "bool", - "id": 27, - "offset": 688, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1566556053 - }, - "m_fMaxScale": { - "type": "float", - "id": 28, - "offset": 692, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2070186635 - }, - "m_fScaleSpeed": { - "type": "float", - "id": 29, - "offset": 696, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1457135702 - }, - "m_bUseDropShadow": { - "type": "bool", - "id": 30, - "offset": 704, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 93063037 - }, - "m_bUseOutline": { - "type": "bool", - "id": 31, - "offset": 705, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 744292994 - }, - "m_pGreyedState": { - "type": "class SharedPointer", - "id": 32, - "offset": 768, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2703352263 - }, - "m_pNormalState": { - "type": "class SharedPointer", - "id": 33, - "offset": 752, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1887909808 - }, - "m_pHighlightedState": { - "type": "class SharedPointer", - "id": 34, - "offset": 784, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2200177608 - }, - "m_pSelectedState": { - "type": "class SharedPointer", - "id": 35, - "offset": 800, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2266776432 - }, - "m_pDepressedState": { - "type": "class SharedPointer", - "id": 36, - "offset": 816, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1878185798 - }, - "m_nGroupID": { - "type": "int", - "id": 37, - "offset": 880, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 403966850 - }, - "m_bChecked": { - "type": "bool", - "id": 38, - "offset": 884, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 958955100 - }, - "m_pCheckedState": { - "type": "class SharedPointer", - "id": 39, - "offset": 888, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1210539694 - }, - "m_pCheckedGreyedState": { - "type": "class SharedPointer", - "id": 40, - "offset": 904, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2702030126 - }, - "m_pCheckedHighlightedState": { - "type": "class SharedPointer", - "id": 41, - "offset": 920, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1320097679 - }, - "m_pCheckedDepressedState": { - "type": "class SharedPointer", - "id": 42, - "offset": 936, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1609188685 - }, - "m_pEquipNormalState": { - "type": "class SharedPointer", - "id": 43, - "offset": 976, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1322058516 - }, - "m_pEquipPressState": { - "type": "class SharedPointer", - "id": 44, - "offset": 992, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3019605144 - }, - "m_pEquipHighlightState": { - "type": "class SharedPointer", - "id": 45, - "offset": 1008, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2559056739 - }, - "m_pEquipCheckState": { - "type": "class SharedPointer", - "id": 46, - "offset": 1024, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2420681417 - }, - "m_pEquipCheckPressState": { - "type": "class SharedPointer", - "id": 47, - "offset": 1040, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2063281462 - }, - "m_pEquipCheckHighlightState": { - "type": "class SharedPointer", - "id": 48, - "offset": 1056, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2990990081 - } - } - }, - "1059331338": { - "name": "class ParticleEmitter2D*", - "bases": [ - "PropertyClass" - ], - "hash": 1059331338, - "properties": {} - }, - "1838777860": { - "name": "class CinematicActor", - "bases": [ - "PropertyClass" - ], - "hash": 1838777860, - "properties": {} - }, - "1836789704": { - "name": "class ClientRecreateNPCActorCinematicAction*", - "bases": [ - "RecreateNPCActorCinematicAction", - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 1836789704, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - } - } - }, - "1835791781": { - "name": "class SharedPointer", - "bases": [ - "CinematicAction", - "PropertyClass" - ], - "hash": 1835791781, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_interpDuration": { - "type": "float", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237711951 - } - } - }, - "1059352943": { - "name": "class HousingMusicManager", - "bases": [ - "PropertyClass" - ], - "hash": 1059352943, - "properties": {} - }, - "1835763007": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1835763007, - "properties": { - "m_sAssetName": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2503711247 - } - } - }, - "1064547620": { - "name": "class SharedPointer", - "bases": [ - "ServiceOptionBase", - "PropertyClass" - ], - "hash": 1064547620, - "properties": { - "m_serviceName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2206028813 - }, - "m_iconKey": { - "type": "std::string", - "id": 1, - "offset": 168, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2457138637 - }, - "m_displayKey": { - "type": "std::string", - "id": 2, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3023276954 - }, - "m_serviceIndex": { - "type": "unsigned int", - "id": 3, - "offset": 204, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2103126710 - }, - "m_forceInteract": { - "type": "bool", - "id": 4, - "offset": 200, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1705789564 - } - } - }, - "1061907302": { - "name": "class SharedPointer", - "bases": [ - "WizGameObjectTemplate", - "GameObjectTemplate", - "CoreTemplate", - "PropertyClass" - ], - "hash": 1061907302, - "properties": { - "m_behaviors": { - "type": "class BehaviorTemplate*", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1197808594 - }, - "m_objectName": { - "type": "std::string", - "id": 1, - "offset": 96, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2154940147 - }, - "m_templateID": { - "type": "unsigned int", - "id": 2, - "offset": 128, - "flags": 16777223, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1286746870 - }, - "m_visualID": { - "type": "unsigned int", - "id": 3, - "offset": 132, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1118778894 - }, - "m_adjectiveList": { - "type": "std::string", - "id": 4, - "offset": 248, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 3195213318 - }, - "m_exemptFromAOI": { - "type": "bool", - "id": 5, - "offset": 240, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1457879059 - }, - "m_displayName": { - "type": "std::string", - "id": 6, - "offset": 168, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2446900370 - }, - "m_description": { - "type": "std::string", - "id": 7, - "offset": 136, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1649374815 - }, - "m_nObjectType": { - "type": "enum ObjectType", - "id": 8, - "offset": 200, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2118905880, - "enum_options": { - "OT_UNDEFINED": 0, - "OT_PLAYER": 1, - "OT_NPC": 2, - "OT_PROP": 3, - "OT_OBJECT": 4, - "OT_HOUSE": 5, - "OT_KEY": 6, - "OT_OLD_KEY": 7, - "OT_DEED": 8, - "OT_MAIL": 9, - "OT_RECIPE": 17, - "OT_EQUIP_HEAD": 10, - "OT_EQUIP_CHEST": 11, - "OT_EQUIP_LEGS": 12, - "OT_EQUIP_HANDS": 13, - "OT_EQUIP_FINGER": 14, - "OT_EQUIP_FEET": 15, - "OT_EQUIP_EAR": 16, - "OT_BUILDING_BLOCK": 18, - "OT_BUILDING_BLOCK_SOLID": 19, - "OT_GOLF": 20, - "OT_DOOR": 21, - "OT_PET": 22, - "OT_FABRIC": 23, - "OT_WINDOW": 24, - "OT_ROOF": 25, - "OT_HORSE": 26, - "OT_STRUCTURE": 27, - "OT_HOUSING_TEXTURE": 28, - "OT_PLANT": 29 - } - }, - "m_sIcon": { - "type": "std::string", - "id": 9, - "offset": 208, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306259831 - }, - "m_lootTable": { - "type": "std::string", - "id": 10, - "offset": 280, - "flags": 268435463, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2539512673, - "enum_options": { - "__BASECLASS": "LootTable" - } - }, - "m_deathParticles": { - "type": "std::string", - "id": 11, - "offset": 296, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3201049672 - }, - "m_deathSound": { - "type": "std::string", - "id": 12, - "offset": 328, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1865613610 - }, - "m_hitSound": { - "type": "std::string", - "id": 13, - "offset": 360, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2746656777 - }, - "m_castSound": { - "type": "std::string", - "id": 14, - "offset": 392, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3343064815 - }, - "m_aggroSound": { - "type": "std::string", - "id": 15, - "offset": 424, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3421949940 - }, - "m_primarySchoolName": { - "type": "std::string", - "id": 16, - "offset": 456, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3211370408 - }, - "m_locationPreference": { - "type": "std::string", - "id": 17, - "offset": 488, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2817699507 - }, - "m_leashOffsetOverride": { - "type": "class SharedPointer", - "id": 18, - "offset": 528, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1692586788 - } - } - }, - "1837758769": { - "name": "class TreasureCardLootInfo", - "bases": [ - "LootInfo", - "LootInfoBase", - "PropertyClass" - ], - "hash": 1837758769, - "properties": { - "m_lootType": { - "type": "enum LootInfo::LOOT_TYPE", - "id": 0, - "offset": 72, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1591891442, - "enum_options": { - "LOOT_TYPE_NONE": 0, - "LOOT_TYPE_GOLD": 1, - "LOOT_TYPE_MANA": 2, - "LOOT_TYPE_ITEM": 3, - "LOOT_TYPE_TREASURE_CARD": 4, - "LOOT_TYPE_MAGIC_XP": 5, - "LOOT_TYPE_ADD_SPELL": 6, - "LOOT_TYPE_MAX_HEALTH": 7, - "LOOT_TYPE_MAX_GOLD": 8, - "LOOT_TYPE_MAX_MANA": 9, - "LOOT_TYPE_MAX_POTION": 10, - "LOOT_TYPE_TRAINING_POINTS": 11, - "LOOT_TYPE_RECIPE": 12, - "LOOT_TYPE_CRAFTING_SLOT": 13, - "LOOT_TYPE_REAGENT": 14, - "LOOT_TYPE_PETSNACK": 15, - "LOOT_TYPE_GARDENING_XP": 16, - "LOOT_TYPE_PET_XP": 17, - "LOOT_TYPE_TREASURE_TABLE": 18, - "LOOT_TYPE_ARENA_POINTS": 19, - "LOOT_TYPE_ARENA_BONUS_POINTS": 20, - "LOOT_TYPE_GROUP": 21, - "LOOT_TYPE_FISHING_XP": 22, - "LOOT_TYPE_EVENT_CURRENCY_1": 24, - "LOOT_TYPE_EVENT_CURRENCY_2": 25, - "LOOT_TYPE_PVP_CURRENCY": 26, - "LOOT_TYPE_PVP_CURRENCY_BONUS": 27, - "LOOT_TYPE_PVP_TOURNEY_CURRENCY": 28, - "LOOT_TYPE_PVP_TOURNEY_CURRENCY_BONUS": 29, - "LOOT_TYPE_FURNITURE_ESSENCE": 30 - } - }, - "m_spellID": { - "type": "unsigned int", - "id": 1, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1697483258 - } - } - }, - "1060789076": { - "name": "class AutobotManager", - "bases": [ - "PropertyClass" - ], - "hash": 1060789076, - "properties": {} - }, - "1837758745": { - "name": "class TreasureCardLootInfo*", - "bases": [ - "LootInfo", - "LootInfoBase", - "PropertyClass" - ], - "hash": 1837758745, - "properties": { - "m_lootType": { - "type": "enum LootInfo::LOOT_TYPE", - "id": 0, - "offset": 72, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1591891442, - "enum_options": { - "LOOT_TYPE_NONE": 0, - "LOOT_TYPE_GOLD": 1, - "LOOT_TYPE_MANA": 2, - "LOOT_TYPE_ITEM": 3, - "LOOT_TYPE_TREASURE_CARD": 4, - "LOOT_TYPE_MAGIC_XP": 5, - "LOOT_TYPE_ADD_SPELL": 6, - "LOOT_TYPE_MAX_HEALTH": 7, - "LOOT_TYPE_MAX_GOLD": 8, - "LOOT_TYPE_MAX_MANA": 9, - "LOOT_TYPE_MAX_POTION": 10, - "LOOT_TYPE_TRAINING_POINTS": 11, - "LOOT_TYPE_RECIPE": 12, - "LOOT_TYPE_CRAFTING_SLOT": 13, - "LOOT_TYPE_REAGENT": 14, - "LOOT_TYPE_PETSNACK": 15, - "LOOT_TYPE_GARDENING_XP": 16, - "LOOT_TYPE_PET_XP": 17, - "LOOT_TYPE_TREASURE_TABLE": 18, - "LOOT_TYPE_ARENA_POINTS": 19, - "LOOT_TYPE_ARENA_BONUS_POINTS": 20, - "LOOT_TYPE_GROUP": 21, - "LOOT_TYPE_FISHING_XP": 22, - "LOOT_TYPE_EVENT_CURRENCY_1": 24, - "LOOT_TYPE_EVENT_CURRENCY_2": 25, - "LOOT_TYPE_PVP_CURRENCY": 26, - "LOOT_TYPE_PVP_CURRENCY_BONUS": 27, - "LOOT_TYPE_PVP_TOURNEY_CURRENCY": 28, - "LOOT_TYPE_PVP_TOURNEY_CURRENCY_BONUS": 29, - "LOOT_TYPE_FURNITURE_ESSENCE": 30 - } - }, - "m_spellID": { - "type": "unsigned int", - "id": 1, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1697483258 - } - } - }, - "1060124367": { - "name": "class PathActionChangePath", - "bases": [ - "PathBehaviorTemplate::Action", - "PropertyClass" - ], - "hash": 1060124367, - "properties": { - "m_nPathID": { - "type": "gid", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 214382368 - }, - "m_nNodeID": { - "type": "int", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 152152635, - "enum_options": { - "__DEFAULT": 4294967295 - } - }, - "m_nPriority": { - "type": "int", - "id": 2, - "offset": 84, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1515251530, - "enum_options": { - "__DEFAULT": 100 - } - }, - "m_nChance": { - "type": "int", - "id": 3, - "offset": 88, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1860748394, - "enum_options": { - "__DEFAULT": 50 - } - }, - "m_nDestinationPathID": { - "type": "gid", - "id": 4, - "offset": 96, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 107013762 - }, - "m_nDestinationNodeID": { - "type": "int", - "id": 5, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 44784029, - "enum_options": { - "__DEFAULT": 4294967295 - } - } - } - }, - "1059707526": { - "name": "class SharedPointer", - "bases": [ - "ModifyPipsCinematicAction", - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 1059707526, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - } - } - }, - "1838542527": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1838542527, - "properties": { - "m_packageContents": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 268435463, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 3309777205, - "enum_options": { - "__BASECLASS": "ZoneData" - } - } - } - }, - "1838072168": { - "name": "class AutobotMobAvoidance*", - "bases": [ - "PropertyClass" - ], - "hash": 1838072168, - "properties": {} - }, - "1060124391": { - "name": "class PathActionChangePath*", - "bases": [ - "PathBehaviorTemplate::Action", - "PropertyClass" - ], - "hash": 1060124391, - "properties": { - "m_nPathID": { - "type": "gid", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 214382368 - }, - "m_nNodeID": { - "type": "int", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 152152635, - "enum_options": { - "__DEFAULT": 4294967295 - } - }, - "m_nPriority": { - "type": "int", - "id": 2, - "offset": 84, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1515251530, - "enum_options": { - "__DEFAULT": 100 - } - }, - "m_nChance": { - "type": "int", - "id": 3, - "offset": 88, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1860748394, - "enum_options": { - "__DEFAULT": 50 - } - }, - "m_nDestinationPathID": { - "type": "gid", - "id": 4, - "offset": 96, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 107013762 - }, - "m_nDestinationNodeID": { - "type": "int", - "id": 5, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 44784029, - "enum_options": { - "__DEFAULT": 4294967295 - } - } - } - }, - "1060703516": { - "name": "class ObstacleCourseSpeedUpBehaviorTemplate*", - "bases": [ - "ObstacleCourseObstaclePathBaseTemplate", - "ObstacleCourseObstacleBehaviorTemplate", - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 1060703516, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - }, - "m_rate": { - "type": "float", - "id": 1, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 310005283 - }, - "m_penaltyTime": { - "type": "float", - "id": 2, - "offset": 124, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2083389507 - }, - "m_totalObstacleSize": { - "type": "class Vector3D", - "id": 3, - "offset": 128, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2379878414 - }, - "m_bounds": { - "type": "class Vector3D", - "id": 4, - "offset": 152, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1948083181 - }, - "m_orientToPath": { - "type": "bool", - "id": 5, - "offset": 176, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 655036148 - }, - "m_heightUp": { - "type": "float", - "id": 6, - "offset": 140, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2208713013 - }, - "m_heightDown": { - "type": "float", - "id": 7, - "offset": 144, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 655333896 - }, - "m_speedAmount": { - "type": "double", - "id": 8, - "offset": 184, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3716841682 - }, - "m_buffTime": { - "type": "double", - "id": 9, - "offset": 192, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2925547231 - }, - "m_effectWearingOff": { - "type": "std::string", - "id": 10, - "offset": 200, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1540780784 - }, - "m_soundWearingOff": { - "type": "std::string", - "id": 11, - "offset": 232, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1848004524 - }, - "m_effectApply": { - "type": "std::string", - "id": 12, - "offset": 264, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1838368078 - }, - "m_soundApply": { - "type": "std::string", - "id": 13, - "offset": 296, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3579526282 - }, - "m_effectDespawn": { - "type": "std::string", - "id": 14, - "offset": 328, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2174851674 - }, - "m_soundDespawn": { - "type": "std::string", - "id": 15, - "offset": 360, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2068074646 - }, - "m_effectWhileActive": { - "type": "std::string", - "id": 16, - "offset": 392, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3074038205 - }, - "m_soundWhileActive": { - "type": "std::string", - "id": 17, - "offset": 424, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2475003385 - }, - "m_effectRespawning": { - "type": "std::string", - "id": 18, - "offset": 456, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3091986790 - }, - "m_soundRespawning": { - "type": "std::string", - "id": 19, - "offset": 488, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3399210530 - } - } - }, - "1838669794": { - "name": "class WizClientPet*", - "bases": [ - "WizClientLeashedObject", - "WizClientObject", - "ClientObject", - "CoreObject", - "PropertyClass" - ], - "hash": 1838669794, - "properties": { - "m_inactiveBehaviors": { - "type": "class SharedPointer", - "id": 0, - "offset": 224, - "flags": 31, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1850812559 - }, - "m_globalID.m_full": { - "type": "unsigned __int64", - "id": 1, - "offset": 72, - "flags": 16777247, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2312465444 - }, - "m_permID": { - "type": "unsigned __int64", - "id": 2, - "offset": 80, - "flags": 16777247, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1298909658 - }, - "m_location": { - "type": "class Vector3D", - "id": 3, - "offset": 168, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2239683611 - }, - "m_orientation": { - "type": "class Vector3D", - "id": 4, - "offset": 180, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2344058766 - }, - "m_fScale": { - "type": "float", - "id": 5, - "offset": 196, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 503137701 - }, - "m_templateID.m_full": { - "type": "unsigned __int64", - "id": 6, - "offset": 96, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 633907631 - }, - "m_debugName": { - "type": "std::string", - "id": 7, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3553984419 - }, - "m_displayKey": { - "type": "std::string", - "id": 8, - "offset": 136, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3023276954 - }, - "m_zoneTagID": { - "type": "unsigned int", - "id": 9, - "offset": 344, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 965291410 - }, - "m_speedMultiplier": { - "type": "short", - "id": 10, - "offset": 192, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 123130076 - }, - "m_nMobileID": { - "type": "unsigned short", - "id": 11, - "offset": 194, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1054318939 - }, - "m_characterId": { - "type": "gid", - "id": 12, - "offset": 440, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 210498418 - }, - "m_gameStats": { - "type": "class WizGameStats*", - "id": 13, - "offset": 544, - "flags": 27, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3194480406 - }, - "m_leashed": { - "type": "bool", - "id": 14, - "offset": 576, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 603235945 - } - } - }, - "1061876238": { - "name": "class PlayGraphicOnActorAction*", - "bases": [ - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 1061876238, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - }, - "m_assetName": { - "type": "std::string", - "id": 2, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513131580 - }, - "m_bDontFlipActorYaw": { - "type": "bool", - "id": 3, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 632297791 - } - } - }, - "1839805722": { - "name": "class ClientStopHangingRotationCinematicAction*", - "bases": [ - "StopHangingRotationCinematicAction", - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 1839805722, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - }, - "m_cloaked": { - "type": "bool", - "id": 2, - "offset": 124, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 7349510 - }, - "m_type": { - "type": "enum StopHangingRotationCinematicAction::kStopHangingTypes", - "id": 3, - "offset": 120, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2339468071, - "enum_options": { - "kStopHanging_Burn": 0, - "kStopHanging_Add": 1 - } - } - } - }, - "1060789236": { - "name": "class AutobotManager*", - "bases": [ - "PropertyClass" - ], - "hash": 1060789236, - "properties": {} - }, - "1838992429": { - "name": "class WinAnimSizeTime*", - "bases": [ - "WinAnimSize", - "WindowAnimation", - "PropertyClass" - ], - "hash": 1838992429, - "properties": { - "m_bUseDeepCopy": { - "type": "bool", - "id": 0, - "offset": 72, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 433380635 - }, - "m_size": { - "type": "class Size", - "id": 1, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 251247159 - }, - "m_fTimeTotal": { - "type": "float", - "id": 2, - "offset": 88, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 661225456 - }, - "m_fTimeRemaining": { - "type": "float", - "id": 3, - "offset": 92, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1591443014 - }, - "m_currentSize": { - "type": "class Vector3D", - "id": 4, - "offset": 96, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2914066496 - } - } - }, - "1838778020": { - "name": "class CinematicActor*", - "bases": [ - "PropertyClass" - ], - "hash": 1838778020, - "properties": {} - }, - "1061896202": { - "name": "class RegisterPersonaCinematicAction*", - "bases": [ - "CinematicAction", - "PropertyClass" - ], - "hash": 1061896202, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_persona": { - "type": "class Persona*", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2350440768 - } - } - }, - "1839581949": { - "name": "class LinearSoundBehaviorTemplate*", - "bases": [ - "PositionalSoundBehaviorTemplate", - "SoundBehaviorTemplate", - "AreaBehaviorTemplate", - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 1839581949, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - }, - "m_radius": { - "type": "float", - "id": 1, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 989410271 - }, - "m_category": { - "type": "enum AudioCategory", - "id": 2, - "offset": 124, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2951251982, - "enum_options": { - "AudioCategory_Irrelevent": 0, - "AudioCategory_Accoustic": 1, - "AudioCategory_Noise": 2, - "AudioCategory_Music": 3, - "AudioCategory_MusicAtSFXVolume": 4, - "AudioCategory_Dialog": 5, - "AudioCategory_UI": 6, - "AudioCategory_NoiseAtMusicVolume": 7 - } - }, - "m_exclusive": { - "type": "bool", - "id": 3, - "offset": 128, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 824383403 - }, - "m_active": { - "type": "bool", - "id": 4, - "offset": 129, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 239335471 - }, - "m_enableReqs": { - "type": "class SharedPointer", - "id": 5, - "offset": 136, - "flags": 263, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3158020443 - }, - "m_trackFilenameList": { - "type": "std::string", - "id": 6, - "offset": 152, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2531081709 - }, - "m_playList": { - "type": "class PlayListEntry*", - "id": 7, - "offset": 176, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 3907873161 - }, - "m_priority": { - "type": "int", - "id": 8, - "offset": 208, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1235205852 - }, - "m_volume": { - "type": "float", - "id": 9, - "offset": 200, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1162855023 - }, - "m_loopCount": { - "type": "int", - "id": 10, - "offset": 204, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 865634717 - }, - "m_progression": { - "type": "enum PlayList::Progression", - "id": 11, - "offset": 220, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3279400238, - "enum_options": { - "Sequence": 0, - "Random": 1, - "SequenceOnceOnly": 2, - "RandomNoRepeat": 3 - } - }, - "m_progressMin": { - "type": "float", - "id": 12, - "offset": 212, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1497550192 - }, - "m_progressMax": { - "type": "float", - "id": 13, - "offset": 216, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1497549938 - }, - "m_audioFilterSet": { - "type": "unsigned int", - "id": 14, - "offset": 224, - "flags": 33554439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 831339825 - }, - "m_animationNameFilter": { - "type": "std::string", - "id": 15, - "offset": 232, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2292854242 - }, - "m_functionallabel": { - "type": "std::string", - "id": 16, - "offset": 264, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3589331278 - }, - "m_innerRadius": { - "type": "float", - "id": 17, - "offset": 296, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 686816091 - }, - "m_inverted": { - "type": "bool", - "id": 18, - "offset": 300, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1034821044 - }, - "m_fRangeScale": { - "type": "float", - "id": 19, - "offset": 304, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1749294034 - }, - "m_fAttenuationFactor": { - "type": "float", - "id": 20, - "offset": 308, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 273292776 - }, - "m_eAttenuationType": { - "type": "enum PositionInfoAttenuationType", - "id": 21, - "offset": 312, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2427193304, - "enum_options": { - "Standard": 0, - "Unit Range Power": 1 - } - }, - "m_vPositions": { - "type": "class Vector3D", - "id": 22, - "offset": 320, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 3599600160 - } - } - }, - "1838995501": { - "name": "class WinAnimSizeTime", - "bases": [ - "WinAnimSize", - "WindowAnimation", - "PropertyClass" - ], - "hash": 1838995501, - "properties": { - "m_bUseDeepCopy": { - "type": "bool", - "id": 0, - "offset": 72, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 433380635 - }, - "m_size": { - "type": "class Size", - "id": 1, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 251247159 - }, - "m_fTimeTotal": { - "type": "float", - "id": 2, - "offset": 88, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 661225456 - }, - "m_fTimeRemaining": { - "type": "float", - "id": 3, - "offset": 92, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1591443014 - }, - "m_currentSize": { - "type": "class Vector3D", - "id": 4, - "offset": 96, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2914066496 - } - } - }, - "1063715655": { - "name": "class GroundContourBehavior*", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1063715655, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - } - } - }, - "1063526101": { - "name": "class SetTopTeamCinematicAction*", - "bases": [ - "CinematicAction", - "PropertyClass" - ], - "hash": 1063526101, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_interpDuration": { - "type": "float", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237711951 - } - } - }, - "1062174269": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1062174269, - "properties": { - "m_dialog": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 440960800 - }, - "m_goalCount": { - "type": "int", - "id": 1, - "offset": 88, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 774266758 - } - } - }, - "1839582141": { - "name": "class LinearSoundBehaviorTemplate", - "bases": [ - "PositionalSoundBehaviorTemplate", - "SoundBehaviorTemplate", - "AreaBehaviorTemplate", - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 1839582141, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - }, - "m_radius": { - "type": "float", - "id": 1, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 989410271 - }, - "m_category": { - "type": "enum AudioCategory", - "id": 2, - "offset": 124, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2951251982, - "enum_options": { - "AudioCategory_Irrelevent": 0, - "AudioCategory_Accoustic": 1, - "AudioCategory_Noise": 2, - "AudioCategory_Music": 3, - "AudioCategory_MusicAtSFXVolume": 4, - "AudioCategory_Dialog": 5, - "AudioCategory_UI": 6, - "AudioCategory_NoiseAtMusicVolume": 7 - } - }, - "m_exclusive": { - "type": "bool", - "id": 3, - "offset": 128, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 824383403 - }, - "m_active": { - "type": "bool", - "id": 4, - "offset": 129, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 239335471 - }, - "m_enableReqs": { - "type": "class SharedPointer", - "id": 5, - "offset": 136, - "flags": 263, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3158020443 - }, - "m_trackFilenameList": { - "type": "std::string", - "id": 6, - "offset": 152, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2531081709 - }, - "m_playList": { - "type": "class PlayListEntry*", - "id": 7, - "offset": 176, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 3907873161 - }, - "m_priority": { - "type": "int", - "id": 8, - "offset": 208, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1235205852 - }, - "m_volume": { - "type": "float", - "id": 9, - "offset": 200, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1162855023 - }, - "m_loopCount": { - "type": "int", - "id": 10, - "offset": 204, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 865634717 - }, - "m_progression": { - "type": "enum PlayList::Progression", - "id": 11, - "offset": 220, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3279400238, - "enum_options": { - "Sequence": 0, - "Random": 1, - "SequenceOnceOnly": 2, - "RandomNoRepeat": 3 - } - }, - "m_progressMin": { - "type": "float", - "id": 12, - "offset": 212, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1497550192 - }, - "m_progressMax": { - "type": "float", - "id": 13, - "offset": 216, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1497549938 - }, - "m_audioFilterSet": { - "type": "unsigned int", - "id": 14, - "offset": 224, - "flags": 33554439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 831339825 - }, - "m_animationNameFilter": { - "type": "std::string", - "id": 15, - "offset": 232, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2292854242 - }, - "m_functionallabel": { - "type": "std::string", - "id": 16, - "offset": 264, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3589331278 - }, - "m_innerRadius": { - "type": "float", - "id": 17, - "offset": 296, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 686816091 - }, - "m_inverted": { - "type": "bool", - "id": 18, - "offset": 300, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1034821044 - }, - "m_fRangeScale": { - "type": "float", - "id": 19, - "offset": 304, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1749294034 - }, - "m_fAttenuationFactor": { - "type": "float", - "id": 20, - "offset": 308, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 273292776 - }, - "m_eAttenuationType": { - "type": "enum PositionInfoAttenuationType", - "id": 21, - "offset": 312, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2427193304, - "enum_options": { - "Standard": 0, - "Unit Range Power": 1 - } - }, - "m_vPositions": { - "type": "class Vector3D", - "id": 22, - "offset": 320, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 3599600160 - } - } - }, - "1062387633": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1062387633, - "properties": { - "m_playerProgressList": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1898798624 - } - } - }, - "1839806362": { - "name": "class ClientStopHangingRotationCinematicAction", - "bases": [ - "StopHangingRotationCinematicAction", - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 1839806362, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - }, - "m_cloaked": { - "type": "bool", - "id": 2, - "offset": 124, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 7349510 - }, - "m_type": { - "type": "enum StopHangingRotationCinematicAction::kStopHangingTypes", - "id": 3, - "offset": 120, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2339468071, - "enum_options": { - "kStopHanging_Burn": 0, - "kStopHanging_Add": 1 - } - } - } - }, - "1063618991": { - "name": "class VisibilityBehavior*", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1063618991, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_showTo": { - "type": "gid", - "id": 1, - "offset": 112, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 947039004 - }, - "m_hideFrom": { - "type": "gid", - "id": 2, - "offset": 128, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 642644390 - }, - "m_visible": { - "type": "bool", - "id": 3, - "offset": 144, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 810536225 - } - } - }, - "1840116682": { - "name": "class SharedPointer", - "bases": [ - "WinAnimConcurrent", - "WinAnimContainer", - "WindowAnimation", - "PropertyClass" - ], - "hash": 1840116682, - "properties": { - "m_bUseDeepCopy": { - "type": "bool", - "id": 0, - "offset": 72, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 433380635 - }, - "m_winAnimList": { - "type": "class SharedPointer", - "id": 1, - "offset": 80, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1941062728 - }, - "m_bLooping": { - "type": "bool", - "id": 2, - "offset": 104, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2131020845 - }, - "m_finishedAnimList": { - "type": "class SharedPointer", - "id": 3, - "offset": 112, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 3066650884 - } - } - }, - "1896138356": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1896138356, - "properties": { - "m_textKey": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1720060457 - }, - "m_location": { - "type": "class Vector3D", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2239683611 - }, - "m_mapLocation": { - "type": "class Point", - "id": 2, - "offset": 116, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2172826233 - }, - "m_nObjectID": { - "type": "gid", - "id": 3, - "offset": 128, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 537078058 - }, - "m_visible": { - "type": "bool", - "id": 4, - "offset": 136, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 810536225 - } - } - }, - "1064136717": { - "name": "class ClientElixirBenefitBehavior", - "bases": [ - "ClientElixirBehavior", - "ClientTimedItemBehavior", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1064136717, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_expireTime": { - "type": "unsigned int", - "id": 1, - "offset": 112, - "flags": 59, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1836304873 - }, - "m_statsApplied": { - "type": "bool", - "id": 2, - "offset": 328, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 828970945 - } - } - }, - "1840804192": { - "name": "class PermanentShopWindowPassThru*", - "bases": [ - "Window", - "PropertyClass" - ], - "hash": 1840804192, - "properties": { - "m_sName": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306437263 - }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621225959 - }, - "m_Style": { - "type": "unsigned int", - "id": 2, - "offset": 152, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "SCALE_CHILDREN": 2, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "FOCUS_LOCKED": 64, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152 - } - }, - "m_Flags": { - "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } - }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3105139380 - }, - "m_fTargetAlpha": { - "type": "float", - "id": 5, - "offset": 212, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1809129834 - }, - "m_fDisabledAlpha": { - "type": "float", - "id": 6, - "offset": 216, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1389987675 - }, - "m_fAlpha": { - "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 482130755 - }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3623628394 - }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2102211316 - }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1846695875 - }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3389835433 - }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2547159940 - }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2587533771 - }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3091503757 - } - } - }, - "1842139670": { - "name": "class JewelSocketBehaviorBase*", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1842139670, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - } - } - }, - "1063716423": { - "name": "class GroundContourBehavior", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1063716423, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - } - } - }, - "1840660506": { - "name": "class TeleportTransitionTemplate*", - "bases": [ - "PropertyClass" - ], - "hash": 1840660506, - "properties": { - "m_name": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1717359772 - }, - "m_loadScreenOverride": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1633906299 - }, - "m_transInSoundOverride": { - "type": "std::string", - "id": 2, - "offset": 120, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2697765027 - }, - "m_transOutSoundOverride": { - "type": "std::string", - "id": 3, - "offset": 152, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2103733028 - }, - "m_id": { - "type": "unsigned int", - "id": 4, - "offset": 184, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2301988666 - } - } - }, - "1840660496": { - "name": "class TeleportTransitionTemplate", - "bases": [ - "PropertyClass" - ], - "hash": 1840660496, - "properties": { - "m_name": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1717359772 - }, - "m_loadScreenOverride": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1633906299 - }, - "m_transInSoundOverride": { - "type": "std::string", - "id": 2, - "offset": 120, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2697765027 - }, - "m_transOutSoundOverride": { - "type": "std::string", - "id": 3, - "offset": 152, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2103733028 - }, - "m_id": { - "type": "unsigned int", - "id": 4, - "offset": 184, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2301988666 - } - } - }, - "1064137037": { - "name": "class ClientElixirBenefitBehavior*", - "bases": [ - "ClientElixirBehavior", - "ClientTimedItemBehavior", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1064137037, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_expireTime": { - "type": "unsigned int", - "id": 1, - "offset": 112, - "flags": 59, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1836304873 - }, - "m_statsApplied": { - "type": "bool", - "id": 2, - "offset": 328, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 828970945 - } - } - }, - "1840803872": { - "name": "class PermanentShopWindowPassThru", - "bases": [ - "Window", - "PropertyClass" - ], - "hash": 1840803872, - "properties": { - "m_sName": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306437263 - }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621225959 - }, - "m_Style": { - "type": "unsigned int", - "id": 2, - "offset": 152, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "SCALE_CHILDREN": 2, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "FOCUS_LOCKED": 64, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152 - } - }, - "m_Flags": { - "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } - }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3105139380 - }, - "m_fTargetAlpha": { - "type": "float", - "id": 5, - "offset": 212, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1809129834 - }, - "m_fDisabledAlpha": { - "type": "float", - "id": 6, - "offset": 216, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1389987675 - }, - "m_fAlpha": { - "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 482130755 - }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3623628394 - }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2102211316 - }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1846695875 - }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3389835433 - }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2547159940 - }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2587533771 - }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3091503757 - } - } - }, - "1068690525": { - "name": "class SharedPointer", - "bases": [ - "PetCameraActorCinematicAction", - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 1068690525, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - } - } - }, - "1067357068": { - "name": "class SharedPointer", - "bases": [ - "Window", - "PropertyClass" - ], - "hash": 1067357068, - "properties": { - "m_sName": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306437263 - }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621225959 - }, - "m_Style": { - "type": "unsigned int", - "id": 2, - "offset": 152, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "SCALE_CHILDREN": 2, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "FOCUS_LOCKED": 64, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152 - } - }, - "m_Flags": { - "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } - }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3105139380 - }, - "m_fTargetAlpha": { - "type": "float", - "id": 5, - "offset": 212, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1809129834 - }, - "m_fDisabledAlpha": { - "type": "float", - "id": 6, - "offset": 216, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1389987675 - }, - "m_fAlpha": { - "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 482130755 - }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3623628394 - }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2102211316 - }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1846695875 - }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3389835433 - }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2547159940 - }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2587533771 - }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3091503757 - } - } - }, - "1067051094": { - "name": "class HelpChatOperator", - "bases": [ - "PropertyClass" - ], - "hash": 1067051094, - "properties": { - "m_rootElement": { - "type": "class HelpChatElement", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2242085258 - } - } - }, - "1841474166": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1841474166, - "properties": { - "m_noteName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 65543, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2085772594 - }, - "m_duration": { - "type": "float", - "id": 1, - "offset": 104, - "flags": 65543, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 920323453 - } - } - }, - "1065088435": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1065088435, - "properties": { - "m_logoList": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 906435731 - } - } - }, - "1064574218": { - "name": "class ParticleEmitter2D", - "bases": [ - "PropertyClass" - ], - "hash": 1064574218, - "properties": {} - }, - "1846355199": { - "name": "class ServiceMementoBase", - "bases": [ - "PropertyClass" - ], - "hash": 1846355199, - "properties": { - "m_serviceOptions": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2340755721 - }, - "m_personaMadlibs": { - "type": "class SharedPointer", - "id": 1, - "offset": 96, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2418856780 - }, - "m_npcNameKey": { - "type": "std::string", - "id": 2, - "offset": 112, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1976589766 - }, - "m_npcTextKey": { - "type": "std::string", - "id": 3, - "offset": 144, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3453072394 - }, - "m_npcIcon": { - "type": "std::string", - "id": 4, - "offset": 176, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2965253381 - }, - "m_npcGreetingSound": { - "type": "std::string", - "id": 5, - "offset": 208, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1826980602 - }, - "m_npcFarewellSound": { - "type": "std::string", - "id": 6, - "offset": 240, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3241528183 - }, - "m_bTurnPlayerToFace": { - "type": "bool", - "id": 7, - "offset": 272, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 540096893 - }, - "m_clickToInteractOnly": { - "type": "bool", - "id": 8, - "offset": 273, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1696440536 - } - } - }, - "1844855459": { - "name": "class JewelSocket", - "bases": [ - "PropertyClass" - ], - "hash": 1844855459, - "properties": { - "m_socketType": { - "type": "enum JewelSocket::JewelSocketType", - "id": 0, - "offset": 72, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3989417709, - "enum_options": { - "SOCKETTYPE_SQUARE": 0, - "SOCKETTYPE_CIRCLE": 1, - "SOCKETTYPE_TRIANGLE": 2, - "SOCKETTYPE_TEAR": 3, - "SOCKETTYPE_PET": 4, - "SOCKETTYPE_PINSQUAREPIP": 5, - "SOCKETTYPE_PINSQUARESHIELD": 6, - "SOCKETTYPE_PINSQUARESWORD": 7 - } - }, - "m_bLockable": { - "type": "bool", - "id": 1, - "offset": 76, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1046128242 - } - } - }, - "1066450275": { - "name": "class SharedPointer", - "bases": [ - "CountdownBehavior", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1066450275, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_time": { - "type": "float", - "id": 1, - "offset": 112, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 310085638 - } - } - }, - "1842926102": { - "name": "class JewelSocketBehaviorBase", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1842926102, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - } - } - }, - "1842518693": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1842518693, - "properties": { - "m_playerName0": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2243035545 - }, - "m_score0": { - "type": "unsigned short", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1494703316 - }, - "m_playerName1": { - "type": "std::string", - "id": 2, - "offset": 112, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2243035546 - }, - "m_score1": { - "type": "unsigned short", - "id": 3, - "offset": 144, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1494703317 - }, - "m_playerName2": { - "type": "std::string", - "id": 4, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2243035547 - }, - "m_score2": { - "type": "unsigned short", - "id": 5, - "offset": 184, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1494703318 - } - } - }, - "1067149398": { - "name": "class HelpChatOperator*", - "bases": [ - "PropertyClass" - ], - "hash": 1067149398, - "properties": { - "m_rootElement": { - "type": "class HelpChatElement", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2242085258 - } - } - }, - "1843600150": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1843600150, - "properties": { - "m_report": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2579374715 - } - } - }, - "1067851282": { - "name": "class SharedPointer", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1067851282, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_hatchDayPetCode": { - "type": "unsigned int", - "id": 1, - "offset": 112, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1354692695 - } - } - }, - "1067530955": { - "name": "class InteractiveMusicButtonSample", - "bases": [ - "PropertyClass" - ], - "hash": 1067530955, - "properties": { - "m_buttonName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3388080120 - }, - "m_sampleFilename": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2612990110 - }, - "m_hotKey": { - "type": "std::string", - "id": 2, - "offset": 136, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2022699503 - }, - "m_alternateSampleFilenameList": { - "type": "std::string", - "id": 3, - "offset": 168, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2532699834 - }, - "m_limitToOneSample": { - "type": "int", - "id": 4, - "offset": 184, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1935781536 - }, - "m_altHotKey": { - "type": "std::string", - "id": 5, - "offset": 192, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1836211184 - } - } - }, - "1845621453": { - "name": "class HousingPaletteBehaviorTemplate", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 1845621453, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - }, - "m_housingPaletteType": { - "type": "int", - "id": 1, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 658067464 - }, - "m_primaryTintColors": { - "type": "class Vector3D", - "id": 2, - "offset": 128, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2885436919 - }, - "m_secondaryTintColors": { - "type": "class Vector3D", - "id": 3, - "offset": 152, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 3624818395 - } - } - }, - "1067520715": { - "name": "class InteractiveMusicButtonSample*", - "bases": [ - "PropertyClass" - ], - "hash": 1067520715, - "properties": { - "m_buttonName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3388080120 - }, - "m_sampleFilename": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2612990110 - }, - "m_hotKey": { - "type": "std::string", - "id": 2, - "offset": 136, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2022699503 - }, - "m_alternateSampleFilenameList": { - "type": "std::string", - "id": 3, - "offset": 168, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2532699834 - }, - "m_limitToOneSample": { - "type": "int", - "id": 4, - "offset": 184, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1935781536 - }, - "m_altHotKey": { - "type": "std::string", - "id": 5, - "offset": 192, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1836211184 - } - } - }, - "1845446045": { - "name": "class SharedPointer", - "bases": [ - "GeomParams", - "PropertyClass" - ], - "hash": 1845446045, - "properties": { - "m_eType": { - "type": "enum ProxyType", - "id": 0, - "offset": 72, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1656534066, - "enum_options": { - "ProxyTypeBox": 0, - "ProxyTypeRay": 1, - "ProxyTypeSphere": 2, - "ProxyTypeCylinder": 3, - "ProxyTypeTube": 4, - "ProxyTypePlane": 5, - "ProxyTypeMesh": 6, - "ProxyTypeInvalid": 7 - } - }, - "m_fRadius": { - "type": "float", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 787972805 - }, - "m_fLength": { - "type": "float", - "id": 2, - "offset": 84, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 558261279 - } - } - }, - "1845293453": { - "name": "class PolymorphEffectInfo*", - "bases": [ - "GameEffectInfo", - "PropertyClass" - ], - "hash": 1845293453, - "properties": { - "m_effectName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2029161513 - }, - "m_templateID": { - "type": "unsigned int", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1286746870 - } - } - }, - "1067533744": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1067533744, - "properties": { - "m_domain": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1865930451 - }, - "m_path": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1717431880 - } - } - }, - "1846351613": { - "name": "class SharedPointer", - "bases": [ - "GameEffectTemplate", - "PropertyClass" - ], - "hash": 1846351613, - "properties": { - "m_effectName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2029161513 - }, - "m_effectCategory": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1852673222 - }, - "m_sortOrder": { - "type": "int", - "id": 2, - "offset": 148, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1411218206 - }, - "m_duration": { - "type": "double", - "id": 3, - "offset": 192, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2727932435 - }, - "m_stackingCategories": { - "type": "std::string", - "id": 4, - "offset": 160, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1774497525 - }, - "m_isPersistent": { - "type": "bool", - "id": 5, - "offset": 153, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 923861920 - }, - "m_bIsOnPet": { - "type": "bool", - "id": 6, - "offset": 154, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 522593303 - }, - "m_isPublic": { - "type": "bool", - "id": 7, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1728439822 - }, - "m_visualEffectAddName": { - "type": "std::string", - "id": 8, - "offset": 200, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3382086694 - }, - "m_visualEffectRemoveName": { - "type": "std::string", - "id": 9, - "offset": 232, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1541697323 - }, - "m_onAddFunctorName": { - "type": "std::string", - "id": 10, - "offset": 280, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1561843107 - }, - "m_onRemoveFunctorName": { - "type": "std::string", - "id": 11, - "offset": 312, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2559017864 - }, - "m_stackingRule": { - "type": "enum STACKING_RULE", - "id": 12, - "offset": 144, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 431568889, - "enum_options": { - "STACKING_ALLOWED": 0, - "STACKING_NOSTACK": 1, - "STACKING_REPLACE": 2 - } - } - } - }, - "1068318132": { - "name": "class SharedPointer", - "bases": [ - "DerbyModifyMorale", - "DerbyEffect", - "PropertyClass" - ], - "hash": 1068318132, - "properties": { - "m_buffType": { - "type": "enum DerbyTalentBuffType", - "id": 0, - "offset": 92, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1149251982, - "enum_options": { - "Buff": 0, - "Debuff": 1, - "Neither": 2 - } - }, - "m_kTarget": { - "type": "enum DerbyTargetType", - "id": 1, - "offset": 96, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1807803351, - "enum_options": { - "kTargetInFront": 0, - "kTargetBehind": 1, - "kTargetFirst": 2, - "kTargetSelf": 3, - "kTargetAll": 4, - "kTargetLast": 5 - } - }, - "m_nDuration": { - "type": "int", - "id": 2, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1110167982 - }, - "m_effectID": { - "type": "unsigned int", - "id": 3, - "offset": 88, - "flags": 24, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2347630439 - }, - "m_imageFilename": { - "type": "std::string", - "id": 4, - "offset": 112, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2813328063 - }, - "m_iconIndex": { - "type": "unsigned int", - "id": 5, - "offset": 144, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1265133262 - }, - "m_soundOnActivate": { - "type": "std::string", - "id": 6, - "offset": 152, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1956929714 - }, - "m_soundOnTarget": { - "type": "std::string", - "id": 7, - "offset": 184, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3444214056 - }, - "m_targetParticleEffect": { - "type": "std::string", - "id": 8, - "offset": 216, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3048234723 - }, - "m_overheadMessage": { - "type": "std::string", - "id": 9, - "offset": 248, - "flags": 8388639, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1701018190 - }, - "m_requirements": { - "type": "class RequirementList", - "id": 10, - "offset": 280, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2840988582 - }, - "m_nMoraleChange": { - "type": "int", - "id": 11, - "offset": 376, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1624723118 - } - } - }, - "1846251843": { - "name": "class SharedPointer", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1846251843, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - } - } - }, - "1068793202": { - "name": "class SharedPointer", - "bases": [ - "GeomParams", - "PropertyClass" - ], - "hash": 1068793202, - "properties": { - "m_eType": { - "type": "enum ProxyType", - "id": 0, - "offset": 72, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1656534066, - "enum_options": { - "ProxyTypeBox": 0, - "ProxyTypeRay": 1, - "ProxyTypeSphere": 2, - "ProxyTypeCylinder": 3, - "ProxyTypeTube": 4, - "ProxyTypePlane": 5, - "ProxyTypeMesh": 6, - "ProxyTypeInvalid": 7 - } - }, - "m_vPosition": { - "type": "class Vector3D", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2432577069 - }, - "m_vDirection": { - "type": "class Vector3D", - "id": 2, - "offset": 92, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2142285753 - }, - "m_fLength": { - "type": "float", - "id": 3, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 558261279 - } - } - }, - "1068695141": { - "name": "class GardeningShedBehavior", - "bases": [ - "GardeningShedBehaviorBase", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1068695141, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_seedList": { - "type": "unsigned int", - "id": 1, - "offset": 112, - "flags": 65567, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 672751594 - }, - "m_seedData": { - "type": "std::string", - "id": 2, - "offset": 128, - "flags": 551, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1958752566 - } - } - }, - "1848072167": { - "name": "class SharedPointer", - "bases": [ - "EquippedItemInfo", - "PropertyClass" - ], - "hash": 1848072167, - "properties": { - "m_itemID": { - "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 780964329 - }, - "m_baseColor": { - "type": "bui5", - "id": 1, - "offset": 92, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1433198221 - }, - "m_trimColor": { - "type": "bui5", - "id": 2, - "offset": 96, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1198446862 - }, - "m_pattern": { - "type": "bui5", - "id": 3, - "offset": 100, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1338360593 - }, - "m_displayID": { - "type": "unsigned int", - "id": 4, - "offset": 88, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1233846672 - }, - "m_pJewelInfo": { - "type": "class SharedPointer", - "id": 5, - "offset": 120, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 387523703 - }, - "m_fullColor": { - "type": "u24", - "id": 6, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 301226616 - } - } - }, - "1068694373": { - "name": "class GardeningShedBehavior*", - "bases": [ - "GardeningShedBehaviorBase", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1068694373, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_seedList": { - "type": "unsigned int", - "id": 1, - "offset": 112, - "flags": 65567, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 672751594 - }, - "m_seedData": { - "type": "std::string", - "id": 2, - "offset": 128, - "flags": 551, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1958752566 - } - } - }, - "1847449722": { - "name": "class SharedPointer", - "bases": [ - "ServiceOptionBase", - "PropertyClass" - ], - "hash": 1847449722, - "properties": { - "m_serviceName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2206028813 - }, - "m_iconKey": { - "type": "std::string", - "id": 1, - "offset": 168, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2457138637 - }, - "m_displayKey": { - "type": "std::string", - "id": 2, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3023276954 - }, - "m_serviceIndex": { - "type": "unsigned int", - "id": 3, - "offset": 204, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2103126710 - }, - "m_forceInteract": { - "type": "bool", - "id": 4, - "offset": 200, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1705789564 - } - } - }, - "1847642295": { - "name": "class ResultList", - "bases": [ - "PropertyClass" - ], - "hash": 1847642295, - "properties": { - "m_results": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 3083396188 - } - } - }, - "1068788274": { - "name": "class SharedPointer", - "bases": [ - "GeomParams", - "PropertyClass" - ], - "hash": 1068788274, - "properties": { - "m_eType": { - "type": "enum ProxyType", - "id": 0, - "offset": 72, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1656534066, - "enum_options": { - "ProxyTypeBox": 0, - "ProxyTypeRay": 1, - "ProxyTypeSphere": 2, - "ProxyTypeCylinder": 3, - "ProxyTypeTube": 4, - "ProxyTypePlane": 5, - "ProxyTypeMesh": 6, - "ProxyTypeInvalid": 7 - } - }, - "m_fLength": { - "type": "float", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 558261279 - }, - "m_fWidth": { - "type": "float", - "id": 2, - "offset": 84, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 508100541 - }, - "m_fDepth": { - "type": "float", - "id": 3, - "offset": 88, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 485437362 - } - } - }, - "1068709043": { - "name": "class SharedPointer", - "bases": [ - "Requirement", - "PropertyClass" - ], - "hash": 1068709043, - "properties": { - "m_applyNOT": { - "type": "bool", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1746328074, - "enum_options": { - "__DEFAULT": 0 - } - }, - "m_operator": { - "type": "enum Requirement::Operator", - "id": 1, - "offset": 76, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2672792317, - "enum_options": { - "ROP_AND": 0, - "ROP_OR": 1, - "__DEFAULT": "ROP_AND" - } - } - } - }, - "1848297655": { - "name": "class ResultList*", - "bases": [ - "PropertyClass" - ], - "hash": 1848297655, - "properties": { - "m_results": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 3083396188 - } - } - }, - "1848861984": { - "name": "class ReqItemHasAdjective", - "bases": [ - "Requirement", - "PropertyClass" - ], - "hash": 1848861984, - "properties": { - "m_applyNOT": { - "type": "bool", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1746328074, - "enum_options": { - "__DEFAULT": 0 - } - }, - "m_operator": { - "type": "enum Requirement::Operator", - "id": 1, - "offset": 76, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2672792317, - "enum_options": { - "ROP_AND": 0, - "ROP_OR": 1, - "__DEFAULT": "ROP_AND" - } - }, - "m_adjective": { - "type": "std::string", - "id": 2, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3429518154 - } - } - }, - "1068918295": { - "name": "class CoreTemplate", - "bases": [ - "PropertyClass" - ], - "hash": 1068918295, - "properties": { - "m_behaviors": { - "type": "class BehaviorTemplate*", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1197808594 - } - } - }, - "1068829214": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1068829214, - "properties": { - "m_blueTeamScore": { - "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1519259416 - }, - "m_orangeTeamScore": { - "type": "unsigned int", - "id": 1, - "offset": 76, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 988508012 - }, - "m_redTeamScore": { - "type": "unsigned int", - "id": 2, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1672048811 - }, - "m_passport": { - "type": "unsigned int", - "id": 3, - "offset": 84, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1362521513 - }, - "m_gameState": { - "type": "std::string", - "id": 4, - "offset": 88, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2824634006 - } - } - }, - "1874854708": { - "name": "class SharedPointer", - "bases": [ - "ServiceOptionBase", - "PropertyClass" - ], - "hash": 1874854708, - "properties": { - "m_serviceName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2206028813 - }, - "m_iconKey": { - "type": "std::string", - "id": 1, - "offset": 168, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2457138637 - }, - "m_displayKey": { - "type": "std::string", - "id": 2, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3023276954 - }, - "m_serviceIndex": { - "type": "unsigned int", - "id": 3, - "offset": 204, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2103126710 - }, - "m_forceInteract": { - "type": "bool", - "id": 4, - "offset": 200, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1705789564 - } - } - }, - "1864197091": { - "name": "class SigilTemplate*", - "bases": [ - "CoreTemplate", - "PropertyClass" - ], - "hash": 1864197091, - "properties": { - "m_behaviors": { - "type": "class BehaviorTemplate*", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1197808594 - }, - "m_sigilName": { - "type": "std::string", - "id": 1, - "offset": 96, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3177657588 - }, - "m_sigilType": { - "type": "std::string", - "id": 2, - "offset": 136, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3177899445 - }, - "m_entryResults": { - "type": "class ResultList*", - "id": 3, - "offset": 184, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3262956108 - }, - "m_requirements": { - "type": "class RequirementList*", - "id": 4, - "offset": 176, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2840985510 - }, - "m_cancelResults": { - "type": "class ResultList*", - "id": 5, - "offset": 192, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3799257120 - }, - "m_completeResults": { - "type": "class ResultList*", - "id": 6, - "offset": 200, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1964258099 - }, - "m_useState": { - "type": "bool", - "id": 7, - "offset": 216, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 683320865 - }, - "m_stateOverride": { - "type": "std::string", - "id": 8, - "offset": 224, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1949715548 - }, - "m_subCircles": { - "type": "class SigilSubCircle*", - "id": 9, - "offset": 256, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2227135493 - } - } - }, - "1068979478": { - "name": "class GoalTemplate", - "bases": [ - "CoreTemplate", - "PropertyClass" - ], - "hash": 1068979478, - "properties": { - "m_behaviors": { - "type": "class BehaviorTemplate*", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1197808594 - }, - "m_goalName": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1521627807 - }, - "m_goalNameID": { - "type": "unsigned int", - "id": 2, - "offset": 496, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 403158846 - }, - "m_goalTitle": { - "type": "std::string", - "id": 3, - "offset": 136, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2291910240 - }, - "m_goalUnderway": { - "type": "std::string", - "id": 4, - "offset": 168, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3153144269 - }, - "m_hyperlink": { - "type": "std::string", - "id": 5, - "offset": 200, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2887798993 - }, - "m_completeText": { - "type": "std::string", - "id": 6, - "offset": 232, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2767458393 - }, - "m_completeResults": { - "type": "class ResultList*", - "id": 7, - "offset": 440, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1964258099 - }, - "m_goalRequirements": { - "type": "class RequirementList*", - "id": 8, - "offset": 448, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2979967145 - }, - "m_tallyCounter": { - "type": "class TallyCounterTemplate*", - "id": 9, - "offset": 456, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1884546193 - }, - "m_locationName": { - "type": "std::string", - "id": 10, - "offset": 272, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1824218389 - }, - "m_displayImage1": { - "type": "std::string", - "id": 11, - "offset": 304, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1959572133 - }, - "m_displayImage2": { - "type": "std::string", - "id": 12, - "offset": 336, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1959572134 - }, - "m_clientTags": { - "type": "std::string", - "id": 13, - "offset": 368, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2319030025 - }, - "m_genericEvents": { - "type": "std::string", - "id": 14, - "offset": 384, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 3466670829 - }, - "m_autoQualify": { - "type": "bool", - "id": 15, - "offset": 400, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1878907431 - }, - "m_autoComplete": { - "type": "bool", - "id": 16, - "offset": 401, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1302545445 - }, - "m_destinationZone": { - "type": "std::string", - "id": 17, - "offset": 408, - "flags": 268435463, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2605356153, - "enum_options": { - "__BASECLASS": "ZoneData" - } - }, - "m_dialogList": { - "type": "class ActorDialogListBase*", - "id": 18, - "offset": 264, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1909154969 - }, - "m_goalType": { - "type": "enum GoalTemplate::GOAL_TYPE", - "id": 19, - "offset": 96, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1488021149, - "enum_options": { - "GOAL_TYPE_UNKNOWN": 0, - "GOAL_TYPE_BOUNTY": 1, - "GOAL_TYPE_BOUNTYCOLLECT": 2, - "GOAL_TYPE_SCAVENGE": 3, - "GOAL_TYPE_PERSONA": 4, - "GOAL_TYPE_WAYPOINT": 5, - "GOAL_TYPE_SCAVENGEFAKE": 6, - "GOAL_TYPE_ACHIEVERANK": 7, - "GOAL_TYPE_USAGE": 8, - "GOAL_TYPE_COMPLETEQUEST": 9, - "GOAL_TYPE_SOCIARANK": 10, - "GOAL_TYPE_SOCIACURRENCY": 11, - "GOAL_TYPE_SOCIAMINIGAME": 12, - "GOAL_TYPE_SOCIAGIVEITEM": 13, - "GOAL_TYPE_SOCIAGETITEM": 14, - "GOAL_TYPE_COLLECTAFTERBOUNTY": 15, - "GOAL_TYPE_ENCOUNTER_WAYPOINT_FOREACH": 16 - } - }, - "m_noQuestHelper": { - "type": "bool", - "id": 20, - "offset": 500, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 578010882, - "enum_options": { - "__DEFAULT": 0 - } - }, - "m_petOnlyQuest": { - "type": "bool", - "id": 21, - "offset": 501, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 679359344, - "enum_options": { - "__DEFAULT": 0 - } - }, - "m_activateResults": { - "type": "class ResultList*", - "id": 22, - "offset": 504, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3790153995 - }, - "m_hideGoalFloatyText": { - "type": "bool", - "id": 23, - "offset": 512, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1919383204, - "enum_options": { - "__DEFAULT": 0 - } - } - } - }, - "1856697791": { - "name": "class BGSigilProxyBehavior", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1856697791, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_autoCapTimer": { - "type": "class BGSigilTimer", - "id": 1, - "offset": 112, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2270881950 - }, - "m_timerTeam": { - "type": "std::string", - "id": 2, - "offset": 216, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1994153155 - }, - "m_teamOwner": { - "type": "std::string", - "id": 3, - "offset": 248, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3126686637 - }, - "m_combatActive": { - "type": "bool", - "id": 4, - "offset": 280, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1372743333 - }, - "m_captureable": { - "type": "bool", - "id": 5, - "offset": 281, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1101963387 - }, - "m_allowAutoCap": { - "type": "bool", - "id": 6, - "offset": 282, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 946300927 - }, - "m_sigilAggroRange": { - "type": "float", - "id": 7, - "offset": 284, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 995063020 - }, - "m_playerAggroRange": { - "type": "float", - "id": 8, - "offset": 288, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1776075073 - }, - "m_triggerOrientation": { - "type": "class Vector3D", - "id": 9, - "offset": 292, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2671004802 - }, - "m_triggerLocation": { - "type": "class Vector3D", - "id": 10, - "offset": 304, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2573315471 - }, - "m_triggerBox": { - "type": "bool", - "id": 11, - "offset": 316, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 962168144 - }, - "m_width": { - "type": "float", - "id": 12, - "offset": 320, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 904656279 - }, - "m_length": { - "type": "float", - "id": 13, - "offset": 324, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 759698745 - }, - "m_triggerSphere": { - "type": "bool", - "id": 14, - "offset": 328, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1467830382 - }, - "m_radius": { - "type": "float", - "id": 15, - "offset": 332, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 989410271 - }, - "m_inRange": { - "type": "class SharedPointer", - "id": 16, - "offset": 336, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2259190010 - } - } - }, - "1851944083": { - "name": "class ClientModifyPipsCinematicAction*", - "bases": [ - "ModifyPipsCinematicAction", - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 1851944083, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - } - } - }, - "1850291511": { - "name": "class EquippedItemInfo", - "bases": [ - "PropertyClass" - ], - "hash": 1850291511, - "properties": { - "m_itemID": { - "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 780964329 - } - } - }, - "1078657337": { - "name": "enum PassInfo::AccessPassType", - "bases": [], - "hash": 1078657337, - "properties": {} - }, - "1850260684": { - "name": "class PCSButton*", - "bases": [ - "ControlButton", - "Window", - "PropertyClass" - ], - "hash": 1850260684, - "properties": { - "m_sName": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306437263 - }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621225959 - }, - "m_Style": { - "type": "unsigned int", - "id": 2, - "offset": 152, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152, - "SHOW_HOTKEY": 16777216, - "EFFECT_SCALE": 67108864, - "LOCK_ICON_SIZE": 33554432, - "LEFT_TEXT": 536870912, - "NO_FIT_TEXT": 1073741824 - } - }, - "m_Flags": { - "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } - }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3105139380 - }, - "m_fTargetAlpha": { - "type": "float", - "id": 5, - "offset": 212, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1809129834 - }, - "m_fDisabledAlpha": { - "type": "float", - "id": 6, - "offset": 216, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1389987675 - }, - "m_fAlpha": { - "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 482130755 - }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3623628394 - }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2102211316 - }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1846695875 - }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3389835433 - }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2547159940 - }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2587533771 - }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3091503757 - }, - "m_bToggle": { - "type": "bool", - "id": 16, - "offset": 608, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2071810903 - }, - "m_bButtonDown": { - "type": "bool", - "id": 17, - "offset": 609, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 840041705 - }, - "m_sLabel": { - "type": "std::wstring", - "id": 18, - "offset": 616, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2207009163 - }, - "m_labelOffset": { - "type": "class Rect", - "id": 19, - "offset": 832, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1990646723 - }, - "m_pButton": { - "type": "class SharedPointer", - "id": 20, - "offset": 656, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1543855875 - }, - "m_HotKey": { - "type": "unsigned int", - "id": 21, - "offset": 672, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1631553409 - }, - "m_Color": { - "type": "class Color", - "id": 22, - "offset": 676, - "flags": 262279, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1753714077 - }, - "m_bCursorOver": { - "type": "bool", - "id": 23, - "offset": 689, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 283981103 - }, - "m_bAbortWhenCursorNotOver": { - "type": "bool", - "id": 24, - "offset": 706, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 325405258 - }, - "m_bHotKeyDown": { - "type": "bool", - "id": 25, - "offset": 680, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 616989185 - }, - "m_fTime": { - "type": "float", - "id": 26, - "offset": 684, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 883746156 - }, - "m_bGreyed": { - "type": "bool", - "id": 27, - "offset": 688, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1566556053 - }, - "m_fMaxScale": { - "type": "float", - "id": 28, - "offset": 692, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2070186635 - }, - "m_fScaleSpeed": { - "type": "float", - "id": 29, - "offset": 696, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1457135702 - }, - "m_bUseDropShadow": { - "type": "bool", - "id": 30, - "offset": 704, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 93063037 - }, - "m_bUseOutline": { - "type": "bool", - "id": 31, - "offset": 705, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 744292994 - }, - "m_pGreyedState": { - "type": "class SharedPointer", - "id": 32, - "offset": 768, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2703352263 - }, - "m_pNormalState": { - "type": "class SharedPointer", - "id": 33, - "offset": 752, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1887909808 - }, - "m_pHighlightedState": { - "type": "class SharedPointer", - "id": 34, - "offset": 784, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2200177608 - }, - "m_pSelectedState": { - "type": "class SharedPointer", - "id": 35, - "offset": 800, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2266776432 - }, - "m_pDepressedState": { - "type": "class SharedPointer", - "id": 36, - "offset": 816, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1878185798 - }, - "m_itemID": { - "type": "gid", - "id": 37, - "offset": 992, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 569545460 - }, - "m_currencyType": { - "type": "enum PermanentShop::CurrencyTab", - "id": 38, - "offset": 1000, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 405352622, - "enum_options": { - "Gold": 0, - "Crowns": 1, - "ArenaTickets": 2 - } - } - } - }, - "1074646514": { - "name": "class SharedPointer", - "bases": [ - "ServiceOptionBase", - "PropertyClass" - ], - "hash": 1074646514, - "properties": { - "m_serviceName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2206028813 - }, - "m_iconKey": { - "type": "std::string", - "id": 1, - "offset": 168, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2457138637 - }, - "m_displayKey": { - "type": "std::string", - "id": 2, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3023276954 - }, - "m_serviceIndex": { - "type": "unsigned int", - "id": 3, - "offset": 204, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2103126710 - }, - "m_forceInteract": { - "type": "bool", - "id": 4, - "offset": 200, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1705789564 - }, - "m_trainingIndex": { - "type": "int", - "id": 5, - "offset": 216, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 217389422 - }, - "m_trainingCost": { - "type": "int", - "id": 6, - "offset": 220, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 982588239 - }, - "m_spellName": { - "type": "std::string", - "id": 7, - "offset": 264, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2688485244 - }, - "m_bCanTrain": { - "type": "bool", - "id": 8, - "offset": 228, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1382854949 - }, - "m_requiredLevel": { - "type": "int", - "id": 9, - "offset": 224, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1148041971 - }, - "m_requirements": { - "type": "class SharedPointer", - "id": 10, - "offset": 232, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3043523229 - }, - "m_failedRequirement": { - "type": "class SharedPointer", - "id": 11, - "offset": 248, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2322583945 - } - } - }, - "1850213974": { - "name": "class ClientLeashBehavior", - "bases": [ - "LeashBehavior", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1850213974, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_ownerGid": { - "type": "gid", - "id": 1, - "offset": 128, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1765088663 - }, - "m_radius": { - "type": "float", - "id": 2, - "offset": 136, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 989410271 - }, - "m_angle": { - "type": "float", - "id": 3, - "offset": 140, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 878748702 - }, - "m_leashType": { - "type": "enum LeashType", - "id": 4, - "offset": 144, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2170708051, - "enum_options": { - "LLT_Rigid": 0, - "LLT_Elastic": 1 - } - }, - "m_alwaysDisplay": { - "type": "bool", - "id": 5, - "offset": 161, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2071781402 - } - } - }, - "1072381962": { - "name": "class RegisterPersonaCinematicAction", - "bases": [ - "CinematicAction", - "PropertyClass" - ], - "hash": 1072381962, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_persona": { - "type": "class Persona*", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2350440768 - } - } - }, - "1850034816": { - "name": "class SharedPointer", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 1850034816, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - }, - "m_isKiosk": { - "type": "bool", - "id": 1, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1545253296 - } - } - }, - "1069376939": { - "name": "class PvPMatchInfo*", - "bases": [ - "ArenaMatchInfo", - "PropertyClass" - ], - "hash": 1069376939, - "properties": { - "m_matchID": { - "type": "gid", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1757621298 - }, - "m_matchNameID": { - "type": "unsigned int", - "id": 1, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1751361288 - }, - "m_teams": { - "type": "class SharedPointer", - "id": 2, - "offset": 96, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1984373608 - }, - "m_matchName": { - "type": "std::string", - "id": 3, - "offset": 112, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2061215721 - }, - "m_matchTitle": { - "type": "std::string", - "id": 4, - "offset": 144, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2918442218 - }, - "m_matchZoneID": { - "type": "gid", - "id": 5, - "offset": 176, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2026205966 - }, - "m_creatorID": { - "type": "gid", - "id": 6, - "offset": 88, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1051766037 - }, - "m_matchZone": { - "type": "std::string", - "id": 7, - "offset": 184, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2061662244 - }, - "m_startTime": { - "type": "int", - "id": 8, - "offset": 216, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1386968823 - }, - "m_status": { - "type": "int", - "id": 9, - "offset": 220, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 960781182 - }, - "m_friendsOnly": { - "type": "bool", - "id": 10, - "offset": 236, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1420401792 - }, - "m_tournamentNameID": { - "type": "unsigned int", - "id": 11, - "offset": 224, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1799846440 - }, - "m_leagueID": { - "type": "unsigned int", - "id": 12, - "offset": 228, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 692361645 - }, - "m_seasonID": { - "type": "unsigned int", - "id": 13, - "offset": 232, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 535260643 - }, - "m_bUpdateLadder": { - "type": "bool", - "id": 14, - "offset": 248, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1937525956 - }, - "m_maxPointsPerMatch": { - "type": "unsigned int", - "id": 15, - "offset": 240, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1397040900 - }, - "m_estimatedWeight": { - "type": "float", - "id": 16, - "offset": 244, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1374360127 - }, - "m_maxELOError": { - "type": "int", - "id": 17, - "offset": 252, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 318998922 - }, - "m_uniqueMatchID": { - "type": "std::string", - "id": 18, - "offset": 264, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3291026220 - }, - "m_pvpDuelModifiersTemplates": { - "type": "class SharedPointer", - "id": 19, - "offset": 296, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1193155411 - }, - "m_teamSize": { - "type": "unsigned int", - "id": 20, - "offset": 256, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2343388751 - }, - "m_joinQueueRequirements": { - "type": "class SharedPointer", - "id": 21, - "offset": 312, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2746080983 - }, - "m_timeLimitSec": { - "type": "unsigned int", - "id": 22, - "offset": 328, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 312519798 - }, - "m_useHistoricDiego": { - "type": "bool", - "id": 23, - "offset": 352, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1688842509 - }, - "m_ignoredList": { - "type": "gid", - "id": 24, - "offset": 336, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1850924028 - }, - "m_matchTimer": { - "type": "float", - "id": 25, - "offset": 356, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1510935909 - }, - "m_bonusTime": { - "type": "int", - "id": 26, - "offset": 360, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1757496496 - }, - "m_passPenalty": { - "type": "int", - "id": 27, - "offset": 364, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 982951662 - }, - "m_yellowTime": { - "type": "int", - "id": 28, - "offset": 368, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1017028741 - }, - "m_redTime": { - "type": "int", - "id": 29, - "offset": 372, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1909556708 - }, - "m_minTurnTime": { - "type": "int", - "id": 30, - "offset": 376, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 652524886 - }, - "m_effects": { - "type": "class SharedPointer", - "id": 31, - "offset": 384, - "flags": 31, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 804962647 - }, - "m_updateBattlePassPoints": { - "type": "bool", - "id": 32, - "offset": 408, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 713306342 - }, - "m_battlePassWinPoints": { - "type": "int", - "id": 33, - "offset": 412, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1252337240 - }, - "m_battlePassLosePoints": { - "type": "int", - "id": 34, - "offset": 416, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1400839869 - } - } - }, - "1069281552": { - "name": "class WizTrainingInteraction", - "bases": [ - "ServiceOptionBase", - "PropertyClass" - ], - "hash": 1069281552, - "properties": { - "m_serviceName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2206028813 - }, - "m_iconKey": { - "type": "std::string", - "id": 1, - "offset": 168, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2457138637 - }, - "m_displayKey": { - "type": "std::string", - "id": 2, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3023276954 - }, - "m_serviceIndex": { - "type": "unsigned int", - "id": 3, - "offset": 204, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2103126710 - }, - "m_forceInteract": { - "type": "bool", - "id": 4, - "offset": 200, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1705789564 - } - } - }, - "1069351219": { - "name": "class PetMatchInfo*", - "bases": [ - "ArenaMatchInfo", - "PropertyClass" - ], - "hash": 1069351219, - "properties": { - "m_matchID": { - "type": "gid", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1757621298 - }, - "m_matchNameID": { - "type": "unsigned int", - "id": 1, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1751361288 - }, - "m_teams": { - "type": "class SharedPointer", - "id": 2, - "offset": 96, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1984373608 - }, - "m_matchName": { - "type": "std::string", - "id": 3, - "offset": 112, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2061215721 - }, - "m_matchTitle": { - "type": "std::string", - "id": 4, - "offset": 144, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2918442218 - }, - "m_matchZoneID": { - "type": "gid", - "id": 5, - "offset": 176, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2026205966 - }, - "m_creatorID": { - "type": "gid", - "id": 6, - "offset": 88, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1051766037 - }, - "m_matchZone": { - "type": "std::string", - "id": 7, - "offset": 184, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2061662244 - }, - "m_startTime": { - "type": "int", - "id": 8, - "offset": 216, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1386968823 - }, - "m_status": { - "type": "int", - "id": 9, - "offset": 220, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 960781182 - }, - "m_friendsOnly": { - "type": "bool", - "id": 10, - "offset": 236, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1420401792 - }, - "m_tournamentNameID": { - "type": "unsigned int", - "id": 11, - "offset": 224, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1799846440 - }, - "m_leagueID": { - "type": "unsigned int", - "id": 12, - "offset": 228, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 692361645 - }, - "m_seasonID": { - "type": "unsigned int", - "id": 13, - "offset": 232, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 535260643 - }, - "m_bUpdateLadder": { - "type": "bool", - "id": 14, - "offset": 248, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1937525956 - }, - "m_maxPointsPerMatch": { - "type": "unsigned int", - "id": 15, - "offset": 240, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1397040900 - }, - "m_estimatedWeight": { - "type": "float", - "id": 16, - "offset": 244, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1374360127 - }, - "m_maxELOError": { - "type": "int", - "id": 17, - "offset": 252, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 318998922 - }, - "m_uniqueMatchID": { - "type": "std::string", - "id": 18, - "offset": 264, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3291026220 - }, - "m_pvpDuelModifiersTemplates": { - "type": "class SharedPointer", - "id": 19, - "offset": 296, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1193155411 - }, - "m_teamSize": { - "type": "unsigned int", - "id": 20, - "offset": 256, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2343388751 - }, - "m_minRank": { - "type": "int", - "id": 21, - "offset": 312, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2062988042 - }, - "m_maxRank": { - "type": "int", - "id": 22, - "offset": 316, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1761764108 - }, - "m_trackRank": { - "type": "int", - "id": 23, - "offset": 320, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1258472859 - }, - "m_pTrackInfo": { - "type": "class SharedPointer", - "id": 24, - "offset": 336, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3026194809 - }, - "m_ratingBrackets": { - "type": "class ResultList*", - "id": 25, - "offset": 328, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2173049436 - } - } - }, - "1850272972": { - "name": "class PCSButton", - "bases": [ - "ControlButton", - "Window", - "PropertyClass" - ], - "hash": 1850272972, - "properties": { - "m_sName": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306437263 - }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621225959 - }, - "m_Style": { - "type": "unsigned int", - "id": 2, - "offset": 152, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152, - "SHOW_HOTKEY": 16777216, - "EFFECT_SCALE": 67108864, - "LOCK_ICON_SIZE": 33554432, - "LEFT_TEXT": 536870912, - "NO_FIT_TEXT": 1073741824 - } - }, - "m_Flags": { - "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } - }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3105139380 - }, - "m_fTargetAlpha": { - "type": "float", - "id": 5, - "offset": 212, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1809129834 - }, - "m_fDisabledAlpha": { - "type": "float", - "id": 6, - "offset": 216, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1389987675 - }, - "m_fAlpha": { - "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 482130755 - }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3623628394 - }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2102211316 - }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1846695875 - }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3389835433 - }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2547159940 - }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2587533771 - }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3091503757 - }, - "m_bToggle": { - "type": "bool", - "id": 16, - "offset": 608, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2071810903 - }, - "m_bButtonDown": { - "type": "bool", - "id": 17, - "offset": 609, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 840041705 - }, - "m_sLabel": { - "type": "std::wstring", - "id": 18, - "offset": 616, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2207009163 - }, - "m_labelOffset": { - "type": "class Rect", - "id": 19, - "offset": 832, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1990646723 - }, - "m_pButton": { - "type": "class SharedPointer", - "id": 20, - "offset": 656, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1543855875 - }, - "m_HotKey": { - "type": "unsigned int", - "id": 21, - "offset": 672, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1631553409 - }, - "m_Color": { - "type": "class Color", - "id": 22, - "offset": 676, - "flags": 262279, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1753714077 - }, - "m_bCursorOver": { - "type": "bool", - "id": 23, - "offset": 689, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 283981103 - }, - "m_bAbortWhenCursorNotOver": { - "type": "bool", - "id": 24, - "offset": 706, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 325405258 - }, - "m_bHotKeyDown": { - "type": "bool", - "id": 25, - "offset": 680, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 616989185 - }, - "m_fTime": { - "type": "float", - "id": 26, - "offset": 684, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 883746156 - }, - "m_bGreyed": { - "type": "bool", - "id": 27, - "offset": 688, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1566556053 - }, - "m_fMaxScale": { - "type": "float", - "id": 28, - "offset": 692, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2070186635 - }, - "m_fScaleSpeed": { - "type": "float", - "id": 29, - "offset": 696, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1457135702 - }, - "m_bUseDropShadow": { - "type": "bool", - "id": 30, - "offset": 704, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 93063037 - }, - "m_bUseOutline": { - "type": "bool", - "id": 31, - "offset": 705, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 744292994 - }, - "m_pGreyedState": { - "type": "class SharedPointer", - "id": 32, - "offset": 768, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2703352263 - }, - "m_pNormalState": { - "type": "class SharedPointer", - "id": 33, - "offset": 752, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1887909808 - }, - "m_pHighlightedState": { - "type": "class SharedPointer", - "id": 34, - "offset": 784, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2200177608 - }, - "m_pSelectedState": { - "type": "class SharedPointer", - "id": 35, - "offset": 800, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2266776432 - }, - "m_pDepressedState": { - "type": "class SharedPointer", - "id": 36, - "offset": 816, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1878185798 - }, - "m_itemID": { - "type": "gid", - "id": 37, - "offset": 992, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 569545460 - }, - "m_currencyType": { - "type": "enum PermanentShop::CurrencyTab", - "id": 38, - "offset": 1000, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 405352622, - "enum_options": { - "Gold": 0, - "Crowns": 1, - "ArenaTickets": 2 - } - } - } - }, - "1071494124": { - "name": "struct GUISystem::Message", - "bases": [], - "hash": 1071494124, - "properties": {} - }, - "1850455351": { - "name": "class EquippedItemInfo*", - "bases": [ - "PropertyClass" - ], - "hash": 1850455351, - "properties": { - "m_itemID": { - "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 780964329 - } - } - }, - "1069731765": { - "name": "class CastleMagicManager*", - "bases": [ - "PropertyClass" - ], - "hash": 1069731765, - "properties": { - "m_castleMagicItemList": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 3812758310 - }, - "m_castleMagicTimerList": { - "type": "class SharedPointer", - "id": 1, - "offset": 152, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2420724439 - }, - "m_randomNumberSetBuffer": { - "type": "std::string", - "id": 2, - "offset": 360, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1824603147 - }, - "m_randomNumberSetIndexList": { - "type": "gid", - "id": 3, - "offset": 416, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 678388482 - }, - "m_defaultCameraTime": { - "type": "float", - "id": 4, - "offset": 528, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 617092724 - }, - "m_setPlayAsPet": { - "type": "bool", - "id": 5, - "offset": 533, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 124615314 - } - } - }, - "1850367368": { - "name": "class SharedPointer", - "bases": [ - "PetTalentBaseTemplate", - "CoreTemplate", - "PropertyClass" - ], - "hash": 1850367368, - "properties": { - "m_behaviors": { - "type": "class BehaviorTemplate*", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1197808594 - }, - "m_talentName": { - "type": "std::string", - "id": 1, - "offset": 96, - "flags": 134217735, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2455147588 - }, - "m_displayName": { - "type": "std::string", - "id": 2, - "offset": 136, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2446900370 - }, - "m_description": { - "type": "std::string", - "id": 3, - "offset": 168, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1649374815 - }, - "m_imageIndex": { - "type": "unsigned int", - "id": 4, - "offset": 200, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1781902856 - }, - "m_imageName": { - "type": "std::string", - "id": 5, - "offset": 208, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2391520543 - }, - "m_rank": { - "type": "unsigned char", - "id": 6, - "offset": 240, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 857403388 - }, - "m_breedsAsTalentName": { - "type": "std::string", - "id": 7, - "offset": 248, - "flags": 268435463, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2143399629, - "enum_options": { - "__BASECLASS": "PetTalentBaseTemplate" - } - }, - "m_bRetired": { - "type": "bool", - "id": 8, - "offset": 280, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 904227684, - "enum_options": { - "__DEFAULT": 0 - } - }, - "m_unsearchable": { - "type": "bool", - "id": 9, - "offset": 281, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1760679968, - "enum_options": { - "__DEFAULT": 0 - } - }, - "m_isBuff": { - "type": "enum DerbyTalentBuffType", - "id": 10, - "offset": 288, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 688625224, - "enum_options": { - "Buff": 0, - "Debuff": 1, - "Neither": 2 - } - }, - "m_fCooldown": { - "type": "float", - "id": 11, - "offset": 292, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1665682594 - }, - "m_derbyEffects": { - "type": "class SharedPointer", - "id": 12, - "offset": 296, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1259488141 - } - } - }, - "1850304375": { - "name": "class AvatarItemInfoList", - "bases": [ - "PropertyClass" - ], - "hash": 1850304375, - "properties": { - "m_itemInfoList": { - "type": "class AvatarItemInfoBase*", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 3137169759 - } - } - }, - "1071753571": { - "name": "class WizStatisticOverrideEffectTemplate*", - "bases": [ - "StatisticEffectTemplate", - "GameEffectTemplate", - "PropertyClass" - ], - "hash": 1071753571, - "properties": { - "m_effectName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2029161513 - }, - "m_effectCategory": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1852673222 - }, - "m_sortOrder": { - "type": "int", - "id": 2, - "offset": 148, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1411218206 - }, - "m_duration": { - "type": "double", - "id": 3, - "offset": 192, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2727932435 - }, - "m_stackingCategories": { - "type": "std::string", - "id": 4, - "offset": 160, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1774497525 - }, - "m_isPersistent": { - "type": "bool", - "id": 5, - "offset": 153, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 923861920 - }, - "m_bIsOnPet": { - "type": "bool", - "id": 6, - "offset": 154, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 522593303 - }, - "m_isPublic": { - "type": "bool", - "id": 7, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1728439822 - }, - "m_visualEffectAddName": { - "type": "std::string", - "id": 8, - "offset": 200, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3382086694 - }, - "m_visualEffectRemoveName": { - "type": "std::string", - "id": 9, - "offset": 232, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1541697323 - }, - "m_onAddFunctorName": { - "type": "std::string", - "id": 10, - "offset": 280, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1561843107 - }, - "m_onRemoveFunctorName": { - "type": "std::string", - "id": 11, - "offset": 312, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2559017864 - }, - "m_stackingRule": { - "type": "enum STACKING_RULE", - "id": 12, - "offset": 144, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 431568889, - "enum_options": { - "STACKING_ALLOWED": 0, - "STACKING_NOSTACK": 1, - "STACKING_REPLACE": 2 - } - }, - "m_baseHitpoints": { - "type": "int", - "id": 13, - "offset": 360, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 596105911 - }, - "m_baseMana": { - "type": "int", - "id": 14, - "offset": 364, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1475495442 - }, - "m_xpPercentIncrease": { - "type": "float", - "id": 15, - "offset": 368, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1051081338 - }, - "m_goldPercent": { - "type": "float", - "id": 16, - "offset": 372, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1095720878 - }, - "m_wispBonusPercent": { - "type": "float", - "id": 17, - "offset": 376, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1304386546 - }, - "m_powerPipBonusPercent": { - "type": "float", - "id": 18, - "offset": 380, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1671446341 - }, - "m_shadowPipBonusPercent": { - "type": "float", - "id": 19, - "offset": 384, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1426533310 - }, - "m_shadowPipRating": { - "type": "float", - "id": 20, - "offset": 388, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 507126123 - }, - "m_archmastery": { - "type": "float", - "id": 21, - "offset": 392, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1963579610 - }, - "m_stunResistancePercent": { - "type": "float", - "id": 22, - "offset": 396, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1868382627 - }, - "m_balanceMastery": { - "type": "int", - "id": 23, - "offset": 400, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 149062181 - }, - "m_deathMastery": { - "type": "int", - "id": 24, - "offset": 404, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1421218661 - }, - "m_fireMastery": { - "type": "int", - "id": 25, - "offset": 408, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1431794949 - }, - "m_iceMastery": { - "type": "int", - "id": 26, - "offset": 412, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 704864240 - }, - "m_lifeMastery": { - "type": "int", - "id": 27, - "offset": 416, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2142136447 - }, - "m_mythMastery": { - "type": "int", - "id": 28, - "offset": 420, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1766317185 - }, - "m_stormMastery": { - "type": "int", - "id": 29, - "offset": 424, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1883988244 - }, - "m_school": { - "type": "std::string", - "id": 30, - "offset": 432, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2438566051 - }, - "m_pipConversionRating": { - "type": "float", - "id": 31, - "offset": 464, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 246855691 - }, - "m_criticalHitRating": { - "type": "float", - "id": 32, - "offset": 468, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1978690540 - }, - "m_blockRating": { - "type": "float", - "id": 33, - "offset": 472, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2088486759 - }, - "m_dmgBonusPercent": { - "type": "float", - "id": 34, - "offset": 476, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 194501159 - }, - "m_dmgBonusFlat": { - "type": "float", - "id": 35, - "offset": 480, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1837769725 - }, - "m_accBonusPercent": { - "type": "float", - "id": 36, - "offset": 484, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 331557526 - }, - "m_apBonusPercent": { - "type": "float", - "id": 37, - "offset": 488, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1228557984 - }, - "m_dmgReducePercent": { - "type": "float", - "id": 38, - "offset": 492, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1426050712 - }, - "m_dmgReduceFlat": { - "type": "float", - "id": 39, - "offset": 496, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1218184718 - }, - "m_accReducePercent": { - "type": "float", - "id": 40, - "offset": 500, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1653943527 - }, - "m_healBonusPercent": { - "type": "float", - "id": 41, - "offset": 504, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 562313577 - }, - "m_healIncBonusPercent": { - "type": "float", - "id": 42, - "offset": 508, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2182535587 - }, - "m_fishingLuckBonusPercent": { - "type": "float", - "id": 43, - "offset": 512, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1363349254 - } - } - }, - "1071752035": { - "name": "class WizStatisticOverrideEffectTemplate", - "bases": [ - "StatisticEffectTemplate", - "GameEffectTemplate", - "PropertyClass" - ], - "hash": 1071752035, - "properties": { - "m_effectName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2029161513 - }, - "m_effectCategory": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1852673222 - }, - "m_sortOrder": { - "type": "int", - "id": 2, - "offset": 148, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1411218206 - }, - "m_duration": { - "type": "double", - "id": 3, - "offset": 192, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2727932435 - }, - "m_stackingCategories": { - "type": "std::string", - "id": 4, - "offset": 160, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1774497525 - }, - "m_isPersistent": { - "type": "bool", - "id": 5, - "offset": 153, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 923861920 - }, - "m_bIsOnPet": { - "type": "bool", - "id": 6, - "offset": 154, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 522593303 - }, - "m_isPublic": { - "type": "bool", - "id": 7, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1728439822 - }, - "m_visualEffectAddName": { - "type": "std::string", - "id": 8, - "offset": 200, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3382086694 - }, - "m_visualEffectRemoveName": { - "type": "std::string", - "id": 9, - "offset": 232, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1541697323 - }, - "m_onAddFunctorName": { - "type": "std::string", - "id": 10, - "offset": 280, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1561843107 - }, - "m_onRemoveFunctorName": { - "type": "std::string", - "id": 11, - "offset": 312, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2559017864 - }, - "m_stackingRule": { - "type": "enum STACKING_RULE", - "id": 12, - "offset": 144, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 431568889, - "enum_options": { - "STACKING_ALLOWED": 0, - "STACKING_NOSTACK": 1, - "STACKING_REPLACE": 2 - } - }, - "m_baseHitpoints": { - "type": "int", - "id": 13, - "offset": 360, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 596105911 - }, - "m_baseMana": { - "type": "int", - "id": 14, - "offset": 364, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1475495442 - }, - "m_xpPercentIncrease": { - "type": "float", - "id": 15, - "offset": 368, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1051081338 - }, - "m_goldPercent": { - "type": "float", - "id": 16, - "offset": 372, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1095720878 - }, - "m_wispBonusPercent": { - "type": "float", - "id": 17, - "offset": 376, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1304386546 - }, - "m_powerPipBonusPercent": { - "type": "float", - "id": 18, - "offset": 380, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1671446341 - }, - "m_shadowPipBonusPercent": { - "type": "float", - "id": 19, - "offset": 384, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1426533310 - }, - "m_shadowPipRating": { - "type": "float", - "id": 20, - "offset": 388, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 507126123 - }, - "m_archmastery": { - "type": "float", - "id": 21, - "offset": 392, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1963579610 - }, - "m_stunResistancePercent": { - "type": "float", - "id": 22, - "offset": 396, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1868382627 - }, - "m_balanceMastery": { - "type": "int", - "id": 23, - "offset": 400, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 149062181 - }, - "m_deathMastery": { - "type": "int", - "id": 24, - "offset": 404, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1421218661 - }, - "m_fireMastery": { - "type": "int", - "id": 25, - "offset": 408, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1431794949 - }, - "m_iceMastery": { - "type": "int", - "id": 26, - "offset": 412, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 704864240 - }, - "m_lifeMastery": { - "type": "int", - "id": 27, - "offset": 416, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2142136447 - }, - "m_mythMastery": { - "type": "int", - "id": 28, - "offset": 420, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1766317185 - }, - "m_stormMastery": { - "type": "int", - "id": 29, - "offset": 424, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1883988244 - }, - "m_school": { - "type": "std::string", - "id": 30, - "offset": 432, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2438566051 - }, - "m_pipConversionRating": { - "type": "float", - "id": 31, - "offset": 464, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 246855691 - }, - "m_criticalHitRating": { - "type": "float", - "id": 32, - "offset": 468, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1978690540 - }, - "m_blockRating": { - "type": "float", - "id": 33, - "offset": 472, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2088486759 - }, - "m_dmgBonusPercent": { - "type": "float", - "id": 34, - "offset": 476, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 194501159 - }, - "m_dmgBonusFlat": { - "type": "float", - "id": 35, - "offset": 480, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1837769725 - }, - "m_accBonusPercent": { - "type": "float", - "id": 36, - "offset": 484, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 331557526 - }, - "m_apBonusPercent": { - "type": "float", - "id": 37, - "offset": 488, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1228557984 - }, - "m_dmgReducePercent": { - "type": "float", - "id": 38, - "offset": 492, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1426050712 - }, - "m_dmgReduceFlat": { - "type": "float", - "id": 39, - "offset": 496, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1218184718 - }, - "m_accReducePercent": { - "type": "float", - "id": 40, - "offset": 500, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1653943527 - }, - "m_healBonusPercent": { - "type": "float", - "id": 41, - "offset": 504, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 562313577 - }, - "m_healIncBonusPercent": { - "type": "float", - "id": 42, - "offset": 508, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2182535587 - }, - "m_fishingLuckBonusPercent": { - "type": "float", - "id": 43, - "offset": 512, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1363349254 - } - } - }, - "1851893072": { - "name": "class BuffDebuffEventCinematicAction", - "bases": [ - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 1851893072, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - } - } - }, - "1072072009": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1072072009, - "properties": { - "m_badgeID": { - "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 628960141 - }, - "m_badgeTime": { - "type": "unsigned int", - "id": 1, - "offset": 76, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1716875215 - } - } - }, - "1855825625": { - "name": "class TournamentUpdate", - "bases": [ - "PropertyClass" - ], - "hash": 1855825625, - "properties": {} - }, - "1854828768": { - "name": "class SharedPointer", - "bases": [ - "CastleToursFavoritesBehaviorBase", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1854828768, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_castleToursFavoritesData": { - "type": "std::string", - "id": 1, - "offset": 128, - "flags": 575, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1708015073 - } - } - }, - "1073915065": { - "name": "class SharedPointer", - "bases": [ - "LootInfo", - "LootInfoBase", - "PropertyClass" - ], - "hash": 1073915065, - "properties": { - "m_lootType": { - "type": "enum LootInfo::LOOT_TYPE", - "id": 0, - "offset": 72, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1591891442, - "enum_options": { - "LOOT_TYPE_NONE": 0, - "LOOT_TYPE_GOLD": 1, - "LOOT_TYPE_MANA": 2, - "LOOT_TYPE_ITEM": 3, - "LOOT_TYPE_TREASURE_CARD": 4, - "LOOT_TYPE_MAGIC_XP": 5, - "LOOT_TYPE_ADD_SPELL": 6, - "LOOT_TYPE_MAX_HEALTH": 7, - "LOOT_TYPE_MAX_GOLD": 8, - "LOOT_TYPE_MAX_MANA": 9, - "LOOT_TYPE_MAX_POTION": 10, - "LOOT_TYPE_TRAINING_POINTS": 11, - "LOOT_TYPE_RECIPE": 12, - "LOOT_TYPE_CRAFTING_SLOT": 13, - "LOOT_TYPE_REAGENT": 14, - "LOOT_TYPE_PETSNACK": 15, - "LOOT_TYPE_GARDENING_XP": 16, - "LOOT_TYPE_PET_XP": 17, - "LOOT_TYPE_TREASURE_TABLE": 18, - "LOOT_TYPE_ARENA_POINTS": 19, - "LOOT_TYPE_ARENA_BONUS_POINTS": 20, - "LOOT_TYPE_GROUP": 21, - "LOOT_TYPE_FISHING_XP": 22, - "LOOT_TYPE_EVENT_CURRENCY_1": 24, - "LOOT_TYPE_EVENT_CURRENCY_2": 25, - "LOOT_TYPE_PVP_CURRENCY": 26, - "LOOT_TYPE_PVP_CURRENCY_BONUS": 27, - "LOOT_TYPE_PVP_TOURNEY_CURRENCY": 28, - "LOOT_TYPE_PVP_TOURNEY_CURRENCY_BONUS": 29, - "LOOT_TYPE_FURNITURE_ESSENCE": 30 - } - }, - "m_manaToAdd": { - "type": "int", - "id": 1, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1303804451 - } - } - }, - "1853899689": { - "name": "enum ZoneData::Type", - "bases": [], - "hash": 1853899689, - "properties": {} - }, - "1072411401": { - "name": "class SharedPointer", - "bases": [ - "AddInterceptCinematicAction", - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 1072411401, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - }, - "m_effect": { - "type": "std::string", - "id": 2, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1894145160 - }, - "m_idleOnly": { - "type": "bool", - "id": 3, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 612425235 - } - } - }, - "1853871743": { - "name": "class SharedPointer", - "bases": [ - "CantripsInvisibilityEffectInfo", - "GameEffectInfo", - "PropertyClass" - ], - "hash": 1853871743, - "properties": { - "m_effectName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2029161513 - } - } - }, - "1073631407": { - "name": "class TournamentTemplate*", - "bases": [ - "CoreTemplate", - "PropertyClass" - ], - "hash": 1073631407, - "properties": { - "m_behaviors": { - "type": "class BehaviorTemplate*", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1197808594 - }, - "m_tournamentName": { - "type": "std::string", - "id": 1, - "offset": 112, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3329241865 - }, - "m_allowedMatches": { - "type": "std::string", - "id": 2, - "offset": 152, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2083366952 - }, - "m_updateLadder": { - "type": "bool", - "id": 3, - "offset": 209, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1327828834 - }, - "m_useEloBehavior": { - "type": "bool", - "id": 4, - "offset": 210, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2113224016 - }, - "m_ladderTable": { - "type": "std::string", - "id": 5, - "offset": 216, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3225825807 - }, - "m_matchActor": { - "type": "class SharedPointer", - "id": 6, - "offset": 96, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1730081852 - }, - "m_bPremium": { - "type": "bool", - "id": 7, - "offset": 208, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 959881172 - }, - "m_defaultLadder": { - "type": "class SharedPointer", - "id": 8, - "offset": 248, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2425504995 - }, - "m_isBracketTournament": { - "type": "bool", - "id": 9, - "offset": 265, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1062809176 - }, - "m_persisted": { - "type": "bool", - "id": 10, - "offset": 266, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1002297414 - }, - "m_penalizeMatchDeclines": { - "type": "bool", - "id": 11, - "offset": 267, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 623338303 - }, - "m_hidePlayerInfo": { - "type": "bool", - "id": 12, - "offset": 268, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 665001286 - }, - "m_pvpDuelModifiers": { - "type": "std::string", - "id": 13, - "offset": 272, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1796488605 - } - } - }, - "1854764979": { - "name": "class SharedPointer", - "bases": [ - "SpellTemplate", - "CoreTemplate", - "PropertyClass" - ], - "hash": 1854764979, - "properties": { - "m_behaviors": { - "type": "class BehaviorTemplate*", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1197808594 - }, - "m_name": { - "type": "std::string", - "id": 1, - "offset": 96, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1717359772 - }, - "m_description": { - "type": "std::string", - "id": 2, - "offset": 168, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1649374815 - }, - "m_advancedDescription": { - "type": "std::string", - "id": 3, - "offset": 200, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3465713013 - }, - "m_displayName": { - "type": "std::string", - "id": 4, - "offset": 136, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2446900370 - }, - "m_spellBase": { - "type": "std::string", - "id": 5, - "offset": 248, - "flags": 268435463, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2688054198, - "enum_options": { - "__BASECLASS": "CinematicTemplate" - } - }, - "m_effects": { - "type": "class SharedPointer", - "id": 6, - "offset": 280, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 370726379 - }, - "m_sMagicSchoolName": { - "type": "std::string", - "id": 7, - "offset": 312, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2035693400 - }, - "m_sTypeName": { - "type": "std::string", - "id": 8, - "offset": 352, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3580785905 - }, - "m_trainingCost": { - "type": "int", - "id": 9, - "offset": 384, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 982588239 - }, - "m_accuracy": { - "type": "int", - "id": 10, - "offset": 388, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1636315493 - }, - "m_baseCost": { - "type": "int", - "id": 11, - "offset": 232, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1475151502 - }, - "m_creditsCost": { - "type": "int", - "id": 12, - "offset": 236, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 715313825 - }, - "m_pvpCurrencyCost": { - "type": "int", - "id": 13, - "offset": 240, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 645595444 - }, - "m_pvpTourneyCurrencyCost": { - "type": "int", - "id": 14, - "offset": 244, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 517874954 - }, - "m_boosterPackIcon": { - "type": "std::string", - "id": 15, - "offset": 496, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3428653697 - }, - "m_validTargetSpells": { - "type": "unsigned int", - "id": 16, - "offset": 392, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2355782967 - }, - "m_PvP": { - "type": "bool", - "id": 17, - "offset": 408, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 269492361 - }, - "m_PvE": { - "type": "bool", - "id": 18, - "offset": 409, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 269492350 - }, - "m_noPvPEnchant": { - "type": "bool", - "id": 19, - "offset": 410, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 661581703 - }, - "m_noPvEEnchant": { - "type": "bool", - "id": 20, - "offset": 411, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 10144220 - }, - "m_battlegroundsOnly": { - "type": "bool", - "id": 21, - "offset": 412, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1244782419 - }, - "m_Treasure": { - "type": "bool", - "id": 22, - "offset": 413, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1749096414 - }, - "m_noDiscard": { - "type": "bool", - "id": 23, - "offset": 414, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 565749226 - }, - "m_leavesPlayWhenCast": { - "type": "bool", - "id": 24, - "offset": 532, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 698216294 - }, - "m_imageIndex": { - "type": "int", - "id": 25, - "offset": 416, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1570500405 - }, - "m_imageName": { - "type": "std::string", - "id": 26, - "offset": 424, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2391520543 - }, - "m_cloaked": { - "type": "bool", - "id": 27, - "offset": 489, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 7349510 - }, - "m_casterInvisible": { - "type": "bool", - "id": 28, - "offset": 490, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 310214650 - }, - "m_adjectives": { - "type": "std::string", - "id": 29, - "offset": 576, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2967855037 - }, - "m_spellSourceType": { - "type": "enum SpellTemplate::kSpellSourceType", - "id": 30, - "offset": 528, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 156272727, - "enum_options": { - "kCaster": 0, - "kPet": 1, - "kShadowCreature": 2, - "kWeapon": 3, - "kEquipment": 4 - } - }, - "m_cloakedName": { - "type": "std::string", - "id": 31, - "offset": 536, - "flags": 268435463, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2846679215, - "enum_options": { - "__BASECLASS": "SpellTemplate" - } - }, - "m_purchaseRequirements": { - "type": "class RequirementList*", - "id": 32, - "offset": 608, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3174641793 - }, - "m_displayRequirements": { - "type": "class RequirementList*", - "id": 33, - "offset": 840, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3646782876 - }, - "m_descriptionTrainer": { - "type": "std::string", - "id": 34, - "offset": 616, - "flags": 8388871, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1756093908 - }, - "m_descriptionCombatHUD": { - "type": "std::string", - "id": 35, - "offset": 648, - "flags": 8388871, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1631478006 - }, - "m_displayIndex": { - "type": "int", - "id": 36, - "offset": 680, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1250551048 - }, - "m_hiddenFromEffectsWindow": { - "type": "bool", - "id": 37, - "offset": 684, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1832736331 - }, - "m_ignoreCharms": { - "type": "bool", - "id": 38, - "offset": 685, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1840075893 - }, - "m_alwaysFizzle": { - "type": "bool", - "id": 39, - "offset": 686, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2030988856 - }, - "m_spellCategory": { - "type": "std::string", - "id": 40, - "offset": 688, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2472376729 - }, - "m_showPolymorphedName": { - "type": "bool", - "id": 41, - "offset": 720, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2097929096 - }, - "m_skipTruncation": { - "type": "bool", - "id": 42, - "offset": 721, - "flags": 263, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1838335249 - }, - "m_maxCopies": { - "type": "unsigned int", - "id": 43, - "offset": 724, - "flags": 263, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 403022326 - }, - "m_levelRestriction": { - "type": "int", - "id": 44, - "offset": 728, - "flags": 263, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 176502472 - }, - "m_delayEnchantment": { - "type": "bool", - "id": 45, - "offset": 732, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 191336919 - }, - "m_delayEnchantmentOrder": { - "type": "enum SpellEffect::kDelayOrder", - "id": 46, - "offset": 736, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2526055263, - "enum_options": { - "SpellEffect::kAnyOrder": 0, - "SpellEffect::kFirst": 1, - "SpellEffect::kSecond": 2 - } - }, - "m_previousSpellName": { - "type": "std::string", - "id": 47, - "offset": 744, - "flags": 268435463, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2903322585, - "enum_options": { - "__BASECLASS": "SpellTemplate" - } - }, - "m_cardFront": { - "type": "std::string", - "id": 48, - "offset": 456, - "flags": 131359, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3557598526 - }, - "m_useGloss": { - "type": "bool", - "id": 49, - "offset": 488, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 668817544 - }, - "m_ignoreDispel": { - "type": "bool", - "id": 50, - "offset": 776, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1881041624 - }, - "m_backRowFriendly": { - "type": "bool", - "id": 51, - "offset": 777, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 501584377 - }, - "m_spellRank": { - "type": "class SharedPointer", - "id": 52, - "offset": 784, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3152361374 - }, - "m_secondarySchoolName": { - "type": "std::string", - "id": 53, - "offset": 800, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1803268236 - }, - "m_spellFusion": { - "type": "unsigned int", - "id": 54, - "offset": 836, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1658928321 - }, - "m_requiredSchoolName": { - "type": "std::string", - "id": 55, - "offset": 848, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3576058981 - }, - "m_retired": { - "type": "bool", - "id": 56, - "offset": 880, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1931776834 - }, - "m_shardCost": { - "type": "int", - "id": 57, - "offset": 884, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1047182405 - }, - "m_requirements": { - "type": "class RequirementList*", - "id": 58, - "offset": 888, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2840985510 - }, - "m_nextTierSpells": { - "type": "std::string", - "id": 59, - "offset": 896, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1762416321 - } - } - }, - "1074421294": { - "name": "class std::list >", - "bases": [], - "hash": 1074421294, - "properties": {} - }, - "1074241806": { - "name": "struct TipDialogData", - "bases": [], - "hash": 1074241806, - "properties": {} - }, - "1855299601": { - "name": "class FishHistory", - "bases": [ - "PropertyClass" - ], - "hash": 1855299601, - "properties": { - "m_templateID": { - "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 33554471, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1286746870 - }, - "m_numberCaught": { - "type": "unsigned int", - "id": 1, - "offset": 76, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 880871538 - }, - "m_smallestSize": { - "type": "float", - "id": 2, - "offset": 80, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1372912951 - }, - "m_largestSize": { - "type": "float", - "id": 3, - "offset": 84, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 344314084 - }, - "m_numberSmallFrysCaught": { - "type": "unsigned int", - "id": 4, - "offset": 88, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2177497487 - }, - "m_numberWoppersCaught": { - "type": "unsigned int", - "id": 5, - "offset": 92, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 842916418 - } - } - }, - "1074622366": { - "name": "class SharedPointer", - "bases": [ - "Requirement", - "PropertyClass" - ], - "hash": 1074622366, - "properties": { - "m_applyNOT": { - "type": "bool", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1746328074, - "enum_options": { - "__DEFAULT": 0 - } - }, - "m_operator": { - "type": "enum Requirement::Operator", - "id": 1, - "offset": 76, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2672792317, - "enum_options": { - "ROP_AND": 0, - "ROP_OR": 1, - "__DEFAULT": "ROP_AND" - } - } - } - }, - "1856107213": { - "name": "class HousingPaletteBehaviorTemplate*", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 1856107213, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - }, - "m_housingPaletteType": { - "type": "int", - "id": 1, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 658067464 - }, - "m_primaryTintColors": { - "type": "class Vector3D", - "id": 2, - "offset": 128, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2885436919 - }, - "m_secondaryTintColors": { - "type": "class Vector3D", - "id": 3, - "offset": 152, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 3624818395 - } - } - }, - "1855923929": { - "name": "class TournamentUpdate*", - "bases": [ - "PropertyClass" - ], - "hash": 1855923929, - "properties": {} - }, - "695413823": { - "name": "class SharedPointer", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 695413823, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - } - } - }, - "1856697751": { - "name": "class BGSigilProxyBehavior*", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1856697751, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_autoCapTimer": { - "type": "class BGSigilTimer", - "id": 1, - "offset": 112, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2270881950 - }, - "m_timerTeam": { - "type": "std::string", - "id": 2, - "offset": 216, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1994153155 - }, - "m_teamOwner": { - "type": "std::string", - "id": 3, - "offset": 248, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3126686637 - }, - "m_combatActive": { - "type": "bool", - "id": 4, - "offset": 280, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1372743333 - }, - "m_captureable": { - "type": "bool", - "id": 5, - "offset": 281, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1101963387 - }, - "m_allowAutoCap": { - "type": "bool", - "id": 6, - "offset": 282, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 946300927 - }, - "m_sigilAggroRange": { - "type": "float", - "id": 7, - "offset": 284, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 995063020 - }, - "m_playerAggroRange": { - "type": "float", - "id": 8, - "offset": 288, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1776075073 - }, - "m_triggerOrientation": { - "type": "class Vector3D", - "id": 9, - "offset": 292, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2671004802 - }, - "m_triggerLocation": { - "type": "class Vector3D", - "id": 10, - "offset": 304, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2573315471 - }, - "m_triggerBox": { - "type": "bool", - "id": 11, - "offset": 316, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 962168144 - }, - "m_width": { - "type": "float", - "id": 12, - "offset": 320, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 904656279 - }, - "m_length": { - "type": "float", - "id": 13, - "offset": 324, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 759698745 - }, - "m_triggerSphere": { - "type": "bool", - "id": 14, - "offset": 328, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1467830382 - }, - "m_radius": { - "type": "float", - "id": 15, - "offset": 332, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 989410271 - }, - "m_inRange": { - "type": "class SharedPointer", - "id": 16, - "offset": 336, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2259190010 - } - } - }, - "265433577": { - "name": "class FriendlyPlayerQuestInfo*", - "bases": [ - "PropertyClass" - ], - "hash": 265433577, - "properties": { - "m_characterIDList": { - "type": "gid", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 689466254 - }, - "m_questNameList": { - "type": "std::string", - "id": 1, - "offset": 88, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 3221150474 - } - } - }, - "1856625598": { - "name": "class SharedPointer", - "bases": [ - "TournamentUpdate", - "PropertyClass" - ], - "hash": 1856625598, - "properties": { - "m_tournamentID": { - "type": "gid", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 695889746 - }, - "m_tournamentName": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3329241865 - }, - "m_tournamentNameID": { - "type": "unsigned int", - "id": 2, - "offset": 112, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1799846440 - }, - "m_clearData": { - "type": "bool", - "id": 3, - "offset": 116, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 890225684 - }, - "m_matches": { - "type": "class SharedPointer", - "id": 4, - "offset": 128, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 3618423638 - }, - "m_teams": { - "type": "class SharedPointer", - "id": 5, - "offset": 144, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1984373608 - }, - "m_brackets": { - "type": "class SharedPointer", - "id": 6, - "offset": 160, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1419131309 - }, - "m_totalTeams": { - "type": "int", - "id": 7, - "offset": 124, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1059363992 - } - } - }, - "265352966": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 265352966, - "properties": { - "m_assetName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513131580 - }, - "m_attachmentNode": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1683933674 - }, - "m_soundTemplate": { - "type": "unsigned int", - "id": 2, - "offset": 136, - "flags": 33554439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 611925458 - }, - "m_loop": { - "type": "bool", - "id": 3, - "offset": 140, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 222084781 - }, - "m_fireAndForget": { - "type": "bool", - "id": 4, - "offset": 141, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 531791155 - } - } - }, - "1451964126": { - "name": "class PathBehaviorTemplate::Action", - "bases": [ - "PropertyClass" - ], - "hash": 1451964126, - "properties": { - "m_nPathID": { - "type": "gid", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 214382368 - }, - "m_nNodeID": { - "type": "int", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 152152635, - "enum_options": { - "__DEFAULT": 4294967295 - } - }, - "m_nPriority": { - "type": "int", - "id": 2, - "offset": 84, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1515251530, - "enum_options": { - "__DEFAULT": 100 - } - }, - "m_nChance": { - "type": "int", - "id": 3, - "offset": 88, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1860748394, - "enum_options": { - "__DEFAULT": 50 - } - } - } - }, - "1451957982": { - "name": "class PathBehaviorTemplate::Action*", - "bases": [ - "PropertyClass" - ], - "hash": 1451957982, - "properties": { - "m_nPathID": { - "type": "gid", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 214382368 - }, - "m_nNodeID": { - "type": "int", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 152152635, - "enum_options": { - "__DEFAULT": 4294967295 - } - }, - "m_nPriority": { - "type": "int", - "id": 2, - "offset": 84, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1515251530, - "enum_options": { - "__DEFAULT": 100 - } - }, - "m_nChance": { - "type": "int", - "id": 3, - "offset": 88, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1860748394, - "enum_options": { - "__DEFAULT": 50 - } - } - } - }, - "675493703": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 675493703, - "properties": { - "m_name": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1717359772 - }, - "m_ID": { - "type": "int", - "id": 1, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2090585127 - }, - "m_description": { - "type": "std::string", - "id": 2, - "offset": 112, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1649374815 - }, - "m_iconResource": { - "type": "std::string", - "id": 3, - "offset": 144, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2838396012 - }, - "m_categoryIDs": { - "type": "int", - "id": 4, - "offset": 208, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2145925880 - }, - "m_tags": { - "type": "std::string", - "id": 5, - "offset": 176, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1717575210 - } - } - }, - "266711857": { - "name": "class AttachParticleActorCinematicAction", - "bases": [ - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 266711857, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - }, - "m_effectName": { - "type": "std::string", - "id": 2, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2029161513 - }, - "m_nodeName": { - "type": "std::string", - "id": 3, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3607089954 - }, - "m_assetName": { - "type": "std::string", - "id": 4, - "offset": 184, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513131580 - } - } - }, - "1860873408": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1860873408, - "properties": { - "m_matchID": { - "type": "gid", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1757621298 - }, - "m_matchNameID": { - "type": "unsigned int", - "id": 1, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1751361288 - }, - "m_teams": { - "type": "class SharedPointer", - "id": 2, - "offset": 96, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1984373608 - }, - "m_matchName": { - "type": "std::string", - "id": 3, - "offset": 112, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2061215721 - }, - "m_matchTitle": { - "type": "std::string", - "id": 4, - "offset": 144, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2918442218 - }, - "m_matchZoneID": { - "type": "gid", - "id": 5, - "offset": 176, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2026205966 - }, - "m_creatorID": { - "type": "gid", - "id": 6, - "offset": 88, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1051766037 - }, - "m_matchZone": { - "type": "std::string", - "id": 7, - "offset": 184, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2061662244 - }, - "m_startTime": { - "type": "int", - "id": 8, - "offset": 216, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1386968823 - }, - "m_status": { - "type": "int", - "id": 9, - "offset": 220, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 960781182 - }, - "m_friendsOnly": { - "type": "bool", - "id": 10, - "offset": 236, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1420401792 - }, - "m_tournamentNameID": { - "type": "unsigned int", - "id": 11, - "offset": 224, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1799846440 - }, - "m_leagueID": { - "type": "unsigned int", - "id": 12, - "offset": 228, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 692361645 - }, - "m_seasonID": { - "type": "unsigned int", - "id": 13, - "offset": 232, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 535260643 - }, - "m_bUpdateLadder": { - "type": "bool", - "id": 14, - "offset": 248, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1937525956 - }, - "m_maxPointsPerMatch": { - "type": "unsigned int", - "id": 15, - "offset": 240, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1397040900 - }, - "m_estimatedWeight": { - "type": "float", - "id": 16, - "offset": 244, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1374360127 - }, - "m_maxELOError": { - "type": "int", - "id": 17, - "offset": 252, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 318998922 - }, - "m_uniqueMatchID": { - "type": "std::string", - "id": 18, - "offset": 264, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3291026220 - }, - "m_pvpDuelModifiersTemplates": { - "type": "class SharedPointer", - "id": 19, - "offset": 296, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1193155411 - }, - "m_teamSize": { - "type": "unsigned int", - "id": 20, - "offset": 256, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2343388751 - } - } - }, - "675728737": { - "name": "class SharedPointer", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 675728737, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - } - } - }, - "1452431149": { - "name": "class TeamHelpWorldInfoList*", - "bases": [ - "PropertyClass" - ], - "hash": 1452431149, - "properties": { - "m_teamHelpWorldInfoList": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2354245339 - } - } - }, - "1859418379": { - "name": "class MatchCostAdjustment*", - "bases": [ - "PropertyClass" - ], - "hash": 1859418379, - "properties": { - "m_matchAdjustmentType": { - "type": "enum MatchCostAdjustment::ADJUSTMENT_TYPE", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2305794521, - "enum_options": { - "SUBSCRIBER": 0, - "FREETOPLAY": 1, - "UNSET_MAX": 2 - } - } - } - }, - "1452429869": { - "name": "class TeamHelpWorldInfoList", - "bases": [ - "PropertyClass" - ], - "hash": 1452429869, - "properties": { - "m_teamHelpWorldInfoList": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2354245339 - } - } - }, - "1858172823": { - "name": "class AvatarItemInfoBase", - "bases": [ - "PropertyClass" - ], - "hash": 1858172823, - "properties": {} - }, - "266780769": { - "name": "class ClientEventDrivenCinematic", - "bases": [ - "ClientCinematic", - "Cinematic", - "PropertyClass" - ], - "hash": 266780769, - "properties": {} - }, - "1857641857": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1857641857, - "properties": { - "m_targetZone": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2698931614 - }, - "m_targetLocation": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2493737915 - }, - "m_location": { - "type": "class Vector3D", - "id": 2, - "offset": 136, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2239683611 - } - } - }, - "676553067": { - "name": "class RaidPortalBehavior", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 676553067, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_active": { - "type": "bool", - "id": 1, - "offset": 112, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 239335471 - } - } - }, - "1857551395": { - "name": "class SharedPointer", - "bases": [ - "ZoneTokenTimer", - "ZoneTokenBase", - "PropertyClass" - ], - "hash": 1857551395, - "properties": { - "m_debugName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3553984419 - }, - "m_adjectiveList": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 3195213318 - }, - "m_icon": { - "type": "std::string", - "id": 2, - "offset": 120, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1717182340 - }, - "m_iconBW": { - "type": "std::string", - "id": 3, - "offset": 152, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2047461085 - }, - "m_description": { - "type": "std::string", - "id": 4, - "offset": 184, - "flags": 8388639, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1649374815 - }, - "m_displayMode": { - "type": "enum ZTDisplayMode", - "id": 5, - "offset": 216, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2216526410, - "enum_options": { - "ZTDM_Shown": 0, - "ZTDM_Discoverable": 1, - "ZTDM_Hidden": 2 - } - }, - "m_storage": { - "type": "enum ZTStorage", - "id": 6, - "offset": 220, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2290454852, - "enum_options": { - "ZTS_Player": 0, - "ZTS_Zone": 1 - } - }, - "m_onEnable": { - "type": "class SharedPointer", - "id": 7, - "offset": 224, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2591736864 - }, - "m_onDiscover": { - "type": "class SharedPointer", - "id": 8, - "offset": 240, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2826026872 - }, - "m_onDisable": { - "type": "class SharedPointer", - "id": 9, - "offset": 256, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1860656717 - }, - "m_sourceID": { - "type": "gid", - "id": 10, - "offset": 272, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1134700470 - }, - "m_inZone": { - "type": "bool", - "id": 11, - "offset": 280, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 564535654 - }, - "m_enabled": { - "type": "bool", - "id": 12, - "offset": 281, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 504506718 - }, - "m_discovered": { - "type": "bool", - "id": 13, - "offset": 282, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2060478331 - }, - "m_duration": { - "type": "std::string", - "id": 14, - "offset": 288, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2327821921 - }, - "m_onExpire": { - "type": "class SharedPointer", - "id": 15, - "offset": 320, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2604142950 - }, - "m_timeTriggers": { - "type": "class SharedPointer", - "id": 16, - "offset": 336, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1112107844 - }, - "m_expireTime": { - "type": "unsigned int", - "id": 17, - "offset": 356, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1836304873 - } - } - }, - "675828489": { - "name": "class SharedPointer", - "bases": [ - "CreateActorCinematicAction", - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 675828489, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - }, - "m_animations": { - "type": "std::string", - "id": 2, - "offset": 120, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3030904078 - }, - "m_model": { - "type": "std::string", - "id": 3, - "offset": 152, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2300510668 - }, - "m_createOrientation": { - "type": "enum CreateActorCinematicAction::kCreateOrientation", - "id": 4, - "offset": 184, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3562324429, - "enum_options": { - "kFaceTarget": 0, - "kFaceSource": 1, - "kSigil": 2, - "kTarget": 3, - "kSource": 4, - "kSigilRight": 5, - "kSigilLeft": 6, - "kFaceTargetTeam": 7 - } - }, - "m_hidePolymorphFloatyText": { - "type": "bool", - "id": 5, - "offset": 188, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 942475883 - }, - "m_forwardOffset": { - "type": "float", - "id": 6, - "offset": 192, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1749681459 - }, - "m_absoluteTarget": { - "type": "bool", - "id": 7, - "offset": 196, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1463993657 - } - } - }, - "270737236": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 270737236, - "properties": { - "m_maxCopiesEachTemplate": { - "type": "int", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 482850544 - }, - "m_itemDegradationTime": { - "type": "float", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 500224183 - }, - "m_priceMods": { - "type": "class AuctionPriceMods*", - "id": 2, - "offset": 88, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2703049879 - }, - "m_craftedPriceMods": { - "type": "class AuctionPriceMods*", - "id": 3, - "offset": 112, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2084157488 - }, - "m_observerTimeout": { - "type": "int", - "id": 4, - "offset": 160, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 562500777 - }, - "m_maxReagentTemplateCopies": { - "type": "int", - "id": 5, - "offset": 76, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1246482213 - }, - "m_reagentPriceMods": { - "type": "class AuctionPriceMods*", - "id": 6, - "offset": 136, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1253990333 - }, - "m_templatesInStockList": { - "type": "unsigned int", - "id": 7, - "offset": 184, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 977195955 - } - } - }, - "675825850": { - "name": "class DeckTemplate*", - "bases": [ - "CoreTemplate", - "PropertyClass" - ], - "hash": 675825850, - "properties": { - "m_behaviors": { - "type": "class BehaviorTemplate*", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1197808594 - }, - "m_name": { - "type": "std::string", - "id": 1, - "offset": 96, - "flags": 134217735, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1717359772 - }, - "m_spellNameList": { - "type": "std::string", - "id": 2, - "offset": 136, - "flags": 268435463, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2848889656, - "enum_options": { - "__BASECLASS": "SpellTemplate" - } - } - } - }, - "1455460467": { - "name": "class ClientRequirementFailInteraction*", - "bases": [ - "RequirementFailNotification", - "ServiceOptionBase", - "PropertyClass" - ], - "hash": 1455460467, - "properties": { - "m_serviceName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2206028813 - }, - "m_iconKey": { - "type": "std::string", - "id": 1, - "offset": 168, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2457138637 - }, - "m_displayKey": { - "type": "std::string", - "id": 2, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3023276954 - }, - "m_serviceIndex": { - "type": "unsigned int", - "id": 3, - "offset": 204, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2103126710 - }, - "m_forceInteract": { - "type": "bool", - "id": 4, - "offset": 200, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1705789564 - }, - "m_failureMessage": { - "type": "std::string", - "id": 5, - "offset": 224, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1882376712 - } - } - }, - "267962543": { - "name": "class ClientElixirBenefitEffect*", - "bases": [ - "ElixirBenefitEffect", - "GameEffectBase", - "PropertyClass" - ], - "hash": 267962543, - "properties": { - "m_currentTickCount": { - "type": "double", - "id": 0, - "offset": 80, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2533274692 - }, - "m_effectNameID": { - "type": "unsigned int", - "id": 1, - "offset": 96, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1204067144 - }, - "m_bIsOnPet": { - "type": "bool", - "id": 2, - "offset": 73, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 522593303 - }, - "m_originatorID": { - "type": "gid", - "id": 3, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1131810019 - }, - "m_itemSlotID": { - "type": "unsigned int", - "id": 4, - "offset": 112, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1895747595 - }, - "m_internalID": { - "type": "int", - "id": 5, - "offset": 92, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1643137924 - }, - "m_endTime": { - "type": "unsigned int", - "id": 6, - "offset": 88, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 716479635 - }, - "m_flags": { - "type": "unsigned int", - "id": 7, - "offset": 128, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1005801050 - } - } - }, - "1453457469": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1453457469, - "properties": { - "m_remapIndex": { - "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1234341146 - }, - "m_textureTemplateID": { - "type": "unsigned int", - "id": 1, - "offset": 76, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1730653991 - } - } - }, - "1858039720": { - "name": "class SharedPointer", - "bases": [ - "CinematicStageTemplate", - "PropertyClass" - ], - "hash": 1858039720, - "properties": { - "m_name": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1717359772 - }, - "m_duration": { - "type": "float", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 920323453 - }, - "m_actions": { - "type": "class SharedPointer", - "id": 2, - "offset": 112, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1380578687 - }, - "m_stageRelationships": { - "type": "class SharedPointer", - "id": 3, - "offset": 128, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 499983354 - }, - "m_cameras": { - "type": "std::string", - "id": 4, - "offset": 152, - "flags": 131079, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 3217341687 - }, - "m_altcameras": { - "type": "std::string", - "id": 5, - "offset": 176, - "flags": 131079, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1882980152 - }, - "m_bShowDefeatedText": { - "type": "bool", - "id": 6, - "offset": 232, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2068996589 - }, - "m_bForceStageToWaitOnAnimation": { - "type": "bool", - "id": 7, - "offset": 233, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2071596205 - }, - "m_animation": { - "type": "std::string", - "id": 8, - "offset": 200, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3431428731 - } - } - }, - "267792475": { - "name": "class SharedPointer", - "bases": [ - "Window", - "PropertyClass" - ], - "hash": 267792475, - "properties": { - "m_sName": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306437263 - }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621225959 - }, - "m_Style": { - "type": "unsigned int", - "id": 2, - "offset": 152, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "SCALE_CHILDREN": 2, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "FOCUS_LOCKED": 64, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152 - } - }, - "m_Flags": { - "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } - }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3105139380 - }, - "m_fTargetAlpha": { - "type": "float", - "id": 5, - "offset": 212, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1809129834 - }, - "m_fDisabledAlpha": { - "type": "float", - "id": 6, - "offset": 216, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1389987675 - }, - "m_fAlpha": { - "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 482130755 - }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3623628394 - }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2102211316 - }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1846695875 - }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3389835433 - }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2547159940 - }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2587533771 - }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3091503757 - }, - "m_frameImage": { - "type": "class SharedPointer", - "id": 16, - "offset": 584, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3125725509 - } - } - }, - "1452765532": { - "name": "class PetDerbyTrackInfo*", - "bases": [ - "PropertyClass" - ], - "hash": 1452765532, - "properties": { - "m_trackID": { - "type": "gid", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 703251290 - }, - "m_zone": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1717806295 - }, - "m_key": { - "type": "std::string", - "id": 2, - "offset": 112, - "flags": 8388639, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1764739684 - }, - "m_rank": { - "type": "unsigned char", - "id": 3, - "offset": 144, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 857403388 - }, - "m_lapCount": { - "type": "unsigned char", - "id": 4, - "offset": 145, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 791794870 - } - } - }, - "675865269": { - "name": "class ClientPvPPenaltyMatchBan*", - "bases": [ - "PvPPenaltyMatchBan", - "InfractionPenalty", - "PropertyClass" - ], - "hash": 675865269, - "properties": { - "m_internalID": { - "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1854540375 - }, - "m_categoryID": { - "type": "unsigned int", - "id": 1, - "offset": 76, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1382795736 - }, - "m_removeAtPointValue": { - "type": "float", - "id": 2, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2112196961 - }, - "m_expireTime": { - "type": "unsigned int", - "id": 3, - "offset": 84, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1836304873 - }, - "m_duration": { - "type": "unsigned int", - "id": 4, - "offset": 88, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1041524755 - } - } - }, - "1452743942": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1452743942, - "properties": { - "m_friendlyPlayerWorldList": { - "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 780811899 - } - } - }, - "1858184528": { - "name": "class BuffDebuffEventCinematicAction*", - "bases": [ - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 1858184528, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - } - } - }, - "269842394": { - "name": "class EquipmentSet*", - "bases": [ - "PropertyClass" - ], - "hash": 269842394, - "properties": { - "m_serializedItems": { - "type": "std::string", - "id": 0, - "offset": 96, - "flags": 575, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1828227529 - }, - "m_equipmentSetName": { - "type": "unsigned int", - "id": 1, - "offset": 88, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 518194738 - }, - "m_isEquipped": { - "type": "bool", - "id": 2, - "offset": 128, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1792437804 - } - } - }, - "267975727": { - "name": "class SharedPointer", - "bases": [ - "HousingTeleporterBehaviorBase", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 267975727, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_lotInstanceGID": { - "type": "gid", - "id": 1, - "offset": 112, - "flags": 65567, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2010711536 - }, - "m_x": { - "type": "float", - "id": 2, - "offset": 120, - "flags": 65543, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 283788559 - }, - "m_y": { - "type": "float", - "id": 3, - "offset": 124, - "flags": 65543, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 283788560 - }, - "m_z": { - "type": "float", - "id": 4, - "offset": 128, - "flags": 65543, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 283788561 - }, - "m_yaw": { - "type": "float", - "id": 5, - "offset": 132, - "flags": 65543, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 357256328 - }, - "m_lotTemplateID": { - "type": "gid", - "id": 6, - "offset": 136, - "flags": 65543, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1344354096 - }, - "m_clusterGID": { - "type": "gid", - "id": 7, - "offset": 144, - "flags": 65543, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 112792526 - }, - "m_structureInstanceGID": { - "type": "gid", - "id": 8, - "offset": 152, - "flags": 65543, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2083588818 - }, - "m_structureTemplateID": { - "type": "gid", - "id": 9, - "offset": 160, - "flags": 65543, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 825960402 - }, - "m_isOutside": { - "type": "bool", - "id": 10, - "offset": 168, - "flags": 65543, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1999324940 - }, - "m_teleportData": { - "type": "std::string", - "id": 11, - "offset": 208, - "flags": 551, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3645160644 - } - } - }, - "676982790": { - "name": "class SharedPointer", - "bases": [ - "GearVaultBehaviorBase", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 676982790, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_gearList": { - "type": "std::string", - "id": 1, - "offset": 112, - "flags": 65567, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1498902582 - }, - "m_gearData": { - "type": "std::string", - "id": 2, - "offset": 128, - "flags": 551, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1498606388 - } - } - }, - "1858950436": { - "name": "class ContainerEffectInfo*", - "bases": [ - "GameEffectInfo", - "PropertyClass" - ], - "hash": 1858950436, - "properties": { - "m_effectName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2029161513 - } - } - }, - "1455352205": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1455352205, - "properties": { - "m_displayName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2446900370 - }, - "m_fMultiplier": { - "type": "float", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 157286404 - }, - "m_category": { - "type": "int", - "id": 2, - "offset": 108, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1184350616 - }, - "m_minimumToActivate": { - "type": "int", - "id": 3, - "offset": 112, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2042224778 - } - } - }, - "1453794705": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1453794705, - "properties": { - "m_compressedPetMovement": { - "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 324140950 - } - } - }, - "270408835": { - "name": "class SharedPointer", - "bases": [ - "MatchTemplate", - "CoreTemplate", - "PropertyClass" - ], - "hash": 270408835, - "properties": { - "m_behaviors": { - "type": "class BehaviorTemplate*", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1197808594 - }, - "m_matchName": { - "type": "std::string", - "id": 1, - "offset": 128, - "flags": 134217735, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2061215721 - }, - "m_matchDisplayName": { - "type": "std::string", - "id": 2, - "offset": 96, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3201906495 - }, - "m_matchTitle": { - "type": "std::string", - "id": 3, - "offset": 168, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2918442218 - }, - "m_allowOverrides": { - "type": "bool", - "id": 4, - "offset": 200, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 469376485 - }, - "m_teamSize": { - "type": "unsigned int", - "id": 5, - "offset": 208, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2343388751 - }, - "m_teamCount": { - "type": "unsigned int", - "id": 6, - "offset": 204, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1825878845 - }, - "m_minTeams": { - "type": "unsigned int", - "id": 7, - "offset": 212, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1717685739 - }, - "m_timeout": { - "type": "int", - "id": 8, - "offset": 216, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 365357953 - }, - "m_maxPointsPerMatch": { - "type": "unsigned int", - "id": 9, - "offset": 280, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1397040900 - }, - "m_estimatedWeight": { - "type": "float", - "id": 10, - "offset": 284, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1374360127 - }, - "m_matchInfo": { - "type": "class SharedPointer", - "id": 11, - "offset": 256, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2424135306 - }, - "m_awardInfo": { - "type": "class SharedPointer", - "id": 12, - "offset": 224, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2862912855 - }, - "m_perLeagueAwardInfo": { - "type": "class SharedPointer", - "id": 13, - "offset": 240, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1635456322 - }, - "m_zones": { - "type": "std::string", - "id": 14, - "offset": 288, - "flags": 268435463, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2315938538, - "enum_options": { - "__BASECLASS": "ZoneData" - } - }, - "m_initialQueueThreshold": { - "type": "unsigned int", - "id": 15, - "offset": 312, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2069737705 - }, - "m_actorQueueTimeout": { - "type": "unsigned int", - "id": 16, - "offset": 316, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2220949042 - }, - "m_teamQueueTimeout": { - "type": "unsigned int", - "id": 17, - "offset": 320, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 905233664 - }, - "m_actorQueueGrowth": { - "type": "float", - "id": 18, - "offset": 324, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 499165488 - }, - "m_teamQueueGrowth": { - "type": "float", - "id": 19, - "offset": 328, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1500499518 - }, - "m_matchMakingLevelMultiplier": { - "type": "float", - "id": 20, - "offset": 332, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 838900890 - }, - "m_levelModifiersListID": { - "type": "gid", - "id": 21, - "offset": 336, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 383459035 - }, - "m_incompleteTeamTimeout": { - "type": "unsigned int", - "id": 22, - "offset": 276, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1580576011 - }, - "m_incompleteMatchTimeout": { - "type": "unsigned int", - "id": 23, - "offset": 272, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2167303729 - }, - "m_shortMatchDurationForPenaltySeconds": { - "type": "unsigned int", - "id": 24, - "offset": 360, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1403927011 - }, - "m_thresholdForExtendingMatchSearch": { - "type": "unsigned int", - "id": 25, - "offset": 364, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1973589002 - }, - "m_numberOfPlayersRequiredToExtendMatchSearch": { - "type": "unsigned int", - "id": 26, - "offset": 368, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 858588026 - }, - "m_showStatusOnJoinQueue": { - "type": "bool", - "id": 27, - "offset": 376, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1803391338 - }, - "m_allowExceedRangeForMatchesOptionForPlayers": { - "type": "bool", - "id": 28, - "offset": 377, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 592913977 - }, - "m_makeTeamsWithSameMatchOptsTimeoutSec": { - "type": "int", - "id": 29, - "offset": 372, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1787977769 - }, - "m_streakSize": { - "type": "int", - "id": 30, - "offset": 380, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1155220287 - }, - "m_historySize": { - "type": "int", - "id": 31, - "offset": 384, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 229055111 - }, - "m_queueWaitingTime": { - "type": "int", - "id": 32, - "offset": 388, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 15229089 - }, - "m_minQueueSize": { - "type": "int", - "id": 33, - "offset": 392, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1319267550 - }, - "m_maxQueueSize": { - "type": "int", - "id": 34, - "offset": 396, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1277586976 - }, - "m_confTierRankTimeout": { - "type": "int", - "id": 35, - "offset": 400, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 79057063 - }, - "m_matchTimer": { - "type": "float", - "id": 36, - "offset": 404, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1510935909 - }, - "m_bonusTime": { - "type": "int", - "id": 37, - "offset": 408, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1757496496 - }, - "m_passPenalty": { - "type": "int", - "id": 38, - "offset": 412, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 982951662 - }, - "m_yellowTime": { - "type": "int", - "id": 39, - "offset": 416, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1017028741 - }, - "m_redTime": { - "type": "int", - "id": 40, - "offset": 420, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1909556708 - }, - "m_minTurnTime": { - "type": "int", - "id": 41, - "offset": 424, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 652524886 - }, - "m_effects": { - "type": "class SharedPointer", - "id": 42, - "offset": 432, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 804962647 - }, - "m_updateBattlePassPoints": { - "type": "bool", - "id": 43, - "offset": 456, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 713306342 - }, - "m_battlePassWinPoints": { - "type": "int", - "id": 44, - "offset": 460, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1252337240 - }, - "m_battlePassLosePoints": { - "type": "int", - "id": 45, - "offset": 464, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1400839869 - }, - "m_numberOfRounds": { - "type": "unsigned int", - "id": 46, - "offset": 488, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2292833030 - }, - "m_removeBracketWhenEmpty": { - "type": "bool", - "id": 47, - "offset": 492, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1934068926 - }, - "m_prepareForMatchTimeSeconds": { - "type": "unsigned int", - "id": 48, - "offset": 496, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2209979662 - }, - "m_precreateTeams": { - "type": "bool", - "id": 49, - "offset": 500, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1229158248 - }, - "m_bracketTypeClassName": { - "type": "std::string", - "id": 50, - "offset": 504, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1569907152 - } - } - }, - "681638361": { - "name": "class CrownShopGiftRedemption", - "bases": [ - "PropertyClass" - ], - "hash": 681638361, - "properties": { - "m_message": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3411261376 - }, - "m_itemId.m_full": { - "type": "unsigned __int64", - "id": 1, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 625276258 - }, - "m_itemCount": { - "type": "int", - "id": 2, - "offset": 120, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1789298066 - }, - "m_itemFlags": { - "type": "int", - "id": 3, - "offset": 124, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1792726006 - }, - "m_texture": { - "type": "int", - "id": 4, - "offset": 112, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 222406987 - }, - "m_decal": { - "type": "int", - "id": 5, - "offset": 116, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 791777171 - }, - "m_petName": { - "type": "int", - "id": 6, - "offset": 128, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1492854820 - }, - "m_giverAccountID": { - "type": "gid", - "id": 7, - "offset": 136, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 679105551 - }, - "m_itemTransactionId": { - "type": "std::string", - "id": 8, - "offset": 144, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1830751453 - } - } - }, - "1859440048": { - "name": "class ReqDerbyPlace", - "bases": [ - "ReqNumeric", - "Requirement", - "PropertyClass" - ], - "hash": 1859440048, - "properties": { - "m_applyNOT": { - "type": "bool", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1746328074, - "enum_options": { - "__DEFAULT": 0 - } - }, - "m_operator": { - "type": "enum Requirement::Operator", - "id": 1, - "offset": 76, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2672792317, - "enum_options": { - "ROP_AND": 0, - "ROP_OR": 1, - "__DEFAULT": "ROP_AND" - } - }, - "m_numericValue": { - "type": "float", - "id": 2, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 521915239 - }, - "m_operatorType": { - "type": "enum ReqNumeric::OPERATOR_TYPE", - "id": 3, - "offset": 84, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2228122961, - "enum_options": { - "OPERATOR_UNKNOWN": 4294967295, - "OPERATOR_EQUALS": 0, - "OPERATOR_GREATER_THAN": 1, - "OPERATOR_LESS_THAN": 2, - "OPERATOR_GREATER_THAN_EQ": 3, - "OPERATOR_LESS_THAN_EQ": 4 - } - } - } - }, - "270201387": { - "name": "class VisualAttributeBehaviorTemplate", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 270201387, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - }, - "m_visualAttributeType": { - "type": "enum VisualAttributeType", - "id": 1, - "offset": 120, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2701225082, - "enum_options": { - "VAT_HairStyle": 0, - "VAT_HairColor": 1, - "VAT_FaceStyle": 2, - "VAT_SkinColor": 3, - "VAT_EyeColor": 4, - "VAT_FacePaint": 5, - "VAT_NewEyeColor": 6, - "VAT_NewFaceStyle": 7, - "VAT_NoseStyle": 8, - "VAT_MouthStyle": 9, - "VAT_AccessoryStyle": 10, - "VAT_EyebrowStyle": 11, - "VAT_LipColorStyle": 12, - "VAT_BoyColor": 13, - "VAT_BoyTrimColor": 14, - "VAT_GirlColor": 15, - "VAT_GirlTrimColor": 16 - } - }, - "m_sourceFile": { - "type": "std::string", - "id": 2, - "offset": 128, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2304987980 - }, - "m_referenceFile": { - "type": "std::string", - "id": 3, - "offset": 160, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1866483306 - }, - "m_color": { - "type": "class Color", - "id": 4, - "offset": 192, - "flags": 262151, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1791663549 - }, - "m_equipmentIcon": { - "type": "std::string", - "id": 5, - "offset": 200, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1920035708 - } - } - }, - "678170743": { - "name": "class ClientAddCameraMappingCinematicAction*", - "bases": [ - "AddCameraMappingCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 678170743, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_camToReplace": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2286913643 - }, - "m_replaceWithCam": { - "type": "std::string", - "id": 2, - "offset": 112, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2992754084 - } - } - }, - "1859440043": { - "name": "class ReqDerbyPlace*", - "bases": [ - "ReqNumeric", - "Requirement", - "PropertyClass" - ], - "hash": 1859440043, - "properties": { - "m_applyNOT": { - "type": "bool", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1746328074, - "enum_options": { - "__DEFAULT": 0 - } - }, - "m_operator": { - "type": "enum Requirement::Operator", - "id": 1, - "offset": 76, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2672792317, - "enum_options": { - "ROP_AND": 0, - "ROP_OR": 1, - "__DEFAULT": "ROP_AND" - } - }, - "m_numericValue": { - "type": "float", - "id": 2, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 521915239 - }, - "m_operatorType": { - "type": "enum ReqNumeric::OPERATOR_TYPE", - "id": 3, - "offset": 84, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2228122961, - "enum_options": { - "OPERATOR_UNKNOWN": 4294967295, - "OPERATOR_EQUALS": 0, - "OPERATOR_GREATER_THAN": 1, - "OPERATOR_LESS_THAN": 2, - "OPERATOR_GREATER_THAN_EQ": 3, - "OPERATOR_LESS_THAN_EQ": 4 - } - } - } - }, - "677315896": { - "name": "class BeneficialProximityBehavior", - "bases": [ - "BeneficialProximityBehaviorBase", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 677315896, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - } - } - }, - "1456049238": { - "name": "class LeashOffsetOverride*", - "bases": [ - "PropertyClass" - ], - "hash": 1456049238, - "properties": { - "m_offsetType": { - "type": "enum LeashOffsetOverride::LeashOffsetType", - "id": 0, - "offset": 72, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1559902382, - "enum_options": { - "LOT_UNRESTRICTED": 0, - "LOT_RIGHTONLY": 1, - "LOT_LEFTONLY": 2 - } - } - } - }, - "677964108": { - "name": "class SharedPointer", - "bases": [ - "Window", - "PropertyClass" - ], - "hash": 677964108, - "properties": { - "m_sName": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306437263 - }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621225959 - }, - "m_Style": { - "type": "unsigned int", - "id": 2, - "offset": 152, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "SCALE_CHILDREN": 2, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "FOCUS_LOCKED": 64, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152 - } - }, - "m_Flags": { - "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } - }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3105139380 - }, - "m_fTargetAlpha": { - "type": "float", - "id": 5, - "offset": 212, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1809129834 - }, - "m_fDisabledAlpha": { - "type": "float", - "id": 6, - "offset": 216, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1389987675 - }, - "m_fAlpha": { - "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 482130755 - }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3623628394 - }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2102211316 - }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1846695875 - }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3389835433 - }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2547159940 - }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2587533771 - }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3091503757 - } - } - }, - "1455639533": { - "name": "class AnimatePipsCinematicAction*", - "bases": [ - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 1455639533, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - }, - "m_sActorPrefix": { - "type": "std::string", - "id": 2, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3246317205 - }, - "m_fPerPipDelay": { - "type": "float", - "id": 3, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1466507836 - }, - "m_fRate": { - "type": "float", - "id": 4, - "offset": 156, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 883665801 - } - } - }, - "1860802814": { - "name": "enum MinionType", - "bases": [], - "hash": 1860802814, - "properties": {} - }, - "272691651": { - "name": "class InteractiveMusicBehavior", - "bases": [ - "InteractiveMusicBehaviorBase", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 272691651, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_musicData": { - "type": "std::string", - "id": 1, - "offset": 200, - "flags": 66087, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2963606294 - } - } - }, - "1455639527": { - "name": "class AnimatePipsCinematicAction", - "bases": [ - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 1455639527, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - }, - "m_sActorPrefix": { - "type": "std::string", - "id": 2, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3246317205 - }, - "m_fPerPipDelay": { - "type": "float", - "id": 3, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1466507836 - }, - "m_fRate": { - "type": "float", - "id": 4, - "offset": 156, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 883665801 - } - } - }, - "1860261725": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1860261725, - "properties": { - "m_location": { - "type": "class Vector3D", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2239683611 - }, - "m_boxLengths": { - "type": "class Vector3D", - "id": 1, - "offset": 84, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2872763232 - }, - "m_templateID.m_full": { - "type": "unsigned __int64", - "id": 2, - "offset": 96, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 633907631 - }, - "m_respawnTime": { - "type": "float", - "id": 3, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1554573574 - }, - "m_numSpawns": { - "type": "int", - "id": 4, - "offset": 108, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1269366534 - }, - "m_zoneLevelMin": { - "type": "unsigned int", - "id": 5, - "offset": 112, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1028934149 - }, - "m_zoneLevelMax": { - "type": "unsigned int", - "id": 6, - "offset": 116, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1028933895 - }, - "m_zoneLevelUp": { - "type": "unsigned int", - "id": 7, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1342541638 - } - } - }, - "271199900": { - "name": "class TakeCinematicStageTemplate*", - "bases": [ - "CinematicStageTemplate", - "PropertyClass" - ], - "hash": 271199900, - "properties": { - "m_name": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1717359772 - }, - "m_duration": { - "type": "float", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 920323453 - }, - "m_actions": { - "type": "class SharedPointer", - "id": 2, - "offset": 112, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1380578687 - }, - "m_stageRelationships": { - "type": "class SharedPointer", - "id": 3, - "offset": 128, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 499983354 - }, - "m_cameras": { - "type": "std::string", - "id": 4, - "offset": 152, - "flags": 131079, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 3217341687 - }, - "m_altcameras": { - "type": "std::string", - "id": 5, - "offset": 176, - "flags": 131079, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1882980152 - }, - "m_animation": { - "type": "std::string", - "id": 6, - "offset": 200, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3431428731 - }, - "m_sound": { - "type": "std::string", - "id": 7, - "offset": 232, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2307644996 - } - } - }, - "271199890": { - "name": "class TakeCinematicStageTemplate", - "bases": [ - "CinematicStageTemplate", - "PropertyClass" - ], - "hash": 271199890, - "properties": { - "m_name": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1717359772 - }, - "m_duration": { - "type": "float", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 920323453 - }, - "m_actions": { - "type": "class SharedPointer", - "id": 2, - "offset": 112, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1380578687 - }, - "m_stageRelationships": { - "type": "class SharedPointer", - "id": 3, - "offset": 128, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 499983354 - }, - "m_cameras": { - "type": "std::string", - "id": 4, - "offset": 152, - "flags": 131079, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 3217341687 - }, - "m_altcameras": { - "type": "std::string", - "id": 5, - "offset": 176, - "flags": 131079, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1882980152 - }, - "m_animation": { - "type": "std::string", - "id": 6, - "offset": 200, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3431428731 - }, - "m_sound": { - "type": "std::string", - "id": 7, - "offset": 232, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2307644996 - } - } - }, - "679874260": { - "name": "class SharedPointer", - "bases": [ - "LootInfo", - "LootInfoBase", - "PropertyClass" - ], - "hash": 679874260, - "properties": { - "m_lootType": { - "type": "enum LootInfo::LOOT_TYPE", - "id": 0, - "offset": 72, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1591891442, - "enum_options": { - "LOOT_TYPE_NONE": 0, - "LOOT_TYPE_GOLD": 1, - "LOOT_TYPE_MANA": 2, - "LOOT_TYPE_ITEM": 3, - "LOOT_TYPE_TREASURE_CARD": 4, - "LOOT_TYPE_MAGIC_XP": 5, - "LOOT_TYPE_ADD_SPELL": 6, - "LOOT_TYPE_MAX_HEALTH": 7, - "LOOT_TYPE_MAX_GOLD": 8, - "LOOT_TYPE_MAX_MANA": 9, - "LOOT_TYPE_MAX_POTION": 10, - "LOOT_TYPE_TRAINING_POINTS": 11, - "LOOT_TYPE_RECIPE": 12, - "LOOT_TYPE_CRAFTING_SLOT": 13, - "LOOT_TYPE_REAGENT": 14, - "LOOT_TYPE_PETSNACK": 15, - "LOOT_TYPE_GARDENING_XP": 16, - "LOOT_TYPE_PET_XP": 17, - "LOOT_TYPE_TREASURE_TABLE": 18, - "LOOT_TYPE_ARENA_POINTS": 19, - "LOOT_TYPE_ARENA_BONUS_POINTS": 20, - "LOOT_TYPE_GROUP": 21, - "LOOT_TYPE_FISHING_XP": 22, - "LOOT_TYPE_EVENT_CURRENCY_1": 24, - "LOOT_TYPE_EVENT_CURRENCY_2": 25, - "LOOT_TYPE_PVP_CURRENCY": 26, - "LOOT_TYPE_PVP_CURRENCY_BONUS": 27, - "LOOT_TYPE_PVP_TOURNEY_CURRENCY": 28, - "LOOT_TYPE_PVP_TOURNEY_CURRENCY_BONUS": 29, - "LOOT_TYPE_FURNITURE_ESSENCE": 30 - } - }, - "m_arenaPointsAmount": { - "type": "int", - "id": 1, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2041106034 - } - } - }, - "678866034": { - "name": "struct QuestEventData", - "bases": [], - "hash": 678866034, - "properties": {} - }, - "1455911260": { - "name": "class PetDerbyTrackInfo", - "bases": [ - "PropertyClass" - ], - "hash": 1455911260, - "properties": { - "m_trackID": { - "type": "gid", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 703251290 - }, - "m_zone": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1717806295 - }, - "m_key": { - "type": "std::string", - "id": 2, - "offset": 112, - "flags": 8388639, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1764739684 - }, - "m_rank": { - "type": "unsigned char", - "id": 3, - "offset": 144, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 857403388 - }, - "m_lapCount": { - "type": "unsigned char", - "id": 4, - "offset": 145, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 791794870 - } - } - }, - "1860858701": { - "name": "class SharedPointer", - "bases": [ - "TeleportProximityBehaviorBase", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1860858701, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - } - } - }, - "1455712177": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1455712177, - "properties": { - "m_interactorOneName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3615982777 - }, - "m_interactorTwoName": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1847465777 - }, - "m_eventsRaisedOnOne": { - "type": "std::string", - "id": 2, - "offset": 136, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2412613351 - } - } - }, - "271300776": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 271300776, - "properties": { - "m_nCostChangeAmt": { - "type": "int", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1687521865 - }, - "m_kTerrainType": { - "type": "enum DerbyTerrainTargetType", - "id": 1, - "offset": 76, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2546445910, - "enum_options": { - "Grass": 0, - "Dirt": 1, - "Clay": 2, - "AllObstacleTerrain": 4 - } - } - } - }, - "679795894": { - "name": "class std::list >", - "bases": [], - "hash": 679795894, - "properties": {} - }, - "1863037485": { - "name": "class SharedPointer", - "bases": [ - "ServiceOptionBase", - "PropertyClass" - ], - "hash": 1863037485, - "properties": { - "m_serviceName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2206028813 - }, - "m_iconKey": { - "type": "std::string", - "id": 1, - "offset": 168, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2457138637 - }, - "m_displayKey": { - "type": "std::string", - "id": 2, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3023276954 - }, - "m_serviceIndex": { - "type": "unsigned int", - "id": 3, - "offset": 204, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2103126710 - }, - "m_forceInteract": { - "type": "bool", - "id": 4, - "offset": 200, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1705789564 - }, - "m_confirmMessageTitleKey": { - "type": "std::string", - "id": 5, - "offset": 216, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1941136953 - }, - "m_confirmMessageTitleKeyAdvancedMode": { - "type": "std::string", - "id": 6, - "offset": 248, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3219201588 - }, - "m_confirmMessageKey": { - "type": "std::string", - "id": 7, - "offset": 280, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2088579351 - }, - "m_confirmMessageKeyAdvancedMode": { - "type": "std::string", - "id": 8, - "offset": 312, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2417239570 - }, - "m_promptSound": { - "type": "std::string", - "id": 9, - "offset": 344, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3178681510 - }, - "m_promptSoundAdvancedMode": { - "type": "std::string", - "id": 10, - "offset": 376, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1739626529 - }, - "m_acceptKey": { - "type": "std::string", - "id": 11, - "offset": 472, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3325790708 - }, - "m_declineKey": { - "type": "std::string", - "id": 12, - "offset": 504, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1679578008 - }, - "m_optionToConfirm": { - "type": "class SharedPointer", - "id": 13, - "offset": 536, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1224791766 - }, - "m_ignoreOption": { - "type": "std::string", - "id": 14, - "offset": 408, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1667595832 - }, - "m_ignoreAdvancedModeOption": { - "type": "std::string", - "id": 15, - "offset": 440, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2665095027 - } - } - }, - "272451851": { - "name": "class ClientLoyaltyStoreOption*", - "bases": [ - "LoyaltyStoreOption", - "ServiceOptionBase", - "PropertyClass" - ], - "hash": 272451851, - "properties": { - "m_serviceName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2206028813 - }, - "m_iconKey": { - "type": "std::string", - "id": 1, - "offset": 168, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2457138637 - }, - "m_displayKey": { - "type": "std::string", - "id": 2, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3023276954 - }, - "m_serviceIndex": { - "type": "unsigned int", - "id": 3, - "offset": 204, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2103126710 - }, - "m_forceInteract": { - "type": "bool", - "id": 4, - "offset": 200, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1705789564 - } - } - }, - "1455963894": { - "name": "class SphereGeomParams*", - "bases": [ - "GeomParams", - "PropertyClass" - ], - "hash": 1455963894, - "properties": { - "m_eType": { - "type": "enum ProxyType", - "id": 0, - "offset": 72, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1656534066, - "enum_options": { - "ProxyTypeBox": 0, - "ProxyTypeRay": 1, - "ProxyTypeSphere": 2, - "ProxyTypeCylinder": 3, - "ProxyTypeTube": 4, - "ProxyTypePlane": 5, - "ProxyTypeMesh": 6, - "ProxyTypeInvalid": 7 - } - }, - "m_fRadius": { - "type": "float", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 787972805 - } - } - }, - "1862886997": { - "name": "enum BenefitType", - "bases": [], - "hash": 1862886997, - "properties": {} - }, - "681038846": { - "name": "class HouseTransferResult", - "bases": [ - "PropertyClass" - ], - "hash": 681038846, - "properties": { - "m_templateID": { - "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1286746870 - }, - "m_statusResult": { - "type": "int", - "id": 1, - "offset": 76, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1273560413 - } - } - }, - "1861721184": { - "name": "class ZoneFish*", - "bases": [ - "PropertyClass" - ], - "hash": 1861721184, - "properties": { - "m_fishTemplateID": { - "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 33554439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2050232416 - }, - "m_creationChance": { - "type": "float", - "id": 1, - "offset": 76, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1801275150 - }, - "m_alternateLootChance": { - "type": "float", - "id": 2, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 786325463 - }, - "m_alternateLootTableName": { - "type": "std::string", - "id": 3, - "offset": 88, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3445884130 - } - } - }, - "273577555": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 273577555, - "properties": {} - }, - "1456127734": { - "name": "class SphereGeomParams", - "bases": [ - "GeomParams", - "PropertyClass" - ], - "hash": 1456127734, - "properties": { - "m_eType": { - "type": "enum ProxyType", - "id": 0, - "offset": 72, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1656534066, - "enum_options": { - "ProxyTypeBox": 0, - "ProxyTypeRay": 1, - "ProxyTypeSphere": 2, - "ProxyTypeCylinder": 3, - "ProxyTypeTube": 4, - "ProxyTypePlane": 5, - "ProxyTypeMesh": 6, - "ProxyTypeInvalid": 7 - } - }, - "m_fRadius": { - "type": "float", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 787972805 - } - } - }, - "1861721824": { - "name": "class ZoneFish", - "bases": [ - "PropertyClass" - ], - "hash": 1861721824, - "properties": { - "m_fishTemplateID": { - "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 33554439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2050232416 - }, - "m_creationChance": { - "type": "float", - "id": 1, - "offset": 76, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1801275150 - }, - "m_alternateLootChance": { - "type": "float", - "id": 2, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 786325463 - }, - "m_alternateLootTableName": { - "type": "std::string", - "id": 3, - "offset": 88, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3445884130 - } - } - }, - "273348900": { - "name": "class WinAnimScale*", - "bases": [ - "WindowAnimation", - "PropertyClass" - ], - "hash": 273348900, - "properties": { - "m_bUseDeepCopy": { - "type": "bool", - "id": 0, - "offset": 72, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 433380635 - }, - "m_scale": { - "type": "float", - "id": 1, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 899693439 - } - } - }, - "682056880": { - "name": "class SharedPointer", - "bases": [ - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 682056880, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - }, - "m_newActorName": { - "type": "std::string", - "id": 2, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2029131039 - } - } - }, - "681953563": { - "name": "class SharedPointer", - "bases": [ - "ActorDialogEntry", - "PropertyClass" - ], - "hash": 681953563, - "properties": { - "m_requirements": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 263, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3043523229 - }, - "m_dialog": { - "type": "std::string", - "id": 1, - "offset": 88, - "flags": 8388639, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1858395851 - }, - "m_picture": { - "type": "std::string", - "id": 2, - "offset": 120, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3128322903 - }, - "m_soundFile": { - "type": "std::string", - "id": 3, - "offset": 152, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2276870852 - }, - "m_action": { - "type": "std::string", - "id": 4, - "offset": 184, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1734553689 - }, - "m_dialogEvent": { - "type": "std::string", - "id": 5, - "offset": 216, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2707957549 - }, - "m_actorTemplateID": { - "type": "unsigned int", - "id": 6, - "offset": 248, - "flags": 33554463, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2134265679 - }, - "m_cameraName": { - "type": "std::string", - "id": 7, - "offset": 256, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3252786917 - }, - "m_interpolationDuration": { - "type": "float", - "id": 8, - "offset": 312, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1458058437, - "enum_options": { - "__DEFAULT": "1.0" - } - }, - "m_cameraOffsetX": { - "type": "float", - "id": 9, - "offset": 288, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1515912895 - }, - "m_cameraOffsetY": { - "type": "float", - "id": 10, - "offset": 292, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1515912896 - }, - "m_cameraOffsetZ": { - "type": "float", - "id": 11, - "offset": 296, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1515912897 - }, - "m_pitch": { - "type": "float", - "id": 12, - "offset": 304, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 896371695 - }, - "m_yaw": { - "type": "float", - "id": 13, - "offset": 300, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 357256328 - }, - "m_roll": { - "type": "float", - "id": 14, - "offset": 308, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 310020272 - }, - "m_cameraShakeType": { - "type": "std::string", - "id": 15, - "offset": 320, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1754128882, - "enum_options": { - "": 0, - "Constant": "Constant", - "Quake": "Quake", - "Thud": "Thud", - "End": "End", - "__DEFAULT": 0 - } - }, - "m_cameraShakeDuration": { - "type": "float", - "id": 16, - "offset": 352, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 316581010, - "enum_options": { - "__DEFAULT": "0.0" - } - }, - "m_cameraShakeAmplitude": { - "type": "float", - "id": 17, - "offset": 356, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2179718321, - "enum_options": { - "__DEFAULT": "0.0" - } - }, - "m_bypassCameraOnReview": { - "type": "bool", - "id": 18, - "offset": 360, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1412905725, - "enum_options": { - "__DEFAULT": 1 - } - }, - "m_cameraZoneName": { - "type": "std::string", - "id": 19, - "offset": 368, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3131581121 - }, - "m_duration": { - "type": "float", - "id": 20, - "offset": 400, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 920323453 - }, - "m_delay": { - "type": "float", - "id": 21, - "offset": 404, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 881988134 - }, - "m_cameraHidePlayers": { - "type": "int", - "id": 22, - "offset": 408, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 28533149 - }, - "m_walkAwayNpcTemplateID": { - "type": "gid", - "id": 23, - "offset": 416, - "flags": 33554719, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 942697507 - }, - "m_walkAwayExitDirectionInDegrees": { - "type": "float", - "id": 24, - "offset": 424, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 396419785 - }, - "m_walkAwayFadeTime": { - "type": "float", - "id": 25, - "offset": 428, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 822405687 - }, - "m_walkAwayUseCurrentFacing": { - "type": "bool", - "id": 26, - "offset": 432, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1464855436 - }, - "m_standInPlayerTag": { - "type": "std::string", - "id": 27, - "offset": 440, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1590121141 - }, - "m_fadeOutCamera": { - "type": "bool", - "id": 28, - "offset": 472, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1766121252 - }, - "m_snapCameraToPlayerAtExit": { - "type": "bool", - "id": 29, - "offset": 473, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1323369645 - }, - "m_secondaryCameraName": { - "type": "std::string", - "id": 30, - "offset": 480, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1670705581 - }, - "m_secondaryInterpolationDuration": { - "type": "float", - "id": 31, - "offset": 512, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1873822349 - }, - "m_npcStandInList": { - "type": "std::string", - "id": 32, - "offset": 520, - "flags": 287, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2076308937 - }, - "m_dialogAnimationList": { - "type": "std::string", - "id": 33, - "offset": 536, - "flags": 287, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2444806919 - }, - "m_dialogTurningList": { - "type": "std::string", - "id": 34, - "offset": 552, - "flags": 287, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2782869422 - }, - "m_npcYawOffsetInDegrees": { - "type": "float", - "id": 35, - "offset": 568, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1395075270 - }, - "m_allowPlayerToMove": { - "type": "bool", - "id": 36, - "offset": 572, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 225101337 - }, - "m_soundEffectFile": { - "type": "std::string", - "id": 37, - "offset": 576, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3235157265 - }, - "m_musicFile": { - "type": "std::string", - "id": 38, - "offset": 608, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2963686620 - }, - "m_nonStackableMusic": { - "type": "bool", - "id": 39, - "offset": 640, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1675595625 - }, - "m_nonRepeatableMusic": { - "type": "bool", - "id": 40, - "offset": 641, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2138315572 - }, - "m_playMusicAtSFXVolume": { - "type": "bool", - "id": 41, - "offset": 642, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2130871816 - }, - "m_soundEffectDelay": { - "type": "float", - "id": 42, - "offset": 644, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1586382460 - }, - "m_musicDelay": { - "type": "float", - "id": 43, - "offset": 648, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1217785767 - }, - "m_musicFadeTime": { - "type": "float", - "id": 44, - "offset": 652, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 502925015 - }, - "m_dontReleaseCameraAtExit": { - "type": "bool", - "id": 45, - "offset": 474, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1107508961 - }, - "m_disableBackButton": { - "type": "bool", - "id": 46, - "offset": 656, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 122355444 - }, - "m_enableExitButton": { - "type": "bool", - "id": 47, - "offset": 657, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1824693936 - }, - "m_cameraFadeType": { - "type": "std::string", - "id": 48, - "offset": 664, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2021935382, - "enum_options": { - "": 0, - "In Out Black": "In Out Black", - "In Out White": "In Out White", - "In Black": "In Black", - "Out Black": "Out Black", - "In White": "In White", - "Out White": "Out White", - "__DEFAULT": 0 - } - }, - "m_cameraFadeTime": { - "type": "float", - "id": 49, - "offset": 696, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 614419391, - "enum_options": { - "__DEFAULT": "0.5" - } - }, - "m_idleAnimation": { - "type": "std::string", - "id": 50, - "offset": 704, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2900487193 - }, - "m_spamTime": { - "type": "float", - "id": 51, - "offset": 736, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1727215063, - "enum_options": { - "__DEFAULT": "1.0" - } - }, - "m_playSoundIfSpamming": { - "type": "bool", - "id": 52, - "offset": 740, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 690006749, - "enum_options": { - "__DEFAULT": 1 - } - }, - "m_playMusicIfSpamming": { - "type": "bool", - "id": 53, - "offset": 741, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 538564341, - "enum_options": { - "__DEFAULT": 1 - } - }, - "m_stopMusicFadeTime": { - "type": "float", - "id": 54, - "offset": 744, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 696390845, - "enum_options": { - "__DEFAULT": "0.0" - } - }, - "m_restartMusicFadeTime": { - "type": "float", - "id": 55, - "offset": 748, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 709379292, - "enum_options": { - "__DEFAULT": "0.0" - } - }, - "m_meetsRequirements": { - "type": "bool", - "id": 56, - "offset": 752, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 296443061 - }, - "m_secondaryCameraInitalDelay": { - "type": "float", - "id": 57, - "offset": 516, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1812842232 - }, - "m_displayButtonsOnTimedDialog": { - "type": "bool", - "id": 58, - "offset": 753, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 569741400 - } - } - }, - "1457011199": { - "name": "class WinAnimStatGlobeScaleTime", - "bases": [ - "WinAnimScaleTime", - "WinAnimScale", - "WindowAnimation", - "PropertyClass" - ], - "hash": 1457011199, - "properties": { - "m_bUseDeepCopy": { - "type": "bool", - "id": 0, - "offset": 72, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 433380635 - }, - "m_scale": { - "type": "float", - "id": 1, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 899693439 - }, - "m_fTimeTotal": { - "type": "float", - "id": 2, - "offset": 96, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 661225456 - }, - "m_fTimeRemaining": { - "type": "float", - "id": 3, - "offset": 100, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1591443014 - } - } - }, - "1862912736": { - "name": "class SharedPointer", - "bases": [ - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 1862912736, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - } - } - }, - "273752108": { - "name": "class ReqGlobalRegistryValue*", - "bases": [ - "ReqNumeric", - "Requirement", - "PropertyClass" - ], - "hash": 273752108, - "properties": { - "m_applyNOT": { - "type": "bool", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1746328074, - "enum_options": { - "__DEFAULT": 0 - } - }, - "m_operator": { - "type": "enum Requirement::Operator", - "id": 1, - "offset": 76, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2672792317, - "enum_options": { - "ROP_AND": 0, - "ROP_OR": 1, - "__DEFAULT": "ROP_AND" - } - }, - "m_numericValue": { - "type": "float", - "id": 2, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 521915239 - }, - "m_operatorType": { - "type": "enum ReqNumeric::OPERATOR_TYPE", - "id": 3, - "offset": 84, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2228122961, - "enum_options": { - "OPERATOR_UNKNOWN": 4294967295, - "OPERATOR_EQUALS": 0, - "OPERATOR_GREATER_THAN": 1, - "OPERATOR_LESS_THAN": 2, - "OPERATOR_GREATER_THAN_EQ": 3, - "OPERATOR_LESS_THAN_EQ": 4 - } - }, - "m_entryName": { - "type": "std::string", - "id": 4, - "offset": 88, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2055270734 - } - } - }, - "273711153": { - "name": "class SharedPointer", - "bases": [ - "SigilTemplate", - "CoreTemplate", - "PropertyClass" - ], - "hash": 273711153, - "properties": { - "m_behaviors": { - "type": "class BehaviorTemplate*", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1197808594 - }, - "m_sigilName": { - "type": "std::string", - "id": 1, - "offset": 96, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3177657588 - }, - "m_sigilType": { - "type": "std::string", - "id": 2, - "offset": 136, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3177899445 - }, - "m_entryResults": { - "type": "class ResultList*", - "id": 3, - "offset": 184, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3262956108 - }, - "m_requirements": { - "type": "class RequirementList*", - "id": 4, - "offset": 176, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2840985510 - }, - "m_cancelResults": { - "type": "class ResultList*", - "id": 5, - "offset": 192, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3799257120 - }, - "m_completeResults": { - "type": "class ResultList*", - "id": 6, - "offset": 200, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1964258099 - }, - "m_useState": { - "type": "bool", - "id": 7, - "offset": 216, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 683320865 - }, - "m_stateOverride": { - "type": "std::string", - "id": 8, - "offset": 224, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1949715548 - }, - "m_subCircles": { - "type": "class SigilSubCircle*", - "id": 9, - "offset": 256, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2227135493 - }, - "m_engageRadius": { - "type": "float", - "id": 10, - "offset": 304, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1429683718 - }, - "m_battlefieldEffects": { - "type": "class SharedPointer", - "id": 11, - "offset": 312, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1245973515 - }, - "m_playerVictoryCinematic": { - "type": "std::string", - "id": 12, - "offset": 336, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2684536069 - }, - "m_combatMusic": { - "type": "std::string", - "id": 13, - "offset": 368, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3636593682 - }, - "m_prePlanningCinematicOverride": { - "type": "std::string", - "id": 14, - "offset": 400, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2585096390 - }, - "m_planningCinematicOverride": { - "type": "std::string", - "id": 15, - "offset": 432, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3592819999 - }, - "m_shadowThresholdType": { - "type": "enum kShadow_Threshold_Type", - "id": 16, - "offset": 464, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2847763136, - "enum_options": { - "SHADOW_THRESHOLD_MIN": 0, - "SHADOW_THRESHOLD_AVG": 1, - "SHADOW_THRESHOLD_MAX": 2 - } - }, - "m_shadowThresholdFactor": { - "type": "float", - "id": 17, - "offset": 468, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2104355177 - }, - "m_shadowPipRatingFactor": { - "type": "float", - "id": 18, - "offset": 472, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1061434314 - }, - "m_scalarDamagePvP": { - "type": "float", - "id": 19, - "offset": 476, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2195445026 - }, - "m_scalarResistPvP": { - "type": "float", - "id": 20, - "offset": 480, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1947822077 - }, - "m_scalarPiercePvP": { - "type": "float", - "id": 21, - "offset": 484, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 441266907 - }, - "m_scalarDamagePvE": { - "type": "float", - "id": 22, - "offset": 488, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2195445015 - }, - "m_scalarResistPvE": { - "type": "float", - "id": 23, - "offset": 492, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1947822066 - }, - "m_scalarPiercePvE": { - "type": "float", - "id": 24, - "offset": 496, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 441266896 - }, - "m_damageLimitPvP": { - "type": "float", - "id": 25, - "offset": 500, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1990135243 - }, - "m_dK0PvP": { - "type": "float", - "id": 26, - "offset": 504, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 413528556 - }, - "m_dN0PvP": { - "type": "float", - "id": 27, - "offset": 508, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 417086319 - }, - "m_resistLimitPvP": { - "type": "float", - "id": 28, - "offset": 512, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1174512006 - }, - "m_rK0PvP": { - "type": "float", - "id": 29, - "offset": 516, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 961424058 - }, - "m_rN0PvP": { - "type": "float", - "id": 30, - "offset": 520, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 964981821 - }, - "m_damageLimitPvE": { - "type": "float", - "id": 31, - "offset": 524, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1990135232 - }, - "m_dK0PvE": { - "type": "float", - "id": 32, - "offset": 528, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 413528545 - }, - "m_dN0PvE": { - "type": "float", - "id": 33, - "offset": 532, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 417086308 - }, - "m_resistLimitPvE": { - "type": "float", - "id": 34, - "offset": 536, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1174511995 - }, - "m_rK0PvE": { - "type": "float", - "id": 35, - "offset": 540, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 961424047 - }, - "m_rN0PvE": { - "type": "float", - "id": 36, - "offset": 544, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 964981810 - } - } - }, - "682588551": { - "name": "class PetXPLootInfo*", - "bases": [ - "LootInfo", - "LootInfoBase", - "PropertyClass" - ], - "hash": 682588551, - "properties": { - "m_lootType": { - "type": "enum LootInfo::LOOT_TYPE", - "id": 0, - "offset": 72, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1591891442, - "enum_options": { - "LOOT_TYPE_NONE": 0, - "LOOT_TYPE_GOLD": 1, - "LOOT_TYPE_MANA": 2, - "LOOT_TYPE_ITEM": 3, - "LOOT_TYPE_TREASURE_CARD": 4, - "LOOT_TYPE_MAGIC_XP": 5, - "LOOT_TYPE_ADD_SPELL": 6, - "LOOT_TYPE_MAX_HEALTH": 7, - "LOOT_TYPE_MAX_GOLD": 8, - "LOOT_TYPE_MAX_MANA": 9, - "LOOT_TYPE_MAX_POTION": 10, - "LOOT_TYPE_TRAINING_POINTS": 11, - "LOOT_TYPE_RECIPE": 12, - "LOOT_TYPE_CRAFTING_SLOT": 13, - "LOOT_TYPE_REAGENT": 14, - "LOOT_TYPE_PETSNACK": 15, - "LOOT_TYPE_GARDENING_XP": 16, - "LOOT_TYPE_PET_XP": 17, - "LOOT_TYPE_TREASURE_TABLE": 18, - "LOOT_TYPE_ARENA_POINTS": 19, - "LOOT_TYPE_ARENA_BONUS_POINTS": 20, - "LOOT_TYPE_GROUP": 21, - "LOOT_TYPE_FISHING_XP": 22, - "LOOT_TYPE_EVENT_CURRENCY_1": 24, - "LOOT_TYPE_EVENT_CURRENCY_2": 25, - "LOOT_TYPE_PVP_CURRENCY": 26, - "LOOT_TYPE_PVP_CURRENCY_BONUS": 27, - "LOOT_TYPE_PVP_TOURNEY_CURRENCY": 28, - "LOOT_TYPE_PVP_TOURNEY_CURRENCY_BONUS": 29, - "LOOT_TYPE_FURNITURE_ESSENCE": 30 - } - }, - "m_statModifierSet": { - "type": "class PetStatModificationSet", - "id": 1, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2182942670 - }, - "m_leveledUp": { - "type": "bool", - "id": 2, - "offset": 264, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2101027993 - }, - "m_lastTalentGiven": { - "type": "unsigned int", - "id": 3, - "offset": 268, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2315681826 - }, - "m_lastPowerGiven": { - "type": "unsigned int", - "id": 4, - "offset": 272, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 398209479 - }, - "m_lastJewelGiven": { - "type": "unsigned int", - "id": 5, - "offset": 276, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1688300849 - } - } - }, - "1463531373": { - "name": "class FXBySlotEffect*", - "bases": [ - "GameEffectBase", - "PropertyClass" - ], - "hash": 1463531373, - "properties": { - "m_currentTickCount": { - "type": "double", - "id": 0, - "offset": 80, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2533274692 - }, - "m_effectNameID": { - "type": "unsigned int", - "id": 1, - "offset": 96, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1204067144 - }, - "m_bIsOnPet": { - "type": "bool", - "id": 2, - "offset": 73, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 522593303 - }, - "m_originatorID": { - "type": "gid", - "id": 3, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1131810019 - }, - "m_itemSlotID": { - "type": "unsigned int", - "id": 4, - "offset": 112, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1895747595 - }, - "m_internalID": { - "type": "int", - "id": 5, - "offset": 92, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1643137924 - }, - "m_endTime": { - "type": "unsigned int", - "id": 6, - "offset": 88, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 716479635 - } - } - }, - "682588548": { - "name": "class PetXPLootInfo", - "bases": [ - "LootInfo", - "LootInfoBase", - "PropertyClass" - ], - "hash": 682588548, - "properties": { - "m_lootType": { - "type": "enum LootInfo::LOOT_TYPE", - "id": 0, - "offset": 72, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1591891442, - "enum_options": { - "LOOT_TYPE_NONE": 0, - "LOOT_TYPE_GOLD": 1, - "LOOT_TYPE_MANA": 2, - "LOOT_TYPE_ITEM": 3, - "LOOT_TYPE_TREASURE_CARD": 4, - "LOOT_TYPE_MAGIC_XP": 5, - "LOOT_TYPE_ADD_SPELL": 6, - "LOOT_TYPE_MAX_HEALTH": 7, - "LOOT_TYPE_MAX_GOLD": 8, - "LOOT_TYPE_MAX_MANA": 9, - "LOOT_TYPE_MAX_POTION": 10, - "LOOT_TYPE_TRAINING_POINTS": 11, - "LOOT_TYPE_RECIPE": 12, - "LOOT_TYPE_CRAFTING_SLOT": 13, - "LOOT_TYPE_REAGENT": 14, - "LOOT_TYPE_PETSNACK": 15, - "LOOT_TYPE_GARDENING_XP": 16, - "LOOT_TYPE_PET_XP": 17, - "LOOT_TYPE_TREASURE_TABLE": 18, - "LOOT_TYPE_ARENA_POINTS": 19, - "LOOT_TYPE_ARENA_BONUS_POINTS": 20, - "LOOT_TYPE_GROUP": 21, - "LOOT_TYPE_FISHING_XP": 22, - "LOOT_TYPE_EVENT_CURRENCY_1": 24, - "LOOT_TYPE_EVENT_CURRENCY_2": 25, - "LOOT_TYPE_PVP_CURRENCY": 26, - "LOOT_TYPE_PVP_CURRENCY_BONUS": 27, - "LOOT_TYPE_PVP_TOURNEY_CURRENCY": 28, - "LOOT_TYPE_PVP_TOURNEY_CURRENCY_BONUS": 29, - "LOOT_TYPE_FURNITURE_ESSENCE": 30 - } - }, - "m_statModifierSet": { - "type": "class PetStatModificationSet", - "id": 1, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2182942670 - }, - "m_leveledUp": { - "type": "bool", - "id": 2, - "offset": 264, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2101027993 - }, - "m_lastTalentGiven": { - "type": "unsigned int", - "id": 3, - "offset": 268, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2315681826 - }, - "m_lastPowerGiven": { - "type": "unsigned int", - "id": 4, - "offset": 272, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 398209479 - }, - "m_lastJewelGiven": { - "type": "unsigned int", - "id": 5, - "offset": 276, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1688300849 - } - } - }, - "1460103397": { - "name": "class FishTournamentLeaderboardOption", - "bases": [ - "ServiceOptionBase", - "PropertyClass" - ], - "hash": 1460103397, - "properties": { - "m_serviceName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2206028813 - }, - "m_iconKey": { - "type": "std::string", - "id": 1, - "offset": 168, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2457138637 - }, - "m_displayKey": { - "type": "std::string", - "id": 2, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3023276954 - }, - "m_serviceIndex": { - "type": "unsigned int", - "id": 3, - "offset": 204, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2103126710 - }, - "m_forceInteract": { - "type": "bool", - "id": 4, - "offset": 200, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1705789564 - } - } - }, - "1863799967": { - "name": "class AnimationSetManager", - "bases": [ - "PropertyClass" - ], - "hash": 1863799967, - "properties": { - "m_sets": { - "type": "class AnimationSet*", - "id": 0, - "offset": 80, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": true, - "pointer": true, - "hash": 809977903 - } - } - }, - "1459686740": { - "name": "class EmojiDefinition*", - "bases": [ - "PropertyClass" - ], - "hash": 1459686740, - "properties": { - "m_emojiDataList": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1180872578 - } - } - }, - "273776684": { - "name": "class ReqGlobalRegistryValue", - "bases": [ - "ReqNumeric", - "Requirement", - "PropertyClass" - ], - "hash": 273776684, - "properties": { - "m_applyNOT": { - "type": "bool", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1746328074, - "enum_options": { - "__DEFAULT": 0 - } - }, - "m_operator": { - "type": "enum Requirement::Operator", - "id": 1, - "offset": 76, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2672792317, - "enum_options": { - "ROP_AND": 0, - "ROP_OR": 1, - "__DEFAULT": "ROP_AND" - } - }, - "m_numericValue": { - "type": "float", - "id": 2, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 521915239 - }, - "m_operatorType": { - "type": "enum ReqNumeric::OPERATOR_TYPE", - "id": 3, - "offset": 84, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2228122961, - "enum_options": { - "OPERATOR_UNKNOWN": 4294967295, - "OPERATOR_EQUALS": 0, - "OPERATOR_GREATER_THAN": 1, - "OPERATOR_LESS_THAN": 2, - "OPERATOR_GREATER_THAN_EQ": 3, - "OPERATOR_LESS_THAN_EQ": 4 - } - }, - "m_entryName": { - "type": "std::string", - "id": 4, - "offset": 88, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2055270734 - } - } - }, - "1457724408": { - "name": "class LadderBehaviorTemplate*", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 1457724408, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - } - } - }, - "1457520088": { - "name": "class DestroyActorCinematicAction*", - "bases": [ - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 1457520088, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - } - } - }, - "1868806321": { - "name": "enum JewelSocket::JewelSocketType", - "bases": [], - "hash": 1868806321, - "properties": {} - }, - "688918403": { - "name": "class PipFloatingTextCinematicAction", - "bases": [ - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 688918403, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - } - } - }, - "1865490628": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1865490628, - "properties": { - "m_conditionFlags": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2483653903 - } - } - }, - "303373917": { - "name": "class DyeShopOption*", - "bases": [ - "ServiceOptionBase", - "PropertyClass" - ], - "hash": 303373917, - "properties": { - "m_serviceName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2206028813 - }, - "m_iconKey": { - "type": "std::string", - "id": 1, - "offset": 168, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2457138637 - }, - "m_displayKey": { - "type": "std::string", - "id": 2, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3023276954 - }, - "m_serviceIndex": { - "type": "unsigned int", - "id": 3, - "offset": 204, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2103126710 - }, - "m_forceInteract": { - "type": "bool", - "id": 4, - "offset": 200, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1705789564 - } - } - }, - "686587820": { - "name": "class SharedPointer", - "bases": [ - "Window", - "PropertyClass" - ], - "hash": 686587820, - "properties": { - "m_sName": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306437263 - }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621225959 - }, - "m_Style": { - "type": "unsigned int", - "id": 2, - "offset": 152, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "SCALE_CHILDREN": 2, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "FOCUS_LOCKED": 64, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152 - } - }, - "m_Flags": { - "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } - }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3105139380 - }, - "m_fTargetAlpha": { - "type": "float", - "id": 5, - "offset": 212, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1809129834 - }, - "m_fDisabledAlpha": { - "type": "float", - "id": 6, - "offset": 216, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1389987675 - }, - "m_fAlpha": { - "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 482130755 - }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3623628394 - }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2102211316 - }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1846695875 - }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3389835433 - }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2547159940 - }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2587533771 - }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3091503757 - } - } - }, - "1864862540": { - "name": "class JoinTeamUpdate", - "bases": [ - "TournamentUpdate", - "PropertyClass" - ], - "hash": 1864862540, - "properties": { - "m_actor": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1120253775 - } - } - }, - "294989869": { - "name": "class SharedPointer", - "bases": [ - "Group", - "PropertyClass" - ], - "hash": 294989869, - "properties": { - "m_GroupID": { - "type": "gid", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 586506386 - }, - "m_ChannelID": { - "type": "gid", - "id": 1, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1585983742 - }, - "m_MemberList": { - "type": "class SharedPointer", - "id": 2, - "offset": 88, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2864705424 - }, - "m_nMaxSize": { - "type": "unsigned int", - "id": 3, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1265869948 - }, - "m_fromAdventureParty": { - "type": "bool", - "id": 4, - "offset": 128, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 940992997 - }, - "m_leaderGID": { - "type": "gid", - "id": 5, - "offset": 136, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 700505145 - }, - "m_questGID": { - "type": "gid", - "id": 6, - "offset": 144, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 331631550 - }, - "m_goalGID": { - "type": "gid", - "id": 7, - "offset": 152, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 976914927 - } - } - }, - "684688050": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 684688050, - "properties": { - "m_includeCastleBlocks": { - "type": "bool", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 519951249 - }, - "m_includePlantLife": { - "type": "bool", - "id": 1, - "offset": 73, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 596498422 - }, - "m_includeWallHangings": { - "type": "bool", - "id": 2, - "offset": 74, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 720249270 - }, - "m_includeTileWallpaper": { - "type": "bool", - "id": 3, - "offset": 75, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1182210829 - }, - "m_includeOutdoor": { - "type": "bool", - "id": 4, - "offset": 76, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 192313891 - }, - "m_includeFurniture": { - "type": "bool", - "id": 5, - "offset": 77, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 15665371 - }, - "m_includeDecoration": { - "type": "bool", - "id": 6, - "offset": 78, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1389489247 - }, - "m_includeMusicalScrolls": { - "type": "bool", - "id": 7, - "offset": 79, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 623905255 - }, - "m_includeSeeds": { - "type": "bool", - "id": 8, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1324177291 - } - } - }, - "1458965144": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1458965144, - "properties": { - "m_roundNum": { - "type": "int", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1461215570 - }, - "m_percentageChance": { - "type": "int", - "id": 1, - "offset": 76, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 982834938 - } - } - }, - "1864220971": { - "name": "class SpellTemplate*", - "bases": [ - "CoreTemplate", - "PropertyClass" - ], - "hash": 1864220971, - "properties": { - "m_behaviors": { - "type": "class BehaviorTemplate*", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1197808594 - }, - "m_name": { - "type": "std::string", - "id": 1, - "offset": 96, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1717359772 - }, - "m_description": { - "type": "std::string", - "id": 2, - "offset": 168, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1649374815 - }, - "m_advancedDescription": { - "type": "std::string", - "id": 3, - "offset": 200, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3465713013 - }, - "m_displayName": { - "type": "std::string", - "id": 4, - "offset": 136, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2446900370 - }, - "m_spellBase": { - "type": "std::string", - "id": 5, - "offset": 248, - "flags": 268435463, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2688054198, - "enum_options": { - "__BASECLASS": "CinematicTemplate" - } - }, - "m_effects": { - "type": "class SharedPointer", - "id": 6, - "offset": 280, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 370726379 - }, - "m_sMagicSchoolName": { - "type": "std::string", - "id": 7, - "offset": 312, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2035693400 - }, - "m_sTypeName": { - "type": "std::string", - "id": 8, - "offset": 352, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3580785905 - }, - "m_trainingCost": { - "type": "int", - "id": 9, - "offset": 384, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 982588239 - }, - "m_accuracy": { - "type": "int", - "id": 10, - "offset": 388, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1636315493 - }, - "m_baseCost": { - "type": "int", - "id": 11, - "offset": 232, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1475151502 - }, - "m_creditsCost": { - "type": "int", - "id": 12, - "offset": 236, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 715313825 - }, - "m_pvpCurrencyCost": { - "type": "int", - "id": 13, - "offset": 240, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 645595444 - }, - "m_pvpTourneyCurrencyCost": { - "type": "int", - "id": 14, - "offset": 244, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 517874954 - }, - "m_boosterPackIcon": { - "type": "std::string", - "id": 15, - "offset": 496, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3428653697 - }, - "m_validTargetSpells": { - "type": "unsigned int", - "id": 16, - "offset": 392, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2355782967 - }, - "m_PvP": { - "type": "bool", - "id": 17, - "offset": 408, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 269492361 - }, - "m_PvE": { - "type": "bool", - "id": 18, - "offset": 409, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 269492350 - }, - "m_noPvPEnchant": { - "type": "bool", - "id": 19, - "offset": 410, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 661581703 - }, - "m_noPvEEnchant": { - "type": "bool", - "id": 20, - "offset": 411, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 10144220 - }, - "m_battlegroundsOnly": { - "type": "bool", - "id": 21, - "offset": 412, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1244782419 - }, - "m_Treasure": { - "type": "bool", - "id": 22, - "offset": 413, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1749096414 - }, - "m_noDiscard": { - "type": "bool", - "id": 23, - "offset": 414, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 565749226 - }, - "m_leavesPlayWhenCast": { - "type": "bool", - "id": 24, - "offset": 532, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 698216294 - }, - "m_imageIndex": { - "type": "int", - "id": 25, - "offset": 416, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1570500405 - }, - "m_imageName": { - "type": "std::string", - "id": 26, - "offset": 424, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2391520543 - }, - "m_cloaked": { - "type": "bool", - "id": 27, - "offset": 489, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 7349510 - }, - "m_casterInvisible": { - "type": "bool", - "id": 28, - "offset": 490, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 310214650 - }, - "m_adjectives": { - "type": "std::string", - "id": 29, - "offset": 576, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2967855037 - }, - "m_spellSourceType": { - "type": "enum SpellTemplate::kSpellSourceType", - "id": 30, - "offset": 528, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 156272727, - "enum_options": { - "kCaster": 0, - "kPet": 1, - "kShadowCreature": 2, - "kWeapon": 3, - "kEquipment": 4 - } - }, - "m_cloakedName": { - "type": "std::string", - "id": 31, - "offset": 536, - "flags": 268435463, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2846679215, - "enum_options": { - "__BASECLASS": "SpellTemplate" - } - }, - "m_purchaseRequirements": { - "type": "class RequirementList*", - "id": 32, - "offset": 608, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3174641793 - }, - "m_displayRequirements": { - "type": "class RequirementList*", - "id": 33, - "offset": 840, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3646782876 - }, - "m_descriptionTrainer": { - "type": "std::string", - "id": 34, - "offset": 616, - "flags": 8388871, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1756093908 - }, - "m_descriptionCombatHUD": { - "type": "std::string", - "id": 35, - "offset": 648, - "flags": 8388871, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1631478006 - }, - "m_displayIndex": { - "type": "int", - "id": 36, - "offset": 680, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1250551048 - }, - "m_hiddenFromEffectsWindow": { - "type": "bool", - "id": 37, - "offset": 684, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1832736331 - }, - "m_ignoreCharms": { - "type": "bool", - "id": 38, - "offset": 685, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1840075893 - }, - "m_alwaysFizzle": { - "type": "bool", - "id": 39, - "offset": 686, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2030988856 - }, - "m_spellCategory": { - "type": "std::string", - "id": 40, - "offset": 688, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2472376729 - }, - "m_showPolymorphedName": { - "type": "bool", - "id": 41, - "offset": 720, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2097929096 - }, - "m_skipTruncation": { - "type": "bool", - "id": 42, - "offset": 721, - "flags": 263, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1838335249 - }, - "m_maxCopies": { - "type": "unsigned int", - "id": 43, - "offset": 724, - "flags": 263, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 403022326 - }, - "m_levelRestriction": { - "type": "int", - "id": 44, - "offset": 728, - "flags": 263, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 176502472 - }, - "m_delayEnchantment": { - "type": "bool", - "id": 45, - "offset": 732, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 191336919 - }, - "m_delayEnchantmentOrder": { - "type": "enum SpellEffect::kDelayOrder", - "id": 46, - "offset": 736, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2526055263, - "enum_options": { - "SpellEffect::kAnyOrder": 0, - "SpellEffect::kFirst": 1, - "SpellEffect::kSecond": 2 - } - }, - "m_previousSpellName": { - "type": "std::string", - "id": 47, - "offset": 744, - "flags": 268435463, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2903322585, - "enum_options": { - "__BASECLASS": "SpellTemplate" - } - }, - "m_cardFront": { - "type": "std::string", - "id": 48, - "offset": 456, - "flags": 131359, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3557598526 - }, - "m_useGloss": { - "type": "bool", - "id": 49, - "offset": 488, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 668817544 - }, - "m_ignoreDispel": { - "type": "bool", - "id": 50, - "offset": 776, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1881041624 - }, - "m_backRowFriendly": { - "type": "bool", - "id": 51, - "offset": 777, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 501584377 - }, - "m_spellRank": { - "type": "class SharedPointer", - "id": 52, - "offset": 784, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3152361374 - }, - "m_secondarySchoolName": { - "type": "std::string", - "id": 53, - "offset": 800, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1803268236 - }, - "m_spellFusion": { - "type": "unsigned int", - "id": 54, - "offset": 836, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1658928321 - }, - "m_requiredSchoolName": { - "type": "std::string", - "id": 55, - "offset": 848, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3576058981 - } - } - }, - "283459238": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 283459238, - "properties": { - "m_itemTemplateID": { - "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2190120133 - }, - "m_numItemInInventory": { - "type": "int", - "id": 1, - "offset": 76, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1351636478 - } - } - }, - "684001114": { - "name": "class SharedPointer", - "bases": [ - "CoreTemplate", - "PropertyClass" - ], - "hash": 684001114, - "properties": { - "m_behaviors": { - "type": "class BehaviorTemplate*", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1197808594 - }, - "m_schoolName": { - "type": "std::string", - "id": 1, - "offset": 96, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3385349572 - }, - "m_minLevel": { - "type": "unsigned int", - "id": 2, - "offset": 132, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1708220969 - }, - "m_schoolIndex": { - "type": "int", - "id": 3, - "offset": 136, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 7119994 - }, - "m_secondarySchoolBadgeList": { - "type": "std::string", - "id": 4, - "offset": 144, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2758948314 - } - } - }, - "1457765368": { - "name": "class LadderBehaviorTemplate", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 1457765368, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - } - } - }, - "1864197096": { - "name": "class SigilTemplate", - "bases": [ - "CoreTemplate", - "PropertyClass" - ], - "hash": 1864197096, - "properties": { - "m_behaviors": { - "type": "class BehaviorTemplate*", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1197808594 - }, - "m_sigilName": { - "type": "std::string", - "id": 1, - "offset": 96, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3177657588 - }, - "m_sigilType": { - "type": "std::string", - "id": 2, - "offset": 136, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3177899445 - }, - "m_entryResults": { - "type": "class ResultList*", - "id": 3, - "offset": 184, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3262956108 - }, - "m_requirements": { - "type": "class RequirementList*", - "id": 4, - "offset": 176, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2840985510 - }, - "m_cancelResults": { - "type": "class ResultList*", - "id": 5, - "offset": 192, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3799257120 - }, - "m_completeResults": { - "type": "class ResultList*", - "id": 6, - "offset": 200, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1964258099 - }, - "m_useState": { - "type": "bool", - "id": 7, - "offset": 216, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 683320865 - }, - "m_stateOverride": { - "type": "std::string", - "id": 8, - "offset": 224, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1949715548 - }, - "m_subCircles": { - "type": "class SigilSubCircle*", - "id": 9, - "offset": 256, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2227135493 - } - } - }, - "279309079": { - "name": "class SharedPointer", - "bases": [ - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 279309079, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - }, - "m_bCaster": { - "type": "bool", - "id": 2, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1390351511 - } - } - }, - "683924242": { - "name": "class PhotoInformation*", - "bases": [ - "PropertyClass" - ], - "hash": 683924242, - "properties": { - "m_photoWorthyItems": { - "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1021725286 - } - } - }, - "276188451": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 276188451, - "properties": { - "m_scores": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1447258579 - } - } - }, - "683760402": { - "name": "class PhotoInformation", - "bases": [ - "PropertyClass" - ], - "hash": 683760402, - "properties": { - "m_photoWorthyItems": { - "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1021725286 - } - } - }, - "274447384": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 274447384, - "properties": { - "m_patches": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2834774915 - } - } - }, - "1864627841": { - "name": "class TeamHelpVolunteerWorldList", - "bases": [ - "PropertyClass" - ], - "hash": 1864627841, - "properties": { - "m_volunteerWorldList": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1802198369 - } - } - }, - "274147452": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 274147452, - "properties": { - "m_templateID": { - "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1286746870 - }, - "m_zoneDisplayName": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1962339438 - }, - "m_worldName": { - "type": "std::string", - "id": 2, - "offset": 112, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1846757476 - }, - "m_eventName": { - "type": "std::string", - "id": 3, - "offset": 144, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3493260286 - } - } - }, - "1460073780": { - "name": "class ClientDamageEventCinematicAction*", - "bases": [ - "DamageEventCinematicAction", - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 1460073780, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - } - } - }, - "1864220976": { - "name": "class SpellTemplate", - "bases": [ - "CoreTemplate", - "PropertyClass" - ], - "hash": 1864220976, - "properties": { - "m_behaviors": { - "type": "class BehaviorTemplate*", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1197808594 - }, - "m_name": { - "type": "std::string", - "id": 1, - "offset": 96, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1717359772 - }, - "m_description": { - "type": "std::string", - "id": 2, - "offset": 168, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1649374815 - }, - "m_advancedDescription": { - "type": "std::string", - "id": 3, - "offset": 200, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3465713013 - }, - "m_displayName": { - "type": "std::string", - "id": 4, - "offset": 136, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2446900370 - }, - "m_spellBase": { - "type": "std::string", - "id": 5, - "offset": 248, - "flags": 268435463, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2688054198, - "enum_options": { - "__BASECLASS": "CinematicTemplate" - } - }, - "m_effects": { - "type": "class SharedPointer", - "id": 6, - "offset": 280, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 370726379 - }, - "m_sMagicSchoolName": { - "type": "std::string", - "id": 7, - "offset": 312, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2035693400 - }, - "m_sTypeName": { - "type": "std::string", - "id": 8, - "offset": 352, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3580785905 - }, - "m_trainingCost": { - "type": "int", - "id": 9, - "offset": 384, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 982588239 - }, - "m_accuracy": { - "type": "int", - "id": 10, - "offset": 388, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1636315493 - }, - "m_baseCost": { - "type": "int", - "id": 11, - "offset": 232, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1475151502 - }, - "m_creditsCost": { - "type": "int", - "id": 12, - "offset": 236, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 715313825 - }, - "m_pvpCurrencyCost": { - "type": "int", - "id": 13, - "offset": 240, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 645595444 - }, - "m_pvpTourneyCurrencyCost": { - "type": "int", - "id": 14, - "offset": 244, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 517874954 - }, - "m_boosterPackIcon": { - "type": "std::string", - "id": 15, - "offset": 496, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3428653697 - }, - "m_validTargetSpells": { - "type": "unsigned int", - "id": 16, - "offset": 392, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2355782967 - }, - "m_PvP": { - "type": "bool", - "id": 17, - "offset": 408, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 269492361 - }, - "m_PvE": { - "type": "bool", - "id": 18, - "offset": 409, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 269492350 - }, - "m_noPvPEnchant": { - "type": "bool", - "id": 19, - "offset": 410, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 661581703 - }, - "m_noPvEEnchant": { - "type": "bool", - "id": 20, - "offset": 411, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 10144220 - }, - "m_battlegroundsOnly": { - "type": "bool", - "id": 21, - "offset": 412, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1244782419 - }, - "m_Treasure": { - "type": "bool", - "id": 22, - "offset": 413, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1749096414 - }, - "m_noDiscard": { - "type": "bool", - "id": 23, - "offset": 414, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 565749226 - }, - "m_leavesPlayWhenCast": { - "type": "bool", - "id": 24, - "offset": 532, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 698216294 - }, - "m_imageIndex": { - "type": "int", - "id": 25, - "offset": 416, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1570500405 - }, - "m_imageName": { - "type": "std::string", - "id": 26, - "offset": 424, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2391520543 - }, - "m_cloaked": { - "type": "bool", - "id": 27, - "offset": 489, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 7349510 - }, - "m_casterInvisible": { - "type": "bool", - "id": 28, - "offset": 490, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 310214650 - }, - "m_adjectives": { - "type": "std::string", - "id": 29, - "offset": 576, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2967855037 - }, - "m_spellSourceType": { - "type": "enum SpellTemplate::kSpellSourceType", - "id": 30, - "offset": 528, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 156272727, - "enum_options": { - "kCaster": 0, - "kPet": 1, - "kShadowCreature": 2, - "kWeapon": 3, - "kEquipment": 4 - } - }, - "m_cloakedName": { - "type": "std::string", - "id": 31, - "offset": 536, - "flags": 268435463, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2846679215, - "enum_options": { - "__BASECLASS": "SpellTemplate" - } - }, - "m_purchaseRequirements": { - "type": "class RequirementList*", - "id": 32, - "offset": 608, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3174641793 - }, - "m_displayRequirements": { - "type": "class RequirementList*", - "id": 33, - "offset": 840, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3646782876 - }, - "m_descriptionTrainer": { - "type": "std::string", - "id": 34, - "offset": 616, - "flags": 8388871, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1756093908 - }, - "m_descriptionCombatHUD": { - "type": "std::string", - "id": 35, - "offset": 648, - "flags": 8388871, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1631478006 - }, - "m_displayIndex": { - "type": "int", - "id": 36, - "offset": 680, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1250551048 - }, - "m_hiddenFromEffectsWindow": { - "type": "bool", - "id": 37, - "offset": 684, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1832736331 - }, - "m_ignoreCharms": { - "type": "bool", - "id": 38, - "offset": 685, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1840075893 - }, - "m_alwaysFizzle": { - "type": "bool", - "id": 39, - "offset": 686, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2030988856 - }, - "m_spellCategory": { - "type": "std::string", - "id": 40, - "offset": 688, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2472376729 - }, - "m_showPolymorphedName": { - "type": "bool", - "id": 41, - "offset": 720, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2097929096 - }, - "m_skipTruncation": { - "type": "bool", - "id": 42, - "offset": 721, - "flags": 263, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1838335249 - }, - "m_maxCopies": { - "type": "unsigned int", - "id": 43, - "offset": 724, - "flags": 263, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 403022326 - }, - "m_levelRestriction": { - "type": "int", - "id": 44, - "offset": 728, - "flags": 263, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 176502472 - }, - "m_delayEnchantment": { - "type": "bool", - "id": 45, - "offset": 732, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 191336919 - }, - "m_delayEnchantmentOrder": { - "type": "enum SpellEffect::kDelayOrder", - "id": 46, - "offset": 736, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2526055263, - "enum_options": { - "SpellEffect::kAnyOrder": 0, - "SpellEffect::kFirst": 1, - "SpellEffect::kSecond": 2 - } - }, - "m_previousSpellName": { - "type": "std::string", - "id": 47, - "offset": 744, - "flags": 268435463, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2903322585, - "enum_options": { - "__BASECLASS": "SpellTemplate" - } - }, - "m_cardFront": { - "type": "std::string", - "id": 48, - "offset": 456, - "flags": 131359, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3557598526 - }, - "m_useGloss": { - "type": "bool", - "id": 49, - "offset": 488, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 668817544 - }, - "m_ignoreDispel": { - "type": "bool", - "id": 50, - "offset": 776, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1881041624 - }, - "m_backRowFriendly": { - "type": "bool", - "id": 51, - "offset": 777, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 501584377 - }, - "m_spellRank": { - "type": "class SharedPointer", - "id": 52, - "offset": 784, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3152361374 - }, - "m_secondarySchoolName": { - "type": "std::string", - "id": 53, - "offset": 800, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1803268236 - }, - "m_spellFusion": { - "type": "unsigned int", - "id": 54, - "offset": 836, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1658928321 - }, - "m_requiredSchoolName": { - "type": "std::string", - "id": 55, - "offset": 848, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3576058981 - } - } - }, - "1459689812": { - "name": "class EmojiDefinition", - "bases": [ - "PropertyClass" - ], - "hash": 1459689812, - "properties": { - "m_emojiDataList": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1180872578 - } - } - }, - "684418380": { - "name": "class SharedPointer", - "bases": [ - "WizItemLocations", - "PropertyClass" - ], - "hash": 684418380, - "properties": { - "m_itemType": { - "type": "enum WizItemLocations::eItemType", - "id": 0, - "offset": 72, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3482173907, - "enum_options": { - "shop": 0, - "quest": 1, - "boss": 2, - "gardening": 3, - "goldChest": 4 - } - }, - "m_bosses": { - "type": "unsigned int", - "id": 1, - "offset": 80, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 501597596 - } - } - }, - "275371761": { - "name": "class SharedPointer", - "bases": [ - "SG_GameAction_DestroyBlock", - "SG_GameAction", - "PropertyClass" - ], - "hash": 275371761, - "properties": { - "m_target": { - "type": "enum SG_GameAction::SG_Target", - "id": 0, - "offset": 72, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1166870973, - "enum_options": { - "Target_Ball": 0, - "Target_Self": 1, - "Target_Connections": 2, - "__DEFAULT": "Target_Ball" - } - } - } - }, - "1864627851": { - "name": "class TeamHelpVolunteerWorldList*", - "bases": [ - "PropertyClass" - ], - "hash": 1864627851, - "properties": { - "m_volunteerWorldList": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1802198369 - } - } - }, - "274987373": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 274987373, - "properties": { - "m_tieredSpellConfig": { - "type": "class SharedPointer", - "id": 0, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": true, - "pointer": true, - "hash": 2945256819 - } - } - }, - "685293081": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 685293081, - "properties": { - "m_sName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306437263 - }, - "m_sEmbeddedPage": { - "type": "std::string", - "id": 1, - "offset": 112, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1709213077 - }, - "m_sExternalPage": { - "type": "std::string", - "id": 2, - "offset": 144, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3459688718 - }, - "m_sSteamPage": { - "type": "std::string", - "id": 3, - "offset": 176, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1924913253 - }, - "m_nFlags": { - "type": "unsigned int", - "id": 4, - "offset": 208, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 922328456, - "enum_options": { - "CheckSubscription": 1, - "UpdateCrownsBalance": 2, - "QuietAudio": 4 - } - } - } - }, - "1462162140": { - "name": "class SharedPointer", - "bases": [ - "CoreTemplate", - "PropertyClass" - ], - "hash": 1462162140, - "properties": { - "m_behaviors": { - "type": "class BehaviorTemplate*", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1197808594 - }, - "m_sigilName": { - "type": "std::string", - "id": 1, - "offset": 96, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3177657588 - }, - "m_sigilType": { - "type": "std::string", - "id": 2, - "offset": 136, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3177899445 - }, - "m_entryResults": { - "type": "class ResultList*", - "id": 3, - "offset": 184, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3262956108 - }, - "m_requirements": { - "type": "class RequirementList*", - "id": 4, - "offset": 176, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2840985510 - }, - "m_cancelResults": { - "type": "class ResultList*", - "id": 5, - "offset": 192, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3799257120 - }, - "m_completeResults": { - "type": "class ResultList*", - "id": 6, - "offset": 200, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1964258099 - }, - "m_useState": { - "type": "bool", - "id": 7, - "offset": 216, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 683320865 - }, - "m_stateOverride": { - "type": "std::string", - "id": 8, - "offset": 224, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1949715548 - }, - "m_subCircles": { - "type": "class SigilSubCircle*", - "id": 9, - "offset": 256, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2227135493 - } - } - }, - "684736523": { - "name": "class WizardAutobotManager*", - "bases": [ - "AutobotManager", - "PropertyClass" - ], - "hash": 684736523, - "properties": {} - }, - "1461334080": { - "name": "class SoundFilterSetting", - "bases": [ - "PropertyClass" - ], - "hash": 1461334080, - "properties": { - "m_name": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1717359772 - }, - "m_params": { - "type": "class SoundFilterParam*", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1984426024 - }, - "m_needsUpdate": { - "type": "bool", - "id": 2, - "offset": 128, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1787634021 - } - } - }, - "1864862700": { - "name": "class JoinTeamUpdate*", - "bases": [ - "TournamentUpdate", - "PropertyClass" - ], - "hash": 1864862700, - "properties": { - "m_actor": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1120253775 - } - } - }, - "278101554": { - "name": "class ClientDerbyLockLane*", - "bases": [ - "DerbyLockLane", - "DerbyEffect", - "PropertyClass" - ], - "hash": 278101554, - "properties": { - "m_buffType": { - "type": "enum DerbyTalentBuffType", - "id": 0, - "offset": 92, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1149251982, - "enum_options": { - "Buff": 0, - "Debuff": 1, - "Neither": 2 - } - }, - "m_kTarget": { - "type": "enum DerbyTargetType", - "id": 1, - "offset": 96, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1807803351, - "enum_options": { - "kTargetInFront": 0, - "kTargetBehind": 1, - "kTargetFirst": 2, - "kTargetSelf": 3, - "kTargetAll": 4, - "kTargetLast": 5 - } - }, - "m_nDuration": { - "type": "int", - "id": 2, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1110167982 - }, - "m_effectID": { - "type": "unsigned int", - "id": 3, - "offset": 88, - "flags": 24, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2347630439 - }, - "m_imageFilename": { - "type": "std::string", - "id": 4, - "offset": 112, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2813328063 - }, - "m_iconIndex": { - "type": "unsigned int", - "id": 5, - "offset": 144, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1265133262 - }, - "m_soundOnActivate": { - "type": "std::string", - "id": 6, - "offset": 152, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1956929714 - }, - "m_soundOnTarget": { - "type": "std::string", - "id": 7, - "offset": 184, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3444214056 - }, - "m_targetParticleEffect": { - "type": "std::string", - "id": 8, - "offset": 216, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3048234723 - }, - "m_overheadMessage": { - "type": "std::string", - "id": 9, - "offset": 248, - "flags": 8388639, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1701018190 - }, - "m_requirements": { - "type": "class RequirementList", - "id": 10, - "offset": 280, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2840988582 - } - } - }, - "684736547": { - "name": "class WizardAutobotManager", - "bases": [ - "AutobotManager", - "PropertyClass" - ], - "hash": 684736547, - "properties": {} - }, - "276946685": { - "name": "class QuestTemplate*", - "bases": [ - "CoreTemplate", - "PropertyClass" - ], - "hash": 276946685, - "properties": { - "m_behaviors": { - "type": "class BehaviorTemplate*", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1197808594 - }, - "m_questName": { - "type": "std::string", - "id": 1, - "offset": 96, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1702112846 - }, - "m_questNameID": { - "type": "unsigned int", - "id": 2, - "offset": 128, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1530354349 - }, - "m_questTitle": { - "type": "std::string", - "id": 3, - "offset": 136, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1805465583 - }, - "m_questInfo": { - "type": "std::string", - "id": 4, - "offset": 168, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1701947097 - }, - "m_questPrep": { - "type": "std::string", - "id": 5, - "offset": 200, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1702202980 - }, - "m_questUnderway": { - "type": "std::string", - "id": 6, - "offset": 232, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2308400380 - }, - "m_questComplete": { - "type": "std::string", - "id": 7, - "offset": 264, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3484586150 - }, - "m_startGoals": { - "type": "std::string", - "id": 8, - "offset": 392, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2152469471 - }, - "m_goals": { - "type": "class SharedPointer", - "id": 9, - "offset": 408, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1374041870 - }, - "m_startResults": { - "type": "class SharedPointer", - "id": 10, - "offset": 424, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2094517692 - }, - "m_endResults": { - "type": "class SharedPointer", - "id": 11, - "offset": 440, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2118364133 - }, - "m_requirements": { - "type": "class RequirementList*", - "id": 12, - "offset": 456, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2840985510 - }, - "m_prepRequirements": { - "type": "class RequirementList*", - "id": 13, - "offset": 464, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3016776541 - }, - "m_pruneRequirements": { - "type": "class RequirementList*", - "id": 14, - "offset": 472, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3211248912 - }, - "m_prepAlways": { - "type": "bool", - "id": 15, - "offset": 304, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1423046331 - }, - "m_clientTags": { - "type": "std::string", - "id": 16, - "offset": 312, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2319030025 - }, - "m_goalLogic": { - "type": "class GoalCompleteLogic*", - "id": 17, - "offset": 520, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 963824003 - }, - "m_questLevel": { - "type": "int", - "id": 18, - "offset": 296, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 298136804 - }, - "m_questRepeat": { - "type": "int", - "id": 19, - "offset": 300, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1480345805 - }, - "m_onStartQuestScript": { - "type": "std::string", - "id": 20, - "offset": 328, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2577549709 - }, - "m_onEndQuestScript": { - "type": "std::string", - "id": 21, - "offset": 360, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285648118 - }, - "m_dialogList": { - "type": "class ActorDialogListBase*", - "id": 22, - "offset": 480, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1909154969 - }, - "m_missionDoors": { - "type": "std::string", - "id": 23, - "offset": 504, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2428103908 - }, - "m_dynaMods": { - "type": "class QuestDynaModInfo*", - "id": 24, - "offset": 488, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 3330743945 - }, - "m_isHidden": { - "type": "bool", - "id": 25, - "offset": 305, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1401188667 - }, - "m_outdated": { - "type": "bool", - "id": 26, - "offset": 306, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1565198349 - }, - "m_noQuestHelper": { - "type": "bool", - "id": 27, - "offset": 307, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 578010882 - }, - "m_mainline": { - "type": "bool", - "id": 28, - "offset": 552, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1749856224 - }, - "m_defaultDialogAnimation": { - "type": "std::string", - "id": 29, - "offset": 560, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2400834320 - }, - "m_skipQHAutoSelect": { - "type": "bool", - "id": 30, - "offset": 553, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2024815836 - }, - "m_questEffectInfoList": { - "type": "class SharedPointer", - "id": 31, - "offset": 536, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2494024956 - }, - "m_forceInteraction": { - "type": "bool", - "id": 32, - "offset": 554, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1038376866 - }, - "m_checkInventoryForCrafting": { - "type": "bool", - "id": 33, - "offset": 608, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1549644020 - }, - "m_playAsYourPetNPC": { - "type": "bool", - "id": 34, - "offset": 609, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 827482678 - }, - "m_activityType": { - "type": "enum QuestTemplate::ActivityType", - "id": 35, - "offset": 612, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 231656390, - "enum_options": { - "ACTIVITY_NotActivity": 0, - "ACTIVITY_Crafting": 2, - "ACTIVITY_Fishing": 3, - "ACTIVITY_Gardening": 4, - "ACTIVITY_Pet": 5, - "ACTIVITY_Spell": 1 - } - } - } - }, - "1463307106": { - "name": "class WizardVisibilityBehavior*", - "bases": [ - "ClientVisibilityBehavior", - "VisibilityBehavior", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1463307106, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_showTo": { - "type": "gid", - "id": 1, - "offset": 112, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 947039004 - }, - "m_hideFrom": { - "type": "gid", - "id": 2, - "offset": 128, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 642644390 - }, - "m_visible": { - "type": "bool", - "id": 3, - "offset": 144, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 810536225 - } - } - }, - "1867738756": { - "name": "class ComboItem", - "bases": [ - "PropertyClass" - ], - "hash": 1867738756, - "properties": { - "sText": { - "type": "std::wstring", - "id": 0, - "offset": 72, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1567439332 - }, - "dwFlags": { - "type": "unsigned int", - "id": 1, - "offset": 104, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1021307529 - } - } - }, - "276946680": { - "name": "class QuestTemplate", - "bases": [ - "CoreTemplate", - "PropertyClass" - ], - "hash": 276946680, - "properties": { - "m_behaviors": { - "type": "class BehaviorTemplate*", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1197808594 - }, - "m_questName": { - "type": "std::string", - "id": 1, - "offset": 96, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1702112846 - }, - "m_questNameID": { - "type": "unsigned int", - "id": 2, - "offset": 128, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1530354349 - }, - "m_questTitle": { - "type": "std::string", - "id": 3, - "offset": 136, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1805465583 - }, - "m_questInfo": { - "type": "std::string", - "id": 4, - "offset": 168, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1701947097 - }, - "m_questPrep": { - "type": "std::string", - "id": 5, - "offset": 200, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1702202980 - }, - "m_questUnderway": { - "type": "std::string", - "id": 6, - "offset": 232, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2308400380 - }, - "m_questComplete": { - "type": "std::string", - "id": 7, - "offset": 264, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3484586150 - }, - "m_startGoals": { - "type": "std::string", - "id": 8, - "offset": 392, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2152469471 - }, - "m_goals": { - "type": "class SharedPointer", - "id": 9, - "offset": 408, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1374041870 - }, - "m_startResults": { - "type": "class SharedPointer", - "id": 10, - "offset": 424, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2094517692 - }, - "m_endResults": { - "type": "class SharedPointer", - "id": 11, - "offset": 440, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2118364133 - }, - "m_requirements": { - "type": "class RequirementList*", - "id": 12, - "offset": 456, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2840985510 - }, - "m_prepRequirements": { - "type": "class RequirementList*", - "id": 13, - "offset": 464, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3016776541 - }, - "m_pruneRequirements": { - "type": "class RequirementList*", - "id": 14, - "offset": 472, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3211248912 - }, - "m_prepAlways": { - "type": "bool", - "id": 15, - "offset": 304, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1423046331 - }, - "m_clientTags": { - "type": "std::string", - "id": 16, - "offset": 312, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2319030025 - }, - "m_goalLogic": { - "type": "class GoalCompleteLogic*", - "id": 17, - "offset": 520, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 963824003 - }, - "m_questLevel": { - "type": "int", - "id": 18, - "offset": 296, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 298136804 - }, - "m_questRepeat": { - "type": "int", - "id": 19, - "offset": 300, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1480345805 - }, - "m_onStartQuestScript": { - "type": "std::string", - "id": 20, - "offset": 328, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2577549709 - }, - "m_onEndQuestScript": { - "type": "std::string", - "id": 21, - "offset": 360, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285648118 - }, - "m_dialogList": { - "type": "class ActorDialogListBase*", - "id": 22, - "offset": 480, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1909154969 - }, - "m_missionDoors": { - "type": "std::string", - "id": 23, - "offset": 504, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2428103908 - }, - "m_dynaMods": { - "type": "class QuestDynaModInfo*", - "id": 24, - "offset": 488, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 3330743945 - }, - "m_isHidden": { - "type": "bool", - "id": 25, - "offset": 305, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1401188667 - }, - "m_outdated": { - "type": "bool", - "id": 26, - "offset": 306, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1565198349 - }, - "m_noQuestHelper": { - "type": "bool", - "id": 27, - "offset": 307, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 578010882 - }, - "m_mainline": { - "type": "bool", - "id": 28, - "offset": 552, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1749856224 - }, - "m_defaultDialogAnimation": { - "type": "std::string", - "id": 29, - "offset": 560, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2400834320 - }, - "m_skipQHAutoSelect": { - "type": "bool", - "id": 30, - "offset": 553, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2024815836 - }, - "m_questEffectInfoList": { - "type": "class SharedPointer", - "id": 31, - "offset": 536, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2494024956 - }, - "m_forceInteraction": { - "type": "bool", - "id": 32, - "offset": 554, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1038376866 - }, - "m_checkInventoryForCrafting": { - "type": "bool", - "id": 33, - "offset": 608, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1549644020 - }, - "m_playAsYourPetNPC": { - "type": "bool", - "id": 34, - "offset": 609, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 827482678 - }, - "m_activityType": { - "type": "enum QuestTemplate::ActivityType", - "id": 35, - "offset": 612, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 231656390, - "enum_options": { - "ACTIVITY_NotActivity": 0, - "ACTIVITY_Crafting": 2, - "ACTIVITY_Fishing": 3, - "ACTIVITY_Gardening": 4, - "ACTIVITY_Pet": 5, - "ACTIVITY_Spell": 1 - } - } - } - }, - "1462566492": { - "name": "class SharedPointer", - "bases": [ - "CoreTemplate", - "PropertyClass" - ], - "hash": 1462566492, - "properties": { - "m_behaviors": { - "type": "class BehaviorTemplate*", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1197808594 - }, - "m_name": { - "type": "std::string", - "id": 1, - "offset": 96, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1717359772 - }, - "m_description": { - "type": "std::string", - "id": 2, - "offset": 168, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1649374815 - }, - "m_advancedDescription": { - "type": "std::string", - "id": 3, - "offset": 200, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3465713013 - }, - "m_displayName": { - "type": "std::string", - "id": 4, - "offset": 136, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2446900370 - }, - "m_spellBase": { - "type": "std::string", - "id": 5, - "offset": 248, - "flags": 268435463, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2688054198, - "enum_options": { - "__BASECLASS": "CinematicTemplate" - } - }, - "m_effects": { - "type": "class SharedPointer", - "id": 6, - "offset": 280, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 370726379 - }, - "m_sMagicSchoolName": { - "type": "std::string", - "id": 7, - "offset": 312, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2035693400 - }, - "m_sTypeName": { - "type": "std::string", - "id": 8, - "offset": 352, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3580785905 - }, - "m_trainingCost": { - "type": "int", - "id": 9, - "offset": 384, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 982588239 - }, - "m_accuracy": { - "type": "int", - "id": 10, - "offset": 388, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1636315493 - }, - "m_baseCost": { - "type": "int", - "id": 11, - "offset": 232, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1475151502 - }, - "m_creditsCost": { - "type": "int", - "id": 12, - "offset": 236, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 715313825 - }, - "m_pvpCurrencyCost": { - "type": "int", - "id": 13, - "offset": 240, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 645595444 - }, - "m_pvpTourneyCurrencyCost": { - "type": "int", - "id": 14, - "offset": 244, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 517874954 - }, - "m_boosterPackIcon": { - "type": "std::string", - "id": 15, - "offset": 496, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3428653697 - }, - "m_validTargetSpells": { - "type": "unsigned int", - "id": 16, - "offset": 392, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2355782967 - }, - "m_PvP": { - "type": "bool", - "id": 17, - "offset": 408, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 269492361 - }, - "m_PvE": { - "type": "bool", - "id": 18, - "offset": 409, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 269492350 - }, - "m_noPvPEnchant": { - "type": "bool", - "id": 19, - "offset": 410, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 661581703 - }, - "m_noPvEEnchant": { - "type": "bool", - "id": 20, - "offset": 411, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 10144220 - }, - "m_battlegroundsOnly": { - "type": "bool", - "id": 21, - "offset": 412, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1244782419 - }, - "m_Treasure": { - "type": "bool", - "id": 22, - "offset": 413, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1749096414 - }, - "m_noDiscard": { - "type": "bool", - "id": 23, - "offset": 414, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 565749226 - }, - "m_leavesPlayWhenCast": { - "type": "bool", - "id": 24, - "offset": 532, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 698216294 - }, - "m_imageIndex": { - "type": "int", - "id": 25, - "offset": 416, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1570500405 - }, - "m_imageName": { - "type": "std::string", - "id": 26, - "offset": 424, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2391520543 - }, - "m_cloaked": { - "type": "bool", - "id": 27, - "offset": 489, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 7349510 - }, - "m_casterInvisible": { - "type": "bool", - "id": 28, - "offset": 490, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 310214650 - }, - "m_adjectives": { - "type": "std::string", - "id": 29, - "offset": 576, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2967855037 - }, - "m_spellSourceType": { - "type": "enum SpellTemplate::kSpellSourceType", - "id": 30, - "offset": 528, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 156272727, - "enum_options": { - "kCaster": 0, - "kPet": 1, - "kShadowCreature": 2, - "kWeapon": 3, - "kEquipment": 4 - } - }, - "m_cloakedName": { - "type": "std::string", - "id": 31, - "offset": 536, - "flags": 268435463, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2846679215, - "enum_options": { - "__BASECLASS": "SpellTemplate" - } - }, - "m_purchaseRequirements": { - "type": "class RequirementList*", - "id": 32, - "offset": 608, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3174641793 - }, - "m_displayRequirements": { - "type": "class RequirementList*", - "id": 33, - "offset": 840, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3646782876 - }, - "m_descriptionTrainer": { - "type": "std::string", - "id": 34, - "offset": 616, - "flags": 8388871, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1756093908 - }, - "m_descriptionCombatHUD": { - "type": "std::string", - "id": 35, - "offset": 648, - "flags": 8388871, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1631478006 - }, - "m_displayIndex": { - "type": "int", - "id": 36, - "offset": 680, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1250551048 - }, - "m_hiddenFromEffectsWindow": { - "type": "bool", - "id": 37, - "offset": 684, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1832736331 - }, - "m_ignoreCharms": { - "type": "bool", - "id": 38, - "offset": 685, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1840075893 - }, - "m_alwaysFizzle": { - "type": "bool", - "id": 39, - "offset": 686, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2030988856 - }, - "m_spellCategory": { - "type": "std::string", - "id": 40, - "offset": 688, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2472376729 - }, - "m_showPolymorphedName": { - "type": "bool", - "id": 41, - "offset": 720, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2097929096 - }, - "m_skipTruncation": { - "type": "bool", - "id": 42, - "offset": 721, - "flags": 263, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1838335249 - }, - "m_maxCopies": { - "type": "unsigned int", - "id": 43, - "offset": 724, - "flags": 263, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 403022326 - }, - "m_levelRestriction": { - "type": "int", - "id": 44, - "offset": 728, - "flags": 263, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 176502472 - }, - "m_delayEnchantment": { - "type": "bool", - "id": 45, - "offset": 732, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 191336919 - }, - "m_delayEnchantmentOrder": { - "type": "enum SpellEffect::kDelayOrder", - "id": 46, - "offset": 736, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2526055263, - "enum_options": { - "SpellEffect::kAnyOrder": 0, - "SpellEffect::kFirst": 1, - "SpellEffect::kSecond": 2 - } - }, - "m_previousSpellName": { - "type": "std::string", - "id": 47, - "offset": 744, - "flags": 268435463, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2903322585, - "enum_options": { - "__BASECLASS": "SpellTemplate" - } - }, - "m_cardFront": { - "type": "std::string", - "id": 48, - "offset": 456, - "flags": 131359, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3557598526 - }, - "m_useGloss": { - "type": "bool", - "id": 49, - "offset": 488, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 668817544 - }, - "m_ignoreDispel": { - "type": "bool", - "id": 50, - "offset": 776, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1881041624 - }, - "m_backRowFriendly": { - "type": "bool", - "id": 51, - "offset": 777, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 501584377 - }, - "m_spellRank": { - "type": "class SharedPointer", - "id": 52, - "offset": 784, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3152361374 - }, - "m_secondarySchoolName": { - "type": "std::string", - "id": 53, - "offset": 800, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1803268236 - }, - "m_spellFusion": { - "type": "unsigned int", - "id": 54, - "offset": 836, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1658928321 - }, - "m_requiredSchoolName": { - "type": "std::string", - "id": 55, - "offset": 848, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3576058981 - } - } - }, - "1867634460": { - "name": "class WizGameStats*", - "bases": [ - "PropertyClass" - ], - "hash": 1867634460, - "properties": { - "m_baseHitpoints": { - "type": "int", - "id": 0, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 596105911 - }, - "m_baseMana": { - "type": "int", - "id": 1, - "offset": 84, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1475495442 - }, - "m_baseGoldPouch": { - "type": "int", - "id": 2, - "offset": 88, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 848889754 - }, - "m_baseEventCurrency1Pouch": { - "type": "int", - "id": 3, - "offset": 92, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1227701106 - }, - "m_baseEventCurrency2Pouch": { - "type": "int", - "id": 4, - "offset": 96, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1266836499 - }, - "m_basePvPCurrencyPouch": { - "type": "int", - "id": 5, - "offset": 100, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 250034965 - }, - "m_basePvPTourneyCurrencyPouch": { - "type": "int", - "id": 6, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2005272907 - }, - "m_energyMax": { - "type": "int", - "id": 7, - "offset": 108, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 493080970 - }, - "m_currentHitpoints": { - "type": "int", - "id": 8, - "offset": 112, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1533788735 - }, - "m_currentGold": { - "type": "int", - "id": 9, - "offset": 116, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1255819683 - }, - "m_currentEventCurrency1": { - "type": "int", - "id": 10, - "offset": 120, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1718583419 - }, - "m_currentEventCurrency2": { - "type": "int", - "id": 11, - "offset": 124, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1718583420 - }, - "m_currentPvPCurrency": { - "type": "int", - "id": 12, - "offset": 128, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 958495550 - }, - "m_currentPvPTourneyCurrency": { - "type": "int", - "id": 13, - "offset": 132, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 398198452 - }, - "m_currentMana": { - "type": "int", - "id": 14, - "offset": 136, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1256020122 - }, - "m_currentArenaPoints": { - "type": "int", - "id": 15, - "offset": 140, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1119642753 - }, - "m_spellChargeBase": { - "type": "int", - "id": 16, - "offset": 144, - "flags": 31, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 712023615 - }, - "m_potionMax": { - "type": "float", - "id": 17, - "offset": 168, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2123676470 - }, - "m_potionCharge": { - "type": "float", - "id": 18, - "offset": 172, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1104179290 - }, - "m_pArenaLadder": { - "type": "class SharedPointer", - "id": 19, - "offset": 176, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2717766581 - }, - "m_pDerbyLadder": { - "type": "class SharedPointer", - "id": 20, - "offset": 192, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2352744804 - }, - "m_bracketLader": { - "type": "class SharedPointer", - "id": 21, - "offset": 208, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2562001526 - }, - "m_bonusHitpoints": { - "type": "int", - "id": 22, - "offset": 224, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 103057475 - }, - "m_bonusMana": { - "type": "int", - "id": 23, - "offset": 228, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1757236254 - }, - "m_bonusEnergy": { - "type": "int", - "id": 24, - "offset": 244, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1975625099 - }, - "m_criticalHitPercentAll": { - "type": "float", - "id": 25, - "offset": 248, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2085066513 - }, - "m_blockPercentAll": { - "type": "float", - "id": 26, - "offset": 252, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1203386380 - }, - "m_criticalHitRatingAll": { - "type": "float", - "id": 27, - "offset": 256, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 923968773 - }, - "m_blockRatingAll": { - "type": "float", - "id": 28, - "offset": 260, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1743229600 - }, - "m_referenceLevel": { - "type": "int", - "id": 29, - "offset": 324, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1436595649 - }, - "m_highestCharacterLevelOnAccount": { - "type": "int", - "id": 30, - "offset": 336, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1662017333 - }, - "m_petActChance": { - "type": "int", - "id": 31, - "offset": 344, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 237418461 - }, - "m_dmgBonusPercent": { - "type": "float", - "id": 32, - "offset": 352, - "flags": 31, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 194501159 - }, - "m_dmgBonusFlat": { - "type": "float", - "id": 33, - "offset": 376, - "flags": 31, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1837769725 - }, - "m_accBonusPercent": { - "type": "float", - "id": 34, - "offset": 400, - "flags": 31, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 331557526 - }, - "m_apBonusPercent": { - "type": "float", - "id": 35, - "offset": 424, - "flags": 31, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1228557984 - }, - "m_dmgReducePercent": { - "type": "float", - "id": 36, - "offset": 448, - "flags": 31, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1426050712 - }, - "m_dmgReduceFlat": { - "type": "float", - "id": 37, - "offset": 472, - "flags": 31, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1218184718 - }, - "m_accReducePercent": { - "type": "float", - "id": 38, - "offset": 496, - "flags": 31, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1653943527 - }, - "m_healBonusPercent": { - "type": "float", - "id": 39, - "offset": 520, - "flags": 31, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 562313577 - }, - "m_healIncBonusPercent": { - "type": "float", - "id": 40, - "offset": 544, - "flags": 31, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2182535587 - }, - "m_spellChargeBonus": { - "type": "int", - "id": 41, - "offset": 592, - "flags": 31, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2019610507 - }, - "m_dmgBonusPercentAll": { - "type": "float", - "id": 42, - "offset": 712, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2076945760 - }, - "m_dmgBonusFlatAll": { - "type": "float", - "id": 43, - "offset": 716, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 419082102 - }, - "m_accBonusPercentAll": { - "type": "float", - "id": 44, - "offset": 720, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1144118127 - }, - "m_apBonusPercentAll": { - "type": "float", - "id": 45, - "offset": 724, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 772537145 - }, - "m_dmgReducePercentAll": { - "type": "float", - "id": 46, - "offset": 728, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 635246641 - }, - "m_dmgReduceFlatAll": { - "type": "float", - "id": 47, - "offset": 732, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1650631655 - }, - "m_accReducePercentAll": { - "type": "float", - "id": 48, - "offset": 736, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2064189472 - }, - "m_healBonusPercentAll": { - "type": "float", - "id": 49, - "offset": 740, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 242474338 - }, - "m_healIncBonusPercentAll": { - "type": "float", - "id": 50, - "offset": 744, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1436699484 - }, - "m_spellChargeBonusAll": { - "type": "int", - "id": 51, - "offset": 752, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1354189604 - }, - "m_powerPipBase": { - "type": "float", - "id": 52, - "offset": 756, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 345261352 - }, - "m_powerPipBonusPercentAll": { - "type": "float", - "id": 53, - "offset": 792, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1850107326 - }, - "m_xpPercentIncrease": { - "type": "float", - "id": 54, - "offset": 800, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1051081338 - }, - "m_criticalHitPercentBySchool": { - "type": "float", - "id": 55, - "offset": 616, - "flags": 31, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1022327067 - }, - "m_blockPercentBySchool": { - "type": "float", - "id": 56, - "offset": 640, - "flags": 31, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2189750006 - }, - "m_criticalHitRatingBySchool": { - "type": "float", - "id": 57, - "offset": 664, - "flags": 31, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2060803983 - }, - "m_blockRatingBySchool": { - "type": "float", - "id": 58, - "offset": 688, - "flags": 31, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 274073098 - }, - "m_balanceMastery": { - "type": "int", - "id": 59, - "offset": 832, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 149062181 - }, - "m_deathMastery": { - "type": "int", - "id": 60, - "offset": 836, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1421218661 - }, - "m_fireMastery": { - "type": "int", - "id": 61, - "offset": 840, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1431794949 - }, - "m_iceMastery": { - "type": "int", - "id": 62, - "offset": 844, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 704864240 - }, - "m_lifeMastery": { - "type": "int", - "id": 63, - "offset": 848, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2142136447 - }, - "m_mythMastery": { - "type": "int", - "id": 64, - "offset": 852, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1766317185 - }, - "m_stormMastery": { - "type": "int", - "id": 65, - "offset": 856, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1883988244 - }, - "m_maximumNumberOfIslands": { - "type": "int", - "id": 66, - "offset": 860, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 412109412 - }, - "m_gardeningLevel": { - "type": "unsigned char", - "id": 67, - "offset": 864, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2456231799 - }, - "m_gardeningXP": { - "type": "int", - "id": 68, - "offset": 868, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 590238801 - }, - "m_invisibleToFriends": { - "type": "bool", - "id": 69, - "offset": 872, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 416456454 - }, - "m_showItemLock": { - "type": "bool", - "id": 70, - "offset": 873, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3575244 - }, - "m_questFinderEnabled": { - "type": "bool", - "id": 71, - "offset": 874, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 125544072 - }, - "m_buddyListLimit": { - "type": "int", - "id": 72, - "offset": 876, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1103577965 - }, - "m_dontAllowFriendFinderCodes": { - "type": "bool", - "id": 73, - "offset": 884, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1360721765 - }, - "m_stunResistancePercent": { - "type": "float", - "id": 74, - "offset": 880, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1868382627 - }, - "m_shadowMagicUnlocked": { - "type": "bool", - "id": 75, - "offset": 892, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1642162767 - }, - "m_shadowPipMax": { - "type": "int", - "id": 76, - "offset": 888, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1774396431 - }, - "m_fishingLevel": { - "type": "unsigned char", - "id": 77, - "offset": 893, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 682785040 - }, - "m_fishingXP": { - "type": "int", - "id": 78, - "offset": 896, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 319909002 - }, - "m_fishingLuckBonusPercent": { - "type": "float", - "id": 79, - "offset": 568, - "flags": 31, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1363349254 - }, - "m_fishingLuckBonusPercentAll": { - "type": "float", - "id": 80, - "offset": 748, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2190780895 - }, - "m_subscriberBenefitFlags": { - "type": "unsigned int", - "id": 81, - "offset": 900, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1587324747 - }, - "m_elixirBenefitFlags": { - "type": "unsigned int", - "id": 82, - "offset": 904, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2320773252 - }, - "m_shadowPipBonusPercent": { - "type": "float", - "id": 83, - "offset": 796, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1426533310 - }, - "m_wispBonusPercent": { - "type": "float", - "id": 84, - "offset": 824, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1304386546 - }, - "m_pipConversionRatingAll": { - "type": "float", - "id": 85, - "offset": 288, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 198602948 - }, - "m_pipConversionRatingPerSchool": { - "type": "float", - "id": 86, - "offset": 264, - "flags": 31, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 930350362 - }, - "m_pipConversionPercentAll": { - "type": "float", - "id": 87, - "offset": 320, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1770314416 - }, - "m_pipConversionPercentPerSchool": { - "type": "float", - "id": 88, - "offset": 296, - "flags": 31, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 960311302 - }, - "m_monsterMagicLevel": { - "type": "unsigned char", - "id": 89, - "offset": 908, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 729572689 - }, - "m_monsterMagicXP": { - "type": "int", - "id": 90, - "offset": 912, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 770955371 - }, - "m_playerChatChannelIsPublic": { - "type": "bool", - "id": 91, - "offset": 916, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 50035796 - }, - "m_extraInventorySpace": { - "type": "int", - "id": 92, - "offset": 920, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1757105784 - }, - "m_rememberLastRealm": { - "type": "bool", - "id": 93, - "offset": 924, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 746394247 - }, - "m_newSpellbookLayoutWarning": { - "type": "bool", - "id": 94, - "offset": 925, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1509105148 - }, - "m_pipConversionBaseAllSchools": { - "type": "int", - "id": 95, - "offset": 760, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 307930968 - }, - "m_pipConversionBasePerSchool": { - "type": "int", - "id": 96, - "offset": 768, - "flags": 31, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1322493139 - }, - "m_purchasedCustomEmotes1": { - "type": "unsigned int", - "id": 97, - "offset": 928, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2104336133 - }, - "m_purchasedCustomTeleportEffects1": { - "type": "unsigned int", - "id": 98, - "offset": 932, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 603893351 - }, - "m_equippedTeleportEffect": { - "type": "unsigned int", - "id": 99, - "offset": 936, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 918478182 - }, - "m_highestWorld1ID": { - "type": "unsigned int", - "id": 100, - "offset": 956, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2049405919 - }, - "m_highestWorld2ID": { - "type": "unsigned int", - "id": 101, - "offset": 960, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2049407008 - }, - "m_activeClassProjectsList": { - "type": "unsigned int", - "id": 102, - "offset": 968, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1952826405 - }, - "m_disabledItemSlotIDs": { - "type": "unsigned int", - "id": 103, - "offset": 984, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1477574262 - }, - "m_adventurePowerCooldownTime": { - "type": "unsigned int", - "id": 104, - "offset": 1000, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1774753180 - }, - "m_purchasedCustomEmotes2": { - "type": "unsigned int", - "id": 105, - "offset": 940, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2104336134 - }, - "m_purchasedCustomTeleportEffects2": { - "type": "unsigned int", - "id": 106, - "offset": 944, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 603893352 - }, - "m_purchasedCustomEmotes3": { - "type": "unsigned int", - "id": 107, - "offset": 948, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2104336135 - }, - "m_purchasedCustomTeleportEffects3": { - "type": "unsigned int", - "id": 108, - "offset": 952, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 603893353 - }, - "m_shadowPipRating": { - "type": "float", - "id": 109, - "offset": 1004, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 507126123 - }, - "m_bonusShadowPipRating": { - "type": "float", - "id": 110, - "offset": 1008, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 578452466 - }, - "m_shadowPipRateAccumulated": { - "type": "float", - "id": 111, - "offset": 1012, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 922051738 - }, - "m_shadowPipRateThreshold": { - "type": "float", - "id": 112, - "offset": 1016, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1215959391 - }, - "m_shadowPipRatePercentage": { - "type": "int", - "id": 113, - "offset": 1020, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2119696723 - }, - "m_friendlyPlayer": { - "type": "bool", - "id": 114, - "offset": 1024, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 990699901 - }, - "m_emojiSkinTone": { - "type": "int", - "id": 115, - "offset": 1028, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1291044345 - }, - "m_showPVPOption": { - "type": "unsigned int", - "id": 116, - "offset": 1032, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2052204093 - }, - "m_favoriteSlot": { - "type": "int", - "id": 117, - "offset": 1036, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 13456252 - }, - "m_cantripLevel": { - "type": "unsigned char", - "id": 118, - "offset": 1040, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 788457241 - }, - "m_cantripXP": { - "type": "int", - "id": 119, - "offset": 1044, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1867018035 - }, - "m_archmasteryBase": { - "type": "float", - "id": 120, - "offset": 1048, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2213748661 - }, - "m_archmasteryBonusFlat": { - "type": "float", - "id": 121, - "offset": 1052, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2047862920 - }, - "m_archmasteryBonusPercentage": { - "type": "float", - "id": 122, - "offset": 1056, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2054419871 - }, - "m_highestCharacterWorldOnAccount": { - "type": "int", - "id": 123, - "offset": 340, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1240477285 - }, - "m_schoolID": { - "type": "unsigned int", - "id": 124, - "offset": 328, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 369010242 - }, - "m_levelScaled": { - "type": "int", - "id": 125, - "offset": 332, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1740930910 - }, - "m_currentZoneName": { - "type": "std::string", - "id": 126, - "offset": 1064, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3602481883 - }, - "m_mailSentToday": { - "type": "unsigned char", - "id": 127, - "offset": 1096, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2737597102 - }, - "m_secondarySchool": { - "type": "unsigned int", - "id": 128, - "offset": 1100, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 479424797 - } - } - }, - "686035860": { - "name": "class InvisibilityEffect*", - "bases": [ - "GameEffectBase", - "PropertyClass" - ], - "hash": 686035860, - "properties": { - "m_currentTickCount": { - "type": "double", - "id": 0, - "offset": 80, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2533274692 - }, - "m_effectNameID": { - "type": "unsigned int", - "id": 1, - "offset": 96, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1204067144 - }, - "m_bIsOnPet": { - "type": "bool", - "id": 2, - "offset": 73, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 522593303 - }, - "m_originatorID": { - "type": "gid", - "id": 3, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1131810019 - }, - "m_itemSlotID": { - "type": "unsigned int", - "id": 4, - "offset": 112, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1895747595 - }, - "m_internalID": { - "type": "int", - "id": 5, - "offset": 92, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1643137924 - }, - "m_endTime": { - "type": "unsigned int", - "id": 6, - "offset": 88, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 716479635 - } - } - }, - "1866584515": { - "name": "class SharedPointer", - "bases": [ - "AvatarOptionBase", - "PropertyClass" - ], - "hash": 1866584515, - "properties": { - "m_conditionFlags": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2483653903 - }, - "m_mesh": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1717328392 - }, - "m_noMesh": { - "type": "bool", - "id": 2, - "offset": 168, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 760920637 - }, - "m_geometry": { - "type": "std::string", - "id": 3, - "offset": 136, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2041778855 - } - } - }, - "685869737": { - "name": "class ClientHousingBlobStrategy*", - "bases": [ - "BaseClientHousingBlobStrategy", - "BlobCacheInterface", - "PropertyClass" - ], - "hash": 685869737, - "properties": {} - }, - "1865778220": { - "name": "class ReqEntryValue*", - "bases": [ - "ReqNumeric", - "Requirement", - "PropertyClass" - ], - "hash": 1865778220, - "properties": { - "m_applyNOT": { - "type": "bool", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1746328074, - "enum_options": { - "__DEFAULT": 0 - } - }, - "m_operator": { - "type": "enum Requirement::Operator", - "id": 1, - "offset": 76, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2672792317, - "enum_options": { - "ROP_AND": 0, - "ROP_OR": 1, - "__DEFAULT": "ROP_AND" - } - }, - "m_numericValue": { - "type": "float", - "id": 2, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 521915239 - }, - "m_operatorType": { - "type": "enum ReqNumeric::OPERATOR_TYPE", - "id": 3, - "offset": 84, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2228122961, - "enum_options": { - "OPERATOR_UNKNOWN": 4294967295, - "OPERATOR_EQUALS": 0, - "OPERATOR_GREATER_THAN": 1, - "OPERATOR_LESS_THAN": 2, - "OPERATOR_GREATER_THAN_EQ": 3, - "OPERATOR_LESS_THAN_EQ": 4 - } - }, - "m_entryName": { - "type": "std::string", - "id": 4, - "offset": 88, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2055270734 - }, - "m_displayName": { - "type": "std::string", - "id": 5, - "offset": 120, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2446900370 - }, - "m_isQuestRegistry": { - "type": "bool", - "id": 6, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1388902362 - }, - "m_questName": { - "type": "std::string", - "id": 7, - "offset": 160, - "flags": 268435463, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1702112846, - "enum_options": { - "__BASECLASS": "QuestTemplate" - } - } - } - }, - "277066535": { - "name": "class SharedPointer", - "bases": [ - "Window", - "PropertyClass" - ], - "hash": 277066535, - "properties": { - "m_sName": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306437263 - }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621225959 - }, - "m_Style": { - "type": "unsigned int", - "id": 2, - "offset": 152, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "SCALE_CHILDREN": 2, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "FOCUS_LOCKED": 64, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152 - } - }, - "m_Flags": { - "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } - }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3105139380 - }, - "m_fTargetAlpha": { - "type": "float", - "id": 5, - "offset": 212, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1809129834 - }, - "m_fDisabledAlpha": { - "type": "float", - "id": 6, - "offset": 216, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1389987675 - }, - "m_fAlpha": { - "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 482130755 - }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3623628394 - }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2102211316 - }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1846695875 - }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3389835433 - }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2547159940 - }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2587533771 - }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3091503757 - } - } - }, - "1865754649": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1865754649, - "properties": { - "m_idleName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2107593594 - }, - "m_fidgetName": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2693632335 - }, - "m_fidgetsPerMinute": { - "type": "float", - "id": 2, - "offset": 136, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1517617078 - }, - "m_fidgetSound": { - "type": "std::string", - "id": 3, - "offset": 144, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2312384855 - } - } - }, - "1463939559": { - "name": "enum GoalTemplate::GOAL_TYPE", - "bases": [], - "hash": 1463939559, - "properties": {} - }, - "686311109": { - "name": "class SharedPointer", - "bases": [ - "BaseClientHousingBlobStrategy", - "BlobCacheInterface", - "PropertyClass" - ], - "hash": 686311109, - "properties": {} - }, - "1463531469": { - "name": "class FXBySlotEffect", - "bases": [ - "GameEffectBase", - "PropertyClass" - ], - "hash": 1463531469, - "properties": { - "m_currentTickCount": { - "type": "double", - "id": 0, - "offset": 80, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2533274692 - }, - "m_effectNameID": { - "type": "unsigned int", - "id": 1, - "offset": 96, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1204067144 - }, - "m_bIsOnPet": { - "type": "bool", - "id": 2, - "offset": 73, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 522593303 - }, - "m_originatorID": { - "type": "gid", - "id": 3, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1131810019 - }, - "m_itemSlotID": { - "type": "unsigned int", - "id": 4, - "offset": 112, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1895747595 - }, - "m_internalID": { - "type": "int", - "id": 5, - "offset": 92, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1643137924 - }, - "m_endTime": { - "type": "unsigned int", - "id": 6, - "offset": 88, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 716479635 - } - } - }, - "278680995": { - "name": "class SharedPointer", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 278680995, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - } - } - }, - "1865778223": { - "name": "class ReqEntryValue", - "bases": [ - "ReqNumeric", - "Requirement", - "PropertyClass" - ], - "hash": 1865778223, - "properties": { - "m_applyNOT": { - "type": "bool", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1746328074, - "enum_options": { - "__DEFAULT": 0 - } - }, - "m_operator": { - "type": "enum Requirement::Operator", - "id": 1, - "offset": 76, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2672792317, - "enum_options": { - "ROP_AND": 0, - "ROP_OR": 1, - "__DEFAULT": "ROP_AND" - } - }, - "m_numericValue": { - "type": "float", - "id": 2, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 521915239 - }, - "m_operatorType": { - "type": "enum ReqNumeric::OPERATOR_TYPE", - "id": 3, - "offset": 84, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2228122961, - "enum_options": { - "OPERATOR_UNKNOWN": 4294967295, - "OPERATOR_EQUALS": 0, - "OPERATOR_GREATER_THAN": 1, - "OPERATOR_LESS_THAN": 2, - "OPERATOR_GREATER_THAN_EQ": 3, - "OPERATOR_LESS_THAN_EQ": 4 - } - }, - "m_entryName": { - "type": "std::string", - "id": 4, - "offset": 88, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2055270734 - }, - "m_displayName": { - "type": "std::string", - "id": 5, - "offset": 120, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2446900370 - }, - "m_isQuestRegistry": { - "type": "bool", - "id": 6, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1388902362 - }, - "m_questName": { - "type": "std::string", - "id": 7, - "offset": 160, - "flags": 268435463, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1702112846, - "enum_options": { - "__BASECLASS": "QuestTemplate" - } - } - } - }, - "278191150": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 278191150, - "properties": { - "m_nodeList": { - "type": "class NodeObject*", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2187152017 - } - } - }, - "687876558": { - "name": "class BodyOfWater", - "bases": [ - "PropertyClass" - ], - "hash": 687876558, - "properties": { - "m_waterX": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1185657746 - }, - "m_waterY": { - "type": "float", - "id": 1, - "offset": 76, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1185657747 - }, - "m_secondsToRespawn": { - "type": "unsigned int", - "id": 2, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1001169759 - }, - "m_numberOfFish": { - "type": "int", - "id": 3, - "offset": 84, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1143336898 - }, - "m_zoneFishList": { - "type": "class SharedPointer", - "id": 4, - "offset": 96, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2647022847 - }, - "m_waterType": { - "type": "int", - "id": 5, - "offset": 88, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 869659615 - } - } - }, - "1465232142": { - "name": "class ClientDerbyModifyRate", - "bases": [ - "DerbyModifyRate", - "DerbyEffect", - "PropertyClass" - ], - "hash": 1465232142, - "properties": { - "m_buffType": { - "type": "enum DerbyTalentBuffType", - "id": 0, - "offset": 92, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1149251982, - "enum_options": { - "Buff": 0, - "Debuff": 1, - "Neither": 2 - } - }, - "m_kTarget": { - "type": "enum DerbyTargetType", - "id": 1, - "offset": 96, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1807803351, - "enum_options": { - "kTargetInFront": 0, - "kTargetBehind": 1, - "kTargetFirst": 2, - "kTargetSelf": 3, - "kTargetAll": 4, - "kTargetLast": 5 - } - }, - "m_nDuration": { - "type": "int", - "id": 2, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1110167982 - }, - "m_effectID": { - "type": "unsigned int", - "id": 3, - "offset": 88, - "flags": 24, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2347630439 - }, - "m_imageFilename": { - "type": "std::string", - "id": 4, - "offset": 112, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2813328063 - }, - "m_iconIndex": { - "type": "unsigned int", - "id": 5, - "offset": 144, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1265133262 - }, - "m_soundOnActivate": { - "type": "std::string", - "id": 6, - "offset": 152, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1956929714 - }, - "m_soundOnTarget": { - "type": "std::string", - "id": 7, - "offset": 184, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3444214056 - }, - "m_targetParticleEffect": { - "type": "std::string", - "id": 8, - "offset": 216, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3048234723 - }, - "m_overheadMessage": { - "type": "std::string", - "id": 9, - "offset": 248, - "flags": 8388639, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1701018190 - }, - "m_requirements": { - "type": "class RequirementList", - "id": 10, - "offset": 280, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2840988582 - }, - "m_nRateChange": { - "type": "int", - "id": 11, - "offset": 376, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 797681786 - } - } - }, - "278258281": { - "name": "class std::list >", - "bases": [], - "hash": 278258281, - "properties": {} - }, - "687684614": { - "name": "class BGPlayerBehavior*", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 687684614, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - } - } - }, - "1464304424": { - "name": "class SharedPointer", - "bases": [ - "WizItemLocations", - "PropertyClass" - ], - "hash": 1464304424, - "properties": { - "m_itemType": { - "type": "enum WizItemLocations::eItemType", - "id": 0, - "offset": 72, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3482173907, - "enum_options": { - "shop": 0, - "quest": 1, - "boss": 2, - "gardening": 3, - "goldChest": 4 - } - }, - "m_vendors": { - "type": "class SharedPointer", - "id": 1, - "offset": 80, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1211076136 - } - } - }, - "1867043912": { - "name": "class SharedPointer", - "bases": [ - "RidableBehaviorBase", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1867043912, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_assignedPlayers": { - "type": "gid", - "id": 1, - "offset": 112, - "flags": 65543, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1913541510 - } - } - }, - "687409870": { - "name": "class ClientDamageEventCinematicAction", - "bases": [ - "DamageEventCinematicAction", - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 687409870, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - } - } - }, - "1464198029": { - "name": "class ExtraHousingZoneBehavior*", - "bases": [ - "ExtraHousingZoneBehaviorBase", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1464198029, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - } - } - }, - "1866695046": { - "name": "class ReqIsLimitExpandBackpackElixirs*", - "bases": [ - "Requirement", - "PropertyClass" - ], - "hash": 1866695046, - "properties": { - "m_applyNOT": { - "type": "bool", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1746328074, - "enum_options": { - "__DEFAULT": 0 - } - }, - "m_operator": { - "type": "enum Requirement::Operator", - "id": 1, - "offset": 76, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2672792317, - "enum_options": { - "ROP_AND": 0, - "ROP_OR": 1, - "__DEFAULT": "ROP_AND" - } - } - } - }, - "278917123": { - "name": "class SharedPointer", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 278917123, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_ownerGid": { - "type": "gid", - "id": 1, - "offset": 128, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1765088663 - }, - "m_radius": { - "type": "float", - "id": 2, - "offset": 136, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 989410271 - }, - "m_angle": { - "type": "float", - "id": 3, - "offset": 140, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 878748702 - }, - "m_leashType": { - "type": "enum LeashType", - "id": 4, - "offset": 144, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2170708051, - "enum_options": { - "LLT_Rigid": 0, - "LLT_Elastic": 1 - } - }, - "m_alwaysDisplay": { - "type": "bool", - "id": 5, - "offset": 161, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2071781402 - } - } - }, - "687848454": { - "name": "class BGPlayerBehavior", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 687848454, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - } - } - }, - "1464657398": { - "name": "class SharedPointer", - "bases": [ - "ZoneTokenBaseControl", - "Window", - "PropertyClass" - ], - "hash": 1464657398, - "properties": { - "m_sName": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306437263 - }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621225959 - }, - "m_Style": { - "type": "unsigned int", - "id": 2, - "offset": 152, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "SCALE_CHILDREN": 2, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "FOCUS_LOCKED": 64, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152 - } - }, - "m_Flags": { - "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } - }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3105139380 - }, - "m_fTargetAlpha": { - "type": "float", - "id": 5, - "offset": 212, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1809129834 - }, - "m_fDisabledAlpha": { - "type": "float", - "id": 6, - "offset": 216, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1389987675 - }, - "m_fAlpha": { - "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 482130755 - }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3623628394 - }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2102211316 - }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1846695875 - }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3389835433 - }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2547159940 - }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2587533771 - }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3091503757 - } - } - }, - "279106270": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 279106270, - "properties": { - "m_pathList": { - "type": "class PathObjectTemplate*", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2517543930 - } - } - }, - "1867726468": { - "name": "class ComboItem*", - "bases": [ - "PropertyClass" - ], - "hash": 1867726468, - "properties": { - "sText": { - "type": "std::wstring", - "id": 0, - "offset": 72, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1567439332 - }, - "dwFlags": { - "type": "unsigned int", - "id": 1, - "offset": 104, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1021307529 - } - } - }, - "688561952": { - "name": "class ItemFinderBehaviorBase", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 688561952, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - } - } - }, - "1465232910": { - "name": "class ClientDerbyModifyRate*", - "bases": [ - "DerbyModifyRate", - "DerbyEffect", - "PropertyClass" - ], - "hash": 1465232910, - "properties": { - "m_buffType": { - "type": "enum DerbyTalentBuffType", - "id": 0, - "offset": 92, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1149251982, - "enum_options": { - "Buff": 0, - "Debuff": 1, - "Neither": 2 - } - }, - "m_kTarget": { - "type": "enum DerbyTargetType", - "id": 1, - "offset": 96, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1807803351, - "enum_options": { - "kTargetInFront": 0, - "kTargetBehind": 1, - "kTargetFirst": 2, - "kTargetSelf": 3, - "kTargetAll": 4, - "kTargetLast": 5 - } - }, - "m_nDuration": { - "type": "int", - "id": 2, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1110167982 - }, - "m_effectID": { - "type": "unsigned int", - "id": 3, - "offset": 88, - "flags": 24, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2347630439 - }, - "m_imageFilename": { - "type": "std::string", - "id": 4, - "offset": 112, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2813328063 - }, - "m_iconIndex": { - "type": "unsigned int", - "id": 5, - "offset": 144, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1265133262 - }, - "m_soundOnActivate": { - "type": "std::string", - "id": 6, - "offset": 152, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1956929714 - }, - "m_soundOnTarget": { - "type": "std::string", - "id": 7, - "offset": 184, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3444214056 - }, - "m_targetParticleEffect": { - "type": "std::string", - "id": 8, - "offset": 216, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3048234723 - }, - "m_overheadMessage": { - "type": "std::string", - "id": 9, - "offset": 248, - "flags": 8388639, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1701018190 - }, - "m_requirements": { - "type": "class RequirementList", - "id": 10, - "offset": 280, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2840988582 - }, - "m_nRateChange": { - "type": "int", - "id": 11, - "offset": 376, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 797681786 - } - } - }, - "281071924": { - "name": "class InteractiveMusicBehaviorBase*", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 281071924, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - } - } - }, - "688537376": { - "name": "class ItemFinderBehaviorBase*", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 688537376, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - } - } - }, - "1868564397": { - "name": "class SG_GamePower*", - "bases": [ - "PropertyClass" - ], - "hash": 1868564397, - "properties": { - "m_name": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1717359772 - }, - "m_blockInteraction": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1884044102 - }, - "m_blockTypeDestroyed": { - "type": "std::string", - "id": 2, - "offset": 136, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3388691227 - }, - "m_ballGraphic": { - "type": "std::string", - "id": 3, - "offset": 200, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2352594772 - }, - "m_impactGraphic": { - "type": "std::string", - "id": 4, - "offset": 232, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3208005463 - }, - "m_powerComboMultipliers": { - "type": "class SharedPointer", - "id": 5, - "offset": 328, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1957941557 - }, - "m_impactSound": { - "type": "std::string", - "id": 6, - "offset": 264, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2087348962 - }, - "m_selectSound": { - "type": "std::string", - "id": 7, - "offset": 296, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1892320740 - } - } - }, - "279795948": { - "name": "class PlayerStatueBehavior", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 279795948, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_visualBlobs": { - "type": "std::string", - "id": 1, - "offset": 176, - "flags": 31, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 3602657281 - } - } - }, - "1465790101": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1465790101, - "properties": { - "m_worldZoneName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2739174336 - }, - "m_soundList": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2277086720 - } - } - }, - "1867891328": { - "name": "class SpawnItem", - "bases": [ - "PropertyClass" - ], - "hash": 1867891328, - "properties": { - "m_percentChance": { - "type": "unsigned char", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1023261955 - }, - "m_objectInfo": { - "type": "class SpawnObjectInfo*", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1481415047 - } - } - }, - "279414099": { - "name": "class SpellSubEffectMetadata*", - "bases": [ - "PropertyClass" - ], - "hash": 279414099, - "properties": { - "m_effectIndex": { - "type": "int", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 350070655 - }, - "m_chosenSubEffect": { - "type": "int", - "id": 1, - "offset": 76, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1555389905 - } - } - }, - "1867879040": { - "name": "class SpawnItem*", - "bases": [ - "PropertyClass" - ], - "hash": 1867879040, - "properties": { - "m_percentChance": { - "type": "unsigned char", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1023261955 - }, - "m_objectInfo": { - "type": "class SpawnObjectInfo*", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1481415047 - } - } - }, - "279389523": { - "name": "class SpellSubEffectMetadata", - "bases": [ - "PropertyClass" - ], - "hash": 279389523, - "properties": { - "m_effectIndex": { - "type": "int", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 350070655 - }, - "m_chosenSubEffect": { - "type": "int", - "id": 1, - "offset": 76, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1555389905 - } - } - }, - "688676025": { - "name": "class ConicalSoundBehavior", - "bases": [ - "PositionalSoundBehavior", - "SoundBehavior", - "AreaBehavior", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 688676025, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_radius": { - "type": "float", - "id": 1, - "offset": 116, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 989410271 - }, - "m_category": { - "type": "enum AudioCategory", - "id": 2, - "offset": 124, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2951251982, - "enum_options": { - "AudioCategory_Irrelevent": 0, - "AudioCategory_Accoustic": 1, - "AudioCategory_Noise": 2, - "AudioCategory_Music": 3 - } - }, - "m_exclusive": { - "type": "bool", - "id": 3, - "offset": 128, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 824383403 - }, - "m_playList": { - "type": "class PlayList", - "id": 4, - "offset": 176, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2061221957 - }, - "m_volume": { - "type": "float", - "id": 5, - "offset": 304, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1162855023 - }, - "m_loopCount": { - "type": "int", - "id": 6, - "offset": 308, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 865634717 - }, - "m_minimumFalloff": { - "type": "float", - "id": 7, - "offset": 328, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 355697197 - }, - "m_maximumFalloff": { - "type": "float", - "id": 8, - "offset": 332, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2210192367 - }, - "m_animDriven": { - "type": "bool", - "id": 9, - "offset": 392, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 398394720 - }, - "m_inverted": { - "type": "bool", - "id": 10, - "offset": 397, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1034821044 - }, - "m_fInsideAngle": { - "type": "float", - "id": 11, - "offset": 528, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1114383840 - }, - "m_fOutsideAngle": { - "type": "float", - "id": 12, - "offset": 532, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1627152289 - }, - "m_fOutsideVolume": { - "type": "float", - "id": 13, - "offset": 536, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 90369618 - }, - "m_fRangeScale": { - "type": "float", - "id": 14, - "offset": 540, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1749294034 - }, - "m_fAttenuationFactor": { - "type": "float", - "id": 15, - "offset": 544, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 273292776 - }, - "m_eAttenuationType": { - "type": "enum PositionInfoAttenuationType", - "id": 16, - "offset": 548, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2427193304, - "enum_options": { - "Standard": 0, - "Unit Range Power": 1 - } - } - } - }, - "688675985": { - "name": "class ConicalSoundBehavior*", - "bases": [ - "PositionalSoundBehavior", - "SoundBehavior", - "AreaBehavior", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 688675985, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_radius": { - "type": "float", - "id": 1, - "offset": 116, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 989410271 - }, - "m_category": { - "type": "enum AudioCategory", - "id": 2, - "offset": 124, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2951251982, - "enum_options": { - "AudioCategory_Irrelevent": 0, - "AudioCategory_Accoustic": 1, - "AudioCategory_Noise": 2, - "AudioCategory_Music": 3 - } - }, - "m_exclusive": { - "type": "bool", - "id": 3, - "offset": 128, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 824383403 - }, - "m_playList": { - "type": "class PlayList", - "id": 4, - "offset": 176, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2061221957 - }, - "m_volume": { - "type": "float", - "id": 5, - "offset": 304, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1162855023 - }, - "m_loopCount": { - "type": "int", - "id": 6, - "offset": 308, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 865634717 - }, - "m_minimumFalloff": { - "type": "float", - "id": 7, - "offset": 328, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 355697197 - }, - "m_maximumFalloff": { - "type": "float", - "id": 8, - "offset": 332, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2210192367 - }, - "m_animDriven": { - "type": "bool", - "id": 9, - "offset": 392, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 398394720 - }, - "m_inverted": { - "type": "bool", - "id": 10, - "offset": 397, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1034821044 - }, - "m_fInsideAngle": { - "type": "float", - "id": 11, - "offset": 528, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1114383840 - }, - "m_fOutsideAngle": { - "type": "float", - "id": 12, - "offset": 532, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1627152289 - }, - "m_fOutsideVolume": { - "type": "float", - "id": 13, - "offset": 536, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 90369618 - }, - "m_fRangeScale": { - "type": "float", - "id": 14, - "offset": 540, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1749294034 - }, - "m_fAttenuationFactor": { - "type": "float", - "id": 15, - "offset": 544, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 273292776 - }, - "m_eAttenuationType": { - "type": "enum PositionInfoAttenuationType", - "id": 16, - "offset": 548, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2427193304, - "enum_options": { - "Standard": 0, - "Unit Range Power": 1 - } - } - } - }, - "1474399785": { - "name": "class PublicSocketJewelPair*", - "bases": [ - "PropertyClass" - ], - "hash": 1474399785, - "properties": { - "m_socketNumber": { - "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 772707167 - }, - "m_jewelTemplateID": { - "type": "unsigned int", - "id": 1, - "offset": 76, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 396940685 - } - } - }, - "1473859310": { - "name": "class ShadowCreatureLevelTransitionCinematicAction*", - "bases": [ - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 1473859310, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - } - } - }, - "1868343404": { - "name": "enum PremiumContentOption::ContentType", - "bases": [], - "hash": 1868343404, - "properties": {} - }, - "279795908": { - "name": "class PlayerStatueBehavior*", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 279795908, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_visualBlobs": { - "type": "std::string", - "id": 1, - "offset": 176, - "flags": 31, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 3602657281 - } - } - }, - "1468376456": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1468376456, - "properties": { - "m_sets": { - "type": "class AnimationSet*", - "id": 0, - "offset": 80, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": true, - "pointer": true, - "hash": 809977903 - } - } - }, - "279475904": { - "name": "class SharedPointer", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 279475904, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_showTo": { - "type": "gid", - "id": 1, - "offset": 112, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 947039004 - }, - "m_hideFrom": { - "type": "gid", - "id": 2, - "offset": 128, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 642644390 - }, - "m_visible": { - "type": "bool", - "id": 3, - "offset": 144, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 810536225 - } - } - }, - "688811617": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 688811617, - "properties": { - "m_unitType": { - "type": "unsigned char", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1498103218 - }, - "m_cardUsed": { - "type": "unsigned int", - "id": 1, - "offset": 76, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1315653400 - }, - "m_movementTurnTime": { - "type": "unsigned char", - "id": 2, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1100876371 - }, - "m_blueTeamScore": { - "type": "unsigned int", - "id": 3, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1519259416 - }, - "m_orangeTeamScore": { - "type": "unsigned int", - "id": 4, - "offset": 108, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 988508012 - }, - "m_redTeamScore": { - "type": "unsigned int", - "id": 5, - "offset": 112, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1672048811 - }, - "m_unitMovementList": { - "type": "unsigned int", - "id": 6, - "offset": 88, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 687999892 - } - } - }, - "1466823457": { - "name": "class SharedPointer", - "bases": [ - "ServiceOptionBase", - "PropertyClass" - ], - "hash": 1466823457, - "properties": { - "m_serviceName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2206028813 - }, - "m_iconKey": { - "type": "std::string", - "id": 1, - "offset": 168, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2457138637 - }, - "m_displayKey": { - "type": "std::string", - "id": 2, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3023276954 - }, - "m_serviceIndex": { - "type": "unsigned int", - "id": 3, - "offset": 204, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2103126710 - }, - "m_forceInteract": { - "type": "bool", - "id": 4, - "offset": 200, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1705789564 - } - } - }, - "1466457591": { - "name": "class TeamUpWindow", - "bases": [ - "Window", - "PropertyClass" - ], - "hash": 1466457591, - "properties": { - "m_sName": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306437263 - }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621225959 - }, - "m_Style": { - "type": "unsigned int", - "id": 2, - "offset": 152, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "SCALE_CHILDREN": 2, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "FOCUS_LOCKED": 64, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152 - } - }, - "m_Flags": { - "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } - }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3105139380 - }, - "m_fTargetAlpha": { - "type": "float", - "id": 5, - "offset": 212, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1809129834 - }, - "m_fDisabledAlpha": { - "type": "float", - "id": 6, - "offset": 216, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1389987675 - }, - "m_fAlpha": { - "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 482130755 - }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3623628394 - }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2102211316 - }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1846695875 - }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3389835433 - }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2547159940 - }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2587533771 - }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3091503757 - } - } - }, - "1868604343": { - "name": "class WinAnimMoveToLocationSpeedEase*", - "bases": [ - "WinAnimMoveToLocationSpeed", - "WinAnimMoveToLocation", - "WindowAnimation", - "PropertyClass" - ], - "hash": 1868604343, - "properties": { - "m_bUseDeepCopy": { - "type": "bool", - "id": 0, - "offset": 72, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 433380635 - }, - "m_targetLocation": { - "type": "class Vector3D", - "id": 1, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2653859938 - }, - "m_fSpeed": { - "type": "float", - "id": 2, - "offset": 96, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 503609006 - }, - "m_fEaseInPercent": { - "type": "float", - "id": 3, - "offset": 112, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1482967843 - }, - "m_fEaseOutPercent": { - "type": "float", - "id": 4, - "offset": 116, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1272154212 - }, - "m_fTotalDistance": { - "type": "float", - "id": 5, - "offset": 120, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1894338732 - } - } - }, - "1466151750": { - "name": "class TimedItemBehaviorTemplate", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 1466151750, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - }, - "m_expireTime": { - "type": "std::string", - "id": 1, - "offset": 128, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3122602039 - }, - "m_timerType": { - "type": "enum TimerType", - "id": 2, - "offset": 120, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 571744132, - "enum_options": { - "TimerType_Game": 0, - "TimerType_Calendar": 1 - } - } - } - }, - "690385098": { - "name": "class CastleGamesBehavior", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 690385098, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - } - } - }, - "280870482": { - "name": "class WindowBubble*", - "bases": [ - "PropertyClass" - ], - "hash": 280870482, - "properties": { - "m_sFilename": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2431512111 - }, - "m_Flags": { - "type": "unsigned int", - "id": 1, - "offset": 104, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 967851578, - "enum_options": { - "DOCK_BL_OF_BUBBLE": 1, - "DOCK_BR_OF_BUBBLE": 2, - "DOCK_TL_OF_BUBBLE": 4, - "DOCK_TR_OF_BUBBLE": 8 - } - }, - "m_DockToPoint": { - "type": "class Point", - "id": 2, - "offset": 144, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2353513904 - } - } - }, - "689479348": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 689479348, - "properties": { - "m_jewelSocketUnlockList": { - "type": "class JewelSocketUnlockCost", - "id": 0, - "offset": 72, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2753944903 - } - } - }, - "1872099286": { - "name": "class SharedPointer", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 1872099286, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - }, - "m_range": { - "type": "float", - "id": 1, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 898449636 - }, - "m_playerCount": { - "type": "int", - "id": 2, - "offset": 124, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 732802992 - }, - "m_zoneList": { - "type": "std::string", - "id": 3, - "offset": 128, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2171104787 - }, - "m_zoneTeleportLocation": { - "type": "std::string", - "id": 4, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3345769311 - }, - "m_enabledSeconds": { - "type": "int", - "id": 5, - "offset": 184, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2014197012 - } - } - }, - "689455393": { - "name": "enum SpellEffect::kHangingDisposition", - "bases": [], - "hash": 689455393, - "properties": {} - }, - "1466552208": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1466552208, - "properties": { - "m_animationName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3393414044 - }, - "m_soundFileName": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3058120805 - }, - "m_introSoundFileName": { - "type": "std::string", - "id": 2, - "offset": 136, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2449081745 - }, - "m_endSoundFileName": { - "type": "std::string", - "id": 3, - "offset": 168, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2326794300 - }, - "m_loop": { - "type": "bool", - "id": 4, - "offset": 200, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 222084781 - }, - "m_innerRadius": { - "type": "float", - "id": 5, - "offset": 204, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 686816091 - }, - "m_outerRadius": { - "type": "float", - "id": 6, - "offset": 208, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 542169294 - }, - "m_volume": { - "type": "float", - "id": 7, - "offset": 212, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1162855023 - }, - "m_introFadeInTime": { - "type": "float", - "id": 8, - "offset": 216, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 677198649 - }, - "m_introFadeOutTime": { - "type": "float", - "id": 9, - "offset": 220, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1748430618 - }, - "m_endFadeInTime": { - "type": "float", - "id": 10, - "offset": 224, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 717770180 - }, - "m_endFadeOutTime": { - "type": "float", - "id": 11, - "offset": 228, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 939807493 - } - } - }, - "1870791979": { - "name": "class SharedPointer", - "bases": [ - "AttachParticleActorCinematicAction", - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 1870791979, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - }, - "m_effectName": { - "type": "std::string", - "id": 2, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2029161513 - }, - "m_nodeName": { - "type": "std::string", - "id": 3, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3607089954 - }, - "m_assetName": { - "type": "std::string", - "id": 4, - "offset": 184, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513131580 - } - } - }, - "689400945": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 689400945, - "properties": { - "m_polymorphTemplateID": { - "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1026295488 - }, - "m_personalRating": { - "type": "int", - "id": 1, - "offset": 76, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 209790915 - }, - "m_eventRating": { - "type": "int", - "id": 2, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2120160417 - } - } - }, - "1868832469": { - "name": "class SetTopTeamCinematicAction", - "bases": [ - "CinematicAction", - "PropertyClass" - ], - "hash": 1868832469, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_interpDuration": { - "type": "float", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237711951 - } - } - }, - "281487953": { - "name": "class SharedPointer", - "bases": [ - "ElixirBehaviorTemplate", - "TimedItemBehaviorTemplate", - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 281487953, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - }, - "m_expireTime": { - "type": "std::string", - "id": 1, - "offset": 128, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3122602039 - }, - "m_timerType": { - "type": "enum TimerType", - "id": 2, - "offset": 120, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 571744132, - "enum_options": { - "TimerType_Game": 0, - "TimerType_Calendar": 1 - } - }, - "m_typeList": { - "type": "std::string", - "id": 3, - "offset": 160, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2119049625 - }, - "m_equipParticle": { - "type": "std::string", - "id": 4, - "offset": 176, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2222557491 - }, - "m_unequipParticle": { - "type": "std::string", - "id": 5, - "offset": 208, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2215431638 - }, - "m_equipSound": { - "type": "std::string", - "id": 6, - "offset": 240, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2720016552 - }, - "m_unequipSound": { - "type": "std::string", - "id": 7, - "offset": 272, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1552545835 - }, - "m_equipActionList": { - "type": "class SharedPointer", - "id": 8, - "offset": 304, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1314016250 - }, - "m_unequipActionList": { - "type": "class SharedPointer", - "id": 9, - "offset": 320, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2143896925 - }, - "m_combatEnabled": { - "type": "bool", - "id": 10, - "offset": 336, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1399744148 - }, - "m_PvPEnabled": { - "type": "bool", - "id": 11, - "offset": 337, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1042852532 - }, - "m_classProjectName": { - "type": "std::string", - "id": 12, - "offset": 352, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1714146665 - } - } - }, - "1466778785": { - "name": "class HouseTransferResultList", - "bases": [ - "PropertyClass" - ], - "hash": 1466778785, - "properties": { - "m_houseTransferResultList": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1794426680 - }, - "m_characterGID": { - "type": "gid", - "id": 1, - "offset": 88, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 501688601 - } - } - }, - "281429684": { - "name": "class LevelScaledInfo", - "bases": [ - "PropertyClass" - ], - "hash": 281429684, - "properties": { - "m_school": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2438566051 - }, - "m_level": { - "type": "int", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 801285362 - }, - "m_canonicalMaxHealth": { - "type": "float", - "id": 2, - "offset": 108, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2081916187 - }, - "m_canonicalMaxMana": { - "type": "float", - "id": 3, - "offset": 112, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1703399938 - }, - "m_canonicalFireAccuracy": { - "type": "float", - "id": 4, - "offset": 116, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 663526928 - }, - "m_canonicalIceAccuracy": { - "type": "float", - "id": 5, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1136218459 - }, - "m_canonicalStormAccuracy": { - "type": "float", - "id": 6, - "offset": 124, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 781009151 - }, - "m_canonicalMythAccuracy": { - "type": "float", - "id": 7, - "offset": 128, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 965342476 - }, - "m_canonicalLifeAccuracy": { - "type": "float", - "id": 8, - "offset": 132, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 482476234 - }, - "m_canonicalDeathAccuracy": { - "type": "float", - "id": 9, - "offset": 136, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 541998448 - }, - "m_canonicalBalanceAccuracy": { - "type": "float", - "id": 10, - "offset": 140, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1202638384 - }, - "m_canonicalStarAccuracy": { - "type": "float", - "id": 11, - "offset": 144, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2223128484 - }, - "m_canonicalSunAccuracy": { - "type": "float", - "id": 12, - "offset": 148, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1517720384 - }, - "m_canonicalMoonAccuracy": { - "type": "float", - "id": 13, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 715174115 - }, - "m_canonicalShadowAccuracy": { - "type": "float", - "id": 14, - "offset": 156, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 855808400 - }, - "m_canonicalFireArmorPiercing": { - "type": "float", - "id": 15, - "offset": 160, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1576771575 - }, - "m_canonicalIceArmorPiercing": { - "type": "float", - "id": 16, - "offset": 164, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 805509666 - }, - "m_canonicalStormArmorPiercing": { - "type": "float", - "id": 17, - "offset": 168, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1446146118 - }, - "m_canonicalMythArmorPiercing": { - "type": "float", - "id": 18, - "offset": 172, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 496153715 - }, - "m_canonicalLifeArmorPiercing": { - "type": "float", - "id": 19, - "offset": 176, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 666748657 - }, - "m_canonicalDeathArmorPiercing": { - "type": "float", - "id": 20, - "offset": 180, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 998759255 - }, - "m_canonicalBalanceArmorPiercing": { - "type": "float", - "id": 21, - "offset": 184, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 631301143 - }, - "m_canonicalStarArmorPiercing": { - "type": "float", - "id": 22, - "offset": 188, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2212060683 - }, - "m_canonicalSunArmorPiercing": { - "type": "float", - "id": 23, - "offset": 192, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 979260199 - }, - "m_canonicalMoonArmorPiercing": { - "type": "float", - "id": 24, - "offset": 196, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1453026986 - }, - "m_canonicalShadowArmorPiercing": { - "type": "float", - "id": 25, - "offset": 200, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2214251383 - }, - "m_canonicalFireDamage": { - "type": "float", - "id": 26, - "offset": 204, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1010754436 - }, - "m_canonicalIceDamage": { - "type": "float", - "id": 27, - "offset": 208, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1115703311 - }, - "m_canonicalStormDamage": { - "type": "float", - "id": 28, - "offset": 212, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 999030451 - }, - "m_canonicalMythDamage": { - "type": "float", - "id": 29, - "offset": 216, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1606568832 - }, - "m_canonicalLifeDamage": { - "type": "float", - "id": 30, - "offset": 220, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1097355198 - }, - "m_canonicalDeathDamage": { - "type": "float", - "id": 31, - "offset": 224, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 659630820 - }, - "m_canonicalBalanceDamage": { - "type": "float", - "id": 32, - "offset": 228, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 399936420 - }, - "m_canonicalStarDamage": { - "type": "float", - "id": 33, - "offset": 232, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 712445976 - }, - "m_canonicalSunDamage": { - "type": "float", - "id": 34, - "offset": 236, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 550096052 - }, - "m_canonicalMoonDamage": { - "type": "float", - "id": 35, - "offset": 240, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2205820311 - }, - "m_canonicalShadowDamage": { - "type": "float", - "id": 36, - "offset": 244, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 318766852 - }, - "m_canonicalFireFlatDamage": { - "type": "float", - "id": 37, - "offset": 248, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2042009387 - }, - "m_canonicalIceFlatDamage": { - "type": "float", - "id": 38, - "offset": 252, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1407011126 - }, - "m_canonicalStormFlatDamage": { - "type": "float", - "id": 39, - "offset": 256, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1131131354 - }, - "m_canonicalMythFlatDamage": { - "type": "float", - "id": 40, - "offset": 260, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2154143015 - }, - "m_canonicalLifeFlatDamage": { - "type": "float", - "id": 41, - "offset": 264, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 298815589 - }, - "m_canonicalDeathFlatDamage": { - "type": "float", - "id": 42, - "offset": 268, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 693997195 - }, - "m_canonicalBalanceFlatDamage": { - "type": "float", - "id": 43, - "offset": 272, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 723865419 - }, - "m_canonicalStarFlatDamage": { - "type": "float", - "id": 44, - "offset": 276, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1788538303 - }, - "m_canonicalSunFlatDamage": { - "type": "float", - "id": 45, - "offset": 280, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 250779739 - }, - "m_canonicalMoonFlatDamage": { - "type": "float", - "id": 46, - "offset": 284, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 303737534 - }, - "m_canonicalShadowFlatDamage": { - "type": "float", - "id": 47, - "offset": 288, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 983134891 - }, - "m_canonicalFireReduceDamage": { - "type": "float", - "id": 48, - "offset": 292, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2033292284 - }, - "m_canonicalIceReduceDamage": { - "type": "float", - "id": 49, - "offset": 296, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2009920711 - }, - "m_canonicalStormReduceDamage": { - "type": "float", - "id": 50, - "offset": 300, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2224559723 - }, - "m_canonicalDeathReduceDamage": { - "type": "float", - "id": 51, - "offset": 304, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 779346780 - }, - "m_canonicalMythReduceDamage": { - "type": "float", - "id": 52, - "offset": 308, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1740245240 - }, - "m_canonicalLifeReduceDamage": { - "type": "float", - "id": 53, - "offset": 312, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2070791094 - }, - "m_canonicalBalanceReduceDamage": { - "type": "float", - "id": 54, - "offset": 316, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1093587996 - }, - "m_canonicalStarReduceDamage": { - "type": "float", - "id": 55, - "offset": 320, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 881188752 - }, - "m_canonicalSunReduceDamage": { - "type": "float", - "id": 56, - "offset": 324, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1299357996 - }, - "m_canonicalMoonReduceDamage": { - "type": "float", - "id": 57, - "offset": 328, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 988338255 - }, - "m_canonicalShadowReduceDamage": { - "type": "float", - "id": 58, - "offset": 332, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2117685116 - }, - "m_canonicalFireFlatReduceDamage": { - "type": "float", - "id": 59, - "offset": 336, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1671506147 - }, - "m_canonicalIceFlatReduceDamage": { - "type": "float", - "id": 60, - "offset": 340, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 256243502 - }, - "m_canonicalStormFlatReduceDamage": { - "type": "float", - "id": 61, - "offset": 344, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1783712466 - }, - "m_canonicalDeathFlatReduceDamage": { - "type": "float", - "id": 62, - "offset": 348, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 104605763 - }, - "m_canonicalMythFlatReduceDamage": { - "type": "float", - "id": 63, - "offset": 352, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 454278111 - }, - "m_canonicalLifeFlatReduceDamage": { - "type": "float", - "id": 64, - "offset": 356, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2206377373 - }, - "m_canonicalBalanceFlatReduceDamage": { - "type": "float", - "id": 65, - "offset": 360, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1786870019 - }, - "m_canonicalStarFlatReduceDamage": { - "type": "float", - "id": 66, - "offset": 364, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2157518455 - }, - "m_canonicalSunFlatReduceDamage": { - "type": "float", - "id": 67, - "offset": 368, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1594183187 - }, - "m_canonicalMoonFlatReduceDamage": { - "type": "float", - "id": 68, - "offset": 372, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2100846262 - }, - "m_canonicalShadowFlatReduceDamage": { - "type": "float", - "id": 69, - "offset": 376, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1427809379 - }, - "m_canonicalPowerPip": { - "type": "float", - "id": 70, - "offset": 380, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1680220789 - }, - "m_canonicalShadowPipRating": { - "type": "float", - "id": 71, - "offset": 384, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1507596819 - }, - "m_canonicalIncHealing": { - "type": "float", - "id": 72, - "offset": 388, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1267876913 - }, - "m_canonicalLifeHealing": { - "type": "float", - "id": 73, - "offset": 392, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2124812407 - }, - "m_canonicalFireCriticalHit": { - "type": "float", - "id": 74, - "offset": 396, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1415646005 - }, - "m_canonicalIceCriticalHit": { - "type": "float", - "id": 75, - "offset": 400, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1935539872 - }, - "m_canonicalStormCriticalHit": { - "type": "float", - "id": 76, - "offset": 404, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1421441988 - }, - "m_canonicalMythCriticalHit": { - "type": "float", - "id": 77, - "offset": 408, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 821088433 - }, - "m_canonicalLifeCriticalHit": { - "type": "float", - "id": 78, - "offset": 412, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1872309167 - }, - "m_canonicalDeathCriticalHit": { - "type": "float", - "id": 79, - "offset": 416, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2028400277 - }, - "m_canonicalBalanceCriticalHit": { - "type": "float", - "id": 80, - "offset": 420, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 866568021 - }, - "m_canonicalStarCriticalHit": { - "type": "float", - "id": 81, - "offset": 424, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1641034825 - }, - "m_canonicalSunCriticalHit": { - "type": "float", - "id": 82, - "offset": 428, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 287126117 - }, - "m_canonicalMoonCriticalHit": { - "type": "float", - "id": 83, - "offset": 432, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2034733352 - }, - "m_canonicalShadowCriticalHit": { - "type": "float", - "id": 84, - "offset": 436, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 832526005 - }, - "m_canonicalFireBlock": { - "type": "float", - "id": 85, - "offset": 440, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 571735024 - }, - "m_canonicalIceBlock": { - "type": "float", - "id": 86, - "offset": 444, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 639990555 - }, - "m_canonicalStormBlock": { - "type": "float", - "id": 87, - "offset": 448, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1937960255 - }, - "m_canonicalMythBlock": { - "type": "float", - "id": 88, - "offset": 452, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 915166316 - }, - "m_canonicalLifeBlock": { - "type": "float", - "id": 89, - "offset": 456, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1094961386 - }, - "m_canonicalDeathBlock": { - "type": "float", - "id": 90, - "offset": 460, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 105568080 - }, - "m_canonicalBalanceBlock": { - "type": "float", - "id": 91, - "offset": 464, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1464279056 - }, - "m_canonicalStarBlock": { - "type": "float", - "id": 92, - "offset": 468, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 888071684 - }, - "m_canonicalSunBlock": { - "type": "float", - "id": 93, - "offset": 472, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1598979872 - }, - "m_canonicalMoonBlock": { - "type": "float", - "id": 94, - "offset": 476, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 152422307 - }, - "m_canonicalShadowBlock": { - "type": "float", - "id": 95, - "offset": 480, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1331668848 - }, - "m_canonicalFirePipConversion": { - "type": "float", - "id": 96, - "offset": 484, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1698926484 - }, - "m_canonicalIcePipConversion": { - "type": "float", - "id": 97, - "offset": 488, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 927664575 - }, - "m_canonicalStormPipConversion": { - "type": "float", - "id": 98, - "offset": 492, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1568301027 - }, - "m_canonicalMythPipConversion": { - "type": "float", - "id": 99, - "offset": 496, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 618308624 - }, - "m_canonicalLifePipConversion": { - "type": "float", - "id": 100, - "offset": 500, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 788903566 - }, - "m_canonicalDeathPipConversion": { - "type": "float", - "id": 101, - "offset": 504, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1120914164 - }, - "m_canonicalBalancePipConversion": { - "type": "float", - "id": 102, - "offset": 508, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 753456052 - }, - "m_canonicalStarPipConversion": { - "type": "float", - "id": 103, - "offset": 512, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 186731944 - }, - "m_canonicalSunPipConversion": { - "type": "float", - "id": 104, - "offset": 516, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1101415108 - }, - "m_canonicalMoonPipConversion": { - "type": "float", - "id": 105, - "offset": 520, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1575181895 - }, - "m_canonicalShadowPipConversion": { - "type": "float", - "id": 106, - "offset": 524, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 188922644 - }, - "m_canonicalAllArchmastery": { - "type": "float", - "id": 107, - "offset": 528, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 304759835 - }, - "m_maximumPips": { - "type": "int", - "id": 108, - "offset": 532, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 334257940 - }, - "m_maximumPowerPips": { - "type": "int", - "id": 109, - "offset": 536, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 952865025 - } - } - }, - "281082164": { - "name": "class InteractiveMusicBehaviorBase", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 281082164, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - } - } - }, - "1870924052": { - "name": "class DynaModShowObject", - "bases": [ - "DynaMod", - "PropertyClass" - ], - "hash": 1870924052, - "properties": { - "m_clientTag": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3409856790 - }, - "m_zoneName": { - "type": "std::string", - "id": 1, - "offset": 112, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2171167736 - }, - "m_zoneInstance": { - "type": "gid", - "id": 2, - "offset": 152, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 449538121 - }, - "m_originator": { - "type": "gid", - "id": 3, - "offset": 72, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 709051254 - }, - "m_index": { - "type": "int", - "id": 4, - "offset": 160, - "flags": 30, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 798031442 - }, - "m_zoneID": { - "type": "unsigned int", - "id": 5, - "offset": 144, - "flags": 16, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1440651126 - } - } - }, - "689761825": { - "name": "class RenderBehaviorTemplate*", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 689761825, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - }, - "m_assetName": { - "type": "std::string", - "id": 1, - "offset": 120, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513131580 - }, - "m_proxyName": { - "type": "std::string", - "id": 2, - "offset": 152, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3120358366 - }, - "m_height": { - "type": "float", - "id": 3, - "offset": 184, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 602977104 - }, - "m_bStaticObject": { - "type": "bool", - "id": 4, - "offset": 188, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 108091444 - }, - "m_bCastsShadow": { - "type": "bool", - "id": 5, - "offset": 189, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 652868121 - }, - "m_bFadesIn": { - "type": "bool", - "id": 6, - "offset": 190, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 263337711, - "enum_options": { - "__DEFAULT": 1 - } - }, - "m_opacity": { - "type": "float", - "id": 7, - "offset": 192, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 700308464, - "enum_options": { - "__DEFAULT": 1 - } - }, - "m_bFadesOut": { - "type": "bool", - "id": 8, - "offset": 196, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 17988464, - "enum_options": { - "__DEFAULT": 1 - } - }, - "m_bPortalExcluded": { - "type": "bool", - "id": 9, - "offset": 197, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 239086293 - }, - "m_scale": { - "type": "float", - "id": 10, - "offset": 200, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 899693439, - "enum_options": { - "__DEFAULT": 1 - } - }, - "m_bCanBeHiddenByCamera": { - "type": "bool", - "id": 11, - "offset": 204, - "flags": 263, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 185252414 - }, - "m_nLightType": { - "type": "enum RenderBehaviorTemplate::LightingType", - "id": 12, - "offset": 208, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2027385184, - "enum_options": { - "None": 0, - "Char": 1, - "Env": 2 - } - }, - "m_shadowAssetName": { - "type": "std::string", - "id": 13, - "offset": 216, - "flags": 131335, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1844059970 - }, - "m_enableReqs": { - "type": "class SharedPointer", - "id": 14, - "offset": 248, - "flags": 263, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3158020443 - } - } - }, - "1467565217": { - "name": "class HouseTransferResultList*", - "bases": [ - "PropertyClass" - ], - "hash": 1467565217, - "properties": { - "m_houseTransferResultList": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1794426680 - }, - "m_characterGID": { - "type": "gid", - "id": 1, - "offset": 88, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 501688601 - } - } - }, - "1467697818": { - "name": "class SoundEmitterInfo*", - "bases": [ - "SoundInfo", - "ClientObjectInfo", - "CoreObjectInfo", - "PropertyClass" - ], - "hash": 1467697818, - "properties": { - "m_templateID.m_full": { - "type": "unsigned __int64", - "id": 0, - "offset": 72, - "flags": 33554439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 633907631 - }, - "m_nObjectID": { - "type": "unsigned int", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 748496927 - }, - "m_location": { - "type": "class Vector3D", - "id": 2, - "offset": 84, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2239683611 - }, - "m_orientation": { - "type": "class Vector3D", - "id": 3, - "offset": 96, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2344058766 - }, - "m_fScale": { - "type": "float", - "id": 4, - "offset": 108, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 503137701 - }, - "m_zoneTag": { - "type": "std::string", - "id": 5, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3405382643 - }, - "m_startState": { - "type": "std::string", - "id": 6, - "offset": 184, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2166880458 - }, - "m_overrideName": { - "type": "std::string", - "id": 7, - "offset": 120, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1990707228 - }, - "m_globalDynamic": { - "type": "bool", - "id": 8, - "offset": 116, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1951691017 - }, - "m_bUndetectable": { - "type": "bool", - "id": 9, - "offset": 216, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1907454341 - }, - "m_spawnRequirements": { - "type": "class SharedPointer", - "id": 10, - "offset": 224, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2309120870 - }, - "m_loadingType": { - "type": "enum CoreObjectInfo::LoadingType", - "id": 11, - "offset": 112, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3522422550, - "enum_options": { - "STATIC_CLIENT_SERVER": 0, - "STATIC_CLIENT": 1, - "STATIC_SERVER": 2, - "DYNAMIC_SERVER": 3 - } - }, - "m_radius": { - "type": "float", - "id": 12, - "offset": 256, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 989410271 - }, - "m_exclusive": { - "type": "bool", - "id": 13, - "offset": 260, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 824383403 - }, - "m_startActive": { - "type": "bool", - "id": 14, - "offset": 261, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2031339229 - }, - "m_category": { - "type": "enum AudioCategory", - "id": 15, - "offset": 264, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2951251982, - "enum_options": { - "AudioCategory_Irrelevent": 0, - "AudioCategory_Accoustic": 1, - "AudioCategory_Noise": 2, - "AudioCategory_Music": 3 - } - }, - "m_override": { - "type": "int", - "id": 16, - "offset": 268, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 136872410, - "enum_options": { - "OVR_RADIUS": 1, - "OVR_CATEGORY": 2, - "OVR_EXCLUSIVE": 4, - "OVR_SIGNATURE": 64, - "OVR_VOLUME": 8, - "OVR_LOOPCOUNT": 16, - "OVR_ACTIVE": 32, - "OVR_PLAYPROG": 128, - "OVR_PRIORITY": 256, - "OVR_PROGTIME": 512, - "OVR_FILTERSET": 1024 - } - }, - "m_enableReqs": { - "type": "class SharedPointer", - "id": 17, - "offset": 272, - "flags": 263, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3158020443 - }, - "m_volume": { - "type": "float", - "id": 18, - "offset": 288, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1162855023 - }, - "m_loopCount": { - "type": "int", - "id": 19, - "offset": 292, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 865634717 - }, - "m_trackFilenameList": { - "type": "std::string", - "id": 20, - "offset": 312, - "flags": 131079, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2531081709 - }, - "m_playList": { - "type": "class PlayListEntry*", - "id": 21, - "offset": 336, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 3907873161 - }, - "m_priority": { - "type": "int", - "id": 22, - "offset": 296, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1235205852 - }, - "m_progression": { - "type": "enum PlayList::Progression", - "id": 23, - "offset": 300, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3279400238, - "enum_options": { - "Sequence": 0, - "Random": 1, - "SequenceOnceOnly": 2, - "RandomNoRepeat": 3 - } - }, - "m_progressMin": { - "type": "float", - "id": 24, - "offset": 304, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1497550192 - }, - "m_progressMax": { - "type": "float", - "id": 25, - "offset": 308, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1497549938 - }, - "m_audioFilterSet": { - "type": "unsigned int", - "id": 26, - "offset": 360, - "flags": 33554439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 831339825 - }, - "m_clientTag": { - "type": "std::string", - "id": 27, - "offset": 368, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3409856790 - } - } - }, - "1870910030": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1870910030, - "properties": { - "m_category": { - "type": "enum ExpansionData::Category", - "id": 0, - "offset": 72, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2705349254, - "enum_options": { - "EDC_Bank": 0, - "EDC_FriendsList": 1 - } - }, - "m_maxExpansions": { - "type": "int", - "id": 1, - "offset": 76, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 944258472 - }, - "m_expansionSize": { - "type": "int", - "id": 2, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 186190666 - } - } - }, - "281261287": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 281261287, - "properties": { - "m_forcedState": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2861191727 - }, - "m_category": { - "type": "std::string", - "id": 1, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2682050233 - }, - "m_fromState": { - "type": "std::string", - "id": 2, - "offset": 112, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2430398224 - } - } - }, - "689720865": { - "name": "class RenderBehaviorTemplate", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 689720865, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - }, - "m_assetName": { - "type": "std::string", - "id": 1, - "offset": 120, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513131580 - }, - "m_proxyName": { - "type": "std::string", - "id": 2, - "offset": 152, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3120358366 - }, - "m_height": { - "type": "float", - "id": 3, - "offset": 184, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 602977104 - }, - "m_bStaticObject": { - "type": "bool", - "id": 4, - "offset": 188, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 108091444 - }, - "m_bCastsShadow": { - "type": "bool", - "id": 5, - "offset": 189, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 652868121 - }, - "m_bFadesIn": { - "type": "bool", - "id": 6, - "offset": 190, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 263337711, - "enum_options": { - "__DEFAULT": 1 - } - }, - "m_opacity": { - "type": "float", - "id": 7, - "offset": 192, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 700308464, - "enum_options": { - "__DEFAULT": 1 - } - }, - "m_bFadesOut": { - "type": "bool", - "id": 8, - "offset": 196, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 17988464, - "enum_options": { - "__DEFAULT": 1 - } - }, - "m_bPortalExcluded": { - "type": "bool", - "id": 9, - "offset": 197, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 239086293 - }, - "m_scale": { - "type": "float", - "id": 10, - "offset": 200, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 899693439, - "enum_options": { - "__DEFAULT": 1 - } - }, - "m_bCanBeHiddenByCamera": { - "type": "bool", - "id": 11, - "offset": 204, - "flags": 263, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 185252414 - }, - "m_nLightType": { - "type": "enum RenderBehaviorTemplate::LightingType", - "id": 12, - "offset": 208, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2027385184, - "enum_options": { - "None": 0, - "Char": 1, - "Env": 2 - } - }, - "m_shadowAssetName": { - "type": "std::string", - "id": 13, - "offset": 216, - "flags": 131335, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1844059970 - }, - "m_enableReqs": { - "type": "class SharedPointer", - "id": 14, - "offset": 248, - "flags": 263, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3158020443 - } - } - }, - "1467147783": { - "name": "class SharedPointer", - "bases": [ - "InfractionPenalty", - "PropertyClass" - ], - "hash": 1467147783, - "properties": { - "m_internalID": { - "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1854540375 - }, - "m_categoryID": { - "type": "unsigned int", - "id": 1, - "offset": 76, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1382795736 - }, - "m_removeAtPointValue": { - "type": "float", - "id": 2, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2112196961 - }, - "m_expireTime": { - "type": "unsigned int", - "id": 3, - "offset": 84, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1836304873 - }, - "m_titleKey": { - "type": "std::string", - "id": 4, - "offset": 88, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3096106918 - }, - "m_messageKey": { - "type": "std::string", - "id": 5, - "offset": 120, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3561518217 - } - } - }, - "1870920800": { - "name": "class PetStatBlockControl*", - "bases": [ - "Window", - "PropertyClass" - ], - "hash": 1870920800, - "properties": { - "m_sName": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306437263 - }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 65667, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621225959 - }, - "m_Style": { - "type": "unsigned int", - "id": 2, - "offset": 152, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "SCALE_CHILDREN": 2, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "FOCUS_LOCKED": 64, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152 - } - }, - "m_Flags": { - "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } - }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3105139380 - }, - "m_fTargetAlpha": { - "type": "float", - "id": 5, - "offset": 212, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1809129834 - }, - "m_fDisabledAlpha": { - "type": "float", - "id": 6, - "offset": 216, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1389987675 - }, - "m_fAlpha": { - "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 482130755 - }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3623628394 - }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2102211316 - }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1846695875 - }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3389835433 - }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2547159940 - }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2587533771 - }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3091503757 - } - } - }, - "281432756": { - "name": "class LevelScaledInfo*", - "bases": [ - "PropertyClass" - ], - "hash": 281432756, - "properties": { - "m_school": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2438566051 - }, - "m_level": { - "type": "int", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 801285362 - }, - "m_canonicalMaxHealth": { - "type": "float", - "id": 2, - "offset": 108, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2081916187 - }, - "m_canonicalMaxMana": { - "type": "float", - "id": 3, - "offset": 112, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1703399938 - }, - "m_canonicalFireAccuracy": { - "type": "float", - "id": 4, - "offset": 116, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 663526928 - }, - "m_canonicalIceAccuracy": { - "type": "float", - "id": 5, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1136218459 - }, - "m_canonicalStormAccuracy": { - "type": "float", - "id": 6, - "offset": 124, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 781009151 - }, - "m_canonicalMythAccuracy": { - "type": "float", - "id": 7, - "offset": 128, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 965342476 - }, - "m_canonicalLifeAccuracy": { - "type": "float", - "id": 8, - "offset": 132, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 482476234 - }, - "m_canonicalDeathAccuracy": { - "type": "float", - "id": 9, - "offset": 136, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 541998448 - }, - "m_canonicalBalanceAccuracy": { - "type": "float", - "id": 10, - "offset": 140, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1202638384 - }, - "m_canonicalStarAccuracy": { - "type": "float", - "id": 11, - "offset": 144, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2223128484 - }, - "m_canonicalSunAccuracy": { - "type": "float", - "id": 12, - "offset": 148, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1517720384 - }, - "m_canonicalMoonAccuracy": { - "type": "float", - "id": 13, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 715174115 - }, - "m_canonicalShadowAccuracy": { - "type": "float", - "id": 14, - "offset": 156, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 855808400 - }, - "m_canonicalFireArmorPiercing": { - "type": "float", - "id": 15, - "offset": 160, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1576771575 - }, - "m_canonicalIceArmorPiercing": { - "type": "float", - "id": 16, - "offset": 164, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 805509666 - }, - "m_canonicalStormArmorPiercing": { - "type": "float", - "id": 17, - "offset": 168, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1446146118 - }, - "m_canonicalMythArmorPiercing": { - "type": "float", - "id": 18, - "offset": 172, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 496153715 - }, - "m_canonicalLifeArmorPiercing": { - "type": "float", - "id": 19, - "offset": 176, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 666748657 - }, - "m_canonicalDeathArmorPiercing": { - "type": "float", - "id": 20, - "offset": 180, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 998759255 - }, - "m_canonicalBalanceArmorPiercing": { - "type": "float", - "id": 21, - "offset": 184, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 631301143 - }, - "m_canonicalStarArmorPiercing": { - "type": "float", - "id": 22, - "offset": 188, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2212060683 - }, - "m_canonicalSunArmorPiercing": { - "type": "float", - "id": 23, - "offset": 192, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 979260199 - }, - "m_canonicalMoonArmorPiercing": { - "type": "float", - "id": 24, - "offset": 196, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1453026986 - }, - "m_canonicalShadowArmorPiercing": { - "type": "float", - "id": 25, - "offset": 200, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2214251383 - }, - "m_canonicalFireDamage": { - "type": "float", - "id": 26, - "offset": 204, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1010754436 - }, - "m_canonicalIceDamage": { - "type": "float", - "id": 27, - "offset": 208, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1115703311 - }, - "m_canonicalStormDamage": { - "type": "float", - "id": 28, - "offset": 212, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 999030451 - }, - "m_canonicalMythDamage": { - "type": "float", - "id": 29, - "offset": 216, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1606568832 - }, - "m_canonicalLifeDamage": { - "type": "float", - "id": 30, - "offset": 220, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1097355198 - }, - "m_canonicalDeathDamage": { - "type": "float", - "id": 31, - "offset": 224, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 659630820 - }, - "m_canonicalBalanceDamage": { - "type": "float", - "id": 32, - "offset": 228, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 399936420 - }, - "m_canonicalStarDamage": { - "type": "float", - "id": 33, - "offset": 232, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 712445976 - }, - "m_canonicalSunDamage": { - "type": "float", - "id": 34, - "offset": 236, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 550096052 - }, - "m_canonicalMoonDamage": { - "type": "float", - "id": 35, - "offset": 240, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2205820311 - }, - "m_canonicalShadowDamage": { - "type": "float", - "id": 36, - "offset": 244, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 318766852 - }, - "m_canonicalFireFlatDamage": { - "type": "float", - "id": 37, - "offset": 248, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2042009387 - }, - "m_canonicalIceFlatDamage": { - "type": "float", - "id": 38, - "offset": 252, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1407011126 - }, - "m_canonicalStormFlatDamage": { - "type": "float", - "id": 39, - "offset": 256, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1131131354 - }, - "m_canonicalMythFlatDamage": { - "type": "float", - "id": 40, - "offset": 260, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2154143015 - }, - "m_canonicalLifeFlatDamage": { - "type": "float", - "id": 41, - "offset": 264, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 298815589 - }, - "m_canonicalDeathFlatDamage": { - "type": "float", - "id": 42, - "offset": 268, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 693997195 - }, - "m_canonicalBalanceFlatDamage": { - "type": "float", - "id": 43, - "offset": 272, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 723865419 - }, - "m_canonicalStarFlatDamage": { - "type": "float", - "id": 44, - "offset": 276, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1788538303 - }, - "m_canonicalSunFlatDamage": { - "type": "float", - "id": 45, - "offset": 280, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 250779739 - }, - "m_canonicalMoonFlatDamage": { - "type": "float", - "id": 46, - "offset": 284, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 303737534 - }, - "m_canonicalShadowFlatDamage": { - "type": "float", - "id": 47, - "offset": 288, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 983134891 - }, - "m_canonicalFireReduceDamage": { - "type": "float", - "id": 48, - "offset": 292, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2033292284 - }, - "m_canonicalIceReduceDamage": { - "type": "float", - "id": 49, - "offset": 296, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2009920711 - }, - "m_canonicalStormReduceDamage": { - "type": "float", - "id": 50, - "offset": 300, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2224559723 - }, - "m_canonicalDeathReduceDamage": { - "type": "float", - "id": 51, - "offset": 304, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 779346780 - }, - "m_canonicalMythReduceDamage": { - "type": "float", - "id": 52, - "offset": 308, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1740245240 - }, - "m_canonicalLifeReduceDamage": { - "type": "float", - "id": 53, - "offset": 312, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2070791094 - }, - "m_canonicalBalanceReduceDamage": { - "type": "float", - "id": 54, - "offset": 316, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1093587996 - }, - "m_canonicalStarReduceDamage": { - "type": "float", - "id": 55, - "offset": 320, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 881188752 - }, - "m_canonicalSunReduceDamage": { - "type": "float", - "id": 56, - "offset": 324, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1299357996 - }, - "m_canonicalMoonReduceDamage": { - "type": "float", - "id": 57, - "offset": 328, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 988338255 - }, - "m_canonicalShadowReduceDamage": { - "type": "float", - "id": 58, - "offset": 332, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2117685116 - }, - "m_canonicalFireFlatReduceDamage": { - "type": "float", - "id": 59, - "offset": 336, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1671506147 - }, - "m_canonicalIceFlatReduceDamage": { - "type": "float", - "id": 60, - "offset": 340, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 256243502 - }, - "m_canonicalStormFlatReduceDamage": { - "type": "float", - "id": 61, - "offset": 344, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1783712466 - }, - "m_canonicalDeathFlatReduceDamage": { - "type": "float", - "id": 62, - "offset": 348, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 104605763 - }, - "m_canonicalMythFlatReduceDamage": { - "type": "float", - "id": 63, - "offset": 352, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 454278111 - }, - "m_canonicalLifeFlatReduceDamage": { - "type": "float", - "id": 64, - "offset": 356, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2206377373 - }, - "m_canonicalBalanceFlatReduceDamage": { - "type": "float", - "id": 65, - "offset": 360, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1786870019 - }, - "m_canonicalStarFlatReduceDamage": { - "type": "float", - "id": 66, - "offset": 364, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2157518455 - }, - "m_canonicalSunFlatReduceDamage": { - "type": "float", - "id": 67, - "offset": 368, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1594183187 - }, - "m_canonicalMoonFlatReduceDamage": { - "type": "float", - "id": 68, - "offset": 372, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2100846262 - }, - "m_canonicalShadowFlatReduceDamage": { - "type": "float", - "id": 69, - "offset": 376, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1427809379 - }, - "m_canonicalPowerPip": { - "type": "float", - "id": 70, - "offset": 380, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1680220789 - }, - "m_canonicalShadowPipRating": { - "type": "float", - "id": 71, - "offset": 384, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1507596819 - }, - "m_canonicalIncHealing": { - "type": "float", - "id": 72, - "offset": 388, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1267876913 - }, - "m_canonicalLifeHealing": { - "type": "float", - "id": 73, - "offset": 392, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2124812407 - }, - "m_canonicalFireCriticalHit": { - "type": "float", - "id": 74, - "offset": 396, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1415646005 - }, - "m_canonicalIceCriticalHit": { - "type": "float", - "id": 75, - "offset": 400, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1935539872 - }, - "m_canonicalStormCriticalHit": { - "type": "float", - "id": 76, - "offset": 404, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1421441988 - }, - "m_canonicalMythCriticalHit": { - "type": "float", - "id": 77, - "offset": 408, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 821088433 - }, - "m_canonicalLifeCriticalHit": { - "type": "float", - "id": 78, - "offset": 412, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1872309167 - }, - "m_canonicalDeathCriticalHit": { - "type": "float", - "id": 79, - "offset": 416, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2028400277 - }, - "m_canonicalBalanceCriticalHit": { - "type": "float", - "id": 80, - "offset": 420, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 866568021 - }, - "m_canonicalStarCriticalHit": { - "type": "float", - "id": 81, - "offset": 424, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1641034825 - }, - "m_canonicalSunCriticalHit": { - "type": "float", - "id": 82, - "offset": 428, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 287126117 - }, - "m_canonicalMoonCriticalHit": { - "type": "float", - "id": 83, - "offset": 432, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2034733352 - }, - "m_canonicalShadowCriticalHit": { - "type": "float", - "id": 84, - "offset": 436, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 832526005 - }, - "m_canonicalFireBlock": { - "type": "float", - "id": 85, - "offset": 440, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 571735024 - }, - "m_canonicalIceBlock": { - "type": "float", - "id": 86, - "offset": 444, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 639990555 - }, - "m_canonicalStormBlock": { - "type": "float", - "id": 87, - "offset": 448, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1937960255 - }, - "m_canonicalMythBlock": { - "type": "float", - "id": 88, - "offset": 452, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 915166316 - }, - "m_canonicalLifeBlock": { - "type": "float", - "id": 89, - "offset": 456, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1094961386 - }, - "m_canonicalDeathBlock": { - "type": "float", - "id": 90, - "offset": 460, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 105568080 - }, - "m_canonicalBalanceBlock": { - "type": "float", - "id": 91, - "offset": 464, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1464279056 - }, - "m_canonicalStarBlock": { - "type": "float", - "id": 92, - "offset": 468, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 888071684 - }, - "m_canonicalSunBlock": { - "type": "float", - "id": 93, - "offset": 472, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1598979872 - }, - "m_canonicalMoonBlock": { - "type": "float", - "id": 94, - "offset": 476, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 152422307 - }, - "m_canonicalShadowBlock": { - "type": "float", - "id": 95, - "offset": 480, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1331668848 - }, - "m_canonicalFirePipConversion": { - "type": "float", - "id": 96, - "offset": 484, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1698926484 - }, - "m_canonicalIcePipConversion": { - "type": "float", - "id": 97, - "offset": 488, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 927664575 - }, - "m_canonicalStormPipConversion": { - "type": "float", - "id": 98, - "offset": 492, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1568301027 - }, - "m_canonicalMythPipConversion": { - "type": "float", - "id": 99, - "offset": 496, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 618308624 - }, - "m_canonicalLifePipConversion": { - "type": "float", - "id": 100, - "offset": 500, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 788903566 - }, - "m_canonicalDeathPipConversion": { - "type": "float", - "id": 101, - "offset": 504, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1120914164 - }, - "m_canonicalBalancePipConversion": { - "type": "float", - "id": 102, - "offset": 508, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 753456052 - }, - "m_canonicalStarPipConversion": { - "type": "float", - "id": 103, - "offset": 512, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 186731944 - }, - "m_canonicalSunPipConversion": { - "type": "float", - "id": 104, - "offset": 516, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1101415108 - }, - "m_canonicalMoonPipConversion": { - "type": "float", - "id": 105, - "offset": 520, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1575181895 - }, - "m_canonicalShadowPipConversion": { - "type": "float", - "id": 106, - "offset": 524, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 188922644 - }, - "m_canonicalAllArchmastery": { - "type": "float", - "id": 107, - "offset": 528, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 304759835 - }, - "m_maximumPips": { - "type": "int", - "id": 108, - "offset": 532, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 334257940 - }, - "m_maximumPowerPips": { - "type": "int", - "id": 109, - "offset": 536, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 952865025 - } - } - }, - "689784471": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 689784471, - "properties": { - "m_emojiDataList": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1180872578 - } - } - }, - "1467599514": { - "name": "class SoundEmitterInfo", - "bases": [ - "SoundInfo", - "ClientObjectInfo", - "CoreObjectInfo", - "PropertyClass" - ], - "hash": 1467599514, - "properties": { - "m_templateID.m_full": { - "type": "unsigned __int64", - "id": 0, - "offset": 72, - "flags": 33554439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 633907631 - }, - "m_nObjectID": { - "type": "unsigned int", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 748496927 - }, - "m_location": { - "type": "class Vector3D", - "id": 2, - "offset": 84, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2239683611 - }, - "m_orientation": { - "type": "class Vector3D", - "id": 3, - "offset": 96, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2344058766 - }, - "m_fScale": { - "type": "float", - "id": 4, - "offset": 108, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 503137701 - }, - "m_zoneTag": { - "type": "std::string", - "id": 5, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3405382643 - }, - "m_startState": { - "type": "std::string", - "id": 6, - "offset": 184, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2166880458 - }, - "m_overrideName": { - "type": "std::string", - "id": 7, - "offset": 120, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1990707228 - }, - "m_globalDynamic": { - "type": "bool", - "id": 8, - "offset": 116, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1951691017 - }, - "m_bUndetectable": { - "type": "bool", - "id": 9, - "offset": 216, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1907454341 - }, - "m_spawnRequirements": { - "type": "class SharedPointer", - "id": 10, - "offset": 224, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2309120870 - }, - "m_loadingType": { - "type": "enum CoreObjectInfo::LoadingType", - "id": 11, - "offset": 112, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3522422550, - "enum_options": { - "STATIC_CLIENT_SERVER": 0, - "STATIC_CLIENT": 1, - "STATIC_SERVER": 2, - "DYNAMIC_SERVER": 3 - } - }, - "m_radius": { - "type": "float", - "id": 12, - "offset": 256, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 989410271 - }, - "m_exclusive": { - "type": "bool", - "id": 13, - "offset": 260, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 824383403 - }, - "m_startActive": { - "type": "bool", - "id": 14, - "offset": 261, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2031339229 - }, - "m_category": { - "type": "enum AudioCategory", - "id": 15, - "offset": 264, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2951251982, - "enum_options": { - "AudioCategory_Irrelevent": 0, - "AudioCategory_Accoustic": 1, - "AudioCategory_Noise": 2, - "AudioCategory_Music": 3 - } - }, - "m_override": { - "type": "int", - "id": 16, - "offset": 268, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 136872410, - "enum_options": { - "OVR_RADIUS": 1, - "OVR_CATEGORY": 2, - "OVR_EXCLUSIVE": 4, - "OVR_SIGNATURE": 64, - "OVR_VOLUME": 8, - "OVR_LOOPCOUNT": 16, - "OVR_ACTIVE": 32, - "OVR_PLAYPROG": 128, - "OVR_PRIORITY": 256, - "OVR_PROGTIME": 512, - "OVR_FILTERSET": 1024 - } - }, - "m_enableReqs": { - "type": "class SharedPointer", - "id": 17, - "offset": 272, - "flags": 263, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3158020443 - }, - "m_volume": { - "type": "float", - "id": 18, - "offset": 288, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1162855023 - }, - "m_loopCount": { - "type": "int", - "id": 19, - "offset": 292, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 865634717 - }, - "m_trackFilenameList": { - "type": "std::string", - "id": 20, - "offset": 312, - "flags": 131079, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2531081709 - }, - "m_playList": { - "type": "class PlayListEntry*", - "id": 21, - "offset": 336, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 3907873161 - }, - "m_priority": { - "type": "int", - "id": 22, - "offset": 296, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1235205852 - }, - "m_progression": { - "type": "enum PlayList::Progression", - "id": 23, - "offset": 300, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3279400238, - "enum_options": { - "Sequence": 0, - "Random": 1, - "SequenceOnceOnly": 2, - "RandomNoRepeat": 3 - } - }, - "m_progressMin": { - "type": "float", - "id": 24, - "offset": 304, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1497550192 - }, - "m_progressMax": { - "type": "float", - "id": 25, - "offset": 308, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1497549938 - }, - "m_audioFilterSet": { - "type": "unsigned int", - "id": 26, - "offset": 360, - "flags": 33554439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 831339825 - }, - "m_clientTag": { - "type": "std::string", - "id": 27, - "offset": 368, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3409856790 - } - } - }, - "1871293562": { - "name": "class SharedPointer", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1871293562, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_itemList": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 27, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1983655699 - } - } - }, - "282724633": { - "name": "class MoveCommandTime*", - "bases": [ - "MoveController::MoveCommand", - "PropertyClass" - ], - "hash": 282724633, - "properties": { - "m_vTarget": { - "type": "class Vector3D", - "id": 0, - "offset": 100, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3770499167 - }, - "m_fTime": { - "type": "float", - "id": 1, - "offset": 124, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 883746156 - } - } - }, - "692023183": { - "name": "class ClientRequirementFailInteraction", - "bases": [ - "RequirementFailNotification", - "ServiceOptionBase", - "PropertyClass" - ], - "hash": 692023183, - "properties": { - "m_serviceName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2206028813 - }, - "m_iconKey": { - "type": "std::string", - "id": 1, - "offset": 168, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2457138637 - }, - "m_displayKey": { - "type": "std::string", - "id": 2, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3023276954 - }, - "m_serviceIndex": { - "type": "unsigned int", - "id": 3, - "offset": 204, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2103126710 - }, - "m_forceInteract": { - "type": "bool", - "id": 4, - "offset": 200, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1705789564 - }, - "m_failureMessage": { - "type": "std::string", - "id": 5, - "offset": 224, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1882376712 - } - } - }, - "1871647176": { - "name": "class SharedPointer", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1871647176, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_packedName": { - "type": "std::string", - "id": 1, - "offset": 112, - "flags": 65543, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1805208228 - }, - "m_signText": { - "type": "std::string", - "id": 2, - "offset": 144, - "flags": 65543, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2920366641 - } - } - }, - "282411936": { - "name": "class HousingObjectTextureRemap", - "bases": [ - "PropertyClass" - ], - "hash": 282411936, - "properties": { - "m_tagName": { - "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 27, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 255719658 - }, - "m_textureFilename": { - "type": "unsigned int", - "id": 1, - "offset": 76, - "flags": 27, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 922351199 - } - } - }, - "691426971": { - "name": "class SharedPointer", - "bases": [ - "ObstacleCourseObstaclePathBase", - "ObstacleCourseObstacleBehavior", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 691426971, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - } - } - }, - "1468059012": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1468059012, - "properties": { - "m_uTab": { - "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 431299609 - }, - "m_uPriority": { - "type": "unsigned int", - "id": 1, - "offset": 76, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 374455588 - } - } - }, - "691112052": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 691112052, - "properties": { - "m_deckToSave": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1977265360 - }, - "m_graveYardToSave": { - "type": "class SharedPointer", - "id": 1, - "offset": 96, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 3785577598 - } - } - }, - "1468026244": { - "name": "class HousingObjectJewelWandContainer", - "bases": [ - "HousingObjectWandContainer", - "PropertyClass" - ], - "hash": 1468026244, - "properties": { - "m_displayID": { - "type": "gid", - "id": 0, - "offset": 72, - "flags": 65543, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1022427803 - }, - "m_jewelBuffer": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 65543, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2221753804 - } - } - }, - "1873698648": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1873698648, - "properties": { - "m_items": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2089538472 - }, - "m_crownShopLayout": { - "type": "class SharedPointer", - "id": 1, - "offset": 88, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2296174117 - }, - "m_recomendedItems": { - "type": "class SharedPointer", - "id": 2, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 971256066 - }, - "m_crownShopSegReqsSummary": { - "type": "class SharedPointer", - "id": 3, - "offset": 120, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2152734186 - }, - "m_wishlistMaxSize": { - "type": "int", - "id": 4, - "offset": 136, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 590778194 - }, - "m_wishlistSBExpansionSize": { - "type": "int", - "id": 5, - "offset": 140, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1131167734 - } - } - }, - "283068262": { - "name": "class SharedPointer", - "bases": [ - "GameEffectTemplate", - "PropertyClass" - ], - "hash": 283068262, - "properties": { - "m_effectName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2029161513 - }, - "m_effectCategory": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1852673222 - }, - "m_sortOrder": { - "type": "int", - "id": 2, - "offset": 148, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1411218206 - }, - "m_duration": { - "type": "double", - "id": 3, - "offset": 192, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2727932435 - }, - "m_stackingCategories": { - "type": "std::string", - "id": 4, - "offset": 160, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1774497525 - }, - "m_isPersistent": { - "type": "bool", - "id": 5, - "offset": 153, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 923861920 - }, - "m_bIsOnPet": { - "type": "bool", - "id": 6, - "offset": 154, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 522593303 - }, - "m_isPublic": { - "type": "bool", - "id": 7, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1728439822 - }, - "m_visualEffectAddName": { - "type": "std::string", - "id": 8, - "offset": 200, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3382086694 - }, - "m_visualEffectRemoveName": { - "type": "std::string", - "id": 9, - "offset": 232, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1541697323 - }, - "m_onAddFunctorName": { - "type": "std::string", - "id": 10, - "offset": 280, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1561843107 - }, - "m_onRemoveFunctorName": { - "type": "std::string", - "id": 11, - "offset": 312, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2559017864 - }, - "m_stackingRule": { - "type": "enum STACKING_RULE", - "id": 12, - "offset": 144, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 431568889, - "enum_options": { - "STACKING_ALLOWED": 0, - "STACKING_NOSTACK": 1, - "STACKING_REPLACE": 2 - } - }, - "m_invisLevel": { - "type": "unsigned char", - "id": 13, - "offset": 360, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2488151665 - } - } - }, - "691247614": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 691247614, - "properties": { - "m_loyaltyNumTokens": { - "type": "int", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1274122412 - }, - "m_loyaltyTier": { - "type": "int", - "id": 1, - "offset": 76, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 186471516 - }, - "m_loyaltyLastTier": { - "type": "int", - "id": 2, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 848314000 - }, - "m_loyaltyNumTokensCanClaim": { - "type": "int", - "id": 3, - "offset": 84, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1792573988 - }, - "m_loyaltyPurchaseHistoryLimit": { - "type": "unsigned int", - "id": 4, - "offset": 88, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2121059751 - }, - "m_loyaltyPurchaseHistoryData": { - "type": "class SharedPointer", - "id": 5, - "offset": 96, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1737702413 - }, - "m_loyaltyPurchaseLimitCountersData": { - "type": "class SharedPointer", - "id": 6, - "offset": 112, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2330097972 - } - } - }, - "1873343960": { - "name": "class SoftEnumList*", - "bases": [ - "PropertyClass" - ], - "hash": 1873343960, - "properties": { - "m_enums": { - "type": "std::string", - "id": 0, - "offset": 128, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2291006147 - } - } - }, - "282729753": { - "name": "class MoveCommandTime", - "bases": [ - "MoveController::MoveCommand", - "PropertyClass" - ], - "hash": 282729753, - "properties": { - "m_vTarget": { - "type": "class Vector3D", - "id": 0, - "offset": 100, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3770499167 - }, - "m_fTime": { - "type": "float", - "id": 1, - "offset": 124, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 883746156 - } - } - }, - "1873072654": { - "name": "class WindowHelp*", - "bases": [ - "ControlText", - "Window", - "PropertyClass" - ], - "hash": 1873072654, - "properties": { - "m_sName": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306437263 - }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621225959 - }, - "m_Style": { - "type": "unsigned int", - "id": 2, - "offset": 152, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152, - "DO_NOT_WRAP": 134217728, - "FIT_TEXT": 268435456 - } - }, - "m_Flags": { - "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } - }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3105139380 - }, - "m_fTargetAlpha": { - "type": "float", - "id": 5, - "offset": 212, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1809129834 - }, - "m_fDisabledAlpha": { - "type": "float", - "id": 6, - "offset": 216, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1389987675 - }, - "m_fAlpha": { - "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 482130755 - }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3623628394 - }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2102211316 - }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1846695875 - }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3389835433 - }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2547159940 - }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2587533771 - }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3091503757 - }, - "m_sText": { - "type": "std::wstring", - "id": 16, - "offset": 584, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2102642960 - }, - "m_sTooltip": { - "type": "std::wstring", - "id": 17, - "offset": 616, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1680475798 - }, - "m_bUseDropShadow": { - "type": "bool", - "id": 18, - "offset": 653, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 93063037 - }, - "m_bUseOutline": { - "type": "bool", - "id": 19, - "offset": 654, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 744292994 - }, - "m_bEnableWordWrap": { - "type": "bool", - "id": 20, - "offset": 655, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 430904562 - }, - "m_bEnableToggle": { - "type": "bool", - "id": 21, - "offset": 652, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1937994142 - }, - "m_nLeadingAdjust": { - "type": "int", - "id": 22, - "offset": 656, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1559480167 - } - } - }, - "1472613945": { - "name": "class SharedPointer", - "bases": [ - "RegisterPersonaCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 1472613945, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_persona": { - "type": "class Persona*", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2350440768 - } - } - }, - "1872235599": { - "name": "class ToggleInterfaceControlCinematicAction", - "bases": [ - "CinematicAction", - "PropertyClass" - ], - "hash": 1872235599, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_maximumDurationInSeconds": { - "type": "float", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1457214913 - }, - "m_hideUI": { - "type": "bool", - "id": 2, - "offset": 84, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 519818283 - }, - "m_stopMovement": { - "type": "bool", - "id": 3, - "offset": 85, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1752496036 - } - } - }, - "691744112": { - "name": "class SharedPointer", - "bases": [ - "CrownsRewardsSchedule", - "PropertyClass" - ], - "hash": 691744112, - "properties": {} - }, - "1470724635": { - "name": "class SharedPointer", - "bases": [ - "MatchRequest", - "PropertyClass" - ], - "hash": 1470724635, - "properties": { - "m_characterID": { - "type": "gid", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 210498386 - }, - "m_tournamentNameID": { - "type": "unsigned int", - "id": 1, - "offset": 84, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1799846440 - }, - "m_matchNameID": { - "type": "unsigned int", - "id": 2, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1751361288 - }, - "m_leagueID": { - "type": "unsigned int", - "id": 3, - "offset": 88, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 692361645 - }, - "m_seasonID": { - "type": "unsigned int", - "id": 4, - "offset": 92, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 535260643 - }, - "m_teams": { - "type": "class SharedPointer", - "id": 5, - "offset": 96, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1984373608 - }, - "m_minRank": { - "type": "int", - "id": 6, - "offset": 112, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2062988042 - }, - "m_maxRank": { - "type": "int", - "id": 7, - "offset": 116, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1761764108 - }, - "m_pTrackInfo": { - "type": "class SharedPointer", - "id": 8, - "offset": 120, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3026194809 - } - } - }, - "1872108962": { - "name": "enum PlayList::Progression", - "bases": [], - "hash": 1872108962, - "properties": {} - }, - "283344906": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 283344906, - "properties": { - "m_leaderboardFriendsList": { - "type": "gid", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 142730388 - } - } - }, - "1470440827": { - "name": "class SharedPointer", - "bases": [ - "ElixirBehaviorTemplate", - "TimedItemBehaviorTemplate", - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 1470440827, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - }, - "m_expireTime": { - "type": "std::string", - "id": 1, - "offset": 128, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3122602039 - }, - "m_timerType": { - "type": "enum TimerType", - "id": 2, - "offset": 120, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 571744132, - "enum_options": { - "TimerType_Game": 0, - "TimerType_Calendar": 1 - } - }, - "m_typeList": { - "type": "std::string", - "id": 3, - "offset": 160, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2119049625 - }, - "m_equipParticle": { - "type": "std::string", - "id": 4, - "offset": 176, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2222557491 - }, - "m_unequipParticle": { - "type": "std::string", - "id": 5, - "offset": 208, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2215431638 - }, - "m_equipSound": { - "type": "std::string", - "id": 6, - "offset": 240, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2720016552 - }, - "m_unequipSound": { - "type": "std::string", - "id": 7, - "offset": 272, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1552545835 - }, - "m_equipActionList": { - "type": "class SharedPointer", - "id": 8, - "offset": 304, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1314016250 - }, - "m_unequipActionList": { - "type": "class SharedPointer", - "id": 9, - "offset": 320, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2143896925 - }, - "m_combatEnabled": { - "type": "bool", - "id": 10, - "offset": 336, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1399744148 - }, - "m_PvPEnabled": { - "type": "bool", - "id": 11, - "offset": 337, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1042852532 - }, - "m_setCharacterToLevel": { - "type": "int", - "id": 12, - "offset": 408, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1268456078 - }, - "m_resultingTrainingPoints": { - "type": "int", - "id": 13, - "offset": 412, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1710285808 - }, - "m_schoolSpecificData": { - "type": "class SharedPointer", - "id": 14, - "offset": 472, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2609926725 - }, - "m_allSchoolData": { - "type": "class SharedPointer", - "id": 15, - "offset": 488, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2860093528 - }, - "m_firstWarningStringKey": { - "type": "std::string", - "id": 16, - "offset": 344, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3095888729 - }, - "m_secondWarningStringKey": { - "type": "std::string", - "id": 17, - "offset": 376, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2111513997 - }, - "m_accessPasses": { - "type": "std::string", - "id": 18, - "offset": 456, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2956825884 - }, - "m_gold": { - "type": "int", - "id": 19, - "offset": 416, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 219423808 - }, - "m_tutorialEventsToTrigger": { - "type": "std::string", - "id": 20, - "offset": 424, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2795041819 - }, - "m_tipIDsToDismiss": { - "type": "gid", - "id": 21, - "offset": 440, - "flags": 33554439, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1424884996 - }, - "m_maxPotions": { - "type": "int", - "id": 22, - "offset": 504, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1639626892 - } - } - }, - "1468570377": { - "name": "class SharedPointer", - "bases": [ - "SoundBehaviorTemplate", - "AreaBehaviorTemplate", - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 1468570377, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - }, - "m_radius": { - "type": "float", - "id": 1, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 989410271 - }, - "m_category": { - "type": "enum AudioCategory", - "id": 2, - "offset": 124, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2951251982, - "enum_options": { - "AudioCategory_Irrelevent": 0, - "AudioCategory_Accoustic": 1, - "AudioCategory_Noise": 2, - "AudioCategory_Music": 3, - "AudioCategory_MusicAtSFXVolume": 4, - "AudioCategory_Dialog": 5, - "AudioCategory_UI": 6, - "AudioCategory_NoiseAtMusicVolume": 7 - } - }, - "m_exclusive": { - "type": "bool", - "id": 3, - "offset": 128, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 824383403 - }, - "m_active": { - "type": "bool", - "id": 4, - "offset": 129, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 239335471 - }, - "m_enableReqs": { - "type": "class SharedPointer", - "id": 5, - "offset": 136, - "flags": 263, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3158020443 - }, - "m_trackFilenameList": { - "type": "std::string", - "id": 6, - "offset": 152, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2531081709 - }, - "m_playList": { - "type": "class PlayListEntry*", - "id": 7, - "offset": 176, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 3907873161 - }, - "m_priority": { - "type": "int", - "id": 8, - "offset": 208, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1235205852 - }, - "m_volume": { - "type": "float", - "id": 9, - "offset": 200, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1162855023 - }, - "m_loopCount": { - "type": "int", - "id": 10, - "offset": 204, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 865634717 - }, - "m_progression": { - "type": "enum PlayList::Progression", - "id": 11, - "offset": 220, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3279400238, - "enum_options": { - "Sequence": 0, - "Random": 1, - "SequenceOnceOnly": 2, - "RandomNoRepeat": 3 - } - }, - "m_progressMin": { - "type": "float", - "id": 12, - "offset": 212, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1497550192 - }, - "m_progressMax": { - "type": "float", - "id": 13, - "offset": 216, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1497549938 - }, - "m_audioFilterSet": { - "type": "unsigned int", - "id": 14, - "offset": 224, - "flags": 33554439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 831339825 - }, - "m_animationNameFilter": { - "type": "std::string", - "id": 15, - "offset": 232, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2292854242 - }, - "m_functionallabel": { - "type": "std::string", - "id": 16, - "offset": 264, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3589331278 - }, - "m_innerRadius": { - "type": "float", - "id": 17, - "offset": 296, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 686816091 - }, - "m_inverted": { - "type": "bool", - "id": 18, - "offset": 300, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1034821044 - } - } - }, - "694173895": { - "name": "class SharedPointer", - "bases": [ - "DamageEventCinematicAction", - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 694173895, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - } - } - }, - "288780123": { - "name": "class SharedPointer", - "bases": [ - "GeomParams", - "PropertyClass" - ], - "hash": 288780123, - "properties": { - "m_eType": { - "type": "enum ProxyType", - "id": 0, - "offset": 72, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1656534066, - "enum_options": { - "ProxyTypeBox": 0, - "ProxyTypeRay": 1, - "ProxyTypeSphere": 2, - "ProxyTypeCylinder": 3, - "ProxyTypeTube": 4, - "ProxyTypePlane": 5, - "ProxyTypeMesh": 6, - "ProxyTypeInvalid": 7 - } - }, - "m_fRadius": { - "type": "float", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 787972805 - }, - "m_fLength": { - "type": "float", - "id": 2, - "offset": 84, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 558261279 - } - } - }, - "692109478": { - "name": "class SharedPointer", - "bases": [ - "PulseEffect", - "GameEffectBase", - "PropertyClass" - ], - "hash": 692109478, - "properties": { - "m_currentTickCount": { - "type": "double", - "id": 0, - "offset": 80, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2533274692 - }, - "m_effectNameID": { - "type": "unsigned int", - "id": 1, - "offset": 96, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1204067144 - }, - "m_bIsOnPet": { - "type": "bool", - "id": 2, - "offset": 73, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 522593303 - }, - "m_originatorID": { - "type": "gid", - "id": 3, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1131810019 - }, - "m_itemSlotID": { - "type": "unsigned int", - "id": 4, - "offset": 112, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1895747595 - }, - "m_internalID": { - "type": "int", - "id": 5, - "offset": 92, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1643137924 - }, - "m_endTime": { - "type": "unsigned int", - "id": 6, - "offset": 88, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 716479635 - }, - "m_pulseCount": { - "type": "double", - "id": 7, - "offset": 128, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3507157375 - }, - "m_damageOverride": { - "type": "int", - "id": 8, - "offset": 136, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 213003481 - } - } - }, - "1873277579": { - "name": "class MoveCommandPitch*", - "bases": [ - "MoveController::MoveCommand", - "PropertyClass" - ], - "hash": 1873277579, - "properties": { - "m_fPitch": { - "type": "float", - "id": 0, - "offset": 88, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 499815957 - } - } - }, - "287686942": { - "name": "class ClientRecipe*", - "bases": [ - "Recipe", - "CoreObject", - "PropertyClass" - ], - "hash": 287686942, - "properties": { - "m_inactiveBehaviors": { - "type": "class SharedPointer", - "id": 0, - "offset": 224, - "flags": 31, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1850812559 - }, - "m_globalID.m_full": { - "type": "unsigned __int64", - "id": 1, - "offset": 72, - "flags": 16777247, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2312465444 - }, - "m_permID": { - "type": "unsigned __int64", - "id": 2, - "offset": 80, - "flags": 16777247, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1298909658 - }, - "m_location": { - "type": "class Vector3D", - "id": 3, - "offset": 168, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2239683611 - }, - "m_orientation": { - "type": "class Vector3D", - "id": 4, - "offset": 180, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2344058766 - }, - "m_fScale": { - "type": "float", - "id": 5, - "offset": 196, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 503137701 - }, - "m_templateID.m_full": { - "type": "unsigned __int64", - "id": 6, - "offset": 96, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 633907631 - }, - "m_debugName": { - "type": "std::string", - "id": 7, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3553984419 - }, - "m_displayKey": { - "type": "std::string", - "id": 8, - "offset": 136, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3023276954 - }, - "m_zoneTagID": { - "type": "unsigned int", - "id": 9, - "offset": 344, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 965291410 - }, - "m_speedMultiplier": { - "type": "short", - "id": 10, - "offset": 192, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 123130076 - }, - "m_nMobileID": { - "type": "unsigned short", - "id": 11, - "offset": 194, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1054318939 - }, - "m_recipeNameID": { - "type": "unsigned int", - "id": 12, - "offset": 384, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2168714419 - } - } - }, - "1873113739": { - "name": "class MoveCommandPitch", - "bases": [ - "MoveController::MoveCommand", - "PropertyClass" - ], - "hash": 1873113739, - "properties": { - "m_fPitch": { - "type": "float", - "id": 0, - "offset": 88, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 499815957 - } - } - }, - "284550330": { - "name": "class SharedPointer", - "bases": [ - "Window", - "PropertyClass" - ], - "hash": 284550330, - "properties": { - "m_sName": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306437263 - }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621225959 - }, - "m_Style": { - "type": "unsigned int", - "id": 2, - "offset": 152, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "SCALE_CHILDREN": 2, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "FOCUS_LOCKED": 64, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152 - } - }, - "m_Flags": { - "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } - }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3105139380 - }, - "m_fTargetAlpha": { - "type": "float", - "id": 5, - "offset": 212, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1809129834 - }, - "m_fDisabledAlpha": { - "type": "float", - "id": 6, - "offset": 216, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1389987675 - }, - "m_fAlpha": { - "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 482130755 - }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3623628394 - }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2102211316 - }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1846695875 - }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3389835433 - }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2547159940 - }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2587533771 - }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3091503757 - } - } - }, - "1471099803": { - "name": "class SharedPointer", - "bases": [ - "MatchRequest", - "PropertyClass" - ], - "hash": 1471099803, - "properties": { - "m_characterID": { - "type": "gid", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 210498386 - }, - "m_tournamentNameID": { - "type": "unsigned int", - "id": 1, - "offset": 84, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1799846440 - }, - "m_matchNameID": { - "type": "unsigned int", - "id": 2, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1751361288 - }, - "m_leagueID": { - "type": "unsigned int", - "id": 3, - "offset": 88, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 692361645 - }, - "m_seasonID": { - "type": "unsigned int", - "id": 4, - "offset": 92, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 535260643 - }, - "m_teams": { - "type": "class SharedPointer", - "id": 5, - "offset": 96, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1984373608 - }, - "m_joinQueueRequirements": { - "type": "class SharedPointer", - "id": 6, - "offset": 112, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2746080983 - }, - "m_ignoredList": { - "type": "gid", - "id": 7, - "offset": 128, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1850924028 - }, - "m_matchTimer": { - "type": "float", - "id": 8, - "offset": 144, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1510935909 - }, - "m_bonusTime": { - "type": "int", - "id": 9, - "offset": 148, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1757496496 - }, - "m_passPenalty": { - "type": "int", - "id": 10, - "offset": 152, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 982951662 - }, - "m_yellowTime": { - "type": "int", - "id": 11, - "offset": 156, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1017028741 - }, - "m_redTime": { - "type": "int", - "id": 12, - "offset": 160, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1909556708 - }, - "m_minTurnTime": { - "type": "int", - "id": 13, - "offset": 164, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 652524886 - }, - "m_effects": { - "type": "class SharedPointer", - "id": 14, - "offset": 168, - "flags": 31, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 804962647 - } - } - }, - "284413786": { - "name": "class MatchTemplate*", - "bases": [ - "CoreTemplate", - "PropertyClass" - ], - "hash": 284413786, - "properties": { - "m_behaviors": { - "type": "class BehaviorTemplate*", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1197808594 - }, - "m_matchName": { - "type": "std::string", - "id": 1, - "offset": 128, - "flags": 134217735, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2061215721 - }, - "m_matchDisplayName": { - "type": "std::string", - "id": 2, - "offset": 96, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3201906495 - }, - "m_matchTitle": { - "type": "std::string", - "id": 3, - "offset": 168, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2918442218 - }, - "m_allowOverrides": { - "type": "bool", - "id": 4, - "offset": 200, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 469376485 - }, - "m_teamSize": { - "type": "unsigned int", - "id": 5, - "offset": 208, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2343388751 - }, - "m_teamCount": { - "type": "unsigned int", - "id": 6, - "offset": 204, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1825878845 - }, - "m_minTeams": { - "type": "unsigned int", - "id": 7, - "offset": 212, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1717685739 - }, - "m_timeout": { - "type": "int", - "id": 8, - "offset": 216, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 365357953 - }, - "m_maxPointsPerMatch": { - "type": "unsigned int", - "id": 9, - "offset": 280, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1397040900 - }, - "m_estimatedWeight": { - "type": "float", - "id": 10, - "offset": 284, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1374360127 - }, - "m_matchInfo": { - "type": "class SharedPointer", - "id": 11, - "offset": 256, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2424135306 - }, - "m_awardInfo": { - "type": "class SharedPointer", - "id": 12, - "offset": 224, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2862912855 - }, - "m_perLeagueAwardInfo": { - "type": "class SharedPointer", - "id": 13, - "offset": 240, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1635456322 - }, - "m_zones": { - "type": "std::string", - "id": 14, - "offset": 288, - "flags": 268435463, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2315938538, - "enum_options": { - "__BASECLASS": "ZoneData" - } - }, - "m_initialQueueThreshold": { - "type": "unsigned int", - "id": 15, - "offset": 312, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2069737705 - }, - "m_actorQueueTimeout": { - "type": "unsigned int", - "id": 16, - "offset": 316, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2220949042 - }, - "m_teamQueueTimeout": { - "type": "unsigned int", - "id": 17, - "offset": 320, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 905233664 - }, - "m_actorQueueGrowth": { - "type": "float", - "id": 18, - "offset": 324, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 499165488 - }, - "m_teamQueueGrowth": { - "type": "float", - "id": 19, - "offset": 328, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1500499518 - }, - "m_matchMakingLevelMultiplier": { - "type": "float", - "id": 20, - "offset": 332, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 838900890 - }, - "m_levelModifiersListID": { - "type": "gid", - "id": 21, - "offset": 336, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 383459035 - }, - "m_incompleteTeamTimeout": { - "type": "unsigned int", - "id": 22, - "offset": 276, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1580576011 - }, - "m_incompleteMatchTimeout": { - "type": "unsigned int", - "id": 23, - "offset": 272, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2167303729 - }, - "m_shortMatchDurationForPenaltySeconds": { - "type": "unsigned int", - "id": 24, - "offset": 360, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1403927011 - }, - "m_thresholdForExtendingMatchSearch": { - "type": "unsigned int", - "id": 25, - "offset": 364, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1973589002 - }, - "m_numberOfPlayersRequiredToExtendMatchSearch": { - "type": "unsigned int", - "id": 26, - "offset": 368, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 858588026 - }, - "m_showStatusOnJoinQueue": { - "type": "bool", - "id": 27, - "offset": 376, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1803391338 - }, - "m_allowExceedRangeForMatchesOptionForPlayers": { - "type": "bool", - "id": 28, - "offset": 377, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 592913977 - }, - "m_makeTeamsWithSameMatchOptsTimeoutSec": { - "type": "int", - "id": 29, - "offset": 372, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1787977769 - }, - "m_streakSize": { - "type": "int", - "id": 30, - "offset": 380, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1155220287 - }, - "m_historySize": { - "type": "int", - "id": 31, - "offset": 384, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 229055111 - }, - "m_queueWaitingTime": { - "type": "int", - "id": 32, - "offset": 388, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 15229089 - }, - "m_minQueueSize": { - "type": "int", - "id": 33, - "offset": 392, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1319267550 - }, - "m_maxQueueSize": { - "type": "int", - "id": 34, - "offset": 396, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1277586976 - }, - "m_confTierRankTimeout": { - "type": "int", - "id": 35, - "offset": 400, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 79057063 - }, - "m_matchTimer": { - "type": "float", - "id": 36, - "offset": 404, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1510935909 - }, - "m_bonusTime": { - "type": "int", - "id": 37, - "offset": 408, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1757496496 - }, - "m_passPenalty": { - "type": "int", - "id": 38, - "offset": 412, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 982951662 - }, - "m_yellowTime": { - "type": "int", - "id": 39, - "offset": 416, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1017028741 - }, - "m_redTime": { - "type": "int", - "id": 40, - "offset": 420, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1909556708 - }, - "m_minTurnTime": { - "type": "int", - "id": 41, - "offset": 424, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 652524886 - }, - "m_effects": { - "type": "class SharedPointer", - "id": 42, - "offset": 432, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 804962647 - }, - "m_updateBattlePassPoints": { - "type": "bool", - "id": 43, - "offset": 456, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 713306342 - }, - "m_battlePassWinPoints": { - "type": "int", - "id": 44, - "offset": 460, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1252337240 - }, - "m_battlePassLosePoints": { - "type": "int", - "id": 45, - "offset": 464, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1400839869 - } - } - }, - "284348187": { - "name": "class BlobDirectory", - "bases": [ - "PropertyClass" - ], - "hash": 284348187, - "properties": { - "m_blobDefinitionList": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2267613747 - } - } - }, - "852171271": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 852171271, - "properties": { - "m_madlibs": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1912290195 - }, - "m_blockToken": { - "type": "std::string", - "id": 1, - "offset": 96, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1821505575 - } - } - }, - "284102765": { - "name": "class SharedPointer", - "bases": [ - "UntargetableCinematicAction", - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 284102765, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - } - } - }, - "799299583": { - "name": "class std::list,class std::allocator >,class std::allocator,class std::allocator > > >", - "bases": [], - "hash": 799299583, - "properties": {} - }, - "1473290202": { - "name": "class SharedPointer", - "bases": [ - "ClearBottomTeamCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 1473290202, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_interpDuration": { - "type": "float", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237711951 - } - } - }, - "1873514951": { - "name": "class SG_GameEvent*", - "bases": [ - "PropertyClass" - ], - "hash": 1873514951, - "properties": { - "m_eventName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3493260286 - }, - "m_actions": { - "type": "class SharedPointer", - "id": 1, - "offset": 104, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 3152419933 - } - } - }, - "760034708": { - "name": "class KioskOption*", - "bases": [ - "ServiceOptionBase", - "PropertyClass" - ], - "hash": 760034708, - "properties": { - "m_serviceName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2206028813 - }, - "m_iconKey": { - "type": "std::string", - "id": 1, - "offset": 168, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2457138637 - }, - "m_displayKey": { - "type": "std::string", - "id": 2, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3023276954 - }, - "m_serviceIndex": { - "type": "unsigned int", - "id": 3, - "offset": 204, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2103126710 - }, - "m_forceInteract": { - "type": "bool", - "id": 4, - "offset": 200, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1705789564 - } - } - }, - "723888172": { - "name": "class PropertyClass*", - "bases": [], - "hash": 723888172, - "properties": {} - }, - "284348192": { - "name": "class BlobDirectory*", - "bases": [ - "PropertyClass" - ], - "hash": 284348192, - "properties": { - "m_blobDefinitionList": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2267613747 - } - } - }, - "710825186": { - "name": "class ShoppingColorModifiers", - "bases": [ - "PropertyClass" - ], - "hash": 710825186, - "properties": { - "m_boysPrimaryColors": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 300868202 - }, - "m_boysSecondaryColors": { - "type": "float", - "id": 1, - "offset": 96, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2061028494 - }, - "m_girlsPrimaryColors": { - "type": "float", - "id": 2, - "offset": 120, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 327992494 - }, - "m_girlsSecondaryColors": { - "type": "float", - "id": 3, - "offset": 144, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1534611410 - } - } - }, - "1474394067": { - "name": "class InventoryPageWindow", - "bases": [ - "Window", - "PropertyClass" - ], - "hash": 1474394067, - "properties": { - "m_sName": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306437263 - }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621225959 - }, - "m_Style": { - "type": "unsigned int", - "id": 2, - "offset": 152, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "SCALE_CHILDREN": 2, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "FOCUS_LOCKED": 64, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152 - } - }, - "m_Flags": { - "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } - }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3105139380 - }, - "m_fTargetAlpha": { - "type": "float", - "id": 5, - "offset": 212, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1809129834 - }, - "m_fDisabledAlpha": { - "type": "float", - "id": 6, - "offset": 216, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1389987675 - }, - "m_fAlpha": { - "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 482130755 - }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3623628394 - }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2102211316 - }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1846695875 - }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3389835433 - }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2547159940 - }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2587533771 - }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3091503757 - } - } - }, - "1874568637": { - "name": "class SharedPointer", - "bases": [ - "Window", - "PropertyClass" - ], - "hash": 1874568637, - "properties": { - "m_sName": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306437263 - }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621225959 - }, - "m_Style": { - "type": "unsigned int", - "id": 2, - "offset": 152, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "SCALE_CHILDREN": 2, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "FOCUS_LOCKED": 64, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152 - } - }, - "m_Flags": { - "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } - }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3105139380 - }, - "m_fTargetAlpha": { - "type": "float", - "id": 5, - "offset": 212, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1809129834 - }, - "m_fDisabledAlpha": { - "type": "float", - "id": 6, - "offset": 216, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1389987675 - }, - "m_fAlpha": { - "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 482130755 - }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3623628394 - }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2102211316 - }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1846695875 - }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3389835433 - }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2547159940 - }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2587533771 - }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3091503757 - } - } - }, - "703599744": { - "name": "class SharedPointer", - "bases": [ - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 703599744, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - } - } - }, - "1473969410": { - "name": "class SharedPointer", - "bases": [ - "ControlText", - "Window", - "PropertyClass" - ], - "hash": 1473969410, - "properties": { - "m_sName": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306437263 - }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621225959 - }, - "m_Style": { - "type": "unsigned int", - "id": 2, - "offset": 152, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152, - "DO_NOT_WRAP": 134217728, - "FIT_TEXT": 268435456 - } - }, - "m_Flags": { - "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } - }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3105139380 - }, - "m_fTargetAlpha": { - "type": "float", - "id": 5, - "offset": 212, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1809129834 - }, - "m_fDisabledAlpha": { - "type": "float", - "id": 6, - "offset": 216, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1389987675 - }, - "m_fAlpha": { - "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 482130755 - }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3623628394 - }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2102211316 - }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1846695875 - }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3389835433 - }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2547159940 - }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2587533771 - }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3091503757 - }, - "m_sText": { - "type": "std::wstring", - "id": 16, - "offset": 584, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2102642960 - }, - "m_sTooltip": { - "type": "std::wstring", - "id": 17, - "offset": 616, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1680475798 - }, - "m_bUseDropShadow": { - "type": "bool", - "id": 18, - "offset": 653, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 93063037 - }, - "m_bUseOutline": { - "type": "bool", - "id": 19, - "offset": 654, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 744292994 - }, - "m_bEnableWordWrap": { - "type": "bool", - "id": 20, - "offset": 655, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 430904562 - }, - "m_bEnableToggle": { - "type": "bool", - "id": 21, - "offset": 652, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1937994142 - }, - "m_nLeadingAdjust": { - "type": "int", - "id": 22, - "offset": 656, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1559480167 - }, - "m_alertSeconds": { - "type": "unsigned int", - "id": 23, - "offset": 700, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2220095860 - }, - "m_alertSeconds2": { - "type": "unsigned int", - "id": 24, - "offset": 704, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2070944934 - }, - "m_blinkRate": { - "type": "float", - "id": 25, - "offset": 708, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 395499571 - } - } - }, - "1873710101": { - "name": "class ControlButtonState", - "bases": [ - "PropertyClass" - ], - "hash": 1873710101, - "properties": {} - }, - "701230857": { - "name": "class WizGameObjectTemplate*", - "bases": [ - "GameObjectTemplate", - "CoreTemplate", - "PropertyClass" - ], - "hash": 701230857, - "properties": { - "m_behaviors": { - "type": "class BehaviorTemplate*", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1197808594 - }, - "m_objectName": { - "type": "std::string", - "id": 1, - "offset": 96, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2154940147 - }, - "m_templateID": { - "type": "unsigned int", - "id": 2, - "offset": 128, - "flags": 16777223, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1286746870 - }, - "m_visualID": { - "type": "unsigned int", - "id": 3, - "offset": 132, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1118778894 - }, - "m_adjectiveList": { - "type": "std::string", - "id": 4, - "offset": 248, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 3195213318 - }, - "m_exemptFromAOI": { - "type": "bool", - "id": 5, - "offset": 240, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1457879059 - }, - "m_displayName": { - "type": "std::string", - "id": 6, - "offset": 168, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2446900370 - }, - "m_description": { - "type": "std::string", - "id": 7, - "offset": 136, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1649374815 - }, - "m_nObjectType": { - "type": "enum ObjectType", - "id": 8, - "offset": 200, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2118905880, - "enum_options": { - "OT_UNDEFINED": 0, - "OT_PLAYER": 1, - "OT_NPC": 2, - "OT_PROP": 3, - "OT_OBJECT": 4, - "OT_HOUSE": 5, - "OT_KEY": 6, - "OT_OLD_KEY": 7, - "OT_DEED": 8, - "OT_MAIL": 9, - "OT_RECIPE": 17, - "OT_EQUIP_HEAD": 10, - "OT_EQUIP_CHEST": 11, - "OT_EQUIP_LEGS": 12, - "OT_EQUIP_HANDS": 13, - "OT_EQUIP_FINGER": 14, - "OT_EQUIP_FEET": 15, - "OT_EQUIP_EAR": 16, - "OT_BUILDING_BLOCK": 18, - "OT_BUILDING_BLOCK_SOLID": 19, - "OT_GOLF": 20, - "OT_DOOR": 21, - "OT_PET": 22, - "OT_FABRIC": 23, - "OT_WINDOW": 24, - "OT_ROOF": 25, - "OT_HORSE": 26, - "OT_STRUCTURE": 27, - "OT_HOUSING_TEXTURE": 28, - "OT_PLANT": 29 - } - }, - "m_sIcon": { - "type": "std::string", - "id": 9, - "offset": 208, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306259831 - }, - "m_lootTable": { - "type": "std::string", - "id": 10, - "offset": 280, - "flags": 268435463, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2539512673, - "enum_options": { - "__BASECLASS": "LootTable" - } - }, - "m_deathParticles": { - "type": "std::string", - "id": 11, - "offset": 296, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3201049672 - }, - "m_deathSound": { - "type": "std::string", - "id": 12, - "offset": 328, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1865613610 - }, - "m_hitSound": { - "type": "std::string", - "id": 13, - "offset": 360, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2746656777 - }, - "m_castSound": { - "type": "std::string", - "id": 14, - "offset": 392, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3343064815 - }, - "m_aggroSound": { - "type": "std::string", - "id": 15, - "offset": 424, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3421949940 - }, - "m_primarySchoolName": { - "type": "std::string", - "id": 16, - "offset": 456, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3211370408 - }, - "m_locationPreference": { - "type": "std::string", - "id": 17, - "offset": 488, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2817699507 - }, - "m_leashOffsetOverride": { - "type": "class SharedPointer", - "id": 18, - "offset": 528, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1692586788 - } - } - }, - "284413791": { - "name": "class MatchTemplate", - "bases": [ - "CoreTemplate", - "PropertyClass" - ], - "hash": 284413791, - "properties": { - "m_behaviors": { - "type": "class BehaviorTemplate*", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1197808594 - }, - "m_matchName": { - "type": "std::string", - "id": 1, - "offset": 128, - "flags": 134217735, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2061215721 - }, - "m_matchDisplayName": { - "type": "std::string", - "id": 2, - "offset": 96, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3201906495 - }, - "m_matchTitle": { - "type": "std::string", - "id": 3, - "offset": 168, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2918442218 - }, - "m_allowOverrides": { - "type": "bool", - "id": 4, - "offset": 200, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 469376485 - }, - "m_teamSize": { - "type": "unsigned int", - "id": 5, - "offset": 208, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2343388751 - }, - "m_teamCount": { - "type": "unsigned int", - "id": 6, - "offset": 204, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1825878845 - }, - "m_minTeams": { - "type": "unsigned int", - "id": 7, - "offset": 212, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1717685739 - }, - "m_timeout": { - "type": "int", - "id": 8, - "offset": 216, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 365357953 - }, - "m_maxPointsPerMatch": { - "type": "unsigned int", - "id": 9, - "offset": 280, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1397040900 - }, - "m_estimatedWeight": { - "type": "float", - "id": 10, - "offset": 284, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1374360127 - }, - "m_matchInfo": { - "type": "class SharedPointer", - "id": 11, - "offset": 256, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2424135306 - }, - "m_awardInfo": { - "type": "class SharedPointer", - "id": 12, - "offset": 224, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2862912855 - }, - "m_perLeagueAwardInfo": { - "type": "class SharedPointer", - "id": 13, - "offset": 240, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1635456322 - }, - "m_zones": { - "type": "std::string", - "id": 14, - "offset": 288, - "flags": 268435463, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2315938538, - "enum_options": { - "__BASECLASS": "ZoneData" - } - }, - "m_initialQueueThreshold": { - "type": "unsigned int", - "id": 15, - "offset": 312, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2069737705 - }, - "m_actorQueueTimeout": { - "type": "unsigned int", - "id": 16, - "offset": 316, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2220949042 - }, - "m_teamQueueTimeout": { - "type": "unsigned int", - "id": 17, - "offset": 320, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 905233664 - }, - "m_actorQueueGrowth": { - "type": "float", - "id": 18, - "offset": 324, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 499165488 - }, - "m_teamQueueGrowth": { - "type": "float", - "id": 19, - "offset": 328, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1500499518 - }, - "m_matchMakingLevelMultiplier": { - "type": "float", - "id": 20, - "offset": 332, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 838900890 - }, - "m_levelModifiersListID": { - "type": "gid", - "id": 21, - "offset": 336, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 383459035 - }, - "m_incompleteTeamTimeout": { - "type": "unsigned int", - "id": 22, - "offset": 276, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1580576011 - }, - "m_incompleteMatchTimeout": { - "type": "unsigned int", - "id": 23, - "offset": 272, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2167303729 - }, - "m_shortMatchDurationForPenaltySeconds": { - "type": "unsigned int", - "id": 24, - "offset": 360, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1403927011 - }, - "m_thresholdForExtendingMatchSearch": { - "type": "unsigned int", - "id": 25, - "offset": 364, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1973589002 - }, - "m_numberOfPlayersRequiredToExtendMatchSearch": { - "type": "unsigned int", - "id": 26, - "offset": 368, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 858588026 - }, - "m_showStatusOnJoinQueue": { - "type": "bool", - "id": 27, - "offset": 376, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1803391338 - }, - "m_allowExceedRangeForMatchesOptionForPlayers": { - "type": "bool", - "id": 28, - "offset": 377, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 592913977 - }, - "m_makeTeamsWithSameMatchOptsTimeoutSec": { - "type": "int", - "id": 29, - "offset": 372, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1787977769 - }, - "m_streakSize": { - "type": "int", - "id": 30, - "offset": 380, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1155220287 - }, - "m_historySize": { - "type": "int", - "id": 31, - "offset": 384, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 229055111 - }, - "m_queueWaitingTime": { - "type": "int", - "id": 32, - "offset": 388, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 15229089 - }, - "m_minQueueSize": { - "type": "int", - "id": 33, - "offset": 392, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1319267550 - }, - "m_maxQueueSize": { - "type": "int", - "id": 34, - "offset": 396, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1277586976 - }, - "m_confTierRankTimeout": { - "type": "int", - "id": 35, - "offset": 400, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 79057063 - }, - "m_matchTimer": { - "type": "float", - "id": 36, - "offset": 404, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1510935909 - }, - "m_bonusTime": { - "type": "int", - "id": 37, - "offset": 408, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1757496496 - }, - "m_passPenalty": { - "type": "int", - "id": 38, - "offset": 412, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 982951662 - }, - "m_yellowTime": { - "type": "int", - "id": 39, - "offset": 416, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1017028741 - }, - "m_redTime": { - "type": "int", - "id": 40, - "offset": 420, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1909556708 - }, - "m_minTurnTime": { - "type": "int", - "id": 41, - "offset": 424, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 652524886 - }, - "m_effects": { - "type": "class SharedPointer", - "id": 42, - "offset": 432, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 804962647 - }, - "m_updateBattlePassPoints": { - "type": "bool", - "id": 43, - "offset": 456, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 713306342 - }, - "m_battlePassWinPoints": { - "type": "int", - "id": 44, - "offset": 460, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1252337240 - }, - "m_battlePassLosePoints": { - "type": "int", - "id": 45, - "offset": 464, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1400839869 - } - } - }, - "699043223": { - "name": "class AddHangingCinematicStageTemplate", - "bases": [ - "CinematicStageTemplate", - "PropertyClass" - ], - "hash": 699043223, - "properties": { - "m_name": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1717359772 - }, - "m_duration": { - "type": "float", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 920323453 - }, - "m_actions": { - "type": "class SharedPointer", - "id": 2, - "offset": 112, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1380578687 - }, - "m_stageRelationships": { - "type": "class SharedPointer", - "id": 3, - "offset": 128, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 499983354 - }, - "m_hanging": { - "type": "std::string", - "id": 4, - "offset": 152, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3233478999 - }, - "m_protection": { - "type": "std::string", - "id": 5, - "offset": 184, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1874970946 - }, - "m_sound": { - "type": "std::string", - "id": 6, - "offset": 216, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2307644996 - }, - "m_burnSound": { - "type": "std::string", - "id": 7, - "offset": 248, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1827806971 - }, - "m_stopRotating": { - "type": "bool", - "id": 8, - "offset": 282, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 13587553 - }, - "m_startRotating": { - "type": "bool", - "id": 9, - "offset": 283, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 839204969 - }, - "m_spellText": { - "type": "std::string", - "id": 10, - "offset": 288, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2688705600 - }, - "m_bSwitchCameraToWideLong": { - "type": "bool", - "id": 11, - "offset": 280, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2136912684, - "enum_options": { - "__DEFAULT": 1 - } - }, - "m_announcesSpell": { - "type": "bool", - "id": 12, - "offset": 281, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 652261533, - "enum_options": { - "__DEFAULT": 1 - } - } - } - }, - "1474093569": { - "name": "class CombatPetXPEffectTemplate*", - "bases": [ - "GameEffectTemplate", - "PropertyClass" - ], - "hash": 1474093569, - "properties": { - "m_effectName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2029161513 - }, - "m_effectCategory": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1852673222 - }, - "m_sortOrder": { - "type": "int", - "id": 2, - "offset": 148, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1411218206 - }, - "m_duration": { - "type": "double", - "id": 3, - "offset": 192, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2727932435 - }, - "m_stackingCategories": { - "type": "std::string", - "id": 4, - "offset": 160, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1774497525 - }, - "m_isPersistent": { - "type": "bool", - "id": 5, - "offset": 153, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 923861920 - }, - "m_bIsOnPet": { - "type": "bool", - "id": 6, - "offset": 154, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 522593303 - }, - "m_isPublic": { - "type": "bool", - "id": 7, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1728439822 - }, - "m_visualEffectAddName": { - "type": "std::string", - "id": 8, - "offset": 200, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3382086694 - }, - "m_visualEffectRemoveName": { - "type": "std::string", - "id": 9, - "offset": 232, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1541697323 - }, - "m_onAddFunctorName": { - "type": "std::string", - "id": 10, - "offset": 280, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1561843107 - }, - "m_onRemoveFunctorName": { - "type": "std::string", - "id": 11, - "offset": 312, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2559017864 - }, - "m_stackingRule": { - "type": "enum STACKING_RULE", - "id": 12, - "offset": 144, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 431568889, - "enum_options": { - "STACKING_ALLOWED": 0, - "STACKING_NOSTACK": 1, - "STACKING_REPLACE": 2 - } - }, - "m_lootTableName": { - "type": "std::string", - "id": 13, - "offset": 360, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2333333378 - } - } - }, - "1873728014": { - "name": "class WindowHelp", - "bases": [ - "ControlText", - "Window", - "PropertyClass" - ], - "hash": 1873728014, - "properties": { - "m_sName": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306437263 - }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621225959 - }, - "m_Style": { - "type": "unsigned int", - "id": 2, - "offset": 152, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152, - "DO_NOT_WRAP": 134217728, - "FIT_TEXT": 268435456 - } - }, - "m_Flags": { - "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } - }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3105139380 - }, - "m_fTargetAlpha": { - "type": "float", - "id": 5, - "offset": 212, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1809129834 - }, - "m_fDisabledAlpha": { - "type": "float", - "id": 6, - "offset": 216, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1389987675 - }, - "m_fAlpha": { - "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 482130755 - }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3623628394 - }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2102211316 - }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1846695875 - }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3389835433 - }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2547159940 - }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2587533771 - }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3091503757 - }, - "m_sText": { - "type": "std::wstring", - "id": 16, - "offset": 584, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2102642960 - }, - "m_sTooltip": { - "type": "std::wstring", - "id": 17, - "offset": 616, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1680475798 - }, - "m_bUseDropShadow": { - "type": "bool", - "id": 18, - "offset": 653, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 93063037 - }, - "m_bUseOutline": { - "type": "bool", - "id": 19, - "offset": 654, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 744292994 - }, - "m_bEnableWordWrap": { - "type": "bool", - "id": 20, - "offset": 655, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 430904562 - }, - "m_bEnableToggle": { - "type": "bool", - "id": 21, - "offset": 652, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1937994142 - }, - "m_nLeadingAdjust": { - "type": "int", - "id": 22, - "offset": 656, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1559480167 - } - } - }, - "695766573": { - "name": "class WhirlyBurlyKioskBehaviorTemplate*", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 695766573, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - } - } - }, - "285844797": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 285844797, - "properties": {} - }, - "285236358": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 285236358, - "properties": { - "m_playerID": { - "type": "gid", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1774633426 - }, - "m_nameBlob": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3058206907 - }, - "m_status": { - "type": "enum BGGroupStatusEnum", - "id": 2, - "offset": 112, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1016087325, - "enum_options": { - "BGS_Checking": 0, - "BGS_Ready": 1, - "BGS_LowLevel": 2, - "BGS_Cheater": 3, - "BGS_OnCooldown": 4, - "BGS_QueuedForBG": 5, - "BGS_QueuedForPVP": 6, - "BGS_Disconnected": 7, - "BGS_LeftGroup": 8, - "BGS_GroupToBig": 9, - "BGS_Unavailable": 10 - } - } - } - }, - "695605721": { - "name": "enum CastleMagicSpellTemplate::CastleMagicSpellEffect", - "bases": [], - "hash": 695605721, - "properties": {} - }, - "287567362": { - "name": "class PlayList", - "bases": [ - "PropertyClass" - ], - "hash": 287567362, - "properties": { - "m_progression": { - "type": "enum PlayList::Progression", - "id": 0, - "offset": 72, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3279400238, - "enum_options": { - "Sequence": 0, - "Random": 1, - "SequenceOnceOnly": 2, - "RandomNoRepeat": 3 - } - }, - "m_currentTrack": { - "type": "int", - "id": 1, - "offset": 76, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 652542482 - }, - "m_trackFilenameList": { - "type": "class PlayListEntry*", - "id": 2, - "offset": 80, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 3167512201 - } - } - }, - "698487057": { - "name": "class SharedPointer", - "bases": [ - "PathBehaviorTemplate::Action", - "PropertyClass" - ], - "hash": 698487057, - "properties": { - "m_nPathID": { - "type": "gid", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 214382368 - }, - "m_nNodeID": { - "type": "int", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 152152635, - "enum_options": { - "__DEFAULT": 4294967295 - } - }, - "m_nPriority": { - "type": "int", - "id": 2, - "offset": 84, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1515251530, - "enum_options": { - "__DEFAULT": 100 - } - }, - "m_nChance": { - "type": "int", - "id": 3, - "offset": 88, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1860748394, - "enum_options": { - "__DEFAULT": 50 - } - }, - "m_fMinPauseTime": { - "type": "float", - "id": 4, - "offset": 96, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 388964206 - }, - "m_fMaxPauseTime": { - "type": "float", - "id": 5, - "offset": 100, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 347283632 - } - } - }, - "287566978": { - "name": "class PlayList*", - "bases": [ - "PropertyClass" - ], - "hash": 287566978, - "properties": { - "m_progression": { - "type": "enum PlayList::Progression", - "id": 0, - "offset": 72, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3279400238, - "enum_options": { - "Sequence": 0, - "Random": 1, - "SequenceOnceOnly": 2, - "RandomNoRepeat": 3 - } - }, - "m_currentTrack": { - "type": "int", - "id": 1, - "offset": 76, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 652542482 - }, - "m_trackFilenameList": { - "type": "class PlayListEntry*", - "id": 2, - "offset": 80, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 3167512201 - } - } - }, - "696200388": { - "name": "class ProvideCombatTrigger*", - "bases": [ - "GameEffectBase", - "PropertyClass" - ], - "hash": 696200388, - "properties": { - "m_currentTickCount": { - "type": "double", - "id": 0, - "offset": 80, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2533274692 - }, - "m_effectNameID": { - "type": "unsigned int", - "id": 1, - "offset": 96, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1204067144 - }, - "m_bIsOnPet": { - "type": "bool", - "id": 2, - "offset": 73, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 522593303 - }, - "m_originatorID": { - "type": "gid", - "id": 3, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1131810019 - }, - "m_itemSlotID": { - "type": "unsigned int", - "id": 4, - "offset": 112, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1895747595 - }, - "m_internalID": { - "type": "int", - "id": 5, - "offset": 92, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1643137924 - }, - "m_endTime": { - "type": "unsigned int", - "id": 6, - "offset": 88, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 716479635 - }, - "m_triggerName": { - "type": "std::string", - "id": 7, - "offset": 128, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3100183568 - } - } - }, - "696200428": { - "name": "class ProvideCombatTrigger", - "bases": [ - "GameEffectBase", - "PropertyClass" - ], - "hash": 696200428, - "properties": { - "m_currentTickCount": { - "type": "double", - "id": 0, - "offset": 80, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2533274692 - }, - "m_effectNameID": { - "type": "unsigned int", - "id": 1, - "offset": 96, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1204067144 - }, - "m_bIsOnPet": { - "type": "bool", - "id": 2, - "offset": 73, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 522593303 - }, - "m_originatorID": { - "type": "gid", - "id": 3, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1131810019 - }, - "m_itemSlotID": { - "type": "unsigned int", - "id": 4, - "offset": 112, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1895747595 - }, - "m_internalID": { - "type": "int", - "id": 5, - "offset": 92, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1643137924 - }, - "m_endTime": { - "type": "unsigned int", - "id": 6, - "offset": 88, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 716479635 - }, - "m_triggerName": { - "type": "std::string", - "id": 7, - "offset": 128, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3100183568 - } - } - }, - "288192319": { - "name": "class SharedPointer", - "bases": [ - "GeomParams", - "PropertyClass" - ], - "hash": 288192319, - "properties": { - "m_eType": { - "type": "enum ProxyType", - "id": 0, - "offset": 72, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1656534066, - "enum_options": { - "ProxyTypeBox": 0, - "ProxyTypeRay": 1, - "ProxyTypeSphere": 2, - "ProxyTypeCylinder": 3, - "ProxyTypeTube": 4, - "ProxyTypePlane": 5, - "ProxyTypeMesh": 6, - "ProxyTypeInvalid": 7 - } - } - } - }, - "288095203": { - "name": "class SharedPointer", - "bases": [ - "TrainBehaviorBase", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 288095203, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_trainData": { - "type": "std::string", - "id": 1, - "offset": 128, - "flags": 575, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2994039667 - } - } - }, - "698845303": { - "name": "class PathBehaviorClient*", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 698845303, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - } - } - }, - "288503149": { - "name": "class SpellNifSoundOverride*", - "bases": [ - "PropertyClass" - ], - "hash": 288503149, - "properties": { - "m_sSpell": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2419867822 - }, - "m_sNif": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1717518635 - }, - "m_sSound": { - "type": "std::string", - "id": 2, - "offset": 136, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2419849367 - }, - "m_bOverride": { - "type": "bool", - "id": 3, - "offset": 168, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 589970005 - } - } - }, - "699404163": { - "name": "class PipFloatingTextCinematicAction*", - "bases": [ - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 699404163, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - } - } - }, - "288501869": { - "name": "class SpellNifSoundOverride", - "bases": [ - "PropertyClass" - ], - "hash": 288501869, - "properties": { - "m_sSpell": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2419867822 - }, - "m_sNif": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1717518635 - }, - "m_sSound": { - "type": "std::string", - "id": 2, - "offset": 136, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2419849367 - }, - "m_bOverride": { - "type": "bool", - "id": 3, - "offset": 168, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 589970005 - } - } - }, - "1526340221": { - "name": "class ClientCSRRegistryList", - "bases": [ - "PropertyClass" - ], - "hash": 1526340221, - "properties": { - "m_propertyList": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 23, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2832578002 - } - } - }, - "699514598": { - "name": "class WizardStatTable", - "bases": [ - "PropertyClass" - ], - "hash": 699514598, - "properties": { - "m_tableName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3581058436 - }, - "m_schoolName": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3385349572 - }, - "m_modifyAll": { - "type": "bool", - "id": 2, - "offset": 140, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1269044724 - }, - "m_statType": { - "type": "enum WizardStatTable::STAT_TYPE", - "id": 3, - "offset": 144, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2100000712, - "enum_options": { - "STAT_TYPE_DAMAGE": 0, - "STAT_TYPE_ACCURACY": 1, - "STAT_TYPE_ARMOR_PIERCING": 2, - "STAT_TYPE_REDUCED_DAMAGE": 3, - "STAT_TYPE_REDUCED_ACCURACY": 4, - "STAT_TYPE_HEALING": 5, - "STAT_TYPE_POWER_PIP_CHANCE": 6, - "STAT_TYPE_MAX_MANA": 7, - "STAT_TYPE_MAX_HEALTH": 8, - "STAT_TYPE_PET_ACT_CHANCE": 9, - "STAT_TYPE_FLATDAMAGE": 10, - "STAT_TYPE_INC_HEALING": 11, - "STAT_TYPE_REDUCED_MAX_MANA": 12, - "STAT_TYPE_XP_PERCENT": 13, - "STAT_TYPE_GOLD_PERCENT": 14, - "STAT_TYPE_MAX_ENERGY": 15, - "STAT_TYPE_CRITICAL_HIT_RATING": 16, - "STAT_TYPE_BLOCK_RATING": 17, - "STAT_TYPE_ACCURACY_RATING": 18, - "STAT_TYPE_POWER_PIP_RATING": 19, - "STAT_TYPE_DAMAGE_RESISTANCE_RATING": 20, - "STAT_TYPE_BALANCE_MASTERY": 21, - "STAT_TYPE_DEATH_MASTERY": 22, - "STAT_TYPE_FIRE_MASTERY": 23, - "STAT_TYPE_ICE_MASTERY": 24, - "STAT_TYPE_LIFE_MASTERY": 25, - "STAT_TYPE_MYTH_MASTERY": 26, - "STAT_TYPE_STORM_MASTERY": 27, - "STAT_TYPE_STUN_RESISTANCE": 28, - "STAT_TYPE_FISHING_LUCK": 29, - "STAT_TYPE_SHADOW_PIP_CHANCE": 30, - "STAT_TYPE_REDUCED_DAMAGE_FLAT": 31, - "STAT_TYPE_WISP_BONUS": 32, - "STAT_TYPE_PIP_CONVERSION": 33, - "STAT_TYPE_SHADOW_PIP_RATING": 34, - "STAT_TYPE_ARCHMASTERY": 35, - "STAT_TYPE_ARCHMASTERY_PERCENTAGE": 36 - } - }, - "m_statVector": { - "type": "float", - "id": 4, - "offset": 152, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2189012326 - } - } - }, - "291344695": { - "name": "class SharedPointer", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 291344695, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - } - } - }, - "699509478": { - "name": "class WizardStatTable*", - "bases": [ - "PropertyClass" - ], - "hash": 699509478, - "properties": { - "m_tableName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3581058436 - }, - "m_schoolName": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3385349572 - }, - "m_modifyAll": { - "type": "bool", - "id": 2, - "offset": 140, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1269044724 - }, - "m_statType": { - "type": "enum WizardStatTable::STAT_TYPE", - "id": 3, - "offset": 144, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2100000712, - "enum_options": { - "STAT_TYPE_DAMAGE": 0, - "STAT_TYPE_ACCURACY": 1, - "STAT_TYPE_ARMOR_PIERCING": 2, - "STAT_TYPE_REDUCED_DAMAGE": 3, - "STAT_TYPE_REDUCED_ACCURACY": 4, - "STAT_TYPE_HEALING": 5, - "STAT_TYPE_POWER_PIP_CHANCE": 6, - "STAT_TYPE_MAX_MANA": 7, - "STAT_TYPE_MAX_HEALTH": 8, - "STAT_TYPE_PET_ACT_CHANCE": 9, - "STAT_TYPE_FLATDAMAGE": 10, - "STAT_TYPE_INC_HEALING": 11, - "STAT_TYPE_REDUCED_MAX_MANA": 12, - "STAT_TYPE_XP_PERCENT": 13, - "STAT_TYPE_GOLD_PERCENT": 14, - "STAT_TYPE_MAX_ENERGY": 15, - "STAT_TYPE_CRITICAL_HIT_RATING": 16, - "STAT_TYPE_BLOCK_RATING": 17, - "STAT_TYPE_ACCURACY_RATING": 18, - "STAT_TYPE_POWER_PIP_RATING": 19, - "STAT_TYPE_DAMAGE_RESISTANCE_RATING": 20, - "STAT_TYPE_BALANCE_MASTERY": 21, - "STAT_TYPE_DEATH_MASTERY": 22, - "STAT_TYPE_FIRE_MASTERY": 23, - "STAT_TYPE_ICE_MASTERY": 24, - "STAT_TYPE_LIFE_MASTERY": 25, - "STAT_TYPE_MYTH_MASTERY": 26, - "STAT_TYPE_STORM_MASTERY": 27, - "STAT_TYPE_STUN_RESISTANCE": 28, - "STAT_TYPE_FISHING_LUCK": 29, - "STAT_TYPE_SHADOW_PIP_CHANCE": 30, - "STAT_TYPE_REDUCED_DAMAGE_FLAT": 31, - "STAT_TYPE_WISP_BONUS": 32, - "STAT_TYPE_PIP_CONVERSION": 33, - "STAT_TYPE_SHADOW_PIP_RATING": 34, - "STAT_TYPE_ARCHMASTERY": 35, - "STAT_TYPE_ARCHMASTERY_PERCENTAGE": 36 - } - }, - "m_statVector": { - "type": "float", - "id": 4, - "offset": 152, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2189012326 - } - } - }, - "290313930": { - "name": "class ClientMoveActorCinematicAction*", - "bases": [ - "MoveActorCinematicAction", - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 290313930, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - }, - "m_destinationActor": { - "type": "std::string", - "id": 2, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1510240374 - }, - "m_interpolationDuration": { - "type": "float", - "id": 3, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1458058437 - }, - "m_interpolateRotation": { - "type": "bool", - "id": 4, - "offset": 156, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2140337898 - }, - "m_kDestination": { - "type": "enum MoveActorCinematicAction::kMoveActorDestination", - "id": 5, - "offset": 160, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2027574244, - "enum_options": { - "kCenter": 0, - "kHome": 3, - "kActor": 1, - "kActorHangingEffect": 2 - } - }, - "m_destinationZOffset": { - "type": "float", - "id": 6, - "offset": 164, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2188240922 - } - } - }, - "289300862": { - "name": "class ClientAddAuraCinematicAction", - "bases": [ - "AddAuraCinematicAction", - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 289300862, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - }, - "m_effect": { - "type": "std::string", - "id": 2, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1894145160 - } - } - }, - "289294718": { - "name": "class ClientAddAuraCinematicAction*", - "bases": [ - "AddAuraCinematicAction", - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 289294718, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - }, - "m_effect": { - "type": "std::string", - "id": 2, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1894145160 - } - } - }, - "701229577": { - "name": "class WizGameObjectTemplate", - "bases": [ - "GameObjectTemplate", - "CoreTemplate", - "PropertyClass" - ], - "hash": 701229577, - "properties": { - "m_behaviors": { - "type": "class BehaviorTemplate*", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1197808594 - }, - "m_objectName": { - "type": "std::string", - "id": 1, - "offset": 96, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2154940147 - }, - "m_templateID": { - "type": "unsigned int", - "id": 2, - "offset": 128, - "flags": 16777223, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1286746870 - }, - "m_visualID": { - "type": "unsigned int", - "id": 3, - "offset": 132, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1118778894 - }, - "m_adjectiveList": { - "type": "std::string", - "id": 4, - "offset": 248, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 3195213318 - }, - "m_exemptFromAOI": { - "type": "bool", - "id": 5, - "offset": 240, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1457879059 - }, - "m_displayName": { - "type": "std::string", - "id": 6, - "offset": 168, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2446900370 - }, - "m_description": { - "type": "std::string", - "id": 7, - "offset": 136, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1649374815 - }, - "m_nObjectType": { - "type": "enum ObjectType", - "id": 8, - "offset": 200, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2118905880, - "enum_options": { - "OT_UNDEFINED": 0, - "OT_PLAYER": 1, - "OT_NPC": 2, - "OT_PROP": 3, - "OT_OBJECT": 4, - "OT_HOUSE": 5, - "OT_KEY": 6, - "OT_OLD_KEY": 7, - "OT_DEED": 8, - "OT_MAIL": 9, - "OT_RECIPE": 17, - "OT_EQUIP_HEAD": 10, - "OT_EQUIP_CHEST": 11, - "OT_EQUIP_LEGS": 12, - "OT_EQUIP_HANDS": 13, - "OT_EQUIP_FINGER": 14, - "OT_EQUIP_FEET": 15, - "OT_EQUIP_EAR": 16, - "OT_BUILDING_BLOCK": 18, - "OT_BUILDING_BLOCK_SOLID": 19, - "OT_GOLF": 20, - "OT_DOOR": 21, - "OT_PET": 22, - "OT_FABRIC": 23, - "OT_WINDOW": 24, - "OT_ROOF": 25, - "OT_HORSE": 26, - "OT_STRUCTURE": 27, - "OT_HOUSING_TEXTURE": 28, - "OT_PLANT": 29 - } - }, - "m_sIcon": { - "type": "std::string", - "id": 9, - "offset": 208, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306259831 - }, - "m_lootTable": { - "type": "std::string", - "id": 10, - "offset": 280, - "flags": 268435463, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2539512673, - "enum_options": { - "__BASECLASS": "LootTable" - } - }, - "m_deathParticles": { - "type": "std::string", - "id": 11, - "offset": 296, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3201049672 - }, - "m_deathSound": { - "type": "std::string", - "id": 12, - "offset": 328, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1865613610 - }, - "m_hitSound": { - "type": "std::string", - "id": 13, - "offset": 360, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2746656777 - }, - "m_castSound": { - "type": "std::string", - "id": 14, - "offset": 392, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3343064815 - }, - "m_aggroSound": { - "type": "std::string", - "id": 15, - "offset": 424, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3421949940 - }, - "m_primarySchoolName": { - "type": "std::string", - "id": 16, - "offset": 456, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3211370408 - }, - "m_locationPreference": { - "type": "std::string", - "id": 17, - "offset": 488, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2817699507 - }, - "m_leashOffsetOverride": { - "type": "class SharedPointer", - "id": 18, - "offset": 528, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1692586788 - } - } - }, - "288921992": { - "name": "class ProvidePetPowerInfo", - "bases": [ - "GameEffectInfo", - "PropertyClass" - ], - "hash": 288921992, - "properties": { - "m_effectName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2029161513 - }, - "m_happinessCost": { - "type": "int", - "id": 1, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1107125310 - }, - "m_cooldown": { - "type": "int", - "id": 2, - "offset": 108, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1897549823 - }, - "m_usesPerCombat": { - "type": "int", - "id": 3, - "offset": 112, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1445312791 - }, - "m_unlockedTemplate": { - "type": "std::string", - "id": 4, - "offset": 120, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1809846764 - }, - "m_lockedTemplate": { - "type": "std::string", - "id": 5, - "offset": 152, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2044999913 - }, - "m_combatTalent": { - "type": "bool", - "id": 6, - "offset": 184, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2113651857 - }, - "m_triggerName": { - "type": "std::string", - "id": 7, - "offset": 192, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3100183568 - }, - "m_unlockReagentAmount1": { - "type": "int", - "id": 8, - "offset": 224, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1546338481 - }, - "m_unlockReagentTemplate1": { - "type": "unsigned int", - "id": 9, - "offset": 228, - "flags": 33554463, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 943550188 - }, - "m_unlockReagentAmount2": { - "type": "int", - "id": 10, - "offset": 232, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1546338482 - }, - "m_unlockReagentTemplate2": { - "type": "unsigned int", - "id": 11, - "offset": 236, - "flags": 33554463, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 943550189 - }, - "m_unlockReagentAmount3": { - "type": "int", - "id": 12, - "offset": 240, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1546338483 - }, - "m_unlockReagentTemplate3": { - "type": "unsigned int", - "id": 13, - "offset": 244, - "flags": 33554463, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 943550190 - }, - "m_unlockReagentAmount4": { - "type": "int", - "id": 14, - "offset": 248, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1546338484 - }, - "m_unlockReagentTemplate4": { - "type": "unsigned int", - "id": 15, - "offset": 252, - "flags": 33554463, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 943550191 - }, - "m_extra1": { - "type": "std::string", - "id": 16, - "offset": 256, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1916008880 - }, - "m_extra2": { - "type": "std::string", - "id": 17, - "offset": 288, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1916008881 - }, - "m_lootTableName": { - "type": "std::string", - "id": 18, - "offset": 320, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2333333378 - }, - "m_powerDisplayName": { - "type": "std::string", - "id": 19, - "offset": 352, - "flags": 8388639, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2338393887 - }, - "m_requirementList": { - "type": "class SharedPointer", - "id": 20, - "offset": 384, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3783909798 - }, - "m_requirementFailedString": { - "type": "std::string", - "id": 21, - "offset": 400, - "flags": 8388639, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2051573416 - }, - "m_noPVP": { - "type": "bool", - "id": 22, - "offset": 436, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 806455846 - }, - "m_rampUp": { - "type": "int", - "id": 23, - "offset": 440, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 899539119 - }, - "m_description": { - "type": "std::string", - "id": 24, - "offset": 448, - "flags": 8388639, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1649374815 - }, - "m_myTurn": { - "type": "bool", - "id": 25, - "offset": 480, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 733913410 - } - } - }, - "702487858": { - "name": "class LevelUpElixirPropertyRegistryEntry", - "bases": [ - "PropertyClass" - ], - "hash": 702487858, - "properties": { - "m_registryEntryName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1765562503 - }, - "m_value": { - "type": "int", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 812990455 - }, - "m_questRegistry": { - "type": "bool", - "id": 2, - "offset": 108, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1043261502 - }, - "m_questName": { - "type": "std::string", - "id": 3, - "offset": 112, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1702112846 - } - } - }, - "702053765": { - "name": "class SharedPointer", - "bases": [ - "ServiceOptionBase", - "PropertyClass" - ], - "hash": 702053765, - "properties": { - "m_serviceName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2206028813 - }, - "m_iconKey": { - "type": "std::string", - "id": 1, - "offset": 168, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2457138637 - }, - "m_displayKey": { - "type": "std::string", - "id": 2, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3023276954 - }, - "m_serviceIndex": { - "type": "unsigned int", - "id": 3, - "offset": 204, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2103126710 - }, - "m_forceInteract": { - "type": "bool", - "id": 4, - "offset": 200, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1705789564 - }, - "m_persona": { - "type": "std::string", - "id": 5, - "offset": 216, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2989527539 - } - } - }, - "290034604": { - "name": "class std::list >", - "bases": [], - "hash": 290034604, - "properties": {} - }, - "701416188": { - "name": "class SharedPointer", - "bases": [ - "SpellEffect", - "PropertyClass" - ], - "hash": 701416188, - "properties": { - "m_effectType": { - "type": "enum SpellEffect::kSpellEffects", - "id": 0, - "offset": 72, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2578255295, - "enum_options": { - "kInvalidSpellEffect": 0, - "kDamage": 1, - "kDamageNoCrit": 2, - "kHeal": 3, - "kHealPercent": 4, - "kSetHealPercent": 113, - "kStealHealth": 5, - "kReduceOverTime": 6, - "kDetonateOverTime": 7, - "kPushCharm": 8, - "kStealCharm": 9, - "kPushWard": 10, - "kStealWard": 11, - "kPushOverTime": 12, - "kStealOverTime": 13, - "kRemoveCharm": 14, - "kRemoveWard": 15, - "kRemoveOverTime": 16, - "kRemoveAura": 17, - "kSwapAll": 18, - "kSwapCharm": 19, - "kSwapWard": 20, - "kSwapOverTime": 21, - "kModifyIncomingDamage": 22, - "kModifyIncomingDamageFlat": 119, - "kMaximumIncomingDamage": 23, - "kModifyIncomingHeal": 24, - "kModifyIncomingHealFlat": 118, - "kModifyIncomingDamageType": 25, - "kModifyIncomingArmorPiercing": 26, - "kModifyOutgoingDamage": 27, - "kModifyOutgoingDamageFlat": 121, - "kModifyOutgoingHeal": 28, - "kModifyOutgoingHealFlat": 120, - "kModifyOutgoingDamageType": 29, - "kModifyOutgoingArmorPiercing": 30, - "kModifyOutgoingStealHealth": 31, - "kModifyIncomingStealHealth": 32, - "kBounceNext": 33, - "kBouncePrevious": 34, - "kBounceBack": 35, - "kBounceAll": 36, - "kAbsorbDamage": 37, - "kAbsorbHeal": 38, - "kModifyAccuracy": 39, - "kDispel": 40, - "kConfusion": 41, - "kCloakedCharm": 42, - "kCloakedWard": 43, - "kStunResist": 44, - "kClue": 111, - "kPipConversion": 45, - "kCritBoost": 46, - "kCritBlock": 47, - "kPolymorph": 48, - "kDelayCast": 49, - "kModifyCardCloak": 50, - "kModifyCardDamage": 51, - "kModifyCardAccuracy": 53, - "kModifyCardMutation": 54, - "kModifyCardRank": 55, - "kModifyCardArmorPiercing": 56, - "kSummonCreature": 65, - "kTeleportPlayer": 66, - "kStun": 67, - "kDampen": 68, - "kReshuffle": 69, - "kMindControl": 70, - "kModifyPips": 71, - "kModifyPowerPips": 72, - "kModifyShadowPips": 73, - "kModifyHate": 74, - "kDamageOverTime": 75, - "kHealOverTime": 76, - "kModifyPowerPipChance": 77, - "kModifyRank": 78, - "kStunBlock": 79, - "kRevealCloak": 80, - "kInstantKill": 81, - "kAfterlife": 82, - "kDeferredDamage": 83, - "kDamagePerTotalPipPower": 84, - "kModifyCardHeal": 52, - "kModifyCardCharm": 57, - "kModifyCardWard": 58, - "kModifyCardOutgoingDamage": 59, - "kModifyCardOutgoingAccuracy": 60, - "kModifyCardOutgoingHeal": 61, - "kModifyCardOutgoingArmorPiercing": 62, - "kModifyCardIncomingDamage": 63, - "kModifyCardAbsorbDamage": 64, - "kCloakedWardNoRemove": 86, - "kAddCombatTriggerList": 87, - "kRemoveCombatTriggerList": 88, - "kBacklashDamage": 89, - "kModifyBacklash": 90, - "kIntercept": 91, - "kShadowSelf": 92, - "kShadowCreature": 93, - "kModifyShadowCreatureLevel": 94, - "kSelectShadowCreatureAttackTarget": 95, - "kShadowDecrementTurn": 96, - "kCritBoostSchoolSpecific": 97, - "kSpawnCreature": 98, - "kUnPolymorph": 99, - "kPowerPipConversion": 100, - "kProtectCardBeneficial": 101, - "kProtectCardHarmful": 102, - "kProtectBeneficial": 103, - "kProtectHarmful": 104, - "kDivideDamage": 105, - "kCollectEssence": 106, - "kKillCreature": 107, - "kDispelBlock": 108, - "kConfusionBlock": 109, - "kModifyPipRoundRate": 110, - "kMaxHealthDamage": 112, - "kUntargetable": 114, - "kMakeTargetable": 115, - "kForceTargetable": 116, - "kRemoveStunBlock": 117, - "kExitCombat": 122, - "kSuspendPips": 123, - "kResumePips": 124, - "kAutoPass": 125, - "kStopAutoPass": 126, - "kVanish": 127, - "kStopVanish": 128, - "kMaxHealthHeal": 129, - "kHealByWard": 130, - "kTaunt": 131, - "kPacify": 132, - "kRemoveTargetRestriction": 133, - "kConvertHangingEffect": 134, - "kAddSpellToDeck": 135, - "kAddSpellToHand": 136, - "kModifyIncomingDamageOverTime": 137, - "kModifyIncomingHealOverTime": 138, - "kModifyCardDamagebyRank": 139, - "kPushConvertedCharm": 140, - "kStealConvertedCharm": 141, - "kPushConvertedWard": 142, - "kStealConvertedWard": 143, - "kPushConvertedOverTime": 144, - "kStealConvertedOverTime": 145, - "kRemoveConvertedCharm": 146, - "kRemoveConvertedWard": 147, - "kRemoveConvertedOverTime": 148, - "kModifyOverTimeDuration": 149, - "kModifySchoolPips": 150 - } - }, - "m_effectParam": { - "type": "int", - "id": 1, - "offset": 76, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 357920024 - }, - "m_disposition": { - "type": "enum SpellEffect::kHangingDisposition", - "id": 2, - "offset": 80, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1904841031, - "enum_options": { - "kBoth": 0, - "kBeneficial": 1, - "kHarmful": 2 - } - }, - "m_sDamageType": { - "type": "std::string", - "id": 3, - "offset": 88, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2501054223 - }, - "m_damageType": { - "type": "unsigned int", - "id": 4, - "offset": 84, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 737882766 - }, - "m_pipNum": { - "type": "int", - "id": 5, - "offset": 128, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 830827539 - }, - "m_actNum": { - "type": "int", - "id": 6, - "offset": 132, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 236824866 - }, - "m_effectTarget": { - "type": "enum SpellEffect::kEffectTarget", - "id": 7, - "offset": 140, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2458940523, - "enum_options": { - "kInvalidTarget": 0, - "kSpell": 1, - "kSpecificSpells": 2, - "kGlobal": 3, - "kEnemyTeam": 4, - "kEnemyTeamAllAtOnce": 5, - "kFriendlyTeam": 6, - "kFriendlyTeamAllAtOnce": 7, - "kEnemySingle": 8, - "kFriendlySingle": 9, - "kMinion": 10, - "kFriendlyMinion": 17, - "kEnemyMinion": 18, - "kSelf": 11, - "kAtLeastOneEnemy": 13, - "kPreselectedEnemySingle": 12, - "kMultiTargetEnemy": 14, - "kMultiTargetFriendly": 15, - "kFriendlySingleNotMe": 16 - } - }, - "m_numRounds": { - "type": "int", - "id": 8, - "offset": 144, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1229753829 - }, - "m_paramPerRound": { - "type": "int", - "id": 9, - "offset": 148, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 683234234 - }, - "m_healModifier": { - "type": "float", - "id": 10, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1317921248, - "enum_options": { - "__DEFAULT": "1.0" - } - }, - "m_spellTemplateID": { - "type": "unsigned int", - "id": 11, - "offset": 120, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 585567702 - }, - "m_enchantmentSpellTemplateID": { - "type": "unsigned int", - "id": 12, - "offset": 124, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 246955115 - }, - "m_act": { - "type": "bool", - "id": 13, - "offset": 136, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 269510283 - }, - "m_cloaked": { - "type": "bool", - "id": 14, - "offset": 157, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 7349510 - }, - "m_bypassProtection": { - "type": "bool", - "id": 15, - "offset": 159, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1657138252 - }, - "m_armorPiercingParam": { - "type": "int", - "id": 16, - "offset": 160, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2025530205 - }, - "m_chancePerTarget": { - "type": "int", - "id": 17, - "offset": 164, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 845426794 - }, - "m_protected": { - "type": "bool", - "id": 18, - "offset": 168, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1445655037 - }, - "m_converted": { - "type": "bool", - "id": 19, - "offset": 169, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1590428797 - }, - "m_rank": { - "type": "int", - "id": 20, - "offset": 208, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 219803942 - }, - "m_effectList": { - "type": "class SharedPointer", - "id": 21, - "offset": 224, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 707154804 - } - } - }, - "289844667": { - "name": "MadlibArgT", - "bases": [ - "MadlibArg", - "PropertyClass" - ], - "hash": 289844667, - "properties": { - "m_madlibToken": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3058682373 - }, - "m_madlibArgument": { - "type": "double", - "id": 1, - "offset": 112, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2776302297 - } - } - }, - "702118365": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 702118365, - "properties": { - "m_playerList": { - "type": "gid", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1909774945 - } - } - }, - "290147688": { - "name": "class DuelistBehaviorTemplate", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 290147688, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - }, - "m_npcProximity": { - "type": "float", - "id": 1, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1306880973 - } - } - }, - "400673366": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 400673366, - "properties": { - "m_infoPairs": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1168115310 - } - } - }, - "702486322": { - "name": "class LevelUpElixirPropertyRegistryEntry*", - "bases": [ - "PropertyClass" - ], - "hash": 702486322, - "properties": { - "m_registryEntryName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1765562503 - }, - "m_value": { - "type": "int", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 812990455 - }, - "m_questRegistry": { - "type": "bool", - "id": 2, - "offset": 108, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1043261502 - }, - "m_questName": { - "type": "std::string", - "id": 3, - "offset": 112, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1702112846 - } - } - }, - "290405788": { - "name": "struct Search::ResultData", - "bases": [], - "hash": 290405788, - "properties": {} - }, - "308979895": { - "name": "class SharedPointer", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 308979895, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_containerGID": { - "type": "gid", - "id": 1, - "offset": 112, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 550557519 - }, - "m_atticItemCount": { - "type": "int", - "id": 2, - "offset": 120, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 184605671 - } - } - }, - "703231399": { - "name": "class ActorResurrectCinematicAction", - "bases": [ - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 703231399, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - } - } - }, - "702675844": { - "name": "class ProxyGeometry", - "bases": [ - "PropertyClass" - ], - "hash": 702675844, - "properties": { - "m_sName": { - "type": "std::string", - "id": 0, - "offset": 88, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306437263 - }, - "m_baseOrientation": { - "type": "class Matrix3x3", - "id": 1, - "offset": 176, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1692424809 - }, - "m_basePosition": { - "type": "class Vector3D", - "id": 2, - "offset": 224, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1912112658 - }, - "m_fCurrentScale": { - "type": "float", - "id": 3, - "offset": 236, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 234778792 - }, - "m_surfaceType": { - "type": "std::string", - "id": 4, - "offset": 280, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2553995974 - }, - "m_pInitialParams": { - "type": "class SharedPointer", - "id": 5, - "offset": 240, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1000009870 - } - } - }, - "292458316": { - "name": "class WizardCharacterCreationInfo", - "bases": [ - "CharacterCreationInfo", - "PropertyClass" - ], - "hash": 292458316, - "properties": { - "m_templateID": { - "type": "int", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1075344419 - }, - "m_name": { - "type": "std::wstring", - "id": 1, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513345113 - }, - "m_shouldRename": { - "type": "bool", - "id": 2, - "offset": 128, - "flags": 24, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1741266202 - }, - "m_globalID": { - "type": "gid", - "id": 3, - "offset": 120, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 981205014 - }, - "m_userID": { - "type": "gid", - "id": 4, - "offset": 112, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1037989700 - }, - "m_quarantined": { - "type": "bool", - "id": 5, - "offset": 129, - "flags": 24, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 637025007 - }, - "m_avatarBehavior": { - "type": "class SharedPointer", - "id": 6, - "offset": 136, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2884063077 - }, - "m_equipmentInfoList": { - "type": "class SharedPointer", - "id": 7, - "offset": 152, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2373226440 - }, - "m_location": { - "type": "std::string", - "id": 8, - "offset": 168, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2079561588 - }, - "m_level": { - "type": "int", - "id": 9, - "offset": 200, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 801285362 - }, - "m_world": { - "type": "int", - "id": 10, - "offset": 204, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 814685730 - }, - "m_schoolOfFocus": { - "type": "unsigned int", - "id": 11, - "offset": 208, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 236936682 - }, - "m_nameIndices": { - "type": "unsigned int", - "id": 12, - "offset": 212, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 258521869 - } - } - }, - "702675841": { - "name": "class ProxyGeometry*", - "bases": [ - "PropertyClass" - ], - "hash": 702675841, - "properties": { - "m_sName": { - "type": "std::string", - "id": 0, - "offset": 88, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306437263 - }, - "m_baseOrientation": { - "type": "class Matrix3x3", - "id": 1, - "offset": 176, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1692424809 - }, - "m_basePosition": { - "type": "class Vector3D", - "id": 2, - "offset": 224, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1912112658 - }, - "m_fCurrentScale": { - "type": "float", - "id": 3, - "offset": 236, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 234778792 - }, - "m_surfaceType": { - "type": "std::string", - "id": 4, - "offset": 280, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2553995974 - }, - "m_pInitialParams": { - "type": "class SharedPointer", - "id": 5, - "offset": 240, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1000009870 - } - } - }, - "292287628": { - "name": "enum ItemBundleTemplate::AcquireConditionType", - "bases": [], - "hash": 292287628, - "properties": {} - }, - "291458408": { - "name": "class DuelistBehaviorTemplate*", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 291458408, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - }, - "m_npcProximity": { - "type": "float", - "id": 1, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1306880973 - } - } - }, - "702901064": { - "name": "class ProvideCombatTriggerInfo", - "bases": [ - "GameEffectInfo", - "PropertyClass" - ], - "hash": 702901064, - "properties": { - "m_effectName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2029161513 - }, - "m_triggerName": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 268435463, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3100183568, - "enum_options": { - "__BASECLASS": "CombatTriggerList" - } - }, - "m_triggerDescription": { - "type": "class SharedPointer", - "id": 2, - "offset": 136, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2619655202 - } - } - }, - "292457996": { - "name": "class WizardCharacterCreationInfo*", - "bases": [ - "CharacterCreationInfo", - "PropertyClass" - ], - "hash": 292457996, - "properties": { - "m_templateID": { - "type": "int", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1075344419 - }, - "m_name": { - "type": "std::wstring", - "id": 1, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513345113 - }, - "m_shouldRename": { - "type": "bool", - "id": 2, - "offset": 128, - "flags": 24, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1741266202 - }, - "m_globalID": { - "type": "gid", - "id": 3, - "offset": 120, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 981205014 - }, - "m_userID": { - "type": "gid", - "id": 4, - "offset": 112, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1037989700 - }, - "m_quarantined": { - "type": "bool", - "id": 5, - "offset": 129, - "flags": 24, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 637025007 - }, - "m_avatarBehavior": { - "type": "class SharedPointer", - "id": 6, - "offset": 136, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2884063077 - }, - "m_equipmentInfoList": { - "type": "class SharedPointer", - "id": 7, - "offset": 152, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2373226440 - }, - "m_location": { - "type": "std::string", - "id": 8, - "offset": 168, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2079561588 - }, - "m_level": { - "type": "int", - "id": 9, - "offset": 200, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 801285362 - }, - "m_world": { - "type": "int", - "id": 10, - "offset": 204, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 814685730 - }, - "m_schoolOfFocus": { - "type": "unsigned int", - "id": 11, - "offset": 208, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 236936682 - }, - "m_nameIndices": { - "type": "unsigned int", - "id": 12, - "offset": 212, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 258521869 - } - } - }, - "703062343": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 703062343, - "properties": { - "m_target": { - "type": "int", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 977980321 - }, - "m_mult": { - "type": "float", - "id": 1, - "offset": 76, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 309847129 - }, - "m_blocked": { - "type": "bool", - "id": 2, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 863437063 - } - } - }, - "293491482": { - "name": "class WindowColorAnimation", - "bases": [ - "WindowAnimation", - "PropertyClass" - ], - "hash": 293491482, - "properties": { - "m_bUseDeepCopy": { - "type": "bool", - "id": 0, - "offset": 72, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 433380635 - } - } - }, - "703559079": { - "name": "class ActorResurrectCinematicAction*", - "bases": [ - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 703559079, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - } - } - }, - "292847998": { - "name": "class CantripsMajorInvisibilityEffect", - "bases": [ - "CantripsInvisibilityEffect", - "GameEffectBase", - "PropertyClass" - ], - "hash": 292847998, - "properties": { - "m_currentTickCount": { - "type": "double", - "id": 0, - "offset": 80, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2533274692 - }, - "m_effectNameID": { - "type": "unsigned int", - "id": 1, - "offset": 96, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1204067144 - }, - "m_bIsOnPet": { - "type": "bool", - "id": 2, - "offset": 73, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 522593303 - }, - "m_originatorID": { - "type": "gid", - "id": 3, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1131810019 - }, - "m_itemSlotID": { - "type": "unsigned int", - "id": 4, - "offset": 112, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1895747595 - }, - "m_internalID": { - "type": "int", - "id": 5, - "offset": 92, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1643137924 - }, - "m_endTime": { - "type": "unsigned int", - "id": 6, - "offset": 88, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 716479635 - } - } - }, - "703512445": { - "name": "class ControlPopupButton*", - "bases": [ - "ControlButton", - "Window", - "PropertyClass" - ], - "hash": 703512445, - "properties": { - "m_sName": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306437263 - }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621225959 - }, - "m_Style": { - "type": "unsigned int", - "id": 2, - "offset": 152, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152, - "POPDOWN_SIBLINGS": 67108864, - "DISABLE_CHILDREN": 134217728, - "HIDE_SIBLINGS": 268435456, - "POPUP_ON_HOVER": 536870912 - } - }, - "m_Flags": { - "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } - }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3105139380 - }, - "m_fTargetAlpha": { - "type": "float", - "id": 5, - "offset": 212, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1809129834 - }, - "m_fDisabledAlpha": { - "type": "float", - "id": 6, - "offset": 216, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1389987675 - }, - "m_fAlpha": { - "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 482130755 - }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3623628394 - }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2102211316 - }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1846695875 - }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3389835433 - }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2547159940 - }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2587533771 - }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3091503757 - }, - "m_bToggle": { - "type": "bool", - "id": 16, - "offset": 608, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2071810903 - }, - "m_bButtonDown": { - "type": "bool", - "id": 17, - "offset": 609, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 840041705 - }, - "m_sLabel": { - "type": "std::wstring", - "id": 18, - "offset": 616, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2207009163 - }, - "m_labelOffset": { - "type": "class Rect", - "id": 19, - "offset": 832, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1990646723 - }, - "m_pButton": { - "type": "class SharedPointer", - "id": 20, - "offset": 656, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1543855875 - }, - "m_HotKey": { - "type": "unsigned int", - "id": 21, - "offset": 672, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1631553409 - }, - "m_Color": { - "type": "class Color", - "id": 22, - "offset": 676, - "flags": 262279, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1753714077 - }, - "m_bCursorOver": { - "type": "bool", - "id": 23, - "offset": 689, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 283981103 - }, - "m_bAbortWhenCursorNotOver": { - "type": "bool", - "id": 24, - "offset": 706, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 325405258 - }, - "m_bHotKeyDown": { - "type": "bool", - "id": 25, - "offset": 680, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 616989185 - }, - "m_fTime": { - "type": "float", - "id": 26, - "offset": 684, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 883746156 - }, - "m_bGreyed": { - "type": "bool", - "id": 27, - "offset": 688, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1566556053 - }, - "m_fMaxScale": { - "type": "float", - "id": 28, - "offset": 692, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2070186635 - }, - "m_fScaleSpeed": { - "type": "float", - "id": 29, - "offset": 696, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1457135702 - }, - "m_bUseDropShadow": { - "type": "bool", - "id": 30, - "offset": 704, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 93063037 - }, - "m_bUseOutline": { - "type": "bool", - "id": 31, - "offset": 705, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 744292994 - }, - "m_pGreyedState": { - "type": "class SharedPointer", - "id": 32, - "offset": 768, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2703352263 - }, - "m_pNormalState": { - "type": "class SharedPointer", - "id": 33, - "offset": 752, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1887909808 - }, - "m_pHighlightedState": { - "type": "class SharedPointer", - "id": 34, - "offset": 784, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2200177608 - }, - "m_pSelectedState": { - "type": "class SharedPointer", - "id": 35, - "offset": 800, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2266776432 - }, - "m_pDepressedState": { - "type": "class SharedPointer", - "id": 36, - "offset": 816, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1878185798 - }, - "m_bUp": { - "type": "bool", - "id": 37, - "offset": 880, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 269510906 - } - } - }, - "293421498": { - "name": "class TutorialInfo*", - "bases": [ - "PropertyClass" - ], - "hash": 293421498, - "properties": { - "m_tutorialNameID": { - "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2228828719 - }, - "m_tutorialStage": { - "type": "int", - "id": 1, - "offset": 76, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 328120386 - } - } - }, - "709422724": { - "name": "class SharedPointer", - "bases": [ - "HousingMusicPlayerBehaviorBase", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 709422724, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_playlist": { - "type": "unsigned int", - "id": 1, - "offset": 112, - "flags": 65567, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1986295487 - }, - "m_currentSelection": { - "type": "unsigned int", - "id": 2, - "offset": 128, - "flags": 65567, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 906571734 - }, - "m_playStyle": { - "type": "unsigned int", - "id": 3, - "offset": 132, - "flags": 65567, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 768737172 - }, - "m_musicData": { - "type": "std::string", - "id": 4, - "offset": 136, - "flags": 551, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2963606294 - } - } - }, - "293491506": { - "name": "class WindowColorAnimation*", - "bases": [ - "WindowAnimation", - "PropertyClass" - ], - "hash": 293491506, - "properties": { - "m_bUseDeepCopy": { - "type": "bool", - "id": 0, - "offset": 72, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 433380635 - } - } - }, - "705182922": { - "name": "class SharedPointer", - "bases": [ - "ControlEdit", - "Window", - "PropertyClass" - ], - "hash": 705182922, - "properties": { - "m_sName": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306437263 - }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621225959 - }, - "m_Style": { - "type": "unsigned int", - "id": 2, - "offset": 152, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152, - "FORCE_NUMERIC": 16777216, - "FORCE_ALPHA": 268435456, - "FORCE_ALPHANUMERIC": 536870912, - "FORCE_INTEGER": 33554432, - "FORCE_POSITIVE": 67108864, - "FORCE_RANGE": 134217728 - } - }, - "m_Flags": { - "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } - }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3105139380 - }, - "m_fTargetAlpha": { - "type": "float", - "id": 5, - "offset": 212, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1809129834 - }, - "m_fDisabledAlpha": { - "type": "float", - "id": 6, - "offset": 216, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1389987675 - }, - "m_fAlpha": { - "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 482130755 - }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3623628394 - }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2102211316 - }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1846695875 - }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3389835433 - }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2547159940 - }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2587533771 - }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3091503757 - }, - "m_sText": { - "type": "std::wstring", - "id": 16, - "offset": 584, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2102642960 - }, - "m_nMaxLength": { - "type": "int", - "id": 17, - "offset": 620, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1183478416 - }, - "m_bPassword": { - "type": "bool", - "id": 18, - "offset": 624, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1604468200 - }, - "m_bLog": { - "type": "bool", - "id": 19, - "offset": 625, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 221687287 - }, - "m_previousNext": { - "type": "bool", - "id": 20, - "offset": 627, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 858581071 - }, - "m_nMaxLogSize": { - "type": "int", - "id": 21, - "offset": 712, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 779573899 - }, - "m_bEditing": { - "type": "bool", - "id": 22, - "offset": 616, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1243218553 - }, - "m_bAllowPaste": { - "type": "bool", - "id": 23, - "offset": 626, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1129316721 - }, - "m_nLogPosition": { - "type": "int", - "id": 24, - "offset": 704, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1120160767 - }, - "m_nCursor": { - "type": "int", - "id": 25, - "offset": 716, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1876782150 - }, - "m_nEditBegin": { - "type": "int", - "id": 26, - "offset": 720, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1066592403 - }, - "m_nEditEnd": { - "type": "int", - "id": 27, - "offset": 724, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1560905669 - }, - "m_sSavedText": { - "type": "std::wstring", - "id": 28, - "offset": 728, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2197953283 - }, - "m_fCursorBlinkSpeed": { - "type": "float", - "id": 29, - "offset": 760, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2232655228 - }, - "m_fCursorTimer": { - "type": "float", - "id": 30, - "offset": 764, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1929942748 - }, - "m_bCursorBlink": { - "type": "bool", - "id": 31, - "offset": 768, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 683441507 - }, - "m_fMinRange": { - "type": "double", - "id": 32, - "offset": 776, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3079523396 - }, - "m_fMaxRange": { - "type": "double", - "id": 33, - "offset": 784, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3876551814 - }, - "m_nPrecision": { - "type": "int", - "id": 34, - "offset": 792, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1404974196 - }, - "m_bDeleteOnFirstChar": { - "type": "bool", - "id": 35, - "offset": 618, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 902105643 - } - } - }, - "704375042": { - "name": "class CastleToursBehaviorTemplate", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 704375042, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - } - } - }, - "704374850": { - "name": "class CastleToursBehaviorTemplate*", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 704374850, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - } - } - }, - "301188117": { - "name": "class PetTalentsTriggeredSpells", - "bases": [ - "PropertyClass" - ], - "hash": 301188117, - "properties": { - "m_petTalentsTriggeredSpells": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2245729734 - } - } - }, - "296942249": { - "name": "class AquariumBehaviorBase*", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 296942249, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_fishData": { - "type": "std::string", - "id": 1, - "offset": 128, - "flags": 575, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3393318815 - } - } - }, - "296051428": { - "name": "class SharedPointer", - "bases": [ - "UnPolymorphCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 296051428, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - } - } - }, - "705172821": { - "name": "class ReqGardeningLevel*", - "bases": [ - "ReqNumeric", - "Requirement", - "PropertyClass" - ], - "hash": 705172821, - "properties": { - "m_applyNOT": { - "type": "bool", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1746328074, - "enum_options": { - "__DEFAULT": 0 - } - }, - "m_operator": { - "type": "enum Requirement::Operator", - "id": 1, - "offset": 76, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2672792317, - "enum_options": { - "ROP_AND": 0, - "ROP_OR": 1, - "__DEFAULT": "ROP_AND" - } - }, - "m_numericValue": { - "type": "float", - "id": 2, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 521915239 - }, - "m_operatorType": { - "type": "enum ReqNumeric::OPERATOR_TYPE", - "id": 3, - "offset": 84, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2228122961, - "enum_options": { - "OPERATOR_UNKNOWN": 4294967295, - "OPERATOR_EQUALS": 0, - "OPERATOR_GREATER_THAN": 1, - "OPERATOR_LESS_THAN": 2, - "OPERATOR_GREATER_THAN_EQ": 3, - "OPERATOR_LESS_THAN_EQ": 4 - } - } - } - }, - "295403644": { - "name": "class DailyQuestRewardData", - "bases": [ - "PropertyClass" - ], - "hash": 295403644, - "properties": { - "m_dailyQuestRewardList": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1109520555 - }, - "m_dailyPvPRewardList": { - "type": "class SharedPointer", - "id": 1, - "offset": 88, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 952967791 - }, - "m_circleRegistryList": { - "type": "std::string", - "id": 2, - "offset": 104, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2265601986 - }, - "m_questRewardsList": { - "type": "std::string", - "id": 3, - "offset": 120, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2202355553 - } - } - }, - "295368144": { - "name": "class ReqHangingAura", - "bases": [ - "ConditionalSpellEffectRequirement", - "Requirement", - "PropertyClass" - ], - "hash": 295368144, - "properties": { - "m_applyNOT": { - "type": "bool", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1746328074, - "enum_options": { - "__DEFAULT": 0 - } - }, - "m_operator": { - "type": "enum Requirement::Operator", - "id": 1, - "offset": 76, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2672792317, - "enum_options": { - "ROP_AND": 0, - "ROP_OR": 1, - "__DEFAULT": "ROP_AND" - } - }, - "m_targetType": { - "type": "enum ConditionalSpellEffectRequirement::RequirementTarget", - "id": 2, - "offset": 80, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2547737902, - "enum_options": { - "RT_Caster": 0, - "RT_Target": 1 - } - }, - "m_effectType": { - "type": "enum SpellEffect::kSpellEffects", - "id": 3, - "offset": 88, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2578255295, - "enum_options": { - "SpellEffect::kInvalidSpellEffect": 0, - "SpellEffect::kAbsorbDamage": 37, - "SpellEffect::kAbsorbHeal": 38, - "SpellEffect::kAddCombatTriggerList": 87, - "SpellEffect::kBounceAll": 36, - "SpellEffect::kBounceBack": 35, - "SpellEffect::kBounceNext": 33, - "SpellEffect::kBouncePrevious": 34, - "SpellEffect::kCloakedCharm": 42, - "SpellEffect::kCloakedWard": 43, - "SpellEffect::kCloakedWardNoRemove": 86, - "SpellEffect::kConfusionBlock": 109, - "SpellEffect::kCritBlock": 47, - "SpellEffect::kCritBoost": 46, - "SpellEffect::kCritBoostSchoolSpecific": 97, - "SpellEffect::kDampen": 68, - "SpellEffect::kDispel": 40, - "SpellEffect::kDispelBlock": 108, - "SpellEffect::kMaximumIncomingDamage": 23, - "SpellEffect::kModifyAccuracy": 39, - "SpellEffect::kModifyIncomingArmorPiercing": 26, - "SpellEffect::kModifyIncomingDamage": 22, - "SpellEffect::kModifyIncomingDamageFlat": 119, - "SpellEffect::kModifyIncomingDamageOverTime": 137, - "SpellEffect::kModifyIncomingDamageType": 25, - "SpellEffect::kModifyIncomingHeal": 24, - "SpellEffect::kModifyIncomingHealFlat": 118, - "SpellEffect::kModifyIncomingHealOverTime": 138, - "SpellEffect::kModifyIncomingStealHealth": 32, - "SpellEffect::kModifyOutgoingArmorPiercing": 30, - "SpellEffect::kModifyOutgoingDamage": 27, - "SpellEffect::kModifyOutgoingDamageFlat": 121, - "SpellEffect::kModifyOutgoingDamageType": 29, - "SpellEffect::kModifyOutgoingHeal": 28, - "SpellEffect::kModifyOutgoingHealFlat": 120, - "SpellEffect::kModifyPipRoundRate": 110, - "SpellEffect::kModifyPowerPipChance": 77, - "SpellEffect::kPipConversion": 45, - "SpellEffect::kPowerPipConversion": 100, - "SpellEffect::kProtectBeneficial": 103, - "SpellEffect::kProtectHarmful": 104, - "SpellEffect::kPushCharm": 8, - "SpellEffect::kRemoveCombatTriggerList": 88, - "SpellEffect::kStunBlock": 79, - "SpellEffect::kStunResist": 44 - } - }, - "m_disposition": { - "type": "enum SpellEffect::kHangingDisposition", - "id": 4, - "offset": 92, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1904841031, - "enum_options": { - "SpellEffect::kBoth": 0, - "SpellEffect::kBeneficial": 1, - "SpellEffect::kHarmful": 2 - } - }, - "m_anyType": { - "type": "bool", - "id": 5, - "offset": 96, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1809059293 - }, - "m_globalEffect": { - "type": "bool", - "id": 6, - "offset": 97, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 793781233 - } - } - }, - "295368048": { - "name": "class ReqHangingAura*", - "bases": [ - "ConditionalSpellEffectRequirement", - "Requirement", - "PropertyClass" - ], - "hash": 295368048, - "properties": { - "m_applyNOT": { - "type": "bool", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1746328074, - "enum_options": { - "__DEFAULT": 0 - } - }, - "m_operator": { - "type": "enum Requirement::Operator", - "id": 1, - "offset": 76, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2672792317, - "enum_options": { - "ROP_AND": 0, - "ROP_OR": 1, - "__DEFAULT": "ROP_AND" - } - }, - "m_targetType": { - "type": "enum ConditionalSpellEffectRequirement::RequirementTarget", - "id": 2, - "offset": 80, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2547737902, - "enum_options": { - "RT_Caster": 0, - "RT_Target": 1 - } - }, - "m_effectType": { - "type": "enum SpellEffect::kSpellEffects", - "id": 3, - "offset": 88, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2578255295, - "enum_options": { - "SpellEffect::kInvalidSpellEffect": 0, - "SpellEffect::kAbsorbDamage": 37, - "SpellEffect::kAbsorbHeal": 38, - "SpellEffect::kAddCombatTriggerList": 87, - "SpellEffect::kBounceAll": 36, - "SpellEffect::kBounceBack": 35, - "SpellEffect::kBounceNext": 33, - "SpellEffect::kBouncePrevious": 34, - "SpellEffect::kCloakedCharm": 42, - "SpellEffect::kCloakedWard": 43, - "SpellEffect::kCloakedWardNoRemove": 86, - "SpellEffect::kConfusionBlock": 109, - "SpellEffect::kCritBlock": 47, - "SpellEffect::kCritBoost": 46, - "SpellEffect::kCritBoostSchoolSpecific": 97, - "SpellEffect::kDampen": 68, - "SpellEffect::kDispel": 40, - "SpellEffect::kDispelBlock": 108, - "SpellEffect::kMaximumIncomingDamage": 23, - "SpellEffect::kModifyAccuracy": 39, - "SpellEffect::kModifyIncomingArmorPiercing": 26, - "SpellEffect::kModifyIncomingDamage": 22, - "SpellEffect::kModifyIncomingDamageFlat": 119, - "SpellEffect::kModifyIncomingDamageOverTime": 137, - "SpellEffect::kModifyIncomingDamageType": 25, - "SpellEffect::kModifyIncomingHeal": 24, - "SpellEffect::kModifyIncomingHealFlat": 118, - "SpellEffect::kModifyIncomingHealOverTime": 138, - "SpellEffect::kModifyIncomingStealHealth": 32, - "SpellEffect::kModifyOutgoingArmorPiercing": 30, - "SpellEffect::kModifyOutgoingDamage": 27, - "SpellEffect::kModifyOutgoingDamageFlat": 121, - "SpellEffect::kModifyOutgoingDamageType": 29, - "SpellEffect::kModifyOutgoingHeal": 28, - "SpellEffect::kModifyOutgoingHealFlat": 120, - "SpellEffect::kModifyPipRoundRate": 110, - "SpellEffect::kModifyPowerPipChance": 77, - "SpellEffect::kPipConversion": 45, - "SpellEffect::kPowerPipConversion": 100, - "SpellEffect::kProtectBeneficial": 103, - "SpellEffect::kProtectHarmful": 104, - "SpellEffect::kPushCharm": 8, - "SpellEffect::kRemoveCombatTriggerList": 88, - "SpellEffect::kStunBlock": 79, - "SpellEffect::kStunResist": 44 - } - }, - "m_disposition": { - "type": "enum SpellEffect::kHangingDisposition", - "id": 4, - "offset": 92, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1904841031, - "enum_options": { - "SpellEffect::kBoth": 0, - "SpellEffect::kBeneficial": 1, - "SpellEffect::kHarmful": 2 - } - }, - "m_anyType": { - "type": "bool", - "id": 5, - "offset": 96, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1809059293 - }, - "m_globalEffect": { - "type": "bool", - "id": 6, - "offset": 97, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 793781233 - } - } - }, - "706487366": { - "name": "class FidgetBehaviorTemplate", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 706487366, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - }, - "m_fidgetStateInfo": { - "type": "class FidgetStateInfo", - "id": 1, - "offset": 120, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1986859062 - } - } - }, - "705797532": { - "name": "class SharedPointer", - "bases": [ - "PetAnimateActorCinematicAction", - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 705797532, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - }, - "m_animation": { - "type": "std::string", - "id": 2, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3431428731 - } - } - }, - "295403604": { - "name": "class DailyQuestRewardData*", - "bases": [ - "PropertyClass" - ], - "hash": 295403604, - "properties": { - "m_dailyQuestRewardList": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1109520555 - }, - "m_dailyPvPRewardList": { - "type": "class SharedPointer", - "id": 1, - "offset": 88, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 952967791 - }, - "m_circleRegistryList": { - "type": "std::string", - "id": 2, - "offset": 104, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2265601986 - }, - "m_questRewardsList": { - "type": "std::string", - "id": 3, - "offset": 120, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2202355553 - } - } - }, - "706414668": { - "name": "class SharedPointer", - "bases": [ - "CombatSigilTemplate", - "SigilTemplate", - "CoreTemplate", - "PropertyClass" - ], - "hash": 706414668, - "properties": { - "m_behaviors": { - "type": "class BehaviorTemplate*", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1197808594 - }, - "m_sigilName": { - "type": "std::string", - "id": 1, - "offset": 96, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3177657588 - }, - "m_sigilType": { - "type": "std::string", - "id": 2, - "offset": 136, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3177899445 - }, - "m_entryResults": { - "type": "class ResultList*", - "id": 3, - "offset": 184, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3262956108 - }, - "m_requirements": { - "type": "class RequirementList*", - "id": 4, - "offset": 176, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2840985510 - }, - "m_cancelResults": { - "type": "class ResultList*", - "id": 5, - "offset": 192, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3799257120 - }, - "m_completeResults": { - "type": "class ResultList*", - "id": 6, - "offset": 200, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1964258099 - }, - "m_useState": { - "type": "bool", - "id": 7, - "offset": 216, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 683320865 - }, - "m_stateOverride": { - "type": "std::string", - "id": 8, - "offset": 224, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1949715548 - }, - "m_subCircles": { - "type": "class SigilSubCircle*", - "id": 9, - "offset": 256, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2227135493 - }, - "m_engageRadius": { - "type": "float", - "id": 10, - "offset": 304, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1429683718 - }, - "m_battlefieldEffects": { - "type": "class SharedPointer", - "id": 11, - "offset": 312, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1245973515 - }, - "m_playerVictoryCinematic": { - "type": "std::string", - "id": 12, - "offset": 336, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2684536069 - }, - "m_combatMusic": { - "type": "std::string", - "id": 13, - "offset": 368, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3636593682 - }, - "m_prePlanningCinematicOverride": { - "type": "std::string", - "id": 14, - "offset": 400, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2585096390 - }, - "m_planningCinematicOverride": { - "type": "std::string", - "id": 15, - "offset": 432, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3592819999 - }, - "m_shadowThresholdType": { - "type": "enum kShadow_Threshold_Type", - "id": 16, - "offset": 464, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2847763136, - "enum_options": { - "SHADOW_THRESHOLD_MIN": 0, - "SHADOW_THRESHOLD_AVG": 1, - "SHADOW_THRESHOLD_MAX": 2 - } - }, - "m_shadowThresholdFactor": { - "type": "float", - "id": 17, - "offset": 468, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2104355177 - }, - "m_shadowPipRatingFactor": { - "type": "float", - "id": 18, - "offset": 472, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1061434314 - }, - "m_scalarDamagePvP": { - "type": "float", - "id": 19, - "offset": 476, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2195445026 - }, - "m_scalarResistPvP": { - "type": "float", - "id": 20, - "offset": 480, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1947822077 - }, - "m_scalarPiercePvP": { - "type": "float", - "id": 21, - "offset": 484, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 441266907 - }, - "m_scalarDamagePvE": { - "type": "float", - "id": 22, - "offset": 488, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2195445015 - }, - "m_scalarResistPvE": { - "type": "float", - "id": 23, - "offset": 492, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1947822066 - }, - "m_scalarPiercePvE": { - "type": "float", - "id": 24, - "offset": 496, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 441266896 - }, - "m_damageLimitPvP": { - "type": "float", - "id": 25, - "offset": 500, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1990135243 - }, - "m_dK0PvP": { - "type": "float", - "id": 26, - "offset": 504, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 413528556 - }, - "m_dN0PvP": { - "type": "float", - "id": 27, - "offset": 508, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 417086319 - }, - "m_resistLimitPvP": { - "type": "float", - "id": 28, - "offset": 512, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1174512006 - }, - "m_rK0PvP": { - "type": "float", - "id": 29, - "offset": 516, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 961424058 - }, - "m_rN0PvP": { - "type": "float", - "id": 30, - "offset": 520, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 964981821 - }, - "m_damageLimitPvE": { - "type": "float", - "id": 31, - "offset": 524, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1990135232 - }, - "m_dK0PvE": { - "type": "float", - "id": 32, - "offset": 528, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 413528545 - }, - "m_dN0PvE": { - "type": "float", - "id": 33, - "offset": 532, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 417086308 - }, - "m_resistLimitPvE": { - "type": "float", - "id": 34, - "offset": 536, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1174511995 - }, - "m_rK0PvE": { - "type": "float", - "id": 35, - "offset": 540, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 961424047 - }, - "m_rN0PvE": { - "type": "float", - "id": 36, - "offset": 544, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 964981810 - }, - "m_tickRateMS": { - "type": "unsigned int", - "id": 37, - "offset": 552, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 646469284 - }, - "m_playerAggroRange": { - "type": "float", - "id": 38, - "offset": 556, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1776075073 - }, - "m_deathEffect": { - "type": "std::string", - "id": 39, - "offset": 560, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2339494958 - }, - "m_noAggroEffect": { - "type": "std::string", - "id": 40, - "offset": 592, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1645655765 - }, - "m_redTeamStart": { - "type": "std::string", - "id": 41, - "offset": 624, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2958941675 - }, - "m_blueTeamStart": { - "type": "std::string", - "id": 42, - "offset": 656, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2806152280 - }, - "m_redPlaceholdObjectID": { - "type": "unsigned int", - "id": 43, - "offset": 688, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1608575032 - }, - "m_bluePlaceholdObjectID": { - "type": "unsigned int", - "id": 44, - "offset": 692, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1635754917 - } - } - }, - "296035520": { - "name": "class SharedPointer", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 296035520, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - } - } - }, - "706511942": { - "name": "class FidgetBehaviorTemplate*", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 706511942, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - }, - "m_fidgetStateInfo": { - "type": "class FidgetStateInfo", - "id": 1, - "offset": 120, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1986859062 - } - } - }, - "295881622": { - "name": "class CountdownBehaviorTemplate", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 295881622, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - } - } - }, - "710399610": { - "name": "class SummonMinionCinematicAction", - "bases": [ - "QueuedCombatCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 710399610, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - } - } - }, - "710248837": { - "name": "class SharedPointer", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 710248837, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_level": { - "type": "unsigned char", - "id": 1, - "offset": 112, - "flags": 65727, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1438884808 - }, - "m_XP": { - "type": "unsigned int", - "id": 2, - "offset": 116, - "flags": 65727, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2301988085 - }, - "m_firstName": { - "type": "int", - "id": 3, - "offset": 264, - "flags": 65703, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1618303331 - }, - "m_middleName": { - "type": "int", - "id": 4, - "offset": 268, - "flags": 65703, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 199781034 - }, - "m_lastName": { - "type": "int", - "id": 5, - "offset": 272, - "flags": 65703, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 328503983 - }, - "m_currentStats": { - "type": "class PetStat", - "id": 6, - "offset": 128, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2342610661 - }, - "m_maxStats": { - "type": "class PetStat", - "id": 7, - "offset": 144, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1846363080 - }, - "m_hatchedTimeSecs": { - "type": "unsigned int", - "id": 8, - "offset": 160, - "flags": 65727, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 606051291 - }, - "m_expressedTalents": { - "type": "unsigned int", - "id": 9, - "offset": 168, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1557974043 - }, - "m_expressedDerbyTalents": { - "type": "unsigned int", - "id": 10, - "offset": 184, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 484465777 - }, - "m_talentRatings": { - "type": "std::string", - "id": 11, - "offset": 216, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2170591163 - }, - "m_powerRatings": { - "type": "std::string", - "id": 12, - "offset": 232, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1881287968 - }, - "m_overallRating": { - "type": "unsigned int", - "id": 13, - "offset": 248, - "flags": 159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 462138631 - }, - "m_activeRating": { - "type": "unsigned int", - "id": 14, - "offset": 252, - "flags": 159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 234391118 - }, - "m_costToMorph": { - "type": "unsigned int", - "id": 15, - "offset": 256, - "flags": 65567, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1866472719 - }, - "m_rarity": { - "type": "unsigned int", - "id": 16, - "offset": 260, - "flags": 65567, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1111114664 - }, - "m_requiredXP": { - "type": "unsigned int", - "id": 17, - "offset": 120, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1890811574 - }, - "m_housingPetPrimaryColor": { - "type": "int", - "id": 18, - "offset": 276, - "flags": 65664, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 525135139 - }, - "m_housingPetPattern": { - "type": "int", - "id": 19, - "offset": 280, - "flags": 65664, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 165011646 - }, - "m_housingPetSecondaryColor": { - "type": "int", - "id": 20, - "offset": 284, - "flags": 65695, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 358656263 - }, - "m_housingPetOriginalGID": { - "type": "gid", - "id": 21, - "offset": 288, - "flags": 65664, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1259075879 - }, - "m_housingPetJewelTemplateID": { - "type": "unsigned int", - "id": 22, - "offset": 296, - "flags": 65664, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1836117651 - }, - "m_happiness": { - "type": "unsigned int", - "id": 23, - "offset": 300, - "flags": 65727, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1380970552 - }, - "m_maximumHappiness": { - "type": "unsigned int", - "id": 24, - "offset": 304, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 874954582 - } - } - }, - "296455231": { - "name": "class ObstacleCourseRevolvingDoorBehavior*", - "bases": [ - "ObstacleCourseObstacleBehavior", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 296455231, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - } - } - }, - "709697322": { - "name": "class SharedPointer", - "bases": [ - "ControlRichEdit", - "ControlEdit", - "Window", - "PropertyClass" - ], - "hash": 709697322, - "properties": { - "m_sName": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306437263 - }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621225959 - }, - "m_Style": { - "type": "unsigned int", - "id": 2, - "offset": 152, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152, - "FORCE_NUMERIC": 16777216, - "FORCE_ALPHA": 268435456, - "FORCE_ALPHANUMERIC": 536870912, - "FORCE_INTEGER": 33554432, - "FORCE_POSITIVE": 67108864, - "FORCE_RANGE": 134217728 - } - }, - "m_Flags": { - "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } - }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3105139380 - }, - "m_fTargetAlpha": { - "type": "float", - "id": 5, - "offset": 212, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1809129834 - }, - "m_fDisabledAlpha": { - "type": "float", - "id": 6, - "offset": 216, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1389987675 - }, - "m_fAlpha": { - "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 482130755 - }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3623628394 - }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2102211316 - }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1846695875 - }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3389835433 - }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2547159940 - }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2587533771 - }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3091503757 - }, - "m_sText": { - "type": "std::wstring", - "id": 16, - "offset": 584, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2102642960 - }, - "m_nMaxLength": { - "type": "int", - "id": 17, - "offset": 620, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1183478416 - }, - "m_bPassword": { - "type": "bool", - "id": 18, - "offset": 624, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1604468200 - }, - "m_bLog": { - "type": "bool", - "id": 19, - "offset": 625, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 221687287 - }, - "m_previousNext": { - "type": "bool", - "id": 20, - "offset": 627, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 858581071 - }, - "m_nMaxLogSize": { - "type": "int", - "id": 21, - "offset": 712, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 779573899 - }, - "m_bEditing": { - "type": "bool", - "id": 22, - "offset": 616, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1243218553 - }, - "m_bAllowPaste": { - "type": "bool", - "id": 23, - "offset": 626, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1129316721 - }, - "m_nLogPosition": { - "type": "int", - "id": 24, - "offset": 704, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1120160767 - }, - "m_nCursor": { - "type": "int", - "id": 25, - "offset": 716, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1876782150 - }, - "m_nEditBegin": { - "type": "int", - "id": 26, - "offset": 720, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1066592403 - }, - "m_nEditEnd": { - "type": "int", - "id": 27, - "offset": 724, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1560905669 - }, - "m_sSavedText": { - "type": "std::wstring", - "id": 28, - "offset": 728, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2197953283 - }, - "m_fCursorBlinkSpeed": { - "type": "float", - "id": 29, - "offset": 760, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2232655228 - }, - "m_fCursorTimer": { - "type": "float", - "id": 30, - "offset": 764, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1929942748 - }, - "m_bCursorBlink": { - "type": "bool", - "id": 31, - "offset": 768, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 683441507 - }, - "m_fMinRange": { - "type": "double", - "id": 32, - "offset": 776, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3079523396 - }, - "m_fMaxRange": { - "type": "double", - "id": 33, - "offset": 784, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3876551814 - }, - "m_nPrecision": { - "type": "int", - "id": 34, - "offset": 792, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1404974196 - }, - "m_bDeleteOnFirstChar": { - "type": "bool", - "id": 35, - "offset": 618, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 902105643 - } - } - }, - "296406079": { - "name": "class ObstacleCourseRevolvingDoorBehavior", - "bases": [ - "ObstacleCourseObstacleBehavior", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 296406079, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - } - } - }, - "296258369": { - "name": "class SharedPointer", - "bases": [ - "ObstacleCourseObstacleBehaviorTemplate", - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 296258369, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - }, - "m_rate": { - "type": "double", - "id": 1, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2117614265 - }, - "m_penaltyTime": { - "type": "double", - "id": 2, - "offset": 128, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3890998489 - }, - "m_boxAngle": { - "type": "double", - "id": 3, - "offset": 136, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2280680509 - }, - "m_nearMissBoxAngle": { - "type": "double", - "id": 4, - "offset": 144, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2597648767 - }, - "m_nearMissWidth": { - "type": "double", - "id": 5, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3819808431 - }, - "m_pendulumHeight": { - "type": "double", - "id": 6, - "offset": 160, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3283581360 - }, - "m_angleMax": { - "type": "double", - "id": 7, - "offset": 168, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2853267002 - }, - "m_pendulumWidth": { - "type": "double", - "id": 8, - "offset": 176, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2478418615 - }, - "m_collisionHeight": { - "type": "double", - "id": 9, - "offset": 184, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3980975122 - }, - "m_pendulumHitSoundList": { - "type": "class WeightedList", - "id": 10, - "offset": 192, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1356951419 - } - } - }, - "710316710": { - "name": "class CollisionBehaviorTemplate*", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 710316710, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - }, - "m_walkableCollisionFilename": { - "type": "std::string", - "id": 1, - "offset": 120, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2223282859 - }, - "m_solidCollisionFilename": { - "type": "std::string", - "id": 2, - "offset": 152, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3292753187 - }, - "m_clickableCollisionFilename": { - "type": "std::string", - "id": 3, - "offset": 184, - "flags": 131335, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1964485570 - }, - "m_bAutoClickBox": { - "type": "bool", - "id": 4, - "offset": 216, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 13289565 - }, - "m_bDisableCollision": { - "type": "bool", - "id": 5, - "offset": 217, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2086036629 - }, - "m_bClientOnly": { - "type": "bool", - "id": 6, - "offset": 218, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1918653686 - } - } - }, - "296942209": { - "name": "class AquariumBehaviorBase", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 296942209, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_fishData": { - "type": "std::string", - "id": 1, - "offset": 128, - "flags": 575, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3393318815 - } - } - }, - "710415701": { - "name": "class ReqGardeningLevel", - "bases": [ - "ReqNumeric", - "Requirement", - "PropertyClass" - ], - "hash": 710415701, - "properties": { - "m_applyNOT": { - "type": "bool", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1746328074, - "enum_options": { - "__DEFAULT": 0 - } - }, - "m_operator": { - "type": "enum Requirement::Operator", - "id": 1, - "offset": 76, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2672792317, - "enum_options": { - "ROP_AND": 0, - "ROP_OR": 1, - "__DEFAULT": "ROP_AND" - } - }, - "m_numericValue": { - "type": "float", - "id": 2, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 521915239 - }, - "m_operatorType": { - "type": "enum ReqNumeric::OPERATOR_TYPE", - "id": 3, - "offset": 84, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2228122961, - "enum_options": { - "OPERATOR_UNKNOWN": 4294967295, - "OPERATOR_EQUALS": 0, - "OPERATOR_GREATER_THAN": 1, - "OPERATOR_LESS_THAN": 2, - "OPERATOR_GREATER_THAN_EQ": 3, - "OPERATOR_LESS_THAN_EQ": 4 - } - } - } - }, - "710399802": { - "name": "class SummonMinionCinematicAction*", - "bases": [ - "QueuedCombatCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 710399802, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - } - } - }, - "300563189": { - "name": "class SharedPointer", - "bases": [ - "CoreTemplate", - "PropertyClass" - ], - "hash": 300563189, - "properties": { - "m_behaviors": { - "type": "class BehaviorTemplate*", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1197808594 - }, - "m_objectName": { - "type": "std::string", - "id": 1, - "offset": 96, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2154940147 - }, - "m_templateID": { - "type": "unsigned int", - "id": 2, - "offset": 128, - "flags": 16777223, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1286746870 - }, - "m_displayName": { - "type": "std::string", - "id": 3, - "offset": 136, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2446900370 - }, - "m_noStacking": { - "type": "bool", - "id": 4, - "offset": 168, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1351303236 - }, - "m_itemSetBonusDataList": { - "type": "class ItemSetBonusData", - "id": 5, - "offset": 176, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2922880945 - } - } - }, - "298717772": { - "name": "class UnderwayEntry*", - "bases": [ - "ServiceOptionBase", - "PropertyClass" - ], - "hash": 298717772, - "properties": { - "m_serviceName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2206028813 - }, - "m_iconKey": { - "type": "std::string", - "id": 1, - "offset": 168, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2457138637 - }, - "m_displayKey": { - "type": "std::string", - "id": 2, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3023276954 - }, - "m_serviceIndex": { - "type": "unsigned int", - "id": 3, - "offset": 204, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2103126710 - }, - "m_forceInteract": { - "type": "bool", - "id": 4, - "offset": 200, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1705789564 - }, - "m_underwayText": { - "type": "std::string", - "id": 5, - "offset": 224, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3006734255 - }, - "m_questID": { - "type": "gid", - "id": 6, - "offset": 216, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1246549335 - } - } - }, - "710598381": { - "name": "class SharedPointer", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 710598381, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - } - } - }, - "298717769": { - "name": "class UnderwayEntry", - "bases": [ - "ServiceOptionBase", - "PropertyClass" - ], - "hash": 298717769, - "properties": { - "m_serviceName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2206028813 - }, - "m_iconKey": { - "type": "std::string", - "id": 1, - "offset": 168, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2457138637 - }, - "m_displayKey": { - "type": "std::string", - "id": 2, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3023276954 - }, - "m_serviceIndex": { - "type": "unsigned int", - "id": 3, - "offset": 204, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2103126710 - }, - "m_forceInteract": { - "type": "bool", - "id": 4, - "offset": 200, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1705789564 - }, - "m_underwayText": { - "type": "std::string", - "id": 5, - "offset": 224, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3006734255 - }, - "m_questID": { - "type": "gid", - "id": 6, - "offset": 216, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1246549335 - } - } - }, - "297651831": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 297651831, - "properties": { - "m_className": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2220521682 - }, - "m_petCount": { - "type": "unsigned int", - "id": 1, - "offset": 108, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2215607743 - } - } - }, - "716714629": { - "name": "class CoreObjectInfo*", - "bases": [ - "PropertyClass" - ], - "hash": 716714629, - "properties": { - "m_templateID.m_full": { - "type": "unsigned __int64", - "id": 0, - "offset": 72, - "flags": 33554439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 633907631 - }, - "m_nObjectID": { - "type": "unsigned int", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 748496927 - }, - "m_location": { - "type": "class Vector3D", - "id": 2, - "offset": 84, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2239683611 - }, - "m_orientation": { - "type": "class Vector3D", - "id": 3, - "offset": 96, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2344058766 - }, - "m_fScale": { - "type": "float", - "id": 4, - "offset": 108, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 503137701 - }, - "m_zoneTag": { - "type": "std::string", - "id": 5, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3405382643 - }, - "m_startState": { - "type": "std::string", - "id": 6, - "offset": 184, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2166880458 - }, - "m_overrideName": { - "type": "std::string", - "id": 7, - "offset": 120, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1990707228 - }, - "m_globalDynamic": { - "type": "bool", - "id": 8, - "offset": 116, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1951691017 - }, - "m_bUndetectable": { - "type": "bool", - "id": 9, - "offset": 216, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1907454341 - }, - "m_spawnRequirements": { - "type": "class SharedPointer", - "id": 10, - "offset": 224, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2309120870 - }, - "m_loadingType": { - "type": "enum CoreObjectInfo::LoadingType", - "id": 11, - "offset": 112, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3522422550, - "enum_options": { - "STATIC_CLIENT_SERVER": 0, - "STATIC_CLIENT": 1, - "STATIC_SERVER": 2, - "DYNAMIC_SERVER": 3 - } - } - } - }, - "715846782": { - "name": "class SharedPointer", - "bases": [ - "LootInfo", - "LootInfoBase", - "PropertyClass" - ], - "hash": 715846782, - "properties": { - "m_lootType": { - "type": "enum LootInfo::LOOT_TYPE", - "id": 0, - "offset": 72, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1591891442, - "enum_options": { - "LOOT_TYPE_NONE": 0, - "LOOT_TYPE_GOLD": 1, - "LOOT_TYPE_MANA": 2, - "LOOT_TYPE_ITEM": 3, - "LOOT_TYPE_TREASURE_CARD": 4, - "LOOT_TYPE_MAGIC_XP": 5, - "LOOT_TYPE_ADD_SPELL": 6, - "LOOT_TYPE_MAX_HEALTH": 7, - "LOOT_TYPE_MAX_GOLD": 8, - "LOOT_TYPE_MAX_MANA": 9, - "LOOT_TYPE_MAX_POTION": 10, - "LOOT_TYPE_TRAINING_POINTS": 11, - "LOOT_TYPE_RECIPE": 12, - "LOOT_TYPE_CRAFTING_SLOT": 13, - "LOOT_TYPE_REAGENT": 14, - "LOOT_TYPE_PETSNACK": 15, - "LOOT_TYPE_GARDENING_XP": 16, - "LOOT_TYPE_PET_XP": 17, - "LOOT_TYPE_TREASURE_TABLE": 18, - "LOOT_TYPE_ARENA_POINTS": 19, - "LOOT_TYPE_ARENA_BONUS_POINTS": 20, - "LOOT_TYPE_GROUP": 21, - "LOOT_TYPE_FISHING_XP": 22, - "LOOT_TYPE_EVENT_CURRENCY_1": 24, - "LOOT_TYPE_EVENT_CURRENCY_2": 25, - "LOOT_TYPE_PVP_CURRENCY": 26, - "LOOT_TYPE_PVP_CURRENCY_BONUS": 27, - "LOOT_TYPE_PVP_TOURNEY_CURRENCY": 28, - "LOOT_TYPE_PVP_TOURNEY_CURRENCY_BONUS": 29, - "LOOT_TYPE_FURNITURE_ESSENCE": 30 - } - }, - "m_recipeName": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 268435487, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3311832788, - "enum_options": { - "__BASECLASS": "RecipeTemplate" - } - } - } - }, - "712648149": { - "name": "class ControlDecalButton*", - "bases": [ - "ControlButton", - "Window", - "PropertyClass" - ], - "hash": 712648149, - "properties": { - "m_sName": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306437263 - }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621225959 - }, - "m_Style": { - "type": "unsigned int", - "id": 2, - "offset": 152, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152, - "SHOW_HOTKEY": 16777216, - "EFFECT_SCALE": 67108864, - "LOCK_ICON_SIZE": 33554432, - "LEFT_TEXT": 536870912, - "NO_FIT_TEXT": 1073741824 - } - }, - "m_Flags": { - "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } - }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3105139380 - }, - "m_fTargetAlpha": { - "type": "float", - "id": 5, - "offset": 212, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1809129834 - }, - "m_fDisabledAlpha": { - "type": "float", - "id": 6, - "offset": 216, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1389987675 - }, - "m_fAlpha": { - "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 482130755 - }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3623628394 - }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2102211316 - }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1846695875 - }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3389835433 - }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2547159940 - }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2587533771 - }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3091503757 - }, - "m_bToggle": { - "type": "bool", - "id": 16, - "offset": 608, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2071810903 - }, - "m_bButtonDown": { - "type": "bool", - "id": 17, - "offset": 609, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 840041705 - }, - "m_sLabel": { - "type": "std::wstring", - "id": 18, - "offset": 616, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2207009163 - }, - "m_labelOffset": { - "type": "class Rect", - "id": 19, - "offset": 832, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1990646723 - }, - "m_pButton": { - "type": "class SharedPointer", - "id": 20, - "offset": 656, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1543855875 - }, - "m_HotKey": { - "type": "unsigned int", - "id": 21, - "offset": 672, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1631553409 - }, - "m_Color": { - "type": "class Color", - "id": 22, - "offset": 676, - "flags": 262279, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1753714077 - }, - "m_bCursorOver": { - "type": "bool", - "id": 23, - "offset": 689, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 283981103 - }, - "m_bAbortWhenCursorNotOver": { - "type": "bool", - "id": 24, - "offset": 706, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 325405258 - }, - "m_bHotKeyDown": { - "type": "bool", - "id": 25, - "offset": 680, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 616989185 - }, - "m_fTime": { - "type": "float", - "id": 26, - "offset": 684, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 883746156 - }, - "m_bGreyed": { - "type": "bool", - "id": 27, - "offset": 688, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1566556053 - }, - "m_fMaxScale": { - "type": "float", - "id": 28, - "offset": 692, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2070186635 - }, - "m_fScaleSpeed": { - "type": "float", - "id": 29, - "offset": 696, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1457135702 - }, - "m_bUseDropShadow": { - "type": "bool", - "id": 30, - "offset": 704, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 93063037 - }, - "m_bUseOutline": { - "type": "bool", - "id": 31, - "offset": 705, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 744292994 - }, - "m_pGreyedState": { - "type": "class SharedPointer", - "id": 32, - "offset": 768, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2703352263 - }, - "m_pNormalState": { - "type": "class SharedPointer", - "id": 33, - "offset": 752, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1887909808 - }, - "m_pHighlightedState": { - "type": "class SharedPointer", - "id": 34, - "offset": 784, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2200177608 - }, - "m_pSelectedState": { - "type": "class SharedPointer", - "id": 35, - "offset": 800, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2266776432 - }, - "m_pDepressedState": { - "type": "class SharedPointer", - "id": 36, - "offset": 816, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1878185798 - }, - "m_pDecal": { - "type": "class SharedPointer", - "id": 37, - "offset": 880, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2204742880 - }, - "m_DecalColor": { - "type": "class Color", - "id": 38, - "offset": 896, - "flags": 262279, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2053465718 - }, - "m_DecalOffset": { - "type": "class Rect", - "id": 39, - "offset": 900, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1942612892 - }, - "m_pGreyedDecalState": { - "type": "class SharedPointer", - "id": 40, - "offset": 936, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1430510752 - }, - "m_pNormalDecalState": { - "type": "class SharedPointer", - "id": 41, - "offset": 920, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1908952105 - }, - "m_pHighlightedDecalState": { - "type": "class SharedPointer", - "id": 42, - "offset": 952, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3280301889 - }, - "m_pSelectedDecalState": { - "type": "class SharedPointer", - "id": 43, - "offset": 968, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1444589545 - }, - "m_pDepressedDecalState": { - "type": "class SharedPointer", - "id": 44, - "offset": 984, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2385844607 - } - } - }, - "300233778": { - "name": "class SharedPointer", - "bases": [ - "GameEffectBase", - "PropertyClass" - ], - "hash": 300233778, - "properties": { - "m_currentTickCount": { - "type": "double", - "id": 0, - "offset": 80, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2533274692 - }, - "m_effectNameID": { - "type": "unsigned int", - "id": 1, - "offset": 96, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1204067144 - }, - "m_bIsOnPet": { - "type": "bool", - "id": 2, - "offset": 73, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 522593303 - }, - "m_originatorID": { - "type": "gid", - "id": 3, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1131810019 - }, - "m_itemSlotID": { - "type": "unsigned int", - "id": 4, - "offset": 112, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1895747595 - }, - "m_internalID": { - "type": "int", - "id": 5, - "offset": 92, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1643137924 - }, - "m_endTime": { - "type": "unsigned int", - "id": 6, - "offset": 88, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 716479635 - }, - "m_xpPercent": { - "type": "int", - "id": 7, - "offset": 128, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 755316563 - } - } - }, - "712314622": { - "name": "class DMLRecord", - "bases": [], - "hash": 712314622, - "properties": {} - }, - "711200415": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 711200415, - "properties": { - "m_position": { - "type": "class Vector3D", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3697900983 - }, - "m_pitch": { - "type": "float", - "id": 1, - "offset": 84, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 896371695 - }, - "m_yaw": { - "type": "float", - "id": 2, - "offset": 88, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 357256328 - }, - "m_roll": { - "type": "float", - "id": 3, - "offset": 92, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 310020272, - "enum_options": { - "__DEFAULT": 0 - } - } - } - }, - "710866146": { - "name": "class ShoppingColorModifiers*", - "bases": [ - "PropertyClass" - ], - "hash": 710866146, - "properties": { - "m_boysPrimaryColors": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 300868202 - }, - "m_boysSecondaryColors": { - "type": "float", - "id": 1, - "offset": 96, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2061028494 - }, - "m_girlsPrimaryColors": { - "type": "float", - "id": 2, - "offset": 120, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 327992494 - }, - "m_girlsSecondaryColors": { - "type": "float", - "id": 3, - "offset": 144, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1534611410 - } - } - }, - "300799690": { - "name": "class ClientMoveActorCinematicAction", - "bases": [ - "MoveActorCinematicAction", - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 300799690, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - }, - "m_destinationActor": { - "type": "std::string", - "id": 2, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1510240374 - }, - "m_interpolationDuration": { - "type": "float", - "id": 3, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1458058437 - }, - "m_interpolateRotation": { - "type": "bool", - "id": 4, - "offset": 156, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2140337898 - }, - "m_kDestination": { - "type": "enum MoveActorCinematicAction::kMoveActorDestination", - "id": 5, - "offset": 160, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2027574244, - "enum_options": { - "kCenter": 0, - "kHome": 3, - "kActor": 1, - "kActorHangingEffect": 2 - } - }, - "m_destinationZOffset": { - "type": "float", - "id": 6, - "offset": 164, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2188240922 - } - } - }, - "300690939": { - "name": "class SharedPointer", - "bases": [ - "Window", - "PropertyClass" - ], - "hash": 300690939, - "properties": { - "m_sName": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306437263 - }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 65667, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621225959 - }, - "m_Style": { - "type": "unsigned int", - "id": 2, - "offset": 152, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "SCALE_CHILDREN": 2, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "FOCUS_LOCKED": 64, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152 - } - }, - "m_Flags": { - "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } - }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3105139380 - }, - "m_fTargetAlpha": { - "type": "float", - "id": 5, - "offset": 212, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1809129834 - }, - "m_fDisabledAlpha": { - "type": "float", - "id": 6, - "offset": 216, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1389987675 - }, - "m_fAlpha": { - "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 482130755 - }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3623628394 - }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2102211316 - }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1846695875 - }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3389835433 - }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2547159940 - }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2587533771 - }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3091503757 - } - } - }, - "711255698": { - "name": "class PlayerStatuePvPBlob*", - "bases": [ - "PlayerStatueBlob", - "PropertyClass" - ], - "hash": 711255698, - "properties": { - "m_level": { - "type": "int", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 801285362 - }, - "m_school": { - "type": "unsigned int", - "id": 1, - "offset": 76, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1152268885 - }, - "m_gender": { - "type": "int", - "id": 2, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 473816879 - }, - "m_nameKeys": { - "type": "unsigned int", - "id": 3, - "offset": 84, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1772225898 - }, - "m_badge": { - "type": "std::string", - "id": 4, - "offset": 88, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2286962478 - }, - "m_pCharacterBehavior": { - "type": "class SharedPointer", - "id": 5, - "offset": 120, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2724673923 - }, - "m_pEquipment": { - "type": "class SharedPointer", - "id": 6, - "offset": 136, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2473540161 - }, - "m_pStats": { - "type": "class SharedPointer", - "id": 7, - "offset": 152, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2212894623 - }, - "m_pGameEffects": { - "type": "class SharedPointer", - "id": 8, - "offset": 168, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1557857436 - }, - "m_petTID": { - "type": "unsigned int", - "id": 9, - "offset": 200, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1037635095 - }, - "m_pPetBehavior": { - "type": "class SharedPointer", - "id": 10, - "offset": 208, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2663493503 - }, - "m_pPetJewels": { - "type": "class SharedPointer", - "id": 11, - "offset": 224, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 733229991 - } - } - }, - "300799198": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 300799198, - "properties": { - "m_eventName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3493260286 - }, - "m_basePoints": { - "type": "float", - "id": 1, - "offset": 108, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 624575055 - }, - "m_repeatScaler": { - "type": "float", - "id": 2, - "offset": 112, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 322423826 - }, - "m_lifespan": { - "type": "std::string", - "id": 3, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3042809453 - }, - "m_collapse": { - "type": "bool", - "id": 4, - "offset": 156, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1782517958 - } - } - }, - "711519895": { - "name": "enum WizBugReport::IdeaType", - "bases": [], - "hash": 711519895, - "properties": {} - }, - "300800850": { - "name": "class SharedPointer", - "bases": [ - "BuffDebuffEventCinematicAction", - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 300800850, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - } - } - }, - "712631640": { - "name": "class CastleMagicTutorial", - "bases": [ - "PropertyClass" - ], - "hash": 712631640, - "properties": {} - }, - "712335102": { - "name": "class DMLRecord*", - "bases": [], - "hash": 712335102, - "properties": {} - }, - "302068699": { - "name": "class SharedPointer", - "bases": [ - "WindowAnimation", - "PropertyClass" - ], - "hash": 302068699, - "properties": { - "m_bUseDeepCopy": { - "type": "bool", - "id": 0, - "offset": 72, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 433380635 - }, - "m_nAmount": { - "type": "int", - "id": 1, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1788918332 - }, - "m_fTime": { - "type": "float", - "id": 2, - "offset": 84, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 883746156 - }, - "m_fTimeRemaining": { - "type": "float", - "id": 3, - "offset": 88, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1591443014 - }, - "m_bEndTutorialOnFinish": { - "type": "bool", - "id": 4, - "offset": 92, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1777836702 - } - } - }, - "301853426": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 301853426, - "properties": { - "m_socketNumber": { - "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 772707167 - }, - "m_jewelID": { - "type": "gid", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 190876604 - } - } - }, - "301407068": { - "name": "enum NPCDataList::ZONE_TYPE", - "bases": [], - "hash": 301407068, - "properties": {} - }, - "301195382": { - "name": "class SharedPointer", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 301195382, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - } - } - }, - "713899435": { - "name": "class RealmInfoList*", - "bases": [ - "PropertyClass" - ], - "hash": 713899435, - "properties": { - "m_infoList": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1814698255 - } - } - }, - "713677941": { - "name": "class ClientCameraFadeCinematicAction*", - "bases": [ - "CameraFadeCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 713677941, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_fDuration": { - "type": "float", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 598255075 - }, - "m_bCycle": { - "type": "bool", - "id": 2, - "offset": 84, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 240694213 - }, - "m_bFadeIn": { - "type": "bool", - "id": 3, - "offset": 85, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1507201372 - } - } - }, - "301545591": { - "name": "class SharedPointer", - "bases": [ - "Window", - "PropertyClass" - ], - "hash": 301545591, - "properties": { - "m_sName": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306437263 - }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621225959 - }, - "m_Style": { - "type": "unsigned int", - "id": 2, - "offset": 152, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "SCALE_CHILDREN": 2, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "FOCUS_LOCKED": 64, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152 - } - }, - "m_Flags": { - "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } - }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3105139380 - }, - "m_fTargetAlpha": { - "type": "float", - "id": 5, - "offset": 212, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1809129834 - }, - "m_fDisabledAlpha": { - "type": "float", - "id": 6, - "offset": 216, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1389987675 - }, - "m_fAlpha": { - "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 482130755 - }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3623628394 - }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2102211316 - }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1846695875 - }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3389835433 - }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2547159940 - }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2587533771 - }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3091503757 - } - } - }, - "713899438": { - "name": "class RealmInfoList", - "bases": [ - "PropertyClass" - ], - "hash": 713899438, - "properties": { - "m_infoList": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1814698255 - } - } - }, - "301889062": { - "name": "class SharedPointer", - "bases": [ - "DerbyEffect", - "PropertyClass" - ], - "hash": 301889062, - "properties": { - "m_buffType": { - "type": "enum DerbyTalentBuffType", - "id": 0, - "offset": 92, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1149251982, - "enum_options": { - "Buff": 0, - "Debuff": 1, - "Neither": 2 - } - }, - "m_kTarget": { - "type": "enum DerbyTargetType", - "id": 1, - "offset": 96, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1807803351, - "enum_options": { - "kTargetInFront": 0, - "kTargetBehind": 1, - "kTargetFirst": 2, - "kTargetSelf": 3, - "kTargetAll": 4, - "kTargetLast": 5 - } - }, - "m_nDuration": { - "type": "int", - "id": 2, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1110167982 - }, - "m_effectID": { - "type": "unsigned int", - "id": 3, - "offset": 88, - "flags": 24, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2347630439 - }, - "m_imageFilename": { - "type": "std::string", - "id": 4, - "offset": 112, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2813328063 - }, - "m_iconIndex": { - "type": "unsigned int", - "id": 5, - "offset": 144, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1265133262 - }, - "m_soundOnActivate": { - "type": "std::string", - "id": 6, - "offset": 152, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1956929714 - }, - "m_soundOnTarget": { - "type": "std::string", - "id": 7, - "offset": 184, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3444214056 - }, - "m_targetParticleEffect": { - "type": "std::string", - "id": 8, - "offset": 216, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3048234723 - }, - "m_overheadMessage": { - "type": "std::string", - "id": 9, - "offset": 248, - "flags": 8388639, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1701018190 - }, - "m_requirements": { - "type": "class RequirementList", - "id": 10, - "offset": 280, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2840988582 - }, - "m_nNumBuffs": { - "type": "int", - "id": 11, - "offset": 376, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1860427310 - }, - "m_nNumDebuffs": { - "type": "int", - "id": 12, - "offset": 380, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 637090007 - } - } - }, - "714956159": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 714956159, - "properties": { - "m_photoWorthyItems": { - "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1021725286 - } - } - }, - "302238839": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 302238839, - "properties": { - "m_inactiveBehaviors": { - "type": "class SharedPointer", - "id": 0, - "offset": 224, - "flags": 31, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1850812559 - }, - "m_globalID.m_full": { - "type": "unsigned __int64", - "id": 1, - "offset": 72, - "flags": 16777247, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2312465444 - }, - "m_permID": { - "type": "unsigned __int64", - "id": 2, - "offset": 80, - "flags": 16777247, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1298909658 - }, - "m_location": { - "type": "class Vector3D", - "id": 3, - "offset": 168, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2239683611 - }, - "m_orientation": { - "type": "class Vector3D", - "id": 4, - "offset": 180, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2344058766 - }, - "m_fScale": { - "type": "float", - "id": 5, - "offset": 196, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 503137701 - }, - "m_templateID.m_full": { - "type": "unsigned __int64", - "id": 6, - "offset": 96, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 633907631 - }, - "m_debugName": { - "type": "std::string", - "id": 7, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3553984419 - }, - "m_displayKey": { - "type": "std::string", - "id": 8, - "offset": 136, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3023276954 - }, - "m_zoneTagID": { - "type": "unsigned int", - "id": 9, - "offset": 344, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 965291410 - }, - "m_speedMultiplier": { - "type": "short", - "id": 10, - "offset": 192, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 123130076 - }, - "m_nMobileID": { - "type": "unsigned short", - "id": 11, - "offset": 194, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1054318939 - } - } - }, - "716468600": { - "name": "class SharedPointer", - "bases": [ - "GameEffectBase", - "PropertyClass" - ], - "hash": 716468600, - "properties": { - "m_currentTickCount": { - "type": "double", - "id": 0, - "offset": 80, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2533274692 - }, - "m_effectNameID": { - "type": "unsigned int", - "id": 1, - "offset": 96, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1204067144 - }, - "m_bIsOnPet": { - "type": "bool", - "id": 2, - "offset": 73, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 522593303 - }, - "m_originatorID": { - "type": "gid", - "id": 3, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1131810019 - }, - "m_itemSlotID": { - "type": "unsigned int", - "id": 4, - "offset": 112, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1895747595 - }, - "m_internalID": { - "type": "int", - "id": 5, - "offset": 92, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1643137924 - }, - "m_endTime": { - "type": "unsigned int", - "id": 6, - "offset": 88, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 716479635 - } - } - }, - "302165059": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 302165059, - "properties": { - "m_location": { - "type": "class Vector3D", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2239683611 - }, - "m_fRadius": { - "type": "float", - "id": 1, - "offset": 84, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 787972805 - }, - "m_id": { - "type": "gid", - "id": 2, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2090569797 - }, - "m_direction": { - "type": "float", - "id": 3, - "offset": 88, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1528165112 - }, - "m_roll": { - "type": "float", - "id": 4, - "offset": 92, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 310020272 - }, - "m_descriptor": { - "type": "class SharedPointer", - "id": 5, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1929260873 - } - } - }, - "715937935": { - "name": "class BadgeInfoList*", - "bases": [ - "PropertyClass" - ], - "hash": 715937935, - "properties": { - "m_badges": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1636336781 - } - } - }, - "715937930": { - "name": "class BadgeInfoList", - "bases": [ - "PropertyClass" - ], - "hash": 715937930, - "properties": { - "m_badges": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1636336781 - } - } - }, - "302181491": { - "name": "class SharedPointer", - "bases": [ - "PositionalSoundBehaviorTemplate", - "SoundBehaviorTemplate", - "AreaBehaviorTemplate", - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 302181491, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - }, - "m_radius": { - "type": "float", - "id": 1, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 989410271 - }, - "m_category": { - "type": "enum AudioCategory", - "id": 2, - "offset": 124, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2951251982, - "enum_options": { - "AudioCategory_Irrelevent": 0, - "AudioCategory_Accoustic": 1, - "AudioCategory_Noise": 2, - "AudioCategory_Music": 3, - "AudioCategory_MusicAtSFXVolume": 4, - "AudioCategory_Dialog": 5, - "AudioCategory_UI": 6, - "AudioCategory_NoiseAtMusicVolume": 7 - } - }, - "m_exclusive": { - "type": "bool", - "id": 3, - "offset": 128, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 824383403 - }, - "m_active": { - "type": "bool", - "id": 4, - "offset": 129, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 239335471 - }, - "m_enableReqs": { - "type": "class SharedPointer", - "id": 5, - "offset": 136, - "flags": 263, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3158020443 - }, - "m_trackFilenameList": { - "type": "std::string", - "id": 6, - "offset": 152, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2531081709 - }, - "m_playList": { - "type": "class PlayListEntry*", - "id": 7, - "offset": 176, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 3907873161 - }, - "m_priority": { - "type": "int", - "id": 8, - "offset": 208, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1235205852 - }, - "m_volume": { - "type": "float", - "id": 9, - "offset": 200, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1162855023 - }, - "m_loopCount": { - "type": "int", - "id": 10, - "offset": 204, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 865634717 - }, - "m_progression": { - "type": "enum PlayList::Progression", - "id": 11, - "offset": 220, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3279400238, - "enum_options": { - "Sequence": 0, - "Random": 1, - "SequenceOnceOnly": 2, - "RandomNoRepeat": 3 - } - }, - "m_progressMin": { - "type": "float", - "id": 12, - "offset": 212, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1497550192 - }, - "m_progressMax": { - "type": "float", - "id": 13, - "offset": 216, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1497549938 - }, - "m_audioFilterSet": { - "type": "unsigned int", - "id": 14, - "offset": 224, - "flags": 33554439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 831339825 - }, - "m_animationNameFilter": { - "type": "std::string", - "id": 15, - "offset": 232, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2292854242 - }, - "m_functionallabel": { - "type": "std::string", - "id": 16, - "offset": 264, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3589331278 - }, - "m_innerRadius": { - "type": "float", - "id": 17, - "offset": 296, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 686816091 - }, - "m_inverted": { - "type": "bool", - "id": 18, - "offset": 300, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1034821044 - } - } - }, - "303197932": { - "name": "class PvP5thAgeKioskBehaviorTemplate", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 303197932, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - }, - "m_kioskName": { - "type": "std::string", - "id": 1, - "offset": 120, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2560037053 - }, - "m_leagueType": { - "type": "std::string", - "id": 2, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3327951024 - } - } - }, - "716714533": { - "name": "class CoreObjectInfo", - "bases": [ - "PropertyClass" - ], - "hash": 716714533, - "properties": { - "m_templateID.m_full": { - "type": "unsigned __int64", - "id": 0, - "offset": 72, - "flags": 33554439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 633907631 - }, - "m_nObjectID": { - "type": "unsigned int", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 748496927 - }, - "m_location": { - "type": "class Vector3D", - "id": 2, - "offset": 84, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2239683611 - }, - "m_orientation": { - "type": "class Vector3D", - "id": 3, - "offset": 96, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2344058766 - }, - "m_fScale": { - "type": "float", - "id": 4, - "offset": 108, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 503137701 - }, - "m_zoneTag": { - "type": "std::string", - "id": 5, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3405382643 - }, - "m_startState": { - "type": "std::string", - "id": 6, - "offset": 184, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2166880458 - }, - "m_overrideName": { - "type": "std::string", - "id": 7, - "offset": 120, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1990707228 - }, - "m_globalDynamic": { - "type": "bool", - "id": 8, - "offset": 116, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1951691017 - }, - "m_bUndetectable": { - "type": "bool", - "id": 9, - "offset": 216, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1907454341 - }, - "m_spawnRequirements": { - "type": "class SharedPointer", - "id": 10, - "offset": 224, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2309120870 - }, - "m_loadingType": { - "type": "enum CoreObjectInfo::LoadingType", - "id": 11, - "offset": 112, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3522422550, - "enum_options": { - "STATIC_CLIENT_SERVER": 0, - "STATIC_CLIENT": 1, - "STATIC_SERVER": 2, - "DYNAMIC_SERVER": 3 - } - } - } - }, - "303027026": { - "name": "class ClientUpdatePipsCinematicAction*", - "bases": [ - "UpdatePipsCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 303027026, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - } - } - }, - "302567393": { - "name": "class SharedPointer", - "bases": [ - "MoveBehavior::Controller", - "PropertyClass" - ], - "hash": 302567393, - "properties": { - "m_bCollisionDisabled": { - "type": "bool", - "id": 0, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1732895577 - }, - "m_bVehicleMode": { - "type": "bool", - "id": 1, - "offset": 121, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1597295002 - }, - "m_fForwardModifier": { - "type": "float", - "id": 2, - "offset": 124, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1173988321 - }, - "m_fBackModifier": { - "type": "float", - "id": 3, - "offset": 128, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 148042045 - }, - "m_fStrafeModifier": { - "type": "float", - "id": 4, - "offset": 132, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 226084913 - }, - "m_fTurnModifier": { - "type": "float", - "id": 5, - "offset": 136, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2134998805 - }, - "m_fAccelerationModifier": { - "type": "float", - "id": 6, - "offset": 144, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 592902742 - }, - "m_fDecelerationModifier": { - "type": "float", - "id": 7, - "offset": 148, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1770082811 - } - } - }, - "722124004": { - "name": "class ItemFinderBehavior", - "bases": [ - "ItemFinderBehaviorBase", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 722124004, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - } - } - }, - "721338156": { - "name": "class ClientHideShadowCreatureCinematicAction*", - "bases": [ - "HideShadowCreatureCinematicAction", - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 721338156, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - } - } - }, - "719400181": { - "name": "class ControlTab::Button", - "bases": [ - "ControlButton", - "Window", - "PropertyClass" - ], - "hash": 719400181, - "properties": { - "m_sName": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306437263 - }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621225959 - }, - "m_Style": { - "type": "unsigned int", - "id": 2, - "offset": 152, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152, - "SHOW_HOTKEY": 16777216, - "EFFECT_SCALE": 67108864, - "LOCK_ICON_SIZE": 33554432, - "LEFT_TEXT": 536870912, - "NO_FIT_TEXT": 1073741824 - } - }, - "m_Flags": { - "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } - }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3105139380 - }, - "m_fTargetAlpha": { - "type": "float", - "id": 5, - "offset": 212, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1809129834 - }, - "m_fDisabledAlpha": { - "type": "float", - "id": 6, - "offset": 216, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1389987675 - }, - "m_fAlpha": { - "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 482130755 - }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3623628394 - }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2102211316 - }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1846695875 - }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3389835433 - }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2547159940 - }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2587533771 - }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3091503757 - }, - "m_bToggle": { - "type": "bool", - "id": 16, - "offset": 608, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2071810903 - }, - "m_bButtonDown": { - "type": "bool", - "id": 17, - "offset": 609, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 840041705 - }, - "m_sLabel": { - "type": "std::wstring", - "id": 18, - "offset": 616, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2207009163 - }, - "m_labelOffset": { - "type": "class Rect", - "id": 19, - "offset": 832, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1990646723 - }, - "m_pButton": { - "type": "class SharedPointer", - "id": 20, - "offset": 656, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1543855875 - }, - "m_HotKey": { - "type": "unsigned int", - "id": 21, - "offset": 672, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1631553409 - }, - "m_Color": { - "type": "class Color", - "id": 22, - "offset": 676, - "flags": 262279, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1753714077 - }, - "m_bCursorOver": { - "type": "bool", - "id": 23, - "offset": 689, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 283981103 - }, - "m_bAbortWhenCursorNotOver": { - "type": "bool", - "id": 24, - "offset": 706, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 325405258 - }, - "m_bHotKeyDown": { - "type": "bool", - "id": 25, - "offset": 680, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 616989185 - }, - "m_fTime": { - "type": "float", - "id": 26, - "offset": 684, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 883746156 - }, - "m_bGreyed": { - "type": "bool", - "id": 27, - "offset": 688, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1566556053 - }, - "m_fMaxScale": { - "type": "float", - "id": 28, - "offset": 692, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2070186635 - }, - "m_fScaleSpeed": { - "type": "float", - "id": 29, - "offset": 696, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1457135702 - }, - "m_bUseDropShadow": { - "type": "bool", - "id": 30, - "offset": 704, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 93063037 - }, - "m_bUseOutline": { - "type": "bool", - "id": 31, - "offset": 705, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 744292994 - }, - "m_pGreyedState": { - "type": "class SharedPointer", - "id": 32, - "offset": 768, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2703352263 - }, - "m_pNormalState": { - "type": "class SharedPointer", - "id": 33, - "offset": 752, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1887909808 - }, - "m_pHighlightedState": { - "type": "class SharedPointer", - "id": 34, - "offset": 784, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2200177608 - }, - "m_pSelectedState": { - "type": "class SharedPointer", - "id": 35, - "offset": 800, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2266776432 - }, - "m_pDepressedState": { - "type": "class SharedPointer", - "id": 36, - "offset": 816, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1878185798 - } - } - }, - "303373912": { - "name": "class DyeShopOption", - "bases": [ - "ServiceOptionBase", - "PropertyClass" - ], - "hash": 303373912, - "properties": { - "m_serviceName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2206028813 - }, - "m_iconKey": { - "type": "std::string", - "id": 1, - "offset": 168, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2457138637 - }, - "m_displayKey": { - "type": "std::string", - "id": 2, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3023276954 - }, - "m_serviceIndex": { - "type": "unsigned int", - "id": 3, - "offset": 204, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2103126710 - }, - "m_forceInteract": { - "type": "bool", - "id": 4, - "offset": 200, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1705789564 - } - } - }, - "717808309": { - "name": "class ClientPvPPenaltyMatchBan", - "bases": [ - "PvPPenaltyMatchBan", - "InfractionPenalty", - "PropertyClass" - ], - "hash": 717808309, - "properties": { - "m_internalID": { - "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1854540375 - }, - "m_categoryID": { - "type": "unsigned int", - "id": 1, - "offset": 76, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1382795736 - }, - "m_removeAtPointValue": { - "type": "float", - "id": 2, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2112196961 - }, - "m_expireTime": { - "type": "unsigned int", - "id": 3, - "offset": 84, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1836304873 - }, - "m_duration": { - "type": "unsigned int", - "id": 4, - "offset": 88, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1041524755 - } - } - }, - "323423977": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 323423977, - "properties": {} - }, - "720863591": { - "name": "class std::list >", - "bases": [], - "hash": 720863591, - "properties": {} - }, - "317343907": { - "name": "class AreaBehavior", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 317343907, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_radius": { - "type": "float", - "id": 1, - "offset": 116, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 989410271 - }, - "m_category": { - "type": "enum AudioCategory", - "id": 2, - "offset": 124, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2951251982, - "enum_options": { - "AudioCategory_Irrelevent": 0, - "AudioCategory_Accoustic": 1, - "AudioCategory_Noise": 2, - "AudioCategory_Music": 3 - } - }, - "m_exclusive": { - "type": "bool", - "id": 3, - "offset": 128, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 824383403 - } - } - }, - "720842147": { - "name": "class SharedPointer", - "bases": [ - "AreaBehaviorTemplate", - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 720842147, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - }, - "m_radius": { - "type": "float", - "id": 1, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 989410271 - }, - "m_category": { - "type": "enum AudioCategory", - "id": 2, - "offset": 124, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2951251982, - "enum_options": { - "AudioCategory_Irrelevent": 0, - "AudioCategory_Accoustic": 1, - "AudioCategory_Noise": 2, - "AudioCategory_Music": 3, - "AudioCategory_MusicAtSFXVolume": 4, - "AudioCategory_Dialog": 5, - "AudioCategory_UI": 6, - "AudioCategory_NoiseAtMusicVolume": 7 - } - }, - "m_exclusive": { - "type": "bool", - "id": 3, - "offset": 128, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 824383403 - }, - "m_active": { - "type": "bool", - "id": 4, - "offset": 129, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 239335471 - }, - "m_enableReqs": { - "type": "class SharedPointer", - "id": 5, - "offset": 136, - "flags": 263, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3158020443 - }, - "m_accousticSignature": { - "type": "enum AccousticSignature", - "id": 6, - "offset": 152, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1188263221, - "enum_options": { - "Generic": 0, - "Padded Cell": 1, - "Room": 2, - "Bath Room": 3, - "Living Room": 4, - "Stone Room": 5, - "Auditorium": 6, - "Concert Hall": 7, - "Cave": 8, - "Arena": 9, - "Hanger": 10, - "Carpeted Hallway": 11, - "Hallway": 12, - "Stone Corridor": 13, - "Alley": 14, - "Forest": 15, - "City": 16, - "Mountains": 17, - "Quarry": 18, - "Plain": 19, - "Parking Lot": 20, - "Sewer Pipe": 21, - "Underwater": 22, - "Drugged": 23, - "Dizzy": 24, - "Psychotic": 25 - } - } - } - }, - "311758424": { - "name": "class CameraController*", - "bases": [ - "PropertyClass" - ], - "hash": 311758424, - "properties": {} - }, - "1074858893": { - "name": "class ClearBottomTeamCinematicAction", - "bases": [ - "CinematicAction", - "PropertyClass" - ], - "hash": 1074858893, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_interpDuration": { - "type": "float", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237711951 - } - } - }, - "1474399017": { - "name": "class PublicSocketJewelPair", - "bases": [ - "PropertyClass" - ], - "hash": 1474399017, - "properties": { - "m_socketNumber": { - "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 772707167 - }, - "m_jewelTemplateID": { - "type": "unsigned int", - "id": 1, - "offset": 76, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 396940685 - } - } - }, - "305559732": { - "name": "class SharedPointer", - "bases": [ - "WinAnimConcurrent", - "WinAnimContainer", - "WindowAnimation", - "PropertyClass" - ], - "hash": 305559732, - "properties": { - "m_bUseDeepCopy": { - "type": "bool", - "id": 0, - "offset": 72, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 433380635 - }, - "m_winAnimList": { - "type": "class SharedPointer", - "id": 1, - "offset": 80, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1941062728 - }, - "m_bLooping": { - "type": "bool", - "id": 2, - "offset": 104, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2131020845 - }, - "m_finishedAnimList": { - "type": "class SharedPointer", - "id": 3, - "offset": 112, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 3066650884 - }, - "m_boundary": { - "type": "class Rect", - "id": 4, - "offset": 128, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1423726080 - } - } - }, - "1074770504": { - "name": "class SharedPointer", - "bases": [ - "CameraReleaseCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 1074770504, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_releaseInterpolationDuration": { - "type": "float", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1807754278, - "enum_options": { - "__DEFAULT": "1.0" - } - } - } - }, - "303823158": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 303823158, - "properties": { - "m_opponents": { - "type": "gid", - "id": 0, - "offset": 72, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1257835102 - }, - "m_points": { - "type": "unsigned int", - "id": 1, - "offset": 88, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1049128778 - }, - "m_matchResult": { - "type": "unsigned int", - "id": 2, - "offset": 92, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1912880793 - }, - "m_competingForPlace": { - "type": "unsigned int", - "id": 3, - "offset": 100, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1156208831 - } - } - }, - "1477524573": { - "name": "class SharedPointer", - "bases": [ - "TurnIndicatorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 1477524573, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - } - } - }, - "304888175": { - "name": "class WizardControlTable", - "bases": [ - "Window", - "PropertyClass" - ], - "hash": 304888175, - "properties": { - "m_sName": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306437263 - }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 65667, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621225959 - }, - "m_Style": { - "type": "unsigned int", - "id": 2, - "offset": 152, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "SCALE_CHILDREN": 2, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "FOCUS_LOCKED": 64, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152 - } - }, - "m_Flags": { - "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } - }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3105139380 - }, - "m_fTargetAlpha": { - "type": "float", - "id": 5, - "offset": 212, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1809129834 - }, - "m_fDisabledAlpha": { - "type": "float", - "id": 6, - "offset": 216, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1389987675 - }, - "m_fAlpha": { - "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 482130755 - }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3623628394 - }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2102211316 - }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1846695875 - }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3389835433 - }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2547159940 - }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2587533771 - }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3091503757 - } - } - }, - "1074970711": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1074970711, - "properties": { - "m_playerList": { - "type": "gid", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1909774945 - } - } - }, - "1476473316": { - "name": "class ClientPolymorphCinematicAction", - "bases": [ - "PolymorphCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 1476473316, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - } - } - }, - "1074929863": { - "name": "class SharedPointer", - "bases": [ - "StatisticEffectTemplate", - "GameEffectTemplate", - "PropertyClass" - ], - "hash": 1074929863, - "properties": { - "m_effectName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2029161513 - }, - "m_effectCategory": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1852673222 - }, - "m_sortOrder": { - "type": "int", - "id": 2, - "offset": 148, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1411218206 - }, - "m_duration": { - "type": "double", - "id": 3, - "offset": 192, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2727932435 - }, - "m_stackingCategories": { - "type": "std::string", - "id": 4, - "offset": 160, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1774497525 - }, - "m_isPersistent": { - "type": "bool", - "id": 5, - "offset": 153, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 923861920 - }, - "m_bIsOnPet": { - "type": "bool", - "id": 6, - "offset": 154, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 522593303 - }, - "m_isPublic": { - "type": "bool", - "id": 7, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1728439822 - }, - "m_visualEffectAddName": { - "type": "std::string", - "id": 8, - "offset": 200, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3382086694 - }, - "m_visualEffectRemoveName": { - "type": "std::string", - "id": 9, - "offset": 232, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1541697323 - }, - "m_onAddFunctorName": { - "type": "std::string", - "id": 10, - "offset": 280, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1561843107 - }, - "m_onRemoveFunctorName": { - "type": "std::string", - "id": 11, - "offset": 312, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2559017864 - }, - "m_stackingRule": { - "type": "enum STACKING_RULE", - "id": 12, - "offset": 144, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 431568889, - "enum_options": { - "STACKING_ALLOWED": 0, - "STACKING_NOSTACK": 1, - "STACKING_REPLACE": 2 - } - }, - "m_itemSlots": { - "type": "std::string", - "id": 13, - "offset": 360, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 3305858271 - } - } - }, - "1475383864": { - "name": "class ClientProcess*", - "bases": [ - "PropertyClass" - ], - "hash": 1475383864, - "properties": {} - }, - "1475050762": { - "name": "class SharedPointer", - "bases": [ - "CoreObjectInfo", - "PropertyClass" - ], - "hash": 1475050762, - "properties": { - "m_templateID.m_full": { - "type": "unsigned __int64", - "id": 0, - "offset": 72, - "flags": 33554439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 633907631 - }, - "m_nObjectID": { - "type": "unsigned int", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 748496927 - }, - "m_location": { - "type": "class Vector3D", - "id": 2, - "offset": 84, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2239683611 - }, - "m_orientation": { - "type": "class Vector3D", - "id": 3, - "offset": 96, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2344058766 - }, - "m_fScale": { - "type": "float", - "id": 4, - "offset": 108, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 503137701 - }, - "m_zoneTag": { - "type": "std::string", - "id": 5, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3405382643 - }, - "m_startState": { - "type": "std::string", - "id": 6, - "offset": 184, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2166880458 - }, - "m_overrideName": { - "type": "std::string", - "id": 7, - "offset": 120, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1990707228 - }, - "m_globalDynamic": { - "type": "bool", - "id": 8, - "offset": 116, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1951691017 - }, - "m_bUndetectable": { - "type": "bool", - "id": 9, - "offset": 216, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1907454341 - }, - "m_spawnRequirements": { - "type": "class SharedPointer", - "id": 10, - "offset": 224, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2309120870 - }, - "m_loadingType": { - "type": "enum CoreObjectInfo::LoadingType", - "id": 11, - "offset": 112, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3522422550, - "enum_options": { - "STATIC_CLIENT_SERVER": 0, - "STATIC_CLIENT": 1, - "STATIC_SERVER": 2, - "DYNAMIC_SERVER": 3 - } - } - } - }, - "307603608": { - "name": "class CombatPlanningPhaseWindow", - "bases": [ - "Window", - "PropertyClass" - ], - "hash": 307603608, - "properties": { - "m_sName": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306437263 - }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621225959 - }, - "m_Style": { - "type": "unsigned int", - "id": 2, - "offset": 152, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "SCALE_CHILDREN": 2, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "FOCUS_LOCKED": 64, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152 - } - }, - "m_Flags": { - "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } - }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3105139380 - }, - "m_fTargetAlpha": { - "type": "float", - "id": 5, - "offset": 212, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1809129834 - }, - "m_fDisabledAlpha": { - "type": "float", - "id": 6, - "offset": 216, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1389987675 - }, - "m_fAlpha": { - "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 482130755 - }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3623628394 - }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2102211316 - }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1846695875 - }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3389835433 - }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2547159940 - }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2587533771 - }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3091503757 - } - } - }, - "306083240": { - "name": "class SharedPointer", - "bases": [ - "TournamentUpdate", - "PropertyClass" - ], - "hash": 306083240, - "properties": { - "m_teamID": { - "type": "gid", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 982102220 - }, - "m_matchID": { - "type": "gid", - "id": 1, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1757621298 - } - } - }, - "1075645972": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1075645972, - "properties": { - "m_poiList": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 3936595873 - } - } - }, - "1475383859": { - "name": "class ClientProcess", - "bases": [ - "PropertyClass" - ], - "hash": 1475383859, - "properties": {} - }, - "306737126": { - "name": "MadlibArgT", - "bases": [ - "MadlibArg", - "PropertyClass" - ], - "hash": 306737126, - "properties": { - "m_madlibToken": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3058682373 - }, - "m_madlibArgument": { - "type": "unsigned int", - "id": 1, - "offset": 112, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1089894617 - } - } - }, - "1075975028": { - "name": "class DuelModifier*", - "bases": [ - "PropertyClass" - ], - "hash": 1075975028, - "properties": { - "m_combatTriggers": { - "type": "std::string", - "id": 0, - "offset": 104, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 3023646200 - }, - "m_noTreasureCards": { - "type": "bool", - "id": 1, - "offset": 137, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1653008424 - }, - "m_battlefieldEffects": { - "type": "class SharedPointer", - "id": 2, - "offset": 72, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1245973515 - }, - "m_gameEffects": { - "type": "class SharedPointer", - "id": 3, - "offset": 88, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1187421775 - }, - "m_onlyTreasureCards": { - "type": "bool", - "id": 4, - "offset": 138, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 752220749 - }, - "m_noShadowSpells": { - "type": "bool", - "id": 5, - "offset": 139, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2142185705 - }, - "m_noCrits": { - "type": "bool", - "id": 6, - "offset": 136, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1394430197 - }, - "m_noEnchantedTreasureCards": { - "type": "bool", - "id": 7, - "offset": 140, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1780948882 - }, - "m_noEnchantmentSpells": { - "type": "bool", - "id": 8, - "offset": 141, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1325982520 - }, - "m_noMaycastSpells": { - "type": "bool", - "id": 9, - "offset": 142, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1409034133 - }, - "m_enableSpellLevelRestrictions": { - "type": "bool", - "id": 10, - "offset": 143, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1272415451 - }, - "m_ignoreSpellsPvPOnlyFlag": { - "type": "bool", - "id": 11, - "offset": 144, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1714276188 - }, - "m_ignoreSpellsPvEOnlyFlag": { - "type": "bool", - "id": 12, - "offset": 145, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1691675729 - }, - "m_requiredSpellsAdjectives": { - "type": "int", - "id": 13, - "offset": 152, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1262019376 - }, - "m_bannedSpellsAdjectives": { - "type": "int", - "id": 14, - "offset": 168, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1474039287 - } - } - }, - "1475831549": { - "name": "class SharedPointer", - "bases": [ - "DerbyEffect", - "PropertyClass" - ], - "hash": 1475831549, - "properties": { - "m_buffType": { - "type": "enum DerbyTalentBuffType", - "id": 0, - "offset": 92, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1149251982, - "enum_options": { - "Buff": 0, - "Debuff": 1, - "Neither": 2 - } - }, - "m_kTarget": { - "type": "enum DerbyTargetType", - "id": 1, - "offset": 96, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1807803351, - "enum_options": { - "kTargetInFront": 0, - "kTargetBehind": 1, - "kTargetFirst": 2, - "kTargetSelf": 3, - "kTargetAll": 4, - "kTargetLast": 5 - } - }, - "m_nDuration": { - "type": "int", - "id": 2, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1110167982 - }, - "m_effectID": { - "type": "unsigned int", - "id": 3, - "offset": 88, - "flags": 24, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2347630439 - }, - "m_imageFilename": { - "type": "std::string", - "id": 4, - "offset": 112, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2813328063 - }, - "m_iconIndex": { - "type": "unsigned int", - "id": 5, - "offset": 144, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1265133262 - }, - "m_soundOnActivate": { - "type": "std::string", - "id": 6, - "offset": 152, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1956929714 - }, - "m_soundOnTarget": { - "type": "std::string", - "id": 7, - "offset": 184, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3444214056 - }, - "m_targetParticleEffect": { - "type": "std::string", - "id": 8, - "offset": 216, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3048234723 - }, - "m_overheadMessage": { - "type": "std::string", - "id": 9, - "offset": 248, - "flags": 8388639, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1701018190 - }, - "m_requirements": { - "type": "class RequirementList", - "id": 10, - "offset": 280, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2840988582 - }, - "m_nRateChange": { - "type": "int", - "id": 11, - "offset": 376, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 797681786 - } - } - }, - "1075927341": { - "name": "class TournamentUpdateList", - "bases": [ - "PropertyClass" - ], - "hash": 1075927341, - "properties": { - "m_updates": { - "type": "class SharedPointer", - "id": 0, - "offset": 88, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 3250680338 - }, - "m_matchCount": { - "type": "int", - "id": 1, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1400798736 - }, - "m_teamCount": { - "type": "int", - "id": 2, - "offset": 76, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1614476394 - }, - "m_actorCount": { - "type": "int", - "id": 3, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1057423836 - } - } - }, - "308149642": { - "name": "class SpellFusionTemplate*", - "bases": [ - "CoreTemplate", - "PropertyClass" - ], - "hash": 308149642, - "properties": { - "m_behaviors": { - "type": "class BehaviorTemplate*", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1197808594 - }, - "m_templateID": { - "type": "unsigned int", - "id": 1, - "offset": 96, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1286746870 - }, - "m_debugName": { - "type": "std::string", - "id": 2, - "offset": 104, - "flags": 134217735, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3553984419 - }, - "m_displayKey": { - "type": "std::string", - "id": 3, - "offset": 136, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3023276954 - }, - "m_adjectives": { - "type": "std::string", - "id": 4, - "offset": 168, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2967855037 - }, - "m_primaryIngredient": { - "type": "class SpellIngredient*", - "id": 5, - "offset": 184, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1337011809 - }, - "m_secondaryIngredient": { - "type": "class SpellIngredient*", - "id": 6, - "offset": 192, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2076393285 - } - } - }, - "1477429688": { - "name": "class SharedPointer", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 1477429688, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - } - } - }, - "1077944646": { - "name": "class GhostHider", - "bases": [ - "PropertyClass" - ], - "hash": 1077944646, - "properties": {} - }, - "309965574": { - "name": "class AddGlobalCinematicStageTemplate", - "bases": [ - "CinematicStageTemplate", - "PropertyClass" - ], - "hash": 309965574, - "properties": { - "m_name": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1717359772 - }, - "m_duration": { - "type": "float", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 920323453 - }, - "m_actions": { - "type": "class SharedPointer", - "id": 2, - "offset": 112, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1380578687 - }, - "m_stageRelationships": { - "type": "class SharedPointer", - "id": 3, - "offset": 128, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 499983354 - }, - "m_global": { - "type": "std::string", - "id": 4, - "offset": 152, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1979851564 - }, - "m_sound": { - "type": "std::string", - "id": 5, - "offset": 184, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2307644996 - } - } - }, - "1077390789": { - "name": "class SharedPointer", - "bases": [ - "CinematicAction", - "PropertyClass" - ], - "hash": 1077390789, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - } - } - }, - "309130423": { - "name": "class ControlButton*", - "bases": [ - "Window", - "PropertyClass" - ], - "hash": 309130423, - "properties": { - "m_sName": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306437263 - }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621225959 - }, - "m_Style": { - "type": "unsigned int", - "id": 2, - "offset": 152, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152, - "SHOW_HOTKEY": 16777216, - "EFFECT_SCALE": 67108864, - "LOCK_ICON_SIZE": 33554432, - "LEFT_TEXT": 536870912, - "NO_FIT_TEXT": 1073741824 - } - }, - "m_Flags": { - "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } - }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3105139380 - }, - "m_fTargetAlpha": { - "type": "float", - "id": 5, - "offset": 212, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1809129834 - }, - "m_fDisabledAlpha": { - "type": "float", - "id": 6, - "offset": 216, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1389987675 - }, - "m_fAlpha": { - "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 482130755 - }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3623628394 - }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2102211316 - }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1846695875 - }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3389835433 - }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2547159940 - }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2587533771 - }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3091503757 - }, - "m_bToggle": { - "type": "bool", - "id": 16, - "offset": 608, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2071810903 - }, - "m_bButtonDown": { - "type": "bool", - "id": 17, - "offset": 609, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 840041705 - }, - "m_sLabel": { - "type": "std::wstring", - "id": 18, - "offset": 616, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2207009163 - }, - "m_labelOffset": { - "type": "class Rect", - "id": 19, - "offset": 832, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1990646723 - }, - "m_pButton": { - "type": "class SharedPointer", - "id": 20, - "offset": 656, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1543855875 - }, - "m_HotKey": { - "type": "unsigned int", - "id": 21, - "offset": 672, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1631553409 - }, - "m_Color": { - "type": "class Color", - "id": 22, - "offset": 676, - "flags": 262279, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1753714077 - }, - "m_bCursorOver": { - "type": "bool", - "id": 23, - "offset": 689, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 283981103 - }, - "m_bAbortWhenCursorNotOver": { - "type": "bool", - "id": 24, - "offset": 706, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 325405258 - }, - "m_bHotKeyDown": { - "type": "bool", - "id": 25, - "offset": 680, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 616989185 - }, - "m_fTime": { - "type": "float", - "id": 26, - "offset": 684, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 883746156 - }, - "m_bGreyed": { - "type": "bool", - "id": 27, - "offset": 688, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1566556053 - }, - "m_fMaxScale": { - "type": "float", - "id": 28, - "offset": 692, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2070186635 - }, - "m_fScaleSpeed": { - "type": "float", - "id": 29, - "offset": 696, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1457135702 - }, - "m_bUseDropShadow": { - "type": "bool", - "id": 30, - "offset": 704, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 93063037 - }, - "m_bUseOutline": { - "type": "bool", - "id": 31, - "offset": 705, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 744292994 - }, - "m_pGreyedState": { - "type": "class SharedPointer", - "id": 32, - "offset": 768, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2703352263 - }, - "m_pNormalState": { - "type": "class SharedPointer", - "id": 33, - "offset": 752, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1887909808 - }, - "m_pHighlightedState": { - "type": "class SharedPointer", - "id": 34, - "offset": 784, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2200177608 - }, - "m_pSelectedState": { - "type": "class SharedPointer", - "id": 35, - "offset": 800, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2266776432 - }, - "m_pDepressedState": { - "type": "class SharedPointer", - "id": 36, - "offset": 816, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1878185798 - } - } - }, - "1076305176": { - "name": "class SharedPointer", - "bases": [ - "PathBehaviorTemplate::Action", - "PropertyClass" - ], - "hash": 1076305176, - "properties": { - "m_nPathID": { - "type": "gid", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 214382368 - }, - "m_nNodeID": { - "type": "int", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 152152635, - "enum_options": { - "__DEFAULT": 4294967295 - } - }, - "m_nPriority": { - "type": "int", - "id": 2, - "offset": 84, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1515251530, - "enum_options": { - "__DEFAULT": 100 - } - }, - "m_nChance": { - "type": "int", - "id": 3, - "offset": 88, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1860748394, - "enum_options": { - "__DEFAULT": 50 - } - }, - "m_sEmoteName": { - "type": "std::string", - "id": 4, - "offset": 96, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3416743849 - }, - "m_fMinTime": { - "type": "float", - "id": 5, - "offset": 128, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1948284304 - }, - "m_fMaxTime": { - "type": "float", - "id": 6, - "offset": 132, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1647060370 - } - } - }, - "1478728199": { - "name": "class GamebryoClientDerbyTerrainEffect", - "bases": [ - "ClientDerbyTerrainEffect", - "DerbyTerrainEffect", - "DerbyEffect", - "PropertyClass" - ], - "hash": 1478728199, - "properties": { - "m_buffType": { - "type": "enum DerbyTalentBuffType", - "id": 0, - "offset": 92, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1149251982, - "enum_options": { - "Buff": 0, - "Debuff": 1, - "Neither": 2 - } - }, - "m_kTarget": { - "type": "enum DerbyTargetType", - "id": 1, - "offset": 96, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1807803351, - "enum_options": { - "kTargetInFront": 0, - "kTargetBehind": 1, - "kTargetFirst": 2, - "kTargetSelf": 3, - "kTargetAll": 4, - "kTargetLast": 5 - } - }, - "m_nDuration": { - "type": "int", - "id": 2, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1110167982 - }, - "m_effectID": { - "type": "unsigned int", - "id": 3, - "offset": 88, - "flags": 24, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2347630439 - }, - "m_imageFilename": { - "type": "std::string", - "id": 4, - "offset": 112, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2813328063 - }, - "m_iconIndex": { - "type": "unsigned int", - "id": 5, - "offset": 144, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1265133262 - }, - "m_soundOnActivate": { - "type": "std::string", - "id": 6, - "offset": 152, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1956929714 - }, - "m_soundOnTarget": { - "type": "std::string", - "id": 7, - "offset": 184, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3444214056 - }, - "m_targetParticleEffect": { - "type": "std::string", - "id": 8, - "offset": 216, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3048234723 - }, - "m_overheadMessage": { - "type": "std::string", - "id": 9, - "offset": 248, - "flags": 8388639, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1701018190 - }, - "m_requirements": { - "type": "class RequirementList", - "id": 10, - "offset": 280, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2840988582 - }, - "m_terrainType": { - "type": "enum PetDerbyTrackTerrain", - "id": 11, - "offset": 376, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2688629581, - "enum_options": { - "Cobblestone": 0, - "Water": 1, - "Grass": 2, - "Clay": 3, - "Dirt": 4, - "Mud": 5 - } - }, - "m_fEffectReapplyTime": { - "type": "float", - "id": 12, - "offset": 380, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1483497206 - }, - "m_effectsToApply": { - "type": "class SharedPointer", - "id": 13, - "offset": 384, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2042624288 - }, - "m_permanentEffects": { - "type": "class SharedPointer", - "id": 14, - "offset": 400, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2129171809 - } - } - }, - "309130418": { - "name": "class ControlButton", - "bases": [ - "Window", - "PropertyClass" - ], - "hash": 309130418, - "properties": { - "m_sName": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306437263 - }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621225959 - }, - "m_Style": { - "type": "unsigned int", - "id": 2, - "offset": 152, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152, - "SHOW_HOTKEY": 16777216, - "EFFECT_SCALE": 67108864, - "LOCK_ICON_SIZE": 33554432, - "LEFT_TEXT": 536870912, - "NO_FIT_TEXT": 1073741824 - } - }, - "m_Flags": { - "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } - }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3105139380 - }, - "m_fTargetAlpha": { - "type": "float", - "id": 5, - "offset": 212, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1809129834 - }, - "m_fDisabledAlpha": { - "type": "float", - "id": 6, - "offset": 216, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1389987675 - }, - "m_fAlpha": { - "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 482130755 - }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3623628394 - }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2102211316 - }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1846695875 - }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3389835433 - }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2547159940 - }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2587533771 - }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3091503757 - }, - "m_bToggle": { - "type": "bool", - "id": 16, - "offset": 608, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2071810903 - }, - "m_bButtonDown": { - "type": "bool", - "id": 17, - "offset": 609, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 840041705 - }, - "m_sLabel": { - "type": "std::wstring", - "id": 18, - "offset": 616, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2207009163 - }, - "m_labelOffset": { - "type": "class Rect", - "id": 19, - "offset": 832, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1990646723 - }, - "m_pButton": { - "type": "class SharedPointer", - "id": 20, - "offset": 656, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1543855875 - }, - "m_HotKey": { - "type": "unsigned int", - "id": 21, - "offset": 672, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1631553409 - }, - "m_Color": { - "type": "class Color", - "id": 22, - "offset": 676, - "flags": 262279, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1753714077 - }, - "m_bCursorOver": { - "type": "bool", - "id": 23, - "offset": 689, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 283981103 - }, - "m_bAbortWhenCursorNotOver": { - "type": "bool", - "id": 24, - "offset": 706, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 325405258 - }, - "m_bHotKeyDown": { - "type": "bool", - "id": 25, - "offset": 680, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 616989185 - }, - "m_fTime": { - "type": "float", - "id": 26, - "offset": 684, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 883746156 - }, - "m_bGreyed": { - "type": "bool", - "id": 27, - "offset": 688, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1566556053 - }, - "m_fMaxScale": { - "type": "float", - "id": 28, - "offset": 692, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2070186635 - }, - "m_fScaleSpeed": { - "type": "float", - "id": 29, - "offset": 696, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1457135702 - }, - "m_bUseDropShadow": { - "type": "bool", - "id": 30, - "offset": 704, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 93063037 - }, - "m_bUseOutline": { - "type": "bool", - "id": 31, - "offset": 705, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 744292994 - }, - "m_pGreyedState": { - "type": "class SharedPointer", - "id": 32, - "offset": 768, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2703352263 - }, - "m_pNormalState": { - "type": "class SharedPointer", - "id": 33, - "offset": 752, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1887909808 - }, - "m_pHighlightedState": { - "type": "class SharedPointer", - "id": 34, - "offset": 784, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2200177608 - }, - "m_pSelectedState": { - "type": "class SharedPointer", - "id": 35, - "offset": 800, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2266776432 - }, - "m_pDepressedState": { - "type": "class SharedPointer", - "id": 36, - "offset": 816, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1878185798 - } - } - }, - "1477538450": { - "name": "class StringTable", - "bases": [ - "PropertyClass" - ], - "hash": 1477538450, - "properties": { - "m_thousandSeparator": { - "type": "wchar_t", - "id": 0, - "offset": 200, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": true, - "pointer": false, - "hash": 3735116682 - }, - "m_decimalCharacter": { - "type": "wchar_t", - "id": 1, - "offset": 202, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": true, - "pointer": false, - "hash": 2802322863 - }, - "m_defaultSpace": { - "type": "wchar_t", - "id": 2, - "offset": 204, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": true, - "pointer": false, - "hash": 3126898340 - }, - "m_numberPrecision": { - "type": "int", - "id": 3, - "offset": 208, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": true, - "pointer": false, - "hash": 523838671 - }, - "m_lowerToUpperList": { - "type": "class CharMap", - "id": 4, - "offset": 216, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": true, - "pointer": false, - "hash": 542305079 - }, - "m_upperToLowerList": { - "type": "class CharMap", - "id": 5, - "offset": 232, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": true, - "pointer": false, - "hash": 686618071 - }, - "m_sortScoreList": { - "type": "class CharMap", - "id": 6, - "offset": 248, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": true, - "pointer": false, - "hash": 1662028035 - }, - "m_typeSpaces": { - "type": "unsigned short", - "id": 7, - "offset": 264, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": true, - "pointer": false, - "hash": 931738089 - }, - "m_typePunctuation": { - "type": "unsigned short", - "id": 8, - "offset": 280, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": true, - "pointer": false, - "hash": 2553388772 - }, - "m_typeAlphaNumeric": { - "type": "unsigned short", - "id": 9, - "offset": 296, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": true, - "pointer": false, - "hash": 696068547 - }, - "m_typeAlpha": { - "type": "unsigned short", - "id": 10, - "offset": 312, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": true, - "pointer": false, - "hash": 1715008368 - }, - "m_typeDigit": { - "type": "unsigned short", - "id": 11, - "offset": 328, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": true, - "pointer": false, - "hash": 1718448571 - }, - "m_typeHexDigit": { - "type": "unsigned short", - "id": 12, - "offset": 344, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": true, - "pointer": false, - "hash": 990261184 - }, - "m_minFontSizeForDropshadow": { - "type": "float", - "id": 13, - "offset": 212, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": true, - "pointer": false, - "hash": 335078927 - } - } - }, - "1478153784": { - "name": "class std::list >", - "bases": [], - "hash": 1478153784, - "properties": {} - }, - "309942562": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 309942562, - "properties": { - "m_numberOfEntries": { - "type": "int", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 315514866 - }, - "m_fishTemplateID": { - "type": "unsigned int", - "id": 1, - "offset": 76, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2050232416 - }, - "m_entryList": { - "type": "class SharedPointer", - "id": 2, - "offset": 80, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1434386087 - } - } - }, - "1078600006": { - "name": "class GhostHider*", - "bases": [ - "PropertyClass" - ], - "hash": 1078600006, - "properties": {} - }, - "1078496819": { - "name": "class ItemTemplate", - "bases": [ - "GameObjectTemplate", - "CoreTemplate", - "PropertyClass" - ], - "hash": 1078496819, - "properties": { - "m_behaviors": { - "type": "class BehaviorTemplate*", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1197808594 - }, - "m_objectName": { - "type": "std::string", - "id": 1, - "offset": 96, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2154940147 - }, - "m_templateID": { - "type": "unsigned int", - "id": 2, - "offset": 128, - "flags": 16777223, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1286746870 - }, - "m_visualID": { - "type": "unsigned int", - "id": 3, - "offset": 132, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1118778894 - }, - "m_adjectiveList": { - "type": "std::string", - "id": 4, - "offset": 248, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 3195213318 - }, - "m_exemptFromAOI": { - "type": "bool", - "id": 5, - "offset": 240, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1457879059 - }, - "m_displayName": { - "type": "std::string", - "id": 6, - "offset": 168, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2446900370 - }, - "m_description": { - "type": "std::string", - "id": 7, - "offset": 136, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1649374815 - }, - "m_nObjectType": { - "type": "enum ObjectType", - "id": 8, - "offset": 200, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2118905880, - "enum_options": { - "OT_UNDEFINED": 0, - "OT_PLAYER": 1, - "OT_NPC": 2, - "OT_PROP": 3, - "OT_OBJECT": 4, - "OT_HOUSE": 5, - "OT_KEY": 6, - "OT_OLD_KEY": 7, - "OT_DEED": 8, - "OT_MAIL": 9, - "OT_RECIPE": 17, - "OT_EQUIP_HEAD": 10, - "OT_EQUIP_CHEST": 11, - "OT_EQUIP_LEGS": 12, - "OT_EQUIP_HANDS": 13, - "OT_EQUIP_FINGER": 14, - "OT_EQUIP_FEET": 15, - "OT_EQUIP_EAR": 16, - "OT_BUILDING_BLOCK": 18, - "OT_BUILDING_BLOCK_SOLID": 19, - "OT_GOLF": 20, - "OT_DOOR": 21, - "OT_PET": 22, - "OT_FABRIC": 23, - "OT_WINDOW": 24, - "OT_ROOF": 25, - "OT_HORSE": 26, - "OT_STRUCTURE": 27, - "OT_HOUSING_TEXTURE": 28, - "OT_PLANT": 29 - } - }, - "m_sIcon": { - "type": "std::string", - "id": 9, - "offset": 208, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306259831 - }, - "m_equipRequirements": { - "type": "class RequirementList*", - "id": 10, - "offset": 280, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2762617226 - }, - "m_purchaseRequirements": { - "type": "class RequirementList*", - "id": 11, - "offset": 288, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3174641793 - }, - "m_equipEffects": { - "type": "class GameEffectInfo*", - "id": 12, - "offset": 296, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 836628351 - }, - "m_baseCost": { - "type": "float", - "id": 13, - "offset": 312, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1565352651 - }, - "m_creditsCost": { - "type": "float", - "id": 14, - "offset": 320, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 805514974 - }, - "m_avatarInfo": { - "type": "class AvatarItemInfoBase*", - "id": 15, - "offset": 328, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2627321299 - }, - "m_avatarFlags": { - "type": "std::string", - "id": 16, - "offset": 336, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2347762759 - }, - "m_itemLimit": { - "type": "int", - "id": 17, - "offset": 316, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1799746856 - }, - "m_holidayFlag": { - "type": "std::string", - "id": 18, - "offset": 352, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2994795359 - }, - "m_itemSetBonusTemplateID": { - "type": "unsigned int", - "id": 19, - "offset": 384, - "flags": 33554439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1316835672 - } - } - }, - "1479064920": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1479064920, - "properties": { - "m_sigilNameKey": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3055768893 - }, - "m_sigilTextKey": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2384767873 - }, - "m_sigilEncounterInfoTextKey": { - "type": "std::string", - "id": 2, - "offset": 168, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3121233376 - }, - "m_successZone": { - "type": "std::string", - "id": 3, - "offset": 200, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1516681392 - }, - "m_sigilIcon": { - "type": "std::string", - "id": 4, - "offset": 136, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3177480156 - }, - "m_teamUpAllowed": { - "type": "int", - "id": 5, - "offset": 232, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1016118542 - }, - "m_isCluster": { - "type": "bool", - "id": 6, - "offset": 236, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1183074257 - }, - "m_passedReqs": { - "type": "bool", - "id": 7, - "offset": 237, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1047234766 - }, - "m_failedRequirement": { - "type": "class SharedPointer", - "id": 8, - "offset": 240, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2322583945 - } - } - }, - "310980971": { - "name": "class TitleOption*", - "bases": [ - "PropertyClass" - ], - "hash": 310980971, - "properties": { - "m_titleStringKey": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1751250333 - }, - "m_cost": { - "type": "int", - "id": 1, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 219280307 - } - } - }, - "310451120": { - "name": "class SpawnPointTemplate", - "bases": [ - "PropertyClass" - ], - "hash": 310451120, - "properties": { - "m_location": { - "type": "class Vector3D", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2239683611 - }, - "m_boxLengths": { - "type": "class Vector3D", - "id": 1, - "offset": 84, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2872763232 - }, - "m_templateID.m_full": { - "type": "unsigned __int64", - "id": 2, - "offset": 96, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 633907631 - }, - "m_respawnTime": { - "type": "float", - "id": 3, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1554573574 - }, - "m_numSpawns": { - "type": "int", - "id": 4, - "offset": 108, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1269366534 - }, - "m_zoneLevelMin": { - "type": "unsigned int", - "id": 5, - "offset": 112, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1028934149 - }, - "m_zoneLevelMax": { - "type": "unsigned int", - "id": 6, - "offset": 116, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1028933895 - }, - "m_zoneLevelUp": { - "type": "unsigned int", - "id": 7, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1342541638 - } - } - }, - "1082888230": { - "name": "class DynamicSigilTemplate", - "bases": [ - "CombatSigilTemplate", - "SigilTemplate", - "CoreTemplate", - "PropertyClass" - ], - "hash": 1082888230, - "properties": { - "m_behaviors": { - "type": "class BehaviorTemplate*", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1197808594 - }, - "m_sigilName": { - "type": "std::string", - "id": 1, - "offset": 96, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3177657588 - }, - "m_sigilType": { - "type": "std::string", - "id": 2, - "offset": 136, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3177899445 - }, - "m_entryResults": { - "type": "class ResultList*", - "id": 3, - "offset": 184, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3262956108 - }, - "m_requirements": { - "type": "class RequirementList*", - "id": 4, - "offset": 176, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2840985510 - }, - "m_cancelResults": { - "type": "class ResultList*", - "id": 5, - "offset": 192, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3799257120 - }, - "m_completeResults": { - "type": "class ResultList*", - "id": 6, - "offset": 200, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1964258099 - }, - "m_useState": { - "type": "bool", - "id": 7, - "offset": 216, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 683320865 - }, - "m_stateOverride": { - "type": "std::string", - "id": 8, - "offset": 224, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1949715548 - }, - "m_subCircles": { - "type": "class SigilSubCircle*", - "id": 9, - "offset": 256, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2227135493 - }, - "m_engageRadius": { - "type": "float", - "id": 10, - "offset": 304, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1429683718 - }, - "m_battlefieldEffects": { - "type": "class SharedPointer", - "id": 11, - "offset": 312, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1245973515 - }, - "m_playerVictoryCinematic": { - "type": "std::string", - "id": 12, - "offset": 336, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2684536069 - }, - "m_combatMusic": { - "type": "std::string", - "id": 13, - "offset": 368, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3636593682 - }, - "m_prePlanningCinematicOverride": { - "type": "std::string", - "id": 14, - "offset": 400, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2585096390 - }, - "m_planningCinematicOverride": { - "type": "std::string", - "id": 15, - "offset": 432, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3592819999 - }, - "m_shadowThresholdType": { - "type": "enum kShadow_Threshold_Type", - "id": 16, - "offset": 464, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2847763136, - "enum_options": { - "SHADOW_THRESHOLD_MIN": 0, - "SHADOW_THRESHOLD_AVG": 1, - "SHADOW_THRESHOLD_MAX": 2 - } - }, - "m_shadowThresholdFactor": { - "type": "float", - "id": 17, - "offset": 468, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2104355177 - }, - "m_shadowPipRatingFactor": { - "type": "float", - "id": 18, - "offset": 472, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1061434314 - }, - "m_scalarDamagePvP": { - "type": "float", - "id": 19, - "offset": 476, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2195445026 - }, - "m_scalarResistPvP": { - "type": "float", - "id": 20, - "offset": 480, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1947822077 - }, - "m_scalarPiercePvP": { - "type": "float", - "id": 21, - "offset": 484, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 441266907 - }, - "m_scalarDamagePvE": { - "type": "float", - "id": 22, - "offset": 488, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2195445015 - }, - "m_scalarResistPvE": { - "type": "float", - "id": 23, - "offset": 492, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1947822066 - }, - "m_scalarPiercePvE": { - "type": "float", - "id": 24, - "offset": 496, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 441266896 - }, - "m_damageLimitPvP": { - "type": "float", - "id": 25, - "offset": 500, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1990135243 - }, - "m_dK0PvP": { - "type": "float", - "id": 26, - "offset": 504, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 413528556 - }, - "m_dN0PvP": { - "type": "float", - "id": 27, - "offset": 508, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 417086319 - }, - "m_resistLimitPvP": { - "type": "float", - "id": 28, - "offset": 512, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1174512006 - }, - "m_rK0PvP": { - "type": "float", - "id": 29, - "offset": 516, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 961424058 - }, - "m_rN0PvP": { - "type": "float", - "id": 30, - "offset": 520, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 964981821 - }, - "m_damageLimitPvE": { - "type": "float", - "id": 31, - "offset": 524, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1990135232 - }, - "m_dK0PvE": { - "type": "float", - "id": 32, - "offset": 528, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 413528545 - }, - "m_dN0PvE": { - "type": "float", - "id": 33, - "offset": 532, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 417086308 - }, - "m_resistLimitPvE": { - "type": "float", - "id": 34, - "offset": 536, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1174511995 - }, - "m_rK0PvE": { - "type": "float", - "id": 35, - "offset": 540, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 961424047 - }, - "m_rN0PvE": { - "type": "float", - "id": 36, - "offset": 544, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 964981810 - } - } - }, - "1484864330": { - "name": "class GameEffectContainer*", - "bases": [ - "PropertyClass" - ], - "hash": 1484864330, - "properties": { - "m_publicEffects": { - "type": "class SharedPointer", - "id": 0, - "offset": 88, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 3233153287 - }, - "m_myEffects": { - "type": "class SharedPointer", - "id": 1, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2650414414 - } - } - }, - "310964851": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 310964851, - "properties": { - "m_roundNumber": { - "type": "unsigned char", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1040180705 - }, - "m_maximumRounds": { - "type": "unsigned char", - "id": 1, - "offset": 73, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1709082345 - }, - "m_planningTurnTime": { - "type": "unsigned char", - "id": 2, - "offset": 74, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1183728479 - }, - "m_blueTeamScore": { - "type": "unsigned int", - "id": 3, - "offset": 76, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1519259416 - }, - "m_orangeTeamScore": { - "type": "unsigned int", - "id": 4, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 988508012 - }, - "m_redTeamScore": { - "type": "unsigned int", - "id": 5, - "offset": 84, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1672048811 - }, - "m_passport": { - "type": "unsigned int", - "id": 6, - "offset": 88, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1362521513 - }, - "m_team1": { - "type": "unsigned char", - "id": 7, - "offset": 92, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1448349512 - }, - "m_team2": { - "type": "unsigned char", - "id": 8, - "offset": 93, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1448349513 - }, - "m_team3": { - "type": "unsigned char", - "id": 9, - "offset": 94, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1448349514 - }, - "m_handList": { - "type": "unsigned int", - "id": 10, - "offset": 96, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1650111716 - } - } - }, - "1080725216": { - "name": "class SharedPointer", - "bases": [ - "CinematicStageTemplate", - "PropertyClass" - ], - "hash": 1080725216, - "properties": { - "m_name": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1717359772 - }, - "m_duration": { - "type": "float", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 920323453 - }, - "m_actions": { - "type": "class SharedPointer", - "id": 2, - "offset": 112, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1380578687 - }, - "m_stageRelationships": { - "type": "class SharedPointer", - "id": 3, - "offset": 128, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 499983354 - }, - "m_sound": { - "type": "std::string", - "id": 4, - "offset": 152, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2307644996 - }, - "m_animation": { - "type": "std::string", - "id": 5, - "offset": 184, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3431428731 - } - } - }, - "1481981151": { - "name": "class ClientTransformationEffect*", - "bases": [ - "TransformationEffect", - "GameEffectBase", - "PropertyClass" - ], - "hash": 1481981151, - "properties": { - "m_currentTickCount": { - "type": "double", - "id": 0, - "offset": 80, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2533274692 - }, - "m_effectNameID": { - "type": "unsigned int", - "id": 1, - "offset": 96, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1204067144 - }, - "m_bIsOnPet": { - "type": "bool", - "id": 2, - "offset": 73, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 522593303 - }, - "m_originatorID": { - "type": "gid", - "id": 3, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1131810019 - }, - "m_itemSlotID": { - "type": "unsigned int", - "id": 4, - "offset": 112, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1895747595 - }, - "m_internalID": { - "type": "int", - "id": 5, - "offset": 92, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1643137924 - }, - "m_endTime": { - "type": "unsigned int", - "id": 6, - "offset": 88, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 716479635 - }, - "m_sRace": { - "type": "std::string", - "id": 7, - "offset": 128, - "flags": 268435487, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306580681, - "enum_options": { - "__BASECLASS": "CharacterRaceTable" - } - }, - "m_eGender": { - "type": "enum eGender", - "id": 8, - "offset": 160, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2776344943 - }, - "m_fScale": { - "type": "float", - "id": 9, - "offset": 164, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 503137701 - }, - "m_nPrimaryColor": { - "type": "int", - "id": 10, - "offset": 168, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 310334923 - }, - "m_nSecondaryColor": { - "type": "int", - "id": 11, - "offset": 172, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 516938671 - }, - "m_nPatternOption": { - "type": "int", - "id": 12, - "offset": 176, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 413195679 - }, - "m_nGeometryOption": { - "type": "int", - "id": 13, - "offset": 180, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 676541869 - }, - "m_sNaturalAttack": { - "type": "std::string", - "id": 14, - "offset": 184, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2131867453 - } - } - }, - "1080152392": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1080152392, - "properties": { - "m_adjective": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3429518154 - }, - "m_stringTableKey": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2902469923 - }, - "m_modifier": { - "type": "float", - "id": 2, - "offset": 136, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 388952454, - "enum_options": { - "__DEFAULT": "1.0" - } - }, - "m_hidden": { - "type": "bool", - "id": 3, - "offset": 140, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 519817759 - } - } - }, - "2038296099": { - "name": "class ClientPetItemBehavior", - "bases": [ - "BasePetItemBehavior", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 2038296099, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_level": { - "type": "unsigned char", - "id": 1, - "offset": 112, - "flags": 65727, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1438884808 - }, - "m_XP": { - "type": "unsigned int", - "id": 2, - "offset": 116, - "flags": 65727, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2301988085 - }, - "m_firstName": { - "type": "int", - "id": 3, - "offset": 264, - "flags": 65703, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1618303331 - }, - "m_middleName": { - "type": "int", - "id": 4, - "offset": 268, - "flags": 65703, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 199781034 - }, - "m_lastName": { - "type": "int", - "id": 5, - "offset": 272, - "flags": 65703, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 328503983 - }, - "m_currentStats": { - "type": "class PetStat", - "id": 6, - "offset": 128, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2342610661 - }, - "m_maxStats": { - "type": "class PetStat", - "id": 7, - "offset": 144, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1846363080 - }, - "m_hatchedTimeSecs": { - "type": "unsigned int", - "id": 8, - "offset": 160, - "flags": 65727, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 606051291 - }, - "m_expressedTalents": { - "type": "unsigned int", - "id": 9, - "offset": 168, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1557974043 - }, - "m_expressedDerbyTalents": { - "type": "unsigned int", - "id": 10, - "offset": 184, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 484465777 - }, - "m_talentRatings": { - "type": "std::string", - "id": 11, - "offset": 216, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2170591163 - }, - "m_powerRatings": { - "type": "std::string", - "id": 12, - "offset": 232, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1881287968 - }, - "m_overallRating": { - "type": "unsigned int", - "id": 13, - "offset": 248, - "flags": 159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 462138631 - }, - "m_activeRating": { - "type": "unsigned int", - "id": 14, - "offset": 252, - "flags": 159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 234391118 - }, - "m_costToMorph": { - "type": "unsigned int", - "id": 15, - "offset": 256, - "flags": 65567, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1866472719 - }, - "m_rarity": { - "type": "unsigned int", - "id": 16, - "offset": 260, - "flags": 65567, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1111114664 - }, - "m_requiredXP": { - "type": "unsigned int", - "id": 17, - "offset": 120, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1890811574 - }, - "m_housingPetPrimaryColor": { - "type": "int", - "id": 18, - "offset": 276, - "flags": 65664, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 525135139 - }, - "m_housingPetPattern": { - "type": "int", - "id": 19, - "offset": 280, - "flags": 65664, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 165011646 - }, - "m_housingPetSecondaryColor": { - "type": "int", - "id": 20, - "offset": 284, - "flags": 65695, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 358656263 - }, - "m_housingPetOriginalGID": { - "type": "gid", - "id": 21, - "offset": 288, - "flags": 65664, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1259075879 - }, - "m_housingPetJewelTemplateID": { - "type": "unsigned int", - "id": 22, - "offset": 296, - "flags": 65664, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1836117651 - }, - "m_happiness": { - "type": "unsigned int", - "id": 23, - "offset": 300, - "flags": 65727, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1380970552 - }, - "m_maximumHappiness": { - "type": "unsigned int", - "id": 24, - "offset": 304, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 874954582 - }, - "m_allTalents": { - "type": "unsigned int", - "id": 25, - "offset": 464, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1053182849 - }, - "m_allDerbyTalents": { - "type": "unsigned int", - "id": 26, - "offset": 480, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1165978519 - }, - "m_sSerializedMaxStats": { - "type": "std::string", - "id": 27, - "offset": 328, - "flags": 65536, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2078753551 - }, - "m_sSerializedStats": { - "type": "std::string", - "id": 28, - "offset": 360, - "flags": 65536, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3084176585 - }, - "m_sSerializedTalents": { - "type": "std::string", - "id": 29, - "offset": 392, - "flags": 65536, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3058423637 - }, - "m_sSerializedDerbyTalents": { - "type": "std::string", - "id": 30, - "offset": 424, - "flags": 65536, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1866554155 - }, - "m_bInitialized": { - "type": "bool", - "id": 31, - "offset": 456, - "flags": 65536, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 233973963 - } - } - }, - "1079287212": { - "name": "class LootRarityList*", - "bases": [ - "PropertyClass" - ], - "hash": 1079287212, - "properties": { - "m_loot": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 444353250 - } - } - }, - "1481244749": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1481244749, - "properties": {} - }, - "311008470": { - "name": "class SharedPointer", - "bases": [ - "DerbyAddSpeedBoost", - "DerbyEffect", - "PropertyClass" - ], - "hash": 311008470, - "properties": { - "m_buffType": { - "type": "enum DerbyTalentBuffType", - "id": 0, - "offset": 92, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1149251982, - "enum_options": { - "Buff": 0, - "Debuff": 1, - "Neither": 2 - } - }, - "m_kTarget": { - "type": "enum DerbyTargetType", - "id": 1, - "offset": 96, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1807803351, - "enum_options": { - "kTargetInFront": 0, - "kTargetBehind": 1, - "kTargetFirst": 2, - "kTargetSelf": 3, - "kTargetAll": 4, - "kTargetLast": 5 - } - }, - "m_nDuration": { - "type": "int", - "id": 2, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1110167982 - }, - "m_effectID": { - "type": "unsigned int", - "id": 3, - "offset": 88, - "flags": 24, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2347630439 - }, - "m_imageFilename": { - "type": "std::string", - "id": 4, - "offset": 112, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2813328063 - }, - "m_iconIndex": { - "type": "unsigned int", - "id": 5, - "offset": 144, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1265133262 - }, - "m_soundOnActivate": { - "type": "std::string", - "id": 6, - "offset": 152, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1956929714 - }, - "m_soundOnTarget": { - "type": "std::string", - "id": 7, - "offset": 184, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3444214056 - }, - "m_targetParticleEffect": { - "type": "std::string", - "id": 8, - "offset": 216, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3048234723 - }, - "m_overheadMessage": { - "type": "std::string", - "id": 9, - "offset": 248, - "flags": 8388639, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1701018190 - }, - "m_requirements": { - "type": "class RequirementList", - "id": 10, - "offset": 280, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2840988582 - }, - "m_nTimesToAdd": { - "type": "int", - "id": 11, - "offset": 376, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1414275638 - } - } - }, - "1079287052": { - "name": "class LootRarityList", - "bases": [ - "PropertyClass" - ], - "hash": 1079287052, - "properties": { - "m_loot": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 444353250 - } - } - }, - "1078951113": { - "name": "class SharedPointer", - "bases": [ - "ClientDuelBehavior", - "DuelBehavior", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1078951113, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_pDuel": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1066616366 - }, - "m_sigilTemplateID": { - "type": "unsigned int", - "id": 2, - "offset": 128, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 269055310 - } - } - }, - "1481981141": { - "name": "class ClientTransformationEffect", - "bases": [ - "TransformationEffect", - "GameEffectBase", - "PropertyClass" - ], - "hash": 1481981141, - "properties": { - "m_currentTickCount": { - "type": "double", - "id": 0, - "offset": 80, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2533274692 - }, - "m_effectNameID": { - "type": "unsigned int", - "id": 1, - "offset": 96, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1204067144 - }, - "m_bIsOnPet": { - "type": "bool", - "id": 2, - "offset": 73, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 522593303 - }, - "m_originatorID": { - "type": "gid", - "id": 3, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1131810019 - }, - "m_itemSlotID": { - "type": "unsigned int", - "id": 4, - "offset": 112, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1895747595 - }, - "m_internalID": { - "type": "int", - "id": 5, - "offset": 92, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1643137924 - }, - "m_endTime": { - "type": "unsigned int", - "id": 6, - "offset": 88, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 716479635 - }, - "m_sRace": { - "type": "std::string", - "id": 7, - "offset": 128, - "flags": 268435487, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306580681, - "enum_options": { - "__BASECLASS": "CharacterRaceTable" - } - }, - "m_eGender": { - "type": "enum eGender", - "id": 8, - "offset": 160, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2776344943 - }, - "m_fScale": { - "type": "float", - "id": 9, - "offset": 164, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 503137701 - }, - "m_nPrimaryColor": { - "type": "int", - "id": 10, - "offset": 168, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 310334923 - }, - "m_nSecondaryColor": { - "type": "int", - "id": 11, - "offset": 172, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 516938671 - }, - "m_nPatternOption": { - "type": "int", - "id": 12, - "offset": 176, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 413195679 - }, - "m_nGeometryOption": { - "type": "int", - "id": 13, - "offset": 180, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 676541869 - }, - "m_sNaturalAttack": { - "type": "std::string", - "id": 14, - "offset": 184, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2131867453 - } - } - }, - "314163079": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 314163079, - "properties": { - "m_loyaltyTierCount": { - "type": "int", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1322604645 - }, - "m_loyaltyTierDemotionTrigger": { - "type": "int", - "id": 1, - "offset": 76, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1427712879 - }, - "m_loyaltyTierLevelDuration": { - "type": "int", - "id": 2, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 599216410 - } - } - }, - "1481573816": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1481573816, - "properties": { - "m_teamID": { - "type": "gid", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 982102220 - }, - "m_teamResolution": { - "type": "unsigned char", - "id": 1, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1933240587 - } - } - }, - "312595391": { - "name": "class SharedPointer", - "bases": [ - "PlayerStatueBehavior", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 312595391, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_visualBlobs": { - "type": "std::string", - "id": 1, - "offset": 176, - "flags": 31, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 3602657281 - } - } - }, - "311922264": { - "name": "class CameraController", - "bases": [ - "PropertyClass" - ], - "hash": 311922264, - "properties": {} - }, - "1079298396": { - "name": "class SharedPointer", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1079298396, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_penalties": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1696001746 - }, - "m_record": { - "type": "class SharedPointer", - "id": 2, - "offset": 128, - "flags": 16, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2129713657 - } - } - }, - "311932339": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 311932339, - "properties": { - "m_team": { - "type": "unsigned char", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 857479191 - }, - "m_passport": { - "type": "unsigned int", - "id": 1, - "offset": 76, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1362521513 - }, - "m_handList": { - "type": "unsigned int", - "id": 2, - "offset": 80, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1650111716 - } - } - }, - "1483305544": { - "name": "class ClientRemoveProtectionEffectCinematicAction*", - "bases": [ - "RemoveProtectionEffectCinematicAction", - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 1483305544, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - } - } - }, - "1080527930": { - "name": "class LootInfoListBase", - "bases": [ - "PropertyClass" - ], - "hash": 1080527930, - "properties": {} - }, - "1482908019": { - "name": "class AddAuraCinematicStageTemplate", - "bases": [ - "CinematicStageTemplate", - "PropertyClass" - ], - "hash": 1482908019, - "properties": { - "m_name": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1717359772 - }, - "m_duration": { - "type": "float", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 920323453 - }, - "m_actions": { - "type": "class SharedPointer", - "id": 2, - "offset": 112, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1380578687 - }, - "m_stageRelationships": { - "type": "class SharedPointer", - "id": 3, - "offset": 128, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 499983354 - }, - "m_sound": { - "type": "std::string", - "id": 4, - "offset": 160, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2307644996 - }, - "m_effect": { - "type": "std::string", - "id": 5, - "offset": 192, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1894145160 - }, - "m_spellText": { - "type": "std::string", - "id": 6, - "offset": 224, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2688705600 - }, - "m_bSwitchCameraToWideLong": { - "type": "bool", - "id": 7, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2136912684, - "enum_options": { - "__DEFAULT": 1 - } - } - } - }, - "1080364090": { - "name": "class LootInfoListBase*", - "bases": [ - "PropertyClass" - ], - "hash": 1080364090, - "properties": {} - }, - "1482190343": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1482190343, - "properties": { - "m_serializedItems": { - "type": "std::string", - "id": 0, - "offset": 96, - "flags": 575, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1828227529 - }, - "m_equipmentSetName": { - "type": "unsigned int", - "id": 1, - "offset": 88, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 518194738 - }, - "m_isEquipped": { - "type": "bool", - "id": 2, - "offset": 128, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1792437804 - } - } - }, - "312818808": { - "name": "class SharedPointer", - "bases": [ - "SpellEffect", - "PropertyClass" - ], - "hash": 312818808, - "properties": { - "m_effectType": { - "type": "enum SpellEffect::kSpellEffects", - "id": 0, - "offset": 72, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2578255295, - "enum_options": { - "kInvalidSpellEffect": 0, - "kDamage": 1, - "kDamageNoCrit": 2, - "kHeal": 3, - "kHealPercent": 4, - "kSetHealPercent": 113, - "kStealHealth": 5, - "kReduceOverTime": 6, - "kDetonateOverTime": 7, - "kPushCharm": 8, - "kStealCharm": 9, - "kPushWard": 10, - "kStealWard": 11, - "kPushOverTime": 12, - "kStealOverTime": 13, - "kRemoveCharm": 14, - "kRemoveWard": 15, - "kRemoveOverTime": 16, - "kRemoveAura": 17, - "kSwapAll": 18, - "kSwapCharm": 19, - "kSwapWard": 20, - "kSwapOverTime": 21, - "kModifyIncomingDamage": 22, - "kModifyIncomingDamageFlat": 119, - "kMaximumIncomingDamage": 23, - "kModifyIncomingHeal": 24, - "kModifyIncomingHealFlat": 118, - "kModifyIncomingDamageType": 25, - "kModifyIncomingArmorPiercing": 26, - "kModifyOutgoingDamage": 27, - "kModifyOutgoingDamageFlat": 121, - "kModifyOutgoingHeal": 28, - "kModifyOutgoingHealFlat": 120, - "kModifyOutgoingDamageType": 29, - "kModifyOutgoingArmorPiercing": 30, - "kModifyOutgoingStealHealth": 31, - "kModifyIncomingStealHealth": 32, - "kBounceNext": 33, - "kBouncePrevious": 34, - "kBounceBack": 35, - "kBounceAll": 36, - "kAbsorbDamage": 37, - "kAbsorbHeal": 38, - "kModifyAccuracy": 39, - "kDispel": 40, - "kConfusion": 41, - "kCloakedCharm": 42, - "kCloakedWard": 43, - "kStunResist": 44, - "kClue": 111, - "kPipConversion": 45, - "kCritBoost": 46, - "kCritBlock": 47, - "kPolymorph": 48, - "kDelayCast": 49, - "kModifyCardCloak": 50, - "kModifyCardDamage": 51, - "kModifyCardAccuracy": 53, - "kModifyCardMutation": 54, - "kModifyCardRank": 55, - "kModifyCardArmorPiercing": 56, - "kSummonCreature": 65, - "kTeleportPlayer": 66, - "kStun": 67, - "kDampen": 68, - "kReshuffle": 69, - "kMindControl": 70, - "kModifyPips": 71, - "kModifyPowerPips": 72, - "kModifyShadowPips": 73, - "kModifyHate": 74, - "kDamageOverTime": 75, - "kHealOverTime": 76, - "kModifyPowerPipChance": 77, - "kModifyRank": 78, - "kStunBlock": 79, - "kRevealCloak": 80, - "kInstantKill": 81, - "kAfterlife": 82, - "kDeferredDamage": 83, - "kDamagePerTotalPipPower": 84, - "kModifyCardHeal": 52, - "kModifyCardCharm": 57, - "kModifyCardWard": 58, - "kModifyCardOutgoingDamage": 59, - "kModifyCardOutgoingAccuracy": 60, - "kModifyCardOutgoingHeal": 61, - "kModifyCardOutgoingArmorPiercing": 62, - "kModifyCardIncomingDamage": 63, - "kModifyCardAbsorbDamage": 64, - "kCloakedWardNoRemove": 86, - "kAddCombatTriggerList": 87, - "kRemoveCombatTriggerList": 88, - "kBacklashDamage": 89, - "kModifyBacklash": 90, - "kIntercept": 91, - "kShadowSelf": 92, - "kShadowCreature": 93, - "kModifyShadowCreatureLevel": 94, - "kSelectShadowCreatureAttackTarget": 95, - "kShadowDecrementTurn": 96, - "kCritBoostSchoolSpecific": 97, - "kSpawnCreature": 98, - "kUnPolymorph": 99, - "kPowerPipConversion": 100, - "kProtectCardBeneficial": 101, - "kProtectCardHarmful": 102, - "kProtectBeneficial": 103, - "kProtectHarmful": 104, - "kDivideDamage": 105, - "kCollectEssence": 106, - "kKillCreature": 107, - "kDispelBlock": 108, - "kConfusionBlock": 109, - "kModifyPipRoundRate": 110, - "kMaxHealthDamage": 112, - "kUntargetable": 114, - "kMakeTargetable": 115, - "kForceTargetable": 116, - "kRemoveStunBlock": 117, - "kExitCombat": 122, - "kSuspendPips": 123, - "kResumePips": 124, - "kAutoPass": 125, - "kStopAutoPass": 126, - "kVanish": 127, - "kStopVanish": 128, - "kMaxHealthHeal": 129, - "kHealByWard": 130, - "kTaunt": 131, - "kPacify": 132, - "kRemoveTargetRestriction": 133, - "kConvertHangingEffect": 134, - "kAddSpellToDeck": 135, - "kAddSpellToHand": 136, - "kModifyIncomingDamageOverTime": 137, - "kModifyIncomingHealOverTime": 138, - "kModifyCardDamagebyRank": 139, - "kPushConvertedCharm": 140, - "kStealConvertedCharm": 141, - "kPushConvertedWard": 142, - "kStealConvertedWard": 143, - "kPushConvertedOverTime": 144, - "kStealConvertedOverTime": 145, - "kRemoveConvertedCharm": 146, - "kRemoveConvertedWard": 147, - "kRemoveConvertedOverTime": 148, - "kModifyOverTimeDuration": 149, - "kModifySchoolPips": 150 - } - }, - "m_effectParam": { - "type": "int", - "id": 1, - "offset": 76, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 357920024 - }, - "m_disposition": { - "type": "enum SpellEffect::kHangingDisposition", - "id": 2, - "offset": 80, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1904841031, - "enum_options": { - "kBoth": 0, - "kBeneficial": 1, - "kHarmful": 2 - } - }, - "m_sDamageType": { - "type": "std::string", - "id": 3, - "offset": 88, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2501054223 - }, - "m_damageType": { - "type": "unsigned int", - "id": 4, - "offset": 84, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 737882766 - }, - "m_pipNum": { - "type": "int", - "id": 5, - "offset": 128, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 830827539 - }, - "m_actNum": { - "type": "int", - "id": 6, - "offset": 132, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 236824866 - }, - "m_effectTarget": { - "type": "enum SpellEffect::kEffectTarget", - "id": 7, - "offset": 140, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2458940523, - "enum_options": { - "kInvalidTarget": 0, - "kSpell": 1, - "kSpecificSpells": 2, - "kGlobal": 3, - "kEnemyTeam": 4, - "kEnemyTeamAllAtOnce": 5, - "kFriendlyTeam": 6, - "kFriendlyTeamAllAtOnce": 7, - "kEnemySingle": 8, - "kFriendlySingle": 9, - "kMinion": 10, - "kFriendlyMinion": 17, - "kEnemyMinion": 18, - "kSelf": 11, - "kAtLeastOneEnemy": 13, - "kPreselectedEnemySingle": 12, - "kMultiTargetEnemy": 14, - "kMultiTargetFriendly": 15, - "kFriendlySingleNotMe": 16 - } - }, - "m_numRounds": { - "type": "int", - "id": 8, - "offset": 144, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1229753829 - }, - "m_paramPerRound": { - "type": "int", - "id": 9, - "offset": 148, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 683234234 - }, - "m_healModifier": { - "type": "float", - "id": 10, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1317921248, - "enum_options": { - "__DEFAULT": "1.0" - } - }, - "m_spellTemplateID": { - "type": "unsigned int", - "id": 11, - "offset": 120, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 585567702 - }, - "m_enchantmentSpellTemplateID": { - "type": "unsigned int", - "id": 12, - "offset": 124, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 246955115 - }, - "m_act": { - "type": "bool", - "id": 13, - "offset": 136, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 269510283 - }, - "m_cloaked": { - "type": "bool", - "id": 14, - "offset": 157, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 7349510 - }, - "m_bypassProtection": { - "type": "bool", - "id": 15, - "offset": 159, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1657138252 - }, - "m_armorPiercingParam": { - "type": "int", - "id": 16, - "offset": 160, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2025530205 - }, - "m_chancePerTarget": { - "type": "int", - "id": 17, - "offset": 164, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 845426794 - }, - "m_protected": { - "type": "bool", - "id": 18, - "offset": 168, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1445655037 - }, - "m_converted": { - "type": "bool", - "id": 19, - "offset": 169, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1590428797 - }, - "m_rank": { - "type": "int", - "id": 20, - "offset": 208, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 219803942 - }, - "m_hangingEffectType": { - "type": "enum HangingConversionSpellEffect::HangingEffectType", - "id": 21, - "offset": 224, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2015960933, - "enum_options": { - "HE_Any": 0, - "HE_Ward": 1, - "HE_Charm": 2, - "HE_OverTime": 3, - "HE_Specific": 4 - } - }, - "m_specificEffectTypes": { - "type": "enum SpellEffect::kSpellEffects", - "id": 22, - "offset": 232, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2049268184, - "enum_options": { - "kModifyOutgoingDamage": 27, - "kModifyOutgoingDamageFlat": 121, - "kModifyAccuracy": 39, - "kCloakedCharm": 42, - "kDispel": 40, - "kCritBoost": 46, - "kCritBoostSchoolSpecific": 97, - "kModifyOutgoingHeal": 28, - "kModifyOutgoingHealFlat": 120, - "kModifyOutgoingDamageType": 29, - "kModifyOutgoingArmorPiercing": 30, - "kModifyIncomingStealHealth": 32, - "kModifyOutgoingStealHealth": 31, - "kBounceNext": 33, - "kBouncePrevious": 34, - "kBounceBack": 35, - "kCloakedWard": 43, - "kModifyIncomingDamage": 22, - "kModifyIncomingDamageFlat": 119, - "kModifyIncomingDamageOverTime": 137, - "kMaximumIncomingDamage": 23, - "kAbsorbDamage": 37, - "kAbsorbHeal": 38, - "kBounceAll": 36, - "kCritBlock": 47, - "kStunBlock": 79, - "kStunResist": 44, - "kPipConversion": 45, - "kPowerPipConversion": 100, - "kModifyIncomingDamageType": 25, - "kModifyIncomingHeal": 24, - "kModifyIncomingHealFlat": 118, - "kModifyIncomingHealOverTime": 138, - "kModifyIncomingArmorPiercing": 26, - "kCloakedWardNoRemove": 86, - "kDispelBlock": 108, - "kConfusionBlock": 109, - "kDamageOverTime": 75, - "kHealOverTime": 76, - "kDeferredDamage": 83 - } - }, - "m_minEffectValue": { - "type": "int", - "id": 23, - "offset": 248, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1614619272 - }, - "m_maxEffectValue": { - "type": "int", - "id": 24, - "offset": 252, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1321630794 - }, - "m_notDamageType": { - "type": "bool", - "id": 25, - "offset": 256, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1313760773 - }, - "m_minEffectCount": { - "type": "int", - "id": 26, - "offset": 260, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1592599476 - }, - "m_maxEffectCount": { - "type": "int", - "id": 27, - "offset": 264, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1299610998 - }, - "m_outputSelector": { - "type": "enum HangingConversionSpellEffect::OutputEffectSelector", - "id": 28, - "offset": 268, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1795006880, - "enum_options": { - "OES_All": 0, - "OES_MatchedSelectRank": 1 - } - }, - "m_scaleSourceEffectValue": { - "type": "bool", - "id": 29, - "offset": 272, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1962536406 - }, - "m_sourceEffectValuePercent": { - "type": "float", - "id": 30, - "offset": 276, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1001903523 - }, - "m_applyToEffectSource": { - "type": "bool", - "id": 31, - "offset": 280, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 760527802 - }, - "m_outputEffect": { - "type": "class SharedPointer", - "id": 32, - "offset": 288, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1098575817 - } - } - }, - "1080167052": { - "name": "class std::list >", - "bases": [], - "hash": 1080167052, - "properties": {} - }, - "1482117384": { - "name": "class SharedPointer", - "bases": [ - "GraphicalSpell", - "Spell", - "PropertyClass" - ], - "hash": 1482117384, - "properties": { - "m_templateID": { - "type": "unsigned int", - "id": 0, - "offset": 128, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1286746870 - }, - "m_enchantment": { - "type": "unsigned int", - "id": 1, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2217886818 - }, - "m_pipCost": { - "type": "class SharedPointer", - "id": 2, - "offset": 176, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3605704820 - }, - "m_regularAdjust": { - "type": "int", - "id": 3, - "offset": 192, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1420453335 - }, - "m_magicSchoolID": { - "type": "unsigned int", - "id": 4, - "offset": 136, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 893146499 - }, - "m_accuracy": { - "type": "unsigned char", - "id": 5, - "offset": 132, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2273914939 - }, - "m_treasureCard": { - "type": "bool", - "id": 6, - "offset": 197, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1764879128 - }, - "m_battleCard": { - "type": "bool", - "id": 7, - "offset": 198, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1332843753 - }, - "m_itemCard": { - "type": "bool", - "id": 8, - "offset": 199, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1683654300 - }, - "m_sideBoard": { - "type": "bool", - "id": 9, - "offset": 200, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1897838368 - }, - "m_spellID": { - "type": "unsigned int", - "id": 10, - "offset": 204, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1697483258 - }, - "m_leavesPlayWhenCastOverride": { - "type": "bool", - "id": 11, - "offset": 216, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 874407398 - }, - "m_cloaked": { - "type": "bool", - "id": 12, - "offset": 196, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 7349510 - }, - "m_enchantmentSpellIsItemCard": { - "type": "bool", - "id": 13, - "offset": 76, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 531590701 - }, - "m_premutationSpellID": { - "type": "unsigned int", - "id": 14, - "offset": 112, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1530256370 - }, - "m_enchantedThisCombat": { - "type": "bool", - "id": 15, - "offset": 77, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1895738923 - }, - "m_paramOverrides": { - "type": "class SharedPointer", - "id": 16, - "offset": 224, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2061635599 - }, - "m_subEffectMeta": { - "type": "class SharedPointer", - "id": 17, - "offset": 240, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1944101106 - }, - "m_delayEnchantment": { - "type": "bool", - "id": 18, - "offset": 257, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 191336919 - }, - "m_PvE": { - "type": "bool", - "id": 19, - "offset": 264, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 269492350 - }, - "m_delayEnchantmentOrder": { - "type": "enum SpellEffect::kDelayOrder", - "id": 20, - "offset": 72, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2526055263, - "enum_options": { - "SpellEffect::kAnyOrder": 0, - "SpellEffect::kFirst": 1, - "SpellEffect::kSecond": 2 - } - }, - "m_roundAddedTC": { - "type": "int", - "id": 21, - "offset": 260, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 112365451 - }, - "m_secondarySchoolID": { - "type": "unsigned int", - "id": 22, - "offset": 304, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2081206026 - } - } - }, - "312772984": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 312772984, - "properties": { - "m_fileName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3116172444 - }, - "m_attenuationPercent": { - "type": "float", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1412579028 - } - } - }, - "1080378376": { - "name": "class std::list >", - "bases": [], - "hash": 1080378376, - "properties": {} - }, - "1482338966": { - "name": "class SharedPointer", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1482338966, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - } - } - }, - "313683692": { - "name": "class PvP5thAgeKioskBehaviorTemplate*", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 313683692, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - }, - "m_kioskName": { - "type": "std::string", - "id": 1, - "offset": 120, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2560037053 - }, - "m_leagueType": { - "type": "std::string", - "id": 2, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3327951024 - } - } - }, - "313442845": { - "name": "class CinematicTemplate", - "bases": [ - "PropertyClass" - ], - "hash": 313442845, - "properties": { - "m_name": { - "type": "std::string", - "id": 0, - "offset": 120, - "flags": 134217735, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1717359772 - }, - "m_stages": { - "type": "class SharedPointer", - "id": 1, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2081530688 - }, - "m_actors": { - "type": "class SharedPointer", - "id": 2, - "offset": 88, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2242419761 - }, - "m_sharedAnimations": { - "type": "class SharedPointer", - "id": 3, - "offset": 104, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 3289641416 - } - } - }, - "1080628177": { - "name": "class LikesDislikesEntry", - "bases": [ - "PropertyClass" - ], - "hash": 1080628177, - "properties": { - "m_adjective": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3429518154 - }, - "m_stringTableKey": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2902469923 - }, - "m_modifier": { - "type": "float", - "id": 2, - "offset": 136, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 388952454, - "enum_options": { - "__DEFAULT": "1.0" - } - }, - "m_hidden": { - "type": "bool", - "id": 3, - "offset": 140, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 519817759 - } - } - }, - "1483264803": { - "name": "class ClientPetNameBehavior*", - "bases": [ - "ClientWizPlayerNameBehavior", - "NameOverrideBehavior", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1483264803, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_wsNameOverride": { - "type": "std::wstring", - "id": 1, - "offset": 120, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2131249091 - }, - "m_nameKeys": { - "type": "unsigned int", - "id": 2, - "offset": 352, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1772225898 - }, - "m_useRank": { - "type": "bool", - "id": 3, - "offset": 356, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2040475372 - }, - "m_eGender": { - "type": "enum eGender", - "id": 4, - "offset": 432, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2776344943, - "enum_options": { - "Male": 1, - "Female": 0, - "Neutral": 2 - } - }, - "m_eRace": { - "type": "enum eRace", - "id": 5, - "offset": 436, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 963057554, - "enum_options": { - "Bat": 88066, - "BatLightning": 1472842576, - "Boar": 2624962, - "CatThug": 1855674386, - "ChristmasElf": 819908552, - "ChristmasSnowman": 1146515225, - "Colossus_Ice": 1063279538, - "Cyclops": 1691813655, - "DragonBeta": 417003588, - "DragonFriendly": 69049013, - "EvilSnowman": 1579630926, - "FireElf": 443793687, - "Firecat": 2045525741, - "Frog": 2274918, - "FrostBeetle": 7692383, - "GhostBlue": 1097396892, - "GhostGreen": 882822629, - "GhostRed": 560510742, - "GhostYellow": 909974358, - "Ghoul": 82556199, - "GoatMonk": 486215564, - "GolemBrass": 1057388325, - "GolemClockwork": 1143380031, - "GolemSteel": 1660583674, - "GolemWood": 1426849876, - "HalloweenCat": 1042869199, - "Heckhound": 626736403, - "Helephant": 719065368, - "Human": 79806088, - "Hydra": 70785800, - "Imp": 84361, - "Krokomummy": 555755242, - "Kroktut": 1352354178, - "Leprechaun": 2106466410, - "LeprechaunPattyDay": 380507781, - "LightningBat": 228257682, - "Mannequin": 428442544, - "Minotaur": 949570680, - "Mount_Broom": 94637995, - "Mount_Cat": 1150940211, - "Mount_Dragon": 1565720148, - "Mount_Horse": 2054712767, - "Mount_PlayerWings": 589829552, - "Nikkos": 1563122418, - "NinjaPig": 607400740, - "Orthus": 1552590225, - "Piggle": 1897753328, - "Piggle_Valentine": 687697592, - "Piggle_ValentinePart2": 1760391091, - "Pixie": 74836240, - "RatMagician": 885542120, - "SalamanderFire": 48480175, - "SalamanderIce": 2011152164, - "SalamanderStorm": 600331072, - "Satyr": 84793363, - "Scarab": 2143810477, - "Sheep": 86220083, - "SkeletonArmored": 1791586239, - "SnowSerpent": 138621543, - "Spider": 1603064269, - "SpiderBlack": 559353179, - "SpiderBrown": 557941675, - "SpiderCrystal": 2119625297, - "SpiderGolem": 1632616514, - "Sprite": 1889156557, - "SpriteDark": 1888685518, - "Stormzilla": 252684095, - "SunBird": 1602211198, - "Transformation_ArmoredSkeleton": 1861349834, - "Transformation_CatThug": 1175387611, - "Transformation_Cat_Bandit": 1012395694, - "Transformation_ClockworkGolem": 601121214, - "Transformation_Cyclops": 620156297, - "Transformation_DarkFairy": 1206757203, - "Transformation_DraconianSorcerer": 1212016810, - "Transformation_Draconian": 450730089, - "Transformation_EarthColossus": 140119452, - "Transformation_EvilSnowman": 1497097122, - "Transformation_FatGobbler": 634003800, - "Transformation_FireElemental": 822233230, - "Transformation_FireElf": 46585468, - "Transformation_FireSalamander": 2118418114, - "Transformation_Gobbler_Skinny": 162365207, - "Transformation_GolemSteel": 1329184184, - "Transformation_Ice_Colossus": 430406408, - "Transformation_Krokomummy": 1644615769, - "Transformation_MagmaMan": 545064542, - "Transformation_Mander": 88998828, - "Transformation_NinjaPig": 1029132174, - "Transformation_Ninja_Pig_04": 7093548, - "Transformation_RatThug": 1175352795, - "Transformation_RavenMystic": 1443197359, - "Transformation_StormElemental": 637088511, - "Transformation_Treant": 1874998327, - "Transformation_WarPig": 691088645, - "Transformation_WolfScout": 263523463, - "Transformation_WolfWarrior": 6092463, - "Transformationn_SkeletonPirate": 1821341863, - "Treant": 1396597132, - "Troll": 82261620, - "Unicorn": 550546918, - "Unknown": 718677478, - "Wolverine": 528843083, - "Wraith": 1788506505, - "Wyrmkin": 379044612, - "Transformation_CyrusDrake": 94277831, - "PetEgg": 1973167984, - "GhostLady": 493415959, - "Banshee": 827805677, - "GobblerRed": 250135875, - "Ghoul_Gravedigger": 161812468, - "SkeletonWarrior": 734585814, - "BansheeBoss": 806445565, - "Seraph": 1792950125, - "CrabKing": 277875784, - "UndeadCaster": 1680689397, - "DragonFrontier": 1829438301, - "HeckhoundGhost": 872406464, - "Mount_Unicorn": 212699468, - "Jellyfish": 910724608, - "SeaDragon": 1194541306, - "Turtle": 1897184620, - "Starfish": 1447562471, - "SpinyFish": 162948281, - "Mount_Gryphon": 2110522960, - "Mount_Shark": 1170186623, - "Mount_Manta": 979931598, - "Mount_Seahorse": 1554833818, - "Mount_Seahorse_Tough": 1245859453, - "Mount_Koi": 1150937409, - "Mount_Lobster": 2025618875, - "Mount_Turtle": 1490849128, - "VenusFlyTrap": 1612039757, - "GDN_MED_BabyCarrots": 327334743, - "GDN_SM_BoomShroom": 31324632, - "GDN_SM_Dandelion": 2058674142, - "GDN_SM_Disparagus": 1732989489, - "GDN_MED_EvilSnowPeas": 747408607, - "GDN_SM_FicklePickle": 205381955, - "GDN_SM_HappyHolidaisy": 1736236340, - "GDN_MED_HelephantEars": 1803669659, - "GDN_MED_HoneySickle": 424149132, - "GDN_LG_NinjaFig": 847338104, - "GDN_LG_SnapDragon": 1076151689, - "GDN_SM_StinkWeed": 845383431, - "GDN_MED_TrumpetVine": 1922690264, - "GDN_MED_VenusFlyTrap": 1560899638, - "GDN_SM_Laughodil": 1278979588, - "GDN_LG_BreadFruitBush": 533042934, - "GDN_MED_PricklyBearCactus": 1236846986, - "GDN_MED_KingParsley": 110148182, - "LeprechaunPatriotic": 414730890, - "SeraphYuletide": 1325846853, - "DragonGhost": 1502126893, - "UnicornNightmare": 604358256, - "EvilSnowmanSandman": 1579432150, - "Colossus_Spirit": 422514215, - "Rock": 2393554, - "GDN_MED_GivingTree": 2047236132, - "Egg": 70853, - "Mount_Carpets": 1602744888, - "Kraken": 1737191829, - "Wyvern": 1727802601, - "Phoenix": 1765559002, - "Judgement": 562901781, - "ForestLord": 1390734923, - "Humongofrog": 1272123051, - "Scarecrow": 41441599, - "Mount_Ram": 77196599, - "BasketSnake": 1835657086, - "Samoorai": 522797493, - "Transformation_RavenWarrior": 701169336, - "PhoenixStorm": 1325268802, - "PhoenixDeath": 1281634042, - "GDN_LG_CouchPotatoes": 879742725, - "GDN_MED_KeyLimes": 811516024, - "Mount_BoneDragon": 1023618313, - "Mount_BigBoneDragon": 1124383680, - "Mount_FairyWings": 1904926612, - "Mount_DragonWings": 755225925, - "Mount_Pegasus": 1621244140, - "GDN_MED_BellPepper": 1710238687, - "GDN_MED_GrapesOfWrath": 1068787103, - "GDN_SM_TigerLily": 1899057048, - "WysteriaPiggle": 49173891, - "Mount_Wyvern": 1658410744, - "Mount_2P_Rhino": 1052779475, - "NightHawk": 358964390, - "Giraffe": 935214826, - "Mount_Hawk": 2070898895, - "Mount_HalloweenNightmare": 726136378, - "GobblerHalloween": 1482399836, - "Leopard": 1606863715, - "Skink": 76950867, - "Mount_Ostrich": 466111322, - "Mount_Crocagator": 1981222087, - "Transformation_Blacktusk-01": 401543565, - "Mount_Hippogriff": 2043817624, - "Transformation_Gorilla-01": 1555853240, - "Transformation_Gorilla-02": 1606184888, - "Mount_Raven": 94983735, - "Mount_Chrismoose": 1822495199, - "Mount_CandyCane": 1148551147, - "Ivy_League": 925492799, - "GDN_MED_Ivy_League": 1630077794, - "Mount_Kirin": 1168691825, - "GDN_SM_Moonflower": 2068754330, - "GDN_MED_BoonTree": 788055729, - "Snowball": 2046118016, - "Foo_Dog": 1549710807, - "ShenlongDragon": 932676736, - "Monkey": 1233866291, - "Wolfhound": 626884686, - "Redcap": 1540319086, - "Raven": 79941650, - "HollowKnight": 1107268274, - "Book": 2405826, - "GDN_MED_AngoraBunnyEars": 1547559854, - "GDN_MED_FortuneCookieTree": 786686214, - "GDN_MED_GooseTree": 809354938, - "GDN_SM_HoneyBeePlant": 1528880373, - "GDN_MED_BambooShoots": 1096708900, - "GDN_SM_Huckleberries": 1937475840, - "Rock_Moustache": 962221287, - "Efreet_Myth": 1834555522, - "Efreet": 1401700123, - "Mammoth": 1395147745, - "Triton": 1730466188, - "Gnome": 74954215, - "BoneDragon": 429245206, - "Basilisk": 1457899086, - "Chimera": 529027789, - "Transformation_GammaTemplate": 1337834518, - "Mount_Camel": 1168198963, - "Mount_RenaissanceWings": 1049782088, - "Bull_Mount": 1713506759, - "Mount_Owl": 1150938242, - "Mount_Alphyn": 487264165, - "Mount_Stag": 1150353823, - "Mount_Auroch": 509865325, - "Mount_Warg": 1150358072, - "StrangeBeast": 511334734, - "Efreet_Ice": 1820009122, - "Efreet_Storm": 1269986674, - "GDN_LG_AlligatorPear": 1293913372, - "Mount_2P_Treant": 928450863, - "Mount_2P_Dragon": 1431637933, - "Mount_Pogo_Stick_WC": 1462849298, - "Mount_Pogo_Stick_MB": 1349603090, - "GDN_LG_MeltingCheese": 1914589015, - "GDN_SM_FishOnAVine": 1734955358, - "GDN_LG_AngelOak": 1539539424, - "GDN_LG_MeltingCheese_Angel": 1254781264, - "SnowyOwl": 1682262138, - "Mount_3P_Hydra": 1207475250, - "WeaselMinstrel": 1541234616, - "MOUNT_Rickshaw": 938282973, - "Transformation_Sherlock-Bones": 509126601, - "Mount_Phoenix": 556355452, - "Toaddle": 597488187, - "Pantera": 528797696, - "WildfireTreant": 673362041, - "StoneTiger": 746336665, - "Blowfish": 1447737334, - "Smith": 78327187, - "FlyingCat": 1254472614, - "RamWarrior": 536916302, - "Ladybug": 1846384669, - "BurlapBoy": 607590898, - "DeerKnight": 560802130, - "Gargoyle": 1227701700, - "Chameleon": 596131510, - "Scorpion": 1462253104, - "GDN_SM_BoiledPeanuts": 544885684, - "GDN_SM_ClockFlower": 676513046, - "GDN_SM_DeadBeets": 650783482, - "GDN_MED_SnowApple": 1916648180, - "Eyecaramba_Violet": 1804780775, - "Eyecaramba_Green": 750346574, - "Eyecaramba_Orange": 687614854, - "Piggle_Grandfather": 131445665, - "Velociraptor": 1042311818, - "Babydactyl": 1180982194, - "Stegosaurus": 476811765, - "Mount_Pegasus_Spectral": 948250730, - "Mount_2P_Scarydactyl": 1808983335, - "Mount_2P_TRex": 1495851852, - "Therizinosaurus": 80337863, - "Runtosaurus": 476200406, - "FrilledLizard": 420993517, - "Mount_Ankylosaurus": 669692274, - "Mount_Triceratops": 1126950204, - "Mount_2P_Glider": 1630365881, - "Transformation_Thunderhorn": 1045262037, - "Transformation_Jaguar": 1080966062, - "Transformation_Pteranadon": 273836142, - "Transformation_ShadowWeaver": 255927111, - "Transformation_EagleWarrior": 1880471875, - "Mount_Falalalallama": 389890123, - "Mount_2P_WinterTreant": 1850265056, - "GDN_LG_MissileToe": 1767792974, - "GDN_MED_PointSetta": 647257205, - "Nutcracker2012": 1598217699, - "Coal2012": 1627852119, - "Mount_Sleigh": 1636615519, - "Mount_Sabertooth": 1613031507, - "Mount_MechanicalWings": 1014917438, - "PiranhaHunter": 686271163, - "Quetzal": 2020925822, - "Mount_Sloth": 1169387359, - "HollowKnightLife": 2114081886, - "BettaFish": 138088968, - "MummyCat": 62372925, - "TrojanHorse": 1725299194, - "WC_Storm_Possessed": 186960228, - "AV_Possessed": 1106693085, - "AZ_Possessed": 1106692701, - "CL_Possessed": 1106692255, - "KT_Possessed": 1106693015, - "MS_Possessed": 1106692977, - "WC_Possessed": 1106692459, - "Mount_2P_Whale": 448824263, - "Mount_2P_Chariot": 88035298, - "Mount_WarBoar": 1159836211, - "Mount_Palanquin": 47587550, - "BearCub": 672664722, - "Transformation_Minotaur": 1454233452, - "DragonGauntlet": 797645257, - "DeathUnicorn": 924144161, - "Flamingo": 1488424911, - "Mount_Gorilla": 1939919432, - "Mount_WarUnicorn": 1361393198, - "GargoyleMyth": 1819685060, - "TikiMan": 16098567, - "Siren": 79937811, - "GoldenRam": 410220227, - "Harpy": 96026632, - "SwordShield": 1668411785, - "ClockworkKnight": 1059948980, - "Mount_MechanicalEagle": 1720948645, - "Mount_Cloud": 1166233435, - "Mount_Surfboard": 1914250039, - "Mount_BetaDragon": 1023653721, - "Mount_BeeWings": 1387988401, - "Vampire": 524731385, - "FrankenBunny": 589797989, - "BumbleBee": 249592226, - "Mount_Dragonfly": 1028843656, - "BronzeGolem": 1320867859, - "TarantulaHawk": 1983939429, - "Mount_Grasshopper": 1852850928, - "FlyingSquirrel": 847551166, - "GDN_MED_Sunion": 1652707634, - "GDN_MED_SwordFern": 548761438, - "GDN_SM_SugarKhrystal": 267539461, - "GDN_SM_SawPalmetto": 1892888046, - "GDN_LG_FacePalm": 2050814140, - "GDN_LG_QueenCrapeMyrtle": 80378450, - "Transformation_ShadowTank": 1304943609, - "Transformation_ShadowHeal": 1254024185, - "Transformation_ShadowDPS": 87276537, - "Mount_Noelephant": 1383672248, - "SaintBernard": 572932242, - "ParkaFox": 2009808189, - "Goose": 75019719, - "Mount_Coconut": 791151432, - "CreepyBeetle": 345594179, - "BabyDragonfly": 1367084335, - "FennecFox": 41315063, - "PP_Leviathan": 833901526, - "PP_SunSerpent": 1062677009, - "PP_LordOfWinter": 960214698, - "PP_Medusa": 867812931, - "PP_Dryad": 147654656, - "PP_AvengingFossil": 315904647, - "PP_Sabertooth": 1799146677, - "Mount_Butterfly": 1283940943, - "Mount_Hare": 2070851023, - "Transformation_MorganthB": 197306990, - "Transformation_MorganthC": 197831278, - "Transformation_MorganthD": 200452718, - "BabyPegasus": 1215000859, - "ArcaneHelp": 1899247549, - "Mount_Vines": 98389624, - "Mount_ArcaneMinecart": 2001270930, - "Hobgoblin": 2133668461, - "Mount_2P_Rowboat": 237071469, - "ForestSpirit": 1178454602, - "Mount_SpiritWolf": 531991076, - "Otter": 84138671, - "OrigamiBird": 550984083, - "DinoSkeletal": 233277835, - "Mount_HarrowingsGreen": 1605746772, - "Mount_HarrowingsBlue": 477152436, - "Mount_HarrowingsPurple": 2092807554, - "RedPanda": 1744233845, - "Ibis": 2665577, - "Corgi": 78823875, - "Mount_Yak": 996545739, - "Mount_FlyingBalance": 436519643, - "Transformation_ShadowMalistaire": 1043814435, - "Transformation_DragonMalistaire": 841867699, - "Mount_Scarab": 1687658791, - "Transformation_MisterHound": 1973578844, - "Mount_BahHumbug": 55114077, - "Skates": 1568993965, - "Moose": 75019725, - "Mount_Gargoyle": 1456663874, - "GDN_MED_VenusFlyTrapEpic": 1594069606, - "Mount_PlayerWingsPink": 19403046, - "GDN_LG_AlligatorPearEpic": 1326804812, - "Pet_Armadillo": 825736847, - "Mount_JoustingDestrierDyeable": 1683448768, - "GDN_MED_VampireCarrots": 871596496, - "GDN_SM_WhiteTigerLilyEpic": 1703271434, - "GDN_LG_NinjaFigEpic": 938504823, - "GDN_LG_SnapDragonEpic": 2071674466, - "GDN_MED_HelephantEarsEpic": 719166107, - "GDN_MED_TrumpetVineEpic": 225854518, - "GDN_SM_DandelionEpic": 728637442, - "GDN_SM_HuckleberriesEpic": 1903258448, - "GDN_MED_SnowAppleEpic": 1231175967, - "GDN_SM_BoomShroomEpic": 981598771, - "GDN_MED_KingParsleyEpic": 2038371004, - "Mount_Raptor": 749695031, - "Pet_Toucan": 581477475, - "Pet_Squirrel": 969881395, - "Mount_WonkyDonkey": 1481657312, - "Mount_HawkPatriotic": 509149743, - "Pet_FrogAssistant": 1945041750, - "Mount_Cat2": 1151054899, - "Mount_Cat2BW": 1603515443, - "Pet_ArmadilloBW": 825733899, - "Pet_FrankieForearms": 1100195857, - "Mount_SolarSabre": 1281093703, - "MNT_MechOstrich": 258667969, - "MNT_BootsBalance": 1799191558, - "MNT_BootsDeath": 1034912971, - "MNT_BootsFire": 606061658, - "MNT_BootsIce": 2142643294, - "MNT_BootsLife": 773751898, - "MNT_BootsMyth": 144792486, - "MNT_BootsStorm": 1525245121, - "Pet_CorgiBirthday": 1951779369, - "OrigamiBirdBDay": 1909935955, - "Pet_FlyingBlackCat": 432111988, - "Mount_Narwhal": 449637834, - "Mount_NightOwl": 1648420845, - "Pet_Penguin": 137342907, - "MNT_PowerGemUnicorn": 411234062, - "Pet_CrystalButterfly": 512136094, - "Mount_BabyMammoth": 185831059, - "MNT_BabaYaga": 564874997, - "Pet_BabySeal": 657606984, - "Pet_BabyYeti": 635847496, - "Transformation_BallerinaBear": 1525333600, - "Mount_StagYuletide": 1508680687, - "Transformation_TitanMedium": 1700742736, - "Transformation_TitanLarge": 718614967, - "Pet_SirenIce": 849851564, - "Mount_FlyingDeath": 1717725588, - "Mount_FlyingFire": 1177216332, - "Mount_FlyingIce": 1238841184, - "Mount_FlyingLife": 433397684, - "Mount_FlyingMyth": 164983572, - "Mount_FlyingStorm": 375872049, - "Dragonling": 1730534849, - "Pet_EggChicken": 952873217, - "HeckhoundGhost_MAW": 893368960, - "Mount_WinterTrain": 751515281, - "Mount_RubberDucky": 1826548479, - "Pet_BansheeSpellwrit": 917979583, - "Pet_SamooraiSpellwrit": 370057597, - "Mount_UnicornAstral": 886914505, - "Guest_Boochbeard": 1958574095, - "Pet_MouseSister": 1267930350, - "Pet_MouseFather": 2010008339, - "Pet_VampireSquirrel": 250588691, - "Mount_CoffinCar": 1387606595, - "Mount_BabyElephant": 2026559639, - "Pet_RoadHog": 601156960, - "Mount_WolfGryphonWings": 543038283, - "MNT_ClockworkSteed": 891371132, - "Mount_Chopper": 1196683136, - "Pet_ButterflyLamb": 527214392, - "Pet_MouseMother": 2012687123, - "Pet_MouseBrother": 1174380856, - "Pet_Cherub": 769208559, - "GDN_SM_Jewel": 1104045832, - "MR_Death_Duncan_Grimwater": 1850289001, - "Mount_DesertRunner": 2049036229, - "Pet_MonkeyMirage": 418612892, - "Pet_ClockworkOwl": 1038482431, - "Pet_NinjaTurtle": 2024540686, - "Mount_Vines_Halloween": 82852149, - "Mount_SwarmBat": 1151836459, - "Mount_2P_NinjaDragon": 1239694057, - "Mount_Gobler": 1820615236, - "Mount_MaryleboneCar": 2027689685, - "JackOLantern": 1016361578, - "Transformation_DjinnCommonA_Balance": 996127128, - "Transformation_MedicineMode": 25960701, - "CactusHopper": 1956293007, - "Transformation_Mimic_ChestGold_A": 414145432, - "Mount_Ghoulture": 1067671195, - "Pet_Macaw": 1087278472, - "Pet_SandWorm": 653200803, - "Transformation_DromelDancer": 1071824116, - "Pet_Bunnies": 695874547, - "Mount_Snowboard": 1914380015, - "Transformation_DrommelDancer": 226294468, - "Mount_Carpet_New": 1618650322, - "Mount_BunnySleigh": 599915427, - "Helephant_Heart": 419161272, - "Mount_Snowboard_Holiday": 876339060, - "Transformation_GhostDog": 646575420, - "Transformation_PrinceGobblestone": 693826496, - "Transformation_Mithraya": 1240010601, - "Transformation_LuskaCharmbeak": 897469730, - "Transformation_YoungCyrusDrake": 15595663, - "Kookaburra": 1069759154, - "BorealisGolemPet": 797488492, - "FlyingEyePet": 505959833, - "StormCloudPet": 548463069, - "BullPet": 1993917801, - "OpossumPet": 284003652, - "GhoulturePet": 939920734, - "StormCloudPetB": 548463001, - "StormCloudPetC": 548463003, - "Guest_LordNightshade": 1221409981, - "BullPetB": 1993917561, - "BullPetC": 1993917553, - "BullPetD": 1993917513, - "Transformation_ShadowCrit": 1392195065, - "Mount_Pennyfarthing": 1551926344, - "Mount_RowboatPirate": 2079208803, - "Mount_IceCube": 1261861595, - "Guest_LostMaiden": 883675592, - "Guest_BoatswainMcGee": 1359750850, - "Guest_ChiefMateMcGurk": 329643845, - "Guest_DoomedBones": 2015643882, - "Guest_SpectreoftheBrocken": 266357448, - "Guest_DrownedKnight": 1100966093, - "Guest_TarntheDrowned": 329540205, - "Guest_DisloyalKnight": 1853240753, - "Guest_NamelessKnight": 1065677876, - "Guest_LambentFire": 489886605, - "Guest_LordoftheBrocken": 1662003371, - "Guest_StormCaiman": 1147500291, - "Guest_GrinningDeathMoon": 737595789, - "Guest_MoonSkullWight": 1720039490, - "Guest_HuemacSpearWreath": 1522021131, - "Guest_HowlingBanshee": 1340855338, - "Guest_Sea-Booter": 1818491983, - "Guest_DeadRover": 1009273257, - "Guest_CelestianRemnant": 1312268448, - "Guest_Shadow-WebConscript": 1500529411, - "Guest_Shadow-WebMercenary": 623672171, - "Guest_Shadow-WebWraith": 810956416, - "Guest_Shadow-WebHaunt": 500586883, - "Guest_CelestianPartisan": 633346892, - "Guest_CelestianDefender": 482102727, - "Guest_ThraleBonestriker": 1172972733, - "Guest_VorgenSoulbreaker": 1935693246, - "Guest_ServusBloodsword": 1703995647, - "Guest_QueenCalypso": 845803519, - "Guest_BlueBart": 77043390, - "Guest_KarolakNightspinner": 1008737316, - "Guest_ArachtusDuskweb": 1787750209, - "Guest_ZhalarStarcloud": 1453644105, - "Guest_NarallorNightborn": 1963363700, - "Guest_SelwynSkywatcher": 1413136893, - "Guest_OsseusNightreaver": 306827003, - "Guest_IrateBanshee": 865143109, - "Guest_FuriousHowler": 1607252558, - "Guest_CryingSpirit": 1559074820, - "Guest_UndeadDraconian": 169249571, - "Guest_ReanimatedDraconian": 247067807, - "Guest_GhastlySlave": 80127661, - "Guest_BoundSpecter": 369706568, - "Guest_NecroticHaunter": 1714841563, - "Guest_LoathsomeCreeper": 1087245229, - "Guest_FleshrotRetriever": 1925148031, - "Guest_BarbarianSpirit": 2112552732, - "Guest_BeghastionCrowcaller": 586628832, - "Guest_BeghastionFieldburner": 1650751959, - "Guest_BoneWarrior": 76802026, - "Guest_FleshlessSentry": 708431820, - "Guest_PirateRavager": 945157059, - "Guest_RottenScallywag": 974666855, - "Guest_ArmoredBonewalker": 1444568072, - "Guest_UndeadWizard": 1622435563, - "Guest_SoulSearcher": 2094392941, - "Guest_DecayingBlackguard": 412324062, - "Guest_FoulReaper": 919877614, - "Guest_NightShadow": 1675932226, - "Guest_MotleyCrew": 653779218, - "Guest_OrinGrimcaster": 472649066, - "Guest_GhostofSylviaDrake": 218332449, - "Guest_VikaMarkmaker": 1145181168, - "Guest_VasekAshweaver": 1001434369, - "Guest_FireWraith": 1027720368, - "Guest_HungrySoul": 1722435576, - "Guest_FrostBones": 456145606, - "Guest_SnowSkull": 835837850, - "Guest_WinterSkull": 1556601065, - "Guest_LothinDoombringer": 860995070, - "Guest_MimirWinterbane": 1111898070, - "Guest_KulgrimSoulsunder": 278037985, - "Guest_HitojiniDeathcaster": 1144499043, - "Guest_GaikotsuSkeleton": 1113949902, - "Guest_PhantomAce": 1917639347, - "Guest_PhantomGlider": 849918336, - "Guest_Krokomummy": 857773886, - "Guest_NiriniAncientGuard": 359313880, - "Guest_NiriniFireSpirit": 1863811476, - "Guest_VaultHaunter": 197723476, - "Guest_VigilantDefender": 171276829, - "Guest_WanderingAhnicSpirit": 1702865088, - "Guest_ForgottenDjeseritSoul": 1170568256, - "Guest_KaranahnDeathfeeder": 1612857711, - "Guest_ShamblingAhnic": 1579129677, - "Guest_RisenDjeserit": 287855500, - "Guest_KaranahnMortifier": 874288111, - "Guest_DjeseritDweller": 2058423665, - "Guest_AhnicStrider": 1776992302, - "Guest_GuardianoftheFang": 1816795524, - "Guest_DefenderoftheFang": 354353604, - "Guest_ProtectoroftheFang": 1290191037, - "Guest_SouloftheCharmed": 422890577, - "Guest_KaranahnKeeper": 77581557, - "Guest_NiriniIntimidator": 677205957, - "Guest_CondemnedSoldier": 449152244, - "Guest_NimahtheWicked": 1298248873, - "Guest_AkoriNirini": 1123159753, - "Guest_SoulScavenger": 892852198, - "Guest_KeeperoftheFang": 1676773499, - "Guest_ItennuSokkwi": 699159408, - "Guest_Tempestra": 334938435, - "Guest_QueenIrisiDjeserit": 1861434100, - "Guest_TheBonekeeper": 1302503449, - "Guest_CryptScavenger": 1893795791, - "Guest_Soulsapper": 1699756010, - "Guest_KingUroAhnic": 1788825731, - "Guest_KingShemetDjeserit": 1350067043, - "Guest_UnholyWraith": 1871146013, - "Guest_PikeSpiritcrusher": 498715531, - "Guest_SpellwritScreamer": 801626733, - "Guest_SpellwritRonin": 1671439174, - "Guest_Shrieker": 805966229, - "Guest_GravePhantom": 731622936, - "Guest_NightmareSpirit": 230709057, - "Guest_VengefulCreeper": 1100197884, - "Guest_TombRoamer": 1277825068, - "Guest_ShieldSkeleton": 1634270152, - "Guest_AgonyWraith": 30384496, - "Guest_IcyGhost": 768353592, - "Guest_Half-wittedSkeleton": 647996362, - "Guest_LazyHenchman": 1329554426, - "Guest_TiredFighter": 210248632, - "Guest_Screecher": 469007005, - "Guest_SeethingWraith": 664913100, - "Guest_ColdConfusion": 1304943934, - "Guest_OssuaryConscript": 1017667150, - "Guest_Ghulture": 1330558655, - "Guest_BodyGuard": 1048581801, - "Guest_SpectralGuardian": 422805602, - "Guest_VaultConscript": 1388398065, - "Guest_FootPatrol": 1692393321, - "Guest_ArmedGuard": 2045920536, - "Guest_Chilly": 1764665905, - "Guest_Achey": 973370519, - "Guest_Sneezy": 1769440773, - "Guest_Cough": 1170200073, - "Guest_Shadowbones": 1316133167, - "Guest_ForgottenConscript": 1466348281, - "Guest_BarracksGuardian": 236603440, - "Guest_CryptConscript": 314755436, - "Guest_DurvishSeeker": 1825622267, - "Guest_MedicineMode": 167015574, - "Guest_Myriarch2": 593881680, - "Guest_Myriarch3": 593881616, - "Guest_MyriarchEphialtes": 773531895, - "Guest_MotherGhulture": 1585201915, - "Guest_CaptainCosrow": 727107332, - "Guest_VizierRafaj": 214040637, - "Guest_DarkmoorSerf": 1522169114, - "Guest_DarkmoorSquire": 1822567109, - "Guest_ScarletWampyr": 1683954247, - "Guest_DraconianRevenant": 741497298, - "Guest_DraconianEidolon": 107733297, - "Guest_AnguishedWraith": 1078602022, - "Guest_DraconianPyromancer": 729577007, - "Guest_DraconianThaumaturge": 189734361, - "Guest_DraconianDiviner": 472633746, - "Guest_DraconianConjurer": 1824962835, - "Guest_DraconianTheurgist": 1828628416, - "Guest_DraconianNecromancer": 175364324, - "Guest_DraconianSorcerer": 1262893339, - "Guest_SirBlackwater": 366308464, - "Guest_AkhtangWormCrawl": 1589032404, - "Guest_SpiritofDarkmoor": 579455915, - "Guest_ShanevonShane": 2096517522, - "Guest_YevgenyNightCreeper": 1535282881, - "Guest_MalistairetheUndying": 824508513, - "Guest_Bunferatu": 1015806005, - "Guest_CountBelaBlackSleep": 761647679, - "Guest_DeathSoldier": 1715141574, - "Guest_SorrowWhisperer": 556532003, - "Guest_GriefSpectre": 1425488559, - "Guest_HowlingShade": 631460247, - "Guest_WalkingDead": 318527090, - "Guest_Akuji": 977635799, - "Guest_TorturedKakedaSoul": 1716874833, - "Guest_KakedaSpiritSlave": 1814699344, - "Guest_DishonoredSamoorai": 320085744, - "Guest_CursedRonin": 1204095686, - "Guest_TomugawatheEvil": 166125424, - "Guest_OyotomitheDefiler": 1672714483, - "Guest_Fushiko": 801492770, - "Guest_BrokenLandGuardian": 294671991, - "Guest_ShatteredSkyGuardian": 746681463, - "Guest_SunderedSeamGuardian": 1439618652, - "Guest_BrokenLandSpirit": 860105895, - "Guest_ShatteredSkySpirit": 2104112380, - "Guest_SunderedSeamSpirit": 69572311, - "Guest_LostSoul": 204361577, - "Guest_RottingFodder": 308249734, - "Guest_HauntedMinion": 689597338, - "Guest_FieldGuard": 1175228991, - "Guest_SkeletalWarrior": 778393993, - "Guest_SkeletalPirate": 1476730220, - "Guest_WanderingSpecter": 126188449, - "Guest_LivingScarecrow": 1442943145, - "Guest_FrostPhantom": 1809776664, - "Guest_FireShrieker": 173332719, - "Guest_CryptCrawler": 2118799272, - "Guest_ViridianSpecter": 383149977, - "Guest_ArgentClatterer": 525414714, - "Guest_SwimmingSpecter": 1494025094, - "Guest_ScarletScreamer": 1689589811, - "Guest_BoneDigger": 1351421123, - "Guest_HowlingGhost": 664019391, - "Guest_SkeletalSoldier": 750463116, - "Guest_MaidenofHate": 444442868, - "Guest_SkeletalRetainer": 1409032775, - "Guest_SoulHunter": 1900267551, - "Guest_MidnightShuffler": 1991052065, - "Guest_PlaguedSoul": 419071561, - "Guest_HauntingBanshee": 345837052, - "Guest_SimontheSayer": 1352807820, - "Guest_TheHarvestLord": 1923575206, - "Guest_LadyBlackhope": 1403431623, - "Guest_SergeantSkullsplitter": 898737831, - "Guest_Foulgaze": 2063419769, - "Guest_Wormguts": 788697519, - "Guest_Rattlebones": 125602919, - "Guest_Paulson": 1112716921, - "Guest_Grubb": 1167554274, - "Guest_Norton": 581021964, - "Guest_NightStalker": 1447653309, - "Guest_AddereTimeo": 1491420030, - "Guest_TheReaper": 1526369733, - "Guest_AngrusHollowsoul": 1427862805, - "Guest_OrrickNightglider": 951078615, - "Guest_SteelSentinel": 885250894, - "Guest_Shadow-WebSoldier": 2014925398, - "Guest_LostCeleste": 1725301830, - "Guest_CapnNigelSkullcrack": 1665439970, - "Guest_HaulAwayJoe": 1075985331, - "Guest_OldMaui": 15300840, - "Guest_LordAgue": 140791419, - "Guest_MelweenaSmite": 432188189, - "Guest_HalloweenTrickster": 2043736417, - "Guest_PumpkinHead": 1098332105, - "Guest_BaronMordecai": 817370918, - "Guest_KaimaniteMummy": 1332671420, - "Guest_VeggieRevanant": 928504192, - "Guest_BloodBat": 76467389, - "Guest_DeadBeets": 157829578, - "Guest_Desparagus": 1130644076, - "Guest_MeanestFly-Trap": 1652898868, - "Guest_Nosferabbit": 1021159436, - "Guest_ThrallofSothmekhet": 330780177, - "Guest_VileApparition": 426627869, - "Guest_SoulServant": 1183110886, - "Guest_SoulKeeper": 917518313, - "Guest_AdmiralBontau": 2032168402, - "Guest_DeathWhisperer": 3814952, - "Mount_RollerBlades": 111369373, - "Guest_BaneWyrm": 147033576, - "Guest_BlackDragon": 939469656, - "Guest_DragonSpawn": 1829803517, - "Guest_Fire-SpitterSpawn": 616624489, - "Guest_CaoranachtheFire-Spitter": 323513000, - "Guest_Jabberwock": 1552492834, - "Guest_CatalantheLightningLizard": 1155778705, - "Guest_WhiteDragon": 2009449331, - "Guest_WinterWyrm": 478925069, - "Guest_WyrmStatue": 2119216210, - "Guest_AlgidWyrm": 1309546482, - "Guest_BruleeSucre": 390936202, - "Guest_HebitohoWyrmling": 1682026810, - "Guest_Shadowwock": 505539184, - "Guest_EirikurAxebreaker": 1361453552, - "Guest_WarWyrm": 1124740742, - "Guest_StrayFireflier": 610979811, - "Guest_BurningFlamewing": 2041225130, - "Guest_FeralLavaling": 371483057, - "Guest_SplinterWing": 923421333, - "Guest_ChanticoBlueAir": 1572441903, - "Guest_CopperWingGuard": 302783602, - "Guest_ObsidianBeak": 2016227452, - "Guest_CaquixNineShadows": 2070101060, - "Guest_LustrousTlalocan": 1201030473, - "Guest_SeedThief": 263211181, - "Guest_PopZotzUnluckyDay": 1416773489, - "Guest_NezathePoet": 1905861376, - "Guest_MazenStingerBee": 1642023393, - "Guest_ImperialJusticePayne": 1285679745, - "Guest_AssistantWardenPorfiry": 22099059, - "Guest_MarshalKamensky": 524669730, - "Guest_WardenVissarovich": 882556823, - "Guest_GulagGuard": 100744159, - "Guest_CaptainKravchuck": 690830770, - "Guest_ImperialGuard": 346803640, - "Guest_IronPaw": 1797329688, - "Guest_TundarianEnforcer": 134256836, - "Guest_Ivan": 996220221, - "Guest_ColonelOrlov": 1381254189, - "Guest_IronPawIntakeCaptain": 2099184835, - "Guest_SolitaryWarden": 1503529566, - "Guest_CaptainZubkov": 793725366, - "Guest_SergeantBobrik": 722182485, - "Guest_WailingWraith": 946976407, - "EggChick": 1452316301, - "BunnyMallow": 518233330, - "Guest_ThunderHornZombie": 1007920040, - "Guest_SmokingMirrorZombie": 340971759, - "Guest_ShamblingZombie": 1920485146, - "Guest_MoonSkullZombie": 809249764, - "Guest_DeathlessStormHorn": 812397213, - "Guest_MozarTurtleHunter": 561749043, - "Guest_GuillermoShatterer": 499565054, - "Guest_XiuhcoatlBarbedTooth": 1719245305, - "Guest_AzcalFireAnt": 1281366337, - "Guest_TlotzinMoonThief": 407285761, - "Guest_PocaCruelStar": 1117353085, - "Guest_ThunderHornGhoul": 597878999, - "Guest_TezomocStoneSinger": 733511940, - "Guest_EzhuaBadTaste": 632779219, - "Guest_UacalxochitlBloodEye": 1614856226, - "Guest_WanadiBlackSky": 349829749, - "Guest_ElMarrow": 483880636, - "Guest_GrimCalaca": 1534029144, - "Guest_XipeFlayedOne": 1343577398, - "Guest_MotecumaDeathMask": 1782393717, - "Guest_EkeChuah": 13416770, - "Guest_AnacaonaBlackSnake": 1543344897, - "Guest_SmokingMirrorWight": 776452983, - "Guest_Tolkemec": 217428080, - "Mount_Fox": 77199428, - "PP_OwlProtege": 268847192, - "Mount_SharkSki": 331374103, - "PP_Dolphin": 1662291612, - "Mount_CastSymbol_D": 1134428045, - "Mount_CastSymbol_E": 1136525197, - "Mount_CastSymbol_F": 1138622349, - "Mount_CastSymbol_G": 1140719501, - "Mount_CastSymbol_A": 1128136589, - "Mount_CastSymbol_B": 1130233741, - "Mount_CastSymbol_C": 1132330893, - "Guest_LionSpectralGuardian": 1791543691, - "Guest_KillmareSpiritwalker": 1818928165, - "Guest_ZebraSpectralGuardian": 815933596, - "Guest_GorillaSpectralGuardian": 1635182119, - "Guest_IklawGhostWarrior": 373465545, - "Guest_BwanaShadowriver": 1307628747, - "Guest_ElephantSpectralGuardian": 1579402208, - "Guest_ZangaZebu": 1218173119, - "Guest_GrumishGreataxe": 486953385, - "PP_GlowFairy_A": 2028856748, - "Guest_RestlessSoldier": 1142701763, - "Guest_WanderingWizard": 209518514, - "Guest_ColonelIvanenko": 399169035, - "Guest_DetollitheDestroyer": 655767295, - "Guest_Jawniak": 1791298433, - "Guest_Tajniak": 356182394, - "Guest_Ygor": 996316081, - "Guest_KyaniteLancer": 2136703656, - "Guest_VestaShadowmark": 1846747836, - "Guest_ZoraSteelwielder": 1186470644, - "Guest_AndorBristleback": 1949884743, - "Guest_GalliumPaladin": 1812340868, - "Guest_GalliumFootman": 1295203112, - "Guest_GalliumShardtrooper": 1210699836, - "Guest_GalliumJuggernaut": 3527584, - "Guest_VladimirDarkflame": 1575322237, - "Guest_KyaniteLieutenant": 561528977, - "Guest_DrusillaMorningbane": 155837810, - "Guest_KyaniteValkyrie": 53242136, - "Transformation_20Q_SherlockBones": 1112674320, - "Guest_DevoraShadowcrown": 1813459117, - "Guest_YoualaNightDrinker": 881289828, - "Guest_Pendragon": 715669945, - "Guest_CelestianRevenant": 515730327, - "Guest_SoullessServant": 1505662730, - "Guest_SpiritServant": 104517373, - "Guest_SoulSerf": 1188214406, - "Guest_ServileSoul": 871844607, - "Guest_SkeletalCorsair": 239414410, - "Guest_RottedFodder": 1301186193, - "Guest_ScarletScreecher": 600457915, - "PP_FrankBunnyBride_A": 974707030, - "Guest_BastillaGravewynd": 2100015237, - "Guest_VilaraMoonwraith": 2067986693, - "Guest_YngvarSharptooth": 1783361972, - "Guest_TroubledWarrior": 1569033392, - "Guest_VeggieRevanant2": 928503904, - "Guest_VeggieRevanant3": 928503888, - "Guest_VeggieRevanant4": 928503872, - "Guest_VeggieRevanant5": 928503856, - "Guest_AncientQhatWarrior": 1564521104, - "Guest_EmperorPaleolo": 2079384347, - "Guest_SpiritofIntolerance": 1627658048, - "Guest_SpiritofInquiry": 1320544891, - "Guest_FirstGuardian": 1982227776, - "Guest_FallenMerc": 225926286, - "Guest_NightShadow2": 1638183490, - "Guest_NightShadow3": 1636086338, - "Guest_NightShadow2-2": 1436856907, - "Guest_NightShadow3-2": 1434759755, - "Guest_NightShadow4-2": 1432662603, - "Guest_NightShadow5-2": 1430565451, - "Guest_NightShadow6-2": 1428468299, - "Guest_NightShadow7-2": 1426371147, - "Guest_FirstScythe": 738854032, - "Guest_GreyMantisCaptain": 860186057, - "Guest_GreyMantisHunter": 1239274377, - "Guest_Atlach-Leng": 836136649, - "Guest_PetrovGloomstrider": 2045783873, - "Guest_NauyotolDownIntheHole": 1134251106, - "Guest_SandorSpearcaller": 1351072377, - "Guest_MavraFlamewing": 1477685600, - "Guest_Scaldling": 208751819, - "Guest_WoebegoneWraith": 1166488705, - "Guest_BorisBlackrock": 1365399915, - "Guest_KatiaFirewinter": 521255834, - "Guest_ValerikBrightsword": 1244055782, - "Guest_RurikFlamesoul": 1962726850, - "Guest_IonaPyrelance": 722266491, - "Guest_DarkPoltergeist": 818162178, - "Guest_TheCollector": 1772287612, - "Guest_ViktorSnowcrusher": 1028387381, - "Guest_ValeskaRedwind": 19316351, - "Guest_ScarrikGallowgaunt": 105397333, - "Guest_Neberyx": 1453883041, - "Guest_AsrikWidebelt": 401936422, - "Guest_GothricHonorbound": 750072340, - "Guest_HalfangBristlecrown": 618779562, - "Guest_OsvudFleetpaw": 1023466459, - "PP_PufferFish_A": 1578606029, - "Guest_OzelUnderwaterCat": 1033669302, - "PP_BabyGreenMan_A": 910025246, - "PP_SchoolTurtle_A": 1012620678, - "PP_DarkBalloon_A": 1229308566, - "MT_JetsamCopter": 92127678, - "Mount_4P_DarkClownCar": 420246262, - "MNT_BalloonsBunch": 2000358474, - "Guest_TempleGuardian": 632574316, - "Guest_TemplePhantom": 1701097840, - "Guest_MahonStarsearcher": 1549093341, - "Guest_LostKnight": 858980994, - "Guest_AnguishedWoodman": 174606918, - "Guest_TormentedTreant": 294050331, - "Guest_WildfireTreant": 1902129818, - "Guest_BlightedYaxche": 679097088, - "Guest_Junglethorn": 1734561424, - "Guest_Tangleroot": 2027061721, - "Guest_BlightedFreerooter": 1109803061, - "Guest_Winterbranch": 1170787806, - "Guest_DecayingBogwalker": 1338670789, - "Guest_BrownwoodTormentor": 1655181754, - "Guest_Wildroot": 1839747182, - "Guest_Ironsplinter": 668295157, - "Guest_Frostbranch": 75974631, - "Guest_KyoukonteiTreant": 474446232, - "Guest_BrokenStumps": 414724364, - "Guest_WordlessWoodsmen": 1813881830, - "Guest_DesiccatedTreebeard": 1826942903, - "Guest_ShadowoftheLand": 1612385317, - "Guest_TreeRoot": 1406633546, - "Guest_BefouledWoodwalker": 1517919498, - "Guest_ConfusedForestWarrior": 750805985, - "Guest_CrazedForestSpirit": 1007960507, - "Guest_Oakheart": 1158293719, - "Guest_SnowTreant": 1028620035, - "Guest_Snowbeard": 1997921701, - "Guest_BarkskinTreant": 2143957812, - "Guest_RazorleafTreant": 2133159197, - "Guest_CarrionFlowerMan": 1120698936, - "Guest_Kurokage": 355651925, - "Guest_LacombeStrawHouse": 568809873, - "Guest_BerkshireStickHouse": 1932133405, - "Guest_TamworthBrickHouse": 894027634, - "Guest_RustyTinderSpark": 1237916230, - "Guest_CoraWinterBranch": 1901918989, - "Guest_GrambleGoldRook": 1986988546, - "Guest_PiperStormTree": 1109520133, - "Guest_Hanadzura": 124838500, - "Guest_Kuchisaki": 2084188681, - "Guest_Kaizoku": 807430784, - "Guest_JaxonLastRites": 1653711119, - "Guest_SeijunKiller": 657647155, - "Guest_ZarichiTarakata": 1129212566, - "Guest_BladelessRonin": 1577395797, - "Guest_SanzokuOutlaw": 1682888807, - "Guest_SanzokuBandit": 1766198653, - "Guest_KakedaPainbringer": 1260119278, - "Guest_KakedaStalker": 367458449, - "Guest_KakedaShadow": 1604499626, - "Guest_KakedaSoulcrusher": 1961168112, - "Guest_ImitsuPlaguemaster": 1361539025, - "Guest_ImitsuDefouler": 1299791045, - "Guest_ImitsuPunisher": 234819300, - "Guest_StudentofKhai": 249757647, - "Guest_OtomoBattlemage": 918160114, - "Guest_OtomoCourier": 1373253378, - "Guest_OtomoSupplyRunner": 1580070577, - "Guest_OtomoScout": 1814051082, - "Guest_OtomoWrestler": 1053571230, - "Guest_OtomoFury": 111319603, - "Guest_Hyottoko": 307080225, - "Guest_Usunoki": 1881339626, - "Guest_Kagemoosha": 1842766119, - "Guest_UdoJin-e": 850816224, - "Guest_TakedaKanryu": 536087422, - "Guest_Tamauji": 818613882, - "Guest_Jikiru": 794167355, - "Guest_Nomoonaga": 849534658, - "Guest_Aiuchi": 515942855, - "Guest_Kurogaso": 1426248002, - "Guest_Ideyoshi": 1814038213, - "Guest_Koto": 1151260427, - "Guest_Usegi": 977549586, - "Guest_Kanago": 1644367227, - "Guest_Kyuto": 1168225979, - "Guest_Haru": 2070048389, - "Guest_Ashikata": 1523446928, - "Guest_Katsumori": 1823914597, - "Guest_Hingen": 1567896261, - "Guest_Yakedo": 502298497, - "Guest_Do-Daga": 1239945714, - "Guest_Maito": 979260804, - "Guest_TonkatsuThug": 1758658397, - "Guest_GobbloreanGuard": 1286210991, - "Guest_BabblingMeints": 413418139, - "Guest_PrinceGobblestone": 1813171676, - "Guest_GobblerMuncher": 1517159487, - "Guest_GobblerGorger": 130736772, - "Guest_GobblerScouter": 1509427587, - "Guest_GobblerGlutton": 1912199781, - "Guest_GobblerScavenger": 136586791, - "Guest_BaronGreebly": 1028182200, - "Guest_BaronRotunda": 457132907, - "PP_DeathMimic": 1811942047, - "Guest_GreenMan": 1126663802, - "Guest_ForestGrump": 1602350320, - "Guest_ErvintheBarbarian": 1671762776, - "Guest_RazortuskWarrior": 1109994549, - "Guest_RazortuskBrawler": 732265321, - "Guest_SplithoofRager": 1922134329, - "Guest_TuskedRaider": 1920114147, - "Guest_SviniBeserker": 1146317608, - "Guest_SviniReaver": 216717251, - "Guest_Shattertusk": 1191456730, - "Guest_SplithoofBarbarian": 296671728, - "Guest_Bloodseeker": 2086598239, - "Guest_Scarsnout": 1831766077, - "Guest_MasterTonkatsu": 1783298894, - "Guest_Grisletusk": 657393295, - "Guest_SplithoofBloodguard": 488382274, - "Guest_BristlehideRaider": 237078958, - "Guest_Gullin": 1656401882, - "Guest_ForestNymph": 812055814, - "Guest_SassafrasMan": 1327049788, - "Guest_RandolfSpellshine": 108808620, - "Guest_BleysFlamerender": 434070106, - "Transformation_Khan": 1398327634, - "Transformation_TheBat": 1675113521, - "MNT_DireWolf": 845578449, - "MNT_YuleMule": 1976182058, - "MNT_LightBlades": 829118450, - "MNT_FlyingSquid": 1573132252, - "PP_Globulin": 467801224, - "PP_BeastBaby": 1807874692, - "PP_SaniBot": 670845902, - "Mount_SwarmSand": 1277669407, - "Guest_Nodnarb": 211478288, - "Guest_LordBramble": 1118781162, - "Guest_Yogash": 506264561, - "Guest_Marcio": 499428996, - "Guest_Procyon": 1115376865, - "Guest_Thunderfin": 2029218563, - "Guest_ArkynMoonblade": 1152775206, - "Guest_CreeCurdWright": 1714953095, - "Guest_DeerMouseRevenant": 315064435, - "Guest_ElanaDarksun": 837982094, - "Guest_KingAlricFateSailor": 1934591130, - "Guest_LaughingCalaca": 984492527, - "Guest_WraithKnight": 620484548, - "Guest_FieryEchoofApep": 484636593, - "Guest_FrostyEchoofApep": 171933154, - "Guest_FalseEchoofApep": 479387377, - "Guest_ChargedEchoofApep": 1229406800, - "Guest_ShrowdengersQhat": 101563303, - "Guest_Scrollkeeper": 643219293, - "Guest_TerrorHound": 753341570, - "Guest_CondemnedMander": 445370758, - "Mnt_SnowStorm": 1491572670, - "Mount_ChimneySweeper": 378571534, - "MNT_PineappleCandyCane": 1630795796, - "Guest_TyphonDustwind": 740849673, - "MNT_StickHorse": 216654744, - "MimicTemplate": 1461219184, - "MNT_Ball_N_Chain": 289720920, - "PP_PeaceDove_A": 1785119671, - "Mount_Gyrocycle": 1495008048, - "PP_BattleMageDragon_A": 1864696711, - "MNT_BattleBeast": 1304449286, - "MNT_SmokeTrails": 387873030, - "Mount_FriendshipHare": 677127330, - "MNT_ButterflySwarm": 383602683, - "PP_EggChick_B": 1959154042, - "MNT_Unicorn": 562210585, - "PP_StuffedUnicorn": 1731641773, - "MNT_ParadeTruck": 2026348978, - "MNT_ParadeTruckXmas": 1017864627, - "MNT_AutumnLeafSwarm": 1540002279, - "PP_GingerbreadMan": 1796172229, - "PP_DecadeDragon": 1819398630, - "MNT_StageShip": 829852992, - "PP_DramaLlama": 255896529, - "PP_HallMinotaur_A": 1492017563, - "Guest_MacDeath": 1526226705, - "Guest_MacDeathUnderstudy": 1731752647, - "Guest_MacLifeUnderstudy": 257466641, - "Guest_MacStormUnderstudy": 8295117, - "MNT_Pantera": 1135198, - "MNT_StagLight": 1908778048, - "MNT_GiantSpider": 1247185021, - "MNT_StagEvil": 872303931, - "PP_BaskHound": 1093866594, - "PP_Marionette": 1688299938, - "PP_Marionette_B": 1688297824, - "Guest_Izft": 996301405, - "Guest_SapotisMinion": 1625665891, - "Guest_CrazedSlave": 1473233468, - "Guest_CharmedSlave": 803043667, - "Guest_EnsorcelledSlave": 40920285, - "Guest_HallServant": 2038116460, - "Guest_SiathePerceiver": 1235571913, - "Guest_Kiwu": 1151177787, - "Guest_NightImp": 1051843424, - "Guest_EvilTrickster": 1035477123, - "Guest_DeepWoodsImp": 1502444054, - "Guest_ForestPest": 802235713, - "Guest_TaintedForestImp": 1030343985, - "Guest_Youkai": 518367729, - "Guest_CarthaginianElephantWarrior": 776293919, - "Guest_IdrisBeast-Taker": 106759521, - "Guest_MikaSkarka": 237956516, - "Guest_Belloq": 757247833, - "Guest_GurtokPiercer": 549466122, - "Guest_GurtokFirebender": 817966523, - "Guest_GurtokDemon": 544070162, - "Guest_GeneralFiretusk": 2073037770, - "Guest_GurtokBarrierDemon": 44657563, - "Guest_BlacktuskShaman": 1009070925, - "Guest_FireDemon": 158367196, - "Guest_DeathOni": 1916642000, - "Guest_JadeOni": 1289517185, - "Guest_PlagueOni": 1464586443, - "Guest_WarOni": 1630196094, - "Guest_BrokenLandMammoth": 1587008312, - "Guest_SunderedSeamMammoth": 1272698721, - "Guest_BullyMammoth": 170705927, - "Guest_Bullhemoth": 146998717, - "Guest_Kogasha": 1909654543, - "Guest_MusuthBerserker": 1741298129, - "Guest_BlackTuskCultist": 1771575961, - "Guest_AksilBlacktrunk": 1253596409, - "Guest_LongdreamerShaman": 1521283133, - "Guest_MuratGreyeyes": 1296814314, - "Guest_ElephantSoldier": 1443670145, - "Guest_DarajaniGuard": 1597288495, - "Guest_Loremaster": 1792470809, - "Guest_Pork": 2069999347, - "Guest_Beans": 97706585, - "MNT_Ox": 1292937747, - "PP_PropellerSquirrel": 1657443894, - "Guest_RasikPridefall": 97921485, - "Guest_AmedrasLightstep": 1818417025, - "MNT_SmokeTrails_Balance": 1358150715, - "MNT_SmokeTrails_Fire": 702971609, - "MNT_SmokeTrails_Ice": 190218501, - "MNT_SmokeTrails_Life": 2045542105, - "MNT_SmokeTrails_Myth": 1276281121, - "MNT_SmokeTrails_Storm": 564954622, - "Guest_Bellosh": 1407013027, - "Guest_AcampiReedfist": 2076527733, - "Guest_AgnettaBroadblade": 14864960, - "Guest_FrostheartRaider": 1574787221, - "Guest_JordaSwordbearer": 1627071850, - "Guest_KasaiBaku": 1153107369, - "Guest_ZoraimeiHelephant": 1002482606, - "Guest_ConscriptedMander": 43811125, - "Firecat_Decade": 409516955, - "MNT_BatGlider": 2086258491, - "Transformation_PlayerHomework": 673389670, - "Transformation_PlayerAttendance": 422287307, - "Transformation_PlayerLecture": 2035625874, - "Transformation_PlayerPopQuiz": 483367038, - "MNT_GingerbreadHorse": 1369242781, - "MNT_NimbariChariot": 1251740392, - "PP_NimbariDog": 1235126828, - "Transformation_PlayerGrandma": 1128332272, - "Transformation_PlayerScionA": 33862367, - "PP_Mushroom": 1568942158, - "MNT_Scooter": 1148167046, - "MNT_Scooter_B": 2079302532, - "MNT_Scooter_C": 1810867076, - "MNT_Scooter_D": 468689796, - "MNT_IceCycle": 415797788, - "Transformation_PlayerScionA02": 33921759, - "Guest_FearoftheFuture": 947210229, - "Guest_FearofGremlins": 405857384, - "Guest_RootGuardian": 922940845, - "Guest_VineThrasher": 172546427, - "Guest_BlightWalker": 1438155154, - "Guest_BriarScourge": 615681851, - "Guest_DreamJabberwock": 907754098, - "Guest_DreamBelloq": 990352002, - "Guest_Voltergeist": 1558128068, - "Guest_SpecialBranch": 1927849418, - "Guest_MutantBriar": 805892802, - "Guest_FeralBriar": 883790223, - "Guest_MaizeMonster": 688905764, - "Guest_DreamShadowwock": 1432458248, - "Mount_Heartboard": 1421972759, - "PP_ChocoBunny": 324797859, - "Mount-PogoFlower": 906659501, - "MNT_AethyrCloud": 1586061078, - "MNT_Fangle": 7846854, - "Guest_StarfallSpider": 1177620831, - "Guest_AshSpider": 1588502553, - "Guest_CorruptedWeaver": 38937211, - "Guest_CrystalCrawler": 1197980149, - "Guest_ShimmerWidow": 1300740128, - "Guest_FacetedSpikespinner": 1939719331, - "Guest_CrystallineQueen": 1999282256, - "Guest_AncientCrystalweaver": 1409608801, - "Guest_FangtoothLavaspinner": 1538042104, - "Guest_VenomousHeatseeker": 1234682482, - "Guest_FireweaveRockbiter": 300743778, - "Guest_MonkeySpider": 754090007, - "Guest_CryptSpider": 1545405304, - "Guest_CommonHouseSpider": 613486002, - "Guest_ArachnaMagnaMagus": 825817937, - "Guest_ArachnaSoldier": 270978709, - "Guest_Gnissa": 1699826178, - "Guest_WebwoodScuttler": 1728611075, - "Guest_SandSpider": 61789007, - "Guest_WebwoodCreeper": 1013382584, - "Guest_Skathi": 1631429165, - "Guest_ArchmagusLorcan": 321146960, - "Guest_CrawleroftheMist": 2076696304, - "Guest_PaintedSpider": 1482115552, - "Guest_GiantSpider": 1545526191, - "Guest_CaveCrawler": 2101587667, - "Guest_RattleCatcher": 1472707326, - "Guest_TrapdoorSpider": 1321643694, - "Guest_RockClinger": 1304266411, - "Guest_InquisitorXimenez": 1053483090, - "Guest_ElderMagus": 1017836836, - "Guest_WardenBenthamic": 18807199, - "Guest_SpiderArchmagus": 387645558, - "Guest_SpiderAdept": 2094873407, - "Guest_InterrogatorRentenius": 1245984179, - "Guest_WarpedWeaver": 495882677, - "Guest_ArachnaSkinner": 281864085, - "Guest_SkinnerConscript": 2028526453, - "Guest_ArachnaGladiator": 2492046, - "Guest_LorcanInitiate": 353311753, - "Guest_Serket": 1871335773, - "Guest_IceWeaver": 2063216026, - "Guest_SpiritSpinner": 525666327, - "Guest_MysteriousCrawler": 218352756, - "Guest_BlackWidow": 1909331619, - "Guest_BrownRecluse": 1146386275, - "Guest_Creeper": 1197442790, - "Guest_GearSpinner": 67020478, - "Guest_Clinker": 1194519062, - "Guest_Clanker": 1194517014, - "Guest_GrandfatherSpider": 1330981335, - "Guest_Spiderling": 1400274461, - "Guest_ManekiWebWalker": 888348786, - "Guest_KoganiDeathCrawler": 276010604, - "Guest_CheliceranCrawler": 1169176517, - "Guest_ArachniteCreeper": 1850534774, - "Guest_ChelicaranStalker": 2057291848, - "Guest_HornedMonkeySpider": 1301514577, - "Guest_GreyOgreSpider": 1533774471, - "Guest_StarburstSpider": 698029451, - "Guest_PaintedCaveMonster": 601315479, - "Guest_RubbleRouser": 220785666, - "Guest_EarthElemental": 435260049, - "Guest_SharpshardWarrior": 1403237237, - "Guest_Firevein": 1220046430, - "Guest_Blackblade": 458130537, - "Guest_VengefulFireheart": 563205004, - "Guest_FirerockStomper": 608552855, - "Guest_BlackrockGuardian": 1663799582, - "Guest_ConfusedSentry": 24655510, - "Guest_SilverSentinel": 1090673683, - "Guest_SilverServant": 84560693, - "Guest_GiantHomunculus": 456098557, - "Guest_PropertyMaster": 229101764, - "Guest_VaultProtector": 185568207, - "Guest_PlatedDefender": 79324363, - "Guest_Avalanche": 761613547, - "Guest_RockReaver": 919912933, - "Guest_Frostmantle": 856308090, - "Guest_GlacierWalker": 131215932, - "Guest_SandBehemoth": 272513357, - "Guest_RunedAnnihilator": 121339936, - "Guest_RunedDevestator": 1611071181, - "Guest_RunedGuardian": 1986312667, - "Guest_CanyonRager": 1123038266, - "Guest_RubbleReaver": 220774678, - "Guest_Boulderbone": 122279242, - "Guest_Nali": 77467516, - "Guest_Gnar": 1151164930, - "Guest_GlacialAvenger": 1181253632, - "Guest_SokkwiKeymaster": 190919624, - "Guest_SandsofTime": 34920273, - "Guest_BladeGolem": 435561523, - "Guest_FrostColossus": 1564686403, - "Guest_IceColossus": 335477257, - "Guest_PollutedEarthWalker": 86045387, - "Guest_CorruptedEarthSpirit": 1135891559, - "Guest_Stonebreaker": 1317905436, - "Guest_StoneElemental": 1715022018, - "Guest_VolcanisGolem": 1904918929, - "Guest_WaterElemental": 1717850987, - "Guest_AshenDeathMonkeySpider": 35356665, - "Guest_DeathMonkeySpider": 1525508507, - "Guest_MotherMonkeySpider": 110317392, - "Guest_DoomMonkey": 1135105500, - "Guest_DreamMorganthe": 907599965, - "Guest_DragonBeetle": 1974635734, - "Guest_SandWalker": 1530843985, - "MNT_PandaMama": 916371162, - "PP_BabyPandas": 778536285, - "PP_FrogPrince": 729975205, - "MNT_PumpkinCarriage": 183672737, - "Mount_Gobbler_B": 1193388729, - "PP_Hamster": 1578040708, - "Guest_Steeleton": 657429968, - "Guest_GoldenWyrm": 311022393, - "MNT_Roc": 1564431869, - "PP_BabyGriffin": 1913686406, - "Transformation_ShadowDPSMob": 936133896, - "Transformation_ShadowTankMob": 305660992, - "Transformation_ShadowHealMob": 356596800, - "Guest_SpiritofIgnorance": 1577360126, - "Guest_FecklessSoul": 519648315, - "Guest_BurnedOutSoul": 312181646, - "Guest_BenightedRevenant": 2131956962, - "Guest_TombLurker": 1901203489, - "Guest_DesertGolem": 543642682, - "Guest_KumoOni": 215822625, - "Guest_SpellwritStalker": 161772776, - "PP_Sun": 1723237840, - "Guest_Leadite": 4480416, - "Mount_FestiveFox": 2125832348, - "PP_FenrisWolf": 1601784680, - "PP_SchoolPiggle": 109782407, - "PP_FenrisWolf_Red": 1597992854, - "PP_FenrisWolf_Teal": 1455058454, - "PP_FenrisWolf_White": 1102186199, - "Transformation_NinjaPig_Fire": 984575055, - "Transformation_BG_RatThief_Myth": 1191155131, - "Transformation_BG_RatThief_Storm": 675891897, - "MNT_Umbrella": 955683437, - "Transformation_BG_Elf_Ice": 1209681129, - "Transformation_BG_Fairy_DarkMinion_Balance": 33521202, - "Transformation_BG_Cyclops_Death": 876023972, - "Transformation_BG_Minotuar_Fire": 1118476387, - "Transformation_BG_WolfWarrior_Storm": 2075594475, - "Transformation_BG_WolfWarrior_Balance": 746159992, - "Transformation_BG_Draconian_Myth": 903606820, - "Transformation_BG_Draconian_Life": 1501291044, - "Transformation_BG_Colossus_Life": 1320377666, - "MNT_DolphinChariot": 102982520, - "MNT_EvilWagon": 685457563, - "MNT_FlyingDutchman": 1176206544, - "PP_SeaHorse": 2024322494, - "PP_EvilTeddy": 1159020925, - "PP_ZombieParrot": 384805107, - "Transformation_BG_Ice_Colossus": 299613211, - "MNT_CarrierBat": 7323333, - "Transformation_BG_Minotaur_MythTempalte": 430330904, - "PP_FeatheredTabby": 452526748, - "Transformation_Detritus01": 1335763402, - "Guest_Metallossus": 335457082, - "MNT_SantaJaws": 464410203, - "MNT_BattleBadger": 532858222, - "Transformation_Shedder01": 2069145892, - "PP_NatureSpirit": 373176286, - "Transformation_Devourer01": 1004421540, - "Guest_TheDevourer": 1591187996, - "Guest_Treeminder": 1093207850, - "Guest_RenegadeDruid": 2087982292, - "Guest_FractalTreeminder": 927174548, - "Guest_UnsettledTreeminder": 486164163, - "Guest_DragonspyreCrusader": 247317280, - "Guest_YoungGreggor": 66068670, - "Guest_GeneralGreyflame": 499924835, - "Guest_OldGreggor": 391726170, - "Guest_PrinceViggor": 853556298, - "Guest_DragonspyreVanguard": 693851565, - "Guest_SilasConviction": 177362659, - "Guest_SilasWeariness": 893431021, - "Guest_SilasRage": 1288904439, - "Guest_SilasDoubt": 1479426285, - "Guest_Lorekeeper": 147779344, - "Guest_FelixPhotomongerIII": 68387506, - "Guest_WarHavox": 1634324022, - "Guest_Mis-assembledSkeleton": 221832082, - "Guest_TreeminderGhost": 200408510, - "Guest_ViggorsDrake": 340449521, - "Guest_BlueNinjaPig": 938539327, - "Guest_RedNinjaPig": 2097962021, - "Guest_OrangeNinjaPig": 625058258, - "Guest_PurpleNinjaPig": 445746449, - "Guest_RitualColossus": 844563319, - "Guest_TinyDragon": 1123127688, - "Guest_RitualSpider": 429827552, - "Guest_RitualDraconian": 837510372, - "Guest_CC_Druid_Warrior_C_01": 55314616, - "Guest_CC_Druid_Wizard_A_01": 1046261169, - "Guest_CC_Druid_Wizard_B_01": 1046244785, - "Guest_CC_Druid_Warrior_A_01": 56363192, - "MNT_Toboggan": 995356805, - "MNT_2P_WickerTreant-001": 2065440944, - "PP_Ratatoskr": 1003497600, - "PP_Trash": 1195047012, - "Guest_CC_Druid_Wizard_D_01": 1046343089, - "MNT_Sunflower": 721091531, - "MNT_Whoopee": 1383311238, - "MNT_Warthog": 8060761, - "PP_ShamRock": 943893325, - "PP_LeapingLeprechaun": 132882517, - "PP_LionCubs": 465759803, - "PP_Tanuki": 670387843, - "MNT_Crane": 433122675, - "MNT_Krokosphinx": 739938754, - "Transformation_BG_Fairy_Life": 1897480818, - "Transformation_LiceDeepSpawnA": 244795720, - "Piggle_Alien": 1761605655, - "PP_JeweledScarab": 620544607, - "Guest_KR_Nymph_DrkMage_D50": 1248526054, - "Guest_KR_Nymph_DrkMage_C50": 1246953190, - "Guest_KR_Nymph_DrkMage_B50": 1247477478, - "Guest_KR_Nymph_DrkMage_A50": 1245904614, - "Guest_EM_Spider_Ash_01": 185724938, - "UFO": 47349, - "PP_Kit10": 326796620, - "PP_Lumi_Tulip": 84119585, - "PP_Lumi_Fern": 117015078, - "PP_Lumi_Violet": 1468797578, - "PP_Lumi_Sunny": 1769236703, - "PP_Lumi_Daisy": 1743454175, - "MNT_CelestianMech": 1238076872, - "MNT_Brontosaurus": 402157167, - "Guest_HG_AKT_Krok_Cyber_A_Balance_25": 1367985604, - "Guest_HG_AKT_Krok_Cyber_A_Balance_50": 1368084932, - "Guest_HG_AKT_Krok_Cyber_A_Balance_75": 1367988676, - "Guest_HG_AKT_Krok_Cyber_A_Balance_100": 1351303620, - "Guest_HG_AKT_Krok_Cyber_A_Balance_130": 1351270852, - "Guest_HG_AKT_Krok_Cyber_A_Fire_25": 976558490, - "Guest_HG_AKT_Krok_Cyber_A_Fire_50": 37034397, - "Guest_HG_AKT_Krok_Cyber_A_Fire_75": 305469850, - "Guest_HG_AKT_Krok_Cyber_A_Fire_100": 573905821, - "Guest_HG_AKT_Krok_Cyber_A_Fire_130": 573905824, - "Guest_HG_AKT_Krok_Cyber_A_Ice_25": 159411377, - "Guest_HG_AKT_Krok_Cyber_A_Ice_50": 541093041, - "Guest_HG_AKT_Krok_Cyber_A_Ice_75": 146828465, - "Guest_HG_AKT_Krok_Cyber_A_Ice_100": 557870241, - "Guest_HG_AKT_Krok_Cyber_A_Ice_130": 960523425, - "Guest_HG_AKT_Krok_Cyber_A_Myth_25": 976187830, - "Guest_HG_AKT_Krok_Cyber_A_Myth_50": 36663729, - "Guest_HG_AKT_Krok_Cyber_A_Myth_75": 305099190, - "Guest_HG_AKT_Krok_Cyber_A_Myth_100": 573535153, - "Guest_HG_AKT_Krok_Cyber_A_Myth_130": 573535156, - "Guest_CL-GolemButler-R9": 780077559, - "Guest_CL-GolemDigger-Boss-R10": 562020288, - "Guest_CL-GolemDigger-R9": 789375095, - "Guest_CL-GolemDigger-Rank8MythBoss-R10": 930527857, - "Guest_CL-GolemWorker-R9-1": 1072815287, - "Guest_CL-FishbotBrown-R9-1": 2006155417, - "Guest_CL-FishbotBrown-R9-2": 395542681, - "Guest_CL-FishbotGold-Boss-R10": 611881707, - "Guest_CL-FishbotGold-R9": 705414492, - "Guest_CL-FishbotYellow-Boss-R10": 23145662, - "Guest_CL-Protector-Black-Boss-R10-2": 679228793, - "Guest_CL-Protector-Gold-R10": 1909636609, - "Guest_CL-Protector-Gold-R9-1": 1909634804, - "Guest_CL-Protector-Gold-R9-2": 1909634932, - "Guest_CL-Protector-Gold-R9-3": 1909635060, - "Guest_CL-Protector-Gold-R9-4": 1909634164, - "Guest_CL-Protector-Purple-R9-Boss": 1889837072, - "Guest_CL-Protector-Purple-R9": 81760161, - "Guest_CL-Protector-Tan-Boss-R10": 912663188, - "Guest_KR_Golem_Worker": 1784607296, - "Guest_Golem-Brass-R7-1": 718939445, - "Guest_Golem-Clockwork-R7": 1161173708, - "Guest_EM_Robot_Batbot_A_01": 1482867950, - "Guest_EM_Robot_Batbot_B_02": 945947886, - "Guest_EM_Robot_Batbot_B_01": 1482818798, - "Guest_EM_Robot_Batbot_B_03": 409076974, - "Guest_EM_Robot_Batbot_B_04": 127793938, - "Guest_EM_Robot_Batbot_B_05": 664664850, - "Guest_EM_Robot_Drone_A_02": 1215188569, - "Guest_EM_Robot_Drone_A_03": 1231965785, - "Guest_EM_Robot_Drone_A_01": 1265520217, - "Guest_EM_Robot_Drone_A_04": 1315851865, - "Guest_EM_Robot_Drone_A_05": 1332629081, - "Guest_EM_Robot_Drone_A_06": 1282297433, - "Guest_EM_Robot_Drone_A_07": 1299074649, - "Guest_EM_Robot_Drone_A_08": 1114525273, - "Guest_EM_Robot_Drone_A_09": 1131302489, - "Guest_EM_Robot_Drone_A_Boss_01": 1960661151, - "Guest_EM_Robot_Drone_A_Boss_02": 1960530079, - "Guest_EM_Robot_Drone_E_01": 1265518169, - "Guest_EM_Robot_Tank_A_01": 1314796420, - "Guest_EM_Robot_Tank_A_02": 1313223556, - "Guest_EM_Robot_Drone_C_02": 1215187545, - "Guest_EM_Robot_Drone_D_03": 1231963225, - "Guest_EM_Robot_Drone_D_01": 1265517657, - "Guest_EM_Robot_Drone_D_02": 1215186009, - "Guest_EM_Robot_Tank_B_01": 1314796468, - "Guest_EM_Robot_Drone_C_01": 1265519193, - "Guest_G14-BP-Golem_Steel_Boss": 2071105129, - "Guest_G14-BP-Golem_Steel_Puzzle": 715790979, - "Guest_Golem-Brass-Elite-L38": 1163662532, - "Guest_Golem-Brass-Elite-L56": 2057562884, - "Guest_Golem-Brass-MBBoss-L48": 1498830732, - "Guest_Golem-Brass-MBBoss-L71": 1498829576, - "Guest_Golem-Brass-MBBoss-L76": 1498828936, - "Guest_Golem-Clockwork-Elite-L54-Metal": 417151527, - "Guest_Golem-Clockwork-Elite-L37": 1961943722, - "Guest_Golem-Clockwork-Elite-L54": 1950147242, - "Guest_Golem-Clockwork-L28": 1561959116, - "Guest_Golem-Clockwork-MBBoss-L37": 973152783, - "Guest_Golem-Clockwork-MBBoss-L69": 1262559759, - "Guest_Golem-Steel-Elite-L39": 1430496717, - "Guest_Golem-Steel-MBBoss-L40": 1229578887, - "Guest_Golem-Steel-MBBoss-L43": 1229579015, - "Guest_Golem-Steel-MBBoss-L50-1": 1231762051, - "Guest_Golem-Steel-MBBoss-L50": 1229578883, - "Guest_Golem-Steel-MBBoss-LXX": 1229583927, - "Guest_Golem-Wood-Elite-L35": 904360756, - "Guest_Golem-Wood-Elite-L37": 1978102580, - "Guest_Golem-Wood-Elite-L50": 1813548236, - "Guest_Golem-Wood-MBBoss-L63": 1392041724, - "Guest_MB-Gauntlet-Golem-Clockwork": 854649045, - "Guest_Spider-Golem-MBBoss-L67": 253352706, - "Guest_Spider-Golem-MBBoss-L96": 253348994, - "Guest_WC-MAW-GasGolem-Minion": 1511013798, - "Guest_WC-MAW-GasGolemLife-Minion": 1306026584, - "Guest_Golem-Steel-L02": 1027229749, - "Guest_Golem-Clockwork-L01": 1409915596, - "Guest_Gauntlet-01-Golem-Steel-Ghost-R8": 402816318, - "Guest_Golem-Wood-L01": 156976035, - "Guest_HG-Clock-ClockworkSpanner-20": 1523370449, - "Guest_HG-Clock-ClockworkSpanner-40": 1523370455, - "Guest_HG-Clock-ClockworkSpanner-60": 1523370453, - "Guest_HG-Clock-ClockworkSpanner-80": 1523370459, - "Guest_HG-Clock-ClockworkSpanner-100": 1523354068, - "Guest_HG-Clock-ClockworkSpanner-120": 1523354004, - "Guest_AQ-Cyclops-Guard": 191361948, - "Guest_AQ_Cyclops_Guard_A_Boss_01": 114747100, - "Guest_CL-Cyclops-Death-R10": 611013866, - "Guest_Cyclops-Death-Boss-R7": 1192370725, - "Guest_Cyclops-Death-Boss-R9": 1192370717, - "Guest_Cyclops-Death-R7": 144593791, - "Guest_GH-Cyclops-Death-R6": 594236619, - "Guest_Cyclops-BlueHelmet-KTBoss-L03": 1720105277, - "Guest_Cyclops-Red-L12": 1816429840, - "Guest_MR_Cyclops02WHelmet_Model_01": 1483732416, - "Guest_Cyclops-Blue-L02": 1633021234, - "Guest_Cyclops-BlueHelmet-WCBoss-L03": 427378332, - "Guest_Cyclops-RedHelmet-WCBoss-L03": 2021269422, - "Guest_HG_Sinbad_Cyclops_25": 911979034, - "Guest_HG_Sinbad_Cyclops_50": 1856261606, - "Guest_HG_Sinbad_Cyclops_75": 861647386, - "Guest_HG_Sinbad_Cyclops_100": 1789152678, - "Guest_HG_Sinbad_Cyclops_130": 178539942, - "Guest_HG_Sinbad_IronSultan_25": 930031152, - "Guest_HG_Sinbad_IronSultan_50": 930051504, - "Guest_HG_Sinbad_IronSultan_75": 930030768, - "Guest_HG_Sinbad_IronSultan_100": 927954864, - "Guest_HG_Sinbad_IronSultan_130": 927942576, - "MNT_SweetRide": 1643297840, - "PP_FrilledDino": 1395342809, - "PP_Celestian": 95679303, - "PP_Sun_Angry": 1955190071, - "PP_Marshmallow": 1220667954, - "MNT_Umbrella_B": 923364822, - "MNT_Tamer": 1050737194, - "PP_BumbleBee_B": 858653433, - "MNT_PunkFlamingo": 1634690818, - "MNT_2P_WoolyRhino": 1395943031, - "PP_Retriever": 72842604, - "PP_Piggle_Caveman": 181356174, - "PP_DecennialDragon": 1396523337, - "MNT_Tiger_Rainbow": 515535412, - "MNT_CarrierGhosts": 1833039309, - "MNT_Sled": 617654308, - "Transformation_BG_RatThief_Death": 30691641, - "Transformation_BG_Elf_Storm": 44352983, - "Transformation_BG_WolfWarrior_Ice": 986304351, - "MNT_CarriorGhost_B": 1768732109, - "MNT_CarriorGhost_C": 1766634957, - "Transformation_BG_Colossus_Fire": 1318803522, - "Transformation_BG_Krok_Balance": 140952965, - "Guest_KM_Gobbler_Skinny_A_11": 773648065, - "Guest_KM_Robot_Candy_A_01": 480414124, - "Guest_KM_Robot_Candy_A_02": 530745772, - "Guest_KM_Robot_Candy_A_03": 513968556, - "Guest_KM_Robot_Candy_A_04": 430082476, - "Guest_KM_Robot_Candy_A_05": 413305260, - "Guest_KM_Gummy_Bear_A_01": 1940905059, - "Guest_KM_Gummy_Bear_D_01": 1940905011, - "Guest_KM_Gummy_Bear_E_01": 1940904995, - "Guest_KM_Gummy_Bear_A_02": 1941429347, - "Guest_KM_Gummy_Bear_D_02": 1941429299, - "Guest_KM_Gummy_Bear_E_02": 1941429283, - "Guest_KM_Gummy_Bear_B_01": 1940905043, - "Guest_KM_Gummy_Bear_B_02": 1941429331, - "Guest_KM_Gummy_Bear_B_03": 1941953619, - "Guest_KM_Gummy_BearHat_A_01": 853226448, - "Guest_KM_Gummy_BearHat_A_02": 853226460, - "Guest_KM_Gummy_Bunny_A_01": 324805042, - "Guest_KM_Gummy_Bunny_C_01": 324806066, - "Guest_KM_Gummy_Bunny_D_01": 324807602, - "Guest_KM_Gummy_Bunny_E_01": 324807090, - "Guest_KM_Gummy_Bunny_F_01": 324808626, - "Guest_KM_Gummy_BunnyUber_A_01": 525565930, - "Guest_KM_Gummy_Worm_A_01": 231044195, - "Guest_KM_Gummy_Worm_B_01": 231044179, - "Guest_KM_Gummy_Worm_C_01": 231044163, - "Guest_KM_Gummy_Worm_A_02": 232617059, - "Guest_KM_Gummy_Worm_B_02": 232617043, - "Guest_KM_Gummy_Worm_C_02": 232617027, - "Guest_KM_Gummy_Bear_F_01": 1940904979, - "Guest_KM_Gummy_Bear_F_02": 1941429267, - "Guest_KM_Gummy_Bunny_C_02": 274474418, - "Guest_KM_Robot_Candy_A_06": 463636908, - "Guest_KM_Alphoi_DarkF_A_01": 475441543, - "Guest_KM_Gobbler_Skinny_A_01": 773648069, - "Guest_KM_Gobbler_Skinny_A_02": 773648197, - "Guest_KM_Gobbler_Skinny_A_03": 773648325, - "Guest_KM_Gobbler_SkinnyF_A_01": 254411012, - "Guest_KM_Gobbler_Skinny_A_04": 773647429, - "Guest_KM_Gobbler_Skinny_A_05": 773647557, - "Guest_KM_Gobbler_Skinny_A_06": 773647685, - "Guest_KM_Gobbler_SkinnyF_A_02": 254423300, - "Guest_KM_Gobbler_Skinny_A_07": 773647813, - "Guest_KM_Gobbler_Skinny_A_08": 773646917, - "Guest_KM_Gobbler_Skinny_A_09": 773647045, - "Guest_KM_Gobbler_SkinnyF_A_03": 254419204, - "Guest_KM_Gobbler_Fat_A_01": 1440595742, - "Guest_KM_Gobbler_Fruit_B_01": 1236446660, - "Guest_KM_Gobbler_Fruit_A_01": 1235922372, - "Guest_KM_Gobbler_Guard_B_01": 1435667582, - "Guest_KM_Gobbler_Skinny_A_10": 773647937, - "Transformation_PlayerBabyCarrot": 1580787628, - "Transformation_PlayerDeadBeet": 1992261692, - "Transformation_PlayerDisparagus": 373797484, - "Transformation_PlayerSnowPeas": 634199102, - "PP_Snowflake": 2036143125, - "PP_GummyBear_Myth": 117787890, - "PP_GummyBear_Death": 236577760, - "PP_GummyBear_Balance": 2100524337, - "PP_GummyBear_Life": 118020336, - "PP_GummyBear_Fire": 117995748, - "PP_GummyBear_Storm": 247437198, - "PP_GummyBear_Ice": 122536570, - "MNT_SnowOwl": 1578473542, - "Guest_KM_Gummy_Bear_Uber_A_01": 1856208859, - "Guest_KM_Gummy_Bear_Uber_A_02": 1856196571, - "MNT_ChocolateMoose": 567538552, - "MNT_Ram_Candied": 1913603720, - "Guest_KM_Spider_Mage_A_01": 1529720120, - "Guest_KM_Spider_Mage_B_01": 1529719608, - "Guest_KM_Spider_Mage_C_01": 1529719096, - "Guest_KM_Spider_Mage_D_01": 1529718584, - "Guest_KM_Spider_Mage_E_01": 1529718072, - "PP_SpriteDark_Balance": 914900728, - "MNT_Tricycle": 991465753, - "Guest_Tri-Gauntlet-Protector-Gold": 2029952053, - "Guest_Tri-Gauntlet-FishbotGold": 130267882, - "Guest_HG-Clock-Clockworker-20": 281216243, - "Guest_HG-Clock-Clockworker-40": 281217011, - "Guest_HG-Clock-Clockworker-60": 281216755, - "Guest_HG-Clock-Clockworker-80": 281215475, - "Guest_HG-Clock-Clockworker-100": 283313523, - "Guest_HG-Clock-Clockworker-120": 283321715, - "Guest_HG-Clock-Lugs-20": 1452756928, - "Guest_HG-Clock-Lugs-40": 1452756960, - "Guest_HG-Clock-Lugs-60": 1452756992, - "Guest_HG-Clock-Lugs-80": 1452756768, - "Guest_HG-Clock-Lugs-100": 1452494736, - "Guest_HG-Clock-Lugs-120": 1452493712, - "Guest_HG-Clock-Lucia-20": 1041451626, - "Guest_HG-Clock-Lucia-40": 1041450602, - "Guest_HG-Clock-Lucia-60": 1041449578, - "Guest_HG-Clock-Lucia-80": 1041456746, - "Guest_HG-Clock-Lucia-100": 1049840746, - "Guest_HG-Clock-Lucia-120": 1049873514, - "Guest_KM_Gummy_Worm_A_03": 232092771, - "MNT_Scooter_E": 200254340, - "PP_WolfWarrior_Balance": 991302673, - "PP_PetGift": 1816280689, - "PP_RatThief": 1390866051, - "Guest_PL_Titan_Small_A": 2015819364, - "Guest_PL_Titan_Large_B": 699791264, - "Guest_PL_Titan_Medium_A": 326730424, - "PP_Draconian": 1631557208, - "MNT_Pantera_Astral": 106092538, - "PP_YearOx": 105653084, - "PP_WolfWarrior_Ice": 1043644935, - "PP_SpriteDark": 2031730054, - "PP_Brudel": 1355697143, - "MNT_Astronomers": 742732792, - "MNT_CouchPotato": 418050932, - "MNT_Flowerfarthing": 1396771051, - "MNT_Astronomers_Blue": 236532779, - "MNT_Astronomers_Rainbow": 4428274, - "PP_Astronomer": 782095961, - "Guest_KM_Gummy_Bunny_B_01": 324806578, - "Guest_KM_DeadBeets_A_01": 1396016635, - "MNT_GummyBunny": 775900704, - "MNT_GummyBunny_A": 775834080, - "MNT_GummyBunny_B": 775836128, - "MNT_GummyBunny_C": 775838176, - "Transformation_BG_Minotaur_Life": 1445109091, - "MNT_Armadillo": 825635826, - "PP_SootGremlin": 768969093, - "PP_RoadRunner": 2057802060, - "MNT_TinyTrolly": 160881792, - "PP_Frog_B": 1530124761, - "MNT_FjordDragon": 129204340, - "Transformation_BG_NinjaPig_Myth": 422914079, - "PP_CorgiPup": 1638656105, - "MNT_Skateboard": 728018224, - "PP_Krokomummy": 326396577, - "MNT_Vroom": 1736383110, - "MNT_PlayerWings_AtralRaven": 1514774167, - "PP_Blimp": 690882397, - "Guest_GH_WoodenSkeletonKey_Boar_Boss_Grey_01": 678055851, - "Guest_GH_StoneSkeletonKey_Boar_Boss_Grey_01": 571670691, - "Guest_GH_GoldSkeletonKey_Boar_Boss_Grey_01": 961728819, - "MNT_Cloud_Promo_AW_01": 2032670992, - "Guest_EM_Hornet_Burner_A_01": 1881854632, - "Guest_EM_Hornet_Burner_A_02": 1881854636, - "Guest_EM_Hornet_Zapper_A_01": 2058539689, - "Guest_EM_Hornet_Zapper_A_02": 2058539685, - "Guest_EM_Ant_Giant_D_01": 379386121, - "Guest_EM_Ant_Giant_A_02": 1768146677, - "Guest_EM_Ant_Giant_A_01": 1768097525, - "Guest_EM_Ant_Giant_B_01": 379386122, - "Guest_KR_Moth_Priest_G_Achera": 381233569, - "Guest_KR_BeeMonsterF_A": 135146211, - "Guest_KR_BeeMonsterF_A_Weak": 1824123847, - "Guest_KR_Bee_Warrior_A": 1569202664, - "Guest_KR_Bee_Warrior_B": 1569204200, - "Guest_KR_Bee_Warrior_C_BossDrones": 1217189631, - "Guest_KR_Bee_Warrior_D": 1569205224, - "Guest_KR_Bee_Warrior_E": 1569204712, - "Guest_KR_Bee_Warrior_G": 1569205736, - "Guest_KR_Bee_Warrior_G_BossFight": 1055035476, - "Guest_KR_Bee_Warrior_H": 1569207272, - "Guest_KR_Bee_Warrior_I": 1569206760, - "Guest_KR_Bee_Warrior_L": 1569209320, - "Guest_KR_Bee_Warrior_M": 1569208808, - "Guest_KR_DragonBeetle_Monster_A": 1777853782, - "Guest_KR_Hornet_Drone_A": 1161590757, - "Guest_KR_Hornet_Drone_B": 1161607141, - "Guest_KR_Hornet_Drone_C": 1161623525, - "Guest_KR_Hornet_Drone_D": 1161639909, - "Guest_KR_Hornet_Drone_E": 1161656293, - "Guest_KR_Lice_DeepSpawn_A": 761604959, - "Guest_KR_Mantis_HunterF_A": 820917199, - "Guest_KR_Mantis_HunterF_B": 871248847, - "Guest_KR_Mantis_HunterF_C": 854471631, - "Guest_KR_Mantis_HunterF_D": 904803279, - "Guest_KR_Mantis_HunterF_F": 938357711, - "Guest_KR_Mantis_HunterF_F_Driftwood": 2053608437, - "Guest_KR_Mantis_HunterF_G": 921580495, - "Guest_KR_Mantis_HunterF_H": 971912143, - "Guest_KR_Mantis_HunterF_I": 955134927, - "Guest_KR_Mantis_HunterF_I_Zuzka": 935478878, - "Guest_KR_Mantis_HunterF_J": 1005466575, - "Guest_KR_Mantis_HunterF_J_Zelda": 886910558, - "Guest_KR_Mantis_HunterF_K": 988689359, - "Guest_KR_Mantis_HunterF_K_LongShd": 1767574336, - "Guest_KR_Mantis_HunterF_L": 1039021007, - "Guest_KR_Mantis_HunterF_M": 1022243791, - "Guest_KR_Mantis_HunterF_P_Bossfight": 1731428987, - "Guest_KR_Mantis_HunterF_Q": 552481743, - "Guest_KR_Mantis_HunterF_R": 602813391, - "Guest_KR_Mantis_HunterF_S": 586036175, - "Guest_KR_Mantis_HunterF_SecondColumnCpt_A": 1354033994, - "Guest_KR_Mantis_HunterF_T": 636367823, - "Guest_KR_Mantis_HunterF_Tribute": 1946371041, - "Guest_KR_Mantis_HunterF_U": 619590607, - "Guest_KR_Mantis_HunterF_V": 669922255, - "Guest_KR_Mantis_HunterF_W": 653145039, - "Guest_KR_Mantis_HunterF_Y": 686699471, - "Guest_KR_Mantis_HunterF_Z_Officer": 206016474, - "Guest_KR_Mantis_ProphetF_B": 1791139097, - "Guest_KR_Mantis_ProphetF_C": 1254268185, - "Guest_KR_Milipede_Warrior_A": 410726278, - "Guest_KR_Milipede_Warrior_B": 410726282, - "Guest_KR_Milipede_Warrior_C": 410726286, - "Guest_KR_Milipede_Warrior_D": 410726290, - "Guest_KR_Milipede_Warrior_H": 410726306, - "Guest_KR_Milipede_Warrior_J": 410726314, - "Guest_KR_Milipede_Warrior_K": 410726318, - "Guest_KR_Moth_Priest_A": 1421532604, - "Guest_KR_Moth_Priest_B": 1421532092, - "Guest_KR_Moth_Priest_C": 1421531580, - "Guest_KR_Moth_Priest_D": 1421531068, - "Guest_KR_Moth_Priest_D_Drepa": 1483393420, - "Guest_KR_Moth_Priest_E": 1421530556, - "Guest_KR_Moth_Priest_F": 1421530044, - "Guest_KR_Mantis_HunterF_Z": 737031119, - "Guest_KR_Roach_AntLion_A": 1860517987, - "Guest_KR_Roach_AntLion_B_Bossfight": 993284625, - "Guest_KR_Roach_AntLion_C": 1861566563, - "Guest_KR_Roach_Cook_A": 259847495, - "Guest_KR_Roach_Glutton_B": 249524334, - "Guest_KR_Roach_WaterBug_A": 1795473599, - "Guest_KR_Roach_WaterBug_B": 1745141951, - "Guest_MR_Beetle_Scarab_A_01": 1789741503, - "Guest_MR_Beetle_Scarab_A_02": 1789741491, - "Guest_MR_Beetle_Scarab_B_01": 1790265791, - "Guest_ZF-Goliath-R10-Boss-01": 7034074, - "Guest_ZF-Goliath-R10-Boss-02": 7034202, - "Guest_ZF-Goliath-R10-Boss-03": 7034330, - "Guest_ZF-Goliath-R10-Boss": 1603576807, - "Guest_ZF-Goliath-R11-Boss-01": 2140449574, - "Guest_ZF-Goliath-R11-Boss-02": 2140449446, - "Guest_ZF-Goliath-R11-Boss-03": 2140449318, - "Guest_ME1_Ant_Aunt_A": 707251855, - "Guest_ME1_Ant_Aunt_B": 1440231794, - "Guest_CC_Fly_Worker_A_01": 1497784524, - "Guest_CC_Roach_Worker_A_01": 1026321602, - "Guest_CC_Roach_Lieutenant_A_01": 1081690299, - "Guest_CC_Roach_Lieutenant_B_01": 1081690295, - "Guest_CC_Roach_Don_A_01": 547836893, - "Guest_CC_Roach_BBug_A_01": 1021150157, - "Guest_CC_Roach_RoachSteady_A_01": 859409247, - "Guest_Draconian-Caster-Yellow-Boss-R8": 1016221419, - "Guest_Draconian-Zombie-R8-2-1": 1226055265, - "Guest_Draconian-Zombie-R8-2": 1226115297, - "Guest_Draconian-Caster-Green-R7": 2143342719, - "Guest_Draconian-Warrior-Gold-Boss-R8": 1044388248, - "Guest_Draconian-Caster-Gray-R7": 95878769, - "Guest_DS-Boss-MAW": 1676071241, - "Guest_Draconian-Zombie-R8-1": 1226115309, - "Guest_Draconian-Warrior-Purple-Boss-R7": 601813964, - "Guest_Draconian-Caster-Tan-Boss-R7": 1973339532, - "Guest_Draconian-Caster-Blue-R6": 1684210173, - "Guest_Draconian-Caster-Yellow-R8": 2129956646, - "Guest_Draconian-Warrior-Red-R7": 521861944, - "Guest_Draconian-Warrior-Tan-R6": 1726416112, - "Guest_Draconian-Warrior-Purple-R8": 1896270341, - "Guest_Draconian-Caster-Blue-Boss-R7": 401581134, - "Guest_Draconian-Zombie-R8": 384497496, - "Guest_GH2-Draconian-HENCH-R10": 1149202878, - "Guest_GH2-Draconian-BOSS-R10": 2114378473, - "Guest_G14-DM-Draconian_Boss": 490246211, - "Guest_G14-DM-Draconian_Storm": 2035239226, - "Guest_G14-DM-Draconian_Ice": 782200563, - "Guest_G14-DM-Draconian_Malistaire_M": 1904691727, - "Guest_G14-DM-Draconian_Malistaire_S": 1904685583, - "Guest_G14-DM-Draconian_Malistaire_D": 1904700943, - "Guest_G14-DM-Draconian_Malistaire": 1904736751, - "Guest_G14-DM-Draconian_Malistaire_B": 1904702991, - "Guest_G14-DM-Draconian_Malistaire_I": 1904695823, - "Guest_G14-DM-Draconian_Malistaire_L": 1904692751, - "Guest_G14-DM-Draconian_Malistaire_F": 1904698895, - "Guest_Draconian-PW-Gauntlet-Boss": 493080513, - "Guest_CC_Draconian_A_01": 551348115, - "Guest_AZ-Parasaur-Undead-E": 2041242846, - "Guest_AZ-Parasaur-drkPriestF-F": 898239615, - "Guest_EM_Parasaur_DrkPriestF_A_01": 1007099606, - "Guest_EM_Parasaur_DrkPriestF_A_02": 1007099605, - "Guest_AZ-Parasaur-drkPriestF-D": 898501759, - "Guest_AZ-Parasaur-drkPriestF-E": 898370687, - "Guest_AZ-Parasaur-drkPriestF-A": 897846399, - "Guest_AZ-Parasaur-Undead-B": 1716853538, - "Guest_AZ-Parasaur-Undead-A": 106240802, - "Guest_AZ-Parasaur-Undead-G": 967501022, - "Guest_AZ-Parasaur-PriestF-D": 1177445525, - "Guest_AZ-Parasaur-Undead-C": 1179982626, - "Guest_AZ-Parasaur-drkPriestF-C": 897584255, - "Guest_AZ-Parasaur-Undead-SkurkisMinion": 1414766977, - "Guest_AZ-Parasaur-drkPriestF-B": 897715327, - "Guest_AZ-Parasaur-drkPriestF-B-Script": 1414847875, - "Guest_AZ_Parasaur_Priest_A_Boss_01": 890025421, - "Guest_AZ-Parasaur-Undead-D": 1504371934, - "Guest_AZ-Pteranodon-Knight-D": 1127364049, - "Guest_AZ-StoneSkeletonKey-Ixcax-Cursedwing": 699239601, - "Guest_AZ-Pteranodon-Knight-E": 1127363921, - "Guest_AZ-Pteranodon-Knight-F": 1127363793, - "Guest_AZ-Pteranodon-Knight-A-PageEvent": 942589002, - "Guest_AZ-StoneSkeletonKey-Minion-Death": 311645584, - "Guest_AZ-Pteranodon-Knight-A": 1127364433, - "Guest_AZ-Raptor-Wraith-A": 585729247, - "Guest_AZ-Raptor-Undead-D": 893623689, - "Guest_G14-HS-Ifzt": 1914694612, - "Guest_AZ-Raptor-Warrior-A": 855749884, - "Guest_AZ-Raptor-Undead-C": 897293705, - "Guest_AZ-Raptor-Undead-B": 896769417, - "Guest_AZ-Raptor-Undead-F": 894672265, - "Guest_AZ-Raptor-Warrior-F": 872527100, - "Guest_AZ-Raptor-Warrior-H": 973190396, - "Guest_AZ-Tritops-Warrior-I": 1942669769, - "Guest_AZ-Tritops-Undead-H": 1215305911, - "Guest_AZ-Tritops-Undead-E": 1164974263, - "Guest_AZ-Tritops-SpkWarrior-A": 860850257, - "Guest_AZ-Tritops-SpkWarrior-B": 860862545, - "Guest_AZ-Tritops-Undead-F": 1181751479, - "Guest_AZ-Tritops-Warrior-K": 868927945, - "Guest_AZ-Tritops-Undead-G": 1198528695, - "Guest_AZ-Tritops-Mummy-A": 1912444877, - "Guest_AZ-Tritops-Warrior-G": 1278555704, - "Guest_AZ-Tritops-Undead-D": 1148197047, - "Guest_AZ-Tritops-Undead-A": 1097865399, - "Guest_AZ-Tritops-SpkChief-B": 2096319577, - "Guest_AZ-Tritops-Mummy-B": 1910872013, - "Guest_AZ-Tritops-Warrior-H": 1405798857, - "Guest_AZ-Dino-Undead-A": 508678670, - "Guest_AZ-Dino-Undead-B": 508679182, - "Guest_AZ-Dino-Undead-D": 508680206, - "Guest_KR_Dino_Undead_A": 1638800628, - "Guest_KR_Dino_Undead_Minion_A": 892450235, - "MNT_HayRideTruck": 75377404, - "MNT_ShadowSpiderForm": 1439860426, - "Transformation_BG_Draconian_Death": 794598804, - "PP_BabyOrca": 1056061090, - "Transformation_BG_Cyclops_Fire": 638854828, - "Transformation_BG_Fairy_Ice": 874078461, - "PP_SpriteLife": 1824998010, - "PP_Raccoon": 1107326808, - "PP_FireKitten": 593048189, - "MNT_SkeletalDuck": 1306273036, - "PP_VampireSquid": 431023109, - "PP_CottonCandy": 891201813, - "PP_ThreeHeadGoat": 1282096939, - "PP_EyeBot": 260189248, - "MNT_DeathBoat": 1444454568, - "MNT_Lemuria": 908974762, - "MNT_DeathBoat_B": 1444456538, - "MNT_DeathBoat_C": 1444456474, - "MNT_Spooky3": 1667775622, - "MNT_PresentBox": 122082000, - "MNT_Orca": 1726961653, - "Guest_LM_Golem_Steel_A_01": 19551853, - "Guest_LM_Golem_Steel_A_02": 36329069, - "Guest_LM_EyeBot_A_01_Death": 380508535, - "Guest_LM_EyeBot_A_01_Myth": 167840640, - "PP_ThreeHeadGoat_B": 1209286443, - "PP_ThreeHeadGoat_C": 1211383595, - "Guest_KR_Eel_Whirligig_A": 1062268734, - "Guest_KR_Goliath_Behemoth_A": 1231139987, - "Guest_KR_Goliath_Behemoth_C": 1231139995, - "Guest_KR_Goliath_Behemoth_D": 1231139975, - "Guest_KR_Goliath_Behemoth_E": 1231139971, - "Guest_KR_Goliath_Behemoth_H": 1231140023, - "Guest_KR_Goliath_Crusher_C": 1651720060, - "Guest_KR_Goliath_Crusher_D": 2106376324, - "Guest_KR_Goliath_Crusher_F": 1032634500, - "Guest_KR_Goliath_Crusher_G": 495763588, - "Guest_KR_Goliath_Crusher_K": 1651720059, - "Guest_AZ-Goliath-Crusher-A": 1874784966, - "Guest_AZ-Goliath-Crusher-B": 264172230, - "Guest_AZ-Goliath-Crusher-C": 801043142, - "Guest_AZ-Goliath-Crusher-D": 809569594, - "Guest_AZ-Goliath-Crusher-E": 272698682, - "Guest_HG_AKT_Butterfly_Time_A_25": 1788523059, - "Guest_HG_AKT_Butterfly_Time_A_50": 1130017331, - "Guest_HG_AKT_Butterfly_Time_A_75": 1809494579, - "Guest_HG_AKT_Butterfly_Time_A_100": 1113240099, - "Guest_HG_AKT_Butterfly_Time_A_130": 1515893283, - "MNT_DeathBoat_D": 1444456922, - "Guest_KR_RhinoBeetle_Sun_A_Bossfight": 47895417, - "Guest_KR_RhinoBeetle_Star_A": 1947510103, - "Guest_KR_RhinoBeetle_Moon_A": 1751275863, - "Guest_ME1_Clockwork_Marine_A": 1481452452, - "Guest_ME1_Clockwork_Marine_B": 1481452068, - "Guest_CC_GoldSkeletonKey_Lice_DeepSpawn_B": 1306132994, - "Guest_KR_DamdinBazar_A_Bossfight": 1333596311, - "Guest_DS-Minion-MAW2": 356796677, - "Guest_KH-Wyrmling-1": 116330513, - "Guest_KH-Wyrmling-20": 183439385, - "Guest_KH-Wyrmling-40": 317657113, - "Guest_KH-Wyrmling-60": 451874841, - "Guest_KH-Wyrmling-80": 586092569, - "Guest_PL_Polar_Bear_Solider_C": 1785662565, - "Guest_Skeleton-Silver-WCBoss-L01": 17766963, - "Guest_Banshee-Red-Elite-L24_B": 1902069117, - "Transformation_BG_WolfWarrior_Myth": 339098032, - "Transformation_BG_RatThief_Balance": 881728218, - "Transformation_BG_Colossus_Storm": 593527492, - "Transformation_BG_Elf_Life": 347405087, - "Transformation_BG_Minotaur_Ice": 1197752291, - "MNT_TRex_B": 660285500, - "PP_SpriteDark_Ice": 2036248504, - "MNT_RollingBall": 1658139390, - "Guest_LM_TRex_Base_A_03": 1378630657, - "Guest_LM_TRex_Base_A_04": 1378745345, - "Guest_LM_TRex_Base_A_05": 1378728961, - "Guest_LM_TRex_Base_A_01": 1378663425, - "Guest_LM_TRex_Base_A_02": 1378647041, - "Guest_LM_TRex_Cyborg_A_01": 151609741, - "Guest_LM_TRex_Cyborg_A_02": 168386957, - "Guest_LM_TRex_Cyborg_A_03": 185164173, - "Guest_LM_TRex_Cyborg_B_01": 151611277, - "Guest_LM_TRex_Cyborg_D_01": 151612301, - "Guest_LM_TRex_Cyborg_E_01": 151611789, - "Guest_LM_TRex_Cyborg_C_01": 151610765, - "Guest_LM_Draconian_Base_A_01": 1607373112, - "Guest_LM_EyeBot_B_01": 1085543056, - "Guest_LM_Drone_Eye_C_01": 916954037, - "Guest_LM_Drone_Eye_D_01": 1230529608, - "Guest_LM_Drone_Eye_D_02": 1230545992, - "Guest_LM_Drone_Eye_D_04": 1230578760, - "Guest_LM_Drone_Eye_D_03": 1230562376, - "Guest_LM_Drone_Eye_A_01": 916954038, - "Guest_LM_Drone_Eye_A_02": 916937654, - "Guest_LM_Drone_Eye_B_01": 1230529611, - "Guest_LM_Drone_Eye_D_05": 1230595144, - "Guest_LM_Drone_Eye_D_07": 1230627912, - "Guest_LM_Drone_Eye_D_08": 1230644296, - "Guest_LM_Drone_Eye_A_03": 916921270, - "Guest_LM_Drone_Eye_A_04": 916904886, - "Guest_LM_Drone_Eye_C_02": 916937653, - "Guest_LM_EyeBot_B_02": 1061940593, - "Guest_LM_EyeBot_B_03": 1085543055, - "Guest_LM_EyeBot_B_04": 1061940594, - "Guest_LM_Drone_Eye_C_03": 916921269, - "Guest_LM_Robot_Kit10_A_01": 199936400, - "Guest_LM_Colossus_Mander_A_01": 2107529026, - "Guest_LM_Robot_Future_A_01": 998840846, - "Guest_LM_Robot_FutureBIG_A_01": 340408568, - "Guest_LM_Robot_FutureBIG_A_02": 340396280, - "Guest_LM_Robot_FutureBIG_A_03": 340400376, - "Guest_LM_Robot_OldOne_A_01": 779070973, - "Guest_LM_Robot_OldOne_A_02": 1315941885, - "Guest_LM_Millipede_Centi_A_01": 168575797, - "Guest_LM_Millipede_Centi_A_03": 168583989, - "Guest_LM_Millipede_Centi_A_02": 168588085, - "Guest_LM_Millipede_Centi_A_04": 168563509, - "Guest_LM_Moth_Sorcerer_A_01": 228191136, - "Guest_LM_Boar_Barbarian_A_01": 1238634912, - "Guest_LM_Boar_Barbarian_A_02": 1238634528, - "Guest_LM_Boar_Barbarian_A_03": 1238634656, - "Guest_LM_Boar_Barbarian_A_04": 1238635296, - "Guest_LM_Boar_Barbarian_A_05": 1238635424, - "Guest_LM_Boar_Chief_A_01": 357051311, - "Guest_LM_Fungus_Humango_A_01": 1398460044, - "Guest_LM_Fungus_Humango_A_02": 1398460172, - "Guest_LM_Treant_Base_A_01": 1658172241, - "Guest_LM_GiantTree_EvilRoots_A_01": 282225934, - "Guest_LM_PA_GreenMan_A_01": 67705044, - "Guest_LM_Fungus_Humango_B_01": 1348128396, - "Guest_LM_Fungus_Humango_A_03": 1398460300, - "Guest_LM_Fungus_Man_C_01": 1648824156, - "Guest_LM_Fungus_Man_C_02": 1650397020, - "Guest_LM_Rhino_Zombie_A_01": 248513993, - "Guest_LM_Malughast_Base_01": 883820436, - "Guest_LM_Malughast_Base_02": 1420691348, - "Guest_LM_Lemur_HierarchF_H_04": 231562115, - "Guest_LM_Malughast_Base_03": 1957562260, - "Guest_LM_Malughast_Base_05": 1263663212, - "Guest_LM_Malughast_Base_06": 726792300, - "Guest_LM_Malughast_Base_08": 346949523, - "Guest_LM_Malughast_Base_09": 883820435, - "Guest_LM_Malughast_Base_04": 1800534124, - "Guest_LM_Minotaur_Skeleton_A_01": 1865122824, - "Guest_LM_Lemur_Wild_B_03": 1783764037, - "Guest_LM_Lemur_HierarchF_H_01": 231541635, - "Guest_LM_Lemur_HierarchF_H_02": 231553923, - "Guest_LM_Mander_Warrior_A_01": 1651245419, - "Guest_LM_Mander_Warrior_A_02": 1651245291, - "Guest_LM_Mander_Warrior_B_01": 1634468203, - "Guest_LM_Mander_Warrior_B_02": 1634468075, - "Guest_LM_Mander_Warrior_A_03": 1651245163, - "Guest_LM_Mander_Warrior_B_03": 1634467947, - "Guest_LM_Mander_Warrior_A_06": 1651245803, - "Guest_LM_Mander_Warrior_A_05": 1651245931, - "Guest_LM_Mander_Mummy_B_01": 1844111521, - "Guest_LM_Mander_Hero_B_01": 865113284, - "MNT_HolidayHippogriff": 938892112, - "MNT_Sabertooth_Ice": 1870381696, - "PP_FenrisWolf_Bantam": 776647759, - "MNT_JetPack": 1986300552, - "MNT_Scooter_F": 1005560708, - "PP_FossaKitten_A": 431748212, - "PP_Elfvis": 147991405, - "Guest_LM_Chicken_Hero_A_01": 1308728300, - "Guest_LM_Horse_Explorer_A_01": 434405482, - "Guest_LM_Duck_HeroineF_A_01": 133199186, - "Guest_LM_Crane_Hero_A_01": 204272548, - "Guest_LM_Deer_HeroineF_A_01": 1800374959, - "Guest_LM_Deer_Hero_A_01": 223109503, - "Guest_LM_Dog_Hero_A_01": 1434615064, - "PP_YearTiger": 777048708, - "MNT_Barrel": 3576425, - "MNT_Krampus": 404117611, - "PP_ChineseTigerCub": 1256032005, - "PP_Lemur": 565774155, - "PP_Robot": 1089075331, - "PP_Capybara": 451970762, - "Guest_LM_Ghoul_Base_A_01": 1822415945, - "Guest_LM_Lemur_HierarchF_H_03": 231549827, - "Guest_LM_Ghoul_Base_A_02": 1820843081, - "Guest_LM_Ghoul_Base_A_03": 1821367369, - "MNT_SpringSoF2022": 1685679511, - "MNT_WarElephant": 875015497, - "PP_Strix": 514230046, - "MNT_Beachball": 791896033, - "MNT_Blank": 633398131, - "MNT_CardboardFlier": 1646636689, - "MNT_LochMonster": 879660722, - "Transformation_BG_Krok_Death": 1395067182, - "Transformation_BG_Draconian_Fire": 1551581732, - "PP_Scotty": 1708580475, - "Guest_KR_Mice_Knight_A": 480101508, - "PP_Peacock": 1178721112, - "MNT_PoodleMoth": 975420235, - "PP_Hummingbird": 624666906, - "PP_WolfWarrior_Myth": 470737416, - "Guest_HG_UFD_Ghost_QueenF_A_100": 795323059, - "Guest_HG_UFD_Ghost_QueenF_A_50": 728230579, - "Guest_HG_UFD_Pirate_UndeadHighland_A_Balance_150": 201145133, - "Guest_HG_UFD_Pirate_UndeadHighland_A_Balance_100": 201144941, - "Guest_HG_UFD_Pirate_UndeadHighland_A_Balance_50": 201177701, - "Guest_HG_UFD_Pirate_UndeadHighland_A_Star_150": 1329885920, - "Guest_HG_UFD_Pirate_UndeadHighland_A_Star_100": 1304720096, - "Guest_HG_UFD_Pirate_UndeadHighland_A_Star_50": 1305768671, - "Guest_HG_UFD_Pirate_UndeadHighland_A_Shadow_150": 1263689971, - "Guest_HG_UFD_Pirate_UndeadHighland_A_Shadow_100": 1263689977, - "Guest_HG_UFD_Pirate_UndeadHighland_A_Shadow_50": 189949177, - "Guest_HG_UFD_Kelpie_Warrior_A_150": 54296095, - "Guest_HG_UFD_Kelpie_Warrior_A_100": 725384735, - "Guest_HG_UFD_Kelpie_Warrior_A_50": 708607503, - "Guest_HG_UFD_Pirate_UndeadHighland_B_150": 1099317831, - "Guest_HG_UFD_Pirate_UndeadHighland_B_100": 25576008, - "Guest_HG_UFD_Pirate_UndeadHighland_B_50": 159793864, - "Guest_HG_UFD_Ghost_QueenF_A_150": 795716275, - "PP_SpiderMinion": 557357331, - "MNT_Vines_Rainbow": 1587180338, - "MNT_YoungDrake": 1279496198, - "PP_Pet_Coconut": 444388490, - "DragonKI": 1490194214, - "PP_Sharkfish": 601628284, - "PP_MimicCake": 48071878, - "Guest_AQ-Bronze-Eagle": 375279744, - "Guest_Spider-Brown-L26": 2128680185, - "Guest_KR_Spider_Giant_D": 744401035, - "Guest_Wizard-Female-Band-Blue-R8": 1447486557, - "Guest_CC_Human_DSCrusaderF_A_01": 726538068, - "Guest_WC_Scarecrow_A_01": 867491011, - "Guest_WC_Banshee_A_01": 1433786463, - "Guest_WC_LostSoul_A_01": 796936146, - "PP_Fairy_Myth": 1117624344, - "PP_SpriteDark_Myth": 1884257976, - "BG_CyclopsLife_A": 944091673, - "Transformation_BG_NinjaPig_Storm": 2005137181, - "Transformation_BG_Fairy_Myth": 1880704188, - "Transformation_BG_Cyclops_Life": 638936708, - "Guest_AQ-Eagle-Praetorian": 1988013806, - "Guest_KM_BabyCarrot_A_01": 766239512, - "Guest_G14-DM-Gargoyle": 282898047, - "Guest_MR_Durvish_Sergeant_A_Boss_01": 1532609325, - "Guest_Cyclops-RedHelmet-KTBoss-L28": 2072371506, - "Guest_EM_Pig_Singer_A_01": 698597069, - "Guest_EM_Pig_Captain_A": 977505995, - "Guest_EM_Pig_Crewman_A": 465576459, - "PP_ChipmunkConductor": 1089819900, - "PP_LuckyCat": 1109326826, - "MNT_ImpCar": 1736092191, - "MNT_Book": 1547655078, - "MNT_JackoLantern": 649919658, - "MNT_Zheng": 742453108, - "MNT_Train": 413197899, - "MNT_Cerberus": 552686313, - "PP_Coconut": 1122741587, - "Transformation_Statue": 1153168084, - "Transformation_Nullity": 622504394, - "PP_Irk": 1825277392, - "Guest_Wyrmling-Fire-R8-1": 531485009, - "MNT_WolfLowPoly_A": 1947890962, - "MNT_WolfLowPoly_B": 1947825426, - "Transformation_BG_RatThief_Fire": 1169330235, - "Transformation_BG_WolfWarrior_Death": 159966683, - "Transformation_BG_Minotaur_Balance": 657855108, - "Transformation_BG_Draconian_Ice": 1907339814, - "Transformation_BG_Colossus_Myth": 1305894338, - "Transformation_NV_Penguin": 1757096851, - "Transformation_NV_Unicorn": 60447768, - "Transformation_NV_Monkey": 1379873688, - "Transformation_NV_Dog": 1961288968, - "PP_Wolf_Storm": 455227171, - "PP_WoodDuck": 1680912895, - "MNT_RockingHorse": 1205280059, - "MNT_SOF2022_Car": 219868812, - "PP_Buffaloon": 796152873, - "MNT_Steamboat": 1969530127, - "MNT_FelizNavidog": 847046394, - "PP_Mustache": 1571079379, - "Guest_DD-DS01-Skeleton-Pirate-20": 226826848, - "Guest_DD-DS01-Skeleton-Pirate-40": 201661024, - "Guest_DD-DS01-Skeleton-Pirate-60": 210049632, - "Guest_DD-DS01-Skeleton-Pirate-80": 251992672, - "Guest_DD-DS01-Skeleton-Pirate": 1994450336, - "Guest_DD-DS01-Shadow-Minion-Fire": 1074864956, - "Guest_DD-DS01-Shadow-Minion-Ice": 1841681214, - "Guest_DD-DS01-Shadow-Minion-Fire-20": 1074880881, - "Guest_DD-DS01-Shadow-Minion-Fire-40": 1074880945, - "Guest_DD-DS01-Shadow-Minion-Ice-20": 96850220, - "Guest_DD-DS01-Shadow-Minion-Ice-40": 96850218, - "Guest_DD-DS01-Shadow-Minion-Fire-60": 1074881009, - "Guest_DD-DS01-Shadow-Minion-Ice-60": 96850216, - "Guest_DD-DS01-Shadow-Minion-Fire-80": 1074880561, - "Guest_DD-DS01-Shadow-Minion-Ice-80": 96850214, - "Guest_SC-SpectreOfB-1": 1471950935, - "Guest_SC-SpectreOfB-20": 1471942759, - "Guest_SC-SpectreOfB-40": 1471942663, - "Guest_SC-SpectreOfB-60": 1471942695, - "Guest_SC-SpectreOfB-80": 1471942855, - "Guest_KH-Skeleton-Ice-60": 2108358962, - "Guest_KH-Skeleton-Ice-40": 2108391730, - "Guest_KH-Skeleton-Ice-20": 2108293426, - "Guest_KH-Skeleton-Ice-1": 2099953970, - "Guest_KH-Skeleton-Ice-80": 2108195122, - "Guest_KH-Undead-Caster-60": 1662604496, - "Guest_KH-Undead-Caster-40": 1661555920, - "Guest_KH-Undead-Caster-20": 1664701648, - "Guest_KH-Undead-Caster-1": 1931564240, - "Guest_KH-Undead-Caster-80": 1667847376, - "Guest_DD-PA01-DeadBeets": 1664999367, - "Guest_DD-PA01-DeadBeets-20": 1901453253, - "Guest_DD-PA01-DeadBeets-40": 2002116549, - "Guest_DD-PA01-DeadBeets-60": 1968562117, - "Guest_DD-PA01-DeadBeets-80": 2069225413, - "Guest_DD-PA01-Disparagus": 1865816461, - "Guest_DD-PA01-Disparagus-20": 573970895, - "Guest_DD-PA01-Disparagus-40": 499770929, - "Guest_DD-PA01-Disparagus-60": 1573512753, - "Guest_DD-PA01-Disparagus-80": 1647712718, - "Guest_DD-PA01-MeanestFlyTrap": 2001546861, - "Guest_DD-PA01-MeanestFlyTrap-20": 1936326253, - "Guest_DD-PA01-MeanestFlyTrap-40": 1936064109, - "Guest_DD-PA01-MeanestFlyTrap-60": 1935801965, - "Guest_DD-PA01-MeanestFlyTrap-80": 1937636973, - "Guest_HG-MD-MacDeath-20": 182639104, - "Guest_HG-MD-MacDeath-40": 182638080, - "Guest_HG-MD-MacDeath-60": 182637056, - "Guest_HG-MD-MacDeath-80": 182636032, - "Guest_HG-MD-MacDeath-100": 174252032, - "Guest_HG-MD-MacDeath-130": 174202880, - "Guest_HG_Sinbad_Skeleton_25": 494617874, - "Guest_HG_Sinbad_Skeleton_50": 42253050, - "Guest_HG_Sinbad_Skeleton_75": 1115994862, - "Guest_HG_Sinbad_Skeleton_100": 2105232646, - "Guest_HG_Sinbad_Skeleton_130": 2105232650, - "Guest_HG_Sinbad_Skeleton_25_02": 492722834, - "Guest_HG_Sinbad_Skeleton_50_02": 44148090, - "Guest_HG_Sinbad_Skeleton_75_02": 1117889902, - "Guest_HG_Sinbad_Skeleton_100_02": 2044247302, - "Guest_HG_Sinbad_Skeleton_130_02": 2044247306, - "Guest_DD-AV01-WyrmBoss": 1648677986, - "Guest_DD-AV01-WyrmBoss-20": 1926730850, - "Guest_DD-AV01-WyrmBoss-40": 1927779426, - "Guest_DD-AV01-WyrmBoss-60": 1928828002, - "Guest_DD-AV01-WyrmBoss-80": 1921487970, - "Guest_RH-Wyrm-Boss-01": 1027277645, - "Guest_RH-Wyrm-Boss-20": 1027277660, - "Guest_RH-Wyrm-Boss-40": 1027277663, - "Guest_RH-Wyrm-Boss-60": 1027277662, - "Guest_RH-Wyrm-Boss-80": 1027277657, - "Guest_HG_Sinbad_Wyrm_25": 1101443356, - "Guest_HG_Sinbad_Wyrm_50": 1101528860, - "Guest_HG_Sinbad_Wyrm_75": 1101445916, - "Guest_HG_Sinbad_Wyrm_100": 1093138204, - "Guest_HG_Sinbad_Wyrm_130": 1093089052, - "Guest_KH-Treant-1": 2001244331, - "Guest_KH-Treant-60": 1968148651, - "Guest_KH-Treant-40": 1968017579, - "Guest_KH-Treant-20": 1967886507, - "Guest_KH-Treant-80": 1967231147, - "Guest_DD-PA01-ForestGrump": 1969685870, - "Guest_DD-PA01-ForestGrump-20": 714666713, - "Guest_DD-PA01-ForestGrump-40": 714666689, - "Guest_DD-PA01-ForestGrump-60": 714666697, - "Guest_DD-PA01-ForestGrump-80": 714666737, - "Guest_DD-PA01-ForestNymphs": 227087348, - "Guest_DD-PA01-ForestNymphs-20": 227023552, - "Guest_DD-PA01-ForestNymphs-60": 227023040, - "Guest_DD-PA01-ForestNymphs-80": 227024832, - "Guest_SC-Pig-BalanceWizardA-1": 475456968, - "Guest_SC-Pig-BalanceWizardA-20": 477550024, - "Guest_SC-Pig-BalanceWizardA-40": 477541832, - "Guest_SC-Pig-BalanceWizardA-60": 477533640, - "Guest_SC-Pig-BalanceWizardA-80": 477525448, - "Guest_SC-Pig-BalanceWizardB-1": 475456964, - "Guest_SC-Pig-BalanceWizardB-20": 477550020, - "Guest_SC-Pig-BalanceWizardB-40": 477541828, - "Guest_SC-Pig-BalanceWizardB-60": 477533636, - "Guest_SC-Pig-BalanceWizardB-80": 477525444, - "Guest_SC-Pig-BalanceWizardC-1": 475456960, - "Guest_SC-Pig-BalanceWizardC-20": 477550016, - "Guest_SC-Pig-FireWizard-1": 2048176291, - "Guest_SC-Pig-FireWizard-20": 2031399073, - "Guest_SC-Pig-FireWizard-40": 2132062369, - "Guest_SC-Pig-FireWizard-60": 2098507937, - "Guest_SC-Pig-FireWizard-80": 1930735777, - "Guest_SC-Pig-IceWizardF-1": 1178687744, - "Guest_SC-Pig-IceWizardF-20": 1161910526, - "Guest_SC-Pig-IceWizardF-40": 1128356094, - "Guest_SC-Pig-IceWizardF-60": 1094801662, - "Guest_SC-Pig-IceWizardF-80": 1329682686, - "Guest_SC-Pig-MythWizard-1": 2048492725, - "Guest_SC-Pig-MythWizard-20": 2031715511, - "Guest_SC-Pig-MythWizard-40": 2132378807, - "Guest_SC-Pig-MythWizard-60": 2098824375, - "Guest_SC-Pig-MythWizard-80": 1931052215, - "Guest_SC-Pig-StormWizardF-1": 1743849420, - "Guest_SC-Pig-StormWizardF-20": 1743851464, - "Guest_SC-Pig-StormWizardF-40": 1743851488, - "Guest_SC-Pig-StormWizardF-60": 1743851480, - "Guest_SC-Pig-StormWizardF-80": 1743851504, - "Guest_KH-Pig-Bandit-Lord-1": 1080496628, - "Guest_KH-Pig-Bandit-Lord-20": 543625652, - "Guest_KH-Pig-Bandit-Lord-40": 530116172, - "Guest_KH-Pig-Bandit-Lord-60": 1603857996, - "Guest_KH-Pig-Bandit-Lord-80": 1617367475, - "Guest_KH-Pig-Bandit-Ninja-1": 1945100907, - "Guest_KH-Pig-Bandit-Ninja-20": 1945102951, - "Guest_KH-Pig-Bandit-Ninja-40": 1945102975, - "Guest_KH-Pig-Bandit-Ninja-60": 1945102967, - "Guest_KH-Pig-Bandit-Ninja-80": 1945102927, - "Guest_KH-Pig-War-Caster-1": 656859765, - "Guest_KH-Pig-War-Caster-20": 606528119, - "Guest_KH-Pig-War-Caster-40": 572973687, - "Guest_KH-Pig-War-Caster-60": 539419255, - "Guest_KH-Pig-War-Caster-80": 774300279, - "Guest_KH-Pig-War-Warrior-Boss-1": 16342355, - "Guest_KH-Pig-War-Warrior-Boss-20": 2143724205, - "Guest_KH-Pig-War-Warrior-Boss-40": 2118558381, - "Guest_KH-Pig-War-Warrior-Boss-60": 2126946989, - "Guest_KH-Pig-War-Warrior-Boss-80": 2101781165, - "Guest_SC-Pig-BalanceWizardC-40": 477541824, - "Guest_SC-Pig-BalanceWizardC-60": 477533632, - "Guest_SC-Pig-BalanceWizardC-80": 477525440, - "Guest_KH-Helephant-Death-20": 1109389719, - "Guest_KH-Helephant-Death-40": 2111835753, - "Guest_KH-Helephant-Death-60": 1038093929, - "Guest_KH-Helephant-Death-80": 35647896, - "Guest_KH-GreyOgre-Spider-1": 356368404, - "Guest_KH-GreyOgre-Spider-20": 1966981204, - "Guest_KH-GreyOgre-Spider-40": 1254244268, - "Guest_KH-GreyOgre-Spider-60": 180502444, - "Guest_KH-GreyOgre-Spider-80": 893239379, - "Guest_HG_Sinbad_Colossus_25": 1190802829, - "Guest_HG_Sinbad_Colossus_50": 1493551719, - "Guest_HG_Sinbad_Colossus_75": 419809907, - "Guest_HG_Sinbad_Colossus_100": 653933977, - "Guest_HG_Sinbad_Colossus_130": 653933973, - "Guest_NV_Dino_AberrantUndead_A_01": 2035087398, - "Guest_NV_Hellephant_Aberrant_A_01": 989522333, - "Guest_NV_Hellephant_Aberrant_A_02": 989522334, - "Guest_NV_BananaSpider_Base_A_01": 1585810541, - "Guest_NV_BananaSpider_Base_A_02": 1581616237, - "Guest_NV_BananaSpider_Base_A_03": 1577421933, - "Guest_NV_BananaSpider_Base_A_04": 1606782061, - "Guest_NV_BananaSpider_Base_A_05": 1602587757, - "Guest_NV_Wyrm_Aberrant_A_01": 16108415, - "Guest_NV_Monkey_Zombie_A_01": 1854775300, - "Guest_NV_Monkey_Zombie_A_02": 1854775304, - "Guest_NV_Monkey_Zombie_A_03": 1854775308, - "Guest_NV_Monkey_Zombie_A_04": 1854775312, - "MNT_Flag_Monster": 867940056, - "Guest_SKB_WY_DarkBramble_A_30": 2046798767, - "Guest_SKB_WY_DarkBramble_A_50": 2046797999, - "Guest_SKB_WY_DarkBramble_A_100": 2044701359, - "Guest_SKB_WY_DarkBramble_A_150": 2044721839, - "Guest_SKB_GH_Boar_A_30": 1547921275, - "Guest_SKB_WC_SpiritIgnorance_A_50": 1488876986, - "Guest_SKB_WC_SpiritIgnorance_A_100": 2025748410, - "Guest_SKB_WC_SpiritIgnorance_A_150": 2025748413, - "Guest_SKB_DS_Loremaster_A_50": 527751539, - "Guest_SKB_DS_Loremaster_A_100": 527817059, - "Guest_SKB_DS_Loremaster_A_150": 527817699, - "Guest_SKB_CL_Dan_A_50": 637418706, - "Guest_SKB_CL_Dan_A_60": 1510064941, - "Guest_SKB_CL_Dan_A_100": 637410512, - "Guest_SKB_CL_Dan_A_150": 637410432, - "Guest_SKB_AV_Spectre_A_50": 2104631195, - "Guest_SKB_AV_Spectre_A_100": 2102534041, - "Guest_SKB_AV_Spectre_A_150": 2018647961, - "Guest_SKB_MS_Samoorai_A_50": 2029641915, - "Guest_SKB_MS_Samoorai_A_100": 2096750843, - "Guest_SKB_MS_Samoorai_A_150": 587603717, - "Transformation_BG_Krok_StromTemplate": 1317694546, - "PP_ChineseRabbit": 382941643, - "PP_ParadeElf": 1036247808, - "MNT_HeartSwarm": 918199310, - "MNT_SpringSOF2023": 1417178519, - "Transformation_BG_Elf_Death2Template": 1606653101, - "MNT_GummyBunny_D": 775840224, - "Transformation_BG_Krok_Life2Template": 747486212, - "PP_Flame": 959186933, - "PP_YachtRock": 1500927358, - "PP_PirateYachtRock": 1227549100, - "PP_ChickenMonster": 1845706534, - "PP_SnowHoppers_B": 1496460038, - "PP_SnowHoppers_C": 1496457990, - "MNT_Oarfish": 29720265, - "PP_RingTailedCat": 993143427, - "MNT_Fanboat": 19347694, - "MNT_MiniSub": 298697910, - "PP_DumboOctopus": 966435639, - "PP_Glowbug_Balance": 1405529577, - "PP_Glowbug_Death": 405117107, - "PP_Glowbug_Fire": 651698987, - "PP_Glowbug_Ice": 2124926395, - "PP_Glowbug_Life": 601367299, - "PP_Glowbug_Myth": 592978024, - "PP_Glowbug_Storm": 61190446, - "PP_DumboOctopus_B": 968448823, - "PP_DumboOctopus_C": 968383287, - "PP_BananaSpider_01": 1074383522, - "PP_BananaSpider_02": 1080674978, - "PP_BananaSpider_03": 1078577826, - "Guest_HG_NM_BeardDragon_Base_C_01": 82913785, - "Guest_HG_NM_BeardDragon_Base_C_02": 82913786, - "Guest_HG_NM_BeardDragon_Base_C_03": 82913787, - "Guest_HG_NM_Glowbug_Base_C_01": 544959703, - "Guest_HG_NM_Glowbug_Base_C_02": 544955607, - "Guest_HG_NM_Glowbug_Base_C_03": 544951511, - "Guest_HG_NM_Glowbug_Base_C_04": 544947415, - "Guest_HG_NM_Glowbug_Base_C_05": 544943319, - "Guest_HG_NM_Glowbug_Base_C_06": 544939223, - "Guest_HG_NM_Glowbug_Base_C_07": 544935127, - "MNT_BouquetofFlowers": 1511180560, - "PP_Piggle_Rainbow": 91081383, - "MNT_Sabertooth_FlameSaber": 1949516909, - "Guest_HG_NM_BeardDragon_Base_A_01": 83175929, - "Guest_HG_NM_BeardDragon_Base_A_02": 83175930, - "Guest_HG_NM_BeardDragon_Base_A_03": 83175931, - "Guest_HG_NM_BeardDragon_Base_B_01": 83044857, - "Guest_HG_NM_BeardDragon_Base_B_02": 83044858, - "Guest_HG_NM_BeardDragon_Base_B_03": 83044859, - "Guest_HG_NM_Glowbug_Base_B_01": 8088791, - "Guest_HG_NM_Glowbug_Base_B_02": 8084695, - "Guest_HG_NM_Glowbug_Base_B_03": 8080599, - "Guest_HG_NM_Glowbug_Base_B_04": 8076503, - "Guest_HG_NM_Glowbug_Base_B_05": 8072407, - "Guest_HG_NM_Glowbug_Base_B_06": 8068311, - "Guest_HG_NM_Glowbug_Base_B_07": 8064215, - "Guest_HG_NM_Glowbug_Base_A_01": 1618701527, - "Guest_HG_NM_Glowbug_Base_A_02": 1618697431, - "Guest_HG_NM_Glowbug_Base_A_03": 1618693335, - "Guest_HG_NM_Glowbug_Base_A_04": 1618689239, - "Guest_HG_NM_Glowbug_Base_A_05": 1618685143, - "Guest_HG_NM_Glowbug_Base_A_06": 1618681047, - "Guest_HG_NM_Glowbug_Base_A_07": 1618676951, - "MNT_SummerSOF2023": 1636120912, - "PP_Cyclops_Fire": 7821755, - "PP_Death_Elf": 1535744155, - "PP_Newt": 1438123483, - "PP_Echidna": 735439358, - "MNT_Wombat": 580544786, - "Transformation_BG_NinjaPig_Balance": 1799661438, - "Transformation_BG_Cyclops_Ice": 647975824, - "Transformation_BG_Minotaur_Storm": 1005667041, - "Transformation_GR_Parasaur_Priest_Ice": 1101466351, - "Transformation_GR_Parasaur_Priest_Fire": 892193041, - "Transformation_GR_Parasaur_Priest_Storm": 1525882116, - "Transformation_GR_Parasaur_Priest_Balance": 1127637476, - "Guest_GR_AZ_Parasaur_Undead_B_01": 322587487, - "MNT_WitchCat": 1167097888, - "PP_RolyPoly": 578538330, - "PP_Capybara_B": 628131532, - "MNT_OutbackTruck": 1815527801, - "PP_PoodleSailor": 2137704795, - "MNT_PolarianCannon": 2103490826, - "PP_TazmanianDevil": 1773548765, - "Guest_SKB_AZ_Ixcax_A_100": 556560994, - "Guest_SKB_AZ_Ixcax_A_150": 556610146, - "Guest_SKB_AZ_Ixcax_A_50": 564951650, - "MNT_GhoulsShovel": 2035610946, - "PP_CrystalBdayDragon": 1897078804, - "PP_SunGobblerBall": 1522469440, - "PP_Sun_GreenGobbler": 1337690394, - "MNT_2P_AutumnTreant": 1063435527, - "PP_AutumnTreant": 561077291, - "MNT_FlyingMonkey": 490807393, - "PP_BabyPlantMonster": 2076646587, - "MNT_PlantCreature_A": 1802823265, - "Transformation_BG_Fairy_Fire": 2065252898, - "Transformation_BG_Krok_Myth": 277926564, - "Transformation_BG_RatThief_Life": 1167758651, - "Transformation_BG_Elf_Balance": 1628238937, - "Transformation_BG_Colossus_Death": 184392004, - "Transformation_FortressPod": 139738335, - "P_Wombat_POLYMORPH": 1132264953, - "PP_SharkWobbegong": 1994247222, - "PP_ChineseNYDragon": 1126999021, - "PP_JingleBellRock": 1076037919, - "PP_Krok_Mummy_Myth": 438487583, - "PP_Cyclops_Ice": 1476966187, - "MNT_OutbackTruckB": 1813299577, - "MNT_EvilSnowmanBall": 758818712, - "MNT_ThanksgivingGobbler": 1760011910, - "Guest_WL_Ghost_LostSoul_A_01": 1224111704, - "Guest_WL_Kangaroo_Drover_F_01": 2025562931, - "Guest_WL_Spider_WarriorMage_C_01": 1296557888, - "Guest_WL_Spider_WarriorMage_C_02": 1430775616, - "Guest_WL_Spider_WarriorMage_C_03": 1564993344, - "Guest_WL_Spider_WarriorMage_C_04": 1699211072, - "Guest_WL_Spider_WarriorMage_C_05": 1833428800, - "Guest_WL_Spider_WarriorMage_C_06": 1967646528, - "Guest_WL_Spider_WarriorMage_C_07": 2101864256, - "Guest_SKB_KR_Lightbane_A_100": 837930677, - "Guest_SKB_KR_Lightbane_A_160": 837930669, - "Guest_SKB_KR_Lightbane_A_50": 1309555019, - "Transformation_WL_Phantasmanian_DevilTemplate": 384891502, - "MNT_2P_LeaflessTreant": 623083386, - "PP_Minotaur_Ice": 700151737, - "MNT_Scooter_G": 737125252, - "Guest_WL_Frog_Owner_B_01": 767864686, - "MNT_SilentKnight": 646654812, - "Guest_WL_TRex_Base_A_01": 1842562033, - "Guest_WL_TRex_Base_B_01": 304921616, - "PP_Groundhog": 108643243, - "Guest_NV_Unicorn_Guard_C_04": 1845621, - "MNT_EmuPunk": 647315080, - "MNT_HeartBalloon": 798826551, - "PP_ValentineHoppers": 968693964, - "MNT_SpringSOF2024_Heckhound": 453640548, - "Guest_AQ-Centaur-Arion": 1856508139, - "Guest_AQ-Centaur-Artemis": 333294011, - "Guest_AQ-Horse-Sea": 724896200, - "Guest_KR_Horse_Warlord_A_Bossfight": 1302284326, - "Guest_KR_Horse_Warlord_A_BossfightSP": 1300726822, - "Guest_KR_Zebra_Thrall_A": 1250265667, - "Guest_KR_Zebra_Thrall_A_Boss_Minion": 345677011, - "Guest_KR_Zebra_Thrall_A_Gallery": 1520303483, - "Guest_KH-Gray-Horse-40": 1802231403, - "Guest_KH-Gray-Horse-20": 1802231307, - "Guest_G14-BP-Unicorn_Fencer_Boss": 1602044152, - "Guest_Horse-Merc-Brown-L37": 1831175255, - "Guest_Horse-Merc-Tan-L39": 1363854837, - "Guest_Horse-Merc-Tan-L39-1": 2085275127, - "Guest_Horse-Merc-Gray-MSBoss-L39": 1863452041, - "Guest_Horse-Merc-Gray-L39": 2039135564, - "Guest_Horse-Merc-Tan-L38": 1363330549, - "Guest_WC_Horse_Mercenary_Roberto": 891924774, - "Guest_ZF-Nathi-Yellowstripe-R11": 1505157721, - "Guest_ZF-TseTse-Main-R11-Boss": 114927854, - "Guest_ZF-TseTse-Elephant-R11": 894147273, - "Guest_ZF-Zebra-Impi-Raider-R11": 1378242919, - "Guest_ZF-Zebra-Warrior-Male-R10-1": 1791906265, - "Guest_ZF-Zebra-Senzan-Zebu-R10-Boss": 373712721, - "Guest_ZF-Zebra-Shaka-Zebu-R10-Boss": 662142985, - "Guest_ZF-Zebra-Warrior-Female-R10-02": 1507835670, - "Guest_ZF-Zebra-Warrior-Male-R10": 47075786, - "Guest_ZF-Zebra-Warrior-Male-R10-02": 1791906714, - "Guest_ZF-Zebra-Warrior-Male-R10-03": 1791906746, - "Guest_ZF-Zebra-Warrior-Male-R10-05": 1791906682, - "Guest_ZF-Zebra-Warrior-Male-R10-2": 1791906268, - "Guest_ZF_Zebra_Spectral_Guardian-R11": 431970996, - "Guest_CC_Horse_Apoc_A_01": 644668374, - "Guest_CC_Horse_Apoc_B_01": 644668390, - "Guest_CC_Horse_Apoc_C_01": 644668406, - "Guest_CC_Horse_Apoc_D_01": 644668294, - "Guest_CC_Horse_Apoc_D_02": 645192582, - "Guest_CC_Unicorn_CorsairF_B_01": 1378532506, - "Guest_CC_Unicorn_Duelist_B_01": 64891542, - "Guest_CC_Unicorn_Guard_B_01": 1075063242, - "Guest_CC_Unicorn_Guard_B_02": 1075063238, - "Guest_CC_Unicorn_Guard_B_03": 1075063234, - "Guest_NV_Horse_HordeSoldier_A_01": 504396960, - "Guest_NV_Horse_HordeSoldier_A_02": 101743776, - "Guest_NV_Horse_HordeOfficer_A_01": 343600992, - "Guest_NV_Horse_HordeSoldier_A_03": 235961504, - "Guest_NV_Horse_HordeOfficer_A_02": 209383264, - "Guest_NV_Horse_AberrantTungAk_A_01": 952263441, - "Guest_NV_Horse_AberrantTungAk_A_02": 952263537, - "Guest_NV_Horse_TungAk_B_01": 1194718672, - "Guest_NV_Horse_TungAk_B_02": 657847760, - "Guest_NV_Horse_HordeOfficer_B_01": 343596896, - "Guest_NV_Horse_HordeOfficer_B_02": 209379168, - "Guest_NV_Horse_TungAk_A_01": 1194669520, - "Guest_NV_Unicorn_Guard_C_01": 1845601, - "Guest_NV_Unicorn_Guard_A_01": 797025, - "Guest_NV_Unicorn_AberrantGuard_A_01": 739851573, - "Guest_NV_Unicorn_Guard_C_02": 1845613, - "Guest_NV_Unicorn_Guard_C_03": 1845609, - "Guest_NV_Unicorn_AberrantGuard_A_02": 739848501, - "Guest_NV_Unicorn_Guard_A_02": 797037, - "Guest_NV_Unicorn_AberrantGuard_A_03": 739849525, - "Guest_NV_Unicorn_AberrantGuard_A_04": 739846453, - "Guest_NV_Horse_HordeOfficer_A_03": 75165536, - "Guest_NV_Horse_HordeSoldier_A_04": 907050144, - "Guest_NV_Horse_HordeSoldier_A_05": 1041267872, - "Guest_NV_Horse_HordeSoldier_C_01": 504388768, - "Guest_HG_TRAIN_Horse_MustangFencerF_A_Balance_50": 871182987, - "Guest_HG_TRAIN_Horse_MustangFencerF_A_Balance_75": 871176715, - "Guest_HG_TRAIN_Horse_MustangFencerF_A_Life_100": 886489645, - "Guest_HG_TRAIN_Horse_MustangFencerF_A_Balance_25": 871177035, - "Guest_HG_TRAIN_Horse_MustangFencerF_A_Balance_100": 872231819, - "Guest_HG_TRAIN_Horse_MustangFencerF_A_Life_140": 1960231469, - "Guest_HG_TRAIN_Horse_MustangFencerF_B_100": 2089957067, - "Guest_HG_TRAIN_Horse_MustangFencerF_A_Life_25": 1700184589, - "Guest_HG_TRAIN_Horse_MustangFencerF_A_Life_50": 920044045, - "Guest_HG_TRAIN_Horse_MustangFencerF_A_Life_75": 1742127629, - "Guest_HG_TRAIN_Horse_MustangFencerF_A_Balance_140": 872223627, - "Guest_HG_TRAIN_Horse_MustangFencerF_B_50": 2089952970, - "Guest_HG_TRAIN_Horse_MustangFencerF_B_75": 57530654, - "Guest_HG_TRAIN_Horse_MustangFencerF_B_140": 2089957099, - "Guest_HG_TRAIN_Horse_MustangFencerF_B_25": 1131272477, - "Guest_LM_Horse_Explorer_A_01_Hard": 1711837140, - "Guest_WL_Unicorn_Guard_A_01": 1074538935, - "Guest_WL_Unicorn_CorsairF_E_01": 1378532603, - "Guest_WL_Unicorn_Warlord_A_01": 1321310496, - "Guest_KH-Gray-Horse-1": 1802239547, - "Guest_KH-Gray-Horse-60": 1802231371, - "Guest_KH-Gray-Horse-80": 1802231467, - "Transformation_BG_NinjaPig_Ice": 186026527, - "Transformation_BG_Cyclops_Storm": 897316984, - "PP_MinotaurBalance": 1344665951, - "PP_OrthusMoon": 1804503950, - "PP_CoolPineapple": 1149318906, - "PP_TwinkleStars": 766378011, - "PP_Scroll": 1613313091, - "PP_Colossus_Death": 40713075, - "PP_ColossusDeath": 530964029, - "PP_KILiveRock": 1975550570, - "MNT_Outrigger": 1417937299, - "MNT_BookWyrm": 2080129190, - "MNT_RacingSnail": 1996220963, - "MNT_UmbrellaCloud": 145762615, - "PP_PropellerCat": 2094718580, - "MNT_TRex_Shirt": 586746001, - "MNT_Swarm_Bee": 1625228695, - "MNT__CelestialMoon": 968360256, - "Guest_ME_Sinbad_IronSultan_150": 2001676223, - "Guest_ME_Sinbad_Cyclops_150": 1968943689, - "Guest_ME_Sinbad_Skeleton_150": 1031490819, - "Guest_ME_Sinbad_Colossus_150": 1727675806, - "Guest_ME_Sinbad_Skeleton_150_02": 970505475, - "Guest_ME_Sinbad_Wyrm_150": 19314443, - "Guest_ZF-Zebra-Inzinzebu-Bandit-R11": 430262550, - "Guest_ZF-Zebra-Warrior-Male-R10-04": 1791906650, - "PP_TwinkleStars_02": 805304347, - "PP_TwinkleStars_03": 803207195, - "PP_TwinkleStars_01": 799012891, - "Transformation_BodleianHarrow": 609627870, - "Guest_HG_Gryphon_OwlStatue_A_01_L170": 77756046, - "Guest_HG_Gryphon_OwlStatue_A_02_L170": 73561742, - "Guest_HG_Gryphon_OwlStatue_A_01_L100": 77752974, - "Guest_HG_Gryphon_OwlStatue_A_02_L100": 73558670, - "Guest_HG_Gryphon_OwlStatue_A_01_L50": 78277134, - "Guest_HG_Gryphon_OwlStatue_A_02_L50": 74082830, - "MNT_SummerSOF2024_JudgementWings": 1078163967, - "MNT_Pegasus_E": 131704054, - "MNT_PolarisHero": 665176426, - "PP_Duckana": 1128961578, - "PP_QueenBee": 833291695, - "Transformation_BG_Draconian_Balance": 2078940682, - "Transformation_BG_WolfWarrior_Fire": 1762248682, - "Transformation_BG_Minotaur_Death": 309090657, - "PP_WolfWarrior_Fire": 685685256, - "PP_WolfWarrior_Death": 1857202724, - "Guest_ME-GTAV01-WyrmBoss-150": 1482208618, - "Guest_ME_SpectreOfB_L150": 684104791, - "Guest_ME_MD_MacDeath_L150": 1128977615, - "Guest_ME_Pig_BalanceWizardA_L150": 959913724, - "Guest_ME_Pig_BalanceWizardB_L150": 959913712, - "Guest_ME_Pig_BalanceWizardC_L150": 959913716, - "Guest_ME_Pig_FireWizard_L150": 964392255, - "Guest_ME_Pig_IceWizardF_L150": 86941026, - "Guest_ME_Pig_MythWizard_L150": 964051241, - "Guest_ME_Pig_StormWizardF_L150": 2016383602, - "Guest_ME_Clock_Clockworker_L150": 1424569772, - "Guest_ME_Clock_ClockworkSpanner_L150": 1966824609, - "Guest_ME_Clock_Lugs_L150": 370290904, - "Guest_ME_Clock_Lucia_L150": 1857768409, - "MNT_EvilChair": 339577702, - "PP_Cyclops_Storm": 621464512, - "PP_Krokomummy_Life": 462432735, - "Transformation_CL_Rematch_Crustacean": 1686865207, - "Transformation_CL_Rematch_Protector": 1893951532, - "Transformation_CL_Rematch_Angler": 120412196, - "Transformation_CL_Rematch_Piscean": 1624106070, - "Transformation_Zebra_Template": 1900548493, - "Transformation_Zebra2_Template": 325099540, - "Transformation_Zebra3_Template": 325099524, - "Transformation_Zebra4_Template": 325099636, - "MNT_SweetSixteenBirthday": 1009398096, - "MNT_2P_TRex_Bones": 1618543266, - "MNT_SpringBumperCar": 1725007788, - "PP_WinterGoblin": 2025052443, - "PP_OnyxAnubis": 1552575189, - "PP_OttomanCat": 223541582, - "MNT_HolidayYeti": 780983974, - "MNT_IceSled": 979912604, - "MNT_TurtleDoves": 1850191638, - "MNT_KrokChariot": 559783620, - "MNT_Mustang": 1775949401, - "MNT_PumpkinBall": 382849054, - "Transformation_BG_Fairy_Storm": 836920873, - "Transformation_BG_Elf_Myth": 1506493664, - "Transformation_NinjaPig_Life": 816802847, - "Transformation_BG_Krok_Fire": 1060580712, - "Transformation_BG_Colossus_Balance": 1067963041, - "Transformation_BG_NinjaPig_Life": 441460895, - "PP_Penguin_03": 1623028104, - "Transformation_Duck_Librarian_B": 864067551, - "Transformation_Duck_Librarian_A": 859873247, - "Transformation_Duck_Adventurer": 194560769, - "Transformation_Gummy_Bunny_C": 1298087941, - "Transformation_Frog_Horned_A": 837201339, - "Transformation_Glowbug_Storm": 2096380446, - "Transformation_Marshmallow_Critter_A": 1036335317, - "Transformation_Snipe_Base_B": 232132109, - "Transformation_Snowball": 915248481, - "Transformation_Wombat_Base": 333435450, - "Transformation_Human_Malistaire": 1414887773, - "Transformation_Morganthe_E": 1745180054, - "Transformation_Spider_Grandfather": 1131773979, - "Transformation_Khrulhu_Dasein_B": 367878762, - "Transformation_Devourer_Base": 698770016, - "Transformation_Alien_Meteor": 638746168, - "Transformation_Nightmare_Malus": 704212821, - "Transformation_Daemon_Personal": 278266463, - "PP_ValentinesDay": 810003364, - "PP_BabyHippo": 422858138, - "PP_Aardwold": 1592150119, - "PP_Aardwold_C": 1902528613, - "MNT_Cobra": 472847981, - "MNT_Serpopard": 1629558909, - "MNT_Serpopard_B": 1629556867, - "MNT_Serpopard_C": 1629556931, - "PP_Fairy_Fire": 1847789544, - "MNT_Mustang_B": 1448793691, - "PP_FireElfMyth": 1933609060, - "MNT_KT-BoatRide": 1560860110 - } - }, - "m_badgeTitle": { - "type": "std::string", - "id": 6, - "offset": 440, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1783354256 - }, - "m_chatPermissions": { - "type": "unsigned int", - "id": 7, - "offset": 360, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1848314473 - }, - "m_pvpIconID": { - "type": "unsigned int", - "id": 8, - "offset": 472, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2083838009 - }, - "m_localeID": { - "type": "unsigned int", - "id": 9, - "offset": 484, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 792971274 - }, - "m_friendlyPlayer": { - "type": "bool", - "id": 10, - "offset": 490, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 990699901 - }, - "m_volunteer": { - "type": "bool", - "id": 11, - "offset": 491, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1751284471 - }, - "m_guildName": { - "type": "unsigned int", - "id": 12, - "offset": 492, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 778026115 - }, - "m_guildNameLocale": { - "type": "int", - "id": 13, - "offset": 496, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 656991008 - }, - "m_overallRating": { - "type": "unsigned int", - "id": 14, - "offset": 544, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 462138631 - }, - "m_activeRating": { - "type": "unsigned int", - "id": 15, - "offset": 548, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 234391118 - }, - "m_petLevel": { - "type": "unsigned int", - "id": 16, - "offset": 552, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2225922446 - }, - "m_bHasSocketedJewel": { - "type": "bool", - "id": 17, - "offset": 556, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 103587834 - }, - "m_hideName": { - "type": "bool", - "id": 18, - "offset": 557, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 645410894 - }, - "m_templateID": { - "type": "unsigned int", - "id": 19, - "offset": 564, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1286746870 - } - } - }, - "1483250467": { - "name": "class ClientPetGameBehavior*", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1483250467, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - } - } - }, - "1483104627": { - "name": "class AddAuraCinematicStageTemplate*", - "bases": [ - "CinematicStageTemplate", - "PropertyClass" - ], - "hash": 1483104627, - "properties": { - "m_name": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1717359772 - }, - "m_duration": { - "type": "float", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 920323453 - }, - "m_actions": { - "type": "class SharedPointer", - "id": 2, - "offset": 112, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1380578687 - }, - "m_stageRelationships": { - "type": "class SharedPointer", - "id": 3, - "offset": 128, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 499983354 - }, - "m_sound": { - "type": "std::string", - "id": 4, - "offset": 160, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2307644996 - }, - "m_effect": { - "type": "std::string", - "id": 5, - "offset": 192, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1894145160 - }, - "m_spellText": { - "type": "std::string", - "id": 6, - "offset": 224, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2688705600 - }, - "m_bSwitchCameraToWideLong": { - "type": "bool", - "id": 7, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2136912684, - "enum_options": { - "__DEFAULT": 1 - } - } - } - }, - "315786665": { - "name": "class LoyaltyStoreItem*", - "bases": [ - "PropertyClass" - ], - "hash": 315786665, - "properties": { - "m_saleID": { - "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1150028607 - }, - "m_templateId": { - "type": "gid", - "id": 1, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1075328033 - }, - "m_loyaltyTokensPrice": { - "type": "int", - "id": 2, - "offset": 88, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 476322031 - }, - "m_purchaseLimit": { - "type": "int", - "id": 3, - "offset": 92, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 78574068 - } - } - }, - "1082788448": { - "name": "class AnimationPair", - "bases": [ - "PropertyClass" - ], - "hash": 1082788448, - "properties": { - "m_oldAnim": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1953606335 - }, - "m_newAnim": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2558206762 - } - } - }, - "314743322": { - "name": "class SpellbookBehaviorTemplate", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 314743322, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - }, - "m_spellbook": { - "type": "std::string", - "id": 1, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2689219302 - } - } - }, - "1080788762": { - "name": "class TutorialLogBehaviorTemplate", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 1080788762, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - } - } - }, - "314634691": { - "name": "class InteractiveMusicBehavior*", - "bases": [ - "InteractiveMusicBehaviorBase", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 314634691, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_musicData": { - "type": "std::string", - "id": 1, - "offset": 200, - "flags": 66087, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2963606294 - } - } - }, - "1080788570": { - "name": "class TutorialLogBehaviorTemplate*", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 1080788570, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - } - } - }, - "314394891": { - "name": "class ClientLoyaltyStoreOption", - "bases": [ - "LoyaltyStoreOption", - "ServiceOptionBase", - "PropertyClass" - ], - "hash": 314394891, - "properties": { - "m_serviceName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2206028813 - }, - "m_iconKey": { - "type": "std::string", - "id": 1, - "offset": 168, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2457138637 - }, - "m_displayKey": { - "type": "std::string", - "id": 2, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3023276954 - }, - "m_serviceIndex": { - "type": "unsigned int", - "id": 3, - "offset": 204, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2103126710 - }, - "m_forceInteract": { - "type": "bool", - "id": 4, - "offset": 200, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1705789564 - } - } - }, - "1080760734": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1080760734, - "properties": { - "m_standardItemFeedingRewards": { - "type": "class PetFeedingRewardInfo*", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2366849484 - }, - "m_crownsFeedingRewards": { - "type": "class PetFeedingRewardInfo*", - "id": 1, - "offset": 96, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1691121416 - }, - "m_fGoldScalingFactor": { - "type": "float", - "id": 2, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2001693763 - } - } - }, - "315399378": { - "name": "class BGPenaltyMatchBanInfo", - "bases": [ - "InfractionPenaltyInfo", - "PropertyClass" - ], - "hash": 315399378, - "properties": { - "m_addAtPointValue": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1071217084 - }, - "m_removeAtPointValue": { - "type": "float", - "id": 1, - "offset": 76, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2112196961 - }, - "m_lifespan": { - "type": "std::string", - "id": 2, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3042809453 - } - } - }, - "1082788443": { - "name": "class AnimationPair*", - "bases": [ - "PropertyClass" - ], - "hash": 1082788443, - "properties": { - "m_oldAnim": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1953606335 - }, - "m_newAnim": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2558206762 - } - } - }, - "1483278890": { - "name": "class CastleTourMyCastleData*", - "bases": [ - "PropertyClass" - ], - "hash": 1483278890, - "properties": { - "m_houseTemplateID": { - "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2326023642 - }, - "m_rank": { - "type": "unsigned short", - "id": 1, - "offset": 76, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 773386388 - }, - "m_visitCount": { - "type": "unsigned short", - "id": 2, - "offset": 78, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 978951904 - }, - "m_timeRemaining": { - "type": "unsigned int", - "id": 3, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1238700214 - } - } - }, - "315398610": { - "name": "class BGPenaltyMatchBanInfo*", - "bases": [ - "InfractionPenaltyInfo", - "PropertyClass" - ], - "hash": 315398610, - "properties": { - "m_addAtPointValue": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1071217084 - }, - "m_removeAtPointValue": { - "type": "float", - "id": 1, - "offset": 76, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2112196961 - }, - "m_lifespan": { - "type": "std::string", - "id": 2, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3042809453 - } - } - }, - "1082584798": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1082584798, - "properties": { - "m_playerList": { - "type": "gid", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1909774945 - }, - "m_teamColorList": { - "type": "int", - "id": 1, - "offset": 88, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 351259772 - }, - "m_packedNameList": { - "type": "std::string", - "id": 2, - "offset": 104, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 3513135712 - } - } - }, - "1483637427": { - "name": "class SharedPointer", - "bases": [ - "Window", - "PropertyClass" - ], - "hash": 1483637427, - "properties": { - "m_sName": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306437263 - }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621225959 - }, - "m_Style": { - "type": "unsigned int", - "id": 2, - "offset": 152, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "SCALE_CHILDREN": 2, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "FOCUS_LOCKED": 64, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152 - } - }, - "m_Flags": { - "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } - }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3105139380 - }, - "m_fTargetAlpha": { - "type": "float", - "id": 5, - "offset": 212, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1809129834 - }, - "m_fDisabledAlpha": { - "type": "float", - "id": 6, - "offset": 216, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1389987675 - }, - "m_fAlpha": { - "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 482130755 - }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3623628394 - }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2102211316 - }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1846695875 - }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3389835433 - }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2547159940 - }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2587533771 - }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3091503757 - }, - "m_pMaterial": { - "type": "class SharedPointer", - "id": 16, - "offset": 632, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3479277078 - }, - "m_alphaMask": { - "type": "class SharedPointer", - "id": 17, - "offset": 648, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2624275869 - } - } - }, - "315622825": { - "name": "class LoyaltyStoreItem", - "bases": [ - "PropertyClass" - ], - "hash": 315622825, - "properties": { - "m_saleID": { - "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1150028607 - }, - "m_templateId": { - "type": "gid", - "id": 1, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1075328033 - }, - "m_loyaltyTokensPrice": { - "type": "int", - "id": 2, - "offset": 88, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 476322031 - }, - "m_purchaseLimit": { - "type": "int", - "id": 3, - "offset": 92, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 78574068 - } - } - }, - "1483475771": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1483475771, - "properties": { - "m_pMaterial": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3479277078 - }, - "m_nMaterialFrame": { - "type": "int", - "id": 1, - "offset": 88, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1641923970 - } - } - }, - "1082888206": { - "name": "class DynamicSigilTemplate*", - "bases": [ - "CombatSigilTemplate", - "SigilTemplate", - "CoreTemplate", - "PropertyClass" - ], - "hash": 1082888206, - "properties": { - "m_behaviors": { - "type": "class BehaviorTemplate*", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1197808594 - }, - "m_sigilName": { - "type": "std::string", - "id": 1, - "offset": 96, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3177657588 - }, - "m_sigilType": { - "type": "std::string", - "id": 2, - "offset": 136, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3177899445 - }, - "m_entryResults": { - "type": "class ResultList*", - "id": 3, - "offset": 184, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3262956108 - }, - "m_requirements": { - "type": "class RequirementList*", - "id": 4, - "offset": 176, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2840985510 - }, - "m_cancelResults": { - "type": "class ResultList*", - "id": 5, - "offset": 192, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3799257120 - }, - "m_completeResults": { - "type": "class ResultList*", - "id": 6, - "offset": 200, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1964258099 - }, - "m_useState": { - "type": "bool", - "id": 7, - "offset": 216, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 683320865 - }, - "m_stateOverride": { - "type": "std::string", - "id": 8, - "offset": 224, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1949715548 - }, - "m_subCircles": { - "type": "class SigilSubCircle*", - "id": 9, - "offset": 256, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2227135493 - }, - "m_engageRadius": { - "type": "float", - "id": 10, - "offset": 304, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1429683718 - }, - "m_battlefieldEffects": { - "type": "class SharedPointer", - "id": 11, - "offset": 312, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1245973515 - }, - "m_playerVictoryCinematic": { - "type": "std::string", - "id": 12, - "offset": 336, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2684536069 - }, - "m_combatMusic": { - "type": "std::string", - "id": 13, - "offset": 368, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3636593682 - }, - "m_prePlanningCinematicOverride": { - "type": "std::string", - "id": 14, - "offset": 400, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2585096390 - }, - "m_planningCinematicOverride": { - "type": "std::string", - "id": 15, - "offset": 432, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3592819999 - }, - "m_shadowThresholdType": { - "type": "enum kShadow_Threshold_Type", - "id": 16, - "offset": 464, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2847763136, - "enum_options": { - "SHADOW_THRESHOLD_MIN": 0, - "SHADOW_THRESHOLD_AVG": 1, - "SHADOW_THRESHOLD_MAX": 2 - } - }, - "m_shadowThresholdFactor": { - "type": "float", - "id": 17, - "offset": 468, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2104355177 - }, - "m_shadowPipRatingFactor": { - "type": "float", - "id": 18, - "offset": 472, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1061434314 - }, - "m_scalarDamagePvP": { - "type": "float", - "id": 19, - "offset": 476, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2195445026 - }, - "m_scalarResistPvP": { - "type": "float", - "id": 20, - "offset": 480, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1947822077 - }, - "m_scalarPiercePvP": { - "type": "float", - "id": 21, - "offset": 484, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 441266907 - }, - "m_scalarDamagePvE": { - "type": "float", - "id": 22, - "offset": 488, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2195445015 - }, - "m_scalarResistPvE": { - "type": "float", - "id": 23, - "offset": 492, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1947822066 - }, - "m_scalarPiercePvE": { - "type": "float", - "id": 24, - "offset": 496, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 441266896 - }, - "m_damageLimitPvP": { - "type": "float", - "id": 25, - "offset": 500, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1990135243 - }, - "m_dK0PvP": { - "type": "float", - "id": 26, - "offset": 504, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 413528556 - }, - "m_dN0PvP": { - "type": "float", - "id": 27, - "offset": 508, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 417086319 - }, - "m_resistLimitPvP": { - "type": "float", - "id": 28, - "offset": 512, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1174512006 - }, - "m_rK0PvP": { - "type": "float", - "id": 29, - "offset": 516, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 961424058 - }, - "m_rN0PvP": { - "type": "float", - "id": 30, - "offset": 520, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 964981821 - }, - "m_damageLimitPvE": { - "type": "float", - "id": 31, - "offset": 524, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1990135232 - }, - "m_dK0PvE": { - "type": "float", - "id": 32, - "offset": 528, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 413528545 - }, - "m_dN0PvE": { - "type": "float", - "id": 33, - "offset": 532, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 417086308 - }, - "m_resistLimitPvE": { - "type": "float", - "id": 34, - "offset": 536, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1174511995 - }, - "m_rK0PvE": { - "type": "float", - "id": 35, - "offset": 540, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 961424047 - }, - "m_rN0PvE": { - "type": "float", - "id": 36, - "offset": 544, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 964981810 - } - } - }, - "1483319850": { - "name": "class CastleTourMyCastleData", - "bases": [ - "PropertyClass" - ], - "hash": 1483319850, - "properties": { - "m_houseTemplateID": { - "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2326023642 - }, - "m_rank": { - "type": "unsigned short", - "id": 1, - "offset": 76, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 773386388 - }, - "m_visitCount": { - "type": "unsigned short", - "id": 2, - "offset": 78, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 978951904 - }, - "m_timeRemaining": { - "type": "unsigned int", - "id": 3, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1238700214 - } - } - }, - "1082872619": { - "name": "class std::list >", - "bases": [], - "hash": 1082872619, - "properties": {} - }, - "317107401": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 317107401, - "properties": { - "m_hairModel": { - "type": "int", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 764326287 - }, - "m_hairColor": { - "type": "int", - "id": 1, - "offset": 76, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 752476125 - }, - "m_skinColor": { - "type": "int", - "id": 2, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1601202478 - }, - "m_face": { - "type": "int", - "id": 3, - "offset": 84, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 219372329 - }, - "m_skinDecal2": { - "type": "int", - "id": 4, - "offset": 88, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1324180954 - }, - "m_nose": { - "type": "int", - "id": 5, - "offset": 92, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 219675599 - }, - "m_eyeColor": { - "type": "int", - "id": 6, - "offset": 96, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 825282748 - }, - "m_mouth": { - "type": "int", - "id": 7, - "offset": 100, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 802830055 - }, - "m_accessory": { - "type": "int", - "id": 8, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1831652550 - }, - "m_faceDecal": { - "type": "int", - "id": 9, - "offset": 108, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1472001474 - }, - "m_mouthDecal": { - "type": "int", - "id": 10, - "offset": 112, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 993581120 - }, - "m_hatColor": { - "type": "int", - "id": 11, - "offset": 116, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1635647158 - }, - "m_hatDecal": { - "type": "int", - "id": 12, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1636463440 - }, - "m_torsoColor": { - "type": "int", - "id": 13, - "offset": 124, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1443544208 - }, - "m_torsoDecal": { - "type": "int", - "id": 14, - "offset": 128, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1444360490 - }, - "m_feetColor": { - "type": "int", - "id": 15, - "offset": 132, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1168748445 - }, - "m_feetDecal": { - "type": "int", - "id": 16, - "offset": 136, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1169564727 - } - } - }, - "317214006": { - "name": "class CinematicActorAnimationContainer*", - "bases": [ - "PropertyClass" - ], - "hash": 317214006, - "properties": { - "m_templateID": { - "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 71, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1286746870 - }, - "m_actorName": { - "type": "std::string", - "id": 1, - "offset": 96, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2050810421 - }, - "m_animations": { - "type": "class SharedPointer", - "id": 2, - "offset": 128, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2741681697 - }, - "m_templateIDs": { - "type": "unsigned int", - "id": 3, - "offset": 80, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1335199401 - } - } - }, - "1484070556": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1484070556, - "properties": { - "m_leagueType": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3327951024 - }, - "m_awardInfo": { - "type": "class SharedPointer", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2862912855 - } - } - }, - "1085739923": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1085739923, - "properties": { - "m_dailyQuestRewardList": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1109520555 - }, - "m_dailyPvPRewardList": { - "type": "class SharedPointer", - "id": 1, - "offset": 88, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 952967791 - }, - "m_circleRegistryList": { - "type": "std::string", - "id": 2, - "offset": 104, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2265601986 - }, - "m_questRewardsList": { - "type": "std::string", - "id": 3, - "offset": 120, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2202355553 - } - } - }, - "1084935456": { - "name": "class AuctionPriceMods*", - "bases": [ - "PropertyClass" - ], - "hash": 1084935456, - "properties": { - "m_numTemplates": { - "type": "int", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 837442809 - }, - "m_sellMod": { - "type": "float", - "id": 1, - "offset": 76, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1154061607 - }, - "m_buyMod": { - "type": "float", - "id": 2, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 387686375 - } - } - }, - "318607003": { - "name": "class SharedPointer", - "bases": [ - "ServiceOptionBase", - "PropertyClass" - ], - "hash": 318607003, - "properties": { - "m_serviceName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2206028813 - }, - "m_iconKey": { - "type": "std::string", - "id": 1, - "offset": 168, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2457138637 - }, - "m_displayKey": { - "type": "std::string", - "id": 2, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3023276954 - }, - "m_serviceIndex": { - "type": "unsigned int", - "id": 3, - "offset": 204, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2103126710 - }, - "m_forceInteract": { - "type": "bool", - "id": 4, - "offset": 200, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1705789564 - } - } - }, - "1084248228": { - "name": "class SharedPointer", - "bases": [ - "ConditionalSpellEffectRequirement", - "Requirement", - "PropertyClass" - ], - "hash": 1084248228, - "properties": { - "m_applyNOT": { - "type": "bool", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1746328074, - "enum_options": { - "__DEFAULT": 0 - } - }, - "m_operator": { - "type": "enum Requirement::Operator", - "id": 1, - "offset": 76, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2672792317, - "enum_options": { - "ROP_AND": 0, - "ROP_OR": 1, - "__DEFAULT": "ROP_AND" - } - }, - "m_targetType": { - "type": "enum ConditionalSpellEffectRequirement::RequirementTarget", - "id": 2, - "offset": 80, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2547737902, - "enum_options": { - "RT_Caster": 0, - "RT_Target": 1 - } - }, - "m_effectType": { - "type": "enum SpellEffect::kSpellEffects", - "id": 3, - "offset": 88, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2578255295, - "enum_options": { - "SpellEffect::kInvalidSpellEffect": 0, - "SpellEffect::kAbsorbDamage": 37, - "SpellEffect::kAbsorbHeal": 38, - "SpellEffect::kAddCombatTriggerList": 87, - "SpellEffect::kBounceAll": 36, - "SpellEffect::kBounceBack": 35, - "SpellEffect::kBounceNext": 33, - "SpellEffect::kBouncePrevious": 34, - "SpellEffect::kCloakedCharm": 42, - "SpellEffect::kCloakedWard": 43, - "SpellEffect::kCloakedWardNoRemove": 86, - "SpellEffect::kConfusionBlock": 109, - "SpellEffect::kCritBlock": 47, - "SpellEffect::kCritBoost": 46, - "SpellEffect::kCritBoostSchoolSpecific": 97, - "SpellEffect::kDampen": 68, - "SpellEffect::kDispel": 40, - "SpellEffect::kDispelBlock": 108, - "SpellEffect::kMaximumIncomingDamage": 23, - "SpellEffect::kModifyAccuracy": 39, - "SpellEffect::kModifyIncomingArmorPiercing": 26, - "SpellEffect::kModifyIncomingDamage": 22, - "SpellEffect::kModifyIncomingDamageFlat": 119, - "SpellEffect::kModifyIncomingDamageOverTime": 137, - "SpellEffect::kModifyIncomingDamageType": 25, - "SpellEffect::kModifyIncomingHeal": 24, - "SpellEffect::kModifyIncomingHealFlat": 118, - "SpellEffect::kModifyIncomingHealOverTime": 138, - "SpellEffect::kModifyIncomingStealHealth": 32, - "SpellEffect::kModifyOutgoingArmorPiercing": 30, - "SpellEffect::kModifyOutgoingDamage": 27, - "SpellEffect::kModifyOutgoingDamageFlat": 121, - "SpellEffect::kModifyOutgoingDamageType": 29, - "SpellEffect::kModifyOutgoingHeal": 28, - "SpellEffect::kModifyOutgoingHealFlat": 120, - "SpellEffect::kModifyPipRoundRate": 110, - "SpellEffect::kModifyPowerPipChance": 77, - "SpellEffect::kPipConversion": 45, - "SpellEffect::kPowerPipConversion": 100, - "SpellEffect::kProtectBeneficial": 103, - "SpellEffect::kProtectHarmful": 104, - "SpellEffect::kPushCharm": 8, - "SpellEffect::kRemoveCombatTriggerList": 88, - "SpellEffect::kStunBlock": 79, - "SpellEffect::kStunResist": 44 - } - }, - "m_disposition": { - "type": "enum SpellEffect::kHangingDisposition", - "id": 4, - "offset": 92, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1904841031, - "enum_options": { - "SpellEffect::kBoth": 0, - "SpellEffect::kBeneficial": 1, - "SpellEffect::kHarmful": 2 - } - }, - "m_anyType": { - "type": "bool", - "id": 5, - "offset": 96, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1809059293 - }, - "m_globalEffect": { - "type": "bool", - "id": 6, - "offset": 97, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 793781233 - } - } - }, - "1493018350": { - "name": "class TreasureShopCrownsOption*", - "bases": [ - "ServiceOptionBase", - "PropertyClass" - ], - "hash": 1493018350, - "properties": { - "m_serviceName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2206028813 - }, - "m_iconKey": { - "type": "std::string", - "id": 1, - "offset": 168, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2457138637 - }, - "m_displayKey": { - "type": "std::string", - "id": 2, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3023276954 - }, - "m_serviceIndex": { - "type": "unsigned int", - "id": 3, - "offset": 204, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2103126710 - }, - "m_forceInteract": { - "type": "bool", - "id": 4, - "offset": 200, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1705789564 - } - } - }, - "318424777": { - "name": "class ClientComplexRotateTurnIndicatorCinematicAction*", - "bases": [ - "ComplexRotateTurnIndicatorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 318424777, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_rotationInfo": { - "type": "class SharedPointer", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2332010820 - } - } - }, - "1083906118": { - "name": "class PvPCombatSigilTemplate*", - "bases": [ - "CombatSigilTemplate", - "SigilTemplate", - "CoreTemplate", - "PropertyClass" - ], - "hash": 1083906118, - "properties": { - "m_behaviors": { - "type": "class BehaviorTemplate*", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1197808594 - }, - "m_sigilName": { - "type": "std::string", - "id": 1, - "offset": 96, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3177657588 - }, - "m_sigilType": { - "type": "std::string", - "id": 2, - "offset": 136, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3177899445 - }, - "m_entryResults": { - "type": "class ResultList*", - "id": 3, - "offset": 184, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3262956108 - }, - "m_requirements": { - "type": "class RequirementList*", - "id": 4, - "offset": 176, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2840985510 - }, - "m_cancelResults": { - "type": "class ResultList*", - "id": 5, - "offset": 192, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3799257120 - }, - "m_completeResults": { - "type": "class ResultList*", - "id": 6, - "offset": 200, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1964258099 - }, - "m_useState": { - "type": "bool", - "id": 7, - "offset": 216, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 683320865 - }, - "m_stateOverride": { - "type": "std::string", - "id": 8, - "offset": 224, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1949715548 - }, - "m_subCircles": { - "type": "class SigilSubCircle*", - "id": 9, - "offset": 256, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2227135493 - }, - "m_engageRadius": { - "type": "float", - "id": 10, - "offset": 304, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1429683718 - }, - "m_battlefieldEffects": { - "type": "class SharedPointer", - "id": 11, - "offset": 312, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1245973515 - }, - "m_playerVictoryCinematic": { - "type": "std::string", - "id": 12, - "offset": 336, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2684536069 - }, - "m_combatMusic": { - "type": "std::string", - "id": 13, - "offset": 368, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3636593682 - }, - "m_prePlanningCinematicOverride": { - "type": "std::string", - "id": 14, - "offset": 400, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2585096390 - }, - "m_planningCinematicOverride": { - "type": "std::string", - "id": 15, - "offset": 432, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3592819999 - }, - "m_shadowThresholdType": { - "type": "enum kShadow_Threshold_Type", - "id": 16, - "offset": 464, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2847763136, - "enum_options": { - "SHADOW_THRESHOLD_MIN": 0, - "SHADOW_THRESHOLD_AVG": 1, - "SHADOW_THRESHOLD_MAX": 2 - } - }, - "m_shadowThresholdFactor": { - "type": "float", - "id": 17, - "offset": 468, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2104355177 - }, - "m_shadowPipRatingFactor": { - "type": "float", - "id": 18, - "offset": 472, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1061434314 - }, - "m_scalarDamagePvP": { - "type": "float", - "id": 19, - "offset": 476, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2195445026 - }, - "m_scalarResistPvP": { - "type": "float", - "id": 20, - "offset": 480, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1947822077 - }, - "m_scalarPiercePvP": { - "type": "float", - "id": 21, - "offset": 484, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 441266907 - }, - "m_scalarDamagePvE": { - "type": "float", - "id": 22, - "offset": 488, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2195445015 - }, - "m_scalarResistPvE": { - "type": "float", - "id": 23, - "offset": 492, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1947822066 - }, - "m_scalarPiercePvE": { - "type": "float", - "id": 24, - "offset": 496, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 441266896 - }, - "m_damageLimitPvP": { - "type": "float", - "id": 25, - "offset": 500, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1990135243 - }, - "m_dK0PvP": { - "type": "float", - "id": 26, - "offset": 504, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 413528556 - }, - "m_dN0PvP": { - "type": "float", - "id": 27, - "offset": 508, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 417086319 - }, - "m_resistLimitPvP": { - "type": "float", - "id": 28, - "offset": 512, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1174512006 - }, - "m_rK0PvP": { - "type": "float", - "id": 29, - "offset": 516, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 961424058 - }, - "m_rN0PvP": { - "type": "float", - "id": 30, - "offset": 520, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 964981821 - }, - "m_damageLimitPvE": { - "type": "float", - "id": 31, - "offset": 524, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1990135232 - }, - "m_dK0PvE": { - "type": "float", - "id": 32, - "offset": 528, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 413528545 - }, - "m_dN0PvE": { - "type": "float", - "id": 33, - "offset": 532, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 417086308 - }, - "m_resistLimitPvE": { - "type": "float", - "id": 34, - "offset": 536, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1174511995 - }, - "m_rK0PvE": { - "type": "float", - "id": 35, - "offset": 540, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 961424047 - }, - "m_rN0PvE": { - "type": "float", - "id": 36, - "offset": 544, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 964981810 - }, - "m_minimumOnSide": { - "type": "int", - "id": 37, - "offset": 552, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 179638776 - }, - "m_minimumError": { - "type": "std::string", - "id": 38, - "offset": 560, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1816923809 - } - } - }, - "1489655391": { - "name": "class BasePetItemBehavior", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1489655391, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_level": { - "type": "unsigned char", - "id": 1, - "offset": 112, - "flags": 65727, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1438884808 - }, - "m_XP": { - "type": "unsigned int", - "id": 2, - "offset": 116, - "flags": 65727, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2301988085 - }, - "m_firstName": { - "type": "int", - "id": 3, - "offset": 264, - "flags": 65703, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1618303331 - }, - "m_middleName": { - "type": "int", - "id": 4, - "offset": 268, - "flags": 65703, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 199781034 - }, - "m_lastName": { - "type": "int", - "id": 5, - "offset": 272, - "flags": 65703, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 328503983 - }, - "m_currentStats": { - "type": "class PetStat", - "id": 6, - "offset": 128, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2342610661 - }, - "m_maxStats": { - "type": "class PetStat", - "id": 7, - "offset": 144, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1846363080 - }, - "m_hatchedTimeSecs": { - "type": "unsigned int", - "id": 8, - "offset": 160, - "flags": 65727, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 606051291 - }, - "m_expressedTalents": { - "type": "unsigned int", - "id": 9, - "offset": 168, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1557974043 - }, - "m_expressedDerbyTalents": { - "type": "unsigned int", - "id": 10, - "offset": 184, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 484465777 - }, - "m_talentRatings": { - "type": "std::string", - "id": 11, - "offset": 216, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2170591163 - }, - "m_powerRatings": { - "type": "std::string", - "id": 12, - "offset": 232, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1881287968 - }, - "m_overallRating": { - "type": "unsigned int", - "id": 13, - "offset": 248, - "flags": 159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 462138631 - }, - "m_activeRating": { - "type": "unsigned int", - "id": 14, - "offset": 252, - "flags": 159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 234391118 - }, - "m_costToMorph": { - "type": "unsigned int", - "id": 15, - "offset": 256, - "flags": 65567, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1866472719 - }, - "m_rarity": { - "type": "unsigned int", - "id": 16, - "offset": 260, - "flags": 65567, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1111114664 - }, - "m_requiredXP": { - "type": "unsigned int", - "id": 17, - "offset": 120, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1890811574 - }, - "m_housingPetPrimaryColor": { - "type": "int", - "id": 18, - "offset": 276, - "flags": 65664, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 525135139 - }, - "m_housingPetPattern": { - "type": "int", - "id": 19, - "offset": 280, - "flags": 65664, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 165011646 - }, - "m_housingPetSecondaryColor": { - "type": "int", - "id": 20, - "offset": 284, - "flags": 65695, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 358656263 - }, - "m_housingPetOriginalGID": { - "type": "gid", - "id": 21, - "offset": 288, - "flags": 65664, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1259075879 - }, - "m_housingPetJewelTemplateID": { - "type": "unsigned int", - "id": 22, - "offset": 296, - "flags": 65664, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1836117651 - }, - "m_happiness": { - "type": "unsigned int", - "id": 23, - "offset": 300, - "flags": 65727, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1380970552 - }, - "m_maximumHappiness": { - "type": "unsigned int", - "id": 24, - "offset": 304, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 874954582 - } - } - }, - "317381450": { - "name": "class MoveBehavior", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 317381450, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_nFlags": { - "type": "unsigned int", - "id": 1, - "offset": 112, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 922328456 - }, - "m_nMoveState": { - "type": "enum MoveState", - "id": 2, - "offset": 116, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1430960270, - "enum_options": { - "MS_WALKING": 0, - "MS_RUNNING": 1, - "MS_SWIMMING": 2, - "MS_FLYING": 3, - "MS_JUMPING": 4, - "MS_FALLING": 5 - } - } - } - }, - "1083501083": { - "name": "class AvatarTextureOption*", - "bases": [ - "AvatarOptionBase", - "PropertyClass" - ], - "hash": 1083501083, - "properties": { - "m_conditionFlags": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2483653903 - }, - "m_materialName": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1878140043 - }, - "m_textures": { - "type": "std::string", - "id": 2, - "offset": 136, - "flags": 131079, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2391848735 - }, - "m_decals": { - "type": "std::string", - "id": 3, - "offset": 160, - "flags": 131079, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1853711975 - }, - "m_decals2": { - "type": "std::string", - "id": 4, - "offset": 184, - "flags": 131079, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2505858617 - }, - "m_tintColors": { - "type": "class Vector3D", - "id": 5, - "offset": 208, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 3059416083 - }, - "m_tintColorNames": { - "type": "std::string", - "id": 6, - "offset": 232, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1803799469 - }, - "m_useTintColor": { - "type": "bool", - "id": 7, - "offset": 256, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1646372318 - } - } - }, - "1486959076": { - "name": "class ClientPolymorphCinematicAction*", - "bases": [ - "PolymorphCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 1486959076, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - } - } - }, - "1486678974": { - "name": "class SharedPointer", - "bases": [ - "ClientCinematic", - "Cinematic", - "PropertyClass" - ], - "hash": 1486678974, - "properties": {} - }, - "1486282803": { - "name": "class CombatTriggerDescription*", - "bases": [ - "PropertyClass" - ], - "hash": 1486282803, - "properties": { - "m_description": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1649374815 - }, - "m_displaySpellName": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 268435463, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3323484466, - "enum_options": { - "__BASECLASS": "SpellTemplate" - } - } - } - }, - "318427849": { - "name": "class ClientComplexRotateTurnIndicatorCinematicAction", - "bases": [ - "ComplexRotateTurnIndicatorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 318427849, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_rotationInfo": { - "type": "class SharedPointer", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2332010820 - } - } - }, - "1083947078": { - "name": "class PvPCombatSigilTemplate", - "bases": [ - "CombatSigilTemplate", - "SigilTemplate", - "CoreTemplate", - "PropertyClass" - ], - "hash": 1083947078, - "properties": { - "m_behaviors": { - "type": "class BehaviorTemplate*", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1197808594 - }, - "m_sigilName": { - "type": "std::string", - "id": 1, - "offset": 96, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3177657588 - }, - "m_sigilType": { - "type": "std::string", - "id": 2, - "offset": 136, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3177899445 - }, - "m_entryResults": { - "type": "class ResultList*", - "id": 3, - "offset": 184, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3262956108 - }, - "m_requirements": { - "type": "class RequirementList*", - "id": 4, - "offset": 176, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2840985510 - }, - "m_cancelResults": { - "type": "class ResultList*", - "id": 5, - "offset": 192, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3799257120 - }, - "m_completeResults": { - "type": "class ResultList*", - "id": 6, - "offset": 200, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1964258099 - }, - "m_useState": { - "type": "bool", - "id": 7, - "offset": 216, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 683320865 - }, - "m_stateOverride": { - "type": "std::string", - "id": 8, - "offset": 224, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1949715548 - }, - "m_subCircles": { - "type": "class SigilSubCircle*", - "id": 9, - "offset": 256, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2227135493 - }, - "m_engageRadius": { - "type": "float", - "id": 10, - "offset": 304, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1429683718 - }, - "m_battlefieldEffects": { - "type": "class SharedPointer", - "id": 11, - "offset": 312, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1245973515 - }, - "m_playerVictoryCinematic": { - "type": "std::string", - "id": 12, - "offset": 336, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2684536069 - }, - "m_combatMusic": { - "type": "std::string", - "id": 13, - "offset": 368, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3636593682 - }, - "m_prePlanningCinematicOverride": { - "type": "std::string", - "id": 14, - "offset": 400, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2585096390 - }, - "m_planningCinematicOverride": { - "type": "std::string", - "id": 15, - "offset": 432, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3592819999 - }, - "m_shadowThresholdType": { - "type": "enum kShadow_Threshold_Type", - "id": 16, - "offset": 464, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2847763136, - "enum_options": { - "SHADOW_THRESHOLD_MIN": 0, - "SHADOW_THRESHOLD_AVG": 1, - "SHADOW_THRESHOLD_MAX": 2 - } - }, - "m_shadowThresholdFactor": { - "type": "float", - "id": 17, - "offset": 468, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2104355177 - }, - "m_shadowPipRatingFactor": { - "type": "float", - "id": 18, - "offset": 472, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1061434314 - }, - "m_scalarDamagePvP": { - "type": "float", - "id": 19, - "offset": 476, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2195445026 - }, - "m_scalarResistPvP": { - "type": "float", - "id": 20, - "offset": 480, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1947822077 - }, - "m_scalarPiercePvP": { - "type": "float", - "id": 21, - "offset": 484, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 441266907 - }, - "m_scalarDamagePvE": { - "type": "float", - "id": 22, - "offset": 488, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2195445015 - }, - "m_scalarResistPvE": { - "type": "float", - "id": 23, - "offset": 492, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1947822066 - }, - "m_scalarPiercePvE": { - "type": "float", - "id": 24, - "offset": 496, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 441266896 - }, - "m_damageLimitPvP": { - "type": "float", - "id": 25, - "offset": 500, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1990135243 - }, - "m_dK0PvP": { - "type": "float", - "id": 26, - "offset": 504, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 413528556 - }, - "m_dN0PvP": { - "type": "float", - "id": 27, - "offset": 508, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 417086319 - }, - "m_resistLimitPvP": { - "type": "float", - "id": 28, - "offset": 512, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1174512006 - }, - "m_rK0PvP": { - "type": "float", - "id": 29, - "offset": 516, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 961424058 - }, - "m_rN0PvP": { - "type": "float", - "id": 30, - "offset": 520, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 964981821 - }, - "m_damageLimitPvE": { - "type": "float", - "id": 31, - "offset": 524, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1990135232 - }, - "m_dK0PvE": { - "type": "float", - "id": 32, - "offset": 528, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 413528545 - }, - "m_dN0PvE": { - "type": "float", - "id": 33, - "offset": 532, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 417086308 - }, - "m_resistLimitPvE": { - "type": "float", - "id": 34, - "offset": 536, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1174511995 - }, - "m_rK0PvE": { - "type": "float", - "id": 35, - "offset": 540, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 961424047 - }, - "m_rN0PvE": { - "type": "float", - "id": 36, - "offset": 544, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 964981810 - }, - "m_minimumOnSide": { - "type": "int", - "id": 37, - "offset": 552, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 179638776 - }, - "m_minimumError": { - "type": "std::string", - "id": 38, - "offset": 560, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1816923809 - } - } - }, - "320081443": { - "name": "class PromoRewardList*", - "bases": [ - "PropertyClass" - ], - "hash": 320081443, - "properties": { - "m_promoRewards": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 3146833727 - } - } - }, - "1084771616": { - "name": "class AuctionPriceMods", - "bases": [ - "PropertyClass" - ], - "hash": 1084771616, - "properties": { - "m_numTemplates": { - "type": "int", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 837442809 - }, - "m_sellMod": { - "type": "float", - "id": 1, - "offset": 76, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1154061607 - }, - "m_buyMod": { - "type": "float", - "id": 2, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 387686375 - } - } - }, - "1487552333": { - "name": "class SharedPointer", - "bases": [ - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 1487552333, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - }, - "m_effectName": { - "type": "std::string", - "id": 2, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2029161513 - }, - "m_nodeName": { - "type": "std::string", - "id": 3, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3607089954 - }, - "m_assetName": { - "type": "std::string", - "id": 4, - "offset": 184, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513131580 - } - } - }, - "319646203": { - "name": "class ClientCreatePipCinematicActorsFromResult", - "bases": [ - "CreatePipCinematicActorsFromResult", - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 319646203, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - }, - "m_newActorName": { - "type": "std::string", - "id": 2, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2029131039 - } - } - }, - "1084643551": { - "name": "class SharedPointer", - "bases": [ - "GameEffectInfo", - "PropertyClass" - ], - "hash": 1084643551, - "properties": { - "m_effectName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2029161513 - }, - "m_triggerName": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 268435463, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3100183568, - "enum_options": { - "__BASECLASS": "CombatTriggerList" - } - }, - "m_triggerDescription": { - "type": "class SharedPointer", - "id": 2, - "offset": 136, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2619655202 - } - } - }, - "1487055953": { - "name": "class SharedPointer", - "bases": [ - "ClearCameraMappingCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 1487055953, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - } - } - }, - "318658534": { - "name": "class ClientDerbyModifySpeedBoost*", - "bases": [ - "DerbyModifySpeedBoost", - "DerbyEffect", - "PropertyClass" - ], - "hash": 318658534, - "properties": { - "m_buffType": { - "type": "enum DerbyTalentBuffType", - "id": 0, - "offset": 92, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1149251982, - "enum_options": { - "Buff": 0, - "Debuff": 1, - "Neither": 2 - } - }, - "m_kTarget": { - "type": "enum DerbyTargetType", - "id": 1, - "offset": 96, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1807803351, - "enum_options": { - "kTargetInFront": 0, - "kTargetBehind": 1, - "kTargetFirst": 2, - "kTargetSelf": 3, - "kTargetAll": 4, - "kTargetLast": 5 - } - }, - "m_nDuration": { - "type": "int", - "id": 2, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1110167982 - }, - "m_effectID": { - "type": "unsigned int", - "id": 3, - "offset": 88, - "flags": 24, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2347630439 - }, - "m_imageFilename": { - "type": "std::string", - "id": 4, - "offset": 112, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2813328063 - }, - "m_iconIndex": { - "type": "unsigned int", - "id": 5, - "offset": 144, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1265133262 - }, - "m_soundOnActivate": { - "type": "std::string", - "id": 6, - "offset": 152, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1956929714 - }, - "m_soundOnTarget": { - "type": "std::string", - "id": 7, - "offset": 184, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3444214056 - }, - "m_targetParticleEffect": { - "type": "std::string", - "id": 8, - "offset": 216, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3048234723 - }, - "m_overheadMessage": { - "type": "std::string", - "id": 9, - "offset": 248, - "flags": 8388639, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1701018190 - }, - "m_requirements": { - "type": "class RequirementList", - "id": 10, - "offset": 280, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2840988582 - }, - "m_nSpeedChange": { - "type": "int", - "id": 11, - "offset": 376, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 636533855 - } - } - }, - "318658214": { - "name": "class ClientDerbyModifySpeedBoost", - "bases": [ - "DerbyModifySpeedBoost", - "DerbyEffect", - "PropertyClass" - ], - "hash": 318658214, - "properties": { - "m_buffType": { - "type": "enum DerbyTalentBuffType", - "id": 0, - "offset": 92, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1149251982, - "enum_options": { - "Buff": 0, - "Debuff": 1, - "Neither": 2 - } - }, - "m_kTarget": { - "type": "enum DerbyTargetType", - "id": 1, - "offset": 96, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1807803351, - "enum_options": { - "kTargetInFront": 0, - "kTargetBehind": 1, - "kTargetFirst": 2, - "kTargetSelf": 3, - "kTargetAll": 4, - "kTargetLast": 5 - } - }, - "m_nDuration": { - "type": "int", - "id": 2, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1110167982 - }, - "m_effectID": { - "type": "unsigned int", - "id": 3, - "offset": 88, - "flags": 24, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2347630439 - }, - "m_imageFilename": { - "type": "std::string", - "id": 4, - "offset": 112, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2813328063 - }, - "m_iconIndex": { - "type": "unsigned int", - "id": 5, - "offset": 144, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1265133262 - }, - "m_soundOnActivate": { - "type": "std::string", - "id": 6, - "offset": 152, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1956929714 - }, - "m_soundOnTarget": { - "type": "std::string", - "id": 7, - "offset": 184, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3444214056 - }, - "m_targetParticleEffect": { - "type": "std::string", - "id": 8, - "offset": 216, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3048234723 - }, - "m_overheadMessage": { - "type": "std::string", - "id": 9, - "offset": 248, - "flags": 8388639, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1701018190 - }, - "m_requirements": { - "type": "class RequirementList", - "id": 10, - "offset": 280, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2840988582 - }, - "m_nSpeedChange": { - "type": "int", - "id": 11, - "offset": 376, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 636533855 - } - } - }, - "1488543415": { - "name": "class SharedPointer", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1488543415, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - } - } - }, - "1085344653": { - "name": "class ClearBottomTeamCinematicAction*", - "bases": [ - "CinematicAction", - "PropertyClass" - ], - "hash": 1085344653, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_interpDuration": { - "type": "float", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237711951 - } - } - }, - "319128344": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 319128344, - "properties": { - "m_templateID": { - "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1286746870 - }, - "m_lastPurchaseTimeSec": { - "type": "unsigned __int64", - "id": 1, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1926562290 - } - } - }, - "1489409676": { - "name": "class SharedPointer", - "bases": [ - "WinAnimMoveToLocation", - "WindowAnimation", - "PropertyClass" - ], - "hash": 1489409676, - "properties": { - "m_bUseDeepCopy": { - "type": "bool", - "id": 0, - "offset": 72, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 433380635 - }, - "m_targetLocation": { - "type": "class Vector3D", - "id": 1, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2653859938 - }, - "m_fSpeed": { - "type": "float", - "id": 2, - "offset": 96, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 503609006 - } - } - }, - "318685725": { - "name": "class CinematicTemplate*", - "bases": [ - "PropertyClass" - ], - "hash": 318685725, - "properties": { - "m_name": { - "type": "std::string", - "id": 0, - "offset": 120, - "flags": 134217735, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1717359772 - }, - "m_stages": { - "type": "class SharedPointer", - "id": 1, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2081530688 - }, - "m_actors": { - "type": "class SharedPointer", - "id": 2, - "offset": 88, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2242419761 - }, - "m_sharedAnimations": { - "type": "class SharedPointer", - "id": 3, - "offset": 104, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 3289641416 - } - } - }, - "1086685419": { - "name": "class FriendlyPlayerWorldList", - "bases": [ - "PropertyClass" - ], - "hash": 1086685419, - "properties": { - "m_friendlyPlayerWorldList": { - "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 780811899 - } - } - }, - "1085999469": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1085999469, - "properties": { - "m_unlockTriggerTemplateID": { - "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1721811670 - }, - "m_state": { - "type": "unsigned int", - "id": 1, - "offset": 76, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1021505934 - }, - "m_reagentCount1": { - "type": "unsigned int", - "id": 2, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2011197517 - }, - "m_reagentCount2": { - "type": "unsigned int", - "id": 3, - "offset": 84, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2011197518 - }, - "m_reagentCount3": { - "type": "unsigned int", - "id": 4, - "offset": 88, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2011197519 - }, - "m_reagentCount4": { - "type": "unsigned int", - "id": 5, - "offset": 92, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2011197520 - }, - "m_reagentCount5": { - "type": "unsigned int", - "id": 6, - "offset": 96, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2011197521 - }, - "m_reagentCount6": { - "type": "unsigned int", - "id": 7, - "offset": 100, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2011197522 - } - } - }, - "1491635770": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1491635770, - "properties": { - "m_characterID": { - "type": "gid", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 210498386 - }, - "m_tournamentNameID": { - "type": "unsigned int", - "id": 1, - "offset": 84, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1799846440 - }, - "m_matchNameID": { - "type": "unsigned int", - "id": 2, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1751361288 - }, - "m_leagueID": { - "type": "unsigned int", - "id": 3, - "offset": 88, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 692361645 - }, - "m_seasonID": { - "type": "unsigned int", - "id": 4, - "offset": 92, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 535260643 - }, - "m_teams": { - "type": "class SharedPointer", - "id": 5, - "offset": 96, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1984373608 - } - } - }, - "1085902377": { - "name": "class SharedPointer", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1085902377, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - } - } - }, - "1491562027": { - "name": "class ArenaPointsLootInfo", - "bases": [ - "LootInfo", - "LootInfoBase", - "PropertyClass" - ], - "hash": 1491562027, - "properties": { - "m_lootType": { - "type": "enum LootInfo::LOOT_TYPE", - "id": 0, - "offset": 72, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1591891442, - "enum_options": { - "LOOT_TYPE_NONE": 0, - "LOOT_TYPE_GOLD": 1, - "LOOT_TYPE_MANA": 2, - "LOOT_TYPE_ITEM": 3, - "LOOT_TYPE_TREASURE_CARD": 4, - "LOOT_TYPE_MAGIC_XP": 5, - "LOOT_TYPE_ADD_SPELL": 6, - "LOOT_TYPE_MAX_HEALTH": 7, - "LOOT_TYPE_MAX_GOLD": 8, - "LOOT_TYPE_MAX_MANA": 9, - "LOOT_TYPE_MAX_POTION": 10, - "LOOT_TYPE_TRAINING_POINTS": 11, - "LOOT_TYPE_RECIPE": 12, - "LOOT_TYPE_CRAFTING_SLOT": 13, - "LOOT_TYPE_REAGENT": 14, - "LOOT_TYPE_PETSNACK": 15, - "LOOT_TYPE_GARDENING_XP": 16, - "LOOT_TYPE_PET_XP": 17, - "LOOT_TYPE_TREASURE_TABLE": 18, - "LOOT_TYPE_ARENA_POINTS": 19, - "LOOT_TYPE_ARENA_BONUS_POINTS": 20, - "LOOT_TYPE_GROUP": 21, - "LOOT_TYPE_FISHING_XP": 22, - "LOOT_TYPE_EVENT_CURRENCY_1": 24, - "LOOT_TYPE_EVENT_CURRENCY_2": 25, - "LOOT_TYPE_PVP_CURRENCY": 26, - "LOOT_TYPE_PVP_CURRENCY_BONUS": 27, - "LOOT_TYPE_PVP_TOURNEY_CURRENCY": 28, - "LOOT_TYPE_PVP_TOURNEY_CURRENCY_BONUS": 29, - "LOOT_TYPE_FURNITURE_ESSENCE": 30 - } - }, - "m_arenaPointsAmount": { - "type": "int", - "id": 1, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2041106034 - } - } - }, - "319646587": { - "name": "class ClientCreatePipCinematicActorsFromResult*", - "bases": [ - "CreatePipCinematicActorsFromResult", - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 319646587, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - }, - "m_newActorName": { - "type": "std::string", - "id": 2, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2029131039 - } - } - }, - "1490590268": { - "name": "class SharedPointer", - "bases": [ - "ZoneTokenBaseControl", - "Window", - "PropertyClass" - ], - "hash": 1490590268, - "properties": { - "m_sName": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306437263 - }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621225959 - }, - "m_Style": { - "type": "unsigned int", - "id": 2, - "offset": 152, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "SCALE_CHILDREN": 2, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "FOCUS_LOCKED": 64, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152 - } - }, - "m_Flags": { - "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } - }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3105139380 - }, - "m_fTargetAlpha": { - "type": "float", - "id": 5, - "offset": 212, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1809129834 - }, - "m_fDisabledAlpha": { - "type": "float", - "id": 6, - "offset": 216, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1389987675 - }, - "m_fAlpha": { - "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 482130755 - }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3623628394 - }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2102211316 - }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1846695875 - }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3389835433 - }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2547159940 - }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2587533771 - }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3091503757 - } - } - }, - "1086516126": { - "name": "class SharedPointer", - "bases": [ - "Result", - "PropertyClass" - ], - "hash": 1086516126, - "properties": {} - }, - "322077384": { - "name": "class SharedPointer", - "bases": [ - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 322077384, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - } - } - }, - "320579002": { - "name": "class TempStartingPipEffectInfo*", - "bases": [ - "GameEffectInfo", - "PropertyClass" - ], - "hash": 320579002, - "properties": { - "m_effectName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2029161513 - }, - "m_pipsGiven": { - "type": "int", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1346249167 - }, - "m_powerPipsGiven": { - "type": "int", - "id": 2, - "offset": 108, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 377908508 - } - } - }, - "1492107403": { - "name": "class SharedPointer", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 1492107403, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - }, - "m_housingPaletteType": { - "type": "int", - "id": 1, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 658067464 - }, - "m_primaryTintColors": { - "type": "class Vector3D", - "id": 2, - "offset": 128, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2885436919 - }, - "m_secondaryTintColors": { - "type": "class Vector3D", - "id": 3, - "offset": 152, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 3624818395 - } - } - }, - "320084515": { - "name": "class PromoRewardList", - "bases": [ - "PropertyClass" - ], - "hash": 320084515, - "properties": { - "m_promoRewards": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 3146833727 - } - } - }, - "1086776192": { - "name": "class AdvPvPEloRecordClient*", - "bases": [ - "AdvPvPEloRecord", - "PropertyClass" - ], - "hash": 1086776192, - "properties": { - "m_eloRecordID": { - "type": "gid", - "id": 0, - "offset": 72, - "flags": 16777279, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 832082468 - }, - "m_leagueID": { - "type": "unsigned int", - "id": 1, - "offset": 80, - "flags": 33554495, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 692361645 - }, - "m_seasonID": { - "type": "unsigned int", - "id": 2, - "offset": 84, - "flags": 33554495, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 535260643 - }, - "m_startTime": { - "type": "unsigned int", - "id": 3, - "offset": 88, - "flags": 33554495, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1598371274 - }, - "m_ended": { - "type": "bool", - "id": 4, - "offset": 92, - "flags": 33554495, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 795768915 - }, - "m_elo": { - "type": "int", - "id": 5, - "offset": 96, - "flags": 33554495, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 267033754 - }, - "m_rankIndex": { - "type": "int", - "id": 6, - "offset": 100, - "flags": 33554495, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 716259486 - }, - "m_wins": { - "type": "int", - "id": 7, - "offset": 104, - "flags": 33554495, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 219992347 - }, - "m_losses": { - "type": "int", - "id": 8, - "offset": 108, - "flags": 33554495, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 681549075 - }, - "m_draws": { - "type": "int", - "id": 9, - "offset": 112, - "flags": 33554495, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 792242907 - } - } - }, - "1491832715": { - "name": "class ClientRotateActorCinematicAction*", - "bases": [ - "RotateActorCinematicAction", - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 1491832715, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - }, - "m_deltaYaw": { - "type": "float", - "id": 2, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1518691890 - } - } - }, - "1491810943": { - "name": "class SharedPointer", - "bases": [ - "StatisticEffectTemplate", - "GameEffectTemplate", - "PropertyClass" - ], - "hash": 1491810943, - "properties": { - "m_effectName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2029161513 - }, - "m_effectCategory": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1852673222 - }, - "m_sortOrder": { - "type": "int", - "id": 2, - "offset": 148, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1411218206 - }, - "m_duration": { - "type": "double", - "id": 3, - "offset": 192, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2727932435 - }, - "m_stackingCategories": { - "type": "std::string", - "id": 4, - "offset": 160, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1774497525 - }, - "m_isPersistent": { - "type": "bool", - "id": 5, - "offset": 153, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 923861920 - }, - "m_bIsOnPet": { - "type": "bool", - "id": 6, - "offset": 154, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 522593303 - }, - "m_isPublic": { - "type": "bool", - "id": 7, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1728439822 - }, - "m_visualEffectAddName": { - "type": "std::string", - "id": 8, - "offset": 200, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3382086694 - }, - "m_visualEffectRemoveName": { - "type": "std::string", - "id": 9, - "offset": 232, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1541697323 - }, - "m_onAddFunctorName": { - "type": "std::string", - "id": 10, - "offset": 280, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1561843107 - }, - "m_onRemoveFunctorName": { - "type": "std::string", - "id": 11, - "offset": 312, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2559017864 - }, - "m_stackingRule": { - "type": "enum STACKING_RULE", - "id": 12, - "offset": 144, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 431568889, - "enum_options": { - "STACKING_ALLOWED": 0, - "STACKING_NOSTACK": 1, - "STACKING_REPLACE": 2 - } - }, - "m_baseHitpoints": { - "type": "int", - "id": 13, - "offset": 360, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 596105911 - }, - "m_baseMana": { - "type": "int", - "id": 14, - "offset": 364, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1475495442 - }, - "m_xpPercentIncrease": { - "type": "float", - "id": 15, - "offset": 368, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1051081338 - }, - "m_goldPercent": { - "type": "float", - "id": 16, - "offset": 372, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1095720878 - }, - "m_wispBonusPercent": { - "type": "float", - "id": 17, - "offset": 376, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1304386546 - }, - "m_powerPipBonusPercent": { - "type": "float", - "id": 18, - "offset": 380, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1671446341 - }, - "m_shadowPipBonusPercent": { - "type": "float", - "id": 19, - "offset": 384, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1426533310 - }, - "m_shadowPipRating": { - "type": "float", - "id": 20, - "offset": 388, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 507126123 - }, - "m_archmastery": { - "type": "float", - "id": 21, - "offset": 392, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1963579610 - }, - "m_stunResistancePercent": { - "type": "float", - "id": 22, - "offset": 396, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1868382627 - }, - "m_balanceMastery": { - "type": "int", - "id": 23, - "offset": 400, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 149062181 - }, - "m_deathMastery": { - "type": "int", - "id": 24, - "offset": 404, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1421218661 - }, - "m_fireMastery": { - "type": "int", - "id": 25, - "offset": 408, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1431794949 - }, - "m_iceMastery": { - "type": "int", - "id": 26, - "offset": 412, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 704864240 - }, - "m_lifeMastery": { - "type": "int", - "id": 27, - "offset": 416, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2142136447 - }, - "m_mythMastery": { - "type": "int", - "id": 28, - "offset": 420, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1766317185 - }, - "m_stormMastery": { - "type": "int", - "id": 29, - "offset": 424, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1883988244 - }, - "m_school": { - "type": "std::string", - "id": 30, - "offset": 432, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2438566051 - }, - "m_pipConversionRating": { - "type": "float", - "id": 31, - "offset": 464, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 246855691 - }, - "m_criticalHitRating": { - "type": "float", - "id": 32, - "offset": 468, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1978690540 - }, - "m_blockRating": { - "type": "float", - "id": 33, - "offset": 472, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2088486759 - }, - "m_dmgBonusPercent": { - "type": "float", - "id": 34, - "offset": 476, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 194501159 - }, - "m_dmgBonusFlat": { - "type": "float", - "id": 35, - "offset": 480, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1837769725 - }, - "m_accBonusPercent": { - "type": "float", - "id": 36, - "offset": 484, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 331557526 - }, - "m_apBonusPercent": { - "type": "float", - "id": 37, - "offset": 488, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1228557984 - }, - "m_dmgReducePercent": { - "type": "float", - "id": 38, - "offset": 492, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1426050712 - }, - "m_dmgReduceFlat": { - "type": "float", - "id": 39, - "offset": 496, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1218184718 - }, - "m_accReducePercent": { - "type": "float", - "id": 40, - "offset": 500, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1653943527 - }, - "m_healBonusPercent": { - "type": "float", - "id": 41, - "offset": 504, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 562313577 - }, - "m_healIncBonusPercent": { - "type": "float", - "id": 42, - "offset": 508, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2182535587 - }, - "m_fishingLuckBonusPercent": { - "type": "float", - "id": 43, - "offset": 512, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1363349254 - } - } - }, - "321241350": { - "name": "class CombatResult*", - "bases": [ - "PropertyClass" - ], - "hash": 321241350, - "properties": { - "m_resultType": { - "type": "enum CombatResult::kResultType", - "id": 0, - "offset": 72, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1482430415, - "enum_options": { - "kResult_StartSpellCast": 0, - "kResult_StartSpellNoCast": 1, - "kResult_Focus": 2, - "kResult_Discard": 3, - "kResult_Flee": 4, - "kResult_HangingEffectAdded": 5, - "kResult_ProtectedHangingEffectAdded": 6, - "kResult_RemovingHangingEffect": 7, - "kResult_HangingEffectRemovedIncoming": 8, - "kResult_HangingEffectRemovedIncomingFast": 9, - "kResult_HangingEffectRemovedIncomingDetonated": 10, - "kResult_HangingEffectRemovedOutgoing": 11, - "kResult_HangingEffectRemovedOutgoingFast": 12, - "kResult_HangingEffectProcessed": 13, - "kResult_HangingEffectRoundsModified": 14, - "kResult_Bounce": 15, - "kResult_TakeDamage": 16, - "kResult_HealDamage": 17, - "kResult_TakeDamageOverTime": 18, - "kResult_HealDamageOverTime": 19, - "kResult_StealTake": 20, - "kResult_StealGive": 21, - "kResult_AbsorbDamage": 22, - "kResult_AbsorbHeal": 110, - "kResult_Miss": 23, - "kResult_Hit": 24, - "kResult_CriticalBlocked": 25, - "kResult_CriticalHit": 26, - "kResult_GlobalEffectProcessed": 27, - "kResult_GlobalEffectAdded": 28, - "kResult_GlobalEffectRemoved": 29, - "kResult_PlayerDied": 30, - "kResult_CreatureSummoned": 31, - "kResult_TeleportPlayer": 32, - "kResult_PipsModified": 33, - "kResult_PowerPipsModified": 34, - "kResult_ShadowPipsModified": 35, - "kResult_Stunned": 36, - "kResult_Unstunned": 37, - "kResult_Polymorphed": 38, - "kResult_UnPolymorphed": 39, - "kResult_Reshuffle": 40, - "kResult_SpellDone": 41, - "kResult_ModifyHate": 42, - "kResult_MindControlled": 43, - "kResult_UnMindControlled": 44, - "kResult_MindControlImmune": 45, - "kResult_AddAura": 46, - "kResult_RemoveAura": 47, - "kResult_BuffDebuff": 48, - "kResult_Resurrected": 49, - "kResult_DamageTypeChanged": 50, - "kResult_CloakedEffectAdded": 51, - "kResult_RevealCloakedEffect": 52, - "kResult_StunResist": 53, - "kResult_StunResistFailed": 54, - "kResult_StunImmune": 55, - "kResult_ArmorPierced": 56, - "kResult_AfterlifeEffectsProcessed": 57, - "kResult_AfterlifeEffectsAdded": 58, - "kResult_AfterlifeEffectsRemoved": 59, - "kResult_EffectFailed": 60, - "kResult_StartAOE": 61, - "kResult_StopAOE": 62, - "kResult_StartAOEAct": 63, - "kResult_StopAOEAct": 64, - "kResult_CombatTriggerListAdded": 65, - "kResult_CombatTriggerListRemoved": 66, - "kResult_AddBacklashResult": 72, - "kResult_RemoveBacklashResult": 73, - "kResult_AddShadowSpellEffect": 67, - "kResult_ChangeShadowSelfEffect": 71, - "kResult_RemoveShadowSpellEffect": 68, - "kResult_ShadowSelfEffect": 69, - "kResult_UnShadowSelfEffect": 70, - "kResult_ModifyBacklash": 74, - "kResult_AddIntercept": 75, - "kResult_RemoveIntercept": 76, - "kResult_TakeInterceptDamage": 77, - "kResult_InterceptedDamage": 78, - "kResult_InterceptedDamageThisRound": 79, - "kResult_IncreaseShadowCreatureLevel": 81, - "kResult_DecreaseShadowCreatureLevel": 82, - "kResult_SetShadowCreatureLevel": 83, - "kResult_RemoveShadowCreature": 84, - "kResult_ShadowCreatureAttack": 85, - "kResult_PostActionProcess": 86, - "kResult_CreatureSpawned": 88, - "kResult_HangingEffectRemovedProtection": 90, - "kResult_planningPhasePipSync": 97, - "kResult_pipConversionRefund": 96, - "kResult_FirstPlayerSwitched": 98, - "kResult_Confused": 99, - "kResult_Unconfused": 100, - "kResult_Clued": 102, - "kResult_ClueImmune": 103, - "kResult_PetCasted": 112, - "kResult_CastSigilSpell": 113, - "kResult_AddSpellToDeck": 114, - "kResult_SetTopTeam": 115, - "kResult_SetBottomTeam": 116, - "kResult_ClearTopTeam": 117, - "kResult_ClearBottomTeam": 118, - "kResult_StartBackRowCast": 119, - "kResult_StopBackRowCast": 120, - "kResult_SchoolPipsModified": 121, - "kResult_None": 122 - } - }, - "m_participantSubCircle": { - "type": "int", - "id": 1, - "offset": 76, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1360563125 - }, - "m_effectType": { - "type": "int", - "id": 2, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 531703753 - }, - "m_effectAmount": { - "type": "int", - "id": 3, - "offset": 84, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 498226203 - }, - "m_spellTemplateID": { - "type": "unsigned int", - "id": 4, - "offset": 88, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 585567702 - }, - "m_spellBaseOverrideTemplateID": { - "type": "unsigned int", - "id": 5, - "offset": 92, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2024236913 - }, - "m_targetSubCircle": { - "type": "int", - "id": 6, - "offset": 96, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1278786653 - }, - "m_durationModifier": { - "type": "float", - "id": 7, - "offset": 192, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 753259116 - }, - "m_petCasted": { - "type": "bool", - "id": 8, - "offset": 196, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1697247120 - }, - "m_petCastedTarget": { - "type": "int", - "id": 9, - "offset": 200, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1344025214 - }, - "m_cloaked": { - "type": "bool", - "id": 10, - "offset": 204, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 7349510 - } - } - }, - "1122797009": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1122797009, - "properties": { - "m_list": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 551684466 - } - } - }, - "1105349579": { - "name": "class Rect", - "bases": [], - "hash": 1105349579, - "properties": {} - }, - "1097734602": { - "name": "class StageBacklashEffectCinematicAction*", - "bases": [ - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 1097734602, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - } - } - }, - "1492610124": { - "name": "class SharedPointer", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1492610124, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_tokens": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 27, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621026866 - } - } - }, - "322820028": { - "name": "class SharedPointer", - "bases": [ - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 322820028, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - } - } - }, - "1093377563": { - "name": "class SharedPointer", - "bases": [ - "ServiceOptionBase", - "PropertyClass" - ], - "hash": 1093377563, - "properties": { - "m_serviceName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2206028813 - }, - "m_iconKey": { - "type": "std::string", - "id": 1, - "offset": 168, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2457138637 - }, - "m_displayKey": { - "type": "std::string", - "id": 2, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3023276954 - }, - "m_serviceIndex": { - "type": "unsigned int", - "id": 3, - "offset": 204, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2103126710 - }, - "m_forceInteract": { - "type": "bool", - "id": 4, - "offset": 200, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1705789564 - }, - "m_teamUpAllowed": { - "type": "int", - "id": 5, - "offset": 216, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1016118542 - }, - "m_successZone": { - "type": "std::string", - "id": 6, - "offset": 224, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1516681392 - }, - "m_isCluster": { - "type": "bool", - "id": 7, - "offset": 256, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1183074257 - }, - "m_requiresSkeletonKey": { - "type": "int", - "id": 8, - "offset": 220, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1735968152 - }, - "m_monthlyGauntletFields": { - "type": "class SharedPointer", - "id": 9, - "offset": 264, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2875746802 - }, - "m_advancedModeFields": { - "type": "class SharedPointer", - "id": 10, - "offset": 280, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3117836827 - } - } - }, - "1089728526": { - "name": "class BattleCardPurchaseInfo", - "bases": [ - "PropertyClass" - ], - "hash": 1089728526, - "properties": { - "m_spellName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2688485244 - }, - "m_maxCopies": { - "type": "int", - "id": 1, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 191619875 - } - } - }, - "1088237445": { - "name": "class ReqCanAddExpansion", - "bases": [ - "Requirement", - "PropertyClass" - ], - "hash": 1088237445, - "properties": { - "m_applyNOT": { - "type": "bool", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1746328074, - "enum_options": { - "__DEFAULT": 0 - } - }, - "m_operator": { - "type": "enum Requirement::Operator", - "id": 1, - "offset": 76, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2672792317, - "enum_options": { - "ROP_AND": 0, - "ROP_OR": 1, - "__DEFAULT": "ROP_AND" - } - }, - "m_category": { - "type": "enum ExpansionData::Category", - "id": 2, - "offset": 80, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2705349254, - "enum_options": { - "ExpansionData::EDC_Bank": 0, - "ExpansionData::EDC_FriendsList": 1 - } - } - } - }, - "1496191769": { - "name": "class Recipe", - "bases": [ - "CoreObject", - "PropertyClass" - ], - "hash": 1496191769, - "properties": { - "m_inactiveBehaviors": { - "type": "class SharedPointer", - "id": 0, - "offset": 224, - "flags": 31, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1850812559 - }, - "m_globalID.m_full": { - "type": "unsigned __int64", - "id": 1, - "offset": 72, - "flags": 16777247, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2312465444 - }, - "m_permID": { - "type": "unsigned __int64", - "id": 2, - "offset": 80, - "flags": 16777247, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1298909658 - }, - "m_location": { - "type": "class Vector3D", - "id": 3, - "offset": 168, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2239683611 - }, - "m_orientation": { - "type": "class Vector3D", - "id": 4, - "offset": 180, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2344058766 - }, - "m_fScale": { - "type": "float", - "id": 5, - "offset": 196, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 503137701 - }, - "m_templateID.m_full": { - "type": "unsigned __int64", - "id": 6, - "offset": 96, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 633907631 - }, - "m_debugName": { - "type": "std::string", - "id": 7, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3553984419 - }, - "m_displayKey": { - "type": "std::string", - "id": 8, - "offset": 136, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3023276954 - }, - "m_zoneTagID": { - "type": "unsigned int", - "id": 9, - "offset": 344, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 965291410 - }, - "m_speedMultiplier": { - "type": "short", - "id": 10, - "offset": 192, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 123130076 - }, - "m_nMobileID": { - "type": "unsigned short", - "id": 11, - "offset": 194, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1054318939 - }, - "m_recipeNameID": { - "type": "unsigned int", - "id": 12, - "offset": 384, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2168714419 - } - } - }, - "335952591": { - "name": "class std::vector >", - "bases": [], - "hash": 335952591, - "properties": {} - }, - "1087718304": { - "name": "class HousingObjectTextureRemap*", - "bases": [ - "PropertyClass" - ], - "hash": 1087718304, - "properties": { - "m_tagName": { - "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 27, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 255719658 - }, - "m_textureFilename": { - "type": "unsigned int", - "id": 1, - "offset": 76, - "flags": 27, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 922351199 - } - } - }, - "1495888456": { - "name": "class ClientRemoveProtectionEffectCinematicAction", - "bases": [ - "RemoveProtectionEffectCinematicAction", - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 1495888456, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - } - } - }, - "329052425": { - "name": "class IslandSpaceOption", - "bases": [ - "ServiceOptionBase", - "PropertyClass" - ], - "hash": 329052425, - "properties": { - "m_serviceName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2206028813 - }, - "m_iconKey": { - "type": "std::string", - "id": 1, - "offset": 168, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2457138637 - }, - "m_displayKey": { - "type": "std::string", - "id": 2, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3023276954 - }, - "m_serviceIndex": { - "type": "unsigned int", - "id": 3, - "offset": 204, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2103126710 - }, - "m_forceInteract": { - "type": "bool", - "id": 4, - "offset": 200, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1705789564 - } - } - }, - "1087281994": { - "name": "class ProvideSpellEffectTemplate*", - "bases": [ - "GameEffectTemplate", - "PropertyClass" - ], - "hash": 1087281994, - "properties": { - "m_effectName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2029161513 - }, - "m_effectCategory": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1852673222 - }, - "m_sortOrder": { - "type": "int", - "id": 2, - "offset": 148, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1411218206 - }, - "m_duration": { - "type": "double", - "id": 3, - "offset": 192, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2727932435 - }, - "m_stackingCategories": { - "type": "std::string", - "id": 4, - "offset": 160, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1774497525 - }, - "m_isPersistent": { - "type": "bool", - "id": 5, - "offset": 153, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 923861920 - }, - "m_bIsOnPet": { - "type": "bool", - "id": 6, - "offset": 154, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 522593303 - }, - "m_isPublic": { - "type": "bool", - "id": 7, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1728439822 - }, - "m_visualEffectAddName": { - "type": "std::string", - "id": 8, - "offset": 200, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3382086694 - }, - "m_visualEffectRemoveName": { - "type": "std::string", - "id": 9, - "offset": 232, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1541697323 - }, - "m_onAddFunctorName": { - "type": "std::string", - "id": 10, - "offset": 280, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1561843107 - }, - "m_onRemoveFunctorName": { - "type": "std::string", - "id": 11, - "offset": 312, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2559017864 - }, - "m_stackingRule": { - "type": "enum STACKING_RULE", - "id": 12, - "offset": 144, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 431568889, - "enum_options": { - "STACKING_ALLOWED": 0, - "STACKING_NOSTACK": 1, - "STACKING_REPLACE": 2 - } - }, - "m_spellName": { - "type": "std::string", - "id": 13, - "offset": 360, - "flags": 268435463, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2688485244, - "enum_options": { - "__BASECLASS": "SpellTemplate" - } - }, - "m_numSpells": { - "type": "int", - "id": 14, - "offset": 392, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1269498237 - } - } - }, - "1493868993": { - "name": "class ReagentShopOption*", - "bases": [ - "ServiceOptionBase", - "PropertyClass" - ], - "hash": 1493868993, - "properties": { - "m_serviceName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2206028813 - }, - "m_iconKey": { - "type": "std::string", - "id": 1, - "offset": 168, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2457138637 - }, - "m_displayKey": { - "type": "std::string", - "id": 2, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3023276954 - }, - "m_serviceIndex": { - "type": "unsigned int", - "id": 3, - "offset": 204, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2103126710 - }, - "m_forceInteract": { - "type": "bool", - "id": 4, - "offset": 200, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1705789564 - } - } - }, - "327136487": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 327136487, - "properties": { - "m_filePath": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3116244552 - }, - "m_shotLimit": { - "type": "int", - "id": 1, - "offset": 136, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1999036567 - }, - "m_levelIndex": { - "type": "unsigned int", - "id": 2, - "offset": 140, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 708309693 - }, - "m_perfectScore": { - "type": "int", - "id": 3, - "offset": 144, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 147156703 - }, - "m_flyOverCamera": { - "type": "std::string", - "id": 4, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3580817515 - } - } - }, - "1087131681": { - "name": "class SharedPointer", - "bases": [ - "GameEffectTimerTrigger", - "PropertyClass" - ], - "hash": 1087131681, - "properties": { - "m_radius": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 989410271 - }, - "m_triggerT": { - "type": "float", - "id": 1, - "offset": 76, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2138083583 - }, - "m_soundFiles": { - "type": "std::string", - "id": 2, - "offset": 80, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 3585199735 - } - } - }, - "1493242103": { - "name": "class ScavengerHuntComponent", - "bases": [ - "HousingGameInterface", - "PropertyClass" - ], - "hash": 1493242103, - "properties": {} - }, - "326041796": { - "name": "enum HousingTextureType", - "bases": [], - "hash": 326041796, - "properties": {} - }, - "1493082834": { - "name": "class SharedPointer", - "bases": [ - "Font", - "PropertyClass" - ], - "hash": 1493082834, - "properties": { - "m_sFilename": { - "type": "std::string", - "id": 0, - "offset": 160, - "flags": 131207, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2431512111 - }, - "m_fScale": { - "type": "float", - "id": 1, - "offset": 192, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 503137701 - }, - "m_nKerningAdjust": { - "type": "int", - "id": 2, - "offset": 200, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 287732353 - } - } - }, - "324600236": { - "name": "class GardenLevelControl*", - "bases": [ - "Window", - "PropertyClass" - ], - "hash": 324600236, - "properties": { - "m_sName": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306437263 - }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 65667, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621225959 - }, - "m_Style": { - "type": "unsigned int", - "id": 2, - "offset": 152, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "SCALE_CHILDREN": 2, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "FOCUS_LOCKED": 64, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152 - } - }, - "m_Flags": { - "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } - }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3105139380 - }, - "m_fTargetAlpha": { - "type": "float", - "id": 5, - "offset": 212, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1809129834 - }, - "m_fDisabledAlpha": { - "type": "float", - "id": 6, - "offset": 216, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1389987675 - }, - "m_fAlpha": { - "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 482130755 - }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3623628394 - }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2102211316 - }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1846695875 - }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3389835433 - }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2547159940 - }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2587533771 - }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3091503757 - } - } - }, - "1087281984": { - "name": "class ProvideSpellEffectTemplate", - "bases": [ - "GameEffectTemplate", - "PropertyClass" - ], - "hash": 1087281984, - "properties": { - "m_effectName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2029161513 - }, - "m_effectCategory": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1852673222 - }, - "m_sortOrder": { - "type": "int", - "id": 2, - "offset": 148, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1411218206 - }, - "m_duration": { - "type": "double", - "id": 3, - "offset": 192, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2727932435 - }, - "m_stackingCategories": { - "type": "std::string", - "id": 4, - "offset": 160, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1774497525 - }, - "m_isPersistent": { - "type": "bool", - "id": 5, - "offset": 153, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 923861920 - }, - "m_bIsOnPet": { - "type": "bool", - "id": 6, - "offset": 154, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 522593303 - }, - "m_isPublic": { - "type": "bool", - "id": 7, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1728439822 - }, - "m_visualEffectAddName": { - "type": "std::string", - "id": 8, - "offset": 200, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3382086694 - }, - "m_visualEffectRemoveName": { - "type": "std::string", - "id": 9, - "offset": 232, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1541697323 - }, - "m_onAddFunctorName": { - "type": "std::string", - "id": 10, - "offset": 280, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1561843107 - }, - "m_onRemoveFunctorName": { - "type": "std::string", - "id": 11, - "offset": 312, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2559017864 - }, - "m_stackingRule": { - "type": "enum STACKING_RULE", - "id": 12, - "offset": 144, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 431568889, - "enum_options": { - "STACKING_ALLOWED": 0, - "STACKING_NOSTACK": 1, - "STACKING_REPLACE": 2 - } - }, - "m_spellName": { - "type": "std::string", - "id": 13, - "offset": 360, - "flags": 268435463, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2688485244, - "enum_options": { - "__BASECLASS": "SpellTemplate" - } - }, - "m_numSpells": { - "type": "int", - "id": 14, - "offset": 392, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1269498237 - } - } - }, - "324040870": { - "name": "class HousingSignBehavior", - "bases": [ - "HousingSignBehaviorBase", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 324040870, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_packedName": { - "type": "std::string", - "id": 1, - "offset": 112, - "flags": 65543, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1805208228 - }, - "m_signText": { - "type": "std::string", - "id": 2, - "offset": 144, - "flags": 65543, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2920366641 - } - } - }, - "1493283063": { - "name": "class ScavengerHuntComponent*", - "bases": [ - "HousingGameInterface", - "PropertyClass" - ], - "hash": 1493283063, - "properties": {} - }, - "1087471851": { - "name": "class FriendlyPlayerWorldList*", - "bases": [ - "PropertyClass" - ], - "hash": 1087471851, - "properties": { - "m_friendlyPlayerWorldList": { - "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 780811899 - } - } - }, - "325273369": { - "name": "class AdventurePartyList*", - "bases": [ - "PropertyClass" - ], - "hash": 325273369, - "properties": { - "m_adventurePartyList": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2274288621 - } - } - }, - "324777766": { - "name": "class SharedPointer", - "bases": [ - "WizItemTemplate", - "ItemTemplate", - "GameObjectTemplate", - "CoreTemplate", - "PropertyClass" - ], - "hash": 324777766, - "properties": { - "m_behaviors": { - "type": "class BehaviorTemplate*", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1197808594 - }, - "m_objectName": { - "type": "std::string", - "id": 1, - "offset": 96, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2154940147 - }, - "m_templateID": { - "type": "unsigned int", - "id": 2, - "offset": 128, - "flags": 16777223, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1286746870 - }, - "m_visualID": { - "type": "unsigned int", - "id": 3, - "offset": 132, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1118778894 - }, - "m_adjectiveList": { - "type": "std::string", - "id": 4, - "offset": 248, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 3195213318 - }, - "m_exemptFromAOI": { - "type": "bool", - "id": 5, - "offset": 240, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1457879059 - }, - "m_displayName": { - "type": "std::string", - "id": 6, - "offset": 168, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2446900370 - }, - "m_description": { - "type": "std::string", - "id": 7, - "offset": 136, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1649374815 - }, - "m_nObjectType": { - "type": "enum ObjectType", - "id": 8, - "offset": 200, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2118905880, - "enum_options": { - "OT_UNDEFINED": 0, - "OT_PLAYER": 1, - "OT_NPC": 2, - "OT_PROP": 3, - "OT_OBJECT": 4, - "OT_HOUSE": 5, - "OT_KEY": 6, - "OT_OLD_KEY": 7, - "OT_DEED": 8, - "OT_MAIL": 9, - "OT_RECIPE": 17, - "OT_EQUIP_HEAD": 10, - "OT_EQUIP_CHEST": 11, - "OT_EQUIP_LEGS": 12, - "OT_EQUIP_HANDS": 13, - "OT_EQUIP_FINGER": 14, - "OT_EQUIP_FEET": 15, - "OT_EQUIP_EAR": 16, - "OT_BUILDING_BLOCK": 18, - "OT_BUILDING_BLOCK_SOLID": 19, - "OT_GOLF": 20, - "OT_DOOR": 21, - "OT_PET": 22, - "OT_FABRIC": 23, - "OT_WINDOW": 24, - "OT_ROOF": 25, - "OT_HORSE": 26, - "OT_STRUCTURE": 27, - "OT_HOUSING_TEXTURE": 28, - "OT_PLANT": 29 - } - }, - "m_sIcon": { - "type": "std::string", - "id": 9, - "offset": 208, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306259831 - }, - "m_equipRequirements": { - "type": "class RequirementList*", - "id": 10, - "offset": 280, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2762617226 - }, - "m_purchaseRequirements": { - "type": "class RequirementList*", - "id": 11, - "offset": 288, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3174641793 - }, - "m_equipEffects": { - "type": "class GameEffectInfo*", - "id": 12, - "offset": 296, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 836628351 - }, - "m_baseCost": { - "type": "float", - "id": 13, - "offset": 312, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1565352651 - }, - "m_creditsCost": { - "type": "float", - "id": 14, - "offset": 320, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 805514974 - }, - "m_avatarInfo": { - "type": "class AvatarItemInfoBase*", - "id": 15, - "offset": 328, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2627321299 - }, - "m_avatarFlags": { - "type": "std::string", - "id": 16, - "offset": 336, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2347762759 - }, - "m_itemLimit": { - "type": "int", - "id": 17, - "offset": 316, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1799746856 - }, - "m_holidayFlag": { - "type": "std::string", - "id": 18, - "offset": 352, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2994795359 - }, - "m_itemSetBonusTemplateID": { - "type": "unsigned int", - "id": 19, - "offset": 384, - "flags": 33554439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1316835672 - }, - "m_numPrimaryColors": { - "type": "int", - "id": 20, - "offset": 428, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 981103872 - }, - "m_numSecondaryColors": { - "type": "int", - "id": 21, - "offset": 432, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1310416868 - }, - "m_numPatterns": { - "type": "int", - "id": 22, - "offset": 436, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 953162171 - }, - "m_school": { - "type": "std::string", - "id": 23, - "offset": 392, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2438566051 - }, - "m_arenaPointCost": { - "type": "int", - "id": 24, - "offset": 440, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1819621796 - }, - "m_pvpCurrencyCost": { - "type": "int", - "id": 25, - "offset": 444, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 645595444 - }, - "m_pvpTourneyCurrencyCost": { - "type": "int", - "id": 26, - "offset": 448, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 517874954 - }, - "m_rank": { - "type": "int", - "id": 27, - "offset": 424, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 219803942 - }, - "m_boyIconIndex": { - "type": "int", - "id": 28, - "offset": 452, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 802140453 - }, - "m_girlIconIndex": { - "type": "int", - "id": 29, - "offset": 456, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 832706793 - }, - "m_leashOffsetOverride": { - "type": "class SharedPointer", - "id": 30, - "offset": 464, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1692586788 - }, - "m_rarity": { - "type": "enum RarityType", - "id": 31, - "offset": 460, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2253792108, - "enum_options": { - "RT_COMMON": 0, - "RT_UNCOMMON": 1, - "RT_RARE": 2, - "RT_ULTRARARE": 3, - "RT_EPIC": 4 - } - }, - "m_iconIndex": { - "type": "int", - "id": 32, - "offset": 480, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1053730811 - }, - "m_imageName": { - "type": "std::string", - "id": 33, - "offset": 488, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2391520543 - }, - "m_statModifierSet": { - "type": "class PetStatModificationSet", - "id": 34, - "offset": 520, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2182942670 - } - } - }, - "1495715542": { - "name": "class CastleToursBehavior*", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1495715542, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - } - } - }, - "1087768358": { - "name": "class CastleMagicSpellTemplate", - "bases": [ - "SpellTemplate", - "CoreTemplate", - "PropertyClass" - ], - "hash": 1087768358, - "properties": { - "m_behaviors": { - "type": "class BehaviorTemplate*", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1197808594 - }, - "m_name": { - "type": "std::string", - "id": 1, - "offset": 96, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1717359772 - }, - "m_description": { - "type": "std::string", - "id": 2, - "offset": 168, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1649374815 - }, - "m_advancedDescription": { - "type": "std::string", - "id": 3, - "offset": 200, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3465713013 - }, - "m_displayName": { - "type": "std::string", - "id": 4, - "offset": 136, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2446900370 - }, - "m_spellBase": { - "type": "std::string", - "id": 5, - "offset": 248, - "flags": 268435463, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2688054198, - "enum_options": { - "__BASECLASS": "CinematicTemplate" - } - }, - "m_effects": { - "type": "class SharedPointer", - "id": 6, - "offset": 280, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 370726379 - }, - "m_sMagicSchoolName": { - "type": "std::string", - "id": 7, - "offset": 312, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2035693400 - }, - "m_sTypeName": { - "type": "std::string", - "id": 8, - "offset": 352, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3580785905 - }, - "m_trainingCost": { - "type": "int", - "id": 9, - "offset": 384, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 982588239 - }, - "m_accuracy": { - "type": "int", - "id": 10, - "offset": 388, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1636315493 - }, - "m_baseCost": { - "type": "int", - "id": 11, - "offset": 232, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1475151502 - }, - "m_creditsCost": { - "type": "int", - "id": 12, - "offset": 236, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 715313825 - }, - "m_pvpCurrencyCost": { - "type": "int", - "id": 13, - "offset": 240, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 645595444 - }, - "m_pvpTourneyCurrencyCost": { - "type": "int", - "id": 14, - "offset": 244, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 517874954 - }, - "m_boosterPackIcon": { - "type": "std::string", - "id": 15, - "offset": 496, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3428653697 - }, - "m_validTargetSpells": { - "type": "unsigned int", - "id": 16, - "offset": 392, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2355782967 - }, - "m_PvP": { - "type": "bool", - "id": 17, - "offset": 408, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 269492361 - }, - "m_PvE": { - "type": "bool", - "id": 18, - "offset": 409, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 269492350 - }, - "m_noPvPEnchant": { - "type": "bool", - "id": 19, - "offset": 410, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 661581703 - }, - "m_noPvEEnchant": { - "type": "bool", - "id": 20, - "offset": 411, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 10144220 - }, - "m_battlegroundsOnly": { - "type": "bool", - "id": 21, - "offset": 412, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1244782419 - }, - "m_Treasure": { - "type": "bool", - "id": 22, - "offset": 413, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1749096414 - }, - "m_noDiscard": { - "type": "bool", - "id": 23, - "offset": 414, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 565749226 - }, - "m_leavesPlayWhenCast": { - "type": "bool", - "id": 24, - "offset": 532, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 698216294 - }, - "m_imageIndex": { - "type": "int", - "id": 25, - "offset": 416, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1570500405 - }, - "m_imageName": { - "type": "std::string", - "id": 26, - "offset": 424, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2391520543 - }, - "m_cloaked": { - "type": "bool", - "id": 27, - "offset": 489, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 7349510 - }, - "m_casterInvisible": { - "type": "bool", - "id": 28, - "offset": 490, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 310214650 - }, - "m_adjectives": { - "type": "std::string", - "id": 29, - "offset": 576, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2967855037 - }, - "m_spellSourceType": { - "type": "enum SpellTemplate::kSpellSourceType", - "id": 30, - "offset": 528, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 156272727, - "enum_options": { - "kCaster": 0, - "kPet": 1, - "kShadowCreature": 2, - "kWeapon": 3, - "kEquipment": 4 - } - }, - "m_cloakedName": { - "type": "std::string", - "id": 31, - "offset": 536, - "flags": 268435463, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2846679215, - "enum_options": { - "__BASECLASS": "SpellTemplate" - } - }, - "m_purchaseRequirements": { - "type": "class RequirementList*", - "id": 32, - "offset": 608, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3174641793 - }, - "m_displayRequirements": { - "type": "class RequirementList*", - "id": 33, - "offset": 840, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3646782876 - }, - "m_descriptionTrainer": { - "type": "std::string", - "id": 34, - "offset": 616, - "flags": 8388871, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1756093908 - }, - "m_descriptionCombatHUD": { - "type": "std::string", - "id": 35, - "offset": 648, - "flags": 8388871, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1631478006 - }, - "m_displayIndex": { - "type": "int", - "id": 36, - "offset": 680, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1250551048 - }, - "m_hiddenFromEffectsWindow": { - "type": "bool", - "id": 37, - "offset": 684, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1832736331 - }, - "m_ignoreCharms": { - "type": "bool", - "id": 38, - "offset": 685, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1840075893 - }, - "m_alwaysFizzle": { - "type": "bool", - "id": 39, - "offset": 686, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2030988856 - }, - "m_spellCategory": { - "type": "std::string", - "id": 40, - "offset": 688, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2472376729 - }, - "m_showPolymorphedName": { - "type": "bool", - "id": 41, - "offset": 720, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2097929096 - }, - "m_skipTruncation": { - "type": "bool", - "id": 42, - "offset": 721, - "flags": 263, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1838335249 - }, - "m_maxCopies": { - "type": "unsigned int", - "id": 43, - "offset": 724, - "flags": 263, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 403022326 - }, - "m_levelRestriction": { - "type": "int", - "id": 44, - "offset": 728, - "flags": 263, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 176502472 - }, - "m_delayEnchantment": { - "type": "bool", - "id": 45, - "offset": 732, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 191336919 - }, - "m_delayEnchantmentOrder": { - "type": "enum SpellEffect::kDelayOrder", - "id": 46, - "offset": 736, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2526055263, - "enum_options": { - "SpellEffect::kAnyOrder": 0, - "SpellEffect::kFirst": 1, - "SpellEffect::kSecond": 2 - } - }, - "m_previousSpellName": { - "type": "std::string", - "id": 47, - "offset": 744, - "flags": 268435463, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2903322585, - "enum_options": { - "__BASECLASS": "SpellTemplate" - } - }, - "m_cardFront": { - "type": "std::string", - "id": 48, - "offset": 456, - "flags": 131359, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3557598526 - }, - "m_useGloss": { - "type": "bool", - "id": 49, - "offset": 488, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 668817544 - }, - "m_ignoreDispel": { - "type": "bool", - "id": 50, - "offset": 776, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1881041624 - }, - "m_backRowFriendly": { - "type": "bool", - "id": 51, - "offset": 777, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 501584377 - }, - "m_spellRank": { - "type": "class SharedPointer", - "id": 52, - "offset": 784, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3152361374 - }, - "m_secondarySchoolName": { - "type": "std::string", - "id": 53, - "offset": 800, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1803268236 - }, - "m_spellFusion": { - "type": "unsigned int", - "id": 54, - "offset": 836, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1658928321 - }, - "m_requiredSchoolName": { - "type": "std::string", - "id": 55, - "offset": 848, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3576058981 - }, - "m_castleMagicSpellType": { - "type": "enum CastleMagicSpellTemplate::CastleMagicSpellType", - "id": 56, - "offset": 880, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1857887320, - "enum_options": { - "CM_Action": 0, - "CM_Effect": 1, - "CM_Utility": 2, - "CM_Logic": 3 - } - }, - "m_castleMagicSpellEffect": { - "type": "enum CastleMagicSpellTemplate::CastleMagicSpellEffect", - "id": 57, - "offset": 884, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1408413012, - "enum_options": { - "CM_None": 0, - "CM_MakeInvisible": 1, - "CM_MakeVisible": 2, - "CM_PlaySpellEffect": 3, - "CM_PlaySoundEffect": 4, - "CM_RestoreObject": 5, - "CM_MoveObject": 6, - "CM_TurnObject": 7, - "CM_ScaleObject": 8, - "CM_TeleportObject": 9, - "CM_MoveObjectToMe": 10, - "CM_MoveTowardMe": 11, - "CM_PlayMusicScroll": 12, - "CM_MoveObjectForward": 13, - "CM_MoveObjectBackward": 14, - "CM_TurnLikeMe": 15, - "CM_TurnTowardMe": 16, - "CM_LogicEffect": 17, - "CM_StartTimer": 18, - "CM_StopTimer": 19, - "CM_ActivateReflector": 20, - "CM_CameraShake": 21, - "CM_SetCounter": 22, - "CM_SetBrazier": 23, - "CM_UseItem": 24, - "CM_Solidify": 25, - "CM_PetControl": 26, - "CM_MountControl": 27, - "CM_CameraControl": 28, - "CM_TeleportPlayer": 29, - "CM_PVPSigilControl": 30, - "CM_TeleportAllPlayers": 31, - "CM_MakeTranslucent": 32, - "CM_MakeOpaque": 33, - "CM_SilenceItem": 34, - "CM_MoveFaster": 35, - "CM_PVPDuelModifier": 36, - "CM_StopMovement": 37, - "CM_UnsilenceItem": 38, - "CM_PlayInstrumentLoop": 39, - "CM_StopMusic": 40, - "CM_PlayMusicPlayer": 41, - "CM_PlayAsPetControl": 42 - } - }, - "m_animationKFM": { - "type": "std::string", - "id": 58, - "offset": 888, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2466280761 - }, - "m_animationSequence": { - "type": "std::string", - "id": 59, - "offset": 920, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2493126132 - }, - "m_effectSchool": { - "type": "std::string", - "id": 60, - "offset": 952, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2688245616 - } - } - }, - "1087745605": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1087745605, - "properties": { - "m_unlockTriggerList": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2206769498 - } - } - }, - "1495730882": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1495730882, - "properties": {} - }, - "326864513": { - "name": "class ClientZoneTokenTimer", - "bases": [ - "ZoneTokenTimer", - "ZoneTokenBase", - "PropertyClass" - ], - "hash": 326864513, - "properties": { - "m_debugName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3553984419 - }, - "m_adjectiveList": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 3195213318 - }, - "m_icon": { - "type": "std::string", - "id": 2, - "offset": 120, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1717182340 - }, - "m_iconBW": { - "type": "std::string", - "id": 3, - "offset": 152, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2047461085 - }, - "m_description": { - "type": "std::string", - "id": 4, - "offset": 184, - "flags": 8388639, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1649374815 - }, - "m_displayMode": { - "type": "enum ZTDisplayMode", - "id": 5, - "offset": 216, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2216526410, - "enum_options": { - "ZTDM_Shown": 0, - "ZTDM_Discoverable": 1, - "ZTDM_Hidden": 2 - } - }, - "m_storage": { - "type": "enum ZTStorage", - "id": 6, - "offset": 220, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2290454852, - "enum_options": { - "ZTS_Player": 0, - "ZTS_Zone": 1 - } - }, - "m_onEnable": { - "type": "class SharedPointer", - "id": 7, - "offset": 224, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2591736864 - }, - "m_onDiscover": { - "type": "class SharedPointer", - "id": 8, - "offset": 240, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2826026872 - }, - "m_onDisable": { - "type": "class SharedPointer", - "id": 9, - "offset": 256, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1860656717 - }, - "m_sourceID": { - "type": "gid", - "id": 10, - "offset": 272, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1134700470 - }, - "m_inZone": { - "type": "bool", - "id": 11, - "offset": 280, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 564535654 - }, - "m_enabled": { - "type": "bool", - "id": 12, - "offset": 281, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 504506718 - }, - "m_discovered": { - "type": "bool", - "id": 13, - "offset": 282, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2060478331 - }, - "m_duration": { - "type": "std::string", - "id": 14, - "offset": 288, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2327821921 - }, - "m_onExpire": { - "type": "class SharedPointer", - "id": 15, - "offset": 320, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2604142950 - }, - "m_timeTriggers": { - "type": "class SharedPointer", - "id": 16, - "offset": 336, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1112107844 - }, - "m_expireTime": { - "type": "unsigned int", - "id": 17, - "offset": 356, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1836304873 - } - } - }, - "326789209": { - "name": "class SharedPointer", - "bases": [ - "WizardAutobotManager", - "AutobotManager", - "PropertyClass" - ], - "hash": 326789209, - "properties": {} - }, - "1088004921": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1088004921, - "properties": { - "m_playerList": { - "type": "gid", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1909774945 - } - } - }, - "1496146765": { - "name": "class LoyaltyStoreData*", - "bases": [ - "PropertyClass" - ], - "hash": 1496146765, - "properties": { - "m_items": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2752134535 - } - } - }, - "326780975": { - "name": "class TeleportProximityBehaviorBase*", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 326780975, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - } - } - }, - "1496134822": { - "name": "struct std::pair", - "bases": [], - "hash": 1496134822, - "properties": {} - }, - "1089559212": { - "name": "class NPCDataList*", - "bases": [ - "PropertyClass" - ], - "hash": 1089559212, - "properties": { - "m_npcList": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2709214274 - }, - "m_zoneType": { - "type": "enum NPCDataList::ZONE_TYPE", - "id": 1, - "offset": 88, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 975028587, - "enum_options": { - "CurrentZone": 0, - "OtherZons": 1, - "None": 2 - } - } - } - }, - "1088696422": { - "name": "class ZoneTokenTimerControl", - "bases": [ - "ZoneTokenBaseControl", - "Window", - "PropertyClass" - ], - "hash": 1088696422, - "properties": { - "m_sName": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306437263 - }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621225959 - }, - "m_Style": { - "type": "unsigned int", - "id": 2, - "offset": 152, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "SCALE_CHILDREN": 2, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "FOCUS_LOCKED": 64, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152 - } - }, - "m_Flags": { - "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } - }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3105139380 - }, - "m_fTargetAlpha": { - "type": "float", - "id": 5, - "offset": 212, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1809129834 - }, - "m_fDisabledAlpha": { - "type": "float", - "id": 6, - "offset": 216, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1389987675 - }, - "m_fAlpha": { - "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 482130755 - }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3623628394 - }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2102211316 - }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1846695875 - }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3389835433 - }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2547159940 - }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2587533771 - }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3091503757 - } - } - }, - "326864553": { - "name": "class ClientZoneTokenTimer*", - "bases": [ - "ZoneTokenTimer", - "ZoneTokenBase", - "PropertyClass" - ], - "hash": 326864553, - "properties": { - "m_debugName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3553984419 - }, - "m_adjectiveList": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 3195213318 - }, - "m_icon": { - "type": "std::string", - "id": 2, - "offset": 120, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1717182340 - }, - "m_iconBW": { - "type": "std::string", - "id": 3, - "offset": 152, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2047461085 - }, - "m_description": { - "type": "std::string", - "id": 4, - "offset": 184, - "flags": 8388639, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1649374815 - }, - "m_displayMode": { - "type": "enum ZTDisplayMode", - "id": 5, - "offset": 216, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2216526410, - "enum_options": { - "ZTDM_Shown": 0, - "ZTDM_Discoverable": 1, - "ZTDM_Hidden": 2 - } - }, - "m_storage": { - "type": "enum ZTStorage", - "id": 6, - "offset": 220, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2290454852, - "enum_options": { - "ZTS_Player": 0, - "ZTS_Zone": 1 - } - }, - "m_onEnable": { - "type": "class SharedPointer", - "id": 7, - "offset": 224, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2591736864 - }, - "m_onDiscover": { - "type": "class SharedPointer", - "id": 8, - "offset": 240, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2826026872 - }, - "m_onDisable": { - "type": "class SharedPointer", - "id": 9, - "offset": 256, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1860656717 - }, - "m_sourceID": { - "type": "gid", - "id": 10, - "offset": 272, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1134700470 - }, - "m_inZone": { - "type": "bool", - "id": 11, - "offset": 280, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 564535654 - }, - "m_enabled": { - "type": "bool", - "id": 12, - "offset": 281, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 504506718 - }, - "m_discovered": { - "type": "bool", - "id": 13, - "offset": 282, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2060478331 - }, - "m_duration": { - "type": "std::string", - "id": 14, - "offset": 288, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2327821921 - }, - "m_onExpire": { - "type": "class SharedPointer", - "id": 15, - "offset": 320, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2604142950 - }, - "m_timeTriggers": { - "type": "class SharedPointer", - "id": 16, - "offset": 336, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1112107844 - }, - "m_expireTime": { - "type": "unsigned int", - "id": 17, - "offset": 356, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1836304873 - } - } - }, - "1088292311": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1088292311, - "properties": { - "m_team": { - "type": "unsigned char", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 857479191 - }, - "m_passport": { - "type": "unsigned int", - "id": 1, - "offset": 76, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1362521513 - }, - "m_unitTypesList": { - "type": "unsigned char", - "id": 2, - "offset": 80, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2643134017 - }, - "m_cardsUsedList": { - "type": "unsigned int", - "id": 3, - "offset": 96, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 711045287 - } - } - }, - "1496310605": { - "name": "class LoyaltyStoreData", - "bases": [ - "PropertyClass" - ], - "hash": 1496310605, - "properties": { - "m_items": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2752134535 - } - } - }, - "1496238955": { - "name": "class HouseNameList*", - "bases": [ - "PropertyClass" - ], - "hash": 1496238955, - "properties": { - "m_houseZoneList": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2061331472 - } - } - }, - "327108655": { - "name": "class TeleportProximityBehaviorBase", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 327108655, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - } - } - }, - "1088697702": { - "name": "class ZoneTokenTimerControl*", - "bases": [ - "ZoneTokenBaseControl", - "Window", - "PropertyClass" - ], - "hash": 1088697702, - "properties": { - "m_sName": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306437263 - }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621225959 - }, - "m_Style": { - "type": "unsigned int", - "id": 2, - "offset": 152, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "SCALE_CHILDREN": 2, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "FOCUS_LOCKED": 64, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152 - } - }, - "m_Flags": { - "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } - }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3105139380 - }, - "m_fTargetAlpha": { - "type": "float", - "id": 5, - "offset": 212, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1809129834 - }, - "m_fDisabledAlpha": { - "type": "float", - "id": 6, - "offset": 216, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1389987675 - }, - "m_fAlpha": { - "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 482130755 - }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3623628394 - }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2102211316 - }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1846695875 - }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3389835433 - }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2547159940 - }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2587533771 - }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3091503757 - } - } - }, - "1496238958": { - "name": "class HouseNameList", - "bases": [ - "PropertyClass" - ], - "hash": 1496238958, - "properties": { - "m_houseZoneList": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2061331472 - } - } - }, - "328077231": { - "name": "class StatGlobe*", - "bases": [ - "ControlSprite", - "Window", - "PropertyClass" - ], - "hash": 328077231, - "properties": { - "m_sName": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306437263 - }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621225959 - }, - "m_Style": { - "type": "unsigned int", - "id": 2, - "offset": 152, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "SCALE_CHILDREN": 2, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "FOCUS_LOCKED": 64, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152 - } - }, - "m_Flags": { - "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648, - "ONE_SHOT": 8388608, - "FLIPPED_HORIZONTAL": 16777216, - "FLIPPED_VERTICAL": 33554432 - } - }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3105139380 - }, - "m_fTargetAlpha": { - "type": "float", - "id": 5, - "offset": 212, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1809129834 - }, - "m_fDisabledAlpha": { - "type": "float", - "id": 6, - "offset": 216, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1389987675 - }, - "m_fAlpha": { - "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 482130755 - }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3623628394 - }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2102211316 - }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1846695875 - }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3389835433 - }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2547159940 - }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2587533771 - }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3091503757 - }, - "m_pMaterial": { - "type": "class SharedPointer", - "id": 16, - "offset": 592, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3479277078 - }, - "m_fRotation": { - "type": "float", - "id": 17, - "offset": 608, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1175400173 - }, - "m_Color": { - "type": "class Color", - "id": 18, - "offset": 584, - "flags": 262279, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1753714077 - }, - "m_textColor": { - "type": "class Color", - "id": 19, - "offset": 612, - "flags": 262279, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2528109250 - }, - "m_textComponent": { - "type": "class TextComponent", - "id": 20, - "offset": 616, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3491704390 - }, - "m_amount": { - "type": "int", - "id": 21, - "offset": 800, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 248546638 - } - } - }, - "327928967": { - "name": "class SharedPointer", - "bases": [ - "InfractionMessageBox", - "InfractionPenalty", - "PropertyClass" - ], - "hash": 327928967, - "properties": { - "m_internalID": { - "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1854540375 - }, - "m_categoryID": { - "type": "unsigned int", - "id": 1, - "offset": 76, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1382795736 - }, - "m_removeAtPointValue": { - "type": "float", - "id": 2, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2112196961 - }, - "m_expireTime": { - "type": "unsigned int", - "id": 3, - "offset": 84, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1836304873 - }, - "m_titleKey": { - "type": "std::string", - "id": 4, - "offset": 88, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3096106918 - }, - "m_messageKey": { - "type": "std::string", - "id": 5, - "offset": 120, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3561518217 - } - } - }, - "1089687566": { - "name": "class BattleCardPurchaseInfo*", - "bases": [ - "PropertyClass" - ], - "hash": 1089687566, - "properties": { - "m_spellName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2688485244 - }, - "m_maxCopies": { - "type": "int", - "id": 1, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 191619875 - } - } - }, - "1496968148": { - "name": "class ClientBattleBookBehavior*", - "bases": [ - "BattleBookBehavior", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1496968148, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_spellList": { - "type": "class SharedPointer", - "id": 1, - "offset": 120, - "flags": 27, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2181913740 - }, - "m_rating": { - "type": "class SharedPointer", - "id": 2, - "offset": 136, - "flags": 27, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2464459535 - } - } - }, - "1518539149": { - "name": "class TeamHelpVolunteerInfo*", - "bases": [ - "PropertyClass" - ], - "hash": 1518539149, - "properties": { - "m_worldID": { - "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 397177058 - }, - "m_flags": { - "type": "unsigned char", - "id": 1, - "offset": 76, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1431998045 - } - } - }, - "1874631798": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1874631798, - "properties": { - "m_bracketIDList": { - "type": "gid", - "id": 0, - "offset": 72, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1493156413 - } - } - }, - "721338176": { - "name": "class ClientHideShadowCreatureCinematicAction", - "bases": [ - "HideShadowCreatureCinematicAction", - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 721338176, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - } - } - }, - "1089850091": { - "name": "class EquippedItemInfoList*", - "bases": [ - "PropertyClass" - ], - "hash": 1089850091, - "properties": { - "m_infoList": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1525681909 - } - } - }, - "1512289648": { - "name": "class SharedPointer", - "bases": [ - "ServiceOptionBase", - "PropertyClass" - ], - "hash": 1512289648, - "properties": { - "m_serviceName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2206028813 - }, - "m_iconKey": { - "type": "std::string", - "id": 1, - "offset": 168, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2457138637 - }, - "m_displayKey": { - "type": "std::string", - "id": 2, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3023276954 - }, - "m_serviceIndex": { - "type": "unsigned int", - "id": 3, - "offset": 204, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2103126710 - }, - "m_forceInteract": { - "type": "bool", - "id": 4, - "offset": 200, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1705789564 - } - } - }, - "1089850051": { - "name": "class EquippedItemInfoList", - "bases": [ - "PropertyClass" - ], - "hash": 1089850051, - "properties": { - "m_infoList": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1525681909 - } - } - }, - "1507679318": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1507679318, - "properties": { - "m_serviceOptions": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2340755721 - }, - "m_personaMadlibs": { - "type": "class SharedPointer", - "id": 1, - "offset": 96, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2418856780 - }, - "m_npcNameKey": { - "type": "std::string", - "id": 2, - "offset": 112, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1976589766 - }, - "m_npcTextKey": { - "type": "std::string", - "id": 3, - "offset": 144, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3453072394 - }, - "m_npcIcon": { - "type": "std::string", - "id": 4, - "offset": 176, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2965253381 - }, - "m_npcGreetingSound": { - "type": "std::string", - "id": 5, - "offset": 208, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1826980602 - }, - "m_npcFarewellSound": { - "type": "std::string", - "id": 6, - "offset": 240, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3241528183 - }, - "m_bTurnPlayerToFace": { - "type": "bool", - "id": 7, - "offset": 272, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 540096893 - }, - "m_clickToInteractOnly": { - "type": "bool", - "id": 8, - "offset": 273, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1696440536 - } - } - }, - "1089807005": { - "name": "class SharedPointer", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 1089807005, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - } - } - }, - "1504129576": { - "name": "class WizShoppingOption*", - "bases": [ - "ServiceOptionBase", - "PropertyClass" - ], - "hash": 1504129576, - "properties": { - "m_serviceName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2206028813 - }, - "m_iconKey": { - "type": "std::string", - "id": 1, - "offset": 168, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2457138637 - }, - "m_displayKey": { - "type": "std::string", - "id": 2, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3023276954 - }, - "m_serviceIndex": { - "type": "unsigned int", - "id": 3, - "offset": 204, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2103126710 - }, - "m_forceInteract": { - "type": "bool", - "id": 4, - "offset": 200, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1705789564 - } - } - }, - "1884277216": { - "name": "class SharedPointer", - "bases": [ - "CoreTemplate", - "PropertyClass" - ], - "hash": 1884277216, - "properties": { - "m_behaviors": { - "type": "class BehaviorTemplate*", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1197808594 - }, - "m_templateID": { - "type": "unsigned int", - "id": 1, - "offset": 96, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1286746870 - }, - "m_mobTemplateID": { - "type": "unsigned int", - "id": 2, - "offset": 100, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1268089108 - }, - "m_effects": { - "type": "class GameEffectInfo*", - "id": 3, - "offset": 104, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 588086299 - } - } - }, - "723756188": { - "name": "class SharedPointer", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 723756188, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - }, - "m_eGender": { - "type": "enum eGender", - "id": 1, - "offset": 168, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2776344943, - "enum_options": { - "Male": 1, - "Female": 0, - "Neutral": 2 - } - }, - "m_eRace": { - "type": "enum eRace", - "id": 2, - "offset": 172, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 963057554, + "hash": 963057554, "enum_options": { "Bat": 88066, "BatLightning": 1472842576, @@ -364442,1153 +25280,5201 @@ "PP_Fairy_Fire": 1847789544, "MNT_Mustang_B": 1448793691, "PP_FireElfMyth": 1933609060, - "MNT_KT-BoatRide": 1560860110 + "MNT_KT-BoatRide": 1560860110, + "MNT_ShadowMagic": 2095978357, + "MNT_MardiGrasFloat_A": 1740674432, + "PP_ChineseNYSnake": 988201940, + "MNT_AnubisDog": 1995079956, + "PP_ShadowImp_A": 1604849432, + "PP_ShadowImp_B": 1604849438, + "PP_ShadowImp_C": 1604849436, + "MNT_ShadowMagic_B": 2093870965, + "MNT_ShadowMagic_C": 2093805429, + "Guest_KT_SE_Tritops_Warrior_I_01": 97516901, + "Guest_KT_SE_DS_Draconian_Model_01": 1916095079, + "Guest_KT_SE_Beetle_Scarab_C_01_L50": 1064004307, + "Guest_KT_SE_Roach_Warrior_C_03": 1872574203, + "Guest_KT_SE_Roach_Warrior_C_04": 1871918843, + "Guest_KT_SE_Roach_Warrior_C_05": 1871787771, + "Guest_KT_SE_Beetle_Scarab_C_01": 1353410759, + "Guest_KT_SE_Mander_Citizen_B_01_L50": 2044509396, + "Guest_KT_SE_Mander_CitizenF_B_01_L50": 164327682, + "Guest_KT_SE_Treant_Tormented_A_01": 1359800879, + "Guest_KT_SE_Treant_Base_A_01": 765512948, + "Guest_KT_SE_Mander_Citizen_F_D_05": 171244620, + "Guest_KT_SE_Mander_CitizenF_D_01": 163791037, + "Guest_KT_SE_Mander_CitizenF_D_02": 298008765, + "Guest_KT_SE_Mander_CitizenF_D_03": 432226493, + "Guest_KT_SE_Mander_CitizenF_D_04": 566444221, + "Guest_KT_SE_Mander_MummyF_A_01": 964349080, + "Guest_KT_SE_Mander_MummyF_A_02": 964480152, + "Guest_KT_SE_MC_Wraith_Model_01": 1101442118, + "Guest_KT_SE_Mander_CitizenF_B_02": 298000573, + "MNT_Wheelbarrow": 614248817, + "MNT_StubbornLlama": 221089074 + } + }, + "m_badgeTitle": { + "type": "std::string", + "id": 6, + "offset": 440, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1783354256 + }, + "m_chatPermissions": { + "type": "unsigned int", + "id": 7, + "offset": 360, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1848314473 + }, + "m_pvpIconID": { + "type": "unsigned int", + "id": 8, + "offset": 472, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2083838009 + }, + "m_localeID": { + "type": "unsigned int", + "id": 9, + "offset": 484, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 792971274 + }, + "m_friendlyPlayer": { + "type": "bool", + "id": 10, + "offset": 490, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 990699901 + }, + "m_volunteer": { + "type": "bool", + "id": 11, + "offset": 491, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1751284471 + }, + "m_guildName": { + "type": "unsigned int", + "id": 12, + "offset": 492, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 778026115 + }, + "m_guildNameLocale": { + "type": "int", + "id": 13, + "offset": 496, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 656991008 + }, + "m_overallRating": { + "type": "unsigned int", + "id": 14, + "offset": 544, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 462138631 + }, + "m_activeRating": { + "type": "unsigned int", + "id": 15, + "offset": 548, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 234391118 + }, + "m_petLevel": { + "type": "unsigned int", + "id": 16, + "offset": 552, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2225922446 + }, + "m_bHasSocketedJewel": { + "type": "bool", + "id": 17, + "offset": 556, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 103587834 + }, + "m_hideName": { + "type": "bool", + "id": 18, + "offset": 557, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 645410894 + }, + "m_templateID": { + "type": "unsigned int", + "id": 19, + "offset": 564, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1286746870 + } + } + }, + "1030393480": { + "name": "class ItemSetBonusData", + "bases": [ + "PropertyClass" + ], + "hash": 1030393480, + "properties": { + "m_numItemsToEquip": { + "type": "int", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 243822227 + }, + "m_description": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1649374815 + }, + "m_equipEffectsGrantedRequirements": { + "type": "class RequirementList*", + "id": 2, + "offset": 112, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2841976527 + }, + "m_equipEffectsGranted": { + "type": "class GameEffectInfo*", + "id": 3, + "offset": 120, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1136533636 + } + } + }, + "1483251235": { + "name": "class ClientPetGameBehavior", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1483251235, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + } + } + }, + "1456127734": { + "name": "class SphereGeomParams", + "bases": [ + "GeomParams", + "PropertyClass" + ], + "hash": 1456127734, + "properties": { + "m_eType": { + "type": "enum ProxyType", + "id": 0, + "offset": 72, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1656534066, + "enum_options": { + "ProxyTypeBox": 0, + "ProxyTypeRay": 1, + "ProxyTypeSphere": 2, + "ProxyTypeCylinder": 3, + "ProxyTypeTube": 4, + "ProxyTypePlane": 5, + "ProxyTypeMesh": 6, + "ProxyTypeInvalid": 7 + } + }, + "m_fRadius": { + "type": "float", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 787972805 + } + } + }, + "1887725707": { + "name": "class BadgeInfo*", + "bases": [ + "PropertyClass" + ], + "hash": 1887725707, + "properties": { + "m_badgeNameID": { + "type": "unsigned int", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 800680558 + }, + "m_badgeTitle": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1783354256 + }, + "m_badgeInfo": { + "type": "std::string", + "id": 2, + "offset": 112, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3002782298 + }, + "m_badgeProgressInfo": { + "type": "std::string", + "id": 3, + "offset": 144, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1902667503 + }, + "m_badgeProgress": { + "type": "int", + "id": 4, + "offset": 176, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1577305122 + }, + "m_badgeMax": { + "type": "int", + "id": 5, + "offset": 180, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 891676691 + }, + "m_badgeComplete": { + "type": "bool", + "id": 6, + "offset": 184, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1943559071 + }, + "m_index": { + "type": "unsigned int", + "id": 7, + "offset": 188, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1009433893 + }, + "m_badgeOutline": { + "type": "std::string", + "id": 8, + "offset": 192, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1548975214 + }, + "m_badgeImage": { + "type": "std::string", + "id": 9, + "offset": 224, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1770432017 + }, + "m_dynamicBadge": { + "type": "bool", + "id": 10, + "offset": 256, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1496846667 + }, + "m_badgeFilterID": { + "type": "unsigned int", + "id": 11, + "offset": 260, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1965286611 + }, + "m_filterIndex": { + "type": "unsigned int", + "id": 12, + "offset": 264, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1526994539 + }, + "m_overcount": { + "type": "bool", + "id": 13, + "offset": 268, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 203918520 + }, + "m_hasLoot": { + "type": "bool", + "id": 14, + "offset": 269, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1743226445 + }, + "m_badgeLoot": { + "type": "std::string", + "id": 15, + "offset": 272, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3002891500 + }, + "m_extraCredit": { + "type": "bool", + "id": 16, + "offset": 304, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 847737554 + }, + "m_overcountInterval": { + "type": "unsigned int", + "id": 17, + "offset": 308, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1845137015 + }, + "m_recurringRewardsDescription": { + "type": "std::string", + "id": 18, + "offset": 312, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1668915496 + }, + "m_overcountLoot": { + "type": "std::string", + "id": 19, + "offset": 344, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2371089534 + } + } + }, + "1034232908": { + "name": "enum PetDerbyClientLogic::GameState", + "bases": [], + "hash": 1034232908, + "properties": {} + }, + "1457011199": { + "name": "class WinAnimStatGlobeScaleTime", + "bases": [ + "WinAnimScaleTime", + "WinAnimScale", + "WindowAnimation", + "PropertyClass" + ], + "hash": 1457011199, + "properties": { + "m_bUseDeepCopy": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 433380635 + }, + "m_scale": { + "type": "float", + "id": 1, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 899693439 + }, + "m_fTimeTotal": { + "type": "float", + "id": 2, + "offset": 96, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 661225456 + }, + "m_fTimeRemaining": { + "type": "float", + "id": 3, + "offset": 100, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1591443014 + } + } + }, + "602322479": { + "name": "class NamedEffectTemplate", + "bases": [ + "GameEffectTemplate", + "PropertyClass" + ], + "hash": 602322479, + "properties": { + "m_effectName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2029161513 + }, + "m_effectCategory": { + "type": "std::string", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1852673222 + }, + "m_sortOrder": { + "type": "int", + "id": 2, + "offset": 148, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1411218206 + }, + "m_duration": { + "type": "double", + "id": 3, + "offset": 192, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2727932435 + }, + "m_stackingCategories": { + "type": "std::string", + "id": 4, + "offset": 160, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1774497525 + }, + "m_isPersistent": { + "type": "bool", + "id": 5, + "offset": 153, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 923861920 + }, + "m_bIsOnPet": { + "type": "bool", + "id": 6, + "offset": 154, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 522593303 + }, + "m_isPublic": { + "type": "bool", + "id": 7, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1728439822 + }, + "m_visualEffectAddName": { + "type": "std::string", + "id": 8, + "offset": 200, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3382086694 + }, + "m_visualEffectRemoveName": { + "type": "std::string", + "id": 9, + "offset": 232, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1541697323 + }, + "m_onAddFunctorName": { + "type": "std::string", + "id": 10, + "offset": 280, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1561843107 + }, + "m_onRemoveFunctorName": { + "type": "std::string", + "id": 11, + "offset": 312, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2559017864 + }, + "m_stackingRule": { + "type": "enum STACKING_RULE", + "id": 12, + "offset": 144, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 431568889, + "enum_options": { + "STACKING_ALLOWED": 0, + "STACKING_NOSTACK": 1, + "STACKING_REPLACE": 2 + } + } + } + }, + "1032147317": { + "name": "class CombatParticipant*", + "bases": [ + "PropertyClass" + ], + "hash": 1032147317, + "properties": { + "m_ownerID.m_full": { + "type": "unsigned __int64", + "id": 0, + "offset": 112, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2149616286 + }, + "m_templateID.m_full": { + "type": "unsigned __int64", + "id": 1, + "offset": 120, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 633907631 + }, + "m_isPlayer": { + "type": "bool", + "id": 2, + "offset": 128, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1717744636 + }, + "m_zoneID.m_full": { + "type": "unsigned __int64", + "id": 3, + "offset": 136, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2105998895 + }, + "m_teamID": { + "type": "int", + "id": 4, + "offset": 144, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 982118638 + }, + "m_primaryMagicSchoolID": { + "type": "int", + "id": 5, + "offset": 148, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1864910356 + }, + "m_pipCount": { + "type": "class SharedPointer", + "id": 6, + "offset": 152, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1862540484 + }, + "m_pipRoundRates": { + "type": "class SharedPointer", + "id": 7, + "offset": 168, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1859513241 + }, + "m_PipsSuspended": { + "type": "bool", + "id": 8, + "offset": 184, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 98171898 + }, + "m_stunned": { + "type": "int", + "id": 9, + "offset": 188, + "flags": 25, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1661672123 + }, + "m_mindcontrolled": { + "type": "int", + "id": 10, + "offset": 216, + "flags": 25, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2059794744 + }, + "m_originalTeam": { + "type": "int", + "id": 11, + "offset": 224, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1121355446 + }, + "m_nAuraTurnLength": { + "type": "int", + "id": 12, + "offset": 236, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1719821564 + }, + "m_clue": { + "type": "int", + "id": 13, + "offset": 228, + "flags": 25, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 219277091 + }, + "m_roundsDead": { + "type": "int", + "id": 14, + "offset": 232, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2071727747 + }, + "m_nPolymorphTurnLength": { + "type": "int", + "id": 15, + "offset": 240, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1619550301 + }, + "m_playerHealth": { + "type": "int", + "id": 16, + "offset": 244, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 740444925 + }, + "m_maxPlayerHealth": { + "type": "int", + "id": 17, + "offset": 248, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 96027363 + }, + "m_HideCurrentHP": { + "type": "bool", + "id": 18, + "offset": 252, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 31360456 + }, + "m_maxHandSize": { + "type": "int", + "id": 19, + "offset": 256, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1925169782 + }, + "m_pHand": { + "type": "class Hand*", + "id": 20, + "offset": 264, + "flags": 1, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 892448765 + }, + "m_pSavedHand": { + "type": "class Hand*", + "id": 21, + "offset": 272, + "flags": 1, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 787912720 + }, + "m_pPlayDeck": { + "type": "class PlayDeck*", + "id": 22, + "offset": 280, + "flags": 1, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2053198667 + }, + "m_pSavedPlayDeck": { + "type": "class PlayDeck*", + "id": 23, + "offset": 288, + "flags": 1, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 498207966 + }, + "m_pSavedGameStats": { + "type": "class SharedPointer", + "id": 24, + "offset": 296, + "flags": 1, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1599533644 + }, + "m_savedPrimaryMagicSchoolID": { + "type": "int", + "id": 25, + "offset": 312, + "flags": 1, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 983035431 + }, + "m_pGameStats": { + "type": "class SharedPointer", + "id": 26, + "offset": 320, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3522102873 + }, + "m_color": { + "type": "class Color", + "id": 27, + "offset": 336, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1791663549 + }, + "m_rotation": { + "type": "float", + "id": 28, + "offset": 340, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1497468551 + }, + "m_radius": { + "type": "float", + "id": 29, + "offset": 344, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 989410271 + }, + "m_subcircle": { + "type": "int", + "id": 30, + "offset": 348, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1748202326 + }, + "m_pvp": { + "type": "bool", + "id": 31, + "offset": 352, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 269527241 + }, + "m_raid": { + "type": "bool", + "id": 32, + "offset": 353, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 222284947 + }, + "m_dynamicSymbol": { + "type": "enum DynamicSigilSymbol", + "id": 33, + "offset": 356, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 701705655 + }, + "m_accuracyBonus": { + "type": "float", + "id": 34, + "offset": 396, + "flags": 1, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1440672233 + }, + "m_minionSubCircle": { + "type": "int", + "id": 35, + "offset": 400, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1896926112 + }, + "m_isMinion": { + "type": "bool", + "id": 36, + "offset": 404, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1597230777 + }, + "m_isAccompanyNPC": { + "type": "bool", + "id": 37, + "offset": 412, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1067399659 + }, + "m_hangingEffects": { + "type": "class SpellEffect", + "id": 38, + "offset": 416, + "flags": 27, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2685029606 + }, + "m_publicHangingEffects": { + "type": "class SpellEffect", + "id": 39, + "offset": 432, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1243141029 + }, + "m_auraEffects": { + "type": "class SpellEffect", + "id": 40, + "offset": 448, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2783652947 + }, + "m_shadowEffects": { + "type": "class SharedPointer", + "id": 41, + "offset": 464, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1712698903 + }, + "m_shadowSpellEffects": { + "type": "class SpellEffect", + "id": 42, + "offset": 480, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1808623792 + }, + "m_deathActivatedEffects": { + "type": "class SharedPointer", + "id": 43, + "offset": 512, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1347166054 + }, + "m_delayCastEffects": { + "type": "class DelaySpellEffect", + "id": 44, + "offset": 528, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2596123949 + }, + "m_polymorphSpellTemplateID": { + "type": "unsigned int", + "id": 45, + "offset": 576, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1320079328 + }, + "m_side": { + "type": "std::string", + "id": 46, + "offset": 600, + "flags": 1, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1717547872 + }, + "m_shadowSpellsDisabled": { + "type": "bool", + "id": 47, + "offset": 672, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2077139652 + }, + "m_ignoreSpellsPvPOnlyFlag": { + "type": "bool", + "id": 48, + "offset": 673, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1714276188 + }, + "m_ignoreSpellsPvEOnlyFlag": { + "type": "bool", + "id": 49, + "offset": 674, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1691675729 + }, + "m_bossMob": { + "type": "bool", + "id": 50, + "offset": 675, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 986129576 + }, + "m_hidePVPEnemyChat": { + "type": "bool", + "id": 51, + "offset": 676, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1284658049 + }, + "m_combatTriggerIDs": { + "type": "int", + "id": 52, + "offset": 696, + "flags": 1, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1654684388 + }, + "m_backlash": { + "type": "int", + "id": 53, + "offset": 724, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 857558899 + }, + "m_pastBacklash": { + "type": "int", + "id": 54, + "offset": 728, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1229328939 + }, + "m_shadowCreatureLevel": { + "type": "int", + "id": 55, + "offset": 732, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1119572179 + }, + "m_pastShadowCreatureLevel": { + "type": "int", + "id": 56, + "offset": 736, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1267855499 + }, + "m_shadowCreatureLevelCount": { + "type": "int", + "id": 57, + "offset": 744, + "flags": 31, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 975615804 + }, + "m_interceptEffect": { + "type": "class SharedPointer", + "id": 58, + "offset": 768, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 339294150 + }, + "m_roundsSinceShadowPip": { + "type": "int", + "id": 59, + "offset": 800, + "flags": 1, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 682042934 + }, + "m_polymorphEffect": { + "type": "class SharedPointer", + "id": 60, + "offset": 824, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2193528962 + }, + "m_confused": { + "type": "int", + "id": 61, + "offset": 196, + "flags": 25, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1851913585 + }, + "m_confusionTrigger": { + "type": "int", + "id": 62, + "offset": 200, + "flags": 25, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 554584130 + }, + "m_confusionDisplay": { + "type": "bool", + "id": 63, + "offset": 204, + "flags": 25, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1028383709 + }, + "m_confusedTarget": { + "type": "bool", + "id": 64, + "offset": 205, + "flags": 25, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1193542673 + }, + "m_untargetable": { + "type": "bool", + "id": 65, + "offset": 206, + "flags": 25, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 36479793 + }, + "m_untargetableRounds": { + "type": "int", + "id": 66, + "offset": 208, + "flags": 25, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 80618355 + }, + "m_restrictedTarget": { + "type": "bool", + "id": 67, + "offset": 212, + "flags": 25, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 394144563 + }, + "m_exitCombat": { + "type": "bool", + "id": 68, + "offset": 213, + "flags": 25, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1293141763 + }, + "m_stunnedDisplay": { + "type": "bool", + "id": 69, + "offset": 192, + "flags": 25, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 892304554 + }, + "m_mindcontrolledDisplay": { + "type": "bool", + "id": 70, + "offset": 220, + "flags": 25, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 174689415 + }, + "m_autoPass": { + "type": "bool", + "id": 71, + "offset": 720, + "flags": 25, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1919864803 + }, + "m_vanish": { + "type": "bool", + "id": 72, + "offset": 721, + "flags": 25, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1058591164 + }, + "m_myTeamTurn": { + "type": "bool", + "id": 73, + "offset": 722, + "flags": 25, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1134422697 + }, + "m_needToCleanAuras": { + "type": "bool", + "id": 74, + "offset": 888, + "flags": 25, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1159570481 + }, + "m_planningPhasePipAquiredType": { + "type": "enum CombatParticipant::PipAquiredByEnum", + "id": 75, + "offset": 816, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1435933659, + "enum_options": { + "CombatParticipant::AQUIRED_PIP_UNKNOWN": 0, + "CombatParticipant::AQUIRED_PIP_NORMAL": 1, + "CombatParticipant::AQUIRED_PIP_POWER": 2, + "CombatParticipant::AQUIRED_NORMAL_TO_POWER_PIP_CONVERSION": 4, + "CombatParticipant::IMPEDE_PIPS": 5 + } + }, + "m_cheatSettings": { + "type": "class SharedPointer", + "id": 76, + "offset": 96, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2742666223 + }, + "m_isMonster": { + "type": "unsigned int", + "id": 77, + "offset": 408, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1530878065 + }, + "m_weaponNifSoundList": { + "type": "class SharedPointer", + "id": 78, + "offset": 80, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2575326929 + }, + "m_petCombatTrigger": { + "type": "int", + "id": 79, + "offset": 712, + "flags": 1, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 822894541 + }, + "m_petCombatTriggerTarget": { + "type": "int", + "id": 80, + "offset": 716, + "flags": 1, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 675145556 + }, + "m_shadowPipRateThreshold": { + "type": "float", + "id": 81, + "offset": 840, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1215959391 + }, + "m_baseSpellDamage": { + "type": "int", + "id": 82, + "offset": 844, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 871613364 + }, + "m_statDamage": { + "type": "float", + "id": 83, + "offset": 848, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1480169970 + }, + "m_statResist": { + "type": "float", + "id": 84, + "offset": 852, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2033033901 + }, + "m_statPierce": { + "type": "float", + "id": 85, + "offset": 856, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1959012939 + }, + "m_mobLevel": { + "type": "int", + "id": 86, + "offset": 860, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 186067024 + }, + "m_bPlayerTimeUpdated": { + "type": "bool", + "id": 87, + "offset": 864, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 877395800 + }, + "m_bPlayerTimeEliminated": { + "type": "bool", + "id": 88, + "offset": 865, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1842006605 + }, + "m_bPlayerTimeWarning": { + "type": "bool", + "id": 89, + "offset": 866, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 742875591 + }, + "m_deckFullness": { + "type": "float", + "id": 90, + "offset": 868, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 156080730 + }, + "m_archmasteryPoints": { + "type": "float", + "id": 91, + "offset": 872, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 261464375 + }, + "m_maxArchmasteryPoints": { + "type": "float", + "id": 92, + "offset": 876, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 430012637 + }, + "m_archmasterySchool": { + "type": "unsigned int", + "id": 93, + "offset": 880, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 485805784 + }, + "m_archmasteryFlags": { + "type": "unsigned int", + "id": 94, + "offset": 884, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1571282557 + } + } + }, + "1031358787": { + "name": "class SharedPointer", + "bases": [ + "Cinematic", + "PropertyClass" + ], + "hash": 1031358787, + "properties": {} + }, + "1889015393": { + "name": "class ClientShadowCreatureLevelTransitionCinematicAction", + "bases": [ + "ShadowCreatureLevelTransitionCinematicAction", + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 1889015393, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + } + } + }, + "1463531373": { + "name": "class FXBySlotEffect*", + "bases": [ + "GameEffectBase", + "PropertyClass" + ], + "hash": 1463531373, + "properties": { + "m_currentTickCount": { + "type": "double", + "id": 0, + "offset": 80, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2533274692 + }, + "m_effectNameID": { + "type": "unsigned int", + "id": 1, + "offset": 96, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1204067144 + }, + "m_bIsOnPet": { + "type": "bool", + "id": 2, + "offset": 73, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 522593303 + }, + "m_originatorID": { + "type": "gid", + "id": 3, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1131810019 + }, + "m_itemSlotID": { + "type": "unsigned int", + "id": 4, + "offset": 112, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1895747595 + }, + "m_internalID": { + "type": "int", + "id": 5, + "offset": 92, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1643137924 + }, + "m_endTime": { + "type": "unsigned int", + "id": 6, + "offset": 88, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 716479635 + } + } + }, + "1888962959": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1888962959, + "properties": { + "m_levelScaledInfoList": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2689138081 + }, + "m_statsFloorPercent": { + "type": "class SharedPointer", + "id": 1, + "offset": 88, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2929073687 + } + } + }, + "603995590": { + "name": "class AddInterceptCinematicAction*", + "bases": [ + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 603995590, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + }, + "m_effect": { + "type": "std::string", + "id": 2, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1894145160 + }, + "m_idleOnly": { + "type": "bool", + "id": 3, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 612425235 + } + } + }, + "1031496930": { + "name": "class TeleporterTemplate", + "bases": [ + "PropertyClass" + ], + "hash": 1031496930, + "properties": { + "m_targetZone": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2698931614 + }, + "m_targetLocation": { + "type": "std::string", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2493737915 + }, + "m_location": { + "type": "class Vector3D", + "id": 2, + "offset": 136, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2239683611 + } + } + }, + "1460103397": { + "name": "class FishTournamentLeaderboardOption", + "bases": [ + "ServiceOptionBase", + "PropertyClass" + ], + "hash": 1460103397, + "properties": { + "m_serviceName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2206028813 + }, + "m_iconKey": { + "type": "std::string", + "id": 1, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2457138637 + }, + "m_displayKey": { + "type": "std::string", + "id": 2, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3023276954 + }, + "m_serviceIndex": { + "type": "unsigned int", + "id": 3, + "offset": 204, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2103126710 + }, + "m_forceInteract": { + "type": "bool", + "id": 4, + "offset": 200, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1705789564 + } + } + }, + "602849149": { + "name": "class ControlPopupButton", + "bases": [ + "ControlButton", + "Window", + "PropertyClass" + ], + "hash": 602849149, + "properties": { + "m_sName": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306437263 + }, + "m_Children": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621225959 + }, + "m_Style": { + "type": "unsigned int", + "id": 2, + "offset": 152, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152, + "POPDOWN_SIBLINGS": 67108864, + "DISABLE_CHILDREN": 134217728, + "HIDE_SIBLINGS": 268435456, + "POPUP_ON_HOVER": 536870912 + } + }, + "m_Flags": { + "type": "unsigned int", + "id": 3, + "offset": 156, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } + }, + "m_Window": { + "type": "class Rect", + "id": 4, + "offset": 160, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3105139380 + }, + "m_fTargetAlpha": { + "type": "float", + "id": 5, + "offset": 212, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1809129834 + }, + "m_fDisabledAlpha": { + "type": "float", + "id": 6, + "offset": 216, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1389987675 + }, + "m_fAlpha": { + "type": "float", + "id": 7, + "offset": 208, + "flags": 65671, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 482130755 + }, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3623628394 + }, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2102211316 + }, + "m_sScript": { + "type": "std::string", + "id": 10, + "offset": 352, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1846695875 + }, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3389835433 + }, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547159940 + }, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513510520 + }, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3091503757 + }, + "m_bToggle": { + "type": "bool", + "id": 16, + "offset": 608, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2071810903 + }, + "m_bButtonDown": { + "type": "bool", + "id": 17, + "offset": 609, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 840041705 + }, + "m_sLabel": { + "type": "std::wstring", + "id": 18, + "offset": 616, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2207009163 + }, + "m_labelOffset": { + "type": "class Rect", + "id": 19, + "offset": 832, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1990646723 + }, + "m_pButton": { + "type": "class SharedPointer", + "id": 20, + "offset": 656, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1543855875 + }, + "m_HotKey": { + "type": "unsigned int", + "id": 21, + "offset": 672, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1631553409 + }, + "m_Color": { + "type": "class Color", + "id": 22, + "offset": 676, + "flags": 262279, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1753714077 + }, + "m_bCursorOver": { + "type": "bool", + "id": 23, + "offset": 689, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 283981103 + }, + "m_bAbortWhenCursorNotOver": { + "type": "bool", + "id": 24, + "offset": 706, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 325405258 + }, + "m_bHotKeyDown": { + "type": "bool", + "id": 25, + "offset": 680, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 616989185 + }, + "m_fTime": { + "type": "float", + "id": 26, + "offset": 684, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 883746156 + }, + "m_bGreyed": { + "type": "bool", + "id": 27, + "offset": 688, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1566556053 + }, + "m_fMaxScale": { + "type": "float", + "id": 28, + "offset": 692, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2070186635 + }, + "m_fScaleSpeed": { + "type": "float", + "id": 29, + "offset": 696, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1457135702 + }, + "m_bUseDropShadow": { + "type": "bool", + "id": 30, + "offset": 704, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 93063037 + }, + "m_bUseOutline": { + "type": "bool", + "id": 31, + "offset": 705, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 744292994 + }, + "m_pGreyedState": { + "type": "class SharedPointer", + "id": 32, + "offset": 768, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2703352263 + }, + "m_pNormalState": { + "type": "class SharedPointer", + "id": 33, + "offset": 752, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1887909808 + }, + "m_pHighlightedState": { + "type": "class SharedPointer", + "id": 34, + "offset": 784, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2200177608 + }, + "m_pSelectedState": { + "type": "class SharedPointer", + "id": 35, + "offset": 800, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2266776432 + }, + "m_pDepressedState": { + "type": "class SharedPointer", + "id": 36, + "offset": 816, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1878185798 + }, + "m_bUp": { + "type": "bool", + "id": 37, + "offset": 880, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 269510906 + } + } + }, + "1459686740": { + "name": "class EmojiDefinition*", + "bases": [ + "PropertyClass" + ], + "hash": 1459686740, + "properties": { + "m_emojiDataList": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1180872578 + } + } + }, + "602480413": { + "name": "struct GameOverlayActivated_t*", + "bases": [], + "hash": 602480413, + "properties": {} + }, + "1457724408": { + "name": "class LadderBehaviorTemplate*", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 1457724408, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + } + } + }, + "1889457752": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1889457752, + "properties": { + "m_balance": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 429321305 + }, + "m_death": { + "type": "bool", + "id": 1, + "offset": 73, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 794256793 + }, + "m_fire": { + "type": "bool", + "id": 2, + "offset": 74, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 221862713 + }, + "m_ice": { + "type": "bool", + "id": 3, + "offset": 75, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 269518980 + }, + "m_life": { + "type": "bool", + "id": 4, + "offset": 76, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 222077939 + }, + "m_myth": { + "type": "bool", + "id": 5, + "offset": 77, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 222131765 + }, + "m_storm": { + "type": "bool", + "id": 6, + "offset": 78, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 812599848 + }, + "m_astral": { + "type": "bool", + "id": 7, + "offset": 79, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 258319322 + }, + "m_shadow": { + "type": "bool", + "id": 8, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 949013689 + } + } + }, + "1032444398": { + "name": "class AvailableCompleteEntry", + "bases": [ + "GoalEntry", + "ServiceOptionBase", + "PropertyClass" + ], + "hash": 1032444398, + "properties": { + "m_serviceName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2206028813 + }, + "m_iconKey": { + "type": "std::string", + "id": 1, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2457138637 + }, + "m_displayKey": { + "type": "std::string", + "id": 2, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3023276954 + }, + "m_serviceIndex": { + "type": "unsigned int", + "id": 3, + "offset": 204, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2103126710 + }, + "m_forceInteract": { + "type": "bool", + "id": 4, + "offset": 200, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1705789564 + }, + "m_questID": { + "type": "gid", + "id": 5, + "offset": 216, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1246549335 + }, + "m_goalID": { + "type": "gid", + "id": 6, + "offset": 224, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 485200232 + }, + "m_goalTitle": { + "type": "std::string", + "id": 7, + "offset": 272, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2291910240 + }, + "m_questTitle": { + "type": "std::string", + "id": 8, + "offset": 240, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1805465583 + }, + "m_goalNameID": { + "type": "unsigned int", + "id": 9, + "offset": 232, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 403158846 + } + } + }, + "1457520088": { + "name": "class DestroyActorCinematicAction*", + "bases": [ + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 1457520088, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + } + } + }, + "1032419822": { + "name": "class AvailableCompleteEntry*", + "bases": [ + "GoalEntry", + "ServiceOptionBase", + "PropertyClass" + ], + "hash": 1032419822, + "properties": { + "m_serviceName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2206028813 + }, + "m_iconKey": { + "type": "std::string", + "id": 1, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2457138637 + }, + "m_displayKey": { + "type": "std::string", + "id": 2, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3023276954 + }, + "m_serviceIndex": { + "type": "unsigned int", + "id": 3, + "offset": 204, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2103126710 + }, + "m_forceInteract": { + "type": "bool", + "id": 4, + "offset": 200, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1705789564 + }, + "m_questID": { + "type": "gid", + "id": 5, + "offset": 216, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1246549335 + }, + "m_goalID": { + "type": "gid", + "id": 6, + "offset": 224, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 485200232 + }, + "m_goalTitle": { + "type": "std::string", + "id": 7, + "offset": 272, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2291910240 + }, + "m_questTitle": { + "type": "std::string", + "id": 8, + "offset": 240, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1805465583 + }, + "m_goalNameID": { + "type": "unsigned int", + "id": 9, + "offset": 232, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 403158846 + } + } + }, + "1892173154": { + "name": "class DyeShopModifiers*", + "bases": [ + "PropertyClass" + ], + "hash": 1892173154, + "properties": { + "m_costFloorAdditive": { + "type": "int", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1871158175 + }, + "m_multiplierTemplateCost": { + "type": "float", + "id": 1, + "offset": 76, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1851711699 + }, + "m_multiplierIfDropList": { + "type": "float", + "id": 2, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1310969758 + }, + "m_multiplierIfDyeList": { + "type": "float", + "id": 3, + "offset": 84, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 257956107 + }, + "m_petRenameCost": { + "type": "int", + "id": 4, + "offset": 88, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 136443668 + } + } + }, + "1458965144": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1458965144, + "properties": { + "m_roundNum": { + "type": "int", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1461215570 + }, + "m_percentageChance": { + "type": "int", + "id": 1, + "offset": 76, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 982834938 + } + } + }, + "603529192": { + "name": "class ReqBankPercent", + "bases": [ + "ReqNumeric", + "Requirement", + "PropertyClass" + ], + "hash": 603529192, + "properties": { + "m_applyNOT": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1746328074, + "enum_options": { + "__DEFAULT": 0 + } + }, + "m_operator": { + "type": "enum Requirement::Operator", + "id": 1, + "offset": 76, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2672792317, + "enum_options": { + "ROP_AND": 0, + "ROP_OR": 1, + "__DEFAULT": "ROP_AND" + } + }, + "m_numericValue": { + "type": "float", + "id": 2, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 521915239 + }, + "m_operatorType": { + "type": "enum ReqNumeric::OPERATOR_TYPE", + "id": 3, + "offset": 84, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2228122961, + "enum_options": { + "OPERATOR_UNKNOWN": 4294967295, + "OPERATOR_EQUALS": 0, + "OPERATOR_GREATER_THAN": 1, + "OPERATOR_LESS_THAN": 2, + "OPERATOR_GREATER_THAN_EQ": 3, + "OPERATOR_LESS_THAN_EQ": 4 + } + } + } + }, + "1891038816": { + "name": "class AnnounceSpellTextCinematicAction", + "bases": [ + "CinematicAction", + "PropertyClass" + ], + "hash": 1891038816, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_spellText": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2688705600 + } + } + }, + "1033621019": { + "name": "class StaticControlButtonState*", + "bases": [ + "ControlButtonState", + "PropertyClass" + ], + "hash": 1033621019, + "properties": { + "m_nMaterialFrame": { + "type": "int", + "id": 0, + "offset": 72, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1641923970 + } + } + }, + "1457765368": { + "name": "class LadderBehaviorTemplate", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 1457765368, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + } + } + }, + "603529032": { + "name": "class ReqBankPercent*", + "bases": [ + "ReqNumeric", + "Requirement", + "PropertyClass" + ], + "hash": 603529032, + "properties": { + "m_applyNOT": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1746328074, + "enum_options": { + "__DEFAULT": 0 + } + }, + "m_operator": { + "type": "enum Requirement::Operator", + "id": 1, + "offset": 76, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2672792317, + "enum_options": { + "ROP_AND": 0, + "ROP_OR": 1, + "__DEFAULT": "ROP_AND" + } + }, + "m_numericValue": { + "type": "float", + "id": 2, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 521915239 + }, + "m_operatorType": { + "type": "enum ReqNumeric::OPERATOR_TYPE", + "id": 3, + "offset": 84, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2228122961, + "enum_options": { + "OPERATOR_UNKNOWN": 4294967295, + "OPERATOR_EQUALS": 0, + "OPERATOR_GREATER_THAN": 1, + "OPERATOR_LESS_THAN": 2, + "OPERATOR_GREATER_THAN_EQ": 3, + "OPERATOR_LESS_THAN_EQ": 4 + } + } + } + }, + "1890933267": { + "name": "class CollisionBehavior*", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1890933267, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + } + } + }, + "1032795298": { + "name": "class SharedPointer", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 1032795298, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + }, + "m_behaviorList": { + "type": "class BehaviorTemplate*", + "id": 1, + "offset": 120, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1993233019 + } + } + }, + "1889885615": { + "name": "class RealmInfo", + "bases": [ + "PropertyClass" + ], + "hash": 1889885615, + "properties": { + "m_realmName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3507983949 + }, + "m_displayName": { + "type": "std::wstring", + "id": 1, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2242885711 + }, + "m_realmPopulation": { + "type": "int", + "id": 2, + "offset": 136, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1904140438 + } + } + }, + "603995270": { + "name": "class AddInterceptCinematicAction", + "bases": [ + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 603995270, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + }, + "m_effect": { + "type": "std::string", + "id": 2, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1894145160 + }, + "m_idleOnly": { + "type": "bool", + "id": 3, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 612425235 + } + } + }, + "1460073780": { + "name": "class ClientDamageEventCinematicAction*", + "bases": [ + "DamageEventCinematicAction", + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 1460073780, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + } + } + }, + "1891016911": { + "name": "class TutorialLogBehavior", + "bases": [ + "TutorialLogBehaviorBase", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1891016911, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_tutorialTipData": { + "type": "std::string", + "id": 1, + "offset": 128, + "flags": 551, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3119782422 + } + } + }, + "1034871299": { + "name": "class HubZoneMapping*", + "bases": [ + "PropertyClass" + ], + "hash": 1034871299, + "properties": { + "m_world": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2312385347 + }, + "m_hubZone": { + "type": "std::string", + "id": 1, + "offset": 104, + "flags": 268435463, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1854011510, + "enum_options": { + "__BASECLASS": "ZoneData" + } + }, + "m_location": { + "type": "std::string", + "id": 2, + "offset": 136, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2079561588 + }, + "m_universeTPZone": { + "type": "std::string", + "id": 3, + "offset": 168, + "flags": 268435463, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1587575180, + "enum_options": { + "__BASECLASS": "ZoneData" } }, - "m_eMountType": { - "type": "enum eMountType", - "id": 3, - "offset": 176, - "flags": 2097159, + "m_universeTPLocation": { + "type": "std::string", + "id": 4, + "offset": 200, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3141910185 + }, + "m_hubZoneDisplayName": { + "type": "std::string", + "id": 5, + "offset": 232, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3166854829 + }, + "m_specialZones": { + "type": "std::string", + "id": 6, + "offset": 264, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2731574123 + } + } + }, + "1459689812": { + "name": "class EmojiDefinition", + "bases": [ + "PropertyClass" + ], + "hash": 1459689812, + "properties": { + "m_emojiDataList": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1180872578 + } + } + }, + "1034582733": { + "name": "class WizBangTemplateManager*", + "bases": [ + "PropertyClass" + ], + "hash": 1034582733, + "properties": { + "m_templates": { + "type": "class WizBangTemplate", + "id": 0, + "offset": 80, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": true, + "pointer": false, + "hash": 1728528111 + } + } + }, + "604021729": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 604021729, + "properties": { + "m_sString": { + "type": "std::wstring", + "id": 0, + "offset": 72, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1662841794 + }, + "m_sTooltip": { + "type": "std::wstring", + "id": 1, + "offset": 104, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1680475798 + } + } + }, + "1034275375": { + "name": "class ElixirBenefitEffect", + "bases": [ + "GameEffectBase", + "PropertyClass" + ], + "hash": 1034275375, + "properties": { + "m_currentTickCount": { + "type": "double", + "id": 0, + "offset": 80, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2533274692 + }, + "m_effectNameID": { + "type": "unsigned int", + "id": 1, + "offset": 96, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1204067144 + }, + "m_bIsOnPet": { + "type": "bool", + "id": 2, + "offset": 73, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 522593303 + }, + "m_originatorID": { + "type": "gid", + "id": 3, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1131810019 + }, + "m_itemSlotID": { + "type": "unsigned int", + "id": 4, + "offset": 112, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1895747595 + }, + "m_internalID": { + "type": "int", + "id": 5, + "offset": 92, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3097765662, - "enum_options": { - "eMNT_Standard": 0, - "eMNT_Floating": 1 - } + "hash": 1643137924 }, - "m_adjustableAnimationRate": { - "type": "bool", - "id": 4, - "offset": 180, - "flags": 7, + "m_endTime": { + "type": "unsigned int", + "id": 6, + "offset": 88, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 698897022 + "hash": 716479635 }, - "m_primaryDyeToTexture": { - "type": "class MountDyeToTexture", - "id": 5, - "offset": 120, + "m_flags": { + "type": "unsigned int", + "id": 7, + "offset": 128, "flags": 7, - "container": "List", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 2402789479 - }, - "m_secondaryDyeToTexture": { - "type": "class MountDyeToTexture", - "id": 6, - "offset": 136, + "hash": 1005801050 + } + } + }, + "1891048760": { + "name": "class HousingGameInterface", + "bases": [ + "PropertyClass" + ], + "hash": 1891048760, + "properties": {} + }, + "1891048736": { + "name": "class HousingGameInterface*", + "bases": [ + "PropertyClass" + ], + "hash": 1891048736, + "properties": {} + }, + "1462162140": { + "name": "class SharedPointer", + "bases": [ + "CoreTemplate", + "PropertyClass" + ], + "hash": 1462162140, + "properties": { + "m_behaviors": { + "type": "class BehaviorTemplate*", + "id": 0, + "offset": 72, "flags": 7, - "container": "List", + "container": "Vector", "dynamic": true, "singleton": false, - "pointer": false, - "hash": 2282848843 + "pointer": true, + "hash": 1197808594 }, - "m_patternToTexture": { - "type": "class MountDyeToTexture", - "id": 7, - "offset": 152, + "m_sigilName": { + "type": "std::string", + "id": 1, + "offset": 96, "flags": 7, - "container": "List", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 1665998015 + "hash": 3177657588 }, - "m_soundMountEquip": { + "m_sigilType": { "type": "std::string", - "id": 8, - "offset": 184, - "flags": 131079, + "id": 2, + "offset": 136, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2862460187 + "hash": 3177899445 }, - "m_geometryOption": { - "type": "int", - "id": 9, - "offset": 216, + "m_entryResults": { + "type": "class ResultList*", + "id": 3, + "offset": 184, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1776153279 + "pointer": true, + "hash": 3262956108 }, - "m_numSeats": { - "type": "int", - "id": 10, - "offset": 220, + "m_requirements": { + "type": "class RequirementList*", + "id": 4, + "offset": 176, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1599962314, - "enum_options": { - "__DEFAULT": 1 - } + "pointer": true, + "hash": 2840985510 }, - "m_driverKFM": { - "type": "std::string", - "id": 11, - "offset": 224, - "flags": 131079, + "m_cancelResults": { + "type": "class ResultList*", + "id": 5, + "offset": 192, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3799257120 + }, + "m_completeResults": { + "type": "class ResultList*", + "id": 6, + "offset": 200, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1964258099 + }, + "m_useState": { + "type": "bool", + "id": 7, + "offset": 216, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1883851493 + "hash": 683320865 }, - "m_adjustedFocusHeight": { - "type": "float", - "id": 12, - "offset": 256, + "m_stateOverride": { + "type": "std::string", + "id": 8, + "offset": 224, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 863441156 + "hash": 1949715548 }, - "m_animationEventList": { - "type": "class SharedPointer", - "id": 13, - "offset": 264, + "m_subCircles": { + "type": "class SigilSubCircle*", + "id": 9, + "offset": 256, "flags": 7, "container": "List", "dynamic": true, "singleton": false, "pointer": true, - "hash": 2858101335 + "hash": 2227135493 } } }, - "1502144961": { - "name": "class NPCDialogEntry", + "619657520": { + "name": "class AnimateActorCinematicAction", "bases": [ - "ActorDialogEntry", + "ActorCinematicAction", + "CinematicAction", "PropertyClass" ], - "hash": 1502144961, + "hash": 619657520, "properties": { - "m_requirements": { - "type": "class SharedPointer", + "m_timeOffset": { + "type": "float", "id": 0, "offset": 72, - "flags": 263, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3043523229 + "pointer": false, + "hash": 2237098605 }, - "m_dialog": { + "m_actor": { "type": "std::string", "id": 1, - "offset": 88, - "flags": 8388639, + "offset": 80, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1858395851 + "hash": 2285866132 }, - "m_picture": { + "m_animation": { "type": "std::string", "id": 2, "offset": 120, - "flags": 131103, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3128322903 + "hash": 3431428731 }, - "m_soundFile": { + "m_backupAnimation": { "type": "std::string", "id": 3, "offset": 152, - "flags": 131103, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2276870852 + "hash": 1661537937 }, - "m_action": { - "type": "std::string", + "m_default": { + "type": "bool", "id": 4, "offset": 184, - "flags": 31, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1734553689 + "hash": 1014207576 }, - "m_dialogEvent": { - "type": "std::string", + "m_evenWhileDead": { + "type": "bool", "id": 5, - "offset": 216, - "flags": 31, + "offset": 185, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2707957549 + "hash": 2100875368 }, - "m_actorTemplateID": { - "type": "unsigned int", + "m_fadeOutAfter": { + "type": "bool", "id": 6, - "offset": 248, - "flags": 33554463, + "offset": 186, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2134265679 + "hash": 2006083917 }, - "m_cameraName": { - "type": "std::string", + "m_startsImportantAnimations": { + "type": "bool", "id": 7, - "offset": 256, - "flags": 31, + "offset": 187, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3252786917 + "hash": 734711685 }, - "m_interpolationDuration": { - "type": "float", + "m_forcesStageToWait": { + "type": "bool", "id": 8, - "offset": 312, - "flags": 31, + "offset": 188, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1458058437, - "enum_options": { - "__DEFAULT": "1.0" - } + "hash": 74507905 }, - "m_cameraOffsetX": { - "type": "float", + "m_storeAnimForLateComers": { + "type": "bool", "id": 9, - "offset": 288, - "flags": 31, + "offset": 190, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1515912895 - }, - "m_cameraOffsetY": { - "type": "float", - "id": 10, - "offset": 292, - "flags": 31, + "hash": 634303291 + } + } + }, + "1034607309": { + "name": "class WizBangTemplateManager", + "bases": [ + "PropertyClass" + ], + "hash": 1034607309, + "properties": { + "m_templates": { + "type": "class WizBangTemplate", + "id": 0, + "offset": 80, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": true, + "pointer": false, + "hash": 1728528111 + } + } + }, + "1461334080": { + "name": "class SoundFilterSetting", + "bases": [ + "PropertyClass" + ], + "hash": 1461334080, + "properties": { + "m_name": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1515912896 + "hash": 1717359772 }, - "m_cameraOffsetZ": { - "type": "float", - "id": 11, - "offset": 296, - "flags": 31, - "container": "Static", - "dynamic": false, + "m_params": { + "type": "class SoundFilterParam*", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Vector", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 1515912897 + "pointer": true, + "hash": 1984426024 }, - "m_pitch": { - "type": "float", - "id": 12, - "offset": 304, - "flags": 31, + "m_needsUpdate": { + "type": "bool", + "id": 2, + "offset": 128, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 896371695 - }, - "m_yaw": { - "type": "float", - "id": 13, - "offset": 300, - "flags": 31, + "hash": 1787634021 + } + } + }, + "616474503": { + "name": "class SharedPointer", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 616474503, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 357256328 - }, - "m_roll": { - "type": "float", - "id": 14, - "offset": 308, - "flags": 31, + "hash": 3130754092 + } + } + }, + "610080582": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 610080582, + "properties": { + "m_effectType": { + "type": "enum SpellEffect::kSpellEffects", + "id": 0, + "offset": 72, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 310020272 + "hash": 2578255295, + "enum_options": { + "SpellEffect::kInvalidSpellEffect": 0, + "SpellEffect::kDamage": 1, + "SpellEffect::kDamageNoCrit": 2, + "SpellEffect::kHeal": 3, + "SpellEffect::kStealHealth": 5, + "SpellEffect::kReduceOverTime": 6, + "SpellEffect::kDetonateOverTime": 7, + "SpellEffect::kPushCharm": 8, + "SpellEffect::kStealCharm": 9, + "SpellEffect::kPushWard": 10, + "SpellEffect::kStealWard": 11, + "SpellEffect::kPushOverTime": 12, + "SpellEffect::kStealOverTime": 13, + "SpellEffect::kRemoveCharm": 14, + "SpellEffect::kRemoveWard": 15, + "SpellEffect::kRemoveStunBlock": 117, + "SpellEffect::kRemoveOverTime": 16, + "SpellEffect::kRemoveAura": 17, + "SpellEffect::kSwapCharm": 19, + "SpellEffect::kSwapWard": 20, + "SpellEffect::kSwapOverTime": 21, + "SpellEffect::kModifyIncomingDamage": 22, + "SpellEffect::kModifyIncomingDamageFlat": 119, + "SpellEffect::kModifyIncomingDamageOverTime": 137, + "SpellEffect::kMaximumIncomingDamage": 23, + "SpellEffect::kModifyIncomingHeal": 24, + "SpellEffect::kModifyIncomingHealFlat": 118, + "SpellEffect::kModifyIncomingHealOverTime": 138, + "SpellEffect::kModifyIncomingDamageType": 25, + "SpellEffect::kModifyIncomingArmorPiercing": 26, + "SpellEffect::kModifyOutgoingDamage": 27, + "SpellEffect::kModifyOutgoingDamageFlat": 121, + "SpellEffect::kModifyOutgoingHeal": 28, + "SpellEffect::kModifyOutgoingHealFlat": 120, + "SpellEffect::kModifyOutgoingDamageType": 29, + "SpellEffect::kModifyOutgoingArmorPiercing": 30, + "SpellEffect::kBounceNext": 33, + "SpellEffect::kBouncePrevious": 34, + "SpellEffect::kBounceBack": 35, + "SpellEffect::kBounceAll": 36, + "SpellEffect::kAbsorbDamage": 37, + "SpellEffect::kAbsorbHeal": 38, + "SpellEffect::kModifyAccuracy": 39, + "SpellEffect::kDispel": 40, + "SpellEffect::kConfusion": 41, + "SpellEffect::kCloakedCharm": 42, + "SpellEffect::kCloakedWard": 43, + "SpellEffect::kStunResist": 44, + "SpellEffect::kPipConversion": 45, + "SpellEffect::kCritBoost": 46, + "SpellEffect::kCritBlock": 47, + "SpellEffect::kPolymorph": 48, + "SpellEffect::kModifyCardCloak": 50, + "SpellEffect::kModifyCardDamage": 51, + "SpellEffect::kModifyCardAccuracy": 53, + "SpellEffect::kModifyCardMutation": 54, + "SpellEffect::kModifyCardRank": 55, + "SpellEffect::kModifyCardArmorPiercing": 56, + "SpellEffect::kSummonCreature": 65, + "SpellEffect::kTeleportPlayer": 66, + "SpellEffect::kStun": 67, + "SpellEffect::kDampen": 68, + "SpellEffect::kReshuffle": 69, + "SpellEffect::kMindControl": 70, + "SpellEffect::kModifyPips": 71, + "SpellEffect::kModifyPowerPips": 72, + "SpellEffect::kModifyShadowPips": 73, + "SpellEffect::kModifyHate": 74, + "SpellEffect::kDamageOverTime": 75, + "SpellEffect::kHealOverTime": 76, + "SpellEffect::kModifyPowerPipChance": 77, + "SpellEffect::kModifyRank": 78, + "SpellEffect::kStunBlock": 79, + "SpellEffect::kRevealCloak": 80, + "SpellEffect::kInstantKill": 81, + "SpellEffect::kAfterlife": 82, + "SpellEffect::kDeferredDamage": 83, + "SpellEffect::kDamagePerTotalPipPower": 84, + "SpellEffect::kCloakedWardNoRemove": 86, + "SpellEffect::kAddCombatTriggerList": 87, + "SpellEffect::kRemoveCombatTriggerList": 88, + "SpellEffect::kBacklashDamage": 89, + "SpellEffect::kMaxHealthDamage": 112, + "SpellEffect::kModifyBacklash": 90, + "SpellEffect::kIntercept": 91, + "SpellEffect::kShadowSelf": 92, + "SpellEffect::kShadowCreature": 93, + "SpellEffect::kModifyShadowCreatureLevel": 94, + "SpellEffect::kSelectShadowCreatureAttackTarget": 95, + "SpellEffect::kShadowDecrementTurn": 96, + "SpellEffect::kCritBoostSchoolSpecific": 97, + "SpellEffect::kSpawnCreature": 98, + "SpellEffect::kUnPolymorph": 99, + "SpellEffect::kPowerPipConversion": 100, + "SpellEffect::kProtectBeneficial": 103, + "SpellEffect::kProtectHarmful": 104, + "SpellEffect::kProtectCardBeneficial": 101, + "SpellEffect::kProtectCardHarmful": 102, + "SpellEffect::kDivideDamage": 105, + "SpellEffect::kConfusionBlock": 109, + "SpellEffect::kModifyPipRoundRate": 110, + "SpellEffect::kMaxHealthHeal": 129, + "SpellEffect::kHealByWard": 130, + "SpellEffect::kTaunt": 131, + "SpellEffect::kPacify": 132, + "SpellEffect::kModifySchoolPips": 150 + } }, - "m_cameraShakeType": { - "type": "std::string", - "id": 15, - "offset": 320, - "flags": 31, + "m_disposition": { + "type": "enum SpellEffect::kHangingDisposition", + "id": 1, + "offset": 76, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1754128882, + "hash": 1904841031, "enum_options": { - "": 0, - "Constant": "Constant", - "Quake": "Quake", - "Thud": "Thud", - "End": "End", - "__DEFAULT": 0 + "SpellEffect::kBoth": 0, + "SpellEffect::kBeneficial": 1, + "SpellEffect::kHarmful": 2 } }, - "m_cameraShakeDuration": { - "type": "float", - "id": 16, - "offset": 352, - "flags": 31, + "m_penaltyTime": { + "type": "int", + "id": 2, + "offset": 80, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 316581010, - "enum_options": { - "__DEFAULT": "0.0" - } - }, - "m_cameraShakeAmplitude": { - "type": "float", - "id": 17, - "offset": 356, + "hash": 1993188358 + } + } + }, + "1891096380": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1891096380, + "properties": { + "m_itemID": { + "type": "gid", + "id": 0, + "offset": 72, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2179718321, - "enum_options": { - "__DEFAULT": "0.0" - } + "hash": 569545460 }, - "m_bypassCameraOnReview": { - "type": "bool", - "id": 18, - "offset": 360, + "m_itemSlotNameID": { + "type": "unsigned int", + "id": 1, + "offset": 80, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1412905725, - "enum_options": { - "__DEFAULT": 1 - } - }, - "m_cameraZoneName": { - "type": "std::string", - "id": 19, - "offset": 368, - "flags": 287, + "hash": 1951735276 + } + } + }, + "606823866": { + "name": "class ClientFishBehavior", + "bases": [ + "FishBehavior", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 606823866, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3131581121 + "hash": 223437287 }, - "m_duration": { + "m_fishSize": { "type": "float", - "id": 20, - "offset": 400, - "flags": 31, + "id": 1, + "offset": 112, + "flags": 65536, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 920323453 - }, - "m_delay": { - "type": "float", - "id": 21, - "offset": 404, - "flags": 287, + "hash": 1986368316 + } + } + }, + "1034871459": { + "name": "class HubZoneMapping", + "bases": [ + "PropertyClass" + ], + "hash": 1034871459, + "properties": { + "m_world": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 881988134 + "hash": 2312385347 }, - "m_cameraHidePlayers": { - "type": "int", - "id": 22, - "offset": 408, - "flags": 287, + "m_hubZone": { + "type": "std::string", + "id": 1, + "offset": 104, + "flags": 268435463, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 28533149 + "hash": 1854011510, + "enum_options": { + "__BASECLASS": "ZoneData" + } }, - "m_walkAwayNpcTemplateID": { - "type": "gid", - "id": 23, - "offset": 416, - "flags": 33554719, + "m_location": { + "type": "std::string", + "id": 2, + "offset": 136, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 942697507 + "hash": 2079561588 }, - "m_walkAwayExitDirectionInDegrees": { - "type": "float", - "id": 24, - "offset": 424, - "flags": 287, + "m_universeTPZone": { + "type": "std::string", + "id": 3, + "offset": 168, + "flags": 268435463, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 396419785 + "hash": 1587575180, + "enum_options": { + "__BASECLASS": "ZoneData" + } }, - "m_walkAwayFadeTime": { - "type": "float", - "id": 25, - "offset": 428, - "flags": 287, + "m_universeTPLocation": { + "type": "std::string", + "id": 4, + "offset": 200, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 822405687 + "hash": 3141910185 }, - "m_walkAwayUseCurrentFacing": { - "type": "bool", - "id": 26, - "offset": 432, - "flags": 287, + "m_hubZoneDisplayName": { + "type": "std::string", + "id": 5, + "offset": 232, + "flags": 8388615, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1464855436 + "hash": 3166854829 }, - "m_standInPlayerTag": { + "m_specialZones": { "type": "std::string", - "id": 27, - "offset": 440, - "flags": 287, + "id": 6, + "offset": 264, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2731574123 + } + } + }, + "1463307106": { + "name": "class WizardVisibilityBehavior*", + "bases": [ + "ClientVisibilityBehavior", + "VisibilityBehavior", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1463307106, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1590121141 + "hash": 223437287 }, - "m_fadeOutCamera": { + "m_showTo": { + "type": "gid", + "id": 1, + "offset": 112, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 947039004 + }, + "m_hideFrom": { + "type": "gid", + "id": 2, + "offset": 128, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 642644390 + }, + "m_visible": { "type": "bool", - "id": 28, - "offset": 472, - "flags": 287, + "id": 3, + "offset": 144, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1766121252 + "hash": 810536225 + } + } + }, + "605703999": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 605703999, + "properties": {} + }, + "1462566492": { + "name": "class SharedPointer", + "bases": [ + "CoreTemplate", + "PropertyClass" + ], + "hash": 1462566492, + "properties": { + "m_behaviors": { + "type": "class BehaviorTemplate*", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1197808594 }, - "m_snapCameraToPlayerAtExit": { - "type": "bool", - "id": 29, - "offset": 473, - "flags": 287, + "m_name": { + "type": "std::string", + "id": 1, + "offset": 96, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1323369645 + "hash": 1717359772 }, - "m_secondaryCameraName": { + "m_description": { "type": "std::string", - "id": 30, - "offset": 480, - "flags": 287, + "id": 2, + "offset": 168, + "flags": 8388615, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1670705581 + "hash": 1649374815 }, - "m_secondaryInterpolationDuration": { - "type": "float", - "id": 31, - "offset": 512, - "flags": 287, + "m_advancedDescription": { + "type": "std::string", + "id": 3, + "offset": 200, + "flags": 8388615, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1873822349 + "hash": 3465713013 }, - "m_npcStandInList": { + "m_displayName": { "type": "std::string", - "id": 32, - "offset": 520, - "flags": 287, - "container": "List", - "dynamic": true, + "id": 4, + "offset": 136, + "flags": 8388615, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 2076308937 + "hash": 2446900370 }, - "m_dialogAnimationList": { + "m_spellBase": { "type": "std::string", - "id": 33, - "offset": 536, - "flags": 287, - "container": "List", - "dynamic": true, + "id": 5, + "offset": 248, + "flags": 268435463, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 2444806919 + "hash": 2688054198, + "enum_options": { + "__BASECLASS": "CinematicTemplate" + } }, - "m_dialogTurningList": { - "type": "std::string", - "id": 34, - "offset": 552, - "flags": 287, - "container": "List", + "m_effects": { + "type": "class SharedPointer", + "id": 6, + "offset": 280, + "flags": 7, + "container": "Vector", "dynamic": true, "singleton": false, - "pointer": false, - "hash": 2782869422 + "pointer": true, + "hash": 370726379 }, - "m_npcYawOffsetInDegrees": { - "type": "float", - "id": 35, - "offset": 568, - "flags": 287, + "m_sMagicSchoolName": { + "type": "std::string", + "id": 7, + "offset": 312, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1395075270 + "hash": 2035693400 }, - "m_allowPlayerToMove": { - "type": "bool", - "id": 36, - "offset": 572, - "flags": 287, + "m_sTypeName": { + "type": "std::string", + "id": 8, + "offset": 352, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 225101337 + "hash": 3580785905 }, - "m_soundEffectFile": { - "type": "std::string", - "id": 37, - "offset": 576, - "flags": 287, + "m_trainingCost": { + "type": "int", + "id": 9, + "offset": 384, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3235157265 + "hash": 982588239 }, - "m_musicFile": { - "type": "std::string", - "id": 38, - "offset": 608, - "flags": 287, + "m_accuracy": { + "type": "int", + "id": 10, + "offset": 388, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2963686620 + "hash": 1636315493 }, - "m_nonStackableMusic": { - "type": "bool", - "id": 39, - "offset": 640, - "flags": 287, + "m_baseCost": { + "type": "int", + "id": 11, + "offset": 232, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1675595625 + "hash": 1475151502 }, - "m_nonRepeatableMusic": { - "type": "bool", - "id": 40, - "offset": 641, - "flags": 287, + "m_creditsCost": { + "type": "int", + "id": 12, + "offset": 236, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2138315572 + "hash": 715313825 }, - "m_playMusicAtSFXVolume": { - "type": "bool", - "id": 41, - "offset": 642, - "flags": 287, + "m_pvpCurrencyCost": { + "type": "int", + "id": 13, + "offset": 240, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2130871816 + "hash": 645595444 }, - "m_soundEffectDelay": { - "type": "float", - "id": 42, - "offset": 644, - "flags": 287, + "m_pvpTourneyCurrencyCost": { + "type": "int", + "id": 14, + "offset": 244, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1586382460 + "hash": 517874954 }, - "m_musicDelay": { - "type": "float", - "id": 43, - "offset": 648, - "flags": 287, + "m_boosterPackIcon": { + "type": "std::string", + "id": 15, + "offset": 496, + "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1217785767 + "hash": 3428653697 }, - "m_musicFadeTime": { - "type": "float", - "id": 44, - "offset": 652, - "flags": 287, - "container": "Static", - "dynamic": false, + "m_validTargetSpells": { + "type": "unsigned int", + "id": 16, + "offset": 392, + "flags": 7, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 502925015 + "hash": 2355782967 }, - "m_dontReleaseCameraAtExit": { + "m_PvP": { "type": "bool", - "id": 45, - "offset": 474, - "flags": 287, + "id": 17, + "offset": 408, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1107508961 + "hash": 269492361 }, - "m_disableBackButton": { + "m_PvE": { "type": "bool", - "id": 46, - "offset": 656, - "flags": 287, + "id": 18, + "offset": 409, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 122355444 + "hash": 269492350 }, - "m_enableExitButton": { + "m_noPvPEnchant": { "type": "bool", - "id": 47, - "offset": 657, - "flags": 287, + "id": 19, + "offset": 410, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1824693936 + "hash": 661581703 }, - "m_cameraFadeType": { - "type": "std::string", - "id": 48, - "offset": 664, - "flags": 287, + "m_noPvEEnchant": { + "type": "bool", + "id": 20, + "offset": 411, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2021935382, - "enum_options": { - "": 0, - "In Out Black": "In Out Black", - "In Out White": "In Out White", - "In Black": "In Black", - "Out Black": "Out Black", - "In White": "In White", - "Out White": "Out White", - "__DEFAULT": 0 - } + "hash": 10144220 }, - "m_cameraFadeTime": { - "type": "float", - "id": 49, - "offset": 696, - "flags": 287, + "m_battlegroundsOnly": { + "type": "bool", + "id": 21, + "offset": 412, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 614419391, - "enum_options": { - "__DEFAULT": "0.5" - } + "hash": 1244782419 }, - "m_idleAnimation": { - "type": "std::string", - "id": 50, - "offset": 704, - "flags": 31, + "m_Treasure": { + "type": "bool", + "id": 22, + "offset": 413, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2900487193 + "hash": 1749096414 }, - "m_spamTime": { - "type": "float", - "id": 51, - "offset": 736, - "flags": 287, + "m_noDiscard": { + "type": "bool", + "id": 23, + "offset": 414, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1727215063, - "enum_options": { - "__DEFAULT": "1.0" - } + "hash": 565749226 }, - "m_playSoundIfSpamming": { + "m_leavesPlayWhenCast": { "type": "bool", - "id": 52, - "offset": 740, - "flags": 287, + "id": 24, + "offset": 532, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 690006749, - "enum_options": { - "__DEFAULT": 1 - } + "hash": 698216294 }, - "m_playMusicIfSpamming": { - "type": "bool", - "id": 53, - "offset": 741, - "flags": 287, + "m_imageIndex": { + "type": "int", + "id": 25, + "offset": 416, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 538564341, - "enum_options": { - "__DEFAULT": 1 - } + "hash": 1570500405 }, - "m_stopMusicFadeTime": { - "type": "float", - "id": 54, - "offset": 744, - "flags": 287, + "m_imageName": { + "type": "std::string", + "id": 26, + "offset": 424, + "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 696390845, - "enum_options": { - "__DEFAULT": "0.0" - } + "hash": 2391520543 }, - "m_restartMusicFadeTime": { - "type": "float", - "id": 55, - "offset": 748, - "flags": 287, + "m_cloaked": { + "type": "bool", + "id": 27, + "offset": 489, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 709379292, - "enum_options": { - "__DEFAULT": "0.0" - } + "hash": 7349510 }, - "m_meetsRequirements": { + "m_casterInvisible": { "type": "bool", - "id": 56, - "offset": 752, - "flags": 31, + "id": 28, + "offset": 490, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 296443061 + "hash": 310214650 }, - "m_secondaryCameraInitalDelay": { - "type": "float", - "id": 57, - "offset": 516, - "flags": 287, - "container": "Static", - "dynamic": false, + "m_adjectives": { + "type": "std::string", + "id": 29, + "offset": 576, + "flags": 7, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 1812842232 + "hash": 2967855037 }, - "m_displayButtonsOnTimedDialog": { - "type": "bool", - "id": 58, - "offset": 753, - "flags": 287, + "m_spellSourceType": { + "type": "enum SpellTemplate::kSpellSourceType", + "id": 30, + "offset": 528, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 569741400 + "hash": 156272727, + "enum_options": { + "kCaster": 0, + "kPet": 1, + "kShadowCreature": 2, + "kWeapon": 3, + "kEquipment": 4 + } }, - "m_personaName": { + "m_cloakedName": { "type": "std::string", - "id": 59, - "offset": 776, - "flags": 268435487, + "id": 31, + "offset": 536, + "flags": 268435463, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2514452244, + "hash": 2846679215, "enum_options": { - "__BASECLASS": "Persona" + "__BASECLASS": "SpellTemplate" } }, - "m_nameOverride": { - "type": "std::string", - "id": 60, + "m_purchaseRequirements": { + "type": "class RequirementList*", + "id": 32, + "offset": 608, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3174641793 + }, + "m_displayRequirements": { + "type": "class RequirementList*", + "id": 33, "offset": 840, - "flags": 8388639, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 2854590748 + "pointer": true, + "hash": 3646782876 }, - "m_nameSTKey": { + "m_descriptionTrainer": { "type": "std::string", - "id": 61, - "offset": 808, - "flags": 31, + "id": 34, + "offset": 616, + "flags": 8388871, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3618744844 + "hash": 1756093908 }, - "m_guiDisplay": { + "m_descriptionCombatHUD": { "type": "std::string", - "id": 62, - "offset": 872, - "flags": 131103, + "id": 35, + "offset": 648, + "flags": 8388871, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3134563510 + "hash": 1631478006 }, - "m_maxTimeSeconds": { + "m_displayIndex": { "type": "int", - "id": 63, - "offset": 904, - "flags": 31, + "id": 36, + "offset": 680, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1762503230 + "hash": 1250551048 }, - "m_invisible": { + "m_hiddenFromEffectsWindow": { "type": "bool", - "id": 64, - "offset": 908, - "flags": 31, + "id": 37, + "offset": 684, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2011940728 - } - } - }, - "1877174202": { - "name": "class WinAnimMoveToLocationSpeed*", - "bases": [ - "WinAnimMoveToLocation", - "WindowAnimation", - "PropertyClass" - ], - "hash": 1877174202, - "properties": { - "m_bUseDeepCopy": { + "hash": 1832736331 + }, + "m_ignoreCharms": { "type": "bool", - "id": 0, - "offset": 72, - "flags": 135, + "id": 38, + "offset": 685, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 433380635 + "hash": 1840075893 }, - "m_targetLocation": { - "type": "class Vector3D", - "id": 1, - "offset": 80, - "flags": 135, + "m_alwaysFizzle": { + "type": "bool", + "id": 39, + "offset": 686, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2653859938 + "hash": 2030988856 }, - "m_fSpeed": { - "type": "float", - "id": 2, - "offset": 96, - "flags": 135, + "m_spellCategory": { + "type": "std::string", + "id": 40, + "offset": 688, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 503609006 - } - } - }, - "723434534": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 723434534, - "properties": { - "m_templateID": { - "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 33554439, + "hash": 2472376729 + }, + "m_showPolymorphedName": { + "type": "bool", + "id": 41, + "offset": 720, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1286746870 + "hash": 2097929096 }, - "m_tier1": { - "type": "unsigned int", - "id": 1, - "offset": 76, - "flags": 7, + "m_skipTruncation": { + "type": "bool", + "id": 42, + "offset": 721, + "flags": 263, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1022300786 + "hash": 1838335249 }, - "m_tier2": { + "m_maxCopies": { "type": "unsigned int", - "id": 2, - "offset": 80, - "flags": 7, + "id": 43, + "offset": 724, + "flags": 263, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1022300787 + "hash": 403022326 }, - "m_tier3": { - "type": "unsigned int", - "id": 3, - "offset": 84, - "flags": 7, + "m_levelRestriction": { + "type": "int", + "id": 44, + "offset": 728, + "flags": 263, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1022300788 + "hash": 176502472 }, - "m_tier4": { - "type": "unsigned int", - "id": 4, - "offset": 88, - "flags": 7, + "m_delayEnchantment": { + "type": "bool", + "id": 45, + "offset": 732, + "flags": 287, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1022300789 + "hash": 191336919 }, - "m_overrideDisplayName": { - "type": "std::string", - "id": 5, - "offset": 96, - "flags": 8388615, + "m_delayEnchantmentOrder": { + "type": "enum SpellEffect::kDelayOrder", + "id": 46, + "offset": 736, + "flags": 287, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3370041362 + "hash": 2526055263, + "enum_options": { + "SpellEffect::kAnyOrder": 0, + "SpellEffect::kFirst": 1, + "SpellEffect::kSecond": 2 + } }, - "m_description": { + "m_previousSpellName": { "type": "std::string", - "id": 6, - "offset": 128, - "flags": 8388615, + "id": 47, + "offset": 744, + "flags": 268435463, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1649374815 + "hash": 2903322585, + "enum_options": { + "__BASECLASS": "SpellTemplate" + } }, - "m_foundInCantripChests": { - "type": "bool", - "id": 7, - "offset": 160, - "flags": 7, + "m_cardFront": { + "type": "std::string", + "id": 48, + "offset": 456, + "flags": 131359, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2091052609 + "hash": 3557598526 }, - "m_equivalentTemplateIDList": { - "type": "unsigned int", - "id": 8, - "offset": 168, - "flags": 7, - "container": "List", - "dynamic": true, + "m_useGloss": { + "type": "bool", + "id": 49, + "offset": 488, + "flags": 287, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 318979600 + "hash": 668817544 }, - "m_overrideLocation": { - "type": "std::string", - "id": 9, - "offset": 192, - "flags": 8388615, + "m_ignoreDispel": { + "type": "bool", + "id": 50, + "offset": 776, + "flags": 287, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3616295668 - } - } - }, - "1499920354": { - "name": "class SharedPointer", - "bases": [ - "ServiceOptionBase", - "PropertyClass" - ], - "hash": 1499920354, - "properties": { - "m_serviceName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, + "hash": 1881041624 + }, + "m_backRowFriendly": { + "type": "bool", + "id": 51, + "offset": 777, + "flags": 287, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2206028813 + "hash": 501584377 }, - "m_iconKey": { - "type": "std::string", - "id": 1, - "offset": 168, - "flags": 31, + "m_spellRank": { + "type": "class SharedPointer", + "id": 52, + "offset": 784, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 2457138637 + "pointer": true, + "hash": 3152361374 }, - "m_displayKey": { + "m_secondarySchoolName": { "type": "std::string", - "id": 2, - "offset": 104, - "flags": 31, + "id": 53, + "offset": 800, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3023276954 + "hash": 1803268236 }, - "m_serviceIndex": { + "m_spellFusion": { "type": "unsigned int", - "id": 3, - "offset": 204, - "flags": 31, + "id": 54, + "offset": 836, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2103126710 + "hash": 1658928321 }, - "m_forceInteract": { - "type": "bool", - "id": 4, - "offset": 200, - "flags": 31, + "m_requiredSchoolName": { + "type": "std::string", + "id": 55, + "offset": 848, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1705789564 + "hash": 3576058981 } } }, - "1876654492": { - "name": "class SharedPointer", + "604721566": { + "name": "class SharedPointer", "bases": [ - "GameEffectInfo", "PropertyClass" ], - "hash": 1876654492, + "hash": 604721566, "properties": { - "m_effectName": { - "type": "std::string", + "m_crownsAdded": { + "type": "int", "id": 0, "offset": 72, "flags": 31, @@ -365596,497 +30482,344 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 2029161513 + "hash": 997797672 }, - "m_pipsGiven": { + "m_itemsAdded": { "type": "int", "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1346249167 - }, - "m_powerPipsGiven": { - "type": "int", - "id": 2, - "offset": 108, - "flags": 7, + "offset": 76, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 377908508 + "hash": 737787694 } } }, - "723014038": { - "name": "class DynamicURLWhitelist*", + "1893497990": { + "name": "class CastleMagicTutorialWindow*", "bases": [ "PropertyClass" ], - "hash": 723014038, - "properties": { - "m_whitelist": { - "type": "class DynamicURLDescriptor", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2741681576 - } - } + "hash": 1893497990, + "properties": {} }, - "1498689723": { - "name": "class SharedPointer", + "604647414": { + "name": "class SharedPointer", "bases": [ + "BehaviorTemplate", "PropertyClass" ], - "hash": 1498689723, + "hash": 604647414, "properties": { - "m_nTileIndex": { - "type": "int", + "m_behaviorName": { + "type": "std::string", "id": 0, "offset": 72, - "flags": 135, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1956352654 + "hash": 3130754092 }, - "m_fCurrentFrame": { - "type": "float", + "m_textureType": { + "type": "enum HousingTextureType", "id": 1, - "offset": 76, - "flags": 135, + "offset": 120, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 219900907 + "hash": 1680179944, + "enum_options": { + "HTT_FLOOR": 0, + "HTT_WALL": 1 + } }, - "m_bIsFlippedHorizontal": { - "type": "bool", + "m_textureFilename": { + "type": "std::string", "id": 2, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 627031807 - }, - "m_bIsFlippedVertical": { - "type": "bool", - "id": 3, - "offset": 81, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 298230063 - }, - "m_nRotation": { - "type": "unsigned int", - "id": 4, - "offset": 84, - "flags": 135, + "offset": 128, + "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1898715531 + "hash": 2208648365 } } }, - "1876271121": { - "name": "class FishHistory*", + "1893235164": { + "name": "class Material*", "bases": [ "PropertyClass" ], - "hash": 1876271121, + "hash": 1893235164, "properties": { - "m_templateID": { - "type": "unsigned int", + "m_sMaterialName": { + "type": "std::wstring", "id": 0, "offset": 72, - "flags": 33554471, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1286746870 + "hash": 1299185467 }, - "m_numberCaught": { - "type": "unsigned int", + "m_Blending": { + "type": "enum Material::Blending", "id": 1, - "offset": 76, - "flags": 39, + "offset": 116, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 880871538 + "hash": 3003693822, + "enum_options": { + "B_NONE": 0, + "B_ADDITIVE": 1, + "B_ALPHA": 2, + "B_ALPHA_INV": 3, + "B_ADDITIVE_INV": 4, + "__DEFAULT": "B_ALPHA" + } }, - "m_smallestSize": { - "type": "float", + "m_eRepeat": { + "type": "enum Material::Repeating", "id": 2, - "offset": 80, - "flags": 39, + "offset": 176, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1372912951 + "hash": 3302018843, + "enum_options": { + "R_NONE": 0, + "R_REPEAT": 1 + } }, - "m_largestSize": { - "type": "float", + "m_pDiffuseMap": { + "type": "class SharedPointer", "id": 3, - "offset": 84, - "flags": 39, + "offset": 120, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 344314084 + "pointer": true, + "hash": 4008975679 }, - "m_numberSmallFrysCaught": { - "type": "unsigned int", + "m_pAlphaMask": { + "type": "class SharedPointer", "id": 4, - "offset": 88, - "flags": 39, + "offset": 136, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 2177497487 + "pointer": true, + "hash": 3411451405 }, - "m_numberWoppersCaught": { - "type": "unsigned int", + "m_fLastAlpha": { + "type": "float", "id": 5, - "offset": 92, - "flags": 39, + "offset": 152, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 842916418 - } - } - }, - "722265540": { - "name": "class FilterSetTemplate", - "bases": [ - "CoreTemplate", - "PropertyClass" - ], - "hash": 722265540, - "properties": { - "m_behaviors": { - "type": "class BehaviorTemplate*", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1197808594 + "hash": 284727287 }, - "m_name": { - "type": "std::string", - "id": 1, - "offset": 96, - "flags": 7, + "m_Diffuse": { + "type": "class Color", + "id": 6, + "offset": 156, + "flags": 262279, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1717359772 + "hash": 1644364836 }, - "m_uid": { - "type": "unsigned int", - "id": 2, - "offset": 128, - "flags": 16777223, + "m_Ambient": { + "type": "class Color", + "id": 7, + "offset": 160, + "flags": 262279, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 478453519 + "hash": 2216816350 }, - "m_filters": { - "type": "class SharedPointer", - "id": 3, - "offset": 136, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2539658755 - } - } - }, - "1090674318": { - "name": "class SharedPointer", - "bases": [ - "SG_GameAction", - "PropertyClass" - ], - "hash": 1090674318, - "properties": { - "m_target": { - "type": "enum SG_GameAction::SG_Target", - "id": 0, - "offset": 72, - "flags": 2097159, + "m_Specular": { + "type": "class Color", + "id": 8, + "offset": 168, + "flags": 262279, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1166870973, - "enum_options": { - "Target_Ball": 0, - "Target_Self": 1, - "Target_Connections": 2, - "__DEFAULT": "Target_Ball" - } + "hash": 2645528957 }, - "m_powerName": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, + "m_fSpecularPower": { + "type": "float", + "id": 9, + "offset": 172, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2956499913 - } - } - }, - "1498509970": { - "name": "class StringTable*", - "bases": [ - "PropertyClass" - ], - "hash": 1498509970, - "properties": { - "m_thousandSeparator": { - "type": "wchar_t", - "id": 0, - "offset": 200, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": true, + "hash": 539146057 + }, + "m_Frames": { + "type": "class Rect", + "id": 10, + "offset": 192, + "flags": 65671, + "container": "Vector", + "dynamic": true, + "singleton": false, "pointer": false, - "hash": 3735116682 + "hash": 3064301836 }, - "m_decimalCharacter": { - "type": "wchar_t", - "id": 1, - "offset": 202, - "flags": 7, + "m_nCurrentFrame": { + "type": "int", + "id": 11, + "offset": 216, + "flags": 135, "container": "Static", "dynamic": false, - "singleton": true, + "singleton": false, "pointer": false, - "hash": 2802322863 + "hash": 45308854 }, - "m_defaultSpace": { - "type": "wchar_t", - "id": 2, - "offset": 204, - "flags": 7, + "m_fAnimRate": { + "type": "float", + "id": 12, + "offset": 228, + "flags": 135, "container": "Static", "dynamic": false, - "singleton": true, + "singleton": false, "pointer": false, - "hash": 3126898340 + "hash": 802385934 }, - "m_numberPrecision": { + "m_nAnimBegin": { "type": "int", - "id": 3, - "offset": 208, - "flags": 7, + "id": 13, + "offset": 220, + "flags": 135, "container": "Static", "dynamic": false, - "singleton": true, + "singleton": false, "pointer": false, - "hash": 523838671 + "hash": 400513266 }, - "m_lowerToUpperList": { - "type": "class CharMap", - "id": 4, - "offset": 216, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": true, + "m_nAnimEnd": { + "type": "int", + "id": 14, + "offset": 224, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, "pointer": false, - "hash": 542305079 + "hash": 1081103460 }, - "m_upperToLowerList": { - "type": "class CharMap", - "id": 5, + "m_fAnimTime": { + "type": "float", + "id": 15, "offset": 232, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": true, - "pointer": false, - "hash": 686618071 - }, - "m_sortScoreList": { - "type": "class CharMap", - "id": 6, - "offset": 248, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": true, - "pointer": false, - "hash": 1662028035 - }, - "m_typeSpaces": { - "type": "unsigned short", - "id": 7, - "offset": 264, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": true, - "pointer": false, - "hash": 931738089 - }, - "m_typePunctuation": { - "type": "unsigned short", - "id": 8, - "offset": 280, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": true, - "pointer": false, - "hash": 2553388772 - }, - "m_typeAlphaNumeric": { - "type": "unsigned short", - "id": 9, - "offset": 296, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": true, - "pointer": false, - "hash": 696068547 - }, - "m_typeAlpha": { - "type": "unsigned short", - "id": 10, - "offset": 312, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": true, + "flags": 134, + "container": "Static", + "dynamic": false, + "singleton": false, "pointer": false, - "hash": 1715008368 + "hash": 802466289 }, - "m_typeDigit": { - "type": "unsigned short", - "id": 11, - "offset": 328, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": true, + "m_fMaterialScaleX": { + "type": "float", + "id": 16, + "offset": 180, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, "pointer": false, - "hash": 1718448571 + "hash": 634638220 }, - "m_typeHexDigit": { - "type": "unsigned short", - "id": 12, - "offset": 344, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": true, + "m_fMaterialScaleY": { + "type": "float", + "id": 17, + "offset": 184, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, "pointer": false, - "hash": 990261184 - }, - "m_minFontSizeForDropshadow": { + "hash": 634638221 + } + } + }, + "1040108691": { + "name": "class TurnIndicatorCinematicAction*", + "bases": [ + "CinematicAction", + "PropertyClass" + ], + "hash": 1040108691, + "properties": { + "m_timeOffset": { "type": "float", - "id": 13, - "offset": 212, + "id": 0, + "offset": 72, "flags": 7, "container": "Static", "dynamic": false, - "singleton": true, + "singleton": false, "pointer": false, - "hash": 335078927 + "hash": 2237098605 } } }, - "1875432636": { - "name": "class SharedPointer", + "1892641892": { + "name": "class SharedPointer", "bases": [ - "ExpansionBehavior", - "BehaviorInstance", + "PvPUpdateMessage", "PropertyClass" ], - "hash": 1875432636, + "hash": 1892641892, "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_bankExpansions": { - "type": "int", - "id": 1, - "offset": 112, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1369075454 - }, - "m_friendListExpansions": { + "m_messageType": { "type": "int", - "id": 2, - "offset": 116, - "flags": 63, + "id": 0, + "offset": 72, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1057398198 + "hash": 1531535105 } } }, - "1090392257": { - "name": "class QuantityBehaviorTemplate", + "1038212709": { + "name": "class CustomEmoteBehaviorTemplate*", "bases": [ "BehaviorTemplate", "PropertyClass" ], - "hash": 1090392257, + "hash": 1038212709, "properties": { "m_behaviorName": { "type": "std::string", @@ -366099,8 +30832,8 @@ "pointer": false, "hash": 3130754092 }, - "m_maximumQuantity": { - "type": "int", + "m_animation1": { + "type": "std::string", "id": 1, "offset": 120, "flags": 7, @@ -366108,2143 +30841,2235 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 1520461975 - } - } - }, - "1875206885": { - "name": "class ClientTreasureBookBehavior", - "bases": [ - "TreasureBookBehavior", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1875206885, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, + "hash": 3030904012 + }, + "m_animation2": { + "type": "std::string", + "id": 2, + "offset": 152, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 + "hash": 3030904013 }, - "m_spellList": { - "type": "class SharedPointer", - "id": 1, - "offset": 120, - "flags": 27, - "container": "List", - "dynamic": true, + "m_sound1": { + "type": "std::string", + "id": 3, + "offset": 184, + "flags": 7, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2181913740 - } - } - }, - "1498673869": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1498673869, - "properties": { - "m_characterIDList": { - "type": "gid", - "id": 0, - "offset": 72, + "pointer": false, + "hash": 2453262773 + }, + "m_sound2": { + "type": "std::string", + "id": 4, + "offset": 216, "flags": 7, - "container": "List", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 689466254 + "hash": 2453262774 }, - "m_questNameList": { + "m_emoteText": { "type": "std::string", - "id": 1, - "offset": 88, + "id": 5, + "offset": 248, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2426384538 + }, + "m_emoteType": { + "type": "enum CustomEmoteType", + "id": 6, + "offset": 280, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1172696222, + "enum_options": { + "CE_Emote": 0, + "CE_Teleport": 1, + "CE_Dance": 2 + } + }, + "m_isMemberEmote": { + "type": "bool", + "id": 7, + "offset": 284, "flags": 7, - "container": "List", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 3221150474 + "hash": 1406867457 + }, + "m_isDefaultEmote": { + "type": "bool", + "id": 8, + "offset": 285, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1645218254 + }, + "m_bitFieldNumber": { + "type": "int", + "id": 9, + "offset": 288, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 59324198 } } }, - "1874895799": { - "name": "class WinAnimMoveToLocationSpeedEase", + "1892336994": { + "name": "class DyeShopModifiers", "bases": [ - "WinAnimMoveToLocationSpeed", - "WinAnimMoveToLocation", - "WindowAnimation", "PropertyClass" ], - "hash": 1874895799, + "hash": 1892336994, "properties": { - "m_bUseDeepCopy": { - "type": "bool", + "m_costFloorAdditive": { + "type": "int", "id": 0, "offset": 72, - "flags": 135, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 433380635 + "hash": 1871158175 }, - "m_targetLocation": { - "type": "class Vector3D", + "m_multiplierTemplateCost": { + "type": "float", "id": 1, - "offset": 80, - "flags": 135, + "offset": 76, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2653859938 + "hash": 1851711699 }, - "m_fSpeed": { + "m_multiplierIfDropList": { "type": "float", "id": 2, - "offset": 96, - "flags": 135, + "offset": 80, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 503609006 + "hash": 1310969758 }, - "m_fEaseInPercent": { + "m_multiplierIfDyeList": { "type": "float", "id": 3, - "offset": 112, - "flags": 135, + "offset": 84, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1482967843 + "hash": 257956107 }, - "m_fEaseOutPercent": { - "type": "float", + "m_petRenameCost": { + "type": "int", "id": 4, - "offset": 116, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1272154212 - }, - "m_fTotalDistance": { - "type": "float", - "id": 5, - "offset": 120, - "flags": 135, + "offset": 88, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1894338732 + "hash": 136443668 } } }, - "723502030": { - "name": "class DoodleMapMap*", + "1036710414": { + "name": "class PlayGraphicOnActorAction", "bases": [ + "ActorCinematicAction", + "CinematicAction", "PropertyClass" ], - "hash": 723502030, + "hash": 1036710414, "properties": { - "m_mapList": { - "type": "class DoodleMapPair", + "m_timeOffset": { + "type": "float", "id": 0, "offset": 72, "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2964081080 - } - } - }, - "1091682765": { - "name": "class SharedPointer", - "bases": [ - "Body", - "PropertyClass" - ], - "hash": 1091682765, - "properties": { - "m_position": { - "type": "class Vector3D", - "id": 0, - "offset": 88, - "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3697900983 + "hash": 2237098605 }, - "m_pitch": { - "type": "float", + "m_actor": { + "type": "std::string", "id": 1, - "offset": 100, + "offset": 80, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 896371695 + "hash": 2285866132 }, - "m_roll": { - "type": "float", + "m_assetName": { + "type": "std::string", "id": 2, - "offset": 104, + "offset": 120, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 310020272 + "hash": 1513131580 }, - "m_yaw": { - "type": "float", + "m_bDontFlipActorYaw": { + "type": "bool", "id": 3, - "offset": 108, + "offset": 152, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 357256328 - }, - "m_fHeight": { - "type": "float", - "id": 4, - "offset": 132, - "flags": 7, - "container": "Static", - "dynamic": false, + "hash": 632297791 + } + } + }, + "1463939559": { + "name": "enum GoalTemplate::GOAL_TYPE", + "bases": [], + "hash": 1463939559, + "properties": {} + }, + "605598665": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 605598665, + "properties": { + "m_PointData": { + "type": "class Point", + "id": 0, + "offset": 72, + "flags": 135, + "container": "Vector", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 401539638 + "hash": 2358246150 }, - "m_scale": { - "type": "float", - "id": 5, - "offset": 112, - "flags": 7, + "m_Color": { + "type": "class Color", + "id": 1, + "offset": 96, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 899693439 + "hash": 1753714077 } } }, - "1499111873": { - "name": "class ReagentShopOption", + "1463531469": { + "name": "class FXBySlotEffect", "bases": [ - "ServiceOptionBase", + "GameEffectBase", "PropertyClass" ], - "hash": 1499111873, + "hash": 1463531469, "properties": { - "m_serviceName": { - "type": "std::string", + "m_currentTickCount": { + "type": "double", "id": 0, - "offset": 72, - "flags": 31, + "offset": 80, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2206028813 + "hash": 2533274692 }, - "m_iconKey": { - "type": "std::string", + "m_effectNameID": { + "type": "unsigned int", "id": 1, - "offset": 168, - "flags": 31, + "offset": 96, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2457138637 + "hash": 1204067144 }, - "m_displayKey": { - "type": "std::string", + "m_bIsOnPet": { + "type": "bool", "id": 2, - "offset": 104, + "offset": 73, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3023276954 + "hash": 522593303 }, - "m_serviceIndex": { - "type": "unsigned int", + "m_originatorID": { + "type": "gid", "id": 3, - "offset": 204, - "flags": 31, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2103126710 + "hash": 1131810019 }, - "m_forceInteract": { - "type": "bool", + "m_itemSlotID": { + "type": "unsigned int", "id": 4, - "offset": 200, + "offset": 112, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1895747595 + }, + "m_internalID": { + "type": "int", + "id": 5, + "offset": 92, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1643137924 + }, + "m_endTime": { + "type": "unsigned int", + "id": 6, + "offset": 88, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1705789564 + "hash": 716479635 } } }, - "1875206895": { - "name": "class ClientTreasureBookBehavior*", + "1892397101": { + "name": "class SharedPointer", "bases": [ - "TreasureBookBehavior", - "BehaviorInstance", + "Requirement", "PropertyClass" ], - "hash": 1875206895, + "hash": 1892397101, "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", + "m_applyNOT": { + "type": "bool", "id": 0, - "offset": 104, - "flags": 39, + "offset": 72, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 + "hash": 1746328074, + "enum_options": { + "__DEFAULT": 0 + } }, - "m_spellList": { - "type": "class SharedPointer", + "m_operator": { + "type": "enum Requirement::Operator", "id": 1, - "offset": 120, - "flags": 27, - "container": "List", - "dynamic": true, + "offset": 76, + "flags": 2097183, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2181913740 + "pointer": false, + "hash": 2672792317, + "enum_options": { + "ROP_AND": 0, + "ROP_OR": 1, + "__DEFAULT": "ROP_AND" + } } } }, - "723888169": { - "name": "class PropertyClass", - "bases": [], - "hash": 723888169, - "properties": {} - }, - "1095807520": { - "name": "class SharedPointer", + "1037390197": { + "name": "class CombatParticipant", "bases": [ - "ControlEdit", - "Window", "PropertyClass" ], - "hash": 1095807520, + "hash": 1037390197, "properties": { - "m_sName": { - "type": "std::string", + "m_ownerID.m_full": { + "type": "unsigned __int64", "id": 0, - "offset": 80, - "flags": 135, + "offset": 112, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2306437263 + "hash": 2149616286 }, - "m_Children": { - "type": "class SharedPointer", + "m_templateID.m_full": { + "type": "unsigned __int64", "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, + "offset": 120, + "flags": 31, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2621225959 + "pointer": false, + "hash": 633907631 }, - "m_Style": { - "type": "unsigned int", + "m_isPlayer": { + "type": "bool", "id": 2, - "offset": 152, - "flags": 1048583, + "offset": 128, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152, - "FORCE_NUMERIC": 16777216, - "FORCE_ALPHA": 268435456, - "FORCE_ALPHANUMERIC": 536870912, - "FORCE_INTEGER": 33554432, - "FORCE_POSITIVE": 67108864, - "FORCE_RANGE": 134217728 - } + "hash": 1717744636 }, - "m_Flags": { - "type": "unsigned int", + "m_zoneID.m_full": { + "type": "unsigned __int64", "id": 3, - "offset": 156, - "flags": 1048583, + "offset": 136, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } + "hash": 2105998895 }, - "m_Window": { - "type": "class Rect", + "m_teamID": { + "type": "int", "id": 4, - "offset": 160, - "flags": 135, + "offset": 144, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3105139380 + "hash": 982118638 }, - "m_fTargetAlpha": { - "type": "float", + "m_primaryMagicSchoolID": { + "type": "int", "id": 5, - "offset": 212, - "flags": 135, + "offset": 148, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1809129834 + "hash": 1864910356 }, - "m_fDisabledAlpha": { - "type": "float", + "m_pipCount": { + "type": "class SharedPointer", "id": 6, - "offset": 216, - "flags": 135, + "offset": 152, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1389987675 + "pointer": true, + "hash": 1862540484 }, - "m_fAlpha": { - "type": "float", + "m_pipRoundRates": { + "type": "class SharedPointer", "id": 7, - "offset": 208, - "flags": 65671, - "container": "Static", - "dynamic": false, + "offset": 168, + "flags": 31, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 482130755 + "pointer": true, + "hash": 1859513241 }, - "m_pWindowStyle": { - "type": "class SharedPointer", + "m_PipsSuspended": { + "type": "bool", "id": 8, - "offset": 232, - "flags": 135, + "offset": 184, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3623628394 + "pointer": false, + "hash": 98171898 }, - "m_sHelp": { - "type": "std::wstring", + "m_stunned": { + "type": "int", "id": 9, - "offset": 248, - "flags": 4194439, + "offset": 188, + "flags": 25, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2102211316 + "hash": 1661672123 }, - "m_sScript": { - "type": "std::string", + "m_mindcontrolled": { + "type": "int", "id": 10, - "offset": 352, - "flags": 135, + "offset": 216, + "flags": 25, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1846695875 + "hash": 2059794744 }, - "m_Offset": { - "type": "class Point", + "m_originalTeam": { + "type": "int", "id": 11, - "offset": 192, - "flags": 135, + "offset": 224, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3389835433 + "hash": 1121355446 }, - "m_Scale": { - "type": "class Point", + "m_nAuraTurnLength": { + "type": "int", "id": 12, - "offset": 200, - "flags": 135, + "offset": 236, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2547159940 + "hash": 1719821564 }, - "m_sTip": { - "type": "std::wstring", + "m_clue": { + "type": "int", "id": 13, - "offset": 392, - "flags": 4194439, + "offset": 228, + "flags": 25, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1513510520 + "hash": 219277091 }, - "m_BubbleList": { - "type": "class WindowBubble", + "m_roundsDead": { + "type": "int", "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, + "offset": 232, + "flags": 31, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 2587533771 + "hash": 2071727747 }, - "m_ParentOffset": { - "type": "class Rect", + "m_nPolymorphTurnLength": { + "type": "int", "id": 15, - "offset": 176, - "flags": 135, + "offset": 240, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3091503757 + "hash": 1619550301 }, - "m_sText": { - "type": "std::wstring", + "m_playerHealth": { + "type": "int", "id": 16, - "offset": 584, - "flags": 135, + "offset": 244, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2102642960 + "hash": 740444925 }, - "m_nMaxLength": { + "m_maxPlayerHealth": { "type": "int", "id": 17, - "offset": 620, - "flags": 135, + "offset": 248, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1183478416 + "hash": 96027363 }, - "m_bPassword": { + "m_HideCurrentHP": { "type": "bool", "id": 18, - "offset": 624, - "flags": 135, + "offset": 252, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1604468200 + "hash": 31360456 }, - "m_bLog": { - "type": "bool", + "m_maxHandSize": { + "type": "int", "id": 19, - "offset": 625, - "flags": 135, + "offset": 256, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 221687287 + "hash": 1925169782 }, - "m_previousNext": { - "type": "bool", + "m_pHand": { + "type": "class Hand*", "id": 20, - "offset": 627, - "flags": 135, + "offset": 264, + "flags": 1, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 858581071 + "pointer": true, + "hash": 892448765 }, - "m_nMaxLogSize": { - "type": "int", + "m_pSavedHand": { + "type": "class Hand*", "id": 21, - "offset": 712, - "flags": 135, + "offset": 272, + "flags": 1, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 779573899 + "pointer": true, + "hash": 787912720 }, - "m_bEditing": { - "type": "bool", + "m_pPlayDeck": { + "type": "class PlayDeck*", "id": 22, - "offset": 616, - "flags": 135, + "offset": 280, + "flags": 1, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1243218553 + "pointer": true, + "hash": 2053198667 }, - "m_bAllowPaste": { - "type": "bool", + "m_pSavedPlayDeck": { + "type": "class PlayDeck*", "id": 23, - "offset": 626, - "flags": 135, + "offset": 288, + "flags": 1, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1129316721 + "pointer": true, + "hash": 498207966 }, - "m_nLogPosition": { - "type": "int", + "m_pSavedGameStats": { + "type": "class SharedPointer", "id": 24, - "offset": 704, - "flags": 135, + "offset": 296, + "flags": 1, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1120160767 + "pointer": true, + "hash": 1599533644 }, - "m_nCursor": { + "m_savedPrimaryMagicSchoolID": { "type": "int", "id": 25, - "offset": 716, - "flags": 135, + "offset": 312, + "flags": 1, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1876782150 + "hash": 983035431 }, - "m_nEditBegin": { - "type": "int", + "m_pGameStats": { + "type": "class SharedPointer", "id": 26, - "offset": 720, - "flags": 135, + "offset": 320, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1066592403 + "pointer": true, + "hash": 3522102873 }, - "m_nEditEnd": { - "type": "int", + "m_color": { + "type": "class Color", "id": 27, - "offset": 724, - "flags": 135, + "offset": 336, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1560905669 + "hash": 1791663549 }, - "m_sSavedText": { - "type": "std::wstring", + "m_rotation": { + "type": "float", "id": 28, - "offset": 728, - "flags": 135, + "offset": 340, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2197953283 + "hash": 1497468551 }, - "m_fCursorBlinkSpeed": { + "m_radius": { "type": "float", "id": 29, - "offset": 760, - "flags": 135, + "offset": 344, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2232655228 + "hash": 989410271 }, - "m_fCursorTimer": { - "type": "float", + "m_subcircle": { + "type": "int", "id": 30, - "offset": 764, - "flags": 135, + "offset": 348, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1929942748 + "hash": 1748202326 }, - "m_bCursorBlink": { + "m_pvp": { "type": "bool", "id": 31, - "offset": 768, - "flags": 135, + "offset": 352, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 683441507 + "hash": 269527241 }, - "m_fMinRange": { - "type": "double", + "m_raid": { + "type": "bool", "id": 32, - "offset": 776, - "flags": 135, + "offset": 353, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3079523396 + "hash": 222284947 }, - "m_fMaxRange": { - "type": "double", + "m_dynamicSymbol": { + "type": "enum DynamicSigilSymbol", "id": 33, - "offset": 784, - "flags": 135, + "offset": 356, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3876551814 + "hash": 701705655 }, - "m_nPrecision": { - "type": "int", + "m_accuracyBonus": { + "type": "float", "id": 34, - "offset": 792, - "flags": 135, + "offset": 396, + "flags": 1, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1404974196 + "hash": 1440672233 }, - "m_bDeleteOnFirstChar": { - "type": "bool", + "m_minionSubCircle": { + "type": "int", "id": 35, - "offset": 618, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 902105643 - } - } - }, - "1499189811": { - "name": "class std::list >", - "bases": [], - "hash": 1499189811, - "properties": {} - }, - "1876166932": { - "name": "class DynaModShowObject*", - "bases": [ - "DynaMod", - "PropertyClass" - ], - "hash": 1876166932, - "properties": { - "m_clientTag": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3409856790 - }, - "m_zoneName": { - "type": "std::string", - "id": 1, - "offset": 112, - "flags": 39, + "offset": 400, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2171167736 + "hash": 1896926112 }, - "m_zoneInstance": { - "type": "gid", - "id": 2, - "offset": 152, - "flags": 39, + "m_isMinion": { + "type": "bool", + "id": 36, + "offset": 404, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 449538121 + "hash": 1597230777 }, - "m_originator": { - "type": "gid", - "id": 3, - "offset": 72, - "flags": 63, + "m_isAccompanyNPC": { + "type": "bool", + "id": 37, + "offset": 412, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 709051254 + "hash": 1067399659 }, - "m_index": { - "type": "int", - "id": 4, - "offset": 160, - "flags": 30, - "container": "Static", - "dynamic": false, + "m_hangingEffects": { + "type": "class SpellEffect", + "id": 38, + "offset": 416, + "flags": 27, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 798031442 + "hash": 2685029606 }, - "m_zoneID": { - "type": "unsigned int", - "id": 5, - "offset": 144, - "flags": 16, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1440651126 - } - } - }, - "746693967": { - "name": "class ArenaMatchInfo*", - "bases": [ - "PropertyClass" - ], - "hash": 746693967, - "properties": { - "m_matchID": { - "type": "gid", - "id": 0, - "offset": 72, + "m_publicHangingEffects": { + "type": "class SpellEffect", + "id": 39, + "offset": 432, "flags": 31, - "container": "Static", - "dynamic": false, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 1757621298 + "hash": 1243141029 }, - "m_matchNameID": { - "type": "unsigned int", - "id": 1, - "offset": 80, + "m_auraEffects": { + "type": "class SpellEffect", + "id": 40, + "offset": 448, "flags": 31, - "container": "Static", - "dynamic": false, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 1751361288 + "hash": 2783652947 }, - "m_teams": { - "type": "class SharedPointer", - "id": 2, - "offset": 96, + "m_shadowEffects": { + "type": "class SharedPointer", + "id": 41, + "offset": 464, "flags": 31, "container": "List", "dynamic": true, "singleton": false, "pointer": true, - "hash": 1984373608 + "hash": 1712698903 }, - "m_matchName": { - "type": "std::string", - "id": 3, - "offset": 112, + "m_shadowSpellEffects": { + "type": "class SpellEffect", + "id": 42, + "offset": 480, "flags": 31, - "container": "Static", - "dynamic": false, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 2061215721 + "hash": 1808623792 }, - "m_matchTitle": { - "type": "std::string", - "id": 4, - "offset": 144, + "m_deathActivatedEffects": { + "type": "class SharedPointer", + "id": 43, + "offset": 512, "flags": 31, - "container": "Static", - "dynamic": false, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 2918442218 + "pointer": true, + "hash": 1347166054 }, - "m_matchZoneID": { - "type": "gid", - "id": 5, - "offset": 176, + "m_delayCastEffects": { + "type": "class DelaySpellEffect", + "id": 44, + "offset": 528, "flags": 31, - "container": "Static", - "dynamic": false, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 2026205966 + "hash": 2596123949 }, - "m_creatorID": { - "type": "gid", - "id": 6, - "offset": 88, + "m_polymorphSpellTemplateID": { + "type": "unsigned int", + "id": 45, + "offset": 576, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1051766037 + "hash": 1320079328 }, - "m_matchZone": { + "m_side": { "type": "std::string", - "id": 7, - "offset": 184, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2061662244 - }, - "m_startTime": { - "type": "int", - "id": 8, - "offset": 216, - "flags": 31, + "id": 46, + "offset": 600, + "flags": 1, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1386968823 + "hash": 1717547872 }, - "m_status": { - "type": "int", - "id": 9, - "offset": 220, + "m_shadowSpellsDisabled": { + "type": "bool", + "id": 47, + "offset": 672, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 960781182 + "hash": 2077139652 }, - "m_friendsOnly": { + "m_ignoreSpellsPvPOnlyFlag": { "type": "bool", - "id": 10, - "offset": 236, + "id": 48, + "offset": 673, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1420401792 + "hash": 1714276188 }, - "m_tournamentNameID": { - "type": "unsigned int", - "id": 11, - "offset": 224, + "m_ignoreSpellsPvEOnlyFlag": { + "type": "bool", + "id": 49, + "offset": 674, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1799846440 + "hash": 1691675729 }, - "m_leagueID": { - "type": "unsigned int", - "id": 12, - "offset": 228, + "m_bossMob": { + "type": "bool", + "id": 50, + "offset": 675, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 692361645 + "hash": 986129576 }, - "m_seasonID": { - "type": "unsigned int", - "id": 13, - "offset": 232, + "m_hidePVPEnemyChat": { + "type": "bool", + "id": 51, + "offset": 676, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 535260643 + "hash": 1284658049 }, - "m_bUpdateLadder": { - "type": "bool", - "id": 14, - "offset": 248, - "flags": 31, - "container": "Static", - "dynamic": false, + "m_combatTriggerIDs": { + "type": "int", + "id": 52, + "offset": 696, + "flags": 1, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 1937525956 + "hash": 1654684388 }, - "m_maxPointsPerMatch": { - "type": "unsigned int", - "id": 15, - "offset": 240, + "m_backlash": { + "type": "int", + "id": 53, + "offset": 724, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1397040900 + "hash": 857558899 }, - "m_estimatedWeight": { - "type": "float", - "id": 16, - "offset": 244, + "m_pastBacklash": { + "type": "int", + "id": 54, + "offset": 728, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1374360127 + "hash": 1229328939 }, - "m_maxELOError": { + "m_shadowCreatureLevel": { "type": "int", - "id": 17, - "offset": 252, + "id": 55, + "offset": 732, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 318998922 + "hash": 1119572179 }, - "m_uniqueMatchID": { - "type": "std::string", - "id": 18, - "offset": 264, + "m_pastShadowCreatureLevel": { + "type": "int", + "id": 56, + "offset": 736, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3291026220 + "hash": 1267855499 }, - "m_pvpDuelModifiersTemplates": { - "type": "class SharedPointer", - "id": 19, - "offset": 296, + "m_shadowCreatureLevelCount": { + "type": "int", + "id": 57, + "offset": 744, "flags": 31, - "container": "List", + "container": "Vector", "dynamic": true, "singleton": false, - "pointer": true, - "hash": 1193155411 + "pointer": false, + "hash": 975615804 }, - "m_teamSize": { - "type": "unsigned int", - "id": 20, - "offset": 256, + "m_interceptEffect": { + "type": "class SharedPointer", + "id": 58, + "offset": 768, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 2343388751 - } - } - }, - "1501671386": { - "name": "class SharedPointer", - "bases": [ - "CinematicActor", - "PropertyClass" - ], - "hash": 1501671386, - "properties": {} - }, - "1093865471": { - "name": "class WhirlyBurlySpellTemplate", - "bases": [ - "SpellTemplate", - "CoreTemplate", - "PropertyClass" - ], - "hash": 1093865471, - "properties": { - "m_behaviors": { - "type": "class BehaviorTemplate*", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, "pointer": true, - "hash": 1197808594 + "hash": 339294150 }, - "m_name": { - "type": "std::string", - "id": 1, - "offset": 96, - "flags": 7, + "m_roundsSinceShadowPip": { + "type": "int", + "id": 59, + "offset": 800, + "flags": 1, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1717359772 + "hash": 682042934 }, - "m_description": { - "type": "std::string", - "id": 2, - "offset": 168, - "flags": 8388615, + "m_polymorphEffect": { + "type": "class SharedPointer", + "id": 60, + "offset": 824, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1649374815 + "pointer": true, + "hash": 2193528962 }, - "m_advancedDescription": { - "type": "std::string", - "id": 3, - "offset": 200, - "flags": 8388615, + "m_confused": { + "type": "int", + "id": 61, + "offset": 196, + "flags": 25, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3465713013 + "hash": 1851913585 }, - "m_displayName": { - "type": "std::string", - "id": 4, - "offset": 136, - "flags": 8388615, + "m_confusionTrigger": { + "type": "int", + "id": 62, + "offset": 200, + "flags": 25, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2446900370 + "hash": 554584130 }, - "m_spellBase": { - "type": "std::string", - "id": 5, - "offset": 248, - "flags": 268435463, + "m_confusionDisplay": { + "type": "bool", + "id": 63, + "offset": 204, + "flags": 25, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2688054198, - "enum_options": { - "__BASECLASS": "CinematicTemplate" - } - }, - "m_effects": { - "type": "class SharedPointer", - "id": 6, - "offset": 280, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 370726379 + "hash": 1028383709 }, - "m_sMagicSchoolName": { - "type": "std::string", - "id": 7, - "offset": 312, - "flags": 7, + "m_confusedTarget": { + "type": "bool", + "id": 64, + "offset": 205, + "flags": 25, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2035693400 + "hash": 1193542673 }, - "m_sTypeName": { - "type": "std::string", - "id": 8, - "offset": 352, - "flags": 7, + "m_untargetable": { + "type": "bool", + "id": 65, + "offset": 206, + "flags": 25, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3580785905 + "hash": 36479793 }, - "m_trainingCost": { + "m_untargetableRounds": { "type": "int", - "id": 9, - "offset": 384, - "flags": 7, + "id": 66, + "offset": 208, + "flags": 25, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 982588239 + "hash": 80618355 }, - "m_accuracy": { - "type": "int", - "id": 10, - "offset": 388, - "flags": 7, + "m_restrictedTarget": { + "type": "bool", + "id": 67, + "offset": 212, + "flags": 25, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1636315493 + "hash": 394144563 }, - "m_baseCost": { - "type": "int", - "id": 11, - "offset": 232, - "flags": 7, + "m_exitCombat": { + "type": "bool", + "id": 68, + "offset": 213, + "flags": 25, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1475151502 + "hash": 1293141763 }, - "m_creditsCost": { - "type": "int", - "id": 12, - "offset": 236, - "flags": 7, + "m_stunnedDisplay": { + "type": "bool", + "id": 69, + "offset": 192, + "flags": 25, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 715313825 + "hash": 892304554 }, - "m_pvpCurrencyCost": { - "type": "int", - "id": 13, - "offset": 240, - "flags": 7, + "m_mindcontrolledDisplay": { + "type": "bool", + "id": 70, + "offset": 220, + "flags": 25, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 645595444 + "hash": 174689415 }, - "m_pvpTourneyCurrencyCost": { - "type": "int", - "id": 14, - "offset": 244, - "flags": 7, + "m_autoPass": { + "type": "bool", + "id": 71, + "offset": 720, + "flags": 25, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 517874954 + "hash": 1919864803 }, - "m_boosterPackIcon": { - "type": "std::string", - "id": 15, - "offset": 496, - "flags": 131079, + "m_vanish": { + "type": "bool", + "id": 72, + "offset": 721, + "flags": 25, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3428653697 - }, - "m_validTargetSpells": { - "type": "unsigned int", - "id": 16, - "offset": 392, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2355782967 + "hash": 1058591164 }, - "m_PvP": { + "m_myTeamTurn": { "type": "bool", - "id": 17, - "offset": 408, - "flags": 7, + "id": 73, + "offset": 722, + "flags": 25, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 269492361 + "hash": 1134422697 }, - "m_PvE": { + "m_needToCleanAuras": { "type": "bool", - "id": 18, - "offset": 409, - "flags": 7, + "id": 74, + "offset": 888, + "flags": 25, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 269492350 + "hash": 1159570481 }, - "m_noPvPEnchant": { - "type": "bool", - "id": 19, - "offset": 410, - "flags": 7, + "m_planningPhasePipAquiredType": { + "type": "enum CombatParticipant::PipAquiredByEnum", + "id": 75, + "offset": 816, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 661581703 + "hash": 1435933659, + "enum_options": { + "CombatParticipant::AQUIRED_PIP_UNKNOWN": 0, + "CombatParticipant::AQUIRED_PIP_NORMAL": 1, + "CombatParticipant::AQUIRED_PIP_POWER": 2, + "CombatParticipant::AQUIRED_NORMAL_TO_POWER_PIP_CONVERSION": 4, + "CombatParticipant::IMPEDE_PIPS": 5 + } }, - "m_noPvEEnchant": { - "type": "bool", - "id": 20, - "offset": 411, - "flags": 7, + "m_cheatSettings": { + "type": "class SharedPointer", + "id": 76, + "offset": 96, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 10144220 + "pointer": true, + "hash": 2742666223 }, - "m_battlegroundsOnly": { - "type": "bool", - "id": 21, - "offset": 412, - "flags": 7, + "m_isMonster": { + "type": "unsigned int", + "id": 77, + "offset": 408, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1244782419 + "hash": 1530878065 }, - "m_Treasure": { - "type": "bool", - "id": 22, - "offset": 413, - "flags": 7, + "m_weaponNifSoundList": { + "type": "class SharedPointer", + "id": 78, + "offset": 80, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2575326929 + }, + "m_petCombatTrigger": { + "type": "int", + "id": 79, + "offset": 712, + "flags": 1, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1749096414 + "hash": 822894541 }, - "m_noDiscard": { - "type": "bool", - "id": 23, - "offset": 414, - "flags": 7, + "m_petCombatTriggerTarget": { + "type": "int", + "id": 80, + "offset": 716, + "flags": 1, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 565749226 + "hash": 675145556 }, - "m_leavesPlayWhenCast": { - "type": "bool", - "id": 24, - "offset": 532, - "flags": 7, + "m_shadowPipRateThreshold": { + "type": "float", + "id": 81, + "offset": 840, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 698216294 + "hash": 1215959391 }, - "m_imageIndex": { + "m_baseSpellDamage": { "type": "int", - "id": 25, - "offset": 416, - "flags": 7, + "id": 82, + "offset": 844, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1570500405 + "hash": 871613364 }, - "m_imageName": { - "type": "std::string", - "id": 26, - "offset": 424, - "flags": 131079, + "m_statDamage": { + "type": "float", + "id": 83, + "offset": 848, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2391520543 + "hash": 1480169970 }, - "m_cloaked": { - "type": "bool", - "id": 27, - "offset": 489, - "flags": 7, + "m_statResist": { + "type": "float", + "id": 84, + "offset": 852, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 7349510 + "hash": 2033033901 }, - "m_casterInvisible": { - "type": "bool", - "id": 28, - "offset": 490, - "flags": 7, + "m_statPierce": { + "type": "float", + "id": 85, + "offset": 856, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 310214650 + "hash": 1959012939 }, - "m_adjectives": { - "type": "std::string", - "id": 29, - "offset": 576, - "flags": 7, - "container": "List", - "dynamic": true, + "m_mobLevel": { + "type": "int", + "id": 86, + "offset": 860, + "flags": 31, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 2967855037 + "hash": 186067024 }, - "m_spellSourceType": { - "type": "enum SpellTemplate::kSpellSourceType", - "id": 30, - "offset": 528, - "flags": 2097159, + "m_bPlayerTimeUpdated": { + "type": "bool", + "id": 87, + "offset": 864, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 156272727, - "enum_options": { - "kCaster": 0, - "kPet": 1, - "kShadowCreature": 2, - "kWeapon": 3, - "kEquipment": 4 - } + "hash": 877395800 }, - "m_cloakedName": { - "type": "std::string", - "id": 31, - "offset": 536, - "flags": 268435463, + "m_bPlayerTimeEliminated": { + "type": "bool", + "id": 88, + "offset": 865, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2846679215, - "enum_options": { - "__BASECLASS": "SpellTemplate" - } + "hash": 1842006605 }, - "m_purchaseRequirements": { - "type": "class RequirementList*", - "id": 32, - "offset": 608, - "flags": 7, + "m_bPlayerTimeWarning": { + "type": "bool", + "id": 89, + "offset": 866, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3174641793 + "pointer": false, + "hash": 742875591 }, - "m_displayRequirements": { - "type": "class RequirementList*", - "id": 33, - "offset": 840, - "flags": 7, + "m_deckFullness": { + "type": "float", + "id": 90, + "offset": 868, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3646782876 + "pointer": false, + "hash": 156080730 }, - "m_descriptionTrainer": { - "type": "std::string", - "id": 34, - "offset": 616, - "flags": 8388871, + "m_archmasteryPoints": { + "type": "float", + "id": 91, + "offset": 872, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1756093908 + "hash": 261464375 }, - "m_descriptionCombatHUD": { - "type": "std::string", - "id": 35, - "offset": 648, - "flags": 8388871, + "m_maxArchmasteryPoints": { + "type": "float", + "id": 92, + "offset": 876, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1631478006 + "hash": 430012637 }, - "m_displayIndex": { - "type": "int", - "id": 36, - "offset": 680, - "flags": 7, + "m_archmasterySchool": { + "type": "unsigned int", + "id": 93, + "offset": 880, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1250551048 + "hash": 485805784 }, - "m_hiddenFromEffectsWindow": { - "type": "bool", - "id": 37, - "offset": 684, - "flags": 7, + "m_archmasteryFlags": { + "type": "unsigned int", + "id": 94, + "offset": 884, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1832736331 - }, - "m_ignoreCharms": { - "type": "bool", - "id": 38, - "offset": 685, + "hash": 1571282557 + } + } + }, + "606351405": { + "name": "class SharedPointer", + "bases": [ + "LinearSoundBehaviorTemplate", + "PositionalSoundBehaviorTemplate", + "SoundBehaviorTemplate", + "AreaBehaviorTemplate", + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 606351405, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1840075893 + "hash": 3130754092 }, - "m_alwaysFizzle": { - "type": "bool", - "id": 39, - "offset": 686, + "m_radius": { + "type": "float", + "id": 1, + "offset": 120, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2030988856 + "hash": 989410271 }, - "m_spellCategory": { - "type": "std::string", - "id": 40, - "offset": 688, - "flags": 7, + "m_category": { + "type": "enum AudioCategory", + "id": 2, + "offset": 124, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2472376729 + "hash": 2951251982, + "enum_options": { + "AudioCategory_Irrelevent": 0, + "AudioCategory_Accoustic": 1, + "AudioCategory_Noise": 2, + "AudioCategory_Music": 3, + "AudioCategory_MusicAtSFXVolume": 4, + "AudioCategory_Dialog": 5, + "AudioCategory_UI": 6, + "AudioCategory_NoiseAtMusicVolume": 7 + } }, - "m_showPolymorphedName": { + "m_exclusive": { "type": "bool", - "id": 41, - "offset": 720, + "id": 3, + "offset": 128, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2097929096 + "hash": 824383403 }, - "m_skipTruncation": { + "m_active": { "type": "bool", - "id": 42, - "offset": 721, - "flags": 263, + "id": 4, + "offset": 129, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1838335249 + "hash": 239335471 }, - "m_maxCopies": { - "type": "unsigned int", - "id": 43, - "offset": 724, + "m_enableReqs": { + "type": "class SharedPointer", + "id": 5, + "offset": 136, "flags": 263, "container": "Static", "dynamic": false, "singleton": false, + "pointer": true, + "hash": 3158020443 + }, + "m_trackFilenameList": { + "type": "std::string", + "id": 6, + "offset": 152, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, "pointer": false, - "hash": 403022326 + "hash": 2531081709 }, - "m_levelRestriction": { + "m_playList": { + "type": "class PlayListEntry*", + "id": 7, + "offset": 176, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 3907873161 + }, + "m_priority": { "type": "int", - "id": 44, - "offset": 728, - "flags": 263, + "id": 8, + "offset": 208, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 176502472 + "hash": 1235205852 }, - "m_delayEnchantment": { - "type": "bool", - "id": 45, - "offset": 732, - "flags": 287, + "m_volume": { + "type": "float", + "id": 9, + "offset": 200, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 191336919 + "hash": 1162855023 }, - "m_delayEnchantmentOrder": { - "type": "enum SpellEffect::kDelayOrder", - "id": 46, - "offset": 736, - "flags": 287, + "m_loopCount": { + "type": "int", + "id": 10, + "offset": 204, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2526055263, - "enum_options": { - "SpellEffect::kAnyOrder": 0, - "SpellEffect::kFirst": 1, - "SpellEffect::kSecond": 2 - } + "hash": 865634717 }, - "m_previousSpellName": { - "type": "std::string", - "id": 47, - "offset": 744, - "flags": 268435463, + "m_progression": { + "type": "enum PlayList::Progression", + "id": 11, + "offset": 220, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2903322585, + "hash": 3279400238, "enum_options": { - "__BASECLASS": "SpellTemplate" + "Sequence": 0, + "Random": 1, + "SequenceOnceOnly": 2, + "RandomNoRepeat": 3 } }, - "m_cardFront": { - "type": "std::string", - "id": 48, - "offset": 456, - "flags": 131359, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3557598526 - }, - "m_useGloss": { - "type": "bool", - "id": 49, - "offset": 488, - "flags": 287, + "m_progressMin": { + "type": "float", + "id": 12, + "offset": 212, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 668817544 + "hash": 1497550192 }, - "m_ignoreDispel": { - "type": "bool", - "id": 50, - "offset": 776, - "flags": 287, + "m_progressMax": { + "type": "float", + "id": 13, + "offset": 216, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1881041624 + "hash": 1497549938 }, - "m_backRowFriendly": { - "type": "bool", - "id": 51, - "offset": 777, - "flags": 287, + "m_audioFilterSet": { + "type": "unsigned int", + "id": 14, + "offset": 224, + "flags": 33554439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 501584377 + "hash": 831339825 }, - "m_spellRank": { - "type": "class SharedPointer", - "id": 52, - "offset": 784, + "m_animationNameFilter": { + "type": "std::string", + "id": 15, + "offset": 232, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3152361374 + "pointer": false, + "hash": 2292854242 }, - "m_secondarySchoolName": { + "m_functionallabel": { "type": "std::string", - "id": 53, - "offset": 800, + "id": 16, + "offset": 264, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1803268236 + "hash": 3589331278 }, - "m_spellFusion": { - "type": "unsigned int", - "id": 54, - "offset": 836, + "m_innerRadius": { + "type": "float", + "id": 17, + "offset": 296, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1658928321 + "hash": 686816091 }, - "m_requiredSchoolName": { - "type": "std::string", - "id": 55, - "offset": 848, + "m_inverted": { + "type": "bool", + "id": 18, + "offset": 300, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3576058981 + "hash": 1034821044 }, - "m_unitMovement": { - "type": "std::string", - "id": 56, - "offset": 880, + "m_fRangeScale": { + "type": "float", + "id": 19, + "offset": 304, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3170961702 + "hash": 1749294034 }, - "m_specialUnits": { - "type": "std::string", - "id": 57, - "offset": 912, + "m_fAttenuationFactor": { + "type": "float", + "id": 20, + "offset": 308, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2725603631 - } - } - }, - "737094019": { - "name": "class ShadowSpellTrackingData*", - "bases": [ - "PropertyClass" - ], - "hash": 737094019, - "properties": { - "m_pSpellEffect": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3446820733 + "hash": 273292776 }, - "m_remainingTurns": { - "type": "int", - "id": 1, - "offset": 88, - "flags": 31, + "m_eAttenuationType": { + "type": "enum PositionInfoAttenuationType", + "id": 21, + "offset": 312, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1100057776 + "hash": 2427193304, + "enum_options": { + "Standard": 0, + "Unit Range Power": 1 + } + }, + "m_vPositions": { + "type": "class Vector3D", + "id": 22, + "offset": 320, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 3599600160 } } }, - "1501324967": { - "name": "class SharedPointer", + "1465232142": { + "name": "class ClientDerbyModifyRate", "bases": [ - "ElixirBenefitEffect", - "GameEffectBase", + "DerbyModifyRate", + "DerbyEffect", "PropertyClass" ], - "hash": 1501324967, + "hash": 1465232142, "properties": { - "m_currentTickCount": { - "type": "double", + "m_buffType": { + "type": "enum DerbyTalentBuffType", "id": 0, - "offset": 80, - "flags": 63, + "offset": 92, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2533274692 + "hash": 1149251982, + "enum_options": { + "Buff": 0, + "Debuff": 1, + "Neither": 2 + } }, - "m_effectNameID": { - "type": "unsigned int", + "m_kTarget": { + "type": "enum DerbyTargetType", "id": 1, "offset": 96, - "flags": 63, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1204067144 + "hash": 1807803351, + "enum_options": { + "kTargetInFront": 0, + "kTargetBehind": 1, + "kTargetFirst": 2, + "kTargetSelf": 3, + "kTargetAll": 4, + "kTargetLast": 5 + } }, - "m_bIsOnPet": { - "type": "bool", + "m_nDuration": { + "type": "int", "id": 2, - "offset": 73, + "offset": 104, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 522593303 + "hash": 1110167982 }, - "m_originatorID": { - "type": "gid", + "m_effectID": { + "type": "unsigned int", "id": 3, - "offset": 104, - "flags": 39, + "offset": 88, + "flags": 24, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1131810019 + "hash": 2347630439 }, - "m_itemSlotID": { - "type": "unsigned int", + "m_imageFilename": { + "type": "std::string", "id": 4, "offset": 112, - "flags": 63, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1895747595 + "hash": 2813328063 }, - "m_internalID": { - "type": "int", + "m_iconIndex": { + "type": "unsigned int", "id": 5, - "offset": 92, - "flags": 63, + "offset": 144, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1643137924 + "hash": 1265133262 }, - "m_endTime": { - "type": "unsigned int", + "m_soundOnActivate": { + "type": "std::string", "id": 6, - "offset": 88, - "flags": 31, + "offset": 152, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 716479635 + "hash": 1956929714 }, - "m_flags": { - "type": "unsigned int", + "m_soundOnTarget": { + "type": "std::string", "id": 7, - "offset": 128, - "flags": 7, + "offset": 184, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1005801050 + "hash": 3444214056 + }, + "m_targetParticleEffect": { + "type": "std::string", + "id": 8, + "offset": 216, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3048234723 + }, + "m_overheadMessage": { + "type": "std::string", + "id": 9, + "offset": 248, + "flags": 8388639, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1701018190 + }, + "m_requirements": { + "type": "class RequirementList", + "id": 10, + "offset": 280, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2840988582 + }, + "m_nRateChange": { + "type": "int", + "id": 11, + "offset": 376, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 797681786 } } }, - "1876410993": { - "name": "class ActiveClassProject*", + "605996469": { + "name": "class SharedPointer", "bases": [ + "Requirement", "PropertyClass" ], - "hash": 1876410993, + "hash": 605996469, "properties": { - "m_goalCount": { - "type": "int", + "m_applyNOT": { + "type": "bool", "id": 0, "offset": 72, - "flags": 7, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 774266758 + "hash": 1746328074, + "enum_options": { + "__DEFAULT": 0 + } }, - "m_projectID": { - "type": "unsigned int", + "m_operator": { + "type": "enum Requirement::Operator", "id": 1, "offset": 76, - "flags": 7, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1263221425 + "hash": 2672792317, + "enum_options": { + "ROP_AND": 0, + "ROP_OR": 1, + "__DEFAULT": "ROP_AND" + } }, - "m_displayMultiplier": { - "type": "int", + "m_questName": { + "type": "std::string", "id": 2, - "offset": 96, - "flags": 7, + "offset": 80, + "flags": 268435463, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 239852119 + "hash": 1702112846, + "enum_options": { + "__BASECLASS": "QuestTemplate" + } }, - "m_endTime": { - "type": "unsigned int", + "m_goalName": { + "type": "std::string", "id": 3, - "offset": 100, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 716479635 - }, - "m_currentDay": { - "type": "unsigned int", - "id": 4, - "offset": 104, + "offset": 112, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2006571726 - }, - "m_multiplier": { - "type": "int", - "id": 5, - "offset": 108, - "flags": 7, + "hash": 1521627807 + } + } + }, + "1892923431": { + "name": "class ClientFXDef*", + "bases": [ + "FXDef", + "PropertyClass" + ], + "hash": 1892923431, + "properties": { + "m_FXFile": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 759714273 + "hash": 2810683385 }, - "m_isEnding": { - "type": "bool", - "id": 6, - "offset": 112, + "m_stackingCategory": { + "type": "std::string", + "id": 1, + "offset": 104, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1289717828 + "hash": 2363740365 }, - "m_parameter": { - "type": "std::string", - "id": 7, - "offset": 120, + "m_repeatTime": { + "type": "float", + "id": 2, + "offset": 136, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3122239292 + "hash": 453389511 } } }, - "731548130": { - "name": "class ClientSwapShadowMaterialActorCinematicAction", + "1039195406": { + "name": "class SharedPointer", "bases": [ - "SwapShadowMaterialActorCinematicAction", - "ActorCinematicAction", - "CinematicAction", + "LootInfo", + "LootInfoBase", "PropertyClass" ], - "hash": 731548130, + "hash": 1039195406, "properties": { - "m_timeOffset": { - "type": "float", + "m_lootType": { + "type": "enum LootInfo::LOOT_TYPE", "id": 0, "offset": 72, - "flags": 7, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 + "hash": 1591891442, + "enum_options": { + "LOOT_TYPE_NONE": 0, + "LOOT_TYPE_GOLD": 1, + "LOOT_TYPE_MANA": 2, + "LOOT_TYPE_ITEM": 3, + "LOOT_TYPE_TREASURE_CARD": 4, + "LOOT_TYPE_MAGIC_XP": 5, + "LOOT_TYPE_ADD_SPELL": 6, + "LOOT_TYPE_MAX_HEALTH": 7, + "LOOT_TYPE_MAX_GOLD": 8, + "LOOT_TYPE_MAX_MANA": 9, + "LOOT_TYPE_MAX_POTION": 10, + "LOOT_TYPE_TRAINING_POINTS": 11, + "LOOT_TYPE_RECIPE": 12, + "LOOT_TYPE_CRAFTING_SLOT": 13, + "LOOT_TYPE_REAGENT": 14, + "LOOT_TYPE_PETSNACK": 15, + "LOOT_TYPE_GARDENING_XP": 16, + "LOOT_TYPE_PET_XP": 17, + "LOOT_TYPE_TREASURE_TABLE": 18, + "LOOT_TYPE_ARENA_POINTS": 19, + "LOOT_TYPE_ARENA_BONUS_POINTS": 20, + "LOOT_TYPE_GROUP": 21, + "LOOT_TYPE_FISHING_XP": 22, + "LOOT_TYPE_EVENT_CURRENCY_1": 24, + "LOOT_TYPE_EVENT_CURRENCY_2": 25, + "LOOT_TYPE_PVP_CURRENCY": 26, + "LOOT_TYPE_PVP_CURRENCY_BONUS": 27, + "LOOT_TYPE_PVP_TOURNEY_CURRENCY": 28, + "LOOT_TYPE_PVP_TOURNEY_CURRENCY_BONUS": 29, + "LOOT_TYPE_FURNITURE_ESSENCE": 30 + } }, - "m_actor": { - "type": "std::string", + "m_pvpCurrencyAmount": { + "type": "int", "id": 1, "offset": 80, - "flags": 7, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2285866132 + "hash": 649262863 } } }, - "1093910335": { - "name": "class PremiumContentOptionList*", + "1464304424": { + "name": "class SharedPointer", "bases": [ + "WizItemLocations", "PropertyClass" ], - "hash": 1093910335, + "hash": 1464304424, "properties": { - "m_optionList": { - "type": "class PremiumContentOption", + "m_itemType": { + "type": "enum WizItemLocations::eItemType", "id": 0, "offset": 72, - "flags": 7, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3482173907, + "enum_options": { + "shop": 0, + "quest": 1, + "boss": 2, + "gardening": 3, + "goldChest": 4 + } + }, + "m_vendors": { + "type": "class SharedPointer", + "id": 1, + "offset": 80, + "flags": 31, "container": "List", "dynamic": true, "singleton": false, - "pointer": false, - "hash": 1394856917 + "pointer": true, + "hash": 1211076136 } } }, - "1501176517": { - "name": "class ReqPvPCombat", + "1038212901": { + "name": "class CustomEmoteBehaviorTemplate", "bases": [ - "ConditionalSpellEffectRequirement", - "Requirement", + "BehaviorTemplate", "PropertyClass" ], - "hash": 1501176517, + "hash": 1038212901, "properties": { - "m_applyNOT": { - "type": "bool", + "m_behaviorName": { + "type": "std::string", "id": 0, "offset": 72, - "flags": 31, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1746328074, - "enum_options": { - "__DEFAULT": 0 - } + "hash": 3130754092 }, - "m_operator": { - "type": "enum Requirement::Operator", + "m_animation1": { + "type": "std::string", "id": 1, - "offset": 76, - "flags": 2097183, + "offset": 120, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2672792317, - "enum_options": { - "ROP_AND": 0, - "ROP_OR": 1, - "__DEFAULT": "ROP_AND" - } + "hash": 3030904012 }, - "m_targetType": { - "type": "enum ConditionalSpellEffectRequirement::RequirementTarget", + "m_animation2": { + "type": "std::string", "id": 2, - "offset": 80, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3030904013 + }, + "m_sound1": { + "type": "std::string", + "id": 3, + "offset": 184, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2453262773 + }, + "m_sound2": { + "type": "std::string", + "id": 4, + "offset": 216, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2453262774 + }, + "m_emoteText": { + "type": "std::string", + "id": 5, + "offset": 248, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2426384538 + }, + "m_emoteType": { + "type": "enum CustomEmoteType", + "id": 6, + "offset": 280, "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2547737902, + "hash": 1172696222, "enum_options": { - "RT_Caster": 0, - "RT_Target": 1 + "CE_Emote": 0, + "CE_Teleport": 1, + "CE_Dance": 2 } + }, + "m_isMemberEmote": { + "type": "bool", + "id": 7, + "offset": 284, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1406867457 + }, + "m_isDefaultEmote": { + "type": "bool", + "id": 8, + "offset": 285, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1645218254 + }, + "m_bitFieldNumber": { + "type": "int", + "id": 9, + "offset": 288, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 59324198 } } }, - "725947370": { - "name": "class ClientPlayerStatueBehavior*", + "1464198029": { + "name": "class ExtraHousingZoneBehavior*", "bases": [ - "PlayerStatueBehavior", + "ExtraHousingZoneBehaviorBase", "BehaviorInstance", "PropertyClass" ], - "hash": 725947370, + "hash": 1464198029, "properties": { "m_behaviorTemplateNameID": { "type": "unsigned int", @@ -368256,448 +33081,373 @@ "singleton": false, "pointer": false, "hash": 223437287 - }, - "m_visualBlobs": { - "type": "std::string", - "id": 1, - "offset": 176, - "flags": 31, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 3602657281 } } }, - "724783357": { - "name": "class SharedPointer", + "606653373": { + "name": "class SharedPointer", "bases": [ + "MakeTargetableCinematicAction", + "ActorCinematicAction", + "CinematicAction", "PropertyClass" ], - "hash": 724783357, + "hash": 606653373, "properties": { - "m_Color": { - "type": "class Color", + "m_timeOffset": { + "type": "float", "id": 0, "offset": 72, - "flags": 262279, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1753714077 + "hash": 2237098605 }, - "m_sLabel": { - "type": "std::wstring", + "m_actor": { + "type": "std::string", "id": 1, "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2207009163 - }, - "m_Flags": { - "type": "unsigned int", - "id": 2, - "offset": 112, - "flags": 1048583, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 967851578, - "enum_options": { - "ControlTree::Item::EXPANDED": 2, - "ControlTree::Item::BUTTON": 1 - } - }, - "m_Children": { - "type": "struct ControlTree::Item*", - "id": 3, - "offset": 128, - "flags": 135, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1558446980 + "hash": 2285866132 } } }, - "1877118311": { - "name": "class ZoneTokenCountControl*", + "1893235548": { + "name": "class Material", "bases": [ - "ZoneTokenBaseControl", - "Window", "PropertyClass" ], - "hash": 1877118311, + "hash": 1893235548, "properties": { - "m_sName": { - "type": "std::string", + "m_sMaterialName": { + "type": "std::wstring", "id": 0, - "offset": 80, + "offset": 72, "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2306437263 + "hash": 1299185467 }, - "m_Children": { - "type": "class SharedPointer", + "m_Blending": { + "type": "enum Material::Blending", "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, + "offset": 116, + "flags": 2097159, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2621225959 + "pointer": false, + "hash": 3003693822, + "enum_options": { + "B_NONE": 0, + "B_ADDITIVE": 1, + "B_ALPHA": 2, + "B_ALPHA_INV": 3, + "B_ADDITIVE_INV": 4, + "__DEFAULT": "B_ALPHA" + } }, - "m_Style": { - "type": "unsigned int", + "m_eRepeat": { + "type": "enum Material::Repeating", "id": 2, - "offset": 152, - "flags": 1048583, + "offset": 176, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 983582334, + "hash": 3302018843, "enum_options": { - "HAS_BACK": 1, - "SCALE_CHILDREN": 2, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "FOCUS_LOCKED": 64, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152 + "R_NONE": 0, + "R_REPEAT": 1 } }, - "m_Flags": { - "type": "unsigned int", + "m_pDiffuseMap": { + "type": "class SharedPointer", "id": 3, - "offset": 156, - "flags": 1048583, + "offset": 120, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } + "pointer": true, + "hash": 4008975679 }, - "m_Window": { - "type": "class Rect", + "m_pAlphaMask": { + "type": "class SharedPointer", "id": 4, - "offset": 160, + "offset": 136, "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 3105139380 + "pointer": true, + "hash": 3411451405 }, - "m_fTargetAlpha": { + "m_fLastAlpha": { "type": "float", "id": 5, - "offset": 212, + "offset": 152, "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1809129834 + "hash": 284727287 }, - "m_fDisabledAlpha": { - "type": "float", + "m_Diffuse": { + "type": "class Color", "id": 6, - "offset": 216, - "flags": 135, + "offset": 156, + "flags": 262279, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1389987675 + "hash": 1644364836 }, - "m_fAlpha": { - "type": "float", + "m_Ambient": { + "type": "class Color", "id": 7, - "offset": 208, - "flags": 65671, + "offset": 160, + "flags": 262279, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 482130755 + "hash": 2216816350 }, - "m_pWindowStyle": { - "type": "class SharedPointer", + "m_Specular": { + "type": "class Color", "id": 8, - "offset": 232, - "flags": 135, + "offset": 168, + "flags": 262279, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3623628394 + "pointer": false, + "hash": 2645528957 }, - "m_sHelp": { - "type": "std::wstring", + "m_fSpecularPower": { + "type": "float", "id": 9, - "offset": 248, - "flags": 4194439, + "offset": 172, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2102211316 + "hash": 539146057 }, - "m_sScript": { - "type": "std::string", + "m_Frames": { + "type": "class Rect", "id": 10, - "offset": 352, - "flags": 135, - "container": "Static", - "dynamic": false, + "offset": 192, + "flags": 65671, + "container": "Vector", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 1846695875 + "hash": 3064301836 }, - "m_Offset": { - "type": "class Point", + "m_nCurrentFrame": { + "type": "int", "id": 11, - "offset": 192, + "offset": 216, "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3389835433 + "hash": 45308854 }, - "m_Scale": { - "type": "class Point", + "m_fAnimRate": { + "type": "float", "id": 12, - "offset": 200, + "offset": 228, "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2547159940 + "hash": 802385934 }, - "m_sTip": { - "type": "std::wstring", + "m_nAnimBegin": { + "type": "int", "id": 13, - "offset": 392, - "flags": 4194439, + "offset": 220, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1513510520 + "hash": 400513266 }, - "m_BubbleList": { - "type": "class WindowBubble", + "m_nAnimEnd": { + "type": "int", "id": 14, - "offset": 424, + "offset": 224, "flags": 135, - "container": "List", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 2587533771 + "hash": 1081103460 }, - "m_ParentOffset": { - "type": "class Rect", + "m_fAnimTime": { + "type": "float", "id": 15, - "offset": 176, - "flags": 135, + "offset": 232, + "flags": 134, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3091503757 - } - } - }, - "724233985": { - "name": "class SharedPointer", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 724233985, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, + "hash": 802466289 + }, + "m_fMaterialScaleX": { + "type": "float", + "id": 16, + "offset": 180, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 + "hash": 634638220 }, - "m_jewelList": { - "type": "unsigned int", - "id": 1, - "offset": 112, - "flags": 65543, - "container": "List", - "dynamic": true, + "m_fMaterialScaleY": { + "type": "float", + "id": 17, + "offset": 184, + "flags": 135, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 1839384000 + "hash": 634638221 } } }, - "1093991667": { - "name": "class SharedPointer", + "1038664208": { + "name": "class SharedPointer", "bases": [ - "BreadCrumbBehaviorBase", - "BehaviorInstance", "PropertyClass" ], - "hash": 1093991667, + "hash": 1038664208, "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", + "m_tableName": { + "type": "std::string", "id": 0, - "offset": 104, - "flags": 39, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 + "hash": 3581058436 }, - "m_breadCrumbNumber": { - "type": "unsigned int", + "m_schoolName": { + "type": "std::string", "id": 1, - "offset": 112, - "flags": 65543, + "offset": 104, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2100995821 + "hash": 3385349572 }, - "m_equippedPetGIDList": { - "type": "gid", + "m_modifyAll": { + "type": "bool", "id": 2, - "offset": 120, - "flags": 65543, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1574152046 - }, - "m_equippedBreadCrumbIDList": { - "type": "unsigned short", - "id": 3, - "offset": 136, - "flags": 65543, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 592278117 - }, - "m_flags": { - "type": "unsigned int", - "id": 4, - "offset": 152, - "flags": 65543, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1005801050 - } - } - }, - "1501657358": { - "name": "class SharedPointer", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1501657358, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, + "offset": 140, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 + "hash": 1269044724 }, - "m_bankExpansions": { - "type": "int", - "id": 1, - "offset": 112, - "flags": 63, + "m_statType": { + "type": "enum WizardStatTable::STAT_TYPE", + "id": 3, + "offset": 144, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1369075454 + "hash": 2100000712, + "enum_options": { + "STAT_TYPE_DAMAGE": 0, + "STAT_TYPE_ACCURACY": 1, + "STAT_TYPE_ARMOR_PIERCING": 2, + "STAT_TYPE_REDUCED_DAMAGE": 3, + "STAT_TYPE_REDUCED_ACCURACY": 4, + "STAT_TYPE_HEALING": 5, + "STAT_TYPE_POWER_PIP_CHANCE": 6, + "STAT_TYPE_MAX_MANA": 7, + "STAT_TYPE_MAX_HEALTH": 8, + "STAT_TYPE_PET_ACT_CHANCE": 9, + "STAT_TYPE_FLATDAMAGE": 10, + "STAT_TYPE_INC_HEALING": 11, + "STAT_TYPE_REDUCED_MAX_MANA": 12, + "STAT_TYPE_XP_PERCENT": 13, + "STAT_TYPE_GOLD_PERCENT": 14, + "STAT_TYPE_MAX_ENERGY": 15, + "STAT_TYPE_CRITICAL_HIT_RATING": 16, + "STAT_TYPE_BLOCK_RATING": 17, + "STAT_TYPE_ACCURACY_RATING": 18, + "STAT_TYPE_POWER_PIP_RATING": 19, + "STAT_TYPE_DAMAGE_RESISTANCE_RATING": 20, + "STAT_TYPE_BALANCE_MASTERY": 21, + "STAT_TYPE_DEATH_MASTERY": 22, + "STAT_TYPE_FIRE_MASTERY": 23, + "STAT_TYPE_ICE_MASTERY": 24, + "STAT_TYPE_LIFE_MASTERY": 25, + "STAT_TYPE_MYTH_MASTERY": 26, + "STAT_TYPE_STORM_MASTERY": 27, + "STAT_TYPE_STUN_RESISTANCE": 28, + "STAT_TYPE_FISHING_LUCK": 29, + "STAT_TYPE_SHADOW_PIP_CHANCE": 30, + "STAT_TYPE_REDUCED_DAMAGE_FLAT": 31, + "STAT_TYPE_WISP_BONUS": 32, + "STAT_TYPE_PIP_CONVERSION": 33, + "STAT_TYPE_SHADOW_PIP_RATING": 34, + "STAT_TYPE_ARCHMASTERY": 35, + "STAT_TYPE_ARCHMASTERY_PERCENTAGE": 36 + } }, - "m_friendListExpansions": { - "type": "int", - "id": 2, - "offset": 116, - "flags": 63, - "container": "Static", - "dynamic": false, + "m_statVector": { + "type": "float", + "id": 4, + "offset": 152, + "flags": 7, + "container": "Vector", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 1057398198 + "hash": 2189012326 } } }, - "1877117031": { - "name": "class ZoneTokenCountControl", + "1464657398": { + "name": "class SharedPointer", "bases": [ "ZoneTokenBaseControl", "Window", "PropertyClass" ], - "hash": 1877117031, + "hash": 1464657398, "properties": { "m_sName": { "type": "std::string", @@ -368912,67 +33662,72 @@ } } }, - "1876678938": { - "name": "class SharedPointer", + "1893474322": { + "name": "class SharedPointer", "bases": [ + "BehaviorInstance", "PropertyClass" ], - "hash": 1876678938, + "hash": 1893474322, "properties": { - "m_group": { - "type": "std::string", + "m_behaviorTemplateNameID": { + "type": "unsigned int", "id": 0, - "offset": 72, - "flags": 7, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2293515464 + "hash": 223437287 }, - "m_name": { - "type": "std::string", + "m_itemList": { + "type": "class SharedPointer", "id": 1, - "offset": 104, - "flags": 7, + "offset": 112, + "flags": 19, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1983655699 + }, + "m_bankLimit": { + "type": "int", + "id": 2, + "offset": 128, + "flags": 27, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1717359772 - } - } - }, - "724755126": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 724755126, - "properties": { - "m_friendlyPlayerInfoList": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, + "hash": 1662903029 + }, + "m_sharedBankLimit": { + "type": "int", + "id": 3, + "offset": 132, + "flags": 27, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2302789544 + "pointer": false, + "hash": 566146380 } } }, - "1095126863": { - "name": "class ObjectRemapBehaviorTemplate*", + "607769058": { + "name": "class SharedPointer", "bases": [ - "BehaviorTemplate", + "RemoveHangingEffectCinematicAction", + "ActorCinematicAction", + "CinematicAction", "PropertyClass" ], - "hash": 1095126863, + "hash": 607769058, "properties": { - "m_behaviorName": { - "type": "std::string", + "m_timeOffset": { + "type": "float", "id": 0, "offset": 72, "flags": 7, @@ -368980,837 +33735,459 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 3130754092 + "hash": 2237098605 }, - "m_floorMaterialName": { + "m_actor": { "type": "std::string", "id": 1, - "offset": 120, + "offset": 80, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1873368397 + "hash": 2285866132 }, - "m_wallMaterialName": { - "type": "std::string", + "m_cloaked": { + "type": "bool", "id": 2, - "offset": 152, + "offset": 120, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1499966715 - }, - "m_bothFloor": { - "type": "bool", - "id": 3, - "offset": 184, - "flags": 7, + "hash": 7349510 + } + } + }, + "1039359922": { + "name": "class DespawnTimedBehavior*", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1039359922, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 357593442 - }, - "m_bothWall": { - "type": "bool", - "id": 4, - "offset": 185, - "flags": 7, + "hash": 223437287 + } + } + }, + "607574517": { + "name": "enum CameraCutCinematicAction::kCameraRelative", + "bases": [], + "hash": 607574517, + "properties": {} + }, + "1039359898": { + "name": "class DespawnTimedBehavior", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1039359898, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 274227824 + "hash": 223437287 } } }, - "1502144865": { - "name": "class NPCDialogEntry*", + "1465232910": { + "name": "class ClientDerbyModifyRate*", "bases": [ - "ActorDialogEntry", + "DerbyModifyRate", + "DerbyEffect", "PropertyClass" ], - "hash": 1502144865, + "hash": 1465232910, "properties": { - "m_requirements": { - "type": "class SharedPointer", + "m_buffType": { + "type": "enum DerbyTalentBuffType", "id": 0, - "offset": 72, - "flags": 263, + "offset": 92, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3043523229 + "pointer": false, + "hash": 1149251982, + "enum_options": { + "Buff": 0, + "Debuff": 1, + "Neither": 2 + } }, - "m_dialog": { - "type": "std::string", + "m_kTarget": { + "type": "enum DerbyTargetType", "id": 1, - "offset": 88, - "flags": 8388639, + "offset": 96, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1858395851 + "hash": 1807803351, + "enum_options": { + "kTargetInFront": 0, + "kTargetBehind": 1, + "kTargetFirst": 2, + "kTargetSelf": 3, + "kTargetAll": 4, + "kTargetLast": 5 + } }, - "m_picture": { - "type": "std::string", + "m_nDuration": { + "type": "int", "id": 2, - "offset": 120, - "flags": 131103, + "offset": 104, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3128322903 + "hash": 1110167982 }, - "m_soundFile": { - "type": "std::string", + "m_effectID": { + "type": "unsigned int", "id": 3, - "offset": 152, - "flags": 131103, + "offset": 88, + "flags": 24, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2276870852 + "hash": 2347630439 }, - "m_action": { + "m_imageFilename": { "type": "std::string", "id": 4, - "offset": 184, - "flags": 31, + "offset": 112, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1734553689 + "hash": 2813328063 }, - "m_dialogEvent": { - "type": "std::string", + "m_iconIndex": { + "type": "unsigned int", "id": 5, - "offset": 216, + "offset": 144, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2707957549 + "hash": 1265133262 }, - "m_actorTemplateID": { - "type": "unsigned int", + "m_soundOnActivate": { + "type": "std::string", "id": 6, - "offset": 248, - "flags": 33554463, + "offset": 152, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2134265679 + "hash": 1956929714 }, - "m_cameraName": { + "m_soundOnTarget": { "type": "std::string", "id": 7, - "offset": 256, - "flags": 31, + "offset": 184, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3252786917 + "hash": 3444214056 }, - "m_interpolationDuration": { - "type": "float", + "m_targetParticleEffect": { + "type": "std::string", "id": 8, - "offset": 312, - "flags": 31, + "offset": 216, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1458058437, - "enum_options": { - "__DEFAULT": "1.0" - } + "hash": 3048234723 }, - "m_cameraOffsetX": { - "type": "float", + "m_overheadMessage": { + "type": "std::string", "id": 9, - "offset": 288, - "flags": 31, + "offset": 248, + "flags": 8388639, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1515912895 + "hash": 1701018190 }, - "m_cameraOffsetY": { - "type": "float", + "m_requirements": { + "type": "class RequirementList", "id": 10, - "offset": 292, + "offset": 280, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1515912896 + "hash": 2840988582 }, - "m_cameraOffsetZ": { - "type": "float", + "m_nRateChange": { + "type": "int", "id": 11, - "offset": 296, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1515912897 - }, - "m_pitch": { - "type": "float", - "id": 12, - "offset": 304, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 896371695 - }, - "m_yaw": { - "type": "float", - "id": 13, - "offset": 300, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 357256328 - }, - "m_roll": { - "type": "float", - "id": 14, - "offset": 308, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 310020272 - }, - "m_cameraShakeType": { - "type": "std::string", - "id": 15, - "offset": 320, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1754128882, - "enum_options": { - "": 0, - "Constant": "Constant", - "Quake": "Quake", - "Thud": "Thud", - "End": "End", - "__DEFAULT": 0 - } - }, - "m_cameraShakeDuration": { - "type": "float", - "id": 16, - "offset": 352, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 316581010, - "enum_options": { - "__DEFAULT": "0.0" - } - }, - "m_cameraShakeAmplitude": { - "type": "float", - "id": 17, - "offset": 356, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2179718321, - "enum_options": { - "__DEFAULT": "0.0" - } - }, - "m_bypassCameraOnReview": { - "type": "bool", - "id": 18, - "offset": 360, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1412905725, - "enum_options": { - "__DEFAULT": 1 - } - }, - "m_cameraZoneName": { - "type": "std::string", - "id": 19, - "offset": 368, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3131581121 - }, - "m_duration": { - "type": "float", - "id": 20, - "offset": 400, + "offset": 376, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 920323453 - }, - "m_delay": { - "type": "float", - "id": 21, - "offset": 404, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 881988134 - }, - "m_cameraHidePlayers": { - "type": "int", - "id": 22, - "offset": 408, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 28533149 - }, - "m_walkAwayNpcTemplateID": { - "type": "gid", - "id": 23, - "offset": 416, - "flags": 33554719, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 942697507 - }, - "m_walkAwayExitDirectionInDegrees": { - "type": "float", - "id": 24, - "offset": 424, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 396419785 - }, - "m_walkAwayFadeTime": { - "type": "float", - "id": 25, - "offset": 428, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 822405687 - }, - "m_walkAwayUseCurrentFacing": { - "type": "bool", - "id": 26, - "offset": 432, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1464855436 - }, - "m_standInPlayerTag": { - "type": "std::string", - "id": 27, - "offset": 440, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1590121141 - }, - "m_fadeOutCamera": { - "type": "bool", - "id": 28, - "offset": 472, - "flags": 287, + "hash": 797681786 + } + } + }, + "1895338246": { + "name": "class SharedPointer", + "bases": [ + "AggroBehavior", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1895338246, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1766121252 - }, - "m_snapCameraToPlayerAtExit": { - "type": "bool", - "id": 29, - "offset": 473, - "flags": 287, + "hash": 223437287 + } + } + }, + "1894078995": { + "name": "class CollisionBehavior", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1894078995, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1323369645 - }, - "m_secondaryCameraName": { + "hash": 223437287 + } + } + }, + "1465790101": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1465790101, + "properties": { + "m_worldZoneName": { "type": "std::string", - "id": 30, - "offset": 480, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1670705581 - }, - "m_secondaryInterpolationDuration": { - "type": "float", - "id": 31, - "offset": 512, - "flags": 287, + "id": 0, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1873822349 - }, - "m_npcStandInList": { - "type": "std::string", - "id": 32, - "offset": 520, - "flags": 287, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2076308937 - }, - "m_dialogAnimationList": { - "type": "std::string", - "id": 33, - "offset": 536, - "flags": 287, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2444806919 + "hash": 2739174336 }, - "m_dialogTurningList": { + "m_soundList": { "type": "std::string", - "id": 34, - "offset": 552, - "flags": 287, + "id": 1, + "offset": 104, + "flags": 7, "container": "List", "dynamic": true, "singleton": false, "pointer": false, - "hash": 2782869422 - }, - "m_npcYawOffsetInDegrees": { - "type": "float", - "id": 35, - "offset": 568, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1395075270 - }, - "m_allowPlayerToMove": { - "type": "bool", - "id": 36, - "offset": 572, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 225101337 - }, - "m_soundEffectFile": { - "type": "std::string", - "id": 37, - "offset": 576, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3235157265 - }, - "m_musicFile": { - "type": "std::string", - "id": 38, - "offset": 608, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2963686620 - }, - "m_nonStackableMusic": { - "type": "bool", - "id": 39, - "offset": 640, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1675595625 - }, - "m_nonRepeatableMusic": { - "type": "bool", - "id": 40, - "offset": 641, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2138315572 - }, - "m_playMusicAtSFXVolume": { - "type": "bool", - "id": 41, - "offset": 642, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2130871816 - }, - "m_soundEffectDelay": { - "type": "float", - "id": 42, - "offset": 644, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1586382460 - }, - "m_musicDelay": { - "type": "float", - "id": 43, - "offset": 648, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1217785767 - }, - "m_musicFadeTime": { - "type": "float", - "id": 44, - "offset": 652, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 502925015 - }, - "m_dontReleaseCameraAtExit": { - "type": "bool", - "id": 45, - "offset": 474, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1107508961 - }, - "m_disableBackButton": { - "type": "bool", - "id": 46, - "offset": 656, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 122355444 - }, - "m_enableExitButton": { - "type": "bool", - "id": 47, - "offset": 657, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1824693936 - }, - "m_cameraFadeType": { - "type": "std::string", - "id": 48, - "offset": 664, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2021935382, - "enum_options": { - "": 0, - "In Out Black": "In Out Black", - "In Out White": "In Out White", - "In Black": "In Black", - "Out Black": "Out Black", - "In White": "In White", - "Out White": "Out White", - "__DEFAULT": 0 - } - }, - "m_cameraFadeTime": { - "type": "float", - "id": 49, - "offset": 696, - "flags": 287, + "hash": 2277086720 + } + } + }, + "609678368": { + "name": "class PetTomeBehaviorBase*", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 609678368, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 614419391, - "enum_options": { - "__DEFAULT": "0.5" - } + "hash": 223437287 }, - "m_idleAnimation": { + "m_petData": { "type": "std::string", - "id": 50, - "offset": 704, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2900487193 - }, - "m_spamTime": { - "type": "float", - "id": 51, - "offset": 736, - "flags": 287, + "id": 1, + "offset": 144, + "flags": 551, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1727215063, - "enum_options": { - "__DEFAULT": "1.0" - } - }, - "m_playSoundIfSpamming": { - "type": "bool", - "id": 52, - "offset": 740, - "flags": 287, + "hash": 2990195294 + } + } + }, + "1893781516": { + "name": "class SharedPointer", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1893781516, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 690006749, - "enum_options": { - "__DEFAULT": 1 - } + "hash": 223437287 }, - "m_playMusicIfSpamming": { - "type": "bool", - "id": 53, - "offset": 741, - "flags": 287, + "m_housingMountOriginalGID": { + "type": "gid", + "id": 1, + "offset": 112, + "flags": 65536, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 538564341, - "enum_options": { - "__DEFAULT": 1 - } + "hash": 1220139473 }, - "m_stopMusicFadeTime": { - "type": "float", - "id": 54, - "offset": 744, - "flags": 287, + "m_housingPetPrimaryColor": { + "type": "int", + "id": 2, + "offset": 120, + "flags": 65536, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 696390845, - "enum_options": { - "__DEFAULT": "0.0" - } + "hash": 525135139 }, - "m_restartMusicFadeTime": { - "type": "float", - "id": 55, - "offset": 748, - "flags": 287, + "m_housingPetPattern": { + "type": "int", + "id": 3, + "offset": 124, + "flags": 65536, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 709379292, - "enum_options": { - "__DEFAULT": "0.0" - } + "hash": 165011646 }, - "m_meetsRequirements": { - "type": "bool", - "id": 56, - "offset": 752, - "flags": 31, + "m_housingPetSecondaryColor": { + "type": "int", + "id": 4, + "offset": 128, + "flags": 65536, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 296443061 - }, - "m_secondaryCameraInitalDelay": { + "hash": 358656263 + } + } + }, + "608182659": { + "name": "class ClientAddBacklashEffectCinematicAction", + "bases": [ + "AddBacklashEffectCinematicAction", + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 608182659, + "properties": { + "m_timeOffset": { "type": "float", - "id": 57, - "offset": 516, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1812842232 - }, - "m_displayButtonsOnTimedDialog": { - "type": "bool", - "id": 58, - "offset": 753, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 569741400 - }, - "m_personaName": { - "type": "std::string", - "id": 59, - "offset": 776, - "flags": 268435487, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2514452244, - "enum_options": { - "__BASECLASS": "Persona" - } - }, - "m_nameOverride": { - "type": "std::string", - "id": 60, - "offset": 840, - "flags": 8388639, + "id": 0, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2854590748 + "hash": 2237098605 }, - "m_nameSTKey": { + "m_actor": { "type": "std::string", - "id": 61, - "offset": 808, - "flags": 31, + "id": 1, + "offset": 80, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3618744844 + "hash": 2285866132 }, - "m_guiDisplay": { + "m_backlashEffect": { "type": "std::string", - "id": 62, - "offset": 872, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3134563510 - }, - "m_maxTimeSeconds": { - "type": "int", - "id": 63, - "offset": 904, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1762503230 - }, - "m_invisible": { - "type": "bool", - "id": 64, - "offset": 908, - "flags": 31, + "id": 2, + "offset": 120, + "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2011940728 + "hash": 3051687009 } } }, - "1095126543": { - "name": "class ObjectRemapBehaviorTemplate", + "1043576859": { + "name": "class PolymorphBattlegroundsBehaviorTemplate", "bases": [ "BehaviorTemplate", "PropertyClass" ], - "hash": 1095126543, + "hash": 1043576859, "properties": { "m_behaviorName": { "type": "std::string", @@ -369823,8 +34200,8 @@ "pointer": false, "hash": 3130754092 }, - "m_floorMaterialName": { - "type": "std::string", + "m_maxTempStartingPips": { + "type": "int", "id": 1, "offset": 120, "flags": 7, @@ -369832,180 +34209,137 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 1873368397 + "hash": 997576222 }, - "m_wallMaterialName": { - "type": "std::string", + "m_maxTempStartingPowerPips": { + "type": "int", "id": 2, - "offset": 152, + "offset": 124, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1499966715 + "hash": 31848011 }, - "m_bothFloor": { - "type": "bool", + "m_maxHandSize": { + "type": "int", "id": 3, - "offset": 184, + "offset": 128, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 357593442 + "hash": 1925169782 }, - "m_bothWall": { - "type": "bool", + "m_pointValue": { + "type": "int", "id": 4, - "offset": 185, + "offset": 132, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 274227824 - } - } - }, - "725294150": { - "name": "class GuildMuseumDataList", - "bases": [ - "PropertyClass" - ], - "hash": 725294150, - "properties": { - "m_worldIDList": { - "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2050801310 - }, - "m_exhibitIDList": { - "type": "unsigned int", - "id": 1, - "offset": 88, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1339737091 + "hash": 61258881 }, - "m_stateList": { - "type": "unsigned int", - "id": 2, - "offset": 104, + "m_battleCardsForSale": { + "type": "class SharedPointer", + "id": 5, + "offset": 136, "flags": 7, "container": "List", "dynamic": true, "singleton": false, - "pointer": false, - "hash": 1658565962 + "pointer": true, + "hash": 2232728892 }, - "m_doorList": { - "type": "unsigned int", - "id": 3, - "offset": 120, + "m_ratingInfo": { + "type": "class SharedPointer", + "id": 6, + "offset": 152, "flags": 7, - "container": "List", + "container": "Vector", "dynamic": true, "singleton": false, - "pointer": false, - "hash": 1783968669 - } - } - }, - "1094456441": { - "name": "class CrownShopOffering", - "bases": [ - "PropertyClass" - ], - "hash": 1094456441, - "properties": { - "m_boosterPacks": { - "type": "gid", - "id": 0, - "offset": 72, - "flags": 31, + "pointer": true, + "hash": 2739486523 + }, + "m_levelUpIngredients": { + "type": "class Ingredient*", + "id": 7, + "offset": 176, + "flags": 7, "container": "List", "dynamic": true, "singleton": false, - "pointer": false, - "hash": 1546992872 + "pointer": true, + "hash": 361958771 }, - "m_shopType": { + "m_levelUpCost": { "type": "int", - "id": 1, - "offset": 88, - "flags": 31, + "id": 8, + "offset": 192, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 446675542 + "hash": 1833544304 } } }, - "1877174196": { - "name": "class WinAnimMoveToLocationSpeed", + "1040961205": { + "name": "class SharedPointer", "bases": [ - "WinAnimMoveToLocation", - "WindowAnimation", + "CameraController", "PropertyClass" ], - "hash": 1877174196, + "hash": 1040961205, + "properties": {} + }, + "1474399785": { + "name": "class PublicSocketJewelPair*", + "bases": [ + "PropertyClass" + ], + "hash": 1474399785, "properties": { - "m_bUseDeepCopy": { - "type": "bool", + "m_socketNumber": { + "type": "unsigned int", "id": 0, "offset": 72, - "flags": 135, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 433380635 + "hash": 772707167 }, - "m_targetLocation": { - "type": "class Vector3D", + "m_jewelTemplateID": { + "type": "unsigned int", "id": 1, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2653859938 - }, - "m_fSpeed": { - "type": "float", - "id": 2, - "offset": 96, - "flags": 135, + "offset": 76, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 503609006 + "hash": 396940685 } } }, - "725043969": { - "name": "class SharedPointer", + "1894259625": { + "name": "class SharedPointer", "bases": [ + "GameEffectTemplate", "PropertyClass" ], - "hash": 725043969, + "hash": 1894259625, "properties": { - "m_goalID": { - "type": "gid", + "m_effectName": { + "type": "std::string", "id": 0, "offset": 72, "flags": 7, @@ -370013,215 +34347,187 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 485200232 + "hash": 2029161513 }, - "m_name": { + "m_effectCategory": { "type": "std::string", "id": 1, - "offset": 80, + "offset": 104, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1717359772 + "hash": 1852673222 }, - "m_nameID": { - "type": "unsigned int", + "m_sortOrder": { + "type": "int", "id": 2, - "offset": 112, + "offset": 148, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 954387579 + "hash": 1411218206 }, - "m_status": { - "type": "enum GOAL_STATUS", + "m_duration": { + "type": "double", "id": 3, - "offset": 116, - "flags": 2097159, + "offset": 192, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3025501257, - "enum_options": { - "GOAL_STATUS_INVALID": 4294967295, - "GOAL_STATUS_INCOMPLETE": 0, - "GOAL_STATUS_COMPLETE": 1 - } + "hash": 2727932435 }, - "m_location": { + "m_stackingCategories": { "type": "std::string", "id": 4, - "offset": 120, + "offset": 160, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 2079561588 + "hash": 1774497525 }, - "m_type": { - "type": "enum GoalTemplate::GOAL_TYPE", + "m_isPersistent": { + "type": "bool", "id": 5, - "offset": 184, - "flags": 2097159, + "offset": 153, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1683753114, - "enum_options": { - "GoalTemplate::GOAL_TYPE_UNKNOWN": 0, - "GoalTemplate::GOAL_TYPE_BOUNTY": 1, - "GoalTemplate::GOAL_TYPE_BOUNTYCOLLECT": 2, - "GoalTemplate::GOAL_TYPE_SCAVENGE": 3, - "GoalTemplate::GOAL_TYPE_PERSONA": 4, - "GoalTemplate::GOAL_TYPE_WAYPOINT": 5, - "GoalTemplate::GOAL_TYPE_SCAVENGEFAKE": 6, - "GoalTemplate::GOAL_TYPE_ACHIEVERANK": 7, - "GoalTemplate::GOAL_TYPE_USAGE": 8, - "GoalTemplate::GOAL_TYPE_COMPLETEQUEST": 9, - "GoalTemplate::GOAL_TYPE_SOCIARANK": 10, - "GoalTemplate::GOAL_TYPE_SOCIACURRENCY": 11, - "GoalTemplate::GOAL_TYPE_SOCIAMINIGAME": 12, - "GoalTemplate::GOAL_TYPE_SOCIAGIVEITEM": 13, - "GoalTemplate::GOAL_TYPE_SOCIAGETITEM": 14, - "GoalTemplate::GOAL_TYPE_COLLECTAFTERBOUNTY": 15, - "GoalTemplate::GOAL_TYPE_ENCOUNTER_WAYPOINT_FOREACH": 16 - } + "hash": 923861920 }, - "m_sendType": { - "type": "enum ENUM_SENDTYPE", + "m_bIsOnPet": { + "type": "bool", "id": 6, - "offset": 188, - "flags": 2097159, + "offset": 154, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1837051977, - "enum_options": { - "SENDTYPE_UNKNOWN": 4294967295, - "SENDTYPE_NORMAL": 0, - "SENDTYPE_NEW": 1, - "SENDTYPE_UPDATE": 2, - "SENDTYPE_NOUPDATE": 3 - } + "hash": 522593303 }, - "m_madLibs": { - "type": "class SharedPointer", + "m_isPublic": { + "type": "bool", "id": 7, - "offset": 192, + "offset": 152, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2589921204 + "pointer": false, + "hash": 1728439822 }, - "m_image1": { + "m_visualEffectAddName": { "type": "std::string", "id": 8, - "offset": 208, + "offset": 200, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2058810671 + "hash": 3382086694 }, - "m_image2": { + "m_visualEffectRemoveName": { "type": "std::string", "id": 9, - "offset": 240, + "offset": 232, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2058810672 + "hash": 1541697323 }, - "m_tagList": { - "type": "class SharedPointer", + "m_onAddFunctorName": { + "type": "std::string", "id": 10, - "offset": 272, + "offset": 280, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 464541847 + "pointer": false, + "hash": 1561843107 }, - "m_completeText": { + "m_onRemoveFunctorName": { "type": "std::string", "id": 11, - "offset": 288, + "offset": 312, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2767458393 + "hash": 2559017864 }, - "m_QuestHelperEnabled": { - "type": "bool", + "m_stackingRule": { + "type": "enum STACKING_RULE", "id": 12, - "offset": 320, - "flags": 7, + "offset": 144, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1164796656 + "hash": 431568889, + "enum_options": { + "STACKING_ALLOWED": 0, + "STACKING_NOSTACK": 1, + "STACKING_REPLACE": 2 + } }, - "m_petOnlyQuest": { - "type": "bool", + "m_templateID": { + "type": "unsigned int", "id": 13, - "offset": 321, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 679359344 - }, - "m_hasActiveResults": { - "type": "bool", - "id": 14, - "offset": 322, + "offset": 360, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1571197213 - }, - "m_hideGoalFloatyText": { - "type": "bool", - "id": 15, - "offset": 323, + "hash": 1286746870 + } + } + }, + "1040114835": { + "name": "class TurnIndicatorCinematicAction", + "bases": [ + "CinematicAction", + "PropertyClass" + ], + "hash": 1040114835, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1919383204 + "hash": 2237098605 } } }, - "1502721286": { - "name": "class ClientAddInterceptCinematicAction", + "1473859310": { + "name": "class ShadowCreatureLevelTransitionCinematicAction*", "bases": [ - "AddInterceptCinematicAction", "ActorCinematicAction", "CinematicAction", "PropertyClass" ], - "hash": 1502721286, + "hash": 1473859310, "properties": { "m_timeOffset": { "type": "float", @@ -370244,349 +34550,452 @@ "singleton": false, "pointer": false, "hash": 2285866132 + } + } + }, + "609775250": { + "name": "class BattlegroundPolymorphList", + "bases": [ + "PropertyClass" + ], + "hash": 609775250, + "properties": { + "m_polymorphList": { + "type": "unsigned int", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 619826355 }, - "m_effect": { + "m_polymorphCategory": { "type": "std::string", - "id": 2, + "id": 1, "offset": 120, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1894145160 + "hash": 3076206595 }, - "m_idleOnly": { - "type": "bool", - "id": 3, - "offset": 152, + "m_polymorphRole": { + "type": "std::string", + "id": 2, + "offset": 184, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 612425235 + "hash": 1906345431 + }, + "m_ratingBadgeInfo": { + "type": "class SharedPointer", + "id": 3, + "offset": 96, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1212938427 } } }, - "1502434503": { - "name": "class SharedPointer", + "1468376456": { + "name": "class SharedPointer", "bases": [ - "BehaviorTemplate", "PropertyClass" ], - "hash": 1502434503, + "hash": 1468376456, "properties": { - "m_behaviorName": { - "type": "std::string", + "m_sets": { + "type": "class AnimationSet*", "id": 0, - "offset": 72, + "offset": 80, "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 + "container": "List", + "dynamic": true, + "singleton": true, + "pointer": true, + "hash": 809977903 } } }, - "1881039192": { - "name": "class SharedPointer", + "1466823457": { + "name": "class SharedPointer", "bases": [ - "HaltCinematicAction", - "CinematicAction", + "ServiceOptionBase", "PropertyClass" ], - "hash": 1881039192, + "hash": 1466823457, "properties": { - "m_timeOffset": { - "type": "float", + "m_serviceName": { + "type": "std::string", "id": 0, "offset": 72, - "flags": 7, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 + "hash": 2206028813 + }, + "m_iconKey": { + "type": "std::string", + "id": 1, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2457138637 + }, + "m_displayKey": { + "type": "std::string", + "id": 2, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3023276954 + }, + "m_serviceIndex": { + "type": "unsigned int", + "id": 3, + "offset": 204, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2103126710 + }, + "m_forceInteract": { + "type": "bool", + "id": 4, + "offset": 200, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1705789564 } } }, - "725947360": { - "name": "class ClientPlayerStatueBehavior", + "1896682356": { + "name": "class RidableBehaviorTemplate*", "bases": [ - "PlayerStatueBehavior", - "BehaviorInstance", + "BehaviorTemplate", "PropertyClass" ], - "hash": 725947360, + "hash": 1896682356, "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", + "m_behaviorName": { + "type": "std::string", "id": 0, - "offset": 104, - "flags": 39, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 + "hash": 3130754092 }, - "m_visualBlobs": { + "m_icon": { "type": "std::string", "id": 1, - "offset": 176, - "flags": 31, - "container": "Vector", + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1717182340 + }, + "m_title": { + "type": "std::string", + "id": 2, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2308614141 + }, + "m_promptText": { + "type": "std::string", + "id": 3, + "offset": 184, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1874125698 + }, + "m_numberOfSlots": { + "type": "int", + "id": 4, + "offset": 216, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1235585933 + }, + "m_rideType": { + "type": "int", + "id": 5, + "offset": 220, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1625839040 + }, + "m_riderKFM": { + "type": "std::string", + "id": 6, + "offset": 224, + "flags": 7, + "container": "List", "dynamic": true, "singleton": false, "pointer": false, - "hash": 3602657281 + "hash": 3124565263 + }, + "m_rideDuration": { + "type": "float", + "id": 7, + "offset": 240, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1239878913 + }, + "m_zOffset": { + "type": "float", + "id": 8, + "offset": 244, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 736134072 + }, + "m_newRideType": { + "type": "enum NewRideTypes", + "id": 9, + "offset": 248, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2665245566, + "enum_options": { + "NRT_UseRideType": 0, + "NRT_Chimney": 12 + } } } }, - "1095560187": { - "name": "class RootWindow", + "1042178694": { + "name": "class ClassProjectPlayer*", "bases": [ - "Window", "PropertyClass" ], - "hash": 1095560187, + "hash": 1042178694, "properties": { - "m_sName": { - "type": "std::string", + "m_playerGID": { + "type": "gid", "id": 0, - "offset": 80, - "flags": 135, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2306437263 + "hash": 578537369 }, - "m_Children": { - "type": "class SharedPointer", + "m_totalProgress": { + "type": "unsigned short", "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, + "offset": 88, + "flags": 7, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2621225959 + "pointer": false, + "hash": 770936385 }, - "m_Style": { - "type": "unsigned int", + "m_tokens": { + "type": "unsigned char", "id": 2, - "offset": 152, - "flags": 1048583, + "offset": 90, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "SCALE_CHILDREN": 2, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "FOCUS_LOCKED": 64, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152 - } + "hash": 1631929220 }, - "m_Flags": { - "type": "unsigned int", + "m_flags": { + "type": "unsigned short", "id": 3, - "offset": 156, - "flags": 1048583, + "offset": 92, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } + "hash": 1347981045 }, - "m_Window": { - "type": "class Rect", + "m_goalProgress1": { + "type": "unsigned short", "id": 4, - "offset": 160, - "flags": 135, + "offset": 94, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3105139380 + "hash": 2533159345 }, - "m_fTargetAlpha": { - "type": "float", + "m_goalProgress2": { + "type": "unsigned short", "id": 5, - "offset": 212, - "flags": 135, + "offset": 96, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1809129834 + "hash": 2533159346 }, - "m_fDisabledAlpha": { - "type": "float", + "m_goalProgress3": { + "type": "unsigned short", "id": 6, - "offset": 216, - "flags": 135, + "offset": 98, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1389987675 + "hash": 2533159347 }, - "m_fAlpha": { - "type": "float", + "m_goalProgress4": { + "type": "unsigned short", "id": 7, - "offset": 208, - "flags": 65671, + "offset": 100, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 482130755 + "hash": 2533159348 }, - "m_pWindowStyle": { - "type": "class SharedPointer", + "m_goalProgress5": { + "type": "unsigned short", "id": 8, - "offset": 232, - "flags": 135, + "offset": 102, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3623628394 + "pointer": false, + "hash": 2533159349 }, - "m_sHelp": { - "type": "std::wstring", + "m_packedName": { + "type": "unsigned int", "id": 9, - "offset": 248, - "flags": 4194439, + "offset": 104, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2102211316 + "hash": 518911062 }, - "m_sScript": { - "type": "std::string", + "m_purchasedTokens": { + "type": "unsigned char", "id": 10, - "offset": 352, - "flags": 135, + "offset": 91, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1846695875 + "hash": 2467704067 }, - "m_Offset": { - "type": "class Point", + "m_level": { + "type": "unsigned char", "id": 11, - "offset": 192, - "flags": 135, + "offset": 108, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3389835433 + "hash": 1438884808 }, - "m_Scale": { - "type": "class Point", + "m_buddyListGID": { + "type": "gid", "id": 12, - "offset": 200, - "flags": 135, + "offset": 80, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2547159940 + "hash": 50378240 }, - "m_sTip": { - "type": "std::wstring", + "m_extendedData": { + "type": "unsigned char", "id": 13, - "offset": 392, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", + "offset": 112, + "flags": 7, + "container": "Vector", "dynamic": true, "singleton": false, "pointer": false, - "hash": 2587533771 + "hash": 2268810331 }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, + "m_usesExtraData": { + "type": "bool", + "id": 14, + "offset": 136, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3091503757 + "hash": 1683530097 } } }, - "1502634704": { - "name": "enum kDuelExecutionOrder", - "bases": [], - "hash": 1502634704, - "properties": {} - }, - "1880094419": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1880094419, - "properties": {} - }, - "1095166971": { - "name": "class RootWindow*", + "1466457591": { + "name": "class TeamUpWindow", "bases": [ "Window", "PropertyClass" ], - "hash": 1095166971, + "hash": 1466457591, "properties": { "m_sName": { "type": "std::string", @@ -370801,422 +35210,249 @@ } } }, - "1879528549": { - "name": "class GameObjectTemplate*", + "614202738": { + "name": "class SharedPointer", "bases": [ - "CoreTemplate", + "ActorCinematicAction", + "CinematicAction", "PropertyClass" ], - "hash": 1879528549, + "hash": 614202738, "properties": { - "m_behaviors": { - "type": "class BehaviorTemplate*", + "m_timeOffset": { + "type": "float", "id": 0, "offset": 72, "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1197808594 - }, - "m_objectName": { - "type": "std::string", - "id": 1, - "offset": 96, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2154940147 - }, - "m_templateID": { - "type": "unsigned int", - "id": 2, - "offset": 128, - "flags": 16777223, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1286746870 - }, - "m_visualID": { - "type": "unsigned int", - "id": 3, - "offset": 132, - "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1118778894 + "hash": 2237098605 }, - "m_adjectiveList": { + "m_actor": { "type": "std::string", - "id": 4, - "offset": 248, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 3195213318 - }, - "m_exemptFromAOI": { - "type": "bool", - "id": 5, - "offset": 240, + "id": 1, + "offset": 80, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1457879059 - }, - "m_displayName": { - "type": "std::string", - "id": 6, - "offset": 168, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2446900370 - }, - "m_description": { - "type": "std::string", - "id": 7, - "offset": 136, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1649374815 - }, - "m_nObjectType": { - "type": "enum ObjectType", - "id": 8, - "offset": 200, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2118905880, - "enum_options": { - "OT_UNDEFINED": 0, - "OT_PLAYER": 1, - "OT_NPC": 2, - "OT_PROP": 3, - "OT_OBJECT": 4, - "OT_HOUSE": 5, - "OT_KEY": 6, - "OT_OLD_KEY": 7, - "OT_DEED": 8, - "OT_MAIL": 9, - "OT_RECIPE": 17, - "OT_EQUIP_HEAD": 10, - "OT_EQUIP_CHEST": 11, - "OT_EQUIP_LEGS": 12, - "OT_EQUIP_HANDS": 13, - "OT_EQUIP_FINGER": 14, - "OT_EQUIP_FEET": 15, - "OT_EQUIP_EAR": 16, - "OT_BUILDING_BLOCK": 18, - "OT_BUILDING_BLOCK_SOLID": 19, - "OT_GOLF": 20, - "OT_DOOR": 21, - "OT_PET": 22, - "OT_FABRIC": 23, - "OT_WINDOW": 24, - "OT_ROOF": 25, - "OT_HORSE": 26, - "OT_STRUCTURE": 27, - "OT_HOUSING_TEXTURE": 28, - "OT_PLANT": 29 - } - }, - "m_sIcon": { - "type": "std::string", - "id": 9, - "offset": 208, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306259831 + "hash": 2285866132 } } }, - "1878183398": { - "name": "class ObstacleCourseObstacleBehaviorTemplate*", + "1896138356": { + "name": "class SharedPointer", "bases": [ - "BehaviorTemplate", "PropertyClass" ], - "hash": 1878183398, + "hash": 1896138356, "properties": { - "m_behaviorName": { + "m_textKey": { "type": "std::string", "id": 0, "offset": 72, - "flags": 7, + "flags": 8388615, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3130754092 - } - } - }, - "728610126": { - "name": "class TerrainCheerCostMap*", - "bases": [ - "PropertyClass" - ], - "hash": 728610126, - "properties": { - "m_nCostChangeAmt": { - "type": "int", - "id": 0, - "offset": 72, - "flags": 31, + "hash": 1720060457 + }, + "m_location": { + "type": "class Vector3D", + "id": 1, + "offset": 104, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1687521865 + "hash": 2239683611 }, - "m_kTerrainType": { - "type": "enum DerbyTerrainTargetType", - "id": 1, - "offset": 76, - "flags": 2097183, + "m_mapLocation": { + "type": "class Point", + "id": 2, + "offset": 116, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2546445910, - "enum_options": { - "Grass": 0, - "Dirt": 1, - "Clay": 2, - "AllObstacleTerrain": 4 - } - } - } - }, - "1503397140": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1503397140, - "properties": { - "m_titleStringKey": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, + "hash": 2172826233 + }, + "m_nObjectID": { + "type": "gid", + "id": 3, + "offset": 128, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1751250333 + "hash": 537078058 }, - "m_cost": { - "type": "int", - "id": 1, - "offset": 104, - "flags": 31, + "m_visible": { + "type": "bool", + "id": 4, + "offset": 136, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 219280307 + "hash": 810536225 } } }, - "1877553709": { - "name": "class GardeningLevelInfo", + "1041784726": { + "name": "class TipData*", "bases": [ "PropertyClass" ], - "hash": 1877553709, + "hash": 1041784726, "properties": { - "m_level": { - "type": "unsigned char", + "m_id": { + "type": "gid", "id": 0, - "offset": 72, + "offset": 88, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1438884808 + "hash": 2090569797 }, - "m_xpToLevel": { - "type": "int", + "m_requirements": { + "type": "class RequirementList", "id": 1, - "offset": 76, + "offset": 152, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1972600157 + "hash": 2840988582 }, - "m_levelName": { + "m_actorImage": { "type": "std::string", "id": 2, - "offset": 80, - "flags": 8388615, + "offset": 248, + "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3595417396 - } - } - }, - "727508420": { - "name": "class FilterSetTemplate*", - "bases": [ - "CoreTemplate", - "PropertyClass" - ], - "hash": 727508420, - "properties": { - "m_behaviors": { - "type": "class BehaviorTemplate*", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1197808594 + "hash": 2562145079 }, - "m_name": { + "m_actorName": { "type": "std::string", - "id": 1, - "offset": 96, - "flags": 7, + "id": 3, + "offset": 280, + "flags": 8388615, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1717359772 + "hash": 2050810421 }, - "m_uid": { - "type": "unsigned int", - "id": 2, - "offset": 128, - "flags": 16777223, + "m_dialog": { + "type": "class SharedPointer", + "id": 4, + "offset": 352, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 478453519 + "pointer": true, + "hash": 440960800 }, - "m_filters": { - "type": "class SharedPointer", - "id": 3, - "offset": 136, + "m_repeatable": { + "type": "bool", + "id": 5, + "offset": 368, "flags": 7, - "container": "Vector", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2539658755 - } - } - }, - "1095619142": { - "name": "class ClientHideActorCinematicAction*", - "bases": [ - "HideActorCinematicAction", - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 1095619142, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, + "pointer": false, + "hash": 366129064 + }, + "m_criticalTip": { + "type": "bool", + "id": 6, + "offset": 369, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 + "hash": 402676843 }, - "m_actor": { + "m_backgroundMusic": { "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, + "id": 7, + "offset": 312, + "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2285866132 + "hash": 1857091004 }, - "m_bHide": { + "m_musicAtSFXVolume": { "type": "bool", - "id": 2, - "offset": 120, + "id": 8, + "offset": 344, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 790850959 + "hash": 2142315218 }, - "m_evenWhileDead": { - "type": "bool", - "id": 3, - "offset": 121, + "m_eventName": { + "type": "std::string", + "id": 9, + "offset": 72, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 2100875368 + "hash": 3493260286 }, - "m_bMultiRound": { - "type": "bool", - "id": 4, - "offset": 122, - "flags": 263, + "m_tutorialTipType": { + "type": "enum TutorialTipType", + "id": 10, + "offset": 372, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1821746440 + "hash": 1666586963, + "enum_options": { + "TTT_Tutorial": 0, + "TTT_Warning": 1, + "TTT_Quest": 2, + "TTT_school": 3 + } } } }, - "1502721366": { - "name": "class ClientAddInterceptCinematicAction*", + "1466151750": { + "name": "class TimedItemBehaviorTemplate", "bases": [ - "AddInterceptCinematicAction", - "ActorCinematicAction", - "CinematicAction", + "BehaviorTemplate", "PropertyClass" ], - "hash": 1502721366, + "hash": 1466151750, "properties": { - "m_timeOffset": { - "type": "float", + "m_behaviorName": { + "type": "std::string", "id": 0, "offset": 72, "flags": 7, @@ -371224,315 +35460,285 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 + "hash": 3130754092 }, - "m_actor": { + "m_expireTime": { "type": "std::string", "id": 1, - "offset": 80, + "offset": 128, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2285866132 + "hash": 3122602039 }, - "m_effect": { - "type": "std::string", + "m_timerType": { + "type": "enum TimerType", "id": 2, "offset": 120, - "flags": 7, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1894145160 - }, - "m_idleOnly": { - "type": "bool", - "id": 3, - "offset": 152, + "hash": 571744132, + "enum_options": { + "TimerType_Game": 0, + "TimerType_Calendar": 1 + } + } + } + }, + "613357707": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 613357707, + "properties": { + "m_mapInfoRequirementsList": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 612425235 + "pointer": true, + "hash": 1745192089 } } }, - "726596974": { - "name": "class SharedPointer", + "1041784706": { + "name": "class TipData", "bases": [ "PropertyClass" ], - "hash": 726596974, + "hash": 1041784706, "properties": { - "m_fCenterOfMassX": { - "type": "float", + "m_id": { + "type": "gid", "id": 0, - "offset": 72, + "offset": 88, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1084414079 + "hash": 2090569797 }, - "m_fCenterOfMassY": { - "type": "float", + "m_requirements": { + "type": "class RequirementList", "id": 1, - "offset": 76, + "offset": 152, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1084414080 + "hash": 2840988582 }, - "m_fCenterOfMassZ": { - "type": "float", + "m_actorImage": { + "type": "std::string", "id": 2, - "offset": 80, - "flags": 7, + "offset": 248, + "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1084414081 + "hash": 2562145079 }, - "m_MassShape": { - "type": "enum MassShapeTemplate::MassShape", + "m_actorName": { + "type": "std::string", "id": 3, - "offset": 84, - "flags": 2097159, + "offset": 280, + "flags": 8388615, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2243789942, - "enum_options": { - "__DEFAULT": "MS_SPHERE", - "MS_SPHERE": 0, - "MS_CYLINDER": 1, - "MS_TUBE": 2, - "MS_BOX": 3, - "MS_MESH": 4 - } + "hash": 2050810421 }, - "m_fRadiusMeters": { - "type": "float", + "m_dialog": { + "type": "class SharedPointer", "id": 4, - "offset": 88, + "offset": 352, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 459620885, - "enum_options": { - "__DEFAULT": "1.0" - } + "pointer": true, + "hash": 440960800 }, - "m_CylinderDirection": { - "type": "int", + "m_repeatable": { + "type": "bool", "id": 5, - "offset": 92, + "offset": 368, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1961650261, - "enum_options": { - "__DEFAULT": 1, - "CD_X": 1, - "CD_Y": 2, - "CD_Z": 3 - } + "hash": 366129064 }, - "m_fLength": { - "type": "float", + "m_criticalTip": { + "type": "bool", "id": 6, - "offset": 96, + "offset": 369, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 558261279, - "enum_options": { - "__DEFAULT": "1.0" - } + "hash": 402676843 }, - "m_fWidth": { - "type": "float", + "m_backgroundMusic": { + "type": "std::string", "id": 7, - "offset": 100, - "flags": 7, + "offset": 312, + "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 508100541, - "enum_options": { - "__DEFAULT": "1.0" - } + "hash": 1857091004 }, - "m_fHeight": { - "type": "float", + "m_musicAtSFXVolume": { + "type": "bool", "id": 8, - "offset": 104, + "offset": 344, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 401539638, - "enum_options": { - "__DEFAULT": "1.0" - } + "hash": 2142315218 }, - "m_fMassKilograms": { - "type": "float", + "m_eventName": { + "type": "std::string", "id": 9, - "offset": 108, + "offset": 72, "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 3493260286 + }, + "m_tutorialTipType": { + "type": "enum TutorialTipType", + "id": 10, + "offset": 372, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1502844666, + "hash": 1666586963, "enum_options": { - "__DEFAULT": "1.0" + "TTT_Tutorial": 0, + "TTT_Warning": 1, + "TTT_Quest": 2, + "TTT_school": 3 } } } }, - "1879086197": { - "name": "class SharedPointer", + "610266273": { + "name": "class CollectedEssenceTrackingList*", "bases": [ - "SG_GameAction_PlayEffect", - "SG_GameAction", "PropertyClass" ], - "hash": 1879086197, + "hash": 610266273, "properties": { - "m_target": { - "type": "enum SG_GameAction::SG_Target", + "m_essenceTrackingList": { + "type": "class SharedPointer", "id": 0, "offset": 72, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1166870973, - "enum_options": { - "Target_Ball": 0, - "Target_Self": 1, - "Target_Connections": 2, - "__DEFAULT": "Target_Ball" - } - }, - "m_graphicArguments": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, + "flags": 31, "container": "List", "dynamic": true, "singleton": false, - "pointer": false, - "hash": 1656480079 - }, - "m_fMinimumTime": { - "type": "float", - "id": 2, - "offset": 144, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1516804616 + "pointer": true, + "hash": 2834468954 }, - "m_bDisplaysScore": { - "type": "bool", - "id": 3, - "offset": 148, - "flags": 7, + "m_collectedEssenceCount": { + "type": "int", + "id": 1, + "offset": 88, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 722455866 + "hash": 144807032 }, - "m_bPlaysPointsSounds": { - "type": "bool", - "id": 4, - "offset": 149, - "flags": 7, + "m_failedToCollectReason": { + "type": "int", + "id": 2, + "offset": 92, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 717919607 + "hash": 160435248 } } }, - "726935928": { - "name": "class PolymorphBattlegroundsBehavior", + "610256033": { + "name": "class CollectedEssenceTrackingList", "bases": [ - "BehaviorInstance", "PropertyClass" ], - "hash": 726935928, + "hash": 610256033, "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", + "m_essenceTrackingList": { + "type": "class SharedPointer", "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, + "offset": 72, + "flags": 31, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 223437287 + "pointer": true, + "hash": 2834468954 }, - "m_maxTempStartingPips": { + "m_collectedEssenceCount": { "type": "int", "id": 1, - "offset": 112, - "flags": 7, + "offset": 88, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 997576222 + "hash": 144807032 }, - "m_maxTempStartingPowerPips": { + "m_failedToCollectReason": { "type": "int", "id": 2, - "offset": 116, - "flags": 7, + "offset": 92, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 31848011 + "hash": 160435248 } } }, - "1097587775": { - "name": "class SharedPointer", + "1897468788": { + "name": "class RidableBehaviorTemplate", "bases": [ - "CinematicStageTemplate", + "BehaviorTemplate", "PropertyClass" ], - "hash": 1097587775, + "hash": 1897468788, "properties": { - "m_name": { + "m_behaviorName": { "type": "std::string", "id": 0, "offset": 72, @@ -371541,785 +35747,754 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 1717359772 + "hash": 3130754092 }, - "m_duration": { - "type": "float", + "m_icon": { + "type": "std::string", "id": 1, - "offset": 104, + "offset": 120, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 920323453 - }, - "m_actions": { - "type": "class SharedPointer", - "id": 2, - "offset": 112, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1380578687 - }, - "m_stageRelationships": { - "type": "class SharedPointer", - "id": 3, - "offset": 128, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 499983354 + "hash": 1717182340 }, - "m_global": { + "m_title": { "type": "std::string", - "id": 4, + "id": 2, "offset": 152, - "flags": 131079, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1979851564 + "hash": 2308614141 }, - "m_sound": { + "m_promptText": { "type": "std::string", - "id": 5, + "id": 3, "offset": 184, - "flags": 131079, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2307644996 - } - } - }, - "1503950091": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1503950091, - "properties": { - "m_Color": { - "type": "class Color", - "id": 0, - "offset": 72, - "flags": 262279, + "hash": 1874125698 + }, + "m_numberOfSlots": { + "type": "int", + "id": 4, + "offset": 216, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1753714077 + "hash": 1235585933 }, - "m_pMaterial": { - "type": "class SharedPointer", - "id": 1, - "offset": 80, - "flags": 135, + "m_rideType": { + "type": "int", + "id": 5, + "offset": 220, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3479277078 + "pointer": false, + "hash": 1625839040 }, - "m_UV": { - "type": "class Rect", - "id": 2, - "offset": 96, - "flags": 135, + "m_riderKFM": { + "type": "std::string", + "id": 6, + "offset": 224, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 3124565263 + }, + "m_rideDuration": { + "type": "float", + "id": 7, + "offset": 240, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3810095225 + "hash": 1239878913 }, - "m_nNextTile": { - "type": "int", - "id": 3, - "offset": 112, - "flags": 135, + "m_zOffset": { + "type": "float", + "id": 8, + "offset": 244, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1012895541 + "hash": 736134072 }, - "m_textComponent": { - "type": "class TextComponent", - "id": 4, - "offset": 120, - "flags": 135, + "m_newRideType": { + "type": "enum NewRideTypes", + "id": 9, + "offset": 248, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3491704390 + "hash": 2665245566, + "enum_options": { + "NRT_UseRideType": 0, + "NRT_Chimney": 12 + } } } }, - "1095938318": { - "name": "class SharedPointer", + "1466552208": { + "name": "class SharedPointer", "bases": [ - "ControlButton", - "Window", "PropertyClass" ], - "hash": 1095938318, + "hash": 1466552208, "properties": { - "m_sName": { + "m_animationName": { "type": "std::string", "id": 0, - "offset": 80, - "flags": 135, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2306437263 + "hash": 3393414044 }, - "m_Children": { - "type": "class SharedPointer", + "m_soundFileName": { + "type": "std::string", "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2621225959 + "pointer": false, + "hash": 3058120805 }, - "m_Style": { - "type": "unsigned int", + "m_introSoundFileName": { + "type": "std::string", "id": 2, - "offset": 152, - "flags": 1048583, + "offset": 136, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152, - "SHOW_HOTKEY": 16777216, - "EFFECT_SCALE": 67108864, - "LOCK_ICON_SIZE": 33554432, - "LEFT_TEXT": 536870912, - "NO_FIT_TEXT": 1073741824 - } + "hash": 2449081745 }, - "m_Flags": { - "type": "unsigned int", + "m_endSoundFileName": { + "type": "std::string", "id": 3, - "offset": 156, - "flags": 1048583, + "offset": 168, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } + "hash": 2326794300 }, - "m_Window": { - "type": "class Rect", + "m_loop": { + "type": "bool", "id": 4, - "offset": 160, - "flags": 135, + "offset": 200, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3105139380 + "hash": 222084781 }, - "m_fTargetAlpha": { + "m_innerRadius": { "type": "float", "id": 5, - "offset": 212, - "flags": 135, + "offset": 204, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1809129834 + "hash": 686816091 }, - "m_fDisabledAlpha": { + "m_outerRadius": { "type": "float", "id": 6, - "offset": 216, - "flags": 135, + "offset": 208, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1389987675 + "hash": 542169294 }, - "m_fAlpha": { + "m_volume": { "type": "float", "id": 7, - "offset": 208, - "flags": 65671, + "offset": 212, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 482130755 + "hash": 1162855023 }, - "m_pWindowStyle": { - "type": "class SharedPointer", + "m_introFadeInTime": { + "type": "float", "id": 8, - "offset": 232, - "flags": 135, + "offset": 216, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3623628394 + "pointer": false, + "hash": 677198649 }, - "m_sHelp": { - "type": "std::wstring", + "m_introFadeOutTime": { + "type": "float", "id": 9, - "offset": 248, - "flags": 4194439, + "offset": 220, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2102211316 + "hash": 1748430618 }, - "m_sScript": { - "type": "std::string", + "m_endFadeInTime": { + "type": "float", "id": 10, - "offset": 352, - "flags": 135, + "offset": 224, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1846695875 + "hash": 717770180 }, - "m_Offset": { - "type": "class Point", + "m_endFadeOutTime": { + "type": "float", "id": 11, - "offset": 192, - "flags": 135, + "offset": 228, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3389835433 - }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, + "hash": 939807493 + } + } + }, + "1043196215": { + "name": "class SharedPointer", + "bases": [ + "PositionalSoundEmitterInfo", + "SoundEmitterInfo", + "SoundInfo", + "ClientObjectInfo", + "CoreObjectInfo", + "PropertyClass" + ], + "hash": 1043196215, + "properties": { + "m_templateID.m_full": { + "type": "unsigned __int64", + "id": 0, + "offset": 72, + "flags": 33554439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2547159940 + "hash": 633907631 }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, + "m_nObjectID": { + "type": "unsigned int", + "id": 1, + "offset": 80, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1513510520 + "hash": 748496927 }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, + "m_location": { + "type": "class Vector3D", + "id": 2, + "offset": 84, + "flags": 7, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 2587533771 + "hash": 2239683611 }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, + "m_orientation": { + "type": "class Vector3D", + "id": 3, + "offset": 96, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3091503757 + "hash": 2344058766 }, - "m_bToggle": { - "type": "bool", - "id": 16, - "offset": 608, - "flags": 135, + "m_fScale": { + "type": "float", + "id": 4, + "offset": 108, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2071810903 + "hash": 503137701 }, - "m_bButtonDown": { - "type": "bool", - "id": 17, - "offset": 609, - "flags": 135, + "m_zoneTag": { + "type": "std::string", + "id": 5, + "offset": 152, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 840041705 + "hash": 3405382643 }, - "m_sLabel": { - "type": "std::wstring", - "id": 18, - "offset": 616, - "flags": 4194439, + "m_startState": { + "type": "std::string", + "id": 6, + "offset": 184, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2207009163 + "hash": 2166880458 }, - "m_labelOffset": { - "type": "class Rect", - "id": 19, - "offset": 832, - "flags": 135, + "m_overrideName": { + "type": "std::string", + "id": 7, + "offset": 120, + "flags": 8388615, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1990646723 + "hash": 1990707228 }, - "m_pButton": { - "type": "class SharedPointer", - "id": 20, - "offset": 656, - "flags": 135, + "m_globalDynamic": { + "type": "bool", + "id": 8, + "offset": 116, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1543855875 + "pointer": false, + "hash": 1951691017 }, - "m_HotKey": { - "type": "unsigned int", - "id": 21, - "offset": 672, - "flags": 135, + "m_bUndetectable": { + "type": "bool", + "id": 9, + "offset": 216, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1631553409 + "hash": 1907454341 }, - "m_Color": { - "type": "class Color", - "id": 22, - "offset": 676, - "flags": 262279, + "m_spawnRequirements": { + "type": "class SharedPointer", + "id": 10, + "offset": 224, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1753714077 + "pointer": true, + "hash": 2309120870 }, - "m_bCursorOver": { - "type": "bool", - "id": 23, - "offset": 689, - "flags": 135, + "m_loadingType": { + "type": "enum CoreObjectInfo::LoadingType", + "id": 11, + "offset": 112, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 283981103 + "hash": 3522422550, + "enum_options": { + "STATIC_CLIENT_SERVER": 0, + "STATIC_CLIENT": 1, + "STATIC_SERVER": 2, + "DYNAMIC_SERVER": 3 + } }, - "m_bAbortWhenCursorNotOver": { - "type": "bool", - "id": 24, - "offset": 706, - "flags": 135, + "m_radius": { + "type": "float", + "id": 12, + "offset": 256, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 325405258 + "hash": 989410271 }, - "m_bHotKeyDown": { + "m_exclusive": { "type": "bool", - "id": 25, - "offset": 680, - "flags": 135, + "id": 13, + "offset": 260, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 616989185 + "hash": 824383403 }, - "m_fTime": { - "type": "float", - "id": 26, - "offset": 684, - "flags": 135, + "m_startActive": { + "type": "bool", + "id": 14, + "offset": 261, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 883746156 + "hash": 2031339229 }, - "m_bGreyed": { - "type": "bool", - "id": 27, - "offset": 688, - "flags": 135, + "m_category": { + "type": "enum AudioCategory", + "id": 15, + "offset": 264, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1566556053 + "hash": 2951251982, + "enum_options": { + "AudioCategory_Irrelevent": 0, + "AudioCategory_Accoustic": 1, + "AudioCategory_Noise": 2, + "AudioCategory_Music": 3 + } }, - "m_fMaxScale": { - "type": "float", - "id": 28, - "offset": 692, - "flags": 135, + "m_override": { + "type": "int", + "id": 16, + "offset": 268, + "flags": 1048583, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2070186635 + "hash": 136872410, + "enum_options": { + "OVR_RADIUS": 1, + "OVR_CATEGORY": 2, + "OVR_EXCLUSIVE": 4, + "OVR_SIGNATURE": 64, + "OVR_VOLUME": 8, + "OVR_LOOPCOUNT": 16, + "OVR_ACTIVE": 32, + "OVR_PLAYPROG": 128, + "OVR_PRIORITY": 256, + "OVR_PROGTIME": 512, + "OVR_FILTERSET": 1024 + } }, - "m_fScaleSpeed": { - "type": "float", - "id": 29, - "offset": 696, - "flags": 135, + "m_enableReqs": { + "type": "class SharedPointer", + "id": 17, + "offset": 272, + "flags": 263, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1457135702 + "pointer": true, + "hash": 3158020443 }, - "m_bUseDropShadow": { - "type": "bool", - "id": 30, - "offset": 704, - "flags": 135, + "m_volume": { + "type": "float", + "id": 18, + "offset": 288, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 93063037 + "hash": 1162855023 }, - "m_bUseOutline": { - "type": "bool", - "id": 31, - "offset": 705, - "flags": 135, + "m_loopCount": { + "type": "int", + "id": 19, + "offset": 292, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 744292994 + "hash": 865634717 }, - "m_pGreyedState": { - "type": "class SharedPointer", - "id": 32, - "offset": 768, - "flags": 135, - "container": "Static", - "dynamic": false, + "m_trackFilenameList": { + "type": "std::string", + "id": 20, + "offset": 312, + "flags": 131079, + "container": "Vector", + "dynamic": true, "singleton": false, - "pointer": true, - "hash": 2703352263 + "pointer": false, + "hash": 2531081709 }, - "m_pNormalState": { - "type": "class SharedPointer", - "id": 33, - "offset": 752, - "flags": 135, - "container": "Static", - "dynamic": false, + "m_playList": { + "type": "class PlayListEntry*", + "id": 21, + "offset": 336, + "flags": 7, + "container": "Vector", + "dynamic": true, "singleton": false, "pointer": true, - "hash": 1887909808 + "hash": 3907873161 }, - "m_pHighlightedState": { - "type": "class SharedPointer", - "id": 34, - "offset": 784, - "flags": 135, + "m_priority": { + "type": "int", + "id": 22, + "offset": 296, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2200177608 + "pointer": false, + "hash": 1235205852 }, - "m_pSelectedState": { - "type": "class SharedPointer", - "id": 35, - "offset": 800, - "flags": 135, + "m_progression": { + "type": "enum PlayList::Progression", + "id": 23, + "offset": 300, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2266776432 + "pointer": false, + "hash": 3279400238, + "enum_options": { + "Sequence": 0, + "Random": 1, + "SequenceOnceOnly": 2, + "RandomNoRepeat": 3 + } }, - "m_pDepressedState": { - "type": "class SharedPointer", - "id": 36, - "offset": 816, - "flags": 135, + "m_progressMin": { + "type": "float", + "id": 24, + "offset": 304, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1878185798 + "pointer": false, + "hash": 1497550192 }, - "m_pDecal": { - "type": "class SharedPointer", - "id": 37, - "offset": 880, - "flags": 135, + "m_progressMax": { + "type": "float", + "id": 25, + "offset": 308, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2204742880 + "pointer": false, + "hash": 1497549938 }, - "m_DecalColor": { - "type": "class Color", - "id": 38, - "offset": 896, - "flags": 262279, + "m_audioFilterSet": { + "type": "unsigned int", + "id": 26, + "offset": 360, + "flags": 33554439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2053465718 + "hash": 831339825 }, - "m_DecalOffset": { - "type": "class Rect", - "id": 39, - "offset": 900, - "flags": 135, + "m_clientTag": { + "type": "std::string", + "id": 27, + "offset": 368, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1942612892 + "hash": 3409856790 }, - "m_pGreyedDecalState": { - "type": "class SharedPointer", - "id": 40, - "offset": 936, - "flags": 135, + "m_innerRadius": { + "type": "float", + "id": 28, + "offset": 400, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1430510752 + "pointer": false, + "hash": 686816091 }, - "m_pNormalDecalState": { - "type": "class SharedPointer", - "id": 41, - "offset": 920, - "flags": 135, + "m_nifObjName": { + "type": "std::string", + "id": 29, + "offset": 408, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1908952105 + "pointer": false, + "hash": 1513857812 }, - "m_pHighlightedDecalState": { - "type": "class SharedPointer", - "id": 42, - "offset": 952, - "flags": 135, + "m_animNIFObjName": { + "type": "std::string", + "id": 30, + "offset": 440, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3280301889 + "pointer": false, + "hash": 2245834777 }, - "m_pSelectedDecalState": { - "type": "class SharedPointer", - "id": 43, - "offset": 968, - "flags": 135, + "m_inverted": { + "type": "bool", + "id": 31, + "offset": 472, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1444589545 + "pointer": false, + "hash": 1034821044 }, - "m_pDepressedDecalState": { - "type": "class SharedPointer", - "id": 44, - "offset": 984, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2385844607 - } - } - }, - "1095853754": { - "name": "class SharedPointer", - "bases": [ - "MoveController::MoveCommand", - "PropertyClass" - ], - "hash": 1095853754, - "properties": { - "m_vVelocity": { - "type": "class Vector3D", - "id": 0, - "offset": 88, - "flags": 31, + "m_initialDelay": { + "type": "float", + "id": 32, + "offset": 476, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2295460039 + "hash": 629858288 }, - "m_vGravity": { - "type": "class Vector3D", - "id": 1, - "offset": 100, - "flags": 31, + "m_fRangeScale": { + "type": "float", + "id": 33, + "offset": 480, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3690342814 + "hash": 1749294034 }, - "m_fUpdateFreq": { + "m_fAttenuationFactor": { "type": "float", - "id": 2, - "offset": 136, - "flags": 31, + "id": 34, + "offset": 484, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1668426734 + "hash": 273292776 }, - "m_dElapsedTime": { - "type": "double", - "id": 3, - "offset": 128, - "flags": 31, + "m_eAttenuationType": { + "type": "enum PositionInfoAttenuationType", + "id": 35, + "offset": 488, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2027745342 + "hash": 2427193304, + "enum_options": { + "Standard": 0, + "Unit Range Power": 1 + } + }, + "m_vPositions": { + "type": "class Vector3D", + "id": 36, + "offset": 496, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 3599600160 } } }, - "1879818146": { - "name": "struct PvPDisplayWindowEventData", - "bases": [], - "hash": 1879818146, - "properties": {} - }, - "728066888": { - "name": "class ProvideCombatTriggerInfo*", + "1466778785": { + "name": "class HouseTransferResultList", "bases": [ - "GameEffectInfo", "PropertyClass" ], - "hash": 728066888, + "hash": 1466778785, "properties": { - "m_effectName": { - "type": "std::string", + "m_houseTransferResultList": { + "type": "class SharedPointer", "id": 0, "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, + "flags": 7, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 2029161513 + "pointer": true, + "hash": 1794426680 }, - "m_triggerName": { - "type": "std::string", + "m_characterGID": { + "type": "gid", "id": 1, - "offset": 104, - "flags": 268435463, + "offset": 88, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3100183568, - "enum_options": { - "__BASECLASS": "CombatTriggerList" - } - }, - "m_triggerDescription": { - "type": "class SharedPointer", - "id": 2, - "offset": 136, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2619655202 + "hash": 501688601 } } }, - "1506196681": { - "name": "class SharedPointer", + "611164797": { + "name": "struct std::pair", + "bases": [], + "hash": 611164797, + "properties": {} + }, + "1930454764": { + "name": "class MountShopOption*", "bases": [ "ServiceOptionBase", "PropertyClass" ], - "hash": 1506196681, + "hash": 1930454764, "properties": { "m_serviceName": { "type": "std::string", @@ -372378,1688 +36553,2059 @@ } } }, - "1505605179": { - "name": "class ClientDerbyTerrainEffect*", + "1916442154": { + "name": "class SharedPointer", "bases": [ - "DerbyTerrainEffect", - "DerbyEffect", + "BehaviorTemplate", "PropertyClass" ], - "hash": 1505605179, + "hash": 1916442154, "properties": { - "m_buffType": { - "type": "enum DerbyTalentBuffType", + "m_behaviorName": { + "type": "std::string", "id": 0, - "offset": 92, - "flags": 2097183, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1149251982, - "enum_options": { - "Buff": 0, - "Debuff": 1, - "Neither": 2 - } + "hash": 3130754092 }, - "m_kTarget": { - "type": "enum DerbyTargetType", + "m_itemAdjective": { + "type": "std::string", "id": 1, - "offset": 96, - "flags": 2097159, + "offset": 120, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1807803351, - "enum_options": { - "kTargetInFront": 0, - "kTargetBehind": 1, - "kTargetFirst": 2, - "kTargetSelf": 3, - "kTargetAll": 4, - "kTargetLast": 5 - } + "hash": 3066441529 }, - "m_nDuration": { - "type": "int", + "m_unlockCantrip": { + "type": "std::string", "id": 2, - "offset": 104, - "flags": 31, + "offset": 152, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1110167982 + "hash": 2731256472 }, - "m_effectID": { - "type": "unsigned int", + "m_numberOfUnlockPlayers": { + "type": "int", "id": 3, - "offset": 88, - "flags": 24, + "offset": 184, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2347630439 + "hash": 855609764 }, - "m_imageFilename": { + "m_activateState": { "type": "std::string", "id": 4, - "offset": 112, - "flags": 131103, + "offset": 192, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2813328063 + "hash": 2508957133 }, - "m_iconIndex": { - "type": "unsigned int", + "m_enabledSeconds": { + "type": "int", "id": 5, - "offset": 144, - "flags": 31, + "offset": 224, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1265133262 + "hash": 2014197012 }, - "m_soundOnActivate": { - "type": "std::string", + "m_linkedUnlockTemplateID": { + "type": "unsigned int", "id": 6, - "offset": 152, - "flags": 131103, + "offset": 228, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1956929714 + "hash": 952577945 }, - "m_soundOnTarget": { - "type": "std::string", + "m_cooldownSeconds": { + "type": "unsigned int", "id": 7, - "offset": 184, - "flags": 131103, + "offset": 232, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3444214056 + "hash": 1670668641 }, - "m_targetParticleEffect": { + "m_overrideTitle": { "type": "std::string", "id": 8, - "offset": 216, - "flags": 131103, + "offset": 240, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3048234723 + "hash": 2739145597 }, - "m_overheadMessage": { + "m_overrideDonateTitle": { "type": "std::string", "id": 9, - "offset": 248, - "flags": 8388639, + "offset": 272, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1701018190 + "hash": 2976683384 }, - "m_requirements": { - "type": "class RequirementList", + "m_overrideChooseTitle": { + "type": "std::string", "id": 10, - "offset": 280, - "flags": 31, + "offset": 304, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2840988582 + "hash": 2732703966 }, - "m_terrainType": { - "type": "enum PetDerbyTrackTerrain", + "m_overrideFinalStepText": { + "type": "std::string", "id": 11, - "offset": 376, - "flags": 2097183, + "offset": 336, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2688629581, - "enum_options": { - "Cobblestone": 0, - "Water": 1, - "Grass": 2, - "Clay": 3, - "Dirt": 4, - "Mud": 5 - } + "hash": 2712952390 }, - "m_fEffectReapplyTime": { - "type": "float", + "m_overrideNeedKeyText": { + "type": "std::string", "id": 12, - "offset": 380, - "flags": 31, + "offset": 368, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1483497206 + "hash": 2575667685 }, - "m_effectsToApply": { - "type": "class SharedPointer", + "m_isExtractor": { + "type": "bool", "id": 13, - "offset": 384, - "flags": 31, + "offset": 400, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2105029547 + } + } + }, + "612483618": { + "name": "class SharedPointer", + "bases": [ + "CombatObserver", + "PropertyClass" + ], + "hash": 612483618, + "properties": { + "m_playerStats": { + "type": "class SharedPointer", + "id": 0, + "offset": 88, + "flags": 7, "container": "List", "dynamic": true, "singleton": false, "pointer": true, - "hash": 2042624288 + "hash": 873719258 + } + } + }, + "1908510986": { + "name": "class Reco::CategoryData*", + "bases": [ + "PropertyClass" + ], + "hash": 1908510986, + "properties": { + "m_id": { + "type": "int", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2090586215 }, - "m_permanentEffects": { - "type": "class SharedPointer", - "id": 14, - "offset": 400, + "m_items": { + "type": "class SharedPointer", + "id": 1, + "offset": 80, "flags": 31, "container": "List", "dynamic": true, "singleton": false, "pointer": true, - "hash": 2129171809 + "hash": 966759714 } } }, - "1096842169": { - "name": "class SharedPointer", + "1047068508": { + "name": "class PetFeedingRewardConfig*", "bases": [ - "BehaviorInstance", "PropertyClass" ], - "hash": 1096842169, + "hash": 1047068508, "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", + "m_standardItemFeedingRewards": { + "type": "class PetFeedingRewardInfo*", "id": 0, - "offset": 104, - "flags": 39, + "offset": 72, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2366849484 + }, + "m_crownsFeedingRewards": { + "type": "class PetFeedingRewardInfo*", + "id": 1, + "offset": 96, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1691121416 + }, + "m_fGoldScalingFactor": { + "type": "float", + "id": 2, + "offset": 120, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 + "hash": 2001693763 } } }, - "1504720918": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1504720918, - "properties": {} - }, - "1880742470": { - "name": "class SharedPointer", + "1467697818": { + "name": "class SoundEmitterInfo*", "bases": [ - "PetTalentControlBase", - "Window", + "SoundInfo", + "ClientObjectInfo", + "CoreObjectInfo", "PropertyClass" ], - "hash": 1880742470, + "hash": 1467697818, "properties": { - "m_sName": { - "type": "std::string", + "m_templateID.m_full": { + "type": "unsigned __int64", "id": 0, - "offset": 80, - "flags": 135, + "offset": 72, + "flags": 33554439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2306437263 + "hash": 633907631 }, - "m_Children": { - "type": "class SharedPointer", + "m_nObjectID": { + "type": "unsigned int", "id": 1, - "offset": 112, - "flags": 65667, - "container": "Vector", - "dynamic": true, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2621225959 + "pointer": false, + "hash": 748496927 }, - "m_Style": { - "type": "unsigned int", + "m_location": { + "type": "class Vector3D", "id": 2, - "offset": 152, - "flags": 1048583, + "offset": 84, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "SCALE_CHILDREN": 2, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "FOCUS_LOCKED": 64, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152 - } + "hash": 2239683611 }, - "m_Flags": { - "type": "unsigned int", + "m_orientation": { + "type": "class Vector3D", "id": 3, - "offset": 156, - "flags": 1048583, + "offset": 96, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } + "hash": 2344058766 }, - "m_Window": { - "type": "class Rect", + "m_fScale": { + "type": "float", "id": 4, - "offset": 160, - "flags": 135, + "offset": 108, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3105139380 + "hash": 503137701 }, - "m_fTargetAlpha": { - "type": "float", + "m_zoneTag": { + "type": "std::string", "id": 5, - "offset": 212, - "flags": 135, + "offset": 152, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1809129834 + "hash": 3405382643 }, - "m_fDisabledAlpha": { - "type": "float", + "m_startState": { + "type": "std::string", "id": 6, - "offset": 216, - "flags": 135, + "offset": 184, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1389987675 + "hash": 2166880458 }, - "m_fAlpha": { - "type": "float", + "m_overrideName": { + "type": "std::string", "id": 7, - "offset": 208, - "flags": 65671, + "offset": 120, + "flags": 8388615, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 482130755 + "hash": 1990707228 }, - "m_pWindowStyle": { - "type": "class SharedPointer", + "m_globalDynamic": { + "type": "bool", "id": 8, - "offset": 232, - "flags": 135, + "offset": 116, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3623628394 + "pointer": false, + "hash": 1951691017 }, - "m_sHelp": { - "type": "std::wstring", + "m_bUndetectable": { + "type": "bool", "id": 9, - "offset": 248, - "flags": 4194439, + "offset": 216, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2102211316 + "hash": 1907454341 }, - "m_sScript": { - "type": "std::string", + "m_spawnRequirements": { + "type": "class SharedPointer", "id": 10, - "offset": 352, - "flags": 135, + "offset": 224, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1846695875 + "pointer": true, + "hash": 2309120870 }, - "m_Offset": { - "type": "class Point", + "m_loadingType": { + "type": "enum CoreObjectInfo::LoadingType", "id": 11, - "offset": 192, - "flags": 135, + "offset": 112, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3389835433 + "hash": 3522422550, + "enum_options": { + "STATIC_CLIENT_SERVER": 0, + "STATIC_CLIENT": 1, + "STATIC_SERVER": 2, + "DYNAMIC_SERVER": 3 + } }, - "m_Scale": { - "type": "class Point", + "m_radius": { + "type": "float", "id": 12, - "offset": 200, - "flags": 135, + "offset": 256, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2547159940 + "hash": 989410271 }, - "m_sTip": { - "type": "std::wstring", + "m_exclusive": { + "type": "bool", "id": 13, - "offset": 392, - "flags": 4194439, + "offset": 260, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1513510520 + "hash": 824383403 }, - "m_BubbleList": { - "type": "class WindowBubble", + "m_startActive": { + "type": "bool", "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, + "offset": 261, + "flags": 7, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 2587533771 + "hash": 2031339229 }, - "m_ParentOffset": { - "type": "class Rect", + "m_category": { + "type": "enum AudioCategory", "id": 15, - "offset": 176, - "flags": 135, + "offset": 264, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3091503757 + "hash": 2951251982, + "enum_options": { + "AudioCategory_Irrelevent": 0, + "AudioCategory_Accoustic": 1, + "AudioCategory_Noise": 2, + "AudioCategory_Music": 3 + } + }, + "m_override": { + "type": "int", + "id": 16, + "offset": 268, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 136872410, + "enum_options": { + "OVR_RADIUS": 1, + "OVR_CATEGORY": 2, + "OVR_EXCLUSIVE": 4, + "OVR_SIGNATURE": 64, + "OVR_VOLUME": 8, + "OVR_LOOPCOUNT": 16, + "OVR_ACTIVE": 32, + "OVR_PLAYPROG": 128, + "OVR_PRIORITY": 256, + "OVR_PROGTIME": 512, + "OVR_FILTERSET": 1024 + } + }, + "m_enableReqs": { + "type": "class SharedPointer", + "id": 17, + "offset": 272, + "flags": 263, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3158020443 + }, + "m_volume": { + "type": "float", + "id": 18, + "offset": 288, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1162855023 + }, + "m_loopCount": { + "type": "int", + "id": 19, + "offset": 292, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 865634717 + }, + "m_trackFilenameList": { + "type": "std::string", + "id": 20, + "offset": 312, + "flags": 131079, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2531081709 + }, + "m_playList": { + "type": "class PlayListEntry*", + "id": 21, + "offset": 336, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 3907873161 + }, + "m_priority": { + "type": "int", + "id": 22, + "offset": 296, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1235205852 + }, + "m_progression": { + "type": "enum PlayList::Progression", + "id": 23, + "offset": 300, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3279400238, + "enum_options": { + "Sequence": 0, + "Random": 1, + "SequenceOnceOnly": 2, + "RandomNoRepeat": 3 + } + }, + "m_progressMin": { + "type": "float", + "id": 24, + "offset": 304, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1497550192 + }, + "m_progressMax": { + "type": "float", + "id": 25, + "offset": 308, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1497549938 + }, + "m_audioFilterSet": { + "type": "unsigned int", + "id": 26, + "offset": 360, + "flags": 33554439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 831339825 + }, + "m_clientTag": { + "type": "std::string", + "id": 27, + "offset": 368, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3409856790 } } }, - "729667830": { - "name": "class MeshGeomParams*", + "1902371550": { + "name": "class RateMyStitchBehaviorTemplate*", "bases": [ - "GeomParams", + "BehaviorTemplate", "PropertyClass" ], - "hash": 729667830, + "hash": 1902371550, "properties": { - "m_eType": { - "type": "enum ProxyType", + "m_behaviorName": { + "type": "std::string", "id": 0, "offset": 72, - "flags": 2097159, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1656534066, + "hash": 3130754092 + } + } + }, + "1044895804": { + "name": "class ReqAddIncreaseInventory*", + "bases": [ + "Requirement", + "PropertyClass" + ], + "hash": 1044895804, + "properties": { + "m_applyNOT": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1746328074, "enum_options": { - "ProxyTypeBox": 0, - "ProxyTypeRay": 1, - "ProxyTypeSphere": 2, - "ProxyTypeCylinder": 3, - "ProxyTypeTube": 4, - "ProxyTypePlane": 5, - "ProxyTypeMesh": 6, - "ProxyTypeInvalid": 7 + "__DEFAULT": 0 + } + }, + "m_operator": { + "type": "enum Requirement::Operator", + "id": 1, + "offset": 76, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2672792317, + "enum_options": { + "ROP_AND": 0, + "ROP_OR": 1, + "__DEFAULT": "ROP_AND" } } } }, - "1504674997": { - "name": "class PersonaGoalTemplate*", + "1467565217": { + "name": "class HouseTransferResultList*", "bases": [ - "GoalTemplate", - "CoreTemplate", "PropertyClass" ], - "hash": 1504674997, + "hash": 1467565217, "properties": { - "m_behaviors": { - "type": "class BehaviorTemplate*", + "m_houseTransferResultList": { + "type": "class SharedPointer", "id": 0, "offset": 72, "flags": 7, - "container": "Vector", + "container": "List", "dynamic": true, "singleton": false, "pointer": true, - "hash": 1197808594 + "hash": 1794426680 }, - "m_goalName": { - "type": "std::string", + "m_characterGID": { + "type": "gid", "id": 1, - "offset": 104, + "offset": 88, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1521627807 + "hash": 501688601 + } + } + }, + "1900160855": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1900160855, + "properties": { + "m_currentTickCount": { + "type": "double", + "id": 0, + "offset": 80, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2533274692 }, - "m_goalNameID": { + "m_effectNameID": { "type": "unsigned int", + "id": 1, + "offset": 96, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1204067144 + }, + "m_bIsOnPet": { + "type": "bool", "id": 2, - "offset": 496, - "flags": 7, + "offset": 73, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 403158846 + "hash": 522593303 }, - "m_goalTitle": { - "type": "std::string", + "m_originatorID": { + "type": "gid", "id": 3, - "offset": 136, - "flags": 8388615, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2291910240 + "hash": 1131810019 }, - "m_goalUnderway": { - "type": "std::string", + "m_itemSlotID": { + "type": "unsigned int", "id": 4, - "offset": 168, - "flags": 8388615, + "offset": 112, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3153144269 + "hash": 1895747595 }, - "m_hyperlink": { - "type": "std::string", + "m_internalID": { + "type": "int", "id": 5, - "offset": 200, - "flags": 8388615, + "offset": 92, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2887798993 + "hash": 1643137924 }, - "m_completeText": { + "m_endTime": { + "type": "unsigned int", + "id": 6, + "offset": 88, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 716479635 + } + } + }, + "1044466289": { + "name": "class PetBoostPlayerStatEffectTemplate*", + "bases": [ + "WizStatisticEffectTemplate", + "StatisticEffectTemplate", + "GameEffectTemplate", + "PropertyClass" + ], + "hash": 1044466289, + "properties": { + "m_effectName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2029161513 + }, + "m_effectCategory": { + "type": "std::string", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1852673222 + }, + "m_sortOrder": { + "type": "int", + "id": 2, + "offset": 148, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1411218206 + }, + "m_duration": { + "type": "double", + "id": 3, + "offset": 192, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2727932435 + }, + "m_stackingCategories": { "type": "std::string", + "id": 4, + "offset": 160, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1774497525 + }, + "m_isPersistent": { + "type": "bool", + "id": 5, + "offset": 153, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 923861920 + }, + "m_bIsOnPet": { + "type": "bool", "id": 6, - "offset": 232, - "flags": 8388615, + "offset": 154, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2767458393 + "hash": 522593303 }, - "m_completeResults": { - "type": "class ResultList*", + "m_isPublic": { + "type": "bool", "id": 7, - "offset": 440, + "offset": 152, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1964258099 + "pointer": false, + "hash": 1728439822 }, - "m_goalRequirements": { - "type": "class RequirementList*", + "m_visualEffectAddName": { + "type": "std::string", "id": 8, - "offset": 448, + "offset": 200, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2979967145 + "pointer": false, + "hash": 3382086694 }, - "m_tallyCounter": { - "type": "class TallyCounterTemplate*", + "m_visualEffectRemoveName": { + "type": "std::string", "id": 9, - "offset": 456, + "offset": 232, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1884546193 + "pointer": false, + "hash": 1541697323 }, - "m_locationName": { + "m_onAddFunctorName": { "type": "std::string", "id": 10, - "offset": 272, - "flags": 8388615, + "offset": 280, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1824218389 + "hash": 1561843107 }, - "m_displayImage1": { + "m_onRemoveFunctorName": { "type": "std::string", "id": 11, - "offset": 304, - "flags": 131079, + "offset": 312, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1959572133 + "hash": 2559017864 }, - "m_displayImage2": { - "type": "std::string", + "m_stackingRule": { + "type": "enum STACKING_RULE", "id": 12, - "offset": 336, - "flags": 131079, + "offset": 144, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1959572134 + "hash": 431568889, + "enum_options": { + "STACKING_ALLOWED": 0, + "STACKING_NOSTACK": 1, + "STACKING_REPLACE": 2 + } }, - "m_clientTags": { - "type": "std::string", + "m_buffAll": { + "type": "bool", "id": 13, - "offset": 368, + "offset": 392, "flags": 7, - "container": "List", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 2319030025 + "hash": 1205044623 }, - "m_genericEvents": { + "m_school": { "type": "std::string", "id": 14, - "offset": 384, + "offset": 400, "flags": 7, - "container": "List", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 3466670829 + "hash": 2438566051 }, - "m_autoQualify": { - "type": "bool", + "m_damageBonusPercent": { + "type": "float", "id": 15, - "offset": 400, + "offset": 440, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1878907431 + "hash": 623230606 }, - "m_autoComplete": { - "type": "bool", + "m_damageBonusFlat": { + "type": "float", "id": 16, - "offset": 401, + "offset": 488, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1302545445 + "hash": 2212039108 }, - "m_destinationZone": { - "type": "std::string", + "m_accuracyBonusPercent": { + "type": "float", "id": 17, - "offset": 408, - "flags": 268435463, + "offset": 444, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2605356153, - "enum_options": { - "__BASECLASS": "ZoneData" - } + "hash": 1972336538 }, - "m_dialogList": { - "type": "class ActorDialogListBase*", + "m_armorPiercingBonusPercent": { + "type": "float", "id": 18, - "offset": 264, + "offset": 448, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1909154969 + "pointer": false, + "hash": 1569912641 }, - "m_goalType": { - "type": "enum GoalTemplate::GOAL_TYPE", + "m_damageReducePercent": { + "type": "float", "id": 19, - "offset": 96, - "flags": 2097159, + "offset": 452, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1488021149, - "enum_options": { - "GOAL_TYPE_UNKNOWN": 0, - "GOAL_TYPE_BOUNTY": 1, - "GOAL_TYPE_BOUNTYCOLLECT": 2, - "GOAL_TYPE_SCAVENGE": 3, - "GOAL_TYPE_PERSONA": 4, - "GOAL_TYPE_WAYPOINT": 5, - "GOAL_TYPE_SCAVENGEFAKE": 6, - "GOAL_TYPE_ACHIEVERANK": 7, - "GOAL_TYPE_USAGE": 8, - "GOAL_TYPE_COMPLETEQUEST": 9, - "GOAL_TYPE_SOCIARANK": 10, - "GOAL_TYPE_SOCIACURRENCY": 11, - "GOAL_TYPE_SOCIAMINIGAME": 12, - "GOAL_TYPE_SOCIAGIVEITEM": 13, - "GOAL_TYPE_SOCIAGETITEM": 14, - "GOAL_TYPE_COLLECTAFTERBOUNTY": 15, - "GOAL_TYPE_ENCOUNTER_WAYPOINT_FOREACH": 16 - } + "hash": 541736927 }, - "m_noQuestHelper": { - "type": "bool", + "m_damageReduceFlat": { + "type": "float", "id": 20, - "offset": 500, + "offset": 456, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 578010882, - "enum_options": { - "__DEFAULT": 0 - } + "hash": 684172469 }, - "m_petOnlyQuest": { - "type": "bool", + "m_accuracyReducePercent": { + "type": "float", "id": 21, - "offset": 501, + "offset": 460, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 679359344, - "enum_options": { - "__DEFAULT": 0 - } + "hash": 2112559723 }, - "m_activateResults": { - "type": "class ResultList*", + "m_healBonusPercent": { + "type": "float", "id": 22, - "offset": 504, + "offset": 464, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3790153995 + "pointer": false, + "hash": 562313577 }, - "m_hideGoalFloatyText": { - "type": "bool", + "m_healIncBonusPercent": { + "type": "float", "id": 23, - "offset": 512, + "offset": 468, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1919383204, - "enum_options": { - "__DEFAULT": 0 - } + "hash": 2182535587 }, - "m_personaName": { - "type": "std::string", + "m_hitPointBonus": { + "type": "float", "id": 24, - "offset": 520, - "flags": 268435463, + "offset": 496, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2514452244, - "enum_options": { - "__BASECLASS": "Persona" - } + "hash": 880644461 }, - "m_usePatron": { - "type": "bool", + "m_spellChargeBonus": { + "type": "float", "id": 25, - "offset": 552, + "offset": 504, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 853266164 - } - } - }, - "1880738577": { - "name": "class std::list >", - "bases": [], - "hash": 1880738577, - "properties": {} - }, - "729667670": { - "name": "class MeshGeomParams", - "bases": [ - "GeomParams", - "PropertyClass" - ], - "hash": 729667670, - "properties": { - "m_eType": { - "type": "enum ProxyType", - "id": 0, - "offset": 72, - "flags": 2097159, + "hash": 2109811656 + }, + "m_powerPipBonusPercent": { + "type": "float", + "id": 26, + "offset": 472, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1656534066, - "enum_options": { - "ProxyTypeBox": 0, - "ProxyTypeRay": 1, - "ProxyTypeSphere": 2, - "ProxyTypeCylinder": 3, - "ProxyTypeTube": 4, - "ProxyTypePlane": 5, - "ProxyTypeMesh": 6, - "ProxyTypeInvalid": 7 - } - } - } - }, - "729218845": { - "name": "WeightedEntryT", - "bases": [ - "WeightedEntry", - "PropertyClass" - ], - "hash": 729218845, - "properties": { - "m_weight": { - "type": "unsigned int", - "id": 0, - "offset": 72, + "hash": 1671446341 + }, + "m_petActChance": { + "type": "int", + "id": 27, + "offset": 492, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1311209301 + "hash": 237418461 }, - "m_entry": { - "type": "class SplashCinematicInfo", - "id": 1, - "offset": 80, + "m_manaBonus": { + "type": "float", + "id": 28, + "offset": 500, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1951897293 - } - } - }, - "1097610666": { - "name": "class SharedPointer", - "bases": [ - "InvisibilityEffect", - "GameEffectBase", - "PropertyClass" - ], - "hash": 1097610666, - "properties": { - "m_currentTickCount": { - "type": "double", - "id": 0, - "offset": 80, - "flags": 63, + "hash": 1372708603 + }, + "m_statTableName": { + "type": "std::string", + "id": 29, + "offset": 360, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2533274692 + "hash": 1616642912 }, - "m_effectNameID": { - "type": "unsigned int", - "id": 1, - "offset": 96, - "flags": 63, + "m_manaReducePercent": { + "type": "float", + "id": 30, + "offset": 568, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1204067144 + "hash": 348324221 }, - "m_bIsOnPet": { - "type": "bool", - "id": 2, - "offset": 73, - "flags": 31, + "m_expPercent": { + "type": "float", + "id": 31, + "offset": 572, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 522593303 + "hash": 1147850677 }, - "m_originatorID": { - "type": "gid", - "id": 3, - "offset": 104, - "flags": 39, + "m_goldPercent": { + "type": "float", + "id": 32, + "offset": 576, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1131810019 + "hash": 1095720878 }, - "m_itemSlotID": { - "type": "unsigned int", - "id": 4, - "offset": 112, - "flags": 63, + "m_energyBonus": { + "type": "float", + "id": 33, + "offset": 508, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1895747595 + "hash": 2223158984 }, - "m_internalID": { + "m_criticalHitRating": { + "type": "float", + "id": 34, + "offset": 512, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1978690540 + }, + "m_blockRating": { + "type": "float", + "id": 35, + "offset": 516, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2088486759 + }, + "m_accuracyRating": { + "type": "float", + "id": 36, + "offset": 520, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 165525575 + }, + "m_powerPipRating": { + "type": "float", + "id": 37, + "offset": 524, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1355340722 + }, + "m_damageResistanceRating": { + "type": "float", + "id": 38, + "offset": 532, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1961377740 + }, + "m_archmastery": { + "type": "float", + "id": 39, + "offset": 536, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1963579610 + }, + "m_archmasteryBonusPercent": { + "type": "float", + "id": 40, + "offset": 588, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1908627154 + }, + "m_balanceMastery": { "type": "int", - "id": 5, - "offset": 92, - "flags": 63, + "id": 41, + "offset": 540, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1643137924 + "hash": 149062181 }, - "m_endTime": { - "type": "unsigned int", - "id": 6, - "offset": 88, - "flags": 31, + "m_deathMastery": { + "type": "int", + "id": 42, + "offset": 544, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 716479635 - } - } - }, - "1097602169": { - "name": "class CrownShopOffering*", - "bases": [ - "PropertyClass" - ], - "hash": 1097602169, - "properties": { - "m_boosterPacks": { - "type": "gid", - "id": 0, - "offset": 72, - "flags": 31, - "container": "List", - "dynamic": true, + "hash": 1421218661 + }, + "m_fireMastery": { + "type": "int", + "id": 43, + "offset": 548, + "flags": 7, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 1546992872 + "hash": 1431794949 }, - "m_shopType": { + "m_iceMastery": { "type": "int", - "id": 1, - "offset": 88, - "flags": 31, + "id": 44, + "offset": 552, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 446675542 - } - } - }, - "1505093901": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1505093901, - "properties": { - "m_associatedWorlds": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, - "container": "List", - "dynamic": true, + "hash": 704864240 + }, + "m_lifeMastery": { + "type": "int", + "id": 45, + "offset": 556, + "flags": 7, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 2747792502 - } - } - }, - "1880989997": { - "name": "class SharedPointer", - "bases": [ - "SpellCardAttachmentBehavior", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1880989997, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, + "hash": 2142136447 + }, + "m_mythMastery": { + "type": "int", + "id": 46, + "offset": 560, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 + "hash": 1766317185 }, - "m_spellNames": { - "type": "std::string", - "id": 1, - "offset": 112, - "flags": 31, - "container": "List", - "dynamic": true, + "m_stormMastery": { + "type": "int", + "id": 47, + "offset": 564, + "flags": 7, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 2136089135 + "hash": 1883988244 }, - "m_targetNode": { - "type": "std::string", - "id": 2, - "offset": 128, - "flags": 31, + "m_stunResistancePercent": { + "type": "float", + "id": 48, + "offset": 580, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2698500040 + "hash": 1868382627 }, - "m_offset": { - "type": "class Vector3D", - "id": 3, - "offset": 160, - "flags": 31, + "m_fishingLuckBonusPercent": { + "type": "float", + "id": 49, + "offset": 480, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2445636425 + "hash": 1363349254 }, - "m_rotate": { - "type": "class Vector3D", - "id": 4, - "offset": 172, - "flags": 31, + "m_shadowPipBonusPercent": { + "type": "float", + "id": 50, + "offset": 476, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2574199889 + "hash": 1426533310 }, - "m_height": { + "m_wispBonusPercent": { "type": "float", - "id": 5, - "offset": 184, - "flags": 31, + "id": 51, + "offset": 484, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 602977104 + "hash": 1304386546 }, - "m_alpha": { + "m_pipConversionRating": { "type": "float", - "id": 6, - "offset": 188, - "flags": 31, + "id": 52, + "offset": 584, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 878686493 + "hash": 246855691 }, - "m_cycleRate": { + "m_shadowPipRating": { "type": "float", - "id": 7, - "offset": 192, - "flags": 31, + "id": 53, + "offset": 528, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 947046355 + "hash": 507126123 + }, + "m_primaryStat1": { + "type": "std::string", + "id": 54, + "offset": 600, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2417808140 + }, + "m_primaryStat2": { + "type": "std::string", + "id": 55, + "offset": 632, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2417808141 + }, + "m_secondaryStat": { + "type": "std::string", + "id": 56, + "offset": 664, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3564684959 + }, + "m_secondaryModifier": { + "type": "float", + "id": 57, + "offset": 696, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2101148238 } } }, - "731171495": { - "name": "class PetTalentControl", + "1467147783": { + "name": "class SharedPointer", "bases": [ - "PetTalentControlBase", - "Window", + "InfractionPenalty", "PropertyClass" ], - "hash": 731171495, + "hash": 1467147783, "properties": { - "m_sName": { - "type": "std::string", + "m_internalID": { + "type": "unsigned int", "id": 0, - "offset": 80, - "flags": 135, + "offset": 72, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2306437263 + "hash": 1854540375 }, - "m_Children": { - "type": "class SharedPointer", + "m_categoryID": { + "type": "unsigned int", "id": 1, - "offset": 112, - "flags": 65667, - "container": "Vector", - "dynamic": true, + "offset": 76, + "flags": 31, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2621225959 + "pointer": false, + "hash": 1382795736 }, - "m_Style": { - "type": "unsigned int", + "m_removeAtPointValue": { + "type": "float", "id": 2, - "offset": 152, - "flags": 1048583, + "offset": 80, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "SCALE_CHILDREN": 2, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "FOCUS_LOCKED": 64, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152 - } + "hash": 2112196961 }, - "m_Flags": { + "m_expireTime": { "type": "unsigned int", "id": 3, - "offset": 156, - "flags": 1048583, + "offset": 84, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } + "hash": 1836304873 }, - "m_Window": { - "type": "class Rect", + "m_titleKey": { + "type": "std::string", "id": 4, - "offset": 160, - "flags": 135, + "offset": 88, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3096106918 + }, + "m_messageKey": { + "type": "std::string", + "id": 5, + "offset": 120, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3561518217 + } + } + }, + "613768738": { + "name": "class SharedPointer", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 613768738, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3105139380 + "hash": 223437287 }, - "m_fTargetAlpha": { - "type": "float", - "id": 5, - "offset": 212, - "flags": 135, + "m_expireTime": { + "type": "unsigned int", + "id": 1, + "offset": 112, + "flags": 59, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1809129834 - }, - "m_fDisabledAlpha": { - "type": "float", - "id": 6, - "offset": 216, - "flags": 135, + "hash": 1836304873 + } + } + }, + "1898539781": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1898539781, + "properties": {} + }, + "1898058836": { + "name": "class FriendlyPlayerInfo*", + "bases": [ + "PropertyClass" + ], + "hash": 1898058836, + "properties": { + "m_characterGID": { + "type": "gid", + "id": 0, + "offset": 152, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1389987675 + "hash": 501688601 }, - "m_fAlpha": { - "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, + "m_nameBlob": { + "type": "std::string", + "id": 1, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 482130755 - }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3623628394 + "hash": 3058206907 }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, + "m_schoolCode": { + "type": "unsigned int", + "id": 2, + "offset": 104, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2102211316 + "hash": 2098672048 }, - "m_sScript": { + "m_zoneDisplayName": { "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, + "id": 3, + "offset": 112, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1846695875 + "hash": 1962339438 }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, + "m_level": { + "type": "unsigned char", + "id": 4, + "offset": 144, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3389835433 + "hash": 1438884808 }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, + "m_groupStatus": { + "type": "unsigned char", + "id": 5, + "offset": 145, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2547159940 + "hash": 1901216097 }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, + "m_hasFreeChat": { + "type": "unsigned char", + "id": 6, + "offset": 160, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2587533771 + "hash": 1722302062 }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, + "m_isOnline": { + "type": "bool", + "id": 7, + "offset": 161, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3091503757 + "hash": 1681359252 } } }, - "1097733066": { - "name": "class StageBacklashEffectCinematicAction", + "1045682236": { + "name": "class ReqAddIncreaseInventory", "bases": [ - "ActorCinematicAction", - "CinematicAction", + "Requirement", "PropertyClass" ], - "hash": 1097733066, + "hash": 1045682236, "properties": { - "m_timeOffset": { - "type": "float", + "m_applyNOT": { + "type": "bool", "id": 0, "offset": 72, - "flags": 7, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 + "hash": 1746328074, + "enum_options": { + "__DEFAULT": 0 + } }, - "m_actor": { - "type": "std::string", + "m_operator": { + "type": "enum Requirement::Operator", "id": 1, - "offset": 80, - "flags": 7, + "offset": 76, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2285866132 + "hash": 2672792317, + "enum_options": { + "ROP_AND": 0, + "ROP_OR": 1, + "__DEFAULT": "ROP_AND" + } } } }, - "1505629874": { - "name": "class SharedPointer", + "1467599514": { + "name": "class SoundEmitterInfo", "bases": [ - "DerbyEffect", + "SoundInfo", + "ClientObjectInfo", + "CoreObjectInfo", "PropertyClass" ], - "hash": 1505629874, + "hash": 1467599514, "properties": { - "m_buffType": { - "type": "enum DerbyTalentBuffType", + "m_templateID.m_full": { + "type": "unsigned __int64", "id": 0, - "offset": 92, - "flags": 2097183, + "offset": 72, + "flags": 33554439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1149251982, - "enum_options": { - "Buff": 0, - "Debuff": 1, - "Neither": 2 - } + "hash": 633907631 }, - "m_kTarget": { - "type": "enum DerbyTargetType", + "m_nObjectID": { + "type": "unsigned int", "id": 1, - "offset": 96, - "flags": 2097159, + "offset": 80, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1807803351, - "enum_options": { - "kTargetInFront": 0, - "kTargetBehind": 1, - "kTargetFirst": 2, - "kTargetSelf": 3, - "kTargetAll": 4, - "kTargetLast": 5 - } + "hash": 748496927 }, - "m_nDuration": { - "type": "int", + "m_location": { + "type": "class Vector3D", "id": 2, - "offset": 104, - "flags": 31, + "offset": 84, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1110167982 + "hash": 2239683611 }, - "m_effectID": { - "type": "unsigned int", + "m_orientation": { + "type": "class Vector3D", "id": 3, - "offset": 88, - "flags": 24, + "offset": 96, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2347630439 + "hash": 2344058766 }, - "m_imageFilename": { - "type": "std::string", + "m_fScale": { + "type": "float", "id": 4, - "offset": 112, - "flags": 131103, + "offset": 108, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2813328063 + "hash": 503137701 }, - "m_iconIndex": { - "type": "unsigned int", + "m_zoneTag": { + "type": "std::string", "id": 5, - "offset": 144, - "flags": 31, + "offset": 152, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1265133262 + "hash": 3405382643 }, - "m_soundOnActivate": { + "m_startState": { "type": "std::string", "id": 6, - "offset": 152, - "flags": 131103, + "offset": 184, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1956929714 + "hash": 2166880458 }, - "m_soundOnTarget": { + "m_overrideName": { "type": "std::string", "id": 7, - "offset": 184, - "flags": 131103, + "offset": 120, + "flags": 8388615, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3444214056 + "hash": 1990707228 }, - "m_targetParticleEffect": { - "type": "std::string", + "m_globalDynamic": { + "type": "bool", "id": 8, - "offset": 216, - "flags": 131103, + "offset": 116, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3048234723 + "hash": 1951691017 }, - "m_overheadMessage": { - "type": "std::string", + "m_bUndetectable": { + "type": "bool", "id": 9, - "offset": 248, - "flags": 8388639, + "offset": 216, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1701018190 + "hash": 1907454341 }, - "m_requirements": { - "type": "class RequirementList", + "m_spawnRequirements": { + "type": "class SharedPointer", "id": 10, - "offset": 280, - "flags": 31, + "offset": 224, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2309120870 + }, + "m_loadingType": { + "type": "enum CoreObjectInfo::LoadingType", + "id": 11, + "offset": 112, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2840988582 - } - } - }, - "1881572203": { - "name": "class PvPRatingsConfig*", - "bases": [ - "PropertyClass" - ], - "hash": 1881572203, - "properties": { - "m_ratingsConfig": { - "type": "class RatingInfo*", - "id": 0, - "offset": 72, + "hash": 3522422550, + "enum_options": { + "STATIC_CLIENT_SERVER": 0, + "STATIC_CLIENT": 1, + "STATIC_SERVER": 2, + "DYNAMIC_SERVER": 3 + } + }, + "m_radius": { + "type": "float", + "id": 12, + "offset": 256, "flags": 7, - "container": "Vector", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2728721304 - } - } - }, - "729904477": { - "name": "class SharedPointer", - "bases": [ - "ServiceOptionBase", - "PropertyClass" - ], - "hash": 729904477, - "properties": { - "m_serviceName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, + "pointer": false, + "hash": 989410271 + }, + "m_exclusive": { + "type": "bool", + "id": 13, + "offset": 260, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2206028813 + "hash": 824383403 }, - "m_iconKey": { - "type": "std::string", - "id": 1, - "offset": 168, - "flags": 31, + "m_startActive": { + "type": "bool", + "id": 14, + "offset": 261, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2457138637 + "hash": 2031339229 }, - "m_displayKey": { - "type": "std::string", - "id": 2, - "offset": 104, - "flags": 31, + "m_category": { + "type": "enum AudioCategory", + "id": 15, + "offset": 264, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3023276954 + "hash": 2951251982, + "enum_options": { + "AudioCategory_Irrelevent": 0, + "AudioCategory_Accoustic": 1, + "AudioCategory_Noise": 2, + "AudioCategory_Music": 3 + } }, - "m_serviceIndex": { - "type": "unsigned int", - "id": 3, - "offset": 204, - "flags": 31, + "m_override": { + "type": "int", + "id": 16, + "offset": 268, + "flags": 1048583, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2103126710 + "hash": 136872410, + "enum_options": { + "OVR_RADIUS": 1, + "OVR_CATEGORY": 2, + "OVR_EXCLUSIVE": 4, + "OVR_SIGNATURE": 64, + "OVR_VOLUME": 8, + "OVR_LOOPCOUNT": 16, + "OVR_ACTIVE": 32, + "OVR_PLAYPROG": 128, + "OVR_PRIORITY": 256, + "OVR_PROGTIME": 512, + "OVR_FILTERSET": 1024 + } }, - "m_forceInteract": { - "type": "bool", - "id": 4, - "offset": 200, - "flags": 31, + "m_enableReqs": { + "type": "class SharedPointer", + "id": 17, + "offset": 272, + "flags": 263, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3158020443 + }, + "m_volume": { + "type": "float", + "id": 18, + "offset": 288, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1705789564 - } - } - }, - "1881408363": { - "name": "class PvPRatingsConfig", - "bases": [ - "PropertyClass" - ], - "hash": 1881408363, - "properties": { - "m_ratingsConfig": { - "type": "class RatingInfo*", - "id": 0, - "offset": 72, + "hash": 1162855023 + }, + "m_loopCount": { + "type": "int", + "id": 19, + "offset": 292, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 865634717 + }, + "m_trackFilenameList": { + "type": "std::string", + "id": 20, + "offset": 312, + "flags": 131079, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2531081709 + }, + "m_playList": { + "type": "class PlayListEntry*", + "id": 21, + "offset": 336, "flags": 7, "container": "Vector", "dynamic": true, "singleton": false, "pointer": true, - "hash": 2728721304 - } - } - }, - "1881146590": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1881146590, - "properties": { - "m_numItemsToEquip": { + "hash": 3907873161 + }, + "m_priority": { "type": "int", - "id": 0, - "offset": 72, + "id": 22, + "offset": 296, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 243822227 + "hash": 1235205852 }, - "m_description": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 8388615, + "m_progression": { + "type": "enum PlayList::Progression", + "id": 23, + "offset": 300, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1649374815 + "hash": 3279400238, + "enum_options": { + "Sequence": 0, + "Random": 1, + "SequenceOnceOnly": 2, + "RandomNoRepeat": 3 + } }, - "m_equipEffectsGrantedRequirements": { - "type": "class RequirementList*", - "id": 2, - "offset": 112, + "m_progressMin": { + "type": "float", + "id": 24, + "offset": 304, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2841976527 + "pointer": false, + "hash": 1497550192 }, - "m_equipEffectsGranted": { - "type": "class GameEffectInfo*", - "id": 3, - "offset": 120, + "m_progressMax": { + "type": "float", + "id": 25, + "offset": 308, "flags": 7, - "container": "List", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1136533636 + "pointer": false, + "hash": 1497549938 + }, + "m_audioFilterSet": { + "type": "unsigned int", + "id": 26, + "offset": 360, + "flags": 33554439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 831339825 + }, + "m_clientTag": { + "type": "std::string", + "id": 27, + "offset": 368, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3409856790 } } }, - "1102604536": { - "name": "class ClientDerbyAddSpeedBoost*", + "615619818": { + "name": "class DerbyModifyMorale*", "bases": [ - "DerbyAddSpeedBoost", "DerbyEffect", "PropertyClass" ], - "hash": 1102604536, + "hash": 615619818, "properties": { "m_buffType": { "type": "enum DerbyTalentBuffType", @@ -374195,7 +38741,7 @@ "pointer": false, "hash": 2840988582 }, - "m_nTimesToAdd": { + "m_nMoraleChange": { "type": "int", "id": 11, "offset": 376, @@ -374204,440 +38750,564 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 1414275638 + "hash": 1624723118 } } }, - "1506949063": { - "name": "class SharedPointer", + "1045435047": { + "name": "class SharedPointer", "bases": [ - "HideActorCinematicAction", - "ActorCinematicAction", - "CinematicAction", + "QuestTemplate", + "CoreTemplate", "PropertyClass" ], - "hash": 1506949063, + "hash": 1045435047, "properties": { - "m_timeOffset": { - "type": "float", + "m_behaviors": { + "type": "class BehaviorTemplate*", "id": 0, "offset": 72, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "Vector", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 2237098605 + "pointer": true, + "hash": 1197808594 }, - "m_actor": { + "m_questName": { "type": "std::string", "id": 1, - "offset": 80, + "offset": 96, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2285866132 + "hash": 1702112846 }, - "m_bHide": { - "type": "bool", + "m_questNameID": { + "type": "unsigned int", "id": 2, - "offset": 120, + "offset": 128, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 790850959 + "hash": 1530354349 }, - "m_evenWhileDead": { - "type": "bool", + "m_questTitle": { + "type": "std::string", "id": 3, - "offset": 121, - "flags": 7, + "offset": 136, + "flags": 8388615, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2100875368 + "hash": 1805465583 }, - "m_bMultiRound": { - "type": "bool", + "m_questInfo": { + "type": "std::string", "id": 4, - "offset": 122, - "flags": 263, + "offset": 168, + "flags": 8388615, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1821746440 - } - } - }, - "731269799": { - "name": "class PetTalentControl*", - "bases": [ - "PetTalentControlBase", - "Window", - "PropertyClass" - ], - "hash": 731269799, - "properties": { - "m_sName": { + "hash": 1701947097 + }, + "m_questPrep": { "type": "std::string", - "id": 0, - "offset": 80, - "flags": 135, + "id": 5, + "offset": 200, + "flags": 8388615, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2306437263 - }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 65667, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621225959 + "hash": 1702202980 }, - "m_Style": { - "type": "unsigned int", - "id": 2, - "offset": 152, - "flags": 1048583, + "m_questUnderway": { + "type": "std::string", + "id": 6, + "offset": 232, + "flags": 8388615, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "SCALE_CHILDREN": 2, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "FOCUS_LOCKED": 64, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152 - } + "hash": 2308400380 }, - "m_Flags": { - "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 1048583, + "m_questComplete": { + "type": "std::string", + "id": 7, + "offset": 264, + "flags": 8388615, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } + "hash": 3484586150 }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, - "flags": 135, + "m_startGoals": { + "type": "std::string", + "id": 8, + "offset": 392, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2152469471 + }, + "m_goals": { + "type": "class SharedPointer", + "id": 9, + "offset": 408, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1374041870 + }, + "m_startResults": { + "type": "class SharedPointer", + "id": 10, + "offset": 424, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 3105139380 + "pointer": true, + "hash": 2094517692 }, - "m_fTargetAlpha": { - "type": "float", - "id": 5, - "offset": 212, - "flags": 135, + "m_endResults": { + "type": "class SharedPointer", + "id": 11, + "offset": 440, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1809129834 + "pointer": true, + "hash": 2118364133 }, - "m_fDisabledAlpha": { - "type": "float", - "id": 6, - "offset": 216, - "flags": 135, + "m_requirements": { + "type": "class RequirementList*", + "id": 12, + "offset": 456, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1389987675 + "pointer": true, + "hash": 2840985510 }, - "m_fAlpha": { - "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, + "m_prepRequirements": { + "type": "class RequirementList*", + "id": 13, + "offset": 464, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 482130755 + "pointer": true, + "hash": 3016776541 }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, + "m_pruneRequirements": { + "type": "class RequirementList*", + "id": 14, + "offset": 472, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": true, - "hash": 3623628394 + "hash": 3211248912 }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, + "m_prepAlways": { + "type": "bool", + "id": 15, + "offset": 304, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2102211316 + "hash": 1423046331 }, - "m_sScript": { + "m_clientTags": { "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, + "id": 16, + "offset": 312, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2319030025 + }, + "m_goalLogic": { + "type": "class GoalCompleteLogic*", + "id": 17, + "offset": 520, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 963824003 + }, + "m_questLevel": { + "type": "int", + "id": 18, + "offset": 296, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1846695875 + "hash": 298136804 }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, + "m_questRepeat": { + "type": "int", + "id": 19, + "offset": 300, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3389835433 + "hash": 1480345805 }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, + "m_onStartQuestScript": { + "type": "std::string", + "id": 20, + "offset": 328, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2547159940 + "hash": 2577549709 }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, + "m_onEndQuestScript": { + "type": "std::string", + "id": 21, + "offset": 360, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1513510520 + "hash": 2285648118 }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, + "m_dialogList": { + "type": "class ActorDialogListBase*", + "id": 22, + "offset": 480, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1909154969 + }, + "m_missionDoors": { + "type": "std::string", + "id": 23, + "offset": 504, + "flags": 7, "container": "List", "dynamic": true, "singleton": false, "pointer": false, - "hash": 2587533771 + "hash": 2428103908 }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, + "m_dynaMods": { + "type": "class QuestDynaModInfo*", + "id": 24, + "offset": 488, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 3330743945 + }, + "m_isHidden": { + "type": "bool", + "id": 25, + "offset": 305, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3091503757 - } - } - }, - "1099838971": { - "name": "class UserAnimationEvent", - "bases": [ - "PropertyClass" - ], - "hash": 1099838971, - "properties": { - "m_animationName": { - "type": "std::string", - "id": 0, - "offset": 72, + "hash": 1401188667 + }, + "m_outdated": { + "type": "bool", + "id": 26, + "offset": 306, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3393414044 + "hash": 1565198349 }, - "m_time": { - "type": "float", - "id": 1, - "offset": 104, + "m_noQuestHelper": { + "type": "bool", + "id": 27, + "offset": 307, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 310085638 + "hash": 578010882 }, - "m_actionType": { - "type": "std::string", - "id": 2, - "offset": 112, + "m_mainline": { + "type": "bool", + "id": 28, + "offset": 552, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3328872763 + "hash": 1749856224 }, - "m_surfaceType": { + "m_defaultDialogAnimation": { "type": "std::string", - "id": 3, - "offset": 144, + "id": 29, + "offset": 560, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2400834320 + }, + "m_skipQHAutoSelect": { + "type": "bool", + "id": 30, + "offset": 553, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2553995974 - } - } - }, - "1506948809": { - "name": "class SharedPointer", - "bases": [ - "FadeActorCinematicAction", - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 1506948809, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, + "hash": 2024815836 + }, + "m_questEffectInfoList": { + "type": "class SharedPointer", + "id": 31, + "offset": 536, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2494024956 + }, + "m_forceInteraction": { + "type": "bool", + "id": 32, + "offset": 554, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 + "hash": 1038376866 }, - "m_actor": { + "m_checkInventoryForCrafting": { + "type": "bool", + "id": 33, + "offset": 608, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1549644020 + }, + "m_playAsYourPetNPC": { + "type": "bool", + "id": 34, + "offset": 609, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 827482678 + }, + "m_activityType": { + "type": "enum QuestTemplate::ActivityType", + "id": 35, + "offset": 612, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 231656390, + "enum_options": { + "ACTIVITY_NotActivity": 0, + "ACTIVITY_Crafting": 2, + "ACTIVITY_Fishing": 3, + "ACTIVITY_Gardening": 4, + "ACTIVITY_Pet": 5, + "ACTIVITY_Spell": 1 + } + }, + "m_allowedQuests": { "type": "std::string", - "id": 1, - "offset": 80, + "id": 36, + "offset": 616, + "flags": 268435463, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1695271656, + "enum_options": { + "__BASECLASS": "QuestTemplate" + } + }, + "m_allowedZoneEvents": { + "type": "std::string", + "id": 37, + "offset": 632, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1503555828 + }, + "m_allowedMinigames": { + "type": "std::string", + "id": 38, + "offset": 648, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1962792925 + }, + "m_tutorialScript": { + "type": "std::string", + "id": 39, + "offset": 712, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2285866132 + "hash": 1565876420 }, - "m_fadeDuration": { - "type": "float", - "id": 2, - "offset": 120, + "m_modList": { + "type": "class TutorialZoneMod*", + "id": 40, + "offset": 664, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 342986186 + }, + "m_requiresTutorialZone": { + "type": "bool", + "id": 41, + "offset": 776, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1402536557 + "hash": 1728419315 }, - "m_alphaTarget": { - "type": "float", - "id": 3, - "offset": 124, + "m_scriptZone": { + "type": "std::string", + "id": 42, + "offset": 744, + "flags": 268435463, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3110729452, + "enum_options": { + "__BASECLASS": "ZoneData" + } + }, + "m_visibleTutorial": { + "type": "bool", + "id": 43, + "offset": 777, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 197622500 + "hash": 1398395349 } } }, - "1099057368": { - "name": "class MinigameSigilOption", + "615526527": { + "name": "class DerbyTerrainEffect*", "bases": [ - "ServiceOptionBase", + "DerbyEffect", "PropertyClass" ], - "hash": 1099057368, + "hash": 615526527, "properties": { - "m_serviceName": { - "type": "std::string", + "m_buffType": { + "type": "enum DerbyTalentBuffType", "id": 0, - "offset": 72, - "flags": 31, + "offset": 92, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2206028813 + "hash": 1149251982, + "enum_options": { + "Buff": 0, + "Debuff": 1, + "Neither": 2 + } }, - "m_iconKey": { - "type": "std::string", + "m_kTarget": { + "type": "enum DerbyTargetType", "id": 1, - "offset": 168, - "flags": 31, + "offset": 96, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2457138637 + "hash": 1807803351, + "enum_options": { + "kTargetInFront": 0, + "kTargetBehind": 1, + "kTargetFirst": 2, + "kTargetSelf": 3, + "kTargetAll": 4, + "kTargetLast": 5 + } }, - "m_displayKey": { - "type": "std::string", + "m_nDuration": { + "type": "int", "id": 2, "offset": 104, "flags": 31, @@ -374645,1029 +39315,841 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 3023276954 + "hash": 1110167982 }, - "m_serviceIndex": { + "m_effectID": { "type": "unsigned int", "id": 3, - "offset": 204, - "flags": 31, + "offset": 88, + "flags": 24, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2103126710 + "hash": 2347630439 }, - "m_forceInteract": { - "type": "bool", + "m_imageFilename": { + "type": "std::string", "id": 4, - "offset": 200, - "flags": 31, + "offset": 112, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1705789564 + "hash": 2813328063 }, - "m_teamUpAllowed": { - "type": "int", + "m_iconIndex": { + "type": "unsigned int", "id": 5, - "offset": 216, + "offset": 144, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1016118542 + "hash": 1265133262 }, - "m_successZone": { + "m_soundOnActivate": { "type": "std::string", "id": 6, - "offset": 224, - "flags": 31, + "offset": 152, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1516681392 + "hash": 1956929714 }, - "m_isCluster": { - "type": "bool", + "m_soundOnTarget": { + "type": "std::string", "id": 7, - "offset": 256, - "flags": 31, + "offset": 184, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1183074257 + "hash": 3444214056 }, - "m_requiresSkeletonKey": { - "type": "int", + "m_targetParticleEffect": { + "type": "std::string", "id": 8, - "offset": 220, - "flags": 31, + "offset": 216, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1735968152 + "hash": 3048234723 }, - "m_monthlyGauntletFields": { - "type": "class SharedPointer", + "m_overheadMessage": { + "type": "std::string", "id": 9, - "offset": 264, - "flags": 31, + "offset": 248, + "flags": 8388639, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2875746802 + "pointer": false, + "hash": 1701018190 }, - "m_advancedModeFields": { - "type": "class SharedPointer", + "m_requirements": { + "type": "class RequirementList", "id": 10, "offset": 280, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, + "pointer": false, + "hash": 2840988582 + }, + "m_terrainType": { + "type": "enum PetDerbyTrackTerrain", + "id": 11, + "offset": 376, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2688629581, + "enum_options": { + "Cobblestone": 0, + "Water": 1, + "Grass": 2, + "Clay": 3, + "Dirt": 4, + "Mud": 5 + } + }, + "m_fEffectReapplyTime": { + "type": "float", + "id": 12, + "offset": 380, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1483497206 + }, + "m_effectsToApply": { + "type": "class SharedPointer", + "id": 13, + "offset": 384, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, "pointer": true, - "hash": 3117836827 + "hash": 2042624288 + }, + "m_permanentEffects": { + "type": "class SharedPointer", + "id": 14, + "offset": 400, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2129171809 } } }, - "1506909599": { - "name": "class SharedPointer", + "1899644690": { + "name": "class HousingObjectStateContainer*", "bases": [ - "ObstacleCourseObstacleBehavior", - "BehaviorInstance", "PropertyClass" ], - "hash": 1506909599, + "hash": 1899644690, "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", + "m_housingObjectStateList": { + "type": "class SharedPointer", "id": 0, - "offset": 104, - "flags": 39, + "offset": 80, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1251844958 + }, + "m_zoneGID": { + "type": "gid", + "id": 1, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 + "hash": 1907651624 } } }, - "1881489189": { - "name": "class SharedPointer", + "1899644498": { + "name": "class HousingObjectStateContainer", "bases": [ - "NodeDescriptor", "PropertyClass" ], - "hash": 1881489189, + "hash": 1899644498, "properties": { - "m_terrainType": { - "type": "enum PetDerbyTrackTerrain", + "m_housingObjectStateList": { + "type": "class SharedPointer", + "id": 0, + "offset": 80, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1251844958 + }, + "m_zoneGID": { + "type": "gid", + "id": 1, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1907651624 + } + } + }, + "1468059012": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1468059012, + "properties": { + "m_uTab": { + "type": "unsigned int", "id": 0, "offset": 72, - "flags": 2097159, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2688629581, - "enum_options": { - "PDTT_Water": 1, - "PDTT_Grass": 2, - "PDTT_Clay": 3, - "PDTT_Dirt": 4, - "PDTT_Cobblestone": 0, - "PDTT_Mud": 5 - } + "hash": 431299609 }, - "m_laneSwitch": { - "type": "enum PetDerbyLaneSwitch", + "m_uPriority": { + "type": "unsigned int", "id": 1, "offset": 76, - "flags": 2097159, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2094800111, - "enum_options": { - "PDLS_None": 0, - "PDLS_Left": 1, - "PDLS_Right": 2, - "PDLS_Both": 3 - } + "hash": 374455588 } } }, - "1098799891": { - "name": "enum eMountType", - "bases": [], - "hash": 1098799891, - "properties": {} - }, - "735227021": { - "name": "class SharedPointer", + "1047027548": { + "name": "class PetFeedingRewardConfig", "bases": [ "PropertyClass" ], - "hash": 735227021, + "hash": 1047027548, "properties": { - "m_permissionFlag": { - "type": "unsigned int", + "m_standardItemFeedingRewards": { + "type": "class PetFeedingRewardInfo*", "id": 0, "offset": 72, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "Vector", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 558326096 + "pointer": true, + "hash": 2366849484 }, - "m_addList": { - "type": "gid", + "m_crownsFeedingRewards": { + "type": "class PetFeedingRewardInfo*", "id": 1, - "offset": 80, + "offset": 96, "flags": 7, - "container": "List", + "container": "Vector", "dynamic": true, "singleton": false, - "pointer": false, - "hash": 1389998621 + "pointer": true, + "hash": 1691121416 }, - "m_removeList": { - "type": "gid", + "m_fGoldScalingFactor": { + "type": "float", "id": 2, - "offset": 96, + "offset": 120, "flags": 7, - "container": "List", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 42923202 + "hash": 2001693763 } } }, - "1098401325": { - "name": "class SharedPointer", + "1468026244": { + "name": "class HousingObjectJewelWandContainer", "bases": [ - "SoundBehavior", - "AreaBehavior", - "BehaviorInstance", + "HousingObjectWandContainer", "PropertyClass" ], - "hash": 1098401325, + "hash": 1468026244, "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", + "m_displayID": { + "type": "gid", "id": 0, - "offset": 104, - "flags": 39, + "offset": 72, + "flags": 65543, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 + "hash": 1022427803 }, - "m_radius": { - "type": "float", + "m_jewelBuffer": { + "type": "std::string", "id": 1, - "offset": 116, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 989410271 - }, - "m_category": { - "type": "enum AudioCategory", - "id": 2, - "offset": 124, - "flags": 2097159, + "offset": 80, + "flags": 65543, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2951251982, - "enum_options": { - "AudioCategory_Irrelevent": 0, - "AudioCategory_Accoustic": 1, - "AudioCategory_Noise": 2, - "AudioCategory_Music": 3 - } - }, - "m_exclusive": { + "hash": 2221753804 + } + } + }, + "616037828": { + "name": "class PlayerController", + "bases": [ + "MoveBehavior::Controller", + "PropertyClass" + ], + "hash": 616037828, + "properties": { + "m_bCollisionDisabled": { "type": "bool", - "id": 3, - "offset": 128, + "id": 0, + "offset": 120, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 824383403 + "hash": 1732895577 }, - "m_playList": { - "type": "class PlayList", - "id": 4, - "offset": 176, + "m_bVehicleMode": { + "type": "bool", + "id": 1, + "offset": 121, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2061221957 + "hash": 1597295002 }, - "m_volume": { + "m_fForwardModifier": { "type": "float", - "id": 5, - "offset": 304, + "id": 2, + "offset": 124, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1162855023 + "hash": 1173988321 }, - "m_loopCount": { - "type": "int", - "id": 6, - "offset": 308, + "m_fBackModifier": { + "type": "float", + "id": 3, + "offset": 128, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 865634717 + "hash": 148042045 }, - "m_minimumFalloff": { + "m_fStrafeModifier": { "type": "float", - "id": 7, - "offset": 328, + "id": 4, + "offset": 132, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 355697197 + "hash": 226084913 }, - "m_maximumFalloff": { + "m_fTurnModifier": { "type": "float", - "id": 8, - "offset": 332, + "id": 5, + "offset": 136, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2210192367 + "hash": 2134998805 }, - "m_animDriven": { - "type": "bool", - "id": 9, - "offset": 392, + "m_fAccelerationModifier": { + "type": "float", + "id": 6, + "offset": 144, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 398394720 + "hash": 592902742 }, - "m_inverted": { - "type": "bool", - "id": 10, - "offset": 397, + "m_fDecelerationModifier": { + "type": "float", + "id": 7, + "offset": 148, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1034821044 + "hash": 1770082811 } } }, - "734086489": { - "name": "class SharedPointer", + "615873988": { + "name": "class PlayerController*", "bases": [ - "WhirlyBurlyBehaviorBase", - "BehaviorInstance", + "MoveBehavior::Controller", "PropertyClass" ], - "hash": 734086489, + "hash": 615873988, "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", + "m_bCollisionDisabled": { + "type": "bool", "id": 0, - "offset": 104, - "flags": 39, + "offset": 120, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 - } - } - }, - "1882482245": { - "name": "class SharedPointer", - "bases": [ - "GameObjectTemplate", - "CoreTemplate", - "PropertyClass" - ], - "hash": 1882482245, - "properties": { - "m_behaviors": { - "type": "class BehaviorTemplate*", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1197808594 + "hash": 1732895577 }, - "m_objectName": { - "type": "std::string", + "m_bVehicleMode": { + "type": "bool", "id": 1, - "offset": 96, + "offset": 121, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2154940147 + "hash": 1597295002 }, - "m_templateID": { - "type": "unsigned int", + "m_fForwardModifier": { + "type": "float", "id": 2, - "offset": 128, - "flags": 16777223, + "offset": 124, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1286746870 + "hash": 1173988321 }, - "m_visualID": { - "type": "unsigned int", + "m_fBackModifier": { + "type": "float", "id": 3, - "offset": 132, + "offset": 128, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1118778894 + "hash": 148042045 }, - "m_adjectiveList": { - "type": "std::string", + "m_fStrafeModifier": { + "type": "float", "id": 4, - "offset": 248, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 3195213318 - }, - "m_exemptFromAOI": { - "type": "bool", - "id": 5, - "offset": 240, + "offset": 132, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1457879059 - }, - "m_displayName": { - "type": "std::string", - "id": 6, - "offset": 168, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2446900370 - }, - "m_description": { - "type": "std::string", - "id": 7, - "offset": 136, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1649374815 - }, - "m_nObjectType": { - "type": "enum ObjectType", - "id": 8, - "offset": 200, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2118905880, - "enum_options": { - "OT_UNDEFINED": 0, - "OT_PLAYER": 1, - "OT_NPC": 2, - "OT_PROP": 3, - "OT_OBJECT": 4, - "OT_HOUSE": 5, - "OT_KEY": 6, - "OT_OLD_KEY": 7, - "OT_DEED": 8, - "OT_MAIL": 9, - "OT_RECIPE": 17, - "OT_EQUIP_HEAD": 10, - "OT_EQUIP_CHEST": 11, - "OT_EQUIP_LEGS": 12, - "OT_EQUIP_HANDS": 13, - "OT_EQUIP_FINGER": 14, - "OT_EQUIP_FEET": 15, - "OT_EQUIP_EAR": 16, - "OT_BUILDING_BLOCK": 18, - "OT_BUILDING_BLOCK_SOLID": 19, - "OT_GOLF": 20, - "OT_DOOR": 21, - "OT_PET": 22, - "OT_FABRIC": 23, - "OT_WINDOW": 24, - "OT_ROOF": 25, - "OT_HORSE": 26, - "OT_STRUCTURE": 27, - "OT_HOUSING_TEXTURE": 28, - "OT_PLANT": 29 - } + "hash": 226084913 }, - "m_sIcon": { - "type": "std::string", - "id": 9, - "offset": 208, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306259831 - } - } - }, - "733137027": { - "name": "class SharedPointer", - "bases": [ - "RegisterActorCinematicAction", - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 733137027, - "properties": { - "m_timeOffset": { + "m_fTurnModifier": { "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, + "id": 5, + "offset": 136, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2285866132 + "hash": 2134998805 }, - "m_zoneTag": { - "type": "std::string", - "id": 2, - "offset": 120, + "m_fAccelerationModifier": { + "type": "float", + "id": 6, + "offset": 144, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3405382643 + "hash": 592902742 }, - "m_bStartHidden": { - "type": "bool", - "id": 3, - "offset": 152, + "m_fDecelerationModifier": { + "type": "float", + "id": 7, + "offset": 148, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1939845615 + "hash": 1770082811 } } }, - "1507139663": { - "name": "class SpellEffectPenalty", + "1900156984": { + "name": "class SharedPointer", "bases": [ + "Window", "PropertyClass" ], - "hash": 1507139663, + "hash": 1900156984, "properties": { - "m_effectType": { - "type": "enum SpellEffect::kSpellEffects", + "m_sName": { + "type": "std::string", "id": 0, - "offset": 72, - "flags": 2097159, + "offset": 80, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2578255295, - "enum_options": { - "SpellEffect::kInvalidSpellEffect": 0, - "SpellEffect::kDamage": 1, - "SpellEffect::kDamageNoCrit": 2, - "SpellEffect::kHeal": 3, - "SpellEffect::kStealHealth": 5, - "SpellEffect::kReduceOverTime": 6, - "SpellEffect::kDetonateOverTime": 7, - "SpellEffect::kPushCharm": 8, - "SpellEffect::kStealCharm": 9, - "SpellEffect::kPushWard": 10, - "SpellEffect::kStealWard": 11, - "SpellEffect::kPushOverTime": 12, - "SpellEffect::kStealOverTime": 13, - "SpellEffect::kRemoveCharm": 14, - "SpellEffect::kRemoveWard": 15, - "SpellEffect::kRemoveStunBlock": 117, - "SpellEffect::kRemoveOverTime": 16, - "SpellEffect::kRemoveAura": 17, - "SpellEffect::kSwapCharm": 19, - "SpellEffect::kSwapWard": 20, - "SpellEffect::kSwapOverTime": 21, - "SpellEffect::kModifyIncomingDamage": 22, - "SpellEffect::kModifyIncomingDamageFlat": 119, - "SpellEffect::kModifyIncomingDamageOverTime": 137, - "SpellEffect::kMaximumIncomingDamage": 23, - "SpellEffect::kModifyIncomingHeal": 24, - "SpellEffect::kModifyIncomingHealFlat": 118, - "SpellEffect::kModifyIncomingHealOverTime": 138, - "SpellEffect::kModifyIncomingDamageType": 25, - "SpellEffect::kModifyIncomingArmorPiercing": 26, - "SpellEffect::kModifyOutgoingDamage": 27, - "SpellEffect::kModifyOutgoingDamageFlat": 121, - "SpellEffect::kModifyOutgoingHeal": 28, - "SpellEffect::kModifyOutgoingHealFlat": 120, - "SpellEffect::kModifyOutgoingDamageType": 29, - "SpellEffect::kModifyOutgoingArmorPiercing": 30, - "SpellEffect::kBounceNext": 33, - "SpellEffect::kBouncePrevious": 34, - "SpellEffect::kBounceBack": 35, - "SpellEffect::kBounceAll": 36, - "SpellEffect::kAbsorbDamage": 37, - "SpellEffect::kAbsorbHeal": 38, - "SpellEffect::kModifyAccuracy": 39, - "SpellEffect::kDispel": 40, - "SpellEffect::kConfusion": 41, - "SpellEffect::kCloakedCharm": 42, - "SpellEffect::kCloakedWard": 43, - "SpellEffect::kStunResist": 44, - "SpellEffect::kPipConversion": 45, - "SpellEffect::kCritBoost": 46, - "SpellEffect::kCritBlock": 47, - "SpellEffect::kPolymorph": 48, - "SpellEffect::kModifyCardCloak": 50, - "SpellEffect::kModifyCardDamage": 51, - "SpellEffect::kModifyCardAccuracy": 53, - "SpellEffect::kModifyCardMutation": 54, - "SpellEffect::kModifyCardRank": 55, - "SpellEffect::kModifyCardArmorPiercing": 56, - "SpellEffect::kSummonCreature": 65, - "SpellEffect::kTeleportPlayer": 66, - "SpellEffect::kStun": 67, - "SpellEffect::kDampen": 68, - "SpellEffect::kReshuffle": 69, - "SpellEffect::kMindControl": 70, - "SpellEffect::kModifyPips": 71, - "SpellEffect::kModifyPowerPips": 72, - "SpellEffect::kModifyShadowPips": 73, - "SpellEffect::kModifyHate": 74, - "SpellEffect::kDamageOverTime": 75, - "SpellEffect::kHealOverTime": 76, - "SpellEffect::kModifyPowerPipChance": 77, - "SpellEffect::kModifyRank": 78, - "SpellEffect::kStunBlock": 79, - "SpellEffect::kRevealCloak": 80, - "SpellEffect::kInstantKill": 81, - "SpellEffect::kAfterlife": 82, - "SpellEffect::kDeferredDamage": 83, - "SpellEffect::kDamagePerTotalPipPower": 84, - "SpellEffect::kCloakedWardNoRemove": 86, - "SpellEffect::kAddCombatTriggerList": 87, - "SpellEffect::kRemoveCombatTriggerList": 88, - "SpellEffect::kBacklashDamage": 89, - "SpellEffect::kMaxHealthDamage": 112, - "SpellEffect::kModifyBacklash": 90, - "SpellEffect::kIntercept": 91, - "SpellEffect::kShadowSelf": 92, - "SpellEffect::kShadowCreature": 93, - "SpellEffect::kModifyShadowCreatureLevel": 94, - "SpellEffect::kSelectShadowCreatureAttackTarget": 95, - "SpellEffect::kShadowDecrementTurn": 96, - "SpellEffect::kCritBoostSchoolSpecific": 97, - "SpellEffect::kSpawnCreature": 98, - "SpellEffect::kUnPolymorph": 99, - "SpellEffect::kPowerPipConversion": 100, - "SpellEffect::kProtectBeneficial": 103, - "SpellEffect::kProtectHarmful": 104, - "SpellEffect::kProtectCardBeneficial": 101, - "SpellEffect::kProtectCardHarmful": 102, - "SpellEffect::kDivideDamage": 105, - "SpellEffect::kConfusionBlock": 109, - "SpellEffect::kModifyPipRoundRate": 110, - "SpellEffect::kMaxHealthHeal": 129, - "SpellEffect::kHealByWard": 130, - "SpellEffect::kTaunt": 131, - "SpellEffect::kPacify": 132, - "SpellEffect::kModifySchoolPips": 150 - } + "hash": 2306437263 }, - "m_disposition": { - "type": "enum SpellEffect::kHangingDisposition", + "m_Children": { + "type": "class SharedPointer", "id": 1, - "offset": 76, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1904841031, - "enum_options": { - "SpellEffect::kBoth": 0, - "SpellEffect::kBeneficial": 1, - "SpellEffect::kHarmful": 2 - } - }, - "m_penaltyTime": { - "type": "int", - "id": 2, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1993188358 - } - } - }, - "1881662585": { - "name": "class SharedPointer", - "bases": [ - "ClientObject", - "CoreObject", - "PropertyClass" - ], - "hash": 1881662585, - "properties": { - "m_inactiveBehaviors": { - "type": "class SharedPointer", - "id": 0, - "offset": 224, - "flags": 31, + "offset": 112, + "flags": 65671, "container": "Vector", "dynamic": true, "singleton": false, "pointer": true, - "hash": 1850812559 - }, - "m_globalID.m_full": { - "type": "unsigned __int64", - "id": 1, - "offset": 72, - "flags": 16777247, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2312465444 + "hash": 2621225959 }, - "m_permID": { - "type": "unsigned __int64", + "m_Style": { + "type": "unsigned int", "id": 2, - "offset": 80, - "flags": 16777247, + "offset": 152, + "flags": 1048583, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1298909658 + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152, + "H_CENTER": 16777216, + "H_RIGHT": 33554432, + "V_CENTER": 2147483648, + "V_BOTTOM": 67108864, + "SORT": 536870912, + "LAYOUT_VERT": 1073741824, + "LAYOUT_REVERSE": 2147483648, + "DO_NOT_WRAP": 134217728 + } }, - "m_location": { - "type": "class Vector3D", + "m_Flags": { + "type": "unsigned int", "id": 3, - "offset": 168, - "flags": 31, + "offset": 156, + "flags": 1048583, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2239683611 + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } }, - "m_orientation": { - "type": "class Vector3D", + "m_Window": { + "type": "class Rect", "id": 4, - "offset": 180, - "flags": 31, + "offset": 160, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2344058766 + "hash": 3105139380 }, - "m_fScale": { + "m_fTargetAlpha": { "type": "float", "id": 5, - "offset": 196, - "flags": 31, + "offset": 212, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 503137701 + "hash": 1809129834 }, - "m_templateID.m_full": { - "type": "unsigned __int64", + "m_fDisabledAlpha": { + "type": "float", "id": 6, - "offset": 96, - "flags": 31, + "offset": 216, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 633907631 + "hash": 1389987675 }, - "m_debugName": { - "type": "std::string", + "m_fAlpha": { + "type": "float", "id": 7, - "offset": 104, - "flags": 31, + "offset": 208, + "flags": 65671, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3553984419 + "hash": 482130755 }, - "m_displayKey": { - "type": "std::string", + "m_pWindowStyle": { + "type": "class SharedPointer", "id": 8, - "offset": 136, - "flags": 31, + "offset": 232, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 3023276954 + "pointer": true, + "hash": 3623628394 }, - "m_zoneTagID": { - "type": "unsigned int", + "m_sHelp": { + "type": "std::wstring", "id": 9, - "offset": 344, - "flags": 31, + "offset": 248, + "flags": 4194439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 965291410 + "hash": 2102211316 }, - "m_speedMultiplier": { - "type": "short", + "m_sScript": { + "type": "std::string", "id": 10, - "offset": 192, - "flags": 31, + "offset": 352, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 123130076 + "hash": 1846695875 }, - "m_nMobileID": { - "type": "unsigned short", + "m_Offset": { + "type": "class Point", "id": 11, - "offset": 194, - "flags": 31, + "offset": 192, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1054318939 + "hash": 3389835433 }, - "m_characterId": { - "type": "gid", + "m_Scale": { + "type": "class Point", "id": 12, - "offset": 440, - "flags": 31, + "offset": 200, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 210498418 + "hash": 2547159940 }, - "m_primaryColor": { - "type": "int", + "m_sTip": { + "type": "std::wstring", "id": 13, - "offset": 560, - "flags": 31, + "offset": 392, + "flags": 4194439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 900965981 + "hash": 1513510520 }, - "m_pattern": { - "type": "int", + "m_BubbleList": { + "type": "class WindowBubble", "id": 14, - "offset": 564, - "flags": 31, - "container": "Static", - "dynamic": false, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 1337683384 + "hash": 2587533771 }, - "m_secondaryColor": { - "type": "int", + "m_ParentOffset": { + "type": "class Rect", "id": 15, - "offset": 568, - "flags": 63, + "offset": 176, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1616550081 + "hash": 3091503757 }, - "m_displayID": { - "type": "gid", + "m_nHSpacing": { + "type": "int", "id": 16, - "offset": 576, - "flags": 63, + "offset": 584, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1022427803 + "hash": 893611957 }, - "m_itemFlags": { - "type": "unsigned int", + "m_nVSpacing": { + "type": "int", "id": 17, - "offset": 584, - "flags": 31, + "offset": 588, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2004128457 + "hash": 551359491 } } }, - "732659400": { - "name": "class TeamGIDToBracketID", + "1047833171": { + "name": "class std::list >", + "bases": [], + "hash": 1047833171, + "properties": {} + }, + "1047460700": { + "name": "class SharedPointer", "bases": [ "PropertyClass" ], - "hash": 732659400, + "hash": 1047460700, "properties": { - "m_teamGID": { - "type": "gid", + "m_entryList": { + "type": "class SharedPointer", "id": 0, "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, + "flags": 7, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 194811347 + "pointer": true, + "hash": 818498005 }, - "m_bracketTeamID": { - "type": "unsigned int", + "m_leaderboardSize": { + "type": "int", "id": 1, - "offset": 80, - "flags": 31, + "offset": 88, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2174957597 + "hash": 683398282 } } }, - "1098962134": { - "name": "class SG_GameAction_AddPowerMultiplier", + "1472613945": { + "name": "class SharedPointer", "bases": [ - "SG_GameAction", + "RegisterPersonaCinematicAction", + "CinematicAction", "PropertyClass" ], - "hash": 1098962134, + "hash": 1472613945, "properties": { - "m_target": { - "type": "enum SG_GameAction::SG_Target", + "m_timeOffset": { + "type": "float", "id": 0, "offset": 72, - "flags": 2097159, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1166870973, - "enum_options": { - "Target_Ball": 0, - "Target_Self": 1, - "Target_Connections": 2, - "__DEFAULT": "Target_Ball" - } + "hash": 2237098605 }, - "m_powerName": { - "type": "std::string", + "m_persona": { + "type": "class Persona*", "id": 1, "offset": 80, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 2956499913 + "pointer": true, + "hash": 2350440768 } } }, - "1506967300": { - "name": "class SharedPointer", + "616188290": { + "name": "class SharedPointer", "bases": [ - "MoveActorCinematicAction", - "ActorCinematicAction", - "CinematicAction", "PropertyClass" ], - "hash": 1506967300, + "hash": 616188290, "properties": { - "m_timeOffset": { - "type": "float", + "m_groupID": { + "type": "gid", "id": 0, "offset": 72, "flags": 7, @@ -375675,91 +40157,151 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 + "hash": 1111292082 }, - "m_actor": { - "type": "std::string", + "m_members": { + "type": "class SharedPointer", "id": 1, "offset": 80, "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2190987938 + } + } + }, + "1901434521": { + "name": "class SharedPointer", + "bases": [ + "ServiceOptionBase", + "PropertyClass" + ], + "hash": 1901434521, + "properties": { + "m_serviceName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2285866132 + "hash": 2206028813 }, - "m_destinationActor": { + "m_iconKey": { + "type": "std::string", + "id": 1, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2457138637 + }, + "m_displayKey": { "type": "std::string", "id": 2, - "offset": 120, - "flags": 7, + "offset": 104, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1510240374 + "hash": 3023276954 }, - "m_interpolationDuration": { - "type": "float", + "m_serviceIndex": { + "type": "unsigned int", "id": 3, - "offset": 152, - "flags": 7, + "offset": 204, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1458058437 + "hash": 2103126710 }, - "m_interpolateRotation": { + "m_forceInteract": { "type": "bool", "id": 4, - "offset": 156, - "flags": 7, + "offset": 200, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2140337898 + "hash": 1705789564 }, - "m_kDestination": { - "type": "enum MoveActorCinematicAction::kMoveActorDestination", + "m_questID": { + "type": "gid", "id": 5, - "offset": 160, - "flags": 2097159, + "offset": 216, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2027574244, - "enum_options": { - "kCenter": 0, - "kHome": 3, - "kActor": 1, - "kActorHangingEffect": 2 - } + "hash": 1246549335 }, - "m_destinationZOffset": { - "type": "float", + "m_goalID": { + "type": "gid", "id": 6, - "offset": 164, - "flags": 7, + "offset": 224, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2188240922 + "hash": 485200232 + }, + "m_goalTitle": { + "type": "std::string", + "id": 7, + "offset": 272, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2291910240 + }, + "m_questTitle": { + "type": "std::string", + "id": 8, + "offset": 240, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1805465583 + }, + "m_goalNameID": { + "type": "unsigned int", + "id": 9, + "offset": 232, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 403158846 } } }, - "1882745934": { - "name": "class SharedPointer", + "1470724635": { + "name": "class SharedPointer", "bases": [ + "MatchRequest", "PropertyClass" ], - "hash": 1882745934, + "hash": 1470724635, "properties": { - "m_csvNItemsList": { - "type": "std::string", + "m_characterID": { + "type": "gid", "id": 0, "offset": 72, "flags": 31, @@ -375767,1104 +40309,1148 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 2185990931 + "hash": 210498386 }, - "m_csvNItemsCategoryList": { - "type": "std::string", + "m_tournamentNameID": { + "type": "unsigned int", "id": 1, - "offset": 104, + "offset": 84, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3441955153 + "hash": 1799846440 }, - "m_csvNDaysSinceItemPurchasedList": { - "type": "std::string", + "m_matchNameID": { + "type": "unsigned int", "id": 2, - "offset": 168, + "offset": 80, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2623003714 + "hash": 1751361288 }, - "m_csvHasBadgeList": { - "type": "std::string", + "m_leagueID": { + "type": "unsigned int", "id": 3, - "offset": 136, + "offset": 88, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1794307506 - } - } - }, - "733478466": { - "name": "class CursorStyleManager*", - "bases": [ - "PropertyClass" - ], - "hash": 733478466, - "properties": { - "m_defaultStyle": { - "type": "class CursorStyle", - "id": 0, - "offset": 80, - "flags": 135, + "hash": 692361645 + }, + "m_seasonID": { + "type": "unsigned int", + "id": 4, + "offset": 92, + "flags": 31, "container": "Static", "dynamic": false, - "singleton": true, + "singleton": false, "pointer": false, - "hash": 1643631551 + "hash": 535260643 }, - "m_cursorStyles": { - "type": "class CursorStyle", - "id": 1, - "offset": 408, - "flags": 135, - "container": "Vector", + "m_teams": { + "type": "class SharedPointer", + "id": 5, + "offset": 96, + "flags": 31, + "container": "List", "dynamic": true, - "singleton": true, - "pointer": false, - "hash": 1639869163 - } - } - }, - "1099433764": { - "name": "class SharedPointer", - "bases": [ - "LootInfo", - "LootInfoBase", - "PropertyClass" - ], - "hash": 1099433764, - "properties": { - "m_lootType": { - "type": "enum LootInfo::LOOT_TYPE", - "id": 0, - "offset": 72, - "flags": 2097183, + "singleton": false, + "pointer": true, + "hash": 1984373608 + }, + "m_minRank": { + "type": "int", + "id": 6, + "offset": 112, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1591891442, - "enum_options": { - "LOOT_TYPE_NONE": 0, - "LOOT_TYPE_GOLD": 1, - "LOOT_TYPE_MANA": 2, - "LOOT_TYPE_ITEM": 3, - "LOOT_TYPE_TREASURE_CARD": 4, - "LOOT_TYPE_MAGIC_XP": 5, - "LOOT_TYPE_ADD_SPELL": 6, - "LOOT_TYPE_MAX_HEALTH": 7, - "LOOT_TYPE_MAX_GOLD": 8, - "LOOT_TYPE_MAX_MANA": 9, - "LOOT_TYPE_MAX_POTION": 10, - "LOOT_TYPE_TRAINING_POINTS": 11, - "LOOT_TYPE_RECIPE": 12, - "LOOT_TYPE_CRAFTING_SLOT": 13, - "LOOT_TYPE_REAGENT": 14, - "LOOT_TYPE_PETSNACK": 15, - "LOOT_TYPE_GARDENING_XP": 16, - "LOOT_TYPE_PET_XP": 17, - "LOOT_TYPE_TREASURE_TABLE": 18, - "LOOT_TYPE_ARENA_POINTS": 19, - "LOOT_TYPE_ARENA_BONUS_POINTS": 20, - "LOOT_TYPE_GROUP": 21, - "LOOT_TYPE_FISHING_XP": 22, - "LOOT_TYPE_EVENT_CURRENCY_1": 24, - "LOOT_TYPE_EVENT_CURRENCY_2": 25, - "LOOT_TYPE_PVP_CURRENCY": 26, - "LOOT_TYPE_PVP_CURRENCY_BONUS": 27, - "LOOT_TYPE_PVP_TOURNEY_CURRENCY": 28, - "LOOT_TYPE_PVP_TOURNEY_CURRENCY_BONUS": 29, - "LOOT_TYPE_FURNITURE_ESSENCE": 30 - } + "hash": 2062988042 }, - "m_delta": { + "m_maxRank": { "type": "int", - "id": 1, - "offset": 80, + "id": 7, + "offset": 116, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 791787588 + "hash": 1761764108 + }, + "m_pTrackInfo": { + "type": "class SharedPointer", + "id": 8, + "offset": 120, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3026194809 } } }, - "1507602976": { - "name": "class SharedPointer", + "1901348323": { + "name": "class CantripXPConfig*", "bases": [ - "BehaviorTemplate", "PropertyClass" ], - "hash": 1507602976, + "hash": 1901348323, "properties": { - "m_behaviorName": { - "type": "std::string", + "m_levelInfo": { + "type": "class CantripLevelInfo*", "id": 0, "offset": 72, "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 3391404974 + }, + "m_maxLevel": { + "type": "unsigned char", + "id": 1, + "offset": 88, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3130754092 + "hash": 783962734 } } }, - "788411968": { - "name": "class GuildAchievementOption", + "1470440827": { + "name": "class SharedPointer", "bases": [ - "ServiceOptionBase", + "ElixirBehaviorTemplate", + "TimedItemBehaviorTemplate", + "BehaviorTemplate", "PropertyClass" ], - "hash": 788411968, + "hash": 1470440827, "properties": { - "m_serviceName": { + "m_behaviorName": { "type": "std::string", "id": 0, "offset": 72, - "flags": 31, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2206028813 + "hash": 3130754092 }, - "m_iconKey": { + "m_expireTime": { "type": "std::string", "id": 1, - "offset": 168, - "flags": 31, + "offset": 128, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2457138637 + "hash": 3122602039 }, - "m_displayKey": { - "type": "std::string", + "m_timerType": { + "type": "enum TimerType", "id": 2, - "offset": 104, - "flags": 31, + "offset": 120, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3023276954 + "hash": 571744132, + "enum_options": { + "TimerType_Game": 0, + "TimerType_Calendar": 1 + } }, - "m_serviceIndex": { - "type": "unsigned int", + "m_typeList": { + "type": "std::string", "id": 3, - "offset": 204, - "flags": 31, - "container": "Static", - "dynamic": false, + "offset": 160, + "flags": 7, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 2103126710 + "hash": 2119049625 }, - "m_forceInteract": { - "type": "bool", + "m_equipParticle": { + "type": "std::string", "id": 4, - "offset": 200, - "flags": 31, + "offset": 176, + "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1705789564 - } - } - }, - "1889865135": { - "name": "class RealmInfo*", - "bases": [ - "PropertyClass" - ], - "hash": 1889865135, - "properties": { - "m_realmName": { + "hash": 2222557491 + }, + "m_unequipParticle": { "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, + "id": 5, + "offset": 208, + "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3507983949 + "hash": 2215431638 }, - "m_displayName": { - "type": "std::wstring", - "id": 1, - "offset": 104, - "flags": 31, + "m_equipSound": { + "type": "std::string", + "id": 6, + "offset": 240, + "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2242885711 + "hash": 2720016552 }, - "m_realmPopulation": { - "type": "int", - "id": 2, - "offset": 136, - "flags": 31, + "m_unequipSound": { + "type": "std::string", + "id": 7, + "offset": 272, + "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1904140438 - } - } - }, - "1100079039": { - "name": "class HousingGamePlayerCollection*", - "bases": [ - "PropertyClass" - ], - "hash": 1100079039, - "properties": { - "m_playerList": { - "type": "gid", - "id": 0, - "offset": 72, + "hash": 1552545835 + }, + "m_equipActionList": { + "type": "class SharedPointer", + "id": 8, + "offset": 304, "flags": 7, - "container": "List", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1909774945 - } - } - }, - "1508910897": { - "name": "class BurnInterceptCinematicAction*", - "bases": [ - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 1508910897, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, + "pointer": true, + "hash": 1314016250 + }, + "m_unequipActionList": { + "type": "class SharedPointer", + "id": 9, + "offset": 320, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2143896925 + }, + "m_combatEnabled": { + "type": "bool", + "id": 10, + "offset": 336, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 + "hash": 1399744148 }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, + "m_PvPEnabled": { + "type": "bool", + "id": 11, + "offset": 337, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2285866132 - } - } - }, - "1888665808": { - "name": "class AuctionHouseConfig*", - "bases": [ - "PropertyClass" - ], - "hash": 1888665808, - "properties": { - "m_maxCopiesEachTemplate": { + "hash": 1042852532 + }, + "m_setCharacterToLevel": { "type": "int", - "id": 0, - "offset": 72, + "id": 12, + "offset": 408, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 482850544 + "hash": 1268456078 }, - "m_itemDegradationTime": { - "type": "float", - "id": 1, - "offset": 80, + "m_resultingTrainingPoints": { + "type": "int", + "id": 13, + "offset": 412, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 500224183 + "hash": 1710285808 }, - "m_priceMods": { - "type": "class AuctionPriceMods*", - "id": 2, - "offset": 88, + "m_schoolSpecificData": { + "type": "class SharedPointer", + "id": 14, + "offset": 472, "flags": 7, - "container": "Vector", + "container": "List", "dynamic": true, "singleton": false, "pointer": true, - "hash": 2703049879 + "hash": 2609926725 }, - "m_craftedPriceMods": { - "type": "class AuctionPriceMods*", - "id": 3, - "offset": 112, + "m_allSchoolData": { + "type": "class SharedPointer", + "id": 15, + "offset": 488, "flags": 7, - "container": "Vector", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": true, - "hash": 2084157488 + "hash": 2860093528 }, - "m_observerTimeout": { - "type": "int", - "id": 4, - "offset": 160, - "flags": 7, + "m_firstWarningStringKey": { + "type": "std::string", + "id": 16, + "offset": 344, + "flags": 8388615, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 562500777 + "hash": 3095888729 }, - "m_maxReagentTemplateCopies": { + "m_secondWarningStringKey": { + "type": "std::string", + "id": 17, + "offset": 376, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2111513997 + }, + "m_accessPasses": { + "type": "std::string", + "id": 18, + "offset": 456, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2956825884 + }, + "m_gold": { "type": "int", - "id": 5, - "offset": 76, + "id": 19, + "offset": 416, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1246482213 + "hash": 219423808 }, - "m_reagentPriceMods": { - "type": "class AuctionPriceMods*", - "id": 6, - "offset": 136, + "m_tutorialEventsToTrigger": { + "type": "std::string", + "id": 20, + "offset": 424, "flags": 7, - "container": "Vector", + "container": "List", "dynamic": true, "singleton": false, - "pointer": true, - "hash": 1253990333 + "pointer": false, + "hash": 2795041819 }, - "m_templatesInStockList": { - "type": "unsigned int", - "id": 7, - "offset": 184, - "flags": 7, + "m_tipIDsToDismiss": { + "type": "gid", + "id": 21, + "offset": 440, + "flags": 33554439, "container": "List", "dynamic": true, "singleton": false, "pointer": false, - "hash": 977195955 + "hash": 1424884996 + }, + "m_maxPotions": { + "type": "int", + "id": 22, + "offset": 504, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1639626892 } } }, - "1099915965": { - "name": "class SubscriberBenefitControl*", + "1900631756": { + "name": "class OldEquipmentBehavior*", "bases": [ - "Window", + "BehaviorInstance", "PropertyClass" ], - "hash": 1099915965, + "hash": 1900631756, "properties": { - "m_sName": { - "type": "std::string", + "m_behaviorTemplateNameID": { + "type": "unsigned int", "id": 0, - "offset": 80, - "flags": 135, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2306437263 + "hash": 223437287 }, - "m_Children": { - "type": "class SharedPointer", + "m_publicItemList": { + "type": "class OldWizardEquippedItemInfo*", "id": 1, "offset": 112, - "flags": 65671, - "container": "Vector", + "flags": 31, + "container": "List", "dynamic": true, "singleton": false, "pointer": true, - "hash": 2621225959 + "hash": 2226122424 + } + } + }, + "1048126625": { + "name": "class SharedPointer", + "bases": [ + "ActorDialogEntry", + "PropertyClass" + ], + "hash": 1048126625, + "properties": { + "m_requirements": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 263, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3043523229 }, - "m_Style": { - "type": "unsigned int", + "m_dialog": { + "type": "std::string", + "id": 1, + "offset": 88, + "flags": 8388639, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1858395851 + }, + "m_picture": { + "type": "std::string", "id": 2, - "offset": 152, - "flags": 1048583, + "offset": 120, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "SCALE_CHILDREN": 2, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "FOCUS_LOCKED": 64, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152 - } + "hash": 3128322903 }, - "m_Flags": { - "type": "unsigned int", + "m_soundFile": { + "type": "std::string", "id": 3, - "offset": 156, - "flags": 1048583, + "offset": 152, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } + "hash": 2276870852 }, - "m_Window": { - "type": "class Rect", + "m_action": { + "type": "std::string", "id": 4, - "offset": 160, - "flags": 135, + "offset": 184, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3105139380 + "hash": 1734553689 }, - "m_fTargetAlpha": { - "type": "float", + "m_dialogEvent": { + "type": "std::string", "id": 5, - "offset": 212, - "flags": 135, + "offset": 216, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1809129834 + "hash": 2707957549 }, - "m_fDisabledAlpha": { - "type": "float", + "m_actorTemplateID": { + "type": "unsigned int", "id": 6, - "offset": 216, - "flags": 135, + "offset": 248, + "flags": 33554463, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1389987675 + "hash": 2134265679 }, - "m_fAlpha": { - "type": "float", + "m_cameraName": { + "type": "std::string", "id": 7, - "offset": 208, - "flags": 65671, + "offset": 256, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 482130755 + "hash": 3252786917 }, - "m_pWindowStyle": { - "type": "class SharedPointer", + "m_interpolationDuration": { + "type": "float", "id": 8, - "offset": 232, - "flags": 135, + "offset": 312, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3623628394 + "pointer": false, + "hash": 1458058437, + "enum_options": { + "__DEFAULT": "1.0" + } }, - "m_sHelp": { - "type": "std::wstring", + "m_cameraOffsetX": { + "type": "float", "id": 9, - "offset": 248, - "flags": 4194439, + "offset": 288, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2102211316 + "hash": 1515912895 }, - "m_sScript": { - "type": "std::string", + "m_cameraOffsetY": { + "type": "float", "id": 10, - "offset": 352, - "flags": 135, + "offset": 292, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1846695875 + "hash": 1515912896 }, - "m_Offset": { - "type": "class Point", + "m_cameraOffsetZ": { + "type": "float", "id": 11, - "offset": 192, - "flags": 135, + "offset": 296, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3389835433 + "hash": 1515912897 }, - "m_Scale": { - "type": "class Point", + "m_pitch": { + "type": "float", "id": 12, - "offset": 200, - "flags": 135, + "offset": 304, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2547159940 + "hash": 896371695 }, - "m_sTip": { - "type": "std::wstring", + "m_yaw": { + "type": "float", "id": 13, - "offset": 392, - "flags": 4194439, + "offset": 300, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1513510520 + "hash": 357256328 }, - "m_BubbleList": { - "type": "class WindowBubble", + "m_roll": { + "type": "float", "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, + "offset": 308, + "flags": 31, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 2587533771 + "hash": 310020272 }, - "m_ParentOffset": { - "type": "class Rect", + "m_cameraShakeType": { + "type": "std::string", "id": 15, - "offset": 176, - "flags": 135, + "offset": 320, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3091503757 - } - } - }, - "1508056545": { - "name": "struct std::pair,class std::basic_string,class std::allocator > >", - "bases": [], - "hash": 1508056545, - "properties": {} - }, - "1887713419": { - "name": "class BadgeInfo", - "bases": [ - "PropertyClass" - ], - "hash": 1887713419, - "properties": { - "m_badgeNameID": { - "type": "unsigned int", - "id": 0, - "offset": 72, + "hash": 1754128882, + "enum_options": { + "": 0, + "Constant": "Constant", + "Quake": "Quake", + "Thud": "Thud", + "End": "End", + "__DEFAULT": 0 + } + }, + "m_cameraShakeDuration": { + "type": "float", + "id": 16, + "offset": 352, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 800680558 + "hash": 316581010, + "enum_options": { + "__DEFAULT": "0.0" + } }, - "m_badgeTitle": { - "type": "std::string", - "id": 1, - "offset": 80, + "m_cameraShakeAmplitude": { + "type": "float", + "id": 17, + "offset": 356, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1783354256 + "hash": 2179718321, + "enum_options": { + "__DEFAULT": "0.0" + } }, - "m_badgeInfo": { - "type": "std::string", - "id": 2, - "offset": 112, + "m_bypassCameraOnReview": { + "type": "bool", + "id": 18, + "offset": 360, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3002782298 + "hash": 1412905725, + "enum_options": { + "__DEFAULT": 1 + } }, - "m_badgeProgressInfo": { + "m_cameraZoneName": { "type": "std::string", - "id": 3, - "offset": 144, - "flags": 31, + "id": 19, + "offset": 368, + "flags": 287, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1902667503 + "hash": 3131581121 }, - "m_badgeProgress": { - "type": "int", - "id": 4, - "offset": 176, + "m_duration": { + "type": "float", + "id": 20, + "offset": 400, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1577305122 + "hash": 920323453 }, - "m_badgeMax": { - "type": "int", - "id": 5, - "offset": 180, - "flags": 31, + "m_delay": { + "type": "float", + "id": 21, + "offset": 404, + "flags": 287, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 891676691 + "hash": 881988134 }, - "m_badgeComplete": { - "type": "bool", - "id": 6, - "offset": 184, - "flags": 31, + "m_cameraHidePlayers": { + "type": "int", + "id": 22, + "offset": 408, + "flags": 287, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1943559071 + "hash": 28533149 }, - "m_index": { - "type": "unsigned int", - "id": 7, - "offset": 188, - "flags": 31, + "m_walkAwayNpcTemplateID": { + "type": "gid", + "id": 23, + "offset": 416, + "flags": 33554719, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1009433893 + "hash": 942697507 }, - "m_badgeOutline": { - "type": "std::string", - "id": 8, - "offset": 192, - "flags": 31, + "m_walkAwayExitDirectionInDegrees": { + "type": "float", + "id": 24, + "offset": 424, + "flags": 287, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1548975214 + "hash": 396419785 }, - "m_badgeImage": { - "type": "std::string", - "id": 9, - "offset": 224, - "flags": 31, + "m_walkAwayFadeTime": { + "type": "float", + "id": 25, + "offset": 428, + "flags": 287, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1770432017 + "hash": 822405687 }, - "m_dynamicBadge": { + "m_walkAwayUseCurrentFacing": { "type": "bool", - "id": 10, - "offset": 256, - "flags": 31, + "id": 26, + "offset": 432, + "flags": 287, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1496846667 + "hash": 1464855436 }, - "m_badgeFilterID": { - "type": "unsigned int", - "id": 11, - "offset": 260, - "flags": 31, + "m_standInPlayerTag": { + "type": "std::string", + "id": 27, + "offset": 440, + "flags": 287, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1965286611 + "hash": 1590121141 }, - "m_filterIndex": { - "type": "unsigned int", - "id": 12, - "offset": 264, - "flags": 31, + "m_fadeOutCamera": { + "type": "bool", + "id": 28, + "offset": 472, + "flags": 287, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1526994539 + "hash": 1766121252 }, - "m_overcount": { + "m_snapCameraToPlayerAtExit": { "type": "bool", - "id": 13, - "offset": 268, - "flags": 31, + "id": 29, + "offset": 473, + "flags": 287, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 203918520 + "hash": 1323369645 }, - "m_hasLoot": { - "type": "bool", - "id": 14, - "offset": 269, - "flags": 31, + "m_secondaryCameraName": { + "type": "std::string", + "id": 30, + "offset": 480, + "flags": 287, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1743226445 + "hash": 1670705581 }, - "m_badgeLoot": { - "type": "std::string", - "id": 15, - "offset": 272, - "flags": 31, + "m_secondaryInterpolationDuration": { + "type": "float", + "id": 31, + "offset": 512, + "flags": 287, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3002891500 + "hash": 1873822349 }, - "m_extraCredit": { - "type": "bool", - "id": 16, - "offset": 304, - "flags": 31, + "m_npcStandInList": { + "type": "std::string", + "id": 32, + "offset": 520, + "flags": 287, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2076308937 + }, + "m_dialogAnimationList": { + "type": "std::string", + "id": 33, + "offset": 536, + "flags": 287, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2444806919 + }, + "m_dialogTurningList": { + "type": "std::string", + "id": 34, + "offset": 552, + "flags": 287, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2782869422 + }, + "m_npcYawOffsetInDegrees": { + "type": "float", + "id": 35, + "offset": 568, + "flags": 287, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 847737554 + "hash": 1395075270 }, - "m_overcountInterval": { - "type": "unsigned int", - "id": 17, - "offset": 308, - "flags": 31, + "m_allowPlayerToMove": { + "type": "bool", + "id": 36, + "offset": 572, + "flags": 287, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1845137015 + "hash": 225101337 }, - "m_recurringRewardsDescription": { + "m_soundEffectFile": { "type": "std::string", - "id": 18, - "offset": 312, - "flags": 31, + "id": 37, + "offset": 576, + "flags": 287, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1668915496 + "hash": 3235157265 }, - "m_overcountLoot": { + "m_musicFile": { "type": "std::string", - "id": 19, - "offset": 344, - "flags": 31, + "id": 38, + "offset": 608, + "flags": 287, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2371089534 - } - } - }, - "734261447": { - "name": "class ActiveTimedPassEntry*", - "bases": [ - "PropertyClass" - ], - "hash": 734261447, - "properties": { - "m_passInfo": { - "type": "class PassInfo", - "id": 0, - "offset": 72, - "flags": 31, + "hash": 2963686620 + }, + "m_nonStackableMusic": { + "type": "bool", + "id": 39, + "offset": 640, + "flags": 287, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2268899601 + "hash": 1675595625 }, - "m_expireTime": { - "type": "int", - "id": 1, - "offset": 240, - "flags": 31, + "m_nonRepeatableMusic": { + "type": "bool", + "id": 40, + "offset": 641, + "flags": 287, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1624902422 - } - } - }, - "1507831623": { - "name": "class SharedPointer", - "bases": [ - "WinAnimMoveToLocation", - "WindowAnimation", - "PropertyClass" - ], - "hash": 1507831623, - "properties": { - "m_bUseDeepCopy": { + "hash": 2138315572 + }, + "m_playMusicAtSFXVolume": { "type": "bool", - "id": 0, - "offset": 72, - "flags": 135, + "id": 41, + "offset": 642, + "flags": 287, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 433380635 + "hash": 2130871816 }, - "m_targetLocation": { - "type": "class Vector3D", - "id": 1, - "offset": 80, - "flags": 135, + "m_soundEffectDelay": { + "type": "float", + "id": 42, + "offset": 644, + "flags": 287, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2653859938 + "hash": 1586382460 }, - "m_fTimeRemaining": { + "m_musicDelay": { "type": "float", - "id": 2, - "offset": 100, - "flags": 135, + "id": 43, + "offset": 648, + "flags": 287, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1591443014 + "hash": 1217785767 }, - "m_fTimeTotal": { + "m_musicFadeTime": { "type": "float", - "id": 3, - "offset": 96, - "flags": 135, + "id": 44, + "offset": 652, + "flags": 287, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 661225456 - } - } - }, - "1886011985": { - "name": "class InfractionBehavior", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1886011985, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, + "hash": 502925015 + }, + "m_dontReleaseCameraAtExit": { + "type": "bool", + "id": 45, + "offset": 474, + "flags": 287, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 + "hash": 1107508961 }, - "m_penalties": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, + "m_disableBackButton": { + "type": "bool", + "id": 46, + "offset": 656, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 122355444 + }, + "m_enableExitButton": { + "type": "bool", + "id": 47, + "offset": 657, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1824693936 + }, + "m_cameraFadeType": { + "type": "std::string", + "id": 48, + "offset": 664, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2021935382, + "enum_options": { + "": 0, + "In Out Black": "In Out Black", + "In Out White": "In Out White", + "In Black": "In Black", + "Out Black": "Out Black", + "In White": "In White", + "Out White": "Out White", + "__DEFAULT": 0 + } + }, + "m_cameraFadeTime": { + "type": "float", + "id": 49, + "offset": 696, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 614419391, + "enum_options": { + "__DEFAULT": "0.5" + } + }, + "m_idleAnimation": { + "type": "std::string", + "id": 50, + "offset": 704, "flags": 31, - "container": "List", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1696001746 + "pointer": false, + "hash": 2900487193 }, - "m_record": { - "type": "class SharedPointer", - "id": 2, - "offset": 128, - "flags": 16, - "container": "List", - "dynamic": true, + "m_spamTime": { + "type": "float", + "id": 51, + "offset": 736, + "flags": 287, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2129713657 - } - } - }, - "1100078847": { - "name": "class HousingGamePlayerCollection", - "bases": [ - "PropertyClass" - ], - "hash": 1100078847, - "properties": { - "m_playerList": { - "type": "gid", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, + "pointer": false, + "hash": 1727215063, + "enum_options": { + "__DEFAULT": "1.0" + } + }, + "m_playSoundIfSpamming": { + "type": "bool", + "id": 52, + "offset": 740, + "flags": 287, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 1909774945 - } - } - }, - "1885023527": { - "name": "class IngredientTracking*", - "bases": [ - "PropertyClass" - ], - "hash": 1885023527, - "properties": { - "m_ingredientID": { - "type": "gid", - "id": 0, - "offset": 72, - "flags": 7, + "hash": 690006749, + "enum_options": { + "__DEFAULT": 1 + } + }, + "m_playMusicIfSpamming": { + "type": "bool", + "id": 53, + "offset": 741, + "flags": 287, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1616797422 + "hash": 538564341, + "enum_options": { + "__DEFAULT": 1 + } }, - "m_quantity": { - "type": "int", - "id": 1, - "offset": 80, - "flags": 7, + "m_stopMusicFadeTime": { + "type": "float", + "id": 54, + "offset": 744, + "flags": 287, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 169215289 + "hash": 696390845, + "enum_options": { + "__DEFAULT": "0.0" + } }, - "m_sufficient": { + "m_restartMusicFadeTime": { + "type": "float", + "id": 55, + "offset": 748, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 709379292, + "enum_options": { + "__DEFAULT": "0.0" + } + }, + "m_meetsRequirements": { "type": "bool", - "id": 2, - "offset": 96, - "flags": 7, + "id": 56, + "offset": 752, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 92688739 - } - } - }, - "734576796": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 734576796, - "properties": { - "m_id": { - "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 7, + "hash": 296443061 + }, + "m_secondaryCameraInitalDelay": { + "type": "float", + "id": 57, + "offset": 516, + "flags": 287, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2301988666 + "hash": 1812842232 }, - "m_stateID": { - "type": "unsigned int", - "id": 1, - "offset": 76, - "flags": 7, + "m_displayButtonsOnTimedDialog": { + "type": "bool", + "id": 58, + "offset": 753, + "flags": 287, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1849561019 + "hash": 569741400 } } }, - "734559806": { - "name": "class MakeTargetableCinematicStageTemplate*", + "1468570377": { + "name": "class SharedPointer", "bases": [ - "CinematicStageTemplate", + "SoundBehaviorTemplate", + "AreaBehaviorTemplate", + "BehaviorTemplate", "PropertyClass" ], - "hash": 734559806, + "hash": 1468570377, "properties": { - "m_name": { + "m_behaviorName": { "type": "std::string", "id": 0, "offset": 72, @@ -376873,268 +41459,233 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 1717359772 + "hash": 3130754092 }, - "m_duration": { + "m_radius": { "type": "float", "id": 1, - "offset": 104, + "offset": 120, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 920323453 + "hash": 989410271 }, - "m_actions": { - "type": "class SharedPointer", + "m_category": { + "type": "enum AudioCategory", "id": 2, - "offset": 112, - "flags": 7, - "container": "List", - "dynamic": true, + "offset": 124, + "flags": 2097159, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1380578687 + "pointer": false, + "hash": 2951251982, + "enum_options": { + "AudioCategory_Irrelevent": 0, + "AudioCategory_Accoustic": 1, + "AudioCategory_Noise": 2, + "AudioCategory_Music": 3, + "AudioCategory_MusicAtSFXVolume": 4, + "AudioCategory_Dialog": 5, + "AudioCategory_UI": 6, + "AudioCategory_NoiseAtMusicVolume": 7 + } }, - "m_stageRelationships": { - "type": "class SharedPointer", + "m_exclusive": { + "type": "bool", "id": 3, "offset": 128, "flags": 7, - "container": "List", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 499983354 - } - } - }, - "1508559279": { - "name": "class SpellFavorites*", - "bases": [ - "PropertyClass" - ], - "hash": 1508559279, - "properties": { - "m_versionNumber": { - "type": "unsigned int", - "id": 0, - "offset": 72, + "pointer": false, + "hash": 824383403 + }, + "m_active": { + "type": "bool", + "id": 4, + "offset": 129, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1265259452 + "hash": 239335471 }, - "m_favoriteTemplateIDList": { - "type": "unsigned int", - "id": 1, - "offset": 80, + "m_enableReqs": { + "type": "class SharedPointer", + "id": 5, + "offset": 136, + "flags": 263, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3158020443 + }, + "m_trackFilenameList": { + "type": "std::string", + "id": 6, + "offset": 152, "flags": 7, - "container": "List", + "container": "Vector", "dynamic": true, "singleton": false, "pointer": false, - "hash": 372036018 + "hash": 2531081709 }, - "m_playerAddedTemplateIDList": { - "type": "unsigned int", - "id": 2, - "offset": 96, + "m_playList": { + "type": "class PlayListEntry*", + "id": 7, + "offset": 176, "flags": 7, - "container": "List", + "container": "Vector", "dynamic": true, "singleton": false, - "pointer": false, - "hash": 2042557329 - } - } - }, - "1101187990": { - "name": "class CountdownBehaviorTemplate*", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 1101187990, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, + "pointer": true, + "hash": 3907873161 + }, + "m_priority": { + "type": "int", + "id": 8, + "offset": 208, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3130754092 - } - } - }, - "1508559119": { - "name": "class SpellFavorites", - "bases": [ - "PropertyClass" - ], - "hash": 1508559119, - "properties": { - "m_versionNumber": { - "type": "unsigned int", - "id": 0, - "offset": 72, + "hash": 1235205852 + }, + "m_volume": { + "type": "float", + "id": 9, + "offset": 200, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1265259452 + "hash": 1162855023 }, - "m_favoriteTemplateIDList": { - "type": "unsigned int", - "id": 1, - "offset": 80, + "m_loopCount": { + "type": "int", + "id": 10, + "offset": 204, "flags": 7, - "container": "List", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 372036018 + "hash": 865634717 }, - "m_playerAddedTemplateIDList": { - "type": "unsigned int", - "id": 2, - "offset": 96, - "flags": 7, - "container": "List", - "dynamic": true, + "m_progression": { + "type": "enum PlayList::Progression", + "id": 11, + "offset": 220, + "flags": 2097159, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 2042557329 - } - } - }, - "1886728075": { - "name": "class std::vector >", - "bases": [], - "hash": 1886728075, - "properties": {} - }, - "1100165481": { - "name": "class WorldHubZoneMapper", - "bases": [ - "PropertyClass" - ], - "hash": 1100165481, - "properties": { - "m_hubZoneMapping": { - "type": "class HubZoneMapping*", - "id": 0, - "offset": 72, + "hash": 3279400238, + "enum_options": { + "Sequence": 0, + "Random": 1, + "SequenceOnceOnly": 2, + "RandomNoRepeat": 3 + } + }, + "m_progressMin": { + "type": "float", + "id": 12, + "offset": 212, "flags": 7, - "container": "List", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1402898811 - } - } - }, - "1508248095": { - "name": "class InstanceSigilOption", - "bases": [ - "ServiceOptionBase", - "PropertyClass" - ], - "hash": 1508248095, - "properties": { - "m_serviceName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, + "pointer": false, + "hash": 1497550192 + }, + "m_progressMax": { + "type": "float", + "id": 13, + "offset": 216, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2206028813 + "hash": 1497549938 }, - "m_iconKey": { - "type": "std::string", - "id": 1, - "offset": 168, - "flags": 31, + "m_audioFilterSet": { + "type": "unsigned int", + "id": 14, + "offset": 224, + "flags": 33554439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2457138637 + "hash": 831339825 }, - "m_displayKey": { + "m_animationNameFilter": { "type": "std::string", - "id": 2, - "offset": 104, - "flags": 31, + "id": 15, + "offset": 232, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3023276954 + "hash": 2292854242 }, - "m_serviceIndex": { - "type": "unsigned int", - "id": 3, - "offset": 204, - "flags": 31, + "m_functionallabel": { + "type": "std::string", + "id": 16, + "offset": 264, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3589331278 + }, + "m_innerRadius": { + "type": "float", + "id": 17, + "offset": 296, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2103126710 + "hash": 686816091 }, - "m_forceInteract": { + "m_inverted": { "type": "bool", - "id": 4, - "offset": 200, - "flags": 31, + "id": 18, + "offset": 300, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1705789564 - } - } - }, - "1887260125": { - "name": "class CombatActionListObj", - "bases": [ - "PropertyClass" - ], - "hash": 1887260125, - "properties": { - "m_actionList": { - "type": "class CombatAction", - "id": 0, - "offset": 72, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1971690676 + "hash": 1034821044 } } }, - "736135446": { - "name": "class CinematicStageRelationship*", + "617909374": { + "name": "class SharedPointer", "bases": [ "PropertyClass" ], - "hash": 736135446, + "hash": 617909374, "properties": { - "m_actor": { - "type": "std::string", + "m_dye": { + "type": "int", "id": 0, "offset": 72, "flags": 7, @@ -377142,155 +41693,105 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 2285866132 + "hash": 267033084 }, - "m_stageToWaitFor": { - "type": "std::string", + "m_texture": { + "type": "int", "id": 1, - "offset": 104, + "offset": 76, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2133449134 + "hash": 222406987 } } }, - "736033564": { - "name": "class SharedPointer", + "546192515": { + "name": "class ClientEquipmentBehavior", "bases": [ - "AvatarItemInfo", - "AvatarItemInfoBase", + "BehaviorInstance", "PropertyClass" ], - "hash": 736033564, + "hash": 546192515, "properties": { - "m_partName": { - "type": "std::string", + "m_behaviorTemplateNameID": { + "type": "unsigned int", "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2609631923 - }, - "m_slotName": { - "type": "std::string", - "id": 1, "offset": 104, - "flags": 7, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2819781566 + "hash": 223437287 }, - "m_flags": { - "type": "std::string", - "id": 2, - "offset": 144, - "flags": 7, + "m_itemList": { + "type": "class SharedPointer", + "id": 1, + "offset": 120, + "flags": 27, "container": "List", "dynamic": true, "singleton": false, - "pointer": false, - "hash": 2292098216 + "pointer": true, + "hash": 1983655699 }, - "m_options": { - "type": "class SharedPointer", - "id": 3, - "offset": 160, - "flags": 7, + "m_slotList": { + "type": "class SharedPointer", + "id": 2, + "offset": 136, + "flags": 27, "container": "List", "dynamic": true, "singleton": false, "pointer": true, - "hash": 2499357824 + "hash": 3213026923 }, - "m_textureOptions": { - "type": "class SharedPointer", - "id": 4, - "offset": 176, - "flags": 7, + "m_publicItemList": { + "type": "class SharedPointer", + "id": 3, + "offset": 152, + "flags": 31, "container": "List", "dynamic": true, "singleton": false, "pointer": true, - "hash": 2667548348 - }, - "m_defaultOption": { - "type": "class SharedPointer", - "id": 5, - "offset": 192, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2436336754 - }, - "m_defaultTextureOption": { - "type": "class SharedPointer", - "id": 6, - "offset": 208, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2712636654 + "hash": 1693467991 } } }, - "1102142124": { - "name": "class NPCDataList", + "616899240": { + "name": "class UnlockTriggerBehaviorBase", "bases": [ + "BehaviorInstance", "PropertyClass" ], - "hash": 1102142124, + "hash": 616899240, "properties": { - "m_npcList": { - "type": "class SharedPointer", + "m_behaviorTemplateNameID": { + "type": "unsigned int", "id": 0, - "offset": 72, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2709214274 - }, - "m_zoneType": { - "type": "enum NPCDataList::ZONE_TYPE", - "id": 1, - "offset": 88, - "flags": 2097183, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 975028587, - "enum_options": { - "CurrentZone": 0, - "OtherZons": 1, - "None": 2 - } + "hash": 223437287 } } }, - "1101331544": { - "name": "class ObstacleCourseCatapultBehaviorTemplate*", + "616641470": { + "name": "class SharedPointer", "bases": [ - "ObstacleCourseObstacleBehaviorTemplate", - "BehaviorTemplate", + "GameEffectTemplate", "PropertyClass" ], - "hash": 1101331544, + "hash": 616641470, "properties": { - "m_behaviorName": { + "m_effectName": { "type": "std::string", "id": 0, "offset": 72, @@ -377299,244 +41800,168 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 3130754092 + "hash": 2029161513 }, - "m_rate": { - "type": "double", + "m_effectCategory": { + "type": "std::string", "id": 1, - "offset": 120, + "offset": 104, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2117614265 + "hash": 1852673222 }, - "m_initialYaw": { - "type": "double", + "m_sortOrder": { + "type": "int", "id": 2, - "offset": 128, + "offset": 148, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2566917224 + "hash": 1411218206 }, - "m_penaltyTime": { + "m_duration": { "type": "double", "id": 3, - "offset": 136, + "offset": 192, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3890998489 + "hash": 2727932435 }, - "m_pitch": { - "type": "double", + "m_stackingCategories": { + "type": "std::string", "id": 4, - "offset": 144, + "offset": 160, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 2703980677 + "hash": 1774497525 }, - "m_maxYaw": { - "type": "double", + "m_isPersistent": { + "type": "bool", "id": 5, - "offset": 152, + "offset": 153, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2602042948 + "hash": 923861920 }, - "m_platformWidth": { - "type": "double", + "m_bIsOnPet": { + "type": "bool", "id": 6, - "offset": 160, + "offset": 154, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 4024516466 + "hash": 522593303 }, - "m_platformHeight": { - "type": "double", + "m_isPublic": { + "type": "bool", "id": 7, - "offset": 168, + "offset": 152, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2765202891 + "hash": 1728439822 }, - "m_launchSpeed": { - "type": "double", + "m_visualEffectAddName": { + "type": "std::string", "id": 8, - "offset": 176, + "offset": 200, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2644727001 + "hash": 3382086694 }, - "m_launchSpeedUp": { - "type": "double", + "m_visualEffectRemoveName": { + "type": "std::string", "id": 9, - "offset": 184, + "offset": 232, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3445224318 + "hash": 1541697323 }, - "m_collisionHeight": { - "type": "double", + "m_onAddFunctorName": { + "type": "std::string", "id": 10, - "offset": 192, + "offset": 280, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3980975122 - } - } - }, - "1508870348": { - "name": "class SummonMinionEffect*", - "bases": [ - "GameEffectBase", - "PropertyClass" - ], - "hash": 1508870348, - "properties": { - "m_currentTickCount": { - "type": "double", - "id": 0, - "offset": 80, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2533274692 - }, - "m_effectNameID": { - "type": "unsigned int", - "id": 1, - "offset": 96, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1204067144 - }, - "m_bIsOnPet": { - "type": "bool", - "id": 2, - "offset": 73, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 522593303 - }, - "m_originatorID": { - "type": "gid", - "id": 3, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1131810019 - }, - "m_itemSlotID": { - "type": "unsigned int", - "id": 4, - "offset": 112, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1895747595 - }, - "m_internalID": { - "type": "int", - "id": 5, - "offset": 92, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1643137924 + "hash": 1561843107 }, - "m_endTime": { - "type": "unsigned int", - "id": 6, - "offset": 88, - "flags": 31, + "m_onRemoveFunctorName": { + "type": "std::string", + "id": 11, + "offset": 312, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 716479635 + "hash": 2559017864 }, - "m_minionType": { - "type": "enum MinionType", - "id": 7, - "offset": 128, + "m_stackingRule": { + "type": "enum STACKING_RULE", + "id": 12, + "offset": 144, "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3186373083, + "hash": 431568889, "enum_options": { - "MT_NONE": 0, - "MT_ACCOMPANY": 1, - "MT_MINION": 2, - "MT_MONSTER": 3 + "STACKING_ALLOWED": 0, + "STACKING_NOSTACK": 1, + "STACKING_REPLACE": 2 } }, - "m_summonedTemplateID": { - "type": "int", - "id": 8, - "offset": 132, - "flags": 31, + "m_lootTableName": { + "type": "std::string", + "id": 13, + "offset": 360, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1109386027 + "hash": 2333333378 } } }, - "1887725707": { - "name": "class BadgeInfo*", + "1069240592": { + "name": "class WizTrainingInteraction*", "bases": [ + "ServiceOptionBase", "PropertyClass" ], - "hash": 1887725707, + "hash": 1069240592, "properties": { - "m_badgeNameID": { - "type": "unsigned int", + "m_serviceName": { + "type": "std::string", "id": 0, "offset": 72, "flags": 31, @@ -377544,1155 +41969,1241 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 800680558 + "hash": 2206028813 }, - "m_badgeTitle": { + "m_iconKey": { "type": "std::string", "id": 1, - "offset": 80, + "offset": 168, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1783354256 + "hash": 2457138637 }, - "m_badgeInfo": { + "m_displayKey": { "type": "std::string", "id": 2, - "offset": 112, + "offset": 104, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3002782298 + "hash": 3023276954 }, - "m_badgeProgressInfo": { - "type": "std::string", + "m_serviceIndex": { + "type": "unsigned int", "id": 3, - "offset": 144, + "offset": 204, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1902667503 + "hash": 2103126710 }, - "m_badgeProgress": { - "type": "int", + "m_forceInteract": { + "type": "bool", "id": 4, - "offset": 176, + "offset": 200, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1577305122 - }, - "m_badgeMax": { - "type": "int", - "id": 5, - "offset": 180, - "flags": 31, + "hash": 1705789564 + } + } + }, + "1900631780": { + "name": "class OldEquipmentBehavior", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1900631780, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 891676691 + "hash": 223437287 }, - "m_badgeComplete": { - "type": "bool", - "id": 6, - "offset": 184, + "m_publicItemList": { + "type": "class OldWizardEquippedItemInfo*", + "id": 1, + "offset": 112, "flags": 31, - "container": "Static", - "dynamic": false, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 1943559071 - }, - "m_index": { - "type": "unsigned int", - "id": 7, - "offset": 188, + "pointer": true, + "hash": 2226122424 + } + } + }, + "1059365023": { + "name": "class AuctionHouseOption*", + "bases": [ + "ServiceOptionBase", + "PropertyClass" + ], + "hash": 1059365023, + "properties": { + "m_serviceName": { + "type": "std::string", + "id": 0, + "offset": 72, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1009433893 + "hash": 2206028813 }, - "m_badgeOutline": { + "m_iconKey": { "type": "std::string", - "id": 8, - "offset": 192, + "id": 1, + "offset": 168, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1548975214 + "hash": 2457138637 }, - "m_badgeImage": { + "m_displayKey": { "type": "std::string", - "id": 9, - "offset": 224, + "id": 2, + "offset": 104, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1770432017 + "hash": 3023276954 }, - "m_dynamicBadge": { - "type": "bool", - "id": 10, - "offset": 256, + "m_serviceIndex": { + "type": "unsigned int", + "id": 3, + "offset": 204, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1496846667 + "hash": 2103126710 }, - "m_badgeFilterID": { - "type": "unsigned int", - "id": 11, - "offset": 260, + "m_forceInteract": { + "type": "bool", + "id": 4, + "offset": 200, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1965286611 + "hash": 1705789564 }, - "m_filterIndex": { + "m_auctionHousePurchaseKey": { "type": "unsigned int", - "id": 12, - "offset": 264, + "id": 5, + "offset": 216, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1526994539 + "hash": 394777768 }, - "m_overcount": { - "type": "bool", - "id": 13, - "offset": 268, + "m_sellModifier": { + "type": "float", + "id": 6, + "offset": 220, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 203918520 - }, - "m_hasLoot": { - "type": "bool", - "id": 14, - "offset": 269, + "hash": 360128886 + } + } + }, + "1471099803": { + "name": "class SharedPointer", + "bases": [ + "MatchRequest", + "PropertyClass" + ], + "hash": 1471099803, + "properties": { + "m_characterID": { + "type": "gid", + "id": 0, + "offset": 72, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1743226445 + "hash": 210498386 }, - "m_badgeLoot": { - "type": "std::string", - "id": 15, - "offset": 272, + "m_tournamentNameID": { + "type": "unsigned int", + "id": 1, + "offset": 84, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3002891500 + "hash": 1799846440 }, - "m_extraCredit": { - "type": "bool", - "id": 16, - "offset": 304, + "m_matchNameID": { + "type": "unsigned int", + "id": 2, + "offset": 80, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 847737554 + "hash": 1751361288 }, - "m_overcountInterval": { + "m_leagueID": { "type": "unsigned int", - "id": 17, - "offset": 308, + "id": 3, + "offset": 88, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1845137015 + "hash": 692361645 }, - "m_recurringRewardsDescription": { - "type": "std::string", - "id": 18, - "offset": 312, + "m_seasonID": { + "type": "unsigned int", + "id": 4, + "offset": 92, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1668915496 + "hash": 535260643 }, - "m_overcountLoot": { - "type": "std::string", - "id": 19, - "offset": 344, + "m_teams": { + "type": "class SharedPointer", + "id": 5, + "offset": 96, "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2371089534 - } - } - }, - "736132670": { - "name": "class MakeTargetableCinematicStageTemplate", - "bases": [ - "CinematicStageTemplate", - "PropertyClass" - ], - "hash": 736132670, - "properties": { - "m_name": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 1717359772 + "pointer": true, + "hash": 1984373608 }, - "m_duration": { - "type": "float", - "id": 1, - "offset": 104, - "flags": 7, + "m_joinQueueRequirements": { + "type": "class SharedPointer", + "id": 6, + "offset": 112, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 920323453 - }, - "m_actions": { - "type": "class SharedPointer", - "id": 2, - "offset": 112, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, "pointer": true, - "hash": 1380578687 + "hash": 2746080983 }, - "m_stageRelationships": { - "type": "class SharedPointer", - "id": 3, + "m_ignoredList": { + "type": "gid", + "id": 7, "offset": 128, - "flags": 7, + "flags": 31, "container": "List", "dynamic": true, "singleton": false, - "pointer": true, - "hash": 499983354 - } - } - }, - "1508636938": { - "name": "class WizardClientDuelBehavior", - "bases": [ - "ClientDuelBehavior", - "DuelBehavior", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1508636938, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, "pointer": false, - "hash": 223437287 + "hash": 1850924028 }, - "m_pDuel": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, + "m_matchTimer": { + "type": "float", + "id": 8, + "offset": 144, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1066616366 + "pointer": false, + "hash": 1510935909 }, - "m_sigilTemplateID": { - "type": "unsigned int", - "id": 2, - "offset": 128, + "m_bonusTime": { + "type": "int", + "id": 9, + "offset": 148, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 269055310 - } - } - }, - "1889015393": { - "name": "class ClientShadowCreatureLevelTransitionCinematicAction", - "bases": [ - "ShadowCreatureLevelTransitionCinematicAction", - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 1889015393, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, + "hash": 1757496496 + }, + "m_passPenalty": { + "type": "int", + "id": 10, + "offset": 152, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 + "hash": 982951662 }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, + "m_yellowTime": { + "type": "int", + "id": 11, + "offset": 156, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2285866132 - } - } - }, - "736135456": { - "name": "class CinematicStageRelationship", - "bases": [ - "PropertyClass" - ], - "hash": 736135456, - "properties": { - "m_actor": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, + "hash": 1017028741 + }, + "m_redTime": { + "type": "int", + "id": 12, + "offset": 160, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2285866132 + "hash": 1909556708 }, - "m_stageToWaitFor": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 7, + "m_minTurnTime": { + "type": "int", + "id": 13, + "offset": 164, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2133449134 + "hash": 652524886 + }, + "m_effects": { + "type": "class SharedPointer", + "id": 14, + "offset": 168, + "flags": 31, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 804962647 } } }, - "1103017357": { - "name": "class PetBoostPlayerStatEffectTemplate", + "1053587640": { + "name": "class DyeShopWindow::DyeShopItem*", "bases": [ - "WizStatisticEffectTemplate", - "StatisticEffectTemplate", - "GameEffectTemplate", + "InventoryPageWindow::InventoryItem", + "ControlCheckBox", + "ControlButton", + "Window", "PropertyClass" ], - "hash": 1103017357, + "hash": 1053587640, "properties": { - "m_effectName": { + "m_sName": { "type": "std::string", "id": 0, - "offset": 72, - "flags": 7, + "offset": 80, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2029161513 + "hash": 2306437263 }, - "m_effectCategory": { - "type": "std::string", + "m_Children": { + "type": "class SharedPointer", "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 1852673222 + "pointer": true, + "hash": 2621225959 }, - "m_sortOrder": { - "type": "int", + "m_Style": { + "type": "unsigned int", "id": 2, - "offset": 148, - "flags": 7, + "offset": 152, + "flags": 1048583, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1411218206 + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152, + "EFFECT_SCALE": 67108864, + "LOCK_ICON_SIZE": 33554432, + "LEFT_TEXT": 536870912, + "NO_FIT_TEXT": 1073741824, + "CHECKBOX_TEXTOVERIMAGE": 16777216 + } }, - "m_duration": { - "type": "double", + "m_Flags": { + "type": "unsigned int", "id": 3, - "offset": 192, - "flags": 7, + "offset": 156, + "flags": 1048583, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2727932435 + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } }, - "m_stackingCategories": { - "type": "std::string", + "m_Window": { + "type": "class Rect", "id": 4, "offset": 160, - "flags": 7, - "container": "List", - "dynamic": true, + "flags": 135, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 1774497525 + "hash": 3105139380 }, - "m_isPersistent": { - "type": "bool", + "m_fTargetAlpha": { + "type": "float", "id": 5, - "offset": 153, - "flags": 7, + "offset": 212, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 923861920 + "hash": 1809129834 }, - "m_bIsOnPet": { - "type": "bool", + "m_fDisabledAlpha": { + "type": "float", "id": 6, - "offset": 154, - "flags": 7, + "offset": 216, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 522593303 + "hash": 1389987675 }, - "m_isPublic": { - "type": "bool", + "m_fAlpha": { + "type": "float", "id": 7, - "offset": 152, - "flags": 7, + "offset": 208, + "flags": 65671, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1728439822 + "hash": 482130755 }, - "m_visualEffectAddName": { - "type": "std::string", + "m_pWindowStyle": { + "type": "class SharedPointer", "id": 8, - "offset": 200, - "flags": 7, + "offset": 232, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 3382086694 + "pointer": true, + "hash": 3623628394 }, - "m_visualEffectRemoveName": { - "type": "std::string", + "m_sHelp": { + "type": "std::wstring", "id": 9, - "offset": 232, - "flags": 7, + "offset": 248, + "flags": 4194439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1541697323 + "hash": 2102211316 }, - "m_onAddFunctorName": { + "m_sScript": { "type": "std::string", "id": 10, - "offset": 280, - "flags": 7, + "offset": 352, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1561843107 + "hash": 1846695875 }, - "m_onRemoveFunctorName": { - "type": "std::string", + "m_Offset": { + "type": "class Point", "id": 11, - "offset": 312, - "flags": 7, + "offset": 192, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2559017864 + "hash": 3389835433 }, - "m_stackingRule": { - "type": "enum STACKING_RULE", + "m_Scale": { + "type": "class Point", "id": 12, - "offset": 144, - "flags": 2097159, + "offset": 200, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 431568889, - "enum_options": { - "STACKING_ALLOWED": 0, - "STACKING_NOSTACK": 1, - "STACKING_REPLACE": 2 - } + "hash": 2547159940 }, - "m_buffAll": { - "type": "bool", + "m_sTip": { + "type": "std::wstring", "id": 13, "offset": 392, - "flags": 7, + "flags": 4194439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1205044623 + "hash": 1513510520 }, - "m_school": { - "type": "std::string", + "m_BubbleList": { + "type": "class WindowBubble", "id": 14, - "offset": 400, - "flags": 7, - "container": "Static", - "dynamic": false, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 2438566051 + "hash": 2587533771 }, - "m_damageBonusPercent": { - "type": "float", + "m_ParentOffset": { + "type": "class Rect", "id": 15, - "offset": 440, - "flags": 7, + "offset": 176, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 623230606 + "hash": 3091503757 }, - "m_damageBonusFlat": { - "type": "float", + "m_bToggle": { + "type": "bool", "id": 16, - "offset": 488, - "flags": 7, + "offset": 608, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2212039108 + "hash": 2071810903 }, - "m_accuracyBonusPercent": { - "type": "float", + "m_bButtonDown": { + "type": "bool", "id": 17, - "offset": 444, - "flags": 7, + "offset": 609, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1972336538 + "hash": 840041705 }, - "m_armorPiercingBonusPercent": { - "type": "float", + "m_sLabel": { + "type": "std::wstring", "id": 18, - "offset": 448, - "flags": 7, + "offset": 616, + "flags": 4194439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1569912641 + "hash": 2207009163 }, - "m_damageReducePercent": { - "type": "float", + "m_labelOffset": { + "type": "class Rect", "id": 19, - "offset": 452, - "flags": 7, + "offset": 832, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 541736927 + "hash": 1990646723 }, - "m_damageReduceFlat": { - "type": "float", + "m_pButton": { + "type": "class SharedPointer", "id": 20, - "offset": 456, - "flags": 7, + "offset": 656, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 684172469 + "pointer": true, + "hash": 1543855875 }, - "m_accuracyReducePercent": { - "type": "float", + "m_HotKey": { + "type": "unsigned int", "id": 21, - "offset": 460, - "flags": 7, + "offset": 672, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2112559723 + "hash": 1631553409 }, - "m_healBonusPercent": { - "type": "float", + "m_Color": { + "type": "class Color", "id": 22, - "offset": 464, - "flags": 7, + "offset": 676, + "flags": 262279, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 562313577 + "hash": 1753714077 }, - "m_healIncBonusPercent": { - "type": "float", + "m_bCursorOver": { + "type": "bool", "id": 23, - "offset": 468, - "flags": 7, + "offset": 689, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2182535587 + "hash": 283981103 }, - "m_hitPointBonus": { - "type": "float", + "m_bAbortWhenCursorNotOver": { + "type": "bool", "id": 24, - "offset": 496, - "flags": 7, + "offset": 706, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 880644461 + "hash": 325405258 }, - "m_spellChargeBonus": { - "type": "float", + "m_bHotKeyDown": { + "type": "bool", "id": 25, - "offset": 504, - "flags": 7, + "offset": 680, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2109811656 + "hash": 616989185 }, - "m_powerPipBonusPercent": { + "m_fTime": { "type": "float", "id": 26, - "offset": 472, - "flags": 7, + "offset": 684, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1671446341 + "hash": 883746156 }, - "m_petActChance": { - "type": "int", + "m_bGreyed": { + "type": "bool", "id": 27, - "offset": 492, - "flags": 7, + "offset": 688, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 237418461 + "hash": 1566556053 }, - "m_manaBonus": { + "m_fMaxScale": { "type": "float", "id": 28, - "offset": 500, - "flags": 7, + "offset": 692, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1372708603 + "hash": 2070186635 }, - "m_statTableName": { - "type": "std::string", + "m_fScaleSpeed": { + "type": "float", "id": 29, - "offset": 360, - "flags": 7, + "offset": 696, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1616642912 + "hash": 1457135702 }, - "m_manaReducePercent": { - "type": "float", + "m_bUseDropShadow": { + "type": "bool", "id": 30, - "offset": 568, - "flags": 7, + "offset": 704, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 348324221 + "hash": 93063037 }, - "m_expPercent": { - "type": "float", + "m_bUseOutline": { + "type": "bool", "id": 31, - "offset": 572, - "flags": 7, + "offset": 705, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1147850677 + "hash": 744292994 }, - "m_goldPercent": { - "type": "float", + "m_pGreyedState": { + "type": "class SharedPointer", "id": 32, - "offset": 576, - "flags": 7, + "offset": 768, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1095720878 + "pointer": true, + "hash": 2703352263 }, - "m_energyBonus": { - "type": "float", + "m_pNormalState": { + "type": "class SharedPointer", "id": 33, - "offset": 508, - "flags": 7, + "offset": 752, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 2223158984 + "pointer": true, + "hash": 1887909808 }, - "m_criticalHitRating": { - "type": "float", + "m_pHighlightedState": { + "type": "class SharedPointer", "id": 34, - "offset": 512, - "flags": 7, + "offset": 784, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1978690540 + "pointer": true, + "hash": 2200177608 }, - "m_blockRating": { - "type": "float", + "m_pSelectedState": { + "type": "class SharedPointer", "id": 35, - "offset": 516, - "flags": 7, + "offset": 800, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 2088486759 + "pointer": true, + "hash": 2266776432 }, - "m_accuracyRating": { - "type": "float", + "m_pDepressedState": { + "type": "class SharedPointer", "id": 36, - "offset": 520, - "flags": 7, + "offset": 816, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 165525575 + "pointer": true, + "hash": 1878185798 }, - "m_powerPipRating": { - "type": "float", + "m_nGroupID": { + "type": "int", "id": 37, - "offset": 524, - "flags": 7, + "offset": 880, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1355340722 + "hash": 403966850 }, - "m_damageResistanceRating": { - "type": "float", + "m_bChecked": { + "type": "bool", "id": 38, - "offset": 532, - "flags": 7, + "offset": 884, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1961377740 + "hash": 958955100 }, - "m_archmastery": { - "type": "float", + "m_pCheckedState": { + "type": "class SharedPointer", "id": 39, - "offset": 536, - "flags": 7, + "offset": 888, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1963579610 + "pointer": true, + "hash": 1210539694 }, - "m_archmasteryBonusPercent": { - "type": "float", + "m_pCheckedGreyedState": { + "type": "class SharedPointer", "id": 40, - "offset": 588, - "flags": 7, + "offset": 904, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1908627154 + "pointer": true, + "hash": 2702030126 }, - "m_balanceMastery": { - "type": "int", + "m_pCheckedHighlightedState": { + "type": "class SharedPointer", "id": 41, - "offset": 540, - "flags": 7, + "offset": 920, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 149062181 + "pointer": true, + "hash": 1320097679 }, - "m_deathMastery": { - "type": "int", + "m_pCheckedDepressedState": { + "type": "class SharedPointer", "id": 42, - "offset": 544, - "flags": 7, + "offset": 936, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1421218661 + "pointer": true, + "hash": 1609188685 }, - "m_fireMastery": { - "type": "int", + "m_pEquipNormalState": { + "type": "class SharedPointer", "id": 43, - "offset": 548, + "offset": 976, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1431794949 + "pointer": true, + "hash": 1322058516 }, - "m_iceMastery": { - "type": "int", + "m_pEquipPressState": { + "type": "class SharedPointer", "id": 44, - "offset": 552, + "offset": 992, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 704864240 + "pointer": true, + "hash": 3019605144 }, - "m_lifeMastery": { - "type": "int", + "m_pEquipHighlightState": { + "type": "class SharedPointer", "id": 45, - "offset": 556, + "offset": 1008, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 2142136447 + "pointer": true, + "hash": 2559056739 }, - "m_mythMastery": { - "type": "int", + "m_pEquipCheckState": { + "type": "class SharedPointer", "id": 46, - "offset": 560, + "offset": 1024, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1766317185 + "pointer": true, + "hash": 2420681417 }, - "m_stormMastery": { - "type": "int", + "m_pEquipCheckPressState": { + "type": "class SharedPointer", "id": 47, - "offset": 564, + "offset": 1040, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1883988244 + "pointer": true, + "hash": 2063281462 }, - "m_stunResistancePercent": { - "type": "float", + "m_pEquipCheckHighlightState": { + "type": "class SharedPointer", "id": 48, - "offset": 580, + "offset": 1056, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, + "pointer": true, + "hash": 2990990081 + } + } + }, + "617172048": { + "name": "class SharedPointer", + "bases": [ + "ClientDerbyTerrainEffect", + "DerbyTerrainEffect", + "DerbyEffect", + "PropertyClass" + ], + "hash": 617172048, + "properties": { + "m_buffType": { + "type": "enum DerbyTalentBuffType", + "id": 0, + "offset": 92, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, "pointer": false, - "hash": 1868382627 + "hash": 1149251982, + "enum_options": { + "Buff": 0, + "Debuff": 1, + "Neither": 2 + } }, - "m_fishingLuckBonusPercent": { - "type": "float", - "id": 49, - "offset": 480, - "flags": 7, + "m_kTarget": { + "type": "enum DerbyTargetType", + "id": 1, + "offset": 96, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1363349254 + "hash": 1807803351, + "enum_options": { + "kTargetInFront": 0, + "kTargetBehind": 1, + "kTargetFirst": 2, + "kTargetSelf": 3, + "kTargetAll": 4, + "kTargetLast": 5 + } }, - "m_shadowPipBonusPercent": { - "type": "float", - "id": 50, - "offset": 476, - "flags": 7, + "m_nDuration": { + "type": "int", + "id": 2, + "offset": 104, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1426533310 + "hash": 1110167982 }, - "m_wispBonusPercent": { - "type": "float", - "id": 51, - "offset": 484, - "flags": 7, + "m_effectID": { + "type": "unsigned int", + "id": 3, + "offset": 88, + "flags": 24, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1304386546 + "hash": 2347630439 }, - "m_pipConversionRating": { - "type": "float", - "id": 52, - "offset": 584, - "flags": 7, + "m_imageFilename": { + "type": "std::string", + "id": 4, + "offset": 112, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 246855691 + "hash": 2813328063 }, - "m_shadowPipRating": { - "type": "float", - "id": 53, - "offset": 528, - "flags": 7, + "m_iconIndex": { + "type": "unsigned int", + "id": 5, + "offset": 144, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 507126123 + "hash": 1265133262 }, - "m_primaryStat1": { + "m_soundOnActivate": { "type": "std::string", - "id": 54, - "offset": 600, - "flags": 7, + "id": 6, + "offset": 152, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2417808140 + "hash": 1956929714 }, - "m_primaryStat2": { + "m_soundOnTarget": { "type": "std::string", - "id": 55, - "offset": 632, - "flags": 7, + "id": 7, + "offset": 184, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2417808141 + "hash": 3444214056 }, - "m_secondaryStat": { + "m_targetParticleEffect": { "type": "std::string", - "id": 56, - "offset": 664, - "flags": 7, + "id": 8, + "offset": 216, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3564684959 + "hash": 3048234723 }, - "m_secondaryModifier": { + "m_overheadMessage": { + "type": "std::string", + "id": 9, + "offset": 248, + "flags": 8388639, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1701018190 + }, + "m_requirements": { + "type": "class RequirementList", + "id": 10, + "offset": 280, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2840988582 + }, + "m_terrainType": { + "type": "enum PetDerbyTrackTerrain", + "id": 11, + "offset": 376, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2688629581, + "enum_options": { + "Cobblestone": 0, + "Water": 1, + "Grass": 2, + "Clay": 3, + "Dirt": 4, + "Mud": 5 + } + }, + "m_fEffectReapplyTime": { "type": "float", - "id": 57, - "offset": 696, - "flags": 7, + "id": 12, + "offset": 380, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2101148238 + "hash": 1483497206 + }, + "m_effectsToApply": { + "type": "class SharedPointer", + "id": 13, + "offset": 384, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2042624288 + }, + "m_permanentEffects": { + "type": "class SharedPointer", + "id": 14, + "offset": 400, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2129171809 } } }, - "1508904753": { - "name": "class BurnInterceptCinematicAction", + "1051565990": { + "name": "class Group*", "bases": [ - "ActorCinematicAction", - "CinematicAction", "PropertyClass" ], - "hash": 1508904753, + "hash": 1051565990, "properties": { - "m_timeOffset": { - "type": "float", + "m_GroupID": { + "type": "gid", "id": 0, "offset": 72, - "flags": 7, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 + "hash": 586506386 }, - "m_actor": { - "type": "std::string", + "m_ChannelID": { + "type": "gid", "id": 1, "offset": 80, - "flags": 7, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2285866132 - } - } - }, - "1888962959": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1888962959, - "properties": { - "m_levelScaledInfoList": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 7, + "hash": 1585983742 + }, + "m_MemberList": { + "type": "class SharedPointer", + "id": 2, + "offset": 88, + "flags": 31, "container": "List", "dynamic": true, "singleton": false, "pointer": true, - "hash": 2689138081 + "hash": 2864705424 }, - "m_statsFloorPercent": { - "type": "class SharedPointer", - "id": 1, - "offset": 88, - "flags": 7, + "m_nMaxSize": { + "type": "unsigned int", + "id": 3, + "offset": 104, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2929073687 - } - } - }, - "1102851276": { - "name": "class ClientAtticBehavior", - "bases": [ - "AtticBehavior", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1102851276, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, + "pointer": false, + "hash": 1265869948 + }, + "m_fromAdventureParty": { + "type": "bool", + "id": 4, + "offset": 128, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 + "hash": 940992997 }, - "m_containerGID": { + "m_leaderGID": { "type": "gid", - "id": 1, - "offset": 112, - "flags": 63, + "id": 5, + "offset": 136, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 550557519 + "hash": 700505145 }, - "m_atticItemCount": { - "type": "int", - "id": 2, - "offset": 120, - "flags": 63, + "m_questGID": { + "type": "gid", + "id": 6, + "offset": 144, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 184605671 + "hash": 331631550 + }, + "m_goalGID": { + "type": "gid", + "id": 7, + "offset": 152, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 976914927 } } }, - "1102608229": { - "name": "class UnlockTriggerBehaviorTemplate", + "617154041": { + "name": "class TempStartingPipEffectTemplate*", "bases": [ - "BehaviorTemplate", + "GameEffectTemplate", "PropertyClass" ], - "hash": 1102608229, + "hash": 617154041, "properties": { - "m_behaviorName": { + "m_effectName": { "type": "std::string", "id": 0, "offset": 72, @@ -378701,379 +43212,458 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 3130754092 + "hash": 2029161513 }, - "m_minimumGuildSize": { - "type": "int", + "m_effectCategory": { + "type": "std::string", "id": 1, - "offset": 120, + "offset": 104, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1297669158 + "hash": 1852673222 }, - "m_reagent1ID": { - "type": "unsigned int", + "m_sortOrder": { + "type": "int", "id": 2, - "offset": 124, + "offset": 148, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1834039377 + "hash": 1411218206 }, - "m_reagent1Number": { - "type": "unsigned int", + "m_duration": { + "type": "double", "id": 3, - "offset": 128, + "offset": 192, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 704125517 + "hash": 2727932435 }, - "m_reagent1Adjective": { + "m_stackingCategories": { "type": "std::string", "id": 4, - "offset": 136, + "offset": 160, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 1540526241 + "hash": 1774497525 }, - "m_reagent2ID": { - "type": "unsigned int", + "m_isPersistent": { + "type": "bool", "id": 5, - "offset": 168, + "offset": 153, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1834040466 + "hash": 923861920 }, - "m_reagent2Number": { - "type": "unsigned int", + "m_bIsOnPet": { + "type": "bool", "id": 6, - "offset": 172, + "offset": 154, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1995593486 + "hash": 522593303 }, - "m_reagent2Adjective": { - "type": "std::string", + "m_isPublic": { + "type": "bool", "id": 7, - "offset": 176, + "offset": 152, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1608327618 + "hash": 1728439822 }, - "m_reagent3ID": { - "type": "unsigned int", + "m_visualEffectAddName": { + "type": "std::string", "id": 8, - "offset": 208, + "offset": 200, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1834041555 + "hash": 3382086694 }, - "m_reagent3Number": { - "type": "unsigned int", + "m_visualEffectRemoveName": { + "type": "std::string", "id": 9, - "offset": 212, + "offset": 232, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1139577807 + "hash": 1541697323 }, - "m_reagent3Adjective": { + "m_onAddFunctorName": { "type": "std::string", "id": 10, - "offset": 216, + "offset": 280, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1676128995 + "hash": 1561843107 }, - "m_reagent4ID": { - "type": "unsigned int", + "m_onRemoveFunctorName": { + "type": "std::string", "id": 11, - "offset": 248, + "offset": 312, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1834042644 + "hash": 2559017864 }, - "m_reagent4Number": { - "type": "unsigned int", + "m_stackingRule": { + "type": "enum STACKING_RULE", "id": 12, - "offset": 252, - "flags": 7, + "offset": 144, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 283562128 + "hash": 431568889, + "enum_options": { + "STACKING_ALLOWED": 0, + "STACKING_NOSTACK": 1, + "STACKING_REPLACE": 2 + } }, - "m_reagent4Adjective": { - "type": "std::string", + "m_pipsGiven": { + "type": "int", "id": 13, - "offset": 256, + "offset": 360, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1743930372 + "hash": 1346249167 }, - "m_reagent5ID": { - "type": "unsigned int", + "m_powerPipsGiven": { + "type": "int", "id": 14, - "offset": 288, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1834043733 - }, - "m_reagent5Number": { - "type": "unsigned int", - "id": 15, - "offset": 292, + "offset": 364, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1575030097 - }, - "m_reagent5Adjective": { - "type": "std::string", - "id": 16, - "offset": 296, + "hash": 377908508 + } + } + }, + "1901351395": { + "name": "class CantripXPConfig", + "bases": [ + "PropertyClass" + ], + "hash": 1901351395, + "properties": { + "m_levelInfo": { + "type": "class CantripLevelInfo*", + "id": 0, + "offset": 72, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 1811731749 + "pointer": true, + "hash": 3391404974 }, - "m_reagent6ID": { - "type": "unsigned int", - "id": 17, - "offset": 328, + "m_maxLevel": { + "type": "unsigned char", + "id": 1, + "offset": 88, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1834044822 - }, - "m_reagent6Number": { - "type": "unsigned int", - "id": 18, - "offset": 332, + "hash": 783962734 + } + } + }, + "1049222261": { + "name": "class ClientCameraFadeCinematicAction", + "bases": [ + "CameraFadeCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 1049222261, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 719014418 + "hash": 2237098605 }, - "m_reagent6Adjective": { - "type": "std::string", - "id": 19, - "offset": 336, + "m_fDuration": { + "type": "float", + "id": 1, + "offset": 80, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1879533126 + "hash": 598255075 }, - "m_requiredUnlockTriggerID": { - "type": "unsigned int", - "id": 20, - "offset": 368, + "m_bCycle": { + "type": "bool", + "id": 2, + "offset": 84, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1012763195 + "hash": 240694213 }, - "m_islandNumber": { - "type": "unsigned int", - "id": 21, - "offset": 372, + "m_bFadeIn": { + "type": "bool", + "id": 3, + "offset": 85, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1882137233 - }, - "m_unlockCantrip": { - "type": "std::string", - "id": 22, - "offset": 376, + "hash": 1507201372 + } + } + }, + "1473290202": { + "name": "class SharedPointer", + "bases": [ + "ClearBottomTeamCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 1473290202, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2731256472 + "hash": 2237098605 }, - "m_numberOfUnlockPlayers": { - "type": "int", - "id": 23, - "offset": 408, + "m_interpDuration": { + "type": "float", + "id": 1, + "offset": 80, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 855609764 - }, - "m_requiredUnlockDisplayName": { + "hash": 2237711951 + } + } + }, + "1048583992": { + "name": "class CastleMagicAction*", + "bases": [ + "PropertyClass" + ], + "hash": 1048583992, + "properties": {} + }, + "1901424966": { + "name": "class MagicMirrorShopBehaviorTemplate*", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 1901424966, + "properties": { + "m_behaviorName": { "type": "std::string", - "id": 24, - "offset": 416, + "id": 0, + "offset": 72, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1551879295 + "hash": 3130754092 }, - "m_unlockedObjectID": { + "m_shopOptions": { "type": "unsigned int", - "id": 25, - "offset": 448, + "id": 1, + "offset": 120, "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 704167667 + } + } + }, + "1048521512": { + "name": "class SG_GameAction_AddPowerMultiplier*", + "bases": [ + "SG_GameAction", + "PropertyClass" + ], + "hash": 1048521512, + "properties": { + "m_target": { + "type": "enum SG_GameAction::SG_Target", + "id": 0, + "offset": 72, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 322023750 + "hash": 1166870973, + "enum_options": { + "Target_Ball": 0, + "Target_Self": 1, + "Target_Connections": 2, + "__DEFAULT": "Target_Ball" + } }, - "m_unlockedObjectYaw": { - "type": "float", - "id": 26, - "offset": 452, + "m_powerName": { + "type": "std::string", + "id": 1, + "offset": 80, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1590408244 - }, - "m_unlockedYawEnabled": { - "type": "bool", - "id": 27, - "offset": 456, + "hash": 2956499913 + } + } + }, + "617271339": { + "name": "class PauseAction", + "bases": [ + "PathBehaviorTemplate::Action", + "PropertyClass" + ], + "hash": 617271339, + "properties": { + "m_nPathID": { + "type": "gid", + "id": 0, + "offset": 72, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 858029316 + "hash": 214382368 }, - "m_positionX": { - "type": "float", - "id": 28, - "offset": 460, + "m_nNodeID": { + "type": "int", + "id": 1, + "offset": 80, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 837995844 + "hash": 152152635, + "enum_options": { + "__DEFAULT": 4294967295 + } }, - "m_positionY": { - "type": "float", - "id": 29, - "offset": 464, + "m_nPriority": { + "type": "int", + "id": 2, + "offset": 84, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 837995845 + "hash": 1515251530, + "enum_options": { + "__DEFAULT": 100 + } }, - "m_positionZ": { - "type": "float", - "id": 30, - "offset": 468, + "m_nChance": { + "type": "int", + "id": 3, + "offset": 88, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 837995846 + "hash": 1860748394, + "enum_options": { + "__DEFAULT": 50 + } }, - "m_unlockedPositionEnabled": { - "type": "bool", - "id": 31, - "offset": 472, + "m_fMinPauseTime": { + "type": "float", + "id": 4, + "offset": 96, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1129626952 - } - } - }, - "740787576": { - "name": "class BeneficialProximityBehaviorBase", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 740787576, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, + "hash": 388964206 + }, + "m_fMaxPauseTime": { + "type": "float", + "id": 5, + "offset": 100, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 + "hash": 347283632 } } }, - "1509762206": { - "name": "class PetStatsControl*", + "1474394067": { + "name": "class InventoryPageWindow", "bases": [ "Window", "PropertyClass" ], - "hash": 1509762206, + "hash": 1474394067, "properties": { "m_sName": { "type": "std::string", @@ -379090,7 +43680,7 @@ "type": "class SharedPointer", "id": 1, "offset": 112, - "flags": 65667, + "flags": 65671, "container": "Vector", "dynamic": true, "singleton": false, @@ -379288,3043 +43878,2596 @@ } } }, - "1889457752": { - "name": "class SharedPointer", + "1473969410": { + "name": "class SharedPointer", "bases": [ + "ControlText", + "Window", "PropertyClass" ], - "hash": 1889457752, + "hash": 1473969410, "properties": { - "m_balance": { - "type": "bool", + "m_sName": { + "type": "std::string", "id": 0, - "offset": 72, - "flags": 7, + "offset": 80, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 429321305 + "hash": 2306437263 }, - "m_death": { - "type": "bool", + "m_Children": { + "type": "class SharedPointer", "id": 1, - "offset": 73, - "flags": 7, - "container": "Static", - "dynamic": false, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 794256793 + "pointer": true, + "hash": 2621225959 }, - "m_fire": { - "type": "bool", + "m_Style": { + "type": "unsigned int", "id": 2, - "offset": 74, - "flags": 7, + "offset": 152, + "flags": 1048583, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 221862713 + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152, + "DO_NOT_WRAP": 134217728, + "FIT_TEXT": 268435456 + } }, - "m_ice": { - "type": "bool", + "m_Flags": { + "type": "unsigned int", "id": 3, - "offset": 75, - "flags": 7, + "offset": 156, + "flags": 1048583, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 269518980 + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } }, - "m_life": { - "type": "bool", + "m_Window": { + "type": "class Rect", "id": 4, - "offset": 76, - "flags": 7, + "offset": 160, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 222077939 + "hash": 3105139380 }, - "m_myth": { - "type": "bool", + "m_fTargetAlpha": { + "type": "float", "id": 5, - "offset": 77, - "flags": 7, + "offset": 212, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 222131765 + "hash": 1809129834 }, - "m_storm": { - "type": "bool", + "m_fDisabledAlpha": { + "type": "float", "id": 6, - "offset": 78, - "flags": 7, + "offset": 216, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 812599848 + "hash": 1389987675 }, - "m_astral": { - "type": "bool", + "m_fAlpha": { + "type": "float", "id": 7, - "offset": 79, - "flags": 7, + "offset": 208, + "flags": 65671, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 258319322 + "hash": 482130755 }, - "m_shadow": { - "type": "bool", + "m_pWindowStyle": { + "type": "class SharedPointer", "id": 8, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 949013689 - } - } - }, - "739063188": { - "name": "class KioskOption", - "bases": [ - "ServiceOptionBase", - "PropertyClass" - ], - "hash": 739063188, - "properties": { - "m_serviceName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, + "offset": 232, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 2206028813 + "pointer": true, + "hash": 3623628394 }, - "m_iconKey": { - "type": "std::string", - "id": 1, - "offset": 168, - "flags": 31, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2457138637 + "hash": 2102211316 }, - "m_displayKey": { + "m_sScript": { "type": "std::string", - "id": 2, - "offset": 104, - "flags": 31, + "id": 10, + "offset": 352, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3023276954 + "hash": 1846695875 }, - "m_serviceIndex": { - "type": "unsigned int", - "id": 3, - "offset": 204, - "flags": 31, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2103126710 + "hash": 3389835433 }, - "m_forceInteract": { - "type": "bool", - "id": 4, + "m_Scale": { + "type": "class Point", + "id": 12, "offset": 200, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1705789564 - } - } - }, - "1509072274": { - "name": "class AuctionTemplateIDList", - "bases": [ - "PropertyClass" - ], - "hash": 1509072274, - "properties": { - "m_templateIdList": { - "type": "gid", - "id": 0, - "offset": 72, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1466334173 - } - } - }, - "737880451": { - "name": "class ShadowSpellTrackingData", - "bases": [ - "PropertyClass" - ], - "hash": 737880451, - "properties": { - "m_pSpellEffect": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3446820733 - }, - "m_remainingTurns": { - "type": "int", - "id": 1, - "offset": 88, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1100057776 - } - } - }, - "1102935909": { - "name": "class UnlockTriggerBehaviorTemplate*", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 1102935909, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3130754092 + "hash": 2547159940 }, - "m_minimumGuildSize": { - "type": "int", - "id": 1, - "offset": 120, - "flags": 7, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1297669158 + "hash": 1513510520 }, - "m_reagent1ID": { - "type": "unsigned int", - "id": 2, - "offset": 124, - "flags": 7, - "container": "Static", - "dynamic": false, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 1834039377 + "hash": 2587533771 }, - "m_reagent1Number": { - "type": "unsigned int", - "id": 3, - "offset": 128, - "flags": 7, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 704125517 + "hash": 3091503757 }, - "m_reagent1Adjective": { - "type": "std::string", - "id": 4, - "offset": 136, - "flags": 7, + "m_sText": { + "type": "std::wstring", + "id": 16, + "offset": 584, + "flags": 4194439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1540526241 + "hash": 2102642960 }, - "m_reagent2ID": { - "type": "unsigned int", - "id": 5, - "offset": 168, - "flags": 7, + "m_sTooltip": { + "type": "std::wstring", + "id": 17, + "offset": 616, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1834040466 + "hash": 1680475798 }, - "m_reagent2Number": { - "type": "unsigned int", - "id": 6, - "offset": 172, - "flags": 7, + "m_bUseDropShadow": { + "type": "bool", + "id": 18, + "offset": 653, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1995593486 + "hash": 93063037 }, - "m_reagent2Adjective": { - "type": "std::string", - "id": 7, - "offset": 176, - "flags": 7, + "m_bUseOutline": { + "type": "bool", + "id": 19, + "offset": 654, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1608327618 + "hash": 744292994 }, - "m_reagent3ID": { - "type": "unsigned int", - "id": 8, - "offset": 208, - "flags": 7, + "m_bEnableWordWrap": { + "type": "bool", + "id": 20, + "offset": 655, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1834041555 + "hash": 430904562 }, - "m_reagent3Number": { - "type": "unsigned int", - "id": 9, - "offset": 212, - "flags": 7, + "m_bEnableToggle": { + "type": "bool", + "id": 21, + "offset": 652, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1139577807 + "hash": 1937994142 }, - "m_reagent3Adjective": { - "type": "std::string", - "id": 10, - "offset": 216, - "flags": 7, + "m_nLeadingAdjust": { + "type": "int", + "id": 22, + "offset": 656, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1676128995 + "hash": 1559480167 }, - "m_reagent4ID": { + "m_alertSeconds": { "type": "unsigned int", - "id": 11, - "offset": 248, + "id": 23, + "offset": 700, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1834042644 + "hash": 2220095860 }, - "m_reagent4Number": { + "m_alertSeconds2": { "type": "unsigned int", - "id": 12, - "offset": 252, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 283562128 - }, - "m_reagent4Adjective": { - "type": "std::string", - "id": 13, - "offset": 256, + "id": 24, + "offset": 704, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1743930372 + "hash": 2070944934 }, - "m_reagent5ID": { - "type": "unsigned int", - "id": 14, - "offset": 288, + "m_blinkRate": { + "type": "float", + "id": 25, + "offset": 708, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1834043733 - }, - "m_reagent5Number": { - "type": "unsigned int", - "id": 15, - "offset": 292, + "hash": 395499571 + } + } + }, + "617350649": { + "name": "class TempStartingPipEffectTemplate", + "bases": [ + "GameEffectTemplate", + "PropertyClass" + ], + "hash": 617350649, + "properties": { + "m_effectName": { + "type": "std::string", + "id": 0, + "offset": 72, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1575030097 + "hash": 2029161513 }, - "m_reagent5Adjective": { + "m_effectCategory": { "type": "std::string", - "id": 16, - "offset": 296, + "id": 1, + "offset": 104, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1811731749 + "hash": 1852673222 }, - "m_reagent6ID": { - "type": "unsigned int", - "id": 17, - "offset": 328, + "m_sortOrder": { + "type": "int", + "id": 2, + "offset": 148, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1834044822 + "hash": 1411218206 }, - "m_reagent6Number": { - "type": "unsigned int", - "id": 18, - "offset": 332, + "m_duration": { + "type": "double", + "id": 3, + "offset": 192, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 719014418 + "hash": 2727932435 }, - "m_reagent6Adjective": { + "m_stackingCategories": { "type": "std::string", - "id": 19, - "offset": 336, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1879533126 - }, - "m_requiredUnlockTriggerID": { - "type": "unsigned int", - "id": 20, - "offset": 368, + "id": 4, + "offset": 160, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 1012763195 + "hash": 1774497525 }, - "m_islandNumber": { - "type": "unsigned int", - "id": 21, - "offset": 372, + "m_isPersistent": { + "type": "bool", + "id": 5, + "offset": 153, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1882137233 + "hash": 923861920 }, - "m_unlockCantrip": { - "type": "std::string", - "id": 22, - "offset": 376, + "m_bIsOnPet": { + "type": "bool", + "id": 6, + "offset": 154, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2731256472 + "hash": 522593303 }, - "m_numberOfUnlockPlayers": { - "type": "int", - "id": 23, - "offset": 408, + "m_isPublic": { + "type": "bool", + "id": 7, + "offset": 152, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 855609764 + "hash": 1728439822 }, - "m_requiredUnlockDisplayName": { + "m_visualEffectAddName": { "type": "std::string", - "id": 24, - "offset": 416, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1551879295 - }, - "m_unlockedObjectID": { - "type": "unsigned int", - "id": 25, - "offset": 448, + "id": 8, + "offset": 200, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 322023750 + "hash": 3382086694 }, - "m_unlockedObjectYaw": { - "type": "float", - "id": 26, - "offset": 452, + "m_visualEffectRemoveName": { + "type": "std::string", + "id": 9, + "offset": 232, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1590408244 + "hash": 1541697323 }, - "m_unlockedYawEnabled": { - "type": "bool", - "id": 27, - "offset": 456, + "m_onAddFunctorName": { + "type": "std::string", + "id": 10, + "offset": 280, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 858029316 + "hash": 1561843107 }, - "m_positionX": { - "type": "float", - "id": 28, - "offset": 460, + "m_onRemoveFunctorName": { + "type": "std::string", + "id": 11, + "offset": 312, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 837995844 + "hash": 2559017864 }, - "m_positionY": { - "type": "float", - "id": 29, - "offset": 464, - "flags": 7, + "m_stackingRule": { + "type": "enum STACKING_RULE", + "id": 12, + "offset": 144, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 837995845 + "hash": 431568889, + "enum_options": { + "STACKING_ALLOWED": 0, + "STACKING_NOSTACK": 1, + "STACKING_REPLACE": 2 + } }, - "m_positionZ": { - "type": "float", - "id": 30, - "offset": 468, + "m_pipsGiven": { + "type": "int", + "id": 13, + "offset": 360, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 837995846 + "hash": 1346249167 }, - "m_unlockedPositionEnabled": { - "type": "bool", - "id": 31, - "offset": 472, + "m_powerPipsGiven": { + "type": "int", + "id": 14, + "offset": 364, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1129626952 + "hash": 377908508 } } }, - "1509070994": { - "name": "class AuctionTemplateIDList*", + "1902365406": { + "name": "class RateMyStitchBehaviorTemplate", "bases": [ + "BehaviorTemplate", "PropertyClass" ], - "hash": 1509070994, + "hash": 1902365406, "properties": { - "m_templateIdList": { - "type": "gid", + "m_behaviorName": { + "type": "std::string", "id": 0, "offset": 72, - "flags": 31, - "container": "List", - "dynamic": true, + "flags": 7, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 1466334173 + "hash": 3130754092 } } }, - "737421688": { - "name": "class PolymorphBattlegroundsBehavior*", + "1050755335": { + "name": "class DOTEffectTemplate*", "bases": [ - "BehaviorInstance", + "PulseEffectTemplate", + "GameEffectTemplate", "PropertyClass" ], - "hash": 737421688, + "hash": 1050755335, "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", + "m_effectName": { + "type": "std::string", "id": 0, - "offset": 104, - "flags": 39, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 + "hash": 2029161513 }, - "m_maxTempStartingPips": { - "type": "int", + "m_effectCategory": { + "type": "std::string", "id": 1, - "offset": 112, + "offset": 104, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 997576222 + "hash": 1852673222 }, - "m_maxTempStartingPowerPips": { + "m_sortOrder": { "type": "int", "id": 2, - "offset": 116, + "offset": 148, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 31848011 - } - } - }, - "1508972121": { - "name": "class SortedDirt*", - "bases": [ - "PropertyClass" - ], - "hash": 1508972121, - "properties": {} - }, - "1892173154": { - "name": "class DyeShopModifiers*", - "bases": [ - "PropertyClass" - ], - "hash": 1892173154, - "properties": { - "m_costFloorAdditive": { - "type": "int", - "id": 0, - "offset": 72, + "hash": 1411218206 + }, + "m_duration": { + "type": "double", + "id": 3, + "offset": 192, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1871158175 + "hash": 2727932435 }, - "m_multiplierTemplateCost": { - "type": "float", - "id": 1, - "offset": 76, + "m_stackingCategories": { + "type": "std::string", + "id": 4, + "offset": 160, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1774497525 + }, + "m_isPersistent": { + "type": "bool", + "id": 5, + "offset": 153, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1851711699 + "hash": 923861920 }, - "m_multiplierIfDropList": { - "type": "float", - "id": 2, - "offset": 80, + "m_bIsOnPet": { + "type": "bool", + "id": 6, + "offset": 154, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1310969758 + "hash": 522593303 }, - "m_multiplierIfDyeList": { - "type": "float", - "id": 3, - "offset": 84, + "m_isPublic": { + "type": "bool", + "id": 7, + "offset": 152, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 257956107 + "hash": 1728439822 }, - "m_petRenameCost": { - "type": "int", - "id": 4, - "offset": 88, + "m_visualEffectAddName": { + "type": "std::string", + "id": 8, + "offset": 200, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 136443668 - } - } - }, - "737252728": { - "name": "class PetGameMorphPartner*", - "bases": [ - "PropertyClass" - ], - "hash": 737252728, - "properties": { - "m_characterId": { - "type": "gid", - "id": 0, - "offset": 72, - "flags": 31, + "hash": 3382086694 + }, + "m_visualEffectRemoveName": { + "type": "std::string", + "id": 9, + "offset": 232, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 210498418 + "hash": 1541697323 }, - "m_pets": { - "type": "class SharedPointer", - "id": 1, - "offset": 80, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 521887012 - } - } - }, - "1102965775": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1102965775, - "properties": { - "m_guildName": { - "type": "unsigned int", - "id": 0, - "offset": 72, + "m_onAddFunctorName": { + "type": "std::string", + "id": 10, + "offset": 280, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 778026115 + "hash": 1561843107 }, - "m_guildNameLocale": { - "type": "int", - "id": 1, - "offset": 76, + "m_onRemoveFunctorName": { + "type": "std::string", + "id": 11, + "offset": 312, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 656991008 + "hash": 2559017864 }, - "m_categoryID": { - "type": "unsigned int", - "id": 2, - "offset": 80, - "flags": 7, + "m_stackingRule": { + "type": "enum STACKING_RULE", + "id": 12, + "offset": 144, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1382795736 + "hash": 431568889, + "enum_options": { + "STACKING_ALLOWED": 0, + "STACKING_NOSTACK": 1, + "STACKING_REPLACE": 2 + } }, - "m_time": { - "type": "unsigned int", - "id": 3, - "offset": 84, + "m_pulsePeriod": { + "type": "double", + "id": 13, + "offset": 360, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 431286940 + "hash": 3960618585 }, - "m_count": { - "type": "unsigned int", - "id": 4, - "offset": 88, + "m_pulseEventName": { + "type": "std::string", + "id": 14, + "offset": 368, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1002373110 - } - } - }, - "1891038816": { - "name": "class AnnounceSpellTextCinematicAction", - "bases": [ - "CinematicAction", - "PropertyClass" - ], - "hash": 1891038816, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, + "hash": 1858926599 + }, + "m_statName": { + "type": "std::string", + "id": 15, + "offset": 408, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 + "hash": 1866211576 }, - "m_spellText": { + "m_statMaxName": { "type": "std::string", - "id": 1, - "offset": 80, + "id": 16, + "offset": 440, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2688705600 - } - } - }, - "1890933267": { - "name": "class CollisionBehavior*", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1890933267, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, + "hash": 3164833118 + }, + "m_damage": { + "type": "int", + "id": 17, + "offset": 472, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 + "hash": 351627865 } } }, - "1889885615": { - "name": "class RealmInfo", + "1474093569": { + "name": "class CombatPetXPEffectTemplate*", "bases": [ + "GameEffectTemplate", "PropertyClass" ], - "hash": 1889885615, + "hash": 1474093569, "properties": { - "m_realmName": { + "m_effectName": { "type": "std::string", "id": 0, "offset": 72, - "flags": 31, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3507983949 + "hash": 2029161513 }, - "m_displayName": { - "type": "std::wstring", + "m_effectCategory": { + "type": "std::string", "id": 1, "offset": 104, - "flags": 31, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2242885711 + "hash": 1852673222 }, - "m_realmPopulation": { + "m_sortOrder": { "type": "int", "id": 2, - "offset": 136, - "flags": 31, + "offset": 148, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1904140438 - } - } - }, - "737470959": { - "name": "class SharedPointer", - "bases": [ - "AutobotManager", - "PropertyClass" - ], - "hash": 737470959, - "properties": {} - }, - "1104540968": { - "name": "class TalentInfo", - "bases": [ - "PropertyClass" - ], - "hash": 1104540968, - "properties": { - "m_combatTalents": { - "type": "unsigned int", - "id": 0, - "offset": 72, + "hash": 1411218206 + }, + "m_duration": { + "type": "double", + "id": 3, + "offset": 192, "flags": 7, - "container": "List", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 1157727646 + "hash": 2727932435 }, - "m_derbyTalents": { - "type": "unsigned int", - "id": 1, - "offset": 88, + "m_stackingCategories": { + "type": "std::string", + "id": 4, + "offset": 160, "flags": 7, "container": "List", "dynamic": true, "singleton": false, "pointer": false, - "hash": 1072926942 - } - } - }, - "1509372456": { - "name": "class WizShoppingOption", - "bases": [ - "ServiceOptionBase", - "PropertyClass" - ], - "hash": 1509372456, - "properties": { - "m_serviceName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, + "hash": 1774497525 + }, + "m_isPersistent": { + "type": "bool", + "id": 5, + "offset": 153, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2206028813 + "hash": 923861920 }, - "m_iconKey": { - "type": "std::string", - "id": 1, - "offset": 168, - "flags": 31, + "m_bIsOnPet": { + "type": "bool", + "id": 6, + "offset": 154, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2457138637 + "hash": 522593303 }, - "m_displayKey": { - "type": "std::string", - "id": 2, - "offset": 104, - "flags": 31, + "m_isPublic": { + "type": "bool", + "id": 7, + "offset": 152, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3023276954 + "hash": 1728439822 }, - "m_serviceIndex": { - "type": "unsigned int", - "id": 3, - "offset": 204, - "flags": 31, + "m_visualEffectAddName": { + "type": "std::string", + "id": 8, + "offset": 200, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2103126710 + "hash": 3382086694 }, - "m_forceInteract": { - "type": "bool", - "id": 4, - "offset": 200, - "flags": 31, + "m_visualEffectRemoveName": { + "type": "std::string", + "id": 9, + "offset": 232, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1705789564 - } - } - }, - "1103494125": { - "name": "class SharedPointer", - "bases": [ - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 1103494125, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, + "hash": 1541697323 + }, + "m_onAddFunctorName": { + "type": "std::string", + "id": 10, + "offset": 280, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 + "hash": 1561843107 }, - "m_actor": { + "m_onRemoveFunctorName": { "type": "std::string", - "id": 1, - "offset": 80, + "id": 11, + "offset": 312, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2285866132 + "hash": 2559017864 }, - "m_newActorName": { + "m_stackingRule": { + "type": "enum STACKING_RULE", + "id": 12, + "offset": 144, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 431568889, + "enum_options": { + "STACKING_ALLOWED": 0, + "STACKING_NOSTACK": 1, + "STACKING_REPLACE": 2 + } + }, + "m_lootTableName": { "type": "std::string", - "id": 2, - "offset": 120, + "id": 13, + "offset": 360, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2029131039 + "hash": 2333333378 } } }, - "1103483912": { - "name": "class SharedPointer", + "1050674175": { + "name": "class SharedPointer", "bases": [ + "SpellTemplate", + "CoreTemplate", "PropertyClass" ], - "hash": 1103483912, + "hash": 1050674175, "properties": { - "m_gameObjectTemplateID": { - "type": "unsigned int", + "m_behaviors": { + "type": "class BehaviorTemplate*", "id": 0, "offset": 72, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "Vector", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 1154586887, - "enum_options": { - "__DEFAULT": 0 - } + "pointer": true, + "hash": 1197808594 }, - "m_positionXY": { - "type": "unsigned int", + "m_name": { + "type": "std::string", "id": 1, - "offset": 76, + "offset": 96, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1263476723, - "enum_options": { - "__DEFAULT": 0 - } + "hash": 1717359772 }, - "m_positionZ": { - "type": "float", + "m_description": { + "type": "std::string", "id": 2, - "offset": 80, - "flags": 7, + "offset": 168, + "flags": 8388615, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 837995846, - "enum_options": { - "__DEFAULT": 0 - } + "hash": 1649374815 }, - "m_yaw": { - "type": "unsigned char", + "m_advancedDescription": { + "type": "std::string", "id": 3, - "offset": 84, - "flags": 7, + "offset": 200, + "flags": 8388615, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 904654625, - "enum_options": { - "__DEFAULT": 0 - } + "hash": 3465713013 }, - "m_extraData1": { - "type": "unsigned int", + "m_displayName": { + "type": "std::string", "id": 4, - "offset": 88, - "flags": 7, + "offset": 136, + "flags": 8388615, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 693220060, - "enum_options": { - "__DEFAULT": 0 - } - } - } - }, - "1509627481": { - "name": "class SortedDirt", - "bases": [ - "PropertyClass" - ], - "hash": 1509627481, - "properties": {} - }, - "1891016911": { - "name": "class TutorialLogBehavior", - "bases": [ - "TutorialLogBehaviorBase", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1891016911, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, + "hash": 2446900370 + }, + "m_spellBase": { + "type": "std::string", + "id": 5, + "offset": 248, + "flags": 268435463, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 + "hash": 2688054198, + "enum_options": { + "__BASECLASS": "CinematicTemplate" + } }, - "m_tutorialTipData": { + "m_effects": { + "type": "class SharedPointer", + "id": 6, + "offset": 280, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 370726379 + }, + "m_sMagicSchoolName": { "type": "std::string", - "id": 1, - "offset": 128, - "flags": 551, + "id": 7, + "offset": 312, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3119782422 - } - } - }, - "738686112": { - "name": "class SharedPointer", - "bases": [ - "LootInfo", - "LootInfoBase", - "PropertyClass" - ], - "hash": 738686112, - "properties": { - "m_lootType": { - "type": "enum LootInfo::LOOT_TYPE", - "id": 0, - "offset": 72, - "flags": 2097183, + "hash": 2035693400 + }, + "m_sTypeName": { + "type": "std::string", + "id": 8, + "offset": 352, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1591891442, - "enum_options": { - "LOOT_TYPE_NONE": 0, - "LOOT_TYPE_GOLD": 1, - "LOOT_TYPE_MANA": 2, - "LOOT_TYPE_ITEM": 3, - "LOOT_TYPE_TREASURE_CARD": 4, - "LOOT_TYPE_MAGIC_XP": 5, - "LOOT_TYPE_ADD_SPELL": 6, - "LOOT_TYPE_MAX_HEALTH": 7, - "LOOT_TYPE_MAX_GOLD": 8, - "LOOT_TYPE_MAX_MANA": 9, - "LOOT_TYPE_MAX_POTION": 10, - "LOOT_TYPE_TRAINING_POINTS": 11, - "LOOT_TYPE_RECIPE": 12, - "LOOT_TYPE_CRAFTING_SLOT": 13, - "LOOT_TYPE_REAGENT": 14, - "LOOT_TYPE_PETSNACK": 15, - "LOOT_TYPE_GARDENING_XP": 16, - "LOOT_TYPE_PET_XP": 17, - "LOOT_TYPE_TREASURE_TABLE": 18, - "LOOT_TYPE_ARENA_POINTS": 19, - "LOOT_TYPE_ARENA_BONUS_POINTS": 20, - "LOOT_TYPE_GROUP": 21, - "LOOT_TYPE_FISHING_XP": 22, - "LOOT_TYPE_EVENT_CURRENCY_1": 24, - "LOOT_TYPE_EVENT_CURRENCY_2": 25, - "LOOT_TYPE_PVP_CURRENCY": 26, - "LOOT_TYPE_PVP_CURRENCY_BONUS": 27, - "LOOT_TYPE_PVP_TOURNEY_CURRENCY": 28, - "LOOT_TYPE_PVP_TOURNEY_CURRENCY_BONUS": 29, - "LOOT_TYPE_FURNITURE_ESSENCE": 30 - } + "hash": 3580785905 }, - "m_statModifierSet": { - "type": "class PetStatModificationSet", - "id": 1, - "offset": 80, - "flags": 31, + "m_trainingCost": { + "type": "int", + "id": 9, + "offset": 384, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2182942670 + "hash": 982588239 }, - "m_leveledUp": { - "type": "bool", - "id": 2, - "offset": 264, - "flags": 31, + "m_accuracy": { + "type": "int", + "id": 10, + "offset": 388, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2101027993 + "hash": 1636315493 }, - "m_lastTalentGiven": { - "type": "unsigned int", - "id": 3, - "offset": 268, - "flags": 31, + "m_baseCost": { + "type": "int", + "id": 11, + "offset": 232, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2315681826 + "hash": 1475151502 }, - "m_lastPowerGiven": { - "type": "unsigned int", - "id": 4, - "offset": 272, - "flags": 31, + "m_creditsCost": { + "type": "int", + "id": 12, + "offset": 236, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 398209479 + "hash": 715313825 }, - "m_lastJewelGiven": { - "type": "unsigned int", - "id": 5, - "offset": 276, - "flags": 31, + "m_pvpCurrencyCost": { + "type": "int", + "id": 13, + "offset": 240, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1688300849 - } - } - }, - "737996094": { - "name": "class WizMinigameOffering", - "bases": [ - "PropertyClass" - ], - "hash": 737996094, - "properties": {} - }, - "1510254752": { - "name": "class std::list >", - "bases": [], - "hash": 1510254752, - "properties": {} - }, - "1891048760": { - "name": "class HousingGameInterface", - "bases": [ - "PropertyClass" - ], - "hash": 1891048760, - "properties": {} - }, - "1105196328": { - "name": "class TalentInfo*", - "bases": [ - "PropertyClass" - ], - "hash": 1105196328, - "properties": { - "m_combatTalents": { - "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1157727646 + "hash": 645595444 }, - "m_derbyTalents": { - "type": "unsigned int", - "id": 1, - "offset": 88, + "m_pvpTourneyCurrencyCost": { + "type": "int", + "id": 14, + "offset": 244, "flags": 7, - "container": "List", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 1072926942 - } - } - }, - "1509765278": { - "name": "class PetStatsControl", - "bases": [ - "Window", - "PropertyClass" - ], - "hash": 1509765278, - "properties": { - "m_sName": { + "hash": 517874954 + }, + "m_boosterPackIcon": { "type": "std::string", - "id": 0, - "offset": 80, - "flags": 135, + "id": 15, + "offset": 496, + "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2306437263 + "hash": 3428653697 }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 65667, - "container": "Vector", + "m_validTargetSpells": { + "type": "unsigned int", + "id": 16, + "offset": 392, + "flags": 7, + "container": "List", "dynamic": true, "singleton": false, - "pointer": true, - "hash": 2621225959 + "pointer": false, + "hash": 2355782967 }, - "m_Style": { - "type": "unsigned int", - "id": 2, - "offset": 152, - "flags": 1048583, + "m_PvP": { + "type": "bool", + "id": 17, + "offset": 408, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "SCALE_CHILDREN": 2, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "FOCUS_LOCKED": 64, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152 - } + "hash": 269492361 }, - "m_Flags": { - "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 1048583, + "m_PvE": { + "type": "bool", + "id": 18, + "offset": 409, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } + "hash": 269492350 }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, - "flags": 135, + "m_noPvPEnchant": { + "type": "bool", + "id": 19, + "offset": 410, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3105139380 + "hash": 661581703 }, - "m_fTargetAlpha": { - "type": "float", - "id": 5, - "offset": 212, - "flags": 135, + "m_noPvEEnchant": { + "type": "bool", + "id": 20, + "offset": 411, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1809129834 + "hash": 10144220 }, - "m_fDisabledAlpha": { - "type": "float", - "id": 6, - "offset": 216, - "flags": 135, + "m_battlegroundsOnly": { + "type": "bool", + "id": 21, + "offset": 412, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1389987675 + "hash": 1244782419 }, - "m_fAlpha": { - "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, + "m_Treasure": { + "type": "bool", + "id": 22, + "offset": 413, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 482130755 + "hash": 1749096414 }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, + "m_noDiscard": { + "type": "bool", + "id": 23, + "offset": 414, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3623628394 + "pointer": false, + "hash": 565749226 }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, + "m_leavesPlayWhenCast": { + "type": "bool", + "id": 24, + "offset": 532, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2102211316 + "hash": 698216294 }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, + "m_imageIndex": { + "type": "int", + "id": 25, + "offset": 416, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1846695875 + "hash": 1570500405 }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, + "m_imageName": { + "type": "std::string", + "id": 26, + "offset": 424, + "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3389835433 + "hash": 2391520543 }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, + "m_cloaked": { + "type": "bool", + "id": 27, + "offset": 489, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2547159940 + "hash": 7349510 }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, + "m_casterInvisible": { + "type": "bool", + "id": 28, + "offset": 490, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1513510520 + "hash": 310214650 }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, + "m_adjectives": { + "type": "std::string", + "id": 29, + "offset": 576, + "flags": 7, "container": "List", "dynamic": true, "singleton": false, "pointer": false, - "hash": 2587533771 + "hash": 2967855037 }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, + "m_spellSourceType": { + "type": "enum SpellTemplate::kSpellSourceType", + "id": 30, + "offset": 528, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3091503757 - } - } - }, - "1891048736": { - "name": "class HousingGameInterface*", - "bases": [ - "PropertyClass" - ], - "hash": 1891048736, - "properties": {} - }, - "738789728": { - "name": "class ReqClearHatchingSlot*", - "bases": [ - "Requirement", - "PropertyClass" - ], - "hash": 738789728, - "properties": { - "m_applyNOT": { - "type": "bool", - "id": 0, - "offset": 72, - "flags": 31, + "hash": 156272727, + "enum_options": { + "kCaster": 0, + "kPet": 1, + "kShadowCreature": 2, + "kWeapon": 3, + "kEquipment": 4 + } + }, + "m_cloakedName": { + "type": "std::string", + "id": 31, + "offset": 536, + "flags": 268435463, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1746328074, + "hash": 2846679215, "enum_options": { - "__DEFAULT": 0 + "__BASECLASS": "SpellTemplate" } }, - "m_operator": { - "type": "enum Requirement::Operator", - "id": 1, - "offset": 76, - "flags": 2097183, + "m_purchaseRequirements": { + "type": "class RequirementList*", + "id": 32, + "offset": 608, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 2672792317, - "enum_options": { - "ROP_AND": 0, - "ROP_OR": 1, - "__DEFAULT": "ROP_AND" - } - } - } - }, - "1104623312": { - "name": "class SharedPointer", - "bases": [ - "ItemLootInfo", - "LootInfo", - "LootInfoBase", - "PropertyClass" - ], - "hash": 1104623312, - "properties": { - "m_lootType": { - "type": "enum LootInfo::LOOT_TYPE", - "id": 0, - "offset": 72, - "flags": 2097183, + "pointer": true, + "hash": 3174641793 + }, + "m_displayRequirements": { + "type": "class RequirementList*", + "id": 33, + "offset": 840, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1591891442, - "enum_options": { - "LOOT_TYPE_NONE": 0, - "LOOT_TYPE_GOLD": 1, - "LOOT_TYPE_MANA": 2, - "LOOT_TYPE_ITEM": 3, - "LOOT_TYPE_TREASURE_CARD": 4, - "LOOT_TYPE_MAGIC_XP": 5, - "LOOT_TYPE_ADD_SPELL": 6, - "LOOT_TYPE_MAX_HEALTH": 7, - "LOOT_TYPE_MAX_GOLD": 8, - "LOOT_TYPE_MAX_MANA": 9, - "LOOT_TYPE_MAX_POTION": 10, - "LOOT_TYPE_TRAINING_POINTS": 11, - "LOOT_TYPE_RECIPE": 12, - "LOOT_TYPE_CRAFTING_SLOT": 13, - "LOOT_TYPE_REAGENT": 14, - "LOOT_TYPE_PETSNACK": 15, - "LOOT_TYPE_GARDENING_XP": 16, - "LOOT_TYPE_PET_XP": 17, - "LOOT_TYPE_TREASURE_TABLE": 18, - "LOOT_TYPE_ARENA_POINTS": 19, - "LOOT_TYPE_ARENA_BONUS_POINTS": 20, - "LOOT_TYPE_GROUP": 21, - "LOOT_TYPE_FISHING_XP": 22, - "LOOT_TYPE_EVENT_CURRENCY_1": 24, - "LOOT_TYPE_EVENT_CURRENCY_2": 25, - "LOOT_TYPE_PVP_CURRENCY": 26, - "LOOT_TYPE_PVP_CURRENCY_BONUS": 27, - "LOOT_TYPE_PVP_TOURNEY_CURRENCY": 28, - "LOOT_TYPE_PVP_TOURNEY_CURRENCY_BONUS": 29, - "LOOT_TYPE_FURNITURE_ESSENCE": 30 - } + "pointer": true, + "hash": 3646782876 }, - "m_itemID": { - "type": "gid", - "id": 1, - "offset": 88, - "flags": 33554463, + "m_descriptionTrainer": { + "type": "std::string", + "id": 34, + "offset": 616, + "flags": 8388871, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 569545460 + "hash": 1756093908 }, - "m_numItems": { - "type": "int", - "id": 2, - "offset": 96, - "flags": 31, + "m_descriptionCombatHUD": { + "type": "std::string", + "id": 35, + "offset": 648, + "flags": 8388871, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1588646284 - } - } - }, - "738789752": { - "name": "class ReqClearHatchingSlot", - "bases": [ - "Requirement", - "PropertyClass" - ], - "hash": 738789752, - "properties": { - "m_applyNOT": { - "type": "bool", - "id": 0, - "offset": 72, - "flags": 31, + "hash": 1631478006 + }, + "m_displayIndex": { + "type": "int", + "id": 36, + "offset": 680, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1746328074, - "enum_options": { - "__DEFAULT": 0 - } + "hash": 1250551048 }, - "m_operator": { - "type": "enum Requirement::Operator", - "id": 1, - "offset": 76, - "flags": 2097183, + "m_hiddenFromEffectsWindow": { + "type": "bool", + "id": 37, + "offset": 684, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2672792317, - "enum_options": { - "ROP_AND": 0, - "ROP_OR": 1, - "__DEFAULT": "ROP_AND" - } - } - } - }, - "1510341560": { - "name": "enum SeedSize", - "bases": [], - "hash": 1510341560, - "properties": {} - }, - "1891096380": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1891096380, - "properties": { - "m_itemID": { - "type": "gid", - "id": 0, - "offset": 72, - "flags": 31, + "hash": 1832736331 + }, + "m_ignoreCharms": { + "type": "bool", + "id": 38, + "offset": 685, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 569545460 + "hash": 1840075893 }, - "m_itemSlotNameID": { - "type": "unsigned int", - "id": 1, - "offset": 80, - "flags": 31, + "m_alwaysFizzle": { + "type": "bool", + "id": 39, + "offset": 686, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1951735276 - } - } - }, - "1105301114": { - "name": "class ClientCastEffectCinematicAction", - "bases": [ - "CastEffectCinematicAction", - "BaseEffectCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 1105301114, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, + "hash": 2030988856 + }, + "m_spellCategory": { + "type": "std::string", + "id": 40, + "offset": 688, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 + "hash": 2472376729 }, - "m_effectRel": { - "type": "enum BaseEffectCinematicAction::kEffectRelative", - "id": 1, - "offset": 80, - "flags": 2097159, + "m_showPolymorphedName": { + "type": "bool", + "id": 41, + "offset": 720, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2978921287, - "enum_options": { - "kNone": 0, - "kSigil": 1, - "kTarget": 2, - "kSource": 3, - "kActor": 4 - } + "hash": 2097929096 }, - "m_namedActor": { - "type": "std::string", - "id": 2, - "offset": 88, - "flags": 7, + "m_skipTruncation": { + "type": "bool", + "id": 42, + "offset": 721, + "flags": 263, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3413532537 - } - } - }, - "1511448627": { - "name": "class CombatTriggerDescription", - "bases": [ - "PropertyClass" - ], - "hash": 1511448627, - "properties": { - "m_description": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 8388615, + "hash": 1838335249 + }, + "m_maxCopies": { + "type": "unsigned int", + "id": 43, + "offset": 724, + "flags": 263, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1649374815 + "hash": 403022326 }, - "m_displaySpellName": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 268435463, + "m_levelRestriction": { + "type": "int", + "id": 44, + "offset": 728, + "flags": 263, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3323484466, - "enum_options": { - "__BASECLASS": "SpellTemplate" - } - } - } - }, - "739387287": { - "name": "class DeckListControl", - "bases": [ - "Window", - "PropertyClass" - ], - "hash": 739387287, - "properties": { - "m_sName": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 135, + "hash": 176502472 + }, + "m_delayEnchantment": { + "type": "bool", + "id": 45, + "offset": 732, + "flags": 287, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2306437263 - }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621225959 + "hash": 191336919 }, - "m_Style": { - "type": "unsigned int", - "id": 2, - "offset": 152, - "flags": 1048583, + "m_delayEnchantmentOrder": { + "type": "enum SpellEffect::kDelayOrder", + "id": 46, + "offset": 736, + "flags": 287, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 983582334, + "hash": 2526055263, "enum_options": { - "HAS_BACK": 1, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152, - "DLC_SPELLTIP": 16777216, - "DLC_SELECT": 33554432 + "SpellEffect::kAnyOrder": 0, + "SpellEffect::kFirst": 1, + "SpellEffect::kSecond": 2 } }, - "m_Flags": { - "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 1048583, + "m_previousSpellName": { + "type": "std::string", + "id": 47, + "offset": 744, + "flags": 268435463, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 967851578, + "hash": 2903322585, "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 + "__BASECLASS": "SpellTemplate" } }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, - "flags": 135, + "m_cardFront": { + "type": "std::string", + "id": 48, + "offset": 456, + "flags": 131359, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3105139380 + "hash": 3557598526 }, - "m_fTargetAlpha": { - "type": "float", - "id": 5, - "offset": 212, - "flags": 135, + "m_useGloss": { + "type": "bool", + "id": 49, + "offset": 488, + "flags": 287, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1809129834 + "hash": 668817544 }, - "m_fDisabledAlpha": { - "type": "float", - "id": 6, - "offset": 216, - "flags": 135, + "m_ignoreDispel": { + "type": "bool", + "id": 50, + "offset": 776, + "flags": 287, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1389987675 + "hash": 1881041624 }, - "m_fAlpha": { - "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, + "m_backRowFriendly": { + "type": "bool", + "id": 51, + "offset": 777, + "flags": 287, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 482130755 + "hash": 501584377 }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, + "m_spellRank": { + "type": "class SharedPointer", + "id": 52, + "offset": 784, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": true, - "hash": 3623628394 + "hash": 3152361374 }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, + "m_secondarySchoolName": { + "type": "std::string", + "id": 53, + "offset": 800, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2102211316 + "hash": 1803268236 }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, + "m_spellFusion": { + "type": "unsigned int", + "id": 54, + "offset": 836, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1846695875 + "hash": 1658928321 }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, + "m_requiredSchoolName": { + "type": "std::string", + "id": 55, + "offset": 848, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3389835433 + "hash": 3576058981 }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, + "m_gardenSpellType": { + "type": "enum GardenSpellTemplate::GardenSpellType", + "id": 56, + "offset": 880, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2547159940 + "hash": 3204656351, + "enum_options": { + "GS_SoilPreparation": 0, + "GS_Growing": 1, + "GS_InsectFighting": 2, + "GS_PlantProtection": 3, + "GS_PlantUtility": 4 + } }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, + "m_animationKFM": { + "type": "std::string", + "id": 57, + "offset": 888, + "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1513510520 + "hash": 2466280761 }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, + "m_animationName": { + "type": "std::string", + "id": 58, + "offset": 920, + "flags": 7, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 2587533771 + "hash": 3393414044 }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, + "m_soundEffectName": { + "type": "std::string", + "id": 59, + "offset": 1016, + "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3091503757 + "hash": 3235436082 }, - "m_cardSize": { - "type": "class Size", - "id": 16, - "offset": 676, + "m_soilTemplateID": { + "type": "unsigned int", + "id": 60, + "offset": 1048, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1135567057 + "hash": 2225235405 }, - "m_spacing": { - "type": "int", - "id": 17, - "offset": 684, + "m_providesWater": { + "type": "bool", + "id": 61, + "offset": 1052, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1481011679 + "hash": 1403713858 }, - "m_verticalSpacingAdjust": { - "type": "int", - "id": 18, - "offset": 688, + "m_providesSun": { + "type": "bool", + "id": 62, + "offset": 1053, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2069000644 + "hash": 1942306581 }, - "m_slotImage": { - "type": "class SharedPointer", - "id": 19, - "offset": 616, + "m_providesPollination": { + "type": "bool", + "id": 63, + "offset": 1054, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2088856988 + "pointer": false, + "hash": 443775752 }, - "m_treasureFrame": { - "type": "int", - "id": 20, - "offset": 632, + "m_providesMagic": { + "type": "bool", + "id": 64, + "offset": 1055, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 178393840 - } - } - }, - "1893497990": { - "name": "class CastleMagicTutorialWindow*", - "bases": [ - "PropertyClass" - ], - "hash": 1893497990, - "properties": {} - }, - "739220943": { - "name": "class CSRSpellList", - "bases": [ - "Window", - "PropertyClass" - ], - "hash": 739220943, - "properties": { - "m_sName": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 135, + "hash": 1391840608 + }, + "m_providesMusic": { + "type": "bool", + "id": 65, + "offset": 1056, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2306437263 - }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621225959 + "hash": 1392572416 }, - "m_Style": { - "type": "unsigned int", - "id": 2, - "offset": 152, - "flags": 1048583, + "m_bugZapLevel": { + "type": "int", + "id": 66, + "offset": 1060, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "SCALE_CHILDREN": 2, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "FOCUS_LOCKED": 64, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152 - } + "hash": 1811340955 }, - "m_Flags": { + "m_protectionTemplateID": { "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 1048583, + "id": 67, + "offset": 1064, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } + "hash": 280411517 }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, - "flags": 135, + "m_soundEffectGain": { + "type": "float", + "id": 68, + "offset": 1068, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3105139380 + "hash": 1827685932, + "enum_options": { + "__DEFAULT": "1.0" + } }, - "m_fTargetAlpha": { - "type": "float", - "id": 5, - "offset": 212, - "flags": 135, + "m_utilitySpellType": { + "type": "enum GardenSpellTemplate::UtilitySpellType", + "id": 69, + "offset": 1072, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1809129834 + "hash": 1635978289, + "enum_options": { + "US_None": 0, + "US_Zap": 1, + "US_Revive": 2, + "US_Inspect": 3, + "US_Stasis": 4, + "US_PlowAll": 5, + "US_PlantAll": 6, + "US_HarvestNow": 7 + } }, - "m_fDisabledAlpha": { - "type": "float", - "id": 6, - "offset": 216, - "flags": 135, + "m_affectedRadius": { + "type": "int", + "id": 70, + "offset": 1076, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1389987675 + "hash": 540739476 }, - "m_fAlpha": { + "m_yOffset": { "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, + "id": 71, + "offset": 1080, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 482130755 - }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3623628394 + "hash": 1592149751 }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, + "m_energyCost": { + "type": "int", + "id": 72, + "offset": 1084, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2102211316 + "hash": 1236111677 }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, + "m_gardenSpellImageIndex": { + "type": "int", + "id": 73, + "offset": 1088, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1846695875 + "hash": 721561158 }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, + "m_gardenSpellImageName": { + "type": "std::string", + "id": 74, + "offset": 1096, + "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3389835433 + "hash": 3146698256 }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, + "m_animationNameSmall": { + "type": "std::string", + "id": 75, + "offset": 952, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2547159940 + "hash": 2904009973 }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, + "m_animationNameLarge": { + "type": "std::string", + "id": 76, + "offset": 984, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, + "hash": 2895295623 + } + } + }, + "619552454": { + "name": "class TeamHelpUpdateSigilInfoList*", + "bases": [ + "PropertyClass" + ], + "hash": 619552454, + "properties": { + "m_sigilInfoList": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 7, "container": "List", "dynamic": true, "singleton": false, - "pointer": false, - "hash": 2587533771 - }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3091503757 + "pointer": true, + "hash": 2125475193 } } }, - "1116000783": { - "name": "class GameEffectBase*", + "1905448179": { + "name": "class SharedPointer", "bases": [ + "CameraFadeCinematicAction", + "CinematicAction", "PropertyClass" ], - "hash": 1116000783, + "hash": 1905448179, "properties": { - "m_currentTickCount": { - "type": "double", + "m_timeOffset": { + "type": "float", "id": 0, - "offset": 80, - "flags": 63, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2533274692 + "hash": 2237098605 }, - "m_effectNameID": { - "type": "unsigned int", + "m_fDuration": { + "type": "float", "id": 1, - "offset": 96, - "flags": 63, + "offset": 80, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1204067144 + "hash": 598255075 }, - "m_bIsOnPet": { + "m_bCycle": { "type": "bool", "id": 2, - "offset": 73, - "flags": 31, + "offset": 84, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 522593303 + "hash": 240694213 }, - "m_originatorID": { - "type": "gid", + "m_bFadeIn": { + "type": "bool", "id": 3, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1131810019 - }, - "m_itemSlotID": { - "type": "unsigned int", - "id": 4, - "offset": 112, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1895747595 - }, - "m_internalID": { - "type": "int", - "id": 5, - "offset": 92, - "flags": 63, + "offset": 85, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1643137924 - }, - "m_endTime": { - "type": "unsigned int", - "id": 6, - "offset": 88, - "flags": 31, + "hash": 1507201372 + } + } + }, + "619155095": { + "name": "class GardeningBehaviorTemplate*", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 619155095, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 716479635 + "hash": 3130754092 } } }, - "1893235164": { - "name": "class Material*", + "1904093924": { + "name": "class SharedPointer", "bases": [ + "PositionalSoundBehavior", + "SoundBehavior", + "AreaBehavior", + "BehaviorInstance", "PropertyClass" ], - "hash": 1893235164, + "hash": 1904093924, "properties": { - "m_sMaterialName": { - "type": "std::wstring", + "m_behaviorTemplateNameID": { + "type": "unsigned int", "id": 0, - "offset": 72, - "flags": 135, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1299185467 + "hash": 223437287 }, - "m_Blending": { - "type": "enum Material::Blending", + "m_radius": { + "type": "float", "id": 1, "offset": 116, - "flags": 2097159, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3003693822, - "enum_options": { - "B_NONE": 0, - "B_ADDITIVE": 1, - "B_ALPHA": 2, - "B_ALPHA_INV": 3, - "B_ADDITIVE_INV": 4, - "__DEFAULT": "B_ALPHA" - } + "hash": 989410271 }, - "m_eRepeat": { - "type": "enum Material::Repeating", + "m_category": { + "type": "enum AudioCategory", "id": 2, - "offset": 176, + "offset": 124, "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3302018843, + "hash": 2951251982, "enum_options": { - "R_NONE": 0, - "R_REPEAT": 1 + "AudioCategory_Irrelevent": 0, + "AudioCategory_Accoustic": 1, + "AudioCategory_Noise": 2, + "AudioCategory_Music": 3 } }, - "m_pDiffuseMap": { - "type": "class SharedPointer", + "m_exclusive": { + "type": "bool", "id": 3, - "offset": 120, - "flags": 135, + "offset": 128, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 4008975679 + "pointer": false, + "hash": 824383403 }, - "m_pAlphaMask": { - "type": "class SharedPointer", + "m_playList": { + "type": "class PlayList", "id": 4, - "offset": 136, - "flags": 135, + "offset": 176, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3411451405 + "pointer": false, + "hash": 2061221957 }, - "m_fLastAlpha": { + "m_volume": { "type": "float", "id": 5, - "offset": 152, - "flags": 135, + "offset": 304, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 284727287 + "hash": 1162855023 }, - "m_Diffuse": { - "type": "class Color", + "m_loopCount": { + "type": "int", "id": 6, - "offset": 156, - "flags": 262279, + "offset": 308, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1644364836 + "hash": 865634717 }, - "m_Ambient": { - "type": "class Color", + "m_minimumFalloff": { + "type": "float", "id": 7, - "offset": 160, - "flags": 262279, + "offset": 328, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2216816350 + "hash": 355697197 }, - "m_Specular": { - "type": "class Color", + "m_maximumFalloff": { + "type": "float", "id": 8, - "offset": 168, - "flags": 262279, + "offset": 332, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2645528957 + "hash": 2210192367 }, - "m_fSpecularPower": { - "type": "float", + "m_animDriven": { + "type": "bool", "id": 9, - "offset": 172, - "flags": 135, + "offset": 392, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 539146057 + "hash": 398394720 }, - "m_Frames": { - "type": "class Rect", + "m_inverted": { + "type": "bool", "id": 10, - "offset": 192, - "flags": 65671, - "container": "Vector", - "dynamic": true, + "offset": 397, + "flags": 7, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 3064301836 + "hash": 1034821044 }, - "m_nCurrentFrame": { - "type": "int", + "m_fRangeScale": { + "type": "float", "id": 11, - "offset": 216, - "flags": 135, + "offset": 512, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 45308854 + "hash": 1749294034 }, - "m_fAnimRate": { + "m_fAttenuationFactor": { "type": "float", "id": 12, - "offset": 228, - "flags": 135, + "offset": 516, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 802385934 + "hash": 273292776 }, - "m_nAnimBegin": { - "type": "int", + "m_eAttenuationType": { + "type": "enum PositionInfoAttenuationType", "id": 13, - "offset": 220, - "flags": 135, + "offset": 520, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 400513266 + "hash": 2427193304, + "enum_options": { + "Standard": 0, + "Unit Range Power": 1 + } }, - "m_nAnimEnd": { - "type": "int", + "m_vPositions": { + "type": "class Vector3D", "id": 14, - "offset": 224, - "flags": 135, + "offset": 528, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 3599600160 + } + } + }, + "1050735265": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1050735265, + "properties": { + "m_gid": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1081103460 + "hash": 267019404 }, - "m_fAnimTime": { - "type": "float", - "id": 15, - "offset": 232, - "flags": 134, + "m_schoolName": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 802466289 + "hash": 3385349572 }, - "m_fMaterialScaleX": { - "type": "float", - "id": 16, - "offset": 180, - "flags": 135, + "m_schoolRank": { + "type": "std::wstring", + "id": 2, + "offset": 112, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 634638220 + "hash": 3181478700 }, - "m_fMaterialScaleY": { - "type": "float", - "id": 17, - "offset": 184, - "flags": 135, + "m_schoolLevel": { + "type": "int", + "id": 3, + "offset": 144, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 634638221 + "hash": 10373914 + }, + "m_showPVPOption": { + "type": "unsigned int", + "id": 4, + "offset": 148, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2052204093 + }, + "m_petTemplateID": { + "type": "unsigned int", + "id": 5, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 817215071 } } }, - "1109443505": { - "name": "class ControlProgress*", + "1474399017": { + "name": "class PublicSocketJewelPair", "bases": [ - "ControlBar", - "Window", "PropertyClass" ], - "hash": 1109443505, + "hash": 1474399017, "properties": { - "m_sName": { - "type": "std::string", + "m_socketNumber": { + "type": "unsigned int", "id": 0, - "offset": 80, - "flags": 135, + "offset": 72, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2306437263 + "hash": 772707167 }, - "m_Children": { - "type": "class SharedPointer", + "m_jewelTemplateID": { + "type": "unsigned int", "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, + "offset": 76, + "flags": 31, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2621225959 + "pointer": false, + "hash": 396940685 + } + } + }, + "618765546": { + "name": "class DerbyModifyMorale", + "bases": [ + "DerbyEffect", + "PropertyClass" + ], + "hash": 618765546, + "properties": { + "m_buffType": { + "type": "enum DerbyTalentBuffType", + "id": 0, + "offset": 92, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1149251982, + "enum_options": { + "Buff": 0, + "Debuff": 1, + "Neither": 2 + } }, - "m_Style": { - "type": "unsigned int", - "id": 2, - "offset": 152, - "flags": 1048583, + "m_kTarget": { + "type": "enum DerbyTargetType", + "id": 1, + "offset": 96, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 983582334, + "hash": 1807803351, "enum_options": { - "HAS_BACK": 1, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152, - "PROGRESS_UV": 16777216, - "PROGRESS_RTOL": 33554432 + "kTargetInFront": 0, + "kTargetBehind": 1, + "kTargetFirst": 2, + "kTargetSelf": 3, + "kTargetAll": 4, + "kTargetLast": 5 } }, - "m_Flags": { + "m_nDuration": { + "type": "int", + "id": 2, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1110167982 + }, + "m_effectID": { "type": "unsigned int", "id": 3, - "offset": 156, - "flags": 1048583, + "offset": 88, + "flags": 24, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } + "hash": 2347630439 }, - "m_Window": { - "type": "class Rect", + "m_imageFilename": { + "type": "std::string", "id": 4, - "offset": 160, - "flags": 135, + "offset": 112, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3105139380 + "hash": 2813328063 }, - "m_fTargetAlpha": { - "type": "float", + "m_iconIndex": { + "type": "unsigned int", "id": 5, - "offset": 212, - "flags": 135, + "offset": 144, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1809129834 + "hash": 1265133262 }, - "m_fDisabledAlpha": { - "type": "float", + "m_soundOnActivate": { + "type": "std::string", "id": 6, - "offset": 216, - "flags": 135, + "offset": 152, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1389987675 + "hash": 1956929714 }, - "m_fAlpha": { - "type": "float", + "m_soundOnTarget": { + "type": "std::string", "id": 7, - "offset": 208, - "flags": 65671, + "offset": 184, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 482130755 + "hash": 3444214056 }, - "m_pWindowStyle": { - "type": "class SharedPointer", + "m_targetParticleEffect": { + "type": "std::string", "id": 8, - "offset": 232, - "flags": 135, + "offset": 216, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3623628394 + "pointer": false, + "hash": 3048234723 }, - "m_sHelp": { - "type": "std::wstring", + "m_overheadMessage": { + "type": "std::string", "id": 9, "offset": 248, - "flags": 4194439, + "flags": 8388639, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2102211316 + "hash": 1701018190 }, - "m_sScript": { - "type": "std::string", + "m_requirements": { + "type": "class RequirementList", "id": 10, - "offset": 352, - "flags": 135, + "offset": 280, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1846695875 + "hash": 2840988582 }, - "m_Offset": { - "type": "class Point", + "m_nMoraleChange": { + "type": "int", "id": 11, - "offset": 192, - "flags": 135, + "offset": 376, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3389835433 - }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, + "hash": 1624723118 + } + } + }, + "1903024197": { + "name": "class SharedPointer", + "bases": [ + "ServiceOptionBase", + "PropertyClass" + ], + "hash": 1903024197, + "properties": { + "m_serviceName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2547159940 + "hash": 2206028813 }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, + "m_iconKey": { + "type": "std::string", + "id": 1, + "offset": 168, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2587533771 + "hash": 2457138637 }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, + "m_displayKey": { + "type": "std::string", + "id": 2, + "offset": 104, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3091503757 + "hash": 3023276954 }, - "m_fPosition": { - "type": "float", - "id": 16, - "offset": 584, - "flags": 135, + "m_serviceIndex": { + "type": "unsigned int", + "id": 3, + "offset": 204, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1808212114 + "hash": 2103126710 }, - "m_BaseColor": { - "type": "class Color", - "id": 17, - "offset": 588, - "flags": 262279, + "m_forceInteract": { + "type": "bool", + "id": 4, + "offset": 200, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2172251096 + "hash": 1705789564 }, - "m_BarColor": { - "type": "class Color", - "id": 18, - "offset": 592, - "flags": 262279, + "m_prepText": { + "type": "std::string", + "id": 5, + "offset": 248, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2259916498 - }, - "m_bDisplayVertical": { - "type": "bool", - "id": 19, - "offset": 596, - "flags": 135, - "container": "Static", - "dynamic": false, + "hash": 2576467479 + } + } + }, + "618196191": { + "name": "class std::vector >", + "bases": [], + "hash": 618196191, + "properties": {} + }, + "1902663913": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1902663913, + "properties": { + "m_encounterXPFactors": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Vector", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 1359621189 - }, - "m_pBarMaterial": { - "type": "class SharedPointer", - "id": 20, - "offset": 600, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2481929515 + "hash": 1658121668 }, - "m_pTopLeftMaterial": { - "type": "class SharedPointer", - "id": 21, - "offset": 616, - "flags": 135, - "container": "Static", - "dynamic": false, + "m_levelInfo": { + "type": "class MagicLevelInfo*", + "id": 1, + "offset": 96, + "flags": 7, + "container": "List", + "dynamic": true, "singleton": false, "pointer": true, - "hash": 3248096916 + "hash": 3910018919 }, - "m_pCenterMaterial": { - "type": "class SharedPointer", - "id": 22, - "offset": 632, - "flags": 135, - "container": "Static", - "dynamic": false, + "m_classInfo": { + "type": "class ClassInfo*", + "id": 2, + "offset": 112, + "flags": 7, + "container": "List", + "dynamic": true, "singleton": false, "pointer": true, - "hash": 1519560055 + "hash": 1542484118 }, - "m_pBottomRightMaterial": { - "type": "class SharedPointer", - "id": 23, - "offset": 648, - "flags": 135, + "m_maxSchoolLevel": { + "type": "int", + "id": 3, + "offset": 144, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2932444745 + "pointer": false, + "hash": 966975040 }, - "m_bTimed": { - "type": "bool", - "id": 24, - "offset": 696, - "flags": 135, + "m_experienceBonus": { + "type": "float", + "id": 4, + "offset": 148, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 260290536 + "hash": 2151977766 }, - "m_fTotalTime": { + "m_schoolOfFocusBonus": { "type": "float", - "id": 25, - "offset": 700, - "flags": 135, + "id": 5, + "offset": 152, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1142609040 + "hash": 1568585435 }, - "m_fCurrentTime": { + "m_levelsConfig": { + "type": "class MobRankLevel*", + "id": 6, + "offset": 160, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1122741478 + } + } + }, + "1902425029": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1902425029, + "properties": { + "m_percentPerHour": { "type": "float", - "id": 26, - "offset": 704, - "flags": 135, + "id": 0, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2112044047 + "hash": 1587432077 }, - "m_bReverseDir": { - "type": "bool", - "id": 27, - "offset": 708, - "flags": 135, + "m_pestTemplateID": { + "type": "unsigned int", + "id": 1, + "offset": 76, + "flags": 33554439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 137983376 + "hash": 1301457330 } } }, - "1524733359": { - "name": "class SharedPointer", + "1051372145": { + "name": "class SharedPointer", "bases": [ - "ActorCinematicAction", - "CinematicAction", + "GeomParams", "PropertyClass" ], - "hash": 1524733359, + "hash": 1051372145, "properties": { - "m_timeOffset": { - "type": "float", + "m_eType": { + "type": "enum ProxyType", "id": 0, "offset": 72, - "flags": 7, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 + "hash": 1656534066, + "enum_options": { + "ProxyTypeBox": 0, + "ProxyTypeRay": 1, + "ProxyTypeSphere": 2, + "ProxyTypeCylinder": 3, + "ProxyTypeTube": 4, + "ProxyTypePlane": 5, + "ProxyTypeMesh": 6, + "ProxyTypeInvalid": 7 + } }, - "m_actor": { - "type": "std::string", + "m_vNormal": { + "type": "class Vector3D", "id": 1, "offset": 80, "flags": 7, @@ -382332,40 +46475,51 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 2285866132 + "hash": 3552296097 + }, + "m_fDistance": { + "type": "float", + "id": 2, + "offset": 92, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 194015112 } } }, - "1892641892": { - "name": "class SharedPointer", + "1477524573": { + "name": "class SharedPointer", "bases": [ - "PvPUpdateMessage", + "TurnIndicatorCinematicAction", + "CinematicAction", "PropertyClass" ], - "hash": 1892641892, + "hash": 1477524573, "properties": { - "m_messageType": { - "type": "int", + "m_timeOffset": { + "type": "float", "id": 0, "offset": 72, - "flags": 31, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1531535105 + "hash": 2237098605 } } }, - "1106104902": { - "name": "class ClientHideActorCinematicAction", + "1476473316": { + "name": "class ClientPolymorphCinematicAction", "bases": [ - "HideActorCinematicAction", - "ActorCinematicAction", + "PolymorphCinematicAction", "CinematicAction", "PropertyClass" ], - "hash": 1106104902, + "hash": 1476473316, "properties": { "m_timeOffset": { "type": "float", @@ -382377,8 +46531,28 @@ "singleton": false, "pointer": false, "hash": 2237098605 + } + } + }, + "618890634": { + "name": "class WizGoalData", + "bases": [ + "PropertyClass" + ], + "hash": 618890634, + "properties": { + "m_goalID": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 485200232 }, - "m_actor": { + "m_name": { "type": "std::string", "id": 1, "offset": 80, @@ -382387,795 +46561,895 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 2285866132 + "hash": 1717359772 }, - "m_bHide": { - "type": "bool", + "m_nameID": { + "type": "unsigned int", "id": 2, - "offset": 120, + "offset": 112, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 790850959 + "hash": 954387579 }, - "m_evenWhileDead": { - "type": "bool", + "m_status": { + "type": "enum GOAL_STATUS", "id": 3, - "offset": 121, - "flags": 7, + "offset": 116, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2100875368 + "hash": 3025501257, + "enum_options": { + "GOAL_STATUS_INVALID": 4294967295, + "GOAL_STATUS_INCOMPLETE": 0, + "GOAL_STATUS_COMPLETE": 1 + } }, - "m_bMultiRound": { - "type": "bool", + "m_location": { + "type": "std::string", "id": 4, - "offset": 122, - "flags": 263, + "offset": 120, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1821746440 - } - } - }, - "1520861921": { - "name": "class ActorBody*", - "bases": [ - "GamebryoBody", - "Body", - "PropertyClass" - ], - "hash": 1520861921, - "properties": { - "m_position": { - "type": "class Vector3D", - "id": 0, - "offset": 88, + "hash": 2079561588 + }, + "m_type": { + "type": "enum GoalTemplate::GOAL_TYPE", + "id": 5, + "offset": 184, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1683753114, + "enum_options": { + "GoalTemplate::GOAL_TYPE_UNKNOWN": 0, + "GoalTemplate::GOAL_TYPE_BOUNTY": 1, + "GoalTemplate::GOAL_TYPE_BOUNTYCOLLECT": 2, + "GoalTemplate::GOAL_TYPE_SCAVENGE": 3, + "GoalTemplate::GOAL_TYPE_PERSONA": 4, + "GoalTemplate::GOAL_TYPE_WAYPOINT": 5, + "GoalTemplate::GOAL_TYPE_SCAVENGEFAKE": 6, + "GoalTemplate::GOAL_TYPE_ACHIEVERANK": 7, + "GoalTemplate::GOAL_TYPE_USAGE": 8, + "GoalTemplate::GOAL_TYPE_COMPLETEQUEST": 9, + "GoalTemplate::GOAL_TYPE_SOCIARANK": 10, + "GoalTemplate::GOAL_TYPE_SOCIACURRENCY": 11, + "GoalTemplate::GOAL_TYPE_SOCIAMINIGAME": 12, + "GoalTemplate::GOAL_TYPE_SOCIAGIVEITEM": 13, + "GoalTemplate::GOAL_TYPE_SOCIAGETITEM": 14, + "GoalTemplate::GOAL_TYPE_COLLECTAFTERBOUNTY": 15, + "GoalTemplate::GOAL_TYPE_ENCOUNTER_WAYPOINT_FOREACH": 16 + } + }, + "m_sendType": { + "type": "enum ENUM_SENDTYPE", + "id": 6, + "offset": 188, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1837051977, + "enum_options": { + "SENDTYPE_UNKNOWN": 4294967295, + "SENDTYPE_NORMAL": 0, + "SENDTYPE_NEW": 1, + "SENDTYPE_UPDATE": 2, + "SENDTYPE_NOUPDATE": 3 + } + }, + "m_madLibs": { + "type": "class SharedPointer", + "id": 7, + "offset": 192, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2589921204 + }, + "m_image1": { + "type": "std::string", + "id": 8, + "offset": 208, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3697900983 + "hash": 2058810671 }, - "m_pitch": { - "type": "float", - "id": 1, - "offset": 100, + "m_image2": { + "type": "std::string", + "id": 9, + "offset": 240, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 896371695 + "hash": 2058810672 }, - "m_roll": { - "type": "float", - "id": 2, - "offset": 104, + "m_tagList": { + "type": "class SharedPointer", + "id": 10, + "offset": 272, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 464541847 + }, + "m_completeText": { + "type": "std::string", + "id": 11, + "offset": 288, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 310020272 + "hash": 2767458393 }, - "m_yaw": { - "type": "float", - "id": 3, - "offset": 108, + "m_QuestHelperEnabled": { + "type": "bool", + "id": 12, + "offset": 320, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 357256328 + "hash": 1164796656 }, - "m_fHeight": { - "type": "float", - "id": 4, - "offset": 132, + "m_petOnlyQuest": { + "type": "bool", + "id": 13, + "offset": 321, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 401539638 + "hash": 679359344 }, - "m_scale": { - "type": "float", - "id": 5, - "offset": 112, + "m_hasActiveResults": { + "type": "bool", + "id": 14, + "offset": 322, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 899693439 + "hash": 1571197213 + }, + "m_hideGoalFloatyText": { + "type": "bool", + "id": 15, + "offset": 323, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1919383204 } } }, - "1892336994": { - "name": "class DyeShopModifiers", + "1475383864": { + "name": "class ClientProcess*", "bases": [ "PropertyClass" ], - "hash": 1892336994, + "hash": 1475383864, + "properties": {} + }, + "1902897282": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1902897282, "properties": { - "m_costFloorAdditive": { - "type": "int", + "m_bCollisionDisabled": { + "type": "bool", "id": 0, - "offset": 72, + "offset": 120, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1871158175 + "hash": 1732895577 }, - "m_multiplierTemplateCost": { - "type": "float", + "m_bVehicleMode": { + "type": "bool", "id": 1, - "offset": 76, + "offset": 121, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1851711699 + "hash": 1597295002 }, - "m_multiplierIfDropList": { + "m_fForwardModifier": { "type": "float", "id": 2, - "offset": 80, + "offset": 124, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1310969758 + "hash": 1173988321 }, - "m_multiplierIfDyeList": { + "m_fBackModifier": { "type": "float", "id": 3, - "offset": 84, + "offset": 128, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 257956107 + "hash": 148042045 }, - "m_petRenameCost": { - "type": "int", + "m_fStrafeModifier": { + "type": "float", "id": 4, - "offset": 88, + "offset": 132, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 136443668 - } - } - }, - "740052928": { - "name": "class WizItemQuestData", - "bases": [ - "PropertyClass" - ], - "hash": 740052928, - "properties": { - "m_sQuestTitle": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, + "hash": 226084913 + }, + "m_fTurnModifier": { + "type": "float", + "id": 5, + "offset": 136, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2282339874 + "hash": 2134998805 }, - "m_sFirstGoalLocation": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 31, + "m_fAccelerationModifier": { + "type": "float", + "id": 6, + "offset": 144, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2049077170 + "hash": 592902742 }, - "m_sSchoolFocus": { - "type": "std::string", - "id": 2, - "offset": 136, - "flags": 31, + "m_fDecelerationModifier": { + "type": "float", + "id": 7, + "offset": 148, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2205763286 + "hash": 1770082811 } } }, - "1105590906": { - "name": "class ZoneTokenBaseControl*", + "1053087315": { + "name": "class HousingSigilManager", "bases": [ - "Window", "PropertyClass" ], - "hash": 1105590906, + "hash": 1053087315, + "properties": {} + }, + "1475050762": { + "name": "class SharedPointer", + "bases": [ + "CoreObjectInfo", + "PropertyClass" + ], + "hash": 1475050762, "properties": { - "m_sName": { - "type": "std::string", + "m_templateID.m_full": { + "type": "unsigned __int64", "id": 0, - "offset": 80, - "flags": 135, + "offset": 72, + "flags": 33554439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2306437263 + "hash": 633907631 }, - "m_Children": { - "type": "class SharedPointer", + "m_nObjectID": { + "type": "unsigned int", "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2621225959 + "pointer": false, + "hash": 748496927 }, - "m_Style": { - "type": "unsigned int", + "m_location": { + "type": "class Vector3D", "id": 2, - "offset": 152, - "flags": 1048583, + "offset": 84, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "SCALE_CHILDREN": 2, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "FOCUS_LOCKED": 64, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152 - } + "hash": 2239683611 }, - "m_Flags": { - "type": "unsigned int", + "m_orientation": { + "type": "class Vector3D", "id": 3, - "offset": 156, - "flags": 1048583, + "offset": 96, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } + "hash": 2344058766 }, - "m_Window": { - "type": "class Rect", + "m_fScale": { + "type": "float", "id": 4, - "offset": 160, - "flags": 135, + "offset": 108, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3105139380 + "hash": 503137701 }, - "m_fTargetAlpha": { - "type": "float", + "m_zoneTag": { + "type": "std::string", "id": 5, - "offset": 212, - "flags": 135, + "offset": 152, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1809129834 + "hash": 3405382643 }, - "m_fDisabledAlpha": { - "type": "float", + "m_startState": { + "type": "std::string", "id": 6, - "offset": 216, - "flags": 135, + "offset": 184, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1389987675 + "hash": 2166880458 }, - "m_fAlpha": { - "type": "float", + "m_overrideName": { + "type": "std::string", "id": 7, - "offset": 208, - "flags": 65671, + "offset": 120, + "flags": 8388615, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 482130755 + "hash": 1990707228 }, - "m_pWindowStyle": { - "type": "class SharedPointer", + "m_globalDynamic": { + "type": "bool", "id": 8, - "offset": 232, - "flags": 135, + "offset": 116, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3623628394 + "pointer": false, + "hash": 1951691017 }, - "m_sHelp": { - "type": "std::wstring", + "m_bUndetectable": { + "type": "bool", "id": 9, - "offset": 248, - "flags": 4194439, + "offset": 216, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2102211316 + "hash": 1907454341 }, - "m_sScript": { - "type": "std::string", + "m_spawnRequirements": { + "type": "class SharedPointer", "id": 10, - "offset": 352, - "flags": 135, + "offset": 224, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1846695875 + "pointer": true, + "hash": 2309120870 }, - "m_Offset": { - "type": "class Point", + "m_loadingType": { + "type": "enum CoreObjectInfo::LoadingType", "id": 11, - "offset": 192, - "flags": 135, + "offset": 112, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3389835433 - }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, - "container": "Static", - "dynamic": false, + "hash": 3522422550, + "enum_options": { + "STATIC_CLIENT_SERVER": 0, + "STATIC_CLIENT": 1, + "STATIC_SERVER": 2, + "DYNAMIC_SERVER": 3 + } + } + } + }, + "1051982574": { + "name": "class SharedPointer", + "bases": [ + "WizItemTemplate", + "ItemTemplate", + "GameObjectTemplate", + "CoreTemplate", + "PropertyClass" + ], + "hash": 1051982574, + "properties": { + "m_behaviors": { + "type": "class BehaviorTemplate*", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Vector", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 2547159940 + "pointer": true, + "hash": 1197808594 }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, + "m_objectName": { + "type": "std::string", + "id": 1, + "offset": 96, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2587533771 + "hash": 2154940147 }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, + "m_templateID": { + "type": "unsigned int", + "id": 2, + "offset": 128, + "flags": 16777223, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3091503757 - } - } - }, - "1518184174": { - "name": "class TreasureShopCrownsOption", - "bases": [ - "ServiceOptionBase", - "PropertyClass" - ], - "hash": 1518184174, - "properties": { - "m_serviceName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, + "hash": 1286746870 + }, + "m_visualID": { + "type": "unsigned int", + "id": 3, + "offset": 132, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2206028813 + "hash": 1118778894 }, - "m_iconKey": { + "m_adjectiveList": { "type": "std::string", - "id": 1, - "offset": 168, - "flags": 31, + "id": 4, + "offset": 248, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 3195213318 + }, + "m_exemptFromAOI": { + "type": "bool", + "id": 5, + "offset": 240, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2457138637 + "hash": 1457879059 }, - "m_displayKey": { + "m_displayName": { "type": "std::string", - "id": 2, - "offset": 104, - "flags": 31, + "id": 6, + "offset": 168, + "flags": 8388615, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3023276954 + "hash": 2446900370 }, - "m_serviceIndex": { - "type": "unsigned int", - "id": 3, - "offset": 204, - "flags": 31, + "m_description": { + "type": "std::string", + "id": 7, + "offset": 136, + "flags": 8388615, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2103126710 + "hash": 1649374815 }, - "m_forceInteract": { - "type": "bool", - "id": 4, + "m_nObjectType": { + "type": "enum ObjectType", + "id": 8, "offset": 200, - "flags": 31, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1705789564 - } - } - }, - "739390359": { - "name": "class DeckListControl*", - "bases": [ - "Window", - "PropertyClass" - ], - "hash": 739390359, - "properties": { - "m_sName": { + "hash": 2118905880, + "enum_options": { + "OT_UNDEFINED": 0, + "OT_PLAYER": 1, + "OT_NPC": 2, + "OT_PROP": 3, + "OT_OBJECT": 4, + "OT_HOUSE": 5, + "OT_KEY": 6, + "OT_OLD_KEY": 7, + "OT_DEED": 8, + "OT_MAIL": 9, + "OT_RECIPE": 17, + "OT_EQUIP_HEAD": 10, + "OT_EQUIP_CHEST": 11, + "OT_EQUIP_LEGS": 12, + "OT_EQUIP_HANDS": 13, + "OT_EQUIP_FINGER": 14, + "OT_EQUIP_FEET": 15, + "OT_EQUIP_EAR": 16, + "OT_BUILDING_BLOCK": 18, + "OT_BUILDING_BLOCK_SOLID": 19, + "OT_GOLF": 20, + "OT_DOOR": 21, + "OT_PET": 22, + "OT_FABRIC": 23, + "OT_WINDOW": 24, + "OT_ROOF": 25, + "OT_HORSE": 26, + "OT_STRUCTURE": 27, + "OT_HOUSING_TEXTURE": 28, + "OT_PLANT": 29 + } + }, + "m_sIcon": { "type": "std::string", - "id": 0, - "offset": 80, - "flags": 135, + "id": 9, + "offset": 208, + "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2306437263 + "hash": 2306259831 }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, + "m_equipRequirements": { + "type": "class RequirementList*", + "id": 10, + "offset": 280, + "flags": 7, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": true, - "hash": 2621225959 + "hash": 2762617226 }, - "m_Style": { - "type": "unsigned int", - "id": 2, - "offset": 152, - "flags": 1048583, + "m_purchaseRequirements": { + "type": "class RequirementList*", + "id": 11, + "offset": 288, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152, - "DLC_SPELLTIP": 16777216, - "DLC_SELECT": 33554432 - } + "pointer": true, + "hash": 3174641793 }, - "m_Flags": { - "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 1048583, + "m_equipEffects": { + "type": "class GameEffectInfo*", + "id": 12, + "offset": 296, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 836628351 + }, + "m_baseCost": { + "type": "float", + "id": 13, + "offset": 312, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } + "hash": 1565352651 }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, - "flags": 135, + "m_creditsCost": { + "type": "float", + "id": 14, + "offset": 320, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3105139380 + "hash": 805514974 }, - "m_fTargetAlpha": { - "type": "float", - "id": 5, - "offset": 212, - "flags": 135, + "m_avatarInfo": { + "type": "class AvatarItemInfoBase*", + "id": 15, + "offset": 328, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, + "pointer": true, + "hash": 2627321299 + }, + "m_avatarFlags": { + "type": "std::string", + "id": 16, + "offset": 336, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, "pointer": false, - "hash": 1809129834 + "hash": 2347762759 }, - "m_fDisabledAlpha": { - "type": "float", - "id": 6, - "offset": 216, - "flags": 135, + "m_itemLimit": { + "type": "int", + "id": 17, + "offset": 316, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1389987675 + "hash": 1799746856 }, - "m_fAlpha": { - "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, + "m_holidayFlag": { + "type": "std::string", + "id": 18, + "offset": 352, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 482130755 + "hash": 2994795359 }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, + "m_itemSetBonusTemplateID": { + "type": "unsigned int", + "id": 19, + "offset": 384, + "flags": 33554439, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3623628394 + "pointer": false, + "hash": 1316835672 }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, + "m_numPrimaryColors": { + "type": "int", + "id": 20, + "offset": 428, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2102211316 + "hash": 981103872 }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, + "m_numSecondaryColors": { + "type": "int", + "id": 21, + "offset": 432, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1846695875 + "hash": 1310416868 }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, + "m_numPatterns": { + "type": "int", + "id": 22, + "offset": 436, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3389835433 + "hash": 953162171 }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, + "m_school": { + "type": "std::string", + "id": 23, + "offset": 392, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2547159940 + "hash": 2438566051 }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, + "m_arenaPointCost": { + "type": "int", + "id": 24, + "offset": 440, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1513510520 + "hash": 1819621796 }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, + "m_pvpCurrencyCost": { + "type": "int", + "id": 25, + "offset": 444, + "flags": 7, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 2587533771 + "hash": 645595444 }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, + "m_pvpTourneyCurrencyCost": { + "type": "int", + "id": 26, + "offset": 448, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3091503757 + "hash": 517874954 }, - "m_cardSize": { - "type": "class Size", - "id": 16, - "offset": 676, + "m_rank": { + "type": "int", + "id": 27, + "offset": 424, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1135567057 + "hash": 219803942 }, - "m_spacing": { + "m_boyIconIndex": { "type": "int", - "id": 17, - "offset": 684, + "id": 28, + "offset": 452, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1481011679 + "hash": 802140453 }, - "m_verticalSpacingAdjust": { + "m_girlIconIndex": { "type": "int", - "id": 18, - "offset": 688, + "id": 29, + "offset": 456, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2069000644 + "hash": 832706793 }, - "m_slotImage": { - "type": "class SharedPointer", - "id": 19, - "offset": 616, + "m_leashOffsetOverride": { + "type": "class SharedPointer", + "id": 30, + "offset": 464, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": true, - "hash": 2088856988 + "hash": 1692586788 }, - "m_treasureFrame": { + "m_rarity": { + "type": "enum RarityType", + "id": 31, + "offset": 460, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2253792108, + "enum_options": { + "RT_COMMON": 0, + "RT_UNCOMMON": 1, + "RT_RARE": 2, + "RT_ULTRARARE": 3, + "RT_EPIC": 4 + } + }, + "m_iconIndex": { "type": "int", - "id": 20, - "offset": 632, + "id": 32, + "offset": 480, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 178393840 + "hash": 1053730811 + }, + "m_imageName": { + "type": "std::string", + "id": 33, + "offset": 488, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2391520543 } } }, - "1105590866": { - "name": "class ZoneTokenBaseControl", + "619371965": { + "name": "struct SimpleFace", + "bases": [], + "hash": 619371965, + "properties": {} + }, + "1051842193": { + "name": "class FriendSymbolWindow", "bases": [ "Window", "PropertyClass" ], - "hash": 1105590866, + "hash": 1051842193, "properties": { "m_sName": { "type": "std::string", @@ -383390,160 +47664,155 @@ } } }, - "1516639738": { - "name": "class SharedPointer", + "1475383859": { + "name": "class ClientProcess", "bases": [ "PropertyClass" ], - "hash": 1516639738, - "properties": { - "m_crownShopPurchases": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 845434554 - } - } + "hash": 1475383859, + "properties": {} }, - "1892397101": { - "name": "class SharedPointer", + "1903958808": { + "name": "class FXOverrideBehaviorTemplate*", "bases": [ - "Requirement", + "BehaviorTemplate", "PropertyClass" ], - "hash": 1892397101, + "hash": 1903958808, "properties": { - "m_applyNOT": { - "type": "bool", + "m_behaviorName": { + "type": "std::string", "id": 0, "offset": 72, - "flags": 31, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1746328074, - "enum_options": { - "__DEFAULT": 0 - } + "hash": 3130754092 }, - "m_operator": { - "type": "enum Requirement::Operator", + "m_FXOverrideBehaviorInfo": { + "type": "class FXOverrideBehaviorInfo", "id": 1, - "offset": 76, - "flags": 2097183, + "offset": 120, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2672792317, - "enum_options": { - "ROP_AND": 0, - "ROP_OR": 1, - "__DEFAULT": "ROP_AND" - } + "hash": 1746411198 } } }, - "1105411080": { - "name": "class SharedPointer", + "195332260": { + "name": "class WinAnimScaleSpeed", "bases": [ - "BehaviorInstance", + "WinAnimScale", + "WindowAnimation", "PropertyClass" ], - "hash": 1105411080, + "hash": 195332260, "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", + "m_bUseDeepCopy": { + "type": "bool", "id": 0, - "offset": 104, - "flags": 39, + "offset": 72, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 + "hash": 433380635 }, - "m_stateList": { - "type": "unsigned int", + "m_scale": { + "type": "float", "id": 1, - "offset": 136, - "flags": 31, - "container": "List", - "dynamic": true, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 1658565962 + "hash": 899693439 }, - "m_stateSetOverride": { - "type": "std::string", + "m_fSpeed": { + "type": "float", "id": 2, - "offset": 168, - "flags": 31, + "offset": 96, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3188396456 + "hash": 503609006 } } }, - "1514144732": { - "name": "class JewelSocketWrenchElements", + "1903829701": { + "name": "class ReqPvPCombat*", "bases": [ + "ConditionalSpellEffectRequirement", + "Requirement", "PropertyClass" ], - "hash": 1514144732, + "hash": 1903829701, "properties": { - "m_socketWrenchTemplateID": { - "type": "gid", + "m_applyNOT": { + "type": "bool", "id": 0, "offset": 72, - "flags": 7, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1148289553 + "hash": 1746328074, + "enum_options": { + "__DEFAULT": 0 + } }, - "m_lowestEquipLevelInclusive": { - "type": "int", + "m_operator": { + "type": "enum Requirement::Operator", "id": 1, - "offset": 80, - "flags": 7, + "offset": 76, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1282442502 + "hash": 2672792317, + "enum_options": { + "ROP_AND": 0, + "ROP_OR": 1, + "__DEFAULT": "ROP_AND" + } }, - "m_hightestEquipLevelInclusive": { - "type": "int", + "m_targetType": { + "type": "enum ConditionalSpellEffectRequirement::RequirementTarget", "id": 2, - "offset": 84, - "flags": 7, + "offset": 80, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1111256264 + "hash": 2547737902, + "enum_options": { + "RT_Caster": 0, + "RT_Target": 1 + } } } }, - "739989927": { - "name": "class SharedPointer", + "619562371": { + "name": "class SharedPointer", "bases": [ "PropertyClass" ], - "hash": 739989927, + "hash": 619562371, "properties": { - "m_houseTransferResultList": { - "type": "class SharedPointer", + "m_objectList": { + "type": "class SharedPointer", "id": 0, "offset": 72, "flags": 7, @@ -383551,775 +47820,952 @@ "dynamic": true, "singleton": false, "pointer": true, - "hash": 1794426680 - }, - "m_characterGID": { - "type": "gid", - "id": 1, - "offset": 88, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 501688601 + "hash": 931236576 } } }, - "1513033161": { - "name": "class SharedPointer", + "1052737293": { + "name": "class RecipeTemplate", "bases": [ - "PositionalSoundBehavior", - "SoundBehavior", - "AreaBehavior", - "BehaviorInstance", + "CoreTemplate", "PropertyClass" ], - "hash": 1513033161, + "hash": 1052737293, "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", + "m_behaviors": { + "type": "class BehaviorTemplate*", "id": 0, - "offset": 104, - "flags": 39, + "offset": 72, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1197808594 + }, + "m_recipeName": { + "type": "std::string", + "id": 1, + "offset": 136, + "flags": 134217735, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 + "hash": 3311832788 }, - "m_radius": { - "type": "float", - "id": 1, - "offset": 116, + "m_ingredients": { + "type": "class Ingredient*", + "id": 2, + "offset": 272, "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1061809494 + }, + "m_displayKey": { + "type": "std::string", + "id": 3, + "offset": 240, + "flags": 8388615, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 989410271 + "hash": 3023276954 }, - "m_category": { - "type": "enum AudioCategory", - "id": 2, - "offset": 124, - "flags": 2097159, + "m_itemID": { + "type": "gid", + "id": 4, + "offset": 96, + "flags": 33554439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2951251982, + "hash": 569545460 + }, + "m_spellName": { + "type": "std::string", + "id": 5, + "offset": 104, + "flags": 268435463, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2688485244, "enum_options": { - "AudioCategory_Irrelevent": 0, - "AudioCategory_Accoustic": 1, - "AudioCategory_Noise": 2, - "AudioCategory_Music": 3 + "__BASECLASS": "SpellTemplate" } }, - "m_exclusive": { - "type": "bool", - "id": 3, - "offset": 128, + "m_adjectives": { + "type": "std::string", + "id": 6, + "offset": 288, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2967855037 + }, + "m_cookTime": { + "type": "int", + "id": 7, + "offset": 172, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 824383403 + "hash": 1895782037 }, - "m_playList": { - "type": "class PlayList", - "id": 4, + "m_goldCost": { + "type": "int", + "id": 8, "offset": 176, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2061221957 + "hash": 444550297 }, - "m_volume": { - "type": "float", - "id": 5, - "offset": 304, + "m_crownsCost": { + "type": "int", + "id": 9, + "offset": 180, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1162855023 + "hash": 1592212719 }, - "m_loopCount": { + "m_arenaPointCost": { "type": "int", - "id": 6, - "offset": 308, + "id": 10, + "offset": 184, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 865634717 + "hash": 1819621796 }, - "m_minimumFalloff": { - "type": "float", - "id": 7, - "offset": 328, + "m_pvpCurrencyCost": { + "type": "int", + "id": 11, + "offset": 188, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 355697197 + "hash": 645595444 }, - "m_maximumFalloff": { - "type": "float", - "id": 8, - "offset": 332, + "m_pvpTourneyCurrencyCost": { + "type": "int", + "id": 12, + "offset": 192, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2210192367 + "hash": 517874954 }, - "m_animDriven": { - "type": "bool", - "id": 9, - "offset": 392, + "m_school": { + "type": "std::string", + "id": 13, + "offset": 208, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 398394720 + "hash": 2438566051 }, - "m_inverted": { - "type": "bool", - "id": 10, - "offset": 397, + "m_purchaseRequirements": { + "type": "class RequirementList*", + "id": 14, + "offset": 200, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1034821044 + "pointer": true, + "hash": 3174641793 }, - "m_animationName": { + "m_holidayFlag": { "type": "std::string", - "id": 11, - "offset": 512, + "id": 15, + "offset": 320, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3393414044 - } - } - }, - "1512537705": { - "name": "class ObjStateSet*", - "bases": [ - "PropertyClass" - ], - "hash": 1512537705, - "properties": { - "m_categories": { - "type": "class ObjStateCategory*", - "id": 0, - "offset": 128, + "hash": 2994795359 + }, + "m_itemLootTable": { + "type": "std::string", + "id": 16, + "offset": 352, "flags": 7, - "container": "List", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1980433352 + "pointer": false, + "hash": 2176436048 }, - "m_stateSetName": { + "m_alternateDescription": { "type": "std::string", - "id": 1, - "offset": 72, - "flags": 7, + "id": 17, + "offset": 384, + "flags": 8388615, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1863712969 + "hash": 2784283583 + }, + "m_displayRequirements": { + "type": "class RequirementList*", + "id": 18, + "offset": 416, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3646782876 } } }, - "1892923431": { - "name": "class ClientFXDef*", + "1475831549": { + "name": "class SharedPointer", "bases": [ - "FXDef", + "DerbyEffect", "PropertyClass" ], - "hash": 1892923431, + "hash": 1475831549, "properties": { - "m_FXFile": { - "type": "std::string", + "m_buffType": { + "type": "enum DerbyTalentBuffType", "id": 0, - "offset": 72, - "flags": 131079, + "offset": 92, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2810683385 + "hash": 1149251982, + "enum_options": { + "Buff": 0, + "Debuff": 1, + "Neither": 2 + } }, - "m_stackingCategory": { - "type": "std::string", + "m_kTarget": { + "type": "enum DerbyTargetType", "id": 1, - "offset": 104, - "flags": 7, + "offset": 96, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2363740365 + "hash": 1807803351, + "enum_options": { + "kTargetInFront": 0, + "kTargetBehind": 1, + "kTargetFirst": 2, + "kTargetSelf": 3, + "kTargetAll": 4, + "kTargetLast": 5 + } }, - "m_repeatTime": { - "type": "float", + "m_nDuration": { + "type": "int", "id": 2, - "offset": 136, - "flags": 7, + "offset": 104, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 453389511 - } - } - }, - "740216768": { - "name": "class WizItemQuestData*", - "bases": [ - "PropertyClass" - ], - "hash": 740216768, - "properties": { - "m_sQuestTitle": { + "hash": 1110167982 + }, + "m_effectID": { + "type": "unsigned int", + "id": 3, + "offset": 88, + "flags": 24, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2347630439 + }, + "m_imageFilename": { "type": "std::string", - "id": 0, - "offset": 72, + "id": 4, + "offset": 112, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2813328063 + }, + "m_iconIndex": { + "type": "unsigned int", + "id": 5, + "offset": 144, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2282339874 + "hash": 1265133262 }, - "m_sFirstGoalLocation": { + "m_soundOnActivate": { "type": "std::string", - "id": 1, - "offset": 104, - "flags": 31, + "id": 6, + "offset": 152, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2049077170 + "hash": 1956929714 }, - "m_sSchoolFocus": { + "m_soundOnTarget": { "type": "std::string", - "id": 2, - "offset": 136, + "id": 7, + "offset": 184, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3444214056 + }, + "m_targetParticleEffect": { + "type": "std::string", + "id": 8, + "offset": 216, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3048234723 + }, + "m_overheadMessage": { + "type": "std::string", + "id": 9, + "offset": 248, + "flags": 8388639, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1701018190 + }, + "m_requirements": { + "type": "class RequirementList", + "id": 10, + "offset": 280, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2205763286 - } - } - }, - "1105868504": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1105868504, - "properties": { - "m_turns": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, + "hash": 2840988582 + }, + "m_nRateChange": { + "type": "int", + "id": 11, + "offset": 376, "flags": 31, - "container": "Vector", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1624806566 + "pointer": false, + "hash": 797681786 } } }, - "1893235548": { - "name": "class Material", + "619557059": { + "name": "class SharedPointer", "bases": [ + "AreaBehaviorTemplate", + "BehaviorTemplate", "PropertyClass" ], - "hash": 1893235548, + "hash": 619557059, "properties": { - "m_sMaterialName": { - "type": "std::wstring", + "m_behaviorName": { + "type": "std::string", "id": 0, "offset": 72, - "flags": 135, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1299185467 + "hash": 3130754092 }, - "m_Blending": { - "type": "enum Material::Blending", + "m_radius": { + "type": "float", "id": 1, - "offset": 116, - "flags": 2097159, + "offset": 120, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3003693822, - "enum_options": { - "B_NONE": 0, - "B_ADDITIVE": 1, - "B_ALPHA": 2, - "B_ALPHA_INV": 3, - "B_ADDITIVE_INV": 4, - "__DEFAULT": "B_ALPHA" - } + "hash": 989410271 }, - "m_eRepeat": { - "type": "enum Material::Repeating", + "m_category": { + "type": "enum AudioCategory", "id": 2, - "offset": 176, + "offset": 124, "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3302018843, + "hash": 2951251982, "enum_options": { - "R_NONE": 0, - "R_REPEAT": 1 + "AudioCategory_Irrelevent": 0, + "AudioCategory_Accoustic": 1, + "AudioCategory_Noise": 2, + "AudioCategory_Music": 3, + "AudioCategory_MusicAtSFXVolume": 4, + "AudioCategory_Dialog": 5, + "AudioCategory_UI": 6, + "AudioCategory_NoiseAtMusicVolume": 7 } }, - "m_pDiffuseMap": { - "type": "class SharedPointer", + "m_exclusive": { + "type": "bool", "id": 3, - "offset": 120, - "flags": 135, + "offset": 128, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 4008975679 + "pointer": false, + "hash": 824383403 }, - "m_pAlphaMask": { - "type": "class SharedPointer", + "m_active": { + "type": "bool", "id": 4, - "offset": 136, - "flags": 135, + "offset": 129, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3411451405 + "pointer": false, + "hash": 239335471 }, - "m_fLastAlpha": { - "type": "float", + "m_enableReqs": { + "type": "class SharedPointer", "id": 5, - "offset": 152, - "flags": 135, + "offset": 136, + "flags": 263, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 284727287 + "pointer": true, + "hash": 3158020443 }, - "m_Diffuse": { - "type": "class Color", + "m_trackFilenameList": { + "type": "std::string", "id": 6, - "offset": 156, - "flags": 262279, - "container": "Static", - "dynamic": false, + "offset": 152, + "flags": 7, + "container": "Vector", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 1644364836 + "hash": 2531081709 }, - "m_Ambient": { - "type": "class Color", + "m_playList": { + "type": "class PlayListEntry*", "id": 7, - "offset": 160, - "flags": 262279, - "container": "Static", - "dynamic": false, + "offset": 176, + "flags": 7, + "container": "Vector", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 2216816350 + "pointer": true, + "hash": 3907873161 }, - "m_Specular": { - "type": "class Color", + "m_priority": { + "type": "int", "id": 8, - "offset": 168, - "flags": 262279, + "offset": 208, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2645528957 + "hash": 1235205852 }, - "m_fSpecularPower": { + "m_volume": { "type": "float", "id": 9, - "offset": 172, - "flags": 135, + "offset": 200, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 539146057 + "hash": 1162855023 }, - "m_Frames": { - "type": "class Rect", + "m_loopCount": { + "type": "int", "id": 10, - "offset": 192, - "flags": 65671, - "container": "Vector", - "dynamic": true, + "offset": 204, + "flags": 7, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 3064301836 + "hash": 865634717 }, - "m_nCurrentFrame": { - "type": "int", + "m_progression": { + "type": "enum PlayList::Progression", "id": 11, - "offset": 216, - "flags": 135, + "offset": 220, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 45308854 + "hash": 3279400238, + "enum_options": { + "Sequence": 0, + "Random": 1, + "SequenceOnceOnly": 2, + "RandomNoRepeat": 3 + } }, - "m_fAnimRate": { + "m_progressMin": { "type": "float", "id": 12, - "offset": 228, - "flags": 135, + "offset": 212, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 802385934 + "hash": 1497550192 }, - "m_nAnimBegin": { - "type": "int", + "m_progressMax": { + "type": "float", "id": 13, - "offset": 220, - "flags": 135, + "offset": 216, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 400513266 + "hash": 1497549938 }, - "m_nAnimEnd": { - "type": "int", + "m_audioFilterSet": { + "type": "unsigned int", "id": 14, "offset": 224, - "flags": 135, + "flags": 33554439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1081103460 + "hash": 831339825 }, - "m_fAnimTime": { - "type": "float", + "m_animationNameFilter": { + "type": "std::string", "id": 15, "offset": 232, - "flags": 134, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 802466289 + "hash": 2292854242 }, - "m_fMaterialScaleX": { - "type": "float", + "m_functionallabel": { + "type": "std::string", "id": 16, - "offset": 180, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 634638220 - }, - "m_fMaterialScaleY": { - "type": "float", - "id": 17, - "offset": 184, - "flags": 135, + "offset": 264, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 634638221 + "hash": 3589331278 } } }, - "740633873": { - "name": "class std::list >", - "bases": [], - "hash": 740633873, - "properties": {} - }, - "1106102155": { - "name": "class SharedPointer", + "196391805": { + "name": "class QuestEffectInfo*", "bases": [ + "GameEffectInfo", "PropertyClass" ], - "hash": 1106102155, + "hash": 196391805, "properties": { - "m_ownerCharacterID": { - "type": "gid", + "m_effectName": { + "type": "std::string", "id": 0, "offset": 72, - "flags": 7, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2128119645 + "hash": 2029161513 }, - "m_ownerNameBlob": { - "type": "std::string", + "m_startReqs": { + "type": "class SharedPointer", "id": 1, - "offset": 80, + "offset": 104, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 2446827686 + "pointer": true, + "hash": 3147529602 }, - "m_isPublic": { - "type": "bool", + "m_startResults": { + "type": "class SharedPointer", "id": 2, - "offset": 112, + "offset": 120, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1728439822 + "pointer": true, + "hash": 2094517692 }, - "m_inviteAllCooldownTime": { - "type": "int", + "m_endResults": { + "type": "class SharedPointer", "id": 3, - "offset": 116, + "offset": 136, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, + "pointer": true, + "hash": 2118364133 + } + } + }, + "1052552006": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1052552006, + "properties": { + "m_visibility": { + "type": "unsigned char", + "id": 0, + "offset": 72, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, "pointer": false, - "hash": 1019161494 + "hash": 2550959800 }, - "m_playerList": { - "type": "class SharedPointer", - "id": 4, - "offset": 120, - "flags": 7, + "m_canUpgrade": { + "type": "int", + "id": 1, + "offset": 88, + "flags": 31, "container": "List", "dynamic": true, "singleton": false, - "pointer": true, - "hash": 2882119980 + "pointer": false, + "hash": 17860820 } } }, - "1515194509": { - "name": "class HousingGameManager*", + "619552646": { + "name": "class TeamHelpUpdateSigilInfoList", "bases": [ "PropertyClass" ], - "hash": 1515194509, - "properties": {} + "hash": 619552646, + "properties": { + "m_sigilInfoList": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2125475193 + } + } }, - "1893474322": { - "name": "class SharedPointer", + "1904087022": { + "name": "class SharedPointer", "bases": [ - "BehaviorInstance", + "GameEffectTemplate", "PropertyClass" ], - "hash": 1893474322, + "hash": 1904087022, "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", + "m_effectName": { + "type": "std::string", "id": 0, - "offset": 104, - "flags": 39, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 + "hash": 2029161513 }, - "m_itemList": { - "type": "class SharedPointer", + "m_effectCategory": { + "type": "std::string", "id": 1, - "offset": 112, - "flags": 19, - "container": "List", - "dynamic": true, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1983655699 + "pointer": false, + "hash": 1852673222 }, - "m_bankLimit": { + "m_sortOrder": { "type": "int", "id": 2, - "offset": 128, - "flags": 27, + "offset": 148, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1662903029 + "hash": 1411218206 }, - "m_sharedBankLimit": { - "type": "int", + "m_duration": { + "type": "double", "id": 3, - "offset": 132, - "flags": 27, + "offset": 192, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 566146380 - } - } - }, - "1515417353": { - "name": "class UIScaleConfigEntry", - "bases": [ - "PropertyClass" - ], - "hash": 1515417353, - "properties": { - "m_res": { - "type": "int", - "id": 0, - "offset": 72, + "hash": 2727932435 + }, + "m_stackingCategories": { + "type": "std::string", + "id": 4, + "offset": 160, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1774497525 + }, + "m_isPersistent": { + "type": "bool", + "id": 5, + "offset": 153, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 267047684 + "hash": 923861920 }, - "m_microScale": { - "type": "float", - "id": 1, - "offset": 76, + "m_bIsOnPet": { + "type": "bool", + "id": 6, + "offset": 154, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1618708793 + "hash": 522593303 }, - "m_tinyScale": { - "type": "float", - "id": 2, - "offset": 80, + "m_isPublic": { + "type": "bool", + "id": 7, + "offset": 152, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 477118371 + "hash": 1728439822 }, - "m_smallScale": { - "type": "float", - "id": 3, - "offset": 84, + "m_visualEffectAddName": { + "type": "std::string", + "id": 8, + "offset": 200, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 491529176 + "hash": 3382086694 }, - "m_regularScale": { - "type": "float", - "id": 4, - "offset": 88, + "m_visualEffectRemoveName": { + "type": "std::string", + "id": 9, + "offset": 232, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1846588305 + "hash": 1541697323 }, - "m_largeScale": { - "type": "float", - "id": 5, - "offset": 92, + "m_onAddFunctorName": { + "type": "std::string", + "id": 10, + "offset": 280, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 710194858 + "hash": 1561843107 }, - "m_hugeScale": { - "type": "float", - "id": 6, - "offset": 96, + "m_onRemoveFunctorName": { + "type": "std::string", + "id": 11, + "offset": 312, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1882331208 + "hash": 2559017864 + }, + "m_stackingRule": { + "type": "enum STACKING_RULE", + "id": 12, + "offset": 144, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 431568889, + "enum_options": { + "STACKING_ALLOWED": 0, + "STACKING_NOSTACK": 1, + "STACKING_REPLACE": 2 + } + }, + "m_flags": { + "type": "unsigned int", + "id": 13, + "offset": 360, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1005801050, + "enum_options": { + "GardeningBonus": 1, + "DoublePetXP": 2, + "FreeRespec": 4, + "DailyQuestBonus": 8, + "MonsterMagic": 16, + "DailyPvPBonus": 32, + "FishingBonus": 64, + "CraftingBonus": 128, + "SecondChanceChestBonus": 256, + "DoubleScrollOfFortunePoints": 512, + "FasterEnergyRegeneration": 1024 + } } } }, - "744080461": { - "name": "class GuildAchievementDataList*", + "196388733": { + "name": "class QuestEffectInfo", "bases": [ + "GameEffectInfo", "PropertyClass" ], - "hash": 744080461, + "hash": 196388733, "properties": { - "m_guildAchievementDataList": { - "type": "class SharedPointer", + "m_effectName": { + "type": "std::string", "id": 0, "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2029161513 + }, + "m_startReqs": { + "type": "class SharedPointer", + "id": 1, + "offset": 104, "flags": 7, - "container": "List", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": true, - "hash": 1717126676 + "hash": 3147529602 + }, + "m_startResults": { + "type": "class SharedPointer", + "id": 2, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2094517692 + }, + "m_endResults": { + "type": "class SharedPointer", + "id": 3, + "offset": 136, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2118364133 } } }, - "1107860808": { - "name": "class GamebryoCamera", + "1903958814": { + "name": "class FXOverrideBehaviorTemplate", "bases": [ - "Camera", + "BehaviorTemplate", "PropertyClass" ], - "hash": 1107860808, + "hash": 1903958814, "properties": { - "m_coord": { - "type": "class Vector3D", + "m_behaviorName": { + "type": "std::string", "id": 0, "offset": 72, "flags": 7, @@ -384327,307 +48773,272 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 2448785881 + "hash": 3130754092 }, - "m_quat": { - "type": "class Quaternion", + "m_FXOverrideBehaviorInfo": { + "type": "class FXOverrideBehaviorInfo", "id": 1, - "offset": 84, + "offset": 120, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2148807035 - }, - "m_mat": { - "type": "class Matrix3x3", - "id": 2, - "offset": 100, + "hash": 1746411198 + } + } + }, + "1477429688": { + "name": "class SharedPointer", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 1477429688, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1746928484 + "hash": 3130754092 } } }, - "743024801": { - "name": "class ClientConfirmOption", + "1052737453": { + "name": "class RecipeTemplate*", "bases": [ - "ConfirmOption", - "ServiceOptionBase", + "CoreTemplate", "PropertyClass" ], - "hash": 743024801, + "hash": 1052737453, "properties": { - "m_serviceName": { - "type": "std::string", + "m_behaviors": { + "type": "class BehaviorTemplate*", "id": 0, "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, + "flags": 7, + "container": "Vector", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 2206028813 + "pointer": true, + "hash": 1197808594 }, - "m_iconKey": { + "m_recipeName": { "type": "std::string", "id": 1, - "offset": 168, - "flags": 31, + "offset": 136, + "flags": 134217735, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2457138637 + "hash": 3311832788 }, - "m_displayKey": { - "type": "std::string", + "m_ingredients": { + "type": "class Ingredient*", "id": 2, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, + "offset": 272, + "flags": 7, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 3023276954 + "pointer": true, + "hash": 1061809494 }, - "m_serviceIndex": { - "type": "unsigned int", + "m_displayKey": { + "type": "std::string", "id": 3, - "offset": 204, - "flags": 31, + "offset": 240, + "flags": 8388615, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2103126710 + "hash": 3023276954 }, - "m_forceInteract": { - "type": "bool", + "m_itemID": { + "type": "gid", "id": 4, - "offset": 200, - "flags": 31, + "offset": 96, + "flags": 33554439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1705789564 + "hash": 569545460 }, - "m_confirmMessageTitleKey": { + "m_spellName": { "type": "std::string", "id": 5, - "offset": 216, - "flags": 31, + "offset": 104, + "flags": 268435463, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1941136953 + "hash": 2688485244, + "enum_options": { + "__BASECLASS": "SpellTemplate" + } }, - "m_confirmMessageTitleKeyAdvancedMode": { + "m_adjectives": { "type": "std::string", "id": 6, - "offset": 248, - "flags": 31, - "container": "Static", - "dynamic": false, + "offset": 288, + "flags": 7, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 3219201588 + "hash": 2967855037 }, - "m_confirmMessageKey": { - "type": "std::string", + "m_cookTime": { + "type": "int", "id": 7, - "offset": 280, - "flags": 31, + "offset": 172, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2088579351 + "hash": 1895782037 }, - "m_confirmMessageKeyAdvancedMode": { - "type": "std::string", + "m_goldCost": { + "type": "int", "id": 8, - "offset": 312, - "flags": 31, + "offset": 176, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2417239570 + "hash": 444550297 }, - "m_promptSound": { - "type": "std::string", + "m_crownsCost": { + "type": "int", "id": 9, - "offset": 344, - "flags": 31, + "offset": 180, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3178681510 + "hash": 1592212719 }, - "m_promptSoundAdvancedMode": { - "type": "std::string", + "m_arenaPointCost": { + "type": "int", "id": 10, - "offset": 376, - "flags": 31, + "offset": 184, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1739626529 + "hash": 1819621796 }, - "m_acceptKey": { - "type": "std::string", + "m_pvpCurrencyCost": { + "type": "int", "id": 11, - "offset": 472, - "flags": 31, + "offset": 188, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3325790708 + "hash": 645595444 }, - "m_declineKey": { - "type": "std::string", + "m_pvpTourneyCurrencyCost": { + "type": "int", "id": 12, - "offset": 504, - "flags": 31, + "offset": 192, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1679578008 + "hash": 517874954 }, - "m_optionToConfirm": { - "type": "class SharedPointer", + "m_school": { + "type": "std::string", "id": 13, - "offset": 536, - "flags": 31, + "offset": 208, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1224791766 + "pointer": false, + "hash": 2438566051 }, - "m_ignoreOption": { - "type": "std::string", + "m_purchaseRequirements": { + "type": "class RequirementList*", "id": 14, - "offset": 408, - "flags": 31, + "offset": 200, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1667595832 + "pointer": true, + "hash": 3174641793 }, - "m_ignoreAdvancedModeOption": { + "m_holidayFlag": { "type": "std::string", "id": 15, - "offset": 440, - "flags": 31, + "offset": 320, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2665095027 - } - } - }, - "1106494485": { - "name": "class PetTalentsTriggeredSpells*", - "bases": [ - "PropertyClass" - ], - "hash": 1106494485, - "properties": { - "m_petTalentsTriggeredSpells": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, + "hash": 2994795359 + }, + "m_itemLootTable": { + "type": "std::string", + "id": 16, + "offset": 352, "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2245729734 - } - } - }, - "1895338246": { - "name": "class SharedPointer", - "bases": [ - "AggroBehavior", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1895338246, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 - } - } - }, - "741293040": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 741293040, - "properties": { - "m_set": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, + "hash": 2176436048 + }, + "m_alternateDescription": { + "type": "std::string", + "id": 17, + "offset": 384, + "flags": 8388615, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 848667448 + "pointer": false, + "hash": 2784283583 }, - "m_cost": { - "type": "unsigned int", - "id": 1, - "offset": 88, + "m_displayRequirements": { + "type": "class RequirementList*", + "id": 18, + "offset": 416, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 430682758 + "pointer": true, + "hash": 3646782876 } } }, - "1106377992": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1106377992, - "properties": {} - }, - "1517921756": { - "name": "class UpdatePipsCinematicAction", + "619657328": { + "name": "class AnimateActorCinematicAction*", "bases": [ + "ActorCinematicAction", "CinematicAction", "PropertyClass" ], - "hash": 1517921756, + "hash": 619657328, "properties": { "m_timeOffset": { "type": "float", @@ -384639,126 +49050,161 @@ "singleton": false, "pointer": false, "hash": 2237098605 - } - } - }, - "1894078995": { - "name": "class CollisionBehavior", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1894078995, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 - } - } - }, - "1516851527": { - "name": "class SharedPointer", - "bases": [ - "PlayerAggroBehavior", - "AggroBehavior", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1516851527, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, + "hash": 2285866132 + }, + "m_animation": { + "type": "std::string", + "id": 2, + "offset": 120, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 - } - } - }, - "1893781516": { - "name": "class SharedPointer", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1893781516, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, + "hash": 3431428731 + }, + "m_backupAnimation": { + "type": "std::string", + "id": 3, + "offset": 152, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 + "hash": 1661537937 }, - "m_housingMountOriginalGID": { - "type": "gid", - "id": 1, - "offset": 112, - "flags": 65536, + "m_default": { + "type": "bool", + "id": 4, + "offset": 184, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1220139473 + "hash": 1014207576 }, - "m_housingPetPrimaryColor": { - "type": "int", - "id": 2, - "offset": 120, - "flags": 65536, + "m_evenWhileDead": { + "type": "bool", + "id": 5, + "offset": 185, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2100875368 + }, + "m_fadeOutAfter": { + "type": "bool", + "id": 6, + "offset": 186, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2006083917 + }, + "m_startsImportantAnimations": { + "type": "bool", + "id": 7, + "offset": 187, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 734711685 + }, + "m_forcesStageToWait": { + "type": "bool", + "id": 8, + "offset": 188, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 74507905 + }, + "m_storeAnimForLateComers": { + "type": "bool", + "id": 9, + "offset": 190, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 634303291 + } + } + }, + "200575140": { + "name": "class WinAnimScaleSpeed*", + "bases": [ + "WinAnimScale", + "WindowAnimation", + "PropertyClass" + ], + "hash": 200575140, + "properties": { + "m_bUseDeepCopy": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 525135139 + "hash": 433380635 }, - "m_housingPetPattern": { - "type": "int", - "id": 3, - "offset": 124, - "flags": 65536, + "m_scale": { + "type": "float", + "id": 1, + "offset": 80, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 165011646 + "hash": 899693439 }, - "m_housingPetSecondaryColor": { - "type": "int", - "id": 4, - "offset": 128, - "flags": 65536, + "m_fSpeed": { + "type": "float", + "id": 2, + "offset": 96, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 358656263 + "hash": 503609006 } } }, - "743789384": { - "name": "class SharedPointer", + "1478728199": { + "name": "class GamebryoClientDerbyTerrainEffect", "bases": [ - "DerbyModifyRate", + "ClientDerbyTerrainEffect", + "DerbyTerrainEffect", "DerbyEffect", "PropertyClass" ], - "hash": 743789384, + "hash": 1478728199, "properties": { "m_buffType": { "type": "enum DerbyTalentBuffType", @@ -384894,185 +49340,67 @@ "pointer": false, "hash": 2840988582 }, - "m_nRateChange": { - "type": "int", + "m_terrainType": { + "type": "enum PetDerbyTrackTerrain", "id": 11, "offset": 376, - "flags": 31, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 797681786 - } - } - }, - "1106997031": { - "name": "class WhirlyBurlyGameState", - "bases": [ - "PropertyClass" - ], - "hash": 1106997031, - "properties": { - "m_boardKeyList": { - "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2327762042 - }, - "m_boardValueList": { - "type": "unsigned int", - "id": 1, - "offset": 88, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1770021678 - }, - "m_pieceKeyList": { - "type": "unsigned int", - "id": 2, - "offset": 104, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1090726552 - }, - "m_pieceValueList": { - "type": "unsigned int", - "id": 3, - "offset": 120, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1110620364 - } - } - }, - "743775317": { - "name": "class BattleCardShopOffering*", - "bases": [ - "PropertyClass" - ], - "hash": 743775317, - "properties": { - "m_battleCardsForSale": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2232728892 - }, - "m_givenSpells": { - "type": "class SharedPointer", - "id": 1, - "offset": 88, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 3004531772 + "hash": 2688629581, + "enum_options": { + "Cobblestone": 0, + "Water": 1, + "Grass": 2, + "Clay": 3, + "Dirt": 4, + "Mud": 5 + } }, - "m_maxTotalBattleCards": { - "type": "int", - "id": 2, - "offset": 104, + "m_fEffectReapplyTime": { + "type": "float", + "id": 12, + "offset": 380, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 142607341 + "hash": 1483497206 }, - "m_nextLevelBattleCards": { - "type": "std::string", - "id": 3, - "offset": 112, + "m_effectsToApply": { + "type": "class SharedPointer", + "id": 13, + "offset": 384, "flags": 31, "container": "List", "dynamic": true, "singleton": false, - "pointer": false, - "hash": 2945949819 - } - } - }, - "1106997007": { - "name": "class WhirlyBurlyGameState*", - "bases": [ - "PropertyClass" - ], - "hash": 1106997007, - "properties": { - "m_boardKeyList": { - "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2327762042 - }, - "m_boardValueList": { - "type": "unsigned int", - "id": 1, - "offset": 88, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1770021678 - }, - "m_pieceKeyList": { - "type": "unsigned int", - "id": 2, - "offset": 104, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1090726552 + "pointer": true, + "hash": 2042624288 }, - "m_pieceValueList": { - "type": "unsigned int", - "id": 3, - "offset": 120, - "flags": 7, + "m_permanentEffects": { + "type": "class SharedPointer", + "id": 14, + "offset": 400, + "flags": 31, "container": "List", "dynamic": true, "singleton": false, - "pointer": false, - "hash": 1110620364 + "pointer": true, + "hash": 2129171809 } } }, - "1894259625": { - "name": "class SharedPointer", + "1905125237": { + "name": "class ProvidePetPowerTemplate*", "bases": [ "GameEffectTemplate", "PropertyClass" ], - "hash": 1894259625, + "hash": 1905125237, "properties": { "m_effectName": { "type": "std::string", @@ -385221,52 +49549,18 @@ "STACKING_NOSTACK": 1, "STACKING_REPLACE": 2 } - }, - "m_templateID": { - "type": "unsigned int", - "id": 13, - "offset": 360, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1286746870 - } - } - }, - "1519530392": { - "name": "class ObstacleCourseSpeedUpBehavior", - "bases": [ - "ObstacleCourseObstaclePathBase", - "ObstacleCourseObstacleBehavior", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1519530392, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 } } }, - "743816277": { - "name": "class BattleCardShopOffering", + "200235874": { + "name": "class PromoPromotionList", "bases": [ "PropertyClass" ], - "hash": 743816277, + "hash": 200235874, "properties": { - "m_battleCardsForSale": { - "type": "class SharedPointer", + "m_promoPromotions": { + "type": "class SharedPointer", "id": 0, "offset": 72, "flags": 31, @@ -385274,615 +49568,20 @@ "dynamic": true, "singleton": false, "pointer": true, - "hash": 2232728892 - }, - "m_givenSpells": { - "type": "class SharedPointer", - "id": 1, - "offset": 88, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 3004531772 - }, - "m_maxTotalBattleCards": { - "type": "int", - "id": 2, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 142607341 - }, - "m_nextLevelBattleCards": { - "type": "std::string", - "id": 3, - "offset": 112, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2945949819 - } - } - }, - "1125070434": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1125070434, - "properties": { - "m_accuracyScalarBase": { - "type": "float", - "id": 0, - "offset": 76, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": true, - "pointer": false, - "hash": 1121339315 - }, - "m_powerPipScalarBase": { - "type": "float", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": true, - "pointer": false, - "hash": 137046174 - }, - "m_damageResistanceScalarBase": { - "type": "float", - "id": 2, - "offset": 84, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": true, - "pointer": false, - "hash": 926091704 - }, - "m_accuracyScalingFactor": { - "type": "float", - "id": 3, - "offset": 88, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": true, - "pointer": false, - "hash": 1629583970 - }, - "m_powerPipScalingFactor": { - "type": "float", - "id": 4, - "offset": 92, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": true, - "pointer": false, - "hash": 290142061 - }, - "m_damageResistanceScalingFactor": { - "type": "float", - "id": 5, - "offset": 96, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": true, - "pointer": false, - "hash": 845265479 - }, - "m_criticalHitLevelThreshold": { - "type": "int", - "id": 6, - "offset": 100, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": true, - "pointer": false, - "hash": 278823695 - }, - "m_blockLevelThreshold": { - "type": "int", - "id": 7, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": true, - "pointer": false, - "hash": 639576458 - }, - "m_accuracyLevelThreshold": { - "type": "int", - "id": 8, - "offset": 108, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": true, - "pointer": false, - "hash": 458488426 - }, - "m_powerPipLevelThreshold": { - "type": "int", - "id": 9, - "offset": 112, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": true, - "pointer": false, - "hash": 1354062037 - }, - "m_damageResistanceLevelThreshold": { - "type": "int", - "id": 10, - "offset": 116, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": true, - "pointer": false, - "hash": 345781999 - }, - "m_critAndBlockLevelData": { - "type": "class SharedPointer", - "id": 11, - "offset": 136, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": true, - "pointer": true, - "hash": 2466687771 - }, - "m_criticalDamageAddPercent": { - "type": "float", - "id": 12, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": true, - "pointer": false, - "hash": 169683323 - }, - "m_criticalDamageAddPercentPvP": { - "type": "float", - "id": 13, - "offset": 124, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": true, - "pointer": false, - "hash": 1404103985 - }, - "m_criticalHealAddPercent": { - "type": "float", - "id": 14, - "offset": 128, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": true, - "pointer": false, - "hash": 637250262 - }, - "m_criticalHealAddPercentPvP": { - "type": "float", - "id": 15, - "offset": 132, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": true, - "pointer": false, - "hash": 297645228 - }, - "m_pipConversionLevelThreshold": { - "type": "int", - "id": 16, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": true, - "pointer": false, - "hash": 469925422 - }, - "m_pipConversionLevelData": { - "type": "class SharedPointer", - "id": 17, - "offset": 160, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": true, - "pointer": true, - "hash": 599333160 - }, - "m_baseCritDivisor": { - "type": "int", - "id": 18, - "offset": 176, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": true, - "pointer": false, - "hash": 1793948871 - }, - "m_baseBlockDivisor": { - "type": "int", - "id": 19, - "offset": 180, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": true, - "pointer": false, - "hash": 331192160 - }, - "m_critScalarDivisor": { - "type": "int", - "id": 20, - "offset": 184, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": true, - "pointer": false, - "hash": 353250050 - }, - "m_blockScalarDivisor": { - "type": "int", - "id": 21, - "offset": 188, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": true, - "pointer": false, - "hash": 778321147 - }, - "m_finalCritMedian1": { - "type": "float", - "id": 22, - "offset": 192, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": true, - "pointer": false, - "hash": 1779518738 - }, - "m_finalCritMedian2": { - "type": "float", - "id": 23, - "offset": 196, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": true, - "pointer": false, - "hash": 1779518739 - }, - "m_finalBlockMedian1": { - "type": "float", - "id": 24, - "offset": 200, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": true, - "pointer": false, - "hash": 2233508235 - }, - "m_finalBlockMedian2": { - "type": "float", - "id": 25, - "offset": 204, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": true, - "pointer": false, - "hash": 2233508236 - }, - "m_baseCritDivisorPvP": { - "type": "int", - "id": 26, - "offset": 208, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": true, - "pointer": false, - "hash": 650248157 - }, - "m_baseBlockDivisorPvP": { - "type": "int", - "id": 27, - "offset": 212, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": true, - "pointer": false, - "hash": 1814544342 - }, - "m_critScalarDivisorPvP": { - "type": "int", - "id": 28, - "offset": 216, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": true, - "pointer": false, - "hash": 2087471160 - }, - "m_blockScalarDivisorPvP": { - "type": "int", - "id": 29, - "offset": 220, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": true, - "pointer": false, - "hash": 668812177 - }, - "m_finalCritMedian1PvP": { - "type": "float", - "id": 30, - "offset": 224, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": true, - "pointer": false, - "hash": 849935720 - }, - "m_finalCritMedian2PvP": { - "type": "float", - "id": 31, - "offset": 228, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": true, - "pointer": false, - "hash": 849971657 - }, - "m_finalBlockMedian1PvP": { - "type": "float", - "id": 32, - "offset": 232, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": true, - "pointer": false, - "hash": 1437215553 - }, - "m_finalBlockMedian2PvP": { - "type": "float", - "id": 33, - "offset": 236, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": true, - "pointer": false, - "hash": 1437251490 - }, - "m_archmasteryFillRateScaler": { - "type": "float", - "id": 34, - "offset": 240, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": true, - "pointer": false, - "hash": 266116071 - }, - "m_archmasteryFillRateMax": { - "type": "float", - "id": 35, - "offset": 244, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": true, - "pointer": false, - "hash": 2006811155 - }, - "m_archmasteryFullnessMinPvE": { - "type": "float", - "id": 36, - "offset": 248, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": true, - "pointer": false, - "hash": 1196194389 - }, - "m_archmasteryFullnessMinPvP": { - "type": "float", - "id": 37, - "offset": 252, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": true, - "pointer": false, - "hash": 1196194400 - }, - "m_archmasteryConversionCost": { - "type": "float", - "id": 38, - "offset": 256, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": true, - "pointer": false, - "hash": 1687582297 - }, - "m_archmasteryPowerPipCost": { - "type": "float", - "id": 39, - "offset": 260, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": true, - "pointer": false, - "hash": 411547625 - } - } - }, - "2005647508": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 2005647508, - "properties": { - "m_templateID": { - "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 71, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1286746870 - }, - "m_actorName": { - "type": "std::string", - "id": 1, - "offset": 96, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2050810421 - }, - "m_animations": { - "type": "class SharedPointer", - "id": 2, - "offset": 128, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2741681697 - }, - "m_templateIDs": { - "type": "unsigned int", - "id": 3, - "offset": 80, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1335199401 - } - } - }, - "1107364317": { - "name": "class PetTomePetTotalList*", - "bases": [ - "PropertyClass" - ], - "hash": 1107364317, - "properties": { - "m_petTomePetTotalList": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 449762511 - }, - "m_petTemplateList": { - "type": "unsigned int", - "id": 1, - "offset": 88, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 567776494 - } - } - }, - "1947606906": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1947606906, - "properties": { - "m_targetState": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2472683907 - }, - "m_transitionState": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2166469639 + "hash": 2231640821 } } }, - "328097711": { - "name": "class StatGlobe", + "1053587634": { + "name": "class DyeShopWindow::DyeShopItem", "bases": [ - "ControlSprite", + "InventoryPageWindow::InventoryItem", + "ControlCheckBox", + "ControlButton", "Window", "PropertyClass" ], - "hash": 328097711, + "hash": 1053587634, "properties": { "m_sName": { "type": "std::string", @@ -385918,11 +49617,8 @@ "hash": 983582334, "enum_options": { "HAS_BACK": 1, - "SCALE_CHILDREN": 2, "CAN_MOVE": 4, "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "FOCUS_LOCKED": 64, "CAN_FOCUS": 128, "CAN_DOCK": 32, "DO_NOT_CAPTURE_MOUSE": 256, @@ -385934,7 +49630,12 @@ "USE_ALPHA_BOUNDS": 8192, "AUTO_GROW": 16384, "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152 + "AUTO_RESIZE": 49152, + "EFFECT_SCALE": 67108864, + "LOCK_ICON_SIZE": 33554432, + "LEFT_TEXT": 536870912, + "NO_FIT_TEXT": 1073741824, + "CHECKBOX_TEXTOVERIMAGE": 16777216 } }, "m_Flags": { @@ -385960,10 +49661,7 @@ "PARENT_HEIGHT": 524288, "HCENTER": 32768, "VCENTER": 65536, - "DISABLED": 2147483648, - "ONE_SHOT": 8388608, - "FLIPPED_HORIZONTAL": 16777216, - "FLIPPED_VERTICAL": 33554432 + "DISABLED": 2147483648 } }, "m_Window": { @@ -386098,2020 +49796,1794 @@ "pointer": false, "hash": 3091503757 }, - "m_pMaterial": { - "type": "class SharedPointer", + "m_bToggle": { + "type": "bool", "id": 16, - "offset": 592, + "offset": 608, "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3479277078 + "pointer": false, + "hash": 2071810903 }, - "m_fRotation": { - "type": "float", + "m_bButtonDown": { + "type": "bool", "id": 17, - "offset": 608, + "offset": 609, "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1175400173 + "hash": 840041705 }, - "m_Color": { - "type": "class Color", + "m_sLabel": { + "type": "std::wstring", "id": 18, - "offset": 584, - "flags": 262279, + "offset": 616, + "flags": 4194439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1753714077 + "hash": 2207009163 }, - "m_textColor": { - "type": "class Color", + "m_labelOffset": { + "type": "class Rect", "id": 19, - "offset": 612, - "flags": 262279, + "offset": 832, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2528109250 + "hash": 1990646723 }, - "m_textComponent": { - "type": "class TextComponent", + "m_pButton": { + "type": "class SharedPointer", "id": 20, - "offset": 616, + "offset": 656, "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 3491704390 + "pointer": true, + "hash": 1543855875 }, - "m_amount": { - "type": "int", + "m_HotKey": { + "type": "unsigned int", "id": 21, - "offset": 800, + "offset": 672, "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 248546638 - } - } - }, - "328536954": { - "name": "class BountyGoalTemplate*", - "bases": [ - "GoalTemplate", - "CoreTemplate", - "PropertyClass" - ], - "hash": 328536954, - "properties": { - "m_behaviors": { - "type": "class BehaviorTemplate*", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1197808594 + "hash": 1631553409 }, - "m_goalName": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 7, + "m_Color": { + "type": "class Color", + "id": 22, + "offset": 676, + "flags": 262279, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1521627807 + "hash": 1753714077 }, - "m_goalNameID": { - "type": "unsigned int", - "id": 2, - "offset": 496, - "flags": 7, + "m_bCursorOver": { + "type": "bool", + "id": 23, + "offset": 689, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 403158846 + "hash": 283981103 }, - "m_goalTitle": { - "type": "std::string", - "id": 3, - "offset": 136, - "flags": 8388615, + "m_bAbortWhenCursorNotOver": { + "type": "bool", + "id": 24, + "offset": 706, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2291910240 + "hash": 325405258 }, - "m_goalUnderway": { - "type": "std::string", - "id": 4, - "offset": 168, - "flags": 8388615, + "m_bHotKeyDown": { + "type": "bool", + "id": 25, + "offset": 680, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3153144269 + "hash": 616989185 }, - "m_hyperlink": { - "type": "std::string", - "id": 5, - "offset": 200, - "flags": 8388615, + "m_fTime": { + "type": "float", + "id": 26, + "offset": 684, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2887798993 + "hash": 883746156 }, - "m_completeText": { - "type": "std::string", - "id": 6, - "offset": 232, - "flags": 8388615, + "m_bGreyed": { + "type": "bool", + "id": 27, + "offset": 688, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2767458393 - }, - "m_completeResults": { - "type": "class ResultList*", - "id": 7, - "offset": 440, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1964258099 - }, - "m_goalRequirements": { - "type": "class RequirementList*", - "id": 8, - "offset": 448, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2979967145 + "hash": 1566556053 }, - "m_tallyCounter": { - "type": "class TallyCounterTemplate*", - "id": 9, - "offset": 456, - "flags": 7, + "m_fMaxScale": { + "type": "float", + "id": 28, + "offset": 692, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1884546193 + "pointer": false, + "hash": 2070186635 }, - "m_locationName": { - "type": "std::string", - "id": 10, - "offset": 272, - "flags": 8388615, + "m_fScaleSpeed": { + "type": "float", + "id": 29, + "offset": 696, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1824218389 + "hash": 1457135702 }, - "m_displayImage1": { - "type": "std::string", - "id": 11, - "offset": 304, - "flags": 131079, + "m_bUseDropShadow": { + "type": "bool", + "id": 30, + "offset": 704, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1959572133 + "hash": 93063037 }, - "m_displayImage2": { - "type": "std::string", - "id": 12, - "offset": 336, - "flags": 131079, + "m_bUseOutline": { + "type": "bool", + "id": 31, + "offset": 705, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1959572134 - }, - "m_clientTags": { - "type": "std::string", - "id": 13, - "offset": 368, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2319030025 - }, - "m_genericEvents": { - "type": "std::string", - "id": 14, - "offset": 384, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 3466670829 + "hash": 744292994 }, - "m_autoQualify": { - "type": "bool", - "id": 15, - "offset": 400, - "flags": 7, + "m_pGreyedState": { + "type": "class SharedPointer", + "id": 32, + "offset": 768, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1878907431 + "pointer": true, + "hash": 2703352263 }, - "m_autoComplete": { - "type": "bool", - "id": 16, - "offset": 401, - "flags": 7, + "m_pNormalState": { + "type": "class SharedPointer", + "id": 33, + "offset": 752, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1302545445 + "pointer": true, + "hash": 1887909808 }, - "m_destinationZone": { - "type": "std::string", - "id": 17, - "offset": 408, - "flags": 268435463, + "m_pHighlightedState": { + "type": "class SharedPointer", + "id": 34, + "offset": 784, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 2605356153, - "enum_options": { - "__BASECLASS": "ZoneData" - } + "pointer": true, + "hash": 2200177608 }, - "m_dialogList": { - "type": "class ActorDialogListBase*", - "id": 18, - "offset": 264, - "flags": 7, + "m_pSelectedState": { + "type": "class SharedPointer", + "id": 35, + "offset": 800, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": true, - "hash": 1909154969 + "hash": 2266776432 }, - "m_goalType": { - "type": "enum GoalTemplate::GOAL_TYPE", - "id": 19, - "offset": 96, - "flags": 2097159, + "m_pDepressedState": { + "type": "class SharedPointer", + "id": 36, + "offset": 816, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1488021149, - "enum_options": { - "GOAL_TYPE_UNKNOWN": 0, - "GOAL_TYPE_BOUNTY": 1, - "GOAL_TYPE_BOUNTYCOLLECT": 2, - "GOAL_TYPE_SCAVENGE": 3, - "GOAL_TYPE_PERSONA": 4, - "GOAL_TYPE_WAYPOINT": 5, - "GOAL_TYPE_SCAVENGEFAKE": 6, - "GOAL_TYPE_ACHIEVERANK": 7, - "GOAL_TYPE_USAGE": 8, - "GOAL_TYPE_COMPLETEQUEST": 9, - "GOAL_TYPE_SOCIARANK": 10, - "GOAL_TYPE_SOCIACURRENCY": 11, - "GOAL_TYPE_SOCIAMINIGAME": 12, - "GOAL_TYPE_SOCIAGIVEITEM": 13, - "GOAL_TYPE_SOCIAGETITEM": 14, - "GOAL_TYPE_COLLECTAFTERBOUNTY": 15, - "GOAL_TYPE_ENCOUNTER_WAYPOINT_FOREACH": 16 - } + "pointer": true, + "hash": 1878185798 }, - "m_noQuestHelper": { - "type": "bool", - "id": 20, - "offset": 500, - "flags": 7, + "m_nGroupID": { + "type": "int", + "id": 37, + "offset": 880, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 578010882, - "enum_options": { - "__DEFAULT": 0 - } + "hash": 403966850 }, - "m_petOnlyQuest": { + "m_bChecked": { "type": "bool", - "id": 21, - "offset": 501, - "flags": 7, + "id": 38, + "offset": 884, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 679359344, - "enum_options": { - "__DEFAULT": 0 - } + "hash": 958955100 }, - "m_activateResults": { - "type": "class ResultList*", - "id": 22, - "offset": 504, - "flags": 7, + "m_pCheckedState": { + "type": "class SharedPointer", + "id": 39, + "offset": 888, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": true, - "hash": 3790153995 + "hash": 1210539694 }, - "m_hideGoalFloatyText": { - "type": "bool", - "id": 23, - "offset": 512, - "flags": 7, + "m_pCheckedGreyedState": { + "type": "class SharedPointer", + "id": 40, + "offset": 904, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1919383204, - "enum_options": { - "__DEFAULT": 0 - } - }, - "m_npcAdjectives": { - "type": "std::string", - "id": 24, - "offset": 520, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 3044559358 + "pointer": true, + "hash": 2702030126 }, - "m_bountyTotal": { - "type": "int", - "id": 25, - "offset": 536, - "flags": 7, + "m_pCheckedHighlightedState": { + "type": "class SharedPointer", + "id": 41, + "offset": 920, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1943105087 + "pointer": true, + "hash": 1320097679 }, - "m_bountyType": { - "type": "enum BountyGoalTemplate::BOUNTY_TYPE", - "id": 26, - "offset": 540, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3703892338, - "enum_options": { - "BountyGoalTemplate::BT_MOB_KILL": 0, - "BountyGoalTemplate::BT_MOB_FLEE": 1 - } - } - } - }, - "746172267": { - "name": "class HelpChatElement", - "bases": [ - "PropertyClass" - ], - "hash": 746172267, - "properties": { - "m_labelKey": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 8388615, + "m_pCheckedDepressedState": { + "type": "class SharedPointer", + "id": 42, + "offset": 936, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 3291650660 + "pointer": true, + "hash": 1609188685 }, - "m_tipID": { - "type": "gid", - "id": 1, - "offset": 104, - "flags": 33554439, + "m_pEquipNormalState": { + "type": "class SharedPointer", + "id": 43, + "offset": 976, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 810892562 + "pointer": true, + "hash": 1322058516 }, - "m_children": { - "type": "class HelpChatElement*", - "id": 2, - "offset": 112, + "m_pEquipPressState": { + "type": "class SharedPointer", + "id": 44, + "offset": 992, "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1958485829 - } - } - }, - "1109114684": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1109114684, - "properties": { - "m_itemID": { - "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 780964329 - } - } - }, - "745039415": { - "name": "class CastleToursFavoritesBehaviorBase*", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 745039415, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 223437287 + "pointer": true, + "hash": 3019605144 }, - "m_castleToursFavoritesData": { - "type": "std::string", - "id": 1, - "offset": 128, - "flags": 575, + "m_pEquipHighlightState": { + "type": "class SharedPointer", + "id": 45, + "offset": 1008, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1708015073 - } - } - }, - "1107860968": { - "name": "class GamebryoCamera*", - "bases": [ - "Camera", - "PropertyClass" - ], - "hash": 1107860968, - "properties": { - "m_coord": { - "type": "class Vector3D", - "id": 0, - "offset": 72, + "pointer": true, + "hash": 2559056739 + }, + "m_pEquipCheckState": { + "type": "class SharedPointer", + "id": 46, + "offset": 1024, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 2448785881 + "pointer": true, + "hash": 2420681417 }, - "m_quat": { - "type": "class Quaternion", - "id": 1, - "offset": 84, + "m_pEquipCheckPressState": { + "type": "class SharedPointer", + "id": 47, + "offset": 1040, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 2148807035 + "pointer": true, + "hash": 2063281462 }, - "m_mat": { - "type": "class Matrix3x3", - "id": 2, - "offset": 100, + "m_pEquipCheckHighlightState": { + "type": "class SharedPointer", + "id": 48, + "offset": 1056, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1746928484 + "pointer": true, + "hash": 2990990081 } } }, - "1897468788": { - "name": "class RidableBehaviorTemplate", + "1477538450": { + "name": "class StringTable", "bases": [ - "BehaviorTemplate", "PropertyClass" ], - "hash": 1897468788, + "hash": 1477538450, "properties": { - "m_behaviorName": { - "type": "std::string", + "m_thousandSeparator": { + "type": "wchar_t", "id": 0, - "offset": 72, + "offset": 200, "flags": 7, "container": "Static", "dynamic": false, - "singleton": false, + "singleton": true, "pointer": false, - "hash": 3130754092 + "hash": 3735116682 }, - "m_icon": { - "type": "std::string", + "m_decimalCharacter": { + "type": "wchar_t", "id": 1, - "offset": 120, + "offset": 202, "flags": 7, "container": "Static", "dynamic": false, - "singleton": false, + "singleton": true, "pointer": false, - "hash": 1717182340 + "hash": 2802322863 }, - "m_title": { - "type": "std::string", + "m_defaultSpace": { + "type": "wchar_t", "id": 2, - "offset": 152, + "offset": 204, "flags": 7, "container": "Static", "dynamic": false, - "singleton": false, + "singleton": true, "pointer": false, - "hash": 2308614141 + "hash": 3126898340 }, - "m_promptText": { - "type": "std::string", + "m_numberPrecision": { + "type": "int", "id": 3, - "offset": 184, + "offset": 208, "flags": 7, "container": "Static", "dynamic": false, - "singleton": false, + "singleton": true, "pointer": false, - "hash": 1874125698 + "hash": 523838671 }, - "m_numberOfSlots": { - "type": "int", + "m_lowerToUpperList": { + "type": "class CharMap", "id": 4, "offset": 216, "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, + "container": "List", + "dynamic": true, + "singleton": true, "pointer": false, - "hash": 1235585933 + "hash": 542305079 }, - "m_rideType": { - "type": "int", + "m_upperToLowerList": { + "type": "class CharMap", "id": 5, - "offset": 220, + "offset": 232, "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, + "container": "List", + "dynamic": true, + "singleton": true, "pointer": false, - "hash": 1625839040 + "hash": 686618071 }, - "m_riderKFM": { - "type": "std::string", + "m_sortScoreList": { + "type": "class CharMap", "id": 6, - "offset": 224, + "offset": 248, "flags": 7, "container": "List", "dynamic": true, - "singleton": false, + "singleton": true, "pointer": false, - "hash": 3124565263 + "hash": 1662028035 }, - "m_rideDuration": { - "type": "float", + "m_typeSpaces": { + "type": "unsigned short", "id": 7, - "offset": 240, + "offset": 264, "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, + "container": "List", + "dynamic": true, + "singleton": true, "pointer": false, - "hash": 1239878913 + "hash": 931738089 }, - "m_zOffset": { - "type": "float", + "m_typePunctuation": { + "type": "unsigned short", "id": 8, - "offset": 244, + "offset": 280, "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, + "container": "List", + "dynamic": true, + "singleton": true, "pointer": false, - "hash": 736134072 + "hash": 2553388772 }, - "m_newRideType": { - "type": "enum NewRideTypes", + "m_typeAlphaNumeric": { + "type": "unsigned short", "id": 9, - "offset": 248, - "flags": 2097159, + "offset": 296, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": true, + "pointer": false, + "hash": 696068547 + }, + "m_typeAlpha": { + "type": "unsigned short", + "id": 10, + "offset": 312, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": true, + "pointer": false, + "hash": 1715008368 + }, + "m_typeDigit": { + "type": "unsigned short", + "id": 11, + "offset": 328, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": true, + "pointer": false, + "hash": 1718448571 + }, + "m_typeHexDigit": { + "type": "unsigned short", + "id": 12, + "offset": 344, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": true, + "pointer": false, + "hash": 990261184 + }, + "m_minFontSizeForDropshadow": { + "type": "float", + "id": 13, + "offset": 212, + "flags": 7, "container": "Static", "dynamic": false, - "singleton": false, + "singleton": true, "pointer": false, - "hash": 2665245566, - "enum_options": { - "NRT_UseRideType": 0, - "NRT_Chimney": 12 - } + "hash": 335078927 } } }, - "332198153": { - "name": "class IslandSpaceOption*", + "1904215481": { + "name": "class SharedPointer", "bases": [ - "ServiceOptionBase", "PropertyClass" ], - "hash": 332198153, + "hash": 1904215481, "properties": { - "m_serviceName": { - "type": "std::string", + "m_segRequirnments": { + "type": "class SegmentationRequrinment", "id": 0, "offset": 72, "flags": 31, - "container": "Static", - "dynamic": false, + "container": "Vector", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 2206028813 + "hash": 1161472684 }, - "m_iconKey": { - "type": "std::string", + "m_bApplyDiscount": { + "type": "bool", "id": 1, - "offset": 168, + "offset": 96, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2457138637 + "hash": 1270539076 }, - "m_displayKey": { - "type": "std::string", + "m_nDiscountPrice": { + "type": "unsigned int", "id": 2, - "offset": 104, + "offset": 100, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3023276954 + "hash": 1342003831 }, - "m_serviceIndex": { + "m_nDiscountPercent": { "type": "unsigned int", "id": 3, - "offset": 204, + "offset": 104, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2103126710 + "hash": 333850677 }, - "m_forceInteract": { + "m_bShowStrikethruPrice": { "type": "bool", "id": 4, - "offset": 200, + "offset": 108, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1705789564 + "hash": 1930806814 } } }, - "745497078": { - "name": "class SharedPointer", + "199659650": { + "name": "class ClientJewelSocketBehavior*", "bases": [ - "SpellTemplate", - "CoreTemplate", + "JewelSocketBehaviorBase", + "BehaviorInstance", "PropertyClass" ], - "hash": 745497078, + "hash": 199659650, "properties": { - "m_behaviors": { - "type": "class BehaviorTemplate*", + "m_behaviorTemplateNameID": { + "type": "unsigned int", "id": 0, - "offset": 72, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1197808594 - }, - "m_name": { - "type": "std::string", - "id": 1, - "offset": 96, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1717359772 - }, - "m_description": { - "type": "std::string", - "id": 2, - "offset": 168, - "flags": 8388615, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1649374815 + "hash": 223437287 }, - "m_advancedDescription": { - "type": "std::string", - "id": 3, - "offset": 200, - "flags": 8388615, + "m_publicJewelInfo": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 3465713013 - }, - "m_displayName": { - "type": "std::string", - "id": 4, - "offset": 136, - "flags": 8388615, + "pointer": true, + "hash": 2051956582 + } + } + }, + "629469346": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 629469346, + "properties": { + "m_buyPriceMultiplier": { + "type": "int", + "id": 0, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2446900370 - }, - "m_spellBase": { - "type": "std::string", - "id": 5, - "offset": 248, - "flags": 268435463, + "hash": 999902276 + } + } + }, + "1478153784": { + "name": "class std::list >", + "bases": [], + "hash": 1478153784, + "properties": {} + }, + "623908784": { + "name": "class SharedPointer", + "bases": [ + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 623908784, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2688054198, - "enum_options": { - "__BASECLASS": "CinematicTemplate" - } - }, - "m_effects": { - "type": "class SharedPointer", - "id": 6, - "offset": 280, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 370726379 + "hash": 2237098605 }, - "m_sMagicSchoolName": { + "m_actor": { "type": "std::string", - "id": 7, - "offset": 312, + "id": 1, + "offset": 80, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2035693400 + "hash": 2285866132 }, - "m_sTypeName": { - "type": "std::string", - "id": 8, - "offset": 352, + "m_scaleDuration": { + "type": "float", + "id": 2, + "offset": 120, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3580785905 + "hash": 1764097637 }, - "m_trainingCost": { - "type": "int", - "id": 9, - "offset": 384, + "m_scaleTarget": { + "type": "float", + "id": 3, + "offset": 124, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 982588239 - }, - "m_accuracy": { - "type": "int", - "id": 10, - "offset": 388, + "hash": 1502791366 + } + } + }, + "1904489567": { + "name": "class AlchemyBehaviorTemplate", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 1904489567, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1636315493 + "hash": 3130754092 }, - "m_baseCost": { + "m_maxReagentsPerStack": { "type": "int", - "id": 11, - "offset": 232, + "id": 1, + "offset": 120, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1475151502 - }, - "m_creditsCost": { - "type": "int", - "id": 12, - "offset": 236, + "hash": 1052405942 + } + } + }, + "1056749377": { + "name": "class SG_GameInteraction", + "bases": [ + "PropertyClass" + ], + "hash": 1056749377, + "properties": { + "m_interactorOneName": { + "type": "std::string", + "id": 0, + "offset": 72, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 715313825 + "hash": 3615982777 }, - "m_pvpCurrencyCost": { - "type": "int", - "id": 13, - "offset": 240, + "m_interactorTwoName": { + "type": "std::string", + "id": 1, + "offset": 104, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 645595444 + "hash": 1847465777 }, - "m_pvpTourneyCurrencyCost": { - "type": "int", - "id": 14, - "offset": 244, + "m_eventsRaisedOnOne": { + "type": "std::string", + "id": 2, + "offset": 136, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 517874954 - }, - "m_boosterPackIcon": { + "hash": 2412613351 + } + } + }, + "622847140": { + "name": "class ControlStretcher*", + "bases": [ + "Window", + "PropertyClass" + ], + "hash": 622847140, + "properties": { + "m_sName": { "type": "std::string", - "id": 15, - "offset": 496, - "flags": 131079, + "id": 0, + "offset": 80, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3428653697 + "hash": 2306437263 }, - "m_validTargetSpells": { - "type": "unsigned int", - "id": 16, - "offset": 392, - "flags": 7, - "container": "List", + "m_Children": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 65671, + "container": "Vector", "dynamic": true, "singleton": false, - "pointer": false, - "hash": 2355782967 + "pointer": true, + "hash": 2621225959 }, - "m_PvP": { - "type": "bool", - "id": 17, - "offset": 408, - "flags": 7, + "m_Style": { + "type": "unsigned int", + "id": 2, + "offset": 152, + "flags": 1048583, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 269492361 + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152, + "STRETCH_VERTICALLY": 16777216 + } }, - "m_PvE": { - "type": "bool", - "id": 18, - "offset": 409, - "flags": 7, + "m_Flags": { + "type": "unsigned int", + "id": 3, + "offset": 156, + "flags": 1048583, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 269492350 + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } }, - "m_noPvPEnchant": { - "type": "bool", - "id": 19, - "offset": 410, - "flags": 7, + "m_Window": { + "type": "class Rect", + "id": 4, + "offset": 160, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 661581703 + "hash": 3105139380 }, - "m_noPvEEnchant": { - "type": "bool", - "id": 20, - "offset": 411, - "flags": 7, + "m_fTargetAlpha": { + "type": "float", + "id": 5, + "offset": 212, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 10144220 + "hash": 1809129834 }, - "m_battlegroundsOnly": { - "type": "bool", - "id": 21, - "offset": 412, - "flags": 7, + "m_fDisabledAlpha": { + "type": "float", + "id": 6, + "offset": 216, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1244782419 + "hash": 1389987675 }, - "m_Treasure": { - "type": "bool", - "id": 22, - "offset": 413, - "flags": 7, + "m_fAlpha": { + "type": "float", + "id": 7, + "offset": 208, + "flags": 65671, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1749096414 + "hash": 482130755 }, - "m_noDiscard": { - "type": "bool", - "id": 23, - "offset": 414, - "flags": 7, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 565749226 + "pointer": true, + "hash": 3623628394 }, - "m_leavesPlayWhenCast": { - "type": "bool", - "id": 24, - "offset": 532, - "flags": 7, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 698216294 + "hash": 2102211316 }, - "m_imageIndex": { - "type": "int", - "id": 25, - "offset": 416, - "flags": 7, + "m_sScript": { + "type": "std::string", + "id": 10, + "offset": 352, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1570500405 + "hash": 1846695875 }, - "m_imageName": { - "type": "std::string", - "id": 26, - "offset": 424, - "flags": 131079, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2391520543 + "hash": 3389835433 }, - "m_cloaked": { - "type": "bool", - "id": 27, - "offset": 489, - "flags": 7, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 7349510 + "hash": 2547159940 }, - "m_casterInvisible": { - "type": "bool", - "id": 28, - "offset": 490, - "flags": 7, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 310214650 + "hash": 1513510520 }, - "m_adjectives": { - "type": "std::string", - "id": 29, - "offset": 576, - "flags": 7, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, "container": "List", "dynamic": true, "singleton": false, "pointer": false, - "hash": 2967855037 + "hash": 2587533771 }, - "m_spellSourceType": { - "type": "enum SpellTemplate::kSpellSourceType", - "id": 30, - "offset": 528, - "flags": 2097159, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 156272727, - "enum_options": { - "kCaster": 0, - "kPet": 1, - "kShadowCreature": 2, - "kWeapon": 3, - "kEquipment": 4 - } + "hash": 3091503757 }, - "m_cloakedName": { - "type": "std::string", - "id": 31, - "offset": 536, - "flags": 268435463, + "m_pTopLeftMaterial": { + "type": "class SharedPointer", + "id": 16, + "offset": 584, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 2846679215, - "enum_options": { - "__BASECLASS": "SpellTemplate" - } + "pointer": true, + "hash": 3248096916 }, - "m_purchaseRequirements": { - "type": "class RequirementList*", - "id": 32, - "offset": 608, - "flags": 7, + "m_pCenterMaterial": { + "type": "class SharedPointer", + "id": 17, + "offset": 600, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": true, - "hash": 3174641793 + "hash": 1519560055 }, - "m_displayRequirements": { - "type": "class RequirementList*", - "id": 33, - "offset": 840, - "flags": 7, + "m_pBottomRightMaterial": { + "type": "class SharedPointer", + "id": 18, + "offset": 616, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": true, - "hash": 3646782876 + "hash": 2932444745 }, - "m_descriptionTrainer": { - "type": "std::string", - "id": 34, - "offset": 616, - "flags": 8388871, + "m_MaximumSize": { + "type": "class Size", + "id": 19, + "offset": 632, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1756093908 + "hash": 1781954165 }, - "m_descriptionCombatHUD": { - "type": "std::string", - "id": 35, - "offset": 648, - "flags": 8388871, + "m_MinimumSize": { + "type": "class Size", + "id": 20, + "offset": 640, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1631478006 - }, - "m_displayIndex": { - "type": "int", - "id": 36, - "offset": 680, + "hash": 2108593523 + } + } + }, + "1055998215": { + "name": "class DOTEffectTemplate", + "bases": [ + "PulseEffectTemplate", + "GameEffectTemplate", + "PropertyClass" + ], + "hash": 1055998215, + "properties": { + "m_effectName": { + "type": "std::string", + "id": 0, + "offset": 72, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1250551048 + "hash": 2029161513 }, - "m_hiddenFromEffectsWindow": { - "type": "bool", - "id": 37, - "offset": 684, + "m_effectCategory": { + "type": "std::string", + "id": 1, + "offset": 104, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1832736331 + "hash": 1852673222 }, - "m_ignoreCharms": { - "type": "bool", - "id": 38, - "offset": 685, + "m_sortOrder": { + "type": "int", + "id": 2, + "offset": 148, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1840075893 + "hash": 1411218206 }, - "m_alwaysFizzle": { - "type": "bool", - "id": 39, - "offset": 686, + "m_duration": { + "type": "double", + "id": 3, + "offset": 192, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2030988856 + "hash": 2727932435 }, - "m_spellCategory": { + "m_stackingCategories": { "type": "std::string", - "id": 40, - "offset": 688, + "id": 4, + "offset": 160, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 2472376729 + "hash": 1774497525 }, - "m_showPolymorphedName": { + "m_isPersistent": { "type": "bool", - "id": 41, - "offset": 720, + "id": 5, + "offset": 153, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2097929096 + "hash": 923861920 }, - "m_skipTruncation": { + "m_bIsOnPet": { "type": "bool", - "id": 42, - "offset": 721, - "flags": 263, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1838335249 - }, - "m_maxCopies": { - "type": "unsigned int", - "id": 43, - "offset": 724, - "flags": 263, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 403022326 - }, - "m_levelRestriction": { - "type": "int", - "id": 44, - "offset": 728, - "flags": 263, + "id": 6, + "offset": 154, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 176502472 + "hash": 522593303 }, - "m_delayEnchantment": { + "m_isPublic": { "type": "bool", - "id": 45, - "offset": 732, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 191336919 - }, - "m_delayEnchantmentOrder": { - "type": "enum SpellEffect::kDelayOrder", - "id": 46, - "offset": 736, - "flags": 287, + "id": 7, + "offset": 152, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2526055263, - "enum_options": { - "SpellEffect::kAnyOrder": 0, - "SpellEffect::kFirst": 1, - "SpellEffect::kSecond": 2 - } + "hash": 1728439822 }, - "m_previousSpellName": { + "m_visualEffectAddName": { "type": "std::string", - "id": 47, - "offset": 744, - "flags": 268435463, + "id": 8, + "offset": 200, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2903322585, - "enum_options": { - "__BASECLASS": "SpellTemplate" - } + "hash": 3382086694 }, - "m_cardFront": { + "m_visualEffectRemoveName": { "type": "std::string", - "id": 48, - "offset": 456, - "flags": 131359, + "id": 9, + "offset": 232, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3557598526 + "hash": 1541697323 }, - "m_useGloss": { - "type": "bool", - "id": 49, - "offset": 488, - "flags": 287, + "m_onAddFunctorName": { + "type": "std::string", + "id": 10, + "offset": 280, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 668817544 + "hash": 1561843107 }, - "m_ignoreDispel": { - "type": "bool", - "id": 50, - "offset": 776, - "flags": 287, + "m_onRemoveFunctorName": { + "type": "std::string", + "id": 11, + "offset": 312, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1881041624 + "hash": 2559017864 }, - "m_backRowFriendly": { - "type": "bool", - "id": 51, - "offset": 777, - "flags": 287, + "m_stackingRule": { + "type": "enum STACKING_RULE", + "id": 12, + "offset": 144, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 501584377 + "hash": 431568889, + "enum_options": { + "STACKING_ALLOWED": 0, + "STACKING_NOSTACK": 1, + "STACKING_REPLACE": 2 + } }, - "m_spellRank": { - "type": "class SharedPointer", - "id": 52, - "offset": 784, + "m_pulsePeriod": { + "type": "double", + "id": 13, + "offset": 360, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3152361374 + "pointer": false, + "hash": 3960618585 }, - "m_secondarySchoolName": { + "m_pulseEventName": { "type": "std::string", - "id": 53, - "offset": 800, + "id": 14, + "offset": 368, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1803268236 + "hash": 1858926599 }, - "m_spellFusion": { - "type": "unsigned int", - "id": 54, - "offset": 836, + "m_statName": { + "type": "std::string", + "id": 15, + "offset": 408, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1658928321 + "hash": 1866211576 }, - "m_requiredSchoolName": { + "m_statMaxName": { "type": "std::string", - "id": 55, - "offset": 848, + "id": 16, + "offset": 440, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3576058981 - }, - "m_castleMagicSpellType": { - "type": "enum CastleMagicSpellTemplate::CastleMagicSpellType", - "id": 56, - "offset": 880, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1857887320, - "enum_options": { - "CM_Action": 0, - "CM_Effect": 1, - "CM_Utility": 2, - "CM_Logic": 3 - } + "hash": 3164833118 }, - "m_castleMagicSpellEffect": { - "type": "enum CastleMagicSpellTemplate::CastleMagicSpellEffect", - "id": 57, - "offset": 884, - "flags": 2097159, + "m_damage": { + "type": "int", + "id": 17, + "offset": 472, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1408413012, - "enum_options": { - "CM_None": 0, - "CM_MakeInvisible": 1, - "CM_MakeVisible": 2, - "CM_PlaySpellEffect": 3, - "CM_PlaySoundEffect": 4, - "CM_RestoreObject": 5, - "CM_MoveObject": 6, - "CM_TurnObject": 7, - "CM_ScaleObject": 8, - "CM_TeleportObject": 9, - "CM_MoveObjectToMe": 10, - "CM_MoveTowardMe": 11, - "CM_PlayMusicScroll": 12, - "CM_MoveObjectForward": 13, - "CM_MoveObjectBackward": 14, - "CM_TurnLikeMe": 15, - "CM_TurnTowardMe": 16, - "CM_LogicEffect": 17, - "CM_StartTimer": 18, - "CM_StopTimer": 19, - "CM_ActivateReflector": 20, - "CM_CameraShake": 21, - "CM_SetCounter": 22, - "CM_SetBrazier": 23, - "CM_UseItem": 24, - "CM_Solidify": 25, - "CM_PetControl": 26, - "CM_MountControl": 27, - "CM_CameraControl": 28, - "CM_TeleportPlayer": 29, - "CM_PVPSigilControl": 30, - "CM_TeleportAllPlayers": 31, - "CM_MakeTranslucent": 32, - "CM_MakeOpaque": 33, - "CM_SilenceItem": 34, - "CM_MoveFaster": 35, - "CM_PVPDuelModifier": 36, - "CM_StopMovement": 37, - "CM_UnsilenceItem": 38, - "CM_PlayInstrumentLoop": 39, - "CM_StopMusic": 40, - "CM_PlayMusicPlayer": 41, - "CM_PlayAsPetControl": 42 - } - }, - "m_animationKFM": { + "hash": 351627865 + } + } + }, + "620908650": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 620908650, + "properties": { + "m_mapName": { "type": "std::string", - "id": 58, - "offset": 888, + "id": 0, + "offset": 72, "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2466280761 - }, - "m_animationSequence": { - "type": "std::string", - "id": 59, - "offset": 920, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2493126132 + "hash": 3249832570 }, - "m_effectSchool": { + "m_zoneName": { "type": "std::string", - "id": 60, - "offset": 952, + "id": 1, + "offset": 104, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2688245616 + "hash": 2171167736 } } }, - "331221321": { - "name": "class AdventurePartyInfo*", + "200792972": { + "name": "class ClientCinematicActor*", "bases": [ + "CinematicActor", "PropertyClass" ], - "hash": 331221321, + "hash": 200792972, + "properties": {} + }, + "1054782897": { + "name": "class Spell*", + "bases": [ + "PropertyClass" + ], + "hash": 1054782897, "properties": { - "m_adventurePartyGID": { - "type": "gid", + "m_templateID": { + "type": "unsigned int", "id": 0, - "offset": 72, - "flags": 7, + "offset": 128, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2003479882 + "hash": 1286746870 }, - "m_adventurePartyName": { + "m_enchantment": { "type": "unsigned int", "id": 1, "offset": 80, - "flags": 7, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1899719436 + "hash": 2217886818 }, - "m_adventurePartyNameLocale": { - "type": "int", + "m_pipCost": { + "type": "class SharedPointer", "id": 2, - "offset": 84, + "offset": 176, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 695833705 + "pointer": true, + "hash": 3605704820 }, - "m_creationDate": { - "type": "unsigned int", + "m_regularAdjust": { + "type": "int", "id": 3, - "offset": 88, - "flags": 7, + "offset": 192, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2141685120 + "hash": 1420453335 }, - "m_ownerGID": { - "type": "gid", + "m_magicSchoolID": { + "type": "unsigned int", "id": 4, - "offset": 96, + "offset": 136, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1765087575 + "hash": 893146499 }, - "m_ownerName": { - "type": "std::string", + "m_accuracy": { + "type": "unsigned char", "id": 5, - "offset": 104, + "offset": 132, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1761521415 + "hash": 2273914939 }, - "m_purposeType": { - "type": "int", + "m_treasureCard": { + "type": "bool", "id": 6, - "offset": 136, - "flags": 7, + "offset": 197, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1148443466 + "hash": 1764879128 }, - "m_purposeWorldID": { - "type": "unsigned int", + "m_battleCard": { + "type": "bool", "id": 7, - "offset": 140, - "flags": 7, + "offset": 198, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1790486832 + "hash": 1332843753 }, - "m_flags": { - "type": "unsigned int", + "m_itemCard": { + "type": "bool", "id": 8, - "offset": 144, + "offset": 199, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1005801050 + "hash": 1683654300 }, - "m_equippedHouseInstanceGID": { - "type": "gid", + "m_sideBoard": { + "type": "bool", "id": 9, - "offset": 152, + "offset": 200, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 63247330 + "hash": 1897838368 }, - "m_equippedInteriorInstanceGID": { - "type": "gid", + "m_spellID": { + "type": "unsigned int", "id": 10, - "offset": 160, - "flags": 7, + "offset": 204, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1578260586 + "hash": 1697483258 }, - "m_adventurePartyMemberList": { - "type": "class SharedPointer", + "m_leavesPlayWhenCastOverride": { + "type": "bool", "id": 11, - "offset": 168, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2861967351 - }, - "m_messageBoardList": { - "type": "class SharedPointer", - "id": 12, - "offset": 184, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2175215327 - }, - "m_renameCooldownTime": { - "type": "unsigned int", - "id": 13, - "offset": 200, - "flags": 7, + "offset": 216, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 762261177 + "hash": 874407398 }, - "m_newOwnerTime": { - "type": "unsigned int", - "id": 14, - "offset": 204, + "m_cloaked": { + "type": "bool", + "id": 12, + "offset": 196, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 453769201 - } - } - }, - "1109441588": { - "name": "class SharedPointer", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1109441588, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 + "hash": 7349510 }, - "m_fishData": { - "type": "std::string", - "id": 1, - "offset": 128, - "flags": 575, + "m_enchantmentSpellIsItemCard": { + "type": "bool", + "id": 13, + "offset": 76, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3393318815 - } - } - }, - "1930454764": { - "name": "class MountShopOption*", - "bases": [ - "ServiceOptionBase", - "PropertyClass" - ], - "hash": 1930454764, - "properties": { - "m_serviceName": { - "type": "std::string", - "id": 0, - "offset": 72, + "hash": 531590701 + }, + "m_premutationSpellID": { + "type": "unsigned int", + "id": 14, + "offset": 112, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2206028813 + "hash": 1530256370 }, - "m_iconKey": { - "type": "std::string", - "id": 1, - "offset": 168, + "m_enchantedThisCombat": { + "type": "bool", + "id": 15, + "offset": 77, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2457138637 + "hash": 1895738923 }, - "m_displayKey": { - "type": "std::string", - "id": 2, - "offset": 104, + "m_paramOverrides": { + "type": "class SharedPointer", + "id": 16, + "offset": 224, "flags": 31, - "container": "Static", - "dynamic": false, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 3023276954 + "pointer": true, + "hash": 2061635599 }, - "m_serviceIndex": { - "type": "unsigned int", - "id": 3, - "offset": 204, + "m_subEffectMeta": { + "type": "class SharedPointer", + "id": 17, + "offset": 240, "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1944101106 + }, + "m_delayEnchantment": { + "type": "bool", + "id": 18, + "offset": 257, + "flags": 287, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2103126710 + "hash": 191336919 }, - "m_forceInteract": { + "m_PvE": { "type": "bool", - "id": 4, - "offset": 200, - "flags": 31, + "id": 19, + "offset": 264, + "flags": 287, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1705789564 - } - } - }, - "329969771": { - "name": "class ReqInventoryFull", - "bases": [ - "ReqNumeric", - "Requirement", - "PropertyClass" - ], - "hash": 329969771, - "properties": { - "m_applyNOT": { - "type": "bool", - "id": 0, + "hash": 269492350 + }, + "m_delayEnchantmentOrder": { + "type": "enum SpellEffect::kDelayOrder", + "id": 20, "offset": 72, - "flags": 31, + "flags": 287, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1746328074, + "hash": 2526055263, "enum_options": { - "__DEFAULT": 0 + "SpellEffect::kAnyOrder": 0, + "SpellEffect::kFirst": 1, + "SpellEffect::kSecond": 2 } }, - "m_operator": { - "type": "enum Requirement::Operator", - "id": 1, - "offset": 76, - "flags": 2097183, + "m_roundAddedTC": { + "type": "int", + "id": 21, + "offset": 260, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2672792317, - "enum_options": { - "ROP_AND": 0, - "ROP_OR": 1, - "__DEFAULT": "ROP_AND" - } + "hash": 112365451 }, - "m_numericValue": { - "type": "float", - "id": 2, - "offset": 80, - "flags": 31, + "m_secondarySchoolID": { + "type": "unsigned int", + "id": 22, + "offset": 304, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 521915239 + "hash": 2081206026 }, - "m_operatorType": { - "type": "enum ReqNumeric::OPERATOR_TYPE", - "id": 3, - "offset": 84, - "flags": 2097183, + "m_fusionState": { + "type": "enum Spell::FusionState", + "id": 23, + "offset": 308, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2228122961, + "hash": 835324539, "enum_options": { - "OPERATOR_UNKNOWN": 4294967295, - "OPERATOR_EQUALS": 0, - "OPERATOR_GREATER_THAN": 1, - "OPERATOR_LESS_THAN": 2, - "OPERATOR_GREATER_THAN_EQ": 3, - "OPERATOR_LESS_THAN_EQ": 4 + "FS_Invalid": 0, + "FS_Partial": 1, + "FS_Valid": 2 } } } }, - "1109263560": { - "name": "enum WizBugReport::SystemType", - "bases": [], - "hash": 1109263560, - "properties": {} - }, - "1916442154": { - "name": "class SharedPointer", + "1479064920": { + "name": "class SharedPointer", "bases": [ - "BehaviorTemplate", "PropertyClass" ], - "hash": 1916442154, + "hash": 1479064920, "properties": { - "m_behaviorName": { + "m_sigilNameKey": { "type": "std::string", "id": 0, "offset": 72, - "flags": 7, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3130754092 + "hash": 3055768893 }, - "m_itemAdjective": { + "m_sigilTextKey": { "type": "std::string", "id": 1, - "offset": 120, - "flags": 7, + "offset": 104, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3066441529 + "hash": 2384767873 }, - "m_unlockCantrip": { + "m_sigilEncounterInfoTextKey": { "type": "std::string", "id": 2, - "offset": 152, - "flags": 7, + "offset": 168, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2731256472 + "hash": 3121233376 }, - "m_numberOfUnlockPlayers": { - "type": "int", + "m_successZone": { + "type": "std::string", "id": 3, - "offset": 184, - "flags": 7, + "offset": 200, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 855609764 + "hash": 1516681392 }, - "m_activateState": { + "m_sigilIcon": { "type": "std::string", "id": 4, - "offset": 192, - "flags": 7, + "offset": 136, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2508957133 + "hash": 3177480156 }, - "m_enabledSeconds": { + "m_teamUpAllowed": { "type": "int", "id": 5, - "offset": 224, - "flags": 7, + "offset": 232, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2014197012 + "hash": 1016118542 }, - "m_linkedUnlockTemplateID": { - "type": "unsigned int", + "m_isCluster": { + "type": "bool", "id": 6, - "offset": 228, - "flags": 7, + "offset": 236, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 952577945 + "hash": 1183074257 }, - "m_cooldownSeconds": { - "type": "unsigned int", + "m_passedReqs": { + "type": "bool", "id": 7, - "offset": 232, - "flags": 7, + "offset": 237, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1670668641 + "hash": 1047234766 }, - "m_overrideTitle": { - "type": "std::string", + "m_failedRequirement": { + "type": "class SharedPointer", "id": 8, "offset": 240, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2739145597 - }, - "m_overrideDonateTitle": { - "type": "std::string", - "id": 9, - "offset": 272, - "flags": 7, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 2976683384 - }, - "m_overrideChooseTitle": { - "type": "std::string", - "id": 10, - "offset": 304, - "flags": 7, + "pointer": true, + "hash": 2322583945 + } + } + }, + "620760963": { + "name": "class SharedPointer", + "bases": [ + "InteractiveMusicBehaviorBase", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 620760963, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2732703966 + "hash": 223437287 }, - "m_overrideFinalStepText": { + "m_musicData": { "type": "std::string", - "id": 11, - "offset": 336, - "flags": 7, + "id": 1, + "offset": 200, + "flags": 66087, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2712952390 - }, - "m_overrideNeedKeyText": { + "hash": 2963606294 + } + } + }, + "1905275999": { + "name": "class AlchemyBehaviorTemplate*", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 1905275999, + "properties": { + "m_behaviorName": { "type": "std::string", - "id": 12, - "offset": 368, + "id": 0, + "offset": 72, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2575667685 + "hash": 3130754092 }, - "m_isExtractor": { - "type": "bool", - "id": 13, - "offset": 400, + "m_maxReagentsPerStack": { + "type": "int", + "id": 1, + "offset": 120, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2105029547 + "hash": 1052405942 } } }, - "329805931": { - "name": "class ReqInventoryFull*", + "1053826872": { + "name": "class CastleMagicAction", "bases": [ - "ReqNumeric", - "Requirement", "PropertyClass" ], - "hash": 329805931, + "hash": 1053826872, + "properties": {} + }, + "620450973": { + "name": "struct SimpleVert", + "bases": [], + "hash": 620450973, + "properties": {} + }, + "1053803721": { + "name": "class Reco::RecoItemData*", + "bases": [ + "PropertyClass" + ], + "hash": 1053803721, "properties": { - "m_applyNOT": { - "type": "bool", + "m_templateID": { + "type": "int", "id": 0, "offset": 72, "flags": 31, @@ -388119,29 +51591,21 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 1746328074, - "enum_options": { - "__DEFAULT": 0 - } + "hash": 1075344419 }, - "m_operator": { - "type": "enum Requirement::Operator", + "m_rank": { + "type": "int", "id": 1, "offset": 76, - "flags": 2097183, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2672792317, - "enum_options": { - "ROP_AND": 0, - "ROP_OR": 1, - "__DEFAULT": "ROP_AND" - } + "hash": 219803942 }, - "m_numericValue": { - "type": "float", + "m_secondaryRank": { + "type": "int", "id": 2, "offset": 80, "flags": 31, @@ -388149,110 +51613,87 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 521915239 - }, - "m_operatorType": { - "type": "enum ReqNumeric::OPERATOR_TYPE", - "id": 3, - "offset": 84, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2228122961, - "enum_options": { - "OPERATOR_UNKNOWN": 4294967295, - "OPERATOR_EQUALS": 0, - "OPERATOR_GREATER_THAN": 1, - "OPERATOR_LESS_THAN": 2, - "OPERATOR_GREATER_THAN_EQ": 3, - "OPERATOR_LESS_THAN_EQ": 4 - } + "hash": 2066929134 } } }, - "746175339": { - "name": "class HelpChatElement*", + "201573366": { + "name": "class WizItemPlantList*", "bases": [ + "WizItemLocations", "PropertyClass" ], - "hash": 746175339, + "hash": 201573366, "properties": { - "m_labelKey": { - "type": "std::string", + "m_itemType": { + "type": "enum WizItemLocations::eItemType", "id": 0, "offset": 72, - "flags": 8388615, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3291650660 + "hash": 3482173907, + "enum_options": { + "shop": 0, + "quest": 1, + "boss": 2, + "gardening": 3, + "goldChest": 4 + } }, - "m_tipID": { - "type": "gid", + "m_plants": { + "type": "unsigned int", "id": 1, - "offset": 104, - "flags": 33554439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 810892562 - }, - "m_children": { - "type": "class HelpChatElement*", - "id": 2, - "offset": 112, - "flags": 7, + "offset": 80, + "flags": 31, "container": "List", "dynamic": true, "singleton": false, - "pointer": true, - "hash": 1958485829 + "pointer": false, + "hash": 1045283519 } } }, - "1908510986": { - "name": "class Reco::CategoryData*", + "1484864330": { + "name": "class GameEffectContainer*", "bases": [ "PropertyClass" ], - "hash": 1908510986, + "hash": 1484864330, "properties": { - "m_id": { - "type": "int", + "m_publicEffects": { + "type": "class SharedPointer", "id": 0, - "offset": 72, + "offset": 88, "flags": 31, - "container": "Static", - "dynamic": false, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 2090586215 + "pointer": true, + "hash": 3233153287 }, - "m_items": { - "type": "class SharedPointer", + "m_myEffects": { + "type": "class SharedPointer", "id": 1, - "offset": 80, - "flags": 31, + "offset": 72, + "flags": 7, "container": "List", "dynamic": true, "singleton": false, "pointer": true, - "hash": 966759714 + "hash": 2650414414 } } }, - "329561471": { - "name": "class SharedPointer", + "1906010588": { + "name": "class ObjectRemapBehavior", "bases": [ - "AreaBehavior", "BehaviorInstance", "PropertyClass" ], - "hash": 329561471, + "hash": 1906010588, "properties": { "m_behaviorTemplateNameID": { "type": "unsigned int", @@ -388264,119 +51705,37 @@ "singleton": false, "pointer": false, "hash": 223437287 - }, - "m_radius": { - "type": "float", - "id": 1, - "offset": 116, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 989410271 - }, - "m_category": { - "type": "enum AudioCategory", - "id": 2, - "offset": 124, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2951251982, - "enum_options": { - "AudioCategory_Irrelevent": 0, - "AudioCategory_Accoustic": 1, - "AudioCategory_Noise": 2, - "AudioCategory_Music": 3 - } - }, - "m_exclusive": { - "type": "bool", - "id": 3, - "offset": 128, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 824383403 - }, - "m_playList": { - "type": "class PlayList", - "id": 4, - "offset": 176, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2061221957 - }, - "m_volume": { - "type": "float", - "id": 5, - "offset": 304, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1162855023 - }, - "m_loopCount": { - "type": "int", - "id": 6, - "offset": 308, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 865634717 } } }, - "1902371550": { - "name": "class RateMyStitchBehaviorTemplate*", + "201320466": { + "name": "class ClientTagList*", "bases": [ - "BehaviorTemplate", "PropertyClass" ], - "hash": 1902371550, + "hash": 201320466, "properties": { - "m_behaviorName": { + "m_clientTags": { "type": "std::string", "id": 0, "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, + "flags": 31, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 3130754092 + "hash": 2319030025 } } }, - "746461756": { - "name": "class PhysicsSimMassTube", - "bases": [ - "PhysicsSimMassCylinder", - "PhysicsSimMassSphere", - "PhysicsSimMass", - "PropertyClass" - ], - "hash": 746461756, - "properties": {} - }, - "1900160855": { - "name": "class SharedPointer", + "1481981151": { + "name": "class ClientTransformationEffect*", "bases": [ + "TransformationEffect", + "GameEffectBase", "PropertyClass" ], - "hash": 1900160855, + "hash": 1481981151, "properties": { "m_currentTickCount": { "type": "double", @@ -388454,117 +51813,110 @@ "singleton": false, "pointer": false, "hash": 716479635 - } - } - }, - "1112448544": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1112448544, - "properties": {} - }, - "1898539781": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1898539781, - "properties": {} - }, - "329907022": { - "name": "class ReqMatchesPlayed*", - "bases": [ - "ReqNumeric", - "Requirement", - "PropertyClass" - ], - "hash": 329907022, - "properties": { - "m_applyNOT": { - "type": "bool", - "id": 0, - "offset": 72, - "flags": 31, + }, + "m_sRace": { + "type": "std::string", + "id": 7, + "offset": 128, + "flags": 268435487, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1746328074, + "hash": 2306580681, "enum_options": { - "__DEFAULT": 0 + "__BASECLASS": "CharacterRaceTable" } }, - "m_operator": { - "type": "enum Requirement::Operator", - "id": 1, - "offset": 76, - "flags": 2097183, + "m_eGender": { + "type": "enum eGender", + "id": 8, + "offset": 160, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2672792317, - "enum_options": { - "ROP_AND": 0, - "ROP_OR": 1, - "__DEFAULT": "ROP_AND" - } + "hash": 2776344943 }, - "m_numericValue": { + "m_fScale": { "type": "float", - "id": 2, - "offset": 80, + "id": 9, + "offset": 164, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 521915239 + "hash": 503137701 }, - "m_operatorType": { - "type": "enum ReqNumeric::OPERATOR_TYPE", - "id": 3, - "offset": 84, - "flags": 2097183, + "m_nPrimaryColor": { + "type": "int", + "id": 10, + "offset": 168, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2228122961, - "enum_options": { - "OPERATOR_UNKNOWN": 4294967295, - "OPERATOR_EQUALS": 0, - "OPERATOR_GREATER_THAN": 1, - "OPERATOR_LESS_THAN": 2, - "OPERATOR_GREATER_THAN_EQ": 3, - "OPERATOR_LESS_THAN_EQ": 4 - } + "hash": 310334923 }, - "m_tournament": { + "m_nSecondaryColor": { + "type": "int", + "id": 11, + "offset": 172, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 516938671 + }, + "m_nPatternOption": { + "type": "int", + "id": 12, + "offset": 176, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 413195679 + }, + "m_nGeometryOption": { + "type": "int", + "id": 13, + "offset": 180, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 676541869 + }, + "m_sNaturalAttack": { "type": "std::string", - "id": 4, - "offset": 88, + "id": 14, + "offset": 184, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2799932264 + "hash": 2131867453 } } }, - "1109689545": { - "name": "class TreasureCardVaultBehaviorTemplate*", + "1905494375": { + "name": "class UnShadowSelfCinematicAction*", "bases": [ - "BehaviorTemplate", + "CinematicAction", "PropertyClass" ], - "hash": 1109689545, + "hash": 1905494375, "properties": { - "m_behaviorName": { - "type": "std::string", + "m_timeOffset": { + "type": "float", "id": 0, "offset": 72, "flags": 7, @@ -388572,611 +51924,442 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 3130754092 + "hash": 2237098605 } } }, - "1898058836": { - "name": "class FriendlyPlayerInfo*", + "201270490": { + "name": "class ObstacleCoursePendulumBehaviorClient*", "bases": [ + "ObstacleCoursePendulumBehavior", + "ObstacleCourseObstacleBehavior", + "BehaviorInstance", "PropertyClass" ], - "hash": 1898058836, + "hash": 201270490, "properties": { - "m_characterGID": { - "type": "gid", - "id": 0, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 501688601 - }, - "m_nameBlob": { - "type": "std::string", - "id": 1, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3058206907 - }, - "m_schoolCode": { + "m_behaviorTemplateNameID": { "type": "unsigned int", - "id": 2, + "id": 0, "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2098672048 - }, - "m_zoneDisplayName": { - "type": "std::string", - "id": 3, - "offset": 112, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1962339438 - }, - "m_level": { - "type": "unsigned char", - "id": 4, - "offset": 144, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1438884808 - }, - "m_groupStatus": { - "type": "unsigned char", - "id": 5, - "offset": 145, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1901216097 - }, - "m_hasFreeChat": { - "type": "unsigned char", - "id": 6, - "offset": 160, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1722302062 - }, - "m_isOnline": { - "type": "bool", - "id": 7, - "offset": 161, - "flags": 7, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1681359252 + "hash": 223437287 } } }, - "753781023": { - "name": "class ClientBurnAuraCinematicAction*", + "1054532879": { + "name": "class SG_GameActionClient_PlaySound", "bases": [ - "BurnAuraCinematicAction", - "ActorCinematicAction", - "CinematicAction", + "SG_GameAction_PlaySound", + "SG_GameAction", "PropertyClass" ], - "hash": 753781023, + "hash": 1054532879, "properties": { - "m_timeOffset": { - "type": "float", + "m_target": { + "type": "enum SG_GameAction::SG_Target", "id": 0, "offset": 72, - "flags": 7, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 + "hash": 1166870973, + "enum_options": { + "Target_Ball": 0, + "Target_Self": 1, + "Target_Connections": 2, + "__DEFAULT": "Target_Ball" + } }, - "m_actor": { + "m_simpleSounds": { "type": "std::string", "id": 1, - "offset": 80, + "offset": 112, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 2285866132 + "hash": 3351944033 } } }, - "1109448625": { - "name": "class ControlProgress", + "2038296099": { + "name": "class ClientPetItemBehavior", "bases": [ - "ControlBar", - "Window", + "BasePetItemBehavior", + "BehaviorInstance", "PropertyClass" ], - "hash": 1109448625, + "hash": 2038296099, "properties": { - "m_sName": { - "type": "std::string", + "m_behaviorTemplateNameID": { + "type": "unsigned int", "id": 0, - "offset": 80, - "flags": 135, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2306437263 + "hash": 223437287 }, - "m_Children": { - "type": "class SharedPointer", + "m_level": { + "type": "unsigned char", "id": 1, "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, + "flags": 65727, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2621225959 + "pointer": false, + "hash": 1438884808 }, - "m_Style": { + "m_XP": { "type": "unsigned int", "id": 2, - "offset": 152, - "flags": 1048583, + "offset": 116, + "flags": 65727, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152, - "PROGRESS_UV": 16777216, - "PROGRESS_RTOL": 33554432 - } + "hash": 2301988085 }, - "m_Flags": { - "type": "unsigned int", + "m_firstName": { + "type": "int", "id": 3, - "offset": 156, - "flags": 1048583, + "offset": 264, + "flags": 65703, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } + "hash": 1618303331 }, - "m_Window": { - "type": "class Rect", + "m_middleName": { + "type": "int", "id": 4, - "offset": 160, - "flags": 135, + "offset": 268, + "flags": 65703, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3105139380 + "hash": 199781034 }, - "m_fTargetAlpha": { - "type": "float", + "m_lastName": { + "type": "int", "id": 5, - "offset": 212, - "flags": 135, + "offset": 272, + "flags": 65703, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1809129834 + "hash": 328503983 }, - "m_fDisabledAlpha": { - "type": "float", + "m_currentStats": { + "type": "class PetStat", "id": 6, - "offset": 216, - "flags": 135, - "container": "Static", - "dynamic": false, + "offset": 128, + "flags": 31, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 1389987675 + "hash": 2342610661 }, - "m_fAlpha": { - "type": "float", + "m_maxStats": { + "type": "class PetStat", "id": 7, - "offset": 208, - "flags": 65671, - "container": "Static", - "dynamic": false, + "offset": 144, + "flags": 31, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 482130755 + "hash": 1846363080 }, - "m_pWindowStyle": { - "type": "class SharedPointer", + "m_hatchedTimeSecs": { + "type": "unsigned int", "id": 8, - "offset": 232, - "flags": 135, + "offset": 160, + "flags": 65727, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3623628394 + "pointer": false, + "hash": 606051291 }, - "m_sHelp": { - "type": "std::wstring", + "m_expressedTalents": { + "type": "unsigned int", "id": 9, - "offset": 248, - "flags": 4194439, - "container": "Static", - "dynamic": false, + "offset": 168, + "flags": 31, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 2102211316 + "hash": 1557974043 }, - "m_sScript": { - "type": "std::string", + "m_expressedDerbyTalents": { + "type": "unsigned int", "id": 10, - "offset": 352, - "flags": 135, - "container": "Static", - "dynamic": false, + "offset": 184, + "flags": 31, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 1846695875 + "hash": 484465777 }, - "m_Offset": { - "type": "class Point", + "m_talentRatings": { + "type": "std::string", "id": 11, - "offset": 192, - "flags": 135, - "container": "Static", - "dynamic": false, + "offset": 216, + "flags": 31, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 3389835433 + "hash": 2170591163 }, - "m_Scale": { - "type": "class Point", + "m_powerRatings": { + "type": "std::string", "id": 12, - "offset": 200, - "flags": 135, - "container": "Static", - "dynamic": false, + "offset": 232, + "flags": 31, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 2547159940 + "hash": 1881287968 }, - "m_sTip": { - "type": "std::wstring", + "m_overallRating": { + "type": "unsigned int", "id": 13, - "offset": 392, - "flags": 4194439, + "offset": 248, + "flags": 159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1513510520 + "hash": 462138631 }, - "m_BubbleList": { - "type": "class WindowBubble", + "m_activeRating": { + "type": "unsigned int", "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, + "offset": 252, + "flags": 159, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 2587533771 + "hash": 234391118 }, - "m_ParentOffset": { - "type": "class Rect", + "m_costToMorph": { + "type": "unsigned int", "id": 15, - "offset": 176, - "flags": 135, + "offset": 256, + "flags": 65567, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3091503757 + "hash": 1866472719 }, - "m_fPosition": { - "type": "float", + "m_rarity": { + "type": "unsigned int", "id": 16, - "offset": 584, - "flags": 135, + "offset": 260, + "flags": 65567, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1808212114 + "hash": 1111114664 }, - "m_BaseColor": { - "type": "class Color", + "m_requiredXP": { + "type": "unsigned int", "id": 17, - "offset": 588, - "flags": 262279, + "offset": 120, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2172251096 + "hash": 1890811574 }, - "m_BarColor": { - "type": "class Color", + "m_housingPetPrimaryColor": { + "type": "int", "id": 18, - "offset": 592, - "flags": 262279, + "offset": 276, + "flags": 65664, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2259916498 + "hash": 525135139 }, - "m_bDisplayVertical": { - "type": "bool", + "m_housingPetPattern": { + "type": "int", "id": 19, - "offset": 596, - "flags": 135, + "offset": 280, + "flags": 65664, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1359621189 + "hash": 165011646 }, - "m_pBarMaterial": { - "type": "class SharedPointer", + "m_housingPetSecondaryColor": { + "type": "int", "id": 20, - "offset": 600, - "flags": 135, + "offset": 284, + "flags": 65695, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2481929515 + "pointer": false, + "hash": 358656263 }, - "m_pTopLeftMaterial": { - "type": "class SharedPointer", + "m_housingPetOriginalGID": { + "type": "gid", "id": 21, - "offset": 616, - "flags": 135, + "offset": 288, + "flags": 65664, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3248096916 + "pointer": false, + "hash": 1259075879 }, - "m_pCenterMaterial": { - "type": "class SharedPointer", + "m_housingPetJewelTemplateID": { + "type": "unsigned int", "id": 22, - "offset": 632, - "flags": 135, + "offset": 296, + "flags": 65664, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1519560055 + "pointer": false, + "hash": 1836117651 }, - "m_pBottomRightMaterial": { - "type": "class SharedPointer", + "m_happiness": { + "type": "unsigned int", "id": 23, - "offset": 648, - "flags": 135, + "offset": 300, + "flags": 65727, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2932444745 + "pointer": false, + "hash": 1380970552 }, - "m_bTimed": { - "type": "bool", + "m_maximumHappiness": { + "type": "unsigned int", "id": 24, - "offset": 696, - "flags": 135, + "offset": 304, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 260290536 + "hash": 874954582 }, - "m_fTotalTime": { - "type": "float", + "m_allTalents": { + "type": "unsigned int", "id": 25, - "offset": 700, - "flags": 135, - "container": "Static", - "dynamic": false, + "offset": 464, + "flags": 7, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 1142609040 + "hash": 1053182849 }, - "m_fCurrentTime": { - "type": "float", + "m_allDerbyTalents": { + "type": "unsigned int", "id": 26, - "offset": 704, - "flags": 135, - "container": "Static", - "dynamic": false, + "offset": 480, + "flags": 7, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 2112044047 + "hash": 1165978519 }, - "m_bReverseDir": { - "type": "bool", - "id": 27, - "offset": 708, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 137983376 - } - } - }, - "749699656": { - "name": "class CastleGamesOption*", - "bases": [ - "ServiceOptionBase", - "PropertyClass" - ], - "hash": 749699656, - "properties": { - "m_serviceName": { + "m_sSerializedMaxStats": { "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, + "id": 27, + "offset": 328, + "flags": 65536, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2206028813 + "hash": 2078753551 }, - "m_iconKey": { + "m_sSerializedStats": { "type": "std::string", - "id": 1, - "offset": 168, - "flags": 31, + "id": 28, + "offset": 360, + "flags": 65536, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2457138637 + "hash": 3084176585 }, - "m_displayKey": { + "m_sSerializedTalents": { "type": "std::string", - "id": 2, - "offset": 104, - "flags": 31, + "id": 29, + "offset": 392, + "flags": 65536, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3023276954 + "hash": 3058423637 }, - "m_serviceIndex": { - "type": "unsigned int", - "id": 3, - "offset": 204, - "flags": 31, + "m_sSerializedDerbyTalents": { + "type": "std::string", + "id": 30, + "offset": 424, + "flags": 65536, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2103126710 + "hash": 1866554155 }, - "m_forceInteract": { - "type": "bool", - "id": 4, - "offset": 200, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1705789564 - } - } - }, - "330851950": { - "name": "class SharedPointer", - "bases": [ - "WinAnimScale", - "WindowAnimation", - "PropertyClass" - ], - "hash": 330851950, - "properties": { - "m_bUseDeepCopy": { + "m_bInitialized": { "type": "bool", - "id": 0, - "offset": 72, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 433380635 - }, - "m_scale": { - "type": "float", - "id": 1, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 899693439 - }, - "m_fSpeed": { - "type": "float", - "id": 2, - "offset": 96, - "flags": 135, + "id": 31, + "offset": 456, + "flags": 65536, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 503609006 + "hash": 233973963 } } }, - "748620131": { - "name": "class SharedPointer", + "622683300": { + "name": "class ControlStretcher", "bases": [ "Window", "PropertyClass" ], - "hash": 748620131, + "hash": 622683300, "properties": { "m_sName": { "type": "std::string", @@ -389193,7 +52376,7 @@ "type": "class SharedPointer", "id": 1, "offset": 112, - "flags": 65667, + "flags": 65671, "container": "Vector", "dynamic": true, "singleton": false, @@ -389212,11 +52395,9 @@ "hash": 983582334, "enum_options": { "HAS_BACK": 1, - "SCALE_CHILDREN": 2, "CAN_MOVE": 4, "CAN_SIZE": 8, "CAN_SCROLL": 16, - "FOCUS_LOCKED": 64, "CAN_FOCUS": 128, "CAN_DOCK": 32, "DO_NOT_CAPTURE_MOUSE": 256, @@ -389228,7 +52409,8 @@ "USE_ALPHA_BOUNDS": 8192, "AUTO_GROW": 16384, "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152 + "AUTO_RESIZE": 49152, + "STRETCH_VERTICALLY": 16777216 } }, "m_Flags": { @@ -389388,19 +52570,74 @@ "singleton": false, "pointer": false, "hash": 3091503757 + }, + "m_pTopLeftMaterial": { + "type": "class SharedPointer", + "id": 16, + "offset": 584, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3248096916 + }, + "m_pCenterMaterial": { + "type": "class SharedPointer", + "id": 17, + "offset": 600, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1519560055 + }, + "m_pBottomRightMaterial": { + "type": "class SharedPointer", + "id": 18, + "offset": 616, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2932444745 + }, + "m_MaximumSize": { + "type": "class Size", + "id": 19, + "offset": 632, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1781954165 + }, + "m_MinimumSize": { + "type": "class Size", + "id": 20, + "offset": 640, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2108593523 } } }, - "1109689497": { - "name": "class TreasureCardVaultBehaviorTemplate", + "1905494055": { + "name": "class UnShadowSelfCinematicAction", "bases": [ - "BehaviorTemplate", + "CinematicAction", "PropertyClass" ], - "hash": 1109689497, + "hash": 1905494055, "properties": { - "m_behaviorName": { - "type": "std::string", + "m_timeOffset": { + "type": "float", "id": 0, "offset": 72, "flags": 7, @@ -389408,249 +52645,285 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 3130754092 + "hash": 2237098605 } } }, - "1899644690": { - "name": "class HousingObjectStateContainer*", + "1481244749": { + "name": "class SharedPointer", "bases": [ "PropertyClass" ], - "hash": 1899644690, + "hash": 1481244749, + "properties": {} + }, + "621074346": { + "name": "class NonCombatMayCastSpellDescription*", + "bases": [ + "PropertyClass" + ], + "hash": 621074346, "properties": { - "m_housingObjectStateList": { - "type": "class SharedPointer", + "m_description": { + "type": "std::string", "id": 0, - "offset": 80, - "flags": 7, - "container": "List", - "dynamic": true, + "offset": 72, + "flags": 8388615, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1251844958 + "pointer": false, + "hash": 1649374815 }, - "m_zoneGID": { - "type": "gid", + "m_displaySpellName": { + "type": "std::string", "id": 1, - "offset": 72, - "flags": 7, + "offset": 104, + "flags": 268435463, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1907651624 + "hash": 3323484466, + "enum_options": { + "__BASECLASS": "SpellTemplate" + } } } }, - "330005326": { - "name": "class ReqMatchesPlayed", + "1054641469": { + "name": "class SharedPointer", "bases": [ - "ReqNumeric", - "Requirement", + "BehaviorInstance", "PropertyClass" ], - "hash": 330005326, + "hash": 1054641469, "properties": { - "m_applyNOT": { - "type": "bool", + "m_behaviorTemplateNameID": { + "type": "unsigned int", "id": 0, - "offset": 72, - "flags": 31, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1746328074, - "enum_options": { - "__DEFAULT": 0 - } + "hash": 223437287 }, - "m_operator": { - "type": "enum Requirement::Operator", + "m_startLocation": { + "type": "class Vector3D", "id": 1, - "offset": 76, - "flags": 2097183, + "offset": 112, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2672792317, - "enum_options": { - "ROP_AND": 0, - "ROP_OR": 1, - "__DEFAULT": "ROP_AND" - } + "hash": 1669140041 }, - "m_numericValue": { - "type": "float", + "m_targetLocation": { + "type": "class Vector3D", "id": 2, - "offset": 80, + "offset": 124, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 521915239 - }, - "m_operatorType": { - "type": "enum ReqNumeric::OPERATOR_TYPE", - "id": 3, - "offset": 84, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2228122961, - "enum_options": { - "OPERATOR_UNKNOWN": 4294967295, - "OPERATOR_EQUALS": 0, - "OPERATOR_GREATER_THAN": 1, - "OPERATOR_LESS_THAN": 2, - "OPERATOR_GREATER_THAN_EQ": 3, - "OPERATOR_LESS_THAN_EQ": 4 - } + "hash": 2653859938 }, - "m_tournament": { + "m_rootAsset": { "type": "std::string", - "id": 4, - "offset": 88, + "id": 3, + "offset": 136, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2799932264 + "hash": 3506101791 } } }, - "747045036": { - "name": "class FishingInfo", + "201409526": { + "name": "class WizItemPlantList", "bases": [ + "WizItemLocations", "PropertyClass" ], - "hash": 747045036, + "hash": 201409526, "properties": { - "m_bodyOfWaterList": { - "type": "class SharedPointer", + "m_itemType": { + "type": "enum WizItemLocations::eItemType", "id": 0, "offset": 72, - "flags": 7, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3482173907, + "enum_options": { + "shop": 0, + "quest": 1, + "boss": 2, + "gardening": 3, + "goldChest": 4 + } + }, + "m_plants": { + "type": "unsigned int", + "id": 1, + "offset": 80, + "flags": 31, "container": "List", "dynamic": true, "singleton": false, - "pointer": true, - "hash": 457750787 + "pointer": false, + "hash": 1045283519 } } }, - "1899644498": { - "name": "class HousingObjectStateContainer", + "1905506343": { + "name": "class ClientFXDef", "bases": [ + "FXDef", "PropertyClass" ], - "hash": 1899644498, + "hash": 1905506343, "properties": { - "m_housingObjectStateList": { - "type": "class SharedPointer", + "m_FXFile": { + "type": "std::string", "id": 0, - "offset": 80, - "flags": 7, - "container": "List", - "dynamic": true, + "offset": 72, + "flags": 131079, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1251844958 + "pointer": false, + "hash": 2810683385 }, - "m_zoneGID": { - "type": "gid", + "m_stackingCategory": { + "type": "std::string", "id": 1, - "offset": 72, + "offset": 104, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1907651624 + "hash": 2363740365 + }, + "m_repeatTime": { + "type": "float", + "id": 2, + "offset": 136, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 453389511 } } }, - "746694127": { - "name": "class ArenaMatchInfo", + "201320469": { + "name": "class ClientTagList", "bases": [ "PropertyClass" ], - "hash": 746694127, + "hash": 201320469, "properties": { - "m_matchID": { - "type": "gid", + "m_clientTags": { + "type": "std::string", "id": 0, "offset": 72, "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2319030025 + } + } + }, + "1481981141": { + "name": "class ClientTransformationEffect", + "bases": [ + "TransformationEffect", + "GameEffectBase", + "PropertyClass" + ], + "hash": 1481981141, + "properties": { + "m_currentTickCount": { + "type": "double", + "id": 0, + "offset": 80, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1757621298 + "hash": 2533274692 }, - "m_matchNameID": { + "m_effectNameID": { "type": "unsigned int", "id": 1, - "offset": 80, - "flags": 31, + "offset": 96, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1751361288 + "hash": 1204067144 }, - "m_teams": { - "type": "class SharedPointer", + "m_bIsOnPet": { + "type": "bool", "id": 2, - "offset": 96, + "offset": 73, "flags": 31, - "container": "List", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1984373608 + "pointer": false, + "hash": 522593303 }, - "m_matchName": { - "type": "std::string", + "m_originatorID": { + "type": "gid", "id": 3, - "offset": 112, - "flags": 31, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2061215721 + "hash": 1131810019 }, - "m_matchTitle": { - "type": "std::string", + "m_itemSlotID": { + "type": "unsigned int", "id": 4, - "offset": 144, - "flags": 31, + "offset": 112, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2918442218 + "hash": 1895747595 }, - "m_matchZoneID": { - "type": "gid", + "m_internalID": { + "type": "int", "id": 5, - "offset": 176, - "flags": 31, + "offset": 92, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2026205966 + "hash": 1643137924 }, - "m_creatorID": { - "type": "gid", + "m_endTime": { + "type": "unsigned int", "id": 6, "offset": 88, "flags": 31, @@ -389658,2500 +52931,2545 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 1051766037 + "hash": 716479635 }, - "m_matchZone": { + "m_sRace": { "type": "std::string", "id": 7, - "offset": 184, - "flags": 31, + "offset": 128, + "flags": 268435487, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2061662244 + "hash": 2306580681, + "enum_options": { + "__BASECLASS": "CharacterRaceTable" + } }, - "m_startTime": { - "type": "int", + "m_eGender": { + "type": "enum eGender", "id": 8, - "offset": 216, + "offset": 160, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1386968823 + "hash": 2776344943 }, - "m_status": { - "type": "int", + "m_fScale": { + "type": "float", "id": 9, - "offset": 220, + "offset": 164, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 960781182 + "hash": 503137701 }, - "m_friendsOnly": { - "type": "bool", + "m_nPrimaryColor": { + "type": "int", "id": 10, - "offset": 236, + "offset": 168, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1420401792 + "hash": 310334923 }, - "m_tournamentNameID": { - "type": "unsigned int", + "m_nSecondaryColor": { + "type": "int", "id": 11, - "offset": 224, + "offset": 172, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1799846440 + "hash": 516938671 }, - "m_leagueID": { - "type": "unsigned int", + "m_nPatternOption": { + "type": "int", "id": 12, - "offset": 228, + "offset": 176, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 692361645 + "hash": 413195679 }, - "m_seasonID": { - "type": "unsigned int", + "m_nGeometryOption": { + "type": "int", "id": 13, - "offset": 232, + "offset": 180, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 535260643 + "hash": 676541869 }, - "m_bUpdateLadder": { - "type": "bool", + "m_sNaturalAttack": { + "type": "std::string", "id": 14, - "offset": 248, + "offset": 184, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1937525956 - }, - "m_maxPointsPerMatch": { - "type": "unsigned int", - "id": 15, - "offset": 240, - "flags": 31, + "hash": 2131867453 + } + } + }, + "1054860559": { + "name": "class SG_GameActionClient_PlaySound*", + "bases": [ + "SG_GameAction_PlaySound", + "SG_GameAction", + "PropertyClass" + ], + "hash": 1054860559, + "properties": { + "m_target": { + "type": "enum SG_GameAction::SG_Target", + "id": 0, + "offset": 72, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1397040900 + "hash": 1166870973, + "enum_options": { + "Target_Ball": 0, + "Target_Self": 1, + "Target_Connections": 2, + "__DEFAULT": "Target_Ball" + } }, - "m_estimatedWeight": { - "type": "float", - "id": 16, - "offset": 244, - "flags": 31, - "container": "Static", - "dynamic": false, + "m_simpleSounds": { + "type": "std::string", + "id": 1, + "offset": 112, + "flags": 7, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 1374360127 - }, - "m_maxELOError": { - "type": "int", - "id": 17, - "offset": 252, + "hash": 3351944033 + } + } + }, + "1481573816": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1481573816, + "properties": { + "m_teamID": { + "type": "gid", + "id": 0, + "offset": 72, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 318998922 + "hash": 982102220 }, - "m_uniqueMatchID": { - "type": "std::string", - "id": 18, - "offset": 264, + "m_teamResolution": { + "type": "unsigned char", + "id": 1, + "offset": 80, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3291026220 - }, - "m_pvpDuelModifiersTemplates": { - "type": "class SharedPointer", - "id": 19, - "offset": 296, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1193155411 - }, - "m_teamSize": { - "type": "unsigned int", - "id": 20, - "offset": 256, - "flags": 31, + "hash": 1933240587 + } + } + }, + "623095051": { + "name": "class SharedPointer", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 623095051, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2343388751 + "hash": 3130754092 } } }, - "330226830": { - "name": "class SharedPointer", + "1905911669": { + "name": "class ProvidePetPowerTemplate", "bases": [ - "ReqNumeric", - "Requirement", + "GameEffectTemplate", "PropertyClass" ], - "hash": 330226830, + "hash": 1905911669, "properties": { - "m_applyNOT": { - "type": "bool", + "m_effectName": { + "type": "std::string", "id": 0, "offset": 72, - "flags": 31, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1746328074, - "enum_options": { - "__DEFAULT": 0 - } + "hash": 2029161513 }, - "m_operator": { - "type": "enum Requirement::Operator", + "m_effectCategory": { + "type": "std::string", "id": 1, - "offset": 76, - "flags": 2097183, + "offset": 104, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2672792317, - "enum_options": { - "ROP_AND": 0, - "ROP_OR": 1, - "__DEFAULT": "ROP_AND" - } + "hash": 1852673222 }, - "m_numericValue": { - "type": "float", + "m_sortOrder": { + "type": "int", "id": 2, - "offset": 80, - "flags": 31, + "offset": 148, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 521915239 + "hash": 1411218206 }, - "m_operatorType": { - "type": "enum ReqNumeric::OPERATOR_TYPE", + "m_duration": { + "type": "double", "id": 3, - "offset": 84, - "flags": 2097183, + "offset": 192, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2228122961, - "enum_options": { - "OPERATOR_UNKNOWN": 4294967295, - "OPERATOR_EQUALS": 0, - "OPERATOR_GREATER_THAN": 1, - "OPERATOR_LESS_THAN": 2, - "OPERATOR_GREATER_THAN_EQ": 3, - "OPERATOR_LESS_THAN_EQ": 4 - } + "hash": 2727932435 }, - "m_galleryWorld": { + "m_stackingCategories": { "type": "std::string", "id": 4, - "offset": 88, - "flags": 31, - "container": "Static", - "dynamic": false, + "offset": 160, + "flags": 7, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 3310813907 + "hash": 1774497525 }, - "m_exhibitName": { - "type": "std::string", + "m_isPersistent": { + "type": "bool", "id": 5, - "offset": 120, - "flags": 31, + "offset": 153, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1832300681 + "hash": 923861920 }, - "m_testValue": { - "type": "float", + "m_bIsOnPet": { + "type": "bool", "id": 6, + "offset": 154, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 522593303 + }, + "m_isPublic": { + "type": "bool", + "id": 7, "offset": 152, - "flags": 31, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1624748404 - } - } - }, - "1110416958": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1110416958, - "properties": { - "m_level": { - "type": "unsigned char", - "id": 0, - "offset": 72, + "hash": 1728439822 + }, + "m_visualEffectAddName": { + "type": "std::string", + "id": 8, + "offset": 200, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1438884808 + "hash": 3382086694 }, - "m_xpToLevel": { - "type": "int", - "id": 1, - "offset": 76, + "m_visualEffectRemoveName": { + "type": "std::string", + "id": 9, + "offset": 232, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1972600157 + "hash": 1541697323 }, - "m_levelName": { + "m_onAddFunctorName": { "type": "std::string", - "id": 2, - "offset": 80, - "flags": 8388615, + "id": 10, + "offset": 280, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3595417396 + "hash": 1561843107 + }, + "m_onRemoveFunctorName": { + "type": "std::string", + "id": 11, + "offset": 312, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2559017864 + }, + "m_stackingRule": { + "type": "enum STACKING_RULE", + "id": 12, + "offset": 144, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 431568889, + "enum_options": { + "STACKING_ALLOWED": 0, + "STACKING_NOSTACK": 1, + "STACKING_REPLACE": 2 + } } } }, - "1110024773": { - "name": "class SharedPointer", + "623090702": { + "name": "class JewelVaultBehavior", "bases": [ + "JewelVaultBehaviorBase", + "BehaviorInstance", "PropertyClass" ], - "hash": 1110024773, + "hash": 623090702, "properties": { - "m_allMods": { - "type": "class SharedPointer", + "m_behaviorTemplateNameID": { + "type": "unsigned int", "id": 0, - "offset": 72, - "flags": 27, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_jewelList": { + "type": "unsigned int", + "id": 1, + "offset": 112, + "flags": 65543, "container": "List", "dynamic": true, "singleton": false, - "pointer": true, - "hash": 3780396482 + "pointer": false, + "hash": 1839384000 + }, + "m_jewelData": { + "type": "std::string", + "id": 2, + "offset": 128, + "flags": 551, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3125384972 } } }, - "1900156984": { - "name": "class SharedPointer", + "623039316": { + "name": "class MobRankLevel", "bases": [ - "Window", "PropertyClass" ], - "hash": 1900156984, + "hash": 623039316, "properties": { - "m_sName": { - "type": "std::string", + "m_rank": { + "type": "int", "id": 0, - "offset": 80, - "flags": 135, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2306437263 + "hash": 219803942 }, - "m_Children": { - "type": "class SharedPointer", + "m_level": { + "type": "int", "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621225959 - }, - "m_Style": { - "type": "unsigned int", - "id": 2, - "offset": 152, - "flags": 1048583, + "offset": 76, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152, - "H_CENTER": 16777216, - "H_RIGHT": 33554432, - "V_CENTER": 2147483648, - "V_BOTTOM": 67108864, - "SORT": 536870912, - "LAYOUT_VERT": 1073741824, - "LAYOUT_REVERSE": 2147483648, - "DO_NOT_WRAP": 134217728 - } + "hash": 801285362 + } + } + }, + "202303865": { + "name": "class ItemLocatorList*", + "bases": [ + "PropertyClass" + ], + "hash": 202303865, + "properties": { + "m_locations": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2663343121 }, - "m_Flags": { - "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 1048583, + "m_bIsMinigameLoot": { + "type": "bool", + "id": 1, + "offset": 88, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } + "hash": 1122496566 }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, - "flags": 135, + "m_bIsFishingLoot": { + "type": "bool", + "id": 2, + "offset": 89, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3105139380 + "hash": 1595567415 }, - "m_fTargetAlpha": { - "type": "float", - "id": 5, - "offset": 212, - "flags": 135, + "m_bIsMonstrologyHouseGuest": { + "type": "bool", + "id": 3, + "offset": 90, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1809129834 + "hash": 1974190378 }, - "m_fDisabledAlpha": { - "type": "float", - "id": 6, - "offset": 216, - "flags": 135, + "m_sUrl": { + "type": "std::string", + "id": 4, + "offset": 96, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1389987675 + "hash": 1717526561 + } + } + }, + "1056133914": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1056133914, + "properties": { + "m_hatchmakingPetsList": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2100166473 }, - "m_fAlpha": { - "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, + "m_disableKiosk": { + "type": "bool", + "id": 1, + "offset": 88, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 482130755 + "hash": 1561191592 }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, + "m_disableOffer": { + "type": "bool", + "id": 2, + "offset": 89, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3623628394 + "pointer": false, + "hash": 1565817209 }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, + "m_premiumPetExceptionCode": { + "type": "unsigned int", + "id": 3, + "offset": 92, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2102211316 - }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, + "hash": 2278118367 + } + } + }, + "1907948479": { + "name": "class SharedPointer", + "bases": [ + "CantripsInvisibilityEffect", + "GameEffectBase", + "PropertyClass" + ], + "hash": 1907948479, + "properties": { + "m_currentTickCount": { + "type": "double", + "id": 0, + "offset": 80, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1846695875 + "hash": 2533274692 }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, + "m_effectNameID": { + "type": "unsigned int", + "id": 1, + "offset": 96, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3389835433 + "hash": 1204067144 }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, + "m_bIsOnPet": { + "type": "bool", + "id": 2, + "offset": 73, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2547159940 + "hash": 522593303 }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, + "m_originatorID": { + "type": "gid", + "id": 3, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2587533771 + "hash": 1131810019 }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, + "m_itemSlotID": { + "type": "unsigned int", + "id": 4, + "offset": 112, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3091503757 + "hash": 1895747595 }, - "m_nHSpacing": { + "m_internalID": { "type": "int", - "id": 16, - "offset": 584, - "flags": 135, + "id": 5, + "offset": 92, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 893611957 + "hash": 1643137924 }, - "m_nVSpacing": { - "type": "int", - "id": 17, - "offset": 588, - "flags": 135, + "m_endTime": { + "type": "unsigned int", + "id": 6, + "offset": 88, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 551359491 + "hash": 716479635 } } }, - "747330152": { - "name": "class HatchmakingKioskBehaviorTemplate*", + "202004298": { + "name": "class CSRAccessPassList*", "bases": [ - "BehaviorTemplate", "PropertyClass" ], - "hash": 747330152, + "hash": 202004298, "properties": { - "m_behaviorName": { - "type": "std::string", + "m_passList": { + "type": "class CSRAccessPassInfo", "id": 0, "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - }, - "m_isKiosk": { - "type": "bool", - "id": 1, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, + "flags": 23, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 1545253296 + "hash": 3089809672 } } }, - "331030263": { - "name": "class SharedPointer", + "1056009323": { + "name": "class SharedPointer", "bases": [ + "TournamentUpdate", "PropertyClass" ], - "hash": 331030263, + "hash": 1056009323, "properties": { - "m_powerupLocations": { - "type": "class Vector3D", + "m_matchInfo": { + "type": "class SharedPointer", "id": 0, "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 3618004416 - }, - "m_numberOfNodes": { - "type": "int", - "id": 1, - "offset": 88, - "flags": 7, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1229751665 + "pointer": true, + "hash": 2424135306 } } }, - "747047641": { - "name": "class SharedPointer", + "1483305544": { + "name": "class ClientRemoveProtectionEffectCinematicAction*", "bases": [ + "RemoveProtectionEffectCinematicAction", + "ActorCinematicAction", + "CinematicAction", "PropertyClass" ], - "hash": 747047641, + "hash": 1483305544, "properties": { - "m_categories": { - "type": "class ObjStateCategory*", + "m_timeOffset": { + "type": "float", "id": 0, - "offset": 128, + "offset": 72, "flags": 7, - "container": "List", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1980433352 + "pointer": false, + "hash": 2237098605 }, - "m_stateSetName": { + "m_actor": { "type": "std::string", "id": 1, - "offset": 72, + "offset": 80, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1863712969 + "hash": 2285866132 } } }, - "1110485234": { - "name": "class ReqHasQuest", + "1906855338": { + "name": "class RandomSpellEffect", "bases": [ - "Requirement", + "SpellEffect", "PropertyClass" ], - "hash": 1110485234, + "hash": 1906855338, "properties": { - "m_applyNOT": { - "type": "bool", + "m_effectType": { + "type": "enum SpellEffect::kSpellEffects", "id": 0, "offset": 72, - "flags": 31, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1746328074, + "hash": 2578255295, "enum_options": { - "__DEFAULT": 0 + "kInvalidSpellEffect": 0, + "kDamage": 1, + "kDamageNoCrit": 2, + "kHeal": 3, + "kHealPercent": 4, + "kSetHealPercent": 113, + "kStealHealth": 5, + "kReduceOverTime": 6, + "kDetonateOverTime": 7, + "kPushCharm": 8, + "kStealCharm": 9, + "kPushWard": 10, + "kStealWard": 11, + "kPushOverTime": 12, + "kStealOverTime": 13, + "kRemoveCharm": 14, + "kRemoveWard": 15, + "kRemoveOverTime": 16, + "kRemoveAura": 17, + "kSwapAll": 18, + "kSwapCharm": 19, + "kSwapWard": 20, + "kSwapOverTime": 21, + "kModifyIncomingDamage": 22, + "kModifyIncomingDamageFlat": 119, + "kMaximumIncomingDamage": 23, + "kModifyIncomingHeal": 24, + "kModifyIncomingHealFlat": 118, + "kModifyIncomingDamageType": 25, + "kModifyIncomingArmorPiercing": 26, + "kModifyOutgoingDamage": 27, + "kModifyOutgoingDamageFlat": 121, + "kModifyOutgoingHeal": 28, + "kModifyOutgoingHealFlat": 120, + "kModifyOutgoingDamageType": 29, + "kModifyOutgoingArmorPiercing": 30, + "kModifyOutgoingStealHealth": 31, + "kModifyIncomingStealHealth": 32, + "kBounceNext": 33, + "kBouncePrevious": 34, + "kBounceBack": 35, + "kBounceAll": 36, + "kAbsorbDamage": 37, + "kAbsorbHeal": 38, + "kModifyAccuracy": 39, + "kDispel": 40, + "kConfusion": 41, + "kCloakedCharm": 42, + "kCloakedWard": 43, + "kStunResist": 44, + "kClue": 111, + "kPipConversion": 45, + "kCritBoost": 46, + "kCritBlock": 47, + "kPolymorph": 48, + "kDelayCast": 49, + "kModifyCardCloak": 50, + "kModifyCardDamage": 51, + "kModifyCardAccuracy": 53, + "kModifyCardMutation": 54, + "kModifyCardRank": 55, + "kModifyCardArmorPiercing": 56, + "kSummonCreature": 65, + "kTeleportPlayer": 66, + "kStun": 67, + "kDampen": 68, + "kReshuffle": 69, + "kMindControl": 70, + "kModifyPips": 71, + "kModifyPowerPips": 72, + "kModifyShadowPips": 73, + "kModifyHate": 74, + "kDamageOverTime": 75, + "kHealOverTime": 76, + "kModifyPowerPipChance": 77, + "kModifyRank": 78, + "kStunBlock": 79, + "kRevealCloak": 80, + "kInstantKill": 81, + "kAfterlife": 82, + "kDeferredDamage": 83, + "kDamagePerTotalPipPower": 84, + "kModifyCardHeal": 52, + "kModifyCardCharm": 57, + "kModifyCardWard": 58, + "kModifyCardOutgoingDamage": 59, + "kModifyCardOutgoingAccuracy": 60, + "kModifyCardOutgoingHeal": 61, + "kModifyCardOutgoingArmorPiercing": 62, + "kModifyCardIncomingDamage": 63, + "kModifyCardAbsorbDamage": 64, + "kCloakedWardNoRemove": 86, + "kAddCombatTriggerList": 87, + "kRemoveCombatTriggerList": 88, + "kBacklashDamage": 89, + "kModifyBacklash": 90, + "kIntercept": 91, + "kShadowSelf": 92, + "kShadowCreature": 93, + "kModifyShadowCreatureLevel": 94, + "kSelectShadowCreatureAttackTarget": 95, + "kShadowDecrementTurn": 96, + "kCritBoostSchoolSpecific": 97, + "kSpawnCreature": 98, + "kUnPolymorph": 99, + "kPowerPipConversion": 100, + "kProtectCardBeneficial": 101, + "kProtectCardHarmful": 102, + "kProtectBeneficial": 103, + "kProtectHarmful": 104, + "kDivideDamage": 105, + "kCollectEssence": 106, + "kKillCreature": 107, + "kDispelBlock": 108, + "kConfusionBlock": 109, + "kModifyPipRoundRate": 110, + "kMaxHealthDamage": 112, + "kUntargetable": 114, + "kMakeTargetable": 115, + "kForceTargetable": 116, + "kRemoveStunBlock": 117, + "kExitCombat": 122, + "kSuspendPips": 123, + "kResumePips": 124, + "kAutoPass": 125, + "kStopAutoPass": 126, + "kVanish": 127, + "kStopVanish": 128, + "kMaxHealthHeal": 129, + "kHealByWard": 130, + "kTaunt": 131, + "kPacify": 132, + "kRemoveTargetRestriction": 133, + "kConvertHangingEffect": 134, + "kAddSpellToDeck": 135, + "kAddSpellToHand": 136, + "kModifyIncomingDamageOverTime": 137, + "kModifyIncomingHealOverTime": 138, + "kModifyCardDamagebyRank": 139, + "kPushConvertedCharm": 140, + "kStealConvertedCharm": 141, + "kPushConvertedWard": 142, + "kStealConvertedWard": 143, + "kPushConvertedOverTime": 144, + "kStealConvertedOverTime": 145, + "kRemoveConvertedCharm": 146, + "kRemoveConvertedWard": 147, + "kRemoveConvertedOverTime": 148, + "kModifyOverTimeDuration": 149, + "kModifySchoolPips": 150 } }, - "m_operator": { - "type": "enum Requirement::Operator", + "m_effectParam": { + "type": "int", "id": 1, "offset": 76, - "flags": 2097183, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2672792317, - "enum_options": { - "ROP_AND": 0, - "ROP_OR": 1, - "__DEFAULT": "ROP_AND" - } + "hash": 357920024 }, - "m_questName": { - "type": "std::string", + "m_disposition": { + "type": "enum SpellEffect::kHangingDisposition", "id": 2, "offset": 80, - "flags": 268435463, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1702112846, + "hash": 1904841031, "enum_options": { - "__BASECLASS": "QuestTemplate" + "kBoth": 0, + "kBeneficial": 1, + "kHarmful": 2 } - } - } - }, - "1901434521": { - "name": "class SharedPointer", - "bases": [ - "ServiceOptionBase", - "PropertyClass" - ], - "hash": 1901434521, - "properties": { - "m_serviceName": { + }, + "m_sDamageType": { "type": "std::string", - "id": 0, - "offset": 72, + "id": 3, + "offset": 88, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2501054223 + }, + "m_damageType": { + "type": "unsigned int", + "id": 4, + "offset": 84, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2206028813 + "hash": 737882766 }, - "m_iconKey": { - "type": "std::string", - "id": 1, - "offset": 168, + "m_pipNum": { + "type": "int", + "id": 5, + "offset": 128, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 830827539 + }, + "m_actNum": { + "type": "int", + "id": 6, + "offset": 132, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2457138637 + "hash": 236824866 }, - "m_displayKey": { - "type": "std::string", - "id": 2, - "offset": 104, + "m_effectTarget": { + "type": "enum SpellEffect::kEffectTarget", + "id": 7, + "offset": 140, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2458940523, + "enum_options": { + "kInvalidTarget": 0, + "kSpell": 1, + "kSpecificSpells": 2, + "kGlobal": 3, + "kEnemyTeam": 4, + "kEnemyTeamAllAtOnce": 5, + "kFriendlyTeam": 6, + "kFriendlyTeamAllAtOnce": 7, + "kEnemySingle": 8, + "kFriendlySingle": 9, + "kMinion": 10, + "kFriendlyMinion": 17, + "kEnemyMinion": 18, + "kSelf": 11, + "kAtLeastOneEnemy": 13, + "kPreselectedEnemySingle": 12, + "kMultiTargetEnemy": 14, + "kMultiTargetFriendly": 15, + "kFriendlySingleNotMe": 16 + } + }, + "m_numRounds": { + "type": "int", + "id": 8, + "offset": 144, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3023276954 + "hash": 1229753829 }, - "m_serviceIndex": { + "m_paramPerRound": { + "type": "int", + "id": 9, + "offset": 148, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 683234234 + }, + "m_healModifier": { + "type": "float", + "id": 10, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1317921248, + "enum_options": { + "__DEFAULT": "1.0" + } + }, + "m_spellTemplateID": { "type": "unsigned int", - "id": 3, - "offset": 204, + "id": 11, + "offset": 120, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2103126710 + "hash": 585567702 }, - "m_forceInteract": { + "m_enchantmentSpellTemplateID": { + "type": "unsigned int", + "id": 12, + "offset": 124, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 246955115 + }, + "m_act": { "type": "bool", - "id": 4, - "offset": 200, + "id": 13, + "offset": 136, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 269510283 + }, + "m_cloaked": { + "type": "bool", + "id": 14, + "offset": 157, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1705789564 + "hash": 7349510 }, - "m_questID": { - "type": "gid", - "id": 5, - "offset": 216, + "m_bypassProtection": { + "type": "bool", + "id": 15, + "offset": 159, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1246549335 + "hash": 1657138252 }, - "m_goalID": { - "type": "gid", - "id": 6, - "offset": 224, + "m_armorPiercingParam": { + "type": "int", + "id": 16, + "offset": 160, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 485200232 + "hash": 2025530205 }, - "m_goalTitle": { - "type": "std::string", - "id": 7, - "offset": 272, + "m_chancePerTarget": { + "type": "int", + "id": 17, + "offset": 164, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2291910240 + "hash": 845426794 }, - "m_questTitle": { - "type": "std::string", - "id": 8, - "offset": 240, + "m_protected": { + "type": "bool", + "id": 18, + "offset": 168, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1805465583 + "hash": 1445655037 }, - "m_goalNameID": { - "type": "unsigned int", - "id": 9, - "offset": 232, + "m_converted": { + "type": "bool", + "id": 19, + "offset": 169, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 403158846 + "hash": 1590428797 + }, + "m_rank": { + "type": "int", + "id": 20, + "offset": 208, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 219803942 + }, + "m_effectList": { + "type": "class SharedPointer", + "id": 21, + "offset": 224, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 707154804 } } }, - "331052464": { - "name": "class BoosterPackTemplate*", + "201578593": { + "name": "class SpawnObject", "bases": [ - "WizItemTemplate", - "ItemTemplate", - "GameObjectTemplate", - "CoreTemplate", "PropertyClass" ], - "hash": 331052464, + "hash": 201578593, "properties": { - "m_behaviors": { - "type": "class BehaviorTemplate*", + "m_name": { + "type": "std::string", "id": 0, "offset": 72, "flags": 7, - "container": "Vector", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1197808594 + "pointer": false, + "hash": 1717359772 }, - "m_objectName": { - "type": "std::string", + "m_id": { + "type": "gid", "id": 1, - "offset": 96, + "offset": 104, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2154940147 + "hash": 2090569797 }, - "m_templateID": { - "type": "unsigned int", + "m_active": { + "type": "bool", "id": 2, - "offset": 128, - "flags": 16777223, + "offset": 112, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1286746870 + "hash": 239335471 }, - "m_visualID": { - "type": "unsigned int", + "m_popSensitive": { + "type": "bool", "id": 3, - "offset": 132, + "offset": 113, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1118778894 + "hash": 1597743708 }, - "m_adjectiveList": { - "type": "std::string", + "m_maxNumberOfSpawns": { + "type": "unsigned int", "id": 4, - "offset": 248, + "offset": 116, "flags": 7, - "container": "List", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 3195213318 + "hash": 641389965 }, - "m_exemptFromAOI": { + "m_atLeastOneSpawn": { "type": "bool", "id": 5, - "offset": 240, + "offset": 120, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1457879059 + "hash": 739650380 }, - "m_displayName": { - "type": "std::string", + "m_activateAtMax": { + "type": "bool", "id": 6, - "offset": 168, - "flags": 8388615, + "offset": 121, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2446900370 + "hash": 992369727 }, - "m_description": { - "type": "std::string", + "m_spawnTime": { + "type": "int", "id": 7, - "offset": 136, - "flags": 8388615, + "offset": 124, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1649374815 + "hash": 752966546 }, - "m_nObjectType": { - "type": "enum ObjectType", + "m_respawnRate": { + "type": "unsigned int", "id": 8, - "offset": 200, - "flags": 2097159, + "offset": 128, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2118905880, - "enum_options": { - "OT_UNDEFINED": 0, - "OT_PLAYER": 1, - "OT_NPC": 2, - "OT_PROP": 3, - "OT_OBJECT": 4, - "OT_HOUSE": 5, - "OT_KEY": 6, - "OT_OLD_KEY": 7, - "OT_DEED": 8, - "OT_MAIL": 9, - "OT_RECIPE": 17, - "OT_EQUIP_HEAD": 10, - "OT_EQUIP_CHEST": 11, - "OT_EQUIP_LEGS": 12, - "OT_EQUIP_HANDS": 13, - "OT_EQUIP_FINGER": 14, - "OT_EQUIP_FEET": 15, - "OT_EQUIP_EAR": 16, - "OT_BUILDING_BLOCK": 18, - "OT_BUILDING_BLOCK_SOLID": 19, - "OT_GOLF": 20, - "OT_DOOR": 21, - "OT_PET": 22, - "OT_FABRIC": 23, - "OT_WINDOW": 24, - "OT_ROOF": 25, - "OT_HORSE": 26, - "OT_STRUCTURE": 27, - "OT_HOUSING_TEXTURE": 28, - "OT_PLANT": 29 - } + "hash": 1675694521 }, - "m_sIcon": { - "type": "std::string", + "m_spawnList": { + "type": "class SpawnItem*", "id": 9, - "offset": 208, - "flags": 131079, - "container": "Static", - "dynamic": false, + "offset": 160, + "flags": 7, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 2306259831 + "pointer": true, + "hash": 2620469846 }, - "m_equipRequirements": { + "m_globalDynamicReqs": { "type": "class RequirementList*", "id": 10, - "offset": 280, + "offset": 152, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": true, - "hash": 2762617226 + "hash": 3534313715 }, - "m_purchaseRequirements": { - "type": "class RequirementList*", + "m_globalDynamic": { + "type": "bool", "id": 11, - "offset": 288, + "offset": 144, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3174641793 + "pointer": false, + "hash": 1951691017 }, - "m_equipEffects": { - "type": "class GameEffectInfo*", + "m_waitForTimer": { + "type": "bool", "id": 12, - "offset": 296, + "offset": 122, "flags": 7, - "container": "List", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 836628351 + "pointer": false, + "hash": 2143039664 }, - "m_baseCost": { - "type": "float", + "m_zoneLevelMin": { + "type": "unsigned int", "id": 13, - "offset": 312, - "flags": 7, + "offset": 132, + "flags": 263, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1565352651 + "hash": 1028934149 }, - "m_creditsCost": { - "type": "float", + "m_zoneLevelMax": { + "type": "unsigned int", "id": 14, - "offset": 320, - "flags": 7, + "offset": 136, + "flags": 263, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 805514974 + "hash": 1028933895 }, - "m_avatarInfo": { - "type": "class AvatarItemInfoBase*", + "m_zoneLevelUp": { + "type": "unsigned int", "id": 15, - "offset": 328, - "flags": 7, + "offset": 140, + "flags": 263, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2627321299 - }, - "m_avatarFlags": { - "type": "std::string", - "id": 16, - "offset": 336, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, "pointer": false, - "hash": 2347762759 - }, - "m_itemLimit": { - "type": "int", - "id": 17, - "offset": 316, + "hash": 1342541638 + } + } + }, + "1482908019": { + "name": "class AddAuraCinematicStageTemplate", + "bases": [ + "CinematicStageTemplate", + "PropertyClass" + ], + "hash": 1482908019, + "properties": { + "m_name": { + "type": "std::string", + "id": 0, + "offset": 72, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1799746856 + "hash": 1717359772 }, - "m_holidayFlag": { - "type": "std::string", - "id": 18, - "offset": 352, + "m_duration": { + "type": "float", + "id": 1, + "offset": 104, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2994795359 + "hash": 920323453 }, - "m_itemSetBonusTemplateID": { - "type": "unsigned int", - "id": 19, - "offset": 384, - "flags": 33554439, - "container": "Static", - "dynamic": false, + "m_actions": { + "type": "class SharedPointer", + "id": 2, + "offset": 112, + "flags": 7, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 1316835672 + "pointer": true, + "hash": 1380578687 }, - "m_numPrimaryColors": { - "type": "int", - "id": 20, - "offset": 428, + "m_stageRelationships": { + "type": "class SharedPointer", + "id": 3, + "offset": 128, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 981103872 + "pointer": true, + "hash": 499983354 }, - "m_numSecondaryColors": { - "type": "int", - "id": 21, - "offset": 432, - "flags": 7, + "m_sound": { + "type": "std::string", + "id": 4, + "offset": 160, + "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1310416868 + "hash": 2307644996 }, - "m_numPatterns": { - "type": "int", - "id": 22, - "offset": 436, - "flags": 7, + "m_effect": { + "type": "std::string", + "id": 5, + "offset": 192, + "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 953162171 + "hash": 1894145160 }, - "m_school": { + "m_spellText": { "type": "std::string", - "id": 23, - "offset": 392, - "flags": 7, + "id": 6, + "offset": 224, + "flags": 8388615, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2438566051 + "hash": 2688705600 }, - "m_arenaPointCost": { - "type": "int", - "id": 24, - "offset": 440, + "m_bSwitchCameraToWideLong": { + "type": "bool", + "id": 7, + "offset": 152, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1819621796 - }, - "m_pvpCurrencyCost": { - "type": "int", - "id": 25, - "offset": 444, + "hash": 2136912684, + "enum_options": { + "__DEFAULT": 1 + } + } + } + }, + "1906141963": { + "name": "class WhirlyBurlyAddGroup", + "bases": [ + "PropertyClass" + ], + "hash": 1906141963, + "properties": { + "m_playerList": { + "type": "gid", + "id": 0, + "offset": 72, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 645595444 - }, - "m_pvpTourneyCurrencyCost": { - "type": "int", - "id": 26, - "offset": 448, - "flags": 7, + "hash": 1909774945 + } + } + }, + "1056070233": { + "name": "class ClientMountInteractableOption", + "bases": [ + "MountInteractableOption", + "InteractableOption", + "ServiceOptionBase", + "PropertyClass" + ], + "hash": 1056070233, + "properties": { + "m_serviceName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 517874954 + "hash": 2206028813 }, - "m_rank": { - "type": "int", - "id": 27, - "offset": 424, - "flags": 7, + "m_iconKey": { + "type": "std::string", + "id": 1, + "offset": 168, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 219803942 + "hash": 2457138637 }, - "m_boyIconIndex": { - "type": "int", - "id": 28, - "offset": 452, - "flags": 7, + "m_displayKey": { + "type": "std::string", + "id": 2, + "offset": 104, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 802140453 + "hash": 3023276954 }, - "m_girlIconIndex": { - "type": "int", - "id": 29, - "offset": 456, - "flags": 7, + "m_serviceIndex": { + "type": "unsigned int", + "id": 3, + "offset": 204, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 832706793 + "hash": 2103126710 }, - "m_leashOffsetOverride": { - "type": "class SharedPointer", - "id": 30, - "offset": 464, - "flags": 7, + "m_forceInteract": { + "type": "bool", + "id": 4, + "offset": 200, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1692586788 + "pointer": false, + "hash": 1705789564 }, - "m_rarity": { - "type": "enum RarityType", - "id": 31, - "offset": 460, - "flags": 2097159, + "m_optionIndex": { + "type": "int", + "id": 5, + "offset": 216, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2253792108, - "enum_options": { - "RT_COMMON": 0, - "RT_UNCOMMON": 1, - "RT_RARE": 2, - "RT_ULTRARARE": 3, - "RT_EPIC": 4 - } - }, - "m_lootTables": { - "type": "std::string", - "id": 32, - "offset": 488, - "flags": 268435463, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1514961588, - "enum_options": { - "__BASECLASS": "LootTable" - } - }, - "m_featuredRewards": { - "type": "gid", - "id": 33, - "offset": 504, - "flags": 33554439, - "container": "List", - "dynamic": true, + "hash": 276287019 + } + } + }, + "1482190343": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1482190343, + "properties": { + "m_serializedItems": { + "type": "std::string", + "id": 0, + "offset": 96, + "flags": 575, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 1360288832 + "hash": 1828227529 }, - "m_nif": { - "type": "std::string", - "id": 34, - "offset": 520, - "flags": 131079, + "m_equipmentSetName": { + "type": "unsigned int", + "id": 1, + "offset": 88, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1764743064 + "hash": 518194738 }, - "m_boosterPackType": { - "type": "enum BoosterPackTemplate::BoosterPackType", - "id": 35, - "offset": 480, - "flags": 2097159, + "m_isEquipped": { + "type": "bool", + "id": 2, + "offset": 128, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2575057189, - "enum_options": { - "TreasureCards": 0, - "Reagents": 1, - "Snacks": 2, - "GardenTreasureCards": 3, - "Items": 4, - "MixOfVarious": 5, - "RockhammerJewelPack": 6, - "PurreauPack": 7, - "SchoolJewelPack": 8 - } + "hash": 1792437804 } } }, - "1901348323": { - "name": "class CantripXPConfig*", + "623319248": { + "name": "class HatchmakingPremiumPetsList*", "bases": [ "PropertyClass" ], - "hash": 1901348323, + "hash": 623319248, "properties": { - "m_levelInfo": { - "type": "class CantripLevelInfo*", + "m_addedPremiumPets": { + "type": "unsigned int", "id": 0, "offset": 72, "flags": 7, "container": "List", "dynamic": true, "singleton": false, - "pointer": true, - "hash": 3391404974 + "pointer": false, + "hash": 2021117594 }, - "m_maxLevel": { - "type": "unsigned char", + "m_removedPremiumPets": { + "type": "unsigned int", "id": 1, "offset": 88, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 783962734 + "hash": 636888858 } } }, - "748376216": { - "name": "class SharedPointer", + "1906135662": { + "name": "class SharedPointer", "bases": [ "PropertyClass" ], - "hash": 748376216, + "hash": 1906135662, "properties": { - "m_schoolNameID": { + "m_itemTemplateID": { "type": "unsigned int", "id": 0, "offset": 72, - "flags": 31, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 624113571 + "hash": 2190120133 + }, + "m_purchaseCount": { + "type": "int", + "id": 1, + "offset": 76, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 68125278 } } }, - "1900631756": { - "name": "class OldEquipmentBehavior*", + "1482117384": { + "name": "class SharedPointer", "bases": [ - "BehaviorInstance", + "GraphicalSpell", + "Spell", "PropertyClass" ], - "hash": 1900631756, + "hash": 1482117384, "properties": { - "m_behaviorTemplateNameID": { + "m_templateID": { "type": "unsigned int", "id": 0, - "offset": 104, - "flags": 39, + "offset": 128, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 + "hash": 1286746870 }, - "m_publicItemList": { - "type": "class OldWizardEquippedItemInfo*", + "m_enchantment": { + "type": "unsigned int", "id": 1, - "offset": 112, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2226122424 - } - } - }, - "1114710171": { - "name": "class SharedPointer", - "bases": [ - "ControlButton", - "Window", - "PropertyClass" - ], - "hash": 1114710171, - "properties": { - "m_sName": { - "type": "std::string", - "id": 0, "offset": 80, - "flags": 135, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2306437263 - }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621225959 + "hash": 2217886818 }, - "m_Style": { - "type": "unsigned int", + "m_pipCost": { + "type": "class SharedPointer", "id": 2, - "offset": 152, - "flags": 1048583, + "offset": 176, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152, - "SHOW_HOTKEY": 16777216, - "EFFECT_SCALE": 67108864, - "LOCK_ICON_SIZE": 33554432, - "LEFT_TEXT": 536870912, - "NO_FIT_TEXT": 1073741824 - } + "pointer": true, + "hash": 3605704820 }, - "m_Flags": { - "type": "unsigned int", + "m_regularAdjust": { + "type": "int", "id": 3, - "offset": 156, - "flags": 1048583, + "offset": 192, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } + "hash": 1420453335 }, - "m_Window": { - "type": "class Rect", + "m_magicSchoolID": { + "type": "unsigned int", "id": 4, - "offset": 160, - "flags": 135, + "offset": 136, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3105139380 + "hash": 893146499 }, - "m_fTargetAlpha": { - "type": "float", + "m_accuracy": { + "type": "unsigned char", "id": 5, - "offset": 212, - "flags": 135, + "offset": 132, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1809129834 + "hash": 2273914939 }, - "m_fDisabledAlpha": { - "type": "float", + "m_treasureCard": { + "type": "bool", "id": 6, - "offset": 216, - "flags": 135, + "offset": 197, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1389987675 + "hash": 1764879128 }, - "m_fAlpha": { - "type": "float", + "m_battleCard": { + "type": "bool", "id": 7, - "offset": 208, - "flags": 65671, + "offset": 198, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 482130755 + "hash": 1332843753 }, - "m_pWindowStyle": { - "type": "class SharedPointer", + "m_itemCard": { + "type": "bool", "id": 8, - "offset": 232, - "flags": 135, + "offset": 199, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3623628394 + "pointer": false, + "hash": 1683654300 }, - "m_sHelp": { - "type": "std::wstring", + "m_sideBoard": { + "type": "bool", "id": 9, - "offset": 248, - "flags": 4194439, + "offset": 200, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2102211316 + "hash": 1897838368 }, - "m_sScript": { - "type": "std::string", + "m_spellID": { + "type": "unsigned int", "id": 10, - "offset": 352, - "flags": 135, + "offset": 204, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1846695875 + "hash": 1697483258 }, - "m_Offset": { - "type": "class Point", + "m_leavesPlayWhenCastOverride": { + "type": "bool", "id": 11, - "offset": 192, - "flags": 135, + "offset": 216, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3389835433 + "hash": 874407398 }, - "m_Scale": { - "type": "class Point", + "m_cloaked": { + "type": "bool", "id": 12, - "offset": 200, - "flags": 135, + "offset": 196, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2547159940 + "hash": 7349510 }, - "m_sTip": { - "type": "std::wstring", + "m_enchantmentSpellIsItemCard": { + "type": "bool", "id": 13, - "offset": 392, - "flags": 4194439, + "offset": 76, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1513510520 + "hash": 531590701 }, - "m_BubbleList": { - "type": "class WindowBubble", + "m_premutationSpellID": { + "type": "unsigned int", "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, + "offset": 112, + "flags": 31, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 2587533771 + "hash": 1530256370 }, - "m_ParentOffset": { - "type": "class Rect", + "m_enchantedThisCombat": { + "type": "bool", "id": 15, - "offset": 176, - "flags": 135, + "offset": 77, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3091503757 + "hash": 1895738923 }, - "m_bToggle": { - "type": "bool", + "m_paramOverrides": { + "type": "class SharedPointer", "id": 16, - "offset": 608, - "flags": 135, - "container": "Static", - "dynamic": false, + "offset": 224, + "flags": 31, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 2071810903 + "pointer": true, + "hash": 2061635599 }, - "m_bButtonDown": { - "type": "bool", + "m_subEffectMeta": { + "type": "class SharedPointer", "id": 17, - "offset": 609, - "flags": 135, - "container": "Static", - "dynamic": false, + "offset": 240, + "flags": 31, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 840041705 + "pointer": true, + "hash": 1944101106 }, - "m_sLabel": { - "type": "std::wstring", + "m_delayEnchantment": { + "type": "bool", "id": 18, - "offset": 616, - "flags": 4194439, + "offset": 257, + "flags": 287, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2207009163 + "hash": 191336919 }, - "m_labelOffset": { - "type": "class Rect", + "m_PvE": { + "type": "bool", "id": 19, - "offset": 832, - "flags": 135, + "offset": 264, + "flags": 287, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1990646723 + "hash": 269492350 }, - "m_pButton": { - "type": "class SharedPointer", + "m_delayEnchantmentOrder": { + "type": "enum SpellEffect::kDelayOrder", "id": 20, - "offset": 656, - "flags": 135, + "offset": 72, + "flags": 287, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1543855875 + "pointer": false, + "hash": 2526055263, + "enum_options": { + "SpellEffect::kAnyOrder": 0, + "SpellEffect::kFirst": 1, + "SpellEffect::kSecond": 2 + } }, - "m_HotKey": { - "type": "unsigned int", + "m_roundAddedTC": { + "type": "int", "id": 21, - "offset": 672, - "flags": 135, + "offset": 260, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1631553409 + "hash": 112365451 }, - "m_Color": { - "type": "class Color", + "m_secondarySchoolID": { + "type": "unsigned int", "id": 22, - "offset": 676, - "flags": 262279, + "offset": 304, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1753714077 + "hash": 2081206026 }, - "m_bCursorOver": { - "type": "bool", + "m_fusionState": { + "type": "enum Spell::FusionState", "id": 23, - "offset": 689, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 283981103 - }, - "m_bAbortWhenCursorNotOver": { - "type": "bool", - "id": 24, - "offset": 706, - "flags": 135, + "offset": 308, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 325405258 - }, - "m_bHotKeyDown": { - "type": "bool", - "id": 25, - "offset": 680, - "flags": 135, - "container": "Static", - "dynamic": false, + "hash": 835324539, + "enum_options": { + "FS_Invalid": 0, + "FS_Partial": 1, + "FS_Valid": 2 + } + } + } + }, + "623319238": { + "name": "class HatchmakingPremiumPetsList", + "bases": [ + "PropertyClass" + ], + "hash": 623319238, + "properties": { + "m_addedPremiumPets": { + "type": "unsigned int", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 616989185 + "hash": 2021117594 }, - "m_fTime": { - "type": "float", - "id": 26, - "offset": 684, - "flags": 135, - "container": "Static", - "dynamic": false, + "m_removedPremiumPets": { + "type": "unsigned int", + "id": 1, + "offset": 88, + "flags": 7, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 883746156 - }, - "m_bGreyed": { + "hash": 636888858 + } + } + }, + "202147871": { + "name": "class SharedPointer", + "bases": [ + "ReqNumeric", + "Requirement", + "PropertyClass" + ], + "hash": 202147871, + "properties": { + "m_applyNOT": { "type": "bool", - "id": 27, - "offset": 688, - "flags": 135, + "id": 0, + "offset": 72, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1566556053 + "hash": 1746328074, + "enum_options": { + "__DEFAULT": 0 + } }, - "m_fMaxScale": { - "type": "float", - "id": 28, - "offset": 692, - "flags": 135, + "m_operator": { + "type": "enum Requirement::Operator", + "id": 1, + "offset": 76, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2070186635 + "hash": 2672792317, + "enum_options": { + "ROP_AND": 0, + "ROP_OR": 1, + "__DEFAULT": "ROP_AND" + } }, - "m_fScaleSpeed": { + "m_numericValue": { "type": "float", - "id": 29, - "offset": 696, - "flags": 135, + "id": 2, + "offset": 80, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1457135702 + "hash": 521915239 }, - "m_bUseDropShadow": { - "type": "bool", - "id": 30, - "offset": 704, - "flags": 135, + "m_operatorType": { + "type": "enum ReqNumeric::OPERATOR_TYPE", + "id": 3, + "offset": 84, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 93063037 + "hash": 2228122961, + "enum_options": { + "OPERATOR_UNKNOWN": 4294967295, + "OPERATOR_EQUALS": 0, + "OPERATOR_GREATER_THAN": 1, + "OPERATOR_LESS_THAN": 2, + "OPERATOR_GREATER_THAN_EQ": 3, + "OPERATOR_LESS_THAN_EQ": 4 + } }, - "m_bUseOutline": { - "type": "bool", - "id": 31, - "offset": 705, - "flags": 135, + "m_magicSchool": { + "type": "std::string", + "id": 4, + "offset": 88, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 744292994 - }, - "m_pGreyedState": { - "type": "class SharedPointer", - "id": 32, - "offset": 768, - "flags": 135, + "hash": 1597012900 + } + } + }, + "202096137": { + "name": "class SharedPointer", + "bases": [ + "BGPlayerBehavior", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 202096137, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2703352263 - }, - "m_pNormalState": { - "type": "class SharedPointer", - "id": 33, - "offset": 752, - "flags": 135, + "pointer": false, + "hash": 223437287 + } + } + }, + "1056397913": { + "name": "class ClientMountInteractableOption*", + "bases": [ + "MountInteractableOption", + "InteractableOption", + "ServiceOptionBase", + "PropertyClass" + ], + "hash": 1056397913, + "properties": { + "m_serviceName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1887909808 + "pointer": false, + "hash": 2206028813 }, - "m_pHighlightedState": { - "type": "class SharedPointer", - "id": 34, - "offset": 784, - "flags": 135, + "m_iconKey": { + "type": "std::string", + "id": 1, + "offset": 168, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2200177608 + "pointer": false, + "hash": 2457138637 }, - "m_pSelectedState": { - "type": "class SharedPointer", - "id": 35, - "offset": 800, - "flags": 135, + "m_displayKey": { + "type": "std::string", + "id": 2, + "offset": 104, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2266776432 + "pointer": false, + "hash": 3023276954 }, - "m_pDepressedState": { - "type": "class SharedPointer", - "id": 36, - "offset": 816, - "flags": 135, + "m_serviceIndex": { + "type": "unsigned int", + "id": 3, + "offset": 204, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1878185798 + "pointer": false, + "hash": 2103126710 }, - "m_itemID": { - "type": "gid", - "id": 37, - "offset": 992, - "flags": 7, + "m_forceInteract": { + "type": "bool", + "id": 4, + "offset": 200, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 569545460 + "hash": 1705789564 }, - "m_currencyType": { - "type": "enum PermanentShop::CurrencyTab", - "id": 38, - "offset": 1000, - "flags": 2097159, + "m_optionIndex": { + "type": "int", + "id": 5, + "offset": 216, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 405352622, - "enum_options": { - "Gold": 0, - "Crowns": 1, - "ArenaTickets": 2 - } + "hash": 276287019 } } }, - "331899708": { - "name": "class SharedPointer", + "1906396756": { + "name": "class SharedPointer", "bases": [ "PropertyClass" ], - "hash": 331899708, + "hash": 1906396756, "properties": { - "m_items": { - "type": "class SharedPointer", + "m_state": { + "type": "unsigned int", "id": 0, "offset": 72, "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1667746752 - } - } - }, - "1112909976": { - "name": "class CombatPlanningPhaseWindow*", - "bases": [ - "Window", - "PropertyClass" - ], - "hash": 1112909976, - "properties": { - "m_sName": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2306437263 + "hash": 1021505934 }, - "m_Children": { - "type": "class SharedPointer", + "m_startTimeMS": { + "type": "unsigned int", "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, + "offset": 76, + "flags": 31, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2621225959 + "pointer": false, + "hash": 843207562 }, - "m_Style": { - "type": "unsigned int", + "m_snapshotT": { + "type": "float", "id": 2, - "offset": 152, - "flags": 1048583, + "offset": 80, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "SCALE_CHILDREN": 2, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "FOCUS_LOCKED": 64, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152 - } + "hash": 1238335003 }, - "m_Flags": { + "m_snapshotMS": { "type": "unsigned int", "id": 3, - "offset": 156, - "flags": 1048583, + "offset": 84, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } + "hash": 1589766845 }, - "m_Window": { - "type": "class Rect", + "m_endTimeMS": { + "type": "unsigned int", "id": 4, - "offset": 160, - "flags": 135, + "offset": 88, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3105139380 + "hash": 388403347 }, - "m_fTargetAlpha": { - "type": "float", + "m_durationMS": { + "type": "unsigned int", "id": 5, - "offset": 212, - "flags": 135, + "offset": 92, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1809129834 + "hash": 2175220755 }, - "m_fDisabledAlpha": { + "m_timeScale": { "type": "float", "id": 6, - "offset": 216, - "flags": 135, + "offset": 96, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1389987675 - }, - "m_fAlpha": { - "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, + "hash": 550426190 + } + } + }, + "1482338966": { + "name": "class SharedPointer", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1482338966, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 482130755 - }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, + "hash": 223437287 + } + } + }, + "623766113": { + "name": "class SharedPointer", + "bases": [], + "hash": 623766113, + "properties": { + "m_templateID": { + "type": "gid", + "id": 0, + "offset": 88, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3623628394 + "pointer": false, + "hash": 1075328001 }, - "m_sHelp": { + "m_sortName": { "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, + "id": 1, + "offset": 352, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2102211316 + "hash": 2312609697 }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, + "m_crownsCost": { + "type": "int", + "id": 2, + "offset": 336, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1846695875 + "hash": 1592212719 }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, + "m_goldCost": { + "type": "int", + "id": 3, + "offset": 332, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3389835433 + "hash": 444550297 }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, + "m_description": { + "type": "std::wstring", + "id": 4, + "offset": 424, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2547159940 + "hash": 1445360156 }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, + "m_category": { + "type": "unsigned int", + "id": 5, + "offset": 328, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1513510520 + "hash": 1395753067 }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, + "m_isBundle": { + "type": "bool", + "id": 6, + "offset": 389, + "flags": 7, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 2587533771 + "hash": 1180966953 }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, + "m_sortType": { + "type": "int", + "id": 7, + "offset": 384, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3091503757 - } - } - }, - "331781598": { - "name": "class CastleTourMyCastleDataList*", - "bases": [ - "PropertyClass" - ], - "hash": 331781598, - "properties": { - "m_entryList": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1101912968 - } - } - }, - "749324872": { - "name": "class BattlegroundMatchmakingChat", - "bases": [ - "PropertyClass" - ], - "hash": 749324872, - "properties": { - "m_matchSize": { - "type": "int", - "id": 0, - "offset": 72, + "hash": 1019166596 + }, + "m_itemLimitReached": { + "type": "bool", + "id": 8, + "offset": 261, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 563704930 + "hash": 1250328557 }, - "m_secondsWaited": { - "type": "int", - "id": 1, - "offset": 76, + "m_islandOwned": { + "type": "bool", + "id": 9, + "offset": 275, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 606761671 + "hash": 314755307 } } }, - "1112707086": { - "name": "class DynaModDelta*", + "202181984": { + "name": "class SharedPointer", "bases": [ - "DynaMod", "PropertyClass" ], - "hash": 1112707086, + "hash": 202181984, "properties": { - "m_clientTag": { + "m_tierOneSpell": { "type": "std::string", "id": 0, - "offset": 80, - "flags": 63, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3409856790 + "hash": 1522049297 }, - "m_zoneName": { + "m_adjectiveList": { "type": "std::string", "id": 1, - "offset": 112, - "flags": 39, - "container": "Static", - "dynamic": false, + "offset": 104, + "flags": 7, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 2171167736 + "hash": 3195213318 }, - "m_zoneInstance": { - "type": "gid", + "m_returnRate": { + "type": "unsigned int", "id": 2, - "offset": 152, - "flags": 39, + "offset": 120, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 449538121 + "hash": 1243911353 }, - "m_originator": { - "type": "gid", + "m_unhideReqs": { + "type": "class RequirementList*", "id": 3, - "offset": 72, - "flags": 63, + "offset": 128, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 709051254 + "pointer": true, + "hash": 1858952922 }, - "m_index": { - "type": "int", + "m_shardType": { + "type": "gid", "id": 4, - "offset": 160, - "flags": 30, + "offset": 136, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 798031442 + "hash": 1047787692 }, - "m_zoneID": { - "type": "unsigned int", + "m_overrideStringNotEnoughShards": { + "type": "std::string", "id": 5, "offset": 144, - "flags": 16, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1440651126 + "hash": 2854831694 }, - "m_remove": { - "type": "bool", + "m_crownsResetSubscribers": { + "type": "unsigned int", "id": 6, "offset": 176, - "flags": 63, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 906763969 + "hash": 1405160851 }, - "m_state": { - "type": "std::string", + "m_goldResetSubscribers": { + "type": "unsigned int", "id": 7, - "offset": 184, - "flags": 39, + "offset": 180, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2307803100 + "hash": 2047077437 }, - "m_stateID": { + "m_crownsResetNonSubscribers": { "type": "unsigned int", "id": 8, - "offset": 216, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1849561019 - } - } - }, - "331781588": { - "name": "class CastleTourMyCastleDataList", - "bases": [ - "PropertyClass" - ], - "hash": 331781588, - "properties": { - "m_entryList": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1101912968 - } - } - }, - "748829085": { - "name": "class ClassProjectUpdateList", - "bases": [ - "PropertyClass" - ], - "hash": 748829085, - "properties": { - "m_activeProjectList": { - "type": "unsigned int", - "id": 0, - "offset": 72, + "offset": 184, "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 284210684 - } - } - }, - "1112586804": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1112586804, - "properties": {} - }, - "1900631780": { - "name": "class OldEquipmentBehavior", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1900631780, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 + "hash": 2241447230 }, - "m_publicItemList": { - "type": "class OldWizardEquippedItemInfo*", - "id": 1, - "offset": 112, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2226122424 - } - } - }, - "748767198": { - "name": "class BattleBookBehavior", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 748767198, - "properties": { - "m_behaviorTemplateNameID": { + "m_goldResetNonSubscribers": { "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, + "id": 9, + "offset": 188, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 - }, - "m_spellList": { - "type": "class SharedPointer", - "id": 1, - "offset": 120, - "flags": 27, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2181913740 - }, - "m_rating": { - "type": "class SharedPointer", - "id": 2, - "offset": 136, - "flags": 27, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2464459535 + "hash": 380967848 } } }, - "331845770": { - "name": "class WinAnimDelay*", + "1059335555": { + "name": "class WhirlyBurlyActor*", + "bases": [], + "hash": 1059335555, + "properties": {} + }, + "1907878682": { + "name": "class SharedPointer", "bases": [ - "WindowAnimation", "PropertyClass" ], - "hash": 331845770, + "hash": 1907878682, "properties": { - "m_bUseDeepCopy": { - "type": "bool", + "m_playerGID": { + "type": "gid", "id": 0, "offset": 72, - "flags": 135, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 433380635 + "hash": 578537369 }, - "m_fDelay": { - "type": "float", + "m_packedName": { + "type": "unsigned int", "id": 1, "offset": 80, - "flags": 135, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 485432396 + "hash": 518911062 }, - "m_fElapsedTime": { - "type": "float", + "m_points": { + "type": "unsigned int", "id": 2, "offset": 84, - "flags": 135, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1862647402 + "hash": 1049128778 } } }, - "1901351395": { - "name": "class CantripXPConfig", + "1058786843": { + "name": "class StaticControlButtonState", "bases": [ + "ControlButtonState", "PropertyClass" ], - "hash": 1901351395, + "hash": 1058786843, "properties": { - "m_levelInfo": { - "type": "class CantripLevelInfo*", + "m_nMaterialFrame": { + "type": "int", "id": 0, "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 3391404974 - }, - "m_maxLevel": { - "type": "unsigned char", - "id": 1, - "offset": 88, - "flags": 7, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 783962734 - } - } - }, - "748853661": { - "name": "class ClassProjectUpdateList*", - "bases": [ - "PropertyClass" - ], - "hash": 748853661, - "properties": { - "m_activeProjectList": { - "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 284210684 + "hash": 1641923970 } } }, - "1114671367": { - "name": "class SharedPointer", + "1483264803": { + "name": "class ClientPetNameBehavior*", "bases": [ - "LeashBehavior", + "ClientWizPlayerNameBehavior", + "NameOverrideBehavior", "BehaviorInstance", "PropertyClass" ], - "hash": 1114671367, + "hash": 1483264803, "properties": { "m_behaviorTemplateNameID": { "type": "unsigned int", @@ -392164,863 +55482,3199 @@ "pointer": false, "hash": 223437287 }, - "m_ownerGid": { - "type": "gid", + "m_wsNameOverride": { + "type": "std::wstring", "id": 1, - "offset": 128, + "offset": 120, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1765088663 + "hash": 2131249091 }, - "m_radius": { - "type": "float", + "m_nameKeys": { + "type": "unsigned int", "id": 2, - "offset": 136, + "offset": 352, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 989410271 + "hash": 1772225898 }, - "m_angle": { - "type": "float", + "m_useRank": { + "type": "bool", "id": 3, - "offset": 140, + "offset": 356, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 878748702 + "hash": 2040475372 }, - "m_leashType": { - "type": "enum LeashType", + "m_eGender": { + "type": "enum eGender", "id": 4, - "offset": 144, - "flags": 31, + "offset": 432, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2170708051, + "hash": 2776344943, "enum_options": { - "LLT_Rigid": 0, - "LLT_Elastic": 1 + "Male": 1, + "Female": 0, + "Neutral": 2 + } + }, + "m_eRace": { + "type": "enum eRace", + "id": 5, + "offset": 436, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 963057554, + "enum_options": { + "Bat": 88066, + "BatLightning": 1472842576, + "Boar": 2624962, + "CatThug": 1855674386, + "ChristmasElf": 819908552, + "ChristmasSnowman": 1146515225, + "Colossus_Ice": 1063279538, + "Cyclops": 1691813655, + "DragonBeta": 417003588, + "DragonFriendly": 69049013, + "EvilSnowman": 1579630926, + "FireElf": 443793687, + "Firecat": 2045525741, + "Frog": 2274918, + "FrostBeetle": 7692383, + "GhostBlue": 1097396892, + "GhostGreen": 882822629, + "GhostRed": 560510742, + "GhostYellow": 909974358, + "Ghoul": 82556199, + "GoatMonk": 486215564, + "GolemBrass": 1057388325, + "GolemClockwork": 1143380031, + "GolemSteel": 1660583674, + "GolemWood": 1426849876, + "HalloweenCat": 1042869199, + "Heckhound": 626736403, + "Helephant": 719065368, + "Human": 79806088, + "Hydra": 70785800, + "Imp": 84361, + "Krokomummy": 555755242, + "Kroktut": 1352354178, + "Leprechaun": 2106466410, + "LeprechaunPattyDay": 380507781, + "LightningBat": 228257682, + "Mannequin": 428442544, + "Minotaur": 949570680, + "Mount_Broom": 94637995, + "Mount_Cat": 1150940211, + "Mount_Dragon": 1565720148, + "Mount_Horse": 2054712767, + "Mount_PlayerWings": 589829552, + "Nikkos": 1563122418, + "NinjaPig": 607400740, + "Orthus": 1552590225, + "Piggle": 1897753328, + "Piggle_Valentine": 687697592, + "Piggle_ValentinePart2": 1760391091, + "Pixie": 74836240, + "RatMagician": 885542120, + "SalamanderFire": 48480175, + "SalamanderIce": 2011152164, + "SalamanderStorm": 600331072, + "Satyr": 84793363, + "Scarab": 2143810477, + "Sheep": 86220083, + "SkeletonArmored": 1791586239, + "SnowSerpent": 138621543, + "Spider": 1603064269, + "SpiderBlack": 559353179, + "SpiderBrown": 557941675, + "SpiderCrystal": 2119625297, + "SpiderGolem": 1632616514, + "Sprite": 1889156557, + "SpriteDark": 1888685518, + "Stormzilla": 252684095, + "SunBird": 1602211198, + "Transformation_ArmoredSkeleton": 1861349834, + "Transformation_CatThug": 1175387611, + "Transformation_Cat_Bandit": 1012395694, + "Transformation_ClockworkGolem": 601121214, + "Transformation_Cyclops": 620156297, + "Transformation_DarkFairy": 1206757203, + "Transformation_DraconianSorcerer": 1212016810, + "Transformation_Draconian": 450730089, + "Transformation_EarthColossus": 140119452, + "Transformation_EvilSnowman": 1497097122, + "Transformation_FatGobbler": 634003800, + "Transformation_FireElemental": 822233230, + "Transformation_FireElf": 46585468, + "Transformation_FireSalamander": 2118418114, + "Transformation_Gobbler_Skinny": 162365207, + "Transformation_GolemSteel": 1329184184, + "Transformation_Ice_Colossus": 430406408, + "Transformation_Krokomummy": 1644615769, + "Transformation_MagmaMan": 545064542, + "Transformation_Mander": 88998828, + "Transformation_NinjaPig": 1029132174, + "Transformation_Ninja_Pig_04": 7093548, + "Transformation_RatThug": 1175352795, + "Transformation_RavenMystic": 1443197359, + "Transformation_StormElemental": 637088511, + "Transformation_Treant": 1874998327, + "Transformation_WarPig": 691088645, + "Transformation_WolfScout": 263523463, + "Transformation_WolfWarrior": 6092463, + "Transformationn_SkeletonPirate": 1821341863, + "Treant": 1396597132, + "Troll": 82261620, + "Unicorn": 550546918, + "Unknown": 718677478, + "Wolverine": 528843083, + "Wraith": 1788506505, + "Wyrmkin": 379044612, + "Transformation_CyrusDrake": 94277831, + "PetEgg": 1973167984, + "GhostLady": 493415959, + "Banshee": 827805677, + "GobblerRed": 250135875, + "Ghoul_Gravedigger": 161812468, + "SkeletonWarrior": 734585814, + "BansheeBoss": 806445565, + "Seraph": 1792950125, + "CrabKing": 277875784, + "UndeadCaster": 1680689397, + "DragonFrontier": 1829438301, + "HeckhoundGhost": 872406464, + "Mount_Unicorn": 212699468, + "Jellyfish": 910724608, + "SeaDragon": 1194541306, + "Turtle": 1897184620, + "Starfish": 1447562471, + "SpinyFish": 162948281, + "Mount_Gryphon": 2110522960, + "Mount_Shark": 1170186623, + "Mount_Manta": 979931598, + "Mount_Seahorse": 1554833818, + "Mount_Seahorse_Tough": 1245859453, + "Mount_Koi": 1150937409, + "Mount_Lobster": 2025618875, + "Mount_Turtle": 1490849128, + "VenusFlyTrap": 1612039757, + "GDN_MED_BabyCarrots": 327334743, + "GDN_SM_BoomShroom": 31324632, + "GDN_SM_Dandelion": 2058674142, + "GDN_SM_Disparagus": 1732989489, + "GDN_MED_EvilSnowPeas": 747408607, + "GDN_SM_FicklePickle": 205381955, + "GDN_SM_HappyHolidaisy": 1736236340, + "GDN_MED_HelephantEars": 1803669659, + "GDN_MED_HoneySickle": 424149132, + "GDN_LG_NinjaFig": 847338104, + "GDN_LG_SnapDragon": 1076151689, + "GDN_SM_StinkWeed": 845383431, + "GDN_MED_TrumpetVine": 1922690264, + "GDN_MED_VenusFlyTrap": 1560899638, + "GDN_SM_Laughodil": 1278979588, + "GDN_LG_BreadFruitBush": 533042934, + "GDN_MED_PricklyBearCactus": 1236846986, + "GDN_MED_KingParsley": 110148182, + "LeprechaunPatriotic": 414730890, + "SeraphYuletide": 1325846853, + "DragonGhost": 1502126893, + "UnicornNightmare": 604358256, + "EvilSnowmanSandman": 1579432150, + "Colossus_Spirit": 422514215, + "Rock": 2393554, + "GDN_MED_GivingTree": 2047236132, + "Egg": 70853, + "Mount_Carpets": 1602744888, + "Kraken": 1737191829, + "Wyvern": 1727802601, + "Phoenix": 1765559002, + "Judgement": 562901781, + "ForestLord": 1390734923, + "Humongofrog": 1272123051, + "Scarecrow": 41441599, + "Mount_Ram": 77196599, + "BasketSnake": 1835657086, + "Samoorai": 522797493, + "Transformation_RavenWarrior": 701169336, + "PhoenixStorm": 1325268802, + "PhoenixDeath": 1281634042, + "GDN_LG_CouchPotatoes": 879742725, + "GDN_MED_KeyLimes": 811516024, + "Mount_BoneDragon": 1023618313, + "Mount_BigBoneDragon": 1124383680, + "Mount_FairyWings": 1904926612, + "Mount_DragonWings": 755225925, + "Mount_Pegasus": 1621244140, + "GDN_MED_BellPepper": 1710238687, + "GDN_MED_GrapesOfWrath": 1068787103, + "GDN_SM_TigerLily": 1899057048, + "WysteriaPiggle": 49173891, + "Mount_Wyvern": 1658410744, + "Mount_2P_Rhino": 1052779475, + "NightHawk": 358964390, + "Giraffe": 935214826, + "Mount_Hawk": 2070898895, + "Mount_HalloweenNightmare": 726136378, + "GobblerHalloween": 1482399836, + "Leopard": 1606863715, + "Skink": 76950867, + "Mount_Ostrich": 466111322, + "Mount_Crocagator": 1981222087, + "Transformation_Blacktusk-01": 401543565, + "Mount_Hippogriff": 2043817624, + "Transformation_Gorilla-01": 1555853240, + "Transformation_Gorilla-02": 1606184888, + "Mount_Raven": 94983735, + "Mount_Chrismoose": 1822495199, + "Mount_CandyCane": 1148551147, + "Ivy_League": 925492799, + "GDN_MED_Ivy_League": 1630077794, + "Mount_Kirin": 1168691825, + "GDN_SM_Moonflower": 2068754330, + "GDN_MED_BoonTree": 788055729, + "Snowball": 2046118016, + "Foo_Dog": 1549710807, + "ShenlongDragon": 932676736, + "Monkey": 1233866291, + "Wolfhound": 626884686, + "Redcap": 1540319086, + "Raven": 79941650, + "HollowKnight": 1107268274, + "Book": 2405826, + "GDN_MED_AngoraBunnyEars": 1547559854, + "GDN_MED_FortuneCookieTree": 786686214, + "GDN_MED_GooseTree": 809354938, + "GDN_SM_HoneyBeePlant": 1528880373, + "GDN_MED_BambooShoots": 1096708900, + "GDN_SM_Huckleberries": 1937475840, + "Rock_Moustache": 962221287, + "Efreet_Myth": 1834555522, + "Efreet": 1401700123, + "Mammoth": 1395147745, + "Triton": 1730466188, + "Gnome": 74954215, + "BoneDragon": 429245206, + "Basilisk": 1457899086, + "Chimera": 529027789, + "Transformation_GammaTemplate": 1337834518, + "Mount_Camel": 1168198963, + "Mount_RenaissanceWings": 1049782088, + "Bull_Mount": 1713506759, + "Mount_Owl": 1150938242, + "Mount_Alphyn": 487264165, + "Mount_Stag": 1150353823, + "Mount_Auroch": 509865325, + "Mount_Warg": 1150358072, + "StrangeBeast": 511334734, + "Efreet_Ice": 1820009122, + "Efreet_Storm": 1269986674, + "GDN_LG_AlligatorPear": 1293913372, + "Mount_2P_Treant": 928450863, + "Mount_2P_Dragon": 1431637933, + "Mount_Pogo_Stick_WC": 1462849298, + "Mount_Pogo_Stick_MB": 1349603090, + "GDN_LG_MeltingCheese": 1914589015, + "GDN_SM_FishOnAVine": 1734955358, + "GDN_LG_AngelOak": 1539539424, + "GDN_LG_MeltingCheese_Angel": 1254781264, + "SnowyOwl": 1682262138, + "Mount_3P_Hydra": 1207475250, + "WeaselMinstrel": 1541234616, + "MOUNT_Rickshaw": 938282973, + "Transformation_Sherlock-Bones": 509126601, + "Mount_Phoenix": 556355452, + "Toaddle": 597488187, + "Pantera": 528797696, + "WildfireTreant": 673362041, + "StoneTiger": 746336665, + "Blowfish": 1447737334, + "Smith": 78327187, + "FlyingCat": 1254472614, + "RamWarrior": 536916302, + "Ladybug": 1846384669, + "BurlapBoy": 607590898, + "DeerKnight": 560802130, + "Gargoyle": 1227701700, + "Chameleon": 596131510, + "Scorpion": 1462253104, + "GDN_SM_BoiledPeanuts": 544885684, + "GDN_SM_ClockFlower": 676513046, + "GDN_SM_DeadBeets": 650783482, + "GDN_MED_SnowApple": 1916648180, + "Eyecaramba_Violet": 1804780775, + "Eyecaramba_Green": 750346574, + "Eyecaramba_Orange": 687614854, + "Piggle_Grandfather": 131445665, + "Velociraptor": 1042311818, + "Babydactyl": 1180982194, + "Stegosaurus": 476811765, + "Mount_Pegasus_Spectral": 948250730, + "Mount_2P_Scarydactyl": 1808983335, + "Mount_2P_TRex": 1495851852, + "Therizinosaurus": 80337863, + "Runtosaurus": 476200406, + "FrilledLizard": 420993517, + "Mount_Ankylosaurus": 669692274, + "Mount_Triceratops": 1126950204, + "Mount_2P_Glider": 1630365881, + "Transformation_Thunderhorn": 1045262037, + "Transformation_Jaguar": 1080966062, + "Transformation_Pteranadon": 273836142, + "Transformation_ShadowWeaver": 255927111, + "Transformation_EagleWarrior": 1880471875, + "Mount_Falalalallama": 389890123, + "Mount_2P_WinterTreant": 1850265056, + "GDN_LG_MissileToe": 1767792974, + "GDN_MED_PointSetta": 647257205, + "Nutcracker2012": 1598217699, + "Coal2012": 1627852119, + "Mount_Sleigh": 1636615519, + "Mount_Sabertooth": 1613031507, + "Mount_MechanicalWings": 1014917438, + "PiranhaHunter": 686271163, + "Quetzal": 2020925822, + "Mount_Sloth": 1169387359, + "HollowKnightLife": 2114081886, + "BettaFish": 138088968, + "MummyCat": 62372925, + "TrojanHorse": 1725299194, + "WC_Storm_Possessed": 186960228, + "AV_Possessed": 1106693085, + "AZ_Possessed": 1106692701, + "CL_Possessed": 1106692255, + "KT_Possessed": 1106693015, + "MS_Possessed": 1106692977, + "WC_Possessed": 1106692459, + "Mount_2P_Whale": 448824263, + "Mount_2P_Chariot": 88035298, + "Mount_WarBoar": 1159836211, + "Mount_Palanquin": 47587550, + "BearCub": 672664722, + "Transformation_Minotaur": 1454233452, + "DragonGauntlet": 797645257, + "DeathUnicorn": 924144161, + "Flamingo": 1488424911, + "Mount_Gorilla": 1939919432, + "Mount_WarUnicorn": 1361393198, + "GargoyleMyth": 1819685060, + "TikiMan": 16098567, + "Siren": 79937811, + "GoldenRam": 410220227, + "Harpy": 96026632, + "SwordShield": 1668411785, + "ClockworkKnight": 1059948980, + "Mount_MechanicalEagle": 1720948645, + "Mount_Cloud": 1166233435, + "Mount_Surfboard": 1914250039, + "Mount_BetaDragon": 1023653721, + "Mount_BeeWings": 1387988401, + "Vampire": 524731385, + "FrankenBunny": 589797989, + "BumbleBee": 249592226, + "Mount_Dragonfly": 1028843656, + "BronzeGolem": 1320867859, + "TarantulaHawk": 1983939429, + "Mount_Grasshopper": 1852850928, + "FlyingSquirrel": 847551166, + "GDN_MED_Sunion": 1652707634, + "GDN_MED_SwordFern": 548761438, + "GDN_SM_SugarKhrystal": 267539461, + "GDN_SM_SawPalmetto": 1892888046, + "GDN_LG_FacePalm": 2050814140, + "GDN_LG_QueenCrapeMyrtle": 80378450, + "Transformation_ShadowTank": 1304943609, + "Transformation_ShadowHeal": 1254024185, + "Transformation_ShadowDPS": 87276537, + "Mount_Noelephant": 1383672248, + "SaintBernard": 572932242, + "ParkaFox": 2009808189, + "Goose": 75019719, + "Mount_Coconut": 791151432, + "CreepyBeetle": 345594179, + "BabyDragonfly": 1367084335, + "FennecFox": 41315063, + "PP_Leviathan": 833901526, + "PP_SunSerpent": 1062677009, + "PP_LordOfWinter": 960214698, + "PP_Medusa": 867812931, + "PP_Dryad": 147654656, + "PP_AvengingFossil": 315904647, + "PP_Sabertooth": 1799146677, + "Mount_Butterfly": 1283940943, + "Mount_Hare": 2070851023, + "Transformation_MorganthB": 197306990, + "Transformation_MorganthC": 197831278, + "Transformation_MorganthD": 200452718, + "BabyPegasus": 1215000859, + "ArcaneHelp": 1899247549, + "Mount_Vines": 98389624, + "Mount_ArcaneMinecart": 2001270930, + "Hobgoblin": 2133668461, + "Mount_2P_Rowboat": 237071469, + "ForestSpirit": 1178454602, + "Mount_SpiritWolf": 531991076, + "Otter": 84138671, + "OrigamiBird": 550984083, + "DinoSkeletal": 233277835, + "Mount_HarrowingsGreen": 1605746772, + "Mount_HarrowingsBlue": 477152436, + "Mount_HarrowingsPurple": 2092807554, + "RedPanda": 1744233845, + "Ibis": 2665577, + "Corgi": 78823875, + "Mount_Yak": 996545739, + "Mount_FlyingBalance": 436519643, + "Transformation_ShadowMalistaire": 1043814435, + "Transformation_DragonMalistaire": 841867699, + "Mount_Scarab": 1687658791, + "Transformation_MisterHound": 1973578844, + "Mount_BahHumbug": 55114077, + "Skates": 1568993965, + "Moose": 75019725, + "Mount_Gargoyle": 1456663874, + "GDN_MED_VenusFlyTrapEpic": 1594069606, + "Mount_PlayerWingsPink": 19403046, + "GDN_LG_AlligatorPearEpic": 1326804812, + "Pet_Armadillo": 825736847, + "Mount_JoustingDestrierDyeable": 1683448768, + "GDN_MED_VampireCarrots": 871596496, + "GDN_SM_WhiteTigerLilyEpic": 1703271434, + "GDN_LG_NinjaFigEpic": 938504823, + "GDN_LG_SnapDragonEpic": 2071674466, + "GDN_MED_HelephantEarsEpic": 719166107, + "GDN_MED_TrumpetVineEpic": 225854518, + "GDN_SM_DandelionEpic": 728637442, + "GDN_SM_HuckleberriesEpic": 1903258448, + "GDN_MED_SnowAppleEpic": 1231175967, + "GDN_SM_BoomShroomEpic": 981598771, + "GDN_MED_KingParsleyEpic": 2038371004, + "Mount_Raptor": 749695031, + "Pet_Toucan": 581477475, + "Pet_Squirrel": 969881395, + "Mount_WonkyDonkey": 1481657312, + "Mount_HawkPatriotic": 509149743, + "Pet_FrogAssistant": 1945041750, + "Mount_Cat2": 1151054899, + "Mount_Cat2BW": 1603515443, + "Pet_ArmadilloBW": 825733899, + "Pet_FrankieForearms": 1100195857, + "Mount_SolarSabre": 1281093703, + "MNT_MechOstrich": 258667969, + "MNT_BootsBalance": 1799191558, + "MNT_BootsDeath": 1034912971, + "MNT_BootsFire": 606061658, + "MNT_BootsIce": 2142643294, + "MNT_BootsLife": 773751898, + "MNT_BootsMyth": 144792486, + "MNT_BootsStorm": 1525245121, + "Pet_CorgiBirthday": 1951779369, + "OrigamiBirdBDay": 1909935955, + "Pet_FlyingBlackCat": 432111988, + "Mount_Narwhal": 449637834, + "Mount_NightOwl": 1648420845, + "Pet_Penguin": 137342907, + "MNT_PowerGemUnicorn": 411234062, + "Pet_CrystalButterfly": 512136094, + "Mount_BabyMammoth": 185831059, + "MNT_BabaYaga": 564874997, + "Pet_BabySeal": 657606984, + "Pet_BabyYeti": 635847496, + "Transformation_BallerinaBear": 1525333600, + "Mount_StagYuletide": 1508680687, + "Transformation_TitanMedium": 1700742736, + "Transformation_TitanLarge": 718614967, + "Pet_SirenIce": 849851564, + "Mount_FlyingDeath": 1717725588, + "Mount_FlyingFire": 1177216332, + "Mount_FlyingIce": 1238841184, + "Mount_FlyingLife": 433397684, + "Mount_FlyingMyth": 164983572, + "Mount_FlyingStorm": 375872049, + "Dragonling": 1730534849, + "Pet_EggChicken": 952873217, + "HeckhoundGhost_MAW": 893368960, + "Mount_WinterTrain": 751515281, + "Mount_RubberDucky": 1826548479, + "Pet_BansheeSpellwrit": 917979583, + "Pet_SamooraiSpellwrit": 370057597, + "Mount_UnicornAstral": 886914505, + "Guest_Boochbeard": 1958574095, + "Pet_MouseSister": 1267930350, + "Pet_MouseFather": 2010008339, + "Pet_VampireSquirrel": 250588691, + "Mount_CoffinCar": 1387606595, + "Mount_BabyElephant": 2026559639, + "Pet_RoadHog": 601156960, + "Mount_WolfGryphonWings": 543038283, + "MNT_ClockworkSteed": 891371132, + "Mount_Chopper": 1196683136, + "Pet_ButterflyLamb": 527214392, + "Pet_MouseMother": 2012687123, + "Pet_MouseBrother": 1174380856, + "Pet_Cherub": 769208559, + "GDN_SM_Jewel": 1104045832, + "MR_Death_Duncan_Grimwater": 1850289001, + "Mount_DesertRunner": 2049036229, + "Pet_MonkeyMirage": 418612892, + "Pet_ClockworkOwl": 1038482431, + "Pet_NinjaTurtle": 2024540686, + "Mount_Vines_Halloween": 82852149, + "Mount_SwarmBat": 1151836459, + "Mount_2P_NinjaDragon": 1239694057, + "Mount_Gobler": 1820615236, + "Mount_MaryleboneCar": 2027689685, + "JackOLantern": 1016361578, + "Transformation_DjinnCommonA_Balance": 996127128, + "Transformation_MedicineMode": 25960701, + "CactusHopper": 1956293007, + "Transformation_Mimic_ChestGold_A": 414145432, + "Mount_Ghoulture": 1067671195, + "Pet_Macaw": 1087278472, + "Pet_SandWorm": 653200803, + "Transformation_DromelDancer": 1071824116, + "Pet_Bunnies": 695874547, + "Mount_Snowboard": 1914380015, + "Transformation_DrommelDancer": 226294468, + "Mount_Carpet_New": 1618650322, + "Mount_BunnySleigh": 599915427, + "Helephant_Heart": 419161272, + "Mount_Snowboard_Holiday": 876339060, + "Transformation_GhostDog": 646575420, + "Transformation_PrinceGobblestone": 693826496, + "Transformation_Mithraya": 1240010601, + "Transformation_LuskaCharmbeak": 897469730, + "Transformation_YoungCyrusDrake": 15595663, + "Kookaburra": 1069759154, + "BorealisGolemPet": 797488492, + "FlyingEyePet": 505959833, + "StormCloudPet": 548463069, + "BullPet": 1993917801, + "OpossumPet": 284003652, + "GhoulturePet": 939920734, + "StormCloudPetB": 548463001, + "StormCloudPetC": 548463003, + "Guest_LordNightshade": 1221409981, + "BullPetB": 1993917561, + "BullPetC": 1993917553, + "BullPetD": 1993917513, + "Transformation_ShadowCrit": 1392195065, + "Mount_Pennyfarthing": 1551926344, + "Mount_RowboatPirate": 2079208803, + "Mount_IceCube": 1261861595, + "Guest_LostMaiden": 883675592, + "Guest_BoatswainMcGee": 1359750850, + "Guest_ChiefMateMcGurk": 329643845, + "Guest_DoomedBones": 2015643882, + "Guest_SpectreoftheBrocken": 266357448, + "Guest_DrownedKnight": 1100966093, + "Guest_TarntheDrowned": 329540205, + "Guest_DisloyalKnight": 1853240753, + "Guest_NamelessKnight": 1065677876, + "Guest_LambentFire": 489886605, + "Guest_LordoftheBrocken": 1662003371, + "Guest_StormCaiman": 1147500291, + "Guest_GrinningDeathMoon": 737595789, + "Guest_MoonSkullWight": 1720039490, + "Guest_HuemacSpearWreath": 1522021131, + "Guest_HowlingBanshee": 1340855338, + "Guest_Sea-Booter": 1818491983, + "Guest_DeadRover": 1009273257, + "Guest_CelestianRemnant": 1312268448, + "Guest_Shadow-WebConscript": 1500529411, + "Guest_Shadow-WebMercenary": 623672171, + "Guest_Shadow-WebWraith": 810956416, + "Guest_Shadow-WebHaunt": 500586883, + "Guest_CelestianPartisan": 633346892, + "Guest_CelestianDefender": 482102727, + "Guest_ThraleBonestriker": 1172972733, + "Guest_VorgenSoulbreaker": 1935693246, + "Guest_ServusBloodsword": 1703995647, + "Guest_QueenCalypso": 845803519, + "Guest_BlueBart": 77043390, + "Guest_KarolakNightspinner": 1008737316, + "Guest_ArachtusDuskweb": 1787750209, + "Guest_ZhalarStarcloud": 1453644105, + "Guest_NarallorNightborn": 1963363700, + "Guest_SelwynSkywatcher": 1413136893, + "Guest_OsseusNightreaver": 306827003, + "Guest_IrateBanshee": 865143109, + "Guest_FuriousHowler": 1607252558, + "Guest_CryingSpirit": 1559074820, + "Guest_UndeadDraconian": 169249571, + "Guest_ReanimatedDraconian": 247067807, + "Guest_GhastlySlave": 80127661, + "Guest_BoundSpecter": 369706568, + "Guest_NecroticHaunter": 1714841563, + "Guest_LoathsomeCreeper": 1087245229, + "Guest_FleshrotRetriever": 1925148031, + "Guest_BarbarianSpirit": 2112552732, + "Guest_BeghastionCrowcaller": 586628832, + "Guest_BeghastionFieldburner": 1650751959, + "Guest_BoneWarrior": 76802026, + "Guest_FleshlessSentry": 708431820, + "Guest_PirateRavager": 945157059, + "Guest_RottenScallywag": 974666855, + "Guest_ArmoredBonewalker": 1444568072, + "Guest_UndeadWizard": 1622435563, + "Guest_SoulSearcher": 2094392941, + "Guest_DecayingBlackguard": 412324062, + "Guest_FoulReaper": 919877614, + "Guest_NightShadow": 1675932226, + "Guest_MotleyCrew": 653779218, + "Guest_OrinGrimcaster": 472649066, + "Guest_GhostofSylviaDrake": 218332449, + "Guest_VikaMarkmaker": 1145181168, + "Guest_VasekAshweaver": 1001434369, + "Guest_FireWraith": 1027720368, + "Guest_HungrySoul": 1722435576, + "Guest_FrostBones": 456145606, + "Guest_SnowSkull": 835837850, + "Guest_WinterSkull": 1556601065, + "Guest_LothinDoombringer": 860995070, + "Guest_MimirWinterbane": 1111898070, + "Guest_KulgrimSoulsunder": 278037985, + "Guest_HitojiniDeathcaster": 1144499043, + "Guest_GaikotsuSkeleton": 1113949902, + "Guest_PhantomAce": 1917639347, + "Guest_PhantomGlider": 849918336, + "Guest_Krokomummy": 857773886, + "Guest_NiriniAncientGuard": 359313880, + "Guest_NiriniFireSpirit": 1863811476, + "Guest_VaultHaunter": 197723476, + "Guest_VigilantDefender": 171276829, + "Guest_WanderingAhnicSpirit": 1702865088, + "Guest_ForgottenDjeseritSoul": 1170568256, + "Guest_KaranahnDeathfeeder": 1612857711, + "Guest_ShamblingAhnic": 1579129677, + "Guest_RisenDjeserit": 287855500, + "Guest_KaranahnMortifier": 874288111, + "Guest_DjeseritDweller": 2058423665, + "Guest_AhnicStrider": 1776992302, + "Guest_GuardianoftheFang": 1816795524, + "Guest_DefenderoftheFang": 354353604, + "Guest_ProtectoroftheFang": 1290191037, + "Guest_SouloftheCharmed": 422890577, + "Guest_KaranahnKeeper": 77581557, + "Guest_NiriniIntimidator": 677205957, + "Guest_CondemnedSoldier": 449152244, + "Guest_NimahtheWicked": 1298248873, + "Guest_AkoriNirini": 1123159753, + "Guest_SoulScavenger": 892852198, + "Guest_KeeperoftheFang": 1676773499, + "Guest_ItennuSokkwi": 699159408, + "Guest_Tempestra": 334938435, + "Guest_QueenIrisiDjeserit": 1861434100, + "Guest_TheBonekeeper": 1302503449, + "Guest_CryptScavenger": 1893795791, + "Guest_Soulsapper": 1699756010, + "Guest_KingUroAhnic": 1788825731, + "Guest_KingShemetDjeserit": 1350067043, + "Guest_UnholyWraith": 1871146013, + "Guest_PikeSpiritcrusher": 498715531, + "Guest_SpellwritScreamer": 801626733, + "Guest_SpellwritRonin": 1671439174, + "Guest_Shrieker": 805966229, + "Guest_GravePhantom": 731622936, + "Guest_NightmareSpirit": 230709057, + "Guest_VengefulCreeper": 1100197884, + "Guest_TombRoamer": 1277825068, + "Guest_ShieldSkeleton": 1634270152, + "Guest_AgonyWraith": 30384496, + "Guest_IcyGhost": 768353592, + "Guest_Half-wittedSkeleton": 647996362, + "Guest_LazyHenchman": 1329554426, + "Guest_TiredFighter": 210248632, + "Guest_Screecher": 469007005, + "Guest_SeethingWraith": 664913100, + "Guest_ColdConfusion": 1304943934, + "Guest_OssuaryConscript": 1017667150, + "Guest_Ghulture": 1330558655, + "Guest_BodyGuard": 1048581801, + "Guest_SpectralGuardian": 422805602, + "Guest_VaultConscript": 1388398065, + "Guest_FootPatrol": 1692393321, + "Guest_ArmedGuard": 2045920536, + "Guest_Chilly": 1764665905, + "Guest_Achey": 973370519, + "Guest_Sneezy": 1769440773, + "Guest_Cough": 1170200073, + "Guest_Shadowbones": 1316133167, + "Guest_ForgottenConscript": 1466348281, + "Guest_BarracksGuardian": 236603440, + "Guest_CryptConscript": 314755436, + "Guest_DurvishSeeker": 1825622267, + "Guest_MedicineMode": 167015574, + "Guest_Myriarch2": 593881680, + "Guest_Myriarch3": 593881616, + "Guest_MyriarchEphialtes": 773531895, + "Guest_MotherGhulture": 1585201915, + "Guest_CaptainCosrow": 727107332, + "Guest_VizierRafaj": 214040637, + "Guest_DarkmoorSerf": 1522169114, + "Guest_DarkmoorSquire": 1822567109, + "Guest_ScarletWampyr": 1683954247, + "Guest_DraconianRevenant": 741497298, + "Guest_DraconianEidolon": 107733297, + "Guest_AnguishedWraith": 1078602022, + "Guest_DraconianPyromancer": 729577007, + "Guest_DraconianThaumaturge": 189734361, + "Guest_DraconianDiviner": 472633746, + "Guest_DraconianConjurer": 1824962835, + "Guest_DraconianTheurgist": 1828628416, + "Guest_DraconianNecromancer": 175364324, + "Guest_DraconianSorcerer": 1262893339, + "Guest_SirBlackwater": 366308464, + "Guest_AkhtangWormCrawl": 1589032404, + "Guest_SpiritofDarkmoor": 579455915, + "Guest_ShanevonShane": 2096517522, + "Guest_YevgenyNightCreeper": 1535282881, + "Guest_MalistairetheUndying": 824508513, + "Guest_Bunferatu": 1015806005, + "Guest_CountBelaBlackSleep": 761647679, + "Guest_DeathSoldier": 1715141574, + "Guest_SorrowWhisperer": 556532003, + "Guest_GriefSpectre": 1425488559, + "Guest_HowlingShade": 631460247, + "Guest_WalkingDead": 318527090, + "Guest_Akuji": 977635799, + "Guest_TorturedKakedaSoul": 1716874833, + "Guest_KakedaSpiritSlave": 1814699344, + "Guest_DishonoredSamoorai": 320085744, + "Guest_CursedRonin": 1204095686, + "Guest_TomugawatheEvil": 166125424, + "Guest_OyotomitheDefiler": 1672714483, + "Guest_Fushiko": 801492770, + "Guest_BrokenLandGuardian": 294671991, + "Guest_ShatteredSkyGuardian": 746681463, + "Guest_SunderedSeamGuardian": 1439618652, + "Guest_BrokenLandSpirit": 860105895, + "Guest_ShatteredSkySpirit": 2104112380, + "Guest_SunderedSeamSpirit": 69572311, + "Guest_LostSoul": 204361577, + "Guest_RottingFodder": 308249734, + "Guest_HauntedMinion": 689597338, + "Guest_FieldGuard": 1175228991, + "Guest_SkeletalWarrior": 778393993, + "Guest_SkeletalPirate": 1476730220, + "Guest_WanderingSpecter": 126188449, + "Guest_LivingScarecrow": 1442943145, + "Guest_FrostPhantom": 1809776664, + "Guest_FireShrieker": 173332719, + "Guest_CryptCrawler": 2118799272, + "Guest_ViridianSpecter": 383149977, + "Guest_ArgentClatterer": 525414714, + "Guest_SwimmingSpecter": 1494025094, + "Guest_ScarletScreamer": 1689589811, + "Guest_BoneDigger": 1351421123, + "Guest_HowlingGhost": 664019391, + "Guest_SkeletalSoldier": 750463116, + "Guest_MaidenofHate": 444442868, + "Guest_SkeletalRetainer": 1409032775, + "Guest_SoulHunter": 1900267551, + "Guest_MidnightShuffler": 1991052065, + "Guest_PlaguedSoul": 419071561, + "Guest_HauntingBanshee": 345837052, + "Guest_SimontheSayer": 1352807820, + "Guest_TheHarvestLord": 1923575206, + "Guest_LadyBlackhope": 1403431623, + "Guest_SergeantSkullsplitter": 898737831, + "Guest_Foulgaze": 2063419769, + "Guest_Wormguts": 788697519, + "Guest_Rattlebones": 125602919, + "Guest_Paulson": 1112716921, + "Guest_Grubb": 1167554274, + "Guest_Norton": 581021964, + "Guest_NightStalker": 1447653309, + "Guest_AddereTimeo": 1491420030, + "Guest_TheReaper": 1526369733, + "Guest_AngrusHollowsoul": 1427862805, + "Guest_OrrickNightglider": 951078615, + "Guest_SteelSentinel": 885250894, + "Guest_Shadow-WebSoldier": 2014925398, + "Guest_LostCeleste": 1725301830, + "Guest_CapnNigelSkullcrack": 1665439970, + "Guest_HaulAwayJoe": 1075985331, + "Guest_OldMaui": 15300840, + "Guest_LordAgue": 140791419, + "Guest_MelweenaSmite": 432188189, + "Guest_HalloweenTrickster": 2043736417, + "Guest_PumpkinHead": 1098332105, + "Guest_BaronMordecai": 817370918, + "Guest_KaimaniteMummy": 1332671420, + "Guest_VeggieRevanant": 928504192, + "Guest_BloodBat": 76467389, + "Guest_DeadBeets": 157829578, + "Guest_Desparagus": 1130644076, + "Guest_MeanestFly-Trap": 1652898868, + "Guest_Nosferabbit": 1021159436, + "Guest_ThrallofSothmekhet": 330780177, + "Guest_VileApparition": 426627869, + "Guest_SoulServant": 1183110886, + "Guest_SoulKeeper": 917518313, + "Guest_AdmiralBontau": 2032168402, + "Guest_DeathWhisperer": 3814952, + "Mount_RollerBlades": 111369373, + "Guest_BaneWyrm": 147033576, + "Guest_BlackDragon": 939469656, + "Guest_DragonSpawn": 1829803517, + "Guest_Fire-SpitterSpawn": 616624489, + "Guest_CaoranachtheFire-Spitter": 323513000, + "Guest_Jabberwock": 1552492834, + "Guest_CatalantheLightningLizard": 1155778705, + "Guest_WhiteDragon": 2009449331, + "Guest_WinterWyrm": 478925069, + "Guest_WyrmStatue": 2119216210, + "Guest_AlgidWyrm": 1309546482, + "Guest_BruleeSucre": 390936202, + "Guest_HebitohoWyrmling": 1682026810, + "Guest_Shadowwock": 505539184, + "Guest_EirikurAxebreaker": 1361453552, + "Guest_WarWyrm": 1124740742, + "Guest_StrayFireflier": 610979811, + "Guest_BurningFlamewing": 2041225130, + "Guest_FeralLavaling": 371483057, + "Guest_SplinterWing": 923421333, + "Guest_ChanticoBlueAir": 1572441903, + "Guest_CopperWingGuard": 302783602, + "Guest_ObsidianBeak": 2016227452, + "Guest_CaquixNineShadows": 2070101060, + "Guest_LustrousTlalocan": 1201030473, + "Guest_SeedThief": 263211181, + "Guest_PopZotzUnluckyDay": 1416773489, + "Guest_NezathePoet": 1905861376, + "Guest_MazenStingerBee": 1642023393, + "Guest_ImperialJusticePayne": 1285679745, + "Guest_AssistantWardenPorfiry": 22099059, + "Guest_MarshalKamensky": 524669730, + "Guest_WardenVissarovich": 882556823, + "Guest_GulagGuard": 100744159, + "Guest_CaptainKravchuck": 690830770, + "Guest_ImperialGuard": 346803640, + "Guest_IronPaw": 1797329688, + "Guest_TundarianEnforcer": 134256836, + "Guest_Ivan": 996220221, + "Guest_ColonelOrlov": 1381254189, + "Guest_IronPawIntakeCaptain": 2099184835, + "Guest_SolitaryWarden": 1503529566, + "Guest_CaptainZubkov": 793725366, + "Guest_SergeantBobrik": 722182485, + "Guest_WailingWraith": 946976407, + "EggChick": 1452316301, + "BunnyMallow": 518233330, + "Guest_ThunderHornZombie": 1007920040, + "Guest_SmokingMirrorZombie": 340971759, + "Guest_ShamblingZombie": 1920485146, + "Guest_MoonSkullZombie": 809249764, + "Guest_DeathlessStormHorn": 812397213, + "Guest_MozarTurtleHunter": 561749043, + "Guest_GuillermoShatterer": 499565054, + "Guest_XiuhcoatlBarbedTooth": 1719245305, + "Guest_AzcalFireAnt": 1281366337, + "Guest_TlotzinMoonThief": 407285761, + "Guest_PocaCruelStar": 1117353085, + "Guest_ThunderHornGhoul": 597878999, + "Guest_TezomocStoneSinger": 733511940, + "Guest_EzhuaBadTaste": 632779219, + "Guest_UacalxochitlBloodEye": 1614856226, + "Guest_WanadiBlackSky": 349829749, + "Guest_ElMarrow": 483880636, + "Guest_GrimCalaca": 1534029144, + "Guest_XipeFlayedOne": 1343577398, + "Guest_MotecumaDeathMask": 1782393717, + "Guest_EkeChuah": 13416770, + "Guest_AnacaonaBlackSnake": 1543344897, + "Guest_SmokingMirrorWight": 776452983, + "Guest_Tolkemec": 217428080, + "Mount_Fox": 77199428, + "PP_OwlProtege": 268847192, + "Mount_SharkSki": 331374103, + "PP_Dolphin": 1662291612, + "Mount_CastSymbol_D": 1134428045, + "Mount_CastSymbol_E": 1136525197, + "Mount_CastSymbol_F": 1138622349, + "Mount_CastSymbol_G": 1140719501, + "Mount_CastSymbol_A": 1128136589, + "Mount_CastSymbol_B": 1130233741, + "Mount_CastSymbol_C": 1132330893, + "Guest_LionSpectralGuardian": 1791543691, + "Guest_KillmareSpiritwalker": 1818928165, + "Guest_ZebraSpectralGuardian": 815933596, + "Guest_GorillaSpectralGuardian": 1635182119, + "Guest_IklawGhostWarrior": 373465545, + "Guest_BwanaShadowriver": 1307628747, + "Guest_ElephantSpectralGuardian": 1579402208, + "Guest_ZangaZebu": 1218173119, + "Guest_GrumishGreataxe": 486953385, + "PP_GlowFairy_A": 2028856748, + "Guest_RestlessSoldier": 1142701763, + "Guest_WanderingWizard": 209518514, + "Guest_ColonelIvanenko": 399169035, + "Guest_DetollitheDestroyer": 655767295, + "Guest_Jawniak": 1791298433, + "Guest_Tajniak": 356182394, + "Guest_Ygor": 996316081, + "Guest_KyaniteLancer": 2136703656, + "Guest_VestaShadowmark": 1846747836, + "Guest_ZoraSteelwielder": 1186470644, + "Guest_AndorBristleback": 1949884743, + "Guest_GalliumPaladin": 1812340868, + "Guest_GalliumFootman": 1295203112, + "Guest_GalliumShardtrooper": 1210699836, + "Guest_GalliumJuggernaut": 3527584, + "Guest_VladimirDarkflame": 1575322237, + "Guest_KyaniteLieutenant": 561528977, + "Guest_DrusillaMorningbane": 155837810, + "Guest_KyaniteValkyrie": 53242136, + "Transformation_20Q_SherlockBones": 1112674320, + "Guest_DevoraShadowcrown": 1813459117, + "Guest_YoualaNightDrinker": 881289828, + "Guest_Pendragon": 715669945, + "Guest_CelestianRevenant": 515730327, + "Guest_SoullessServant": 1505662730, + "Guest_SpiritServant": 104517373, + "Guest_SoulSerf": 1188214406, + "Guest_ServileSoul": 871844607, + "Guest_SkeletalCorsair": 239414410, + "Guest_RottedFodder": 1301186193, + "Guest_ScarletScreecher": 600457915, + "PP_FrankBunnyBride_A": 974707030, + "Guest_BastillaGravewynd": 2100015237, + "Guest_VilaraMoonwraith": 2067986693, + "Guest_YngvarSharptooth": 1783361972, + "Guest_TroubledWarrior": 1569033392, + "Guest_VeggieRevanant2": 928503904, + "Guest_VeggieRevanant3": 928503888, + "Guest_VeggieRevanant4": 928503872, + "Guest_VeggieRevanant5": 928503856, + "Guest_AncientQhatWarrior": 1564521104, + "Guest_EmperorPaleolo": 2079384347, + "Guest_SpiritofIntolerance": 1627658048, + "Guest_SpiritofInquiry": 1320544891, + "Guest_FirstGuardian": 1982227776, + "Guest_FallenMerc": 225926286, + "Guest_NightShadow2": 1638183490, + "Guest_NightShadow3": 1636086338, + "Guest_NightShadow2-2": 1436856907, + "Guest_NightShadow3-2": 1434759755, + "Guest_NightShadow4-2": 1432662603, + "Guest_NightShadow5-2": 1430565451, + "Guest_NightShadow6-2": 1428468299, + "Guest_NightShadow7-2": 1426371147, + "Guest_FirstScythe": 738854032, + "Guest_GreyMantisCaptain": 860186057, + "Guest_GreyMantisHunter": 1239274377, + "Guest_Atlach-Leng": 836136649, + "Guest_PetrovGloomstrider": 2045783873, + "Guest_NauyotolDownIntheHole": 1134251106, + "Guest_SandorSpearcaller": 1351072377, + "Guest_MavraFlamewing": 1477685600, + "Guest_Scaldling": 208751819, + "Guest_WoebegoneWraith": 1166488705, + "Guest_BorisBlackrock": 1365399915, + "Guest_KatiaFirewinter": 521255834, + "Guest_ValerikBrightsword": 1244055782, + "Guest_RurikFlamesoul": 1962726850, + "Guest_IonaPyrelance": 722266491, + "Guest_DarkPoltergeist": 818162178, + "Guest_TheCollector": 1772287612, + "Guest_ViktorSnowcrusher": 1028387381, + "Guest_ValeskaRedwind": 19316351, + "Guest_ScarrikGallowgaunt": 105397333, + "Guest_Neberyx": 1453883041, + "Guest_AsrikWidebelt": 401936422, + "Guest_GothricHonorbound": 750072340, + "Guest_HalfangBristlecrown": 618779562, + "Guest_OsvudFleetpaw": 1023466459, + "PP_PufferFish_A": 1578606029, + "Guest_OzelUnderwaterCat": 1033669302, + "PP_BabyGreenMan_A": 910025246, + "PP_SchoolTurtle_A": 1012620678, + "PP_DarkBalloon_A": 1229308566, + "MT_JetsamCopter": 92127678, + "Mount_4P_DarkClownCar": 420246262, + "MNT_BalloonsBunch": 2000358474, + "Guest_TempleGuardian": 632574316, + "Guest_TemplePhantom": 1701097840, + "Guest_MahonStarsearcher": 1549093341, + "Guest_LostKnight": 858980994, + "Guest_AnguishedWoodman": 174606918, + "Guest_TormentedTreant": 294050331, + "Guest_WildfireTreant": 1902129818, + "Guest_BlightedYaxche": 679097088, + "Guest_Junglethorn": 1734561424, + "Guest_Tangleroot": 2027061721, + "Guest_BlightedFreerooter": 1109803061, + "Guest_Winterbranch": 1170787806, + "Guest_DecayingBogwalker": 1338670789, + "Guest_BrownwoodTormentor": 1655181754, + "Guest_Wildroot": 1839747182, + "Guest_Ironsplinter": 668295157, + "Guest_Frostbranch": 75974631, + "Guest_KyoukonteiTreant": 474446232, + "Guest_BrokenStumps": 414724364, + "Guest_WordlessWoodsmen": 1813881830, + "Guest_DesiccatedTreebeard": 1826942903, + "Guest_ShadowoftheLand": 1612385317, + "Guest_TreeRoot": 1406633546, + "Guest_BefouledWoodwalker": 1517919498, + "Guest_ConfusedForestWarrior": 750805985, + "Guest_CrazedForestSpirit": 1007960507, + "Guest_Oakheart": 1158293719, + "Guest_SnowTreant": 1028620035, + "Guest_Snowbeard": 1997921701, + "Guest_BarkskinTreant": 2143957812, + "Guest_RazorleafTreant": 2133159197, + "Guest_CarrionFlowerMan": 1120698936, + "Guest_Kurokage": 355651925, + "Guest_LacombeStrawHouse": 568809873, + "Guest_BerkshireStickHouse": 1932133405, + "Guest_TamworthBrickHouse": 894027634, + "Guest_RustyTinderSpark": 1237916230, + "Guest_CoraWinterBranch": 1901918989, + "Guest_GrambleGoldRook": 1986988546, + "Guest_PiperStormTree": 1109520133, + "Guest_Hanadzura": 124838500, + "Guest_Kuchisaki": 2084188681, + "Guest_Kaizoku": 807430784, + "Guest_JaxonLastRites": 1653711119, + "Guest_SeijunKiller": 657647155, + "Guest_ZarichiTarakata": 1129212566, + "Guest_BladelessRonin": 1577395797, + "Guest_SanzokuOutlaw": 1682888807, + "Guest_SanzokuBandit": 1766198653, + "Guest_KakedaPainbringer": 1260119278, + "Guest_KakedaStalker": 367458449, + "Guest_KakedaShadow": 1604499626, + "Guest_KakedaSoulcrusher": 1961168112, + "Guest_ImitsuPlaguemaster": 1361539025, + "Guest_ImitsuDefouler": 1299791045, + "Guest_ImitsuPunisher": 234819300, + "Guest_StudentofKhai": 249757647, + "Guest_OtomoBattlemage": 918160114, + "Guest_OtomoCourier": 1373253378, + "Guest_OtomoSupplyRunner": 1580070577, + "Guest_OtomoScout": 1814051082, + "Guest_OtomoWrestler": 1053571230, + "Guest_OtomoFury": 111319603, + "Guest_Hyottoko": 307080225, + "Guest_Usunoki": 1881339626, + "Guest_Kagemoosha": 1842766119, + "Guest_UdoJin-e": 850816224, + "Guest_TakedaKanryu": 536087422, + "Guest_Tamauji": 818613882, + "Guest_Jikiru": 794167355, + "Guest_Nomoonaga": 849534658, + "Guest_Aiuchi": 515942855, + "Guest_Kurogaso": 1426248002, + "Guest_Ideyoshi": 1814038213, + "Guest_Koto": 1151260427, + "Guest_Usegi": 977549586, + "Guest_Kanago": 1644367227, + "Guest_Kyuto": 1168225979, + "Guest_Haru": 2070048389, + "Guest_Ashikata": 1523446928, + "Guest_Katsumori": 1823914597, + "Guest_Hingen": 1567896261, + "Guest_Yakedo": 502298497, + "Guest_Do-Daga": 1239945714, + "Guest_Maito": 979260804, + "Guest_TonkatsuThug": 1758658397, + "Guest_GobbloreanGuard": 1286210991, + "Guest_BabblingMeints": 413418139, + "Guest_PrinceGobblestone": 1813171676, + "Guest_GobblerMuncher": 1517159487, + "Guest_GobblerGorger": 130736772, + "Guest_GobblerScouter": 1509427587, + "Guest_GobblerGlutton": 1912199781, + "Guest_GobblerScavenger": 136586791, + "Guest_BaronGreebly": 1028182200, + "Guest_BaronRotunda": 457132907, + "PP_DeathMimic": 1811942047, + "Guest_GreenMan": 1126663802, + "Guest_ForestGrump": 1602350320, + "Guest_ErvintheBarbarian": 1671762776, + "Guest_RazortuskWarrior": 1109994549, + "Guest_RazortuskBrawler": 732265321, + "Guest_SplithoofRager": 1922134329, + "Guest_TuskedRaider": 1920114147, + "Guest_SviniBeserker": 1146317608, + "Guest_SviniReaver": 216717251, + "Guest_Shattertusk": 1191456730, + "Guest_SplithoofBarbarian": 296671728, + "Guest_Bloodseeker": 2086598239, + "Guest_Scarsnout": 1831766077, + "Guest_MasterTonkatsu": 1783298894, + "Guest_Grisletusk": 657393295, + "Guest_SplithoofBloodguard": 488382274, + "Guest_BristlehideRaider": 237078958, + "Guest_Gullin": 1656401882, + "Guest_ForestNymph": 812055814, + "Guest_SassafrasMan": 1327049788, + "Guest_RandolfSpellshine": 108808620, + "Guest_BleysFlamerender": 434070106, + "Transformation_Khan": 1398327634, + "Transformation_TheBat": 1675113521, + "MNT_DireWolf": 845578449, + "MNT_YuleMule": 1976182058, + "MNT_LightBlades": 829118450, + "MNT_FlyingSquid": 1573132252, + "PP_Globulin": 467801224, + "PP_BeastBaby": 1807874692, + "PP_SaniBot": 670845902, + "Mount_SwarmSand": 1277669407, + "Guest_Nodnarb": 211478288, + "Guest_LordBramble": 1118781162, + "Guest_Yogash": 506264561, + "Guest_Marcio": 499428996, + "Guest_Procyon": 1115376865, + "Guest_Thunderfin": 2029218563, + "Guest_ArkynMoonblade": 1152775206, + "Guest_CreeCurdWright": 1714953095, + "Guest_DeerMouseRevenant": 315064435, + "Guest_ElanaDarksun": 837982094, + "Guest_KingAlricFateSailor": 1934591130, + "Guest_LaughingCalaca": 984492527, + "Guest_WraithKnight": 620484548, + "Guest_FieryEchoofApep": 484636593, + "Guest_FrostyEchoofApep": 171933154, + "Guest_FalseEchoofApep": 479387377, + "Guest_ChargedEchoofApep": 1229406800, + "Guest_ShrowdengersQhat": 101563303, + "Guest_Scrollkeeper": 643219293, + "Guest_TerrorHound": 753341570, + "Guest_CondemnedMander": 445370758, + "Mnt_SnowStorm": 1491572670, + "Mount_ChimneySweeper": 378571534, + "MNT_PineappleCandyCane": 1630795796, + "Guest_TyphonDustwind": 740849673, + "MNT_StickHorse": 216654744, + "MimicTemplate": 1461219184, + "MNT_Ball_N_Chain": 289720920, + "PP_PeaceDove_A": 1785119671, + "Mount_Gyrocycle": 1495008048, + "PP_BattleMageDragon_A": 1864696711, + "MNT_BattleBeast": 1304449286, + "MNT_SmokeTrails": 387873030, + "Mount_FriendshipHare": 677127330, + "MNT_ButterflySwarm": 383602683, + "PP_EggChick_B": 1959154042, + "MNT_Unicorn": 562210585, + "PP_StuffedUnicorn": 1731641773, + "MNT_ParadeTruck": 2026348978, + "MNT_ParadeTruckXmas": 1017864627, + "MNT_AutumnLeafSwarm": 1540002279, + "PP_GingerbreadMan": 1796172229, + "PP_DecadeDragon": 1819398630, + "MNT_StageShip": 829852992, + "PP_DramaLlama": 255896529, + "PP_HallMinotaur_A": 1492017563, + "Guest_MacDeath": 1526226705, + "Guest_MacDeathUnderstudy": 1731752647, + "Guest_MacLifeUnderstudy": 257466641, + "Guest_MacStormUnderstudy": 8295117, + "MNT_Pantera": 1135198, + "MNT_StagLight": 1908778048, + "MNT_GiantSpider": 1247185021, + "MNT_StagEvil": 872303931, + "PP_BaskHound": 1093866594, + "PP_Marionette": 1688299938, + "PP_Marionette_B": 1688297824, + "Guest_Izft": 996301405, + "Guest_SapotisMinion": 1625665891, + "Guest_CrazedSlave": 1473233468, + "Guest_CharmedSlave": 803043667, + "Guest_EnsorcelledSlave": 40920285, + "Guest_HallServant": 2038116460, + "Guest_SiathePerceiver": 1235571913, + "Guest_Kiwu": 1151177787, + "Guest_NightImp": 1051843424, + "Guest_EvilTrickster": 1035477123, + "Guest_DeepWoodsImp": 1502444054, + "Guest_ForestPest": 802235713, + "Guest_TaintedForestImp": 1030343985, + "Guest_Youkai": 518367729, + "Guest_CarthaginianElephantWarrior": 776293919, + "Guest_IdrisBeast-Taker": 106759521, + "Guest_MikaSkarka": 237956516, + "Guest_Belloq": 757247833, + "Guest_GurtokPiercer": 549466122, + "Guest_GurtokFirebender": 817966523, + "Guest_GurtokDemon": 544070162, + "Guest_GeneralFiretusk": 2073037770, + "Guest_GurtokBarrierDemon": 44657563, + "Guest_BlacktuskShaman": 1009070925, + "Guest_FireDemon": 158367196, + "Guest_DeathOni": 1916642000, + "Guest_JadeOni": 1289517185, + "Guest_PlagueOni": 1464586443, + "Guest_WarOni": 1630196094, + "Guest_BrokenLandMammoth": 1587008312, + "Guest_SunderedSeamMammoth": 1272698721, + "Guest_BullyMammoth": 170705927, + "Guest_Bullhemoth": 146998717, + "Guest_Kogasha": 1909654543, + "Guest_MusuthBerserker": 1741298129, + "Guest_BlackTuskCultist": 1771575961, + "Guest_AksilBlacktrunk": 1253596409, + "Guest_LongdreamerShaman": 1521283133, + "Guest_MuratGreyeyes": 1296814314, + "Guest_ElephantSoldier": 1443670145, + "Guest_DarajaniGuard": 1597288495, + "Guest_Loremaster": 1792470809, + "Guest_Pork": 2069999347, + "Guest_Beans": 97706585, + "MNT_Ox": 1292937747, + "PP_PropellerSquirrel": 1657443894, + "Guest_RasikPridefall": 97921485, + "Guest_AmedrasLightstep": 1818417025, + "MNT_SmokeTrails_Balance": 1358150715, + "MNT_SmokeTrails_Fire": 702971609, + "MNT_SmokeTrails_Ice": 190218501, + "MNT_SmokeTrails_Life": 2045542105, + "MNT_SmokeTrails_Myth": 1276281121, + "MNT_SmokeTrails_Storm": 564954622, + "Guest_Bellosh": 1407013027, + "Guest_AcampiReedfist": 2076527733, + "Guest_AgnettaBroadblade": 14864960, + "Guest_FrostheartRaider": 1574787221, + "Guest_JordaSwordbearer": 1627071850, + "Guest_KasaiBaku": 1153107369, + "Guest_ZoraimeiHelephant": 1002482606, + "Guest_ConscriptedMander": 43811125, + "Firecat_Decade": 409516955, + "MNT_BatGlider": 2086258491, + "Transformation_PlayerHomework": 673389670, + "Transformation_PlayerAttendance": 422287307, + "Transformation_PlayerLecture": 2035625874, + "Transformation_PlayerPopQuiz": 483367038, + "MNT_GingerbreadHorse": 1369242781, + "MNT_NimbariChariot": 1251740392, + "PP_NimbariDog": 1235126828, + "Transformation_PlayerGrandma": 1128332272, + "Transformation_PlayerScionA": 33862367, + "PP_Mushroom": 1568942158, + "MNT_Scooter": 1148167046, + "MNT_Scooter_B": 2079302532, + "MNT_Scooter_C": 1810867076, + "MNT_Scooter_D": 468689796, + "MNT_IceCycle": 415797788, + "Transformation_PlayerScionA02": 33921759, + "Guest_FearoftheFuture": 947210229, + "Guest_FearofGremlins": 405857384, + "Guest_RootGuardian": 922940845, + "Guest_VineThrasher": 172546427, + "Guest_BlightWalker": 1438155154, + "Guest_BriarScourge": 615681851, + "Guest_DreamJabberwock": 907754098, + "Guest_DreamBelloq": 990352002, + "Guest_Voltergeist": 1558128068, + "Guest_SpecialBranch": 1927849418, + "Guest_MutantBriar": 805892802, + "Guest_FeralBriar": 883790223, + "Guest_MaizeMonster": 688905764, + "Guest_DreamShadowwock": 1432458248, + "Mount_Heartboard": 1421972759, + "PP_ChocoBunny": 324797859, + "Mount-PogoFlower": 906659501, + "MNT_AethyrCloud": 1586061078, + "MNT_Fangle": 7846854, + "Guest_StarfallSpider": 1177620831, + "Guest_AshSpider": 1588502553, + "Guest_CorruptedWeaver": 38937211, + "Guest_CrystalCrawler": 1197980149, + "Guest_ShimmerWidow": 1300740128, + "Guest_FacetedSpikespinner": 1939719331, + "Guest_CrystallineQueen": 1999282256, + "Guest_AncientCrystalweaver": 1409608801, + "Guest_FangtoothLavaspinner": 1538042104, + "Guest_VenomousHeatseeker": 1234682482, + "Guest_FireweaveRockbiter": 300743778, + "Guest_MonkeySpider": 754090007, + "Guest_CryptSpider": 1545405304, + "Guest_CommonHouseSpider": 613486002, + "Guest_ArachnaMagnaMagus": 825817937, + "Guest_ArachnaSoldier": 270978709, + "Guest_Gnissa": 1699826178, + "Guest_WebwoodScuttler": 1728611075, + "Guest_SandSpider": 61789007, + "Guest_WebwoodCreeper": 1013382584, + "Guest_Skathi": 1631429165, + "Guest_ArchmagusLorcan": 321146960, + "Guest_CrawleroftheMist": 2076696304, + "Guest_PaintedSpider": 1482115552, + "Guest_GiantSpider": 1545526191, + "Guest_CaveCrawler": 2101587667, + "Guest_RattleCatcher": 1472707326, + "Guest_TrapdoorSpider": 1321643694, + "Guest_RockClinger": 1304266411, + "Guest_InquisitorXimenez": 1053483090, + "Guest_ElderMagus": 1017836836, + "Guest_WardenBenthamic": 18807199, + "Guest_SpiderArchmagus": 387645558, + "Guest_SpiderAdept": 2094873407, + "Guest_InterrogatorRentenius": 1245984179, + "Guest_WarpedWeaver": 495882677, + "Guest_ArachnaSkinner": 281864085, + "Guest_SkinnerConscript": 2028526453, + "Guest_ArachnaGladiator": 2492046, + "Guest_LorcanInitiate": 353311753, + "Guest_Serket": 1871335773, + "Guest_IceWeaver": 2063216026, + "Guest_SpiritSpinner": 525666327, + "Guest_MysteriousCrawler": 218352756, + "Guest_BlackWidow": 1909331619, + "Guest_BrownRecluse": 1146386275, + "Guest_Creeper": 1197442790, + "Guest_GearSpinner": 67020478, + "Guest_Clinker": 1194519062, + "Guest_Clanker": 1194517014, + "Guest_GrandfatherSpider": 1330981335, + "Guest_Spiderling": 1400274461, + "Guest_ManekiWebWalker": 888348786, + "Guest_KoganiDeathCrawler": 276010604, + "Guest_CheliceranCrawler": 1169176517, + "Guest_ArachniteCreeper": 1850534774, + "Guest_ChelicaranStalker": 2057291848, + "Guest_HornedMonkeySpider": 1301514577, + "Guest_GreyOgreSpider": 1533774471, + "Guest_StarburstSpider": 698029451, + "Guest_PaintedCaveMonster": 601315479, + "Guest_RubbleRouser": 220785666, + "Guest_EarthElemental": 435260049, + "Guest_SharpshardWarrior": 1403237237, + "Guest_Firevein": 1220046430, + "Guest_Blackblade": 458130537, + "Guest_VengefulFireheart": 563205004, + "Guest_FirerockStomper": 608552855, + "Guest_BlackrockGuardian": 1663799582, + "Guest_ConfusedSentry": 24655510, + "Guest_SilverSentinel": 1090673683, + "Guest_SilverServant": 84560693, + "Guest_GiantHomunculus": 456098557, + "Guest_PropertyMaster": 229101764, + "Guest_VaultProtector": 185568207, + "Guest_PlatedDefender": 79324363, + "Guest_Avalanche": 761613547, + "Guest_RockReaver": 919912933, + "Guest_Frostmantle": 856308090, + "Guest_GlacierWalker": 131215932, + "Guest_SandBehemoth": 272513357, + "Guest_RunedAnnihilator": 121339936, + "Guest_RunedDevestator": 1611071181, + "Guest_RunedGuardian": 1986312667, + "Guest_CanyonRager": 1123038266, + "Guest_RubbleReaver": 220774678, + "Guest_Boulderbone": 122279242, + "Guest_Nali": 77467516, + "Guest_Gnar": 1151164930, + "Guest_GlacialAvenger": 1181253632, + "Guest_SokkwiKeymaster": 190919624, + "Guest_SandsofTime": 34920273, + "Guest_BladeGolem": 435561523, + "Guest_FrostColossus": 1564686403, + "Guest_IceColossus": 335477257, + "Guest_PollutedEarthWalker": 86045387, + "Guest_CorruptedEarthSpirit": 1135891559, + "Guest_Stonebreaker": 1317905436, + "Guest_StoneElemental": 1715022018, + "Guest_VolcanisGolem": 1904918929, + "Guest_WaterElemental": 1717850987, + "Guest_AshenDeathMonkeySpider": 35356665, + "Guest_DeathMonkeySpider": 1525508507, + "Guest_MotherMonkeySpider": 110317392, + "Guest_DoomMonkey": 1135105500, + "Guest_DreamMorganthe": 907599965, + "Guest_DragonBeetle": 1974635734, + "Guest_SandWalker": 1530843985, + "MNT_PandaMama": 916371162, + "PP_BabyPandas": 778536285, + "PP_FrogPrince": 729975205, + "MNT_PumpkinCarriage": 183672737, + "Mount_Gobbler_B": 1193388729, + "PP_Hamster": 1578040708, + "Guest_Steeleton": 657429968, + "Guest_GoldenWyrm": 311022393, + "MNT_Roc": 1564431869, + "PP_BabyGriffin": 1913686406, + "Transformation_ShadowDPSMob": 936133896, + "Transformation_ShadowTankMob": 305660992, + "Transformation_ShadowHealMob": 356596800, + "Guest_SpiritofIgnorance": 1577360126, + "Guest_FecklessSoul": 519648315, + "Guest_BurnedOutSoul": 312181646, + "Guest_BenightedRevenant": 2131956962, + "Guest_TombLurker": 1901203489, + "Guest_DesertGolem": 543642682, + "Guest_KumoOni": 215822625, + "Guest_SpellwritStalker": 161772776, + "PP_Sun": 1723237840, + "Guest_Leadite": 4480416, + "Mount_FestiveFox": 2125832348, + "PP_FenrisWolf": 1601784680, + "PP_SchoolPiggle": 109782407, + "PP_FenrisWolf_Red": 1597992854, + "PP_FenrisWolf_Teal": 1455058454, + "PP_FenrisWolf_White": 1102186199, + "Transformation_NinjaPig_Fire": 984575055, + "Transformation_BG_RatThief_Myth": 1191155131, + "Transformation_BG_RatThief_Storm": 675891897, + "MNT_Umbrella": 955683437, + "Transformation_BG_Elf_Ice": 1209681129, + "Transformation_BG_Fairy_DarkMinion_Balance": 33521202, + "Transformation_BG_Cyclops_Death": 876023972, + "Transformation_BG_Minotuar_Fire": 1118476387, + "Transformation_BG_WolfWarrior_Storm": 2075594475, + "Transformation_BG_WolfWarrior_Balance": 746159992, + "Transformation_BG_Draconian_Myth": 903606820, + "Transformation_BG_Draconian_Life": 1501291044, + "Transformation_BG_Colossus_Life": 1320377666, + "MNT_DolphinChariot": 102982520, + "MNT_EvilWagon": 685457563, + "MNT_FlyingDutchman": 1176206544, + "PP_SeaHorse": 2024322494, + "PP_EvilTeddy": 1159020925, + "PP_ZombieParrot": 384805107, + "Transformation_BG_Ice_Colossus": 299613211, + "MNT_CarrierBat": 7323333, + "Transformation_BG_Minotaur_MythTempalte": 430330904, + "PP_FeatheredTabby": 452526748, + "Transformation_Detritus01": 1335763402, + "Guest_Metallossus": 335457082, + "MNT_SantaJaws": 464410203, + "MNT_BattleBadger": 532858222, + "Transformation_Shedder01": 2069145892, + "PP_NatureSpirit": 373176286, + "Transformation_Devourer01": 1004421540, + "Guest_TheDevourer": 1591187996, + "Guest_Treeminder": 1093207850, + "Guest_RenegadeDruid": 2087982292, + "Guest_FractalTreeminder": 927174548, + "Guest_UnsettledTreeminder": 486164163, + "Guest_DragonspyreCrusader": 247317280, + "Guest_YoungGreggor": 66068670, + "Guest_GeneralGreyflame": 499924835, + "Guest_OldGreggor": 391726170, + "Guest_PrinceViggor": 853556298, + "Guest_DragonspyreVanguard": 693851565, + "Guest_SilasConviction": 177362659, + "Guest_SilasWeariness": 893431021, + "Guest_SilasRage": 1288904439, + "Guest_SilasDoubt": 1479426285, + "Guest_Lorekeeper": 147779344, + "Guest_FelixPhotomongerIII": 68387506, + "Guest_WarHavox": 1634324022, + "Guest_Mis-assembledSkeleton": 221832082, + "Guest_TreeminderGhost": 200408510, + "Guest_ViggorsDrake": 340449521, + "Guest_BlueNinjaPig": 938539327, + "Guest_RedNinjaPig": 2097962021, + "Guest_OrangeNinjaPig": 625058258, + "Guest_PurpleNinjaPig": 445746449, + "Guest_RitualColossus": 844563319, + "Guest_TinyDragon": 1123127688, + "Guest_RitualSpider": 429827552, + "Guest_RitualDraconian": 837510372, + "Guest_CC_Druid_Warrior_C_01": 55314616, + "Guest_CC_Druid_Wizard_A_01": 1046261169, + "Guest_CC_Druid_Wizard_B_01": 1046244785, + "Guest_CC_Druid_Warrior_A_01": 56363192, + "MNT_Toboggan": 995356805, + "MNT_2P_WickerTreant-001": 2065440944, + "PP_Ratatoskr": 1003497600, + "PP_Trash": 1195047012, + "Guest_CC_Druid_Wizard_D_01": 1046343089, + "MNT_Sunflower": 721091531, + "MNT_Whoopee": 1383311238, + "MNT_Warthog": 8060761, + "PP_ShamRock": 943893325, + "PP_LeapingLeprechaun": 132882517, + "PP_LionCubs": 465759803, + "PP_Tanuki": 670387843, + "MNT_Crane": 433122675, + "MNT_Krokosphinx": 739938754, + "Transformation_BG_Fairy_Life": 1897480818, + "Transformation_LiceDeepSpawnA": 244795720, + "Piggle_Alien": 1761605655, + "PP_JeweledScarab": 620544607, + "Guest_KR_Nymph_DrkMage_D50": 1248526054, + "Guest_KR_Nymph_DrkMage_C50": 1246953190, + "Guest_KR_Nymph_DrkMage_B50": 1247477478, + "Guest_KR_Nymph_DrkMage_A50": 1245904614, + "Guest_EM_Spider_Ash_01": 185724938, + "UFO": 47349, + "PP_Kit10": 326796620, + "PP_Lumi_Tulip": 84119585, + "PP_Lumi_Fern": 117015078, + "PP_Lumi_Violet": 1468797578, + "PP_Lumi_Sunny": 1769236703, + "PP_Lumi_Daisy": 1743454175, + "MNT_CelestianMech": 1238076872, + "MNT_Brontosaurus": 402157167, + "Guest_HG_AKT_Krok_Cyber_A_Balance_25": 1367985604, + "Guest_HG_AKT_Krok_Cyber_A_Balance_50": 1368084932, + "Guest_HG_AKT_Krok_Cyber_A_Balance_75": 1367988676, + "Guest_HG_AKT_Krok_Cyber_A_Balance_100": 1351303620, + "Guest_HG_AKT_Krok_Cyber_A_Balance_130": 1351270852, + "Guest_HG_AKT_Krok_Cyber_A_Fire_25": 976558490, + "Guest_HG_AKT_Krok_Cyber_A_Fire_50": 37034397, + "Guest_HG_AKT_Krok_Cyber_A_Fire_75": 305469850, + "Guest_HG_AKT_Krok_Cyber_A_Fire_100": 573905821, + "Guest_HG_AKT_Krok_Cyber_A_Fire_130": 573905824, + "Guest_HG_AKT_Krok_Cyber_A_Ice_25": 159411377, + "Guest_HG_AKT_Krok_Cyber_A_Ice_50": 541093041, + "Guest_HG_AKT_Krok_Cyber_A_Ice_75": 146828465, + "Guest_HG_AKT_Krok_Cyber_A_Ice_100": 557870241, + "Guest_HG_AKT_Krok_Cyber_A_Ice_130": 960523425, + "Guest_HG_AKT_Krok_Cyber_A_Myth_25": 976187830, + "Guest_HG_AKT_Krok_Cyber_A_Myth_50": 36663729, + "Guest_HG_AKT_Krok_Cyber_A_Myth_75": 305099190, + "Guest_HG_AKT_Krok_Cyber_A_Myth_100": 573535153, + "Guest_HG_AKT_Krok_Cyber_A_Myth_130": 573535156, + "Guest_CL-GolemButler-R9": 780077559, + "Guest_CL-GolemDigger-Boss-R10": 562020288, + "Guest_CL-GolemDigger-R9": 789375095, + "Guest_CL-GolemDigger-Rank8MythBoss-R10": 930527857, + "Guest_CL-GolemWorker-R9-1": 1072815287, + "Guest_CL-FishbotBrown-R9-1": 2006155417, + "Guest_CL-FishbotBrown-R9-2": 395542681, + "Guest_CL-FishbotGold-Boss-R10": 611881707, + "Guest_CL-FishbotGold-R9": 705414492, + "Guest_CL-FishbotYellow-Boss-R10": 23145662, + "Guest_CL-Protector-Black-Boss-R10-2": 679228793, + "Guest_CL-Protector-Gold-R10": 1909636609, + "Guest_CL-Protector-Gold-R9-1": 1909634804, + "Guest_CL-Protector-Gold-R9-2": 1909634932, + "Guest_CL-Protector-Gold-R9-3": 1909635060, + "Guest_CL-Protector-Gold-R9-4": 1909634164, + "Guest_CL-Protector-Purple-R9-Boss": 1889837072, + "Guest_CL-Protector-Purple-R9": 81760161, + "Guest_CL-Protector-Tan-Boss-R10": 912663188, + "Guest_KR_Golem_Worker": 1784607296, + "Guest_Golem-Brass-R7-1": 718939445, + "Guest_Golem-Clockwork-R7": 1161173708, + "Guest_EM_Robot_Batbot_A_01": 1482867950, + "Guest_EM_Robot_Batbot_B_02": 945947886, + "Guest_EM_Robot_Batbot_B_01": 1482818798, + "Guest_EM_Robot_Batbot_B_03": 409076974, + "Guest_EM_Robot_Batbot_B_04": 127793938, + "Guest_EM_Robot_Batbot_B_05": 664664850, + "Guest_EM_Robot_Drone_A_02": 1215188569, + "Guest_EM_Robot_Drone_A_03": 1231965785, + "Guest_EM_Robot_Drone_A_01": 1265520217, + "Guest_EM_Robot_Drone_A_04": 1315851865, + "Guest_EM_Robot_Drone_A_05": 1332629081, + "Guest_EM_Robot_Drone_A_06": 1282297433, + "Guest_EM_Robot_Drone_A_07": 1299074649, + "Guest_EM_Robot_Drone_A_08": 1114525273, + "Guest_EM_Robot_Drone_A_09": 1131302489, + "Guest_EM_Robot_Drone_A_Boss_01": 1960661151, + "Guest_EM_Robot_Drone_A_Boss_02": 1960530079, + "Guest_EM_Robot_Drone_E_01": 1265518169, + "Guest_EM_Robot_Tank_A_01": 1314796420, + "Guest_EM_Robot_Tank_A_02": 1313223556, + "Guest_EM_Robot_Drone_C_02": 1215187545, + "Guest_EM_Robot_Drone_D_03": 1231963225, + "Guest_EM_Robot_Drone_D_01": 1265517657, + "Guest_EM_Robot_Drone_D_02": 1215186009, + "Guest_EM_Robot_Tank_B_01": 1314796468, + "Guest_EM_Robot_Drone_C_01": 1265519193, + "Guest_G14-BP-Golem_Steel_Boss": 2071105129, + "Guest_G14-BP-Golem_Steel_Puzzle": 715790979, + "Guest_Golem-Brass-Elite-L38": 1163662532, + "Guest_Golem-Brass-Elite-L56": 2057562884, + "Guest_Golem-Brass-MBBoss-L48": 1498830732, + "Guest_Golem-Brass-MBBoss-L71": 1498829576, + "Guest_Golem-Brass-MBBoss-L76": 1498828936, + "Guest_Golem-Clockwork-Elite-L54-Metal": 417151527, + "Guest_Golem-Clockwork-Elite-L37": 1961943722, + "Guest_Golem-Clockwork-Elite-L54": 1950147242, + "Guest_Golem-Clockwork-L28": 1561959116, + "Guest_Golem-Clockwork-MBBoss-L37": 973152783, + "Guest_Golem-Clockwork-MBBoss-L69": 1262559759, + "Guest_Golem-Steel-Elite-L39": 1430496717, + "Guest_Golem-Steel-MBBoss-L40": 1229578887, + "Guest_Golem-Steel-MBBoss-L43": 1229579015, + "Guest_Golem-Steel-MBBoss-L50-1": 1231762051, + "Guest_Golem-Steel-MBBoss-L50": 1229578883, + "Guest_Golem-Steel-MBBoss-LXX": 1229583927, + "Guest_Golem-Wood-Elite-L35": 904360756, + "Guest_Golem-Wood-Elite-L37": 1978102580, + "Guest_Golem-Wood-Elite-L50": 1813548236, + "Guest_Golem-Wood-MBBoss-L63": 1392041724, + "Guest_MB-Gauntlet-Golem-Clockwork": 854649045, + "Guest_Spider-Golem-MBBoss-L67": 253352706, + "Guest_Spider-Golem-MBBoss-L96": 253348994, + "Guest_WC-MAW-GasGolem-Minion": 1511013798, + "Guest_WC-MAW-GasGolemLife-Minion": 1306026584, + "Guest_Golem-Steel-L02": 1027229749, + "Guest_Golem-Clockwork-L01": 1409915596, + "Guest_Gauntlet-01-Golem-Steel-Ghost-R8": 402816318, + "Guest_Golem-Wood-L01": 156976035, + "Guest_HG-Clock-ClockworkSpanner-20": 1523370449, + "Guest_HG-Clock-ClockworkSpanner-40": 1523370455, + "Guest_HG-Clock-ClockworkSpanner-60": 1523370453, + "Guest_HG-Clock-ClockworkSpanner-80": 1523370459, + "Guest_HG-Clock-ClockworkSpanner-100": 1523354068, + "Guest_HG-Clock-ClockworkSpanner-120": 1523354004, + "Guest_AQ-Cyclops-Guard": 191361948, + "Guest_AQ_Cyclops_Guard_A_Boss_01": 114747100, + "Guest_CL-Cyclops-Death-R10": 611013866, + "Guest_Cyclops-Death-Boss-R7": 1192370725, + "Guest_Cyclops-Death-Boss-R9": 1192370717, + "Guest_Cyclops-Death-R7": 144593791, + "Guest_GH-Cyclops-Death-R6": 594236619, + "Guest_Cyclops-BlueHelmet-KTBoss-L03": 1720105277, + "Guest_Cyclops-Red-L12": 1816429840, + "Guest_MR_Cyclops02WHelmet_Model_01": 1483732416, + "Guest_Cyclops-Blue-L02": 1633021234, + "Guest_Cyclops-BlueHelmet-WCBoss-L03": 427378332, + "Guest_Cyclops-RedHelmet-WCBoss-L03": 2021269422, + "Guest_HG_Sinbad_Cyclops_25": 911979034, + "Guest_HG_Sinbad_Cyclops_50": 1856261606, + "Guest_HG_Sinbad_Cyclops_75": 861647386, + "Guest_HG_Sinbad_Cyclops_100": 1789152678, + "Guest_HG_Sinbad_Cyclops_130": 178539942, + "Guest_HG_Sinbad_IronSultan_25": 930031152, + "Guest_HG_Sinbad_IronSultan_50": 930051504, + "Guest_HG_Sinbad_IronSultan_75": 930030768, + "Guest_HG_Sinbad_IronSultan_100": 927954864, + "Guest_HG_Sinbad_IronSultan_130": 927942576, + "MNT_SweetRide": 1643297840, + "PP_FrilledDino": 1395342809, + "PP_Celestian": 95679303, + "PP_Sun_Angry": 1955190071, + "PP_Marshmallow": 1220667954, + "MNT_Umbrella_B": 923364822, + "MNT_Tamer": 1050737194, + "PP_BumbleBee_B": 858653433, + "MNT_PunkFlamingo": 1634690818, + "MNT_2P_WoolyRhino": 1395943031, + "PP_Retriever": 72842604, + "PP_Piggle_Caveman": 181356174, + "PP_DecennialDragon": 1396523337, + "MNT_Tiger_Rainbow": 515535412, + "MNT_CarrierGhosts": 1833039309, + "MNT_Sled": 617654308, + "Transformation_BG_RatThief_Death": 30691641, + "Transformation_BG_Elf_Storm": 44352983, + "Transformation_BG_WolfWarrior_Ice": 986304351, + "MNT_CarriorGhost_B": 1768732109, + "MNT_CarriorGhost_C": 1766634957, + "Transformation_BG_Colossus_Fire": 1318803522, + "Transformation_BG_Krok_Balance": 140952965, + "Guest_KM_Gobbler_Skinny_A_11": 773648065, + "Guest_KM_Robot_Candy_A_01": 480414124, + "Guest_KM_Robot_Candy_A_02": 530745772, + "Guest_KM_Robot_Candy_A_03": 513968556, + "Guest_KM_Robot_Candy_A_04": 430082476, + "Guest_KM_Robot_Candy_A_05": 413305260, + "Guest_KM_Gummy_Bear_A_01": 1940905059, + "Guest_KM_Gummy_Bear_D_01": 1940905011, + "Guest_KM_Gummy_Bear_E_01": 1940904995, + "Guest_KM_Gummy_Bear_A_02": 1941429347, + "Guest_KM_Gummy_Bear_D_02": 1941429299, + "Guest_KM_Gummy_Bear_E_02": 1941429283, + "Guest_KM_Gummy_Bear_B_01": 1940905043, + "Guest_KM_Gummy_Bear_B_02": 1941429331, + "Guest_KM_Gummy_Bear_B_03": 1941953619, + "Guest_KM_Gummy_BearHat_A_01": 853226448, + "Guest_KM_Gummy_BearHat_A_02": 853226460, + "Guest_KM_Gummy_Bunny_A_01": 324805042, + "Guest_KM_Gummy_Bunny_C_01": 324806066, + "Guest_KM_Gummy_Bunny_D_01": 324807602, + "Guest_KM_Gummy_Bunny_E_01": 324807090, + "Guest_KM_Gummy_Bunny_F_01": 324808626, + "Guest_KM_Gummy_BunnyUber_A_01": 525565930, + "Guest_KM_Gummy_Worm_A_01": 231044195, + "Guest_KM_Gummy_Worm_B_01": 231044179, + "Guest_KM_Gummy_Worm_C_01": 231044163, + "Guest_KM_Gummy_Worm_A_02": 232617059, + "Guest_KM_Gummy_Worm_B_02": 232617043, + "Guest_KM_Gummy_Worm_C_02": 232617027, + "Guest_KM_Gummy_Bear_F_01": 1940904979, + "Guest_KM_Gummy_Bear_F_02": 1941429267, + "Guest_KM_Gummy_Bunny_C_02": 274474418, + "Guest_KM_Robot_Candy_A_06": 463636908, + "Guest_KM_Alphoi_DarkF_A_01": 475441543, + "Guest_KM_Gobbler_Skinny_A_01": 773648069, + "Guest_KM_Gobbler_Skinny_A_02": 773648197, + "Guest_KM_Gobbler_Skinny_A_03": 773648325, + "Guest_KM_Gobbler_SkinnyF_A_01": 254411012, + "Guest_KM_Gobbler_Skinny_A_04": 773647429, + "Guest_KM_Gobbler_Skinny_A_05": 773647557, + "Guest_KM_Gobbler_Skinny_A_06": 773647685, + "Guest_KM_Gobbler_SkinnyF_A_02": 254423300, + "Guest_KM_Gobbler_Skinny_A_07": 773647813, + "Guest_KM_Gobbler_Skinny_A_08": 773646917, + "Guest_KM_Gobbler_Skinny_A_09": 773647045, + "Guest_KM_Gobbler_SkinnyF_A_03": 254419204, + "Guest_KM_Gobbler_Fat_A_01": 1440595742, + "Guest_KM_Gobbler_Fruit_B_01": 1236446660, + "Guest_KM_Gobbler_Fruit_A_01": 1235922372, + "Guest_KM_Gobbler_Guard_B_01": 1435667582, + "Guest_KM_Gobbler_Skinny_A_10": 773647937, + "Transformation_PlayerBabyCarrot": 1580787628, + "Transformation_PlayerDeadBeet": 1992261692, + "Transformation_PlayerDisparagus": 373797484, + "Transformation_PlayerSnowPeas": 634199102, + "PP_Snowflake": 2036143125, + "PP_GummyBear_Myth": 117787890, + "PP_GummyBear_Death": 236577760, + "PP_GummyBear_Balance": 2100524337, + "PP_GummyBear_Life": 118020336, + "PP_GummyBear_Fire": 117995748, + "PP_GummyBear_Storm": 247437198, + "PP_GummyBear_Ice": 122536570, + "MNT_SnowOwl": 1578473542, + "Guest_KM_Gummy_Bear_Uber_A_01": 1856208859, + "Guest_KM_Gummy_Bear_Uber_A_02": 1856196571, + "MNT_ChocolateMoose": 567538552, + "MNT_Ram_Candied": 1913603720, + "Guest_KM_Spider_Mage_A_01": 1529720120, + "Guest_KM_Spider_Mage_B_01": 1529719608, + "Guest_KM_Spider_Mage_C_01": 1529719096, + "Guest_KM_Spider_Mage_D_01": 1529718584, + "Guest_KM_Spider_Mage_E_01": 1529718072, + "PP_SpriteDark_Balance": 914900728, + "MNT_Tricycle": 991465753, + "Guest_Tri-Gauntlet-Protector-Gold": 2029952053, + "Guest_Tri-Gauntlet-FishbotGold": 130267882, + "Guest_HG-Clock-Clockworker-20": 281216243, + "Guest_HG-Clock-Clockworker-40": 281217011, + "Guest_HG-Clock-Clockworker-60": 281216755, + "Guest_HG-Clock-Clockworker-80": 281215475, + "Guest_HG-Clock-Clockworker-100": 283313523, + "Guest_HG-Clock-Clockworker-120": 283321715, + "Guest_HG-Clock-Lugs-20": 1452756928, + "Guest_HG-Clock-Lugs-40": 1452756960, + "Guest_HG-Clock-Lugs-60": 1452756992, + "Guest_HG-Clock-Lugs-80": 1452756768, + "Guest_HG-Clock-Lugs-100": 1452494736, + "Guest_HG-Clock-Lugs-120": 1452493712, + "Guest_HG-Clock-Lucia-20": 1041451626, + "Guest_HG-Clock-Lucia-40": 1041450602, + "Guest_HG-Clock-Lucia-60": 1041449578, + "Guest_HG-Clock-Lucia-80": 1041456746, + "Guest_HG-Clock-Lucia-100": 1049840746, + "Guest_HG-Clock-Lucia-120": 1049873514, + "Guest_KM_Gummy_Worm_A_03": 232092771, + "MNT_Scooter_E": 200254340, + "PP_WolfWarrior_Balance": 991302673, + "PP_PetGift": 1816280689, + "PP_RatThief": 1390866051, + "Guest_PL_Titan_Small_A": 2015819364, + "Guest_PL_Titan_Large_B": 699791264, + "Guest_PL_Titan_Medium_A": 326730424, + "PP_Draconian": 1631557208, + "MNT_Pantera_Astral": 106092538, + "PP_YearOx": 105653084, + "PP_WolfWarrior_Ice": 1043644935, + "PP_SpriteDark": 2031730054, + "PP_Brudel": 1355697143, + "MNT_Astronomers": 742732792, + "MNT_CouchPotato": 418050932, + "MNT_Flowerfarthing": 1396771051, + "MNT_Astronomers_Blue": 236532779, + "MNT_Astronomers_Rainbow": 4428274, + "PP_Astronomer": 782095961, + "Guest_KM_Gummy_Bunny_B_01": 324806578, + "Guest_KM_DeadBeets_A_01": 1396016635, + "MNT_GummyBunny": 775900704, + "MNT_GummyBunny_A": 775834080, + "MNT_GummyBunny_B": 775836128, + "MNT_GummyBunny_C": 775838176, + "Transformation_BG_Minotaur_Life": 1445109091, + "MNT_Armadillo": 825635826, + "PP_SootGremlin": 768969093, + "PP_RoadRunner": 2057802060, + "MNT_TinyTrolly": 160881792, + "PP_Frog_B": 1530124761, + "MNT_FjordDragon": 129204340, + "Transformation_BG_NinjaPig_Myth": 422914079, + "PP_CorgiPup": 1638656105, + "MNT_Skateboard": 728018224, + "PP_Krokomummy": 326396577, + "MNT_Vroom": 1736383110, + "MNT_PlayerWings_AtralRaven": 1514774167, + "PP_Blimp": 690882397, + "Guest_GH_WoodenSkeletonKey_Boar_Boss_Grey_01": 678055851, + "Guest_GH_StoneSkeletonKey_Boar_Boss_Grey_01": 571670691, + "Guest_GH_GoldSkeletonKey_Boar_Boss_Grey_01": 961728819, + "MNT_Cloud_Promo_AW_01": 2032670992, + "Guest_EM_Hornet_Burner_A_01": 1881854632, + "Guest_EM_Hornet_Burner_A_02": 1881854636, + "Guest_EM_Hornet_Zapper_A_01": 2058539689, + "Guest_EM_Hornet_Zapper_A_02": 2058539685, + "Guest_EM_Ant_Giant_D_01": 379386121, + "Guest_EM_Ant_Giant_A_02": 1768146677, + "Guest_EM_Ant_Giant_A_01": 1768097525, + "Guest_EM_Ant_Giant_B_01": 379386122, + "Guest_KR_Moth_Priest_G_Achera": 381233569, + "Guest_KR_BeeMonsterF_A": 135146211, + "Guest_KR_BeeMonsterF_A_Weak": 1824123847, + "Guest_KR_Bee_Warrior_A": 1569202664, + "Guest_KR_Bee_Warrior_B": 1569204200, + "Guest_KR_Bee_Warrior_C_BossDrones": 1217189631, + "Guest_KR_Bee_Warrior_D": 1569205224, + "Guest_KR_Bee_Warrior_E": 1569204712, + "Guest_KR_Bee_Warrior_G": 1569205736, + "Guest_KR_Bee_Warrior_G_BossFight": 1055035476, + "Guest_KR_Bee_Warrior_H": 1569207272, + "Guest_KR_Bee_Warrior_I": 1569206760, + "Guest_KR_Bee_Warrior_L": 1569209320, + "Guest_KR_Bee_Warrior_M": 1569208808, + "Guest_KR_DragonBeetle_Monster_A": 1777853782, + "Guest_KR_Hornet_Drone_A": 1161590757, + "Guest_KR_Hornet_Drone_B": 1161607141, + "Guest_KR_Hornet_Drone_C": 1161623525, + "Guest_KR_Hornet_Drone_D": 1161639909, + "Guest_KR_Hornet_Drone_E": 1161656293, + "Guest_KR_Lice_DeepSpawn_A": 761604959, + "Guest_KR_Mantis_HunterF_A": 820917199, + "Guest_KR_Mantis_HunterF_B": 871248847, + "Guest_KR_Mantis_HunterF_C": 854471631, + "Guest_KR_Mantis_HunterF_D": 904803279, + "Guest_KR_Mantis_HunterF_F": 938357711, + "Guest_KR_Mantis_HunterF_F_Driftwood": 2053608437, + "Guest_KR_Mantis_HunterF_G": 921580495, + "Guest_KR_Mantis_HunterF_H": 971912143, + "Guest_KR_Mantis_HunterF_I": 955134927, + "Guest_KR_Mantis_HunterF_I_Zuzka": 935478878, + "Guest_KR_Mantis_HunterF_J": 1005466575, + "Guest_KR_Mantis_HunterF_J_Zelda": 886910558, + "Guest_KR_Mantis_HunterF_K": 988689359, + "Guest_KR_Mantis_HunterF_K_LongShd": 1767574336, + "Guest_KR_Mantis_HunterF_L": 1039021007, + "Guest_KR_Mantis_HunterF_M": 1022243791, + "Guest_KR_Mantis_HunterF_P_Bossfight": 1731428987, + "Guest_KR_Mantis_HunterF_Q": 552481743, + "Guest_KR_Mantis_HunterF_R": 602813391, + "Guest_KR_Mantis_HunterF_S": 586036175, + "Guest_KR_Mantis_HunterF_SecondColumnCpt_A": 1354033994, + "Guest_KR_Mantis_HunterF_T": 636367823, + "Guest_KR_Mantis_HunterF_Tribute": 1946371041, + "Guest_KR_Mantis_HunterF_U": 619590607, + "Guest_KR_Mantis_HunterF_V": 669922255, + "Guest_KR_Mantis_HunterF_W": 653145039, + "Guest_KR_Mantis_HunterF_Y": 686699471, + "Guest_KR_Mantis_HunterF_Z_Officer": 206016474, + "Guest_KR_Mantis_ProphetF_B": 1791139097, + "Guest_KR_Mantis_ProphetF_C": 1254268185, + "Guest_KR_Milipede_Warrior_A": 410726278, + "Guest_KR_Milipede_Warrior_B": 410726282, + "Guest_KR_Milipede_Warrior_C": 410726286, + "Guest_KR_Milipede_Warrior_D": 410726290, + "Guest_KR_Milipede_Warrior_H": 410726306, + "Guest_KR_Milipede_Warrior_J": 410726314, + "Guest_KR_Milipede_Warrior_K": 410726318, + "Guest_KR_Moth_Priest_A": 1421532604, + "Guest_KR_Moth_Priest_B": 1421532092, + "Guest_KR_Moth_Priest_C": 1421531580, + "Guest_KR_Moth_Priest_D": 1421531068, + "Guest_KR_Moth_Priest_D_Drepa": 1483393420, + "Guest_KR_Moth_Priest_E": 1421530556, + "Guest_KR_Moth_Priest_F": 1421530044, + "Guest_KR_Mantis_HunterF_Z": 737031119, + "Guest_KR_Roach_AntLion_A": 1860517987, + "Guest_KR_Roach_AntLion_B_Bossfight": 993284625, + "Guest_KR_Roach_AntLion_C": 1861566563, + "Guest_KR_Roach_Cook_A": 259847495, + "Guest_KR_Roach_Glutton_B": 249524334, + "Guest_KR_Roach_WaterBug_A": 1795473599, + "Guest_KR_Roach_WaterBug_B": 1745141951, + "Guest_MR_Beetle_Scarab_A_01": 1789741503, + "Guest_MR_Beetle_Scarab_A_02": 1789741491, + "Guest_MR_Beetle_Scarab_B_01": 1790265791, + "Guest_ZF-Goliath-R10-Boss-01": 7034074, + "Guest_ZF-Goliath-R10-Boss-02": 7034202, + "Guest_ZF-Goliath-R10-Boss-03": 7034330, + "Guest_ZF-Goliath-R10-Boss": 1603576807, + "Guest_ZF-Goliath-R11-Boss-01": 2140449574, + "Guest_ZF-Goliath-R11-Boss-02": 2140449446, + "Guest_ZF-Goliath-R11-Boss-03": 2140449318, + "Guest_ME1_Ant_Aunt_A": 707251855, + "Guest_ME1_Ant_Aunt_B": 1440231794, + "Guest_CC_Fly_Worker_A_01": 1497784524, + "Guest_CC_Roach_Worker_A_01": 1026321602, + "Guest_CC_Roach_Lieutenant_A_01": 1081690299, + "Guest_CC_Roach_Lieutenant_B_01": 1081690295, + "Guest_CC_Roach_Don_A_01": 547836893, + "Guest_CC_Roach_BBug_A_01": 1021150157, + "Guest_CC_Roach_RoachSteady_A_01": 859409247, + "Guest_Draconian-Caster-Yellow-Boss-R8": 1016221419, + "Guest_Draconian-Zombie-R8-2-1": 1226055265, + "Guest_Draconian-Zombie-R8-2": 1226115297, + "Guest_Draconian-Caster-Green-R7": 2143342719, + "Guest_Draconian-Warrior-Gold-Boss-R8": 1044388248, + "Guest_Draconian-Caster-Gray-R7": 95878769, + "Guest_DS-Boss-MAW": 1676071241, + "Guest_Draconian-Zombie-R8-1": 1226115309, + "Guest_Draconian-Warrior-Purple-Boss-R7": 601813964, + "Guest_Draconian-Caster-Tan-Boss-R7": 1973339532, + "Guest_Draconian-Caster-Blue-R6": 1684210173, + "Guest_Draconian-Caster-Yellow-R8": 2129956646, + "Guest_Draconian-Warrior-Red-R7": 521861944, + "Guest_Draconian-Warrior-Tan-R6": 1726416112, + "Guest_Draconian-Warrior-Purple-R8": 1896270341, + "Guest_Draconian-Caster-Blue-Boss-R7": 401581134, + "Guest_Draconian-Zombie-R8": 384497496, + "Guest_GH2-Draconian-HENCH-R10": 1149202878, + "Guest_GH2-Draconian-BOSS-R10": 2114378473, + "Guest_G14-DM-Draconian_Boss": 490246211, + "Guest_G14-DM-Draconian_Storm": 2035239226, + "Guest_G14-DM-Draconian_Ice": 782200563, + "Guest_G14-DM-Draconian_Malistaire_M": 1904691727, + "Guest_G14-DM-Draconian_Malistaire_S": 1904685583, + "Guest_G14-DM-Draconian_Malistaire_D": 1904700943, + "Guest_G14-DM-Draconian_Malistaire": 1904736751, + "Guest_G14-DM-Draconian_Malistaire_B": 1904702991, + "Guest_G14-DM-Draconian_Malistaire_I": 1904695823, + "Guest_G14-DM-Draconian_Malistaire_L": 1904692751, + "Guest_G14-DM-Draconian_Malistaire_F": 1904698895, + "Guest_Draconian-PW-Gauntlet-Boss": 493080513, + "Guest_CC_Draconian_A_01": 551348115, + "Guest_AZ-Parasaur-Undead-E": 2041242846, + "Guest_AZ-Parasaur-drkPriestF-F": 898239615, + "Guest_EM_Parasaur_DrkPriestF_A_01": 1007099606, + "Guest_EM_Parasaur_DrkPriestF_A_02": 1007099605, + "Guest_AZ-Parasaur-drkPriestF-D": 898501759, + "Guest_AZ-Parasaur-drkPriestF-E": 898370687, + "Guest_AZ-Parasaur-drkPriestF-A": 897846399, + "Guest_AZ-Parasaur-Undead-B": 1716853538, + "Guest_AZ-Parasaur-Undead-A": 106240802, + "Guest_AZ-Parasaur-Undead-G": 967501022, + "Guest_AZ-Parasaur-PriestF-D": 1177445525, + "Guest_AZ-Parasaur-Undead-C": 1179982626, + "Guest_AZ-Parasaur-drkPriestF-C": 897584255, + "Guest_AZ-Parasaur-Undead-SkurkisMinion": 1414766977, + "Guest_AZ-Parasaur-drkPriestF-B": 897715327, + "Guest_AZ-Parasaur-drkPriestF-B-Script": 1414847875, + "Guest_AZ_Parasaur_Priest_A_Boss_01": 890025421, + "Guest_AZ-Parasaur-Undead-D": 1504371934, + "Guest_AZ-Pteranodon-Knight-D": 1127364049, + "Guest_AZ-StoneSkeletonKey-Ixcax-Cursedwing": 699239601, + "Guest_AZ-Pteranodon-Knight-E": 1127363921, + "Guest_AZ-Pteranodon-Knight-F": 1127363793, + "Guest_AZ-Pteranodon-Knight-A-PageEvent": 942589002, + "Guest_AZ-StoneSkeletonKey-Minion-Death": 311645584, + "Guest_AZ-Pteranodon-Knight-A": 1127364433, + "Guest_AZ-Raptor-Wraith-A": 585729247, + "Guest_AZ-Raptor-Undead-D": 893623689, + "Guest_G14-HS-Ifzt": 1914694612, + "Guest_AZ-Raptor-Warrior-A": 855749884, + "Guest_AZ-Raptor-Undead-C": 897293705, + "Guest_AZ-Raptor-Undead-B": 896769417, + "Guest_AZ-Raptor-Undead-F": 894672265, + "Guest_AZ-Raptor-Warrior-F": 872527100, + "Guest_AZ-Raptor-Warrior-H": 973190396, + "Guest_AZ-Tritops-Warrior-I": 1942669769, + "Guest_AZ-Tritops-Undead-H": 1215305911, + "Guest_AZ-Tritops-Undead-E": 1164974263, + "Guest_AZ-Tritops-SpkWarrior-A": 860850257, + "Guest_AZ-Tritops-SpkWarrior-B": 860862545, + "Guest_AZ-Tritops-Undead-F": 1181751479, + "Guest_AZ-Tritops-Warrior-K": 868927945, + "Guest_AZ-Tritops-Undead-G": 1198528695, + "Guest_AZ-Tritops-Mummy-A": 1912444877, + "Guest_AZ-Tritops-Warrior-G": 1278555704, + "Guest_AZ-Tritops-Undead-D": 1148197047, + "Guest_AZ-Tritops-Undead-A": 1097865399, + "Guest_AZ-Tritops-SpkChief-B": 2096319577, + "Guest_AZ-Tritops-Mummy-B": 1910872013, + "Guest_AZ-Tritops-Warrior-H": 1405798857, + "Guest_AZ-Dino-Undead-A": 508678670, + "Guest_AZ-Dino-Undead-B": 508679182, + "Guest_AZ-Dino-Undead-D": 508680206, + "Guest_KR_Dino_Undead_A": 1638800628, + "Guest_KR_Dino_Undead_Minion_A": 892450235, + "MNT_HayRideTruck": 75377404, + "MNT_ShadowSpiderForm": 1439860426, + "Transformation_BG_Draconian_Death": 794598804, + "PP_BabyOrca": 1056061090, + "Transformation_BG_Cyclops_Fire": 638854828, + "Transformation_BG_Fairy_Ice": 874078461, + "PP_SpriteLife": 1824998010, + "PP_Raccoon": 1107326808, + "PP_FireKitten": 593048189, + "MNT_SkeletalDuck": 1306273036, + "PP_VampireSquid": 431023109, + "PP_CottonCandy": 891201813, + "PP_ThreeHeadGoat": 1282096939, + "PP_EyeBot": 260189248, + "MNT_DeathBoat": 1444454568, + "MNT_Lemuria": 908974762, + "MNT_DeathBoat_B": 1444456538, + "MNT_DeathBoat_C": 1444456474, + "MNT_Spooky3": 1667775622, + "MNT_PresentBox": 122082000, + "MNT_Orca": 1726961653, + "Guest_LM_Golem_Steel_A_01": 19551853, + "Guest_LM_Golem_Steel_A_02": 36329069, + "Guest_LM_EyeBot_A_01_Death": 380508535, + "Guest_LM_EyeBot_A_01_Myth": 167840640, + "PP_ThreeHeadGoat_B": 1209286443, + "PP_ThreeHeadGoat_C": 1211383595, + "Guest_KR_Eel_Whirligig_A": 1062268734, + "Guest_KR_Goliath_Behemoth_A": 1231139987, + "Guest_KR_Goliath_Behemoth_C": 1231139995, + "Guest_KR_Goliath_Behemoth_D": 1231139975, + "Guest_KR_Goliath_Behemoth_E": 1231139971, + "Guest_KR_Goliath_Behemoth_H": 1231140023, + "Guest_KR_Goliath_Crusher_C": 1651720060, + "Guest_KR_Goliath_Crusher_D": 2106376324, + "Guest_KR_Goliath_Crusher_F": 1032634500, + "Guest_KR_Goliath_Crusher_G": 495763588, + "Guest_KR_Goliath_Crusher_K": 1651720059, + "Guest_AZ-Goliath-Crusher-A": 1874784966, + "Guest_AZ-Goliath-Crusher-B": 264172230, + "Guest_AZ-Goliath-Crusher-C": 801043142, + "Guest_AZ-Goliath-Crusher-D": 809569594, + "Guest_AZ-Goliath-Crusher-E": 272698682, + "Guest_HG_AKT_Butterfly_Time_A_25": 1788523059, + "Guest_HG_AKT_Butterfly_Time_A_50": 1130017331, + "Guest_HG_AKT_Butterfly_Time_A_75": 1809494579, + "Guest_HG_AKT_Butterfly_Time_A_100": 1113240099, + "Guest_HG_AKT_Butterfly_Time_A_130": 1515893283, + "MNT_DeathBoat_D": 1444456922, + "Guest_KR_RhinoBeetle_Sun_A_Bossfight": 47895417, + "Guest_KR_RhinoBeetle_Star_A": 1947510103, + "Guest_KR_RhinoBeetle_Moon_A": 1751275863, + "Guest_ME1_Clockwork_Marine_A": 1481452452, + "Guest_ME1_Clockwork_Marine_B": 1481452068, + "Guest_CC_GoldSkeletonKey_Lice_DeepSpawn_B": 1306132994, + "Guest_KR_DamdinBazar_A_Bossfight": 1333596311, + "Guest_DS-Minion-MAW2": 356796677, + "Guest_KH-Wyrmling-1": 116330513, + "Guest_KH-Wyrmling-20": 183439385, + "Guest_KH-Wyrmling-40": 317657113, + "Guest_KH-Wyrmling-60": 451874841, + "Guest_KH-Wyrmling-80": 586092569, + "Guest_PL_Polar_Bear_Solider_C": 1785662565, + "Guest_Skeleton-Silver-WCBoss-L01": 17766963, + "Guest_Banshee-Red-Elite-L24_B": 1902069117, + "Transformation_BG_WolfWarrior_Myth": 339098032, + "Transformation_BG_RatThief_Balance": 881728218, + "Transformation_BG_Colossus_Storm": 593527492, + "Transformation_BG_Elf_Life": 347405087, + "Transformation_BG_Minotaur_Ice": 1197752291, + "MNT_TRex_B": 660285500, + "PP_SpriteDark_Ice": 2036248504, + "MNT_RollingBall": 1658139390, + "Guest_LM_TRex_Base_A_03": 1378630657, + "Guest_LM_TRex_Base_A_04": 1378745345, + "Guest_LM_TRex_Base_A_05": 1378728961, + "Guest_LM_TRex_Base_A_01": 1378663425, + "Guest_LM_TRex_Base_A_02": 1378647041, + "Guest_LM_TRex_Cyborg_A_01": 151609741, + "Guest_LM_TRex_Cyborg_A_02": 168386957, + "Guest_LM_TRex_Cyborg_A_03": 185164173, + "Guest_LM_TRex_Cyborg_B_01": 151611277, + "Guest_LM_TRex_Cyborg_D_01": 151612301, + "Guest_LM_TRex_Cyborg_E_01": 151611789, + "Guest_LM_TRex_Cyborg_C_01": 151610765, + "Guest_LM_Draconian_Base_A_01": 1607373112, + "Guest_LM_EyeBot_B_01": 1085543056, + "Guest_LM_Drone_Eye_C_01": 916954037, + "Guest_LM_Drone_Eye_D_01": 1230529608, + "Guest_LM_Drone_Eye_D_02": 1230545992, + "Guest_LM_Drone_Eye_D_04": 1230578760, + "Guest_LM_Drone_Eye_D_03": 1230562376, + "Guest_LM_Drone_Eye_A_01": 916954038, + "Guest_LM_Drone_Eye_A_02": 916937654, + "Guest_LM_Drone_Eye_B_01": 1230529611, + "Guest_LM_Drone_Eye_D_05": 1230595144, + "Guest_LM_Drone_Eye_D_07": 1230627912, + "Guest_LM_Drone_Eye_D_08": 1230644296, + "Guest_LM_Drone_Eye_A_03": 916921270, + "Guest_LM_Drone_Eye_A_04": 916904886, + "Guest_LM_Drone_Eye_C_02": 916937653, + "Guest_LM_EyeBot_B_02": 1061940593, + "Guest_LM_EyeBot_B_03": 1085543055, + "Guest_LM_EyeBot_B_04": 1061940594, + "Guest_LM_Drone_Eye_C_03": 916921269, + "Guest_LM_Robot_Kit10_A_01": 199936400, + "Guest_LM_Colossus_Mander_A_01": 2107529026, + "Guest_LM_Robot_Future_A_01": 998840846, + "Guest_LM_Robot_FutureBIG_A_01": 340408568, + "Guest_LM_Robot_FutureBIG_A_02": 340396280, + "Guest_LM_Robot_FutureBIG_A_03": 340400376, + "Guest_LM_Robot_OldOne_A_01": 779070973, + "Guest_LM_Robot_OldOne_A_02": 1315941885, + "Guest_LM_Millipede_Centi_A_01": 168575797, + "Guest_LM_Millipede_Centi_A_03": 168583989, + "Guest_LM_Millipede_Centi_A_02": 168588085, + "Guest_LM_Millipede_Centi_A_04": 168563509, + "Guest_LM_Moth_Sorcerer_A_01": 228191136, + "Guest_LM_Boar_Barbarian_A_01": 1238634912, + "Guest_LM_Boar_Barbarian_A_02": 1238634528, + "Guest_LM_Boar_Barbarian_A_03": 1238634656, + "Guest_LM_Boar_Barbarian_A_04": 1238635296, + "Guest_LM_Boar_Barbarian_A_05": 1238635424, + "Guest_LM_Boar_Chief_A_01": 357051311, + "Guest_LM_Fungus_Humango_A_01": 1398460044, + "Guest_LM_Fungus_Humango_A_02": 1398460172, + "Guest_LM_Treant_Base_A_01": 1658172241, + "Guest_LM_GiantTree_EvilRoots_A_01": 282225934, + "Guest_LM_PA_GreenMan_A_01": 67705044, + "Guest_LM_Fungus_Humango_B_01": 1348128396, + "Guest_LM_Fungus_Humango_A_03": 1398460300, + "Guest_LM_Fungus_Man_C_01": 1648824156, + "Guest_LM_Fungus_Man_C_02": 1650397020, + "Guest_LM_Rhino_Zombie_A_01": 248513993, + "Guest_LM_Malughast_Base_01": 883820436, + "Guest_LM_Malughast_Base_02": 1420691348, + "Guest_LM_Lemur_HierarchF_H_04": 231562115, + "Guest_LM_Malughast_Base_03": 1957562260, + "Guest_LM_Malughast_Base_05": 1263663212, + "Guest_LM_Malughast_Base_06": 726792300, + "Guest_LM_Malughast_Base_08": 346949523, + "Guest_LM_Malughast_Base_09": 883820435, + "Guest_LM_Malughast_Base_04": 1800534124, + "Guest_LM_Minotaur_Skeleton_A_01": 1865122824, + "Guest_LM_Lemur_Wild_B_03": 1783764037, + "Guest_LM_Lemur_HierarchF_H_01": 231541635, + "Guest_LM_Lemur_HierarchF_H_02": 231553923, + "Guest_LM_Mander_Warrior_A_01": 1651245419, + "Guest_LM_Mander_Warrior_A_02": 1651245291, + "Guest_LM_Mander_Warrior_B_01": 1634468203, + "Guest_LM_Mander_Warrior_B_02": 1634468075, + "Guest_LM_Mander_Warrior_A_03": 1651245163, + "Guest_LM_Mander_Warrior_B_03": 1634467947, + "Guest_LM_Mander_Warrior_A_06": 1651245803, + "Guest_LM_Mander_Warrior_A_05": 1651245931, + "Guest_LM_Mander_Mummy_B_01": 1844111521, + "Guest_LM_Mander_Hero_B_01": 865113284, + "MNT_HolidayHippogriff": 938892112, + "MNT_Sabertooth_Ice": 1870381696, + "PP_FenrisWolf_Bantam": 776647759, + "MNT_JetPack": 1986300552, + "MNT_Scooter_F": 1005560708, + "PP_FossaKitten_A": 431748212, + "PP_Elfvis": 147991405, + "Guest_LM_Chicken_Hero_A_01": 1308728300, + "Guest_LM_Horse_Explorer_A_01": 434405482, + "Guest_LM_Duck_HeroineF_A_01": 133199186, + "Guest_LM_Crane_Hero_A_01": 204272548, + "Guest_LM_Deer_HeroineF_A_01": 1800374959, + "Guest_LM_Deer_Hero_A_01": 223109503, + "Guest_LM_Dog_Hero_A_01": 1434615064, + "PP_YearTiger": 777048708, + "MNT_Barrel": 3576425, + "MNT_Krampus": 404117611, + "PP_ChineseTigerCub": 1256032005, + "PP_Lemur": 565774155, + "PP_Robot": 1089075331, + "PP_Capybara": 451970762, + "Guest_LM_Ghoul_Base_A_01": 1822415945, + "Guest_LM_Lemur_HierarchF_H_03": 231549827, + "Guest_LM_Ghoul_Base_A_02": 1820843081, + "Guest_LM_Ghoul_Base_A_03": 1821367369, + "MNT_SpringSoF2022": 1685679511, + "MNT_WarElephant": 875015497, + "PP_Strix": 514230046, + "MNT_Beachball": 791896033, + "MNT_Blank": 633398131, + "MNT_CardboardFlier": 1646636689, + "MNT_LochMonster": 879660722, + "Transformation_BG_Krok_Death": 1395067182, + "Transformation_BG_Draconian_Fire": 1551581732, + "PP_Scotty": 1708580475, + "Guest_KR_Mice_Knight_A": 480101508, + "PP_Peacock": 1178721112, + "MNT_PoodleMoth": 975420235, + "PP_Hummingbird": 624666906, + "PP_WolfWarrior_Myth": 470737416, + "Guest_HG_UFD_Ghost_QueenF_A_100": 795323059, + "Guest_HG_UFD_Ghost_QueenF_A_50": 728230579, + "Guest_HG_UFD_Pirate_UndeadHighland_A_Balance_150": 201145133, + "Guest_HG_UFD_Pirate_UndeadHighland_A_Balance_100": 201144941, + "Guest_HG_UFD_Pirate_UndeadHighland_A_Balance_50": 201177701, + "Guest_HG_UFD_Pirate_UndeadHighland_A_Star_150": 1329885920, + "Guest_HG_UFD_Pirate_UndeadHighland_A_Star_100": 1304720096, + "Guest_HG_UFD_Pirate_UndeadHighland_A_Star_50": 1305768671, + "Guest_HG_UFD_Pirate_UndeadHighland_A_Shadow_150": 1263689971, + "Guest_HG_UFD_Pirate_UndeadHighland_A_Shadow_100": 1263689977, + "Guest_HG_UFD_Pirate_UndeadHighland_A_Shadow_50": 189949177, + "Guest_HG_UFD_Kelpie_Warrior_A_150": 54296095, + "Guest_HG_UFD_Kelpie_Warrior_A_100": 725384735, + "Guest_HG_UFD_Kelpie_Warrior_A_50": 708607503, + "Guest_HG_UFD_Pirate_UndeadHighland_B_150": 1099317831, + "Guest_HG_UFD_Pirate_UndeadHighland_B_100": 25576008, + "Guest_HG_UFD_Pirate_UndeadHighland_B_50": 159793864, + "Guest_HG_UFD_Ghost_QueenF_A_150": 795716275, + "PP_SpiderMinion": 557357331, + "MNT_Vines_Rainbow": 1587180338, + "MNT_YoungDrake": 1279496198, + "PP_Pet_Coconut": 444388490, + "DragonKI": 1490194214, + "PP_Sharkfish": 601628284, + "PP_MimicCake": 48071878, + "Guest_AQ-Bronze-Eagle": 375279744, + "Guest_Spider-Brown-L26": 2128680185, + "Guest_KR_Spider_Giant_D": 744401035, + "Guest_Wizard-Female-Band-Blue-R8": 1447486557, + "Guest_CC_Human_DSCrusaderF_A_01": 726538068, + "Guest_WC_Scarecrow_A_01": 867491011, + "Guest_WC_Banshee_A_01": 1433786463, + "Guest_WC_LostSoul_A_01": 796936146, + "PP_Fairy_Myth": 1117624344, + "PP_SpriteDark_Myth": 1884257976, + "BG_CyclopsLife_A": 944091673, + "Transformation_BG_NinjaPig_Storm": 2005137181, + "Transformation_BG_Fairy_Myth": 1880704188, + "Transformation_BG_Cyclops_Life": 638936708, + "Guest_AQ-Eagle-Praetorian": 1988013806, + "Guest_KM_BabyCarrot_A_01": 766239512, + "Guest_G14-DM-Gargoyle": 282898047, + "Guest_MR_Durvish_Sergeant_A_Boss_01": 1532609325, + "Guest_Cyclops-RedHelmet-KTBoss-L28": 2072371506, + "Guest_EM_Pig_Singer_A_01": 698597069, + "Guest_EM_Pig_Captain_A": 977505995, + "Guest_EM_Pig_Crewman_A": 465576459, + "PP_ChipmunkConductor": 1089819900, + "PP_LuckyCat": 1109326826, + "MNT_ImpCar": 1736092191, + "MNT_Book": 1547655078, + "MNT_JackoLantern": 649919658, + "MNT_Zheng": 742453108, + "MNT_Train": 413197899, + "MNT_Cerberus": 552686313, + "PP_Coconut": 1122741587, + "Transformation_Statue": 1153168084, + "Transformation_Nullity": 622504394, + "PP_Irk": 1825277392, + "Guest_Wyrmling-Fire-R8-1": 531485009, + "MNT_WolfLowPoly_A": 1947890962, + "MNT_WolfLowPoly_B": 1947825426, + "Transformation_BG_RatThief_Fire": 1169330235, + "Transformation_BG_WolfWarrior_Death": 159966683, + "Transformation_BG_Minotaur_Balance": 657855108, + "Transformation_BG_Draconian_Ice": 1907339814, + "Transformation_BG_Colossus_Myth": 1305894338, + "Transformation_NV_Penguin": 1757096851, + "Transformation_NV_Unicorn": 60447768, + "Transformation_NV_Monkey": 1379873688, + "Transformation_NV_Dog": 1961288968, + "PP_Wolf_Storm": 455227171, + "PP_WoodDuck": 1680912895, + "MNT_RockingHorse": 1205280059, + "MNT_SOF2022_Car": 219868812, + "PP_Buffaloon": 796152873, + "MNT_Steamboat": 1969530127, + "MNT_FelizNavidog": 847046394, + "PP_Mustache": 1571079379, + "Guest_DD-DS01-Skeleton-Pirate-20": 226826848, + "Guest_DD-DS01-Skeleton-Pirate-40": 201661024, + "Guest_DD-DS01-Skeleton-Pirate-60": 210049632, + "Guest_DD-DS01-Skeleton-Pirate-80": 251992672, + "Guest_DD-DS01-Skeleton-Pirate": 1994450336, + "Guest_DD-DS01-Shadow-Minion-Fire": 1074864956, + "Guest_DD-DS01-Shadow-Minion-Ice": 1841681214, + "Guest_DD-DS01-Shadow-Minion-Fire-20": 1074880881, + "Guest_DD-DS01-Shadow-Minion-Fire-40": 1074880945, + "Guest_DD-DS01-Shadow-Minion-Ice-20": 96850220, + "Guest_DD-DS01-Shadow-Minion-Ice-40": 96850218, + "Guest_DD-DS01-Shadow-Minion-Fire-60": 1074881009, + "Guest_DD-DS01-Shadow-Minion-Ice-60": 96850216, + "Guest_DD-DS01-Shadow-Minion-Fire-80": 1074880561, + "Guest_DD-DS01-Shadow-Minion-Ice-80": 96850214, + "Guest_SC-SpectreOfB-1": 1471950935, + "Guest_SC-SpectreOfB-20": 1471942759, + "Guest_SC-SpectreOfB-40": 1471942663, + "Guest_SC-SpectreOfB-60": 1471942695, + "Guest_SC-SpectreOfB-80": 1471942855, + "Guest_KH-Skeleton-Ice-60": 2108358962, + "Guest_KH-Skeleton-Ice-40": 2108391730, + "Guest_KH-Skeleton-Ice-20": 2108293426, + "Guest_KH-Skeleton-Ice-1": 2099953970, + "Guest_KH-Skeleton-Ice-80": 2108195122, + "Guest_KH-Undead-Caster-60": 1662604496, + "Guest_KH-Undead-Caster-40": 1661555920, + "Guest_KH-Undead-Caster-20": 1664701648, + "Guest_KH-Undead-Caster-1": 1931564240, + "Guest_KH-Undead-Caster-80": 1667847376, + "Guest_DD-PA01-DeadBeets": 1664999367, + "Guest_DD-PA01-DeadBeets-20": 1901453253, + "Guest_DD-PA01-DeadBeets-40": 2002116549, + "Guest_DD-PA01-DeadBeets-60": 1968562117, + "Guest_DD-PA01-DeadBeets-80": 2069225413, + "Guest_DD-PA01-Disparagus": 1865816461, + "Guest_DD-PA01-Disparagus-20": 573970895, + "Guest_DD-PA01-Disparagus-40": 499770929, + "Guest_DD-PA01-Disparagus-60": 1573512753, + "Guest_DD-PA01-Disparagus-80": 1647712718, + "Guest_DD-PA01-MeanestFlyTrap": 2001546861, + "Guest_DD-PA01-MeanestFlyTrap-20": 1936326253, + "Guest_DD-PA01-MeanestFlyTrap-40": 1936064109, + "Guest_DD-PA01-MeanestFlyTrap-60": 1935801965, + "Guest_DD-PA01-MeanestFlyTrap-80": 1937636973, + "Guest_HG-MD-MacDeath-20": 182639104, + "Guest_HG-MD-MacDeath-40": 182638080, + "Guest_HG-MD-MacDeath-60": 182637056, + "Guest_HG-MD-MacDeath-80": 182636032, + "Guest_HG-MD-MacDeath-100": 174252032, + "Guest_HG-MD-MacDeath-130": 174202880, + "Guest_HG_Sinbad_Skeleton_25": 494617874, + "Guest_HG_Sinbad_Skeleton_50": 42253050, + "Guest_HG_Sinbad_Skeleton_75": 1115994862, + "Guest_HG_Sinbad_Skeleton_100": 2105232646, + "Guest_HG_Sinbad_Skeleton_130": 2105232650, + "Guest_HG_Sinbad_Skeleton_25_02": 492722834, + "Guest_HG_Sinbad_Skeleton_50_02": 44148090, + "Guest_HG_Sinbad_Skeleton_75_02": 1117889902, + "Guest_HG_Sinbad_Skeleton_100_02": 2044247302, + "Guest_HG_Sinbad_Skeleton_130_02": 2044247306, + "Guest_DD-AV01-WyrmBoss": 1648677986, + "Guest_DD-AV01-WyrmBoss-20": 1926730850, + "Guest_DD-AV01-WyrmBoss-40": 1927779426, + "Guest_DD-AV01-WyrmBoss-60": 1928828002, + "Guest_DD-AV01-WyrmBoss-80": 1921487970, + "Guest_RH-Wyrm-Boss-01": 1027277645, + "Guest_RH-Wyrm-Boss-20": 1027277660, + "Guest_RH-Wyrm-Boss-40": 1027277663, + "Guest_RH-Wyrm-Boss-60": 1027277662, + "Guest_RH-Wyrm-Boss-80": 1027277657, + "Guest_HG_Sinbad_Wyrm_25": 1101443356, + "Guest_HG_Sinbad_Wyrm_50": 1101528860, + "Guest_HG_Sinbad_Wyrm_75": 1101445916, + "Guest_HG_Sinbad_Wyrm_100": 1093138204, + "Guest_HG_Sinbad_Wyrm_130": 1093089052, + "Guest_KH-Treant-1": 2001244331, + "Guest_KH-Treant-60": 1968148651, + "Guest_KH-Treant-40": 1968017579, + "Guest_KH-Treant-20": 1967886507, + "Guest_KH-Treant-80": 1967231147, + "Guest_DD-PA01-ForestGrump": 1969685870, + "Guest_DD-PA01-ForestGrump-20": 714666713, + "Guest_DD-PA01-ForestGrump-40": 714666689, + "Guest_DD-PA01-ForestGrump-60": 714666697, + "Guest_DD-PA01-ForestGrump-80": 714666737, + "Guest_DD-PA01-ForestNymphs": 227087348, + "Guest_DD-PA01-ForestNymphs-20": 227023552, + "Guest_DD-PA01-ForestNymphs-60": 227023040, + "Guest_DD-PA01-ForestNymphs-80": 227024832, + "Guest_SC-Pig-BalanceWizardA-1": 475456968, + "Guest_SC-Pig-BalanceWizardA-20": 477550024, + "Guest_SC-Pig-BalanceWizardA-40": 477541832, + "Guest_SC-Pig-BalanceWizardA-60": 477533640, + "Guest_SC-Pig-BalanceWizardA-80": 477525448, + "Guest_SC-Pig-BalanceWizardB-1": 475456964, + "Guest_SC-Pig-BalanceWizardB-20": 477550020, + "Guest_SC-Pig-BalanceWizardB-40": 477541828, + "Guest_SC-Pig-BalanceWizardB-60": 477533636, + "Guest_SC-Pig-BalanceWizardB-80": 477525444, + "Guest_SC-Pig-BalanceWizardC-1": 475456960, + "Guest_SC-Pig-BalanceWizardC-20": 477550016, + "Guest_SC-Pig-FireWizard-1": 2048176291, + "Guest_SC-Pig-FireWizard-20": 2031399073, + "Guest_SC-Pig-FireWizard-40": 2132062369, + "Guest_SC-Pig-FireWizard-60": 2098507937, + "Guest_SC-Pig-FireWizard-80": 1930735777, + "Guest_SC-Pig-IceWizardF-1": 1178687744, + "Guest_SC-Pig-IceWizardF-20": 1161910526, + "Guest_SC-Pig-IceWizardF-40": 1128356094, + "Guest_SC-Pig-IceWizardF-60": 1094801662, + "Guest_SC-Pig-IceWizardF-80": 1329682686, + "Guest_SC-Pig-MythWizard-1": 2048492725, + "Guest_SC-Pig-MythWizard-20": 2031715511, + "Guest_SC-Pig-MythWizard-40": 2132378807, + "Guest_SC-Pig-MythWizard-60": 2098824375, + "Guest_SC-Pig-MythWizard-80": 1931052215, + "Guest_SC-Pig-StormWizardF-1": 1743849420, + "Guest_SC-Pig-StormWizardF-20": 1743851464, + "Guest_SC-Pig-StormWizardF-40": 1743851488, + "Guest_SC-Pig-StormWizardF-60": 1743851480, + "Guest_SC-Pig-StormWizardF-80": 1743851504, + "Guest_KH-Pig-Bandit-Lord-1": 1080496628, + "Guest_KH-Pig-Bandit-Lord-20": 543625652, + "Guest_KH-Pig-Bandit-Lord-40": 530116172, + "Guest_KH-Pig-Bandit-Lord-60": 1603857996, + "Guest_KH-Pig-Bandit-Lord-80": 1617367475, + "Guest_KH-Pig-Bandit-Ninja-1": 1945100907, + "Guest_KH-Pig-Bandit-Ninja-20": 1945102951, + "Guest_KH-Pig-Bandit-Ninja-40": 1945102975, + "Guest_KH-Pig-Bandit-Ninja-60": 1945102967, + "Guest_KH-Pig-Bandit-Ninja-80": 1945102927, + "Guest_KH-Pig-War-Caster-1": 656859765, + "Guest_KH-Pig-War-Caster-20": 606528119, + "Guest_KH-Pig-War-Caster-40": 572973687, + "Guest_KH-Pig-War-Caster-60": 539419255, + "Guest_KH-Pig-War-Caster-80": 774300279, + "Guest_KH-Pig-War-Warrior-Boss-1": 16342355, + "Guest_KH-Pig-War-Warrior-Boss-20": 2143724205, + "Guest_KH-Pig-War-Warrior-Boss-40": 2118558381, + "Guest_KH-Pig-War-Warrior-Boss-60": 2126946989, + "Guest_KH-Pig-War-Warrior-Boss-80": 2101781165, + "Guest_SC-Pig-BalanceWizardC-40": 477541824, + "Guest_SC-Pig-BalanceWizardC-60": 477533632, + "Guest_SC-Pig-BalanceWizardC-80": 477525440, + "Guest_KH-Helephant-Death-20": 1109389719, + "Guest_KH-Helephant-Death-40": 2111835753, + "Guest_KH-Helephant-Death-60": 1038093929, + "Guest_KH-Helephant-Death-80": 35647896, + "Guest_KH-GreyOgre-Spider-1": 356368404, + "Guest_KH-GreyOgre-Spider-20": 1966981204, + "Guest_KH-GreyOgre-Spider-40": 1254244268, + "Guest_KH-GreyOgre-Spider-60": 180502444, + "Guest_KH-GreyOgre-Spider-80": 893239379, + "Guest_HG_Sinbad_Colossus_25": 1190802829, + "Guest_HG_Sinbad_Colossus_50": 1493551719, + "Guest_HG_Sinbad_Colossus_75": 419809907, + "Guest_HG_Sinbad_Colossus_100": 653933977, + "Guest_HG_Sinbad_Colossus_130": 653933973, + "Guest_NV_Dino_AberrantUndead_A_01": 2035087398, + "Guest_NV_Hellephant_Aberrant_A_01": 989522333, + "Guest_NV_Hellephant_Aberrant_A_02": 989522334, + "Guest_NV_BananaSpider_Base_A_01": 1585810541, + "Guest_NV_BananaSpider_Base_A_02": 1581616237, + "Guest_NV_BananaSpider_Base_A_03": 1577421933, + "Guest_NV_BananaSpider_Base_A_04": 1606782061, + "Guest_NV_BananaSpider_Base_A_05": 1602587757, + "Guest_NV_Wyrm_Aberrant_A_01": 16108415, + "Guest_NV_Monkey_Zombie_A_01": 1854775300, + "Guest_NV_Monkey_Zombie_A_02": 1854775304, + "Guest_NV_Monkey_Zombie_A_03": 1854775308, + "Guest_NV_Monkey_Zombie_A_04": 1854775312, + "MNT_Flag_Monster": 867940056, + "Guest_SKB_WY_DarkBramble_A_30": 2046798767, + "Guest_SKB_WY_DarkBramble_A_50": 2046797999, + "Guest_SKB_WY_DarkBramble_A_100": 2044701359, + "Guest_SKB_WY_DarkBramble_A_150": 2044721839, + "Guest_SKB_GH_Boar_A_30": 1547921275, + "Guest_SKB_WC_SpiritIgnorance_A_50": 1488876986, + "Guest_SKB_WC_SpiritIgnorance_A_100": 2025748410, + "Guest_SKB_WC_SpiritIgnorance_A_150": 2025748413, + "Guest_SKB_DS_Loremaster_A_50": 527751539, + "Guest_SKB_DS_Loremaster_A_100": 527817059, + "Guest_SKB_DS_Loremaster_A_150": 527817699, + "Guest_SKB_CL_Dan_A_50": 637418706, + "Guest_SKB_CL_Dan_A_60": 1510064941, + "Guest_SKB_CL_Dan_A_100": 637410512, + "Guest_SKB_CL_Dan_A_150": 637410432, + "Guest_SKB_AV_Spectre_A_50": 2104631195, + "Guest_SKB_AV_Spectre_A_100": 2102534041, + "Guest_SKB_AV_Spectre_A_150": 2018647961, + "Guest_SKB_MS_Samoorai_A_50": 2029641915, + "Guest_SKB_MS_Samoorai_A_100": 2096750843, + "Guest_SKB_MS_Samoorai_A_150": 587603717, + "Transformation_BG_Krok_StromTemplate": 1317694546, + "PP_ChineseRabbit": 382941643, + "PP_ParadeElf": 1036247808, + "MNT_HeartSwarm": 918199310, + "MNT_SpringSOF2023": 1417178519, + "Transformation_BG_Elf_Death2Template": 1606653101, + "MNT_GummyBunny_D": 775840224, + "Transformation_BG_Krok_Life2Template": 747486212, + "PP_Flame": 959186933, + "PP_YachtRock": 1500927358, + "PP_PirateYachtRock": 1227549100, + "PP_ChickenMonster": 1845706534, + "PP_SnowHoppers_B": 1496460038, + "PP_SnowHoppers_C": 1496457990, + "MNT_Oarfish": 29720265, + "PP_RingTailedCat": 993143427, + "MNT_Fanboat": 19347694, + "MNT_MiniSub": 298697910, + "PP_DumboOctopus": 966435639, + "PP_Glowbug_Balance": 1405529577, + "PP_Glowbug_Death": 405117107, + "PP_Glowbug_Fire": 651698987, + "PP_Glowbug_Ice": 2124926395, + "PP_Glowbug_Life": 601367299, + "PP_Glowbug_Myth": 592978024, + "PP_Glowbug_Storm": 61190446, + "PP_DumboOctopus_B": 968448823, + "PP_DumboOctopus_C": 968383287, + "PP_BananaSpider_01": 1074383522, + "PP_BananaSpider_02": 1080674978, + "PP_BananaSpider_03": 1078577826, + "Guest_HG_NM_BeardDragon_Base_C_01": 82913785, + "Guest_HG_NM_BeardDragon_Base_C_02": 82913786, + "Guest_HG_NM_BeardDragon_Base_C_03": 82913787, + "Guest_HG_NM_Glowbug_Base_C_01": 544959703, + "Guest_HG_NM_Glowbug_Base_C_02": 544955607, + "Guest_HG_NM_Glowbug_Base_C_03": 544951511, + "Guest_HG_NM_Glowbug_Base_C_04": 544947415, + "Guest_HG_NM_Glowbug_Base_C_05": 544943319, + "Guest_HG_NM_Glowbug_Base_C_06": 544939223, + "Guest_HG_NM_Glowbug_Base_C_07": 544935127, + "MNT_BouquetofFlowers": 1511180560, + "PP_Piggle_Rainbow": 91081383, + "MNT_Sabertooth_FlameSaber": 1949516909, + "Guest_HG_NM_BeardDragon_Base_A_01": 83175929, + "Guest_HG_NM_BeardDragon_Base_A_02": 83175930, + "Guest_HG_NM_BeardDragon_Base_A_03": 83175931, + "Guest_HG_NM_BeardDragon_Base_B_01": 83044857, + "Guest_HG_NM_BeardDragon_Base_B_02": 83044858, + "Guest_HG_NM_BeardDragon_Base_B_03": 83044859, + "Guest_HG_NM_Glowbug_Base_B_01": 8088791, + "Guest_HG_NM_Glowbug_Base_B_02": 8084695, + "Guest_HG_NM_Glowbug_Base_B_03": 8080599, + "Guest_HG_NM_Glowbug_Base_B_04": 8076503, + "Guest_HG_NM_Glowbug_Base_B_05": 8072407, + "Guest_HG_NM_Glowbug_Base_B_06": 8068311, + "Guest_HG_NM_Glowbug_Base_B_07": 8064215, + "Guest_HG_NM_Glowbug_Base_A_01": 1618701527, + "Guest_HG_NM_Glowbug_Base_A_02": 1618697431, + "Guest_HG_NM_Glowbug_Base_A_03": 1618693335, + "Guest_HG_NM_Glowbug_Base_A_04": 1618689239, + "Guest_HG_NM_Glowbug_Base_A_05": 1618685143, + "Guest_HG_NM_Glowbug_Base_A_06": 1618681047, + "Guest_HG_NM_Glowbug_Base_A_07": 1618676951, + "MNT_SummerSOF2023": 1636120912, + "PP_Cyclops_Fire": 7821755, + "PP_Death_Elf": 1535744155, + "PP_Newt": 1438123483, + "PP_Echidna": 735439358, + "MNT_Wombat": 580544786, + "Transformation_BG_NinjaPig_Balance": 1799661438, + "Transformation_BG_Cyclops_Ice": 647975824, + "Transformation_BG_Minotaur_Storm": 1005667041, + "Transformation_GR_Parasaur_Priest_Ice": 1101466351, + "Transformation_GR_Parasaur_Priest_Fire": 892193041, + "Transformation_GR_Parasaur_Priest_Storm": 1525882116, + "Transformation_GR_Parasaur_Priest_Balance": 1127637476, + "Guest_GR_AZ_Parasaur_Undead_B_01": 322587487, + "MNT_WitchCat": 1167097888, + "PP_RolyPoly": 578538330, + "PP_Capybara_B": 628131532, + "MNT_OutbackTruck": 1815527801, + "PP_PoodleSailor": 2137704795, + "MNT_PolarianCannon": 2103490826, + "PP_TazmanianDevil": 1773548765, + "Guest_SKB_AZ_Ixcax_A_100": 556560994, + "Guest_SKB_AZ_Ixcax_A_150": 556610146, + "Guest_SKB_AZ_Ixcax_A_50": 564951650, + "MNT_GhoulsShovel": 2035610946, + "PP_CrystalBdayDragon": 1897078804, + "PP_SunGobblerBall": 1522469440, + "PP_Sun_GreenGobbler": 1337690394, + "MNT_2P_AutumnTreant": 1063435527, + "PP_AutumnTreant": 561077291, + "MNT_FlyingMonkey": 490807393, + "PP_BabyPlantMonster": 2076646587, + "MNT_PlantCreature_A": 1802823265, + "Transformation_BG_Fairy_Fire": 2065252898, + "Transformation_BG_Krok_Myth": 277926564, + "Transformation_BG_RatThief_Life": 1167758651, + "Transformation_BG_Elf_Balance": 1628238937, + "Transformation_BG_Colossus_Death": 184392004, + "Transformation_FortressPod": 139738335, + "P_Wombat_POLYMORPH": 1132264953, + "PP_SharkWobbegong": 1994247222, + "PP_ChineseNYDragon": 1126999021, + "PP_JingleBellRock": 1076037919, + "PP_Krok_Mummy_Myth": 438487583, + "PP_Cyclops_Ice": 1476966187, + "MNT_OutbackTruckB": 1813299577, + "MNT_EvilSnowmanBall": 758818712, + "MNT_ThanksgivingGobbler": 1760011910, + "Guest_WL_Ghost_LostSoul_A_01": 1224111704, + "Guest_WL_Kangaroo_Drover_F_01": 2025562931, + "Guest_WL_Spider_WarriorMage_C_01": 1296557888, + "Guest_WL_Spider_WarriorMage_C_02": 1430775616, + "Guest_WL_Spider_WarriorMage_C_03": 1564993344, + "Guest_WL_Spider_WarriorMage_C_04": 1699211072, + "Guest_WL_Spider_WarriorMage_C_05": 1833428800, + "Guest_WL_Spider_WarriorMage_C_06": 1967646528, + "Guest_WL_Spider_WarriorMage_C_07": 2101864256, + "Guest_SKB_KR_Lightbane_A_100": 837930677, + "Guest_SKB_KR_Lightbane_A_160": 837930669, + "Guest_SKB_KR_Lightbane_A_50": 1309555019, + "Transformation_WL_Phantasmanian_DevilTemplate": 384891502, + "MNT_2P_LeaflessTreant": 623083386, + "PP_Minotaur_Ice": 700151737, + "MNT_Scooter_G": 737125252, + "Guest_WL_Frog_Owner_B_01": 767864686, + "MNT_SilentKnight": 646654812, + "Guest_WL_TRex_Base_A_01": 1842562033, + "Guest_WL_TRex_Base_B_01": 304921616, + "PP_Groundhog": 108643243, + "Guest_NV_Unicorn_Guard_C_04": 1845621, + "MNT_EmuPunk": 647315080, + "MNT_HeartBalloon": 798826551, + "PP_ValentineHoppers": 968693964, + "MNT_SpringSOF2024_Heckhound": 453640548, + "Guest_AQ-Centaur-Arion": 1856508139, + "Guest_AQ-Centaur-Artemis": 333294011, + "Guest_AQ-Horse-Sea": 724896200, + "Guest_KR_Horse_Warlord_A_Bossfight": 1302284326, + "Guest_KR_Horse_Warlord_A_BossfightSP": 1300726822, + "Guest_KR_Zebra_Thrall_A": 1250265667, + "Guest_KR_Zebra_Thrall_A_Boss_Minion": 345677011, + "Guest_KR_Zebra_Thrall_A_Gallery": 1520303483, + "Guest_KH-Gray-Horse-40": 1802231403, + "Guest_KH-Gray-Horse-20": 1802231307, + "Guest_G14-BP-Unicorn_Fencer_Boss": 1602044152, + "Guest_Horse-Merc-Brown-L37": 1831175255, + "Guest_Horse-Merc-Tan-L39": 1363854837, + "Guest_Horse-Merc-Tan-L39-1": 2085275127, + "Guest_Horse-Merc-Gray-MSBoss-L39": 1863452041, + "Guest_Horse-Merc-Gray-L39": 2039135564, + "Guest_Horse-Merc-Tan-L38": 1363330549, + "Guest_WC_Horse_Mercenary_Roberto": 891924774, + "Guest_ZF-Nathi-Yellowstripe-R11": 1505157721, + "Guest_ZF-TseTse-Main-R11-Boss": 114927854, + "Guest_ZF-TseTse-Elephant-R11": 894147273, + "Guest_ZF-Zebra-Impi-Raider-R11": 1378242919, + "Guest_ZF-Zebra-Warrior-Male-R10-1": 1791906265, + "Guest_ZF-Zebra-Senzan-Zebu-R10-Boss": 373712721, + "Guest_ZF-Zebra-Shaka-Zebu-R10-Boss": 662142985, + "Guest_ZF-Zebra-Warrior-Female-R10-02": 1507835670, + "Guest_ZF-Zebra-Warrior-Male-R10": 47075786, + "Guest_ZF-Zebra-Warrior-Male-R10-02": 1791906714, + "Guest_ZF-Zebra-Warrior-Male-R10-03": 1791906746, + "Guest_ZF-Zebra-Warrior-Male-R10-05": 1791906682, + "Guest_ZF-Zebra-Warrior-Male-R10-2": 1791906268, + "Guest_ZF_Zebra_Spectral_Guardian-R11": 431970996, + "Guest_CC_Horse_Apoc_A_01": 644668374, + "Guest_CC_Horse_Apoc_B_01": 644668390, + "Guest_CC_Horse_Apoc_C_01": 644668406, + "Guest_CC_Horse_Apoc_D_01": 644668294, + "Guest_CC_Horse_Apoc_D_02": 645192582, + "Guest_CC_Unicorn_CorsairF_B_01": 1378532506, + "Guest_CC_Unicorn_Duelist_B_01": 64891542, + "Guest_CC_Unicorn_Guard_B_01": 1075063242, + "Guest_CC_Unicorn_Guard_B_02": 1075063238, + "Guest_CC_Unicorn_Guard_B_03": 1075063234, + "Guest_NV_Horse_HordeSoldier_A_01": 504396960, + "Guest_NV_Horse_HordeSoldier_A_02": 101743776, + "Guest_NV_Horse_HordeOfficer_A_01": 343600992, + "Guest_NV_Horse_HordeSoldier_A_03": 235961504, + "Guest_NV_Horse_HordeOfficer_A_02": 209383264, + "Guest_NV_Horse_AberrantTungAk_A_01": 952263441, + "Guest_NV_Horse_AberrantTungAk_A_02": 952263537, + "Guest_NV_Horse_TungAk_B_01": 1194718672, + "Guest_NV_Horse_TungAk_B_02": 657847760, + "Guest_NV_Horse_HordeOfficer_B_01": 343596896, + "Guest_NV_Horse_HordeOfficer_B_02": 209379168, + "Guest_NV_Horse_TungAk_A_01": 1194669520, + "Guest_NV_Unicorn_Guard_C_01": 1845601, + "Guest_NV_Unicorn_Guard_A_01": 797025, + "Guest_NV_Unicorn_AberrantGuard_A_01": 739851573, + "Guest_NV_Unicorn_Guard_C_02": 1845613, + "Guest_NV_Unicorn_Guard_C_03": 1845609, + "Guest_NV_Unicorn_AberrantGuard_A_02": 739848501, + "Guest_NV_Unicorn_Guard_A_02": 797037, + "Guest_NV_Unicorn_AberrantGuard_A_03": 739849525, + "Guest_NV_Unicorn_AberrantGuard_A_04": 739846453, + "Guest_NV_Horse_HordeOfficer_A_03": 75165536, + "Guest_NV_Horse_HordeSoldier_A_04": 907050144, + "Guest_NV_Horse_HordeSoldier_A_05": 1041267872, + "Guest_NV_Horse_HordeSoldier_C_01": 504388768, + "Guest_HG_TRAIN_Horse_MustangFencerF_A_Balance_50": 871182987, + "Guest_HG_TRAIN_Horse_MustangFencerF_A_Balance_75": 871176715, + "Guest_HG_TRAIN_Horse_MustangFencerF_A_Life_100": 886489645, + "Guest_HG_TRAIN_Horse_MustangFencerF_A_Balance_25": 871177035, + "Guest_HG_TRAIN_Horse_MustangFencerF_A_Balance_100": 872231819, + "Guest_HG_TRAIN_Horse_MustangFencerF_A_Life_140": 1960231469, + "Guest_HG_TRAIN_Horse_MustangFencerF_B_100": 2089957067, + "Guest_HG_TRAIN_Horse_MustangFencerF_A_Life_25": 1700184589, + "Guest_HG_TRAIN_Horse_MustangFencerF_A_Life_50": 920044045, + "Guest_HG_TRAIN_Horse_MustangFencerF_A_Life_75": 1742127629, + "Guest_HG_TRAIN_Horse_MustangFencerF_A_Balance_140": 872223627, + "Guest_HG_TRAIN_Horse_MustangFencerF_B_50": 2089952970, + "Guest_HG_TRAIN_Horse_MustangFencerF_B_75": 57530654, + "Guest_HG_TRAIN_Horse_MustangFencerF_B_140": 2089957099, + "Guest_HG_TRAIN_Horse_MustangFencerF_B_25": 1131272477, + "Guest_LM_Horse_Explorer_A_01_Hard": 1711837140, + "Guest_WL_Unicorn_Guard_A_01": 1074538935, + "Guest_WL_Unicorn_CorsairF_E_01": 1378532603, + "Guest_WL_Unicorn_Warlord_A_01": 1321310496, + "Guest_KH-Gray-Horse-1": 1802239547, + "Guest_KH-Gray-Horse-60": 1802231371, + "Guest_KH-Gray-Horse-80": 1802231467, + "Transformation_BG_NinjaPig_Ice": 186026527, + "Transformation_BG_Cyclops_Storm": 897316984, + "PP_MinotaurBalance": 1344665951, + "PP_OrthusMoon": 1804503950, + "PP_CoolPineapple": 1149318906, + "PP_TwinkleStars": 766378011, + "PP_Scroll": 1613313091, + "PP_Colossus_Death": 40713075, + "PP_ColossusDeath": 530964029, + "PP_KILiveRock": 1975550570, + "MNT_Outrigger": 1417937299, + "MNT_BookWyrm": 2080129190, + "MNT_RacingSnail": 1996220963, + "MNT_UmbrellaCloud": 145762615, + "PP_PropellerCat": 2094718580, + "MNT_TRex_Shirt": 586746001, + "MNT_Swarm_Bee": 1625228695, + "MNT__CelestialMoon": 968360256, + "Guest_ME_Sinbad_IronSultan_150": 2001676223, + "Guest_ME_Sinbad_Cyclops_150": 1968943689, + "Guest_ME_Sinbad_Skeleton_150": 1031490819, + "Guest_ME_Sinbad_Colossus_150": 1727675806, + "Guest_ME_Sinbad_Skeleton_150_02": 970505475, + "Guest_ME_Sinbad_Wyrm_150": 19314443, + "Guest_ZF-Zebra-Inzinzebu-Bandit-R11": 430262550, + "Guest_ZF-Zebra-Warrior-Male-R10-04": 1791906650, + "PP_TwinkleStars_02": 805304347, + "PP_TwinkleStars_03": 803207195, + "PP_TwinkleStars_01": 799012891, + "Transformation_BodleianHarrow": 609627870, + "Guest_HG_Gryphon_OwlStatue_A_01_L170": 77756046, + "Guest_HG_Gryphon_OwlStatue_A_02_L170": 73561742, + "Guest_HG_Gryphon_OwlStatue_A_01_L100": 77752974, + "Guest_HG_Gryphon_OwlStatue_A_02_L100": 73558670, + "Guest_HG_Gryphon_OwlStatue_A_01_L50": 78277134, + "Guest_HG_Gryphon_OwlStatue_A_02_L50": 74082830, + "MNT_SummerSOF2024_JudgementWings": 1078163967, + "MNT_Pegasus_E": 131704054, + "MNT_PolarisHero": 665176426, + "PP_Duckana": 1128961578, + "PP_QueenBee": 833291695, + "Transformation_BG_Draconian_Balance": 2078940682, + "Transformation_BG_WolfWarrior_Fire": 1762248682, + "Transformation_BG_Minotaur_Death": 309090657, + "PP_WolfWarrior_Fire": 685685256, + "PP_WolfWarrior_Death": 1857202724, + "Guest_ME-GTAV01-WyrmBoss-150": 1482208618, + "Guest_ME_SpectreOfB_L150": 684104791, + "Guest_ME_MD_MacDeath_L150": 1128977615, + "Guest_ME_Pig_BalanceWizardA_L150": 959913724, + "Guest_ME_Pig_BalanceWizardB_L150": 959913712, + "Guest_ME_Pig_BalanceWizardC_L150": 959913716, + "Guest_ME_Pig_FireWizard_L150": 964392255, + "Guest_ME_Pig_IceWizardF_L150": 86941026, + "Guest_ME_Pig_MythWizard_L150": 964051241, + "Guest_ME_Pig_StormWizardF_L150": 2016383602, + "Guest_ME_Clock_Clockworker_L150": 1424569772, + "Guest_ME_Clock_ClockworkSpanner_L150": 1966824609, + "Guest_ME_Clock_Lugs_L150": 370290904, + "Guest_ME_Clock_Lucia_L150": 1857768409, + "MNT_EvilChair": 339577702, + "PP_Cyclops_Storm": 621464512, + "PP_Krokomummy_Life": 462432735, + "Transformation_CL_Rematch_Crustacean": 1686865207, + "Transformation_CL_Rematch_Protector": 1893951532, + "Transformation_CL_Rematch_Angler": 120412196, + "Transformation_CL_Rematch_Piscean": 1624106070, + "Transformation_Zebra_Template": 1900548493, + "Transformation_Zebra2_Template": 325099540, + "Transformation_Zebra3_Template": 325099524, + "Transformation_Zebra4_Template": 325099636, + "MNT_SweetSixteenBirthday": 1009398096, + "MNT_2P_TRex_Bones": 1618543266, + "MNT_SpringBumperCar": 1725007788, + "PP_WinterGoblin": 2025052443, + "PP_OnyxAnubis": 1552575189, + "PP_OttomanCat": 223541582, + "MNT_HolidayYeti": 780983974, + "MNT_IceSled": 979912604, + "MNT_TurtleDoves": 1850191638, + "MNT_KrokChariot": 559783620, + "MNT_Mustang": 1775949401, + "MNT_PumpkinBall": 382849054, + "Transformation_BG_Fairy_Storm": 836920873, + "Transformation_BG_Elf_Myth": 1506493664, + "Transformation_NinjaPig_Life": 816802847, + "Transformation_BG_Krok_Fire": 1060580712, + "Transformation_BG_Colossus_Balance": 1067963041, + "Transformation_BG_NinjaPig_Life": 441460895, + "PP_Penguin_03": 1623028104, + "Transformation_Duck_Librarian_B": 864067551, + "Transformation_Duck_Librarian_A": 859873247, + "Transformation_Duck_Adventurer": 194560769, + "Transformation_Gummy_Bunny_C": 1298087941, + "Transformation_Frog_Horned_A": 837201339, + "Transformation_Glowbug_Storm": 2096380446, + "Transformation_Marshmallow_Critter_A": 1036335317, + "Transformation_Snipe_Base_B": 232132109, + "Transformation_Snowball": 915248481, + "Transformation_Wombat_Base": 333435450, + "Transformation_Human_Malistaire": 1414887773, + "Transformation_Morganthe_E": 1745180054, + "Transformation_Spider_Grandfather": 1131773979, + "Transformation_Khrulhu_Dasein_B": 367878762, + "Transformation_Devourer_Base": 698770016, + "Transformation_Alien_Meteor": 638746168, + "Transformation_Nightmare_Malus": 704212821, + "Transformation_Daemon_Personal": 278266463, + "PP_ValentinesDay": 810003364, + "PP_BabyHippo": 422858138, + "PP_Aardwold": 1592150119, + "PP_Aardwold_C": 1902528613, + "MNT_Cobra": 472847981, + "MNT_Serpopard": 1629558909, + "MNT_Serpopard_B": 1629556867, + "MNT_Serpopard_C": 1629556931, + "PP_Fairy_Fire": 1847789544, + "MNT_Mustang_B": 1448793691, + "PP_FireElfMyth": 1933609060, + "MNT_KT-BoatRide": 1560860110, + "MNT_ShadowMagic": 2095978357, + "MNT_MardiGrasFloat_A": 1740674432, + "PP_ChineseNYSnake": 988201940, + "MNT_AnubisDog": 1995079956, + "PP_ShadowImp_A": 1604849432, + "PP_ShadowImp_B": 1604849438, + "PP_ShadowImp_C": 1604849436, + "MNT_ShadowMagic_B": 2093870965, + "MNT_ShadowMagic_C": 2093805429, + "Guest_KT_SE_Tritops_Warrior_I_01": 97516901, + "Guest_KT_SE_DS_Draconian_Model_01": 1916095079, + "Guest_KT_SE_Beetle_Scarab_C_01_L50": 1064004307, + "Guest_KT_SE_Roach_Warrior_C_03": 1872574203, + "Guest_KT_SE_Roach_Warrior_C_04": 1871918843, + "Guest_KT_SE_Roach_Warrior_C_05": 1871787771, + "Guest_KT_SE_Beetle_Scarab_C_01": 1353410759, + "Guest_KT_SE_Mander_Citizen_B_01_L50": 2044509396, + "Guest_KT_SE_Mander_CitizenF_B_01_L50": 164327682, + "Guest_KT_SE_Treant_Tormented_A_01": 1359800879, + "Guest_KT_SE_Treant_Base_A_01": 765512948, + "Guest_KT_SE_Mander_Citizen_F_D_05": 171244620, + "Guest_KT_SE_Mander_CitizenF_D_01": 163791037, + "Guest_KT_SE_Mander_CitizenF_D_02": 298008765, + "Guest_KT_SE_Mander_CitizenF_D_03": 432226493, + "Guest_KT_SE_Mander_CitizenF_D_04": 566444221, + "Guest_KT_SE_Mander_MummyF_A_01": 964349080, + "Guest_KT_SE_Mander_MummyF_A_02": 964480152, + "Guest_KT_SE_MC_Wraith_Model_01": 1101442118, + "Guest_KT_SE_Mander_CitizenF_B_02": 298000573, + "MNT_Wheelbarrow": 614248817, + "MNT_StubbornLlama": 221089074 } }, - "m_alwaysDisplay": { - "type": "bool", - "id": 5, - "offset": 161, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2071781402 - } - } - }, - "1112934182": { - "name": "class CastleMagicSpellTemplate*", - "bases": [ - "SpellTemplate", - "CoreTemplate", - "PropertyClass" - ], - "hash": 1112934182, - "properties": { - "m_behaviors": { - "type": "class BehaviorTemplate*", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1197808594 - }, - "m_name": { - "type": "std::string", - "id": 1, - "offset": 96, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1717359772 - }, - "m_description": { - "type": "std::string", - "id": 2, - "offset": 168, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1649374815 - }, - "m_advancedDescription": { - "type": "std::string", - "id": 3, - "offset": 200, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3465713013 - }, - "m_displayName": { - "type": "std::string", - "id": 4, - "offset": 136, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2446900370 - }, - "m_spellBase": { + "m_badgeTitle": { "type": "std::string", - "id": 5, - "offset": 248, - "flags": 268435463, + "id": 6, + "offset": 440, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2688054198, - "enum_options": { - "__BASECLASS": "CinematicTemplate" - } - }, - "m_effects": { - "type": "class SharedPointer", - "id": 6, - "offset": 280, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 370726379 + "hash": 1783354256 }, - "m_sMagicSchoolName": { - "type": "std::string", + "m_chatPermissions": { + "type": "unsigned int", "id": 7, - "offset": 312, - "flags": 7, + "offset": 360, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2035693400 + "hash": 1848314473 }, - "m_sTypeName": { - "type": "std::string", + "m_pvpIconID": { + "type": "unsigned int", "id": 8, - "offset": 352, - "flags": 7, + "offset": 472, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3580785905 + "hash": 2083838009 }, - "m_trainingCost": { - "type": "int", + "m_localeID": { + "type": "unsigned int", "id": 9, - "offset": 384, - "flags": 7, + "offset": 484, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 982588239 + "hash": 792971274 }, - "m_accuracy": { - "type": "int", + "m_friendlyPlayer": { + "type": "bool", "id": 10, - "offset": 388, - "flags": 7, + "offset": 490, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1636315493 + "hash": 990699901 }, - "m_baseCost": { - "type": "int", + "m_volunteer": { + "type": "bool", "id": 11, - "offset": 232, - "flags": 7, + "offset": 491, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1475151502 + "hash": 1751284471 }, - "m_creditsCost": { - "type": "int", + "m_guildName": { + "type": "unsigned int", "id": 12, - "offset": 236, - "flags": 7, + "offset": 492, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 715313825 + "hash": 778026115 }, - "m_pvpCurrencyCost": { + "m_guildNameLocale": { "type": "int", "id": 13, - "offset": 240, - "flags": 7, + "offset": 496, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 645595444 + "hash": 656991008 }, - "m_pvpTourneyCurrencyCost": { - "type": "int", + "m_overallRating": { + "type": "unsigned int", "id": 14, - "offset": 244, - "flags": 7, + "offset": 544, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 517874954 + "hash": 462138631 }, - "m_boosterPackIcon": { - "type": "std::string", + "m_activeRating": { + "type": "unsigned int", "id": 15, - "offset": 496, - "flags": 131079, + "offset": 548, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3428653697 + "hash": 234391118 }, - "m_validTargetSpells": { + "m_petLevel": { "type": "unsigned int", "id": 16, - "offset": 392, - "flags": 7, - "container": "List", - "dynamic": true, + "offset": 552, + "flags": 31, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 2355782967 + "hash": 2225922446 }, - "m_PvP": { + "m_bHasSocketedJewel": { "type": "bool", "id": 17, - "offset": 408, - "flags": 7, + "offset": 556, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 269492361 + "hash": 103587834 }, - "m_PvE": { + "m_hideName": { "type": "bool", "id": 18, - "offset": 409, - "flags": 7, + "offset": 557, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 269492350 + "hash": 645410894 }, - "m_noPvPEnchant": { - "type": "bool", + "m_templateID": { + "type": "unsigned int", "id": 19, - "offset": 410, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 661581703 - }, - "m_noPvEEnchant": { - "type": "bool", - "id": 20, - "offset": 411, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 10144220 - }, - "m_battlegroundsOnly": { - "type": "bool", - "id": 21, - "offset": 412, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1244782419 - }, - "m_Treasure": { - "type": "bool", - "id": 22, - "offset": 413, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1749096414 - }, - "m_noDiscard": { - "type": "bool", - "id": 23, - "offset": 414, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 565749226 - }, - "m_leavesPlayWhenCast": { - "type": "bool", - "id": 24, - "offset": 532, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 698216294 - }, - "m_imageIndex": { - "type": "int", - "id": 25, - "offset": 416, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1570500405 - }, - "m_imageName": { - "type": "std::string", - "id": 26, - "offset": 424, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2391520543 - }, - "m_cloaked": { - "type": "bool", - "id": 27, - "offset": 489, - "flags": 7, + "offset": 564, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 7349510 - }, - "m_casterInvisible": { - "type": "bool", - "id": 28, - "offset": 490, + "hash": 1286746870 + } + } + }, + "627618564": { + "name": "class RenamePipActorsFromResult*", + "bases": [ + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 627618564, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 310214650 + "hash": 2237098605 }, - "m_adjectives": { + "m_actor": { "type": "std::string", - "id": 29, - "offset": 576, + "id": 1, + "offset": 80, "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2967855037 - }, - "m_spellSourceType": { - "type": "enum SpellTemplate::kSpellSourceType", - "id": 30, - "offset": 528, - "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 156272727, - "enum_options": { - "kCaster": 0, - "kPet": 1, - "kShadowCreature": 2, - "kWeapon": 3, - "kEquipment": 4 - } + "hash": 2285866132 }, - "m_cloakedName": { + "m_newActorName": { "type": "std::string", - "id": 31, - "offset": 536, - "flags": 268435463, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2846679215, - "enum_options": { - "__BASECLASS": "SpellTemplate" - } - }, - "m_purchaseRequirements": { - "type": "class RequirementList*", - "id": 32, - "offset": 608, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3174641793 - }, - "m_displayRequirements": { - "type": "class RequirementList*", - "id": 33, - "offset": 840, + "id": 2, + "offset": 120, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3646782876 - }, - "m_descriptionTrainer": { - "type": "std::string", - "id": 34, - "offset": 616, - "flags": 8388871, - "container": "Static", - "dynamic": false, - "singleton": false, "pointer": false, - "hash": 1756093908 + "hash": 2029131039 }, - "m_descriptionCombatHUD": { + "m_newActorName2": { "type": "std::string", - "id": 35, - "offset": 648, - "flags": 8388871, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1631478006 - }, - "m_displayIndex": { - "type": "int", - "id": 36, - "offset": 680, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1250551048 - }, - "m_hiddenFromEffectsWindow": { - "type": "bool", - "id": 37, - "offset": 684, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1832736331 - }, - "m_ignoreCharms": { - "type": "bool", - "id": 38, - "offset": 685, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1840075893 - }, - "m_alwaysFizzle": { - "type": "bool", - "id": 39, - "offset": 686, + "id": 3, + "offset": 152, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2030988856 + "hash": 1852236785 }, - "m_spellCategory": { + "m_oldActorName": { "type": "std::string", - "id": 40, - "offset": 688, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2472376729 - }, - "m_showPolymorphedName": { - "type": "bool", - "id": 41, - "offset": 720, + "id": 4, + "offset": 184, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2097929096 - }, - "m_skipTruncation": { - "type": "bool", - "id": 42, - "offset": 721, - "flags": 263, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1838335249 - }, - "m_maxCopies": { - "type": "unsigned int", - "id": 43, - "offset": 724, - "flags": 263, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 403022326 - }, - "m_levelRestriction": { - "type": "int", - "id": 44, - "offset": 728, - "flags": 263, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 176502472 - }, - "m_delayEnchantment": { + "hash": 2191892948 + } + } + }, + "1906907949": { + "name": "class SharedPointer", + "bases": [ + "ReqNumeric", + "Requirement", + "PropertyClass" + ], + "hash": 1906907949, + "properties": { + "m_applyNOT": { "type": "bool", - "id": 45, - "offset": 732, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 191336919 - }, - "m_delayEnchantmentOrder": { - "type": "enum SpellEffect::kDelayOrder", - "id": 46, - "offset": 736, - "flags": 287, + "id": 0, + "offset": 72, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2526055263, + "hash": 1746328074, "enum_options": { - "SpellEffect::kAnyOrder": 0, - "SpellEffect::kFirst": 1, - "SpellEffect::kSecond": 2 + "__DEFAULT": 0 } }, - "m_previousSpellName": { - "type": "std::string", - "id": 47, - "offset": 744, - "flags": 268435463, + "m_operator": { + "type": "enum Requirement::Operator", + "id": 1, + "offset": 76, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2903322585, + "hash": 2672792317, "enum_options": { - "__BASECLASS": "SpellTemplate" + "ROP_AND": 0, + "ROP_OR": 1, + "__DEFAULT": "ROP_AND" } }, - "m_cardFront": { - "type": "std::string", - "id": 48, - "offset": 456, - "flags": 131359, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3557598526 - }, - "m_useGloss": { - "type": "bool", - "id": 49, - "offset": 488, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 668817544 - }, - "m_ignoreDispel": { - "type": "bool", - "id": 50, - "offset": 776, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1881041624 - }, - "m_backRowFriendly": { - "type": "bool", - "id": 51, - "offset": 777, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 501584377 - }, - "m_spellRank": { - "type": "class SharedPointer", - "id": 52, - "offset": 784, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3152361374 - }, - "m_secondarySchoolName": { - "type": "std::string", - "id": 53, - "offset": 800, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1803268236 - }, - "m_spellFusion": { - "type": "unsigned int", - "id": 54, - "offset": 836, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1658928321 - }, - "m_requiredSchoolName": { - "type": "std::string", - "id": 55, - "offset": 848, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3576058981 - }, - "m_castleMagicSpellType": { - "type": "enum CastleMagicSpellTemplate::CastleMagicSpellType", - "id": 56, - "offset": 880, - "flags": 2097159, + "m_numericValue": { + "type": "float", + "id": 2, + "offset": 80, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1857887320, - "enum_options": { - "CM_Action": 0, - "CM_Effect": 1, - "CM_Utility": 2, - "CM_Logic": 3 - } + "hash": 521915239 }, - "m_castleMagicSpellEffect": { - "type": "enum CastleMagicSpellTemplate::CastleMagicSpellEffect", - "id": 57, - "offset": 884, - "flags": 2097159, + "m_operatorType": { + "type": "enum ReqNumeric::OPERATOR_TYPE", + "id": 3, + "offset": 84, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1408413012, + "hash": 2228122961, "enum_options": { - "CM_None": 0, - "CM_MakeInvisible": 1, - "CM_MakeVisible": 2, - "CM_PlaySpellEffect": 3, - "CM_PlaySoundEffect": 4, - "CM_RestoreObject": 5, - "CM_MoveObject": 6, - "CM_TurnObject": 7, - "CM_ScaleObject": 8, - "CM_TeleportObject": 9, - "CM_MoveObjectToMe": 10, - "CM_MoveTowardMe": 11, - "CM_PlayMusicScroll": 12, - "CM_MoveObjectForward": 13, - "CM_MoveObjectBackward": 14, - "CM_TurnLikeMe": 15, - "CM_TurnTowardMe": 16, - "CM_LogicEffect": 17, - "CM_StartTimer": 18, - "CM_StopTimer": 19, - "CM_ActivateReflector": 20, - "CM_CameraShake": 21, - "CM_SetCounter": 22, - "CM_SetBrazier": 23, - "CM_UseItem": 24, - "CM_Solidify": 25, - "CM_PetControl": 26, - "CM_MountControl": 27, - "CM_CameraControl": 28, - "CM_TeleportPlayer": 29, - "CM_PVPSigilControl": 30, - "CM_TeleportAllPlayers": 31, - "CM_MakeTranslucent": 32, - "CM_MakeOpaque": 33, - "CM_SilenceItem": 34, - "CM_MoveFaster": 35, - "CM_PVPDuelModifier": 36, - "CM_StopMovement": 37, - "CM_UnsilenceItem": 38, - "CM_PlayInstrumentLoop": 39, - "CM_StopMusic": 40, - "CM_PlayMusicPlayer": 41, - "CM_PlayAsPetControl": 42 + "OPERATOR_UNKNOWN": 4294967295, + "OPERATOR_EQUALS": 0, + "OPERATOR_GREATER_THAN": 1, + "OPERATOR_LESS_THAN": 2, + "OPERATOR_GREATER_THAN_EQ": 3, + "OPERATOR_LESS_THAN_EQ": 4 } - }, - "m_animationKFM": { - "type": "std::string", - "id": 58, - "offset": 888, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2466280761 - }, - "m_animationSequence": { - "type": "std::string", - "id": 59, - "offset": 920, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2493126132 - }, - "m_effectSchool": { - "type": "std::string", - "id": 60, - "offset": 952, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2688245616 } } }, - "1901424966": { - "name": "class MagicMirrorShopBehaviorTemplate*", + "1057863734": { + "name": "class SharedPointer", "bases": [ - "BehaviorTemplate", "PropertyClass" ], - "hash": 1901424966, + "hash": 1057863734, "properties": { - "m_behaviorName": { - "type": "std::string", + "m_idList": { + "type": "unsigned int", "id": 0, "offset": 72, "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - }, - "m_shopOptions": { - "type": "unsigned int", - "id": 1, - "offset": 120, - "flags": 7, "container": "List", "dynamic": true, "singleton": false, "pointer": false, - "hash": 704167667 + "hash": 761088246 } } }, - "332169412": { - "name": "class ObstacleCourseModifyTimeBehaviorClient", + "1483250467": { + "name": "class ClientPetGameBehavior*", "bases": [ - "ObstacleCourseModifyTimeBehavior", - "ObstacleCourseObstaclePathBase", - "ObstacleCourseObstacleBehavior", "BehaviorInstance", "PropertyClass" ], - "hash": 332169412, + "hash": 1483250467, "properties": { "m_behaviorTemplateNameID": { "type": "unsigned int", @@ -393035,143 +58689,59 @@ } } }, - "331952491": { - "name": "class TitleOption", + "626336237": { + "name": "class TieredSpellGroup*", "bases": [ "PropertyClass" ], - "hash": 331952491, + "hash": 626336237, "properties": { - "m_titleStringKey": { + "m_tierOneSpell": { "type": "std::string", "id": 0, "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1751250333 - }, - "m_cost": { - "type": "int", - "id": 1, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 219280307 - } - } - }, - "749325064": { - "name": "class BattlegroundMatchmakingChat*", - "bases": [ - "PropertyClass" - ], - "hash": 749325064, - "properties": { - "m_matchSize": { - "type": "int", - "id": 0, - "offset": 72, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 563704930 + "hash": 1522049297 }, - "m_secondsWaited": { - "type": "int", - "id": 1, - "offset": 76, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 606761671 - } - } - }, - "1902365406": { - "name": "class RateMyStitchBehaviorTemplate", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 1902365406, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - } - } - }, - "1115186662": { - "name": "class SharedPointer", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 1115186662, - "properties": { - "m_behaviorName": { + "m_adjectiveList": { "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - }, - "m_minimumGuildSize": { - "type": "int", "id": 1, - "offset": 120, + "offset": 104, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 1297669158 + "hash": 3195213318 }, - "m_reagent1ID": { + "m_returnRate": { "type": "unsigned int", "id": 2, - "offset": 124, + "offset": 120, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1834039377 + "hash": 1243911353 }, - "m_reagent1Number": { - "type": "unsigned int", + "m_unhideReqs": { + "type": "class RequirementList*", "id": 3, "offset": 128, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 704125517 + "pointer": true, + "hash": 1858952922 }, - "m_reagent1Adjective": { - "type": "std::string", + "m_shardType": { + "type": "gid", "id": 4, "offset": 136, "flags": 7, @@ -393179,743 +58749,452 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 1540526241 + "hash": 1047787692 }, - "m_reagent2ID": { - "type": "unsigned int", + "m_overrideStringNotEnoughShards": { + "type": "std::string", "id": 5, - "offset": 168, + "offset": 144, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1834040466 + "hash": 2854831694 }, - "m_reagent2Number": { + "m_crownsResetSubscribers": { "type": "unsigned int", "id": 6, - "offset": 172, + "offset": 176, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1995593486 + "hash": 1405160851 }, - "m_reagent2Adjective": { - "type": "std::string", + "m_goldResetSubscribers": { + "type": "unsigned int", "id": 7, - "offset": 176, + "offset": 180, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1608327618 + "hash": 2047077437 }, - "m_reagent3ID": { + "m_crownsResetNonSubscribers": { "type": "unsigned int", "id": 8, - "offset": 208, + "offset": 184, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1834041555 + "hash": 2241447230 }, - "m_reagent3Number": { + "m_goldResetNonSubscribers": { "type": "unsigned int", "id": 9, - "offset": 212, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1139577807 - }, - "m_reagent3Adjective": { - "type": "std::string", - "id": 10, - "offset": 216, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1676128995 - }, - "m_reagent4ID": { - "type": "unsigned int", - "id": 11, - "offset": 248, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1834042644 - }, - "m_reagent4Number": { - "type": "unsigned int", - "id": 12, - "offset": 252, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 283562128 - }, - "m_reagent4Adjective": { - "type": "std::string", - "id": 13, - "offset": 256, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1743930372 - }, - "m_reagent5ID": { - "type": "unsigned int", - "id": 14, - "offset": 288, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1834043733 - }, - "m_reagent5Number": { - "type": "unsigned int", - "id": 15, - "offset": 292, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1575030097 - }, - "m_reagent5Adjective": { - "type": "std::string", - "id": 16, - "offset": 296, + "offset": 188, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1811731749 - }, - "m_reagent6ID": { + "hash": 380967848 + } + } + }, + "202432097": { + "name": "class StatePositionalSoundBehavior*", + "bases": [ + "PositionalSoundBehavior", + "SoundBehavior", + "AreaBehavior", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 202432097, + "properties": { + "m_behaviorTemplateNameID": { "type": "unsigned int", - "id": 17, - "offset": 328, - "flags": 7, + "id": 0, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1834044822 + "hash": 223437287 }, - "m_reagent6Number": { - "type": "unsigned int", - "id": 18, - "offset": 332, + "m_radius": { + "type": "float", + "id": 1, + "offset": 116, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 719014418 + "hash": 989410271 }, - "m_reagent6Adjective": { - "type": "std::string", - "id": 19, - "offset": 336, - "flags": 7, + "m_category": { + "type": "enum AudioCategory", + "id": 2, + "offset": 124, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1879533126 + "hash": 2951251982, + "enum_options": { + "AudioCategory_Irrelevent": 0, + "AudioCategory_Accoustic": 1, + "AudioCategory_Noise": 2, + "AudioCategory_Music": 3 + } }, - "m_requiredUnlockTriggerID": { - "type": "unsigned int", - "id": 20, - "offset": 368, + "m_exclusive": { + "type": "bool", + "id": 3, + "offset": 128, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1012763195 + "hash": 824383403 }, - "m_islandNumber": { - "type": "unsigned int", - "id": 21, - "offset": 372, + "m_playList": { + "type": "class PlayList", + "id": 4, + "offset": 176, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1882137233 + "hash": 2061221957 }, - "m_unlockCantrip": { - "type": "std::string", - "id": 22, - "offset": 376, + "m_volume": { + "type": "float", + "id": 5, + "offset": 304, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2731256472 + "hash": 1162855023 }, - "m_numberOfUnlockPlayers": { + "m_loopCount": { "type": "int", - "id": 23, - "offset": 408, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 855609764 - }, - "m_requiredUnlockDisplayName": { - "type": "std::string", - "id": 24, - "offset": 416, + "id": 6, + "offset": 308, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1551879295 + "hash": 865634717 }, - "m_unlockedObjectID": { - "type": "unsigned int", - "id": 25, - "offset": 448, + "m_minimumFalloff": { + "type": "float", + "id": 7, + "offset": 328, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 322023750 + "hash": 355697197 }, - "m_unlockedObjectYaw": { + "m_maximumFalloff": { "type": "float", - "id": 26, - "offset": 452, + "id": 8, + "offset": 332, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1590408244 + "hash": 2210192367 }, - "m_unlockedYawEnabled": { + "m_animDriven": { "type": "bool", - "id": 27, - "offset": 456, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 858029316 - }, - "m_positionX": { - "type": "float", - "id": 28, - "offset": 460, + "id": 9, + "offset": 392, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 837995844 + "hash": 398394720 }, - "m_positionY": { - "type": "float", - "id": 29, - "offset": 464, + "m_inverted": { + "type": "bool", + "id": 10, + "offset": 397, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 837995845 - }, - "m_positionZ": { - "type": "float", - "id": 30, - "offset": 468, - "flags": 7, + "hash": 1034821044 + } + } + }, + "1056961492": { + "name": "class SharedPointer", + "bases": [ + "LootInfo", + "LootInfoBase", + "PropertyClass" + ], + "hash": 1056961492, + "properties": { + "m_lootType": { + "type": "enum LootInfo::LOOT_TYPE", + "id": 0, + "offset": 72, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 837995846 + "hash": 1591891442, + "enum_options": { + "LOOT_TYPE_NONE": 0, + "LOOT_TYPE_GOLD": 1, + "LOOT_TYPE_MANA": 2, + "LOOT_TYPE_ITEM": 3, + "LOOT_TYPE_TREASURE_CARD": 4, + "LOOT_TYPE_MAGIC_XP": 5, + "LOOT_TYPE_ADD_SPELL": 6, + "LOOT_TYPE_MAX_HEALTH": 7, + "LOOT_TYPE_MAX_GOLD": 8, + "LOOT_TYPE_MAX_MANA": 9, + "LOOT_TYPE_MAX_POTION": 10, + "LOOT_TYPE_TRAINING_POINTS": 11, + "LOOT_TYPE_RECIPE": 12, + "LOOT_TYPE_CRAFTING_SLOT": 13, + "LOOT_TYPE_REAGENT": 14, + "LOOT_TYPE_PETSNACK": 15, + "LOOT_TYPE_GARDENING_XP": 16, + "LOOT_TYPE_PET_XP": 17, + "LOOT_TYPE_TREASURE_TABLE": 18, + "LOOT_TYPE_ARENA_POINTS": 19, + "LOOT_TYPE_ARENA_BONUS_POINTS": 20, + "LOOT_TYPE_GROUP": 21, + "LOOT_TYPE_FISHING_XP": 22, + "LOOT_TYPE_EVENT_CURRENCY_1": 24, + "LOOT_TYPE_EVENT_CURRENCY_2": 25, + "LOOT_TYPE_PVP_CURRENCY": 26, + "LOOT_TYPE_PVP_CURRENCY_BONUS": 27, + "LOOT_TYPE_PVP_TOURNEY_CURRENCY": 28, + "LOOT_TYPE_PVP_TOURNEY_CURRENCY_BONUS": 29, + "LOOT_TYPE_FURNITURE_ESSENCE": 30 + } }, - "m_unlockedPositionEnabled": { - "type": "bool", - "id": 31, - "offset": 472, - "flags": 7, + "m_trainingPoints": { + "type": "int", + "id": 1, + "offset": 80, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1129626952 + "hash": 1003892499 } } }, - "332175717": { - "name": "class SharedPointer", + "1483104627": { + "name": "class AddAuraCinematicStageTemplate*", "bases": [ + "CinematicStageTemplate", "PropertyClass" ], - "hash": 332175717, + "hash": 1483104627, "properties": { - "m_nActorID": { - "type": "gid", + "m_name": { + "type": "std::string", "id": 0, - "offset": 88, - "flags": 31, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 663762476 + "hash": 1717359772 }, - "m_nLadderContainerID": { - "type": "gid", + "m_duration": { + "type": "float", "id": 1, - "offset": 96, - "flags": 31, + "offset": 104, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 782107042 + "hash": 920323453 }, - "m_nTournamentNameID": { - "type": "unsigned int", + "m_actions": { + "type": "class SharedPointer", "id": 2, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, + "offset": 112, + "flags": 7, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 471412886 + "pointer": true, + "hash": 1380578687 }, - "m_nTournamentID": { - "type": "gid", + "m_stageRelationships": { + "type": "class SharedPointer", "id": 3, - "offset": 112, - "flags": 31, - "container": "Static", - "dynamic": false, + "offset": 128, + "flags": 7, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 105258688 + "pointer": true, + "hash": 499983354 }, - "m_leagueID": { - "type": "unsigned int", + "m_sound": { + "type": "std::string", "id": 4, - "offset": 124, - "flags": 31, + "offset": 160, + "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 692361645 + "hash": 2307644996 }, - "m_seasonID": { - "type": "unsigned int", + "m_effect": { + "type": "std::string", "id": 5, - "offset": 120, - "flags": 31, + "offset": 192, + "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 535260643 + "hash": 1894145160 }, - "m_nMatchNameID": { - "type": "unsigned int", + "m_spellText": { + "type": "std::string", "id": 6, - "offset": 128, - "flags": 31, + "offset": 224, + "flags": 8388615, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 497033398 + "hash": 2688705600 }, - "m_nMatchID": { - "type": "gid", + "m_bSwitchCameraToWideLong": { + "type": "bool", "id": 7, - "offset": 136, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1050279648 - }, - "m_nTeamID": { - "type": "gid", - "id": 8, - "offset": 144, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 374990266 - }, - "m_status": { - "type": "int", - "id": 9, - "offset": 160, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 960781182 - }, - "m_costAdj": { - "type": "class MatchCostAdjustment", - "id": 10, - "offset": 200, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 913243331 - }, - "m_pLadder": { - "type": "class SharedPointer", - "id": 11, - "offset": 304, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2484171182 - }, - "m_bracketID": { - "type": "gid", - "id": 12, "offset": 152, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 441272961 - }, - "m_overridingELO": { - "type": "int", - "id": 13, - "offset": 284, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1428697363 - }, - "m_matchKFactor": { - "type": "int", - "id": 14, - "offset": 288, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 773340305 - }, - "m_userID": { - "type": "gid", - "id": 15, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1037989700 - }, - "m_matchMakingRangeForMatches": { - "type": "unsigned int", - "id": 16, - "offset": 320, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1193045098 - }, - "m_maxMatchMakingRangeForMatches": { - "type": "unsigned int", - "id": 17, - "offset": 324, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1279540944 - }, - "m_allowRangeToExceedMaxForMatches": { - "type": "bool", - "id": 18, - "offset": 328, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1260448226 - }, - "m_matchCrownsCost": { - "type": "int", - "id": 19, - "offset": 280, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1094489596 - }, - "m_machineID": { - "type": "gid", - "id": 20, - "offset": 336, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 281396698 - }, - "m_tier": { - "type": "int", - "id": 21, - "offset": 344, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 219884238 - }, - "m_rank": { - "type": "int", - "id": 22, - "offset": 348, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 219803942 - }, - "m_rating": { - "type": "int", - "id": 23, - "offset": 352, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 899783871 - }, - "m_levelBand": { - "type": "int", - "id": 24, - "offset": 356, - "flags": 31, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2097286567 - }, - "m_enteredQueue": { - "type": "int", - "id": 25, - "offset": 376, + "hash": 2136912684, + "enum_options": { + "__DEFAULT": 1 + } + } + } + }, + "624344862": { + "name": "class std::list >", + "bases": [], + "hash": 624344862, + "properties": {} + }, + "202308985": { + "name": "class ItemLocatorList", + "bases": [ + "PropertyClass" + ], + "hash": 202308985, + "properties": { + "m_locations": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, "flags": 31, - "container": "Static", - "dynamic": false, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 638238406 + "pointer": true, + "hash": 2663343121 }, - "m_isSubscriber": { + "m_bIsMinigameLoot": { "type": "bool", - "id": 26, - "offset": 428, + "id": 1, + "offset": 88, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 952325795 + "hash": 1122496566 }, - "m_meetBracketBadgeRequirnments": { + "m_bIsFishingLoot": { "type": "bool", - "id": 27, - "offset": 429, + "id": 2, + "offset": 89, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 438139258 + "hash": 1595567415 }, - "m_1v1": { + "m_bIsMonstrologyHouseGuest": { "type": "bool", - "id": 28, - "offset": 430, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 269458571 - }, - "m_streak": { - "type": "int", - "id": 29, - "offset": 360, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 961375108 - }, - "m_matches": { - "type": "int", - "id": 30, - "offset": 364, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1757638687 - }, - "m_lastFight": { - "type": "int", - "id": 31, - "offset": 368, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 91176384 - }, - "m_PVPHistoryStr": { - "type": "std::string", - "id": 32, - "offset": 384, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1498439420 - }, - "m_maxCritHit": { - "type": "float", - "id": 33, - "offset": 416, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2225327348 - }, - "m_maxBlockCrit": { - "type": "float", - "id": 34, - "offset": 420, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 135865530 - }, - "m_shadowPipRating": { - "type": "float", - "id": 35, - "offset": 424, + "id": 3, + "offset": 90, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 507126123 + "hash": 1974190378 }, - "m_optInOut": { + "m_sUrl": { "type": "std::string", - "id": 36, - "offset": 168, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3013935453 - }, - "m_playerTimeDraw": { - "type": "bool", - "id": 37, - "offset": 431, + "id": 4, + "offset": 96, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 447636221 + "hash": 1717526561 } } }, - "753237830": { - "name": "class EloRank*", + "624226416": { + "name": "class SharedPointer", "bases": [ + "ActorCinematicAction", + "CinematicAction", "PropertyClass" ], - "hash": 753237830, + "hash": 624226416, "properties": { - "m_eloRankUp": { - "type": "int", + "m_timeOffset": { + "type": "float", "id": 0, "offset": 72, "flags": 7, @@ -393923,360 +59202,187 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 2072991243 + "hash": 2237098605 }, - "m_eloRankDown": { - "type": "int", + "m_actor": { + "type": "std::string", "id": 1, - "offset": 76, + "offset": 80, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 385300382 + "hash": 2285866132 }, - "m_kFactor": { - "type": "int", + "m_position": { + "type": "class Vector3D", "id": 2, - "offset": 80, + "offset": 124, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 243011684 + "hash": 3697900983 }, - "m_carryoverElo": { - "type": "int", + "m_yawPitchRoll": { + "type": "class Vector3D", "id": 3, - "offset": 84, + "offset": 136, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 61027127 + "hash": 3349460132 }, - "m_rankName": { - "type": "std::string", + "m_clonePlayer": { + "type": "bool", "id": 4, - "offset": 88, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1779957096 - }, - "m_icon": { - "type": "std::string", - "id": 5, "offset": 120, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1717182340 - }, - "m_badgeName": { - "type": "std::string", - "id": 6, - "offset": 152, - "flags": 268435463, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3002948047, - "enum_options": { - "__BASECLASS": "BadgeTemplate" - } + "hash": 1369917873 } } }, - "1114838843": { - "name": "class std::list >", - "bases": [], - "hash": 1114838843, - "properties": {} - }, - "750574987": { - "name": "class MapInfoManager::MapInfo::DoodleData*", + "1907962373": { + "name": "class SharedPointer", "bases": [ + "InfractionPenalty", "PropertyClass" ], - "hash": 750574987, + "hash": 1907962373, "properties": { - "m_image": { - "type": "std::string", + "m_internalID": { + "type": "unsigned int", "id": 0, "offset": 72, - "flags": 131079, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2295691902 + "hash": 1854540375 }, - "m_rect": { - "type": "class Rect", + "m_categoryID": { + "type": "unsigned int", "id": 1, - "offset": 104, - "flags": 7, + "offset": 76, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1325069066 + "hash": 1382795736 }, - "m_onTags": { - "type": "std::string", + "m_removeAtPointValue": { + "type": "float", "id": 2, - "offset": 136, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2294335367 - }, - "m_label": { - "type": "std::string", - "id": 3, - "offset": 216, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2298819451 - }, - "m_displayText": { - "type": "std::string", - "id": 4, - "offset": 248, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2447120726 - }, - "m_margins": { - "type": "class Rect", - "id": 5, - "offset": 120, - "flags": 7, + "offset": 80, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2860673101 - }, - "m_childIds": { - "type": "unsigned int", - "id": 6, - "offset": 168, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1423756721 + "hash": 2112196961 }, - "m_id": { + "m_expireTime": { "type": "unsigned int", - "id": 7, - "offset": 160, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2301988666 - }, - "m_bIgnoresMouse": { - "type": "bool", - "id": 8, - "offset": 292, - "flags": 7, + "id": 3, + "offset": 84, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2149274933 + "hash": 1836304873 }, - "m_templateID": { + "m_duration": { "type": "unsigned int", - "id": 9, - "offset": 312, - "flags": 33554439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1286746870 - }, - "m_childDisplayText": { - "type": "std::string", - "id": 10, - "offset": 320, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3062136730 - }, - "m_childImage": { - "type": "std::string", - "id": 11, - "offset": 352, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3100605890 - }, - "m_childRect": { - "type": "class Rect", - "id": 12, - "offset": 384, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2455739854 - }, - "m_childMargins": { - "type": "class Rect", - "id": 13, - "offset": 400, - "flags": 7, + "id": 4, + "offset": 88, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3238677649 - }, - "m_displayRequirements": { - "type": "class RequirementList*", - "id": 14, - "offset": 424, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3646782876 + "hash": 1041524755 } } }, - "1905448179": { - "name": "class SharedPointer", + "1058445275": { + "name": "enum GardenSpellTemplate::GardenSpellType", + "bases": [], + "hash": 1058445275, + "properties": {} + }, + "202629338": { + "name": "class SharedPointer", "bases": [ - "CameraFadeCinematicAction", - "CinematicAction", + "Requirement", "PropertyClass" ], - "hash": 1905448179, + "hash": 202629338, "properties": { - "m_timeOffset": { - "type": "float", + "m_applyNOT": { + "type": "bool", "id": 0, "offset": 72, - "flags": 7, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 + "hash": 1746328074, + "enum_options": { + "__DEFAULT": 0 + } }, - "m_fDuration": { - "type": "float", + "m_operator": { + "type": "enum Requirement::Operator", "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 598255075 - }, - "m_bCycle": { - "type": "bool", - "id": 2, - "offset": 84, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 240694213 - }, - "m_bFadeIn": { - "type": "bool", - "id": 3, - "offset": 85, - "flags": 7, + "offset": 76, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1507201372 + "hash": 2672792317, + "enum_options": { + "ROP_AND": 0, + "ROP_OR": 1, + "__DEFAULT": "ROP_AND" + } } } }, - "750358885": { - "name": "class AddBacklashEffectCinematicAction", + "625705139": { + "name": "class SharedPointer", "bases": [ - "ActorCinematicAction", - "CinematicAction", "PropertyClass" ], - "hash": 750358885, + "hash": 625705139, "properties": { - "m_timeOffset": { - "type": "float", + "m_stringList": { + "type": "std::string", "id": 0, "offset": 72, "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - }, - "m_backlashEffect": { - "type": "std::string", - "id": 2, - "offset": 120, - "flags": 131079, - "container": "Static", - "dynamic": false, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 3051687009 + "hash": 1880105486 } } }, - "1904093924": { - "name": "class SharedPointer", + "202438241": { + "name": "class StatePositionalSoundBehavior", "bases": [ "PositionalSoundBehavior", "SoundBehavior", @@ -394284,7 +59390,7 @@ "BehaviorInstance", "PropertyClass" ], - "hash": 1904093924, + "hash": 202438241, "properties": { "m_behaviorTemplateNameID": { "type": "unsigned int", @@ -394412,69 +59518,102 @@ "singleton": false, "pointer": false, "hash": 1034821044 - }, - "m_fRangeScale": { - "type": "float", - "id": 11, - "offset": 512, - "flags": 7, + } + } + }, + "624953103": { + "name": "class BoosterPackLootTypeMaxes*", + "bases": [ + "PropertyClass" + ], + "hash": 624953103, + "properties": { + "m_lootType": { + "type": "enum LootInfo::LOOT_TYPE", + "id": 0, + "offset": 72, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1749294034 + "hash": 1591891442, + "enum_options": { + "LOOT_TYPE_NONE": 0, + "LOOT_TYPE_GOLD": 1, + "LOOT_TYPE_MANA": 2, + "LOOT_TYPE_ITEM": 3, + "LOOT_TYPE_TREASURE_CARD": 4, + "LOOT_TYPE_MAGIC_XP": 5, + "LOOT_TYPE_ADD_SPELL": 6, + "LOOT_TYPE_MAX_HEALTH": 7, + "LOOT_TYPE_MAX_GOLD": 8, + "LOOT_TYPE_MAX_MANA": 9, + "LOOT_TYPE_MAX_POTION": 10, + "LOOT_TYPE_TRAINING_POINTS": 11, + "LOOT_TYPE_RECIPE": 12, + "LOOT_TYPE_CRAFTING_SLOT": 13, + "LOOT_TYPE_REAGENT": 14, + "LOOT_TYPE_PETSNACK": 15, + "LOOT_TYPE_GARDENING_XP": 16, + "LOOT_TYPE_PET_XP": 17, + "LOOT_TYPE_TREASURE_TABLE": 18, + "LOOT_TYPE_ARENA_POINTS": 19, + "LOOT_TYPE_ARENA_BONUS_POINTS": 20, + "LOOT_TYPE_GROUP": 21, + "LOOT_TYPE_FISHING_XP": 22, + "LOOT_TYPE_JEWEL": 23, + "LOOT_TYPE_EMOTE": 23, + "LOOT_TYPE_TELEPORT_EFFECT": 23, + "LOOT_TYPE_PVP_CURRENCY": 26, + "LOOT_TYPE_PVP_CURRENCY_BONUS": 27, + "LOOT_TYPE_PVP_TOURNEY_CURRENCY": 28, + "LOOT_TYPE_PVP_TOURNEY_CURRENCY_BONUS": 29, + "LOOT_TYPE_FURNITURE_ESSENCE": 30 + } }, - "m_fAttenuationFactor": { - "type": "float", - "id": 12, - "offset": 516, + "m_max": { + "type": "int", + "id": 1, + "offset": 76, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 273292776 - }, - "m_eAttenuationType": { - "type": "enum PositionInfoAttenuationType", - "id": 13, - "offset": 520, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2427193304, - "enum_options": { - "Standard": 0, - "Unit Range Power": 1 - } - }, - "m_vPositions": { - "type": "class Vector3D", - "id": 14, - "offset": 528, + "hash": 267042112 + } + } + }, + "1911483807": { + "name": "class PrivateEquippedJewelInfo*", + "bases": [ + "PropertyClass" + ], + "hash": 1911483807, + "properties": { + "m_infoPairs": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, "flags": 7, - "container": "Vector", + "container": "List", "dynamic": true, "singleton": false, - "pointer": false, - "hash": 3599600160 + "pointer": true, + "hash": 1168115310 } } }, - "332889952": { - "name": "class ClientBanishBacklashEffectCinematicAction*", + "1059113908": { + "name": "class SharedPointer", "bases": [ - "BanishBacklashEffectCinematicAction", - "ActorCinematicAction", - "CinematicAction", "PropertyClass" ], - "hash": 332889952, + "hash": 1059113908, "properties": { - "m_timeOffset": { - "type": "float", + "m_minIntrinsicValue": { + "type": "int", "id": 0, "offset": 72, "flags": 7, @@ -394482,59 +59621,70 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 + "hash": 1962770606 }, - "m_actor": { - "type": "std::string", + "m_bCostsEnergy": { + "type": "bool", "id": 1, - "offset": 80, + "offset": 76, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2285866132 + "hash": 1061466155 + }, + "m_lootTables": { + "type": "std::string", + "id": 2, + "offset": 80, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1514961588 } } }, - "1115193037": { - "name": "class BaseZone*", + "1908904301": { + "name": "class CaughtFish*", "bases": [ "PropertyClass" ], - "hash": 1115193037, + "hash": 1908904301, "properties": { - "m_id": { - "type": "gid", + "m_templateID": { + "type": "unsigned int", "id": 0, "offset": 72, - "flags": 7, + "flags": 33554471, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2090569797 + "hash": 1286746870 }, - "m_name": { - "type": "std::string", + "m_size": { + "type": "float", "id": 1, - "offset": 88, - "flags": 7, + "offset": 76, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1717359772 + "hash": 310050130 } } }, - "1903024197": { - "name": "class SharedPointer", + "1908678508": { + "name": "class SharedPointer", "bases": [ "ServiceOptionBase", "PropertyClass" ], - "hash": 1903024197, + "hash": 1908678508, "properties": { "m_serviceName": { "type": "std::string", @@ -394590,126 +59740,99 @@ "singleton": false, "pointer": false, "hash": 1705789564 - }, - "m_prepText": { - "type": "std::string", - "id": 5, - "offset": 248, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2576467479 } } }, - "332851697": { - "name": "class SharedPointer", + "202764820": { + "name": "class CriticalObjectList", "bases": [ "PropertyClass" ], - "hash": 332851697, + "hash": 202764820, "properties": { - "m_GroupID": { + "m_objList": { "type": "gid", "id": 0, "offset": 72, "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 586506386 - }, - "m_ChannelID": { - "type": "gid", - "id": 1, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1585983742 - }, - "m_MemberList": { - "type": "class SharedPointer", - "id": 2, - "offset": 88, - "flags": 31, "container": "List", "dynamic": true, "singleton": false, - "pointer": true, - "hash": 2864705424 - }, - "m_nMaxSize": { - "type": "unsigned int", - "id": 3, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, "pointer": false, - "hash": 1265869948 - }, - "m_fromAdventureParty": { - "type": "bool", - "id": 4, - "offset": 128, - "flags": 31, + "hash": 72042095 + } + } + }, + "1059331338": { + "name": "class ParticleEmitter2D*", + "bases": [ + "PropertyClass" + ], + "hash": 1059331338, + "properties": {} + }, + "1483278890": { + "name": "class CastleTourMyCastleData*", + "bases": [ + "PropertyClass" + ], + "hash": 1483278890, + "properties": { + "m_houseTemplateID": { + "type": "unsigned int", + "id": 0, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 940992997 + "hash": 2326023642 }, - "m_leaderGID": { - "type": "gid", - "id": 5, - "offset": 136, - "flags": 31, + "m_rank": { + "type": "unsigned short", + "id": 1, + "offset": 76, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 700505145 + "hash": 773386388 }, - "m_questGID": { - "type": "gid", - "id": 6, - "offset": 144, - "flags": 31, + "m_visitCount": { + "type": "unsigned short", + "id": 2, + "offset": 78, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 331631550 + "hash": 978951904 }, - "m_goalGID": { - "type": "gid", - "id": 7, - "offset": 152, - "flags": 31, + "m_timeRemaining": { + "type": "unsigned int", + "id": 3, + "offset": 80, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 976914927 + "hash": 1238700214 } } }, - "1115192397": { - "name": "class BaseZone", + "626301605": { + "name": "class SharedPointer", "bases": [ "PropertyClass" ], - "hash": 1115192397, + "hash": 626301605, "properties": { - "m_id": { - "type": "gid", + "m_event": { + "type": "std::string", "id": 0, "offset": 72, "flags": 7, @@ -394717,115 +59840,71 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 2090569797 + "hash": 2291276253 }, - "m_name": { + "m_newState": { "type": "std::string", "id": 1, - "offset": 88, + "offset": 104, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1717359772 + "hash": 2153420230 + }, + "m_requiredState": { + "type": "std::string", + "id": 2, + "offset": 136, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2654559709 } } }, - "1902663913": { - "name": "class SharedPointer", + "1909297517": { + "name": "class CaughtFish", "bases": [ "PropertyClass" ], - "hash": 1902663913, + "hash": 1909297517, "properties": { - "m_encounterXPFactors": { - "type": "float", + "m_templateID": { + "type": "unsigned int", "id": 0, "offset": 72, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1658121668 - }, - "m_levelInfo": { - "type": "class MagicLevelInfo*", - "id": 1, - "offset": 96, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 3910018919 - }, - "m_classInfo": { - "type": "class ClassInfo*", - "id": 2, - "offset": 112, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1542484118 - }, - "m_maxSchoolLevel": { - "type": "int", - "id": 3, - "offset": 144, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 966975040 - }, - "m_experienceBonus": { - "type": "float", - "id": 4, - "offset": 148, - "flags": 7, + "flags": 33554471, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2151977766 + "hash": 1286746870 }, - "m_schoolOfFocusBonus": { + "m_size": { "type": "float", - "id": 5, - "offset": 152, - "flags": 7, + "id": 1, + "offset": 76, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1568585435 - }, - "m_levelsConfig": { - "type": "class MobRankLevel*", - "id": 6, - "offset": 160, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1122741478 + "hash": 310050130 } } }, - "332607721": { - "name": "class SwapShadowMaterialActorCinematicAction", + "207511076": { + "name": "class SharedPointer", "bases": [ "ActorCinematicAction", "CinematicAction", "PropertyClass" ], - "hash": 332607721, + "hash": 207511076, "properties": { "m_timeOffset": { "type": "float", @@ -394848,266 +59927,301 @@ "singleton": false, "pointer": false, "hash": 2285866132 - } - } - }, - "752499011": { - "name": "class UpFirstData*", - "bases": [ - "PropertyClass" - ], - "hash": 752499011, - "properties": { - "m_upFirst": { - "type": "int", - "id": 0, - "offset": 72, - "flags": 31, + }, + "m_nodeName": { + "type": "std::string", + "id": 2, + "offset": 120, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1884669703 + "hash": 3607089954 }, - "m_roundNum": { - "type": "int", - "id": 1, - "offset": 76, - "flags": 31, + "m_offset": { + "type": "class Vector3D", + "id": 3, + "offset": 152, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1461215570 + "hash": 2445636425 }, - "m_resultType": { - "type": "int", - "id": 2, - "offset": 80, - "flags": 31, + "m_rotation": { + "type": "class Vector3D", + "id": 4, + "offset": 164, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1136139931 + "hash": 3065089042 } } }, - "1902425029": { - "name": "class SharedPointer", + "1059352943": { + "name": "class HousingMusicManager", "bases": [ "PropertyClass" ], - "hash": 1902425029, - "properties": { - "m_percentPerHour": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1587432077 - }, - "m_pestTemplateID": { - "type": "unsigned int", - "id": 1, - "offset": 76, - "flags": 33554439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1301457330 - } - } + "hash": 1059352943, + "properties": {} }, - "750624139": { - "name": "class MapInfoManager::MapInfo::DoodleData", + "1483637427": { + "name": "class SharedPointer", "bases": [ + "Window", "PropertyClass" ], - "hash": 750624139, + "hash": 1483637427, "properties": { - "m_image": { + "m_sName": { "type": "std::string", "id": 0, - "offset": 72, - "flags": 131079, + "offset": 80, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2295691902 + "hash": 2306437263 }, - "m_rect": { - "type": "class Rect", + "m_Children": { + "type": "class SharedPointer", "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 1325069066 + "pointer": true, + "hash": 2621225959 }, - "m_onTags": { - "type": "std::string", + "m_Style": { + "type": "unsigned int", "id": 2, - "offset": 136, - "flags": 7, - "container": "Vector", - "dynamic": true, + "offset": 152, + "flags": 1048583, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 2294335367 + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "SCALE_CHILDREN": 2, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "FOCUS_LOCKED": 64, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152 + } }, - "m_label": { - "type": "std::string", + "m_Flags": { + "type": "unsigned int", "id": 3, - "offset": 216, - "flags": 7, + "offset": 156, + "flags": 1048583, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2298819451 + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } }, - "m_displayText": { - "type": "std::string", + "m_Window": { + "type": "class Rect", "id": 4, - "offset": 248, - "flags": 8388615, + "offset": 160, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2447120726 + "hash": 3105139380 }, - "m_margins": { - "type": "class Rect", + "m_fTargetAlpha": { + "type": "float", "id": 5, - "offset": 120, - "flags": 7, + "offset": 212, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2860673101 + "hash": 1809129834 }, - "m_childIds": { - "type": "unsigned int", + "m_fDisabledAlpha": { + "type": "float", "id": 6, - "offset": 168, - "flags": 7, - "container": "List", - "dynamic": true, + "offset": 216, + "flags": 135, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 1423756721 + "hash": 1389987675 }, - "m_id": { - "type": "unsigned int", + "m_fAlpha": { + "type": "float", "id": 7, - "offset": 160, - "flags": 7, + "offset": 208, + "flags": 65671, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2301988666 + "hash": 482130755 }, - "m_bIgnoresMouse": { - "type": "bool", + "m_pWindowStyle": { + "type": "class SharedPointer", "id": 8, - "offset": 292, - "flags": 7, + "offset": 232, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 2149274933 + "pointer": true, + "hash": 3623628394 }, - "m_templateID": { - "type": "unsigned int", + "m_sHelp": { + "type": "std::wstring", "id": 9, - "offset": 312, - "flags": 33554439, + "offset": 248, + "flags": 4194439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1286746870 + "hash": 2102211316 }, - "m_childDisplayText": { + "m_sScript": { "type": "std::string", "id": 10, - "offset": 320, - "flags": 7, + "offset": 352, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3062136730 + "hash": 1846695875 }, - "m_childImage": { - "type": "std::string", + "m_Offset": { + "type": "class Point", "id": 11, - "offset": 352, - "flags": 7, + "offset": 192, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3100605890 + "hash": 3389835433 }, - "m_childRect": { - "type": "class Rect", + "m_Scale": { + "type": "class Point", "id": 12, - "offset": 384, - "flags": 7, + "offset": 200, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2455739854 + "hash": 2547159940 }, - "m_childMargins": { - "type": "class Rect", + "m_sTip": { + "type": "std::wstring", "id": 13, - "offset": 400, - "flags": 7, + "offset": 392, + "flags": 4194439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3238677649 + "hash": 1513510520 }, - "m_displayRequirements": { - "type": "class RequirementList*", + "m_BubbleList": { + "type": "class WindowBubble", "id": 14, "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3091503757 + }, + "m_pMaterial": { + "type": "class SharedPointer", + "id": 16, + "offset": 632, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": true, - "hash": 3646782876 + "hash": 3479277078 + }, + "m_alphaMask": { + "type": "class SharedPointer", + "id": 17, + "offset": 648, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2624275869 } } }, - "1115247383": { - "name": "class CantripsMajorInvisibilityEffectTemplate*", + "626500077": { + "name": "class TieredSpellGroup", "bases": [ - "CantripsInvisibilityEffectTemplate", - "GameEffectTemplate", "PropertyClass" ], - "hash": 1115247383, + "hash": 626500077, "properties": { - "m_effectName": { + "m_tierOneSpell": { "type": "std::string", "id": 0, "offset": 72, @@ -395116,477 +60230,404 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 2029161513 + "hash": 1522049297 }, - "m_effectCategory": { + "m_adjectiveList": { "type": "std::string", "id": 1, "offset": 104, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 1852673222 + "hash": 3195213318 }, - "m_sortOrder": { - "type": "int", + "m_returnRate": { + "type": "unsigned int", "id": 2, - "offset": 148, + "offset": 120, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1411218206 + "hash": 1243911353 }, - "m_duration": { - "type": "double", + "m_unhideReqs": { + "type": "class RequirementList*", "id": 3, - "offset": 192, + "offset": 128, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 2727932435 + "pointer": true, + "hash": 1858952922 }, - "m_stackingCategories": { - "type": "std::string", + "m_shardType": { + "type": "gid", "id": 4, - "offset": 160, + "offset": 136, "flags": 7, - "container": "List", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 1774497525 + "hash": 1047787692 }, - "m_isPersistent": { - "type": "bool", + "m_overrideStringNotEnoughShards": { + "type": "std::string", "id": 5, - "offset": 153, + "offset": 144, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 923861920 + "hash": 2854831694 }, - "m_bIsOnPet": { - "type": "bool", + "m_crownsResetSubscribers": { + "type": "unsigned int", "id": 6, - "offset": 154, + "offset": 176, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 522593303 + "hash": 1405160851 }, - "m_isPublic": { - "type": "bool", + "m_goldResetSubscribers": { + "type": "unsigned int", "id": 7, - "offset": 152, + "offset": 180, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1728439822 + "hash": 2047077437 }, - "m_visualEffectAddName": { - "type": "std::string", + "m_crownsResetNonSubscribers": { + "type": "unsigned int", "id": 8, - "offset": 200, + "offset": 184, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3382086694 + "hash": 2241447230 }, - "m_visualEffectRemoveName": { - "type": "std::string", + "m_goldResetNonSubscribers": { + "type": "unsigned int", "id": 9, - "offset": 232, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1541697323 - }, - "m_onAddFunctorName": { - "type": "std::string", - "id": 10, - "offset": 280, + "offset": 188, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1561843107 - }, - "m_onRemoveFunctorName": { + "hash": 380967848 + } + } + }, + "1909084139": { + "name": "class SharedPointer", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 1909084139, + "properties": { + "m_behaviorName": { "type": "std::string", - "id": 11, - "offset": 312, + "id": 0, + "offset": 72, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2559017864 - }, - "m_stackingRule": { - "type": "enum STACKING_RULE", - "id": 12, - "offset": 144, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 431568889, - "enum_options": { - "STACKING_ALLOWED": 0, - "STACKING_NOSTACK": 1, - "STACKING_REPLACE": 2 - } + "hash": 3130754092 } } }, - "332869472": { - "name": "class ClientBanishBacklashEffectCinematicAction", + "205208996": { + "name": "class CastleMagicMovingObject*", "bases": [ - "BanishBacklashEffectCinematicAction", - "ActorCinematicAction", - "CinematicAction", "PropertyClass" ], - "hash": 332869472, + "hash": 205208996, + "properties": {} + }, + "1483475771": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1483475771, "properties": { - "m_timeOffset": { - "type": "float", + "m_pMaterial": { + "type": "class SharedPointer", "id": 0, "offset": 72, - "flags": 7, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 2237098605 + "pointer": true, + "hash": 3479277078 }, - "m_actor": { - "type": "std::string", + "m_nMaterialFrame": { + "type": "int", "id": 1, - "offset": 80, - "flags": 7, + "offset": 88, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2285866132 + "hash": 1641923970 } } }, - "1115247363": { - "name": "class CantripsMajorInvisibilityEffectTemplate", + "626385677": { + "name": "class ReqGetExhibitState", "bases": [ - "CantripsInvisibilityEffectTemplate", - "GameEffectTemplate", + "ReqNumeric", + "Requirement", "PropertyClass" ], - "hash": 1115247363, + "hash": 626385677, "properties": { - "m_effectName": { - "type": "std::string", + "m_applyNOT": { + "type": "bool", "id": 0, "offset": 72, - "flags": 7, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2029161513 + "hash": 1746328074, + "enum_options": { + "__DEFAULT": 0 + } }, - "m_effectCategory": { - "type": "std::string", + "m_operator": { + "type": "enum Requirement::Operator", "id": 1, - "offset": 104, - "flags": 7, + "offset": 76, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1852673222 + "hash": 2672792317, + "enum_options": { + "ROP_AND": 0, + "ROP_OR": 1, + "__DEFAULT": "ROP_AND" + } }, - "m_sortOrder": { - "type": "int", + "m_numericValue": { + "type": "float", "id": 2, - "offset": 148, - "flags": 7, + "offset": 80, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1411218206 + "hash": 521915239 }, - "m_duration": { - "type": "double", + "m_operatorType": { + "type": "enum ReqNumeric::OPERATOR_TYPE", "id": 3, - "offset": 192, - "flags": 7, + "offset": 84, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2727932435 + "hash": 2228122961, + "enum_options": { + "OPERATOR_UNKNOWN": 4294967295, + "OPERATOR_EQUALS": 0, + "OPERATOR_GREATER_THAN": 1, + "OPERATOR_LESS_THAN": 2, + "OPERATOR_GREATER_THAN_EQ": 3, + "OPERATOR_LESS_THAN_EQ": 4 + } }, - "m_stackingCategories": { + "m_galleryWorld": { "type": "std::string", "id": 4, - "offset": 160, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1774497525 - }, - "m_isPersistent": { - "type": "bool", - "id": 5, - "offset": 153, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 923861920 - }, - "m_bIsOnPet": { - "type": "bool", - "id": 6, - "offset": 154, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 522593303 - }, - "m_isPublic": { - "type": "bool", - "id": 7, - "offset": 152, - "flags": 7, + "offset": 88, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1728439822 + "hash": 3310813907 }, - "m_visualEffectAddName": { + "m_exhibitName": { "type": "std::string", - "id": 8, - "offset": 200, - "flags": 7, + "id": 5, + "offset": 120, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3382086694 + "hash": 1832300681 }, - "m_visualEffectRemoveName": { - "type": "std::string", - "id": 9, - "offset": 232, - "flags": 7, + "m_testValue": { + "type": "float", + "id": 6, + "offset": 152, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1541697323 - }, - "m_onAddFunctorName": { - "type": "std::string", - "id": 10, - "offset": 280, + "hash": 1624748404 + } + } + }, + "203869730": { + "name": "class MatchResult*", + "bases": [ + "Result", + "PropertyClass" + ], + "hash": 203869730, + "properties": { + "m_requirements": { + "type": "class RequirementList*", + "id": 0, + "offset": 72, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1561843107 + "pointer": true, + "hash": 2840985510 }, - "m_onRemoveFunctorName": { - "type": "std::string", - "id": 11, - "offset": 312, + "m_results": { + "type": "class ResultList*", + "id": 1, + "offset": 80, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 2559017864 - }, - "m_stackingRule": { - "type": "enum STACKING_RULE", - "id": 12, - "offset": 144, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 431568889, - "enum_options": { - "STACKING_ALLOWED": 0, - "STACKING_NOSTACK": 1, - "STACKING_REPLACE": 2 - } + "pointer": true, + "hash": 3776744154 } } }, - "1902897282": { - "name": "class SharedPointer", + "1483319850": { + "name": "class CastleTourMyCastleData", "bases": [ "PropertyClass" ], - "hash": 1902897282, + "hash": 1483319850, "properties": { - "m_bCollisionDisabled": { - "type": "bool", + "m_houseTemplateID": { + "type": "unsigned int", "id": 0, - "offset": 120, + "offset": 72, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1732895577 + "hash": 2326023642 }, - "m_bVehicleMode": { - "type": "bool", + "m_rank": { + "type": "unsigned short", "id": 1, - "offset": 121, + "offset": 76, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1597295002 + "hash": 773386388 }, - "m_fForwardModifier": { - "type": "float", + "m_visitCount": { + "type": "unsigned short", "id": 2, - "offset": 124, + "offset": 78, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1173988321 + "hash": 978951904 }, - "m_fBackModifier": { - "type": "float", + "m_timeRemaining": { + "type": "unsigned int", "id": 3, - "offset": 128, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 148042045 - }, - "m_fStrafeModifier": { - "type": "float", - "id": 4, - "offset": 132, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 226084913 - }, - "m_fTurnModifier": { - "type": "float", - "id": 5, - "offset": 136, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2134998805 - }, - "m_fAccelerationModifier": { - "type": "float", - "id": 6, - "offset": 144, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 592902742 - }, - "m_fDecelerationModifier": { - "type": "float", - "id": 7, - "offset": 148, + "offset": 80, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1770082811 + "hash": 1238700214 } } }, - "752741281": { - "name": "class ClientBGPlayerInfo", + "203351476": { + "name": "class WizItemQuestList*", "bases": [ - "BGPlayerInfo", + "WizItemLocations", "PropertyClass" ], - "hash": 752741281, + "hash": 203351476, "properties": { - "m_playerID": { - "type": "gid", + "m_itemType": { + "type": "enum WizItemLocations::eItemType", "id": 0, "offset": 72, - "flags": 31, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1774633426 + "hash": 3482173907, + "enum_options": { + "shop": 0, + "quest": 1, + "boss": 2, + "gardening": 3, + "goldChest": 4 + } }, - "m_team": { - "type": "std::string", + "m_quests": { + "type": "class SharedPointer", "id": 1, "offset": 80, "flags": 31, - "container": "Static", - "dynamic": false, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 1717579362 + "pointer": true, + "hash": 2616788661 } } }, - "333867396": { - "name": "class SharedPointer", + "1064547620": { + "name": "class SharedPointer", "bases": [ - "GoalEntry", "ServiceOptionBase", "PropertyClass" ], - "hash": 333867396, + "hash": 1064547620, "properties": { "m_serviceName": { "type": "std::string", @@ -395642,227 +60683,436 @@ "singleton": false, "pointer": false, "hash": 1705789564 + } + } + }, + "1910826021": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1910826021, + "properties": {} + }, + "203187636": { + "name": "class WizItemQuestList", + "bases": [ + "WizItemLocations", + "PropertyClass" + ], + "hash": 203187636, + "properties": { + "m_itemType": { + "type": "enum WizItemLocations::eItemType", + "id": 0, + "offset": 72, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3482173907, + "enum_options": { + "shop": 0, + "quest": 1, + "boss": 2, + "gardening": 3, + "goldChest": 4 + } }, - "m_questID": { - "type": "gid", - "id": 5, - "offset": 216, + "m_quests": { + "type": "class SharedPointer", + "id": 1, + "offset": 80, "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2616788661 + } + } + }, + "1061907302": { + "name": "class SharedPointer", + "bases": [ + "WizGameObjectTemplate", + "GameObjectTemplate", + "CoreTemplate", + "PropertyClass" + ], + "hash": 1061907302, + "properties": { + "m_behaviors": { + "type": "class BehaviorTemplate*", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1197808594 + }, + "m_objectName": { + "type": "std::string", + "id": 1, + "offset": 96, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1246549335 + "hash": 2154940147 }, - "m_goalID": { - "type": "gid", + "m_templateID": { + "type": "unsigned int", + "id": 2, + "offset": 128, + "flags": 16777223, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1286746870 + }, + "m_visualID": { + "type": "unsigned int", + "id": 3, + "offset": 132, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1118778894 + }, + "m_adjectiveList": { + "type": "std::string", + "id": 4, + "offset": 248, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 3195213318 + }, + "m_exemptFromAOI": { + "type": "bool", + "id": 5, + "offset": 240, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1457879059 + }, + "m_displayName": { + "type": "std::string", "id": 6, - "offset": 224, - "flags": 31, + "offset": 168, + "flags": 8388615, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 485200232 + "hash": 2446900370 }, - "m_goalTitle": { + "m_description": { "type": "std::string", "id": 7, - "offset": 272, - "flags": 31, + "offset": 136, + "flags": 8388615, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2291910240 + "hash": 1649374815 }, - "m_questTitle": { - "type": "std::string", + "m_nObjectType": { + "type": "enum ObjectType", "id": 8, - "offset": 240, - "flags": 31, + "offset": 200, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1805465583 + "hash": 2118905880, + "enum_options": { + "OT_UNDEFINED": 0, + "OT_PLAYER": 1, + "OT_NPC": 2, + "OT_PROP": 3, + "OT_OBJECT": 4, + "OT_HOUSE": 5, + "OT_KEY": 6, + "OT_OLD_KEY": 7, + "OT_DEED": 8, + "OT_MAIL": 9, + "OT_RECIPE": 17, + "OT_EQUIP_HEAD": 10, + "OT_EQUIP_CHEST": 11, + "OT_EQUIP_LEGS": 12, + "OT_EQUIP_HANDS": 13, + "OT_EQUIP_FINGER": 14, + "OT_EQUIP_FEET": 15, + "OT_EQUIP_EAR": 16, + "OT_BUILDING_BLOCK": 18, + "OT_BUILDING_BLOCK_SOLID": 19, + "OT_GOLF": 20, + "OT_DOOR": 21, + "OT_PET": 22, + "OT_FABRIC": 23, + "OT_WINDOW": 24, + "OT_ROOF": 25, + "OT_HORSE": 26, + "OT_STRUCTURE": 27, + "OT_HOUSING_TEXTURE": 28, + "OT_PLANT": 29 + } }, - "m_goalNameID": { - "type": "unsigned int", + "m_sIcon": { + "type": "std::string", "id": 9, - "offset": 232, - "flags": 31, + "offset": 208, + "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 403158846 + "hash": 2306259831 }, - "m_personaName": { + "m_lootTable": { "type": "std::string", "id": 10, - "offset": 312, - "flags": 31, - "container": "Static", - "dynamic": false, + "offset": 280, + "flags": 268435463, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 2514452244 + "hash": 2539512673, + "enum_options": { + "__BASECLASS": "LootTable" + } }, - "m_goalType": { - "type": "int", + "m_deathParticles": { + "type": "std::string", "id": 11, - "offset": 344, - "flags": 31, + "offset": 296, + "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 24170047 + "hash": 3201049672 }, - "m_goalStatus": { - "type": "int", + "m_deathSound": { + "type": "std::string", "id": 12, - "offset": 348, - "flags": 31, + "offset": 328, + "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 409552449 + "hash": 1865613610 }, - "m_goalCount": { - "type": "int", + "m_hitSound": { + "type": "std::string", "id": 13, - "offset": 352, - "flags": 31, + "offset": 360, + "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 774266758 + "hash": 2746656777 }, - "m_goalTotal": { - "type": "int", + "m_castSound": { + "type": "std::string", "id": 14, - "offset": 356, - "flags": 31, + "offset": 392, + "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 794425889 + "hash": 3343064815 }, - "m_useTally": { - "type": "bool", + "m_aggroSound": { + "type": "std::string", "id": 15, - "offset": 364, - "flags": 31, + "offset": 424, + "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 683835718 + "hash": 3421949940 }, - "m_tallyText": { + "m_primarySchoolName": { "type": "std::string", "id": 16, - "offset": 368, - "flags": 31, + "offset": 456, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3634775014 + "hash": 3211370408 }, - "m_tallyText2": { + "m_locationPreference": { "type": "std::string", "id": 17, - "offset": 400, - "flags": 31, + "offset": 488, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3298880408 + "hash": 2817699507 }, - "m_goalLocation": { - "type": "std::string", + "m_leashOffsetOverride": { + "type": "class SharedPointer", "id": 18, - "offset": 432, - "flags": 31, + "offset": 528, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1692586788 + } + } + }, + "627134908": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 627134908, + "properties": { + "m_tieredSpellRetiredList": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 955625460 + } + } + }, + "1060789076": { + "name": "class AutobotManager", + "bases": [ + "PropertyClass" + ], + "hash": 1060789076, + "properties": {} + }, + "1060124367": { + "name": "class PathActionChangePath", + "bases": [ + "PathBehaviorTemplate::Action", + "PropertyClass" + ], + "hash": 1060124367, + "properties": { + "m_nPathID": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3086892791 + "hash": 214382368 }, - "m_goalDestinationZone": { - "type": "std::string", - "id": 19, - "offset": 464, - "flags": 31, + "m_nNodeID": { + "type": "int", + "id": 1, + "offset": 80, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2141407900 + "hash": 152152635, + "enum_options": { + "__DEFAULT": 4294967295 + } }, - "m_goalImage1": { - "type": "std::string", - "id": 20, - "offset": 496, - "flags": 31, + "m_nPriority": { + "type": "int", + "id": 2, + "offset": 84, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1507581938 + "hash": 1515251530, + "enum_options": { + "__DEFAULT": 100 + } }, - "m_goalImage2": { - "type": "std::string", - "id": 21, - "offset": 528, - "flags": 31, + "m_nChance": { + "type": "int", + "id": 3, + "offset": 88, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1507581939 + "hash": 1860748394, + "enum_options": { + "__DEFAULT": 50 + } }, - "m_clientTags": { - "type": "std::string", - "id": 22, - "offset": 560, - "flags": 31, - "container": "List", - "dynamic": true, + "m_nDestinationPathID": { + "type": "gid", + "id": 4, + "offset": 96, + "flags": 7, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 2319030025 + "hash": 107013762 }, - "m_goalMadlibs": { - "type": "class SharedPointer", - "id": 23, - "offset": 576, - "flags": 31, + "m_nDestinationNodeID": { + "type": "int", + "id": 5, + "offset": 104, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1580392183 + "pointer": false, + "hash": 44784029, + "enum_options": { + "__DEFAULT": 4294967295 + } } } }, - "1115558081": { - "name": "class QuantityBehaviorTemplate*", + "1484070556": { + "name": "class SharedPointer", "bases": [ - "BehaviorTemplate", "PropertyClass" ], - "hash": 1115558081, + "hash": 1484070556, "properties": { - "m_behaviorName": { + "m_leagueType": { "type": "std::string", "id": 0, "offset": 72, @@ -395871,28 +61121,28 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 3130754092 + "hash": 3327951024 }, - "m_maximumQuantity": { - "type": "int", + "m_awardInfo": { + "type": "class SharedPointer", "id": 1, - "offset": 120, + "offset": 104, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1520461975 + "pointer": true, + "hash": 2862912855 } } }, - "1903958808": { - "name": "class FXOverrideBehaviorTemplate*", + "627595398": { + "name": "class NPCBehaviorTemplate*", "bases": [ "BehaviorTemplate", "PropertyClass" ], - "hash": 1903958808, + "hash": 627595398, "properties": { "m_behaviorName": { "type": "std::string", @@ -395905,8 +61155,8 @@ "pointer": false, "hash": 3130754092 }, - "m_FXOverrideBehaviorInfo": { - "type": "class FXOverrideBehaviorInfo", + "m_nStartingHealth": { + "type": "int", "id": 1, "offset": 120, "flags": 7, @@ -395914,381 +61164,602 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 1746411198 - } - } - }, - "333327714": { - "name": "class ObjectLocationList*", - "bases": [ - "PropertyClass" - ], - "hash": 333327714, - "properties": { - "m_objectList": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, + "hash": 317221834 + }, + "m_HideCurrentHP": { + "type": "bool", + "id": 2, + "offset": 124, + "flags": 263, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 31360456 + }, + "m_nLevel": { + "type": "int", + "id": 3, + "offset": 128, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 717812768 + }, + "m_fIntelligence": { + "type": "float", + "id": 4, + "offset": 132, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1871176720 + }, + "m_fSelfishFactor": { + "type": "float", + "id": 5, + "offset": 136, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1823445130 + }, + "m_nameColor": { + "type": "class Color", + "id": 6, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3103779710 + }, + "m_bossMob": { + "type": "bool", + "id": 7, + "offset": 144, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 986129576 + }, + "m_turnTowardsPlayer": { + "type": "bool", + "id": 8, + "offset": 145, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1881705133 + }, + "m_mobTitle": { + "type": "enum NPCBehaviorTemplate::TITLE_TYPE", + "id": 9, + "offset": 148, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2205905992, + "enum_options": { + "Easy": 0, + "Normal": 1, + "Elite": 2, + "Boss": 3, + "Minion": 4 + } + }, + "m_schoolOfFocus": { + "type": "std::string", + "id": 10, + "offset": 160, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1523233848 + }, + "m_nAggressiveFactor": { + "type": "int", + "id": 11, + "offset": 140, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 783108599 + }, + "m_triggerList": { + "type": "std::string", + "id": 12, + "offset": 232, + "flags": 268435463, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3100120619, + "enum_options": { + "__BASECLASS": "CombatTriggerList" + } + }, + "m_cylinderScaleValue": { + "type": "float", + "id": 13, + "offset": 268, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1227245334 + }, + "m_maxShadowPips": { + "type": "int", + "id": 14, + "offset": 272, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 985142882 + }, + "m_baseEffects": { + "type": "class SharedPointer", + "id": 15, + "offset": 280, "flags": 7, "container": "List", "dynamic": true, "singleton": false, "pointer": true, - "hash": 931236576 + "hash": 1726069264 + }, + "m_secondarySchoolOfFocus": { + "type": "std::string", + "id": 16, + "offset": 200, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3043326464 } } }, - "753453343": { - "name": "class ClientBurnAuraCinematicAction", + "1915581649": { + "name": "class SharedPointer", "bases": [ - "BurnAuraCinematicAction", - "ActorCinematicAction", - "CinematicAction", "PropertyClass" ], - "hash": 753453343, + "hash": 1915581649, "properties": { - "m_timeOffset": { - "type": "float", + "m_sZoneName": { + "type": "std::string", "id": 0, "offset": 72, - "flags": 7, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 + "hash": 3632841067 }, - "m_actor": { - "type": "std::string", + "m_nInstanceID": { + "type": "int", "id": 1, - "offset": 80, - "flags": 7, + "offset": 104, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2285866132 + "hash": 1380862506 + }, + "m_nZoneID": { + "type": "gid", + "id": 2, + "offset": 112, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 622120303 } } }, - "1903829701": { - "name": "class ReqPvPCombat*", + "203771635": { + "name": "class SharedPointer", "bases": [ - "ConditionalSpellEffectRequirement", - "Requirement", + "ControlSprite", + "Window", "PropertyClass" ], - "hash": 1903829701, + "hash": 203771635, "properties": { - "m_applyNOT": { - "type": "bool", + "m_sName": { + "type": "std::string", "id": 0, - "offset": 72, - "flags": 31, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306437263 + }, + "m_Children": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621225959 + }, + "m_Style": { + "type": "unsigned int", + "id": 2, + "offset": 152, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "SCALE_CHILDREN": 2, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "FOCUS_LOCKED": 64, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152 + } + }, + "m_Flags": { + "type": "unsigned int", + "id": 3, + "offset": 156, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648, + "ONE_SHOT": 8388608, + "FLIPPED_HORIZONTAL": 16777216, + "FLIPPED_VERTICAL": 33554432 + } + }, + "m_Window": { + "type": "class Rect", + "id": 4, + "offset": 160, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3105139380 + }, + "m_fTargetAlpha": { + "type": "float", + "id": 5, + "offset": 212, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1809129834 + }, + "m_fDisabledAlpha": { + "type": "float", + "id": 6, + "offset": 216, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1389987675 + }, + "m_fAlpha": { + "type": "float", + "id": 7, + "offset": 208, + "flags": 65671, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1746328074, - "enum_options": { - "__DEFAULT": 0 - } + "hash": 482130755 }, - "m_operator": { - "type": "enum Requirement::Operator", - "id": 1, - "offset": 76, - "flags": 2097183, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 2672792317, - "enum_options": { - "ROP_AND": 0, - "ROP_OR": 1, - "__DEFAULT": "ROP_AND" - } + "pointer": true, + "hash": 3623628394 }, - "m_targetType": { - "type": "enum ConditionalSpellEffectRequirement::RequirementTarget", - "id": 2, - "offset": 80, - "flags": 2097159, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2547737902, - "enum_options": { - "RT_Caster": 0, - "RT_Target": 1 - } - } - } - }, - "333085065": { - "name": "class SharedPointer", - "bases": [ - "GameEffectInfo", - "PropertyClass" - ], - "hash": 333085065, - "properties": { - "m_effectName": { + "hash": 2102211316 + }, + "m_sScript": { "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, + "id": 10, + "offset": 352, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2029161513 + "hash": 1846695875 }, - "m_bIsOnPet": { - "type": "bool", - "id": 1, - "offset": 104, - "flags": 263, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 522593303 - } - } - }, - "753237842": { - "name": "class EloRank", - "bases": [ - "PropertyClass" - ], - "hash": 753237842, - "properties": { - "m_eloRankUp": { - "type": "int", - "id": 0, - "offset": 72, - "flags": 7, + "hash": 3389835433 + }, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2072991243 + "hash": 2547159940 }, - "m_eloRankDown": { - "type": "int", - "id": 1, - "offset": 76, - "flags": 7, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 385300382 + "hash": 1513510520 }, - "m_kFactor": { - "type": "int", - "id": 2, - "offset": 80, - "flags": 7, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 243011684 + "hash": 3091503757 }, - "m_carryoverElo": { - "type": "int", - "id": 3, - "offset": 84, - "flags": 7, + "m_pMaterial": { + "type": "class SharedPointer", + "id": 16, + "offset": 592, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3479277078 + }, + "m_fRotation": { + "type": "float", + "id": 17, + "offset": 608, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 61027127 + "hash": 1175400173 }, - "m_rankName": { - "type": "std::string", - "id": 4, - "offset": 88, - "flags": 8388615, + "m_Color": { + "type": "class Color", + "id": 18, + "offset": 584, + "flags": 262279, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1779957096 + "hash": 1753714077 }, - "m_icon": { - "type": "std::string", - "id": 5, - "offset": 120, - "flags": 131079, + "m_textColor": { + "type": "class Color", + "id": 19, + "offset": 612, + "flags": 262279, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1717182340 + "hash": 2528109250 }, - "m_badgeName": { - "type": "std::string", - "id": 6, - "offset": 152, - "flags": 268435463, + "m_textComponent": { + "type": "class TextComponent", + "id": 20, + "offset": 616, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3002948047, - "enum_options": { - "__BASECLASS": "BadgeTemplate" - } + "hash": 3491704390 } } }, - "1119272669": { - "name": "class PassInfo*", + "1059707526": { + "name": "class SharedPointer", "bases": [ + "ModifyPipsCinematicAction", + "ActorCinematicAction", + "CinematicAction", "PropertyClass" ], - "hash": 1119272669, + "hash": 1059707526, "properties": { - "m_accessPassName": { - "type": "std::string", + "m_timeOffset": { + "type": "float", "id": 0, "offset": 72, - "flags": 268435463, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3398704837, - "enum_options": { - "__BASECLASS": "AccessPass" - } + "hash": 2237098605 }, - "m_zoneDisplayNames": { + "m_actor": { "type": "std::string", "id": 1, - "offset": 104, - "flags": 8388615, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1795597665 - }, - "m_crownsCost": { - "type": "int", - "id": 2, - "offset": 128, + "offset": 80, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1592212719 - }, - "m_msrpCost": { - "type": "int", - "id": 3, - "offset": 132, - "flags": 7, + "hash": 2285866132 + } + } + }, + "1913979810": { + "name": "class WinAnimSpriteContrast", + "bases": [ + "WindowAnimation", + "PropertyClass" + ], + "hash": 1913979810, + "properties": { + "m_bUseDeepCopy": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1724602037 - }, - "m_options": { - "type": "std::string", - "id": 4, - "offset": 136, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2130561383 + "hash": 433380635 }, - "m_accessMode": { - "type": "enum PassInfo::ZoneAccessMode", - "id": 5, - "offset": 160, - "flags": 2097159, + "m_fCycleTime": { + "type": "float", + "id": 1, + "offset": 80, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1953323843, - "enum_options": { - "AccessPass": 0, - "FreeToPlay": 1, - "NotReady": 2, - "SubscriberOnly": 3, - "__DEFAULT": "SubscriberOnly" - } + "hash": 1056288476 }, - "m_passType": { - "type": "enum PassInfo::AccessPassType", - "id": 6, - "offset": 164, - "flags": 2097159, + "m_fElapsedTime": { + "type": "float", + "id": 2, + "offset": 84, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2228692515, - "enum_options": { - "Standard": 0, - "Timed": 1, - "Sample": 2, - "__DEFAULT": "Standard" - } - } - } - }, - "1117347935": { - "name": "class ActorMadlib", - "bases": [ - "PropertyClass" - ], - "hash": 1117347935, - "properties": { - "m_madlibBlock": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2391615468 + "hash": 1862647402 }, - "m_index": { - "type": "unsigned int", - "id": 1, + "m_fContrastMax": { + "type": "float", + "id": 3, "offset": 88, - "flags": 31, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1009433893 + "hash": 915848113 } } }, - "1904087022": { - "name": "class SharedPointer", + "203682485": { + "name": "class SharedPointer", "bases": [ "GameEffectTemplate", "PropertyClass" ], - "hash": 1904087022, + "hash": 203682485, "properties": { "m_effectName": { "type": "std::string", @@ -396437,41 +61908,136 @@ "STACKING_NOSTACK": 1, "STACKING_REPLACE": 2 } + } + } + }, + "1912609404": { + "name": "class WinAnimConcurrent*", + "bases": [ + "WinAnimContainer", + "WindowAnimation", + "PropertyClass" + ], + "hash": 1912609404, + "properties": { + "m_bUseDeepCopy": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 433380635 }, - "m_flags": { + "m_winAnimList": { + "type": "class SharedPointer", + "id": 1, + "offset": 80, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1941062728 + }, + "m_bLooping": { + "type": "bool", + "id": 2, + "offset": 104, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2131020845 + }, + "m_finishedAnimList": { + "type": "class SharedPointer", + "id": 3, + "offset": 112, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 3066650884 + } + } + }, + "1493018350": { + "name": "class TreasureShopCrownsOption*", + "bases": [ + "ServiceOptionBase", + "PropertyClass" + ], + "hash": 1493018350, + "properties": { + "m_serviceName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2206028813 + }, + "m_iconKey": { + "type": "std::string", + "id": 1, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2457138637 + }, + "m_displayKey": { + "type": "std::string", + "id": 2, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3023276954 + }, + "m_serviceIndex": { "type": "unsigned int", - "id": 13, - "offset": 360, - "flags": 1048583, + "id": 3, + "offset": 204, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1005801050, - "enum_options": { - "GardeningBonus": 1, - "DoublePetXP": 2, - "FreeRespec": 4, - "DailyQuestBonus": 8, - "MonsterMagic": 16, - "DailyPvPBonus": 32, - "FishingBonus": 64, - "CraftingBonus": 128, - "SecondChanceChestBonus": 256, - "DoubleScrollOfFortunePoints": 512, - "FasterEnergyRegeneration": 1024 - } + "hash": 2103126710 + }, + "m_forceInteract": { + "type": "bool", + "id": 4, + "offset": 200, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1705789564 } } }, - "1116816543": { - "name": "class PetPowerControl*", + "627815801": { + "name": "class PetTalentControlBase*", "bases": [ - "PetTalentControlBase", "Window", "PropertyClass" ], - "hash": 1116816543, + "hash": 627815801, "properties": { "m_sName": { "type": "std::string", @@ -396686,129 +62252,179 @@ } } }, - "1903958814": { - "name": "class FXOverrideBehaviorTemplate", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 1903958814, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - }, - "m_FXOverrideBehaviorInfo": { - "type": "class FXOverrideBehaviorInfo", - "id": 1, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1746411198 - } - } - }, - "334996027": { - "name": "class SharedPointer", - "bases": [ - "BaseBadgeBehavior", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 334996027, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_badgeData": { - "type": "std::string", - "id": 1, - "offset": 160, - "flags": 575, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3002588904 - } - } - }, - "756064718": { - "name": "class SG_GameAction_PlaySound", + "1912098218": { + "name": "class RandomSpellEffect*", "bases": [ - "SG_GameAction", + "SpellEffect", "PropertyClass" ], - "hash": 756064718, + "hash": 1912098218, "properties": { - "m_target": { - "type": "enum SG_GameAction::SG_Target", + "m_effectType": { + "type": "enum SpellEffect::kSpellEffects", "id": 0, "offset": 72, - "flags": 2097159, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1166870973, + "hash": 2578255295, "enum_options": { - "Target_Ball": 0, - "Target_Self": 1, - "Target_Connections": 2, - "__DEFAULT": "Target_Ball" + "kInvalidSpellEffect": 0, + "kDamage": 1, + "kDamageNoCrit": 2, + "kHeal": 3, + "kHealPercent": 4, + "kSetHealPercent": 113, + "kStealHealth": 5, + "kReduceOverTime": 6, + "kDetonateOverTime": 7, + "kPushCharm": 8, + "kStealCharm": 9, + "kPushWard": 10, + "kStealWard": 11, + "kPushOverTime": 12, + "kStealOverTime": 13, + "kRemoveCharm": 14, + "kRemoveWard": 15, + "kRemoveOverTime": 16, + "kRemoveAura": 17, + "kSwapAll": 18, + "kSwapCharm": 19, + "kSwapWard": 20, + "kSwapOverTime": 21, + "kModifyIncomingDamage": 22, + "kModifyIncomingDamageFlat": 119, + "kMaximumIncomingDamage": 23, + "kModifyIncomingHeal": 24, + "kModifyIncomingHealFlat": 118, + "kModifyIncomingDamageType": 25, + "kModifyIncomingArmorPiercing": 26, + "kModifyOutgoingDamage": 27, + "kModifyOutgoingDamageFlat": 121, + "kModifyOutgoingHeal": 28, + "kModifyOutgoingHealFlat": 120, + "kModifyOutgoingDamageType": 29, + "kModifyOutgoingArmorPiercing": 30, + "kModifyOutgoingStealHealth": 31, + "kModifyIncomingStealHealth": 32, + "kBounceNext": 33, + "kBouncePrevious": 34, + "kBounceBack": 35, + "kBounceAll": 36, + "kAbsorbDamage": 37, + "kAbsorbHeal": 38, + "kModifyAccuracy": 39, + "kDispel": 40, + "kConfusion": 41, + "kCloakedCharm": 42, + "kCloakedWard": 43, + "kStunResist": 44, + "kClue": 111, + "kPipConversion": 45, + "kCritBoost": 46, + "kCritBlock": 47, + "kPolymorph": 48, + "kDelayCast": 49, + "kModifyCardCloak": 50, + "kModifyCardDamage": 51, + "kModifyCardAccuracy": 53, + "kModifyCardMutation": 54, + "kModifyCardRank": 55, + "kModifyCardArmorPiercing": 56, + "kSummonCreature": 65, + "kTeleportPlayer": 66, + "kStun": 67, + "kDampen": 68, + "kReshuffle": 69, + "kMindControl": 70, + "kModifyPips": 71, + "kModifyPowerPips": 72, + "kModifyShadowPips": 73, + "kModifyHate": 74, + "kDamageOverTime": 75, + "kHealOverTime": 76, + "kModifyPowerPipChance": 77, + "kModifyRank": 78, + "kStunBlock": 79, + "kRevealCloak": 80, + "kInstantKill": 81, + "kAfterlife": 82, + "kDeferredDamage": 83, + "kDamagePerTotalPipPower": 84, + "kModifyCardHeal": 52, + "kModifyCardCharm": 57, + "kModifyCardWard": 58, + "kModifyCardOutgoingDamage": 59, + "kModifyCardOutgoingAccuracy": 60, + "kModifyCardOutgoingHeal": 61, + "kModifyCardOutgoingArmorPiercing": 62, + "kModifyCardIncomingDamage": 63, + "kModifyCardAbsorbDamage": 64, + "kCloakedWardNoRemove": 86, + "kAddCombatTriggerList": 87, + "kRemoveCombatTriggerList": 88, + "kBacklashDamage": 89, + "kModifyBacklash": 90, + "kIntercept": 91, + "kShadowSelf": 92, + "kShadowCreature": 93, + "kModifyShadowCreatureLevel": 94, + "kSelectShadowCreatureAttackTarget": 95, + "kShadowDecrementTurn": 96, + "kCritBoostSchoolSpecific": 97, + "kSpawnCreature": 98, + "kUnPolymorph": 99, + "kPowerPipConversion": 100, + "kProtectCardBeneficial": 101, + "kProtectCardHarmful": 102, + "kProtectBeneficial": 103, + "kProtectHarmful": 104, + "kDivideDamage": 105, + "kCollectEssence": 106, + "kKillCreature": 107, + "kDispelBlock": 108, + "kConfusionBlock": 109, + "kModifyPipRoundRate": 110, + "kMaxHealthDamage": 112, + "kUntargetable": 114, + "kMakeTargetable": 115, + "kForceTargetable": 116, + "kRemoveStunBlock": 117, + "kExitCombat": 122, + "kSuspendPips": 123, + "kResumePips": 124, + "kAutoPass": 125, + "kStopAutoPass": 126, + "kVanish": 127, + "kStopVanish": 128, + "kMaxHealthHeal": 129, + "kHealByWard": 130, + "kTaunt": 131, + "kPacify": 132, + "kRemoveTargetRestriction": 133, + "kConvertHangingEffect": 134, + "kAddSpellToDeck": 135, + "kAddSpellToHand": 136, + "kModifyIncomingDamageOverTime": 137, + "kModifyIncomingHealOverTime": 138, + "kModifyCardDamagebyRank": 139, + "kPushConvertedCharm": 140, + "kStealConvertedCharm": 141, + "kPushConvertedWard": 142, + "kStealConvertedWard": 143, + "kPushConvertedOverTime": 144, + "kStealConvertedOverTime": 145, + "kRemoveConvertedCharm": 146, + "kRemoveConvertedWard": 147, + "kRemoveConvertedOverTime": 148, + "kModifyOverTimeDuration": 149, + "kModifySchoolPips": 150 } }, - "m_simpleSounds": { - "type": "std::string", - "id": 1, - "offset": 112, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 3351944033 - } - } - }, - "1116399071": { - "name": "class BGSigilTimer*", - "bases": [ - "PropertyClass" - ], - "hash": 1116399071, - "properties": { - "m_state": { - "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1021505934 - }, - "m_startTimeMS": { - "type": "unsigned int", + "m_effectParam": { + "type": "int", "id": 1, "offset": 76, "flags": 31, @@ -396816,1698 +62432,1599 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 843207562 + "hash": 357920024 }, - "m_snapshotT": { - "type": "float", + "m_disposition": { + "type": "enum SpellEffect::kHangingDisposition", "id": 2, "offset": 80, - "flags": 31, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1238335003 + "hash": 1904841031, + "enum_options": { + "kBoth": 0, + "kBeneficial": 1, + "kHarmful": 2 + } }, - "m_snapshotMS": { - "type": "unsigned int", + "m_sDamageType": { + "type": "std::string", "id": 3, - "offset": 84, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1589766845 - }, - "m_endTimeMS": { - "type": "unsigned int", - "id": 4, "offset": 88, - "flags": 31, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 388403347 + "hash": 2501054223 }, - "m_durationMS": { + "m_damageType": { "type": "unsigned int", - "id": 5, - "offset": 92, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2175220755 - }, - "m_timeScale": { - "type": "float", - "id": 6, - "offset": 96, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 550426190 - } - } - }, - "755256256": { - "name": "class Ladder", - "bases": [ - "CoreObject", - "PropertyClass" - ], - "hash": 755256256, - "properties": { - "m_inactiveBehaviors": { - "type": "class SharedPointer", - "id": 0, - "offset": 224, - "flags": 31, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1850812559 - }, - "m_globalID.m_full": { - "type": "unsigned __int64", - "id": 1, - "offset": 72, - "flags": 16777247, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2312465444 - }, - "m_permID": { - "type": "unsigned __int64", - "id": 2, - "offset": 80, - "flags": 16777247, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1298909658 - }, - "m_location": { - "type": "class Vector3D", - "id": 3, - "offset": 168, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2239683611 - }, - "m_orientation": { - "type": "class Vector3D", "id": 4, - "offset": 180, + "offset": 84, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2344058766 + "hash": 737882766 }, - "m_fScale": { - "type": "float", + "m_pipNum": { + "type": "int", "id": 5, - "offset": 196, - "flags": 31, + "offset": 128, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 503137701 + "hash": 830827539 }, - "m_templateID.m_full": { - "type": "unsigned __int64", + "m_actNum": { + "type": "int", "id": 6, - "offset": 96, + "offset": 132, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 633907631 + "hash": 236824866 }, - "m_debugName": { - "type": "std::string", + "m_effectTarget": { + "type": "enum SpellEffect::kEffectTarget", "id": 7, - "offset": 104, - "flags": 31, + "offset": 140, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3553984419 + "hash": 2458940523, + "enum_options": { + "kInvalidTarget": 0, + "kSpell": 1, + "kSpecificSpells": 2, + "kGlobal": 3, + "kEnemyTeam": 4, + "kEnemyTeamAllAtOnce": 5, + "kFriendlyTeam": 6, + "kFriendlyTeamAllAtOnce": 7, + "kEnemySingle": 8, + "kFriendlySingle": 9, + "kMinion": 10, + "kFriendlyMinion": 17, + "kEnemyMinion": 18, + "kSelf": 11, + "kAtLeastOneEnemy": 13, + "kPreselectedEnemySingle": 12, + "kMultiTargetEnemy": 14, + "kMultiTargetFriendly": 15, + "kFriendlySingleNotMe": 16 + } }, - "m_displayKey": { - "type": "std::string", + "m_numRounds": { + "type": "int", "id": 8, - "offset": 136, + "offset": 144, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3023276954 + "hash": 1229753829 }, - "m_zoneTagID": { - "type": "unsigned int", + "m_paramPerRound": { + "type": "int", "id": 9, - "offset": 344, + "offset": 148, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 965291410 + "hash": 683234234 }, - "m_speedMultiplier": { - "type": "short", + "m_healModifier": { + "type": "float", "id": 10, - "offset": 192, - "flags": 31, + "offset": 152, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 123130076 + "hash": 1317921248, + "enum_options": { + "__DEFAULT": "1.0" + } }, - "m_nMobileID": { - "type": "unsigned short", + "m_spellTemplateID": { + "type": "unsigned int", "id": 11, - "offset": 194, + "offset": 120, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1054318939 + "hash": 585567702 }, - "m_characterID": { - "type": "gid", + "m_enchantmentSpellTemplateID": { + "type": "unsigned int", "id": 12, - "offset": 432, - "flags": 33554463, + "offset": 124, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 210498386 + "hash": 246955115 }, - "m_gameID": { - "type": "gid", + "m_act": { + "type": "bool", "id": 13, - "offset": 416, - "flags": 63, + "offset": 136, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 469020959 + "hash": 269510283 }, - "m_gameNameID": { - "type": "unsigned int", + "m_cloaked": { + "type": "bool", "id": 14, - "offset": 424, - "flags": 63, + "offset": 157, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 829938293 + "hash": 7349510 }, - "m_gamesWon": { - "type": "int", + "m_bypassProtection": { + "type": "bool", "id": 15, - "offset": 440, - "flags": 63, + "offset": 159, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1733371579 + "hash": 1657138252 }, - "m_gamesLost": { + "m_armorPiercingParam": { "type": "int", "id": 16, - "offset": 444, - "flags": 63, + "offset": 160, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1363461609 + "hash": 2025530205 }, - "m_gamesTied": { + "m_chancePerTarget": { "type": "int", "id": 17, - "offset": 448, - "flags": 63, + "offset": 164, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1363742093 + "hash": 845426794 }, - "m_gamesPlayed": { - "type": "int", + "m_protected": { + "type": "bool", "id": 18, - "offset": 452, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 954596038 - }, - "m_score": { - "type": "int", - "id": 19, - "offset": 456, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 809507734 - } - } - }, - "1116000943": { - "name": "class GameEffectBase", - "bases": [ - "PropertyClass" - ], - "hash": 1116000943, - "properties": { - "m_currentTickCount": { - "type": "double", - "id": 0, - "offset": 80, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2533274692 - }, - "m_effectNameID": { - "type": "unsigned int", - "id": 1, - "offset": 96, - "flags": 63, + "offset": 168, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1204067144 + "hash": 1445655037 }, - "m_bIsOnPet": { + "m_converted": { "type": "bool", - "id": 2, - "offset": 73, + "id": 19, + "offset": 169, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 522593303 - }, - "m_originatorID": { - "type": "gid", - "id": 3, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1131810019 - }, - "m_itemSlotID": { - "type": "unsigned int", - "id": 4, - "offset": 112, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1895747595 + "hash": 1590428797 }, - "m_internalID": { + "m_rank": { "type": "int", - "id": 5, - "offset": 92, - "flags": 63, + "id": 20, + "offset": 208, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1643137924 + "hash": 219803942 }, - "m_endTime": { - "type": "unsigned int", - "id": 6, - "offset": 88, - "flags": 31, - "container": "Static", - "dynamic": false, + "m_effectList": { + "type": "class SharedPointer", + "id": 21, + "offset": 224, + "flags": 7, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 716479635 + "pointer": true, + "hash": 707154804 } } }, - "754942536": { - "name": "class CastleGamesOption", + "1060124391": { + "name": "class PathActionChangePath*", "bases": [ - "ServiceOptionBase", + "PathBehaviorTemplate::Action", "PropertyClass" ], - "hash": 754942536, + "hash": 1060124391, "properties": { - "m_serviceName": { - "type": "std::string", + "m_nPathID": { + "type": "gid", "id": 0, "offset": 72, - "flags": 31, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2206028813 + "hash": 214382368 }, - "m_iconKey": { - "type": "std::string", + "m_nNodeID": { + "type": "int", "id": 1, - "offset": 168, - "flags": 31, + "offset": 80, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2457138637 + "hash": 152152635, + "enum_options": { + "__DEFAULT": 4294967295 + } }, - "m_displayKey": { - "type": "std::string", + "m_nPriority": { + "type": "int", "id": 2, - "offset": 104, - "flags": 31, + "offset": 84, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3023276954 + "hash": 1515251530, + "enum_options": { + "__DEFAULT": 100 + } }, - "m_serviceIndex": { - "type": "unsigned int", + "m_nChance": { + "type": "int", "id": 3, - "offset": 204, - "flags": 31, + "offset": 88, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2103126710 + "hash": 1860748394, + "enum_options": { + "__DEFAULT": 50 + } }, - "m_forceInteract": { - "type": "bool", + "m_nDestinationPathID": { + "type": "gid", "id": 4, - "offset": 200, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1705789564 - } - } - }, - "340150373": { - "name": "class SG_GameBlockType", - "bases": [ - "PropertyClass" - ], - "hash": 340150373, - "properties": { - "m_adjective": { - "type": "std::string", - "id": 0, - "offset": 72, + "offset": 96, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3429518154 + "hash": 107013762 }, - "m_subTypePointPairs": { - "type": "std::string", - "id": 1, + "m_nDestinationNodeID": { + "type": "int", + "id": 5, "offset": 104, "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2463625808 - }, - "m_pointsGainedList": { - "type": "std::string", - "id": 2, - "offset": 120, - "flags": 7, - "container": "List", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 1744394364 - } - } - }, - "754846348": { - "name": "class BadgeFilterInfoList*", - "bases": [ - "PropertyClass" - ], - "hash": 754846348, - "properties": { - "m_badgeFilterInfoList": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2012631232 + "hash": 44784029, + "enum_options": { + "__DEFAULT": 4294967295 + } } } }, - "1905125237": { - "name": "class ProvidePetPowerTemplate*", + "1489655391": { + "name": "class BasePetItemBehavior", "bases": [ - "GameEffectTemplate", + "BehaviorInstance", "PropertyClass" ], - "hash": 1905125237, + "hash": 1489655391, "properties": { - "m_effectName": { - "type": "std::string", + "m_behaviorTemplateNameID": { + "type": "unsigned int", "id": 0, - "offset": 72, - "flags": 7, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2029161513 + "hash": 223437287 }, - "m_effectCategory": { - "type": "std::string", + "m_level": { + "type": "unsigned char", "id": 1, - "offset": 104, - "flags": 7, + "offset": 112, + "flags": 65727, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1852673222 + "hash": 1438884808 }, - "m_sortOrder": { - "type": "int", + "m_XP": { + "type": "unsigned int", "id": 2, - "offset": 148, - "flags": 7, + "offset": 116, + "flags": 65727, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1411218206 + "hash": 2301988085 }, - "m_duration": { - "type": "double", + "m_firstName": { + "type": "int", "id": 3, - "offset": 192, - "flags": 7, + "offset": 264, + "flags": 65703, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2727932435 + "hash": 1618303331 }, - "m_stackingCategories": { - "type": "std::string", + "m_middleName": { + "type": "int", "id": 4, - "offset": 160, - "flags": 7, - "container": "List", - "dynamic": true, + "offset": 268, + "flags": 65703, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 1774497525 + "hash": 199781034 }, - "m_isPersistent": { - "type": "bool", + "m_lastName": { + "type": "int", "id": 5, - "offset": 153, - "flags": 7, + "offset": 272, + "flags": 65703, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 923861920 + "hash": 328503983 }, - "m_bIsOnPet": { - "type": "bool", + "m_currentStats": { + "type": "class PetStat", "id": 6, - "offset": 154, - "flags": 7, - "container": "Static", - "dynamic": false, + "offset": 128, + "flags": 31, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 522593303 + "hash": 2342610661 }, - "m_isPublic": { - "type": "bool", + "m_maxStats": { + "type": "class PetStat", "id": 7, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, + "offset": 144, + "flags": 31, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 1728439822 + "hash": 1846363080 }, - "m_visualEffectAddName": { - "type": "std::string", + "m_hatchedTimeSecs": { + "type": "unsigned int", "id": 8, - "offset": 200, - "flags": 7, + "offset": 160, + "flags": 65727, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3382086694 + "hash": 606051291 }, - "m_visualEffectRemoveName": { - "type": "std::string", + "m_expressedTalents": { + "type": "unsigned int", "id": 9, - "offset": 232, - "flags": 7, - "container": "Static", - "dynamic": false, + "offset": 168, + "flags": 31, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 1541697323 + "hash": 1557974043 }, - "m_onAddFunctorName": { - "type": "std::string", + "m_expressedDerbyTalents": { + "type": "unsigned int", "id": 10, - "offset": 280, - "flags": 7, - "container": "Static", - "dynamic": false, + "offset": 184, + "flags": 31, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 1561843107 + "hash": 484465777 }, - "m_onRemoveFunctorName": { + "m_talentRatings": { "type": "std::string", "id": 11, - "offset": 312, - "flags": 7, - "container": "Static", - "dynamic": false, + "offset": 216, + "flags": 31, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 2559017864 + "hash": 2170591163 }, - "m_stackingRule": { - "type": "enum STACKING_RULE", + "m_powerRatings": { + "type": "std::string", "id": 12, - "offset": 144, - "flags": 2097159, - "container": "Static", - "dynamic": false, + "offset": 232, + "flags": 31, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 431568889, - "enum_options": { - "STACKING_ALLOWED": 0, - "STACKING_NOSTACK": 1, - "STACKING_REPLACE": 2 - } - } - } - }, - "337702974": { - "name": "class PetBoostPlayerStatEffect", - "bases": [ - "WizStatisticEffect", - "StatisticEffect", - "GameEffectBase", - "PropertyClass" - ], - "hash": 337702974, - "properties": { - "m_currentTickCount": { - "type": "double", - "id": 0, - "offset": 80, - "flags": 63, + "hash": 1881287968 + }, + "m_overallRating": { + "type": "unsigned int", + "id": 13, + "offset": 248, + "flags": 159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2533274692 + "hash": 462138631 }, - "m_effectNameID": { + "m_activeRating": { "type": "unsigned int", - "id": 1, - "offset": 96, - "flags": 63, + "id": 14, + "offset": 252, + "flags": 159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1204067144 + "hash": 234391118 }, - "m_bIsOnPet": { - "type": "bool", - "id": 2, - "offset": 73, - "flags": 31, + "m_costToMorph": { + "type": "unsigned int", + "id": 15, + "offset": 256, + "flags": 65567, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 522593303 + "hash": 1866472719 }, - "m_originatorID": { - "type": "gid", - "id": 3, - "offset": 104, - "flags": 39, + "m_rarity": { + "type": "unsigned int", + "id": 16, + "offset": 260, + "flags": 65567, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1131810019 + "hash": 1111114664 }, - "m_itemSlotID": { + "m_requiredXP": { "type": "unsigned int", - "id": 4, - "offset": 112, - "flags": 63, + "id": 17, + "offset": 120, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1895747595 + "hash": 1890811574 }, - "m_internalID": { + "m_housingPetPrimaryColor": { "type": "int", - "id": 5, - "offset": 92, - "flags": 63, + "id": 18, + "offset": 276, + "flags": 65664, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1643137924 + "hash": 525135139 }, - "m_endTime": { - "type": "unsigned int", - "id": 6, - "offset": 88, - "flags": 31, + "m_housingPetPattern": { + "type": "int", + "id": 19, + "offset": 280, + "flags": 65664, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 716479635 + "hash": 165011646 }, - "m_lookupIndex": { + "m_housingPetSecondaryColor": { "type": "int", - "id": 7, - "offset": 128, - "flags": 31, + "id": 20, + "offset": 284, + "flags": 65695, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1626623948 + "hash": 358656263 }, - "m_damageBonusPercent": { - "type": "float", - "id": 8, - "offset": 136, - "flags": 63, + "m_housingPetOriginalGID": { + "type": "gid", + "id": 21, + "offset": 288, + "flags": 65664, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 623230606 + "hash": 1259075879 }, - "m_damageBonusFlat": { - "type": "float", - "id": 9, - "offset": 180, - "flags": 63, + "m_housingPetJewelTemplateID": { + "type": "unsigned int", + "id": 22, + "offset": 296, + "flags": 65664, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2212039108 + "hash": 1836117651 }, - "m_accuracyBonusPercent": { - "type": "float", - "id": 10, - "offset": 140, - "flags": 63, + "m_happiness": { + "type": "unsigned int", + "id": 23, + "offset": 300, + "flags": 65727, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1972336538 + "hash": 1380970552 }, - "m_armorPiercingBonusPercent": { - "type": "float", - "id": 11, - "offset": 144, - "flags": 63, + "m_maximumHappiness": { + "type": "unsigned int", + "id": 24, + "offset": 304, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1569912641 - }, - "m_damageReducePercent": { - "type": "float", - "id": 12, - "offset": 148, - "flags": 63, + "hash": 874954582 + } + } + }, + "627794136": { + "name": "class HousingTeleporterBehaviorBase*", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 627794136, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 541736927 + "hash": 223437287 }, - "m_damageReduceFlat": { - "type": "float", - "id": 13, - "offset": 152, - "flags": 63, + "m_lotInstanceGID": { + "type": "gid", + "id": 1, + "offset": 112, + "flags": 65567, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 684172469 + "hash": 2010711536 }, - "m_accuracyReducePercent": { + "m_x": { "type": "float", - "id": 14, - "offset": 156, - "flags": 63, + "id": 2, + "offset": 120, + "flags": 65543, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2112559723 + "hash": 283788559 }, - "m_healBonusPercent": { + "m_y": { "type": "float", - "id": 15, - "offset": 160, - "flags": 63, + "id": 3, + "offset": 124, + "flags": 65543, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 562313577 + "hash": 283788560 }, - "m_healIncBonusPercent": { + "m_z": { "type": "float", - "id": 16, - "offset": 164, - "flags": 63, + "id": 4, + "offset": 128, + "flags": 65543, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2182535587 + "hash": 283788561 }, - "m_hitPointBonus": { + "m_yaw": { "type": "float", - "id": 17, - "offset": 204, - "flags": 63, + "id": 5, + "offset": 132, + "flags": 65543, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 880644461 + "hash": 357256328 }, - "m_spellChargeBonus": { - "type": "int", - "id": 18, - "offset": 212, - "flags": 63, + "m_lotTemplateID": { + "type": "gid", + "id": 6, + "offset": 136, + "flags": 65543, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2019610507 + "hash": 1344354096 }, - "m_powerPipBonusPercent": { - "type": "float", - "id": 19, - "offset": 168, - "flags": 63, + "m_clusterGID": { + "type": "gid", + "id": 7, + "offset": 144, + "flags": 65543, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1671446341 + "hash": 112792526 }, - "m_petActChance": { - "type": "int", - "id": 20, - "offset": 200, - "flags": 63, + "m_structureInstanceGID": { + "type": "gid", + "id": 8, + "offset": 152, + "flags": 65543, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 237418461 + "hash": 2083588818 }, - "m_manaBonus": { - "type": "float", - "id": 21, - "offset": 208, - "flags": 63, + "m_structureTemplateID": { + "type": "gid", + "id": 9, + "offset": 160, + "flags": 65543, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1372708603 + "hash": 825960402 }, - "m_expPercent": { - "type": "float", - "id": 22, - "offset": 184, - "flags": 63, + "m_isOutside": { + "type": "bool", + "id": 10, + "offset": 168, + "flags": 65543, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1147850677 - }, - "m_goldPercent": { + "hash": 1999324940 + } + } + }, + "1486959076": { + "name": "class ClientPolymorphCinematicAction*", + "bases": [ + "PolymorphCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 1486959076, + "properties": { + "m_timeOffset": { "type": "float", - "id": 23, - "offset": 188, - "flags": 63, + "id": 0, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1095720878 - }, - "m_energyBonus": { - "type": "float", - "id": 24, - "offset": 216, - "flags": 63, + "hash": 2237098605 + } + } + }, + "627745655": { + "name": "class ObstacleCourseObstacleBehavior", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 627745655, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2223158984 - }, - "m_criticalHitRating": { - "type": "float", - "id": 25, - "offset": 220, - "flags": 63, + "hash": 223437287 + } + } + }, + "204422564": { + "name": "class CastleMagicMovingObject", + "bases": [ + "PropertyClass" + ], + "hash": 204422564, + "properties": {} + }, + "1060703516": { + "name": "class ObstacleCourseSpeedUpBehaviorTemplate*", + "bases": [ + "ObstacleCourseObstaclePathBaseTemplate", + "ObstacleCourseObstacleBehaviorTemplate", + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 1060703516, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1978690540 + "hash": 3130754092 }, - "m_blockRating": { + "m_rate": { "type": "float", - "id": 26, - "offset": 224, - "flags": 63, + "id": 1, + "offset": 120, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2088486759 + "hash": 310005283 }, - "m_accuracyRating": { + "m_penaltyTime": { "type": "float", - "id": 27, - "offset": 228, - "flags": 63, + "id": 2, + "offset": 124, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 165525575 + "hash": 2083389507 }, - "m_powerPipRating": { - "type": "float", - "id": 28, - "offset": 232, - "flags": 63, + "m_totalObstacleSize": { + "type": "class Vector3D", + "id": 3, + "offset": 128, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1355340722 + "hash": 2379878414 }, - "m_damageResistanceRating": { - "type": "float", - "id": 29, - "offset": 240, - "flags": 63, - "container": "Static", - "dynamic": false, + "m_bounds": { + "type": "class Vector3D", + "id": 4, + "offset": 152, + "flags": 7, + "container": "Vector", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 1961377740 + "hash": 1948083181 }, - "m_archmastery": { - "type": "float", - "id": 30, - "offset": 244, - "flags": 63, + "m_orientToPath": { + "type": "bool", + "id": 5, + "offset": 176, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1963579610 + "hash": 655036148 }, - "m_archmasteryBonusPercent": { + "m_heightUp": { "type": "float", - "id": 31, - "offset": 288, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1908627154 - }, - "m_balanceMastery": { - "type": "int", - "id": 32, - "offset": 248, - "flags": 63, + "id": 6, + "offset": 140, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 149062181 + "hash": 2208713013 }, - "m_deathMastery": { - "type": "int", - "id": 33, - "offset": 252, - "flags": 63, + "m_heightDown": { + "type": "float", + "id": 7, + "offset": 144, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1421218661 + "hash": 655333896 }, - "m_fireMastery": { - "type": "int", - "id": 34, - "offset": 256, - "flags": 63, + "m_speedAmount": { + "type": "double", + "id": 8, + "offset": 184, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1431794949 + "hash": 3716841682 }, - "m_iceMastery": { - "type": "int", - "id": 35, - "offset": 260, - "flags": 63, + "m_buffTime": { + "type": "double", + "id": 9, + "offset": 192, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 704864240 + "hash": 2925547231 }, - "m_lifeMastery": { - "type": "int", - "id": 36, - "offset": 264, - "flags": 63, + "m_effectWearingOff": { + "type": "std::string", + "id": 10, + "offset": 200, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2142136447 + "hash": 1540780784 }, - "m_mythMastery": { - "type": "int", - "id": 37, - "offset": 268, - "flags": 63, + "m_soundWearingOff": { + "type": "std::string", + "id": 11, + "offset": 232, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1766317185 + "hash": 1848004524 }, - "m_stormMastery": { - "type": "int", - "id": 38, - "offset": 272, - "flags": 63, + "m_effectApply": { + "type": "std::string", + "id": 12, + "offset": 264, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1883988244 + "hash": 1838368078 }, - "m_stunResistancePercent": { - "type": "float", - "id": 39, - "offset": 276, - "flags": 63, + "m_soundApply": { + "type": "std::string", + "id": 13, + "offset": 296, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1868382627 + "hash": 3579526282 }, - "m_fishingLuckBonusPercent": { - "type": "float", - "id": 40, - "offset": 192, - "flags": 63, + "m_effectDespawn": { + "type": "std::string", + "id": 14, + "offset": 328, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1363349254 + "hash": 2174851674 }, - "m_shadowPipBonusPercent": { - "type": "float", - "id": 41, - "offset": 172, - "flags": 63, + "m_soundDespawn": { + "type": "std::string", + "id": 15, + "offset": 360, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1426533310 + "hash": 2068074646 }, - "m_wispBonusPercent": { - "type": "float", - "id": 42, - "offset": 196, - "flags": 63, + "m_effectWhileActive": { + "type": "std::string", + "id": 16, + "offset": 392, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1304386546 + "hash": 3074038205 }, - "m_pipConversionRating": { - "type": "float", - "id": 43, - "offset": 280, - "flags": 63, + "m_soundWhileActive": { + "type": "std::string", + "id": 17, + "offset": 424, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 246855691 + "hash": 2475003385 }, - "m_shadowPipRating": { - "type": "float", - "id": 44, - "offset": 236, - "flags": 63, + "m_effectRespawning": { + "type": "std::string", + "id": 18, + "offset": 456, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 507126123 + "hash": 3091986790 }, - "m_petID": { - "type": "gid", - "id": 45, - "offset": 304, - "flags": 24, + "m_soundRespawning": { + "type": "std::string", + "id": 19, + "offset": 488, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 806009486 - }, - "m_primaryStat1": { - "type": "std::string", - "id": 46, - "offset": 312, - "flags": 24, + "hash": 3399210530 + } + } + }, + "1486678974": { + "name": "class SharedPointer", + "bases": [ + "ClientCinematic", + "Cinematic", + "PropertyClass" + ], + "hash": 1486678974, + "properties": {} + }, + "204173336": { + "name": "class SharedPointer", + "bases": [ + "PipFloatingTextCinematicAction", + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 204173336, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2417808140 + "hash": 2237098605 }, - "m_primaryStat2": { + "m_actor": { "type": "std::string", - "id": 47, - "offset": 344, - "flags": 24, + "id": 1, + "offset": 80, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2417808141 - }, - "m_secondaryStat": { + "hash": 2285866132 + } + } + }, + "1486282803": { + "name": "class CombatTriggerDescription*", + "bases": [ + "PropertyClass" + ], + "hash": 1486282803, + "properties": { + "m_description": { "type": "std::string", - "id": 48, - "offset": 376, - "flags": 24, + "id": 0, + "offset": 72, + "flags": 8388615, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3564684959 + "hash": 1649374815 }, - "m_secondaryValue": { - "type": "float", - "id": 49, - "offset": 408, - "flags": 24, + "m_displaySpellName": { + "type": "std::string", + "id": 1, + "offset": 104, + "flags": 268435463, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1728780796 + "hash": 3323484466, + "enum_options": { + "__BASECLASS": "SpellTemplate" + } } } }, - "1116493381": { - "name": "class SharedPointer", + "1913980578": { + "name": "class WinAnimSpriteContrast*", "bases": [ - "BehaviorTemplate", + "WindowAnimation", "PropertyClass" ], - "hash": 1116493381, + "hash": 1913980578, "properties": { - "m_behaviorName": { - "type": "std::string", + "m_bUseDeepCopy": { + "type": "bool", "id": 0, "offset": 72, - "flags": 7, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3130754092 + "hash": 433380635 }, - "m_maxReagentsPerStack": { - "type": "int", + "m_fCycleTime": { + "type": "float", "id": 1, - "offset": 120, - "flags": 7, + "offset": 80, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1052405942 + "hash": 1056288476 + }, + "m_fElapsedTime": { + "type": "float", + "id": 2, + "offset": 84, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1862647402 + }, + "m_fContrastMax": { + "type": "float", + "id": 3, + "offset": 88, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 915848113 } } }, - "1904215481": { - "name": "class SharedPointer", + "204094750": { + "name": "class SharedPointer", "bases": [ "PropertyClass" ], - "hash": 1904215481, + "hash": 204094750, "properties": { - "m_segRequirnments": { - "type": "class SegmentationRequrinment", + "m_zoneTag": { + "type": "std::string", "id": 0, "offset": 72, "flags": 31, - "container": "Vector", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 1161472684 + "hash": 3405382643 }, - "m_bApplyDiscount": { - "type": "bool", + "m_zoneTagID": { + "type": "unsigned int", "id": 1, - "offset": 96, + "offset": 104, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1270539076 + "hash": 965291410 }, - "m_nDiscountPrice": { - "type": "unsigned int", + "m_animation": { + "type": "std::string", "id": 2, - "offset": 100, + "offset": 112, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1342003831 + "hash": 3431428731 }, - "m_nDiscountPercent": { - "type": "unsigned int", + "m_backupAnimation": { + "type": "std::string", "id": 3, - "offset": 104, + "offset": 144, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 333850677 + "hash": 1661537937 }, - "m_bShowStrikethruPrice": { + "m_default": { "type": "bool", "id": 4, - "offset": 108, + "offset": 176, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1930806814 - } - } - }, - "337312279": { - "name": "class PvPTourneyCurrencyLootInfo", - "bases": [ - "LootInfo", - "LootInfoBase", - "PropertyClass" - ], - "hash": 337312279, - "properties": { - "m_lootType": { - "type": "enum LootInfo::LOOT_TYPE", - "id": 0, - "offset": 72, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1591891442, - "enum_options": { - "LOOT_TYPE_NONE": 0, - "LOOT_TYPE_GOLD": 1, - "LOOT_TYPE_MANA": 2, - "LOOT_TYPE_ITEM": 3, - "LOOT_TYPE_TREASURE_CARD": 4, - "LOOT_TYPE_MAGIC_XP": 5, - "LOOT_TYPE_ADD_SPELL": 6, - "LOOT_TYPE_MAX_HEALTH": 7, - "LOOT_TYPE_MAX_GOLD": 8, - "LOOT_TYPE_MAX_MANA": 9, - "LOOT_TYPE_MAX_POTION": 10, - "LOOT_TYPE_TRAINING_POINTS": 11, - "LOOT_TYPE_RECIPE": 12, - "LOOT_TYPE_CRAFTING_SLOT": 13, - "LOOT_TYPE_REAGENT": 14, - "LOOT_TYPE_PETSNACK": 15, - "LOOT_TYPE_GARDENING_XP": 16, - "LOOT_TYPE_PET_XP": 17, - "LOOT_TYPE_TREASURE_TABLE": 18, - "LOOT_TYPE_ARENA_POINTS": 19, - "LOOT_TYPE_ARENA_BONUS_POINTS": 20, - "LOOT_TYPE_GROUP": 21, - "LOOT_TYPE_FISHING_XP": 22, - "LOOT_TYPE_EVENT_CURRENCY_1": 24, - "LOOT_TYPE_EVENT_CURRENCY_2": 25, - "LOOT_TYPE_PVP_CURRENCY": 26, - "LOOT_TYPE_PVP_CURRENCY_BONUS": 27, - "LOOT_TYPE_PVP_TOURNEY_CURRENCY": 28, - "LOOT_TYPE_PVP_TOURNEY_CURRENCY_BONUS": 29, - "LOOT_TYPE_FURNITURE_ESSENCE": 30 - } + "hash": 1014207576 }, - "m_pvpTourneyCurrencyAmount": { - "type": "int", - "id": 1, - "offset": 80, + "m_evenWhileDead": { + "type": "bool", + "id": 5, + "offset": 177, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1148086373 + "hash": 2100875368 } } }, - "337183319": { - "name": "class SharedPointer", + "627815761": { + "name": "class PetTalentControlBase", "bases": [ - "GraphicalSpell", - "Spell", + "Window", "PropertyClass" ], - "hash": 337183319, + "hash": 627815761, "properties": { - "m_templateID": { - "type": "unsigned int", + "m_sName": { + "type": "std::string", "id": 0, - "offset": 128, - "flags": 31, + "offset": 80, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1286746870 + "hash": 2306437263 }, - "m_enchantment": { - "type": "unsigned int", + "m_Children": { + "type": "class SharedPointer", "id": 1, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, + "offset": 112, + "flags": 65667, + "container": "Vector", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 2217886818 + "pointer": true, + "hash": 2621225959 }, - "m_pipCost": { - "type": "class SharedPointer", + "m_Style": { + "type": "unsigned int", "id": 2, - "offset": 176, - "flags": 7, + "offset": 152, + "flags": 1048583, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3605704820 + "pointer": false, + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "SCALE_CHILDREN": 2, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "FOCUS_LOCKED": 64, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152 + } }, - "m_regularAdjust": { - "type": "int", + "m_Flags": { + "type": "unsigned int", "id": 3, - "offset": 192, - "flags": 31, + "offset": 156, + "flags": 1048583, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1420453335 + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } }, - "m_magicSchoolID": { - "type": "unsigned int", + "m_Window": { + "type": "class Rect", "id": 4, - "offset": 136, - "flags": 7, + "offset": 160, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 893146499 + "hash": 3105139380 }, - "m_accuracy": { - "type": "unsigned char", + "m_fTargetAlpha": { + "type": "float", "id": 5, - "offset": 132, - "flags": 7, + "offset": 212, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2273914939 + "hash": 1809129834 }, - "m_treasureCard": { - "type": "bool", + "m_fDisabledAlpha": { + "type": "float", "id": 6, - "offset": 197, - "flags": 31, + "offset": 216, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1764879128 + "hash": 1389987675 }, - "m_battleCard": { - "type": "bool", + "m_fAlpha": { + "type": "float", "id": 7, - "offset": 198, - "flags": 31, + "offset": 208, + "flags": 65671, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1332843753 + "hash": 482130755 }, - "m_itemCard": { - "type": "bool", + "m_pWindowStyle": { + "type": "class SharedPointer", "id": 8, - "offset": 199, - "flags": 7, + "offset": 232, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1683654300 + "pointer": true, + "hash": 3623628394 }, - "m_sideBoard": { - "type": "bool", + "m_sHelp": { + "type": "std::wstring", "id": 9, - "offset": 200, - "flags": 7, + "offset": 248, + "flags": 4194439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1897838368 + "hash": 2102211316 }, - "m_spellID": { - "type": "unsigned int", + "m_sScript": { + "type": "std::string", "id": 10, - "offset": 204, - "flags": 31, + "offset": 352, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1697483258 + "hash": 1846695875 }, - "m_leavesPlayWhenCastOverride": { - "type": "bool", + "m_Offset": { + "type": "class Point", "id": 11, - "offset": 216, - "flags": 31, + "offset": 192, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 874407398 + "hash": 3389835433 }, - "m_cloaked": { - "type": "bool", + "m_Scale": { + "type": "class Point", "id": 12, - "offset": 196, - "flags": 7, + "offset": 200, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 7349510 + "hash": 2547159940 }, - "m_enchantmentSpellIsItemCard": { - "type": "bool", + "m_sTip": { + "type": "std::wstring", "id": 13, - "offset": 76, - "flags": 31, + "offset": 392, + "flags": 4194439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 531590701 + "hash": 1513510520 }, - "m_premutationSpellID": { - "type": "unsigned int", + "m_BubbleList": { + "type": "class WindowBubble", "id": 14, - "offset": 112, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1530256370 - }, - "m_enchantedThisCombat": { - "type": "bool", - "id": 15, - "offset": 77, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1895738923 - }, - "m_paramOverrides": { - "type": "class SharedPointer", - "id": 16, - "offset": 224, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2061635599 - }, - "m_subEffectMeta": { - "type": "class SharedPointer", - "id": 17, - "offset": 240, - "flags": 31, + "offset": 424, + "flags": 135, "container": "List", "dynamic": true, "singleton": false, - "pointer": true, - "hash": 1944101106 + "pointer": false, + "hash": 2587533771 }, - "m_delayEnchantment": { - "type": "bool", - "id": 18, - "offset": 257, - "flags": 287, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 191336919 - }, - "m_PvE": { - "type": "bool", - "id": 19, - "offset": 264, - "flags": 287, + "hash": 3091503757 + } + } + }, + "1061876238": { + "name": "class PlayGraphicOnActorAction*", + "bases": [ + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 1061876238, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 269492350 + "hash": 2237098605 }, - "m_delayEnchantmentOrder": { - "type": "enum SpellEffect::kDelayOrder", - "id": 20, - "offset": 72, - "flags": 287, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2526055263, - "enum_options": { - "SpellEffect::kAnyOrder": 0, - "SpellEffect::kFirst": 1, - "SpellEffect::kSecond": 2 - } + "hash": 2285866132 }, - "m_roundAddedTC": { - "type": "int", - "id": 21, - "offset": 260, - "flags": 31, + "m_assetName": { + "type": "std::string", + "id": 2, + "offset": 120, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 112365451 + "hash": 1513131580 }, - "m_secondarySchoolID": { - "type": "unsigned int", - "id": 22, - "offset": 304, + "m_bDontFlipActorYaw": { + "type": "bool", + "id": 3, + "offset": 152, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2081206026 + "hash": 632297791 } } }, - "1904489567": { - "name": "class AlchemyBehaviorTemplate", + "1914767513": { + "name": "class ReqHasBadge", "bases": [ - "BehaviorTemplate", + "Requirement", "PropertyClass" ], - "hash": 1904489567, + "hash": 1914767513, "properties": { - "m_behaviorName": { - "type": "std::string", + "m_applyNOT": { + "type": "bool", "id": 0, "offset": 72, - "flags": 7, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3130754092 + "hash": 1746328074, + "enum_options": { + "__DEFAULT": 0 + } }, - "m_maxReagentsPerStack": { - "type": "int", + "m_operator": { + "type": "enum Requirement::Operator", "id": 1, - "offset": 120, - "flags": 7, + "offset": 76, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1052405942 + "hash": 2672792317, + "enum_options": { + "ROP_AND": 0, + "ROP_OR": 1, + "__DEFAULT": "ROP_AND" + } + }, + "m_badgeName": { + "type": "std::string", + "id": 2, + "offset": 80, + "flags": 268435487, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3002948047, + "enum_options": { + "__BASECLASS": "BadgeTemplate" + } } } }, - "336820599": { - "name": "class ShadowCreatureCameraCutCinematicAction", + "1060789236": { + "name": "class AutobotManager*", + "bases": [ + "PropertyClass" + ], + "hash": 1060789236, + "properties": {} + }, + "1487552333": { + "name": "class SharedPointer", "bases": [ "ActorCinematicAction", "CinematicAction", "PropertyClass" ], - "hash": 336820599, + "hash": 1487552333, "properties": { "m_timeOffset": { "type": "float", @@ -398530,83 +64047,49 @@ "singleton": false, "pointer": false, "hash": 2285866132 - } - } - }, - "755305948": { - "name": "class FXOverrideBehavior*", - "bases": [ - "ClientEquipmentBehavior", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 755305948, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, + }, + "m_effectName": { + "type": "std::string", + "id": 2, + "offset": 120, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 - }, - "m_itemList": { - "type": "class SharedPointer", - "id": 1, - "offset": 120, - "flags": 27, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1983655699 - }, - "m_slotList": { - "type": "class SharedPointer", - "id": 2, - "offset": 136, - "flags": 27, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 3213026923 + "hash": 2029161513 }, - "m_publicItemList": { - "type": "class SharedPointer", + "m_nodeName": { + "type": "std::string", "id": 3, "offset": 152, - "flags": 31, - "container": "List", - "dynamic": true, + "flags": 7, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1693467991 + "pointer": false, + "hash": 3607089954 }, - "m_FXOverrideBehaviorInfo": { - "type": "class FXOverrideBehaviorInfo", + "m_assetName": { + "type": "std::string", "id": 4, - "offset": 232, - "flags": 27, + "offset": 184, + "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1746411198 + "hash": 1513131580 } } }, - "1116819615": { - "name": "class PetPowerControl", + "628830022": { + "name": "class WindowLayout", "bases": [ - "PetTalentControlBase", "Window", "PropertyClass" ], - "hash": 1116819615, + "hash": 628830022, "properties": { "m_sName": { "type": "std::string", @@ -398623,7 +64106,7 @@ "type": "class SharedPointer", "id": 1, "offset": 112, - "flags": 65667, + "flags": 65671, "container": "Vector", "dynamic": true, "singleton": false, @@ -398642,11 +64125,9 @@ "hash": 983582334, "enum_options": { "HAS_BACK": 1, - "SCALE_CHILDREN": 2, "CAN_MOVE": 4, "CAN_SIZE": 8, "CAN_SCROLL": 16, - "FOCUS_LOCKED": 64, "CAN_FOCUS": 128, "CAN_DOCK": 32, "DO_NOT_CAPTURE_MOUSE": 256, @@ -398658,7 +64139,15 @@ "USE_ALPHA_BOUNDS": 8192, "AUTO_GROW": 16384, "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152 + "AUTO_RESIZE": 49152, + "H_CENTER": 16777216, + "H_RIGHT": 33554432, + "V_CENTER": 2147483648, + "V_BOTTOM": 67108864, + "SORT": 536870912, + "LAYOUT_VERT": 1073741824, + "LAYOUT_REVERSE": 2147483648, + "DO_NOT_WRAP": 134217728 } }, "m_Flags": { @@ -398818,161 +64307,80 @@ "singleton": false, "pointer": false, "hash": 3091503757 - } - } - }, - "755278286": { - "name": "class SG_GameAction_PlaySound*", - "bases": [ - "SG_GameAction", - "PropertyClass" - ], - "hash": 755278286, - "properties": { - "m_target": { - "type": "enum SG_GameAction::SG_Target", - "id": 0, - "offset": 72, - "flags": 2097159, + }, + "m_nHSpacing": { + "type": "int", + "id": 16, + "offset": 584, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1166870973, - "enum_options": { - "Target_Ball": 0, - "Target_Self": 1, - "Target_Connections": 2, - "__DEFAULT": "Target_Ball" - } + "hash": 893611957 }, - "m_simpleSounds": { - "type": "std::string", - "id": 1, - "offset": 112, - "flags": 7, - "container": "List", - "dynamic": true, + "m_nVSpacing": { + "type": "int", + "id": 17, + "offset": 588, + "flags": 135, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 3351944033 + "hash": 551359491 } } }, - "1116980720": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1116980720, - "properties": {} - }, - "1905275999": { - "name": "class AlchemyBehaviorTemplate*", + "204825615": { + "name": "class SharedPointer", "bases": [ - "BehaviorTemplate", "PropertyClass" ], - "hash": 1905275999, + "hash": 204825615, "properties": { - "m_behaviorName": { - "type": "std::string", + "m_badges": { + "type": "class SharedPointer", "id": 0, "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - }, - "m_maxReagentsPerStack": { - "type": "int", - "id": 1, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, + "flags": 31, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 1052405942 + "pointer": true, + "hash": 1636336781 } } }, - "337221590": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 337221590, - "properties": {} - }, - "755452973": { - "name": "struct DuelSimInfo", - "bases": [], - "hash": 755452973, - "properties": {} - }, - "1119240874": { - "name": "class LootInfo*", + "1487055953": { + "name": "class SharedPointer", "bases": [ - "LootInfoBase", + "ClearCameraMappingCinematicAction", + "CinematicAction", "PropertyClass" ], - "hash": 1119240874, + "hash": 1487055953, "properties": { - "m_lootType": { - "type": "enum LootInfo::LOOT_TYPE", + "m_timeOffset": { + "type": "float", "id": 0, "offset": 72, - "flags": 2097183, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1591891442, - "enum_options": { - "LOOT_TYPE_NONE": 0, - "LOOT_TYPE_GOLD": 1, - "LOOT_TYPE_MANA": 2, - "LOOT_TYPE_ITEM": 3, - "LOOT_TYPE_TREASURE_CARD": 4, - "LOOT_TYPE_MAGIC_XP": 5, - "LOOT_TYPE_ADD_SPELL": 6, - "LOOT_TYPE_MAX_HEALTH": 7, - "LOOT_TYPE_MAX_GOLD": 8, - "LOOT_TYPE_MAX_MANA": 9, - "LOOT_TYPE_MAX_POTION": 10, - "LOOT_TYPE_TRAINING_POINTS": 11, - "LOOT_TYPE_RECIPE": 12, - "LOOT_TYPE_CRAFTING_SLOT": 13, - "LOOT_TYPE_REAGENT": 14, - "LOOT_TYPE_PETSNACK": 15, - "LOOT_TYPE_GARDENING_XP": 16, - "LOOT_TYPE_PET_XP": 17, - "LOOT_TYPE_TREASURE_TABLE": 18, - "LOOT_TYPE_ARENA_POINTS": 19, - "LOOT_TYPE_ARENA_BONUS_POINTS": 20, - "LOOT_TYPE_GROUP": 21, - "LOOT_TYPE_FISHING_XP": 22, - "LOOT_TYPE_EVENT_CURRENCY_1": 24, - "LOOT_TYPE_EVENT_CURRENCY_2": 25, - "LOOT_TYPE_PVP_CURRENCY": 26, - "LOOT_TYPE_PVP_CURRENCY_BONUS": 27, - "LOOT_TYPE_PVP_TOURNEY_CURRENCY": 28, - "LOOT_TYPE_PVP_TOURNEY_CURRENCY_BONUS": 29, - "LOOT_TYPE_FURNITURE_ESSENCE": 30 - } + "hash": 2237098605 } } }, - "1906010588": { - "name": "class ObjectRemapBehavior", + "627990744": { + "name": "class HousingTeleporterBehaviorBase", "bases": [ "BehaviorInstance", "PropertyClass" ], - "hash": 1906010588, + "hash": 627990744, "properties": { "m_behaviorTemplateNameID": { "type": "unsigned int", @@ -398984,284 +64392,148 @@ "singleton": false, "pointer": false, "hash": 223437287 - } - } - }, - "337312285": { - "name": "class PvPTourneyCurrencyLootInfo*", - "bases": [ - "LootInfo", - "LootInfoBase", - "PropertyClass" - ], - "hash": 337312285, - "properties": { - "m_lootType": { - "type": "enum LootInfo::LOOT_TYPE", - "id": 0, - "offset": 72, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1591891442, - "enum_options": { - "LOOT_TYPE_NONE": 0, - "LOOT_TYPE_GOLD": 1, - "LOOT_TYPE_MANA": 2, - "LOOT_TYPE_ITEM": 3, - "LOOT_TYPE_TREASURE_CARD": 4, - "LOOT_TYPE_MAGIC_XP": 5, - "LOOT_TYPE_ADD_SPELL": 6, - "LOOT_TYPE_MAX_HEALTH": 7, - "LOOT_TYPE_MAX_GOLD": 8, - "LOOT_TYPE_MAX_MANA": 9, - "LOOT_TYPE_MAX_POTION": 10, - "LOOT_TYPE_TRAINING_POINTS": 11, - "LOOT_TYPE_RECIPE": 12, - "LOOT_TYPE_CRAFTING_SLOT": 13, - "LOOT_TYPE_REAGENT": 14, - "LOOT_TYPE_PETSNACK": 15, - "LOOT_TYPE_GARDENING_XP": 16, - "LOOT_TYPE_PET_XP": 17, - "LOOT_TYPE_TREASURE_TABLE": 18, - "LOOT_TYPE_ARENA_POINTS": 19, - "LOOT_TYPE_ARENA_BONUS_POINTS": 20, - "LOOT_TYPE_GROUP": 21, - "LOOT_TYPE_FISHING_XP": 22, - "LOOT_TYPE_EVENT_CURRENCY_1": 24, - "LOOT_TYPE_EVENT_CURRENCY_2": 25, - "LOOT_TYPE_PVP_CURRENCY": 26, - "LOOT_TYPE_PVP_CURRENCY_BONUS": 27, - "LOOT_TYPE_PVP_TOURNEY_CURRENCY": 28, - "LOOT_TYPE_PVP_TOURNEY_CURRENCY_BONUS": 29, - "LOOT_TYPE_FURNITURE_ESSENCE": 30 - } }, - "m_pvpTourneyCurrencyAmount": { - "type": "int", + "m_lotInstanceGID": { + "type": "gid", "id": 1, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1148086373 - } - } - }, - "1119240234": { - "name": "class LootInfo", - "bases": [ - "LootInfoBase", - "PropertyClass" - ], - "hash": 1119240234, - "properties": { - "m_lootType": { - "type": "enum LootInfo::LOOT_TYPE", - "id": 0, - "offset": 72, - "flags": 2097183, + "offset": 112, + "flags": 65567, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1591891442, - "enum_options": { - "LOOT_TYPE_NONE": 0, - "LOOT_TYPE_GOLD": 1, - "LOOT_TYPE_MANA": 2, - "LOOT_TYPE_ITEM": 3, - "LOOT_TYPE_TREASURE_CARD": 4, - "LOOT_TYPE_MAGIC_XP": 5, - "LOOT_TYPE_ADD_SPELL": 6, - "LOOT_TYPE_MAX_HEALTH": 7, - "LOOT_TYPE_MAX_GOLD": 8, - "LOOT_TYPE_MAX_MANA": 9, - "LOOT_TYPE_MAX_POTION": 10, - "LOOT_TYPE_TRAINING_POINTS": 11, - "LOOT_TYPE_RECIPE": 12, - "LOOT_TYPE_CRAFTING_SLOT": 13, - "LOOT_TYPE_REAGENT": 14, - "LOOT_TYPE_PETSNACK": 15, - "LOOT_TYPE_GARDENING_XP": 16, - "LOOT_TYPE_PET_XP": 17, - "LOOT_TYPE_TREASURE_TABLE": 18, - "LOOT_TYPE_ARENA_POINTS": 19, - "LOOT_TYPE_ARENA_BONUS_POINTS": 20, - "LOOT_TYPE_GROUP": 21, - "LOOT_TYPE_FISHING_XP": 22, - "LOOT_TYPE_EVENT_CURRENCY_1": 24, - "LOOT_TYPE_EVENT_CURRENCY_2": 25, - "LOOT_TYPE_PVP_CURRENCY": 26, - "LOOT_TYPE_PVP_CURRENCY_BONUS": 27, - "LOOT_TYPE_PVP_TOURNEY_CURRENCY": 28, - "LOOT_TYPE_PVP_TOURNEY_CURRENCY_BONUS": 29, - "LOOT_TYPE_FURNITURE_ESSENCE": 30 - } - } - } - }, - "1905494375": { - "name": "class UnShadowSelfCinematicAction*", - "bases": [ - "CinematicAction", - "PropertyClass" - ], - "hash": 1905494375, - "properties": { - "m_timeOffset": { + "hash": 2010711536 + }, + "m_x": { "type": "float", - "id": 0, - "offset": 72, - "flags": 7, + "id": 2, + "offset": 120, + "flags": 65543, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 - } - } - }, - "758327461": { - "name": "class MadlibIconData", - "bases": [ - "PropertyClass" - ], - "hash": 758327461, - "properties": { - "m_token": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, + "hash": 283788559 + }, + "m_y": { + "type": "float", + "id": 3, + "offset": 124, + "flags": 65543, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2308819740 + "hash": 283788560 }, - "m_icon": { - "type": "std::wstring", - "id": 1, - "offset": 104, - "flags": 131079, + "m_z": { + "type": "float", + "id": 4, + "offset": 128, + "flags": 65543, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1513167681 + "hash": 283788561 }, - "m_text": { - "type": "std::wstring", - "id": 2, - "offset": 136, - "flags": 8388615, + "m_yaw": { + "type": "float", + "id": 5, + "offset": 132, + "flags": 65543, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1513565469 + "hash": 357256328 }, - "m_tooltip": { - "type": "std::wstring", - "id": 3, - "offset": 168, - "flags": 8388615, + "m_lotTemplateID": { + "type": "gid", + "id": 6, + "offset": 136, + "flags": 65543, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1896483715 + "hash": 1344354096 }, - "m_color": { - "type": "std::wstring", - "id": 4, - "offset": 200, - "flags": 262151, + "m_clusterGID": { + "type": "gid", + "id": 7, + "offset": 144, + "flags": 65543, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2084645847 + "hash": 112792526 }, - "m_colorOverride": { - "type": "bool", - "id": 5, - "offset": 232, - "flags": 7, + "m_structureInstanceGID": { + "type": "gid", + "id": 8, + "offset": 152, + "flags": 65543, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1098799506 + "hash": 2083588818 }, - "m_wide": { - "type": "int", - "id": 6, - "offset": 236, - "flags": 7, + "m_structureTemplateID": { + "type": "gid", + "id": 9, + "offset": 160, + "flags": 65543, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 219992003 + "hash": 825960402 }, - "m_useCase": { - "type": "enum MadlibIconUseCase", - "id": 7, - "offset": 240, - "flags": 2097159, + "m_isOutside": { + "type": "bool", + "id": 10, + "offset": 168, + "flags": 65543, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3032762361, - "enum_options": { - "MIUC_Default": 0, - "MIUC_SpellDescription": 1, - "MIUC_AdvancedSpellDescription": 2, - "MIUC_CombatMessage": 3, - "MIUC_CustomCombatMessage": 4, - "MIUC_DescriptionCombatHUD": 5 - } + "hash": 1999324940 } } }, - "1905494055": { - "name": "class UnShadowSelfCinematicAction", + "1915886495": { + "name": "class SharedPointer", "bases": [ - "CinematicAction", "PropertyClass" ], - "hash": 1905494055, + "hash": 1915886495, "properties": { - "m_timeOffset": { - "type": "float", + "m_stateNameID": { + "type": "unsigned int", "id": 0, "offset": 72, - "flags": 7, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 + "hash": 2039264668 } } }, - "757720884": { - "name": "class MobMonsterMagicBehaviorTemplate*", + "204818717": { + "name": "class TutorialZoneMod", "bases": [ - "BehaviorTemplate", "PropertyClass" ], - "hash": 757720884, + "hash": 204818717, "properties": { - "m_behaviorName": { - "type": "std::string", + "m_stageMin": { + "type": "int", "id": 0, "offset": 72, "flags": 7, @@ -399269,200 +64541,273 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 3130754092 + "hash": 353899634 }, - "m_worldName": { - "type": "std::string", + "m_stageMax": { + "type": "int", "id": 1, - "offset": 120, + "offset": 76, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1846757476 + "hash": 353899380 }, - "m_collectionResistance": { - "type": "int", + "m_zoneEvents": { + "type": "std::string", "id": 2, - "offset": 152, + "offset": 112, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 717150423 + "hash": 2188728076 }, - "m_isBoss": { - "type": "bool", + "m_zone": { + "type": "std::string", "id": 3, - "offset": 156, + "offset": 80, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 569602950 - }, - "m_essencesPerSummonTC": { - "type": "int", - "id": 4, - "offset": 160, + "hash": 1717806295 + } + } + }, + "1061896202": { + "name": "class RegisterPersonaCinematicAction*", + "bases": [ + "CinematicAction", + "PropertyClass" + ], + "hash": 1061896202, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2052433520 + "hash": 2237098605 }, - "m_goldPerSummonTC": { - "type": "int", - "id": 5, - "offset": 164, + "m_persona": { + "type": "class Persona*", + "id": 1, + "offset": 80, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1978867293 - }, - "m_essencesPerHouseGuest": { + "pointer": true, + "hash": 2350440768 + } + } + }, + "204823837": { + "name": "class TutorialZoneMod*", + "bases": [ + "PropertyClass" + ], + "hash": 204823837, + "properties": { + "m_stageMin": { "type": "int", - "id": 6, - "offset": 168, + "id": 0, + "offset": 72, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 254219206 + "hash": 353899634 }, - "m_goldPerHouseGuest": { + "m_stageMax": { "type": "int", - "id": 7, - "offset": 172, + "id": 1, + "offset": 76, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1744976627 + "hash": 353899380 }, - "m_essencesPerKillTC": { - "type": "int", - "id": 8, - "offset": 176, + "m_zoneEvents": { + "type": "std::string", + "id": 2, + "offset": 112, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2188728076 + }, + "m_zone": { + "type": "std::string", + "id": 3, + "offset": 80, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 305653757 + "hash": 1717806295 + } + } + }, + "1488543415": { + "name": "class SharedPointer", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1488543415, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + } + } + }, + "1923422179": { + "name": "class WhirlyBurlyOption*", + "bases": [ + "ServiceOptionBase", + "PropertyClass" + ], + "hash": 1923422179, + "properties": { + "m_serviceName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2206028813 }, - "m_goldPerKillTC": { - "type": "int", - "id": 9, - "offset": 180, - "flags": 7, + "m_iconKey": { + "type": "std::string", + "id": 1, + "offset": 168, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 910983338 + "hash": 2457138637 }, - "m_houseGuestTemplateID": { - "type": "unsigned int", - "id": 10, - "offset": 184, - "flags": 7, + "m_displayKey": { + "type": "std::string", + "id": 2, + "offset": 104, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 612813314 + "hash": 3023276954 }, - "m_alternateMobTemplateID": { + "m_serviceIndex": { "type": "unsigned int", - "id": 11, - "offset": 188, - "flags": 7, + "id": 3, + "offset": 204, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 233156212 + "hash": 2103126710 }, - "m_collectedAsTemplateID": { - "type": "unsigned int", - "id": 12, - "offset": 232, - "flags": 7, + "m_forceInteract": { + "type": "bool", + "id": 4, + "offset": 200, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1661926425 + "hash": 1705789564 } } }, - "339187177": { - "name": "class ScoreTrackingList*", + "1063715655": { + "name": "class GroundContourBehavior*", "bases": [ + "BehaviorInstance", "PropertyClass" ], - "hash": 339187177, + "hash": 1063715655, "properties": { - "m_scores": { - "type": "class SharedPointer", + "m_behaviorTemplateNameID": { + "type": "unsigned int", "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1447258579 + "pointer": false, + "hash": 223437287 } } }, - "756318596": { - "name": "class FishBehavior", + "632214738": { + "name": "class SharedPointer", "bases": [ - "BehaviorInstance", + "BehaviorTemplate", "PropertyClass" ], - "hash": 756318596, + "hash": 632214738, "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", + "m_behaviorName": { + "type": "std::string", "id": 0, - "offset": 104, - "flags": 39, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 + "hash": 3130754092 }, - "m_fishSize": { - "type": "float", + "m_buttonDisplayName": { + "type": "std::string", "id": 1, - "offset": 112, - "flags": 65536, + "offset": 120, + "flags": 8388615, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1986368316 + "hash": 1916274798 } } }, - "1119272029": { - "name": "class PassInfo", + "1919200887": { + "name": "class SharedPointer", "bases": [ "PropertyClass" ], - "hash": 1119272029, + "hash": 1919200887, "properties": { "m_accessPassName": { "type": "std::string", @@ -399559,81 +64904,114 @@ } } }, - "338060383": { - "name": "class PetDerbyObstacleBehavior*", + "1063526101": { + "name": "class SetTopTeamCinematicAction*", "bases": [ - "BehaviorInstance", + "CinematicAction", "PropertyClass" ], - "hash": 338060383, + "hash": 1063526101, "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", + "m_timeOffset": { + "type": "float", "id": 0, - "offset": 104, - "flags": 39, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 + "hash": 2237098605 }, - "m_laneNumber": { - "type": "int", + "m_interpDuration": { + "type": "float", "id": 1, - "offset": 184, - "flags": 31, + "offset": 80, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 650028867 + "hash": 2237711951 + } + } + }, + "1489409676": { + "name": "class SharedPointer", + "bases": [ + "WinAnimMoveToLocation", + "WindowAnimation", + "PropertyClass" + ], + "hash": 1489409676, + "properties": { + "m_bUseDeepCopy": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 433380635 }, - "m_distanceFromStart": { - "type": "int", + "m_targetLocation": { + "type": "class Vector3D", + "id": 1, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2653859938 + }, + "m_fSpeed": { + "type": "float", "id": 2, - "offset": 188, - "flags": 31, + "offset": 96, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 649349799 + "hash": 503609006 } } }, - "1905506343": { - "name": "class ClientFXDef", + "630766317": { + "name": "class SharedPointer", "bases": [ - "FXDef", + "BehaviorTemplate", "PropertyClass" ], - "hash": 1905506343, + "hash": 630766317, "properties": { - "m_FXFile": { + "m_behaviorName": { "type": "std::string", "id": 0, "offset": 72, - "flags": 131079, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2810683385 + "hash": 3130754092 }, - "m_stackingCategory": { + "m_petTalentName": { "type": "std::string", "id": 1, - "offset": 104, + "offset": 120, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 2363740365 + "hash": 1985615789 }, - "m_repeatTime": { - "type": "float", + "m_minPetLevel": { + "type": "unsigned char", "id": 2, "offset": 136, "flags": 7, @@ -399641,476 +65019,738 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 453389511 + "hash": 1317483893 } } }, - "758327301": { - "name": "class MadlibIconData*", + "1918380102": { + "name": "class TextureRemapBehavior*", "bases": [ + "BehaviorInstance", "PropertyClass" ], - "hash": 758327301, + "hash": 1918380102, "properties": { - "m_token": { - "type": "std::string", + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_textureRemapList": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 3580415920 + } + } + }, + "205069278": { + "name": "class TieredSpellRetired*", + "bases": [ + "PropertyClass" + ], + "hash": 205069278, + "properties": { + "m_tieredSpellRetiredList": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 955625460 + } + } + }, + "1062174269": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1062174269, + "properties": { + "m_dialog": { + "type": "class SharedPointer", "id": 0, "offset": 72, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, + "pointer": true, + "hash": 440960800 + }, + "m_goalCount": { + "type": "int", + "id": 1, + "offset": 88, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, "pointer": false, - "hash": 2308819740 + "hash": 774266758 + } + } + }, + "630450326": { + "name": "class SharedPointer", + "bases": [ + "DerbyEffect", + "PropertyClass" + ], + "hash": 630450326, + "properties": { + "m_buffType": { + "type": "enum DerbyTalentBuffType", + "id": 0, + "offset": 92, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1149251982, + "enum_options": { + "Buff": 0, + "Debuff": 1, + "Neither": 2 + } }, - "m_icon": { - "type": "std::wstring", + "m_kTarget": { + "type": "enum DerbyTargetType", "id": 1, - "offset": 104, - "flags": 131079, + "offset": 96, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1513167681 + "hash": 1807803351, + "enum_options": { + "kTargetInFront": 0, + "kTargetBehind": 1, + "kTargetFirst": 2, + "kTargetSelf": 3, + "kTargetAll": 4, + "kTargetLast": 5 + } }, - "m_text": { - "type": "std::wstring", + "m_nDuration": { + "type": "int", "id": 2, - "offset": 136, - "flags": 8388615, + "offset": 104, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1513565469 + "hash": 1110167982 }, - "m_tooltip": { - "type": "std::wstring", + "m_effectID": { + "type": "unsigned int", "id": 3, - "offset": 168, - "flags": 8388615, + "offset": 88, + "flags": 24, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1896483715 + "hash": 2347630439 }, - "m_color": { - "type": "std::wstring", + "m_imageFilename": { + "type": "std::string", "id": 4, - "offset": 200, - "flags": 262151, + "offset": 112, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2084645847 + "hash": 2813328063 }, - "m_colorOverride": { - "type": "bool", + "m_iconIndex": { + "type": "unsigned int", "id": 5, - "offset": 232, - "flags": 7, + "offset": 144, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1098799506 + "hash": 1265133262 }, - "m_wide": { - "type": "int", + "m_soundOnActivate": { + "type": "std::string", "id": 6, - "offset": 236, - "flags": 7, + "offset": 152, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 219992003 + "hash": 1956929714 }, - "m_useCase": { - "type": "enum MadlibIconUseCase", + "m_soundOnTarget": { + "type": "std::string", "id": 7, - "offset": 240, - "flags": 2097159, + "offset": 184, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3032762361, - "enum_options": { - "MIUC_Default": 0, - "MIUC_SpellDescription": 1, - "MIUC_AdvancedSpellDescription": 2, - "MIUC_CombatMessage": 3, - "MIUC_CustomCombatMessage": 4, - "MIUC_DescriptionCombatHUD": 5 - } + "hash": 3444214056 + }, + "m_targetParticleEffect": { + "type": "std::string", + "id": 8, + "offset": 216, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3048234723 + }, + "m_overheadMessage": { + "type": "std::string", + "id": 9, + "offset": 248, + "flags": 8388639, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1701018190 + }, + "m_requirements": { + "type": "class RequirementList", + "id": 10, + "offset": 280, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2840988582 + }, + "m_bToDebuffs": { + "type": "bool", + "id": 11, + "offset": 376, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1216111639 } } }, - "1121346738": { - "name": "class MinigameInfo", + "1917852284": { + "name": "class WinAnimConcurrent", "bases": [ + "WinAnimContainer", + "WindowAnimation", "PropertyClass" ], - "hash": 1121346738, + "hash": 1917852284, "properties": { - "m_name": { - "type": "std::string", + "m_bUseDeepCopy": { + "type": "bool", "id": 0, "offset": 72, - "flags": 7, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1717359772 + "hash": 433380635 }, - "m_zone": { - "type": "std::string", + "m_winAnimList": { + "type": "class SharedPointer", "id": 1, - "offset": 104, - "flags": 268435463, - "container": "Static", - "dynamic": false, + "offset": 80, + "flags": 135, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 1717806295, - "enum_options": { - "__BASECLASS": "ZoneData" - } + "pointer": true, + "hash": 1941062728 }, - "m_iconArt": { - "type": "std::string", + "m_bLooping": { + "type": "bool", "id": 2, - "offset": 136, - "flags": 131079, + "offset": 104, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2457128171 + "hash": 2131020845 }, - "m_scoreThresholds": { - "type": "int", + "m_finishedAnimList": { + "type": "class SharedPointer", "id": 3, - "offset": 168, - "flags": 7, - "container": "Vector", + "offset": 112, + "flags": 135, + "container": "List", "dynamic": true, "singleton": false, + "pointer": true, + "hash": 3066650884 + } + } + }, + "630129460": { + "name": "class RemoveAuraCinematicAction*", + "bases": [ + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 630129460, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, "pointer": false, - "hash": 1790576374 + "hash": 2237098605 }, - "m_rewardTable": { + "m_actor": { "type": "std::string", - "id": 4, - "offset": 192, - "flags": 268435463, - "container": "Vector", - "dynamic": true, + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 2569041800, - "enum_options": { - "__BASECLASS": "LootTable" - } + "hash": 2285866132 } } }, - "1905911669": { - "name": "class ProvidePetPowerTemplate", + "1062387633": { + "name": "class SharedPointer", "bases": [ - "GameEffectTemplate", "PropertyClass" ], - "hash": 1905911669, + "hash": 1062387633, "properties": { - "m_effectName": { - "type": "std::string", + "m_playerProgressList": { + "type": "class SharedPointer", "id": 0, "offset": 72, "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1898798624 + } + } + }, + "1491635770": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1491635770, + "properties": { + "m_characterID": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2029161513 + "hash": 210498386 }, - "m_effectCategory": { - "type": "std::string", + "m_tournamentNameID": { + "type": "unsigned int", "id": 1, - "offset": 104, - "flags": 7, + "offset": 84, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1852673222 + "hash": 1799846440 }, - "m_sortOrder": { - "type": "int", + "m_matchNameID": { + "type": "unsigned int", "id": 2, - "offset": 148, - "flags": 7, + "offset": 80, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1411218206 + "hash": 1751361288 }, - "m_duration": { - "type": "double", + "m_leagueID": { + "type": "unsigned int", "id": 3, - "offset": 192, - "flags": 7, + "offset": 88, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2727932435 + "hash": 692361645 }, - "m_stackingCategories": { - "type": "std::string", + "m_seasonID": { + "type": "unsigned int", "id": 4, - "offset": 160, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1774497525 - }, - "m_isPersistent": { - "type": "bool", - "id": 5, - "offset": 153, - "flags": 7, + "offset": 92, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 923861920 + "hash": 535260643 }, - "m_bIsOnPet": { - "type": "bool", - "id": 6, - "offset": 154, + "m_teams": { + "type": "class SharedPointer", + "id": 5, + "offset": 96, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1984373608 + } + } + }, + "629854251": { + "name": "class PauseAction*", + "bases": [ + "PathBehaviorTemplate::Action", + "PropertyClass" + ], + "hash": 629854251, + "properties": { + "m_nPathID": { + "type": "gid", + "id": 0, + "offset": 72, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 522593303 + "hash": 214382368 }, - "m_isPublic": { - "type": "bool", - "id": 7, - "offset": 152, + "m_nNodeID": { + "type": "int", + "id": 1, + "offset": 80, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1728439822 + "hash": 152152635, + "enum_options": { + "__DEFAULT": 4294967295 + } }, - "m_visualEffectAddName": { - "type": "std::string", - "id": 8, - "offset": 200, + "m_nPriority": { + "type": "int", + "id": 2, + "offset": 84, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3382086694 + "hash": 1515251530, + "enum_options": { + "__DEFAULT": 100 + } }, - "m_visualEffectRemoveName": { - "type": "std::string", - "id": 9, - "offset": 232, + "m_nChance": { + "type": "int", + "id": 3, + "offset": 88, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1541697323 + "hash": 1860748394, + "enum_options": { + "__DEFAULT": 50 + } }, - "m_onAddFunctorName": { - "type": "std::string", - "id": 10, - "offset": 280, + "m_fMinPauseTime": { + "type": "float", + "id": 4, + "offset": 96, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1561843107 + "hash": 388964206 }, - "m_onRemoveFunctorName": { - "type": "std::string", - "id": 11, - "offset": 312, + "m_fMaxPauseTime": { + "type": "float", + "id": 5, + "offset": 100, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2559017864 - }, - "m_stackingRule": { - "type": "enum STACKING_RULE", - "id": 12, - "offset": 144, - "flags": 2097159, + "hash": 347283632 + } + } + }, + "206068909": { + "name": "class BaseClientHousingBlobStrategy", + "bases": [ + "BlobCacheInterface", + "PropertyClass" + ], + "hash": 206068909, + "properties": {} + }, + "1491562027": { + "name": "class ArenaPointsLootInfo", + "bases": [ + "LootInfo", + "LootInfoBase", + "PropertyClass" + ], + "hash": 1491562027, + "properties": { + "m_lootType": { + "type": "enum LootInfo::LOOT_TYPE", + "id": 0, + "offset": 72, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 431568889, + "hash": 1591891442, "enum_options": { - "STACKING_ALLOWED": 0, - "STACKING_NOSTACK": 1, - "STACKING_REPLACE": 2 + "LOOT_TYPE_NONE": 0, + "LOOT_TYPE_GOLD": 1, + "LOOT_TYPE_MANA": 2, + "LOOT_TYPE_ITEM": 3, + "LOOT_TYPE_TREASURE_CARD": 4, + "LOOT_TYPE_MAGIC_XP": 5, + "LOOT_TYPE_ADD_SPELL": 6, + "LOOT_TYPE_MAX_HEALTH": 7, + "LOOT_TYPE_MAX_GOLD": 8, + "LOOT_TYPE_MAX_MANA": 9, + "LOOT_TYPE_MAX_POTION": 10, + "LOOT_TYPE_TRAINING_POINTS": 11, + "LOOT_TYPE_RECIPE": 12, + "LOOT_TYPE_CRAFTING_SLOT": 13, + "LOOT_TYPE_REAGENT": 14, + "LOOT_TYPE_PETSNACK": 15, + "LOOT_TYPE_GARDENING_XP": 16, + "LOOT_TYPE_PET_XP": 17, + "LOOT_TYPE_TREASURE_TABLE": 18, + "LOOT_TYPE_ARENA_POINTS": 19, + "LOOT_TYPE_ARENA_BONUS_POINTS": 20, + "LOOT_TYPE_GROUP": 21, + "LOOT_TYPE_FISHING_XP": 22, + "LOOT_TYPE_EVENT_CURRENCY_1": 24, + "LOOT_TYPE_EVENT_CURRENCY_2": 25, + "LOOT_TYPE_PVP_CURRENCY": 26, + "LOOT_TYPE_PVP_CURRENCY_BONUS": 27, + "LOOT_TYPE_PVP_TOURNEY_CURRENCY": 28, + "LOOT_TYPE_PVP_TOURNEY_CURRENCY_BONUS": 29, + "LOOT_TYPE_FURNITURE_ESSENCE": 30 } + }, + "m_arenaPointsAmount": { + "type": "int", + "id": 1, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2041106034 } } }, - "340052069": { - "name": "class SG_GameBlockType*", + "1918630585": { + "name": "class Search::ResultList*", "bases": [ "PropertyClass" ], - "hash": 340052069, + "hash": 1918630585, "properties": { - "m_adjective": { - "type": "std::string", + "m_items": { + "type": "class SharedPointer", "id": 0, "offset": 72, "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3429518154 - }, - "m_subTypePointPairs": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 7, "container": "List", "dynamic": true, "singleton": false, - "pointer": false, - "hash": 2463625808 + "pointer": true, + "hash": 1610486152 }, - "m_pointsGainedList": { - "type": "std::string", - "id": 2, - "offset": 120, + "m_requestHandle": { + "type": "gid", + "id": 1, + "offset": 88, "flags": 7, - "container": "List", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 1744394364 + "hash": 563564461 } } }, - "1119821118": { - "name": "class AlphaMaskTextureD3D", + "205985930": { + "name": "class GameEffectTimerDisplayBehavior", "bases": [ - "TextureD3D", - "Texture", + "BehaviorInstance", "PropertyClass" ], - "hash": 1119821118, + "hash": 205985930, "properties": { - "m_sFilename": { - "type": "std::string", + "m_behaviorTemplateNameID": { + "type": "unsigned int", "id": 0, "offset": 104, - "flags": 131207, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2431512111 + "hash": 223437287 }, - "m_bAlphaChannel": { - "type": "bool", + "m_effectName": { + "type": "std::string", "id": 1, - "offset": 137, - "flags": 135, + "offset": 112, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1780697684 + "hash": 2029161513 }, - "m_bDoubleSided": { - "type": "bool", + "m_textKey": { + "type": "std::string", "id": 2, - "offset": 138, - "flags": 135, + "offset": 144, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1054874233 + "hash": 1720060457 }, - "m_bMipMap": { - "type": "bool", + "m_height": { + "type": "float", "id": 3, - "offset": 139, - "flags": 135, + "offset": 176, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1791042393 - } - } - }, - "339928888": { - "name": "class SpringboardNodeDescriptor", - "bases": [ - "NodeDescriptor", - "PropertyClass" - ], - "hash": 339928888, - "properties": { - "m_kAnimationState": { - "type": "enum SpringboardNodeDescriptor::AnimationState", - "id": 0, - "offset": 72, - "flags": 2097159, + "hash": 602977104 + }, + "m_zOffset": { + "type": "float", + "id": 4, + "offset": 180, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1775415814, - "enum_options": { - "Down": 0, - "Shake": 1, - "PopUp": 2, - "Up": 3, - "Reset": 4 - } + "hash": 736134072 + }, + "m_red": { + "type": "unsigned char", + "id": 5, + "offset": 184, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 904647115 + }, + "m_green": { + "type": "unsigned char", + "id": 6, + "offset": 185, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1433403873 + }, + "m_blue": { + "type": "unsigned char", + "id": 7, + "offset": 186, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 856840600 + }, + "m_triggers": { + "type": "class SharedPointer", + "id": 8, + "offset": 192, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 3290329276 } } }, - "1119490211": { - "name": "class PetJewelControl", + "1490590268": { + "name": "class SharedPointer", "bases": [ - "PetTalentControlBase", + "ZoneTokenBaseControl", "Window", "PropertyClass" ], - "hash": 1119490211, + "hash": 1490590268, "properties": { "m_sName": { "type": "std::string", @@ -400127,7 +65767,7 @@ "type": "class SharedPointer", "id": 1, "offset": 112, - "flags": 65667, + "flags": 65671, "container": "Vector", "dynamic": true, "singleton": false, @@ -400325,984 +65965,806 @@ } } }, - "758954654": { - "name": "class std::list >", - "bases": [], - "hash": 758954654, - "properties": {} - }, - "1119487139": { - "name": "class PetJewelControl*", + "1918380142": { + "name": "class TextureRemapBehavior", "bases": [ - "PetTalentControlBase", - "Window", + "BehaviorInstance", "PropertyClass" ], - "hash": 1119487139, + "hash": 1918380142, "properties": { - "m_sName": { - "type": "std::string", + "m_behaviorTemplateNameID": { + "type": "unsigned int", "id": 0, - "offset": 80, - "flags": 135, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2306437263 + "hash": 223437287 }, - "m_Children": { - "type": "class SharedPointer", + "m_textureRemapList": { + "type": "class SharedPointer", "id": 1, "offset": 112, - "flags": 65667, - "container": "Vector", + "flags": 31, + "container": "List", "dynamic": true, "singleton": false, "pointer": true, - "hash": 2621225959 + "hash": 3580415920 + } + } + }, + "205859154": { + "name": "class SharedPointer", + "bases": [ + "NamedEffect", + "GameEffectBase", + "PropertyClass" + ], + "hash": 205859154, + "properties": { + "m_currentTickCount": { + "type": "double", + "id": 0, + "offset": 80, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2533274692 }, - "m_Style": { + "m_effectNameID": { "type": "unsigned int", + "id": 1, + "offset": 96, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1204067144 + }, + "m_bIsOnPet": { + "type": "bool", "id": 2, - "offset": 152, - "flags": 1048583, + "offset": 73, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "SCALE_CHILDREN": 2, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "FOCUS_LOCKED": 64, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152 - } + "hash": 522593303 }, - "m_Flags": { - "type": "unsigned int", + "m_originatorID": { + "type": "gid", "id": 3, - "offset": 156, - "flags": 1048583, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } + "hash": 1131810019 }, - "m_Window": { - "type": "class Rect", + "m_itemSlotID": { + "type": "unsigned int", "id": 4, - "offset": 160, - "flags": 135, + "offset": 112, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3105139380 + "hash": 1895747595 }, - "m_fTargetAlpha": { - "type": "float", + "m_internalID": { + "type": "int", "id": 5, - "offset": 212, - "flags": 135, + "offset": 92, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1809129834 + "hash": 1643137924 }, - "m_fDisabledAlpha": { - "type": "float", + "m_endTime": { + "type": "unsigned int", "id": 6, - "offset": 216, - "flags": 135, + "offset": 88, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1389987675 + "hash": 716479635 }, - "m_fAlpha": { - "type": "float", + "m_overrideName": { + "type": "std::string", "id": 7, - "offset": 208, - "flags": 65671, + "offset": 128, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 482130755 + "hash": 1990707228 }, - "m_pWindowStyle": { - "type": "class SharedPointer", + "m_startReqs": { + "type": "class SharedPointer", "id": 8, - "offset": 232, - "flags": 135, + "offset": 168, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": true, - "hash": 3623628394 + "hash": 3147529602 }, - "m_sHelp": { - "type": "std::wstring", + "m_startResults": { + "type": "class SharedPointer", "id": 9, - "offset": 248, - "flags": 4194439, + "offset": 184, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 2102211316 + "pointer": true, + "hash": 2094517692 }, - "m_sScript": { - "type": "std::string", + "m_endResults": { + "type": "class SharedPointer", "id": 10, - "offset": 352, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1846695875 - }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, + "offset": 200, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 3389835433 - }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, + "pointer": true, + "hash": 2118364133 + } + } + }, + "1063618991": { + "name": "class VisibilityBehavior*", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1063618991, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2547159940 + "hash": 223437287 }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, - "container": "Static", - "dynamic": false, + "m_showTo": { + "type": "gid", + "id": 1, + "offset": 112, + "flags": 31, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 1513510520 + "hash": 947039004 }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, + "m_hideFrom": { + "type": "gid", + "id": 2, + "offset": 128, + "flags": 31, "container": "List", "dynamic": true, "singleton": false, "pointer": false, - "hash": 2587533771 + "hash": 642644390 }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, + "m_visible": { + "type": "bool", + "id": 3, + "offset": 144, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3091503757 + "hash": 810536225 } } }, - "1907948479": { - "name": "class SharedPointer", + "630223422": { + "name": "class PathActionChangeDirection*", "bases": [ - "CantripsInvisibilityEffect", - "GameEffectBase", + "PathBehaviorTemplate::Action", "PropertyClass" ], - "hash": 1907948479, + "hash": 630223422, "properties": { - "m_currentTickCount": { - "type": "double", + "m_nPathID": { + "type": "gid", "id": 0, - "offset": 80, - "flags": 63, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2533274692 + "hash": 214382368 }, - "m_effectNameID": { - "type": "unsigned int", + "m_nNodeID": { + "type": "int", "id": 1, - "offset": 96, - "flags": 63, + "offset": 80, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1204067144 + "hash": 152152635, + "enum_options": { + "__DEFAULT": 4294967295 + } }, - "m_bIsOnPet": { - "type": "bool", + "m_nPriority": { + "type": "int", "id": 2, - "offset": 73, - "flags": 31, + "offset": 84, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 522593303 + "hash": 1515251530, + "enum_options": { + "__DEFAULT": 100 + } }, - "m_originatorID": { - "type": "gid", + "m_nChance": { + "type": "int", "id": 3, - "offset": 104, - "flags": 39, + "offset": 88, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1131810019 - }, - "m_itemSlotID": { + "hash": 1860748394, + "enum_options": { + "__DEFAULT": 50 + } + } + } + }, + "1919034511": { + "name": "class SharedPointer", + "bases": [ + "ClientTimedItemBehavior", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1919034511, + "properties": { + "m_behaviorTemplateNameID": { "type": "unsigned int", - "id": 4, - "offset": 112, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1895747595 - }, - "m_internalID": { - "type": "int", - "id": 5, - "offset": 92, - "flags": 63, + "id": 0, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1643137924 + "hash": 223437287 }, - "m_endTime": { + "m_expireTime": { "type": "unsigned int", - "id": 6, - "offset": 88, - "flags": 31, + "id": 1, + "offset": 112, + "flags": 59, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 716479635 + "hash": 1836304873 } } }, - "758920323": { - "name": "class BadgeLeaderboardInfoList", + "206019058": { + "name": "class MountRecord*", "bases": [ "PropertyClass" ], - "hash": 758920323, + "hash": 206019058, "properties": { - "m_badgeLeaderboardInfoList": { - "type": "class SharedPointer", + "m_nVolumeType": { + "type": "enum MountRecord::VolumeTypes", "id": 0, "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, + "flags": 2097159, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3286468481 + "pointer": false, + "hash": 2832170609, + "enum_options": { + "DISK": 1, + "DSA": 2, + "WAD": 3 + } }, - "m_page": { - "type": "int", + "m_sOption": { + "type": "std::string", "id": 1, - "offset": 88, + "offset": 80, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 219731831 + "hash": 1705643111 }, - "m_extraCredit": { - "type": "bool", + "m_nPriority": { + "type": "int", "id": 2, - "offset": 92, + "offset": 112, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 847737554 + "hash": 1515251530 }, - "m_totalEntries": { - "type": "int", + "m_sMount": { + "type": "std::string", "id": 3, - "offset": 96, + "offset": 120, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 682683672 + "hash": 2412733857 }, - "m_isFriends": { + "m_bWritable": { "type": "bool", "id": 4, - "offset": 100, + "offset": 152, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 982582490 + "hash": 1522487983 } } }, - "1906855338": { - "name": "class RandomSpellEffect", + "1064136717": { + "name": "class ClientElixirBenefitBehavior", "bases": [ - "SpellEffect", + "ClientElixirBehavior", + "ClientTimedItemBehavior", + "BehaviorInstance", "PropertyClass" ], - "hash": 1906855338, + "hash": 1064136717, "properties": { - "m_effectType": { - "type": "enum SpellEffect::kSpellEffects", + "m_behaviorTemplateNameID": { + "type": "unsigned int", "id": 0, - "offset": 72, - "flags": 2097183, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2578255295, - "enum_options": { - "kInvalidSpellEffect": 0, - "kDamage": 1, - "kDamageNoCrit": 2, - "kHeal": 3, - "kHealPercent": 4, - "kSetHealPercent": 113, - "kStealHealth": 5, - "kReduceOverTime": 6, - "kDetonateOverTime": 7, - "kPushCharm": 8, - "kStealCharm": 9, - "kPushWard": 10, - "kStealWard": 11, - "kPushOverTime": 12, - "kStealOverTime": 13, - "kRemoveCharm": 14, - "kRemoveWard": 15, - "kRemoveOverTime": 16, - "kRemoveAura": 17, - "kSwapAll": 18, - "kSwapCharm": 19, - "kSwapWard": 20, - "kSwapOverTime": 21, - "kModifyIncomingDamage": 22, - "kModifyIncomingDamageFlat": 119, - "kMaximumIncomingDamage": 23, - "kModifyIncomingHeal": 24, - "kModifyIncomingHealFlat": 118, - "kModifyIncomingDamageType": 25, - "kModifyIncomingArmorPiercing": 26, - "kModifyOutgoingDamage": 27, - "kModifyOutgoingDamageFlat": 121, - "kModifyOutgoingHeal": 28, - "kModifyOutgoingHealFlat": 120, - "kModifyOutgoingDamageType": 29, - "kModifyOutgoingArmorPiercing": 30, - "kModifyOutgoingStealHealth": 31, - "kModifyIncomingStealHealth": 32, - "kBounceNext": 33, - "kBouncePrevious": 34, - "kBounceBack": 35, - "kBounceAll": 36, - "kAbsorbDamage": 37, - "kAbsorbHeal": 38, - "kModifyAccuracy": 39, - "kDispel": 40, - "kConfusion": 41, - "kCloakedCharm": 42, - "kCloakedWard": 43, - "kStunResist": 44, - "kClue": 111, - "kPipConversion": 45, - "kCritBoost": 46, - "kCritBlock": 47, - "kPolymorph": 48, - "kDelayCast": 49, - "kModifyCardCloak": 50, - "kModifyCardDamage": 51, - "kModifyCardAccuracy": 53, - "kModifyCardMutation": 54, - "kModifyCardRank": 55, - "kModifyCardArmorPiercing": 56, - "kSummonCreature": 65, - "kTeleportPlayer": 66, - "kStun": 67, - "kDampen": 68, - "kReshuffle": 69, - "kMindControl": 70, - "kModifyPips": 71, - "kModifyPowerPips": 72, - "kModifyShadowPips": 73, - "kModifyHate": 74, - "kDamageOverTime": 75, - "kHealOverTime": 76, - "kModifyPowerPipChance": 77, - "kModifyRank": 78, - "kStunBlock": 79, - "kRevealCloak": 80, - "kInstantKill": 81, - "kAfterlife": 82, - "kDeferredDamage": 83, - "kDamagePerTotalPipPower": 84, - "kModifyCardHeal": 52, - "kModifyCardCharm": 57, - "kModifyCardWard": 58, - "kModifyCardOutgoingDamage": 59, - "kModifyCardOutgoingAccuracy": 60, - "kModifyCardOutgoingHeal": 61, - "kModifyCardOutgoingArmorPiercing": 62, - "kModifyCardIncomingDamage": 63, - "kModifyCardAbsorbDamage": 64, - "kCloakedWardNoRemove": 86, - "kAddCombatTriggerList": 87, - "kRemoveCombatTriggerList": 88, - "kBacklashDamage": 89, - "kModifyBacklash": 90, - "kIntercept": 91, - "kShadowSelf": 92, - "kShadowCreature": 93, - "kModifyShadowCreatureLevel": 94, - "kSelectShadowCreatureAttackTarget": 95, - "kShadowDecrementTurn": 96, - "kCritBoostSchoolSpecific": 97, - "kSpawnCreature": 98, - "kUnPolymorph": 99, - "kPowerPipConversion": 100, - "kProtectCardBeneficial": 101, - "kProtectCardHarmful": 102, - "kProtectBeneficial": 103, - "kProtectHarmful": 104, - "kDivideDamage": 105, - "kCollectEssence": 106, - "kKillCreature": 107, - "kDispelBlock": 108, - "kConfusionBlock": 109, - "kModifyPipRoundRate": 110, - "kMaxHealthDamage": 112, - "kUntargetable": 114, - "kMakeTargetable": 115, - "kForceTargetable": 116, - "kRemoveStunBlock": 117, - "kExitCombat": 122, - "kSuspendPips": 123, - "kResumePips": 124, - "kAutoPass": 125, - "kStopAutoPass": 126, - "kVanish": 127, - "kStopVanish": 128, - "kMaxHealthHeal": 129, - "kHealByWard": 130, - "kTaunt": 131, - "kPacify": 132, - "kRemoveTargetRestriction": 133, - "kConvertHangingEffect": 134, - "kAddSpellToDeck": 135, - "kAddSpellToHand": 136, - "kModifyIncomingDamageOverTime": 137, - "kModifyIncomingHealOverTime": 138, - "kModifyCardDamagebyRank": 139, - "kPushConvertedCharm": 140, - "kStealConvertedCharm": 141, - "kPushConvertedWard": 142, - "kStealConvertedWard": 143, - "kPushConvertedOverTime": 144, - "kStealConvertedOverTime": 145, - "kRemoveConvertedCharm": 146, - "kRemoveConvertedWard": 147, - "kRemoveConvertedOverTime": 148, - "kModifyOverTimeDuration": 149, - "kModifySchoolPips": 150 - } + "hash": 223437287 }, - "m_effectParam": { - "type": "int", + "m_expireTime": { + "type": "unsigned int", "id": 1, - "offset": 76, - "flags": 31, + "offset": 112, + "flags": 59, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 357920024 + "hash": 1836304873 }, - "m_disposition": { - "type": "enum SpellEffect::kHangingDisposition", + "m_statsApplied": { + "type": "bool", "id": 2, - "offset": 80, - "flags": 2097159, + "offset": 328, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1904841031, - "enum_options": { - "kBoth": 0, - "kBeneficial": 1, - "kHarmful": 2 - } - }, - "m_sDamageType": { + "hash": 828970945 + } + } + }, + "1492107403": { + "name": "class SharedPointer", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 1492107403, + "properties": { + "m_behaviorName": { "type": "std::string", - "id": 3, - "offset": 88, + "id": 0, + "offset": 72, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2501054223 + "hash": 3130754092 }, - "m_damageType": { - "type": "unsigned int", - "id": 4, - "offset": 84, - "flags": 31, + "m_housingPaletteType": { + "type": "int", + "id": 1, + "offset": 120, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 737882766 + "hash": 658067464 }, - "m_pipNum": { - "type": "int", - "id": 5, + "m_primaryTintColors": { + "type": "class Vector3D", + "id": 2, "offset": 128, "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2885436919 + }, + "m_secondaryTintColors": { + "type": "class Vector3D", + "id": 3, + "offset": 152, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 3624818395 + } + } + }, + "630590567": { + "name": "class GraphicalArenaBonusPoints", + "bases": [ + "GraphicalSpell", + "Spell", + "PropertyClass" + ], + "hash": 630590567, + "properties": { + "m_templateID": { + "type": "unsigned int", + "id": 0, + "offset": 128, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 830827539 + "hash": 1286746870 }, - "m_actNum": { - "type": "int", - "id": 6, - "offset": 132, + "m_enchantment": { + "type": "unsigned int", + "id": 1, + "offset": 80, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 236824866 + "hash": 2217886818 }, - "m_effectTarget": { - "type": "enum SpellEffect::kEffectTarget", - "id": 7, - "offset": 140, - "flags": 2097183, + "m_pipCost": { + "type": "class SharedPointer", + "id": 2, + "offset": 176, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 2458940523, - "enum_options": { - "kInvalidTarget": 0, - "kSpell": 1, - "kSpecificSpells": 2, - "kGlobal": 3, - "kEnemyTeam": 4, - "kEnemyTeamAllAtOnce": 5, - "kFriendlyTeam": 6, - "kFriendlyTeamAllAtOnce": 7, - "kEnemySingle": 8, - "kFriendlySingle": 9, - "kMinion": 10, - "kFriendlyMinion": 17, - "kEnemyMinion": 18, - "kSelf": 11, - "kAtLeastOneEnemy": 13, - "kPreselectedEnemySingle": 12, - "kMultiTargetEnemy": 14, - "kMultiTargetFriendly": 15, - "kFriendlySingleNotMe": 16 - } + "pointer": true, + "hash": 3605704820 }, - "m_numRounds": { + "m_regularAdjust": { "type": "int", - "id": 8, - "offset": 144, + "id": 3, + "offset": 192, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1229753829 + "hash": 1420453335 }, - "m_paramPerRound": { - "type": "int", - "id": 9, - "offset": 148, - "flags": 31, + "m_magicSchoolID": { + "type": "unsigned int", + "id": 4, + "offset": 136, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 683234234 + "hash": 893146499 }, - "m_healModifier": { - "type": "float", - "id": 10, - "offset": 152, + "m_accuracy": { + "type": "unsigned char", + "id": 5, + "offset": 132, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1317921248, - "enum_options": { - "__DEFAULT": "1.0" - } + "hash": 2273914939 }, - "m_spellTemplateID": { - "type": "unsigned int", - "id": 11, - "offset": 120, + "m_treasureCard": { + "type": "bool", + "id": 6, + "offset": 197, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 585567702 + "hash": 1764879128 }, - "m_enchantmentSpellTemplateID": { - "type": "unsigned int", - "id": 12, - "offset": 124, + "m_battleCard": { + "type": "bool", + "id": 7, + "offset": 198, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 246955115 + "hash": 1332843753 }, - "m_act": { + "m_itemCard": { "type": "bool", - "id": 13, - "offset": 136, + "id": 8, + "offset": 199, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 269510283 + "hash": 1683654300 }, - "m_cloaked": { + "m_sideBoard": { "type": "bool", - "id": 14, - "offset": 157, - "flags": 31, + "id": 9, + "offset": 200, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 7349510 + "hash": 1897838368 }, - "m_bypassProtection": { - "type": "bool", - "id": 15, - "offset": 159, + "m_spellID": { + "type": "unsigned int", + "id": 10, + "offset": 204, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1657138252 + "hash": 1697483258 }, - "m_armorPiercingParam": { - "type": "int", - "id": 16, - "offset": 160, + "m_leavesPlayWhenCastOverride": { + "type": "bool", + "id": 11, + "offset": 216, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2025530205 + "hash": 874407398 }, - "m_chancePerTarget": { - "type": "int", - "id": 17, - "offset": 164, - "flags": 31, + "m_cloaked": { + "type": "bool", + "id": 12, + "offset": 196, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 845426794 + "hash": 7349510 }, - "m_protected": { + "m_enchantmentSpellIsItemCard": { "type": "bool", - "id": 18, - "offset": 168, + "id": 13, + "offset": 76, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1445655037 + "hash": 531590701 }, - "m_converted": { - "type": "bool", - "id": 19, - "offset": 169, + "m_premutationSpellID": { + "type": "unsigned int", + "id": 14, + "offset": 112, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1590428797 + "hash": 1530256370 }, - "m_rank": { - "type": "int", - "id": 20, - "offset": 208, - "flags": 7, + "m_enchantedThisCombat": { + "type": "bool", + "id": 15, + "offset": 77, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 219803942 + "hash": 1895738923 }, - "m_effectList": { - "type": "class SharedPointer", - "id": 21, + "m_paramOverrides": { + "type": "class SharedPointer", + "id": 16, "offset": 224, - "flags": 7, + "flags": 31, "container": "List", "dynamic": true, "singleton": false, "pointer": true, - "hash": 707154804 - } - } - }, - "758582262": { - "name": "class SharedPointer", - "bases": [ - "Requirement", - "PropertyClass" - ], - "hash": 758582262, - "properties": { - "m_applyNOT": { - "type": "bool", - "id": 0, - "offset": 72, + "hash": 2061635599 + }, + "m_subEffectMeta": { + "type": "class SharedPointer", + "id": 17, + "offset": 240, "flags": 31, - "container": "Static", - "dynamic": false, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 1746328074, - "enum_options": { - "__DEFAULT": 0 - } + "pointer": true, + "hash": 1944101106 }, - "m_operator": { - "type": "enum Requirement::Operator", - "id": 1, - "offset": 76, - "flags": 2097183, + "m_delayEnchantment": { + "type": "bool", + "id": 18, + "offset": 257, + "flags": 287, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2672792317, - "enum_options": { - "ROP_AND": 0, - "ROP_OR": 1, - "__DEFAULT": "ROP_AND" - } - } - } - }, - "1906141963": { - "name": "class WhirlyBurlyAddGroup", - "bases": [ - "PropertyClass" - ], - "hash": 1906141963, - "properties": { - "m_playerList": { - "type": "gid", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1909774945 - } - } - }, - "342915709": { - "name": "class SeamstressOption", - "bases": [ - "ServiceOptionBase", - "PropertyClass" - ], - "hash": 342915709, - "properties": { - "m_serviceName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, + "hash": 191336919 + }, + "m_PvE": { + "type": "bool", + "id": 19, + "offset": 264, + "flags": 287, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2206028813 + "hash": 269492350 }, - "m_iconKey": { - "type": "std::string", - "id": 1, - "offset": 168, - "flags": 31, + "m_delayEnchantmentOrder": { + "type": "enum SpellEffect::kDelayOrder", + "id": 20, + "offset": 72, + "flags": 287, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2457138637 + "hash": 2526055263, + "enum_options": { + "SpellEffect::kAnyOrder": 0, + "SpellEffect::kFirst": 1, + "SpellEffect::kSecond": 2 + } }, - "m_displayKey": { - "type": "std::string", - "id": 2, - "offset": 104, + "m_roundAddedTC": { + "type": "int", + "id": 21, + "offset": 260, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3023276954 + "hash": 112365451 }, - "m_serviceIndex": { + "m_secondarySchoolID": { "type": "unsigned int", - "id": 3, - "offset": 204, - "flags": 31, + "id": 22, + "offset": 304, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2103126710 + "hash": 2081206026 }, - "m_forceInteract": { - "type": "bool", - "id": 4, - "offset": 200, + "m_fusionState": { + "type": "enum Spell::FusionState", + "id": 23, + "offset": 308, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1705789564 + "hash": 835324539, + "enum_options": { + "FS_Invalid": 0, + "FS_Partial": 1, + "FS_Valid": 2 + } } } }, - "1119606947": { - "name": "class FishingXPConfig*", + "1063716423": { + "name": "class GroundContourBehavior", "bases": [ + "BehaviorInstance", "PropertyClass" ], - "hash": 1119606947, + "hash": 1063716423, "properties": { - "m_levelInfo": { - "type": "class FishingLevelInfo*", + "m_behaviorTemplateNameID": { + "type": "unsigned int", "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 4227148014 - }, - "m_maxLevel": { - "type": "unsigned char", - "id": 1, - "offset": 88, - "flags": 7, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 783962734 + "hash": 223437287 } } }, - "1906135662": { - "name": "class SharedPointer", + "1491832715": { + "name": "class ClientRotateActorCinematicAction*", "bases": [ + "RotateActorCinematicAction", + "ActorCinematicAction", + "CinematicAction", "PropertyClass" ], - "hash": 1906135662, + "hash": 1491832715, "properties": { - "m_itemTemplateID": { - "type": "unsigned int", + "m_timeOffset": { + "type": "float", "id": 0, "offset": 72, "flags": 7, @@ -401310,804 +66772,581 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 2190120133 + "hash": 2237098605 }, - "m_purchaseCount": { - "type": "int", + "m_actor": { + "type": "std::string", "id": 1, - "offset": 76, + "offset": 80, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 68125278 - } - } - }, - "341172316": { - "name": "class InfractionConfig*", - "bases": [ - "PropertyClass" - ], - "hash": 341172316, - "properties": { - "m_categories": { - "type": "class SharedPointer", - "id": 0, - "offset": 80, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": true, - "pointer": true, - "hash": 2474674612 - } - } - }, - "1119603875": { - "name": "class FishingXPConfig", - "bases": [ - "PropertyClass" - ], - "hash": 1119603875, - "properties": { - "m_levelInfo": { - "type": "class FishingLevelInfo*", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 4227148014 + "hash": 2285866132 }, - "m_maxLevel": { - "type": "unsigned char", - "id": 1, - "offset": 88, + "m_deltaYaw": { + "type": "float", + "id": 2, + "offset": 120, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 783962734 + "hash": 1518691890 } } }, - "340695854": { - "name": "class SharedPointer", + "1491810943": { + "name": "class SharedPointer", "bases": [ - "WindowLayout", - "Window", + "StatisticEffectTemplate", + "GameEffectTemplate", "PropertyClass" ], - "hash": 340695854, + "hash": 1491810943, "properties": { - "m_sName": { + "m_effectName": { "type": "std::string", "id": 0, - "offset": 80, - "flags": 135, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2306437263 + "hash": 2029161513 }, - "m_Children": { - "type": "class SharedPointer", + "m_effectCategory": { + "type": "std::string", "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2621225959 + "pointer": false, + "hash": 1852673222 }, - "m_Style": { - "type": "unsigned int", + "m_sortOrder": { + "type": "int", "id": 2, - "offset": 152, - "flags": 1048583, + "offset": 148, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152, - "H_CENTER": 16777216, - "H_RIGHT": 33554432, - "V_CENTER": 2147483648, - "V_BOTTOM": 67108864, - "SORT": 536870912, - "LAYOUT_VERT": 1073741824, - "LAYOUT_REVERSE": 2147483648, - "DO_NOT_WRAP": 134217728 - } + "hash": 1411218206 }, - "m_Flags": { - "type": "unsigned int", + "m_duration": { + "type": "double", "id": 3, - "offset": 156, - "flags": 1048583, + "offset": 192, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } + "hash": 2727932435 }, - "m_Window": { - "type": "class Rect", + "m_stackingCategories": { + "type": "std::string", "id": 4, "offset": 160, - "flags": 135, - "container": "Static", - "dynamic": false, + "flags": 7, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 3105139380 + "hash": 1774497525 }, - "m_fTargetAlpha": { - "type": "float", + "m_isPersistent": { + "type": "bool", "id": 5, - "offset": 212, - "flags": 135, + "offset": 153, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1809129834 + "hash": 923861920 }, - "m_fDisabledAlpha": { - "type": "float", + "m_bIsOnPet": { + "type": "bool", "id": 6, - "offset": 216, - "flags": 135, + "offset": 154, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1389987675 + "hash": 522593303 }, - "m_fAlpha": { - "type": "float", + "m_isPublic": { + "type": "bool", "id": 7, - "offset": 208, - "flags": 65671, + "offset": 152, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 482130755 + "hash": 1728439822 }, - "m_pWindowStyle": { - "type": "class SharedPointer", + "m_visualEffectAddName": { + "type": "std::string", "id": 8, - "offset": 232, - "flags": 135, + "offset": 200, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3623628394 + "pointer": false, + "hash": 3382086694 }, - "m_sHelp": { - "type": "std::wstring", + "m_visualEffectRemoveName": { + "type": "std::string", "id": 9, - "offset": 248, - "flags": 4194439, + "offset": 232, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2102211316 + "hash": 1541697323 }, - "m_sScript": { + "m_onAddFunctorName": { "type": "std::string", "id": 10, - "offset": 352, - "flags": 135, + "offset": 280, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1846695875 + "hash": 1561843107 }, - "m_Offset": { - "type": "class Point", + "m_onRemoveFunctorName": { + "type": "std::string", "id": 11, - "offset": 192, - "flags": 135, + "offset": 312, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3389835433 + "hash": 2559017864 }, - "m_Scale": { - "type": "class Point", + "m_stackingRule": { + "type": "enum STACKING_RULE", "id": 12, - "offset": 200, - "flags": 135, + "offset": 144, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2547159940 + "hash": 431568889, + "enum_options": { + "STACKING_ALLOWED": 0, + "STACKING_NOSTACK": 1, + "STACKING_REPLACE": 2 + } }, - "m_sTip": { - "type": "std::wstring", + "m_baseHitpoints": { + "type": "int", "id": 13, - "offset": 392, - "flags": 4194439, + "offset": 360, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1513510520 + "hash": 596105911 }, - "m_BubbleList": { - "type": "class WindowBubble", + "m_baseMana": { + "type": "int", "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, + "offset": 364, + "flags": 7, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 2587533771 + "hash": 1475495442 }, - "m_ParentOffset": { - "type": "class Rect", + "m_xpPercentIncrease": { + "type": "float", "id": 15, - "offset": 176, - "flags": 135, + "offset": 368, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3091503757 + "hash": 1051081338 }, - "m_nHSpacing": { - "type": "int", + "m_goldPercent": { + "type": "float", "id": 16, - "offset": 584, - "flags": 135, + "offset": 372, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 893611957 + "hash": 1095720878 }, - "m_nVSpacing": { - "type": "int", + "m_wispBonusPercent": { + "type": "float", "id": 17, - "offset": 588, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 551359491 - } - } - }, - "759044060": { - "name": "class WhirlyBurlyMovementDataAI", - "bases": [ - "PropertyClass" - ], - "hash": 759044060, - "properties": { - "m_unitType": { - "type": "unsigned char", - "id": 0, - "offset": 72, + "offset": 376, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1498103218 + "hash": 1304386546 }, - "m_cardUsed": { - "type": "unsigned int", - "id": 1, - "offset": 76, + "m_powerPipBonusPercent": { + "type": "float", + "id": 18, + "offset": 380, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1315653400 + "hash": 1671446341 }, - "m_passport": { - "type": "unsigned int", - "id": 2, - "offset": 80, + "m_shadowPipBonusPercent": { + "type": "float", + "id": 19, + "offset": 384, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1362521513 + "hash": 1426533310 }, - "m_unitMovementList": { - "type": "unsigned int", - "id": 3, - "offset": 88, + "m_shadowPipRating": { + "type": "float", + "id": 20, + "offset": 388, "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 687999892 - } - } - }, - "1906396756": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1906396756, - "properties": { - "m_state": { - "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1021505934 + "hash": 507126123 }, - "m_startTimeMS": { - "type": "unsigned int", - "id": 1, - "offset": 76, - "flags": 31, + "m_archmastery": { + "type": "float", + "id": 21, + "offset": 392, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 843207562 + "hash": 1963579610 }, - "m_snapshotT": { + "m_stunResistancePercent": { "type": "float", - "id": 2, - "offset": 80, - "flags": 31, + "id": 22, + "offset": 396, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1238335003 + "hash": 1868382627 }, - "m_snapshotMS": { - "type": "unsigned int", - "id": 3, - "offset": 84, - "flags": 31, + "m_balanceMastery": { + "type": "int", + "id": 23, + "offset": 400, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1589766845 + "hash": 149062181 }, - "m_endTimeMS": { - "type": "unsigned int", - "id": 4, - "offset": 88, - "flags": 31, + "m_deathMastery": { + "type": "int", + "id": 24, + "offset": 404, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 388403347 + "hash": 1421218661 }, - "m_durationMS": { - "type": "unsigned int", - "id": 5, - "offset": 92, - "flags": 31, + "m_fireMastery": { + "type": "int", + "id": 25, + "offset": 408, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2175220755 + "hash": 1431794949 }, - "m_timeScale": { - "type": "float", - "id": 6, - "offset": 96, - "flags": 31, + "m_iceMastery": { + "type": "int", + "id": 26, + "offset": 412, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 550426190 - } - } - }, - "341847115": { - "name": "class ParticipantList*", - "bases": [ - "PropertyClass" - ], - "hash": 341847115, - "properties": { - "m_partList": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 3068815683 - }, - "m_deckSize": { - "type": "unsigned int", - "id": 1, - "offset": 88, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1276516479 - }, - "m_totalDeckSize": { - "type": "unsigned int", - "id": 2, - "offset": 104, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2180827619 + "hash": 704864240 }, - "m_treasureCardAmount": { - "type": "unsigned int", - "id": 3, - "offset": 120, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 486812806 - } - } - }, - "1120788266": { - "name": "class SharedPointer", - "bases": [ - "AtticBehavior", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1120788266, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, + "m_lifeMastery": { + "type": "int", + "id": 27, + "offset": 416, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 + "hash": 2142136447 }, - "m_containerGID": { - "type": "gid", - "id": 1, - "offset": 112, - "flags": 63, + "m_mythMastery": { + "type": "int", + "id": 28, + "offset": 420, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 550557519 + "hash": 1766317185 }, - "m_atticItemCount": { + "m_stormMastery": { "type": "int", - "id": 2, - "offset": 120, - "flags": 63, + "id": 29, + "offset": 424, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 184605671 - } - } - }, - "341270620": { - "name": "class InfractionConfig", - "bases": [ - "PropertyClass" - ], - "hash": 341270620, - "properties": { - "m_categories": { - "type": "class SharedPointer", - "id": 0, - "offset": 80, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": true, - "pointer": true, - "hash": 2474674612 - } - } - }, - "772185668": { - "name": "class RateMyStitchOption", - "bases": [ - "ServiceOptionBase", - "PropertyClass" - ], - "hash": 772185668, - "properties": { - "m_serviceName": { + "hash": 1883988244 + }, + "m_school": { "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, + "id": 30, + "offset": 432, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2206028813 + "hash": 2438566051 }, - "m_iconKey": { - "type": "std::string", - "id": 1, - "offset": 168, - "flags": 31, + "m_pipConversionRating": { + "type": "float", + "id": 31, + "offset": 464, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2457138637 + "hash": 246855691 }, - "m_displayKey": { - "type": "std::string", - "id": 2, - "offset": 104, - "flags": 31, + "m_criticalHitRating": { + "type": "float", + "id": 32, + "offset": 468, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3023276954 + "hash": 1978690540 }, - "m_serviceIndex": { - "type": "unsigned int", - "id": 3, - "offset": 204, - "flags": 31, + "m_blockRating": { + "type": "float", + "id": 33, + "offset": 472, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2103126710 + "hash": 2088486759 }, - "m_forceInteract": { - "type": "bool", - "id": 4, - "offset": 200, - "flags": 31, + "m_dmgBonusPercent": { + "type": "float", + "id": 34, + "offset": 476, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1705789564 - } - } - }, - "1120049690": { - "name": "class SpellbookBehaviorTemplate*", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 1120049690, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, + "hash": 194501159 + }, + "m_dmgBonusFlat": { + "type": "float", + "id": 35, + "offset": 480, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3130754092 + "hash": 1837769725 }, - "m_spellbook": { - "type": "std::string", - "id": 1, - "offset": 120, + "m_accBonusPercent": { + "type": "float", + "id": 36, + "offset": 484, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2689219302 - } - } - }, - "1907878682": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1907878682, - "properties": { - "m_playerGID": { - "type": "gid", - "id": 0, - "offset": 72, + "hash": 331557526 + }, + "m_apBonusPercent": { + "type": "float", + "id": 37, + "offset": 488, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 578537369 + "hash": 1228557984 }, - "m_packedName": { - "type": "unsigned int", - "id": 1, - "offset": 80, + "m_dmgReducePercent": { + "type": "float", + "id": 38, + "offset": 492, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 518911062 + "hash": 1426050712 }, - "m_points": { - "type": "unsigned int", - "id": 2, - "offset": 84, + "m_dmgReduceFlat": { + "type": "float", + "id": 39, + "offset": 496, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1049128778 - } - } - }, - "764247145": { - "name": "class CastleBlocksBehaviorTemplate*", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 764247145, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, + "hash": 1218184718 + }, + "m_accReducePercent": { + "type": "float", + "id": 40, + "offset": 500, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3130754092 + "hash": 1653943527 }, - "m_providesFloor": { - "type": "int", - "id": 1, - "offset": 120, + "m_healBonusPercent": { + "type": "float", + "id": 41, + "offset": 504, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1381462216 + "hash": 562313577 }, - "m_placedOnFloorTemplateID": { - "type": "unsigned int", - "id": 2, - "offset": 124, - "flags": 33554439, + "m_healIncBonusPercent": { + "type": "float", + "id": 42, + "offset": 508, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 349311070 + "hash": 2182535587 }, - "m_pickedupFromFloorTemplateID": { - "type": "unsigned int", - "id": 3, - "offset": 128, - "flags": 33554439, + "m_fishingLuckBonusPercent": { + "type": "float", + "id": 43, + "offset": 512, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1208761121 - }, - "m_hasFadeableCeiling": { - "type": "int", - "id": 4, - "offset": 132, + "hash": 1363349254 + } + } + }, + "1921148831": { + "name": "class CastleMagicCinematicEffect*", + "bases": [ + "PropertyClass" + ], + "hash": 1921148831, + "properties": {} + }, + "206696055": { + "name": "class MapInfoRequirementsRequest*", + "bases": [ + "PropertyClass" + ], + "hash": 206696055, + "properties": { + "m_id": { + "type": "unsigned int", + "id": 0, + "offset": 72, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2119980373 + "hash": 2301988666 }, - "m_dontFadeCeiling": { - "type": "int", - "id": 5, - "offset": 136, + "m_serializedRequirements": { + "type": "std::string", + "id": 1, + "offset": 80, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 373748538 + "hash": 1527408971 } } }, - "1906907949": { - "name": "class SharedPointer", + "631540322": { + "name": "class SharedPointer", "bases": [ - "ReqNumeric", - "Requirement", + "ServiceOptionBase", "PropertyClass" ], - "hash": 1906907949, + "hash": 631540322, "properties": { - "m_applyNOT": { - "type": "bool", + "m_serviceName": { + "type": "std::string", "id": 0, "offset": 72, "flags": 31, @@ -402115,118 +67354,61 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 1746328074, - "enum_options": { - "__DEFAULT": 0 - } + "hash": 2206028813 }, - "m_operator": { - "type": "enum Requirement::Operator", + "m_iconKey": { + "type": "std::string", "id": 1, - "offset": 76, - "flags": 2097183, + "offset": 168, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2672792317, - "enum_options": { - "ROP_AND": 0, - "ROP_OR": 1, - "__DEFAULT": "ROP_AND" - } + "hash": 2457138637 }, - "m_numericValue": { - "type": "float", + "m_displayKey": { + "type": "std::string", "id": 2, - "offset": 80, + "offset": 104, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 521915239 + "hash": 3023276954 }, - "m_operatorType": { - "type": "enum ReqNumeric::OPERATOR_TYPE", + "m_serviceIndex": { + "type": "unsigned int", "id": 3, - "offset": 84, - "flags": 2097183, + "offset": 204, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2228122961, - "enum_options": { - "OPERATOR_UNKNOWN": 4294967295, - "OPERATOR_EQUALS": 0, - "OPERATOR_GREATER_THAN": 1, - "OPERATOR_LESS_THAN": 2, - "OPERATOR_GREATER_THAN_EQ": 3, - "OPERATOR_LESS_THAN_EQ": 4 - } - } - } - }, - "763523353": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 763523353, - "properties": { - "m_level": { - "type": "int", - "id": 0, - "offset": 72, + "hash": 2103126710 + }, + "m_forceInteract": { + "type": "bool", + "id": 4, + "offset": 200, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 801285362 - }, - "m_categoryData": { - "type": "class SharedPointer", - "id": 1, - "offset": 96, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2178338894 - } - } - }, - "342332905": { - "name": "class ScoreTrackingList", - "bases": [ - "PropertyClass" - ], - "hash": 342332905, - "properties": { - "m_scores": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1447258579 + "hash": 1705789564 } } }, - "762056823": { - "name": "class ClientAddCameraMappingCinematicAction", + "1920391157": { + "name": "class FadeMusicSoundCinematicAction", "bases": [ - "AddCameraMappingCinematicAction", "CinematicAction", "PropertyClass" ], - "hash": 762056823, + "hash": 1920391157, "properties": { "m_timeOffset": { "type": "float", @@ -402239,8 +67421,8 @@ "pointer": false, "hash": 2237098605 }, - "m_camToReplace": { - "type": "std::string", + "m_fadeDuration": { + "type": "float", "id": 1, "offset": 80, "flags": 7, @@ -402248,628 +67430,746 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 2286913643 + "hash": 1402536557 }, - "m_replaceWithCam": { - "type": "std::string", + "m_fadeToGain": { + "type": "float", "id": 2, - "offset": 112, + "offset": 84, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2992754084 + "hash": 1724568201 } } }, - "1120852648": { - "name": "class SharedPointer", + "206396589": { + "name": "class BaseClientHousingBlobStrategy*", + "bases": [ + "BlobCacheInterface", + "PropertyClass" + ], + "hash": 206396589, + "properties": {} + }, + "1064137037": { + "name": "class ClientElixirBenefitBehavior*", "bases": [ + "ClientElixirBehavior", + "ClientTimedItemBehavior", + "BehaviorInstance", "PropertyClass" ], - "hash": 1120852648, + "hash": 1064137037, "properties": { - "m_name": { - "type": "std::string", + "m_behaviorTemplateNameID": { + "type": "unsigned int", "id": 0, - "offset": 72, - "flags": 7, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1717359772 + "hash": 223437287 }, - "m_duration": { - "type": "float", + "m_expireTime": { + "type": "unsigned int", "id": 1, - "offset": 104, - "flags": 7, + "offset": 112, + "flags": 59, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 920323453 + "hash": 1836304873 }, - "m_actions": { - "type": "class SharedPointer", + "m_statsApplied": { + "type": "bool", "id": 2, - "offset": 112, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1380578687 - }, - "m_stageRelationships": { - "type": "class SharedPointer", - "id": 3, - "offset": 128, - "flags": 7, - "container": "List", - "dynamic": true, + "offset": 328, + "flags": 31, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 499983354 + "pointer": false, + "hash": 828970945 } } }, - "341850187": { - "name": "class ParticipantList", + "631473546": { + "name": "class WizGoalData*", "bases": [ "PropertyClass" ], - "hash": 341850187, + "hash": 631473546, "properties": { - "m_partList": { - "type": "class SharedPointer", + "m_goalID": { + "type": "gid", "id": 0, "offset": 72, - "flags": 31, - "container": "List", - "dynamic": true, + "flags": 7, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3068815683 + "pointer": false, + "hash": 485200232 }, - "m_deckSize": { - "type": "unsigned int", + "m_name": { + "type": "std::string", "id": 1, - "offset": 88, - "flags": 31, - "container": "List", - "dynamic": true, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 1276516479 + "hash": 1717359772 }, - "m_totalDeckSize": { + "m_nameID": { "type": "unsigned int", "id": 2, - "offset": 104, - "flags": 31, - "container": "List", - "dynamic": true, + "offset": 112, + "flags": 7, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 2180827619 + "hash": 954387579 }, - "m_treasureCardAmount": { - "type": "unsigned int", + "m_status": { + "type": "enum GOAL_STATUS", "id": 3, - "offset": 120, - "flags": 31, - "container": "List", - "dynamic": true, + "offset": 116, + "flags": 2097159, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 486812806 - } - } - }, - "761677405": { - "name": "class LevelScaledData", - "bases": [ - "PropertyClass" - ], - "hash": 761677405, - "properties": { - "m_levelScaledInfoList": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, + "hash": 3025501257, + "enum_options": { + "GOAL_STATUS_INVALID": 4294967295, + "GOAL_STATUS_INCOMPLETE": 0, + "GOAL_STATUS_COMPLETE": 1 + } + }, + "m_location": { + "type": "std::string", + "id": 4, + "offset": 120, "flags": 7, - "container": "List", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2689138081 + "pointer": false, + "hash": 2079561588 }, - "m_statsFloorPercent": { - "type": "class SharedPointer", - "id": 1, - "offset": 88, - "flags": 7, + "m_type": { + "type": "enum GoalTemplate::GOAL_TYPE", + "id": 5, + "offset": 184, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2929073687 - } - } - }, - "760900532": { - "name": "class ActivateHangingEffectCinematicAction", - "bases": [ - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 760900532, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, + "pointer": false, + "hash": 1683753114, + "enum_options": { + "GoalTemplate::GOAL_TYPE_UNKNOWN": 0, + "GoalTemplate::GOAL_TYPE_BOUNTY": 1, + "GoalTemplate::GOAL_TYPE_BOUNTYCOLLECT": 2, + "GoalTemplate::GOAL_TYPE_SCAVENGE": 3, + "GoalTemplate::GOAL_TYPE_PERSONA": 4, + "GoalTemplate::GOAL_TYPE_WAYPOINT": 5, + "GoalTemplate::GOAL_TYPE_SCAVENGEFAKE": 6, + "GoalTemplate::GOAL_TYPE_ACHIEVERANK": 7, + "GoalTemplate::GOAL_TYPE_USAGE": 8, + "GoalTemplate::GOAL_TYPE_COMPLETEQUEST": 9, + "GoalTemplate::GOAL_TYPE_SOCIARANK": 10, + "GoalTemplate::GOAL_TYPE_SOCIACURRENCY": 11, + "GoalTemplate::GOAL_TYPE_SOCIAMINIGAME": 12, + "GoalTemplate::GOAL_TYPE_SOCIAGIVEITEM": 13, + "GoalTemplate::GOAL_TYPE_SOCIAGETITEM": 14, + "GoalTemplate::GOAL_TYPE_COLLECTAFTERBOUNTY": 15, + "GoalTemplate::GOAL_TYPE_ENCOUNTER_WAYPOINT_FOREACH": 16 + } + }, + "m_sendType": { + "type": "enum ENUM_SENDTYPE", + "id": 6, + "offset": 188, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 + "hash": 1837051977, + "enum_options": { + "SENDTYPE_UNKNOWN": 4294967295, + "SENDTYPE_NORMAL": 0, + "SENDTYPE_NEW": 1, + "SENDTYPE_UPDATE": 2, + "SENDTYPE_NOUPDATE": 3 + } }, - "m_actor": { + "m_madLibs": { + "type": "class SharedPointer", + "id": 7, + "offset": 192, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2589921204 + }, + "m_image1": { "type": "std::string", - "id": 1, - "offset": 80, + "id": 8, + "offset": 208, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2285866132 + "hash": 2058810671 }, - "m_activate": { - "type": "bool", - "id": 2, - "offset": 120, + "m_image2": { + "type": "std::string", + "id": 9, + "offset": 240, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 142527940 + "hash": 2058810672 }, - "m_cloaked": { - "type": "bool", - "id": 3, - "offset": 121, + "m_tagList": { + "type": "class SharedPointer", + "id": 10, + "offset": 272, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 7349510 - } - } - }, - "1907962373": { - "name": "class SharedPointer", - "bases": [ - "InfractionPenalty", - "PropertyClass" - ], - "hash": 1907962373, - "properties": { - "m_internalID": { - "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 31, + "pointer": true, + "hash": 464541847 + }, + "m_completeText": { + "type": "std::string", + "id": 11, + "offset": 288, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1854540375 + "hash": 2767458393 }, - "m_categoryID": { - "type": "unsigned int", - "id": 1, - "offset": 76, - "flags": 31, + "m_QuestHelperEnabled": { + "type": "bool", + "id": 12, + "offset": 320, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1382795736 + "hash": 1164796656 }, - "m_removeAtPointValue": { - "type": "float", - "id": 2, - "offset": 80, - "flags": 31, + "m_petOnlyQuest": { + "type": "bool", + "id": 13, + "offset": 321, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2112196961 + "hash": 679359344 }, - "m_expireTime": { - "type": "unsigned int", - "id": 3, - "offset": 84, - "flags": 31, + "m_hasActiveResults": { + "type": "bool", + "id": 14, + "offset": 322, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1836304873 + "hash": 1571197213 }, - "m_duration": { - "type": "unsigned int", - "id": 4, - "offset": 88, - "flags": 31, + "m_hideGoalFloatyText": { + "type": "bool", + "id": 15, + "offset": 323, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1041524755 + "hash": 1919383204 } } }, - "760406993": { - "name": "class SharedPointer", + "1920146558": { + "name": "class SharedPointer", "bases": [ - "ZoneTokenCount", - "ZoneTokenBase", + "Window", "PropertyClass" ], - "hash": 760406993, + "hash": 1920146558, "properties": { - "m_debugName": { + "m_sName": { "type": "std::string", "id": 0, - "offset": 72, - "flags": 31, + "offset": 80, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3553984419 + "hash": 2306437263 }, - "m_adjectiveList": { - "type": "std::string", + "m_Children": { + "type": "class SharedPointer", "id": 1, - "offset": 104, - "flags": 31, - "container": "List", + "offset": 112, + "flags": 65671, + "container": "Vector", "dynamic": true, "singleton": false, - "pointer": false, - "hash": 3195213318 + "pointer": true, + "hash": 2621225959 }, - "m_icon": { - "type": "std::string", + "m_Style": { + "type": "unsigned int", "id": 2, - "offset": 120, - "flags": 131103, + "offset": 152, + "flags": 1048583, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1717182340 + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "SCALE_CHILDREN": 2, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "FOCUS_LOCKED": 64, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152 + } }, - "m_iconBW": { - "type": "std::string", + "m_Flags": { + "type": "unsigned int", "id": 3, - "offset": 152, - "flags": 131103, + "offset": 156, + "flags": 1048583, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2047461085 + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } }, - "m_description": { - "type": "std::string", + "m_Window": { + "type": "class Rect", "id": 4, - "offset": 184, - "flags": 8388639, + "offset": 160, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1649374815 + "hash": 3105139380 }, - "m_displayMode": { - "type": "enum ZTDisplayMode", + "m_fTargetAlpha": { + "type": "float", "id": 5, - "offset": 216, - "flags": 2097183, + "offset": 212, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2216526410, - "enum_options": { - "ZTDM_Shown": 0, - "ZTDM_Discoverable": 1, - "ZTDM_Hidden": 2 - } + "hash": 1809129834 }, - "m_storage": { - "type": "enum ZTStorage", + "m_fDisabledAlpha": { + "type": "float", "id": 6, - "offset": 220, - "flags": 2097183, + "offset": 216, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2290454852, - "enum_options": { - "ZTS_Player": 0, - "ZTS_Zone": 1 - } + "hash": 1389987675 }, - "m_onEnable": { - "type": "class SharedPointer", + "m_fAlpha": { + "type": "float", "id": 7, - "offset": 224, - "flags": 7, + "offset": 208, + "flags": 65671, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2591736864 + "pointer": false, + "hash": 482130755 }, - "m_onDiscover": { - "type": "class SharedPointer", + "m_pWindowStyle": { + "type": "class SharedPointer", "id": 8, - "offset": 240, - "flags": 7, + "offset": 232, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": true, - "hash": 2826026872 + "hash": 3623628394 }, - "m_onDisable": { - "type": "class SharedPointer", + "m_sHelp": { + "type": "std::wstring", "id": 9, - "offset": 256, - "flags": 7, + "offset": 248, + "flags": 4194439, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1860656717 + "pointer": false, + "hash": 2102211316 }, - "m_sourceID": { - "type": "gid", + "m_sScript": { + "type": "std::string", "id": 10, - "offset": 272, - "flags": 31, + "offset": 352, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1134700470 + "hash": 1846695875 }, - "m_inZone": { - "type": "bool", + "m_Offset": { + "type": "class Point", "id": 11, - "offset": 280, - "flags": 31, + "offset": 192, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 564535654 + "hash": 3389835433 }, - "m_enabled": { - "type": "bool", + "m_Scale": { + "type": "class Point", "id": 12, - "offset": 281, - "flags": 31, + "offset": 200, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 504506718 + "hash": 2547159940 }, - "m_discovered": { - "type": "bool", + "m_sTip": { + "type": "std::wstring", "id": 13, - "offset": 282, - "flags": 31, + "offset": 392, + "flags": 4194439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2060478331 + "hash": 1513510520 }, - "m_minValue": { - "type": "int", + "m_BubbleList": { + "type": "class WindowBubble", "id": 14, - "offset": 288, - "flags": 31, - "container": "Static", - "dynamic": false, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 1508523611 + "hash": 2587533771 }, - "m_startValue": { - "type": "int", + "m_ParentOffset": { + "type": "class Rect", "id": 15, - "offset": 292, - "flags": 31, + "offset": 176, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 672067813 - }, - "m_maxValue": { - "type": "int", - "id": 16, - "offset": 296, - "flags": 31, + "hash": 3091503757 + } + } + }, + "1919641863": { + "name": "class SharedPointer", + "bases": [ + "LootInfoBase", + "PropertyClass" + ], + "hash": 1919641863, + "properties": { + "m_lootType": { + "type": "enum LootInfo::LOOT_TYPE", + "id": 0, + "offset": 72, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 158068381 - }, - "m_curValue": { - "type": "int", - "id": 17, - "offset": 300, - "flags": 31, + "hash": 1591891442, + "enum_options": { + "LOOT_TYPE_NONE": 0, + "LOOT_TYPE_GOLD": 1, + "LOOT_TYPE_MANA": 2, + "LOOT_TYPE_ITEM": 3, + "LOOT_TYPE_TREASURE_CARD": 4, + "LOOT_TYPE_MAGIC_XP": 5, + "LOOT_TYPE_ADD_SPELL": 6, + "LOOT_TYPE_MAX_HEALTH": 7, + "LOOT_TYPE_MAX_GOLD": 8, + "LOOT_TYPE_MAX_MANA": 9, + "LOOT_TYPE_MAX_POTION": 10, + "LOOT_TYPE_TRAINING_POINTS": 11, + "LOOT_TYPE_RECIPE": 12, + "LOOT_TYPE_CRAFTING_SLOT": 13, + "LOOT_TYPE_REAGENT": 14, + "LOOT_TYPE_PETSNACK": 15, + "LOOT_TYPE_GARDENING_XP": 16, + "LOOT_TYPE_PET_XP": 17, + "LOOT_TYPE_TREASURE_TABLE": 18, + "LOOT_TYPE_ARENA_POINTS": 19, + "LOOT_TYPE_ARENA_BONUS_POINTS": 20, + "LOOT_TYPE_GROUP": 21, + "LOOT_TYPE_FISHING_XP": 22, + "LOOT_TYPE_EVENT_CURRENCY_1": 24, + "LOOT_TYPE_EVENT_CURRENCY_2": 25, + "LOOT_TYPE_PVP_CURRENCY": 26, + "LOOT_TYPE_PVP_CURRENCY_BONUS": 27, + "LOOT_TYPE_PVP_TOURNEY_CURRENCY": 28, + "LOOT_TYPE_PVP_TOURNEY_CURRENCY_BONUS": 29, + "LOOT_TYPE_FURNITURE_ESSENCE": 30 + } + } + } + }, + "1492610124": { + "name": "class SharedPointer", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1492610124, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1147627809 + "hash": 223437287 }, - "m_counterType": { - "type": "enum ZTCounterType", - "id": 18, - "offset": 304, - "flags": 2097183, + "m_tokens": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 27, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621026866 + } + } + }, + "207050182": { + "name": "class SharedPointer", + "bases": [ + "NodeDescriptor", + "PropertyClass" + ], + "hash": 207050182, + "properties": { + "m_nodeType": { + "type": "enum LeashedPathNodeType", + "id": 0, + "offset": 72, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1417526179, + "hash": 3706891451, "enum_options": { - "ZTCT_Full": 0, - "ZTCT_Count": 1, - "ZTCT_Meter": 2, - "ZTCT_Hidden": 3 + "NT_NONE": 0, + "NT_ANIM": 1, + "NT_SPEEDSCALE": 2, + "NT_TELEPORT": 3 } }, - "m_onIncrease": { - "type": "class SharedPointer", - "id": 19, - "offset": 312, + "m_animationName": { + "type": "std::string", + "id": 1, + "offset": 80, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2723490243 + "pointer": false, + "hash": 3393414044 }, - "m_onDecrease": { - "type": "class SharedPointer", - "id": 20, - "offset": 328, + "m_teleportToZone": { + "type": "std::string", + "id": 2, + "offset": 112, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1346363029 + "pointer": false, + "hash": 2018677929 }, - "m_onEmpty": { - "type": "class SharedPointer", - "id": 21, - "offset": 344, + "m_zoneLocation": { + "type": "std::string", + "id": 3, + "offset": 144, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1658398600 + "pointer": false, + "hash": 1597011152 }, - "m_onFull": { - "type": "class SharedPointer", - "id": 22, - "offset": 360, + "m_speedScale": { + "type": "float", + "id": 4, + "offset": 176, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1955555436 + "pointer": false, + "hash": 2118638608 } } }, - "1121431901": { - "name": "class LeaveTeamUpdate", + "1068690525": { + "name": "class SharedPointer", "bases": [ - "TournamentUpdate", + "PetCameraActorCinematicAction", + "ActorCinematicAction", + "CinematicAction", "PropertyClass" ], - "hash": 1121431901, + "hash": 1068690525, "properties": { - "m_actorID": { - "type": "gid", + "m_timeOffset": { + "type": "float", "id": 0, - "offset": 80, - "flags": 31, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1371104126 + "hash": 2237098605 }, - "m_teamID": { - "type": "gid", + "m_actor": { + "type": "std::string", "id": 1, - "offset": 72, - "flags": 31, + "offset": 80, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 982102220 + "hash": 2285866132 } } }, - "1121428829": { - "name": "class LeaveTeamUpdate*", + "631552073": { + "name": "enum HangingConversionSpellEffect::HangingEffectType", + "bases": [], + "hash": 631552073, + "properties": {} + }, + "206696061": { + "name": "class MapInfoRequirementsRequest", "bases": [ - "TournamentUpdate", "PropertyClass" ], - "hash": 1121428829, + "hash": 206696061, "properties": { - "m_actorID": { - "type": "gid", + "m_id": { + "type": "unsigned int", "id": 0, - "offset": 80, - "flags": 31, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1371104126 + "hash": 2301988666 }, - "m_teamID": { - "type": "gid", + "m_serializedRequirements": { + "type": "std::string", "id": 1, - "offset": 72, - "flags": 31, + "offset": 80, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 982102220 + "hash": 1527408971 } } }, - "344863720": { - "name": "class CantripLevelControl*", + "1067357068": { + "name": "class SharedPointer", "bases": [ "Window", "PropertyClass" ], - "hash": 344863720, + "hash": 1067357068, "properties": { "m_sName": { "type": "std::string", @@ -402886,7 +68186,7 @@ "type": "class SharedPointer", "id": 1, "offset": 112, - "flags": 65667, + "flags": 65671, "container": "Vector", "dynamic": true, "singleton": false, @@ -403084,15 +68384,231 @@ } } }, - "1911483807": { - "name": "class PrivateEquippedJewelInfo*", + "1920194549": { + "name": "class FadeMusicSoundCinematicAction*", "bases": [ + "CinematicAction", "PropertyClass" ], - "hash": 1911483807, + "hash": 1920194549, "properties": { - "m_infoPairs": { - "type": "class SharedPointer", + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_fadeDuration": { + "type": "float", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1402536557 + }, + "m_fadeToGain": { + "type": "float", + "id": 2, + "offset": 84, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1724568201 + } + } + }, + "1067051094": { + "name": "class HelpChatOperator", + "bases": [ + "PropertyClass" + ], + "hash": 1067051094, + "properties": { + "m_rootElement": { + "type": "class HelpChatElement", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2242085258 + } + } + }, + "1496191769": { + "name": "class Recipe", + "bases": [ + "CoreObject", + "PropertyClass" + ], + "hash": 1496191769, + "properties": { + "m_inactiveBehaviors": { + "type": "class SharedPointer", + "id": 0, + "offset": 224, + "flags": 31, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1850812559 + }, + "m_globalID.m_full": { + "type": "unsigned __int64", + "id": 1, + "offset": 72, + "flags": 16777247, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2312465444 + }, + "m_permID": { + "type": "unsigned __int64", + "id": 2, + "offset": 80, + "flags": 16777247, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1298909658 + }, + "m_location": { + "type": "class Vector3D", + "id": 3, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2239683611 + }, + "m_orientation": { + "type": "class Vector3D", + "id": 4, + "offset": 180, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2344058766 + }, + "m_fScale": { + "type": "float", + "id": 5, + "offset": 196, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 503137701 + }, + "m_templateID.m_full": { + "type": "unsigned __int64", + "id": 6, + "offset": 96, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 633907631 + }, + "m_debugName": { + "type": "std::string", + "id": 7, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3553984419 + }, + "m_displayKey": { + "type": "std::string", + "id": 8, + "offset": 136, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3023276954 + }, + "m_zoneTagID": { + "type": "unsigned int", + "id": 9, + "offset": 344, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 965291410 + }, + "m_speedMultiplier": { + "type": "short", + "id": 10, + "offset": 192, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 123130076 + }, + "m_nMobileID": { + "type": "unsigned short", + "id": 11, + "offset": 194, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1054318939 + }, + "m_recipeNameID": { + "type": "unsigned int", + "id": 12, + "offset": 384, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2168714419 + } + } + }, + "1065088435": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1065088435, + "properties": { + "m_logoList": { + "type": "class SharedPointer", "id": 0, "offset": 72, "flags": 7, @@ -403100,17 +68616,51 @@ "dynamic": true, "singleton": false, "pointer": true, - "hash": 1168115310 + "hash": 906435731 } } }, - "343477306": { - "name": "class DerbyTeleport*", + "1495888456": { + "name": "class ClientRemoveProtectionEffectCinematicAction", + "bases": [ + "RemoveProtectionEffectCinematicAction", + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 1495888456, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + } + } + }, + "634943410": { + "name": "class DerbyAddObstacle*", "bases": [ "DerbyEffect", "PropertyClass" ], - "hash": 343477306, + "hash": 634943410, "properties": { "m_buffType": { "type": "enum DerbyTalentBuffType", @@ -403246,274 +68796,273 @@ "pointer": false, "hash": 2840988582 }, - "m_kTeleportToTarget": { - "type": "enum DerbyTargetType", + "m_lane": { + "type": "enum DerbyLaneEffect", "id": 11, "offset": 376, - "flags": 2097183, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3096289769, + "hash": 1075628144, "enum_options": { - "kTargetInFront": 0, - "kTargetBehind": 1, - "kTargetFirst": 2, - "kTargetSelf": 3, - "kTargetAll": 4, - "kTargetLast": 5 + "kLaneRandomONE": 0, + "kLaneAll": 1, + "kLaneMine": 2 } + }, + "m_obstacleType": { + "type": "unsigned __int64", + "id": 12, + "offset": 384, + "flags": 33554439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2219764488 + }, + "m_nObstacleAmount": { + "type": "int", + "id": 13, + "offset": 392, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 52937033 } } }, - "1908904301": { - "name": "class CaughtFish*", + "207247178": { + "name": "class CSRAccessPassList", "bases": [ "PropertyClass" ], - "hash": 1908904301, + "hash": 207247178, "properties": { - "m_templateID": { - "type": "unsigned int", + "m_passList": { + "type": "class CSRAccessPassInfo", "id": 0, "offset": 72, - "flags": 33554471, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1286746870 - }, - "m_size": { - "type": "float", - "id": 1, - "offset": 76, - "flags": 39, - "container": "Static", - "dynamic": false, + "flags": 23, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 310050130 + "hash": 3089809672 } } }, - "343029615": { - "name": "class ScoreTracking", + "1064574218": { + "name": "class ParticleEmitter2D", "bases": [ "PropertyClass" ], - "hash": 343029615, + "hash": 1064574218, + "properties": {} + }, + "1493868993": { + "name": "class ReagentShopOption*", + "bases": [ + "ServiceOptionBase", + "PropertyClass" + ], + "hash": 1493868993, "properties": { - "m_gamerID": { - "type": "gid", + "m_serviceName": { + "type": "std::string", "id": 0, "offset": 72, - "flags": 7, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 443045745 + "hash": 2206028813 }, - "m_gamerName": { - "type": "std::wstring", + "m_iconKey": { + "type": "std::string", "id": 1, - "offset": 80, - "flags": 7, + "offset": 168, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2656017061 + "hash": 2457138637 }, - "m_gamerNameCode": { - "type": "unsigned int", + "m_displayKey": { + "type": "std::string", "id": 2, - "offset": 112, - "flags": 7, + "offset": 104, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 267246197 + "hash": 3023276954 }, - "m_gameScore": { - "type": "float", + "m_serviceIndex": { + "type": "unsigned int", "id": 3, - "offset": 116, - "flags": 7, + "offset": 204, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1416539789 + "hash": 2103126710 }, - "m_gamerRace": { - "type": "std::string", + "m_forceInteract": { + "type": "bool", "id": 4, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2860175138 - }, - "m_gamerGender": { - "type": "std::string", - "id": 5, - "offset": 152, - "flags": 7, + "offset": 200, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2948235676 + "hash": 1705789564 } } }, - "761680477": { - "name": "class LevelScaledData*", + "633843245": { + "name": "class ChannelResponseInfo", + "bases": [], + "hash": 633843245, + "properties": {} + }, + "1920969171": { + "name": "class SpellIDTracker*", "bases": [ "PropertyClass" ], - "hash": 761680477, + "hash": 1920969171, "properties": { - "m_levelScaledInfoList": { - "type": "class SharedPointer", + "m_spellID": { + "type": "unsigned int", "id": 0, "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, + "flags": 31, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2689138081 + "pointer": false, + "hash": 1697483258 }, - "m_statsFloorPercent": { - "type": "class SharedPointer", + "m_isRetired": { + "type": "bool", "id": 1, - "offset": 88, - "flags": 7, + "offset": 76, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2929073687 + "pointer": false, + "hash": 952245726 + }, + "m_tieredSpellGroupIndex": { + "type": "int", + "id": 2, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 859458588 } } }, - "1122185342": { - "name": "class WinAnimMoveToLocationTimeEaseApprox", + "1493242103": { + "name": "class ScavengerHuntComponent", "bases": [ - "WinAnimMoveToLocationTime", - "WinAnimMoveToLocation", - "WindowAnimation", + "HousingGameInterface", "PropertyClass" ], - "hash": 1122185342, + "hash": 1493242103, + "properties": {} + }, + "633783930": { + "name": "class SharedPointer", + "bases": [ + "BGPenaltyMatchBan", + "InfractionPenalty", + "PropertyClass" + ], + "hash": 633783930, "properties": { - "m_bUseDeepCopy": { - "type": "bool", + "m_internalID": { + "type": "unsigned int", "id": 0, "offset": 72, - "flags": 135, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 433380635 + "hash": 1854540375 }, - "m_targetLocation": { - "type": "class Vector3D", + "m_categoryID": { + "type": "unsigned int", "id": 1, - "offset": 80, - "flags": 135, + "offset": 76, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2653859938 + "hash": 1382795736 }, - "m_fTimeRemaining": { + "m_removeAtPointValue": { "type": "float", "id": 2, - "offset": 100, - "flags": 135, + "offset": 80, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1591443014 + "hash": 2112196961 }, - "m_fTimeTotal": { - "type": "float", + "m_expireTime": { + "type": "unsigned int", "id": 3, - "offset": 96, - "flags": 135, + "offset": 84, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 661225456 + "hash": 1836304873 }, - "m_fEaseAmount": { - "type": "float", + "m_duration": { + "type": "unsigned int", "id": 4, - "offset": 120, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1693654127 - }, - "m_fTotalDistance": { - "type": "float", - "id": 5, - "offset": 124, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1894338732 - }, - "m_fSpeed": { - "type": "float", - "id": 6, - "offset": 128, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 503609006 - }, - "m_fAccelRateMult": { - "type": "float", - "id": 7, - "offset": 132, - "flags": 135, + "offset": 88, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2071467395 + "hash": 1041524755 } } }, - "1908678508": { - "name": "class SharedPointer", + "1920911136": { + "name": "class SharedPointer", "bases": [ - "ServiceOptionBase", + "PvPPenaltyMatchBan", + "InfractionPenalty", "PropertyClass" ], - "hash": 1908678508, + "hash": 1920911136, "properties": { - "m_serviceName": { - "type": "std::string", + "m_internalID": { + "type": "unsigned int", "id": 0, "offset": 72, "flags": 31, @@ -403521,236 +69070,246 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 2206028813 + "hash": 1854540375 }, - "m_iconKey": { - "type": "std::string", + "m_categoryID": { + "type": "unsigned int", "id": 1, - "offset": 168, + "offset": 76, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2457138637 + "hash": 1382795736 }, - "m_displayKey": { - "type": "std::string", + "m_removeAtPointValue": { + "type": "float", "id": 2, - "offset": 104, + "offset": 80, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3023276954 + "hash": 2112196961 }, - "m_serviceIndex": { + "m_expireTime": { "type": "unsigned int", "id": 3, - "offset": 204, + "offset": 84, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2103126710 + "hash": 1836304873 }, - "m_forceInteract": { - "type": "bool", + "m_duration": { + "type": "unsigned int", "id": 4, - "offset": 200, + "offset": 88, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1705789564 + "hash": 1041524755 } } }, - "343029612": { - "name": "class ScoreTracking*", + "1493082834": { + "name": "class SharedPointer", "bases": [ + "Font", "PropertyClass" ], - "hash": 343029612, + "hash": 1493082834, "properties": { - "m_gamerID": { - "type": "gid", + "m_sFilename": { + "type": "std::string", "id": 0, - "offset": 72, - "flags": 7, + "offset": 160, + "flags": 131207, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 443045745 + "hash": 2431512111 }, - "m_gamerName": { - "type": "std::wstring", + "m_fScale": { + "type": "float", "id": 1, - "offset": 80, - "flags": 7, + "offset": 192, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2656017061 + "hash": 503137701 }, - "m_gamerNameCode": { - "type": "unsigned int", + "m_nKerningAdjust": { + "type": "int", "id": 2, - "offset": 112, - "flags": 7, + "offset": 200, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 267246197 - }, - "m_gameScore": { - "type": "float", - "id": 3, - "offset": 116, + "hash": 287732353 + } + } + }, + "633053991": { + "name": "class SharedPointer", + "bases": [ + "CoreTemplate", + "PropertyClass" + ], + "hash": 633053991, + "properties": { + "m_behaviors": { + "type": "class BehaviorTemplate*", + "id": 0, + "offset": 72, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "Vector", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 1416539789 + "pointer": true, + "hash": 1197808594 }, - "m_gamerRace": { - "type": "std::string", - "id": 4, - "offset": 120, + "m_levelToRankMod": { + "type": "class Point", + "id": 1, + "offset": 96, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 2860175138 + "hash": 3747681891 }, - "m_gamerGender": { - "type": "std::string", - "id": 5, - "offset": 152, + "m_templateID": { + "type": "unsigned int", + "id": 2, + "offset": 136, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2948235676 + "hash": 1286746870 } } }, - "1122136190": { - "name": "class WinAnimMoveToLocationTimeEaseApprox*", + "210080629": { + "name": "class NewListUpdate*", "bases": [ - "WinAnimMoveToLocationTime", - "WinAnimMoveToLocation", - "WindowAnimation", + "TournamentUpdate", "PropertyClass" ], - "hash": 1122136190, + "hash": 210080629, "properties": { - "m_bUseDeepCopy": { - "type": "bool", + "m_tournamentID": { + "type": "gid", "id": 0, "offset": 72, - "flags": 135, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 433380635 + "hash": 695889746 }, - "m_targetLocation": { - "type": "class Vector3D", + "m_tournamentName": { + "type": "std::string", "id": 1, "offset": 80, - "flags": 135, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2653859938 + "hash": 3329241865 }, - "m_fTimeRemaining": { - "type": "float", + "m_tournamentNameID": { + "type": "unsigned int", "id": 2, - "offset": 100, - "flags": 135, + "offset": 112, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1591443014 + "hash": 1799846440 }, - "m_fTimeTotal": { - "type": "float", + "m_clearData": { + "type": "bool", "id": 3, - "offset": 96, - "flags": 135, + "offset": 116, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 661225456 + "hash": 890225684 }, - "m_fEaseAmount": { - "type": "float", + "m_matches": { + "type": "class SharedPointer", "id": 4, - "offset": 120, - "flags": 135, - "container": "Static", - "dynamic": false, + "offset": 128, + "flags": 31, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 1693654127 + "pointer": true, + "hash": 3618423638 }, - "m_fTotalDistance": { - "type": "float", + "m_teams": { + "type": "class SharedPointer", "id": 5, - "offset": 124, - "flags": 135, - "container": "Static", - "dynamic": false, + "offset": 144, + "flags": 31, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 1894338732 + "pointer": true, + "hash": 1984373608 }, - "m_fSpeed": { - "type": "float", + "m_brackets": { + "type": "class SharedPointer", "id": 6, - "offset": 128, - "flags": 135, - "container": "Static", - "dynamic": false, + "offset": 160, + "flags": 31, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 503609006 + "pointer": true, + "hash": 1419131309 }, - "m_fAccelRateMult": { - "type": "float", + "m_totalTeams": { + "type": "int", "id": 7, - "offset": 132, - "flags": 135, + "offset": 124, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2071467395 + "hash": 1059363992 } } }, - "762746723": { - "name": "class SharedPointer", + "1066450275": { + "name": "class SharedPointer", "bases": [ + "CountdownBehavior", "BehaviorInstance", "PropertyClass" ], - "hash": 762746723, + "hash": 1066450275, "properties": { "m_behaviorTemplateNameID": { "type": "unsigned int", @@ -403763,60 +69322,28 @@ "pointer": false, "hash": 223437287 }, - "m_badgeData": { - "type": "std::string", - "id": 1, - "offset": 160, - "flags": 575, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3002588904 - } - } - }, - "1909297517": { - "name": "class CaughtFish", - "bases": [ - "PropertyClass" - ], - "hash": 1909297517, - "properties": { - "m_templateID": { - "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 33554471, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1286746870 - }, - "m_size": { + "m_time": { "type": "float", "id": 1, - "offset": 76, - "flags": 39, + "offset": 112, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 310050130 + "hash": 310085638 } } }, - "343079549": { - "name": "class SeamstressOption*", + "1920969075": { + "name": "class SpellIDTracker", "bases": [ - "ServiceOptionBase", "PropertyClass" ], - "hash": 343079549, + "hash": 1920969075, "properties": { - "m_serviceName": { - "type": "std::string", + "m_spellID": { + "type": "unsigned int", "id": 0, "offset": 72, "flags": 31, @@ -403824,65 +69351,41 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 2206028813 + "hash": 1697483258 }, - "m_iconKey": { - "type": "std::string", + "m_isRetired": { + "type": "bool", "id": 1, - "offset": 168, + "offset": 76, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2457138637 + "hash": 952245726 }, - "m_displayKey": { - "type": "std::string", + "m_tieredSpellGroupIndex": { + "type": "int", "id": 2, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3023276954 - }, - "m_serviceIndex": { - "type": "unsigned int", - "id": 3, - "offset": 204, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2103126710 - }, - "m_forceInteract": { - "type": "bool", - "id": 4, - "offset": 200, + "offset": 80, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1705789564 + "hash": 859458588 } } }, - "762473396": { - "name": "class ActivateHangingEffectCinematicAction*", + "208493123": { + "name": "class MusicFileInfo", "bases": [ - "ActorCinematicAction", - "CinematicAction", "PropertyClass" ], - "hash": 762473396, + "hash": 208493123, "properties": { - "m_timeOffset": { - "type": "float", + "m_altMusicFileName": { + "type": "std::string", "id": 0, "offset": 72, "flags": 7, @@ -403890,732 +69393,732 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 + "hash": 2103410014 }, - "m_actor": { - "type": "std::string", + "m_requirements": { + "type": "class RequirementList", "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - }, - "m_activate": { - "type": "bool", - "id": 2, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 142527940 - }, - "m_cloaked": { - "type": "bool", - "id": 3, - "offset": 121, + "offset": 104, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 7349510 + "hash": 2840988582 } } }, - "1122257679": { - "name": "class SharedPointer", + "207643327": { + "name": "class ZoneTokenBase*", "bases": [ - "WizStatisticEffectTemplate", - "StatisticEffectTemplate", - "GameEffectTemplate", "PropertyClass" ], - "hash": 1122257679, + "hash": 207643327, "properties": { - "m_effectName": { + "m_debugName": { "type": "std::string", "id": 0, "offset": 72, - "flags": 7, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2029161513 + "hash": 3553984419 }, - "m_effectCategory": { + "m_adjectiveList": { "type": "std::string", "id": 1, "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1852673222 - }, - "m_sortOrder": { - "type": "int", - "id": 2, - "offset": 148, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1411218206 - }, - "m_duration": { - "type": "double", - "id": 3, - "offset": 192, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2727932435 - }, - "m_stackingCategories": { - "type": "std::string", - "id": 4, - "offset": 160, - "flags": 7, + "flags": 31, "container": "List", "dynamic": true, "singleton": false, "pointer": false, - "hash": 1774497525 - }, - "m_isPersistent": { - "type": "bool", - "id": 5, - "offset": 153, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 923861920 - }, - "m_bIsOnPet": { - "type": "bool", - "id": 6, - "offset": 154, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 522593303 - }, - "m_isPublic": { - "type": "bool", - "id": 7, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1728439822 - }, - "m_visualEffectAddName": { - "type": "std::string", - "id": 8, - "offset": 200, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3382086694 + "hash": 3195213318 }, - "m_visualEffectRemoveName": { + "m_icon": { "type": "std::string", - "id": 9, - "offset": 232, - "flags": 7, + "id": 2, + "offset": 120, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1541697323 + "hash": 1717182340 }, - "m_onAddFunctorName": { + "m_iconBW": { "type": "std::string", - "id": 10, - "offset": 280, - "flags": 7, + "id": 3, + "offset": 152, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1561843107 + "hash": 2047461085 }, - "m_onRemoveFunctorName": { + "m_description": { "type": "std::string", - "id": 11, - "offset": 312, - "flags": 7, + "id": 4, + "offset": 184, + "flags": 8388639, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2559017864 + "hash": 1649374815 }, - "m_stackingRule": { - "type": "enum STACKING_RULE", - "id": 12, - "offset": 144, - "flags": 2097159, + "m_displayMode": { + "type": "enum ZTDisplayMode", + "id": 5, + "offset": 216, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 431568889, + "hash": 2216526410, "enum_options": { - "STACKING_ALLOWED": 0, - "STACKING_NOSTACK": 1, - "STACKING_REPLACE": 2 + "ZTDM_Shown": 0, + "ZTDM_Discoverable": 1, + "ZTDM_Hidden": 2 } }, - "m_buffAll": { - "type": "bool", - "id": 13, - "offset": 392, - "flags": 7, + "m_storage": { + "type": "enum ZTStorage", + "id": 6, + "offset": 220, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1205044623 + "hash": 2290454852, + "enum_options": { + "ZTS_Player": 0, + "ZTS_Zone": 1 + } }, - "m_school": { - "type": "std::string", - "id": 14, - "offset": 400, + "m_onEnable": { + "type": "class SharedPointer", + "id": 7, + "offset": 224, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 2438566051 + "pointer": true, + "hash": 2591736864 }, - "m_damageBonusPercent": { - "type": "float", - "id": 15, - "offset": 440, + "m_onDiscover": { + "type": "class SharedPointer", + "id": 8, + "offset": 240, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 623230606 + "pointer": true, + "hash": 2826026872 }, - "m_damageBonusFlat": { - "type": "float", - "id": 16, - "offset": 488, + "m_onDisable": { + "type": "class SharedPointer", + "id": 9, + "offset": 256, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 2212039108 + "pointer": true, + "hash": 1860656717 }, - "m_accuracyBonusPercent": { - "type": "float", - "id": 17, - "offset": 444, - "flags": 7, + "m_sourceID": { + "type": "gid", + "id": 10, + "offset": 272, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1972336538 + "hash": 1134700470 }, - "m_armorPiercingBonusPercent": { - "type": "float", - "id": 18, - "offset": 448, - "flags": 7, + "m_inZone": { + "type": "bool", + "id": 11, + "offset": 280, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1569912641 + "hash": 564535654 }, - "m_damageReducePercent": { - "type": "float", - "id": 19, - "offset": 452, - "flags": 7, + "m_enabled": { + "type": "bool", + "id": 12, + "offset": 281, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 541736927 + "hash": 504506718 }, - "m_damageReduceFlat": { - "type": "float", - "id": 20, - "offset": 456, - "flags": 7, + "m_discovered": { + "type": "bool", + "id": 13, + "offset": 282, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 684172469 - }, - "m_accuracyReducePercent": { - "type": "float", - "id": 21, - "offset": 460, - "flags": 7, + "hash": 2060478331 + } + } + }, + "1493283063": { + "name": "class ScavengerHuntComponent*", + "bases": [ + "HousingGameInterface", + "PropertyClass" + ], + "hash": 1493283063, + "properties": {} + }, + "207643322": { + "name": "class ZoneTokenBase", + "bases": [ + "PropertyClass" + ], + "hash": 207643322, + "properties": { + "m_debugName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2112559723 + "hash": 3553984419 }, - "m_healBonusPercent": { - "type": "float", - "id": 22, - "offset": 464, - "flags": 7, - "container": "Static", - "dynamic": false, + "m_adjectiveList": { + "type": "std::string", + "id": 1, + "offset": 104, + "flags": 31, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 562313577 + "hash": 3195213318 }, - "m_healIncBonusPercent": { - "type": "float", - "id": 23, - "offset": 468, - "flags": 7, + "m_icon": { + "type": "std::string", + "id": 2, + "offset": 120, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2182535587 + "hash": 1717182340 }, - "m_hitPointBonus": { - "type": "float", - "id": 24, - "offset": 496, - "flags": 7, + "m_iconBW": { + "type": "std::string", + "id": 3, + "offset": 152, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 880644461 + "hash": 2047461085 }, - "m_spellChargeBonus": { - "type": "float", - "id": 25, - "offset": 504, - "flags": 7, + "m_description": { + "type": "std::string", + "id": 4, + "offset": 184, + "flags": 8388639, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2109811656 + "hash": 1649374815 }, - "m_powerPipBonusPercent": { - "type": "float", - "id": 26, - "offset": 472, - "flags": 7, + "m_displayMode": { + "type": "enum ZTDisplayMode", + "id": 5, + "offset": 216, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1671446341 + "hash": 2216526410, + "enum_options": { + "ZTDM_Shown": 0, + "ZTDM_Discoverable": 1, + "ZTDM_Hidden": 2 + } }, - "m_petActChance": { - "type": "int", - "id": 27, - "offset": 492, - "flags": 7, + "m_storage": { + "type": "enum ZTStorage", + "id": 6, + "offset": 220, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 237418461 + "hash": 2290454852, + "enum_options": { + "ZTS_Player": 0, + "ZTS_Zone": 1 + } }, - "m_manaBonus": { - "type": "float", - "id": 28, - "offset": 500, + "m_onEnable": { + "type": "class SharedPointer", + "id": 7, + "offset": 224, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1372708603 + "pointer": true, + "hash": 2591736864 }, - "m_statTableName": { - "type": "std::string", - "id": 29, - "offset": 360, + "m_onDiscover": { + "type": "class SharedPointer", + "id": 8, + "offset": 240, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1616642912 + "pointer": true, + "hash": 2826026872 }, - "m_manaReducePercent": { - "type": "float", - "id": 30, - "offset": 568, + "m_onDisable": { + "type": "class SharedPointer", + "id": 9, + "offset": 256, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 348324221 + "pointer": true, + "hash": 1860656717 }, - "m_expPercent": { - "type": "float", - "id": 31, - "offset": 572, - "flags": 7, + "m_sourceID": { + "type": "gid", + "id": 10, + "offset": 272, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1147850677 + "hash": 1134700470 }, - "m_goldPercent": { - "type": "float", - "id": 32, - "offset": 576, - "flags": 7, + "m_inZone": { + "type": "bool", + "id": 11, + "offset": 280, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1095720878 + "hash": 564535654 }, - "m_energyBonus": { - "type": "float", - "id": 33, - "offset": 508, - "flags": 7, + "m_enabled": { + "type": "bool", + "id": 12, + "offset": 281, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2223158984 + "hash": 504506718 }, - "m_criticalHitRating": { - "type": "float", - "id": 34, - "offset": 512, - "flags": 7, + "m_discovered": { + "type": "bool", + "id": 13, + "offset": 282, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1978690540 - }, - "m_blockRating": { - "type": "float", - "id": 35, - "offset": 516, + "hash": 2060478331 + } + } + }, + "1067149398": { + "name": "class HelpChatOperator*", + "bases": [ + "PropertyClass" + ], + "hash": 1067149398, + "properties": { + "m_rootElement": { + "type": "class HelpChatElement", + "id": 0, + "offset": 72, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2088486759 - }, - "m_accuracyRating": { - "type": "float", - "id": 36, - "offset": 520, - "flags": 7, + "hash": 2242085258 + } + } + }, + "634037111": { + "name": "class ObstacleCourseObstacleBehavior*", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 634037111, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 165525575 - }, - "m_powerPipRating": { - "type": "float", - "id": 37, - "offset": 524, - "flags": 7, + "hash": 223437287 + } + } + }, + "1921148821": { + "name": "class CastleMagicCinematicEffect", + "bases": [ + "PropertyClass" + ], + "hash": 1921148821, + "properties": {} + }, + "1495715542": { + "name": "class CastleToursBehavior*", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1495715542, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1355340722 - }, - "m_damageResistanceRating": { - "type": "float", - "id": 38, - "offset": 532, + "hash": 223437287 + } + } + }, + "208437911": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 208437911, + "properties": { + "m_name": { + "type": "std::string", + "id": 0, + "offset": 72, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1961377740 + "hash": 1717359772 }, - "m_archmastery": { + "m_distanceRatio": { "type": "float", - "id": 39, - "offset": 536, + "id": 1, + "offset": 104, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "Vector", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 1963579610 + "hash": 1358433825 }, - "m_archmasteryBonusPercent": { + "m_value": { "type": "float", - "id": 40, - "offset": 588, + "id": 2, + "offset": 128, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "Vector", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 1908627154 + "hash": 903191604 }, - "m_balanceMastery": { - "type": "int", - "id": 41, - "offset": 540, + "m_needsUpdate": { + "type": "bool", + "id": 3, + "offset": 152, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 149062181 - }, - "m_deathMastery": { - "type": "int", - "id": 42, - "offset": 544, - "flags": 7, + "hash": 1787634021 + } + } + }, + "1067851282": { + "name": "class SharedPointer", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1067851282, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1421218661 + "hash": 223437287 }, - "m_fireMastery": { - "type": "int", - "id": 43, - "offset": 548, - "flags": 7, + "m_hatchDayPetCode": { + "type": "unsigned int", + "id": 1, + "offset": 112, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1431794949 - }, - "m_iceMastery": { - "type": "int", - "id": 44, - "offset": 552, + "hash": 1354692695 + } + } + }, + "635857054": { + "name": "enum ZTStorage", + "bases": [], + "hash": 635857054, + "properties": {} + }, + "1922449641": { + "name": "class Search::ResultItem*", + "bases": [ + "PropertyClass" + ], + "hash": 1922449641, + "properties": { + "m_userID": { + "type": "gid", + "id": 0, + "offset": 72, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 704864240 + "hash": 1037989700 }, - "m_lifeMastery": { - "type": "int", - "id": 45, - "offset": 556, + "m_userName": { + "type": "std::string", + "id": 1, + "offset": 80, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2142136447 + "hash": 2213937019 }, - "m_mythMastery": { - "type": "int", - "id": 46, - "offset": 560, + "m_characterID": { + "type": "gid", + "id": 2, + "offset": 112, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1766317185 + "hash": 210498386 }, - "m_stormMastery": { - "type": "int", - "id": 47, - "offset": 564, + "m_characterName": { + "type": "std::wstring", + "id": 3, + "offset": 120, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1883988244 + "hash": 2815013574 }, - "m_stunResistancePercent": { - "type": "float", - "id": 48, - "offset": 580, + "m_zoneName": { + "type": "std::string", + "id": 4, + "offset": 152, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1868382627 + "hash": 2171167736 }, - "m_fishingLuckBonusPercent": { - "type": "float", - "id": 49, - "offset": 480, + "m_realmName": { + "type": "std::string", + "id": 5, + "offset": 184, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1363349254 - }, - "m_shadowPipBonusPercent": { - "type": "float", - "id": 50, - "offset": 476, - "flags": 7, + "hash": 3507983949 + } + } + }, + "208186592": { + "name": "MadlibArgT", + "bases": [ + "MadlibArg", + "PropertyClass" + ], + "hash": 208186592, + "properties": { + "m_madlibToken": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1426533310 + "hash": 3058682373 }, - "m_wispBonusPercent": { - "type": "float", - "id": 51, - "offset": 484, - "flags": 7, + "m_madlibArgument": { + "type": "std::wstring", + "id": 1, + "offset": 112, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1304386546 - }, - "m_pipConversionRating": { - "type": "float", - "id": 52, - "offset": 584, + "hash": 2172177124 + } + } + }, + "1067530955": { + "name": "class InteractiveMusicButtonSample", + "bases": [ + "PropertyClass" + ], + "hash": 1067530955, + "properties": { + "m_buttonName": { + "type": "std::string", + "id": 0, + "offset": 72, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 246855691 + "hash": 3388080120 }, - "m_shadowPipRating": { - "type": "float", - "id": 53, - "offset": 528, + "m_sampleFilename": { + "type": "std::string", + "id": 1, + "offset": 104, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 507126123 + "hash": 2612990110 }, - "m_primaryStat1": { + "m_hotKey": { "type": "std::string", - "id": 54, - "offset": 600, + "id": 2, + "offset": 136, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2417808140 + "hash": 2022699503 }, - "m_primaryStat2": { + "m_alternateSampleFilenameList": { "type": "std::string", - "id": 55, - "offset": 632, + "id": 3, + "offset": 168, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 2417808141 + "hash": 2532699834 }, - "m_secondaryStat": { - "type": "std::string", - "id": 56, - "offset": 664, + "m_limitToOneSample": { + "type": "int", + "id": 4, + "offset": 184, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3564684959 + "hash": 1935781536 }, - "m_secondaryModifier": { - "type": "float", - "id": 57, - "offset": 696, + "m_altHotKey": { + "type": "std::string", + "id": 5, + "offset": 192, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2101148238 + "hash": 1836211184 } } }, - "1909084139": { - "name": "class SharedPointer", + "1495730882": { + "name": "class SharedPointer", "bases": [ - "BehaviorTemplate", "PropertyClass" ], - "hash": 1909084139, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - } - } - }, - "762636292": { - "name": "class std::list >", - "bases": [], - "hash": 762636292, + "hash": 1495730882, "properties": {} }, - "343477311": { - "name": "class DerbyTeleport", + "635107250": { + "name": "class DerbyAddObstacle", "bases": [ "DerbyEffect", "PropertyClass" ], - "hash": 343477311, + "hash": 635107250, "properties": { "m_buffType": { "type": "enum DerbyTalentBuffType", @@ -404751,1945 +70254,1915 @@ "pointer": false, "hash": 2840988582 }, - "m_kTeleportToTarget": { - "type": "enum DerbyTargetType", + "m_lane": { + "type": "enum DerbyLaneEffect", "id": 11, "offset": 376, - "flags": 2097183, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3096289769, + "hash": 1075628144, "enum_options": { - "kTargetInFront": 0, - "kTargetBehind": 1, - "kTargetFirst": 2, - "kTargetSelf": 3, - "kTargetAll": 4, - "kTargetLast": 5 + "kLaneRandomONE": 0, + "kLaneAll": 1, + "kLaneMine": 2 } - } - } - }, - "1138319455": { - "name": "class ActorMadlib*", - "bases": [ - "PropertyClass" - ], - "hash": 1138319455, - "properties": { - "m_madlibBlock": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2391615468 - }, - "m_index": { - "type": "unsigned int", - "id": 1, - "offset": 88, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1009433893 - } - } - }, - "1910826021": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1910826021, - "properties": {} - }, - "1130469477": { - "name": "class std::list >", - "bases": [], - "hash": 1130469477, - "properties": {} - }, - "344539011": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 344539011, - "properties": { - "m_coord": { - "type": "class Vector3D", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2448785881 }, - "m_quat": { - "type": "class Quaternion", - "id": 1, - "offset": 84, - "flags": 7, + "m_obstacleType": { + "type": "unsigned __int64", + "id": 12, + "offset": 384, + "flags": 33554439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2148807035 + "hash": 2219764488 }, - "m_mat": { - "type": "class Matrix3x3", - "id": 2, - "offset": 100, + "m_nObstacleAmount": { + "type": "int", + "id": 13, + "offset": 392, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1746928484 + "hash": 52937033 } } }, - "763285626": { - "name": "class ClientCameraCutCinematicAction*", + "1922070661": { + "name": "class SharedPointer", "bases": [ - "CameraCutCinematicAction", - "CinematicAction", + "ControlPopupButton", + "ControlButton", + "Window", "PropertyClass" ], - "hash": 763285626, + "hash": 1922070661, "properties": { - "m_timeOffset": { - "type": "float", + "m_sName": { + "type": "std::string", "id": 0, - "offset": 72, - "flags": 7, + "offset": 80, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 + "hash": 2306437263 }, - "m_cameras": { - "type": "std::string", + "m_Children": { + "type": "class SharedPointer", "id": 1, - "offset": 80, - "flags": 131079, + "offset": 112, + "flags": 65671, "container": "Vector", "dynamic": true, "singleton": false, - "pointer": false, - "hash": 3217341687 + "pointer": true, + "hash": 2621225959 }, - "m_altcameras": { - "type": "std::string", + "m_Style": { + "type": "unsigned int", "id": 2, - "offset": 104, - "flags": 131079, - "container": "Vector", - "dynamic": true, + "offset": 152, + "flags": 1048583, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 1882980152 + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152, + "POPDOWN_SIBLINGS": 67108864, + "DISABLE_CHILDREN": 134217728, + "HIDE_SIBLINGS": 268435456, + "POPUP_ON_HOVER": 536870912 + } }, - "m_initialCameraName": { - "type": "std::string", + "m_Flags": { + "type": "unsigned int", "id": 3, - "offset": 128, - "flags": 7, + "offset": 156, + "flags": 1048583, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2526319343 + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } }, - "m_camRel": { - "type": "enum CameraCutCinematicAction::kCameraRelative", + "m_Window": { + "type": "class Rect", "id": 4, - "offset": 168, - "flags": 2097159, + "offset": 160, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 919962138, - "enum_options": { - "kNone": 0, - "kSigil": 1, - "kTarget": 2, - "kSource": 3, - "kActor": 4 - } + "hash": 3105139380 }, - "m_interpolationDuration": { + "m_fTargetAlpha": { "type": "float", "id": 5, - "offset": 160, - "flags": 7, + "offset": 212, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1458058437 + "hash": 1809129834 }, - "m_releaseInterpolationDuration": { + "m_fDisabledAlpha": { "type": "float", "id": 6, - "offset": 164, - "flags": 7, + "offset": 216, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1807754278, - "enum_options": { - "__DEFAULT": "1.0" - } + "hash": 1389987675 }, - "m_bUseOrientationOverride": { - "type": "bool", + "m_fAlpha": { + "type": "float", "id": 7, - "offset": 188, - "flags": 7, + "offset": 208, + "flags": 65671, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1088002894 + "hash": 482130755 }, - "m_overrideOrientation": { - "type": "class Vector3D", + "m_pWindowStyle": { + "type": "class SharedPointer", "id": 8, - "offset": 192, - "flags": 7, + "offset": 232, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 3267199758 + "pointer": true, + "hash": 3623628394 }, - "m_bUseLocationOverride": { - "type": "bool", + "m_sHelp": { + "type": "std::wstring", "id": 9, - "offset": 172, - "flags": 7, + "offset": 248, + "flags": 4194439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1767170875 + "hash": 2102211316 }, - "m_overrideLocation": { - "type": "class Vector3D", + "m_sScript": { + "type": "std::string", "id": 10, - "offset": 176, - "flags": 7, + "offset": 352, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3776417691 + "hash": 1846695875 }, - "m_namedActor": { - "type": "std::string", + "m_Offset": { + "type": "class Point", "id": 11, - "offset": 208, - "flags": 7, + "offset": 192, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3413532537 + "hash": 3389835433 }, - "m_camScale": { - "type": "float", + "m_Scale": { + "type": "class Point", "id": 12, - "offset": 240, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 979098224 - } - } - }, - "1126377724": { - "name": "class SharedPointer", - "bases": [ - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 1126377724, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, + "offset": 200, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 + "hash": 2547159940 }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - } - } - }, - "1124559077": { - "name": "class FishTournamentLeaderboardOption*", - "bases": [ - "ServiceOptionBase", - "PropertyClass" - ], - "hash": 1124559077, - "properties": { - "m_serviceName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2206028813 + "hash": 1513510520 }, - "m_iconKey": { - "type": "std::string", - "id": 1, - "offset": 168, - "flags": 31, - "container": "Static", - "dynamic": false, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 2457138637 + "hash": 2587533771 }, - "m_displayKey": { - "type": "std::string", - "id": 2, - "offset": 104, - "flags": 31, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3023276954 + "hash": 3091503757 }, - "m_serviceIndex": { - "type": "unsigned int", - "id": 3, - "offset": 204, - "flags": 31, + "m_bToggle": { + "type": "bool", + "id": 16, + "offset": 608, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2103126710 + "hash": 2071810903 }, - "m_forceInteract": { + "m_bButtonDown": { "type": "bool", - "id": 4, - "offset": 200, - "flags": 31, + "id": 17, + "offset": 609, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1705789564 - } - } - }, - "1915581649": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1915581649, - "properties": { - "m_sZoneName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, + "hash": 840041705 + }, + "m_sLabel": { + "type": "std::wstring", + "id": 18, + "offset": 616, + "flags": 4194439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3632841067 + "hash": 2207009163 }, - "m_nInstanceID": { - "type": "int", - "id": 1, - "offset": 104, - "flags": 31, + "m_labelOffset": { + "type": "class Rect", + "id": 19, + "offset": 832, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1380862506 + "hash": 1990646723 }, - "m_nZoneID": { - "type": "gid", - "id": 2, - "offset": 112, - "flags": 31, + "m_pButton": { + "type": "class SharedPointer", + "id": 20, + "offset": 656, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 622120303 - } - } - }, - "1123934692": { - "name": "class TournamentInfoRequest", - "bases": [ - "PropertyClass" - ], - "hash": 1123934692, - "properties": { - "m_tournamentNameID": { + "pointer": true, + "hash": 1543855875 + }, + "m_HotKey": { "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 31, + "id": 21, + "offset": 672, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1799846440 + "hash": 1631553409 }, - "m_leagueID": { - "type": "unsigned int", - "id": 1, - "offset": 76, - "flags": 31, + "m_Color": { + "type": "class Color", + "id": 22, + "offset": 676, + "flags": 262279, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 692361645 + "hash": 1753714077 }, - "m_seasonID": { - "type": "unsigned int", - "id": 2, - "offset": 80, - "flags": 31, + "m_bCursorOver": { + "type": "bool", + "id": 23, + "offset": 689, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 535260643 + "hash": 283981103 }, - "m_characterID": { - "type": "gid", - "id": 3, - "offset": 88, - "flags": 31, + "m_bAbortWhenCursorNotOver": { + "type": "bool", + "id": 24, + "offset": 706, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 210498386 + "hash": 325405258 }, - "m_bracketID": { - "type": "gid", - "id": 4, - "offset": 96, - "flags": 31, + "m_bHotKeyDown": { + "type": "bool", + "id": 25, + "offset": 680, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 441272961 + "hash": 616989185 }, - "m_bracketIDList": { - "type": "class SharedPointer", - "id": 5, - "offset": 152, - "flags": 31, + "m_fTime": { + "type": "float", + "id": 26, + "offset": 684, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3367716172 + "pointer": false, + "hash": 883746156 }, - "m_tournamentRequestType": { - "type": "unsigned int", - "id": 6, - "offset": 104, - "flags": 31, + "m_bGreyed": { + "type": "bool", + "id": 27, + "offset": 688, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 874052549 + "hash": 1566556053 }, - "m_startingIndex": { - "type": "int", - "id": 7, - "offset": 108, - "flags": 31, + "m_fMaxScale": { + "type": "float", + "id": 28, + "offset": 692, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2126940894 + "hash": 2070186635 }, - "m_numberOfElements": { - "type": "int", - "id": 8, - "offset": 112, - "flags": 31, + "m_fScaleSpeed": { + "type": "float", + "id": 29, + "offset": 696, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 790678773 + "hash": 1457135702 }, - "m_friendListBuffer": { - "type": "std::string", - "id": 9, - "offset": 120, - "flags": 31, + "m_bUseDropShadow": { + "type": "bool", + "id": 30, + "offset": 704, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2271699753 + "hash": 93063037 }, - "m_qualifiedOnly": { + "m_bUseOutline": { "type": "bool", - "id": 10, - "offset": 168, - "flags": 31, + "id": 31, + "offset": 705, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 789459241 + "hash": 744292994 }, - "m_qualifiedLevel": { - "type": "unsigned int", - "id": 11, - "offset": 172, - "flags": 31, + "m_pGreyedState": { + "type": "class SharedPointer", + "id": 32, + "offset": 768, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 405173305 + "pointer": true, + "hash": 2703352263 }, - "m_qualifiedRank": { - "type": "int", - "id": 12, - "offset": 176, - "flags": 31, + "m_pNormalState": { + "type": "class SharedPointer", + "id": 33, + "offset": 752, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 787071770 - } - } - }, - "1913979810": { - "name": "class WinAnimSpriteContrast", - "bases": [ - "WindowAnimation", - "PropertyClass" - ], - "hash": 1913979810, - "properties": { - "m_bUseDeepCopy": { - "type": "bool", - "id": 0, - "offset": 72, + "pointer": true, + "hash": 1887909808 + }, + "m_pHighlightedState": { + "type": "class SharedPointer", + "id": 34, + "offset": 784, "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 433380635 + "pointer": true, + "hash": 2200177608 }, - "m_fCycleTime": { - "type": "float", - "id": 1, - "offset": 80, + "m_pSelectedState": { + "type": "class SharedPointer", + "id": 35, + "offset": 800, "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1056288476 + "pointer": true, + "hash": 2266776432 }, - "m_fElapsedTime": { - "type": "float", - "id": 2, - "offset": 84, + "m_pDepressedState": { + "type": "class SharedPointer", + "id": 36, + "offset": 816, "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1862647402 + "pointer": true, + "hash": 1878185798 }, - "m_fContrastMax": { - "type": "float", - "id": 3, - "offset": 88, + "m_bUp": { + "type": "bool", + "id": 37, + "offset": 880, "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 915848113 + "hash": 269510906 } } }, - "345061619": { - "name": "class BracketTemplate*", + "1067520715": { + "name": "class InteractiveMusicButtonSample*", "bases": [ - "MatchTemplate", - "CoreTemplate", "PropertyClass" ], - "hash": 345061619, + "hash": 1067520715, "properties": { - "m_behaviors": { - "type": "class BehaviorTemplate*", + "m_buttonName": { + "type": "std::string", "id": 0, "offset": 72, "flags": 7, - "container": "Vector", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1197808594 + "pointer": false, + "hash": 3388080120 }, - "m_matchName": { + "m_sampleFilename": { "type": "std::string", "id": 1, - "offset": 128, - "flags": 134217735, + "offset": 104, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2061215721 + "hash": 2612990110 }, - "m_matchDisplayName": { + "m_hotKey": { "type": "std::string", "id": 2, - "offset": 96, + "offset": 136, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3201906495 + "hash": 2022699503 }, - "m_matchTitle": { + "m_alternateSampleFilenameList": { "type": "std::string", "id": 3, "offset": 168, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 2918442218 + "hash": 2532699834 }, - "m_allowOverrides": { - "type": "bool", + "m_limitToOneSample": { + "type": "int", "id": 4, - "offset": 200, + "offset": 184, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 469376485 + "hash": 1935781536 }, - "m_teamSize": { - "type": "unsigned int", + "m_altHotKey": { + "type": "std::string", "id": 5, - "offset": 208, + "offset": 192, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2343388751 - }, - "m_teamCount": { + "hash": 1836211184 + } + } + }, + "1921774267": { + "name": "class AtticObject*", + "bases": [ + "PropertyClass" + ], + "hash": 1921774267, + "properties": {} + }, + "635261917": { + "name": "class std::list >", + "bases": [], + "hash": 635261917, + "properties": {} + }, + "1921590299": { + "name": "class LoyaltyPurchaseLimitCounterEntry", + "bases": [ + "PropertyClass" + ], + "hash": 1921590299, + "properties": { + "m_itemTemplateID": { "type": "unsigned int", - "id": 6, - "offset": 204, + "id": 0, + "offset": 72, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1825878845 + "hash": 2190120133 }, - "m_minTeams": { - "type": "unsigned int", - "id": 7, - "offset": 212, + "m_purchaseCount": { + "type": "int", + "id": 1, + "offset": 76, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1717685739 - }, - "m_timeout": { - "type": "int", - "id": 8, - "offset": 216, + "hash": 68125278 + } + } + }, + "1496146765": { + "name": "class LoyaltyStoreData*", + "bases": [ + "PropertyClass" + ], + "hash": 1496146765, + "properties": { + "m_items": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2752134535 + } + } + }, + "208553075": { + "name": "class MessageBoardMessage*", + "bases": [ + "PropertyClass" + ], + "hash": 208553075, + "properties": { + "m_playerGID": { + "type": "gid", + "id": 0, + "offset": 72, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 365357953 + "hash": 578537369 }, - "m_maxPointsPerMatch": { - "type": "unsigned int", - "id": 9, - "offset": 280, + "m_messageBoardMessageType": { + "type": "int", + "id": 1, + "offset": 80, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1397040900 + "hash": 1435388398 }, - "m_estimatedWeight": { - "type": "float", - "id": 10, - "offset": 284, + "m_playerName": { + "type": "std::string", + "id": 2, + "offset": 88, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1374360127 + "hash": 3407553929 }, - "m_matchInfo": { - "type": "class SharedPointer", - "id": 11, - "offset": 256, + "m_messageBoardActivityType": { + "type": "int", + "id": 3, + "offset": 120, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2424135306 + "pointer": false, + "hash": 1226468534 }, - "m_awardInfo": { - "type": "class SharedPointer", - "id": 12, - "offset": 224, + "m_worldID": { + "type": "unsigned int", + "id": 4, + "offset": 124, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2862912855 - }, - "m_perLeagueAwardInfo": { - "type": "class SharedPointer", - "id": 13, - "offset": 240, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1635456322 - }, - "m_zones": { - "type": "std::string", - "id": 14, - "offset": 288, - "flags": 268435463, - "container": "Vector", - "dynamic": true, - "singleton": false, "pointer": false, - "hash": 2315938538, - "enum_options": { - "__BASECLASS": "ZoneData" - } + "hash": 397177058 }, - "m_initialQueueThreshold": { - "type": "unsigned int", - "id": 15, - "offset": 312, + "m_partyNameLocale": { + "type": "int", + "id": 5, + "offset": 128, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2069737705 + "hash": 104095035 }, - "m_actorQueueTimeout": { + "m_centralSeconds": { "type": "unsigned int", - "id": 16, - "offset": 316, + "id": 6, + "offset": 132, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2220949042 + "hash": 1225584997 }, - "m_teamQueueTimeout": { + "m_removalTime": { "type": "unsigned int", - "id": 17, - "offset": 320, + "id": 7, + "offset": 136, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 905233664 + "hash": 1506221490 }, - "m_actorQueueGrowth": { - "type": "float", - "id": 18, - "offset": 324, + "m_creationTime": { + "type": "unsigned int", + "id": 8, + "offset": 140, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 499165488 + "hash": 2142268593 }, - "m_teamQueueGrowth": { - "type": "float", - "id": 19, - "offset": 328, + "m_playerResponses": { + "type": "gid", + "id": 9, + "offset": 144, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 1500499518 - }, - "m_matchMakingLevelMultiplier": { - "type": "float", - "id": 20, - "offset": 332, + "hash": 1006378727 + } + } + }, + "1067533744": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1067533744, + "properties": { + "m_domain": { + "type": "std::string", + "id": 0, + "offset": 72, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 838900890 + "hash": 1865930451 }, - "m_levelModifiersListID": { - "type": "gid", - "id": 21, - "offset": 336, + "m_path": { + "type": "std::string", + "id": 1, + "offset": 104, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 383459035 - }, - "m_incompleteTeamTimeout": { - "type": "unsigned int", - "id": 22, - "offset": 276, + "hash": 1717431880 + } + } + }, + "1496134822": { + "name": "struct std::pair", + "bases": [], + "hash": 1496134822, + "properties": {} + }, + "208493128": { + "name": "class MusicFileInfo*", + "bases": [ + "PropertyClass" + ], + "hash": 208493128, + "properties": { + "m_altMusicFileName": { + "type": "std::string", + "id": 0, + "offset": 72, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1580576011 + "hash": 2103410014 }, - "m_incompleteMatchTimeout": { - "type": "unsigned int", - "id": 23, - "offset": 272, + "m_requirements": { + "type": "class RequirementList", + "id": 1, + "offset": 104, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2167303729 - }, - "m_shortMatchDurationForPenaltySeconds": { - "type": "unsigned int", - "id": 24, - "offset": 360, + "hash": 2840988582 + } + } + }, + "637473994": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 637473994, + "properties": { + "m_skyLayerCount": { + "type": "int", + "id": 0, + "offset": 72, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1403927011 + "hash": 816414615 }, - "m_thresholdForExtendingMatchSearch": { - "type": "unsigned int", - "id": 25, - "offset": 364, + "m_skyLayerName": { + "type": "std::string", + "id": 1, + "offset": 80, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "Vector", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 1973589002 + "hash": 2824410256 }, - "m_numberOfPlayersRequiredToExtendMatchSearch": { - "type": "unsigned int", - "id": 26, - "offset": 368, + "m_clientTag": { + "type": "std::string", + "id": 2, + "offset": 104, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 858588026 - }, - "m_showStatusOnJoinQueue": { - "type": "bool", - "id": 27, - "offset": 376, - "flags": 7, + "hash": 3409856790 + } + } + }, + "1922404794": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1922404794, + "properties": { + "m_sFilename": { + "type": "std::string", + "id": 0, + "offset": 104, + "flags": 131207, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1803391338 + "hash": 2431512111 }, - "m_allowExceedRangeForMatchesOptionForPlayers": { + "m_bAlphaChannel": { "type": "bool", - "id": 28, - "offset": 377, - "flags": 7, + "id": 1, + "offset": 137, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 592913977 + "hash": 1780697684 }, - "m_makeTeamsWithSameMatchOptsTimeoutSec": { - "type": "int", - "id": 29, - "offset": 372, - "flags": 7, + "m_bDoubleSided": { + "type": "bool", + "id": 2, + "offset": 138, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1787977769 + "hash": 1054874233 }, - "m_streakSize": { - "type": "int", - "id": 30, - "offset": 380, - "flags": 7, + "m_bMipMap": { + "type": "bool", + "id": 3, + "offset": 139, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1155220287 - }, - "m_historySize": { - "type": "int", - "id": 31, - "offset": 384, - "flags": 7, + "hash": 1791042393 + } + } + }, + "1068318132": { + "name": "class SharedPointer", + "bases": [ + "DerbyModifyMorale", + "DerbyEffect", + "PropertyClass" + ], + "hash": 1068318132, + "properties": { + "m_buffType": { + "type": "enum DerbyTalentBuffType", + "id": 0, + "offset": 92, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 229055111 + "hash": 1149251982, + "enum_options": { + "Buff": 0, + "Debuff": 1, + "Neither": 2 + } }, - "m_queueWaitingTime": { - "type": "int", - "id": 32, - "offset": 388, - "flags": 7, + "m_kTarget": { + "type": "enum DerbyTargetType", + "id": 1, + "offset": 96, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 15229089 + "hash": 1807803351, + "enum_options": { + "kTargetInFront": 0, + "kTargetBehind": 1, + "kTargetFirst": 2, + "kTargetSelf": 3, + "kTargetAll": 4, + "kTargetLast": 5 + } }, - "m_minQueueSize": { + "m_nDuration": { "type": "int", - "id": 33, - "offset": 392, - "flags": 7, + "id": 2, + "offset": 104, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1319267550 + "hash": 1110167982 }, - "m_maxQueueSize": { - "type": "int", - "id": 34, - "offset": 396, - "flags": 7, + "m_effectID": { + "type": "unsigned int", + "id": 3, + "offset": 88, + "flags": 24, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1277586976 + "hash": 2347630439 }, - "m_confTierRankTimeout": { - "type": "int", - "id": 35, - "offset": 400, - "flags": 7, + "m_imageFilename": { + "type": "std::string", + "id": 4, + "offset": 112, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 79057063 + "hash": 2813328063 }, - "m_matchTimer": { - "type": "float", - "id": 36, - "offset": 404, - "flags": 7, + "m_iconIndex": { + "type": "unsigned int", + "id": 5, + "offset": 144, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1510935909 + "hash": 1265133262 }, - "m_bonusTime": { - "type": "int", - "id": 37, - "offset": 408, - "flags": 7, + "m_soundOnActivate": { + "type": "std::string", + "id": 6, + "offset": 152, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1757496496 + "hash": 1956929714 }, - "m_passPenalty": { - "type": "int", - "id": 38, - "offset": 412, - "flags": 7, + "m_soundOnTarget": { + "type": "std::string", + "id": 7, + "offset": 184, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 982951662 + "hash": 3444214056 }, - "m_yellowTime": { - "type": "int", - "id": 39, - "offset": 416, - "flags": 7, + "m_targetParticleEffect": { + "type": "std::string", + "id": 8, + "offset": 216, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1017028741 + "hash": 3048234723 }, - "m_redTime": { - "type": "int", - "id": 40, - "offset": 420, - "flags": 7, + "m_overheadMessage": { + "type": "std::string", + "id": 9, + "offset": 248, + "flags": 8388639, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1909556708 + "hash": 1701018190 }, - "m_minTurnTime": { - "type": "int", - "id": 41, - "offset": 424, - "flags": 7, + "m_requirements": { + "type": "class RequirementList", + "id": 10, + "offset": 280, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 652524886 - }, - "m_effects": { - "type": "class SharedPointer", - "id": 42, - "offset": 432, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 804962647 + "hash": 2840988582 }, - "m_updateBattlePassPoints": { - "type": "bool", - "id": 43, - "offset": 456, - "flags": 7, + "m_nMoraleChange": { + "type": "int", + "id": 11, + "offset": 376, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 713306342 - }, - "m_battlePassWinPoints": { - "type": "int", - "id": 44, - "offset": 460, - "flags": 7, + "hash": 1624723118 + } + } + }, + "210080626": { + "name": "class NewListUpdate", + "bases": [ + "TournamentUpdate", + "PropertyClass" + ], + "hash": 210080626, + "properties": { + "m_tournamentID": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1252337240 + "hash": 695889746 }, - "m_battlePassLosePoints": { - "type": "int", - "id": 45, - "offset": 464, - "flags": 7, + "m_tournamentName": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1400839869 + "hash": 3329241865 }, - "m_numberOfRounds": { + "m_tournamentNameID": { "type": "unsigned int", - "id": 46, - "offset": 488, + "id": 2, + "offset": 112, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2292833030 + "hash": 1799846440 }, - "m_removeBracketWhenEmpty": { + "m_clearData": { "type": "bool", - "id": 47, - "offset": 492, + "id": 3, + "offset": 116, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1934068926 + "hash": 890225684 }, - "m_prepareForMatchTimeSeconds": { - "type": "unsigned int", - "id": 48, - "offset": 496, + "m_matches": { + "type": "class SharedPointer", + "id": 4, + "offset": 128, "flags": 31, - "container": "Static", - "dynamic": false, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 2209979662 + "pointer": true, + "hash": 3618423638 }, - "m_precreateTeams": { - "type": "bool", - "id": 49, - "offset": 500, + "m_teams": { + "type": "class SharedPointer", + "id": 5, + "offset": 144, "flags": 31, - "container": "Static", - "dynamic": false, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 1229158248 + "pointer": true, + "hash": 1984373608 }, - "m_bracketTypeClassName": { - "type": "std::string", - "id": 50, - "offset": 504, + "m_brackets": { + "type": "class SharedPointer", + "id": 6, + "offset": 160, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1419131309 + }, + "m_totalTeams": { + "type": "int", + "id": 7, + "offset": 124, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1569907152 + "hash": 1059363992 + } + } + }, + "1496310605": { + "name": "class LoyaltyStoreData", + "bases": [ + "PropertyClass" + ], + "hash": 1496310605, + "properties": { + "m_items": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2752134535 } } }, - "764116777": { - "name": "class SharedPointer", + "652864668": { + "name": "class SharedPointer", "bases": [ - "ToggleInterfaceControlCinematicAction", - "CinematicAction", "PropertyClass" ], - "hash": 764116777, + "hash": 652864668, "properties": { - "m_timeOffset": { - "type": "float", + "m_minigames": { + "type": "class MinigameInfo*", "id": 0, "offset": 72, "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2928955645 + } + } + }, + "208779552": { + "name": "class SharedPointer", + "bases": [ + "ReqNumeric", + "Requirement", + "PropertyClass" + ], + "hash": 208779552, + "properties": { + "m_applyNOT": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 + "hash": 1746328074, + "enum_options": { + "__DEFAULT": 0 + } }, - "m_maximumDurationInSeconds": { - "type": "float", + "m_operator": { + "type": "enum Requirement::Operator", "id": 1, - "offset": 80, - "flags": 7, + "offset": 76, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1457214913 + "hash": 2672792317, + "enum_options": { + "ROP_AND": 0, + "ROP_OR": 1, + "__DEFAULT": "ROP_AND" + } }, - "m_hideUI": { - "type": "bool", + "m_numericValue": { + "type": "float", "id": 2, - "offset": 84, - "flags": 7, + "offset": 80, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 519818283 + "hash": 521915239 }, - "m_stopMovement": { - "type": "bool", + "m_operatorType": { + "type": "enum ReqNumeric::OPERATOR_TYPE", "id": 3, - "offset": 85, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1752496036 - } - } - }, - "1123285928": { - "name": "class SharedPointer", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1123285928, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, + "offset": 84, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 + "hash": 2228122961, + "enum_options": { + "OPERATOR_UNKNOWN": 4294967295, + "OPERATOR_EQUALS": 0, + "OPERATOR_GREATER_THAN": 1, + "OPERATOR_LESS_THAN": 2, + "OPERATOR_GREATER_THAN_EQ": 3, + "OPERATOR_LESS_THAN_EQ": 4 + } } } }, - "1912609404": { - "name": "class WinAnimConcurrent*", + "1496238955": { + "name": "class HouseNameList*", "bases": [ - "WinAnimContainer", - "WindowAnimation", "PropertyClass" ], - "hash": 1912609404, + "hash": 1496238955, "properties": { - "m_bUseDeepCopy": { - "type": "bool", + "m_houseZoneList": { + "type": "class SharedPointer", "id": 0, "offset": 72, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 433380635 - }, - "m_winAnimList": { - "type": "class SharedPointer", - "id": 1, - "offset": 80, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1941062728 - }, - "m_bLooping": { - "type": "bool", - "id": 2, - "offset": 104, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2131020845 - }, - "m_finishedAnimList": { - "type": "class SharedPointer", - "id": 3, - "offset": 112, - "flags": 135, + "flags": 7, "container": "List", "dynamic": true, "singleton": false, "pointer": true, - "hash": 3066650884 + "hash": 2061331472 } } }, - "345058547": { - "name": "class BracketTemplate", + "647371914": { + "name": "class SharedPointer", "bases": [ - "MatchTemplate", - "CoreTemplate", "PropertyClass" ], - "hash": 345058547, + "hash": 647371914, "properties": { - "m_behaviors": { - "type": "class BehaviorTemplate*", + "m_fBackgroundAlpha": { + "type": "float", "id": 0, "offset": 72, "flags": 7, - "container": "Vector", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1197808594 + "pointer": false, + "hash": 1164086307 }, - "m_matchName": { - "type": "std::string", + "m_pTopLeftBackgroundAlphaMask": { + "type": "class SharedPointer", "id": 1, - "offset": 128, - "flags": 134217735, + "offset": 80, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 2061215721 + "pointer": true, + "hash": 2652729643 }, - "m_matchDisplayName": { - "type": "std::string", + "m_pTopRightBackgroundAlphaMask": { + "type": "class SharedPointer", "id": 2, "offset": 96, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 3201906495 + "pointer": true, + "hash": 2236264926 }, - "m_matchTitle": { - "type": "std::string", + "m_pBottomLeftBackgroundAlphaMask": { + "type": "class SharedPointer", "id": 3, - "offset": 168, + "offset": 112, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 2918442218 + "pointer": true, + "hash": 3301927117 }, - "m_allowOverrides": { - "type": "bool", + "m_pBottomRightBackgroundAlphaMask": { + "type": "class SharedPointer", "id": 4, - "offset": 200, + "offset": 128, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 469376485 + "pointer": true, + "hash": 2184945088 }, - "m_teamSize": { - "type": "unsigned int", + "m_pBottomBackgroundAlphaMask": { + "type": "class SharedPointer", "id": 5, - "offset": 208, + "offset": 144, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 2343388751 + "pointer": true, + "hash": 2408122274 }, - "m_teamCount": { - "type": "unsigned int", + "m_pTopBackgroundAlphaMask": { + "type": "class SharedPointer", "id": 6, - "offset": 204, + "offset": 160, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1825878845 + "pointer": true, + "hash": 3440742656 }, - "m_minTeams": { - "type": "unsigned int", + "m_pLeftBackgroundAlphaMask": { + "type": "class SharedPointer", "id": 7, - "offset": 212, + "offset": 176, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1717685739 + "pointer": true, + "hash": 2348634648 }, - "m_timeout": { - "type": "int", + "m_pRightBackgroundAlphaMask": { + "type": "class SharedPointer", "id": 8, - "offset": 216, + "offset": 192, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 365357953 + "pointer": true, + "hash": 2938548331 }, - "m_maxPointsPerMatch": { - "type": "unsigned int", + "m_pCenterBackgroundAlphaMask": { + "type": "class SharedPointer", "id": 9, - "offset": 280, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1397040900 - }, - "m_estimatedWeight": { - "type": "float", - "id": 10, - "offset": 284, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1374360127 - }, - "m_matchInfo": { - "type": "class SharedPointer", - "id": 11, - "offset": 256, + "offset": 208, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": true, - "hash": 2424135306 - }, - "m_awardInfo": { - "type": "class SharedPointer", - "id": 12, - "offset": 224, + "hash": 3347258414 + } + } + }, + "1922976712": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1922976712, + "properties": { + "m_zoneID": { + "type": "gid", + "id": 0, + "offset": 72, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2862912855 + "pointer": false, + "hash": 1229232257 }, - "m_perLeagueAwardInfo": { - "type": "class SharedPointer", - "id": 13, - "offset": 240, + "m_newQuestList": { + "type": "unsigned int", + "id": 1, + "offset": 80, "flags": 7, "container": "List", "dynamic": true, "singleton": false, - "pointer": true, - "hash": 1635456322 - }, - "m_zones": { - "type": "std::string", - "id": 14, - "offset": 288, - "flags": 268435463, - "container": "Vector", - "dynamic": true, - "singleton": false, "pointer": false, - "hash": 2315938538, - "enum_options": { - "__BASECLASS": "ZoneData" - } + "hash": 394073349 }, - "m_initialQueueThreshold": { + "m_completedQuestList": { "type": "unsigned int", - "id": 15, - "offset": 312, + "id": 2, + "offset": 96, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 2069737705 - }, - "m_actorQueueTimeout": { - "type": "unsigned int", - "id": 16, - "offset": 316, - "flags": 7, + "hash": 426641112 + } + } + }, + "1068793202": { + "name": "class SharedPointer", + "bases": [ + "GeomParams", + "PropertyClass" + ], + "hash": 1068793202, + "properties": { + "m_eType": { + "type": "enum ProxyType", + "id": 0, + "offset": 72, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2220949042 + "hash": 1656534066, + "enum_options": { + "ProxyTypeBox": 0, + "ProxyTypeRay": 1, + "ProxyTypeSphere": 2, + "ProxyTypeCylinder": 3, + "ProxyTypeTube": 4, + "ProxyTypePlane": 5, + "ProxyTypeMesh": 6, + "ProxyTypeInvalid": 7 + } }, - "m_teamQueueTimeout": { - "type": "unsigned int", - "id": 17, - "offset": 320, + "m_vPosition": { + "type": "class Vector3D", + "id": 1, + "offset": 80, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 905233664 + "hash": 2432577069 }, - "m_actorQueueGrowth": { - "type": "float", - "id": 18, - "offset": 324, + "m_vDirection": { + "type": "class Vector3D", + "id": 2, + "offset": 92, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 499165488 + "hash": 2142285753 }, - "m_teamQueueGrowth": { + "m_fLength": { "type": "float", - "id": 19, - "offset": 328, + "id": 3, + "offset": 104, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1500499518 - }, - "m_matchMakingLevelMultiplier": { + "hash": 558261279 + } + } + }, + "643466482": { + "name": "class CreateAuraActorCinematicAction*", + "bases": [ + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 643466482, + "properties": { + "m_timeOffset": { "type": "float", - "id": 20, - "offset": 332, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 838900890 - }, - "m_levelModifiersListID": { - "type": "gid", - "id": 21, - "offset": 336, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 383459035 - }, - "m_incompleteTeamTimeout": { - "type": "unsigned int", - "id": 22, - "offset": 276, + "id": 0, + "offset": 72, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1580576011 + "hash": 2237098605 }, - "m_incompleteMatchTimeout": { - "type": "unsigned int", - "id": 23, - "offset": 272, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2167303729 + "hash": 2285866132 }, - "m_shortMatchDurationForPenaltySeconds": { - "type": "unsigned int", - "id": 24, - "offset": 360, + "m_newActorName": { + "type": "std::string", + "id": 2, + "offset": 120, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1403927011 - }, - "m_thresholdForExtendingMatchSearch": { + "hash": 2029131039 + } + } + }, + "1068695141": { + "name": "class GardeningShedBehavior", + "bases": [ + "GardeningShedBehaviorBase", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1068695141, + "properties": { + "m_behaviorTemplateNameID": { "type": "unsigned int", - "id": 25, - "offset": 364, - "flags": 7, + "id": 0, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1973589002 + "hash": 223437287 }, - "m_numberOfPlayersRequiredToExtendMatchSearch": { + "m_seedList": { "type": "unsigned int", - "id": 26, - "offset": 368, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 858588026 - }, - "m_showStatusOnJoinQueue": { - "type": "bool", - "id": 27, - "offset": 376, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1803391338 - }, - "m_allowExceedRangeForMatchesOptionForPlayers": { - "type": "bool", - "id": 28, - "offset": 377, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 592913977 - }, - "m_makeTeamsWithSameMatchOptsTimeoutSec": { - "type": "int", - "id": 29, - "offset": 372, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1787977769 - }, - "m_streakSize": { - "type": "int", - "id": 30, - "offset": 380, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1155220287 - }, - "m_historySize": { - "type": "int", - "id": 31, - "offset": 384, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 229055111 - }, - "m_queueWaitingTime": { - "type": "int", - "id": 32, - "offset": 388, - "flags": 7, - "container": "Static", - "dynamic": false, + "id": 1, + "offset": 112, + "flags": 65567, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 15229089 + "hash": 672751594 }, - "m_minQueueSize": { - "type": "int", - "id": 33, - "offset": 392, - "flags": 7, + "m_seedData": { + "type": "std::string", + "id": 2, + "offset": 128, + "flags": 551, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1319267550 - }, - "m_maxQueueSize": { - "type": "int", - "id": 34, - "offset": 396, + "hash": 1958752566 + } + } + }, + "1496238958": { + "name": "class HouseNameList", + "bases": [ + "PropertyClass" + ], + "hash": 1496238958, + "properties": { + "m_houseZoneList": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 1277586976 - }, - "m_confTierRankTimeout": { - "type": "int", - "id": 35, - "offset": 400, + "pointer": true, + "hash": 2061331472 + } + } + }, + "643140503": { + "name": "class ClientAnimateActorCinematicAction", + "bases": [ + "AnimateActorCinematicAction", + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 643140503, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 79057063 + "hash": 2237098605 }, - "m_matchTimer": { - "type": "float", - "id": 36, - "offset": 404, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1510935909 + "hash": 2285866132 }, - "m_bonusTime": { - "type": "int", - "id": 37, - "offset": 408, + "m_animation": { + "type": "std::string", + "id": 2, + "offset": 120, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1757496496 + "hash": 3431428731 }, - "m_passPenalty": { - "type": "int", - "id": 38, - "offset": 412, + "m_backupAnimation": { + "type": "std::string", + "id": 3, + "offset": 152, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 982951662 + "hash": 1661537937 }, - "m_yellowTime": { - "type": "int", - "id": 39, - "offset": 416, + "m_default": { + "type": "bool", + "id": 4, + "offset": 184, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1017028741 + "hash": 1014207576 }, - "m_redTime": { - "type": "int", - "id": 40, - "offset": 420, + "m_evenWhileDead": { + "type": "bool", + "id": 5, + "offset": 185, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1909556708 + "hash": 2100875368 }, - "m_minTurnTime": { - "type": "int", - "id": 41, - "offset": 424, + "m_fadeOutAfter": { + "type": "bool", + "id": 6, + "offset": 186, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 652524886 - }, - "m_effects": { - "type": "class SharedPointer", - "id": 42, - "offset": 432, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 804962647 + "hash": 2006083917 }, - "m_updateBattlePassPoints": { + "m_startsImportantAnimations": { "type": "bool", - "id": 43, - "offset": 456, + "id": 7, + "offset": 187, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 713306342 + "hash": 734711685 }, - "m_battlePassWinPoints": { - "type": "int", - "id": 44, - "offset": 460, + "m_forcesStageToWait": { + "type": "bool", + "id": 8, + "offset": 188, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1252337240 + "hash": 74507905 }, - "m_battlePassLosePoints": { - "type": "int", - "id": 45, - "offset": 464, + "m_storeAnimForLateComers": { + "type": "bool", + "id": 9, + "offset": 190, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1400839869 - }, - "m_numberOfRounds": { + "hash": 634303291 + } + } + }, + "1068694373": { + "name": "class GardeningShedBehavior*", + "bases": [ + "GardeningShedBehaviorBase", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1068694373, + "properties": { + "m_behaviorTemplateNameID": { "type": "unsigned int", - "id": 46, - "offset": 488, - "flags": 31, + "id": 0, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2292833030 + "hash": 223437287 }, - "m_removeBracketWhenEmpty": { - "type": "bool", - "id": 47, - "offset": 492, - "flags": 31, - "container": "Static", - "dynamic": false, + "m_seedList": { + "type": "unsigned int", + "id": 1, + "offset": 112, + "flags": 65567, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 1934068926 + "hash": 672751594 }, - "m_prepareForMatchTimeSeconds": { - "type": "unsigned int", - "id": 48, - "offset": 496, - "flags": 31, + "m_seedData": { + "type": "std::string", + "id": 2, + "offset": 128, + "flags": 551, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2209979662 - }, - "m_precreateTeams": { - "type": "bool", - "id": 49, - "offset": 500, - "flags": 31, + "hash": 1958752566 + } + } + }, + "638780470": { + "name": "class SharedPointer", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 638780470, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1229158248 - }, - "m_bracketTypeClassName": { - "type": "std::string", - "id": 50, - "offset": 504, + "hash": 3130754092 + } + } + }, + "1927861928": { + "name": "class TabDisplayPriorityList", + "bases": [ + "PropertyClass" + ], + "hash": 1927861928, + "properties": { + "m_tabPriList": { + "type": "class TabDisplayPriority", + "id": 0, + "offset": 72, "flags": 31, - "container": "Static", - "dynamic": false, + "container": "Vector", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 1569907152 + "hash": 3043784178 } } }, - "763677369": { - "name": "class SharedPointer", + "211235820": { + "name": "class ExpansionData*", "bases": [ - "SetTopTeamCinematicAction", - "CinematicAction", "PropertyClass" ], - "hash": 763677369, + "hash": 211235820, "properties": { - "m_timeOffset": { - "type": "float", + "m_category": { + "type": "enum ExpansionData::Category", "id": 0, "offset": 72, - "flags": 7, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 + "hash": 2705349254, + "enum_options": { + "EDC_Bank": 0, + "EDC_FriendsList": 1 + } }, - "m_interpDuration": { - "type": "float", + "m_maxExpansions": { + "type": "int", "id": 1, + "offset": 76, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 944258472 + }, + "m_expansionSize": { + "type": "int", + "id": 2, "offset": 80, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237711951 + "hash": 186190666 } } }, - "1123180163": { - "name": "class SharedPointer", + "638420246": { + "name": "class ClientRemoveAuraCinematicAction*", "bases": [ + "RemoveAuraCinematicAction", + "ActorCinematicAction", "CinematicAction", "PropertyClass" ], - "hash": 1123180163, + "hash": 638420246, "properties": { "m_timeOffset": { "type": "float", @@ -406702,7 +72175,7 @@ "pointer": false, "hash": 2237098605 }, - "m_eventToSend": { + "m_actor": { "type": "std::string", "id": 1, "offset": 80, @@ -406711,1377 +72184,3619 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 1564059786 + "hash": 2285866132 } } }, - "1912098218": { - "name": "class RandomSpellEffect*", + "1926270215": { + "name": "class WizardCharacterBehavior", "bases": [ - "SpellEffect", + "BehaviorInstance", "PropertyClass" ], - "hash": 1912098218, + "hash": 1926270215, "properties": { - "m_effectType": { - "type": "enum SpellEffect::kSpellEffects", + "m_behaviorTemplateNameID": { + "type": "unsigned int", "id": 0, - "offset": 72, - "flags": 2097183, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2578255295, - "enum_options": { - "kInvalidSpellEffect": 0, - "kDamage": 1, - "kDamageNoCrit": 2, - "kHeal": 3, - "kHealPercent": 4, - "kSetHealPercent": 113, - "kStealHealth": 5, - "kReduceOverTime": 6, - "kDetonateOverTime": 7, - "kPushCharm": 8, - "kStealCharm": 9, - "kPushWard": 10, - "kStealWard": 11, - "kPushOverTime": 12, - "kStealOverTime": 13, - "kRemoveCharm": 14, - "kRemoveWard": 15, - "kRemoveOverTime": 16, - "kRemoveAura": 17, - "kSwapAll": 18, - "kSwapCharm": 19, - "kSwapWard": 20, - "kSwapOverTime": 21, - "kModifyIncomingDamage": 22, - "kModifyIncomingDamageFlat": 119, - "kMaximumIncomingDamage": 23, - "kModifyIncomingHeal": 24, - "kModifyIncomingHealFlat": 118, - "kModifyIncomingDamageType": 25, - "kModifyIncomingArmorPiercing": 26, - "kModifyOutgoingDamage": 27, - "kModifyOutgoingDamageFlat": 121, - "kModifyOutgoingHeal": 28, - "kModifyOutgoingHealFlat": 120, - "kModifyOutgoingDamageType": 29, - "kModifyOutgoingArmorPiercing": 30, - "kModifyOutgoingStealHealth": 31, - "kModifyIncomingStealHealth": 32, - "kBounceNext": 33, - "kBouncePrevious": 34, - "kBounceBack": 35, - "kBounceAll": 36, - "kAbsorbDamage": 37, - "kAbsorbHeal": 38, - "kModifyAccuracy": 39, - "kDispel": 40, - "kConfusion": 41, - "kCloakedCharm": 42, - "kCloakedWard": 43, - "kStunResist": 44, - "kClue": 111, - "kPipConversion": 45, - "kCritBoost": 46, - "kCritBlock": 47, - "kPolymorph": 48, - "kDelayCast": 49, - "kModifyCardCloak": 50, - "kModifyCardDamage": 51, - "kModifyCardAccuracy": 53, - "kModifyCardMutation": 54, - "kModifyCardRank": 55, - "kModifyCardArmorPiercing": 56, - "kSummonCreature": 65, - "kTeleportPlayer": 66, - "kStun": 67, - "kDampen": 68, - "kReshuffle": 69, - "kMindControl": 70, - "kModifyPips": 71, - "kModifyPowerPips": 72, - "kModifyShadowPips": 73, - "kModifyHate": 74, - "kDamageOverTime": 75, - "kHealOverTime": 76, - "kModifyPowerPipChance": 77, - "kModifyRank": 78, - "kStunBlock": 79, - "kRevealCloak": 80, - "kInstantKill": 81, - "kAfterlife": 82, - "kDeferredDamage": 83, - "kDamagePerTotalPipPower": 84, - "kModifyCardHeal": 52, - "kModifyCardCharm": 57, - "kModifyCardWard": 58, - "kModifyCardOutgoingDamage": 59, - "kModifyCardOutgoingAccuracy": 60, - "kModifyCardOutgoingHeal": 61, - "kModifyCardOutgoingArmorPiercing": 62, - "kModifyCardIncomingDamage": 63, - "kModifyCardAbsorbDamage": 64, - "kCloakedWardNoRemove": 86, - "kAddCombatTriggerList": 87, - "kRemoveCombatTriggerList": 88, - "kBacklashDamage": 89, - "kModifyBacklash": 90, - "kIntercept": 91, - "kShadowSelf": 92, - "kShadowCreature": 93, - "kModifyShadowCreatureLevel": 94, - "kSelectShadowCreatureAttackTarget": 95, - "kShadowDecrementTurn": 96, - "kCritBoostSchoolSpecific": 97, - "kSpawnCreature": 98, - "kUnPolymorph": 99, - "kPowerPipConversion": 100, - "kProtectCardBeneficial": 101, - "kProtectCardHarmful": 102, - "kProtectBeneficial": 103, - "kProtectHarmful": 104, - "kDivideDamage": 105, - "kCollectEssence": 106, - "kKillCreature": 107, - "kDispelBlock": 108, - "kConfusionBlock": 109, - "kModifyPipRoundRate": 110, - "kMaxHealthDamage": 112, - "kUntargetable": 114, - "kMakeTargetable": 115, - "kForceTargetable": 116, - "kRemoveStunBlock": 117, - "kExitCombat": 122, - "kSuspendPips": 123, - "kResumePips": 124, - "kAutoPass": 125, - "kStopAutoPass": 126, - "kVanish": 127, - "kStopVanish": 128, - "kMaxHealthHeal": 129, - "kHealByWard": 130, - "kTaunt": 131, - "kPacify": 132, - "kRemoveTargetRestriction": 133, - "kConvertHangingEffect": 134, - "kAddSpellToDeck": 135, - "kAddSpellToHand": 136, - "kModifyIncomingDamageOverTime": 137, - "kModifyIncomingHealOverTime": 138, - "kModifyCardDamagebyRank": 139, - "kPushConvertedCharm": 140, - "kStealConvertedCharm": 141, - "kPushConvertedWard": 142, - "kStealConvertedWard": 143, - "kPushConvertedOverTime": 144, - "kStealConvertedOverTime": 145, - "kRemoveConvertedCharm": 146, - "kRemoveConvertedWard": 147, - "kRemoveConvertedOverTime": 148, - "kModifyOverTimeDuration": 149, - "kModifySchoolPips": 150 - } + "hash": 223437287 }, - "m_effectParam": { - "type": "int", + "m_nHeadHandsModel": { + "type": "bui2", "id": 1, - "offset": 76, - "flags": 31, + "offset": 112, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 357920024 + "hash": 998846322 }, - "m_disposition": { - "type": "enum SpellEffect::kHangingDisposition", + "m_nHairModel": { + "type": "bui4", "id": 2, - "offset": 80, - "flags": 2097159, + "offset": 116, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1904841031, - "enum_options": { - "kBoth": 0, - "kBeneficial": 1, - "kHarmful": 2 - } + "hash": 1416543510 }, - "m_sDamageType": { - "type": "std::string", + "m_nHatModel": { + "type": "bui2", "id": 3, - "offset": 88, - "flags": 7, + "offset": 120, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2501054223 + "hash": 1927990831 }, - "m_damageType": { - "type": "unsigned int", + "m_nTorsoModel": { + "type": "bui2", "id": 4, - "offset": 84, - "flags": 31, + "offset": 124, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 737882766 + "hash": 1482907529 }, - "m_pipNum": { - "type": "int", + "m_nFeetModel": { + "type": "bui2", "id": 5, "offset": 128, - "flags": 7, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 830827539 + "hash": 1832619222 }, - "m_actNum": { - "type": "int", + "m_nWandModel": { + "type": "bui2", "id": 6, "offset": 132, - "flags": 31, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 236824866 + "hash": 133255964 }, - "m_effectTarget": { - "type": "enum SpellEffect::kEffectTarget", + "m_nSkinColor": { + "type": "bui4", "id": 7, - "offset": 140, - "flags": 2097183, + "offset": 136, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2458940523, - "enum_options": { - "kInvalidTarget": 0, - "kSpell": 1, - "kSpecificSpells": 2, - "kGlobal": 3, - "kEnemyTeam": 4, - "kEnemyTeamAllAtOnce": 5, - "kFriendlyTeam": 6, - "kFriendlyTeamAllAtOnce": 7, - "kEnemySingle": 8, - "kFriendlySingle": 9, - "kMinion": 10, - "kFriendlyMinion": 17, - "kEnemyMinion": 18, - "kSelf": 11, - "kAtLeastOneEnemy": 13, - "kPreselectedEnemySingle": 12, - "kMultiTargetEnemy": 14, - "kMultiTargetFriendly": 15, - "kFriendlySingleNotMe": 16 - } + "hash": 105936053 }, - "m_numRounds": { - "type": "int", + "m_nSkinDecal": { + "type": "bui4", "id": 8, - "offset": 144, - "flags": 31, + "offset": 140, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1229753829 + "hash": 106752335 }, - "m_paramPerRound": { - "type": "int", + "m_nHairColor": { + "type": "bui7", "id": 9, - "offset": 148, - "flags": 31, + "offset": 144, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 683234234 + "hash": 1404660580 }, - "m_healModifier": { - "type": "float", + "m_nHatColor": { + "type": "bui5", "id": 10, + "offset": 148, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1916370045 + }, + "m_nHatDecal": { + "type": "bui5", + "id": 11, "offset": 152, - "flags": 7, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1317921248, + "hash": 1917186327 + }, + "m_nTorsoColor": { + "type": "bui5", + "id": 12, + "offset": 156, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1471286743 + }, + "m_nTorsoDecal": { + "type": "bui5", + "id": 13, + "offset": 160, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1472103025 + }, + "m_nTorsoDecal2": { + "type": "bui5", + "id": 14, + "offset": 164, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1310258307 + }, + "m_nFeetColor": { + "type": "bui5", + "id": 15, + "offset": 168, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1820998436 + }, + "m_nFeetDecal": { + "type": "bui5", + "id": 16, + "offset": 172, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1821814718 + }, + "m_eGender": { + "type": "enum eGender", + "id": 17, + "offset": 176, + "flags": 2097215, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2776344943, "enum_options": { - "__DEFAULT": "1.0" + "Male": 1, + "Female": 0, + "Neutral": 2 + } + }, + "m_eRace": { + "type": "enum eRace", + "id": 18, + "offset": 180, + "flags": 2097215, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 963057554, + "enum_options": { + "Bat": 88066, + "BatLightning": 1472842576, + "Boar": 2624962, + "CatThug": 1855674386, + "ChristmasElf": 819908552, + "ChristmasSnowman": 1146515225, + "Colossus_Ice": 1063279538, + "Cyclops": 1691813655, + "DragonBeta": 417003588, + "DragonFriendly": 69049013, + "EvilSnowman": 1579630926, + "FireElf": 443793687, + "Firecat": 2045525741, + "Frog": 2274918, + "FrostBeetle": 7692383, + "GhostBlue": 1097396892, + "GhostGreen": 882822629, + "GhostRed": 560510742, + "GhostYellow": 909974358, + "Ghoul": 82556199, + "GoatMonk": 486215564, + "GolemBrass": 1057388325, + "GolemClockwork": 1143380031, + "GolemSteel": 1660583674, + "GolemWood": 1426849876, + "HalloweenCat": 1042869199, + "Heckhound": 626736403, + "Helephant": 719065368, + "Human": 79806088, + "Hydra": 70785800, + "Imp": 84361, + "Krokomummy": 555755242, + "Kroktut": 1352354178, + "Leprechaun": 2106466410, + "LeprechaunPattyDay": 380507781, + "LightningBat": 228257682, + "Mannequin": 428442544, + "Minotaur": 949570680, + "Mount_Broom": 94637995, + "Mount_Cat": 1150940211, + "Mount_Dragon": 1565720148, + "Mount_Horse": 2054712767, + "Mount_PlayerWings": 589829552, + "Nikkos": 1563122418, + "NinjaPig": 607400740, + "Orthus": 1552590225, + "Piggle": 1897753328, + "Piggle_Valentine": 687697592, + "Piggle_ValentinePart2": 1760391091, + "Pixie": 74836240, + "RatMagician": 885542120, + "SalamanderFire": 48480175, + "SalamanderIce": 2011152164, + "SalamanderStorm": 600331072, + "Satyr": 84793363, + "Scarab": 2143810477, + "Sheep": 86220083, + "SkeletonArmored": 1791586239, + "SnowSerpent": 138621543, + "Spider": 1603064269, + "SpiderBlack": 559353179, + "SpiderBrown": 557941675, + "SpiderCrystal": 2119625297, + "SpiderGolem": 1632616514, + "Sprite": 1889156557, + "SpriteDark": 1888685518, + "Stormzilla": 252684095, + "SunBird": 1602211198, + "Transformation_ArmoredSkeleton": 1861349834, + "Transformation_CatThug": 1175387611, + "Transformation_Cat_Bandit": 1012395694, + "Transformation_ClockworkGolem": 601121214, + "Transformation_Cyclops": 620156297, + "Transformation_DarkFairy": 1206757203, + "Transformation_DraconianSorcerer": 1212016810, + "Transformation_Draconian": 450730089, + "Transformation_EarthColossus": 140119452, + "Transformation_EvilSnowman": 1497097122, + "Transformation_FatGobbler": 634003800, + "Transformation_FireElemental": 822233230, + "Transformation_FireElf": 46585468, + "Transformation_FireSalamander": 2118418114, + "Transformation_Gobbler_Skinny": 162365207, + "Transformation_GolemSteel": 1329184184, + "Transformation_Ice_Colossus": 430406408, + "Transformation_Krokomummy": 1644615769, + "Transformation_MagmaMan": 545064542, + "Transformation_Mander": 88998828, + "Transformation_NinjaPig": 1029132174, + "Transformation_Ninja_Pig_04": 7093548, + "Transformation_RatThug": 1175352795, + "Transformation_RavenMystic": 1443197359, + "Transformation_StormElemental": 637088511, + "Transformation_Treant": 1874998327, + "Transformation_WarPig": 691088645, + "Transformation_WolfScout": 263523463, + "Transformation_WolfWarrior": 6092463, + "Transformationn_SkeletonPirate": 1821341863, + "Treant": 1396597132, + "Troll": 82261620, + "Unicorn": 550546918, + "Unknown": 718677478, + "Wolverine": 528843083, + "Wraith": 1788506505, + "Wyrmkin": 379044612, + "Transformation_CyrusDrake": 94277831, + "PetEgg": 1973167984, + "GhostLady": 493415959, + "Banshee": 827805677, + "GobblerRed": 250135875, + "Ghoul_Gravedigger": 161812468, + "SkeletonWarrior": 734585814, + "BansheeBoss": 806445565, + "Seraph": 1792950125, + "CrabKing": 277875784, + "UndeadCaster": 1680689397, + "DragonFrontier": 1829438301, + "HeckhoundGhost": 872406464, + "Mount_Unicorn": 212699468, + "Jellyfish": 910724608, + "SeaDragon": 1194541306, + "Turtle": 1897184620, + "Starfish": 1447562471, + "SpinyFish": 162948281, + "Mount_Gryphon": 2110522960, + "Mount_Shark": 1170186623, + "Mount_Manta": 979931598, + "Mount_Seahorse": 1554833818, + "Mount_Seahorse_Tough": 1245859453, + "Mount_Koi": 1150937409, + "Mount_Lobster": 2025618875, + "Mount_Turtle": 1490849128, + "VenusFlyTrap": 1612039757, + "GDN_MED_BabyCarrots": 327334743, + "GDN_SM_BoomShroom": 31324632, + "GDN_SM_Dandelion": 2058674142, + "GDN_SM_Disparagus": 1732989489, + "GDN_MED_EvilSnowPeas": 747408607, + "GDN_SM_FicklePickle": 205381955, + "GDN_SM_HappyHolidaisy": 1736236340, + "GDN_MED_HelephantEars": 1803669659, + "GDN_MED_HoneySickle": 424149132, + "GDN_LG_NinjaFig": 847338104, + "GDN_LG_SnapDragon": 1076151689, + "GDN_SM_StinkWeed": 845383431, + "GDN_MED_TrumpetVine": 1922690264, + "GDN_MED_VenusFlyTrap": 1560899638, + "GDN_SM_Laughodil": 1278979588, + "GDN_LG_BreadFruitBush": 533042934, + "GDN_MED_PricklyBearCactus": 1236846986, + "GDN_MED_KingParsley": 110148182, + "LeprechaunPatriotic": 414730890, + "SeraphYuletide": 1325846853, + "DragonGhost": 1502126893, + "UnicornNightmare": 604358256, + "EvilSnowmanSandman": 1579432150, + "Colossus_Spirit": 422514215, + "Rock": 2393554, + "GDN_MED_GivingTree": 2047236132, + "Egg": 70853, + "Mount_Carpets": 1602744888, + "Kraken": 1737191829, + "Wyvern": 1727802601, + "Phoenix": 1765559002, + "Judgement": 562901781, + "ForestLord": 1390734923, + "Humongofrog": 1272123051, + "Scarecrow": 41441599, + "Mount_Ram": 77196599, + "BasketSnake": 1835657086, + "Samoorai": 522797493, + "Transformation_RavenWarrior": 701169336, + "PhoenixStorm": 1325268802, + "PhoenixDeath": 1281634042, + "GDN_LG_CouchPotatoes": 879742725, + "GDN_MED_KeyLimes": 811516024, + "Mount_BoneDragon": 1023618313, + "Mount_BigBoneDragon": 1124383680, + "Mount_FairyWings": 1904926612, + "Mount_DragonWings": 755225925, + "Mount_Pegasus": 1621244140, + "GDN_MED_BellPepper": 1710238687, + "GDN_MED_GrapesOfWrath": 1068787103, + "GDN_SM_TigerLily": 1899057048, + "WysteriaPiggle": 49173891, + "Mount_Wyvern": 1658410744, + "Mount_2P_Rhino": 1052779475, + "NightHawk": 358964390, + "Giraffe": 935214826, + "Mount_Hawk": 2070898895, + "Mount_HalloweenNightmare": 726136378, + "GobblerHalloween": 1482399836, + "Leopard": 1606863715, + "Skink": 76950867, + "Mount_Ostrich": 466111322, + "Mount_Crocagator": 1981222087, + "Transformation_Blacktusk-01": 401543565, + "Mount_Hippogriff": 2043817624, + "Transformation_Gorilla-01": 1555853240, + "Transformation_Gorilla-02": 1606184888, + "Mount_Raven": 94983735, + "Mount_Chrismoose": 1822495199, + "Mount_CandyCane": 1148551147, + "Ivy_League": 925492799, + "GDN_MED_Ivy_League": 1630077794, + "Mount_Kirin": 1168691825, + "GDN_SM_Moonflower": 2068754330, + "GDN_MED_BoonTree": 788055729, + "Snowball": 2046118016, + "Foo_Dog": 1549710807, + "ShenlongDragon": 932676736, + "Monkey": 1233866291, + "Wolfhound": 626884686, + "Redcap": 1540319086, + "Raven": 79941650, + "HollowKnight": 1107268274, + "Book": 2405826, + "GDN_MED_AngoraBunnyEars": 1547559854, + "GDN_MED_FortuneCookieTree": 786686214, + "GDN_MED_GooseTree": 809354938, + "GDN_SM_HoneyBeePlant": 1528880373, + "GDN_MED_BambooShoots": 1096708900, + "GDN_SM_Huckleberries": 1937475840, + "Rock_Moustache": 962221287, + "Efreet_Myth": 1834555522, + "Efreet": 1401700123, + "Mammoth": 1395147745, + "Triton": 1730466188, + "Gnome": 74954215, + "BoneDragon": 429245206, + "Basilisk": 1457899086, + "Chimera": 529027789, + "Transformation_GammaTemplate": 1337834518, + "Mount_Camel": 1168198963, + "Mount_RenaissanceWings": 1049782088, + "Bull_Mount": 1713506759, + "Mount_Owl": 1150938242, + "Mount_Alphyn": 487264165, + "Mount_Stag": 1150353823, + "Mount_Auroch": 509865325, + "Mount_Warg": 1150358072, + "StrangeBeast": 511334734, + "Efreet_Ice": 1820009122, + "Efreet_Storm": 1269986674, + "GDN_LG_AlligatorPear": 1293913372, + "Mount_2P_Treant": 928450863, + "Mount_2P_Dragon": 1431637933, + "Mount_Pogo_Stick_WC": 1462849298, + "Mount_Pogo_Stick_MB": 1349603090, + "GDN_LG_MeltingCheese": 1914589015, + "GDN_SM_FishOnAVine": 1734955358, + "GDN_LG_AngelOak": 1539539424, + "GDN_LG_MeltingCheese_Angel": 1254781264, + "SnowyOwl": 1682262138, + "Mount_3P_Hydra": 1207475250, + "WeaselMinstrel": 1541234616, + "MOUNT_Rickshaw": 938282973, + "Transformation_Sherlock-Bones": 509126601, + "Mount_Phoenix": 556355452, + "Toaddle": 597488187, + "Pantera": 528797696, + "WildfireTreant": 673362041, + "StoneTiger": 746336665, + "Blowfish": 1447737334, + "Smith": 78327187, + "FlyingCat": 1254472614, + "RamWarrior": 536916302, + "Ladybug": 1846384669, + "BurlapBoy": 607590898, + "DeerKnight": 560802130, + "Gargoyle": 1227701700, + "Chameleon": 596131510, + "Scorpion": 1462253104, + "GDN_SM_BoiledPeanuts": 544885684, + "GDN_SM_ClockFlower": 676513046, + "GDN_SM_DeadBeets": 650783482, + "GDN_MED_SnowApple": 1916648180, + "Eyecaramba_Violet": 1804780775, + "Eyecaramba_Green": 750346574, + "Eyecaramba_Orange": 687614854, + "Piggle_Grandfather": 131445665, + "Velociraptor": 1042311818, + "Babydactyl": 1180982194, + "Stegosaurus": 476811765, + "Mount_Pegasus_Spectral": 948250730, + "Mount_2P_Scarydactyl": 1808983335, + "Mount_2P_TRex": 1495851852, + "Therizinosaurus": 80337863, + "Runtosaurus": 476200406, + "FrilledLizard": 420993517, + "Mount_Ankylosaurus": 669692274, + "Mount_Triceratops": 1126950204, + "Mount_2P_Glider": 1630365881, + "Transformation_Thunderhorn": 1045262037, + "Transformation_Jaguar": 1080966062, + "Transformation_Pteranadon": 273836142, + "Transformation_ShadowWeaver": 255927111, + "Transformation_EagleWarrior": 1880471875, + "Mount_Falalalallama": 389890123, + "Mount_2P_WinterTreant": 1850265056, + "GDN_LG_MissileToe": 1767792974, + "GDN_MED_PointSetta": 647257205, + "Nutcracker2012": 1598217699, + "Coal2012": 1627852119, + "Mount_Sleigh": 1636615519, + "Mount_Sabertooth": 1613031507, + "Mount_MechanicalWings": 1014917438, + "PiranhaHunter": 686271163, + "Quetzal": 2020925822, + "Mount_Sloth": 1169387359, + "HollowKnightLife": 2114081886, + "BettaFish": 138088968, + "MummyCat": 62372925, + "TrojanHorse": 1725299194, + "WC_Storm_Possessed": 186960228, + "AV_Possessed": 1106693085, + "AZ_Possessed": 1106692701, + "CL_Possessed": 1106692255, + "KT_Possessed": 1106693015, + "MS_Possessed": 1106692977, + "WC_Possessed": 1106692459, + "Mount_2P_Whale": 448824263, + "Mount_2P_Chariot": 88035298, + "Mount_WarBoar": 1159836211, + "Mount_Palanquin": 47587550, + "BearCub": 672664722, + "Transformation_Minotaur": 1454233452, + "DragonGauntlet": 797645257, + "DeathUnicorn": 924144161, + "Flamingo": 1488424911, + "Mount_Gorilla": 1939919432, + "Mount_WarUnicorn": 1361393198, + "GargoyleMyth": 1819685060, + "TikiMan": 16098567, + "Siren": 79937811, + "GoldenRam": 410220227, + "Harpy": 96026632, + "SwordShield": 1668411785, + "ClockworkKnight": 1059948980, + "Mount_MechanicalEagle": 1720948645, + "Mount_Cloud": 1166233435, + "Mount_Surfboard": 1914250039, + "Mount_BetaDragon": 1023653721, + "Mount_BeeWings": 1387988401, + "Vampire": 524731385, + "FrankenBunny": 589797989, + "BumbleBee": 249592226, + "Mount_Dragonfly": 1028843656, + "BronzeGolem": 1320867859, + "TarantulaHawk": 1983939429, + "Mount_Grasshopper": 1852850928, + "FlyingSquirrel": 847551166, + "GDN_MED_Sunion": 1652707634, + "GDN_MED_SwordFern": 548761438, + "GDN_SM_SugarKhrystal": 267539461, + "GDN_SM_SawPalmetto": 1892888046, + "GDN_LG_FacePalm": 2050814140, + "GDN_LG_QueenCrapeMyrtle": 80378450, + "Transformation_ShadowTank": 1304943609, + "Transformation_ShadowHeal": 1254024185, + "Transformation_ShadowDPS": 87276537, + "Mount_Noelephant": 1383672248, + "SaintBernard": 572932242, + "ParkaFox": 2009808189, + "Goose": 75019719, + "Mount_Coconut": 791151432, + "CreepyBeetle": 345594179, + "BabyDragonfly": 1367084335, + "FennecFox": 41315063, + "PP_Leviathan": 833901526, + "PP_SunSerpent": 1062677009, + "PP_LordOfWinter": 960214698, + "PP_Medusa": 867812931, + "PP_Dryad": 147654656, + "PP_AvengingFossil": 315904647, + "PP_Sabertooth": 1799146677, + "Mount_Butterfly": 1283940943, + "Mount_Hare": 2070851023, + "Transformation_MorganthB": 197306990, + "Transformation_MorganthC": 197831278, + "Transformation_MorganthD": 200452718, + "BabyPegasus": 1215000859, + "ArcaneHelp": 1899247549, + "Mount_Vines": 98389624, + "Mount_ArcaneMinecart": 2001270930, + "Hobgoblin": 2133668461, + "Mount_2P_Rowboat": 237071469, + "ForestSpirit": 1178454602, + "Mount_SpiritWolf": 531991076, + "Otter": 84138671, + "OrigamiBird": 550984083, + "DinoSkeletal": 233277835, + "Mount_HarrowingsGreen": 1605746772, + "Mount_HarrowingsBlue": 477152436, + "Mount_HarrowingsPurple": 2092807554, + "RedPanda": 1744233845, + "Ibis": 2665577, + "Corgi": 78823875, + "Mount_Yak": 996545739, + "Mount_FlyingBalance": 436519643, + "Transformation_ShadowMalistaire": 1043814435, + "Transformation_DragonMalistaire": 841867699, + "Mount_Scarab": 1687658791, + "Transformation_MisterHound": 1973578844, + "Mount_BahHumbug": 55114077, + "Skates": 1568993965, + "Moose": 75019725, + "Mount_Gargoyle": 1456663874, + "GDN_MED_VenusFlyTrapEpic": 1594069606, + "Mount_PlayerWingsPink": 19403046, + "GDN_LG_AlligatorPearEpic": 1326804812, + "Pet_Armadillo": 825736847, + "Mount_JoustingDestrierDyeable": 1683448768, + "GDN_MED_VampireCarrots": 871596496, + "GDN_SM_WhiteTigerLilyEpic": 1703271434, + "GDN_LG_NinjaFigEpic": 938504823, + "GDN_LG_SnapDragonEpic": 2071674466, + "GDN_MED_HelephantEarsEpic": 719166107, + "GDN_MED_TrumpetVineEpic": 225854518, + "GDN_SM_DandelionEpic": 728637442, + "GDN_SM_HuckleberriesEpic": 1903258448, + "GDN_MED_SnowAppleEpic": 1231175967, + "GDN_SM_BoomShroomEpic": 981598771, + "GDN_MED_KingParsleyEpic": 2038371004, + "Mount_Raptor": 749695031, + "Pet_Toucan": 581477475, + "Pet_Squirrel": 969881395, + "Mount_WonkyDonkey": 1481657312, + "Mount_HawkPatriotic": 509149743, + "Pet_FrogAssistant": 1945041750, + "Mount_Cat2": 1151054899, + "Mount_Cat2BW": 1603515443, + "Pet_ArmadilloBW": 825733899, + "Pet_FrankieForearms": 1100195857, + "Mount_SolarSabre": 1281093703, + "MNT_MechOstrich": 258667969, + "MNT_BootsBalance": 1799191558, + "MNT_BootsDeath": 1034912971, + "MNT_BootsFire": 606061658, + "MNT_BootsIce": 2142643294, + "MNT_BootsLife": 773751898, + "MNT_BootsMyth": 144792486, + "MNT_BootsStorm": 1525245121, + "Pet_CorgiBirthday": 1951779369, + "OrigamiBirdBDay": 1909935955, + "Pet_FlyingBlackCat": 432111988, + "Mount_Narwhal": 449637834, + "Mount_NightOwl": 1648420845, + "Pet_Penguin": 137342907, + "MNT_PowerGemUnicorn": 411234062, + "Pet_CrystalButterfly": 512136094, + "Mount_BabyMammoth": 185831059, + "MNT_BabaYaga": 564874997, + "Pet_BabySeal": 657606984, + "Pet_BabyYeti": 635847496, + "Transformation_BallerinaBear": 1525333600, + "Mount_StagYuletide": 1508680687, + "Transformation_TitanMedium": 1700742736, + "Transformation_TitanLarge": 718614967, + "Pet_SirenIce": 849851564, + "Mount_FlyingDeath": 1717725588, + "Mount_FlyingFire": 1177216332, + "Mount_FlyingIce": 1238841184, + "Mount_FlyingLife": 433397684, + "Mount_FlyingMyth": 164983572, + "Mount_FlyingStorm": 375872049, + "Dragonling": 1730534849, + "Pet_EggChicken": 952873217, + "HeckhoundGhost_MAW": 893368960, + "Mount_WinterTrain": 751515281, + "Mount_RubberDucky": 1826548479, + "Pet_BansheeSpellwrit": 917979583, + "Pet_SamooraiSpellwrit": 370057597, + "Mount_UnicornAstral": 886914505, + "Guest_Boochbeard": 1958574095, + "Pet_MouseSister": 1267930350, + "Pet_MouseFather": 2010008339, + "Pet_VampireSquirrel": 250588691, + "Mount_CoffinCar": 1387606595, + "Mount_BabyElephant": 2026559639, + "Pet_RoadHog": 601156960, + "Mount_WolfGryphonWings": 543038283, + "MNT_ClockworkSteed": 891371132, + "Mount_Chopper": 1196683136, + "Pet_ButterflyLamb": 527214392, + "Pet_MouseMother": 2012687123, + "Pet_MouseBrother": 1174380856, + "Pet_Cherub": 769208559, + "GDN_SM_Jewel": 1104045832, + "MR_Death_Duncan_Grimwater": 1850289001, + "Mount_DesertRunner": 2049036229, + "Pet_MonkeyMirage": 418612892, + "Pet_ClockworkOwl": 1038482431, + "Pet_NinjaTurtle": 2024540686, + "Mount_Vines_Halloween": 82852149, + "Mount_SwarmBat": 1151836459, + "Mount_2P_NinjaDragon": 1239694057, + "Mount_Gobler": 1820615236, + "Mount_MaryleboneCar": 2027689685, + "JackOLantern": 1016361578, + "Transformation_DjinnCommonA_Balance": 996127128, + "Transformation_MedicineMode": 25960701, + "CactusHopper": 1956293007, + "Transformation_Mimic_ChestGold_A": 414145432, + "Mount_Ghoulture": 1067671195, + "Pet_Macaw": 1087278472, + "Pet_SandWorm": 653200803, + "Transformation_DromelDancer": 1071824116, + "Pet_Bunnies": 695874547, + "Mount_Snowboard": 1914380015, + "Transformation_DrommelDancer": 226294468, + "Mount_Carpet_New": 1618650322, + "Mount_BunnySleigh": 599915427, + "Helephant_Heart": 419161272, + "Mount_Snowboard_Holiday": 876339060, + "Transformation_GhostDog": 646575420, + "Transformation_PrinceGobblestone": 693826496, + "Transformation_Mithraya": 1240010601, + "Transformation_LuskaCharmbeak": 897469730, + "Transformation_YoungCyrusDrake": 15595663, + "Kookaburra": 1069759154, + "BorealisGolemPet": 797488492, + "FlyingEyePet": 505959833, + "StormCloudPet": 548463069, + "BullPet": 1993917801, + "OpossumPet": 284003652, + "GhoulturePet": 939920734, + "StormCloudPetB": 548463001, + "StormCloudPetC": 548463003, + "Guest_LordNightshade": 1221409981, + "BullPetB": 1993917561, + "BullPetC": 1993917553, + "BullPetD": 1993917513, + "Transformation_ShadowCrit": 1392195065, + "Mount_Pennyfarthing": 1551926344, + "Mount_RowboatPirate": 2079208803, + "Mount_IceCube": 1261861595, + "Guest_LostMaiden": 883675592, + "Guest_BoatswainMcGee": 1359750850, + "Guest_ChiefMateMcGurk": 329643845, + "Guest_DoomedBones": 2015643882, + "Guest_SpectreoftheBrocken": 266357448, + "Guest_DrownedKnight": 1100966093, + "Guest_TarntheDrowned": 329540205, + "Guest_DisloyalKnight": 1853240753, + "Guest_NamelessKnight": 1065677876, + "Guest_LambentFire": 489886605, + "Guest_LordoftheBrocken": 1662003371, + "Guest_StormCaiman": 1147500291, + "Guest_GrinningDeathMoon": 737595789, + "Guest_MoonSkullWight": 1720039490, + "Guest_HuemacSpearWreath": 1522021131, + "Guest_HowlingBanshee": 1340855338, + "Guest_Sea-Booter": 1818491983, + "Guest_DeadRover": 1009273257, + "Guest_CelestianRemnant": 1312268448, + "Guest_Shadow-WebConscript": 1500529411, + "Guest_Shadow-WebMercenary": 623672171, + "Guest_Shadow-WebWraith": 810956416, + "Guest_Shadow-WebHaunt": 500586883, + "Guest_CelestianPartisan": 633346892, + "Guest_CelestianDefender": 482102727, + "Guest_ThraleBonestriker": 1172972733, + "Guest_VorgenSoulbreaker": 1935693246, + "Guest_ServusBloodsword": 1703995647, + "Guest_QueenCalypso": 845803519, + "Guest_BlueBart": 77043390, + "Guest_KarolakNightspinner": 1008737316, + "Guest_ArachtusDuskweb": 1787750209, + "Guest_ZhalarStarcloud": 1453644105, + "Guest_NarallorNightborn": 1963363700, + "Guest_SelwynSkywatcher": 1413136893, + "Guest_OsseusNightreaver": 306827003, + "Guest_IrateBanshee": 865143109, + "Guest_FuriousHowler": 1607252558, + "Guest_CryingSpirit": 1559074820, + "Guest_UndeadDraconian": 169249571, + "Guest_ReanimatedDraconian": 247067807, + "Guest_GhastlySlave": 80127661, + "Guest_BoundSpecter": 369706568, + "Guest_NecroticHaunter": 1714841563, + "Guest_LoathsomeCreeper": 1087245229, + "Guest_FleshrotRetriever": 1925148031, + "Guest_BarbarianSpirit": 2112552732, + "Guest_BeghastionCrowcaller": 586628832, + "Guest_BeghastionFieldburner": 1650751959, + "Guest_BoneWarrior": 76802026, + "Guest_FleshlessSentry": 708431820, + "Guest_PirateRavager": 945157059, + "Guest_RottenScallywag": 974666855, + "Guest_ArmoredBonewalker": 1444568072, + "Guest_UndeadWizard": 1622435563, + "Guest_SoulSearcher": 2094392941, + "Guest_DecayingBlackguard": 412324062, + "Guest_FoulReaper": 919877614, + "Guest_NightShadow": 1675932226, + "Guest_MotleyCrew": 653779218, + "Guest_OrinGrimcaster": 472649066, + "Guest_GhostofSylviaDrake": 218332449, + "Guest_VikaMarkmaker": 1145181168, + "Guest_VasekAshweaver": 1001434369, + "Guest_FireWraith": 1027720368, + "Guest_HungrySoul": 1722435576, + "Guest_FrostBones": 456145606, + "Guest_SnowSkull": 835837850, + "Guest_WinterSkull": 1556601065, + "Guest_LothinDoombringer": 860995070, + "Guest_MimirWinterbane": 1111898070, + "Guest_KulgrimSoulsunder": 278037985, + "Guest_HitojiniDeathcaster": 1144499043, + "Guest_GaikotsuSkeleton": 1113949902, + "Guest_PhantomAce": 1917639347, + "Guest_PhantomGlider": 849918336, + "Guest_Krokomummy": 857773886, + "Guest_NiriniAncientGuard": 359313880, + "Guest_NiriniFireSpirit": 1863811476, + "Guest_VaultHaunter": 197723476, + "Guest_VigilantDefender": 171276829, + "Guest_WanderingAhnicSpirit": 1702865088, + "Guest_ForgottenDjeseritSoul": 1170568256, + "Guest_KaranahnDeathfeeder": 1612857711, + "Guest_ShamblingAhnic": 1579129677, + "Guest_RisenDjeserit": 287855500, + "Guest_KaranahnMortifier": 874288111, + "Guest_DjeseritDweller": 2058423665, + "Guest_AhnicStrider": 1776992302, + "Guest_GuardianoftheFang": 1816795524, + "Guest_DefenderoftheFang": 354353604, + "Guest_ProtectoroftheFang": 1290191037, + "Guest_SouloftheCharmed": 422890577, + "Guest_KaranahnKeeper": 77581557, + "Guest_NiriniIntimidator": 677205957, + "Guest_CondemnedSoldier": 449152244, + "Guest_NimahtheWicked": 1298248873, + "Guest_AkoriNirini": 1123159753, + "Guest_SoulScavenger": 892852198, + "Guest_KeeperoftheFang": 1676773499, + "Guest_ItennuSokkwi": 699159408, + "Guest_Tempestra": 334938435, + "Guest_QueenIrisiDjeserit": 1861434100, + "Guest_TheBonekeeper": 1302503449, + "Guest_CryptScavenger": 1893795791, + "Guest_Soulsapper": 1699756010, + "Guest_KingUroAhnic": 1788825731, + "Guest_KingShemetDjeserit": 1350067043, + "Guest_UnholyWraith": 1871146013, + "Guest_PikeSpiritcrusher": 498715531, + "Guest_SpellwritScreamer": 801626733, + "Guest_SpellwritRonin": 1671439174, + "Guest_Shrieker": 805966229, + "Guest_GravePhantom": 731622936, + "Guest_NightmareSpirit": 230709057, + "Guest_VengefulCreeper": 1100197884, + "Guest_TombRoamer": 1277825068, + "Guest_ShieldSkeleton": 1634270152, + "Guest_AgonyWraith": 30384496, + "Guest_IcyGhost": 768353592, + "Guest_Half-wittedSkeleton": 647996362, + "Guest_LazyHenchman": 1329554426, + "Guest_TiredFighter": 210248632, + "Guest_Screecher": 469007005, + "Guest_SeethingWraith": 664913100, + "Guest_ColdConfusion": 1304943934, + "Guest_OssuaryConscript": 1017667150, + "Guest_Ghulture": 1330558655, + "Guest_BodyGuard": 1048581801, + "Guest_SpectralGuardian": 422805602, + "Guest_VaultConscript": 1388398065, + "Guest_FootPatrol": 1692393321, + "Guest_ArmedGuard": 2045920536, + "Guest_Chilly": 1764665905, + "Guest_Achey": 973370519, + "Guest_Sneezy": 1769440773, + "Guest_Cough": 1170200073, + "Guest_Shadowbones": 1316133167, + "Guest_ForgottenConscript": 1466348281, + "Guest_BarracksGuardian": 236603440, + "Guest_CryptConscript": 314755436, + "Guest_DurvishSeeker": 1825622267, + "Guest_MedicineMode": 167015574, + "Guest_Myriarch2": 593881680, + "Guest_Myriarch3": 593881616, + "Guest_MyriarchEphialtes": 773531895, + "Guest_MotherGhulture": 1585201915, + "Guest_CaptainCosrow": 727107332, + "Guest_VizierRafaj": 214040637, + "Guest_DarkmoorSerf": 1522169114, + "Guest_DarkmoorSquire": 1822567109, + "Guest_ScarletWampyr": 1683954247, + "Guest_DraconianRevenant": 741497298, + "Guest_DraconianEidolon": 107733297, + "Guest_AnguishedWraith": 1078602022, + "Guest_DraconianPyromancer": 729577007, + "Guest_DraconianThaumaturge": 189734361, + "Guest_DraconianDiviner": 472633746, + "Guest_DraconianConjurer": 1824962835, + "Guest_DraconianTheurgist": 1828628416, + "Guest_DraconianNecromancer": 175364324, + "Guest_DraconianSorcerer": 1262893339, + "Guest_SirBlackwater": 366308464, + "Guest_AkhtangWormCrawl": 1589032404, + "Guest_SpiritofDarkmoor": 579455915, + "Guest_ShanevonShane": 2096517522, + "Guest_YevgenyNightCreeper": 1535282881, + "Guest_MalistairetheUndying": 824508513, + "Guest_Bunferatu": 1015806005, + "Guest_CountBelaBlackSleep": 761647679, + "Guest_DeathSoldier": 1715141574, + "Guest_SorrowWhisperer": 556532003, + "Guest_GriefSpectre": 1425488559, + "Guest_HowlingShade": 631460247, + "Guest_WalkingDead": 318527090, + "Guest_Akuji": 977635799, + "Guest_TorturedKakedaSoul": 1716874833, + "Guest_KakedaSpiritSlave": 1814699344, + "Guest_DishonoredSamoorai": 320085744, + "Guest_CursedRonin": 1204095686, + "Guest_TomugawatheEvil": 166125424, + "Guest_OyotomitheDefiler": 1672714483, + "Guest_Fushiko": 801492770, + "Guest_BrokenLandGuardian": 294671991, + "Guest_ShatteredSkyGuardian": 746681463, + "Guest_SunderedSeamGuardian": 1439618652, + "Guest_BrokenLandSpirit": 860105895, + "Guest_ShatteredSkySpirit": 2104112380, + "Guest_SunderedSeamSpirit": 69572311, + "Guest_LostSoul": 204361577, + "Guest_RottingFodder": 308249734, + "Guest_HauntedMinion": 689597338, + "Guest_FieldGuard": 1175228991, + "Guest_SkeletalWarrior": 778393993, + "Guest_SkeletalPirate": 1476730220, + "Guest_WanderingSpecter": 126188449, + "Guest_LivingScarecrow": 1442943145, + "Guest_FrostPhantom": 1809776664, + "Guest_FireShrieker": 173332719, + "Guest_CryptCrawler": 2118799272, + "Guest_ViridianSpecter": 383149977, + "Guest_ArgentClatterer": 525414714, + "Guest_SwimmingSpecter": 1494025094, + "Guest_ScarletScreamer": 1689589811, + "Guest_BoneDigger": 1351421123, + "Guest_HowlingGhost": 664019391, + "Guest_SkeletalSoldier": 750463116, + "Guest_MaidenofHate": 444442868, + "Guest_SkeletalRetainer": 1409032775, + "Guest_SoulHunter": 1900267551, + "Guest_MidnightShuffler": 1991052065, + "Guest_PlaguedSoul": 419071561, + "Guest_HauntingBanshee": 345837052, + "Guest_SimontheSayer": 1352807820, + "Guest_TheHarvestLord": 1923575206, + "Guest_LadyBlackhope": 1403431623, + "Guest_SergeantSkullsplitter": 898737831, + "Guest_Foulgaze": 2063419769, + "Guest_Wormguts": 788697519, + "Guest_Rattlebones": 125602919, + "Guest_Paulson": 1112716921, + "Guest_Grubb": 1167554274, + "Guest_Norton": 581021964, + "Guest_NightStalker": 1447653309, + "Guest_AddereTimeo": 1491420030, + "Guest_TheReaper": 1526369733, + "Guest_AngrusHollowsoul": 1427862805, + "Guest_OrrickNightglider": 951078615, + "Guest_SteelSentinel": 885250894, + "Guest_Shadow-WebSoldier": 2014925398, + "Guest_LostCeleste": 1725301830, + "Guest_CapnNigelSkullcrack": 1665439970, + "Guest_HaulAwayJoe": 1075985331, + "Guest_OldMaui": 15300840, + "Guest_LordAgue": 140791419, + "Guest_MelweenaSmite": 432188189, + "Guest_HalloweenTrickster": 2043736417, + "Guest_PumpkinHead": 1098332105, + "Guest_BaronMordecai": 817370918, + "Guest_KaimaniteMummy": 1332671420, + "Guest_VeggieRevanant": 928504192, + "Guest_BloodBat": 76467389, + "Guest_DeadBeets": 157829578, + "Guest_Desparagus": 1130644076, + "Guest_MeanestFly-Trap": 1652898868, + "Guest_Nosferabbit": 1021159436, + "Guest_ThrallofSothmekhet": 330780177, + "Guest_VileApparition": 426627869, + "Guest_SoulServant": 1183110886, + "Guest_SoulKeeper": 917518313, + "Guest_AdmiralBontau": 2032168402, + "Guest_DeathWhisperer": 3814952, + "Mount_RollerBlades": 111369373, + "Guest_BaneWyrm": 147033576, + "Guest_BlackDragon": 939469656, + "Guest_DragonSpawn": 1829803517, + "Guest_Fire-SpitterSpawn": 616624489, + "Guest_CaoranachtheFire-Spitter": 323513000, + "Guest_Jabberwock": 1552492834, + "Guest_CatalantheLightningLizard": 1155778705, + "Guest_WhiteDragon": 2009449331, + "Guest_WinterWyrm": 478925069, + "Guest_WyrmStatue": 2119216210, + "Guest_AlgidWyrm": 1309546482, + "Guest_BruleeSucre": 390936202, + "Guest_HebitohoWyrmling": 1682026810, + "Guest_Shadowwock": 505539184, + "Guest_EirikurAxebreaker": 1361453552, + "Guest_WarWyrm": 1124740742, + "Guest_StrayFireflier": 610979811, + "Guest_BurningFlamewing": 2041225130, + "Guest_FeralLavaling": 371483057, + "Guest_SplinterWing": 923421333, + "Guest_ChanticoBlueAir": 1572441903, + "Guest_CopperWingGuard": 302783602, + "Guest_ObsidianBeak": 2016227452, + "Guest_CaquixNineShadows": 2070101060, + "Guest_LustrousTlalocan": 1201030473, + "Guest_SeedThief": 263211181, + "Guest_PopZotzUnluckyDay": 1416773489, + "Guest_NezathePoet": 1905861376, + "Guest_MazenStingerBee": 1642023393, + "Guest_ImperialJusticePayne": 1285679745, + "Guest_AssistantWardenPorfiry": 22099059, + "Guest_MarshalKamensky": 524669730, + "Guest_WardenVissarovich": 882556823, + "Guest_GulagGuard": 100744159, + "Guest_CaptainKravchuck": 690830770, + "Guest_ImperialGuard": 346803640, + "Guest_IronPaw": 1797329688, + "Guest_TundarianEnforcer": 134256836, + "Guest_Ivan": 996220221, + "Guest_ColonelOrlov": 1381254189, + "Guest_IronPawIntakeCaptain": 2099184835, + "Guest_SolitaryWarden": 1503529566, + "Guest_CaptainZubkov": 793725366, + "Guest_SergeantBobrik": 722182485, + "Guest_WailingWraith": 946976407, + "EggChick": 1452316301, + "BunnyMallow": 518233330, + "Guest_ThunderHornZombie": 1007920040, + "Guest_SmokingMirrorZombie": 340971759, + "Guest_ShamblingZombie": 1920485146, + "Guest_MoonSkullZombie": 809249764, + "Guest_DeathlessStormHorn": 812397213, + "Guest_MozarTurtleHunter": 561749043, + "Guest_GuillermoShatterer": 499565054, + "Guest_XiuhcoatlBarbedTooth": 1719245305, + "Guest_AzcalFireAnt": 1281366337, + "Guest_TlotzinMoonThief": 407285761, + "Guest_PocaCruelStar": 1117353085, + "Guest_ThunderHornGhoul": 597878999, + "Guest_TezomocStoneSinger": 733511940, + "Guest_EzhuaBadTaste": 632779219, + "Guest_UacalxochitlBloodEye": 1614856226, + "Guest_WanadiBlackSky": 349829749, + "Guest_ElMarrow": 483880636, + "Guest_GrimCalaca": 1534029144, + "Guest_XipeFlayedOne": 1343577398, + "Guest_MotecumaDeathMask": 1782393717, + "Guest_EkeChuah": 13416770, + "Guest_AnacaonaBlackSnake": 1543344897, + "Guest_SmokingMirrorWight": 776452983, + "Guest_Tolkemec": 217428080, + "Mount_Fox": 77199428, + "PP_OwlProtege": 268847192, + "Mount_SharkSki": 331374103, + "PP_Dolphin": 1662291612, + "Mount_CastSymbol_D": 1134428045, + "Mount_CastSymbol_E": 1136525197, + "Mount_CastSymbol_F": 1138622349, + "Mount_CastSymbol_G": 1140719501, + "Mount_CastSymbol_A": 1128136589, + "Mount_CastSymbol_B": 1130233741, + "Mount_CastSymbol_C": 1132330893, + "Guest_LionSpectralGuardian": 1791543691, + "Guest_KillmareSpiritwalker": 1818928165, + "Guest_ZebraSpectralGuardian": 815933596, + "Guest_GorillaSpectralGuardian": 1635182119, + "Guest_IklawGhostWarrior": 373465545, + "Guest_BwanaShadowriver": 1307628747, + "Guest_ElephantSpectralGuardian": 1579402208, + "Guest_ZangaZebu": 1218173119, + "Guest_GrumishGreataxe": 486953385, + "PP_GlowFairy_A": 2028856748, + "Guest_RestlessSoldier": 1142701763, + "Guest_WanderingWizard": 209518514, + "Guest_ColonelIvanenko": 399169035, + "Guest_DetollitheDestroyer": 655767295, + "Guest_Jawniak": 1791298433, + "Guest_Tajniak": 356182394, + "Guest_Ygor": 996316081, + "Guest_KyaniteLancer": 2136703656, + "Guest_VestaShadowmark": 1846747836, + "Guest_ZoraSteelwielder": 1186470644, + "Guest_AndorBristleback": 1949884743, + "Guest_GalliumPaladin": 1812340868, + "Guest_GalliumFootman": 1295203112, + "Guest_GalliumShardtrooper": 1210699836, + "Guest_GalliumJuggernaut": 3527584, + "Guest_VladimirDarkflame": 1575322237, + "Guest_KyaniteLieutenant": 561528977, + "Guest_DrusillaMorningbane": 155837810, + "Guest_KyaniteValkyrie": 53242136, + "Transformation_20Q_SherlockBones": 1112674320, + "Guest_DevoraShadowcrown": 1813459117, + "Guest_YoualaNightDrinker": 881289828, + "Guest_Pendragon": 715669945, + "Guest_CelestianRevenant": 515730327, + "Guest_SoullessServant": 1505662730, + "Guest_SpiritServant": 104517373, + "Guest_SoulSerf": 1188214406, + "Guest_ServileSoul": 871844607, + "Guest_SkeletalCorsair": 239414410, + "Guest_RottedFodder": 1301186193, + "Guest_ScarletScreecher": 600457915, + "PP_FrankBunnyBride_A": 974707030, + "Guest_BastillaGravewynd": 2100015237, + "Guest_VilaraMoonwraith": 2067986693, + "Guest_YngvarSharptooth": 1783361972, + "Guest_TroubledWarrior": 1569033392, + "Guest_VeggieRevanant2": 928503904, + "Guest_VeggieRevanant3": 928503888, + "Guest_VeggieRevanant4": 928503872, + "Guest_VeggieRevanant5": 928503856, + "Guest_AncientQhatWarrior": 1564521104, + "Guest_EmperorPaleolo": 2079384347, + "Guest_SpiritofIntolerance": 1627658048, + "Guest_SpiritofInquiry": 1320544891, + "Guest_FirstGuardian": 1982227776, + "Guest_FallenMerc": 225926286, + "Guest_NightShadow2": 1638183490, + "Guest_NightShadow3": 1636086338, + "Guest_NightShadow2-2": 1436856907, + "Guest_NightShadow3-2": 1434759755, + "Guest_NightShadow4-2": 1432662603, + "Guest_NightShadow5-2": 1430565451, + "Guest_NightShadow6-2": 1428468299, + "Guest_NightShadow7-2": 1426371147, + "Guest_FirstScythe": 738854032, + "Guest_GreyMantisCaptain": 860186057, + "Guest_GreyMantisHunter": 1239274377, + "Guest_Atlach-Leng": 836136649, + "Guest_PetrovGloomstrider": 2045783873, + "Guest_NauyotolDownIntheHole": 1134251106, + "Guest_SandorSpearcaller": 1351072377, + "Guest_MavraFlamewing": 1477685600, + "Guest_Scaldling": 208751819, + "Guest_WoebegoneWraith": 1166488705, + "Guest_BorisBlackrock": 1365399915, + "Guest_KatiaFirewinter": 521255834, + "Guest_ValerikBrightsword": 1244055782, + "Guest_RurikFlamesoul": 1962726850, + "Guest_IonaPyrelance": 722266491, + "Guest_DarkPoltergeist": 818162178, + "Guest_TheCollector": 1772287612, + "Guest_ViktorSnowcrusher": 1028387381, + "Guest_ValeskaRedwind": 19316351, + "Guest_ScarrikGallowgaunt": 105397333, + "Guest_Neberyx": 1453883041, + "Guest_AsrikWidebelt": 401936422, + "Guest_GothricHonorbound": 750072340, + "Guest_HalfangBristlecrown": 618779562, + "Guest_OsvudFleetpaw": 1023466459, + "PP_PufferFish_A": 1578606029, + "Guest_OzelUnderwaterCat": 1033669302, + "PP_BabyGreenMan_A": 910025246, + "PP_SchoolTurtle_A": 1012620678, + "PP_DarkBalloon_A": 1229308566, + "MT_JetsamCopter": 92127678, + "Mount_4P_DarkClownCar": 420246262, + "MNT_BalloonsBunch": 2000358474, + "Guest_TempleGuardian": 632574316, + "Guest_TemplePhantom": 1701097840, + "Guest_MahonStarsearcher": 1549093341, + "Guest_LostKnight": 858980994, + "Guest_AnguishedWoodman": 174606918, + "Guest_TormentedTreant": 294050331, + "Guest_WildfireTreant": 1902129818, + "Guest_BlightedYaxche": 679097088, + "Guest_Junglethorn": 1734561424, + "Guest_Tangleroot": 2027061721, + "Guest_BlightedFreerooter": 1109803061, + "Guest_Winterbranch": 1170787806, + "Guest_DecayingBogwalker": 1338670789, + "Guest_BrownwoodTormentor": 1655181754, + "Guest_Wildroot": 1839747182, + "Guest_Ironsplinter": 668295157, + "Guest_Frostbranch": 75974631, + "Guest_KyoukonteiTreant": 474446232, + "Guest_BrokenStumps": 414724364, + "Guest_WordlessWoodsmen": 1813881830, + "Guest_DesiccatedTreebeard": 1826942903, + "Guest_ShadowoftheLand": 1612385317, + "Guest_TreeRoot": 1406633546, + "Guest_BefouledWoodwalker": 1517919498, + "Guest_ConfusedForestWarrior": 750805985, + "Guest_CrazedForestSpirit": 1007960507, + "Guest_Oakheart": 1158293719, + "Guest_SnowTreant": 1028620035, + "Guest_Snowbeard": 1997921701, + "Guest_BarkskinTreant": 2143957812, + "Guest_RazorleafTreant": 2133159197, + "Guest_CarrionFlowerMan": 1120698936, + "Guest_Kurokage": 355651925, + "Guest_LacombeStrawHouse": 568809873, + "Guest_BerkshireStickHouse": 1932133405, + "Guest_TamworthBrickHouse": 894027634, + "Guest_RustyTinderSpark": 1237916230, + "Guest_CoraWinterBranch": 1901918989, + "Guest_GrambleGoldRook": 1986988546, + "Guest_PiperStormTree": 1109520133, + "Guest_Hanadzura": 124838500, + "Guest_Kuchisaki": 2084188681, + "Guest_Kaizoku": 807430784, + "Guest_JaxonLastRites": 1653711119, + "Guest_SeijunKiller": 657647155, + "Guest_ZarichiTarakata": 1129212566, + "Guest_BladelessRonin": 1577395797, + "Guest_SanzokuOutlaw": 1682888807, + "Guest_SanzokuBandit": 1766198653, + "Guest_KakedaPainbringer": 1260119278, + "Guest_KakedaStalker": 367458449, + "Guest_KakedaShadow": 1604499626, + "Guest_KakedaSoulcrusher": 1961168112, + "Guest_ImitsuPlaguemaster": 1361539025, + "Guest_ImitsuDefouler": 1299791045, + "Guest_ImitsuPunisher": 234819300, + "Guest_StudentofKhai": 249757647, + "Guest_OtomoBattlemage": 918160114, + "Guest_OtomoCourier": 1373253378, + "Guest_OtomoSupplyRunner": 1580070577, + "Guest_OtomoScout": 1814051082, + "Guest_OtomoWrestler": 1053571230, + "Guest_OtomoFury": 111319603, + "Guest_Hyottoko": 307080225, + "Guest_Usunoki": 1881339626, + "Guest_Kagemoosha": 1842766119, + "Guest_UdoJin-e": 850816224, + "Guest_TakedaKanryu": 536087422, + "Guest_Tamauji": 818613882, + "Guest_Jikiru": 794167355, + "Guest_Nomoonaga": 849534658, + "Guest_Aiuchi": 515942855, + "Guest_Kurogaso": 1426248002, + "Guest_Ideyoshi": 1814038213, + "Guest_Koto": 1151260427, + "Guest_Usegi": 977549586, + "Guest_Kanago": 1644367227, + "Guest_Kyuto": 1168225979, + "Guest_Haru": 2070048389, + "Guest_Ashikata": 1523446928, + "Guest_Katsumori": 1823914597, + "Guest_Hingen": 1567896261, + "Guest_Yakedo": 502298497, + "Guest_Do-Daga": 1239945714, + "Guest_Maito": 979260804, + "Guest_TonkatsuThug": 1758658397, + "Guest_GobbloreanGuard": 1286210991, + "Guest_BabblingMeints": 413418139, + "Guest_PrinceGobblestone": 1813171676, + "Guest_GobblerMuncher": 1517159487, + "Guest_GobblerGorger": 130736772, + "Guest_GobblerScouter": 1509427587, + "Guest_GobblerGlutton": 1912199781, + "Guest_GobblerScavenger": 136586791, + "Guest_BaronGreebly": 1028182200, + "Guest_BaronRotunda": 457132907, + "PP_DeathMimic": 1811942047, + "Guest_GreenMan": 1126663802, + "Guest_ForestGrump": 1602350320, + "Guest_ErvintheBarbarian": 1671762776, + "Guest_RazortuskWarrior": 1109994549, + "Guest_RazortuskBrawler": 732265321, + "Guest_SplithoofRager": 1922134329, + "Guest_TuskedRaider": 1920114147, + "Guest_SviniBeserker": 1146317608, + "Guest_SviniReaver": 216717251, + "Guest_Shattertusk": 1191456730, + "Guest_SplithoofBarbarian": 296671728, + "Guest_Bloodseeker": 2086598239, + "Guest_Scarsnout": 1831766077, + "Guest_MasterTonkatsu": 1783298894, + "Guest_Grisletusk": 657393295, + "Guest_SplithoofBloodguard": 488382274, + "Guest_BristlehideRaider": 237078958, + "Guest_Gullin": 1656401882, + "Guest_ForestNymph": 812055814, + "Guest_SassafrasMan": 1327049788, + "Guest_RandolfSpellshine": 108808620, + "Guest_BleysFlamerender": 434070106, + "Transformation_Khan": 1398327634, + "Transformation_TheBat": 1675113521, + "MNT_DireWolf": 845578449, + "MNT_YuleMule": 1976182058, + "MNT_LightBlades": 829118450, + "MNT_FlyingSquid": 1573132252, + "PP_Globulin": 467801224, + "PP_BeastBaby": 1807874692, + "PP_SaniBot": 670845902, + "Mount_SwarmSand": 1277669407, + "Guest_Nodnarb": 211478288, + "Guest_LordBramble": 1118781162, + "Guest_Yogash": 506264561, + "Guest_Marcio": 499428996, + "Guest_Procyon": 1115376865, + "Guest_Thunderfin": 2029218563, + "Guest_ArkynMoonblade": 1152775206, + "Guest_CreeCurdWright": 1714953095, + "Guest_DeerMouseRevenant": 315064435, + "Guest_ElanaDarksun": 837982094, + "Guest_KingAlricFateSailor": 1934591130, + "Guest_LaughingCalaca": 984492527, + "Guest_WraithKnight": 620484548, + "Guest_FieryEchoofApep": 484636593, + "Guest_FrostyEchoofApep": 171933154, + "Guest_FalseEchoofApep": 479387377, + "Guest_ChargedEchoofApep": 1229406800, + "Guest_ShrowdengersQhat": 101563303, + "Guest_Scrollkeeper": 643219293, + "Guest_TerrorHound": 753341570, + "Guest_CondemnedMander": 445370758, + "Mnt_SnowStorm": 1491572670, + "Mount_ChimneySweeper": 378571534, + "MNT_PineappleCandyCane": 1630795796, + "Guest_TyphonDustwind": 740849673, + "MNT_StickHorse": 216654744, + "MimicTemplate": 1461219184, + "MNT_Ball_N_Chain": 289720920, + "PP_PeaceDove_A": 1785119671, + "Mount_Gyrocycle": 1495008048, + "PP_BattleMageDragon_A": 1864696711, + "MNT_BattleBeast": 1304449286, + "MNT_SmokeTrails": 387873030, + "Mount_FriendshipHare": 677127330, + "MNT_ButterflySwarm": 383602683, + "PP_EggChick_B": 1959154042, + "MNT_Unicorn": 562210585, + "PP_StuffedUnicorn": 1731641773, + "MNT_ParadeTruck": 2026348978, + "MNT_ParadeTruckXmas": 1017864627, + "MNT_AutumnLeafSwarm": 1540002279, + "PP_GingerbreadMan": 1796172229, + "PP_DecadeDragon": 1819398630, + "MNT_StageShip": 829852992, + "PP_DramaLlama": 255896529, + "PP_HallMinotaur_A": 1492017563, + "Guest_MacDeath": 1526226705, + "Guest_MacDeathUnderstudy": 1731752647, + "Guest_MacLifeUnderstudy": 257466641, + "Guest_MacStormUnderstudy": 8295117, + "MNT_Pantera": 1135198, + "MNT_StagLight": 1908778048, + "MNT_GiantSpider": 1247185021, + "MNT_StagEvil": 872303931, + "PP_BaskHound": 1093866594, + "PP_Marionette": 1688299938, + "PP_Marionette_B": 1688297824, + "Guest_Izft": 996301405, + "Guest_SapotisMinion": 1625665891, + "Guest_CrazedSlave": 1473233468, + "Guest_CharmedSlave": 803043667, + "Guest_EnsorcelledSlave": 40920285, + "Guest_HallServant": 2038116460, + "Guest_SiathePerceiver": 1235571913, + "Guest_Kiwu": 1151177787, + "Guest_NightImp": 1051843424, + "Guest_EvilTrickster": 1035477123, + "Guest_DeepWoodsImp": 1502444054, + "Guest_ForestPest": 802235713, + "Guest_TaintedForestImp": 1030343985, + "Guest_Youkai": 518367729, + "Guest_CarthaginianElephantWarrior": 776293919, + "Guest_IdrisBeast-Taker": 106759521, + "Guest_MikaSkarka": 237956516, + "Guest_Belloq": 757247833, + "Guest_GurtokPiercer": 549466122, + "Guest_GurtokFirebender": 817966523, + "Guest_GurtokDemon": 544070162, + "Guest_GeneralFiretusk": 2073037770, + "Guest_GurtokBarrierDemon": 44657563, + "Guest_BlacktuskShaman": 1009070925, + "Guest_FireDemon": 158367196, + "Guest_DeathOni": 1916642000, + "Guest_JadeOni": 1289517185, + "Guest_PlagueOni": 1464586443, + "Guest_WarOni": 1630196094, + "Guest_BrokenLandMammoth": 1587008312, + "Guest_SunderedSeamMammoth": 1272698721, + "Guest_BullyMammoth": 170705927, + "Guest_Bullhemoth": 146998717, + "Guest_Kogasha": 1909654543, + "Guest_MusuthBerserker": 1741298129, + "Guest_BlackTuskCultist": 1771575961, + "Guest_AksilBlacktrunk": 1253596409, + "Guest_LongdreamerShaman": 1521283133, + "Guest_MuratGreyeyes": 1296814314, + "Guest_ElephantSoldier": 1443670145, + "Guest_DarajaniGuard": 1597288495, + "Guest_Loremaster": 1792470809, + "Guest_Pork": 2069999347, + "Guest_Beans": 97706585, + "MNT_Ox": 1292937747, + "PP_PropellerSquirrel": 1657443894, + "Guest_RasikPridefall": 97921485, + "Guest_AmedrasLightstep": 1818417025, + "MNT_SmokeTrails_Balance": 1358150715, + "MNT_SmokeTrails_Fire": 702971609, + "MNT_SmokeTrails_Ice": 190218501, + "MNT_SmokeTrails_Life": 2045542105, + "MNT_SmokeTrails_Myth": 1276281121, + "MNT_SmokeTrails_Storm": 564954622, + "Guest_Bellosh": 1407013027, + "Guest_AcampiReedfist": 2076527733, + "Guest_AgnettaBroadblade": 14864960, + "Guest_FrostheartRaider": 1574787221, + "Guest_JordaSwordbearer": 1627071850, + "Guest_KasaiBaku": 1153107369, + "Guest_ZoraimeiHelephant": 1002482606, + "Guest_ConscriptedMander": 43811125, + "Firecat_Decade": 409516955, + "MNT_BatGlider": 2086258491, + "Transformation_PlayerHomework": 673389670, + "Transformation_PlayerAttendance": 422287307, + "Transformation_PlayerLecture": 2035625874, + "Transformation_PlayerPopQuiz": 483367038, + "MNT_GingerbreadHorse": 1369242781, + "MNT_NimbariChariot": 1251740392, + "PP_NimbariDog": 1235126828, + "Transformation_PlayerGrandma": 1128332272, + "Transformation_PlayerScionA": 33862367, + "PP_Mushroom": 1568942158, + "MNT_Scooter": 1148167046, + "MNT_Scooter_B": 2079302532, + "MNT_Scooter_C": 1810867076, + "MNT_Scooter_D": 468689796, + "MNT_IceCycle": 415797788, + "Transformation_PlayerScionA02": 33921759, + "Guest_FearoftheFuture": 947210229, + "Guest_FearofGremlins": 405857384, + "Guest_RootGuardian": 922940845, + "Guest_VineThrasher": 172546427, + "Guest_BlightWalker": 1438155154, + "Guest_BriarScourge": 615681851, + "Guest_DreamJabberwock": 907754098, + "Guest_DreamBelloq": 990352002, + "Guest_Voltergeist": 1558128068, + "Guest_SpecialBranch": 1927849418, + "Guest_MutantBriar": 805892802, + "Guest_FeralBriar": 883790223, + "Guest_MaizeMonster": 688905764, + "Guest_DreamShadowwock": 1432458248, + "Mount_Heartboard": 1421972759, + "PP_ChocoBunny": 324797859, + "Mount-PogoFlower": 906659501, + "MNT_AethyrCloud": 1586061078, + "MNT_Fangle": 7846854, + "Guest_StarfallSpider": 1177620831, + "Guest_AshSpider": 1588502553, + "Guest_CorruptedWeaver": 38937211, + "Guest_CrystalCrawler": 1197980149, + "Guest_ShimmerWidow": 1300740128, + "Guest_FacetedSpikespinner": 1939719331, + "Guest_CrystallineQueen": 1999282256, + "Guest_AncientCrystalweaver": 1409608801, + "Guest_FangtoothLavaspinner": 1538042104, + "Guest_VenomousHeatseeker": 1234682482, + "Guest_FireweaveRockbiter": 300743778, + "Guest_MonkeySpider": 754090007, + "Guest_CryptSpider": 1545405304, + "Guest_CommonHouseSpider": 613486002, + "Guest_ArachnaMagnaMagus": 825817937, + "Guest_ArachnaSoldier": 270978709, + "Guest_Gnissa": 1699826178, + "Guest_WebwoodScuttler": 1728611075, + "Guest_SandSpider": 61789007, + "Guest_WebwoodCreeper": 1013382584, + "Guest_Skathi": 1631429165, + "Guest_ArchmagusLorcan": 321146960, + "Guest_CrawleroftheMist": 2076696304, + "Guest_PaintedSpider": 1482115552, + "Guest_GiantSpider": 1545526191, + "Guest_CaveCrawler": 2101587667, + "Guest_RattleCatcher": 1472707326, + "Guest_TrapdoorSpider": 1321643694, + "Guest_RockClinger": 1304266411, + "Guest_InquisitorXimenez": 1053483090, + "Guest_ElderMagus": 1017836836, + "Guest_WardenBenthamic": 18807199, + "Guest_SpiderArchmagus": 387645558, + "Guest_SpiderAdept": 2094873407, + "Guest_InterrogatorRentenius": 1245984179, + "Guest_WarpedWeaver": 495882677, + "Guest_ArachnaSkinner": 281864085, + "Guest_SkinnerConscript": 2028526453, + "Guest_ArachnaGladiator": 2492046, + "Guest_LorcanInitiate": 353311753, + "Guest_Serket": 1871335773, + "Guest_IceWeaver": 2063216026, + "Guest_SpiritSpinner": 525666327, + "Guest_MysteriousCrawler": 218352756, + "Guest_BlackWidow": 1909331619, + "Guest_BrownRecluse": 1146386275, + "Guest_Creeper": 1197442790, + "Guest_GearSpinner": 67020478, + "Guest_Clinker": 1194519062, + "Guest_Clanker": 1194517014, + "Guest_GrandfatherSpider": 1330981335, + "Guest_Spiderling": 1400274461, + "Guest_ManekiWebWalker": 888348786, + "Guest_KoganiDeathCrawler": 276010604, + "Guest_CheliceranCrawler": 1169176517, + "Guest_ArachniteCreeper": 1850534774, + "Guest_ChelicaranStalker": 2057291848, + "Guest_HornedMonkeySpider": 1301514577, + "Guest_GreyOgreSpider": 1533774471, + "Guest_StarburstSpider": 698029451, + "Guest_PaintedCaveMonster": 601315479, + "Guest_RubbleRouser": 220785666, + "Guest_EarthElemental": 435260049, + "Guest_SharpshardWarrior": 1403237237, + "Guest_Firevein": 1220046430, + "Guest_Blackblade": 458130537, + "Guest_VengefulFireheart": 563205004, + "Guest_FirerockStomper": 608552855, + "Guest_BlackrockGuardian": 1663799582, + "Guest_ConfusedSentry": 24655510, + "Guest_SilverSentinel": 1090673683, + "Guest_SilverServant": 84560693, + "Guest_GiantHomunculus": 456098557, + "Guest_PropertyMaster": 229101764, + "Guest_VaultProtector": 185568207, + "Guest_PlatedDefender": 79324363, + "Guest_Avalanche": 761613547, + "Guest_RockReaver": 919912933, + "Guest_Frostmantle": 856308090, + "Guest_GlacierWalker": 131215932, + "Guest_SandBehemoth": 272513357, + "Guest_RunedAnnihilator": 121339936, + "Guest_RunedDevestator": 1611071181, + "Guest_RunedGuardian": 1986312667, + "Guest_CanyonRager": 1123038266, + "Guest_RubbleReaver": 220774678, + "Guest_Boulderbone": 122279242, + "Guest_Nali": 77467516, + "Guest_Gnar": 1151164930, + "Guest_GlacialAvenger": 1181253632, + "Guest_SokkwiKeymaster": 190919624, + "Guest_SandsofTime": 34920273, + "Guest_BladeGolem": 435561523, + "Guest_FrostColossus": 1564686403, + "Guest_IceColossus": 335477257, + "Guest_PollutedEarthWalker": 86045387, + "Guest_CorruptedEarthSpirit": 1135891559, + "Guest_Stonebreaker": 1317905436, + "Guest_StoneElemental": 1715022018, + "Guest_VolcanisGolem": 1904918929, + "Guest_WaterElemental": 1717850987, + "Guest_AshenDeathMonkeySpider": 35356665, + "Guest_DeathMonkeySpider": 1525508507, + "Guest_MotherMonkeySpider": 110317392, + "Guest_DoomMonkey": 1135105500, + "Guest_DreamMorganthe": 907599965, + "Guest_DragonBeetle": 1974635734, + "Guest_SandWalker": 1530843985, + "MNT_PandaMama": 916371162, + "PP_BabyPandas": 778536285, + "PP_FrogPrince": 729975205, + "MNT_PumpkinCarriage": 183672737, + "Mount_Gobbler_B": 1193388729, + "PP_Hamster": 1578040708, + "Guest_Steeleton": 657429968, + "Guest_GoldenWyrm": 311022393, + "MNT_Roc": 1564431869, + "PP_BabyGriffin": 1913686406, + "Transformation_ShadowDPSMob": 936133896, + "Transformation_ShadowTankMob": 305660992, + "Transformation_ShadowHealMob": 356596800, + "Guest_SpiritofIgnorance": 1577360126, + "Guest_FecklessSoul": 519648315, + "Guest_BurnedOutSoul": 312181646, + "Guest_BenightedRevenant": 2131956962, + "Guest_TombLurker": 1901203489, + "Guest_DesertGolem": 543642682, + "Guest_KumoOni": 215822625, + "Guest_SpellwritStalker": 161772776, + "PP_Sun": 1723237840, + "Guest_Leadite": 4480416, + "Mount_FestiveFox": 2125832348, + "PP_FenrisWolf": 1601784680, + "PP_SchoolPiggle": 109782407, + "PP_FenrisWolf_Red": 1597992854, + "PP_FenrisWolf_Teal": 1455058454, + "PP_FenrisWolf_White": 1102186199, + "Transformation_NinjaPig_Fire": 984575055, + "Transformation_BG_RatThief_Myth": 1191155131, + "Transformation_BG_RatThief_Storm": 675891897, + "MNT_Umbrella": 955683437, + "Transformation_BG_Elf_Ice": 1209681129, + "Transformation_BG_Fairy_DarkMinion_Balance": 33521202, + "Transformation_BG_Cyclops_Death": 876023972, + "Transformation_BG_Minotuar_Fire": 1118476387, + "Transformation_BG_WolfWarrior_Storm": 2075594475, + "Transformation_BG_WolfWarrior_Balance": 746159992, + "Transformation_BG_Draconian_Myth": 903606820, + "Transformation_BG_Draconian_Life": 1501291044, + "Transformation_BG_Colossus_Life": 1320377666, + "MNT_DolphinChariot": 102982520, + "MNT_EvilWagon": 685457563, + "MNT_FlyingDutchman": 1176206544, + "PP_SeaHorse": 2024322494, + "PP_EvilTeddy": 1159020925, + "PP_ZombieParrot": 384805107, + "Transformation_BG_Ice_Colossus": 299613211, + "MNT_CarrierBat": 7323333, + "Transformation_BG_Minotaur_MythTempalte": 430330904, + "PP_FeatheredTabby": 452526748, + "Transformation_Detritus01": 1335763402, + "Guest_Metallossus": 335457082, + "MNT_SantaJaws": 464410203, + "MNT_BattleBadger": 532858222, + "Transformation_Shedder01": 2069145892, + "PP_NatureSpirit": 373176286, + "Transformation_Devourer01": 1004421540, + "Guest_TheDevourer": 1591187996, + "Guest_Treeminder": 1093207850, + "Guest_RenegadeDruid": 2087982292, + "Guest_FractalTreeminder": 927174548, + "Guest_UnsettledTreeminder": 486164163, + "Guest_DragonspyreCrusader": 247317280, + "Guest_YoungGreggor": 66068670, + "Guest_GeneralGreyflame": 499924835, + "Guest_OldGreggor": 391726170, + "Guest_PrinceViggor": 853556298, + "Guest_DragonspyreVanguard": 693851565, + "Guest_SilasConviction": 177362659, + "Guest_SilasWeariness": 893431021, + "Guest_SilasRage": 1288904439, + "Guest_SilasDoubt": 1479426285, + "Guest_Lorekeeper": 147779344, + "Guest_FelixPhotomongerIII": 68387506, + "Guest_WarHavox": 1634324022, + "Guest_Mis-assembledSkeleton": 221832082, + "Guest_TreeminderGhost": 200408510, + "Guest_ViggorsDrake": 340449521, + "Guest_BlueNinjaPig": 938539327, + "Guest_RedNinjaPig": 2097962021, + "Guest_OrangeNinjaPig": 625058258, + "Guest_PurpleNinjaPig": 445746449, + "Guest_RitualColossus": 844563319, + "Guest_TinyDragon": 1123127688, + "Guest_RitualSpider": 429827552, + "Guest_RitualDraconian": 837510372, + "Guest_CC_Druid_Warrior_C_01": 55314616, + "Guest_CC_Druid_Wizard_A_01": 1046261169, + "Guest_CC_Druid_Wizard_B_01": 1046244785, + "Guest_CC_Druid_Warrior_A_01": 56363192, + "MNT_Toboggan": 995356805, + "MNT_2P_WickerTreant-001": 2065440944, + "PP_Ratatoskr": 1003497600, + "PP_Trash": 1195047012, + "Guest_CC_Druid_Wizard_D_01": 1046343089, + "MNT_Sunflower": 721091531, + "MNT_Whoopee": 1383311238, + "MNT_Warthog": 8060761, + "PP_ShamRock": 943893325, + "PP_LeapingLeprechaun": 132882517, + "PP_LionCubs": 465759803, + "PP_Tanuki": 670387843, + "MNT_Crane": 433122675, + "MNT_Krokosphinx": 739938754, + "Transformation_BG_Fairy_Life": 1897480818, + "Transformation_LiceDeepSpawnA": 244795720, + "Piggle_Alien": 1761605655, + "PP_JeweledScarab": 620544607, + "Guest_KR_Nymph_DrkMage_D50": 1248526054, + "Guest_KR_Nymph_DrkMage_C50": 1246953190, + "Guest_KR_Nymph_DrkMage_B50": 1247477478, + "Guest_KR_Nymph_DrkMage_A50": 1245904614, + "Guest_EM_Spider_Ash_01": 185724938, + "UFO": 47349, + "PP_Kit10": 326796620, + "PP_Lumi_Tulip": 84119585, + "PP_Lumi_Fern": 117015078, + "PP_Lumi_Violet": 1468797578, + "PP_Lumi_Sunny": 1769236703, + "PP_Lumi_Daisy": 1743454175, + "MNT_CelestianMech": 1238076872, + "MNT_Brontosaurus": 402157167, + "Guest_HG_AKT_Krok_Cyber_A_Balance_25": 1367985604, + "Guest_HG_AKT_Krok_Cyber_A_Balance_50": 1368084932, + "Guest_HG_AKT_Krok_Cyber_A_Balance_75": 1367988676, + "Guest_HG_AKT_Krok_Cyber_A_Balance_100": 1351303620, + "Guest_HG_AKT_Krok_Cyber_A_Balance_130": 1351270852, + "Guest_HG_AKT_Krok_Cyber_A_Fire_25": 976558490, + "Guest_HG_AKT_Krok_Cyber_A_Fire_50": 37034397, + "Guest_HG_AKT_Krok_Cyber_A_Fire_75": 305469850, + "Guest_HG_AKT_Krok_Cyber_A_Fire_100": 573905821, + "Guest_HG_AKT_Krok_Cyber_A_Fire_130": 573905824, + "Guest_HG_AKT_Krok_Cyber_A_Ice_25": 159411377, + "Guest_HG_AKT_Krok_Cyber_A_Ice_50": 541093041, + "Guest_HG_AKT_Krok_Cyber_A_Ice_75": 146828465, + "Guest_HG_AKT_Krok_Cyber_A_Ice_100": 557870241, + "Guest_HG_AKT_Krok_Cyber_A_Ice_130": 960523425, + "Guest_HG_AKT_Krok_Cyber_A_Myth_25": 976187830, + "Guest_HG_AKT_Krok_Cyber_A_Myth_50": 36663729, + "Guest_HG_AKT_Krok_Cyber_A_Myth_75": 305099190, + "Guest_HG_AKT_Krok_Cyber_A_Myth_100": 573535153, + "Guest_HG_AKT_Krok_Cyber_A_Myth_130": 573535156, + "Guest_CL-GolemButler-R9": 780077559, + "Guest_CL-GolemDigger-Boss-R10": 562020288, + "Guest_CL-GolemDigger-R9": 789375095, + "Guest_CL-GolemDigger-Rank8MythBoss-R10": 930527857, + "Guest_CL-GolemWorker-R9-1": 1072815287, + "Guest_CL-FishbotBrown-R9-1": 2006155417, + "Guest_CL-FishbotBrown-R9-2": 395542681, + "Guest_CL-FishbotGold-Boss-R10": 611881707, + "Guest_CL-FishbotGold-R9": 705414492, + "Guest_CL-FishbotYellow-Boss-R10": 23145662, + "Guest_CL-Protector-Black-Boss-R10-2": 679228793, + "Guest_CL-Protector-Gold-R10": 1909636609, + "Guest_CL-Protector-Gold-R9-1": 1909634804, + "Guest_CL-Protector-Gold-R9-2": 1909634932, + "Guest_CL-Protector-Gold-R9-3": 1909635060, + "Guest_CL-Protector-Gold-R9-4": 1909634164, + "Guest_CL-Protector-Purple-R9-Boss": 1889837072, + "Guest_CL-Protector-Purple-R9": 81760161, + "Guest_CL-Protector-Tan-Boss-R10": 912663188, + "Guest_KR_Golem_Worker": 1784607296, + "Guest_Golem-Brass-R7-1": 718939445, + "Guest_Golem-Clockwork-R7": 1161173708, + "Guest_EM_Robot_Batbot_A_01": 1482867950, + "Guest_EM_Robot_Batbot_B_02": 945947886, + "Guest_EM_Robot_Batbot_B_01": 1482818798, + "Guest_EM_Robot_Batbot_B_03": 409076974, + "Guest_EM_Robot_Batbot_B_04": 127793938, + "Guest_EM_Robot_Batbot_B_05": 664664850, + "Guest_EM_Robot_Drone_A_02": 1215188569, + "Guest_EM_Robot_Drone_A_03": 1231965785, + "Guest_EM_Robot_Drone_A_01": 1265520217, + "Guest_EM_Robot_Drone_A_04": 1315851865, + "Guest_EM_Robot_Drone_A_05": 1332629081, + "Guest_EM_Robot_Drone_A_06": 1282297433, + "Guest_EM_Robot_Drone_A_07": 1299074649, + "Guest_EM_Robot_Drone_A_08": 1114525273, + "Guest_EM_Robot_Drone_A_09": 1131302489, + "Guest_EM_Robot_Drone_A_Boss_01": 1960661151, + "Guest_EM_Robot_Drone_A_Boss_02": 1960530079, + "Guest_EM_Robot_Drone_E_01": 1265518169, + "Guest_EM_Robot_Tank_A_01": 1314796420, + "Guest_EM_Robot_Tank_A_02": 1313223556, + "Guest_EM_Robot_Drone_C_02": 1215187545, + "Guest_EM_Robot_Drone_D_03": 1231963225, + "Guest_EM_Robot_Drone_D_01": 1265517657, + "Guest_EM_Robot_Drone_D_02": 1215186009, + "Guest_EM_Robot_Tank_B_01": 1314796468, + "Guest_EM_Robot_Drone_C_01": 1265519193, + "Guest_G14-BP-Golem_Steel_Boss": 2071105129, + "Guest_G14-BP-Golem_Steel_Puzzle": 715790979, + "Guest_Golem-Brass-Elite-L38": 1163662532, + "Guest_Golem-Brass-Elite-L56": 2057562884, + "Guest_Golem-Brass-MBBoss-L48": 1498830732, + "Guest_Golem-Brass-MBBoss-L71": 1498829576, + "Guest_Golem-Brass-MBBoss-L76": 1498828936, + "Guest_Golem-Clockwork-Elite-L54-Metal": 417151527, + "Guest_Golem-Clockwork-Elite-L37": 1961943722, + "Guest_Golem-Clockwork-Elite-L54": 1950147242, + "Guest_Golem-Clockwork-L28": 1561959116, + "Guest_Golem-Clockwork-MBBoss-L37": 973152783, + "Guest_Golem-Clockwork-MBBoss-L69": 1262559759, + "Guest_Golem-Steel-Elite-L39": 1430496717, + "Guest_Golem-Steel-MBBoss-L40": 1229578887, + "Guest_Golem-Steel-MBBoss-L43": 1229579015, + "Guest_Golem-Steel-MBBoss-L50-1": 1231762051, + "Guest_Golem-Steel-MBBoss-L50": 1229578883, + "Guest_Golem-Steel-MBBoss-LXX": 1229583927, + "Guest_Golem-Wood-Elite-L35": 904360756, + "Guest_Golem-Wood-Elite-L37": 1978102580, + "Guest_Golem-Wood-Elite-L50": 1813548236, + "Guest_Golem-Wood-MBBoss-L63": 1392041724, + "Guest_MB-Gauntlet-Golem-Clockwork": 854649045, + "Guest_Spider-Golem-MBBoss-L67": 253352706, + "Guest_Spider-Golem-MBBoss-L96": 253348994, + "Guest_WC-MAW-GasGolem-Minion": 1511013798, + "Guest_WC-MAW-GasGolemLife-Minion": 1306026584, + "Guest_Golem-Steel-L02": 1027229749, + "Guest_Golem-Clockwork-L01": 1409915596, + "Guest_Gauntlet-01-Golem-Steel-Ghost-R8": 402816318, + "Guest_Golem-Wood-L01": 156976035, + "Guest_HG-Clock-ClockworkSpanner-20": 1523370449, + "Guest_HG-Clock-ClockworkSpanner-40": 1523370455, + "Guest_HG-Clock-ClockworkSpanner-60": 1523370453, + "Guest_HG-Clock-ClockworkSpanner-80": 1523370459, + "Guest_HG-Clock-ClockworkSpanner-100": 1523354068, + "Guest_HG-Clock-ClockworkSpanner-120": 1523354004, + "Guest_AQ-Cyclops-Guard": 191361948, + "Guest_AQ_Cyclops_Guard_A_Boss_01": 114747100, + "Guest_CL-Cyclops-Death-R10": 611013866, + "Guest_Cyclops-Death-Boss-R7": 1192370725, + "Guest_Cyclops-Death-Boss-R9": 1192370717, + "Guest_Cyclops-Death-R7": 144593791, + "Guest_GH-Cyclops-Death-R6": 594236619, + "Guest_Cyclops-BlueHelmet-KTBoss-L03": 1720105277, + "Guest_Cyclops-Red-L12": 1816429840, + "Guest_MR_Cyclops02WHelmet_Model_01": 1483732416, + "Guest_Cyclops-Blue-L02": 1633021234, + "Guest_Cyclops-BlueHelmet-WCBoss-L03": 427378332, + "Guest_Cyclops-RedHelmet-WCBoss-L03": 2021269422, + "Guest_HG_Sinbad_Cyclops_25": 911979034, + "Guest_HG_Sinbad_Cyclops_50": 1856261606, + "Guest_HG_Sinbad_Cyclops_75": 861647386, + "Guest_HG_Sinbad_Cyclops_100": 1789152678, + "Guest_HG_Sinbad_Cyclops_130": 178539942, + "Guest_HG_Sinbad_IronSultan_25": 930031152, + "Guest_HG_Sinbad_IronSultan_50": 930051504, + "Guest_HG_Sinbad_IronSultan_75": 930030768, + "Guest_HG_Sinbad_IronSultan_100": 927954864, + "Guest_HG_Sinbad_IronSultan_130": 927942576, + "MNT_SweetRide": 1643297840, + "PP_FrilledDino": 1395342809, + "PP_Celestian": 95679303, + "PP_Sun_Angry": 1955190071, + "PP_Marshmallow": 1220667954, + "MNT_Umbrella_B": 923364822, + "MNT_Tamer": 1050737194, + "PP_BumbleBee_B": 858653433, + "MNT_PunkFlamingo": 1634690818, + "MNT_2P_WoolyRhino": 1395943031, + "PP_Retriever": 72842604, + "PP_Piggle_Caveman": 181356174, + "PP_DecennialDragon": 1396523337, + "MNT_Tiger_Rainbow": 515535412, + "MNT_CarrierGhosts": 1833039309, + "MNT_Sled": 617654308, + "Transformation_BG_RatThief_Death": 30691641, + "Transformation_BG_Elf_Storm": 44352983, + "Transformation_BG_WolfWarrior_Ice": 986304351, + "MNT_CarriorGhost_B": 1768732109, + "MNT_CarriorGhost_C": 1766634957, + "Transformation_BG_Colossus_Fire": 1318803522, + "Transformation_BG_Krok_Balance": 140952965, + "Guest_KM_Gobbler_Skinny_A_11": 773648065, + "Guest_KM_Robot_Candy_A_01": 480414124, + "Guest_KM_Robot_Candy_A_02": 530745772, + "Guest_KM_Robot_Candy_A_03": 513968556, + "Guest_KM_Robot_Candy_A_04": 430082476, + "Guest_KM_Robot_Candy_A_05": 413305260, + "Guest_KM_Gummy_Bear_A_01": 1940905059, + "Guest_KM_Gummy_Bear_D_01": 1940905011, + "Guest_KM_Gummy_Bear_E_01": 1940904995, + "Guest_KM_Gummy_Bear_A_02": 1941429347, + "Guest_KM_Gummy_Bear_D_02": 1941429299, + "Guest_KM_Gummy_Bear_E_02": 1941429283, + "Guest_KM_Gummy_Bear_B_01": 1940905043, + "Guest_KM_Gummy_Bear_B_02": 1941429331, + "Guest_KM_Gummy_Bear_B_03": 1941953619, + "Guest_KM_Gummy_BearHat_A_01": 853226448, + "Guest_KM_Gummy_BearHat_A_02": 853226460, + "Guest_KM_Gummy_Bunny_A_01": 324805042, + "Guest_KM_Gummy_Bunny_C_01": 324806066, + "Guest_KM_Gummy_Bunny_D_01": 324807602, + "Guest_KM_Gummy_Bunny_E_01": 324807090, + "Guest_KM_Gummy_Bunny_F_01": 324808626, + "Guest_KM_Gummy_BunnyUber_A_01": 525565930, + "Guest_KM_Gummy_Worm_A_01": 231044195, + "Guest_KM_Gummy_Worm_B_01": 231044179, + "Guest_KM_Gummy_Worm_C_01": 231044163, + "Guest_KM_Gummy_Worm_A_02": 232617059, + "Guest_KM_Gummy_Worm_B_02": 232617043, + "Guest_KM_Gummy_Worm_C_02": 232617027, + "Guest_KM_Gummy_Bear_F_01": 1940904979, + "Guest_KM_Gummy_Bear_F_02": 1941429267, + "Guest_KM_Gummy_Bunny_C_02": 274474418, + "Guest_KM_Robot_Candy_A_06": 463636908, + "Guest_KM_Alphoi_DarkF_A_01": 475441543, + "Guest_KM_Gobbler_Skinny_A_01": 773648069, + "Guest_KM_Gobbler_Skinny_A_02": 773648197, + "Guest_KM_Gobbler_Skinny_A_03": 773648325, + "Guest_KM_Gobbler_SkinnyF_A_01": 254411012, + "Guest_KM_Gobbler_Skinny_A_04": 773647429, + "Guest_KM_Gobbler_Skinny_A_05": 773647557, + "Guest_KM_Gobbler_Skinny_A_06": 773647685, + "Guest_KM_Gobbler_SkinnyF_A_02": 254423300, + "Guest_KM_Gobbler_Skinny_A_07": 773647813, + "Guest_KM_Gobbler_Skinny_A_08": 773646917, + "Guest_KM_Gobbler_Skinny_A_09": 773647045, + "Guest_KM_Gobbler_SkinnyF_A_03": 254419204, + "Guest_KM_Gobbler_Fat_A_01": 1440595742, + "Guest_KM_Gobbler_Fruit_B_01": 1236446660, + "Guest_KM_Gobbler_Fruit_A_01": 1235922372, + "Guest_KM_Gobbler_Guard_B_01": 1435667582, + "Guest_KM_Gobbler_Skinny_A_10": 773647937, + "Transformation_PlayerBabyCarrot": 1580787628, + "Transformation_PlayerDeadBeet": 1992261692, + "Transformation_PlayerDisparagus": 373797484, + "Transformation_PlayerSnowPeas": 634199102, + "PP_Snowflake": 2036143125, + "PP_GummyBear_Myth": 117787890, + "PP_GummyBear_Death": 236577760, + "PP_GummyBear_Balance": 2100524337, + "PP_GummyBear_Life": 118020336, + "PP_GummyBear_Fire": 117995748, + "PP_GummyBear_Storm": 247437198, + "PP_GummyBear_Ice": 122536570, + "MNT_SnowOwl": 1578473542, + "Guest_KM_Gummy_Bear_Uber_A_01": 1856208859, + "Guest_KM_Gummy_Bear_Uber_A_02": 1856196571, + "MNT_ChocolateMoose": 567538552, + "MNT_Ram_Candied": 1913603720, + "Guest_KM_Spider_Mage_A_01": 1529720120, + "Guest_KM_Spider_Mage_B_01": 1529719608, + "Guest_KM_Spider_Mage_C_01": 1529719096, + "Guest_KM_Spider_Mage_D_01": 1529718584, + "Guest_KM_Spider_Mage_E_01": 1529718072, + "PP_SpriteDark_Balance": 914900728, + "MNT_Tricycle": 991465753, + "Guest_Tri-Gauntlet-Protector-Gold": 2029952053, + "Guest_Tri-Gauntlet-FishbotGold": 130267882, + "Guest_HG-Clock-Clockworker-20": 281216243, + "Guest_HG-Clock-Clockworker-40": 281217011, + "Guest_HG-Clock-Clockworker-60": 281216755, + "Guest_HG-Clock-Clockworker-80": 281215475, + "Guest_HG-Clock-Clockworker-100": 283313523, + "Guest_HG-Clock-Clockworker-120": 283321715, + "Guest_HG-Clock-Lugs-20": 1452756928, + "Guest_HG-Clock-Lugs-40": 1452756960, + "Guest_HG-Clock-Lugs-60": 1452756992, + "Guest_HG-Clock-Lugs-80": 1452756768, + "Guest_HG-Clock-Lugs-100": 1452494736, + "Guest_HG-Clock-Lugs-120": 1452493712, + "Guest_HG-Clock-Lucia-20": 1041451626, + "Guest_HG-Clock-Lucia-40": 1041450602, + "Guest_HG-Clock-Lucia-60": 1041449578, + "Guest_HG-Clock-Lucia-80": 1041456746, + "Guest_HG-Clock-Lucia-100": 1049840746, + "Guest_HG-Clock-Lucia-120": 1049873514, + "Guest_KM_Gummy_Worm_A_03": 232092771, + "MNT_Scooter_E": 200254340, + "PP_WolfWarrior_Balance": 991302673, + "PP_PetGift": 1816280689, + "PP_RatThief": 1390866051, + "Guest_PL_Titan_Small_A": 2015819364, + "Guest_PL_Titan_Large_B": 699791264, + "Guest_PL_Titan_Medium_A": 326730424, + "PP_Draconian": 1631557208, + "MNT_Pantera_Astral": 106092538, + "PP_YearOx": 105653084, + "PP_WolfWarrior_Ice": 1043644935, + "PP_SpriteDark": 2031730054, + "PP_Brudel": 1355697143, + "MNT_Astronomers": 742732792, + "MNT_CouchPotato": 418050932, + "MNT_Flowerfarthing": 1396771051, + "MNT_Astronomers_Blue": 236532779, + "MNT_Astronomers_Rainbow": 4428274, + "PP_Astronomer": 782095961, + "Guest_KM_Gummy_Bunny_B_01": 324806578, + "Guest_KM_DeadBeets_A_01": 1396016635, + "MNT_GummyBunny": 775900704, + "MNT_GummyBunny_A": 775834080, + "MNT_GummyBunny_B": 775836128, + "MNT_GummyBunny_C": 775838176, + "Transformation_BG_Minotaur_Life": 1445109091, + "MNT_Armadillo": 825635826, + "PP_SootGremlin": 768969093, + "PP_RoadRunner": 2057802060, + "MNT_TinyTrolly": 160881792, + "PP_Frog_B": 1530124761, + "MNT_FjordDragon": 129204340, + "Transformation_BG_NinjaPig_Myth": 422914079, + "PP_CorgiPup": 1638656105, + "MNT_Skateboard": 728018224, + "PP_Krokomummy": 326396577, + "MNT_Vroom": 1736383110, + "MNT_PlayerWings_AtralRaven": 1514774167, + "PP_Blimp": 690882397, + "Guest_GH_WoodenSkeletonKey_Boar_Boss_Grey_01": 678055851, + "Guest_GH_StoneSkeletonKey_Boar_Boss_Grey_01": 571670691, + "Guest_GH_GoldSkeletonKey_Boar_Boss_Grey_01": 961728819, + "MNT_Cloud_Promo_AW_01": 2032670992, + "Guest_EM_Hornet_Burner_A_01": 1881854632, + "Guest_EM_Hornet_Burner_A_02": 1881854636, + "Guest_EM_Hornet_Zapper_A_01": 2058539689, + "Guest_EM_Hornet_Zapper_A_02": 2058539685, + "Guest_EM_Ant_Giant_D_01": 379386121, + "Guest_EM_Ant_Giant_A_02": 1768146677, + "Guest_EM_Ant_Giant_A_01": 1768097525, + "Guest_EM_Ant_Giant_B_01": 379386122, + "Guest_KR_Moth_Priest_G_Achera": 381233569, + "Guest_KR_BeeMonsterF_A": 135146211, + "Guest_KR_BeeMonsterF_A_Weak": 1824123847, + "Guest_KR_Bee_Warrior_A": 1569202664, + "Guest_KR_Bee_Warrior_B": 1569204200, + "Guest_KR_Bee_Warrior_C_BossDrones": 1217189631, + "Guest_KR_Bee_Warrior_D": 1569205224, + "Guest_KR_Bee_Warrior_E": 1569204712, + "Guest_KR_Bee_Warrior_G": 1569205736, + "Guest_KR_Bee_Warrior_G_BossFight": 1055035476, + "Guest_KR_Bee_Warrior_H": 1569207272, + "Guest_KR_Bee_Warrior_I": 1569206760, + "Guest_KR_Bee_Warrior_L": 1569209320, + "Guest_KR_Bee_Warrior_M": 1569208808, + "Guest_KR_DragonBeetle_Monster_A": 1777853782, + "Guest_KR_Hornet_Drone_A": 1161590757, + "Guest_KR_Hornet_Drone_B": 1161607141, + "Guest_KR_Hornet_Drone_C": 1161623525, + "Guest_KR_Hornet_Drone_D": 1161639909, + "Guest_KR_Hornet_Drone_E": 1161656293, + "Guest_KR_Lice_DeepSpawn_A": 761604959, + "Guest_KR_Mantis_HunterF_A": 820917199, + "Guest_KR_Mantis_HunterF_B": 871248847, + "Guest_KR_Mantis_HunterF_C": 854471631, + "Guest_KR_Mantis_HunterF_D": 904803279, + "Guest_KR_Mantis_HunterF_F": 938357711, + "Guest_KR_Mantis_HunterF_F_Driftwood": 2053608437, + "Guest_KR_Mantis_HunterF_G": 921580495, + "Guest_KR_Mantis_HunterF_H": 971912143, + "Guest_KR_Mantis_HunterF_I": 955134927, + "Guest_KR_Mantis_HunterF_I_Zuzka": 935478878, + "Guest_KR_Mantis_HunterF_J": 1005466575, + "Guest_KR_Mantis_HunterF_J_Zelda": 886910558, + "Guest_KR_Mantis_HunterF_K": 988689359, + "Guest_KR_Mantis_HunterF_K_LongShd": 1767574336, + "Guest_KR_Mantis_HunterF_L": 1039021007, + "Guest_KR_Mantis_HunterF_M": 1022243791, + "Guest_KR_Mantis_HunterF_P_Bossfight": 1731428987, + "Guest_KR_Mantis_HunterF_Q": 552481743, + "Guest_KR_Mantis_HunterF_R": 602813391, + "Guest_KR_Mantis_HunterF_S": 586036175, + "Guest_KR_Mantis_HunterF_SecondColumnCpt_A": 1354033994, + "Guest_KR_Mantis_HunterF_T": 636367823, + "Guest_KR_Mantis_HunterF_Tribute": 1946371041, + "Guest_KR_Mantis_HunterF_U": 619590607, + "Guest_KR_Mantis_HunterF_V": 669922255, + "Guest_KR_Mantis_HunterF_W": 653145039, + "Guest_KR_Mantis_HunterF_Y": 686699471, + "Guest_KR_Mantis_HunterF_Z_Officer": 206016474, + "Guest_KR_Mantis_ProphetF_B": 1791139097, + "Guest_KR_Mantis_ProphetF_C": 1254268185, + "Guest_KR_Milipede_Warrior_A": 410726278, + "Guest_KR_Milipede_Warrior_B": 410726282, + "Guest_KR_Milipede_Warrior_C": 410726286, + "Guest_KR_Milipede_Warrior_D": 410726290, + "Guest_KR_Milipede_Warrior_H": 410726306, + "Guest_KR_Milipede_Warrior_J": 410726314, + "Guest_KR_Milipede_Warrior_K": 410726318, + "Guest_KR_Moth_Priest_A": 1421532604, + "Guest_KR_Moth_Priest_B": 1421532092, + "Guest_KR_Moth_Priest_C": 1421531580, + "Guest_KR_Moth_Priest_D": 1421531068, + "Guest_KR_Moth_Priest_D_Drepa": 1483393420, + "Guest_KR_Moth_Priest_E": 1421530556, + "Guest_KR_Moth_Priest_F": 1421530044, + "Guest_KR_Mantis_HunterF_Z": 737031119, + "Guest_KR_Roach_AntLion_A": 1860517987, + "Guest_KR_Roach_AntLion_B_Bossfight": 993284625, + "Guest_KR_Roach_AntLion_C": 1861566563, + "Guest_KR_Roach_Cook_A": 259847495, + "Guest_KR_Roach_Glutton_B": 249524334, + "Guest_KR_Roach_WaterBug_A": 1795473599, + "Guest_KR_Roach_WaterBug_B": 1745141951, + "Guest_MR_Beetle_Scarab_A_01": 1789741503, + "Guest_MR_Beetle_Scarab_A_02": 1789741491, + "Guest_MR_Beetle_Scarab_B_01": 1790265791, + "Guest_ZF-Goliath-R10-Boss-01": 7034074, + "Guest_ZF-Goliath-R10-Boss-02": 7034202, + "Guest_ZF-Goliath-R10-Boss-03": 7034330, + "Guest_ZF-Goliath-R10-Boss": 1603576807, + "Guest_ZF-Goliath-R11-Boss-01": 2140449574, + "Guest_ZF-Goliath-R11-Boss-02": 2140449446, + "Guest_ZF-Goliath-R11-Boss-03": 2140449318, + "Guest_ME1_Ant_Aunt_A": 707251855, + "Guest_ME1_Ant_Aunt_B": 1440231794, + "Guest_CC_Fly_Worker_A_01": 1497784524, + "Guest_CC_Roach_Worker_A_01": 1026321602, + "Guest_CC_Roach_Lieutenant_A_01": 1081690299, + "Guest_CC_Roach_Lieutenant_B_01": 1081690295, + "Guest_CC_Roach_Don_A_01": 547836893, + "Guest_CC_Roach_BBug_A_01": 1021150157, + "Guest_CC_Roach_RoachSteady_A_01": 859409247, + "Guest_Draconian-Caster-Yellow-Boss-R8": 1016221419, + "Guest_Draconian-Zombie-R8-2-1": 1226055265, + "Guest_Draconian-Zombie-R8-2": 1226115297, + "Guest_Draconian-Caster-Green-R7": 2143342719, + "Guest_Draconian-Warrior-Gold-Boss-R8": 1044388248, + "Guest_Draconian-Caster-Gray-R7": 95878769, + "Guest_DS-Boss-MAW": 1676071241, + "Guest_Draconian-Zombie-R8-1": 1226115309, + "Guest_Draconian-Warrior-Purple-Boss-R7": 601813964, + "Guest_Draconian-Caster-Tan-Boss-R7": 1973339532, + "Guest_Draconian-Caster-Blue-R6": 1684210173, + "Guest_Draconian-Caster-Yellow-R8": 2129956646, + "Guest_Draconian-Warrior-Red-R7": 521861944, + "Guest_Draconian-Warrior-Tan-R6": 1726416112, + "Guest_Draconian-Warrior-Purple-R8": 1896270341, + "Guest_Draconian-Caster-Blue-Boss-R7": 401581134, + "Guest_Draconian-Zombie-R8": 384497496, + "Guest_GH2-Draconian-HENCH-R10": 1149202878, + "Guest_GH2-Draconian-BOSS-R10": 2114378473, + "Guest_G14-DM-Draconian_Boss": 490246211, + "Guest_G14-DM-Draconian_Storm": 2035239226, + "Guest_G14-DM-Draconian_Ice": 782200563, + "Guest_G14-DM-Draconian_Malistaire_M": 1904691727, + "Guest_G14-DM-Draconian_Malistaire_S": 1904685583, + "Guest_G14-DM-Draconian_Malistaire_D": 1904700943, + "Guest_G14-DM-Draconian_Malistaire": 1904736751, + "Guest_G14-DM-Draconian_Malistaire_B": 1904702991, + "Guest_G14-DM-Draconian_Malistaire_I": 1904695823, + "Guest_G14-DM-Draconian_Malistaire_L": 1904692751, + "Guest_G14-DM-Draconian_Malistaire_F": 1904698895, + "Guest_Draconian-PW-Gauntlet-Boss": 493080513, + "Guest_CC_Draconian_A_01": 551348115, + "Guest_AZ-Parasaur-Undead-E": 2041242846, + "Guest_AZ-Parasaur-drkPriestF-F": 898239615, + "Guest_EM_Parasaur_DrkPriestF_A_01": 1007099606, + "Guest_EM_Parasaur_DrkPriestF_A_02": 1007099605, + "Guest_AZ-Parasaur-drkPriestF-D": 898501759, + "Guest_AZ-Parasaur-drkPriestF-E": 898370687, + "Guest_AZ-Parasaur-drkPriestF-A": 897846399, + "Guest_AZ-Parasaur-Undead-B": 1716853538, + "Guest_AZ-Parasaur-Undead-A": 106240802, + "Guest_AZ-Parasaur-Undead-G": 967501022, + "Guest_AZ-Parasaur-PriestF-D": 1177445525, + "Guest_AZ-Parasaur-Undead-C": 1179982626, + "Guest_AZ-Parasaur-drkPriestF-C": 897584255, + "Guest_AZ-Parasaur-Undead-SkurkisMinion": 1414766977, + "Guest_AZ-Parasaur-drkPriestF-B": 897715327, + "Guest_AZ-Parasaur-drkPriestF-B-Script": 1414847875, + "Guest_AZ_Parasaur_Priest_A_Boss_01": 890025421, + "Guest_AZ-Parasaur-Undead-D": 1504371934, + "Guest_AZ-Pteranodon-Knight-D": 1127364049, + "Guest_AZ-StoneSkeletonKey-Ixcax-Cursedwing": 699239601, + "Guest_AZ-Pteranodon-Knight-E": 1127363921, + "Guest_AZ-Pteranodon-Knight-F": 1127363793, + "Guest_AZ-Pteranodon-Knight-A-PageEvent": 942589002, + "Guest_AZ-StoneSkeletonKey-Minion-Death": 311645584, + "Guest_AZ-Pteranodon-Knight-A": 1127364433, + "Guest_AZ-Raptor-Wraith-A": 585729247, + "Guest_AZ-Raptor-Undead-D": 893623689, + "Guest_G14-HS-Ifzt": 1914694612, + "Guest_AZ-Raptor-Warrior-A": 855749884, + "Guest_AZ-Raptor-Undead-C": 897293705, + "Guest_AZ-Raptor-Undead-B": 896769417, + "Guest_AZ-Raptor-Undead-F": 894672265, + "Guest_AZ-Raptor-Warrior-F": 872527100, + "Guest_AZ-Raptor-Warrior-H": 973190396, + "Guest_AZ-Tritops-Warrior-I": 1942669769, + "Guest_AZ-Tritops-Undead-H": 1215305911, + "Guest_AZ-Tritops-Undead-E": 1164974263, + "Guest_AZ-Tritops-SpkWarrior-A": 860850257, + "Guest_AZ-Tritops-SpkWarrior-B": 860862545, + "Guest_AZ-Tritops-Undead-F": 1181751479, + "Guest_AZ-Tritops-Warrior-K": 868927945, + "Guest_AZ-Tritops-Undead-G": 1198528695, + "Guest_AZ-Tritops-Mummy-A": 1912444877, + "Guest_AZ-Tritops-Warrior-G": 1278555704, + "Guest_AZ-Tritops-Undead-D": 1148197047, + "Guest_AZ-Tritops-Undead-A": 1097865399, + "Guest_AZ-Tritops-SpkChief-B": 2096319577, + "Guest_AZ-Tritops-Mummy-B": 1910872013, + "Guest_AZ-Tritops-Warrior-H": 1405798857, + "Guest_AZ-Dino-Undead-A": 508678670, + "Guest_AZ-Dino-Undead-B": 508679182, + "Guest_AZ-Dino-Undead-D": 508680206, + "Guest_KR_Dino_Undead_A": 1638800628, + "Guest_KR_Dino_Undead_Minion_A": 892450235, + "MNT_HayRideTruck": 75377404, + "MNT_ShadowSpiderForm": 1439860426, + "Transformation_BG_Draconian_Death": 794598804, + "PP_BabyOrca": 1056061090, + "Transformation_BG_Cyclops_Fire": 638854828, + "Transformation_BG_Fairy_Ice": 874078461, + "PP_SpriteLife": 1824998010, + "PP_Raccoon": 1107326808, + "PP_FireKitten": 593048189, + "MNT_SkeletalDuck": 1306273036, + "PP_VampireSquid": 431023109, + "PP_CottonCandy": 891201813, + "PP_ThreeHeadGoat": 1282096939, + "PP_EyeBot": 260189248, + "MNT_DeathBoat": 1444454568, + "MNT_Lemuria": 908974762, + "MNT_DeathBoat_B": 1444456538, + "MNT_DeathBoat_C": 1444456474, + "MNT_Spooky3": 1667775622, + "MNT_PresentBox": 122082000, + "MNT_Orca": 1726961653, + "Guest_LM_Golem_Steel_A_01": 19551853, + "Guest_LM_Golem_Steel_A_02": 36329069, + "Guest_LM_EyeBot_A_01_Death": 380508535, + "Guest_LM_EyeBot_A_01_Myth": 167840640, + "PP_ThreeHeadGoat_B": 1209286443, + "PP_ThreeHeadGoat_C": 1211383595, + "Guest_KR_Eel_Whirligig_A": 1062268734, + "Guest_KR_Goliath_Behemoth_A": 1231139987, + "Guest_KR_Goliath_Behemoth_C": 1231139995, + "Guest_KR_Goliath_Behemoth_D": 1231139975, + "Guest_KR_Goliath_Behemoth_E": 1231139971, + "Guest_KR_Goliath_Behemoth_H": 1231140023, + "Guest_KR_Goliath_Crusher_C": 1651720060, + "Guest_KR_Goliath_Crusher_D": 2106376324, + "Guest_KR_Goliath_Crusher_F": 1032634500, + "Guest_KR_Goliath_Crusher_G": 495763588, + "Guest_KR_Goliath_Crusher_K": 1651720059, + "Guest_AZ-Goliath-Crusher-A": 1874784966, + "Guest_AZ-Goliath-Crusher-B": 264172230, + "Guest_AZ-Goliath-Crusher-C": 801043142, + "Guest_AZ-Goliath-Crusher-D": 809569594, + "Guest_AZ-Goliath-Crusher-E": 272698682, + "Guest_HG_AKT_Butterfly_Time_A_25": 1788523059, + "Guest_HG_AKT_Butterfly_Time_A_50": 1130017331, + "Guest_HG_AKT_Butterfly_Time_A_75": 1809494579, + "Guest_HG_AKT_Butterfly_Time_A_100": 1113240099, + "Guest_HG_AKT_Butterfly_Time_A_130": 1515893283, + "MNT_DeathBoat_D": 1444456922, + "Guest_KR_RhinoBeetle_Sun_A_Bossfight": 47895417, + "Guest_KR_RhinoBeetle_Star_A": 1947510103, + "Guest_KR_RhinoBeetle_Moon_A": 1751275863, + "Guest_ME1_Clockwork_Marine_A": 1481452452, + "Guest_ME1_Clockwork_Marine_B": 1481452068, + "Guest_CC_GoldSkeletonKey_Lice_DeepSpawn_B": 1306132994, + "Guest_KR_DamdinBazar_A_Bossfight": 1333596311, + "Guest_DS-Minion-MAW2": 356796677, + "Guest_KH-Wyrmling-1": 116330513, + "Guest_KH-Wyrmling-20": 183439385, + "Guest_KH-Wyrmling-40": 317657113, + "Guest_KH-Wyrmling-60": 451874841, + "Guest_KH-Wyrmling-80": 586092569, + "Guest_PL_Polar_Bear_Solider_C": 1785662565, + "Guest_Skeleton-Silver-WCBoss-L01": 17766963, + "Guest_Banshee-Red-Elite-L24_B": 1902069117, + "Transformation_BG_WolfWarrior_Myth": 339098032, + "Transformation_BG_RatThief_Balance": 881728218, + "Transformation_BG_Colossus_Storm": 593527492, + "Transformation_BG_Elf_Life": 347405087, + "Transformation_BG_Minotaur_Ice": 1197752291, + "MNT_TRex_B": 660285500, + "PP_SpriteDark_Ice": 2036248504, + "MNT_RollingBall": 1658139390, + "Guest_LM_TRex_Base_A_03": 1378630657, + "Guest_LM_TRex_Base_A_04": 1378745345, + "Guest_LM_TRex_Base_A_05": 1378728961, + "Guest_LM_TRex_Base_A_01": 1378663425, + "Guest_LM_TRex_Base_A_02": 1378647041, + "Guest_LM_TRex_Cyborg_A_01": 151609741, + "Guest_LM_TRex_Cyborg_A_02": 168386957, + "Guest_LM_TRex_Cyborg_A_03": 185164173, + "Guest_LM_TRex_Cyborg_B_01": 151611277, + "Guest_LM_TRex_Cyborg_D_01": 151612301, + "Guest_LM_TRex_Cyborg_E_01": 151611789, + "Guest_LM_TRex_Cyborg_C_01": 151610765, + "Guest_LM_Draconian_Base_A_01": 1607373112, + "Guest_LM_EyeBot_B_01": 1085543056, + "Guest_LM_Drone_Eye_C_01": 916954037, + "Guest_LM_Drone_Eye_D_01": 1230529608, + "Guest_LM_Drone_Eye_D_02": 1230545992, + "Guest_LM_Drone_Eye_D_04": 1230578760, + "Guest_LM_Drone_Eye_D_03": 1230562376, + "Guest_LM_Drone_Eye_A_01": 916954038, + "Guest_LM_Drone_Eye_A_02": 916937654, + "Guest_LM_Drone_Eye_B_01": 1230529611, + "Guest_LM_Drone_Eye_D_05": 1230595144, + "Guest_LM_Drone_Eye_D_07": 1230627912, + "Guest_LM_Drone_Eye_D_08": 1230644296, + "Guest_LM_Drone_Eye_A_03": 916921270, + "Guest_LM_Drone_Eye_A_04": 916904886, + "Guest_LM_Drone_Eye_C_02": 916937653, + "Guest_LM_EyeBot_B_02": 1061940593, + "Guest_LM_EyeBot_B_03": 1085543055, + "Guest_LM_EyeBot_B_04": 1061940594, + "Guest_LM_Drone_Eye_C_03": 916921269, + "Guest_LM_Robot_Kit10_A_01": 199936400, + "Guest_LM_Colossus_Mander_A_01": 2107529026, + "Guest_LM_Robot_Future_A_01": 998840846, + "Guest_LM_Robot_FutureBIG_A_01": 340408568, + "Guest_LM_Robot_FutureBIG_A_02": 340396280, + "Guest_LM_Robot_FutureBIG_A_03": 340400376, + "Guest_LM_Robot_OldOne_A_01": 779070973, + "Guest_LM_Robot_OldOne_A_02": 1315941885, + "Guest_LM_Millipede_Centi_A_01": 168575797, + "Guest_LM_Millipede_Centi_A_03": 168583989, + "Guest_LM_Millipede_Centi_A_02": 168588085, + "Guest_LM_Millipede_Centi_A_04": 168563509, + "Guest_LM_Moth_Sorcerer_A_01": 228191136, + "Guest_LM_Boar_Barbarian_A_01": 1238634912, + "Guest_LM_Boar_Barbarian_A_02": 1238634528, + "Guest_LM_Boar_Barbarian_A_03": 1238634656, + "Guest_LM_Boar_Barbarian_A_04": 1238635296, + "Guest_LM_Boar_Barbarian_A_05": 1238635424, + "Guest_LM_Boar_Chief_A_01": 357051311, + "Guest_LM_Fungus_Humango_A_01": 1398460044, + "Guest_LM_Fungus_Humango_A_02": 1398460172, + "Guest_LM_Treant_Base_A_01": 1658172241, + "Guest_LM_GiantTree_EvilRoots_A_01": 282225934, + "Guest_LM_PA_GreenMan_A_01": 67705044, + "Guest_LM_Fungus_Humango_B_01": 1348128396, + "Guest_LM_Fungus_Humango_A_03": 1398460300, + "Guest_LM_Fungus_Man_C_01": 1648824156, + "Guest_LM_Fungus_Man_C_02": 1650397020, + "Guest_LM_Rhino_Zombie_A_01": 248513993, + "Guest_LM_Malughast_Base_01": 883820436, + "Guest_LM_Malughast_Base_02": 1420691348, + "Guest_LM_Lemur_HierarchF_H_04": 231562115, + "Guest_LM_Malughast_Base_03": 1957562260, + "Guest_LM_Malughast_Base_05": 1263663212, + "Guest_LM_Malughast_Base_06": 726792300, + "Guest_LM_Malughast_Base_08": 346949523, + "Guest_LM_Malughast_Base_09": 883820435, + "Guest_LM_Malughast_Base_04": 1800534124, + "Guest_LM_Minotaur_Skeleton_A_01": 1865122824, + "Guest_LM_Lemur_Wild_B_03": 1783764037, + "Guest_LM_Lemur_HierarchF_H_01": 231541635, + "Guest_LM_Lemur_HierarchF_H_02": 231553923, + "Guest_LM_Mander_Warrior_A_01": 1651245419, + "Guest_LM_Mander_Warrior_A_02": 1651245291, + "Guest_LM_Mander_Warrior_B_01": 1634468203, + "Guest_LM_Mander_Warrior_B_02": 1634468075, + "Guest_LM_Mander_Warrior_A_03": 1651245163, + "Guest_LM_Mander_Warrior_B_03": 1634467947, + "Guest_LM_Mander_Warrior_A_06": 1651245803, + "Guest_LM_Mander_Warrior_A_05": 1651245931, + "Guest_LM_Mander_Mummy_B_01": 1844111521, + "Guest_LM_Mander_Hero_B_01": 865113284, + "MNT_HolidayHippogriff": 938892112, + "MNT_Sabertooth_Ice": 1870381696, + "PP_FenrisWolf_Bantam": 776647759, + "MNT_JetPack": 1986300552, + "MNT_Scooter_F": 1005560708, + "PP_FossaKitten_A": 431748212, + "PP_Elfvis": 147991405, + "Guest_LM_Chicken_Hero_A_01": 1308728300, + "Guest_LM_Horse_Explorer_A_01": 434405482, + "Guest_LM_Duck_HeroineF_A_01": 133199186, + "Guest_LM_Crane_Hero_A_01": 204272548, + "Guest_LM_Deer_HeroineF_A_01": 1800374959, + "Guest_LM_Deer_Hero_A_01": 223109503, + "Guest_LM_Dog_Hero_A_01": 1434615064, + "PP_YearTiger": 777048708, + "MNT_Barrel": 3576425, + "MNT_Krampus": 404117611, + "PP_ChineseTigerCub": 1256032005, + "PP_Lemur": 565774155, + "PP_Robot": 1089075331, + "PP_Capybara": 451970762, + "Guest_LM_Ghoul_Base_A_01": 1822415945, + "Guest_LM_Lemur_HierarchF_H_03": 231549827, + "Guest_LM_Ghoul_Base_A_02": 1820843081, + "Guest_LM_Ghoul_Base_A_03": 1821367369, + "MNT_SpringSoF2022": 1685679511, + "MNT_WarElephant": 875015497, + "PP_Strix": 514230046, + "MNT_Beachball": 791896033, + "MNT_Blank": 633398131, + "MNT_CardboardFlier": 1646636689, + "MNT_LochMonster": 879660722, + "Transformation_BG_Krok_Death": 1395067182, + "Transformation_BG_Draconian_Fire": 1551581732, + "PP_Scotty": 1708580475, + "Guest_KR_Mice_Knight_A": 480101508, + "PP_Peacock": 1178721112, + "MNT_PoodleMoth": 975420235, + "PP_Hummingbird": 624666906, + "PP_WolfWarrior_Myth": 470737416, + "Guest_HG_UFD_Ghost_QueenF_A_100": 795323059, + "Guest_HG_UFD_Ghost_QueenF_A_50": 728230579, + "Guest_HG_UFD_Pirate_UndeadHighland_A_Balance_150": 201145133, + "Guest_HG_UFD_Pirate_UndeadHighland_A_Balance_100": 201144941, + "Guest_HG_UFD_Pirate_UndeadHighland_A_Balance_50": 201177701, + "Guest_HG_UFD_Pirate_UndeadHighland_A_Star_150": 1329885920, + "Guest_HG_UFD_Pirate_UndeadHighland_A_Star_100": 1304720096, + "Guest_HG_UFD_Pirate_UndeadHighland_A_Star_50": 1305768671, + "Guest_HG_UFD_Pirate_UndeadHighland_A_Shadow_150": 1263689971, + "Guest_HG_UFD_Pirate_UndeadHighland_A_Shadow_100": 1263689977, + "Guest_HG_UFD_Pirate_UndeadHighland_A_Shadow_50": 189949177, + "Guest_HG_UFD_Kelpie_Warrior_A_150": 54296095, + "Guest_HG_UFD_Kelpie_Warrior_A_100": 725384735, + "Guest_HG_UFD_Kelpie_Warrior_A_50": 708607503, + "Guest_HG_UFD_Pirate_UndeadHighland_B_150": 1099317831, + "Guest_HG_UFD_Pirate_UndeadHighland_B_100": 25576008, + "Guest_HG_UFD_Pirate_UndeadHighland_B_50": 159793864, + "Guest_HG_UFD_Ghost_QueenF_A_150": 795716275, + "PP_SpiderMinion": 557357331, + "MNT_Vines_Rainbow": 1587180338, + "MNT_YoungDrake": 1279496198, + "PP_Pet_Coconut": 444388490, + "DragonKI": 1490194214, + "PP_Sharkfish": 601628284, + "PP_MimicCake": 48071878, + "Guest_AQ-Bronze-Eagle": 375279744, + "Guest_Spider-Brown-L26": 2128680185, + "Guest_KR_Spider_Giant_D": 744401035, + "Guest_Wizard-Female-Band-Blue-R8": 1447486557, + "Guest_CC_Human_DSCrusaderF_A_01": 726538068, + "Guest_WC_Scarecrow_A_01": 867491011, + "Guest_WC_Banshee_A_01": 1433786463, + "Guest_WC_LostSoul_A_01": 796936146, + "PP_Fairy_Myth": 1117624344, + "PP_SpriteDark_Myth": 1884257976, + "BG_CyclopsLife_A": 944091673, + "Transformation_BG_NinjaPig_Storm": 2005137181, + "Transformation_BG_Fairy_Myth": 1880704188, + "Transformation_BG_Cyclops_Life": 638936708, + "Guest_AQ-Eagle-Praetorian": 1988013806, + "Guest_KM_BabyCarrot_A_01": 766239512, + "Guest_G14-DM-Gargoyle": 282898047, + "Guest_MR_Durvish_Sergeant_A_Boss_01": 1532609325, + "Guest_Cyclops-RedHelmet-KTBoss-L28": 2072371506, + "Guest_EM_Pig_Singer_A_01": 698597069, + "Guest_EM_Pig_Captain_A": 977505995, + "Guest_EM_Pig_Crewman_A": 465576459, + "PP_ChipmunkConductor": 1089819900, + "PP_LuckyCat": 1109326826, + "MNT_ImpCar": 1736092191, + "MNT_Book": 1547655078, + "MNT_JackoLantern": 649919658, + "MNT_Zheng": 742453108, + "MNT_Train": 413197899, + "MNT_Cerberus": 552686313, + "PP_Coconut": 1122741587, + "Transformation_Statue": 1153168084, + "Transformation_Nullity": 622504394, + "PP_Irk": 1825277392, + "Guest_Wyrmling-Fire-R8-1": 531485009, + "MNT_WolfLowPoly_A": 1947890962, + "MNT_WolfLowPoly_B": 1947825426, + "Transformation_BG_RatThief_Fire": 1169330235, + "Transformation_BG_WolfWarrior_Death": 159966683, + "Transformation_BG_Minotaur_Balance": 657855108, + "Transformation_BG_Draconian_Ice": 1907339814, + "Transformation_BG_Colossus_Myth": 1305894338, + "Transformation_NV_Penguin": 1757096851, + "Transformation_NV_Unicorn": 60447768, + "Transformation_NV_Monkey": 1379873688, + "Transformation_NV_Dog": 1961288968, + "PP_Wolf_Storm": 455227171, + "PP_WoodDuck": 1680912895, + "MNT_RockingHorse": 1205280059, + "MNT_SOF2022_Car": 219868812, + "PP_Buffaloon": 796152873, + "MNT_Steamboat": 1969530127, + "MNT_FelizNavidog": 847046394, + "PP_Mustache": 1571079379, + "Guest_DD-DS01-Skeleton-Pirate-20": 226826848, + "Guest_DD-DS01-Skeleton-Pirate-40": 201661024, + "Guest_DD-DS01-Skeleton-Pirate-60": 210049632, + "Guest_DD-DS01-Skeleton-Pirate-80": 251992672, + "Guest_DD-DS01-Skeleton-Pirate": 1994450336, + "Guest_DD-DS01-Shadow-Minion-Fire": 1074864956, + "Guest_DD-DS01-Shadow-Minion-Ice": 1841681214, + "Guest_DD-DS01-Shadow-Minion-Fire-20": 1074880881, + "Guest_DD-DS01-Shadow-Minion-Fire-40": 1074880945, + "Guest_DD-DS01-Shadow-Minion-Ice-20": 96850220, + "Guest_DD-DS01-Shadow-Minion-Ice-40": 96850218, + "Guest_DD-DS01-Shadow-Minion-Fire-60": 1074881009, + "Guest_DD-DS01-Shadow-Minion-Ice-60": 96850216, + "Guest_DD-DS01-Shadow-Minion-Fire-80": 1074880561, + "Guest_DD-DS01-Shadow-Minion-Ice-80": 96850214, + "Guest_SC-SpectreOfB-1": 1471950935, + "Guest_SC-SpectreOfB-20": 1471942759, + "Guest_SC-SpectreOfB-40": 1471942663, + "Guest_SC-SpectreOfB-60": 1471942695, + "Guest_SC-SpectreOfB-80": 1471942855, + "Guest_KH-Skeleton-Ice-60": 2108358962, + "Guest_KH-Skeleton-Ice-40": 2108391730, + "Guest_KH-Skeleton-Ice-20": 2108293426, + "Guest_KH-Skeleton-Ice-1": 2099953970, + "Guest_KH-Skeleton-Ice-80": 2108195122, + "Guest_KH-Undead-Caster-60": 1662604496, + "Guest_KH-Undead-Caster-40": 1661555920, + "Guest_KH-Undead-Caster-20": 1664701648, + "Guest_KH-Undead-Caster-1": 1931564240, + "Guest_KH-Undead-Caster-80": 1667847376, + "Guest_DD-PA01-DeadBeets": 1664999367, + "Guest_DD-PA01-DeadBeets-20": 1901453253, + "Guest_DD-PA01-DeadBeets-40": 2002116549, + "Guest_DD-PA01-DeadBeets-60": 1968562117, + "Guest_DD-PA01-DeadBeets-80": 2069225413, + "Guest_DD-PA01-Disparagus": 1865816461, + "Guest_DD-PA01-Disparagus-20": 573970895, + "Guest_DD-PA01-Disparagus-40": 499770929, + "Guest_DD-PA01-Disparagus-60": 1573512753, + "Guest_DD-PA01-Disparagus-80": 1647712718, + "Guest_DD-PA01-MeanestFlyTrap": 2001546861, + "Guest_DD-PA01-MeanestFlyTrap-20": 1936326253, + "Guest_DD-PA01-MeanestFlyTrap-40": 1936064109, + "Guest_DD-PA01-MeanestFlyTrap-60": 1935801965, + "Guest_DD-PA01-MeanestFlyTrap-80": 1937636973, + "Guest_HG-MD-MacDeath-20": 182639104, + "Guest_HG-MD-MacDeath-40": 182638080, + "Guest_HG-MD-MacDeath-60": 182637056, + "Guest_HG-MD-MacDeath-80": 182636032, + "Guest_HG-MD-MacDeath-100": 174252032, + "Guest_HG-MD-MacDeath-130": 174202880, + "Guest_HG_Sinbad_Skeleton_25": 494617874, + "Guest_HG_Sinbad_Skeleton_50": 42253050, + "Guest_HG_Sinbad_Skeleton_75": 1115994862, + "Guest_HG_Sinbad_Skeleton_100": 2105232646, + "Guest_HG_Sinbad_Skeleton_130": 2105232650, + "Guest_HG_Sinbad_Skeleton_25_02": 492722834, + "Guest_HG_Sinbad_Skeleton_50_02": 44148090, + "Guest_HG_Sinbad_Skeleton_75_02": 1117889902, + "Guest_HG_Sinbad_Skeleton_100_02": 2044247302, + "Guest_HG_Sinbad_Skeleton_130_02": 2044247306, + "Guest_DD-AV01-WyrmBoss": 1648677986, + "Guest_DD-AV01-WyrmBoss-20": 1926730850, + "Guest_DD-AV01-WyrmBoss-40": 1927779426, + "Guest_DD-AV01-WyrmBoss-60": 1928828002, + "Guest_DD-AV01-WyrmBoss-80": 1921487970, + "Guest_RH-Wyrm-Boss-01": 1027277645, + "Guest_RH-Wyrm-Boss-20": 1027277660, + "Guest_RH-Wyrm-Boss-40": 1027277663, + "Guest_RH-Wyrm-Boss-60": 1027277662, + "Guest_RH-Wyrm-Boss-80": 1027277657, + "Guest_HG_Sinbad_Wyrm_25": 1101443356, + "Guest_HG_Sinbad_Wyrm_50": 1101528860, + "Guest_HG_Sinbad_Wyrm_75": 1101445916, + "Guest_HG_Sinbad_Wyrm_100": 1093138204, + "Guest_HG_Sinbad_Wyrm_130": 1093089052, + "Guest_KH-Treant-1": 2001244331, + "Guest_KH-Treant-60": 1968148651, + "Guest_KH-Treant-40": 1968017579, + "Guest_KH-Treant-20": 1967886507, + "Guest_KH-Treant-80": 1967231147, + "Guest_DD-PA01-ForestGrump": 1969685870, + "Guest_DD-PA01-ForestGrump-20": 714666713, + "Guest_DD-PA01-ForestGrump-40": 714666689, + "Guest_DD-PA01-ForestGrump-60": 714666697, + "Guest_DD-PA01-ForestGrump-80": 714666737, + "Guest_DD-PA01-ForestNymphs": 227087348, + "Guest_DD-PA01-ForestNymphs-20": 227023552, + "Guest_DD-PA01-ForestNymphs-60": 227023040, + "Guest_DD-PA01-ForestNymphs-80": 227024832, + "Guest_SC-Pig-BalanceWizardA-1": 475456968, + "Guest_SC-Pig-BalanceWizardA-20": 477550024, + "Guest_SC-Pig-BalanceWizardA-40": 477541832, + "Guest_SC-Pig-BalanceWizardA-60": 477533640, + "Guest_SC-Pig-BalanceWizardA-80": 477525448, + "Guest_SC-Pig-BalanceWizardB-1": 475456964, + "Guest_SC-Pig-BalanceWizardB-20": 477550020, + "Guest_SC-Pig-BalanceWizardB-40": 477541828, + "Guest_SC-Pig-BalanceWizardB-60": 477533636, + "Guest_SC-Pig-BalanceWizardB-80": 477525444, + "Guest_SC-Pig-BalanceWizardC-1": 475456960, + "Guest_SC-Pig-BalanceWizardC-20": 477550016, + "Guest_SC-Pig-FireWizard-1": 2048176291, + "Guest_SC-Pig-FireWizard-20": 2031399073, + "Guest_SC-Pig-FireWizard-40": 2132062369, + "Guest_SC-Pig-FireWizard-60": 2098507937, + "Guest_SC-Pig-FireWizard-80": 1930735777, + "Guest_SC-Pig-IceWizardF-1": 1178687744, + "Guest_SC-Pig-IceWizardF-20": 1161910526, + "Guest_SC-Pig-IceWizardF-40": 1128356094, + "Guest_SC-Pig-IceWizardF-60": 1094801662, + "Guest_SC-Pig-IceWizardF-80": 1329682686, + "Guest_SC-Pig-MythWizard-1": 2048492725, + "Guest_SC-Pig-MythWizard-20": 2031715511, + "Guest_SC-Pig-MythWizard-40": 2132378807, + "Guest_SC-Pig-MythWizard-60": 2098824375, + "Guest_SC-Pig-MythWizard-80": 1931052215, + "Guest_SC-Pig-StormWizardF-1": 1743849420, + "Guest_SC-Pig-StormWizardF-20": 1743851464, + "Guest_SC-Pig-StormWizardF-40": 1743851488, + "Guest_SC-Pig-StormWizardF-60": 1743851480, + "Guest_SC-Pig-StormWizardF-80": 1743851504, + "Guest_KH-Pig-Bandit-Lord-1": 1080496628, + "Guest_KH-Pig-Bandit-Lord-20": 543625652, + "Guest_KH-Pig-Bandit-Lord-40": 530116172, + "Guest_KH-Pig-Bandit-Lord-60": 1603857996, + "Guest_KH-Pig-Bandit-Lord-80": 1617367475, + "Guest_KH-Pig-Bandit-Ninja-1": 1945100907, + "Guest_KH-Pig-Bandit-Ninja-20": 1945102951, + "Guest_KH-Pig-Bandit-Ninja-40": 1945102975, + "Guest_KH-Pig-Bandit-Ninja-60": 1945102967, + "Guest_KH-Pig-Bandit-Ninja-80": 1945102927, + "Guest_KH-Pig-War-Caster-1": 656859765, + "Guest_KH-Pig-War-Caster-20": 606528119, + "Guest_KH-Pig-War-Caster-40": 572973687, + "Guest_KH-Pig-War-Caster-60": 539419255, + "Guest_KH-Pig-War-Caster-80": 774300279, + "Guest_KH-Pig-War-Warrior-Boss-1": 16342355, + "Guest_KH-Pig-War-Warrior-Boss-20": 2143724205, + "Guest_KH-Pig-War-Warrior-Boss-40": 2118558381, + "Guest_KH-Pig-War-Warrior-Boss-60": 2126946989, + "Guest_KH-Pig-War-Warrior-Boss-80": 2101781165, + "Guest_SC-Pig-BalanceWizardC-40": 477541824, + "Guest_SC-Pig-BalanceWizardC-60": 477533632, + "Guest_SC-Pig-BalanceWizardC-80": 477525440, + "Guest_KH-Helephant-Death-20": 1109389719, + "Guest_KH-Helephant-Death-40": 2111835753, + "Guest_KH-Helephant-Death-60": 1038093929, + "Guest_KH-Helephant-Death-80": 35647896, + "Guest_KH-GreyOgre-Spider-1": 356368404, + "Guest_KH-GreyOgre-Spider-20": 1966981204, + "Guest_KH-GreyOgre-Spider-40": 1254244268, + "Guest_KH-GreyOgre-Spider-60": 180502444, + "Guest_KH-GreyOgre-Spider-80": 893239379, + "Guest_HG_Sinbad_Colossus_25": 1190802829, + "Guest_HG_Sinbad_Colossus_50": 1493551719, + "Guest_HG_Sinbad_Colossus_75": 419809907, + "Guest_HG_Sinbad_Colossus_100": 653933977, + "Guest_HG_Sinbad_Colossus_130": 653933973, + "Guest_NV_Dino_AberrantUndead_A_01": 2035087398, + "Guest_NV_Hellephant_Aberrant_A_01": 989522333, + "Guest_NV_Hellephant_Aberrant_A_02": 989522334, + "Guest_NV_BananaSpider_Base_A_01": 1585810541, + "Guest_NV_BananaSpider_Base_A_02": 1581616237, + "Guest_NV_BananaSpider_Base_A_03": 1577421933, + "Guest_NV_BananaSpider_Base_A_04": 1606782061, + "Guest_NV_BananaSpider_Base_A_05": 1602587757, + "Guest_NV_Wyrm_Aberrant_A_01": 16108415, + "Guest_NV_Monkey_Zombie_A_01": 1854775300, + "Guest_NV_Monkey_Zombie_A_02": 1854775304, + "Guest_NV_Monkey_Zombie_A_03": 1854775308, + "Guest_NV_Monkey_Zombie_A_04": 1854775312, + "MNT_Flag_Monster": 867940056, + "Guest_SKB_WY_DarkBramble_A_30": 2046798767, + "Guest_SKB_WY_DarkBramble_A_50": 2046797999, + "Guest_SKB_WY_DarkBramble_A_100": 2044701359, + "Guest_SKB_WY_DarkBramble_A_150": 2044721839, + "Guest_SKB_GH_Boar_A_30": 1547921275, + "Guest_SKB_WC_SpiritIgnorance_A_50": 1488876986, + "Guest_SKB_WC_SpiritIgnorance_A_100": 2025748410, + "Guest_SKB_WC_SpiritIgnorance_A_150": 2025748413, + "Guest_SKB_DS_Loremaster_A_50": 527751539, + "Guest_SKB_DS_Loremaster_A_100": 527817059, + "Guest_SKB_DS_Loremaster_A_150": 527817699, + "Guest_SKB_CL_Dan_A_50": 637418706, + "Guest_SKB_CL_Dan_A_60": 1510064941, + "Guest_SKB_CL_Dan_A_100": 637410512, + "Guest_SKB_CL_Dan_A_150": 637410432, + "Guest_SKB_AV_Spectre_A_50": 2104631195, + "Guest_SKB_AV_Spectre_A_100": 2102534041, + "Guest_SKB_AV_Spectre_A_150": 2018647961, + "Guest_SKB_MS_Samoorai_A_50": 2029641915, + "Guest_SKB_MS_Samoorai_A_100": 2096750843, + "Guest_SKB_MS_Samoorai_A_150": 587603717, + "Transformation_BG_Krok_StromTemplate": 1317694546, + "PP_ChineseRabbit": 382941643, + "PP_ParadeElf": 1036247808, + "MNT_HeartSwarm": 918199310, + "MNT_SpringSOF2023": 1417178519, + "Transformation_BG_Elf_Death2Template": 1606653101, + "MNT_GummyBunny_D": 775840224, + "Transformation_BG_Krok_Life2Template": 747486212, + "PP_Flame": 959186933, + "PP_YachtRock": 1500927358, + "PP_PirateYachtRock": 1227549100, + "PP_ChickenMonster": 1845706534, + "PP_SnowHoppers_B": 1496460038, + "PP_SnowHoppers_C": 1496457990, + "MNT_Oarfish": 29720265, + "PP_RingTailedCat": 993143427, + "MNT_Fanboat": 19347694, + "MNT_MiniSub": 298697910, + "PP_DumboOctopus": 966435639, + "PP_Glowbug_Balance": 1405529577, + "PP_Glowbug_Death": 405117107, + "PP_Glowbug_Fire": 651698987, + "PP_Glowbug_Ice": 2124926395, + "PP_Glowbug_Life": 601367299, + "PP_Glowbug_Myth": 592978024, + "PP_Glowbug_Storm": 61190446, + "PP_DumboOctopus_B": 968448823, + "PP_DumboOctopus_C": 968383287, + "PP_BananaSpider_01": 1074383522, + "PP_BananaSpider_02": 1080674978, + "PP_BananaSpider_03": 1078577826, + "Guest_HG_NM_BeardDragon_Base_C_01": 82913785, + "Guest_HG_NM_BeardDragon_Base_C_02": 82913786, + "Guest_HG_NM_BeardDragon_Base_C_03": 82913787, + "Guest_HG_NM_Glowbug_Base_C_01": 544959703, + "Guest_HG_NM_Glowbug_Base_C_02": 544955607, + "Guest_HG_NM_Glowbug_Base_C_03": 544951511, + "Guest_HG_NM_Glowbug_Base_C_04": 544947415, + "Guest_HG_NM_Glowbug_Base_C_05": 544943319, + "Guest_HG_NM_Glowbug_Base_C_06": 544939223, + "Guest_HG_NM_Glowbug_Base_C_07": 544935127, + "MNT_BouquetofFlowers": 1511180560, + "PP_Piggle_Rainbow": 91081383, + "MNT_Sabertooth_FlameSaber": 1949516909, + "Guest_HG_NM_BeardDragon_Base_A_01": 83175929, + "Guest_HG_NM_BeardDragon_Base_A_02": 83175930, + "Guest_HG_NM_BeardDragon_Base_A_03": 83175931, + "Guest_HG_NM_BeardDragon_Base_B_01": 83044857, + "Guest_HG_NM_BeardDragon_Base_B_02": 83044858, + "Guest_HG_NM_BeardDragon_Base_B_03": 83044859, + "Guest_HG_NM_Glowbug_Base_B_01": 8088791, + "Guest_HG_NM_Glowbug_Base_B_02": 8084695, + "Guest_HG_NM_Glowbug_Base_B_03": 8080599, + "Guest_HG_NM_Glowbug_Base_B_04": 8076503, + "Guest_HG_NM_Glowbug_Base_B_05": 8072407, + "Guest_HG_NM_Glowbug_Base_B_06": 8068311, + "Guest_HG_NM_Glowbug_Base_B_07": 8064215, + "Guest_HG_NM_Glowbug_Base_A_01": 1618701527, + "Guest_HG_NM_Glowbug_Base_A_02": 1618697431, + "Guest_HG_NM_Glowbug_Base_A_03": 1618693335, + "Guest_HG_NM_Glowbug_Base_A_04": 1618689239, + "Guest_HG_NM_Glowbug_Base_A_05": 1618685143, + "Guest_HG_NM_Glowbug_Base_A_06": 1618681047, + "Guest_HG_NM_Glowbug_Base_A_07": 1618676951, + "MNT_SummerSOF2023": 1636120912, + "PP_Cyclops_Fire": 7821755, + "PP_Death_Elf": 1535744155, + "PP_Newt": 1438123483, + "PP_Echidna": 735439358, + "MNT_Wombat": 580544786, + "Transformation_BG_NinjaPig_Balance": 1799661438, + "Transformation_BG_Cyclops_Ice": 647975824, + "Transformation_BG_Minotaur_Storm": 1005667041, + "Transformation_GR_Parasaur_Priest_Ice": 1101466351, + "Transformation_GR_Parasaur_Priest_Fire": 892193041, + "Transformation_GR_Parasaur_Priest_Storm": 1525882116, + "Transformation_GR_Parasaur_Priest_Balance": 1127637476, + "Guest_GR_AZ_Parasaur_Undead_B_01": 322587487, + "MNT_WitchCat": 1167097888, + "PP_RolyPoly": 578538330, + "PP_Capybara_B": 628131532, + "MNT_OutbackTruck": 1815527801, + "PP_PoodleSailor": 2137704795, + "MNT_PolarianCannon": 2103490826, + "PP_TazmanianDevil": 1773548765, + "Guest_SKB_AZ_Ixcax_A_100": 556560994, + "Guest_SKB_AZ_Ixcax_A_150": 556610146, + "Guest_SKB_AZ_Ixcax_A_50": 564951650, + "MNT_GhoulsShovel": 2035610946, + "PP_CrystalBdayDragon": 1897078804, + "PP_SunGobblerBall": 1522469440, + "PP_Sun_GreenGobbler": 1337690394, + "MNT_2P_AutumnTreant": 1063435527, + "PP_AutumnTreant": 561077291, + "MNT_FlyingMonkey": 490807393, + "PP_BabyPlantMonster": 2076646587, + "MNT_PlantCreature_A": 1802823265, + "Transformation_BG_Fairy_Fire": 2065252898, + "Transformation_BG_Krok_Myth": 277926564, + "Transformation_BG_RatThief_Life": 1167758651, + "Transformation_BG_Elf_Balance": 1628238937, + "Transformation_BG_Colossus_Death": 184392004, + "Transformation_FortressPod": 139738335, + "P_Wombat_POLYMORPH": 1132264953, + "PP_SharkWobbegong": 1994247222, + "PP_ChineseNYDragon": 1126999021, + "PP_JingleBellRock": 1076037919, + "PP_Krok_Mummy_Myth": 438487583, + "PP_Cyclops_Ice": 1476966187, + "MNT_OutbackTruckB": 1813299577, + "MNT_EvilSnowmanBall": 758818712, + "MNT_ThanksgivingGobbler": 1760011910, + "Guest_WL_Ghost_LostSoul_A_01": 1224111704, + "Guest_WL_Kangaroo_Drover_F_01": 2025562931, + "Guest_WL_Spider_WarriorMage_C_01": 1296557888, + "Guest_WL_Spider_WarriorMage_C_02": 1430775616, + "Guest_WL_Spider_WarriorMage_C_03": 1564993344, + "Guest_WL_Spider_WarriorMage_C_04": 1699211072, + "Guest_WL_Spider_WarriorMage_C_05": 1833428800, + "Guest_WL_Spider_WarriorMage_C_06": 1967646528, + "Guest_WL_Spider_WarriorMage_C_07": 2101864256, + "Guest_SKB_KR_Lightbane_A_100": 837930677, + "Guest_SKB_KR_Lightbane_A_160": 837930669, + "Guest_SKB_KR_Lightbane_A_50": 1309555019, + "Transformation_WL_Phantasmanian_DevilTemplate": 384891502, + "MNT_2P_LeaflessTreant": 623083386, + "PP_Minotaur_Ice": 700151737, + "MNT_Scooter_G": 737125252, + "Guest_WL_Frog_Owner_B_01": 767864686, + "MNT_SilentKnight": 646654812, + "Guest_WL_TRex_Base_A_01": 1842562033, + "Guest_WL_TRex_Base_B_01": 304921616, + "PP_Groundhog": 108643243, + "Guest_NV_Unicorn_Guard_C_04": 1845621, + "MNT_EmuPunk": 647315080, + "MNT_HeartBalloon": 798826551, + "PP_ValentineHoppers": 968693964, + "MNT_SpringSOF2024_Heckhound": 453640548, + "Guest_AQ-Centaur-Arion": 1856508139, + "Guest_AQ-Centaur-Artemis": 333294011, + "Guest_AQ-Horse-Sea": 724896200, + "Guest_KR_Horse_Warlord_A_Bossfight": 1302284326, + "Guest_KR_Horse_Warlord_A_BossfightSP": 1300726822, + "Guest_KR_Zebra_Thrall_A": 1250265667, + "Guest_KR_Zebra_Thrall_A_Boss_Minion": 345677011, + "Guest_KR_Zebra_Thrall_A_Gallery": 1520303483, + "Guest_KH-Gray-Horse-40": 1802231403, + "Guest_KH-Gray-Horse-20": 1802231307, + "Guest_G14-BP-Unicorn_Fencer_Boss": 1602044152, + "Guest_Horse-Merc-Brown-L37": 1831175255, + "Guest_Horse-Merc-Tan-L39": 1363854837, + "Guest_Horse-Merc-Tan-L39-1": 2085275127, + "Guest_Horse-Merc-Gray-MSBoss-L39": 1863452041, + "Guest_Horse-Merc-Gray-L39": 2039135564, + "Guest_Horse-Merc-Tan-L38": 1363330549, + "Guest_WC_Horse_Mercenary_Roberto": 891924774, + "Guest_ZF-Nathi-Yellowstripe-R11": 1505157721, + "Guest_ZF-TseTse-Main-R11-Boss": 114927854, + "Guest_ZF-TseTse-Elephant-R11": 894147273, + "Guest_ZF-Zebra-Impi-Raider-R11": 1378242919, + "Guest_ZF-Zebra-Warrior-Male-R10-1": 1791906265, + "Guest_ZF-Zebra-Senzan-Zebu-R10-Boss": 373712721, + "Guest_ZF-Zebra-Shaka-Zebu-R10-Boss": 662142985, + "Guest_ZF-Zebra-Warrior-Female-R10-02": 1507835670, + "Guest_ZF-Zebra-Warrior-Male-R10": 47075786, + "Guest_ZF-Zebra-Warrior-Male-R10-02": 1791906714, + "Guest_ZF-Zebra-Warrior-Male-R10-03": 1791906746, + "Guest_ZF-Zebra-Warrior-Male-R10-05": 1791906682, + "Guest_ZF-Zebra-Warrior-Male-R10-2": 1791906268, + "Guest_ZF_Zebra_Spectral_Guardian-R11": 431970996, + "Guest_CC_Horse_Apoc_A_01": 644668374, + "Guest_CC_Horse_Apoc_B_01": 644668390, + "Guest_CC_Horse_Apoc_C_01": 644668406, + "Guest_CC_Horse_Apoc_D_01": 644668294, + "Guest_CC_Horse_Apoc_D_02": 645192582, + "Guest_CC_Unicorn_CorsairF_B_01": 1378532506, + "Guest_CC_Unicorn_Duelist_B_01": 64891542, + "Guest_CC_Unicorn_Guard_B_01": 1075063242, + "Guest_CC_Unicorn_Guard_B_02": 1075063238, + "Guest_CC_Unicorn_Guard_B_03": 1075063234, + "Guest_NV_Horse_HordeSoldier_A_01": 504396960, + "Guest_NV_Horse_HordeSoldier_A_02": 101743776, + "Guest_NV_Horse_HordeOfficer_A_01": 343600992, + "Guest_NV_Horse_HordeSoldier_A_03": 235961504, + "Guest_NV_Horse_HordeOfficer_A_02": 209383264, + "Guest_NV_Horse_AberrantTungAk_A_01": 952263441, + "Guest_NV_Horse_AberrantTungAk_A_02": 952263537, + "Guest_NV_Horse_TungAk_B_01": 1194718672, + "Guest_NV_Horse_TungAk_B_02": 657847760, + "Guest_NV_Horse_HordeOfficer_B_01": 343596896, + "Guest_NV_Horse_HordeOfficer_B_02": 209379168, + "Guest_NV_Horse_TungAk_A_01": 1194669520, + "Guest_NV_Unicorn_Guard_C_01": 1845601, + "Guest_NV_Unicorn_Guard_A_01": 797025, + "Guest_NV_Unicorn_AberrantGuard_A_01": 739851573, + "Guest_NV_Unicorn_Guard_C_02": 1845613, + "Guest_NV_Unicorn_Guard_C_03": 1845609, + "Guest_NV_Unicorn_AberrantGuard_A_02": 739848501, + "Guest_NV_Unicorn_Guard_A_02": 797037, + "Guest_NV_Unicorn_AberrantGuard_A_03": 739849525, + "Guest_NV_Unicorn_AberrantGuard_A_04": 739846453, + "Guest_NV_Horse_HordeOfficer_A_03": 75165536, + "Guest_NV_Horse_HordeSoldier_A_04": 907050144, + "Guest_NV_Horse_HordeSoldier_A_05": 1041267872, + "Guest_NV_Horse_HordeSoldier_C_01": 504388768, + "Guest_HG_TRAIN_Horse_MustangFencerF_A_Balance_50": 871182987, + "Guest_HG_TRAIN_Horse_MustangFencerF_A_Balance_75": 871176715, + "Guest_HG_TRAIN_Horse_MustangFencerF_A_Life_100": 886489645, + "Guest_HG_TRAIN_Horse_MustangFencerF_A_Balance_25": 871177035, + "Guest_HG_TRAIN_Horse_MustangFencerF_A_Balance_100": 872231819, + "Guest_HG_TRAIN_Horse_MustangFencerF_A_Life_140": 1960231469, + "Guest_HG_TRAIN_Horse_MustangFencerF_B_100": 2089957067, + "Guest_HG_TRAIN_Horse_MustangFencerF_A_Life_25": 1700184589, + "Guest_HG_TRAIN_Horse_MustangFencerF_A_Life_50": 920044045, + "Guest_HG_TRAIN_Horse_MustangFencerF_A_Life_75": 1742127629, + "Guest_HG_TRAIN_Horse_MustangFencerF_A_Balance_140": 872223627, + "Guest_HG_TRAIN_Horse_MustangFencerF_B_50": 2089952970, + "Guest_HG_TRAIN_Horse_MustangFencerF_B_75": 57530654, + "Guest_HG_TRAIN_Horse_MustangFencerF_B_140": 2089957099, + "Guest_HG_TRAIN_Horse_MustangFencerF_B_25": 1131272477, + "Guest_LM_Horse_Explorer_A_01_Hard": 1711837140, + "Guest_WL_Unicorn_Guard_A_01": 1074538935, + "Guest_WL_Unicorn_CorsairF_E_01": 1378532603, + "Guest_WL_Unicorn_Warlord_A_01": 1321310496, + "Guest_KH-Gray-Horse-1": 1802239547, + "Guest_KH-Gray-Horse-60": 1802231371, + "Guest_KH-Gray-Horse-80": 1802231467, + "Transformation_BG_NinjaPig_Ice": 186026527, + "Transformation_BG_Cyclops_Storm": 897316984, + "PP_MinotaurBalance": 1344665951, + "PP_OrthusMoon": 1804503950, + "PP_CoolPineapple": 1149318906, + "PP_TwinkleStars": 766378011, + "PP_Scroll": 1613313091, + "PP_Colossus_Death": 40713075, + "PP_ColossusDeath": 530964029, + "PP_KILiveRock": 1975550570, + "MNT_Outrigger": 1417937299, + "MNT_BookWyrm": 2080129190, + "MNT_RacingSnail": 1996220963, + "MNT_UmbrellaCloud": 145762615, + "PP_PropellerCat": 2094718580, + "MNT_TRex_Shirt": 586746001, + "MNT_Swarm_Bee": 1625228695, + "MNT__CelestialMoon": 968360256, + "Guest_ME_Sinbad_IronSultan_150": 2001676223, + "Guest_ME_Sinbad_Cyclops_150": 1968943689, + "Guest_ME_Sinbad_Skeleton_150": 1031490819, + "Guest_ME_Sinbad_Colossus_150": 1727675806, + "Guest_ME_Sinbad_Skeleton_150_02": 970505475, + "Guest_ME_Sinbad_Wyrm_150": 19314443, + "Guest_ZF-Zebra-Inzinzebu-Bandit-R11": 430262550, + "Guest_ZF-Zebra-Warrior-Male-R10-04": 1791906650, + "PP_TwinkleStars_02": 805304347, + "PP_TwinkleStars_03": 803207195, + "PP_TwinkleStars_01": 799012891, + "Transformation_BodleianHarrow": 609627870, + "Guest_HG_Gryphon_OwlStatue_A_01_L170": 77756046, + "Guest_HG_Gryphon_OwlStatue_A_02_L170": 73561742, + "Guest_HG_Gryphon_OwlStatue_A_01_L100": 77752974, + "Guest_HG_Gryphon_OwlStatue_A_02_L100": 73558670, + "Guest_HG_Gryphon_OwlStatue_A_01_L50": 78277134, + "Guest_HG_Gryphon_OwlStatue_A_02_L50": 74082830, + "MNT_SummerSOF2024_JudgementWings": 1078163967, + "MNT_Pegasus_E": 131704054, + "MNT_PolarisHero": 665176426, + "PP_Duckana": 1128961578, + "PP_QueenBee": 833291695, + "Transformation_BG_Draconian_Balance": 2078940682, + "Transformation_BG_WolfWarrior_Fire": 1762248682, + "Transformation_BG_Minotaur_Death": 309090657, + "PP_WolfWarrior_Fire": 685685256, + "PP_WolfWarrior_Death": 1857202724, + "Guest_ME-GTAV01-WyrmBoss-150": 1482208618, + "Guest_ME_SpectreOfB_L150": 684104791, + "Guest_ME_MD_MacDeath_L150": 1128977615, + "Guest_ME_Pig_BalanceWizardA_L150": 959913724, + "Guest_ME_Pig_BalanceWizardB_L150": 959913712, + "Guest_ME_Pig_BalanceWizardC_L150": 959913716, + "Guest_ME_Pig_FireWizard_L150": 964392255, + "Guest_ME_Pig_IceWizardF_L150": 86941026, + "Guest_ME_Pig_MythWizard_L150": 964051241, + "Guest_ME_Pig_StormWizardF_L150": 2016383602, + "Guest_ME_Clock_Clockworker_L150": 1424569772, + "Guest_ME_Clock_ClockworkSpanner_L150": 1966824609, + "Guest_ME_Clock_Lugs_L150": 370290904, + "Guest_ME_Clock_Lucia_L150": 1857768409, + "MNT_EvilChair": 339577702, + "PP_Cyclops_Storm": 621464512, + "PP_Krokomummy_Life": 462432735, + "Transformation_CL_Rematch_Crustacean": 1686865207, + "Transformation_CL_Rematch_Protector": 1893951532, + "Transformation_CL_Rematch_Angler": 120412196, + "Transformation_CL_Rematch_Piscean": 1624106070, + "Transformation_Zebra_Template": 1900548493, + "Transformation_Zebra2_Template": 325099540, + "Transformation_Zebra3_Template": 325099524, + "Transformation_Zebra4_Template": 325099636, + "MNT_SweetSixteenBirthday": 1009398096, + "MNT_2P_TRex_Bones": 1618543266, + "MNT_SpringBumperCar": 1725007788, + "PP_WinterGoblin": 2025052443, + "PP_OnyxAnubis": 1552575189, + "PP_OttomanCat": 223541582, + "MNT_HolidayYeti": 780983974, + "MNT_IceSled": 979912604, + "MNT_TurtleDoves": 1850191638, + "MNT_KrokChariot": 559783620, + "MNT_Mustang": 1775949401, + "MNT_PumpkinBall": 382849054, + "Transformation_BG_Fairy_Storm": 836920873, + "Transformation_BG_Elf_Myth": 1506493664, + "Transformation_NinjaPig_Life": 816802847, + "Transformation_BG_Krok_Fire": 1060580712, + "Transformation_BG_Colossus_Balance": 1067963041, + "Transformation_BG_NinjaPig_Life": 441460895, + "PP_Penguin_03": 1623028104, + "Transformation_Duck_Librarian_B": 864067551, + "Transformation_Duck_Librarian_A": 859873247, + "Transformation_Duck_Adventurer": 194560769, + "Transformation_Gummy_Bunny_C": 1298087941, + "Transformation_Frog_Horned_A": 837201339, + "Transformation_Glowbug_Storm": 2096380446, + "Transformation_Marshmallow_Critter_A": 1036335317, + "Transformation_Snipe_Base_B": 232132109, + "Transformation_Snowball": 915248481, + "Transformation_Wombat_Base": 333435450, + "Transformation_Human_Malistaire": 1414887773, + "Transformation_Morganthe_E": 1745180054, + "Transformation_Spider_Grandfather": 1131773979, + "Transformation_Khrulhu_Dasein_B": 367878762, + "Transformation_Devourer_Base": 698770016, + "Transformation_Alien_Meteor": 638746168, + "Transformation_Nightmare_Malus": 704212821, + "Transformation_Daemon_Personal": 278266463, + "PP_ValentinesDay": 810003364, + "PP_BabyHippo": 422858138, + "PP_Aardwold": 1592150119, + "PP_Aardwold_C": 1902528613, + "MNT_Cobra": 472847981, + "MNT_Serpopard": 1629558909, + "MNT_Serpopard_B": 1629556867, + "MNT_Serpopard_C": 1629556931, + "PP_Fairy_Fire": 1847789544, + "MNT_Mustang_B": 1448793691, + "PP_FireElfMyth": 1933609060, + "MNT_KT-BoatRide": 1560860110, + "MNT_ShadowMagic": 2095978357, + "MNT_MardiGrasFloat_A": 1740674432, + "PP_ChineseNYSnake": 988201940, + "MNT_AnubisDog": 1995079956, + "PP_ShadowImp_A": 1604849432, + "PP_ShadowImp_B": 1604849438, + "PP_ShadowImp_C": 1604849436, + "MNT_ShadowMagic_B": 2093870965, + "MNT_ShadowMagic_C": 2093805429, + "Guest_KT_SE_Tritops_Warrior_I_01": 97516901, + "Guest_KT_SE_DS_Draconian_Model_01": 1916095079, + "Guest_KT_SE_Beetle_Scarab_C_01_L50": 1064004307, + "Guest_KT_SE_Roach_Warrior_C_03": 1872574203, + "Guest_KT_SE_Roach_Warrior_C_04": 1871918843, + "Guest_KT_SE_Roach_Warrior_C_05": 1871787771, + "Guest_KT_SE_Beetle_Scarab_C_01": 1353410759, + "Guest_KT_SE_Mander_Citizen_B_01_L50": 2044509396, + "Guest_KT_SE_Mander_CitizenF_B_01_L50": 164327682, + "Guest_KT_SE_Treant_Tormented_A_01": 1359800879, + "Guest_KT_SE_Treant_Base_A_01": 765512948, + "Guest_KT_SE_Mander_Citizen_F_D_05": 171244620, + "Guest_KT_SE_Mander_CitizenF_D_01": 163791037, + "Guest_KT_SE_Mander_CitizenF_D_02": 298008765, + "Guest_KT_SE_Mander_CitizenF_D_03": 432226493, + "Guest_KT_SE_Mander_CitizenF_D_04": 566444221, + "Guest_KT_SE_Mander_MummyF_A_01": 964349080, + "Guest_KT_SE_Mander_MummyF_A_02": 964480152, + "Guest_KT_SE_MC_Wraith_Model_01": 1101442118, + "Guest_KT_SE_Mander_CitizenF_B_02": 298000573, + "MNT_Wheelbarrow": 614248817, + "MNT_StubbornLlama": 221089074 } }, - "m_spellTemplateID": { - "type": "unsigned int", - "id": 11, - "offset": 120, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 585567702 - }, - "m_enchantmentSpellTemplateID": { - "type": "unsigned int", - "id": 12, - "offset": 124, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 246955115 - }, - "m_act": { - "type": "bool", - "id": 13, - "offset": 136, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 269510283 - }, - "m_cloaked": { - "type": "bool", - "id": 14, - "offset": 157, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 7349510 - }, - "m_bypassProtection": { - "type": "bool", - "id": 15, - "offset": 159, - "flags": 31, + "m_afterCombatDance": { + "type": "unsigned char", + "id": 19, + "offset": 184, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1657138252 + "hash": 2012714323 }, - "m_armorPiercingParam": { - "type": "int", - "id": 16, - "offset": 160, - "flags": 31, + "m_nSkinDecal2": { + "type": "unsigned short", + "id": 20, + "offset": 192, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2025530205 + "hash": 1904828726 }, - "m_chancePerTarget": { - "type": "int", - "id": 17, - "offset": 164, - "flags": 31, + "m_extendedHairColor": { + "type": "unsigned char", + "id": 21, + "offset": 194, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 845426794 + "hash": 1534273092 }, - "m_protected": { - "type": "bool", - "id": 18, - "offset": 168, - "flags": 31, + "m_extendedSkinDecal": { + "type": "unsigned short", + "id": 22, + "offset": 196, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1445655037 + "hash": 2299798727 }, - "m_converted": { - "type": "bool", - "id": 19, - "offset": 169, - "flags": 31, + "m_newPlayerOptions": { + "type": "unsigned int", + "id": 23, + "offset": 200, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1590428797 + "hash": 1564037328 }, - "m_rank": { - "type": "int", - "id": 20, - "offset": 208, - "flags": 7, + "m_newPlayerOptions2": { + "type": "unsigned int", + "id": 24, + "offset": 204, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 219803942 + "hash": 1895849858 }, - "m_effectList": { - "type": "class SharedPointer", - "id": 21, - "offset": 224, - "flags": 7, - "container": "List", - "dynamic": true, + "m_afterCombatVictoryDance": { + "type": "unsigned int", + "id": 25, + "offset": 188, + "flags": 31, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 707154804 + "pointer": false, + "hash": 1655464256 } } }, - "763901006": { - "name": "class SharedPointer", + "211113118": { + "name": "class TestControlTableWindow", "bases": [ - "GameEffectBase", + "Window", "PropertyClass" ], - "hash": 763901006, + "hash": 211113118, "properties": { - "m_currentTickCount": { - "type": "double", + "m_sName": { + "type": "std::string", "id": 0, "offset": 80, - "flags": 63, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2533274692 + "hash": 2306437263 }, - "m_effectNameID": { - "type": "unsigned int", + "m_Children": { + "type": "class SharedPointer", "id": 1, - "offset": 96, - "flags": 63, - "container": "Static", - "dynamic": false, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 1204067144 + "pointer": true, + "hash": 2621225959 }, - "m_bIsOnPet": { - "type": "bool", + "m_Style": { + "type": "unsigned int", "id": 2, - "offset": 73, - "flags": 31, + "offset": 152, + "flags": 1048583, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 522593303 + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "SCALE_CHILDREN": 2, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "FOCUS_LOCKED": 64, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152 + } }, - "m_originatorID": { - "type": "gid", + "m_Flags": { + "type": "unsigned int", "id": 3, - "offset": 104, - "flags": 39, + "offset": 156, + "flags": 1048583, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1131810019 + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } }, - "m_itemSlotID": { - "type": "unsigned int", + "m_Window": { + "type": "class Rect", "id": 4, - "offset": 112, - "flags": 63, + "offset": 160, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1895747595 + "hash": 3105139380 }, - "m_internalID": { - "type": "int", + "m_fTargetAlpha": { + "type": "float", "id": 5, - "offset": 92, - "flags": 63, + "offset": 212, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1643137924 + "hash": 1809129834 }, - "m_endTime": { - "type": "unsigned int", + "m_fDisabledAlpha": { + "type": "float", "id": 6, - "offset": 88, - "flags": 31, + "offset": 216, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 716479635 + "hash": 1389987675 }, - "m_spellName": { - "type": "std::string", + "m_fAlpha": { + "type": "float", "id": 7, - "offset": 128, - "flags": 31, + "offset": 208, + "flags": 65671, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2688485244 + "hash": 482130755 }, - "m_numSpells": { - "type": "int", + "m_pWindowStyle": { + "type": "class SharedPointer", "id": 8, - "offset": 160, - "flags": 31, + "offset": 232, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1269498237 + "pointer": true, + "hash": 3623628394 }, - "m_vFX": { - "type": "std::string", + "m_sHelp": { + "type": "std::wstring", "id": 9, - "offset": 168, - "flags": 31, + "offset": 248, + "flags": 4194439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1764750607 + "hash": 2102211316 }, - "m_vFXOverride": { - "type": "bool", + "m_sScript": { + "type": "std::string", "id": 10, - "offset": 200, - "flags": 31, + "offset": 352, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1491092359 + "hash": 1846695875 }, - "m_sound": { - "type": "std::string", + "m_Offset": { + "type": "class Point", "id": 11, - "offset": 208, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2307644996 - } - } - }, - "346378941": { - "name": "enum CombatResult::kResultType", - "bases": [], - "hash": 346378941, - "properties": {} - }, - "1123517181": { - "name": "class ProxyMesh*", - "bases": [ - "ProxyGeometry", - "PropertyClass" - ], - "hash": 1123517181, - "properties": { - "m_sName": { - "type": "std::string", - "id": 0, - "offset": 88, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306437263 - }, - "m_baseOrientation": { - "type": "class Matrix3x3", - "id": 1, - "offset": 176, - "flags": 7, + "offset": 192, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1692424809 + "hash": 3389835433 }, - "m_basePosition": { - "type": "class Vector3D", - "id": 2, - "offset": 224, - "flags": 7, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1912112658 + "hash": 2547159940 }, - "m_fCurrentScale": { - "type": "float", - "id": 3, - "offset": 236, - "flags": 7, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 234778792 + "hash": 1513510520 }, - "m_surfaceType": { - "type": "std::string", - "id": 4, - "offset": 280, - "flags": 7, - "container": "Static", - "dynamic": false, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 2553995974 + "hash": 2587533771 }, - "m_pInitialParams": { - "type": "class SharedPointer", - "id": 5, - "offset": 240, - "flags": 7, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1000009870 - }, - "m_verts": { - "type": "struct SimpleVert", - "id": 6, - "offset": 368, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1433503234 - }, - "m_faces": { - "type": "struct SimpleFace", - "id": 7, - "offset": 320, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1413288912 - }, - "m_normals": { - "type": "struct SimpleVert", - "id": 8, - "offset": 344, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, "pointer": false, - "hash": 2067861162 + "hash": 3091503757 } } }, - "345731282": { - "name": "class SharedPointer", + "1496968148": { + "name": "class ClientBattleBookBehavior*", "bases": [ - "CombatRule", + "BattleBookBehavior", + "BehaviorInstance", "PropertyClass" ], - "hash": 345731282, + "hash": 1496968148, "properties": { - "m_resistLimit": { - "type": "float", + "m_behaviorTemplateNameID": { + "type": "unsigned int", "id": 0, - "offset": 72, - "flags": 31, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1192834544 + "hash": 223437287 }, - "m_rK0": { - "type": "float", + "m_spellList": { + "type": "class SharedPointer", "id": 1, - "offset": 76, - "flags": 31, - "container": "Static", - "dynamic": false, + "offset": 120, + "flags": 27, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 357247908 + "pointer": true, + "hash": 2181913740 }, - "m_rN0": { - "type": "float", + "m_rating": { + "type": "class SharedPointer", "id": 2, - "offset": 80, - "flags": 31, + "offset": 136, + "flags": 27, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 357248007 + "pointer": true, + "hash": 2464459535 } } }, - "1913980578": { - "name": "class WinAnimSpriteContrast*", + "637939831": { + "name": "class SharedPointer", "bases": [ - "WindowAnimation", "PropertyClass" ], - "hash": 1913980578, - "properties": { - "m_bUseDeepCopy": { - "type": "bool", - "id": 0, - "offset": 72, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 433380635 - }, - "m_fCycleTime": { - "type": "float", - "id": 1, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1056288476 - }, - "m_fElapsedTime": { - "type": "float", - "id": 2, - "offset": 84, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1862647402 - }, - "m_fContrastMax": { - "type": "float", - "id": 3, - "offset": 88, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 915848113 - } - } + "hash": 637939831, + "properties": {} }, - "454963492": { - "name": "class PetActorResults*", + "1924277879": { + "name": "class InstanceInfo*", "bases": [ - "MatchActorResult", "PropertyClass" ], - "hash": 454963492, + "hash": 1924277879, "properties": { - "m_pActor": { - "type": "class SharedPointer", + "m_sZoneName": { + "type": "std::string", "id": 0, "offset": 72, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1115051967 - }, - "m_place": { - "type": "int", - "id": 1, - "offset": 88, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 806257663 - }, - "m_ratingGained": { - "type": "int", - "id": 2, - "offset": 92, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1426436071 - }, - "m_arenaPoints": { - "type": "int", - "id": 3, - "offset": 96, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 511478910 - }, - "m_pvpCurrency": { - "type": "int", - "id": 4, - "offset": 100, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, "pointer": false, - "hash": 611304283 + "hash": 3632841067 }, - "m_pvpTourneyCurrency": { + "m_nInstanceID": { "type": "int", - "id": 5, + "id": 1, "offset": 104, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1184787505 - }, - "m_gold": { - "type": "int", - "id": 6, - "offset": 108, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 219423808 + "hash": 1380862506 }, - "m_gameResult": { - "type": "unsigned char", - "id": 7, + "m_nZoneID": { + "type": "gid", + "id": 2, "offset": 112, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1417654793 - }, - "m_nFinishTime": { - "type": "unsigned int", - "id": 8, - "offset": 120, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1238925387 - }, - "m_nIndex": { - "type": "unsigned int", - "id": 9, - "offset": 124, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 925961299 + "hash": 622120303 } } }, - "398244357": { - "name": "class GraphicalSpell", + "210944601": { + "name": "class SharedPointer", "bases": [ - "Spell", + "GamebryoBody", + "Body", "PropertyClass" ], - "hash": 398244357, + "hash": 210944601, "properties": { - "m_templateID": { - "type": "unsigned int", + "m_position": { + "type": "class Vector3D", "id": 0, - "offset": 128, - "flags": 31, + "offset": 88, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1286746870 + "hash": 3697900983 }, - "m_enchantment": { - "type": "unsigned int", + "m_pitch": { + "type": "float", "id": 1, - "offset": 80, - "flags": 31, + "offset": 100, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2217886818 + "hash": 896371695 }, - "m_pipCost": { - "type": "class SharedPointer", + "m_roll": { + "type": "float", "id": 2, - "offset": 176, + "offset": 104, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3605704820 - }, - "m_regularAdjust": { - "type": "int", - "id": 3, - "offset": 192, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, "pointer": false, - "hash": 1420453335 + "hash": 310020272 }, - "m_magicSchoolID": { - "type": "unsigned int", - "id": 4, - "offset": 136, + "m_yaw": { + "type": "float", + "id": 3, + "offset": 108, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 893146499 + "hash": 357256328 }, - "m_accuracy": { - "type": "unsigned char", - "id": 5, + "m_fHeight": { + "type": "float", + "id": 4, "offset": 132, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2273914939 - }, - "m_treasureCard": { - "type": "bool", - "id": 6, - "offset": 197, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1764879128 - }, - "m_battleCard": { - "type": "bool", - "id": 7, - "offset": 198, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1332843753 - }, - "m_itemCard": { - "type": "bool", - "id": 8, - "offset": 199, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1683654300 - }, - "m_sideBoard": { - "type": "bool", - "id": 9, - "offset": 200, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1897838368 - }, - "m_spellID": { - "type": "unsigned int", - "id": 10, - "offset": 204, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1697483258 - }, - "m_leavesPlayWhenCastOverride": { - "type": "bool", - "id": 11, - "offset": 216, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 874407398 - }, - "m_cloaked": { - "type": "bool", - "id": 12, - "offset": 196, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 7349510 - }, - "m_enchantmentSpellIsItemCard": { - "type": "bool", - "id": 13, - "offset": 76, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 531590701 + "hash": 401539638 }, - "m_premutationSpellID": { - "type": "unsigned int", - "id": 14, + "m_scale": { + "type": "float", + "id": 5, "offset": 112, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1530256370 - }, - "m_enchantedThisCombat": { - "type": "bool", - "id": 15, - "offset": 77, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1895738923 - }, - "m_paramOverrides": { - "type": "class SharedPointer", - "id": 16, - "offset": 224, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2061635599 - }, - "m_subEffectMeta": { - "type": "class SharedPointer", - "id": 17, - "offset": 240, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1944101106 - }, - "m_delayEnchantment": { - "type": "bool", - "id": 18, - "offset": 257, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 191336919 - }, - "m_PvE": { - "type": "bool", - "id": 19, - "offset": 264, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 269492350 - }, - "m_delayEnchantmentOrder": { - "type": "enum SpellEffect::kDelayOrder", - "id": 20, - "offset": 72, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2526055263, - "enum_options": { - "SpellEffect::kAnyOrder": 0, - "SpellEffect::kFirst": 1, - "SpellEffect::kSecond": 2 - } - }, - "m_roundAddedTC": { - "type": "int", - "id": 21, - "offset": 260, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 112365451 - }, - "m_secondarySchoolID": { - "type": "unsigned int", - "id": 22, - "offset": 304, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2081206026 + "hash": 899693439 } } }, - "764236905": { - "name": "class CastleBlocksBehaviorTemplate", + "1068788274": { + "name": "class SharedPointer", "bases": [ - "BehaviorTemplate", + "GeomParams", "PropertyClass" ], - "hash": 764236905, + "hash": 1068788274, "properties": { - "m_behaviorName": { - "type": "std::string", + "m_eType": { + "type": "enum ProxyType", "id": 0, "offset": 72, - "flags": 7, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3130754092 + "hash": 1656534066, + "enum_options": { + "ProxyTypeBox": 0, + "ProxyTypeRay": 1, + "ProxyTypeSphere": 2, + "ProxyTypeCylinder": 3, + "ProxyTypeTube": 4, + "ProxyTypePlane": 5, + "ProxyTypeMesh": 6, + "ProxyTypeInvalid": 7 + } }, - "m_providesFloor": { - "type": "int", + "m_fLength": { + "type": "float", "id": 1, - "offset": 120, + "offset": 80, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1381462216 + "hash": 558261279 }, - "m_placedOnFloorTemplateID": { - "type": "unsigned int", + "m_fWidth": { + "type": "float", "id": 2, - "offset": 124, - "flags": 33554439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 349311070 - }, - "m_pickedupFromFloorTemplateID": { - "type": "unsigned int", - "id": 3, - "offset": 128, - "flags": 33554439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1208761121 - }, - "m_hasFadeableCeiling": { - "type": "int", - "id": 4, - "offset": 132, + "offset": 84, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2119980373 + "hash": 508100541 }, - "m_dontFadeCeiling": { - "type": "int", - "id": 5, - "offset": 136, + "m_fDepth": { + "type": "float", + "id": 3, + "offset": 88, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 373748538 + "hash": 485437362 } } }, - "1123537661": { - "name": "class ProxyMesh", + "1924058956": { + "name": "class SharedPointer", "bases": [ - "ProxyGeometry", + "BehaviorInstance", "PropertyClass" ], - "hash": 1123537661, + "hash": 1924058956, "properties": { - "m_sName": { - "type": "std::string", + "m_behaviorTemplateNameID": { + "type": "unsigned int", "id": 0, - "offset": 88, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306437263 - }, - "m_baseOrientation": { - "type": "class Matrix3x3", - "id": 1, - "offset": 176, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1692424809 - }, - "m_basePosition": { - "type": "class Vector3D", - "id": 2, - "offset": 224, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1912112658 - }, - "m_fCurrentScale": { - "type": "float", - "id": 3, - "offset": 236, - "flags": 7, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 234778792 + "hash": 223437287 }, - "m_surfaceType": { + "m_radialMenuData": { "type": "std::string", - "id": 4, - "offset": 280, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2553995974 - }, - "m_pInitialParams": { - "type": "class SharedPointer", - "id": 5, - "offset": 240, - "flags": 7, + "id": 1, + "offset": 128, + "flags": 575, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1000009870 - }, - "m_verts": { - "type": "struct SimpleVert", - "id": 6, - "offset": 368, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1433503234 - }, - "m_faces": { - "type": "struct SimpleFace", - "id": 7, - "offset": 320, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1413288912 - }, - "m_normals": { - "type": "struct SimpleVert", - "id": 8, - "offset": 344, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, "pointer": false, - "hash": 2067861162 + "hash": 3438486999 } } }, - "1914767513": { - "name": "class ReqHasBadge", + "1068709043": { + "name": "class SharedPointer", "bases": [ "Requirement", "PropertyClass" ], - "hash": 1914767513, + "hash": 1068709043, "properties": { "m_applyNOT": { "type": "bool", @@ -408112,538 +75827,306 @@ "ROP_OR": 1, "__DEFAULT": "ROP_AND" } - }, - "m_badgeName": { - "type": "std::string", - "id": 2, - "offset": 80, - "flags": 268435487, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3002948047, - "enum_options": { - "__BASECLASS": "BadgeTemplate" - } } } }, - "397071299": { - "name": "class InteractableOption*", + "1923996038": { + "name": "class SharedPointer", "bases": [ - "ServiceOptionBase", + "PetTalentControlBase", + "Window", "PropertyClass" ], - "hash": 397071299, + "hash": 1923996038, "properties": { - "m_serviceName": { + "m_sName": { "type": "std::string", "id": 0, - "offset": 72, - "flags": 31, + "offset": 80, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2206028813 + "hash": 2306437263 }, - "m_iconKey": { - "type": "std::string", + "m_Children": { + "type": "class SharedPointer", "id": 1, - "offset": 168, - "flags": 31, - "container": "Static", - "dynamic": false, + "offset": 112, + "flags": 65667, + "container": "Vector", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 2457138637 + "pointer": true, + "hash": 2621225959 }, - "m_displayKey": { - "type": "std::string", + "m_Style": { + "type": "unsigned int", "id": 2, - "offset": 104, - "flags": 31, + "offset": 152, + "flags": 1048583, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3023276954 + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "SCALE_CHILDREN": 2, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "FOCUS_LOCKED": 64, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152 + } }, - "m_serviceIndex": { + "m_Flags": { "type": "unsigned int", "id": 3, - "offset": 204, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2103126710 - }, - "m_forceInteract": { - "type": "bool", - "id": 4, - "offset": 200, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1705789564 - }, - "m_optionIndex": { - "type": "int", - "id": 5, - "offset": 216, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 276287019 - } - } - }, - "767807694": { - "name": "class EffectCinematicAction*", - "bases": [ - "BaseEffectCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 767807694, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_effectRel": { - "type": "enum BaseEffectCinematicAction::kEffectRelative", - "id": 1, - "offset": 80, - "flags": 2097159, + "offset": 156, + "flags": 1048583, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2978921287, + "hash": 967851578, "enum_options": { - "kNone": 0, - "kSigil": 1, - "kTarget": 2, - "kSource": 3, - "kActor": 4 + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 } }, - "m_graphic": { - "type": "std::string", - "id": 2, - "offset": 88, - "flags": 131079, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2592217913 - }, - "m_bUseOrientationOverride": { - "type": "bool", - "id": 3, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1088002894 - }, - "m_overrideOrientation": { - "type": "class Vector3D", + "m_Window": { + "type": "class Rect", "id": 4, - "offset": 124, - "flags": 7, + "offset": 160, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3267199758 + "hash": 3105139380 }, - "m_bUseLocationOverride": { - "type": "bool", + "m_fTargetAlpha": { + "type": "float", "id": 5, - "offset": 104, - "flags": 7, + "offset": 212, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1767170875 + "hash": 1809129834 }, - "m_overrideLocation": { - "type": "class Vector3D", + "m_fDisabledAlpha": { + "type": "float", "id": 6, - "offset": 108, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3776417691 - } - } - }, - "1123935460": { - "name": "class TournamentInfoRequest*", - "bases": [ - "PropertyClass" - ], - "hash": 1123935460, - "properties": { - "m_tournamentNameID": { - "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1799846440 - }, - "m_leagueID": { - "type": "unsigned int", - "id": 1, - "offset": 76, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 692361645 - }, - "m_seasonID": { - "type": "unsigned int", - "id": 2, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 535260643 - }, - "m_characterID": { - "type": "gid", - "id": 3, - "offset": 88, - "flags": 31, + "offset": 216, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 210498386 + "hash": 1389987675 }, - "m_bracketID": { - "type": "gid", - "id": 4, - "offset": 96, - "flags": 31, + "m_fAlpha": { + "type": "float", + "id": 7, + "offset": 208, + "flags": 65671, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 441272961 + "hash": 482130755 }, - "m_bracketIDList": { - "type": "class SharedPointer", - "id": 5, - "offset": 152, - "flags": 31, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": true, - "hash": 3367716172 + "hash": 3623628394 }, - "m_tournamentRequestType": { - "type": "unsigned int", - "id": 6, - "offset": 104, - "flags": 31, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 874052549 + "hash": 2102211316 }, - "m_startingIndex": { - "type": "int", - "id": 7, - "offset": 108, - "flags": 31, + "m_sScript": { + "type": "std::string", + "id": 10, + "offset": 352, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2126940894 + "hash": 1846695875 }, - "m_numberOfElements": { - "type": "int", - "id": 8, - "offset": 112, - "flags": 31, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 790678773 + "hash": 3389835433 }, - "m_friendListBuffer": { - "type": "std::string", - "id": 9, - "offset": 120, - "flags": 31, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2271699753 + "hash": 2547159940 }, - "m_qualifiedOnly": { - "type": "bool", - "id": 10, - "offset": 168, - "flags": 31, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 789459241 + "hash": 1513510520 }, - "m_qualifiedLevel": { - "type": "unsigned int", - "id": 11, - "offset": 172, - "flags": 31, - "container": "Static", - "dynamic": false, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 405173305 + "hash": 2587533771 }, - "m_qualifiedRank": { - "type": "int", - "id": 12, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, "offset": 176, - "flags": 31, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 787071770 + "hash": 3091503757 } } }, - "373549969": { - "name": "class HideShadowCreatureCinematicAction", + "1512289648": { + "name": "class SharedPointer", "bases": [ - "ActorCinematicAction", - "CinematicAction", + "ServiceOptionBase", "PropertyClass" ], - "hash": 373549969, + "hash": 1512289648, "properties": { - "m_timeOffset": { - "type": "float", + "m_serviceName": { + "type": "std::string", "id": 0, "offset": 72, - "flags": 7, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 + "hash": 2206028813 }, - "m_actor": { + "m_iconKey": { "type": "std::string", "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - } - } - }, - "764671602": { - "name": "class GamebryoClientLeashBehavior*", - "bases": [ - "ClientLeashBehavior", - "LeashBehavior", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 764671602, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_ownerGid": { - "type": "gid", - "id": 1, - "offset": 128, + "offset": 168, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1765088663 + "hash": 2457138637 }, - "m_radius": { - "type": "float", + "m_displayKey": { + "type": "std::string", "id": 2, - "offset": 136, + "offset": 104, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 989410271 + "hash": 3023276954 }, - "m_angle": { - "type": "float", + "m_serviceIndex": { + "type": "unsigned int", "id": 3, - "offset": 140, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 878748702 - }, - "m_leashType": { - "type": "enum LeashType", - "id": 4, - "offset": 144, + "offset": 204, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2170708051, - "enum_options": { - "LLT_Rigid": 0, - "LLT_Elastic": 1 - } + "hash": 2103126710 }, - "m_alwaysDisplay": { + "m_forceInteract": { "type": "bool", - "id": 5, - "offset": 161, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2071781402 - } - } - }, - "1915886495": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1915886495, - "properties": { - "m_stateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2039264668 - } - } - }, - "367308357": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 367308357, - "properties": { - "m_name": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1717359772 - }, - "m_statID": { - "type": "unsigned int", - "id": 1, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1172182134 - }, - "m_value": { - "type": "int", - "id": 2, - "offset": 108, + "id": 4, + "offset": 200, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 812990455 + "hash": 1705789564 } } }, - "764405530": { - "name": "class std::list >", - "bases": [], - "hash": 764405530, - "properties": {} - }, - "1124173123": { - "name": "class SharedPointer", + "638512673": { + "name": "class RentalBehaviorTemplate*", "bases": [ - "Result", + "TimedItemBehaviorTemplate", + "BehaviorTemplate", "PropertyClass" ], - "hash": 1124173123, + "hash": 638512673, "properties": { - "m_script": { + "m_behaviorName": { "type": "std::string", "id": 0, "offset": 72, @@ -408652,67 +76135,54 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 2438918928 + "hash": 3130754092 }, - "m_startEvent": { + "m_expireTime": { "type": "std::string", "id": 1, - "offset": 104, + "offset": 128, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2150353611 + "hash": 3122602039 }, - "m_endEvent": { - "type": "std::string", + "m_timerType": { + "type": "enum TimerType", "id": 2, - "offset": 136, - "flags": 7, + "offset": 120, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3112700596 - } - } - }, - "360329950": { - "name": "class BehaviorTemplate*", - "bases": [ - "PropertyClass" - ], - "hash": 360329950, - "properties": { - "m_behaviorName": { + "hash": 571744132, + "enum_options": { + "TimerType_Game": 0, + "TimerType_Calendar": 1 + } + }, + "m_typeList": { "type": "std::string", - "id": 0, - "offset": 72, + "id": 3, + "offset": 160, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 3130754092 + "hash": 2119049625 } } }, - "764330343": { - "name": "class AutobotMobAvoidance", - "bases": [ - "PropertyClass" - ], - "hash": 764330343, - "properties": {} - }, - "352834858": { - "name": "class SharedPointer", + "211154078": { + "name": "class TestControlTableWindow*", "bases": [ "Window", "PropertyClass" ], - "hash": 352834858, + "hash": 211154078, "properties": { "m_sName": { "type": "std::string", @@ -408748,7 +76218,11 @@ "hash": 983582334, "enum_options": { "HAS_BACK": 1, + "SCALE_CHILDREN": 2, "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "FOCUS_LOCKED": 64, "CAN_FOCUS": 128, "CAN_DOCK": 32, "DO_NOT_CAPTURE_MOUSE": 256, @@ -408760,10 +76234,7 @@ "USE_ALPHA_BOUNDS": 8192, "AUTO_GROW": 16384, "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152, - "CAN_SIZE_HORIZONTALLY": 16777216, - "CAN_SIZE_VERTICALLY": 33554432, - "CAN_SIZE_WIDGET": 50331648 + "AUTO_RESIZE": 49152 } }, "m_Flags": { @@ -408923,148 +76394,183 @@ "singleton": false, "pointer": false, "hash": 3091503757 - }, - "m_pWidgetBackground": { - "type": "class SharedPointer", - "id": 16, - "offset": 584, - "flags": 135, - "container": "Static", - "dynamic": false, + } + } + }, + "1507679318": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1507679318, + "properties": { + "m_serviceOptions": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 31, + "container": "List", + "dynamic": true, "singleton": false, "pointer": true, - "hash": 1642222607 + "hash": 2340755721 }, - "m_pTopLeftCornerMaterial": { - "type": "class SharedPointer", - "id": 17, - "offset": 600, - "flags": 135, + "m_personaMadlibs": { + "type": "class SharedPointer", + "id": 1, + "offset": 96, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": true, - "hash": 2210830717 + "hash": 2418856780 }, - "m_pTopRightCornerMaterial": { - "type": "class SharedPointer", - "id": 18, - "offset": 616, - "flags": 135, + "m_npcNameKey": { + "type": "std::string", + "id": 2, + "offset": 112, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2025381456 + "pointer": false, + "hash": 1976589766 }, - "m_pBottomLeftCornerMaterial": { - "type": "class SharedPointer", - "id": 19, - "offset": 632, - "flags": 135, + "m_npcTextKey": { + "type": "std::string", + "id": 3, + "offset": 144, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2960442335 + "pointer": false, + "hash": 3453072394 }, - "m_pBottomRightCornerMaterial": { - "type": "class SharedPointer", - "id": 20, - "offset": 648, - "flags": 135, + "m_npcIcon": { + "type": "std::string", + "id": 4, + "offset": 176, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3140244722 + "pointer": false, + "hash": 2965253381 }, - "m_pBottomEdgeMaterial": { - "type": "class SharedPointer", - "id": 21, - "offset": 664, - "flags": 135, + "m_npcGreetingSound": { + "type": "std::string", + "id": 5, + "offset": 208, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2538880672 + "pointer": false, + "hash": 1826980602 }, - "m_pTopEdgeMaterial": { - "type": "class SharedPointer", - "id": 22, - "offset": 680, - "flags": 135, + "m_npcFarewellSound": { + "type": "std::string", + "id": 6, + "offset": 240, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2522199486 + "pointer": false, + "hash": 3241528183 }, - "m_pLeftEdgeMaterial": { - "type": "class SharedPointer", - "id": 23, - "offset": 696, - "flags": 135, + "m_bTurnPlayerToFace": { + "type": "bool", + "id": 7, + "offset": 272, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3154051542 + "pointer": false, + "hash": 540096893 }, - "m_pRightEdgeMaterial": { - "type": "class SharedPointer", - "id": 24, - "offset": 712, - "flags": 135, + "m_clickToInteractOnly": { + "type": "bool", + "id": 8, + "offset": 273, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2818320265 - }, - "m_pCenterMaterial": { - "type": "class SharedPointer", - "id": 25, - "offset": 728, - "flags": 135, + "pointer": false, + "hash": 1696440536 + } + } + }, + "638471713": { + "name": "class RentalBehaviorTemplate", + "bases": [ + "TimedItemBehaviorTemplate", + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 638471713, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1519560055 + "pointer": false, + "hash": 3130754092 }, - "m_MaximumSize": { - "type": "class Size", - "id": 26, - "offset": 744, - "flags": 135, + "m_expireTime": { + "type": "std::string", + "id": 1, + "offset": 128, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1781954165 + "hash": 3122602039 }, - "m_MinimumSize": { - "type": "class Size", - "id": 27, - "offset": 752, - "flags": 135, + "m_timerType": { + "type": "enum TimerType", + "id": 2, + "offset": 120, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2108593523 + "hash": 571744132, + "enum_options": { + "TimerType_Game": 0, + "TimerType_Calendar": 1 + } + }, + "m_typeList": { + "type": "std::string", + "id": 3, + "offset": 160, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2119049625 } } }, - "1923422179": { - "name": "class WhirlyBurlyOption*", + "1504129576": { + "name": "class WizShoppingOption*", "bases": [ "ServiceOptionBase", "PropertyClass" ], - "hash": 1923422179, + "hash": 1504129576, "properties": { "m_serviceName": { "type": "std::string", @@ -409075,1235 +76581,1204 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 2206028813 + "hash": 2206028813 + }, + "m_iconKey": { + "type": "std::string", + "id": 1, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2457138637 + }, + "m_displayKey": { + "type": "std::string", + "id": 2, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3023276954 + }, + "m_serviceIndex": { + "type": "unsigned int", + "id": 3, + "offset": 204, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2103126710 + }, + "m_forceInteract": { + "type": "bool", + "id": 4, + "offset": 200, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1705789564 + } + } + }, + "1924143511": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1924143511, + "properties": { + "m_levelInfo": { + "type": "class FishingLevelInfo*", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 4227148014 + }, + "m_maxLevel": { + "type": "unsigned char", + "id": 1, + "offset": 88, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 783962734 + } + } + }, + "1068918295": { + "name": "class CoreTemplate", + "bases": [ + "PropertyClass" + ], + "hash": 1068918295, + "properties": { + "m_behaviors": { + "type": "class BehaviorTemplate*", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1197808594 + } + } + }, + "1502144961": { + "name": "class NPCDialogEntry", + "bases": [ + "ActorDialogEntry", + "PropertyClass" + ], + "hash": 1502144961, + "properties": { + "m_requirements": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 263, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3043523229 + }, + "m_dialog": { + "type": "std::string", + "id": 1, + "offset": 88, + "flags": 8388639, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1858395851 + }, + "m_picture": { + "type": "std::string", + "id": 2, + "offset": 120, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3128322903 + }, + "m_soundFile": { + "type": "std::string", + "id": 3, + "offset": 152, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2276870852 + }, + "m_action": { + "type": "std::string", + "id": 4, + "offset": 184, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1734553689 + }, + "m_dialogEvent": { + "type": "std::string", + "id": 5, + "offset": 216, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2707957549 + }, + "m_actorTemplateID": { + "type": "unsigned int", + "id": 6, + "offset": 248, + "flags": 33554463, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2134265679 + }, + "m_cameraName": { + "type": "std::string", + "id": 7, + "offset": 256, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3252786917 + }, + "m_interpolationDuration": { + "type": "float", + "id": 8, + "offset": 312, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1458058437, + "enum_options": { + "__DEFAULT": "1.0" + } }, - "m_iconKey": { - "type": "std::string", - "id": 1, - "offset": 168, + "m_cameraOffsetX": { + "type": "float", + "id": 9, + "offset": 288, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2457138637 + "hash": 1515912895 }, - "m_displayKey": { - "type": "std::string", - "id": 2, - "offset": 104, + "m_cameraOffsetY": { + "type": "float", + "id": 10, + "offset": 292, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3023276954 + "hash": 1515912896 }, - "m_serviceIndex": { - "type": "unsigned int", - "id": 3, - "offset": 204, + "m_cameraOffsetZ": { + "type": "float", + "id": 11, + "offset": 296, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2103126710 + "hash": 1515912897 }, - "m_forceInteract": { - "type": "bool", - "id": 4, - "offset": 200, + "m_pitch": { + "type": "float", + "id": 12, + "offset": 304, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1705789564 - } - } - }, - "349166424": { - "name": "class SharedPointer", - "bases": [ - "ServiceOptionBase", - "PropertyClass" - ], - "hash": 349166424, - "properties": { - "m_serviceName": { - "type": "std::string", - "id": 0, - "offset": 72, + "hash": 896371695 + }, + "m_yaw": { + "type": "float", + "id": 13, + "offset": 300, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2206028813 + "hash": 357256328 }, - "m_iconKey": { - "type": "std::string", - "id": 1, - "offset": 168, + "m_roll": { + "type": "float", + "id": 14, + "offset": 308, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2457138637 + "hash": 310020272 }, - "m_displayKey": { + "m_cameraShakeType": { "type": "std::string", - "id": 2, - "offset": 104, + "id": 15, + "offset": 320, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3023276954 + "hash": 1754128882, + "enum_options": { + "": 0, + "Constant": "Constant", + "Quake": "Quake", + "Thud": "Thud", + "End": "End", + "__DEFAULT": 0 + } }, - "m_serviceIndex": { - "type": "unsigned int", - "id": 3, - "offset": 204, + "m_cameraShakeDuration": { + "type": "float", + "id": 16, + "offset": 352, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2103126710 + "hash": 316581010, + "enum_options": { + "__DEFAULT": "0.0" + } }, - "m_forceInteract": { - "type": "bool", - "id": 4, - "offset": 200, + "m_cameraShakeAmplitude": { + "type": "float", + "id": 17, + "offset": 356, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1705789564 - } - } - }, - "1126041407": { - "name": "class FreeCamController", - "bases": [ - "CameraController", - "PropertyClass" - ], - "hash": 1126041407, - "properties": {} - }, - "1919200887": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1919200887, - "properties": { - "m_accessPassName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 268435463, + "hash": 2179718321, + "enum_options": { + "__DEFAULT": "0.0" + } + }, + "m_bypassCameraOnReview": { + "type": "bool", + "id": 18, + "offset": 360, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3398704837, + "hash": 1412905725, "enum_options": { - "__BASECLASS": "AccessPass" + "__DEFAULT": 1 } }, - "m_zoneDisplayNames": { + "m_cameraZoneName": { "type": "std::string", - "id": 1, - "offset": 104, - "flags": 8388615, - "container": "Vector", - "dynamic": true, + "id": 19, + "offset": 368, + "flags": 287, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 1795597665 + "hash": 3131581121 }, - "m_crownsCost": { - "type": "int", - "id": 2, - "offset": 128, - "flags": 7, + "m_duration": { + "type": "float", + "id": 20, + "offset": 400, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1592212719 + "hash": 920323453 }, - "m_msrpCost": { - "type": "int", - "id": 3, - "offset": 132, - "flags": 7, + "m_delay": { + "type": "float", + "id": 21, + "offset": 404, + "flags": 287, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1724602037 + "hash": 881988134 }, - "m_options": { - "type": "std::string", - "id": 4, - "offset": 136, - "flags": 7, - "container": "Vector", - "dynamic": true, + "m_cameraHidePlayers": { + "type": "int", + "id": 22, + "offset": 408, + "flags": 287, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 2130561383 + "hash": 28533149 }, - "m_accessMode": { - "type": "enum PassInfo::ZoneAccessMode", - "id": 5, - "offset": 160, - "flags": 2097159, + "m_walkAwayNpcTemplateID": { + "type": "gid", + "id": 23, + "offset": 416, + "flags": 33554719, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1953323843, - "enum_options": { - "AccessPass": 0, - "FreeToPlay": 1, - "NotReady": 2, - "SubscriberOnly": 3, - "__DEFAULT": "SubscriberOnly" - } + "hash": 942697507 }, - "m_passType": { - "type": "enum PassInfo::AccessPassType", - "id": 6, - "offset": 164, - "flags": 2097159, + "m_walkAwayExitDirectionInDegrees": { + "type": "float", + "id": 24, + "offset": 424, + "flags": 287, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2228692515, - "enum_options": { - "Standard": 0, - "Timed": 1, - "Sample": 2, - "__DEFAULT": "Standard" - } - } - } - }, - "347792815": { - "name": "class SharedPointer", - "bases": [ - "ServiceOptionBase", - "PropertyClass" - ], - "hash": 347792815, - "properties": { - "m_serviceName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, + "hash": 396419785 + }, + "m_walkAwayFadeTime": { + "type": "float", + "id": 25, + "offset": 428, + "flags": 287, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2206028813 + "hash": 822405687 }, - "m_iconKey": { - "type": "std::string", - "id": 1, - "offset": 168, - "flags": 31, + "m_walkAwayUseCurrentFacing": { + "type": "bool", + "id": 26, + "offset": 432, + "flags": 287, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2457138637 + "hash": 1464855436 }, - "m_displayKey": { + "m_standInPlayerTag": { "type": "std::string", - "id": 2, - "offset": 104, - "flags": 31, + "id": 27, + "offset": 440, + "flags": 287, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3023276954 + "hash": 1590121141 }, - "m_serviceIndex": { - "type": "unsigned int", - "id": 3, - "offset": 204, - "flags": 31, + "m_fadeOutCamera": { + "type": "bool", + "id": 28, + "offset": 472, + "flags": 287, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2103126710 + "hash": 1766121252 }, - "m_forceInteract": { + "m_snapCameraToPlayerAtExit": { "type": "bool", - "id": 4, - "offset": 200, - "flags": 31, + "id": 29, + "offset": 473, + "flags": 287, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1705789564 + "hash": 1323369645 }, - "m_auctionHousePurchaseKey": { - "type": "unsigned int", - "id": 5, - "offset": 216, - "flags": 31, + "m_secondaryCameraName": { + "type": "std::string", + "id": 30, + "offset": 480, + "flags": 287, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 394777768 + "hash": 1670705581 }, - "m_sellModifier": { + "m_secondaryInterpolationDuration": { "type": "float", - "id": 6, - "offset": 220, - "flags": 31, + "id": 31, + "offset": 512, + "flags": 287, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 360128886 - } - } - }, - "764485787": { - "name": "class BadgeLeaderboardInfo*", - "bases": [ - "PropertyClass" - ], - "hash": 764485787, - "properties": { - "m_characterGID": { - "type": "gid", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, + "hash": 1873822349 + }, + "m_npcStandInList": { + "type": "std::string", + "id": 32, + "offset": 520, + "flags": 287, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 501688601 + "hash": 2076308937 }, - "m_packedName": { + "m_dialogAnimationList": { "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, + "id": 33, + "offset": 536, + "flags": 287, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 1805208228 + "hash": 2444806919 }, - "m_playerLevel": { - "type": "int", - "id": 2, - "offset": 112, - "flags": 7, - "container": "Static", - "dynamic": false, + "m_dialogTurningList": { + "type": "std::string", + "id": 34, + "offset": 552, + "flags": 287, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 743117695 + "hash": 2782869422 }, - "m_badgeCount": { - "type": "int", - "id": 3, - "offset": 116, - "flags": 7, + "m_npcYawOffsetInDegrees": { + "type": "float", + "id": 35, + "offset": 568, + "flags": 287, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 265710774 + "hash": 1395075270 }, - "m_school": { - "type": "unsigned int", - "id": 4, - "offset": 120, - "flags": 7, + "m_allowPlayerToMove": { + "type": "bool", + "id": 36, + "offset": 572, + "flags": 287, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1152268885 + "hash": 225101337 }, - "m_lastBadgeName": { + "m_soundEffectFile": { "type": "std::string", - "id": 5, - "offset": 128, - "flags": 7, + "id": 37, + "offset": 576, + "flags": 287, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3502394755 - } - } - }, - "1125081789": { - "name": "class SubscriberBenefitControl", - "bases": [ - "Window", - "PropertyClass" - ], - "hash": 1125081789, - "properties": { - "m_sName": { + "hash": 3235157265 + }, + "m_musicFile": { "type": "std::string", - "id": 0, - "offset": 80, - "flags": 135, + "id": 38, + "offset": 608, + "flags": 287, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2306437263 - }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621225959 + "hash": 2963686620 }, - "m_Style": { - "type": "unsigned int", - "id": 2, - "offset": 152, - "flags": 1048583, + "m_nonStackableMusic": { + "type": "bool", + "id": 39, + "offset": 640, + "flags": 287, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "SCALE_CHILDREN": 2, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "FOCUS_LOCKED": 64, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152 - } + "hash": 1675595625 }, - "m_Flags": { - "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 1048583, + "m_nonRepeatableMusic": { + "type": "bool", + "id": 40, + "offset": 641, + "flags": 287, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } + "hash": 2138315572 }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, - "flags": 135, + "m_playMusicAtSFXVolume": { + "type": "bool", + "id": 41, + "offset": 642, + "flags": 287, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3105139380 + "hash": 2130871816 }, - "m_fTargetAlpha": { + "m_soundEffectDelay": { "type": "float", - "id": 5, - "offset": 212, - "flags": 135, + "id": 42, + "offset": 644, + "flags": 287, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1809129834 + "hash": 1586382460 }, - "m_fDisabledAlpha": { + "m_musicDelay": { "type": "float", - "id": 6, - "offset": 216, - "flags": 135, + "id": 43, + "offset": 648, + "flags": 287, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1389987675 + "hash": 1217785767 }, - "m_fAlpha": { + "m_musicFadeTime": { "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, + "id": 44, + "offset": 652, + "flags": 287, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 482130755 - }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3623628394 + "hash": 502925015 }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, + "m_dontReleaseCameraAtExit": { + "type": "bool", + "id": 45, + "offset": 474, + "flags": 287, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2102211316 + "hash": 1107508961 }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, + "m_disableBackButton": { + "type": "bool", + "id": 46, + "offset": 656, + "flags": 287, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1846695875 + "hash": 122355444 }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, + "m_enableExitButton": { + "type": "bool", + "id": 47, + "offset": 657, + "flags": 287, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3389835433 + "hash": 1824693936 }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, + "m_cameraFadeType": { + "type": "std::string", + "id": 48, + "offset": 664, + "flags": 287, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2547159940 + "hash": 2021935382, + "enum_options": { + "": 0, + "In Out Black": "In Out Black", + "In Out White": "In Out White", + "In Black": "In Black", + "Out Black": "Out Black", + "In White": "In White", + "Out White": "Out White", + "__DEFAULT": 0 + } }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, + "m_cameraFadeTime": { + "type": "float", + "id": 49, + "offset": 696, + "flags": 287, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2587533771 + "hash": 614419391, + "enum_options": { + "__DEFAULT": "0.5" + } }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, + "m_idleAnimation": { + "type": "std::string", + "id": 50, + "offset": 704, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3091503757 - } - } - }, - "1918380102": { - "name": "class TextureRemapBehavior*", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1918380102, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, + "hash": 2900487193 + }, + "m_spamTime": { + "type": "float", + "id": 51, + "offset": 736, + "flags": 287, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 + "hash": 1727215063, + "enum_options": { + "__DEFAULT": "1.0" + } }, - "m_textureRemapList": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 3580415920 - } - } - }, - "346981666": { - "name": "class SharedPointer", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 346981666, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, + "m_playSoundIfSpamming": { + "type": "bool", + "id": 52, + "offset": 740, + "flags": 287, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 - } - } - }, - "1124710247": { - "name": "class SharedPointer", - "bases": [ - "ConditionalSpellEffectRequirement", - "Requirement", - "PropertyClass" - ], - "hash": 1124710247, - "properties": { - "m_applyNOT": { + "hash": 690006749, + "enum_options": { + "__DEFAULT": 1 + } + }, + "m_playMusicIfSpamming": { "type": "bool", - "id": 0, - "offset": 72, - "flags": 31, + "id": 53, + "offset": 741, + "flags": 287, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1746328074, + "hash": 538564341, "enum_options": { - "__DEFAULT": 0 + "__DEFAULT": 1 } }, - "m_operator": { - "type": "enum Requirement::Operator", - "id": 1, - "offset": 76, - "flags": 2097183, + "m_stopMusicFadeTime": { + "type": "float", + "id": 54, + "offset": 744, + "flags": 287, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2672792317, + "hash": 696390845, "enum_options": { - "ROP_AND": 0, - "ROP_OR": 1, - "__DEFAULT": "ROP_AND" + "__DEFAULT": "0.0" } }, - "m_targetType": { - "type": "enum ConditionalSpellEffectRequirement::RequirementTarget", - "id": 2, - "offset": 80, - "flags": 2097159, + "m_restartMusicFadeTime": { + "type": "float", + "id": 55, + "offset": 748, + "flags": 287, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2547737902, + "hash": 709379292, "enum_options": { - "RT_Caster": 0, - "RT_Target": 1 + "__DEFAULT": "0.0" } }, - "m_magicSchoolName": { - "type": "std::string", - "id": 3, - "offset": 88, - "flags": 7, + "m_meetsRequirements": { + "type": "bool", + "id": 56, + "offset": 752, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2939083077 - } - } - }, - "1917852284": { - "name": "class WinAnimConcurrent", - "bases": [ - "WinAnimContainer", - "WindowAnimation", - "PropertyClass" - ], - "hash": 1917852284, - "properties": { - "m_bUseDeepCopy": { - "type": "bool", - "id": 0, - "offset": 72, - "flags": 135, + "hash": 296443061 + }, + "m_secondaryCameraInitalDelay": { + "type": "float", + "id": 57, + "offset": 516, + "flags": 287, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 433380635 - }, - "m_winAnimList": { - "type": "class SharedPointer", - "id": 1, - "offset": 80, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1941062728 + "hash": 1812842232 }, - "m_bLooping": { + "m_displayButtonsOnTimedDialog": { "type": "bool", - "id": 2, - "offset": 104, - "flags": 135, + "id": 58, + "offset": 753, + "flags": 287, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2131020845 + "hash": 569741400 }, - "m_finishedAnimList": { - "type": "class SharedPointer", - "id": 3, - "offset": 112, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 3066650884 - } - } - }, - "346926357": { - "name": "class GameObjectAnimData", - "bases": [ - "PropertyClass" - ], - "hash": 346926357, - "properties": { - "m_zoneTag": { + "m_personaName": { "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, + "id": 59, + "offset": 776, + "flags": 268435487, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3405382643 + "hash": 2514452244, + "enum_options": { + "__BASECLASS": "Persona" + } }, - "m_zoneTagID": { - "type": "unsigned int", - "id": 1, - "offset": 104, - "flags": 31, + "m_nameOverride": { + "type": "std::string", + "id": 60, + "offset": 840, + "flags": 8388639, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 965291410 + "hash": 2854590748 }, - "m_animation": { + "m_nameSTKey": { "type": "std::string", - "id": 2, - "offset": 112, + "id": 61, + "offset": 808, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3431428731 + "hash": 3618744844 }, - "m_backupAnimation": { + "m_guiDisplay": { "type": "std::string", - "id": 3, - "offset": 144, - "flags": 31, + "id": 62, + "offset": 872, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1661537937 + "hash": 3134563510 }, - "m_default": { - "type": "bool", - "id": 4, - "offset": 176, + "m_maxTimeSeconds": { + "type": "int", + "id": 63, + "offset": 904, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1014207576 + "hash": 1762503230 }, - "m_evenWhileDead": { + "m_invisible": { "type": "bool", - "id": 5, - "offset": 177, + "id": 64, + "offset": 908, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2100875368 + "hash": 2011940728 } } }, - "764485811": { - "name": "class BadgeLeaderboardInfo", + "211235823": { + "name": "class ExpansionData", "bases": [ "PropertyClass" ], - "hash": 764485811, + "hash": 211235823, "properties": { - "m_characterGID": { - "type": "gid", + "m_category": { + "type": "enum ExpansionData::Category", "id": 0, "offset": 72, - "flags": 7, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 501688601 + "hash": 2705349254, + "enum_options": { + "EDC_Bank": 0, + "EDC_FriendsList": 1 + } }, - "m_packedName": { - "type": "std::string", + "m_maxExpansions": { + "type": "int", "id": 1, - "offset": 80, + "offset": 76, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1805208228 + "hash": 944258472 }, - "m_playerLevel": { + "m_expansionSize": { "type": "int", "id": 2, - "offset": 112, + "offset": 80, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 743117695 + "hash": 186190666 + } + } + }, + "1068829214": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1068829214, + "properties": { + "m_blueTeamScore": { + "type": "unsigned int", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1519259416 }, - "m_badgeCount": { - "type": "int", - "id": 3, - "offset": 116, + "m_orangeTeamScore": { + "type": "unsigned int", + "id": 1, + "offset": 76, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 265710774 + "hash": 988508012 }, - "m_school": { + "m_redTeamScore": { "type": "unsigned int", - "id": 4, - "offset": 120, + "id": 2, + "offset": 80, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1152268885 + "hash": 1672048811 }, - "m_lastBadgeName": { - "type": "std::string", - "id": 5, - "offset": 128, + "m_passport": { + "type": "unsigned int", + "id": 3, + "offset": 84, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3502394755 - } - } - }, - "1518184489": { - "name": "class SharedPointer", - "bases": [ - "ClientTutorial", - "PropertyClass" - ], - "hash": 1518184489, - "properties": { - "m_stage": { - "type": "unsigned short", - "id": 0, - "offset": 74, + "hash": 1362521513 + }, + "m_gameState": { + "type": "std::string", + "id": 4, + "offset": 88, "flags": 7, "container": "Static", "dynamic": false, - "singleton": true, + "singleton": false, "pointer": false, - "hash": 1363685500 + "hash": 2824634006 } } }, - "1933981281": { - "name": "class SetBottomTeamCinematicAction", + "1499920354": { + "name": "class SharedPointer", "bases": [ - "CinematicAction", + "ServiceOptionBase", "PropertyClass" ], - "hash": 1933981281, + "hash": 1499920354, "properties": { - "m_timeOffset": { - "type": "float", + "m_serviceName": { + "type": "std::string", "id": 0, "offset": 72, - "flags": 7, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 + "hash": 2206028813 }, - "m_interpDuration": { - "type": "float", + "m_iconKey": { + "type": "std::string", "id": 1, - "offset": 80, - "flags": 7, + "offset": 168, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237711951 - } - } - }, - "1918630585": { - "name": "class Search::ResultList*", - "bases": [ - "PropertyClass" - ], - "hash": 1918630585, - "properties": { - "m_items": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1610486152 + "hash": 2457138637 }, - "m_requestHandle": { - "type": "gid", - "id": 1, - "offset": 88, - "flags": 7, + "m_displayKey": { + "type": "std::string", + "id": 2, + "offset": 104, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 563564461 - } - } - }, - "1918380142": { - "name": "class TextureRemapBehavior", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1918380142, - "properties": { - "m_behaviorTemplateNameID": { + "hash": 3023276954 + }, + "m_serviceIndex": { "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, + "id": 3, + "offset": 204, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 + "hash": 2103126710 }, - "m_textureRemapList": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, + "m_forceInteract": { + "type": "bool", + "id": 4, + "offset": 200, "flags": 31, - "container": "List", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3580415920 + "pointer": false, + "hash": 1705789564 } } }, - "1518327757": { - "name": "class SharedPointer", + "1498689723": { + "name": "class SharedPointer", "bases": [ "PropertyClass" ], - "hash": 1518327757, + "hash": 1498689723, "properties": { - "m_eventName": { - "type": "std::string", + "m_nTileIndex": { + "type": "int", "id": 0, - "offset": 80, - "flags": 7, + "offset": 72, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3493260286 + "hash": 1956352654 }, - "m_startTime": { - "type": "unsigned __int64", + "m_fCurrentFrame": { + "type": "float", "id": 1, - "offset": 112, - "flags": 7, + "offset": 76, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1859690486 + "hash": 219900907 }, - "m_endTime": { - "type": "unsigned __int64", + "m_bIsFlippedHorizontal": { + "type": "bool", "id": 2, - "offset": 120, - "flags": 7, + "offset": 80, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 977798847 + "hash": 627031807 }, - "m_active": { + "m_bIsFlippedVertical": { "type": "bool", "id": 3, - "offset": 128, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 239335471 - } - } - }, - "1919034511": { - "name": "class SharedPointer", - "bases": [ - "ClientTimedItemBehavior", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1919034511, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, + "offset": 81, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 + "hash": 298230063 }, - "m_expireTime": { + "m_nRotation": { "type": "unsigned int", - "id": 1, - "offset": 112, - "flags": 59, + "id": 4, + "offset": 84, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1836304873 + "hash": 1898715531 } } }, - "1518803796": { - "name": "enum LeashOffsetOverride::LeashOffsetType", - "bases": [], - "hash": 1518803796, - "properties": {} - }, - "1518539917": { - "name": "class TeamHelpVolunteerInfo", + "641636619": { + "name": "class CharacterCreationInfo", "bases": [ "PropertyClass" ], - "hash": 1518539917, + "hash": 641636619, "properties": { - "m_worldID": { - "type": "unsigned int", + "m_templateID": { + "type": "int", "id": 0, "offset": 72, - "flags": 7, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 397177058 + "hash": 1075344419 }, - "m_flags": { - "type": "unsigned char", + "m_name": { + "type": "std::wstring", "id": 1, - "offset": 76, - "flags": 7, + "offset": 80, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1431998045 - } - } - }, - "1921148831": { - "name": "class CastleMagicCinematicEffect*", - "bases": [ - "PropertyClass" - ], - "hash": 1921148831, - "properties": {} - }, - "1920391157": { - "name": "class FadeMusicSoundCinematicAction", - "bases": [ - "CinematicAction", - "PropertyClass" - ], - "hash": 1920391157, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, + "hash": 1513345113 + }, + "m_shouldRename": { + "type": "bool", + "id": 2, + "offset": 128, + "flags": 24, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 + "hash": 1741266202 }, - "m_fadeDuration": { - "type": "float", - "id": 1, - "offset": 80, - "flags": 7, + "m_globalID": { + "type": "gid", + "id": 3, + "offset": 120, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1402536557 + "hash": 981205014 }, - "m_fadeToGain": { - "type": "float", - "id": 2, - "offset": 84, - "flags": 7, + "m_userID": { + "type": "gid", + "id": 4, + "offset": 112, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1724568201 + "hash": 1037989700 + }, + "m_quarantined": { + "type": "bool", + "id": 5, + "offset": 129, + "flags": 24, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 637025007 } } }, - "1920146558": { - "name": "class SharedPointer", + "1924791475": { + "name": "class ScrollablePopupButton*", "bases": [ + "ControlPopupButton", + "ControlButton", "Window", "PropertyClass" ], - "hash": 1920146558, + "hash": 1924791475, "properties": { "m_sName": { "type": "std::string", @@ -410339,11 +77814,9 @@ "hash": 983582334, "enum_options": { "HAS_BACK": 1, - "SCALE_CHILDREN": 2, "CAN_MOVE": 4, "CAN_SIZE": 8, "CAN_SCROLL": 16, - "FOCUS_LOCKED": 64, "CAN_FOCUS": 128, "CAN_DOCK": 32, "DO_NOT_CAPTURE_MOUSE": 256, @@ -410355,7 +77828,11 @@ "USE_ALPHA_BOUNDS": 8192, "AUTO_GROW": 16384, "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152 + "AUTO_RESIZE": 49152, + "POPDOWN_SIBLINGS": 67108864, + "DISABLE_CHILDREN": 134217728, + "HIDE_SIBLINGS": 268435456, + "POPUP_ON_HOVER": 536870912 } }, "m_Flags": { @@ -410515,636 +77992,444 @@ "singleton": false, "pointer": false, "hash": 3091503757 - } - } - }, - "1519858072": { - "name": "class ObstacleCourseSpeedUpBehavior*", - "bases": [ - "ObstacleCourseObstaclePathBase", - "ObstacleCourseObstacleBehavior", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1519858072, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, + }, + "m_bToggle": { + "type": "bool", + "id": 16, + "offset": 608, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 - } - } - }, - "1919641863": { - "name": "class SharedPointer", - "bases": [ - "LootInfoBase", - "PropertyClass" - ], - "hash": 1919641863, - "properties": { - "m_lootType": { - "type": "enum LootInfo::LOOT_TYPE", - "id": 0, - "offset": 72, - "flags": 2097183, + "hash": 2071810903 + }, + "m_bButtonDown": { + "type": "bool", + "id": 17, + "offset": 609, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1591891442, - "enum_options": { - "LOOT_TYPE_NONE": 0, - "LOOT_TYPE_GOLD": 1, - "LOOT_TYPE_MANA": 2, - "LOOT_TYPE_ITEM": 3, - "LOOT_TYPE_TREASURE_CARD": 4, - "LOOT_TYPE_MAGIC_XP": 5, - "LOOT_TYPE_ADD_SPELL": 6, - "LOOT_TYPE_MAX_HEALTH": 7, - "LOOT_TYPE_MAX_GOLD": 8, - "LOOT_TYPE_MAX_MANA": 9, - "LOOT_TYPE_MAX_POTION": 10, - "LOOT_TYPE_TRAINING_POINTS": 11, - "LOOT_TYPE_RECIPE": 12, - "LOOT_TYPE_CRAFTING_SLOT": 13, - "LOOT_TYPE_REAGENT": 14, - "LOOT_TYPE_PETSNACK": 15, - "LOOT_TYPE_GARDENING_XP": 16, - "LOOT_TYPE_PET_XP": 17, - "LOOT_TYPE_TREASURE_TABLE": 18, - "LOOT_TYPE_ARENA_POINTS": 19, - "LOOT_TYPE_ARENA_BONUS_POINTS": 20, - "LOOT_TYPE_GROUP": 21, - "LOOT_TYPE_FISHING_XP": 22, - "LOOT_TYPE_EVENT_CURRENCY_1": 24, - "LOOT_TYPE_EVENT_CURRENCY_2": 25, - "LOOT_TYPE_PVP_CURRENCY": 26, - "LOOT_TYPE_PVP_CURRENCY_BONUS": 27, - "LOOT_TYPE_PVP_TOURNEY_CURRENCY": 28, - "LOOT_TYPE_PVP_TOURNEY_CURRENCY_BONUS": 29, - "LOOT_TYPE_FURNITURE_ESSENCE": 30 - } - } - } - }, - "1520229545": { - "name": "class FontMapping", - "bases": [ - "PropertyClass" - ], - "hash": 1520229545, - "properties": { - "m_symbol": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, + "hash": 840041705 + }, + "m_sLabel": { + "type": "std::wstring", + "id": 18, + "offset": 616, + "flags": 4194439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2464821841 + "hash": 2207009163 }, - "m_face": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 7, + "m_labelOffset": { + "type": "class Rect", + "id": 19, + "offset": 832, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1717071946 + "hash": 1990646723 }, - "m_italic": { - "type": "bool", - "id": 2, - "offset": 136, - "flags": 7, + "m_pButton": { + "type": "class SharedPointer", + "id": 20, + "offset": 656, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 571899305 + "pointer": true, + "hash": 1543855875 }, - "m_bold": { - "type": "bool", - "id": 3, - "offset": 137, - "flags": 7, + "m_HotKey": { + "type": "unsigned int", + "id": 21, + "offset": 672, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 221725300 - } - } - }, - "1920194549": { - "name": "class FadeMusicSoundCinematicAction*", - "bases": [ - "CinematicAction", - "PropertyClass" - ], - "hash": 1920194549, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, + "hash": 1631553409 + }, + "m_Color": { + "type": "class Color", + "id": 22, + "offset": 676, + "flags": 262279, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 + "hash": 1753714077 }, - "m_fadeDuration": { - "type": "float", - "id": 1, - "offset": 80, - "flags": 7, + "m_bCursorOver": { + "type": "bool", + "id": 23, + "offset": 689, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1402536557 + "hash": 283981103 }, - "m_fadeToGain": { - "type": "float", - "id": 2, - "offset": 84, - "flags": 7, + "m_bAbortWhenCursorNotOver": { + "type": "bool", + "id": 24, + "offset": 706, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1724568201 - } - } - }, - "1521569450": { - "name": "class BracketMatchResult", - "bases": [ - "PropertyClass" - ], - "hash": 1521569450, - "properties": { - "m_opponents": { - "type": "gid", - "id": 0, - "offset": 72, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1257835102 + "hash": 325405258 }, - "m_points": { - "type": "unsigned int", - "id": 1, - "offset": 88, - "flags": 31, + "m_bHotKeyDown": { + "type": "bool", + "id": 25, + "offset": 680, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1049128778 + "hash": 616989185 }, - "m_matchResult": { - "type": "unsigned int", - "id": 2, - "offset": 92, - "flags": 31, + "m_fTime": { + "type": "float", + "id": 26, + "offset": 684, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1912880793 + "hash": 883746156 }, - "m_competingForPlace": { - "type": "unsigned int", - "id": 3, - "offset": 100, - "flags": 31, + "m_bGreyed": { + "type": "bool", + "id": 27, + "offset": 688, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1156208831 - } - } - }, - "1521374502": { - "name": "class ClientBGPlayerBehavior", - "bases": [ - "BGPlayerBehavior", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1521374502, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, + "hash": 1566556053 + }, + "m_fMaxScale": { + "type": "float", + "id": 28, + "offset": 692, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 - } - } - }, - "1920969171": { - "name": "class SpellIDTracker*", - "bases": [ - "PropertyClass" - ], - "hash": 1920969171, - "properties": { - "m_spellID": { - "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 31, + "hash": 2070186635 + }, + "m_fScaleSpeed": { + "type": "float", + "id": 29, + "offset": 696, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1697483258 + "hash": 1457135702 }, - "m_isRetired": { + "m_bUseDropShadow": { "type": "bool", - "id": 1, - "offset": 76, - "flags": 31, + "id": 30, + "offset": 704, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 952245726 + "hash": 93063037 }, - "m_tieredSpellGroupIndex": { - "type": "int", - "id": 2, - "offset": 80, - "flags": 31, + "m_bUseOutline": { + "type": "bool", + "id": 31, + "offset": 705, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 859458588 - } - } - }, - "1520882401": { - "name": "class ActorBody", - "bases": [ - "GamebryoBody", - "Body", - "PropertyClass" - ], - "hash": 1520882401, - "properties": { - "m_position": { - "type": "class Vector3D", - "id": 0, - "offset": 88, - "flags": 7, + "hash": 744292994 + }, + "m_pGreyedState": { + "type": "class SharedPointer", + "id": 32, + "offset": 768, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 3697900983 + "pointer": true, + "hash": 2703352263 }, - "m_pitch": { - "type": "float", - "id": 1, - "offset": 100, - "flags": 7, + "m_pNormalState": { + "type": "class SharedPointer", + "id": 33, + "offset": 752, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 896371695 + "pointer": true, + "hash": 1887909808 }, - "m_roll": { - "type": "float", - "id": 2, - "offset": 104, - "flags": 7, + "m_pHighlightedState": { + "type": "class SharedPointer", + "id": 34, + "offset": 784, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 310020272 + "pointer": true, + "hash": 2200177608 }, - "m_yaw": { - "type": "float", - "id": 3, - "offset": 108, - "flags": 7, + "m_pSelectedState": { + "type": "class SharedPointer", + "id": 35, + "offset": 800, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 357256328 + "pointer": true, + "hash": 2266776432 }, - "m_fHeight": { - "type": "float", - "id": 4, - "offset": 132, - "flags": 7, + "m_pDepressedState": { + "type": "class SharedPointer", + "id": 36, + "offset": 816, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 401539638 + "pointer": true, + "hash": 1878185798 }, - "m_scale": { - "type": "float", - "id": 5, - "offset": 112, - "flags": 7, + "m_bUp": { + "type": "bool", + "id": 37, + "offset": 880, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 899693439 + "hash": 269510906 } } }, - "1920911136": { - "name": "class SharedPointer", + "1498509970": { + "name": "class StringTable*", "bases": [ - "PvPPenaltyMatchBan", - "InfractionPenalty", "PropertyClass" ], - "hash": 1920911136, + "hash": 1498509970, "properties": { - "m_internalID": { - "type": "unsigned int", + "m_thousandSeparator": { + "type": "wchar_t", "id": 0, - "offset": 72, - "flags": 31, + "offset": 200, + "flags": 7, "container": "Static", "dynamic": false, - "singleton": false, + "singleton": true, "pointer": false, - "hash": 1854540375 + "hash": 3735116682 }, - "m_categoryID": { - "type": "unsigned int", + "m_decimalCharacter": { + "type": "wchar_t", "id": 1, - "offset": 76, - "flags": 31, + "offset": 202, + "flags": 7, "container": "Static", "dynamic": false, - "singleton": false, + "singleton": true, "pointer": false, - "hash": 1382795736 + "hash": 2802322863 }, - "m_removeAtPointValue": { - "type": "float", + "m_defaultSpace": { + "type": "wchar_t", "id": 2, - "offset": 80, - "flags": 31, + "offset": 204, + "flags": 7, "container": "Static", "dynamic": false, - "singleton": false, + "singleton": true, "pointer": false, - "hash": 2112196961 + "hash": 3126898340 }, - "m_expireTime": { - "type": "unsigned int", + "m_numberPrecision": { + "type": "int", "id": 3, - "offset": 84, - "flags": 31, + "offset": 208, + "flags": 7, "container": "Static", "dynamic": false, - "singleton": false, + "singleton": true, "pointer": false, - "hash": 1836304873 + "hash": 523838671 }, - "m_duration": { - "type": "unsigned int", + "m_lowerToUpperList": { + "type": "class CharMap", "id": 4, - "offset": 88, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1041524755 - } - } - }, - "1520878571": { - "name": "class SharedPointer", - "bases": [ - "TreasureBookBehavior", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1520878571, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, + "offset": 216, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": true, "pointer": false, - "hash": 223437287 + "hash": 542305079 }, - "m_spellList": { - "type": "class SharedPointer", - "id": 1, - "offset": 120, - "flags": 27, + "m_upperToLowerList": { + "type": "class CharMap", + "id": 5, + "offset": 232, + "flags": 7, "container": "List", "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2181913740 - } - } - }, - "1920969075": { - "name": "class SpellIDTracker", - "bases": [ - "PropertyClass" - ], - "hash": 1920969075, - "properties": { - "m_spellID": { - "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, + "singleton": true, "pointer": false, - "hash": 1697483258 + "hash": 686618071 }, - "m_isRetired": { - "type": "bool", - "id": 1, - "offset": 76, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, + "m_sortScoreList": { + "type": "class CharMap", + "id": 6, + "offset": 248, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": true, "pointer": false, - "hash": 952245726 + "hash": 1662028035 }, - "m_tieredSpellGroupIndex": { - "type": "int", - "id": 2, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, + "m_typeSpaces": { + "type": "unsigned short", + "id": 7, + "offset": 264, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": true, "pointer": false, - "hash": 859458588 - } - } - }, - "1521087095": { - "name": "enum ExpansionData::Category", - "bases": [], - "hash": 1521087095, - "properties": {} - }, - "1921148821": { - "name": "class CastleMagicCinematicEffect", - "bases": [ - "PropertyClass" - ], - "hash": 1921148821, - "properties": {} - }, - "1521415462": { - "name": "class ClientBGPlayerBehavior*", - "bases": [ - "BGPlayerBehavior", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1521415462, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, + "hash": 931738089 + }, + "m_typePunctuation": { + "type": "unsigned short", + "id": 8, + "offset": 280, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": true, "pointer": false, - "hash": 223437287 - } - } - }, - "1922449641": { - "name": "class Search::ResultItem*", - "bases": [ - "PropertyClass" - ], - "hash": 1922449641, - "properties": { - "m_userID": { - "type": "gid", - "id": 0, - "offset": 72, + "hash": 2553388772 + }, + "m_typeAlphaNumeric": { + "type": "unsigned short", + "id": 9, + "offset": 296, "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, + "container": "List", + "dynamic": true, + "singleton": true, "pointer": false, - "hash": 1037989700 + "hash": 696068547 }, - "m_userName": { - "type": "std::string", - "id": 1, - "offset": 80, + "m_typeAlpha": { + "type": "unsigned short", + "id": 10, + "offset": 312, "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, + "container": "List", + "dynamic": true, + "singleton": true, "pointer": false, - "hash": 2213937019 + "hash": 1715008368 }, - "m_characterID": { - "type": "gid", - "id": 2, - "offset": 112, + "m_typeDigit": { + "type": "unsigned short", + "id": 11, + "offset": 328, "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, + "container": "List", + "dynamic": true, + "singleton": true, "pointer": false, - "hash": 210498386 + "hash": 1718448571 }, - "m_characterName": { - "type": "std::wstring", - "id": 3, - "offset": 120, + "m_typeHexDigit": { + "type": "unsigned short", + "id": 12, + "offset": 344, "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, + "container": "List", + "dynamic": true, + "singleton": true, "pointer": false, - "hash": 2815013574 + "hash": 990261184 }, - "m_zoneName": { - "type": "std::string", - "id": 4, - "offset": 152, + "m_minFontSizeForDropshadow": { + "type": "float", + "id": 13, + "offset": 212, "flags": 7, "container": "Static", "dynamic": false, - "singleton": false, + "singleton": true, "pointer": false, - "hash": 2171167736 - }, - "m_realmName": { + "hash": 335078927 + } + } + }, + "638801051": { + "name": "class InfractionBehaviorTemplate*", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 638801051, + "properties": { + "m_behaviorName": { "type": "std::string", - "id": 5, - "offset": 184, + "id": 0, + "offset": 72, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3507983949 + "hash": 3130754092 } } }, - "1922070661": { - "name": "class SharedPointer", + "1924790707": { + "name": "class ScrollablePopupButton", "bases": [ "ControlPopupButton", "ControlButton", "Window", "PropertyClass" ], - "hash": 1922070661, + "hash": 1924790707, "properties": { "m_sName": { "type": "std::string", @@ -411603,213 +78888,327 @@ } } }, - "1523786443": { - "name": "class SharedPointer", + "346713663": { + "name": "class SharedPointer", + "bases": [], + "hash": 346713663, + "properties": {} + }, + "1068979478": { + "name": "class GoalTemplate", "bases": [ - "BehaviorInstance", + "CoreTemplate", "PropertyClass" ], - "hash": 1523786443, + "hash": 1068979478, "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", + "m_behaviors": { + "type": "class BehaviorTemplate*", "id": 0, + "offset": 72, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1197808594 + }, + "m_goalName": { + "type": "std::string", + "id": 1, "offset": 104, - "flags": 39, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 - } - } - }, - "1921774267": { - "name": "class AtticObject*", - "bases": [ - "PropertyClass" - ], - "hash": 1921774267, - "properties": {} - }, - "1522616380": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1522616380, - "properties": { - "m_templateList": { + "hash": 1521627807 + }, + "m_goalNameID": { "type": "unsigned int", - "id": 0, - "offset": 72, + "id": 2, + "offset": 496, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 403158846 + }, + "m_goalTitle": { + "type": "std::string", + "id": 3, + "offset": 136, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2291910240 + }, + "m_goalUnderway": { + "type": "std::string", + "id": 4, + "offset": 168, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3153144269 + }, + "m_hyperlink": { + "type": "std::string", + "id": 5, + "offset": 200, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2887798993 + }, + "m_completeText": { + "type": "std::string", + "id": 6, + "offset": 232, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2767458393 + }, + "m_completeResults": { + "type": "class ResultList*", + "id": 7, + "offset": 440, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1964258099 + }, + "m_goalRequirements": { + "type": "class RequirementList*", + "id": 8, + "offset": 448, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2979967145 + }, + "m_tallyCounter": { + "type": "class TallyCounterTemplate*", + "id": 9, + "offset": 456, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1884546193 + }, + "m_locationName": { + "type": "std::string", + "id": 10, + "offset": 272, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1824218389 + }, + "m_displayImage1": { + "type": "std::string", + "id": 11, + "offset": 304, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1959572133 + }, + "m_displayImage2": { + "type": "std::string", + "id": 12, + "offset": 336, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1959572134 + }, + "m_clientTags": { + "type": "std::string", + "id": 13, + "offset": 368, "flags": 7, "container": "List", "dynamic": true, "singleton": false, "pointer": false, - "hash": 786797381 + "hash": 2319030025 }, - "m_essenceList": { - "type": "int", - "id": 1, - "offset": 88, + "m_genericEvents": { + "type": "std::string", + "id": 14, + "offset": 384, "flags": 7, "container": "List", "dynamic": true, "singleton": false, "pointer": false, - "hash": 1555680540 - } - } - }, - "1921590299": { - "name": "class LoyaltyPurchaseLimitCounterEntry", - "bases": [ - "PropertyClass" - ], - "hash": 1921590299, - "properties": { - "m_itemTemplateID": { - "type": "unsigned int", - "id": 0, - "offset": 72, + "hash": 3466670829 + }, + "m_autoQualify": { + "type": "bool", + "id": 15, + "offset": 400, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2190120133 + "hash": 1878907431 }, - "m_purchaseCount": { - "type": "int", - "id": 1, - "offset": 76, + "m_autoComplete": { + "type": "bool", + "id": 16, + "offset": 401, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 68125278 - } - } - }, - "1521876561": { - "name": "enum Ingredient::INGREDIENT_TYPE", - "bases": [], - "hash": 1521876561, - "properties": {} - }, - "1521624695": { - "name": "class InstanceInfo", - "bases": [ - "PropertyClass" - ], - "hash": 1521624695, - "properties": { - "m_sZoneName": { + "hash": 1302545445 + }, + "m_destinationZone": { "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, + "id": 17, + "offset": 408, + "flags": 268435463, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3632841067 + "hash": 2605356153, + "enum_options": { + "__BASECLASS": "ZoneData" + } }, - "m_nInstanceID": { - "type": "int", - "id": 1, - "offset": 104, - "flags": 31, + "m_dialogList": { + "type": "class ActorDialogListBase*", + "id": 18, + "offset": 264, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1380862506 + "pointer": true, + "hash": 1909154969 }, - "m_nZoneID": { - "type": "gid", - "id": 2, - "offset": 112, - "flags": 31, + "m_goalType": { + "type": "enum GoalTemplate::GOAL_TYPE", + "id": 19, + "offset": 96, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 622120303 - } - } - }, - "1922404794": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1922404794, - "properties": { - "m_sFilename": { - "type": "std::string", - "id": 0, - "offset": 104, - "flags": 131207, + "hash": 1488021149, + "enum_options": { + "GOAL_TYPE_UNKNOWN": 0, + "GOAL_TYPE_BOUNTY": 1, + "GOAL_TYPE_BOUNTYCOLLECT": 2, + "GOAL_TYPE_SCAVENGE": 3, + "GOAL_TYPE_PERSONA": 4, + "GOAL_TYPE_WAYPOINT": 5, + "GOAL_TYPE_SCAVENGEFAKE": 6, + "GOAL_TYPE_ACHIEVERANK": 7, + "GOAL_TYPE_USAGE": 8, + "GOAL_TYPE_COMPLETEQUEST": 9, + "GOAL_TYPE_SOCIARANK": 10, + "GOAL_TYPE_SOCIACURRENCY": 11, + "GOAL_TYPE_SOCIAMINIGAME": 12, + "GOAL_TYPE_SOCIAGIVEITEM": 13, + "GOAL_TYPE_SOCIAGETITEM": 14, + "GOAL_TYPE_COLLECTAFTERBOUNTY": 15, + "GOAL_TYPE_ENCOUNTER_WAYPOINT_FOREACH": 16 + } + }, + "m_noQuestHelper": { + "type": "bool", + "id": 20, + "offset": 500, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2431512111 + "hash": 578010882, + "enum_options": { + "__DEFAULT": 0 + } }, - "m_bAlphaChannel": { + "m_petOnlyQuest": { "type": "bool", - "id": 1, - "offset": 137, - "flags": 135, + "id": 21, + "offset": 501, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1780697684 + "hash": 679359344, + "enum_options": { + "__DEFAULT": 0 + } }, - "m_bDoubleSided": { - "type": "bool", - "id": 2, - "offset": 138, - "flags": 135, + "m_activateResults": { + "type": "class ResultList*", + "id": 22, + "offset": 504, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1054874233 + "pointer": true, + "hash": 3790153995 }, - "m_bMipMap": { + "m_hideGoalFloatyText": { "type": "bool", - "id": 3, - "offset": 139, - "flags": 135, + "id": 23, + "offset": 512, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1791042393 + "hash": 1919383204, + "enum_options": { + "__DEFAULT": 0 + } } } }, - "1522317503": { - "name": "enum VisualAttributeType", - "bases": [], - "hash": 1522317503, - "properties": {} - }, - "1922976712": { - "name": "class SharedPointer", + "638801041": { + "name": "class InfractionBehaviorTemplate", "bases": [ + "BehaviorTemplate", "PropertyClass" ], - "hash": 1922976712, + "hash": 638801041, "properties": { - "m_zoneID": { - "type": "gid", + "m_behaviorName": { + "type": "std::string", "id": 0, "offset": 72, "flags": 7, @@ -411817,226 +79216,239 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 1229232257 - }, - "m_newQuestList": { - "type": "unsigned int", - "id": 1, - "offset": 80, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 394073349 - }, - "m_completedQuestList": { - "type": "unsigned int", - "id": 2, - "offset": 96, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 426641112 + "hash": 3130754092 } } }, - "1523411550": { - "name": "class SharedPointer", + "273923706": { + "name": "class Window", "bases": [ "PropertyClass" ], - "hash": 1523411550, + "hash": 273923706, "properties": { - "m_name": { + "m_sName": { "type": "std::string", "id": 0, - "offset": 72, - "flags": 7, + "offset": 80, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1717359772 + "hash": 2306437263 }, - "m_id": { - "type": "gid", + "m_Children": { + "type": "class SharedPointer", "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 2090569797 + "pointer": true, + "hash": 2621225959 }, - "m_active": { - "type": "bool", + "m_Style": { + "type": "unsigned int", "id": 2, - "offset": 112, - "flags": 7, + "offset": 152, + "flags": 1048583, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 239335471 + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "SCALE_CHILDREN": 2, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "FOCUS_LOCKED": 64, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152 + } }, - "m_popSensitive": { - "type": "bool", + "m_Flags": { + "type": "unsigned int", "id": 3, - "offset": 113, - "flags": 7, + "offset": 156, + "flags": 1048583, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1597743708 + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } }, - "m_maxNumberOfSpawns": { - "type": "unsigned int", + "m_Window": { + "type": "class Rect", "id": 4, - "offset": 116, - "flags": 7, + "offset": 160, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 641389965 + "hash": 3105139380 }, - "m_atLeastOneSpawn": { - "type": "bool", + "m_fTargetAlpha": { + "type": "float", "id": 5, - "offset": 120, - "flags": 7, + "offset": 212, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 739650380 + "hash": 1809129834 }, - "m_activateAtMax": { - "type": "bool", + "m_fDisabledAlpha": { + "type": "float", "id": 6, - "offset": 121, - "flags": 7, + "offset": 216, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 992369727 + "hash": 1389987675 }, - "m_spawnTime": { - "type": "int", + "m_fAlpha": { + "type": "float", "id": 7, - "offset": 124, - "flags": 7, + "offset": 208, + "flags": 65671, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 752966546 + "hash": 482130755 }, - "m_respawnRate": { - "type": "unsigned int", + "m_pWindowStyle": { + "type": "class SharedPointer", "id": 8, - "offset": 128, - "flags": 7, + "offset": 232, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1675694521 + "pointer": true, + "hash": 3623628394 }, - "m_spawnList": { - "type": "class SpawnItem*", + "m_sHelp": { + "type": "std::wstring", "id": 9, - "offset": 160, - "flags": 7, - "container": "List", - "dynamic": true, + "offset": 248, + "flags": 4194439, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2620469846 + "pointer": false, + "hash": 2102211316 }, - "m_globalDynamicReqs": { - "type": "class RequirementList*", + "m_sScript": { + "type": "std::string", "id": 10, - "offset": 152, - "flags": 7, + "offset": 352, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3534313715 + "pointer": false, + "hash": 1846695875 }, - "m_globalDynamic": { - "type": "bool", + "m_Offset": { + "type": "class Point", "id": 11, - "offset": 144, - "flags": 7, + "offset": 192, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1951691017 + "hash": 3389835433 }, - "m_waitForTimer": { - "type": "bool", + "m_Scale": { + "type": "class Point", "id": 12, - "offset": 122, - "flags": 7, + "offset": 200, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2143039664 + "hash": 2547159940 }, - "m_zoneLevelMin": { - "type": "unsigned int", + "m_sTip": { + "type": "std::wstring", "id": 13, - "offset": 132, - "flags": 263, + "offset": 392, + "flags": 4194439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1028934149 + "hash": 1513510520 }, - "m_zoneLevelMax": { - "type": "unsigned int", + "m_BubbleList": { + "type": "class WindowBubble", "id": 14, - "offset": 136, - "flags": 263, - "container": "Static", - "dynamic": false, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 1028933895 + "hash": 2587533771 }, - "m_zoneLevelUp": { - "type": "unsigned int", + "m_ParentOffset": { + "type": "class Rect", "id": 15, - "offset": 140, - "flags": 263, + "offset": 176, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1342541638 + "hash": 3091503757 } } }, - "1523745775": { - "name": "class FontMapSWF*", + "1498673869": { + "name": "class SharedPointer", "bases": [ "PropertyClass" ], - "hash": 1523745775, + "hash": 1498673869, "properties": { - "m_mappings": { - "type": "class FontMapping", + "m_characterIDList": { + "type": "gid", "id": 0, "offset": 72, "flags": 7, @@ -412044,48 +79456,48 @@ "dynamic": true, "singleton": false, "pointer": false, - "hash": 3543733145 + "hash": 689466254 }, - "m_defaultFont": { + "m_questNameList": { "type": "std::string", "id": 1, "offset": 88, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 2375516599 + "hash": 3221150474 } } }, - "1927861928": { - "name": "class TabDisplayPriorityList", + "251412083": { + "name": "class SharedPointer", "bases": [ "PropertyClass" ], - "hash": 1927861928, + "hash": 251412083, "properties": { - "m_tabPriList": { - "type": "class TabDisplayPriority", + "m_behaviorName": { + "type": "std::string", "id": 0, "offset": 72, - "flags": 31, - "container": "Vector", - "dynamic": true, + "flags": 7, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 3043784178 + "hash": 3130754092 } } }, - "1926270215": { - "name": "class WizardCharacterBehavior", + "1925483783": { + "name": "class WizardCharacterBehavior*", "bases": [ "BehaviorInstance", "PropertyClass" ], - "hash": 1926270215, + "hash": 1925483783, "properties": { "m_behaviorTemplateNameID": { "type": "unsigned int", @@ -415080,597 +82492,13258 @@ "PP_Fairy_Fire": 1847789544, "MNT_Mustang_B": 1448793691, "PP_FireElfMyth": 1933609060, - "MNT_KT-BoatRide": 1560860110 + "MNT_KT-BoatRide": 1560860110, + "MNT_ShadowMagic": 2095978357, + "MNT_MardiGrasFloat_A": 1740674432, + "PP_ChineseNYSnake": 988201940, + "MNT_AnubisDog": 1995079956, + "PP_ShadowImp_A": 1604849432, + "PP_ShadowImp_B": 1604849438, + "PP_ShadowImp_C": 1604849436, + "MNT_ShadowMagic_B": 2093870965, + "MNT_ShadowMagic_C": 2093805429, + "Guest_KT_SE_Tritops_Warrior_I_01": 97516901, + "Guest_KT_SE_DS_Draconian_Model_01": 1916095079, + "Guest_KT_SE_Beetle_Scarab_C_01_L50": 1064004307, + "Guest_KT_SE_Roach_Warrior_C_03": 1872574203, + "Guest_KT_SE_Roach_Warrior_C_04": 1871918843, + "Guest_KT_SE_Roach_Warrior_C_05": 1871787771, + "Guest_KT_SE_Beetle_Scarab_C_01": 1353410759, + "Guest_KT_SE_Mander_Citizen_B_01_L50": 2044509396, + "Guest_KT_SE_Mander_CitizenF_B_01_L50": 164327682, + "Guest_KT_SE_Treant_Tormented_A_01": 1359800879, + "Guest_KT_SE_Treant_Base_A_01": 765512948, + "Guest_KT_SE_Mander_Citizen_F_D_05": 171244620, + "Guest_KT_SE_Mander_CitizenF_D_01": 163791037, + "Guest_KT_SE_Mander_CitizenF_D_02": 298008765, + "Guest_KT_SE_Mander_CitizenF_D_03": 432226493, + "Guest_KT_SE_Mander_CitizenF_D_04": 566444221, + "Guest_KT_SE_Mander_MummyF_A_01": 964349080, + "Guest_KT_SE_Mander_MummyF_A_02": 964480152, + "Guest_KT_SE_MC_Wraith_Model_01": 1101442118, + "Guest_KT_SE_Mander_CitizenF_B_02": 298000573, + "MNT_Wheelbarrow": 614248817, + "MNT_StubbornLlama": 221089074 + } + }, + "m_afterCombatDance": { + "type": "unsigned char", + "id": 19, + "offset": 184, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2012714323 + }, + "m_nSkinDecal2": { + "type": "unsigned short", + "id": 20, + "offset": 192, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1904828726 + }, + "m_extendedHairColor": { + "type": "unsigned char", + "id": 21, + "offset": 194, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1534273092 + }, + "m_extendedSkinDecal": { + "type": "unsigned short", + "id": 22, + "offset": 196, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2299798727 + }, + "m_newPlayerOptions": { + "type": "unsigned int", + "id": 23, + "offset": 200, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1564037328 + }, + "m_newPlayerOptions2": { + "type": "unsigned int", + "id": 24, + "offset": 204, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1895849858 + }, + "m_afterCombatVictoryDance": { + "type": "unsigned int", + "id": 25, + "offset": 188, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1655464256 + } + } + }, + "224841250": { + "name": "class MatchResult", + "bases": [ + "Result", + "PropertyClass" + ], + "hash": 224841250, + "properties": { + "m_requirements": { + "type": "class RequirementList*", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2840985510 + }, + "m_results": { + "type": "class ResultList*", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3776744154 + } + } + }, + "1078657337": { + "name": "enum PassInfo::AccessPassType", + "bases": [], + "hash": 1078657337, + "properties": {} + }, + "219206259": { + "name": "class SharedPointer", + "bases": [ + "CombatRule", + "PropertyClass" + ], + "hash": 219206259, + "properties": { + "m_alternateTurns": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1974126767 + }, + "m_pipsForBothTeamsAtOnce": { + "type": "bool", + "id": 1, + "offset": 73, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 289530295 + } + } + }, + "1074646514": { + "name": "class SharedPointer", + "bases": [ + "ServiceOptionBase", + "PropertyClass" + ], + "hash": 1074646514, + "properties": { + "m_serviceName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2206028813 + }, + "m_iconKey": { + "type": "std::string", + "id": 1, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2457138637 + }, + "m_displayKey": { + "type": "std::string", + "id": 2, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3023276954 + }, + "m_serviceIndex": { + "type": "unsigned int", + "id": 3, + "offset": 204, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2103126710 + }, + "m_forceInteract": { + "type": "bool", + "id": 4, + "offset": 200, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1705789564 + }, + "m_trainingIndex": { + "type": "int", + "id": 5, + "offset": 216, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 217389422 + }, + "m_trainingCost": { + "type": "int", + "id": 6, + "offset": 220, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 982588239 + }, + "m_spellName": { + "type": "std::string", + "id": 7, + "offset": 264, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2688485244 + }, + "m_bCanTrain": { + "type": "bool", + "id": 8, + "offset": 228, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1382854949 + }, + "m_requiredLevel": { + "type": "int", + "id": 9, + "offset": 224, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1148041971 + }, + "m_requirements": { + "type": "class SharedPointer", + "id": 10, + "offset": 232, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3043523229 + }, + "m_failedRequirement": { + "type": "class SharedPointer", + "id": 11, + "offset": 248, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2322583945 + } + } + }, + "1499111873": { + "name": "class ReagentShopOption", + "bases": [ + "ServiceOptionBase", + "PropertyClass" + ], + "hash": 1499111873, + "properties": { + "m_serviceName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2206028813 + }, + "m_iconKey": { + "type": "std::string", + "id": 1, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2457138637 + }, + "m_displayKey": { + "type": "std::string", + "id": 2, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3023276954 + }, + "m_serviceIndex": { + "type": "unsigned int", + "id": 3, + "offset": 204, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2103126710 + }, + "m_forceInteract": { + "type": "bool", + "id": 4, + "offset": 200, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1705789564 + } + } + }, + "641828861": { + "name": "class PolymorphImprovementRatingInfo*", + "bases": [ + "PropertyClass" + ], + "hash": 641828861, + "properties": { + "m_polymorphTemplateID": { + "type": "unsigned int", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1026295488 + }, + "m_personalRating": { + "type": "int", + "id": 1, + "offset": 76, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 209790915 + }, + "m_eventRating": { + "type": "int", + "id": 2, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2120160417 + } + } + }, + "215859203": { + "name": "class PvPMatchJoinQueueRequirements", + "bases": [ + "PropertyClass" + ], + "hash": 215859203, + "properties": { + "m_minLevel": { + "type": "int", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1496818518 + }, + "m_maxLevel": { + "type": "int", + "id": 1, + "offset": 76, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 146363288 + }, + "m_minEloRating": { + "type": "int", + "id": 2, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 979905379 + }, + "m_maxEloRating": { + "type": "int", + "id": 3, + "offset": 84, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 938224805 + }, + "m_minEloRank": { + "type": "int", + "id": 4, + "offset": 88, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1961133770 + }, + "m_maxEloRank": { + "type": "int", + "id": 5, + "offset": 92, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 194203532 + }, + "m_minMatchesPlayed": { + "type": "int", + "id": 6, + "offset": 96, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 650179746 + }, + "m_maxMatchesPlayed": { + "type": "int", + "id": 7, + "offset": 100, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1560790756 + }, + "m_requiredBadge": { + "type": "std::string", + "id": 8, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2633719087 + }, + "m_membersOnly": { + "type": "bool", + "id": 9, + "offset": 136, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1051823616 + }, + "m_friendsOnly": { + "type": "bool", + "id": 10, + "offset": 137, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1420401792 + } + } + }, + "1072381962": { + "name": "class RegisterPersonaCinematicAction", + "bases": [ + "CinematicAction", + "PropertyClass" + ], + "hash": 1072381962, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_persona": { + "type": "class Persona*", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2350440768 + } + } + }, + "641637387": { + "name": "class CharacterCreationInfo*", + "bases": [ + "PropertyClass" + ], + "hash": 641637387, + "properties": { + "m_templateID": { + "type": "int", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1075344419 + }, + "m_name": { + "type": "std::wstring", + "id": 1, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513345113 + }, + "m_shouldRename": { + "type": "bool", + "id": 2, + "offset": 128, + "flags": 24, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1741266202 + }, + "m_globalID": { + "type": "gid", + "id": 3, + "offset": 120, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 981205014 + }, + "m_userID": { + "type": "gid", + "id": 4, + "offset": 112, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1037989700 + }, + "m_quarantined": { + "type": "bool", + "id": 5, + "offset": 129, + "flags": 24, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 637025007 + } + } + }, + "1927687834": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1927687834, + "properties": { + "m_templateID": { + "type": "unsigned int", + "id": 0, + "offset": 72, + "flags": 33554495, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1286746870 + }, + "m_keepOnWishlistAfterPurchase": { + "type": "unsigned short", + "id": 1, + "offset": 76, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1244445710 + } + } + }, + "211793389": { + "name": "class ConfirmOption*", + "bases": [ + "ServiceOptionBase", + "PropertyClass" + ], + "hash": 211793389, + "properties": { + "m_serviceName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2206028813 + }, + "m_iconKey": { + "type": "std::string", + "id": 1, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2457138637 + }, + "m_displayKey": { + "type": "std::string", + "id": 2, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3023276954 + }, + "m_serviceIndex": { + "type": "unsigned int", + "id": 3, + "offset": 204, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2103126710 + }, + "m_forceInteract": { + "type": "bool", + "id": 4, + "offset": 200, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1705789564 + }, + "m_confirmMessageTitleKey": { + "type": "std::string", + "id": 5, + "offset": 216, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1941136953 + }, + "m_confirmMessageTitleKeyAdvancedMode": { + "type": "std::string", + "id": 6, + "offset": 248, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3219201588 + }, + "m_confirmMessageKey": { + "type": "std::string", + "id": 7, + "offset": 280, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2088579351 + }, + "m_confirmMessageKeyAdvancedMode": { + "type": "std::string", + "id": 8, + "offset": 312, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2417239570 + }, + "m_promptSound": { + "type": "std::string", + "id": 9, + "offset": 344, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3178681510 + }, + "m_promptSoundAdvancedMode": { + "type": "std::string", + "id": 10, + "offset": 376, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1739626529 + }, + "m_acceptKey": { + "type": "std::string", + "id": 11, + "offset": 472, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3325790708 + }, + "m_declineKey": { + "type": "std::string", + "id": 12, + "offset": 504, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1679578008 + }, + "m_optionToConfirm": { + "type": "class SharedPointer", + "id": 13, + "offset": 536, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1224791766 + }, + "m_ignoreOption": { + "type": "std::string", + "id": 14, + "offset": 408, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1667595832 + }, + "m_ignoreAdvancedModeOption": { + "type": "std::string", + "id": 15, + "offset": 440, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2665095027 + } + } + }, + "1069376939": { + "name": "class PvPMatchInfo*", + "bases": [ + "ArenaMatchInfo", + "PropertyClass" + ], + "hash": 1069376939, + "properties": { + "m_matchID": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1757621298 + }, + "m_matchNameID": { + "type": "unsigned int", + "id": 1, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1751361288 + }, + "m_teams": { + "type": "class SharedPointer", + "id": 2, + "offset": 96, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1984373608 + }, + "m_matchName": { + "type": "std::string", + "id": 3, + "offset": 112, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2061215721 + }, + "m_matchTitle": { + "type": "std::string", + "id": 4, + "offset": 144, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2918442218 + }, + "m_matchZoneID": { + "type": "gid", + "id": 5, + "offset": 176, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2026205966 + }, + "m_creatorID": { + "type": "gid", + "id": 6, + "offset": 88, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1051766037 + }, + "m_matchZone": { + "type": "std::string", + "id": 7, + "offset": 184, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2061662244 + }, + "m_startTime": { + "type": "int", + "id": 8, + "offset": 216, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1386968823 + }, + "m_status": { + "type": "int", + "id": 9, + "offset": 220, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 960781182 + }, + "m_friendsOnly": { + "type": "bool", + "id": 10, + "offset": 236, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1420401792 + }, + "m_tournamentNameID": { + "type": "unsigned int", + "id": 11, + "offset": 224, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1799846440 + }, + "m_leagueID": { + "type": "unsigned int", + "id": 12, + "offset": 228, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 692361645 + }, + "m_seasonID": { + "type": "unsigned int", + "id": 13, + "offset": 232, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 535260643 + }, + "m_bUpdateLadder": { + "type": "bool", + "id": 14, + "offset": 248, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1937525956 + }, + "m_maxPointsPerMatch": { + "type": "unsigned int", + "id": 15, + "offset": 240, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1397040900 + }, + "m_estimatedWeight": { + "type": "float", + "id": 16, + "offset": 244, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1374360127 + }, + "m_maxELOError": { + "type": "int", + "id": 17, + "offset": 252, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 318998922 + }, + "m_uniqueMatchID": { + "type": "std::string", + "id": 18, + "offset": 264, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3291026220 + }, + "m_pvpDuelModifiersTemplates": { + "type": "class SharedPointer", + "id": 19, + "offset": 296, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1193155411 + }, + "m_teamSize": { + "type": "unsigned int", + "id": 20, + "offset": 256, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2343388751 + }, + "m_joinQueueRequirements": { + "type": "class SharedPointer", + "id": 21, + "offset": 312, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2746080983 + }, + "m_timeLimitSec": { + "type": "unsigned int", + "id": 22, + "offset": 328, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 312519798 + }, + "m_useHistoricDiego": { + "type": "bool", + "id": 23, + "offset": 352, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1688842509 + }, + "m_ignoredList": { + "type": "gid", + "id": 24, + "offset": 336, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1850924028 + }, + "m_matchTimer": { + "type": "float", + "id": 25, + "offset": 356, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1510935909 + }, + "m_bonusTime": { + "type": "int", + "id": 26, + "offset": 360, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1757496496 + }, + "m_passPenalty": { + "type": "int", + "id": 27, + "offset": 364, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 982951662 + }, + "m_yellowTime": { + "type": "int", + "id": 28, + "offset": 368, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1017028741 + }, + "m_redTime": { + "type": "int", + "id": 29, + "offset": 372, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1909556708 + }, + "m_minTurnTime": { + "type": "int", + "id": 30, + "offset": 376, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 652524886 + }, + "m_effects": { + "type": "class SharedPointer", + "id": 31, + "offset": 384, + "flags": 31, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 804962647 + }, + "m_updateBattlePassPoints": { + "type": "bool", + "id": 32, + "offset": 408, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 713306342 + }, + "m_battlePassWinPoints": { + "type": "int", + "id": 33, + "offset": 412, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1252337240 + }, + "m_battlePassLosePoints": { + "type": "int", + "id": 34, + "offset": 416, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1400839869 + } + } + }, + "1499189811": { + "name": "class std::list >", + "bases": [], + "hash": 1499189811, + "properties": {} + }, + "1926595613": { + "name": "class SharedPointer", + "bases": [ + "CinematicAction", + "PropertyClass" + ], + "hash": 1926595613, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_cameras": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 131079, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 3217341687 + }, + "m_altcameras": { + "type": "std::string", + "id": 2, + "offset": 104, + "flags": 131079, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1882980152 + }, + "m_initialCameraName": { + "type": "std::string", + "id": 3, + "offset": 128, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2526319343 + }, + "m_camRel": { + "type": "enum CameraCutCinematicAction::kCameraRelative", + "id": 4, + "offset": 168, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 919962138, + "enum_options": { + "kNone": 0, + "kSigil": 1, + "kTarget": 2, + "kSource": 3, + "kActor": 4 + } + }, + "m_interpolationDuration": { + "type": "float", + "id": 5, + "offset": 160, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1458058437 + }, + "m_releaseInterpolationDuration": { + "type": "float", + "id": 6, + "offset": 164, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1807754278, + "enum_options": { + "__DEFAULT": "1.0" + } + }, + "m_bUseOrientationOverride": { + "type": "bool", + "id": 7, + "offset": 188, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1088002894 + }, + "m_overrideOrientation": { + "type": "class Vector3D", + "id": 8, + "offset": 192, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3267199758 + }, + "m_bUseLocationOverride": { + "type": "bool", + "id": 9, + "offset": 172, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1767170875 + }, + "m_overrideLocation": { + "type": "class Vector3D", + "id": 10, + "offset": 176, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3776417691 + }, + "m_namedActor": { + "type": "std::string", + "id": 11, + "offset": 208, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3413532537 + }, + "m_camScale": { + "type": "float", + "id": 12, + "offset": 240, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 979098224 + } + } + }, + "211793384": { + "name": "class ConfirmOption", + "bases": [ + "ServiceOptionBase", + "PropertyClass" + ], + "hash": 211793384, + "properties": { + "m_serviceName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2206028813 + }, + "m_iconKey": { + "type": "std::string", + "id": 1, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2457138637 + }, + "m_displayKey": { + "type": "std::string", + "id": 2, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3023276954 + }, + "m_serviceIndex": { + "type": "unsigned int", + "id": 3, + "offset": 204, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2103126710 + }, + "m_forceInteract": { + "type": "bool", + "id": 4, + "offset": 200, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1705789564 + }, + "m_confirmMessageTitleKey": { + "type": "std::string", + "id": 5, + "offset": 216, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1941136953 + }, + "m_confirmMessageTitleKeyAdvancedMode": { + "type": "std::string", + "id": 6, + "offset": 248, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3219201588 + }, + "m_confirmMessageKey": { + "type": "std::string", + "id": 7, + "offset": 280, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2088579351 + }, + "m_confirmMessageKeyAdvancedMode": { + "type": "std::string", + "id": 8, + "offset": 312, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2417239570 + }, + "m_promptSound": { + "type": "std::string", + "id": 9, + "offset": 344, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3178681510 + }, + "m_promptSoundAdvancedMode": { + "type": "std::string", + "id": 10, + "offset": 376, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1739626529 + }, + "m_acceptKey": { + "type": "std::string", + "id": 11, + "offset": 472, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3325790708 + }, + "m_declineKey": { + "type": "std::string", + "id": 12, + "offset": 504, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1679578008 + }, + "m_optionToConfirm": { + "type": "class SharedPointer", + "id": 13, + "offset": 536, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1224791766 + }, + "m_ignoreOption": { + "type": "std::string", + "id": 14, + "offset": 408, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1667595832 + }, + "m_ignoreAdvancedModeOption": { + "type": "std::string", + "id": 15, + "offset": 440, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2665095027 + } + } + }, + "1069281552": { + "name": "class WizTrainingInteraction", + "bases": [ + "ServiceOptionBase", + "PropertyClass" + ], + "hash": 1069281552, + "properties": { + "m_serviceName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2206028813 + }, + "m_iconKey": { + "type": "std::string", + "id": 1, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2457138637 + }, + "m_displayKey": { + "type": "std::string", + "id": 2, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3023276954 + }, + "m_serviceIndex": { + "type": "unsigned int", + "id": 3, + "offset": 204, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2103126710 + }, + "m_forceInteract": { + "type": "bool", + "id": 4, + "offset": 200, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1705789564 + } + } + }, + "1926567985": { + "name": "class PetGameInfo", + "bases": [ + "PropertyClass" + ], + "hash": 1926567985, + "properties": { + "m_isWebGame": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 944547943 + }, + "m_name": { + "type": "std::string", + "id": 1, + "offset": 160, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1717359772 + }, + "m_energyCosts": { + "type": "class SharedPointer", + "id": 2, + "offset": 192, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 3378376555 + }, + "m_trackChoices": { + "type": "class SharedPointer", + "id": 3, + "offset": 208, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1548152913 + }, + "m_gameIcon": { + "type": "std::string", + "id": 4, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3229574910 + }, + "m_trackIcons": { + "type": "std::string", + "id": 5, + "offset": 112, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2211683916 + }, + "m_trackToolTips": { + "type": "std::string", + "id": 6, + "offset": 136, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1898819214 + } + } + }, + "642743690": { + "name": "class SharedPointer", + "bases": [ + "MoveController::MoveCommand", + "PropertyClass" + ], + "hash": 642743690, + "properties": { + "m_vTarget": { + "type": "class Vector3D", + "id": 0, + "offset": 88, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3770499167 + }, + "m_kState": { + "type": "enum MoveState", + "id": 1, + "offset": 100, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 677163988, + "enum_options": { + "MS_WALKING": 0, + "MS_RUNNING": 1, + "MS_SWIMMING": 2, + "MS_FLYING": 3 + } + } + } + }, + "1069351219": { + "name": "class PetMatchInfo*", + "bases": [ + "ArenaMatchInfo", + "PropertyClass" + ], + "hash": 1069351219, + "properties": { + "m_matchID": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1757621298 + }, + "m_matchNameID": { + "type": "unsigned int", + "id": 1, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1751361288 + }, + "m_teams": { + "type": "class SharedPointer", + "id": 2, + "offset": 96, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1984373608 + }, + "m_matchName": { + "type": "std::string", + "id": 3, + "offset": 112, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2061215721 + }, + "m_matchTitle": { + "type": "std::string", + "id": 4, + "offset": 144, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2918442218 + }, + "m_matchZoneID": { + "type": "gid", + "id": 5, + "offset": 176, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2026205966 + }, + "m_creatorID": { + "type": "gid", + "id": 6, + "offset": 88, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1051766037 + }, + "m_matchZone": { + "type": "std::string", + "id": 7, + "offset": 184, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2061662244 + }, + "m_startTime": { + "type": "int", + "id": 8, + "offset": 216, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1386968823 + }, + "m_status": { + "type": "int", + "id": 9, + "offset": 220, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 960781182 + }, + "m_friendsOnly": { + "type": "bool", + "id": 10, + "offset": 236, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1420401792 + }, + "m_tournamentNameID": { + "type": "unsigned int", + "id": 11, + "offset": 224, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1799846440 + }, + "m_leagueID": { + "type": "unsigned int", + "id": 12, + "offset": 228, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 692361645 + }, + "m_seasonID": { + "type": "unsigned int", + "id": 13, + "offset": 232, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 535260643 + }, + "m_bUpdateLadder": { + "type": "bool", + "id": 14, + "offset": 248, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1937525956 + }, + "m_maxPointsPerMatch": { + "type": "unsigned int", + "id": 15, + "offset": 240, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1397040900 + }, + "m_estimatedWeight": { + "type": "float", + "id": 16, + "offset": 244, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1374360127 + }, + "m_maxELOError": { + "type": "int", + "id": 17, + "offset": 252, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 318998922 + }, + "m_uniqueMatchID": { + "type": "std::string", + "id": 18, + "offset": 264, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3291026220 + }, + "m_pvpDuelModifiersTemplates": { + "type": "class SharedPointer", + "id": 19, + "offset": 296, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1193155411 + }, + "m_teamSize": { + "type": "unsigned int", + "id": 20, + "offset": 256, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2343388751 + }, + "m_minRank": { + "type": "int", + "id": 21, + "offset": 312, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2062988042 + }, + "m_maxRank": { + "type": "int", + "id": 22, + "offset": 316, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1761764108 + }, + "m_trackRank": { + "type": "int", + "id": 23, + "offset": 320, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1258472859 + }, + "m_pTrackInfo": { + "type": "class SharedPointer", + "id": 24, + "offset": 336, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3026194809 + }, + "m_ratingBrackets": { + "type": "class ResultList*", + "id": 25, + "offset": 328, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2173049436 + } + } + }, + "1501671386": { + "name": "class SharedPointer", + "bases": [ + "CinematicActor", + "PropertyClass" + ], + "hash": 1501671386, + "properties": {} + }, + "214606636": { + "name": "class HousingPetBehavior*", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 214606636, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + } + } + }, + "1501324967": { + "name": "class SharedPointer", + "bases": [ + "ElixirBenefitEffect", + "GameEffectBase", + "PropertyClass" + ], + "hash": 1501324967, + "properties": { + "m_currentTickCount": { + "type": "double", + "id": 0, + "offset": 80, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2533274692 + }, + "m_effectNameID": { + "type": "unsigned int", + "id": 1, + "offset": 96, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1204067144 + }, + "m_bIsOnPet": { + "type": "bool", + "id": 2, + "offset": 73, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 522593303 + }, + "m_originatorID": { + "type": "gid", + "id": 3, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1131810019 + }, + "m_itemSlotID": { + "type": "unsigned int", + "id": 4, + "offset": 112, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1895747595 + }, + "m_internalID": { + "type": "int", + "id": 5, + "offset": 92, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1643137924 + }, + "m_endTime": { + "type": "unsigned int", + "id": 6, + "offset": 88, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 716479635 + }, + "m_flags": { + "type": "unsigned int", + "id": 7, + "offset": 128, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1005801050 + } + } + }, + "643033356": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 643033356, + "properties": { + "m_macAddress": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3156887154 + }, + "m_systemMemory": { + "type": "unsigned short", + "id": 1, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 852349606 + }, + "m_freeDiskSpace": { + "type": "unsigned short", + "id": 2, + "offset": 106, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1250782497 + }, + "m_processorArchitecture": { + "type": "unsigned short", + "id": 3, + "offset": 108, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2088980971 + }, + "m_numProcessors": { + "type": "char", + "id": 4, + "offset": 110, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 706266711 + }, + "m_processorType": { + "type": "unsigned int", + "id": 5, + "offset": 112, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1199310607 + }, + "m_processorLevel": { + "type": "unsigned short", + "id": 6, + "offset": 116, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 929266784 + }, + "m_processorRevision": { + "type": "unsigned short", + "id": 7, + "offset": 118, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1573335831 + }, + "m_vendorID": { + "type": "unsigned short", + "id": 8, + "offset": 120, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2522209987 + }, + "m_deviceID": { + "type": "unsigned short", + "id": 9, + "offset": 122, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2360466085 + }, + "m_subSysID": { + "type": "unsigned int", + "id": 10, + "offset": 124, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1872946051 + }, + "m_textureMemory": { + "type": "unsigned short", + "id": 11, + "offset": 128, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1738572338 + }, + "m_hwTransformAndLight": { + "type": "bool", + "id": 12, + "offset": 130, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2100427321 + }, + "m_dynamicTextures": { + "type": "bool", + "id": 13, + "offset": 131, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2010245916 + }, + "m_renderToTexture_A8R8G8B8": { + "type": "bool", + "id": 14, + "offset": 132, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1029952834 + }, + "m_renderToTexture_A8B8G8R8": { + "type": "bool", + "id": 15, + "offset": 133, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 403787074 + }, + "m_textureFromSystemMemory": { + "type": "bool", + "id": 16, + "offset": 134, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1414058230 + }, + "m_textureFromVideoMemory": { + "type": "bool", + "id": 17, + "offset": 135, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 501373448 + }, + "m_maxTextureBlendStages": { + "type": "char", + "id": 18, + "offset": 136, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 783320407 + }, + "m_maxActiveLights": { + "type": "char", + "id": 19, + "offset": 137, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1302798081 + }, + "m_maxSimultaneousTextures": { + "type": "char", + "id": 20, + "offset": 138, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1083967879 + }, + "m_maxTextureWidth": { + "type": "unsigned short", + "id": 21, + "offset": 140, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1649109567 + }, + "m_maxTextureHeight": { + "type": "unsigned short", + "id": 22, + "offset": 142, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1751799512 + }, + "m_vertexShaderVersion": { + "type": "unsigned int", + "id": 23, + "offset": 144, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2017875080 + }, + "m_pixelShaderVersion": { + "type": "unsigned int", + "id": 24, + "offset": 148, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2108833228 + }, + "m_numMonitors": { + "type": "int", + "id": 25, + "offset": 152, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 452729285 + }, + "m_mouseButtons": { + "type": "int", + "id": 26, + "offset": 156, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 980265490 + }, + "m_screenResX": { + "type": "unsigned short", + "id": 27, + "offset": 160, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 857804618 + }, + "m_screenResY": { + "type": "unsigned short", + "id": 28, + "offset": 162, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 857804619 + }, + "m_packedOSVersion": { + "type": "unsigned int", + "id": 29, + "offset": 164, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 701472349 + }, + "m_packedOSServicePack": { + "type": "unsigned int", + "id": 30, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 888199623 + }, + "m_hostedOS": { + "type": "bool", + "id": 31, + "offset": 172, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 409932636 + }, + "m_flashPluginInstalled": { + "type": "bool", + "id": 32, + "offset": 173, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 557011344 + }, + "m_isAdministrator": { + "type": "bool", + "id": 33, + "offset": 174, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1925580112 + }, + "m_tabletPC": { + "type": "bool", + "id": 34, + "offset": 175, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1302169794 + }, + "m_touchCapabilites": { + "type": "int", + "id": 35, + "offset": 176, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 422911998 + }, + "m_hwID": { + "type": "std::string", + "id": 36, + "offset": 184, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1717166887 + }, + "m_hwSerials": { + "type": "std::string", + "id": 37, + "offset": 216, + "flags": 31, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2604793293 + } + } + }, + "1927004441": { + "name": "class SharedPointer", + "bases": [ + "ClearTopTeamCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 1927004441, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_interpDuration": { + "type": "float", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237711951 + } + } + }, + "213549285": { + "name": "class AnimationBehavior", + "bases": [ + "RenderBehavior", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 213549285, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + } + } + }, + "1501176517": { + "name": "class ReqPvPCombat", + "bases": [ + "ConditionalSpellEffectRequirement", + "Requirement", + "PropertyClass" + ], + "hash": 1501176517, + "properties": { + "m_applyNOT": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1746328074, + "enum_options": { + "__DEFAULT": 0 + } + }, + "m_operator": { + "type": "enum Requirement::Operator", + "id": 1, + "offset": 76, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2672792317, + "enum_options": { + "ROP_AND": 0, + "ROP_OR": 1, + "__DEFAULT": "ROP_AND" + } + }, + "m_targetType": { + "type": "enum ConditionalSpellEffectRequirement::RequirementTarget", + "id": 2, + "offset": 80, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547737902, + "enum_options": { + "RT_Caster": 0, + "RT_Target": 1 + } + } + } + }, + "1071494124": { + "name": "struct GUISystem::Message", + "bases": [], + "hash": 1071494124, + "properties": {} + }, + "1069731765": { + "name": "class CastleMagicManager*", + "bases": [ + "PropertyClass" + ], + "hash": 1069731765, + "properties": { + "m_castleMagicItemList": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 3812758310 + }, + "m_castleMagicTimerList": { + "type": "class SharedPointer", + "id": 1, + "offset": 152, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2420724439 + }, + "m_randomNumberSetBuffer": { + "type": "std::string", + "id": 2, + "offset": 360, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1824603147 + }, + "m_randomNumberSetIndexList": { + "type": "gid", + "id": 3, + "offset": 416, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 678388482 + }, + "m_defaultCameraTime": { + "type": "float", + "id": 4, + "offset": 528, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 617092724 + }, + "m_setPlayAsPet": { + "type": "bool", + "id": 5, + "offset": 533, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 124615314 + } + } + }, + "643272000": { + "name": "class DespawnTimedBehaviorTemplate*", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 643272000, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + }, + "m_lifespan": { + "type": "std::string", + "id": 1, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3042809453 + } + } + }, + "1927837352": { + "name": "class TabDisplayPriorityList*", + "bases": [ + "PropertyClass" + ], + "hash": 1927837352, + "properties": { + "m_tabPriList": { + "type": "class TabDisplayPriority", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 3043784178 + } + } + }, + "215531523": { + "name": "class PvPMatchJoinQueueRequirements*", + "bases": [ + "PropertyClass" + ], + "hash": 215531523, + "properties": { + "m_minLevel": { + "type": "int", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1496818518 + }, + "m_maxLevel": { + "type": "int", + "id": 1, + "offset": 76, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 146363288 + }, + "m_minEloRating": { + "type": "int", + "id": 2, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 979905379 + }, + "m_maxEloRating": { + "type": "int", + "id": 3, + "offset": 84, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 938224805 + }, + "m_minEloRank": { + "type": "int", + "id": 4, + "offset": 88, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1961133770 + }, + "m_maxEloRank": { + "type": "int", + "id": 5, + "offset": 92, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 194203532 + }, + "m_minMatchesPlayed": { + "type": "int", + "id": 6, + "offset": 96, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 650179746 + }, + "m_maxMatchesPlayed": { + "type": "int", + "id": 7, + "offset": 100, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1560790756 + }, + "m_requiredBadge": { + "type": "std::string", + "id": 8, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2633719087 + }, + "m_membersOnly": { + "type": "bool", + "id": 9, + "offset": 136, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1051823616 + }, + "m_friendsOnly": { + "type": "bool", + "id": 10, + "offset": 137, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1420401792 + } + } + }, + "1501657358": { + "name": "class SharedPointer", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1501657358, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_bankExpansions": { + "type": "int", + "id": 1, + "offset": 112, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1369075454 + }, + "m_friendListExpansions": { + "type": "int", + "id": 2, + "offset": 116, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1057398198 + } + } + }, + "643140551": { + "name": "class ClientAnimateActorCinematicAction*", + "bases": [ + "AnimateActorCinematicAction", + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 643140551, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + }, + "m_animation": { + "type": "std::string", + "id": 2, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3431428731 + }, + "m_backupAnimation": { + "type": "std::string", + "id": 3, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1661537937 + }, + "m_default": { + "type": "bool", + "id": 4, + "offset": 184, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1014207576 + }, + "m_evenWhileDead": { + "type": "bool", + "id": 5, + "offset": 185, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2100875368 + }, + "m_fadeOutAfter": { + "type": "bool", + "id": 6, + "offset": 186, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2006083917 + }, + "m_startsImportantAnimations": { + "type": "bool", + "id": 7, + "offset": 187, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 734711685 + }, + "m_forcesStageToWait": { + "type": "bool", + "id": 8, + "offset": 188, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 74507905 + }, + "m_storeAnimForLateComers": { + "type": "bool", + "id": 9, + "offset": 190, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 634303291 + } + } + }, + "1071753571": { + "name": "class WizStatisticOverrideEffectTemplate*", + "bases": [ + "StatisticEffectTemplate", + "GameEffectTemplate", + "PropertyClass" + ], + "hash": 1071753571, + "properties": { + "m_effectName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2029161513 + }, + "m_effectCategory": { + "type": "std::string", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1852673222 + }, + "m_sortOrder": { + "type": "int", + "id": 2, + "offset": 148, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1411218206 + }, + "m_duration": { + "type": "double", + "id": 3, + "offset": 192, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2727932435 + }, + "m_stackingCategories": { + "type": "std::string", + "id": 4, + "offset": 160, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1774497525 + }, + "m_isPersistent": { + "type": "bool", + "id": 5, + "offset": 153, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 923861920 + }, + "m_bIsOnPet": { + "type": "bool", + "id": 6, + "offset": 154, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 522593303 + }, + "m_isPublic": { + "type": "bool", + "id": 7, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1728439822 + }, + "m_visualEffectAddName": { + "type": "std::string", + "id": 8, + "offset": 200, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3382086694 + }, + "m_visualEffectRemoveName": { + "type": "std::string", + "id": 9, + "offset": 232, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1541697323 + }, + "m_onAddFunctorName": { + "type": "std::string", + "id": 10, + "offset": 280, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1561843107 + }, + "m_onRemoveFunctorName": { + "type": "std::string", + "id": 11, + "offset": 312, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2559017864 + }, + "m_stackingRule": { + "type": "enum STACKING_RULE", + "id": 12, + "offset": 144, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 431568889, + "enum_options": { + "STACKING_ALLOWED": 0, + "STACKING_NOSTACK": 1, + "STACKING_REPLACE": 2 + } + }, + "m_baseHitpoints": { + "type": "int", + "id": 13, + "offset": 360, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 596105911 + }, + "m_baseMana": { + "type": "int", + "id": 14, + "offset": 364, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1475495442 + }, + "m_xpPercentIncrease": { + "type": "float", + "id": 15, + "offset": 368, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1051081338 + }, + "m_goldPercent": { + "type": "float", + "id": 16, + "offset": 372, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1095720878 + }, + "m_wispBonusPercent": { + "type": "float", + "id": 17, + "offset": 376, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1304386546 + }, + "m_powerPipBonusPercent": { + "type": "float", + "id": 18, + "offset": 380, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1671446341 + }, + "m_shadowPipBonusPercent": { + "type": "float", + "id": 19, + "offset": 384, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1426533310 + }, + "m_shadowPipRating": { + "type": "float", + "id": 20, + "offset": 388, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 507126123 + }, + "m_archmastery": { + "type": "float", + "id": 21, + "offset": 392, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1963579610 + }, + "m_stunResistancePercent": { + "type": "float", + "id": 22, + "offset": 396, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1868382627 + }, + "m_balanceMastery": { + "type": "int", + "id": 23, + "offset": 400, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 149062181 + }, + "m_deathMastery": { + "type": "int", + "id": 24, + "offset": 404, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1421218661 + }, + "m_fireMastery": { + "type": "int", + "id": 25, + "offset": 408, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1431794949 + }, + "m_iceMastery": { + "type": "int", + "id": 26, + "offset": 412, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 704864240 + }, + "m_lifeMastery": { + "type": "int", + "id": 27, + "offset": 416, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2142136447 + }, + "m_mythMastery": { + "type": "int", + "id": 28, + "offset": 420, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1766317185 + }, + "m_stormMastery": { + "type": "int", + "id": 29, + "offset": 424, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1883988244 + }, + "m_school": { + "type": "std::string", + "id": 30, + "offset": 432, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2438566051 + }, + "m_pipConversionRating": { + "type": "float", + "id": 31, + "offset": 464, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 246855691 + }, + "m_criticalHitRating": { + "type": "float", + "id": 32, + "offset": 468, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1978690540 + }, + "m_blockRating": { + "type": "float", + "id": 33, + "offset": 472, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2088486759 + }, + "m_dmgBonusPercent": { + "type": "float", + "id": 34, + "offset": 476, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 194501159 + }, + "m_dmgBonusFlat": { + "type": "float", + "id": 35, + "offset": 480, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1837769725 + }, + "m_accBonusPercent": { + "type": "float", + "id": 36, + "offset": 484, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 331557526 + }, + "m_apBonusPercent": { + "type": "float", + "id": 37, + "offset": 488, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1228557984 + }, + "m_dmgReducePercent": { + "type": "float", + "id": 38, + "offset": 492, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1426050712 + }, + "m_dmgReduceFlat": { + "type": "float", + "id": 39, + "offset": 496, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1218184718 + }, + "m_accReducePercent": { + "type": "float", + "id": 40, + "offset": 500, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1653943527 + }, + "m_healBonusPercent": { + "type": "float", + "id": 41, + "offset": 504, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 562313577 + }, + "m_healIncBonusPercent": { + "type": "float", + "id": 42, + "offset": 508, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2182535587 + }, + "m_fishingLuckBonusPercent": { + "type": "float", + "id": 43, + "offset": 512, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1363349254 + } + } + }, + "1929567265": { + "name": "class PartyObserver*", + "bases": [ + "GroupObserver", + "PropertyClass" + ], + "hash": 1929567265, + "properties": {} + }, + "218034742": { + "name": "class PetCastEffectActorCinematicAction", + "bases": [ + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 218034742, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + } + } + }, + "1071752035": { + "name": "class WizStatisticOverrideEffectTemplate", + "bases": [ + "StatisticEffectTemplate", + "GameEffectTemplate", + "PropertyClass" + ], + "hash": 1071752035, + "properties": { + "m_effectName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2029161513 + }, + "m_effectCategory": { + "type": "std::string", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1852673222 + }, + "m_sortOrder": { + "type": "int", + "id": 2, + "offset": 148, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1411218206 + }, + "m_duration": { + "type": "double", + "id": 3, + "offset": 192, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2727932435 + }, + "m_stackingCategories": { + "type": "std::string", + "id": 4, + "offset": 160, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1774497525 + }, + "m_isPersistent": { + "type": "bool", + "id": 5, + "offset": 153, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 923861920 + }, + "m_bIsOnPet": { + "type": "bool", + "id": 6, + "offset": 154, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 522593303 + }, + "m_isPublic": { + "type": "bool", + "id": 7, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1728439822 + }, + "m_visualEffectAddName": { + "type": "std::string", + "id": 8, + "offset": 200, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3382086694 + }, + "m_visualEffectRemoveName": { + "type": "std::string", + "id": 9, + "offset": 232, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1541697323 + }, + "m_onAddFunctorName": { + "type": "std::string", + "id": 10, + "offset": 280, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1561843107 + }, + "m_onRemoveFunctorName": { + "type": "std::string", + "id": 11, + "offset": 312, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2559017864 + }, + "m_stackingRule": { + "type": "enum STACKING_RULE", + "id": 12, + "offset": 144, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 431568889, + "enum_options": { + "STACKING_ALLOWED": 0, + "STACKING_NOSTACK": 1, + "STACKING_REPLACE": 2 + } + }, + "m_baseHitpoints": { + "type": "int", + "id": 13, + "offset": 360, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 596105911 + }, + "m_baseMana": { + "type": "int", + "id": 14, + "offset": 364, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1475495442 + }, + "m_xpPercentIncrease": { + "type": "float", + "id": 15, + "offset": 368, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1051081338 + }, + "m_goldPercent": { + "type": "float", + "id": 16, + "offset": 372, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1095720878 + }, + "m_wispBonusPercent": { + "type": "float", + "id": 17, + "offset": 376, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1304386546 + }, + "m_powerPipBonusPercent": { + "type": "float", + "id": 18, + "offset": 380, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1671446341 + }, + "m_shadowPipBonusPercent": { + "type": "float", + "id": 19, + "offset": 384, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1426533310 + }, + "m_shadowPipRating": { + "type": "float", + "id": 20, + "offset": 388, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 507126123 + }, + "m_archmastery": { + "type": "float", + "id": 21, + "offset": 392, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1963579610 + }, + "m_stunResistancePercent": { + "type": "float", + "id": 22, + "offset": 396, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1868382627 + }, + "m_balanceMastery": { + "type": "int", + "id": 23, + "offset": 400, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 149062181 + }, + "m_deathMastery": { + "type": "int", + "id": 24, + "offset": 404, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1421218661 + }, + "m_fireMastery": { + "type": "int", + "id": 25, + "offset": 408, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1431794949 + }, + "m_iceMastery": { + "type": "int", + "id": 26, + "offset": 412, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 704864240 + }, + "m_lifeMastery": { + "type": "int", + "id": 27, + "offset": 416, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2142136447 + }, + "m_mythMastery": { + "type": "int", + "id": 28, + "offset": 420, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1766317185 + }, + "m_stormMastery": { + "type": "int", + "id": 29, + "offset": 424, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1883988244 + }, + "m_school": { + "type": "std::string", + "id": 30, + "offset": 432, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2438566051 + }, + "m_pipConversionRating": { + "type": "float", + "id": 31, + "offset": 464, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 246855691 + }, + "m_criticalHitRating": { + "type": "float", + "id": 32, + "offset": 468, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1978690540 + }, + "m_blockRating": { + "type": "float", + "id": 33, + "offset": 472, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2088486759 + }, + "m_dmgBonusPercent": { + "type": "float", + "id": 34, + "offset": 476, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 194501159 + }, + "m_dmgBonusFlat": { + "type": "float", + "id": 35, + "offset": 480, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1837769725 + }, + "m_accBonusPercent": { + "type": "float", + "id": 36, + "offset": 484, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 331557526 + }, + "m_apBonusPercent": { + "type": "float", + "id": 37, + "offset": 488, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1228557984 + }, + "m_dmgReducePercent": { + "type": "float", + "id": 38, + "offset": 492, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1426050712 + }, + "m_dmgReduceFlat": { + "type": "float", + "id": 39, + "offset": 496, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1218184718 + }, + "m_accReducePercent": { + "type": "float", + "id": 40, + "offset": 500, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1653943527 + }, + "m_healBonusPercent": { + "type": "float", + "id": 41, + "offset": 504, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 562313577 + }, + "m_healIncBonusPercent": { + "type": "float", + "id": 42, + "offset": 508, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2182535587 + }, + "m_fishingLuckBonusPercent": { + "type": "float", + "id": 43, + "offset": 512, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1363349254 + } + } + }, + "1502144865": { + "name": "class NPCDialogEntry*", + "bases": [ + "ActorDialogEntry", + "PropertyClass" + ], + "hash": 1502144865, + "properties": { + "m_requirements": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 263, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3043523229 + }, + "m_dialog": { + "type": "std::string", + "id": 1, + "offset": 88, + "flags": 8388639, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1858395851 + }, + "m_picture": { + "type": "std::string", + "id": 2, + "offset": 120, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3128322903 + }, + "m_soundFile": { + "type": "std::string", + "id": 3, + "offset": 152, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2276870852 + }, + "m_action": { + "type": "std::string", + "id": 4, + "offset": 184, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1734553689 + }, + "m_dialogEvent": { + "type": "std::string", + "id": 5, + "offset": 216, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2707957549 + }, + "m_actorTemplateID": { + "type": "unsigned int", + "id": 6, + "offset": 248, + "flags": 33554463, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2134265679 + }, + "m_cameraName": { + "type": "std::string", + "id": 7, + "offset": 256, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3252786917 + }, + "m_interpolationDuration": { + "type": "float", + "id": 8, + "offset": 312, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1458058437, + "enum_options": { + "__DEFAULT": "1.0" + } + }, + "m_cameraOffsetX": { + "type": "float", + "id": 9, + "offset": 288, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1515912895 + }, + "m_cameraOffsetY": { + "type": "float", + "id": 10, + "offset": 292, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1515912896 + }, + "m_cameraOffsetZ": { + "type": "float", + "id": 11, + "offset": 296, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1515912897 + }, + "m_pitch": { + "type": "float", + "id": 12, + "offset": 304, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 896371695 + }, + "m_yaw": { + "type": "float", + "id": 13, + "offset": 300, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 357256328 + }, + "m_roll": { + "type": "float", + "id": 14, + "offset": 308, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 310020272 + }, + "m_cameraShakeType": { + "type": "std::string", + "id": 15, + "offset": 320, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1754128882, + "enum_options": { + "": 0, + "Constant": "Constant", + "Quake": "Quake", + "Thud": "Thud", + "End": "End", + "__DEFAULT": 0 + } + }, + "m_cameraShakeDuration": { + "type": "float", + "id": 16, + "offset": 352, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 316581010, + "enum_options": { + "__DEFAULT": "0.0" + } + }, + "m_cameraShakeAmplitude": { + "type": "float", + "id": 17, + "offset": 356, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2179718321, + "enum_options": { + "__DEFAULT": "0.0" + } + }, + "m_bypassCameraOnReview": { + "type": "bool", + "id": 18, + "offset": 360, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1412905725, + "enum_options": { + "__DEFAULT": 1 + } + }, + "m_cameraZoneName": { + "type": "std::string", + "id": 19, + "offset": 368, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3131581121 + }, + "m_duration": { + "type": "float", + "id": 20, + "offset": 400, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 920323453 + }, + "m_delay": { + "type": "float", + "id": 21, + "offset": 404, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 881988134 + }, + "m_cameraHidePlayers": { + "type": "int", + "id": 22, + "offset": 408, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 28533149 + }, + "m_walkAwayNpcTemplateID": { + "type": "gid", + "id": 23, + "offset": 416, + "flags": 33554719, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 942697507 + }, + "m_walkAwayExitDirectionInDegrees": { + "type": "float", + "id": 24, + "offset": 424, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 396419785 + }, + "m_walkAwayFadeTime": { + "type": "float", + "id": 25, + "offset": 428, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 822405687 + }, + "m_walkAwayUseCurrentFacing": { + "type": "bool", + "id": 26, + "offset": 432, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1464855436 + }, + "m_standInPlayerTag": { + "type": "std::string", + "id": 27, + "offset": 440, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1590121141 + }, + "m_fadeOutCamera": { + "type": "bool", + "id": 28, + "offset": 472, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1766121252 + }, + "m_snapCameraToPlayerAtExit": { + "type": "bool", + "id": 29, + "offset": 473, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1323369645 + }, + "m_secondaryCameraName": { + "type": "std::string", + "id": 30, + "offset": 480, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1670705581 + }, + "m_secondaryInterpolationDuration": { + "type": "float", + "id": 31, + "offset": 512, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1873822349 + }, + "m_npcStandInList": { + "type": "std::string", + "id": 32, + "offset": 520, + "flags": 287, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2076308937 + }, + "m_dialogAnimationList": { + "type": "std::string", + "id": 33, + "offset": 536, + "flags": 287, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2444806919 + }, + "m_dialogTurningList": { + "type": "std::string", + "id": 34, + "offset": 552, + "flags": 287, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2782869422 + }, + "m_npcYawOffsetInDegrees": { + "type": "float", + "id": 35, + "offset": 568, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1395075270 + }, + "m_allowPlayerToMove": { + "type": "bool", + "id": 36, + "offset": 572, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 225101337 + }, + "m_soundEffectFile": { + "type": "std::string", + "id": 37, + "offset": 576, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3235157265 + }, + "m_musicFile": { + "type": "std::string", + "id": 38, + "offset": 608, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2963686620 + }, + "m_nonStackableMusic": { + "type": "bool", + "id": 39, + "offset": 640, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1675595625 + }, + "m_nonRepeatableMusic": { + "type": "bool", + "id": 40, + "offset": 641, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2138315572 + }, + "m_playMusicAtSFXVolume": { + "type": "bool", + "id": 41, + "offset": 642, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2130871816 + }, + "m_soundEffectDelay": { + "type": "float", + "id": 42, + "offset": 644, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1586382460 + }, + "m_musicDelay": { + "type": "float", + "id": 43, + "offset": 648, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1217785767 + }, + "m_musicFadeTime": { + "type": "float", + "id": 44, + "offset": 652, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 502925015 + }, + "m_dontReleaseCameraAtExit": { + "type": "bool", + "id": 45, + "offset": 474, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1107508961 + }, + "m_disableBackButton": { + "type": "bool", + "id": 46, + "offset": 656, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 122355444 + }, + "m_enableExitButton": { + "type": "bool", + "id": 47, + "offset": 657, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1824693936 + }, + "m_cameraFadeType": { + "type": "std::string", + "id": 48, + "offset": 664, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2021935382, + "enum_options": { + "": 0, + "In Out Black": "In Out Black", + "In Out White": "In Out White", + "In Black": "In Black", + "Out Black": "Out Black", + "In White": "In White", + "Out White": "Out White", + "__DEFAULT": 0 + } + }, + "m_cameraFadeTime": { + "type": "float", + "id": 49, + "offset": 696, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 614419391, + "enum_options": { + "__DEFAULT": "0.5" + } + }, + "m_idleAnimation": { + "type": "std::string", + "id": 50, + "offset": 704, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2900487193 + }, + "m_spamTime": { + "type": "float", + "id": 51, + "offset": 736, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1727215063, + "enum_options": { + "__DEFAULT": "1.0" + } + }, + "m_playSoundIfSpamming": { + "type": "bool", + "id": 52, + "offset": 740, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 690006749, + "enum_options": { + "__DEFAULT": 1 + } + }, + "m_playMusicIfSpamming": { + "type": "bool", + "id": 53, + "offset": 741, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 538564341, + "enum_options": { + "__DEFAULT": 1 + } + }, + "m_stopMusicFadeTime": { + "type": "float", + "id": 54, + "offset": 744, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 696390845, + "enum_options": { + "__DEFAULT": "0.0" + } + }, + "m_restartMusicFadeTime": { + "type": "float", + "id": 55, + "offset": 748, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 709379292, + "enum_options": { + "__DEFAULT": "0.0" + } + }, + "m_meetsRequirements": { + "type": "bool", + "id": 56, + "offset": 752, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 296443061 + }, + "m_secondaryCameraInitalDelay": { + "type": "float", + "id": 57, + "offset": 516, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1812842232 + }, + "m_displayButtonsOnTimedDialog": { + "type": "bool", + "id": 58, + "offset": 753, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 569741400 + }, + "m_personaName": { + "type": "std::string", + "id": 59, + "offset": 776, + "flags": 268435487, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2514452244, + "enum_options": { + "__BASECLASS": "Persona" + } + }, + "m_nameOverride": { + "type": "std::string", + "id": 60, + "offset": 840, + "flags": 8388639, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2854590748 + }, + "m_nameSTKey": { + "type": "std::string", + "id": 61, + "offset": 808, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3618744844 + }, + "m_guiDisplay": { + "type": "std::string", + "id": 62, + "offset": 872, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3134563510 + }, + "m_maxTimeSeconds": { + "type": "int", + "id": 63, + "offset": 904, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1762503230 + }, + "m_invisible": { + "type": "bool", + "id": 64, + "offset": 908, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2011940728 + } + } + }, + "643371492": { + "name": "class SharedPointer", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 643371492, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_gearList": { + "type": "std::string", + "id": 1, + "offset": 112, + "flags": 65567, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1498902582 + } + } + }, + "1929098304": { + "name": "class Ladder*", + "bases": [ + "CoreObject", + "PropertyClass" + ], + "hash": 1929098304, + "properties": { + "m_inactiveBehaviors": { + "type": "class SharedPointer", + "id": 0, + "offset": 224, + "flags": 31, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1850812559 + }, + "m_globalID.m_full": { + "type": "unsigned __int64", + "id": 1, + "offset": 72, + "flags": 16777247, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2312465444 + }, + "m_permID": { + "type": "unsigned __int64", + "id": 2, + "offset": 80, + "flags": 16777247, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1298909658 + }, + "m_location": { + "type": "class Vector3D", + "id": 3, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2239683611 + }, + "m_orientation": { + "type": "class Vector3D", + "id": 4, + "offset": 180, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2344058766 + }, + "m_fScale": { + "type": "float", + "id": 5, + "offset": 196, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 503137701 + }, + "m_templateID.m_full": { + "type": "unsigned __int64", + "id": 6, + "offset": 96, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 633907631 + }, + "m_debugName": { + "type": "std::string", + "id": 7, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3553984419 + }, + "m_displayKey": { + "type": "std::string", + "id": 8, + "offset": 136, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3023276954 + }, + "m_zoneTagID": { + "type": "unsigned int", + "id": 9, + "offset": 344, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 965291410 + }, + "m_speedMultiplier": { + "type": "short", + "id": 10, + "offset": 192, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 123130076 + }, + "m_nMobileID": { + "type": "unsigned short", + "id": 11, + "offset": 194, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1054318939 + }, + "m_characterID": { + "type": "gid", + "id": 12, + "offset": 432, + "flags": 33554463, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 210498386 + }, + "m_gameID": { + "type": "gid", + "id": 13, + "offset": 416, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 469020959 + }, + "m_gameNameID": { + "type": "unsigned int", + "id": 14, + "offset": 424, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 829938293 + }, + "m_gamesWon": { + "type": "int", + "id": 15, + "offset": 440, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1733371579 + }, + "m_gamesLost": { + "type": "int", + "id": 16, + "offset": 444, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1363461609 + }, + "m_gamesTied": { + "type": "int", + "id": 17, + "offset": 448, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1363742093 + }, + "m_gamesPlayed": { + "type": "int", + "id": 18, + "offset": 452, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 954596038 + }, + "m_score": { + "type": "int", + "id": 19, + "offset": 456, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 809507734 + } + } + }, + "217538642": { + "name": "class ClientObjectRemapBehavior", + "bases": [ + "ObjectRemapBehavior", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 217538642, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + } + } + }, + "643278144": { + "name": "class DespawnTimedBehaviorTemplate", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 643278144, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + }, + "m_lifespan": { + "type": "std::string", + "id": 1, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3042809453 + } + } + }, + "1928665059": { + "name": "class WhirlyBurlyOption", + "bases": [ + "ServiceOptionBase", + "PropertyClass" + ], + "hash": 1928665059, + "properties": { + "m_serviceName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2206028813 + }, + "m_iconKey": { + "type": "std::string", + "id": 1, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2457138637 + }, + "m_displayKey": { + "type": "std::string", + "id": 2, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3023276954 + }, + "m_serviceIndex": { + "type": "unsigned int", + "id": 3, + "offset": 204, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2103126710 + }, + "m_forceInteract": { + "type": "bool", + "id": 4, + "offset": 200, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1705789564 + } + } + }, + "216582048": { + "name": "class NameOverrideBehavior*", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 216582048, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_wsNameOverride": { + "type": "std::wstring", + "id": 1, + "offset": 120, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2131249091 + } + } + }, + "1928119170": { + "name": "class DelaySpellEffect", + "bases": [ + "SpellEffect", + "PropertyClass" + ], + "hash": 1928119170, + "properties": { + "m_effectType": { + "type": "enum SpellEffect::kSpellEffects", + "id": 0, + "offset": 72, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2578255295, + "enum_options": { + "kInvalidSpellEffect": 0, + "kDamage": 1, + "kDamageNoCrit": 2, + "kHeal": 3, + "kHealPercent": 4, + "kSetHealPercent": 113, + "kStealHealth": 5, + "kReduceOverTime": 6, + "kDetonateOverTime": 7, + "kPushCharm": 8, + "kStealCharm": 9, + "kPushWard": 10, + "kStealWard": 11, + "kPushOverTime": 12, + "kStealOverTime": 13, + "kRemoveCharm": 14, + "kRemoveWard": 15, + "kRemoveOverTime": 16, + "kRemoveAura": 17, + "kSwapAll": 18, + "kSwapCharm": 19, + "kSwapWard": 20, + "kSwapOverTime": 21, + "kModifyIncomingDamage": 22, + "kModifyIncomingDamageFlat": 119, + "kMaximumIncomingDamage": 23, + "kModifyIncomingHeal": 24, + "kModifyIncomingHealFlat": 118, + "kModifyIncomingDamageType": 25, + "kModifyIncomingArmorPiercing": 26, + "kModifyOutgoingDamage": 27, + "kModifyOutgoingDamageFlat": 121, + "kModifyOutgoingHeal": 28, + "kModifyOutgoingHealFlat": 120, + "kModifyOutgoingDamageType": 29, + "kModifyOutgoingArmorPiercing": 30, + "kModifyOutgoingStealHealth": 31, + "kModifyIncomingStealHealth": 32, + "kBounceNext": 33, + "kBouncePrevious": 34, + "kBounceBack": 35, + "kBounceAll": 36, + "kAbsorbDamage": 37, + "kAbsorbHeal": 38, + "kModifyAccuracy": 39, + "kDispel": 40, + "kConfusion": 41, + "kCloakedCharm": 42, + "kCloakedWard": 43, + "kStunResist": 44, + "kClue": 111, + "kPipConversion": 45, + "kCritBoost": 46, + "kCritBlock": 47, + "kPolymorph": 48, + "kDelayCast": 49, + "kModifyCardCloak": 50, + "kModifyCardDamage": 51, + "kModifyCardAccuracy": 53, + "kModifyCardMutation": 54, + "kModifyCardRank": 55, + "kModifyCardArmorPiercing": 56, + "kSummonCreature": 65, + "kTeleportPlayer": 66, + "kStun": 67, + "kDampen": 68, + "kReshuffle": 69, + "kMindControl": 70, + "kModifyPips": 71, + "kModifyPowerPips": 72, + "kModifyShadowPips": 73, + "kModifyHate": 74, + "kDamageOverTime": 75, + "kHealOverTime": 76, + "kModifyPowerPipChance": 77, + "kModifyRank": 78, + "kStunBlock": 79, + "kRevealCloak": 80, + "kInstantKill": 81, + "kAfterlife": 82, + "kDeferredDamage": 83, + "kDamagePerTotalPipPower": 84, + "kModifyCardHeal": 52, + "kModifyCardCharm": 57, + "kModifyCardWard": 58, + "kModifyCardOutgoingDamage": 59, + "kModifyCardOutgoingAccuracy": 60, + "kModifyCardOutgoingHeal": 61, + "kModifyCardOutgoingArmorPiercing": 62, + "kModifyCardIncomingDamage": 63, + "kModifyCardAbsorbDamage": 64, + "kCloakedWardNoRemove": 86, + "kAddCombatTriggerList": 87, + "kRemoveCombatTriggerList": 88, + "kBacklashDamage": 89, + "kModifyBacklash": 90, + "kIntercept": 91, + "kShadowSelf": 92, + "kShadowCreature": 93, + "kModifyShadowCreatureLevel": 94, + "kSelectShadowCreatureAttackTarget": 95, + "kShadowDecrementTurn": 96, + "kCritBoostSchoolSpecific": 97, + "kSpawnCreature": 98, + "kUnPolymorph": 99, + "kPowerPipConversion": 100, + "kProtectCardBeneficial": 101, + "kProtectCardHarmful": 102, + "kProtectBeneficial": 103, + "kProtectHarmful": 104, + "kDivideDamage": 105, + "kCollectEssence": 106, + "kKillCreature": 107, + "kDispelBlock": 108, + "kConfusionBlock": 109, + "kModifyPipRoundRate": 110, + "kMaxHealthDamage": 112, + "kUntargetable": 114, + "kMakeTargetable": 115, + "kForceTargetable": 116, + "kRemoveStunBlock": 117, + "kExitCombat": 122, + "kSuspendPips": 123, + "kResumePips": 124, + "kAutoPass": 125, + "kStopAutoPass": 126, + "kVanish": 127, + "kStopVanish": 128, + "kMaxHealthHeal": 129, + "kHealByWard": 130, + "kTaunt": 131, + "kPacify": 132, + "kRemoveTargetRestriction": 133, + "kConvertHangingEffect": 134, + "kAddSpellToDeck": 135, + "kAddSpellToHand": 136, + "kModifyIncomingDamageOverTime": 137, + "kModifyIncomingHealOverTime": 138, + "kModifyCardDamagebyRank": 139, + "kPushConvertedCharm": 140, + "kStealConvertedCharm": 141, + "kPushConvertedWard": 142, + "kStealConvertedWard": 143, + "kPushConvertedOverTime": 144, + "kStealConvertedOverTime": 145, + "kRemoveConvertedCharm": 146, + "kRemoveConvertedWard": 147, + "kRemoveConvertedOverTime": 148, + "kModifyOverTimeDuration": 149, + "kModifySchoolPips": 150 + } + }, + "m_effectParam": { + "type": "int", + "id": 1, + "offset": 76, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 357920024 + }, + "m_disposition": { + "type": "enum SpellEffect::kHangingDisposition", + "id": 2, + "offset": 80, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1904841031, + "enum_options": { + "kBoth": 0, + "kBeneficial": 1, + "kHarmful": 2 + } + }, + "m_sDamageType": { + "type": "std::string", + "id": 3, + "offset": 88, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2501054223 + }, + "m_damageType": { + "type": "unsigned int", + "id": 4, + "offset": 84, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 737882766 + }, + "m_pipNum": { + "type": "int", + "id": 5, + "offset": 128, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 830827539 + }, + "m_actNum": { + "type": "int", + "id": 6, + "offset": 132, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 236824866 + }, + "m_effectTarget": { + "type": "enum SpellEffect::kEffectTarget", + "id": 7, + "offset": 140, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2458940523, + "enum_options": { + "kInvalidTarget": 0, + "kSpell": 1, + "kSpecificSpells": 2, + "kGlobal": 3, + "kEnemyTeam": 4, + "kEnemyTeamAllAtOnce": 5, + "kFriendlyTeam": 6, + "kFriendlyTeamAllAtOnce": 7, + "kEnemySingle": 8, + "kFriendlySingle": 9, + "kMinion": 10, + "kFriendlyMinion": 17, + "kEnemyMinion": 18, + "kSelf": 11, + "kAtLeastOneEnemy": 13, + "kPreselectedEnemySingle": 12, + "kMultiTargetEnemy": 14, + "kMultiTargetFriendly": 15, + "kFriendlySingleNotMe": 16 + } + }, + "m_numRounds": { + "type": "int", + "id": 8, + "offset": 144, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1229753829 + }, + "m_paramPerRound": { + "type": "int", + "id": 9, + "offset": 148, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 683234234 + }, + "m_healModifier": { + "type": "float", + "id": 10, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1317921248, + "enum_options": { + "__DEFAULT": "1.0" + } + }, + "m_spellTemplateID": { + "type": "unsigned int", + "id": 11, + "offset": 120, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 585567702 + }, + "m_enchantmentSpellTemplateID": { + "type": "unsigned int", + "id": 12, + "offset": 124, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 246955115 + }, + "m_act": { + "type": "bool", + "id": 13, + "offset": 136, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 269510283 + }, + "m_cloaked": { + "type": "bool", + "id": 14, + "offset": 157, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 7349510 + }, + "m_bypassProtection": { + "type": "bool", + "id": 15, + "offset": 159, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1657138252 + }, + "m_armorPiercingParam": { + "type": "int", + "id": 16, + "offset": 160, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2025530205 + }, + "m_chancePerTarget": { + "type": "int", + "id": 17, + "offset": 164, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 845426794 + }, + "m_protected": { + "type": "bool", + "id": 18, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1445655037 + }, + "m_converted": { + "type": "bool", + "id": 19, + "offset": 169, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1590428797 + }, + "m_rank": { + "type": "int", + "id": 20, + "offset": 208, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 219803942 + }, + "m_damage": { + "type": "int", + "id": 21, + "offset": 236, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 351627865 + }, + "m_rounds": { + "type": "int", + "id": 22, + "offset": 240, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 916427829 + }, + "m_spellDelayedTemplateID": { + "type": "unsigned int", + "id": 23, + "offset": 244, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2227549390 + }, + "m_spellDelayedTemplateDamageID": { + "type": "unsigned int", + "id": 24, + "offset": 248, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1629569933 + }, + "m_spellEnchanterTemplateID": { + "type": "unsigned int", + "id": 25, + "offset": 252, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 760931950 + }, + "m_targetSubcircleList": { + "type": "int", + "id": 26, + "offset": 264, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 227779897 + }, + "m_spellHits": { + "type": "char", + "id": 27, + "offset": 280, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1193115340 + }, + "m_spell": { + "type": "class SharedPointer", + "id": 28, + "offset": 288, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1160380498 + } + } + }, + "216426719": { + "name": "class SharedPointer", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 216426719, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + } + } + }, + "1072072009": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1072072009, + "properties": { + "m_badgeID": { + "type": "unsigned int", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 628960141 + }, + "m_badgeTime": { + "type": "unsigned int", + "id": 1, + "offset": 76, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1716875215 + } + } + }, + "1502721286": { + "name": "class ClientAddInterceptCinematicAction", + "bases": [ + "AddInterceptCinematicAction", + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 1502721286, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + }, + "m_effect": { + "type": "std::string", + "id": 2, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1894145160 + }, + "m_idleOnly": { + "type": "bool", + "id": 3, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 612425235 + } + } + }, + "1928096799": { + "name": "class SharedPointer", + "bases": [ + "MoveController::MoveCommand", + "PropertyClass" + ], + "hash": 1928096799, + "properties": { + "m_fYaw": { + "type": "float", + "id": 0, + "offset": 88, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 309564718 + }, + "m_fTime": { + "type": "double", + "id": 1, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2691355138 + } + } + }, + "216211581": { + "name": "class ResTeleport*", + "bases": [ + "Result", + "PropertyClass" + ], + "hash": 216211581, + "properties": {} + }, + "1502434503": { + "name": "class SharedPointer", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 1502434503, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + } + } + }, + "645358224": { + "name": "class PetDialogEntry", + "bases": [ + "ActorDialogEntry", + "PropertyClass" + ], + "hash": 645358224, + "properties": { + "m_requirements": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 263, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3043523229 + }, + "m_dialog": { + "type": "std::string", + "id": 1, + "offset": 88, + "flags": 8388639, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1858395851 + }, + "m_picture": { + "type": "std::string", + "id": 2, + "offset": 120, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3128322903 + }, + "m_soundFile": { + "type": "std::string", + "id": 3, + "offset": 152, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2276870852 + }, + "m_action": { + "type": "std::string", + "id": 4, + "offset": 184, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1734553689 + }, + "m_dialogEvent": { + "type": "std::string", + "id": 5, + "offset": 216, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2707957549 + }, + "m_actorTemplateID": { + "type": "unsigned int", + "id": 6, + "offset": 248, + "flags": 33554463, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2134265679 + }, + "m_cameraName": { + "type": "std::string", + "id": 7, + "offset": 256, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3252786917 + }, + "m_interpolationDuration": { + "type": "float", + "id": 8, + "offset": 312, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1458058437, + "enum_options": { + "__DEFAULT": "1.0" + } + }, + "m_cameraOffsetX": { + "type": "float", + "id": 9, + "offset": 288, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1515912895 + }, + "m_cameraOffsetY": { + "type": "float", + "id": 10, + "offset": 292, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1515912896 + }, + "m_cameraOffsetZ": { + "type": "float", + "id": 11, + "offset": 296, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1515912897 + }, + "m_pitch": { + "type": "float", + "id": 12, + "offset": 304, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 896371695 + }, + "m_yaw": { + "type": "float", + "id": 13, + "offset": 300, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 357256328 + }, + "m_roll": { + "type": "float", + "id": 14, + "offset": 308, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 310020272 + }, + "m_cameraShakeType": { + "type": "std::string", + "id": 15, + "offset": 320, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1754128882, + "enum_options": { + "": 0, + "Constant": "Constant", + "Quake": "Quake", + "Thud": "Thud", + "End": "End", + "__DEFAULT": 0 + } + }, + "m_cameraShakeDuration": { + "type": "float", + "id": 16, + "offset": 352, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 316581010, + "enum_options": { + "__DEFAULT": "0.0" + } + }, + "m_cameraShakeAmplitude": { + "type": "float", + "id": 17, + "offset": 356, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2179718321, + "enum_options": { + "__DEFAULT": "0.0" + } + }, + "m_bypassCameraOnReview": { + "type": "bool", + "id": 18, + "offset": 360, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1412905725, + "enum_options": { + "__DEFAULT": 1 + } + }, + "m_cameraZoneName": { + "type": "std::string", + "id": 19, + "offset": 368, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3131581121 + }, + "m_duration": { + "type": "float", + "id": 20, + "offset": 400, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 920323453 + }, + "m_delay": { + "type": "float", + "id": 21, + "offset": 404, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 881988134 + }, + "m_cameraHidePlayers": { + "type": "int", + "id": 22, + "offset": 408, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 28533149 + }, + "m_walkAwayNpcTemplateID": { + "type": "gid", + "id": 23, + "offset": 416, + "flags": 33554719, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 942697507 + }, + "m_walkAwayExitDirectionInDegrees": { + "type": "float", + "id": 24, + "offset": 424, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 396419785 + }, + "m_walkAwayFadeTime": { + "type": "float", + "id": 25, + "offset": 428, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 822405687 + }, + "m_walkAwayUseCurrentFacing": { + "type": "bool", + "id": 26, + "offset": 432, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1464855436 + }, + "m_standInPlayerTag": { + "type": "std::string", + "id": 27, + "offset": 440, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1590121141 + }, + "m_fadeOutCamera": { + "type": "bool", + "id": 28, + "offset": 472, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1766121252 + }, + "m_snapCameraToPlayerAtExit": { + "type": "bool", + "id": 29, + "offset": 473, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1323369645 + }, + "m_secondaryCameraName": { + "type": "std::string", + "id": 30, + "offset": 480, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1670705581 + }, + "m_secondaryInterpolationDuration": { + "type": "float", + "id": 31, + "offset": 512, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1873822349 + }, + "m_npcStandInList": { + "type": "std::string", + "id": 32, + "offset": 520, + "flags": 287, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2076308937 + }, + "m_dialogAnimationList": { + "type": "std::string", + "id": 33, + "offset": 536, + "flags": 287, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2444806919 + }, + "m_dialogTurningList": { + "type": "std::string", + "id": 34, + "offset": 552, + "flags": 287, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2782869422 + }, + "m_npcYawOffsetInDegrees": { + "type": "float", + "id": 35, + "offset": 568, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1395075270 + }, + "m_allowPlayerToMove": { + "type": "bool", + "id": 36, + "offset": 572, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 225101337 + }, + "m_soundEffectFile": { + "type": "std::string", + "id": 37, + "offset": 576, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3235157265 + }, + "m_musicFile": { + "type": "std::string", + "id": 38, + "offset": 608, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2963686620 + }, + "m_nonStackableMusic": { + "type": "bool", + "id": 39, + "offset": 640, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1675595625 + }, + "m_nonRepeatableMusic": { + "type": "bool", + "id": 40, + "offset": 641, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2138315572 + }, + "m_playMusicAtSFXVolume": { + "type": "bool", + "id": 41, + "offset": 642, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2130871816 + }, + "m_soundEffectDelay": { + "type": "float", + "id": 42, + "offset": 644, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1586382460 + }, + "m_musicDelay": { + "type": "float", + "id": 43, + "offset": 648, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1217785767 + }, + "m_musicFadeTime": { + "type": "float", + "id": 44, + "offset": 652, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 502925015 + }, + "m_dontReleaseCameraAtExit": { + "type": "bool", + "id": 45, + "offset": 474, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1107508961 + }, + "m_disableBackButton": { + "type": "bool", + "id": 46, + "offset": 656, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 122355444 + }, + "m_enableExitButton": { + "type": "bool", + "id": 47, + "offset": 657, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1824693936 + }, + "m_cameraFadeType": { + "type": "std::string", + "id": 48, + "offset": 664, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2021935382, + "enum_options": { + "": 0, + "In Out Black": "In Out Black", + "In Out White": "In Out White", + "In Black": "In Black", + "Out Black": "Out Black", + "In White": "In White", + "Out White": "Out White", + "__DEFAULT": 0 + } + }, + "m_cameraFadeTime": { + "type": "float", + "id": 49, + "offset": 696, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 614419391, + "enum_options": { + "__DEFAULT": "0.5" + } + }, + "m_idleAnimation": { + "type": "std::string", + "id": 50, + "offset": 704, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2900487193 + }, + "m_spamTime": { + "type": "float", + "id": 51, + "offset": 736, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1727215063, + "enum_options": { + "__DEFAULT": "1.0" + } + }, + "m_playSoundIfSpamming": { + "type": "bool", + "id": 52, + "offset": 740, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 690006749, + "enum_options": { + "__DEFAULT": 1 + } + }, + "m_playMusicIfSpamming": { + "type": "bool", + "id": 53, + "offset": 741, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 538564341, + "enum_options": { + "__DEFAULT": 1 + } + }, + "m_stopMusicFadeTime": { + "type": "float", + "id": 54, + "offset": 744, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 696390845, + "enum_options": { + "__DEFAULT": "0.0" + } + }, + "m_restartMusicFadeTime": { + "type": "float", + "id": 55, + "offset": 748, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 709379292, + "enum_options": { + "__DEFAULT": "0.0" + } + }, + "m_meetsRequirements": { + "type": "bool", + "id": 56, + "offset": 752, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 296443061 + }, + "m_secondaryCameraInitalDelay": { + "type": "float", + "id": 57, + "offset": 516, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1812842232 + }, + "m_displayButtonsOnTimedDialog": { + "type": "bool", + "id": 58, + "offset": 753, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 569741400 + } + } + }, + "1073915065": { + "name": "class SharedPointer", + "bases": [ + "LootInfo", + "LootInfoBase", + "PropertyClass" + ], + "hash": 1073915065, + "properties": { + "m_lootType": { + "type": "enum LootInfo::LOOT_TYPE", + "id": 0, + "offset": 72, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1591891442, + "enum_options": { + "LOOT_TYPE_NONE": 0, + "LOOT_TYPE_GOLD": 1, + "LOOT_TYPE_MANA": 2, + "LOOT_TYPE_ITEM": 3, + "LOOT_TYPE_TREASURE_CARD": 4, + "LOOT_TYPE_MAGIC_XP": 5, + "LOOT_TYPE_ADD_SPELL": 6, + "LOOT_TYPE_MAX_HEALTH": 7, + "LOOT_TYPE_MAX_GOLD": 8, + "LOOT_TYPE_MAX_MANA": 9, + "LOOT_TYPE_MAX_POTION": 10, + "LOOT_TYPE_TRAINING_POINTS": 11, + "LOOT_TYPE_RECIPE": 12, + "LOOT_TYPE_CRAFTING_SLOT": 13, + "LOOT_TYPE_REAGENT": 14, + "LOOT_TYPE_PETSNACK": 15, + "LOOT_TYPE_GARDENING_XP": 16, + "LOOT_TYPE_PET_XP": 17, + "LOOT_TYPE_TREASURE_TABLE": 18, + "LOOT_TYPE_ARENA_POINTS": 19, + "LOOT_TYPE_ARENA_BONUS_POINTS": 20, + "LOOT_TYPE_GROUP": 21, + "LOOT_TYPE_FISHING_XP": 22, + "LOOT_TYPE_EVENT_CURRENCY_1": 24, + "LOOT_TYPE_EVENT_CURRENCY_2": 25, + "LOOT_TYPE_PVP_CURRENCY": 26, + "LOOT_TYPE_PVP_CURRENCY_BONUS": 27, + "LOOT_TYPE_PVP_TOURNEY_CURRENCY": 28, + "LOOT_TYPE_PVP_TOURNEY_CURRENCY_BONUS": 29, + "LOOT_TYPE_FURNITURE_ESSENCE": 30 + } + }, + "m_manaToAdd": { + "type": "int", + "id": 1, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1303804451 + } + } + }, + "1502634704": { + "name": "enum kDuelExecutionOrder", + "bases": [], + "hash": 1502634704, + "properties": {} + }, + "644686228": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 644686228, + "properties": { + "m_itemType": { + "type": "enum WizItemLocations::eItemType", + "id": 0, + "offset": 72, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3482173907, + "enum_options": { + "shop": 0, + "quest": 1, + "boss": 2, + "gardening": 3, + "goldChest": 4 + } + } + } + }, + "1928217474": { + "name": "class DelaySpellEffect*", + "bases": [ + "SpellEffect", + "PropertyClass" + ], + "hash": 1928217474, + "properties": { + "m_effectType": { + "type": "enum SpellEffect::kSpellEffects", + "id": 0, + "offset": 72, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2578255295, + "enum_options": { + "kInvalidSpellEffect": 0, + "kDamage": 1, + "kDamageNoCrit": 2, + "kHeal": 3, + "kHealPercent": 4, + "kSetHealPercent": 113, + "kStealHealth": 5, + "kReduceOverTime": 6, + "kDetonateOverTime": 7, + "kPushCharm": 8, + "kStealCharm": 9, + "kPushWard": 10, + "kStealWard": 11, + "kPushOverTime": 12, + "kStealOverTime": 13, + "kRemoveCharm": 14, + "kRemoveWard": 15, + "kRemoveOverTime": 16, + "kRemoveAura": 17, + "kSwapAll": 18, + "kSwapCharm": 19, + "kSwapWard": 20, + "kSwapOverTime": 21, + "kModifyIncomingDamage": 22, + "kModifyIncomingDamageFlat": 119, + "kMaximumIncomingDamage": 23, + "kModifyIncomingHeal": 24, + "kModifyIncomingHealFlat": 118, + "kModifyIncomingDamageType": 25, + "kModifyIncomingArmorPiercing": 26, + "kModifyOutgoingDamage": 27, + "kModifyOutgoingDamageFlat": 121, + "kModifyOutgoingHeal": 28, + "kModifyOutgoingHealFlat": 120, + "kModifyOutgoingDamageType": 29, + "kModifyOutgoingArmorPiercing": 30, + "kModifyOutgoingStealHealth": 31, + "kModifyIncomingStealHealth": 32, + "kBounceNext": 33, + "kBouncePrevious": 34, + "kBounceBack": 35, + "kBounceAll": 36, + "kAbsorbDamage": 37, + "kAbsorbHeal": 38, + "kModifyAccuracy": 39, + "kDispel": 40, + "kConfusion": 41, + "kCloakedCharm": 42, + "kCloakedWard": 43, + "kStunResist": 44, + "kClue": 111, + "kPipConversion": 45, + "kCritBoost": 46, + "kCritBlock": 47, + "kPolymorph": 48, + "kDelayCast": 49, + "kModifyCardCloak": 50, + "kModifyCardDamage": 51, + "kModifyCardAccuracy": 53, + "kModifyCardMutation": 54, + "kModifyCardRank": 55, + "kModifyCardArmorPiercing": 56, + "kSummonCreature": 65, + "kTeleportPlayer": 66, + "kStun": 67, + "kDampen": 68, + "kReshuffle": 69, + "kMindControl": 70, + "kModifyPips": 71, + "kModifyPowerPips": 72, + "kModifyShadowPips": 73, + "kModifyHate": 74, + "kDamageOverTime": 75, + "kHealOverTime": 76, + "kModifyPowerPipChance": 77, + "kModifyRank": 78, + "kStunBlock": 79, + "kRevealCloak": 80, + "kInstantKill": 81, + "kAfterlife": 82, + "kDeferredDamage": 83, + "kDamagePerTotalPipPower": 84, + "kModifyCardHeal": 52, + "kModifyCardCharm": 57, + "kModifyCardWard": 58, + "kModifyCardOutgoingDamage": 59, + "kModifyCardOutgoingAccuracy": 60, + "kModifyCardOutgoingHeal": 61, + "kModifyCardOutgoingArmorPiercing": 62, + "kModifyCardIncomingDamage": 63, + "kModifyCardAbsorbDamage": 64, + "kCloakedWardNoRemove": 86, + "kAddCombatTriggerList": 87, + "kRemoveCombatTriggerList": 88, + "kBacklashDamage": 89, + "kModifyBacklash": 90, + "kIntercept": 91, + "kShadowSelf": 92, + "kShadowCreature": 93, + "kModifyShadowCreatureLevel": 94, + "kSelectShadowCreatureAttackTarget": 95, + "kShadowDecrementTurn": 96, + "kCritBoostSchoolSpecific": 97, + "kSpawnCreature": 98, + "kUnPolymorph": 99, + "kPowerPipConversion": 100, + "kProtectCardBeneficial": 101, + "kProtectCardHarmful": 102, + "kProtectBeneficial": 103, + "kProtectHarmful": 104, + "kDivideDamage": 105, + "kCollectEssence": 106, + "kKillCreature": 107, + "kDispelBlock": 108, + "kConfusionBlock": 109, + "kModifyPipRoundRate": 110, + "kMaxHealthDamage": 112, + "kUntargetable": 114, + "kMakeTargetable": 115, + "kForceTargetable": 116, + "kRemoveStunBlock": 117, + "kExitCombat": 122, + "kSuspendPips": 123, + "kResumePips": 124, + "kAutoPass": 125, + "kStopAutoPass": 126, + "kVanish": 127, + "kStopVanish": 128, + "kMaxHealthHeal": 129, + "kHealByWard": 130, + "kTaunt": 131, + "kPacify": 132, + "kRemoveTargetRestriction": 133, + "kConvertHangingEffect": 134, + "kAddSpellToDeck": 135, + "kAddSpellToHand": 136, + "kModifyIncomingDamageOverTime": 137, + "kModifyIncomingHealOverTime": 138, + "kModifyCardDamagebyRank": 139, + "kPushConvertedCharm": 140, + "kStealConvertedCharm": 141, + "kPushConvertedWard": 142, + "kStealConvertedWard": 143, + "kPushConvertedOverTime": 144, + "kStealConvertedOverTime": 145, + "kRemoveConvertedCharm": 146, + "kRemoveConvertedWard": 147, + "kRemoveConvertedOverTime": 148, + "kModifyOverTimeDuration": 149, + "kModifySchoolPips": 150 + } + }, + "m_effectParam": { + "type": "int", + "id": 1, + "offset": 76, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 357920024 + }, + "m_disposition": { + "type": "enum SpellEffect::kHangingDisposition", + "id": 2, + "offset": 80, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1904841031, + "enum_options": { + "kBoth": 0, + "kBeneficial": 1, + "kHarmful": 2 + } + }, + "m_sDamageType": { + "type": "std::string", + "id": 3, + "offset": 88, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2501054223 + }, + "m_damageType": { + "type": "unsigned int", + "id": 4, + "offset": 84, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 737882766 + }, + "m_pipNum": { + "type": "int", + "id": 5, + "offset": 128, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 830827539 + }, + "m_actNum": { + "type": "int", + "id": 6, + "offset": 132, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 236824866 + }, + "m_effectTarget": { + "type": "enum SpellEffect::kEffectTarget", + "id": 7, + "offset": 140, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2458940523, + "enum_options": { + "kInvalidTarget": 0, + "kSpell": 1, + "kSpecificSpells": 2, + "kGlobal": 3, + "kEnemyTeam": 4, + "kEnemyTeamAllAtOnce": 5, + "kFriendlyTeam": 6, + "kFriendlyTeamAllAtOnce": 7, + "kEnemySingle": 8, + "kFriendlySingle": 9, + "kMinion": 10, + "kFriendlyMinion": 17, + "kEnemyMinion": 18, + "kSelf": 11, + "kAtLeastOneEnemy": 13, + "kPreselectedEnemySingle": 12, + "kMultiTargetEnemy": 14, + "kMultiTargetFriendly": 15, + "kFriendlySingleNotMe": 16 + } + }, + "m_numRounds": { + "type": "int", + "id": 8, + "offset": 144, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1229753829 + }, + "m_paramPerRound": { + "type": "int", + "id": 9, + "offset": 148, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 683234234 + }, + "m_healModifier": { + "type": "float", + "id": 10, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1317921248, + "enum_options": { + "__DEFAULT": "1.0" + } + }, + "m_spellTemplateID": { + "type": "unsigned int", + "id": 11, + "offset": 120, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 585567702 + }, + "m_enchantmentSpellTemplateID": { + "type": "unsigned int", + "id": 12, + "offset": 124, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 246955115 + }, + "m_act": { + "type": "bool", + "id": 13, + "offset": 136, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 269510283 + }, + "m_cloaked": { + "type": "bool", + "id": 14, + "offset": 157, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 7349510 + }, + "m_bypassProtection": { + "type": "bool", + "id": 15, + "offset": 159, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1657138252 + }, + "m_armorPiercingParam": { + "type": "int", + "id": 16, + "offset": 160, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2025530205 + }, + "m_chancePerTarget": { + "type": "int", + "id": 17, + "offset": 164, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 845426794 + }, + "m_protected": { + "type": "bool", + "id": 18, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1445655037 + }, + "m_converted": { + "type": "bool", + "id": 19, + "offset": 169, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1590428797 + }, + "m_rank": { + "type": "int", + "id": 20, + "offset": 208, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 219803942 + }, + "m_damage": { + "type": "int", + "id": 21, + "offset": 236, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 351627865 + }, + "m_rounds": { + "type": "int", + "id": 22, + "offset": 240, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 916427829 + }, + "m_spellDelayedTemplateID": { + "type": "unsigned int", + "id": 23, + "offset": 244, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2227549390 + }, + "m_spellDelayedTemplateDamageID": { + "type": "unsigned int", + "id": 24, + "offset": 248, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1629569933 + }, + "m_spellEnchanterTemplateID": { + "type": "unsigned int", + "id": 25, + "offset": 252, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 760931950 + }, + "m_targetSubcircleList": { + "type": "int", + "id": 26, + "offset": 264, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 227779897 + }, + "m_spellHits": { + "type": "char", + "id": 27, + "offset": 280, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1193115340 + }, + "m_spell": { + "type": "class SharedPointer", + "id": 28, + "offset": 288, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1160380498 + } + } + }, + "216471690": { + "name": "class GameEffectTimerDisplayBehavior*", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 216471690, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_effectName": { + "type": "std::string", + "id": 1, + "offset": 112, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2029161513 + }, + "m_textKey": { + "type": "std::string", + "id": 2, + "offset": 144, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1720060457 + }, + "m_height": { + "type": "float", + "id": 3, + "offset": 176, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 602977104 + }, + "m_zOffset": { + "type": "float", + "id": 4, + "offset": 180, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 736134072 + }, + "m_red": { + "type": "unsigned char", + "id": 5, + "offset": 184, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 904647115 + }, + "m_green": { + "type": "unsigned char", + "id": 6, + "offset": 185, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1433403873 + }, + "m_blue": { + "type": "unsigned char", + "id": 7, + "offset": 186, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 856840600 + }, + "m_triggers": { + "type": "class SharedPointer", + "id": 8, + "offset": 192, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 3290329276 + } + } + }, + "1072411401": { + "name": "class SharedPointer", + "bases": [ + "AddInterceptCinematicAction", + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 1072411401, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + }, + "m_effect": { + "type": "std::string", + "id": 2, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1894145160 + }, + "m_idleOnly": { + "type": "bool", + "id": 3, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 612425235 + } + } + }, + "644539674": { + "name": "class DynamicURLDescriptor", + "bases": [ + "PropertyClass" + ], + "hash": 644539674, + "properties": { + "m_domain": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1865930451 + }, + "m_path": { + "type": "std::string", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1717431880 + } + } + }, + "644021855": { + "name": "class SharedPointer", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 644021855, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + }, + "m_introTime": { + "type": "float", + "id": 1, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2010936242 + } + } + }, + "1073631407": { + "name": "class TournamentTemplate*", + "bases": [ + "CoreTemplate", + "PropertyClass" + ], + "hash": 1073631407, + "properties": { + "m_behaviors": { + "type": "class BehaviorTemplate*", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1197808594 + }, + "m_tournamentName": { + "type": "std::string", + "id": 1, + "offset": 112, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3329241865 + }, + "m_allowedMatches": { + "type": "std::string", + "id": 2, + "offset": 152, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2083366952 + }, + "m_updateLadder": { + "type": "bool", + "id": 3, + "offset": 209, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1327828834 + }, + "m_useEloBehavior": { + "type": "bool", + "id": 4, + "offset": 210, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2113224016 + }, + "m_ladderTable": { + "type": "std::string", + "id": 5, + "offset": 216, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3225825807 + }, + "m_matchActor": { + "type": "class SharedPointer", + "id": 6, + "offset": 96, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1730081852 + }, + "m_bPremium": { + "type": "bool", + "id": 7, + "offset": 208, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 959881172 + }, + "m_defaultLadder": { + "type": "class SharedPointer", + "id": 8, + "offset": 248, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2425504995 + }, + "m_isBracketTournament": { + "type": "bool", + "id": 9, + "offset": 265, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1062809176 + }, + "m_persisted": { + "type": "bool", + "id": 10, + "offset": 266, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1002297414 + }, + "m_penalizeMatchDeclines": { + "type": "bool", + "id": 11, + "offset": 267, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 623338303 + }, + "m_hidePlayerInfo": { + "type": "bool", + "id": 12, + "offset": 268, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 665001286 + }, + "m_pvpDuelModifiers": { + "type": "std::string", + "id": 13, + "offset": 272, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1796488605 + } + } + }, + "1503397140": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1503397140, + "properties": { + "m_titleStringKey": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1751250333 + }, + "m_cost": { + "type": "int", + "id": 1, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 219280307 + } + } + }, + "643772277": { + "name": "enum BoosterPackTemplate::BoosterPackType", + "bases": [], + "hash": 643772277, + "properties": {} + }, + "1929013425": { + "name": "class RecentWizardInfo*", + "bases": [ + "PropertyClass" + ], + "hash": 1929013425, + "properties": { + "m_characterGID": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 501688601 + }, + "m_packedName": { + "type": "std::string", + "id": 1, + "offset": 88, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1805208228 + }, + "m_lastSeenTime": { + "type": "unsigned int", + "id": 2, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2066613339 + }, + "m_level": { + "type": "unsigned int", + "id": 3, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1012687813 + }, + "m_school": { + "type": "unsigned int", + "id": 4, + "offset": 124, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1152268885 + }, + "m_combatCount": { + "type": "unsigned int", + "id": 5, + "offset": 128, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2338224044 + }, + "m_instanceCount": { + "type": "unsigned int", + "id": 6, + "offset": 132, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1489352139 + }, + "m_hatchCount": { + "type": "unsigned int", + "id": 7, + "offset": 136, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1273194302 + }, + "m_beastmoonCount": { + "type": "unsigned int", + "id": 8, + "offset": 140, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1289638718 + }, + "m_derbyCount": { + "type": "unsigned int", + "id": 9, + "offset": 144, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 265597676 + }, + "m_PVPCount": { + "type": "unsigned int", + "id": 10, + "offset": 148, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 624008108 + }, + "m_housingGameCount": { + "type": "unsigned int", + "id": 11, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1403136525 + }, + "m_worldID": { + "type": "unsigned int", + "id": 12, + "offset": 156, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 397177058 + }, + "m_objectGID": { + "type": "gid", + "id": 13, + "offset": 160, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2037310403 + }, + "m_isOnline": { + "type": "bool", + "id": 14, + "offset": 168, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1681359252 + } + } + }, + "216582072": { + "name": "class NameOverrideBehavior", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 216582072, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_wsNameOverride": { + "type": "std::wstring", + "id": 1, + "offset": 120, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2131249091 + } + } + }, + "1502721366": { + "name": "class ClientAddInterceptCinematicAction*", + "bases": [ + "AddInterceptCinematicAction", + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 1502721366, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + }, + "m_effect": { + "type": "std::string", + "id": 2, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1894145160 + }, + "m_idleOnly": { + "type": "bool", + "id": 3, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 612425235 + } + } + }, + "1928915121": { + "name": "class RecentWizardInfo", + "bases": [ + "PropertyClass" + ], + "hash": 1928915121, + "properties": { + "m_characterGID": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 501688601 + }, + "m_packedName": { + "type": "std::string", + "id": 1, + "offset": 88, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1805208228 + }, + "m_lastSeenTime": { + "type": "unsigned int", + "id": 2, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2066613339 + }, + "m_level": { + "type": "unsigned int", + "id": 3, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1012687813 + }, + "m_school": { + "type": "unsigned int", + "id": 4, + "offset": 124, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1152268885 + }, + "m_combatCount": { + "type": "unsigned int", + "id": 5, + "offset": 128, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2338224044 + }, + "m_instanceCount": { + "type": "unsigned int", + "id": 6, + "offset": 132, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1489352139 + }, + "m_hatchCount": { + "type": "unsigned int", + "id": 7, + "offset": 136, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1273194302 + }, + "m_beastmoonCount": { + "type": "unsigned int", + "id": 8, + "offset": 140, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1289638718 + }, + "m_derbyCount": { + "type": "unsigned int", + "id": 9, + "offset": 144, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 265597676 + }, + "m_PVPCount": { + "type": "unsigned int", + "id": 10, + "offset": 148, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 624008108 + }, + "m_housingGameCount": { + "type": "unsigned int", + "id": 11, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1403136525 + }, + "m_worldID": { + "type": "unsigned int", + "id": 12, + "offset": 156, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 397177058 + }, + "m_objectGID": { + "type": "gid", + "id": 13, + "offset": 160, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2037310403 + }, + "m_isOnline": { + "type": "bool", + "id": 14, + "offset": 168, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1681359252 + } + } + }, + "216695013": { + "name": "class AnimationBehavior*", + "bases": [ + "RenderBehavior", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 216695013, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + } + } + }, + "1074421294": { + "name": "class std::list >", + "bases": [], + "hash": 1074421294, + "properties": {} + }, + "1074241806": { + "name": "struct TipDialogData", + "bases": [], + "hash": 1074241806, + "properties": {} + }, + "1503950091": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1503950091, + "properties": { + "m_Color": { + "type": "class Color", + "id": 0, + "offset": 72, + "flags": 262279, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1753714077 + }, + "m_pMaterial": { + "type": "class SharedPointer", + "id": 1, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3479277078 + }, + "m_UV": { + "type": "class Rect", + "id": 2, + "offset": 96, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3810095225 + }, + "m_nNextTile": { + "type": "int", + "id": 3, + "offset": 112, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1012895541 + }, + "m_textComponent": { + "type": "class TextComponent", + "id": 4, + "offset": 120, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3491704390 + } + } + }, + "644539698": { + "name": "class DynamicURLDescriptor*", + "bases": [ + "PropertyClass" + ], + "hash": 644539698, + "properties": { + "m_domain": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1865930451 + }, + "m_path": { + "type": "std::string", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1717431880 + } + } + }, + "1929106127": { + "name": "class Quaternion", + "bases": [], + "hash": 1929106127, + "properties": {} + }, + "217737562": { + "name": "class SharedPointer", + "bases": [ + "FXBySlotEffect", + "GameEffectBase", + "PropertyClass" + ], + "hash": 217737562, + "properties": { + "m_currentTickCount": { + "type": "double", + "id": 0, + "offset": 80, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2533274692 + }, + "m_effectNameID": { + "type": "unsigned int", + "id": 1, + "offset": 96, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1204067144 + }, + "m_bIsOnPet": { + "type": "bool", + "id": 2, + "offset": 73, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 522593303 + }, + "m_originatorID": { + "type": "gid", + "id": 3, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1131810019 + }, + "m_itemSlotID": { + "type": "unsigned int", + "id": 4, + "offset": 112, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1895747595 + }, + "m_internalID": { + "type": "int", + "id": 5, + "offset": 92, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1643137924 + }, + "m_endTime": { + "type": "unsigned int", + "id": 6, + "offset": 88, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 716479635 + } + } + }, + "1074622366": { + "name": "class SharedPointer", + "bases": [ + "Requirement", + "PropertyClass" + ], + "hash": 1074622366, + "properties": { + "m_applyNOT": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1746328074, + "enum_options": { + "__DEFAULT": 0 + } + }, + "m_operator": { + "type": "enum Requirement::Operator", + "id": 1, + "offset": 76, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2672792317, + "enum_options": { + "ROP_AND": 0, + "ROP_OR": 1, + "__DEFAULT": "ROP_AND" + } + } + } + }, + "1506196681": { + "name": "class SharedPointer", + "bases": [ + "ServiceOptionBase", + "PropertyClass" + ], + "hash": 1506196681, + "properties": { + "m_serviceName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2206028813 + }, + "m_iconKey": { + "type": "std::string", + "id": 1, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2457138637 + }, + "m_displayKey": { + "type": "std::string", + "id": 2, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3023276954 + }, + "m_serviceIndex": { + "type": "unsigned int", + "id": 3, + "offset": 204, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2103126710 + }, + "m_forceInteract": { + "type": "bool", + "id": 4, + "offset": 200, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1705789564 + } + } + }, + "645358128": { + "name": "class PetDialogEntry*", + "bases": [ + "ActorDialogEntry", + "PropertyClass" + ], + "hash": 645358128, + "properties": { + "m_requirements": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 263, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3043523229 + }, + "m_dialog": { + "type": "std::string", + "id": 1, + "offset": 88, + "flags": 8388639, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1858395851 + }, + "m_picture": { + "type": "std::string", + "id": 2, + "offset": 120, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3128322903 + }, + "m_soundFile": { + "type": "std::string", + "id": 3, + "offset": 152, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2276870852 + }, + "m_action": { + "type": "std::string", + "id": 4, + "offset": 184, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1734553689 + }, + "m_dialogEvent": { + "type": "std::string", + "id": 5, + "offset": 216, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2707957549 + }, + "m_actorTemplateID": { + "type": "unsigned int", + "id": 6, + "offset": 248, + "flags": 33554463, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2134265679 + }, + "m_cameraName": { + "type": "std::string", + "id": 7, + "offset": 256, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3252786917 + }, + "m_interpolationDuration": { + "type": "float", + "id": 8, + "offset": 312, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1458058437, + "enum_options": { + "__DEFAULT": "1.0" + } + }, + "m_cameraOffsetX": { + "type": "float", + "id": 9, + "offset": 288, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1515912895 + }, + "m_cameraOffsetY": { + "type": "float", + "id": 10, + "offset": 292, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1515912896 + }, + "m_cameraOffsetZ": { + "type": "float", + "id": 11, + "offset": 296, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1515912897 + }, + "m_pitch": { + "type": "float", + "id": 12, + "offset": 304, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 896371695 + }, + "m_yaw": { + "type": "float", + "id": 13, + "offset": 300, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 357256328 + }, + "m_roll": { + "type": "float", + "id": 14, + "offset": 308, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 310020272 + }, + "m_cameraShakeType": { + "type": "std::string", + "id": 15, + "offset": 320, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1754128882, + "enum_options": { + "": 0, + "Constant": "Constant", + "Quake": "Quake", + "Thud": "Thud", + "End": "End", + "__DEFAULT": 0 + } + }, + "m_cameraShakeDuration": { + "type": "float", + "id": 16, + "offset": 352, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 316581010, + "enum_options": { + "__DEFAULT": "0.0" + } + }, + "m_cameraShakeAmplitude": { + "type": "float", + "id": 17, + "offset": 356, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2179718321, + "enum_options": { + "__DEFAULT": "0.0" + } + }, + "m_bypassCameraOnReview": { + "type": "bool", + "id": 18, + "offset": 360, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1412905725, + "enum_options": { + "__DEFAULT": 1 + } + }, + "m_cameraZoneName": { + "type": "std::string", + "id": 19, + "offset": 368, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3131581121 + }, + "m_duration": { + "type": "float", + "id": 20, + "offset": 400, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 920323453 + }, + "m_delay": { + "type": "float", + "id": 21, + "offset": 404, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 881988134 + }, + "m_cameraHidePlayers": { + "type": "int", + "id": 22, + "offset": 408, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 28533149 + }, + "m_walkAwayNpcTemplateID": { + "type": "gid", + "id": 23, + "offset": 416, + "flags": 33554719, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 942697507 + }, + "m_walkAwayExitDirectionInDegrees": { + "type": "float", + "id": 24, + "offset": 424, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 396419785 + }, + "m_walkAwayFadeTime": { + "type": "float", + "id": 25, + "offset": 428, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 822405687 + }, + "m_walkAwayUseCurrentFacing": { + "type": "bool", + "id": 26, + "offset": 432, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1464855436 + }, + "m_standInPlayerTag": { + "type": "std::string", + "id": 27, + "offset": 440, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1590121141 + }, + "m_fadeOutCamera": { + "type": "bool", + "id": 28, + "offset": 472, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1766121252 + }, + "m_snapCameraToPlayerAtExit": { + "type": "bool", + "id": 29, + "offset": 473, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1323369645 + }, + "m_secondaryCameraName": { + "type": "std::string", + "id": 30, + "offset": 480, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1670705581 + }, + "m_secondaryInterpolationDuration": { + "type": "float", + "id": 31, + "offset": 512, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1873822349 + }, + "m_npcStandInList": { + "type": "std::string", + "id": 32, + "offset": 520, + "flags": 287, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2076308937 + }, + "m_dialogAnimationList": { + "type": "std::string", + "id": 33, + "offset": 536, + "flags": 287, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2444806919 + }, + "m_dialogTurningList": { + "type": "std::string", + "id": 34, + "offset": 552, + "flags": 287, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2782869422 + }, + "m_npcYawOffsetInDegrees": { + "type": "float", + "id": 35, + "offset": 568, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1395075270 + }, + "m_allowPlayerToMove": { + "type": "bool", + "id": 36, + "offset": 572, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 225101337 + }, + "m_soundEffectFile": { + "type": "std::string", + "id": 37, + "offset": 576, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3235157265 + }, + "m_musicFile": { + "type": "std::string", + "id": 38, + "offset": 608, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2963686620 + }, + "m_nonStackableMusic": { + "type": "bool", + "id": 39, + "offset": 640, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1675595625 + }, + "m_nonRepeatableMusic": { + "type": "bool", + "id": 40, + "offset": 641, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2138315572 + }, + "m_playMusicAtSFXVolume": { + "type": "bool", + "id": 41, + "offset": 642, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2130871816 + }, + "m_soundEffectDelay": { + "type": "float", + "id": 42, + "offset": 644, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1586382460 + }, + "m_musicDelay": { + "type": "float", + "id": 43, + "offset": 648, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1217785767 + }, + "m_musicFadeTime": { + "type": "float", + "id": 44, + "offset": 652, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 502925015 + }, + "m_dontReleaseCameraAtExit": { + "type": "bool", + "id": 45, + "offset": 474, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1107508961 + }, + "m_disableBackButton": { + "type": "bool", + "id": 46, + "offset": 656, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 122355444 + }, + "m_enableExitButton": { + "type": "bool", + "id": 47, + "offset": 657, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1824693936 + }, + "m_cameraFadeType": { + "type": "std::string", + "id": 48, + "offset": 664, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2021935382, + "enum_options": { + "": 0, + "In Out Black": "In Out Black", + "In Out White": "In Out White", + "In Black": "In Black", + "Out Black": "Out Black", + "In White": "In White", + "Out White": "Out White", + "__DEFAULT": 0 + } + }, + "m_cameraFadeTime": { + "type": "float", + "id": 49, + "offset": 696, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 614419391, + "enum_options": { + "__DEFAULT": "0.5" + } + }, + "m_idleAnimation": { + "type": "std::string", + "id": 50, + "offset": 704, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2900487193 + }, + "m_spamTime": { + "type": "float", + "id": 51, + "offset": 736, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1727215063, + "enum_options": { + "__DEFAULT": "1.0" + } + }, + "m_playSoundIfSpamming": { + "type": "bool", + "id": 52, + "offset": 740, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 690006749, + "enum_options": { + "__DEFAULT": 1 + } + }, + "m_playMusicIfSpamming": { + "type": "bool", + "id": 53, + "offset": 741, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 538564341, + "enum_options": { + "__DEFAULT": 1 + } + }, + "m_stopMusicFadeTime": { + "type": "float", + "id": 54, + "offset": 744, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 696390845, + "enum_options": { + "__DEFAULT": "0.0" + } + }, + "m_restartMusicFadeTime": { + "type": "float", + "id": 55, + "offset": 748, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 709379292, + "enum_options": { + "__DEFAULT": "0.0" + } + }, + "m_meetsRequirements": { + "type": "bool", + "id": 56, + "offset": 752, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 296443061 + }, + "m_secondaryCameraInitalDelay": { + "type": "float", + "id": 57, + "offset": 516, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1812842232 + }, + "m_displayButtonsOnTimedDialog": { + "type": "bool", + "id": 58, + "offset": 753, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 569741400 + } + } + }, + "1929297994": { + "name": "class SharedPointer", + "bases": [ + "TextureD3D", + "Texture", + "PropertyClass" + ], + "hash": 1929297994, + "properties": { + "m_sFilename": { + "type": "std::string", + "id": 0, + "offset": 104, + "flags": 131207, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2431512111 + }, + "m_bAlphaChannel": { + "type": "bool", + "id": 1, + "offset": 137, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1780697684 + }, + "m_bDoubleSided": { + "type": "bool", + "id": 2, + "offset": 138, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1054874233 + }, + "m_bMipMap": { + "type": "bool", + "id": 3, + "offset": 139, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1791042393 + } + } + }, + "1505605179": { + "name": "class ClientDerbyTerrainEffect*", + "bases": [ + "DerbyTerrainEffect", + "DerbyEffect", + "PropertyClass" + ], + "hash": 1505605179, + "properties": { + "m_buffType": { + "type": "enum DerbyTalentBuffType", + "id": 0, + "offset": 92, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1149251982, + "enum_options": { + "Buff": 0, + "Debuff": 1, + "Neither": 2 + } + }, + "m_kTarget": { + "type": "enum DerbyTargetType", + "id": 1, + "offset": 96, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1807803351, + "enum_options": { + "kTargetInFront": 0, + "kTargetBehind": 1, + "kTargetFirst": 2, + "kTargetSelf": 3, + "kTargetAll": 4, + "kTargetLast": 5 + } + }, + "m_nDuration": { + "type": "int", + "id": 2, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1110167982 + }, + "m_effectID": { + "type": "unsigned int", + "id": 3, + "offset": 88, + "flags": 24, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2347630439 + }, + "m_imageFilename": { + "type": "std::string", + "id": 4, + "offset": 112, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2813328063 + }, + "m_iconIndex": { + "type": "unsigned int", + "id": 5, + "offset": 144, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1265133262 + }, + "m_soundOnActivate": { + "type": "std::string", + "id": 6, + "offset": 152, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1956929714 + }, + "m_soundOnTarget": { + "type": "std::string", + "id": 7, + "offset": 184, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3444214056 + }, + "m_targetParticleEffect": { + "type": "std::string", + "id": 8, + "offset": 216, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3048234723 + }, + "m_overheadMessage": { + "type": "std::string", + "id": 9, + "offset": 248, + "flags": 8388639, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1701018190 + }, + "m_requirements": { + "type": "class RequirementList", + "id": 10, + "offset": 280, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2840988582 + }, + "m_terrainType": { + "type": "enum PetDerbyTrackTerrain", + "id": 11, + "offset": 376, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2688629581, + "enum_options": { + "Cobblestone": 0, + "Water": 1, + "Grass": 2, + "Clay": 3, + "Dirt": 4, + "Mud": 5 + } + }, + "m_fEffectReapplyTime": { + "type": "float", + "id": 12, + "offset": 380, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1483497206 + }, + "m_effectsToApply": { + "type": "class SharedPointer", + "id": 13, + "offset": 384, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2042624288 + }, + "m_permanentEffects": { + "type": "class SharedPointer", + "id": 14, + "offset": 400, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2129171809 + } + } + }, + "218724417": { + "name": "class SharedPointer", + "bases": [ + "ServiceOptionBase", + "PropertyClass" + ], + "hash": 218724417, + "properties": { + "m_serviceName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2206028813 + }, + "m_iconKey": { + "type": "std::string", + "id": 1, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2457138637 + }, + "m_displayKey": { + "type": "std::string", + "id": 2, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3023276954 + }, + "m_serviceIndex": { + "type": "unsigned int", + "id": 3, + "offset": 204, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2103126710 + }, + "m_forceInteract": { + "type": "bool", + "id": 4, + "offset": 200, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1705789564 + } + } + }, + "1504720918": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1504720918, + "properties": {} + }, + "218177868": { + "name": "class MonsterMagicLevelControl*", + "bases": [ + "Window", + "PropertyClass" + ], + "hash": 218177868, + "properties": { + "m_sName": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306437263 + }, + "m_Children": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 65667, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621225959 + }, + "m_Style": { + "type": "unsigned int", + "id": 2, + "offset": 152, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "SCALE_CHILDREN": 2, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "FOCUS_LOCKED": 64, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152 + } + }, + "m_Flags": { + "type": "unsigned int", + "id": 3, + "offset": 156, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } + }, + "m_Window": { + "type": "class Rect", + "id": 4, + "offset": 160, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3105139380 + }, + "m_fTargetAlpha": { + "type": "float", + "id": 5, + "offset": 212, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1809129834 + }, + "m_fDisabledAlpha": { + "type": "float", + "id": 6, + "offset": 216, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1389987675 + }, + "m_fAlpha": { + "type": "float", + "id": 7, + "offset": 208, + "flags": 65671, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 482130755 + }, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3623628394 + }, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2102211316 + }, + "m_sScript": { + "type": "std::string", + "id": 10, + "offset": 352, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1846695875 + }, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3389835433 + }, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547159940 + }, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513510520 + }, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3091503757 + } + } + }, + "1075927301": { + "name": "class TournamentUpdateList*", + "bases": [ + "PropertyClass" + ], + "hash": 1075927301, + "properties": { + "m_updates": { + "type": "class SharedPointer", + "id": 0, + "offset": 88, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 3250680338 + }, + "m_matchCount": { + "type": "int", + "id": 1, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1400798736 + }, + "m_teamCount": { + "type": "int", + "id": 2, + "offset": 76, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1614476394 + }, + "m_actorCount": { + "type": "int", + "id": 3, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1057423836 + } + } + }, + "1504674997": { + "name": "class PersonaGoalTemplate*", + "bases": [ + "GoalTemplate", + "CoreTemplate", + "PropertyClass" + ], + "hash": 1504674997, + "properties": { + "m_behaviors": { + "type": "class BehaviorTemplate*", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1197808594 + }, + "m_goalName": { + "type": "std::string", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1521627807 + }, + "m_goalNameID": { + "type": "unsigned int", + "id": 2, + "offset": 496, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 403158846 + }, + "m_goalTitle": { + "type": "std::string", + "id": 3, + "offset": 136, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2291910240 + }, + "m_goalUnderway": { + "type": "std::string", + "id": 4, + "offset": 168, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3153144269 + }, + "m_hyperlink": { + "type": "std::string", + "id": 5, + "offset": 200, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2887798993 + }, + "m_completeText": { + "type": "std::string", + "id": 6, + "offset": 232, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2767458393 + }, + "m_completeResults": { + "type": "class ResultList*", + "id": 7, + "offset": 440, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1964258099 + }, + "m_goalRequirements": { + "type": "class RequirementList*", + "id": 8, + "offset": 448, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2979967145 + }, + "m_tallyCounter": { + "type": "class TallyCounterTemplate*", + "id": 9, + "offset": 456, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1884546193 + }, + "m_locationName": { + "type": "std::string", + "id": 10, + "offset": 272, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1824218389 + }, + "m_displayImage1": { + "type": "std::string", + "id": 11, + "offset": 304, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1959572133 + }, + "m_displayImage2": { + "type": "std::string", + "id": 12, + "offset": 336, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1959572134 + }, + "m_clientTags": { + "type": "std::string", + "id": 13, + "offset": 368, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2319030025 + }, + "m_genericEvents": { + "type": "std::string", + "id": 14, + "offset": 384, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 3466670829 + }, + "m_autoQualify": { + "type": "bool", + "id": 15, + "offset": 400, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1878907431 + }, + "m_autoComplete": { + "type": "bool", + "id": 16, + "offset": 401, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1302545445 + }, + "m_destinationZone": { + "type": "std::string", + "id": 17, + "offset": 408, + "flags": 268435463, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2605356153, + "enum_options": { + "__BASECLASS": "ZoneData" + } + }, + "m_dialogList": { + "type": "class ActorDialogListBase*", + "id": 18, + "offset": 264, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1909154969 + }, + "m_goalType": { + "type": "enum GoalTemplate::GOAL_TYPE", + "id": 19, + "offset": 96, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1488021149, + "enum_options": { + "GOAL_TYPE_UNKNOWN": 0, + "GOAL_TYPE_BOUNTY": 1, + "GOAL_TYPE_BOUNTYCOLLECT": 2, + "GOAL_TYPE_SCAVENGE": 3, + "GOAL_TYPE_PERSONA": 4, + "GOAL_TYPE_WAYPOINT": 5, + "GOAL_TYPE_SCAVENGEFAKE": 6, + "GOAL_TYPE_ACHIEVERANK": 7, + "GOAL_TYPE_USAGE": 8, + "GOAL_TYPE_COMPLETEQUEST": 9, + "GOAL_TYPE_SOCIARANK": 10, + "GOAL_TYPE_SOCIACURRENCY": 11, + "GOAL_TYPE_SOCIAMINIGAME": 12, + "GOAL_TYPE_SOCIAGIVEITEM": 13, + "GOAL_TYPE_SOCIAGETITEM": 14, + "GOAL_TYPE_COLLECTAFTERBOUNTY": 15, + "GOAL_TYPE_ENCOUNTER_WAYPOINT_FOREACH": 16 + } + }, + "m_noQuestHelper": { + "type": "bool", + "id": 20, + "offset": 500, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 578010882, + "enum_options": { + "__DEFAULT": 0 + } + }, + "m_petOnlyQuest": { + "type": "bool", + "id": 21, + "offset": 501, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 679359344, + "enum_options": { + "__DEFAULT": 0 + } + }, + "m_activateResults": { + "type": "class ResultList*", + "id": 22, + "offset": 504, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3790153995 + }, + "m_hideGoalFloatyText": { + "type": "bool", + "id": 23, + "offset": 512, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1919383204, + "enum_options": { + "__DEFAULT": 0 + } + }, + "m_personaName": { + "type": "std::string", + "id": 24, + "offset": 520, + "flags": 268435463, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2514452244, + "enum_options": { + "__BASECLASS": "Persona" + } + }, + "m_usePatron": { + "type": "bool", + "id": 25, + "offset": 552, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 853266164 + } + } + }, + "646045862": { + "name": "class CharacterElementTable", + "bases": [ + "PropertyClass" + ], + "hash": 646045862, + "properties": { + "m_sGender": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3526777091 + }, + "m_sBodySource": { + "type": "std::string", + "id": 1, + "offset": 104, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2802913933 + }, + "m_sSkeletonSource": { + "type": "std::string", + "id": 2, + "offset": 136, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1545150788 + }, + "m_idleAnimation": { + "type": "int", + "id": 3, + "offset": 168, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1402787576 + }, + "m_headElementList": { + "type": "class CharacterElement*", + "id": 4, + "offset": 176, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 568589744 + }, + "m_hatElementList": { + "type": "class CharacterElement*", + "id": 5, + "offset": 200, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2416614427 + }, + "m_hairElementList": { + "type": "class CharacterElement*", + "id": 6, + "offset": 224, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1563065986 + }, + "m_torsoElementList": { + "type": "class CharacterElement*", + "id": 7, + "offset": 248, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2307446133 + }, + "m_feetElementList": { + "type": "class CharacterElement*", + "id": 8, + "offset": 272, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 671555138 + }, + "m_hairTextureList": { + "type": "class CharacterElement*", + "id": 9, + "offset": 296, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2218875305 + }, + "m_torsoTextureList": { + "type": "class CharacterElement*", + "id": 10, + "offset": 320, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 815771804 + }, + "m_torsoDecalList": { + "type": "class CharacterElement*", + "id": 11, + "offset": 344, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 808442148 + }, + "m_skinTextureList": { + "type": "class CharacterElement*", + "id": 12, + "offset": 368, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2500320186 + }, + "m_skinDecalList": { + "type": "class CharacterElement*", + "id": 13, + "offset": 392, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2545329346 + }, + "m_hatTextureList": { + "type": "class CharacterElement*", + "id": 14, + "offset": 416, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 924940098 + }, + "m_hatDecalList": { + "type": "class CharacterElement*", + "id": 15, + "offset": 440, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1780727370 + }, + "m_feetTextureList": { + "type": "class CharacterElement*", + "id": 16, + "offset": 464, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1327364457 + }, + "m_feetDecalList": { + "type": "class CharacterElement*", + "id": 17, + "offset": 488, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1828424369 + }, + "m_attachSlotList": { + "type": "class CharacterElement*", + "id": 18, + "offset": 512, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1124990027 + }, + "m_attachableList": { + "type": "class NamedCharacterElement", + "id": 19, + "offset": 536, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2132808559 + }, + "m_skinDecalList2": { + "type": "class CharacterElement*", + "id": 20, + "offset": 560, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1599566932 + }, + "m_faceElementList": { + "type": "class CharacterElement*", + "id": 21, + "offset": 584, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1040559117 + }, + "m_eyeElementList": { + "type": "class CharacterElement*", + "id": 22, + "offset": 608, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1894800033 + }, + "m_mouthElementList": { + "type": "class CharacterElement*", + "id": 23, + "offset": 632, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1586296075 + }, + "m_noseElementList": { + "type": "class CharacterElement*", + "id": 24, + "offset": 656, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2343885043 + }, + "m_accessoryElementList": { + "type": "class CharacterElement*", + "id": 25, + "offset": 680, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 771146122 + }, + "m_eyeColorTextureList": { + "type": "class CharacterElement*", + "id": 26, + "offset": 704, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1921350375 + }, + "m_faceDecalTextureList": { + "type": "class CharacterElement*", + "id": 27, + "offset": 728, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1002745901 + }, + "m_mouthDecalTextureList": { + "type": "class CharacterElement*", + "id": 28, + "offset": 752, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2358724587 + } + } + }, + "1930001305": { + "name": "struct std::pair", + "bases": [], + "hash": 1930001305, + "properties": {} + }, + "218084997": { + "name": "class NotInActiveTournamentOrPvP*", + "bases": [ + "Requirement", + "PropertyClass" + ], + "hash": 218084997, + "properties": { + "m_applyNOT": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1746328074, + "enum_options": { + "__DEFAULT": 0 + } + }, + "m_operator": { + "type": "enum Requirement::Operator", + "id": 1, + "offset": 76, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2672792317, + "enum_options": { + "ROP_AND": 0, + "ROP_OR": 1, + "__DEFAULT": "ROP_AND" + } + } + } + }, + "1074858893": { + "name": "class ClearBottomTeamCinematicAction", + "bases": [ + "CinematicAction", + "PropertyClass" + ], + "hash": 1074858893, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_interpDuration": { + "type": "float", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237711951 + } + } + }, + "645798460": { + "name": "class PhysicsSimMassTube*", + "bases": [ + "PhysicsSimMassCylinder", + "PhysicsSimMassSphere", + "PhysicsSimMass", + "PropertyClass" + ], + "hash": 645798460, + "properties": {} + }, + "1929567268": { + "name": "class PartyObserver", + "bases": [ + "GroupObserver", + "PropertyClass" + ], + "hash": 1929567268, + "properties": {} + }, + "218034790": { + "name": "class PetCastEffectActorCinematicAction*", + "bases": [ + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 218034790, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + } + } + }, + "1074770504": { + "name": "class SharedPointer", + "bases": [ + "CameraReleaseCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 1074770504, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_releaseInterpolationDuration": { + "type": "float", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1807754278, + "enum_options": { + "__DEFAULT": "1.0" + } + } + } + }, + "645711197": { + "name": "class Size", + "bases": [], + "hash": 645711197, + "properties": {} + }, + "1505093901": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1505093901, + "properties": { + "m_associatedWorlds": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2747792502 + } + } + }, + "1930343526": { + "name": "class SharedPointer", + "bases": [ + "WinAnimContainer", + "WindowAnimation", + "PropertyClass" + ], + "hash": 1930343526, + "properties": { + "m_bUseDeepCopy": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 433380635 + }, + "m_winAnimList": { + "type": "class SharedPointer", + "id": 1, + "offset": 80, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1941062728 + }, + "m_bLooping": { + "type": "bool", + "id": 2, + "offset": 104, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2131020845 + }, + "m_finishedAnimList": { + "type": "class SharedPointer", + "id": 3, + "offset": 112, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 3066650884 + } + } + }, + "218085007": { + "name": "class NotInActiveTournamentOrPvP", + "bases": [ + "Requirement", + "PropertyClass" + ], + "hash": 218085007, + "properties": { + "m_applyNOT": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1746328074, + "enum_options": { + "__DEFAULT": 0 + } + }, + "m_operator": { + "type": "enum Requirement::Operator", + "id": 1, + "offset": 76, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2672792317, + "enum_options": { + "ROP_AND": 0, + "ROP_OR": 1, + "__DEFAULT": "ROP_AND" + } + } + } + }, + "1074970711": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1074970711, + "properties": { + "m_playerList": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1909774945 + } + } + }, + "645912571": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 645912571, + "properties": { + "m_monsterMagicWorldTotalList": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 3735585298 + } + } + }, + "1930319611": { + "name": "class SG_GameAction_Interact", + "bases": [ + "SG_GameAction", + "PropertyClass" + ], + "hash": 1930319611, + "properties": { + "m_target": { + "type": "enum SG_GameAction::SG_Target", + "id": 0, + "offset": 72, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1166870973, + "enum_options": { + "Target_Ball": 0, + "Target_Self": 1, + "Target_Connections": 2, + "__DEFAULT": "Target_Ball" + } + }, + "m_interactor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3125502454 + } + } + }, + "1074929863": { + "name": "class SharedPointer", + "bases": [ + "StatisticEffectTemplate", + "GameEffectTemplate", + "PropertyClass" + ], + "hash": 1074929863, + "properties": { + "m_effectName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2029161513 + }, + "m_effectCategory": { + "type": "std::string", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1852673222 + }, + "m_sortOrder": { + "type": "int", + "id": 2, + "offset": 148, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1411218206 + }, + "m_duration": { + "type": "double", + "id": 3, + "offset": 192, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2727932435 + }, + "m_stackingCategories": { + "type": "std::string", + "id": 4, + "offset": 160, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1774497525 + }, + "m_isPersistent": { + "type": "bool", + "id": 5, + "offset": 153, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 923861920 + }, + "m_bIsOnPet": { + "type": "bool", + "id": 6, + "offset": 154, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 522593303 + }, + "m_isPublic": { + "type": "bool", + "id": 7, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1728439822 + }, + "m_visualEffectAddName": { + "type": "std::string", + "id": 8, + "offset": 200, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3382086694 + }, + "m_visualEffectRemoveName": { + "type": "std::string", + "id": 9, + "offset": 232, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1541697323 + }, + "m_onAddFunctorName": { + "type": "std::string", + "id": 10, + "offset": 280, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1561843107 + }, + "m_onRemoveFunctorName": { + "type": "std::string", + "id": 11, + "offset": 312, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2559017864 + }, + "m_stackingRule": { + "type": "enum STACKING_RULE", + "id": 12, + "offset": 144, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 431568889, + "enum_options": { + "STACKING_ALLOWED": 0, + "STACKING_NOSTACK": 1, + "STACKING_REPLACE": 2 + } + }, + "m_itemSlots": { + "type": "std::string", + "id": 13, + "offset": 360, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 3305858271 + } + } + }, + "1505629874": { + "name": "class SharedPointer", + "bases": [ + "DerbyEffect", + "PropertyClass" + ], + "hash": 1505629874, + "properties": { + "m_buffType": { + "type": "enum DerbyTalentBuffType", + "id": 0, + "offset": 92, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1149251982, + "enum_options": { + "Buff": 0, + "Debuff": 1, + "Neither": 2 + } + }, + "m_kTarget": { + "type": "enum DerbyTargetType", + "id": 1, + "offset": 96, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1807803351, + "enum_options": { + "kTargetInFront": 0, + "kTargetBehind": 1, + "kTargetFirst": 2, + "kTargetSelf": 3, + "kTargetAll": 4, + "kTargetLast": 5 + } + }, + "m_nDuration": { + "type": "int", + "id": 2, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1110167982 + }, + "m_effectID": { + "type": "unsigned int", + "id": 3, + "offset": 88, + "flags": 24, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2347630439 + }, + "m_imageFilename": { + "type": "std::string", + "id": 4, + "offset": 112, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2813328063 + }, + "m_iconIndex": { + "type": "unsigned int", + "id": 5, + "offset": 144, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1265133262 + }, + "m_soundOnActivate": { + "type": "std::string", + "id": 6, + "offset": 152, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1956929714 + }, + "m_soundOnTarget": { + "type": "std::string", + "id": 7, + "offset": 184, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3444214056 + }, + "m_targetParticleEffect": { + "type": "std::string", + "id": 8, + "offset": 216, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3048234723 + }, + "m_overheadMessage": { + "type": "std::string", + "id": 9, + "offset": 248, + "flags": 8388639, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1701018190 + }, + "m_requirements": { + "type": "class RequirementList", + "id": 10, + "offset": 280, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2840988582 + } + } + }, + "1930162774": { + "name": "class SharedPointer", + "bases": [ + "ControlButton", + "Window", + "PropertyClass" + ], + "hash": 1930162774, + "properties": { + "m_sName": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306437263 + }, + "m_Children": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621225959 + }, + "m_Style": { + "type": "unsigned int", + "id": 2, + "offset": 152, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152, + "SHOW_HOTKEY": 16777216, + "EFFECT_SCALE": 67108864, + "LOCK_ICON_SIZE": 33554432, + "LEFT_TEXT": 536870912, + "NO_FIT_TEXT": 1073741824 + } + }, + "m_Flags": { + "type": "unsigned int", + "id": 3, + "offset": 156, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } + }, + "m_Window": { + "type": "class Rect", + "id": 4, + "offset": 160, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3105139380 + }, + "m_fTargetAlpha": { + "type": "float", + "id": 5, + "offset": 212, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1809129834 + }, + "m_fDisabledAlpha": { + "type": "float", + "id": 6, + "offset": 216, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1389987675 + }, + "m_fAlpha": { + "type": "float", + "id": 7, + "offset": 208, + "flags": 65671, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 482130755 + }, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3623628394 + }, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2102211316 + }, + "m_sScript": { + "type": "std::string", + "id": 10, + "offset": 352, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1846695875 + }, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3389835433 + }, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547159940 + }, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513510520 + }, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3091503757 + }, + "m_bToggle": { + "type": "bool", + "id": 16, + "offset": 608, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2071810903 + }, + "m_bButtonDown": { + "type": "bool", + "id": 17, + "offset": 609, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 840041705 + }, + "m_sLabel": { + "type": "std::wstring", + "id": 18, + "offset": 616, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2207009163 + }, + "m_labelOffset": { + "type": "class Rect", + "id": 19, + "offset": 832, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1990646723 + }, + "m_pButton": { + "type": "class SharedPointer", + "id": 20, + "offset": 656, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1543855875 + }, + "m_HotKey": { + "type": "unsigned int", + "id": 21, + "offset": 672, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1631553409 + }, + "m_Color": { + "type": "class Color", + "id": 22, + "offset": 676, + "flags": 262279, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1753714077 + }, + "m_bCursorOver": { + "type": "bool", + "id": 23, + "offset": 689, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 283981103 + }, + "m_bAbortWhenCursorNotOver": { + "type": "bool", + "id": 24, + "offset": 706, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 325405258 + }, + "m_bHotKeyDown": { + "type": "bool", + "id": 25, + "offset": 680, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 616989185 + }, + "m_fTime": { + "type": "float", + "id": 26, + "offset": 684, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 883746156 + }, + "m_bGreyed": { + "type": "bool", + "id": 27, + "offset": 688, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1566556053 + }, + "m_fMaxScale": { + "type": "float", + "id": 28, + "offset": 692, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2070186635 + }, + "m_fScaleSpeed": { + "type": "float", + "id": 29, + "offset": 696, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1457135702 + }, + "m_bUseDropShadow": { + "type": "bool", + "id": 30, + "offset": 704, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 93063037 + }, + "m_bUseOutline": { + "type": "bool", + "id": 31, + "offset": 705, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 744292994 + }, + "m_pGreyedState": { + "type": "class SharedPointer", + "id": 32, + "offset": 768, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2703352263 + }, + "m_pNormalState": { + "type": "class SharedPointer", + "id": 33, + "offset": 752, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1887909808 + }, + "m_pHighlightedState": { + "type": "class SharedPointer", + "id": 34, + "offset": 784, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2200177608 + }, + "m_pSelectedState": { + "type": "class SharedPointer", + "id": 35, + "offset": 800, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2266776432 + }, + "m_pDepressedState": { + "type": "class SharedPointer", + "id": 36, + "offset": 816, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1878185798 + } + } + }, + "218529137": { + "name": "class HousingItemList", + "bases": [ + "PropertyClass" + ], + "hash": 218529137, + "properties": { + "m_housingItemGIDList": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 310124628 + } + } + }, + "647324141": { + "name": "class ClientSpawnActorCinematicAction", + "bases": [ + "SpawnActorCinematicAction", + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 647324141, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + }, + "m_objectInfo": { + "type": "class CoreObjectInfo*", + "id": 2, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1373700953 + }, + "m_bStartHidden": { + "type": "bool", + "id": 3, + "offset": 128, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1939845615 + } + } + }, + "218524017": { + "name": "class HousingItemList*", + "bases": [ + "PropertyClass" + ], + "hash": 218524017, + "properties": { + "m_housingItemGIDList": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 310124628 + } + } + }, + "1075645972": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1075645972, + "properties": { + "m_poiList": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 3936595873 + } + } + }, + "1506949063": { + "name": "class SharedPointer", + "bases": [ + "HideActorCinematicAction", + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 1506949063, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + }, + "m_bHide": { + "type": "bool", + "id": 2, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 790850959 + }, + "m_evenWhileDead": { + "type": "bool", + "id": 3, + "offset": 121, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2100875368 + }, + "m_bMultiRound": { + "type": "bool", + "id": 4, + "offset": 122, + "flags": 263, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1821746440 + } + } + }, + "646047142": { + "name": "class CharacterElementTable*", + "bases": [ + "PropertyClass" + ], + "hash": 646047142, + "properties": { + "m_sGender": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3526777091 + }, + "m_sBodySource": { + "type": "std::string", + "id": 1, + "offset": 104, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2802913933 + }, + "m_sSkeletonSource": { + "type": "std::string", + "id": 2, + "offset": 136, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1545150788 + }, + "m_idleAnimation": { + "type": "int", + "id": 3, + "offset": 168, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1402787576 + }, + "m_headElementList": { + "type": "class CharacterElement*", + "id": 4, + "offset": 176, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 568589744 + }, + "m_hatElementList": { + "type": "class CharacterElement*", + "id": 5, + "offset": 200, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2416614427 + }, + "m_hairElementList": { + "type": "class CharacterElement*", + "id": 6, + "offset": 224, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1563065986 + }, + "m_torsoElementList": { + "type": "class CharacterElement*", + "id": 7, + "offset": 248, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2307446133 + }, + "m_feetElementList": { + "type": "class CharacterElement*", + "id": 8, + "offset": 272, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 671555138 + }, + "m_hairTextureList": { + "type": "class CharacterElement*", + "id": 9, + "offset": 296, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2218875305 + }, + "m_torsoTextureList": { + "type": "class CharacterElement*", + "id": 10, + "offset": 320, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 815771804 + }, + "m_torsoDecalList": { + "type": "class CharacterElement*", + "id": 11, + "offset": 344, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 808442148 + }, + "m_skinTextureList": { + "type": "class CharacterElement*", + "id": 12, + "offset": 368, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2500320186 + }, + "m_skinDecalList": { + "type": "class CharacterElement*", + "id": 13, + "offset": 392, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2545329346 + }, + "m_hatTextureList": { + "type": "class CharacterElement*", + "id": 14, + "offset": 416, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 924940098 + }, + "m_hatDecalList": { + "type": "class CharacterElement*", + "id": 15, + "offset": 440, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1780727370 + }, + "m_feetTextureList": { + "type": "class CharacterElement*", + "id": 16, + "offset": 464, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1327364457 + }, + "m_feetDecalList": { + "type": "class CharacterElement*", + "id": 17, + "offset": 488, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1828424369 + }, + "m_attachSlotList": { + "type": "class CharacterElement*", + "id": 18, + "offset": 512, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1124990027 + }, + "m_attachableList": { + "type": "class NamedCharacterElement", + "id": 19, + "offset": 536, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2132808559 + }, + "m_skinDecalList2": { + "type": "class CharacterElement*", + "id": 20, + "offset": 560, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1599566932 + }, + "m_faceElementList": { + "type": "class CharacterElement*", + "id": 21, + "offset": 584, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1040559117 + }, + "m_eyeElementList": { + "type": "class CharacterElement*", + "id": 22, + "offset": 608, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1894800033 + }, + "m_mouthElementList": { + "type": "class CharacterElement*", + "id": 23, + "offset": 632, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1586296075 + }, + "m_noseElementList": { + "type": "class CharacterElement*", + "id": 24, + "offset": 656, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2343885043 + }, + "m_accessoryElementList": { + "type": "class CharacterElement*", + "id": 25, + "offset": 680, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 771146122 + }, + "m_eyeColorTextureList": { + "type": "class CharacterElement*", + "id": 26, + "offset": 704, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1921350375 + }, + "m_faceDecalTextureList": { + "type": "class CharacterElement*", + "id": 27, + "offset": 728, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1002745901 + }, + "m_mouthDecalTextureList": { + "type": "class CharacterElement*", + "id": 28, + "offset": 752, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2358724587 + } + } + }, + "1506948809": { + "name": "class SharedPointer", + "bases": [ + "FadeActorCinematicAction", + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 1506948809, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + }, + "m_fadeDuration": { + "type": "float", + "id": 2, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1402536557 + }, + "m_alphaTarget": { + "type": "float", + "id": 3, + "offset": 124, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 197622500 + } + } + }, + "1930360571": { + "name": "class SG_GameAction_Interact*", + "bases": [ + "SG_GameAction", + "PropertyClass" + ], + "hash": 1930360571, + "properties": { + "m_target": { + "type": "enum SG_GameAction::SG_Target", + "id": 0, + "offset": 72, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1166870973, + "enum_options": { + "Target_Ball": 0, + "Target_Self": 1, + "Target_Connections": 2, + "__DEFAULT": "Target_Ball" + } + }, + "m_interactor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3125502454 + } + } + }, + "1506909599": { + "name": "class SharedPointer", + "bases": [ + "ObstacleCourseObstacleBehavior", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1506909599, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + } + } + }, + "218601970": { + "name": "class MountRecord", + "bases": [ + "PropertyClass" + ], + "hash": 218601970, + "properties": { + "m_nVolumeType": { + "type": "enum MountRecord::VolumeTypes", + "id": 0, + "offset": 72, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2832170609, + "enum_options": { + "DISK": 1, + "DSA": 2, + "WAD": 3 } }, - "m_afterCombatDance": { - "type": "unsigned char", - "id": 19, - "offset": 184, - "flags": 63, + "m_sOption": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1705643111 + }, + "m_nPriority": { + "type": "int", + "id": 2, + "offset": 112, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1515251530 + }, + "m_sMount": { + "type": "std::string", + "id": 3, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2412733857 + }, + "m_bWritable": { + "type": "bool", + "id": 4, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1522487983 + } + } + }, + "1075975028": { + "name": "class DuelModifier*", + "bases": [ + "PropertyClass" + ], + "hash": 1075975028, + "properties": { + "m_combatTriggers": { + "type": "std::string", + "id": 0, + "offset": 104, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 3023646200 + }, + "m_noTreasureCards": { + "type": "bool", + "id": 1, + "offset": 137, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1653008424 + }, + "m_battlefieldEffects": { + "type": "class SharedPointer", + "id": 2, + "offset": 72, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1245973515 + }, + "m_gameEffects": { + "type": "class SharedPointer", + "id": 3, + "offset": 88, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1187421775 + }, + "m_onlyTreasureCards": { + "type": "bool", + "id": 4, + "offset": 138, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2012714323 + "hash": 752220749 }, - "m_nSkinDecal2": { - "type": "unsigned short", - "id": 20, - "offset": 192, - "flags": 63, + "m_noShadowSpells": { + "type": "bool", + "id": 5, + "offset": 139, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1904828726 + "hash": 2142185705 }, - "m_extendedHairColor": { - "type": "unsigned char", - "id": 21, - "offset": 194, - "flags": 63, + "m_noCrits": { + "type": "bool", + "id": 6, + "offset": 136, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1534273092 + "hash": 1394430197 }, - "m_extendedSkinDecal": { - "type": "unsigned short", - "id": 22, - "offset": 196, - "flags": 63, + "m_noEnchantedTreasureCards": { + "type": "bool", + "id": 7, + "offset": 140, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2299798727 + "hash": 1780948882 }, - "m_newPlayerOptions": { - "type": "unsigned int", - "id": 23, - "offset": 200, - "flags": 63, + "m_noEnchantmentSpells": { + "type": "bool", + "id": 8, + "offset": 141, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1564037328 + "hash": 1325982520 }, - "m_newPlayerOptions2": { - "type": "unsigned int", - "id": 24, - "offset": 204, - "flags": 63, + "m_noMaycastSpells": { + "type": "bool", + "id": 9, + "offset": 142, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1895849858 + "hash": 1409034133 }, - "m_afterCombatVictoryDance": { - "type": "unsigned int", - "id": 25, - "offset": 188, + "m_enableSpellLevelRestrictions": { + "type": "bool", + "id": 10, + "offset": 143, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1655464256 + "hash": 1272415451 + }, + "m_ignoreSpellsPvPOnlyFlag": { + "type": "bool", + "id": 11, + "offset": 144, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1714276188 + }, + "m_ignoreSpellsPvEOnlyFlag": { + "type": "bool", + "id": 12, + "offset": 145, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1691675729 + }, + "m_requiredSpellsAdjectives": { + "type": "int", + "id": 13, + "offset": 152, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1262019376 + }, + "m_bannedSpellsAdjectives": { + "type": "int", + "id": 14, + "offset": 168, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1474039287 } } }, - "1924277879": { - "name": "class InstanceInfo*", + "1075927341": { + "name": "class TournamentUpdateList", "bases": [ "PropertyClass" ], - "hash": 1924277879, + "hash": 1075927341, "properties": { - "m_sZoneName": { - "type": "std::string", + "m_updates": { + "type": "class SharedPointer", "id": 0, + "offset": 88, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 3250680338 + }, + "m_matchCount": { + "type": "int", + "id": 1, "offset": 72, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3632841067 + "hash": 1400798736 }, - "m_nInstanceID": { + "m_teamCount": { "type": "int", - "id": 1, - "offset": 104, + "id": 2, + "offset": 76, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1380862506 + "hash": 1614476394 }, - "m_nZoneID": { - "type": "gid", - "id": 2, - "offset": 112, + "m_actorCount": { + "type": "int", + "id": 3, + "offset": 80, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 622120303 + "hash": 1057423836 } } }, - "1524138991": { - "name": "class FontMapSWF", + "651082221": { + "name": "class BGPlayerInfo*", "bases": [ "PropertyClass" ], - "hash": 1524138991, + "hash": 651082221, "properties": { - "m_mappings": { - "type": "class FontMapping", + "m_playerID": { + "type": "gid", "id": 0, "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, + "flags": 31, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 3543733145 + "hash": 1774633426 }, - "m_defaultFont": { + "m_team": { "type": "std::string", "id": 1, - "offset": 88, - "flags": 7, + "offset": 80, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2375516599 + "hash": 1717579362 } } }, - "1924058956": { - "name": "class SharedPointer", + "1946782891": { + "name": "class SpeedEffectInfo*", "bases": [ - "BehaviorInstance", + "GameEffectInfo", "PropertyClass" ], - "hash": 1924058956, + "hash": 1946782891, "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", + "m_effectName": { + "type": "std::string", "id": 0, - "offset": 104, - "flags": 39, + "offset": 72, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 + "hash": 2029161513 }, - "m_radialMenuData": { - "type": "std::string", + "m_speedMultiplier": { + "type": "int", "id": 1, - "offset": 128, - "flags": 575, + "offset": 104, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3438486999 + "hash": 32503058 } } }, - "1523922554": { - "name": "class ReqCombatStatus", + "648253786": { + "name": "class SharedPointer", "bases": [ - "ConditionalSpellEffectRequirement", - "Requirement", + "BehaviorTemplate", "PropertyClass" ], - "hash": 1523922554, + "hash": 648253786, "properties": { - "m_applyNOT": { - "type": "bool", + "m_behaviorName": { + "type": "std::string", "id": 0, "offset": 72, - "flags": 31, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1746328074, - "enum_options": { - "__DEFAULT": 0 - } + "hash": 3130754092 + } + } + }, + "1940581724": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1940581724, + "properties": { + "m_templateID": { + "type": "unsigned int", + "id": 0, + "offset": 72, + "flags": 33554471, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1286746870 }, - "m_operator": { - "type": "enum Requirement::Operator", + "m_numberCaught": { + "type": "unsigned int", "id": 1, "offset": 76, - "flags": 2097183, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2672792317, - "enum_options": { - "ROP_AND": 0, - "ROP_OR": 1, - "__DEFAULT": "ROP_AND" - } + "hash": 880871538 }, - "m_targetType": { - "type": "enum ConditionalSpellEffectRequirement::RequirementTarget", + "m_smallestSize": { + "type": "float", "id": 2, "offset": 80, - "flags": 2097159, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2547737902, - "enum_options": { - "RT_Caster": 0, - "RT_Target": 1 - } + "hash": 1372912951 }, - "m_status": { - "type": "enum ReqCombatStatus::kStatusEffect", + "m_largestSize": { + "type": "float", "id": 3, + "offset": 84, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 344314084 + }, + "m_numberSmallFrysCaught": { + "type": "unsigned int", + "id": 4, "offset": 88, - "flags": 2097159, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2594569198, - "enum_options": { - "kStunned": 0, - "kConfused": 1 - } + "hash": 2177497487 + }, + "m_numberWoppersCaught": { + "type": "unsigned int", + "id": 5, + "offset": 92, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 842916418 } } }, - "1923996038": { - "name": "class SharedPointer", + "219050943": { + "name": "class HousingNodeList", "bases": [ - "PetTalentControlBase", - "Window", "PropertyClass" ], - "hash": 1923996038, + "hash": 219050943, "properties": { - "m_sName": { - "type": "std::string", + "m_nodeList": { + "type": "class SharedPointer", "id": 0, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306437263 - }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 65667, + "offset": 72, + "flags": 7, "container": "Vector", "dynamic": true, "singleton": false, "pointer": true, - "hash": 2621225959 - }, - "m_Style": { - "type": "unsigned int", - "id": 2, - "offset": 152, - "flags": 1048583, + "hash": 3486511051 + } + } + }, + "1507139663": { + "name": "class SpellEffectPenalty", + "bases": [ + "PropertyClass" + ], + "hash": 1507139663, + "properties": { + "m_effectType": { + "type": "enum SpellEffect::kSpellEffects", + "id": 0, + "offset": 72, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 983582334, + "hash": 2578255295, "enum_options": { - "HAS_BACK": 1, - "SCALE_CHILDREN": 2, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "FOCUS_LOCKED": 64, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152 + "SpellEffect::kInvalidSpellEffect": 0, + "SpellEffect::kDamage": 1, + "SpellEffect::kDamageNoCrit": 2, + "SpellEffect::kHeal": 3, + "SpellEffect::kStealHealth": 5, + "SpellEffect::kReduceOverTime": 6, + "SpellEffect::kDetonateOverTime": 7, + "SpellEffect::kPushCharm": 8, + "SpellEffect::kStealCharm": 9, + "SpellEffect::kPushWard": 10, + "SpellEffect::kStealWard": 11, + "SpellEffect::kPushOverTime": 12, + "SpellEffect::kStealOverTime": 13, + "SpellEffect::kRemoveCharm": 14, + "SpellEffect::kRemoveWard": 15, + "SpellEffect::kRemoveStunBlock": 117, + "SpellEffect::kRemoveOverTime": 16, + "SpellEffect::kRemoveAura": 17, + "SpellEffect::kSwapCharm": 19, + "SpellEffect::kSwapWard": 20, + "SpellEffect::kSwapOverTime": 21, + "SpellEffect::kModifyIncomingDamage": 22, + "SpellEffect::kModifyIncomingDamageFlat": 119, + "SpellEffect::kModifyIncomingDamageOverTime": 137, + "SpellEffect::kMaximumIncomingDamage": 23, + "SpellEffect::kModifyIncomingHeal": 24, + "SpellEffect::kModifyIncomingHealFlat": 118, + "SpellEffect::kModifyIncomingHealOverTime": 138, + "SpellEffect::kModifyIncomingDamageType": 25, + "SpellEffect::kModifyIncomingArmorPiercing": 26, + "SpellEffect::kModifyOutgoingDamage": 27, + "SpellEffect::kModifyOutgoingDamageFlat": 121, + "SpellEffect::kModifyOutgoingHeal": 28, + "SpellEffect::kModifyOutgoingHealFlat": 120, + "SpellEffect::kModifyOutgoingDamageType": 29, + "SpellEffect::kModifyOutgoingArmorPiercing": 30, + "SpellEffect::kBounceNext": 33, + "SpellEffect::kBouncePrevious": 34, + "SpellEffect::kBounceBack": 35, + "SpellEffect::kBounceAll": 36, + "SpellEffect::kAbsorbDamage": 37, + "SpellEffect::kAbsorbHeal": 38, + "SpellEffect::kModifyAccuracy": 39, + "SpellEffect::kDispel": 40, + "SpellEffect::kConfusion": 41, + "SpellEffect::kCloakedCharm": 42, + "SpellEffect::kCloakedWard": 43, + "SpellEffect::kStunResist": 44, + "SpellEffect::kPipConversion": 45, + "SpellEffect::kCritBoost": 46, + "SpellEffect::kCritBlock": 47, + "SpellEffect::kPolymorph": 48, + "SpellEffect::kModifyCardCloak": 50, + "SpellEffect::kModifyCardDamage": 51, + "SpellEffect::kModifyCardAccuracy": 53, + "SpellEffect::kModifyCardMutation": 54, + "SpellEffect::kModifyCardRank": 55, + "SpellEffect::kModifyCardArmorPiercing": 56, + "SpellEffect::kSummonCreature": 65, + "SpellEffect::kTeleportPlayer": 66, + "SpellEffect::kStun": 67, + "SpellEffect::kDampen": 68, + "SpellEffect::kReshuffle": 69, + "SpellEffect::kMindControl": 70, + "SpellEffect::kModifyPips": 71, + "SpellEffect::kModifyPowerPips": 72, + "SpellEffect::kModifyShadowPips": 73, + "SpellEffect::kModifyHate": 74, + "SpellEffect::kDamageOverTime": 75, + "SpellEffect::kHealOverTime": 76, + "SpellEffect::kModifyPowerPipChance": 77, + "SpellEffect::kModifyRank": 78, + "SpellEffect::kStunBlock": 79, + "SpellEffect::kRevealCloak": 80, + "SpellEffect::kInstantKill": 81, + "SpellEffect::kAfterlife": 82, + "SpellEffect::kDeferredDamage": 83, + "SpellEffect::kDamagePerTotalPipPower": 84, + "SpellEffect::kCloakedWardNoRemove": 86, + "SpellEffect::kAddCombatTriggerList": 87, + "SpellEffect::kRemoveCombatTriggerList": 88, + "SpellEffect::kBacklashDamage": 89, + "SpellEffect::kMaxHealthDamage": 112, + "SpellEffect::kModifyBacklash": 90, + "SpellEffect::kIntercept": 91, + "SpellEffect::kShadowSelf": 92, + "SpellEffect::kShadowCreature": 93, + "SpellEffect::kModifyShadowCreatureLevel": 94, + "SpellEffect::kSelectShadowCreatureAttackTarget": 95, + "SpellEffect::kShadowDecrementTurn": 96, + "SpellEffect::kCritBoostSchoolSpecific": 97, + "SpellEffect::kSpawnCreature": 98, + "SpellEffect::kUnPolymorph": 99, + "SpellEffect::kPowerPipConversion": 100, + "SpellEffect::kProtectBeneficial": 103, + "SpellEffect::kProtectHarmful": 104, + "SpellEffect::kProtectCardBeneficial": 101, + "SpellEffect::kProtectCardHarmful": 102, + "SpellEffect::kDivideDamage": 105, + "SpellEffect::kConfusionBlock": 109, + "SpellEffect::kModifyPipRoundRate": 110, + "SpellEffect::kMaxHealthHeal": 129, + "SpellEffect::kHealByWard": 130, + "SpellEffect::kTaunt": 131, + "SpellEffect::kPacify": 132, + "SpellEffect::kModifySchoolPips": 150 } }, - "m_Flags": { - "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 1048583, + "m_disposition": { + "type": "enum SpellEffect::kHangingDisposition", + "id": 1, + "offset": 76, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 967851578, + "hash": 1904841031, "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 + "SpellEffect::kBoth": 0, + "SpellEffect::kBeneficial": 1, + "SpellEffect::kHarmful": 2 } }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, - "flags": 135, + "m_penaltyTime": { + "type": "int", + "id": 2, + "offset": 80, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3105139380 - }, - "m_fTargetAlpha": { + "hash": 1993188358 + } + } + }, + "647936459": { + "name": "class ClientScaleActorCinematicAction", + "bases": [ + "ScaleActorCinematicAction", + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 647936459, + "properties": { + "m_timeOffset": { "type": "float", - "id": 5, - "offset": 212, - "flags": 135, + "id": 0, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1809129834 + "hash": 2237098605 }, - "m_fDisabledAlpha": { - "type": "float", - "id": 6, - "offset": 216, - "flags": 135, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1389987675 + "hash": 2285866132 }, - "m_fAlpha": { + "m_scaleDuration": { "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, + "id": 2, + "offset": 120, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 482130755 - }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3623628394 + "hash": 1764097637 }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, + "m_scaleTarget": { + "type": "float", + "id": 3, + "offset": 124, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2102211316 - }, - "m_sScript": { + "hash": 1502791366 + } + } + }, + "1936186106": { + "name": "class SharedPointer", + "bases": [ + "Texture", + "PropertyClass" + ], + "hash": 1936186106, + "properties": { + "m_sFilename": { "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, + "id": 0, + "offset": 104, + "flags": 131207, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1846695875 + "hash": 2431512111 }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, + "m_bAlphaChannel": { + "type": "bool", + "id": 1, + "offset": 137, "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3389835433 + "hash": 1780697684 }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, + "m_bDoubleSided": { + "type": "bool", + "id": 2, + "offset": 138, "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2547159940 + "hash": 1054874233 }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, + "m_bMipMap": { + "type": "bool", + "id": 3, + "offset": 139, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", + "hash": 1791042393 + } + } + }, + "219047871": { + "name": "class HousingNodeList*", + "bases": [ + "PropertyClass" + ], + "hash": 219047871, + "properties": { + "m_nodeList": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Vector", "dynamic": true, "singleton": false, - "pointer": false, - "hash": 2587533771 - }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3091503757 + "pointer": true, + "hash": 3486511051 } } }, - "1523917434": { - "name": "class ReqCombatStatus*", + "1077944646": { + "name": "class GhostHider", "bases": [ - "ConditionalSpellEffectRequirement", - "Requirement", "PropertyClass" ], - "hash": 1523917434, + "hash": 1077944646, + "properties": {} + }, + "1506967300": { + "name": "class SharedPointer", + "bases": [ + "MoveActorCinematicAction", + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 1506967300, "properties": { - "m_applyNOT": { - "type": "bool", + "m_timeOffset": { + "type": "float", "id": 0, "offset": 72, - "flags": 31, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1746328074, - "enum_options": { - "__DEFAULT": 0 - } + "hash": 2237098605 }, - "m_operator": { - "type": "enum Requirement::Operator", + "m_actor": { + "type": "std::string", "id": 1, - "offset": 76, - "flags": 2097183, + "offset": 80, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2672792317, - "enum_options": { - "ROP_AND": 0, - "ROP_OR": 1, - "__DEFAULT": "ROP_AND" - } + "hash": 2285866132 }, - "m_targetType": { - "type": "enum ConditionalSpellEffectRequirement::RequirementTarget", + "m_destinationActor": { + "type": "std::string", "id": 2, - "offset": 80, - "flags": 2097159, + "offset": 120, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2547737902, - "enum_options": { - "RT_Caster": 0, - "RT_Target": 1 - } + "hash": 1510240374 }, - "m_status": { - "type": "enum ReqCombatStatus::kStatusEffect", + "m_interpolationDuration": { + "type": "float", "id": 3, - "offset": 88, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1458058437 + }, + "m_interpolateRotation": { + "type": "bool", + "id": 4, + "offset": 156, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2140337898 + }, + "m_kDestination": { + "type": "enum MoveActorCinematicAction::kMoveActorDestination", + "id": 5, + "offset": 160, "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2594569198, + "hash": 2027574244, "enum_options": { - "kStunned": 0, - "kConfused": 1 + "kCenter": 0, + "kHome": 3, + "kActor": 1, + "kActorHangingEffect": 2 } + }, + "m_destinationZOffset": { + "type": "float", + "id": 6, + "offset": 164, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2188240922 } } }, - "1924143511": { - "name": "class SharedPointer", + "647724802": { + "name": "class SharedPointer", "bases": [ "PropertyClass" ], - "hash": 1924143511, + "hash": 647724802, "properties": { - "m_levelInfo": { - "type": "class FishingLevelInfo*", + "m_resultList": { + "type": "class SharedPointer", "id": 0, "offset": 72, - "flags": 7, + "flags": 31, "container": "List", "dynamic": true, "singleton": false, "pointer": true, - "hash": 4227148014 - }, - "m_maxLevel": { - "type": "unsigned char", - "id": 1, - "offset": 88, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 783962734 + "hash": 1783304302 } } }, - "1523956164": { - "name": "class ClientPipFloatingTextCinematicAction", + "1933975137": { + "name": "class SetBottomTeamCinematicAction*", "bases": [ - "PipFloatingTextCinematicAction", - "ActorCinematicAction", "CinematicAction", "PropertyClass" ], - "hash": 1523956164, + "hash": 1933975137, "properties": { "m_timeOffset": { "type": "float", @@ -415683,8 +95756,8 @@ "pointer": false, "hash": 2237098605 }, - "m_actor": { - "type": "std::string", + "m_interpDuration": { + "type": "float", "id": 1, "offset": 80, "flags": 7, @@ -415692,1078 +95765,1185 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 2285866132 + "hash": 2237711951 } } }, - "1924791475": { - "name": "class ScrollablePopupButton*", + "1077390789": { + "name": "class SharedPointer", "bases": [ - "ControlPopupButton", - "ControlButton", - "Window", + "CinematicAction", "PropertyClass" ], - "hash": 1924791475, + "hash": 1077390789, "properties": { - "m_sName": { - "type": "std::string", + "m_timeOffset": { + "type": "float", "id": 0, - "offset": 80, - "flags": 135, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2306437263 - }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621225959 - }, - "m_Style": { - "type": "unsigned int", - "id": 2, - "offset": 152, - "flags": 1048583, + "hash": 2237098605 + } + } + }, + "647557634": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 647557634, + "properties": { + "m_petNumber": { + "type": "int", + "id": 0, + "offset": 72, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152, - "POPDOWN_SIBLINGS": 67108864, - "DISABLE_CHILDREN": 134217728, - "HIDE_SIBLINGS": 268435456, - "POPUP_ON_HOVER": 536870912 - } + "hash": 1254828 }, - "m_Flags": { - "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 1048583, + "m_finishTime": { + "type": "float", + "id": 1, + "offset": 76, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } + "hash": 1090658759 }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, - "flags": 135, + "m_tickets": { + "type": "int", + "id": 2, + "offset": 80, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3105139380 + "hash": 353703441 }, - "m_fTargetAlpha": { - "type": "float", - "id": 5, - "offset": 212, - "flags": 135, + "m_gold": { + "type": "int", + "id": 3, + "offset": 84, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1809129834 - }, - "m_fDisabledAlpha": { + "hash": 219423808 + } + } + }, + "1932477328": { + "name": "class AddHangingEffectCinematicAction", + "bases": [ + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 1932477328, + "properties": { + "m_timeOffset": { "type": "float", - "id": 6, - "offset": 216, - "flags": 135, + "id": 0, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1389987675 + "hash": 2237098605 }, - "m_fAlpha": { - "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 482130755 - }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3623628394 + "hash": 2285866132 }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, + "m_effect": { + "type": "std::string", + "id": 2, + "offset": 120, + "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2102211316 + "hash": 1894145160 }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, + "m_revealsCloaked": { + "type": "bool", + "id": 3, + "offset": 156, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1846695875 - }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, + "hash": 1618772408 + } + } + }, + "1076305176": { + "name": "class SharedPointer", + "bases": [ + "PathBehaviorTemplate::Action", + "PropertyClass" + ], + "hash": 1076305176, + "properties": { + "m_nPathID": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3389835433 + "hash": 214382368 }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, + "m_nNodeID": { + "type": "int", + "id": 1, + "offset": 80, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2547159940 + "hash": 152152635, + "enum_options": { + "__DEFAULT": 4294967295 + } }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, + "m_nPriority": { + "type": "int", + "id": 2, + "offset": 84, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2587533771 + "hash": 1515251530, + "enum_options": { + "__DEFAULT": 100 + } }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, + "m_nChance": { + "type": "int", + "id": 3, + "offset": 88, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3091503757 + "hash": 1860748394, + "enum_options": { + "__DEFAULT": 50 + } }, - "m_bToggle": { - "type": "bool", - "id": 16, - "offset": 608, - "flags": 135, + "m_sEmoteName": { + "type": "std::string", + "id": 4, + "offset": 96, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2071810903 + "hash": 3416743849 }, - "m_bButtonDown": { - "type": "bool", - "id": 17, - "offset": 609, - "flags": 135, + "m_fMinTime": { + "type": "float", + "id": 5, + "offset": 128, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 840041705 + "hash": 1948284304 }, - "m_sLabel": { - "type": "std::wstring", - "id": 18, - "offset": 616, - "flags": 4194439, + "m_fMaxTime": { + "type": "float", + "id": 6, + "offset": 132, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2207009163 - }, - "m_labelOffset": { - "type": "class Rect", - "id": 19, - "offset": 832, - "flags": 135, + "hash": 1647060370 + } + } + }, + "1930921845": { + "name": "class PositionalSoundBehaviorTemplate", + "bases": [ + "SoundBehaviorTemplate", + "AreaBehaviorTemplate", + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 1930921845, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1990646723 + "hash": 3130754092 }, - "m_pButton": { - "type": "class SharedPointer", - "id": 20, - "offset": 656, - "flags": 135, + "m_radius": { + "type": "float", + "id": 1, + "offset": 120, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1543855875 + "pointer": false, + "hash": 989410271 }, - "m_HotKey": { - "type": "unsigned int", - "id": 21, - "offset": 672, - "flags": 135, + "m_category": { + "type": "enum AudioCategory", + "id": 2, + "offset": 124, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1631553409 + "hash": 2951251982, + "enum_options": { + "AudioCategory_Irrelevent": 0, + "AudioCategory_Accoustic": 1, + "AudioCategory_Noise": 2, + "AudioCategory_Music": 3, + "AudioCategory_MusicAtSFXVolume": 4, + "AudioCategory_Dialog": 5, + "AudioCategory_UI": 6, + "AudioCategory_NoiseAtMusicVolume": 7 + } }, - "m_Color": { - "type": "class Color", - "id": 22, - "offset": 676, - "flags": 262279, + "m_exclusive": { + "type": "bool", + "id": 3, + "offset": 128, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1753714077 + "hash": 824383403 }, - "m_bCursorOver": { + "m_active": { "type": "bool", - "id": 23, - "offset": 689, - "flags": 135, + "id": 4, + "offset": 129, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 283981103 + "hash": 239335471 }, - "m_bAbortWhenCursorNotOver": { - "type": "bool", - "id": 24, - "offset": 706, - "flags": 135, + "m_enableReqs": { + "type": "class SharedPointer", + "id": 5, + "offset": 136, + "flags": 263, "container": "Static", "dynamic": false, "singleton": false, + "pointer": true, + "hash": 3158020443 + }, + "m_trackFilenameList": { + "type": "std::string", + "id": 6, + "offset": 152, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, "pointer": false, - "hash": 325405258 + "hash": 2531081709 }, - "m_bHotKeyDown": { - "type": "bool", - "id": 25, - "offset": 680, - "flags": 135, + "m_playList": { + "type": "class PlayListEntry*", + "id": 7, + "offset": 176, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 3907873161 + }, + "m_priority": { + "type": "int", + "id": 8, + "offset": 208, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 616989185 + "hash": 1235205852 }, - "m_fTime": { + "m_volume": { "type": "float", - "id": 26, - "offset": 684, - "flags": 135, + "id": 9, + "offset": 200, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 883746156 + "hash": 1162855023 }, - "m_bGreyed": { - "type": "bool", - "id": 27, - "offset": 688, - "flags": 135, + "m_loopCount": { + "type": "int", + "id": 10, + "offset": 204, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1566556053 + "hash": 865634717 }, - "m_fMaxScale": { - "type": "float", - "id": 28, - "offset": 692, - "flags": 135, + "m_progression": { + "type": "enum PlayList::Progression", + "id": 11, + "offset": 220, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2070186635 + "hash": 3279400238, + "enum_options": { + "Sequence": 0, + "Random": 1, + "SequenceOnceOnly": 2, + "RandomNoRepeat": 3 + } }, - "m_fScaleSpeed": { + "m_progressMin": { "type": "float", - "id": 29, - "offset": 696, - "flags": 135, + "id": 12, + "offset": 212, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1457135702 + "hash": 1497550192 }, - "m_bUseDropShadow": { - "type": "bool", - "id": 30, - "offset": 704, - "flags": 135, + "m_progressMax": { + "type": "float", + "id": 13, + "offset": 216, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 93063037 + "hash": 1497549938 }, - "m_bUseOutline": { - "type": "bool", - "id": 31, - "offset": 705, - "flags": 135, + "m_audioFilterSet": { + "type": "unsigned int", + "id": 14, + "offset": 224, + "flags": 33554439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 744292994 + "hash": 831339825 }, - "m_pGreyedState": { - "type": "class SharedPointer", - "id": 32, - "offset": 768, - "flags": 135, + "m_animationNameFilter": { + "type": "std::string", + "id": 15, + "offset": 232, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2703352263 + "pointer": false, + "hash": 2292854242 }, - "m_pNormalState": { - "type": "class SharedPointer", - "id": 33, - "offset": 752, - "flags": 135, + "m_functionallabel": { + "type": "std::string", + "id": 16, + "offset": 264, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1887909808 + "pointer": false, + "hash": 3589331278 }, - "m_pHighlightedState": { - "type": "class SharedPointer", - "id": 34, - "offset": 784, - "flags": 135, + "m_innerRadius": { + "type": "float", + "id": 17, + "offset": 296, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2200177608 + "pointer": false, + "hash": 686816091 }, - "m_pSelectedState": { - "type": "class SharedPointer", - "id": 35, - "offset": 800, - "flags": 135, + "m_inverted": { + "type": "bool", + "id": 18, + "offset": 300, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2266776432 - }, - "m_pDepressedState": { - "type": "class SharedPointer", - "id": 36, - "offset": 816, - "flags": 135, + "pointer": false, + "hash": 1034821044 + } + } + }, + "219111838": { + "name": "class SharedPointer", + "bases": [ + "QueuedCombatCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 219111838, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1878185798 - }, - "m_bUp": { - "type": "bool", - "id": 37, - "offset": 880, - "flags": 135, + "pointer": false, + "hash": 2237098605 + } + } + }, + "1507602976": { + "name": "class SharedPointer", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 1507602976, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 269510906 + "hash": 3130754092 } } }, - "1524695124": { - "name": "enum PlantStage", - "bases": [], - "hash": 1524695124, - "properties": {} - }, - "1924790707": { - "name": "class ScrollablePopupButton", + "1930457836": { + "name": "class MountShopOption", "bases": [ - "ControlPopupButton", - "ControlButton", - "Window", + "ServiceOptionBase", "PropertyClass" ], - "hash": 1924790707, + "hash": 1930457836, "properties": { - "m_sName": { + "m_serviceName": { "type": "std::string", "id": 0, - "offset": 80, - "flags": 135, + "offset": 72, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2306437263 + "hash": 2206028813 }, - "m_Children": { - "type": "class SharedPointer", + "m_iconKey": { + "type": "std::string", "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2621225959 + "pointer": false, + "hash": 2457138637 }, - "m_Style": { - "type": "unsigned int", + "m_displayKey": { + "type": "std::string", "id": 2, - "offset": 152, - "flags": 1048583, + "offset": 104, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152, - "POPDOWN_SIBLINGS": 67108864, - "DISABLE_CHILDREN": 134217728, - "HIDE_SIBLINGS": 268435456, - "POPUP_ON_HOVER": 536870912 - } + "hash": 3023276954 }, - "m_Flags": { + "m_serviceIndex": { "type": "unsigned int", "id": 3, - "offset": 156, - "flags": 1048583, + "offset": 204, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } + "hash": 2103126710 }, - "m_Window": { - "type": "class Rect", + "m_forceInteract": { + "type": "bool", "id": 4, - "offset": 160, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3105139380 - }, - "m_fTargetAlpha": { - "type": "float", - "id": 5, - "offset": 212, - "flags": 135, + "offset": 200, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1809129834 - }, - "m_fDisabledAlpha": { + "hash": 1705789564 + } + } + }, + "647932500": { + "name": "class ClientCloneActorCinematicAction", + "bases": [ + "CloneActorCinematicAction", + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 647932500, + "properties": { + "m_timeOffset": { "type": "float", - "id": 6, - "offset": 216, - "flags": 135, + "id": 0, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1389987675 + "hash": 2237098605 }, - "m_fAlpha": { - "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 482130755 - }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3623628394 + "hash": 2285866132 }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, + "m_position": { + "type": "class Vector3D", + "id": 2, + "offset": 124, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2102211316 + "hash": 3697900983 }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, + "m_yawPitchRoll": { + "type": "class Vector3D", + "id": 3, + "offset": 136, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1846695875 + "hash": 3349460132 }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, + "m_clonePlayer": { + "type": "bool", + "id": 4, + "offset": 120, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3389835433 - }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, + "hash": 1369917873 + } + } + }, + "221572089": { + "name": "class ReqNumeric", + "bases": [ + "Requirement", + "PropertyClass" + ], + "hash": 221572089, + "properties": { + "m_applyNOT": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2547159940 + "hash": 1746328074, + "enum_options": { + "__DEFAULT": 0 + } }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, + "m_operator": { + "type": "enum Requirement::Operator", + "id": 1, + "offset": 76, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2587533771 + "hash": 2672792317, + "enum_options": { + "ROP_AND": 0, + "ROP_OR": 1, + "__DEFAULT": "ROP_AND" + } }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, + "m_numericValue": { + "type": "float", + "id": 2, + "offset": 80, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3091503757 + "hash": 521915239 }, - "m_bToggle": { - "type": "bool", - "id": 16, - "offset": 608, - "flags": 135, + "m_operatorType": { + "type": "enum ReqNumeric::OPERATOR_TYPE", + "id": 3, + "offset": 84, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2071810903 - }, - "m_bButtonDown": { - "type": "bool", - "id": 17, - "offset": 609, - "flags": 135, + "hash": 2228122961, + "enum_options": { + "OPERATOR_UNKNOWN": 4294967295, + "OPERATOR_EQUALS": 0, + "OPERATOR_GREATER_THAN": 1, + "OPERATOR_LESS_THAN": 2, + "OPERATOR_GREATER_THAN_EQ": 3, + "OPERATOR_LESS_THAN_EQ": 4 + } + } + } + }, + "1078600006": { + "name": "class GhostHider*", + "bases": [ + "PropertyClass" + ], + "hash": 1078600006, + "properties": {} + }, + "1508910897": { + "name": "class BurnInterceptCinematicAction*", + "bases": [ + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 1508910897, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 840041705 + "hash": 2237098605 }, - "m_sLabel": { - "type": "std::wstring", - "id": 18, - "offset": 616, - "flags": 4194439, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2207009163 - }, - "m_labelOffset": { - "type": "class Rect", - "id": 19, - "offset": 832, - "flags": 135, + "hash": 2285866132 + } + } + }, + "1931468082": { + "name": "class PlaySpellData", + "bases": [ + "PropertyClass" + ], + "hash": 1931468082, + "properties": { + "m_templateID": { + "type": "unsigned int", + "id": 0, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1990646723 - }, - "m_pButton": { - "type": "class SharedPointer", - "id": 20, - "offset": 656, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1543855875 + "hash": 1286746870 }, - "m_HotKey": { + "m_enchantment": { "type": "unsigned int", - "id": 21, - "offset": 672, - "flags": 135, + "id": 1, + "offset": 76, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1631553409 - }, - "m_Color": { - "type": "class Color", - "id": 22, - "offset": 676, - "flags": 262279, + "hash": 2217886818 + } + } + }, + "219878676": { + "name": "class BanishBacklashEffectCinematicAction*", + "bases": [ + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 219878676, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1753714077 + "hash": 2237098605 }, - "m_bCursorOver": { - "type": "bool", - "id": 23, - "offset": 689, - "flags": 135, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 283981103 + "hash": 2285866132 + } + } + }, + "1078496819": { + "name": "class ItemTemplate", + "bases": [ + "GameObjectTemplate", + "CoreTemplate", + "PropertyClass" + ], + "hash": 1078496819, + "properties": { + "m_behaviors": { + "type": "class BehaviorTemplate*", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1197808594 }, - "m_bAbortWhenCursorNotOver": { - "type": "bool", - "id": 24, - "offset": 706, - "flags": 135, + "m_objectName": { + "type": "std::string", + "id": 1, + "offset": 96, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 325405258 + "hash": 2154940147 }, - "m_bHotKeyDown": { - "type": "bool", - "id": 25, - "offset": 680, - "flags": 135, + "m_templateID": { + "type": "unsigned int", + "id": 2, + "offset": 128, + "flags": 16777223, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 616989185 + "hash": 1286746870 }, - "m_fTime": { - "type": "float", - "id": 26, - "offset": 684, - "flags": 135, + "m_visualID": { + "type": "unsigned int", + "id": 3, + "offset": 132, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 883746156 + "hash": 1118778894 }, - "m_bGreyed": { - "type": "bool", - "id": 27, - "offset": 688, - "flags": 135, - "container": "Static", - "dynamic": false, + "m_adjectiveList": { + "type": "std::string", + "id": 4, + "offset": 248, + "flags": 7, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 1566556053 + "hash": 3195213318 }, - "m_fMaxScale": { - "type": "float", - "id": 28, - "offset": 692, - "flags": 135, + "m_exemptFromAOI": { + "type": "bool", + "id": 5, + "offset": 240, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2070186635 + "hash": 1457879059 }, - "m_fScaleSpeed": { - "type": "float", - "id": 29, - "offset": 696, - "flags": 135, + "m_displayName": { + "type": "std::string", + "id": 6, + "offset": 168, + "flags": 8388615, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1457135702 + "hash": 2446900370 }, - "m_bUseDropShadow": { - "type": "bool", - "id": 30, - "offset": 704, - "flags": 135, + "m_description": { + "type": "std::string", + "id": 7, + "offset": 136, + "flags": 8388615, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 93063037 + "hash": 1649374815 }, - "m_bUseOutline": { - "type": "bool", - "id": 31, - "offset": 705, - "flags": 135, + "m_nObjectType": { + "type": "enum ObjectType", + "id": 8, + "offset": 200, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 744292994 + "hash": 2118905880, + "enum_options": { + "OT_UNDEFINED": 0, + "OT_PLAYER": 1, + "OT_NPC": 2, + "OT_PROP": 3, + "OT_OBJECT": 4, + "OT_HOUSE": 5, + "OT_KEY": 6, + "OT_OLD_KEY": 7, + "OT_DEED": 8, + "OT_MAIL": 9, + "OT_RECIPE": 17, + "OT_EQUIP_HEAD": 10, + "OT_EQUIP_CHEST": 11, + "OT_EQUIP_LEGS": 12, + "OT_EQUIP_HANDS": 13, + "OT_EQUIP_FINGER": 14, + "OT_EQUIP_FEET": 15, + "OT_EQUIP_EAR": 16, + "OT_BUILDING_BLOCK": 18, + "OT_BUILDING_BLOCK_SOLID": 19, + "OT_GOLF": 20, + "OT_DOOR": 21, + "OT_PET": 22, + "OT_FABRIC": 23, + "OT_WINDOW": 24, + "OT_ROOF": 25, + "OT_HORSE": 26, + "OT_STRUCTURE": 27, + "OT_HOUSING_TEXTURE": 28, + "OT_PLANT": 29 + } }, - "m_pGreyedState": { - "type": "class SharedPointer", - "id": 32, - "offset": 768, - "flags": 135, + "m_sIcon": { + "type": "std::string", + "id": 9, + "offset": 208, + "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2703352263 + "pointer": false, + "hash": 2306259831 }, - "m_pNormalState": { - "type": "class SharedPointer", - "id": 33, - "offset": 752, - "flags": 135, + "m_equipRequirements": { + "type": "class RequirementList*", + "id": 10, + "offset": 280, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": true, - "hash": 1887909808 + "hash": 2762617226 }, - "m_pHighlightedState": { - "type": "class SharedPointer", - "id": 34, - "offset": 784, - "flags": 135, + "m_purchaseRequirements": { + "type": "class RequirementList*", + "id": 11, + "offset": 288, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": true, - "hash": 2200177608 + "hash": 3174641793 }, - "m_pSelectedState": { - "type": "class SharedPointer", - "id": 35, - "offset": 800, - "flags": 135, - "container": "Static", - "dynamic": false, + "m_equipEffects": { + "type": "class GameEffectInfo*", + "id": 12, + "offset": 296, + "flags": 7, + "container": "List", + "dynamic": true, "singleton": false, "pointer": true, - "hash": 2266776432 + "hash": 836628351 }, - "m_pDepressedState": { - "type": "class SharedPointer", - "id": 36, - "offset": 816, - "flags": 135, + "m_baseCost": { + "type": "float", + "id": 13, + "offset": 312, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1878185798 + "pointer": false, + "hash": 1565352651 }, - "m_bUp": { - "type": "bool", - "id": 37, - "offset": 880, - "flags": 135, + "m_creditsCost": { + "type": "float", + "id": 14, + "offset": 320, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 269510906 - } - } - }, - "1568339885": { - "name": "class GoalEntry*", - "bases": [ - "ServiceOptionBase", - "PropertyClass" - ], - "hash": 1568339885, - "properties": { - "m_serviceName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, + "hash": 805514974 + }, + "m_avatarInfo": { + "type": "class AvatarItemInfoBase*", + "id": 15, + "offset": 328, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 2206028813 + "pointer": true, + "hash": 2627321299 }, - "m_iconKey": { + "m_avatarFlags": { "type": "std::string", - "id": 1, - "offset": 168, - "flags": 31, + "id": 16, + "offset": 336, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2347762759 + }, + "m_itemLimit": { + "type": "int", + "id": 17, + "offset": 316, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2457138637 + "hash": 1799746856 }, - "m_displayKey": { + "m_holidayFlag": { "type": "std::string", - "id": 2, - "offset": 104, - "flags": 31, + "id": 18, + "offset": 352, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3023276954 + "hash": 2994795359 }, - "m_serviceIndex": { + "m_itemSetBonusTemplateID": { "type": "unsigned int", - "id": 3, - "offset": 204, - "flags": 31, + "id": 19, + "offset": 384, + "flags": 33554439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2103126710 - }, - "m_forceInteract": { - "type": "bool", - "id": 4, - "offset": 200, - "flags": 31, + "hash": 1316835672 + } + } + }, + "1508056545": { + "name": "struct std::pair,class std::basic_string,class std::allocator > >", + "bases": [], + "hash": 1508056545, + "properties": {} + }, + "648103902": { + "name": "class BattleBookBehavior*", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 648103902, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1705789564 + "hash": 223437287 }, - "m_questID": { - "type": "gid", - "id": 5, - "offset": 216, - "flags": 31, - "container": "Static", - "dynamic": false, + "m_spellList": { + "type": "class SharedPointer", + "id": 1, + "offset": 120, + "flags": 27, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 1246549335 + "pointer": true, + "hash": 2181913740 }, - "m_goalID": { - "type": "gid", - "id": 6, - "offset": 224, - "flags": 31, + "m_rating": { + "type": "class SharedPointer", + "id": 2, + "offset": 136, + "flags": 27, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 485200232 - }, - "m_goalTitle": { - "type": "std::string", - "id": 7, - "offset": 272, - "flags": 31, + "pointer": true, + "hash": 2464459535 + } + } + }, + "1931177538": { + "name": "class SharedPointer", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1931177538, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2291910240 + "hash": 223437287 }, - "m_questTitle": { - "type": "std::string", - "id": 8, - "offset": 240, - "flags": 31, - "container": "Static", - "dynamic": false, + "m_spellList": { + "type": "class SharedPointer", + "id": 1, + "offset": 120, + "flags": 27, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 1805465583 + "pointer": true, + "hash": 2181913740 }, - "m_goalNameID": { - "type": "unsigned int", - "id": 9, - "offset": 232, - "flags": 31, + "m_rating": { + "type": "class SharedPointer", + "id": 2, + "offset": 136, + "flags": 27, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 403158846 + "pointer": true, + "hash": 2464459535 } } }, - "1525492589": { - "name": "class FloatingTextCinematicAction*", + "219829524": { + "name": "class BanishBacklashEffectCinematicAction", "bases": [ "ActorCinematicAction", "CinematicAction", "PropertyClass" ], - "hash": 1525492589, + "hash": 219829524, "properties": { "m_timeOffset": { "type": "float", @@ -416786,306 +96966,229 @@ "singleton": false, "pointer": false, "hash": 2285866132 - }, - "m_stringTableEntry": { - "type": "std::string", - "id": 2, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2181170604 } } }, - "1529279344": { - "name": "class ItemFinderOption*", + "1507831623": { + "name": "class SharedPointer", "bases": [ - "ServiceOptionBase", + "WinAnimMoveToLocation", + "WindowAnimation", "PropertyClass" ], - "hash": 1529279344, + "hash": 1507831623, "properties": { - "m_serviceName": { - "type": "std::string", + "m_bUseDeepCopy": { + "type": "bool", "id": 0, "offset": 72, - "flags": 31, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2206028813 + "hash": 433380635 }, - "m_iconKey": { - "type": "std::string", + "m_targetLocation": { + "type": "class Vector3D", "id": 1, - "offset": 168, - "flags": 31, + "offset": 80, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2457138637 + "hash": 2653859938 }, - "m_displayKey": { - "type": "std::string", + "m_fTimeRemaining": { + "type": "float", "id": 2, - "offset": 104, - "flags": 31, + "offset": 100, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3023276954 + "hash": 1591443014 }, - "m_serviceIndex": { - "type": "unsigned int", + "m_fTimeTotal": { + "type": "float", "id": 3, - "offset": 204, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2103126710 - }, - "m_forceInteract": { - "type": "bool", - "id": 4, - "offset": 200, - "flags": 31, + "offset": 96, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1705789564 + "hash": 661225456 } } }, - "1925483783": { - "name": "class WizardCharacterBehavior*", + "650228404": { + "name": "class SharedPointer", "bases": [ - "BehaviorInstance", + "WinAnimMoveToLocationTime", + "WinAnimMoveToLocation", + "WindowAnimation", "PropertyClass" ], - "hash": 1925483783, + "hash": 650228404, "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", + "m_bUseDeepCopy": { + "type": "bool", "id": 0, - "offset": 104, - "flags": 39, + "offset": 72, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 + "hash": 433380635 }, - "m_nHeadHandsModel": { - "type": "bui2", + "m_targetLocation": { + "type": "class Vector3D", "id": 1, - "offset": 112, - "flags": 63, + "offset": 80, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 998846322 + "hash": 2653859938 }, - "m_nHairModel": { - "type": "bui4", + "m_fTimeRemaining": { + "type": "float", "id": 2, - "offset": 116, - "flags": 63, + "offset": 100, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1416543510 + "hash": 1591443014 }, - "m_nHatModel": { - "type": "bui2", + "m_fTimeTotal": { + "type": "float", "id": 3, - "offset": 120, - "flags": 63, + "offset": 96, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1927990831 + "hash": 661225456 }, - "m_nTorsoModel": { - "type": "bui2", + "m_fEaseInPercent": { + "type": "float", "id": 4, - "offset": 124, - "flags": 63, + "offset": 120, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1482907529 + "hash": 1482967843 }, - "m_nFeetModel": { - "type": "bui2", + "m_fEaseOutPercent": { + "type": "float", "id": 5, - "offset": 128, - "flags": 63, + "offset": 124, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1832619222 + "hash": 1272154212 }, - "m_nWandModel": { - "type": "bui2", + "m_fTotalDistance": { + "type": "float", "id": 6, - "offset": 132, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 133255964 - }, - "m_nSkinColor": { - "type": "bui4", - "id": 7, - "offset": 136, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 105936053 - }, - "m_nSkinDecal": { - "type": "bui4", - "id": 8, - "offset": 140, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 106752335 - }, - "m_nHairColor": { - "type": "bui7", - "id": 9, - "offset": 144, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1404660580 - }, - "m_nHatColor": { - "type": "bui5", - "id": 10, - "offset": 148, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1916370045 - }, - "m_nHatDecal": { - "type": "bui5", - "id": 11, - "offset": 152, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1917186327 - }, - "m_nTorsoColor": { - "type": "bui5", - "id": 12, - "offset": 156, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1471286743 - }, - "m_nTorsoDecal": { - "type": "bui5", - "id": 13, - "offset": 160, - "flags": 63, + "offset": 128, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1472103025 - }, - "m_nTorsoDecal2": { - "type": "bui5", - "id": 14, - "offset": 164, - "flags": 63, + "hash": 1894338732 + } + } + }, + "1931468087": { + "name": "class PlaySpellData*", + "bases": [ + "PropertyClass" + ], + "hash": 1931468087, + "properties": { + "m_templateID": { + "type": "unsigned int", + "id": 0, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1310258307 + "hash": 1286746870 }, - "m_nFeetColor": { - "type": "bui5", - "id": 15, - "offset": 168, - "flags": 63, + "m_enchantment": { + "type": "unsigned int", + "id": 1, + "offset": 76, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1820998436 - }, - "m_nFeetDecal": { - "type": "bui5", - "id": 16, - "offset": 172, - "flags": 63, + "hash": 2217886818 + } + } + }, + "220133073": { + "name": "class ClientMountOwnerBehavior", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 220133073, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1821814718 + "hash": 223437287 }, - "m_eGender": { + "m_gender": { "type": "enum eGender", - "id": 17, + "id": 1, "offset": 176, - "flags": 2097215, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2776344943, + "hash": 2121766730, "enum_options": { "Male": 1, "Female": 0, "Neutral": 2 } }, - "m_eRace": { + "m_race": { "type": "enum eRace", - "id": 18, + "id": 2, "offset": 180, - "flags": 2097215, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 963057554, + "hash": 390582957, "enum_options": { "Bat": 88066, "BatLightning": 1472842576, @@ -419866,97 +99969,16066 @@ "PP_Fairy_Fire": 1847789544, "MNT_Mustang_B": 1448793691, "PP_FireElfMyth": 1933609060, - "MNT_KT-BoatRide": 1560860110 + "MNT_KT-BoatRide": 1560860110, + "MNT_ShadowMagic": 2095978357, + "MNT_MardiGrasFloat_A": 1740674432, + "PP_ChineseNYSnake": 988201940, + "MNT_AnubisDog": 1995079956, + "PP_ShadowImp_A": 1604849432, + "PP_ShadowImp_B": 1604849438, + "PP_ShadowImp_C": 1604849436, + "MNT_ShadowMagic_B": 2093870965, + "MNT_ShadowMagic_C": 2093805429, + "Guest_KT_SE_Tritops_Warrior_I_01": 97516901, + "Guest_KT_SE_DS_Draconian_Model_01": 1916095079, + "Guest_KT_SE_Beetle_Scarab_C_01_L50": 1064004307, + "Guest_KT_SE_Roach_Warrior_C_03": 1872574203, + "Guest_KT_SE_Roach_Warrior_C_04": 1871918843, + "Guest_KT_SE_Roach_Warrior_C_05": 1871787771, + "Guest_KT_SE_Beetle_Scarab_C_01": 1353410759, + "Guest_KT_SE_Mander_Citizen_B_01_L50": 2044509396, + "Guest_KT_SE_Mander_CitizenF_B_01_L50": 164327682, + "Guest_KT_SE_Treant_Tormented_A_01": 1359800879, + "Guest_KT_SE_Treant_Base_A_01": 765512948, + "Guest_KT_SE_Mander_Citizen_F_D_05": 171244620, + "Guest_KT_SE_Mander_CitizenF_D_01": 163791037, + "Guest_KT_SE_Mander_CitizenF_D_02": 298008765, + "Guest_KT_SE_Mander_CitizenF_D_03": 432226493, + "Guest_KT_SE_Mander_CitizenF_D_04": 566444221, + "Guest_KT_SE_Mander_MummyF_A_01": 964349080, + "Guest_KT_SE_Mander_MummyF_A_02": 964480152, + "Guest_KT_SE_MC_Wraith_Model_01": 1101442118, + "Guest_KT_SE_Mander_CitizenF_B_02": 298000573, + "MNT_Wheelbarrow": 614248817, + "MNT_StubbornLlama": 221089074 + } + }, + "m_eMountType": { + "type": "enum eMountType", + "id": 3, + "offset": 184, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3097765662, + "enum_options": { + "eMNT_Standard": 0, + "eMNT_Floating": 1 + } + }, + "m_primaryColor": { + "type": "int", + "id": 4, + "offset": 188, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 900965981 + }, + "m_secondaryColor": { + "type": "int", + "id": 5, + "offset": 192, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1616550081 + }, + "m_patternColor": { + "type": "int", + "id": 6, + "offset": 196, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1304790295 + }, + "m_adjustableAnimationRate": { + "type": "bool", + "id": 7, + "offset": 200, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 698897022 + }, + "m_geometryOption": { + "type": "int", + "id": 8, + "offset": 204, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1776153279 + }, + "m_lastMountID": { + "type": "gid", + "id": 9, + "offset": 168, + "flags": 33554491, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1112551276 + } + } + }, + "1082888230": { + "name": "class DynamicSigilTemplate", + "bases": [ + "CombatSigilTemplate", + "SigilTemplate", + "CoreTemplate", + "PropertyClass" + ], + "hash": 1082888230, + "properties": { + "m_behaviors": { + "type": "class BehaviorTemplate*", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1197808594 + }, + "m_sigilName": { + "type": "std::string", + "id": 1, + "offset": 96, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3177657588 + }, + "m_sigilType": { + "type": "std::string", + "id": 2, + "offset": 136, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3177899445 + }, + "m_entryResults": { + "type": "class ResultList*", + "id": 3, + "offset": 184, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3262956108 + }, + "m_requirements": { + "type": "class RequirementList*", + "id": 4, + "offset": 176, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2840985510 + }, + "m_cancelResults": { + "type": "class ResultList*", + "id": 5, + "offset": 192, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3799257120 + }, + "m_completeResults": { + "type": "class ResultList*", + "id": 6, + "offset": 200, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1964258099 + }, + "m_useState": { + "type": "bool", + "id": 7, + "offset": 216, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 683320865 + }, + "m_stateOverride": { + "type": "std::string", + "id": 8, + "offset": 224, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1949715548 + }, + "m_subCircles": { + "type": "class SigilSubCircle*", + "id": 9, + "offset": 256, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2227135493 + }, + "m_engageRadius": { + "type": "float", + "id": 10, + "offset": 304, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1429683718 + }, + "m_battlefieldEffects": { + "type": "class SharedPointer", + "id": 11, + "offset": 312, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1245973515 + }, + "m_playerVictoryCinematic": { + "type": "std::string", + "id": 12, + "offset": 336, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2684536069 + }, + "m_combatMusic": { + "type": "std::string", + "id": 13, + "offset": 368, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3636593682 + }, + "m_prePlanningCinematicOverride": { + "type": "std::string", + "id": 14, + "offset": 400, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2585096390 + }, + "m_planningCinematicOverride": { + "type": "std::string", + "id": 15, + "offset": 432, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3592819999 + }, + "m_shadowThresholdType": { + "type": "enum kShadow_Threshold_Type", + "id": 16, + "offset": 464, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2847763136, + "enum_options": { + "SHADOW_THRESHOLD_MIN": 0, + "SHADOW_THRESHOLD_AVG": 1, + "SHADOW_THRESHOLD_MAX": 2 + } + }, + "m_shadowThresholdFactor": { + "type": "float", + "id": 17, + "offset": 468, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2104355177 + }, + "m_shadowPipRatingFactor": { + "type": "float", + "id": 18, + "offset": 472, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1061434314 + }, + "m_scalarDamagePvP": { + "type": "float", + "id": 19, + "offset": 476, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2195445026 + }, + "m_scalarResistPvP": { + "type": "float", + "id": 20, + "offset": 480, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1947822077 + }, + "m_scalarPiercePvP": { + "type": "float", + "id": 21, + "offset": 484, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 441266907 + }, + "m_scalarDamagePvE": { + "type": "float", + "id": 22, + "offset": 488, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2195445015 + }, + "m_scalarResistPvE": { + "type": "float", + "id": 23, + "offset": 492, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1947822066 + }, + "m_scalarPiercePvE": { + "type": "float", + "id": 24, + "offset": 496, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 441266896 + }, + "m_damageLimitPvP": { + "type": "float", + "id": 25, + "offset": 500, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1990135243 + }, + "m_dK0PvP": { + "type": "float", + "id": 26, + "offset": 504, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 413528556 + }, + "m_dN0PvP": { + "type": "float", + "id": 27, + "offset": 508, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 417086319 + }, + "m_resistLimitPvP": { + "type": "float", + "id": 28, + "offset": 512, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1174512006 + }, + "m_rK0PvP": { + "type": "float", + "id": 29, + "offset": 516, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 961424058 + }, + "m_rN0PvP": { + "type": "float", + "id": 30, + "offset": 520, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 964981821 + }, + "m_damageLimitPvE": { + "type": "float", + "id": 31, + "offset": 524, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1990135232 + }, + "m_dK0PvE": { + "type": "float", + "id": 32, + "offset": 528, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 413528545 + }, + "m_dN0PvE": { + "type": "float", + "id": 33, + "offset": 532, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 417086308 + }, + "m_resistLimitPvE": { + "type": "float", + "id": 34, + "offset": 536, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1174511995 + }, + "m_rK0PvE": { + "type": "float", + "id": 35, + "offset": 540, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 961424047 + }, + "m_rN0PvE": { + "type": "float", + "id": 36, + "offset": 544, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 964981810 + } + } + }, + "1508559279": { + "name": "class SpellFavorites*", + "bases": [ + "PropertyClass" + ], + "hash": 1508559279, + "properties": { + "m_versionNumber": { + "type": "unsigned int", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1265259452 + }, + "m_favoriteTemplateIDList": { + "type": "unsigned int", + "id": 1, + "offset": 80, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 372036018 + }, + "m_playerAddedTemplateIDList": { + "type": "unsigned int", + "id": 2, + "offset": 96, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2042557329 + } + } + }, + "650188677": { + "name": "class SharedPointer", + "bases": [ + "GraphicalSpell", + "Spell", + "PropertyClass" + ], + "hash": 650188677, + "properties": { + "m_templateID": { + "type": "unsigned int", + "id": 0, + "offset": 128, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1286746870 + }, + "m_enchantment": { + "type": "unsigned int", + "id": 1, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2217886818 + }, + "m_pipCost": { + "type": "class SharedPointer", + "id": 2, + "offset": 176, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3605704820 + }, + "m_regularAdjust": { + "type": "int", + "id": 3, + "offset": 192, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1420453335 + }, + "m_magicSchoolID": { + "type": "unsigned int", + "id": 4, + "offset": 136, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 893146499 + }, + "m_accuracy": { + "type": "unsigned char", + "id": 5, + "offset": 132, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2273914939 + }, + "m_treasureCard": { + "type": "bool", + "id": 6, + "offset": 197, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1764879128 + }, + "m_battleCard": { + "type": "bool", + "id": 7, + "offset": 198, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1332843753 + }, + "m_itemCard": { + "type": "bool", + "id": 8, + "offset": 199, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1683654300 + }, + "m_sideBoard": { + "type": "bool", + "id": 9, + "offset": 200, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1897838368 + }, + "m_spellID": { + "type": "unsigned int", + "id": 10, + "offset": 204, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1697483258 + }, + "m_leavesPlayWhenCastOverride": { + "type": "bool", + "id": 11, + "offset": 216, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 874407398 + }, + "m_cloaked": { + "type": "bool", + "id": 12, + "offset": 196, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 7349510 + }, + "m_enchantmentSpellIsItemCard": { + "type": "bool", + "id": 13, + "offset": 76, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 531590701 + }, + "m_premutationSpellID": { + "type": "unsigned int", + "id": 14, + "offset": 112, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1530256370 + }, + "m_enchantedThisCombat": { + "type": "bool", + "id": 15, + "offset": 77, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1895738923 + }, + "m_paramOverrides": { + "type": "class SharedPointer", + "id": 16, + "offset": 224, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2061635599 + }, + "m_subEffectMeta": { + "type": "class SharedPointer", + "id": 17, + "offset": 240, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1944101106 + }, + "m_delayEnchantment": { + "type": "bool", + "id": 18, + "offset": 257, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 191336919 + }, + "m_PvE": { + "type": "bool", + "id": 19, + "offset": 264, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 269492350 + }, + "m_delayEnchantmentOrder": { + "type": "enum SpellEffect::kDelayOrder", + "id": 20, + "offset": 72, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2526055263, + "enum_options": { + "SpellEffect::kAnyOrder": 0, + "SpellEffect::kFirst": 1, + "SpellEffect::kSecond": 2 + } + }, + "m_roundAddedTC": { + "type": "int", + "id": 21, + "offset": 260, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 112365451 + }, + "m_secondarySchoolID": { + "type": "unsigned int", + "id": 22, + "offset": 304, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2081206026 + }, + "m_fusionState": { + "type": "enum Spell::FusionState", + "id": 23, + "offset": 308, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 835324539, + "enum_options": { + "FS_Invalid": 0, + "FS_Partial": 1, + "FS_Valid": 2 + } + } + } + }, + "220042309": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 220042309, + "properties": { + "m_tournamentID": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 695889746 + }, + "m_tournamentName": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3329241865 + }, + "m_tournamentNameID": { + "type": "unsigned int", + "id": 2, + "offset": 112, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1799846440 + } + } + }, + "1080725216": { + "name": "class SharedPointer", + "bases": [ + "CinematicStageTemplate", + "PropertyClass" + ], + "hash": 1080725216, + "properties": { + "m_name": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1717359772 + }, + "m_duration": { + "type": "float", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 920323453 + }, + "m_actions": { + "type": "class SharedPointer", + "id": 2, + "offset": 112, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1380578687 + }, + "m_stageRelationships": { + "type": "class SharedPointer", + "id": 3, + "offset": 128, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 499983354 + }, + "m_sound": { + "type": "std::string", + "id": 4, + "offset": 152, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2307644996 + }, + "m_animation": { + "type": "std::string", + "id": 5, + "offset": 184, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3431428731 + } + } + }, + "1508559119": { + "name": "class SpellFavorites", + "bases": [ + "PropertyClass" + ], + "hash": 1508559119, + "properties": { + "m_versionNumber": { + "type": "unsigned int", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1265259452 + }, + "m_favoriteTemplateIDList": { + "type": "unsigned int", + "id": 1, + "offset": 80, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 372036018 + }, + "m_playerAddedTemplateIDList": { + "type": "unsigned int", + "id": 2, + "offset": 96, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2042557329 + } + } + }, + "1080152392": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1080152392, + "properties": { + "m_adjective": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3429518154 + }, + "m_stringTableKey": { + "type": "std::string", + "id": 1, + "offset": 104, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2902469923 + }, + "m_modifier": { + "type": "float", + "id": 2, + "offset": 136, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 388952454, + "enum_options": { + "__DEFAULT": "1.0" + } + }, + "m_hidden": { + "type": "bool", + "id": 3, + "offset": 140, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 519817759 + } + } + }, + "1508248095": { + "name": "class InstanceSigilOption", + "bases": [ + "ServiceOptionBase", + "PropertyClass" + ], + "hash": 1508248095, + "properties": { + "m_serviceName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2206028813 + }, + "m_iconKey": { + "type": "std::string", + "id": 1, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2457138637 + }, + "m_displayKey": { + "type": "std::string", + "id": 2, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3023276954 + }, + "m_serviceIndex": { + "type": "unsigned int", + "id": 3, + "offset": 204, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2103126710 + }, + "m_forceInteract": { + "type": "bool", + "id": 4, + "offset": 200, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1705789564 + } + } + }, + "1933461009": { + "name": "class ReqBaseSchoolOfFocus*", + "bases": [ + "Requirement", + "PropertyClass" + ], + "hash": 1933461009, + "properties": { + "m_applyNOT": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1746328074, + "enum_options": { + "__DEFAULT": 0 + } + }, + "m_operator": { + "type": "enum Requirement::Operator", + "id": 1, + "offset": 76, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2672792317, + "enum_options": { + "ROP_AND": 0, + "ROP_OR": 1, + "__DEFAULT": "ROP_AND" + } + }, + "m_magicSchool": { + "type": "std::string", + "id": 2, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1597012900 + } + } + }, + "1079287212": { + "name": "class LootRarityList*", + "bases": [ + "PropertyClass" + ], + "hash": 1079287212, + "properties": { + "m_loot": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 444353250 + } + } + }, + "650810645": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 650810645, + "properties": { + "m_games": { + "type": "class SharedPointer", + "id": 0, + "offset": 80, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": true, + "pointer": true, + "hash": 2009270740 + } + } + }, + "1932529338": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1932529338, + "properties": { + "m_crownsCost": { + "type": "unsigned int", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1803615170 + }, + "m_lowestEquipLevelInclusive": { + "type": "int", + "id": 1, + "offset": 76, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1282442502 + }, + "m_highestEquipLevelInclusive": { + "type": "int", + "id": 2, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1771734836 + } + } + }, + "220557015": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 220557015, + "properties": { + "m_startWeight": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 834528109 + }, + "m_middleWeight": { + "type": "float", + "id": 1, + "offset": 76, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1016481710 + }, + "m_endWeight": { + "type": "float", + "id": 2, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 379723894 + }, + "m_desiredSpeed": { + "type": "float", + "id": 3, + "offset": 84, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 406717000 + }, + "m_durationSeconds": { + "type": "float", + "id": 4, + "offset": 88, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1349797100 + } + } + }, + "1079287052": { + "name": "class LootRarityList", + "bases": [ + "PropertyClass" + ], + "hash": 1079287052, + "properties": { + "m_loot": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 444353250 + } + } + }, + "650254213": { + "name": "class SharedPointer", + "bases": [ + "GraphicalSpell", + "Spell", + "PropertyClass" + ], + "hash": 650254213, + "properties": { + "m_templateID": { + "type": "unsigned int", + "id": 0, + "offset": 128, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1286746870 + }, + "m_enchantment": { + "type": "unsigned int", + "id": 1, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2217886818 + }, + "m_pipCost": { + "type": "class SharedPointer", + "id": 2, + "offset": 176, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3605704820 + }, + "m_regularAdjust": { + "type": "int", + "id": 3, + "offset": 192, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1420453335 + }, + "m_magicSchoolID": { + "type": "unsigned int", + "id": 4, + "offset": 136, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 893146499 + }, + "m_accuracy": { + "type": "unsigned char", + "id": 5, + "offset": 132, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2273914939 + }, + "m_treasureCard": { + "type": "bool", + "id": 6, + "offset": 197, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1764879128 + }, + "m_battleCard": { + "type": "bool", + "id": 7, + "offset": 198, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1332843753 + }, + "m_itemCard": { + "type": "bool", + "id": 8, + "offset": 199, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1683654300 + }, + "m_sideBoard": { + "type": "bool", + "id": 9, + "offset": 200, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1897838368 + }, + "m_spellID": { + "type": "unsigned int", + "id": 10, + "offset": 204, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1697483258 + }, + "m_leavesPlayWhenCastOverride": { + "type": "bool", + "id": 11, + "offset": 216, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 874407398 + }, + "m_cloaked": { + "type": "bool", + "id": 12, + "offset": 196, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 7349510 + }, + "m_enchantmentSpellIsItemCard": { + "type": "bool", + "id": 13, + "offset": 76, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 531590701 + }, + "m_premutationSpellID": { + "type": "unsigned int", + "id": 14, + "offset": 112, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1530256370 + }, + "m_enchantedThisCombat": { + "type": "bool", + "id": 15, + "offset": 77, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1895738923 + }, + "m_paramOverrides": { + "type": "class SharedPointer", + "id": 16, + "offset": 224, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2061635599 + }, + "m_subEffectMeta": { + "type": "class SharedPointer", + "id": 17, + "offset": 240, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1944101106 + }, + "m_delayEnchantment": { + "type": "bool", + "id": 18, + "offset": 257, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 191336919 + }, + "m_PvE": { + "type": "bool", + "id": 19, + "offset": 264, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 269492350 + }, + "m_delayEnchantmentOrder": { + "type": "enum SpellEffect::kDelayOrder", + "id": 20, + "offset": 72, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2526055263, + "enum_options": { + "SpellEffect::kAnyOrder": 0, + "SpellEffect::kFirst": 1, + "SpellEffect::kSecond": 2 + } + }, + "m_roundAddedTC": { + "type": "int", + "id": 21, + "offset": 260, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 112365451 + }, + "m_secondarySchoolID": { + "type": "unsigned int", + "id": 22, + "offset": 304, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2081206026 + }, + "m_fusionState": { + "type": "enum Spell::FusionState", + "id": 23, + "offset": 308, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 835324539, + "enum_options": { + "FS_Invalid": 0, + "FS_Partial": 1, + "FS_Valid": 2 + } + } + } + }, + "220386132": { + "name": "class MobRankLevel*", + "bases": [ + "PropertyClass" + ], + "hash": 220386132, + "properties": { + "m_rank": { + "type": "int", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 219803942 + }, + "m_level": { + "type": "int", + "id": 1, + "offset": 76, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 801285362 + } + } + }, + "1078951113": { + "name": "class SharedPointer", + "bases": [ + "ClientDuelBehavior", + "DuelBehavior", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1078951113, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_pDuel": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1066616366 + }, + "m_sigilTemplateID": { + "type": "unsigned int", + "id": 2, + "offset": 128, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 269055310 + } + } + }, + "1508870348": { + "name": "class SummonMinionEffect*", + "bases": [ + "GameEffectBase", + "PropertyClass" + ], + "hash": 1508870348, + "properties": { + "m_currentTickCount": { + "type": "double", + "id": 0, + "offset": 80, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2533274692 + }, + "m_effectNameID": { + "type": "unsigned int", + "id": 1, + "offset": 96, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1204067144 + }, + "m_bIsOnPet": { + "type": "bool", + "id": 2, + "offset": 73, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 522593303 + }, + "m_originatorID": { + "type": "gid", + "id": 3, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1131810019 + }, + "m_itemSlotID": { + "type": "unsigned int", + "id": 4, + "offset": 112, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1895747595 + }, + "m_internalID": { + "type": "int", + "id": 5, + "offset": 92, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1643137924 + }, + "m_endTime": { + "type": "unsigned int", + "id": 6, + "offset": 88, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 716479635 + }, + "m_minionType": { + "type": "enum MinionType", + "id": 7, + "offset": 128, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3186373083, + "enum_options": { + "MT_NONE": 0, + "MT_ACCOMPANY": 1, + "MT_MINION": 2, + "MT_MONSTER": 3 + } + }, + "m_summonedTemplateID": { + "type": "int", + "id": 8, + "offset": 132, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1109386027 + } + } + }, + "1933870648": { + "name": "class SharedPointer", + "bases": [ + "PathBehaviorTemplate::Action", + "PropertyClass" + ], + "hash": 1933870648, + "properties": { + "m_nPathID": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 214382368 + }, + "m_nNodeID": { + "type": "int", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 152152635, + "enum_options": { + "__DEFAULT": 4294967295 + } + }, + "m_nPriority": { + "type": "int", + "id": 2, + "offset": 84, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1515251530, + "enum_options": { + "__DEFAULT": 100 + } + }, + "m_nChance": { + "type": "int", + "id": 3, + "offset": 88, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1860748394, + "enum_options": { + "__DEFAULT": 50 + } + } + } + }, + "1508636938": { + "name": "class WizardClientDuelBehavior", + "bases": [ + "ClientDuelBehavior", + "DuelBehavior", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1508636938, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_pDuel": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1066616366 + }, + "m_sigilTemplateID": { + "type": "unsigned int", + "id": 2, + "offset": 128, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 269055310 + } + } + }, + "651050002": { + "name": "class ObstacleCourseFinishLineBehaviorClient", + "bases": [ + "ObstacleCourseFinishLineBehavior", + "ObstacleCourseObstacleBehavior", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 651050002, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + } + } + }, + "1933461049": { + "name": "class ReqBaseSchoolOfFocus", + "bases": [ + "Requirement", + "PropertyClass" + ], + "hash": 1933461049, + "properties": { + "m_applyNOT": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1746328074, + "enum_options": { + "__DEFAULT": 0 + } + }, + "m_operator": { + "type": "enum Requirement::Operator", + "id": 1, + "offset": 76, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2672792317, + "enum_options": { + "ROP_AND": 0, + "ROP_OR": 1, + "__DEFAULT": "ROP_AND" + } + }, + "m_magicSchool": { + "type": "std::string", + "id": 2, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1597012900 + } + } + }, + "221488256": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 221488256, + "properties": { + "m_badgeLeaderboardInfoList": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 3286468481 + }, + "m_page": { + "type": "int", + "id": 1, + "offset": 88, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 219731831 + }, + "m_extraCredit": { + "type": "bool", + "id": 2, + "offset": 92, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 847737554 + }, + "m_totalEntries": { + "type": "int", + "id": 3, + "offset": 96, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 682683672 + }, + "m_isFriends": { + "type": "bool", + "id": 4, + "offset": 100, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 982582490 + } + } + }, + "1079298396": { + "name": "class SharedPointer", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1079298396, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_penalties": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1696001746 + }, + "m_record": { + "type": "class SharedPointer", + "id": 2, + "offset": 128, + "flags": 16, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2129713657 + } + } + }, + "1508904753": { + "name": "class BurnInterceptCinematicAction", + "bases": [ + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 1508904753, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + } + } + }, + "651931265": { + "name": "class SharedPointer", + "bases": [ + "CinematicAction", + "PropertyClass" + ], + "hash": 651931265, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + } + } + }, + "223381506": { + "name": "class CrownShopSegReqsSummary", + "bases": [ + "PropertyClass" + ], + "hash": 223381506, + "properties": { + "m_csvNItemsList": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2185990931 + }, + "m_csvNItemsCategoryList": { + "type": "std::string", + "id": 1, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3441955153 + }, + "m_csvNDaysSinceItemPurchasedList": { + "type": "std::string", + "id": 2, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2623003714 + }, + "m_csvHasBadgeList": { + "type": "std::string", + "id": 3, + "offset": 136, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1794307506 + } + } + }, + "651598791": { + "name": "class SharedPointer", + "bases": [ + "InfractionPenaltyInfo", + "PropertyClass" + ], + "hash": 651598791, + "properties": { + "m_addAtPointValue": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1071217084 + }, + "m_removeAtPointValue": { + "type": "float", + "id": 1, + "offset": 76, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2112196961 + }, + "m_lifespan": { + "type": "std::string", + "id": 2, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3042809453 + }, + "m_titleKey": { + "type": "std::string", + "id": 3, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3096106918 + }, + "m_messageKey": { + "type": "std::string", + "id": 4, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3561518217 + } + } + }, + "1934557291": { + "name": "class SharedPointer", + "bases": [ + "ServiceOptionBase", + "PropertyClass" + ], + "hash": 1934557291, + "properties": { + "m_serviceName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2206028813 + }, + "m_iconKey": { + "type": "std::string", + "id": 1, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2457138637 + }, + "m_displayKey": { + "type": "std::string", + "id": 2, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3023276954 + }, + "m_serviceIndex": { + "type": "unsigned int", + "id": 3, + "offset": 204, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2103126710 + }, + "m_forceInteract": { + "type": "bool", + "id": 4, + "offset": 200, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1705789564 + } + } + }, + "222595074": { + "name": "class CrownShopSegReqsSummary*", + "bases": [ + "PropertyClass" + ], + "hash": 222595074, + "properties": { + "m_csvNItemsList": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2185990931 + }, + "m_csvNItemsCategoryList": { + "type": "std::string", + "id": 1, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3441955153 + }, + "m_csvNDaysSinceItemPurchasedList": { + "type": "std::string", + "id": 2, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2623003714 + }, + "m_csvHasBadgeList": { + "type": "std::string", + "id": 3, + "offset": 136, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1794307506 + } + } + }, + "1080527930": { + "name": "class LootInfoListBase", + "bases": [ + "PropertyClass" + ], + "hash": 1080527930, + "properties": {} + }, + "651115199": { + "name": "class ZoneTokenInfo*", + "bases": [ + "CoreObjectInfo", + "PropertyClass" + ], + "hash": 651115199, + "properties": { + "m_templateID.m_full": { + "type": "unsigned __int64", + "id": 0, + "offset": 72, + "flags": 33554439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 633907631 + }, + "m_nObjectID": { + "type": "unsigned int", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 748496927 + }, + "m_location": { + "type": "class Vector3D", + "id": 2, + "offset": 84, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2239683611 + }, + "m_orientation": { + "type": "class Vector3D", + "id": 3, + "offset": 96, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2344058766 + }, + "m_fScale": { + "type": "float", + "id": 4, + "offset": 108, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 503137701 + }, + "m_zoneTag": { + "type": "std::string", + "id": 5, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3405382643 + }, + "m_startState": { + "type": "std::string", + "id": 6, + "offset": 184, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2166880458 + }, + "m_overrideName": { + "type": "std::string", + "id": 7, + "offset": 120, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1990707228 + }, + "m_globalDynamic": { + "type": "bool", + "id": 8, + "offset": 116, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1951691017 + }, + "m_bUndetectable": { + "type": "bool", + "id": 9, + "offset": 216, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1907454341 + }, + "m_spawnRequirements": { + "type": "class SharedPointer", + "id": 10, + "offset": 224, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2309120870 + }, + "m_loadingType": { + "type": "enum CoreObjectInfo::LoadingType", + "id": 11, + "offset": 112, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3522422550, + "enum_options": { + "STATIC_CLIENT_SERVER": 0, + "STATIC_CLIENT": 1, + "STATIC_SERVER": 2, + "DYNAMIC_SERVER": 3 + } + }, + "m_pContainer": { + "type": "class SharedPointer", + "id": 12, + "offset": 240, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 915185204 + } + } + }, + "1934416845": { + "name": "class InteractiveMusicNote*", + "bases": [ + "PropertyClass" + ], + "hash": 1934416845, + "properties": { + "m_noteName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 65543, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2085772594 + }, + "m_duration": { + "type": "float", + "id": 1, + "offset": 104, + "flags": 65543, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 920323453 + } + } + }, + "222227449": { + "name": "class ReqNumeric*", + "bases": [ + "Requirement", + "PropertyClass" + ], + "hash": 222227449, + "properties": { + "m_applyNOT": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1746328074, + "enum_options": { + "__DEFAULT": 0 + } + }, + "m_operator": { + "type": "enum Requirement::Operator", + "id": 1, + "offset": 76, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2672792317, + "enum_options": { + "ROP_AND": 0, + "ROP_OR": 1, + "__DEFAULT": "ROP_AND" + } + }, + "m_numericValue": { + "type": "float", + "id": 2, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 521915239 + }, + "m_operatorType": { + "type": "enum ReqNumeric::OPERATOR_TYPE", + "id": 3, + "offset": 84, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2228122961, + "enum_options": { + "OPERATOR_UNKNOWN": 4294967295, + "OPERATOR_EQUALS": 0, + "OPERATOR_GREATER_THAN": 1, + "OPERATOR_LESS_THAN": 2, + "OPERATOR_GREATER_THAN_EQ": 3, + "OPERATOR_LESS_THAN_EQ": 4 + } + } + } + }, + "1080364090": { + "name": "class LootInfoListBase*", + "bases": [ + "PropertyClass" + ], + "hash": 1080364090, + "properties": {} + }, + "1509762206": { + "name": "class PetStatsControl*", + "bases": [ + "Window", + "PropertyClass" + ], + "hash": 1509762206, + "properties": { + "m_sName": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306437263 + }, + "m_Children": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 65667, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621225959 + }, + "m_Style": { + "type": "unsigned int", + "id": 2, + "offset": 152, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "SCALE_CHILDREN": 2, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "FOCUS_LOCKED": 64, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152 + } + }, + "m_Flags": { + "type": "unsigned int", + "id": 3, + "offset": 156, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } + }, + "m_Window": { + "type": "class Rect", + "id": 4, + "offset": 160, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3105139380 + }, + "m_fTargetAlpha": { + "type": "float", + "id": 5, + "offset": 212, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1809129834 + }, + "m_fDisabledAlpha": { + "type": "float", + "id": 6, + "offset": 216, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1389987675 + }, + "m_fAlpha": { + "type": "float", + "id": 7, + "offset": 208, + "flags": 65671, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 482130755 + }, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3623628394 + }, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2102211316 + }, + "m_sScript": { + "type": "std::string", + "id": 10, + "offset": 352, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1846695875 + }, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3389835433 + }, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547159940 + }, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513510520 + }, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3091503757 + } + } + }, + "651115194": { + "name": "class ZoneTokenInfo", + "bases": [ + "CoreObjectInfo", + "PropertyClass" + ], + "hash": 651115194, + "properties": { + "m_templateID.m_full": { + "type": "unsigned __int64", + "id": 0, + "offset": 72, + "flags": 33554439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 633907631 + }, + "m_nObjectID": { + "type": "unsigned int", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 748496927 + }, + "m_location": { + "type": "class Vector3D", + "id": 2, + "offset": 84, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2239683611 + }, + "m_orientation": { + "type": "class Vector3D", + "id": 3, + "offset": 96, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2344058766 + }, + "m_fScale": { + "type": "float", + "id": 4, + "offset": 108, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 503137701 + }, + "m_zoneTag": { + "type": "std::string", + "id": 5, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3405382643 + }, + "m_startState": { + "type": "std::string", + "id": 6, + "offset": 184, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2166880458 + }, + "m_overrideName": { + "type": "std::string", + "id": 7, + "offset": 120, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1990707228 + }, + "m_globalDynamic": { + "type": "bool", + "id": 8, + "offset": 116, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1951691017 + }, + "m_bUndetectable": { + "type": "bool", + "id": 9, + "offset": 216, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1907454341 + }, + "m_spawnRequirements": { + "type": "class SharedPointer", + "id": 10, + "offset": 224, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2309120870 + }, + "m_loadingType": { + "type": "enum CoreObjectInfo::LoadingType", + "id": 11, + "offset": 112, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3522422550, + "enum_options": { + "STATIC_CLIENT_SERVER": 0, + "STATIC_CLIENT": 1, + "STATIC_SERVER": 2, + "DYNAMIC_SERVER": 3 + } + }, + "m_pContainer": { + "type": "class SharedPointer", + "id": 12, + "offset": 240, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 915185204 + } + } + }, + "1933981281": { + "name": "class SetBottomTeamCinematicAction", + "bases": [ + "CinematicAction", + "PropertyClass" + ], + "hash": 1933981281, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_interpDuration": { + "type": "float", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237711951 + } + } + }, + "222099698": { + "name": "class CustomEmoteBehavior", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 222099698, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + } + } + }, + "1080167052": { + "name": "class std::list >", + "bases": [], + "hash": 1080167052, + "properties": {} + }, + "1509072274": { + "name": "class AuctionTemplateIDList", + "bases": [ + "PropertyClass" + ], + "hash": 1509072274, + "properties": { + "m_templateIdList": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1466334173 + } + } + }, + "1509070994": { + "name": "class AuctionTemplateIDList*", + "bases": [ + "PropertyClass" + ], + "hash": 1509070994, + "properties": { + "m_templateIdList": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1466334173 + } + } + }, + "1508972121": { + "name": "class SortedDirt*", + "bases": [ + "PropertyClass" + ], + "hash": 1508972121, + "properties": {} + }, + "651470375": { + "name": "class FishTournamentEntry*", + "bases": [ + "PropertyClass" + ], + "hash": 651470375, + "properties": { + "m_characterGID": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 501688601 + }, + "m_fishSize": { + "type": "float", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1986368316 + }, + "m_packedName": { + "type": "std::string", + "id": 2, + "offset": 88, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1805208228 + } + } + }, + "1934416869": { + "name": "class InteractiveMusicNote", + "bases": [ + "PropertyClass" + ], + "hash": 1934416869, + "properties": { + "m_noteName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 65543, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2085772594 + }, + "m_duration": { + "type": "float", + "id": 1, + "offset": 104, + "flags": 65543, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 920323453 + } + } + }, + "222292814": { + "name": "class SharedPointer", + "bases": [ + "Window", + "PropertyClass" + ], + "hash": 222292814, + "properties": { + "m_sName": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306437263 + }, + "m_Children": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621225959 + }, + "m_Style": { + "type": "unsigned int", + "id": 2, + "offset": 152, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "SCALE_CHILDREN": 2, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "FOCUS_LOCKED": 64, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152 + } + }, + "m_Flags": { + "type": "unsigned int", + "id": 3, + "offset": 156, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } + }, + "m_Window": { + "type": "class Rect", + "id": 4, + "offset": 160, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3105139380 + }, + "m_fTargetAlpha": { + "type": "float", + "id": 5, + "offset": 212, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1809129834 + }, + "m_fDisabledAlpha": { + "type": "float", + "id": 6, + "offset": 216, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1389987675 + }, + "m_fAlpha": { + "type": "float", + "id": 7, + "offset": 208, + "flags": 65671, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 482130755 + }, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3623628394 + }, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2102211316 + }, + "m_sScript": { + "type": "std::string", + "id": 10, + "offset": 352, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1846695875 + }, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3389835433 + }, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547159940 + }, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513510520 + }, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3091503757 + }, + "m_currentTab": { + "type": "int", + "id": 16, + "offset": 944, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1795186676 + }, + "m_totalCrowns": { + "type": "int", + "id": 17, + "offset": 768, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2094555642 + }, + "m_pInventory": { + "type": "class SharedPointer", + "id": 18, + "offset": 1448, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2295349946 + }, + "m_pEquipment": { + "type": "class SharedPointer", + "id": 19, + "offset": 1464, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3072576019 + }, + "m_buyBtnDisableReason": { + "type": "std::string", + "id": 20, + "offset": 1416, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2225989675 + } + } + }, + "1080378376": { + "name": "class std::list >", + "bases": [], + "hash": 1080378376, + "properties": {} + }, + "651386166": { + "name": "class PetObstacleCourseGameInfo", + "bases": [ + "PetGameInfo", + "PropertyClass" + ], + "hash": 651386166, + "properties": { + "m_isWebGame": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 944547943 + }, + "m_name": { + "type": "std::string", + "id": 1, + "offset": 160, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1717359772 + }, + "m_energyCosts": { + "type": "class SharedPointer", + "id": 2, + "offset": 192, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 3378376555 + }, + "m_trackChoices": { + "type": "class SharedPointer", + "id": 3, + "offset": 208, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1548152913 + }, + "m_gameIcon": { + "type": "std::string", + "id": 4, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3229574910 + }, + "m_trackIcons": { + "type": "std::string", + "id": 5, + "offset": 112, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2211683916 + }, + "m_trackToolTips": { + "type": "std::string", + "id": 6, + "offset": 136, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1898819214 + }, + "m_petWidth": { + "type": "int", + "id": 7, + "offset": 232, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2027689763 + }, + "m_petHeight": { + "type": "int", + "id": 8, + "offset": 236, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1894813180 + }, + "m_petDepth": { + "type": "int", + "id": 9, + "offset": 240, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2005026584 + }, + "m_gravity": { + "type": "float", + "id": 10, + "offset": 244, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1184936541 + }, + "m_fallingPenalty": { + "type": "int", + "id": 11, + "offset": 248, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1717924532 + }, + "m_trackTimes": { + "type": "int", + "id": 12, + "offset": 256, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 727242577 + }, + "m_collectionInterval": { + "type": "double", + "id": 13, + "offset": 280, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3052813470 + }, + "m_tolerance": { + "type": "double", + "id": 14, + "offset": 288, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3410860138 + } + } + }, + "222243512": { + "name": "class CombatPetXPEffect*", + "bases": [ + "GameEffectBase", + "PropertyClass" + ], + "hash": 222243512, + "properties": { + "m_currentTickCount": { + "type": "double", + "id": 0, + "offset": 80, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2533274692 + }, + "m_effectNameID": { + "type": "unsigned int", + "id": 1, + "offset": 96, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1204067144 + }, + "m_bIsOnPet": { + "type": "bool", + "id": 2, + "offset": 73, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 522593303 + }, + "m_originatorID": { + "type": "gid", + "id": 3, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1131810019 + }, + "m_itemSlotID": { + "type": "unsigned int", + "id": 4, + "offset": 112, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1895747595 + }, + "m_internalID": { + "type": "int", + "id": 5, + "offset": 92, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1643137924 + }, + "m_endTime": { + "type": "unsigned int", + "id": 6, + "offset": 88, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 716479635 + }, + "m_lootTableName": { + "type": "std::string", + "id": 7, + "offset": 128, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2333333378 + } + } + }, + "1935313606": { + "name": "class JewelVaultBehaviorTemplate*", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 1935313606, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + } + } + }, + "1080628177": { + "name": "class LikesDislikesEntry", + "bases": [ + "PropertyClass" + ], + "hash": 1080628177, + "properties": { + "m_adjective": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3429518154 + }, + "m_stringTableKey": { + "type": "std::string", + "id": 1, + "offset": 104, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2902469923 + }, + "m_modifier": { + "type": "float", + "id": 2, + "offset": 136, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 388952454, + "enum_options": { + "__DEFAULT": "1.0" + } + }, + "m_hidden": { + "type": "bool", + "id": 3, + "offset": 140, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 519817759 + } + } + }, + "1509372456": { + "name": "class WizShoppingOption", + "bases": [ + "ServiceOptionBase", + "PropertyClass" + ], + "hash": 1509372456, + "properties": { + "m_serviceName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2206028813 + }, + "m_iconKey": { + "type": "std::string", + "id": 1, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2457138637 + }, + "m_displayKey": { + "type": "std::string", + "id": 2, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3023276954 + }, + "m_serviceIndex": { + "type": "unsigned int", + "id": 3, + "offset": 204, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2103126710 + }, + "m_forceInteract": { + "type": "bool", + "id": 4, + "offset": 200, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1705789564 + } + } + }, + "651472722": { + "name": "class SharedPointer", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 651472722, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_spellNames": { + "type": "std::string", + "id": 1, + "offset": 112, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2136089135 + }, + "m_targetNode": { + "type": "std::string", + "id": 2, + "offset": 128, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2698500040 + }, + "m_offset": { + "type": "class Vector3D", + "id": 3, + "offset": 160, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2445636425 + }, + "m_rotate": { + "type": "class Vector3D", + "id": 4, + "offset": 172, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2574199889 + }, + "m_height": { + "type": "float", + "id": 5, + "offset": 184, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 602977104 + }, + "m_alpha": { + "type": "float", + "id": 6, + "offset": 188, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 878686493 + }, + "m_cycleRate": { + "type": "float", + "id": 7, + "offset": 192, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 947046355 + } + } + }, + "1935189228": { + "name": "class std::list >", + "bases": [], + "hash": 1935189228, + "properties": {} + }, + "222550113": { + "name": "class SpawnObject*", + "bases": [ + "PropertyClass" + ], + "hash": 222550113, + "properties": { + "m_name": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1717359772 + }, + "m_id": { + "type": "gid", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2090569797 + }, + "m_active": { + "type": "bool", + "id": 2, + "offset": 112, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 239335471 + }, + "m_popSensitive": { + "type": "bool", + "id": 3, + "offset": 113, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1597743708 + }, + "m_maxNumberOfSpawns": { + "type": "unsigned int", + "id": 4, + "offset": 116, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 641389965 + }, + "m_atLeastOneSpawn": { + "type": "bool", + "id": 5, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 739650380 + }, + "m_activateAtMax": { + "type": "bool", + "id": 6, + "offset": 121, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 992369727 + }, + "m_spawnTime": { + "type": "int", + "id": 7, + "offset": 124, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 752966546 + }, + "m_respawnRate": { + "type": "unsigned int", + "id": 8, + "offset": 128, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1675694521 + }, + "m_spawnList": { + "type": "class SpawnItem*", + "id": 9, + "offset": 160, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2620469846 + }, + "m_globalDynamicReqs": { + "type": "class RequirementList*", + "id": 10, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3534313715 + }, + "m_globalDynamic": { + "type": "bool", + "id": 11, + "offset": 144, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1951691017 + }, + "m_waitForTimer": { + "type": "bool", + "id": 12, + "offset": 122, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2143039664 + }, + "m_zoneLevelMin": { + "type": "unsigned int", + "id": 13, + "offset": 132, + "flags": 263, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1028934149 + }, + "m_zoneLevelMax": { + "type": "unsigned int", + "id": 14, + "offset": 136, + "flags": 263, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1028933895 + }, + "m_zoneLevelUp": { + "type": "unsigned int", + "id": 15, + "offset": 140, + "flags": 263, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1342541638 + } + } + }, + "1935041501": { + "name": "class SharedPointer", + "bases": [ + "WizardAutobotQuestManager", + "AutobotQuestManager", + "PropertyClass" + ], + "hash": 1935041501, + "properties": {} + }, + "1509627481": { + "name": "class SortedDirt", + "bases": [ + "PropertyClass" + ], + "hash": 1509627481, + "properties": {} + }, + "1082788448": { + "name": "class AnimationPair", + "bases": [ + "PropertyClass" + ], + "hash": 1082788448, + "properties": { + "m_oldAnim": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1953606335 + }, + "m_newAnim": { + "type": "std::string", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2558206762 + } + } + }, + "651907595": { + "name": "class SharedPointer", + "bases": [ + "ControlRichEdit", + "ControlEdit", + "Window", + "PropertyClass" + ], + "hash": 651907595, + "properties": { + "m_sName": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306437263 + }, + "m_Children": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621225959 + }, + "m_Style": { + "type": "unsigned int", + "id": 2, + "offset": 152, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152, + "FORCE_NUMERIC": 16777216, + "FORCE_ALPHA": 268435456, + "FORCE_ALPHANUMERIC": 536870912, + "FORCE_INTEGER": 33554432, + "FORCE_POSITIVE": 67108864, + "FORCE_RANGE": 134217728 + } + }, + "m_Flags": { + "type": "unsigned int", + "id": 3, + "offset": 156, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } + }, + "m_Window": { + "type": "class Rect", + "id": 4, + "offset": 160, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3105139380 + }, + "m_fTargetAlpha": { + "type": "float", + "id": 5, + "offset": 212, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1809129834 + }, + "m_fDisabledAlpha": { + "type": "float", + "id": 6, + "offset": 216, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1389987675 + }, + "m_fAlpha": { + "type": "float", + "id": 7, + "offset": 208, + "flags": 65671, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 482130755 + }, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3623628394 + }, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2102211316 + }, + "m_sScript": { + "type": "std::string", + "id": 10, + "offset": 352, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1846695875 + }, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3389835433 + }, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547159940 + }, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513510520 + }, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3091503757 + }, + "m_sText": { + "type": "std::wstring", + "id": 16, + "offset": 584, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2102642960 + }, + "m_nMaxLength": { + "type": "int", + "id": 17, + "offset": 620, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1183478416 + }, + "m_bPassword": { + "type": "bool", + "id": 18, + "offset": 624, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1604468200 + }, + "m_bLog": { + "type": "bool", + "id": 19, + "offset": 625, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 221687287 + }, + "m_previousNext": { + "type": "bool", + "id": 20, + "offset": 627, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 858581071 + }, + "m_nMaxLogSize": { + "type": "int", + "id": 21, + "offset": 712, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 779573899 + }, + "m_bEditing": { + "type": "bool", + "id": 22, + "offset": 616, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1243218553 + }, + "m_bAllowPaste": { + "type": "bool", + "id": 23, + "offset": 626, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1129316721 + }, + "m_nLogPosition": { + "type": "int", + "id": 24, + "offset": 704, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1120160767 + }, + "m_nCursor": { + "type": "int", + "id": 25, + "offset": 716, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1876782150 + }, + "m_nEditBegin": { + "type": "int", + "id": 26, + "offset": 720, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1066592403 + }, + "m_nEditEnd": { + "type": "int", + "id": 27, + "offset": 724, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1560905669 + }, + "m_sSavedText": { + "type": "std::wstring", + "id": 28, + "offset": 728, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2197953283 + }, + "m_fCursorBlinkSpeed": { + "type": "float", + "id": 29, + "offset": 760, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2232655228 + }, + "m_fCursorTimer": { + "type": "float", + "id": 30, + "offset": 764, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1929942748 + }, + "m_bCursorBlink": { + "type": "bool", + "id": 31, + "offset": 768, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 683441507 + }, + "m_fMinRange": { + "type": "double", + "id": 32, + "offset": 776, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3079523396 + }, + "m_fMaxRange": { + "type": "double", + "id": 33, + "offset": 784, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3876551814 + }, + "m_nPrecision": { + "type": "int", + "id": 34, + "offset": 792, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1404974196 + }, + "m_bDeleteOnFirstChar": { + "type": "bool", + "id": 35, + "offset": 618, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 902105643 + } + } + }, + "222730674": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 222730674, + "properties": { + "m_requirements": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 263, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3043523229 + }, + "m_dialog": { + "type": "std::string", + "id": 1, + "offset": 88, + "flags": 8388639, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1858395851 + }, + "m_picture": { + "type": "std::string", + "id": 2, + "offset": 120, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3128322903 + }, + "m_soundFile": { + "type": "std::string", + "id": 3, + "offset": 152, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2276870852 + }, + "m_action": { + "type": "std::string", + "id": 4, + "offset": 184, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1734553689 + }, + "m_dialogEvent": { + "type": "std::string", + "id": 5, + "offset": 216, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2707957549 + }, + "m_actorTemplateID": { + "type": "unsigned int", + "id": 6, + "offset": 248, + "flags": 33554463, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2134265679 + }, + "m_cameraName": { + "type": "std::string", + "id": 7, + "offset": 256, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3252786917 + }, + "m_interpolationDuration": { + "type": "float", + "id": 8, + "offset": 312, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1458058437, + "enum_options": { + "__DEFAULT": "1.0" + } + }, + "m_cameraOffsetX": { + "type": "float", + "id": 9, + "offset": 288, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1515912895 + }, + "m_cameraOffsetY": { + "type": "float", + "id": 10, + "offset": 292, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1515912896 + }, + "m_cameraOffsetZ": { + "type": "float", + "id": 11, + "offset": 296, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1515912897 + }, + "m_pitch": { + "type": "float", + "id": 12, + "offset": 304, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 896371695 + }, + "m_yaw": { + "type": "float", + "id": 13, + "offset": 300, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 357256328 + }, + "m_roll": { + "type": "float", + "id": 14, + "offset": 308, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 310020272 + }, + "m_cameraShakeType": { + "type": "std::string", + "id": 15, + "offset": 320, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1754128882, + "enum_options": { + "": 0, + "Constant": "Constant", + "Quake": "Quake", + "Thud": "Thud", + "End": "End", + "__DEFAULT": 0 + } + }, + "m_cameraShakeDuration": { + "type": "float", + "id": 16, + "offset": 352, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 316581010, + "enum_options": { + "__DEFAULT": "0.0" + } + }, + "m_cameraShakeAmplitude": { + "type": "float", + "id": 17, + "offset": 356, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2179718321, + "enum_options": { + "__DEFAULT": "0.0" + } + }, + "m_bypassCameraOnReview": { + "type": "bool", + "id": 18, + "offset": 360, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1412905725, + "enum_options": { + "__DEFAULT": 1 + } + }, + "m_cameraZoneName": { + "type": "std::string", + "id": 19, + "offset": 368, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3131581121 + }, + "m_duration": { + "type": "float", + "id": 20, + "offset": 400, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 920323453 + }, + "m_delay": { + "type": "float", + "id": 21, + "offset": 404, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 881988134 + }, + "m_cameraHidePlayers": { + "type": "int", + "id": 22, + "offset": 408, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 28533149 + }, + "m_walkAwayNpcTemplateID": { + "type": "gid", + "id": 23, + "offset": 416, + "flags": 33554719, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 942697507 + }, + "m_walkAwayExitDirectionInDegrees": { + "type": "float", + "id": 24, + "offset": 424, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 396419785 + }, + "m_walkAwayFadeTime": { + "type": "float", + "id": 25, + "offset": 428, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 822405687 + }, + "m_walkAwayUseCurrentFacing": { + "type": "bool", + "id": 26, + "offset": 432, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1464855436 + }, + "m_standInPlayerTag": { + "type": "std::string", + "id": 27, + "offset": 440, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1590121141 + }, + "m_fadeOutCamera": { + "type": "bool", + "id": 28, + "offset": 472, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1766121252 + }, + "m_snapCameraToPlayerAtExit": { + "type": "bool", + "id": 29, + "offset": 473, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1323369645 + }, + "m_secondaryCameraName": { + "type": "std::string", + "id": 30, + "offset": 480, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1670705581 + }, + "m_secondaryInterpolationDuration": { + "type": "float", + "id": 31, + "offset": 512, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1873822349 + }, + "m_npcStandInList": { + "type": "std::string", + "id": 32, + "offset": 520, + "flags": 287, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2076308937 + }, + "m_dialogAnimationList": { + "type": "std::string", + "id": 33, + "offset": 536, + "flags": 287, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2444806919 + }, + "m_dialogTurningList": { + "type": "std::string", + "id": 34, + "offset": 552, + "flags": 287, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2782869422 + }, + "m_npcYawOffsetInDegrees": { + "type": "float", + "id": 35, + "offset": 568, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1395075270 + }, + "m_allowPlayerToMove": { + "type": "bool", + "id": 36, + "offset": 572, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 225101337 + }, + "m_soundEffectFile": { + "type": "std::string", + "id": 37, + "offset": 576, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3235157265 + }, + "m_musicFile": { + "type": "std::string", + "id": 38, + "offset": 608, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2963686620 + }, + "m_nonStackableMusic": { + "type": "bool", + "id": 39, + "offset": 640, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1675595625 + }, + "m_nonRepeatableMusic": { + "type": "bool", + "id": 40, + "offset": 641, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2138315572 + }, + "m_playMusicAtSFXVolume": { + "type": "bool", + "id": 41, + "offset": 642, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2130871816 + }, + "m_soundEffectDelay": { + "type": "float", + "id": 42, + "offset": 644, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1586382460 + }, + "m_musicDelay": { + "type": "float", + "id": 43, + "offset": 648, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1217785767 + }, + "m_musicFadeTime": { + "type": "float", + "id": 44, + "offset": 652, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 502925015 + }, + "m_dontReleaseCameraAtExit": { + "type": "bool", + "id": 45, + "offset": 474, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1107508961 + }, + "m_disableBackButton": { + "type": "bool", + "id": 46, + "offset": 656, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 122355444 + }, + "m_enableExitButton": { + "type": "bool", + "id": 47, + "offset": 657, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1824693936 + }, + "m_cameraFadeType": { + "type": "std::string", + "id": 48, + "offset": 664, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2021935382, + "enum_options": { + "": 0, + "In Out Black": "In Out Black", + "In Out White": "In Out White", + "In Black": "In Black", + "Out Black": "Out Black", + "In White": "In White", + "Out White": "Out White", + "__DEFAULT": 0 + } + }, + "m_cameraFadeTime": { + "type": "float", + "id": 49, + "offset": 696, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 614419391, + "enum_options": { + "__DEFAULT": "0.5" + } + }, + "m_idleAnimation": { + "type": "std::string", + "id": 50, + "offset": 704, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2900487193 + }, + "m_spamTime": { + "type": "float", + "id": 51, + "offset": 736, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1727215063, + "enum_options": { + "__DEFAULT": "1.0" + } + }, + "m_playSoundIfSpamming": { + "type": "bool", + "id": 52, + "offset": 740, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 690006749, + "enum_options": { + "__DEFAULT": 1 + } + }, + "m_playMusicIfSpamming": { + "type": "bool", + "id": 53, + "offset": 741, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 538564341, + "enum_options": { + "__DEFAULT": 1 + } + }, + "m_stopMusicFadeTime": { + "type": "float", + "id": 54, + "offset": 744, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 696390845, + "enum_options": { + "__DEFAULT": "0.0" + } + }, + "m_restartMusicFadeTime": { + "type": "float", + "id": 55, + "offset": 748, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 709379292, + "enum_options": { + "__DEFAULT": "0.0" + } + }, + "m_meetsRequirements": { + "type": "bool", + "id": 56, + "offset": 752, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 296443061 + }, + "m_secondaryCameraInitalDelay": { + "type": "float", + "id": 57, + "offset": 516, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1812842232 + }, + "m_displayButtonsOnTimedDialog": { + "type": "bool", + "id": 58, + "offset": 753, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 569741400 + } + } + }, + "1080788762": { + "name": "class TutorialLogBehaviorTemplate", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 1080788762, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + } + } + }, + "1080788570": { + "name": "class TutorialLogBehaviorTemplate*", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 1080788570, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + } + } + }, + "1510254752": { + "name": "class std::list >", + "bases": [], + "hash": 1510254752, + "properties": {} + }, + "1935313616": { + "name": "class JewelVaultBehaviorTemplate", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 1935313616, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + } + } + }, + "1080760734": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1080760734, + "properties": { + "m_standardItemFeedingRewards": { + "type": "class PetFeedingRewardInfo*", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2366849484 + }, + "m_crownsFeedingRewards": { + "type": "class PetFeedingRewardInfo*", + "id": 1, + "offset": 96, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1691121416 + }, + "m_fGoldScalingFactor": { + "type": "float", + "id": 2, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2001693763 + } + } + }, + "1509765278": { + "name": "class PetStatsControl", + "bases": [ + "Window", + "PropertyClass" + ], + "hash": 1509765278, + "properties": { + "m_sName": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306437263 + }, + "m_Children": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 65667, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621225959 + }, + "m_Style": { + "type": "unsigned int", + "id": 2, + "offset": 152, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "SCALE_CHILDREN": 2, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "FOCUS_LOCKED": 64, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152 + } + }, + "m_Flags": { + "type": "unsigned int", + "id": 3, + "offset": 156, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } + }, + "m_Window": { + "type": "class Rect", + "id": 4, + "offset": 160, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3105139380 + }, + "m_fTargetAlpha": { + "type": "float", + "id": 5, + "offset": 212, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1809129834 + }, + "m_fDisabledAlpha": { + "type": "float", + "id": 6, + "offset": 216, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1389987675 + }, + "m_fAlpha": { + "type": "float", + "id": 7, + "offset": 208, + "flags": 65671, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 482130755 + }, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3623628394 + }, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2102211316 + }, + "m_sScript": { + "type": "std::string", + "id": 10, + "offset": 352, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1846695875 + }, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3389835433 + }, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547159940 + }, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513510520 + }, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3091503757 + } + } + }, + "652409070": { + "name": "class SharedPointer", + "bases": [ + "Window", + "PropertyClass" + ], + "hash": 652409070, + "properties": { + "m_sName": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306437263 + }, + "m_Children": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 65667, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621225959 + }, + "m_Style": { + "type": "unsigned int", + "id": 2, + "offset": 152, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "SCALE_CHILDREN": 2, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "FOCUS_LOCKED": 64, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152 + } + }, + "m_Flags": { + "type": "unsigned int", + "id": 3, + "offset": 156, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } + }, + "m_Window": { + "type": "class Rect", + "id": 4, + "offset": 160, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3105139380 + }, + "m_fTargetAlpha": { + "type": "float", + "id": 5, + "offset": 212, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1809129834 + }, + "m_fDisabledAlpha": { + "type": "float", + "id": 6, + "offset": 216, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1389987675 + }, + "m_fAlpha": { + "type": "float", + "id": 7, + "offset": 208, + "flags": 65671, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 482130755 + }, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3623628394 + }, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2102211316 + }, + "m_sScript": { + "type": "std::string", + "id": 10, + "offset": 352, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1846695875 + }, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3389835433 + }, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547159940 + }, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513510520 + }, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3091503757 + } + } + }, + "224030200": { + "name": "class WizardAutobotQuestManagerGraphicalClient*", + "bases": [ + "WizardAutobotQuestManager", + "AutobotQuestManager", + "PropertyClass" + ], + "hash": 224030200, + "properties": {} + }, + "652077985": { + "name": "class ClientBGPlayerInfo*", + "bases": [ + "BGPlayerInfo", + "PropertyClass" + ], + "hash": 652077985, + "properties": { + "m_playerID": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1774633426 + }, + "m_team": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1717579362 + } + } + }, + "1935739033": { + "name": "class ReqHasBadge*", + "bases": [ + "Requirement", + "PropertyClass" + ], + "hash": 1935739033, + "properties": { + "m_applyNOT": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1746328074, + "enum_options": { + "__DEFAULT": 0 + } + }, + "m_operator": { + "type": "enum Requirement::Operator", + "id": 1, + "offset": 76, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2672792317, + "enum_options": { + "ROP_AND": 0, + "ROP_OR": 1, + "__DEFAULT": "ROP_AND" + } + }, + "m_badgeName": { + "type": "std::string", + "id": 2, + "offset": 80, + "flags": 268435487, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3002948047, + "enum_options": { + "__BASECLASS": "BadgeTemplate" + } + } + } + }, + "223749239": { + "name": "class SharedPointer", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 223749239, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + } + } + }, + "1510341560": { + "name": "enum SeedSize", + "bases": [], + "hash": 1510341560, + "properties": {} + }, + "652314621": { + "name": "class PolymorphImprovementRatingInfo", + "bases": [ + "PropertyClass" + ], + "hash": 652314621, + "properties": { + "m_polymorphTemplateID": { + "type": "unsigned int", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1026295488 + }, + "m_personalRating": { + "type": "int", + "id": 1, + "offset": 76, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 209790915 + }, + "m_eventRating": { + "type": "int", + "id": 2, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2120160417 + } + } + }, + "1082788443": { + "name": "class AnimationPair*", + "bases": [ + "PropertyClass" + ], + "hash": 1082788443, + "properties": { + "m_oldAnim": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1953606335 + }, + "m_newAnim": { + "type": "std::string", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2558206762 + } + } + }, + "1936783486": { + "name": "class SG_GameActionClient_PlayEffect", + "bases": [ + "SG_GameAction_PlayEffect", + "SG_GameAction", + "PropertyClass" + ], + "hash": 1936783486, + "properties": { + "m_target": { + "type": "enum SG_GameAction::SG_Target", + "id": 0, + "offset": 72, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1166870973, + "enum_options": { + "Target_Ball": 0, + "Target_Self": 1, + "Target_Connections": 2, + "__DEFAULT": "Target_Ball" + } + }, + "m_graphicArguments": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1656480079 + }, + "m_fMinimumTime": { + "type": "float", + "id": 2, + "offset": 144, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1516804616 + }, + "m_bDisplaysScore": { + "type": "bool", + "id": 3, + "offset": 148, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 722455866 + }, + "m_bPlaysPointsSounds": { + "type": "bool", + "id": 4, + "offset": 149, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 717919607 + } + } + }, + "224638087": { + "name": "class ReqClassicMode*", + "bases": [ + "Requirement", + "PropertyClass" + ], + "hash": 224638087, + "properties": { + "m_applyNOT": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1746328074, + "enum_options": { + "__DEFAULT": 0 + } + }, + "m_operator": { + "type": "enum Requirement::Operator", + "id": 1, + "offset": 76, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2672792317, + "enum_options": { + "ROP_AND": 0, + "ROP_OR": 1, + "__DEFAULT": "ROP_AND" + } + } + } + }, + "1082584798": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1082584798, + "properties": { + "m_playerList": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1909774945 + }, + "m_teamColorList": { + "type": "int", + "id": 1, + "offset": 88, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 351259772 + }, + "m_packedNameList": { + "type": "std::string", + "id": 2, + "offset": 104, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 3513135712 + } + } + }, + "1511448627": { + "name": "class CombatTriggerDescription", + "bases": [ + "PropertyClass" + ], + "hash": 1511448627, + "properties": { + "m_description": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1649374815 + }, + "m_displaySpellName": { + "type": "std::string", + "id": 1, + "offset": 104, + "flags": 268435463, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3323484466, + "enum_options": { + "__BASECLASS": "SpellTemplate" + } + } + } + }, + "1936326215": { + "name": "class RaidTeleportBehaviorTemplate*", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 1936326215, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + }, + "m_range": { + "type": "float", + "id": 1, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 898449636 + }, + "m_playerCount": { + "type": "int", + "id": 2, + "offset": 124, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 732802992 + }, + "m_zoneList": { + "type": "std::string", + "id": 3, + "offset": 128, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2171104787 + }, + "m_zoneTeleportLocation": { + "type": "std::string", + "id": 4, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3345769311 + }, + "m_enabledSeconds": { + "type": "int", + "id": 5, + "offset": 184, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2014197012 + } + } + }, + "224030584": { + "name": "class WizardAutobotQuestManagerGraphicalClient", + "bases": [ + "WizardAutobotQuestManager", + "AutobotQuestManager", + "PropertyClass" + ], + "hash": 224030584, + "properties": {} + }, + "652419470": { + "name": "class RemoveProtectionEffectCinematicAction", + "bases": [ + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 652419470, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + } + } + }, + "1936315975": { + "name": "class RaidTeleportBehaviorTemplate", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 1936315975, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + }, + "m_range": { + "type": "float", + "id": 1, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 898449636 + }, + "m_playerCount": { + "type": "int", + "id": 2, + "offset": 124, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 732802992 + }, + "m_zoneList": { + "type": "std::string", + "id": 3, + "offset": 128, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2171104787 + }, + "m_zoneTeleportLocation": { + "type": "std::string", + "id": 4, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3345769311 + }, + "m_enabledSeconds": { + "type": "int", + "id": 5, + "offset": 184, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2014197012 + } + } + }, + "224637991": { + "name": "class ReqClassicMode", + "bases": [ + "Requirement", + "PropertyClass" + ], + "hash": 224637991, + "properties": { + "m_applyNOT": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1746328074, + "enum_options": { + "__DEFAULT": 0 + } + }, + "m_operator": { + "type": "enum Requirement::Operator", + "id": 1, + "offset": 76, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2672792317, + "enum_options": { + "ROP_AND": 0, + "ROP_OR": 1, + "__DEFAULT": "ROP_AND" + } + } + } + }, + "1524733359": { + "name": "class SharedPointer", + "bases": [ + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 1524733359, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + } + } + }, + "1082888206": { + "name": "class DynamicSigilTemplate*", + "bases": [ + "CombatSigilTemplate", + "SigilTemplate", + "CoreTemplate", + "PropertyClass" + ], + "hash": 1082888206, + "properties": { + "m_behaviors": { + "type": "class BehaviorTemplate*", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1197808594 + }, + "m_sigilName": { + "type": "std::string", + "id": 1, + "offset": 96, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3177657588 + }, + "m_sigilType": { + "type": "std::string", + "id": 2, + "offset": 136, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3177899445 + }, + "m_entryResults": { + "type": "class ResultList*", + "id": 3, + "offset": 184, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3262956108 + }, + "m_requirements": { + "type": "class RequirementList*", + "id": 4, + "offset": 176, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2840985510 + }, + "m_cancelResults": { + "type": "class ResultList*", + "id": 5, + "offset": 192, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3799257120 + }, + "m_completeResults": { + "type": "class ResultList*", + "id": 6, + "offset": 200, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1964258099 + }, + "m_useState": { + "type": "bool", + "id": 7, + "offset": 216, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 683320865 + }, + "m_stateOverride": { + "type": "std::string", + "id": 8, + "offset": 224, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1949715548 + }, + "m_subCircles": { + "type": "class SigilSubCircle*", + "id": 9, + "offset": 256, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2227135493 + }, + "m_engageRadius": { + "type": "float", + "id": 10, + "offset": 304, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1429683718 + }, + "m_battlefieldEffects": { + "type": "class SharedPointer", + "id": 11, + "offset": 312, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1245973515 + }, + "m_playerVictoryCinematic": { + "type": "std::string", + "id": 12, + "offset": 336, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2684536069 + }, + "m_combatMusic": { + "type": "std::string", + "id": 13, + "offset": 368, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3636593682 + }, + "m_prePlanningCinematicOverride": { + "type": "std::string", + "id": 14, + "offset": 400, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2585096390 + }, + "m_planningCinematicOverride": { + "type": "std::string", + "id": 15, + "offset": 432, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3592819999 + }, + "m_shadowThresholdType": { + "type": "enum kShadow_Threshold_Type", + "id": 16, + "offset": 464, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2847763136, + "enum_options": { + "SHADOW_THRESHOLD_MIN": 0, + "SHADOW_THRESHOLD_AVG": 1, + "SHADOW_THRESHOLD_MAX": 2 + } + }, + "m_shadowThresholdFactor": { + "type": "float", + "id": 17, + "offset": 468, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2104355177 + }, + "m_shadowPipRatingFactor": { + "type": "float", + "id": 18, + "offset": 472, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1061434314 + }, + "m_scalarDamagePvP": { + "type": "float", + "id": 19, + "offset": 476, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2195445026 + }, + "m_scalarResistPvP": { + "type": "float", + "id": 20, + "offset": 480, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1947822077 + }, + "m_scalarPiercePvP": { + "type": "float", + "id": 21, + "offset": 484, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 441266907 + }, + "m_scalarDamagePvE": { + "type": "float", + "id": 22, + "offset": 488, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2195445015 + }, + "m_scalarResistPvE": { + "type": "float", + "id": 23, + "offset": 492, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1947822066 + }, + "m_scalarPiercePvE": { + "type": "float", + "id": 24, + "offset": 496, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 441266896 + }, + "m_damageLimitPvP": { + "type": "float", + "id": 25, + "offset": 500, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1990135243 + }, + "m_dK0PvP": { + "type": "float", + "id": 26, + "offset": 504, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 413528556 + }, + "m_dN0PvP": { + "type": "float", + "id": 27, + "offset": 508, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 417086319 + }, + "m_resistLimitPvP": { + "type": "float", + "id": 28, + "offset": 512, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1174512006 + }, + "m_rK0PvP": { + "type": "float", + "id": 29, + "offset": 516, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 961424058 + }, + "m_rN0PvP": { + "type": "float", + "id": 30, + "offset": 520, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 964981821 + }, + "m_damageLimitPvE": { + "type": "float", + "id": 31, + "offset": 524, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1990135232 + }, + "m_dK0PvE": { + "type": "float", + "id": 32, + "offset": 528, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 413528545 + }, + "m_dN0PvE": { + "type": "float", + "id": 33, + "offset": 532, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 417086308 + }, + "m_resistLimitPvE": { + "type": "float", + "id": 34, + "offset": 536, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1174511995 + }, + "m_rK0PvE": { + "type": "float", + "id": 35, + "offset": 540, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 961424047 + }, + "m_rN0PvE": { + "type": "float", + "id": 36, + "offset": 544, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 964981810 + } + } + }, + "1520861921": { + "name": "class ActorBody*", + "bases": [ + "GamebryoBody", + "Body", + "PropertyClass" + ], + "hash": 1520861921, + "properties": { + "m_position": { + "type": "class Vector3D", + "id": 0, + "offset": 88, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3697900983 + }, + "m_pitch": { + "type": "float", + "id": 1, + "offset": 100, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 896371695 + }, + "m_roll": { + "type": "float", + "id": 2, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 310020272 + }, + "m_yaw": { + "type": "float", + "id": 3, + "offset": 108, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 357256328 + }, + "m_fHeight": { + "type": "float", + "id": 4, + "offset": 132, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 401539638 + }, + "m_scale": { + "type": "float", + "id": 5, + "offset": 112, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 899693439 + } + } + }, + "673627990": { + "name": "class SharedPointer", + "bases": [ + "ServiceOptionBase", + "PropertyClass" + ], + "hash": 673627990, + "properties": { + "m_serviceName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2206028813 + }, + "m_iconKey": { + "type": "std::string", + "id": 1, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2457138637 + }, + "m_displayKey": { + "type": "std::string", + "id": 2, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3023276954 + }, + "m_serviceIndex": { + "type": "unsigned int", + "id": 3, + "offset": 204, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2103126710 + }, + "m_forceInteract": { + "type": "bool", + "id": 4, + "offset": 200, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1705789564 + } + } + }, + "1936649631": { + "name": "class PrivateEquippedJewelInfo", + "bases": [ + "PropertyClass" + ], + "hash": 1936649631, + "properties": { + "m_infoPairs": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1168115310 + } + } + }, + "1082872619": { + "name": "class std::list >", + "bases": [], + "hash": 1082872619, + "properties": {} + }, + "1518184174": { + "name": "class TreasureShopCrownsOption", + "bases": [ + "ServiceOptionBase", + "PropertyClass" + ], + "hash": 1518184174, + "properties": { + "m_serviceName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2206028813 + }, + "m_iconKey": { + "type": "std::string", + "id": 1, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2457138637 + }, + "m_displayKey": { + "type": "std::string", + "id": 2, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3023276954 + }, + "m_serviceIndex": { + "type": "unsigned int", + "id": 3, + "offset": 204, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2103126710 + }, + "m_forceInteract": { + "type": "bool", + "id": 4, + "offset": 200, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1705789564 + } + } + }, + "664792111": { + "name": "class MaxPotionLootInfo", + "bases": [ + "LootInfo", + "LootInfoBase", + "PropertyClass" + ], + "hash": 664792111, + "properties": { + "m_lootType": { + "type": "enum LootInfo::LOOT_TYPE", + "id": 0, + "offset": 72, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1591891442, + "enum_options": { + "LOOT_TYPE_NONE": 0, + "LOOT_TYPE_GOLD": 1, + "LOOT_TYPE_MANA": 2, + "LOOT_TYPE_ITEM": 3, + "LOOT_TYPE_TREASURE_CARD": 4, + "LOOT_TYPE_MAGIC_XP": 5, + "LOOT_TYPE_ADD_SPELL": 6, + "LOOT_TYPE_MAX_HEALTH": 7, + "LOOT_TYPE_MAX_GOLD": 8, + "LOOT_TYPE_MAX_MANA": 9, + "LOOT_TYPE_MAX_POTION": 10, + "LOOT_TYPE_TRAINING_POINTS": 11, + "LOOT_TYPE_RECIPE": 12, + "LOOT_TYPE_CRAFTING_SLOT": 13, + "LOOT_TYPE_REAGENT": 14, + "LOOT_TYPE_PETSNACK": 15, + "LOOT_TYPE_GARDENING_XP": 16, + "LOOT_TYPE_PET_XP": 17, + "LOOT_TYPE_TREASURE_TABLE": 18, + "LOOT_TYPE_ARENA_POINTS": 19, + "LOOT_TYPE_ARENA_BONUS_POINTS": 20, + "LOOT_TYPE_GROUP": 21, + "LOOT_TYPE_FISHING_XP": 22, + "LOOT_TYPE_EVENT_CURRENCY_1": 24, + "LOOT_TYPE_EVENT_CURRENCY_2": 25, + "LOOT_TYPE_PVP_CURRENCY": 26, + "LOOT_TYPE_PVP_CURRENCY_BONUS": 27, + "LOOT_TYPE_PVP_TOURNEY_CURRENCY": 28, + "LOOT_TYPE_PVP_TOURNEY_CURRENCY_BONUS": 29, + "LOOT_TYPE_FURNITURE_ESSENCE": 30 + } + }, + "m_maxPotionToAdd": { + "type": "int", + "id": 1, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1268091461 + } + } + }, + "224838099": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 224838099, + "properties": { + "m_rarity": { + "type": "enum RarityType", + "id": 0, + "offset": 80, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2253792108, + "enum_options": { + "RT_COMMON": 0, + "RT_UNCOMMON": 1, + "RT_RARE": 2, + "RT_ULTRARARE": 3, + "RT_EPIC": 4 + } + }, + "m_lootGid": { + "type": "gid", + "id": 1, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1008695306 + }, + "m_expectedValue": { + "type": "float", + "id": 2, + "offset": 104, + "flags": 23, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1011900742 + }, + "m_expectedChance": { + "type": "float", + "id": 3, + "offset": 108, + "flags": 23, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1850495755 + } + } + }, + "1516639738": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1516639738, + "properties": { + "m_crownShopPurchases": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 845434554 + } + } + }, + "656938972": { + "name": "class WhirlyBurlyMovementData*", + "bases": [ + "PropertyClass" + ], + "hash": 656938972, + "properties": { + "m_unitType": { + "type": "unsigned char", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1498103218 + }, + "m_cardUsed": { + "type": "unsigned int", + "id": 1, + "offset": 76, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1315653400 + }, + "m_movementTurnTime": { + "type": "unsigned char", + "id": 2, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1100876371 + }, + "m_blueTeamScore": { + "type": "unsigned int", + "id": 3, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1519259416 + }, + "m_orangeTeamScore": { + "type": "unsigned int", + "id": 4, + "offset": 108, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 988508012 + }, + "m_redTeamScore": { + "type": "unsigned int", + "id": 5, + "offset": 112, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1672048811 + }, + "m_unitMovementList": { + "type": "unsigned int", + "id": 6, + "offset": 88, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 687999892 + } + } + }, + "1514144732": { + "name": "class JewelSocketWrenchElements", + "bases": [ + "PropertyClass" + ], + "hash": 1514144732, + "properties": { + "m_socketWrenchTemplateID": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1148289553 + }, + "m_lowestEquipLevelInclusive": { + "type": "int", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1282442502 + }, + "m_hightestEquipLevelInclusive": { + "type": "int", + "id": 2, + "offset": 84, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1111256264 + } + } + }, + "655839544": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 655839544, + "properties": { + "m_socketNumber": { + "type": "unsigned int", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 772707167 + }, + "m_jewelTemplateID": { + "type": "unsigned int", + "id": 1, + "offset": 76, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 396940685 + } + } + }, + "1939506326": { + "name": "class SharedPointer", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 1939506326, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + } + } + }, + "1513033161": { + "name": "class SharedPointer", + "bases": [ + "PositionalSoundBehavior", + "SoundBehavior", + "AreaBehavior", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1513033161, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_radius": { + "type": "float", + "id": 1, + "offset": 116, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 989410271 + }, + "m_category": { + "type": "enum AudioCategory", + "id": 2, + "offset": 124, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2951251982, + "enum_options": { + "AudioCategory_Irrelevent": 0, + "AudioCategory_Accoustic": 1, + "AudioCategory_Noise": 2, + "AudioCategory_Music": 3 + } + }, + "m_exclusive": { + "type": "bool", + "id": 3, + "offset": 128, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 824383403 + }, + "m_playList": { + "type": "class PlayList", + "id": 4, + "offset": 176, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2061221957 + }, + "m_volume": { + "type": "float", + "id": 5, + "offset": 304, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1162855023 + }, + "m_loopCount": { + "type": "int", + "id": 6, + "offset": 308, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 865634717 + }, + "m_minimumFalloff": { + "type": "float", + "id": 7, + "offset": 328, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 355697197 + }, + "m_maximumFalloff": { + "type": "float", + "id": 8, + "offset": 332, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2210192367 + }, + "m_animDriven": { + "type": "bool", + "id": 9, + "offset": 392, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 398394720 + }, + "m_inverted": { + "type": "bool", + "id": 10, + "offset": 397, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1034821044 + }, + "m_animationName": { + "type": "std::string", + "id": 11, + "offset": 512, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3393414044 + } + } + }, + "654524782": { + "name": "class ClientCrownsRewardsSchedule*", + "bases": [ + "CrownsRewardsSchedule", + "PropertyClass" + ], + "hash": 654524782, + "properties": {} + }, + "1939066320": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1939066320, + "properties": {} + }, + "238090246": { + "name": "class MatchTeam*", + "bases": [ + "PropertyClass" + ], + "hash": 238090246, + "properties": { + "m_nTeamID": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 374990266 + }, + "m_matchId": { + "type": "gid", + "id": 1, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1757621330 + }, + "m_matchNameID": { + "type": "unsigned int", + "id": 2, + "offset": 88, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1751361288 + }, + "m_creatorId": { + "type": "gid", + "id": 3, + "offset": 96, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1051766069 + }, + "m_friendsOnly": { + "type": "bool", + "id": 4, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1420401792 + }, + "m_actors": { + "type": "class SharedPointer", + "id": 5, + "offset": 112, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 568947970 + }, + "m_bracketID": { + "type": "gid", + "id": 6, + "offset": 152, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 441272961 + }, + "m_leagueID": { + "type": "unsigned int", + "id": 7, + "offset": 160, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 692361645 + }, + "m_seasonID": { + "type": "unsigned int", + "id": 8, + "offset": 164, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 535260643 + }, + "m_maxActorLevel": { + "type": "int", + "id": 9, + "offset": 144, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 120597521 + } + } + }, + "1085739923": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1085739923, + "properties": { + "m_dailyQuestRewardList": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1109520555 + }, + "m_dailyPvPRewardList": { + "type": "class SharedPointer", + "id": 1, + "offset": 88, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 952967791 + }, + "m_circleRegistryList": { + "type": "std::string", + "id": 2, + "offset": 104, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2265601986 + }, + "m_questRewardsList": { + "type": "std::string", + "id": 3, + "offset": 120, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2202355553 + } + } + }, + "1512537705": { + "name": "class ObjStateSet*", + "bases": [ + "PropertyClass" + ], + "hash": 1512537705, + "properties": { + "m_categories": { + "type": "class ObjStateCategory*", + "id": 0, + "offset": 128, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1980433352 + }, + "m_stateSetName": { + "type": "std::string", + "id": 1, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1863712969 + } + } + }, + "653952242": { + "name": "class CreateAuraActorCinematicAction", + "bases": [ + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 653952242, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + }, + "m_newActorName": { + "type": "std::string", + "id": 2, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2029131039 + } + } + }, + "1937961554": { + "name": "class SharedPointer", + "bases": [ + "PositionalSoundBehaviorTemplate", + "SoundBehaviorTemplate", + "AreaBehaviorTemplate", + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 1937961554, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + }, + "m_radius": { + "type": "float", + "id": 1, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 989410271 + }, + "m_category": { + "type": "enum AudioCategory", + "id": 2, + "offset": 124, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2951251982, + "enum_options": { + "AudioCategory_Irrelevent": 0, + "AudioCategory_Accoustic": 1, + "AudioCategory_Noise": 2, + "AudioCategory_Music": 3, + "AudioCategory_MusicAtSFXVolume": 4, + "AudioCategory_Dialog": 5, + "AudioCategory_UI": 6, + "AudioCategory_NoiseAtMusicVolume": 7 + } + }, + "m_exclusive": { + "type": "bool", + "id": 3, + "offset": 128, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 824383403 + }, + "m_active": { + "type": "bool", + "id": 4, + "offset": 129, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 239335471 + }, + "m_enableReqs": { + "type": "class SharedPointer", + "id": 5, + "offset": 136, + "flags": 263, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3158020443 + }, + "m_trackFilenameList": { + "type": "std::string", + "id": 6, + "offset": 152, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2531081709 + }, + "m_playList": { + "type": "class PlayListEntry*", + "id": 7, + "offset": 176, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 3907873161 + }, + "m_priority": { + "type": "int", + "id": 8, + "offset": 208, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1235205852 + }, + "m_volume": { + "type": "float", + "id": 9, + "offset": 200, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1162855023 + }, + "m_loopCount": { + "type": "int", + "id": 10, + "offset": 204, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 865634717 + }, + "m_progression": { + "type": "enum PlayList::Progression", + "id": 11, + "offset": 220, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3279400238, + "enum_options": { + "Sequence": 0, + "Random": 1, + "SequenceOnceOnly": 2, + "RandomNoRepeat": 3 + } + }, + "m_progressMin": { + "type": "float", + "id": 12, + "offset": 212, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1497550192 + }, + "m_progressMax": { + "type": "float", + "id": 13, + "offset": 216, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1497549938 + }, + "m_audioFilterSet": { + "type": "unsigned int", + "id": 14, + "offset": 224, + "flags": 33554439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 831339825 + }, + "m_animationNameFilter": { + "type": "std::string", + "id": 15, + "offset": 232, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2292854242 + }, + "m_functionallabel": { + "type": "std::string", + "id": 16, + "offset": 264, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3589331278 + }, + "m_innerRadius": { + "type": "float", + "id": 17, + "offset": 296, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 686816091 + }, + "m_inverted": { + "type": "bool", + "id": 18, + "offset": 300, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1034821044 + }, + "m_fInsideAngle": { + "type": "float", + "id": 19, + "offset": 304, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1114383840 + }, + "m_fOutsideAngle": { + "type": "float", + "id": 20, + "offset": 308, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1627152289 + }, + "m_fOutsideVolume": { + "type": "float", + "id": 21, + "offset": 312, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 90369618 + }, + "m_fRangeScale": { + "type": "float", + "id": 22, + "offset": 316, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1749294034 + }, + "m_fAttenuationFactor": { + "type": "float", + "id": 23, + "offset": 320, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 273292776 + }, + "m_eAttenuationType": { + "type": "enum PositionInfoAttenuationType", + "id": 24, + "offset": 324, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2427193304, + "enum_options": { + "Standard": 0, + "Unit Range Power": 1 + } + } + } + }, + "231842303": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 231842303, + "properties": { + "m_eType": { + "type": "enum ProxyType", + "id": 0, + "offset": 72, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1656534066, + "enum_options": { + "ProxyTypeBox": 0, + "ProxyTypeRay": 1, + "ProxyTypeSphere": 2, + "ProxyTypeCylinder": 3, + "ProxyTypeTube": 4, + "ProxyTypePlane": 5, + "ProxyTypeMesh": 6, + "ProxyTypeInvalid": 7 + } + } + } + }, + "1084935456": { + "name": "class AuctionPriceMods*", + "bases": [ + "PropertyClass" + ], + "hash": 1084935456, + "properties": { + "m_numTemplates": { + "type": "int", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 837442809 + }, + "m_sellMod": { + "type": "float", + "id": 1, + "offset": 76, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1154061607 + }, + "m_buyMod": { + "type": "float", + "id": 2, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 387686375 + } + } + }, + "652876292": { + "name": "class SoftwareStyle*", + "bases": [ + "PropertyClass" + ], + "hash": 652876292, + "properties": { + "m_material": { + "type": "class SharedPointer", + "id": 0, + "offset": 88, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1438090150 + }, + "m_size": { + "type": "class Size", + "id": 1, + "offset": 72, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 251247159 + }, + "m_hotSpot": { + "type": "class Point", + "id": 2, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1849465267 + } + } + }, + "227865691": { + "name": "class StartBacklashRotationEffectCinematicAction*", + "bases": [ + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 227865691, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + } + } + }, + "1084248228": { + "name": "class SharedPointer", + "bases": [ + "ConditionalSpellEffectRequirement", + "Requirement", + "PropertyClass" + ], + "hash": 1084248228, + "properties": { + "m_applyNOT": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1746328074, + "enum_options": { + "__DEFAULT": 0 + } + }, + "m_operator": { + "type": "enum Requirement::Operator", + "id": 1, + "offset": 76, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2672792317, + "enum_options": { + "ROP_AND": 0, + "ROP_OR": 1, + "__DEFAULT": "ROP_AND" + } + }, + "m_targetType": { + "type": "enum ConditionalSpellEffectRequirement::RequirementTarget", + "id": 2, + "offset": 80, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547737902, + "enum_options": { + "RT_Caster": 0, + "RT_Target": 1 + } + }, + "m_effectType": { + "type": "enum SpellEffect::kSpellEffects", + "id": 3, + "offset": 88, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2578255295, + "enum_options": { + "SpellEffect::kInvalidSpellEffect": 0, + "SpellEffect::kAbsorbDamage": 37, + "SpellEffect::kAbsorbHeal": 38, + "SpellEffect::kAddCombatTriggerList": 87, + "SpellEffect::kBounceAll": 36, + "SpellEffect::kBounceBack": 35, + "SpellEffect::kBounceNext": 33, + "SpellEffect::kBouncePrevious": 34, + "SpellEffect::kCloakedCharm": 42, + "SpellEffect::kCloakedWard": 43, + "SpellEffect::kCloakedWardNoRemove": 86, + "SpellEffect::kConfusionBlock": 109, + "SpellEffect::kCritBlock": 47, + "SpellEffect::kCritBoost": 46, + "SpellEffect::kCritBoostSchoolSpecific": 97, + "SpellEffect::kDampen": 68, + "SpellEffect::kDispel": 40, + "SpellEffect::kDispelBlock": 108, + "SpellEffect::kMaximumIncomingDamage": 23, + "SpellEffect::kModifyAccuracy": 39, + "SpellEffect::kModifyIncomingArmorPiercing": 26, + "SpellEffect::kModifyIncomingDamage": 22, + "SpellEffect::kModifyIncomingDamageFlat": 119, + "SpellEffect::kModifyIncomingDamageOverTime": 137, + "SpellEffect::kModifyIncomingDamageType": 25, + "SpellEffect::kModifyIncomingHeal": 24, + "SpellEffect::kModifyIncomingHealFlat": 118, + "SpellEffect::kModifyIncomingHealOverTime": 138, + "SpellEffect::kModifyIncomingStealHealth": 32, + "SpellEffect::kModifyOutgoingArmorPiercing": 30, + "SpellEffect::kModifyOutgoingDamage": 27, + "SpellEffect::kModifyOutgoingDamageFlat": 121, + "SpellEffect::kModifyOutgoingDamageType": 29, + "SpellEffect::kModifyOutgoingHeal": 28, + "SpellEffect::kModifyOutgoingHealFlat": 120, + "SpellEffect::kModifyPipRoundRate": 110, + "SpellEffect::kModifyPowerPipChance": 77, + "SpellEffect::kPipConversion": 45, + "SpellEffect::kPowerPipConversion": 100, + "SpellEffect::kProtectBeneficial": 103, + "SpellEffect::kProtectHarmful": 104, + "SpellEffect::kPushCharm": 8, + "SpellEffect::kRemoveCombatTriggerList": 88, + "SpellEffect::kStunBlock": 79, + "SpellEffect::kStunResist": 44 + } + }, + "m_disposition": { + "type": "enum SpellEffect::kHangingDisposition", + "id": 4, + "offset": 92, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1904841031, + "enum_options": { + "SpellEffect::kBoth": 0, + "SpellEffect::kBeneficial": 1, + "SpellEffect::kHarmful": 2 + } + }, + "m_anyType": { + "type": "bool", + "id": 5, + "offset": 96, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1809059293 + }, + "m_globalEffect": { + "type": "bool", + "id": 6, + "offset": 97, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 793781233 + } + } + }, + "226176838": { + "name": "class WindowLayout*", + "bases": [ + "Window", + "PropertyClass" + ], + "hash": 226176838, + "properties": { + "m_sName": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306437263 + }, + "m_Children": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621225959 + }, + "m_Style": { + "type": "unsigned int", + "id": 2, + "offset": 152, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152, + "H_CENTER": 16777216, + "H_RIGHT": 33554432, + "V_CENTER": 2147483648, + "V_BOTTOM": 67108864, + "SORT": 536870912, + "LAYOUT_VERT": 1073741824, + "LAYOUT_REVERSE": 2147483648, + "DO_NOT_WRAP": 134217728 + } + }, + "m_Flags": { + "type": "unsigned int", + "id": 3, + "offset": 156, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } + }, + "m_Window": { + "type": "class Rect", + "id": 4, + "offset": 160, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3105139380 + }, + "m_fTargetAlpha": { + "type": "float", + "id": 5, + "offset": 212, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1809129834 + }, + "m_fDisabledAlpha": { + "type": "float", + "id": 6, + "offset": 216, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1389987675 + }, + "m_fAlpha": { + "type": "float", + "id": 7, + "offset": 208, + "flags": 65671, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 482130755 + }, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3623628394 + }, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2102211316 + }, + "m_sScript": { + "type": "std::string", + "id": 10, + "offset": 352, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1846695875 + }, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3389835433 + }, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547159940 + }, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513510520 + }, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3091503757 + }, + "m_nHSpacing": { + "type": "int", + "id": 16, + "offset": 584, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 893611957 + }, + "m_nVSpacing": { + "type": "int", + "id": 17, + "offset": 588, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 551359491 + } + } + }, + "1083906118": { + "name": "class PvPCombatSigilTemplate*", + "bases": [ + "CombatSigilTemplate", + "SigilTemplate", + "CoreTemplate", + "PropertyClass" + ], + "hash": 1083906118, + "properties": { + "m_behaviors": { + "type": "class BehaviorTemplate*", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1197808594 + }, + "m_sigilName": { + "type": "std::string", + "id": 1, + "offset": 96, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3177657588 + }, + "m_sigilType": { + "type": "std::string", + "id": 2, + "offset": 136, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3177899445 + }, + "m_entryResults": { + "type": "class ResultList*", + "id": 3, + "offset": 184, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3262956108 + }, + "m_requirements": { + "type": "class RequirementList*", + "id": 4, + "offset": 176, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2840985510 + }, + "m_cancelResults": { + "type": "class ResultList*", + "id": 5, + "offset": 192, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3799257120 + }, + "m_completeResults": { + "type": "class ResultList*", + "id": 6, + "offset": 200, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1964258099 + }, + "m_useState": { + "type": "bool", + "id": 7, + "offset": 216, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 683320865 + }, + "m_stateOverride": { + "type": "std::string", + "id": 8, + "offset": 224, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1949715548 + }, + "m_subCircles": { + "type": "class SigilSubCircle*", + "id": 9, + "offset": 256, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2227135493 + }, + "m_engageRadius": { + "type": "float", + "id": 10, + "offset": 304, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1429683718 + }, + "m_battlefieldEffects": { + "type": "class SharedPointer", + "id": 11, + "offset": 312, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1245973515 + }, + "m_playerVictoryCinematic": { + "type": "std::string", + "id": 12, + "offset": 336, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2684536069 + }, + "m_combatMusic": { + "type": "std::string", + "id": 13, + "offset": 368, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3636593682 + }, + "m_prePlanningCinematicOverride": { + "type": "std::string", + "id": 14, + "offset": 400, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2585096390 + }, + "m_planningCinematicOverride": { + "type": "std::string", + "id": 15, + "offset": 432, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3592819999 + }, + "m_shadowThresholdType": { + "type": "enum kShadow_Threshold_Type", + "id": 16, + "offset": 464, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2847763136, + "enum_options": { + "SHADOW_THRESHOLD_MIN": 0, + "SHADOW_THRESHOLD_AVG": 1, + "SHADOW_THRESHOLD_MAX": 2 + } + }, + "m_shadowThresholdFactor": { + "type": "float", + "id": 17, + "offset": 468, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2104355177 + }, + "m_shadowPipRatingFactor": { + "type": "float", + "id": 18, + "offset": 472, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1061434314 + }, + "m_scalarDamagePvP": { + "type": "float", + "id": 19, + "offset": 476, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2195445026 + }, + "m_scalarResistPvP": { + "type": "float", + "id": 20, + "offset": 480, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1947822077 + }, + "m_scalarPiercePvP": { + "type": "float", + "id": 21, + "offset": 484, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 441266907 + }, + "m_scalarDamagePvE": { + "type": "float", + "id": 22, + "offset": 488, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2195445015 + }, + "m_scalarResistPvE": { + "type": "float", + "id": 23, + "offset": 492, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1947822066 + }, + "m_scalarPiercePvE": { + "type": "float", + "id": 24, + "offset": 496, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 441266896 + }, + "m_damageLimitPvP": { + "type": "float", + "id": 25, + "offset": 500, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1990135243 + }, + "m_dK0PvP": { + "type": "float", + "id": 26, + "offset": 504, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 413528556 + }, + "m_dN0PvP": { + "type": "float", + "id": 27, + "offset": 508, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 417086319 + }, + "m_resistLimitPvP": { + "type": "float", + "id": 28, + "offset": 512, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1174512006 + }, + "m_rK0PvP": { + "type": "float", + "id": 29, + "offset": 516, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 961424058 + }, + "m_rN0PvP": { + "type": "float", + "id": 30, + "offset": 520, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 964981821 + }, + "m_damageLimitPvE": { + "type": "float", + "id": 31, + "offset": 524, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1990135232 + }, + "m_dK0PvE": { + "type": "float", + "id": 32, + "offset": 528, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 413528545 + }, + "m_dN0PvE": { + "type": "float", + "id": 33, + "offset": 532, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 417086308 + }, + "m_resistLimitPvE": { + "type": "float", + "id": 34, + "offset": 536, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1174511995 + }, + "m_rK0PvE": { + "type": "float", + "id": 35, + "offset": 540, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 961424047 + }, + "m_rN0PvE": { + "type": "float", + "id": 36, + "offset": 544, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 964981810 + }, + "m_minimumOnSide": { + "type": "int", + "id": 37, + "offset": 552, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 179638776 + }, + "m_minimumError": { + "type": "std::string", + "id": 38, + "offset": 560, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1816923809 + } + } + }, + "652876295": { + "name": "class SoftwareStyle", + "bases": [ + "PropertyClass" + ], + "hash": 652876295, + "properties": { + "m_material": { + "type": "class SharedPointer", + "id": 0, + "offset": 88, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1438090150 + }, + "m_size": { + "type": "class Size", + "id": 1, + "offset": 72, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 251247159 + }, + "m_hotSpot": { + "type": "class Point", + "id": 2, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1849465267 + } + } + }, + "1939150897": { + "name": "class PetGameInfo*", + "bases": [ + "PropertyClass" + ], + "hash": 1939150897, + "properties": { + "m_isWebGame": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 944547943 + }, + "m_name": { + "type": "std::string", + "id": 1, + "offset": 160, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1717359772 + }, + "m_energyCosts": { + "type": "class SharedPointer", + "id": 2, + "offset": 192, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 3378376555 + }, + "m_trackChoices": { + "type": "class SharedPointer", + "id": 3, + "offset": 208, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1548152913 + }, + "m_gameIcon": { + "type": "std::string", + "id": 4, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3229574910 + }, + "m_trackIcons": { + "type": "std::string", + "id": 5, + "offset": 112, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2211683916 + }, + "m_trackToolTips": { + "type": "std::string", + "id": 6, + "offset": 136, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1898819214 + } + } + }, + "225525893": { + "name": "class AutobotQuestManager*", + "bases": [ + "PropertyClass" + ], + "hash": 225525893, + "properties": {} + }, + "1083501083": { + "name": "class AvatarTextureOption*", + "bases": [ + "AvatarOptionBase", + "PropertyClass" + ], + "hash": 1083501083, + "properties": { + "m_conditionFlags": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2483653903 + }, + "m_materialName": { + "type": "std::string", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1878140043 + }, + "m_textures": { + "type": "std::string", + "id": 2, + "offset": 136, + "flags": 131079, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2391848735 + }, + "m_decals": { + "type": "std::string", + "id": 3, + "offset": 160, + "flags": 131079, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1853711975 + }, + "m_decals2": { + "type": "std::string", + "id": 4, + "offset": 184, + "flags": 131079, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2505858617 + }, + "m_tintColors": { + "type": "class Vector3D", + "id": 5, + "offset": 208, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 3059416083 + }, + "m_tintColorNames": { + "type": "std::string", + "id": 6, + "offset": 232, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1803799469 + }, + "m_useTintColor": { + "type": "bool", + "id": 7, + "offset": 256, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1646372318 + } + } + }, + "1515194509": { + "name": "class HousingGameManager*", + "bases": [ + "PropertyClass" + ], + "hash": 1515194509, + "properties": {} + }, + "225389240": { + "name": "class CombatPetXPEffect", + "bases": [ + "GameEffectBase", + "PropertyClass" + ], + "hash": 225389240, + "properties": { + "m_currentTickCount": { + "type": "double", + "id": 0, + "offset": 80, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2533274692 + }, + "m_effectNameID": { + "type": "unsigned int", + "id": 1, + "offset": 96, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1204067144 + }, + "m_bIsOnPet": { + "type": "bool", + "id": 2, + "offset": 73, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 522593303 + }, + "m_originatorID": { + "type": "gid", + "id": 3, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1131810019 + }, + "m_itemSlotID": { + "type": "unsigned int", + "id": 4, + "offset": 112, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1895747595 + }, + "m_internalID": { + "type": "int", + "id": 5, + "offset": 92, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1643137924 + }, + "m_endTime": { + "type": "unsigned int", + "id": 6, + "offset": 88, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 716479635 + }, + "m_lootTableName": { + "type": "std::string", + "id": 7, + "offset": 128, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2333333378 + } + } + }, + "1515417353": { + "name": "class UIScaleConfigEntry", + "bases": [ + "PropertyClass" + ], + "hash": 1515417353, + "properties": { + "m_res": { + "type": "int", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 267047684 + }, + "m_microScale": { + "type": "float", + "id": 1, + "offset": 76, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1618708793 + }, + "m_tinyScale": { + "type": "float", + "id": 2, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 477118371 + }, + "m_smallScale": { + "type": "float", + "id": 3, + "offset": 84, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 491529176 + }, + "m_regularScale": { + "type": "float", + "id": 4, + "offset": 88, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1846588305 + }, + "m_largeScale": { + "type": "float", + "id": 5, + "offset": 92, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 710194858 + }, + "m_hugeScale": { + "type": "float", + "id": 6, + "offset": 96, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1882331208 + } + } + }, + "654524462": { + "name": "class ClientCrownsRewardsSchedule", + "bases": [ + "CrownsRewardsSchedule", + "PropertyClass" + ], + "hash": 654524462, + "properties": {} + }, + "1940079300": { + "name": "class CSRAccessPassInfo", + "bases": [ + "PropertyClass" + ], + "hash": 1940079300, + "properties": { + "m_passName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 23, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2647581395 + }, + "m_hasPass": { + "type": "bool", + "id": 1, + "offset": 104, + "flags": 23, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1743355078 + }, + "m_grantedByRight": { + "type": "bool", + "id": 2, + "offset": 105, + "flags": 23, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 498060849 + } + } + }, + "1083947078": { + "name": "class PvPCombatSigilTemplate", + "bases": [ + "CombatSigilTemplate", + "SigilTemplate", + "CoreTemplate", + "PropertyClass" + ], + "hash": 1083947078, + "properties": { + "m_behaviors": { + "type": "class BehaviorTemplate*", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1197808594 + }, + "m_sigilName": { + "type": "std::string", + "id": 1, + "offset": 96, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3177657588 + }, + "m_sigilType": { + "type": "std::string", + "id": 2, + "offset": 136, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3177899445 + }, + "m_entryResults": { + "type": "class ResultList*", + "id": 3, + "offset": 184, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3262956108 + }, + "m_requirements": { + "type": "class RequirementList*", + "id": 4, + "offset": 176, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2840985510 + }, + "m_cancelResults": { + "type": "class ResultList*", + "id": 5, + "offset": 192, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3799257120 + }, + "m_completeResults": { + "type": "class ResultList*", + "id": 6, + "offset": 200, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1964258099 + }, + "m_useState": { + "type": "bool", + "id": 7, + "offset": 216, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 683320865 + }, + "m_stateOverride": { + "type": "std::string", + "id": 8, + "offset": 224, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1949715548 + }, + "m_subCircles": { + "type": "class SigilSubCircle*", + "id": 9, + "offset": 256, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2227135493 + }, + "m_engageRadius": { + "type": "float", + "id": 10, + "offset": 304, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1429683718 + }, + "m_battlefieldEffects": { + "type": "class SharedPointer", + "id": 11, + "offset": 312, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1245973515 + }, + "m_playerVictoryCinematic": { + "type": "std::string", + "id": 12, + "offset": 336, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2684536069 + }, + "m_combatMusic": { + "type": "std::string", + "id": 13, + "offset": 368, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3636593682 + }, + "m_prePlanningCinematicOverride": { + "type": "std::string", + "id": 14, + "offset": 400, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2585096390 + }, + "m_planningCinematicOverride": { + "type": "std::string", + "id": 15, + "offset": 432, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3592819999 + }, + "m_shadowThresholdType": { + "type": "enum kShadow_Threshold_Type", + "id": 16, + "offset": 464, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2847763136, + "enum_options": { + "SHADOW_THRESHOLD_MIN": 0, + "SHADOW_THRESHOLD_AVG": 1, + "SHADOW_THRESHOLD_MAX": 2 + } + }, + "m_shadowThresholdFactor": { + "type": "float", + "id": 17, + "offset": 468, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2104355177 + }, + "m_shadowPipRatingFactor": { + "type": "float", + "id": 18, + "offset": 472, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1061434314 + }, + "m_scalarDamagePvP": { + "type": "float", + "id": 19, + "offset": 476, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2195445026 + }, + "m_scalarResistPvP": { + "type": "float", + "id": 20, + "offset": 480, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1947822077 + }, + "m_scalarPiercePvP": { + "type": "float", + "id": 21, + "offset": 484, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 441266907 + }, + "m_scalarDamagePvE": { + "type": "float", + "id": 22, + "offset": 488, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2195445015 + }, + "m_scalarResistPvE": { + "type": "float", + "id": 23, + "offset": 492, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1947822066 + }, + "m_scalarPiercePvE": { + "type": "float", + "id": 24, + "offset": 496, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 441266896 + }, + "m_damageLimitPvP": { + "type": "float", + "id": 25, + "offset": 500, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1990135243 + }, + "m_dK0PvP": { + "type": "float", + "id": 26, + "offset": 504, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 413528556 + }, + "m_dN0PvP": { + "type": "float", + "id": 27, + "offset": 508, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 417086319 + }, + "m_resistLimitPvP": { + "type": "float", + "id": 28, + "offset": 512, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1174512006 + }, + "m_rK0PvP": { + "type": "float", + "id": 29, + "offset": 516, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 961424058 + }, + "m_rN0PvP": { + "type": "float", + "id": 30, + "offset": 520, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 964981821 + }, + "m_damageLimitPvE": { + "type": "float", + "id": 31, + "offset": 524, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1990135232 + }, + "m_dK0PvE": { + "type": "float", + "id": 32, + "offset": 528, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 413528545 + }, + "m_dN0PvE": { + "type": "float", + "id": 33, + "offset": 532, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 417086308 + }, + "m_resistLimitPvE": { + "type": "float", + "id": 34, + "offset": 536, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1174511995 + }, + "m_rK0PvE": { + "type": "float", + "id": 35, + "offset": 540, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 961424047 + }, + "m_rN0PvE": { + "type": "float", + "id": 36, + "offset": 544, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 964981810 + }, + "m_minimumOnSide": { + "type": "int", + "id": 37, + "offset": 552, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 179638776 + }, + "m_minimumError": { + "type": "std::string", + "id": 38, + "offset": 560, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1816923809 + } + } + }, + "1939767865": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1939767865, + "properties": { + "m_launchCameraAsset": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1589507199 + }, + "m_launchAltCameraAsset": { + "type": "std::string", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3431958848 + }, + "m_finishCameraAsset": { + "type": "std::string", + "id": 2, + "offset": 136, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2785496869 + }, + "m_powEffectAsset": { + "type": "std::string", + "id": 3, + "offset": 168, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2123980286 + }, + "m_poofEffectAsset": { + "type": "std::string", + "id": 4, + "offset": 200, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1882932092 + }, + "m_startSound": { + "type": "std::string", + "id": 5, + "offset": 232, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2166722354 + }, + "m_winningSound": { + "type": "std::string", + "id": 6, + "offset": 264, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3277436766 + }, + "m_numNearMisses": { + "type": "int", + "id": 7, + "offset": 296, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 367683972 + }, + "m_launchSpinAnim": { + "type": "std::string", + "id": 8, + "offset": 304, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3333397429 + }, + "m_springboardVelocity": { + "type": "float", + "id": 9, + "offset": 336, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1581485377 + }, + "m_springboardHorizontalDistance": { + "type": "float", + "id": 10, + "offset": 340, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1273881447 + }, + "m_launchFadeOutTime": { + "type": "float", + "id": 11, + "offset": 344, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 780794089 + }, + "m_launchFadeInTime": { + "type": "float", + "id": 12, + "offset": 348, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 712951592 + }, + "m_launchCameraType": { + "type": "enum ObstacleCourseLaunchCameraType", + "id": 13, + "offset": 376, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1946138855, + "enum_options": { + "ShowLaunchPoint": 0, + "ShowLaunchDestination": 1 + } + }, + "m_launchDelay": { + "type": "float", + "id": 14, + "offset": 380, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 818941409 + }, + "m_springboardLaunchDelay": { + "type": "float", + "id": 15, + "offset": 384, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 358451836 + }, + "m_pendulumLaunchDelay": { + "type": "float", + "id": 16, + "offset": 388, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 813340139 + }, + "m_startLaunchCamAboveWaterDistance": { + "type": "float", + "id": 17, + "offset": 392, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1138704748 + }, + "m_floatingPenaltyStringKey": { + "type": "std::string", + "id": 18, + "offset": 416, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3048879372 + }, + "m_floatingBonusStringKey": { + "type": "std::string", + "id": 19, + "offset": 448, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2779826934 + }, + "m_floatingReadyStringKey": { + "type": "std::string", + "id": 20, + "offset": 480, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2159650180 + }, + "m_floatingGoStringKey": { + "type": "std::string", + "id": 21, + "offset": 512, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2635517125 + }, + "m_waitForRespawnTime": { + "type": "float", + "id": 22, + "offset": 352, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 989830754 + }, + "m_waitForFanfareTime": { + "type": "float", + "id": 23, + "offset": 356, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1563405653 + }, + "m_finishFadeOutTime": { + "type": "float", + "id": 24, + "offset": 360, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1976783759 + }, + "m_finishFadeInTime": { + "type": "float", + "id": 25, + "offset": 364, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1595172110 + }, + "m_waitForScoreTime": { + "type": "float", + "id": 26, + "offset": 368, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 662585758 + }, + "m_timeTextBlinkRate": { + "type": "float", + "id": 27, + "offset": 372, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1421152647 + }, + "m_maxLaunchVelocity": { + "type": "float", + "id": 28, + "offset": 396, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 187200007 + }, + "m_warningSeconds": { + "type": "int", + "id": 29, + "offset": 400, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1816542623 + }, + "m_simTimeDelta": { + "type": "float", + "id": 30, + "offset": 404, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2151669465 + }, + "m_pushOutVelocity": { + "type": "float", + "id": 31, + "offset": 408, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 586005630 + }, + "m_cameraCollisionRadius": { + "type": "float", + "id": 32, + "offset": 412, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 465605300 + }, + "m_failSound": { + "type": "std::string", + "id": 33, + "offset": 544, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2420690272 + }, + "m_timeWarningSound": { + "type": "std::string", + "id": 34, + "offset": 576, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2539048393 + }, + "m_splashSoundList": { + "type": "class WeightedList", + "id": 35, + "offset": 608, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2522662007 + }, + "m_nearMissSoundList": { + "type": "class WeightedList", + "id": 36, + "offset": 712, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1762129774 + }, + "m_splashCinematicList": { + "type": "class WeightedList", + "id": 37, + "offset": 816, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3318695259 + } + } + }, + "226028732": { + "name": "class ElixirBenefitEffectTemplate*", + "bases": [ + "GameEffectTemplate", + "PropertyClass" + ], + "hash": 226028732, + "properties": { + "m_effectName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2029161513 + }, + "m_effectCategory": { + "type": "std::string", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1852673222 + }, + "m_sortOrder": { + "type": "int", + "id": 2, + "offset": 148, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1411218206 + }, + "m_duration": { + "type": "double", + "id": 3, + "offset": 192, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2727932435 + }, + "m_stackingCategories": { + "type": "std::string", + "id": 4, + "offset": 160, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1774497525 + }, + "m_isPersistent": { + "type": "bool", + "id": 5, + "offset": 153, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 923861920 + }, + "m_bIsOnPet": { + "type": "bool", + "id": 6, + "offset": 154, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 522593303 + }, + "m_isPublic": { + "type": "bool", + "id": 7, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1728439822 + }, + "m_visualEffectAddName": { + "type": "std::string", + "id": 8, + "offset": 200, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3382086694 + }, + "m_visualEffectRemoveName": { + "type": "std::string", + "id": 9, + "offset": 232, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1541697323 + }, + "m_onAddFunctorName": { + "type": "std::string", + "id": 10, + "offset": 280, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1561843107 + }, + "m_onRemoveFunctorName": { + "type": "std::string", + "id": 11, + "offset": 312, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2559017864 + }, + "m_stackingRule": { + "type": "enum STACKING_RULE", + "id": 12, + "offset": 144, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 431568889, + "enum_options": { + "STACKING_ALLOWED": 0, + "STACKING_NOSTACK": 1, + "STACKING_REPLACE": 2 + } + }, + "m_flags": { + "type": "unsigned int", + "id": 13, + "offset": 360, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1005801050, + "enum_options": { + "GardeningBonus": 1, + "DoublePetXP": 2, + "FreeRespec": 4, + "DailyQuestBonus": 8, + "MonsterMagic": 16, + "DailyPvPBonus": 32, + "FishingBonus": 64, + "CraftingBonus": 128, + "SecondChanceChestBonus": 256, + "DoubleScrollOfFortunePoints": 512, + "FasterEnergyRegeneration": 1024 + } + } + } + }, + "225693728": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 225693728, + "properties": { + "m_templateID.m_full": { + "type": "unsigned __int64", + "id": 0, + "offset": 72, + "flags": 33554439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 633907631 + }, + "m_nObjectID": { + "type": "unsigned int", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 748496927 + }, + "m_location": { + "type": "class Vector3D", + "id": 2, + "offset": 84, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2239683611 + }, + "m_orientation": { + "type": "class Vector3D", + "id": 3, + "offset": 96, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2344058766 + }, + "m_fScale": { + "type": "float", + "id": 4, + "offset": 108, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 503137701 + }, + "m_zoneTag": { + "type": "std::string", + "id": 5, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3405382643 + }, + "m_startState": { + "type": "std::string", + "id": 6, + "offset": 184, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2166880458 + }, + "m_overrideName": { + "type": "std::string", + "id": 7, + "offset": 120, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1990707228 + }, + "m_globalDynamic": { + "type": "bool", + "id": 8, + "offset": 116, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1951691017 + }, + "m_bUndetectable": { + "type": "bool", + "id": 9, + "offset": 216, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1907454341 + }, + "m_spawnRequirements": { + "type": "class SharedPointer", + "id": 10, + "offset": 224, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2309120870 + }, + "m_loadingType": { + "type": "enum CoreObjectInfo::LoadingType", + "id": 11, + "offset": 112, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3522422550, + "enum_options": { + "STATIC_CLIENT_SERVER": 0, + "STATIC_CLIENT": 1, + "STATIC_SERVER": 2, + "DYNAMIC_SERVER": 3 + } + } + } + }, + "1517921756": { + "name": "class UpdatePipsCinematicAction", + "bases": [ + "CinematicAction", + "PropertyClass" + ], + "hash": 1517921756, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + } + } + }, + "655212718": { + "name": "class SharedPointer", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 655212718, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + }, + "m_islandTemplateID": { + "type": "unsigned int", + "id": 1, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1751952753 + } + } + }, + "1084771616": { + "name": "class AuctionPriceMods", + "bases": [ + "PropertyClass" + ], + "hash": 1084771616, + "properties": { + "m_numTemplates": { + "type": "int", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 837442809 + }, + "m_sellMod": { + "type": "float", + "id": 1, + "offset": 76, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1154061607 + }, + "m_buyMod": { + "type": "float", + "id": 2, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 387686375 + } + } + }, + "1516851527": { + "name": "class SharedPointer", + "bases": [ + "PlayerAggroBehavior", + "AggroBehavior", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1516851527, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + } + } + }, + "655176455": { + "name": "class ClientPlatformUser*", + "bases": [ + "PropertyClass" + ], + "hash": 655176455, + "properties": { + "m_platformID": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3429548237 + }, + "m_displayName": { + "type": "std::wstring", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2242885711 + } + } + }, + "1940107404": { + "name": "class std::vector >", + "bases": [], + "hash": 1940107404, + "properties": {} + }, + "225893351": { + "name": "class LoyaltyPurchaseLimitCounterEntry*", + "bases": [ + "PropertyClass" + ], + "hash": 225893351, + "properties": { + "m_itemTemplateID": { + "type": "unsigned int", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2190120133 + }, + "m_purchaseCount": { + "type": "int", + "id": 1, + "offset": 76, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 68125278 + } + } + }, + "1084643551": { + "name": "class SharedPointer", + "bases": [ + "GameEffectInfo", + "PropertyClass" + ], + "hash": 1084643551, + "properties": { + "m_effectName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2029161513 + }, + "m_triggerName": { + "type": "std::string", + "id": 1, + "offset": 104, + "flags": 268435463, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3100183568, + "enum_options": { + "__BASECLASS": "CombatTriggerList" + } + }, + "m_triggerDescription": { + "type": "class SharedPointer", + "id": 2, + "offset": 136, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2619655202 + } + } + }, + "654642652": { + "name": "class FXOverrideBehavior", + "bases": [ + "ClientEquipmentBehavior", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 654642652, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_itemList": { + "type": "class SharedPointer", + "id": 1, + "offset": 120, + "flags": 27, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1983655699 + }, + "m_slotList": { + "type": "class SharedPointer", + "id": 2, + "offset": 136, + "flags": 27, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 3213026923 + }, + "m_publicItemList": { + "type": "class SharedPointer", + "id": 3, + "offset": 152, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1693467991 + }, + "m_FXOverrideBehaviorInfo": { + "type": "class FXOverrideBehaviorInfo", + "id": 4, + "offset": 232, + "flags": 27, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1746411198 + } + } + }, + "1943197007": { + "name": "class DestroyShadowCreatureCinematicAction", + "bases": [ + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 1943197007, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + } + } + }, + "226029052": { + "name": "class ElixirBenefitEffectTemplate", + "bases": [ + "GameEffectTemplate", + "PropertyClass" + ], + "hash": 226029052, + "properties": { + "m_effectName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2029161513 + }, + "m_effectCategory": { + "type": "std::string", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1852673222 + }, + "m_sortOrder": { + "type": "int", + "id": 2, + "offset": 148, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1411218206 + }, + "m_duration": { + "type": "double", + "id": 3, + "offset": 192, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2727932435 + }, + "m_stackingCategories": { + "type": "std::string", + "id": 4, + "offset": 160, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1774497525 + }, + "m_isPersistent": { + "type": "bool", + "id": 5, + "offset": 153, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 923861920 + }, + "m_bIsOnPet": { + "type": "bool", + "id": 6, + "offset": 154, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 522593303 + }, + "m_isPublic": { + "type": "bool", + "id": 7, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1728439822 + }, + "m_visualEffectAddName": { + "type": "std::string", + "id": 8, + "offset": 200, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3382086694 + }, + "m_visualEffectRemoveName": { + "type": "std::string", + "id": 9, + "offset": 232, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1541697323 + }, + "m_onAddFunctorName": { + "type": "std::string", + "id": 10, + "offset": 280, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1561843107 + }, + "m_onRemoveFunctorName": { + "type": "std::string", + "id": 11, + "offset": 312, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2559017864 + }, + "m_stackingRule": { + "type": "enum STACKING_RULE", + "id": 12, + "offset": 144, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 431568889, + "enum_options": { + "STACKING_ALLOWED": 0, + "STACKING_NOSTACK": 1, + "STACKING_REPLACE": 2 + } + }, + "m_flags": { + "type": "unsigned int", + "id": 13, + "offset": 360, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1005801050, + "enum_options": { + "GardeningBonus": 1, + "DoublePetXP": 2, + "FreeRespec": 4, + "DailyQuestBonus": 8, + "MonsterMagic": 16, + "DailyPvPBonus": 32, + "FishingBonus": 64, + "CraftingBonus": 128, + "SecondChanceChestBonus": 256, + "DoubleScrollOfFortunePoints": 512, + "FasterEnergyRegeneration": 1024 + } + } + } + }, + "1519530392": { + "name": "class ObstacleCourseSpeedUpBehavior", + "bases": [ + "ObstacleCourseObstaclePathBase", + "ObstacleCourseObstacleBehavior", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1519530392, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + } + } + }, + "1941788681": { + "name": "class ObstacleCourseSpeedUpBehaviorClient*", + "bases": [ + "ObstacleCourseSpeedUpBehavior", + "ObstacleCourseObstaclePathBase", + "ObstacleCourseObstacleBehavior", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1941788681, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + } + } + }, + "1085344653": { + "name": "class ClearBottomTeamCinematicAction*", + "bases": [ + "CinematicAction", + "PropertyClass" + ], + "hash": 1085344653, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_interpDuration": { + "type": "float", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237711951 + } + } + }, + "1518539149": { + "name": "class TeamHelpVolunteerInfo*", + "bases": [ + "PropertyClass" + ], + "hash": 1518539149, + "properties": { + "m_worldID": { + "type": "unsigned int", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 397177058 + }, + "m_flags": { + "type": "unsigned char", + "id": 1, + "offset": 76, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1431998045 + } + } + }, + "655650935": { + "name": "class ClientRotateActorCinematicAction", + "bases": [ + "RotateActorCinematicAction", + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 655650935, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + }, + "m_deltaYaw": { + "type": "float", + "id": 2, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1518691890 + } + } + }, + "1941319049": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1941319049, + "properties": { + "m_goalCount": { + "type": "unsigned int", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 985669209 + }, + "m_lootTable": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2539512673 + }, + "m_icon": { + "type": "std::string", + "id": 2, + "offset": 112, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1717182340 + }, + "m_featuredTemplateID": { + "type": "unsigned int", + "id": 3, + "offset": 128, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 258965446 + }, + "m_badgeName": { + "type": "std::string", + "id": 4, + "offset": 144, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3002948047 + }, + "m_rewardType": { + "type": "enum ClassProjectRewardType", + "id": 5, + "offset": 176, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3545827746, + "enum_options": { + "CPRT_Everyone": 0, + "CPRT_Subscriber": 1, + "CPRT_Purchased": 2 + } + }, + "m_overrideTitle": { + "type": "std::string", + "id": 6, + "offset": 184, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2739145597 + }, + "m_testLunari": { + "type": "unsigned int", + "id": 7, + "offset": 216, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1088922456 + }, + "m_crownsCostToAdvance": { + "type": "int", + "id": 8, + "offset": 220, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 304642756 + } + } + }, + "1518184489": { + "name": "class SharedPointer", + "bases": [ + "ClientTutorial", + "PropertyClass" + ], + "hash": 1518184489, + "properties": { + "m_stage": { + "type": "unsigned short", + "id": 0, + "offset": 74, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": true, + "pointer": false, + "hash": 1363685500 + } + } + }, + "1940964455": { + "name": "class CinematicSoundEmitterInfo", + "bases": [ + "PropertyClass" + ], + "hash": 1940964455, + "properties": { + "m_volume": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1162855023 + }, + "m_loopCount": { + "type": "int", + "id": 1, + "offset": 76, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 865634717 + }, + "m_priority": { + "type": "int", + "id": 2, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1235205852 + }, + "m_progression": { + "type": "enum CinematicSoundEmitterInfo::Progression", + "id": 3, + "offset": 84, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2562723160, + "enum_options": { + "Sequence": 0, + "Random": 1, + "SequenceOnceOnly": 2, + "RandomNoRepeat": 3 + } + }, + "m_progressMin": { + "type": "float", + "id": 4, + "offset": 88, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1497550192 + }, + "m_progressMax": { + "type": "float", + "id": 5, + "offset": 92, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1497549938 + }, + "m_trackFilenameList": { + "type": "std::string", + "id": 6, + "offset": 96, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2531081709 + }, + "m_category": { + "type": "enum CinematicSoundEmitterInfo::AudioCategory", + "id": 7, + "offset": 120, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2525629195, + "enum_options": { + "AudioCategory_Irrelevent": 0, + "AudioCategory_Accoustic": 1, + "AudioCategory_Noise": 2, + "AudioCategory_Music": 3, + "AudioCategory_MusicAtSFXVolume": 4, + "AudioCategory_Dialog": 5, + "AudioCategory_UI": 6, + "AudioCategory_NoiseAtMusicVolume": 7 + } + }, + "m_name": { + "type": "std::string", + "id": 8, + "offset": 144, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1717359772 + }, + "m_useClientLocation": { + "type": "bool", + "id": 9, + "offset": 176, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 98585784 + }, + "m_fadeInDuration": { + "type": "float", + "id": 10, + "offset": 124, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 770484100 + }, + "m_fadeOutDuration": { + "type": "float", + "id": 11, + "offset": 128, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 666963557 + }, + "m_wetReverb": { + "type": "float", + "id": 12, + "offset": 136, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1024635181 + }, + "m_dryReverb": { + "type": "float", + "id": 13, + "offset": 132, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 403787084 + }, + "m_isStreamed": { + "type": "bool", + "id": 14, + "offset": 140, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 906929764 + } + } + }, + "226964966": { + "name": "class ShadowPipRule*", + "bases": [ + "PropertyClass" + ], + "hash": 226964966, + "properties": { + "m_roundList": { + "type": "class ShadowPipRule::RoundPercent", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2566333441 + } + } + }, + "226964961": { + "name": "class ShadowPipRule", + "bases": [ + "PropertyClass" + ], + "hash": 226964961, + "properties": { + "m_roundList": { + "type": "class ShadowPipRule::RoundPercent", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2566333441 + } + } + }, + "1086685419": { + "name": "class FriendlyPlayerWorldList", + "bases": [ + "PropertyClass" + ], + "hash": 1086685419, + "properties": { + "m_friendlyPlayerWorldList": { + "type": "unsigned int", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 780811899 + } + } + }, + "1518327757": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1518327757, + "properties": { + "m_eventName": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3493260286 + }, + "m_startTime": { + "type": "unsigned __int64", + "id": 1, + "offset": 112, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1859690486 + }, + "m_endTime": { + "type": "unsigned __int64", + "id": 2, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 977798847 + }, + "m_active": { + "type": "bool", + "id": 3, + "offset": 128, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 239335471 + } + } + }, + "656613322": { + "name": "class JewelVaultBehaviorBase*", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 656613322, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_jewelList": { + "type": "unsigned int", + "id": 1, + "offset": 112, + "flags": 65543, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1839384000 + } + } + }, + "226779658": { + "name": "class CombatTimerListObj", + "bases": [ + "PropertyClass" + ], + "hash": 226779658, + "properties": { + "m_timeList": { + "type": "class ParticipantParameter", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2652015083 + }, + "m_duelID.m_full": { + "type": "unsigned __int64", + "id": 1, + "offset": 88, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1024980477 + } + } + }, + "1085999469": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1085999469, + "properties": { + "m_unlockTriggerTemplateID": { + "type": "unsigned int", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1721811670 + }, + "m_state": { + "type": "unsigned int", + "id": 1, + "offset": 76, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1021505934 + }, + "m_reagentCount1": { + "type": "unsigned int", + "id": 2, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2011197517 + }, + "m_reagentCount2": { + "type": "unsigned int", + "id": 3, + "offset": 84, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2011197518 + }, + "m_reagentCount3": { + "type": "unsigned int", + "id": 4, + "offset": 88, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2011197519 + }, + "m_reagentCount4": { + "type": "unsigned int", + "id": 5, + "offset": 92, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2011197520 + }, + "m_reagentCount5": { + "type": "unsigned int", + "id": 6, + "offset": 96, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2011197521 + }, + "m_reagentCount6": { + "type": "unsigned int", + "id": 7, + "offset": 100, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2011197522 + } + } + }, + "655912620": { + "name": "class SharedPointer", + "bases": [ + "Window", + "PropertyClass" + ], + "hash": 655912620, + "properties": { + "m_sName": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306437263 + }, + "m_Children": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621225959 + }, + "m_Style": { + "type": "unsigned int", + "id": 2, + "offset": 152, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "SCALE_CHILDREN": 2, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "FOCUS_LOCKED": 64, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152 + } + }, + "m_Flags": { + "type": "unsigned int", + "id": 3, + "offset": 156, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } + }, + "m_Window": { + "type": "class Rect", + "id": 4, + "offset": 160, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3105139380 + }, + "m_fTargetAlpha": { + "type": "float", + "id": 5, + "offset": 212, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1809129834 + }, + "m_fDisabledAlpha": { + "type": "float", + "id": 6, + "offset": 216, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1389987675 + }, + "m_fAlpha": { + "type": "float", + "id": 7, + "offset": 208, + "flags": 65671, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 482130755 + }, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3623628394 + }, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2102211316 + }, + "m_sScript": { + "type": "std::string", + "id": 10, + "offset": 352, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1846695875 + }, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3389835433 + }, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547159940 + }, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513510520 + }, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3091503757 + } + } + }, + "1941706761": { + "name": "class ObstacleCourseSpeedUpBehaviorClient", + "bases": [ + "ObstacleCourseSpeedUpBehavior", + "ObstacleCourseObstaclePathBase", + "ObstacleCourseObstacleBehavior", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1941706761, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + } + } + }, + "1085902377": { + "name": "class SharedPointer", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1085902377, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + } + } + }, + "1518803796": { + "name": "enum LeashOffsetOverride::LeashOffsetType", + "bases": [], + "hash": 1518803796, + "properties": {} + }, + "1518539917": { + "name": "class TeamHelpVolunteerInfo", + "bases": [ + "PropertyClass" + ], + "hash": 1518539917, + "properties": { + "m_worldID": { + "type": "unsigned int", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 397177058 + }, + "m_flags": { + "type": "unsigned char", + "id": 1, + "offset": 76, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1431998045 + } + } + }, + "656654282": { + "name": "class JewelVaultBehaviorBase", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 656654282, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_jewelList": { + "type": "unsigned int", + "id": 1, + "offset": 112, + "flags": 65543, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1839384000 + } + } + }, + "1942745787": { + "name": "class AtticObject", + "bases": [ + "PropertyClass" + ], + "hash": 1942745787, + "properties": {} + }, + "227091653": { + "name": "class BlobDefinition*", + "bases": [ + "PropertyClass" + ], + "hash": 227091653, + "properties": { + "m_type": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1717601629 + }, + "m_subType": { + "type": "std::string", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3175052615 + }, + "m_versionNumber": { + "type": "unsigned int", + "id": 2, + "offset": 136, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1265259452 + }, + "m_packageNumber": { + "type": "int", + "id": 3, + "offset": 140, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1934060719 + }, + "m_associatedGID": { + "type": "gid", + "id": 4, + "offset": 144, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 148404716 + }, + "m_epochDays": { + "type": "unsigned int", + "id": 5, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1631557837 + } + } + }, + "1086516126": { + "name": "class SharedPointer", + "bases": [ + "Result", + "PropertyClass" + ], + "hash": 1086516126, + "properties": {} + }, + "1942444569": { + "name": "class NamedCharacterElement", + "bases": [ + "PropertyClass" + ], + "hash": 1942444569, + "properties": { + "m_name": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1717359772 + }, + "m_list": { + "type": "class CharacterElement*", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 646909524 + } + } + }, + "227091557": { + "name": "class BlobDefinition", + "bases": [ + "PropertyClass" + ], + "hash": 227091557, + "properties": { + "m_type": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1717601629 + }, + "m_subType": { + "type": "std::string", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3175052615 + }, + "m_versionNumber": { + "type": "unsigned int", + "id": 2, + "offset": 136, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1265259452 + }, + "m_packageNumber": { + "type": "int", + "id": 3, + "offset": 140, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1934060719 + }, + "m_associatedGID": { + "type": "gid", + "id": 4, + "offset": 144, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 148404716 + }, + "m_epochDays": { + "type": "unsigned int", + "id": 5, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1631557837 + } + } + }, + "1942412211": { + "name": "class SharedPointer", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1942412211, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_spellList": { + "type": "class SharedPointer", + "id": 1, + "offset": 120, + "flags": 27, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2181913740 + } + } + }, + "660713128": { + "name": "class FishingLevelControl*", + "bases": [ + "Window", + "PropertyClass" + ], + "hash": 660713128, + "properties": { + "m_sName": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306437263 + }, + "m_Children": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 65667, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621225959 + }, + "m_Style": { + "type": "unsigned int", + "id": 2, + "offset": 152, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "SCALE_CHILDREN": 2, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "FOCUS_LOCKED": 64, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152 + } + }, + "m_Flags": { + "type": "unsigned int", + "id": 3, + "offset": 156, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } + }, + "m_Window": { + "type": "class Rect", + "id": 4, + "offset": 160, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3105139380 + }, + "m_fTargetAlpha": { + "type": "float", + "id": 5, + "offset": 212, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1809129834 + }, + "m_fDisabledAlpha": { + "type": "float", + "id": 6, + "offset": 216, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1389987675 + }, + "m_fAlpha": { + "type": "float", + "id": 7, + "offset": 208, + "flags": 65671, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 482130755 + }, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3623628394 + }, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2102211316 + }, + "m_sScript": { + "type": "std::string", + "id": 10, + "offset": 352, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1846695875 + }, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3389835433 + }, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547159940 + }, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513510520 + }, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3091503757 + } + } + }, + "1086776192": { + "name": "class AdvPvPEloRecordClient*", + "bases": [ + "AdvPvPEloRecord", + "PropertyClass" + ], + "hash": 1086776192, + "properties": { + "m_eloRecordID": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 16777279, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 832082468 + }, + "m_leagueID": { + "type": "unsigned int", + "id": 1, + "offset": 80, + "flags": 33554495, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 692361645 + }, + "m_seasonID": { + "type": "unsigned int", + "id": 2, + "offset": 84, + "flags": 33554495, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 535260643 + }, + "m_startTime": { + "type": "unsigned int", + "id": 3, + "offset": 88, + "flags": 33554495, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1598371274 + }, + "m_ended": { + "type": "bool", + "id": 4, + "offset": 92, + "flags": 33554495, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 795768915 + }, + "m_elo": { + "type": "int", + "id": 5, + "offset": 96, + "flags": 33554495, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 267033754 + }, + "m_rankIndex": { + "type": "int", + "id": 6, + "offset": 100, + "flags": 33554495, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 716259486 + }, + "m_wins": { + "type": "int", + "id": 7, + "offset": 104, + "flags": 33554495, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 219992347 + }, + "m_losses": { + "type": "int", + "id": 8, + "offset": 108, + "flags": 33554495, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 681549075 + }, + "m_draws": { + "type": "int", + "id": 9, + "offset": 112, + "flags": 33554495, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 792242907 + } + } + }, + "1519858072": { + "name": "class ObstacleCourseSpeedUpBehavior*", + "bases": [ + "ObstacleCourseObstaclePathBase", + "ObstacleCourseObstacleBehavior", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1519858072, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + } + } + }, + "658890583": { + "name": "class ClientZoneTokenCount*", + "bases": [ + "ZoneTokenCount", + "ZoneTokenBase", + "PropertyClass" + ], + "hash": 658890583, + "properties": { + "m_debugName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3553984419 + }, + "m_adjectiveList": { + "type": "std::string", + "id": 1, + "offset": 104, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 3195213318 + }, + "m_icon": { + "type": "std::string", + "id": 2, + "offset": 120, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1717182340 + }, + "m_iconBW": { + "type": "std::string", + "id": 3, + "offset": 152, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2047461085 + }, + "m_description": { + "type": "std::string", + "id": 4, + "offset": 184, + "flags": 8388639, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1649374815 + }, + "m_displayMode": { + "type": "enum ZTDisplayMode", + "id": 5, + "offset": 216, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2216526410, + "enum_options": { + "ZTDM_Shown": 0, + "ZTDM_Discoverable": 1, + "ZTDM_Hidden": 2 + } + }, + "m_storage": { + "type": "enum ZTStorage", + "id": 6, + "offset": 220, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2290454852, + "enum_options": { + "ZTS_Player": 0, + "ZTS_Zone": 1 + } + }, + "m_onEnable": { + "type": "class SharedPointer", + "id": 7, + "offset": 224, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2591736864 + }, + "m_onDiscover": { + "type": "class SharedPointer", + "id": 8, + "offset": 240, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2826026872 + }, + "m_onDisable": { + "type": "class SharedPointer", + "id": 9, + "offset": 256, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1860656717 + }, + "m_sourceID": { + "type": "gid", + "id": 10, + "offset": 272, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1134700470 + }, + "m_inZone": { + "type": "bool", + "id": 11, + "offset": 280, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 564535654 + }, + "m_enabled": { + "type": "bool", + "id": 12, + "offset": 281, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 504506718 + }, + "m_discovered": { + "type": "bool", + "id": 13, + "offset": 282, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2060478331 + }, + "m_minValue": { + "type": "int", + "id": 14, + "offset": 288, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1508523611 + }, + "m_startValue": { + "type": "int", + "id": 15, + "offset": 292, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 672067813 + }, + "m_maxValue": { + "type": "int", + "id": 16, + "offset": 296, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 158068381 + }, + "m_curValue": { + "type": "int", + "id": 17, + "offset": 300, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1147627809 + }, + "m_counterType": { + "type": "enum ZTCounterType", + "id": 18, + "offset": 304, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1417526179, + "enum_options": { + "ZTCT_Full": 0, + "ZTCT_Count": 1, + "ZTCT_Meter": 2, + "ZTCT_Hidden": 3 + } + }, + "m_onIncrease": { + "type": "class SharedPointer", + "id": 19, + "offset": 312, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2723490243 + }, + "m_onDecrease": { + "type": "class SharedPointer", + "id": 20, + "offset": 328, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1346363029 + }, + "m_onEmpty": { + "type": "class SharedPointer", + "id": 21, + "offset": 344, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1658398600 + }, + "m_onFull": { + "type": "class SharedPointer", + "id": 22, + "offset": 360, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1955555436 + } + } + }, + "658249692": { + "name": "class WhirlyBurlyMovementData", + "bases": [ + "PropertyClass" + ], + "hash": 658249692, + "properties": { + "m_unitType": { + "type": "unsigned char", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1498103218 + }, + "m_cardUsed": { + "type": "unsigned int", + "id": 1, + "offset": 76, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1315653400 + }, + "m_movementTurnTime": { + "type": "unsigned char", + "id": 2, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1100876371 + }, + "m_blueTeamScore": { + "type": "unsigned int", + "id": 3, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1519259416 + }, + "m_orangeTeamScore": { + "type": "unsigned int", + "id": 4, + "offset": 108, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 988508012 + }, + "m_redTeamScore": { + "type": "unsigned int", + "id": 5, + "offset": 112, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1672048811 + }, + "m_unitMovementList": { + "type": "unsigned int", + "id": 6, + "offset": 88, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 687999892 + } + } + }, + "1942445849": { + "name": "class NamedCharacterElement*", + "bases": [ + "PropertyClass" + ], + "hash": 1942445849, + "properties": { + "m_name": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1717359772 + }, + "m_list": { + "type": "class CharacterElement*", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 646909524 + } + } + }, + "229887992": { + "name": "class SharedPointer", + "bases": [ + "GameEffectTimerTrigger", + "PropertyClass" + ], + "hash": 229887992, + "properties": { + "m_radius": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 989410271 + }, + "m_triggerT": { + "type": "float", + "id": 1, + "offset": 76, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2138083583 + }, + "m_popupKey": { + "type": "std::string", + "id": 2, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3434427096 + } + } + }, + "1520229545": { + "name": "class FontMapping", + "bases": [ + "PropertyClass" + ], + "hash": 1520229545, + "properties": { + "m_symbol": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2464821841 + }, + "m_face": { + "type": "std::string", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1717071946 + }, + "m_italic": { + "type": "bool", + "id": 2, + "offset": 136, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 571899305 + }, + "m_bold": { + "type": "bool", + "id": 3, + "offset": 137, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 221725300 + } + } + }, + "658030730": { + "name": "class CustomNameOptions*", + "bases": [ + "PropertyClass" + ], + "hash": 658030730, + "properties": { + "m_customNameMaxLength": { + "type": "unsigned int", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1680359153 + }, + "m_customNameMinLength": { + "type": "unsigned int", + "id": 1, + "offset": 76, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1148225135 + }, + "m_subStringNameExceptions": { + "type": "std::wstring", + "id": 2, + "offset": 88, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2526168028 + }, + "m_singleCharExceptions": { + "type": "std::wstring", + "id": 3, + "offset": 112, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1648919482 + }, + "m_caseInsensitive": { + "type": "bool", + "id": 4, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 182050912 + }, + "m_charSetCosts": { + "type": "class SharedPointer", + "id": 5, + "offset": 184, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1980234615 + } + } + }, + "228612715": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 228612715, + "properties": { + "m_instanceList": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2930750483 + } + } + }, + "1122797009": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1122797009, + "properties": { + "m_list": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 551684466 + } + } + }, + "228521051": { + "name": "class StartBacklashRotationEffectCinematicAction", + "bases": [ + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 228521051, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + } + } + }, + "1105349579": { + "name": "class Rect", + "bases": [], + "hash": 1105349579, + "properties": {} + }, + "1943074942": { + "name": "class SG_GameActionClient_PlayEffect*", + "bases": [ + "SG_GameAction_PlayEffect", + "SG_GameAction", + "PropertyClass" + ], + "hash": 1943074942, + "properties": { + "m_target": { + "type": "enum SG_GameAction::SG_Target", + "id": 0, + "offset": 72, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1166870973, + "enum_options": { + "Target_Ball": 0, + "Target_Self": 1, + "Target_Connections": 2, + "__DEFAULT": "Target_Ball" + } + }, + "m_graphicArguments": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1656480079 + }, + "m_fMinimumTime": { + "type": "float", + "id": 2, + "offset": 144, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1516804616 + }, + "m_bDisplaysScore": { + "type": "bool", + "id": 3, + "offset": 148, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 722455866 + }, + "m_bPlaysPointsSounds": { + "type": "bool", + "id": 4, + "offset": 149, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 717919607 + } + } + }, + "1097734602": { + "name": "class StageBacklashEffectCinematicAction*", + "bases": [ + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 1097734602, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + } + } + }, + "1521569450": { + "name": "class BracketMatchResult", + "bases": [ + "PropertyClass" + ], + "hash": 1521569450, + "properties": { + "m_opponents": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1257835102 + }, + "m_points": { + "type": "unsigned int", + "id": 1, + "offset": 88, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1049128778 + }, + "m_matchResult": { + "type": "unsigned int", + "id": 2, + "offset": 92, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1912880793 + }, + "m_competingForPlace": { + "type": "unsigned int", + "id": 3, + "offset": 100, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1156208831 + } + } + }, + "658839169": { + "name": "class ReleaseCinematicStageTemplate*", + "bases": [ + "CinematicStageTemplate", + "PropertyClass" + ], + "hash": 658839169, + "properties": { + "m_name": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1717359772 + }, + "m_duration": { + "type": "float", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 920323453 + }, + "m_actions": { + "type": "class SharedPointer", + "id": 2, + "offset": 112, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1380578687 + }, + "m_stageRelationships": { + "type": "class SharedPointer", + "id": 3, + "offset": 128, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 499983354 + }, + "m_sound": { + "type": "std::string", + "id": 4, + "offset": 152, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2307644996 + } + } + }, + "1093377563": { + "name": "class SharedPointer", + "bases": [ + "ServiceOptionBase", + "PropertyClass" + ], + "hash": 1093377563, + "properties": { + "m_serviceName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2206028813 + }, + "m_iconKey": { + "type": "std::string", + "id": 1, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2457138637 + }, + "m_displayKey": { + "type": "std::string", + "id": 2, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3023276954 + }, + "m_serviceIndex": { + "type": "unsigned int", + "id": 3, + "offset": 204, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2103126710 + }, + "m_forceInteract": { + "type": "bool", + "id": 4, + "offset": 200, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1705789564 + }, + "m_teamUpAllowed": { + "type": "int", + "id": 5, + "offset": 216, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1016118542 + }, + "m_successZone": { + "type": "std::string", + "id": 6, + "offset": 224, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1516681392 + }, + "m_isCluster": { + "type": "bool", + "id": 7, + "offset": 256, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1183074257 + }, + "m_requiresSkeletonKey": { + "type": "int", + "id": 8, + "offset": 220, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1735968152 + }, + "m_monthlyGauntletFields": { + "type": "class SharedPointer", + "id": 9, + "offset": 264, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2875746802 + }, + "m_advancedModeFields": { + "type": "class SharedPointer", + "id": 10, + "offset": 280, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3117836827 + } + } + }, + "1521374502": { + "name": "class ClientBGPlayerBehavior", + "bases": [ + "BGPlayerBehavior", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1521374502, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + } + } + }, + "658511489": { + "name": "class ReleaseCinematicStageTemplate", + "bases": [ + "CinematicStageTemplate", + "PropertyClass" + ], + "hash": 658511489, + "properties": { + "m_name": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1717359772 + }, + "m_duration": { + "type": "float", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 920323453 + }, + "m_actions": { + "type": "class SharedPointer", + "id": 2, + "offset": 112, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1380578687 + }, + "m_stageRelationships": { + "type": "class SharedPointer", + "id": 3, + "offset": 128, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 499983354 + }, + "m_sound": { + "type": "std::string", + "id": 4, + "offset": 152, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2307644996 + } + } + }, + "229800752": { + "name": "class SharedPointer", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 229800752, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_maxTempStartingPips": { + "type": "int", + "id": 1, + "offset": 112, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 997576222 + }, + "m_maxTempStartingPowerPips": { + "type": "int", + "id": 2, + "offset": 116, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 31848011 + } + } + }, + "1089728526": { + "name": "class BattleCardPurchaseInfo", + "bases": [ + "PropertyClass" + ], + "hash": 1089728526, + "properties": { + "m_spellName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2688485244 + }, + "m_maxCopies": { + "type": "int", + "id": 1, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 191619875 + } + } + }, + "1520882401": { + "name": "class ActorBody", + "bases": [ + "GamebryoBody", + "Body", + "PropertyClass" + ], + "hash": 1520882401, + "properties": { + "m_position": { + "type": "class Vector3D", + "id": 0, + "offset": 88, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3697900983 + }, + "m_pitch": { + "type": "float", + "id": 1, + "offset": 100, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 896371695 + }, + "m_roll": { + "type": "float", + "id": 2, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 310020272 + }, + "m_yaw": { + "type": "float", + "id": 3, + "offset": 108, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 357256328 + }, + "m_fHeight": { + "type": "float", + "id": 4, + "offset": 132, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 401539638 + }, + "m_scale": { + "type": "float", + "id": 5, + "offset": 112, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 899693439 + } + } + }, + "1945366566": { + "name": "class ClientFadeMusicSoundCinematicAction", + "bases": [ + "FadeMusicSoundCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 1945366566, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_fadeDuration": { + "type": "float", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1402536557 + }, + "m_fadeToGain": { + "type": "float", + "id": 2, + "offset": 84, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1724568201 + } + } + }, + "228794493": { + "name": "class ResTeleport", + "bases": [ + "Result", + "PropertyClass" + ], + "hash": 228794493, + "properties": {} + }, + "1088237445": { + "name": "class ReqCanAddExpansion", + "bases": [ + "Requirement", + "PropertyClass" + ], + "hash": 1088237445, + "properties": { + "m_applyNOT": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1746328074, + "enum_options": { + "__DEFAULT": 0 + } + }, + "m_operator": { + "type": "enum Requirement::Operator", + "id": 1, + "offset": 76, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2672792317, + "enum_options": { + "ROP_AND": 0, + "ROP_OR": 1, + "__DEFAULT": "ROP_AND" + } + }, + "m_category": { + "type": "enum ExpansionData::Category", + "id": 2, + "offset": 80, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2705349254, + "enum_options": { + "ExpansionData::EDC_Bank": 0, + "ExpansionData::EDC_FriendsList": 1 + } + } + } + }, + "1520878571": { + "name": "class SharedPointer", + "bases": [ + "TreasureBookBehavior", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1520878571, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_spellList": { + "type": "class SharedPointer", + "id": 1, + "offset": 120, + "flags": 27, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2181913740 + } + } + }, + "1945284646": { + "name": "class ClientFadeMusicSoundCinematicAction*", + "bases": [ + "FadeMusicSoundCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 1945284646, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_fadeDuration": { + "type": "float", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1402536557 + }, + "m_fadeToGain": { + "type": "float", + "id": 2, + "offset": 84, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1724568201 + } + } + }, + "1087718304": { + "name": "class HousingObjectTextureRemap*", + "bases": [ + "PropertyClass" + ], + "hash": 1087718304, + "properties": { + "m_tagName": { + "type": "unsigned int", + "id": 0, + "offset": 72, + "flags": 27, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 255719658 + }, + "m_textureFilename": { + "type": "unsigned int", + "id": 1, + "offset": 76, + "flags": 27, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 922351199 + } + } + }, + "1944659735": { + "name": "class SharedPointer", + "bases": [ + "LootInfo", + "LootInfoBase", + "PropertyClass" + ], + "hash": 1944659735, + "properties": { + "m_lootType": { + "type": "enum LootInfo::LOOT_TYPE", + "id": 0, + "offset": 72, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1591891442, + "enum_options": { + "LOOT_TYPE_NONE": 0, + "LOOT_TYPE_GOLD": 1, + "LOOT_TYPE_MANA": 2, + "LOOT_TYPE_ITEM": 3, + "LOOT_TYPE_TREASURE_CARD": 4, + "LOOT_TYPE_MAGIC_XP": 5, + "LOOT_TYPE_ADD_SPELL": 6, + "LOOT_TYPE_MAX_HEALTH": 7, + "LOOT_TYPE_MAX_GOLD": 8, + "LOOT_TYPE_MAX_MANA": 9, + "LOOT_TYPE_MAX_POTION": 10, + "LOOT_TYPE_TRAINING_POINTS": 11, + "LOOT_TYPE_RECIPE": 12, + "LOOT_TYPE_CRAFTING_SLOT": 13, + "LOOT_TYPE_REAGENT": 14, + "LOOT_TYPE_PETSNACK": 15, + "LOOT_TYPE_GARDENING_XP": 16, + "LOOT_TYPE_PET_XP": 17, + "LOOT_TYPE_TREASURE_TABLE": 18, + "LOOT_TYPE_ARENA_POINTS": 19, + "LOOT_TYPE_ARENA_BONUS_POINTS": 20, + "LOOT_TYPE_GROUP": 21, + "LOOT_TYPE_FISHING_XP": 22, + "LOOT_TYPE_EVENT_CURRENCY_1": 24, + "LOOT_TYPE_EVENT_CURRENCY_2": 25, + "LOOT_TYPE_PVP_CURRENCY": 26, + "LOOT_TYPE_PVP_CURRENCY_BONUS": 27, + "LOOT_TYPE_PVP_TOURNEY_CURRENCY": 28, + "LOOT_TYPE_PVP_TOURNEY_CURRENCY_BONUS": 29, + "LOOT_TYPE_FURNITURE_ESSENCE": 30 + } + }, + "m_arenaBonusPointsAmount": { + "type": "int", + "id": 1, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 774521529 + } + } + }, + "1087281994": { + "name": "class ProvideSpellEffectTemplate*", + "bases": [ + "GameEffectTemplate", + "PropertyClass" + ], + "hash": 1087281994, + "properties": { + "m_effectName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2029161513 + }, + "m_effectCategory": { + "type": "std::string", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1852673222 + }, + "m_sortOrder": { + "type": "int", + "id": 2, + "offset": 148, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1411218206 + }, + "m_duration": { + "type": "double", + "id": 3, + "offset": 192, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2727932435 + }, + "m_stackingCategories": { + "type": "std::string", + "id": 4, + "offset": 160, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1774497525 + }, + "m_isPersistent": { + "type": "bool", + "id": 5, + "offset": 153, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 923861920 + }, + "m_bIsOnPet": { + "type": "bool", + "id": 6, + "offset": 154, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 522593303 + }, + "m_isPublic": { + "type": "bool", + "id": 7, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1728439822 + }, + "m_visualEffectAddName": { + "type": "std::string", + "id": 8, + "offset": 200, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3382086694 + }, + "m_visualEffectRemoveName": { + "type": "std::string", + "id": 9, + "offset": 232, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1541697323 + }, + "m_onAddFunctorName": { + "type": "std::string", + "id": 10, + "offset": 280, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1561843107 + }, + "m_onRemoveFunctorName": { + "type": "std::string", + "id": 11, + "offset": 312, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2559017864 + }, + "m_stackingRule": { + "type": "enum STACKING_RULE", + "id": 12, + "offset": 144, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 431568889, + "enum_options": { + "STACKING_ALLOWED": 0, + "STACKING_NOSTACK": 1, + "STACKING_REPLACE": 2 + } + }, + "m_spellName": { + "type": "std::string", + "id": 13, + "offset": 360, + "flags": 268435463, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2688485244, + "enum_options": { + "__BASECLASS": "SpellTemplate" + } + }, + "m_numSpells": { + "type": "int", + "id": 14, + "offset": 392, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1269498237 + } + } + }, + "659748037": { + "name": "class SharedPointer", + "bases": [ + "MoveController::MoveCommand", + "PropertyClass" + ], + "hash": 659748037, + "properties": { + "m_fRoll": { + "type": "float", + "id": 0, + "offset": 88, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 883680790 + } + } + }, + "1944344140": { + "name": "class SharedPointer", + "bases": [ + "ObstacleCourseObstaclePathBaseTemplate", + "ObstacleCourseObstacleBehaviorTemplate", + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 1944344140, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + }, + "m_rate": { + "type": "float", + "id": 1, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 310005283 + }, + "m_penaltyTime": { + "type": "float", + "id": 2, + "offset": 124, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2083389507 + }, + "m_totalObstacleSize": { + "type": "class Vector3D", + "id": 3, + "offset": 128, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2379878414 + }, + "m_bounds": { + "type": "class Vector3D", + "id": 4, + "offset": 152, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1948083181 + }, + "m_orientToPath": { + "type": "bool", + "id": 5, + "offset": 176, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 655036148 + }, + "m_heightUp": { + "type": "float", + "id": 6, + "offset": 140, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2208713013 + }, + "m_heightDown": { + "type": "float", + "id": 7, + "offset": 144, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 655333896 + }, + "m_changeDirectionSoundList": { + "type": "class WeightedList", + "id": 8, + "offset": 184, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1487918739 + } + } + }, + "1087131681": { + "name": "class SharedPointer", + "bases": [ + "GameEffectTimerTrigger", + "PropertyClass" + ], + "hash": 1087131681, + "properties": { + "m_radius": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 989410271 + }, + "m_triggerT": { + "type": "float", + "id": 1, + "offset": 76, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2138083583 + }, + "m_soundFiles": { + "type": "std::string", + "id": 2, + "offset": 80, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 3585199735 + } + } + }, + "1521087095": { + "name": "enum ExpansionData::Category", + "bases": [], + "hash": 1521087095, + "properties": {} + }, + "658890623": { + "name": "class ClientZoneTokenCount", + "bases": [ + "ZoneTokenCount", + "ZoneTokenBase", + "PropertyClass" + ], + "hash": 658890623, + "properties": { + "m_debugName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3553984419 + }, + "m_adjectiveList": { + "type": "std::string", + "id": 1, + "offset": 104, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 3195213318 + }, + "m_icon": { + "type": "std::string", + "id": 2, + "offset": 120, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1717182340 + }, + "m_iconBW": { + "type": "std::string", + "id": 3, + "offset": 152, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2047461085 + }, + "m_description": { + "type": "std::string", + "id": 4, + "offset": 184, + "flags": 8388639, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1649374815 + }, + "m_displayMode": { + "type": "enum ZTDisplayMode", + "id": 5, + "offset": 216, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2216526410, + "enum_options": { + "ZTDM_Shown": 0, + "ZTDM_Discoverable": 1, + "ZTDM_Hidden": 2 + } + }, + "m_storage": { + "type": "enum ZTStorage", + "id": 6, + "offset": 220, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2290454852, + "enum_options": { + "ZTS_Player": 0, + "ZTS_Zone": 1 + } + }, + "m_onEnable": { + "type": "class SharedPointer", + "id": 7, + "offset": 224, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2591736864 + }, + "m_onDiscover": { + "type": "class SharedPointer", + "id": 8, + "offset": 240, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2826026872 + }, + "m_onDisable": { + "type": "class SharedPointer", + "id": 9, + "offset": 256, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1860656717 + }, + "m_sourceID": { + "type": "gid", + "id": 10, + "offset": 272, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1134700470 + }, + "m_inZone": { + "type": "bool", + "id": 11, + "offset": 280, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 564535654 + }, + "m_enabled": { + "type": "bool", + "id": 12, + "offset": 281, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 504506718 + }, + "m_discovered": { + "type": "bool", + "id": 13, + "offset": 282, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2060478331 + }, + "m_minValue": { + "type": "int", + "id": 14, + "offset": 288, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1508523611 + }, + "m_startValue": { + "type": "int", + "id": 15, + "offset": 292, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 672067813 + }, + "m_maxValue": { + "type": "int", + "id": 16, + "offset": 296, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 158068381 + }, + "m_curValue": { + "type": "int", + "id": 17, + "offset": 300, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1147627809 + }, + "m_counterType": { + "type": "enum ZTCounterType", + "id": 18, + "offset": 304, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1417526179, + "enum_options": { + "ZTCT_Full": 0, + "ZTCT_Count": 1, + "ZTCT_Meter": 2, + "ZTCT_Hidden": 3 + } + }, + "m_onIncrease": { + "type": "class SharedPointer", + "id": 19, + "offset": 312, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2723490243 + }, + "m_onDecrease": { + "type": "class SharedPointer", + "id": 20, + "offset": 328, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1346363029 + }, + "m_onEmpty": { + "type": "class SharedPointer", + "id": 21, + "offset": 344, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1658398600 + }, + "m_onFull": { + "type": "class SharedPointer", + "id": 22, + "offset": 360, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1955555436 + } + } + }, + "231446244": { + "name": "class ClientRenamePipActorsFromResult", + "bases": [ + "RenamePipActorsFromResult", + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 231446244, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + }, + "m_newActorName": { + "type": "std::string", + "id": 2, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2029131039 + }, + "m_newActorName2": { + "type": "std::string", + "id": 3, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1852236785 + }, + "m_oldActorName": { + "type": "std::string", + "id": 4, + "offset": 184, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2191892948 + } + } + }, + "230850271": { + "name": "class MountSoundBehavior*", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 230850271, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + } + } + }, + "1087281984": { + "name": "class ProvideSpellEffectTemplate", + "bases": [ + "GameEffectTemplate", + "PropertyClass" + ], + "hash": 1087281984, + "properties": { + "m_effectName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2029161513 + }, + "m_effectCategory": { + "type": "std::string", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1852673222 + }, + "m_sortOrder": { + "type": "int", + "id": 2, + "offset": 148, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1411218206 + }, + "m_duration": { + "type": "double", + "id": 3, + "offset": 192, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2727932435 + }, + "m_stackingCategories": { + "type": "std::string", + "id": 4, + "offset": 160, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1774497525 + }, + "m_isPersistent": { + "type": "bool", + "id": 5, + "offset": 153, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 923861920 + }, + "m_bIsOnPet": { + "type": "bool", + "id": 6, + "offset": 154, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 522593303 + }, + "m_isPublic": { + "type": "bool", + "id": 7, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1728439822 + }, + "m_visualEffectAddName": { + "type": "std::string", + "id": 8, + "offset": 200, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3382086694 + }, + "m_visualEffectRemoveName": { + "type": "std::string", + "id": 9, + "offset": 232, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1541697323 + }, + "m_onAddFunctorName": { + "type": "std::string", + "id": 10, + "offset": 280, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1561843107 + }, + "m_onRemoveFunctorName": { + "type": "std::string", + "id": 11, + "offset": 312, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2559017864 + }, + "m_stackingRule": { + "type": "enum STACKING_RULE", + "id": 12, + "offset": 144, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 431568889, + "enum_options": { + "STACKING_ALLOWED": 0, + "STACKING_NOSTACK": 1, + "STACKING_REPLACE": 2 + } + }, + "m_spellName": { + "type": "std::string", + "id": 13, + "offset": 360, + "flags": 268435463, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2688485244, + "enum_options": { + "__BASECLASS": "SpellTemplate" } }, - "m_afterCombatDance": { - "type": "unsigned char", - "id": 19, - "offset": 184, - "flags": 63, + "m_numSpells": { + "type": "int", + "id": 14, + "offset": 392, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1269498237 + } + } + }, + "1521415462": { + "name": "class ClientBGPlayerBehavior*", + "bases": [ + "BGPlayerBehavior", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1521415462, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + } + } + }, + "660161586": { + "name": "class SchoolOfFocusOption*", + "bases": [ + "PropertyClass" + ], + "hash": 660161586, + "properties": { + "m_schoolNameID": { + "type": "unsigned int", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 624113571 + } + } + }, + "1945322180": { + "name": "class CSRAccessPassInfo*", + "bases": [ + "PropertyClass" + ], + "hash": 1945322180, + "properties": { + "m_passName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 23, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2647581395 + }, + "m_hasPass": { + "type": "bool", + "id": 1, + "offset": 104, + "flags": 23, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1743355078 + }, + "m_grantedByRight": { + "type": "bool", + "id": 2, + "offset": 105, + "flags": 23, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 498060849 + } + } + }, + "231777837": { + "name": "class ClientClearHangingEffectsCinematicAction*", + "bases": [ + "ClearHangingEffectsCinematicAction", + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 231777837, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + } + } + }, + "1087471851": { + "name": "class FriendlyPlayerWorldList*", + "bases": [ + "PropertyClass" + ], + "hash": 1087471851, + "properties": { + "m_friendlyPlayerWorldList": { + "type": "unsigned int", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 780811899 + } + } + }, + "231777453": { + "name": "class ClientClearHangingEffectsCinematicAction", + "bases": [ + "ClearHangingEffectsCinematicAction", + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 231777453, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + } + } + }, + "1523786443": { + "name": "class SharedPointer", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1523786443, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + } + } + }, + "661699584": { + "name": "class UIScaleConfig*", + "bases": [ + "PropertyClass" + ], + "hash": 661699584, + "properties": { + "m_entries": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 998597073 + } + } + }, + "1946106526": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1946106526, + "properties": { + "m_type": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1717601629 + }, + "m_resetTime": { + "type": "unsigned __int64", + "id": 1, + "offset": 104, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2012714323 + "hash": 1841687339 }, - "m_nSkinDecal2": { - "type": "unsigned short", - "id": 20, - "offset": 192, - "flags": 63, + "m_productIconType": { + "type": "std::string", + "id": 2, + "offset": 112, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1904828726 + "hash": 3026584199 }, - "m_extendedHairColor": { - "type": "unsigned char", - "id": 21, - "offset": 194, - "flags": 63, + "m_status": { + "type": "std::string", + "id": 3, + "offset": 144, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1534273092 + "hash": 2458480799 }, - "m_extendedSkinDecal": { - "type": "unsigned short", - "id": 22, - "offset": 196, - "flags": 63, + "m_itemsStatus": { + "type": "std::string", + "id": 4, + "offset": 176, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2299798727 + "hash": 2942863777 }, - "m_newPlayerOptions": { - "type": "unsigned int", - "id": 23, - "offset": 200, - "flags": 63, + "m_membership": { + "type": "bool", + "id": 5, + "offset": 208, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1564037328 + "hash": 1596198559 + } + } + }, + "1522616380": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1522616380, + "properties": { + "m_templateList": { + "type": "unsigned int", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 786797381 }, - "m_newPlayerOptions2": { + "m_essenceList": { + "type": "int", + "id": 1, + "offset": 88, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1555680540 + } + } + }, + "661176458": { + "name": "class CustomNameOptions", + "bases": [ + "PropertyClass" + ], + "hash": 661176458, + "properties": { + "m_customNameMaxLength": { "type": "unsigned int", - "id": 24, - "offset": 204, - "flags": 63, + "id": 0, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1895849858 + "hash": 1680359153 }, - "m_afterCombatVictoryDance": { + "m_customNameMinLength": { "type": "unsigned int", - "id": 25, - "offset": 188, - "flags": 31, + "id": 1, + "offset": 76, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1655464256 + "hash": 1148225135 + }, + "m_subStringNameExceptions": { + "type": "std::wstring", + "id": 2, + "offset": 88, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2526168028 + }, + "m_singleCharExceptions": { + "type": "std::wstring", + "id": 3, + "offset": 112, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1648919482 + }, + "m_caseInsensitive": { + "type": "bool", + "id": 4, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 182050912 + }, + "m_charSetCosts": { + "type": "class SharedPointer", + "id": 5, + "offset": 184, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1980234615 } } }, - "1525360461": { - "name": "class ClientActorResurrectCinematicAction", + "1945818447": { + "name": "class DestroyShadowCreatureCinematicAction*", "bases": [ - "ActorResurrectCinematicAction", "ActorCinematicAction", "CinematicAction", "PropertyClass" ], - "hash": 1525360461, + "hash": 1945818447, "properties": { "m_timeOffset": { "type": "float", @@ -419982,403 +116054,1494 @@ } } }, - "1525311244": { - "name": "class DeedBehaviorBase", + "1087768358": { + "name": "class CastleMagicSpellTemplate", "bases": [ - "BehaviorInstance", + "SpellTemplate", + "CoreTemplate", "PropertyClass" ], - "hash": 1525311244, + "hash": 1087768358, "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", + "m_behaviors": { + "type": "class BehaviorTemplate*", "id": 0, - "offset": 104, - "flags": 39, + "offset": 72, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1197808594 + }, + "m_name": { + "type": "std::string", + "id": 1, + "offset": 96, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 + "hash": 1717359772 }, - "m_lotInstanceGID": { - "type": "gid", - "id": 1, - "offset": 120, - "flags": 33554495, + "m_description": { + "type": "std::string", + "id": 2, + "offset": 168, + "flags": 8388615, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2010711536 + "hash": 1649374815 }, - "m_streetAddress": { + "m_advancedDescription": { + "type": "std::string", + "id": 3, + "offset": 200, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3465713013 + }, + "m_displayName": { + "type": "std::string", + "id": 4, + "offset": 136, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2446900370 + }, + "m_spellBase": { + "type": "std::string", + "id": 5, + "offset": 248, + "flags": 268435463, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2688054198, + "enum_options": { + "__BASECLASS": "CinematicTemplate" + } + }, + "m_effects": { + "type": "class SharedPointer", + "id": 6, + "offset": 280, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 370726379 + }, + "m_sMagicSchoolName": { + "type": "std::string", + "id": 7, + "offset": 312, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2035693400 + }, + "m_sTypeName": { + "type": "std::string", + "id": 8, + "offset": 352, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3580785905 + }, + "m_trainingCost": { "type": "int", - "id": 2, - "offset": 112, - "flags": 63, + "id": 9, + "offset": 384, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1809670519 + "hash": 982588239 }, - "m_transferCoolDownTime": { + "m_accuracy": { + "type": "int", + "id": 10, + "offset": 388, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1636315493 + }, + "m_baseCost": { + "type": "int", + "id": 11, + "offset": 232, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1475151502 + }, + "m_creditsCost": { + "type": "int", + "id": 12, + "offset": 236, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 715313825 + }, + "m_pvpCurrencyCost": { + "type": "int", + "id": 13, + "offset": 240, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 645595444 + }, + "m_pvpTourneyCurrencyCost": { + "type": "int", + "id": 14, + "offset": 244, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 517874954 + }, + "m_boosterPackIcon": { + "type": "std::string", + "id": 15, + "offset": 496, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3428653697 + }, + "m_validTargetSpells": { "type": "unsigned int", - "id": 3, - "offset": 128, - "flags": 63, + "id": 16, + "offset": 392, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2355782967 + }, + "m_PvP": { + "type": "bool", + "id": 17, + "offset": 408, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1616830022 + "hash": 269492361 + }, + "m_PvE": { + "type": "bool", + "id": 18, + "offset": 409, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 269492350 + }, + "m_noPvPEnchant": { + "type": "bool", + "id": 19, + "offset": 410, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 661581703 + }, + "m_noPvEEnchant": { + "type": "bool", + "id": 20, + "offset": 411, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 10144220 + }, + "m_battlegroundsOnly": { + "type": "bool", + "id": 21, + "offset": 412, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1244782419 + }, + "m_Treasure": { + "type": "bool", + "id": 22, + "offset": 413, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1749096414 + }, + "m_noDiscard": { + "type": "bool", + "id": 23, + "offset": 414, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 565749226 + }, + "m_leavesPlayWhenCast": { + "type": "bool", + "id": 24, + "offset": 532, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 698216294 + }, + "m_imageIndex": { + "type": "int", + "id": 25, + "offset": 416, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1570500405 + }, + "m_imageName": { + "type": "std::string", + "id": 26, + "offset": 424, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2391520543 + }, + "m_cloaked": { + "type": "bool", + "id": 27, + "offset": 489, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 7349510 + }, + "m_casterInvisible": { + "type": "bool", + "id": 28, + "offset": 490, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 310214650 + }, + "m_adjectives": { + "type": "std::string", + "id": 29, + "offset": 576, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2967855037 + }, + "m_spellSourceType": { + "type": "enum SpellTemplate::kSpellSourceType", + "id": 30, + "offset": 528, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 156272727, + "enum_options": { + "kCaster": 0, + "kPet": 1, + "kShadowCreature": 2, + "kWeapon": 3, + "kEquipment": 4 + } + }, + "m_cloakedName": { + "type": "std::string", + "id": 31, + "offset": 536, + "flags": 268435463, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2846679215, + "enum_options": { + "__BASECLASS": "SpellTemplate" + } + }, + "m_purchaseRequirements": { + "type": "class RequirementList*", + "id": 32, + "offset": 608, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3174641793 + }, + "m_displayRequirements": { + "type": "class RequirementList*", + "id": 33, + "offset": 840, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3646782876 + }, + "m_descriptionTrainer": { + "type": "std::string", + "id": 34, + "offset": 616, + "flags": 8388871, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1756093908 + }, + "m_descriptionCombatHUD": { + "type": "std::string", + "id": 35, + "offset": 648, + "flags": 8388871, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1631478006 + }, + "m_displayIndex": { + "type": "int", + "id": 36, + "offset": 680, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1250551048 + }, + "m_hiddenFromEffectsWindow": { + "type": "bool", + "id": 37, + "offset": 684, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1832736331 + }, + "m_ignoreCharms": { + "type": "bool", + "id": 38, + "offset": 685, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1840075893 + }, + "m_alwaysFizzle": { + "type": "bool", + "id": 39, + "offset": 686, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2030988856 + }, + "m_spellCategory": { + "type": "std::string", + "id": 40, + "offset": 688, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2472376729 + }, + "m_showPolymorphedName": { + "type": "bool", + "id": 41, + "offset": 720, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2097929096 + }, + "m_skipTruncation": { + "type": "bool", + "id": 42, + "offset": 721, + "flags": 263, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1838335249 + }, + "m_maxCopies": { + "type": "unsigned int", + "id": 43, + "offset": 724, + "flags": 263, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 403022326 + }, + "m_levelRestriction": { + "type": "int", + "id": 44, + "offset": 728, + "flags": 263, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 176502472 + }, + "m_delayEnchantment": { + "type": "bool", + "id": 45, + "offset": 732, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 191336919 + }, + "m_delayEnchantmentOrder": { + "type": "enum SpellEffect::kDelayOrder", + "id": 46, + "offset": 736, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2526055263, + "enum_options": { + "SpellEffect::kAnyOrder": 0, + "SpellEffect::kFirst": 1, + "SpellEffect::kSecond": 2 + } + }, + "m_previousSpellName": { + "type": "std::string", + "id": 47, + "offset": 744, + "flags": 268435463, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2903322585, + "enum_options": { + "__BASECLASS": "SpellTemplate" + } + }, + "m_cardFront": { + "type": "std::string", + "id": 48, + "offset": 456, + "flags": 131359, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3557598526 + }, + "m_useGloss": { + "type": "bool", + "id": 49, + "offset": 488, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 668817544 + }, + "m_ignoreDispel": { + "type": "bool", + "id": 50, + "offset": 776, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1881041624 + }, + "m_backRowFriendly": { + "type": "bool", + "id": 51, + "offset": 777, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 501584377 + }, + "m_spellRank": { + "type": "class SharedPointer", + "id": 52, + "offset": 784, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3152361374 + }, + "m_secondarySchoolName": { + "type": "std::string", + "id": 53, + "offset": 800, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1803268236 + }, + "m_spellFusion": { + "type": "unsigned int", + "id": 54, + "offset": 836, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1658928321 + }, + "m_requiredSchoolName": { + "type": "std::string", + "id": 55, + "offset": 848, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3576058981 + }, + "m_castleMagicSpellType": { + "type": "enum CastleMagicSpellTemplate::CastleMagicSpellType", + "id": 56, + "offset": 880, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1857887320, + "enum_options": { + "CM_Action": 0, + "CM_Effect": 1, + "CM_Utility": 2, + "CM_Logic": 3 + } + }, + "m_castleMagicSpellEffect": { + "type": "enum CastleMagicSpellTemplate::CastleMagicSpellEffect", + "id": 57, + "offset": 884, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1408413012, + "enum_options": { + "CM_None": 0, + "CM_MakeInvisible": 1, + "CM_MakeVisible": 2, + "CM_PlaySpellEffect": 3, + "CM_PlaySoundEffect": 4, + "CM_RestoreObject": 5, + "CM_MoveObject": 6, + "CM_TurnObject": 7, + "CM_ScaleObject": 8, + "CM_TeleportObject": 9, + "CM_MoveObjectToMe": 10, + "CM_MoveTowardMe": 11, + "CM_PlayMusicScroll": 12, + "CM_MoveObjectForward": 13, + "CM_MoveObjectBackward": 14, + "CM_TurnLikeMe": 15, + "CM_TurnTowardMe": 16, + "CM_LogicEffect": 17, + "CM_StartTimer": 18, + "CM_StopTimer": 19, + "CM_ActivateReflector": 20, + "CM_CameraShake": 21, + "CM_SetCounter": 22, + "CM_SetBrazier": 23, + "CM_UseItem": 24, + "CM_Solidify": 25, + "CM_PetControl": 26, + "CM_MountControl": 27, + "CM_CameraControl": 28, + "CM_TeleportPlayer": 29, + "CM_PVPSigilControl": 30, + "CM_TeleportAllPlayers": 31, + "CM_MakeTranslucent": 32, + "CM_MakeOpaque": 33, + "CM_SilenceItem": 34, + "CM_MoveFaster": 35, + "CM_PVPDuelModifier": 36, + "CM_StopMovement": 37, + "CM_UnsilenceItem": 38, + "CM_PlayInstrumentLoop": 39, + "CM_StopMusic": 40, + "CM_PlayMusicPlayer": 41, + "CM_PlayAsPetControl": 42 + } + }, + "m_animationKFM": { + "type": "std::string", + "id": 58, + "offset": 888, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2466280761 + }, + "m_animationSequence": { + "type": "std::string", + "id": 59, + "offset": 920, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2493126132 + }, + "m_effectSchool": { + "type": "std::string", + "id": 60, + "offset": 952, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2688245616 } } }, - "1927687834": { - "name": "class SharedPointer", + "1521876561": { + "name": "enum Ingredient::INGREDIENT_TYPE", + "bases": [], + "hash": 1521876561, + "properties": {} + }, + "1087745605": { + "name": "class SharedPointer", "bases": [ "PropertyClass" ], - "hash": 1927687834, + "hash": 1087745605, "properties": { - "m_templateID": { - "type": "unsigned int", + "m_unlockTriggerList": { + "type": "class SharedPointer", "id": 0, "offset": 72, - "flags": 33554495, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2206769498 + } + } + }, + "1521624695": { + "name": "class InstanceInfo", + "bases": [ + "PropertyClass" + ], + "hash": 1521624695, + "properties": { + "m_sZoneName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1286746870 + "hash": 3632841067 }, - "m_keepOnWishlistAfterPurchase": { - "type": "unsigned short", + "m_nInstanceID": { + "type": "int", "id": 1, - "offset": 76, - "flags": 63, + "offset": 104, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1244445710 + "hash": 1380862506 + }, + "m_nZoneID": { + "type": "gid", + "id": 2, + "offset": 112, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 622120303 } } }, - "1525212940": { - "name": "class DeedBehaviorBase*", + "236598037": { + "name": "class BurnAuraCinematicAction", "bases": [ - "BehaviorInstance", + "ActorCinematicAction", + "CinematicAction", "PropertyClass" ], - "hash": 1525212940, + "hash": 236598037, "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", + "m_timeOffset": { + "type": "float", "id": 0, - "offset": 104, - "flags": 39, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 + "hash": 2237098605 }, - "m_lotInstanceGID": { - "type": "gid", + "m_actor": { + "type": "std::string", "id": 1, - "offset": 120, - "flags": 33554495, + "offset": 80, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2010711536 + "hash": 2285866132 + } + } + }, + "664620549": { + "name": "class SharedPointer", + "bases": [ + "Window", + "PropertyClass" + ], + "hash": 664620549, + "properties": { + "m_sName": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306437263 }, - "m_streetAddress": { - "type": "int", - "id": 2, + "m_Children": { + "type": "class SharedPointer", + "id": 1, "offset": 112, - "flags": 63, + "flags": 65671, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621225959 + }, + "m_Style": { + "type": "unsigned int", + "id": 2, + "offset": 152, + "flags": 1048583, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1809670519 + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "SCALE_CHILDREN": 2, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "FOCUS_LOCKED": 64, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152 + } }, - "m_transferCoolDownTime": { + "m_Flags": { "type": "unsigned int", "id": 3, - "offset": 128, - "flags": 63, + "offset": 156, + "flags": 1048583, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1616830022 + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } + }, + "m_Window": { + "type": "class Rect", + "id": 4, + "offset": 160, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3105139380 + }, + "m_fTargetAlpha": { + "type": "float", + "id": 5, + "offset": 212, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1809129834 + }, + "m_fDisabledAlpha": { + "type": "float", + "id": 6, + "offset": 216, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1389987675 + }, + "m_fAlpha": { + "type": "float", + "id": 7, + "offset": 208, + "flags": 65671, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 482130755 + }, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3623628394 + }, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2102211316 + }, + "m_sScript": { + "type": "std::string", + "id": 10, + "offset": 352, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1846695875 + }, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3389835433 + }, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547159940 + }, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513510520 + }, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3091503757 } } }, - "1926595613": { - "name": "class SharedPointer", + "1946372007": { + "name": "class DailyPvPData", "bases": [ - "CinematicAction", "PropertyClass" ], - "hash": 1926595613, + "hash": 1946372007, "properties": { - "m_timeOffset": { - "type": "float", + "m_dailyPvPList": { + "type": "class SharedPointer", "id": 0, "offset": 72, "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2102460099 + } + } + }, + "235559991": { + "name": "class SharedPointer", + "bases": [ + "Window", + "PropertyClass" + ], + "hash": 235559991, + "properties": { + "m_sName": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 + "hash": 2306437263 }, - "m_cameras": { - "type": "std::string", + "m_Children": { + "type": "class SharedPointer", "id": 1, - "offset": 80, - "flags": 131079, + "offset": 112, + "flags": 65671, "container": "Vector", "dynamic": true, "singleton": false, - "pointer": false, - "hash": 3217341687 + "pointer": true, + "hash": 2621225959 }, - "m_altcameras": { - "type": "std::string", + "m_Style": { + "type": "unsigned int", "id": 2, - "offset": 104, - "flags": 131079, - "container": "Vector", - "dynamic": true, + "offset": 152, + "flags": 1048583, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 1882980152 + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "SCALE_CHILDREN": 2, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "FOCUS_LOCKED": 64, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152 + } }, - "m_initialCameraName": { - "type": "std::string", + "m_Flags": { + "type": "unsigned int", "id": 3, - "offset": 128, - "flags": 7, + "offset": 156, + "flags": 1048583, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2526319343 + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } }, - "m_camRel": { - "type": "enum CameraCutCinematicAction::kCameraRelative", + "m_Window": { + "type": "class Rect", "id": 4, - "offset": 168, - "flags": 2097159, + "offset": 160, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 919962138, - "enum_options": { - "kNone": 0, - "kSigil": 1, - "kTarget": 2, - "kSource": 3, - "kActor": 4 - } + "hash": 3105139380 }, - "m_interpolationDuration": { + "m_fTargetAlpha": { "type": "float", "id": 5, - "offset": 160, - "flags": 7, + "offset": 212, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1458058437 + "hash": 1809129834 }, - "m_releaseInterpolationDuration": { + "m_fDisabledAlpha": { "type": "float", "id": 6, - "offset": 164, - "flags": 7, + "offset": 216, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1807754278, - "enum_options": { - "__DEFAULT": "1.0" - } + "hash": 1389987675 }, - "m_bUseOrientationOverride": { - "type": "bool", + "m_fAlpha": { + "type": "float", "id": 7, - "offset": 188, - "flags": 7, + "offset": 208, + "flags": 65671, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1088002894 + "hash": 482130755 }, - "m_overrideOrientation": { - "type": "class Vector3D", + "m_pWindowStyle": { + "type": "class SharedPointer", "id": 8, - "offset": 192, - "flags": 7, + "offset": 232, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 3267199758 + "pointer": true, + "hash": 3623628394 }, - "m_bUseLocationOverride": { - "type": "bool", + "m_sHelp": { + "type": "std::wstring", "id": 9, - "offset": 172, - "flags": 7, + "offset": 248, + "flags": 4194439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1767170875 + "hash": 2102211316 }, - "m_overrideLocation": { - "type": "class Vector3D", + "m_sScript": { + "type": "std::string", "id": 10, + "offset": 352, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1846695875 + }, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3389835433 + }, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547159940 + }, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513510520 + }, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, "offset": 176, - "flags": 7, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3776417691 + "hash": 3091503757 }, - "m_namedActor": { + "m_spell": { + "type": "class SharedPointer", + "id": 16, + "offset": 584, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1393190292 + }, + "m_spellName": { "type": "std::string", - "id": 11, - "offset": 208, + "id": 17, + "offset": 600, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3413532537 + "hash": 2688485244 }, - "m_camScale": { - "type": "float", - "id": 12, - "offset": 240, + "m_grayscale": { + "type": "bool", + "id": 18, + "offset": 636, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 979098224 + "hash": 348289198 } } }, - "1926567985": { - "name": "class PetGameInfo", + "661699589": { + "name": "class UIScaleConfig", "bases": [ "PropertyClass" ], - "hash": 1926567985, + "hash": 661699589, "properties": { - "m_isWebGame": { - "type": "bool", + "m_entries": { + "type": "class SharedPointer", "id": 0, "offset": 72, "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 998597073 + } + } + }, + "232569253": { + "name": "class GuildMuseumExhibitInfo*", + "bases": [ + "PropertyClass" + ], + "hash": 232569253, + "properties": { + "m_displayName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 8388615, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 944547943 + "hash": 2446900370 }, - "m_name": { + "m_tagName": { "type": "std::string", "id": 1, - "offset": 160, + "offset": 104, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1717359772 + "hash": 1542016824 }, - "m_energyCosts": { - "type": "class SharedPointer", + "m_artifactList": { + "type": "class SharedPointer", "id": 2, - "offset": 192, + "offset": 136, "flags": 7, "container": "List", "dynamic": true, "singleton": false, "pointer": true, - "hash": 3378376555 - }, - "m_trackChoices": { - "type": "class SharedPointer", - "id": 3, - "offset": 208, + "hash": 768482721 + } + } + }, + "1088004921": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1088004921, + "properties": { + "m_playerList": { + "type": "gid", + "id": 0, + "offset": 72, "flags": 7, - "container": "Vector", + "container": "List", "dynamic": true, "singleton": false, - "pointer": true, - "hash": 1548152913 - }, - "m_gameIcon": { + "pointer": false, + "hash": 1909774945 + } + } + }, + "1522317503": { + "name": "enum VisualAttributeType", + "bases": [], + "hash": 1522317503, + "properties": {} + }, + "232528293": { + "name": "class GuildMuseumExhibitInfo", + "bases": [ + "PropertyClass" + ], + "hash": 232528293, + "properties": { + "m_displayName": { "type": "std::string", - "id": 4, - "offset": 80, - "flags": 7, + "id": 0, + "offset": 72, + "flags": 8388615, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3229574910 + "hash": 2446900370 }, - "m_trackIcons": { + "m_tagName": { "type": "std::string", - "id": 5, - "offset": 112, + "id": 1, + "offset": 104, "flags": 7, - "container": "Vector", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 2211683916 + "hash": 1542016824 }, - "m_trackToolTips": { - "type": "std::string", - "id": 6, + "m_artifactList": { + "type": "class SharedPointer", + "id": 2, "offset": 136, "flags": 7, - "container": "Vector", + "container": "List", "dynamic": true, "singleton": false, - "pointer": false, - "hash": 1898819214 + "pointer": true, + "hash": 768482721 } } }, - "1525311309": { - "name": "class ClientActorResurrectCinematicAction*", + "1960204144": { + "name": "class SharedPointer", "bases": [ - "ActorResurrectCinematicAction", "ActorCinematicAction", "CinematicAction", "PropertyClass" ], - "hash": 1525311309, + "hash": 1960204144, "properties": { "m_timeOffset": { "type": "float", @@ -420401,20 +117564,108 @@ "singleton": false, "pointer": false, "hash": 2285866132 + }, + "m_activate": { + "type": "bool", + "id": 2, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 142527940 + }, + "m_cloaked": { + "type": "bool", + "id": 3, + "offset": 121, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 7349510 } } }, - "1927004441": { - "name": "class SharedPointer", + "1954006647": { + "name": "class SharedPointer", "bases": [ - "ClearTopTeamCinematicAction", - "CinematicAction", + "TournamentUpdate", "PropertyClass" ], - "hash": 1927004441, + "hash": 1954006647, "properties": { - "m_timeOffset": { - "type": "float", + "m_actorID": { + "type": "gid", + "id": 0, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1371104126 + }, + "m_teamID": { + "type": "gid", + "id": 1, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 982102220 + } + } + }, + "1089559212": { + "name": "class NPCDataList*", + "bases": [ + "PropertyClass" + ], + "hash": 1089559212, + "properties": { + "m_npcList": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2709214274 + }, + "m_zoneType": { + "type": "enum NPCDataList::ZONE_TYPE", + "id": 1, + "offset": 88, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 975028587, + "enum_options": { + "CurrentZone": 0, + "OtherZons": 1, + "None": 2 + } + } + } + }, + "1523411550": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1523411550, + "properties": { + "m_name": { + "type": "std::string", "id": 0, "offset": 72, "flags": 7, @@ -420422,29 +117673,183 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 + "hash": 1717359772 }, - "m_interpDuration": { - "type": "float", + "m_id": { + "type": "gid", "id": 1, - "offset": 80, + "offset": 104, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237711951 + "hash": 2090569797 + }, + "m_active": { + "type": "bool", + "id": 2, + "offset": 112, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 239335471 + }, + "m_popSensitive": { + "type": "bool", + "id": 3, + "offset": 113, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1597743708 + }, + "m_maxNumberOfSpawns": { + "type": "unsigned int", + "id": 4, + "offset": 116, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 641389965 + }, + "m_atLeastOneSpawn": { + "type": "bool", + "id": 5, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 739650380 + }, + "m_activateAtMax": { + "type": "bool", + "id": 6, + "offset": 121, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 992369727 + }, + "m_spawnTime": { + "type": "int", + "id": 7, + "offset": 124, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 752966546 + }, + "m_respawnRate": { + "type": "unsigned int", + "id": 8, + "offset": 128, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1675694521 + }, + "m_spawnList": { + "type": "class SpawnItem*", + "id": 9, + "offset": 160, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2620469846 + }, + "m_globalDynamicReqs": { + "type": "class RequirementList*", + "id": 10, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3534313715 + }, + "m_globalDynamic": { + "type": "bool", + "id": 11, + "offset": 144, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1951691017 + }, + "m_waitForTimer": { + "type": "bool", + "id": 12, + "offset": 122, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2143039664 + }, + "m_zoneLevelMin": { + "type": "unsigned int", + "id": 13, + "offset": 132, + "flags": 263, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1028934149 + }, + "m_zoneLevelMax": { + "type": "unsigned int", + "id": 14, + "offset": 136, + "flags": 263, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1028933895 + }, + "m_zoneLevelUp": { + "type": "unsigned int", + "id": 15, + "offset": 140, + "flags": 263, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1342541638 } } }, - "1525492269": { - "name": "class FloatingTextCinematicAction", + "667295280": { + "name": "class SharedPointer", "bases": [ "ActorCinematicAction", "CinematicAction", "PropertyClass" ], - "hash": 1525492269, + "hash": 667295280, "properties": { "m_timeOffset": { "type": "float", @@ -420468,1955 +117873,1781 @@ "pointer": false, "hash": 2285866132 }, - "m_stringTableEntry": { - "type": "std::string", + "m_objectInfo": { + "type": "class CoreObjectInfo*", "id": 2, "offset": 120, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, + "pointer": true, + "hash": 1373700953 + }, + "m_bStartHidden": { + "type": "bool", + "id": 3, + "offset": 128, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, "pointer": false, - "hash": 2181170604 + "hash": 1939845615 } } }, - "1927837352": { - "name": "class TabDisplayPriorityList*", + "1950269687": { + "name": "class PartyChatObserver", "bases": [ + "GroupObserver", "PropertyClass" ], - "hash": 1927837352, - "properties": { - "m_tabPriList": { - "type": "class TabDisplayPriority", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 3043784178 - } - } + "hash": 1950269687, + "properties": {} }, - "1526577604": { - "name": "class ClientPipFloatingTextCinematicAction*", + "232827851": { + "name": "class DerbyModifyPetStat", "bases": [ - "PipFloatingTextCinematicAction", - "ActorCinematicAction", - "CinematicAction", + "DerbyEffect", "PropertyClass" ], - "hash": 1526577604, + "hash": 232827851, "properties": { - "m_timeOffset": { - "type": "float", + "m_buffType": { + "type": "enum DerbyTalentBuffType", "id": 0, - "offset": 72, - "flags": 7, + "offset": 92, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1149251982, + "enum_options": { + "Buff": 0, + "Debuff": 1, + "Neither": 2 + } + }, + "m_kTarget": { + "type": "enum DerbyTargetType", + "id": 1, + "offset": 96, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1807803351, + "enum_options": { + "kTargetInFront": 0, + "kTargetBehind": 1, + "kTargetFirst": 2, + "kTargetSelf": 3, + "kTargetAll": 4, + "kTargetLast": 5 + } + }, + "m_nDuration": { + "type": "int", + "id": 2, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1110167982 + }, + "m_effectID": { + "type": "unsigned int", + "id": 3, + "offset": 88, + "flags": 24, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2347630439 + }, + "m_imageFilename": { + "type": "std::string", + "id": 4, + "offset": 112, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2813328063 + }, + "m_iconIndex": { + "type": "unsigned int", + "id": 5, + "offset": 144, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1265133262 + }, + "m_soundOnActivate": { + "type": "std::string", + "id": 6, + "offset": 152, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 + "hash": 1956929714 }, - "m_actor": { + "m_soundOnTarget": { "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, + "id": 7, + "offset": 184, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2285866132 - } - } - }, - "1526086322": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1526086322, - "properties": { - "m_categoryName": { + "hash": 3444214056 + }, + "m_targetParticleEffect": { "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, + "id": 8, + "offset": 216, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3591157466 + "hash": 3048234723 }, - "m_states": { - "type": "class ObjState*", - "id": 1, - "offset": 176, - "flags": 7, - "container": "List", - "dynamic": true, + "m_overheadMessage": { + "type": "std::string", + "id": 9, + "offset": 248, + "flags": 8388639, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2490652686 + "pointer": false, + "hash": 1701018190 }, - "m_startState": { - "type": "std::string", - "id": 2, - "offset": 112, - "flags": 7, + "m_requirements": { + "type": "class RequirementList", + "id": 10, + "offset": 280, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2166880458 + "hash": 2840988582 }, - "m_baseState": { - "type": "std::string", - "id": 3, - "offset": 144, - "flags": 7, + "m_mods": { + "type": "class PetStatModificationSet", + "id": 11, + "offset": 376, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2949363223 + "hash": 686212266 } } }, - "1929567265": { - "name": "class PartyObserver*", - "bases": [ - "GroupObserver", - "PropertyClass" - ], - "hash": 1929567265, - "properties": {} - }, - "1526019368": { - "name": "class SavedCharacterLists*", + "1088696422": { + "name": "class ZoneTokenTimerControl", "bases": [ + "ZoneTokenBaseControl", + "Window", "PropertyClass" ], - "hash": 1526019368, + "hash": 1088696422, "properties": { - "m_boyCharacterList": { - "type": "class SharedPointer", + "m_sName": { + "type": "std::string", "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 484937069 + "pointer": false, + "hash": 2306437263 }, - "m_girlCharacterList": { - "type": "class SharedPointer", + "m_Children": { + "type": "class SharedPointer", "id": 1, - "offset": 88, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2372941617 - } - } - }, - "1929098304": { - "name": "class Ladder*", - "bases": [ - "CoreObject", - "PropertyClass" - ], - "hash": 1929098304, - "properties": { - "m_inactiveBehaviors": { - "type": "class SharedPointer", - "id": 0, - "offset": 224, - "flags": 31, + "offset": 112, + "flags": 65671, "container": "Vector", "dynamic": true, "singleton": false, "pointer": true, - "hash": 1850812559 - }, - "m_globalID.m_full": { - "type": "unsigned __int64", - "id": 1, - "offset": 72, - "flags": 16777247, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2312465444 + "hash": 2621225959 }, - "m_permID": { - "type": "unsigned __int64", + "m_Style": { + "type": "unsigned int", "id": 2, - "offset": 80, - "flags": 16777247, + "offset": 152, + "flags": 1048583, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1298909658 + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "SCALE_CHILDREN": 2, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "FOCUS_LOCKED": 64, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152 + } }, - "m_location": { - "type": "class Vector3D", + "m_Flags": { + "type": "unsigned int", "id": 3, - "offset": 168, - "flags": 31, + "offset": 156, + "flags": 1048583, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2239683611 + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } }, - "m_orientation": { - "type": "class Vector3D", + "m_Window": { + "type": "class Rect", "id": 4, - "offset": 180, - "flags": 31, + "offset": 160, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2344058766 + "hash": 3105139380 }, - "m_fScale": { + "m_fTargetAlpha": { "type": "float", "id": 5, - "offset": 196, - "flags": 31, + "offset": 212, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 503137701 + "hash": 1809129834 }, - "m_templateID.m_full": { - "type": "unsigned __int64", + "m_fDisabledAlpha": { + "type": "float", "id": 6, - "offset": 96, - "flags": 31, + "offset": 216, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 633907631 + "hash": 1389987675 }, - "m_debugName": { - "type": "std::string", + "m_fAlpha": { + "type": "float", "id": 7, - "offset": 104, - "flags": 31, + "offset": 208, + "flags": 65671, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3553984419 + "hash": 482130755 }, - "m_displayKey": { - "type": "std::string", + "m_pWindowStyle": { + "type": "class SharedPointer", "id": 8, - "offset": 136, - "flags": 31, + "offset": 232, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 3023276954 + "pointer": true, + "hash": 3623628394 }, - "m_zoneTagID": { - "type": "unsigned int", + "m_sHelp": { + "type": "std::wstring", "id": 9, - "offset": 344, - "flags": 31, + "offset": 248, + "flags": 4194439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 965291410 + "hash": 2102211316 }, - "m_speedMultiplier": { - "type": "short", + "m_sScript": { + "type": "std::string", "id": 10, - "offset": 192, - "flags": 31, + "offset": 352, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 123130076 + "hash": 1846695875 }, - "m_nMobileID": { - "type": "unsigned short", + "m_Offset": { + "type": "class Point", "id": 11, - "offset": 194, - "flags": 31, + "offset": 192, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1054318939 + "hash": 3389835433 }, - "m_characterID": { - "type": "gid", + "m_Scale": { + "type": "class Point", "id": 12, - "offset": 432, - "flags": 33554463, + "offset": 200, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 210498386 + "hash": 2547159940 }, - "m_gameID": { - "type": "gid", + "m_sTip": { + "type": "std::wstring", "id": 13, - "offset": 416, - "flags": 63, + "offset": 392, + "flags": 4194439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 469020959 + "hash": 1513510520 }, - "m_gameNameID": { - "type": "unsigned int", + "m_BubbleList": { + "type": "class WindowBubble", "id": 14, "offset": 424, - "flags": 63, - "container": "Static", - "dynamic": false, + "flags": 135, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 829938293 + "hash": 2587533771 }, - "m_gamesWon": { - "type": "int", + "m_ParentOffset": { + "type": "class Rect", "id": 15, - "offset": 440, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1733371579 - }, - "m_gamesLost": { - "type": "int", - "id": 16, - "offset": 444, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1363461609 - }, - "m_gamesTied": { - "type": "int", - "id": 17, - "offset": 448, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1363742093 - }, - "m_gamesPlayed": { - "type": "int", - "id": 18, - "offset": 452, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 954596038 - }, - "m_score": { - "type": "int", - "id": 19, - "offset": 456, - "flags": 63, + "offset": 176, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 809507734 + "hash": 3091503757 } } }, - "1928665059": { - "name": "class WhirlyBurlyOption", + "667139644": { + "name": "class CloneActorCinematicAction", "bases": [ - "ServiceOptionBase", + "ActorCinematicAction", + "CinematicAction", "PropertyClass" ], - "hash": 1928665059, + "hash": 667139644, "properties": { - "m_serviceName": { - "type": "std::string", + "m_timeOffset": { + "type": "float", "id": 0, "offset": 72, - "flags": 31, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2206028813 + "hash": 2237098605 }, - "m_iconKey": { + "m_actor": { "type": "std::string", "id": 1, - "offset": 168, - "flags": 31, + "offset": 80, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2457138637 + "hash": 2285866132 }, - "m_displayKey": { - "type": "std::string", + "m_position": { + "type": "class Vector3D", "id": 2, - "offset": 104, - "flags": 31, + "offset": 124, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3023276954 + "hash": 3697900983 }, - "m_serviceIndex": { - "type": "unsigned int", + "m_yawPitchRoll": { + "type": "class Vector3D", "id": 3, - "offset": 204, - "flags": 31, + "offset": 136, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2103126710 + "hash": 3349460132 }, - "m_forceInteract": { + "m_clonePlayer": { "type": "bool", "id": 4, - "offset": 200, - "flags": 31, + "offset": 120, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1705789564 + "hash": 1369917873 } } }, - "1928119170": { - "name": "class DelaySpellEffect", + "1949770771": { + "name": "class ZoneTokenWindow*", "bases": [ - "SpellEffect", + "Window", "PropertyClass" ], - "hash": 1928119170, + "hash": 1949770771, "properties": { - "m_effectType": { - "type": "enum SpellEffect::kSpellEffects", + "m_sName": { + "type": "std::string", "id": 0, - "offset": 72, - "flags": 2097183, + "offset": 80, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2578255295, - "enum_options": { - "kInvalidSpellEffect": 0, - "kDamage": 1, - "kDamageNoCrit": 2, - "kHeal": 3, - "kHealPercent": 4, - "kSetHealPercent": 113, - "kStealHealth": 5, - "kReduceOverTime": 6, - "kDetonateOverTime": 7, - "kPushCharm": 8, - "kStealCharm": 9, - "kPushWard": 10, - "kStealWard": 11, - "kPushOverTime": 12, - "kStealOverTime": 13, - "kRemoveCharm": 14, - "kRemoveWard": 15, - "kRemoveOverTime": 16, - "kRemoveAura": 17, - "kSwapAll": 18, - "kSwapCharm": 19, - "kSwapWard": 20, - "kSwapOverTime": 21, - "kModifyIncomingDamage": 22, - "kModifyIncomingDamageFlat": 119, - "kMaximumIncomingDamage": 23, - "kModifyIncomingHeal": 24, - "kModifyIncomingHealFlat": 118, - "kModifyIncomingDamageType": 25, - "kModifyIncomingArmorPiercing": 26, - "kModifyOutgoingDamage": 27, - "kModifyOutgoingDamageFlat": 121, - "kModifyOutgoingHeal": 28, - "kModifyOutgoingHealFlat": 120, - "kModifyOutgoingDamageType": 29, - "kModifyOutgoingArmorPiercing": 30, - "kModifyOutgoingStealHealth": 31, - "kModifyIncomingStealHealth": 32, - "kBounceNext": 33, - "kBouncePrevious": 34, - "kBounceBack": 35, - "kBounceAll": 36, - "kAbsorbDamage": 37, - "kAbsorbHeal": 38, - "kModifyAccuracy": 39, - "kDispel": 40, - "kConfusion": 41, - "kCloakedCharm": 42, - "kCloakedWard": 43, - "kStunResist": 44, - "kClue": 111, - "kPipConversion": 45, - "kCritBoost": 46, - "kCritBlock": 47, - "kPolymorph": 48, - "kDelayCast": 49, - "kModifyCardCloak": 50, - "kModifyCardDamage": 51, - "kModifyCardAccuracy": 53, - "kModifyCardMutation": 54, - "kModifyCardRank": 55, - "kModifyCardArmorPiercing": 56, - "kSummonCreature": 65, - "kTeleportPlayer": 66, - "kStun": 67, - "kDampen": 68, - "kReshuffle": 69, - "kMindControl": 70, - "kModifyPips": 71, - "kModifyPowerPips": 72, - "kModifyShadowPips": 73, - "kModifyHate": 74, - "kDamageOverTime": 75, - "kHealOverTime": 76, - "kModifyPowerPipChance": 77, - "kModifyRank": 78, - "kStunBlock": 79, - "kRevealCloak": 80, - "kInstantKill": 81, - "kAfterlife": 82, - "kDeferredDamage": 83, - "kDamagePerTotalPipPower": 84, - "kModifyCardHeal": 52, - "kModifyCardCharm": 57, - "kModifyCardWard": 58, - "kModifyCardOutgoingDamage": 59, - "kModifyCardOutgoingAccuracy": 60, - "kModifyCardOutgoingHeal": 61, - "kModifyCardOutgoingArmorPiercing": 62, - "kModifyCardIncomingDamage": 63, - "kModifyCardAbsorbDamage": 64, - "kCloakedWardNoRemove": 86, - "kAddCombatTriggerList": 87, - "kRemoveCombatTriggerList": 88, - "kBacklashDamage": 89, - "kModifyBacklash": 90, - "kIntercept": 91, - "kShadowSelf": 92, - "kShadowCreature": 93, - "kModifyShadowCreatureLevel": 94, - "kSelectShadowCreatureAttackTarget": 95, - "kShadowDecrementTurn": 96, - "kCritBoostSchoolSpecific": 97, - "kSpawnCreature": 98, - "kUnPolymorph": 99, - "kPowerPipConversion": 100, - "kProtectCardBeneficial": 101, - "kProtectCardHarmful": 102, - "kProtectBeneficial": 103, - "kProtectHarmful": 104, - "kDivideDamage": 105, - "kCollectEssence": 106, - "kKillCreature": 107, - "kDispelBlock": 108, - "kConfusionBlock": 109, - "kModifyPipRoundRate": 110, - "kMaxHealthDamage": 112, - "kUntargetable": 114, - "kMakeTargetable": 115, - "kForceTargetable": 116, - "kRemoveStunBlock": 117, - "kExitCombat": 122, - "kSuspendPips": 123, - "kResumePips": 124, - "kAutoPass": 125, - "kStopAutoPass": 126, - "kVanish": 127, - "kStopVanish": 128, - "kMaxHealthHeal": 129, - "kHealByWard": 130, - "kTaunt": 131, - "kPacify": 132, - "kRemoveTargetRestriction": 133, - "kConvertHangingEffect": 134, - "kAddSpellToDeck": 135, - "kAddSpellToHand": 136, - "kModifyIncomingDamageOverTime": 137, - "kModifyIncomingHealOverTime": 138, - "kModifyCardDamagebyRank": 139, - "kPushConvertedCharm": 140, - "kStealConvertedCharm": 141, - "kPushConvertedWard": 142, - "kStealConvertedWard": 143, - "kPushConvertedOverTime": 144, - "kStealConvertedOverTime": 145, - "kRemoveConvertedCharm": 146, - "kRemoveConvertedWard": 147, - "kRemoveConvertedOverTime": 148, - "kModifyOverTimeDuration": 149, - "kModifySchoolPips": 150 - } + "hash": 2306437263 }, - "m_effectParam": { - "type": "int", + "m_Children": { + "type": "class SharedPointer", "id": 1, - "offset": 76, - "flags": 31, - "container": "Static", - "dynamic": false, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 357920024 + "pointer": true, + "hash": 2621225959 }, - "m_disposition": { - "type": "enum SpellEffect::kHangingDisposition", + "m_Style": { + "type": "unsigned int", "id": 2, - "offset": 80, - "flags": 2097159, + "offset": 152, + "flags": 1048583, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1904841031, + "hash": 983582334, "enum_options": { - "kBoth": 0, - "kBeneficial": 1, - "kHarmful": 2 + "HAS_BACK": 1, + "SCALE_CHILDREN": 2, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "FOCUS_LOCKED": 64, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152 } }, - "m_sDamageType": { - "type": "std::string", + "m_Flags": { + "type": "unsigned int", "id": 3, - "offset": 88, - "flags": 7, + "offset": 156, + "flags": 1048583, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2501054223 + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } }, - "m_damageType": { - "type": "unsigned int", + "m_Window": { + "type": "class Rect", "id": 4, - "offset": 84, - "flags": 31, + "offset": 160, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 737882766 + "hash": 3105139380 }, - "m_pipNum": { - "type": "int", + "m_fTargetAlpha": { + "type": "float", "id": 5, - "offset": 128, - "flags": 7, + "offset": 212, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 830827539 + "hash": 1809129834 }, - "m_actNum": { - "type": "int", + "m_fDisabledAlpha": { + "type": "float", "id": 6, - "offset": 132, - "flags": 31, + "offset": 216, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 236824866 + "hash": 1389987675 }, - "m_effectTarget": { - "type": "enum SpellEffect::kEffectTarget", + "m_fAlpha": { + "type": "float", "id": 7, - "offset": 140, - "flags": 2097183, + "offset": 208, + "flags": 65671, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2458940523, - "enum_options": { - "kInvalidTarget": 0, - "kSpell": 1, - "kSpecificSpells": 2, - "kGlobal": 3, - "kEnemyTeam": 4, - "kEnemyTeamAllAtOnce": 5, - "kFriendlyTeam": 6, - "kFriendlyTeamAllAtOnce": 7, - "kEnemySingle": 8, - "kFriendlySingle": 9, - "kMinion": 10, - "kFriendlyMinion": 17, - "kEnemyMinion": 18, - "kSelf": 11, - "kAtLeastOneEnemy": 13, - "kPreselectedEnemySingle": 12, - "kMultiTargetEnemy": 14, - "kMultiTargetFriendly": 15, - "kFriendlySingleNotMe": 16 - } + "hash": 482130755 }, - "m_numRounds": { - "type": "int", + "m_pWindowStyle": { + "type": "class SharedPointer", "id": 8, - "offset": 144, - "flags": 31, + "offset": 232, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1229753829 + "pointer": true, + "hash": 3623628394 }, - "m_paramPerRound": { - "type": "int", + "m_sHelp": { + "type": "std::wstring", "id": 9, - "offset": 148, - "flags": 31, + "offset": 248, + "flags": 4194439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 683234234 + "hash": 2102211316 }, - "m_healModifier": { - "type": "float", + "m_sScript": { + "type": "std::string", "id": 10, - "offset": 152, - "flags": 7, + "offset": 352, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1317921248, - "enum_options": { - "__DEFAULT": "1.0" - } + "hash": 1846695875 }, - "m_spellTemplateID": { - "type": "unsigned int", + "m_Offset": { + "type": "class Point", "id": 11, - "offset": 120, - "flags": 31, + "offset": 192, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 585567702 + "hash": 3389835433 }, - "m_enchantmentSpellTemplateID": { - "type": "unsigned int", + "m_Scale": { + "type": "class Point", "id": 12, - "offset": 124, - "flags": 31, + "offset": 200, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 246955115 + "hash": 2547159940 }, - "m_act": { - "type": "bool", + "m_sTip": { + "type": "std::wstring", "id": 13, - "offset": 136, - "flags": 7, + "offset": 392, + "flags": 4194439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 269510283 + "hash": 1513510520 }, - "m_cloaked": { - "type": "bool", + "m_BubbleList": { + "type": "class WindowBubble", "id": 14, - "offset": 157, - "flags": 31, - "container": "Static", - "dynamic": false, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 7349510 + "hash": 2587533771 }, - "m_bypassProtection": { - "type": "bool", + "m_ParentOffset": { + "type": "class Rect", "id": 15, - "offset": 159, - "flags": 31, + "offset": 176, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1657138252 - }, - "m_armorPiercingParam": { - "type": "int", - "id": 16, - "offset": 160, - "flags": 31, + "hash": 3091503757 + } + } + }, + "1088292311": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1088292311, + "properties": { + "m_team": { + "type": "unsigned char", + "id": 0, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2025530205 + "hash": 857479191 }, - "m_chancePerTarget": { - "type": "int", - "id": 17, - "offset": 164, - "flags": 31, + "m_passport": { + "type": "unsigned int", + "id": 1, + "offset": 76, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 845426794 + "hash": 1362521513 }, - "m_protected": { - "type": "bool", - "id": 18, - "offset": 168, - "flags": 31, - "container": "Static", - "dynamic": false, + "m_unitTypesList": { + "type": "unsigned char", + "id": 2, + "offset": 80, + "flags": 7, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 1445655037 + "hash": 2643134017 }, - "m_converted": { - "type": "bool", - "id": 19, - "offset": 169, - "flags": 31, + "m_cardsUsedList": { + "type": "unsigned int", + "id": 3, + "offset": 96, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 711045287 + } + } + }, + "1523745775": { + "name": "class FontMapSWF*", + "bases": [ + "PropertyClass" + ], + "hash": 1523745775, + "properties": { + "m_mappings": { + "type": "class FontMapping", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 3543733145 + }, + "m_defaultFont": { + "type": "std::string", + "id": 1, + "offset": 88, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1590428797 - }, - "m_rank": { + "hash": 2375516599 + } + } + }, + "666630246": { + "name": "class SharedPointer", + "bases": [ + "ControlButtonState", + "PropertyClass" + ], + "hash": 666630246, + "properties": { + "m_nAnimBeginFrame": { "type": "int", - "id": 20, - "offset": 208, - "flags": 7, + "id": 0, + "offset": 72, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 219803942 + "hash": 1469531165 }, - "m_damage": { + "m_nAnimEndFrame": { "type": "int", - "id": 21, - "offset": 236, - "flags": 31, + "id": 1, + "offset": 76, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 351627865 + "hash": 1659451087 }, - "m_rounds": { - "type": "int", - "id": 22, - "offset": 240, - "flags": 31, + "m_fAnimRate": { + "type": "float", + "id": 2, + "offset": 80, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 916427829 + "hash": 802385934 }, - "m_spellDelayedTemplateID": { - "type": "unsigned int", - "id": 23, - "offset": 244, - "flags": 31, + "m_bAnimLoop": { + "type": "bool", + "id": 3, + "offset": 84, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2227549390 + "hash": 1487150228 }, - "m_spellDelayedTemplateDamageID": { - "type": "unsigned int", - "id": 24, - "offset": 248, + "m_bAnimForceFinish": { + "type": "bool", + "id": 4, + "offset": 85, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 943660298 + } + } + }, + "1946911045": { + "name": "class RespecOption*", + "bases": [ + "ServiceOptionBase", + "PropertyClass" + ], + "hash": 1946911045, + "properties": { + "m_serviceName": { + "type": "std::string", + "id": 0, + "offset": 72, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1629569933 + "hash": 2206028813 }, - "m_spellEnchanterTemplateID": { - "type": "unsigned int", - "id": 25, - "offset": 252, + "m_iconKey": { + "type": "std::string", + "id": 1, + "offset": 168, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 760931950 + "hash": 2457138637 }, - "m_targetSubcircleList": { - "type": "int", - "id": 26, - "offset": 264, + "m_displayKey": { + "type": "std::string", + "id": 2, + "offset": 104, "flags": 31, - "container": "List", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 227779897 + "hash": 3023276954 }, - "m_spellHits": { - "type": "char", - "id": 27, - "offset": 280, + "m_serviceIndex": { + "type": "unsigned int", + "id": 3, + "offset": 204, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1193115340 + "hash": 2103126710 }, - "m_spell": { - "type": "class SharedPointer", - "id": 28, - "offset": 288, + "m_forceInteract": { + "type": "bool", + "id": 4, + "offset": 200, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1160380498 + "pointer": false, + "hash": 1705789564 } } }, - "1526341501": { - "name": "class ClientCSRRegistryList*", + "666296540": { + "name": "class SharedPointer", "bases": [ "PropertyClass" ], - "hash": 1526341501, + "hash": 666296540, + "properties": {} + }, + "1946785963": { + "name": "class SpeedEffectInfo", + "bases": [ + "GameEffectInfo", + "PropertyClass" + ], + "hash": 1946785963, "properties": { - "m_propertyList": { - "type": "class SharedPointer", + "m_effectName": { + "type": "std::string", "id": 0, "offset": 72, - "flags": 23, - "container": "List", - "dynamic": true, + "flags": 31, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2832578002 + "pointer": false, + "hash": 2029161513 + }, + "m_speedMultiplier": { + "type": "int", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 32503058 } } }, - "1928096799": { - "name": "class SharedPointer", + "235811605": { + "name": "class BurnAuraCinematicAction*", "bases": [ - "MoveController::MoveCommand", + "ActorCinematicAction", + "CinematicAction", "PropertyClass" ], - "hash": 1928096799, + "hash": 235811605, "properties": { - "m_fYaw": { + "m_timeOffset": { "type": "float", "id": 0, - "offset": 88, - "flags": 31, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 309564718 + "hash": 2237098605 }, - "m_fTime": { - "type": "double", + "m_actor": { + "type": "std::string", "id": 1, - "offset": 104, - "flags": 31, + "offset": 80, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2691355138 + "hash": 2285866132 } } }, - "1928217474": { - "name": "class DelaySpellEffect*", + "1088697702": { + "name": "class ZoneTokenTimerControl*", "bases": [ - "SpellEffect", + "ZoneTokenBaseControl", + "Window", "PropertyClass" ], - "hash": 1928217474, + "hash": 1088697702, "properties": { - "m_effectType": { - "type": "enum SpellEffect::kSpellEffects", + "m_sName": { + "type": "std::string", "id": 0, - "offset": 72, - "flags": 2097183, + "offset": 80, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2578255295, - "enum_options": { - "kInvalidSpellEffect": 0, - "kDamage": 1, - "kDamageNoCrit": 2, - "kHeal": 3, - "kHealPercent": 4, - "kSetHealPercent": 113, - "kStealHealth": 5, - "kReduceOverTime": 6, - "kDetonateOverTime": 7, - "kPushCharm": 8, - "kStealCharm": 9, - "kPushWard": 10, - "kStealWard": 11, - "kPushOverTime": 12, - "kStealOverTime": 13, - "kRemoveCharm": 14, - "kRemoveWard": 15, - "kRemoveOverTime": 16, - "kRemoveAura": 17, - "kSwapAll": 18, - "kSwapCharm": 19, - "kSwapWard": 20, - "kSwapOverTime": 21, - "kModifyIncomingDamage": 22, - "kModifyIncomingDamageFlat": 119, - "kMaximumIncomingDamage": 23, - "kModifyIncomingHeal": 24, - "kModifyIncomingHealFlat": 118, - "kModifyIncomingDamageType": 25, - "kModifyIncomingArmorPiercing": 26, - "kModifyOutgoingDamage": 27, - "kModifyOutgoingDamageFlat": 121, - "kModifyOutgoingHeal": 28, - "kModifyOutgoingHealFlat": 120, - "kModifyOutgoingDamageType": 29, - "kModifyOutgoingArmorPiercing": 30, - "kModifyOutgoingStealHealth": 31, - "kModifyIncomingStealHealth": 32, - "kBounceNext": 33, - "kBouncePrevious": 34, - "kBounceBack": 35, - "kBounceAll": 36, - "kAbsorbDamage": 37, - "kAbsorbHeal": 38, - "kModifyAccuracy": 39, - "kDispel": 40, - "kConfusion": 41, - "kCloakedCharm": 42, - "kCloakedWard": 43, - "kStunResist": 44, - "kClue": 111, - "kPipConversion": 45, - "kCritBoost": 46, - "kCritBlock": 47, - "kPolymorph": 48, - "kDelayCast": 49, - "kModifyCardCloak": 50, - "kModifyCardDamage": 51, - "kModifyCardAccuracy": 53, - "kModifyCardMutation": 54, - "kModifyCardRank": 55, - "kModifyCardArmorPiercing": 56, - "kSummonCreature": 65, - "kTeleportPlayer": 66, - "kStun": 67, - "kDampen": 68, - "kReshuffle": 69, - "kMindControl": 70, - "kModifyPips": 71, - "kModifyPowerPips": 72, - "kModifyShadowPips": 73, - "kModifyHate": 74, - "kDamageOverTime": 75, - "kHealOverTime": 76, - "kModifyPowerPipChance": 77, - "kModifyRank": 78, - "kStunBlock": 79, - "kRevealCloak": 80, - "kInstantKill": 81, - "kAfterlife": 82, - "kDeferredDamage": 83, - "kDamagePerTotalPipPower": 84, - "kModifyCardHeal": 52, - "kModifyCardCharm": 57, - "kModifyCardWard": 58, - "kModifyCardOutgoingDamage": 59, - "kModifyCardOutgoingAccuracy": 60, - "kModifyCardOutgoingHeal": 61, - "kModifyCardOutgoingArmorPiercing": 62, - "kModifyCardIncomingDamage": 63, - "kModifyCardAbsorbDamage": 64, - "kCloakedWardNoRemove": 86, - "kAddCombatTriggerList": 87, - "kRemoveCombatTriggerList": 88, - "kBacklashDamage": 89, - "kModifyBacklash": 90, - "kIntercept": 91, - "kShadowSelf": 92, - "kShadowCreature": 93, - "kModifyShadowCreatureLevel": 94, - "kSelectShadowCreatureAttackTarget": 95, - "kShadowDecrementTurn": 96, - "kCritBoostSchoolSpecific": 97, - "kSpawnCreature": 98, - "kUnPolymorph": 99, - "kPowerPipConversion": 100, - "kProtectCardBeneficial": 101, - "kProtectCardHarmful": 102, - "kProtectBeneficial": 103, - "kProtectHarmful": 104, - "kDivideDamage": 105, - "kCollectEssence": 106, - "kKillCreature": 107, - "kDispelBlock": 108, - "kConfusionBlock": 109, - "kModifyPipRoundRate": 110, - "kMaxHealthDamage": 112, - "kUntargetable": 114, - "kMakeTargetable": 115, - "kForceTargetable": 116, - "kRemoveStunBlock": 117, - "kExitCombat": 122, - "kSuspendPips": 123, - "kResumePips": 124, - "kAutoPass": 125, - "kStopAutoPass": 126, - "kVanish": 127, - "kStopVanish": 128, - "kMaxHealthHeal": 129, - "kHealByWard": 130, - "kTaunt": 131, - "kPacify": 132, - "kRemoveTargetRestriction": 133, - "kConvertHangingEffect": 134, - "kAddSpellToDeck": 135, - "kAddSpellToHand": 136, - "kModifyIncomingDamageOverTime": 137, - "kModifyIncomingHealOverTime": 138, - "kModifyCardDamagebyRank": 139, - "kPushConvertedCharm": 140, - "kStealConvertedCharm": 141, - "kPushConvertedWard": 142, - "kStealConvertedWard": 143, - "kPushConvertedOverTime": 144, - "kStealConvertedOverTime": 145, - "kRemoveConvertedCharm": 146, - "kRemoveConvertedWard": 147, - "kRemoveConvertedOverTime": 148, - "kModifyOverTimeDuration": 149, - "kModifySchoolPips": 150 - } + "hash": 2306437263 }, - "m_effectParam": { - "type": "int", + "m_Children": { + "type": "class SharedPointer", "id": 1, - "offset": 76, - "flags": 31, - "container": "Static", - "dynamic": false, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 357920024 + "pointer": true, + "hash": 2621225959 }, - "m_disposition": { - "type": "enum SpellEffect::kHangingDisposition", + "m_Style": { + "type": "unsigned int", "id": 2, - "offset": 80, - "flags": 2097159, + "offset": 152, + "flags": 1048583, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1904841031, + "hash": 983582334, "enum_options": { - "kBoth": 0, - "kBeneficial": 1, - "kHarmful": 2 + "HAS_BACK": 1, + "SCALE_CHILDREN": 2, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "FOCUS_LOCKED": 64, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152 } }, - "m_sDamageType": { - "type": "std::string", + "m_Flags": { + "type": "unsigned int", "id": 3, - "offset": 88, - "flags": 7, + "offset": 156, + "flags": 1048583, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2501054223 + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } }, - "m_damageType": { - "type": "unsigned int", + "m_Window": { + "type": "class Rect", "id": 4, - "offset": 84, - "flags": 31, + "offset": 160, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 737882766 + "hash": 3105139380 }, - "m_pipNum": { - "type": "int", + "m_fTargetAlpha": { + "type": "float", "id": 5, - "offset": 128, - "flags": 7, + "offset": 212, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 830827539 + "hash": 1809129834 }, - "m_actNum": { - "type": "int", + "m_fDisabledAlpha": { + "type": "float", "id": 6, - "offset": 132, - "flags": 31, + "offset": 216, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 236824866 + "hash": 1389987675 }, - "m_effectTarget": { - "type": "enum SpellEffect::kEffectTarget", + "m_fAlpha": { + "type": "float", "id": 7, - "offset": 140, - "flags": 2097183, + "offset": 208, + "flags": 65671, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2458940523, - "enum_options": { - "kInvalidTarget": 0, - "kSpell": 1, - "kSpecificSpells": 2, - "kGlobal": 3, - "kEnemyTeam": 4, - "kEnemyTeamAllAtOnce": 5, - "kFriendlyTeam": 6, - "kFriendlyTeamAllAtOnce": 7, - "kEnemySingle": 8, - "kFriendlySingle": 9, - "kMinion": 10, - "kFriendlyMinion": 17, - "kEnemyMinion": 18, - "kSelf": 11, - "kAtLeastOneEnemy": 13, - "kPreselectedEnemySingle": 12, - "kMultiTargetEnemy": 14, - "kMultiTargetFriendly": 15, - "kFriendlySingleNotMe": 16 - } + "hash": 482130755 }, - "m_numRounds": { - "type": "int", + "m_pWindowStyle": { + "type": "class SharedPointer", "id": 8, - "offset": 144, - "flags": 31, + "offset": 232, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1229753829 + "pointer": true, + "hash": 3623628394 }, - "m_paramPerRound": { - "type": "int", + "m_sHelp": { + "type": "std::wstring", "id": 9, - "offset": 148, - "flags": 31, + "offset": 248, + "flags": 4194439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 683234234 + "hash": 2102211316 }, - "m_healModifier": { - "type": "float", + "m_sScript": { + "type": "std::string", "id": 10, - "offset": 152, - "flags": 7, + "offset": 352, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1317921248, - "enum_options": { - "__DEFAULT": "1.0" - } + "hash": 1846695875 }, - "m_spellTemplateID": { - "type": "unsigned int", + "m_Offset": { + "type": "class Point", "id": 11, - "offset": 120, - "flags": 31, + "offset": 192, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 585567702 + "hash": 3389835433 }, - "m_enchantmentSpellTemplateID": { - "type": "unsigned int", + "m_Scale": { + "type": "class Point", "id": 12, - "offset": 124, - "flags": 31, + "offset": 200, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 246955115 + "hash": 2547159940 }, - "m_act": { - "type": "bool", + "m_sTip": { + "type": "std::wstring", "id": 13, - "offset": 136, - "flags": 7, + "offset": 392, + "flags": 4194439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 269510283 + "hash": 1513510520 }, - "m_cloaked": { - "type": "bool", + "m_BubbleList": { + "type": "class WindowBubble", "id": 14, - "offset": 157, - "flags": 31, - "container": "Static", - "dynamic": false, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 7349510 + "hash": 2587533771 }, - "m_bypassProtection": { - "type": "bool", + "m_ParentOffset": { + "type": "class Rect", "id": 15, - "offset": 159, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1657138252 - }, - "m_armorPiercingParam": { - "type": "int", - "id": 16, - "offset": 160, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2025530205 - }, - "m_chancePerTarget": { - "type": "int", - "id": 17, - "offset": 164, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 845426794 - }, - "m_protected": { - "type": "bool", - "id": 18, - "offset": 168, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1445655037 - }, - "m_converted": { - "type": "bool", - "id": 19, - "offset": 169, - "flags": 31, + "offset": 176, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1590428797 - }, - "m_rank": { - "type": "int", - "id": 20, - "offset": 208, + "hash": 3091503757 + } + } + }, + "1524138991": { + "name": "class FontMapSWF", + "bases": [ + "PropertyClass" + ], + "hash": 1524138991, + "properties": { + "m_mappings": { + "type": "class FontMapping", + "id": 0, + "offset": 72, "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 219803942 - }, - "m_damage": { - "type": "int", - "id": 21, - "offset": 236, - "flags": 31, - "container": "Static", - "dynamic": false, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 351627865 + "hash": 3543733145 }, - "m_rounds": { - "type": "int", - "id": 22, - "offset": 240, - "flags": 31, + "m_defaultFont": { + "type": "std::string", + "id": 1, + "offset": 88, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 916427829 - }, - "m_spellDelayedTemplateID": { + "hash": 2375516599 + } + } + }, + "236178796": { + "name": "class TreasureCardVaultBehavior", + "bases": [ + "TreasureCardVaultBehaviorBase", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 236178796, + "properties": { + "m_behaviorTemplateNameID": { "type": "unsigned int", - "id": 23, - "offset": 244, - "flags": 31, + "id": 0, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2227549390 + "hash": 223437287 }, - "m_spellDelayedTemplateDamageID": { - "type": "unsigned int", - "id": 24, - "offset": 248, - "flags": 31, + "m_spellData": { + "type": "std::string", + "id": 1, + "offset": 128, + "flags": 575, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1629569933 - }, - "m_spellEnchanterTemplateID": { - "type": "unsigned int", - "id": 25, - "offset": 252, + "hash": 2688126101 + } + } + }, + "1523922554": { + "name": "class ReqCombatStatus", + "bases": [ + "ConditionalSpellEffectRequirement", + "Requirement", + "PropertyClass" + ], + "hash": 1523922554, + "properties": { + "m_applyNOT": { + "type": "bool", + "id": 0, + "offset": 72, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 760931950 - }, - "m_targetSubcircleList": { - "type": "int", - "id": 26, - "offset": 264, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 227779897 + "hash": 1746328074, + "enum_options": { + "__DEFAULT": 0 + } }, - "m_spellHits": { - "type": "char", - "id": 27, - "offset": 280, - "flags": 31, + "m_operator": { + "type": "enum Requirement::Operator", + "id": 1, + "offset": 76, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1193115340 + "hash": 2672792317, + "enum_options": { + "ROP_AND": 0, + "ROP_OR": 1, + "__DEFAULT": "ROP_AND" + } }, - "m_spell": { - "type": "class SharedPointer", - "id": 28, - "offset": 288, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1160380498 - } - } - }, - "1526409300": { - "name": "class NonCombatMayCastSpellDescription", - "bases": [ - "PropertyClass" - ], - "hash": 1526409300, - "properties": { - "m_description": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 8388615, + "m_targetType": { + "type": "enum ConditionalSpellEffectRequirement::RequirementTarget", + "id": 2, + "offset": 80, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1649374815 + "hash": 2547737902, + "enum_options": { + "RT_Caster": 0, + "RT_Target": 1 + } }, - "m_displaySpellName": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 268435463, + "m_status": { + "type": "enum ReqCombatStatus::kStatusEffect", + "id": 3, + "offset": 88, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3323484466, + "hash": 2594569198, "enum_options": { - "__BASECLASS": "SpellTemplate" + "kStunned": 0, + "kConfused": 1 } } } }, - "1929013425": { - "name": "class RecentWizardInfo*", + "666859125": { + "name": "class GoldAmountTemplate*", "bases": [ + "WizItemTemplate", + "ItemTemplate", + "GameObjectTemplate", + "CoreTemplate", "PropertyClass" ], - "hash": 1929013425, + "hash": 666859125, "properties": { - "m_characterGID": { - "type": "gid", + "m_behaviors": { + "type": "class BehaviorTemplate*", "id": 0, "offset": 72, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "Vector", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 501688601 + "pointer": true, + "hash": 1197808594 }, - "m_packedName": { + "m_objectName": { "type": "std::string", "id": 1, - "offset": 88, + "offset": 96, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1805208228 + "hash": 2154940147 }, - "m_lastSeenTime": { + "m_templateID": { "type": "unsigned int", "id": 2, - "offset": 80, - "flags": 7, + "offset": 128, + "flags": 16777223, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2066613339 + "hash": 1286746870 }, - "m_level": { + "m_visualID": { "type": "unsigned int", "id": 3, - "offset": 120, + "offset": 132, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1012687813 + "hash": 1118778894 }, - "m_school": { - "type": "unsigned int", + "m_adjectiveList": { + "type": "std::string", "id": 4, - "offset": 124, + "offset": 248, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 1152268885 + "hash": 3195213318 }, - "m_combatCount": { - "type": "unsigned int", + "m_exemptFromAOI": { + "type": "bool", "id": 5, - "offset": 128, + "offset": 240, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2338224044 + "hash": 1457879059 }, - "m_instanceCount": { - "type": "unsigned int", + "m_displayName": { + "type": "std::string", "id": 6, - "offset": 132, - "flags": 7, + "offset": 168, + "flags": 8388615, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1489352139 + "hash": 2446900370 }, - "m_hatchCount": { - "type": "unsigned int", + "m_description": { + "type": "std::string", "id": 7, "offset": 136, - "flags": 7, + "flags": 8388615, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1273194302 + "hash": 1649374815 }, - "m_beastmoonCount": { - "type": "unsigned int", + "m_nObjectType": { + "type": "enum ObjectType", "id": 8, - "offset": 140, - "flags": 7, + "offset": 200, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1289638718 + "hash": 2118905880, + "enum_options": { + "OT_UNDEFINED": 0, + "OT_PLAYER": 1, + "OT_NPC": 2, + "OT_PROP": 3, + "OT_OBJECT": 4, + "OT_HOUSE": 5, + "OT_KEY": 6, + "OT_OLD_KEY": 7, + "OT_DEED": 8, + "OT_MAIL": 9, + "OT_RECIPE": 17, + "OT_EQUIP_HEAD": 10, + "OT_EQUIP_CHEST": 11, + "OT_EQUIP_LEGS": 12, + "OT_EQUIP_HANDS": 13, + "OT_EQUIP_FINGER": 14, + "OT_EQUIP_FEET": 15, + "OT_EQUIP_EAR": 16, + "OT_BUILDING_BLOCK": 18, + "OT_BUILDING_BLOCK_SOLID": 19, + "OT_GOLF": 20, + "OT_DOOR": 21, + "OT_PET": 22, + "OT_FABRIC": 23, + "OT_WINDOW": 24, + "OT_ROOF": 25, + "OT_HORSE": 26, + "OT_STRUCTURE": 27, + "OT_HOUSING_TEXTURE": 28, + "OT_PLANT": 29 + } }, - "m_derbyCount": { - "type": "unsigned int", + "m_sIcon": { + "type": "std::string", "id": 9, - "offset": 144, - "flags": 7, + "offset": 208, + "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 265597676 + "hash": 2306259831 }, - "m_PVPCount": { - "type": "unsigned int", + "m_equipRequirements": { + "type": "class RequirementList*", "id": 10, - "offset": 148, + "offset": 280, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 624008108 + "pointer": true, + "hash": 2762617226 }, - "m_housingGameCount": { - "type": "unsigned int", + "m_purchaseRequirements": { + "type": "class RequirementList*", "id": 11, - "offset": 152, + "offset": 288, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1403136525 + "pointer": true, + "hash": 3174641793 }, - "m_worldID": { - "type": "unsigned int", + "m_equipEffects": { + "type": "class GameEffectInfo*", "id": 12, - "offset": 156, + "offset": 296, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 397177058 + "pointer": true, + "hash": 836628351 }, - "m_objectGID": { - "type": "gid", + "m_baseCost": { + "type": "float", "id": 13, - "offset": 160, + "offset": 312, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2037310403 + "hash": 1565352651 }, - "m_isOnline": { - "type": "bool", + "m_creditsCost": { + "type": "float", "id": 14, - "offset": 168, + "offset": 320, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1681359252 - } - } - }, - "1526786676": { - "name": "class MatchStatusUpdate*", - "bases": [ - "TournamentUpdate", - "PropertyClass" - ], - "hash": 1526786676, - "properties": { - "m_matchID": { - "type": "gid", - "id": 0, - "offset": 72, - "flags": 31, + "hash": 805514974 + }, + "m_avatarInfo": { + "type": "class AvatarItemInfoBase*", + "id": 15, + "offset": 328, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, + "pointer": true, + "hash": 2627321299 + }, + "m_avatarFlags": { + "type": "std::string", + "id": 16, + "offset": 336, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, "pointer": false, - "hash": 1757621298 + "hash": 2347762759 }, - "m_status": { + "m_itemLimit": { "type": "int", - "id": 1, - "offset": 80, - "flags": 31, + "id": 17, + "offset": 316, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 960781182 - } - } - }, - "1928915121": { - "name": "class RecentWizardInfo", - "bases": [ - "PropertyClass" - ], - "hash": 1928915121, - "properties": { - "m_characterGID": { - "type": "gid", - "id": 0, - "offset": 72, + "hash": 1799746856 + }, + "m_holidayFlag": { + "type": "std::string", + "id": 18, + "offset": 352, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 501688601 + "hash": 2994795359 }, - "m_packedName": { - "type": "std::string", - "id": 1, - "offset": 88, + "m_itemSetBonusTemplateID": { + "type": "unsigned int", + "id": 19, + "offset": 384, + "flags": 33554439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1316835672 + }, + "m_numPrimaryColors": { + "type": "int", + "id": 20, + "offset": 428, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1805208228 + "hash": 981103872 }, - "m_lastSeenTime": { - "type": "unsigned int", - "id": 2, - "offset": 80, + "m_numSecondaryColors": { + "type": "int", + "id": 21, + "offset": 432, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2066613339 + "hash": 1310416868 }, - "m_level": { - "type": "unsigned int", - "id": 3, - "offset": 120, + "m_numPatterns": { + "type": "int", + "id": 22, + "offset": 436, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1012687813 + "hash": 953162171 }, "m_school": { - "type": "unsigned int", - "id": 4, - "offset": 124, + "type": "std::string", + "id": 23, + "offset": 392, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1152268885 + "hash": 2438566051 }, - "m_combatCount": { - "type": "unsigned int", - "id": 5, - "offset": 128, + "m_arenaPointCost": { + "type": "int", + "id": 24, + "offset": 440, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2338224044 + "hash": 1819621796 }, - "m_instanceCount": { - "type": "unsigned int", - "id": 6, - "offset": 132, + "m_pvpCurrencyCost": { + "type": "int", + "id": 25, + "offset": 444, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1489352139 + "hash": 645595444 }, - "m_hatchCount": { - "type": "unsigned int", - "id": 7, - "offset": 136, + "m_pvpTourneyCurrencyCost": { + "type": "int", + "id": 26, + "offset": 448, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1273194302 + "hash": 517874954 }, - "m_beastmoonCount": { - "type": "unsigned int", - "id": 8, - "offset": 140, + "m_rank": { + "type": "int", + "id": 27, + "offset": 424, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1289638718 + "hash": 219803942 }, - "m_derbyCount": { - "type": "unsigned int", - "id": 9, - "offset": 144, + "m_boyIconIndex": { + "type": "int", + "id": 28, + "offset": 452, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 265597676 + "hash": 802140453 }, - "m_PVPCount": { - "type": "unsigned int", - "id": 10, - "offset": 148, + "m_girlIconIndex": { + "type": "int", + "id": 29, + "offset": 456, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 624008108 + "hash": 832706793 }, - "m_housingGameCount": { - "type": "unsigned int", - "id": 11, - "offset": 152, + "m_leashOffsetOverride": { + "type": "class SharedPointer", + "id": 30, + "offset": 464, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1403136525 + "pointer": true, + "hash": 1692586788 }, - "m_worldID": { - "type": "unsigned int", - "id": 12, - "offset": 156, - "flags": 7, + "m_rarity": { + "type": "enum RarityType", + "id": 31, + "offset": 460, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 397177058 + "hash": 2253792108, + "enum_options": { + "RT_COMMON": 0, + "RT_UNCOMMON": 1, + "RT_RARE": 2, + "RT_ULTRARARE": 3, + "RT_EPIC": 4 + } }, - "m_objectGID": { - "type": "gid", - "id": 13, - "offset": 160, + "m_goldAmount": { + "type": "int", + "id": 32, + "offset": 480, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2037310403 + "hash": 754429876 }, - "m_isOnline": { - "type": "bool", - "id": 14, - "offset": 168, - "flags": 7, + "m_nif": { + "type": "std::string", + "id": 33, + "offset": 488, + "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1681359252 + "hash": 1764743064 } } }, - "1526641483": { - "name": "class GoalData*", + "1949477602": { + "name": "class SharedPointer", "bases": [ "PropertyClass" ], - "hash": 1526641483, + "hash": 1949477602, "properties": { - "m_name": { + "m_settingName": { "type": "std::string", "id": 0, "offset": 72, @@ -422425,159 +119656,191 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 1717359772 - } - } - }, - "1526641099": { - "name": "class GoalData", - "bases": [ - "PropertyClass" - ], - "hash": 1526641099, - "properties": { - "m_name": { + "hash": 2915007546 + }, + "m_settingValue": { "type": "std::string", - "id": 0, - "offset": 72, + "id": 1, + "offset": 104, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1717359772 + "hash": 3178360950 } } }, - "1929106127": { - "name": "class Quaternion", - "bases": [], - "hash": 1929106127, - "properties": {} - }, - "1526711693": { - "name": "struct HandParam", - "bases": [], - "hash": 1526711693, - "properties": {} - }, - "1929297994": { - "name": "class SharedPointer", + "1523917434": { + "name": "class ReqCombatStatus*", "bases": [ - "TextureD3D", - "Texture", + "ConditionalSpellEffectRequirement", + "Requirement", "PropertyClass" ], - "hash": 1929297994, + "hash": 1523917434, "properties": { - "m_sFilename": { - "type": "std::string", + "m_applyNOT": { + "type": "bool", "id": 0, - "offset": 104, - "flags": 131207, + "offset": 72, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2431512111 + "hash": 1746328074, + "enum_options": { + "__DEFAULT": 0 + } }, - "m_bAlphaChannel": { - "type": "bool", + "m_operator": { + "type": "enum Requirement::Operator", "id": 1, - "offset": 137, - "flags": 135, + "offset": 76, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1780697684 + "hash": 2672792317, + "enum_options": { + "ROP_AND": 0, + "ROP_OR": 1, + "__DEFAULT": "ROP_AND" + } }, - "m_bDoubleSided": { - "type": "bool", + "m_targetType": { + "type": "enum ConditionalSpellEffectRequirement::RequirementTarget", "id": 2, - "offset": 138, - "flags": 135, + "offset": 80, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1054874233 + "hash": 2547737902, + "enum_options": { + "RT_Caster": 0, + "RT_Target": 1 + } }, - "m_bMipMap": { - "type": "bool", + "m_status": { + "type": "enum ReqCombatStatus::kStatusEffect", "id": 3, - "offset": 139, - "flags": 135, + "offset": 88, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1791042393 + "hash": 2594569198, + "enum_options": { + "kStunned": 0, + "kConfused": 1 + } } } }, - "1528465126": { - "name": "class SharedPointer", + "666685277": { + "name": "class SharedPointer", "bases": [ + "LootInfo", + "LootInfoBase", "PropertyClass" ], - "hash": 1528465126, + "hash": 666685277, "properties": { - "m_updates": { - "type": "class SharedPointer", + "m_lootType": { + "type": "enum LootInfo::LOOT_TYPE", "id": 0, - "offset": 88, - "flags": 31, - "container": "List", - "dynamic": true, + "offset": 72, + "flags": 2097183, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3250680338 + "pointer": false, + "hash": 1591891442, + "enum_options": { + "LOOT_TYPE_NONE": 0, + "LOOT_TYPE_GOLD": 1, + "LOOT_TYPE_MANA": 2, + "LOOT_TYPE_ITEM": 3, + "LOOT_TYPE_TREASURE_CARD": 4, + "LOOT_TYPE_MAGIC_XP": 5, + "LOOT_TYPE_ADD_SPELL": 6, + "LOOT_TYPE_MAX_HEALTH": 7, + "LOOT_TYPE_MAX_GOLD": 8, + "LOOT_TYPE_MAX_MANA": 9, + "LOOT_TYPE_MAX_POTION": 10, + "LOOT_TYPE_TRAINING_POINTS": 11, + "LOOT_TYPE_RECIPE": 12, + "LOOT_TYPE_CRAFTING_SLOT": 13, + "LOOT_TYPE_REAGENT": 14, + "LOOT_TYPE_PETSNACK": 15, + "LOOT_TYPE_GARDENING_XP": 16, + "LOOT_TYPE_PET_XP": 17, + "LOOT_TYPE_TREASURE_TABLE": 18, + "LOOT_TYPE_ARENA_POINTS": 19, + "LOOT_TYPE_ARENA_BONUS_POINTS": 20, + "LOOT_TYPE_GROUP": 21, + "LOOT_TYPE_FISHING_XP": 22, + "LOOT_TYPE_EVENT_CURRENCY_1": 24, + "LOOT_TYPE_EVENT_CURRENCY_2": 25, + "LOOT_TYPE_PVP_CURRENCY": 26, + "LOOT_TYPE_PVP_CURRENCY_BONUS": 27, + "LOOT_TYPE_PVP_TOURNEY_CURRENCY": 28, + "LOOT_TYPE_PVP_TOURNEY_CURRENCY_BONUS": 29, + "LOOT_TYPE_FURNITURE_ESSENCE": 30 + } }, - "m_matchCount": { - "type": "int", + "m_spellName": { + "type": "std::string", "id": 1, - "offset": 72, - "flags": 31, + "offset": 80, + "flags": 268435487, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1400798736 + "hash": 2688485244, + "enum_options": { + "__BASECLASS": "SpellTemplate" + } }, - "m_teamCount": { - "type": "int", + "m_internalName": { + "type": "std::string", "id": 2, - "offset": 76, + "offset": 112, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1614476394 + "hash": 1924993817 }, - "m_actorCount": { - "type": "int", + "m_spellID": { + "type": "unsigned int", "id": 3, - "offset": 80, + "offset": 144, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1057423836 + "hash": 1697483258 } } }, - "1527467522": { - "name": "class SharedPointer", + "1947606906": { + "name": "class SharedPointer", "bases": [ "PropertyClass" ], - "hash": 1527467522, + "hash": 1947606906, "properties": { - "m_ageOutTime": { - "type": "unsigned int", + "m_targetState": { + "type": "std::string", "id": 0, "offset": 72, "flags": 7, @@ -422585,79 +119848,178 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 819371137 + "hash": 2472683907 }, - "m_totalRating": { - "type": "unsigned int", + "m_transitionState": { + "type": "std::string", "id": 1, - "offset": 76, + "offset": 104, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 725509110 + "hash": 2166469639 + } + } + }, + "1089687566": { + "name": "class BattleCardPurchaseInfo*", + "bases": [ + "PropertyClass" + ], + "hash": 1089687566, + "properties": { + "m_spellName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2688485244 }, - "m_numberOfRatings": { + "m_maxCopies": { "type": "int", - "id": 2, - "offset": 80, - "flags": 7, + "id": 1, + "offset": 104, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1563134896 - }, - "m_flags": { - "type": "unsigned char", - "id": 3, - "offset": 84, + "hash": 191619875 + } + } + }, + "237586676": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 237586676, + "properties": { + "m_playerList": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1909774945 + } + } + }, + "237188687": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 237188687, + "properties": { + "m_infoList": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1814698255 + } + } + }, + "1523956164": { + "name": "class ClientPipFloatingTextCinematicAction", + "bases": [ + "PipFloatingTextCinematicAction", + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 1523956164, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1431998045 + "hash": 2237098605 }, - "m_type": { - "type": "unsigned int", - "id": 4, - "offset": 88, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 431304463 + "hash": 2285866132 } } }, - "1930001305": { - "name": "struct std::pair", - "bases": [], - "hash": 1930001305, - "properties": {} - }, - "1527129976": { - "name": "class SharedPointer", + "666896143": { + "name": "class BoosterPackLootTypeMaxes", "bases": [ "PropertyClass" ], - "hash": 1527129976, + "hash": 666896143, "properties": { - "m_monthlyGauntletClassProjectID": { - "type": "unsigned int", + "m_lootType": { + "type": "enum LootInfo::LOOT_TYPE", "id": 0, "offset": 72, - "flags": 7, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2317452086 + "hash": 1591891442, + "enum_options": { + "LOOT_TYPE_NONE": 0, + "LOOT_TYPE_GOLD": 1, + "LOOT_TYPE_MANA": 2, + "LOOT_TYPE_ITEM": 3, + "LOOT_TYPE_TREASURE_CARD": 4, + "LOOT_TYPE_MAGIC_XP": 5, + "LOOT_TYPE_ADD_SPELL": 6, + "LOOT_TYPE_MAX_HEALTH": 7, + "LOOT_TYPE_MAX_GOLD": 8, + "LOOT_TYPE_MAX_MANA": 9, + "LOOT_TYPE_MAX_POTION": 10, + "LOOT_TYPE_TRAINING_POINTS": 11, + "LOOT_TYPE_RECIPE": 12, + "LOOT_TYPE_CRAFTING_SLOT": 13, + "LOOT_TYPE_REAGENT": 14, + "LOOT_TYPE_PETSNACK": 15, + "LOOT_TYPE_GARDENING_XP": 16, + "LOOT_TYPE_PET_XP": 17, + "LOOT_TYPE_TREASURE_TABLE": 18, + "LOOT_TYPE_ARENA_POINTS": 19, + "LOOT_TYPE_ARENA_BONUS_POINTS": 20, + "LOOT_TYPE_GROUP": 21, + "LOOT_TYPE_FISHING_XP": 22, + "LOOT_TYPE_JEWEL": 23, + "LOOT_TYPE_EMOTE": 23, + "LOOT_TYPE_TELEPORT_EFFECT": 23, + "LOOT_TYPE_PVP_CURRENCY": 26, + "LOOT_TYPE_PVP_CURRENCY_BONUS": 27, + "LOOT_TYPE_PVP_TOURNEY_CURRENCY": 28, + "LOOT_TYPE_PVP_TOURNEY_CURRENCY_BONUS": 29, + "LOOT_TYPE_FURNITURE_ESSENCE": 30 + } }, - "m_monthlyGauntletCanTeamUp": { + "m_max": { "type": "int", "id": 1, "offset": 76, @@ -422666,152 +120028,205 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 476490151 + "hash": 267042112 } } }, - "1929567268": { - "name": "class PartyObserver", + "1949555697": { + "name": "class std::vector >", + "bases": [], + "hash": 1949555697, + "properties": {} + }, + "237141223": { + "name": "class Result*", "bases": [ - "GroupObserver", "PropertyClass" ], - "hash": 1929567268, + "hash": 237141223, "properties": {} }, - "1528019840": { - "name": "class RidableBehaviorBase*", + "1089850091": { + "name": "class EquippedItemInfoList*", "bases": [ - "BehaviorInstance", "PropertyClass" ], - "hash": 1528019840, + "hash": 1089850091, "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", + "m_infoList": { + "type": "class SharedPointer", "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, + "offset": 72, + "flags": 31, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_assignedPlayers": { - "type": "gid", - "id": 1, - "offset": 112, - "flags": 65543, - "container": "Vector", + "pointer": true, + "hash": 1525681909 + } + } + }, + "1089850051": { + "name": "class EquippedItemInfoList", + "bases": [ + "PropertyClass" + ], + "hash": 1089850051, + "properties": { + "m_infoList": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 31, + "container": "List", "dynamic": true, "singleton": false, + "pointer": true, + "hash": 1525681909 + } + } + }, + "1089807005": { + "name": "class SharedPointer", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 1089807005, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, "pointer": false, - "hash": 1913541510 + "hash": 3130754092 } } }, - "1930343526": { - "name": "class SharedPointer", + "1524695124": { + "name": "enum PlantStage", + "bases": [], + "hash": 1524695124, + "properties": {} + }, + "667152448": { + "name": "class ScaleActorCinematicAction", "bases": [ - "WinAnimContainer", - "WindowAnimation", + "ActorCinematicAction", + "CinematicAction", "PropertyClass" ], - "hash": 1930343526, + "hash": 667152448, "properties": { - "m_bUseDeepCopy": { - "type": "bool", + "m_timeOffset": { + "type": "float", "id": 0, "offset": 72, - "flags": 135, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 433380635 + "hash": 2237098605 }, - "m_winAnimList": { - "type": "class SharedPointer", + "m_actor": { + "type": "std::string", "id": 1, "offset": 80, - "flags": 135, - "container": "List", - "dynamic": true, + "flags": 7, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1941062728 + "pointer": false, + "hash": 2285866132 }, - "m_bLooping": { - "type": "bool", + "m_scaleDuration": { + "type": "float", "id": 2, - "offset": 104, - "flags": 135, + "offset": 120, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2131020845 + "hash": 1764097637 }, - "m_finishedAnimList": { - "type": "class SharedPointer", + "m_scaleTarget": { + "type": "float", "id": 3, - "offset": 112, - "flags": 135, - "container": "List", - "dynamic": true, + "offset": 124, + "flags": 7, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3066650884 + "pointer": false, + "hash": 1502791366 } } }, - "1930319611": { - "name": "class SG_GameAction_Interact", + "1949832477": { + "name": "class MoveCommandSpeed*", "bases": [ - "SG_GameAction", + "MoveController::MoveCommand", "PropertyClass" ], - "hash": 1930319611, + "hash": 1949832477, "properties": { - "m_target": { - "type": "enum SG_GameAction::SG_Target", + "m_vTarget": { + "type": "class Vector3D", "id": 0, - "offset": 72, - "flags": 2097159, + "offset": 88, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1166870973, - "enum_options": { - "Target_Ball": 0, - "Target_Self": 1, - "Target_Connections": 2, - "__DEFAULT": "Target_Ball" - } + "hash": 3770499167 }, - "m_interactor": { - "type": "std::string", + "m_fSpeed": { + "type": "float", "id": 1, - "offset": 80, - "flags": 7, + "offset": 100, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3125502454 + "hash": 503609006 } } }, - "1930162774": { - "name": "class SharedPointer", + "237502247": { + "name": "class HatchmakingPetTypesList*", + "bases": [ + "PropertyClass" + ], + "hash": 237502247, + "properties": { + "m_hatchmakingPetTypesList": { + "type": "unsigned int", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1843158182 + } + } + }, + "1949773843": { + "name": "class ZoneTokenWindow", "bases": [ - "ControlButton", "Window", "PropertyClass" ], - "hash": 1930162774, + "hash": 1949773843, "properties": { "m_sName": { "type": "std::string", @@ -422847,8 +120262,11 @@ "hash": 983582334, "enum_options": { "HAS_BACK": 1, + "SCALE_CHILDREN": 2, "CAN_MOVE": 4, "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "FOCUS_LOCKED": 64, "CAN_FOCUS": 128, "CAN_DOCK": 32, "DO_NOT_CAPTURE_MOUSE": 256, @@ -422860,12 +120278,7 @@ "USE_ALPHA_BOUNDS": 8192, "AUTO_GROW": 16384, "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152, - "SHOW_HOTKEY": 16777216, - "EFFECT_SCALE": 67108864, - "LOCK_ICON_SIZE": 33554432, - "LEFT_TEXT": 536870912, - "NO_FIT_TEXT": 1073741824 + "AUTO_RESIZE": 49152 } }, "m_Flags": { @@ -423025,411 +120438,889 @@ "singleton": false, "pointer": false, "hash": 3091503757 + } + } + }, + "1529279344": { + "name": "class ItemFinderOption*", + "bases": [ + "ServiceOptionBase", + "PropertyClass" + ], + "hash": 1529279344, + "properties": { + "m_serviceName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2206028813 }, - "m_bToggle": { - "type": "bool", - "id": 16, - "offset": 608, - "flags": 135, + "m_iconKey": { + "type": "std::string", + "id": 1, + "offset": 168, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2071810903 + "hash": 2457138637 }, - "m_bButtonDown": { + "m_displayKey": { + "type": "std::string", + "id": 2, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3023276954 + }, + "m_serviceIndex": { + "type": "unsigned int", + "id": 3, + "offset": 204, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2103126710 + }, + "m_forceInteract": { "type": "bool", - "id": 17, - "offset": 609, - "flags": 135, + "id": 4, + "offset": 200, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 840041705 + "hash": 1705789564 + } + } + }, + "668755451": { + "name": "class GamebryoClientDerbyTerrainEffect*", + "bases": [ + "ClientDerbyTerrainEffect", + "DerbyTerrainEffect", + "DerbyEffect", + "PropertyClass" + ], + "hash": 668755451, + "properties": { + "m_buffType": { + "type": "enum DerbyTalentBuffType", + "id": 0, + "offset": 92, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1149251982, + "enum_options": { + "Buff": 0, + "Debuff": 1, + "Neither": 2 + } }, - "m_sLabel": { - "type": "std::wstring", - "id": 18, - "offset": 616, - "flags": 4194439, + "m_kTarget": { + "type": "enum DerbyTargetType", + "id": 1, + "offset": 96, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2207009163 + "hash": 1807803351, + "enum_options": { + "kTargetInFront": 0, + "kTargetBehind": 1, + "kTargetFirst": 2, + "kTargetSelf": 3, + "kTargetAll": 4, + "kTargetLast": 5 + } }, - "m_labelOffset": { - "type": "class Rect", - "id": 19, - "offset": 832, - "flags": 135, + "m_nDuration": { + "type": "int", + "id": 2, + "offset": 104, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1990646723 + "hash": 1110167982 }, - "m_pButton": { - "type": "class SharedPointer", - "id": 20, - "offset": 656, - "flags": 135, + "m_effectID": { + "type": "unsigned int", + "id": 3, + "offset": 88, + "flags": 24, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1543855875 + "pointer": false, + "hash": 2347630439 }, - "m_HotKey": { + "m_imageFilename": { + "type": "std::string", + "id": 4, + "offset": 112, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2813328063 + }, + "m_iconIndex": { "type": "unsigned int", - "id": 21, - "offset": 672, - "flags": 135, + "id": 5, + "offset": 144, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1631553409 + "hash": 1265133262 }, - "m_Color": { - "type": "class Color", - "id": 22, - "offset": 676, - "flags": 262279, + "m_soundOnActivate": { + "type": "std::string", + "id": 6, + "offset": 152, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1753714077 + "hash": 1956929714 }, - "m_bCursorOver": { - "type": "bool", - "id": 23, - "offset": 689, - "flags": 135, + "m_soundOnTarget": { + "type": "std::string", + "id": 7, + "offset": 184, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 283981103 + "hash": 3444214056 }, - "m_bAbortWhenCursorNotOver": { - "type": "bool", - "id": 24, - "offset": 706, - "flags": 135, + "m_targetParticleEffect": { + "type": "std::string", + "id": 8, + "offset": 216, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 325405258 + "hash": 3048234723 }, - "m_bHotKeyDown": { - "type": "bool", - "id": 25, - "offset": 680, - "flags": 135, + "m_overheadMessage": { + "type": "std::string", + "id": 9, + "offset": 248, + "flags": 8388639, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 616989185 + "hash": 1701018190 }, - "m_fTime": { - "type": "float", - "id": 26, - "offset": 684, - "flags": 135, + "m_requirements": { + "type": "class RequirementList", + "id": 10, + "offset": 280, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 883746156 + "hash": 2840988582 }, - "m_bGreyed": { - "type": "bool", - "id": 27, - "offset": 688, - "flags": 135, + "m_terrainType": { + "type": "enum PetDerbyTrackTerrain", + "id": 11, + "offset": 376, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1566556053 + "hash": 2688629581, + "enum_options": { + "Cobblestone": 0, + "Water": 1, + "Grass": 2, + "Clay": 3, + "Dirt": 4, + "Mud": 5 + } }, - "m_fMaxScale": { + "m_fEffectReapplyTime": { "type": "float", - "id": 28, - "offset": 692, - "flags": 135, + "id": 12, + "offset": 380, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2070186635 + "hash": 1483497206 }, - "m_fScaleSpeed": { - "type": "float", - "id": 29, - "offset": 696, - "flags": 135, + "m_effectsToApply": { + "type": "class SharedPointer", + "id": 13, + "offset": 384, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2042624288 + }, + "m_permanentEffects": { + "type": "class SharedPointer", + "id": 14, + "offset": 400, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2129171809 + } + } + }, + "237745633": { + "name": "struct std::pair", + "bases": [], + "hash": 237745633, + "properties": {} + }, + "1090674318": { + "name": "class SharedPointer", + "bases": [ + "SG_GameAction", + "PropertyClass" + ], + "hash": 1090674318, + "properties": { + "m_target": { + "type": "enum SG_GameAction::SG_Target", + "id": 0, + "offset": 72, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1457135702 + "hash": 1166870973, + "enum_options": { + "Target_Ball": 0, + "Target_Self": 1, + "Target_Connections": 2, + "__DEFAULT": "Target_Ball" + } }, - "m_bUseDropShadow": { - "type": "bool", - "id": 30, - "offset": 704, - "flags": 135, + "m_powerName": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 93063037 + "hash": 2956499913 + } + } + }, + "1525492589": { + "name": "class FloatingTextCinematicAction*", + "bases": [ + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 1525492589, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 }, - "m_bUseOutline": { - "type": "bool", - "id": 31, - "offset": 705, - "flags": 135, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 744292994 + "hash": 2285866132 }, - "m_pGreyedState": { - "type": "class SharedPointer", - "id": 32, - "offset": 768, - "flags": 135, + "m_stringTableEntry": { + "type": "std::string", + "id": 2, + "offset": 120, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2703352263 + "pointer": false, + "hash": 2181170604 + } + } + }, + "667937839": { + "name": "class MaxPotionLootInfo*", + "bases": [ + "LootInfo", + "LootInfoBase", + "PropertyClass" + ], + "hash": 667937839, + "properties": { + "m_lootType": { + "type": "enum LootInfo::LOOT_TYPE", + "id": 0, + "offset": 72, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1591891442, + "enum_options": { + "LOOT_TYPE_NONE": 0, + "LOOT_TYPE_GOLD": 1, + "LOOT_TYPE_MANA": 2, + "LOOT_TYPE_ITEM": 3, + "LOOT_TYPE_TREASURE_CARD": 4, + "LOOT_TYPE_MAGIC_XP": 5, + "LOOT_TYPE_ADD_SPELL": 6, + "LOOT_TYPE_MAX_HEALTH": 7, + "LOOT_TYPE_MAX_GOLD": 8, + "LOOT_TYPE_MAX_MANA": 9, + "LOOT_TYPE_MAX_POTION": 10, + "LOOT_TYPE_TRAINING_POINTS": 11, + "LOOT_TYPE_RECIPE": 12, + "LOOT_TYPE_CRAFTING_SLOT": 13, + "LOOT_TYPE_REAGENT": 14, + "LOOT_TYPE_PETSNACK": 15, + "LOOT_TYPE_GARDENING_XP": 16, + "LOOT_TYPE_PET_XP": 17, + "LOOT_TYPE_TREASURE_TABLE": 18, + "LOOT_TYPE_ARENA_POINTS": 19, + "LOOT_TYPE_ARENA_BONUS_POINTS": 20, + "LOOT_TYPE_GROUP": 21, + "LOOT_TYPE_FISHING_XP": 22, + "LOOT_TYPE_EVENT_CURRENCY_1": 24, + "LOOT_TYPE_EVENT_CURRENCY_2": 25, + "LOOT_TYPE_PVP_CURRENCY": 26, + "LOOT_TYPE_PVP_CURRENCY_BONUS": 27, + "LOOT_TYPE_PVP_TOURNEY_CURRENCY": 28, + "LOOT_TYPE_PVP_TOURNEY_CURRENCY_BONUS": 29, + "LOOT_TYPE_FURNITURE_ESSENCE": 30 + } }, - "m_pNormalState": { - "type": "class SharedPointer", - "id": 33, - "offset": 752, - "flags": 135, + "m_maxPotionToAdd": { + "type": "int", + "id": 1, + "offset": 80, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1887909808 + "pointer": false, + "hash": 1268091461 + } + } + }, + "1949996317": { + "name": "class MoveCommandSpeed", + "bases": [ + "MoveController::MoveCommand", + "PropertyClass" + ], + "hash": 1949996317, + "properties": { + "m_vTarget": { + "type": "class Vector3D", + "id": 0, + "offset": 88, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3770499167 }, - "m_pHighlightedState": { - "type": "class SharedPointer", - "id": 34, - "offset": 784, - "flags": 135, + "m_fSpeed": { + "type": "float", + "id": 1, + "offset": 100, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2200177608 + "pointer": false, + "hash": 503609006 + } + } + }, + "237715458": { + "name": "class ClientDuelBehavior*", + "bases": [ + "DuelBehavior", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 237715458, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 }, - "m_pSelectedState": { - "type": "class SharedPointer", - "id": 35, - "offset": 800, - "flags": 135, + "m_pDuel": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": true, - "hash": 2266776432 + "hash": 1066616366 }, - "m_pDepressedState": { - "type": "class SharedPointer", - "id": 36, - "offset": 816, - "flags": 135, + "m_sigilTemplateID": { + "type": "unsigned int", + "id": 2, + "offset": 128, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1878185798 + "pointer": false, + "hash": 269055310 } } }, - "1529115504": { - "name": "class ItemFinderOption", + "1090392257": { + "name": "class QuantityBehaviorTemplate", "bases": [ - "ServiceOptionBase", + "BehaviorTemplate", "PropertyClass" ], - "hash": 1529115504, + "hash": 1090392257, "properties": { - "m_serviceName": { + "m_behaviorName": { "type": "std::string", "id": 0, "offset": 72, - "flags": 31, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2206028813 + "hash": 3130754092 }, - "m_iconKey": { + "m_maximumQuantity": { + "type": "int", + "id": 1, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1520461975 + } + } + }, + "1525360461": { + "name": "class ClientActorResurrectCinematicAction", + "bases": [ + "ActorResurrectCinematicAction", + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 1525360461, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { "type": "std::string", "id": 1, - "offset": 168, - "flags": 31, + "offset": 80, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2457138637 + "hash": 2285866132 + } + } + }, + "667836095": { + "name": "class ClientRemoveInterceptCinematicAction", + "bases": [ + "RemoveInterceptCinematicAction", + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 667836095, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 }, - "m_displayKey": { + "m_actor": { "type": "std::string", - "id": 2, + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + } + } + }, + "1949936558": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1949936558, + "properties": { + "m_petTemplateList": { + "type": "unsigned int", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 567776494 + } + } + }, + "1525311244": { + "name": "class DeedBehaviorBase", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1525311244, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, "offset": 104, - "flags": 31, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3023276954 + "hash": 223437287 }, - "m_serviceIndex": { + "m_lotInstanceGID": { + "type": "gid", + "id": 1, + "offset": 120, + "flags": 33554495, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2010711536 + }, + "m_streetAddress": { + "type": "int", + "id": 2, + "offset": 112, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1809670519 + }, + "m_transferCoolDownTime": { "type": "unsigned int", "id": 3, - "offset": 204, - "flags": 31, + "offset": 128, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2103126710 + "hash": 1616830022 + } + } + }, + "237730210": { + "name": "class ClientDeckBehavior*", + "bases": [ + "DeckBehavior", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 237730210, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 }, - "m_forceInteract": { - "type": "bool", - "id": 4, - "offset": 200, - "flags": 31, + "m_spellList": { + "type": "class SharedPointer", + "id": 1, + "offset": 120, + "flags": 27, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2181913740 + }, + "m_serializedExclusionList": { + "type": "std::string", + "id": 2, + "offset": 152, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1705789564 + "hash": 1502583517 + }, + "m_archmasterySchool": { + "type": "unsigned int", + "id": 3, + "offset": 184, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 485805784 } } }, - "1528791825": { - "name": "class SharedPointer", + "1525212940": { + "name": "class DeedBehaviorBase*", "bases": [ - "PlayerController", - "MoveBehavior::Controller", + "BehaviorInstance", "PropertyClass" ], - "hash": 1528791825, + "hash": 1525212940, "properties": { - "m_bCollisionDisabled": { - "type": "bool", + "m_behaviorTemplateNameID": { + "type": "unsigned int", "id": 0, - "offset": 120, - "flags": 7, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1732895577 + "hash": 223437287 }, - "m_bVehicleMode": { - "type": "bool", + "m_lotInstanceGID": { + "type": "gid", "id": 1, - "offset": 121, - "flags": 7, + "offset": 120, + "flags": 33554495, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1597295002 + "hash": 2010711536 }, - "m_fForwardModifier": { - "type": "float", + "m_streetAddress": { + "type": "int", "id": 2, - "offset": 124, - "flags": 7, + "offset": 112, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1173988321 + "hash": 1809670519 }, - "m_fBackModifier": { - "type": "float", + "m_transferCoolDownTime": { + "type": "unsigned int", "id": 3, "offset": 128, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1616830022 + } + } + }, + "1091682765": { + "name": "class SharedPointer", + "bases": [ + "Body", + "PropertyClass" + ], + "hash": 1091682765, + "properties": { + "m_position": { + "type": "class Vector3D", + "id": 0, + "offset": 88, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 148042045 + "hash": 3697900983 }, - "m_fStrafeModifier": { + "m_pitch": { "type": "float", - "id": 4, - "offset": 132, + "id": 1, + "offset": 100, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 226084913 + "hash": 896371695 }, - "m_fTurnModifier": { + "m_roll": { "type": "float", - "id": 5, - "offset": 136, + "id": 2, + "offset": 104, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2134998805 + "hash": 310020272 }, - "m_fAccelerationModifier": { + "m_yaw": { "type": "float", - "id": 6, - "offset": 144, + "id": 3, + "offset": 108, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 592902742 + "hash": 357256328 }, - "m_fDecelerationModifier": { + "m_fHeight": { "type": "float", - "id": 7, - "offset": 148, + "id": 4, + "offset": 132, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1770082811 + "hash": 401539638 + }, + "m_scale": { + "type": "float", + "id": 5, + "offset": 112, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 899693439 } } }, - "1930360571": { - "name": "class SG_GameAction_Interact*", + "668058700": { + "name": "class SharedPointer", + "bases": [ + "AggroBehavior", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 668058700, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + } + } + }, + "1950019728": { + "name": "class SharedPointer", "bases": [ "SG_GameAction", "PropertyClass" ], - "hash": 1930360571, + "hash": 1950019728, "properties": { "m_target": { "type": "enum SG_GameAction::SG_Target", @@ -423448,704 +121339,950 @@ "__DEFAULT": "Target_Ball" } }, - "m_interactor": { + "m_simpleSounds": { "type": "std::string", "id": 1, - "offset": 80, + "offset": 112, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 3125502454 + "hash": 3351944033 } } }, - "1532747308": { - "name": "class Cinematic*", - "bases": [ - "PropertyClass" - ], - "hash": 1532747308, + "667941777": { + "name": "struct std::pair", + "bases": [], + "hash": 667941777, "properties": {} }, - "1530889461": { - "name": "class SharedPointer", + "238069766": { + "name": "class MatchTeam", "bases": [ "PropertyClass" ], - "hash": 1530889461, + "hash": 238069766, "properties": { - "m_points": { - "type": "struct PointData", + "m_nTeamID": { + "type": "gid", "id": 0, "offset": 72, - "flags": 7, - "container": "Vector", - "dynamic": true, + "flags": 31, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 1791272219 + "hash": 374990266 }, - "m_cameraSpeed": { - "type": "float", + "m_matchId": { + "type": "gid", "id": 1, - "offset": 96, - "flags": 7, + "offset": 80, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2177136625 + "hash": 1757621330 }, - "m_zoneName": { - "type": "std::string", + "m_matchNameID": { + "type": "unsigned int", "id": 2, + "offset": 88, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1751361288 + }, + "m_creatorId": { + "type": "gid", + "id": 3, + "offset": 96, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1051766069 + }, + "m_friendsOnly": { + "type": "bool", + "id": 4, "offset": 104, - "flags": 7, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2171167736 + "hash": 1420401792 + }, + "m_actors": { + "type": "class SharedPointer", + "id": 5, + "offset": 112, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 568947970 + }, + "m_bracketID": { + "type": "gid", + "id": 6, + "offset": 152, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 441272961 + }, + "m_leagueID": { + "type": "unsigned int", + "id": 7, + "offset": 160, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 692361645 + }, + "m_seasonID": { + "type": "unsigned int", + "id": 8, + "offset": 164, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 535260643 + }, + "m_maxActorLevel": { + "type": "int", + "id": 9, + "offset": 144, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 120597521 } } }, - "1946782891": { - "name": "class SpeedEffectInfo*", + "1525311309": { + "name": "class ClientActorResurrectCinematicAction*", "bases": [ - "GameEffectInfo", + "ActorResurrectCinematicAction", + "ActorCinematicAction", + "CinematicAction", "PropertyClass" ], - "hash": 1946782891, + "hash": 1525311309, "properties": { - "m_effectName": { - "type": "std::string", + "m_timeOffset": { + "type": "float", "id": 0, "offset": 72, - "flags": 31, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2029161513 + "hash": 2237098605 }, - "m_speedMultiplier": { - "type": "int", + "m_actor": { + "type": "std::string", "id": 1, - "offset": 104, + "offset": 80, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 32503058 + "hash": 2285866132 } } }, - "1530340613": { - "name": "class SharedPointer", + "1095807520": { + "name": "class SharedPointer", "bases": [ + "ControlEdit", + "Window", "PropertyClass" ], - "hash": 1530340613, + "hash": 1095807520, "properties": { - "m_ratingsConfig": { - "type": "class RatingInfo*", + "m_sName": { + "type": "std::string", "id": 0, - "offset": 72, - "flags": 7, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306437263 + }, + "m_Children": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 65671, "container": "Vector", "dynamic": true, "singleton": false, "pointer": true, - "hash": 2728721304 - } - } - }, - "1940581724": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1940581724, - "properties": { - "m_templateID": { + "hash": 2621225959 + }, + "m_Style": { "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 33554471, + "id": 2, + "offset": 152, + "flags": 1048583, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1286746870 + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152, + "FORCE_NUMERIC": 16777216, + "FORCE_ALPHA": 268435456, + "FORCE_ALPHANUMERIC": 536870912, + "FORCE_INTEGER": 33554432, + "FORCE_POSITIVE": 67108864, + "FORCE_RANGE": 134217728 + } }, - "m_numberCaught": { + "m_Flags": { "type": "unsigned int", - "id": 1, - "offset": 76, - "flags": 39, + "id": 3, + "offset": 156, + "flags": 1048583, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 880871538 + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } }, - "m_smallestSize": { + "m_Window": { + "type": "class Rect", + "id": 4, + "offset": 160, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3105139380 + }, + "m_fTargetAlpha": { "type": "float", - "id": 2, - "offset": 80, - "flags": 39, + "id": 5, + "offset": 212, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1372912951 + "hash": 1809129834 }, - "m_largestSize": { + "m_fDisabledAlpha": { "type": "float", - "id": 3, - "offset": 84, - "flags": 39, + "id": 6, + "offset": 216, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 344314084 + "hash": 1389987675 }, - "m_numberSmallFrysCaught": { - "type": "unsigned int", - "id": 4, - "offset": 88, - "flags": 39, + "m_fAlpha": { + "type": "float", + "id": 7, + "offset": 208, + "flags": 65671, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2177497487 + "hash": 482130755 }, - "m_numberWoppersCaught": { - "type": "unsigned int", - "id": 5, - "offset": 92, - "flags": 39, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3623628394 + }, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 842916418 - } - } - }, - "1529960489": { - "name": "class ObjState*", - "bases": [ - "PropertyClass" - ], - "hash": 1529960489, - "properties": { - "m_stateType": { + "hash": 2102211316 + }, + "m_sScript": { "type": "std::string", - "id": 0, - "offset": 112, - "flags": 7, + "id": 10, + "offset": 352, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2945167934 + "hash": 1846695875 }, - "m_stateName": { - "type": "std::string", - "id": 1, - "offset": 72, - "flags": 7, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2944926077 + "hash": 3389835433 }, - "m_transitions": { - "type": "class ObjStateTransition*", - "id": 2, - "offset": 144, - "flags": 7, - "container": "List", - "dynamic": true, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3218935105 + "pointer": false, + "hash": 2547159940 }, - "m_forcedStates": { - "type": "class ForcedStateInfo*", - "id": 3, - "offset": 320, - "flags": 7, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513510520 + }, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, "container": "List", "dynamic": true, "singleton": false, - "pointer": true, - "hash": 3462215437 + "pointer": false, + "hash": 2587533771 }, - "m_autoTransition": { + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3091503757 + }, + "m_sText": { + "type": "std::wstring", + "id": 16, + "offset": 584, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2102642960 + }, + "m_nMaxLength": { + "type": "int", + "id": 17, + "offset": 620, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1183478416 + }, + "m_bPassword": { "type": "bool", - "id": 4, - "offset": 188, - "flags": 7, + "id": 18, + "offset": 624, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1604468200 + }, + "m_bLog": { + "type": "bool", + "id": 19, + "offset": 625, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 221687287 + }, + "m_previousNext": { + "type": "bool", + "id": 20, + "offset": 627, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 858581071 + }, + "m_nMaxLogSize": { + "type": "int", + "id": 21, + "offset": 712, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 779573899 + }, + "m_bEditing": { + "type": "bool", + "id": 22, + "offset": 616, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1243218553 + }, + "m_bAllowPaste": { + "type": "bool", + "id": 23, + "offset": 626, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 580653367 + "hash": 1129316721 }, - "m_transitionTime": { - "type": "float", - "id": 5, - "offset": 192, - "flags": 7, + "m_nLogPosition": { + "type": "int", + "id": 24, + "offset": 704, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1542232785 + "hash": 1120160767 }, - "m_autoState": { - "type": "std::string", - "id": 6, - "offset": 200, - "flags": 7, + "m_nCursor": { + "type": "int", + "id": 25, + "offset": 716, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2495723957 + "hash": 1876782150 }, - "m_allowedActions": { - "type": "std::string", - "id": 7, - "offset": 240, - "flags": 7, - "container": "List", - "dynamic": true, + "m_nEditBegin": { + "type": "int", + "id": 26, + "offset": 720, + "flags": 135, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 1696631188 + "hash": 1066592403 }, - "m_disallowedActions": { - "type": "std::string", - "id": 8, - "offset": 256, - "flags": 7, - "container": "List", - "dynamic": true, + "m_nEditEnd": { + "type": "int", + "id": 27, + "offset": 724, + "flags": 135, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 1878482772 + "hash": 1560905669 }, - "m_blockedStates": { - "type": "std::string", - "id": 9, - "offset": 288, - "flags": 7, - "container": "List", - "dynamic": true, + "m_sSavedText": { + "type": "std::wstring", + "id": 28, + "offset": 728, + "flags": 135, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 2730681379 + "hash": 2197953283 }, - "m_privateState": { - "type": "bool", - "id": 10, - "offset": 176, - "flags": 7, + "m_fCursorBlinkSpeed": { + "type": "float", + "id": 29, + "offset": 760, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 984277039 + "hash": 2232655228 }, - "m_fallbackPrevious": { - "type": "bool", - "id": 11, - "offset": 232, - "flags": 7, + "m_fCursorTimer": { + "type": "float", + "id": 30, + "offset": 764, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 152378144 + "hash": 1929942748 }, - "m_postStateEvents": { + "m_bCursorBlink": { "type": "bool", - "id": 12, - "offset": 233, - "flags": 7, + "id": 31, + "offset": 768, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1191427919 + "hash": 683441507 }, - "m_blockMovement": { - "type": "bool", - "id": 13, - "offset": 177, - "flags": 7, + "m_fMinRange": { + "type": "double", + "id": 32, + "offset": 776, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1121175209 + "hash": 3079523396 }, - "m_blockMoveControl": { - "type": "bool", - "id": 14, - "offset": 178, - "flags": 7, + "m_fMaxRange": { + "type": "double", + "id": 33, + "offset": 784, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 421629846 + "hash": 3876551814 }, - "m_haltMovement": { - "type": "bool", - "id": 15, - "offset": 179, - "flags": 7, + "m_nPrecision": { + "type": "int", + "id": 34, + "offset": 792, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 770740551 + "hash": 1404974196 }, - "m_checkProximity": { + "m_bDeleteOnFirstChar": { "type": "bool", - "id": 16, - "offset": 181, - "flags": 7, + "id": 35, + "offset": 618, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1612279270 - }, - "m_proximityOverride": { - "type": "float", - "id": 17, - "offset": 184, - "flags": 7, + "hash": 902105643 + } + } + }, + "1952719338": { + "name": "class SharedPointer", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1952719338, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1963277868 - }, - "m_showDebug": { - "type": "bool", - "id": 18, - "offset": 180, + "hash": 223437287 + } + } + }, + "1094316001": { + "name": "class SharedPointer", + "bases": [ + "PhysicsSimMass", + "PropertyClass" + ], + "hash": 1094316001, + "properties": {} + }, + "668399039": { + "name": "class SharedPointer", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 668399039, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2109281211 + "hash": 3130754092 }, - "m_particles": { - "type": "class StateAssetInfo*", - "id": 19, - "offset": 336, + "m_radius": { + "type": "float", + "id": 1, + "offset": 120, "flags": 7, - "container": "List", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2185858754 + "pointer": false, + "hash": 989410271 }, - "m_sounds": { - "type": "class StateAssetInfo*", - "id": 20, - "offset": 352, + "m_angle": { + "type": "float", + "id": 2, + "offset": 124, "flags": 7, - "container": "List", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2925617751 + "pointer": false, + "hash": 878748702 }, - "m_animations": { - "type": "class StateAssetInfo*", - "id": 21, - "offset": 368, - "flags": 7, - "container": "List", - "dynamic": true, + "m_leashType": { + "type": "enum LeashType", + "id": 3, + "offset": 128, + "flags": 2097159, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3503258990 + "pointer": false, + "hash": 2170708051, + "enum_options": { + "LLT_Rigid": 0, + "LLT_Elastic": 1 + } }, - "m_reinteract": { + "m_alwaysDisplay": { "type": "bool", - "id": 22, - "offset": 392, + "id": 4, + "offset": 132, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2149441988 + "hash": 2071781402 }, - "m_muteMusic": { + "m_despawnOnUnleash": { "type": "bool", - "id": 23, - "offset": 393, + "id": 5, + "offset": 133, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 431520495 + "hash": 428306962 } } }, - "1936186106": { - "name": "class SharedPointer", + "1952005653": { + "name": "class WinAnimContainerBounded", "bases": [ - "Texture", + "WinAnimContainer", + "WindowAnimation", "PropertyClass" ], - "hash": 1936186106, + "hash": 1952005653, "properties": { - "m_sFilename": { - "type": "std::string", + "m_bUseDeepCopy": { + "type": "bool", "id": 0, - "offset": 104, - "flags": 131207, + "offset": 72, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2431512111 + "hash": 433380635 }, - "m_bAlphaChannel": { - "type": "bool", + "m_winAnimList": { + "type": "class SharedPointer", "id": 1, - "offset": 137, + "offset": 80, "flags": 135, - "container": "Static", - "dynamic": false, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 1780697684 + "pointer": true, + "hash": 1941062728 }, - "m_bDoubleSided": { + "m_bLooping": { "type": "bool", "id": 2, - "offset": 138, + "offset": 104, "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1054874233 + "hash": 2131020845 }, - "m_bMipMap": { - "type": "bool", + "m_boundary": { + "type": "class Rect", "id": 3, - "offset": 139, + "offset": 112, "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1791042393 + "hash": 1423726080 } } }, - "1529750756": { - "name": "class SharedPointer", + "242438011": { + "name": "class CreatePipCinematicActorsFromResult", "bases": [ + "ActorCinematicAction", + "CinematicAction", "PropertyClass" ], - "hash": 1529750756, + "hash": 242438011, "properties": { - "m_combatTriggers": { - "type": "std::string", + "m_timeOffset": { + "type": "float", "id": 0, - "offset": 104, - "flags": 31, - "container": "List", - "dynamic": true, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 3023646200 + "hash": 2237098605 }, - "m_noTreasureCards": { - "type": "bool", + "m_actor": { + "type": "std::string", "id": 1, - "offset": 137, - "flags": 31, + "offset": 80, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1653008424 + "hash": 2285866132 }, - "m_battlefieldEffects": { - "type": "class SharedPointer", + "m_newActorName": { + "type": "std::string", "id": 2, - "offset": 72, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1245973515 - }, - "m_gameEffects": { - "type": "class SharedPointer", - "id": 3, - "offset": 88, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1187421775 - }, - "m_onlyTreasureCards": { - "type": "bool", - "id": 4, - "offset": 138, - "flags": 31, + "offset": 120, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 752220749 - }, - "m_noShadowSpells": { - "type": "bool", - "id": 5, - "offset": 139, - "flags": 31, + "hash": 2029131039 + } + } + }, + "1093919580": { + "name": "class WizBGPolymorphStatisticOverrideEffect", + "bases": [ + "StatisticEffect", + "GameEffectBase", + "PropertyClass" + ], + "hash": 1093919580, + "properties": { + "m_currentTickCount": { + "type": "double", + "id": 0, + "offset": 80, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2142185705 + "hash": 2533274692 }, - "m_noCrits": { - "type": "bool", - "id": 6, - "offset": 136, - "flags": 31, + "m_effectNameID": { + "type": "unsigned int", + "id": 1, + "offset": 96, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1394430197 + "hash": 1204067144 }, - "m_noEnchantedTreasureCards": { + "m_bIsOnPet": { "type": "bool", - "id": 7, - "offset": 140, + "id": 2, + "offset": 73, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1780948882 + "hash": 522593303 }, - "m_noEnchantmentSpells": { - "type": "bool", - "id": 8, - "offset": 141, - "flags": 31, + "m_originatorID": { + "type": "gid", + "id": 3, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1325982520 + "hash": 1131810019 }, - "m_noMaycastSpells": { - "type": "bool", - "id": 9, - "offset": 142, - "flags": 31, + "m_itemSlotID": { + "type": "unsigned int", + "id": 4, + "offset": 112, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1409034133 + "hash": 1895747595 }, - "m_enableSpellLevelRestrictions": { - "type": "bool", - "id": 10, - "offset": 143, - "flags": 31, + "m_internalID": { + "type": "int", + "id": 5, + "offset": 92, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1272415451 + "hash": 1643137924 }, - "m_ignoreSpellsPvPOnlyFlag": { - "type": "bool", - "id": 11, - "offset": 144, + "m_endTime": { + "type": "unsigned int", + "id": 6, + "offset": 88, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1714276188 + "hash": 716479635 }, - "m_ignoreSpellsPvEOnlyFlag": { - "type": "bool", - "id": 12, - "offset": 145, + "m_lookupIndex": { + "type": "int", + "id": 7, + "offset": 128, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1691675729 - }, - "m_requiredSpellsAdjectives": { - "type": "int", - "id": 13, - "offset": 152, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1262019376 + "hash": 1626623948 }, - "m_bannedSpellsAdjectives": { + "m_baseHitpoints": { "type": "int", - "id": 14, - "offset": 168, + "id": 8, + "offset": 136, "flags": 31, - "container": "List", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 1474039287 + "hash": 596105911 } } }, - "1933975137": { - "name": "class SetBottomTeamCinematicAction*", + "1525492269": { + "name": "class FloatingTextCinematicAction", "bases": [ + "ActorCinematicAction", "CinematicAction", "PropertyClass" ], - "hash": 1933975137, + "hash": 1525492269, "properties": { "m_timeOffset": { "type": "float", @@ -424158,8 +122295,8 @@ "pointer": false, "hash": 2237098605 }, - "m_interpDuration": { - "type": "float", + "m_actor": { + "type": "std::string", "id": 1, "offset": 80, "flags": 7, @@ -424167,41 +122304,105 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237711951 + "hash": 2285866132 + }, + "m_stringTableEntry": { + "type": "std::string", + "id": 2, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2181170604 } } }, - "1529374481": { - "name": "class SharedPointer", + "668287165": { + "name": "class SharedPointer", "bases": [ "PropertyClass" ], - "hash": 1529374481, + "hash": 668287165, "properties": { - "m_dependentResourceFilename": { - "type": "std::string", + "m_equipmentSetList": { + "type": "class SharedPointer", "id": 0, "offset": 72, - "flags": 131079, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1788831224 + } + } + }, + "1951219221": { + "name": "class WinAnimContainerBounded*", + "bases": [ + "WinAnimContainer", + "WindowAnimation", + "PropertyClass" + ], + "hash": 1951219221, + "properties": { + "m_bUseDeepCopy": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2968493147 + "hash": 433380635 + }, + "m_winAnimList": { + "type": "class SharedPointer", + "id": 1, + "offset": 80, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1941062728 + }, + "m_bLooping": { + "type": "bool", + "id": 2, + "offset": 104, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2131020845 + }, + "m_boundary": { + "type": "class Rect", + "id": 3, + "offset": 112, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1423726080 } } }, - "1932477328": { - "name": "class AddHangingEffectCinematicAction", + "239887307": { + "name": "class SharedPointer", "bases": [ - "ActorCinematicAction", - "CinematicAction", "PropertyClass" ], - "hash": 1932477328, + "hash": 239887307, "properties": { - "m_timeOffset": { - "type": "float", + "m_hideObjects": { + "type": "bool", "id": 0, "offset": 72, "flags": 7, @@ -424209,656 +122410,731 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 + "hash": 487002423 }, - "m_actor": { - "type": "std::string", + "m_alterState": { + "type": "bool", "id": 1, - "offset": 80, + "offset": 73, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2285866132 + "hash": 1458202892 }, - "m_effect": { + "m_zoneTag": { "type": "std::string", "id": 2, - "offset": 120, - "flags": 131079, + "offset": 80, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1894145160 + "hash": 3405382643 }, - "m_revealsCloaked": { - "type": "bool", + "m_modState": { + "type": "std::string", "id": 3, - "offset": 156, + "offset": 112, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1618772408 + "hash": 1770855548 + }, + "m_existBeyondQuest": { + "type": "bool", + "id": 4, + "offset": 74, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 923590707 } } }, - "1930921845": { - "name": "class PositionalSoundBehaviorTemplate", + "1093865471": { + "name": "class WhirlyBurlySpellTemplate", "bases": [ - "SoundBehaviorTemplate", - "AreaBehaviorTemplate", - "BehaviorTemplate", + "SpellTemplate", + "CoreTemplate", "PropertyClass" ], - "hash": 1930921845, + "hash": 1093865471, "properties": { - "m_behaviorName": { - "type": "std::string", + "m_behaviors": { + "type": "class BehaviorTemplate*", "id": 0, "offset": 72, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "Vector", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 3130754092 + "pointer": true, + "hash": 1197808594 }, - "m_radius": { - "type": "float", + "m_name": { + "type": "std::string", "id": 1, - "offset": 120, + "offset": 96, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 989410271 + "hash": 1717359772 }, - "m_category": { - "type": "enum AudioCategory", + "m_description": { + "type": "std::string", "id": 2, - "offset": 124, - "flags": 2097159, + "offset": 168, + "flags": 8388615, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2951251982, - "enum_options": { - "AudioCategory_Irrelevent": 0, - "AudioCategory_Accoustic": 1, - "AudioCategory_Noise": 2, - "AudioCategory_Music": 3, - "AudioCategory_MusicAtSFXVolume": 4, - "AudioCategory_Dialog": 5, - "AudioCategory_UI": 6, - "AudioCategory_NoiseAtMusicVolume": 7 - } + "hash": 1649374815 }, - "m_exclusive": { - "type": "bool", + "m_advancedDescription": { + "type": "std::string", "id": 3, - "offset": 128, - "flags": 7, + "offset": 200, + "flags": 8388615, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 824383403 + "hash": 3465713013 }, - "m_active": { - "type": "bool", + "m_displayName": { + "type": "std::string", "id": 4, - "offset": 129, - "flags": 7, + "offset": 136, + "flags": 8388615, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 239335471 + "hash": 2446900370 }, - "m_enableReqs": { - "type": "class SharedPointer", + "m_spellBase": { + "type": "std::string", "id": 5, - "offset": 136, - "flags": 263, + "offset": 248, + "flags": 268435463, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3158020443 + "pointer": false, + "hash": 2688054198, + "enum_options": { + "__BASECLASS": "CinematicTemplate" + } }, - "m_trackFilenameList": { - "type": "std::string", + "m_effects": { + "type": "class SharedPointer", "id": 6, - "offset": 152, + "offset": 280, "flags": 7, "container": "Vector", "dynamic": true, "singleton": false, - "pointer": false, - "hash": 2531081709 + "pointer": true, + "hash": 370726379 }, - "m_playList": { - "type": "class PlayListEntry*", + "m_sMagicSchoolName": { + "type": "std::string", "id": 7, - "offset": 176, + "offset": 312, "flags": 7, - "container": "Vector", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3907873161 + "pointer": false, + "hash": 2035693400 }, - "m_priority": { - "type": "int", + "m_sTypeName": { + "type": "std::string", "id": 8, - "offset": 208, + "offset": 352, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1235205852 + "hash": 3580785905 }, - "m_volume": { - "type": "float", + "m_trainingCost": { + "type": "int", "id": 9, - "offset": 200, + "offset": 384, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1162855023 + "hash": 982588239 }, - "m_loopCount": { + "m_accuracy": { "type": "int", "id": 10, - "offset": 204, + "offset": 388, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 865634717 + "hash": 1636315493 }, - "m_progression": { - "type": "enum PlayList::Progression", + "m_baseCost": { + "type": "int", "id": 11, - "offset": 220, - "flags": 2097159, + "offset": 232, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3279400238, - "enum_options": { - "Sequence": 0, - "Random": 1, - "SequenceOnceOnly": 2, - "RandomNoRepeat": 3 - } + "hash": 1475151502 }, - "m_progressMin": { - "type": "float", + "m_creditsCost": { + "type": "int", "id": 12, - "offset": 212, + "offset": 236, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1497550192 + "hash": 715313825 }, - "m_progressMax": { - "type": "float", + "m_pvpCurrencyCost": { + "type": "int", "id": 13, - "offset": 216, + "offset": 240, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1497549938 + "hash": 645595444 }, - "m_audioFilterSet": { - "type": "unsigned int", + "m_pvpTourneyCurrencyCost": { + "type": "int", "id": 14, - "offset": 224, - "flags": 33554439, + "offset": 244, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 831339825 + "hash": 517874954 }, - "m_animationNameFilter": { + "m_boosterPackIcon": { "type": "std::string", "id": 15, - "offset": 232, - "flags": 7, + "offset": 496, + "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2292854242 + "hash": 3428653697 }, - "m_functionallabel": { - "type": "std::string", + "m_validTargetSpells": { + "type": "unsigned int", "id": 16, - "offset": 264, + "offset": 392, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 3589331278 + "hash": 2355782967 }, - "m_innerRadius": { - "type": "float", + "m_PvP": { + "type": "bool", "id": 17, - "offset": 296, + "offset": 408, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 686816091 + "hash": 269492361 }, - "m_inverted": { + "m_PvE": { "type": "bool", "id": 18, - "offset": 300, + "offset": 409, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1034821044 - } - } - }, - "1930457836": { - "name": "class MountShopOption", - "bases": [ - "ServiceOptionBase", - "PropertyClass" - ], - "hash": 1930457836, - "properties": { - "m_serviceName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, + "hash": 269492350 + }, + "m_noPvPEnchant": { + "type": "bool", + "id": 19, + "offset": 410, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2206028813 + "hash": 661581703 }, - "m_iconKey": { - "type": "std::string", - "id": 1, - "offset": 168, - "flags": 31, + "m_noPvEEnchant": { + "type": "bool", + "id": 20, + "offset": 411, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2457138637 + "hash": 10144220 }, - "m_displayKey": { - "type": "std::string", - "id": 2, - "offset": 104, - "flags": 31, + "m_battlegroundsOnly": { + "type": "bool", + "id": 21, + "offset": 412, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3023276954 + "hash": 1244782419 }, - "m_serviceIndex": { - "type": "unsigned int", - "id": 3, - "offset": 204, - "flags": 31, + "m_Treasure": { + "type": "bool", + "id": 22, + "offset": 413, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2103126710 + "hash": 1749096414 }, - "m_forceInteract": { + "m_noDiscard": { "type": "bool", - "id": 4, - "offset": 200, - "flags": 31, + "id": 23, + "offset": 414, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1705789564 - } - } - }, - "1529961129": { - "name": "class ObjState", - "bases": [ - "PropertyClass" - ], - "hash": 1529961129, - "properties": { - "m_stateType": { - "type": "std::string", - "id": 0, - "offset": 112, + "hash": 565749226 + }, + "m_leavesPlayWhenCast": { + "type": "bool", + "id": 24, + "offset": 532, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2945167934 + "hash": 698216294 }, - "m_stateName": { - "type": "std::string", - "id": 1, - "offset": 72, + "m_imageIndex": { + "type": "int", + "id": 25, + "offset": 416, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2944926077 + "hash": 1570500405 }, - "m_transitions": { - "type": "class ObjStateTransition*", - "id": 2, - "offset": 144, - "flags": 7, - "container": "List", - "dynamic": true, + "m_imageName": { + "type": "std::string", + "id": 26, + "offset": 424, + "flags": 131079, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3218935105 + "pointer": false, + "hash": 2391520543 }, - "m_forcedStates": { - "type": "class ForcedStateInfo*", - "id": 3, - "offset": 320, + "m_cloaked": { + "type": "bool", + "id": 27, + "offset": 489, "flags": 7, - "container": "List", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3462215437 + "pointer": false, + "hash": 7349510 }, - "m_autoTransition": { + "m_casterInvisible": { "type": "bool", - "id": 4, - "offset": 188, + "id": 28, + "offset": 490, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 580653367 + "hash": 310214650 }, - "m_transitionTime": { - "type": "float", - "id": 5, - "offset": 192, + "m_adjectives": { + "type": "std::string", + "id": 29, + "offset": 576, "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2967855037 + }, + "m_spellSourceType": { + "type": "enum SpellTemplate::kSpellSourceType", + "id": 30, + "offset": 528, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1542232785 + "hash": 156272727, + "enum_options": { + "kCaster": 0, + "kPet": 1, + "kShadowCreature": 2, + "kWeapon": 3, + "kEquipment": 4 + } }, - "m_autoState": { + "m_cloakedName": { "type": "std::string", - "id": 6, - "offset": 200, - "flags": 7, + "id": 31, + "offset": 536, + "flags": 268435463, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2495723957 + "hash": 2846679215, + "enum_options": { + "__BASECLASS": "SpellTemplate" + } }, - "m_allowedActions": { - "type": "std::string", - "id": 7, - "offset": 240, + "m_purchaseRequirements": { + "type": "class RequirementList*", + "id": 32, + "offset": 608, "flags": 7, - "container": "List", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1696631188 + "pointer": true, + "hash": 3174641793 }, - "m_disallowedActions": { - "type": "std::string", - "id": 8, - "offset": 256, + "m_displayRequirements": { + "type": "class RequirementList*", + "id": 33, + "offset": 840, "flags": 7, - "container": "List", - "dynamic": true, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3646782876 + }, + "m_descriptionTrainer": { + "type": "std::string", + "id": 34, + "offset": 616, + "flags": 8388871, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 1878482772 + "hash": 1756093908 }, - "m_blockedStates": { + "m_descriptionCombatHUD": { "type": "std::string", - "id": 9, - "offset": 288, + "id": 35, + "offset": 648, + "flags": 8388871, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1631478006 + }, + "m_displayIndex": { + "type": "int", + "id": 36, + "offset": 680, "flags": 7, - "container": "List", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 2730681379 + "hash": 1250551048 }, - "m_privateState": { + "m_hiddenFromEffectsWindow": { "type": "bool", - "id": 10, - "offset": 176, + "id": 37, + "offset": 684, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 984277039 + "hash": 1832736331 }, - "m_fallbackPrevious": { + "m_ignoreCharms": { "type": "bool", - "id": 11, - "offset": 232, + "id": 38, + "offset": 685, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 152378144 + "hash": 1840075893 }, - "m_postStateEvents": { + "m_alwaysFizzle": { "type": "bool", - "id": 12, - "offset": 233, + "id": 39, + "offset": 686, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1191427919 + "hash": 2030988856 }, - "m_blockMovement": { - "type": "bool", - "id": 13, - "offset": 177, + "m_spellCategory": { + "type": "std::string", + "id": 40, + "offset": 688, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1121175209 + "hash": 2472376729 }, - "m_blockMoveControl": { + "m_showPolymorphedName": { "type": "bool", - "id": 14, - "offset": 178, + "id": 41, + "offset": 720, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 421629846 + "hash": 2097929096 }, - "m_haltMovement": { + "m_skipTruncation": { "type": "bool", - "id": 15, - "offset": 179, - "flags": 7, + "id": 42, + "offset": 721, + "flags": 263, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 770740551 + "hash": 1838335249 }, - "m_checkProximity": { + "m_maxCopies": { + "type": "unsigned int", + "id": 43, + "offset": 724, + "flags": 263, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 403022326 + }, + "m_levelRestriction": { + "type": "int", + "id": 44, + "offset": 728, + "flags": 263, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 176502472 + }, + "m_delayEnchantment": { "type": "bool", - "id": 16, - "offset": 181, - "flags": 7, + "id": 45, + "offset": 732, + "flags": 287, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1612279270 + "hash": 191336919 }, - "m_proximityOverride": { - "type": "float", - "id": 17, - "offset": 184, - "flags": 7, + "m_delayEnchantmentOrder": { + "type": "enum SpellEffect::kDelayOrder", + "id": 46, + "offset": 736, + "flags": 287, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1963277868 + "hash": 2526055263, + "enum_options": { + "SpellEffect::kAnyOrder": 0, + "SpellEffect::kFirst": 1, + "SpellEffect::kSecond": 2 + } }, - "m_showDebug": { + "m_previousSpellName": { + "type": "std::string", + "id": 47, + "offset": 744, + "flags": 268435463, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2903322585, + "enum_options": { + "__BASECLASS": "SpellTemplate" + } + }, + "m_cardFront": { + "type": "std::string", + "id": 48, + "offset": 456, + "flags": 131359, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3557598526 + }, + "m_useGloss": { "type": "bool", - "id": 18, - "offset": 180, - "flags": 7, + "id": 49, + "offset": 488, + "flags": 287, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2109281211 + "hash": 668817544 }, - "m_particles": { - "type": "class StateAssetInfo*", - "id": 19, - "offset": 336, - "flags": 7, - "container": "List", - "dynamic": true, + "m_ignoreDispel": { + "type": "bool", + "id": 50, + "offset": 776, + "flags": 287, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2185858754 + "pointer": false, + "hash": 1881041624 }, - "m_sounds": { - "type": "class StateAssetInfo*", - "id": 20, - "offset": 352, + "m_backRowFriendly": { + "type": "bool", + "id": 51, + "offset": 777, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 501584377 + }, + "m_spellRank": { + "type": "class SharedPointer", + "id": 52, + "offset": 784, "flags": 7, - "container": "List", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": true, - "hash": 2925617751 + "hash": 3152361374 }, - "m_animations": { - "type": "class StateAssetInfo*", - "id": 21, - "offset": 368, + "m_secondarySchoolName": { + "type": "std::string", + "id": 53, + "offset": 800, "flags": 7, - "container": "List", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3503258990 + "pointer": false, + "hash": 1803268236 }, - "m_reinteract": { - "type": "bool", - "id": 22, - "offset": 392, + "m_spellFusion": { + "type": "unsigned int", + "id": 54, + "offset": 836, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2149441988 + "hash": 1658928321 }, - "m_muteMusic": { - "type": "bool", - "id": 23, - "offset": 393, + "m_requiredSchoolName": { + "type": "std::string", + "id": 55, + "offset": 848, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 431520495 - } - } - }, - "1931468082": { - "name": "class PlaySpellData", - "bases": [ - "PropertyClass" - ], - "hash": 1931468082, - "properties": { - "m_templateID": { - "type": "unsigned int", - "id": 0, - "offset": 72, + "hash": 3576058981 + }, + "m_unitMovement": { + "type": "std::string", + "id": 56, + "offset": 880, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1286746870 + "hash": 3170961702 }, - "m_enchantment": { - "type": "unsigned int", - "id": 1, - "offset": 76, + "m_specialUnits": { + "type": "std::string", + "id": 57, + "offset": 912, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2217886818 + "hash": 2725603631 } } }, - "1931177538": { - "name": "class SharedPointer", + "1950283476": { + "name": "class ClientMountRiderBehavior*", "bases": [ "BehaviorInstance", "PropertyClass" ], - "hash": 1931177538, + "hash": 1950283476, "properties": { "m_behaviorTemplateNameID": { "type": "unsigned int", @@ -424870,567 +123146,599 @@ "singleton": false, "pointer": false, "hash": 223437287 - }, - "m_spellList": { - "type": "class SharedPointer", - "id": 1, - "offset": 120, - "flags": 27, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2181913740 - }, - "m_rating": { - "type": "class SharedPointer", - "id": 2, - "offset": 136, - "flags": 27, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2464459535 } } }, - "1530771003": { - "name": "class ClientDerbyTerrainEffect", + "239372967": { + "name": "class PositionalSoundBehavior", "bases": [ - "DerbyTerrainEffect", - "DerbyEffect", + "SoundBehavior", + "AreaBehavior", + "BehaviorInstance", "PropertyClass" ], - "hash": 1530771003, + "hash": 239372967, "properties": { - "m_buffType": { - "type": "enum DerbyTalentBuffType", + "m_behaviorTemplateNameID": { + "type": "unsigned int", "id": 0, - "offset": 92, - "flags": 2097183, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1149251982, - "enum_options": { - "Buff": 0, - "Debuff": 1, - "Neither": 2 - } + "hash": 223437287 }, - "m_kTarget": { - "type": "enum DerbyTargetType", + "m_radius": { + "type": "float", "id": 1, - "offset": 96, - "flags": 2097159, + "offset": 116, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1807803351, - "enum_options": { - "kTargetInFront": 0, - "kTargetBehind": 1, - "kTargetFirst": 2, - "kTargetSelf": 3, - "kTargetAll": 4, - "kTargetLast": 5 - } + "hash": 989410271 }, - "m_nDuration": { - "type": "int", + "m_category": { + "type": "enum AudioCategory", "id": 2, - "offset": 104, - "flags": 31, + "offset": 124, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1110167982 + "hash": 2951251982, + "enum_options": { + "AudioCategory_Irrelevent": 0, + "AudioCategory_Accoustic": 1, + "AudioCategory_Noise": 2, + "AudioCategory_Music": 3 + } }, - "m_effectID": { - "type": "unsigned int", + "m_exclusive": { + "type": "bool", "id": 3, - "offset": 88, - "flags": 24, + "offset": 128, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2347630439 + "hash": 824383403 }, - "m_imageFilename": { - "type": "std::string", + "m_playList": { + "type": "class PlayList", "id": 4, - "offset": 112, - "flags": 131103, + "offset": 176, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2813328063 + "hash": 2061221957 }, - "m_iconIndex": { - "type": "unsigned int", + "m_volume": { + "type": "float", "id": 5, - "offset": 144, - "flags": 31, + "offset": 304, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1265133262 + "hash": 1162855023 }, - "m_soundOnActivate": { - "type": "std::string", + "m_loopCount": { + "type": "int", "id": 6, - "offset": 152, - "flags": 131103, + "offset": 308, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1956929714 + "hash": 865634717 }, - "m_soundOnTarget": { - "type": "std::string", + "m_minimumFalloff": { + "type": "float", "id": 7, - "offset": 184, - "flags": 131103, + "offset": 328, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3444214056 + "hash": 355697197 }, - "m_targetParticleEffect": { - "type": "std::string", + "m_maximumFalloff": { + "type": "float", "id": 8, - "offset": 216, - "flags": 131103, + "offset": 332, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3048234723 + "hash": 2210192367 }, - "m_overheadMessage": { - "type": "std::string", + "m_animDriven": { + "type": "bool", "id": 9, - "offset": 248, - "flags": 8388639, + "offset": 392, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1701018190 + "hash": 398394720 }, - "m_requirements": { - "type": "class RequirementList", + "m_inverted": { + "type": "bool", "id": 10, - "offset": 280, - "flags": 31, + "offset": 397, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2840988582 - }, - "m_terrainType": { - "type": "enum PetDerbyTrackTerrain", - "id": 11, - "offset": 376, + "hash": 1034821044 + } + } + }, + "238969606": { + "name": "class WizItemHouseList*", + "bases": [ + "WizItemLocations", + "PropertyClass" + ], + "hash": 238969606, + "properties": { + "m_itemType": { + "type": "enum WizItemLocations::eItemType", + "id": 0, + "offset": 72, "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2688629581, + "hash": 3482173907, "enum_options": { - "Cobblestone": 0, - "Water": 1, - "Grass": 2, - "Clay": 3, - "Dirt": 4, - "Mud": 5 + "shop": 0, + "quest": 1, + "boss": 2, + "gardening": 3, + "goldChest": 4 } }, - "m_fEffectReapplyTime": { - "type": "float", - "id": 12, - "offset": 380, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1483497206 - }, - "m_effectsToApply": { - "type": "class SharedPointer", - "id": 13, - "offset": 384, + "m_houseNames": { + "type": "std::string", + "id": 1, + "offset": 80, "flags": 31, "container": "List", "dynamic": true, "singleton": false, - "pointer": true, - "hash": 2042624288 - }, - "m_permanentEffects": { - "type": "class SharedPointer", - "id": 14, - "offset": 400, - "flags": 31, + "pointer": false, + "hash": 2902609843 + } + } + }, + "1093910335": { + "name": "class PremiumContentOptionList*", + "bases": [ + "PropertyClass" + ], + "hash": 1093910335, + "properties": { + "m_optionList": { + "type": "class PremiumContentOption", + "id": 0, + "offset": 72, + "flags": 7, "container": "List", "dynamic": true, "singleton": false, - "pointer": true, - "hash": 2129171809 + "pointer": false, + "hash": 1394856917 } } }, - "1530436226": { - "name": "class SharedPointer", + "1526577604": { + "name": "class ClientPipFloatingTextCinematicAction*", "bases": [ - "ControlSprite", - "Window", + "PipFloatingTextCinematicAction", + "ActorCinematicAction", + "CinematicAction", "PropertyClass" ], - "hash": 1530436226, + "hash": 1526577604, "properties": { - "m_sName": { - "type": "std::string", + "m_timeOffset": { + "type": "float", "id": 0, - "offset": 80, - "flags": 135, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2306437263 + "hash": 2237098605 }, - "m_Children": { - "type": "class SharedPointer", + "m_actor": { + "type": "std::string", "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621225959 - }, - "m_Style": { - "type": "unsigned int", - "id": 2, - "offset": 152, - "flags": 1048583, + "offset": 80, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "SCALE_CHILDREN": 2, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "FOCUS_LOCKED": 64, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152 - } - }, - "m_Flags": { - "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 1048583, + "hash": 2285866132 + } + } + }, + "238871302": { + "name": "class WizItemHouseList", + "bases": [ + "WizItemLocations", + "PropertyClass" + ], + "hash": 238871302, + "properties": { + "m_itemType": { + "type": "enum WizItemLocations::eItemType", + "id": 0, + "offset": 72, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 967851578, + "hash": 3482173907, "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648, - "ONE_SHOT": 8388608, - "FLIPPED_HORIZONTAL": 16777216, - "FLIPPED_VERTICAL": 33554432 + "shop": 0, + "quest": 1, + "boss": 2, + "gardening": 3, + "goldChest": 4 } }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, - "flags": 135, - "container": "Static", - "dynamic": false, + "m_houseNames": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 31, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 3105139380 - }, - "m_fTargetAlpha": { - "type": "float", - "id": 5, - "offset": 212, - "flags": 135, + "hash": 2902609843 + } + } + }, + "1526086322": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1526086322, + "properties": { + "m_categoryName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1809129834 + "hash": 3591157466 }, - "m_fDisabledAlpha": { - "type": "float", - "id": 6, - "offset": 216, - "flags": 135, - "container": "Static", - "dynamic": false, + "m_states": { + "type": "class ObjState*", + "id": 1, + "offset": 176, + "flags": 7, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 1389987675 + "pointer": true, + "hash": 2490652686 }, - "m_fAlpha": { - "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, + "m_startState": { + "type": "std::string", + "id": 2, + "offset": 112, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 482130755 - }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3623628394 + "hash": 2166880458 }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, + "m_baseState": { + "type": "std::string", + "id": 3, + "offset": 144, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2102211316 - }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, + "hash": 2949363223 + } + } + }, + "669815000": { + "name": "class SpawnActorCinematicAction", + "bases": [ + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 669815000, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1846695875 + "hash": 2237098605 }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3389835433 + "hash": 2285866132 }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, + "m_objectInfo": { + "type": "class CoreObjectInfo*", + "id": 2, + "offset": 120, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 2547159940 + "pointer": true, + "hash": 1373700953 }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, + "m_bStartHidden": { + "type": "bool", + "id": 3, + "offset": 128, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", + "hash": 1939845615 + } + } + }, + "1951952530": { + "name": "class BattlegroundPolymorphList*", + "bases": [ + "PropertyClass" + ], + "hash": 1951952530, + "properties": { + "m_polymorphList": { + "type": "unsigned int", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Vector", "dynamic": true, "singleton": false, "pointer": false, - "hash": 2587533771 + "hash": 619826355 }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, + "m_polymorphCategory": { + "type": "std::string", + "id": 1, + "offset": 120, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3091503757 - }, - "m_pMaterial": { - "type": "class SharedPointer", - "id": 16, - "offset": 592, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3479277078 + "hash": 3076206595 }, - "m_fRotation": { - "type": "float", - "id": 17, - "offset": 608, - "flags": 135, + "m_polymorphRole": { + "type": "std::string", + "id": 2, + "offset": 184, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1175400173 + "hash": 1906345431 }, - "m_Color": { - "type": "class Color", - "id": 18, - "offset": 584, - "flags": 262279, - "container": "Static", - "dynamic": false, + "m_ratingBadgeInfo": { + "type": "class SharedPointer", + "id": 3, + "offset": 96, + "flags": 7, + "container": "Vector", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 1753714077 - }, - "m_textColor": { - "type": "class Color", - "id": 19, - "offset": 612, - "flags": 262279, - "container": "Static", - "dynamic": false, + "pointer": true, + "hash": 1212938427 + } + } + }, + "238288679": { + "name": "class HatchmakingPetTypesList", + "bases": [ + "PropertyClass" + ], + "hash": 238288679, + "properties": { + "m_hatchmakingPetTypesList": { + "type": "unsigned int", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 2528109250 + "hash": 1843158182 + } + } + }, + "1526019368": { + "name": "class SavedCharacterLists*", + "bases": [ + "PropertyClass" + ], + "hash": 1526019368, + "properties": { + "m_boyCharacterList": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 484937069 }, - "m_textComponent": { - "type": "class TextComponent", - "id": 20, - "offset": 616, - "flags": 135, + "m_girlCharacterList": { + "type": "class SharedPointer", + "id": 1, + "offset": 88, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2372941617 + } + } + }, + "669408959": { + "name": "class ClientRemoveInterceptCinematicAction*", + "bases": [ + "RemoveInterceptCinematicAction", + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 669408959, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3491704390 + "hash": 2237098605 }, - "m_effectID": { + "m_actor": { "type": "std::string", - "id": 21, - "offset": 736, + "id": 1, + "offset": 80, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3633927605 + "hash": 2285866132 } } }, - "1931468087": { - "name": "class PlaySpellData*", + "1093991667": { + "name": "class SharedPointer", "bases": [ + "BreadCrumbBehaviorBase", + "BehaviorInstance", "PropertyClass" ], - "hash": 1931468087, + "hash": 1093991667, "properties": { - "m_templateID": { + "m_behaviorTemplateNameID": { "type": "unsigned int", "id": 0, - "offset": 72, - "flags": 7, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1286746870 + "hash": 223437287 }, - "m_enchantment": { + "m_breadCrumbNumber": { "type": "unsigned int", "id": 1, - "offset": 76, - "flags": 7, + "offset": 112, + "flags": 65543, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2217886818 + "hash": 2100995821 + }, + "m_equippedPetGIDList": { + "type": "gid", + "id": 2, + "offset": 120, + "flags": 65543, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1574152046 + }, + "m_equippedBreadCrumbIDList": { + "type": "unsigned short", + "id": 3, + "offset": 136, + "flags": 65543, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 592278117 + }, + "m_flags": { + "type": "unsigned int", + "id": 4, + "offset": 152, + "flags": 65543, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1005801050 } } }, - "1532635201": { - "name": "class WizardAutobotManagerGraphicalClient*", - "bases": [ - "WizardAutobotManager", - "AutobotManager", - "PropertyClass" - ], - "hash": 1532635201, - "properties": {} - }, - "1933461009": { - "name": "class ReqBaseSchoolOfFocus*", + "1952338910": { + "name": "class SharedPointer", "bases": [ "Requirement", "PropertyClass" ], - "hash": 1933461009, + "hash": 1952338910, "properties": { "m_applyNOT": { "type": "bool", @@ -425462,8 +123770,8 @@ "__DEFAULT": "ROP_AND" } }, - "m_magicSchool": { - "type": "std::string", + "m_numericValue": { + "type": "float", "id": 2, "offset": 80, "flags": 31, @@ -425471,3579 +123779,3185 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 1597012900 - } - } - }, - "1531266643": { - "name": "class AttenuatedFileDescription", - "bases": [ - "PropertyClass" - ], - "hash": 1531266643, - "properties": { - "m_fileName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3116172444 + "hash": 521915239 }, - "m_attenuationPercent": { - "type": "float", - "id": 1, - "offset": 104, - "flags": 7, + "m_operatorType": { + "type": "enum ReqNumeric::OPERATOR_TYPE", + "id": 3, + "offset": 84, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1412579028 + "hash": 2228122961, + "enum_options": { + "OPERATOR_UNKNOWN": 4294967295, + "OPERATOR_EQUALS": 0, + "OPERATOR_GREATER_THAN": 1, + "OPERATOR_LESS_THAN": 2, + "OPERATOR_GREATER_THAN_EQ": 3, + "OPERATOR_LESS_THAN_EQ": 4 + } } } }, - "1932529338": { - "name": "class SharedPointer", + "1526341501": { + "name": "class ClientCSRRegistryList*", "bases": [ "PropertyClass" ], - "hash": 1932529338, + "hash": 1526341501, "properties": { - "m_crownsCost": { - "type": "unsigned int", + "m_propertyList": { + "type": "class SharedPointer", "id": 0, "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1803615170 - }, - "m_lowestEquipLevelInclusive": { - "type": "int", - "id": 1, - "offset": 76, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1282442502 - }, - "m_highestEquipLevelInclusive": { - "type": "int", - "id": 2, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, + "flags": 23, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 1771734836 + "pointer": true, + "hash": 2832578002 } } }, - "1531251970": { - "name": "class HangingConversionSpellEffect*", + "671148226": { + "name": "class SharedPointer", "bases": [ - "SpellEffect", + "CinematicStageTemplate", "PropertyClass" ], - "hash": 1531251970, + "hash": 671148226, "properties": { - "m_effectType": { - "type": "enum SpellEffect::kSpellEffects", + "m_name": { + "type": "std::string", "id": 0, "offset": 72, - "flags": 2097183, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2578255295, - "enum_options": { - "kInvalidSpellEffect": 0, - "kDamage": 1, - "kDamageNoCrit": 2, - "kHeal": 3, - "kHealPercent": 4, - "kSetHealPercent": 113, - "kStealHealth": 5, - "kReduceOverTime": 6, - "kDetonateOverTime": 7, - "kPushCharm": 8, - "kStealCharm": 9, - "kPushWard": 10, - "kStealWard": 11, - "kPushOverTime": 12, - "kStealOverTime": 13, - "kRemoveCharm": 14, - "kRemoveWard": 15, - "kRemoveOverTime": 16, - "kRemoveAura": 17, - "kSwapAll": 18, - "kSwapCharm": 19, - "kSwapWard": 20, - "kSwapOverTime": 21, - "kModifyIncomingDamage": 22, - "kModifyIncomingDamageFlat": 119, - "kMaximumIncomingDamage": 23, - "kModifyIncomingHeal": 24, - "kModifyIncomingHealFlat": 118, - "kModifyIncomingDamageType": 25, - "kModifyIncomingArmorPiercing": 26, - "kModifyOutgoingDamage": 27, - "kModifyOutgoingDamageFlat": 121, - "kModifyOutgoingHeal": 28, - "kModifyOutgoingHealFlat": 120, - "kModifyOutgoingDamageType": 29, - "kModifyOutgoingArmorPiercing": 30, - "kModifyOutgoingStealHealth": 31, - "kModifyIncomingStealHealth": 32, - "kBounceNext": 33, - "kBouncePrevious": 34, - "kBounceBack": 35, - "kBounceAll": 36, - "kAbsorbDamage": 37, - "kAbsorbHeal": 38, - "kModifyAccuracy": 39, - "kDispel": 40, - "kConfusion": 41, - "kCloakedCharm": 42, - "kCloakedWard": 43, - "kStunResist": 44, - "kClue": 111, - "kPipConversion": 45, - "kCritBoost": 46, - "kCritBlock": 47, - "kPolymorph": 48, - "kDelayCast": 49, - "kModifyCardCloak": 50, - "kModifyCardDamage": 51, - "kModifyCardAccuracy": 53, - "kModifyCardMutation": 54, - "kModifyCardRank": 55, - "kModifyCardArmorPiercing": 56, - "kSummonCreature": 65, - "kTeleportPlayer": 66, - "kStun": 67, - "kDampen": 68, - "kReshuffle": 69, - "kMindControl": 70, - "kModifyPips": 71, - "kModifyPowerPips": 72, - "kModifyShadowPips": 73, - "kModifyHate": 74, - "kDamageOverTime": 75, - "kHealOverTime": 76, - "kModifyPowerPipChance": 77, - "kModifyRank": 78, - "kStunBlock": 79, - "kRevealCloak": 80, - "kInstantKill": 81, - "kAfterlife": 82, - "kDeferredDamage": 83, - "kDamagePerTotalPipPower": 84, - "kModifyCardHeal": 52, - "kModifyCardCharm": 57, - "kModifyCardWard": 58, - "kModifyCardOutgoingDamage": 59, - "kModifyCardOutgoingAccuracy": 60, - "kModifyCardOutgoingHeal": 61, - "kModifyCardOutgoingArmorPiercing": 62, - "kModifyCardIncomingDamage": 63, - "kModifyCardAbsorbDamage": 64, - "kCloakedWardNoRemove": 86, - "kAddCombatTriggerList": 87, - "kRemoveCombatTriggerList": 88, - "kBacklashDamage": 89, - "kModifyBacklash": 90, - "kIntercept": 91, - "kShadowSelf": 92, - "kShadowCreature": 93, - "kModifyShadowCreatureLevel": 94, - "kSelectShadowCreatureAttackTarget": 95, - "kShadowDecrementTurn": 96, - "kCritBoostSchoolSpecific": 97, - "kSpawnCreature": 98, - "kUnPolymorph": 99, - "kPowerPipConversion": 100, - "kProtectCardBeneficial": 101, - "kProtectCardHarmful": 102, - "kProtectBeneficial": 103, - "kProtectHarmful": 104, - "kDivideDamage": 105, - "kCollectEssence": 106, - "kKillCreature": 107, - "kDispelBlock": 108, - "kConfusionBlock": 109, - "kModifyPipRoundRate": 110, - "kMaxHealthDamage": 112, - "kUntargetable": 114, - "kMakeTargetable": 115, - "kForceTargetable": 116, - "kRemoveStunBlock": 117, - "kExitCombat": 122, - "kSuspendPips": 123, - "kResumePips": 124, - "kAutoPass": 125, - "kStopAutoPass": 126, - "kVanish": 127, - "kStopVanish": 128, - "kMaxHealthHeal": 129, - "kHealByWard": 130, - "kTaunt": 131, - "kPacify": 132, - "kRemoveTargetRestriction": 133, - "kConvertHangingEffect": 134, - "kAddSpellToDeck": 135, - "kAddSpellToHand": 136, - "kModifyIncomingDamageOverTime": 137, - "kModifyIncomingHealOverTime": 138, - "kModifyCardDamagebyRank": 139, - "kPushConvertedCharm": 140, - "kStealConvertedCharm": 141, - "kPushConvertedWard": 142, - "kStealConvertedWard": 143, - "kPushConvertedOverTime": 144, - "kStealConvertedOverTime": 145, - "kRemoveConvertedCharm": 146, - "kRemoveConvertedWard": 147, - "kRemoveConvertedOverTime": 148, - "kModifyOverTimeDuration": 149, - "kModifySchoolPips": 150 - } + "hash": 1717359772 }, - "m_effectParam": { - "type": "int", + "m_duration": { + "type": "float", "id": 1, - "offset": 76, - "flags": 31, + "offset": 104, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 357920024 + "hash": 920323453 }, - "m_disposition": { - "type": "enum SpellEffect::kHangingDisposition", + "m_actions": { + "type": "class SharedPointer", "id": 2, - "offset": 80, - "flags": 2097159, - "container": "Static", - "dynamic": false, + "offset": 112, + "flags": 7, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 1904841031, - "enum_options": { - "kBoth": 0, - "kBeneficial": 1, - "kHarmful": 2 - } + "pointer": true, + "hash": 1380578687 }, - "m_sDamageType": { - "type": "std::string", + "m_stageRelationships": { + "type": "class SharedPointer", "id": 3, - "offset": 88, + "offset": 128, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 2501054223 + "pointer": true, + "hash": 499983354 }, - "m_damageType": { - "type": "unsigned int", + "m_cameras": { + "type": "std::string", "id": 4, - "offset": 84, - "flags": 31, - "container": "Static", - "dynamic": false, + "offset": 152, + "flags": 131079, + "container": "Vector", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 737882766 + "hash": 3217341687 }, - "m_pipNum": { - "type": "int", + "m_altcameras": { + "type": "std::string", "id": 5, - "offset": 128, - "flags": 7, - "container": "Static", - "dynamic": false, + "offset": 176, + "flags": 131079, + "container": "Vector", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 830827539 + "hash": 1882980152 }, - "m_actNum": { - "type": "int", + "m_animation": { + "type": "std::string", "id": 6, - "offset": 132, - "flags": 31, + "offset": 200, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 236824866 + "hash": 3431428731 }, - "m_effectTarget": { - "type": "enum SpellEffect::kEffectTarget", + "m_bUsesGetHitSound": { + "type": "bool", "id": 7, - "offset": 140, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2458940523, - "enum_options": { - "kInvalidTarget": 0, - "kSpell": 1, - "kSpecificSpells": 2, - "kGlobal": 3, - "kEnemyTeam": 4, - "kEnemyTeamAllAtOnce": 5, - "kFriendlyTeam": 6, - "kFriendlyTeamAllAtOnce": 7, - "kEnemySingle": 8, - "kFriendlySingle": 9, - "kMinion": 10, - "kFriendlyMinion": 17, - "kEnemyMinion": 18, - "kSelf": 11, - "kAtLeastOneEnemy": 13, - "kPreselectedEnemySingle": 12, - "kMultiTargetEnemy": 14, - "kMultiTargetFriendly": 15, - "kFriendlySingleNotMe": 16 - } - }, - "m_numRounds": { - "type": "int", - "id": 8, - "offset": 144, - "flags": 31, + "offset": 232, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1229753829 - }, - "m_paramPerRound": { - "type": "int", - "id": 9, - "offset": 148, - "flags": 31, - "container": "Static", - "dynamic": false, + "hash": 49296995 + } + } + }, + "239304037": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 239304037, + "properties": { + "m_savedSettingList": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 683234234 - }, - "m_healModifier": { - "type": "float", - "id": 10, - "offset": 152, + "pointer": true, + "hash": 2421895488 + } + } + }, + "1095126863": { + "name": "class ObjectRemapBehaviorTemplate*", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 1095126863, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1317921248, - "enum_options": { - "__DEFAULT": "1.0" - } + "hash": 3130754092 }, - "m_spellTemplateID": { - "type": "unsigned int", - "id": 11, + "m_floorMaterialName": { + "type": "std::string", + "id": 1, "offset": 120, - "flags": 31, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 585567702 + "hash": 1873368397 }, - "m_enchantmentSpellTemplateID": { - "type": "unsigned int", - "id": 12, - "offset": 124, - "flags": 31, + "m_wallMaterialName": { + "type": "std::string", + "id": 2, + "offset": 152, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 246955115 + "hash": 1499966715 }, - "m_act": { + "m_bothFloor": { "type": "bool", - "id": 13, - "offset": 136, + "id": 3, + "offset": 184, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 269510283 + "hash": 357593442 }, - "m_cloaked": { + "m_bothWall": { "type": "bool", - "id": 14, - "offset": 157, - "flags": 31, + "id": 4, + "offset": 185, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 7349510 - }, - "m_bypassProtection": { - "type": "bool", - "id": 15, - "offset": 159, - "flags": 31, + "hash": 274227824 + } + } + }, + "1526340221": { + "name": "class ClientCSRRegistryList", + "bases": [ + "PropertyClass" + ], + "hash": 1526340221, + "properties": { + "m_propertyList": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 23, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2832578002 + } + } + }, + "669830056": { + "name": "enum BugType", + "bases": [], + "hash": 669830056, + "properties": {} + }, + "1095126543": { + "name": "class ObjectRemapBehaviorTemplate", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 1095126543, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1657138252 + "hash": 3130754092 }, - "m_armorPiercingParam": { - "type": "int", - "id": 16, - "offset": 160, - "flags": 31, + "m_floorMaterialName": { + "type": "std::string", + "id": 1, + "offset": 120, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2025530205 + "hash": 1873368397 }, - "m_chancePerTarget": { - "type": "int", - "id": 17, - "offset": 164, - "flags": 31, + "m_wallMaterialName": { + "type": "std::string", + "id": 2, + "offset": 152, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 845426794 + "hash": 1499966715 }, - "m_protected": { + "m_bothFloor": { "type": "bool", - "id": 18, - "offset": 168, - "flags": 31, + "id": 3, + "offset": 184, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1445655037 + "hash": 357593442 }, - "m_converted": { + "m_bothWall": { "type": "bool", - "id": 19, - "offset": 169, - "flags": 31, + "id": 4, + "offset": 185, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1590428797 - }, - "m_rank": { - "type": "int", - "id": 20, - "offset": 208, - "flags": 7, - "container": "Static", - "dynamic": false, + "hash": 274227824 + } + } + }, + "1953415415": { + "name": "class PartyChatObserver*", + "bases": [ + "GroupObserver", + "PropertyClass" + ], + "hash": 1953415415, + "properties": {} + }, + "1094456441": { + "name": "class CrownShopOffering", + "bases": [ + "PropertyClass" + ], + "hash": 1094456441, + "properties": { + "m_boosterPacks": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 31, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 219803942 + "hash": 1546992872 }, - "m_hangingEffectType": { - "type": "enum HangingConversionSpellEffect::HangingEffectType", - "id": 21, - "offset": 224, - "flags": 2097159, + "m_shopType": { + "type": "int", + "id": 1, + "offset": 88, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2015960933, - "enum_options": { - "HE_Any": 0, - "HE_Ward": 1, - "HE_Charm": 2, - "HE_OverTime": 3, - "HE_Specific": 4 - } - }, - "m_specificEffectTypes": { - "type": "enum SpellEffect::kSpellEffects", - "id": 22, - "offset": 232, + "hash": 446675542 + } + } + }, + "239623404": { + "name": "class PetTomeBehaviorTemplate*", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 239623404, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, "flags": 7, - "container": "List", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 2049268184, - "enum_options": { - "kModifyOutgoingDamage": 27, - "kModifyOutgoingDamageFlat": 121, - "kModifyAccuracy": 39, - "kCloakedCharm": 42, - "kDispel": 40, - "kCritBoost": 46, - "kCritBoostSchoolSpecific": 97, - "kModifyOutgoingHeal": 28, - "kModifyOutgoingHealFlat": 120, - "kModifyOutgoingDamageType": 29, - "kModifyOutgoingArmorPiercing": 30, - "kModifyIncomingStealHealth": 32, - "kModifyOutgoingStealHealth": 31, - "kBounceNext": 33, - "kBouncePrevious": 34, - "kBounceBack": 35, - "kCloakedWard": 43, - "kModifyIncomingDamage": 22, - "kModifyIncomingDamageFlat": 119, - "kModifyIncomingDamageOverTime": 137, - "kMaximumIncomingDamage": 23, - "kAbsorbDamage": 37, - "kAbsorbHeal": 38, - "kBounceAll": 36, - "kCritBlock": 47, - "kStunBlock": 79, - "kStunResist": 44, - "kPipConversion": 45, - "kPowerPipConversion": 100, - "kModifyIncomingDamageType": 25, - "kModifyIncomingHeal": 24, - "kModifyIncomingHealFlat": 118, - "kModifyIncomingHealOverTime": 138, - "kModifyIncomingArmorPiercing": 26, - "kCloakedWardNoRemove": 86, - "kDispelBlock": 108, - "kConfusionBlock": 109, - "kDamageOverTime": 75, - "kHealOverTime": 76, - "kDeferredDamage": 83 - } - }, - "m_minEffectValue": { - "type": "int", - "id": 23, - "offset": 248, - "flags": 7, + "hash": 3130754092 + } + } + }, + "1526409300": { + "name": "class NonCombatMayCastSpellDescription", + "bases": [ + "PropertyClass" + ], + "hash": 1526409300, + "properties": { + "m_description": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 8388615, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1614619272 + "hash": 1649374815 }, - "m_maxEffectValue": { - "type": "int", - "id": 24, - "offset": 252, - "flags": 7, + "m_displaySpellName": { + "type": "std::string", + "id": 1, + "offset": 104, + "flags": 268435463, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1321630794 - }, - "m_notDamageType": { - "type": "bool", - "id": 25, - "offset": 256, + "hash": 3323484466, + "enum_options": { + "__BASECLASS": "SpellTemplate" + } + } + } + }, + "671370420": { + "name": "class SharedPointer", + "bases": [ + "FaceTargetTeamActorCinematicAction", + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 671370420, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1313760773 + "hash": 2237098605 }, - "m_minEffectCount": { - "type": "int", - "id": 26, - "offset": 260, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1592599476 + "hash": 2285866132 }, - "m_maxEffectCount": { - "type": "int", - "id": 27, - "offset": 264, + "m_bCaster": { + "type": "bool", + "id": 2, + "offset": 120, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1299610998 - }, - "m_outputSelector": { - "type": "enum HangingConversionSpellEffect::OutputEffectSelector", - "id": 28, - "offset": 268, - "flags": 2097159, + "hash": 1390351511 + } + } + }, + "1953974580": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1953974580, + "properties": { + "m_saleID": { + "type": "unsigned int", + "id": 0, + "offset": 72, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1795006880, - "enum_options": { - "OES_All": 0, - "OES_MatchedSelectRank": 1 - } + "hash": 1150028607 }, - "m_scaleSourceEffectValue": { - "type": "bool", - "id": 29, - "offset": 272, - "flags": 7, + "m_templateId": { + "type": "gid", + "id": 1, + "offset": 80, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1962536406 + "hash": 1075328033 }, - "m_sourceEffectValuePercent": { - "type": "float", - "id": 30, - "offset": 276, - "flags": 7, + "m_loyaltyTokensPrice": { + "type": "int", + "id": 2, + "offset": 88, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1001903523 + "hash": 476322031 }, - "m_applyToEffectSource": { - "type": "bool", - "id": 31, - "offset": 280, - "flags": 7, + "m_purchaseLimit": { + "type": "int", + "id": 3, + "offset": 92, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 760527802 - }, - "m_outputEffect": { - "type": "class SharedPointer", - "id": 32, - "offset": 288, + "hash": 78574068 + } + } + }, + "672862035": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 672862035, + "properties": { + "m_madlibIconDataList": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, "flags": 7, "container": "List", "dynamic": true, "singleton": false, "pointer": true, - "hash": 1098575817 + "hash": 3692830504 } } }, - "1531258114": { - "name": "class HangingConversionSpellEffect", + "240934124": { + "name": "class PetTomeBehaviorTemplate", "bases": [ - "SpellEffect", + "BehaviorTemplate", "PropertyClass" ], - "hash": 1531258114, + "hash": 240934124, "properties": { - "m_effectType": { - "type": "enum SpellEffect::kSpellEffects", + "m_behaviorName": { + "type": "std::string", "id": 0, "offset": 72, - "flags": 2097183, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2578255295, - "enum_options": { - "kInvalidSpellEffect": 0, - "kDamage": 1, - "kDamageNoCrit": 2, - "kHeal": 3, - "kHealPercent": 4, - "kSetHealPercent": 113, - "kStealHealth": 5, - "kReduceOverTime": 6, - "kDetonateOverTime": 7, - "kPushCharm": 8, - "kStealCharm": 9, - "kPushWard": 10, - "kStealWard": 11, - "kPushOverTime": 12, - "kStealOverTime": 13, - "kRemoveCharm": 14, - "kRemoveWard": 15, - "kRemoveOverTime": 16, - "kRemoveAura": 17, - "kSwapAll": 18, - "kSwapCharm": 19, - "kSwapWard": 20, - "kSwapOverTime": 21, - "kModifyIncomingDamage": 22, - "kModifyIncomingDamageFlat": 119, - "kMaximumIncomingDamage": 23, - "kModifyIncomingHeal": 24, - "kModifyIncomingHealFlat": 118, - "kModifyIncomingDamageType": 25, - "kModifyIncomingArmorPiercing": 26, - "kModifyOutgoingDamage": 27, - "kModifyOutgoingDamageFlat": 121, - "kModifyOutgoingHeal": 28, - "kModifyOutgoingHealFlat": 120, - "kModifyOutgoingDamageType": 29, - "kModifyOutgoingArmorPiercing": 30, - "kModifyOutgoingStealHealth": 31, - "kModifyIncomingStealHealth": 32, - "kBounceNext": 33, - "kBouncePrevious": 34, - "kBounceBack": 35, - "kBounceAll": 36, - "kAbsorbDamage": 37, - "kAbsorbHeal": 38, - "kModifyAccuracy": 39, - "kDispel": 40, - "kConfusion": 41, - "kCloakedCharm": 42, - "kCloakedWard": 43, - "kStunResist": 44, - "kClue": 111, - "kPipConversion": 45, - "kCritBoost": 46, - "kCritBlock": 47, - "kPolymorph": 48, - "kDelayCast": 49, - "kModifyCardCloak": 50, - "kModifyCardDamage": 51, - "kModifyCardAccuracy": 53, - "kModifyCardMutation": 54, - "kModifyCardRank": 55, - "kModifyCardArmorPiercing": 56, - "kSummonCreature": 65, - "kTeleportPlayer": 66, - "kStun": 67, - "kDampen": 68, - "kReshuffle": 69, - "kMindControl": 70, - "kModifyPips": 71, - "kModifyPowerPips": 72, - "kModifyShadowPips": 73, - "kModifyHate": 74, - "kDamageOverTime": 75, - "kHealOverTime": 76, - "kModifyPowerPipChance": 77, - "kModifyRank": 78, - "kStunBlock": 79, - "kRevealCloak": 80, - "kInstantKill": 81, - "kAfterlife": 82, - "kDeferredDamage": 83, - "kDamagePerTotalPipPower": 84, - "kModifyCardHeal": 52, - "kModifyCardCharm": 57, - "kModifyCardWard": 58, - "kModifyCardOutgoingDamage": 59, - "kModifyCardOutgoingAccuracy": 60, - "kModifyCardOutgoingHeal": 61, - "kModifyCardOutgoingArmorPiercing": 62, - "kModifyCardIncomingDamage": 63, - "kModifyCardAbsorbDamage": 64, - "kCloakedWardNoRemove": 86, - "kAddCombatTriggerList": 87, - "kRemoveCombatTriggerList": 88, - "kBacklashDamage": 89, - "kModifyBacklash": 90, - "kIntercept": 91, - "kShadowSelf": 92, - "kShadowCreature": 93, - "kModifyShadowCreatureLevel": 94, - "kSelectShadowCreatureAttackTarget": 95, - "kShadowDecrementTurn": 96, - "kCritBoostSchoolSpecific": 97, - "kSpawnCreature": 98, - "kUnPolymorph": 99, - "kPowerPipConversion": 100, - "kProtectCardBeneficial": 101, - "kProtectCardHarmful": 102, - "kProtectBeneficial": 103, - "kProtectHarmful": 104, - "kDivideDamage": 105, - "kCollectEssence": 106, - "kKillCreature": 107, - "kDispelBlock": 108, - "kConfusionBlock": 109, - "kModifyPipRoundRate": 110, - "kMaxHealthDamage": 112, - "kUntargetable": 114, - "kMakeTargetable": 115, - "kForceTargetable": 116, - "kRemoveStunBlock": 117, - "kExitCombat": 122, - "kSuspendPips": 123, - "kResumePips": 124, - "kAutoPass": 125, - "kStopAutoPass": 126, - "kVanish": 127, - "kStopVanish": 128, - "kMaxHealthHeal": 129, - "kHealByWard": 130, - "kTaunt": 131, - "kPacify": 132, - "kRemoveTargetRestriction": 133, - "kConvertHangingEffect": 134, - "kAddSpellToDeck": 135, - "kAddSpellToHand": 136, - "kModifyIncomingDamageOverTime": 137, - "kModifyIncomingHealOverTime": 138, - "kModifyCardDamagebyRank": 139, - "kPushConvertedCharm": 140, - "kStealConvertedCharm": 141, - "kPushConvertedWard": 142, - "kStealConvertedWard": 143, - "kPushConvertedOverTime": 144, - "kStealConvertedOverTime": 145, - "kRemoveConvertedCharm": 146, - "kRemoveConvertedWard": 147, - "kRemoveConvertedOverTime": 148, - "kModifyOverTimeDuration": 149, - "kModifySchoolPips": 150 - } - }, - "m_effectParam": { - "type": "int", - "id": 1, - "offset": 76, - "flags": 31, + "hash": 3130754092 + } + } + }, + "1095560187": { + "name": "class RootWindow", + "bases": [ + "Window", + "PropertyClass" + ], + "hash": 1095560187, + "properties": { + "m_sName": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 357920024 + "hash": 2306437263 }, - "m_disposition": { - "type": "enum SpellEffect::kHangingDisposition", + "m_Children": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621225959 + }, + "m_Style": { + "type": "unsigned int", "id": 2, - "offset": 80, - "flags": 2097159, + "offset": 152, + "flags": 1048583, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1904841031, + "hash": 983582334, "enum_options": { - "kBoth": 0, - "kBeneficial": 1, - "kHarmful": 2 + "HAS_BACK": 1, + "SCALE_CHILDREN": 2, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "FOCUS_LOCKED": 64, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152 } }, - "m_sDamageType": { - "type": "std::string", + "m_Flags": { + "type": "unsigned int", "id": 3, - "offset": 88, - "flags": 7, + "offset": 156, + "flags": 1048583, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2501054223 + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } }, - "m_damageType": { - "type": "unsigned int", + "m_Window": { + "type": "class Rect", "id": 4, - "offset": 84, - "flags": 31, + "offset": 160, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 737882766 + "hash": 3105139380 }, - "m_pipNum": { - "type": "int", + "m_fTargetAlpha": { + "type": "float", "id": 5, - "offset": 128, - "flags": 7, + "offset": 212, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 830827539 + "hash": 1809129834 }, - "m_actNum": { - "type": "int", + "m_fDisabledAlpha": { + "type": "float", "id": 6, - "offset": 132, - "flags": 31, + "offset": 216, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 236824866 + "hash": 1389987675 }, - "m_effectTarget": { - "type": "enum SpellEffect::kEffectTarget", + "m_fAlpha": { + "type": "float", "id": 7, - "offset": 140, - "flags": 2097183, + "offset": 208, + "flags": 65671, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2458940523, - "enum_options": { - "kInvalidTarget": 0, - "kSpell": 1, - "kSpecificSpells": 2, - "kGlobal": 3, - "kEnemyTeam": 4, - "kEnemyTeamAllAtOnce": 5, - "kFriendlyTeam": 6, - "kFriendlyTeamAllAtOnce": 7, - "kEnemySingle": 8, - "kFriendlySingle": 9, - "kMinion": 10, - "kFriendlyMinion": 17, - "kEnemyMinion": 18, - "kSelf": 11, - "kAtLeastOneEnemy": 13, - "kPreselectedEnemySingle": 12, - "kMultiTargetEnemy": 14, - "kMultiTargetFriendly": 15, - "kFriendlySingleNotMe": 16 - } + "hash": 482130755 }, - "m_numRounds": { - "type": "int", + "m_pWindowStyle": { + "type": "class SharedPointer", "id": 8, - "offset": 144, - "flags": 31, + "offset": 232, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1229753829 + "pointer": true, + "hash": 3623628394 }, - "m_paramPerRound": { - "type": "int", + "m_sHelp": { + "type": "std::wstring", "id": 9, - "offset": 148, - "flags": 31, + "offset": 248, + "flags": 4194439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 683234234 + "hash": 2102211316 }, - "m_healModifier": { - "type": "float", + "m_sScript": { + "type": "std::string", "id": 10, - "offset": 152, - "flags": 7, + "offset": 352, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1317921248, - "enum_options": { - "__DEFAULT": "1.0" - } + "hash": 1846695875 }, - "m_spellTemplateID": { - "type": "unsigned int", + "m_Offset": { + "type": "class Point", "id": 11, - "offset": 120, - "flags": 31, + "offset": 192, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 585567702 + "hash": 3389835433 }, - "m_enchantmentSpellTemplateID": { - "type": "unsigned int", + "m_Scale": { + "type": "class Point", "id": 12, - "offset": 124, - "flags": 31, + "offset": 200, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 246955115 + "hash": 2547159940 }, - "m_act": { - "type": "bool", + "m_sTip": { + "type": "std::wstring", "id": 13, - "offset": 136, - "flags": 7, + "offset": 392, + "flags": 4194439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 269510283 + "hash": 1513510520 }, - "m_cloaked": { - "type": "bool", + "m_BubbleList": { + "type": "class WindowBubble", "id": 14, - "offset": 157, - "flags": 31, - "container": "Static", - "dynamic": false, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 7349510 + "hash": 2587533771 }, - "m_bypassProtection": { - "type": "bool", + "m_ParentOffset": { + "type": "class Rect", "id": 15, - "offset": 159, - "flags": 31, + "offset": 176, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1657138252 - }, - "m_armorPiercingParam": { - "type": "int", - "id": 16, - "offset": 160, + "hash": 3091503757 + } + } + }, + "1526786676": { + "name": "class MatchStatusUpdate*", + "bases": [ + "TournamentUpdate", + "PropertyClass" + ], + "hash": 1526786676, + "properties": { + "m_matchID": { + "type": "gid", + "id": 0, + "offset": 72, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2025530205 + "hash": 1757621298 }, - "m_chancePerTarget": { + "m_status": { "type": "int", - "id": 17, - "offset": 164, + "id": 1, + "offset": 80, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 845426794 - }, - "m_protected": { - "type": "bool", - "id": 18, - "offset": 168, - "flags": 31, + "hash": 960781182 + } + } + }, + "1958167150": { + "name": "class ClientSetTopTeamCinematicAction", + "bases": [ + "SetTopTeamCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 1958167150, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1445655037 + "hash": 2237098605 }, - "m_converted": { - "type": "bool", - "id": 19, - "offset": 169, - "flags": 31, + "m_interpDuration": { + "type": "float", + "id": 1, + "offset": 80, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1590428797 - }, - "m_rank": { - "type": "int", - "id": 20, - "offset": 208, - "flags": 7, + "hash": 2237711951 + } + } + }, + "240159399": { + "name": "class PositionalSoundBehavior*", + "bases": [ + "SoundBehavior", + "AreaBehavior", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 240159399, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 219803942 + "hash": 223437287 }, - "m_hangingEffectType": { - "type": "enum HangingConversionSpellEffect::HangingEffectType", - "id": 21, - "offset": 224, - "flags": 2097159, + "m_radius": { + "type": "float", + "id": 1, + "offset": 116, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2015960933, - "enum_options": { - "HE_Any": 0, - "HE_Ward": 1, - "HE_Charm": 2, - "HE_OverTime": 3, - "HE_Specific": 4 - } + "hash": 989410271 }, - "m_specificEffectTypes": { - "type": "enum SpellEffect::kSpellEffects", - "id": 22, - "offset": 232, - "flags": 7, - "container": "List", - "dynamic": true, + "m_category": { + "type": "enum AudioCategory", + "id": 2, + "offset": 124, + "flags": 2097159, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 2049268184, + "hash": 2951251982, "enum_options": { - "kModifyOutgoingDamage": 27, - "kModifyOutgoingDamageFlat": 121, - "kModifyAccuracy": 39, - "kCloakedCharm": 42, - "kDispel": 40, - "kCritBoost": 46, - "kCritBoostSchoolSpecific": 97, - "kModifyOutgoingHeal": 28, - "kModifyOutgoingHealFlat": 120, - "kModifyOutgoingDamageType": 29, - "kModifyOutgoingArmorPiercing": 30, - "kModifyIncomingStealHealth": 32, - "kModifyOutgoingStealHealth": 31, - "kBounceNext": 33, - "kBouncePrevious": 34, - "kBounceBack": 35, - "kCloakedWard": 43, - "kModifyIncomingDamage": 22, - "kModifyIncomingDamageFlat": 119, - "kModifyIncomingDamageOverTime": 137, - "kMaximumIncomingDamage": 23, - "kAbsorbDamage": 37, - "kAbsorbHeal": 38, - "kBounceAll": 36, - "kCritBlock": 47, - "kStunBlock": 79, - "kStunResist": 44, - "kPipConversion": 45, - "kPowerPipConversion": 100, - "kModifyIncomingDamageType": 25, - "kModifyIncomingHeal": 24, - "kModifyIncomingHealFlat": 118, - "kModifyIncomingHealOverTime": 138, - "kModifyIncomingArmorPiercing": 26, - "kCloakedWardNoRemove": 86, - "kDispelBlock": 108, - "kConfusionBlock": 109, - "kDamageOverTime": 75, - "kHealOverTime": 76, - "kDeferredDamage": 83 + "AudioCategory_Irrelevent": 0, + "AudioCategory_Accoustic": 1, + "AudioCategory_Noise": 2, + "AudioCategory_Music": 3 } }, - "m_minEffectValue": { - "type": "int", - "id": 23, - "offset": 248, + "m_exclusive": { + "type": "bool", + "id": 3, + "offset": 128, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1614619272 + "hash": 824383403 }, - "m_maxEffectValue": { - "type": "int", - "id": 24, - "offset": 252, + "m_playList": { + "type": "class PlayList", + "id": 4, + "offset": 176, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1321630794 + "hash": 2061221957 }, - "m_notDamageType": { - "type": "bool", - "id": 25, - "offset": 256, + "m_volume": { + "type": "float", + "id": 5, + "offset": 304, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1313760773 + "hash": 1162855023 }, - "m_minEffectCount": { + "m_loopCount": { "type": "int", - "id": 26, - "offset": 260, + "id": 6, + "offset": 308, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1592599476 + "hash": 865634717 }, - "m_maxEffectCount": { - "type": "int", - "id": 27, - "offset": 264, + "m_minimumFalloff": { + "type": "float", + "id": 7, + "offset": 328, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1299610998 - }, - "m_outputSelector": { - "type": "enum HangingConversionSpellEffect::OutputEffectSelector", - "id": 28, - "offset": 268, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1795006880, - "enum_options": { - "OES_All": 0, - "OES_MatchedSelectRank": 1 - } + "hash": 355697197 }, - "m_scaleSourceEffectValue": { - "type": "bool", - "id": 29, - "offset": 272, + "m_maximumFalloff": { + "type": "float", + "id": 8, + "offset": 332, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1962536406 + "hash": 2210192367 }, - "m_sourceEffectValuePercent": { - "type": "float", - "id": 30, - "offset": 276, + "m_animDriven": { + "type": "bool", + "id": 9, + "offset": 392, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1001903523 + "hash": 398394720 }, - "m_applyToEffectSource": { + "m_inverted": { "type": "bool", - "id": 31, - "offset": 280, + "id": 10, + "offset": 397, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 760527802 - }, - "m_outputEffect": { - "type": "class SharedPointer", - "id": 32, - "offset": 288, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1098575817 + "hash": 1034821044 } } }, - "1933870648": { - "name": "class SharedPointer", + "1095166971": { + "name": "class RootWindow*", "bases": [ - "PathBehaviorTemplate::Action", + "Window", "PropertyClass" ], - "hash": 1933870648, + "hash": 1095166971, "properties": { - "m_nPathID": { - "type": "gid", + "m_sName": { + "type": "std::string", "id": 0, - "offset": 72, - "flags": 7, + "offset": 80, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 214382368 + "hash": 2306437263 }, - "m_nNodeID": { - "type": "int", + "m_Children": { + "type": "class SharedPointer", "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 152152635, - "enum_options": { - "__DEFAULT": 4294967295 - } + "pointer": true, + "hash": 2621225959 }, - "m_nPriority": { - "type": "int", + "m_Style": { + "type": "unsigned int", "id": 2, - "offset": 84, - "flags": 7, + "offset": 152, + "flags": 1048583, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1515251530, + "hash": 983582334, "enum_options": { - "__DEFAULT": 100 + "HAS_BACK": 1, + "SCALE_CHILDREN": 2, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "FOCUS_LOCKED": 64, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152 } }, - "m_nChance": { - "type": "int", + "m_Flags": { + "type": "unsigned int", "id": 3, - "offset": 88, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1860748394, - "enum_options": { - "__DEFAULT": 50 - } - } - } - }, - "1933461049": { - "name": "class ReqBaseSchoolOfFocus", - "bases": [ - "Requirement", - "PropertyClass" - ], - "hash": 1933461049, - "properties": { - "m_applyNOT": { - "type": "bool", - "id": 0, - "offset": 72, - "flags": 31, + "offset": 156, + "flags": 1048583, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1746328074, + "hash": 967851578, "enum_options": { - "__DEFAULT": 0 + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 } }, - "m_operator": { - "type": "enum Requirement::Operator", - "id": 1, - "offset": 76, - "flags": 2097183, + "m_Window": { + "type": "class Rect", + "id": 4, + "offset": 160, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2672792317, - "enum_options": { - "ROP_AND": 0, - "ROP_OR": 1, - "__DEFAULT": "ROP_AND" - } + "hash": 3105139380 }, - "m_magicSchool": { - "type": "std::string", - "id": 2, - "offset": 80, - "flags": 31, + "m_fTargetAlpha": { + "type": "float", + "id": 5, + "offset": 212, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1597012900 - } - } - }, - "1532029556": { - "name": "class MatchStatusUpdate", - "bases": [ - "TournamentUpdate", - "PropertyClass" - ], - "hash": 1532029556, - "properties": { - "m_matchID": { - "type": "gid", - "id": 0, - "offset": 72, - "flags": 31, + "hash": 1809129834 + }, + "m_fDisabledAlpha": { + "type": "float", + "id": 6, + "offset": 216, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1757621298 + "hash": 1389987675 }, - "m_status": { - "type": "int", - "id": 1, - "offset": 80, - "flags": 31, + "m_fAlpha": { + "type": "float", + "id": 7, + "offset": 208, + "flags": 65671, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 960781182 - } - } - }, - "1934557291": { - "name": "class SharedPointer", - "bases": [ - "ServiceOptionBase", - "PropertyClass" - ], - "hash": 1934557291, - "properties": { - "m_serviceName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, + "hash": 482130755 + }, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 2206028813 + "pointer": true, + "hash": 3623628394 }, - "m_iconKey": { - "type": "std::string", - "id": 1, - "offset": 168, - "flags": 31, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2457138637 + "hash": 2102211316 }, - "m_displayKey": { + "m_sScript": { "type": "std::string", - "id": 2, - "offset": 104, - "flags": 31, + "id": 10, + "offset": 352, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3023276954 + "hash": 1846695875 }, - "m_serviceIndex": { - "type": "unsigned int", - "id": 3, - "offset": 204, - "flags": 31, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2103126710 + "hash": 3389835433 }, - "m_forceInteract": { - "type": "bool", - "id": 4, + "m_Scale": { + "type": "class Point", + "id": 12, "offset": 200, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1705789564 - } - } - }, - "1532726828": { - "name": "class Cinematic", - "bases": [ - "PropertyClass" - ], - "hash": 1532726828, - "properties": {} - }, - "1934416845": { - "name": "class InteractiveMusicNote*", - "bases": [ - "PropertyClass" - ], - "hash": 1934416845, - "properties": { - "m_noteName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 65543, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2085772594 - }, - "m_duration": { - "type": "float", - "id": 1, - "offset": 104, - "flags": 65543, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 920323453 - } - } - }, - "1532717121": { - "name": "class WizardAutobotManagerGraphicalClient", - "bases": [ - "WizardAutobotManager", - "AutobotManager", - "PropertyClass" - ], - "hash": 1532717121, - "properties": {} - }, - "367564844": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 367564844, - "properties": { - "m_sFallbackPage": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": true, - "pointer": false, - "hash": 1789796475 + "hash": 2547159940 }, - "m_entries": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": true, - "pointer": true, - "hash": 1210334404 - } - } - }, - "1547966277": { - "name": "class RecentWizardInfoList", - "bases": [ - "PropertyClass" - ], - "hash": 1547966277, - "properties": { - "m_recentWizardInfoList": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 3708234369 - } - } - }, - "348728510": { - "name": "class SharedPointer", - "bases": [ - "JewelVaultBehaviorBase", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 348728510, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 + "hash": 1513510520 }, - "m_jewelList": { - "type": "unsigned int", - "id": 1, - "offset": 112, - "flags": 65543, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, "container": "List", "dynamic": true, "singleton": false, "pointer": false, - "hash": 1839384000 - }, - "m_jewelData": { - "type": "std::string", - "id": 2, - "offset": 128, - "flags": 551, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3125384972 - } - } - }, - "1125885370": { - "name": "class TempStartingPipEffectInfo", - "bases": [ - "GameEffectInfo", - "PropertyClass" - ], - "hash": 1125885370, - "properties": { - "m_effectName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2029161513 - }, - "m_pipsGiven": { - "type": "int", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1346249167 + "hash": 2587533771 }, - "m_powerPipsGiven": { - "type": "int", - "id": 2, - "offset": 108, - "flags": 7, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 377908508 + "hash": 3091503757 } } }, - "1533719620": { - "name": "class CrownShopPatch*", + "1526641483": { + "name": "class GoalData*", "bases": [ "PropertyClass" ], - "hash": 1533719620, + "hash": 1526641483, "properties": { - "m_patches": { + "m_name": { "type": "std::string", "id": 0, "offset": 72, - "flags": 31, - "container": "List", - "dynamic": true, + "flags": 7, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 2834774915 + "hash": 1717359772 } } }, - "348708862": { - "name": "class PositionalStateSoundBehaviorTemplate", + "1957034783": { + "name": "class SharedPointer", "bases": [ - "PositionalSoundBehaviorTemplate", - "SoundBehaviorTemplate", - "AreaBehaviorTemplate", - "BehaviorTemplate", "PropertyClass" ], - "hash": 348708862, + "hash": 1957034783, "properties": { - "m_behaviorName": { - "type": "std::string", + "m_ownerID.m_full": { + "type": "unsigned __int64", "id": 0, - "offset": 72, - "flags": 7, + "offset": 112, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3130754092 + "hash": 2149616286 }, - "m_radius": { - "type": "float", + "m_templateID.m_full": { + "type": "unsigned __int64", "id": 1, "offset": 120, - "flags": 7, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 989410271 + "hash": 633907631 }, - "m_category": { - "type": "enum AudioCategory", + "m_isPlayer": { + "type": "bool", "id": 2, - "offset": 124, - "flags": 2097159, + "offset": 128, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2951251982, - "enum_options": { - "AudioCategory_Irrelevent": 0, - "AudioCategory_Accoustic": 1, - "AudioCategory_Noise": 2, - "AudioCategory_Music": 3, - "AudioCategory_MusicAtSFXVolume": 4, - "AudioCategory_Dialog": 5, - "AudioCategory_UI": 6, - "AudioCategory_NoiseAtMusicVolume": 7 - } + "hash": 1717744636 }, - "m_exclusive": { - "type": "bool", + "m_zoneID.m_full": { + "type": "unsigned __int64", "id": 3, - "offset": 128, - "flags": 7, + "offset": 136, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 824383403 + "hash": 2105998895 }, - "m_active": { - "type": "bool", + "m_teamID": { + "type": "int", "id": 4, - "offset": 129, - "flags": 7, + "offset": 144, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 239335471 + "hash": 982118638 }, - "m_enableReqs": { - "type": "class SharedPointer", + "m_primaryMagicSchoolID": { + "type": "int", "id": 5, - "offset": 136, - "flags": 263, + "offset": 148, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3158020443 + "pointer": false, + "hash": 1864910356 }, - "m_trackFilenameList": { - "type": "std::string", + "m_pipCount": { + "type": "class SharedPointer", "id": 6, "offset": 152, - "flags": 7, - "container": "Vector", - "dynamic": true, + "flags": 31, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": false, - "hash": 2531081709 + "pointer": true, + "hash": 1862540484 }, - "m_playList": { - "type": "class PlayListEntry*", + "m_pipRoundRates": { + "type": "class SharedPointer", "id": 7, - "offset": 176, - "flags": 7, - "container": "Vector", + "offset": 168, + "flags": 31, + "container": "List", "dynamic": true, "singleton": false, "pointer": true, - "hash": 3907873161 + "hash": 1859513241 }, - "m_priority": { - "type": "int", + "m_PipsSuspended": { + "type": "bool", "id": 8, - "offset": 208, - "flags": 7, + "offset": 184, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1235205852 + "hash": 98171898 }, - "m_volume": { - "type": "float", + "m_stunned": { + "type": "int", "id": 9, - "offset": 200, - "flags": 7, + "offset": 188, + "flags": 25, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1162855023 + "hash": 1661672123 }, - "m_loopCount": { + "m_mindcontrolled": { "type": "int", "id": 10, - "offset": 204, - "flags": 7, + "offset": 216, + "flags": 25, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 865634717 + "hash": 2059794744 }, - "m_progression": { - "type": "enum PlayList::Progression", + "m_originalTeam": { + "type": "int", "id": 11, - "offset": 220, - "flags": 2097159, + "offset": 224, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3279400238, - "enum_options": { - "Sequence": 0, - "Random": 1, - "SequenceOnceOnly": 2, - "RandomNoRepeat": 3 - } + "hash": 1121355446 }, - "m_progressMin": { - "type": "float", + "m_nAuraTurnLength": { + "type": "int", "id": 12, - "offset": 212, - "flags": 7, + "offset": 236, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1497550192 + "hash": 1719821564 }, - "m_progressMax": { - "type": "float", + "m_clue": { + "type": "int", "id": 13, - "offset": 216, - "flags": 7, + "offset": 228, + "flags": 25, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1497549938 + "hash": 219277091 }, - "m_audioFilterSet": { - "type": "unsigned int", + "m_roundsDead": { + "type": "int", "id": 14, - "offset": 224, - "flags": 33554439, + "offset": 232, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 831339825 + "hash": 2071727747 }, - "m_animationNameFilter": { - "type": "std::string", + "m_nPolymorphTurnLength": { + "type": "int", "id": 15, - "offset": 232, - "flags": 7, + "offset": 240, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2292854242 + "hash": 1619550301 }, - "m_functionallabel": { - "type": "std::string", + "m_playerHealth": { + "type": "int", "id": 16, - "offset": 264, - "flags": 7, + "offset": 244, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3589331278 + "hash": 740444925 }, - "m_innerRadius": { - "type": "float", + "m_maxPlayerHealth": { + "type": "int", "id": 17, - "offset": 296, - "flags": 7, + "offset": 248, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 686816091 + "hash": 96027363 }, - "m_inverted": { + "m_HideCurrentHP": { "type": "bool", "id": 18, - "offset": 300, - "flags": 7, + "offset": 252, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1034821044 - } - } - }, - "1532765769": { - "name": "class ShadowCreatureIdleCinematicAction*", - "bases": [ - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 1532765769, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, + "hash": 31360456 + }, + "m_maxHandSize": { + "type": "int", + "id": 19, + "offset": 256, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 + "hash": 1925169782 }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, + "m_pHand": { + "type": "class Hand*", + "id": 20, + "offset": 264, + "flags": 1, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 2285866132 - } - } - }, - "1532765721": { - "name": "class ShadowCreatureIdleCinematicAction", - "bases": [ - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 1532765721, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, + "pointer": true, + "hash": 892448765 + }, + "m_pSavedHand": { + "type": "class Hand*", + "id": 21, + "offset": 272, + "flags": 1, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 2237098605 + "pointer": true, + "hash": 787912720 }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, + "m_pPlayDeck": { + "type": "class PlayDeck*", + "id": 22, + "offset": 280, + "flags": 1, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 2285866132 - } - } - }, - "1126083367": { - "name": "class PremiumContentOption*", - "bases": [ - "PropertyClass" - ], - "hash": 1126083367, - "properties": { - "m_crownsCost": { - "type": "int", - "id": 0, - "offset": 72, - "flags": 7, + "pointer": true, + "hash": 2053198667 + }, + "m_pSavedPlayDeck": { + "type": "class PlayDeck*", + "id": 23, + "offset": 288, + "flags": 1, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1592212719 + "pointer": true, + "hash": 498207966 }, - "m_msrpCost": { + "m_pSavedGameStats": { + "type": "class SharedPointer", + "id": 24, + "offset": 296, + "flags": 1, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1599533644 + }, + "m_savedPrimaryMagicSchoolID": { "type": "int", - "id": 1, - "offset": 76, - "flags": 7, + "id": 25, + "offset": 312, + "flags": 1, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1724602037 + "hash": 983035431 }, - "m_purchaseText": { - "type": "std::string", - "id": 2, - "offset": 80, - "flags": 7, + "m_pGameStats": { + "type": "class SharedPointer", + "id": 26, + "offset": 320, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 2216277819 + "pointer": true, + "hash": 3522102873 }, - "m_buttonText": { - "type": "std::string", - "id": 3, - "offset": 112, - "flags": 7, + "m_color": { + "type": "class Color", + "id": 27, + "offset": 336, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3388300476 + "hash": 1791663549 }, - "m_type": { - "type": "enum PremiumContentOption::ContentType", - "id": 4, - "offset": 144, - "flags": 2097159, + "m_rotation": { + "type": "float", + "id": 28, + "offset": 340, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2088156959, - "enum_options": { - "PCOT_UNKNOWN": 0, - "PCOT_ACCESSPASS": 1, - "PCOT_PURCHASE": 2, - "PCOT_TIMEDACCESSPASS": 3, - "PCOT_SAMPLEACCESSPASS": 4 - } - } - } - }, - "349022322": { - "name": "class TreasureShopOffering*", - "bases": [ - "PropertyClass" - ], - "hash": 349022322, - "properties": { - "m_treasureShopTitle": { - "type": "std::string", - "id": 0, - "offset": 72, + "hash": 1497468551 + }, + "m_radius": { + "type": "float", + "id": 29, + "offset": 344, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3126438722 + "hash": 989410271 }, - "m_treasureSpellNames": { - "type": "std::string", - "id": 1, - "offset": 104, + "m_subcircle": { + "type": "int", + "id": 30, + "offset": 348, "flags": 31, - "container": "List", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 3358741882 + "hash": 1748202326 }, - "m_crownShop": { + "m_pvp": { "type": "bool", - "id": 2, - "offset": 120, + "id": 31, + "offset": 352, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1936888726 + "hash": 269527241 }, - "m_pvpCurrencyShop": { + "m_raid": { "type": "bool", - "id": 3, - "offset": 121, + "id": 32, + "offset": 353, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 648643854 + "hash": 222284947 }, - "m_pvpTourneyCurrencyShop": { - "type": "bool", - "id": 4, - "offset": 122, + "m_dynamicSymbol": { + "type": "enum DynamicSigilSymbol", + "id": 33, + "offset": 356, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 520923364 - } - } - }, - "1126083343": { - "name": "class PremiumContentOption", - "bases": [ - "PropertyClass" - ], - "hash": 1126083343, - "properties": { - "m_crownsCost": { - "type": "int", - "id": 0, - "offset": 72, - "flags": 7, + "hash": 701705655 + }, + "m_accuracyBonus": { + "type": "float", + "id": 34, + "offset": 396, + "flags": 1, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1592212719 + "hash": 1440672233 }, - "m_msrpCost": { + "m_minionSubCircle": { "type": "int", - "id": 1, - "offset": 76, - "flags": 7, + "id": 35, + "offset": 400, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1724602037 + "hash": 1896926112 }, - "m_purchaseText": { - "type": "std::string", - "id": 2, - "offset": 80, - "flags": 7, + "m_isMinion": { + "type": "bool", + "id": 36, + "offset": 404, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2216277819 + "hash": 1597230777 }, - "m_buttonText": { - "type": "std::string", - "id": 3, - "offset": 112, - "flags": 7, + "m_isAccompanyNPC": { + "type": "bool", + "id": 37, + "offset": 412, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3388300476 + "hash": 1067399659 }, - "m_type": { - "type": "enum PremiumContentOption::ContentType", - "id": 4, - "offset": 144, - "flags": 2097159, + "m_hangingEffects": { + "type": "class SpellEffect", + "id": 38, + "offset": 416, + "flags": 27, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2685029606 + }, + "m_publicHangingEffects": { + "type": "class SpellEffect", + "id": 39, + "offset": 432, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1243141029 + }, + "m_auraEffects": { + "type": "class SpellEffect", + "id": 40, + "offset": 448, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2783652947 + }, + "m_shadowEffects": { + "type": "class SharedPointer", + "id": 41, + "offset": 464, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1712698903 + }, + "m_shadowSpellEffects": { + "type": "class SpellEffect", + "id": 42, + "offset": 480, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1808623792 + }, + "m_deathActivatedEffects": { + "type": "class SharedPointer", + "id": 43, + "offset": 512, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1347166054 + }, + "m_delayCastEffects": { + "type": "class DelaySpellEffect", + "id": 44, + "offset": 528, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2596123949 + }, + "m_polymorphSpellTemplateID": { + "type": "unsigned int", + "id": 45, + "offset": 576, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2088156959, - "enum_options": { - "PCOT_UNKNOWN": 0, - "PCOT_ACCESSPASS": 1, - "PCOT_PURCHASE": 2, - "PCOT_TIMEDACCESSPASS": 3, - "PCOT_SAMPLEACCESSPASS": 4 - } - } - } - }, - "349022298": { - "name": "class TreasureShopOffering", - "bases": [ - "PropertyClass" - ], - "hash": 349022298, - "properties": { - "m_treasureShopTitle": { + "hash": 1320079328 + }, + "m_side": { "type": "std::string", - "id": 0, - "offset": 72, + "id": 46, + "offset": 600, + "flags": 1, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1717547872 + }, + "m_shadowSpellsDisabled": { + "type": "bool", + "id": 47, + "offset": 672, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3126438722 + "hash": 2077139652 }, - "m_treasureSpellNames": { - "type": "std::string", - "id": 1, - "offset": 104, + "m_ignoreSpellsPvPOnlyFlag": { + "type": "bool", + "id": 48, + "offset": 673, "flags": 31, - "container": "List", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 3358741882 + "hash": 1714276188 }, - "m_crownShop": { + "m_ignoreSpellsPvEOnlyFlag": { "type": "bool", - "id": 2, - "offset": 120, + "id": 49, + "offset": 674, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1936888726 + "hash": 1691675729 }, - "m_pvpCurrencyShop": { + "m_bossMob": { "type": "bool", - "id": 3, - "offset": 121, + "id": 50, + "offset": 675, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 648643854 + "hash": 986129576 }, - "m_pvpTourneyCurrencyShop": { + "m_hidePVPEnemyChat": { "type": "bool", - "id": 4, - "offset": 122, + "id": 51, + "offset": 676, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 520923364 - } - } - }, - "1533509225": { - "name": "class ObjStateSet", - "bases": [ - "PropertyClass" - ], - "hash": 1533509225, - "properties": { - "m_categories": { - "type": "class ObjStateCategory*", - "id": 0, - "offset": 128, - "flags": 7, + "hash": 1284658049 + }, + "m_combatTriggerIDs": { + "type": "int", + "id": 52, + "offset": 696, + "flags": 1, "container": "List", "dynamic": true, "singleton": false, - "pointer": true, - "hash": 1980433352 + "pointer": false, + "hash": 1654684388 }, - "m_stateSetName": { - "type": "std::string", - "id": 1, - "offset": 72, - "flags": 7, + "m_backlash": { + "type": "int", + "id": 53, + "offset": 724, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1863712969 - } - } - }, - "1533282870": { - "name": "class std::list >", - "bases": [], - "hash": 1533282870, - "properties": {} - }, - "1126367065": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1126367065, - "properties": { - "m_Mounts": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Vector", - "dynamic": true, + "hash": 857558899 + }, + "m_pastBacklash": { + "type": "int", + "id": 54, + "offset": 728, + "flags": 31, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2866335988 - } - } - }, - "350505121": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 350505121, - "properties": { - "m_templateID": { - "type": "unsigned int", - "id": 0, - "offset": 128, + "pointer": false, + "hash": 1229328939 + }, + "m_shadowCreatureLevel": { + "type": "int", + "id": 55, + "offset": 732, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1286746870 + "hash": 1119572179 }, - "m_enchantment": { - "type": "unsigned int", - "id": 1, - "offset": 80, + "m_pastShadowCreatureLevel": { + "type": "int", + "id": 56, + "offset": 736, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2217886818 + "hash": 1267855499 }, - "m_pipCost": { - "type": "class SharedPointer", - "id": 2, - "offset": 176, - "flags": 7, + "m_shadowCreatureLevelCount": { + "type": "int", + "id": 57, + "offset": 744, + "flags": 31, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 975615804 + }, + "m_interceptEffect": { + "type": "class SharedPointer", + "id": 58, + "offset": 768, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": true, - "hash": 3605704820 + "hash": 339294150 }, - "m_regularAdjust": { + "m_roundsSinceShadowPip": { "type": "int", - "id": 3, - "offset": 192, + "id": 59, + "offset": 800, + "flags": 1, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 682042934 + }, + "m_polymorphEffect": { + "type": "class SharedPointer", + "id": 60, + "offset": 824, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, + "pointer": true, + "hash": 2193528962 + }, + "m_confused": { + "type": "int", + "id": 61, + "offset": 196, + "flags": 25, + "container": "Static", + "dynamic": false, + "singleton": false, "pointer": false, - "hash": 1420453335 + "hash": 1851913585 }, - "m_magicSchoolID": { - "type": "unsigned int", - "id": 4, - "offset": 136, - "flags": 7, + "m_confusionTrigger": { + "type": "int", + "id": 62, + "offset": 200, + "flags": 25, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 893146499 + "hash": 554584130 }, - "m_accuracy": { - "type": "unsigned char", - "id": 5, - "offset": 132, - "flags": 7, + "m_confusionDisplay": { + "type": "bool", + "id": 63, + "offset": 204, + "flags": 25, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2273914939 + "hash": 1028383709 }, - "m_treasureCard": { + "m_confusedTarget": { "type": "bool", - "id": 6, - "offset": 197, - "flags": 31, + "id": 64, + "offset": 205, + "flags": 25, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1764879128 + "hash": 1193542673 }, - "m_battleCard": { + "m_untargetable": { "type": "bool", - "id": 7, - "offset": 198, - "flags": 31, + "id": 65, + "offset": 206, + "flags": 25, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1332843753 + "hash": 36479793 }, - "m_itemCard": { + "m_untargetableRounds": { + "type": "int", + "id": 66, + "offset": 208, + "flags": 25, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 80618355 + }, + "m_restrictedTarget": { "type": "bool", - "id": 8, - "offset": 199, - "flags": 7, + "id": 67, + "offset": 212, + "flags": 25, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1683654300 + "hash": 394144563 }, - "m_sideBoard": { + "m_exitCombat": { "type": "bool", - "id": 9, - "offset": 200, - "flags": 7, + "id": 68, + "offset": 213, + "flags": 25, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1897838368 + "hash": 1293141763 }, - "m_spellID": { - "type": "unsigned int", - "id": 10, - "offset": 204, - "flags": 31, + "m_stunnedDisplay": { + "type": "bool", + "id": 69, + "offset": 192, + "flags": 25, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1697483258 + "hash": 892304554 }, - "m_leavesPlayWhenCastOverride": { + "m_mindcontrolledDisplay": { "type": "bool", - "id": 11, - "offset": 216, - "flags": 31, + "id": 70, + "offset": 220, + "flags": 25, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 874407398 + "hash": 174689415 }, - "m_cloaked": { + "m_autoPass": { "type": "bool", - "id": 12, - "offset": 196, - "flags": 7, + "id": 71, + "offset": 720, + "flags": 25, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 7349510 + "hash": 1919864803 }, - "m_enchantmentSpellIsItemCard": { + "m_vanish": { "type": "bool", - "id": 13, - "offset": 76, - "flags": 31, + "id": 72, + "offset": 721, + "flags": 25, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 531590701 + "hash": 1058591164 }, - "m_premutationSpellID": { - "type": "unsigned int", - "id": 14, - "offset": 112, - "flags": 31, + "m_myTeamTurn": { + "type": "bool", + "id": 73, + "offset": 722, + "flags": 25, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1530256370 + "hash": 1134422697 }, - "m_enchantedThisCombat": { + "m_needToCleanAuras": { "type": "bool", - "id": 15, - "offset": 77, - "flags": 31, + "id": 74, + "offset": 888, + "flags": 25, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1895738923 + "hash": 1159570481 }, - "m_paramOverrides": { - "type": "class SharedPointer", - "id": 16, - "offset": 224, + "m_planningPhasePipAquiredType": { + "type": "enum CombatParticipant::PipAquiredByEnum", + "id": 75, + "offset": 816, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1435933659, + "enum_options": { + "CombatParticipant::AQUIRED_PIP_UNKNOWN": 0, + "CombatParticipant::AQUIRED_PIP_NORMAL": 1, + "CombatParticipant::AQUIRED_PIP_POWER": 2, + "CombatParticipant::AQUIRED_NORMAL_TO_POWER_PIP_CONVERSION": 4, + "CombatParticipant::IMPEDE_PIPS": 5 + } + }, + "m_cheatSettings": { + "type": "class SharedPointer", + "id": 76, + "offset": 96, "flags": 31, - "container": "List", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": true, - "hash": 2061635599 + "hash": 2742666223 }, - "m_subEffectMeta": { - "type": "class SharedPointer", - "id": 17, - "offset": 240, + "m_isMonster": { + "type": "unsigned int", + "id": 77, + "offset": 408, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1530878065 + }, + "m_weaponNifSoundList": { + "type": "class SharedPointer", + "id": 78, + "offset": 80, "flags": 31, "container": "List", "dynamic": true, "singleton": false, "pointer": true, - "hash": 1944101106 + "hash": 2575326929 }, - "m_delayEnchantment": { - "type": "bool", - "id": 18, - "offset": 257, - "flags": 287, + "m_petCombatTrigger": { + "type": "int", + "id": 79, + "offset": 712, + "flags": 1, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 191336919 + "hash": 822894541 }, - "m_PvE": { - "type": "bool", - "id": 19, - "offset": 264, - "flags": 287, + "m_petCombatTriggerTarget": { + "type": "int", + "id": 80, + "offset": 716, + "flags": 1, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 269492350 + "hash": 675145556 }, - "m_delayEnchantmentOrder": { - "type": "enum SpellEffect::kDelayOrder", - "id": 20, - "offset": 72, - "flags": 287, + "m_shadowPipRateThreshold": { + "type": "float", + "id": 81, + "offset": 840, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2526055263, - "enum_options": { - "SpellEffect::kAnyOrder": 0, - "SpellEffect::kFirst": 1, - "SpellEffect::kSecond": 2 - } + "hash": 1215959391 }, - "m_roundAddedTC": { + "m_baseSpellDamage": { "type": "int", - "id": 21, - "offset": 260, + "id": 82, + "offset": 844, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 112365451 + "hash": 871613364 }, - "m_secondarySchoolID": { - "type": "unsigned int", - "id": 22, - "offset": 304, - "flags": 7, + "m_statDamage": { + "type": "float", + "id": 83, + "offset": 848, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2081206026 - } - } - }, - "1533676595": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1533676595, - "properties": {} - }, - "349849130": { - "name": "class SharedPointer", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 349849130, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, + "hash": 1480169970 + }, + "m_statResist": { + "type": "float", + "id": 84, + "offset": 852, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3130754092 - } - } - }, - "1128943725": { - "name": "class PetGeneticsControl*", - "bases": [ - "Window", - "PropertyClass" - ], - "hash": 1128943725, - "properties": { - "m_sName": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 135, + "hash": 2033033901 + }, + "m_statPierce": { + "type": "float", + "id": 85, + "offset": 856, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2306437263 - }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 65667, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621225959 + "hash": 1959012939 }, - "m_Style": { - "type": "unsigned int", - "id": 2, - "offset": 152, - "flags": 1048583, + "m_mobLevel": { + "type": "int", + "id": 86, + "offset": 860, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "SCALE_CHILDREN": 2, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "FOCUS_LOCKED": 64, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152 - } + "hash": 186067024 }, - "m_Flags": { - "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 1048583, + "m_bPlayerTimeUpdated": { + "type": "bool", + "id": 87, + "offset": 864, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } + "hash": 877395800 }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, - "flags": 135, + "m_bPlayerTimeEliminated": { + "type": "bool", + "id": 88, + "offset": 865, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3105139380 + "hash": 1842006605 }, - "m_fTargetAlpha": { - "type": "float", - "id": 5, - "offset": 212, - "flags": 135, + "m_bPlayerTimeWarning": { + "type": "bool", + "id": 89, + "offset": 866, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1809129834 + "hash": 742875591 }, - "m_fDisabledAlpha": { + "m_deckFullness": { "type": "float", - "id": 6, - "offset": 216, - "flags": 135, + "id": 90, + "offset": 868, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1389987675 + "hash": 156080730 }, - "m_fAlpha": { + "m_archmasteryPoints": { "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, + "id": 91, + "offset": 872, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 482130755 + "hash": 261464375 }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, + "m_maxArchmasteryPoints": { + "type": "float", + "id": 92, + "offset": 876, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3623628394 + "pointer": false, + "hash": 430012637 }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, + "m_archmasterySchool": { + "type": "unsigned int", + "id": 93, + "offset": 880, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2102211316 + "hash": 485805784 }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, + "m_archmasteryFlags": { + "type": "unsigned int", + "id": 94, + "offset": 884, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1846695875 - }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, + "hash": 1571282557 + } + } + }, + "239990823": { + "name": "class MonsterMagicLevelInfo", + "bases": [ + "PropertyClass" + ], + "hash": 239990823, + "properties": { + "m_level": { + "type": "unsigned char", + "id": 0, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3389835433 + "hash": 1438884808 }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, + "m_xpToLevel": { + "type": "int", + "id": 1, + "offset": 76, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2547159940 + "hash": 1972600157 }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, + "m_levelName": { + "type": "std::string", + "id": 2, + "offset": 80, + "flags": 8388615, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2587533771 - }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, + "hash": 3595417396 + } + } + }, + "1526641099": { + "name": "class GoalData", + "bases": [ + "PropertyClass" + ], + "hash": 1526641099, + "properties": { + "m_name": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3091503757 + "hash": 1717359772 } } }, - "1127770360": { - "name": "class ClientDerbyAddSpeedBoost", + "682949081": { + "name": "class CrownShopGiftRedemption*", "bases": [ - "DerbyAddSpeedBoost", - "DerbyEffect", "PropertyClass" ], - "hash": 1127770360, + "hash": 682949081, "properties": { - "m_buffType": { - "type": "enum DerbyTalentBuffType", + "m_message": { + "type": "std::string", "id": 0, - "offset": 92, - "flags": 2097183, + "offset": 72, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1149251982, - "enum_options": { - "Buff": 0, - "Debuff": 1, - "Neither": 2 - } + "hash": 3411261376 }, - "m_kTarget": { - "type": "enum DerbyTargetType", + "m_itemId.m_full": { + "type": "unsigned __int64", "id": 1, - "offset": 96, - "flags": 2097159, + "offset": 104, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1807803351, - "enum_options": { - "kTargetInFront": 0, - "kTargetBehind": 1, - "kTargetFirst": 2, - "kTargetSelf": 3, - "kTargetAll": 4, - "kTargetLast": 5 - } + "hash": 625276258 }, - "m_nDuration": { + "m_itemCount": { "type": "int", "id": 2, - "offset": 104, + "offset": 120, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1110167982 + "hash": 1789298066 }, - "m_effectID": { - "type": "unsigned int", + "m_itemFlags": { + "type": "int", "id": 3, - "offset": 88, - "flags": 24, + "offset": 124, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2347630439 + "hash": 1792726006 }, - "m_imageFilename": { - "type": "std::string", + "m_texture": { + "type": "int", "id": 4, "offset": 112, - "flags": 131103, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2813328063 + "hash": 222406987 }, - "m_iconIndex": { - "type": "unsigned int", + "m_decal": { + "type": "int", "id": 5, - "offset": 144, + "offset": 116, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1265133262 + "hash": 791777171 }, - "m_soundOnActivate": { - "type": "std::string", + "m_petName": { + "type": "int", "id": 6, - "offset": 152, - "flags": 131103, + "offset": 128, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1956929714 + "hash": 1492854820 }, - "m_soundOnTarget": { - "type": "std::string", + "m_giverAccountID": { + "type": "gid", "id": 7, - "offset": 184, - "flags": 131103, + "offset": 136, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3444214056 + "hash": 679105551 }, - "m_targetParticleEffect": { + "m_itemTransactionId": { "type": "std::string", "id": 8, - "offset": 216, - "flags": 131103, + "offset": 144, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3048234723 + "hash": 1830751453 + } + } + }, + "1955484398": { + "name": "class ItemSetBonusTemplate", + "bases": [ + "CoreTemplate", + "PropertyClass" + ], + "hash": 1955484398, + "properties": { + "m_behaviors": { + "type": "class BehaviorTemplate*", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1197808594 }, - "m_overheadMessage": { + "m_objectName": { "type": "std::string", - "id": 9, - "offset": 248, - "flags": 8388639, + "id": 1, + "offset": 96, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1701018190 + "hash": 2154940147 }, - "m_requirements": { - "type": "class RequirementList", - "id": 10, - "offset": 280, - "flags": 31, + "m_templateID": { + "type": "unsigned int", + "id": 2, + "offset": 128, + "flags": 16777223, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2840988582 + "hash": 1286746870 }, - "m_nTimesToAdd": { - "type": "int", - "id": 11, - "offset": 376, - "flags": 31, + "m_displayName": { + "type": "std::string", + "id": 3, + "offset": 136, + "flags": 8388615, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1414275638 + "hash": 2446900370 + }, + "m_noStacking": { + "type": "bool", + "id": 4, + "offset": 168, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1351303236 + }, + "m_itemSetBonusDataList": { + "type": "class ItemSetBonusData", + "id": 5, + "offset": 176, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2922880945 } } }, - "350281726": { - "name": "class PositionalStateSoundBehaviorTemplate*", + "677315704": { + "name": "class BeneficialProximityBehavior*", "bases": [ - "PositionalSoundBehaviorTemplate", - "SoundBehaviorTemplate", - "AreaBehaviorTemplate", - "BehaviorTemplate", + "BeneficialProximityBehaviorBase", + "BehaviorInstance", "PropertyClass" ], - "hash": 350281726, + "hash": 677315704, "properties": { - "m_behaviorName": { - "type": "std::string", + "m_behaviorTemplateNameID": { + "type": "unsigned int", "id": 0, - "offset": 72, - "flags": 7, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3130754092 + "hash": 223437287 + } + } + }, + "1955484358": { + "name": "class ItemSetBonusTemplate*", + "bases": [ + "CoreTemplate", + "PropertyClass" + ], + "hash": 1955484358, + "properties": { + "m_behaviors": { + "type": "class BehaviorTemplate*", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1197808594 }, - "m_radius": { - "type": "float", + "m_objectName": { + "type": "std::string", "id": 1, - "offset": 120, + "offset": 96, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 989410271 + "hash": 2154940147 }, - "m_category": { - "type": "enum AudioCategory", + "m_templateID": { + "type": "unsigned int", "id": 2, - "offset": 124, - "flags": 2097159, + "offset": 128, + "flags": 16777223, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2951251982, - "enum_options": { - "AudioCategory_Irrelevent": 0, - "AudioCategory_Accoustic": 1, - "AudioCategory_Noise": 2, - "AudioCategory_Music": 3, - "AudioCategory_MusicAtSFXVolume": 4, - "AudioCategory_Dialog": 5, - "AudioCategory_UI": 6, - "AudioCategory_NoiseAtMusicVolume": 7 - } + "hash": 1286746870 }, - "m_exclusive": { - "type": "bool", + "m_displayName": { + "type": "std::string", "id": 3, - "offset": 128, - "flags": 7, + "offset": 136, + "flags": 8388615, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 824383403 + "hash": 2446900370 }, - "m_active": { + "m_noStacking": { "type": "bool", "id": 4, - "offset": 129, + "offset": 168, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 239335471 + "hash": 1351303236 }, - "m_enableReqs": { - "type": "class SharedPointer", + "m_itemSetBonusDataList": { + "type": "class ItemSetBonusData", "id": 5, - "offset": 136, - "flags": 263, + "offset": 176, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2922880945 + } + } + }, + "239992103": { + "name": "class MonsterMagicLevelInfo*", + "bases": [ + "PropertyClass" + ], + "hash": 239992103, + "properties": { + "m_level": { + "type": "unsigned char", + "id": 0, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3158020443 + "pointer": false, + "hash": 1438884808 }, - "m_trackFilenameList": { - "type": "std::string", - "id": 6, - "offset": 152, + "m_xpToLevel": { + "type": "int", + "id": 1, + "offset": 76, "flags": 7, - "container": "Vector", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 2531081709 + "hash": 1972600157 }, - "m_playList": { - "type": "class PlayListEntry*", - "id": 7, - "offset": 176, + "m_levelName": { + "type": "std::string", + "id": 2, + "offset": 80, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3595417396 + } + } + }, + "1095619142": { + "name": "class ClientHideActorCinematicAction*", + "bases": [ + "HideActorCinematicAction", + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 1095619142, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, "flags": 7, - "container": "Vector", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3907873161 + "pointer": false, + "hash": 2237098605 }, - "m_priority": { - "type": "int", - "id": 8, - "offset": 208, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1235205852 + "hash": 2285866132 }, - "m_volume": { - "type": "float", - "id": 9, - "offset": 200, + "m_bHide": { + "type": "bool", + "id": 2, + "offset": 120, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1162855023 + "hash": 790850959 }, - "m_loopCount": { - "type": "int", - "id": 10, - "offset": 204, + "m_evenWhileDead": { + "type": "bool", + "id": 3, + "offset": 121, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 865634717 + "hash": 2100875368 }, - "m_progression": { - "type": "enum PlayList::Progression", - "id": 11, - "offset": 220, - "flags": 2097159, + "m_bMultiRound": { + "type": "bool", + "id": 4, + "offset": 122, + "flags": 263, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3279400238, - "enum_options": { - "Sequence": 0, - "Random": 1, - "SequenceOnceOnly": 2, - "RandomNoRepeat": 3 - } - }, - "m_progressMin": { + "hash": 1821746440 + } + } + }, + "675812536": { + "name": "class SharedPointer", + "bases": [ + "RotateActorCinematicAction", + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 675812536, + "properties": { + "m_timeOffset": { "type": "float", - "id": 12, - "offset": 212, + "id": 0, + "offset": 72, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1497550192 + "hash": 2237098605 }, - "m_progressMax": { - "type": "float", - "id": 13, - "offset": 216, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1497549938 + "hash": 2285866132 }, - "m_audioFilterSet": { - "type": "unsigned int", - "id": 14, - "offset": 224, - "flags": 33554439, + "m_deltaYaw": { + "type": "float", + "id": 2, + "offset": 120, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 831339825 + "hash": 1518691890 + } + } + }, + "1526711693": { + "name": "struct HandParam", + "bases": [], + "hash": 1526711693, + "properties": {} + }, + "675293646": { + "name": "class BodyOfWater*", + "bases": [ + "PropertyClass" + ], + "hash": 675293646, + "properties": { + "m_waterX": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1185657746 }, - "m_animationNameFilter": { - "type": "std::string", - "id": 15, - "offset": 232, + "m_waterY": { + "type": "float", + "id": 1, + "offset": 76, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2292854242 + "hash": 1185657747 }, - "m_functionallabel": { - "type": "std::string", - "id": 16, - "offset": 264, + "m_secondsToRespawn": { + "type": "unsigned int", + "id": 2, + "offset": 80, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3589331278 + "hash": 1001169759 }, - "m_innerRadius": { - "type": "float", - "id": 17, - "offset": 296, + "m_numberOfFish": { + "type": "int", + "id": 3, + "offset": 84, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 686816091 + "hash": 1143336898 }, - "m_inverted": { - "type": "bool", - "id": 18, - "offset": 300, + "m_zoneFishList": { + "type": "class SharedPointer", + "id": 4, + "offset": 96, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2647022847 + }, + "m_waterType": { + "type": "int", + "id": 5, + "offset": 88, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1034821044 + "hash": 869659615 } } }, - "1126574566": { - "name": "class PetGameActionList", + "674228790": { + "name": "class FriendNotificationInfo*", "bases": [ - "Window", "PropertyClass" ], - "hash": 1126574566, + "hash": 674228790, + "properties": {} + }, + "1956447570": { + "name": "class InvisibilityEffectTemplate", + "bases": [ + "GameEffectTemplate", + "PropertyClass" + ], + "hash": 1956447570, "properties": { - "m_sName": { + "m_effectName": { "type": "std::string", "id": 0, - "offset": 80, - "flags": 135, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2306437263 + "hash": 2029161513 }, - "m_Children": { - "type": "class SharedPointer", + "m_effectCategory": { + "type": "std::string", "id": 1, - "offset": 112, - "flags": 65667, - "container": "Vector", - "dynamic": true, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2621225959 + "pointer": false, + "hash": 1852673222 }, - "m_Style": { - "type": "unsigned int", + "m_sortOrder": { + "type": "int", "id": 2, - "offset": 152, - "flags": 1048583, + "offset": 148, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "SCALE_CHILDREN": 2, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "FOCUS_LOCKED": 64, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152 - } + "hash": 1411218206 }, - "m_Flags": { - "type": "unsigned int", + "m_duration": { + "type": "double", "id": 3, - "offset": 156, - "flags": 1048583, + "offset": 192, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } + "hash": 2727932435 }, - "m_Window": { - "type": "class Rect", + "m_stackingCategories": { + "type": "std::string", "id": 4, "offset": 160, - "flags": 135, - "container": "Static", - "dynamic": false, + "flags": 7, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 3105139380 + "hash": 1774497525 }, - "m_fTargetAlpha": { - "type": "float", + "m_isPersistent": { + "type": "bool", "id": 5, - "offset": 212, - "flags": 135, + "offset": 153, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1809129834 + "hash": 923861920 }, - "m_fDisabledAlpha": { - "type": "float", + "m_bIsOnPet": { + "type": "bool", "id": 6, - "offset": 216, - "flags": 135, + "offset": 154, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1389987675 + "hash": 522593303 }, - "m_fAlpha": { - "type": "float", + "m_isPublic": { + "type": "bool", "id": 7, - "offset": 208, - "flags": 65671, + "offset": 152, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 482130755 + "hash": 1728439822 }, - "m_pWindowStyle": { - "type": "class SharedPointer", + "m_visualEffectAddName": { + "type": "std::string", "id": 8, - "offset": 232, - "flags": 135, + "offset": 200, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3623628394 + "pointer": false, + "hash": 3382086694 }, - "m_sHelp": { - "type": "std::wstring", + "m_visualEffectRemoveName": { + "type": "std::string", "id": 9, - "offset": 248, - "flags": 4194439, + "offset": 232, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2102211316 + "hash": 1541697323 }, - "m_sScript": { + "m_onAddFunctorName": { "type": "std::string", "id": 10, - "offset": 352, - "flags": 135, + "offset": 280, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1846695875 + "hash": 1561843107 }, - "m_Offset": { - "type": "class Point", + "m_onRemoveFunctorName": { + "type": "std::string", "id": 11, - "offset": 192, - "flags": 135, + "offset": 312, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3389835433 + "hash": 2559017864 }, - "m_Scale": { - "type": "class Point", + "m_stackingRule": { + "type": "enum STACKING_RULE", "id": 12, - "offset": 200, - "flags": 135, + "offset": 144, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2547159940 + "hash": 431568889, + "enum_options": { + "STACKING_ALLOWED": 0, + "STACKING_NOSTACK": 1, + "STACKING_REPLACE": 2 + } }, - "m_sTip": { - "type": "std::wstring", + "m_invisLevel": { + "type": "unsigned char", "id": 13, - "offset": 392, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2587533771 - }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, + "offset": 360, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3091503757 + "hash": 2488151665 } } }, - "1534544077": { - "name": "class Point", - "bases": [], - "hash": 1534544077, - "properties": {} - }, - "1126411004": { - "name": "class SharedPointer", + "240601586": { + "name": "class SharedPointer", "bases": [ - "BehaviorTemplate", + "BehaviorInstance", "PropertyClass" ], - "hash": 1126411004, + "hash": 240601586, "properties": { - "m_behaviorName": { - "type": "std::string", + "m_behaviorTemplateNameID": { + "type": "unsigned int", "id": 0, - "offset": 72, - "flags": 7, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3130754092 + "hash": 223437287 } } }, - "1533802762": { - "name": "class WizardClientDuelBehavior*", + "1097587775": { + "name": "class SharedPointer", "bases": [ - "ClientDuelBehavior", - "DuelBehavior", - "BehaviorInstance", + "CinematicStageTemplate", "PropertyClass" ], - "hash": 1533802762, + "hash": 1097587775, "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", + "m_name": { + "type": "std::string", "id": 0, - "offset": 104, - "flags": 39, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 + "hash": 1717359772 }, - "m_pDuel": { - "type": "class SharedPointer", + "m_duration": { + "type": "float", "id": 1, - "offset": 112, - "flags": 31, + "offset": 104, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1066616366 + "pointer": false, + "hash": 920323453 }, - "m_sigilTemplateID": { - "type": "unsigned int", + "m_actions": { + "type": "class SharedPointer", "id": 2, + "offset": 112, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1380578687 + }, + "m_stageRelationships": { + "type": "class SharedPointer", + "id": 3, "offset": 128, - "flags": 31, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 499983354 + }, + "m_global": { + "type": "std::string", + "id": 4, + "offset": 152, + "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 269055310 + "hash": 1979851564 + }, + "m_sound": { + "type": "std::string", + "id": 5, + "offset": 184, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2307644996 } } }, - "1533719780": { - "name": "class CrownShopPatch", + "674187830": { + "name": "class FriendNotificationInfo", "bases": [ "PropertyClass" ], - "hash": 1533719780, + "hash": 674187830, + "properties": {} + }, + "1956226406": { + "name": "class PetSnackBehaviorTemplate", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 1956226406, "properties": { - "m_patches": { + "m_behaviorName": { "type": "std::string", "id": 0, "offset": 72, - "flags": 31, - "container": "List", - "dynamic": true, + "flags": 7, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 2834774915 + "hash": 3130754092 + }, + "m_maxReagentsPerStack": { + "type": "int", + "id": 1, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1052405942 } } }, - "351609529": { - "name": "class ControlTickedSlider", + "1095938318": { + "name": "class SharedPointer", "bases": [ - "ControlSlider", - "ControlBar", + "ControlButton", "Window", "PropertyClass" ], - "hash": 351609529, + "hash": 1095938318, "properties": { "m_sName": { "type": "std::string", @@ -429092,7 +127006,12 @@ "USE_ALPHA_BOUNDS": 8192, "AUTO_GROW": 16384, "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152 + "AUTO_RESIZE": 49152, + "SHOW_HOTKEY": 16777216, + "EFFECT_SCALE": 67108864, + "LOCK_ICON_SIZE": 33554432, + "LEFT_TEXT": 536870912, + "NO_FIT_TEXT": 1073741824 } }, "m_Flags": { @@ -429253,629 +127172,443 @@ "pointer": false, "hash": 3091503757 }, - "m_fPosition": { - "type": "float", + "m_bToggle": { + "type": "bool", "id": 16, - "offset": 584, + "offset": 608, "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1808212114 + "hash": 2071810903 }, - "m_BaseColor": { - "type": "class Color", + "m_bButtonDown": { + "type": "bool", "id": 17, - "offset": 588, - "flags": 262279, + "offset": 609, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2172251096 + "hash": 840041705 }, - "m_BarColor": { - "type": "class Color", + "m_sLabel": { + "type": "std::wstring", "id": 18, - "offset": 592, - "flags": 262279, + "offset": 616, + "flags": 4194439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2259916498 + "hash": 2207009163 }, - "m_bDisplayVertical": { - "type": "bool", + "m_labelOffset": { + "type": "class Rect", "id": 19, - "offset": 596, + "offset": 832, "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1359621189 + "hash": 1990646723 }, - "m_pBarMaterial": { + "m_pButton": { "type": "class SharedPointer", "id": 20, - "offset": 600, + "offset": 656, "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": true, - "hash": 2481929515 + "hash": 1543855875 }, - "m_pTopLeftMaterial": { - "type": "class SharedPointer", + "m_HotKey": { + "type": "unsigned int", "id": 21, - "offset": 616, + "offset": 672, "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3248096916 + "pointer": false, + "hash": 1631553409 }, - "m_pCenterMaterial": { - "type": "class SharedPointer", + "m_Color": { + "type": "class Color", "id": 22, - "offset": 632, - "flags": 135, + "offset": 676, + "flags": 262279, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1519560055 + "pointer": false, + "hash": 1753714077 }, - "m_pBottomRightMaterial": { - "type": "class SharedPointer", + "m_bCursorOver": { + "type": "bool", "id": 23, - "offset": 648, + "offset": 689, "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2932444745 + "pointer": false, + "hash": 283981103 }, - "m_fMin": { - "type": "float", + "m_bAbortWhenCursorNotOver": { + "type": "bool", "id": 24, - "offset": 700, + "offset": 706, "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 309551905 + "hash": 325405258 }, - "m_fMax": { - "type": "float", + "m_bHotKeyDown": { + "type": "bool", "id": 25, - "offset": 704, + "offset": 680, "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 309551651 + "hash": 616989185 }, - "m_nTabWidth": { - "type": "int", + "m_fTime": { + "type": "float", "id": 26, - "offset": 708, + "offset": 684, "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1554957503 + "hash": 883746156 }, - "m_nNumberOfTicks": { - "type": "int", + "m_bGreyed": { + "type": "bool", "id": 27, - "offset": 712, + "offset": 688, "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1073178596 - } - } - }, - "350837933": { - "name": "class ClientObject", - "bases": [ - "CoreObject", - "PropertyClass" - ], - "hash": 350837933, - "properties": { - "m_inactiveBehaviors": { - "type": "class SharedPointer", - "id": 0, - "offset": 224, - "flags": 31, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1850812559 - }, - "m_globalID.m_full": { - "type": "unsigned __int64", - "id": 1, - "offset": 72, - "flags": 16777247, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2312465444 - }, - "m_permID": { - "type": "unsigned __int64", - "id": 2, - "offset": 80, - "flags": 16777247, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1298909658 - }, - "m_location": { - "type": "class Vector3D", - "id": 3, - "offset": 168, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2239683611 + "hash": 1566556053 }, - "m_orientation": { - "type": "class Vector3D", - "id": 4, - "offset": 180, - "flags": 31, + "m_fMaxScale": { + "type": "float", + "id": 28, + "offset": 692, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2344058766 + "hash": 2070186635 }, - "m_fScale": { + "m_fScaleSpeed": { "type": "float", - "id": 5, - "offset": 196, - "flags": 31, + "id": 29, + "offset": 696, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 503137701 + "hash": 1457135702 }, - "m_templateID.m_full": { - "type": "unsigned __int64", - "id": 6, - "offset": 96, - "flags": 31, + "m_bUseDropShadow": { + "type": "bool", + "id": 30, + "offset": 704, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 633907631 + "hash": 93063037 }, - "m_debugName": { - "type": "std::string", - "id": 7, - "offset": 104, - "flags": 31, + "m_bUseOutline": { + "type": "bool", + "id": 31, + "offset": 705, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3553984419 + "hash": 744292994 }, - "m_displayKey": { - "type": "std::string", - "id": 8, - "offset": 136, - "flags": 31, + "m_pGreyedState": { + "type": "class SharedPointer", + "id": 32, + "offset": 768, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 3023276954 + "pointer": true, + "hash": 2703352263 }, - "m_zoneTagID": { - "type": "unsigned int", - "id": 9, - "offset": 344, - "flags": 31, + "m_pNormalState": { + "type": "class SharedPointer", + "id": 33, + "offset": 752, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 965291410 + "pointer": true, + "hash": 1887909808 }, - "m_speedMultiplier": { - "type": "short", - "id": 10, - "offset": 192, - "flags": 31, + "m_pHighlightedState": { + "type": "class SharedPointer", + "id": 34, + "offset": 784, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 123130076 + "pointer": true, + "hash": 2200177608 }, - "m_nMobileID": { - "type": "unsigned short", - "id": 11, - "offset": 194, - "flags": 31, + "m_pSelectedState": { + "type": "class SharedPointer", + "id": 35, + "offset": 800, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1054318939 + "pointer": true, + "hash": 2266776432 }, - "m_characterId": { - "type": "gid", - "id": 12, - "offset": 440, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 210498418 - } - } - }, - "1127752174": { - "name": "class PetDerbyObstacleBehaviorTemplate", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 1127752174, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, + "m_pDepressedState": { + "type": "class SharedPointer", + "id": 36, + "offset": 816, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 3130754092 + "pointer": true, + "hash": 1878185798 }, - "m_actionType": { - "type": "enum PetDerbyActions", - "id": 1, - "offset": 120, - "flags": 2097159, + "m_pDecal": { + "type": "class SharedPointer", + "id": 37, + "offset": 880, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 2398162476, - "enum_options": { - "PDA_None": 0, - "PDA_Duck": 2, - "PDA_Jump": 1 - } + "pointer": true, + "hash": 2204742880 }, - "m_canDestroy": { - "type": "bool", - "id": 2, - "offset": 124, - "flags": 7, + "m_DecalColor": { + "type": "class Color", + "id": 38, + "offset": 896, + "flags": 262279, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1271539151 + "hash": 2053465718 }, - "m_decisionRadius": { - "type": "float", - "id": 3, - "offset": 128, - "flags": 7, + "m_DecalOffset": { + "type": "class Rect", + "id": 39, + "offset": 900, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 104770413 + "hash": 1942612892 }, - "m_moraleIncrease": { - "type": "int", - "id": 4, - "offset": 132, - "flags": 7, + "m_pGreyedDecalState": { + "type": "class SharedPointer", + "id": 40, + "offset": 936, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 202238852 + "pointer": true, + "hash": 1430510752 }, - "m_spinEffect": { - "type": "std::string", - "id": 5, - "offset": 184, - "flags": 131079, + "m_pNormalDecalState": { + "type": "class SharedPointer", + "id": 41, + "offset": 920, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1896457826 + "pointer": true, + "hash": 1908952105 }, - "m_impactSound": { - "type": "std::string", - "id": 6, - "offset": 216, - "flags": 131079, + "m_pHighlightedDecalState": { + "type": "class SharedPointer", + "id": 42, + "offset": 952, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 2087348962 + "pointer": true, + "hash": 3280301889 }, - "m_addToWorldSound": { - "type": "std::string", - "id": 7, - "offset": 248, - "flags": 131079, + "m_pSelectedDecalState": { + "type": "class SharedPointer", + "id": 43, + "offset": 968, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 3324219384 - }, - "m_derbyEffectList": { - "type": "class SharedPointer", - "id": 8, - "offset": 136, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1276867926 - }, - "m_onActionSuccessEffectList": { - "type": "class SharedPointer", - "id": 9, - "offset": 152, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, "pointer": true, - "hash": 1046745620 + "hash": 1444589545 }, - "m_onActionFailEffectList": { - "type": "class SharedPointer", - "id": 10, - "offset": 168, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 901707255 - } - } - }, - "1533731312": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1533731312, - "properties": { - "m_weight": { - "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 7, + "m_pDepressedDecalState": { + "type": "class SharedPointer", + "id": 44, + "offset": 984, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1311209301 + "pointer": true, + "hash": 2385844607 } } }, - "1127420642": { - "name": "class SharedPointer", + "1528465126": { + "name": "class SharedPointer", "bases": [ - "StatisticEffect", - "GameEffectBase", "PropertyClass" ], - "hash": 1127420642, + "hash": 1528465126, "properties": { - "m_currentTickCount": { - "type": "double", + "m_updates": { + "type": "class SharedPointer", "id": 0, - "offset": 80, - "flags": 63, - "container": "Static", - "dynamic": false, + "offset": 88, + "flags": 31, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 2533274692 + "pointer": true, + "hash": 3250680338 }, - "m_effectNameID": { - "type": "unsigned int", + "m_matchCount": { + "type": "int", "id": 1, - "offset": 96, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1204067144 - }, - "m_bIsOnPet": { - "type": "bool", - "id": 2, - "offset": 73, + "offset": 72, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 522593303 - }, - "m_originatorID": { - "type": "gid", - "id": 3, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1131810019 - }, - "m_itemSlotID": { - "type": "unsigned int", - "id": 4, - "offset": 112, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1895747595 + "hash": 1400798736 }, - "m_internalID": { + "m_teamCount": { "type": "int", - "id": 5, - "offset": 92, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1643137924 - }, - "m_endTime": { - "type": "unsigned int", - "id": 6, - "offset": 88, + "id": 2, + "offset": 76, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 716479635 + "hash": 1614476394 }, - "m_lookupIndex": { + "m_actorCount": { "type": "int", - "id": 7, - "offset": 128, + "id": 3, + "offset": 80, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1626623948 + "hash": 1057423836 } } }, - "352071518": { - "name": "class SharedPointer", + "1095853754": { + "name": "class SharedPointer", "bases": [ + "MoveController::MoveCommand", "PropertyClass" ], - "hash": 352071518, + "hash": 1095853754, "properties": { - "m_commandName": { - "type": "std::string", + "m_vVelocity": { + "type": "class Vector3D", "id": 0, - "offset": 72, - "flags": 7, + "offset": 88, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1931590331 + "hash": 2295460039 }, - "m_command": { - "type": "std::string", + "m_vGravity": { + "type": "class Vector3D", "id": 1, - "offset": 104, - "flags": 7, + "offset": 100, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1618022938 - } - } - }, - "1534543059": { - "name": "class SharedPointer", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1534543059, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, + "hash": 3690342814 + }, + "m_fUpdateFreq": { + "type": "float", + "id": 2, + "offset": 136, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 - } - } - }, - "352463339": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 352463339, - "properties": { - "m_displayID": { - "type": "gid", - "id": 0, - "offset": 72, - "flags": 65543, + "hash": 1668426734 + }, + "m_dElapsedTime": { + "type": "double", + "id": 3, + "offset": 128, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1022427803 + "hash": 2027745342 } } }, - "1128158788": { - "name": "class TemplateLocation*", + "1527467522": { + "name": "class SharedPointer", "bases": [ "PropertyClass" ], - "hash": 1128158788, + "hash": 1527467522, "properties": { - "m_filename": { - "type": "std::string", + "m_ageOutTime": { + "type": "unsigned int", "id": 0, "offset": 72, "flags": 7, @@ -429883,1616 +127616,1553 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 3117322428 + "hash": 819371137 }, - "m_id": { + "m_totalRating": { "type": "unsigned int", "id": 1, - "offset": 104, + "offset": 76, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2301988666 - } - } - }, - "1128060484": { - "name": "class TemplateLocation", - "bases": [ - "PropertyClass" - ], - "hash": 1128060484, - "properties": { - "m_filename": { - "type": "std::string", - "id": 0, - "offset": 72, + "hash": 725509110 + }, + "m_numberOfRatings": { + "type": "int", + "id": 2, + "offset": 80, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3117322428 + "hash": 1563134896 }, - "m_id": { + "m_flags": { + "type": "unsigned char", + "id": 3, + "offset": 84, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1431998045 + }, + "m_type": { "type": "unsigned int", - "id": 1, - "offset": 104, + "id": 4, + "offset": 88, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2301988666 + "hash": 431304463 } } }, - "1535006681": { - "name": "class SharedPointer", + "241655929": { + "name": "class WhirlyBurlyStartGame*", "bases": [ "PropertyClass" ], - "hash": 1535006681, + "hash": 241655929, "properties": { - "m_pActor": { - "type": "class SharedPointer", + "m_playerList": { + "type": "gid", "id": 0, "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, + "flags": 7, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": true, - "hash": 1115051967 + "pointer": false, + "hash": 1909774945 }, - "m_place": { + "m_teamColorList": { "type": "int", "id": 1, "offset": 88, - "flags": 31, - "container": "Static", - "dynamic": false, + "flags": 7, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 806257663 + "hash": 351259772 }, - "m_ratingGained": { - "type": "int", + "m_packedNameList": { + "type": "std::string", "id": 2, - "offset": 92, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1426436071 - }, - "m_arenaPoints": { - "type": "int", - "id": 3, - "offset": 96, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 511478910 - }, - "m_pvpCurrency": { - "type": "int", - "id": 4, - "offset": 100, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 611304283 - }, - "m_pvpTourneyCurrency": { - "type": "int", - "id": 5, "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1184787505 - }, - "m_gold": { - "type": "int", - "id": 6, - "offset": 108, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 219423808 - }, - "m_gameResult": { - "type": "unsigned char", - "id": 7, - "offset": 112, - "flags": 31, - "container": "Static", - "dynamic": false, + "flags": 7, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 1417654793 + "hash": 3513135712 } } }, - "1127898476": { - "name": "class SharedPointer", + "1527129976": { + "name": "class SharedPointer", "bases": [ - "PetSnackBehavior", - "BehaviorInstance", "PropertyClass" ], - "hash": 1127898476, + "hash": 1527129976, "properties": { - "m_behaviorTemplateNameID": { + "m_monthlyGauntletClassProjectID": { "type": "unsigned int", "id": 0, - "offset": 104, - "flags": 39, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 + "hash": 2317452086 }, - "m_snackBag": { - "type": "class ObjectBag", + "m_monthlyGauntletCanTeamUp": { + "type": "int", "id": 1, - "offset": 112, - "flags": 27, + "offset": 76, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2027393587 + "hash": 476490151 } } }, - "1534987200": { - "name": "class SharedPointer", + "1956447576": { + "name": "class InvisibilityEffectTemplate*", "bases": [ - "CombatParticipant", + "GameEffectTemplate", "PropertyClass" ], - "hash": 1534987200, + "hash": 1956447576, "properties": { - "m_ownerID.m_full": { - "type": "unsigned __int64", + "m_effectName": { + "type": "std::string", "id": 0, - "offset": 112, - "flags": 31, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2149616286 + "hash": 2029161513 }, - "m_templateID.m_full": { - "type": "unsigned __int64", + "m_effectCategory": { + "type": "std::string", "id": 1, - "offset": 120, - "flags": 31, + "offset": 104, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 633907631 + "hash": 1852673222 }, - "m_isPlayer": { - "type": "bool", + "m_sortOrder": { + "type": "int", "id": 2, - "offset": 128, - "flags": 31, + "offset": 148, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1717744636 + "hash": 1411218206 }, - "m_zoneID.m_full": { - "type": "unsigned __int64", + "m_duration": { + "type": "double", "id": 3, - "offset": 136, - "flags": 31, + "offset": 192, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2105998895 + "hash": 2727932435 }, - "m_teamID": { - "type": "int", + "m_stackingCategories": { + "type": "std::string", "id": 4, - "offset": 144, - "flags": 31, - "container": "Static", - "dynamic": false, + "offset": 160, + "flags": 7, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 982118638 + "hash": 1774497525 }, - "m_primaryMagicSchoolID": { - "type": "int", + "m_isPersistent": { + "type": "bool", "id": 5, - "offset": 148, - "flags": 31, + "offset": 153, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1864910356 + "hash": 923861920 }, - "m_pipCount": { - "type": "class SharedPointer", + "m_bIsOnPet": { + "type": "bool", "id": 6, - "offset": 152, - "flags": 31, + "offset": 154, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1862540484 + "pointer": false, + "hash": 522593303 }, - "m_pipRoundRates": { - "type": "class SharedPointer", + "m_isPublic": { + "type": "bool", "id": 7, - "offset": 168, - "flags": 31, - "container": "List", - "dynamic": true, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1859513241 + "pointer": false, + "hash": 1728439822 }, - "m_PipsSuspended": { - "type": "bool", + "m_visualEffectAddName": { + "type": "std::string", "id": 8, - "offset": 184, - "flags": 31, + "offset": 200, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 98171898 + "hash": 3382086694 }, - "m_stunned": { - "type": "int", + "m_visualEffectRemoveName": { + "type": "std::string", "id": 9, - "offset": 188, - "flags": 25, + "offset": 232, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1661672123 + "hash": 1541697323 }, - "m_mindcontrolled": { - "type": "int", + "m_onAddFunctorName": { + "type": "std::string", "id": 10, - "offset": 216, - "flags": 25, + "offset": 280, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2059794744 + "hash": 1561843107 }, - "m_originalTeam": { - "type": "int", + "m_onRemoveFunctorName": { + "type": "std::string", "id": 11, - "offset": 224, - "flags": 31, + "offset": 312, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1121355446 + "hash": 2559017864 }, - "m_nAuraTurnLength": { - "type": "int", + "m_stackingRule": { + "type": "enum STACKING_RULE", "id": 12, - "offset": 236, - "flags": 31, + "offset": 144, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1719821564 + "hash": 431568889, + "enum_options": { + "STACKING_ALLOWED": 0, + "STACKING_NOSTACK": 1, + "STACKING_REPLACE": 2 + } }, - "m_clue": { - "type": "int", + "m_invisLevel": { + "type": "unsigned char", "id": 13, - "offset": 228, - "flags": 25, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 219277091 - }, - "m_roundsDead": { - "type": "int", - "id": 14, - "offset": 232, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2071727747 - }, - "m_nPolymorphTurnLength": { - "type": "int", - "id": 15, - "offset": 240, - "flags": 31, + "offset": 360, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1619550301 - }, - "m_playerHealth": { - "type": "int", - "id": 16, - "offset": 244, - "flags": 31, - "container": "Static", - "dynamic": false, + "hash": 2488151665 + } + } + }, + "241655889": { + "name": "class WhirlyBurlyStartGame", + "bases": [ + "PropertyClass" + ], + "hash": 241655889, + "properties": { + "m_playerList": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 740444925 + "hash": 1909774945 }, - "m_maxPlayerHealth": { + "m_teamColorList": { "type": "int", - "id": 17, - "offset": 248, - "flags": 31, - "container": "Static", - "dynamic": false, + "id": 1, + "offset": 88, + "flags": 7, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 96027363 + "hash": 351259772 }, - "m_HideCurrentHP": { - "type": "bool", - "id": 18, - "offset": 252, - "flags": 31, - "container": "Static", - "dynamic": false, + "m_packedNameList": { + "type": "std::string", + "id": 2, + "offset": 104, + "flags": 7, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 31360456 - }, - "m_maxHandSize": { - "type": "int", - "id": 19, - "offset": 256, + "hash": 3513135712 + } + } + }, + "675493703": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 675493703, + "properties": { + "m_name": { + "type": "std::string", + "id": 0, + "offset": 72, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1925169782 - }, - "m_pHand": { - "type": "class Hand*", - "id": 20, - "offset": 264, - "flags": 1, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 892448765 - }, - "m_pSavedHand": { - "type": "class Hand*", - "id": 21, - "offset": 272, - "flags": 1, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 787912720 - }, - "m_pPlayDeck": { - "type": "class PlayDeck*", - "id": 22, - "offset": 280, - "flags": 1, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2053198667 - }, - "m_pSavedPlayDeck": { - "type": "class PlayDeck*", - "id": 23, - "offset": 288, - "flags": 1, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 498207966 - }, - "m_pSavedGameStats": { - "type": "class SharedPointer", - "id": 24, - "offset": 296, - "flags": 1, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1599533644 + "hash": 1717359772 }, - "m_savedPrimaryMagicSchoolID": { + "m_ID": { "type": "int", - "id": 25, - "offset": 312, - "flags": 1, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 983035431 - }, - "m_pGameStats": { - "type": "class SharedPointer", - "id": 26, - "offset": 320, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3522102873 - }, - "m_color": { - "type": "class Color", - "id": 27, - "offset": 336, + "id": 1, + "offset": 104, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1791663549 + "hash": 2090585127 }, - "m_rotation": { - "type": "float", - "id": 28, - "offset": 340, + "m_description": { + "type": "std::string", + "id": 2, + "offset": 112, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1497468551 + "hash": 1649374815 }, - "m_radius": { - "type": "float", - "id": 29, - "offset": 344, + "m_iconResource": { + "type": "std::string", + "id": 3, + "offset": 144, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 989410271 + "hash": 2838396012 }, - "m_subcircle": { + "m_categoryIDs": { "type": "int", - "id": 30, - "offset": 348, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1748202326 - }, - "m_pvp": { - "type": "bool", - "id": 31, - "offset": 352, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 269527241 - }, - "m_raid": { - "type": "bool", - "id": 32, - "offset": 353, + "id": 4, + "offset": 208, "flags": 31, - "container": "Static", - "dynamic": false, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 222284947 + "hash": 2145925880 }, - "m_dynamicSymbol": { - "type": "enum DynamicSigilSymbol", - "id": 33, - "offset": 356, + "m_tags": { + "type": "std::string", + "id": 5, + "offset": 176, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 701705655 - }, - "m_accuracyBonus": { - "type": "float", - "id": 34, - "offset": 396, - "flags": 1, + "hash": 1717575210 + } + } + }, + "241581292": { + "name": "class PetGameBehaviorTemplate", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 241581292, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1440672233 + "hash": 3130754092 }, - "m_minionSubCircle": { - "type": "int", - "id": 35, - "offset": 400, - "flags": 31, + "m_gameName": { + "type": "std::string", + "id": 1, + "offset": 120, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1896926112 - }, - "m_isMinion": { - "type": "bool", - "id": 36, - "offset": 404, - "flags": 31, + "hash": 3229752342 + } + } + }, + "1096842169": { + "name": "class SharedPointer", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1096842169, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1597230777 - }, - "m_isAccompanyNPC": { - "type": "bool", - "id": 37, - "offset": 412, - "flags": 31, + "hash": 223437287 + } + } + }, + "1528019840": { + "name": "class RidableBehaviorBase*", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1528019840, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1067399659 - }, - "m_hangingEffects": { - "type": "class SpellEffect", - "id": 38, - "offset": 416, - "flags": 27, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2685029606 - }, - "m_publicHangingEffects": { - "type": "class SpellEffect", - "id": 39, - "offset": 432, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1243141029 - }, - "m_auraEffects": { - "type": "class SpellEffect", - "id": 40, - "offset": 448, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2783652947 - }, - "m_shadowEffects": { - "type": "class SharedPointer", - "id": 41, - "offset": 464, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1712698903 - }, - "m_shadowSpellEffects": { - "type": "class SpellEffect", - "id": 42, - "offset": 480, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1808623792 - }, - "m_deathActivatedEffects": { - "type": "class SharedPointer", - "id": 43, - "offset": 512, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1347166054 + "hash": 223437287 }, - "m_delayCastEffects": { - "type": "class DelaySpellEffect", - "id": 44, - "offset": 528, - "flags": 31, - "container": "List", + "m_assignedPlayers": { + "type": "gid", + "id": 1, + "offset": 112, + "flags": 65543, + "container": "Vector", "dynamic": true, "singleton": false, "pointer": false, - "hash": 2596123949 - }, - "m_polymorphSpellTemplateID": { + "hash": 1913541510 + } + } + }, + "675728737": { + "name": "class SharedPointer", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 675728737, + "properties": { + "m_behaviorTemplateNameID": { "type": "unsigned int", - "id": 45, - "offset": 576, - "flags": 31, + "id": 0, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1320079328 - }, - "m_side": { - "type": "std::string", - "id": 46, - "offset": 600, - "flags": 1, + "hash": 223437287 + } + } + }, + "1957332194": { + "name": "class SharedPointer", + "bases": [ + "ObstacleCourseSpringboardBehavior", + "ObstacleCourseObstacleBehavior", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1957332194, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1717547872 - }, - "m_shadowSpellsDisabled": { - "type": "bool", - "id": 47, - "offset": 672, - "flags": 31, + "hash": 223437287 + } + } + }, + "242435451": { + "name": "class CreatePipCinematicActorsFromResult*", + "bases": [ + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 242435451, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2077139652 + "hash": 2237098605 }, - "m_ignoreSpellsPvPOnlyFlag": { - "type": "bool", - "id": 48, - "offset": 673, - "flags": 31, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1714276188 + "hash": 2285866132 }, - "m_ignoreSpellsPvEOnlyFlag": { - "type": "bool", - "id": 49, - "offset": 674, - "flags": 31, + "m_newActorName": { + "type": "std::string", + "id": 2, + "offset": 120, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1691675729 - }, - "m_bossMob": { - "type": "bool", - "id": 50, - "offset": 675, - "flags": 31, + "hash": 2029131039 + } + } + }, + "242367724": { + "name": "class PetGameBehaviorTemplate*", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 242367724, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 986129576 + "hash": 3130754092 }, - "m_hidePVPEnemyChat": { - "type": "bool", - "id": 51, - "offset": 676, - "flags": 31, + "m_gameName": { + "type": "std::string", + "id": 1, + "offset": 120, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1284658049 - }, - "m_combatTriggerIDs": { - "type": "int", - "id": 52, - "offset": 696, - "flags": 1, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1654684388 - }, - "m_backlash": { - "type": "int", - "id": 53, - "offset": 724, - "flags": 31, + "hash": 3229752342 + } + } + }, + "245734984": { + "name": "class SharedPointer", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 245734984, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 857558899 + "hash": 223437287 }, - "m_pastBacklash": { - "type": "int", - "id": 54, - "offset": 728, + "m_playerList": { + "type": "gid", + "id": 1, + "offset": 112, "flags": 31, - "container": "Static", - "dynamic": false, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 1229328939 - }, - "m_shadowCreatureLevel": { - "type": "int", - "id": 55, - "offset": 732, - "flags": 31, + "hash": 1909774945 + } + } + }, + "244078257": { + "name": "enum CustomEmoteType", + "bases": [], + "hash": 244078257, + "properties": {} + }, + "242821038": { + "name": "class SharedPointer", + "bases": [ + "RemoveCameraMappingCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 242821038, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1119572179 + "hash": 2237098605 }, - "m_pastShadowCreatureLevel": { - "type": "int", - "id": 56, - "offset": 736, - "flags": 31, + "m_camToReplace": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1267855499 - }, - "m_shadowCreatureLevelCount": { - "type": "int", - "id": 57, - "offset": 744, - "flags": 31, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 975615804 - }, - "m_interceptEffect": { - "type": "class SharedPointer", - "id": 58, - "offset": 768, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 339294150 - }, - "m_roundsSinceShadowPip": { - "type": "int", - "id": 59, - "offset": 800, - "flags": 1, + "hash": 2286913643 + } + } + }, + "243042507": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 243042507, + "properties": { + "m_locName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 682042934 - }, - "m_polymorphEffect": { - "type": "class SharedPointer", - "id": 60, - "offset": 824, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2193528962 + "hash": 2490843130 }, - "m_confused": { - "type": "int", - "id": 61, - "offset": 196, - "flags": 25, + "m_location": { + "type": "class Vector3D", + "id": 1, + "offset": 104, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1851913585 + "hash": 2239683611 }, - "m_confusionTrigger": { - "type": "int", - "id": 62, - "offset": 200, - "flags": 25, + "m_direction": { + "type": "float", + "id": 2, + "offset": 116, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 554584130 - }, - "m_confusionDisplay": { - "type": "bool", - "id": 63, - "offset": 204, - "flags": 25, + "hash": 1528165112 + } + } + }, + "244743924": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 244743924, + "properties": {} + }, + "244342776": { + "name": "class std::list >", + "bases": [], + "hash": 244342776, + "properties": {} + }, + "245118520": { + "name": "class ClientDerbyImmunityEffect", + "bases": [ + "DerbyImmunityEffect", + "DerbyEffect", + "PropertyClass" + ], + "hash": 245118520, + "properties": { + "m_buffType": { + "type": "enum DerbyTalentBuffType", + "id": 0, + "offset": 92, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1028383709 + "hash": 1149251982, + "enum_options": { + "Buff": 0, + "Debuff": 1, + "Neither": 2 + } }, - "m_confusedTarget": { - "type": "bool", - "id": 64, - "offset": 205, - "flags": 25, + "m_kTarget": { + "type": "enum DerbyTargetType", + "id": 1, + "offset": 96, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1193542673 + "hash": 1807803351, + "enum_options": { + "kTargetInFront": 0, + "kTargetBehind": 1, + "kTargetFirst": 2, + "kTargetSelf": 3, + "kTargetAll": 4, + "kTargetLast": 5 + } }, - "m_untargetable": { - "type": "bool", - "id": 65, - "offset": 206, - "flags": 25, + "m_nDuration": { + "type": "int", + "id": 2, + "offset": 104, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 36479793 + "hash": 1110167982 }, - "m_untargetableRounds": { - "type": "int", - "id": 66, - "offset": 208, - "flags": 25, + "m_effectID": { + "type": "unsigned int", + "id": 3, + "offset": 88, + "flags": 24, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 80618355 + "hash": 2347630439 }, - "m_restrictedTarget": { - "type": "bool", - "id": 67, - "offset": 212, - "flags": 25, + "m_imageFilename": { + "type": "std::string", + "id": 4, + "offset": 112, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 394144563 + "hash": 2813328063 }, - "m_exitCombat": { - "type": "bool", - "id": 68, - "offset": 213, - "flags": 25, + "m_iconIndex": { + "type": "unsigned int", + "id": 5, + "offset": 144, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1293141763 + "hash": 1265133262 }, - "m_stunnedDisplay": { - "type": "bool", - "id": 69, - "offset": 192, - "flags": 25, + "m_soundOnActivate": { + "type": "std::string", + "id": 6, + "offset": 152, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 892304554 + "hash": 1956929714 }, - "m_mindcontrolledDisplay": { - "type": "bool", - "id": 70, - "offset": 220, - "flags": 25, + "m_soundOnTarget": { + "type": "std::string", + "id": 7, + "offset": 184, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 174689415 + "hash": 3444214056 }, - "m_autoPass": { - "type": "bool", - "id": 71, - "offset": 720, - "flags": 25, + "m_targetParticleEffect": { + "type": "std::string", + "id": 8, + "offset": 216, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1919864803 + "hash": 3048234723 }, - "m_vanish": { - "type": "bool", - "id": 72, - "offset": 721, - "flags": 25, + "m_overheadMessage": { + "type": "std::string", + "id": 9, + "offset": 248, + "flags": 8388639, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1058591164 + "hash": 1701018190 }, - "m_myTeamTurn": { - "type": "bool", - "id": 73, - "offset": 722, - "flags": 25, + "m_requirements": { + "type": "class RequirementList", + "id": 10, + "offset": 280, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1134422697 + "hash": 2840988582 }, - "m_needToCleanAuras": { + "m_bToDebuffs": { "type": "bool", - "id": 74, - "offset": 888, - "flags": 25, + "id": 11, + "offset": 376, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1159570481 - }, - "m_planningPhasePipAquiredType": { - "type": "enum CombatParticipant::PipAquiredByEnum", - "id": 75, - "offset": 816, - "flags": 2097159, + "hash": 1216111639 + } + } + }, + "247823439": { + "name": "class SegmentationRequrinment*", + "bases": [ + "PropertyClass" + ], + "hash": 247823439, + "properties": { + "m_sReqName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1435933659, - "enum_options": { - "CombatParticipant::AQUIRED_PIP_UNKNOWN": 0, - "CombatParticipant::AQUIRED_PIP_NORMAL": 1, - "CombatParticipant::AQUIRED_PIP_POWER": 2, - "CombatParticipant::AQUIRED_NORMAL_TO_POWER_PIP_CONVERSION": 4, - "CombatParticipant::IMPEDE_PIPS": 5 - } + "hash": 3206441047 }, - "m_cheatSettings": { - "type": "class SharedPointer", - "id": 76, - "offset": 96, + "m_reqOperatorType": { + "type": "enum SegmentationRequrinment::OPERATOR_TYPE", + "id": 1, + "offset": 104, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2742666223 + "pointer": false, + "hash": 1334217449 }, - "m_isMonster": { - "type": "unsigned int", - "id": 77, - "offset": 408, + "m_sReqValue": { + "type": "std::string", + "id": 2, + "offset": 112, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1530878065 - }, - "m_weaponNifSoundList": { - "type": "class SharedPointer", - "id": 78, - "offset": 80, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2575326929 - }, - "m_petCombatTrigger": { - "type": "int", - "id": 79, - "offset": 712, - "flags": 1, + "hash": 2058248243 + } + } + }, + "247544837": { + "name": "class CritAndBlockValues", + "bases": [ + "PropertyClass" + ], + "hash": 247544837, + "properties": { + "m_capValue": { + "type": "float", + "id": 0, + "offset": 88, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 822894541 + "hash": 1100002568 }, - "m_petCombatTriggerTarget": { - "type": "int", - "id": 80, - "offset": 716, - "flags": 1, + "m_criticalHitScalarBase": { + "type": "float", + "id": 1, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 675145556 + "hash": 448021976 }, - "m_shadowPipRateThreshold": { + "m_criticalHitScalingFactor": { "type": "float", - "id": 81, - "offset": 840, - "flags": 31, + "id": 2, + "offset": 76, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1215959391 + "hash": 322634343 }, - "m_baseSpellDamage": { - "type": "int", - "id": 82, - "offset": 844, - "flags": 31, + "m_blockScalarBase": { + "type": "float", + "id": 3, + "offset": 80, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 871613364 + "hash": 1713825491 }, - "m_statDamage": { + "m_blockScalingFactor": { "type": "float", - "id": 83, - "offset": 848, - "flags": 31, + "id": 4, + "offset": 84, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1480169970 + "hash": 1504920962 + } + } + }, + "247337949": { + "name": "class SharedPointer", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 247337949, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 }, - "m_statResist": { + "m_radius": { "type": "float", - "id": 84, - "offset": 852, - "flags": 31, + "id": 1, + "offset": 120, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2033033901 + "hash": 989410271 }, - "m_statPierce": { + "m_duration": { "type": "float", - "id": 85, - "offset": 856, - "flags": 31, + "id": 2, + "offset": 124, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1959012939 + "hash": 920323453 }, - "m_mobLevel": { - "type": "int", - "id": 86, - "offset": 860, - "flags": 31, + "m_benefitType": { + "type": "enum BenefitType", + "id": 3, + "offset": 128, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 186067024 + "hash": 3823810885, + "enum_options": { + "BT_Heal": 0, + "BT_Mana": 1, + "BT_FishingLuck": 2, + "BT_HealMana": 3 + } }, - "m_bPlayerTimeUpdated": { - "type": "bool", - "id": 87, - "offset": 864, - "flags": 31, + "m_value": { + "type": "float", + "id": 4, + "offset": 132, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 877395800 - }, - "m_bPlayerTimeEliminated": { - "type": "bool", - "id": 88, - "offset": 865, - "flags": 31, + "hash": 903191604 + } + } + }, + "247551112": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 247551112, + "properties": { + "m_worldID": { + "type": "unsigned int", + "id": 0, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1842006605 + "hash": 397177058 }, - "m_bPlayerTimeWarning": { - "type": "bool", - "id": 89, - "offset": 866, - "flags": 31, + "m_flags": { + "type": "unsigned char", + "id": 1, + "offset": 76, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 742875591 - }, - "m_deckFullness": { - "type": "float", - "id": 90, - "offset": 868, - "flags": 31, + "hash": 1431998045 + } + } + }, + "247740370": { + "name": "class SharedPointer", + "bases": [ + "CinematicStageTemplate", + "PropertyClass" + ], + "hash": 247740370, + "properties": { + "m_name": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 156080730 + "hash": 1717359772 }, - "m_archmasteryPoints": { + "m_duration": { "type": "float", - "id": 91, - "offset": 872, - "flags": 31, + "id": 1, + "offset": 104, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 261464375 + "hash": 920323453 }, - "m_maxArchmasteryPoints": { - "type": "float", - "id": 92, - "offset": 876, + "m_actions": { + "type": "class SharedPointer", + "id": 2, + "offset": 112, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1380578687 + }, + "m_stageRelationships": { + "type": "class SharedPointer", + "id": 3, + "offset": 128, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 499983354 + } + } + }, + "248609871": { + "name": "class SegmentationRequrinment", + "bases": [ + "PropertyClass" + ], + "hash": 248609871, + "properties": { + "m_sReqName": { + "type": "std::string", + "id": 0, + "offset": 72, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 430012637 + "hash": 3206441047 }, - "m_archmasterySchool": { - "type": "unsigned int", - "id": 93, - "offset": 880, + "m_reqOperatorType": { + "type": "enum SegmentationRequrinment::OPERATOR_TYPE", + "id": 1, + "offset": 104, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 485805784 + "hash": 1334217449 }, - "m_archmasteryFlags": { - "type": "unsigned int", - "id": 94, - "offset": 884, + "m_sReqValue": { + "type": "std::string", + "id": 2, + "offset": 112, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1571282557 + "hash": 2058248243 } } }, - "355842646": { - "name": "class CrownShopLayout*", + "248098457": { + "name": "class BoosterPackSpaceHelper*", "bases": [ "PropertyClass" ], - "hash": 355842646, + "hash": 248098457, "properties": { - "m_categories": { - "type": "class SharedPointer", + "m_allPacks": { + "type": "class SharedPointer", "id": 0, - "offset": 72, - "flags": 31, + "offset": 80, + "flags": 7, "container": "List", "dynamic": true, - "singleton": false, + "singleton": true, "pointer": true, - "hash": 2811511766 - }, - "m_tabs": { - "type": "class SharedPointer", - "id": 1, - "offset": 88, - "flags": 31, + "hash": 1650503223 + } + } + }, + "248057497": { + "name": "class BoosterPackSpaceHelper", + "bases": [ + "PropertyClass" + ], + "hash": 248057497, + "properties": { + "m_allPacks": { + "type": "class SharedPointer", + "id": 0, + "offset": 80, + "flags": 7, "container": "List", "dynamic": true, - "singleton": false, + "singleton": true, "pointer": true, - "hash": 895280674 + "hash": 1650503223 } } }, - "355694195": { - "name": "class SharedPointer", + "248429037": { + "name": "class BGPlayerInfo", "bases": [ - "WindowAnimation", "PropertyClass" ], - "hash": 355694195, + "hash": 248429037, "properties": { - "m_bUseDeepCopy": { - "type": "bool", + "m_playerID": { + "type": "gid", "id": 0, "offset": 72, - "flags": 135, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 433380635 + "hash": 1774633426 }, - "m_scale": { - "type": "float", + "m_team": { + "type": "std::string", "id": 1, "offset": 80, - "flags": 135, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 899693439 + "hash": 1717579362 } } }, - "354734785": { - "name": "class SpellCardAttachmentBehaviorTemplate*", + "251238039": { + "name": "class ClientPlayerStatueStitchBlob*", "bases": [ - "BehaviorTemplate", + "PlayerStatueStitchBlob", + "PlayerStatueBlob", "PropertyClass" ], - "hash": 354734785, + "hash": 251238039, "properties": { - "m_behaviorName": { + "m_packedName": { "type": "std::string", "id": 0, "offset": 72, - "flags": 7, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3130754092 + "hash": 1805208228 }, - "m_spellNames": { + "m_characterBuffer": { "type": "std::string", "id": 1, - "offset": 120, - "flags": 7, - "container": "List", - "dynamic": true, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 2136089135 + "hash": 1972275298 }, - "m_targetNode": { + "m_equipmentBuffer": { "type": "std::string", "id": 2, "offset": 136, - "flags": 7, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2698500040 + "hash": 1511030957 }, - "m_offset": { - "type": "class Vector3D", + "m_emoteID": { + "type": "unsigned int", "id": 3, "offset": 168, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2445636425 - }, - "m_rotate": { - "type": "class Vector3D", - "id": 4, - "offset": 180, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2574199889 - }, - "m_height": { - "type": "float", - "id": 5, - "offset": 192, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 602977104 - }, - "m_alpha": { - "type": "float", - "id": 6, - "offset": 196, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 878686493 - }, - "m_cycleRate": { - "type": "float", - "id": 7, - "offset": 200, - "flags": 7, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 947046355 + "hash": 691533780 } } }, - "1536177639": { - "name": "class SharedPointer", + "250334545": { + "name": "class SharedPointer", "bases": [ + "DerbyModifyCheerCost", + "DerbyEffect", "PropertyClass" ], - "hash": 1536177639, + "hash": 250334545, "properties": { - "m_status": { - "type": "enum BattlegroundPlayerStats::PlayerStatusEnum", + "m_buffType": { + "type": "enum DerbyTalentBuffType", "id": 0, - "offset": 72, - "flags": 2097159, + "offset": 92, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1862714304, + "hash": 1149251982, "enum_options": { - "ACTIVE": 0, - "IN_COMBAT": 1, - "DEAD": 2, - "MISSING": 3, - "RED_TEAM": 0, - "BLUE_TEAM": 1 + "Buff": 0, + "Debuff": 1, + "Neither": 2 } }, - "m_team": { - "type": "enum BattlegroundPlayerStats::PlayerTeamEnum", + "m_kTarget": { + "type": "enum DerbyTargetType", "id": 1, - "offset": 76, + "offset": 96, "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1426706772 + "hash": 1807803351, + "enum_options": { + "kTargetInFront": 0, + "kTargetBehind": 1, + "kTargetFirst": 2, + "kTargetSelf": 3, + "kTargetAll": 4, + "kTargetLast": 5 + } }, - "m_packedName": { - "type": "std::string", + "m_nDuration": { + "type": "int", "id": 2, - "offset": 80, - "flags": 7, + "offset": 104, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1805208228 + "hash": 1110167982 }, - "m_playerID": { - "type": "gid", + "m_effectID": { + "type": "unsigned int", "id": 3, - "offset": 112, - "flags": 7, + "offset": 88, + "flags": 24, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1774633426 + "hash": 2347630439 }, - "m_polymorphID": { - "type": "unsigned int", + "m_imageFilename": { + "type": "std::string", "id": 4, - "offset": 120, - "flags": 7, + "offset": 112, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 702888164 + "hash": 2813328063 }, - "m_rating": { - "type": "int", + "m_iconIndex": { + "type": "unsigned int", "id": 5, - "offset": 124, - "flags": 7, + "offset": 144, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 899783871 + "hash": 1265133262 }, - "m_playerKills": { - "type": "int", + "m_soundOnActivate": { + "type": "std::string", "id": 6, - "offset": 128, - "flags": 7, + "offset": 152, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 742064870 + "hash": 1956929714 }, - "m_mobKills": { - "type": "int", + "m_soundOnTarget": { + "type": "std::string", "id": 7, - "offset": 132, - "flags": 7, + "offset": 184, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 185014199 + "hash": 3444214056 }, - "m_autoCaps": { - "type": "int", + "m_targetParticleEffect": { + "type": "std::string", "id": 8, - "offset": 136, - "flags": 7, + "offset": 216, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1916916346 + "hash": 3048234723 }, - "m_combatCaps": { - "type": "int", + "m_overheadMessage": { + "type": "std::string", "id": 9, - "offset": 140, - "flags": 7, + "offset": 248, + "flags": 8388639, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 975573175 + "hash": 1701018190 }, - "m_deaths": { - "type": "int", + "m_requirements": { + "type": "class RequirementList", "id": 10, - "offset": 144, - "flags": 7, + "offset": 280, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 355961043 + "hash": 2840988582 + }, + "m_costMap": { + "type": "class TerrainCheerCostMap", + "id": 11, + "offset": 376, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1929931701 } } }, - "353148171": { - "name": "struct MoveStateAnimation", + "251248279": { + "name": "class ClientPlayerStatueStitchBlob", "bases": [ + "PlayerStatueStitchBlob", + "PlayerStatueBlob", "PropertyClass" ], - "hash": 353148171, + "hash": 251248279, "properties": { - "m_nMoveState": { - "type": "enum MoveState", + "m_packedName": { + "type": "std::string", "id": 0, "offset": 72, - "flags": 2097159, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1430960270, - "enum_options": { - "MS_WALKING": 0, - "MS_RUNNING": 1, - "MS_SWIMMING": 2, - "MS_FLYING": 3, - "MS_JUMPING": 4, - "MS_FALLING": 5, - "MS_SLIDING": 6, - "__DEFAULT": "MS_WALKING" - } + "hash": 1805208228 }, - "m_nMoveAnimation": { - "type": "enum MoveAnimation", + "m_characterBuffer": { + "type": "std::string", "id": 1, - "offset": 76, - "flags": 2097159, + "offset": 104, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3179560950, - "enum_options": { - "MA_IDLE": 0, - "MA_FORWARD": 1, - "MA_BACK": 2, - "MA_LEFT": 3, - "MA_RIGHT": 4, - "MA_TURNLEFT": 5, - "MA_TURNRIGHT": 6, - "__DEFAULT": "MA_IDLE" - } + "hash": 1972275298 }, - "m_sAnimationName": { + "m_equipmentBuffer": { "type": "std::string", "id": 2, - "offset": 80, - "flags": 7, + "offset": 136, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1757815023 + "hash": 1511030957 + }, + "m_emoteID": { + "type": "unsigned int", + "id": 3, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 691533780 } } }, - "1128322611": { - "name": "class SharedPointer", + "260318106": { + "name": "class SharedPointer", "bases": [ - "ObstacleCourseObstacleBehaviorTemplate", - "BehaviorTemplate", + "ActorCinematicAction", + "CinematicAction", "PropertyClass" ], - "hash": 1128322611, + "hash": 260318106, "properties": { - "m_behaviorName": { - "type": "std::string", + "m_timeOffset": { + "type": "float", "id": 0, "offset": 72, "flags": 7, @@ -431500,1174 +129170,3706 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 3130754092 + "hash": 2237098605 }, - "m_rate": { - "type": "double", + "m_actor": { + "type": "std::string", "id": 1, - "offset": 120, + "offset": 80, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2117614265 + "hash": 2285866132 }, - "m_initialYaw": { - "type": "double", + "m_newActorName": { + "type": "std::string", "id": 2, - "offset": 128, + "offset": 120, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2566917224 + "hash": 2029131039 }, - "m_penaltyTime": { - "type": "double", + "m_newActorName2": { + "type": "std::string", "id": 3, - "offset": 136, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3890998489 - }, - "m_pitch": { - "type": "double", - "id": 4, - "offset": 144, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2703980677 - }, - "m_maxYaw": { - "type": "double", - "id": 5, "offset": 152, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2602042948 + "hash": 1852236785 }, - "m_platformWidth": { - "type": "double", - "id": 6, - "offset": 160, + "m_oldActorName": { + "type": "std::string", + "id": 4, + "offset": 184, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 4024516466 - }, - "m_platformHeight": { - "type": "double", - "id": 7, - "offset": 168, + "hash": 2191892948 + } + } + }, + "253456620": { + "name": "class SharedPointer", + "bases": [ + "ScaleActorCinematicAction", + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 253456620, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2765202891 + "hash": 2237098605 }, - "m_launchSpeed": { - "type": "double", - "id": 8, - "offset": 176, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2644727001 + "hash": 2285866132 }, - "m_launchSpeedUp": { - "type": "double", - "id": 9, - "offset": 184, + "m_scaleDuration": { + "type": "float", + "id": 2, + "offset": 120, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3445224318 + "hash": 1764097637 }, - "m_collisionHeight": { - "type": "double", - "id": 10, - "offset": 192, + "m_scaleTarget": { + "type": "float", + "id": 3, + "offset": 124, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3980975122 + "hash": 1502791366 } } }, - "1535419991": { - "name": "class CritAndBlockLevelData*", + "252637921": { + "name": "class DeathParticleCinematicAction", "bases": [ + "ActorCinematicAction", + "CinematicAction", "PropertyClass" ], - "hash": 1535419991, + "hash": 252637921, "properties": { - "m_minLevel": { - "type": "int", + "m_timeOffset": { + "type": "float", "id": 0, - "offset": 88, + "offset": 72, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1496818518 + "hash": 2237098605 }, - "m_critAndBlockValues": { - "type": "class SharedPointer", + "m_actor": { + "type": "std::string", "id": 1, - "offset": 72, + "offset": 80, "flags": 7, - "container": "List", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3047956180 + "pointer": false, + "hash": 2285866132 } } }, - "1128180754": { - "name": "class CombatResultListObj", + "252229277": { + "name": "class ActiveMusicLoop*", "bases": [ "PropertyClass" ], - "hash": 1128180754, + "hash": 252229277, + "properties": {} + }, + "252224157": { + "name": "class ActiveMusicLoop", + "bases": [ + "PropertyClass" + ], + "hash": 252224157, + "properties": {} + }, + "252123478": { + "name": "class ExpansionBehavior", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 252123478, "properties": { - "m_resultList": { - "type": "class CombatResult", + "m_behaviorTemplateNameID": { + "type": "unsigned int", "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 2128076658 + "hash": 223437287 }, - "m_duelID.m_full": { - "type": "unsigned __int64", + "m_bankExpansions": { + "type": "int", "id": 1, - "offset": 88, - "flags": 7, + "offset": 112, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1024980477 + "hash": 1369075454 + }, + "m_friendListExpansions": { + "type": "int", + "id": 2, + "offset": 116, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1057398198 } } }, - "1535419223": { - "name": "class CritAndBlockLevelData", + "252631777": { + "name": "class DeathParticleCinematicAction*", "bases": [ + "ActorCinematicAction", + "CinematicAction", "PropertyClass" ], - "hash": 1535419223, + "hash": 252631777, "properties": { - "m_minLevel": { - "type": "int", + "m_timeOffset": { + "type": "float", "id": 0, - "offset": 88, + "offset": 72, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1496818518 + "hash": 2237098605 }, - "m_critAndBlockValues": { - "type": "class SharedPointer", + "m_actor": { + "type": "std::string", "id": 1, - "offset": 72, + "offset": 80, "flags": 7, - "container": "List", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3047956180 + "pointer": false, + "hash": 2285866132 } } }, - "354832890": { - "name": "class BaseZone::BaseSimulation*", - "bases": [ - "PropertyClass" - ], - "hash": 354832890, - "properties": {} - }, - "354783937": { - "name": "class SpellCardAttachmentBehaviorTemplate", + "253304353": { + "name": "class SharedPointer", "bases": [ - "BehaviorTemplate", + "BehaviorInstance", "PropertyClass" ], - "hash": 354783937, + "hash": 253304353, "properties": { - "m_behaviorName": { - "type": "std::string", + "m_behaviorTemplateNameID": { + "type": "unsigned int", "id": 0, - "offset": 72, - "flags": 7, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3130754092 + "hash": 223437287 }, - "m_spellNames": { - "type": "std::string", + "m_lotInstanceGID": { + "type": "gid", "id": 1, - "offset": 120, - "flags": 7, - "container": "List", - "dynamic": true, + "offset": 112, + "flags": 65567, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 2136089135 + "hash": 2010711536 }, - "m_targetNode": { - "type": "std::string", + "m_x": { + "type": "float", "id": 2, - "offset": 136, - "flags": 7, + "offset": 120, + "flags": 65543, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2698500040 + "hash": 283788559 }, - "m_offset": { - "type": "class Vector3D", + "m_y": { + "type": "float", "id": 3, - "offset": 168, - "flags": 7, + "offset": 124, + "flags": 65543, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2445636425 + "hash": 283788560 }, - "m_rotate": { - "type": "class Vector3D", + "m_z": { + "type": "float", "id": 4, - "offset": 180, - "flags": 7, + "offset": 128, + "flags": 65543, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2574199889 + "hash": 283788561 }, - "m_height": { + "m_yaw": { "type": "float", "id": 5, - "offset": 192, - "flags": 7, + "offset": 132, + "flags": 65543, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 602977104 + "hash": 357256328 }, - "m_alpha": { - "type": "float", + "m_lotTemplateID": { + "type": "gid", "id": 6, - "offset": 196, - "flags": 7, + "offset": 136, + "flags": 65543, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 878686493 + "hash": 1344354096 }, - "m_cycleRate": { - "type": "float", + "m_clusterGID": { + "type": "gid", "id": 7, - "offset": 200, - "flags": 7, + "offset": 144, + "flags": 65543, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 947046355 + "hash": 112792526 + }, + "m_structureInstanceGID": { + "type": "gid", + "id": 8, + "offset": 152, + "flags": 65543, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2083588818 + }, + "m_structureTemplateID": { + "type": "gid", + "id": 9, + "offset": 160, + "flags": 65543, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 825960402 + }, + "m_isOutside": { + "type": "bool", + "id": 10, + "offset": 168, + "flags": 65543, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1999324940 } } }, - "1128679787": { - "name": "class ResourcePointerBase*", + "252736215": { + "name": "class SharedPointer", "bases": [ "PropertyClass" ], - "hash": 1128679787, + "hash": 252736215, "properties": { - "m_sAssetName": { - "type": "std::string", + "m_Score": { + "type": "float", "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 861759411 + }, + "m_statMods": { + "type": "class SharedPointer", + "id": 1, "offset": 80, - "flags": 131103, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 836453997 + }, + "m_xpGain": { + "type": "unsigned int", + "id": 2, + "offset": 96, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2503711247 + "hash": 1362161460 + }, + "m_wins": { + "type": "unsigned int", + "id": 3, + "offset": 100, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 431394798 } } }, - "1536928425": { - "name": "class SharedPointer", + "253380892": { + "name": "class SharedPointer", "bases": [ - "PvPActor", - "MatchActor", + "CloneActorCinematicAction", + "ActorCinematicAction", + "CinematicAction", "PropertyClass" ], - "hash": 1536928425, + "hash": 253380892, "properties": { - "m_nActorID": { - "type": "gid", + "m_timeOffset": { + "type": "float", "id": 0, - "offset": 88, - "flags": 31, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 663762476 + "hash": 2237098605 }, - "m_nLadderContainerID": { - "type": "gid", + "m_actor": { + "type": "std::string", "id": 1, - "offset": 96, - "flags": 31, + "offset": 80, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 782107042 + "hash": 2285866132 }, - "m_nTournamentNameID": { - "type": "unsigned int", + "m_position": { + "type": "class Vector3D", "id": 2, - "offset": 104, - "flags": 31, + "offset": 124, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 471412886 + "hash": 3697900983 }, - "m_nTournamentID": { - "type": "gid", + "m_yawPitchRoll": { + "type": "class Vector3D", "id": 3, - "offset": 112, - "flags": 31, + "offset": 136, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 105258688 + "hash": 3349460132 }, - "m_leagueID": { - "type": "unsigned int", + "m_clonePlayer": { + "type": "bool", "id": 4, - "offset": 124, - "flags": 31, + "offset": 120, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 692361645 + "hash": 1369917873 + } + } + }, + "256444830": { + "name": "class AnnounceSpellTextCinematicAction*", + "bases": [ + "CinematicAction", + "PropertyClass" + ], + "hash": 256444830, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 }, - "m_seasonID": { + "m_spellText": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2688705600 + } + } + }, + "254014761": { + "name": "class SharedPointer", + "bases": [ + "ObstacleCourseObstaclePathBase", + "ObstacleCourseObstacleBehavior", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 254014761, + "properties": { + "m_behaviorTemplateNameID": { "type": "unsigned int", - "id": 5, - "offset": 120, - "flags": 31, + "id": 0, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 535260643 - }, - "m_nMatchNameID": { + "hash": 223437287 + } + } + }, + "253722957": { + "name": "class SharedPointer", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 253722957, + "properties": { + "m_behaviorTemplateNameID": { "type": "unsigned int", - "id": 6, - "offset": 128, - "flags": 31, + "id": 0, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 497033398 + "hash": 223437287 }, - "m_nMatchID": { - "type": "gid", - "id": 7, - "offset": 136, - "flags": 31, + "m_gender": { + "type": "enum eGender", + "id": 1, + "offset": 176, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1050279648 + "hash": 2121766730, + "enum_options": { + "Male": 1, + "Female": 0, + "Neutral": 2 + } + }, + "m_race": { + "type": "enum eRace", + "id": 2, + "offset": 180, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 390582957, + "enum_options": { + "Bat": 88066, + "BatLightning": 1472842576, + "Boar": 2624962, + "CatThug": 1855674386, + "ChristmasElf": 819908552, + "ChristmasSnowman": 1146515225, + "Colossus_Ice": 1063279538, + "Cyclops": 1691813655, + "DragonBeta": 417003588, + "DragonFriendly": 69049013, + "EvilSnowman": 1579630926, + "FireElf": 443793687, + "Firecat": 2045525741, + "Frog": 2274918, + "FrostBeetle": 7692383, + "GhostBlue": 1097396892, + "GhostGreen": 882822629, + "GhostRed": 560510742, + "GhostYellow": 909974358, + "Ghoul": 82556199, + "GoatMonk": 486215564, + "GolemBrass": 1057388325, + "GolemClockwork": 1143380031, + "GolemSteel": 1660583674, + "GolemWood": 1426849876, + "HalloweenCat": 1042869199, + "Heckhound": 626736403, + "Helephant": 719065368, + "Human": 79806088, + "Hydra": 70785800, + "Imp": 84361, + "Krokomummy": 555755242, + "Kroktut": 1352354178, + "Leprechaun": 2106466410, + "LeprechaunPattyDay": 380507781, + "LightningBat": 228257682, + "Mannequin": 428442544, + "Minotaur": 949570680, + "Mount_Broom": 94637995, + "Mount_Cat": 1150940211, + "Mount_Dragon": 1565720148, + "Mount_Horse": 2054712767, + "Mount_PlayerWings": 589829552, + "Nikkos": 1563122418, + "NinjaPig": 607400740, + "Orthus": 1552590225, + "Piggle": 1897753328, + "Piggle_Valentine": 687697592, + "Piggle_ValentinePart2": 1760391091, + "Pixie": 74836240, + "RatMagician": 885542120, + "SalamanderFire": 48480175, + "SalamanderIce": 2011152164, + "SalamanderStorm": 600331072, + "Satyr": 84793363, + "Scarab": 2143810477, + "Sheep": 86220083, + "SkeletonArmored": 1791586239, + "SnowSerpent": 138621543, + "Spider": 1603064269, + "SpiderBlack": 559353179, + "SpiderBrown": 557941675, + "SpiderCrystal": 2119625297, + "SpiderGolem": 1632616514, + "Sprite": 1889156557, + "SpriteDark": 1888685518, + "Stormzilla": 252684095, + "SunBird": 1602211198, + "Transformation_ArmoredSkeleton": 1861349834, + "Transformation_CatThug": 1175387611, + "Transformation_Cat_Bandit": 1012395694, + "Transformation_ClockworkGolem": 601121214, + "Transformation_Cyclops": 620156297, + "Transformation_DarkFairy": 1206757203, + "Transformation_DraconianSorcerer": 1212016810, + "Transformation_Draconian": 450730089, + "Transformation_EarthColossus": 140119452, + "Transformation_EvilSnowman": 1497097122, + "Transformation_FatGobbler": 634003800, + "Transformation_FireElemental": 822233230, + "Transformation_FireElf": 46585468, + "Transformation_FireSalamander": 2118418114, + "Transformation_Gobbler_Skinny": 162365207, + "Transformation_GolemSteel": 1329184184, + "Transformation_Ice_Colossus": 430406408, + "Transformation_Krokomummy": 1644615769, + "Transformation_MagmaMan": 545064542, + "Transformation_Mander": 88998828, + "Transformation_NinjaPig": 1029132174, + "Transformation_Ninja_Pig_04": 7093548, + "Transformation_RatThug": 1175352795, + "Transformation_RavenMystic": 1443197359, + "Transformation_StormElemental": 637088511, + "Transformation_Treant": 1874998327, + "Transformation_WarPig": 691088645, + "Transformation_WolfScout": 263523463, + "Transformation_WolfWarrior": 6092463, + "Transformationn_SkeletonPirate": 1821341863, + "Treant": 1396597132, + "Troll": 82261620, + "Unicorn": 550546918, + "Unknown": 718677478, + "Wolverine": 528843083, + "Wraith": 1788506505, + "Wyrmkin": 379044612, + "Transformation_CyrusDrake": 94277831, + "PetEgg": 1973167984, + "GhostLady": 493415959, + "Banshee": 827805677, + "GobblerRed": 250135875, + "Ghoul_Gravedigger": 161812468, + "SkeletonWarrior": 734585814, + "BansheeBoss": 806445565, + "Seraph": 1792950125, + "CrabKing": 277875784, + "UndeadCaster": 1680689397, + "DragonFrontier": 1829438301, + "HeckhoundGhost": 872406464, + "Mount_Unicorn": 212699468, + "Jellyfish": 910724608, + "SeaDragon": 1194541306, + "Turtle": 1897184620, + "Starfish": 1447562471, + "SpinyFish": 162948281, + "Mount_Gryphon": 2110522960, + "Mount_Shark": 1170186623, + "Mount_Manta": 979931598, + "Mount_Seahorse": 1554833818, + "Mount_Seahorse_Tough": 1245859453, + "Mount_Koi": 1150937409, + "Mount_Lobster": 2025618875, + "Mount_Turtle": 1490849128, + "VenusFlyTrap": 1612039757, + "GDN_MED_BabyCarrots": 327334743, + "GDN_SM_BoomShroom": 31324632, + "GDN_SM_Dandelion": 2058674142, + "GDN_SM_Disparagus": 1732989489, + "GDN_MED_EvilSnowPeas": 747408607, + "GDN_SM_FicklePickle": 205381955, + "GDN_SM_HappyHolidaisy": 1736236340, + "GDN_MED_HelephantEars": 1803669659, + "GDN_MED_HoneySickle": 424149132, + "GDN_LG_NinjaFig": 847338104, + "GDN_LG_SnapDragon": 1076151689, + "GDN_SM_StinkWeed": 845383431, + "GDN_MED_TrumpetVine": 1922690264, + "GDN_MED_VenusFlyTrap": 1560899638, + "GDN_SM_Laughodil": 1278979588, + "GDN_LG_BreadFruitBush": 533042934, + "GDN_MED_PricklyBearCactus": 1236846986, + "GDN_MED_KingParsley": 110148182, + "LeprechaunPatriotic": 414730890, + "SeraphYuletide": 1325846853, + "DragonGhost": 1502126893, + "UnicornNightmare": 604358256, + "EvilSnowmanSandman": 1579432150, + "Colossus_Spirit": 422514215, + "Rock": 2393554, + "GDN_MED_GivingTree": 2047236132, + "Egg": 70853, + "Mount_Carpets": 1602744888, + "Kraken": 1737191829, + "Wyvern": 1727802601, + "Phoenix": 1765559002, + "Judgement": 562901781, + "ForestLord": 1390734923, + "Humongofrog": 1272123051, + "Scarecrow": 41441599, + "Mount_Ram": 77196599, + "BasketSnake": 1835657086, + "Samoorai": 522797493, + "Transformation_RavenWarrior": 701169336, + "PhoenixStorm": 1325268802, + "PhoenixDeath": 1281634042, + "GDN_LG_CouchPotatoes": 879742725, + "GDN_MED_KeyLimes": 811516024, + "Mount_BoneDragon": 1023618313, + "Mount_BigBoneDragon": 1124383680, + "Mount_FairyWings": 1904926612, + "Mount_DragonWings": 755225925, + "Mount_Pegasus": 1621244140, + "GDN_MED_BellPepper": 1710238687, + "GDN_MED_GrapesOfWrath": 1068787103, + "GDN_SM_TigerLily": 1899057048, + "WysteriaPiggle": 49173891, + "Mount_Wyvern": 1658410744, + "Mount_2P_Rhino": 1052779475, + "NightHawk": 358964390, + "Giraffe": 935214826, + "Mount_Hawk": 2070898895, + "Mount_HalloweenNightmare": 726136378, + "GobblerHalloween": 1482399836, + "Leopard": 1606863715, + "Skink": 76950867, + "Mount_Ostrich": 466111322, + "Mount_Crocagator": 1981222087, + "Transformation_Blacktusk-01": 401543565, + "Mount_Hippogriff": 2043817624, + "Transformation_Gorilla-01": 1555853240, + "Transformation_Gorilla-02": 1606184888, + "Mount_Raven": 94983735, + "Mount_Chrismoose": 1822495199, + "Mount_CandyCane": 1148551147, + "Ivy_League": 925492799, + "GDN_MED_Ivy_League": 1630077794, + "Mount_Kirin": 1168691825, + "GDN_SM_Moonflower": 2068754330, + "GDN_MED_BoonTree": 788055729, + "Snowball": 2046118016, + "Foo_Dog": 1549710807, + "ShenlongDragon": 932676736, + "Monkey": 1233866291, + "Wolfhound": 626884686, + "Redcap": 1540319086, + "Raven": 79941650, + "HollowKnight": 1107268274, + "Book": 2405826, + "GDN_MED_AngoraBunnyEars": 1547559854, + "GDN_MED_FortuneCookieTree": 786686214, + "GDN_MED_GooseTree": 809354938, + "GDN_SM_HoneyBeePlant": 1528880373, + "GDN_MED_BambooShoots": 1096708900, + "GDN_SM_Huckleberries": 1937475840, + "Rock_Moustache": 962221287, + "Efreet_Myth": 1834555522, + "Efreet": 1401700123, + "Mammoth": 1395147745, + "Triton": 1730466188, + "Gnome": 74954215, + "BoneDragon": 429245206, + "Basilisk": 1457899086, + "Chimera": 529027789, + "Transformation_GammaTemplate": 1337834518, + "Mount_Camel": 1168198963, + "Mount_RenaissanceWings": 1049782088, + "Bull_Mount": 1713506759, + "Mount_Owl": 1150938242, + "Mount_Alphyn": 487264165, + "Mount_Stag": 1150353823, + "Mount_Auroch": 509865325, + "Mount_Warg": 1150358072, + "StrangeBeast": 511334734, + "Efreet_Ice": 1820009122, + "Efreet_Storm": 1269986674, + "GDN_LG_AlligatorPear": 1293913372, + "Mount_2P_Treant": 928450863, + "Mount_2P_Dragon": 1431637933, + "Mount_Pogo_Stick_WC": 1462849298, + "Mount_Pogo_Stick_MB": 1349603090, + "GDN_LG_MeltingCheese": 1914589015, + "GDN_SM_FishOnAVine": 1734955358, + "GDN_LG_AngelOak": 1539539424, + "GDN_LG_MeltingCheese_Angel": 1254781264, + "SnowyOwl": 1682262138, + "Mount_3P_Hydra": 1207475250, + "WeaselMinstrel": 1541234616, + "MOUNT_Rickshaw": 938282973, + "Transformation_Sherlock-Bones": 509126601, + "Mount_Phoenix": 556355452, + "Toaddle": 597488187, + "Pantera": 528797696, + "WildfireTreant": 673362041, + "StoneTiger": 746336665, + "Blowfish": 1447737334, + "Smith": 78327187, + "FlyingCat": 1254472614, + "RamWarrior": 536916302, + "Ladybug": 1846384669, + "BurlapBoy": 607590898, + "DeerKnight": 560802130, + "Gargoyle": 1227701700, + "Chameleon": 596131510, + "Scorpion": 1462253104, + "GDN_SM_BoiledPeanuts": 544885684, + "GDN_SM_ClockFlower": 676513046, + "GDN_SM_DeadBeets": 650783482, + "GDN_MED_SnowApple": 1916648180, + "Eyecaramba_Violet": 1804780775, + "Eyecaramba_Green": 750346574, + "Eyecaramba_Orange": 687614854, + "Piggle_Grandfather": 131445665, + "Velociraptor": 1042311818, + "Babydactyl": 1180982194, + "Stegosaurus": 476811765, + "Mount_Pegasus_Spectral": 948250730, + "Mount_2P_Scarydactyl": 1808983335, + "Mount_2P_TRex": 1495851852, + "Therizinosaurus": 80337863, + "Runtosaurus": 476200406, + "FrilledLizard": 420993517, + "Mount_Ankylosaurus": 669692274, + "Mount_Triceratops": 1126950204, + "Mount_2P_Glider": 1630365881, + "Transformation_Thunderhorn": 1045262037, + "Transformation_Jaguar": 1080966062, + "Transformation_Pteranadon": 273836142, + "Transformation_ShadowWeaver": 255927111, + "Transformation_EagleWarrior": 1880471875, + "Mount_Falalalallama": 389890123, + "Mount_2P_WinterTreant": 1850265056, + "GDN_LG_MissileToe": 1767792974, + "GDN_MED_PointSetta": 647257205, + "Nutcracker2012": 1598217699, + "Coal2012": 1627852119, + "Mount_Sleigh": 1636615519, + "Mount_Sabertooth": 1613031507, + "Mount_MechanicalWings": 1014917438, + "PiranhaHunter": 686271163, + "Quetzal": 2020925822, + "Mount_Sloth": 1169387359, + "HollowKnightLife": 2114081886, + "BettaFish": 138088968, + "MummyCat": 62372925, + "TrojanHorse": 1725299194, + "WC_Storm_Possessed": 186960228, + "AV_Possessed": 1106693085, + "AZ_Possessed": 1106692701, + "CL_Possessed": 1106692255, + "KT_Possessed": 1106693015, + "MS_Possessed": 1106692977, + "WC_Possessed": 1106692459, + "Mount_2P_Whale": 448824263, + "Mount_2P_Chariot": 88035298, + "Mount_WarBoar": 1159836211, + "Mount_Palanquin": 47587550, + "BearCub": 672664722, + "Transformation_Minotaur": 1454233452, + "DragonGauntlet": 797645257, + "DeathUnicorn": 924144161, + "Flamingo": 1488424911, + "Mount_Gorilla": 1939919432, + "Mount_WarUnicorn": 1361393198, + "GargoyleMyth": 1819685060, + "TikiMan": 16098567, + "Siren": 79937811, + "GoldenRam": 410220227, + "Harpy": 96026632, + "SwordShield": 1668411785, + "ClockworkKnight": 1059948980, + "Mount_MechanicalEagle": 1720948645, + "Mount_Cloud": 1166233435, + "Mount_Surfboard": 1914250039, + "Mount_BetaDragon": 1023653721, + "Mount_BeeWings": 1387988401, + "Vampire": 524731385, + "FrankenBunny": 589797989, + "BumbleBee": 249592226, + "Mount_Dragonfly": 1028843656, + "BronzeGolem": 1320867859, + "TarantulaHawk": 1983939429, + "Mount_Grasshopper": 1852850928, + "FlyingSquirrel": 847551166, + "GDN_MED_Sunion": 1652707634, + "GDN_MED_SwordFern": 548761438, + "GDN_SM_SugarKhrystal": 267539461, + "GDN_SM_SawPalmetto": 1892888046, + "GDN_LG_FacePalm": 2050814140, + "GDN_LG_QueenCrapeMyrtle": 80378450, + "Transformation_ShadowTank": 1304943609, + "Transformation_ShadowHeal": 1254024185, + "Transformation_ShadowDPS": 87276537, + "Mount_Noelephant": 1383672248, + "SaintBernard": 572932242, + "ParkaFox": 2009808189, + "Goose": 75019719, + "Mount_Coconut": 791151432, + "CreepyBeetle": 345594179, + "BabyDragonfly": 1367084335, + "FennecFox": 41315063, + "PP_Leviathan": 833901526, + "PP_SunSerpent": 1062677009, + "PP_LordOfWinter": 960214698, + "PP_Medusa": 867812931, + "PP_Dryad": 147654656, + "PP_AvengingFossil": 315904647, + "PP_Sabertooth": 1799146677, + "Mount_Butterfly": 1283940943, + "Mount_Hare": 2070851023, + "Transformation_MorganthB": 197306990, + "Transformation_MorganthC": 197831278, + "Transformation_MorganthD": 200452718, + "BabyPegasus": 1215000859, + "ArcaneHelp": 1899247549, + "Mount_Vines": 98389624, + "Mount_ArcaneMinecart": 2001270930, + "Hobgoblin": 2133668461, + "Mount_2P_Rowboat": 237071469, + "ForestSpirit": 1178454602, + "Mount_SpiritWolf": 531991076, + "Otter": 84138671, + "OrigamiBird": 550984083, + "DinoSkeletal": 233277835, + "Mount_HarrowingsGreen": 1605746772, + "Mount_HarrowingsBlue": 477152436, + "Mount_HarrowingsPurple": 2092807554, + "RedPanda": 1744233845, + "Ibis": 2665577, + "Corgi": 78823875, + "Mount_Yak": 996545739, + "Mount_FlyingBalance": 436519643, + "Transformation_ShadowMalistaire": 1043814435, + "Transformation_DragonMalistaire": 841867699, + "Mount_Scarab": 1687658791, + "Transformation_MisterHound": 1973578844, + "Mount_BahHumbug": 55114077, + "Skates": 1568993965, + "Moose": 75019725, + "Mount_Gargoyle": 1456663874, + "GDN_MED_VenusFlyTrapEpic": 1594069606, + "Mount_PlayerWingsPink": 19403046, + "GDN_LG_AlligatorPearEpic": 1326804812, + "Pet_Armadillo": 825736847, + "Mount_JoustingDestrierDyeable": 1683448768, + "GDN_MED_VampireCarrots": 871596496, + "GDN_SM_WhiteTigerLilyEpic": 1703271434, + "GDN_LG_NinjaFigEpic": 938504823, + "GDN_LG_SnapDragonEpic": 2071674466, + "GDN_MED_HelephantEarsEpic": 719166107, + "GDN_MED_TrumpetVineEpic": 225854518, + "GDN_SM_DandelionEpic": 728637442, + "GDN_SM_HuckleberriesEpic": 1903258448, + "GDN_MED_SnowAppleEpic": 1231175967, + "GDN_SM_BoomShroomEpic": 981598771, + "GDN_MED_KingParsleyEpic": 2038371004, + "Mount_Raptor": 749695031, + "Pet_Toucan": 581477475, + "Pet_Squirrel": 969881395, + "Mount_WonkyDonkey": 1481657312, + "Mount_HawkPatriotic": 509149743, + "Pet_FrogAssistant": 1945041750, + "Mount_Cat2": 1151054899, + "Mount_Cat2BW": 1603515443, + "Pet_ArmadilloBW": 825733899, + "Pet_FrankieForearms": 1100195857, + "Mount_SolarSabre": 1281093703, + "MNT_MechOstrich": 258667969, + "MNT_BootsBalance": 1799191558, + "MNT_BootsDeath": 1034912971, + "MNT_BootsFire": 606061658, + "MNT_BootsIce": 2142643294, + "MNT_BootsLife": 773751898, + "MNT_BootsMyth": 144792486, + "MNT_BootsStorm": 1525245121, + "Pet_CorgiBirthday": 1951779369, + "OrigamiBirdBDay": 1909935955, + "Pet_FlyingBlackCat": 432111988, + "Mount_Narwhal": 449637834, + "Mount_NightOwl": 1648420845, + "Pet_Penguin": 137342907, + "MNT_PowerGemUnicorn": 411234062, + "Pet_CrystalButterfly": 512136094, + "Mount_BabyMammoth": 185831059, + "MNT_BabaYaga": 564874997, + "Pet_BabySeal": 657606984, + "Pet_BabyYeti": 635847496, + "Transformation_BallerinaBear": 1525333600, + "Mount_StagYuletide": 1508680687, + "Transformation_TitanMedium": 1700742736, + "Transformation_TitanLarge": 718614967, + "Pet_SirenIce": 849851564, + "Mount_FlyingDeath": 1717725588, + "Mount_FlyingFire": 1177216332, + "Mount_FlyingIce": 1238841184, + "Mount_FlyingLife": 433397684, + "Mount_FlyingMyth": 164983572, + "Mount_FlyingStorm": 375872049, + "Dragonling": 1730534849, + "Pet_EggChicken": 952873217, + "HeckhoundGhost_MAW": 893368960, + "Mount_WinterTrain": 751515281, + "Mount_RubberDucky": 1826548479, + "Pet_BansheeSpellwrit": 917979583, + "Pet_SamooraiSpellwrit": 370057597, + "Mount_UnicornAstral": 886914505, + "Guest_Boochbeard": 1958574095, + "Pet_MouseSister": 1267930350, + "Pet_MouseFather": 2010008339, + "Pet_VampireSquirrel": 250588691, + "Mount_CoffinCar": 1387606595, + "Mount_BabyElephant": 2026559639, + "Pet_RoadHog": 601156960, + "Mount_WolfGryphonWings": 543038283, + "MNT_ClockworkSteed": 891371132, + "Mount_Chopper": 1196683136, + "Pet_ButterflyLamb": 527214392, + "Pet_MouseMother": 2012687123, + "Pet_MouseBrother": 1174380856, + "Pet_Cherub": 769208559, + "GDN_SM_Jewel": 1104045832, + "MR_Death_Duncan_Grimwater": 1850289001, + "Mount_DesertRunner": 2049036229, + "Pet_MonkeyMirage": 418612892, + "Pet_ClockworkOwl": 1038482431, + "Pet_NinjaTurtle": 2024540686, + "Mount_Vines_Halloween": 82852149, + "Mount_SwarmBat": 1151836459, + "Mount_2P_NinjaDragon": 1239694057, + "Mount_Gobler": 1820615236, + "Mount_MaryleboneCar": 2027689685, + "JackOLantern": 1016361578, + "Transformation_DjinnCommonA_Balance": 996127128, + "Transformation_MedicineMode": 25960701, + "CactusHopper": 1956293007, + "Transformation_Mimic_ChestGold_A": 414145432, + "Mount_Ghoulture": 1067671195, + "Pet_Macaw": 1087278472, + "Pet_SandWorm": 653200803, + "Transformation_DromelDancer": 1071824116, + "Pet_Bunnies": 695874547, + "Mount_Snowboard": 1914380015, + "Transformation_DrommelDancer": 226294468, + "Mount_Carpet_New": 1618650322, + "Mount_BunnySleigh": 599915427, + "Helephant_Heart": 419161272, + "Mount_Snowboard_Holiday": 876339060, + "Transformation_GhostDog": 646575420, + "Transformation_PrinceGobblestone": 693826496, + "Transformation_Mithraya": 1240010601, + "Transformation_LuskaCharmbeak": 897469730, + "Transformation_YoungCyrusDrake": 15595663, + "Kookaburra": 1069759154, + "BorealisGolemPet": 797488492, + "FlyingEyePet": 505959833, + "StormCloudPet": 548463069, + "BullPet": 1993917801, + "OpossumPet": 284003652, + "GhoulturePet": 939920734, + "StormCloudPetB": 548463001, + "StormCloudPetC": 548463003, + "Guest_LordNightshade": 1221409981, + "BullPetB": 1993917561, + "BullPetC": 1993917553, + "BullPetD": 1993917513, + "Transformation_ShadowCrit": 1392195065, + "Mount_Pennyfarthing": 1551926344, + "Mount_RowboatPirate": 2079208803, + "Mount_IceCube": 1261861595, + "Guest_LostMaiden": 883675592, + "Guest_BoatswainMcGee": 1359750850, + "Guest_ChiefMateMcGurk": 329643845, + "Guest_DoomedBones": 2015643882, + "Guest_SpectreoftheBrocken": 266357448, + "Guest_DrownedKnight": 1100966093, + "Guest_TarntheDrowned": 329540205, + "Guest_DisloyalKnight": 1853240753, + "Guest_NamelessKnight": 1065677876, + "Guest_LambentFire": 489886605, + "Guest_LordoftheBrocken": 1662003371, + "Guest_StormCaiman": 1147500291, + "Guest_GrinningDeathMoon": 737595789, + "Guest_MoonSkullWight": 1720039490, + "Guest_HuemacSpearWreath": 1522021131, + "Guest_HowlingBanshee": 1340855338, + "Guest_Sea-Booter": 1818491983, + "Guest_DeadRover": 1009273257, + "Guest_CelestianRemnant": 1312268448, + "Guest_Shadow-WebConscript": 1500529411, + "Guest_Shadow-WebMercenary": 623672171, + "Guest_Shadow-WebWraith": 810956416, + "Guest_Shadow-WebHaunt": 500586883, + "Guest_CelestianPartisan": 633346892, + "Guest_CelestianDefender": 482102727, + "Guest_ThraleBonestriker": 1172972733, + "Guest_VorgenSoulbreaker": 1935693246, + "Guest_ServusBloodsword": 1703995647, + "Guest_QueenCalypso": 845803519, + "Guest_BlueBart": 77043390, + "Guest_KarolakNightspinner": 1008737316, + "Guest_ArachtusDuskweb": 1787750209, + "Guest_ZhalarStarcloud": 1453644105, + "Guest_NarallorNightborn": 1963363700, + "Guest_SelwynSkywatcher": 1413136893, + "Guest_OsseusNightreaver": 306827003, + "Guest_IrateBanshee": 865143109, + "Guest_FuriousHowler": 1607252558, + "Guest_CryingSpirit": 1559074820, + "Guest_UndeadDraconian": 169249571, + "Guest_ReanimatedDraconian": 247067807, + "Guest_GhastlySlave": 80127661, + "Guest_BoundSpecter": 369706568, + "Guest_NecroticHaunter": 1714841563, + "Guest_LoathsomeCreeper": 1087245229, + "Guest_FleshrotRetriever": 1925148031, + "Guest_BarbarianSpirit": 2112552732, + "Guest_BeghastionCrowcaller": 586628832, + "Guest_BeghastionFieldburner": 1650751959, + "Guest_BoneWarrior": 76802026, + "Guest_FleshlessSentry": 708431820, + "Guest_PirateRavager": 945157059, + "Guest_RottenScallywag": 974666855, + "Guest_ArmoredBonewalker": 1444568072, + "Guest_UndeadWizard": 1622435563, + "Guest_SoulSearcher": 2094392941, + "Guest_DecayingBlackguard": 412324062, + "Guest_FoulReaper": 919877614, + "Guest_NightShadow": 1675932226, + "Guest_MotleyCrew": 653779218, + "Guest_OrinGrimcaster": 472649066, + "Guest_GhostofSylviaDrake": 218332449, + "Guest_VikaMarkmaker": 1145181168, + "Guest_VasekAshweaver": 1001434369, + "Guest_FireWraith": 1027720368, + "Guest_HungrySoul": 1722435576, + "Guest_FrostBones": 456145606, + "Guest_SnowSkull": 835837850, + "Guest_WinterSkull": 1556601065, + "Guest_LothinDoombringer": 860995070, + "Guest_MimirWinterbane": 1111898070, + "Guest_KulgrimSoulsunder": 278037985, + "Guest_HitojiniDeathcaster": 1144499043, + "Guest_GaikotsuSkeleton": 1113949902, + "Guest_PhantomAce": 1917639347, + "Guest_PhantomGlider": 849918336, + "Guest_Krokomummy": 857773886, + "Guest_NiriniAncientGuard": 359313880, + "Guest_NiriniFireSpirit": 1863811476, + "Guest_VaultHaunter": 197723476, + "Guest_VigilantDefender": 171276829, + "Guest_WanderingAhnicSpirit": 1702865088, + "Guest_ForgottenDjeseritSoul": 1170568256, + "Guest_KaranahnDeathfeeder": 1612857711, + "Guest_ShamblingAhnic": 1579129677, + "Guest_RisenDjeserit": 287855500, + "Guest_KaranahnMortifier": 874288111, + "Guest_DjeseritDweller": 2058423665, + "Guest_AhnicStrider": 1776992302, + "Guest_GuardianoftheFang": 1816795524, + "Guest_DefenderoftheFang": 354353604, + "Guest_ProtectoroftheFang": 1290191037, + "Guest_SouloftheCharmed": 422890577, + "Guest_KaranahnKeeper": 77581557, + "Guest_NiriniIntimidator": 677205957, + "Guest_CondemnedSoldier": 449152244, + "Guest_NimahtheWicked": 1298248873, + "Guest_AkoriNirini": 1123159753, + "Guest_SoulScavenger": 892852198, + "Guest_KeeperoftheFang": 1676773499, + "Guest_ItennuSokkwi": 699159408, + "Guest_Tempestra": 334938435, + "Guest_QueenIrisiDjeserit": 1861434100, + "Guest_TheBonekeeper": 1302503449, + "Guest_CryptScavenger": 1893795791, + "Guest_Soulsapper": 1699756010, + "Guest_KingUroAhnic": 1788825731, + "Guest_KingShemetDjeserit": 1350067043, + "Guest_UnholyWraith": 1871146013, + "Guest_PikeSpiritcrusher": 498715531, + "Guest_SpellwritScreamer": 801626733, + "Guest_SpellwritRonin": 1671439174, + "Guest_Shrieker": 805966229, + "Guest_GravePhantom": 731622936, + "Guest_NightmareSpirit": 230709057, + "Guest_VengefulCreeper": 1100197884, + "Guest_TombRoamer": 1277825068, + "Guest_ShieldSkeleton": 1634270152, + "Guest_AgonyWraith": 30384496, + "Guest_IcyGhost": 768353592, + "Guest_Half-wittedSkeleton": 647996362, + "Guest_LazyHenchman": 1329554426, + "Guest_TiredFighter": 210248632, + "Guest_Screecher": 469007005, + "Guest_SeethingWraith": 664913100, + "Guest_ColdConfusion": 1304943934, + "Guest_OssuaryConscript": 1017667150, + "Guest_Ghulture": 1330558655, + "Guest_BodyGuard": 1048581801, + "Guest_SpectralGuardian": 422805602, + "Guest_VaultConscript": 1388398065, + "Guest_FootPatrol": 1692393321, + "Guest_ArmedGuard": 2045920536, + "Guest_Chilly": 1764665905, + "Guest_Achey": 973370519, + "Guest_Sneezy": 1769440773, + "Guest_Cough": 1170200073, + "Guest_Shadowbones": 1316133167, + "Guest_ForgottenConscript": 1466348281, + "Guest_BarracksGuardian": 236603440, + "Guest_CryptConscript": 314755436, + "Guest_DurvishSeeker": 1825622267, + "Guest_MedicineMode": 167015574, + "Guest_Myriarch2": 593881680, + "Guest_Myriarch3": 593881616, + "Guest_MyriarchEphialtes": 773531895, + "Guest_MotherGhulture": 1585201915, + "Guest_CaptainCosrow": 727107332, + "Guest_VizierRafaj": 214040637, + "Guest_DarkmoorSerf": 1522169114, + "Guest_DarkmoorSquire": 1822567109, + "Guest_ScarletWampyr": 1683954247, + "Guest_DraconianRevenant": 741497298, + "Guest_DraconianEidolon": 107733297, + "Guest_AnguishedWraith": 1078602022, + "Guest_DraconianPyromancer": 729577007, + "Guest_DraconianThaumaturge": 189734361, + "Guest_DraconianDiviner": 472633746, + "Guest_DraconianConjurer": 1824962835, + "Guest_DraconianTheurgist": 1828628416, + "Guest_DraconianNecromancer": 175364324, + "Guest_DraconianSorcerer": 1262893339, + "Guest_SirBlackwater": 366308464, + "Guest_AkhtangWormCrawl": 1589032404, + "Guest_SpiritofDarkmoor": 579455915, + "Guest_ShanevonShane": 2096517522, + "Guest_YevgenyNightCreeper": 1535282881, + "Guest_MalistairetheUndying": 824508513, + "Guest_Bunferatu": 1015806005, + "Guest_CountBelaBlackSleep": 761647679, + "Guest_DeathSoldier": 1715141574, + "Guest_SorrowWhisperer": 556532003, + "Guest_GriefSpectre": 1425488559, + "Guest_HowlingShade": 631460247, + "Guest_WalkingDead": 318527090, + "Guest_Akuji": 977635799, + "Guest_TorturedKakedaSoul": 1716874833, + "Guest_KakedaSpiritSlave": 1814699344, + "Guest_DishonoredSamoorai": 320085744, + "Guest_CursedRonin": 1204095686, + "Guest_TomugawatheEvil": 166125424, + "Guest_OyotomitheDefiler": 1672714483, + "Guest_Fushiko": 801492770, + "Guest_BrokenLandGuardian": 294671991, + "Guest_ShatteredSkyGuardian": 746681463, + "Guest_SunderedSeamGuardian": 1439618652, + "Guest_BrokenLandSpirit": 860105895, + "Guest_ShatteredSkySpirit": 2104112380, + "Guest_SunderedSeamSpirit": 69572311, + "Guest_LostSoul": 204361577, + "Guest_RottingFodder": 308249734, + "Guest_HauntedMinion": 689597338, + "Guest_FieldGuard": 1175228991, + "Guest_SkeletalWarrior": 778393993, + "Guest_SkeletalPirate": 1476730220, + "Guest_WanderingSpecter": 126188449, + "Guest_LivingScarecrow": 1442943145, + "Guest_FrostPhantom": 1809776664, + "Guest_FireShrieker": 173332719, + "Guest_CryptCrawler": 2118799272, + "Guest_ViridianSpecter": 383149977, + "Guest_ArgentClatterer": 525414714, + "Guest_SwimmingSpecter": 1494025094, + "Guest_ScarletScreamer": 1689589811, + "Guest_BoneDigger": 1351421123, + "Guest_HowlingGhost": 664019391, + "Guest_SkeletalSoldier": 750463116, + "Guest_MaidenofHate": 444442868, + "Guest_SkeletalRetainer": 1409032775, + "Guest_SoulHunter": 1900267551, + "Guest_MidnightShuffler": 1991052065, + "Guest_PlaguedSoul": 419071561, + "Guest_HauntingBanshee": 345837052, + "Guest_SimontheSayer": 1352807820, + "Guest_TheHarvestLord": 1923575206, + "Guest_LadyBlackhope": 1403431623, + "Guest_SergeantSkullsplitter": 898737831, + "Guest_Foulgaze": 2063419769, + "Guest_Wormguts": 788697519, + "Guest_Rattlebones": 125602919, + "Guest_Paulson": 1112716921, + "Guest_Grubb": 1167554274, + "Guest_Norton": 581021964, + "Guest_NightStalker": 1447653309, + "Guest_AddereTimeo": 1491420030, + "Guest_TheReaper": 1526369733, + "Guest_AngrusHollowsoul": 1427862805, + "Guest_OrrickNightglider": 951078615, + "Guest_SteelSentinel": 885250894, + "Guest_Shadow-WebSoldier": 2014925398, + "Guest_LostCeleste": 1725301830, + "Guest_CapnNigelSkullcrack": 1665439970, + "Guest_HaulAwayJoe": 1075985331, + "Guest_OldMaui": 15300840, + "Guest_LordAgue": 140791419, + "Guest_MelweenaSmite": 432188189, + "Guest_HalloweenTrickster": 2043736417, + "Guest_PumpkinHead": 1098332105, + "Guest_BaronMordecai": 817370918, + "Guest_KaimaniteMummy": 1332671420, + "Guest_VeggieRevanant": 928504192, + "Guest_BloodBat": 76467389, + "Guest_DeadBeets": 157829578, + "Guest_Desparagus": 1130644076, + "Guest_MeanestFly-Trap": 1652898868, + "Guest_Nosferabbit": 1021159436, + "Guest_ThrallofSothmekhet": 330780177, + "Guest_VileApparition": 426627869, + "Guest_SoulServant": 1183110886, + "Guest_SoulKeeper": 917518313, + "Guest_AdmiralBontau": 2032168402, + "Guest_DeathWhisperer": 3814952, + "Mount_RollerBlades": 111369373, + "Guest_BaneWyrm": 147033576, + "Guest_BlackDragon": 939469656, + "Guest_DragonSpawn": 1829803517, + "Guest_Fire-SpitterSpawn": 616624489, + "Guest_CaoranachtheFire-Spitter": 323513000, + "Guest_Jabberwock": 1552492834, + "Guest_CatalantheLightningLizard": 1155778705, + "Guest_WhiteDragon": 2009449331, + "Guest_WinterWyrm": 478925069, + "Guest_WyrmStatue": 2119216210, + "Guest_AlgidWyrm": 1309546482, + "Guest_BruleeSucre": 390936202, + "Guest_HebitohoWyrmling": 1682026810, + "Guest_Shadowwock": 505539184, + "Guest_EirikurAxebreaker": 1361453552, + "Guest_WarWyrm": 1124740742, + "Guest_StrayFireflier": 610979811, + "Guest_BurningFlamewing": 2041225130, + "Guest_FeralLavaling": 371483057, + "Guest_SplinterWing": 923421333, + "Guest_ChanticoBlueAir": 1572441903, + "Guest_CopperWingGuard": 302783602, + "Guest_ObsidianBeak": 2016227452, + "Guest_CaquixNineShadows": 2070101060, + "Guest_LustrousTlalocan": 1201030473, + "Guest_SeedThief": 263211181, + "Guest_PopZotzUnluckyDay": 1416773489, + "Guest_NezathePoet": 1905861376, + "Guest_MazenStingerBee": 1642023393, + "Guest_ImperialJusticePayne": 1285679745, + "Guest_AssistantWardenPorfiry": 22099059, + "Guest_MarshalKamensky": 524669730, + "Guest_WardenVissarovich": 882556823, + "Guest_GulagGuard": 100744159, + "Guest_CaptainKravchuck": 690830770, + "Guest_ImperialGuard": 346803640, + "Guest_IronPaw": 1797329688, + "Guest_TundarianEnforcer": 134256836, + "Guest_Ivan": 996220221, + "Guest_ColonelOrlov": 1381254189, + "Guest_IronPawIntakeCaptain": 2099184835, + "Guest_SolitaryWarden": 1503529566, + "Guest_CaptainZubkov": 793725366, + "Guest_SergeantBobrik": 722182485, + "Guest_WailingWraith": 946976407, + "EggChick": 1452316301, + "BunnyMallow": 518233330, + "Guest_ThunderHornZombie": 1007920040, + "Guest_SmokingMirrorZombie": 340971759, + "Guest_ShamblingZombie": 1920485146, + "Guest_MoonSkullZombie": 809249764, + "Guest_DeathlessStormHorn": 812397213, + "Guest_MozarTurtleHunter": 561749043, + "Guest_GuillermoShatterer": 499565054, + "Guest_XiuhcoatlBarbedTooth": 1719245305, + "Guest_AzcalFireAnt": 1281366337, + "Guest_TlotzinMoonThief": 407285761, + "Guest_PocaCruelStar": 1117353085, + "Guest_ThunderHornGhoul": 597878999, + "Guest_TezomocStoneSinger": 733511940, + "Guest_EzhuaBadTaste": 632779219, + "Guest_UacalxochitlBloodEye": 1614856226, + "Guest_WanadiBlackSky": 349829749, + "Guest_ElMarrow": 483880636, + "Guest_GrimCalaca": 1534029144, + "Guest_XipeFlayedOne": 1343577398, + "Guest_MotecumaDeathMask": 1782393717, + "Guest_EkeChuah": 13416770, + "Guest_AnacaonaBlackSnake": 1543344897, + "Guest_SmokingMirrorWight": 776452983, + "Guest_Tolkemec": 217428080, + "Mount_Fox": 77199428, + "PP_OwlProtege": 268847192, + "Mount_SharkSki": 331374103, + "PP_Dolphin": 1662291612, + "Mount_CastSymbol_D": 1134428045, + "Mount_CastSymbol_E": 1136525197, + "Mount_CastSymbol_F": 1138622349, + "Mount_CastSymbol_G": 1140719501, + "Mount_CastSymbol_A": 1128136589, + "Mount_CastSymbol_B": 1130233741, + "Mount_CastSymbol_C": 1132330893, + "Guest_LionSpectralGuardian": 1791543691, + "Guest_KillmareSpiritwalker": 1818928165, + "Guest_ZebraSpectralGuardian": 815933596, + "Guest_GorillaSpectralGuardian": 1635182119, + "Guest_IklawGhostWarrior": 373465545, + "Guest_BwanaShadowriver": 1307628747, + "Guest_ElephantSpectralGuardian": 1579402208, + "Guest_ZangaZebu": 1218173119, + "Guest_GrumishGreataxe": 486953385, + "PP_GlowFairy_A": 2028856748, + "Guest_RestlessSoldier": 1142701763, + "Guest_WanderingWizard": 209518514, + "Guest_ColonelIvanenko": 399169035, + "Guest_DetollitheDestroyer": 655767295, + "Guest_Jawniak": 1791298433, + "Guest_Tajniak": 356182394, + "Guest_Ygor": 996316081, + "Guest_KyaniteLancer": 2136703656, + "Guest_VestaShadowmark": 1846747836, + "Guest_ZoraSteelwielder": 1186470644, + "Guest_AndorBristleback": 1949884743, + "Guest_GalliumPaladin": 1812340868, + "Guest_GalliumFootman": 1295203112, + "Guest_GalliumShardtrooper": 1210699836, + "Guest_GalliumJuggernaut": 3527584, + "Guest_VladimirDarkflame": 1575322237, + "Guest_KyaniteLieutenant": 561528977, + "Guest_DrusillaMorningbane": 155837810, + "Guest_KyaniteValkyrie": 53242136, + "Transformation_20Q_SherlockBones": 1112674320, + "Guest_DevoraShadowcrown": 1813459117, + "Guest_YoualaNightDrinker": 881289828, + "Guest_Pendragon": 715669945, + "Guest_CelestianRevenant": 515730327, + "Guest_SoullessServant": 1505662730, + "Guest_SpiritServant": 104517373, + "Guest_SoulSerf": 1188214406, + "Guest_ServileSoul": 871844607, + "Guest_SkeletalCorsair": 239414410, + "Guest_RottedFodder": 1301186193, + "Guest_ScarletScreecher": 600457915, + "PP_FrankBunnyBride_A": 974707030, + "Guest_BastillaGravewynd": 2100015237, + "Guest_VilaraMoonwraith": 2067986693, + "Guest_YngvarSharptooth": 1783361972, + "Guest_TroubledWarrior": 1569033392, + "Guest_VeggieRevanant2": 928503904, + "Guest_VeggieRevanant3": 928503888, + "Guest_VeggieRevanant4": 928503872, + "Guest_VeggieRevanant5": 928503856, + "Guest_AncientQhatWarrior": 1564521104, + "Guest_EmperorPaleolo": 2079384347, + "Guest_SpiritofIntolerance": 1627658048, + "Guest_SpiritofInquiry": 1320544891, + "Guest_FirstGuardian": 1982227776, + "Guest_FallenMerc": 225926286, + "Guest_NightShadow2": 1638183490, + "Guest_NightShadow3": 1636086338, + "Guest_NightShadow2-2": 1436856907, + "Guest_NightShadow3-2": 1434759755, + "Guest_NightShadow4-2": 1432662603, + "Guest_NightShadow5-2": 1430565451, + "Guest_NightShadow6-2": 1428468299, + "Guest_NightShadow7-2": 1426371147, + "Guest_FirstScythe": 738854032, + "Guest_GreyMantisCaptain": 860186057, + "Guest_GreyMantisHunter": 1239274377, + "Guest_Atlach-Leng": 836136649, + "Guest_PetrovGloomstrider": 2045783873, + "Guest_NauyotolDownIntheHole": 1134251106, + "Guest_SandorSpearcaller": 1351072377, + "Guest_MavraFlamewing": 1477685600, + "Guest_Scaldling": 208751819, + "Guest_WoebegoneWraith": 1166488705, + "Guest_BorisBlackrock": 1365399915, + "Guest_KatiaFirewinter": 521255834, + "Guest_ValerikBrightsword": 1244055782, + "Guest_RurikFlamesoul": 1962726850, + "Guest_IonaPyrelance": 722266491, + "Guest_DarkPoltergeist": 818162178, + "Guest_TheCollector": 1772287612, + "Guest_ViktorSnowcrusher": 1028387381, + "Guest_ValeskaRedwind": 19316351, + "Guest_ScarrikGallowgaunt": 105397333, + "Guest_Neberyx": 1453883041, + "Guest_AsrikWidebelt": 401936422, + "Guest_GothricHonorbound": 750072340, + "Guest_HalfangBristlecrown": 618779562, + "Guest_OsvudFleetpaw": 1023466459, + "PP_PufferFish_A": 1578606029, + "Guest_OzelUnderwaterCat": 1033669302, + "PP_BabyGreenMan_A": 910025246, + "PP_SchoolTurtle_A": 1012620678, + "PP_DarkBalloon_A": 1229308566, + "MT_JetsamCopter": 92127678, + "Mount_4P_DarkClownCar": 420246262, + "MNT_BalloonsBunch": 2000358474, + "Guest_TempleGuardian": 632574316, + "Guest_TemplePhantom": 1701097840, + "Guest_MahonStarsearcher": 1549093341, + "Guest_LostKnight": 858980994, + "Guest_AnguishedWoodman": 174606918, + "Guest_TormentedTreant": 294050331, + "Guest_WildfireTreant": 1902129818, + "Guest_BlightedYaxche": 679097088, + "Guest_Junglethorn": 1734561424, + "Guest_Tangleroot": 2027061721, + "Guest_BlightedFreerooter": 1109803061, + "Guest_Winterbranch": 1170787806, + "Guest_DecayingBogwalker": 1338670789, + "Guest_BrownwoodTormentor": 1655181754, + "Guest_Wildroot": 1839747182, + "Guest_Ironsplinter": 668295157, + "Guest_Frostbranch": 75974631, + "Guest_KyoukonteiTreant": 474446232, + "Guest_BrokenStumps": 414724364, + "Guest_WordlessWoodsmen": 1813881830, + "Guest_DesiccatedTreebeard": 1826942903, + "Guest_ShadowoftheLand": 1612385317, + "Guest_TreeRoot": 1406633546, + "Guest_BefouledWoodwalker": 1517919498, + "Guest_ConfusedForestWarrior": 750805985, + "Guest_CrazedForestSpirit": 1007960507, + "Guest_Oakheart": 1158293719, + "Guest_SnowTreant": 1028620035, + "Guest_Snowbeard": 1997921701, + "Guest_BarkskinTreant": 2143957812, + "Guest_RazorleafTreant": 2133159197, + "Guest_CarrionFlowerMan": 1120698936, + "Guest_Kurokage": 355651925, + "Guest_LacombeStrawHouse": 568809873, + "Guest_BerkshireStickHouse": 1932133405, + "Guest_TamworthBrickHouse": 894027634, + "Guest_RustyTinderSpark": 1237916230, + "Guest_CoraWinterBranch": 1901918989, + "Guest_GrambleGoldRook": 1986988546, + "Guest_PiperStormTree": 1109520133, + "Guest_Hanadzura": 124838500, + "Guest_Kuchisaki": 2084188681, + "Guest_Kaizoku": 807430784, + "Guest_JaxonLastRites": 1653711119, + "Guest_SeijunKiller": 657647155, + "Guest_ZarichiTarakata": 1129212566, + "Guest_BladelessRonin": 1577395797, + "Guest_SanzokuOutlaw": 1682888807, + "Guest_SanzokuBandit": 1766198653, + "Guest_KakedaPainbringer": 1260119278, + "Guest_KakedaStalker": 367458449, + "Guest_KakedaShadow": 1604499626, + "Guest_KakedaSoulcrusher": 1961168112, + "Guest_ImitsuPlaguemaster": 1361539025, + "Guest_ImitsuDefouler": 1299791045, + "Guest_ImitsuPunisher": 234819300, + "Guest_StudentofKhai": 249757647, + "Guest_OtomoBattlemage": 918160114, + "Guest_OtomoCourier": 1373253378, + "Guest_OtomoSupplyRunner": 1580070577, + "Guest_OtomoScout": 1814051082, + "Guest_OtomoWrestler": 1053571230, + "Guest_OtomoFury": 111319603, + "Guest_Hyottoko": 307080225, + "Guest_Usunoki": 1881339626, + "Guest_Kagemoosha": 1842766119, + "Guest_UdoJin-e": 850816224, + "Guest_TakedaKanryu": 536087422, + "Guest_Tamauji": 818613882, + "Guest_Jikiru": 794167355, + "Guest_Nomoonaga": 849534658, + "Guest_Aiuchi": 515942855, + "Guest_Kurogaso": 1426248002, + "Guest_Ideyoshi": 1814038213, + "Guest_Koto": 1151260427, + "Guest_Usegi": 977549586, + "Guest_Kanago": 1644367227, + "Guest_Kyuto": 1168225979, + "Guest_Haru": 2070048389, + "Guest_Ashikata": 1523446928, + "Guest_Katsumori": 1823914597, + "Guest_Hingen": 1567896261, + "Guest_Yakedo": 502298497, + "Guest_Do-Daga": 1239945714, + "Guest_Maito": 979260804, + "Guest_TonkatsuThug": 1758658397, + "Guest_GobbloreanGuard": 1286210991, + "Guest_BabblingMeints": 413418139, + "Guest_PrinceGobblestone": 1813171676, + "Guest_GobblerMuncher": 1517159487, + "Guest_GobblerGorger": 130736772, + "Guest_GobblerScouter": 1509427587, + "Guest_GobblerGlutton": 1912199781, + "Guest_GobblerScavenger": 136586791, + "Guest_BaronGreebly": 1028182200, + "Guest_BaronRotunda": 457132907, + "PP_DeathMimic": 1811942047, + "Guest_GreenMan": 1126663802, + "Guest_ForestGrump": 1602350320, + "Guest_ErvintheBarbarian": 1671762776, + "Guest_RazortuskWarrior": 1109994549, + "Guest_RazortuskBrawler": 732265321, + "Guest_SplithoofRager": 1922134329, + "Guest_TuskedRaider": 1920114147, + "Guest_SviniBeserker": 1146317608, + "Guest_SviniReaver": 216717251, + "Guest_Shattertusk": 1191456730, + "Guest_SplithoofBarbarian": 296671728, + "Guest_Bloodseeker": 2086598239, + "Guest_Scarsnout": 1831766077, + "Guest_MasterTonkatsu": 1783298894, + "Guest_Grisletusk": 657393295, + "Guest_SplithoofBloodguard": 488382274, + "Guest_BristlehideRaider": 237078958, + "Guest_Gullin": 1656401882, + "Guest_ForestNymph": 812055814, + "Guest_SassafrasMan": 1327049788, + "Guest_RandolfSpellshine": 108808620, + "Guest_BleysFlamerender": 434070106, + "Transformation_Khan": 1398327634, + "Transformation_TheBat": 1675113521, + "MNT_DireWolf": 845578449, + "MNT_YuleMule": 1976182058, + "MNT_LightBlades": 829118450, + "MNT_FlyingSquid": 1573132252, + "PP_Globulin": 467801224, + "PP_BeastBaby": 1807874692, + "PP_SaniBot": 670845902, + "Mount_SwarmSand": 1277669407, + "Guest_Nodnarb": 211478288, + "Guest_LordBramble": 1118781162, + "Guest_Yogash": 506264561, + "Guest_Marcio": 499428996, + "Guest_Procyon": 1115376865, + "Guest_Thunderfin": 2029218563, + "Guest_ArkynMoonblade": 1152775206, + "Guest_CreeCurdWright": 1714953095, + "Guest_DeerMouseRevenant": 315064435, + "Guest_ElanaDarksun": 837982094, + "Guest_KingAlricFateSailor": 1934591130, + "Guest_LaughingCalaca": 984492527, + "Guest_WraithKnight": 620484548, + "Guest_FieryEchoofApep": 484636593, + "Guest_FrostyEchoofApep": 171933154, + "Guest_FalseEchoofApep": 479387377, + "Guest_ChargedEchoofApep": 1229406800, + "Guest_ShrowdengersQhat": 101563303, + "Guest_Scrollkeeper": 643219293, + "Guest_TerrorHound": 753341570, + "Guest_CondemnedMander": 445370758, + "Mnt_SnowStorm": 1491572670, + "Mount_ChimneySweeper": 378571534, + "MNT_PineappleCandyCane": 1630795796, + "Guest_TyphonDustwind": 740849673, + "MNT_StickHorse": 216654744, + "MimicTemplate": 1461219184, + "MNT_Ball_N_Chain": 289720920, + "PP_PeaceDove_A": 1785119671, + "Mount_Gyrocycle": 1495008048, + "PP_BattleMageDragon_A": 1864696711, + "MNT_BattleBeast": 1304449286, + "MNT_SmokeTrails": 387873030, + "Mount_FriendshipHare": 677127330, + "MNT_ButterflySwarm": 383602683, + "PP_EggChick_B": 1959154042, + "MNT_Unicorn": 562210585, + "PP_StuffedUnicorn": 1731641773, + "MNT_ParadeTruck": 2026348978, + "MNT_ParadeTruckXmas": 1017864627, + "MNT_AutumnLeafSwarm": 1540002279, + "PP_GingerbreadMan": 1796172229, + "PP_DecadeDragon": 1819398630, + "MNT_StageShip": 829852992, + "PP_DramaLlama": 255896529, + "PP_HallMinotaur_A": 1492017563, + "Guest_MacDeath": 1526226705, + "Guest_MacDeathUnderstudy": 1731752647, + "Guest_MacLifeUnderstudy": 257466641, + "Guest_MacStormUnderstudy": 8295117, + "MNT_Pantera": 1135198, + "MNT_StagLight": 1908778048, + "MNT_GiantSpider": 1247185021, + "MNT_StagEvil": 872303931, + "PP_BaskHound": 1093866594, + "PP_Marionette": 1688299938, + "PP_Marionette_B": 1688297824, + "Guest_Izft": 996301405, + "Guest_SapotisMinion": 1625665891, + "Guest_CrazedSlave": 1473233468, + "Guest_CharmedSlave": 803043667, + "Guest_EnsorcelledSlave": 40920285, + "Guest_HallServant": 2038116460, + "Guest_SiathePerceiver": 1235571913, + "Guest_Kiwu": 1151177787, + "Guest_NightImp": 1051843424, + "Guest_EvilTrickster": 1035477123, + "Guest_DeepWoodsImp": 1502444054, + "Guest_ForestPest": 802235713, + "Guest_TaintedForestImp": 1030343985, + "Guest_Youkai": 518367729, + "Guest_CarthaginianElephantWarrior": 776293919, + "Guest_IdrisBeast-Taker": 106759521, + "Guest_MikaSkarka": 237956516, + "Guest_Belloq": 757247833, + "Guest_GurtokPiercer": 549466122, + "Guest_GurtokFirebender": 817966523, + "Guest_GurtokDemon": 544070162, + "Guest_GeneralFiretusk": 2073037770, + "Guest_GurtokBarrierDemon": 44657563, + "Guest_BlacktuskShaman": 1009070925, + "Guest_FireDemon": 158367196, + "Guest_DeathOni": 1916642000, + "Guest_JadeOni": 1289517185, + "Guest_PlagueOni": 1464586443, + "Guest_WarOni": 1630196094, + "Guest_BrokenLandMammoth": 1587008312, + "Guest_SunderedSeamMammoth": 1272698721, + "Guest_BullyMammoth": 170705927, + "Guest_Bullhemoth": 146998717, + "Guest_Kogasha": 1909654543, + "Guest_MusuthBerserker": 1741298129, + "Guest_BlackTuskCultist": 1771575961, + "Guest_AksilBlacktrunk": 1253596409, + "Guest_LongdreamerShaman": 1521283133, + "Guest_MuratGreyeyes": 1296814314, + "Guest_ElephantSoldier": 1443670145, + "Guest_DarajaniGuard": 1597288495, + "Guest_Loremaster": 1792470809, + "Guest_Pork": 2069999347, + "Guest_Beans": 97706585, + "MNT_Ox": 1292937747, + "PP_PropellerSquirrel": 1657443894, + "Guest_RasikPridefall": 97921485, + "Guest_AmedrasLightstep": 1818417025, + "MNT_SmokeTrails_Balance": 1358150715, + "MNT_SmokeTrails_Fire": 702971609, + "MNT_SmokeTrails_Ice": 190218501, + "MNT_SmokeTrails_Life": 2045542105, + "MNT_SmokeTrails_Myth": 1276281121, + "MNT_SmokeTrails_Storm": 564954622, + "Guest_Bellosh": 1407013027, + "Guest_AcampiReedfist": 2076527733, + "Guest_AgnettaBroadblade": 14864960, + "Guest_FrostheartRaider": 1574787221, + "Guest_JordaSwordbearer": 1627071850, + "Guest_KasaiBaku": 1153107369, + "Guest_ZoraimeiHelephant": 1002482606, + "Guest_ConscriptedMander": 43811125, + "Firecat_Decade": 409516955, + "MNT_BatGlider": 2086258491, + "Transformation_PlayerHomework": 673389670, + "Transformation_PlayerAttendance": 422287307, + "Transformation_PlayerLecture": 2035625874, + "Transformation_PlayerPopQuiz": 483367038, + "MNT_GingerbreadHorse": 1369242781, + "MNT_NimbariChariot": 1251740392, + "PP_NimbariDog": 1235126828, + "Transformation_PlayerGrandma": 1128332272, + "Transformation_PlayerScionA": 33862367, + "PP_Mushroom": 1568942158, + "MNT_Scooter": 1148167046, + "MNT_Scooter_B": 2079302532, + "MNT_Scooter_C": 1810867076, + "MNT_Scooter_D": 468689796, + "MNT_IceCycle": 415797788, + "Transformation_PlayerScionA02": 33921759, + "Guest_FearoftheFuture": 947210229, + "Guest_FearofGremlins": 405857384, + "Guest_RootGuardian": 922940845, + "Guest_VineThrasher": 172546427, + "Guest_BlightWalker": 1438155154, + "Guest_BriarScourge": 615681851, + "Guest_DreamJabberwock": 907754098, + "Guest_DreamBelloq": 990352002, + "Guest_Voltergeist": 1558128068, + "Guest_SpecialBranch": 1927849418, + "Guest_MutantBriar": 805892802, + "Guest_FeralBriar": 883790223, + "Guest_MaizeMonster": 688905764, + "Guest_DreamShadowwock": 1432458248, + "Mount_Heartboard": 1421972759, + "PP_ChocoBunny": 324797859, + "Mount-PogoFlower": 906659501, + "MNT_AethyrCloud": 1586061078, + "MNT_Fangle": 7846854, + "Guest_StarfallSpider": 1177620831, + "Guest_AshSpider": 1588502553, + "Guest_CorruptedWeaver": 38937211, + "Guest_CrystalCrawler": 1197980149, + "Guest_ShimmerWidow": 1300740128, + "Guest_FacetedSpikespinner": 1939719331, + "Guest_CrystallineQueen": 1999282256, + "Guest_AncientCrystalweaver": 1409608801, + "Guest_FangtoothLavaspinner": 1538042104, + "Guest_VenomousHeatseeker": 1234682482, + "Guest_FireweaveRockbiter": 300743778, + "Guest_MonkeySpider": 754090007, + "Guest_CryptSpider": 1545405304, + "Guest_CommonHouseSpider": 613486002, + "Guest_ArachnaMagnaMagus": 825817937, + "Guest_ArachnaSoldier": 270978709, + "Guest_Gnissa": 1699826178, + "Guest_WebwoodScuttler": 1728611075, + "Guest_SandSpider": 61789007, + "Guest_WebwoodCreeper": 1013382584, + "Guest_Skathi": 1631429165, + "Guest_ArchmagusLorcan": 321146960, + "Guest_CrawleroftheMist": 2076696304, + "Guest_PaintedSpider": 1482115552, + "Guest_GiantSpider": 1545526191, + "Guest_CaveCrawler": 2101587667, + "Guest_RattleCatcher": 1472707326, + "Guest_TrapdoorSpider": 1321643694, + "Guest_RockClinger": 1304266411, + "Guest_InquisitorXimenez": 1053483090, + "Guest_ElderMagus": 1017836836, + "Guest_WardenBenthamic": 18807199, + "Guest_SpiderArchmagus": 387645558, + "Guest_SpiderAdept": 2094873407, + "Guest_InterrogatorRentenius": 1245984179, + "Guest_WarpedWeaver": 495882677, + "Guest_ArachnaSkinner": 281864085, + "Guest_SkinnerConscript": 2028526453, + "Guest_ArachnaGladiator": 2492046, + "Guest_LorcanInitiate": 353311753, + "Guest_Serket": 1871335773, + "Guest_IceWeaver": 2063216026, + "Guest_SpiritSpinner": 525666327, + "Guest_MysteriousCrawler": 218352756, + "Guest_BlackWidow": 1909331619, + "Guest_BrownRecluse": 1146386275, + "Guest_Creeper": 1197442790, + "Guest_GearSpinner": 67020478, + "Guest_Clinker": 1194519062, + "Guest_Clanker": 1194517014, + "Guest_GrandfatherSpider": 1330981335, + "Guest_Spiderling": 1400274461, + "Guest_ManekiWebWalker": 888348786, + "Guest_KoganiDeathCrawler": 276010604, + "Guest_CheliceranCrawler": 1169176517, + "Guest_ArachniteCreeper": 1850534774, + "Guest_ChelicaranStalker": 2057291848, + "Guest_HornedMonkeySpider": 1301514577, + "Guest_GreyOgreSpider": 1533774471, + "Guest_StarburstSpider": 698029451, + "Guest_PaintedCaveMonster": 601315479, + "Guest_RubbleRouser": 220785666, + "Guest_EarthElemental": 435260049, + "Guest_SharpshardWarrior": 1403237237, + "Guest_Firevein": 1220046430, + "Guest_Blackblade": 458130537, + "Guest_VengefulFireheart": 563205004, + "Guest_FirerockStomper": 608552855, + "Guest_BlackrockGuardian": 1663799582, + "Guest_ConfusedSentry": 24655510, + "Guest_SilverSentinel": 1090673683, + "Guest_SilverServant": 84560693, + "Guest_GiantHomunculus": 456098557, + "Guest_PropertyMaster": 229101764, + "Guest_VaultProtector": 185568207, + "Guest_PlatedDefender": 79324363, + "Guest_Avalanche": 761613547, + "Guest_RockReaver": 919912933, + "Guest_Frostmantle": 856308090, + "Guest_GlacierWalker": 131215932, + "Guest_SandBehemoth": 272513357, + "Guest_RunedAnnihilator": 121339936, + "Guest_RunedDevestator": 1611071181, + "Guest_RunedGuardian": 1986312667, + "Guest_CanyonRager": 1123038266, + "Guest_RubbleReaver": 220774678, + "Guest_Boulderbone": 122279242, + "Guest_Nali": 77467516, + "Guest_Gnar": 1151164930, + "Guest_GlacialAvenger": 1181253632, + "Guest_SokkwiKeymaster": 190919624, + "Guest_SandsofTime": 34920273, + "Guest_BladeGolem": 435561523, + "Guest_FrostColossus": 1564686403, + "Guest_IceColossus": 335477257, + "Guest_PollutedEarthWalker": 86045387, + "Guest_CorruptedEarthSpirit": 1135891559, + "Guest_Stonebreaker": 1317905436, + "Guest_StoneElemental": 1715022018, + "Guest_VolcanisGolem": 1904918929, + "Guest_WaterElemental": 1717850987, + "Guest_AshenDeathMonkeySpider": 35356665, + "Guest_DeathMonkeySpider": 1525508507, + "Guest_MotherMonkeySpider": 110317392, + "Guest_DoomMonkey": 1135105500, + "Guest_DreamMorganthe": 907599965, + "Guest_DragonBeetle": 1974635734, + "Guest_SandWalker": 1530843985, + "MNT_PandaMama": 916371162, + "PP_BabyPandas": 778536285, + "PP_FrogPrince": 729975205, + "MNT_PumpkinCarriage": 183672737, + "Mount_Gobbler_B": 1193388729, + "PP_Hamster": 1578040708, + "Guest_Steeleton": 657429968, + "Guest_GoldenWyrm": 311022393, + "MNT_Roc": 1564431869, + "PP_BabyGriffin": 1913686406, + "Transformation_ShadowDPSMob": 936133896, + "Transformation_ShadowTankMob": 305660992, + "Transformation_ShadowHealMob": 356596800, + "Guest_SpiritofIgnorance": 1577360126, + "Guest_FecklessSoul": 519648315, + "Guest_BurnedOutSoul": 312181646, + "Guest_BenightedRevenant": 2131956962, + "Guest_TombLurker": 1901203489, + "Guest_DesertGolem": 543642682, + "Guest_KumoOni": 215822625, + "Guest_SpellwritStalker": 161772776, + "PP_Sun": 1723237840, + "Guest_Leadite": 4480416, + "Mount_FestiveFox": 2125832348, + "PP_FenrisWolf": 1601784680, + "PP_SchoolPiggle": 109782407, + "PP_FenrisWolf_Red": 1597992854, + "PP_FenrisWolf_Teal": 1455058454, + "PP_FenrisWolf_White": 1102186199, + "Transformation_NinjaPig_Fire": 984575055, + "Transformation_BG_RatThief_Myth": 1191155131, + "Transformation_BG_RatThief_Storm": 675891897, + "MNT_Umbrella": 955683437, + "Transformation_BG_Elf_Ice": 1209681129, + "Transformation_BG_Fairy_DarkMinion_Balance": 33521202, + "Transformation_BG_Cyclops_Death": 876023972, + "Transformation_BG_Minotuar_Fire": 1118476387, + "Transformation_BG_WolfWarrior_Storm": 2075594475, + "Transformation_BG_WolfWarrior_Balance": 746159992, + "Transformation_BG_Draconian_Myth": 903606820, + "Transformation_BG_Draconian_Life": 1501291044, + "Transformation_BG_Colossus_Life": 1320377666, + "MNT_DolphinChariot": 102982520, + "MNT_EvilWagon": 685457563, + "MNT_FlyingDutchman": 1176206544, + "PP_SeaHorse": 2024322494, + "PP_EvilTeddy": 1159020925, + "PP_ZombieParrot": 384805107, + "Transformation_BG_Ice_Colossus": 299613211, + "MNT_CarrierBat": 7323333, + "Transformation_BG_Minotaur_MythTempalte": 430330904, + "PP_FeatheredTabby": 452526748, + "Transformation_Detritus01": 1335763402, + "Guest_Metallossus": 335457082, + "MNT_SantaJaws": 464410203, + "MNT_BattleBadger": 532858222, + "Transformation_Shedder01": 2069145892, + "PP_NatureSpirit": 373176286, + "Transformation_Devourer01": 1004421540, + "Guest_TheDevourer": 1591187996, + "Guest_Treeminder": 1093207850, + "Guest_RenegadeDruid": 2087982292, + "Guest_FractalTreeminder": 927174548, + "Guest_UnsettledTreeminder": 486164163, + "Guest_DragonspyreCrusader": 247317280, + "Guest_YoungGreggor": 66068670, + "Guest_GeneralGreyflame": 499924835, + "Guest_OldGreggor": 391726170, + "Guest_PrinceViggor": 853556298, + "Guest_DragonspyreVanguard": 693851565, + "Guest_SilasConviction": 177362659, + "Guest_SilasWeariness": 893431021, + "Guest_SilasRage": 1288904439, + "Guest_SilasDoubt": 1479426285, + "Guest_Lorekeeper": 147779344, + "Guest_FelixPhotomongerIII": 68387506, + "Guest_WarHavox": 1634324022, + "Guest_Mis-assembledSkeleton": 221832082, + "Guest_TreeminderGhost": 200408510, + "Guest_ViggorsDrake": 340449521, + "Guest_BlueNinjaPig": 938539327, + "Guest_RedNinjaPig": 2097962021, + "Guest_OrangeNinjaPig": 625058258, + "Guest_PurpleNinjaPig": 445746449, + "Guest_RitualColossus": 844563319, + "Guest_TinyDragon": 1123127688, + "Guest_RitualSpider": 429827552, + "Guest_RitualDraconian": 837510372, + "Guest_CC_Druid_Warrior_C_01": 55314616, + "Guest_CC_Druid_Wizard_A_01": 1046261169, + "Guest_CC_Druid_Wizard_B_01": 1046244785, + "Guest_CC_Druid_Warrior_A_01": 56363192, + "MNT_Toboggan": 995356805, + "MNT_2P_WickerTreant-001": 2065440944, + "PP_Ratatoskr": 1003497600, + "PP_Trash": 1195047012, + "Guest_CC_Druid_Wizard_D_01": 1046343089, + "MNT_Sunflower": 721091531, + "MNT_Whoopee": 1383311238, + "MNT_Warthog": 8060761, + "PP_ShamRock": 943893325, + "PP_LeapingLeprechaun": 132882517, + "PP_LionCubs": 465759803, + "PP_Tanuki": 670387843, + "MNT_Crane": 433122675, + "MNT_Krokosphinx": 739938754, + "Transformation_BG_Fairy_Life": 1897480818, + "Transformation_LiceDeepSpawnA": 244795720, + "Piggle_Alien": 1761605655, + "PP_JeweledScarab": 620544607, + "Guest_KR_Nymph_DrkMage_D50": 1248526054, + "Guest_KR_Nymph_DrkMage_C50": 1246953190, + "Guest_KR_Nymph_DrkMage_B50": 1247477478, + "Guest_KR_Nymph_DrkMage_A50": 1245904614, + "Guest_EM_Spider_Ash_01": 185724938, + "UFO": 47349, + "PP_Kit10": 326796620, + "PP_Lumi_Tulip": 84119585, + "PP_Lumi_Fern": 117015078, + "PP_Lumi_Violet": 1468797578, + "PP_Lumi_Sunny": 1769236703, + "PP_Lumi_Daisy": 1743454175, + "MNT_CelestianMech": 1238076872, + "MNT_Brontosaurus": 402157167, + "Guest_HG_AKT_Krok_Cyber_A_Balance_25": 1367985604, + "Guest_HG_AKT_Krok_Cyber_A_Balance_50": 1368084932, + "Guest_HG_AKT_Krok_Cyber_A_Balance_75": 1367988676, + "Guest_HG_AKT_Krok_Cyber_A_Balance_100": 1351303620, + "Guest_HG_AKT_Krok_Cyber_A_Balance_130": 1351270852, + "Guest_HG_AKT_Krok_Cyber_A_Fire_25": 976558490, + "Guest_HG_AKT_Krok_Cyber_A_Fire_50": 37034397, + "Guest_HG_AKT_Krok_Cyber_A_Fire_75": 305469850, + "Guest_HG_AKT_Krok_Cyber_A_Fire_100": 573905821, + "Guest_HG_AKT_Krok_Cyber_A_Fire_130": 573905824, + "Guest_HG_AKT_Krok_Cyber_A_Ice_25": 159411377, + "Guest_HG_AKT_Krok_Cyber_A_Ice_50": 541093041, + "Guest_HG_AKT_Krok_Cyber_A_Ice_75": 146828465, + "Guest_HG_AKT_Krok_Cyber_A_Ice_100": 557870241, + "Guest_HG_AKT_Krok_Cyber_A_Ice_130": 960523425, + "Guest_HG_AKT_Krok_Cyber_A_Myth_25": 976187830, + "Guest_HG_AKT_Krok_Cyber_A_Myth_50": 36663729, + "Guest_HG_AKT_Krok_Cyber_A_Myth_75": 305099190, + "Guest_HG_AKT_Krok_Cyber_A_Myth_100": 573535153, + "Guest_HG_AKT_Krok_Cyber_A_Myth_130": 573535156, + "Guest_CL-GolemButler-R9": 780077559, + "Guest_CL-GolemDigger-Boss-R10": 562020288, + "Guest_CL-GolemDigger-R9": 789375095, + "Guest_CL-GolemDigger-Rank8MythBoss-R10": 930527857, + "Guest_CL-GolemWorker-R9-1": 1072815287, + "Guest_CL-FishbotBrown-R9-1": 2006155417, + "Guest_CL-FishbotBrown-R9-2": 395542681, + "Guest_CL-FishbotGold-Boss-R10": 611881707, + "Guest_CL-FishbotGold-R9": 705414492, + "Guest_CL-FishbotYellow-Boss-R10": 23145662, + "Guest_CL-Protector-Black-Boss-R10-2": 679228793, + "Guest_CL-Protector-Gold-R10": 1909636609, + "Guest_CL-Protector-Gold-R9-1": 1909634804, + "Guest_CL-Protector-Gold-R9-2": 1909634932, + "Guest_CL-Protector-Gold-R9-3": 1909635060, + "Guest_CL-Protector-Gold-R9-4": 1909634164, + "Guest_CL-Protector-Purple-R9-Boss": 1889837072, + "Guest_CL-Protector-Purple-R9": 81760161, + "Guest_CL-Protector-Tan-Boss-R10": 912663188, + "Guest_KR_Golem_Worker": 1784607296, + "Guest_Golem-Brass-R7-1": 718939445, + "Guest_Golem-Clockwork-R7": 1161173708, + "Guest_EM_Robot_Batbot_A_01": 1482867950, + "Guest_EM_Robot_Batbot_B_02": 945947886, + "Guest_EM_Robot_Batbot_B_01": 1482818798, + "Guest_EM_Robot_Batbot_B_03": 409076974, + "Guest_EM_Robot_Batbot_B_04": 127793938, + "Guest_EM_Robot_Batbot_B_05": 664664850, + "Guest_EM_Robot_Drone_A_02": 1215188569, + "Guest_EM_Robot_Drone_A_03": 1231965785, + "Guest_EM_Robot_Drone_A_01": 1265520217, + "Guest_EM_Robot_Drone_A_04": 1315851865, + "Guest_EM_Robot_Drone_A_05": 1332629081, + "Guest_EM_Robot_Drone_A_06": 1282297433, + "Guest_EM_Robot_Drone_A_07": 1299074649, + "Guest_EM_Robot_Drone_A_08": 1114525273, + "Guest_EM_Robot_Drone_A_09": 1131302489, + "Guest_EM_Robot_Drone_A_Boss_01": 1960661151, + "Guest_EM_Robot_Drone_A_Boss_02": 1960530079, + "Guest_EM_Robot_Drone_E_01": 1265518169, + "Guest_EM_Robot_Tank_A_01": 1314796420, + "Guest_EM_Robot_Tank_A_02": 1313223556, + "Guest_EM_Robot_Drone_C_02": 1215187545, + "Guest_EM_Robot_Drone_D_03": 1231963225, + "Guest_EM_Robot_Drone_D_01": 1265517657, + "Guest_EM_Robot_Drone_D_02": 1215186009, + "Guest_EM_Robot_Tank_B_01": 1314796468, + "Guest_EM_Robot_Drone_C_01": 1265519193, + "Guest_G14-BP-Golem_Steel_Boss": 2071105129, + "Guest_G14-BP-Golem_Steel_Puzzle": 715790979, + "Guest_Golem-Brass-Elite-L38": 1163662532, + "Guest_Golem-Brass-Elite-L56": 2057562884, + "Guest_Golem-Brass-MBBoss-L48": 1498830732, + "Guest_Golem-Brass-MBBoss-L71": 1498829576, + "Guest_Golem-Brass-MBBoss-L76": 1498828936, + "Guest_Golem-Clockwork-Elite-L54-Metal": 417151527, + "Guest_Golem-Clockwork-Elite-L37": 1961943722, + "Guest_Golem-Clockwork-Elite-L54": 1950147242, + "Guest_Golem-Clockwork-L28": 1561959116, + "Guest_Golem-Clockwork-MBBoss-L37": 973152783, + "Guest_Golem-Clockwork-MBBoss-L69": 1262559759, + "Guest_Golem-Steel-Elite-L39": 1430496717, + "Guest_Golem-Steel-MBBoss-L40": 1229578887, + "Guest_Golem-Steel-MBBoss-L43": 1229579015, + "Guest_Golem-Steel-MBBoss-L50-1": 1231762051, + "Guest_Golem-Steel-MBBoss-L50": 1229578883, + "Guest_Golem-Steel-MBBoss-LXX": 1229583927, + "Guest_Golem-Wood-Elite-L35": 904360756, + "Guest_Golem-Wood-Elite-L37": 1978102580, + "Guest_Golem-Wood-Elite-L50": 1813548236, + "Guest_Golem-Wood-MBBoss-L63": 1392041724, + "Guest_MB-Gauntlet-Golem-Clockwork": 854649045, + "Guest_Spider-Golem-MBBoss-L67": 253352706, + "Guest_Spider-Golem-MBBoss-L96": 253348994, + "Guest_WC-MAW-GasGolem-Minion": 1511013798, + "Guest_WC-MAW-GasGolemLife-Minion": 1306026584, + "Guest_Golem-Steel-L02": 1027229749, + "Guest_Golem-Clockwork-L01": 1409915596, + "Guest_Gauntlet-01-Golem-Steel-Ghost-R8": 402816318, + "Guest_Golem-Wood-L01": 156976035, + "Guest_HG-Clock-ClockworkSpanner-20": 1523370449, + "Guest_HG-Clock-ClockworkSpanner-40": 1523370455, + "Guest_HG-Clock-ClockworkSpanner-60": 1523370453, + "Guest_HG-Clock-ClockworkSpanner-80": 1523370459, + "Guest_HG-Clock-ClockworkSpanner-100": 1523354068, + "Guest_HG-Clock-ClockworkSpanner-120": 1523354004, + "Guest_AQ-Cyclops-Guard": 191361948, + "Guest_AQ_Cyclops_Guard_A_Boss_01": 114747100, + "Guest_CL-Cyclops-Death-R10": 611013866, + "Guest_Cyclops-Death-Boss-R7": 1192370725, + "Guest_Cyclops-Death-Boss-R9": 1192370717, + "Guest_Cyclops-Death-R7": 144593791, + "Guest_GH-Cyclops-Death-R6": 594236619, + "Guest_Cyclops-BlueHelmet-KTBoss-L03": 1720105277, + "Guest_Cyclops-Red-L12": 1816429840, + "Guest_MR_Cyclops02WHelmet_Model_01": 1483732416, + "Guest_Cyclops-Blue-L02": 1633021234, + "Guest_Cyclops-BlueHelmet-WCBoss-L03": 427378332, + "Guest_Cyclops-RedHelmet-WCBoss-L03": 2021269422, + "Guest_HG_Sinbad_Cyclops_25": 911979034, + "Guest_HG_Sinbad_Cyclops_50": 1856261606, + "Guest_HG_Sinbad_Cyclops_75": 861647386, + "Guest_HG_Sinbad_Cyclops_100": 1789152678, + "Guest_HG_Sinbad_Cyclops_130": 178539942, + "Guest_HG_Sinbad_IronSultan_25": 930031152, + "Guest_HG_Sinbad_IronSultan_50": 930051504, + "Guest_HG_Sinbad_IronSultan_75": 930030768, + "Guest_HG_Sinbad_IronSultan_100": 927954864, + "Guest_HG_Sinbad_IronSultan_130": 927942576, + "MNT_SweetRide": 1643297840, + "PP_FrilledDino": 1395342809, + "PP_Celestian": 95679303, + "PP_Sun_Angry": 1955190071, + "PP_Marshmallow": 1220667954, + "MNT_Umbrella_B": 923364822, + "MNT_Tamer": 1050737194, + "PP_BumbleBee_B": 858653433, + "MNT_PunkFlamingo": 1634690818, + "MNT_2P_WoolyRhino": 1395943031, + "PP_Retriever": 72842604, + "PP_Piggle_Caveman": 181356174, + "PP_DecennialDragon": 1396523337, + "MNT_Tiger_Rainbow": 515535412, + "MNT_CarrierGhosts": 1833039309, + "MNT_Sled": 617654308, + "Transformation_BG_RatThief_Death": 30691641, + "Transformation_BG_Elf_Storm": 44352983, + "Transformation_BG_WolfWarrior_Ice": 986304351, + "MNT_CarriorGhost_B": 1768732109, + "MNT_CarriorGhost_C": 1766634957, + "Transformation_BG_Colossus_Fire": 1318803522, + "Transformation_BG_Krok_Balance": 140952965, + "Guest_KM_Gobbler_Skinny_A_11": 773648065, + "Guest_KM_Robot_Candy_A_01": 480414124, + "Guest_KM_Robot_Candy_A_02": 530745772, + "Guest_KM_Robot_Candy_A_03": 513968556, + "Guest_KM_Robot_Candy_A_04": 430082476, + "Guest_KM_Robot_Candy_A_05": 413305260, + "Guest_KM_Gummy_Bear_A_01": 1940905059, + "Guest_KM_Gummy_Bear_D_01": 1940905011, + "Guest_KM_Gummy_Bear_E_01": 1940904995, + "Guest_KM_Gummy_Bear_A_02": 1941429347, + "Guest_KM_Gummy_Bear_D_02": 1941429299, + "Guest_KM_Gummy_Bear_E_02": 1941429283, + "Guest_KM_Gummy_Bear_B_01": 1940905043, + "Guest_KM_Gummy_Bear_B_02": 1941429331, + "Guest_KM_Gummy_Bear_B_03": 1941953619, + "Guest_KM_Gummy_BearHat_A_01": 853226448, + "Guest_KM_Gummy_BearHat_A_02": 853226460, + "Guest_KM_Gummy_Bunny_A_01": 324805042, + "Guest_KM_Gummy_Bunny_C_01": 324806066, + "Guest_KM_Gummy_Bunny_D_01": 324807602, + "Guest_KM_Gummy_Bunny_E_01": 324807090, + "Guest_KM_Gummy_Bunny_F_01": 324808626, + "Guest_KM_Gummy_BunnyUber_A_01": 525565930, + "Guest_KM_Gummy_Worm_A_01": 231044195, + "Guest_KM_Gummy_Worm_B_01": 231044179, + "Guest_KM_Gummy_Worm_C_01": 231044163, + "Guest_KM_Gummy_Worm_A_02": 232617059, + "Guest_KM_Gummy_Worm_B_02": 232617043, + "Guest_KM_Gummy_Worm_C_02": 232617027, + "Guest_KM_Gummy_Bear_F_01": 1940904979, + "Guest_KM_Gummy_Bear_F_02": 1941429267, + "Guest_KM_Gummy_Bunny_C_02": 274474418, + "Guest_KM_Robot_Candy_A_06": 463636908, + "Guest_KM_Alphoi_DarkF_A_01": 475441543, + "Guest_KM_Gobbler_Skinny_A_01": 773648069, + "Guest_KM_Gobbler_Skinny_A_02": 773648197, + "Guest_KM_Gobbler_Skinny_A_03": 773648325, + "Guest_KM_Gobbler_SkinnyF_A_01": 254411012, + "Guest_KM_Gobbler_Skinny_A_04": 773647429, + "Guest_KM_Gobbler_Skinny_A_05": 773647557, + "Guest_KM_Gobbler_Skinny_A_06": 773647685, + "Guest_KM_Gobbler_SkinnyF_A_02": 254423300, + "Guest_KM_Gobbler_Skinny_A_07": 773647813, + "Guest_KM_Gobbler_Skinny_A_08": 773646917, + "Guest_KM_Gobbler_Skinny_A_09": 773647045, + "Guest_KM_Gobbler_SkinnyF_A_03": 254419204, + "Guest_KM_Gobbler_Fat_A_01": 1440595742, + "Guest_KM_Gobbler_Fruit_B_01": 1236446660, + "Guest_KM_Gobbler_Fruit_A_01": 1235922372, + "Guest_KM_Gobbler_Guard_B_01": 1435667582, + "Guest_KM_Gobbler_Skinny_A_10": 773647937, + "Transformation_PlayerBabyCarrot": 1580787628, + "Transformation_PlayerDeadBeet": 1992261692, + "Transformation_PlayerDisparagus": 373797484, + "Transformation_PlayerSnowPeas": 634199102, + "PP_Snowflake": 2036143125, + "PP_GummyBear_Myth": 117787890, + "PP_GummyBear_Death": 236577760, + "PP_GummyBear_Balance": 2100524337, + "PP_GummyBear_Life": 118020336, + "PP_GummyBear_Fire": 117995748, + "PP_GummyBear_Storm": 247437198, + "PP_GummyBear_Ice": 122536570, + "MNT_SnowOwl": 1578473542, + "Guest_KM_Gummy_Bear_Uber_A_01": 1856208859, + "Guest_KM_Gummy_Bear_Uber_A_02": 1856196571, + "MNT_ChocolateMoose": 567538552, + "MNT_Ram_Candied": 1913603720, + "Guest_KM_Spider_Mage_A_01": 1529720120, + "Guest_KM_Spider_Mage_B_01": 1529719608, + "Guest_KM_Spider_Mage_C_01": 1529719096, + "Guest_KM_Spider_Mage_D_01": 1529718584, + "Guest_KM_Spider_Mage_E_01": 1529718072, + "PP_SpriteDark_Balance": 914900728, + "MNT_Tricycle": 991465753, + "Guest_Tri-Gauntlet-Protector-Gold": 2029952053, + "Guest_Tri-Gauntlet-FishbotGold": 130267882, + "Guest_HG-Clock-Clockworker-20": 281216243, + "Guest_HG-Clock-Clockworker-40": 281217011, + "Guest_HG-Clock-Clockworker-60": 281216755, + "Guest_HG-Clock-Clockworker-80": 281215475, + "Guest_HG-Clock-Clockworker-100": 283313523, + "Guest_HG-Clock-Clockworker-120": 283321715, + "Guest_HG-Clock-Lugs-20": 1452756928, + "Guest_HG-Clock-Lugs-40": 1452756960, + "Guest_HG-Clock-Lugs-60": 1452756992, + "Guest_HG-Clock-Lugs-80": 1452756768, + "Guest_HG-Clock-Lugs-100": 1452494736, + "Guest_HG-Clock-Lugs-120": 1452493712, + "Guest_HG-Clock-Lucia-20": 1041451626, + "Guest_HG-Clock-Lucia-40": 1041450602, + "Guest_HG-Clock-Lucia-60": 1041449578, + "Guest_HG-Clock-Lucia-80": 1041456746, + "Guest_HG-Clock-Lucia-100": 1049840746, + "Guest_HG-Clock-Lucia-120": 1049873514, + "Guest_KM_Gummy_Worm_A_03": 232092771, + "MNT_Scooter_E": 200254340, + "PP_WolfWarrior_Balance": 991302673, + "PP_PetGift": 1816280689, + "PP_RatThief": 1390866051, + "Guest_PL_Titan_Small_A": 2015819364, + "Guest_PL_Titan_Large_B": 699791264, + "Guest_PL_Titan_Medium_A": 326730424, + "PP_Draconian": 1631557208, + "MNT_Pantera_Astral": 106092538, + "PP_YearOx": 105653084, + "PP_WolfWarrior_Ice": 1043644935, + "PP_SpriteDark": 2031730054, + "PP_Brudel": 1355697143, + "MNT_Astronomers": 742732792, + "MNT_CouchPotato": 418050932, + "MNT_Flowerfarthing": 1396771051, + "MNT_Astronomers_Blue": 236532779, + "MNT_Astronomers_Rainbow": 4428274, + "PP_Astronomer": 782095961, + "Guest_KM_Gummy_Bunny_B_01": 324806578, + "Guest_KM_DeadBeets_A_01": 1396016635, + "MNT_GummyBunny": 775900704, + "MNT_GummyBunny_A": 775834080, + "MNT_GummyBunny_B": 775836128, + "MNT_GummyBunny_C": 775838176, + "Transformation_BG_Minotaur_Life": 1445109091, + "MNT_Armadillo": 825635826, + "PP_SootGremlin": 768969093, + "PP_RoadRunner": 2057802060, + "MNT_TinyTrolly": 160881792, + "PP_Frog_B": 1530124761, + "MNT_FjordDragon": 129204340, + "Transformation_BG_NinjaPig_Myth": 422914079, + "PP_CorgiPup": 1638656105, + "MNT_Skateboard": 728018224, + "PP_Krokomummy": 326396577, + "MNT_Vroom": 1736383110, + "MNT_PlayerWings_AtralRaven": 1514774167, + "PP_Blimp": 690882397, + "Guest_GH_WoodenSkeletonKey_Boar_Boss_Grey_01": 678055851, + "Guest_GH_StoneSkeletonKey_Boar_Boss_Grey_01": 571670691, + "Guest_GH_GoldSkeletonKey_Boar_Boss_Grey_01": 961728819, + "MNT_Cloud_Promo_AW_01": 2032670992, + "Guest_EM_Hornet_Burner_A_01": 1881854632, + "Guest_EM_Hornet_Burner_A_02": 1881854636, + "Guest_EM_Hornet_Zapper_A_01": 2058539689, + "Guest_EM_Hornet_Zapper_A_02": 2058539685, + "Guest_EM_Ant_Giant_D_01": 379386121, + "Guest_EM_Ant_Giant_A_02": 1768146677, + "Guest_EM_Ant_Giant_A_01": 1768097525, + "Guest_EM_Ant_Giant_B_01": 379386122, + "Guest_KR_Moth_Priest_G_Achera": 381233569, + "Guest_KR_BeeMonsterF_A": 135146211, + "Guest_KR_BeeMonsterF_A_Weak": 1824123847, + "Guest_KR_Bee_Warrior_A": 1569202664, + "Guest_KR_Bee_Warrior_B": 1569204200, + "Guest_KR_Bee_Warrior_C_BossDrones": 1217189631, + "Guest_KR_Bee_Warrior_D": 1569205224, + "Guest_KR_Bee_Warrior_E": 1569204712, + "Guest_KR_Bee_Warrior_G": 1569205736, + "Guest_KR_Bee_Warrior_G_BossFight": 1055035476, + "Guest_KR_Bee_Warrior_H": 1569207272, + "Guest_KR_Bee_Warrior_I": 1569206760, + "Guest_KR_Bee_Warrior_L": 1569209320, + "Guest_KR_Bee_Warrior_M": 1569208808, + "Guest_KR_DragonBeetle_Monster_A": 1777853782, + "Guest_KR_Hornet_Drone_A": 1161590757, + "Guest_KR_Hornet_Drone_B": 1161607141, + "Guest_KR_Hornet_Drone_C": 1161623525, + "Guest_KR_Hornet_Drone_D": 1161639909, + "Guest_KR_Hornet_Drone_E": 1161656293, + "Guest_KR_Lice_DeepSpawn_A": 761604959, + "Guest_KR_Mantis_HunterF_A": 820917199, + "Guest_KR_Mantis_HunterF_B": 871248847, + "Guest_KR_Mantis_HunterF_C": 854471631, + "Guest_KR_Mantis_HunterF_D": 904803279, + "Guest_KR_Mantis_HunterF_F": 938357711, + "Guest_KR_Mantis_HunterF_F_Driftwood": 2053608437, + "Guest_KR_Mantis_HunterF_G": 921580495, + "Guest_KR_Mantis_HunterF_H": 971912143, + "Guest_KR_Mantis_HunterF_I": 955134927, + "Guest_KR_Mantis_HunterF_I_Zuzka": 935478878, + "Guest_KR_Mantis_HunterF_J": 1005466575, + "Guest_KR_Mantis_HunterF_J_Zelda": 886910558, + "Guest_KR_Mantis_HunterF_K": 988689359, + "Guest_KR_Mantis_HunterF_K_LongShd": 1767574336, + "Guest_KR_Mantis_HunterF_L": 1039021007, + "Guest_KR_Mantis_HunterF_M": 1022243791, + "Guest_KR_Mantis_HunterF_P_Bossfight": 1731428987, + "Guest_KR_Mantis_HunterF_Q": 552481743, + "Guest_KR_Mantis_HunterF_R": 602813391, + "Guest_KR_Mantis_HunterF_S": 586036175, + "Guest_KR_Mantis_HunterF_SecondColumnCpt_A": 1354033994, + "Guest_KR_Mantis_HunterF_T": 636367823, + "Guest_KR_Mantis_HunterF_Tribute": 1946371041, + "Guest_KR_Mantis_HunterF_U": 619590607, + "Guest_KR_Mantis_HunterF_V": 669922255, + "Guest_KR_Mantis_HunterF_W": 653145039, + "Guest_KR_Mantis_HunterF_Y": 686699471, + "Guest_KR_Mantis_HunterF_Z_Officer": 206016474, + "Guest_KR_Mantis_ProphetF_B": 1791139097, + "Guest_KR_Mantis_ProphetF_C": 1254268185, + "Guest_KR_Milipede_Warrior_A": 410726278, + "Guest_KR_Milipede_Warrior_B": 410726282, + "Guest_KR_Milipede_Warrior_C": 410726286, + "Guest_KR_Milipede_Warrior_D": 410726290, + "Guest_KR_Milipede_Warrior_H": 410726306, + "Guest_KR_Milipede_Warrior_J": 410726314, + "Guest_KR_Milipede_Warrior_K": 410726318, + "Guest_KR_Moth_Priest_A": 1421532604, + "Guest_KR_Moth_Priest_B": 1421532092, + "Guest_KR_Moth_Priest_C": 1421531580, + "Guest_KR_Moth_Priest_D": 1421531068, + "Guest_KR_Moth_Priest_D_Drepa": 1483393420, + "Guest_KR_Moth_Priest_E": 1421530556, + "Guest_KR_Moth_Priest_F": 1421530044, + "Guest_KR_Mantis_HunterF_Z": 737031119, + "Guest_KR_Roach_AntLion_A": 1860517987, + "Guest_KR_Roach_AntLion_B_Bossfight": 993284625, + "Guest_KR_Roach_AntLion_C": 1861566563, + "Guest_KR_Roach_Cook_A": 259847495, + "Guest_KR_Roach_Glutton_B": 249524334, + "Guest_KR_Roach_WaterBug_A": 1795473599, + "Guest_KR_Roach_WaterBug_B": 1745141951, + "Guest_MR_Beetle_Scarab_A_01": 1789741503, + "Guest_MR_Beetle_Scarab_A_02": 1789741491, + "Guest_MR_Beetle_Scarab_B_01": 1790265791, + "Guest_ZF-Goliath-R10-Boss-01": 7034074, + "Guest_ZF-Goliath-R10-Boss-02": 7034202, + "Guest_ZF-Goliath-R10-Boss-03": 7034330, + "Guest_ZF-Goliath-R10-Boss": 1603576807, + "Guest_ZF-Goliath-R11-Boss-01": 2140449574, + "Guest_ZF-Goliath-R11-Boss-02": 2140449446, + "Guest_ZF-Goliath-R11-Boss-03": 2140449318, + "Guest_ME1_Ant_Aunt_A": 707251855, + "Guest_ME1_Ant_Aunt_B": 1440231794, + "Guest_CC_Fly_Worker_A_01": 1497784524, + "Guest_CC_Roach_Worker_A_01": 1026321602, + "Guest_CC_Roach_Lieutenant_A_01": 1081690299, + "Guest_CC_Roach_Lieutenant_B_01": 1081690295, + "Guest_CC_Roach_Don_A_01": 547836893, + "Guest_CC_Roach_BBug_A_01": 1021150157, + "Guest_CC_Roach_RoachSteady_A_01": 859409247, + "Guest_Draconian-Caster-Yellow-Boss-R8": 1016221419, + "Guest_Draconian-Zombie-R8-2-1": 1226055265, + "Guest_Draconian-Zombie-R8-2": 1226115297, + "Guest_Draconian-Caster-Green-R7": 2143342719, + "Guest_Draconian-Warrior-Gold-Boss-R8": 1044388248, + "Guest_Draconian-Caster-Gray-R7": 95878769, + "Guest_DS-Boss-MAW": 1676071241, + "Guest_Draconian-Zombie-R8-1": 1226115309, + "Guest_Draconian-Warrior-Purple-Boss-R7": 601813964, + "Guest_Draconian-Caster-Tan-Boss-R7": 1973339532, + "Guest_Draconian-Caster-Blue-R6": 1684210173, + "Guest_Draconian-Caster-Yellow-R8": 2129956646, + "Guest_Draconian-Warrior-Red-R7": 521861944, + "Guest_Draconian-Warrior-Tan-R6": 1726416112, + "Guest_Draconian-Warrior-Purple-R8": 1896270341, + "Guest_Draconian-Caster-Blue-Boss-R7": 401581134, + "Guest_Draconian-Zombie-R8": 384497496, + "Guest_GH2-Draconian-HENCH-R10": 1149202878, + "Guest_GH2-Draconian-BOSS-R10": 2114378473, + "Guest_G14-DM-Draconian_Boss": 490246211, + "Guest_G14-DM-Draconian_Storm": 2035239226, + "Guest_G14-DM-Draconian_Ice": 782200563, + "Guest_G14-DM-Draconian_Malistaire_M": 1904691727, + "Guest_G14-DM-Draconian_Malistaire_S": 1904685583, + "Guest_G14-DM-Draconian_Malistaire_D": 1904700943, + "Guest_G14-DM-Draconian_Malistaire": 1904736751, + "Guest_G14-DM-Draconian_Malistaire_B": 1904702991, + "Guest_G14-DM-Draconian_Malistaire_I": 1904695823, + "Guest_G14-DM-Draconian_Malistaire_L": 1904692751, + "Guest_G14-DM-Draconian_Malistaire_F": 1904698895, + "Guest_Draconian-PW-Gauntlet-Boss": 493080513, + "Guest_CC_Draconian_A_01": 551348115, + "Guest_AZ-Parasaur-Undead-E": 2041242846, + "Guest_AZ-Parasaur-drkPriestF-F": 898239615, + "Guest_EM_Parasaur_DrkPriestF_A_01": 1007099606, + "Guest_EM_Parasaur_DrkPriestF_A_02": 1007099605, + "Guest_AZ-Parasaur-drkPriestF-D": 898501759, + "Guest_AZ-Parasaur-drkPriestF-E": 898370687, + "Guest_AZ-Parasaur-drkPriestF-A": 897846399, + "Guest_AZ-Parasaur-Undead-B": 1716853538, + "Guest_AZ-Parasaur-Undead-A": 106240802, + "Guest_AZ-Parasaur-Undead-G": 967501022, + "Guest_AZ-Parasaur-PriestF-D": 1177445525, + "Guest_AZ-Parasaur-Undead-C": 1179982626, + "Guest_AZ-Parasaur-drkPriestF-C": 897584255, + "Guest_AZ-Parasaur-Undead-SkurkisMinion": 1414766977, + "Guest_AZ-Parasaur-drkPriestF-B": 897715327, + "Guest_AZ-Parasaur-drkPriestF-B-Script": 1414847875, + "Guest_AZ_Parasaur_Priest_A_Boss_01": 890025421, + "Guest_AZ-Parasaur-Undead-D": 1504371934, + "Guest_AZ-Pteranodon-Knight-D": 1127364049, + "Guest_AZ-StoneSkeletonKey-Ixcax-Cursedwing": 699239601, + "Guest_AZ-Pteranodon-Knight-E": 1127363921, + "Guest_AZ-Pteranodon-Knight-F": 1127363793, + "Guest_AZ-Pteranodon-Knight-A-PageEvent": 942589002, + "Guest_AZ-StoneSkeletonKey-Minion-Death": 311645584, + "Guest_AZ-Pteranodon-Knight-A": 1127364433, + "Guest_AZ-Raptor-Wraith-A": 585729247, + "Guest_AZ-Raptor-Undead-D": 893623689, + "Guest_G14-HS-Ifzt": 1914694612, + "Guest_AZ-Raptor-Warrior-A": 855749884, + "Guest_AZ-Raptor-Undead-C": 897293705, + "Guest_AZ-Raptor-Undead-B": 896769417, + "Guest_AZ-Raptor-Undead-F": 894672265, + "Guest_AZ-Raptor-Warrior-F": 872527100, + "Guest_AZ-Raptor-Warrior-H": 973190396, + "Guest_AZ-Tritops-Warrior-I": 1942669769, + "Guest_AZ-Tritops-Undead-H": 1215305911, + "Guest_AZ-Tritops-Undead-E": 1164974263, + "Guest_AZ-Tritops-SpkWarrior-A": 860850257, + "Guest_AZ-Tritops-SpkWarrior-B": 860862545, + "Guest_AZ-Tritops-Undead-F": 1181751479, + "Guest_AZ-Tritops-Warrior-K": 868927945, + "Guest_AZ-Tritops-Undead-G": 1198528695, + "Guest_AZ-Tritops-Mummy-A": 1912444877, + "Guest_AZ-Tritops-Warrior-G": 1278555704, + "Guest_AZ-Tritops-Undead-D": 1148197047, + "Guest_AZ-Tritops-Undead-A": 1097865399, + "Guest_AZ-Tritops-SpkChief-B": 2096319577, + "Guest_AZ-Tritops-Mummy-B": 1910872013, + "Guest_AZ-Tritops-Warrior-H": 1405798857, + "Guest_AZ-Dino-Undead-A": 508678670, + "Guest_AZ-Dino-Undead-B": 508679182, + "Guest_AZ-Dino-Undead-D": 508680206, + "Guest_KR_Dino_Undead_A": 1638800628, + "Guest_KR_Dino_Undead_Minion_A": 892450235, + "MNT_HayRideTruck": 75377404, + "MNT_ShadowSpiderForm": 1439860426, + "Transformation_BG_Draconian_Death": 794598804, + "PP_BabyOrca": 1056061090, + "Transformation_BG_Cyclops_Fire": 638854828, + "Transformation_BG_Fairy_Ice": 874078461, + "PP_SpriteLife": 1824998010, + "PP_Raccoon": 1107326808, + "PP_FireKitten": 593048189, + "MNT_SkeletalDuck": 1306273036, + "PP_VampireSquid": 431023109, + "PP_CottonCandy": 891201813, + "PP_ThreeHeadGoat": 1282096939, + "PP_EyeBot": 260189248, + "MNT_DeathBoat": 1444454568, + "MNT_Lemuria": 908974762, + "MNT_DeathBoat_B": 1444456538, + "MNT_DeathBoat_C": 1444456474, + "MNT_Spooky3": 1667775622, + "MNT_PresentBox": 122082000, + "MNT_Orca": 1726961653, + "Guest_LM_Golem_Steel_A_01": 19551853, + "Guest_LM_Golem_Steel_A_02": 36329069, + "Guest_LM_EyeBot_A_01_Death": 380508535, + "Guest_LM_EyeBot_A_01_Myth": 167840640, + "PP_ThreeHeadGoat_B": 1209286443, + "PP_ThreeHeadGoat_C": 1211383595, + "Guest_KR_Eel_Whirligig_A": 1062268734, + "Guest_KR_Goliath_Behemoth_A": 1231139987, + "Guest_KR_Goliath_Behemoth_C": 1231139995, + "Guest_KR_Goliath_Behemoth_D": 1231139975, + "Guest_KR_Goliath_Behemoth_E": 1231139971, + "Guest_KR_Goliath_Behemoth_H": 1231140023, + "Guest_KR_Goliath_Crusher_C": 1651720060, + "Guest_KR_Goliath_Crusher_D": 2106376324, + "Guest_KR_Goliath_Crusher_F": 1032634500, + "Guest_KR_Goliath_Crusher_G": 495763588, + "Guest_KR_Goliath_Crusher_K": 1651720059, + "Guest_AZ-Goliath-Crusher-A": 1874784966, + "Guest_AZ-Goliath-Crusher-B": 264172230, + "Guest_AZ-Goliath-Crusher-C": 801043142, + "Guest_AZ-Goliath-Crusher-D": 809569594, + "Guest_AZ-Goliath-Crusher-E": 272698682, + "Guest_HG_AKT_Butterfly_Time_A_25": 1788523059, + "Guest_HG_AKT_Butterfly_Time_A_50": 1130017331, + "Guest_HG_AKT_Butterfly_Time_A_75": 1809494579, + "Guest_HG_AKT_Butterfly_Time_A_100": 1113240099, + "Guest_HG_AKT_Butterfly_Time_A_130": 1515893283, + "MNT_DeathBoat_D": 1444456922, + "Guest_KR_RhinoBeetle_Sun_A_Bossfight": 47895417, + "Guest_KR_RhinoBeetle_Star_A": 1947510103, + "Guest_KR_RhinoBeetle_Moon_A": 1751275863, + "Guest_ME1_Clockwork_Marine_A": 1481452452, + "Guest_ME1_Clockwork_Marine_B": 1481452068, + "Guest_CC_GoldSkeletonKey_Lice_DeepSpawn_B": 1306132994, + "Guest_KR_DamdinBazar_A_Bossfight": 1333596311, + "Guest_DS-Minion-MAW2": 356796677, + "Guest_KH-Wyrmling-1": 116330513, + "Guest_KH-Wyrmling-20": 183439385, + "Guest_KH-Wyrmling-40": 317657113, + "Guest_KH-Wyrmling-60": 451874841, + "Guest_KH-Wyrmling-80": 586092569, + "Guest_PL_Polar_Bear_Solider_C": 1785662565, + "Guest_Skeleton-Silver-WCBoss-L01": 17766963, + "Guest_Banshee-Red-Elite-L24_B": 1902069117, + "Transformation_BG_WolfWarrior_Myth": 339098032, + "Transformation_BG_RatThief_Balance": 881728218, + "Transformation_BG_Colossus_Storm": 593527492, + "Transformation_BG_Elf_Life": 347405087, + "Transformation_BG_Minotaur_Ice": 1197752291, + "MNT_TRex_B": 660285500, + "PP_SpriteDark_Ice": 2036248504, + "MNT_RollingBall": 1658139390, + "Guest_LM_TRex_Base_A_03": 1378630657, + "Guest_LM_TRex_Base_A_04": 1378745345, + "Guest_LM_TRex_Base_A_05": 1378728961, + "Guest_LM_TRex_Base_A_01": 1378663425, + "Guest_LM_TRex_Base_A_02": 1378647041, + "Guest_LM_TRex_Cyborg_A_01": 151609741, + "Guest_LM_TRex_Cyborg_A_02": 168386957, + "Guest_LM_TRex_Cyborg_A_03": 185164173, + "Guest_LM_TRex_Cyborg_B_01": 151611277, + "Guest_LM_TRex_Cyborg_D_01": 151612301, + "Guest_LM_TRex_Cyborg_E_01": 151611789, + "Guest_LM_TRex_Cyborg_C_01": 151610765, + "Guest_LM_Draconian_Base_A_01": 1607373112, + "Guest_LM_EyeBot_B_01": 1085543056, + "Guest_LM_Drone_Eye_C_01": 916954037, + "Guest_LM_Drone_Eye_D_01": 1230529608, + "Guest_LM_Drone_Eye_D_02": 1230545992, + "Guest_LM_Drone_Eye_D_04": 1230578760, + "Guest_LM_Drone_Eye_D_03": 1230562376, + "Guest_LM_Drone_Eye_A_01": 916954038, + "Guest_LM_Drone_Eye_A_02": 916937654, + "Guest_LM_Drone_Eye_B_01": 1230529611, + "Guest_LM_Drone_Eye_D_05": 1230595144, + "Guest_LM_Drone_Eye_D_07": 1230627912, + "Guest_LM_Drone_Eye_D_08": 1230644296, + "Guest_LM_Drone_Eye_A_03": 916921270, + "Guest_LM_Drone_Eye_A_04": 916904886, + "Guest_LM_Drone_Eye_C_02": 916937653, + "Guest_LM_EyeBot_B_02": 1061940593, + "Guest_LM_EyeBot_B_03": 1085543055, + "Guest_LM_EyeBot_B_04": 1061940594, + "Guest_LM_Drone_Eye_C_03": 916921269, + "Guest_LM_Robot_Kit10_A_01": 199936400, + "Guest_LM_Colossus_Mander_A_01": 2107529026, + "Guest_LM_Robot_Future_A_01": 998840846, + "Guest_LM_Robot_FutureBIG_A_01": 340408568, + "Guest_LM_Robot_FutureBIG_A_02": 340396280, + "Guest_LM_Robot_FutureBIG_A_03": 340400376, + "Guest_LM_Robot_OldOne_A_01": 779070973, + "Guest_LM_Robot_OldOne_A_02": 1315941885, + "Guest_LM_Millipede_Centi_A_01": 168575797, + "Guest_LM_Millipede_Centi_A_03": 168583989, + "Guest_LM_Millipede_Centi_A_02": 168588085, + "Guest_LM_Millipede_Centi_A_04": 168563509, + "Guest_LM_Moth_Sorcerer_A_01": 228191136, + "Guest_LM_Boar_Barbarian_A_01": 1238634912, + "Guest_LM_Boar_Barbarian_A_02": 1238634528, + "Guest_LM_Boar_Barbarian_A_03": 1238634656, + "Guest_LM_Boar_Barbarian_A_04": 1238635296, + "Guest_LM_Boar_Barbarian_A_05": 1238635424, + "Guest_LM_Boar_Chief_A_01": 357051311, + "Guest_LM_Fungus_Humango_A_01": 1398460044, + "Guest_LM_Fungus_Humango_A_02": 1398460172, + "Guest_LM_Treant_Base_A_01": 1658172241, + "Guest_LM_GiantTree_EvilRoots_A_01": 282225934, + "Guest_LM_PA_GreenMan_A_01": 67705044, + "Guest_LM_Fungus_Humango_B_01": 1348128396, + "Guest_LM_Fungus_Humango_A_03": 1398460300, + "Guest_LM_Fungus_Man_C_01": 1648824156, + "Guest_LM_Fungus_Man_C_02": 1650397020, + "Guest_LM_Rhino_Zombie_A_01": 248513993, + "Guest_LM_Malughast_Base_01": 883820436, + "Guest_LM_Malughast_Base_02": 1420691348, + "Guest_LM_Lemur_HierarchF_H_04": 231562115, + "Guest_LM_Malughast_Base_03": 1957562260, + "Guest_LM_Malughast_Base_05": 1263663212, + "Guest_LM_Malughast_Base_06": 726792300, + "Guest_LM_Malughast_Base_08": 346949523, + "Guest_LM_Malughast_Base_09": 883820435, + "Guest_LM_Malughast_Base_04": 1800534124, + "Guest_LM_Minotaur_Skeleton_A_01": 1865122824, + "Guest_LM_Lemur_Wild_B_03": 1783764037, + "Guest_LM_Lemur_HierarchF_H_01": 231541635, + "Guest_LM_Lemur_HierarchF_H_02": 231553923, + "Guest_LM_Mander_Warrior_A_01": 1651245419, + "Guest_LM_Mander_Warrior_A_02": 1651245291, + "Guest_LM_Mander_Warrior_B_01": 1634468203, + "Guest_LM_Mander_Warrior_B_02": 1634468075, + "Guest_LM_Mander_Warrior_A_03": 1651245163, + "Guest_LM_Mander_Warrior_B_03": 1634467947, + "Guest_LM_Mander_Warrior_A_06": 1651245803, + "Guest_LM_Mander_Warrior_A_05": 1651245931, + "Guest_LM_Mander_Mummy_B_01": 1844111521, + "Guest_LM_Mander_Hero_B_01": 865113284, + "MNT_HolidayHippogriff": 938892112, + "MNT_Sabertooth_Ice": 1870381696, + "PP_FenrisWolf_Bantam": 776647759, + "MNT_JetPack": 1986300552, + "MNT_Scooter_F": 1005560708, + "PP_FossaKitten_A": 431748212, + "PP_Elfvis": 147991405, + "Guest_LM_Chicken_Hero_A_01": 1308728300, + "Guest_LM_Horse_Explorer_A_01": 434405482, + "Guest_LM_Duck_HeroineF_A_01": 133199186, + "Guest_LM_Crane_Hero_A_01": 204272548, + "Guest_LM_Deer_HeroineF_A_01": 1800374959, + "Guest_LM_Deer_Hero_A_01": 223109503, + "Guest_LM_Dog_Hero_A_01": 1434615064, + "PP_YearTiger": 777048708, + "MNT_Barrel": 3576425, + "MNT_Krampus": 404117611, + "PP_ChineseTigerCub": 1256032005, + "PP_Lemur": 565774155, + "PP_Robot": 1089075331, + "PP_Capybara": 451970762, + "Guest_LM_Ghoul_Base_A_01": 1822415945, + "Guest_LM_Lemur_HierarchF_H_03": 231549827, + "Guest_LM_Ghoul_Base_A_02": 1820843081, + "Guest_LM_Ghoul_Base_A_03": 1821367369, + "MNT_SpringSoF2022": 1685679511, + "MNT_WarElephant": 875015497, + "PP_Strix": 514230046, + "MNT_Beachball": 791896033, + "MNT_Blank": 633398131, + "MNT_CardboardFlier": 1646636689, + "MNT_LochMonster": 879660722, + "Transformation_BG_Krok_Death": 1395067182, + "Transformation_BG_Draconian_Fire": 1551581732, + "PP_Scotty": 1708580475, + "Guest_KR_Mice_Knight_A": 480101508, + "PP_Peacock": 1178721112, + "MNT_PoodleMoth": 975420235, + "PP_Hummingbird": 624666906, + "PP_WolfWarrior_Myth": 470737416, + "Guest_HG_UFD_Ghost_QueenF_A_100": 795323059, + "Guest_HG_UFD_Ghost_QueenF_A_50": 728230579, + "Guest_HG_UFD_Pirate_UndeadHighland_A_Balance_150": 201145133, + "Guest_HG_UFD_Pirate_UndeadHighland_A_Balance_100": 201144941, + "Guest_HG_UFD_Pirate_UndeadHighland_A_Balance_50": 201177701, + "Guest_HG_UFD_Pirate_UndeadHighland_A_Star_150": 1329885920, + "Guest_HG_UFD_Pirate_UndeadHighland_A_Star_100": 1304720096, + "Guest_HG_UFD_Pirate_UndeadHighland_A_Star_50": 1305768671, + "Guest_HG_UFD_Pirate_UndeadHighland_A_Shadow_150": 1263689971, + "Guest_HG_UFD_Pirate_UndeadHighland_A_Shadow_100": 1263689977, + "Guest_HG_UFD_Pirate_UndeadHighland_A_Shadow_50": 189949177, + "Guest_HG_UFD_Kelpie_Warrior_A_150": 54296095, + "Guest_HG_UFD_Kelpie_Warrior_A_100": 725384735, + "Guest_HG_UFD_Kelpie_Warrior_A_50": 708607503, + "Guest_HG_UFD_Pirate_UndeadHighland_B_150": 1099317831, + "Guest_HG_UFD_Pirate_UndeadHighland_B_100": 25576008, + "Guest_HG_UFD_Pirate_UndeadHighland_B_50": 159793864, + "Guest_HG_UFD_Ghost_QueenF_A_150": 795716275, + "PP_SpiderMinion": 557357331, + "MNT_Vines_Rainbow": 1587180338, + "MNT_YoungDrake": 1279496198, + "PP_Pet_Coconut": 444388490, + "DragonKI": 1490194214, + "PP_Sharkfish": 601628284, + "PP_MimicCake": 48071878, + "Guest_AQ-Bronze-Eagle": 375279744, + "Guest_Spider-Brown-L26": 2128680185, + "Guest_KR_Spider_Giant_D": 744401035, + "Guest_Wizard-Female-Band-Blue-R8": 1447486557, + "Guest_CC_Human_DSCrusaderF_A_01": 726538068, + "Guest_WC_Scarecrow_A_01": 867491011, + "Guest_WC_Banshee_A_01": 1433786463, + "Guest_WC_LostSoul_A_01": 796936146, + "PP_Fairy_Myth": 1117624344, + "PP_SpriteDark_Myth": 1884257976, + "BG_CyclopsLife_A": 944091673, + "Transformation_BG_NinjaPig_Storm": 2005137181, + "Transformation_BG_Fairy_Myth": 1880704188, + "Transformation_BG_Cyclops_Life": 638936708, + "Guest_AQ-Eagle-Praetorian": 1988013806, + "Guest_KM_BabyCarrot_A_01": 766239512, + "Guest_G14-DM-Gargoyle": 282898047, + "Guest_MR_Durvish_Sergeant_A_Boss_01": 1532609325, + "Guest_Cyclops-RedHelmet-KTBoss-L28": 2072371506, + "Guest_EM_Pig_Singer_A_01": 698597069, + "Guest_EM_Pig_Captain_A": 977505995, + "Guest_EM_Pig_Crewman_A": 465576459, + "PP_ChipmunkConductor": 1089819900, + "PP_LuckyCat": 1109326826, + "MNT_ImpCar": 1736092191, + "MNT_Book": 1547655078, + "MNT_JackoLantern": 649919658, + "MNT_Zheng": 742453108, + "MNT_Train": 413197899, + "MNT_Cerberus": 552686313, + "PP_Coconut": 1122741587, + "Transformation_Statue": 1153168084, + "Transformation_Nullity": 622504394, + "PP_Irk": 1825277392, + "Guest_Wyrmling-Fire-R8-1": 531485009, + "MNT_WolfLowPoly_A": 1947890962, + "MNT_WolfLowPoly_B": 1947825426, + "Transformation_BG_RatThief_Fire": 1169330235, + "Transformation_BG_WolfWarrior_Death": 159966683, + "Transformation_BG_Minotaur_Balance": 657855108, + "Transformation_BG_Draconian_Ice": 1907339814, + "Transformation_BG_Colossus_Myth": 1305894338, + "Transformation_NV_Penguin": 1757096851, + "Transformation_NV_Unicorn": 60447768, + "Transformation_NV_Monkey": 1379873688, + "Transformation_NV_Dog": 1961288968, + "PP_Wolf_Storm": 455227171, + "PP_WoodDuck": 1680912895, + "MNT_RockingHorse": 1205280059, + "MNT_SOF2022_Car": 219868812, + "PP_Buffaloon": 796152873, + "MNT_Steamboat": 1969530127, + "MNT_FelizNavidog": 847046394, + "PP_Mustache": 1571079379, + "Guest_DD-DS01-Skeleton-Pirate-20": 226826848, + "Guest_DD-DS01-Skeleton-Pirate-40": 201661024, + "Guest_DD-DS01-Skeleton-Pirate-60": 210049632, + "Guest_DD-DS01-Skeleton-Pirate-80": 251992672, + "Guest_DD-DS01-Skeleton-Pirate": 1994450336, + "Guest_DD-DS01-Shadow-Minion-Fire": 1074864956, + "Guest_DD-DS01-Shadow-Minion-Ice": 1841681214, + "Guest_DD-DS01-Shadow-Minion-Fire-20": 1074880881, + "Guest_DD-DS01-Shadow-Minion-Fire-40": 1074880945, + "Guest_DD-DS01-Shadow-Minion-Ice-20": 96850220, + "Guest_DD-DS01-Shadow-Minion-Ice-40": 96850218, + "Guest_DD-DS01-Shadow-Minion-Fire-60": 1074881009, + "Guest_DD-DS01-Shadow-Minion-Ice-60": 96850216, + "Guest_DD-DS01-Shadow-Minion-Fire-80": 1074880561, + "Guest_DD-DS01-Shadow-Minion-Ice-80": 96850214, + "Guest_SC-SpectreOfB-1": 1471950935, + "Guest_SC-SpectreOfB-20": 1471942759, + "Guest_SC-SpectreOfB-40": 1471942663, + "Guest_SC-SpectreOfB-60": 1471942695, + "Guest_SC-SpectreOfB-80": 1471942855, + "Guest_KH-Skeleton-Ice-60": 2108358962, + "Guest_KH-Skeleton-Ice-40": 2108391730, + "Guest_KH-Skeleton-Ice-20": 2108293426, + "Guest_KH-Skeleton-Ice-1": 2099953970, + "Guest_KH-Skeleton-Ice-80": 2108195122, + "Guest_KH-Undead-Caster-60": 1662604496, + "Guest_KH-Undead-Caster-40": 1661555920, + "Guest_KH-Undead-Caster-20": 1664701648, + "Guest_KH-Undead-Caster-1": 1931564240, + "Guest_KH-Undead-Caster-80": 1667847376, + "Guest_DD-PA01-DeadBeets": 1664999367, + "Guest_DD-PA01-DeadBeets-20": 1901453253, + "Guest_DD-PA01-DeadBeets-40": 2002116549, + "Guest_DD-PA01-DeadBeets-60": 1968562117, + "Guest_DD-PA01-DeadBeets-80": 2069225413, + "Guest_DD-PA01-Disparagus": 1865816461, + "Guest_DD-PA01-Disparagus-20": 573970895, + "Guest_DD-PA01-Disparagus-40": 499770929, + "Guest_DD-PA01-Disparagus-60": 1573512753, + "Guest_DD-PA01-Disparagus-80": 1647712718, + "Guest_DD-PA01-MeanestFlyTrap": 2001546861, + "Guest_DD-PA01-MeanestFlyTrap-20": 1936326253, + "Guest_DD-PA01-MeanestFlyTrap-40": 1936064109, + "Guest_DD-PA01-MeanestFlyTrap-60": 1935801965, + "Guest_DD-PA01-MeanestFlyTrap-80": 1937636973, + "Guest_HG-MD-MacDeath-20": 182639104, + "Guest_HG-MD-MacDeath-40": 182638080, + "Guest_HG-MD-MacDeath-60": 182637056, + "Guest_HG-MD-MacDeath-80": 182636032, + "Guest_HG-MD-MacDeath-100": 174252032, + "Guest_HG-MD-MacDeath-130": 174202880, + "Guest_HG_Sinbad_Skeleton_25": 494617874, + "Guest_HG_Sinbad_Skeleton_50": 42253050, + "Guest_HG_Sinbad_Skeleton_75": 1115994862, + "Guest_HG_Sinbad_Skeleton_100": 2105232646, + "Guest_HG_Sinbad_Skeleton_130": 2105232650, + "Guest_HG_Sinbad_Skeleton_25_02": 492722834, + "Guest_HG_Sinbad_Skeleton_50_02": 44148090, + "Guest_HG_Sinbad_Skeleton_75_02": 1117889902, + "Guest_HG_Sinbad_Skeleton_100_02": 2044247302, + "Guest_HG_Sinbad_Skeleton_130_02": 2044247306, + "Guest_DD-AV01-WyrmBoss": 1648677986, + "Guest_DD-AV01-WyrmBoss-20": 1926730850, + "Guest_DD-AV01-WyrmBoss-40": 1927779426, + "Guest_DD-AV01-WyrmBoss-60": 1928828002, + "Guest_DD-AV01-WyrmBoss-80": 1921487970, + "Guest_RH-Wyrm-Boss-01": 1027277645, + "Guest_RH-Wyrm-Boss-20": 1027277660, + "Guest_RH-Wyrm-Boss-40": 1027277663, + "Guest_RH-Wyrm-Boss-60": 1027277662, + "Guest_RH-Wyrm-Boss-80": 1027277657, + "Guest_HG_Sinbad_Wyrm_25": 1101443356, + "Guest_HG_Sinbad_Wyrm_50": 1101528860, + "Guest_HG_Sinbad_Wyrm_75": 1101445916, + "Guest_HG_Sinbad_Wyrm_100": 1093138204, + "Guest_HG_Sinbad_Wyrm_130": 1093089052, + "Guest_KH-Treant-1": 2001244331, + "Guest_KH-Treant-60": 1968148651, + "Guest_KH-Treant-40": 1968017579, + "Guest_KH-Treant-20": 1967886507, + "Guest_KH-Treant-80": 1967231147, + "Guest_DD-PA01-ForestGrump": 1969685870, + "Guest_DD-PA01-ForestGrump-20": 714666713, + "Guest_DD-PA01-ForestGrump-40": 714666689, + "Guest_DD-PA01-ForestGrump-60": 714666697, + "Guest_DD-PA01-ForestGrump-80": 714666737, + "Guest_DD-PA01-ForestNymphs": 227087348, + "Guest_DD-PA01-ForestNymphs-20": 227023552, + "Guest_DD-PA01-ForestNymphs-60": 227023040, + "Guest_DD-PA01-ForestNymphs-80": 227024832, + "Guest_SC-Pig-BalanceWizardA-1": 475456968, + "Guest_SC-Pig-BalanceWizardA-20": 477550024, + "Guest_SC-Pig-BalanceWizardA-40": 477541832, + "Guest_SC-Pig-BalanceWizardA-60": 477533640, + "Guest_SC-Pig-BalanceWizardA-80": 477525448, + "Guest_SC-Pig-BalanceWizardB-1": 475456964, + "Guest_SC-Pig-BalanceWizardB-20": 477550020, + "Guest_SC-Pig-BalanceWizardB-40": 477541828, + "Guest_SC-Pig-BalanceWizardB-60": 477533636, + "Guest_SC-Pig-BalanceWizardB-80": 477525444, + "Guest_SC-Pig-BalanceWizardC-1": 475456960, + "Guest_SC-Pig-BalanceWizardC-20": 477550016, + "Guest_SC-Pig-FireWizard-1": 2048176291, + "Guest_SC-Pig-FireWizard-20": 2031399073, + "Guest_SC-Pig-FireWizard-40": 2132062369, + "Guest_SC-Pig-FireWizard-60": 2098507937, + "Guest_SC-Pig-FireWizard-80": 1930735777, + "Guest_SC-Pig-IceWizardF-1": 1178687744, + "Guest_SC-Pig-IceWizardF-20": 1161910526, + "Guest_SC-Pig-IceWizardF-40": 1128356094, + "Guest_SC-Pig-IceWizardF-60": 1094801662, + "Guest_SC-Pig-IceWizardF-80": 1329682686, + "Guest_SC-Pig-MythWizard-1": 2048492725, + "Guest_SC-Pig-MythWizard-20": 2031715511, + "Guest_SC-Pig-MythWizard-40": 2132378807, + "Guest_SC-Pig-MythWizard-60": 2098824375, + "Guest_SC-Pig-MythWizard-80": 1931052215, + "Guest_SC-Pig-StormWizardF-1": 1743849420, + "Guest_SC-Pig-StormWizardF-20": 1743851464, + "Guest_SC-Pig-StormWizardF-40": 1743851488, + "Guest_SC-Pig-StormWizardF-60": 1743851480, + "Guest_SC-Pig-StormWizardF-80": 1743851504, + "Guest_KH-Pig-Bandit-Lord-1": 1080496628, + "Guest_KH-Pig-Bandit-Lord-20": 543625652, + "Guest_KH-Pig-Bandit-Lord-40": 530116172, + "Guest_KH-Pig-Bandit-Lord-60": 1603857996, + "Guest_KH-Pig-Bandit-Lord-80": 1617367475, + "Guest_KH-Pig-Bandit-Ninja-1": 1945100907, + "Guest_KH-Pig-Bandit-Ninja-20": 1945102951, + "Guest_KH-Pig-Bandit-Ninja-40": 1945102975, + "Guest_KH-Pig-Bandit-Ninja-60": 1945102967, + "Guest_KH-Pig-Bandit-Ninja-80": 1945102927, + "Guest_KH-Pig-War-Caster-1": 656859765, + "Guest_KH-Pig-War-Caster-20": 606528119, + "Guest_KH-Pig-War-Caster-40": 572973687, + "Guest_KH-Pig-War-Caster-60": 539419255, + "Guest_KH-Pig-War-Caster-80": 774300279, + "Guest_KH-Pig-War-Warrior-Boss-1": 16342355, + "Guest_KH-Pig-War-Warrior-Boss-20": 2143724205, + "Guest_KH-Pig-War-Warrior-Boss-40": 2118558381, + "Guest_KH-Pig-War-Warrior-Boss-60": 2126946989, + "Guest_KH-Pig-War-Warrior-Boss-80": 2101781165, + "Guest_SC-Pig-BalanceWizardC-40": 477541824, + "Guest_SC-Pig-BalanceWizardC-60": 477533632, + "Guest_SC-Pig-BalanceWizardC-80": 477525440, + "Guest_KH-Helephant-Death-20": 1109389719, + "Guest_KH-Helephant-Death-40": 2111835753, + "Guest_KH-Helephant-Death-60": 1038093929, + "Guest_KH-Helephant-Death-80": 35647896, + "Guest_KH-GreyOgre-Spider-1": 356368404, + "Guest_KH-GreyOgre-Spider-20": 1966981204, + "Guest_KH-GreyOgre-Spider-40": 1254244268, + "Guest_KH-GreyOgre-Spider-60": 180502444, + "Guest_KH-GreyOgre-Spider-80": 893239379, + "Guest_HG_Sinbad_Colossus_25": 1190802829, + "Guest_HG_Sinbad_Colossus_50": 1493551719, + "Guest_HG_Sinbad_Colossus_75": 419809907, + "Guest_HG_Sinbad_Colossus_100": 653933977, + "Guest_HG_Sinbad_Colossus_130": 653933973, + "Guest_NV_Dino_AberrantUndead_A_01": 2035087398, + "Guest_NV_Hellephant_Aberrant_A_01": 989522333, + "Guest_NV_Hellephant_Aberrant_A_02": 989522334, + "Guest_NV_BananaSpider_Base_A_01": 1585810541, + "Guest_NV_BananaSpider_Base_A_02": 1581616237, + "Guest_NV_BananaSpider_Base_A_03": 1577421933, + "Guest_NV_BananaSpider_Base_A_04": 1606782061, + "Guest_NV_BananaSpider_Base_A_05": 1602587757, + "Guest_NV_Wyrm_Aberrant_A_01": 16108415, + "Guest_NV_Monkey_Zombie_A_01": 1854775300, + "Guest_NV_Monkey_Zombie_A_02": 1854775304, + "Guest_NV_Monkey_Zombie_A_03": 1854775308, + "Guest_NV_Monkey_Zombie_A_04": 1854775312, + "MNT_Flag_Monster": 867940056, + "Guest_SKB_WY_DarkBramble_A_30": 2046798767, + "Guest_SKB_WY_DarkBramble_A_50": 2046797999, + "Guest_SKB_WY_DarkBramble_A_100": 2044701359, + "Guest_SKB_WY_DarkBramble_A_150": 2044721839, + "Guest_SKB_GH_Boar_A_30": 1547921275, + "Guest_SKB_WC_SpiritIgnorance_A_50": 1488876986, + "Guest_SKB_WC_SpiritIgnorance_A_100": 2025748410, + "Guest_SKB_WC_SpiritIgnorance_A_150": 2025748413, + "Guest_SKB_DS_Loremaster_A_50": 527751539, + "Guest_SKB_DS_Loremaster_A_100": 527817059, + "Guest_SKB_DS_Loremaster_A_150": 527817699, + "Guest_SKB_CL_Dan_A_50": 637418706, + "Guest_SKB_CL_Dan_A_60": 1510064941, + "Guest_SKB_CL_Dan_A_100": 637410512, + "Guest_SKB_CL_Dan_A_150": 637410432, + "Guest_SKB_AV_Spectre_A_50": 2104631195, + "Guest_SKB_AV_Spectre_A_100": 2102534041, + "Guest_SKB_AV_Spectre_A_150": 2018647961, + "Guest_SKB_MS_Samoorai_A_50": 2029641915, + "Guest_SKB_MS_Samoorai_A_100": 2096750843, + "Guest_SKB_MS_Samoorai_A_150": 587603717, + "Transformation_BG_Krok_StromTemplate": 1317694546, + "PP_ChineseRabbit": 382941643, + "PP_ParadeElf": 1036247808, + "MNT_HeartSwarm": 918199310, + "MNT_SpringSOF2023": 1417178519, + "Transformation_BG_Elf_Death2Template": 1606653101, + "MNT_GummyBunny_D": 775840224, + "Transformation_BG_Krok_Life2Template": 747486212, + "PP_Flame": 959186933, + "PP_YachtRock": 1500927358, + "PP_PirateYachtRock": 1227549100, + "PP_ChickenMonster": 1845706534, + "PP_SnowHoppers_B": 1496460038, + "PP_SnowHoppers_C": 1496457990, + "MNT_Oarfish": 29720265, + "PP_RingTailedCat": 993143427, + "MNT_Fanboat": 19347694, + "MNT_MiniSub": 298697910, + "PP_DumboOctopus": 966435639, + "PP_Glowbug_Balance": 1405529577, + "PP_Glowbug_Death": 405117107, + "PP_Glowbug_Fire": 651698987, + "PP_Glowbug_Ice": 2124926395, + "PP_Glowbug_Life": 601367299, + "PP_Glowbug_Myth": 592978024, + "PP_Glowbug_Storm": 61190446, + "PP_DumboOctopus_B": 968448823, + "PP_DumboOctopus_C": 968383287, + "PP_BananaSpider_01": 1074383522, + "PP_BananaSpider_02": 1080674978, + "PP_BananaSpider_03": 1078577826, + "Guest_HG_NM_BeardDragon_Base_C_01": 82913785, + "Guest_HG_NM_BeardDragon_Base_C_02": 82913786, + "Guest_HG_NM_BeardDragon_Base_C_03": 82913787, + "Guest_HG_NM_Glowbug_Base_C_01": 544959703, + "Guest_HG_NM_Glowbug_Base_C_02": 544955607, + "Guest_HG_NM_Glowbug_Base_C_03": 544951511, + "Guest_HG_NM_Glowbug_Base_C_04": 544947415, + "Guest_HG_NM_Glowbug_Base_C_05": 544943319, + "Guest_HG_NM_Glowbug_Base_C_06": 544939223, + "Guest_HG_NM_Glowbug_Base_C_07": 544935127, + "MNT_BouquetofFlowers": 1511180560, + "PP_Piggle_Rainbow": 91081383, + "MNT_Sabertooth_FlameSaber": 1949516909, + "Guest_HG_NM_BeardDragon_Base_A_01": 83175929, + "Guest_HG_NM_BeardDragon_Base_A_02": 83175930, + "Guest_HG_NM_BeardDragon_Base_A_03": 83175931, + "Guest_HG_NM_BeardDragon_Base_B_01": 83044857, + "Guest_HG_NM_BeardDragon_Base_B_02": 83044858, + "Guest_HG_NM_BeardDragon_Base_B_03": 83044859, + "Guest_HG_NM_Glowbug_Base_B_01": 8088791, + "Guest_HG_NM_Glowbug_Base_B_02": 8084695, + "Guest_HG_NM_Glowbug_Base_B_03": 8080599, + "Guest_HG_NM_Glowbug_Base_B_04": 8076503, + "Guest_HG_NM_Glowbug_Base_B_05": 8072407, + "Guest_HG_NM_Glowbug_Base_B_06": 8068311, + "Guest_HG_NM_Glowbug_Base_B_07": 8064215, + "Guest_HG_NM_Glowbug_Base_A_01": 1618701527, + "Guest_HG_NM_Glowbug_Base_A_02": 1618697431, + "Guest_HG_NM_Glowbug_Base_A_03": 1618693335, + "Guest_HG_NM_Glowbug_Base_A_04": 1618689239, + "Guest_HG_NM_Glowbug_Base_A_05": 1618685143, + "Guest_HG_NM_Glowbug_Base_A_06": 1618681047, + "Guest_HG_NM_Glowbug_Base_A_07": 1618676951, + "MNT_SummerSOF2023": 1636120912, + "PP_Cyclops_Fire": 7821755, + "PP_Death_Elf": 1535744155, + "PP_Newt": 1438123483, + "PP_Echidna": 735439358, + "MNT_Wombat": 580544786, + "Transformation_BG_NinjaPig_Balance": 1799661438, + "Transformation_BG_Cyclops_Ice": 647975824, + "Transformation_BG_Minotaur_Storm": 1005667041, + "Transformation_GR_Parasaur_Priest_Ice": 1101466351, + "Transformation_GR_Parasaur_Priest_Fire": 892193041, + "Transformation_GR_Parasaur_Priest_Storm": 1525882116, + "Transformation_GR_Parasaur_Priest_Balance": 1127637476, + "Guest_GR_AZ_Parasaur_Undead_B_01": 322587487, + "MNT_WitchCat": 1167097888, + "PP_RolyPoly": 578538330, + "PP_Capybara_B": 628131532, + "MNT_OutbackTruck": 1815527801, + "PP_PoodleSailor": 2137704795, + "MNT_PolarianCannon": 2103490826, + "PP_TazmanianDevil": 1773548765, + "Guest_SKB_AZ_Ixcax_A_100": 556560994, + "Guest_SKB_AZ_Ixcax_A_150": 556610146, + "Guest_SKB_AZ_Ixcax_A_50": 564951650, + "MNT_GhoulsShovel": 2035610946, + "PP_CrystalBdayDragon": 1897078804, + "PP_SunGobblerBall": 1522469440, + "PP_Sun_GreenGobbler": 1337690394, + "MNT_2P_AutumnTreant": 1063435527, + "PP_AutumnTreant": 561077291, + "MNT_FlyingMonkey": 490807393, + "PP_BabyPlantMonster": 2076646587, + "MNT_PlantCreature_A": 1802823265, + "Transformation_BG_Fairy_Fire": 2065252898, + "Transformation_BG_Krok_Myth": 277926564, + "Transformation_BG_RatThief_Life": 1167758651, + "Transformation_BG_Elf_Balance": 1628238937, + "Transformation_BG_Colossus_Death": 184392004, + "Transformation_FortressPod": 139738335, + "P_Wombat_POLYMORPH": 1132264953, + "PP_SharkWobbegong": 1994247222, + "PP_ChineseNYDragon": 1126999021, + "PP_JingleBellRock": 1076037919, + "PP_Krok_Mummy_Myth": 438487583, + "PP_Cyclops_Ice": 1476966187, + "MNT_OutbackTruckB": 1813299577, + "MNT_EvilSnowmanBall": 758818712, + "MNT_ThanksgivingGobbler": 1760011910, + "Guest_WL_Ghost_LostSoul_A_01": 1224111704, + "Guest_WL_Kangaroo_Drover_F_01": 2025562931, + "Guest_WL_Spider_WarriorMage_C_01": 1296557888, + "Guest_WL_Spider_WarriorMage_C_02": 1430775616, + "Guest_WL_Spider_WarriorMage_C_03": 1564993344, + "Guest_WL_Spider_WarriorMage_C_04": 1699211072, + "Guest_WL_Spider_WarriorMage_C_05": 1833428800, + "Guest_WL_Spider_WarriorMage_C_06": 1967646528, + "Guest_WL_Spider_WarriorMage_C_07": 2101864256, + "Guest_SKB_KR_Lightbane_A_100": 837930677, + "Guest_SKB_KR_Lightbane_A_160": 837930669, + "Guest_SKB_KR_Lightbane_A_50": 1309555019, + "Transformation_WL_Phantasmanian_DevilTemplate": 384891502, + "MNT_2P_LeaflessTreant": 623083386, + "PP_Minotaur_Ice": 700151737, + "MNT_Scooter_G": 737125252, + "Guest_WL_Frog_Owner_B_01": 767864686, + "MNT_SilentKnight": 646654812, + "Guest_WL_TRex_Base_A_01": 1842562033, + "Guest_WL_TRex_Base_B_01": 304921616, + "PP_Groundhog": 108643243, + "Guest_NV_Unicorn_Guard_C_04": 1845621, + "MNT_EmuPunk": 647315080, + "MNT_HeartBalloon": 798826551, + "PP_ValentineHoppers": 968693964, + "MNT_SpringSOF2024_Heckhound": 453640548, + "Guest_AQ-Centaur-Arion": 1856508139, + "Guest_AQ-Centaur-Artemis": 333294011, + "Guest_AQ-Horse-Sea": 724896200, + "Guest_KR_Horse_Warlord_A_Bossfight": 1302284326, + "Guest_KR_Horse_Warlord_A_BossfightSP": 1300726822, + "Guest_KR_Zebra_Thrall_A": 1250265667, + "Guest_KR_Zebra_Thrall_A_Boss_Minion": 345677011, + "Guest_KR_Zebra_Thrall_A_Gallery": 1520303483, + "Guest_KH-Gray-Horse-40": 1802231403, + "Guest_KH-Gray-Horse-20": 1802231307, + "Guest_G14-BP-Unicorn_Fencer_Boss": 1602044152, + "Guest_Horse-Merc-Brown-L37": 1831175255, + "Guest_Horse-Merc-Tan-L39": 1363854837, + "Guest_Horse-Merc-Tan-L39-1": 2085275127, + "Guest_Horse-Merc-Gray-MSBoss-L39": 1863452041, + "Guest_Horse-Merc-Gray-L39": 2039135564, + "Guest_Horse-Merc-Tan-L38": 1363330549, + "Guest_WC_Horse_Mercenary_Roberto": 891924774, + "Guest_ZF-Nathi-Yellowstripe-R11": 1505157721, + "Guest_ZF-TseTse-Main-R11-Boss": 114927854, + "Guest_ZF-TseTse-Elephant-R11": 894147273, + "Guest_ZF-Zebra-Impi-Raider-R11": 1378242919, + "Guest_ZF-Zebra-Warrior-Male-R10-1": 1791906265, + "Guest_ZF-Zebra-Senzan-Zebu-R10-Boss": 373712721, + "Guest_ZF-Zebra-Shaka-Zebu-R10-Boss": 662142985, + "Guest_ZF-Zebra-Warrior-Female-R10-02": 1507835670, + "Guest_ZF-Zebra-Warrior-Male-R10": 47075786, + "Guest_ZF-Zebra-Warrior-Male-R10-02": 1791906714, + "Guest_ZF-Zebra-Warrior-Male-R10-03": 1791906746, + "Guest_ZF-Zebra-Warrior-Male-R10-05": 1791906682, + "Guest_ZF-Zebra-Warrior-Male-R10-2": 1791906268, + "Guest_ZF_Zebra_Spectral_Guardian-R11": 431970996, + "Guest_CC_Horse_Apoc_A_01": 644668374, + "Guest_CC_Horse_Apoc_B_01": 644668390, + "Guest_CC_Horse_Apoc_C_01": 644668406, + "Guest_CC_Horse_Apoc_D_01": 644668294, + "Guest_CC_Horse_Apoc_D_02": 645192582, + "Guest_CC_Unicorn_CorsairF_B_01": 1378532506, + "Guest_CC_Unicorn_Duelist_B_01": 64891542, + "Guest_CC_Unicorn_Guard_B_01": 1075063242, + "Guest_CC_Unicorn_Guard_B_02": 1075063238, + "Guest_CC_Unicorn_Guard_B_03": 1075063234, + "Guest_NV_Horse_HordeSoldier_A_01": 504396960, + "Guest_NV_Horse_HordeSoldier_A_02": 101743776, + "Guest_NV_Horse_HordeOfficer_A_01": 343600992, + "Guest_NV_Horse_HordeSoldier_A_03": 235961504, + "Guest_NV_Horse_HordeOfficer_A_02": 209383264, + "Guest_NV_Horse_AberrantTungAk_A_01": 952263441, + "Guest_NV_Horse_AberrantTungAk_A_02": 952263537, + "Guest_NV_Horse_TungAk_B_01": 1194718672, + "Guest_NV_Horse_TungAk_B_02": 657847760, + "Guest_NV_Horse_HordeOfficer_B_01": 343596896, + "Guest_NV_Horse_HordeOfficer_B_02": 209379168, + "Guest_NV_Horse_TungAk_A_01": 1194669520, + "Guest_NV_Unicorn_Guard_C_01": 1845601, + "Guest_NV_Unicorn_Guard_A_01": 797025, + "Guest_NV_Unicorn_AberrantGuard_A_01": 739851573, + "Guest_NV_Unicorn_Guard_C_02": 1845613, + "Guest_NV_Unicorn_Guard_C_03": 1845609, + "Guest_NV_Unicorn_AberrantGuard_A_02": 739848501, + "Guest_NV_Unicorn_Guard_A_02": 797037, + "Guest_NV_Unicorn_AberrantGuard_A_03": 739849525, + "Guest_NV_Unicorn_AberrantGuard_A_04": 739846453, + "Guest_NV_Horse_HordeOfficer_A_03": 75165536, + "Guest_NV_Horse_HordeSoldier_A_04": 907050144, + "Guest_NV_Horse_HordeSoldier_A_05": 1041267872, + "Guest_NV_Horse_HordeSoldier_C_01": 504388768, + "Guest_HG_TRAIN_Horse_MustangFencerF_A_Balance_50": 871182987, + "Guest_HG_TRAIN_Horse_MustangFencerF_A_Balance_75": 871176715, + "Guest_HG_TRAIN_Horse_MustangFencerF_A_Life_100": 886489645, + "Guest_HG_TRAIN_Horse_MustangFencerF_A_Balance_25": 871177035, + "Guest_HG_TRAIN_Horse_MustangFencerF_A_Balance_100": 872231819, + "Guest_HG_TRAIN_Horse_MustangFencerF_A_Life_140": 1960231469, + "Guest_HG_TRAIN_Horse_MustangFencerF_B_100": 2089957067, + "Guest_HG_TRAIN_Horse_MustangFencerF_A_Life_25": 1700184589, + "Guest_HG_TRAIN_Horse_MustangFencerF_A_Life_50": 920044045, + "Guest_HG_TRAIN_Horse_MustangFencerF_A_Life_75": 1742127629, + "Guest_HG_TRAIN_Horse_MustangFencerF_A_Balance_140": 872223627, + "Guest_HG_TRAIN_Horse_MustangFencerF_B_50": 2089952970, + "Guest_HG_TRAIN_Horse_MustangFencerF_B_75": 57530654, + "Guest_HG_TRAIN_Horse_MustangFencerF_B_140": 2089957099, + "Guest_HG_TRAIN_Horse_MustangFencerF_B_25": 1131272477, + "Guest_LM_Horse_Explorer_A_01_Hard": 1711837140, + "Guest_WL_Unicorn_Guard_A_01": 1074538935, + "Guest_WL_Unicorn_CorsairF_E_01": 1378532603, + "Guest_WL_Unicorn_Warlord_A_01": 1321310496, + "Guest_KH-Gray-Horse-1": 1802239547, + "Guest_KH-Gray-Horse-60": 1802231371, + "Guest_KH-Gray-Horse-80": 1802231467, + "Transformation_BG_NinjaPig_Ice": 186026527, + "Transformation_BG_Cyclops_Storm": 897316984, + "PP_MinotaurBalance": 1344665951, + "PP_OrthusMoon": 1804503950, + "PP_CoolPineapple": 1149318906, + "PP_TwinkleStars": 766378011, + "PP_Scroll": 1613313091, + "PP_Colossus_Death": 40713075, + "PP_ColossusDeath": 530964029, + "PP_KILiveRock": 1975550570, + "MNT_Outrigger": 1417937299, + "MNT_BookWyrm": 2080129190, + "MNT_RacingSnail": 1996220963, + "MNT_UmbrellaCloud": 145762615, + "PP_PropellerCat": 2094718580, + "MNT_TRex_Shirt": 586746001, + "MNT_Swarm_Bee": 1625228695, + "MNT__CelestialMoon": 968360256, + "Guest_ME_Sinbad_IronSultan_150": 2001676223, + "Guest_ME_Sinbad_Cyclops_150": 1968943689, + "Guest_ME_Sinbad_Skeleton_150": 1031490819, + "Guest_ME_Sinbad_Colossus_150": 1727675806, + "Guest_ME_Sinbad_Skeleton_150_02": 970505475, + "Guest_ME_Sinbad_Wyrm_150": 19314443, + "Guest_ZF-Zebra-Inzinzebu-Bandit-R11": 430262550, + "Guest_ZF-Zebra-Warrior-Male-R10-04": 1791906650, + "PP_TwinkleStars_02": 805304347, + "PP_TwinkleStars_03": 803207195, + "PP_TwinkleStars_01": 799012891, + "Transformation_BodleianHarrow": 609627870, + "Guest_HG_Gryphon_OwlStatue_A_01_L170": 77756046, + "Guest_HG_Gryphon_OwlStatue_A_02_L170": 73561742, + "Guest_HG_Gryphon_OwlStatue_A_01_L100": 77752974, + "Guest_HG_Gryphon_OwlStatue_A_02_L100": 73558670, + "Guest_HG_Gryphon_OwlStatue_A_01_L50": 78277134, + "Guest_HG_Gryphon_OwlStatue_A_02_L50": 74082830, + "MNT_SummerSOF2024_JudgementWings": 1078163967, + "MNT_Pegasus_E": 131704054, + "MNT_PolarisHero": 665176426, + "PP_Duckana": 1128961578, + "PP_QueenBee": 833291695, + "Transformation_BG_Draconian_Balance": 2078940682, + "Transformation_BG_WolfWarrior_Fire": 1762248682, + "Transformation_BG_Minotaur_Death": 309090657, + "PP_WolfWarrior_Fire": 685685256, + "PP_WolfWarrior_Death": 1857202724, + "Guest_ME-GTAV01-WyrmBoss-150": 1482208618, + "Guest_ME_SpectreOfB_L150": 684104791, + "Guest_ME_MD_MacDeath_L150": 1128977615, + "Guest_ME_Pig_BalanceWizardA_L150": 959913724, + "Guest_ME_Pig_BalanceWizardB_L150": 959913712, + "Guest_ME_Pig_BalanceWizardC_L150": 959913716, + "Guest_ME_Pig_FireWizard_L150": 964392255, + "Guest_ME_Pig_IceWizardF_L150": 86941026, + "Guest_ME_Pig_MythWizard_L150": 964051241, + "Guest_ME_Pig_StormWizardF_L150": 2016383602, + "Guest_ME_Clock_Clockworker_L150": 1424569772, + "Guest_ME_Clock_ClockworkSpanner_L150": 1966824609, + "Guest_ME_Clock_Lugs_L150": 370290904, + "Guest_ME_Clock_Lucia_L150": 1857768409, + "MNT_EvilChair": 339577702, + "PP_Cyclops_Storm": 621464512, + "PP_Krokomummy_Life": 462432735, + "Transformation_CL_Rematch_Crustacean": 1686865207, + "Transformation_CL_Rematch_Protector": 1893951532, + "Transformation_CL_Rematch_Angler": 120412196, + "Transformation_CL_Rematch_Piscean": 1624106070, + "Transformation_Zebra_Template": 1900548493, + "Transformation_Zebra2_Template": 325099540, + "Transformation_Zebra3_Template": 325099524, + "Transformation_Zebra4_Template": 325099636, + "MNT_SweetSixteenBirthday": 1009398096, + "MNT_2P_TRex_Bones": 1618543266, + "MNT_SpringBumperCar": 1725007788, + "PP_WinterGoblin": 2025052443, + "PP_OnyxAnubis": 1552575189, + "PP_OttomanCat": 223541582, + "MNT_HolidayYeti": 780983974, + "MNT_IceSled": 979912604, + "MNT_TurtleDoves": 1850191638, + "MNT_KrokChariot": 559783620, + "MNT_Mustang": 1775949401, + "MNT_PumpkinBall": 382849054, + "Transformation_BG_Fairy_Storm": 836920873, + "Transformation_BG_Elf_Myth": 1506493664, + "Transformation_NinjaPig_Life": 816802847, + "Transformation_BG_Krok_Fire": 1060580712, + "Transformation_BG_Colossus_Balance": 1067963041, + "Transformation_BG_NinjaPig_Life": 441460895, + "PP_Penguin_03": 1623028104, + "Transformation_Duck_Librarian_B": 864067551, + "Transformation_Duck_Librarian_A": 859873247, + "Transformation_Duck_Adventurer": 194560769, + "Transformation_Gummy_Bunny_C": 1298087941, + "Transformation_Frog_Horned_A": 837201339, + "Transformation_Glowbug_Storm": 2096380446, + "Transformation_Marshmallow_Critter_A": 1036335317, + "Transformation_Snipe_Base_B": 232132109, + "Transformation_Snowball": 915248481, + "Transformation_Wombat_Base": 333435450, + "Transformation_Human_Malistaire": 1414887773, + "Transformation_Morganthe_E": 1745180054, + "Transformation_Spider_Grandfather": 1131773979, + "Transformation_Khrulhu_Dasein_B": 367878762, + "Transformation_Devourer_Base": 698770016, + "Transformation_Alien_Meteor": 638746168, + "Transformation_Nightmare_Malus": 704212821, + "Transformation_Daemon_Personal": 278266463, + "PP_ValentinesDay": 810003364, + "PP_BabyHippo": 422858138, + "PP_Aardwold": 1592150119, + "PP_Aardwold_C": 1902528613, + "MNT_Cobra": 472847981, + "MNT_Serpopard": 1629558909, + "MNT_Serpopard_B": 1629556867, + "MNT_Serpopard_C": 1629556931, + "PP_Fairy_Fire": 1847789544, + "MNT_Mustang_B": 1448793691, + "PP_FireElfMyth": 1933609060, + "MNT_KT-BoatRide": 1560860110, + "MNT_ShadowMagic": 2095978357, + "MNT_MardiGrasFloat_A": 1740674432, + "PP_ChineseNYSnake": 988201940, + "MNT_AnubisDog": 1995079956, + "PP_ShadowImp_A": 1604849432, + "PP_ShadowImp_B": 1604849438, + "PP_ShadowImp_C": 1604849436, + "MNT_ShadowMagic_B": 2093870965, + "MNT_ShadowMagic_C": 2093805429, + "Guest_KT_SE_Tritops_Warrior_I_01": 97516901, + "Guest_KT_SE_DS_Draconian_Model_01": 1916095079, + "Guest_KT_SE_Beetle_Scarab_C_01_L50": 1064004307, + "Guest_KT_SE_Roach_Warrior_C_03": 1872574203, + "Guest_KT_SE_Roach_Warrior_C_04": 1871918843, + "Guest_KT_SE_Roach_Warrior_C_05": 1871787771, + "Guest_KT_SE_Beetle_Scarab_C_01": 1353410759, + "Guest_KT_SE_Mander_Citizen_B_01_L50": 2044509396, + "Guest_KT_SE_Mander_CitizenF_B_01_L50": 164327682, + "Guest_KT_SE_Treant_Tormented_A_01": 1359800879, + "Guest_KT_SE_Treant_Base_A_01": 765512948, + "Guest_KT_SE_Mander_Citizen_F_D_05": 171244620, + "Guest_KT_SE_Mander_CitizenF_D_01": 163791037, + "Guest_KT_SE_Mander_CitizenF_D_02": 298008765, + "Guest_KT_SE_Mander_CitizenF_D_03": 432226493, + "Guest_KT_SE_Mander_CitizenF_D_04": 566444221, + "Guest_KT_SE_Mander_MummyF_A_01": 964349080, + "Guest_KT_SE_Mander_MummyF_A_02": 964480152, + "Guest_KT_SE_MC_Wraith_Model_01": 1101442118, + "Guest_KT_SE_Mander_CitizenF_B_02": 298000573, + "MNT_Wheelbarrow": 614248817, + "MNT_StubbornLlama": 221089074 + } }, - "m_nTeamID": { - "type": "gid", - "id": 8, - "offset": 144, - "flags": 31, + "m_eMountType": { + "type": "enum eMountType", + "id": 3, + "offset": 184, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 374990266 + "hash": 3097765662, + "enum_options": { + "eMNT_Standard": 0, + "eMNT_Floating": 1 + } }, - "m_status": { + "m_primaryColor": { "type": "int", - "id": 9, - "offset": 160, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 960781182 - }, - "m_costAdj": { - "type": "class MatchCostAdjustment", - "id": 10, - "offset": 200, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 913243331 - }, - "m_pLadder": { - "type": "class SharedPointer", - "id": 11, - "offset": 304, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2484171182 - }, - "m_bracketID": { - "type": "gid", - "id": 12, - "offset": 152, + "id": 4, + "offset": 188, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 441272961 + "hash": 900965981 }, - "m_overridingELO": { + "m_secondaryColor": { "type": "int", - "id": 13, - "offset": 284, + "id": 5, + "offset": 192, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1428697363 + "hash": 1616550081 }, - "m_matchKFactor": { + "m_patternColor": { "type": "int", - "id": 14, - "offset": 288, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 773340305 - }, - "m_userID": { - "type": "gid", - "id": 15, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1037989700 - }, - "m_matchMakingRangeForMatches": { - "type": "unsigned int", - "id": 16, - "offset": 320, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1193045098 - }, - "m_maxMatchMakingRangeForMatches": { - "type": "unsigned int", - "id": 17, - "offset": 324, + "id": 6, + "offset": 196, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1279540944 + "hash": 1304790295 }, - "m_allowRangeToExceedMaxForMatches": { + "m_adjustableAnimationRate": { "type": "bool", - "id": 18, - "offset": 328, + "id": 7, + "offset": 200, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1260448226 + "hash": 698897022 }, - "m_matchCrownsCost": { + "m_geometryOption": { "type": "int", - "id": 19, - "offset": 280, + "id": 8, + "offset": 204, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1094489596 + "hash": 1776153279 }, - "m_machineID": { + "m_lastMountID": { "type": "gid", - "id": 20, - "offset": 336, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 281396698 - }, - "m_tier": { - "type": "int", - "id": 21, - "offset": 344, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 219884238 - }, - "m_rank": { - "type": "int", - "id": 22, - "offset": 348, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 219803942 - }, - "m_rating": { - "type": "int", - "id": 23, - "offset": 352, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 899783871 - }, - "m_levelBand": { - "type": "int", - "id": 24, - "offset": 356, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2097286567 - }, - "m_enteredQueue": { - "type": "int", - "id": 25, - "offset": 376, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 638238406 - }, - "m_isSubscriber": { - "type": "bool", - "id": 26, - "offset": 428, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 952325795 - }, - "m_meetBracketBadgeRequirnments": { - "type": "bool", - "id": 27, - "offset": 429, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 438139258 - }, - "m_1v1": { - "type": "bool", - "id": 28, - "offset": 430, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 269458571 - }, - "m_streak": { - "type": "int", - "id": 29, - "offset": 360, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 961375108 - }, - "m_matches": { - "type": "int", - "id": 30, - "offset": 364, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1757638687 - }, - "m_lastFight": { - "type": "int", - "id": 31, - "offset": 368, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 91176384 - }, - "m_PVPHistoryStr": { - "type": "std::string", - "id": 32, - "offset": 384, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1498439420 - }, - "m_maxCritHit": { - "type": "float", - "id": 33, - "offset": 416, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2225327348 - }, - "m_maxBlockCrit": { - "type": "float", - "id": 34, - "offset": 420, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 135865530 - }, - "m_shadowPipRating": { - "type": "float", - "id": 35, - "offset": 424, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 507126123 - }, - "m_optInOut": { - "type": "std::string", - "id": 36, + "id": 9, "offset": 168, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3013935453 - }, - "m_playerTimeDraw": { - "type": "bool", - "id": 37, - "offset": 431, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 447636221 - }, - "m_pvpStatus": { - "type": "unsigned char", - "id": 38, - "offset": 432, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 773570858 - }, - "m_gender": { - "type": "short", - "id": 39, - "offset": 434, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 564443897 - }, - "m_level": { - "type": "int", - "id": 40, - "offset": 436, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 801285362 - }, - "m_nameBlob": { - "type": "std::string", - "id": 41, - "offset": 440, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3058206907 - }, - "m_sSchool": { - "type": "std::string", - "id": 42, - "offset": 472, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1846342998 - }, - "m_timeLeft": { - "type": "int", - "id": 43, - "offset": 508, - "flags": 31, + "flags": 33554491, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1315288020 - }, - "m_startTime": { + "hash": 1112551276 + } + } + }, + "253457010": { + "name": "class SharedPointer", + "bases": [ + "RaidGateBehaviorBase", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 253457010, + "properties": { + "m_behaviorTemplateNameID": { "type": "unsigned int", - "id": 44, - "offset": 512, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1598371274 - }, - "m_elo": { - "type": "int", - "id": 45, - "offset": 516, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 267033754 - }, - "m_wins": { - "type": "int", - "id": 46, - "offset": 520, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 219992347 - }, - "m_losses": { - "type": "int", - "id": 47, - "offset": 524, - "flags": 31, + "id": 0, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 681549075 + "hash": 223437287 }, - "m_ties": { - "type": "int", - "id": 48, - "offset": 528, + "m_raidKeyTemplateID": { + "type": "unsigned int", + "id": 1, + "offset": 112, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 219884239 + "hash": 884418367 } } }, - "354888075": { - "name": "class SharedPointer", + "256150132": { + "name": "class MessageBoardList*", "bases": [ "PropertyClass" ], - "hash": 354888075, + "hash": 256150132, "properties": { - "m_activityType": { - "type": "enum ClassProjectActivityType", + "m_messageBoardList": { + "type": "class SharedPointer", "id": 0, "offset": 72, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1382301495, - "enum_options": { - "CPT_DefeatMob": 0, - "CPT_CatchFish": 1, - "CPT_CastTreasureCard": 2, - "CPT_DefeatPlayer": 3, - "CPT_ClaimCaptureArea": 4, - "CPT_UseInteractable": 5, - "CPT_CraftItem": 6, - "CPT_DailyQuest": 7, - "CPT_FeedPetSnack": 8, - "CPT_HelpTeam": 9, - "CPT_WinMatchBG": 10, - "CPT_LevelPolymorph": 11, - "CPT_HarvestPlant": 12, - "CPT_WinPetGame": 13, - "CPT_HatchPet": 14, - "CPT_PlayDerby": 15, - "CPT_FeedPetHappiness": 16, - "CPT_RateCastleToursHouse": 17, - "CPT_VisitCastleToursHouse": 18, - "CPT_RateOverallStitches": 19, - "CPT_RateEventStitches": 20, - "CPT_JudgesChoice": 21 - } - }, - "m_activityGoal": { - "type": "int", - "id": 1, - "offset": 112, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 103864010 - }, - "m_activityValue": { - "type": "int", - "id": 2, - "offset": 116, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1294496132 - }, - "m_activityLimit": { - "type": "int", - "id": 3, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1282925126 - }, - "m_activityDescription": { - "type": "std::string", - "id": 4, - "offset": 128, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3300318636 - }, - "m_adjectiveList": { - "type": "std::string", - "id": 5, - "offset": 80, "flags": 7, "container": "List", "dynamic": true, "singleton": false, - "pointer": false, - "hash": 3195213318 + "pointer": true, + "hash": 2175215327 } } }, - "1129407734": { - "name": "class SharedPointer", + "254169350": { + "name": "class SharedPointer", "bases": [ - "GameEffectTemplate", "PropertyClass" ], - "hash": 1129407734, + "hash": 254169350, "properties": { - "m_effectName": { - "type": "std::string", + "m_buffType": { + "type": "enum DerbyTalentBuffType", "id": 0, - "offset": 72, - "flags": 7, + "offset": 92, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2029161513 + "hash": 1149251982, + "enum_options": { + "Buff": 0, + "Debuff": 1, + "Neither": 2 + } }, - "m_effectCategory": { - "type": "std::string", + "m_kTarget": { + "type": "enum DerbyTargetType", "id": 1, - "offset": 104, - "flags": 7, + "offset": 96, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1852673222 + "hash": 1807803351, + "enum_options": { + "kTargetInFront": 0, + "kTargetBehind": 1, + "kTargetFirst": 2, + "kTargetSelf": 3, + "kTargetAll": 4, + "kTargetLast": 5 + } }, - "m_sortOrder": { + "m_nDuration": { "type": "int", "id": 2, - "offset": 148, - "flags": 7, + "offset": 104, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1411218206 + "hash": 1110167982 }, - "m_duration": { - "type": "double", + "m_effectID": { + "type": "unsigned int", "id": 3, - "offset": 192, - "flags": 7, + "offset": 88, + "flags": 24, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2727932435 + "hash": 2347630439 }, - "m_stackingCategories": { + "m_imageFilename": { "type": "std::string", "id": 4, - "offset": 160, - "flags": 7, - "container": "List", - "dynamic": true, + "offset": 112, + "flags": 131103, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 1774497525 + "hash": 2813328063 }, - "m_isPersistent": { - "type": "bool", + "m_iconIndex": { + "type": "unsigned int", "id": 5, - "offset": 153, - "flags": 7, + "offset": 144, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 923861920 + "hash": 1265133262 }, - "m_bIsOnPet": { - "type": "bool", + "m_soundOnActivate": { + "type": "std::string", "id": 6, - "offset": 154, - "flags": 7, + "offset": 152, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 522593303 + "hash": 1956929714 }, - "m_isPublic": { - "type": "bool", + "m_soundOnTarget": { + "type": "std::string", "id": 7, - "offset": 152, - "flags": 7, + "offset": 184, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1728439822 + "hash": 3444214056 }, - "m_visualEffectAddName": { + "m_targetParticleEffect": { "type": "std::string", "id": 8, - "offset": 200, - "flags": 7, + "offset": 216, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3382086694 + "hash": 3048234723 }, - "m_visualEffectRemoveName": { + "m_overheadMessage": { "type": "std::string", "id": 9, - "offset": 232, - "flags": 7, + "offset": 248, + "flags": 8388639, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1541697323 + "hash": 1701018190 }, - "m_onAddFunctorName": { - "type": "std::string", + "m_requirements": { + "type": "class RequirementList", "id": 10, "offset": 280, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1561843107 - }, - "m_onRemoveFunctorName": { - "type": "std::string", - "id": 11, - "offset": 312, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2559017864 - }, - "m_stackingRule": { - "type": "enum STACKING_RULE", - "id": 12, - "offset": 144, - "flags": 2097159, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 431568889, - "enum_options": { - "STACKING_ALLOWED": 0, - "STACKING_NOSTACK": 1, - "STACKING_REPLACE": 2 - } + "hash": 2840988582 } } }, - "1129234562": { - "name": "class BracketReport*", + "256248436": { + "name": "class MessageBoardList", "bases": [ "PropertyClass" ], - "hash": 1129234562, + "hash": 256248436, "properties": { - "m_report": { - "type": "class SharedPointer", + "m_messageBoardList": { + "type": "class SharedPointer", "id": 0, "offset": 72, - "flags": 31, + "flags": 7, "container": "List", "dynamic": true, "singleton": false, "pointer": true, - "hash": 2579374715 + "hash": 2175215327 } } }, - "1814013462": { - "name": "class AdvPvPEloBehaviorClient*", + "258004483": { + "name": "class EffectsBehavior*", "bases": [ - "AdvPvPEloBehavior", "BehaviorInstance", "PropertyClass" ], - "hash": 1814013462, + "hash": 258004483, "properties": { "m_behaviorTemplateNameID": { "type": "unsigned int", @@ -432679,217 +132881,188 @@ "singleton": false, "pointer": false, "hash": 223437287 + } + } + }, + "256553494": { + "name": "class AdventurePartyJoinInfo*", + "bases": [ + "PropertyClass" + ], + "hash": 256553494, + "properties": { + "m_adventurePartyGID": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2003479882 }, - "m_loaded": { - "type": "bool", + "m_adventurePartyName": { + "type": "unsigned int", "id": 1, - "offset": 112, - "flags": 27, + "offset": 80, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 683367036 + "hash": 1899719436 }, - "m_entries": { - "type": "class SharedPointer", + "m_adventurePartyNameLocale": { + "type": "int", "id": 2, - "offset": 120, - "flags": 27, - "container": "List", - "dynamic": true, + "offset": 84, + "flags": 7, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1075986553 + "pointer": false, + "hash": 695833705 }, - "m_recordCache": { - "type": "class SharedPointer", + "m_purposeType": { + "type": "int", "id": 3, - "offset": 136, - "flags": 31, + "offset": 88, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 828243474 - } - } - }, - "1129187135": { - "name": "class FreeCamController*", - "bases": [ - "CameraController", - "PropertyClass" - ], - "hash": 1129187135, - "properties": {} - }, - "1719598141": { - "name": "class Rect", - "bases": [], - "hash": 1719598141, - "properties": {} - }, - "355839574": { - "name": "class CrownShopLayout", - "bases": [ - "PropertyClass" - ], - "hash": 355839574, - "properties": { - "m_categories": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2811511766 + "pointer": false, + "hash": 1148443466 }, - "m_tabs": { - "type": "class SharedPointer", - "id": 1, - "offset": 88, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 895280674 - } - } - }, - "1620405349": { - "name": "class SerializedBuffer", - "bases": [], - "hash": 1620405349, - "properties": {} - }, - "1578865429": { - "name": "class BehaviorInstance*", - "bases": [ - "PropertyClass" - ], - "hash": 1578865429, - "properties": { - "m_behaviorTemplateNameID": { + "m_purposeWorldID": { "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, + "id": 4, + "offset": 92, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 - } - } - }, - "1129234565": { - "name": "class BracketReport", - "bases": [ - "PropertyClass" - ], - "hash": 1129234565, - "properties": { - "m_report": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 31, - "container": "List", - "dynamic": true, + "hash": 1790486832 + }, + "m_partySize": { + "type": "int", + "id": 5, + "offset": 96, + "flags": 7, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2579374715 + "pointer": false, + "hash": 234201381 + }, + "m_onlineCount": { + "type": "int", + "id": 6, + "offset": 100, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 35306568 } } }, - "1551126354": { - "name": "class SharedPointer", + "256512534": { + "name": "class AdventurePartyJoinInfo", "bases": [ - "ServiceOptionBase", "PropertyClass" ], - "hash": 1551126354, + "hash": 256512534, "properties": { - "m_serviceName": { - "type": "std::string", + "m_adventurePartyGID": { + "type": "gid", "id": 0, "offset": 72, - "flags": 31, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2206028813 + "hash": 2003479882 }, - "m_iconKey": { - "type": "std::string", + "m_adventurePartyName": { + "type": "unsigned int", "id": 1, - "offset": 168, - "flags": 31, + "offset": 80, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2457138637 + "hash": 1899719436 }, - "m_displayKey": { - "type": "std::string", + "m_adventurePartyNameLocale": { + "type": "int", "id": 2, - "offset": 104, - "flags": 31, + "offset": 84, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3023276954 + "hash": 695833705 }, - "m_serviceIndex": { - "type": "unsigned int", + "m_purposeType": { + "type": "int", "id": 3, - "offset": 204, - "flags": 31, + "offset": 88, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2103126710 + "hash": 1148443466 }, - "m_forceInteract": { - "type": "bool", + "m_purposeWorldID": { + "type": "unsigned int", "id": 4, - "offset": 200, - "flags": 31, + "offset": 92, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1705789564 + "hash": 1790486832 }, - "m_tournamentName": { - "type": "std::string", + "m_partySize": { + "type": "int", "id": 5, - "offset": 216, - "flags": 31, + "offset": 96, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3329241865 + "hash": 234201381 + }, + "m_onlineCount": { + "type": "int", + "id": 6, + "offset": 100, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 35306568 } } }, - "358431199": { - "name": "class SharedPointer", + "257999363": { + "name": "class EffectsBehavior", "bases": [ "BehaviorInstance", "PropertyClass" ], - "hash": 358431199, + "hash": 257999363, "properties": { "m_behaviorTemplateNameID": { "type": "unsigned int", @@ -432904,666 +133077,443 @@ } } }, - "1544496663": { - "name": "class DynamicSigilInstance*", - "bases": [ - "PropertyClass" - ], - "hash": 1544496663, - "properties": { - "m_teams": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1624208548 - }, - "m_roundInfo": { - "type": "class SharedPointer", - "id": 1, - "offset": 128, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2078235549 - } - } - }, - "356591668": { - "name": "class SharedPointer", + "257366358": { + "name": "class ExpansionBehavior*", "bases": [ + "BehaviorInstance", "PropertyClass" ], - "hash": 356591668, + "hash": 257366358, "properties": { - "m_worldIDList": { + "m_behaviorTemplateNameID": { "type": "unsigned int", "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2050801310 - }, - "m_exhibitIDList": { - "type": "unsigned int", - "id": 1, - "offset": 88, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1339737091 - }, - "m_stateList": { - "type": "unsigned int", - "id": 2, "offset": 104, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1658565962 - }, - "m_doorList": { - "type": "unsigned int", - "id": 3, - "offset": 120, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1783968669 - } - } - }, - "1541492248": { - "name": "class ClientEffectCinematicAction*", - "bases": [ - "EffectCinematicAction", - "BaseEffectCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 1541492248, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 + "hash": 223437287 }, - "m_effectRel": { - "type": "enum BaseEffectCinematicAction::kEffectRelative", + "m_bankExpansions": { + "type": "int", "id": 1, - "offset": 80, - "flags": 2097159, + "offset": 112, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2978921287, - "enum_options": { - "kNone": 0, - "kSigil": 1, - "kTarget": 2, - "kSource": 3, - "kActor": 4 - } + "hash": 1369075454 }, - "m_graphic": { - "type": "std::string", + "m_friendListExpansions": { + "type": "int", "id": 2, - "offset": 88, - "flags": 131079, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2592217913 - }, - "m_bUseOrientationOverride": { - "type": "bool", - "id": 3, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1088002894 - }, - "m_overrideOrientation": { - "type": "class Vector3D", - "id": 4, - "offset": 124, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3267199758 - }, - "m_bUseLocationOverride": { - "type": "bool", - "id": 5, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1767170875 - }, - "m_overrideLocation": { - "type": "class Vector3D", - "id": 6, - "offset": 108, - "flags": 7, + "offset": 116, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3776417691 + "hash": 1057398198 } } }, - "356469809": { - "name": "class SharedPointer", + "260120908": { + "name": "class MonsterMagicLevelControl", "bases": [ - "GameEffectTemplate", + "Window", "PropertyClass" ], - "hash": 356469809, + "hash": 260120908, "properties": { - "m_effectName": { + "m_sName": { "type": "std::string", "id": 0, - "offset": 72, - "flags": 7, + "offset": 80, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2029161513 + "hash": 2306437263 }, - "m_effectCategory": { - "type": "std::string", + "m_Children": { + "type": "class SharedPointer", "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, + "offset": 112, + "flags": 65667, + "container": "Vector", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 1852673222 + "pointer": true, + "hash": 2621225959 }, - "m_sortOrder": { - "type": "int", + "m_Style": { + "type": "unsigned int", "id": 2, - "offset": 148, - "flags": 7, + "offset": 152, + "flags": 1048583, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1411218206 + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "SCALE_CHILDREN": 2, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "FOCUS_LOCKED": 64, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152 + } }, - "m_duration": { - "type": "double", + "m_Flags": { + "type": "unsigned int", "id": 3, - "offset": 192, - "flags": 7, + "offset": 156, + "flags": 1048583, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2727932435 + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } }, - "m_stackingCategories": { - "type": "std::string", + "m_Window": { + "type": "class Rect", "id": 4, "offset": 160, - "flags": 7, - "container": "List", - "dynamic": true, + "flags": 135, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 1774497525 + "hash": 3105139380 }, - "m_isPersistent": { - "type": "bool", + "m_fTargetAlpha": { + "type": "float", "id": 5, - "offset": 153, - "flags": 7, + "offset": 212, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 923861920 + "hash": 1809129834 }, - "m_bIsOnPet": { - "type": "bool", + "m_fDisabledAlpha": { + "type": "float", "id": 6, - "offset": 154, - "flags": 7, + "offset": 216, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 522593303 + "hash": 1389987675 }, - "m_isPublic": { - "type": "bool", + "m_fAlpha": { + "type": "float", "id": 7, - "offset": 152, - "flags": 7, + "offset": 208, + "flags": 65671, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1728439822 + "hash": 482130755 }, - "m_visualEffectAddName": { - "type": "std::string", + "m_pWindowStyle": { + "type": "class SharedPointer", "id": 8, - "offset": 200, - "flags": 7, + "offset": 232, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 3382086694 + "pointer": true, + "hash": 3623628394 }, - "m_visualEffectRemoveName": { - "type": "std::string", + "m_sHelp": { + "type": "std::wstring", "id": 9, - "offset": 232, - "flags": 7, + "offset": 248, + "flags": 4194439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1541697323 + "hash": 2102211316 }, - "m_onAddFunctorName": { + "m_sScript": { "type": "std::string", "id": 10, - "offset": 280, - "flags": 7, + "offset": 352, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1561843107 + "hash": 1846695875 }, - "m_onRemoveFunctorName": { - "type": "std::string", + "m_Offset": { + "type": "class Point", "id": 11, - "offset": 312, - "flags": 7, + "offset": 192, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2559017864 + "hash": 3389835433 }, - "m_stackingRule": { - "type": "enum STACKING_RULE", + "m_Scale": { + "type": "class Point", "id": 12, - "offset": 144, - "flags": 2097159, + "offset": 200, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 431568889, - "enum_options": { - "STACKING_ALLOWED": 0, - "STACKING_NOSTACK": 1, - "STACKING_REPLACE": 2 - } + "hash": 2547159940 }, - "m_pipsGiven": { - "type": "int", + "m_sTip": { + "type": "std::wstring", "id": 13, - "offset": 360, - "flags": 7, + "offset": 392, + "flags": 4194439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1346249167 + "hash": 1513510520 }, - "m_powerPipsGiven": { - "type": "int", + "m_BubbleList": { + "type": "class WindowBubble", "id": 14, - "offset": 364, - "flags": 7, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 377908508 + "hash": 3091503757 } } }, - "1129606174": { - "name": "class ClassProjectReward", + "258825569": { + "name": "class ReqMagicLevel*", "bases": [ + "ReqBaseMagicLevel", + "ReqNumeric", + "Requirement", "PropertyClass" ], - "hash": 1129606174, + "hash": 258825569, "properties": { - "m_goalCount": { - "type": "unsigned int", + "m_applyNOT": { + "type": "bool", "id": 0, "offset": 72, - "flags": 7, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 985669209 + "hash": 1746328074, + "enum_options": { + "__DEFAULT": 0 + } }, - "m_lootTable": { - "type": "std::string", + "m_operator": { + "type": "enum Requirement::Operator", "id": 1, - "offset": 80, - "flags": 7, + "offset": 76, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2539512673 + "hash": 2672792317, + "enum_options": { + "ROP_AND": 0, + "ROP_OR": 1, + "__DEFAULT": "ROP_AND" + } }, - "m_icon": { - "type": "std::string", + "m_numericValue": { + "type": "float", "id": 2, - "offset": 112, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1717182340 - }, - "m_featuredTemplateID": { - "type": "unsigned int", - "id": 3, - "offset": 128, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 258965446 - }, - "m_badgeName": { - "type": "std::string", - "id": 4, - "offset": 144, - "flags": 7, + "offset": 80, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3002948047 + "hash": 521915239 }, - "m_rewardType": { - "type": "enum ClassProjectRewardType", - "id": 5, - "offset": 176, - "flags": 2097159, + "m_operatorType": { + "type": "enum ReqNumeric::OPERATOR_TYPE", + "id": 3, + "offset": 84, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3545827746, + "hash": 2228122961, "enum_options": { - "CPRT_Everyone": 0, - "CPRT_Subscriber": 1, - "CPRT_Purchased": 2 + "OPERATOR_UNKNOWN": 4294967295, + "OPERATOR_EQUALS": 0, + "OPERATOR_GREATER_THAN": 1, + "OPERATOR_LESS_THAN": 2, + "OPERATOR_GREATER_THAN_EQ": 3, + "OPERATOR_LESS_THAN_EQ": 4 } }, - "m_overrideTitle": { + "m_magicSchool": { "type": "std::string", - "id": 6, - "offset": 184, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2739145597 - }, - "m_testLunari": { - "type": "unsigned int", - "id": 7, - "offset": 216, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1088922456 - }, - "m_crownsCostToAdvance": { - "type": "int", - "id": 8, - "offset": 220, + "id": 4, + "offset": 88, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 304642756 - } - } - }, - "1538911188": { - "name": "class ClientBattleBookBehavior", - "bases": [ - "BattleBookBehavior", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1538911188, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_spellList": { - "type": "class SharedPointer", - "id": 1, - "offset": 120, - "flags": 27, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2181913740 - }, - "m_rating": { - "type": "class SharedPointer", - "id": 2, - "offset": 136, - "flags": 27, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2464459535 + "hash": 1597012900 } } }, - "356240772": { - "name": "class WeightedEntryT,class std::allocator > >*", + "258825572": { + "name": "class ReqMagicLevel", "bases": [ - "WeightedEntry", + "ReqBaseMagicLevel", + "ReqNumeric", + "Requirement", "PropertyClass" ], - "hash": 356240772, + "hash": 258825572, "properties": { - "m_weight": { - "type": "unsigned int", + "m_applyNOT": { + "type": "bool", "id": 0, "offset": 72, - "flags": 7, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1311209301 + "hash": 1746328074, + "enum_options": { + "__DEFAULT": 0 + } }, - "m_entry": { - "type": "std::string", + "m_operator": { + "type": "enum Requirement::Operator", "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2291005229 - } - } - }, - "1129539641": { - "name": "enum ItemBundleTemplate::BundleContentsType", - "bases": [], - "hash": 1129539641, - "properties": {} - }, - "1538128723": { - "name": "class SharedPointer", - "bases": [ - "CinematicStageTemplate", - "PropertyClass" - ], - "hash": 1538128723, - "properties": { - "m_name": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, + "offset": 76, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1717359772 + "hash": 2672792317, + "enum_options": { + "ROP_AND": 0, + "ROP_OR": 1, + "__DEFAULT": "ROP_AND" + } }, - "m_duration": { + "m_numericValue": { "type": "float", - "id": 1, - "offset": 104, - "flags": 7, + "id": 2, + "offset": 80, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 920323453 - }, - "m_actions": { - "type": "class SharedPointer", - "id": 2, - "offset": 112, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1380578687 + "hash": 521915239 }, - "m_stageRelationships": { - "type": "class SharedPointer", + "m_operatorType": { + "type": "enum ReqNumeric::OPERATOR_TYPE", "id": 3, - "offset": 128, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 499983354 - }, - "m_cameras": { - "type": "std::string", - "id": 4, - "offset": 152, - "flags": 131079, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 3217341687 - }, - "m_altcameras": { - "type": "std::string", - "id": 5, - "offset": 176, - "flags": 131079, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1882980152 - }, - "m_animation": { - "type": "std::string", - "id": 6, - "offset": 200, - "flags": 7, + "offset": 84, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3431428731 + "hash": 2228122961, + "enum_options": { + "OPERATOR_UNKNOWN": 4294967295, + "OPERATOR_EQUALS": 0, + "OPERATOR_GREATER_THAN": 1, + "OPERATOR_LESS_THAN": 2, + "OPERATOR_GREATER_THAN_EQ": 3, + "OPERATOR_LESS_THAN_EQ": 4 + } }, - "m_sound": { + "m_magicSchool": { "type": "std::string", - "id": 7, - "offset": 232, - "flags": 131079, + "id": 4, + "offset": 88, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2307644996 + "hash": 1597012900 } } }, - "1129521821": { - "name": "class SharedPointer", + "260276437": { + "name": "class WizardCharacterBehaviorTemplate", "bases": [ "BehaviorTemplate", "PropertyClass" ], - "hash": 1129521821, + "hash": 260276437, "properties": { "m_behaviorName": { "type": "std::string", @@ -433576,8 +133526,8 @@ "pointer": false, "hash": 3130754092 }, - "m_gameName": { - "type": "std::string", + "m_nHeadHandsModel": { + "type": "int", "id": 1, "offset": 120, "flags": 7, @@ -433585,364 +133535,178 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 3229752342 - } - } - }, - "1538010911": { - "name": "class SharedPointer", - "bases": [ - "CinematicStageTemplate", - "PropertyClass" - ], - "hash": 1538010911, - "properties": { - "m_name": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1717359772 + "hash": 998398489 }, - "m_duration": { - "type": "float", - "id": 1, - "offset": 104, + "m_nHairModel": { + "type": "int", + "id": 2, + "offset": 124, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 920323453 - }, - "m_actions": { - "type": "class SharedPointer", - "id": 2, - "offset": 112, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1380578687 + "hash": 1415899069 }, - "m_stageRelationships": { - "type": "class SharedPointer", + "m_nHatModel": { + "type": "int", "id": 3, "offset": 128, "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 499983354 - }, - "m_cameras": { - "type": "std::string", - "id": 4, - "offset": 152, - "flags": 131079, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 3217341687 - }, - "m_altcameras": { - "type": "std::string", - "id": 5, - "offset": 176, - "flags": 131079, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1882980152 - }, - "m_animation": { - "type": "std::string", - "id": 6, - "offset": 200, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3431428731 - }, - "m_sound": { - "type": "std::string", - "id": 7, - "offset": 232, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2307644996 - } - } - }, - "356555022": { - "name": "class SharedPointer", - "bases": [ - "BGSigilProxyBehavior", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 356555022, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_autoCapTimer": { - "type": "class BGSigilTimer", - "id": 1, - "offset": 112, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2270881950 - }, - "m_timerTeam": { - "type": "std::string", - "id": 2, - "offset": 216, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1994153155 - }, - "m_teamOwner": { - "type": "std::string", - "id": 3, - "offset": 248, - "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3126686637 + "hash": 1927542998 }, - "m_combatActive": { - "type": "bool", + "m_nTorsoModel": { + "type": "int", "id": 4, - "offset": 280, - "flags": 31, + "offset": 132, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1372743333 + "hash": 1482459696 }, - "m_captureable": { - "type": "bool", + "m_nFeetModel": { + "type": "int", "id": 5, - "offset": 281, - "flags": 31, + "offset": 136, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1101963387 + "hash": 1832171389 }, - "m_allowAutoCap": { - "type": "bool", + "m_nWandModel": { + "type": "int", "id": 6, - "offset": 282, - "flags": 31, + "offset": 140, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 946300927 + "hash": 132808131 }, - "m_sigilAggroRange": { - "type": "float", + "m_nSkinColor": { + "type": "int", "id": 7, - "offset": 284, - "flags": 31, + "offset": 144, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 995063020 + "hash": 105291612 }, - "m_playerAggroRange": { - "type": "float", + "m_nSkinDecal": { + "type": "int", "id": 8, - "offset": 288, - "flags": 31, + "offset": 148, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1776075073 + "hash": 106107894 }, - "m_triggerOrientation": { - "type": "class Vector3D", + "m_nHairColor": { + "type": "int", "id": 9, - "offset": 292, - "flags": 31, + "offset": 152, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2671004802 + "hash": 1404048907 }, - "m_triggerLocation": { - "type": "class Vector3D", + "m_nHatColor": { + "type": "int", "id": 10, - "offset": 304, - "flags": 31, + "offset": 156, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2573315471 + "hash": 1915692836 }, - "m_triggerBox": { - "type": "bool", + "m_nHatDecal": { + "type": "int", "id": 11, - "offset": 316, - "flags": 31, + "offset": 160, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 962168144 + "hash": 1916509118 }, - "m_width": { - "type": "float", + "m_nTorsoColor": { + "type": "int", "id": 12, - "offset": 320, - "flags": 31, + "offset": 164, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 904656279 + "hash": 1470609534 }, - "m_length": { - "type": "float", + "m_nTorsoDecal": { + "type": "int", "id": 13, - "offset": 324, - "flags": 31, + "offset": 168, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 759698745 + "hash": 1471425816 }, - "m_triggerSphere": { - "type": "bool", + "m_nTorsoDecal2": { + "type": "int", "id": 14, - "offset": 328, - "flags": 31, + "offset": 172, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1467830382 + "hash": 1309581098 }, - "m_radius": { - "type": "float", + "m_nFeetColor": { + "type": "int", "id": 15, - "offset": 332, - "flags": 31, + "offset": 176, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 989410271 + "hash": 1820321227 }, - "m_inRange": { - "type": "class SharedPointer", + "m_nFeetDecal": { + "type": "int", "id": 16, - "offset": 336, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2259190010 - } - } - }, - "1538072524": { - "name": "class SharedPointer", - "bases": [ - "NameOverrideBehavior", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1538072524, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_wsNameOverride": { - "type": "std::wstring", - "id": 1, - "offset": 120, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2131249091 - }, - "m_nameKeys": { - "type": "unsigned int", - "id": 2, - "offset": 352, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1772225898 - }, - "m_useRank": { - "type": "bool", - "id": 3, - "offset": 356, - "flags": 31, + "offset": 180, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2040475372 + "hash": 1821137509 }, "m_eGender": { "type": "enum eGender", - "id": 4, - "offset": 432, - "flags": 2097183, + "id": 17, + "offset": 184, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, @@ -433956,9 +133720,9 @@ }, "m_eRace": { "type": "enum eRace", - "id": 5, - "offset": 436, - "flags": 2097183, + "id": 18, + "offset": 188, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, @@ -436744,182 +136508,295 @@ "PP_Fairy_Fire": 1847789544, "MNT_Mustang_B": 1448793691, "PP_FireElfMyth": 1933609060, - "MNT_KT-BoatRide": 1560860110 + "MNT_KT-BoatRide": 1560860110, + "MNT_ShadowMagic": 2095978357, + "MNT_MardiGrasFloat_A": 1740674432, + "PP_ChineseNYSnake": 988201940, + "MNT_AnubisDog": 1995079956, + "PP_ShadowImp_A": 1604849432, + "PP_ShadowImp_B": 1604849438, + "PP_ShadowImp_C": 1604849436, + "MNT_ShadowMagic_B": 2093870965, + "MNT_ShadowMagic_C": 2093805429, + "Guest_KT_SE_Tritops_Warrior_I_01": 97516901, + "Guest_KT_SE_DS_Draconian_Model_01": 1916095079, + "Guest_KT_SE_Beetle_Scarab_C_01_L50": 1064004307, + "Guest_KT_SE_Roach_Warrior_C_03": 1872574203, + "Guest_KT_SE_Roach_Warrior_C_04": 1871918843, + "Guest_KT_SE_Roach_Warrior_C_05": 1871787771, + "Guest_KT_SE_Beetle_Scarab_C_01": 1353410759, + "Guest_KT_SE_Mander_Citizen_B_01_L50": 2044509396, + "Guest_KT_SE_Mander_CitizenF_B_01_L50": 164327682, + "Guest_KT_SE_Treant_Tormented_A_01": 1359800879, + "Guest_KT_SE_Treant_Base_A_01": 765512948, + "Guest_KT_SE_Mander_Citizen_F_D_05": 171244620, + "Guest_KT_SE_Mander_CitizenF_D_01": 163791037, + "Guest_KT_SE_Mander_CitizenF_D_02": 298008765, + "Guest_KT_SE_Mander_CitizenF_D_03": 432226493, + "Guest_KT_SE_Mander_CitizenF_D_04": 566444221, + "Guest_KT_SE_Mander_MummyF_A_01": 964349080, + "Guest_KT_SE_Mander_MummyF_A_02": 964480152, + "Guest_KT_SE_MC_Wraith_Model_01": 1101442118, + "Guest_KT_SE_Mander_CitizenF_B_02": 298000573, + "MNT_Wheelbarrow": 614248817, + "MNT_StubbornLlama": 221089074 + } + } + } + }, + "265102095": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 265102095, + "properties": { + "m_principalTournamentNames": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 268435463, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 3082525214, + "enum_options": { + "__BASECLASS": "TournamentTemplate" + } + }, + "m_temporaryTournamentNames": { + "type": "std::string", + "id": 1, + "offset": 96, + "flags": 268435463, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1792424127, + "enum_options": { + "__BASECLASS": "TournamentTemplate" } }, - "m_badgeTitle": { - "type": "std::string", - "id": 6, - "offset": 440, - "flags": 31, + "m_observerTimeout": { + "type": "int", + "id": 2, + "offset": 76, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1783354256 + "hash": 562500777 }, - "m_chatPermissions": { - "type": "unsigned int", - "id": 7, - "offset": 360, - "flags": 31, + "m_forfeitTimeout": { + "type": "int", + "id": 3, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1848314473 + "hash": 688716240 }, - "m_pvpIconID": { + "m_activeSeason": { "type": "unsigned int", - "id": 8, - "offset": 472, - "flags": 31, + "id": 4, + "offset": 112, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2083838009 + "hash": 277598322 }, - "m_localeID": { + "m_maxUpdateTime": { "type": "unsigned int", - "id": 9, - "offset": 484, - "flags": 31, + "id": 5, + "offset": 116, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 792971274 + "hash": 1535609605 }, - "m_friendlyPlayer": { - "type": "bool", - "id": 10, - "offset": 490, - "flags": 31, + "m_maxUpdateCount": { + "type": "unsigned int", + "id": 6, + "offset": 120, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 990699901 + "hash": 937799039 }, - "m_volunteer": { - "type": "bool", - "id": 11, - "offset": 491, - "flags": 31, + "m_cacheUpdateTime": { + "type": "unsigned int", + "id": 7, + "offset": 124, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1751284471 + "hash": 887219635 }, - "m_guildName": { - "type": "unsigned int", - "id": 12, - "offset": 492, - "flags": 31, + "m_bracketScheduleFilename": { + "type": "std::string", + "id": 8, + "offset": 128, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 778026115 + "hash": 3625222117 }, - "m_guildNameLocale": { - "type": "int", - "id": 13, - "offset": 496, - "flags": 31, + "m_bracketStringTableFilename": { + "type": "std::string", + "id": 9, + "offset": 160, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 656991008 + "hash": 2974204087 + }, + "m_bracketRewardsPlaceMappingList": { + "type": "class SharedPointer", + "id": 10, + "offset": 192, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 3271398156 } } }, - "1129543791": { - "name": "class SharedPointer", + "262867083": { + "name": "class SharedPointer", "bases": [ "PropertyClass" ], - "hash": 1129543791, + "hash": 262867083, + "properties": {} + }, + "262013957": { + "name": "class SharedPointer", + "bases": [ + "AreaBehavior", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 262013957, "properties": { - "m_upFirst": { - "type": "int", + "m_behaviorTemplateNameID": { + "type": "unsigned int", "id": 0, - "offset": 72, - "flags": 31, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1884669703 + "hash": 223437287 }, - "m_roundNum": { - "type": "int", + "m_radius": { + "type": "float", "id": 1, - "offset": 76, - "flags": 31, + "offset": 116, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1461215570 + "hash": 989410271 }, - "m_resultType": { - "type": "int", + "m_category": { + "type": "enum AudioCategory", "id": 2, - "offset": 80, - "flags": 31, + "offset": 124, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1136139931 - } - } - }, - "356825974": { - "name": "class WanderMovementBehaviorTemplate*", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 356825974, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, + "hash": 2951251982, + "enum_options": { + "AudioCategory_Irrelevent": 0, + "AudioCategory_Accoustic": 1, + "AudioCategory_Noise": 2, + "AudioCategory_Music": 3 + } + }, + "m_exclusive": { + "type": "bool", + "id": 3, + "offset": 128, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3130754092 + "hash": 824383403 }, - "m_movementSpeed": { - "type": "float", - "id": 1, - "offset": 120, - "flags": 7, + "m_accousticSignature": { + "type": "enum AccousticSignature", + "id": 4, + "offset": 176, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 769135219 + "hash": 1188263221, + "enum_options": { + "Generic": 0, + "Padded Cell": 1, + "Room": 2, + "Bath Room": 3, + "Living Room": 4, + "Stone Room": 5, + "Auditorium": 6, + "Concert Hall": 7, + "Cave": 8, + "Arena": 9, + "Hanger": 10, + "Carpeted Hallway": 11, + "Hallway": 12, + "Stone Corridor": 13, + "Alley": 14, + "Forest": 15, + "City": 16, + "Mountains": 17, + "Quarry": 18, + "Plain": 19, + "Parking Lot": 20, + "Sewer Pipe": 21, + "Underwater": 22, + "Drugged": 23, + "Dizzy": 24, + "Psychotic": 25 + } } } }, - "1538217716": { - "name": "class CrownShopPurchase", + "260544318": { + "name": "class PvPUpdateMessage*", "bases": [ "PropertyClass" ], - "hash": 1538217716, + "hash": 260544318, "properties": { - "m_templateID": { - "type": "unsigned int", + "m_messageType": { + "type": "int", "id": 0, "offset": 72, "flags": 31, @@ -436927,1688 +136804,1371 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 1286746870 - }, - "m_lastPurchaseTimeSec": { - "type": "unsigned __int64", - "id": 1, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1926562290 + "hash": 1531535105 } } }, - "1129897175": { - "name": "struct std::pair", - "bases": [], - "hash": 1129897175, - "properties": {} - }, - "359892405": { - "name": "class SocialSystemPlayerList", + "260380478": { + "name": "class PvPUpdateMessage", "bases": [ "PropertyClass" ], - "hash": 359892405, + "hash": 260380478, "properties": { - "m_playerList": { - "type": "gid", + "m_messageType": { + "type": "int", "id": 0, "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, + "flags": 31, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 1909774945 + "hash": 1531535105 } } }, - "1540418012": { - "name": "class AvailableQuestEntry", + "260512027": { + "name": "class SharedPointer", "bases": [ - "ServiceOptionBase", + "BlobDefinition", "PropertyClass" ], - "hash": 1540418012, + "hash": 260512027, "properties": { - "m_serviceName": { + "m_type": { "type": "std::string", "id": 0, "offset": 72, - "flags": 31, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2206028813 + "hash": 1717601629 }, - "m_iconKey": { + "m_subType": { "type": "std::string", "id": 1, - "offset": 168, - "flags": 31, + "offset": 104, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2457138637 + "hash": 3175052615 }, - "m_displayKey": { - "type": "std::string", + "m_versionNumber": { + "type": "unsigned int", "id": 2, - "offset": 104, - "flags": 31, + "offset": 136, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3023276954 + "hash": 1265259452 }, - "m_serviceIndex": { - "type": "unsigned int", + "m_packageNumber": { + "type": "int", "id": 3, - "offset": 204, - "flags": 31, + "offset": 140, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2103126710 + "hash": 1934060719 }, - "m_forceInteract": { - "type": "bool", + "m_associatedGID": { + "type": "gid", "id": 4, - "offset": 200, - "flags": 31, + "offset": 144, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1705789564 + "hash": 148404716 }, - "m_questTitle": { - "type": "std::string", + "m_epochDays": { + "type": "unsigned int", "id": 5, - "offset": 256, - "flags": 31, + "offset": 152, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1805465583 + "hash": 1631557837 }, - "m_questName": { - "type": "std::string", + "m_data": { + "type": "class SharedPointer", "id": 6, - "offset": 224, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1702112846 - }, - "m_isMainline": { - "type": "bool", - "id": 7, - "offset": 344, - "flags": 31, + "offset": 160, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1637584380 + "pointer": true, + "hash": 565926218 } } }, - "359867829": { - "name": "class SocialSystemPlayerList*", + "261848999": { + "name": "class SharedPointer", "bases": [ "PropertyClass" ], - "hash": 359867829, + "hash": 261848999, "properties": { - "m_playerList": { + "m_mailId": { "type": "gid", "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1909774945 - } - } - }, - "1133885852": { - "name": "class CreationNameInput*", - "bases": [ - "ControlRichEdit", - "ControlEdit", - "Window", - "PropertyClass" - ], - "hash": 1133885852, - "properties": { - "m_sName": { - "type": "std::string", - "id": 0, "offset": 80, - "flags": 135, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2306437263 + "hash": 703697224 }, - "m_Children": { - "type": "class SharedPointer", + "m_timeStamp": { + "type": "unsigned __int64", "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2621225959 + "pointer": false, + "hash": 933557677 }, - "m_Style": { - "type": "unsigned int", + "m_senderId": { + "type": "gid", "id": 2, - "offset": 152, - "flags": 1048583, + "offset": 88, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152, - "FORCE_NUMERIC": 16777216, - "FORCE_ALPHA": 268435456, - "FORCE_ALPHANUMERIC": 536870912, - "FORCE_INTEGER": 33554432, - "FORCE_POSITIVE": 67108864, - "FORCE_RANGE": 134217728 - } + "hash": 814458086 }, - "m_Flags": { - "type": "unsigned int", + "m_recipientId": { + "type": "gid", "id": 3, - "offset": 156, - "flags": 1048583, + "offset": 96, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } + "hash": 2065780840 }, - "m_Window": { - "type": "class Rect", + "m_messageType": { + "type": "int", "id": 4, - "offset": 160, - "flags": 135, + "offset": 104, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3105139380 + "hash": 1531535105 }, - "m_fTargetAlpha": { - "type": "float", + "m_messageData": { + "type": "std::string", "id": 5, - "offset": 212, - "flags": 135, + "offset": 112, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1809129834 + "hash": 3028633722 }, - "m_fDisabledAlpha": { - "type": "float", + "m_messageFlags": { + "type": "int", "id": 6, - "offset": 216, - "flags": 135, + "offset": 108, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1389987675 + "hash": 1128617708 }, - "m_fAlpha": { - "type": "float", + "m_expireDuration": { + "type": "unsigned int", "id": 7, - "offset": 208, - "flags": 65671, + "offset": 144, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 482130755 - }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, - "container": "Static", - "dynamic": false, + "hash": 2308711904 + } + } + }, + "260771763": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 260771763, + "properties": { + "m_spellList": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, "singleton": false, "pointer": true, - "hash": 3623628394 - }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2102211316 - }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1846695875 - }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3389835433 - }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2547159940 - }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513510520 + "hash": 1541139342 }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, + "m_spellFusionIDList": { + "type": "unsigned int", + "id": 1, + "offset": 104, + "flags": 7, "container": "List", "dynamic": true, "singleton": false, "pointer": false, - "hash": 2587533771 - }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3091503757 - }, - "m_sText": { - "type": "std::wstring", - "id": 16, - "offset": 584, - "flags": 135, + "hash": 1038665578 + } + } + }, + "260742121": { + "name": "class SharedPointer", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 260742121, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2102642960 + "hash": 3130754092 }, - "m_nMaxLength": { + "m_nStartingHealth": { "type": "int", - "id": 17, - "offset": 620, - "flags": 135, + "id": 1, + "offset": 120, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1183478416 + "hash": 317221834 }, - "m_bPassword": { + "m_HideCurrentHP": { "type": "bool", - "id": 18, - "offset": 624, - "flags": 135, + "id": 2, + "offset": 124, + "flags": 263, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1604468200 + "hash": 31360456 }, - "m_bLog": { - "type": "bool", - "id": 19, - "offset": 625, - "flags": 135, + "m_nLevel": { + "type": "int", + "id": 3, + "offset": 128, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 221687287 + "hash": 717812768 }, - "m_previousNext": { - "type": "bool", - "id": 20, - "offset": 627, - "flags": 135, + "m_fIntelligence": { + "type": "float", + "id": 4, + "offset": 132, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 858581071 + "hash": 1871176720 }, - "m_nMaxLogSize": { - "type": "int", - "id": 21, - "offset": 712, - "flags": 135, + "m_fSelfishFactor": { + "type": "float", + "id": 5, + "offset": 136, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 779573899 + "hash": 1823445130 }, - "m_bEditing": { - "type": "bool", - "id": 22, - "offset": 616, - "flags": 135, + "m_nameColor": { + "type": "class Color", + "id": 6, + "offset": 152, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1243218553 + "hash": 3103779710 }, - "m_bAllowPaste": { + "m_bossMob": { "type": "bool", - "id": 23, - "offset": 626, - "flags": 135, + "id": 7, + "offset": 144, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1129316721 + "hash": 986129576 }, - "m_nLogPosition": { - "type": "int", - "id": 24, - "offset": 704, - "flags": 135, + "m_turnTowardsPlayer": { + "type": "bool", + "id": 8, + "offset": 145, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1120160767 + "hash": 1881705133 }, - "m_nCursor": { - "type": "int", - "id": 25, - "offset": 716, - "flags": 135, + "m_mobTitle": { + "type": "enum NPCBehaviorTemplate::TITLE_TYPE", + "id": 9, + "offset": 148, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1876782150 + "hash": 2205905992, + "enum_options": { + "Easy": 0, + "Normal": 1, + "Elite": 2, + "Boss": 3, + "Minion": 4 + } }, - "m_nEditBegin": { - "type": "int", - "id": 26, - "offset": 720, - "flags": 135, + "m_schoolOfFocus": { + "type": "std::string", + "id": 10, + "offset": 160, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1066592403 + "hash": 1523233848 }, - "m_nEditEnd": { + "m_nAggressiveFactor": { "type": "int", - "id": 27, - "offset": 724, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1560905669 - }, - "m_sSavedText": { - "type": "std::wstring", - "id": 28, - "offset": 728, - "flags": 135, + "id": 11, + "offset": 140, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2197953283 + "hash": 783108599 }, - "m_fCursorBlinkSpeed": { - "type": "float", - "id": 29, - "offset": 760, - "flags": 135, + "m_triggerList": { + "type": "std::string", + "id": 12, + "offset": 232, + "flags": 268435463, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2232655228 + "hash": 3100120619, + "enum_options": { + "__BASECLASS": "CombatTriggerList" + } }, - "m_fCursorTimer": { + "m_cylinderScaleValue": { "type": "float", - "id": 30, - "offset": 764, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1929942748 - }, - "m_bCursorBlink": { - "type": "bool", - "id": 31, - "offset": 768, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 683441507 - }, - "m_fMinRange": { - "type": "double", - "id": 32, - "offset": 776, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3079523396 - }, - "m_fMaxRange": { - "type": "double", - "id": 33, - "offset": 784, - "flags": 135, + "id": 13, + "offset": 268, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3876551814 + "hash": 1227245334 }, - "m_nPrecision": { + "m_maxShadowPips": { "type": "int", - "id": 34, - "offset": 792, - "flags": 135, + "id": 14, + "offset": 272, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1404974196 + "hash": 985142882 }, - "m_bDeleteOnFirstChar": { - "type": "bool", - "id": 35, - "offset": 618, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 902105643 - } - } - }, - "1539384648": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1539384648, - "properties": { - "m_textData": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, + "m_baseEffects": { + "type": "class SharedPointer", + "id": 15, + "offset": 280, + "flags": 7, "container": "List", "dynamic": true, "singleton": false, - "pointer": false, - "hash": 2390069786 - } - } - }, - "359215443": { - "name": "class TieredSpellManager", - "bases": [ - "PropertyClass" - ], - "hash": 359215443, - "properties": { - "m_tieredSpellConfig": { - "type": "class SharedPointer", - "id": 0, - "offset": 80, + "pointer": true, + "hash": 1726069264 + }, + "m_secondarySchoolOfFocus": { + "type": "std::string", + "id": 16, + "offset": 200, "flags": 7, "container": "Static", "dynamic": false, - "singleton": true, - "pointer": true, - "hash": 2945256819 + "singleton": false, + "pointer": false, + "hash": 3043326464 } } }, - "1131635780": { - "name": "class WizardEquippedItemInfo", + "261078294": { + "name": "class SharedPointer", "bases": [ - "EquippedItemInfo", + "CastleTourTeleportInfo", "PropertyClass" ], - "hash": 1131635780, + "hash": 261078294, "properties": { - "m_itemID": { + "m_houseTemplateID": { "type": "unsigned int", "id": 0, "offset": 72, - "flags": 31, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 780964329 + "hash": 2326023642 }, - "m_baseColor": { - "type": "bui5", + "m_structureTemplateID": { + "type": "unsigned int", "id": 1, - "offset": 92, - "flags": 31, + "offset": 76, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1433198221 + "hash": 1037379271 }, - "m_trimColor": { - "type": "bui5", + "m_lotInstanceGID": { + "type": "gid", "id": 2, - "offset": 96, - "flags": 31, + "offset": 80, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1198446862 + "hash": 2010711536 }, - "m_pattern": { - "type": "bui5", + "m_structureInstanceGID": { + "type": "gid", "id": 3, - "offset": 100, - "flags": 31, + "offset": 88, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1338360593 + "hash": 2083588818 }, - "m_displayID": { - "type": "unsigned int", + "m_owningCharacterGID": { + "type": "gid", "id": 4, - "offset": 88, - "flags": 31, + "offset": 96, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1233846672 + "hash": 316234091 }, - "m_pJewelInfo": { - "type": "class SharedPointer", + "m_type": { + "type": "unsigned char", "id": 5, - "offset": 120, - "flags": 31, + "offset": 104, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 387523703 + "pointer": false, + "hash": 857501458 }, - "m_fullColor": { - "type": "u24", + "m_packedName": { + "type": "std::string", "id": 6, - "offset": 104, - "flags": 31, + "offset": 112, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 301226616 - } - } - }, - "1131100403": { - "name": "class BracketIDList", - "bases": [ - "PropertyClass" - ], - "hash": 1131100403, - "properties": { - "m_bracketIDList": { - "type": "gid", - "id": 0, - "offset": 72, - "flags": 31, - "container": "List", - "dynamic": true, + "hash": 1805208228 + }, + "m_rank": { + "type": "unsigned short", + "id": 7, + "offset": 144, + "flags": 7, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 1493156413 + "hash": 773386388 } } }, - "1130687527": { - "name": "class AvatarOption*", + "261862787": { + "name": "class SharedPointer", "bases": [ - "AvatarOptionBase", "PropertyClass" ], - "hash": 1130687527, + "hash": 261862787, "properties": { - "m_conditionFlags": { - "type": "std::string", + "m_flatParticipantList": { + "type": "class SharedPointer", "id": 0, - "offset": 72, - "flags": 7, - "container": "List", + "offset": 80, + "flags": 31, + "container": "Vector", "dynamic": true, "singleton": false, - "pointer": false, - "hash": 2483653903 + "pointer": true, + "hash": 3375244498 }, - "m_mesh": { - "type": "std::string", + "m_dynamicTeams": { + "type": "class SharedPointer", "id": 1, "offset": 104, - "flags": 131079, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1717328392 + "pointer": true, + "hash": 3227206264 }, - "m_noMesh": { - "type": "bool", + "m_dynamicTurn": { + "type": "unsigned int", "id": 2, - "offset": 168, - "flags": 7, + "offset": 120, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 760920637 + "hash": 1168494811 }, - "m_geometry": { - "type": "std::string", + "m_dynamicTurnSubcircles": { + "type": "unsigned int", "id": 3, - "offset": 136, - "flags": 7, + "offset": 124, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2041778855 - } - } - }, - "1541129692": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1541129692, - "properties": { - "m_templateID": { - "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 7, + "hash": 618930538 + }, + "m_dynamicTurnCounter": { + "type": "int", + "id": 4, + "offset": 128, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1286746870 + "hash": 543404296 }, - "m_positionX": { - "type": "float", - "id": 1, - "offset": 76, - "flags": 7, + "m_duelID.m_full": { + "type": "unsigned __int64", + "id": 5, + "offset": 72, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 837995844 + "hash": 1024980477 }, - "m_positionY": { + "m_planningTimer": { "type": "float", - "id": 2, - "offset": 80, - "flags": 7, + "id": 6, + "offset": 144, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 837995845 + "hash": 1142844143 }, - "m_positionZ": { - "type": "float", - "id": 3, - "offset": 84, - "flags": 7, + "m_position": { + "type": "class Vector3D", + "id": 7, + "offset": 148, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 837995846 + "hash": 3697900983 }, "m_yaw": { "type": "float", - "id": 4, - "offset": 88, - "flags": 7, + "id": 8, + "offset": 160, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, "hash": 357256328 - } - } - }, - "1540466964": { - "name": "class SharedPointer", - "bases": [ - "MoveBehavior::Controller", - "PropertyClass" - ], - "hash": 1540466964, - "properties": { - "m_bCollisionDisabled": { + }, + "m_disableTimer": { "type": "bool", - "id": 0, - "offset": 120, - "flags": 7, + "id": 9, + "offset": 179, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1732895577 + "hash": 1571862248 }, - "m_bVehicleMode": { + "m_tutorialMode": { "type": "bool", - "id": 1, - "offset": 121, - "flags": 7, + "id": 10, + "offset": 180, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1597295002 + "hash": 1704245836 }, - "m_fForwardModifier": { - "type": "float", - "id": 2, - "offset": 124, - "flags": 7, + "m_firstTeamToAct": { + "type": "int", + "id": 11, + "offset": 184, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1173988321 + "hash": 1499447620 }, - "m_fBackModifier": { - "type": "float", - "id": 3, - "offset": 128, - "flags": 7, + "m_combatResolver": { + "type": "class CombatResolver*", + "id": 12, + "offset": 136, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 148042045 + "pointer": true, + "hash": 1627811879 }, - "m_fStrafeModifier": { - "type": "float", - "id": 4, - "offset": 132, - "flags": 7, + "m_bPVP": { + "type": "bool", + "id": 13, + "offset": 176, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 226084913 + "hash": 221690795 }, - "m_fTurnModifier": { - "type": "float", - "id": 5, - "offset": 136, - "flags": 7, + "m_bBattleground": { + "type": "bool", + "id": 14, + "offset": 177, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2134998805 + "hash": 1158269184 }, - "m_fAccelerationModifier": { - "type": "float", - "id": 6, - "offset": 144, - "flags": 7, + "m_bRaid": { + "type": "bool", + "id": 15, + "offset": 178, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 592902742 + "hash": 791201781 }, - "m_fDecelerationModifier": { - "type": "float", - "id": 7, - "offset": 148, - "flags": 7, + "m_roundNum": { + "type": "int", + "id": 16, + "offset": 192, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1770082811 + "hash": 1461215570 }, - "m_bPaused": { - "type": "bool", - "id": 8, - "offset": 160, + "m_executionPhaseTimer": { + "type": "float", + "id": 17, + "offset": 200, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1899182391 + "hash": 1645062877 }, - "m_spCommand": { - "type": "class SharedPointer", - "id": 9, - "offset": 168, + "m_executionPhaseCombatActions": { + "type": "class CombatAction", + "id": 18, + "offset": 208, "flags": 31, - "container": "Static", - "dynamic": false, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": true, - "hash": 636010160 + "pointer": false, + "hash": 270648678 }, - "m_Queue": { - "type": "class SharedPointer", - "id": 10, - "offset": 184, + "m_sigilActions": { + "type": "class CombatAction", + "id": 19, + "offset": 224, "flags": 31, "container": "List", "dynamic": true, "singleton": false, - "pointer": true, - "hash": 1055578835 - } - } - }, - "360231646": { - "name": "class BehaviorTemplate", - "bases": [ - "PropertyClass" - ], - "hash": 360231646, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, + "pointer": false, + "hash": 2176432675 + }, + "m_shadowPipRule": { + "type": "class SharedPointer", + "id": 20, + "offset": 280, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 3130754092 - } - } - }, - "359972447": { - "name": "class SharedPointer", - "bases": [ - "Requirement", - "PropertyClass" - ], - "hash": 359972447, - "properties": { - "m_applyNOT": { - "type": "bool", - "id": 0, - "offset": 72, + "pointer": true, + "hash": 2692865990 + }, + "m_gameObjectAnimStateTracker": { + "type": "class GameObjectAnimStateTracker", + "id": 21, + "offset": 296, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1746328074, - "enum_options": { - "__DEFAULT": 0 - } + "hash": 3120084989 }, - "m_operator": { - "type": "enum Requirement::Operator", - "id": 1, - "offset": 76, + "m_duelPhase": { + "type": "enum kDuelPhase", + "id": 22, + "offset": 196, "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2672792317, + "hash": 1813818086, "enum_options": { - "ROP_AND": 0, - "ROP_OR": 1, - "__DEFAULT": "ROP_AND" + "kPhase_Starting": 0, + "kPhase_PrePlanning": 1, + "kPhase_Planning": 2, + "kPhase_PreExecution": 3, + "kPhase_Execution": 4, + "kPhase_Resolution": 5, + "kPhase_Victory": 6, + "kPhase_Ended": 7, + "kPhase_MAX": 10 } }, - "m_magicSchool": { - "type": "std::string", - "id": 2, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1597012900 - } - } - }, - "1131456754": { - "name": "class ReqHasQuest*", - "bases": [ - "Requirement", - "PropertyClass" - ], - "hash": 1131456754, - "properties": { - "m_applyNOT": { - "type": "bool", - "id": 0, - "offset": 72, + "m_duelModifier": { + "type": "class SharedPointer", + "id": 23, + "offset": 264, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1746328074, - "enum_options": { - "__DEFAULT": 0 - } + "pointer": true, + "hash": 3330438158 }, - "m_operator": { - "type": "enum Requirement::Operator", - "id": 1, - "offset": 76, + "m_initiativeSwitchMode": { + "type": "enum Duel::SigilInitiativeSwitchMode", + "id": 24, + "offset": 384, "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2672792317, + "hash": 1258091520, "enum_options": { - "ROP_AND": 0, - "ROP_OR": 1, - "__DEFAULT": "ROP_AND" + "InitiativeSwitchMode_None": 0, + "InitiativeSwitchMode_Reroll": 1, + "InitiativeSwitchMode_Switch": 2 } }, - "m_questName": { - "type": "std::string", - "id": 2, - "offset": 80, - "flags": 268435463, + "m_initiativeSwitchRounds": { + "type": "int", + "id": 25, + "offset": 388, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1702112846, - "enum_options": { - "__BASECLASS": "QuestTemplate" - } - } - } - }, - "1131100408": { - "name": "class BracketIDList*", - "bases": [ - "PropertyClass" - ], - "hash": 1131100408, - "properties": { - "m_bracketIDList": { - "type": "gid", - "id": 0, - "offset": 72, + "hash": 540229885 + }, + "m_combatRules": { + "type": "class SharedPointer", + "id": 26, + "offset": 464, "flags": 31, "container": "List", "dynamic": true, "singleton": false, - "pointer": false, - "hash": 1493156413 - } - } - }, - "1541201065": { - "name": "class FontMapping*", - "bases": [ - "PropertyClass" - ], - "hash": 1541201065, - "properties": { - "m_symbol": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, + "pointer": true, + "hash": 3327225763 + }, + "m_gameEffectInfo": { + "type": "class SharedPointer", + "id": 27, + "offset": 496, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2275096584 + }, + "m_pStatEffects": { + "type": "class SharedPointer", + "id": 28, + "offset": 512, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 2464821841 + "pointer": true, + "hash": 1275229758 }, - "m_face": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 7, + "m_alternateTurnCombatRule": { + "type": "class SharedPointer", + "id": 29, + "offset": 480, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1717071946 + "pointer": true, + "hash": 1715882395 }, - "m_italic": { - "type": "bool", - "id": 2, - "offset": 136, - "flags": 7, + "m_altTurnCounter": { + "type": "int", + "id": 30, + "offset": 456, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 571899305 + "hash": 1434810564 }, - "m_bold": { - "type": "bool", - "id": 3, - "offset": 137, - "flags": 7, + "m_originalFirstTeamToAct": { + "type": "int", + "id": 31, + "offset": 188, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 221725300 - } - } - }, - "364170412": { - "name": "class PhysicsSim", - "bases": [ - "BaseZone::BaseSimulation", - "PropertyClass" - ], - "hash": 364170412, - "properties": {} - }, - "1131615316": { - "name": "struct PetDerbyActionData", - "bases": [], - "hash": 1131615316, - "properties": {} - }, - "1544126745": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1544126745, - "properties": {} - }, - "361756972": { - "name": "class ClientDerbyTeleport", - "bases": [ - "DerbyTeleport", - "DerbyEffect", - "PropertyClass" - ], - "hash": 361756972, - "properties": { - "m_buffType": { - "type": "enum DerbyTalentBuffType", - "id": 0, - "offset": 92, + "hash": 560350457 + }, + "m_executionOrder": { + "type": "enum kDuelExecutionOrder", + "id": 32, + "offset": 528, "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1149251982, + "hash": 3362082097, "enum_options": { - "Buff": 0, - "Debuff": 1, - "Neither": 2 + "kDEO_Sequential": 0, + "kDEO_Alternating": 1 } }, - "m_kTarget": { - "type": "enum DerbyTargetType", - "id": 1, - "offset": 96, - "flags": 2097159, + "m_noHenchmen": { + "type": "bool", + "id": 33, + "offset": 532, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1807803351, - "enum_options": { - "kTargetInFront": 0, - "kTargetBehind": 1, - "kTargetFirst": 2, - "kTargetSelf": 3, - "kTargetAll": 4, - "kTargetLast": 5 - } + "hash": 1163855414 }, - "m_nDuration": { - "type": "int", - "id": 2, - "offset": 104, + "m_SpellTruncation": { + "type": "bool", + "id": 34, + "offset": 540, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1110167982 + "hash": 1257440762 }, - "m_effectID": { - "type": "unsigned int", - "id": 3, - "offset": 88, - "flags": 24, + "m_shadowThresholdFactor": { + "type": "float", + "id": 35, + "offset": 548, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2347630439 + "hash": 2104355177 }, - "m_imageFilename": { - "type": "std::string", - "id": 4, - "offset": 112, - "flags": 131103, + "m_shadowPipRatingFactor": { + "type": "float", + "id": 36, + "offset": 552, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2813328063 + "hash": 1061434314 }, - "m_iconIndex": { - "type": "unsigned int", - "id": 5, - "offset": 144, + "m_defaultShadowPipRating": { + "type": "float", + "id": 37, + "offset": 556, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1265133262 + "hash": 1544572080 }, - "m_soundOnActivate": { - "type": "std::string", - "id": 6, - "offset": 152, - "flags": 131103, + "m_shadowPipThresholdTeam0": { + "type": "float", + "id": 38, + "offset": 560, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1956929714 + "hash": 447039594 }, - "m_soundOnTarget": { - "type": "std::string", - "id": 7, - "offset": 184, - "flags": 131103, + "m_shadowPipThresholdTeam1": { + "type": "float", + "id": 39, + "offset": 564, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3444214056 + "hash": 447039595 }, - "m_targetParticleEffect": { - "type": "std::string", - "id": 8, - "offset": 216, - "flags": 131103, + "m_maxArchmasteryTeam0": { + "type": "float", + "id": 40, + "offset": 568, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3048234723 + "hash": 300185527 }, - "m_overheadMessage": { - "type": "std::string", - "id": 9, - "offset": 248, - "flags": 8388639, + "m_maxArchmasteryTeam1": { + "type": "float", + "id": 41, + "offset": 572, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1701018190 + "hash": 300185528 }, - "m_requirements": { - "type": "class RequirementList", - "id": 10, - "offset": 280, + "m_scalarDamage": { + "type": "float", + "id": 42, + "offset": 600, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2840988582 + "hash": 1865068300 }, - "m_kTeleportToTarget": { - "type": "enum DerbyTargetType", - "id": 11, - "offset": 376, - "flags": 2097183, + "m_scalarResist": { + "type": "float", + "id": 43, + "offset": 604, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3096289769, - "enum_options": { - "kTargetInFront": 0, - "kTargetBehind": 1, - "kTargetFirst": 2, - "kTargetSelf": 3, - "kTargetAll": 4, - "kTargetLast": 5 - } - } - } - }, - "1543460596": { - "name": "class CrownShopPurchase*", - "bases": [ - "PropertyClass" - ], - "hash": 1543460596, - "properties": { - "m_templateID": { - "type": "unsigned int", - "id": 0, - "offset": 72, + "hash": 270448583 + }, + "m_scalarPierce": { + "type": "float", + "id": 44, + "offset": 608, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1286746870 + "hash": 196427621 }, - "m_lastPurchaseTimeSec": { - "type": "unsigned __int64", - "id": 1, - "offset": 80, + "m_damageLimit": { + "type": "float", + "id": 45, + "offset": 612, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1926562290 - } - } - }, - "361034463": { - "name": "class SharedPointer", - "bases": [ - "ActorDialogCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 361034463, - "properties": { - "m_timeOffset": { + "hash": 271286357 + }, + "m_dK0": { "type": "float", - "id": 0, - "offset": 72, - "flags": 7, + "id": 46, + "offset": 616, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 + "hash": 357232662 }, - "m_dialog": { - "type": "class ActorDialog*", - "id": 1, - "offset": 80, - "flags": 7, + "m_dN0": { + "type": "float", + "id": 47, + "offset": 620, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1310859212 + "pointer": false, + "hash": 357232761 }, - "m_activePersona": { - "type": "std::string", - "id": 2, - "offset": 88, - "flags": 7, + "m_resistLimit": { + "type": "float", + "id": 48, + "offset": 624, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1972573231 - } - } - }, - "2009580485": { - "name": "class SharedPointer", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 2009580485, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, + "hash": 1192834544 + }, + "m_rK0": { + "type": "float", + "id": 49, + "offset": 628, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 + "hash": 357247908 }, - "m_nHeadHandsModel": { - "type": "bui2", - "id": 1, - "offset": 112, - "flags": 63, + "m_rN0": { + "type": "float", + "id": 50, + "offset": 632, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 998846322 + "hash": 357248007 }, - "m_nHairModel": { - "type": "bui4", - "id": 2, - "offset": 116, - "flags": 63, + "m_fullPartyGroup": { + "type": "bool", + "id": 51, + "offset": 636, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1416543510 + "hash": 1888593059 }, - "m_nHatModel": { - "type": "bui2", - "id": 3, - "offset": 120, - "flags": 63, + "m_matchTimer": { + "type": "float", + "id": 52, + "offset": 656, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1927990831 + "hash": 1510935909 }, - "m_nTorsoModel": { - "type": "bui2", - "id": 4, - "offset": 124, - "flags": 63, + "m_bonusTime": { + "type": "int", + "id": 53, + "offset": 660, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1482907529 + "hash": 1757496496 }, - "m_nFeetModel": { - "type": "bui2", - "id": 5, - "offset": 128, - "flags": 63, + "m_passPenalty": { + "type": "int", + "id": 54, + "offset": 664, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1832619222 + "hash": 982951662 }, - "m_nWandModel": { - "type": "bui2", - "id": 6, - "offset": 132, - "flags": 63, + "m_yellowTime": { + "type": "int", + "id": 55, + "offset": 668, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 133255964 + "hash": 1017028741 }, - "m_nSkinColor": { - "type": "bui4", - "id": 7, - "offset": 136, - "flags": 63, + "m_redTime": { + "type": "int", + "id": 56, + "offset": 672, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 105936053 + "hash": 1909556708 }, - "m_nSkinDecal": { - "type": "bui4", - "id": 8, - "offset": 140, - "flags": 63, + "m_minTurnTime": { + "type": "int", + "id": 57, + "offset": 676, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 106752335 + "hash": 652524886 }, - "m_nHairColor": { - "type": "bui7", - "id": 9, - "offset": 144, - "flags": 63, + "m_bIsPlayerTimedDuel": { + "type": "bool", + "id": 58, + "offset": 637, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1404660580 + "hash": 857311611 }, - "m_nHatColor": { - "type": "bui5", - "id": 10, - "offset": 148, - "flags": 63, + "m_hideNoncombatantDistance": { + "type": "float", + "id": 59, + "offset": 536, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1916370045 - }, - "m_nHatDecal": { - "type": "bui5", - "id": 11, - "offset": 152, - "flags": 63, + "hash": 1733017888 + } + } + }, + "262599308": { + "name": "class SharedPointer", + "bases": [ + "SpawnActorCinematicAction", + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 262599308, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1917186327 + "hash": 2237098605 }, - "m_nTorsoColor": { - "type": "bui5", - "id": 12, - "offset": 156, - "flags": 63, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1471286743 + "hash": 2285866132 }, - "m_nTorsoDecal": { - "type": "bui5", - "id": 13, - "offset": 160, - "flags": 63, + "m_objectInfo": { + "type": "class CoreObjectInfo*", + "id": 2, + "offset": 120, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1472103025 + "pointer": true, + "hash": 1373700953 }, - "m_nTorsoDecal2": { - "type": "bui5", - "id": 14, - "offset": 164, - "flags": 63, + "m_bStartHidden": { + "type": "bool", + "id": 3, + "offset": 128, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1310258307 - }, - "m_nFeetColor": { - "type": "bui5", - "id": 15, - "offset": 168, - "flags": 63, + "hash": 1939845615 + } + } + }, + "262341653": { + "name": "class SharedPointer", + "bases": [ + "MobAggroBehavior", + "AggroBehavior", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 262341653, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1820998436 - }, - "m_nFeetDecal": { - "type": "bui5", - "id": 16, - "offset": 172, - "flags": 63, + "hash": 223437287 + } + } + }, + "8699517": { + "name": "class CombatObserver*", + "bases": [ + "PropertyClass" + ], + "hash": 8699517, + "properties": {} + }, + "262076113": { + "name": "class ClientMountOwnerBehavior*", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 262076113, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1821814718 + "hash": 223437287 }, - "m_eGender": { + "m_gender": { "type": "enum eGender", - "id": 17, + "id": 1, "offset": 176, - "flags": 2097215, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2776344943, + "hash": 2121766730, "enum_options": { "Male": 1, "Female": 0, "Neutral": 2 } }, - "m_eRace": { + "m_race": { "type": "enum eRace", - "id": 18, + "id": 2, "offset": 180, - "flags": 2097215, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 963057554, + "hash": 390582957, "enum_options": { "Bat": 88066, "BatLightning": 1472842576, @@ -441389,95 +140949,10567 @@ "PP_Fairy_Fire": 1847789544, "MNT_Mustang_B": 1448793691, "PP_FireElfMyth": 1933609060, - "MNT_KT-BoatRide": 1560860110 + "MNT_KT-BoatRide": 1560860110, + "MNT_ShadowMagic": 2095978357, + "MNT_MardiGrasFloat_A": 1740674432, + "PP_ChineseNYSnake": 988201940, + "MNT_AnubisDog": 1995079956, + "PP_ShadowImp_A": 1604849432, + "PP_ShadowImp_B": 1604849438, + "PP_ShadowImp_C": 1604849436, + "MNT_ShadowMagic_B": 2093870965, + "MNT_ShadowMagic_C": 2093805429, + "Guest_KT_SE_Tritops_Warrior_I_01": 97516901, + "Guest_KT_SE_DS_Draconian_Model_01": 1916095079, + "Guest_KT_SE_Beetle_Scarab_C_01_L50": 1064004307, + "Guest_KT_SE_Roach_Warrior_C_03": 1872574203, + "Guest_KT_SE_Roach_Warrior_C_04": 1871918843, + "Guest_KT_SE_Roach_Warrior_C_05": 1871787771, + "Guest_KT_SE_Beetle_Scarab_C_01": 1353410759, + "Guest_KT_SE_Mander_Citizen_B_01_L50": 2044509396, + "Guest_KT_SE_Mander_CitizenF_B_01_L50": 164327682, + "Guest_KT_SE_Treant_Tormented_A_01": 1359800879, + "Guest_KT_SE_Treant_Base_A_01": 765512948, + "Guest_KT_SE_Mander_Citizen_F_D_05": 171244620, + "Guest_KT_SE_Mander_CitizenF_D_01": 163791037, + "Guest_KT_SE_Mander_CitizenF_D_02": 298008765, + "Guest_KT_SE_Mander_CitizenF_D_03": 432226493, + "Guest_KT_SE_Mander_CitizenF_D_04": 566444221, + "Guest_KT_SE_Mander_MummyF_A_01": 964349080, + "Guest_KT_SE_Mander_MummyF_A_02": 964480152, + "Guest_KT_SE_MC_Wraith_Model_01": 1101442118, + "Guest_KT_SE_Mander_CitizenF_B_02": 298000573, + "MNT_Wheelbarrow": 614248817, + "MNT_StubbornLlama": 221089074 + } + }, + "m_eMountType": { + "type": "enum eMountType", + "id": 3, + "offset": 184, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3097765662, + "enum_options": { + "eMNT_Standard": 0, + "eMNT_Floating": 1 + } + }, + "m_primaryColor": { + "type": "int", + "id": 4, + "offset": 188, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 900965981 + }, + "m_secondaryColor": { + "type": "int", + "id": 5, + "offset": 192, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1616550081 + }, + "m_patternColor": { + "type": "int", + "id": 6, + "offset": 196, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1304790295 + }, + "m_adjustableAnimationRate": { + "type": "bool", + "id": 7, + "offset": 200, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 698897022 + }, + "m_geometryOption": { + "type": "int", + "id": 8, + "offset": 204, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1776153279 + }, + "m_lastMountID": { + "type": "gid", + "id": 9, + "offset": 168, + "flags": 33554491, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1112551276 + } + } + }, + "262453194": { + "name": "enum ControlTab::TabAlignment", + "bases": [], + "hash": 262453194, + "properties": {} + }, + "262747104": { + "name": "class GuildChatList*", + "bases": [ + "PropertyClass" + ], + "hash": 262747104, + "properties": { + "m_guildChatList": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2707919623 + } + } + }, + "262722099": { + "name": "class ZoneTokenTimer*", + "bases": [ + "ZoneTokenBase", + "PropertyClass" + ], + "hash": 262722099, + "properties": { + "m_debugName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3553984419 + }, + "m_adjectiveList": { + "type": "std::string", + "id": 1, + "offset": 104, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 3195213318 + }, + "m_icon": { + "type": "std::string", + "id": 2, + "offset": 120, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1717182340 + }, + "m_iconBW": { + "type": "std::string", + "id": 3, + "offset": 152, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2047461085 + }, + "m_description": { + "type": "std::string", + "id": 4, + "offset": 184, + "flags": 8388639, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1649374815 + }, + "m_displayMode": { + "type": "enum ZTDisplayMode", + "id": 5, + "offset": 216, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2216526410, + "enum_options": { + "ZTDM_Shown": 0, + "ZTDM_Discoverable": 1, + "ZTDM_Hidden": 2 + } + }, + "m_storage": { + "type": "enum ZTStorage", + "id": 6, + "offset": 220, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2290454852, + "enum_options": { + "ZTS_Player": 0, + "ZTS_Zone": 1 + } + }, + "m_onEnable": { + "type": "class SharedPointer", + "id": 7, + "offset": 224, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2591736864 + }, + "m_onDiscover": { + "type": "class SharedPointer", + "id": 8, + "offset": 240, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2826026872 + }, + "m_onDisable": { + "type": "class SharedPointer", + "id": 9, + "offset": 256, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1860656717 + }, + "m_sourceID": { + "type": "gid", + "id": 10, + "offset": 272, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1134700470 + }, + "m_inZone": { + "type": "bool", + "id": 11, + "offset": 280, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 564535654 + }, + "m_enabled": { + "type": "bool", + "id": 12, + "offset": 281, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 504506718 + }, + "m_discovered": { + "type": "bool", + "id": 13, + "offset": 282, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2060478331 + }, + "m_duration": { + "type": "std::string", + "id": 14, + "offset": 288, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2327821921 + }, + "m_onExpire": { + "type": "class SharedPointer", + "id": 15, + "offset": 320, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2604142950 + }, + "m_timeTriggers": { + "type": "class SharedPointer", + "id": 16, + "offset": 336, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1112107844 + }, + "m_expireTime": { + "type": "unsigned int", + "id": 17, + "offset": 356, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1836304873 + } + } + }, + "262722195": { + "name": "class ZoneTokenTimer", + "bases": [ + "ZoneTokenBase", + "PropertyClass" + ], + "hash": 262722195, + "properties": { + "m_debugName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3553984419 + }, + "m_adjectiveList": { + "type": "std::string", + "id": 1, + "offset": 104, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 3195213318 + }, + "m_icon": { + "type": "std::string", + "id": 2, + "offset": 120, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1717182340 + }, + "m_iconBW": { + "type": "std::string", + "id": 3, + "offset": 152, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2047461085 + }, + "m_description": { + "type": "std::string", + "id": 4, + "offset": 184, + "flags": 8388639, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1649374815 + }, + "m_displayMode": { + "type": "enum ZTDisplayMode", + "id": 5, + "offset": 216, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2216526410, + "enum_options": { + "ZTDM_Shown": 0, + "ZTDM_Discoverable": 1, + "ZTDM_Hidden": 2 + } + }, + "m_storage": { + "type": "enum ZTStorage", + "id": 6, + "offset": 220, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2290454852, + "enum_options": { + "ZTS_Player": 0, + "ZTS_Zone": 1 + } + }, + "m_onEnable": { + "type": "class SharedPointer", + "id": 7, + "offset": 224, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2591736864 + }, + "m_onDiscover": { + "type": "class SharedPointer", + "id": 8, + "offset": 240, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2826026872 + }, + "m_onDisable": { + "type": "class SharedPointer", + "id": 9, + "offset": 256, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1860656717 + }, + "m_sourceID": { + "type": "gid", + "id": 10, + "offset": 272, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1134700470 + }, + "m_inZone": { + "type": "bool", + "id": 11, + "offset": 280, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 564535654 + }, + "m_enabled": { + "type": "bool", + "id": 12, + "offset": 281, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 504506718 + }, + "m_discovered": { + "type": "bool", + "id": 13, + "offset": 282, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2060478331 + }, + "m_duration": { + "type": "std::string", + "id": 14, + "offset": 288, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2327821921 + }, + "m_onExpire": { + "type": "class SharedPointer", + "id": 15, + "offset": 320, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2604142950 + }, + "m_timeTriggers": { + "type": "class SharedPointer", + "id": 16, + "offset": 336, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1112107844 + }, + "m_expireTime": { + "type": "unsigned int", + "id": 17, + "offset": 356, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1836304873 + } + } + }, + "262747109": { + "name": "class GuildChatList", + "bases": [ + "PropertyClass" + ], + "hash": 262747109, + "properties": { + "m_guildChatList": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2707919623 + } + } + }, + "263763107": { + "name": "class PetTalentCountControl", + "bases": [ + "Window", + "PropertyClass" + ], + "hash": 263763107, + "properties": { + "m_sName": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306437263 + }, + "m_Children": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 65667, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621225959 + }, + "m_Style": { + "type": "unsigned int", + "id": 2, + "offset": 152, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "SCALE_CHILDREN": 2, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "FOCUS_LOCKED": 64, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152 + } + }, + "m_Flags": { + "type": "unsigned int", + "id": 3, + "offset": 156, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } + }, + "m_Window": { + "type": "class Rect", + "id": 4, + "offset": 160, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3105139380 + }, + "m_fTargetAlpha": { + "type": "float", + "id": 5, + "offset": 212, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1809129834 + }, + "m_fDisabledAlpha": { + "type": "float", + "id": 6, + "offset": 216, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1389987675 + }, + "m_fAlpha": { + "type": "float", + "id": 7, + "offset": 208, + "flags": 65671, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 482130755 + }, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3623628394 + }, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2102211316 + }, + "m_sScript": { + "type": "std::string", + "id": 10, + "offset": 352, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1846695875 + }, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3389835433 + }, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547159940 + }, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513510520 + }, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3091503757 + } + } + }, + "263498549": { + "name": "class SharedPointer", + "bases": [ + "LootInfo", + "LootInfoBase", + "PropertyClass" + ], + "hash": 263498549, + "properties": { + "m_lootType": { + "type": "enum LootInfo::LOOT_TYPE", + "id": 0, + "offset": 72, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1591891442, + "enum_options": { + "LOOT_TYPE_NONE": 0, + "LOOT_TYPE_GOLD": 1, + "LOOT_TYPE_MANA": 2, + "LOOT_TYPE_ITEM": 3, + "LOOT_TYPE_TREASURE_CARD": 4, + "LOOT_TYPE_MAGIC_XP": 5, + "LOOT_TYPE_ADD_SPELL": 6, + "LOOT_TYPE_MAX_HEALTH": 7, + "LOOT_TYPE_MAX_GOLD": 8, + "LOOT_TYPE_MAX_MANA": 9, + "LOOT_TYPE_MAX_POTION": 10, + "LOOT_TYPE_TRAINING_POINTS": 11, + "LOOT_TYPE_RECIPE": 12, + "LOOT_TYPE_CRAFTING_SLOT": 13, + "LOOT_TYPE_REAGENT": 14, + "LOOT_TYPE_PETSNACK": 15, + "LOOT_TYPE_GARDENING_XP": 16, + "LOOT_TYPE_PET_XP": 17, + "LOOT_TYPE_TREASURE_TABLE": 18, + "LOOT_TYPE_ARENA_POINTS": 19, + "LOOT_TYPE_ARENA_BONUS_POINTS": 20, + "LOOT_TYPE_GROUP": 21, + "LOOT_TYPE_FISHING_XP": 22, + "LOOT_TYPE_EVENT_CURRENCY_1": 24, + "LOOT_TYPE_EVENT_CURRENCY_2": 25, + "LOOT_TYPE_PVP_CURRENCY": 26, + "LOOT_TYPE_PVP_CURRENCY_BONUS": 27, + "LOOT_TYPE_PVP_TOURNEY_CURRENCY": 28, + "LOOT_TYPE_PVP_TOURNEY_CURRENCY_BONUS": 29, + "LOOT_TYPE_FURNITURE_ESSENCE": 30 + } + }, + "m_magicSchool": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1597012900 + }, + "m_experience": { + "type": "int", + "id": 2, + "offset": 112, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 759357570 + } + } + }, + "263301275": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 263301275, + "properties": { + "m_position": { + "type": "class Vector3D", + "id": 0, + "offset": 88, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3697900983 + }, + "m_pitch": { + "type": "float", + "id": 1, + "offset": 100, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 896371695 + }, + "m_roll": { + "type": "float", + "id": 2, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 310020272 + }, + "m_yaw": { + "type": "float", + "id": 3, + "offset": 108, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 357256328 + }, + "m_fHeight": { + "type": "float", + "id": 4, + "offset": 132, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 401539638 + }, + "m_scale": { + "type": "float", + "id": 5, + "offset": 112, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 899693439 + } + } + }, + "263197046": { + "name": "class SharedPointer", + "bases": [ + "Window", + "PropertyClass" + ], + "hash": 263197046, + "properties": { + "m_sName": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306437263 + }, + "m_Children": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621225959 + }, + "m_Style": { + "type": "unsigned int", + "id": 2, + "offset": 152, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "SCALE_CHILDREN": 2, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "FOCUS_LOCKED": 64, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152 + } + }, + "m_Flags": { + "type": "unsigned int", + "id": 3, + "offset": 156, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } + }, + "m_Window": { + "type": "class Rect", + "id": 4, + "offset": 160, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3105139380 + }, + "m_fTargetAlpha": { + "type": "float", + "id": 5, + "offset": 212, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1809129834 + }, + "m_fDisabledAlpha": { + "type": "float", + "id": 6, + "offset": 216, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1389987675 + }, + "m_fAlpha": { + "type": "float", + "id": 7, + "offset": 208, + "flags": 65671, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 482130755 + }, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3623628394 + }, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2102211316 + }, + "m_sScript": { + "type": "std::string", + "id": 10, + "offset": 352, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1846695875 + }, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3389835433 + }, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547159940 + }, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513510520 + }, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3091503757 + } + } + }, + "263471392": { + "name": "class SharedPointer", + "bases": [ + "Window", + "PropertyClass" + ], + "hash": 263471392, + "properties": { + "m_sName": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306437263 + }, + "m_Children": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 65667, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621225959 + }, + "m_Style": { + "type": "unsigned int", + "id": 2, + "offset": 152, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "SCALE_CHILDREN": 2, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "FOCUS_LOCKED": 64, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152 + } + }, + "m_Flags": { + "type": "unsigned int", + "id": 3, + "offset": 156, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } + }, + "m_Window": { + "type": "class Rect", + "id": 4, + "offset": 160, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3105139380 + }, + "m_fTargetAlpha": { + "type": "float", + "id": 5, + "offset": 212, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1809129834 + }, + "m_fDisabledAlpha": { + "type": "float", + "id": 6, + "offset": 216, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1389987675 + }, + "m_fAlpha": { + "type": "float", + "id": 7, + "offset": 208, + "flags": 65671, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 482130755 + }, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3623628394 + }, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2102211316 + }, + "m_sScript": { + "type": "std::string", + "id": 10, + "offset": 352, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1846695875 + }, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3389835433 + }, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547159940 + }, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513510520 + }, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3091503757 + } + } + }, + "263762339": { + "name": "class PetTalentCountControl*", + "bases": [ + "Window", + "PropertyClass" + ], + "hash": 263762339, + "properties": { + "m_sName": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306437263 + }, + "m_Children": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 65667, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621225959 + }, + "m_Style": { + "type": "unsigned int", + "id": 2, + "offset": 152, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "SCALE_CHILDREN": 2, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "FOCUS_LOCKED": 64, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152 + } + }, + "m_Flags": { + "type": "unsigned int", + "id": 3, + "offset": 156, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } + }, + "m_Window": { + "type": "class Rect", + "id": 4, + "offset": 160, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3105139380 + }, + "m_fTargetAlpha": { + "type": "float", + "id": 5, + "offset": 212, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1809129834 + }, + "m_fDisabledAlpha": { + "type": "float", + "id": 6, + "offset": 216, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1389987675 + }, + "m_fAlpha": { + "type": "float", + "id": 7, + "offset": 208, + "flags": 65671, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 482130755 + }, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3623628394 + }, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2102211316 + }, + "m_sScript": { + "type": "std::string", + "id": 10, + "offset": 352, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1846695875 + }, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3389835433 + }, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547159940 + }, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513510520 + }, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3091503757 + } + } + }, + "264876985": { + "name": "class CrownsRewardsEventData*", + "bases": [ + "PropertyClass" + ], + "hash": 264876985, + "properties": { + "m_eventName": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3493260286 + }, + "m_startTime": { + "type": "unsigned __int64", + "id": 1, + "offset": 112, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1859690486 + }, + "m_endTime": { + "type": "unsigned __int64", + "id": 2, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 977798847 + }, + "m_active": { + "type": "bool", + "id": 3, + "offset": 128, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 239335471 + } + } + }, + "264647145": { + "name": "class FriendlyPlayerQuestInfo", + "bases": [ + "PropertyClass" + ], + "hash": 264647145, + "properties": { + "m_characterIDList": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 689466254 + }, + "m_questNameList": { + "type": "std::string", + "id": 1, + "offset": 88, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 3221150474 + } + } + }, + "264234337": { + "name": "class SharedPointer", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 264234337, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_polyCategoryInactiveToRedTeamPlayers": { + "type": "gid", + "id": 1, + "offset": 112, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 757020210 + }, + "m_polyCategoryUnavailableToRedTeamPlayers": { + "type": "gid", + "id": 2, + "offset": 128, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1382977667 + }, + "m_polyCategoryInactiveToBlueTeamPlayers": { + "type": "gid", + "id": 3, + "offset": 144, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1877669599 + }, + "m_polyCategoryUnavailableToBlueTeamPlayers": { + "type": "gid", + "id": 4, + "offset": 160, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1059429200 + } + } + }, + "264197323": { + "name": "class std::list >", + "bases": [], + "hash": 264197323, + "properties": {} + }, + "264593925": { + "name": "class WeightedEntryT*", + "bases": [ + "WeightedEntry", + "PropertyClass" + ], + "hash": 264593925, + "properties": { + "m_weight": { + "type": "unsigned int", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1311209301 + }, + "m_entry": { + "type": "class SplashCinematicInfo", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1951897293 + } + } + }, + "264836025": { + "name": "class CrownsRewardsEventData", + "bases": [ + "PropertyClass" + ], + "hash": 264836025, + "properties": { + "m_eventName": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3493260286 + }, + "m_startTime": { + "type": "unsigned __int64", + "id": 1, + "offset": 112, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1859690486 + }, + "m_endTime": { + "type": "unsigned __int64", + "id": 2, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 977798847 + }, + "m_active": { + "type": "bool", + "id": 3, + "offset": 128, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 239335471 + } + } + }, + "1000791117": { + "name": "class Color", + "bases": [], + "hash": 1000791117, + "properties": {} + }, + "264962611": { + "name": "class ChaseCamController*", + "bases": [ + "CameraController", + "PropertyClass" + ], + "hash": 264962611, + "properties": {} + }, + "266780779": { + "name": "class ClientEventDrivenCinematic*", + "bases": [ + "ClientCinematic", + "Cinematic", + "PropertyClass" + ], + "hash": 266780779, + "properties": {} + }, + "266713393": { + "name": "class AttachParticleActorCinematicAction*", + "bases": [ + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 266713393, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + }, + "m_effectName": { + "type": "std::string", + "id": 2, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2029161513 + }, + "m_nodeName": { + "type": "std::string", + "id": 3, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3607089954 + }, + "m_assetName": { + "type": "std::string", + "id": 4, + "offset": 184, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513131580 + } + } + }, + "265433577": { + "name": "class FriendlyPlayerQuestInfo*", + "bases": [ + "PropertyClass" + ], + "hash": 265433577, + "properties": { + "m_characterIDList": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 689466254 + }, + "m_questNameList": { + "type": "std::string", + "id": 1, + "offset": 88, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 3221150474 + } + } + }, + "265352966": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 265352966, + "properties": { + "m_assetName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513131580 + }, + "m_attachmentNode": { + "type": "std::string", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1683933674 + }, + "m_soundTemplate": { + "type": "unsigned int", + "id": 2, + "offset": 136, + "flags": 33554439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 611925458 + }, + "m_loop": { + "type": "bool", + "id": 3, + "offset": 140, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 222084781 + }, + "m_fireAndForget": { + "type": "bool", + "id": 4, + "offset": 141, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 531791155 + } + } + }, + "266711857": { + "name": "class AttachParticleActorCinematicAction", + "bases": [ + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 266711857, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + }, + "m_effectName": { + "type": "std::string", + "id": 2, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2029161513 + }, + "m_nodeName": { + "type": "std::string", + "id": 3, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3607089954 + }, + "m_assetName": { + "type": "std::string", + "id": 4, + "offset": 184, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513131580 + } + } + }, + "1097610666": { + "name": "class SharedPointer", + "bases": [ + "InvisibilityEffect", + "GameEffectBase", + "PropertyClass" + ], + "hash": 1097610666, + "properties": { + "m_currentTickCount": { + "type": "double", + "id": 0, + "offset": 80, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2533274692 + }, + "m_effectNameID": { + "type": "unsigned int", + "id": 1, + "offset": 96, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1204067144 + }, + "m_bIsOnPet": { + "type": "bool", + "id": 2, + "offset": 73, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 522593303 + }, + "m_originatorID": { + "type": "gid", + "id": 3, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1131810019 + }, + "m_itemSlotID": { + "type": "unsigned int", + "id": 4, + "offset": 112, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1895747595 + }, + "m_internalID": { + "type": "int", + "id": 5, + "offset": 92, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1643137924 + }, + "m_endTime": { + "type": "unsigned int", + "id": 6, + "offset": 88, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 716479635 + } + } + }, + "1958082306": { + "name": "class SharedPointer", + "bases": [ + "GameEffectTemplate", + "PropertyClass" + ], + "hash": 1958082306, + "properties": { + "m_effectName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2029161513 + }, + "m_effectCategory": { + "type": "std::string", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1852673222 + }, + "m_sortOrder": { + "type": "int", + "id": 2, + "offset": 148, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1411218206 + }, + "m_duration": { + "type": "double", + "id": 3, + "offset": 192, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2727932435 + }, + "m_stackingCategories": { + "type": "std::string", + "id": 4, + "offset": 160, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1774497525 + }, + "m_isPersistent": { + "type": "bool", + "id": 5, + "offset": 153, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 923861920 + }, + "m_bIsOnPet": { + "type": "bool", + "id": 6, + "offset": 154, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 522593303 + }, + "m_isPublic": { + "type": "bool", + "id": 7, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1728439822 + }, + "m_visualEffectAddName": { + "type": "std::string", + "id": 8, + "offset": 200, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3382086694 + }, + "m_visualEffectRemoveName": { + "type": "std::string", + "id": 9, + "offset": 232, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1541697323 + }, + "m_onAddFunctorName": { + "type": "std::string", + "id": 10, + "offset": 280, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1561843107 + }, + "m_onRemoveFunctorName": { + "type": "std::string", + "id": 11, + "offset": 312, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2559017864 + }, + "m_stackingRule": { + "type": "enum STACKING_RULE", + "id": 12, + "offset": 144, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 431568889, + "enum_options": { + "STACKING_ALLOWED": 0, + "STACKING_NOSTACK": 1, + "STACKING_REPLACE": 2 + } + }, + "m_triggerName": { + "type": "std::string", + "id": 13, + "offset": 360, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3100183568 + } + } + }, + "1097602169": { + "name": "class CrownShopOffering*", + "bases": [ + "PropertyClass" + ], + "hash": 1097602169, + "properties": { + "m_boosterPacks": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1546992872 + }, + "m_shopType": { + "type": "int", + "id": 1, + "offset": 88, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 446675542 + } + } + }, + "1529115504": { + "name": "class ItemFinderOption", + "bases": [ + "ServiceOptionBase", + "PropertyClass" + ], + "hash": 1529115504, + "properties": { + "m_serviceName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2206028813 + }, + "m_iconKey": { + "type": "std::string", + "id": 1, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2457138637 + }, + "m_displayKey": { + "type": "std::string", + "id": 2, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3023276954 + }, + "m_serviceIndex": { + "type": "unsigned int", + "id": 3, + "offset": 204, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2103126710 + }, + "m_forceInteract": { + "type": "bool", + "id": 4, + "offset": 200, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1705789564 + } + } + }, + "676553067": { + "name": "class RaidPortalBehavior", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 676553067, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_active": { + "type": "bool", + "id": 1, + "offset": 112, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 239335471 + } + } + }, + "1528791825": { + "name": "class SharedPointer", + "bases": [ + "PlayerController", + "MoveBehavior::Controller", + "PropertyClass" + ], + "hash": 1528791825, + "properties": { + "m_bCollisionDisabled": { + "type": "bool", + "id": 0, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1732895577 + }, + "m_bVehicleMode": { + "type": "bool", + "id": 1, + "offset": 121, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1597295002 + }, + "m_fForwardModifier": { + "type": "float", + "id": 2, + "offset": 124, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1173988321 + }, + "m_fBackModifier": { + "type": "float", + "id": 3, + "offset": 128, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 148042045 + }, + "m_fStrafeModifier": { + "type": "float", + "id": 4, + "offset": 132, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 226084913 + }, + "m_fTurnModifier": { + "type": "float", + "id": 5, + "offset": 136, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2134998805 + }, + "m_fAccelerationModifier": { + "type": "float", + "id": 6, + "offset": 144, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 592902742 + }, + "m_fDecelerationModifier": { + "type": "float", + "id": 7, + "offset": 148, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1770082811 + } + } + }, + "675828489": { + "name": "class SharedPointer", + "bases": [ + "CreateActorCinematicAction", + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 675828489, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + }, + "m_animations": { + "type": "std::string", + "id": 2, + "offset": 120, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3030904078 + }, + "m_model": { + "type": "std::string", + "id": 3, + "offset": 152, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2300510668 + }, + "m_createOrientation": { + "type": "enum CreateActorCinematicAction::kCreateOrientation", + "id": 4, + "offset": 184, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3562324429, + "enum_options": { + "kFaceTarget": 0, + "kFaceSource": 1, + "kSigil": 2, + "kTarget": 3, + "kSource": 4, + "kSigilRight": 5, + "kSigilLeft": 6, + "kFaceTargetTeam": 7 + } + }, + "m_hidePolymorphFloatyText": { + "type": "bool", + "id": 5, + "offset": 188, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 942475883 + }, + "m_forwardOffset": { + "type": "float", + "id": 6, + "offset": 192, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1749681459 + }, + "m_absoluteTarget": { + "type": "bool", + "id": 7, + "offset": 196, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1463993657 + } + } + }, + "675825850": { + "name": "class DeckTemplate*", + "bases": [ + "CoreTemplate", + "PropertyClass" + ], + "hash": 675825850, + "properties": { + "m_behaviors": { + "type": "class BehaviorTemplate*", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1197808594 + }, + "m_name": { + "type": "std::string", + "id": 1, + "offset": 96, + "flags": 134217735, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1717359772 + }, + "m_spellNameList": { + "type": "std::string", + "id": 2, + "offset": 136, + "flags": 268435463, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2848889656, + "enum_options": { + "__BASECLASS": "SpellTemplate" + } + } + } + }, + "1959897505": { + "name": "class SharedPointer", + "bases": [ + "BGPlayerInfo", + "PropertyClass" + ], + "hash": 1959897505, + "properties": { + "m_playerID": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1774633426 + }, + "m_team": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1717579362 + } + } + }, + "1097733066": { + "name": "class StageBacklashEffectCinematicAction", + "bases": [ + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 1097733066, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + } + } + }, + "1959594853": { + "name": "class SchoolPipGauge", + "bases": [ + "Window", + "PropertyClass" + ], + "hash": 1959594853, + "properties": { + "m_sName": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306437263 + }, + "m_Children": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621225959 + }, + "m_Style": { + "type": "unsigned int", + "id": 2, + "offset": 152, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "SCALE_CHILDREN": 2, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "FOCUS_LOCKED": 64, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152 + } + }, + "m_Flags": { + "type": "unsigned int", + "id": 3, + "offset": 156, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } + }, + "m_Window": { + "type": "class Rect", + "id": 4, + "offset": 160, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3105139380 + }, + "m_fTargetAlpha": { + "type": "float", + "id": 5, + "offset": 212, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1809129834 + }, + "m_fDisabledAlpha": { + "type": "float", + "id": 6, + "offset": 216, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1389987675 + }, + "m_fAlpha": { + "type": "float", + "id": 7, + "offset": 208, + "flags": 65671, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 482130755 + }, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3623628394 + }, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2102211316 + }, + "m_sScript": { + "type": "std::string", + "id": 10, + "offset": 352, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1846695875 + }, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3389835433 + }, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547159940 + }, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513510520 + }, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3091503757 + } + } + }, + "1958374570": { + "name": "class SharedPointer", + "bases": [ + "LootInfo", + "LootInfoBase", + "PropertyClass" + ], + "hash": 1958374570, + "properties": { + "m_lootType": { + "type": "enum LootInfo::LOOT_TYPE", + "id": 0, + "offset": 72, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1591891442, + "enum_options": { + "LOOT_TYPE_NONE": 0, + "LOOT_TYPE_GOLD": 1, + "LOOT_TYPE_MANA": 2, + "LOOT_TYPE_ITEM": 3, + "LOOT_TYPE_TREASURE_CARD": 4, + "LOOT_TYPE_MAGIC_XP": 5, + "LOOT_TYPE_ADD_SPELL": 6, + "LOOT_TYPE_MAX_HEALTH": 7, + "LOOT_TYPE_MAX_GOLD": 8, + "LOOT_TYPE_MAX_MANA": 9, + "LOOT_TYPE_MAX_POTION": 10, + "LOOT_TYPE_TRAINING_POINTS": 11, + "LOOT_TYPE_RECIPE": 12, + "LOOT_TYPE_CRAFTING_SLOT": 13, + "LOOT_TYPE_REAGENT": 14, + "LOOT_TYPE_PETSNACK": 15, + "LOOT_TYPE_GARDENING_XP": 16, + "LOOT_TYPE_PET_XP": 17, + "LOOT_TYPE_TREASURE_TABLE": 18, + "LOOT_TYPE_ARENA_POINTS": 19, + "LOOT_TYPE_ARENA_BONUS_POINTS": 20, + "LOOT_TYPE_GROUP": 21, + "LOOT_TYPE_FISHING_XP": 22, + "LOOT_TYPE_EVENT_CURRENCY_1": 24, + "LOOT_TYPE_EVENT_CURRENCY_2": 25, + "LOOT_TYPE_PVP_CURRENCY": 26, + "LOOT_TYPE_PVP_CURRENCY_BONUS": 27, + "LOOT_TYPE_PVP_TOURNEY_CURRENCY": 28, + "LOOT_TYPE_PVP_TOURNEY_CURRENCY_BONUS": 29, + "LOOT_TYPE_FURNITURE_ESSENCE": 30 + } + } + } + }, + "1532747308": { + "name": "class Cinematic*", + "bases": [ + "PropertyClass" + ], + "hash": 1532747308, + "properties": {} + }, + "675865269": { + "name": "class ClientPvPPenaltyMatchBan*", + "bases": [ + "PvPPenaltyMatchBan", + "InfractionPenalty", + "PropertyClass" + ], + "hash": 675865269, + "properties": { + "m_internalID": { + "type": "unsigned int", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1854540375 + }, + "m_categoryID": { + "type": "unsigned int", + "id": 1, + "offset": 76, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1382795736 + }, + "m_removeAtPointValue": { + "type": "float", + "id": 2, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2112196961 + }, + "m_expireTime": { + "type": "unsigned int", + "id": 3, + "offset": 84, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1836304873 + }, + "m_duration": { + "type": "unsigned int", + "id": 4, + "offset": 88, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1041524755 + } + } + }, + "1102604536": { + "name": "class ClientDerbyAddSpeedBoost*", + "bases": [ + "DerbyAddSpeedBoost", + "DerbyEffect", + "PropertyClass" + ], + "hash": 1102604536, + "properties": { + "m_buffType": { + "type": "enum DerbyTalentBuffType", + "id": 0, + "offset": 92, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1149251982, + "enum_options": { + "Buff": 0, + "Debuff": 1, + "Neither": 2 + } + }, + "m_kTarget": { + "type": "enum DerbyTargetType", + "id": 1, + "offset": 96, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1807803351, + "enum_options": { + "kTargetInFront": 0, + "kTargetBehind": 1, + "kTargetFirst": 2, + "kTargetSelf": 3, + "kTargetAll": 4, + "kTargetLast": 5 + } + }, + "m_nDuration": { + "type": "int", + "id": 2, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1110167982 + }, + "m_effectID": { + "type": "unsigned int", + "id": 3, + "offset": 88, + "flags": 24, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2347630439 + }, + "m_imageFilename": { + "type": "std::string", + "id": 4, + "offset": 112, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2813328063 + }, + "m_iconIndex": { + "type": "unsigned int", + "id": 5, + "offset": 144, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1265133262 + }, + "m_soundOnActivate": { + "type": "std::string", + "id": 6, + "offset": 152, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1956929714 + }, + "m_soundOnTarget": { + "type": "std::string", + "id": 7, + "offset": 184, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3444214056 + }, + "m_targetParticleEffect": { + "type": "std::string", + "id": 8, + "offset": 216, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3048234723 + }, + "m_overheadMessage": { + "type": "std::string", + "id": 9, + "offset": 248, + "flags": 8388639, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1701018190 + }, + "m_requirements": { + "type": "class RequirementList", + "id": 10, + "offset": 280, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2840988582 + }, + "m_nTimesToAdd": { + "type": "int", + "id": 11, + "offset": 376, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1414275638 + } + } + }, + "1530889461": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1530889461, + "properties": { + "m_points": { + "type": "struct PointData", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1791272219 + }, + "m_cameraSpeed": { + "type": "float", + "id": 1, + "offset": 96, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2177136625 + }, + "m_zoneName": { + "type": "std::string", + "id": 2, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2171167736 + } + } + }, + "1959076520": { + "name": "class UnlockTriggerBehaviorBase*", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1959076520, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + } + } + }, + "1099838971": { + "name": "class UserAnimationEvent", + "bases": [ + "PropertyClass" + ], + "hash": 1099838971, + "properties": { + "m_animationName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3393414044 + }, + "m_time": { + "type": "float", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 310085638 + }, + "m_actionType": { + "type": "std::string", + "id": 2, + "offset": 112, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3328872763 + }, + "m_surfaceType": { + "type": "std::string", + "id": 3, + "offset": 144, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2553995974 + } + } + }, + "1530340613": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1530340613, + "properties": { + "m_ratingsConfig": { + "type": "class RatingInfo*", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2728721304 + } + } + }, + "1099057368": { + "name": "class MinigameSigilOption", + "bases": [ + "ServiceOptionBase", + "PropertyClass" + ], + "hash": 1099057368, + "properties": { + "m_serviceName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2206028813 + }, + "m_iconKey": { + "type": "std::string", + "id": 1, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2457138637 + }, + "m_displayKey": { + "type": "std::string", + "id": 2, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3023276954 + }, + "m_serviceIndex": { + "type": "unsigned int", + "id": 3, + "offset": 204, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2103126710 + }, + "m_forceInteract": { + "type": "bool", + "id": 4, + "offset": 200, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1705789564 + }, + "m_teamUpAllowed": { + "type": "int", + "id": 5, + "offset": 216, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1016118542 + }, + "m_successZone": { + "type": "std::string", + "id": 6, + "offset": 224, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1516681392 + }, + "m_isCluster": { + "type": "bool", + "id": 7, + "offset": 256, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1183074257 + }, + "m_requiresSkeletonKey": { + "type": "int", + "id": 8, + "offset": 220, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1735968152 + }, + "m_monthlyGauntletFields": { + "type": "class SharedPointer", + "id": 9, + "offset": 264, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2875746802 + }, + "m_advancedModeFields": { + "type": "class SharedPointer", + "id": 10, + "offset": 280, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3117836827 + } + } + }, + "1529960489": { + "name": "class ObjState*", + "bases": [ + "PropertyClass" + ], + "hash": 1529960489, + "properties": { + "m_stateType": { + "type": "std::string", + "id": 0, + "offset": 112, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2945167934 + }, + "m_stateName": { + "type": "std::string", + "id": 1, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2944926077 + }, + "m_transitions": { + "type": "class ObjStateTransition*", + "id": 2, + "offset": 144, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 3218935105 + }, + "m_forcedStates": { + "type": "class ForcedStateInfo*", + "id": 3, + "offset": 320, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 3462215437 + }, + "m_autoTransition": { + "type": "bool", + "id": 4, + "offset": 188, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 580653367 + }, + "m_transitionTime": { + "type": "float", + "id": 5, + "offset": 192, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1542232785 + }, + "m_autoState": { + "type": "std::string", + "id": 6, + "offset": 200, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2495723957 + }, + "m_allowedActions": { + "type": "std::string", + "id": 7, + "offset": 240, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1696631188 + }, + "m_disallowedActions": { + "type": "std::string", + "id": 8, + "offset": 256, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1878482772 + }, + "m_blockedStates": { + "type": "std::string", + "id": 9, + "offset": 288, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2730681379 + }, + "m_privateState": { + "type": "bool", + "id": 10, + "offset": 176, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 984277039 + }, + "m_fallbackPrevious": { + "type": "bool", + "id": 11, + "offset": 232, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 152378144 + }, + "m_postStateEvents": { + "type": "bool", + "id": 12, + "offset": 233, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1191427919 + }, + "m_blockMovement": { + "type": "bool", + "id": 13, + "offset": 177, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1121175209 + }, + "m_blockMoveControl": { + "type": "bool", + "id": 14, + "offset": 178, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 421629846 + }, + "m_haltMovement": { + "type": "bool", + "id": 15, + "offset": 179, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 770740551 + }, + "m_checkProximity": { + "type": "bool", + "id": 16, + "offset": 181, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1612279270 + }, + "m_proximityOverride": { + "type": "float", + "id": 17, + "offset": 184, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1963277868 + }, + "m_showDebug": { + "type": "bool", + "id": 18, + "offset": 180, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2109281211 + }, + "m_particles": { + "type": "class StateAssetInfo*", + "id": 19, + "offset": 336, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2185858754 + }, + "m_sounds": { + "type": "class StateAssetInfo*", + "id": 20, + "offset": 352, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2925617751 + }, + "m_animations": { + "type": "class StateAssetInfo*", + "id": 21, + "offset": 368, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 3503258990 + }, + "m_reinteract": { + "type": "bool", + "id": 22, + "offset": 392, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2149441988 + }, + "m_muteMusic": { + "type": "bool", + "id": 23, + "offset": 393, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 431520495 + } + } + }, + "676982790": { + "name": "class SharedPointer", + "bases": [ + "GearVaultBehaviorBase", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 676982790, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_gearList": { + "type": "std::string", + "id": 1, + "offset": 112, + "flags": 65567, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1498902582 + }, + "m_gearData": { + "type": "std::string", + "id": 2, + "offset": 128, + "flags": 551, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1498606388 + } + } + }, + "1098799891": { + "name": "enum eMountType", + "bases": [], + "hash": 1098799891, + "properties": {} + }, + "1529750756": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1529750756, + "properties": { + "m_combatTriggers": { + "type": "std::string", + "id": 0, + "offset": 104, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 3023646200 + }, + "m_noTreasureCards": { + "type": "bool", + "id": 1, + "offset": 137, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1653008424 + }, + "m_battlefieldEffects": { + "type": "class SharedPointer", + "id": 2, + "offset": 72, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1245973515 + }, + "m_gameEffects": { + "type": "class SharedPointer", + "id": 3, + "offset": 88, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1187421775 + }, + "m_onlyTreasureCards": { + "type": "bool", + "id": 4, + "offset": 138, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 752220749 + }, + "m_noShadowSpells": { + "type": "bool", + "id": 5, + "offset": 139, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2142185705 + }, + "m_noCrits": { + "type": "bool", + "id": 6, + "offset": 136, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1394430197 + }, + "m_noEnchantedTreasureCards": { + "type": "bool", + "id": 7, + "offset": 140, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1780948882 + }, + "m_noEnchantmentSpells": { + "type": "bool", + "id": 8, + "offset": 141, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1325982520 + }, + "m_noMaycastSpells": { + "type": "bool", + "id": 9, + "offset": 142, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1409034133 + }, + "m_enableSpellLevelRestrictions": { + "type": "bool", + "id": 10, + "offset": 143, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1272415451 + }, + "m_ignoreSpellsPvPOnlyFlag": { + "type": "bool", + "id": 11, + "offset": 144, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1714276188 + }, + "m_ignoreSpellsPvEOnlyFlag": { + "type": "bool", + "id": 12, + "offset": 145, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1691675729 + }, + "m_requiredSpellsAdjectives": { + "type": "int", + "id": 13, + "offset": 152, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1262019376 + }, + "m_bannedSpellsAdjectives": { + "type": "int", + "id": 14, + "offset": 168, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1474039287 + } + } + }, + "1959594949": { + "name": "class SchoolPipGauge*", + "bases": [ + "Window", + "PropertyClass" + ], + "hash": 1959594949, + "properties": { + "m_sName": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306437263 + }, + "m_Children": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621225959 + }, + "m_Style": { + "type": "unsigned int", + "id": 2, + "offset": 152, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "SCALE_CHILDREN": 2, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "FOCUS_LOCKED": 64, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152 + } + }, + "m_Flags": { + "type": "unsigned int", + "id": 3, + "offset": 156, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } + }, + "m_Window": { + "type": "class Rect", + "id": 4, + "offset": 160, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3105139380 + }, + "m_fTargetAlpha": { + "type": "float", + "id": 5, + "offset": 212, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1809129834 + }, + "m_fDisabledAlpha": { + "type": "float", + "id": 6, + "offset": 216, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1389987675 + }, + "m_fAlpha": { + "type": "float", + "id": 7, + "offset": 208, + "flags": 65671, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 482130755 + }, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3623628394 + }, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2102211316 + }, + "m_sScript": { + "type": "std::string", + "id": 10, + "offset": 352, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1846695875 + }, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3389835433 + }, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547159940 + }, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513510520 + }, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3091503757 + } + } + }, + "1098401325": { + "name": "class SharedPointer", + "bases": [ + "SoundBehavior", + "AreaBehavior", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1098401325, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_radius": { + "type": "float", + "id": 1, + "offset": 116, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 989410271 + }, + "m_category": { + "type": "enum AudioCategory", + "id": 2, + "offset": 124, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2951251982, + "enum_options": { + "AudioCategory_Irrelevent": 0, + "AudioCategory_Accoustic": 1, + "AudioCategory_Noise": 2, + "AudioCategory_Music": 3 + } + }, + "m_exclusive": { + "type": "bool", + "id": 3, + "offset": 128, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 824383403 + }, + "m_playList": { + "type": "class PlayList", + "id": 4, + "offset": 176, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2061221957 + }, + "m_volume": { + "type": "float", + "id": 5, + "offset": 304, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1162855023 + }, + "m_loopCount": { + "type": "int", + "id": 6, + "offset": 308, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 865634717 + }, + "m_minimumFalloff": { + "type": "float", + "id": 7, + "offset": 328, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 355697197 + }, + "m_maximumFalloff": { + "type": "float", + "id": 8, + "offset": 332, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2210192367 + }, + "m_animDriven": { + "type": "bool", + "id": 9, + "offset": 392, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 398394720 + }, + "m_inverted": { + "type": "bool", + "id": 10, + "offset": 397, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1034821044 + } + } + }, + "1529374481": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1529374481, + "properties": { + "m_dependentResourceFilename": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2968493147 + } + } + }, + "681638361": { + "name": "class CrownShopGiftRedemption", + "bases": [ + "PropertyClass" + ], + "hash": 681638361, + "properties": { + "m_message": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3411261376 + }, + "m_itemId.m_full": { + "type": "unsigned __int64", + "id": 1, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 625276258 + }, + "m_itemCount": { + "type": "int", + "id": 2, + "offset": 120, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1789298066 + }, + "m_itemFlags": { + "type": "int", + "id": 3, + "offset": 124, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1792726006 + }, + "m_texture": { + "type": "int", + "id": 4, + "offset": 112, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 222406987 + }, + "m_decal": { + "type": "int", + "id": 5, + "offset": 116, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 791777171 + }, + "m_petName": { + "type": "int", + "id": 6, + "offset": 128, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1492854820 + }, + "m_giverAccountID": { + "type": "gid", + "id": 7, + "offset": 136, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 679105551 + }, + "m_itemTransactionId": { + "type": "std::string", + "id": 8, + "offset": 144, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1830751453 + } + } + }, + "678170743": { + "name": "class ClientAddCameraMappingCinematicAction*", + "bases": [ + "AddCameraMappingCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 678170743, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_camToReplace": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2286913643 + }, + "m_replaceWithCam": { + "type": "std::string", + "id": 2, + "offset": 112, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2992754084 + } + } + }, + "1960141592": { + "name": "class SharedPointer", + "bases": [ + "RemoveParticleActorCinematicAction", + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 1960141592, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + }, + "m_effectName": { + "type": "std::string", + "id": 2, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2029161513 + }, + "m_nodeName": { + "type": "std::string", + "id": 3, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3607089954 + } + } + }, + "1098962134": { + "name": "class SG_GameAction_AddPowerMultiplier", + "bases": [ + "SG_GameAction", + "PropertyClass" + ], + "hash": 1098962134, + "properties": { + "m_target": { + "type": "enum SG_GameAction::SG_Target", + "id": 0, + "offset": 72, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1166870973, + "enum_options": { + "Target_Ball": 0, + "Target_Self": 1, + "Target_Connections": 2, + "__DEFAULT": "Target_Ball" + } + }, + "m_powerName": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2956499913 + } + } + }, + "677315896": { + "name": "class BeneficialProximityBehavior", + "bases": [ + "BeneficialProximityBehaviorBase", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 677315896, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + } + } + }, + "1960135198": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1960135198, + "properties": { + "m_todaysQuestList": { + "type": "unsigned int", + "id": 0, + "offset": 72, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1866614959 + } + } + }, + "1529961129": { + "name": "class ObjState", + "bases": [ + "PropertyClass" + ], + "hash": 1529961129, + "properties": { + "m_stateType": { + "type": "std::string", + "id": 0, + "offset": 112, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2945167934 + }, + "m_stateName": { + "type": "std::string", + "id": 1, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2944926077 + }, + "m_transitions": { + "type": "class ObjStateTransition*", + "id": 2, + "offset": 144, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 3218935105 + }, + "m_forcedStates": { + "type": "class ForcedStateInfo*", + "id": 3, + "offset": 320, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 3462215437 + }, + "m_autoTransition": { + "type": "bool", + "id": 4, + "offset": 188, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 580653367 + }, + "m_transitionTime": { + "type": "float", + "id": 5, + "offset": 192, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1542232785 + }, + "m_autoState": { + "type": "std::string", + "id": 6, + "offset": 200, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2495723957 + }, + "m_allowedActions": { + "type": "std::string", + "id": 7, + "offset": 240, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1696631188 + }, + "m_disallowedActions": { + "type": "std::string", + "id": 8, + "offset": 256, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1878482772 + }, + "m_blockedStates": { + "type": "std::string", + "id": 9, + "offset": 288, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2730681379 + }, + "m_privateState": { + "type": "bool", + "id": 10, + "offset": 176, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 984277039 + }, + "m_fallbackPrevious": { + "type": "bool", + "id": 11, + "offset": 232, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 152378144 + }, + "m_postStateEvents": { + "type": "bool", + "id": 12, + "offset": 233, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1191427919 + }, + "m_blockMovement": { + "type": "bool", + "id": 13, + "offset": 177, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1121175209 + }, + "m_blockMoveControl": { + "type": "bool", + "id": 14, + "offset": 178, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 421629846 + }, + "m_haltMovement": { + "type": "bool", + "id": 15, + "offset": 179, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 770740551 + }, + "m_checkProximity": { + "type": "bool", + "id": 16, + "offset": 181, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1612279270 + }, + "m_proximityOverride": { + "type": "float", + "id": 17, + "offset": 184, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1963277868 + }, + "m_showDebug": { + "type": "bool", + "id": 18, + "offset": 180, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2109281211 + }, + "m_particles": { + "type": "class StateAssetInfo*", + "id": 19, + "offset": 336, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2185858754 + }, + "m_sounds": { + "type": "class StateAssetInfo*", + "id": 20, + "offset": 352, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2925617751 + }, + "m_animations": { + "type": "class StateAssetInfo*", + "id": 21, + "offset": 368, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 3503258990 + }, + "m_reinteract": { + "type": "bool", + "id": 22, + "offset": 392, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2149441988 + }, + "m_muteMusic": { + "type": "bool", + "id": 23, + "offset": 393, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 431520495 + } + } + }, + "677964108": { + "name": "class SharedPointer", + "bases": [ + "Window", + "PropertyClass" + ], + "hash": 677964108, + "properties": { + "m_sName": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306437263 + }, + "m_Children": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621225959 + }, + "m_Style": { + "type": "unsigned int", + "id": 2, + "offset": 152, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "SCALE_CHILDREN": 2, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "FOCUS_LOCKED": 64, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152 + } + }, + "m_Flags": { + "type": "unsigned int", + "id": 3, + "offset": 156, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } + }, + "m_Window": { + "type": "class Rect", + "id": 4, + "offset": 160, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3105139380 + }, + "m_fTargetAlpha": { + "type": "float", + "id": 5, + "offset": 212, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1809129834 + }, + "m_fDisabledAlpha": { + "type": "float", + "id": 6, + "offset": 216, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1389987675 + }, + "m_fAlpha": { + "type": "float", + "id": 7, + "offset": 208, + "flags": 65671, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 482130755 + }, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3623628394 + }, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2102211316 + }, + "m_sScript": { + "type": "std::string", + "id": 10, + "offset": 352, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1846695875 + }, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3389835433 + }, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547159940 + }, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513510520 + }, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3091503757 + } + } + }, + "1099433764": { + "name": "class SharedPointer", + "bases": [ + "LootInfo", + "LootInfoBase", + "PropertyClass" + ], + "hash": 1099433764, + "properties": { + "m_lootType": { + "type": "enum LootInfo::LOOT_TYPE", + "id": 0, + "offset": 72, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1591891442, + "enum_options": { + "LOOT_TYPE_NONE": 0, + "LOOT_TYPE_GOLD": 1, + "LOOT_TYPE_MANA": 2, + "LOOT_TYPE_ITEM": 3, + "LOOT_TYPE_TREASURE_CARD": 4, + "LOOT_TYPE_MAGIC_XP": 5, + "LOOT_TYPE_ADD_SPELL": 6, + "LOOT_TYPE_MAX_HEALTH": 7, + "LOOT_TYPE_MAX_GOLD": 8, + "LOOT_TYPE_MAX_MANA": 9, + "LOOT_TYPE_MAX_POTION": 10, + "LOOT_TYPE_TRAINING_POINTS": 11, + "LOOT_TYPE_RECIPE": 12, + "LOOT_TYPE_CRAFTING_SLOT": 13, + "LOOT_TYPE_REAGENT": 14, + "LOOT_TYPE_PETSNACK": 15, + "LOOT_TYPE_GARDENING_XP": 16, + "LOOT_TYPE_PET_XP": 17, + "LOOT_TYPE_TREASURE_TABLE": 18, + "LOOT_TYPE_ARENA_POINTS": 19, + "LOOT_TYPE_ARENA_BONUS_POINTS": 20, + "LOOT_TYPE_GROUP": 21, + "LOOT_TYPE_FISHING_XP": 22, + "LOOT_TYPE_EVENT_CURRENCY_1": 24, + "LOOT_TYPE_EVENT_CURRENCY_2": 25, + "LOOT_TYPE_PVP_CURRENCY": 26, + "LOOT_TYPE_PVP_CURRENCY_BONUS": 27, + "LOOT_TYPE_PVP_TOURNEY_CURRENCY": 28, + "LOOT_TYPE_PVP_TOURNEY_CURRENCY_BONUS": 29, + "LOOT_TYPE_FURNITURE_ESSENCE": 30 + } + }, + "m_delta": { + "type": "int", + "id": 1, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 791787588 + } + } + }, + "1530771003": { + "name": "class ClientDerbyTerrainEffect", + "bases": [ + "DerbyTerrainEffect", + "DerbyEffect", + "PropertyClass" + ], + "hash": 1530771003, + "properties": { + "m_buffType": { + "type": "enum DerbyTalentBuffType", + "id": 0, + "offset": 92, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1149251982, + "enum_options": { + "Buff": 0, + "Debuff": 1, + "Neither": 2 + } + }, + "m_kTarget": { + "type": "enum DerbyTargetType", + "id": 1, + "offset": 96, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1807803351, + "enum_options": { + "kTargetInFront": 0, + "kTargetBehind": 1, + "kTargetFirst": 2, + "kTargetSelf": 3, + "kTargetAll": 4, + "kTargetLast": 5 + } + }, + "m_nDuration": { + "type": "int", + "id": 2, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1110167982 + }, + "m_effectID": { + "type": "unsigned int", + "id": 3, + "offset": 88, + "flags": 24, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2347630439 + }, + "m_imageFilename": { + "type": "std::string", + "id": 4, + "offset": 112, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2813328063 + }, + "m_iconIndex": { + "type": "unsigned int", + "id": 5, + "offset": 144, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1265133262 + }, + "m_soundOnActivate": { + "type": "std::string", + "id": 6, + "offset": 152, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1956929714 + }, + "m_soundOnTarget": { + "type": "std::string", + "id": 7, + "offset": 184, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3444214056 + }, + "m_targetParticleEffect": { + "type": "std::string", + "id": 8, + "offset": 216, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3048234723 + }, + "m_overheadMessage": { + "type": "std::string", + "id": 9, + "offset": 248, + "flags": 8388639, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1701018190 + }, + "m_requirements": { + "type": "class RequirementList", + "id": 10, + "offset": 280, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2840988582 + }, + "m_terrainType": { + "type": "enum PetDerbyTrackTerrain", + "id": 11, + "offset": 376, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2688629581, + "enum_options": { + "Cobblestone": 0, + "Water": 1, + "Grass": 2, + "Clay": 3, + "Dirt": 4, + "Mud": 5 + } + }, + "m_fEffectReapplyTime": { + "type": "float", + "id": 12, + "offset": 380, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1483497206 + }, + "m_effectsToApply": { + "type": "class SharedPointer", + "id": 13, + "offset": 384, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2042624288 + }, + "m_permanentEffects": { + "type": "class SharedPointer", + "id": 14, + "offset": 400, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2129171809 + } + } + }, + "1961520417": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1961520417, + "properties": { + "m_spellRank": { + "type": "unsigned char", + "id": 0, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1828528860 + }, + "m_balancePips": { + "type": "unsigned char", + "id": 1, + "offset": 81, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1232748146 + }, + "m_deathPips": { + "type": "unsigned char", + "id": 2, + "offset": 82, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1364547506 + }, + "m_firePips": { + "type": "unsigned char", + "id": 3, + "offset": 83, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2490965330 + }, + "m_icePips": { + "type": "unsigned char", + "id": 4, + "offset": 84, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1584134173 + }, + "m_lifePips": { + "type": "unsigned char", + "id": 5, + "offset": 85, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2181444364 + }, + "m_mythPips": { + "type": "unsigned char", + "id": 6, + "offset": 86, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1590318670 + }, + "m_stormPips": { + "type": "unsigned char", + "id": 7, + "offset": 87, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 769321921 + }, + "m_shadowPips": { + "type": "unsigned char", + "id": 8, + "offset": 88, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2569883346 + }, + "m_xPipSpell": { + "type": "bool", + "id": 9, + "offset": 90, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1088376340 + } + } + }, + "1530436226": { + "name": "class SharedPointer", + "bases": [ + "ControlSprite", + "Window", + "PropertyClass" + ], + "hash": 1530436226, + "properties": { + "m_sName": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306437263 + }, + "m_Children": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621225959 + }, + "m_Style": { + "type": "unsigned int", + "id": 2, + "offset": 152, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "SCALE_CHILDREN": 2, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "FOCUS_LOCKED": 64, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152 + } + }, + "m_Flags": { + "type": "unsigned int", + "id": 3, + "offset": 156, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648, + "ONE_SHOT": 8388608, + "FLIPPED_HORIZONTAL": 16777216, + "FLIPPED_VERTICAL": 33554432 + } + }, + "m_Window": { + "type": "class Rect", + "id": 4, + "offset": 160, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3105139380 + }, + "m_fTargetAlpha": { + "type": "float", + "id": 5, + "offset": 212, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1809129834 + }, + "m_fDisabledAlpha": { + "type": "float", + "id": 6, + "offset": 216, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1389987675 + }, + "m_fAlpha": { + "type": "float", + "id": 7, + "offset": 208, + "flags": 65671, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 482130755 + }, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3623628394 + }, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2102211316 + }, + "m_sScript": { + "type": "std::string", + "id": 10, + "offset": 352, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1846695875 + }, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3389835433 + }, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547159940 + }, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513510520 + }, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3091503757 + }, + "m_pMaterial": { + "type": "class SharedPointer", + "id": 16, + "offset": 592, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3479277078 + }, + "m_fRotation": { + "type": "float", + "id": 17, + "offset": 608, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1175400173 + }, + "m_Color": { + "type": "class Color", + "id": 18, + "offset": 584, + "flags": 262279, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1753714077 + }, + "m_textColor": { + "type": "class Color", + "id": 19, + "offset": 612, + "flags": 262279, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2528109250 + }, + "m_textComponent": { + "type": "class TextComponent", + "id": 20, + "offset": 616, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3491704390 + }, + "m_effectID": { + "type": "std::string", + "id": 21, + "offset": 736, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3633927605 + } + } + }, + "679874260": { + "name": "class SharedPointer", + "bases": [ + "LootInfo", + "LootInfoBase", + "PropertyClass" + ], + "hash": 679874260, + "properties": { + "m_lootType": { + "type": "enum LootInfo::LOOT_TYPE", + "id": 0, + "offset": 72, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1591891442, + "enum_options": { + "LOOT_TYPE_NONE": 0, + "LOOT_TYPE_GOLD": 1, + "LOOT_TYPE_MANA": 2, + "LOOT_TYPE_ITEM": 3, + "LOOT_TYPE_TREASURE_CARD": 4, + "LOOT_TYPE_MAGIC_XP": 5, + "LOOT_TYPE_ADD_SPELL": 6, + "LOOT_TYPE_MAX_HEALTH": 7, + "LOOT_TYPE_MAX_GOLD": 8, + "LOOT_TYPE_MAX_MANA": 9, + "LOOT_TYPE_MAX_POTION": 10, + "LOOT_TYPE_TRAINING_POINTS": 11, + "LOOT_TYPE_RECIPE": 12, + "LOOT_TYPE_CRAFTING_SLOT": 13, + "LOOT_TYPE_REAGENT": 14, + "LOOT_TYPE_PETSNACK": 15, + "LOOT_TYPE_GARDENING_XP": 16, + "LOOT_TYPE_PET_XP": 17, + "LOOT_TYPE_TREASURE_TABLE": 18, + "LOOT_TYPE_ARENA_POINTS": 19, + "LOOT_TYPE_ARENA_BONUS_POINTS": 20, + "LOOT_TYPE_GROUP": 21, + "LOOT_TYPE_FISHING_XP": 22, + "LOOT_TYPE_EVENT_CURRENCY_1": 24, + "LOOT_TYPE_EVENT_CURRENCY_2": 25, + "LOOT_TYPE_PVP_CURRENCY": 26, + "LOOT_TYPE_PVP_CURRENCY_BONUS": 27, + "LOOT_TYPE_PVP_TOURNEY_CURRENCY": 28, + "LOOT_TYPE_PVP_TOURNEY_CURRENCY_BONUS": 29, + "LOOT_TYPE_FURNITURE_ESSENCE": 30 + } + }, + "m_arenaPointsAmount": { + "type": "int", + "id": 1, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2041106034 + } + } + }, + "1961332375": { + "name": "class GardeningBehaviorTemplate", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 1961332375, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + } + } + }, + "1100079039": { + "name": "class HousingGamePlayerCollection*", + "bases": [ + "PropertyClass" + ], + "hash": 1100079039, + "properties": { + "m_playerList": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1909774945 + } + } + }, + "678866034": { + "name": "struct QuestEventData", + "bases": [], + "hash": 678866034, + "properties": {} + }, + "1961304729": { + "name": "class ToolTipWindow*", + "bases": [ + "Window", + "PropertyClass" + ], + "hash": 1961304729, + "properties": { + "m_sName": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306437263 + }, + "m_Children": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621225959 + }, + "m_Style": { + "type": "unsigned int", + "id": 2, + "offset": 152, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "SCALE_CHILDREN": 2, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "FOCUS_LOCKED": 64, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152 + } + }, + "m_Flags": { + "type": "unsigned int", + "id": 3, + "offset": 156, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } + }, + "m_Window": { + "type": "class Rect", + "id": 4, + "offset": 160, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3105139380 + }, + "m_fTargetAlpha": { + "type": "float", + "id": 5, + "offset": 212, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1809129834 + }, + "m_fDisabledAlpha": { + "type": "float", + "id": 6, + "offset": 216, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1389987675 + }, + "m_fAlpha": { + "type": "float", + "id": 7, + "offset": 208, + "flags": 65671, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 482130755 + }, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3623628394 + }, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2102211316 + }, + "m_sScript": { + "type": "std::string", + "id": 10, + "offset": 352, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1846695875 + }, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3389835433 + }, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547159940 + }, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513510520 + }, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3091503757 + } + } + }, + "1099915965": { + "name": "class SubscriberBenefitControl*", + "bases": [ + "Window", + "PropertyClass" + ], + "hash": 1099915965, + "properties": { + "m_sName": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306437263 + }, + "m_Children": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621225959 + }, + "m_Style": { + "type": "unsigned int", + "id": 2, + "offset": 152, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "SCALE_CHILDREN": 2, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "FOCUS_LOCKED": 64, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152 + } + }, + "m_Flags": { + "type": "unsigned int", + "id": 3, + "offset": 156, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } + }, + "m_Window": { + "type": "class Rect", + "id": 4, + "offset": 160, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3105139380 + }, + "m_fTargetAlpha": { + "type": "float", + "id": 5, + "offset": 212, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1809129834 + }, + "m_fDisabledAlpha": { + "type": "float", + "id": 6, + "offset": 216, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1389987675 + }, + "m_fAlpha": { + "type": "float", + "id": 7, + "offset": 208, + "flags": 65671, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 482130755 + }, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3623628394 + }, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2102211316 + }, + "m_sScript": { + "type": "std::string", + "id": 10, + "offset": 352, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1846695875 + }, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3389835433 + }, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547159940 + }, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513510520 + }, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3091503757 + } + } + }, + "1961169875": { + "name": "class InitialCombatSound*", + "bases": [ + "PropertyClass" + ], + "hash": 1961169875, + "properties": { + "m_worldZoneName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2739174336 + }, + "m_soundList": { + "type": "std::string", + "id": 1, + "offset": 104, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2277086720 + } + } + }, + "679795894": { + "name": "class std::list >", + "bases": [], + "hash": 679795894, + "properties": {} + }, + "1960696169": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1960696169, + "properties": { + "m_rank": { + "type": "int", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 219803942 + }, + "m_level": { + "type": "int", + "id": 1, + "offset": 76, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 801285362 + } + } + }, + "1100078847": { + "name": "class HousingGamePlayerCollection", + "bases": [ + "PropertyClass" + ], + "hash": 1100078847, + "properties": { + "m_playerList": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1909774945 + } + } + }, + "1532635201": { + "name": "class WizardAutobotManagerGraphicalClient*", + "bases": [ + "WizardAutobotManager", + "AutobotManager", + "PropertyClass" + ], + "hash": 1532635201, + "properties": {} + }, + "1531266643": { + "name": "class AttenuatedFileDescription", + "bases": [ + "PropertyClass" + ], + "hash": 1531266643, + "properties": { + "m_fileName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3116172444 + }, + "m_attenuationPercent": { + "type": "float", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1412579028 + } + } + }, + "1531251970": { + "name": "class HangingConversionSpellEffect*", + "bases": [ + "SpellEffect", + "PropertyClass" + ], + "hash": 1531251970, + "properties": { + "m_effectType": { + "type": "enum SpellEffect::kSpellEffects", + "id": 0, + "offset": 72, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2578255295, + "enum_options": { + "kInvalidSpellEffect": 0, + "kDamage": 1, + "kDamageNoCrit": 2, + "kHeal": 3, + "kHealPercent": 4, + "kSetHealPercent": 113, + "kStealHealth": 5, + "kReduceOverTime": 6, + "kDetonateOverTime": 7, + "kPushCharm": 8, + "kStealCharm": 9, + "kPushWard": 10, + "kStealWard": 11, + "kPushOverTime": 12, + "kStealOverTime": 13, + "kRemoveCharm": 14, + "kRemoveWard": 15, + "kRemoveOverTime": 16, + "kRemoveAura": 17, + "kSwapAll": 18, + "kSwapCharm": 19, + "kSwapWard": 20, + "kSwapOverTime": 21, + "kModifyIncomingDamage": 22, + "kModifyIncomingDamageFlat": 119, + "kMaximumIncomingDamage": 23, + "kModifyIncomingHeal": 24, + "kModifyIncomingHealFlat": 118, + "kModifyIncomingDamageType": 25, + "kModifyIncomingArmorPiercing": 26, + "kModifyOutgoingDamage": 27, + "kModifyOutgoingDamageFlat": 121, + "kModifyOutgoingHeal": 28, + "kModifyOutgoingHealFlat": 120, + "kModifyOutgoingDamageType": 29, + "kModifyOutgoingArmorPiercing": 30, + "kModifyOutgoingStealHealth": 31, + "kModifyIncomingStealHealth": 32, + "kBounceNext": 33, + "kBouncePrevious": 34, + "kBounceBack": 35, + "kBounceAll": 36, + "kAbsorbDamage": 37, + "kAbsorbHeal": 38, + "kModifyAccuracy": 39, + "kDispel": 40, + "kConfusion": 41, + "kCloakedCharm": 42, + "kCloakedWard": 43, + "kStunResist": 44, + "kClue": 111, + "kPipConversion": 45, + "kCritBoost": 46, + "kCritBlock": 47, + "kPolymorph": 48, + "kDelayCast": 49, + "kModifyCardCloak": 50, + "kModifyCardDamage": 51, + "kModifyCardAccuracy": 53, + "kModifyCardMutation": 54, + "kModifyCardRank": 55, + "kModifyCardArmorPiercing": 56, + "kSummonCreature": 65, + "kTeleportPlayer": 66, + "kStun": 67, + "kDampen": 68, + "kReshuffle": 69, + "kMindControl": 70, + "kModifyPips": 71, + "kModifyPowerPips": 72, + "kModifyShadowPips": 73, + "kModifyHate": 74, + "kDamageOverTime": 75, + "kHealOverTime": 76, + "kModifyPowerPipChance": 77, + "kModifyRank": 78, + "kStunBlock": 79, + "kRevealCloak": 80, + "kInstantKill": 81, + "kAfterlife": 82, + "kDeferredDamage": 83, + "kDamagePerTotalPipPower": 84, + "kModifyCardHeal": 52, + "kModifyCardCharm": 57, + "kModifyCardWard": 58, + "kModifyCardOutgoingDamage": 59, + "kModifyCardOutgoingAccuracy": 60, + "kModifyCardOutgoingHeal": 61, + "kModifyCardOutgoingArmorPiercing": 62, + "kModifyCardIncomingDamage": 63, + "kModifyCardAbsorbDamage": 64, + "kCloakedWardNoRemove": 86, + "kAddCombatTriggerList": 87, + "kRemoveCombatTriggerList": 88, + "kBacklashDamage": 89, + "kModifyBacklash": 90, + "kIntercept": 91, + "kShadowSelf": 92, + "kShadowCreature": 93, + "kModifyShadowCreatureLevel": 94, + "kSelectShadowCreatureAttackTarget": 95, + "kShadowDecrementTurn": 96, + "kCritBoostSchoolSpecific": 97, + "kSpawnCreature": 98, + "kUnPolymorph": 99, + "kPowerPipConversion": 100, + "kProtectCardBeneficial": 101, + "kProtectCardHarmful": 102, + "kProtectBeneficial": 103, + "kProtectHarmful": 104, + "kDivideDamage": 105, + "kCollectEssence": 106, + "kKillCreature": 107, + "kDispelBlock": 108, + "kConfusionBlock": 109, + "kModifyPipRoundRate": 110, + "kMaxHealthDamage": 112, + "kUntargetable": 114, + "kMakeTargetable": 115, + "kForceTargetable": 116, + "kRemoveStunBlock": 117, + "kExitCombat": 122, + "kSuspendPips": 123, + "kResumePips": 124, + "kAutoPass": 125, + "kStopAutoPass": 126, + "kVanish": 127, + "kStopVanish": 128, + "kMaxHealthHeal": 129, + "kHealByWard": 130, + "kTaunt": 131, + "kPacify": 132, + "kRemoveTargetRestriction": 133, + "kConvertHangingEffect": 134, + "kAddSpellToDeck": 135, + "kAddSpellToHand": 136, + "kModifyIncomingDamageOverTime": 137, + "kModifyIncomingHealOverTime": 138, + "kModifyCardDamagebyRank": 139, + "kPushConvertedCharm": 140, + "kStealConvertedCharm": 141, + "kPushConvertedWard": 142, + "kStealConvertedWard": 143, + "kPushConvertedOverTime": 144, + "kStealConvertedOverTime": 145, + "kRemoveConvertedCharm": 146, + "kRemoveConvertedWard": 147, + "kRemoveConvertedOverTime": 148, + "kModifyOverTimeDuration": 149, + "kModifySchoolPips": 150 + } + }, + "m_effectParam": { + "type": "int", + "id": 1, + "offset": 76, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 357920024 + }, + "m_disposition": { + "type": "enum SpellEffect::kHangingDisposition", + "id": 2, + "offset": 80, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1904841031, + "enum_options": { + "kBoth": 0, + "kBeneficial": 1, + "kHarmful": 2 + } + }, + "m_sDamageType": { + "type": "std::string", + "id": 3, + "offset": 88, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2501054223 + }, + "m_damageType": { + "type": "unsigned int", + "id": 4, + "offset": 84, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 737882766 + }, + "m_pipNum": { + "type": "int", + "id": 5, + "offset": 128, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 830827539 + }, + "m_actNum": { + "type": "int", + "id": 6, + "offset": 132, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 236824866 + }, + "m_effectTarget": { + "type": "enum SpellEffect::kEffectTarget", + "id": 7, + "offset": 140, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2458940523, + "enum_options": { + "kInvalidTarget": 0, + "kSpell": 1, + "kSpecificSpells": 2, + "kGlobal": 3, + "kEnemyTeam": 4, + "kEnemyTeamAllAtOnce": 5, + "kFriendlyTeam": 6, + "kFriendlyTeamAllAtOnce": 7, + "kEnemySingle": 8, + "kFriendlySingle": 9, + "kMinion": 10, + "kFriendlyMinion": 17, + "kEnemyMinion": 18, + "kSelf": 11, + "kAtLeastOneEnemy": 13, + "kPreselectedEnemySingle": 12, + "kMultiTargetEnemy": 14, + "kMultiTargetFriendly": 15, + "kFriendlySingleNotMe": 16 + } + }, + "m_numRounds": { + "type": "int", + "id": 8, + "offset": 144, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1229753829 + }, + "m_paramPerRound": { + "type": "int", + "id": 9, + "offset": 148, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 683234234 + }, + "m_healModifier": { + "type": "float", + "id": 10, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1317921248, + "enum_options": { + "__DEFAULT": "1.0" + } + }, + "m_spellTemplateID": { + "type": "unsigned int", + "id": 11, + "offset": 120, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 585567702 + }, + "m_enchantmentSpellTemplateID": { + "type": "unsigned int", + "id": 12, + "offset": 124, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 246955115 + }, + "m_act": { + "type": "bool", + "id": 13, + "offset": 136, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 269510283 + }, + "m_cloaked": { + "type": "bool", + "id": 14, + "offset": 157, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 7349510 + }, + "m_bypassProtection": { + "type": "bool", + "id": 15, + "offset": 159, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1657138252 + }, + "m_armorPiercingParam": { + "type": "int", + "id": 16, + "offset": 160, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2025530205 + }, + "m_chancePerTarget": { + "type": "int", + "id": 17, + "offset": 164, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 845426794 + }, + "m_protected": { + "type": "bool", + "id": 18, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1445655037 + }, + "m_converted": { + "type": "bool", + "id": 19, + "offset": 169, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1590428797 + }, + "m_rank": { + "type": "int", + "id": 20, + "offset": 208, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 219803942 + }, + "m_hangingEffectType": { + "type": "enum HangingConversionSpellEffect::HangingEffectType", + "id": 21, + "offset": 224, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2015960933, + "enum_options": { + "HE_Any": 0, + "HE_Ward": 1, + "HE_Charm": 2, + "HE_OverTime": 3, + "HE_Specific": 4 + } + }, + "m_specificEffectTypes": { + "type": "enum SpellEffect::kSpellEffects", + "id": 22, + "offset": 232, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2049268184, + "enum_options": { + "kModifyOutgoingDamage": 27, + "kModifyOutgoingDamageFlat": 121, + "kModifyAccuracy": 39, + "kCloakedCharm": 42, + "kDispel": 40, + "kCritBoost": 46, + "kCritBoostSchoolSpecific": 97, + "kModifyOutgoingHeal": 28, + "kModifyOutgoingHealFlat": 120, + "kModifyOutgoingDamageType": 29, + "kModifyOutgoingArmorPiercing": 30, + "kModifyIncomingStealHealth": 32, + "kModifyOutgoingStealHealth": 31, + "kBounceNext": 33, + "kBouncePrevious": 34, + "kBounceBack": 35, + "kCloakedWard": 43, + "kModifyIncomingDamage": 22, + "kModifyIncomingDamageFlat": 119, + "kModifyIncomingDamageOverTime": 137, + "kMaximumIncomingDamage": 23, + "kAbsorbDamage": 37, + "kAbsorbHeal": 38, + "kBounceAll": 36, + "kCritBlock": 47, + "kStunBlock": 79, + "kStunResist": 44, + "kPipConversion": 45, + "kPowerPipConversion": 100, + "kModifyIncomingDamageType": 25, + "kModifyIncomingHeal": 24, + "kModifyIncomingHealFlat": 118, + "kModifyIncomingHealOverTime": 138, + "kModifyIncomingArmorPiercing": 26, + "kCloakedWardNoRemove": 86, + "kDispelBlock": 108, + "kConfusionBlock": 109, + "kDamageOverTime": 75, + "kHealOverTime": 76, + "kDeferredDamage": 83 + } + }, + "m_minEffectValue": { + "type": "int", + "id": 23, + "offset": 248, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1614619272 + }, + "m_maxEffectValue": { + "type": "int", + "id": 24, + "offset": 252, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1321630794 + }, + "m_notDamageType": { + "type": "bool", + "id": 25, + "offset": 256, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1313760773 + }, + "m_minEffectCount": { + "type": "int", + "id": 26, + "offset": 260, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1592599476 + }, + "m_maxEffectCount": { + "type": "int", + "id": 27, + "offset": 264, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1299610998 + }, + "m_outputSelector": { + "type": "enum HangingConversionSpellEffect::OutputEffectSelector", + "id": 28, + "offset": 268, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1795006880, + "enum_options": { + "OES_All": 0, + "OES_MatchedSelectRank": 1 + } + }, + "m_scaleSourceEffectValue": { + "type": "bool", + "id": 29, + "offset": 272, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1962536406 + }, + "m_sourceEffectValuePercent": { + "type": "float", + "id": 30, + "offset": 276, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1001903523 + }, + "m_applyToEffectSource": { + "type": "bool", + "id": 31, + "offset": 280, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 760527802 + }, + "m_outputEffect": { + "type": "class SharedPointer", + "id": 32, + "offset": 288, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1098575817 + } + } + }, + "681038846": { + "name": "class HouseTransferResult", + "bases": [ + "PropertyClass" + ], + "hash": 681038846, + "properties": { + "m_templateID": { + "type": "unsigned int", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1286746870 + }, + "m_statusResult": { + "type": "int", + "id": 1, + "offset": 76, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1273560413 + } + } + }, + "1101187990": { + "name": "class CountdownBehaviorTemplate*", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 1101187990, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + } + } + }, + "1961304732": { + "name": "class ToolTipWindow", + "bases": [ + "Window", + "PropertyClass" + ], + "hash": 1961304732, + "properties": { + "m_sName": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306437263 + }, + "m_Children": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621225959 + }, + "m_Style": { + "type": "unsigned int", + "id": 2, + "offset": 152, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "SCALE_CHILDREN": 2, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "FOCUS_LOCKED": 64, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152 + } + }, + "m_Flags": { + "type": "unsigned int", + "id": 3, + "offset": 156, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } + }, + "m_Window": { + "type": "class Rect", + "id": 4, + "offset": 160, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3105139380 + }, + "m_fTargetAlpha": { + "type": "float", + "id": 5, + "offset": 212, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1809129834 + }, + "m_fDisabledAlpha": { + "type": "float", + "id": 6, + "offset": 216, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1389987675 + }, + "m_fAlpha": { + "type": "float", + "id": 7, + "offset": 208, + "flags": 65671, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 482130755 + }, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3623628394 + }, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2102211316 + }, + "m_sScript": { + "type": "std::string", + "id": 10, + "offset": 352, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1846695875 + }, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3389835433 + }, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547159940 + }, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513510520 + }, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3091503757 + } + } + }, + "1100165481": { + "name": "class WorldHubZoneMapper", + "bases": [ + "PropertyClass" + ], + "hash": 1100165481, + "properties": { + "m_hubZoneMapping": { + "type": "class HubZoneMapping*", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1402898811 + } + } + }, + "1531258114": { + "name": "class HangingConversionSpellEffect", + "bases": [ + "SpellEffect", + "PropertyClass" + ], + "hash": 1531258114, + "properties": { + "m_effectType": { + "type": "enum SpellEffect::kSpellEffects", + "id": 0, + "offset": 72, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2578255295, + "enum_options": { + "kInvalidSpellEffect": 0, + "kDamage": 1, + "kDamageNoCrit": 2, + "kHeal": 3, + "kHealPercent": 4, + "kSetHealPercent": 113, + "kStealHealth": 5, + "kReduceOverTime": 6, + "kDetonateOverTime": 7, + "kPushCharm": 8, + "kStealCharm": 9, + "kPushWard": 10, + "kStealWard": 11, + "kPushOverTime": 12, + "kStealOverTime": 13, + "kRemoveCharm": 14, + "kRemoveWard": 15, + "kRemoveOverTime": 16, + "kRemoveAura": 17, + "kSwapAll": 18, + "kSwapCharm": 19, + "kSwapWard": 20, + "kSwapOverTime": 21, + "kModifyIncomingDamage": 22, + "kModifyIncomingDamageFlat": 119, + "kMaximumIncomingDamage": 23, + "kModifyIncomingHeal": 24, + "kModifyIncomingHealFlat": 118, + "kModifyIncomingDamageType": 25, + "kModifyIncomingArmorPiercing": 26, + "kModifyOutgoingDamage": 27, + "kModifyOutgoingDamageFlat": 121, + "kModifyOutgoingHeal": 28, + "kModifyOutgoingHealFlat": 120, + "kModifyOutgoingDamageType": 29, + "kModifyOutgoingArmorPiercing": 30, + "kModifyOutgoingStealHealth": 31, + "kModifyIncomingStealHealth": 32, + "kBounceNext": 33, + "kBouncePrevious": 34, + "kBounceBack": 35, + "kBounceAll": 36, + "kAbsorbDamage": 37, + "kAbsorbHeal": 38, + "kModifyAccuracy": 39, + "kDispel": 40, + "kConfusion": 41, + "kCloakedCharm": 42, + "kCloakedWard": 43, + "kStunResist": 44, + "kClue": 111, + "kPipConversion": 45, + "kCritBoost": 46, + "kCritBlock": 47, + "kPolymorph": 48, + "kDelayCast": 49, + "kModifyCardCloak": 50, + "kModifyCardDamage": 51, + "kModifyCardAccuracy": 53, + "kModifyCardMutation": 54, + "kModifyCardRank": 55, + "kModifyCardArmorPiercing": 56, + "kSummonCreature": 65, + "kTeleportPlayer": 66, + "kStun": 67, + "kDampen": 68, + "kReshuffle": 69, + "kMindControl": 70, + "kModifyPips": 71, + "kModifyPowerPips": 72, + "kModifyShadowPips": 73, + "kModifyHate": 74, + "kDamageOverTime": 75, + "kHealOverTime": 76, + "kModifyPowerPipChance": 77, + "kModifyRank": 78, + "kStunBlock": 79, + "kRevealCloak": 80, + "kInstantKill": 81, + "kAfterlife": 82, + "kDeferredDamage": 83, + "kDamagePerTotalPipPower": 84, + "kModifyCardHeal": 52, + "kModifyCardCharm": 57, + "kModifyCardWard": 58, + "kModifyCardOutgoingDamage": 59, + "kModifyCardOutgoingAccuracy": 60, + "kModifyCardOutgoingHeal": 61, + "kModifyCardOutgoingArmorPiercing": 62, + "kModifyCardIncomingDamage": 63, + "kModifyCardAbsorbDamage": 64, + "kCloakedWardNoRemove": 86, + "kAddCombatTriggerList": 87, + "kRemoveCombatTriggerList": 88, + "kBacklashDamage": 89, + "kModifyBacklash": 90, + "kIntercept": 91, + "kShadowSelf": 92, + "kShadowCreature": 93, + "kModifyShadowCreatureLevel": 94, + "kSelectShadowCreatureAttackTarget": 95, + "kShadowDecrementTurn": 96, + "kCritBoostSchoolSpecific": 97, + "kSpawnCreature": 98, + "kUnPolymorph": 99, + "kPowerPipConversion": 100, + "kProtectCardBeneficial": 101, + "kProtectCardHarmful": 102, + "kProtectBeneficial": 103, + "kProtectHarmful": 104, + "kDivideDamage": 105, + "kCollectEssence": 106, + "kKillCreature": 107, + "kDispelBlock": 108, + "kConfusionBlock": 109, + "kModifyPipRoundRate": 110, + "kMaxHealthDamage": 112, + "kUntargetable": 114, + "kMakeTargetable": 115, + "kForceTargetable": 116, + "kRemoveStunBlock": 117, + "kExitCombat": 122, + "kSuspendPips": 123, + "kResumePips": 124, + "kAutoPass": 125, + "kStopAutoPass": 126, + "kVanish": 127, + "kStopVanish": 128, + "kMaxHealthHeal": 129, + "kHealByWard": 130, + "kTaunt": 131, + "kPacify": 132, + "kRemoveTargetRestriction": 133, + "kConvertHangingEffect": 134, + "kAddSpellToDeck": 135, + "kAddSpellToHand": 136, + "kModifyIncomingDamageOverTime": 137, + "kModifyIncomingHealOverTime": 138, + "kModifyCardDamagebyRank": 139, + "kPushConvertedCharm": 140, + "kStealConvertedCharm": 141, + "kPushConvertedWard": 142, + "kStealConvertedWard": 143, + "kPushConvertedOverTime": 144, + "kStealConvertedOverTime": 145, + "kRemoveConvertedCharm": 146, + "kRemoveConvertedWard": 147, + "kRemoveConvertedOverTime": 148, + "kModifyOverTimeDuration": 149, + "kModifySchoolPips": 150 + } + }, + "m_effectParam": { + "type": "int", + "id": 1, + "offset": 76, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 357920024 + }, + "m_disposition": { + "type": "enum SpellEffect::kHangingDisposition", + "id": 2, + "offset": 80, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1904841031, + "enum_options": { + "kBoth": 0, + "kBeneficial": 1, + "kHarmful": 2 + } + }, + "m_sDamageType": { + "type": "std::string", + "id": 3, + "offset": 88, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2501054223 + }, + "m_damageType": { + "type": "unsigned int", + "id": 4, + "offset": 84, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 737882766 + }, + "m_pipNum": { + "type": "int", + "id": 5, + "offset": 128, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 830827539 + }, + "m_actNum": { + "type": "int", + "id": 6, + "offset": 132, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 236824866 + }, + "m_effectTarget": { + "type": "enum SpellEffect::kEffectTarget", + "id": 7, + "offset": 140, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2458940523, + "enum_options": { + "kInvalidTarget": 0, + "kSpell": 1, + "kSpecificSpells": 2, + "kGlobal": 3, + "kEnemyTeam": 4, + "kEnemyTeamAllAtOnce": 5, + "kFriendlyTeam": 6, + "kFriendlyTeamAllAtOnce": 7, + "kEnemySingle": 8, + "kFriendlySingle": 9, + "kMinion": 10, + "kFriendlyMinion": 17, + "kEnemyMinion": 18, + "kSelf": 11, + "kAtLeastOneEnemy": 13, + "kPreselectedEnemySingle": 12, + "kMultiTargetEnemy": 14, + "kMultiTargetFriendly": 15, + "kFriendlySingleNotMe": 16 + } + }, + "m_numRounds": { + "type": "int", + "id": 8, + "offset": 144, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1229753829 + }, + "m_paramPerRound": { + "type": "int", + "id": 9, + "offset": 148, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 683234234 + }, + "m_healModifier": { + "type": "float", + "id": 10, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1317921248, + "enum_options": { + "__DEFAULT": "1.0" + } + }, + "m_spellTemplateID": { + "type": "unsigned int", + "id": 11, + "offset": 120, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 585567702 + }, + "m_enchantmentSpellTemplateID": { + "type": "unsigned int", + "id": 12, + "offset": 124, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 246955115 + }, + "m_act": { + "type": "bool", + "id": 13, + "offset": 136, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 269510283 + }, + "m_cloaked": { + "type": "bool", + "id": 14, + "offset": 157, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 7349510 + }, + "m_bypassProtection": { + "type": "bool", + "id": 15, + "offset": 159, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1657138252 + }, + "m_armorPiercingParam": { + "type": "int", + "id": 16, + "offset": 160, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2025530205 + }, + "m_chancePerTarget": { + "type": "int", + "id": 17, + "offset": 164, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 845426794 + }, + "m_protected": { + "type": "bool", + "id": 18, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1445655037 + }, + "m_converted": { + "type": "bool", + "id": 19, + "offset": 169, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1590428797 + }, + "m_rank": { + "type": "int", + "id": 20, + "offset": 208, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 219803942 + }, + "m_hangingEffectType": { + "type": "enum HangingConversionSpellEffect::HangingEffectType", + "id": 21, + "offset": 224, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2015960933, + "enum_options": { + "HE_Any": 0, + "HE_Ward": 1, + "HE_Charm": 2, + "HE_OverTime": 3, + "HE_Specific": 4 + } + }, + "m_specificEffectTypes": { + "type": "enum SpellEffect::kSpellEffects", + "id": 22, + "offset": 232, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2049268184, + "enum_options": { + "kModifyOutgoingDamage": 27, + "kModifyOutgoingDamageFlat": 121, + "kModifyAccuracy": 39, + "kCloakedCharm": 42, + "kDispel": 40, + "kCritBoost": 46, + "kCritBoostSchoolSpecific": 97, + "kModifyOutgoingHeal": 28, + "kModifyOutgoingHealFlat": 120, + "kModifyOutgoingDamageType": 29, + "kModifyOutgoingArmorPiercing": 30, + "kModifyIncomingStealHealth": 32, + "kModifyOutgoingStealHealth": 31, + "kBounceNext": 33, + "kBouncePrevious": 34, + "kBounceBack": 35, + "kCloakedWard": 43, + "kModifyIncomingDamage": 22, + "kModifyIncomingDamageFlat": 119, + "kModifyIncomingDamageOverTime": 137, + "kMaximumIncomingDamage": 23, + "kAbsorbDamage": 37, + "kAbsorbHeal": 38, + "kBounceAll": 36, + "kCritBlock": 47, + "kStunBlock": 79, + "kStunResist": 44, + "kPipConversion": 45, + "kPowerPipConversion": 100, + "kModifyIncomingDamageType": 25, + "kModifyIncomingHeal": 24, + "kModifyIncomingHealFlat": 118, + "kModifyIncomingHealOverTime": 138, + "kModifyIncomingArmorPiercing": 26, + "kCloakedWardNoRemove": 86, + "kDispelBlock": 108, + "kConfusionBlock": 109, + "kDamageOverTime": 75, + "kHealOverTime": 76, + "kDeferredDamage": 83 + } + }, + "m_minEffectValue": { + "type": "int", + "id": 23, + "offset": 248, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1614619272 + }, + "m_maxEffectValue": { + "type": "int", + "id": 24, + "offset": 252, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1321630794 + }, + "m_notDamageType": { + "type": "bool", + "id": 25, + "offset": 256, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1313760773 + }, + "m_minEffectCount": { + "type": "int", + "id": 26, + "offset": 260, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1592599476 + }, + "m_maxEffectCount": { + "type": "int", + "id": 27, + "offset": 264, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1299610998 + }, + "m_outputSelector": { + "type": "enum HangingConversionSpellEffect::OutputEffectSelector", + "id": 28, + "offset": 268, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1795006880, + "enum_options": { + "OES_All": 0, + "OES_MatchedSelectRank": 1 + } + }, + "m_scaleSourceEffectValue": { + "type": "bool", + "id": 29, + "offset": 272, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1962536406 + }, + "m_sourceEffectValuePercent": { + "type": "float", + "id": 30, + "offset": 276, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1001903523 + }, + "m_applyToEffectSource": { + "type": "bool", + "id": 31, + "offset": 280, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 760527802 + }, + "m_outputEffect": { + "type": "class SharedPointer", + "id": 32, + "offset": 288, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1098575817 + } + } + }, + "682056880": { + "name": "class SharedPointer", + "bases": [ + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 682056880, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + }, + "m_newActorName": { + "type": "std::string", + "id": 2, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2029131039 + } + } + }, + "681953563": { + "name": "class SharedPointer", + "bases": [ + "ActorDialogEntry", + "PropertyClass" + ], + "hash": 681953563, + "properties": { + "m_requirements": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 263, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3043523229 + }, + "m_dialog": { + "type": "std::string", + "id": 1, + "offset": 88, + "flags": 8388639, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1858395851 + }, + "m_picture": { + "type": "std::string", + "id": 2, + "offset": 120, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3128322903 + }, + "m_soundFile": { + "type": "std::string", + "id": 3, + "offset": 152, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2276870852 + }, + "m_action": { + "type": "std::string", + "id": 4, + "offset": 184, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1734553689 + }, + "m_dialogEvent": { + "type": "std::string", + "id": 5, + "offset": 216, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2707957549 + }, + "m_actorTemplateID": { + "type": "unsigned int", + "id": 6, + "offset": 248, + "flags": 33554463, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2134265679 + }, + "m_cameraName": { + "type": "std::string", + "id": 7, + "offset": 256, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3252786917 + }, + "m_interpolationDuration": { + "type": "float", + "id": 8, + "offset": 312, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1458058437, + "enum_options": { + "__DEFAULT": "1.0" + } + }, + "m_cameraOffsetX": { + "type": "float", + "id": 9, + "offset": 288, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1515912895 + }, + "m_cameraOffsetY": { + "type": "float", + "id": 10, + "offset": 292, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1515912896 + }, + "m_cameraOffsetZ": { + "type": "float", + "id": 11, + "offset": 296, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1515912897 + }, + "m_pitch": { + "type": "float", + "id": 12, + "offset": 304, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 896371695 + }, + "m_yaw": { + "type": "float", + "id": 13, + "offset": 300, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 357256328 + }, + "m_roll": { + "type": "float", + "id": 14, + "offset": 308, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 310020272 + }, + "m_cameraShakeType": { + "type": "std::string", + "id": 15, + "offset": 320, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1754128882, + "enum_options": { + "": 0, + "Constant": "Constant", + "Quake": "Quake", + "Thud": "Thud", + "End": "End", + "__DEFAULT": 0 + } + }, + "m_cameraShakeDuration": { + "type": "float", + "id": 16, + "offset": 352, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 316581010, + "enum_options": { + "__DEFAULT": "0.0" + } + }, + "m_cameraShakeAmplitude": { + "type": "float", + "id": 17, + "offset": 356, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2179718321, + "enum_options": { + "__DEFAULT": "0.0" + } + }, + "m_bypassCameraOnReview": { + "type": "bool", + "id": 18, + "offset": 360, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1412905725, + "enum_options": { + "__DEFAULT": 1 + } + }, + "m_cameraZoneName": { + "type": "std::string", + "id": 19, + "offset": 368, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3131581121 + }, + "m_duration": { + "type": "float", + "id": 20, + "offset": 400, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 920323453 + }, + "m_delay": { + "type": "float", + "id": 21, + "offset": 404, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 881988134 + }, + "m_cameraHidePlayers": { + "type": "int", + "id": 22, + "offset": 408, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 28533149 + }, + "m_walkAwayNpcTemplateID": { + "type": "gid", + "id": 23, + "offset": 416, + "flags": 33554719, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 942697507 + }, + "m_walkAwayExitDirectionInDegrees": { + "type": "float", + "id": 24, + "offset": 424, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 396419785 + }, + "m_walkAwayFadeTime": { + "type": "float", + "id": 25, + "offset": 428, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 822405687 + }, + "m_walkAwayUseCurrentFacing": { + "type": "bool", + "id": 26, + "offset": 432, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1464855436 + }, + "m_standInPlayerTag": { + "type": "std::string", + "id": 27, + "offset": 440, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1590121141 + }, + "m_fadeOutCamera": { + "type": "bool", + "id": 28, + "offset": 472, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1766121252 + }, + "m_snapCameraToPlayerAtExit": { + "type": "bool", + "id": 29, + "offset": 473, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1323369645 + }, + "m_secondaryCameraName": { + "type": "std::string", + "id": 30, + "offset": 480, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1670705581 + }, + "m_secondaryInterpolationDuration": { + "type": "float", + "id": 31, + "offset": 512, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1873822349 + }, + "m_npcStandInList": { + "type": "std::string", + "id": 32, + "offset": 520, + "flags": 287, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2076308937 + }, + "m_dialogAnimationList": { + "type": "std::string", + "id": 33, + "offset": 536, + "flags": 287, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2444806919 + }, + "m_dialogTurningList": { + "type": "std::string", + "id": 34, + "offset": 552, + "flags": 287, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2782869422 + }, + "m_npcYawOffsetInDegrees": { + "type": "float", + "id": 35, + "offset": 568, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1395075270 + }, + "m_allowPlayerToMove": { + "type": "bool", + "id": 36, + "offset": 572, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 225101337 + }, + "m_soundEffectFile": { + "type": "std::string", + "id": 37, + "offset": 576, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3235157265 + }, + "m_musicFile": { + "type": "std::string", + "id": 38, + "offset": 608, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2963686620 + }, + "m_nonStackableMusic": { + "type": "bool", + "id": 39, + "offset": 640, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1675595625 + }, + "m_nonRepeatableMusic": { + "type": "bool", + "id": 40, + "offset": 641, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2138315572 + }, + "m_playMusicAtSFXVolume": { + "type": "bool", + "id": 41, + "offset": 642, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2130871816 + }, + "m_soundEffectDelay": { + "type": "float", + "id": 42, + "offset": 644, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1586382460 + }, + "m_musicDelay": { + "type": "float", + "id": 43, + "offset": 648, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1217785767 + }, + "m_musicFadeTime": { + "type": "float", + "id": 44, + "offset": 652, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 502925015 + }, + "m_dontReleaseCameraAtExit": { + "type": "bool", + "id": 45, + "offset": 474, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1107508961 + }, + "m_disableBackButton": { + "type": "bool", + "id": 46, + "offset": 656, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 122355444 + }, + "m_enableExitButton": { + "type": "bool", + "id": 47, + "offset": 657, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1824693936 + }, + "m_cameraFadeType": { + "type": "std::string", + "id": 48, + "offset": 664, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2021935382, + "enum_options": { + "": 0, + "In Out Black": "In Out Black", + "In Out White": "In Out White", + "In Black": "In Black", + "Out Black": "Out Black", + "In White": "In White", + "Out White": "Out White", + "__DEFAULT": 0 + } + }, + "m_cameraFadeTime": { + "type": "float", + "id": 49, + "offset": 696, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 614419391, + "enum_options": { + "__DEFAULT": "0.5" + } + }, + "m_idleAnimation": { + "type": "std::string", + "id": 50, + "offset": 704, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2900487193 + }, + "m_spamTime": { + "type": "float", + "id": 51, + "offset": 736, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1727215063, + "enum_options": { + "__DEFAULT": "1.0" + } + }, + "m_playSoundIfSpamming": { + "type": "bool", + "id": 52, + "offset": 740, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 690006749, + "enum_options": { + "__DEFAULT": 1 + } + }, + "m_playMusicIfSpamming": { + "type": "bool", + "id": 53, + "offset": 741, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 538564341, + "enum_options": { + "__DEFAULT": 1 + } + }, + "m_stopMusicFadeTime": { + "type": "float", + "id": 54, + "offset": 744, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 696390845, + "enum_options": { + "__DEFAULT": "0.0" + } + }, + "m_restartMusicFadeTime": { + "type": "float", + "id": 55, + "offset": 748, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 709379292, + "enum_options": { + "__DEFAULT": "0.0" + } + }, + "m_meetsRequirements": { + "type": "bool", + "id": 56, + "offset": 752, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 296443061 + }, + "m_secondaryCameraInitalDelay": { + "type": "float", + "id": 57, + "offset": 516, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1812842232 + }, + "m_displayButtonsOnTimedDialog": { + "type": "bool", + "id": 58, + "offset": 753, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 569741400 + } + } + }, + "1961426403": { + "name": "class TabDisplayPriority*", + "bases": [ + "PropertyClass" + ], + "hash": 1961426403, + "properties": { + "m_uTab": { + "type": "unsigned int", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 431299609 + }, + "m_uPriority": { + "type": "unsigned int", + "id": 1, + "offset": 76, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 374455588 + } + } + }, + "1102142124": { + "name": "class NPCDataList", + "bases": [ + "PropertyClass" + ], + "hash": 1102142124, + "properties": { + "m_npcList": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2709214274 + }, + "m_zoneType": { + "type": "enum NPCDataList::ZONE_TYPE", + "id": 1, + "offset": 88, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 975028587, + "enum_options": { + "CurrentZone": 0, + "OtherZons": 1, + "None": 2 + } + } + } + }, + "1532029556": { + "name": "class MatchStatusUpdate", + "bases": [ + "TournamentUpdate", + "PropertyClass" + ], + "hash": 1532029556, + "properties": { + "m_matchID": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1757621298 + }, + "m_status": { + "type": "int", + "id": 1, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 960781182 + } + } + }, + "1101331544": { + "name": "class ObstacleCourseCatapultBehaviorTemplate*", + "bases": [ + "ObstacleCourseObstacleBehaviorTemplate", + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 1101331544, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + }, + "m_rate": { + "type": "double", + "id": 1, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2117614265 + }, + "m_initialYaw": { + "type": "double", + "id": 2, + "offset": 128, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2566917224 + }, + "m_penaltyTime": { + "type": "double", + "id": 3, + "offset": 136, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3890998489 + }, + "m_pitch": { + "type": "double", + "id": 4, + "offset": 144, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2703980677 + }, + "m_maxYaw": { + "type": "double", + "id": 5, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2602042948 + }, + "m_platformWidth": { + "type": "double", + "id": 6, + "offset": 160, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 4024516466 + }, + "m_platformHeight": { + "type": "double", + "id": 7, + "offset": 168, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2765202891 + }, + "m_launchSpeed": { + "type": "double", + "id": 8, + "offset": 176, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2644727001 + }, + "m_launchSpeedUp": { + "type": "double", + "id": 9, + "offset": 184, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3445224318 + }, + "m_collisionHeight": { + "type": "double", + "id": 10, + "offset": 192, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3980975122 + } + } + }, + "682588551": { + "name": "class PetXPLootInfo*", + "bases": [ + "LootInfo", + "LootInfoBase", + "PropertyClass" + ], + "hash": 682588551, + "properties": { + "m_lootType": { + "type": "enum LootInfo::LOOT_TYPE", + "id": 0, + "offset": 72, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1591891442, + "enum_options": { + "LOOT_TYPE_NONE": 0, + "LOOT_TYPE_GOLD": 1, + "LOOT_TYPE_MANA": 2, + "LOOT_TYPE_ITEM": 3, + "LOOT_TYPE_TREASURE_CARD": 4, + "LOOT_TYPE_MAGIC_XP": 5, + "LOOT_TYPE_ADD_SPELL": 6, + "LOOT_TYPE_MAX_HEALTH": 7, + "LOOT_TYPE_MAX_GOLD": 8, + "LOOT_TYPE_MAX_MANA": 9, + "LOOT_TYPE_MAX_POTION": 10, + "LOOT_TYPE_TRAINING_POINTS": 11, + "LOOT_TYPE_RECIPE": 12, + "LOOT_TYPE_CRAFTING_SLOT": 13, + "LOOT_TYPE_REAGENT": 14, + "LOOT_TYPE_PETSNACK": 15, + "LOOT_TYPE_GARDENING_XP": 16, + "LOOT_TYPE_PET_XP": 17, + "LOOT_TYPE_TREASURE_TABLE": 18, + "LOOT_TYPE_ARENA_POINTS": 19, + "LOOT_TYPE_ARENA_BONUS_POINTS": 20, + "LOOT_TYPE_GROUP": 21, + "LOOT_TYPE_FISHING_XP": 22, + "LOOT_TYPE_EVENT_CURRENCY_1": 24, + "LOOT_TYPE_EVENT_CURRENCY_2": 25, + "LOOT_TYPE_PVP_CURRENCY": 26, + "LOOT_TYPE_PVP_CURRENCY_BONUS": 27, + "LOOT_TYPE_PVP_TOURNEY_CURRENCY": 28, + "LOOT_TYPE_PVP_TOURNEY_CURRENCY_BONUS": 29, + "LOOT_TYPE_FURNITURE_ESSENCE": 30 + } + }, + "m_statModifierSet": { + "type": "class PetStatModificationSet", + "id": 1, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2182942670 + }, + "m_leveledUp": { + "type": "bool", + "id": 2, + "offset": 264, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2101027993 + }, + "m_lastTalentGiven": { + "type": "unsigned int", + "id": 3, + "offset": 268, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2315681826 + }, + "m_lastPowerGiven": { + "type": "unsigned int", + "id": 4, + "offset": 272, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 398209479 + }, + "m_lastJewelGiven": { + "type": "unsigned int", + "id": 5, + "offset": 276, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1688300849 + } + } + }, + "1963225128": { + "name": "class ClearHangingEffectsCinematicAction*", + "bases": [ + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 1963225128, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + } + } + }, + "1532726828": { + "name": "class Cinematic", + "bases": [ + "PropertyClass" + ], + "hash": 1532726828, + "properties": {} + }, + "682588548": { + "name": "class PetXPLootInfo", + "bases": [ + "LootInfo", + "LootInfoBase", + "PropertyClass" + ], + "hash": 682588548, + "properties": { + "m_lootType": { + "type": "enum LootInfo::LOOT_TYPE", + "id": 0, + "offset": 72, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1591891442, + "enum_options": { + "LOOT_TYPE_NONE": 0, + "LOOT_TYPE_GOLD": 1, + "LOOT_TYPE_MANA": 2, + "LOOT_TYPE_ITEM": 3, + "LOOT_TYPE_TREASURE_CARD": 4, + "LOOT_TYPE_MAGIC_XP": 5, + "LOOT_TYPE_ADD_SPELL": 6, + "LOOT_TYPE_MAX_HEALTH": 7, + "LOOT_TYPE_MAX_GOLD": 8, + "LOOT_TYPE_MAX_MANA": 9, + "LOOT_TYPE_MAX_POTION": 10, + "LOOT_TYPE_TRAINING_POINTS": 11, + "LOOT_TYPE_RECIPE": 12, + "LOOT_TYPE_CRAFTING_SLOT": 13, + "LOOT_TYPE_REAGENT": 14, + "LOOT_TYPE_PETSNACK": 15, + "LOOT_TYPE_GARDENING_XP": 16, + "LOOT_TYPE_PET_XP": 17, + "LOOT_TYPE_TREASURE_TABLE": 18, + "LOOT_TYPE_ARENA_POINTS": 19, + "LOOT_TYPE_ARENA_BONUS_POINTS": 20, + "LOOT_TYPE_GROUP": 21, + "LOOT_TYPE_FISHING_XP": 22, + "LOOT_TYPE_EVENT_CURRENCY_1": 24, + "LOOT_TYPE_EVENT_CURRENCY_2": 25, + "LOOT_TYPE_PVP_CURRENCY": 26, + "LOOT_TYPE_PVP_CURRENCY_BONUS": 27, + "LOOT_TYPE_PVP_TOURNEY_CURRENCY": 28, + "LOOT_TYPE_PVP_TOURNEY_CURRENCY_BONUS": 29, + "LOOT_TYPE_FURNITURE_ESSENCE": 30 } }, - "m_afterCombatDance": { - "type": "unsigned char", + "m_statModifierSet": { + "type": "class PetStatModificationSet", + "id": 1, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2182942670 + }, + "m_leveledUp": { + "type": "bool", + "id": 2, + "offset": 264, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2101027993 + }, + "m_lastTalentGiven": { + "type": "unsigned int", + "id": 3, + "offset": 268, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2315681826 + }, + "m_lastPowerGiven": { + "type": "unsigned int", + "id": 4, + "offset": 272, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 398209479 + }, + "m_lastJewelGiven": { + "type": "unsigned int", + "id": 5, + "offset": 276, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1688300849 + } + } + }, + "1961941674": { + "name": "class FishBehaviorTemplate*", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 1961941674, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + }, + "m_speed": { + "type": "float", + "id": 1, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 900164744 + }, + "m_schoolName": { + "type": "std::string", + "id": 2, + "offset": 128, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3385349572 + }, + "m_rank": { + "type": "int", + "id": 3, + "offset": 160, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 219803942 + }, + "m_holidayFlags": { + "type": "std::string", + "id": 4, + "offset": 168, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1506904690 + }, + "m_minimumSize": { + "type": "float", + "id": 5, + "offset": 200, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 751206574 + }, + "m_maximumSize": { + "type": "float", + "id": 6, + "offset": 204, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 424567216 + }, + "m_isPredator": { + "type": "int", + "id": 7, + "offset": 208, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 952748183 + }, + "m_percentChanceToTurn": { + "type": "float", + "id": 8, + "offset": 212, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 144771798 + }, + "m_predatorRange": { + "type": "float", + "id": 9, + "offset": 216, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2044238245 + }, + "m_shadowFishKFM": { + "type": "std::string", + "id": 10, + "offset": 224, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2042617449 + }, + "m_alphaLevel": { + "type": "float", + "id": 11, + "offset": 256, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1776159605 + }, + "m_initialBiteChance": { + "type": "float", + "id": 12, + "offset": 260, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1799125575 + }, + "m_incrementalBiteChance": { + "type": "float", + "id": 13, + "offset": 264, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 282955535 + }, + "m_baseLength": { + "type": "float", + "id": 14, + "offset": 268, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 456346324 + }, + "m_fishingXP": { + "type": "int", + "id": 15, + "offset": 272, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 319909002 + }, + "m_biteSeconds": { + "type": "float", + "id": 16, + "offset": 276, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2219559882 + }, + "m_iconIndex": { + "type": "int", + "id": 17, + "offset": 280, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1053730811 + }, + "m_fishtankType": { + "type": "int", + "id": 18, + "offset": 284, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1397512660 + }, + "m_fishSalePrice": { + "type": "int", "id": 19, - "offset": 184, - "flags": 63, + "offset": 288, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2012714323 + "hash": 274861692 }, - "m_nSkinDecal2": { - "type": "unsigned short", + "m_rarity": { + "type": "int", + "id": 20, + "offset": 292, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 899712213 + } + } + }, + "1532717121": { + "name": "class WizardAutobotManagerGraphicalClient", + "bases": [ + "WizardAutobotManager", + "AutobotManager", + "PropertyClass" + ], + "hash": 1532717121, + "properties": {} + }, + "1961941634": { + "name": "class FishBehaviorTemplate", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 1961941634, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + }, + "m_speed": { + "type": "float", + "id": 1, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 900164744 + }, + "m_schoolName": { + "type": "std::string", + "id": 2, + "offset": 128, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3385349572 + }, + "m_rank": { + "type": "int", + "id": 3, + "offset": 160, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 219803942 + }, + "m_holidayFlags": { + "type": "std::string", + "id": 4, + "offset": 168, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1506904690 + }, + "m_minimumSize": { + "type": "float", + "id": 5, + "offset": 200, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 751206574 + }, + "m_maximumSize": { + "type": "float", + "id": 6, + "offset": 204, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 424567216 + }, + "m_isPredator": { + "type": "int", + "id": 7, + "offset": 208, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 952748183 + }, + "m_percentChanceToTurn": { + "type": "float", + "id": 8, + "offset": 212, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 144771798 + }, + "m_predatorRange": { + "type": "float", + "id": 9, + "offset": 216, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2044238245 + }, + "m_shadowFishKFM": { + "type": "std::string", + "id": 10, + "offset": 224, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2042617449 + }, + "m_alphaLevel": { + "type": "float", + "id": 11, + "offset": 256, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1776159605 + }, + "m_initialBiteChance": { + "type": "float", + "id": 12, + "offset": 260, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1799125575 + }, + "m_incrementalBiteChance": { + "type": "float", + "id": 13, + "offset": 264, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 282955535 + }, + "m_baseLength": { + "type": "float", + "id": 14, + "offset": 268, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 456346324 + }, + "m_fishingXP": { + "type": "int", + "id": 15, + "offset": 272, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 319909002 + }, + "m_biteSeconds": { + "type": "float", + "id": 16, + "offset": 276, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2219559882 + }, + "m_iconIndex": { + "type": "int", + "id": 17, + "offset": 280, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1053730811 + }, + "m_fishtankType": { + "type": "int", + "id": 18, + "offset": 284, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1397512660 + }, + "m_fishSalePrice": { + "type": "int", + "id": 19, + "offset": 288, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 274861692 + }, + "m_rarity": { + "type": "int", "id": 20, + "offset": 292, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 899712213 + } + } + }, + "1103017357": { + "name": "class PetBoostPlayerStatEffectTemplate", + "bases": [ + "WizStatisticEffectTemplate", + "StatisticEffectTemplate", + "GameEffectTemplate", + "PropertyClass" + ], + "hash": 1103017357, + "properties": { + "m_effectName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2029161513 + }, + "m_effectCategory": { + "type": "std::string", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1852673222 + }, + "m_sortOrder": { + "type": "int", + "id": 2, + "offset": 148, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1411218206 + }, + "m_duration": { + "type": "double", + "id": 3, "offset": 192, - "flags": 63, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1904828726 + "hash": 2727932435 }, - "m_extendedHairColor": { - "type": "unsigned char", + "m_stackingCategories": { + "type": "std::string", + "id": 4, + "offset": 160, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1774497525 + }, + "m_isPersistent": { + "type": "bool", + "id": 5, + "offset": 153, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 923861920 + }, + "m_bIsOnPet": { + "type": "bool", + "id": 6, + "offset": 154, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 522593303 + }, + "m_isPublic": { + "type": "bool", + "id": 7, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1728439822 + }, + "m_visualEffectAddName": { + "type": "std::string", + "id": 8, + "offset": 200, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3382086694 + }, + "m_visualEffectRemoveName": { + "type": "std::string", + "id": 9, + "offset": 232, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1541697323 + }, + "m_onAddFunctorName": { + "type": "std::string", + "id": 10, + "offset": 280, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1561843107 + }, + "m_onRemoveFunctorName": { + "type": "std::string", + "id": 11, + "offset": 312, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2559017864 + }, + "m_stackingRule": { + "type": "enum STACKING_RULE", + "id": 12, + "offset": 144, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 431568889, + "enum_options": { + "STACKING_ALLOWED": 0, + "STACKING_NOSTACK": 1, + "STACKING_REPLACE": 2 + } + }, + "m_buffAll": { + "type": "bool", + "id": 13, + "offset": 392, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1205044623 + }, + "m_school": { + "type": "std::string", + "id": 14, + "offset": 400, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2438566051 + }, + "m_damageBonusPercent": { + "type": "float", + "id": 15, + "offset": 440, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 623230606 + }, + "m_damageBonusFlat": { + "type": "float", + "id": 16, + "offset": 488, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2212039108 + }, + "m_accuracyBonusPercent": { + "type": "float", + "id": 17, + "offset": 444, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1972336538 + }, + "m_armorPiercingBonusPercent": { + "type": "float", + "id": 18, + "offset": 448, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1569912641 + }, + "m_damageReducePercent": { + "type": "float", + "id": 19, + "offset": 452, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 541736927 + }, + "m_damageReduceFlat": { + "type": "float", + "id": 20, + "offset": 456, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 684172469 + }, + "m_accuracyReducePercent": { + "type": "float", "id": 21, - "offset": 194, - "flags": 63, + "offset": 460, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1534273092 + "hash": 2112559723 }, - "m_extendedSkinDecal": { - "type": "unsigned short", + "m_healBonusPercent": { + "type": "float", "id": 22, - "offset": 196, - "flags": 63, + "offset": 464, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2299798727 + "hash": 562313577 }, - "m_newPlayerOptions": { - "type": "unsigned int", + "m_healIncBonusPercent": { + "type": "float", "id": 23, - "offset": 200, - "flags": 63, + "offset": 468, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1564037328 + "hash": 2182535587 }, - "m_newPlayerOptions2": { - "type": "unsigned int", + "m_hitPointBonus": { + "type": "float", "id": 24, - "offset": 204, - "flags": 63, + "offset": 496, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1895849858 + "hash": 880644461 }, - "m_afterCombatVictoryDance": { - "type": "unsigned int", + "m_spellChargeBonus": { + "type": "float", "id": 25, - "offset": 188, - "flags": 31, + "offset": 504, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1655464256 + "hash": 2109811656 + }, + "m_powerPipBonusPercent": { + "type": "float", + "id": 26, + "offset": 472, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1671446341 + }, + "m_petActChance": { + "type": "int", + "id": 27, + "offset": 492, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 237418461 + }, + "m_manaBonus": { + "type": "float", + "id": 28, + "offset": 500, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1372708603 + }, + "m_statTableName": { + "type": "std::string", + "id": 29, + "offset": 360, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1616642912 + }, + "m_manaReducePercent": { + "type": "float", + "id": 30, + "offset": 568, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 348324221 + }, + "m_expPercent": { + "type": "float", + "id": 31, + "offset": 572, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1147850677 + }, + "m_goldPercent": { + "type": "float", + "id": 32, + "offset": 576, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1095720878 + }, + "m_energyBonus": { + "type": "float", + "id": 33, + "offset": 508, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2223158984 + }, + "m_criticalHitRating": { + "type": "float", + "id": 34, + "offset": 512, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1978690540 + }, + "m_blockRating": { + "type": "float", + "id": 35, + "offset": 516, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2088486759 + }, + "m_accuracyRating": { + "type": "float", + "id": 36, + "offset": 520, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 165525575 + }, + "m_powerPipRating": { + "type": "float", + "id": 37, + "offset": 524, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1355340722 + }, + "m_damageResistanceRating": { + "type": "float", + "id": 38, + "offset": 532, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1961377740 + }, + "m_archmastery": { + "type": "float", + "id": 39, + "offset": 536, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1963579610 + }, + "m_archmasteryBonusPercent": { + "type": "float", + "id": 40, + "offset": 588, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1908627154 + }, + "m_balanceMastery": { + "type": "int", + "id": 41, + "offset": 540, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 149062181 + }, + "m_deathMastery": { + "type": "int", + "id": 42, + "offset": 544, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1421218661 + }, + "m_fireMastery": { + "type": "int", + "id": 43, + "offset": 548, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1431794949 + }, + "m_iceMastery": { + "type": "int", + "id": 44, + "offset": 552, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 704864240 + }, + "m_lifeMastery": { + "type": "int", + "id": 45, + "offset": 556, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2142136447 + }, + "m_mythMastery": { + "type": "int", + "id": 46, + "offset": 560, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1766317185 + }, + "m_stormMastery": { + "type": "int", + "id": 47, + "offset": 564, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1883988244 + }, + "m_stunResistancePercent": { + "type": "float", + "id": 48, + "offset": 580, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1868382627 + }, + "m_fishingLuckBonusPercent": { + "type": "float", + "id": 49, + "offset": 480, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1363349254 + }, + "m_shadowPipBonusPercent": { + "type": "float", + "id": 50, + "offset": 476, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1426533310 + }, + "m_wispBonusPercent": { + "type": "float", + "id": 51, + "offset": 484, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1304386546 + }, + "m_pipConversionRating": { + "type": "float", + "id": 52, + "offset": 584, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 246855691 + }, + "m_shadowPipRating": { + "type": "float", + "id": 53, + "offset": 528, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 507126123 + }, + "m_primaryStat1": { + "type": "std::string", + "id": 54, + "offset": 600, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2417808140 + }, + "m_primaryStat2": { + "type": "std::string", + "id": 55, + "offset": 632, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2417808141 + }, + "m_secondaryStat": { + "type": "std::string", + "id": 56, + "offset": 664, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3564684959 + }, + "m_secondaryModifier": { + "type": "float", + "id": 57, + "offset": 696, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2101148238 } } }, - "360760641": { - "name": "class FurnitureInfoBehaviorTemplate*", + "1102851276": { + "name": "class ClientAtticBehavior", + "bases": [ + "AtticBehavior", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1102851276, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_containerGID": { + "type": "gid", + "id": 1, + "offset": 112, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 550557519 + }, + "m_atticItemCount": { + "type": "int", + "id": 2, + "offset": 120, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 184605671 + } + } + }, + "1102608229": { + "name": "class UnlockTriggerBehaviorTemplate", "bases": [ "BehaviorTemplate", "PropertyClass" ], - "hash": 360760641, + "hash": 1102608229, "properties": { "m_behaviorName": { "type": "std::string", @@ -441490,8 +151522,8 @@ "pointer": false, "hash": 3130754092 }, - "m_yaw": { - "type": "float", + "m_minimumGuildSize": { + "type": "int", "id": 1, "offset": 120, "flags": 7, @@ -441499,10 +151531,10 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 357256328 + "hash": 1297669158 }, - "m_pitch": { - "type": "float", + "m_reagent1ID": { + "type": "unsigned int", "id": 2, "offset": 124, "flags": 7, @@ -441510,10 +151542,10 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 896371695 + "hash": 1834039377 }, - "m_roll": { - "type": "float", + "m_reagent1Number": { + "type": "unsigned int", "id": 3, "offset": 128, "flags": 7, @@ -441521,94 +151553,409 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 310020272 + "hash": 704125517 }, - "m_rotate": { - "type": "bool", + "m_reagent1Adjective": { + "type": "std::string", "id": 4, - "offset": 132, + "offset": 136, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 918859426 + "hash": 1540526241 }, - "m_bounce": { - "type": "bool", + "m_reagent2ID": { + "type": "unsigned int", "id": 5, - "offset": 133, + "offset": 168, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 292742671 + "hash": 1834040466 }, - "m_textureIndex": { - "type": "int", + "m_reagent2Number": { + "type": "unsigned int", "id": 6, - "offset": 136, + "offset": 172, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1723520995 + "hash": 1995593486 }, - "m_textureFilename": { + "m_reagent2Adjective": { "type": "std::string", "id": 7, - "offset": 144, - "flags": 131079, + "offset": 176, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2208648365 + "hash": 1608327618 }, - "m_cameraOffsetX": { - "type": "float", + "m_reagent3ID": { + "type": "unsigned int", "id": 8, - "offset": 176, + "offset": 208, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1515912895 + "hash": 1834041555 }, - "m_cameraOffsetY": { - "type": "float", + "m_reagent3Number": { + "type": "unsigned int", "id": 9, - "offset": 180, + "offset": 212, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1515912896 + "hash": 1139577807 }, - "m_cameraOffsetZ": { - "type": "float", + "m_reagent3Adjective": { + "type": "std::string", "id": 10, - "offset": 184, + "offset": 216, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1515912897 + "hash": 1676128995 + }, + "m_reagent4ID": { + "type": "unsigned int", + "id": 11, + "offset": 248, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1834042644 + }, + "m_reagent4Number": { + "type": "unsigned int", + "id": 12, + "offset": 252, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 283562128 + }, + "m_reagent4Adjective": { + "type": "std::string", + "id": 13, + "offset": 256, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1743930372 + }, + "m_reagent5ID": { + "type": "unsigned int", + "id": 14, + "offset": 288, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1834043733 + }, + "m_reagent5Number": { + "type": "unsigned int", + "id": 15, + "offset": 292, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1575030097 + }, + "m_reagent5Adjective": { + "type": "std::string", + "id": 16, + "offset": 296, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1811731749 + }, + "m_reagent6ID": { + "type": "unsigned int", + "id": 17, + "offset": 328, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1834044822 + }, + "m_reagent6Number": { + "type": "unsigned int", + "id": 18, + "offset": 332, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 719014418 + }, + "m_reagent6Adjective": { + "type": "std::string", + "id": 19, + "offset": 336, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1879533126 + }, + "m_requiredUnlockTriggerID": { + "type": "unsigned int", + "id": 20, + "offset": 368, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1012763195 + }, + "m_islandNumber": { + "type": "unsigned int", + "id": 21, + "offset": 372, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1882137233 + }, + "m_unlockCantrip": { + "type": "std::string", + "id": 22, + "offset": 376, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2731256472 + }, + "m_numberOfUnlockPlayers": { + "type": "int", + "id": 23, + "offset": 408, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 855609764 + }, + "m_requiredUnlockDisplayName": { + "type": "std::string", + "id": 24, + "offset": 416, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1551879295 + }, + "m_unlockedObjectID": { + "type": "unsigned int", + "id": 25, + "offset": 448, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 322023750 + }, + "m_unlockedObjectYaw": { + "type": "float", + "id": 26, + "offset": 452, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1590408244 + }, + "m_unlockedYawEnabled": { + "type": "bool", + "id": 27, + "offset": 456, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 858029316 + }, + "m_positionX": { + "type": "float", + "id": 28, + "offset": 460, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 837995844 + }, + "m_positionY": { + "type": "float", + "id": 29, + "offset": 464, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 837995845 + }, + "m_positionZ": { + "type": "float", + "id": 30, + "offset": 468, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 837995846 + }, + "m_unlockedPositionEnabled": { + "type": "bool", + "id": 31, + "offset": 472, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1129626952 } } }, - "1131817446": { - "name": "class PetGameActionList*", + "688918403": { + "name": "class PipFloatingTextCinematicAction", + "bases": [ + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 688918403, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + } + } + }, + "1962564119": { + "name": "class PipConversionLevelData*", + "bases": [ + "PropertyClass" + ], + "hash": 1962564119, + "properties": { + "m_minLevel": { + "type": "int", + "id": 0, + "offset": 88, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1496818518 + }, + "m_levelValues": { + "type": "class SharedPointer", + "id": 1, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 3506866422 + } + } + }, + "1533719620": { + "name": "class CrownShopPatch*", + "bases": [ + "PropertyClass" + ], + "hash": 1533719620, + "properties": { + "m_patches": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2834774915 + } + } + }, + "686587820": { + "name": "class SharedPointer", "bases": [ "Window", "PropertyClass" ], - "hash": 1131817446, + "hash": 686587820, "properties": { "m_sName": { "type": "std::string", @@ -441625,7 +151972,7 @@ "type": "class SharedPointer", "id": 1, "offset": 112, - "flags": 65667, + "flags": 65671, "container": "Vector", "dynamic": true, "singleton": false, @@ -441698,140 +152045,648 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 3105139380 + "hash": 3105139380 + }, + "m_fTargetAlpha": { + "type": "float", + "id": 5, + "offset": 212, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1809129834 + }, + "m_fDisabledAlpha": { + "type": "float", + "id": 6, + "offset": 216, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1389987675 + }, + "m_fAlpha": { + "type": "float", + "id": 7, + "offset": 208, + "flags": 65671, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 482130755 + }, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3623628394 + }, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2102211316 + }, + "m_sScript": { + "type": "std::string", + "id": 10, + "offset": 352, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1846695875 + }, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3389835433 + }, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547159940 + }, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513510520 + }, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3091503757 + } + } + }, + "1962470811": { + "name": "class std::vector,class std::allocator >,class std::allocator,class std::allocator > > >", + "bases": [], + "hash": 1962470811, + "properties": {} + }, + "1532765769": { + "name": "class ShadowCreatureIdleCinematicAction*", + "bases": [ + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 1532765769, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + } + } + }, + "684688050": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 684688050, + "properties": { + "m_includeCastleBlocks": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 519951249 + }, + "m_includePlantLife": { + "type": "bool", + "id": 1, + "offset": 73, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 596498422 + }, + "m_includeWallHangings": { + "type": "bool", + "id": 2, + "offset": 74, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 720249270 + }, + "m_includeTileWallpaper": { + "type": "bool", + "id": 3, + "offset": 75, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1182210829 + }, + "m_includeOutdoor": { + "type": "bool", + "id": 4, + "offset": 76, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 192313891 + }, + "m_includeFurniture": { + "type": "bool", + "id": 5, + "offset": 77, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 15665371 + }, + "m_includeDecoration": { + "type": "bool", + "id": 6, + "offset": 78, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1389489247 + }, + "m_includeMusicalScrolls": { + "type": "bool", + "id": 7, + "offset": 79, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 623905255 + }, + "m_includeSeeds": { + "type": "bool", + "id": 8, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1324177291 + } + } + }, + "1102935909": { + "name": "class UnlockTriggerBehaviorTemplate*", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 1102935909, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + }, + "m_minimumGuildSize": { + "type": "int", + "id": 1, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1297669158 + }, + "m_reagent1ID": { + "type": "unsigned int", + "id": 2, + "offset": 124, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1834039377 + }, + "m_reagent1Number": { + "type": "unsigned int", + "id": 3, + "offset": 128, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 704125517 + }, + "m_reagent1Adjective": { + "type": "std::string", + "id": 4, + "offset": 136, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1540526241 + }, + "m_reagent2ID": { + "type": "unsigned int", + "id": 5, + "offset": 168, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1834040466 + }, + "m_reagent2Number": { + "type": "unsigned int", + "id": 6, + "offset": 172, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1995593486 + }, + "m_reagent2Adjective": { + "type": "std::string", + "id": 7, + "offset": 176, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1608327618 + }, + "m_reagent3ID": { + "type": "unsigned int", + "id": 8, + "offset": 208, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1834041555 + }, + "m_reagent3Number": { + "type": "unsigned int", + "id": 9, + "offset": 212, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1139577807 + }, + "m_reagent3Adjective": { + "type": "std::string", + "id": 10, + "offset": 216, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1676128995 + }, + "m_reagent4ID": { + "type": "unsigned int", + "id": 11, + "offset": 248, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1834042644 + }, + "m_reagent4Number": { + "type": "unsigned int", + "id": 12, + "offset": 252, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 283562128 + }, + "m_reagent4Adjective": { + "type": "std::string", + "id": 13, + "offset": 256, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1743930372 + }, + "m_reagent5ID": { + "type": "unsigned int", + "id": 14, + "offset": 288, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1834043733 + }, + "m_reagent5Number": { + "type": "unsigned int", + "id": 15, + "offset": 292, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1575030097 + }, + "m_reagent5Adjective": { + "type": "std::string", + "id": 16, + "offset": 296, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1811731749 + }, + "m_reagent6ID": { + "type": "unsigned int", + "id": 17, + "offset": 328, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1834044822 + }, + "m_reagent6Number": { + "type": "unsigned int", + "id": 18, + "offset": 332, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 719014418 + }, + "m_reagent6Adjective": { + "type": "std::string", + "id": 19, + "offset": 336, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1879533126 + }, + "m_requiredUnlockTriggerID": { + "type": "unsigned int", + "id": 20, + "offset": 368, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1012763195 }, - "m_fTargetAlpha": { - "type": "float", - "id": 5, - "offset": 212, - "flags": 135, + "m_islandNumber": { + "type": "unsigned int", + "id": 21, + "offset": 372, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1809129834 + "hash": 1882137233 }, - "m_fDisabledAlpha": { - "type": "float", - "id": 6, - "offset": 216, - "flags": 135, + "m_unlockCantrip": { + "type": "std::string", + "id": 22, + "offset": 376, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1389987675 + "hash": 2731256472 }, - "m_fAlpha": { - "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, + "m_numberOfUnlockPlayers": { + "type": "int", + "id": 23, + "offset": 408, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 482130755 + "hash": 855609764 }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, + "m_requiredUnlockDisplayName": { + "type": "std::string", + "id": 24, + "offset": 416, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3623628394 + "pointer": false, + "hash": 1551879295 }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, + "m_unlockedObjectID": { + "type": "unsigned int", + "id": 25, + "offset": 448, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2102211316 + "hash": 322023750 }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, + "m_unlockedObjectYaw": { + "type": "float", + "id": 26, + "offset": 452, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1846695875 + "hash": 1590408244 }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, + "m_unlockedYawEnabled": { + "type": "bool", + "id": 27, + "offset": 456, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3389835433 + "hash": 858029316 }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, + "m_positionX": { + "type": "float", + "id": 28, + "offset": 460, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2547159940 + "hash": 837995844 }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, + "m_positionY": { + "type": "float", + "id": 29, + "offset": 464, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1513510520 + "hash": 837995845 }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, + "m_positionZ": { + "type": "float", + "id": 30, + "offset": 468, + "flags": 7, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 2587533771 + "hash": 837995846 }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, + "m_unlockedPositionEnabled": { + "type": "bool", + "id": 31, + "offset": 472, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3091503757 + "hash": 1129626952 } } }, - "1541492568": { - "name": "class ClientEffectCinematicAction", + "1532765721": { + "name": "class ShadowCreatureIdleCinematicAction", "bases": [ - "EffectCinematicAction", - "BaseEffectCinematicAction", + "ActorCinematicAction", "CinematicAction", "PropertyClass" ], - "hash": 1541492568, + "hash": 1532765721, "properties": { "m_timeOffset": { "type": "float", @@ -441844,469 +152699,534 @@ "pointer": false, "hash": 2237098605 }, - "m_effectRel": { - "type": "enum BaseEffectCinematicAction::kEffectRelative", + "m_actor": { + "type": "std::string", "id": 1, "offset": 80, - "flags": 2097159, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2978921287, - "enum_options": { - "kNone": 0, - "kSigil": 1, - "kTarget": 2, - "kSource": 3, - "kActor": 4 - } - }, - "m_graphic": { - "type": "std::string", - "id": 2, - "offset": 88, - "flags": 131079, - "container": "List", + "hash": 2285866132 + } + } + }, + "684001114": { + "name": "class SharedPointer", + "bases": [ + "CoreTemplate", + "PropertyClass" + ], + "hash": 684001114, + "properties": { + "m_behaviors": { + "type": "class BehaviorTemplate*", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Vector", "dynamic": true, "singleton": false, - "pointer": false, - "hash": 2592217913 + "pointer": true, + "hash": 1197808594 }, - "m_bUseOrientationOverride": { - "type": "bool", - "id": 3, - "offset": 120, + "m_schoolName": { + "type": "std::string", + "id": 1, + "offset": 96, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1088002894 + "hash": 3385349572 }, - "m_overrideOrientation": { - "type": "class Vector3D", - "id": 4, - "offset": 124, + "m_minLevel": { + "type": "unsigned int", + "id": 2, + "offset": 132, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3267199758 + "hash": 1708220969 }, - "m_bUseLocationOverride": { - "type": "bool", - "id": 5, - "offset": 104, + "m_schoolIndex": { + "type": "int", + "id": 3, + "offset": 136, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1767170875 + "hash": 7119994 }, - "m_overrideLocation": { - "type": "class Vector3D", - "id": 6, - "offset": 108, + "m_secondarySchoolBadgeList": { + "type": "std::string", + "id": 4, + "offset": 144, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 3776417691 + "hash": 2758948314 } } }, - "360471032": { - "name": "class SharedPointer", + "683924242": { + "name": "class PhotoInformation*", "bases": [ - "ObstacleCourseObstacleBehavior", - "BehaviorInstance", "PropertyClass" ], - "hash": 360471032, + "hash": 683924242, "properties": { - "m_behaviorTemplateNameID": { + "m_photoWorthyItems": { "type": "unsigned int", "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 223437287 + "hash": 1021725286 } } }, - "1131660356": { - "name": "class WizardEquippedItemInfo*", + "1963134700": { + "name": "class PendingClassProjectFriendReward", "bases": [ - "EquippedItemInfo", "PropertyClass" ], - "hash": 1131660356, + "hash": 1963134700, + "properties": {} + }, + "1102965775": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1102965775, "properties": { - "m_itemID": { + "m_guildName": { "type": "unsigned int", "id": 0, "offset": 72, - "flags": 31, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 780964329 + "hash": 778026115 }, - "m_baseColor": { - "type": "bui5", + "m_guildNameLocale": { + "type": "int", "id": 1, - "offset": 92, - "flags": 31, + "offset": 76, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1433198221 + "hash": 656991008 }, - "m_trimColor": { - "type": "bui5", + "m_categoryID": { + "type": "unsigned int", "id": 2, - "offset": 96, - "flags": 31, + "offset": 80, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1198446862 + "hash": 1382795736 }, - "m_pattern": { - "type": "bui5", + "m_time": { + "type": "unsigned int", "id": 3, - "offset": 100, - "flags": 31, + "offset": 84, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1338360593 + "hash": 431286940 }, - "m_displayID": { + "m_count": { "type": "unsigned int", "id": 4, "offset": 88, - "flags": 31, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1233846672 - }, - "m_pJewelInfo": { - "type": "class SharedPointer", - "id": 5, - "offset": 120, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 387523703 - }, - "m_fullColor": { - "type": "u24", - "id": 6, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, + "hash": 1002373110 + } + } + }, + "683760402": { + "name": "class PhotoInformation", + "bases": [ + "PropertyClass" + ], + "hash": 683760402, + "properties": { + "m_photoWorthyItems": { + "type": "unsigned int", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 301226616 + "hash": 1021725286 } } }, - "1541836930": { - "name": "class ClientJewelSocketBehavior", + "1962605079": { + "name": "class PipConversionLevelData", "bases": [ - "JewelSocketBehaviorBase", - "BehaviorInstance", "PropertyClass" ], - "hash": 1541836930, + "hash": 1962605079, "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", + "m_minLevel": { + "type": "int", "id": 0, - "offset": 104, - "flags": 39, + "offset": 88, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 + "hash": 1496818518 }, - "m_publicJewelInfo": { - "type": "class SharedPointer", + "m_levelValues": { + "type": "class SharedPointer", "id": 1, - "offset": 112, - "flags": 31, - "container": "Static", - "dynamic": false, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, "singleton": false, "pointer": true, - "hash": 2051956582 + "hash": 3506866422 } } }, - "360955637": { - "name": "class BreadCrumbBehavior*", + "1533509225": { + "name": "class ObjStateSet", "bases": [ - "BreadCrumbBehaviorBase", - "BehaviorInstance", "PropertyClass" ], - "hash": 360955637, + "hash": 1533509225, "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", + "m_categories": { + "type": "class ObjStateCategory*", "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, + "offset": 128, + "flags": 7, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 223437287 + "pointer": true, + "hash": 1980433352 }, - "m_breadCrumbNumber": { - "type": "unsigned int", + "m_stateSetName": { + "type": "std::string", "id": 1, - "offset": 112, - "flags": 65543, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2100995821 - }, - "m_equippedPetGIDList": { - "type": "gid", - "id": 2, - "offset": 120, - "flags": 65543, + "hash": 1863712969 + } + } + }, + "1533282870": { + "name": "class std::list >", + "bases": [], + "hash": 1533282870, + "properties": {} + }, + "1104540968": { + "name": "class TalentInfo", + "bases": [ + "PropertyClass" + ], + "hash": 1104540968, + "properties": { + "m_combatTalents": { + "type": "unsigned int", + "id": 0, + "offset": 72, + "flags": 7, "container": "List", "dynamic": true, "singleton": false, "pointer": false, - "hash": 1574152046 + "hash": 1157727646 }, - "m_equippedBreadCrumbIDList": { - "type": "unsigned short", - "id": 3, - "offset": 136, - "flags": 65543, + "m_derbyTalents": { + "type": "unsigned int", + "id": 1, + "offset": 88, + "flags": 7, "container": "List", "dynamic": true, "singleton": false, "pointer": false, - "hash": 592278117 - }, - "m_flags": { - "type": "unsigned int", - "id": 4, - "offset": 152, - "flags": 65543, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1005801050 + "hash": 1072926942 } } }, - "1132481924": { - "name": "class HousingObjectJewelWandContainer*", + "1103494125": { + "name": "class SharedPointer", "bases": [ - "HousingObjectWandContainer", + "ActorCinematicAction", + "CinematicAction", "PropertyClass" ], - "hash": 1132481924, + "hash": 1103494125, "properties": { - "m_displayID": { - "type": "gid", + "m_timeOffset": { + "type": "float", "id": 0, "offset": 72, - "flags": 65543, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1022427803 + "hash": 2237098605 }, - "m_jewelBuffer": { + "m_actor": { "type": "std::string", "id": 1, "offset": 80, - "flags": 65543, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2221753804 + "hash": 2285866132 + }, + "m_newActorName": { + "type": "std::string", + "id": 2, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2029131039 } } }, - "1543205417": { - "name": "enum DerbyActionTargetType", - "bases": [], - "hash": 1543205417, - "properties": {} - }, - "361088321": { - "name": "class FurnitureInfoBehaviorTemplate", + "684418380": { + "name": "class SharedPointer", "bases": [ - "BehaviorTemplate", + "WizItemLocations", "PropertyClass" ], - "hash": 361088321, + "hash": 684418380, "properties": { - "m_behaviorName": { - "type": "std::string", + "m_itemType": { + "type": "enum WizItemLocations::eItemType", "id": 0, "offset": 72, - "flags": 7, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3130754092 + "hash": 3482173907, + "enum_options": { + "shop": 0, + "quest": 1, + "boss": 2, + "gardening": 3, + "goldChest": 4 + } }, - "m_yaw": { - "type": "float", + "m_bosses": { + "type": "unsigned int", "id": 1, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, + "offset": 80, + "flags": 31, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 357256328 - }, - "m_pitch": { - "type": "float", - "id": 2, - "offset": 124, + "hash": 501597596 + } + } + }, + "1963861785": { + "name": "class BGSigilProxyBehaviorTemplate*", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 1963861785, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 896371695 - }, - "m_roll": { - "type": "float", - "id": 3, - "offset": 128, + "hash": 3130754092 + } + } + }, + "1103483912": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1103483912, + "properties": { + "m_gameObjectTemplateID": { + "type": "unsigned int", + "id": 0, + "offset": 72, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 310020272 + "hash": 1154586887, + "enum_options": { + "__DEFAULT": 0 + } }, - "m_rotate": { - "type": "bool", - "id": 4, - "offset": 132, + "m_positionXY": { + "type": "unsigned int", + "id": 1, + "offset": 76, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 918859426 + "hash": 1263476723, + "enum_options": { + "__DEFAULT": 0 + } }, - "m_bounce": { - "type": "bool", - "id": 5, - "offset": 133, + "m_positionZ": { + "type": "float", + "id": 2, + "offset": 80, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 292742671 + "hash": 837995846, + "enum_options": { + "__DEFAULT": 0 + } }, - "m_textureIndex": { - "type": "int", - "id": 6, - "offset": 136, + "m_yaw": { + "type": "unsigned char", + "id": 3, + "offset": 84, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1723520995 - }, - "m_textureFilename": { - "type": "std::string", - "id": 7, - "offset": 144, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2208648365 + "hash": 904654625, + "enum_options": { + "__DEFAULT": 0 + } }, - "m_cameraOffsetX": { - "type": "float", - "id": 8, - "offset": 176, + "m_extraData1": { + "type": "unsigned int", + "id": 4, + "offset": 88, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1515912895 - }, - "m_cameraOffsetY": { + "hash": 693220060, + "enum_options": { + "__DEFAULT": 0 + } + } + } + }, + "1533676595": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1533676595, + "properties": {} + }, + "1963449740": { + "name": "class std::list >", + "bases": [], + "hash": 1963449740, + "properties": {} + }, + "1963227688": { + "name": "class ClearHangingEffectsCinematicAction", + "bases": [ + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 1963227688, + "properties": { + "m_timeOffset": { "type": "float", - "id": 9, - "offset": 180, + "id": 0, + "offset": 72, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1515912896 + "hash": 2237098605 }, - "m_cameraOffsetZ": { - "type": "float", - "id": 10, - "offset": 184, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1515912897 + "hash": 2285866132 } } }, - "1136742422": { - "name": "class SharedPointer", + "685293081": { + "name": "class SharedPointer", "bases": [ - "StopComplexSoundCinematicAction", - "CinematicAction", "PropertyClass" ], - "hash": 1136742422, + "hash": 685293081, "properties": { - "m_timeOffset": { - "type": "float", + "m_sName": { + "type": "std::string", "id": 0, "offset": 72, "flags": 7, @@ -442314,89 +153234,114 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 + "hash": 2306437263 }, - "m_sound": { + "m_sEmbeddedPage": { "type": "std::string", "id": 1, - "offset": 80, + "offset": 112, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2307644996 + "hash": 1709213077 }, - "m_stopAllLoopingSounds": { - "type": "bool", + "m_sExternalPage": { + "type": "std::string", "id": 2, - "offset": 112, + "offset": 144, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1944220294 + "hash": 3459688718 }, - "m_fadeDuration": { - "type": "float", + "m_sSteamPage": { + "type": "std::string", "id": 3, - "offset": 116, + "offset": 176, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1402536557 + "hash": 1924913253 + }, + "m_nFlags": { + "type": "unsigned int", + "id": 4, + "offset": 208, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 922328456, + "enum_options": { + "CheckSubscription": 1, + "UpdateCrownsBalance": 2, + "QuietAudio": 4 + } } } }, - "1135094549": { - "name": "class WizItemGoldChestList", + "1534544077": { + "name": "class Point", + "bases": [], + "hash": 1534544077, + "properties": {} + }, + "684736523": { + "name": "class WizardAutobotManager*", "bases": [ - "WizItemLocations", + "AutobotManager", "PropertyClass" ], - "hash": 1135094549, + "hash": 684736523, + "properties": {} + }, + "1105196328": { + "name": "class TalentInfo*", + "bases": [ + "PropertyClass" + ], + "hash": 1105196328, "properties": { - "m_itemType": { - "type": "enum WizItemLocations::eItemType", + "m_combatTalents": { + "type": "unsigned int", "id": 0, "offset": 72, - "flags": 2097183, - "container": "Static", - "dynamic": false, + "flags": 7, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 3482173907, - "enum_options": { - "shop": 0, - "quest": 1, - "boss": 2, - "gardening": 3, - "goldChest": 4 - } + "hash": 1157727646 }, - "m_goldChestZones": { - "type": "std::string", + "m_derbyTalents": { + "type": "unsigned int", "id": 1, - "offset": 80, - "flags": 31, + "offset": 88, + "flags": 7, "container": "List", "dynamic": true, "singleton": false, "pointer": false, - "hash": 2718514023 + "hash": 1072926942 } } }, - "1543933100": { - "name": "class AlchemyBehavior*", + "1533802762": { + "name": "class WizardClientDuelBehavior*", "bases": [ + "ClientDuelBehavior", + "DuelBehavior", "BehaviorInstance", "PropertyClass" ], - "hash": 1543933100, + "hash": 1533802762, "properties": { "m_behaviorTemplateNameID": { "type": "unsigned int", @@ -442409,440 +153354,851 @@ "pointer": false, "hash": 223437287 }, - "m_recipeBag": { - "type": "class RecipeBag", + "m_pDuel": { + "type": "class SharedPointer", "id": 1, "offset": 112, - "flags": 27, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 2218166892 + "pointer": true, + "hash": 1066616366 }, - "m_craftingSlotsBag": { - "type": "class ObjectBag", + "m_sigilTemplateID": { + "type": "unsigned int", "id": 2, - "offset": 320, - "flags": 27, + "offset": 128, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2324986502 - }, - "m_reagentBag": { - "type": "class ObjectBag", - "id": 3, - "offset": 512, - "flags": 27, + "hash": 269055310 + } + } + }, + "1963855641": { + "name": "class BGSigilProxyBehaviorTemplate", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 1963855641, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2459563753 - }, - "m_bonusCrafting": { - "type": "int", - "id": 4, - "offset": 704, - "flags": 59, + "hash": 3130754092 + } + } + }, + "1104623312": { + "name": "class SharedPointer", + "bases": [ + "ItemLootInfo", + "LootInfo", + "LootInfoBase", + "PropertyClass" + ], + "hash": 1104623312, + "properties": { + "m_lootType": { + "type": "enum LootInfo::LOOT_TYPE", + "id": 0, + "offset": 72, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 943921711 + "hash": 1591891442, + "enum_options": { + "LOOT_TYPE_NONE": 0, + "LOOT_TYPE_GOLD": 1, + "LOOT_TYPE_MANA": 2, + "LOOT_TYPE_ITEM": 3, + "LOOT_TYPE_TREASURE_CARD": 4, + "LOOT_TYPE_MAGIC_XP": 5, + "LOOT_TYPE_ADD_SPELL": 6, + "LOOT_TYPE_MAX_HEALTH": 7, + "LOOT_TYPE_MAX_GOLD": 8, + "LOOT_TYPE_MAX_MANA": 9, + "LOOT_TYPE_MAX_POTION": 10, + "LOOT_TYPE_TRAINING_POINTS": 11, + "LOOT_TYPE_RECIPE": 12, + "LOOT_TYPE_CRAFTING_SLOT": 13, + "LOOT_TYPE_REAGENT": 14, + "LOOT_TYPE_PETSNACK": 15, + "LOOT_TYPE_GARDENING_XP": 16, + "LOOT_TYPE_PET_XP": 17, + "LOOT_TYPE_TREASURE_TABLE": 18, + "LOOT_TYPE_ARENA_POINTS": 19, + "LOOT_TYPE_ARENA_BONUS_POINTS": 20, + "LOOT_TYPE_GROUP": 21, + "LOOT_TYPE_FISHING_XP": 22, + "LOOT_TYPE_EVENT_CURRENCY_1": 24, + "LOOT_TYPE_EVENT_CURRENCY_2": 25, + "LOOT_TYPE_PVP_CURRENCY": 26, + "LOOT_TYPE_PVP_CURRENCY_BONUS": 27, + "LOOT_TYPE_PVP_TOURNEY_CURRENCY": 28, + "LOOT_TYPE_PVP_TOURNEY_CURRENCY_BONUS": 29, + "LOOT_TYPE_FURNITURE_ESSENCE": 30 + } }, - "m_timerMultiplier": { - "type": "float", - "id": 5, - "offset": 708, - "flags": 27, + "m_itemID": { + "type": "gid", + "id": 1, + "offset": 88, + "flags": 33554463, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1373659455 + "hash": 569545460 }, - "m_maxReagentStack": { + "m_numItems": { "type": "int", - "id": 6, - "offset": 712, - "flags": 27, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1121296540 - }, - "m_equippedRecipes": { - "type": "unsigned int", - "id": 7, - "offset": 720, - "flags": 27, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1981226997 - }, - "m_equippedRecipeData": { - "type": "std::string", - "id": 8, - "offset": 736, - "flags": 551, + "id": 2, + "offset": 96, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2773803466 + "hash": 1588646284 } } }, - "361737915": { - "name": "class SubscriberOnlyItemsList", + "1533719780": { + "name": "class CrownShopPatch", "bases": [ "PropertyClass" ], - "hash": 361737915, + "hash": 1533719780, "properties": { - "m_subscriberOnlyItems": { - "type": "gid", + "m_patches": { + "type": "std::string", "id": 0, "offset": 72, "flags": 31, - "container": "Vector", + "container": "List", "dynamic": true, "singleton": false, "pointer": false, - "hash": 1721964880 + "hash": 2834774915 } } }, - "1134547011": { - "name": "class SharedPointer", + "684736547": { + "name": "class WizardAutobotManager", "bases": [ - "ObstacleCourseObstacleBehavior", - "BehaviorInstance", + "AutobotManager", "PropertyClass" ], - "hash": 1134547011, + "hash": 684736547, + "properties": {} + }, + "1533731312": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1533731312, "properties": { - "m_behaviorTemplateNameID": { + "m_weight": { "type": "unsigned int", "id": 0, - "offset": 104, - "flags": 39, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 + "hash": 1311209301 } } }, - "1543718823": { - "name": "class DailyPvPData*", + "1965470268": { + "name": "class SharedPointer", "bases": [ + "BehaviorTemplate", "PropertyClass" ], - "hash": 1543718823, + "hash": 1965470268, "properties": { - "m_dailyPvPList": { - "type": "class SharedPointer", + "m_behaviorName": { + "type": "std::string", "id": 0, "offset": 72, "flags": 7, - "container": "List", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2102460099 + "pointer": false, + "hash": 3130754092 + }, + "m_spellbook": { + "type": "std::string", + "id": 1, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2689219302 } } }, - "1133923160": { - "name": "class std::list >", - "bases": [], - "hash": 1133923160, - "properties": {} + "1105301114": { + "name": "class ClientCastEffectCinematicAction", + "bases": [ + "CastEffectCinematicAction", + "BaseEffectCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 1105301114, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_effectRel": { + "type": "enum BaseEffectCinematicAction::kEffectRelative", + "id": 1, + "offset": 80, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2978921287, + "enum_options": { + "kNone": 0, + "kSigil": 1, + "kTarget": 2, + "kSource": 3, + "kActor": 4 + } + }, + "m_namedActor": { + "type": "std::string", + "id": 2, + "offset": 88, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3413532537 + } + } }, - "363285728": { - "name": "class GraphicalPvPTourneyCurrencyBonus", + "686035860": { + "name": "class InvisibilityEffect*", "bases": [ - "GraphicalSpell", - "Spell", + "GameEffectBase", "PropertyClass" ], - "hash": 363285728, + "hash": 686035860, "properties": { - "m_templateID": { - "type": "unsigned int", + "m_currentTickCount": { + "type": "double", "id": 0, - "offset": 128, + "offset": 80, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2533274692 + }, + "m_effectNameID": { + "type": "unsigned int", + "id": 1, + "offset": 96, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1204067144 + }, + "m_bIsOnPet": { + "type": "bool", + "id": 2, + "offset": 73, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1286746870 + "hash": 522593303 }, - "m_enchantment": { + "m_originatorID": { + "type": "gid", + "id": 3, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1131810019 + }, + "m_itemSlotID": { + "type": "unsigned int", + "id": 4, + "offset": 112, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1895747595 + }, + "m_internalID": { + "type": "int", + "id": 5, + "offset": 92, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1643137924 + }, + "m_endTime": { "type": "unsigned int", + "id": 6, + "offset": 88, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 716479635 + } + } + }, + "1965311493": { + "name": "class VariableSpellEffect", + "bases": [ + "SpellEffect", + "PropertyClass" + ], + "hash": 1965311493, + "properties": { + "m_effectType": { + "type": "enum SpellEffect::kSpellEffects", + "id": 0, + "offset": 72, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2578255295, + "enum_options": { + "kInvalidSpellEffect": 0, + "kDamage": 1, + "kDamageNoCrit": 2, + "kHeal": 3, + "kHealPercent": 4, + "kSetHealPercent": 113, + "kStealHealth": 5, + "kReduceOverTime": 6, + "kDetonateOverTime": 7, + "kPushCharm": 8, + "kStealCharm": 9, + "kPushWard": 10, + "kStealWard": 11, + "kPushOverTime": 12, + "kStealOverTime": 13, + "kRemoveCharm": 14, + "kRemoveWard": 15, + "kRemoveOverTime": 16, + "kRemoveAura": 17, + "kSwapAll": 18, + "kSwapCharm": 19, + "kSwapWard": 20, + "kSwapOverTime": 21, + "kModifyIncomingDamage": 22, + "kModifyIncomingDamageFlat": 119, + "kMaximumIncomingDamage": 23, + "kModifyIncomingHeal": 24, + "kModifyIncomingHealFlat": 118, + "kModifyIncomingDamageType": 25, + "kModifyIncomingArmorPiercing": 26, + "kModifyOutgoingDamage": 27, + "kModifyOutgoingDamageFlat": 121, + "kModifyOutgoingHeal": 28, + "kModifyOutgoingHealFlat": 120, + "kModifyOutgoingDamageType": 29, + "kModifyOutgoingArmorPiercing": 30, + "kModifyOutgoingStealHealth": 31, + "kModifyIncomingStealHealth": 32, + "kBounceNext": 33, + "kBouncePrevious": 34, + "kBounceBack": 35, + "kBounceAll": 36, + "kAbsorbDamage": 37, + "kAbsorbHeal": 38, + "kModifyAccuracy": 39, + "kDispel": 40, + "kConfusion": 41, + "kCloakedCharm": 42, + "kCloakedWard": 43, + "kStunResist": 44, + "kClue": 111, + "kPipConversion": 45, + "kCritBoost": 46, + "kCritBlock": 47, + "kPolymorph": 48, + "kDelayCast": 49, + "kModifyCardCloak": 50, + "kModifyCardDamage": 51, + "kModifyCardAccuracy": 53, + "kModifyCardMutation": 54, + "kModifyCardRank": 55, + "kModifyCardArmorPiercing": 56, + "kSummonCreature": 65, + "kTeleportPlayer": 66, + "kStun": 67, + "kDampen": 68, + "kReshuffle": 69, + "kMindControl": 70, + "kModifyPips": 71, + "kModifyPowerPips": 72, + "kModifyShadowPips": 73, + "kModifyHate": 74, + "kDamageOverTime": 75, + "kHealOverTime": 76, + "kModifyPowerPipChance": 77, + "kModifyRank": 78, + "kStunBlock": 79, + "kRevealCloak": 80, + "kInstantKill": 81, + "kAfterlife": 82, + "kDeferredDamage": 83, + "kDamagePerTotalPipPower": 84, + "kModifyCardHeal": 52, + "kModifyCardCharm": 57, + "kModifyCardWard": 58, + "kModifyCardOutgoingDamage": 59, + "kModifyCardOutgoingAccuracy": 60, + "kModifyCardOutgoingHeal": 61, + "kModifyCardOutgoingArmorPiercing": 62, + "kModifyCardIncomingDamage": 63, + "kModifyCardAbsorbDamage": 64, + "kCloakedWardNoRemove": 86, + "kAddCombatTriggerList": 87, + "kRemoveCombatTriggerList": 88, + "kBacklashDamage": 89, + "kModifyBacklash": 90, + "kIntercept": 91, + "kShadowSelf": 92, + "kShadowCreature": 93, + "kModifyShadowCreatureLevel": 94, + "kSelectShadowCreatureAttackTarget": 95, + "kShadowDecrementTurn": 96, + "kCritBoostSchoolSpecific": 97, + "kSpawnCreature": 98, + "kUnPolymorph": 99, + "kPowerPipConversion": 100, + "kProtectCardBeneficial": 101, + "kProtectCardHarmful": 102, + "kProtectBeneficial": 103, + "kProtectHarmful": 104, + "kDivideDamage": 105, + "kCollectEssence": 106, + "kKillCreature": 107, + "kDispelBlock": 108, + "kConfusionBlock": 109, + "kModifyPipRoundRate": 110, + "kMaxHealthDamage": 112, + "kUntargetable": 114, + "kMakeTargetable": 115, + "kForceTargetable": 116, + "kRemoveStunBlock": 117, + "kExitCombat": 122, + "kSuspendPips": 123, + "kResumePips": 124, + "kAutoPass": 125, + "kStopAutoPass": 126, + "kVanish": 127, + "kStopVanish": 128, + "kMaxHealthHeal": 129, + "kHealByWard": 130, + "kTaunt": 131, + "kPacify": 132, + "kRemoveTargetRestriction": 133, + "kConvertHangingEffect": 134, + "kAddSpellToDeck": 135, + "kAddSpellToHand": 136, + "kModifyIncomingDamageOverTime": 137, + "kModifyIncomingHealOverTime": 138, + "kModifyCardDamagebyRank": 139, + "kPushConvertedCharm": 140, + "kStealConvertedCharm": 141, + "kPushConvertedWard": 142, + "kStealConvertedWard": 143, + "kPushConvertedOverTime": 144, + "kStealConvertedOverTime": 145, + "kRemoveConvertedCharm": 146, + "kRemoveConvertedWard": 147, + "kRemoveConvertedOverTime": 148, + "kModifyOverTimeDuration": 149, + "kModifySchoolPips": 150 + } + }, + "m_effectParam": { + "type": "int", "id": 1, - "offset": 80, + "offset": 76, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2217886818 + "hash": 357920024 }, - "m_pipCost": { - "type": "class SharedPointer", + "m_disposition": { + "type": "enum SpellEffect::kHangingDisposition", "id": 2, - "offset": 176, - "flags": 7, + "offset": 80, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3605704820 + "pointer": false, + "hash": 1904841031, + "enum_options": { + "kBoth": 0, + "kBeneficial": 1, + "kHarmful": 2 + } }, - "m_regularAdjust": { - "type": "int", + "m_sDamageType": { + "type": "std::string", "id": 3, - "offset": 192, - "flags": 31, + "offset": 88, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1420453335 + "hash": 2501054223 }, - "m_magicSchoolID": { + "m_damageType": { "type": "unsigned int", "id": 4, - "offset": 136, - "flags": 7, + "offset": 84, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 893146499 + "hash": 737882766 }, - "m_accuracy": { - "type": "unsigned char", + "m_pipNum": { + "type": "int", "id": 5, - "offset": 132, + "offset": 128, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2273914939 + "hash": 830827539 }, - "m_treasureCard": { - "type": "bool", + "m_actNum": { + "type": "int", "id": 6, - "offset": 197, + "offset": 132, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1764879128 + "hash": 236824866 }, - "m_battleCard": { - "type": "bool", + "m_effectTarget": { + "type": "enum SpellEffect::kEffectTarget", "id": 7, - "offset": 198, - "flags": 31, + "offset": 140, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1332843753 + "hash": 2458940523, + "enum_options": { + "kInvalidTarget": 0, + "kSpell": 1, + "kSpecificSpells": 2, + "kGlobal": 3, + "kEnemyTeam": 4, + "kEnemyTeamAllAtOnce": 5, + "kFriendlyTeam": 6, + "kFriendlyTeamAllAtOnce": 7, + "kEnemySingle": 8, + "kFriendlySingle": 9, + "kMinion": 10, + "kFriendlyMinion": 17, + "kEnemyMinion": 18, + "kSelf": 11, + "kAtLeastOneEnemy": 13, + "kPreselectedEnemySingle": 12, + "kMultiTargetEnemy": 14, + "kMultiTargetFriendly": 15, + "kFriendlySingleNotMe": 16 + } }, - "m_itemCard": { - "type": "bool", + "m_numRounds": { + "type": "int", "id": 8, - "offset": 199, - "flags": 7, + "offset": 144, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1683654300 + "hash": 1229753829 }, - "m_sideBoard": { - "type": "bool", + "m_paramPerRound": { + "type": "int", "id": 9, - "offset": 200, - "flags": 7, + "offset": 148, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1897838368 + "hash": 683234234 }, - "m_spellID": { - "type": "unsigned int", + "m_healModifier": { + "type": "float", "id": 10, - "offset": 204, - "flags": 31, + "offset": 152, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1697483258 + "hash": 1317921248, + "enum_options": { + "__DEFAULT": "1.0" + } }, - "m_leavesPlayWhenCastOverride": { - "type": "bool", + "m_spellTemplateID": { + "type": "unsigned int", "id": 11, - "offset": 216, + "offset": 120, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 874407398 + "hash": 585567702 }, - "m_cloaked": { - "type": "bool", + "m_enchantmentSpellTemplateID": { + "type": "unsigned int", "id": 12, - "offset": 196, - "flags": 7, + "offset": 124, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 7349510 + "hash": 246955115 }, - "m_enchantmentSpellIsItemCard": { + "m_act": { "type": "bool", "id": 13, - "offset": 76, - "flags": 31, + "offset": 136, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 531590701 + "hash": 269510283 }, - "m_premutationSpellID": { - "type": "unsigned int", + "m_cloaked": { + "type": "bool", "id": 14, - "offset": 112, + "offset": 157, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1530256370 + "hash": 7349510 }, - "m_enchantedThisCombat": { + "m_bypassProtection": { "type": "bool", "id": 15, - "offset": 77, + "offset": 159, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1895738923 + "hash": 1657138252 }, - "m_paramOverrides": { - "type": "class SharedPointer", + "m_armorPiercingParam": { + "type": "int", "id": 16, - "offset": 224, + "offset": 160, "flags": 31, - "container": "List", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2061635599 + "pointer": false, + "hash": 2025530205 }, - "m_subEffectMeta": { - "type": "class SharedPointer", + "m_chancePerTarget": { + "type": "int", "id": 17, - "offset": 240, + "offset": 164, "flags": 31, - "container": "List", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1944101106 + "pointer": false, + "hash": 845426794 }, - "m_delayEnchantment": { + "m_protected": { "type": "bool", "id": 18, - "offset": 257, - "flags": 287, + "offset": 168, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 191336919 + "hash": 1445655037 }, - "m_PvE": { + "m_converted": { "type": "bool", "id": 19, - "offset": 264, - "flags": 287, + "offset": 169, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 269492350 + "hash": 1590428797 }, - "m_delayEnchantmentOrder": { - "type": "enum SpellEffect::kDelayOrder", + "m_rank": { + "type": "int", "id": 20, - "offset": 72, - "flags": 287, + "offset": 208, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2526055263, - "enum_options": { - "SpellEffect::kAnyOrder": 0, - "SpellEffect::kFirst": 1, - "SpellEffect::kSecond": 2 - } + "hash": 219803942 }, - "m_roundAddedTC": { - "type": "int", + "m_effectList": { + "type": "class SharedPointer", "id": 21, - "offset": 260, - "flags": 31, + "offset": 224, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 707154804 + } + } + }, + "685869737": { + "name": "class ClientHousingBlobStrategy*", + "bases": [ + "BaseClientHousingBlobStrategy", + "BlobCacheInterface", + "PropertyClass" + ], + "hash": 685869737, + "properties": {} + }, + "1964085648": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1964085648, + "properties": { + "m_unitType": { + "type": "unsigned char", + "id": 0, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 112365451 + "hash": 1498103218 }, - "m_secondarySchoolID": { + "m_cardUsed": { "type": "unsigned int", - "id": 22, - "offset": 304, + "id": 1, + "offset": 76, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2081206026 + "hash": 1315653400 + }, + "m_passport": { + "type": "unsigned int", + "id": 2, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1362521513 + }, + "m_unitMovementList": { + "type": "unsigned int", + "id": 3, + "offset": 88, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 687999892 } } }, - "1543936172": { - "name": "class AlchemyBehavior", + "1534543059": { + "name": "class SharedPointer", "bases": [ "BehaviorInstance", "PropertyClass" ], - "hash": 1543936172, + "hash": 1534543059, "properties": { "m_behaviorTemplateNameID": { "type": "unsigned int", @@ -442854,1819 +154210,2339 @@ "singleton": false, "pointer": false, "hash": 223437287 + } + } + }, + "1116000783": { + "name": "class GameEffectBase*", + "bases": [ + "PropertyClass" + ], + "hash": 1116000783, + "properties": { + "m_currentTickCount": { + "type": "double", + "id": 0, + "offset": 80, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2533274692 }, - "m_recipeBag": { - "type": "class RecipeBag", + "m_effectNameID": { + "type": "unsigned int", "id": 1, - "offset": 112, - "flags": 27, + "offset": 96, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2218166892 + "hash": 1204067144 }, - "m_craftingSlotsBag": { - "type": "class ObjectBag", + "m_bIsOnPet": { + "type": "bool", "id": 2, - "offset": 320, - "flags": 27, + "offset": 73, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2324986502 + "hash": 522593303 }, - "m_reagentBag": { - "type": "class ObjectBag", + "m_originatorID": { + "type": "gid", "id": 3, - "offset": 512, - "flags": 27, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2459563753 + "hash": 1131810019 }, - "m_bonusCrafting": { + "m_itemSlotID": { + "type": "unsigned int", + "id": 4, + "offset": 112, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1895747595 + }, + "m_internalID": { "type": "int", + "id": 5, + "offset": 92, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1643137924 + }, + "m_endTime": { + "type": "unsigned int", + "id": 6, + "offset": 88, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 716479635 + } + } + }, + "1109443505": { + "name": "class ControlProgress*", + "bases": [ + "ControlBar", + "Window", + "PropertyClass" + ], + "hash": 1109443505, + "properties": { + "m_sName": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306437263 + }, + "m_Children": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621225959 + }, + "m_Style": { + "type": "unsigned int", + "id": 2, + "offset": 152, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152, + "PROGRESS_UV": 16777216, + "PROGRESS_RTOL": 33554432 + } + }, + "m_Flags": { + "type": "unsigned int", + "id": 3, + "offset": 156, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } + }, + "m_Window": { + "type": "class Rect", "id": 4, - "offset": 704, - "flags": 59, + "offset": 160, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 943921711 + "hash": 3105139380 }, - "m_timerMultiplier": { + "m_fTargetAlpha": { "type": "float", "id": 5, - "offset": 708, - "flags": 27, + "offset": 212, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1373659455 + "hash": 1809129834 }, - "m_maxReagentStack": { - "type": "int", + "m_fDisabledAlpha": { + "type": "float", "id": 6, - "offset": 712, - "flags": 27, + "offset": 216, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1121296540 + "hash": 1389987675 }, - "m_equippedRecipes": { - "type": "unsigned int", + "m_fAlpha": { + "type": "float", "id": 7, - "offset": 720, - "flags": 27, + "offset": 208, + "flags": 65671, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 482130755 + }, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3623628394 + }, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2102211316 + }, + "m_sScript": { + "type": "std::string", + "id": 10, + "offset": 352, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1846695875 + }, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3389835433 + }, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547159940 + }, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513510520 + }, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, "container": "List", "dynamic": true, "singleton": false, "pointer": false, - "hash": 1981226997 + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3091503757 + }, + "m_fPosition": { + "type": "float", + "id": 16, + "offset": 584, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1808212114 + }, + "m_BaseColor": { + "type": "class Color", + "id": 17, + "offset": 588, + "flags": 262279, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2172251096 + }, + "m_BarColor": { + "type": "class Color", + "id": 18, + "offset": 592, + "flags": 262279, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2259916498 + }, + "m_bDisplayVertical": { + "type": "bool", + "id": 19, + "offset": 596, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1359621189 + }, + "m_pBarMaterial": { + "type": "class SharedPointer", + "id": 20, + "offset": 600, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2481929515 + }, + "m_pTopLeftMaterial": { + "type": "class SharedPointer", + "id": 21, + "offset": 616, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3248096916 + }, + "m_pCenterMaterial": { + "type": "class SharedPointer", + "id": 22, + "offset": 632, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1519560055 + }, + "m_pBottomRightMaterial": { + "type": "class SharedPointer", + "id": 23, + "offset": 648, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2932444745 + }, + "m_bTimed": { + "type": "bool", + "id": 24, + "offset": 696, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 260290536 + }, + "m_fTotalTime": { + "type": "float", + "id": 25, + "offset": 700, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1142609040 + }, + "m_fCurrentTime": { + "type": "float", + "id": 26, + "offset": 704, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2112044047 }, - "m_equippedRecipeData": { - "type": "std::string", - "id": 8, - "offset": 736, - "flags": 551, + "m_bReverseDir": { + "type": "bool", + "id": 27, + "offset": 708, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2773803466 + "hash": 137983376 } } }, - "362524347": { - "name": "class SubscriberOnlyItemsList*", + "686311109": { + "name": "class SharedPointer", "bases": [ + "BaseClientHousingBlobStrategy", + "BlobCacheInterface", "PropertyClass" ], - "hash": 362524347, - "properties": { - "m_subscriberOnlyItems": { - "type": "gid", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1721964880 - } - } + "hash": 686311109, + "properties": {} }, - "362097999": { - "name": "class TourneyTokensAmountTemplate*", + "1106104902": { + "name": "class ClientHideActorCinematicAction", "bases": [ - "WizItemTemplate", - "ItemTemplate", - "GameObjectTemplate", - "CoreTemplate", + "HideActorCinematicAction", + "ActorCinematicAction", + "CinematicAction", "PropertyClass" ], - "hash": 362097999, + "hash": 1106104902, "properties": { - "m_behaviors": { - "type": "class BehaviorTemplate*", + "m_timeOffset": { + "type": "float", "id": 0, "offset": 72, "flags": 7, - "container": "Vector", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1197808594 + "pointer": false, + "hash": 2237098605 }, - "m_objectName": { + "m_actor": { "type": "std::string", "id": 1, - "offset": 96, + "offset": 80, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2154940147 + "hash": 2285866132 }, - "m_templateID": { - "type": "unsigned int", + "m_bHide": { + "type": "bool", "id": 2, - "offset": 128, - "flags": 16777223, + "offset": 120, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1286746870 + "hash": 790850959 }, - "m_visualID": { - "type": "unsigned int", + "m_evenWhileDead": { + "type": "bool", "id": 3, - "offset": 132, + "offset": 121, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1118778894 + "hash": 2100875368 }, - "m_adjectiveList": { - "type": "std::string", + "m_bMultiRound": { + "type": "bool", "id": 4, - "offset": 248, - "flags": 7, - "container": "List", - "dynamic": true, + "offset": 122, + "flags": 263, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 3195213318 - }, - "m_exemptFromAOI": { - "type": "bool", - "id": 5, - "offset": 240, - "flags": 7, + "hash": 1821746440 + } + } + }, + "1535006681": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1535006681, + "properties": { + "m_pActor": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1457879059 + "pointer": true, + "hash": 1115051967 }, - "m_displayName": { - "type": "std::string", - "id": 6, - "offset": 168, - "flags": 8388615, + "m_place": { + "type": "int", + "id": 1, + "offset": 88, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2446900370 + "hash": 806257663 }, - "m_description": { - "type": "std::string", - "id": 7, - "offset": 136, - "flags": 8388615, + "m_ratingGained": { + "type": "int", + "id": 2, + "offset": 92, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1649374815 + "hash": 1426436071 }, - "m_nObjectType": { - "type": "enum ObjectType", - "id": 8, - "offset": 200, - "flags": 2097159, + "m_arenaPoints": { + "type": "int", + "id": 3, + "offset": 96, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2118905880, - "enum_options": { - "OT_UNDEFINED": 0, - "OT_PLAYER": 1, - "OT_NPC": 2, - "OT_PROP": 3, - "OT_OBJECT": 4, - "OT_HOUSE": 5, - "OT_KEY": 6, - "OT_OLD_KEY": 7, - "OT_DEED": 8, - "OT_MAIL": 9, - "OT_RECIPE": 17, - "OT_EQUIP_HEAD": 10, - "OT_EQUIP_CHEST": 11, - "OT_EQUIP_LEGS": 12, - "OT_EQUIP_HANDS": 13, - "OT_EQUIP_FINGER": 14, - "OT_EQUIP_FEET": 15, - "OT_EQUIP_EAR": 16, - "OT_BUILDING_BLOCK": 18, - "OT_BUILDING_BLOCK_SOLID": 19, - "OT_GOLF": 20, - "OT_DOOR": 21, - "OT_PET": 22, - "OT_FABRIC": 23, - "OT_WINDOW": 24, - "OT_ROOF": 25, - "OT_HORSE": 26, - "OT_STRUCTURE": 27, - "OT_HOUSING_TEXTURE": 28, - "OT_PLANT": 29 - } + "hash": 511478910 }, - "m_sIcon": { - "type": "std::string", - "id": 9, - "offset": 208, - "flags": 131079, + "m_pvpCurrency": { + "type": "int", + "id": 4, + "offset": 100, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2306259831 + "hash": 611304283 }, - "m_equipRequirements": { - "type": "class RequirementList*", - "id": 10, - "offset": 280, - "flags": 7, + "m_pvpTourneyCurrency": { + "type": "int", + "id": 5, + "offset": 104, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2762617226 + "pointer": false, + "hash": 1184787505 }, - "m_purchaseRequirements": { - "type": "class RequirementList*", - "id": 11, - "offset": 288, - "flags": 7, + "m_gold": { + "type": "int", + "id": 6, + "offset": 108, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3174641793 - }, - "m_equipEffects": { - "type": "class GameEffectInfo*", - "id": 12, - "offset": 296, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 836628351 + "pointer": false, + "hash": 219423808 }, - "m_baseCost": { - "type": "float", - "id": 13, - "offset": 312, - "flags": 7, + "m_gameResult": { + "type": "unsigned char", + "id": 7, + "offset": 112, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1565352651 - }, - "m_creditsCost": { - "type": "float", - "id": 14, - "offset": 320, - "flags": 7, + "hash": 1417654793 + } + } + }, + "1966140498": { + "name": "class QuestFinderNPCData*", + "bases": [ + "PropertyClass" + ], + "hash": 1966140498, + "properties": { + "m_zoneName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 805514974 + "hash": 2171167736 }, - "m_avatarInfo": { - "type": "class AvatarItemInfoBase*", - "id": 15, - "offset": 328, - "flags": 7, + "m_location": { + "type": "class Vector3D", + "id": 1, + "offset": 104, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2627321299 + "pointer": false, + "hash": 2239683611 }, - "m_avatarFlags": { + "m_firstName": { "type": "std::string", - "id": 16, - "offset": 336, - "flags": 7, - "container": "List", - "dynamic": true, + "id": 2, + "offset": 120, + "flags": 31, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 2347762759 + "hash": 3116002948 }, - "m_itemLimit": { - "type": "int", - "id": 17, - "offset": 316, - "flags": 7, + "m_lastName": { + "type": "std::string", + "id": 3, + "offset": 152, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1799746856 + "hash": 1826203600 }, - "m_holidayFlag": { + "m_zoneDisplayName": { "type": "std::string", - "id": 18, - "offset": 352, - "flags": 7, + "id": 4, + "offset": 184, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2994795359 - }, - "m_itemSetBonusTemplateID": { - "type": "unsigned int", - "id": 19, - "offset": 384, - "flags": 33554439, + "hash": 1962339438 + } + } + }, + "1105590906": { + "name": "class ZoneTokenBaseControl*", + "bases": [ + "Window", + "PropertyClass" + ], + "hash": 1105590906, + "properties": { + "m_sName": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1316835672 + "hash": 2306437263 }, - "m_numPrimaryColors": { - "type": "int", - "id": 20, - "offset": 428, - "flags": 7, + "m_Children": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621225959 + }, + "m_Style": { + "type": "unsigned int", + "id": 2, + "offset": 152, + "flags": 1048583, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 981103872 + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "SCALE_CHILDREN": 2, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "FOCUS_LOCKED": 64, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152 + } }, - "m_numSecondaryColors": { - "type": "int", - "id": 21, - "offset": 432, - "flags": 7, + "m_Flags": { + "type": "unsigned int", + "id": 3, + "offset": 156, + "flags": 1048583, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1310416868 + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } }, - "m_numPatterns": { - "type": "int", - "id": 22, - "offset": 436, - "flags": 7, + "m_Window": { + "type": "class Rect", + "id": 4, + "offset": 160, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 953162171 + "hash": 3105139380 }, - "m_school": { - "type": "std::string", - "id": 23, - "offset": 392, - "flags": 7, + "m_fTargetAlpha": { + "type": "float", + "id": 5, + "offset": 212, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2438566051 + "hash": 1809129834 }, - "m_arenaPointCost": { - "type": "int", - "id": 24, - "offset": 440, - "flags": 7, + "m_fDisabledAlpha": { + "type": "float", + "id": 6, + "offset": 216, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1819621796 + "hash": 1389987675 }, - "m_pvpCurrencyCost": { - "type": "int", - "id": 25, - "offset": 444, - "flags": 7, + "m_fAlpha": { + "type": "float", + "id": 7, + "offset": 208, + "flags": 65671, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 645595444 + "hash": 482130755 }, - "m_pvpTourneyCurrencyCost": { - "type": "int", - "id": 26, - "offset": 448, - "flags": 7, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 517874954 + "pointer": true, + "hash": 3623628394 }, - "m_rank": { - "type": "int", - "id": 27, - "offset": 424, - "flags": 7, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 219803942 + "hash": 2102211316 }, - "m_boyIconIndex": { - "type": "int", - "id": 28, - "offset": 452, - "flags": 7, + "m_sScript": { + "type": "std::string", + "id": 10, + "offset": 352, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 802140453 + "hash": 1846695875 }, - "m_girlIconIndex": { - "type": "int", - "id": 29, - "offset": 456, - "flags": 7, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 832706793 + "hash": 3389835433 }, - "m_leashOffsetOverride": { - "type": "class SharedPointer", - "id": 30, - "offset": 464, - "flags": 7, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1692586788 + "pointer": false, + "hash": 2547159940 }, - "m_rarity": { - "type": "enum RarityType", - "id": 31, - "offset": 460, - "flags": 2097159, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2253792108, - "enum_options": { - "RT_COMMON": 0, - "RT_UNCOMMON": 1, - "RT_RARE": 2, - "RT_ULTRARARE": 3, - "RT_EPIC": 4 - } + "hash": 1513510520 }, - "m_tourneyTokensAmount": { - "type": "int", - "id": 32, - "offset": 480, - "flags": 7, - "container": "Static", - "dynamic": false, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 1579576120 + "hash": 2587533771 }, - "m_nif": { - "type": "std::string", - "id": 33, - "offset": 488, - "flags": 131079, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1764743064 + "hash": 3091503757 } } }, - "1135808511": { - "name": "class WhirlyBurlySpellTemplate*", + "1534987200": { + "name": "class SharedPointer", "bases": [ - "SpellTemplate", - "CoreTemplate", + "CombatParticipant", "PropertyClass" ], - "hash": 1135808511, + "hash": 1534987200, "properties": { - "m_behaviors": { - "type": "class BehaviorTemplate*", + "m_ownerID.m_full": { + "type": "unsigned __int64", "id": 0, - "offset": 72, - "flags": 7, - "container": "Vector", - "dynamic": true, + "offset": 112, + "flags": 31, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1197808594 + "pointer": false, + "hash": 2149616286 }, - "m_name": { - "type": "std::string", + "m_templateID.m_full": { + "type": "unsigned __int64", "id": 1, - "offset": 96, - "flags": 7, + "offset": 120, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1717359772 + "hash": 633907631 }, - "m_description": { - "type": "std::string", + "m_isPlayer": { + "type": "bool", "id": 2, - "offset": 168, - "flags": 8388615, + "offset": 128, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1649374815 + "hash": 1717744636 }, - "m_advancedDescription": { - "type": "std::string", + "m_zoneID.m_full": { + "type": "unsigned __int64", "id": 3, - "offset": 200, - "flags": 8388615, + "offset": 136, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3465713013 + "hash": 2105998895 }, - "m_displayName": { - "type": "std::string", + "m_teamID": { + "type": "int", "id": 4, - "offset": 136, - "flags": 8388615, + "offset": 144, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2446900370 + "hash": 982118638 }, - "m_spellBase": { - "type": "std::string", + "m_primaryMagicSchoolID": { + "type": "int", "id": 5, - "offset": 248, - "flags": 268435463, + "offset": 148, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2688054198, - "enum_options": { - "__BASECLASS": "CinematicTemplate" - } + "hash": 1864910356 }, - "m_effects": { - "type": "class SharedPointer", + "m_pipCount": { + "type": "class SharedPointer", "id": 6, - "offset": 280, - "flags": 7, - "container": "Vector", - "dynamic": true, + "offset": 152, + "flags": 31, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": true, - "hash": 370726379 + "hash": 1862540484 }, - "m_sMagicSchoolName": { - "type": "std::string", + "m_pipRoundRates": { + "type": "class SharedPointer", "id": 7, - "offset": 312, - "flags": 7, - "container": "Static", - "dynamic": false, + "offset": 168, + "flags": 31, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 2035693400 + "pointer": true, + "hash": 1859513241 }, - "m_sTypeName": { - "type": "std::string", + "m_PipsSuspended": { + "type": "bool", "id": 8, - "offset": 352, - "flags": 7, + "offset": 184, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3580785905 + "hash": 98171898 }, - "m_trainingCost": { + "m_stunned": { "type": "int", "id": 9, - "offset": 384, - "flags": 7, + "offset": 188, + "flags": 25, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 982588239 + "hash": 1661672123 }, - "m_accuracy": { + "m_mindcontrolled": { "type": "int", "id": 10, - "offset": 388, - "flags": 7, + "offset": 216, + "flags": 25, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1636315493 + "hash": 2059794744 }, - "m_baseCost": { + "m_originalTeam": { "type": "int", "id": 11, - "offset": 232, - "flags": 7, + "offset": 224, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1475151502 + "hash": 1121355446 }, - "m_creditsCost": { + "m_nAuraTurnLength": { "type": "int", "id": 12, "offset": 236, - "flags": 7, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 715313825 + "hash": 1719821564 }, - "m_pvpCurrencyCost": { + "m_clue": { "type": "int", "id": 13, - "offset": 240, - "flags": 7, + "offset": 228, + "flags": 25, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 645595444 + "hash": 219277091 }, - "m_pvpTourneyCurrencyCost": { + "m_roundsDead": { "type": "int", "id": 14, - "offset": 244, - "flags": 7, + "offset": 232, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 517874954 + "hash": 2071727747 }, - "m_boosterPackIcon": { - "type": "std::string", + "m_nPolymorphTurnLength": { + "type": "int", "id": 15, - "offset": 496, - "flags": 131079, + "offset": 240, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3428653697 + "hash": 1619550301 }, - "m_validTargetSpells": { - "type": "unsigned int", + "m_playerHealth": { + "type": "int", "id": 16, - "offset": 392, - "flags": 7, - "container": "List", - "dynamic": true, + "offset": 244, + "flags": 31, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 2355782967 + "hash": 740444925 }, - "m_PvP": { - "type": "bool", + "m_maxPlayerHealth": { + "type": "int", "id": 17, - "offset": 408, - "flags": 7, + "offset": 248, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 269492361 + "hash": 96027363 }, - "m_PvE": { + "m_HideCurrentHP": { "type": "bool", "id": 18, - "offset": 409, - "flags": 7, + "offset": 252, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 269492350 + "hash": 31360456 }, - "m_noPvPEnchant": { - "type": "bool", + "m_maxHandSize": { + "type": "int", "id": 19, - "offset": 410, - "flags": 7, + "offset": 256, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 661581703 + "hash": 1925169782 }, - "m_noPvEEnchant": { - "type": "bool", + "m_pHand": { + "type": "class Hand*", "id": 20, - "offset": 411, - "flags": 7, + "offset": 264, + "flags": 1, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 10144220 + "pointer": true, + "hash": 892448765 }, - "m_battlegroundsOnly": { - "type": "bool", + "m_pSavedHand": { + "type": "class Hand*", "id": 21, - "offset": 412, - "flags": 7, + "offset": 272, + "flags": 1, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1244782419 + "pointer": true, + "hash": 787912720 }, - "m_Treasure": { - "type": "bool", + "m_pPlayDeck": { + "type": "class PlayDeck*", "id": 22, - "offset": 413, - "flags": 7, + "offset": 280, + "flags": 1, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1749096414 + "pointer": true, + "hash": 2053198667 }, - "m_noDiscard": { - "type": "bool", + "m_pSavedPlayDeck": { + "type": "class PlayDeck*", "id": 23, - "offset": 414, - "flags": 7, + "offset": 288, + "flags": 1, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 565749226 + "pointer": true, + "hash": 498207966 }, - "m_leavesPlayWhenCast": { - "type": "bool", + "m_pSavedGameStats": { + "type": "class SharedPointer", "id": 24, - "offset": 532, - "flags": 7, + "offset": 296, + "flags": 1, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 698216294 + "pointer": true, + "hash": 1599533644 }, - "m_imageIndex": { + "m_savedPrimaryMagicSchoolID": { "type": "int", "id": 25, - "offset": 416, - "flags": 7, + "offset": 312, + "flags": 1, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1570500405 + "hash": 983035431 }, - "m_imageName": { - "type": "std::string", + "m_pGameStats": { + "type": "class SharedPointer", "id": 26, - "offset": 424, - "flags": 131079, + "offset": 320, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 2391520543 + "pointer": true, + "hash": 3522102873 }, - "m_cloaked": { - "type": "bool", + "m_color": { + "type": "class Color", "id": 27, - "offset": 489, - "flags": 7, + "offset": 336, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 7349510 + "hash": 1791663549 }, - "m_casterInvisible": { - "type": "bool", + "m_rotation": { + "type": "float", "id": 28, - "offset": 490, - "flags": 7, + "offset": 340, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 310214650 + "hash": 1497468551 }, - "m_adjectives": { - "type": "std::string", + "m_radius": { + "type": "float", "id": 29, - "offset": 576, - "flags": 7, - "container": "List", - "dynamic": true, + "offset": 344, + "flags": 31, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 2967855037 + "hash": 989410271 }, - "m_spellSourceType": { - "type": "enum SpellTemplate::kSpellSourceType", + "m_subcircle": { + "type": "int", "id": 30, - "offset": 528, - "flags": 2097159, + "offset": 348, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 156272727, - "enum_options": { - "kCaster": 0, - "kPet": 1, - "kShadowCreature": 2, - "kWeapon": 3, - "kEquipment": 4 - } + "hash": 1748202326 }, - "m_cloakedName": { - "type": "std::string", + "m_pvp": { + "type": "bool", "id": 31, - "offset": 536, - "flags": 268435463, + "offset": 352, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2846679215, - "enum_options": { - "__BASECLASS": "SpellTemplate" - } + "hash": 269527241 }, - "m_purchaseRequirements": { - "type": "class RequirementList*", + "m_raid": { + "type": "bool", "id": 32, - "offset": 608, - "flags": 7, + "offset": 353, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3174641793 + "pointer": false, + "hash": 222284947 }, - "m_displayRequirements": { - "type": "class RequirementList*", + "m_dynamicSymbol": { + "type": "enum DynamicSigilSymbol", "id": 33, - "offset": 840, - "flags": 7, + "offset": 356, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3646782876 + "pointer": false, + "hash": 701705655 }, - "m_descriptionTrainer": { - "type": "std::string", + "m_accuracyBonus": { + "type": "float", "id": 34, - "offset": 616, - "flags": 8388871, + "offset": 396, + "flags": 1, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1756093908 + "hash": 1440672233 }, - "m_descriptionCombatHUD": { - "type": "std::string", + "m_minionSubCircle": { + "type": "int", "id": 35, - "offset": 648, - "flags": 8388871, + "offset": 400, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1631478006 + "hash": 1896926112 }, - "m_displayIndex": { - "type": "int", + "m_isMinion": { + "type": "bool", "id": 36, - "offset": 680, - "flags": 7, + "offset": 404, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1250551048 + "hash": 1597230777 }, - "m_hiddenFromEffectsWindow": { + "m_isAccompanyNPC": { "type": "bool", "id": 37, - "offset": 684, - "flags": 7, + "offset": 412, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1832736331 + "hash": 1067399659 }, - "m_ignoreCharms": { - "type": "bool", + "m_hangingEffects": { + "type": "class SpellEffect", "id": 38, - "offset": 685, - "flags": 7, + "offset": 416, + "flags": 27, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2685029606 + }, + "m_publicHangingEffects": { + "type": "class SpellEffect", + "id": 39, + "offset": 432, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1243141029 + }, + "m_auraEffects": { + "type": "class SpellEffect", + "id": 40, + "offset": 448, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2783652947 + }, + "m_shadowEffects": { + "type": "class SharedPointer", + "id": 41, + "offset": 464, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1712698903 + }, + "m_shadowSpellEffects": { + "type": "class SpellEffect", + "id": 42, + "offset": 480, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1808623792 + }, + "m_deathActivatedEffects": { + "type": "class SharedPointer", + "id": 43, + "offset": 512, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1347166054 + }, + "m_delayCastEffects": { + "type": "class DelaySpellEffect", + "id": 44, + "offset": 528, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2596123949 + }, + "m_polymorphSpellTemplateID": { + "type": "unsigned int", + "id": 45, + "offset": 576, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1840075893 + "hash": 1320079328 }, - "m_alwaysFizzle": { + "m_side": { + "type": "std::string", + "id": 46, + "offset": 600, + "flags": 1, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1717547872 + }, + "m_shadowSpellsDisabled": { "type": "bool", - "id": 39, - "offset": 686, - "flags": 7, + "id": 47, + "offset": 672, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2030988856 + "hash": 2077139652 }, - "m_spellCategory": { - "type": "std::string", - "id": 40, - "offset": 688, - "flags": 7, + "m_ignoreSpellsPvPOnlyFlag": { + "type": "bool", + "id": 48, + "offset": 673, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2472376729 + "hash": 1714276188 }, - "m_showPolymorphedName": { + "m_ignoreSpellsPvEOnlyFlag": { "type": "bool", - "id": 41, - "offset": 720, - "flags": 7, + "id": 49, + "offset": 674, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2097929096 + "hash": 1691675729 }, - "m_skipTruncation": { + "m_bossMob": { "type": "bool", - "id": 42, - "offset": 721, - "flags": 263, + "id": 50, + "offset": 675, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1838335249 + "hash": 986129576 }, - "m_maxCopies": { - "type": "unsigned int", - "id": 43, + "m_hidePVPEnemyChat": { + "type": "bool", + "id": 51, + "offset": 676, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1284658049 + }, + "m_combatTriggerIDs": { + "type": "int", + "id": 52, + "offset": 696, + "flags": 1, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1654684388 + }, + "m_backlash": { + "type": "int", + "id": 53, "offset": 724, - "flags": 263, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 403022326 + "hash": 857558899 }, - "m_levelRestriction": { + "m_pastBacklash": { "type": "int", - "id": 44, + "id": 54, "offset": 728, - "flags": 263, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 176502472 + "hash": 1229328939 }, - "m_delayEnchantment": { - "type": "bool", - "id": 45, + "m_shadowCreatureLevel": { + "type": "int", + "id": 55, "offset": 732, - "flags": 287, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 191336919 + "hash": 1119572179 }, - "m_delayEnchantmentOrder": { - "type": "enum SpellEffect::kDelayOrder", - "id": 46, + "m_pastShadowCreatureLevel": { + "type": "int", + "id": 56, "offset": 736, - "flags": 287, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2526055263, - "enum_options": { - "SpellEffect::kAnyOrder": 0, - "SpellEffect::kFirst": 1, - "SpellEffect::kSecond": 2 - } + "hash": 1267855499 }, - "m_previousSpellName": { - "type": "std::string", - "id": 47, + "m_shadowCreatureLevelCount": { + "type": "int", + "id": 57, "offset": 744, - "flags": 268435463, + "flags": 31, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 975615804 + }, + "m_interceptEffect": { + "type": "class SharedPointer", + "id": 58, + "offset": 768, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 339294150 + }, + "m_roundsSinceShadowPip": { + "type": "int", + "id": 59, + "offset": 800, + "flags": 1, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2903322585, - "enum_options": { - "__BASECLASS": "SpellTemplate" - } + "hash": 682042934 }, - "m_cardFront": { - "type": "std::string", - "id": 48, - "offset": 456, - "flags": 131359, + "m_polymorphEffect": { + "type": "class SharedPointer", + "id": 60, + "offset": 824, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2193528962 + }, + "m_confused": { + "type": "int", + "id": 61, + "offset": 196, + "flags": 25, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3557598526 + "hash": 1851913585 }, - "m_useGloss": { + "m_confusionTrigger": { + "type": "int", + "id": 62, + "offset": 200, + "flags": 25, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 554584130 + }, + "m_confusionDisplay": { "type": "bool", - "id": 49, - "offset": 488, - "flags": 287, + "id": 63, + "offset": 204, + "flags": 25, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 668817544 + "hash": 1028383709 }, - "m_ignoreDispel": { + "m_confusedTarget": { "type": "bool", - "id": 50, - "offset": 776, - "flags": 287, + "id": 64, + "offset": 205, + "flags": 25, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1881041624 + "hash": 1193542673 }, - "m_backRowFriendly": { + "m_untargetable": { "type": "bool", - "id": 51, - "offset": 777, - "flags": 287, + "id": 65, + "offset": 206, + "flags": 25, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 501584377 + "hash": 36479793 }, - "m_spellRank": { - "type": "class SharedPointer", - "id": 52, - "offset": 784, - "flags": 7, + "m_untargetableRounds": { + "type": "int", + "id": 66, + "offset": 208, + "flags": 25, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3152361374 + "pointer": false, + "hash": 80618355 }, - "m_secondarySchoolName": { - "type": "std::string", - "id": 53, - "offset": 800, - "flags": 7, + "m_restrictedTarget": { + "type": "bool", + "id": 67, + "offset": 212, + "flags": 25, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1803268236 + "hash": 394144563 }, - "m_spellFusion": { - "type": "unsigned int", - "id": 54, - "offset": 836, - "flags": 7, + "m_exitCombat": { + "type": "bool", + "id": 68, + "offset": 213, + "flags": 25, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1658928321 + "hash": 1293141763 }, - "m_requiredSchoolName": { - "type": "std::string", - "id": 55, - "offset": 848, - "flags": 7, + "m_stunnedDisplay": { + "type": "bool", + "id": 69, + "offset": 192, + "flags": 25, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3576058981 + "hash": 892304554 }, - "m_unitMovement": { - "type": "std::string", - "id": 56, - "offset": 880, - "flags": 7, + "m_mindcontrolledDisplay": { + "type": "bool", + "id": 70, + "offset": 220, + "flags": 25, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3170961702 + "hash": 174689415 }, - "m_specialUnits": { - "type": "std::string", - "id": 57, - "offset": 912, - "flags": 7, + "m_autoPass": { + "type": "bool", + "id": 71, + "offset": 720, + "flags": 25, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2725603631 - } - } - }, - "1544098067": { - "name": "class SharedPointer", - "bases": [ - "ReqNumeric", - "Requirement", - "PropertyClass" - ], - "hash": 1544098067, - "properties": { - "m_applyNOT": { + "hash": 1919864803 + }, + "m_vanish": { "type": "bool", - "id": 0, - "offset": 72, - "flags": 31, + "id": 72, + "offset": 721, + "flags": 25, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1746328074, - "enum_options": { - "__DEFAULT": 0 - } + "hash": 1058591164 }, - "m_operator": { - "type": "enum Requirement::Operator", - "id": 1, - "offset": 76, - "flags": 2097183, + "m_myTeamTurn": { + "type": "bool", + "id": 73, + "offset": 722, + "flags": 25, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2672792317, - "enum_options": { - "ROP_AND": 0, - "ROP_OR": 1, - "__DEFAULT": "ROP_AND" - } + "hash": 1134422697 }, - "m_numericValue": { - "type": "float", - "id": 2, - "offset": 80, - "flags": 31, + "m_needToCleanAuras": { + "type": "bool", + "id": 74, + "offset": 888, + "flags": 25, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 521915239 + "hash": 1159570481 }, - "m_operatorType": { - "type": "enum ReqNumeric::OPERATOR_TYPE", - "id": 3, - "offset": 84, - "flags": 2097183, + "m_planningPhasePipAquiredType": { + "type": "enum CombatParticipant::PipAquiredByEnum", + "id": 75, + "offset": 816, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2228122961, + "hash": 1435933659, "enum_options": { - "OPERATOR_UNKNOWN": 4294967295, - "OPERATOR_EQUALS": 0, - "OPERATOR_GREATER_THAN": 1, - "OPERATOR_LESS_THAN": 2, - "OPERATOR_GREATER_THAN_EQ": 3, - "OPERATOR_LESS_THAN_EQ": 4 + "CombatParticipant::AQUIRED_PIP_UNKNOWN": 0, + "CombatParticipant::AQUIRED_PIP_NORMAL": 1, + "CombatParticipant::AQUIRED_PIP_POWER": 2, + "CombatParticipant::AQUIRED_NORMAL_TO_POWER_PIP_CONVERSION": 4, + "CombatParticipant::IMPEDE_PIPS": 5 } }, - "m_entryName": { - "type": "std::string", - "id": 4, - "offset": 88, - "flags": 7, + "m_cheatSettings": { + "type": "class SharedPointer", + "id": 76, + "offset": 96, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2742666223 + }, + "m_isMonster": { + "type": "unsigned int", + "id": 77, + "offset": 408, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2055270734 - } - } - }, - "362097679": { - "name": "class TourneyTokensAmountTemplate", - "bases": [ - "WizItemTemplate", - "ItemTemplate", - "GameObjectTemplate", - "CoreTemplate", - "PropertyClass" - ], - "hash": 362097679, - "properties": { - "m_behaviors": { - "type": "class BehaviorTemplate*", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Vector", + "hash": 1530878065 + }, + "m_weaponNifSoundList": { + "type": "class SharedPointer", + "id": 78, + "offset": 80, + "flags": 31, + "container": "List", "dynamic": true, "singleton": false, "pointer": true, - "hash": 1197808594 + "hash": 2575326929 }, - "m_objectName": { - "type": "std::string", - "id": 1, - "offset": 96, - "flags": 7, + "m_petCombatTrigger": { + "type": "int", + "id": 79, + "offset": 712, + "flags": 1, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2154940147 + "hash": 822894541 }, - "m_templateID": { - "type": "unsigned int", - "id": 2, - "offset": 128, - "flags": 16777223, + "m_petCombatTriggerTarget": { + "type": "int", + "id": 80, + "offset": 716, + "flags": 1, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1286746870 + "hash": 675145556 }, - "m_visualID": { - "type": "unsigned int", - "id": 3, - "offset": 132, - "flags": 7, + "m_shadowPipRateThreshold": { + "type": "float", + "id": 81, + "offset": 840, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1118778894 + "hash": 1215959391 }, - "m_adjectiveList": { - "type": "std::string", - "id": 4, - "offset": 248, - "flags": 7, - "container": "List", - "dynamic": true, + "m_baseSpellDamage": { + "type": "int", + "id": 82, + "offset": 844, + "flags": 31, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 3195213318 + "hash": 871613364 }, - "m_exemptFromAOI": { - "type": "bool", - "id": 5, - "offset": 240, - "flags": 7, + "m_statDamage": { + "type": "float", + "id": 83, + "offset": 848, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1457879059 + "hash": 1480169970 }, - "m_displayName": { - "type": "std::string", - "id": 6, - "offset": 168, - "flags": 8388615, + "m_statResist": { + "type": "float", + "id": 84, + "offset": 852, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2446900370 + "hash": 2033033901 }, - "m_description": { - "type": "std::string", - "id": 7, - "offset": 136, - "flags": 8388615, + "m_statPierce": { + "type": "float", + "id": 85, + "offset": 856, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1649374815 + "hash": 1959012939 }, - "m_nObjectType": { - "type": "enum ObjectType", - "id": 8, - "offset": 200, - "flags": 2097159, + "m_mobLevel": { + "type": "int", + "id": 86, + "offset": 860, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2118905880, - "enum_options": { - "OT_UNDEFINED": 0, - "OT_PLAYER": 1, - "OT_NPC": 2, - "OT_PROP": 3, - "OT_OBJECT": 4, - "OT_HOUSE": 5, - "OT_KEY": 6, - "OT_OLD_KEY": 7, - "OT_DEED": 8, - "OT_MAIL": 9, - "OT_RECIPE": 17, - "OT_EQUIP_HEAD": 10, - "OT_EQUIP_CHEST": 11, - "OT_EQUIP_LEGS": 12, - "OT_EQUIP_HANDS": 13, - "OT_EQUIP_FINGER": 14, - "OT_EQUIP_FEET": 15, - "OT_EQUIP_EAR": 16, - "OT_BUILDING_BLOCK": 18, - "OT_BUILDING_BLOCK_SOLID": 19, - "OT_GOLF": 20, - "OT_DOOR": 21, - "OT_PET": 22, - "OT_FABRIC": 23, - "OT_WINDOW": 24, - "OT_ROOF": 25, - "OT_HORSE": 26, - "OT_STRUCTURE": 27, - "OT_HOUSING_TEXTURE": 28, - "OT_PLANT": 29 - } + "hash": 186067024 }, - "m_sIcon": { - "type": "std::string", - "id": 9, - "offset": 208, - "flags": 131079, + "m_bPlayerTimeUpdated": { + "type": "bool", + "id": 87, + "offset": 864, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2306259831 + "hash": 877395800 }, - "m_equipRequirements": { - "type": "class RequirementList*", - "id": 10, - "offset": 280, - "flags": 7, + "m_bPlayerTimeEliminated": { + "type": "bool", + "id": 88, + "offset": 865, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2762617226 + "pointer": false, + "hash": 1842006605 }, - "m_purchaseRequirements": { - "type": "class RequirementList*", - "id": 11, - "offset": 288, - "flags": 7, + "m_bPlayerTimeWarning": { + "type": "bool", + "id": 89, + "offset": 866, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3174641793 + "pointer": false, + "hash": 742875591 }, - "m_equipEffects": { - "type": "class GameEffectInfo*", - "id": 12, - "offset": 296, - "flags": 7, - "container": "List", - "dynamic": true, + "m_deckFullness": { + "type": "float", + "id": 90, + "offset": 868, + "flags": 31, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 836628351 + "pointer": false, + "hash": 156080730 }, - "m_baseCost": { + "m_archmasteryPoints": { "type": "float", - "id": 13, - "offset": 312, - "flags": 7, + "id": 91, + "offset": 872, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1565352651 + "hash": 261464375 }, - "m_creditsCost": { + "m_maxArchmasteryPoints": { "type": "float", - "id": 14, - "offset": 320, - "flags": 7, + "id": 92, + "offset": 876, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 805514974 + "hash": 430012637 }, - "m_avatarInfo": { - "type": "class AvatarItemInfoBase*", - "id": 15, - "offset": 328, - "flags": 7, + "m_archmasterySchool": { + "type": "unsigned int", + "id": 93, + "offset": 880, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2627321299 + "pointer": false, + "hash": 485805784 }, - "m_avatarFlags": { + "m_archmasteryFlags": { + "type": "unsigned int", + "id": 94, + "offset": 884, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1571282557 + } + } + }, + "1105590866": { + "name": "class ZoneTokenBaseControl", + "bases": [ + "Window", + "PropertyClass" + ], + "hash": 1105590866, + "properties": { + "m_sName": { "type": "std::string", - "id": 16, - "offset": 336, - "flags": 7, - "container": "List", + "id": 0, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306437263 + }, + "m_Children": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 65671, + "container": "Vector", "dynamic": true, "singleton": false, + "pointer": true, + "hash": 2621225959 + }, + "m_Style": { + "type": "unsigned int", + "id": 2, + "offset": 152, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, "pointer": false, - "hash": 2347762759 + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "SCALE_CHILDREN": 2, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "FOCUS_LOCKED": 64, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152 + } }, - "m_itemLimit": { - "type": "int", - "id": 17, - "offset": 316, - "flags": 7, + "m_Flags": { + "type": "unsigned int", + "id": 3, + "offset": 156, + "flags": 1048583, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1799746856 + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } }, - "m_holidayFlag": { - "type": "std::string", - "id": 18, - "offset": 352, - "flags": 7, + "m_Window": { + "type": "class Rect", + "id": 4, + "offset": 160, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2994795359 + "hash": 3105139380 }, - "m_itemSetBonusTemplateID": { - "type": "unsigned int", - "id": 19, - "offset": 384, - "flags": 33554439, + "m_fTargetAlpha": { + "type": "float", + "id": 5, + "offset": 212, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1316835672 + "hash": 1809129834 }, - "m_numPrimaryColors": { - "type": "int", - "id": 20, - "offset": 428, - "flags": 7, + "m_fDisabledAlpha": { + "type": "float", + "id": 6, + "offset": 216, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 981103872 + "hash": 1389987675 }, - "m_numSecondaryColors": { - "type": "int", - "id": 21, - "offset": 432, - "flags": 7, + "m_fAlpha": { + "type": "float", + "id": 7, + "offset": 208, + "flags": 65671, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1310416868 + "hash": 482130755 }, - "m_numPatterns": { - "type": "int", - "id": 22, - "offset": 436, - "flags": 7, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3623628394 + }, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 953162171 + "hash": 2102211316 }, - "m_school": { + "m_sScript": { "type": "std::string", - "id": 23, - "offset": 392, - "flags": 7, + "id": 10, + "offset": 352, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2438566051 + "hash": 1846695875 }, - "m_arenaPointCost": { - "type": "int", - "id": 24, - "offset": 440, - "flags": 7, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1819621796 + "hash": 3389835433 }, - "m_pvpCurrencyCost": { - "type": "int", - "id": 25, - "offset": 444, - "flags": 7, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 645595444 + "hash": 2547159940 }, - "m_pvpTourneyCurrencyCost": { - "type": "int", - "id": 26, - "offset": 448, - "flags": 7, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 517874954 + "hash": 1513510520 }, - "m_rank": { - "type": "int", - "id": 27, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, "offset": 424, - "flags": 7, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 219803942 - }, - "m_boyIconIndex": { - "type": "int", - "id": 28, - "offset": 452, + "hash": 3091503757 + } + } + }, + "687876558": { + "name": "class BodyOfWater", + "bases": [ + "PropertyClass" + ], + "hash": 687876558, + "properties": { + "m_waterX": { + "type": "float", + "id": 0, + "offset": 72, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 802140453 + "hash": 1185657746 }, - "m_girlIconIndex": { - "type": "int", - "id": 29, - "offset": 456, + "m_waterY": { + "type": "float", + "id": 1, + "offset": 76, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 832706793 + "hash": 1185657747 }, - "m_leashOffsetOverride": { - "type": "class SharedPointer", - "id": 30, - "offset": 464, + "m_secondsToRespawn": { + "type": "unsigned int", + "id": 2, + "offset": 80, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1692586788 + "pointer": false, + "hash": 1001169759 }, - "m_rarity": { - "type": "enum RarityType", - "id": 31, - "offset": 460, - "flags": 2097159, + "m_numberOfFish": { + "type": "int", + "id": 3, + "offset": 84, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2253792108, - "enum_options": { - "RT_COMMON": 0, - "RT_UNCOMMON": 1, - "RT_RARE": 2, - "RT_ULTRARARE": 3, - "RT_EPIC": 4 - } + "hash": 1143336898 }, - "m_tourneyTokensAmount": { - "type": "int", - "id": 32, - "offset": 480, + "m_zoneFishList": { + "type": "class SharedPointer", + "id": 4, + "offset": 96, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 1579576120 + "pointer": true, + "hash": 2647022847 }, - "m_nif": { - "type": "std::string", - "id": 33, - "offset": 488, - "flags": 131079, + "m_waterType": { + "type": "int", + "id": 5, + "offset": 88, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1764743064 + "hash": 869659615 } } }, - "1135094589": { - "name": "class WizItemGoldChestList*", + "1105411080": { + "name": "class SharedPointer", "bases": [ - "WizItemLocations", + "BehaviorInstance", "PropertyClass" ], - "hash": 1135094589, + "hash": 1105411080, "properties": { - "m_itemType": { - "type": "enum WizItemLocations::eItemType", + "m_behaviorTemplateNameID": { + "type": "unsigned int", "id": 0, - "offset": 72, - "flags": 2097183, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3482173907, - "enum_options": { - "shop": 0, - "quest": 1, - "boss": 2, - "gardening": 3, - "goldChest": 4 - } + "hash": 223437287 }, - "m_goldChestZones": { - "type": "std::string", + "m_stateList": { + "type": "unsigned int", "id": 1, - "offset": 80, + "offset": 136, "flags": 31, "container": "List", "dynamic": true, "singleton": false, "pointer": false, - "hash": 2718514023 + "hash": 1658565962 + }, + "m_stateSetOverride": { + "type": "std::string", + "id": 2, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3188396456 } } }, - "1135557334": { - "name": "class ReqSpecificTemplate", + "687684614": { + "name": "class BGPlayerBehavior*", "bases": [ - "Requirement", + "BehaviorInstance", "PropertyClass" ], - "hash": 1135557334, + "hash": 687684614, "properties": { - "m_applyNOT": { - "type": "bool", + "m_behaviorTemplateNameID": { + "type": "unsigned int", "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1746328074, - "enum_options": { - "__DEFAULT": 0 - } - }, - "m_operator": { - "type": "enum Requirement::Operator", - "id": 1, - "offset": 76, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2672792317, - "enum_options": { - "ROP_AND": 0, - "ROP_OR": 1, - "__DEFAULT": "ROP_AND" - } - }, - "m_templateID": { - "type": "gid", - "id": 2, - "offset": 80, - "flags": 33554439, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1075328001 + "hash": 223437287 } } }, - "1544211907": { - "name": "class BugReport*", + "2032829065": { + "name": "class SharedPointer", "bases": [ + "ServiceOptionBase", "PropertyClass" ], - "hash": 1544211907, + "hash": 2032829065, "properties": { - "m_clientVersion": { + "m_serviceName": { "type": "std::string", "id": 0, "offset": 72, @@ -444675,344 +156551,469 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 2207163808 + "hash": 2206028813 }, - "m_type": { - "type": "enum BugType", + "m_iconKey": { + "type": "std::string", "id": 1, - "offset": 104, + "offset": 168, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 889643611, - "enum_options": { - "BT_CRASH": 1, - "BT_GAME_STOPPER": 2, - "BT_INTERFERENCE": 3, - "BT_ANNOYANCE": 4, - "BT_FEATURE_REQUEST": 5, - "BT_COMMENT": 6 - } + "hash": 2457138637 }, - "m_canReproduce": { - "type": "bool", + "m_displayKey": { + "type": "std::string", "id": 2, - "offset": 108, + "offset": 104, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 859813390 + "hash": 3023276954 }, - "m_description": { - "type": "std::wstring", + "m_serviceIndex": { + "type": "unsigned int", "id": 3, - "offset": 112, + "offset": 204, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1445360156 + "hash": 2103126710 + }, + "m_forceInteract": { + "type": "bool", + "id": 4, + "offset": 200, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1705789564 } } }, - "362135826": { - "name": "class SharedPointer", + "1536177639": { + "name": "class SharedPointer", "bases": [ - "GameEffectTemplate", "PropertyClass" ], - "hash": 362135826, + "hash": 1536177639, "properties": { - "m_effectName": { - "type": "std::string", + "m_status": { + "type": "enum BattlegroundPlayerStats::PlayerStatusEnum", "id": 0, "offset": 72, - "flags": 7, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2029161513 + "hash": 1862714304, + "enum_options": { + "ACTIVE": 0, + "IN_COMBAT": 1, + "DEAD": 2, + "MISSING": 3, + "RED_TEAM": 0, + "BLUE_TEAM": 1 + } }, - "m_effectCategory": { - "type": "std::string", + "m_team": { + "type": "enum BattlegroundPlayerStats::PlayerTeamEnum", "id": 1, - "offset": 104, - "flags": 7, + "offset": 76, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1852673222 + "hash": 1426706772 }, - "m_sortOrder": { - "type": "int", + "m_packedName": { + "type": "std::string", "id": 2, - "offset": 148, + "offset": 80, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1411218206 + "hash": 1805208228 }, - "m_duration": { - "type": "double", + "m_playerID": { + "type": "gid", "id": 3, - "offset": 192, + "offset": 112, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2727932435 + "hash": 1774633426 }, - "m_stackingCategories": { - "type": "std::string", + "m_polymorphID": { + "type": "unsigned int", "id": 4, - "offset": 160, + "offset": 120, "flags": 7, - "container": "List", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 1774497525 + "hash": 702888164 }, - "m_isPersistent": { - "type": "bool", + "m_rating": { + "type": "int", "id": 5, - "offset": 153, + "offset": 124, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 923861920 + "hash": 899783871 }, - "m_bIsOnPet": { - "type": "bool", + "m_playerKills": { + "type": "int", "id": 6, - "offset": 154, + "offset": 128, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 522593303 + "hash": 742064870 }, - "m_isPublic": { - "type": "bool", + "m_mobKills": { + "type": "int", "id": 7, - "offset": 152, + "offset": 132, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1728439822 + "hash": 185014199 }, - "m_visualEffectAddName": { - "type": "std::string", + "m_autoCaps": { + "type": "int", "id": 8, - "offset": 200, + "offset": 136, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3382086694 + "hash": 1916916346 }, - "m_visualEffectRemoveName": { - "type": "std::string", + "m_combatCaps": { + "type": "int", "id": 9, - "offset": 232, + "offset": 140, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1541697323 + "hash": 975573175 }, - "m_onAddFunctorName": { - "type": "std::string", + "m_deaths": { + "type": "int", "id": 10, - "offset": 280, + "offset": 144, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1561843107 + "hash": 355961043 + } + } + }, + "687409870": { + "name": "class ClientDamageEventCinematicAction", + "bases": [ + "DamageEventCinematicAction", + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 687409870, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 }, - "m_onRemoveFunctorName": { + "m_actor": { "type": "std::string", - "id": 11, - "offset": 312, + "id": 1, + "offset": 80, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2559017864 + "hash": 2285866132 + } + } + }, + "2006206717": { + "name": "class JewelSocketWrenchRules*", + "bases": [ + "PropertyClass" + ], + "hash": 2006206717, + "properties": { + "m_rules": { + "type": "class JewelSocketWrenchElements", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2323021272 + } + } + }, + "1535419991": { + "name": "class CritAndBlockLevelData*", + "bases": [ + "PropertyClass" + ], + "hash": 1535419991, + "properties": { + "m_minLevel": { + "type": "int", + "id": 0, + "offset": 88, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1496818518 }, - "m_stackingRule": { - "type": "enum STACKING_RULE", - "id": 12, - "offset": 144, - "flags": 2097159, + "m_critAndBlockValues": { + "type": "class SharedPointer", + "id": 1, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 3047956180 + } + } + }, + "1987973849": { + "name": "class GamebryoBody", + "bases": [ + "Body", + "PropertyClass" + ], + "hash": 1987973849, + "properties": { + "m_position": { + "type": "class Vector3D", + "id": 0, + "offset": 88, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 431568889, - "enum_options": { - "STACKING_ALLOWED": 0, - "STACKING_NOSTACK": 1, - "STACKING_REPLACE": 2 - } + "hash": 3697900983 }, - "m_tickOnAdd": { - "type": "bool", - "id": 13, - "offset": 360, + "m_pitch": { + "type": "float", + "id": 1, + "offset": 100, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 663357284 + "hash": 896371695 }, - "m_zoneEventName": { - "type": "std::string", - "id": 14, - "offset": 368, + "m_roll": { + "type": "float", + "id": 2, + "offset": 104, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2601481434 + "hash": 310020272 }, - "m_tickRateSec": { + "m_yaw": { "type": "float", - "id": 15, - "offset": 400, + "id": 3, + "offset": 108, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1559681353 + "hash": 357256328 }, - "m_maxTicks": { - "type": "int", - "id": 16, - "offset": 404, + "m_fHeight": { + "type": "float", + "id": 4, + "offset": 132, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 155973918 + "hash": 401539638 + }, + "m_scale": { + "type": "float", + "id": 5, + "offset": 112, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 899693439 } } }, - "1544199619": { - "name": "class BugReport", + "1535419223": { + "name": "class CritAndBlockLevelData", "bases": [ "PropertyClass" ], - "hash": 1544199619, + "hash": 1535419223, "properties": { - "m_clientVersion": { - "type": "std::string", + "m_minLevel": { + "type": "int", "id": 0, - "offset": 72, - "flags": 31, + "offset": 88, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2207163808 + "hash": 1496818518 }, - "m_type": { - "type": "enum BugType", + "m_critAndBlockValues": { + "type": "class SharedPointer", "id": 1, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 889643611, - "enum_options": { - "BT_CRASH": 1, - "BT_GAME_STOPPER": 2, - "BT_INTERFERENCE": 3, - "BT_ANNOYANCE": 4, - "BT_FEATURE_REQUEST": 5, - "BT_COMMENT": 6 - } - }, - "m_canReproduce": { - "type": "bool", - "id": 2, - "offset": 108, - "flags": 31, + "pointer": true, + "hash": 3047956180 + } + } + }, + "1972306740": { + "name": "class RemoveAuraCinematicAction", + "bases": [ + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 1972306740, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 859813390 + "hash": 2237098605 }, - "m_description": { - "type": "std::wstring", - "id": 3, - "offset": 112, - "flags": 31, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1445360156 + "hash": 2285866132 } } }, - "1135853375": { - "name": "class PremiumContentOptionList", + "1105868504": { + "name": "class SharedPointer", "bases": [ "PropertyClass" ], - "hash": 1135853375, + "hash": 1105868504, "properties": { - "m_optionList": { - "type": "class PremiumContentOption", + "m_turns": { + "type": "class SharedPointer", "id": 0, "offset": 72, - "flags": 7, - "container": "List", + "flags": 31, + "container": "Vector", "dynamic": true, "singleton": false, + "pointer": true, + "hash": 1624806566 + } + } + }, + "687848454": { + "name": "class BGPlayerBehavior", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 687848454, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, "pointer": false, - "hash": 1394856917 + "hash": 223437287 } } }, - "363049144": { - "name": "class ZoneTokenBehaviorTemplate", + "1969795844": { + "name": "class RenamePipActorsFromResult", "bases": [ - "BehaviorTemplate", + "ActorCinematicAction", + "CinematicAction", "PropertyClass" ], - "hash": 363049144, + "hash": 1969795844, "properties": { - "m_behaviorName": { - "type": "std::string", + "m_timeOffset": { + "type": "float", "id": 0, "offset": 72, "flags": 7, @@ -445020,17 +157021,61 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 3130754092 + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + }, + "m_newActorName": { + "type": "std::string", + "id": 2, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2029131039 + }, + "m_newActorName2": { + "type": "std::string", + "id": 3, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1852236785 + }, + "m_oldActorName": { + "type": "std::string", + "id": 4, + "offset": 184, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2191892948 } } }, - "1544257861": { - "name": "class RespecOption", + "1966662129": { + "name": "class SharedPointer", "bases": [ "ServiceOptionBase", "PropertyClass" ], - "hash": 1544257861, + "hash": 1966662129, "properties": { "m_serviceName": { "type": "std::string", @@ -445089,23 +157134,15 @@ } } }, - "1544241226": { - "name": "enum GardenSpellTemplate::UtilitySpellType", - "bases": [], - "hash": 1544241226, - "properties": {} - }, - "1137044245": { - "name": "class SharedPointer", + "1106102155": { + "name": "class SharedPointer", "bases": [ - "PlayComplexSoundCinematicAction", - "CinematicAction", "PropertyClass" ], - "hash": 1137044245, + "hash": 1106102155, "properties": { - "m_timeOffset": { - "type": "float", + "m_ownerCharacterID": { + "type": "gid", "id": 0, "offset": 72, "flags": 7, @@ -445113,783 +157150,676 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 + "hash": 2128119645 }, - "m_cinematicSoundEmitterInfo": { - "type": "class SharedPointer", + "m_ownerNameBlob": { + "type": "std::string", "id": 1, "offset": 80, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2303770088 - } - } - }, - "363660502": { - "name": "class SharedPointer", - "bases": [ - "CollisionBehavior", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 363660502, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, "pointer": false, - "hash": 223437287 + "hash": 2446827686 }, - "m_nHolderGID": { - "type": "gid", - "id": 1, - "offset": 352, - "flags": 31, + "m_isPublic": { + "type": "bool", + "id": 2, + "offset": 112, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 133708664 + "hash": 1728439822 }, - "m_vHoldOffset": { - "type": "class Vector3D", - "id": 2, - "offset": 360, - "flags": 31, + "m_inviteAllCooldownTime": { + "type": "int", + "id": 3, + "offset": 116, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3766080710 + "hash": 1019161494 }, - "m_fHoldForce": { - "type": "float", - "id": 3, - "offset": 372, + "m_playerList": { + "type": "class SharedPointer", + "id": 4, + "offset": 120, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2882119980 + } + } + }, + "1966430886": { + "name": "class MadlibArg", + "bases": [ + "PropertyClass" + ], + "hash": 1966430886, + "properties": { + "m_madlibToken": { + "type": "std::string", + "id": 0, + "offset": 80, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1792175219 + "hash": 3058682373 } } }, - "1137031580": { - "name": "class CreationNameInput", + "1536928425": { + "name": "class SharedPointer", "bases": [ - "ControlRichEdit", - "ControlEdit", - "Window", + "PvPActor", + "MatchActor", "PropertyClass" ], - "hash": 1137031580, + "hash": 1536928425, "properties": { - "m_sName": { - "type": "std::string", + "m_nActorID": { + "type": "gid", "id": 0, - "offset": 80, - "flags": 135, + "offset": 88, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2306437263 + "hash": 663762476 }, - "m_Children": { - "type": "class SharedPointer", + "m_nLadderContainerID": { + "type": "gid", "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, + "offset": 96, + "flags": 31, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2621225959 + "pointer": false, + "hash": 782107042 }, - "m_Style": { + "m_nTournamentNameID": { "type": "unsigned int", "id": 2, - "offset": 152, - "flags": 1048583, + "offset": 104, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152, - "FORCE_NUMERIC": 16777216, - "FORCE_ALPHA": 268435456, - "FORCE_ALPHANUMERIC": 536870912, - "FORCE_INTEGER": 33554432, - "FORCE_POSITIVE": 67108864, - "FORCE_RANGE": 134217728 - } + "hash": 471412886 }, - "m_Flags": { - "type": "unsigned int", + "m_nTournamentID": { + "type": "gid", "id": 3, - "offset": 156, - "flags": 1048583, + "offset": 112, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } + "hash": 105258688 }, - "m_Window": { - "type": "class Rect", + "m_leagueID": { + "type": "unsigned int", "id": 4, - "offset": 160, - "flags": 135, + "offset": 124, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3105139380 + "hash": 692361645 }, - "m_fTargetAlpha": { - "type": "float", + "m_seasonID": { + "type": "unsigned int", "id": 5, - "offset": 212, - "flags": 135, + "offset": 120, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1809129834 + "hash": 535260643 }, - "m_fDisabledAlpha": { - "type": "float", + "m_nMatchNameID": { + "type": "unsigned int", "id": 6, - "offset": 216, - "flags": 135, + "offset": 128, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1389987675 + "hash": 497033398 }, - "m_fAlpha": { - "type": "float", + "m_nMatchID": { + "type": "gid", "id": 7, - "offset": 208, - "flags": 65671, + "offset": 136, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 482130755 + "hash": 1050279648 }, - "m_pWindowStyle": { - "type": "class SharedPointer", + "m_nTeamID": { + "type": "gid", "id": 8, - "offset": 232, - "flags": 135, + "offset": 144, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3623628394 + "pointer": false, + "hash": 374990266 }, - "m_sHelp": { - "type": "std::wstring", + "m_status": { + "type": "int", "id": 9, - "offset": 248, - "flags": 4194439, + "offset": 160, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2102211316 + "hash": 960781182 }, - "m_sScript": { - "type": "std::string", + "m_costAdj": { + "type": "class MatchCostAdjustment", "id": 10, - "offset": 352, - "flags": 135, + "offset": 200, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1846695875 + "hash": 913243331 }, - "m_Offset": { - "type": "class Point", + "m_pLadder": { + "type": "class SharedPointer", "id": 11, - "offset": 192, - "flags": 135, + "offset": 304, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 3389835433 + "pointer": true, + "hash": 2484171182 }, - "m_Scale": { - "type": "class Point", + "m_bracketID": { + "type": "gid", "id": 12, - "offset": 200, - "flags": 135, + "offset": 152, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2547159940 + "hash": 441272961 }, - "m_sTip": { - "type": "std::wstring", + "m_overridingELO": { + "type": "int", "id": 13, - "offset": 392, - "flags": 4194439, + "offset": 284, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1513510520 + "hash": 1428697363 }, - "m_BubbleList": { - "type": "class WindowBubble", + "m_matchKFactor": { + "type": "int", "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, + "offset": 288, + "flags": 31, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 2587533771 + "hash": 773340305 }, - "m_ParentOffset": { - "type": "class Rect", + "m_userID": { + "type": "gid", "id": 15, - "offset": 176, - "flags": 135, + "offset": 80, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3091503757 + "hash": 1037989700 }, - "m_sText": { - "type": "std::wstring", + "m_matchMakingRangeForMatches": { + "type": "unsigned int", "id": 16, - "offset": 584, - "flags": 135, + "offset": 320, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2102642960 + "hash": 1193045098 }, - "m_nMaxLength": { - "type": "int", + "m_maxMatchMakingRangeForMatches": { + "type": "unsigned int", "id": 17, - "offset": 620, - "flags": 135, + "offset": 324, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1183478416 + "hash": 1279540944 }, - "m_bPassword": { + "m_allowRangeToExceedMaxForMatches": { "type": "bool", "id": 18, - "offset": 624, - "flags": 135, + "offset": 328, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1604468200 + "hash": 1260448226 }, - "m_bLog": { - "type": "bool", + "m_matchCrownsCost": { + "type": "int", "id": 19, - "offset": 625, - "flags": 135, + "offset": 280, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 221687287 + "hash": 1094489596 }, - "m_previousNext": { - "type": "bool", + "m_machineID": { + "type": "gid", "id": 20, - "offset": 627, - "flags": 135, + "offset": 336, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 858581071 + "hash": 281396698 }, - "m_nMaxLogSize": { + "m_tier": { "type": "int", "id": 21, - "offset": 712, - "flags": 135, + "offset": 344, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 779573899 + "hash": 219884238 }, - "m_bEditing": { - "type": "bool", + "m_rank": { + "type": "int", "id": 22, - "offset": 616, - "flags": 135, + "offset": 348, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1243218553 + "hash": 219803942 }, - "m_bAllowPaste": { - "type": "bool", + "m_rating": { + "type": "int", "id": 23, - "offset": 626, - "flags": 135, + "offset": 352, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1129316721 + "hash": 899783871 }, - "m_nLogPosition": { + "m_levelBand": { "type": "int", "id": 24, - "offset": 704, - "flags": 135, + "offset": 356, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1120160767 + "hash": 2097286567 }, - "m_nCursor": { + "m_enteredQueue": { "type": "int", "id": 25, - "offset": 716, - "flags": 135, + "offset": 376, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1876782150 + "hash": 638238406 }, - "m_nEditBegin": { - "type": "int", + "m_isSubscriber": { + "type": "bool", "id": 26, - "offset": 720, - "flags": 135, + "offset": 428, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1066592403 + "hash": 952325795 }, - "m_nEditEnd": { - "type": "int", + "m_meetBracketBadgeRequirnments": { + "type": "bool", "id": 27, - "offset": 724, - "flags": 135, + "offset": 429, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1560905669 + "hash": 438139258 }, - "m_sSavedText": { - "type": "std::wstring", + "m_1v1": { + "type": "bool", "id": 28, - "offset": 728, - "flags": 135, + "offset": 430, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2197953283 + "hash": 269458571 }, - "m_fCursorBlinkSpeed": { - "type": "float", + "m_streak": { + "type": "int", "id": 29, - "offset": 760, - "flags": 135, + "offset": 360, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2232655228 + "hash": 961375108 }, - "m_fCursorTimer": { - "type": "float", + "m_matches": { + "type": "int", "id": 30, - "offset": 764, - "flags": 135, + "offset": 364, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1929942748 + "hash": 1757638687 }, - "m_bCursorBlink": { - "type": "bool", + "m_lastFight": { + "type": "int", "id": 31, - "offset": 768, - "flags": 135, + "offset": 368, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 683441507 + "hash": 91176384 }, - "m_fMinRange": { - "type": "double", + "m_PVPHistoryStr": { + "type": "std::string", "id": 32, - "offset": 776, - "flags": 135, + "offset": 384, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3079523396 + "hash": 1498439420 }, - "m_fMaxRange": { - "type": "double", + "m_maxCritHit": { + "type": "float", "id": 33, - "offset": 784, - "flags": 135, + "offset": 416, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3876551814 + "hash": 2225327348 }, - "m_nPrecision": { - "type": "int", + "m_maxBlockCrit": { + "type": "float", "id": 34, - "offset": 792, - "flags": 135, + "offset": 420, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1404974196 + "hash": 135865530 }, - "m_bDeleteOnFirstChar": { - "type": "bool", + "m_shadowPipRating": { + "type": "float", "id": 35, - "offset": 618, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 902105643 - } - } - }, - "364159407": { - "name": "class SharedPointer", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 364159407, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, + "offset": 424, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 + "hash": 507126123 }, - "m_snackBag": { - "type": "class ObjectBag", - "id": 1, - "offset": 112, - "flags": 27, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2027393587 - } - } - }, - "1546974253": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1546974253, - "properties": { - "m_sName": { + "m_optInOut": { "type": "std::string", - "id": 0, - "offset": 80, - "flags": 135, + "id": 36, + "offset": 168, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2306437263 - }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621225959 + "hash": 3013935453 }, - "m_Style": { - "type": "unsigned int", - "id": 2, - "offset": 152, - "flags": 1048583, + "m_playerTimeDraw": { + "type": "bool", + "id": 37, + "offset": 431, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "SCALE_CHILDREN": 2, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "FOCUS_LOCKED": 64, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152 - } + "hash": 447636221 }, - "m_Flags": { - "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 1048583, + "m_pvpStatus": { + "type": "unsigned char", + "id": 38, + "offset": 432, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } + "hash": 773570858 }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, - "flags": 135, + "m_gender": { + "type": "short", + "id": 39, + "offset": 434, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3105139380 + "hash": 564443897 }, - "m_fTargetAlpha": { - "type": "float", - "id": 5, - "offset": 212, - "flags": 135, + "m_level": { + "type": "int", + "id": 40, + "offset": 436, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1809129834 + "hash": 801285362 }, - "m_fDisabledAlpha": { - "type": "float", - "id": 6, - "offset": 216, - "flags": 135, + "m_nameBlob": { + "type": "std::string", + "id": 41, + "offset": 440, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1389987675 + "hash": 3058206907 }, - "m_fAlpha": { - "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, + "m_sSchool": { + "type": "std::string", + "id": 42, + "offset": 472, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 482130755 + "hash": 1846342998 }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, + "m_timeLeft": { + "type": "int", + "id": 43, + "offset": 508, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3623628394 + "pointer": false, + "hash": 1315288020 }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, + "m_startTime": { + "type": "unsigned int", + "id": 44, + "offset": 512, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2102211316 + "hash": 1598371274 }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, + "m_elo": { + "type": "int", + "id": 45, + "offset": 516, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1846695875 + "hash": 267033754 }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, + "m_wins": { + "type": "int", + "id": 46, + "offset": 520, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3389835433 + "hash": 219992347 }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, + "m_losses": { + "type": "int", + "id": 47, + "offset": 524, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2547159940 + "hash": 681549075 }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, + "m_ties": { + "type": "int", + "id": 48, + "offset": 528, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, + "hash": 219884239 + } + } + }, + "688561952": { + "name": "class ItemFinderBehaviorBase", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 688561952, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 2587533771 - }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, + "hash": 223437287 + } + } + }, + "688537376": { + "name": "class ItemFinderBehaviorBase*", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 688537376, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3091503757 + "hash": 223437287 } } }, - "1137884622": { - "name": "class LoyaltyPurchaseEntry*", + "1107860808": { + "name": "class GamebryoCamera", "bases": [ + "Camera", "PropertyClass" ], - "hash": 1137884622, + "hash": 1107860808, "properties": { - "m_timeOfPurchase": { - "type": "int", + "m_coord": { + "type": "class Vector3D", "id": 0, "offset": 72, "flags": 7, @@ -445897,539 +157827,859 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 556096185 + "hash": 2448785881 }, - "m_charID": { - "type": "gid", + "m_quat": { + "type": "class Quaternion", "id": 1, - "offset": 80, + "offset": 84, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 320363747 + "hash": 2148807035 }, - "m_packedName": { - "type": "std::string", + "m_mat": { + "type": "class Matrix3x3", "id": 2, - "offset": 88, + "offset": 100, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1805208228 - }, - "m_itemTemplateID": { + "hash": 1746928484 + } + } + }, + "1967451218": { + "name": "class SharedPointer", + "bases": [ + "ClientZoneTokenBehavior", + "ZoneTokenBehavior", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1967451218, + "properties": { + "m_behaviorTemplateNameID": { "type": "unsigned int", - "id": 3, - "offset": 120, - "flags": 7, + "id": 0, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2190120133 + "hash": 223437287 }, - "m_tokensAmount": { - "type": "int", - "id": 4, - "offset": 124, + "m_tokens": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 27, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621026866 + } + } + }, + "1106494485": { + "name": "class PetTalentsTriggeredSpells*", + "bases": [ + "PropertyClass" + ], + "hash": 1106494485, + "properties": { + "m_petTalentsTriggeredSpells": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2245729734 + } + } + }, + "1814013462": { + "name": "class AdvPvPEloBehaviorClient*", + "bases": [ + "AdvPvPEloBehavior", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1814013462, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 440789666 + "hash": 223437287 }, - "m_tokensBalance": { - "type": "int", - "id": 5, - "offset": 128, - "flags": 7, + "m_loaded": { + "type": "bool", + "id": 1, + "offset": 112, + "flags": 27, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 328409108 + "hash": 683367036 + }, + "m_entries": { + "type": "class SharedPointer", + "id": 2, + "offset": 120, + "flags": 27, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1075986553 + }, + "m_recordCache": { + "type": "class SharedPointer", + "id": 3, + "offset": 136, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 828243474 } } }, - "1545570424": { - "name": "class PulseEffectTemplate", + "1967088498": { + "name": "class SharedPointer", "bases": [ - "GameEffectTemplate", + "BehaviorInstance", "PropertyClass" ], - "hash": 1545570424, + "hash": 1967088498, "properties": { - "m_effectName": { - "type": "std::string", + "m_behaviorTemplateNameID": { + "type": "unsigned int", "id": 0, - "offset": 72, - "flags": 7, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2029161513 + "hash": 223437287 + } + } + }, + "1106377992": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1106377992, + "properties": {} + }, + "1719598141": { + "name": "class Rect", + "bases": [], + "hash": 1719598141, + "properties": {} + }, + "688676025": { + "name": "class ConicalSoundBehavior", + "bases": [ + "PositionalSoundBehavior", + "SoundBehavior", + "AreaBehavior", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 688676025, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 }, - "m_effectCategory": { - "type": "std::string", + "m_radius": { + "type": "float", "id": 1, - "offset": 104, + "offset": 116, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1852673222 + "hash": 989410271 }, - "m_sortOrder": { - "type": "int", + "m_category": { + "type": "enum AudioCategory", "id": 2, - "offset": 148, - "flags": 7, + "offset": 124, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1411218206 + "hash": 2951251982, + "enum_options": { + "AudioCategory_Irrelevent": 0, + "AudioCategory_Accoustic": 1, + "AudioCategory_Noise": 2, + "AudioCategory_Music": 3 + } }, - "m_duration": { - "type": "double", + "m_exclusive": { + "type": "bool", "id": 3, - "offset": 192, + "offset": 128, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2727932435 + "hash": 824383403 }, - "m_stackingCategories": { - "type": "std::string", + "m_playList": { + "type": "class PlayList", "id": 4, - "offset": 160, + "offset": 176, "flags": 7, - "container": "List", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 1774497525 + "hash": 2061221957 }, - "m_isPersistent": { - "type": "bool", + "m_volume": { + "type": "float", "id": 5, - "offset": 153, + "offset": 304, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 923861920 + "hash": 1162855023 }, - "m_bIsOnPet": { - "type": "bool", + "m_loopCount": { + "type": "int", "id": 6, - "offset": 154, + "offset": 308, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 522593303 + "hash": 865634717 }, - "m_isPublic": { - "type": "bool", + "m_minimumFalloff": { + "type": "float", "id": 7, - "offset": 152, + "offset": 328, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1728439822 + "hash": 355697197 }, - "m_visualEffectAddName": { - "type": "std::string", + "m_maximumFalloff": { + "type": "float", "id": 8, - "offset": 200, + "offset": 332, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3382086694 + "hash": 2210192367 }, - "m_visualEffectRemoveName": { - "type": "std::string", + "m_animDriven": { + "type": "bool", "id": 9, - "offset": 232, + "offset": 392, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1541697323 + "hash": 398394720 }, - "m_onAddFunctorName": { - "type": "std::string", + "m_inverted": { + "type": "bool", "id": 10, - "offset": 280, + "offset": 397, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1561843107 + "hash": 1034821044 }, - "m_onRemoveFunctorName": { - "type": "std::string", + "m_fInsideAngle": { + "type": "float", "id": 11, - "offset": 312, + "offset": 528, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2559017864 + "hash": 1114383840 }, - "m_stackingRule": { - "type": "enum STACKING_RULE", + "m_fOutsideAngle": { + "type": "float", "id": 12, - "offset": 144, - "flags": 2097159, + "offset": 532, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 431568889, - "enum_options": { - "STACKING_ALLOWED": 0, - "STACKING_NOSTACK": 1, - "STACKING_REPLACE": 2 - } + "hash": 1627152289 }, - "m_pulsePeriod": { - "type": "double", + "m_fOutsideVolume": { + "type": "float", "id": 13, - "offset": 360, + "offset": 536, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3960618585 + "hash": 90369618 }, - "m_pulseEventName": { - "type": "std::string", + "m_fRangeScale": { + "type": "float", "id": 14, - "offset": 368, + "offset": 540, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1858926599 - } - } - }, - "1137370210": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1137370210, - "properties": { - "m_quickSellItemList": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, + "hash": 1749294034 + }, + "m_fAttenuationFactor": { + "type": "float", + "id": 15, + "offset": 544, "flags": 7, - "container": "List", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2797277851 + "pointer": false, + "hash": 273292776 }, - "m_sellingCharacterGID": { - "type": "gid", - "id": 1, - "offset": 88, - "flags": 7, + "m_eAttenuationType": { + "type": "enum PositionInfoAttenuationType", + "id": 16, + "offset": 548, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1096175527 + "hash": 2427193304, + "enum_options": { + "Standard": 0, + "Unit Range Power": 1 + } } } }, - "1545292680": { - "name": "class ProvidePetPower", + "1620405349": { + "name": "class SerializedBuffer", + "bases": [], + "hash": 1620405349, + "properties": {} + }, + "688675985": { + "name": "class ConicalSoundBehavior*", "bases": [ - "GameEffectBase", + "PositionalSoundBehavior", + "SoundBehavior", + "AreaBehavior", + "BehaviorInstance", "PropertyClass" ], - "hash": 1545292680, + "hash": 688675985, "properties": { - "m_currentTickCount": { - "type": "double", + "m_behaviorTemplateNameID": { + "type": "unsigned int", "id": 0, - "offset": 80, - "flags": 63, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2533274692 + "hash": 223437287 }, - "m_effectNameID": { - "type": "unsigned int", + "m_radius": { + "type": "float", "id": 1, - "offset": 96, - "flags": 63, + "offset": 116, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1204067144 + "hash": 989410271 }, - "m_bIsOnPet": { - "type": "bool", + "m_category": { + "type": "enum AudioCategory", "id": 2, - "offset": 73, - "flags": 31, + "offset": 124, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 522593303 + "hash": 2951251982, + "enum_options": { + "AudioCategory_Irrelevent": 0, + "AudioCategory_Accoustic": 1, + "AudioCategory_Noise": 2, + "AudioCategory_Music": 3 + } }, - "m_originatorID": { - "type": "gid", + "m_exclusive": { + "type": "bool", "id": 3, - "offset": 104, - "flags": 39, + "offset": 128, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1131810019 + "hash": 824383403 }, - "m_itemSlotID": { - "type": "unsigned int", + "m_playList": { + "type": "class PlayList", "id": 4, - "offset": 112, - "flags": 63, + "offset": 176, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1895747595 + "hash": 2061221957 }, - "m_internalID": { - "type": "int", + "m_volume": { + "type": "float", "id": 5, - "offset": 92, - "flags": 63, + "offset": 304, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1643137924 + "hash": 1162855023 }, - "m_endTime": { - "type": "unsigned int", + "m_loopCount": { + "type": "int", "id": 6, - "offset": 88, - "flags": 31, + "offset": 308, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 716479635 + "hash": 865634717 }, - "m_happinessCost": { - "type": "int", + "m_minimumFalloff": { + "type": "float", "id": 7, - "offset": 128, - "flags": 31, + "offset": 328, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 355697197 + }, + "m_maximumFalloff": { + "type": "float", + "id": 8, + "offset": 332, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2210192367 + }, + "m_animDriven": { + "type": "bool", + "id": 9, + "offset": 392, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 398394720 + }, + "m_inverted": { + "type": "bool", + "id": 10, + "offset": 397, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1034821044 + }, + "m_fInsideAngle": { + "type": "float", + "id": 11, + "offset": 528, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1114383840 + }, + "m_fOutsideAngle": { + "type": "float", + "id": 12, + "offset": 532, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1627152289 + }, + "m_fOutsideVolume": { + "type": "float", + "id": 13, + "offset": 536, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 90369618 + }, + "m_fRangeScale": { + "type": "float", + "id": 14, + "offset": 540, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1749294034 + }, + "m_fAttenuationFactor": { + "type": "float", + "id": 15, + "offset": 544, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 273292776 + }, + "m_eAttenuationType": { + "type": "enum PositionInfoAttenuationType", + "id": 16, + "offset": 548, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2427193304, + "enum_options": { + "Standard": 0, + "Unit Range Power": 1 + } + } + } + }, + "1578865429": { + "name": "class BehaviorInstance*", + "bases": [ + "PropertyClass" + ], + "hash": 1578865429, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + } + } + }, + "1969752831": { + "name": "class CastleTourLeaderboardEntry*", + "bases": [ + "CastleTourTeleportInfo", + "PropertyClass" + ], + "hash": 1969752831, + "properties": { + "m_houseTemplateID": { + "type": "unsigned int", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2326023642 + }, + "m_structureTemplateID": { + "type": "unsigned int", + "id": 1, + "offset": 76, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1107125310 + "hash": 1037379271 }, - "m_cooldown": { - "type": "int", - "id": 8, - "offset": 132, - "flags": 31, + "m_lotInstanceGID": { + "type": "gid", + "id": 2, + "offset": 80, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1897549823 + "hash": 2010711536 }, - "m_usesPerCombat": { - "type": "int", - "id": 9, - "offset": 136, - "flags": 31, + "m_structureInstanceGID": { + "type": "gid", + "id": 3, + "offset": 88, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1445312791 + "hash": 2083588818 }, - "m_combatTalent": { - "type": "bool", - "id": 10, - "offset": 140, - "flags": 31, + "m_owningCharacterGID": { + "type": "gid", + "id": 4, + "offset": 96, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2113651857 + "hash": 316234091 }, - "m_triggerName": { - "type": "std::string", - "id": 11, - "offset": 144, - "flags": 31, + "m_type": { + "type": "unsigned char", + "id": 5, + "offset": 104, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3100183568 + "hash": 857501458 }, - "m_extra1": { + "m_packedName": { "type": "std::string", - "id": 12, - "offset": 176, - "flags": 31, + "id": 6, + "offset": 112, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1916008880 + "hash": 1805208228 }, - "m_extra2": { - "type": "std::string", - "id": 13, - "offset": 208, - "flags": 31, + "m_rank": { + "type": "unsigned short", + "id": 7, + "offset": 144, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1916008881 + "hash": 773386388 + } + } + }, + "1106997031": { + "name": "class WhirlyBurlyGameState", + "bases": [ + "PropertyClass" + ], + "hash": 1106997031, + "properties": { + "m_boardKeyList": { + "type": "unsigned int", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2327762042 }, - "m_lootTableName": { - "type": "std::string", - "id": 14, - "offset": 240, - "flags": 31, - "container": "Static", - "dynamic": false, + "m_boardValueList": { + "type": "unsigned int", + "id": 1, + "offset": 88, + "flags": 7, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 2333333378 + "hash": 1770021678 }, - "m_powerDisplayName": { - "type": "std::string", - "id": 15, - "offset": 272, - "flags": 31, - "container": "Static", - "dynamic": false, + "m_pieceKeyList": { + "type": "unsigned int", + "id": 2, + "offset": 104, + "flags": 7, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 2338393887 + "hash": 1090726552 }, - "m_requirementList": { - "type": "class SharedPointer", - "id": 16, - "offset": 304, + "m_pieceValueList": { + "type": "unsigned int", + "id": 3, + "offset": 120, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1110620364 + } + } + }, + "1551126354": { + "name": "class SharedPointer", + "bases": [ + "ServiceOptionBase", + "PropertyClass" + ], + "hash": 1551126354, + "properties": { + "m_serviceName": { + "type": "std::string", + "id": 0, + "offset": 72, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3783909798 + "pointer": false, + "hash": 2206028813 }, - "m_requirementFailedString": { + "m_iconKey": { "type": "std::string", - "id": 17, - "offset": 320, + "id": 1, + "offset": 168, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2051573416 + "hash": 2457138637 }, - "m_noPVP": { - "type": "bool", - "id": 18, - "offset": 356, + "m_displayKey": { + "type": "std::string", + "id": 2, + "offset": 104, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 806455846 + "hash": 3023276954 }, - "m_rampUp": { - "type": "int", - "id": 19, - "offset": 360, + "m_serviceIndex": { + "type": "unsigned int", + "id": 3, + "offset": 204, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 899539119 + "hash": 2103126710 }, - "m_description": { - "type": "std::string", - "id": 20, - "offset": 368, + "m_forceInteract": { + "type": "bool", + "id": 4, + "offset": 200, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1649374815 + "hash": 1705789564 }, - "m_myTurn": { - "type": "bool", - "id": 21, - "offset": 400, + "m_tournamentName": { + "type": "std::string", + "id": 5, + "offset": 216, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 733913410 + "hash": 3329241865 } } }, - "364958070": { - "name": "class CastEffectCinematicAction*", + "1969752821": { + "name": "class CastleTourLeaderboardEntry", "bases": [ - "BaseEffectCinematicAction", - "CinematicAction", + "CastleTourTeleportInfo", "PropertyClass" ], - "hash": 364958070, + "hash": 1969752821, "properties": { - "m_timeOffset": { - "type": "float", + "m_houseTemplateID": { + "type": "unsigned int", "id": 0, "offset": 72, "flags": 7, @@ -446437,2389 +158687,4014 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 + "hash": 2326023642 }, - "m_effectRel": { - "type": "enum BaseEffectCinematicAction::kEffectRelative", + "m_structureTemplateID": { + "type": "unsigned int", "id": 1, - "offset": 80, - "flags": 2097159, + "offset": 76, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2978921287, - "enum_options": { - "kNone": 0, - "kSigil": 1, - "kTarget": 2, - "kSource": 3, - "kActor": 4 - } + "hash": 1037379271 }, - "m_namedActor": { - "type": "std::string", + "m_lotInstanceGID": { + "type": "gid", "id": 2, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2010711536 + }, + "m_structureInstanceGID": { + "type": "gid", + "id": 3, "offset": 88, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3413532537 - } - } - }, - "1544496703": { - "name": "class DynamicSigilInstance", - "bases": [ - "PropertyClass" - ], - "hash": 1544496703, - "properties": { - "m_teams": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Vector", - "dynamic": true, + "hash": 2083588818 + }, + "m_owningCharacterGID": { + "type": "gid", + "id": 4, + "offset": 96, + "flags": 7, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1624208548 + "pointer": false, + "hash": 316234091 }, - "m_roundInfo": { - "type": "class SharedPointer", - "id": 1, - "offset": 128, - "flags": 31, + "m_type": { + "type": "unsigned char", + "id": 5, + "offset": 104, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2078235549 - } - } - }, - "364463519": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 364463519, - "properties": {} - }, - "1241163829": { - "name": "class BreadCrumbBehaviorTemplate", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 1241163829, - "properties": { - "m_behaviorName": { + "pointer": false, + "hash": 857501458 + }, + "m_packedName": { "type": "std::string", - "id": 0, - "offset": 72, + "id": 6, + "offset": 112, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3130754092 + "hash": 1805208228 }, - "m_visualBreadCrumb": { - "type": "bool", - "id": 1, - "offset": 120, + "m_rank": { + "type": "unsigned short", + "id": 7, + "offset": 144, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1118570878 + "hash": 773386388 } } }, - "364199998": { - "name": "class AdventurePartyJoinList*", + "1106997007": { + "name": "class WhirlyBurlyGameState*", "bases": [ "PropertyClass" ], - "hash": 364199998, + "hash": 1106997007, "properties": { - "m_adventurePartyJoinList": { - "type": "class SharedPointer", + "m_boardKeyList": { + "type": "unsigned int", "id": 0, "offset": 72, "flags": 7, "container": "List", "dynamic": true, "singleton": false, - "pointer": true, - "hash": 1532734392 - } - } - }, - "1544627514": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1544627514, - "properties": { - "m_partID": { - "type": "gid", - "id": 0, - "offset": 72, + "pointer": false, + "hash": 2327762042 + }, + "m_boardValueList": { + "type": "unsigned int", + "id": 1, + "offset": 88, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 821435516 + "hash": 1770021678 }, - "m_data": { + "m_pieceKeyList": { "type": "unsigned int", - "id": 1, - "offset": 80, + "id": 2, + "offset": 104, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 430703463 + "hash": 1090726552 + }, + "m_pieceValueList": { + "type": "unsigned int", + "id": 3, + "offset": 120, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1110620364 } } }, - "364240958": { - "name": "class AdventurePartyJoinList", + "1544496663": { + "name": "class DynamicSigilInstance*", "bases": [ "PropertyClass" ], - "hash": 364240958, + "hash": 1544496663, "properties": { - "m_adventurePartyJoinList": { - "type": "class SharedPointer", + "m_teams": { + "type": "class SharedPointer", "id": 0, "offset": 72, - "flags": 7, - "container": "List", + "flags": 31, + "container": "Vector", "dynamic": true, "singleton": false, "pointer": true, - "hash": 1532734392 + "hash": 1624208548 + }, + "m_roundInfo": { + "type": "class SharedPointer", + "id": 1, + "offset": 128, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2078235549 } } }, - "1140592356": { - "name": "class PCDialogEntry", + "688811617": { + "name": "class SharedPointer", "bases": [ - "ActorDialogEntry", "PropertyClass" ], - "hash": 1140592356, + "hash": 688811617, "properties": { - "m_requirements": { - "type": "class SharedPointer", + "m_unitType": { + "type": "unsigned char", "id": 0, "offset": 72, - "flags": 263, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3043523229 + "pointer": false, + "hash": 1498103218 }, - "m_dialog": { - "type": "std::string", + "m_cardUsed": { + "type": "unsigned int", "id": 1, - "offset": 88, - "flags": 8388639, + "offset": 76, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1858395851 + "hash": 1315653400 }, - "m_picture": { - "type": "std::string", + "m_movementTurnTime": { + "type": "unsigned char", "id": 2, - "offset": 120, - "flags": 131103, + "offset": 80, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3128322903 + "hash": 1100876371 }, - "m_soundFile": { - "type": "std::string", + "m_blueTeamScore": { + "type": "unsigned int", "id": 3, - "offset": 152, - "flags": 131103, + "offset": 104, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2276870852 + "hash": 1519259416 }, - "m_action": { - "type": "std::string", + "m_orangeTeamScore": { + "type": "unsigned int", "id": 4, - "offset": 184, - "flags": 31, + "offset": 108, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1734553689 + "hash": 988508012 }, - "m_dialogEvent": { - "type": "std::string", + "m_redTeamScore": { + "type": "unsigned int", "id": 5, - "offset": 216, - "flags": 31, + "offset": 112, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2707957549 + "hash": 1672048811 }, - "m_actorTemplateID": { + "m_unitMovementList": { "type": "unsigned int", "id": 6, - "offset": 248, - "flags": 33554463, - "container": "Static", - "dynamic": false, + "offset": 88, + "flags": 7, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 2134265679 - }, - "m_cameraName": { - "type": "std::string", - "id": 7, - "offset": 256, - "flags": 31, + "hash": 687999892 + } + } + }, + "1541492248": { + "name": "class ClientEffectCinematicAction*", + "bases": [ + "EffectCinematicAction", + "BaseEffectCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 1541492248, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3252786917 + "hash": 2237098605 }, - "m_interpolationDuration": { - "type": "float", - "id": 8, - "offset": 312, - "flags": 31, + "m_effectRel": { + "type": "enum BaseEffectCinematicAction::kEffectRelative", + "id": 1, + "offset": 80, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1458058437, + "hash": 2978921287, "enum_options": { - "__DEFAULT": "1.0" + "kNone": 0, + "kSigil": 1, + "kTarget": 2, + "kSource": 3, + "kActor": 4 } }, - "m_cameraOffsetX": { - "type": "float", - "id": 9, - "offset": 288, - "flags": 31, - "container": "Static", - "dynamic": false, + "m_graphic": { + "type": "std::string", + "id": 2, + "offset": 88, + "flags": 131079, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 1515912895 + "hash": 2592217913 }, - "m_cameraOffsetY": { - "type": "float", - "id": 10, - "offset": 292, - "flags": 31, + "m_bUseOrientationOverride": { + "type": "bool", + "id": 3, + "offset": 120, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1515912896 + "hash": 1088002894 }, - "m_cameraOffsetZ": { - "type": "float", - "id": 11, - "offset": 296, - "flags": 31, + "m_overrideOrientation": { + "type": "class Vector3D", + "id": 4, + "offset": 124, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1515912897 + "hash": 3267199758 }, - "m_pitch": { - "type": "float", - "id": 12, - "offset": 304, - "flags": 31, + "m_bUseLocationOverride": { + "type": "bool", + "id": 5, + "offset": 104, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 896371695 + "hash": 1767170875 }, - "m_yaw": { - "type": "float", - "id": 13, - "offset": 300, - "flags": 31, + "m_overrideLocation": { + "type": "class Vector3D", + "id": 6, + "offset": 108, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 357256328 - }, - "m_roll": { - "type": "float", - "id": 14, - "offset": 308, - "flags": 31, + "hash": 3776417691 + } + } + }, + "1538911188": { + "name": "class ClientBattleBookBehavior", + "bases": [ + "BattleBookBehavior", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1538911188, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 310020272 + "hash": 223437287 }, - "m_cameraShakeType": { - "type": "std::string", - "id": 15, - "offset": 320, - "flags": 31, - "container": "Static", - "dynamic": false, + "m_spellList": { + "type": "class SharedPointer", + "id": 1, + "offset": 120, + "flags": 27, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 1754128882, - "enum_options": { - "": 0, - "Constant": "Constant", - "Quake": "Quake", - "Thud": "Thud", - "End": "End", - "__DEFAULT": 0 - } + "pointer": true, + "hash": 2181913740 }, - "m_cameraShakeDuration": { - "type": "float", - "id": 16, - "offset": 352, - "flags": 31, + "m_rating": { + "type": "class SharedPointer", + "id": 2, + "offset": 136, + "flags": 27, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 316581010, - "enum_options": { - "__DEFAULT": "0.0" - } - }, - "m_cameraShakeAmplitude": { - "type": "float", - "id": 17, - "offset": 356, - "flags": 31, - "container": "Static", - "dynamic": false, + "pointer": true, + "hash": 2464459535 + } + } + }, + "1107364317": { + "name": "class PetTomePetTotalList*", + "bases": [ + "PropertyClass" + ], + "hash": 1107364317, + "properties": { + "m_petTomePetTotalList": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 2179718321, - "enum_options": { - "__DEFAULT": "0.0" - } + "pointer": true, + "hash": 449762511 }, - "m_bypassCameraOnReview": { - "type": "bool", - "id": 18, - "offset": 360, - "flags": 31, - "container": "Static", - "dynamic": false, + "m_petTemplateList": { + "type": "unsigned int", + "id": 1, + "offset": 88, + "flags": 7, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 1412905725, - "enum_options": { - "__DEFAULT": 1 - } - }, - "m_cameraZoneName": { + "hash": 567776494 + } + } + }, + "1538128723": { + "name": "class SharedPointer", + "bases": [ + "CinematicStageTemplate", + "PropertyClass" + ], + "hash": 1538128723, + "properties": { + "m_name": { "type": "std::string", - "id": 19, - "offset": 368, - "flags": 287, + "id": 0, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3131581121 + "hash": 1717359772 }, "m_duration": { "type": "float", - "id": 20, - "offset": 400, - "flags": 31, + "id": 1, + "offset": 104, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, "hash": 920323453 }, - "m_delay": { - "type": "float", - "id": 21, - "offset": 404, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 881988134 - }, - "m_cameraHidePlayers": { - "type": "int", - "id": 22, - "offset": 408, - "flags": 287, - "container": "Static", - "dynamic": false, + "m_actions": { + "type": "class SharedPointer", + "id": 2, + "offset": 112, + "flags": 7, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 28533149 + "pointer": true, + "hash": 1380578687 }, - "m_walkAwayNpcTemplateID": { - "type": "gid", - "id": 23, - "offset": 416, - "flags": 33554719, - "container": "Static", - "dynamic": false, + "m_stageRelationships": { + "type": "class SharedPointer", + "id": 3, + "offset": 128, + "flags": 7, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 942697507 + "pointer": true, + "hash": 499983354 }, - "m_walkAwayExitDirectionInDegrees": { - "type": "float", - "id": 24, - "offset": 424, - "flags": 287, - "container": "Static", - "dynamic": false, + "m_cameras": { + "type": "std::string", + "id": 4, + "offset": 152, + "flags": 131079, + "container": "Vector", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 396419785 + "hash": 3217341687 }, - "m_walkAwayFadeTime": { - "type": "float", - "id": 25, - "offset": 428, - "flags": 287, - "container": "Static", - "dynamic": false, + "m_altcameras": { + "type": "std::string", + "id": 5, + "offset": 176, + "flags": 131079, + "container": "Vector", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 822405687 + "hash": 1882980152 }, - "m_walkAwayUseCurrentFacing": { - "type": "bool", - "id": 26, - "offset": 432, - "flags": 287, + "m_animation": { + "type": "std::string", + "id": 6, + "offset": 200, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1464855436 + "hash": 3431428731 }, - "m_standInPlayerTag": { + "m_sound": { "type": "std::string", - "id": 27, - "offset": 440, - "flags": 287, + "id": 7, + "offset": 232, + "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1590121141 - }, - "m_fadeOutCamera": { - "type": "bool", - "id": 28, - "offset": 472, - "flags": 287, + "hash": 2307644996 + } + } + }, + "690385098": { + "name": "class CastleGamesBehavior", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 690385098, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1766121252 - }, - "m_snapCameraToPlayerAtExit": { - "type": "bool", - "id": 29, - "offset": 473, - "flags": 287, + "hash": 223437287 + } + } + }, + "1969979772": { + "name": "class ClientMobAggroBehavior*", + "bases": [ + "MobAggroBehavior", + "AggroBehavior", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1969979772, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1323369645 - }, - "m_secondaryCameraName": { + "hash": 223437287 + } + } + }, + "1538010911": { + "name": "class SharedPointer", + "bases": [ + "CinematicStageTemplate", + "PropertyClass" + ], + "hash": 1538010911, + "properties": { + "m_name": { "type": "std::string", - "id": 30, - "offset": 480, - "flags": 287, + "id": 0, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1670705581 + "hash": 1717359772 }, - "m_secondaryInterpolationDuration": { + "m_duration": { "type": "float", - "id": 31, - "offset": 512, - "flags": 287, + "id": 1, + "offset": 104, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1873822349 + "hash": 920323453 }, - "m_npcStandInList": { - "type": "std::string", - "id": 32, - "offset": 520, - "flags": 287, + "m_actions": { + "type": "class SharedPointer", + "id": 2, + "offset": 112, + "flags": 7, "container": "List", "dynamic": true, "singleton": false, - "pointer": false, - "hash": 2076308937 + "pointer": true, + "hash": 1380578687 }, - "m_dialogAnimationList": { - "type": "std::string", - "id": 33, - "offset": 536, - "flags": 287, + "m_stageRelationships": { + "type": "class SharedPointer", + "id": 3, + "offset": 128, + "flags": 7, "container": "List", "dynamic": true, "singleton": false, - "pointer": false, - "hash": 2444806919 + "pointer": true, + "hash": 499983354 }, - "m_dialogTurningList": { + "m_cameras": { "type": "std::string", - "id": 34, - "offset": 552, - "flags": 287, - "container": "List", + "id": 4, + "offset": 152, + "flags": 131079, + "container": "Vector", "dynamic": true, "singleton": false, "pointer": false, - "hash": 2782869422 + "hash": 3217341687 }, - "m_npcYawOffsetInDegrees": { - "type": "float", - "id": 35, - "offset": 568, - "flags": 287, - "container": "Static", - "dynamic": false, + "m_altcameras": { + "type": "std::string", + "id": 5, + "offset": 176, + "flags": 131079, + "container": "Vector", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 1395075270 + "hash": 1882980152 }, - "m_allowPlayerToMove": { - "type": "bool", - "id": 36, - "offset": 572, - "flags": 287, + "m_animation": { + "type": "std::string", + "id": 6, + "offset": 200, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 225101337 + "hash": 3431428731 }, - "m_soundEffectFile": { + "m_sound": { "type": "std::string", - "id": 37, - "offset": 576, - "flags": 287, + "id": 7, + "offset": 232, + "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3235157265 - }, - "m_musicFile": { - "type": "std::string", - "id": 38, - "offset": 608, - "flags": 287, - "container": "Static", - "dynamic": false, + "hash": 2307644996 + } + } + }, + "689479348": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 689479348, + "properties": { + "m_jewelSocketUnlockList": { + "type": "class JewelSocketUnlockCost", + "id": 0, + "offset": 72, + "flags": 31, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 2963686620 - }, - "m_nonStackableMusic": { - "type": "bool", - "id": 39, - "offset": 640, - "flags": 287, + "hash": 2753944903 + } + } + }, + "1969823355": { + "name": "class AccousticAreaBehavior", + "bases": [ + "AreaBehavior", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1969823355, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1675595625 + "hash": 223437287 }, - "m_nonRepeatableMusic": { - "type": "bool", - "id": 40, - "offset": 641, - "flags": 287, + "m_radius": { + "type": "float", + "id": 1, + "offset": 116, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2138315572 + "hash": 989410271 }, - "m_playMusicAtSFXVolume": { - "type": "bool", - "id": 41, - "offset": 642, - "flags": 287, + "m_category": { + "type": "enum AudioCategory", + "id": 2, + "offset": 124, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2130871816 + "hash": 2951251982, + "enum_options": { + "AudioCategory_Irrelevent": 0, + "AudioCategory_Accoustic": 1, + "AudioCategory_Noise": 2, + "AudioCategory_Music": 3 + } }, - "m_soundEffectDelay": { - "type": "float", - "id": 42, - "offset": 644, - "flags": 287, + "m_exclusive": { + "type": "bool", + "id": 3, + "offset": 128, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1586382460 + "hash": 824383403 }, - "m_musicDelay": { - "type": "float", - "id": 43, - "offset": 648, - "flags": 287, + "m_accousticSignature": { + "type": "enum AccousticSignature", + "id": 4, + "offset": 176, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1217785767 - }, - "m_musicFadeTime": { - "type": "float", - "id": 44, - "offset": 652, - "flags": 287, + "hash": 1188263221, + "enum_options": { + "Generic": 0, + "Padded Cell": 1, + "Room": 2, + "Bath Room": 3, + "Living Room": 4, + "Stone Room": 5, + "Auditorium": 6, + "Concert Hall": 7, + "Cave": 8, + "Arena": 9, + "Hanger": 10, + "Carpeted Hallway": 11, + "Hallway": 12, + "Stone Corridor": 13, + "Alley": 14, + "Forest": 15, + "City": 16, + "Mountains": 17, + "Quarry": 18, + "Plain": 19, + "Parking Lot": 20, + "Sewer Pipe": 21, + "Underwater": 22, + "Drugged": 23, + "Dizzy": 24, + "Psychotic": 25 + } + } + } + }, + "689455393": { + "name": "enum SpellEffect::kHangingDisposition", + "bases": [], + "hash": 689455393, + "properties": {} + }, + "1969822587": { + "name": "class AccousticAreaBehavior*", + "bases": [ + "AreaBehavior", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1969822587, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 502925015 + "hash": 223437287 }, - "m_dontReleaseCameraAtExit": { - "type": "bool", - "id": 45, - "offset": 474, - "flags": 287, + "m_radius": { + "type": "float", + "id": 1, + "offset": 116, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1107508961 + "hash": 989410271 }, - "m_disableBackButton": { - "type": "bool", - "id": 46, - "offset": 656, - "flags": 287, + "m_category": { + "type": "enum AudioCategory", + "id": 2, + "offset": 124, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 122355444 + "hash": 2951251982, + "enum_options": { + "AudioCategory_Irrelevent": 0, + "AudioCategory_Accoustic": 1, + "AudioCategory_Noise": 2, + "AudioCategory_Music": 3 + } }, - "m_enableExitButton": { + "m_exclusive": { "type": "bool", - "id": 47, - "offset": 657, - "flags": 287, + "id": 3, + "offset": 128, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1824693936 + "hash": 824383403 }, - "m_cameraFadeType": { - "type": "std::string", - "id": 48, - "offset": 664, - "flags": 287, + "m_accousticSignature": { + "type": "enum AccousticSignature", + "id": 4, + "offset": 176, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2021935382, + "hash": 1188263221, "enum_options": { - "": 0, - "In Out Black": "In Out Black", - "In Out White": "In Out White", - "In Black": "In Black", - "Out Black": "Out Black", - "In White": "In White", - "Out White": "Out White", - "__DEFAULT": 0 + "Generic": 0, + "Padded Cell": 1, + "Room": 2, + "Bath Room": 3, + "Living Room": 4, + "Stone Room": 5, + "Auditorium": 6, + "Concert Hall": 7, + "Cave": 8, + "Arena": 9, + "Hanger": 10, + "Carpeted Hallway": 11, + "Hallway": 12, + "Stone Corridor": 13, + "Alley": 14, + "Forest": 15, + "City": 16, + "Mountains": 17, + "Quarry": 18, + "Plain": 19, + "Parking Lot": 20, + "Sewer Pipe": 21, + "Underwater": 22, + "Drugged": 23, + "Dizzy": 24, + "Psychotic": 25 } - }, - "m_cameraFadeTime": { - "type": "float", - "id": 49, - "offset": 696, - "flags": 287, + } + } + }, + "1109114684": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1109114684, + "properties": { + "m_itemID": { + "type": "unsigned int", + "id": 0, + "offset": 72, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 614419391, - "enum_options": { - "__DEFAULT": "0.5" - } - }, - "m_idleAnimation": { - "type": "std::string", - "id": 50, - "offset": 704, - "flags": 31, + "hash": 780964329 + } + } + }, + "1538072524": { + "name": "class SharedPointer", + "bases": [ + "NameOverrideBehavior", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1538072524, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2900487193 + "hash": 223437287 }, - "m_spamTime": { - "type": "float", - "id": 51, - "offset": 736, - "flags": 287, + "m_wsNameOverride": { + "type": "std::wstring", + "id": 1, + "offset": 120, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1727215063, - "enum_options": { - "__DEFAULT": "1.0" - } + "hash": 2131249091 }, - "m_playSoundIfSpamming": { - "type": "bool", - "id": 52, - "offset": 740, - "flags": 287, + "m_nameKeys": { + "type": "unsigned int", + "id": 2, + "offset": 352, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 690006749, - "enum_options": { - "__DEFAULT": 1 - } + "hash": 1772225898 }, - "m_playMusicIfSpamming": { + "m_useRank": { "type": "bool", - "id": 53, - "offset": 741, - "flags": 287, + "id": 3, + "offset": 356, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 538564341, - "enum_options": { - "__DEFAULT": 1 - } + "hash": 2040475372 }, - "m_stopMusicFadeTime": { - "type": "float", - "id": 54, - "offset": 744, - "flags": 287, + "m_eGender": { + "type": "enum eGender", + "id": 4, + "offset": 432, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 696390845, + "hash": 2776344943, "enum_options": { - "__DEFAULT": "0.0" + "Male": 1, + "Female": 0, + "Neutral": 2 } }, - "m_restartMusicFadeTime": { - "type": "float", - "id": 55, - "offset": 748, - "flags": 287, + "m_eRace": { + "type": "enum eRace", + "id": 5, + "offset": 436, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 709379292, + "hash": 963057554, "enum_options": { - "__DEFAULT": "0.0" + "Bat": 88066, + "BatLightning": 1472842576, + "Boar": 2624962, + "CatThug": 1855674386, + "ChristmasElf": 819908552, + "ChristmasSnowman": 1146515225, + "Colossus_Ice": 1063279538, + "Cyclops": 1691813655, + "DragonBeta": 417003588, + "DragonFriendly": 69049013, + "EvilSnowman": 1579630926, + "FireElf": 443793687, + "Firecat": 2045525741, + "Frog": 2274918, + "FrostBeetle": 7692383, + "GhostBlue": 1097396892, + "GhostGreen": 882822629, + "GhostRed": 560510742, + "GhostYellow": 909974358, + "Ghoul": 82556199, + "GoatMonk": 486215564, + "GolemBrass": 1057388325, + "GolemClockwork": 1143380031, + "GolemSteel": 1660583674, + "GolemWood": 1426849876, + "HalloweenCat": 1042869199, + "Heckhound": 626736403, + "Helephant": 719065368, + "Human": 79806088, + "Hydra": 70785800, + "Imp": 84361, + "Krokomummy": 555755242, + "Kroktut": 1352354178, + "Leprechaun": 2106466410, + "LeprechaunPattyDay": 380507781, + "LightningBat": 228257682, + "Mannequin": 428442544, + "Minotaur": 949570680, + "Mount_Broom": 94637995, + "Mount_Cat": 1150940211, + "Mount_Dragon": 1565720148, + "Mount_Horse": 2054712767, + "Mount_PlayerWings": 589829552, + "Nikkos": 1563122418, + "NinjaPig": 607400740, + "Orthus": 1552590225, + "Piggle": 1897753328, + "Piggle_Valentine": 687697592, + "Piggle_ValentinePart2": 1760391091, + "Pixie": 74836240, + "RatMagician": 885542120, + "SalamanderFire": 48480175, + "SalamanderIce": 2011152164, + "SalamanderStorm": 600331072, + "Satyr": 84793363, + "Scarab": 2143810477, + "Sheep": 86220083, + "SkeletonArmored": 1791586239, + "SnowSerpent": 138621543, + "Spider": 1603064269, + "SpiderBlack": 559353179, + "SpiderBrown": 557941675, + "SpiderCrystal": 2119625297, + "SpiderGolem": 1632616514, + "Sprite": 1889156557, + "SpriteDark": 1888685518, + "Stormzilla": 252684095, + "SunBird": 1602211198, + "Transformation_ArmoredSkeleton": 1861349834, + "Transformation_CatThug": 1175387611, + "Transformation_Cat_Bandit": 1012395694, + "Transformation_ClockworkGolem": 601121214, + "Transformation_Cyclops": 620156297, + "Transformation_DarkFairy": 1206757203, + "Transformation_DraconianSorcerer": 1212016810, + "Transformation_Draconian": 450730089, + "Transformation_EarthColossus": 140119452, + "Transformation_EvilSnowman": 1497097122, + "Transformation_FatGobbler": 634003800, + "Transformation_FireElemental": 822233230, + "Transformation_FireElf": 46585468, + "Transformation_FireSalamander": 2118418114, + "Transformation_Gobbler_Skinny": 162365207, + "Transformation_GolemSteel": 1329184184, + "Transformation_Ice_Colossus": 430406408, + "Transformation_Krokomummy": 1644615769, + "Transformation_MagmaMan": 545064542, + "Transformation_Mander": 88998828, + "Transformation_NinjaPig": 1029132174, + "Transformation_Ninja_Pig_04": 7093548, + "Transformation_RatThug": 1175352795, + "Transformation_RavenMystic": 1443197359, + "Transformation_StormElemental": 637088511, + "Transformation_Treant": 1874998327, + "Transformation_WarPig": 691088645, + "Transformation_WolfScout": 263523463, + "Transformation_WolfWarrior": 6092463, + "Transformationn_SkeletonPirate": 1821341863, + "Treant": 1396597132, + "Troll": 82261620, + "Unicorn": 550546918, + "Unknown": 718677478, + "Wolverine": 528843083, + "Wraith": 1788506505, + "Wyrmkin": 379044612, + "Transformation_CyrusDrake": 94277831, + "PetEgg": 1973167984, + "GhostLady": 493415959, + "Banshee": 827805677, + "GobblerRed": 250135875, + "Ghoul_Gravedigger": 161812468, + "SkeletonWarrior": 734585814, + "BansheeBoss": 806445565, + "Seraph": 1792950125, + "CrabKing": 277875784, + "UndeadCaster": 1680689397, + "DragonFrontier": 1829438301, + "HeckhoundGhost": 872406464, + "Mount_Unicorn": 212699468, + "Jellyfish": 910724608, + "SeaDragon": 1194541306, + "Turtle": 1897184620, + "Starfish": 1447562471, + "SpinyFish": 162948281, + "Mount_Gryphon": 2110522960, + "Mount_Shark": 1170186623, + "Mount_Manta": 979931598, + "Mount_Seahorse": 1554833818, + "Mount_Seahorse_Tough": 1245859453, + "Mount_Koi": 1150937409, + "Mount_Lobster": 2025618875, + "Mount_Turtle": 1490849128, + "VenusFlyTrap": 1612039757, + "GDN_MED_BabyCarrots": 327334743, + "GDN_SM_BoomShroom": 31324632, + "GDN_SM_Dandelion": 2058674142, + "GDN_SM_Disparagus": 1732989489, + "GDN_MED_EvilSnowPeas": 747408607, + "GDN_SM_FicklePickle": 205381955, + "GDN_SM_HappyHolidaisy": 1736236340, + "GDN_MED_HelephantEars": 1803669659, + "GDN_MED_HoneySickle": 424149132, + "GDN_LG_NinjaFig": 847338104, + "GDN_LG_SnapDragon": 1076151689, + "GDN_SM_StinkWeed": 845383431, + "GDN_MED_TrumpetVine": 1922690264, + "GDN_MED_VenusFlyTrap": 1560899638, + "GDN_SM_Laughodil": 1278979588, + "GDN_LG_BreadFruitBush": 533042934, + "GDN_MED_PricklyBearCactus": 1236846986, + "GDN_MED_KingParsley": 110148182, + "LeprechaunPatriotic": 414730890, + "SeraphYuletide": 1325846853, + "DragonGhost": 1502126893, + "UnicornNightmare": 604358256, + "EvilSnowmanSandman": 1579432150, + "Colossus_Spirit": 422514215, + "Rock": 2393554, + "GDN_MED_GivingTree": 2047236132, + "Egg": 70853, + "Mount_Carpets": 1602744888, + "Kraken": 1737191829, + "Wyvern": 1727802601, + "Phoenix": 1765559002, + "Judgement": 562901781, + "ForestLord": 1390734923, + "Humongofrog": 1272123051, + "Scarecrow": 41441599, + "Mount_Ram": 77196599, + "BasketSnake": 1835657086, + "Samoorai": 522797493, + "Transformation_RavenWarrior": 701169336, + "PhoenixStorm": 1325268802, + "PhoenixDeath": 1281634042, + "GDN_LG_CouchPotatoes": 879742725, + "GDN_MED_KeyLimes": 811516024, + "Mount_BoneDragon": 1023618313, + "Mount_BigBoneDragon": 1124383680, + "Mount_FairyWings": 1904926612, + "Mount_DragonWings": 755225925, + "Mount_Pegasus": 1621244140, + "GDN_MED_BellPepper": 1710238687, + "GDN_MED_GrapesOfWrath": 1068787103, + "GDN_SM_TigerLily": 1899057048, + "WysteriaPiggle": 49173891, + "Mount_Wyvern": 1658410744, + "Mount_2P_Rhino": 1052779475, + "NightHawk": 358964390, + "Giraffe": 935214826, + "Mount_Hawk": 2070898895, + "Mount_HalloweenNightmare": 726136378, + "GobblerHalloween": 1482399836, + "Leopard": 1606863715, + "Skink": 76950867, + "Mount_Ostrich": 466111322, + "Mount_Crocagator": 1981222087, + "Transformation_Blacktusk-01": 401543565, + "Mount_Hippogriff": 2043817624, + "Transformation_Gorilla-01": 1555853240, + "Transformation_Gorilla-02": 1606184888, + "Mount_Raven": 94983735, + "Mount_Chrismoose": 1822495199, + "Mount_CandyCane": 1148551147, + "Ivy_League": 925492799, + "GDN_MED_Ivy_League": 1630077794, + "Mount_Kirin": 1168691825, + "GDN_SM_Moonflower": 2068754330, + "GDN_MED_BoonTree": 788055729, + "Snowball": 2046118016, + "Foo_Dog": 1549710807, + "ShenlongDragon": 932676736, + "Monkey": 1233866291, + "Wolfhound": 626884686, + "Redcap": 1540319086, + "Raven": 79941650, + "HollowKnight": 1107268274, + "Book": 2405826, + "GDN_MED_AngoraBunnyEars": 1547559854, + "GDN_MED_FortuneCookieTree": 786686214, + "GDN_MED_GooseTree": 809354938, + "GDN_SM_HoneyBeePlant": 1528880373, + "GDN_MED_BambooShoots": 1096708900, + "GDN_SM_Huckleberries": 1937475840, + "Rock_Moustache": 962221287, + "Efreet_Myth": 1834555522, + "Efreet": 1401700123, + "Mammoth": 1395147745, + "Triton": 1730466188, + "Gnome": 74954215, + "BoneDragon": 429245206, + "Basilisk": 1457899086, + "Chimera": 529027789, + "Transformation_GammaTemplate": 1337834518, + "Mount_Camel": 1168198963, + "Mount_RenaissanceWings": 1049782088, + "Bull_Mount": 1713506759, + "Mount_Owl": 1150938242, + "Mount_Alphyn": 487264165, + "Mount_Stag": 1150353823, + "Mount_Auroch": 509865325, + "Mount_Warg": 1150358072, + "StrangeBeast": 511334734, + "Efreet_Ice": 1820009122, + "Efreet_Storm": 1269986674, + "GDN_LG_AlligatorPear": 1293913372, + "Mount_2P_Treant": 928450863, + "Mount_2P_Dragon": 1431637933, + "Mount_Pogo_Stick_WC": 1462849298, + "Mount_Pogo_Stick_MB": 1349603090, + "GDN_LG_MeltingCheese": 1914589015, + "GDN_SM_FishOnAVine": 1734955358, + "GDN_LG_AngelOak": 1539539424, + "GDN_LG_MeltingCheese_Angel": 1254781264, + "SnowyOwl": 1682262138, + "Mount_3P_Hydra": 1207475250, + "WeaselMinstrel": 1541234616, + "MOUNT_Rickshaw": 938282973, + "Transformation_Sherlock-Bones": 509126601, + "Mount_Phoenix": 556355452, + "Toaddle": 597488187, + "Pantera": 528797696, + "WildfireTreant": 673362041, + "StoneTiger": 746336665, + "Blowfish": 1447737334, + "Smith": 78327187, + "FlyingCat": 1254472614, + "RamWarrior": 536916302, + "Ladybug": 1846384669, + "BurlapBoy": 607590898, + "DeerKnight": 560802130, + "Gargoyle": 1227701700, + "Chameleon": 596131510, + "Scorpion": 1462253104, + "GDN_SM_BoiledPeanuts": 544885684, + "GDN_SM_ClockFlower": 676513046, + "GDN_SM_DeadBeets": 650783482, + "GDN_MED_SnowApple": 1916648180, + "Eyecaramba_Violet": 1804780775, + "Eyecaramba_Green": 750346574, + "Eyecaramba_Orange": 687614854, + "Piggle_Grandfather": 131445665, + "Velociraptor": 1042311818, + "Babydactyl": 1180982194, + "Stegosaurus": 476811765, + "Mount_Pegasus_Spectral": 948250730, + "Mount_2P_Scarydactyl": 1808983335, + "Mount_2P_TRex": 1495851852, + "Therizinosaurus": 80337863, + "Runtosaurus": 476200406, + "FrilledLizard": 420993517, + "Mount_Ankylosaurus": 669692274, + "Mount_Triceratops": 1126950204, + "Mount_2P_Glider": 1630365881, + "Transformation_Thunderhorn": 1045262037, + "Transformation_Jaguar": 1080966062, + "Transformation_Pteranadon": 273836142, + "Transformation_ShadowWeaver": 255927111, + "Transformation_EagleWarrior": 1880471875, + "Mount_Falalalallama": 389890123, + "Mount_2P_WinterTreant": 1850265056, + "GDN_LG_MissileToe": 1767792974, + "GDN_MED_PointSetta": 647257205, + "Nutcracker2012": 1598217699, + "Coal2012": 1627852119, + "Mount_Sleigh": 1636615519, + "Mount_Sabertooth": 1613031507, + "Mount_MechanicalWings": 1014917438, + "PiranhaHunter": 686271163, + "Quetzal": 2020925822, + "Mount_Sloth": 1169387359, + "HollowKnightLife": 2114081886, + "BettaFish": 138088968, + "MummyCat": 62372925, + "TrojanHorse": 1725299194, + "WC_Storm_Possessed": 186960228, + "AV_Possessed": 1106693085, + "AZ_Possessed": 1106692701, + "CL_Possessed": 1106692255, + "KT_Possessed": 1106693015, + "MS_Possessed": 1106692977, + "WC_Possessed": 1106692459, + "Mount_2P_Whale": 448824263, + "Mount_2P_Chariot": 88035298, + "Mount_WarBoar": 1159836211, + "Mount_Palanquin": 47587550, + "BearCub": 672664722, + "Transformation_Minotaur": 1454233452, + "DragonGauntlet": 797645257, + "DeathUnicorn": 924144161, + "Flamingo": 1488424911, + "Mount_Gorilla": 1939919432, + "Mount_WarUnicorn": 1361393198, + "GargoyleMyth": 1819685060, + "TikiMan": 16098567, + "Siren": 79937811, + "GoldenRam": 410220227, + "Harpy": 96026632, + "SwordShield": 1668411785, + "ClockworkKnight": 1059948980, + "Mount_MechanicalEagle": 1720948645, + "Mount_Cloud": 1166233435, + "Mount_Surfboard": 1914250039, + "Mount_BetaDragon": 1023653721, + "Mount_BeeWings": 1387988401, + "Vampire": 524731385, + "FrankenBunny": 589797989, + "BumbleBee": 249592226, + "Mount_Dragonfly": 1028843656, + "BronzeGolem": 1320867859, + "TarantulaHawk": 1983939429, + "Mount_Grasshopper": 1852850928, + "FlyingSquirrel": 847551166, + "GDN_MED_Sunion": 1652707634, + "GDN_MED_SwordFern": 548761438, + "GDN_SM_SugarKhrystal": 267539461, + "GDN_SM_SawPalmetto": 1892888046, + "GDN_LG_FacePalm": 2050814140, + "GDN_LG_QueenCrapeMyrtle": 80378450, + "Transformation_ShadowTank": 1304943609, + "Transformation_ShadowHeal": 1254024185, + "Transformation_ShadowDPS": 87276537, + "Mount_Noelephant": 1383672248, + "SaintBernard": 572932242, + "ParkaFox": 2009808189, + "Goose": 75019719, + "Mount_Coconut": 791151432, + "CreepyBeetle": 345594179, + "BabyDragonfly": 1367084335, + "FennecFox": 41315063, + "PP_Leviathan": 833901526, + "PP_SunSerpent": 1062677009, + "PP_LordOfWinter": 960214698, + "PP_Medusa": 867812931, + "PP_Dryad": 147654656, + "PP_AvengingFossil": 315904647, + "PP_Sabertooth": 1799146677, + "Mount_Butterfly": 1283940943, + "Mount_Hare": 2070851023, + "Transformation_MorganthB": 197306990, + "Transformation_MorganthC": 197831278, + "Transformation_MorganthD": 200452718, + "BabyPegasus": 1215000859, + "ArcaneHelp": 1899247549, + "Mount_Vines": 98389624, + "Mount_ArcaneMinecart": 2001270930, + "Hobgoblin": 2133668461, + "Mount_2P_Rowboat": 237071469, + "ForestSpirit": 1178454602, + "Mount_SpiritWolf": 531991076, + "Otter": 84138671, + "OrigamiBird": 550984083, + "DinoSkeletal": 233277835, + "Mount_HarrowingsGreen": 1605746772, + "Mount_HarrowingsBlue": 477152436, + "Mount_HarrowingsPurple": 2092807554, + "RedPanda": 1744233845, + "Ibis": 2665577, + "Corgi": 78823875, + "Mount_Yak": 996545739, + "Mount_FlyingBalance": 436519643, + "Transformation_ShadowMalistaire": 1043814435, + "Transformation_DragonMalistaire": 841867699, + "Mount_Scarab": 1687658791, + "Transformation_MisterHound": 1973578844, + "Mount_BahHumbug": 55114077, + "Skates": 1568993965, + "Moose": 75019725, + "Mount_Gargoyle": 1456663874, + "GDN_MED_VenusFlyTrapEpic": 1594069606, + "Mount_PlayerWingsPink": 19403046, + "GDN_LG_AlligatorPearEpic": 1326804812, + "Pet_Armadillo": 825736847, + "Mount_JoustingDestrierDyeable": 1683448768, + "GDN_MED_VampireCarrots": 871596496, + "GDN_SM_WhiteTigerLilyEpic": 1703271434, + "GDN_LG_NinjaFigEpic": 938504823, + "GDN_LG_SnapDragonEpic": 2071674466, + "GDN_MED_HelephantEarsEpic": 719166107, + "GDN_MED_TrumpetVineEpic": 225854518, + "GDN_SM_DandelionEpic": 728637442, + "GDN_SM_HuckleberriesEpic": 1903258448, + "GDN_MED_SnowAppleEpic": 1231175967, + "GDN_SM_BoomShroomEpic": 981598771, + "GDN_MED_KingParsleyEpic": 2038371004, + "Mount_Raptor": 749695031, + "Pet_Toucan": 581477475, + "Pet_Squirrel": 969881395, + "Mount_WonkyDonkey": 1481657312, + "Mount_HawkPatriotic": 509149743, + "Pet_FrogAssistant": 1945041750, + "Mount_Cat2": 1151054899, + "Mount_Cat2BW": 1603515443, + "Pet_ArmadilloBW": 825733899, + "Pet_FrankieForearms": 1100195857, + "Mount_SolarSabre": 1281093703, + "MNT_MechOstrich": 258667969, + "MNT_BootsBalance": 1799191558, + "MNT_BootsDeath": 1034912971, + "MNT_BootsFire": 606061658, + "MNT_BootsIce": 2142643294, + "MNT_BootsLife": 773751898, + "MNT_BootsMyth": 144792486, + "MNT_BootsStorm": 1525245121, + "Pet_CorgiBirthday": 1951779369, + "OrigamiBirdBDay": 1909935955, + "Pet_FlyingBlackCat": 432111988, + "Mount_Narwhal": 449637834, + "Mount_NightOwl": 1648420845, + "Pet_Penguin": 137342907, + "MNT_PowerGemUnicorn": 411234062, + "Pet_CrystalButterfly": 512136094, + "Mount_BabyMammoth": 185831059, + "MNT_BabaYaga": 564874997, + "Pet_BabySeal": 657606984, + "Pet_BabyYeti": 635847496, + "Transformation_BallerinaBear": 1525333600, + "Mount_StagYuletide": 1508680687, + "Transformation_TitanMedium": 1700742736, + "Transformation_TitanLarge": 718614967, + "Pet_SirenIce": 849851564, + "Mount_FlyingDeath": 1717725588, + "Mount_FlyingFire": 1177216332, + "Mount_FlyingIce": 1238841184, + "Mount_FlyingLife": 433397684, + "Mount_FlyingMyth": 164983572, + "Mount_FlyingStorm": 375872049, + "Dragonling": 1730534849, + "Pet_EggChicken": 952873217, + "HeckhoundGhost_MAW": 893368960, + "Mount_WinterTrain": 751515281, + "Mount_RubberDucky": 1826548479, + "Pet_BansheeSpellwrit": 917979583, + "Pet_SamooraiSpellwrit": 370057597, + "Mount_UnicornAstral": 886914505, + "Guest_Boochbeard": 1958574095, + "Pet_MouseSister": 1267930350, + "Pet_MouseFather": 2010008339, + "Pet_VampireSquirrel": 250588691, + "Mount_CoffinCar": 1387606595, + "Mount_BabyElephant": 2026559639, + "Pet_RoadHog": 601156960, + "Mount_WolfGryphonWings": 543038283, + "MNT_ClockworkSteed": 891371132, + "Mount_Chopper": 1196683136, + "Pet_ButterflyLamb": 527214392, + "Pet_MouseMother": 2012687123, + "Pet_MouseBrother": 1174380856, + "Pet_Cherub": 769208559, + "GDN_SM_Jewel": 1104045832, + "MR_Death_Duncan_Grimwater": 1850289001, + "Mount_DesertRunner": 2049036229, + "Pet_MonkeyMirage": 418612892, + "Pet_ClockworkOwl": 1038482431, + "Pet_NinjaTurtle": 2024540686, + "Mount_Vines_Halloween": 82852149, + "Mount_SwarmBat": 1151836459, + "Mount_2P_NinjaDragon": 1239694057, + "Mount_Gobler": 1820615236, + "Mount_MaryleboneCar": 2027689685, + "JackOLantern": 1016361578, + "Transformation_DjinnCommonA_Balance": 996127128, + "Transformation_MedicineMode": 25960701, + "CactusHopper": 1956293007, + "Transformation_Mimic_ChestGold_A": 414145432, + "Mount_Ghoulture": 1067671195, + "Pet_Macaw": 1087278472, + "Pet_SandWorm": 653200803, + "Transformation_DromelDancer": 1071824116, + "Pet_Bunnies": 695874547, + "Mount_Snowboard": 1914380015, + "Transformation_DrommelDancer": 226294468, + "Mount_Carpet_New": 1618650322, + "Mount_BunnySleigh": 599915427, + "Helephant_Heart": 419161272, + "Mount_Snowboard_Holiday": 876339060, + "Transformation_GhostDog": 646575420, + "Transformation_PrinceGobblestone": 693826496, + "Transformation_Mithraya": 1240010601, + "Transformation_LuskaCharmbeak": 897469730, + "Transformation_YoungCyrusDrake": 15595663, + "Kookaburra": 1069759154, + "BorealisGolemPet": 797488492, + "FlyingEyePet": 505959833, + "StormCloudPet": 548463069, + "BullPet": 1993917801, + "OpossumPet": 284003652, + "GhoulturePet": 939920734, + "StormCloudPetB": 548463001, + "StormCloudPetC": 548463003, + "Guest_LordNightshade": 1221409981, + "BullPetB": 1993917561, + "BullPetC": 1993917553, + "BullPetD": 1993917513, + "Transformation_ShadowCrit": 1392195065, + "Mount_Pennyfarthing": 1551926344, + "Mount_RowboatPirate": 2079208803, + "Mount_IceCube": 1261861595, + "Guest_LostMaiden": 883675592, + "Guest_BoatswainMcGee": 1359750850, + "Guest_ChiefMateMcGurk": 329643845, + "Guest_DoomedBones": 2015643882, + "Guest_SpectreoftheBrocken": 266357448, + "Guest_DrownedKnight": 1100966093, + "Guest_TarntheDrowned": 329540205, + "Guest_DisloyalKnight": 1853240753, + "Guest_NamelessKnight": 1065677876, + "Guest_LambentFire": 489886605, + "Guest_LordoftheBrocken": 1662003371, + "Guest_StormCaiman": 1147500291, + "Guest_GrinningDeathMoon": 737595789, + "Guest_MoonSkullWight": 1720039490, + "Guest_HuemacSpearWreath": 1522021131, + "Guest_HowlingBanshee": 1340855338, + "Guest_Sea-Booter": 1818491983, + "Guest_DeadRover": 1009273257, + "Guest_CelestianRemnant": 1312268448, + "Guest_Shadow-WebConscript": 1500529411, + "Guest_Shadow-WebMercenary": 623672171, + "Guest_Shadow-WebWraith": 810956416, + "Guest_Shadow-WebHaunt": 500586883, + "Guest_CelestianPartisan": 633346892, + "Guest_CelestianDefender": 482102727, + "Guest_ThraleBonestriker": 1172972733, + "Guest_VorgenSoulbreaker": 1935693246, + "Guest_ServusBloodsword": 1703995647, + "Guest_QueenCalypso": 845803519, + "Guest_BlueBart": 77043390, + "Guest_KarolakNightspinner": 1008737316, + "Guest_ArachtusDuskweb": 1787750209, + "Guest_ZhalarStarcloud": 1453644105, + "Guest_NarallorNightborn": 1963363700, + "Guest_SelwynSkywatcher": 1413136893, + "Guest_OsseusNightreaver": 306827003, + "Guest_IrateBanshee": 865143109, + "Guest_FuriousHowler": 1607252558, + "Guest_CryingSpirit": 1559074820, + "Guest_UndeadDraconian": 169249571, + "Guest_ReanimatedDraconian": 247067807, + "Guest_GhastlySlave": 80127661, + "Guest_BoundSpecter": 369706568, + "Guest_NecroticHaunter": 1714841563, + "Guest_LoathsomeCreeper": 1087245229, + "Guest_FleshrotRetriever": 1925148031, + "Guest_BarbarianSpirit": 2112552732, + "Guest_BeghastionCrowcaller": 586628832, + "Guest_BeghastionFieldburner": 1650751959, + "Guest_BoneWarrior": 76802026, + "Guest_FleshlessSentry": 708431820, + "Guest_PirateRavager": 945157059, + "Guest_RottenScallywag": 974666855, + "Guest_ArmoredBonewalker": 1444568072, + "Guest_UndeadWizard": 1622435563, + "Guest_SoulSearcher": 2094392941, + "Guest_DecayingBlackguard": 412324062, + "Guest_FoulReaper": 919877614, + "Guest_NightShadow": 1675932226, + "Guest_MotleyCrew": 653779218, + "Guest_OrinGrimcaster": 472649066, + "Guest_GhostofSylviaDrake": 218332449, + "Guest_VikaMarkmaker": 1145181168, + "Guest_VasekAshweaver": 1001434369, + "Guest_FireWraith": 1027720368, + "Guest_HungrySoul": 1722435576, + "Guest_FrostBones": 456145606, + "Guest_SnowSkull": 835837850, + "Guest_WinterSkull": 1556601065, + "Guest_LothinDoombringer": 860995070, + "Guest_MimirWinterbane": 1111898070, + "Guest_KulgrimSoulsunder": 278037985, + "Guest_HitojiniDeathcaster": 1144499043, + "Guest_GaikotsuSkeleton": 1113949902, + "Guest_PhantomAce": 1917639347, + "Guest_PhantomGlider": 849918336, + "Guest_Krokomummy": 857773886, + "Guest_NiriniAncientGuard": 359313880, + "Guest_NiriniFireSpirit": 1863811476, + "Guest_VaultHaunter": 197723476, + "Guest_VigilantDefender": 171276829, + "Guest_WanderingAhnicSpirit": 1702865088, + "Guest_ForgottenDjeseritSoul": 1170568256, + "Guest_KaranahnDeathfeeder": 1612857711, + "Guest_ShamblingAhnic": 1579129677, + "Guest_RisenDjeserit": 287855500, + "Guest_KaranahnMortifier": 874288111, + "Guest_DjeseritDweller": 2058423665, + "Guest_AhnicStrider": 1776992302, + "Guest_GuardianoftheFang": 1816795524, + "Guest_DefenderoftheFang": 354353604, + "Guest_ProtectoroftheFang": 1290191037, + "Guest_SouloftheCharmed": 422890577, + "Guest_KaranahnKeeper": 77581557, + "Guest_NiriniIntimidator": 677205957, + "Guest_CondemnedSoldier": 449152244, + "Guest_NimahtheWicked": 1298248873, + "Guest_AkoriNirini": 1123159753, + "Guest_SoulScavenger": 892852198, + "Guest_KeeperoftheFang": 1676773499, + "Guest_ItennuSokkwi": 699159408, + "Guest_Tempestra": 334938435, + "Guest_QueenIrisiDjeserit": 1861434100, + "Guest_TheBonekeeper": 1302503449, + "Guest_CryptScavenger": 1893795791, + "Guest_Soulsapper": 1699756010, + "Guest_KingUroAhnic": 1788825731, + "Guest_KingShemetDjeserit": 1350067043, + "Guest_UnholyWraith": 1871146013, + "Guest_PikeSpiritcrusher": 498715531, + "Guest_SpellwritScreamer": 801626733, + "Guest_SpellwritRonin": 1671439174, + "Guest_Shrieker": 805966229, + "Guest_GravePhantom": 731622936, + "Guest_NightmareSpirit": 230709057, + "Guest_VengefulCreeper": 1100197884, + "Guest_TombRoamer": 1277825068, + "Guest_ShieldSkeleton": 1634270152, + "Guest_AgonyWraith": 30384496, + "Guest_IcyGhost": 768353592, + "Guest_Half-wittedSkeleton": 647996362, + "Guest_LazyHenchman": 1329554426, + "Guest_TiredFighter": 210248632, + "Guest_Screecher": 469007005, + "Guest_SeethingWraith": 664913100, + "Guest_ColdConfusion": 1304943934, + "Guest_OssuaryConscript": 1017667150, + "Guest_Ghulture": 1330558655, + "Guest_BodyGuard": 1048581801, + "Guest_SpectralGuardian": 422805602, + "Guest_VaultConscript": 1388398065, + "Guest_FootPatrol": 1692393321, + "Guest_ArmedGuard": 2045920536, + "Guest_Chilly": 1764665905, + "Guest_Achey": 973370519, + "Guest_Sneezy": 1769440773, + "Guest_Cough": 1170200073, + "Guest_Shadowbones": 1316133167, + "Guest_ForgottenConscript": 1466348281, + "Guest_BarracksGuardian": 236603440, + "Guest_CryptConscript": 314755436, + "Guest_DurvishSeeker": 1825622267, + "Guest_MedicineMode": 167015574, + "Guest_Myriarch2": 593881680, + "Guest_Myriarch3": 593881616, + "Guest_MyriarchEphialtes": 773531895, + "Guest_MotherGhulture": 1585201915, + "Guest_CaptainCosrow": 727107332, + "Guest_VizierRafaj": 214040637, + "Guest_DarkmoorSerf": 1522169114, + "Guest_DarkmoorSquire": 1822567109, + "Guest_ScarletWampyr": 1683954247, + "Guest_DraconianRevenant": 741497298, + "Guest_DraconianEidolon": 107733297, + "Guest_AnguishedWraith": 1078602022, + "Guest_DraconianPyromancer": 729577007, + "Guest_DraconianThaumaturge": 189734361, + "Guest_DraconianDiviner": 472633746, + "Guest_DraconianConjurer": 1824962835, + "Guest_DraconianTheurgist": 1828628416, + "Guest_DraconianNecromancer": 175364324, + "Guest_DraconianSorcerer": 1262893339, + "Guest_SirBlackwater": 366308464, + "Guest_AkhtangWormCrawl": 1589032404, + "Guest_SpiritofDarkmoor": 579455915, + "Guest_ShanevonShane": 2096517522, + "Guest_YevgenyNightCreeper": 1535282881, + "Guest_MalistairetheUndying": 824508513, + "Guest_Bunferatu": 1015806005, + "Guest_CountBelaBlackSleep": 761647679, + "Guest_DeathSoldier": 1715141574, + "Guest_SorrowWhisperer": 556532003, + "Guest_GriefSpectre": 1425488559, + "Guest_HowlingShade": 631460247, + "Guest_WalkingDead": 318527090, + "Guest_Akuji": 977635799, + "Guest_TorturedKakedaSoul": 1716874833, + "Guest_KakedaSpiritSlave": 1814699344, + "Guest_DishonoredSamoorai": 320085744, + "Guest_CursedRonin": 1204095686, + "Guest_TomugawatheEvil": 166125424, + "Guest_OyotomitheDefiler": 1672714483, + "Guest_Fushiko": 801492770, + "Guest_BrokenLandGuardian": 294671991, + "Guest_ShatteredSkyGuardian": 746681463, + "Guest_SunderedSeamGuardian": 1439618652, + "Guest_BrokenLandSpirit": 860105895, + "Guest_ShatteredSkySpirit": 2104112380, + "Guest_SunderedSeamSpirit": 69572311, + "Guest_LostSoul": 204361577, + "Guest_RottingFodder": 308249734, + "Guest_HauntedMinion": 689597338, + "Guest_FieldGuard": 1175228991, + "Guest_SkeletalWarrior": 778393993, + "Guest_SkeletalPirate": 1476730220, + "Guest_WanderingSpecter": 126188449, + "Guest_LivingScarecrow": 1442943145, + "Guest_FrostPhantom": 1809776664, + "Guest_FireShrieker": 173332719, + "Guest_CryptCrawler": 2118799272, + "Guest_ViridianSpecter": 383149977, + "Guest_ArgentClatterer": 525414714, + "Guest_SwimmingSpecter": 1494025094, + "Guest_ScarletScreamer": 1689589811, + "Guest_BoneDigger": 1351421123, + "Guest_HowlingGhost": 664019391, + "Guest_SkeletalSoldier": 750463116, + "Guest_MaidenofHate": 444442868, + "Guest_SkeletalRetainer": 1409032775, + "Guest_SoulHunter": 1900267551, + "Guest_MidnightShuffler": 1991052065, + "Guest_PlaguedSoul": 419071561, + "Guest_HauntingBanshee": 345837052, + "Guest_SimontheSayer": 1352807820, + "Guest_TheHarvestLord": 1923575206, + "Guest_LadyBlackhope": 1403431623, + "Guest_SergeantSkullsplitter": 898737831, + "Guest_Foulgaze": 2063419769, + "Guest_Wormguts": 788697519, + "Guest_Rattlebones": 125602919, + "Guest_Paulson": 1112716921, + "Guest_Grubb": 1167554274, + "Guest_Norton": 581021964, + "Guest_NightStalker": 1447653309, + "Guest_AddereTimeo": 1491420030, + "Guest_TheReaper": 1526369733, + "Guest_AngrusHollowsoul": 1427862805, + "Guest_OrrickNightglider": 951078615, + "Guest_SteelSentinel": 885250894, + "Guest_Shadow-WebSoldier": 2014925398, + "Guest_LostCeleste": 1725301830, + "Guest_CapnNigelSkullcrack": 1665439970, + "Guest_HaulAwayJoe": 1075985331, + "Guest_OldMaui": 15300840, + "Guest_LordAgue": 140791419, + "Guest_MelweenaSmite": 432188189, + "Guest_HalloweenTrickster": 2043736417, + "Guest_PumpkinHead": 1098332105, + "Guest_BaronMordecai": 817370918, + "Guest_KaimaniteMummy": 1332671420, + "Guest_VeggieRevanant": 928504192, + "Guest_BloodBat": 76467389, + "Guest_DeadBeets": 157829578, + "Guest_Desparagus": 1130644076, + "Guest_MeanestFly-Trap": 1652898868, + "Guest_Nosferabbit": 1021159436, + "Guest_ThrallofSothmekhet": 330780177, + "Guest_VileApparition": 426627869, + "Guest_SoulServant": 1183110886, + "Guest_SoulKeeper": 917518313, + "Guest_AdmiralBontau": 2032168402, + "Guest_DeathWhisperer": 3814952, + "Mount_RollerBlades": 111369373, + "Guest_BaneWyrm": 147033576, + "Guest_BlackDragon": 939469656, + "Guest_DragonSpawn": 1829803517, + "Guest_Fire-SpitterSpawn": 616624489, + "Guest_CaoranachtheFire-Spitter": 323513000, + "Guest_Jabberwock": 1552492834, + "Guest_CatalantheLightningLizard": 1155778705, + "Guest_WhiteDragon": 2009449331, + "Guest_WinterWyrm": 478925069, + "Guest_WyrmStatue": 2119216210, + "Guest_AlgidWyrm": 1309546482, + "Guest_BruleeSucre": 390936202, + "Guest_HebitohoWyrmling": 1682026810, + "Guest_Shadowwock": 505539184, + "Guest_EirikurAxebreaker": 1361453552, + "Guest_WarWyrm": 1124740742, + "Guest_StrayFireflier": 610979811, + "Guest_BurningFlamewing": 2041225130, + "Guest_FeralLavaling": 371483057, + "Guest_SplinterWing": 923421333, + "Guest_ChanticoBlueAir": 1572441903, + "Guest_CopperWingGuard": 302783602, + "Guest_ObsidianBeak": 2016227452, + "Guest_CaquixNineShadows": 2070101060, + "Guest_LustrousTlalocan": 1201030473, + "Guest_SeedThief": 263211181, + "Guest_PopZotzUnluckyDay": 1416773489, + "Guest_NezathePoet": 1905861376, + "Guest_MazenStingerBee": 1642023393, + "Guest_ImperialJusticePayne": 1285679745, + "Guest_AssistantWardenPorfiry": 22099059, + "Guest_MarshalKamensky": 524669730, + "Guest_WardenVissarovich": 882556823, + "Guest_GulagGuard": 100744159, + "Guest_CaptainKravchuck": 690830770, + "Guest_ImperialGuard": 346803640, + "Guest_IronPaw": 1797329688, + "Guest_TundarianEnforcer": 134256836, + "Guest_Ivan": 996220221, + "Guest_ColonelOrlov": 1381254189, + "Guest_IronPawIntakeCaptain": 2099184835, + "Guest_SolitaryWarden": 1503529566, + "Guest_CaptainZubkov": 793725366, + "Guest_SergeantBobrik": 722182485, + "Guest_WailingWraith": 946976407, + "EggChick": 1452316301, + "BunnyMallow": 518233330, + "Guest_ThunderHornZombie": 1007920040, + "Guest_SmokingMirrorZombie": 340971759, + "Guest_ShamblingZombie": 1920485146, + "Guest_MoonSkullZombie": 809249764, + "Guest_DeathlessStormHorn": 812397213, + "Guest_MozarTurtleHunter": 561749043, + "Guest_GuillermoShatterer": 499565054, + "Guest_XiuhcoatlBarbedTooth": 1719245305, + "Guest_AzcalFireAnt": 1281366337, + "Guest_TlotzinMoonThief": 407285761, + "Guest_PocaCruelStar": 1117353085, + "Guest_ThunderHornGhoul": 597878999, + "Guest_TezomocStoneSinger": 733511940, + "Guest_EzhuaBadTaste": 632779219, + "Guest_UacalxochitlBloodEye": 1614856226, + "Guest_WanadiBlackSky": 349829749, + "Guest_ElMarrow": 483880636, + "Guest_GrimCalaca": 1534029144, + "Guest_XipeFlayedOne": 1343577398, + "Guest_MotecumaDeathMask": 1782393717, + "Guest_EkeChuah": 13416770, + "Guest_AnacaonaBlackSnake": 1543344897, + "Guest_SmokingMirrorWight": 776452983, + "Guest_Tolkemec": 217428080, + "Mount_Fox": 77199428, + "PP_OwlProtege": 268847192, + "Mount_SharkSki": 331374103, + "PP_Dolphin": 1662291612, + "Mount_CastSymbol_D": 1134428045, + "Mount_CastSymbol_E": 1136525197, + "Mount_CastSymbol_F": 1138622349, + "Mount_CastSymbol_G": 1140719501, + "Mount_CastSymbol_A": 1128136589, + "Mount_CastSymbol_B": 1130233741, + "Mount_CastSymbol_C": 1132330893, + "Guest_LionSpectralGuardian": 1791543691, + "Guest_KillmareSpiritwalker": 1818928165, + "Guest_ZebraSpectralGuardian": 815933596, + "Guest_GorillaSpectralGuardian": 1635182119, + "Guest_IklawGhostWarrior": 373465545, + "Guest_BwanaShadowriver": 1307628747, + "Guest_ElephantSpectralGuardian": 1579402208, + "Guest_ZangaZebu": 1218173119, + "Guest_GrumishGreataxe": 486953385, + "PP_GlowFairy_A": 2028856748, + "Guest_RestlessSoldier": 1142701763, + "Guest_WanderingWizard": 209518514, + "Guest_ColonelIvanenko": 399169035, + "Guest_DetollitheDestroyer": 655767295, + "Guest_Jawniak": 1791298433, + "Guest_Tajniak": 356182394, + "Guest_Ygor": 996316081, + "Guest_KyaniteLancer": 2136703656, + "Guest_VestaShadowmark": 1846747836, + "Guest_ZoraSteelwielder": 1186470644, + "Guest_AndorBristleback": 1949884743, + "Guest_GalliumPaladin": 1812340868, + "Guest_GalliumFootman": 1295203112, + "Guest_GalliumShardtrooper": 1210699836, + "Guest_GalliumJuggernaut": 3527584, + "Guest_VladimirDarkflame": 1575322237, + "Guest_KyaniteLieutenant": 561528977, + "Guest_DrusillaMorningbane": 155837810, + "Guest_KyaniteValkyrie": 53242136, + "Transformation_20Q_SherlockBones": 1112674320, + "Guest_DevoraShadowcrown": 1813459117, + "Guest_YoualaNightDrinker": 881289828, + "Guest_Pendragon": 715669945, + "Guest_CelestianRevenant": 515730327, + "Guest_SoullessServant": 1505662730, + "Guest_SpiritServant": 104517373, + "Guest_SoulSerf": 1188214406, + "Guest_ServileSoul": 871844607, + "Guest_SkeletalCorsair": 239414410, + "Guest_RottedFodder": 1301186193, + "Guest_ScarletScreecher": 600457915, + "PP_FrankBunnyBride_A": 974707030, + "Guest_BastillaGravewynd": 2100015237, + "Guest_VilaraMoonwraith": 2067986693, + "Guest_YngvarSharptooth": 1783361972, + "Guest_TroubledWarrior": 1569033392, + "Guest_VeggieRevanant2": 928503904, + "Guest_VeggieRevanant3": 928503888, + "Guest_VeggieRevanant4": 928503872, + "Guest_VeggieRevanant5": 928503856, + "Guest_AncientQhatWarrior": 1564521104, + "Guest_EmperorPaleolo": 2079384347, + "Guest_SpiritofIntolerance": 1627658048, + "Guest_SpiritofInquiry": 1320544891, + "Guest_FirstGuardian": 1982227776, + "Guest_FallenMerc": 225926286, + "Guest_NightShadow2": 1638183490, + "Guest_NightShadow3": 1636086338, + "Guest_NightShadow2-2": 1436856907, + "Guest_NightShadow3-2": 1434759755, + "Guest_NightShadow4-2": 1432662603, + "Guest_NightShadow5-2": 1430565451, + "Guest_NightShadow6-2": 1428468299, + "Guest_NightShadow7-2": 1426371147, + "Guest_FirstScythe": 738854032, + "Guest_GreyMantisCaptain": 860186057, + "Guest_GreyMantisHunter": 1239274377, + "Guest_Atlach-Leng": 836136649, + "Guest_PetrovGloomstrider": 2045783873, + "Guest_NauyotolDownIntheHole": 1134251106, + "Guest_SandorSpearcaller": 1351072377, + "Guest_MavraFlamewing": 1477685600, + "Guest_Scaldling": 208751819, + "Guest_WoebegoneWraith": 1166488705, + "Guest_BorisBlackrock": 1365399915, + "Guest_KatiaFirewinter": 521255834, + "Guest_ValerikBrightsword": 1244055782, + "Guest_RurikFlamesoul": 1962726850, + "Guest_IonaPyrelance": 722266491, + "Guest_DarkPoltergeist": 818162178, + "Guest_TheCollector": 1772287612, + "Guest_ViktorSnowcrusher": 1028387381, + "Guest_ValeskaRedwind": 19316351, + "Guest_ScarrikGallowgaunt": 105397333, + "Guest_Neberyx": 1453883041, + "Guest_AsrikWidebelt": 401936422, + "Guest_GothricHonorbound": 750072340, + "Guest_HalfangBristlecrown": 618779562, + "Guest_OsvudFleetpaw": 1023466459, + "PP_PufferFish_A": 1578606029, + "Guest_OzelUnderwaterCat": 1033669302, + "PP_BabyGreenMan_A": 910025246, + "PP_SchoolTurtle_A": 1012620678, + "PP_DarkBalloon_A": 1229308566, + "MT_JetsamCopter": 92127678, + "Mount_4P_DarkClownCar": 420246262, + "MNT_BalloonsBunch": 2000358474, + "Guest_TempleGuardian": 632574316, + "Guest_TemplePhantom": 1701097840, + "Guest_MahonStarsearcher": 1549093341, + "Guest_LostKnight": 858980994, + "Guest_AnguishedWoodman": 174606918, + "Guest_TormentedTreant": 294050331, + "Guest_WildfireTreant": 1902129818, + "Guest_BlightedYaxche": 679097088, + "Guest_Junglethorn": 1734561424, + "Guest_Tangleroot": 2027061721, + "Guest_BlightedFreerooter": 1109803061, + "Guest_Winterbranch": 1170787806, + "Guest_DecayingBogwalker": 1338670789, + "Guest_BrownwoodTormentor": 1655181754, + "Guest_Wildroot": 1839747182, + "Guest_Ironsplinter": 668295157, + "Guest_Frostbranch": 75974631, + "Guest_KyoukonteiTreant": 474446232, + "Guest_BrokenStumps": 414724364, + "Guest_WordlessWoodsmen": 1813881830, + "Guest_DesiccatedTreebeard": 1826942903, + "Guest_ShadowoftheLand": 1612385317, + "Guest_TreeRoot": 1406633546, + "Guest_BefouledWoodwalker": 1517919498, + "Guest_ConfusedForestWarrior": 750805985, + "Guest_CrazedForestSpirit": 1007960507, + "Guest_Oakheart": 1158293719, + "Guest_SnowTreant": 1028620035, + "Guest_Snowbeard": 1997921701, + "Guest_BarkskinTreant": 2143957812, + "Guest_RazorleafTreant": 2133159197, + "Guest_CarrionFlowerMan": 1120698936, + "Guest_Kurokage": 355651925, + "Guest_LacombeStrawHouse": 568809873, + "Guest_BerkshireStickHouse": 1932133405, + "Guest_TamworthBrickHouse": 894027634, + "Guest_RustyTinderSpark": 1237916230, + "Guest_CoraWinterBranch": 1901918989, + "Guest_GrambleGoldRook": 1986988546, + "Guest_PiperStormTree": 1109520133, + "Guest_Hanadzura": 124838500, + "Guest_Kuchisaki": 2084188681, + "Guest_Kaizoku": 807430784, + "Guest_JaxonLastRites": 1653711119, + "Guest_SeijunKiller": 657647155, + "Guest_ZarichiTarakata": 1129212566, + "Guest_BladelessRonin": 1577395797, + "Guest_SanzokuOutlaw": 1682888807, + "Guest_SanzokuBandit": 1766198653, + "Guest_KakedaPainbringer": 1260119278, + "Guest_KakedaStalker": 367458449, + "Guest_KakedaShadow": 1604499626, + "Guest_KakedaSoulcrusher": 1961168112, + "Guest_ImitsuPlaguemaster": 1361539025, + "Guest_ImitsuDefouler": 1299791045, + "Guest_ImitsuPunisher": 234819300, + "Guest_StudentofKhai": 249757647, + "Guest_OtomoBattlemage": 918160114, + "Guest_OtomoCourier": 1373253378, + "Guest_OtomoSupplyRunner": 1580070577, + "Guest_OtomoScout": 1814051082, + "Guest_OtomoWrestler": 1053571230, + "Guest_OtomoFury": 111319603, + "Guest_Hyottoko": 307080225, + "Guest_Usunoki": 1881339626, + "Guest_Kagemoosha": 1842766119, + "Guest_UdoJin-e": 850816224, + "Guest_TakedaKanryu": 536087422, + "Guest_Tamauji": 818613882, + "Guest_Jikiru": 794167355, + "Guest_Nomoonaga": 849534658, + "Guest_Aiuchi": 515942855, + "Guest_Kurogaso": 1426248002, + "Guest_Ideyoshi": 1814038213, + "Guest_Koto": 1151260427, + "Guest_Usegi": 977549586, + "Guest_Kanago": 1644367227, + "Guest_Kyuto": 1168225979, + "Guest_Haru": 2070048389, + "Guest_Ashikata": 1523446928, + "Guest_Katsumori": 1823914597, + "Guest_Hingen": 1567896261, + "Guest_Yakedo": 502298497, + "Guest_Do-Daga": 1239945714, + "Guest_Maito": 979260804, + "Guest_TonkatsuThug": 1758658397, + "Guest_GobbloreanGuard": 1286210991, + "Guest_BabblingMeints": 413418139, + "Guest_PrinceGobblestone": 1813171676, + "Guest_GobblerMuncher": 1517159487, + "Guest_GobblerGorger": 130736772, + "Guest_GobblerScouter": 1509427587, + "Guest_GobblerGlutton": 1912199781, + "Guest_GobblerScavenger": 136586791, + "Guest_BaronGreebly": 1028182200, + "Guest_BaronRotunda": 457132907, + "PP_DeathMimic": 1811942047, + "Guest_GreenMan": 1126663802, + "Guest_ForestGrump": 1602350320, + "Guest_ErvintheBarbarian": 1671762776, + "Guest_RazortuskWarrior": 1109994549, + "Guest_RazortuskBrawler": 732265321, + "Guest_SplithoofRager": 1922134329, + "Guest_TuskedRaider": 1920114147, + "Guest_SviniBeserker": 1146317608, + "Guest_SviniReaver": 216717251, + "Guest_Shattertusk": 1191456730, + "Guest_SplithoofBarbarian": 296671728, + "Guest_Bloodseeker": 2086598239, + "Guest_Scarsnout": 1831766077, + "Guest_MasterTonkatsu": 1783298894, + "Guest_Grisletusk": 657393295, + "Guest_SplithoofBloodguard": 488382274, + "Guest_BristlehideRaider": 237078958, + "Guest_Gullin": 1656401882, + "Guest_ForestNymph": 812055814, + "Guest_SassafrasMan": 1327049788, + "Guest_RandolfSpellshine": 108808620, + "Guest_BleysFlamerender": 434070106, + "Transformation_Khan": 1398327634, + "Transformation_TheBat": 1675113521, + "MNT_DireWolf": 845578449, + "MNT_YuleMule": 1976182058, + "MNT_LightBlades": 829118450, + "MNT_FlyingSquid": 1573132252, + "PP_Globulin": 467801224, + "PP_BeastBaby": 1807874692, + "PP_SaniBot": 670845902, + "Mount_SwarmSand": 1277669407, + "Guest_Nodnarb": 211478288, + "Guest_LordBramble": 1118781162, + "Guest_Yogash": 506264561, + "Guest_Marcio": 499428996, + "Guest_Procyon": 1115376865, + "Guest_Thunderfin": 2029218563, + "Guest_ArkynMoonblade": 1152775206, + "Guest_CreeCurdWright": 1714953095, + "Guest_DeerMouseRevenant": 315064435, + "Guest_ElanaDarksun": 837982094, + "Guest_KingAlricFateSailor": 1934591130, + "Guest_LaughingCalaca": 984492527, + "Guest_WraithKnight": 620484548, + "Guest_FieryEchoofApep": 484636593, + "Guest_FrostyEchoofApep": 171933154, + "Guest_FalseEchoofApep": 479387377, + "Guest_ChargedEchoofApep": 1229406800, + "Guest_ShrowdengersQhat": 101563303, + "Guest_Scrollkeeper": 643219293, + "Guest_TerrorHound": 753341570, + "Guest_CondemnedMander": 445370758, + "Mnt_SnowStorm": 1491572670, + "Mount_ChimneySweeper": 378571534, + "MNT_PineappleCandyCane": 1630795796, + "Guest_TyphonDustwind": 740849673, + "MNT_StickHorse": 216654744, + "MimicTemplate": 1461219184, + "MNT_Ball_N_Chain": 289720920, + "PP_PeaceDove_A": 1785119671, + "Mount_Gyrocycle": 1495008048, + "PP_BattleMageDragon_A": 1864696711, + "MNT_BattleBeast": 1304449286, + "MNT_SmokeTrails": 387873030, + "Mount_FriendshipHare": 677127330, + "MNT_ButterflySwarm": 383602683, + "PP_EggChick_B": 1959154042, + "MNT_Unicorn": 562210585, + "PP_StuffedUnicorn": 1731641773, + "MNT_ParadeTruck": 2026348978, + "MNT_ParadeTruckXmas": 1017864627, + "MNT_AutumnLeafSwarm": 1540002279, + "PP_GingerbreadMan": 1796172229, + "PP_DecadeDragon": 1819398630, + "MNT_StageShip": 829852992, + "PP_DramaLlama": 255896529, + "PP_HallMinotaur_A": 1492017563, + "Guest_MacDeath": 1526226705, + "Guest_MacDeathUnderstudy": 1731752647, + "Guest_MacLifeUnderstudy": 257466641, + "Guest_MacStormUnderstudy": 8295117, + "MNT_Pantera": 1135198, + "MNT_StagLight": 1908778048, + "MNT_GiantSpider": 1247185021, + "MNT_StagEvil": 872303931, + "PP_BaskHound": 1093866594, + "PP_Marionette": 1688299938, + "PP_Marionette_B": 1688297824, + "Guest_Izft": 996301405, + "Guest_SapotisMinion": 1625665891, + "Guest_CrazedSlave": 1473233468, + "Guest_CharmedSlave": 803043667, + "Guest_EnsorcelledSlave": 40920285, + "Guest_HallServant": 2038116460, + "Guest_SiathePerceiver": 1235571913, + "Guest_Kiwu": 1151177787, + "Guest_NightImp": 1051843424, + "Guest_EvilTrickster": 1035477123, + "Guest_DeepWoodsImp": 1502444054, + "Guest_ForestPest": 802235713, + "Guest_TaintedForestImp": 1030343985, + "Guest_Youkai": 518367729, + "Guest_CarthaginianElephantWarrior": 776293919, + "Guest_IdrisBeast-Taker": 106759521, + "Guest_MikaSkarka": 237956516, + "Guest_Belloq": 757247833, + "Guest_GurtokPiercer": 549466122, + "Guest_GurtokFirebender": 817966523, + "Guest_GurtokDemon": 544070162, + "Guest_GeneralFiretusk": 2073037770, + "Guest_GurtokBarrierDemon": 44657563, + "Guest_BlacktuskShaman": 1009070925, + "Guest_FireDemon": 158367196, + "Guest_DeathOni": 1916642000, + "Guest_JadeOni": 1289517185, + "Guest_PlagueOni": 1464586443, + "Guest_WarOni": 1630196094, + "Guest_BrokenLandMammoth": 1587008312, + "Guest_SunderedSeamMammoth": 1272698721, + "Guest_BullyMammoth": 170705927, + "Guest_Bullhemoth": 146998717, + "Guest_Kogasha": 1909654543, + "Guest_MusuthBerserker": 1741298129, + "Guest_BlackTuskCultist": 1771575961, + "Guest_AksilBlacktrunk": 1253596409, + "Guest_LongdreamerShaman": 1521283133, + "Guest_MuratGreyeyes": 1296814314, + "Guest_ElephantSoldier": 1443670145, + "Guest_DarajaniGuard": 1597288495, + "Guest_Loremaster": 1792470809, + "Guest_Pork": 2069999347, + "Guest_Beans": 97706585, + "MNT_Ox": 1292937747, + "PP_PropellerSquirrel": 1657443894, + "Guest_RasikPridefall": 97921485, + "Guest_AmedrasLightstep": 1818417025, + "MNT_SmokeTrails_Balance": 1358150715, + "MNT_SmokeTrails_Fire": 702971609, + "MNT_SmokeTrails_Ice": 190218501, + "MNT_SmokeTrails_Life": 2045542105, + "MNT_SmokeTrails_Myth": 1276281121, + "MNT_SmokeTrails_Storm": 564954622, + "Guest_Bellosh": 1407013027, + "Guest_AcampiReedfist": 2076527733, + "Guest_AgnettaBroadblade": 14864960, + "Guest_FrostheartRaider": 1574787221, + "Guest_JordaSwordbearer": 1627071850, + "Guest_KasaiBaku": 1153107369, + "Guest_ZoraimeiHelephant": 1002482606, + "Guest_ConscriptedMander": 43811125, + "Firecat_Decade": 409516955, + "MNT_BatGlider": 2086258491, + "Transformation_PlayerHomework": 673389670, + "Transformation_PlayerAttendance": 422287307, + "Transformation_PlayerLecture": 2035625874, + "Transformation_PlayerPopQuiz": 483367038, + "MNT_GingerbreadHorse": 1369242781, + "MNT_NimbariChariot": 1251740392, + "PP_NimbariDog": 1235126828, + "Transformation_PlayerGrandma": 1128332272, + "Transformation_PlayerScionA": 33862367, + "PP_Mushroom": 1568942158, + "MNT_Scooter": 1148167046, + "MNT_Scooter_B": 2079302532, + "MNT_Scooter_C": 1810867076, + "MNT_Scooter_D": 468689796, + "MNT_IceCycle": 415797788, + "Transformation_PlayerScionA02": 33921759, + "Guest_FearoftheFuture": 947210229, + "Guest_FearofGremlins": 405857384, + "Guest_RootGuardian": 922940845, + "Guest_VineThrasher": 172546427, + "Guest_BlightWalker": 1438155154, + "Guest_BriarScourge": 615681851, + "Guest_DreamJabberwock": 907754098, + "Guest_DreamBelloq": 990352002, + "Guest_Voltergeist": 1558128068, + "Guest_SpecialBranch": 1927849418, + "Guest_MutantBriar": 805892802, + "Guest_FeralBriar": 883790223, + "Guest_MaizeMonster": 688905764, + "Guest_DreamShadowwock": 1432458248, + "Mount_Heartboard": 1421972759, + "PP_ChocoBunny": 324797859, + "Mount-PogoFlower": 906659501, + "MNT_AethyrCloud": 1586061078, + "MNT_Fangle": 7846854, + "Guest_StarfallSpider": 1177620831, + "Guest_AshSpider": 1588502553, + "Guest_CorruptedWeaver": 38937211, + "Guest_CrystalCrawler": 1197980149, + "Guest_ShimmerWidow": 1300740128, + "Guest_FacetedSpikespinner": 1939719331, + "Guest_CrystallineQueen": 1999282256, + "Guest_AncientCrystalweaver": 1409608801, + "Guest_FangtoothLavaspinner": 1538042104, + "Guest_VenomousHeatseeker": 1234682482, + "Guest_FireweaveRockbiter": 300743778, + "Guest_MonkeySpider": 754090007, + "Guest_CryptSpider": 1545405304, + "Guest_CommonHouseSpider": 613486002, + "Guest_ArachnaMagnaMagus": 825817937, + "Guest_ArachnaSoldier": 270978709, + "Guest_Gnissa": 1699826178, + "Guest_WebwoodScuttler": 1728611075, + "Guest_SandSpider": 61789007, + "Guest_WebwoodCreeper": 1013382584, + "Guest_Skathi": 1631429165, + "Guest_ArchmagusLorcan": 321146960, + "Guest_CrawleroftheMist": 2076696304, + "Guest_PaintedSpider": 1482115552, + "Guest_GiantSpider": 1545526191, + "Guest_CaveCrawler": 2101587667, + "Guest_RattleCatcher": 1472707326, + "Guest_TrapdoorSpider": 1321643694, + "Guest_RockClinger": 1304266411, + "Guest_InquisitorXimenez": 1053483090, + "Guest_ElderMagus": 1017836836, + "Guest_WardenBenthamic": 18807199, + "Guest_SpiderArchmagus": 387645558, + "Guest_SpiderAdept": 2094873407, + "Guest_InterrogatorRentenius": 1245984179, + "Guest_WarpedWeaver": 495882677, + "Guest_ArachnaSkinner": 281864085, + "Guest_SkinnerConscript": 2028526453, + "Guest_ArachnaGladiator": 2492046, + "Guest_LorcanInitiate": 353311753, + "Guest_Serket": 1871335773, + "Guest_IceWeaver": 2063216026, + "Guest_SpiritSpinner": 525666327, + "Guest_MysteriousCrawler": 218352756, + "Guest_BlackWidow": 1909331619, + "Guest_BrownRecluse": 1146386275, + "Guest_Creeper": 1197442790, + "Guest_GearSpinner": 67020478, + "Guest_Clinker": 1194519062, + "Guest_Clanker": 1194517014, + "Guest_GrandfatherSpider": 1330981335, + "Guest_Spiderling": 1400274461, + "Guest_ManekiWebWalker": 888348786, + "Guest_KoganiDeathCrawler": 276010604, + "Guest_CheliceranCrawler": 1169176517, + "Guest_ArachniteCreeper": 1850534774, + "Guest_ChelicaranStalker": 2057291848, + "Guest_HornedMonkeySpider": 1301514577, + "Guest_GreyOgreSpider": 1533774471, + "Guest_StarburstSpider": 698029451, + "Guest_PaintedCaveMonster": 601315479, + "Guest_RubbleRouser": 220785666, + "Guest_EarthElemental": 435260049, + "Guest_SharpshardWarrior": 1403237237, + "Guest_Firevein": 1220046430, + "Guest_Blackblade": 458130537, + "Guest_VengefulFireheart": 563205004, + "Guest_FirerockStomper": 608552855, + "Guest_BlackrockGuardian": 1663799582, + "Guest_ConfusedSentry": 24655510, + "Guest_SilverSentinel": 1090673683, + "Guest_SilverServant": 84560693, + "Guest_GiantHomunculus": 456098557, + "Guest_PropertyMaster": 229101764, + "Guest_VaultProtector": 185568207, + "Guest_PlatedDefender": 79324363, + "Guest_Avalanche": 761613547, + "Guest_RockReaver": 919912933, + "Guest_Frostmantle": 856308090, + "Guest_GlacierWalker": 131215932, + "Guest_SandBehemoth": 272513357, + "Guest_RunedAnnihilator": 121339936, + "Guest_RunedDevestator": 1611071181, + "Guest_RunedGuardian": 1986312667, + "Guest_CanyonRager": 1123038266, + "Guest_RubbleReaver": 220774678, + "Guest_Boulderbone": 122279242, + "Guest_Nali": 77467516, + "Guest_Gnar": 1151164930, + "Guest_GlacialAvenger": 1181253632, + "Guest_SokkwiKeymaster": 190919624, + "Guest_SandsofTime": 34920273, + "Guest_BladeGolem": 435561523, + "Guest_FrostColossus": 1564686403, + "Guest_IceColossus": 335477257, + "Guest_PollutedEarthWalker": 86045387, + "Guest_CorruptedEarthSpirit": 1135891559, + "Guest_Stonebreaker": 1317905436, + "Guest_StoneElemental": 1715022018, + "Guest_VolcanisGolem": 1904918929, + "Guest_WaterElemental": 1717850987, + "Guest_AshenDeathMonkeySpider": 35356665, + "Guest_DeathMonkeySpider": 1525508507, + "Guest_MotherMonkeySpider": 110317392, + "Guest_DoomMonkey": 1135105500, + "Guest_DreamMorganthe": 907599965, + "Guest_DragonBeetle": 1974635734, + "Guest_SandWalker": 1530843985, + "MNT_PandaMama": 916371162, + "PP_BabyPandas": 778536285, + "PP_FrogPrince": 729975205, + "MNT_PumpkinCarriage": 183672737, + "Mount_Gobbler_B": 1193388729, + "PP_Hamster": 1578040708, + "Guest_Steeleton": 657429968, + "Guest_GoldenWyrm": 311022393, + "MNT_Roc": 1564431869, + "PP_BabyGriffin": 1913686406, + "Transformation_ShadowDPSMob": 936133896, + "Transformation_ShadowTankMob": 305660992, + "Transformation_ShadowHealMob": 356596800, + "Guest_SpiritofIgnorance": 1577360126, + "Guest_FecklessSoul": 519648315, + "Guest_BurnedOutSoul": 312181646, + "Guest_BenightedRevenant": 2131956962, + "Guest_TombLurker": 1901203489, + "Guest_DesertGolem": 543642682, + "Guest_KumoOni": 215822625, + "Guest_SpellwritStalker": 161772776, + "PP_Sun": 1723237840, + "Guest_Leadite": 4480416, + "Mount_FestiveFox": 2125832348, + "PP_FenrisWolf": 1601784680, + "PP_SchoolPiggle": 109782407, + "PP_FenrisWolf_Red": 1597992854, + "PP_FenrisWolf_Teal": 1455058454, + "PP_FenrisWolf_White": 1102186199, + "Transformation_NinjaPig_Fire": 984575055, + "Transformation_BG_RatThief_Myth": 1191155131, + "Transformation_BG_RatThief_Storm": 675891897, + "MNT_Umbrella": 955683437, + "Transformation_BG_Elf_Ice": 1209681129, + "Transformation_BG_Fairy_DarkMinion_Balance": 33521202, + "Transformation_BG_Cyclops_Death": 876023972, + "Transformation_BG_Minotuar_Fire": 1118476387, + "Transformation_BG_WolfWarrior_Storm": 2075594475, + "Transformation_BG_WolfWarrior_Balance": 746159992, + "Transformation_BG_Draconian_Myth": 903606820, + "Transformation_BG_Draconian_Life": 1501291044, + "Transformation_BG_Colossus_Life": 1320377666, + "MNT_DolphinChariot": 102982520, + "MNT_EvilWagon": 685457563, + "MNT_FlyingDutchman": 1176206544, + "PP_SeaHorse": 2024322494, + "PP_EvilTeddy": 1159020925, + "PP_ZombieParrot": 384805107, + "Transformation_BG_Ice_Colossus": 299613211, + "MNT_CarrierBat": 7323333, + "Transformation_BG_Minotaur_MythTempalte": 430330904, + "PP_FeatheredTabby": 452526748, + "Transformation_Detritus01": 1335763402, + "Guest_Metallossus": 335457082, + "MNT_SantaJaws": 464410203, + "MNT_BattleBadger": 532858222, + "Transformation_Shedder01": 2069145892, + "PP_NatureSpirit": 373176286, + "Transformation_Devourer01": 1004421540, + "Guest_TheDevourer": 1591187996, + "Guest_Treeminder": 1093207850, + "Guest_RenegadeDruid": 2087982292, + "Guest_FractalTreeminder": 927174548, + "Guest_UnsettledTreeminder": 486164163, + "Guest_DragonspyreCrusader": 247317280, + "Guest_YoungGreggor": 66068670, + "Guest_GeneralGreyflame": 499924835, + "Guest_OldGreggor": 391726170, + "Guest_PrinceViggor": 853556298, + "Guest_DragonspyreVanguard": 693851565, + "Guest_SilasConviction": 177362659, + "Guest_SilasWeariness": 893431021, + "Guest_SilasRage": 1288904439, + "Guest_SilasDoubt": 1479426285, + "Guest_Lorekeeper": 147779344, + "Guest_FelixPhotomongerIII": 68387506, + "Guest_WarHavox": 1634324022, + "Guest_Mis-assembledSkeleton": 221832082, + "Guest_TreeminderGhost": 200408510, + "Guest_ViggorsDrake": 340449521, + "Guest_BlueNinjaPig": 938539327, + "Guest_RedNinjaPig": 2097962021, + "Guest_OrangeNinjaPig": 625058258, + "Guest_PurpleNinjaPig": 445746449, + "Guest_RitualColossus": 844563319, + "Guest_TinyDragon": 1123127688, + "Guest_RitualSpider": 429827552, + "Guest_RitualDraconian": 837510372, + "Guest_CC_Druid_Warrior_C_01": 55314616, + "Guest_CC_Druid_Wizard_A_01": 1046261169, + "Guest_CC_Druid_Wizard_B_01": 1046244785, + "Guest_CC_Druid_Warrior_A_01": 56363192, + "MNT_Toboggan": 995356805, + "MNT_2P_WickerTreant-001": 2065440944, + "PP_Ratatoskr": 1003497600, + "PP_Trash": 1195047012, + "Guest_CC_Druid_Wizard_D_01": 1046343089, + "MNT_Sunflower": 721091531, + "MNT_Whoopee": 1383311238, + "MNT_Warthog": 8060761, + "PP_ShamRock": 943893325, + "PP_LeapingLeprechaun": 132882517, + "PP_LionCubs": 465759803, + "PP_Tanuki": 670387843, + "MNT_Crane": 433122675, + "MNT_Krokosphinx": 739938754, + "Transformation_BG_Fairy_Life": 1897480818, + "Transformation_LiceDeepSpawnA": 244795720, + "Piggle_Alien": 1761605655, + "PP_JeweledScarab": 620544607, + "Guest_KR_Nymph_DrkMage_D50": 1248526054, + "Guest_KR_Nymph_DrkMage_C50": 1246953190, + "Guest_KR_Nymph_DrkMage_B50": 1247477478, + "Guest_KR_Nymph_DrkMage_A50": 1245904614, + "Guest_EM_Spider_Ash_01": 185724938, + "UFO": 47349, + "PP_Kit10": 326796620, + "PP_Lumi_Tulip": 84119585, + "PP_Lumi_Fern": 117015078, + "PP_Lumi_Violet": 1468797578, + "PP_Lumi_Sunny": 1769236703, + "PP_Lumi_Daisy": 1743454175, + "MNT_CelestianMech": 1238076872, + "MNT_Brontosaurus": 402157167, + "Guest_HG_AKT_Krok_Cyber_A_Balance_25": 1367985604, + "Guest_HG_AKT_Krok_Cyber_A_Balance_50": 1368084932, + "Guest_HG_AKT_Krok_Cyber_A_Balance_75": 1367988676, + "Guest_HG_AKT_Krok_Cyber_A_Balance_100": 1351303620, + "Guest_HG_AKT_Krok_Cyber_A_Balance_130": 1351270852, + "Guest_HG_AKT_Krok_Cyber_A_Fire_25": 976558490, + "Guest_HG_AKT_Krok_Cyber_A_Fire_50": 37034397, + "Guest_HG_AKT_Krok_Cyber_A_Fire_75": 305469850, + "Guest_HG_AKT_Krok_Cyber_A_Fire_100": 573905821, + "Guest_HG_AKT_Krok_Cyber_A_Fire_130": 573905824, + "Guest_HG_AKT_Krok_Cyber_A_Ice_25": 159411377, + "Guest_HG_AKT_Krok_Cyber_A_Ice_50": 541093041, + "Guest_HG_AKT_Krok_Cyber_A_Ice_75": 146828465, + "Guest_HG_AKT_Krok_Cyber_A_Ice_100": 557870241, + "Guest_HG_AKT_Krok_Cyber_A_Ice_130": 960523425, + "Guest_HG_AKT_Krok_Cyber_A_Myth_25": 976187830, + "Guest_HG_AKT_Krok_Cyber_A_Myth_50": 36663729, + "Guest_HG_AKT_Krok_Cyber_A_Myth_75": 305099190, + "Guest_HG_AKT_Krok_Cyber_A_Myth_100": 573535153, + "Guest_HG_AKT_Krok_Cyber_A_Myth_130": 573535156, + "Guest_CL-GolemButler-R9": 780077559, + "Guest_CL-GolemDigger-Boss-R10": 562020288, + "Guest_CL-GolemDigger-R9": 789375095, + "Guest_CL-GolemDigger-Rank8MythBoss-R10": 930527857, + "Guest_CL-GolemWorker-R9-1": 1072815287, + "Guest_CL-FishbotBrown-R9-1": 2006155417, + "Guest_CL-FishbotBrown-R9-2": 395542681, + "Guest_CL-FishbotGold-Boss-R10": 611881707, + "Guest_CL-FishbotGold-R9": 705414492, + "Guest_CL-FishbotYellow-Boss-R10": 23145662, + "Guest_CL-Protector-Black-Boss-R10-2": 679228793, + "Guest_CL-Protector-Gold-R10": 1909636609, + "Guest_CL-Protector-Gold-R9-1": 1909634804, + "Guest_CL-Protector-Gold-R9-2": 1909634932, + "Guest_CL-Protector-Gold-R9-3": 1909635060, + "Guest_CL-Protector-Gold-R9-4": 1909634164, + "Guest_CL-Protector-Purple-R9-Boss": 1889837072, + "Guest_CL-Protector-Purple-R9": 81760161, + "Guest_CL-Protector-Tan-Boss-R10": 912663188, + "Guest_KR_Golem_Worker": 1784607296, + "Guest_Golem-Brass-R7-1": 718939445, + "Guest_Golem-Clockwork-R7": 1161173708, + "Guest_EM_Robot_Batbot_A_01": 1482867950, + "Guest_EM_Robot_Batbot_B_02": 945947886, + "Guest_EM_Robot_Batbot_B_01": 1482818798, + "Guest_EM_Robot_Batbot_B_03": 409076974, + "Guest_EM_Robot_Batbot_B_04": 127793938, + "Guest_EM_Robot_Batbot_B_05": 664664850, + "Guest_EM_Robot_Drone_A_02": 1215188569, + "Guest_EM_Robot_Drone_A_03": 1231965785, + "Guest_EM_Robot_Drone_A_01": 1265520217, + "Guest_EM_Robot_Drone_A_04": 1315851865, + "Guest_EM_Robot_Drone_A_05": 1332629081, + "Guest_EM_Robot_Drone_A_06": 1282297433, + "Guest_EM_Robot_Drone_A_07": 1299074649, + "Guest_EM_Robot_Drone_A_08": 1114525273, + "Guest_EM_Robot_Drone_A_09": 1131302489, + "Guest_EM_Robot_Drone_A_Boss_01": 1960661151, + "Guest_EM_Robot_Drone_A_Boss_02": 1960530079, + "Guest_EM_Robot_Drone_E_01": 1265518169, + "Guest_EM_Robot_Tank_A_01": 1314796420, + "Guest_EM_Robot_Tank_A_02": 1313223556, + "Guest_EM_Robot_Drone_C_02": 1215187545, + "Guest_EM_Robot_Drone_D_03": 1231963225, + "Guest_EM_Robot_Drone_D_01": 1265517657, + "Guest_EM_Robot_Drone_D_02": 1215186009, + "Guest_EM_Robot_Tank_B_01": 1314796468, + "Guest_EM_Robot_Drone_C_01": 1265519193, + "Guest_G14-BP-Golem_Steel_Boss": 2071105129, + "Guest_G14-BP-Golem_Steel_Puzzle": 715790979, + "Guest_Golem-Brass-Elite-L38": 1163662532, + "Guest_Golem-Brass-Elite-L56": 2057562884, + "Guest_Golem-Brass-MBBoss-L48": 1498830732, + "Guest_Golem-Brass-MBBoss-L71": 1498829576, + "Guest_Golem-Brass-MBBoss-L76": 1498828936, + "Guest_Golem-Clockwork-Elite-L54-Metal": 417151527, + "Guest_Golem-Clockwork-Elite-L37": 1961943722, + "Guest_Golem-Clockwork-Elite-L54": 1950147242, + "Guest_Golem-Clockwork-L28": 1561959116, + "Guest_Golem-Clockwork-MBBoss-L37": 973152783, + "Guest_Golem-Clockwork-MBBoss-L69": 1262559759, + "Guest_Golem-Steel-Elite-L39": 1430496717, + "Guest_Golem-Steel-MBBoss-L40": 1229578887, + "Guest_Golem-Steel-MBBoss-L43": 1229579015, + "Guest_Golem-Steel-MBBoss-L50-1": 1231762051, + "Guest_Golem-Steel-MBBoss-L50": 1229578883, + "Guest_Golem-Steel-MBBoss-LXX": 1229583927, + "Guest_Golem-Wood-Elite-L35": 904360756, + "Guest_Golem-Wood-Elite-L37": 1978102580, + "Guest_Golem-Wood-Elite-L50": 1813548236, + "Guest_Golem-Wood-MBBoss-L63": 1392041724, + "Guest_MB-Gauntlet-Golem-Clockwork": 854649045, + "Guest_Spider-Golem-MBBoss-L67": 253352706, + "Guest_Spider-Golem-MBBoss-L96": 253348994, + "Guest_WC-MAW-GasGolem-Minion": 1511013798, + "Guest_WC-MAW-GasGolemLife-Minion": 1306026584, + "Guest_Golem-Steel-L02": 1027229749, + "Guest_Golem-Clockwork-L01": 1409915596, + "Guest_Gauntlet-01-Golem-Steel-Ghost-R8": 402816318, + "Guest_Golem-Wood-L01": 156976035, + "Guest_HG-Clock-ClockworkSpanner-20": 1523370449, + "Guest_HG-Clock-ClockworkSpanner-40": 1523370455, + "Guest_HG-Clock-ClockworkSpanner-60": 1523370453, + "Guest_HG-Clock-ClockworkSpanner-80": 1523370459, + "Guest_HG-Clock-ClockworkSpanner-100": 1523354068, + "Guest_HG-Clock-ClockworkSpanner-120": 1523354004, + "Guest_AQ-Cyclops-Guard": 191361948, + "Guest_AQ_Cyclops_Guard_A_Boss_01": 114747100, + "Guest_CL-Cyclops-Death-R10": 611013866, + "Guest_Cyclops-Death-Boss-R7": 1192370725, + "Guest_Cyclops-Death-Boss-R9": 1192370717, + "Guest_Cyclops-Death-R7": 144593791, + "Guest_GH-Cyclops-Death-R6": 594236619, + "Guest_Cyclops-BlueHelmet-KTBoss-L03": 1720105277, + "Guest_Cyclops-Red-L12": 1816429840, + "Guest_MR_Cyclops02WHelmet_Model_01": 1483732416, + "Guest_Cyclops-Blue-L02": 1633021234, + "Guest_Cyclops-BlueHelmet-WCBoss-L03": 427378332, + "Guest_Cyclops-RedHelmet-WCBoss-L03": 2021269422, + "Guest_HG_Sinbad_Cyclops_25": 911979034, + "Guest_HG_Sinbad_Cyclops_50": 1856261606, + "Guest_HG_Sinbad_Cyclops_75": 861647386, + "Guest_HG_Sinbad_Cyclops_100": 1789152678, + "Guest_HG_Sinbad_Cyclops_130": 178539942, + "Guest_HG_Sinbad_IronSultan_25": 930031152, + "Guest_HG_Sinbad_IronSultan_50": 930051504, + "Guest_HG_Sinbad_IronSultan_75": 930030768, + "Guest_HG_Sinbad_IronSultan_100": 927954864, + "Guest_HG_Sinbad_IronSultan_130": 927942576, + "MNT_SweetRide": 1643297840, + "PP_FrilledDino": 1395342809, + "PP_Celestian": 95679303, + "PP_Sun_Angry": 1955190071, + "PP_Marshmallow": 1220667954, + "MNT_Umbrella_B": 923364822, + "MNT_Tamer": 1050737194, + "PP_BumbleBee_B": 858653433, + "MNT_PunkFlamingo": 1634690818, + "MNT_2P_WoolyRhino": 1395943031, + "PP_Retriever": 72842604, + "PP_Piggle_Caveman": 181356174, + "PP_DecennialDragon": 1396523337, + "MNT_Tiger_Rainbow": 515535412, + "MNT_CarrierGhosts": 1833039309, + "MNT_Sled": 617654308, + "Transformation_BG_RatThief_Death": 30691641, + "Transformation_BG_Elf_Storm": 44352983, + "Transformation_BG_WolfWarrior_Ice": 986304351, + "MNT_CarriorGhost_B": 1768732109, + "MNT_CarriorGhost_C": 1766634957, + "Transformation_BG_Colossus_Fire": 1318803522, + "Transformation_BG_Krok_Balance": 140952965, + "Guest_KM_Gobbler_Skinny_A_11": 773648065, + "Guest_KM_Robot_Candy_A_01": 480414124, + "Guest_KM_Robot_Candy_A_02": 530745772, + "Guest_KM_Robot_Candy_A_03": 513968556, + "Guest_KM_Robot_Candy_A_04": 430082476, + "Guest_KM_Robot_Candy_A_05": 413305260, + "Guest_KM_Gummy_Bear_A_01": 1940905059, + "Guest_KM_Gummy_Bear_D_01": 1940905011, + "Guest_KM_Gummy_Bear_E_01": 1940904995, + "Guest_KM_Gummy_Bear_A_02": 1941429347, + "Guest_KM_Gummy_Bear_D_02": 1941429299, + "Guest_KM_Gummy_Bear_E_02": 1941429283, + "Guest_KM_Gummy_Bear_B_01": 1940905043, + "Guest_KM_Gummy_Bear_B_02": 1941429331, + "Guest_KM_Gummy_Bear_B_03": 1941953619, + "Guest_KM_Gummy_BearHat_A_01": 853226448, + "Guest_KM_Gummy_BearHat_A_02": 853226460, + "Guest_KM_Gummy_Bunny_A_01": 324805042, + "Guest_KM_Gummy_Bunny_C_01": 324806066, + "Guest_KM_Gummy_Bunny_D_01": 324807602, + "Guest_KM_Gummy_Bunny_E_01": 324807090, + "Guest_KM_Gummy_Bunny_F_01": 324808626, + "Guest_KM_Gummy_BunnyUber_A_01": 525565930, + "Guest_KM_Gummy_Worm_A_01": 231044195, + "Guest_KM_Gummy_Worm_B_01": 231044179, + "Guest_KM_Gummy_Worm_C_01": 231044163, + "Guest_KM_Gummy_Worm_A_02": 232617059, + "Guest_KM_Gummy_Worm_B_02": 232617043, + "Guest_KM_Gummy_Worm_C_02": 232617027, + "Guest_KM_Gummy_Bear_F_01": 1940904979, + "Guest_KM_Gummy_Bear_F_02": 1941429267, + "Guest_KM_Gummy_Bunny_C_02": 274474418, + "Guest_KM_Robot_Candy_A_06": 463636908, + "Guest_KM_Alphoi_DarkF_A_01": 475441543, + "Guest_KM_Gobbler_Skinny_A_01": 773648069, + "Guest_KM_Gobbler_Skinny_A_02": 773648197, + "Guest_KM_Gobbler_Skinny_A_03": 773648325, + "Guest_KM_Gobbler_SkinnyF_A_01": 254411012, + "Guest_KM_Gobbler_Skinny_A_04": 773647429, + "Guest_KM_Gobbler_Skinny_A_05": 773647557, + "Guest_KM_Gobbler_Skinny_A_06": 773647685, + "Guest_KM_Gobbler_SkinnyF_A_02": 254423300, + "Guest_KM_Gobbler_Skinny_A_07": 773647813, + "Guest_KM_Gobbler_Skinny_A_08": 773646917, + "Guest_KM_Gobbler_Skinny_A_09": 773647045, + "Guest_KM_Gobbler_SkinnyF_A_03": 254419204, + "Guest_KM_Gobbler_Fat_A_01": 1440595742, + "Guest_KM_Gobbler_Fruit_B_01": 1236446660, + "Guest_KM_Gobbler_Fruit_A_01": 1235922372, + "Guest_KM_Gobbler_Guard_B_01": 1435667582, + "Guest_KM_Gobbler_Skinny_A_10": 773647937, + "Transformation_PlayerBabyCarrot": 1580787628, + "Transformation_PlayerDeadBeet": 1992261692, + "Transformation_PlayerDisparagus": 373797484, + "Transformation_PlayerSnowPeas": 634199102, + "PP_Snowflake": 2036143125, + "PP_GummyBear_Myth": 117787890, + "PP_GummyBear_Death": 236577760, + "PP_GummyBear_Balance": 2100524337, + "PP_GummyBear_Life": 118020336, + "PP_GummyBear_Fire": 117995748, + "PP_GummyBear_Storm": 247437198, + "PP_GummyBear_Ice": 122536570, + "MNT_SnowOwl": 1578473542, + "Guest_KM_Gummy_Bear_Uber_A_01": 1856208859, + "Guest_KM_Gummy_Bear_Uber_A_02": 1856196571, + "MNT_ChocolateMoose": 567538552, + "MNT_Ram_Candied": 1913603720, + "Guest_KM_Spider_Mage_A_01": 1529720120, + "Guest_KM_Spider_Mage_B_01": 1529719608, + "Guest_KM_Spider_Mage_C_01": 1529719096, + "Guest_KM_Spider_Mage_D_01": 1529718584, + "Guest_KM_Spider_Mage_E_01": 1529718072, + "PP_SpriteDark_Balance": 914900728, + "MNT_Tricycle": 991465753, + "Guest_Tri-Gauntlet-Protector-Gold": 2029952053, + "Guest_Tri-Gauntlet-FishbotGold": 130267882, + "Guest_HG-Clock-Clockworker-20": 281216243, + "Guest_HG-Clock-Clockworker-40": 281217011, + "Guest_HG-Clock-Clockworker-60": 281216755, + "Guest_HG-Clock-Clockworker-80": 281215475, + "Guest_HG-Clock-Clockworker-100": 283313523, + "Guest_HG-Clock-Clockworker-120": 283321715, + "Guest_HG-Clock-Lugs-20": 1452756928, + "Guest_HG-Clock-Lugs-40": 1452756960, + "Guest_HG-Clock-Lugs-60": 1452756992, + "Guest_HG-Clock-Lugs-80": 1452756768, + "Guest_HG-Clock-Lugs-100": 1452494736, + "Guest_HG-Clock-Lugs-120": 1452493712, + "Guest_HG-Clock-Lucia-20": 1041451626, + "Guest_HG-Clock-Lucia-40": 1041450602, + "Guest_HG-Clock-Lucia-60": 1041449578, + "Guest_HG-Clock-Lucia-80": 1041456746, + "Guest_HG-Clock-Lucia-100": 1049840746, + "Guest_HG-Clock-Lucia-120": 1049873514, + "Guest_KM_Gummy_Worm_A_03": 232092771, + "MNT_Scooter_E": 200254340, + "PP_WolfWarrior_Balance": 991302673, + "PP_PetGift": 1816280689, + "PP_RatThief": 1390866051, + "Guest_PL_Titan_Small_A": 2015819364, + "Guest_PL_Titan_Large_B": 699791264, + "Guest_PL_Titan_Medium_A": 326730424, + "PP_Draconian": 1631557208, + "MNT_Pantera_Astral": 106092538, + "PP_YearOx": 105653084, + "PP_WolfWarrior_Ice": 1043644935, + "PP_SpriteDark": 2031730054, + "PP_Brudel": 1355697143, + "MNT_Astronomers": 742732792, + "MNT_CouchPotato": 418050932, + "MNT_Flowerfarthing": 1396771051, + "MNT_Astronomers_Blue": 236532779, + "MNT_Astronomers_Rainbow": 4428274, + "PP_Astronomer": 782095961, + "Guest_KM_Gummy_Bunny_B_01": 324806578, + "Guest_KM_DeadBeets_A_01": 1396016635, + "MNT_GummyBunny": 775900704, + "MNT_GummyBunny_A": 775834080, + "MNT_GummyBunny_B": 775836128, + "MNT_GummyBunny_C": 775838176, + "Transformation_BG_Minotaur_Life": 1445109091, + "MNT_Armadillo": 825635826, + "PP_SootGremlin": 768969093, + "PP_RoadRunner": 2057802060, + "MNT_TinyTrolly": 160881792, + "PP_Frog_B": 1530124761, + "MNT_FjordDragon": 129204340, + "Transformation_BG_NinjaPig_Myth": 422914079, + "PP_CorgiPup": 1638656105, + "MNT_Skateboard": 728018224, + "PP_Krokomummy": 326396577, + "MNT_Vroom": 1736383110, + "MNT_PlayerWings_AtralRaven": 1514774167, + "PP_Blimp": 690882397, + "Guest_GH_WoodenSkeletonKey_Boar_Boss_Grey_01": 678055851, + "Guest_GH_StoneSkeletonKey_Boar_Boss_Grey_01": 571670691, + "Guest_GH_GoldSkeletonKey_Boar_Boss_Grey_01": 961728819, + "MNT_Cloud_Promo_AW_01": 2032670992, + "Guest_EM_Hornet_Burner_A_01": 1881854632, + "Guest_EM_Hornet_Burner_A_02": 1881854636, + "Guest_EM_Hornet_Zapper_A_01": 2058539689, + "Guest_EM_Hornet_Zapper_A_02": 2058539685, + "Guest_EM_Ant_Giant_D_01": 379386121, + "Guest_EM_Ant_Giant_A_02": 1768146677, + "Guest_EM_Ant_Giant_A_01": 1768097525, + "Guest_EM_Ant_Giant_B_01": 379386122, + "Guest_KR_Moth_Priest_G_Achera": 381233569, + "Guest_KR_BeeMonsterF_A": 135146211, + "Guest_KR_BeeMonsterF_A_Weak": 1824123847, + "Guest_KR_Bee_Warrior_A": 1569202664, + "Guest_KR_Bee_Warrior_B": 1569204200, + "Guest_KR_Bee_Warrior_C_BossDrones": 1217189631, + "Guest_KR_Bee_Warrior_D": 1569205224, + "Guest_KR_Bee_Warrior_E": 1569204712, + "Guest_KR_Bee_Warrior_G": 1569205736, + "Guest_KR_Bee_Warrior_G_BossFight": 1055035476, + "Guest_KR_Bee_Warrior_H": 1569207272, + "Guest_KR_Bee_Warrior_I": 1569206760, + "Guest_KR_Bee_Warrior_L": 1569209320, + "Guest_KR_Bee_Warrior_M": 1569208808, + "Guest_KR_DragonBeetle_Monster_A": 1777853782, + "Guest_KR_Hornet_Drone_A": 1161590757, + "Guest_KR_Hornet_Drone_B": 1161607141, + "Guest_KR_Hornet_Drone_C": 1161623525, + "Guest_KR_Hornet_Drone_D": 1161639909, + "Guest_KR_Hornet_Drone_E": 1161656293, + "Guest_KR_Lice_DeepSpawn_A": 761604959, + "Guest_KR_Mantis_HunterF_A": 820917199, + "Guest_KR_Mantis_HunterF_B": 871248847, + "Guest_KR_Mantis_HunterF_C": 854471631, + "Guest_KR_Mantis_HunterF_D": 904803279, + "Guest_KR_Mantis_HunterF_F": 938357711, + "Guest_KR_Mantis_HunterF_F_Driftwood": 2053608437, + "Guest_KR_Mantis_HunterF_G": 921580495, + "Guest_KR_Mantis_HunterF_H": 971912143, + "Guest_KR_Mantis_HunterF_I": 955134927, + "Guest_KR_Mantis_HunterF_I_Zuzka": 935478878, + "Guest_KR_Mantis_HunterF_J": 1005466575, + "Guest_KR_Mantis_HunterF_J_Zelda": 886910558, + "Guest_KR_Mantis_HunterF_K": 988689359, + "Guest_KR_Mantis_HunterF_K_LongShd": 1767574336, + "Guest_KR_Mantis_HunterF_L": 1039021007, + "Guest_KR_Mantis_HunterF_M": 1022243791, + "Guest_KR_Mantis_HunterF_P_Bossfight": 1731428987, + "Guest_KR_Mantis_HunterF_Q": 552481743, + "Guest_KR_Mantis_HunterF_R": 602813391, + "Guest_KR_Mantis_HunterF_S": 586036175, + "Guest_KR_Mantis_HunterF_SecondColumnCpt_A": 1354033994, + "Guest_KR_Mantis_HunterF_T": 636367823, + "Guest_KR_Mantis_HunterF_Tribute": 1946371041, + "Guest_KR_Mantis_HunterF_U": 619590607, + "Guest_KR_Mantis_HunterF_V": 669922255, + "Guest_KR_Mantis_HunterF_W": 653145039, + "Guest_KR_Mantis_HunterF_Y": 686699471, + "Guest_KR_Mantis_HunterF_Z_Officer": 206016474, + "Guest_KR_Mantis_ProphetF_B": 1791139097, + "Guest_KR_Mantis_ProphetF_C": 1254268185, + "Guest_KR_Milipede_Warrior_A": 410726278, + "Guest_KR_Milipede_Warrior_B": 410726282, + "Guest_KR_Milipede_Warrior_C": 410726286, + "Guest_KR_Milipede_Warrior_D": 410726290, + "Guest_KR_Milipede_Warrior_H": 410726306, + "Guest_KR_Milipede_Warrior_J": 410726314, + "Guest_KR_Milipede_Warrior_K": 410726318, + "Guest_KR_Moth_Priest_A": 1421532604, + "Guest_KR_Moth_Priest_B": 1421532092, + "Guest_KR_Moth_Priest_C": 1421531580, + "Guest_KR_Moth_Priest_D": 1421531068, + "Guest_KR_Moth_Priest_D_Drepa": 1483393420, + "Guest_KR_Moth_Priest_E": 1421530556, + "Guest_KR_Moth_Priest_F": 1421530044, + "Guest_KR_Mantis_HunterF_Z": 737031119, + "Guest_KR_Roach_AntLion_A": 1860517987, + "Guest_KR_Roach_AntLion_B_Bossfight": 993284625, + "Guest_KR_Roach_AntLion_C": 1861566563, + "Guest_KR_Roach_Cook_A": 259847495, + "Guest_KR_Roach_Glutton_B": 249524334, + "Guest_KR_Roach_WaterBug_A": 1795473599, + "Guest_KR_Roach_WaterBug_B": 1745141951, + "Guest_MR_Beetle_Scarab_A_01": 1789741503, + "Guest_MR_Beetle_Scarab_A_02": 1789741491, + "Guest_MR_Beetle_Scarab_B_01": 1790265791, + "Guest_ZF-Goliath-R10-Boss-01": 7034074, + "Guest_ZF-Goliath-R10-Boss-02": 7034202, + "Guest_ZF-Goliath-R10-Boss-03": 7034330, + "Guest_ZF-Goliath-R10-Boss": 1603576807, + "Guest_ZF-Goliath-R11-Boss-01": 2140449574, + "Guest_ZF-Goliath-R11-Boss-02": 2140449446, + "Guest_ZF-Goliath-R11-Boss-03": 2140449318, + "Guest_ME1_Ant_Aunt_A": 707251855, + "Guest_ME1_Ant_Aunt_B": 1440231794, + "Guest_CC_Fly_Worker_A_01": 1497784524, + "Guest_CC_Roach_Worker_A_01": 1026321602, + "Guest_CC_Roach_Lieutenant_A_01": 1081690299, + "Guest_CC_Roach_Lieutenant_B_01": 1081690295, + "Guest_CC_Roach_Don_A_01": 547836893, + "Guest_CC_Roach_BBug_A_01": 1021150157, + "Guest_CC_Roach_RoachSteady_A_01": 859409247, + "Guest_Draconian-Caster-Yellow-Boss-R8": 1016221419, + "Guest_Draconian-Zombie-R8-2-1": 1226055265, + "Guest_Draconian-Zombie-R8-2": 1226115297, + "Guest_Draconian-Caster-Green-R7": 2143342719, + "Guest_Draconian-Warrior-Gold-Boss-R8": 1044388248, + "Guest_Draconian-Caster-Gray-R7": 95878769, + "Guest_DS-Boss-MAW": 1676071241, + "Guest_Draconian-Zombie-R8-1": 1226115309, + "Guest_Draconian-Warrior-Purple-Boss-R7": 601813964, + "Guest_Draconian-Caster-Tan-Boss-R7": 1973339532, + "Guest_Draconian-Caster-Blue-R6": 1684210173, + "Guest_Draconian-Caster-Yellow-R8": 2129956646, + "Guest_Draconian-Warrior-Red-R7": 521861944, + "Guest_Draconian-Warrior-Tan-R6": 1726416112, + "Guest_Draconian-Warrior-Purple-R8": 1896270341, + "Guest_Draconian-Caster-Blue-Boss-R7": 401581134, + "Guest_Draconian-Zombie-R8": 384497496, + "Guest_GH2-Draconian-HENCH-R10": 1149202878, + "Guest_GH2-Draconian-BOSS-R10": 2114378473, + "Guest_G14-DM-Draconian_Boss": 490246211, + "Guest_G14-DM-Draconian_Storm": 2035239226, + "Guest_G14-DM-Draconian_Ice": 782200563, + "Guest_G14-DM-Draconian_Malistaire_M": 1904691727, + "Guest_G14-DM-Draconian_Malistaire_S": 1904685583, + "Guest_G14-DM-Draconian_Malistaire_D": 1904700943, + "Guest_G14-DM-Draconian_Malistaire": 1904736751, + "Guest_G14-DM-Draconian_Malistaire_B": 1904702991, + "Guest_G14-DM-Draconian_Malistaire_I": 1904695823, + "Guest_G14-DM-Draconian_Malistaire_L": 1904692751, + "Guest_G14-DM-Draconian_Malistaire_F": 1904698895, + "Guest_Draconian-PW-Gauntlet-Boss": 493080513, + "Guest_CC_Draconian_A_01": 551348115, + "Guest_AZ-Parasaur-Undead-E": 2041242846, + "Guest_AZ-Parasaur-drkPriestF-F": 898239615, + "Guest_EM_Parasaur_DrkPriestF_A_01": 1007099606, + "Guest_EM_Parasaur_DrkPriestF_A_02": 1007099605, + "Guest_AZ-Parasaur-drkPriestF-D": 898501759, + "Guest_AZ-Parasaur-drkPriestF-E": 898370687, + "Guest_AZ-Parasaur-drkPriestF-A": 897846399, + "Guest_AZ-Parasaur-Undead-B": 1716853538, + "Guest_AZ-Parasaur-Undead-A": 106240802, + "Guest_AZ-Parasaur-Undead-G": 967501022, + "Guest_AZ-Parasaur-PriestF-D": 1177445525, + "Guest_AZ-Parasaur-Undead-C": 1179982626, + "Guest_AZ-Parasaur-drkPriestF-C": 897584255, + "Guest_AZ-Parasaur-Undead-SkurkisMinion": 1414766977, + "Guest_AZ-Parasaur-drkPriestF-B": 897715327, + "Guest_AZ-Parasaur-drkPriestF-B-Script": 1414847875, + "Guest_AZ_Parasaur_Priest_A_Boss_01": 890025421, + "Guest_AZ-Parasaur-Undead-D": 1504371934, + "Guest_AZ-Pteranodon-Knight-D": 1127364049, + "Guest_AZ-StoneSkeletonKey-Ixcax-Cursedwing": 699239601, + "Guest_AZ-Pteranodon-Knight-E": 1127363921, + "Guest_AZ-Pteranodon-Knight-F": 1127363793, + "Guest_AZ-Pteranodon-Knight-A-PageEvent": 942589002, + "Guest_AZ-StoneSkeletonKey-Minion-Death": 311645584, + "Guest_AZ-Pteranodon-Knight-A": 1127364433, + "Guest_AZ-Raptor-Wraith-A": 585729247, + "Guest_AZ-Raptor-Undead-D": 893623689, + "Guest_G14-HS-Ifzt": 1914694612, + "Guest_AZ-Raptor-Warrior-A": 855749884, + "Guest_AZ-Raptor-Undead-C": 897293705, + "Guest_AZ-Raptor-Undead-B": 896769417, + "Guest_AZ-Raptor-Undead-F": 894672265, + "Guest_AZ-Raptor-Warrior-F": 872527100, + "Guest_AZ-Raptor-Warrior-H": 973190396, + "Guest_AZ-Tritops-Warrior-I": 1942669769, + "Guest_AZ-Tritops-Undead-H": 1215305911, + "Guest_AZ-Tritops-Undead-E": 1164974263, + "Guest_AZ-Tritops-SpkWarrior-A": 860850257, + "Guest_AZ-Tritops-SpkWarrior-B": 860862545, + "Guest_AZ-Tritops-Undead-F": 1181751479, + "Guest_AZ-Tritops-Warrior-K": 868927945, + "Guest_AZ-Tritops-Undead-G": 1198528695, + "Guest_AZ-Tritops-Mummy-A": 1912444877, + "Guest_AZ-Tritops-Warrior-G": 1278555704, + "Guest_AZ-Tritops-Undead-D": 1148197047, + "Guest_AZ-Tritops-Undead-A": 1097865399, + "Guest_AZ-Tritops-SpkChief-B": 2096319577, + "Guest_AZ-Tritops-Mummy-B": 1910872013, + "Guest_AZ-Tritops-Warrior-H": 1405798857, + "Guest_AZ-Dino-Undead-A": 508678670, + "Guest_AZ-Dino-Undead-B": 508679182, + "Guest_AZ-Dino-Undead-D": 508680206, + "Guest_KR_Dino_Undead_A": 1638800628, + "Guest_KR_Dino_Undead_Minion_A": 892450235, + "MNT_HayRideTruck": 75377404, + "MNT_ShadowSpiderForm": 1439860426, + "Transformation_BG_Draconian_Death": 794598804, + "PP_BabyOrca": 1056061090, + "Transformation_BG_Cyclops_Fire": 638854828, + "Transformation_BG_Fairy_Ice": 874078461, + "PP_SpriteLife": 1824998010, + "PP_Raccoon": 1107326808, + "PP_FireKitten": 593048189, + "MNT_SkeletalDuck": 1306273036, + "PP_VampireSquid": 431023109, + "PP_CottonCandy": 891201813, + "PP_ThreeHeadGoat": 1282096939, + "PP_EyeBot": 260189248, + "MNT_DeathBoat": 1444454568, + "MNT_Lemuria": 908974762, + "MNT_DeathBoat_B": 1444456538, + "MNT_DeathBoat_C": 1444456474, + "MNT_Spooky3": 1667775622, + "MNT_PresentBox": 122082000, + "MNT_Orca": 1726961653, + "Guest_LM_Golem_Steel_A_01": 19551853, + "Guest_LM_Golem_Steel_A_02": 36329069, + "Guest_LM_EyeBot_A_01_Death": 380508535, + "Guest_LM_EyeBot_A_01_Myth": 167840640, + "PP_ThreeHeadGoat_B": 1209286443, + "PP_ThreeHeadGoat_C": 1211383595, + "Guest_KR_Eel_Whirligig_A": 1062268734, + "Guest_KR_Goliath_Behemoth_A": 1231139987, + "Guest_KR_Goliath_Behemoth_C": 1231139995, + "Guest_KR_Goliath_Behemoth_D": 1231139975, + "Guest_KR_Goliath_Behemoth_E": 1231139971, + "Guest_KR_Goliath_Behemoth_H": 1231140023, + "Guest_KR_Goliath_Crusher_C": 1651720060, + "Guest_KR_Goliath_Crusher_D": 2106376324, + "Guest_KR_Goliath_Crusher_F": 1032634500, + "Guest_KR_Goliath_Crusher_G": 495763588, + "Guest_KR_Goliath_Crusher_K": 1651720059, + "Guest_AZ-Goliath-Crusher-A": 1874784966, + "Guest_AZ-Goliath-Crusher-B": 264172230, + "Guest_AZ-Goliath-Crusher-C": 801043142, + "Guest_AZ-Goliath-Crusher-D": 809569594, + "Guest_AZ-Goliath-Crusher-E": 272698682, + "Guest_HG_AKT_Butterfly_Time_A_25": 1788523059, + "Guest_HG_AKT_Butterfly_Time_A_50": 1130017331, + "Guest_HG_AKT_Butterfly_Time_A_75": 1809494579, + "Guest_HG_AKT_Butterfly_Time_A_100": 1113240099, + "Guest_HG_AKT_Butterfly_Time_A_130": 1515893283, + "MNT_DeathBoat_D": 1444456922, + "Guest_KR_RhinoBeetle_Sun_A_Bossfight": 47895417, + "Guest_KR_RhinoBeetle_Star_A": 1947510103, + "Guest_KR_RhinoBeetle_Moon_A": 1751275863, + "Guest_ME1_Clockwork_Marine_A": 1481452452, + "Guest_ME1_Clockwork_Marine_B": 1481452068, + "Guest_CC_GoldSkeletonKey_Lice_DeepSpawn_B": 1306132994, + "Guest_KR_DamdinBazar_A_Bossfight": 1333596311, + "Guest_DS-Minion-MAW2": 356796677, + "Guest_KH-Wyrmling-1": 116330513, + "Guest_KH-Wyrmling-20": 183439385, + "Guest_KH-Wyrmling-40": 317657113, + "Guest_KH-Wyrmling-60": 451874841, + "Guest_KH-Wyrmling-80": 586092569, + "Guest_PL_Polar_Bear_Solider_C": 1785662565, + "Guest_Skeleton-Silver-WCBoss-L01": 17766963, + "Guest_Banshee-Red-Elite-L24_B": 1902069117, + "Transformation_BG_WolfWarrior_Myth": 339098032, + "Transformation_BG_RatThief_Balance": 881728218, + "Transformation_BG_Colossus_Storm": 593527492, + "Transformation_BG_Elf_Life": 347405087, + "Transformation_BG_Minotaur_Ice": 1197752291, + "MNT_TRex_B": 660285500, + "PP_SpriteDark_Ice": 2036248504, + "MNT_RollingBall": 1658139390, + "Guest_LM_TRex_Base_A_03": 1378630657, + "Guest_LM_TRex_Base_A_04": 1378745345, + "Guest_LM_TRex_Base_A_05": 1378728961, + "Guest_LM_TRex_Base_A_01": 1378663425, + "Guest_LM_TRex_Base_A_02": 1378647041, + "Guest_LM_TRex_Cyborg_A_01": 151609741, + "Guest_LM_TRex_Cyborg_A_02": 168386957, + "Guest_LM_TRex_Cyborg_A_03": 185164173, + "Guest_LM_TRex_Cyborg_B_01": 151611277, + "Guest_LM_TRex_Cyborg_D_01": 151612301, + "Guest_LM_TRex_Cyborg_E_01": 151611789, + "Guest_LM_TRex_Cyborg_C_01": 151610765, + "Guest_LM_Draconian_Base_A_01": 1607373112, + "Guest_LM_EyeBot_B_01": 1085543056, + "Guest_LM_Drone_Eye_C_01": 916954037, + "Guest_LM_Drone_Eye_D_01": 1230529608, + "Guest_LM_Drone_Eye_D_02": 1230545992, + "Guest_LM_Drone_Eye_D_04": 1230578760, + "Guest_LM_Drone_Eye_D_03": 1230562376, + "Guest_LM_Drone_Eye_A_01": 916954038, + "Guest_LM_Drone_Eye_A_02": 916937654, + "Guest_LM_Drone_Eye_B_01": 1230529611, + "Guest_LM_Drone_Eye_D_05": 1230595144, + "Guest_LM_Drone_Eye_D_07": 1230627912, + "Guest_LM_Drone_Eye_D_08": 1230644296, + "Guest_LM_Drone_Eye_A_03": 916921270, + "Guest_LM_Drone_Eye_A_04": 916904886, + "Guest_LM_Drone_Eye_C_02": 916937653, + "Guest_LM_EyeBot_B_02": 1061940593, + "Guest_LM_EyeBot_B_03": 1085543055, + "Guest_LM_EyeBot_B_04": 1061940594, + "Guest_LM_Drone_Eye_C_03": 916921269, + "Guest_LM_Robot_Kit10_A_01": 199936400, + "Guest_LM_Colossus_Mander_A_01": 2107529026, + "Guest_LM_Robot_Future_A_01": 998840846, + "Guest_LM_Robot_FutureBIG_A_01": 340408568, + "Guest_LM_Robot_FutureBIG_A_02": 340396280, + "Guest_LM_Robot_FutureBIG_A_03": 340400376, + "Guest_LM_Robot_OldOne_A_01": 779070973, + "Guest_LM_Robot_OldOne_A_02": 1315941885, + "Guest_LM_Millipede_Centi_A_01": 168575797, + "Guest_LM_Millipede_Centi_A_03": 168583989, + "Guest_LM_Millipede_Centi_A_02": 168588085, + "Guest_LM_Millipede_Centi_A_04": 168563509, + "Guest_LM_Moth_Sorcerer_A_01": 228191136, + "Guest_LM_Boar_Barbarian_A_01": 1238634912, + "Guest_LM_Boar_Barbarian_A_02": 1238634528, + "Guest_LM_Boar_Barbarian_A_03": 1238634656, + "Guest_LM_Boar_Barbarian_A_04": 1238635296, + "Guest_LM_Boar_Barbarian_A_05": 1238635424, + "Guest_LM_Boar_Chief_A_01": 357051311, + "Guest_LM_Fungus_Humango_A_01": 1398460044, + "Guest_LM_Fungus_Humango_A_02": 1398460172, + "Guest_LM_Treant_Base_A_01": 1658172241, + "Guest_LM_GiantTree_EvilRoots_A_01": 282225934, + "Guest_LM_PA_GreenMan_A_01": 67705044, + "Guest_LM_Fungus_Humango_B_01": 1348128396, + "Guest_LM_Fungus_Humango_A_03": 1398460300, + "Guest_LM_Fungus_Man_C_01": 1648824156, + "Guest_LM_Fungus_Man_C_02": 1650397020, + "Guest_LM_Rhino_Zombie_A_01": 248513993, + "Guest_LM_Malughast_Base_01": 883820436, + "Guest_LM_Malughast_Base_02": 1420691348, + "Guest_LM_Lemur_HierarchF_H_04": 231562115, + "Guest_LM_Malughast_Base_03": 1957562260, + "Guest_LM_Malughast_Base_05": 1263663212, + "Guest_LM_Malughast_Base_06": 726792300, + "Guest_LM_Malughast_Base_08": 346949523, + "Guest_LM_Malughast_Base_09": 883820435, + "Guest_LM_Malughast_Base_04": 1800534124, + "Guest_LM_Minotaur_Skeleton_A_01": 1865122824, + "Guest_LM_Lemur_Wild_B_03": 1783764037, + "Guest_LM_Lemur_HierarchF_H_01": 231541635, + "Guest_LM_Lemur_HierarchF_H_02": 231553923, + "Guest_LM_Mander_Warrior_A_01": 1651245419, + "Guest_LM_Mander_Warrior_A_02": 1651245291, + "Guest_LM_Mander_Warrior_B_01": 1634468203, + "Guest_LM_Mander_Warrior_B_02": 1634468075, + "Guest_LM_Mander_Warrior_A_03": 1651245163, + "Guest_LM_Mander_Warrior_B_03": 1634467947, + "Guest_LM_Mander_Warrior_A_06": 1651245803, + "Guest_LM_Mander_Warrior_A_05": 1651245931, + "Guest_LM_Mander_Mummy_B_01": 1844111521, + "Guest_LM_Mander_Hero_B_01": 865113284, + "MNT_HolidayHippogriff": 938892112, + "MNT_Sabertooth_Ice": 1870381696, + "PP_FenrisWolf_Bantam": 776647759, + "MNT_JetPack": 1986300552, + "MNT_Scooter_F": 1005560708, + "PP_FossaKitten_A": 431748212, + "PP_Elfvis": 147991405, + "Guest_LM_Chicken_Hero_A_01": 1308728300, + "Guest_LM_Horse_Explorer_A_01": 434405482, + "Guest_LM_Duck_HeroineF_A_01": 133199186, + "Guest_LM_Crane_Hero_A_01": 204272548, + "Guest_LM_Deer_HeroineF_A_01": 1800374959, + "Guest_LM_Deer_Hero_A_01": 223109503, + "Guest_LM_Dog_Hero_A_01": 1434615064, + "PP_YearTiger": 777048708, + "MNT_Barrel": 3576425, + "MNT_Krampus": 404117611, + "PP_ChineseTigerCub": 1256032005, + "PP_Lemur": 565774155, + "PP_Robot": 1089075331, + "PP_Capybara": 451970762, + "Guest_LM_Ghoul_Base_A_01": 1822415945, + "Guest_LM_Lemur_HierarchF_H_03": 231549827, + "Guest_LM_Ghoul_Base_A_02": 1820843081, + "Guest_LM_Ghoul_Base_A_03": 1821367369, + "MNT_SpringSoF2022": 1685679511, + "MNT_WarElephant": 875015497, + "PP_Strix": 514230046, + "MNT_Beachball": 791896033, + "MNT_Blank": 633398131, + "MNT_CardboardFlier": 1646636689, + "MNT_LochMonster": 879660722, + "Transformation_BG_Krok_Death": 1395067182, + "Transformation_BG_Draconian_Fire": 1551581732, + "PP_Scotty": 1708580475, + "Guest_KR_Mice_Knight_A": 480101508, + "PP_Peacock": 1178721112, + "MNT_PoodleMoth": 975420235, + "PP_Hummingbird": 624666906, + "PP_WolfWarrior_Myth": 470737416, + "Guest_HG_UFD_Ghost_QueenF_A_100": 795323059, + "Guest_HG_UFD_Ghost_QueenF_A_50": 728230579, + "Guest_HG_UFD_Pirate_UndeadHighland_A_Balance_150": 201145133, + "Guest_HG_UFD_Pirate_UndeadHighland_A_Balance_100": 201144941, + "Guest_HG_UFD_Pirate_UndeadHighland_A_Balance_50": 201177701, + "Guest_HG_UFD_Pirate_UndeadHighland_A_Star_150": 1329885920, + "Guest_HG_UFD_Pirate_UndeadHighland_A_Star_100": 1304720096, + "Guest_HG_UFD_Pirate_UndeadHighland_A_Star_50": 1305768671, + "Guest_HG_UFD_Pirate_UndeadHighland_A_Shadow_150": 1263689971, + "Guest_HG_UFD_Pirate_UndeadHighland_A_Shadow_100": 1263689977, + "Guest_HG_UFD_Pirate_UndeadHighland_A_Shadow_50": 189949177, + "Guest_HG_UFD_Kelpie_Warrior_A_150": 54296095, + "Guest_HG_UFD_Kelpie_Warrior_A_100": 725384735, + "Guest_HG_UFD_Kelpie_Warrior_A_50": 708607503, + "Guest_HG_UFD_Pirate_UndeadHighland_B_150": 1099317831, + "Guest_HG_UFD_Pirate_UndeadHighland_B_100": 25576008, + "Guest_HG_UFD_Pirate_UndeadHighland_B_50": 159793864, + "Guest_HG_UFD_Ghost_QueenF_A_150": 795716275, + "PP_SpiderMinion": 557357331, + "MNT_Vines_Rainbow": 1587180338, + "MNT_YoungDrake": 1279496198, + "PP_Pet_Coconut": 444388490, + "DragonKI": 1490194214, + "PP_Sharkfish": 601628284, + "PP_MimicCake": 48071878, + "Guest_AQ-Bronze-Eagle": 375279744, + "Guest_Spider-Brown-L26": 2128680185, + "Guest_KR_Spider_Giant_D": 744401035, + "Guest_Wizard-Female-Band-Blue-R8": 1447486557, + "Guest_CC_Human_DSCrusaderF_A_01": 726538068, + "Guest_WC_Scarecrow_A_01": 867491011, + "Guest_WC_Banshee_A_01": 1433786463, + "Guest_WC_LostSoul_A_01": 796936146, + "PP_Fairy_Myth": 1117624344, + "PP_SpriteDark_Myth": 1884257976, + "BG_CyclopsLife_A": 944091673, + "Transformation_BG_NinjaPig_Storm": 2005137181, + "Transformation_BG_Fairy_Myth": 1880704188, + "Transformation_BG_Cyclops_Life": 638936708, + "Guest_AQ-Eagle-Praetorian": 1988013806, + "Guest_KM_BabyCarrot_A_01": 766239512, + "Guest_G14-DM-Gargoyle": 282898047, + "Guest_MR_Durvish_Sergeant_A_Boss_01": 1532609325, + "Guest_Cyclops-RedHelmet-KTBoss-L28": 2072371506, + "Guest_EM_Pig_Singer_A_01": 698597069, + "Guest_EM_Pig_Captain_A": 977505995, + "Guest_EM_Pig_Crewman_A": 465576459, + "PP_ChipmunkConductor": 1089819900, + "PP_LuckyCat": 1109326826, + "MNT_ImpCar": 1736092191, + "MNT_Book": 1547655078, + "MNT_JackoLantern": 649919658, + "MNT_Zheng": 742453108, + "MNT_Train": 413197899, + "MNT_Cerberus": 552686313, + "PP_Coconut": 1122741587, + "Transformation_Statue": 1153168084, + "Transformation_Nullity": 622504394, + "PP_Irk": 1825277392, + "Guest_Wyrmling-Fire-R8-1": 531485009, + "MNT_WolfLowPoly_A": 1947890962, + "MNT_WolfLowPoly_B": 1947825426, + "Transformation_BG_RatThief_Fire": 1169330235, + "Transformation_BG_WolfWarrior_Death": 159966683, + "Transformation_BG_Minotaur_Balance": 657855108, + "Transformation_BG_Draconian_Ice": 1907339814, + "Transformation_BG_Colossus_Myth": 1305894338, + "Transformation_NV_Penguin": 1757096851, + "Transformation_NV_Unicorn": 60447768, + "Transformation_NV_Monkey": 1379873688, + "Transformation_NV_Dog": 1961288968, + "PP_Wolf_Storm": 455227171, + "PP_WoodDuck": 1680912895, + "MNT_RockingHorse": 1205280059, + "MNT_SOF2022_Car": 219868812, + "PP_Buffaloon": 796152873, + "MNT_Steamboat": 1969530127, + "MNT_FelizNavidog": 847046394, + "PP_Mustache": 1571079379, + "Guest_DD-DS01-Skeleton-Pirate-20": 226826848, + "Guest_DD-DS01-Skeleton-Pirate-40": 201661024, + "Guest_DD-DS01-Skeleton-Pirate-60": 210049632, + "Guest_DD-DS01-Skeleton-Pirate-80": 251992672, + "Guest_DD-DS01-Skeleton-Pirate": 1994450336, + "Guest_DD-DS01-Shadow-Minion-Fire": 1074864956, + "Guest_DD-DS01-Shadow-Minion-Ice": 1841681214, + "Guest_DD-DS01-Shadow-Minion-Fire-20": 1074880881, + "Guest_DD-DS01-Shadow-Minion-Fire-40": 1074880945, + "Guest_DD-DS01-Shadow-Minion-Ice-20": 96850220, + "Guest_DD-DS01-Shadow-Minion-Ice-40": 96850218, + "Guest_DD-DS01-Shadow-Minion-Fire-60": 1074881009, + "Guest_DD-DS01-Shadow-Minion-Ice-60": 96850216, + "Guest_DD-DS01-Shadow-Minion-Fire-80": 1074880561, + "Guest_DD-DS01-Shadow-Minion-Ice-80": 96850214, + "Guest_SC-SpectreOfB-1": 1471950935, + "Guest_SC-SpectreOfB-20": 1471942759, + "Guest_SC-SpectreOfB-40": 1471942663, + "Guest_SC-SpectreOfB-60": 1471942695, + "Guest_SC-SpectreOfB-80": 1471942855, + "Guest_KH-Skeleton-Ice-60": 2108358962, + "Guest_KH-Skeleton-Ice-40": 2108391730, + "Guest_KH-Skeleton-Ice-20": 2108293426, + "Guest_KH-Skeleton-Ice-1": 2099953970, + "Guest_KH-Skeleton-Ice-80": 2108195122, + "Guest_KH-Undead-Caster-60": 1662604496, + "Guest_KH-Undead-Caster-40": 1661555920, + "Guest_KH-Undead-Caster-20": 1664701648, + "Guest_KH-Undead-Caster-1": 1931564240, + "Guest_KH-Undead-Caster-80": 1667847376, + "Guest_DD-PA01-DeadBeets": 1664999367, + "Guest_DD-PA01-DeadBeets-20": 1901453253, + "Guest_DD-PA01-DeadBeets-40": 2002116549, + "Guest_DD-PA01-DeadBeets-60": 1968562117, + "Guest_DD-PA01-DeadBeets-80": 2069225413, + "Guest_DD-PA01-Disparagus": 1865816461, + "Guest_DD-PA01-Disparagus-20": 573970895, + "Guest_DD-PA01-Disparagus-40": 499770929, + "Guest_DD-PA01-Disparagus-60": 1573512753, + "Guest_DD-PA01-Disparagus-80": 1647712718, + "Guest_DD-PA01-MeanestFlyTrap": 2001546861, + "Guest_DD-PA01-MeanestFlyTrap-20": 1936326253, + "Guest_DD-PA01-MeanestFlyTrap-40": 1936064109, + "Guest_DD-PA01-MeanestFlyTrap-60": 1935801965, + "Guest_DD-PA01-MeanestFlyTrap-80": 1937636973, + "Guest_HG-MD-MacDeath-20": 182639104, + "Guest_HG-MD-MacDeath-40": 182638080, + "Guest_HG-MD-MacDeath-60": 182637056, + "Guest_HG-MD-MacDeath-80": 182636032, + "Guest_HG-MD-MacDeath-100": 174252032, + "Guest_HG-MD-MacDeath-130": 174202880, + "Guest_HG_Sinbad_Skeleton_25": 494617874, + "Guest_HG_Sinbad_Skeleton_50": 42253050, + "Guest_HG_Sinbad_Skeleton_75": 1115994862, + "Guest_HG_Sinbad_Skeleton_100": 2105232646, + "Guest_HG_Sinbad_Skeleton_130": 2105232650, + "Guest_HG_Sinbad_Skeleton_25_02": 492722834, + "Guest_HG_Sinbad_Skeleton_50_02": 44148090, + "Guest_HG_Sinbad_Skeleton_75_02": 1117889902, + "Guest_HG_Sinbad_Skeleton_100_02": 2044247302, + "Guest_HG_Sinbad_Skeleton_130_02": 2044247306, + "Guest_DD-AV01-WyrmBoss": 1648677986, + "Guest_DD-AV01-WyrmBoss-20": 1926730850, + "Guest_DD-AV01-WyrmBoss-40": 1927779426, + "Guest_DD-AV01-WyrmBoss-60": 1928828002, + "Guest_DD-AV01-WyrmBoss-80": 1921487970, + "Guest_RH-Wyrm-Boss-01": 1027277645, + "Guest_RH-Wyrm-Boss-20": 1027277660, + "Guest_RH-Wyrm-Boss-40": 1027277663, + "Guest_RH-Wyrm-Boss-60": 1027277662, + "Guest_RH-Wyrm-Boss-80": 1027277657, + "Guest_HG_Sinbad_Wyrm_25": 1101443356, + "Guest_HG_Sinbad_Wyrm_50": 1101528860, + "Guest_HG_Sinbad_Wyrm_75": 1101445916, + "Guest_HG_Sinbad_Wyrm_100": 1093138204, + "Guest_HG_Sinbad_Wyrm_130": 1093089052, + "Guest_KH-Treant-1": 2001244331, + "Guest_KH-Treant-60": 1968148651, + "Guest_KH-Treant-40": 1968017579, + "Guest_KH-Treant-20": 1967886507, + "Guest_KH-Treant-80": 1967231147, + "Guest_DD-PA01-ForestGrump": 1969685870, + "Guest_DD-PA01-ForestGrump-20": 714666713, + "Guest_DD-PA01-ForestGrump-40": 714666689, + "Guest_DD-PA01-ForestGrump-60": 714666697, + "Guest_DD-PA01-ForestGrump-80": 714666737, + "Guest_DD-PA01-ForestNymphs": 227087348, + "Guest_DD-PA01-ForestNymphs-20": 227023552, + "Guest_DD-PA01-ForestNymphs-60": 227023040, + "Guest_DD-PA01-ForestNymphs-80": 227024832, + "Guest_SC-Pig-BalanceWizardA-1": 475456968, + "Guest_SC-Pig-BalanceWizardA-20": 477550024, + "Guest_SC-Pig-BalanceWizardA-40": 477541832, + "Guest_SC-Pig-BalanceWizardA-60": 477533640, + "Guest_SC-Pig-BalanceWizardA-80": 477525448, + "Guest_SC-Pig-BalanceWizardB-1": 475456964, + "Guest_SC-Pig-BalanceWizardB-20": 477550020, + "Guest_SC-Pig-BalanceWizardB-40": 477541828, + "Guest_SC-Pig-BalanceWizardB-60": 477533636, + "Guest_SC-Pig-BalanceWizardB-80": 477525444, + "Guest_SC-Pig-BalanceWizardC-1": 475456960, + "Guest_SC-Pig-BalanceWizardC-20": 477550016, + "Guest_SC-Pig-FireWizard-1": 2048176291, + "Guest_SC-Pig-FireWizard-20": 2031399073, + "Guest_SC-Pig-FireWizard-40": 2132062369, + "Guest_SC-Pig-FireWizard-60": 2098507937, + "Guest_SC-Pig-FireWizard-80": 1930735777, + "Guest_SC-Pig-IceWizardF-1": 1178687744, + "Guest_SC-Pig-IceWizardF-20": 1161910526, + "Guest_SC-Pig-IceWizardF-40": 1128356094, + "Guest_SC-Pig-IceWizardF-60": 1094801662, + "Guest_SC-Pig-IceWizardF-80": 1329682686, + "Guest_SC-Pig-MythWizard-1": 2048492725, + "Guest_SC-Pig-MythWizard-20": 2031715511, + "Guest_SC-Pig-MythWizard-40": 2132378807, + "Guest_SC-Pig-MythWizard-60": 2098824375, + "Guest_SC-Pig-MythWizard-80": 1931052215, + "Guest_SC-Pig-StormWizardF-1": 1743849420, + "Guest_SC-Pig-StormWizardF-20": 1743851464, + "Guest_SC-Pig-StormWizardF-40": 1743851488, + "Guest_SC-Pig-StormWizardF-60": 1743851480, + "Guest_SC-Pig-StormWizardF-80": 1743851504, + "Guest_KH-Pig-Bandit-Lord-1": 1080496628, + "Guest_KH-Pig-Bandit-Lord-20": 543625652, + "Guest_KH-Pig-Bandit-Lord-40": 530116172, + "Guest_KH-Pig-Bandit-Lord-60": 1603857996, + "Guest_KH-Pig-Bandit-Lord-80": 1617367475, + "Guest_KH-Pig-Bandit-Ninja-1": 1945100907, + "Guest_KH-Pig-Bandit-Ninja-20": 1945102951, + "Guest_KH-Pig-Bandit-Ninja-40": 1945102975, + "Guest_KH-Pig-Bandit-Ninja-60": 1945102967, + "Guest_KH-Pig-Bandit-Ninja-80": 1945102927, + "Guest_KH-Pig-War-Caster-1": 656859765, + "Guest_KH-Pig-War-Caster-20": 606528119, + "Guest_KH-Pig-War-Caster-40": 572973687, + "Guest_KH-Pig-War-Caster-60": 539419255, + "Guest_KH-Pig-War-Caster-80": 774300279, + "Guest_KH-Pig-War-Warrior-Boss-1": 16342355, + "Guest_KH-Pig-War-Warrior-Boss-20": 2143724205, + "Guest_KH-Pig-War-Warrior-Boss-40": 2118558381, + "Guest_KH-Pig-War-Warrior-Boss-60": 2126946989, + "Guest_KH-Pig-War-Warrior-Boss-80": 2101781165, + "Guest_SC-Pig-BalanceWizardC-40": 477541824, + "Guest_SC-Pig-BalanceWizardC-60": 477533632, + "Guest_SC-Pig-BalanceWizardC-80": 477525440, + "Guest_KH-Helephant-Death-20": 1109389719, + "Guest_KH-Helephant-Death-40": 2111835753, + "Guest_KH-Helephant-Death-60": 1038093929, + "Guest_KH-Helephant-Death-80": 35647896, + "Guest_KH-GreyOgre-Spider-1": 356368404, + "Guest_KH-GreyOgre-Spider-20": 1966981204, + "Guest_KH-GreyOgre-Spider-40": 1254244268, + "Guest_KH-GreyOgre-Spider-60": 180502444, + "Guest_KH-GreyOgre-Spider-80": 893239379, + "Guest_HG_Sinbad_Colossus_25": 1190802829, + "Guest_HG_Sinbad_Colossus_50": 1493551719, + "Guest_HG_Sinbad_Colossus_75": 419809907, + "Guest_HG_Sinbad_Colossus_100": 653933977, + "Guest_HG_Sinbad_Colossus_130": 653933973, + "Guest_NV_Dino_AberrantUndead_A_01": 2035087398, + "Guest_NV_Hellephant_Aberrant_A_01": 989522333, + "Guest_NV_Hellephant_Aberrant_A_02": 989522334, + "Guest_NV_BananaSpider_Base_A_01": 1585810541, + "Guest_NV_BananaSpider_Base_A_02": 1581616237, + "Guest_NV_BananaSpider_Base_A_03": 1577421933, + "Guest_NV_BananaSpider_Base_A_04": 1606782061, + "Guest_NV_BananaSpider_Base_A_05": 1602587757, + "Guest_NV_Wyrm_Aberrant_A_01": 16108415, + "Guest_NV_Monkey_Zombie_A_01": 1854775300, + "Guest_NV_Monkey_Zombie_A_02": 1854775304, + "Guest_NV_Monkey_Zombie_A_03": 1854775308, + "Guest_NV_Monkey_Zombie_A_04": 1854775312, + "MNT_Flag_Monster": 867940056, + "Guest_SKB_WY_DarkBramble_A_30": 2046798767, + "Guest_SKB_WY_DarkBramble_A_50": 2046797999, + "Guest_SKB_WY_DarkBramble_A_100": 2044701359, + "Guest_SKB_WY_DarkBramble_A_150": 2044721839, + "Guest_SKB_GH_Boar_A_30": 1547921275, + "Guest_SKB_WC_SpiritIgnorance_A_50": 1488876986, + "Guest_SKB_WC_SpiritIgnorance_A_100": 2025748410, + "Guest_SKB_WC_SpiritIgnorance_A_150": 2025748413, + "Guest_SKB_DS_Loremaster_A_50": 527751539, + "Guest_SKB_DS_Loremaster_A_100": 527817059, + "Guest_SKB_DS_Loremaster_A_150": 527817699, + "Guest_SKB_CL_Dan_A_50": 637418706, + "Guest_SKB_CL_Dan_A_60": 1510064941, + "Guest_SKB_CL_Dan_A_100": 637410512, + "Guest_SKB_CL_Dan_A_150": 637410432, + "Guest_SKB_AV_Spectre_A_50": 2104631195, + "Guest_SKB_AV_Spectre_A_100": 2102534041, + "Guest_SKB_AV_Spectre_A_150": 2018647961, + "Guest_SKB_MS_Samoorai_A_50": 2029641915, + "Guest_SKB_MS_Samoorai_A_100": 2096750843, + "Guest_SKB_MS_Samoorai_A_150": 587603717, + "Transformation_BG_Krok_StromTemplate": 1317694546, + "PP_ChineseRabbit": 382941643, + "PP_ParadeElf": 1036247808, + "MNT_HeartSwarm": 918199310, + "MNT_SpringSOF2023": 1417178519, + "Transformation_BG_Elf_Death2Template": 1606653101, + "MNT_GummyBunny_D": 775840224, + "Transformation_BG_Krok_Life2Template": 747486212, + "PP_Flame": 959186933, + "PP_YachtRock": 1500927358, + "PP_PirateYachtRock": 1227549100, + "PP_ChickenMonster": 1845706534, + "PP_SnowHoppers_B": 1496460038, + "PP_SnowHoppers_C": 1496457990, + "MNT_Oarfish": 29720265, + "PP_RingTailedCat": 993143427, + "MNT_Fanboat": 19347694, + "MNT_MiniSub": 298697910, + "PP_DumboOctopus": 966435639, + "PP_Glowbug_Balance": 1405529577, + "PP_Glowbug_Death": 405117107, + "PP_Glowbug_Fire": 651698987, + "PP_Glowbug_Ice": 2124926395, + "PP_Glowbug_Life": 601367299, + "PP_Glowbug_Myth": 592978024, + "PP_Glowbug_Storm": 61190446, + "PP_DumboOctopus_B": 968448823, + "PP_DumboOctopus_C": 968383287, + "PP_BananaSpider_01": 1074383522, + "PP_BananaSpider_02": 1080674978, + "PP_BananaSpider_03": 1078577826, + "Guest_HG_NM_BeardDragon_Base_C_01": 82913785, + "Guest_HG_NM_BeardDragon_Base_C_02": 82913786, + "Guest_HG_NM_BeardDragon_Base_C_03": 82913787, + "Guest_HG_NM_Glowbug_Base_C_01": 544959703, + "Guest_HG_NM_Glowbug_Base_C_02": 544955607, + "Guest_HG_NM_Glowbug_Base_C_03": 544951511, + "Guest_HG_NM_Glowbug_Base_C_04": 544947415, + "Guest_HG_NM_Glowbug_Base_C_05": 544943319, + "Guest_HG_NM_Glowbug_Base_C_06": 544939223, + "Guest_HG_NM_Glowbug_Base_C_07": 544935127, + "MNT_BouquetofFlowers": 1511180560, + "PP_Piggle_Rainbow": 91081383, + "MNT_Sabertooth_FlameSaber": 1949516909, + "Guest_HG_NM_BeardDragon_Base_A_01": 83175929, + "Guest_HG_NM_BeardDragon_Base_A_02": 83175930, + "Guest_HG_NM_BeardDragon_Base_A_03": 83175931, + "Guest_HG_NM_BeardDragon_Base_B_01": 83044857, + "Guest_HG_NM_BeardDragon_Base_B_02": 83044858, + "Guest_HG_NM_BeardDragon_Base_B_03": 83044859, + "Guest_HG_NM_Glowbug_Base_B_01": 8088791, + "Guest_HG_NM_Glowbug_Base_B_02": 8084695, + "Guest_HG_NM_Glowbug_Base_B_03": 8080599, + "Guest_HG_NM_Glowbug_Base_B_04": 8076503, + "Guest_HG_NM_Glowbug_Base_B_05": 8072407, + "Guest_HG_NM_Glowbug_Base_B_06": 8068311, + "Guest_HG_NM_Glowbug_Base_B_07": 8064215, + "Guest_HG_NM_Glowbug_Base_A_01": 1618701527, + "Guest_HG_NM_Glowbug_Base_A_02": 1618697431, + "Guest_HG_NM_Glowbug_Base_A_03": 1618693335, + "Guest_HG_NM_Glowbug_Base_A_04": 1618689239, + "Guest_HG_NM_Glowbug_Base_A_05": 1618685143, + "Guest_HG_NM_Glowbug_Base_A_06": 1618681047, + "Guest_HG_NM_Glowbug_Base_A_07": 1618676951, + "MNT_SummerSOF2023": 1636120912, + "PP_Cyclops_Fire": 7821755, + "PP_Death_Elf": 1535744155, + "PP_Newt": 1438123483, + "PP_Echidna": 735439358, + "MNT_Wombat": 580544786, + "Transformation_BG_NinjaPig_Balance": 1799661438, + "Transformation_BG_Cyclops_Ice": 647975824, + "Transformation_BG_Minotaur_Storm": 1005667041, + "Transformation_GR_Parasaur_Priest_Ice": 1101466351, + "Transformation_GR_Parasaur_Priest_Fire": 892193041, + "Transformation_GR_Parasaur_Priest_Storm": 1525882116, + "Transformation_GR_Parasaur_Priest_Balance": 1127637476, + "Guest_GR_AZ_Parasaur_Undead_B_01": 322587487, + "MNT_WitchCat": 1167097888, + "PP_RolyPoly": 578538330, + "PP_Capybara_B": 628131532, + "MNT_OutbackTruck": 1815527801, + "PP_PoodleSailor": 2137704795, + "MNT_PolarianCannon": 2103490826, + "PP_TazmanianDevil": 1773548765, + "Guest_SKB_AZ_Ixcax_A_100": 556560994, + "Guest_SKB_AZ_Ixcax_A_150": 556610146, + "Guest_SKB_AZ_Ixcax_A_50": 564951650, + "MNT_GhoulsShovel": 2035610946, + "PP_CrystalBdayDragon": 1897078804, + "PP_SunGobblerBall": 1522469440, + "PP_Sun_GreenGobbler": 1337690394, + "MNT_2P_AutumnTreant": 1063435527, + "PP_AutumnTreant": 561077291, + "MNT_FlyingMonkey": 490807393, + "PP_BabyPlantMonster": 2076646587, + "MNT_PlantCreature_A": 1802823265, + "Transformation_BG_Fairy_Fire": 2065252898, + "Transformation_BG_Krok_Myth": 277926564, + "Transformation_BG_RatThief_Life": 1167758651, + "Transformation_BG_Elf_Balance": 1628238937, + "Transformation_BG_Colossus_Death": 184392004, + "Transformation_FortressPod": 139738335, + "P_Wombat_POLYMORPH": 1132264953, + "PP_SharkWobbegong": 1994247222, + "PP_ChineseNYDragon": 1126999021, + "PP_JingleBellRock": 1076037919, + "PP_Krok_Mummy_Myth": 438487583, + "PP_Cyclops_Ice": 1476966187, + "MNT_OutbackTruckB": 1813299577, + "MNT_EvilSnowmanBall": 758818712, + "MNT_ThanksgivingGobbler": 1760011910, + "Guest_WL_Ghost_LostSoul_A_01": 1224111704, + "Guest_WL_Kangaroo_Drover_F_01": 2025562931, + "Guest_WL_Spider_WarriorMage_C_01": 1296557888, + "Guest_WL_Spider_WarriorMage_C_02": 1430775616, + "Guest_WL_Spider_WarriorMage_C_03": 1564993344, + "Guest_WL_Spider_WarriorMage_C_04": 1699211072, + "Guest_WL_Spider_WarriorMage_C_05": 1833428800, + "Guest_WL_Spider_WarriorMage_C_06": 1967646528, + "Guest_WL_Spider_WarriorMage_C_07": 2101864256, + "Guest_SKB_KR_Lightbane_A_100": 837930677, + "Guest_SKB_KR_Lightbane_A_160": 837930669, + "Guest_SKB_KR_Lightbane_A_50": 1309555019, + "Transformation_WL_Phantasmanian_DevilTemplate": 384891502, + "MNT_2P_LeaflessTreant": 623083386, + "PP_Minotaur_Ice": 700151737, + "MNT_Scooter_G": 737125252, + "Guest_WL_Frog_Owner_B_01": 767864686, + "MNT_SilentKnight": 646654812, + "Guest_WL_TRex_Base_A_01": 1842562033, + "Guest_WL_TRex_Base_B_01": 304921616, + "PP_Groundhog": 108643243, + "Guest_NV_Unicorn_Guard_C_04": 1845621, + "MNT_EmuPunk": 647315080, + "MNT_HeartBalloon": 798826551, + "PP_ValentineHoppers": 968693964, + "MNT_SpringSOF2024_Heckhound": 453640548, + "Guest_AQ-Centaur-Arion": 1856508139, + "Guest_AQ-Centaur-Artemis": 333294011, + "Guest_AQ-Horse-Sea": 724896200, + "Guest_KR_Horse_Warlord_A_Bossfight": 1302284326, + "Guest_KR_Horse_Warlord_A_BossfightSP": 1300726822, + "Guest_KR_Zebra_Thrall_A": 1250265667, + "Guest_KR_Zebra_Thrall_A_Boss_Minion": 345677011, + "Guest_KR_Zebra_Thrall_A_Gallery": 1520303483, + "Guest_KH-Gray-Horse-40": 1802231403, + "Guest_KH-Gray-Horse-20": 1802231307, + "Guest_G14-BP-Unicorn_Fencer_Boss": 1602044152, + "Guest_Horse-Merc-Brown-L37": 1831175255, + "Guest_Horse-Merc-Tan-L39": 1363854837, + "Guest_Horse-Merc-Tan-L39-1": 2085275127, + "Guest_Horse-Merc-Gray-MSBoss-L39": 1863452041, + "Guest_Horse-Merc-Gray-L39": 2039135564, + "Guest_Horse-Merc-Tan-L38": 1363330549, + "Guest_WC_Horse_Mercenary_Roberto": 891924774, + "Guest_ZF-Nathi-Yellowstripe-R11": 1505157721, + "Guest_ZF-TseTse-Main-R11-Boss": 114927854, + "Guest_ZF-TseTse-Elephant-R11": 894147273, + "Guest_ZF-Zebra-Impi-Raider-R11": 1378242919, + "Guest_ZF-Zebra-Warrior-Male-R10-1": 1791906265, + "Guest_ZF-Zebra-Senzan-Zebu-R10-Boss": 373712721, + "Guest_ZF-Zebra-Shaka-Zebu-R10-Boss": 662142985, + "Guest_ZF-Zebra-Warrior-Female-R10-02": 1507835670, + "Guest_ZF-Zebra-Warrior-Male-R10": 47075786, + "Guest_ZF-Zebra-Warrior-Male-R10-02": 1791906714, + "Guest_ZF-Zebra-Warrior-Male-R10-03": 1791906746, + "Guest_ZF-Zebra-Warrior-Male-R10-05": 1791906682, + "Guest_ZF-Zebra-Warrior-Male-R10-2": 1791906268, + "Guest_ZF_Zebra_Spectral_Guardian-R11": 431970996, + "Guest_CC_Horse_Apoc_A_01": 644668374, + "Guest_CC_Horse_Apoc_B_01": 644668390, + "Guest_CC_Horse_Apoc_C_01": 644668406, + "Guest_CC_Horse_Apoc_D_01": 644668294, + "Guest_CC_Horse_Apoc_D_02": 645192582, + "Guest_CC_Unicorn_CorsairF_B_01": 1378532506, + "Guest_CC_Unicorn_Duelist_B_01": 64891542, + "Guest_CC_Unicorn_Guard_B_01": 1075063242, + "Guest_CC_Unicorn_Guard_B_02": 1075063238, + "Guest_CC_Unicorn_Guard_B_03": 1075063234, + "Guest_NV_Horse_HordeSoldier_A_01": 504396960, + "Guest_NV_Horse_HordeSoldier_A_02": 101743776, + "Guest_NV_Horse_HordeOfficer_A_01": 343600992, + "Guest_NV_Horse_HordeSoldier_A_03": 235961504, + "Guest_NV_Horse_HordeOfficer_A_02": 209383264, + "Guest_NV_Horse_AberrantTungAk_A_01": 952263441, + "Guest_NV_Horse_AberrantTungAk_A_02": 952263537, + "Guest_NV_Horse_TungAk_B_01": 1194718672, + "Guest_NV_Horse_TungAk_B_02": 657847760, + "Guest_NV_Horse_HordeOfficer_B_01": 343596896, + "Guest_NV_Horse_HordeOfficer_B_02": 209379168, + "Guest_NV_Horse_TungAk_A_01": 1194669520, + "Guest_NV_Unicorn_Guard_C_01": 1845601, + "Guest_NV_Unicorn_Guard_A_01": 797025, + "Guest_NV_Unicorn_AberrantGuard_A_01": 739851573, + "Guest_NV_Unicorn_Guard_C_02": 1845613, + "Guest_NV_Unicorn_Guard_C_03": 1845609, + "Guest_NV_Unicorn_AberrantGuard_A_02": 739848501, + "Guest_NV_Unicorn_Guard_A_02": 797037, + "Guest_NV_Unicorn_AberrantGuard_A_03": 739849525, + "Guest_NV_Unicorn_AberrantGuard_A_04": 739846453, + "Guest_NV_Horse_HordeOfficer_A_03": 75165536, + "Guest_NV_Horse_HordeSoldier_A_04": 907050144, + "Guest_NV_Horse_HordeSoldier_A_05": 1041267872, + "Guest_NV_Horse_HordeSoldier_C_01": 504388768, + "Guest_HG_TRAIN_Horse_MustangFencerF_A_Balance_50": 871182987, + "Guest_HG_TRAIN_Horse_MustangFencerF_A_Balance_75": 871176715, + "Guest_HG_TRAIN_Horse_MustangFencerF_A_Life_100": 886489645, + "Guest_HG_TRAIN_Horse_MustangFencerF_A_Balance_25": 871177035, + "Guest_HG_TRAIN_Horse_MustangFencerF_A_Balance_100": 872231819, + "Guest_HG_TRAIN_Horse_MustangFencerF_A_Life_140": 1960231469, + "Guest_HG_TRAIN_Horse_MustangFencerF_B_100": 2089957067, + "Guest_HG_TRAIN_Horse_MustangFencerF_A_Life_25": 1700184589, + "Guest_HG_TRAIN_Horse_MustangFencerF_A_Life_50": 920044045, + "Guest_HG_TRAIN_Horse_MustangFencerF_A_Life_75": 1742127629, + "Guest_HG_TRAIN_Horse_MustangFencerF_A_Balance_140": 872223627, + "Guest_HG_TRAIN_Horse_MustangFencerF_B_50": 2089952970, + "Guest_HG_TRAIN_Horse_MustangFencerF_B_75": 57530654, + "Guest_HG_TRAIN_Horse_MustangFencerF_B_140": 2089957099, + "Guest_HG_TRAIN_Horse_MustangFencerF_B_25": 1131272477, + "Guest_LM_Horse_Explorer_A_01_Hard": 1711837140, + "Guest_WL_Unicorn_Guard_A_01": 1074538935, + "Guest_WL_Unicorn_CorsairF_E_01": 1378532603, + "Guest_WL_Unicorn_Warlord_A_01": 1321310496, + "Guest_KH-Gray-Horse-1": 1802239547, + "Guest_KH-Gray-Horse-60": 1802231371, + "Guest_KH-Gray-Horse-80": 1802231467, + "Transformation_BG_NinjaPig_Ice": 186026527, + "Transformation_BG_Cyclops_Storm": 897316984, + "PP_MinotaurBalance": 1344665951, + "PP_OrthusMoon": 1804503950, + "PP_CoolPineapple": 1149318906, + "PP_TwinkleStars": 766378011, + "PP_Scroll": 1613313091, + "PP_Colossus_Death": 40713075, + "PP_ColossusDeath": 530964029, + "PP_KILiveRock": 1975550570, + "MNT_Outrigger": 1417937299, + "MNT_BookWyrm": 2080129190, + "MNT_RacingSnail": 1996220963, + "MNT_UmbrellaCloud": 145762615, + "PP_PropellerCat": 2094718580, + "MNT_TRex_Shirt": 586746001, + "MNT_Swarm_Bee": 1625228695, + "MNT__CelestialMoon": 968360256, + "Guest_ME_Sinbad_IronSultan_150": 2001676223, + "Guest_ME_Sinbad_Cyclops_150": 1968943689, + "Guest_ME_Sinbad_Skeleton_150": 1031490819, + "Guest_ME_Sinbad_Colossus_150": 1727675806, + "Guest_ME_Sinbad_Skeleton_150_02": 970505475, + "Guest_ME_Sinbad_Wyrm_150": 19314443, + "Guest_ZF-Zebra-Inzinzebu-Bandit-R11": 430262550, + "Guest_ZF-Zebra-Warrior-Male-R10-04": 1791906650, + "PP_TwinkleStars_02": 805304347, + "PP_TwinkleStars_03": 803207195, + "PP_TwinkleStars_01": 799012891, + "Transformation_BodleianHarrow": 609627870, + "Guest_HG_Gryphon_OwlStatue_A_01_L170": 77756046, + "Guest_HG_Gryphon_OwlStatue_A_02_L170": 73561742, + "Guest_HG_Gryphon_OwlStatue_A_01_L100": 77752974, + "Guest_HG_Gryphon_OwlStatue_A_02_L100": 73558670, + "Guest_HG_Gryphon_OwlStatue_A_01_L50": 78277134, + "Guest_HG_Gryphon_OwlStatue_A_02_L50": 74082830, + "MNT_SummerSOF2024_JudgementWings": 1078163967, + "MNT_Pegasus_E": 131704054, + "MNT_PolarisHero": 665176426, + "PP_Duckana": 1128961578, + "PP_QueenBee": 833291695, + "Transformation_BG_Draconian_Balance": 2078940682, + "Transformation_BG_WolfWarrior_Fire": 1762248682, + "Transformation_BG_Minotaur_Death": 309090657, + "PP_WolfWarrior_Fire": 685685256, + "PP_WolfWarrior_Death": 1857202724, + "Guest_ME-GTAV01-WyrmBoss-150": 1482208618, + "Guest_ME_SpectreOfB_L150": 684104791, + "Guest_ME_MD_MacDeath_L150": 1128977615, + "Guest_ME_Pig_BalanceWizardA_L150": 959913724, + "Guest_ME_Pig_BalanceWizardB_L150": 959913712, + "Guest_ME_Pig_BalanceWizardC_L150": 959913716, + "Guest_ME_Pig_FireWizard_L150": 964392255, + "Guest_ME_Pig_IceWizardF_L150": 86941026, + "Guest_ME_Pig_MythWizard_L150": 964051241, + "Guest_ME_Pig_StormWizardF_L150": 2016383602, + "Guest_ME_Clock_Clockworker_L150": 1424569772, + "Guest_ME_Clock_ClockworkSpanner_L150": 1966824609, + "Guest_ME_Clock_Lugs_L150": 370290904, + "Guest_ME_Clock_Lucia_L150": 1857768409, + "MNT_EvilChair": 339577702, + "PP_Cyclops_Storm": 621464512, + "PP_Krokomummy_Life": 462432735, + "Transformation_CL_Rematch_Crustacean": 1686865207, + "Transformation_CL_Rematch_Protector": 1893951532, + "Transformation_CL_Rematch_Angler": 120412196, + "Transformation_CL_Rematch_Piscean": 1624106070, + "Transformation_Zebra_Template": 1900548493, + "Transformation_Zebra2_Template": 325099540, + "Transformation_Zebra3_Template": 325099524, + "Transformation_Zebra4_Template": 325099636, + "MNT_SweetSixteenBirthday": 1009398096, + "MNT_2P_TRex_Bones": 1618543266, + "MNT_SpringBumperCar": 1725007788, + "PP_WinterGoblin": 2025052443, + "PP_OnyxAnubis": 1552575189, + "PP_OttomanCat": 223541582, + "MNT_HolidayYeti": 780983974, + "MNT_IceSled": 979912604, + "MNT_TurtleDoves": 1850191638, + "MNT_KrokChariot": 559783620, + "MNT_Mustang": 1775949401, + "MNT_PumpkinBall": 382849054, + "Transformation_BG_Fairy_Storm": 836920873, + "Transformation_BG_Elf_Myth": 1506493664, + "Transformation_NinjaPig_Life": 816802847, + "Transformation_BG_Krok_Fire": 1060580712, + "Transformation_BG_Colossus_Balance": 1067963041, + "Transformation_BG_NinjaPig_Life": 441460895, + "PP_Penguin_03": 1623028104, + "Transformation_Duck_Librarian_B": 864067551, + "Transformation_Duck_Librarian_A": 859873247, + "Transformation_Duck_Adventurer": 194560769, + "Transformation_Gummy_Bunny_C": 1298087941, + "Transformation_Frog_Horned_A": 837201339, + "Transformation_Glowbug_Storm": 2096380446, + "Transformation_Marshmallow_Critter_A": 1036335317, + "Transformation_Snipe_Base_B": 232132109, + "Transformation_Snowball": 915248481, + "Transformation_Wombat_Base": 333435450, + "Transformation_Human_Malistaire": 1414887773, + "Transformation_Morganthe_E": 1745180054, + "Transformation_Spider_Grandfather": 1131773979, + "Transformation_Khrulhu_Dasein_B": 367878762, + "Transformation_Devourer_Base": 698770016, + "Transformation_Alien_Meteor": 638746168, + "Transformation_Nightmare_Malus": 704212821, + "Transformation_Daemon_Personal": 278266463, + "PP_ValentinesDay": 810003364, + "PP_BabyHippo": 422858138, + "PP_Aardwold": 1592150119, + "PP_Aardwold_C": 1902528613, + "MNT_Cobra": 472847981, + "MNT_Serpopard": 1629558909, + "MNT_Serpopard_B": 1629556867, + "MNT_Serpopard_C": 1629556931, + "PP_Fairy_Fire": 1847789544, + "MNT_Mustang_B": 1448793691, + "PP_FireElfMyth": 1933609060, + "MNT_KT-BoatRide": 1560860110, + "MNT_ShadowMagic": 2095978357, + "MNT_MardiGrasFloat_A": 1740674432, + "PP_ChineseNYSnake": 988201940, + "MNT_AnubisDog": 1995079956, + "PP_ShadowImp_A": 1604849432, + "PP_ShadowImp_B": 1604849438, + "PP_ShadowImp_C": 1604849436, + "MNT_ShadowMagic_B": 2093870965, + "MNT_ShadowMagic_C": 2093805429, + "Guest_KT_SE_Tritops_Warrior_I_01": 97516901, + "Guest_KT_SE_DS_Draconian_Model_01": 1916095079, + "Guest_KT_SE_Beetle_Scarab_C_01_L50": 1064004307, + "Guest_KT_SE_Roach_Warrior_C_03": 1872574203, + "Guest_KT_SE_Roach_Warrior_C_04": 1871918843, + "Guest_KT_SE_Roach_Warrior_C_05": 1871787771, + "Guest_KT_SE_Beetle_Scarab_C_01": 1353410759, + "Guest_KT_SE_Mander_Citizen_B_01_L50": 2044509396, + "Guest_KT_SE_Mander_CitizenF_B_01_L50": 164327682, + "Guest_KT_SE_Treant_Tormented_A_01": 1359800879, + "Guest_KT_SE_Treant_Base_A_01": 765512948, + "Guest_KT_SE_Mander_Citizen_F_D_05": 171244620, + "Guest_KT_SE_Mander_CitizenF_D_01": 163791037, + "Guest_KT_SE_Mander_CitizenF_D_02": 298008765, + "Guest_KT_SE_Mander_CitizenF_D_03": 432226493, + "Guest_KT_SE_Mander_CitizenF_D_04": 566444221, + "Guest_KT_SE_Mander_MummyF_A_01": 964349080, + "Guest_KT_SE_Mander_MummyF_A_02": 964480152, + "Guest_KT_SE_MC_Wraith_Model_01": 1101442118, + "Guest_KT_SE_Mander_CitizenF_B_02": 298000573, + "MNT_Wheelbarrow": 614248817, + "MNT_StubbornLlama": 221089074 } }, - "m_meetsRequirements": { - "type": "bool", - "id": 56, - "offset": 752, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 296443061 - }, - "m_secondaryCameraInitalDelay": { - "type": "float", - "id": 57, - "offset": 516, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1812842232 - }, - "m_displayButtonsOnTimedDialog": { - "type": "bool", - "id": 58, - "offset": 753, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 569741400 - } - } - }, - "1545297800": { - "name": "class ProvidePetPower*", - "bases": [ - "GameEffectBase", - "PropertyClass" - ], - "hash": 1545297800, - "properties": { - "m_currentTickCount": { - "type": "double", - "id": 0, - "offset": 80, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2533274692 - }, - "m_effectNameID": { - "type": "unsigned int", - "id": 1, - "offset": 96, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1204067144 - }, - "m_bIsOnPet": { - "type": "bool", - "id": 2, - "offset": 73, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 522593303 - }, - "m_originatorID": { - "type": "gid", - "id": 3, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1131810019 - }, - "m_itemSlotID": { - "type": "unsigned int", - "id": 4, - "offset": 112, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1895747595 - }, - "m_internalID": { - "type": "int", - "id": 5, - "offset": 92, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1643137924 - }, - "m_endTime": { - "type": "unsigned int", + "m_badgeTitle": { + "type": "std::string", "id": 6, - "offset": 88, + "offset": 440, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 716479635 + "hash": 1783354256 }, - "m_happinessCost": { - "type": "int", + "m_chatPermissions": { + "type": "unsigned int", "id": 7, - "offset": 128, + "offset": 360, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1107125310 + "hash": 1848314473 }, - "m_cooldown": { - "type": "int", + "m_pvpIconID": { + "type": "unsigned int", "id": 8, - "offset": 132, + "offset": 472, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1897549823 + "hash": 2083838009 }, - "m_usesPerCombat": { - "type": "int", + "m_localeID": { + "type": "unsigned int", "id": 9, - "offset": 136, + "offset": 484, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1445312791 + "hash": 792971274 }, - "m_combatTalent": { + "m_friendlyPlayer": { "type": "bool", "id": 10, - "offset": 140, + "offset": 490, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2113651857 + "hash": 990699901 }, - "m_triggerName": { - "type": "std::string", + "m_volunteer": { + "type": "bool", "id": 11, - "offset": 144, + "offset": 491, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3100183568 + "hash": 1751284471 }, - "m_extra1": { - "type": "std::string", + "m_guildName": { + "type": "unsigned int", "id": 12, - "offset": 176, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1916008880 - }, - "m_extra2": { - "type": "std::string", - "id": 13, - "offset": 208, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1916008881 - }, - "m_lootTableName": { - "type": "std::string", - "id": 14, - "offset": 240, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2333333378 - }, - "m_powerDisplayName": { - "type": "std::string", - "id": 15, - "offset": 272, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2338393887 - }, - "m_requirementList": { - "type": "class SharedPointer", - "id": 16, - "offset": 304, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3783909798 - }, - "m_requirementFailedString": { - "type": "std::string", - "id": 17, - "offset": 320, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2051573416 - }, - "m_noPVP": { - "type": "bool", - "id": 18, - "offset": 356, + "offset": 492, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 806455846 + "hash": 778026115 }, - "m_rampUp": { + "m_guildNameLocale": { "type": "int", - "id": 19, - "offset": 360, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 899539119 - }, - "m_description": { - "type": "std::string", - "id": 20, - "offset": 368, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1649374815 - }, - "m_myTurn": { - "type": "bool", - "id": 21, - "offset": 400, + "id": 13, + "offset": 496, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 733913410 - } - } - }, - "1139266277": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1139266277, - "properties": {} - }, - "364825772": { - "name": "class PhysicsSim*", - "bases": [ - "BaseZone::BaseSimulation", - "PropertyClass" - ], - "hash": 364825772, - "properties": {} - }, - "1138758149": { - "name": "class BurnHangingEffectCinematicAction", - "bases": [ - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 1138758149, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - }, - "m_cloaked": { - "type": "bool", - "id": 2, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 7349510 - }, - "m_detonate": { - "type": "bool", - "id": 3, - "offset": 153, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1738601959 - }, - "m_burnSound": { - "type": "std::string", - "id": 4, - "offset": 120, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1827806971 - } - } - }, - "1138583308": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1138583308, - "properties": { - "m_playerRecordedMusicLoopList": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 65543, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2520861630 + "hash": 656991008 } } }, - "1545971467": { - "name": "class SharedPointer", + "689400945": { + "name": "class SharedPointer", "bases": [ - "PetDerbyObstacleBehavior", - "BehaviorInstance", "PropertyClass" ], - "hash": 1545971467, + "hash": 689400945, "properties": { - "m_behaviorTemplateNameID": { + "m_polymorphTemplateID": { "type": "unsigned int", "id": 0, - "offset": 104, - "flags": 39, + "offset": 72, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 + "hash": 1026295488 }, - "m_laneNumber": { + "m_personalRating": { "type": "int", "id": 1, - "offset": 184, + "offset": 76, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 650028867 + "hash": 209790915 }, - "m_distanceFromStart": { + "m_eventRating": { "type": "int", "id": 2, - "offset": 188, + "offset": 80, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 649349799 + "hash": 2120160417 } } }, - "1545801038": { - "name": "class ConditionalSpellEffect*", + "1107860968": { + "name": "class GamebryoCamera*", "bases": [ - "SpellEffect", + "Camera", "PropertyClass" ], - "hash": 1545801038, + "hash": 1107860968, "properties": { - "m_effectType": { - "type": "enum SpellEffect::kSpellEffects", + "m_coord": { + "type": "class Vector3D", "id": 0, "offset": 72, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2578255295, - "enum_options": { - "kInvalidSpellEffect": 0, - "kDamage": 1, - "kDamageNoCrit": 2, - "kHeal": 3, - "kHealPercent": 4, - "kSetHealPercent": 113, - "kStealHealth": 5, - "kReduceOverTime": 6, - "kDetonateOverTime": 7, - "kPushCharm": 8, - "kStealCharm": 9, - "kPushWard": 10, - "kStealWard": 11, - "kPushOverTime": 12, - "kStealOverTime": 13, - "kRemoveCharm": 14, - "kRemoveWard": 15, - "kRemoveOverTime": 16, - "kRemoveAura": 17, - "kSwapAll": 18, - "kSwapCharm": 19, - "kSwapWard": 20, - "kSwapOverTime": 21, - "kModifyIncomingDamage": 22, - "kModifyIncomingDamageFlat": 119, - "kMaximumIncomingDamage": 23, - "kModifyIncomingHeal": 24, - "kModifyIncomingHealFlat": 118, - "kModifyIncomingDamageType": 25, - "kModifyIncomingArmorPiercing": 26, - "kModifyOutgoingDamage": 27, - "kModifyOutgoingDamageFlat": 121, - "kModifyOutgoingHeal": 28, - "kModifyOutgoingHealFlat": 120, - "kModifyOutgoingDamageType": 29, - "kModifyOutgoingArmorPiercing": 30, - "kModifyOutgoingStealHealth": 31, - "kModifyIncomingStealHealth": 32, - "kBounceNext": 33, - "kBouncePrevious": 34, - "kBounceBack": 35, - "kBounceAll": 36, - "kAbsorbDamage": 37, - "kAbsorbHeal": 38, - "kModifyAccuracy": 39, - "kDispel": 40, - "kConfusion": 41, - "kCloakedCharm": 42, - "kCloakedWard": 43, - "kStunResist": 44, - "kClue": 111, - "kPipConversion": 45, - "kCritBoost": 46, - "kCritBlock": 47, - "kPolymorph": 48, - "kDelayCast": 49, - "kModifyCardCloak": 50, - "kModifyCardDamage": 51, - "kModifyCardAccuracy": 53, - "kModifyCardMutation": 54, - "kModifyCardRank": 55, - "kModifyCardArmorPiercing": 56, - "kSummonCreature": 65, - "kTeleportPlayer": 66, - "kStun": 67, - "kDampen": 68, - "kReshuffle": 69, - "kMindControl": 70, - "kModifyPips": 71, - "kModifyPowerPips": 72, - "kModifyShadowPips": 73, - "kModifyHate": 74, - "kDamageOverTime": 75, - "kHealOverTime": 76, - "kModifyPowerPipChance": 77, - "kModifyRank": 78, - "kStunBlock": 79, - "kRevealCloak": 80, - "kInstantKill": 81, - "kAfterlife": 82, - "kDeferredDamage": 83, - "kDamagePerTotalPipPower": 84, - "kModifyCardHeal": 52, - "kModifyCardCharm": 57, - "kModifyCardWard": 58, - "kModifyCardOutgoingDamage": 59, - "kModifyCardOutgoingAccuracy": 60, - "kModifyCardOutgoingHeal": 61, - "kModifyCardOutgoingArmorPiercing": 62, - "kModifyCardIncomingDamage": 63, - "kModifyCardAbsorbDamage": 64, - "kCloakedWardNoRemove": 86, - "kAddCombatTriggerList": 87, - "kRemoveCombatTriggerList": 88, - "kBacklashDamage": 89, - "kModifyBacklash": 90, - "kIntercept": 91, - "kShadowSelf": 92, - "kShadowCreature": 93, - "kModifyShadowCreatureLevel": 94, - "kSelectShadowCreatureAttackTarget": 95, - "kShadowDecrementTurn": 96, - "kCritBoostSchoolSpecific": 97, - "kSpawnCreature": 98, - "kUnPolymorph": 99, - "kPowerPipConversion": 100, - "kProtectCardBeneficial": 101, - "kProtectCardHarmful": 102, - "kProtectBeneficial": 103, - "kProtectHarmful": 104, - "kDivideDamage": 105, - "kCollectEssence": 106, - "kKillCreature": 107, - "kDispelBlock": 108, - "kConfusionBlock": 109, - "kModifyPipRoundRate": 110, - "kMaxHealthDamage": 112, - "kUntargetable": 114, - "kMakeTargetable": 115, - "kForceTargetable": 116, - "kRemoveStunBlock": 117, - "kExitCombat": 122, - "kSuspendPips": 123, - "kResumePips": 124, - "kAutoPass": 125, - "kStopAutoPass": 126, - "kVanish": 127, - "kStopVanish": 128, - "kMaxHealthHeal": 129, - "kHealByWard": 130, - "kTaunt": 131, - "kPacify": 132, - "kRemoveTargetRestriction": 133, - "kConvertHangingEffect": 134, - "kAddSpellToDeck": 135, - "kAddSpellToHand": 136, - "kModifyIncomingDamageOverTime": 137, - "kModifyIncomingHealOverTime": 138, - "kModifyCardDamagebyRank": 139, - "kPushConvertedCharm": 140, - "kStealConvertedCharm": 141, - "kPushConvertedWard": 142, - "kStealConvertedWard": 143, - "kPushConvertedOverTime": 144, - "kStealConvertedOverTime": 145, - "kRemoveConvertedCharm": 146, - "kRemoveConvertedWard": 147, - "kRemoveConvertedOverTime": 148, - "kModifyOverTimeDuration": 149, - "kModifySchoolPips": 150 - } - }, - "m_effectParam": { - "type": "int", - "id": 1, - "offset": 76, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 357920024 - }, - "m_disposition": { - "type": "enum SpellEffect::kHangingDisposition", - "id": 2, - "offset": 80, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1904841031, - "enum_options": { - "kBoth": 0, - "kBeneficial": 1, - "kHarmful": 2 - } - }, - "m_sDamageType": { - "type": "std::string", - "id": 3, - "offset": 88, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2501054223 + "hash": 2448785881 }, - "m_damageType": { - "type": "unsigned int", - "id": 4, + "m_quat": { + "type": "class Quaternion", + "id": 1, "offset": 84, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 737882766 - }, - "m_pipNum": { - "type": "int", - "id": 5, - "offset": 128, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 830827539 - }, - "m_actNum": { - "type": "int", - "id": 6, - "offset": 132, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 236824866 - }, - "m_effectTarget": { - "type": "enum SpellEffect::kEffectTarget", - "id": 7, - "offset": 140, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2458940523, - "enum_options": { - "kInvalidTarget": 0, - "kSpell": 1, - "kSpecificSpells": 2, - "kGlobal": 3, - "kEnemyTeam": 4, - "kEnemyTeamAllAtOnce": 5, - "kFriendlyTeam": 6, - "kFriendlyTeamAllAtOnce": 7, - "kEnemySingle": 8, - "kFriendlySingle": 9, - "kMinion": 10, - "kFriendlyMinion": 17, - "kEnemyMinion": 18, - "kSelf": 11, - "kAtLeastOneEnemy": 13, - "kPreselectedEnemySingle": 12, - "kMultiTargetEnemy": 14, - "kMultiTargetFriendly": 15, - "kFriendlySingleNotMe": 16 - } - }, - "m_numRounds": { - "type": "int", - "id": 8, - "offset": 144, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1229753829 - }, - "m_paramPerRound": { - "type": "int", - "id": 9, - "offset": 148, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 683234234 - }, - "m_healModifier": { - "type": "float", - "id": 10, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1317921248, - "enum_options": { - "__DEFAULT": "1.0" - } - }, - "m_spellTemplateID": { - "type": "unsigned int", - "id": 11, - "offset": 120, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 585567702 - }, - "m_enchantmentSpellTemplateID": { - "type": "unsigned int", - "id": 12, - "offset": 124, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 246955115 - }, - "m_act": { - "type": "bool", - "id": 13, - "offset": 136, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 269510283 - }, - "m_cloaked": { - "type": "bool", - "id": 14, - "offset": 157, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 7349510 - }, - "m_bypassProtection": { - "type": "bool", - "id": 15, - "offset": 159, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1657138252 - }, - "m_armorPiercingParam": { - "type": "int", - "id": 16, - "offset": 160, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2025530205 - }, - "m_chancePerTarget": { - "type": "int", - "id": 17, - "offset": 164, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 845426794 - }, - "m_protected": { - "type": "bool", - "id": 18, - "offset": 168, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1445655037 - }, - "m_converted": { - "type": "bool", - "id": 19, - "offset": 169, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1590428797 + "hash": 2148807035 }, - "m_rank": { - "type": "int", - "id": 20, - "offset": 208, + "m_mat": { + "type": "class Matrix3x3", + "id": 2, + "offset": 100, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 219803942 - }, - "m_elements": { - "type": "class SharedPointer", - "id": 21, - "offset": 224, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2647383318 + "hash": 1746928484 } } }, - "366984182": { - "name": "class SharedPointer", + "1969955196": { + "name": "class ClientMobAggroBehavior", "bases": [ - "Window", + "MobAggroBehavior", + "AggroBehavior", + "BehaviorInstance", "PropertyClass" ], - "hash": 366984182, + "hash": 1969955196, "properties": { - "m_sName": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306437263 - }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621225959 - }, - "m_Style": { - "type": "unsigned int", - "id": 2, - "offset": 152, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "SCALE_CHILDREN": 2, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "FOCUS_LOCKED": 64, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152 - } - }, - "m_Flags": { + "m_behaviorTemplateNameID": { "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } - }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3105139380 - }, - "m_fTargetAlpha": { - "type": "float", - "id": 5, - "offset": 212, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1809129834 - }, - "m_fDisabledAlpha": { - "type": "float", - "id": 6, - "offset": 216, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1389987675 - }, - "m_fAlpha": { - "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 482130755 - }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3623628394 - }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2102211316 - }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1846695875 - }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3389835433 - }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2547159940 - }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2587533771 - }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3091503757 - } - } - }, - "1545613091": { - "name": "class RecipeTypeList*", - "bases": [ - "PropertyClass" - ], - "hash": 1545613091, - "properties": { - "m_allowedTypes": { - "type": "std::string", "id": 0, - "offset": 72, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 3134367000 - }, - "m_recipeList": { - "type": "std::string", - "id": 1, - "offset": 88, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 3311769839 - }, - "m_failedRequirementsList": { - "type": "std::string", - "id": 2, "offset": 104, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1864028544 - }, - "m_noCooldown": { - "type": "bool", - "id": 3, - "offset": 120, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 751967189 - }, - "m_noCategories": { - "type": "bool", - "id": 4, - "offset": 121, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 767850966 - } - } - }, - "366622928": { - "name": "class DdWinAnimMoveZap*", - "bases": [ - "WinAnimMoveToLocationSpeed", - "WinAnimMoveToLocation", - "WindowAnimation", - "PropertyClass" - ], - "hash": 366622928, - "properties": { - "m_bUseDeepCopy": { - "type": "bool", - "id": 0, - "offset": 72, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 433380635 - }, - "m_targetLocation": { - "type": "class Vector3D", - "id": 1, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2653859938 - }, - "m_fSpeed": { - "type": "float", - "id": 2, - "offset": 96, - "flags": 135, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 503609006 + "hash": 223437287 } } }, - "1138940983": { - "name": "class SharedPointer", + "1538217716": { + "name": "class CrownShopPurchase", "bases": [ - "Window", "PropertyClass" ], - "hash": 1138940983, + "hash": 1538217716, "properties": { - "m_sName": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306437263 - }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621225959 - }, - "m_Style": { - "type": "unsigned int", - "id": 2, - "offset": 152, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "SCALE_CHILDREN": 2, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "FOCUS_LOCKED": 64, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152 - } - }, - "m_Flags": { + "m_templateID": { "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } - }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3105139380 - }, - "m_fTargetAlpha": { - "type": "float", - "id": 5, - "offset": 212, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1809129834 - }, - "m_fDisabledAlpha": { - "type": "float", - "id": 6, - "offset": 216, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1389987675 - }, - "m_fAlpha": { - "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 482130755 - }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3623628394 - }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2102211316 - }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1846695875 - }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3389835433 - }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2547159940 - }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2587533771 - }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3091503757 - } - } - }, - "366524624": { - "name": "class DdWinAnimMoveZap", - "bases": [ - "WinAnimMoveToLocationSpeed", - "WinAnimMoveToLocation", - "WindowAnimation", - "PropertyClass" - ], - "hash": 366524624, - "properties": { - "m_bUseDeepCopy": { - "type": "bool", - "id": 0, - "offset": 72, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 433380635 - }, - "m_targetLocation": { - "type": "class Vector3D", - "id": 1, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2653859938 - }, - "m_fSpeed": { - "type": "float", - "id": 2, - "offset": 96, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 503609006 - } - } - }, - "1545613187": { - "name": "class RecipeTypeList", - "bases": [ - "PropertyClass" - ], - "hash": 1545613187, - "properties": { - "m_allowedTypes": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 3134367000 - }, - "m_recipeList": { - "type": "std::string", - "id": 1, - "offset": 88, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 3311769839 - }, - "m_failedRequirementsList": { - "type": "std::string", - "id": 2, - "offset": 104, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1864028544 - }, - "m_noCooldown": { - "type": "bool", - "id": 3, - "offset": 120, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 751967189 - }, - "m_noCategories": { - "type": "bool", - "id": 4, - "offset": 121, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 767850966 - } - } - }, - "366317956": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 366317956, - "properties": { - "m_treasureShopTitle": { - "type": "std::string", "id": 0, "offset": 72, "flags": 31, @@ -448827,806 +162702,260 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 3126438722 + "hash": 1286746870 }, - "m_treasureSpellNames": { - "type": "std::string", + "m_lastPurchaseTimeSec": { + "type": "unsigned __int64", "id": 1, - "offset": 104, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 3358741882 - }, - "m_crownShop": { - "type": "bool", - "id": 2, - "offset": 120, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1936888726 - }, - "m_pvpCurrencyShop": { - "type": "bool", - "id": 3, - "offset": 121, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 648643854 - }, - "m_pvpTourneyCurrencyShop": { - "type": "bool", - "id": 4, - "offset": 122, + "offset": 80, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 520923364 + "hash": 1926562290 } } }, - "1139333181": { - "name": "class ClientDerbyForceLaneChange", + "1109441588": { + "name": "class SharedPointer", "bases": [ - "DerbyForceLaneChange", - "DerbyEffect", + "BehaviorInstance", "PropertyClass" ], - "hash": 1139333181, + "hash": 1109441588, "properties": { - "m_buffType": { - "type": "enum DerbyTalentBuffType", - "id": 0, - "offset": 92, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1149251982, - "enum_options": { - "Buff": 0, - "Debuff": 1, - "Neither": 2 - } - }, - "m_kTarget": { - "type": "enum DerbyTargetType", - "id": 1, - "offset": 96, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1807803351, - "enum_options": { - "kTargetInFront": 0, - "kTargetBehind": 1, - "kTargetFirst": 2, - "kTargetSelf": 3, - "kTargetAll": 4, - "kTargetLast": 5 - } - }, - "m_nDuration": { - "type": "int", - "id": 2, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1110167982 - }, - "m_effectID": { - "type": "unsigned int", - "id": 3, - "offset": 88, - "flags": 24, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2347630439 - }, - "m_imageFilename": { - "type": "std::string", - "id": 4, - "offset": 112, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2813328063 - }, - "m_iconIndex": { + "m_behaviorTemplateNameID": { "type": "unsigned int", - "id": 5, - "offset": 144, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1265133262 - }, - "m_soundOnActivate": { - "type": "std::string", - "id": 6, - "offset": 152, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1956929714 - }, - "m_soundOnTarget": { - "type": "std::string", - "id": 7, - "offset": 184, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3444214056 - }, - "m_targetParticleEffect": { - "type": "std::string", - "id": 8, - "offset": 216, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3048234723 - }, - "m_overheadMessage": { - "type": "std::string", - "id": 9, - "offset": 248, - "flags": 8388639, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1701018190 - }, - "m_requirements": { - "type": "class RequirementList", - "id": 10, - "offset": 280, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2840988582 - } - } - }, - "1139333175": { - "name": "class ClientDerbyForceLaneChange*", - "bases": [ - "DerbyForceLaneChange", - "DerbyEffect", - "PropertyClass" - ], - "hash": 1139333175, - "properties": { - "m_buffType": { - "type": "enum DerbyTalentBuffType", "id": 0, - "offset": 92, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1149251982, - "enum_options": { - "Buff": 0, - "Debuff": 1, - "Neither": 2 - } - }, - "m_kTarget": { - "type": "enum DerbyTargetType", - "id": 1, - "offset": 96, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1807803351, - "enum_options": { - "kTargetInFront": 0, - "kTargetBehind": 1, - "kTargetFirst": 2, - "kTargetSelf": 3, - "kTargetAll": 4, - "kTargetLast": 5 - } - }, - "m_nDuration": { - "type": "int", - "id": 2, "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1110167982 - }, - "m_effectID": { - "type": "unsigned int", - "id": 3, - "offset": 88, - "flags": 24, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2347630439 - }, - "m_imageFilename": { - "type": "std::string", - "id": 4, - "offset": 112, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2813328063 - }, - "m_iconIndex": { - "type": "unsigned int", - "id": 5, - "offset": 144, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1265133262 - }, - "m_soundOnActivate": { - "type": "std::string", - "id": 6, - "offset": 152, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1956929714 - }, - "m_soundOnTarget": { - "type": "std::string", - "id": 7, - "offset": 184, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3444214056 - }, - "m_targetParticleEffect": { - "type": "std::string", - "id": 8, - "offset": 216, - "flags": 131103, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3048234723 + "hash": 223437287 }, - "m_overheadMessage": { + "m_fishData": { "type": "std::string", - "id": 9, - "offset": 248, - "flags": 8388639, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1701018190 - }, - "m_requirements": { - "type": "class RequirementList", - "id": 10, - "offset": 280, - "flags": 31, + "id": 1, + "offset": 128, + "flags": 575, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2840988582 + "hash": 3393318815 } } }, - "1545841998": { - "name": "class ConditionalSpellEffect", + "689761825": { + "name": "class RenderBehaviorTemplate*", "bases": [ - "SpellEffect", + "BehaviorTemplate", "PropertyClass" ], - "hash": 1545841998, + "hash": 689761825, "properties": { - "m_effectType": { - "type": "enum SpellEffect::kSpellEffects", + "m_behaviorName": { + "type": "std::string", "id": 0, "offset": 72, - "flags": 2097183, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2578255295, - "enum_options": { - "kInvalidSpellEffect": 0, - "kDamage": 1, - "kDamageNoCrit": 2, - "kHeal": 3, - "kHealPercent": 4, - "kSetHealPercent": 113, - "kStealHealth": 5, - "kReduceOverTime": 6, - "kDetonateOverTime": 7, - "kPushCharm": 8, - "kStealCharm": 9, - "kPushWard": 10, - "kStealWard": 11, - "kPushOverTime": 12, - "kStealOverTime": 13, - "kRemoveCharm": 14, - "kRemoveWard": 15, - "kRemoveOverTime": 16, - "kRemoveAura": 17, - "kSwapAll": 18, - "kSwapCharm": 19, - "kSwapWard": 20, - "kSwapOverTime": 21, - "kModifyIncomingDamage": 22, - "kModifyIncomingDamageFlat": 119, - "kMaximumIncomingDamage": 23, - "kModifyIncomingHeal": 24, - "kModifyIncomingHealFlat": 118, - "kModifyIncomingDamageType": 25, - "kModifyIncomingArmorPiercing": 26, - "kModifyOutgoingDamage": 27, - "kModifyOutgoingDamageFlat": 121, - "kModifyOutgoingHeal": 28, - "kModifyOutgoingHealFlat": 120, - "kModifyOutgoingDamageType": 29, - "kModifyOutgoingArmorPiercing": 30, - "kModifyOutgoingStealHealth": 31, - "kModifyIncomingStealHealth": 32, - "kBounceNext": 33, - "kBouncePrevious": 34, - "kBounceBack": 35, - "kBounceAll": 36, - "kAbsorbDamage": 37, - "kAbsorbHeal": 38, - "kModifyAccuracy": 39, - "kDispel": 40, - "kConfusion": 41, - "kCloakedCharm": 42, - "kCloakedWard": 43, - "kStunResist": 44, - "kClue": 111, - "kPipConversion": 45, - "kCritBoost": 46, - "kCritBlock": 47, - "kPolymorph": 48, - "kDelayCast": 49, - "kModifyCardCloak": 50, - "kModifyCardDamage": 51, - "kModifyCardAccuracy": 53, - "kModifyCardMutation": 54, - "kModifyCardRank": 55, - "kModifyCardArmorPiercing": 56, - "kSummonCreature": 65, - "kTeleportPlayer": 66, - "kStun": 67, - "kDampen": 68, - "kReshuffle": 69, - "kMindControl": 70, - "kModifyPips": 71, - "kModifyPowerPips": 72, - "kModifyShadowPips": 73, - "kModifyHate": 74, - "kDamageOverTime": 75, - "kHealOverTime": 76, - "kModifyPowerPipChance": 77, - "kModifyRank": 78, - "kStunBlock": 79, - "kRevealCloak": 80, - "kInstantKill": 81, - "kAfterlife": 82, - "kDeferredDamage": 83, - "kDamagePerTotalPipPower": 84, - "kModifyCardHeal": 52, - "kModifyCardCharm": 57, - "kModifyCardWard": 58, - "kModifyCardOutgoingDamage": 59, - "kModifyCardOutgoingAccuracy": 60, - "kModifyCardOutgoingHeal": 61, - "kModifyCardOutgoingArmorPiercing": 62, - "kModifyCardIncomingDamage": 63, - "kModifyCardAbsorbDamage": 64, - "kCloakedWardNoRemove": 86, - "kAddCombatTriggerList": 87, - "kRemoveCombatTriggerList": 88, - "kBacklashDamage": 89, - "kModifyBacklash": 90, - "kIntercept": 91, - "kShadowSelf": 92, - "kShadowCreature": 93, - "kModifyShadowCreatureLevel": 94, - "kSelectShadowCreatureAttackTarget": 95, - "kShadowDecrementTurn": 96, - "kCritBoostSchoolSpecific": 97, - "kSpawnCreature": 98, - "kUnPolymorph": 99, - "kPowerPipConversion": 100, - "kProtectCardBeneficial": 101, - "kProtectCardHarmful": 102, - "kProtectBeneficial": 103, - "kProtectHarmful": 104, - "kDivideDamage": 105, - "kCollectEssence": 106, - "kKillCreature": 107, - "kDispelBlock": 108, - "kConfusionBlock": 109, - "kModifyPipRoundRate": 110, - "kMaxHealthDamage": 112, - "kUntargetable": 114, - "kMakeTargetable": 115, - "kForceTargetable": 116, - "kRemoveStunBlock": 117, - "kExitCombat": 122, - "kSuspendPips": 123, - "kResumePips": 124, - "kAutoPass": 125, - "kStopAutoPass": 126, - "kVanish": 127, - "kStopVanish": 128, - "kMaxHealthHeal": 129, - "kHealByWard": 130, - "kTaunt": 131, - "kPacify": 132, - "kRemoveTargetRestriction": 133, - "kConvertHangingEffect": 134, - "kAddSpellToDeck": 135, - "kAddSpellToHand": 136, - "kModifyIncomingDamageOverTime": 137, - "kModifyIncomingHealOverTime": 138, - "kModifyCardDamagebyRank": 139, - "kPushConvertedCharm": 140, - "kStealConvertedCharm": 141, - "kPushConvertedWard": 142, - "kStealConvertedWard": 143, - "kPushConvertedOverTime": 144, - "kStealConvertedOverTime": 145, - "kRemoveConvertedCharm": 146, - "kRemoveConvertedWard": 147, - "kRemoveConvertedOverTime": 148, - "kModifyOverTimeDuration": 149, - "kModifySchoolPips": 150 - } - }, - "m_effectParam": { - "type": "int", + "hash": 3130754092 + }, + "m_assetName": { + "type": "std::string", "id": 1, - "offset": 76, - "flags": 31, + "offset": 120, + "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 357920024 + "hash": 1513131580 }, - "m_disposition": { - "type": "enum SpellEffect::kHangingDisposition", + "m_proxyName": { + "type": "std::string", "id": 2, - "offset": 80, - "flags": 2097159, + "offset": 152, + "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1904841031, - "enum_options": { - "kBoth": 0, - "kBeneficial": 1, - "kHarmful": 2 - } + "hash": 3120358366 }, - "m_sDamageType": { - "type": "std::string", + "m_height": { + "type": "float", "id": 3, - "offset": 88, + "offset": 184, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2501054223 + "hash": 602977104 }, - "m_damageType": { - "type": "unsigned int", + "m_bStaticObject": { + "type": "bool", "id": 4, - "offset": 84, - "flags": 31, + "offset": 188, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 737882766 + "hash": 108091444 }, - "m_pipNum": { - "type": "int", + "m_bCastsShadow": { + "type": "bool", "id": 5, - "offset": 128, + "offset": 189, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 830827539 + "hash": 652868121 }, - "m_actNum": { - "type": "int", + "m_bFadesIn": { + "type": "bool", "id": 6, - "offset": 132, - "flags": 31, + "offset": 190, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 236824866 + "hash": 263337711, + "enum_options": { + "__DEFAULT": 1 + } }, - "m_effectTarget": { - "type": "enum SpellEffect::kEffectTarget", + "m_opacity": { + "type": "float", "id": 7, - "offset": 140, - "flags": 2097183, + "offset": 192, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2458940523, + "hash": 700308464, "enum_options": { - "kInvalidTarget": 0, - "kSpell": 1, - "kSpecificSpells": 2, - "kGlobal": 3, - "kEnemyTeam": 4, - "kEnemyTeamAllAtOnce": 5, - "kFriendlyTeam": 6, - "kFriendlyTeamAllAtOnce": 7, - "kEnemySingle": 8, - "kFriendlySingle": 9, - "kMinion": 10, - "kFriendlyMinion": 17, - "kEnemyMinion": 18, - "kSelf": 11, - "kAtLeastOneEnemy": 13, - "kPreselectedEnemySingle": 12, - "kMultiTargetEnemy": 14, - "kMultiTargetFriendly": 15, - "kFriendlySingleNotMe": 16 + "__DEFAULT": 1 } }, - "m_numRounds": { - "type": "int", + "m_bFadesOut": { + "type": "bool", "id": 8, - "offset": 144, - "flags": 31, + "offset": 196, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1229753829 + "hash": 17988464, + "enum_options": { + "__DEFAULT": 1 + } }, - "m_paramPerRound": { - "type": "int", + "m_bPortalExcluded": { + "type": "bool", "id": 9, - "offset": 148, - "flags": 31, + "offset": 197, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 683234234 + "hash": 239086293 }, - "m_healModifier": { + "m_scale": { "type": "float", "id": 10, - "offset": 152, + "offset": 200, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1317921248, + "hash": 899693439, "enum_options": { - "__DEFAULT": "1.0" + "__DEFAULT": 1 } }, - "m_spellTemplateID": { - "type": "unsigned int", + "m_bCanBeHiddenByCamera": { + "type": "bool", "id": 11, - "offset": 120, - "flags": 31, + "offset": 204, + "flags": 263, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 585567702 + "hash": 185252414 }, - "m_enchantmentSpellTemplateID": { - "type": "unsigned int", + "m_nLightType": { + "type": "enum RenderBehaviorTemplate::LightingType", "id": 12, - "offset": 124, - "flags": 31, + "offset": 208, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 246955115 + "hash": 2027385184, + "enum_options": { + "None": 0, + "Char": 1, + "Env": 2 + } }, - "m_act": { - "type": "bool", + "m_shadowAssetName": { + "type": "std::string", "id": 13, - "offset": 136, - "flags": 7, + "offset": 216, + "flags": 131335, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 269510283 + "hash": 1844059970 }, - "m_cloaked": { - "type": "bool", + "m_enableReqs": { + "type": "class SharedPointer", "id": 14, - "offset": 157, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 7349510 - }, - "m_bypassProtection": { - "type": "bool", - "id": 15, - "offset": 159, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1657138252 - }, - "m_armorPiercingParam": { - "type": "int", - "id": 16, - "offset": 160, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2025530205 - }, - "m_chancePerTarget": { - "type": "int", - "id": 17, - "offset": 164, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 845426794 - }, - "m_protected": { - "type": "bool", - "id": 18, - "offset": 168, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1445655037 - }, - "m_converted": { - "type": "bool", - "id": 19, - "offset": 169, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1590428797 - }, - "m_rank": { - "type": "int", - "id": 20, - "offset": 208, - "flags": 7, + "offset": 248, + "flags": 263, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 219803942 - }, - "m_elements": { - "type": "class SharedPointer", - "id": 21, - "offset": 224, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, "pointer": true, - "hash": 2647383318 + "hash": 3158020443 } } }, - "366707306": { - "name": "class GameEffectInfoList", - "bases": [ - "PropertyClass" - ], - "hash": 366707306, - "properties": { - "m_gameEffectInfoList": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1747948740 - } - } + "1109263560": { + "name": "enum WizBugReport::SystemType", + "bases": [], + "hash": 1109263560, + "properties": {} }, - "1139954009": { - "name": "class SharedPointer", + "689720865": { + "name": "class RenderBehaviorTemplate", "bases": [ - "GameEffectTemplate", + "BehaviorTemplate", "PropertyClass" ], - "hash": 1139954009, + "hash": 689720865, "properties": { - "m_effectName": { + "m_behaviorName": { "type": "std::string", "id": 0, "offset": 72, @@ -449635,187 +162964,188 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 2029161513 + "hash": 3130754092 }, - "m_effectCategory": { + "m_assetName": { "type": "std::string", "id": 1, - "offset": 104, - "flags": 7, + "offset": 120, + "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1852673222 + "hash": 1513131580 }, - "m_sortOrder": { - "type": "int", + "m_proxyName": { + "type": "std::string", "id": 2, - "offset": 148, - "flags": 7, + "offset": 152, + "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1411218206 + "hash": 3120358366 }, - "m_duration": { - "type": "double", + "m_height": { + "type": "float", "id": 3, - "offset": 192, + "offset": 184, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2727932435 + "hash": 602977104 }, - "m_stackingCategories": { - "type": "std::string", + "m_bStaticObject": { + "type": "bool", "id": 4, - "offset": 160, + "offset": 188, "flags": 7, - "container": "List", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 1774497525 + "hash": 108091444 }, - "m_isPersistent": { + "m_bCastsShadow": { "type": "bool", "id": 5, - "offset": 153, + "offset": 189, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 923861920 + "hash": 652868121 }, - "m_bIsOnPet": { + "m_bFadesIn": { "type": "bool", "id": 6, - "offset": 154, + "offset": 190, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 522593303 + "hash": 263337711, + "enum_options": { + "__DEFAULT": 1 + } }, - "m_isPublic": { - "type": "bool", + "m_opacity": { + "type": "float", "id": 7, - "offset": 152, + "offset": 192, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1728439822 + "hash": 700308464, + "enum_options": { + "__DEFAULT": 1 + } }, - "m_visualEffectAddName": { - "type": "std::string", + "m_bFadesOut": { + "type": "bool", "id": 8, - "offset": 200, + "offset": 196, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3382086694 + "hash": 17988464, + "enum_options": { + "__DEFAULT": 1 + } }, - "m_visualEffectRemoveName": { - "type": "std::string", + "m_bPortalExcluded": { + "type": "bool", "id": 9, - "offset": 232, + "offset": 197, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1541697323 + "hash": 239086293 }, - "m_onAddFunctorName": { - "type": "std::string", + "m_scale": { + "type": "float", "id": 10, - "offset": 280, + "offset": 200, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1561843107 + "hash": 899693439, + "enum_options": { + "__DEFAULT": 1 + } }, - "m_onRemoveFunctorName": { - "type": "std::string", + "m_bCanBeHiddenByCamera": { + "type": "bool", "id": 11, - "offset": 312, - "flags": 7, + "offset": 204, + "flags": 263, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2559017864 + "hash": 185252414 }, - "m_stackingRule": { - "type": "enum STACKING_RULE", + "m_nLightType": { + "type": "enum RenderBehaviorTemplate::LightingType", "id": 12, - "offset": 144, + "offset": 208, "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 431568889, + "hash": 2027385184, "enum_options": { - "STACKING_ALLOWED": 0, - "STACKING_NOSTACK": 1, - "STACKING_REPLACE": 2 + "None": 0, + "Char": 1, + "Env": 2 } }, - "m_startReqs": { - "type": "class SharedPointer", + "m_shadowAssetName": { + "type": "std::string", "id": 13, - "offset": 360, - "flags": 7, + "offset": 216, + "flags": 131335, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3147529602 + "pointer": false, + "hash": 1844059970 }, - "m_containerEffects": { - "type": "class SharedPointer", + "m_enableReqs": { + "type": "class SharedPointer", "id": 14, - "offset": 376, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 957354392 - }, - "m_accompanyID": { - "type": "unsigned int", - "id": 15, - "offset": 392, - "flags": 7, + "offset": 248, + "flags": 263, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1462123093 + "pointer": true, + "hash": 3158020443 } } }, - "1546372162": { - "name": "class SharedPointer", + "1970011949": { + "name": "class TeamUpVolunteerWindow", "bases": [ "Window", "PropertyClass" ], - "hash": 1546372162, + "hash": 1970011949, "properties": { "m_sName": { "type": "std::string", @@ -450030,21 +163360,111 @@ } } }, - "1139827849": { - "name": "class SharedPointer", + "1540418012": { + "name": "class AvailableQuestEntry", "bases": [ + "ServiceOptionBase", "PropertyClass" ], - "hash": 1139827849, - "properties": {} + "hash": 1540418012, + "properties": { + "m_serviceName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2206028813 + }, + "m_iconKey": { + "type": "std::string", + "id": 1, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2457138637 + }, + "m_displayKey": { + "type": "std::string", + "id": 2, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3023276954 + }, + "m_serviceIndex": { + "type": "unsigned int", + "id": 3, + "offset": 204, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2103126710 + }, + "m_forceInteract": { + "type": "bool", + "id": 4, + "offset": 200, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1705789564 + }, + "m_questTitle": { + "type": "std::string", + "id": 5, + "offset": 256, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1805465583 + }, + "m_questName": { + "type": "std::string", + "id": 6, + "offset": 224, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1702112846 + }, + "m_isMainline": { + "type": "bool", + "id": 7, + "offset": 344, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1637584380 + } + } }, - "367284943": { - "name": "class SpellSelectionWindow", + "1970010669": { + "name": "class TeamUpVolunteerWindow*", "bases": [ "Window", "PropertyClass" ], - "hash": 367284943, + "hash": 1970010669, "properties": { "m_sName": { "type": "std::string", @@ -450259,182 +163679,275 @@ } } }, - "367205573": { - "name": "class SharedPointer", + "1539384648": { + "name": "class SharedPointer", "bases": [ - "GroupObserver", "PropertyClass" ], - "hash": 367205573, + "hash": 1539384648, + "properties": { + "m_textData": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2390069786 + } + } + }, + "689784471": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 689784471, + "properties": { + "m_emojiDataList": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1180872578 + } + } + }, + "1112448544": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1112448544, "properties": {} }, - "1549430778": { - "name": "class ModifyPipRoundRateData*", + "1970143146": { + "name": "class StateAssetInfo", "bases": [ "PropertyClass" ], - "hash": 1549430778, + "hash": 1970143146, "properties": { - "m_delta": { - "type": "int", + "m_assetName": { + "type": "std::string", "id": 0, "offset": 72, - "flags": 31, + "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 791787588 + "hash": 1513131580 }, - "m_rounds": { - "type": "int", + "m_attachmentNode": { + "type": "std::string", "id": 1, - "offset": 76, - "flags": 31, + "offset": 104, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 916427829 + "hash": 1683933674 + }, + "m_soundTemplate": { + "type": "unsigned int", + "id": 2, + "offset": 136, + "flags": 33554439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 611925458 + }, + "m_loop": { + "type": "bool", + "id": 3, + "offset": 140, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 222084781 + }, + "m_fireAndForget": { + "type": "bool", + "id": 4, + "offset": 141, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 531791155 } } }, - "1547966317": { - "name": "class RecentWizardInfoList*", + "1109689545": { + "name": "class TreasureCardVaultBehaviorTemplate*", "bases": [ + "BehaviorTemplate", "PropertyClass" ], - "hash": 1547966317, + "hash": 1109689545, "properties": { - "m_recentWizardInfoList": { - "type": "class SharedPointer", + "m_behaviorName": { + "type": "std::string", "id": 0, "offset": 72, "flags": 7, - "container": "List", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3708234369 + "pointer": false, + "hash": 3130754092 } } }, - "1144391013": { - "name": "class SharedPointer", + "1541129692": { + "name": "class SharedPointer", "bases": [ "PropertyClass" ], - "hash": 1144391013, + "hash": 1541129692, "properties": { "m_templateID": { "type": "unsigned int", "id": 0, "offset": 72, - "flags": 33554471, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, "hash": 1286746870 }, - "m_size": { + "m_positionX": { "type": "float", "id": 1, "offset": 76, - "flags": 39, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 310050130 + "hash": 837995844 + }, + "m_positionY": { + "type": "float", + "id": 2, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 837995845 + }, + "m_positionZ": { + "type": "float", + "id": 3, + "offset": 84, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 837995846 + }, + "m_yaw": { + "type": "float", + "id": 4, + "offset": 88, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 357256328 } } }, - "1547395044": { - "name": "class SharedPointer", + "1970142986": { + "name": "class StateAssetInfo*", "bases": [ - "ConditionalSpellEffectRequirement", - "Requirement", "PropertyClass" ], - "hash": 1547395044, + "hash": 1970142986, "properties": { - "m_applyNOT": { - "type": "bool", + "m_assetName": { + "type": "std::string", "id": 0, "offset": 72, - "flags": 31, + "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1746328074, - "enum_options": { - "__DEFAULT": 0 - } + "hash": 1513131580 }, - "m_operator": { - "type": "enum Requirement::Operator", + "m_attachmentNode": { + "type": "std::string", "id": 1, - "offset": 76, - "flags": 2097183, + "offset": 104, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2672792317, - "enum_options": { - "ROP_AND": 0, - "ROP_OR": 1, - "__DEFAULT": "ROP_AND" - } + "hash": 1683933674 }, - "m_targetType": { - "type": "enum ConditionalSpellEffectRequirement::RequirementTarget", + "m_soundTemplate": { + "type": "unsigned int", "id": 2, - "offset": 80, - "flags": 2097159, + "offset": 136, + "flags": 33554439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2547737902, - "enum_options": { - "RT_Caster": 0, - "RT_Target": 1 - } + "hash": 611925458 }, - "m_minPips": { - "type": "int", + "m_loop": { + "type": "bool", "id": 3, - "offset": 88, - "flags": 31, + "offset": 140, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2062924954 + "hash": 222084781 }, - "m_maxPips": { - "type": "int", + "m_fireAndForget": { + "type": "bool", "id": 4, - "offset": 92, - "flags": 31, + "offset": 141, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1761701020 + "hash": 531791155 } } }, - "367284967": { - "name": "class SpellSelectionWindow*", + "1109448625": { + "name": "class ControlProgress", "bases": [ + "ControlBar", "Window", "PropertyClass" ], - "hash": 367284967, + "hash": 1109448625, "properties": { "m_sName": { "type": "std::string", @@ -450470,11 +163983,9 @@ "hash": 983582334, "enum_options": { "HAS_BACK": 1, - "SCALE_CHILDREN": 2, "CAN_MOVE": 4, "CAN_SIZE": 8, "CAN_SCROLL": 16, - "FOCUS_LOCKED": 64, "CAN_FOCUS": 128, "CAN_DOCK": 32, "DO_NOT_CAPTURE_MOUSE": 256, @@ -450486,7 +163997,9 @@ "USE_ALPHA_BOUNDS": 8192, "AUTO_GROW": 16384, "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152 + "AUTO_RESIZE": 49152, + "PROGRESS_UV": 16777216, + "PROGRESS_RTOL": 33554432 } }, "m_Flags": { @@ -450646,16 +164159,280 @@ "singleton": false, "pointer": false, "hash": 3091503757 + }, + "m_fPosition": { + "type": "float", + "id": 16, + "offset": 584, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1808212114 + }, + "m_BaseColor": { + "type": "class Color", + "id": 17, + "offset": 588, + "flags": 262279, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2172251096 + }, + "m_BarColor": { + "type": "class Color", + "id": 18, + "offset": 592, + "flags": 262279, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2259916498 + }, + "m_bDisplayVertical": { + "type": "bool", + "id": 19, + "offset": 596, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1359621189 + }, + "m_pBarMaterial": { + "type": "class SharedPointer", + "id": 20, + "offset": 600, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2481929515 + }, + "m_pTopLeftMaterial": { + "type": "class SharedPointer", + "id": 21, + "offset": 616, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3248096916 + }, + "m_pCenterMaterial": { + "type": "class SharedPointer", + "id": 22, + "offset": 632, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1519560055 + }, + "m_pBottomRightMaterial": { + "type": "class SharedPointer", + "id": 23, + "offset": 648, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2932444745 + }, + "m_bTimed": { + "type": "bool", + "id": 24, + "offset": 696, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 260290536 + }, + "m_fTotalTime": { + "type": "float", + "id": 25, + "offset": 700, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1142609040 + }, + "m_fCurrentTime": { + "type": "float", + "id": 26, + "offset": 704, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2112044047 + }, + "m_bReverseDir": { + "type": "bool", + "id": 27, + "offset": 708, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 137983376 } } }, - "1141470160": { - "name": "class BGPolymorphSelectOption*", + "1540466964": { + "name": "class SharedPointer", + "bases": [ + "MoveBehavior::Controller", + "PropertyClass" + ], + "hash": 1540466964, + "properties": { + "m_bCollisionDisabled": { + "type": "bool", + "id": 0, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1732895577 + }, + "m_bVehicleMode": { + "type": "bool", + "id": 1, + "offset": 121, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1597295002 + }, + "m_fForwardModifier": { + "type": "float", + "id": 2, + "offset": 124, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1173988321 + }, + "m_fBackModifier": { + "type": "float", + "id": 3, + "offset": 128, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 148042045 + }, + "m_fStrafeModifier": { + "type": "float", + "id": 4, + "offset": 132, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 226084913 + }, + "m_fTurnModifier": { + "type": "float", + "id": 5, + "offset": 136, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2134998805 + }, + "m_fAccelerationModifier": { + "type": "float", + "id": 6, + "offset": 144, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 592902742 + }, + "m_fDecelerationModifier": { + "type": "float", + "id": 7, + "offset": 148, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1770082811 + }, + "m_bPaused": { + "type": "bool", + "id": 8, + "offset": 160, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1899182391 + }, + "m_spCommand": { + "type": "class SharedPointer", + "id": 9, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 636010160 + }, + "m_Queue": { + "type": "class SharedPointer", + "id": 10, + "offset": 184, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1055578835 + } + } + }, + "692023183": { + "name": "class ClientRequirementFailInteraction", "bases": [ + "RequirementFailNotification", "ServiceOptionBase", "PropertyClass" ], - "hash": 1141470160, + "hash": 692023183, "properties": { "m_serviceName": { "type": "std::string", @@ -450711,17 +164488,102 @@ "singleton": false, "pointer": false, "hash": 1705789564 + }, + "m_failureMessage": { + "type": "std::string", + "id": 5, + "offset": 224, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1882376712 } } }, - "1547353383": { - "name": "class SharedPointer", + "691426971": { + "name": "class SharedPointer", + "bases": [ + "ObstacleCourseObstaclePathBase", + "ObstacleCourseObstacleBehavior", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 691426971, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + } + } + }, + "1109689497": { + "name": "class TreasureCardVaultBehaviorTemplate", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 1109689497, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + } + } + }, + "691112052": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 691112052, + "properties": { + "m_deckToSave": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1977265360 + }, + "m_graveYardToSave": { + "type": "class SharedPointer", + "id": 1, + "offset": 96, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 3785577598 + } + } + }, + "1971709958": { + "name": "class SharedPointer", "bases": [ - "ControlText", "Window", "PropertyClass" ], - "hash": 1547353383, + "hash": 1971709958, "properties": { "m_sName": { "type": "std::string", @@ -450757,9 +164619,11 @@ "hash": 983582334, "enum_options": { "HAS_BACK": 1, + "SCALE_CHILDREN": 2, "CAN_MOVE": 4, "CAN_SIZE": 8, "CAN_SCROLL": 16, + "FOCUS_LOCKED": 64, "CAN_FOCUS": 128, "CAN_DOCK": 32, "DO_NOT_CAPTURE_MOUSE": 256, @@ -450771,9 +164635,7 @@ "USE_ALPHA_BOUNDS": 8192, "AUTO_GROW": 16384, "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152, - "DO_NOT_WRAP": 134217728, - "FIT_TEXT": 268435456 + "AUTO_RESIZE": 49152 } }, "m_Flags": { @@ -450933,96 +164795,201 @@ "singleton": false, "pointer": false, "hash": 3091503757 - }, - "m_sText": { - "type": "std::wstring", - "id": 16, - "offset": 584, - "flags": 4194439, + } + } + }, + "1541201065": { + "name": "class FontMapping*", + "bases": [ + "PropertyClass" + ], + "hash": 1541201065, + "properties": { + "m_symbol": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2102642960 + "hash": 2464821841 }, - "m_sTooltip": { - "type": "std::wstring", - "id": 17, - "offset": 616, - "flags": 135, + "m_face": { + "type": "std::string", + "id": 1, + "offset": 104, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1680475798 + "hash": 1717071946 }, - "m_bUseDropShadow": { + "m_italic": { "type": "bool", - "id": 18, - "offset": 653, - "flags": 135, + "id": 2, + "offset": 136, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 93063037 + "hash": 571899305 }, - "m_bUseOutline": { + "m_bold": { "type": "bool", - "id": 19, - "offset": 654, - "flags": 135, + "id": 3, + "offset": 137, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 744292994 + "hash": 221725300 + } + } + }, + "691247614": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 691247614, + "properties": { + "m_loyaltyNumTokens": { + "type": "int", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1274122412 }, - "m_bEnableWordWrap": { - "type": "bool", - "id": 20, - "offset": 655, - "flags": 135, + "m_loyaltyTier": { + "type": "int", + "id": 1, + "offset": 76, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 430904562 + "hash": 186471516 }, - "m_bEnableToggle": { - "type": "bool", - "id": 21, - "offset": 652, - "flags": 135, + "m_loyaltyLastTier": { + "type": "int", + "id": 2, + "offset": 80, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1937994142 + "hash": 848314000 }, - "m_nLeadingAdjust": { + "m_loyaltyNumTokensCanClaim": { "type": "int", - "id": 22, - "offset": 656, - "flags": 135, + "id": 3, + "offset": 84, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1559480167 + "hash": 1792573988 + }, + "m_loyaltyPurchaseHistoryLimit": { + "type": "unsigned int", + "id": 4, + "offset": 88, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2121059751 + }, + "m_loyaltyPurchaseHistoryData": { + "type": "class SharedPointer", + "id": 5, + "offset": 96, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1737702413 + }, + "m_loyaltyPurchaseLimitCountersData": { + "type": "class SharedPointer", + "id": 6, + "offset": 112, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2330097972 } } }, - "1141130397": { - "name": "class HousingSigilBehaviorTemplate*", + "1110416958": { + "name": "class SharedPointer", "bases": [ - "BehaviorTemplate", "PropertyClass" ], - "hash": 1141130397, + "hash": 1110416958, "properties": { - "m_behaviorName": { + "m_level": { + "type": "unsigned char", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1438884808 + }, + "m_xpToLevel": { + "type": "int", + "id": 1, + "offset": 76, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1972600157 + }, + "m_levelName": { "type": "std::string", + "id": 2, + "offset": 80, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3595417396 + } + } + }, + "1979778321": { + "name": "class SharedPointer", + "bases": [ + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 1979778321, + "properties": { + "m_timeOffset": { + "type": "float", "id": 0, "offset": 72, "flags": 7, @@ -451030,1994 +164997,3375 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 3130754092 + "hash": 2237098605 }, - "m_sigilZoneInfoList": { - "type": "class SharedPointer", + "m_actor": { + "type": "std::string", "id": 1, - "offset": 120, + "offset": 80, "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + } + } + }, + "1110024773": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1110024773, + "properties": { + "m_allMods": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 27, "container": "List", "dynamic": true, "singleton": false, "pointer": true, - "hash": 3999162041 - }, - "m_usedDisposableDungeonTemplateID": { + "hash": 3780396482 + } + } + }, + "1544126745": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1544126745, + "properties": {} + }, + "1976896556": { + "name": "class std::list >", + "bases": [], + "hash": 1976896556, + "properties": {} + }, + "1543460596": { + "name": "class CrownShopPurchase*", + "bases": [ + "PropertyClass" + ], + "hash": 1543460596, + "properties": { + "m_templateID": { "type": "unsigned int", - "id": 2, - "offset": 136, - "flags": 7, + "id": 0, + "offset": 72, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 828840861 + "hash": 1286746870 + }, + "m_lastPurchaseTimeSec": { + "type": "unsigned __int64", + "id": 1, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1926562290 } } }, - "1140592359": { - "name": "class PCDialogEntry*", + "691744112": { + "name": "class SharedPointer", "bases": [ - "ActorDialogEntry", + "CrownsRewardsSchedule", "PropertyClass" ], - "hash": 1140592359, + "hash": 691744112, + "properties": {} + }, + "1974931982": { + "name": "class SharedPointer", + "bases": [ + "AnnounceTextCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 1974931982, "properties": { - "m_requirements": { - "type": "class SharedPointer", + "m_timeOffset": { + "type": "float", "id": 0, "offset": 72, - "flags": 263, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3043523229 + "pointer": false, + "hash": 2237098605 }, - "m_dialog": { + "m_text": { "type": "std::string", "id": 1, - "offset": 88, - "flags": 8388639, + "offset": 112, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1858395851 + "hash": 1717580128 }, - "m_picture": { - "type": "std::string", + "m_onlyForPlayer": { + "type": "bool", "id": 2, - "offset": 120, - "flags": 131103, + "offset": 144, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3128322903 + "hash": 249913353 }, - "m_soundFile": { + "m_stringTable": { "type": "std::string", "id": 3, - "offset": 152, - "flags": 131103, + "offset": 80, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2276870852 + "hash": 3386025626 }, - "m_action": { - "type": "std::string", + "m_effectParamMadlib": { + "type": "bool", "id": 4, - "offset": 184, - "flags": 31, + "offset": 146, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1734553689 + "hash": 292989178 + } + } + }, + "2009580485": { + "name": "class SharedPointer", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 2009580485, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 }, - "m_dialogEvent": { - "type": "std::string", + "m_nHeadHandsModel": { + "type": "bui2", + "id": 1, + "offset": 112, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 998846322 + }, + "m_nHairModel": { + "type": "bui4", + "id": 2, + "offset": 116, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1416543510 + }, + "m_nHatModel": { + "type": "bui2", + "id": 3, + "offset": 120, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1927990831 + }, + "m_nTorsoModel": { + "type": "bui2", + "id": 4, + "offset": 124, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1482907529 + }, + "m_nFeetModel": { + "type": "bui2", "id": 5, - "offset": 216, - "flags": 31, + "offset": 128, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2707957549 + "hash": 1832619222 }, - "m_actorTemplateID": { - "type": "unsigned int", + "m_nWandModel": { + "type": "bui2", "id": 6, - "offset": 248, - "flags": 33554463, + "offset": 132, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2134265679 + "hash": 133255964 }, - "m_cameraName": { - "type": "std::string", + "m_nSkinColor": { + "type": "bui4", "id": 7, - "offset": 256, - "flags": 31, + "offset": 136, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3252786917 + "hash": 105936053 }, - "m_interpolationDuration": { - "type": "float", + "m_nSkinDecal": { + "type": "bui4", "id": 8, - "offset": 312, - "flags": 31, + "offset": 140, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1458058437, - "enum_options": { - "__DEFAULT": "1.0" - } + "hash": 106752335 }, - "m_cameraOffsetX": { - "type": "float", + "m_nHairColor": { + "type": "bui7", "id": 9, - "offset": 288, - "flags": 31, + "offset": 144, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1515912895 + "hash": 1404660580 }, - "m_cameraOffsetY": { - "type": "float", + "m_nHatColor": { + "type": "bui5", "id": 10, - "offset": 292, - "flags": 31, + "offset": 148, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1515912896 + "hash": 1916370045 }, - "m_cameraOffsetZ": { - "type": "float", + "m_nHatDecal": { + "type": "bui5", "id": 11, - "offset": 296, - "flags": 31, + "offset": 152, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1515912897 + "hash": 1917186327 }, - "m_pitch": { - "type": "float", + "m_nTorsoColor": { + "type": "bui5", "id": 12, - "offset": 304, - "flags": 31, + "offset": 156, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 896371695 + "hash": 1471286743 }, - "m_yaw": { - "type": "float", + "m_nTorsoDecal": { + "type": "bui5", "id": 13, - "offset": 300, - "flags": 31, + "offset": 160, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 357256328 + "hash": 1472103025 }, - "m_roll": { - "type": "float", + "m_nTorsoDecal2": { + "type": "bui5", "id": 14, - "offset": 308, - "flags": 31, + "offset": 164, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 310020272 + "hash": 1310258307 }, - "m_cameraShakeType": { - "type": "std::string", + "m_nFeetColor": { + "type": "bui5", "id": 15, - "offset": 320, - "flags": 31, + "offset": 168, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1754128882, - "enum_options": { - "": 0, - "Constant": "Constant", - "Quake": "Quake", - "Thud": "Thud", - "End": "End", - "__DEFAULT": 0 - } + "hash": 1820998436 }, - "m_cameraShakeDuration": { - "type": "float", + "m_nFeetDecal": { + "type": "bui5", "id": 16, - "offset": 352, - "flags": 31, + "offset": 172, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 316581010, - "enum_options": { - "__DEFAULT": "0.0" - } + "hash": 1821814718 }, - "m_cameraShakeAmplitude": { - "type": "float", + "m_eGender": { + "type": "enum eGender", "id": 17, - "offset": 356, - "flags": 31, + "offset": 176, + "flags": 2097215, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2179718321, + "hash": 2776344943, "enum_options": { - "__DEFAULT": "0.0" + "Male": 1, + "Female": 0, + "Neutral": 2 } }, - "m_bypassCameraOnReview": { - "type": "bool", + "m_eRace": { + "type": "enum eRace", "id": 18, - "offset": 360, - "flags": 31, + "offset": 180, + "flags": 2097215, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1412905725, + "hash": 963057554, "enum_options": { - "__DEFAULT": 1 + "Bat": 88066, + "BatLightning": 1472842576, + "Boar": 2624962, + "CatThug": 1855674386, + "ChristmasElf": 819908552, + "ChristmasSnowman": 1146515225, + "Colossus_Ice": 1063279538, + "Cyclops": 1691813655, + "DragonBeta": 417003588, + "DragonFriendly": 69049013, + "EvilSnowman": 1579630926, + "FireElf": 443793687, + "Firecat": 2045525741, + "Frog": 2274918, + "FrostBeetle": 7692383, + "GhostBlue": 1097396892, + "GhostGreen": 882822629, + "GhostRed": 560510742, + "GhostYellow": 909974358, + "Ghoul": 82556199, + "GoatMonk": 486215564, + "GolemBrass": 1057388325, + "GolemClockwork": 1143380031, + "GolemSteel": 1660583674, + "GolemWood": 1426849876, + "HalloweenCat": 1042869199, + "Heckhound": 626736403, + "Helephant": 719065368, + "Human": 79806088, + "Hydra": 70785800, + "Imp": 84361, + "Krokomummy": 555755242, + "Kroktut": 1352354178, + "Leprechaun": 2106466410, + "LeprechaunPattyDay": 380507781, + "LightningBat": 228257682, + "Mannequin": 428442544, + "Minotaur": 949570680, + "Mount_Broom": 94637995, + "Mount_Cat": 1150940211, + "Mount_Dragon": 1565720148, + "Mount_Horse": 2054712767, + "Mount_PlayerWings": 589829552, + "Nikkos": 1563122418, + "NinjaPig": 607400740, + "Orthus": 1552590225, + "Piggle": 1897753328, + "Piggle_Valentine": 687697592, + "Piggle_ValentinePart2": 1760391091, + "Pixie": 74836240, + "RatMagician": 885542120, + "SalamanderFire": 48480175, + "SalamanderIce": 2011152164, + "SalamanderStorm": 600331072, + "Satyr": 84793363, + "Scarab": 2143810477, + "Sheep": 86220083, + "SkeletonArmored": 1791586239, + "SnowSerpent": 138621543, + "Spider": 1603064269, + "SpiderBlack": 559353179, + "SpiderBrown": 557941675, + "SpiderCrystal": 2119625297, + "SpiderGolem": 1632616514, + "Sprite": 1889156557, + "SpriteDark": 1888685518, + "Stormzilla": 252684095, + "SunBird": 1602211198, + "Transformation_ArmoredSkeleton": 1861349834, + "Transformation_CatThug": 1175387611, + "Transformation_Cat_Bandit": 1012395694, + "Transformation_ClockworkGolem": 601121214, + "Transformation_Cyclops": 620156297, + "Transformation_DarkFairy": 1206757203, + "Transformation_DraconianSorcerer": 1212016810, + "Transformation_Draconian": 450730089, + "Transformation_EarthColossus": 140119452, + "Transformation_EvilSnowman": 1497097122, + "Transformation_FatGobbler": 634003800, + "Transformation_FireElemental": 822233230, + "Transformation_FireElf": 46585468, + "Transformation_FireSalamander": 2118418114, + "Transformation_Gobbler_Skinny": 162365207, + "Transformation_GolemSteel": 1329184184, + "Transformation_Ice_Colossus": 430406408, + "Transformation_Krokomummy": 1644615769, + "Transformation_MagmaMan": 545064542, + "Transformation_Mander": 88998828, + "Transformation_NinjaPig": 1029132174, + "Transformation_Ninja_Pig_04": 7093548, + "Transformation_RatThug": 1175352795, + "Transformation_RavenMystic": 1443197359, + "Transformation_StormElemental": 637088511, + "Transformation_Treant": 1874998327, + "Transformation_WarPig": 691088645, + "Transformation_WolfScout": 263523463, + "Transformation_WolfWarrior": 6092463, + "Transformationn_SkeletonPirate": 1821341863, + "Treant": 1396597132, + "Troll": 82261620, + "Unicorn": 550546918, + "Unknown": 718677478, + "Wolverine": 528843083, + "Wraith": 1788506505, + "Wyrmkin": 379044612, + "Transformation_CyrusDrake": 94277831, + "PetEgg": 1973167984, + "GhostLady": 493415959, + "Banshee": 827805677, + "GobblerRed": 250135875, + "Ghoul_Gravedigger": 161812468, + "SkeletonWarrior": 734585814, + "BansheeBoss": 806445565, + "Seraph": 1792950125, + "CrabKing": 277875784, + "UndeadCaster": 1680689397, + "DragonFrontier": 1829438301, + "HeckhoundGhost": 872406464, + "Mount_Unicorn": 212699468, + "Jellyfish": 910724608, + "SeaDragon": 1194541306, + "Turtle": 1897184620, + "Starfish": 1447562471, + "SpinyFish": 162948281, + "Mount_Gryphon": 2110522960, + "Mount_Shark": 1170186623, + "Mount_Manta": 979931598, + "Mount_Seahorse": 1554833818, + "Mount_Seahorse_Tough": 1245859453, + "Mount_Koi": 1150937409, + "Mount_Lobster": 2025618875, + "Mount_Turtle": 1490849128, + "VenusFlyTrap": 1612039757, + "GDN_MED_BabyCarrots": 327334743, + "GDN_SM_BoomShroom": 31324632, + "GDN_SM_Dandelion": 2058674142, + "GDN_SM_Disparagus": 1732989489, + "GDN_MED_EvilSnowPeas": 747408607, + "GDN_SM_FicklePickle": 205381955, + "GDN_SM_HappyHolidaisy": 1736236340, + "GDN_MED_HelephantEars": 1803669659, + "GDN_MED_HoneySickle": 424149132, + "GDN_LG_NinjaFig": 847338104, + "GDN_LG_SnapDragon": 1076151689, + "GDN_SM_StinkWeed": 845383431, + "GDN_MED_TrumpetVine": 1922690264, + "GDN_MED_VenusFlyTrap": 1560899638, + "GDN_SM_Laughodil": 1278979588, + "GDN_LG_BreadFruitBush": 533042934, + "GDN_MED_PricklyBearCactus": 1236846986, + "GDN_MED_KingParsley": 110148182, + "LeprechaunPatriotic": 414730890, + "SeraphYuletide": 1325846853, + "DragonGhost": 1502126893, + "UnicornNightmare": 604358256, + "EvilSnowmanSandman": 1579432150, + "Colossus_Spirit": 422514215, + "Rock": 2393554, + "GDN_MED_GivingTree": 2047236132, + "Egg": 70853, + "Mount_Carpets": 1602744888, + "Kraken": 1737191829, + "Wyvern": 1727802601, + "Phoenix": 1765559002, + "Judgement": 562901781, + "ForestLord": 1390734923, + "Humongofrog": 1272123051, + "Scarecrow": 41441599, + "Mount_Ram": 77196599, + "BasketSnake": 1835657086, + "Samoorai": 522797493, + "Transformation_RavenWarrior": 701169336, + "PhoenixStorm": 1325268802, + "PhoenixDeath": 1281634042, + "GDN_LG_CouchPotatoes": 879742725, + "GDN_MED_KeyLimes": 811516024, + "Mount_BoneDragon": 1023618313, + "Mount_BigBoneDragon": 1124383680, + "Mount_FairyWings": 1904926612, + "Mount_DragonWings": 755225925, + "Mount_Pegasus": 1621244140, + "GDN_MED_BellPepper": 1710238687, + "GDN_MED_GrapesOfWrath": 1068787103, + "GDN_SM_TigerLily": 1899057048, + "WysteriaPiggle": 49173891, + "Mount_Wyvern": 1658410744, + "Mount_2P_Rhino": 1052779475, + "NightHawk": 358964390, + "Giraffe": 935214826, + "Mount_Hawk": 2070898895, + "Mount_HalloweenNightmare": 726136378, + "GobblerHalloween": 1482399836, + "Leopard": 1606863715, + "Skink": 76950867, + "Mount_Ostrich": 466111322, + "Mount_Crocagator": 1981222087, + "Transformation_Blacktusk-01": 401543565, + "Mount_Hippogriff": 2043817624, + "Transformation_Gorilla-01": 1555853240, + "Transformation_Gorilla-02": 1606184888, + "Mount_Raven": 94983735, + "Mount_Chrismoose": 1822495199, + "Mount_CandyCane": 1148551147, + "Ivy_League": 925492799, + "GDN_MED_Ivy_League": 1630077794, + "Mount_Kirin": 1168691825, + "GDN_SM_Moonflower": 2068754330, + "GDN_MED_BoonTree": 788055729, + "Snowball": 2046118016, + "Foo_Dog": 1549710807, + "ShenlongDragon": 932676736, + "Monkey": 1233866291, + "Wolfhound": 626884686, + "Redcap": 1540319086, + "Raven": 79941650, + "HollowKnight": 1107268274, + "Book": 2405826, + "GDN_MED_AngoraBunnyEars": 1547559854, + "GDN_MED_FortuneCookieTree": 786686214, + "GDN_MED_GooseTree": 809354938, + "GDN_SM_HoneyBeePlant": 1528880373, + "GDN_MED_BambooShoots": 1096708900, + "GDN_SM_Huckleberries": 1937475840, + "Rock_Moustache": 962221287, + "Efreet_Myth": 1834555522, + "Efreet": 1401700123, + "Mammoth": 1395147745, + "Triton": 1730466188, + "Gnome": 74954215, + "BoneDragon": 429245206, + "Basilisk": 1457899086, + "Chimera": 529027789, + "Transformation_GammaTemplate": 1337834518, + "Mount_Camel": 1168198963, + "Mount_RenaissanceWings": 1049782088, + "Bull_Mount": 1713506759, + "Mount_Owl": 1150938242, + "Mount_Alphyn": 487264165, + "Mount_Stag": 1150353823, + "Mount_Auroch": 509865325, + "Mount_Warg": 1150358072, + "StrangeBeast": 511334734, + "Efreet_Ice": 1820009122, + "Efreet_Storm": 1269986674, + "GDN_LG_AlligatorPear": 1293913372, + "Mount_2P_Treant": 928450863, + "Mount_2P_Dragon": 1431637933, + "Mount_Pogo_Stick_WC": 1462849298, + "Mount_Pogo_Stick_MB": 1349603090, + "GDN_LG_MeltingCheese": 1914589015, + "GDN_SM_FishOnAVine": 1734955358, + "GDN_LG_AngelOak": 1539539424, + "GDN_LG_MeltingCheese_Angel": 1254781264, + "SnowyOwl": 1682262138, + "Mount_3P_Hydra": 1207475250, + "WeaselMinstrel": 1541234616, + "MOUNT_Rickshaw": 938282973, + "Transformation_Sherlock-Bones": 509126601, + "Mount_Phoenix": 556355452, + "Toaddle": 597488187, + "Pantera": 528797696, + "WildfireTreant": 673362041, + "StoneTiger": 746336665, + "Blowfish": 1447737334, + "Smith": 78327187, + "FlyingCat": 1254472614, + "RamWarrior": 536916302, + "Ladybug": 1846384669, + "BurlapBoy": 607590898, + "DeerKnight": 560802130, + "Gargoyle": 1227701700, + "Chameleon": 596131510, + "Scorpion": 1462253104, + "GDN_SM_BoiledPeanuts": 544885684, + "GDN_SM_ClockFlower": 676513046, + "GDN_SM_DeadBeets": 650783482, + "GDN_MED_SnowApple": 1916648180, + "Eyecaramba_Violet": 1804780775, + "Eyecaramba_Green": 750346574, + "Eyecaramba_Orange": 687614854, + "Piggle_Grandfather": 131445665, + "Velociraptor": 1042311818, + "Babydactyl": 1180982194, + "Stegosaurus": 476811765, + "Mount_Pegasus_Spectral": 948250730, + "Mount_2P_Scarydactyl": 1808983335, + "Mount_2P_TRex": 1495851852, + "Therizinosaurus": 80337863, + "Runtosaurus": 476200406, + "FrilledLizard": 420993517, + "Mount_Ankylosaurus": 669692274, + "Mount_Triceratops": 1126950204, + "Mount_2P_Glider": 1630365881, + "Transformation_Thunderhorn": 1045262037, + "Transformation_Jaguar": 1080966062, + "Transformation_Pteranadon": 273836142, + "Transformation_ShadowWeaver": 255927111, + "Transformation_EagleWarrior": 1880471875, + "Mount_Falalalallama": 389890123, + "Mount_2P_WinterTreant": 1850265056, + "GDN_LG_MissileToe": 1767792974, + "GDN_MED_PointSetta": 647257205, + "Nutcracker2012": 1598217699, + "Coal2012": 1627852119, + "Mount_Sleigh": 1636615519, + "Mount_Sabertooth": 1613031507, + "Mount_MechanicalWings": 1014917438, + "PiranhaHunter": 686271163, + "Quetzal": 2020925822, + "Mount_Sloth": 1169387359, + "HollowKnightLife": 2114081886, + "BettaFish": 138088968, + "MummyCat": 62372925, + "TrojanHorse": 1725299194, + "WC_Storm_Possessed": 186960228, + "AV_Possessed": 1106693085, + "AZ_Possessed": 1106692701, + "CL_Possessed": 1106692255, + "KT_Possessed": 1106693015, + "MS_Possessed": 1106692977, + "WC_Possessed": 1106692459, + "Mount_2P_Whale": 448824263, + "Mount_2P_Chariot": 88035298, + "Mount_WarBoar": 1159836211, + "Mount_Palanquin": 47587550, + "BearCub": 672664722, + "Transformation_Minotaur": 1454233452, + "DragonGauntlet": 797645257, + "DeathUnicorn": 924144161, + "Flamingo": 1488424911, + "Mount_Gorilla": 1939919432, + "Mount_WarUnicorn": 1361393198, + "GargoyleMyth": 1819685060, + "TikiMan": 16098567, + "Siren": 79937811, + "GoldenRam": 410220227, + "Harpy": 96026632, + "SwordShield": 1668411785, + "ClockworkKnight": 1059948980, + "Mount_MechanicalEagle": 1720948645, + "Mount_Cloud": 1166233435, + "Mount_Surfboard": 1914250039, + "Mount_BetaDragon": 1023653721, + "Mount_BeeWings": 1387988401, + "Vampire": 524731385, + "FrankenBunny": 589797989, + "BumbleBee": 249592226, + "Mount_Dragonfly": 1028843656, + "BronzeGolem": 1320867859, + "TarantulaHawk": 1983939429, + "Mount_Grasshopper": 1852850928, + "FlyingSquirrel": 847551166, + "GDN_MED_Sunion": 1652707634, + "GDN_MED_SwordFern": 548761438, + "GDN_SM_SugarKhrystal": 267539461, + "GDN_SM_SawPalmetto": 1892888046, + "GDN_LG_FacePalm": 2050814140, + "GDN_LG_QueenCrapeMyrtle": 80378450, + "Transformation_ShadowTank": 1304943609, + "Transformation_ShadowHeal": 1254024185, + "Transformation_ShadowDPS": 87276537, + "Mount_Noelephant": 1383672248, + "SaintBernard": 572932242, + "ParkaFox": 2009808189, + "Goose": 75019719, + "Mount_Coconut": 791151432, + "CreepyBeetle": 345594179, + "BabyDragonfly": 1367084335, + "FennecFox": 41315063, + "PP_Leviathan": 833901526, + "PP_SunSerpent": 1062677009, + "PP_LordOfWinter": 960214698, + "PP_Medusa": 867812931, + "PP_Dryad": 147654656, + "PP_AvengingFossil": 315904647, + "PP_Sabertooth": 1799146677, + "Mount_Butterfly": 1283940943, + "Mount_Hare": 2070851023, + "Transformation_MorganthB": 197306990, + "Transformation_MorganthC": 197831278, + "Transformation_MorganthD": 200452718, + "BabyPegasus": 1215000859, + "ArcaneHelp": 1899247549, + "Mount_Vines": 98389624, + "Mount_ArcaneMinecart": 2001270930, + "Hobgoblin": 2133668461, + "Mount_2P_Rowboat": 237071469, + "ForestSpirit": 1178454602, + "Mount_SpiritWolf": 531991076, + "Otter": 84138671, + "OrigamiBird": 550984083, + "DinoSkeletal": 233277835, + "Mount_HarrowingsGreen": 1605746772, + "Mount_HarrowingsBlue": 477152436, + "Mount_HarrowingsPurple": 2092807554, + "RedPanda": 1744233845, + "Ibis": 2665577, + "Corgi": 78823875, + "Mount_Yak": 996545739, + "Mount_FlyingBalance": 436519643, + "Transformation_ShadowMalistaire": 1043814435, + "Transformation_DragonMalistaire": 841867699, + "Mount_Scarab": 1687658791, + "Transformation_MisterHound": 1973578844, + "Mount_BahHumbug": 55114077, + "Skates": 1568993965, + "Moose": 75019725, + "Mount_Gargoyle": 1456663874, + "GDN_MED_VenusFlyTrapEpic": 1594069606, + "Mount_PlayerWingsPink": 19403046, + "GDN_LG_AlligatorPearEpic": 1326804812, + "Pet_Armadillo": 825736847, + "Mount_JoustingDestrierDyeable": 1683448768, + "GDN_MED_VampireCarrots": 871596496, + "GDN_SM_WhiteTigerLilyEpic": 1703271434, + "GDN_LG_NinjaFigEpic": 938504823, + "GDN_LG_SnapDragonEpic": 2071674466, + "GDN_MED_HelephantEarsEpic": 719166107, + "GDN_MED_TrumpetVineEpic": 225854518, + "GDN_SM_DandelionEpic": 728637442, + "GDN_SM_HuckleberriesEpic": 1903258448, + "GDN_MED_SnowAppleEpic": 1231175967, + "GDN_SM_BoomShroomEpic": 981598771, + "GDN_MED_KingParsleyEpic": 2038371004, + "Mount_Raptor": 749695031, + "Pet_Toucan": 581477475, + "Pet_Squirrel": 969881395, + "Mount_WonkyDonkey": 1481657312, + "Mount_HawkPatriotic": 509149743, + "Pet_FrogAssistant": 1945041750, + "Mount_Cat2": 1151054899, + "Mount_Cat2BW": 1603515443, + "Pet_ArmadilloBW": 825733899, + "Pet_FrankieForearms": 1100195857, + "Mount_SolarSabre": 1281093703, + "MNT_MechOstrich": 258667969, + "MNT_BootsBalance": 1799191558, + "MNT_BootsDeath": 1034912971, + "MNT_BootsFire": 606061658, + "MNT_BootsIce": 2142643294, + "MNT_BootsLife": 773751898, + "MNT_BootsMyth": 144792486, + "MNT_BootsStorm": 1525245121, + "Pet_CorgiBirthday": 1951779369, + "OrigamiBirdBDay": 1909935955, + "Pet_FlyingBlackCat": 432111988, + "Mount_Narwhal": 449637834, + "Mount_NightOwl": 1648420845, + "Pet_Penguin": 137342907, + "MNT_PowerGemUnicorn": 411234062, + "Pet_CrystalButterfly": 512136094, + "Mount_BabyMammoth": 185831059, + "MNT_BabaYaga": 564874997, + "Pet_BabySeal": 657606984, + "Pet_BabyYeti": 635847496, + "Transformation_BallerinaBear": 1525333600, + "Mount_StagYuletide": 1508680687, + "Transformation_TitanMedium": 1700742736, + "Transformation_TitanLarge": 718614967, + "Pet_SirenIce": 849851564, + "Mount_FlyingDeath": 1717725588, + "Mount_FlyingFire": 1177216332, + "Mount_FlyingIce": 1238841184, + "Mount_FlyingLife": 433397684, + "Mount_FlyingMyth": 164983572, + "Mount_FlyingStorm": 375872049, + "Dragonling": 1730534849, + "Pet_EggChicken": 952873217, + "HeckhoundGhost_MAW": 893368960, + "Mount_WinterTrain": 751515281, + "Mount_RubberDucky": 1826548479, + "Pet_BansheeSpellwrit": 917979583, + "Pet_SamooraiSpellwrit": 370057597, + "Mount_UnicornAstral": 886914505, + "Guest_Boochbeard": 1958574095, + "Pet_MouseSister": 1267930350, + "Pet_MouseFather": 2010008339, + "Pet_VampireSquirrel": 250588691, + "Mount_CoffinCar": 1387606595, + "Mount_BabyElephant": 2026559639, + "Pet_RoadHog": 601156960, + "Mount_WolfGryphonWings": 543038283, + "MNT_ClockworkSteed": 891371132, + "Mount_Chopper": 1196683136, + "Pet_ButterflyLamb": 527214392, + "Pet_MouseMother": 2012687123, + "Pet_MouseBrother": 1174380856, + "Pet_Cherub": 769208559, + "GDN_SM_Jewel": 1104045832, + "MR_Death_Duncan_Grimwater": 1850289001, + "Mount_DesertRunner": 2049036229, + "Pet_MonkeyMirage": 418612892, + "Pet_ClockworkOwl": 1038482431, + "Pet_NinjaTurtle": 2024540686, + "Mount_Vines_Halloween": 82852149, + "Mount_SwarmBat": 1151836459, + "Mount_2P_NinjaDragon": 1239694057, + "Mount_Gobler": 1820615236, + "Mount_MaryleboneCar": 2027689685, + "JackOLantern": 1016361578, + "Transformation_DjinnCommonA_Balance": 996127128, + "Transformation_MedicineMode": 25960701, + "CactusHopper": 1956293007, + "Transformation_Mimic_ChestGold_A": 414145432, + "Mount_Ghoulture": 1067671195, + "Pet_Macaw": 1087278472, + "Pet_SandWorm": 653200803, + "Transformation_DromelDancer": 1071824116, + "Pet_Bunnies": 695874547, + "Mount_Snowboard": 1914380015, + "Transformation_DrommelDancer": 226294468, + "Mount_Carpet_New": 1618650322, + "Mount_BunnySleigh": 599915427, + "Helephant_Heart": 419161272, + "Mount_Snowboard_Holiday": 876339060, + "Transformation_GhostDog": 646575420, + "Transformation_PrinceGobblestone": 693826496, + "Transformation_Mithraya": 1240010601, + "Transformation_LuskaCharmbeak": 897469730, + "Transformation_YoungCyrusDrake": 15595663, + "Kookaburra": 1069759154, + "BorealisGolemPet": 797488492, + "FlyingEyePet": 505959833, + "StormCloudPet": 548463069, + "BullPet": 1993917801, + "OpossumPet": 284003652, + "GhoulturePet": 939920734, + "StormCloudPetB": 548463001, + "StormCloudPetC": 548463003, + "Guest_LordNightshade": 1221409981, + "BullPetB": 1993917561, + "BullPetC": 1993917553, + "BullPetD": 1993917513, + "Transformation_ShadowCrit": 1392195065, + "Mount_Pennyfarthing": 1551926344, + "Mount_RowboatPirate": 2079208803, + "Mount_IceCube": 1261861595, + "Guest_LostMaiden": 883675592, + "Guest_BoatswainMcGee": 1359750850, + "Guest_ChiefMateMcGurk": 329643845, + "Guest_DoomedBones": 2015643882, + "Guest_SpectreoftheBrocken": 266357448, + "Guest_DrownedKnight": 1100966093, + "Guest_TarntheDrowned": 329540205, + "Guest_DisloyalKnight": 1853240753, + "Guest_NamelessKnight": 1065677876, + "Guest_LambentFire": 489886605, + "Guest_LordoftheBrocken": 1662003371, + "Guest_StormCaiman": 1147500291, + "Guest_GrinningDeathMoon": 737595789, + "Guest_MoonSkullWight": 1720039490, + "Guest_HuemacSpearWreath": 1522021131, + "Guest_HowlingBanshee": 1340855338, + "Guest_Sea-Booter": 1818491983, + "Guest_DeadRover": 1009273257, + "Guest_CelestianRemnant": 1312268448, + "Guest_Shadow-WebConscript": 1500529411, + "Guest_Shadow-WebMercenary": 623672171, + "Guest_Shadow-WebWraith": 810956416, + "Guest_Shadow-WebHaunt": 500586883, + "Guest_CelestianPartisan": 633346892, + "Guest_CelestianDefender": 482102727, + "Guest_ThraleBonestriker": 1172972733, + "Guest_VorgenSoulbreaker": 1935693246, + "Guest_ServusBloodsword": 1703995647, + "Guest_QueenCalypso": 845803519, + "Guest_BlueBart": 77043390, + "Guest_KarolakNightspinner": 1008737316, + "Guest_ArachtusDuskweb": 1787750209, + "Guest_ZhalarStarcloud": 1453644105, + "Guest_NarallorNightborn": 1963363700, + "Guest_SelwynSkywatcher": 1413136893, + "Guest_OsseusNightreaver": 306827003, + "Guest_IrateBanshee": 865143109, + "Guest_FuriousHowler": 1607252558, + "Guest_CryingSpirit": 1559074820, + "Guest_UndeadDraconian": 169249571, + "Guest_ReanimatedDraconian": 247067807, + "Guest_GhastlySlave": 80127661, + "Guest_BoundSpecter": 369706568, + "Guest_NecroticHaunter": 1714841563, + "Guest_LoathsomeCreeper": 1087245229, + "Guest_FleshrotRetriever": 1925148031, + "Guest_BarbarianSpirit": 2112552732, + "Guest_BeghastionCrowcaller": 586628832, + "Guest_BeghastionFieldburner": 1650751959, + "Guest_BoneWarrior": 76802026, + "Guest_FleshlessSentry": 708431820, + "Guest_PirateRavager": 945157059, + "Guest_RottenScallywag": 974666855, + "Guest_ArmoredBonewalker": 1444568072, + "Guest_UndeadWizard": 1622435563, + "Guest_SoulSearcher": 2094392941, + "Guest_DecayingBlackguard": 412324062, + "Guest_FoulReaper": 919877614, + "Guest_NightShadow": 1675932226, + "Guest_MotleyCrew": 653779218, + "Guest_OrinGrimcaster": 472649066, + "Guest_GhostofSylviaDrake": 218332449, + "Guest_VikaMarkmaker": 1145181168, + "Guest_VasekAshweaver": 1001434369, + "Guest_FireWraith": 1027720368, + "Guest_HungrySoul": 1722435576, + "Guest_FrostBones": 456145606, + "Guest_SnowSkull": 835837850, + "Guest_WinterSkull": 1556601065, + "Guest_LothinDoombringer": 860995070, + "Guest_MimirWinterbane": 1111898070, + "Guest_KulgrimSoulsunder": 278037985, + "Guest_HitojiniDeathcaster": 1144499043, + "Guest_GaikotsuSkeleton": 1113949902, + "Guest_PhantomAce": 1917639347, + "Guest_PhantomGlider": 849918336, + "Guest_Krokomummy": 857773886, + "Guest_NiriniAncientGuard": 359313880, + "Guest_NiriniFireSpirit": 1863811476, + "Guest_VaultHaunter": 197723476, + "Guest_VigilantDefender": 171276829, + "Guest_WanderingAhnicSpirit": 1702865088, + "Guest_ForgottenDjeseritSoul": 1170568256, + "Guest_KaranahnDeathfeeder": 1612857711, + "Guest_ShamblingAhnic": 1579129677, + "Guest_RisenDjeserit": 287855500, + "Guest_KaranahnMortifier": 874288111, + "Guest_DjeseritDweller": 2058423665, + "Guest_AhnicStrider": 1776992302, + "Guest_GuardianoftheFang": 1816795524, + "Guest_DefenderoftheFang": 354353604, + "Guest_ProtectoroftheFang": 1290191037, + "Guest_SouloftheCharmed": 422890577, + "Guest_KaranahnKeeper": 77581557, + "Guest_NiriniIntimidator": 677205957, + "Guest_CondemnedSoldier": 449152244, + "Guest_NimahtheWicked": 1298248873, + "Guest_AkoriNirini": 1123159753, + "Guest_SoulScavenger": 892852198, + "Guest_KeeperoftheFang": 1676773499, + "Guest_ItennuSokkwi": 699159408, + "Guest_Tempestra": 334938435, + "Guest_QueenIrisiDjeserit": 1861434100, + "Guest_TheBonekeeper": 1302503449, + "Guest_CryptScavenger": 1893795791, + "Guest_Soulsapper": 1699756010, + "Guest_KingUroAhnic": 1788825731, + "Guest_KingShemetDjeserit": 1350067043, + "Guest_UnholyWraith": 1871146013, + "Guest_PikeSpiritcrusher": 498715531, + "Guest_SpellwritScreamer": 801626733, + "Guest_SpellwritRonin": 1671439174, + "Guest_Shrieker": 805966229, + "Guest_GravePhantom": 731622936, + "Guest_NightmareSpirit": 230709057, + "Guest_VengefulCreeper": 1100197884, + "Guest_TombRoamer": 1277825068, + "Guest_ShieldSkeleton": 1634270152, + "Guest_AgonyWraith": 30384496, + "Guest_IcyGhost": 768353592, + "Guest_Half-wittedSkeleton": 647996362, + "Guest_LazyHenchman": 1329554426, + "Guest_TiredFighter": 210248632, + "Guest_Screecher": 469007005, + "Guest_SeethingWraith": 664913100, + "Guest_ColdConfusion": 1304943934, + "Guest_OssuaryConscript": 1017667150, + "Guest_Ghulture": 1330558655, + "Guest_BodyGuard": 1048581801, + "Guest_SpectralGuardian": 422805602, + "Guest_VaultConscript": 1388398065, + "Guest_FootPatrol": 1692393321, + "Guest_ArmedGuard": 2045920536, + "Guest_Chilly": 1764665905, + "Guest_Achey": 973370519, + "Guest_Sneezy": 1769440773, + "Guest_Cough": 1170200073, + "Guest_Shadowbones": 1316133167, + "Guest_ForgottenConscript": 1466348281, + "Guest_BarracksGuardian": 236603440, + "Guest_CryptConscript": 314755436, + "Guest_DurvishSeeker": 1825622267, + "Guest_MedicineMode": 167015574, + "Guest_Myriarch2": 593881680, + "Guest_Myriarch3": 593881616, + "Guest_MyriarchEphialtes": 773531895, + "Guest_MotherGhulture": 1585201915, + "Guest_CaptainCosrow": 727107332, + "Guest_VizierRafaj": 214040637, + "Guest_DarkmoorSerf": 1522169114, + "Guest_DarkmoorSquire": 1822567109, + "Guest_ScarletWampyr": 1683954247, + "Guest_DraconianRevenant": 741497298, + "Guest_DraconianEidolon": 107733297, + "Guest_AnguishedWraith": 1078602022, + "Guest_DraconianPyromancer": 729577007, + "Guest_DraconianThaumaturge": 189734361, + "Guest_DraconianDiviner": 472633746, + "Guest_DraconianConjurer": 1824962835, + "Guest_DraconianTheurgist": 1828628416, + "Guest_DraconianNecromancer": 175364324, + "Guest_DraconianSorcerer": 1262893339, + "Guest_SirBlackwater": 366308464, + "Guest_AkhtangWormCrawl": 1589032404, + "Guest_SpiritofDarkmoor": 579455915, + "Guest_ShanevonShane": 2096517522, + "Guest_YevgenyNightCreeper": 1535282881, + "Guest_MalistairetheUndying": 824508513, + "Guest_Bunferatu": 1015806005, + "Guest_CountBelaBlackSleep": 761647679, + "Guest_DeathSoldier": 1715141574, + "Guest_SorrowWhisperer": 556532003, + "Guest_GriefSpectre": 1425488559, + "Guest_HowlingShade": 631460247, + "Guest_WalkingDead": 318527090, + "Guest_Akuji": 977635799, + "Guest_TorturedKakedaSoul": 1716874833, + "Guest_KakedaSpiritSlave": 1814699344, + "Guest_DishonoredSamoorai": 320085744, + "Guest_CursedRonin": 1204095686, + "Guest_TomugawatheEvil": 166125424, + "Guest_OyotomitheDefiler": 1672714483, + "Guest_Fushiko": 801492770, + "Guest_BrokenLandGuardian": 294671991, + "Guest_ShatteredSkyGuardian": 746681463, + "Guest_SunderedSeamGuardian": 1439618652, + "Guest_BrokenLandSpirit": 860105895, + "Guest_ShatteredSkySpirit": 2104112380, + "Guest_SunderedSeamSpirit": 69572311, + "Guest_LostSoul": 204361577, + "Guest_RottingFodder": 308249734, + "Guest_HauntedMinion": 689597338, + "Guest_FieldGuard": 1175228991, + "Guest_SkeletalWarrior": 778393993, + "Guest_SkeletalPirate": 1476730220, + "Guest_WanderingSpecter": 126188449, + "Guest_LivingScarecrow": 1442943145, + "Guest_FrostPhantom": 1809776664, + "Guest_FireShrieker": 173332719, + "Guest_CryptCrawler": 2118799272, + "Guest_ViridianSpecter": 383149977, + "Guest_ArgentClatterer": 525414714, + "Guest_SwimmingSpecter": 1494025094, + "Guest_ScarletScreamer": 1689589811, + "Guest_BoneDigger": 1351421123, + "Guest_HowlingGhost": 664019391, + "Guest_SkeletalSoldier": 750463116, + "Guest_MaidenofHate": 444442868, + "Guest_SkeletalRetainer": 1409032775, + "Guest_SoulHunter": 1900267551, + "Guest_MidnightShuffler": 1991052065, + "Guest_PlaguedSoul": 419071561, + "Guest_HauntingBanshee": 345837052, + "Guest_SimontheSayer": 1352807820, + "Guest_TheHarvestLord": 1923575206, + "Guest_LadyBlackhope": 1403431623, + "Guest_SergeantSkullsplitter": 898737831, + "Guest_Foulgaze": 2063419769, + "Guest_Wormguts": 788697519, + "Guest_Rattlebones": 125602919, + "Guest_Paulson": 1112716921, + "Guest_Grubb": 1167554274, + "Guest_Norton": 581021964, + "Guest_NightStalker": 1447653309, + "Guest_AddereTimeo": 1491420030, + "Guest_TheReaper": 1526369733, + "Guest_AngrusHollowsoul": 1427862805, + "Guest_OrrickNightglider": 951078615, + "Guest_SteelSentinel": 885250894, + "Guest_Shadow-WebSoldier": 2014925398, + "Guest_LostCeleste": 1725301830, + "Guest_CapnNigelSkullcrack": 1665439970, + "Guest_HaulAwayJoe": 1075985331, + "Guest_OldMaui": 15300840, + "Guest_LordAgue": 140791419, + "Guest_MelweenaSmite": 432188189, + "Guest_HalloweenTrickster": 2043736417, + "Guest_PumpkinHead": 1098332105, + "Guest_BaronMordecai": 817370918, + "Guest_KaimaniteMummy": 1332671420, + "Guest_VeggieRevanant": 928504192, + "Guest_BloodBat": 76467389, + "Guest_DeadBeets": 157829578, + "Guest_Desparagus": 1130644076, + "Guest_MeanestFly-Trap": 1652898868, + "Guest_Nosferabbit": 1021159436, + "Guest_ThrallofSothmekhet": 330780177, + "Guest_VileApparition": 426627869, + "Guest_SoulServant": 1183110886, + "Guest_SoulKeeper": 917518313, + "Guest_AdmiralBontau": 2032168402, + "Guest_DeathWhisperer": 3814952, + "Mount_RollerBlades": 111369373, + "Guest_BaneWyrm": 147033576, + "Guest_BlackDragon": 939469656, + "Guest_DragonSpawn": 1829803517, + "Guest_Fire-SpitterSpawn": 616624489, + "Guest_CaoranachtheFire-Spitter": 323513000, + "Guest_Jabberwock": 1552492834, + "Guest_CatalantheLightningLizard": 1155778705, + "Guest_WhiteDragon": 2009449331, + "Guest_WinterWyrm": 478925069, + "Guest_WyrmStatue": 2119216210, + "Guest_AlgidWyrm": 1309546482, + "Guest_BruleeSucre": 390936202, + "Guest_HebitohoWyrmling": 1682026810, + "Guest_Shadowwock": 505539184, + "Guest_EirikurAxebreaker": 1361453552, + "Guest_WarWyrm": 1124740742, + "Guest_StrayFireflier": 610979811, + "Guest_BurningFlamewing": 2041225130, + "Guest_FeralLavaling": 371483057, + "Guest_SplinterWing": 923421333, + "Guest_ChanticoBlueAir": 1572441903, + "Guest_CopperWingGuard": 302783602, + "Guest_ObsidianBeak": 2016227452, + "Guest_CaquixNineShadows": 2070101060, + "Guest_LustrousTlalocan": 1201030473, + "Guest_SeedThief": 263211181, + "Guest_PopZotzUnluckyDay": 1416773489, + "Guest_NezathePoet": 1905861376, + "Guest_MazenStingerBee": 1642023393, + "Guest_ImperialJusticePayne": 1285679745, + "Guest_AssistantWardenPorfiry": 22099059, + "Guest_MarshalKamensky": 524669730, + "Guest_WardenVissarovich": 882556823, + "Guest_GulagGuard": 100744159, + "Guest_CaptainKravchuck": 690830770, + "Guest_ImperialGuard": 346803640, + "Guest_IronPaw": 1797329688, + "Guest_TundarianEnforcer": 134256836, + "Guest_Ivan": 996220221, + "Guest_ColonelOrlov": 1381254189, + "Guest_IronPawIntakeCaptain": 2099184835, + "Guest_SolitaryWarden": 1503529566, + "Guest_CaptainZubkov": 793725366, + "Guest_SergeantBobrik": 722182485, + "Guest_WailingWraith": 946976407, + "EggChick": 1452316301, + "BunnyMallow": 518233330, + "Guest_ThunderHornZombie": 1007920040, + "Guest_SmokingMirrorZombie": 340971759, + "Guest_ShamblingZombie": 1920485146, + "Guest_MoonSkullZombie": 809249764, + "Guest_DeathlessStormHorn": 812397213, + "Guest_MozarTurtleHunter": 561749043, + "Guest_GuillermoShatterer": 499565054, + "Guest_XiuhcoatlBarbedTooth": 1719245305, + "Guest_AzcalFireAnt": 1281366337, + "Guest_TlotzinMoonThief": 407285761, + "Guest_PocaCruelStar": 1117353085, + "Guest_ThunderHornGhoul": 597878999, + "Guest_TezomocStoneSinger": 733511940, + "Guest_EzhuaBadTaste": 632779219, + "Guest_UacalxochitlBloodEye": 1614856226, + "Guest_WanadiBlackSky": 349829749, + "Guest_ElMarrow": 483880636, + "Guest_GrimCalaca": 1534029144, + "Guest_XipeFlayedOne": 1343577398, + "Guest_MotecumaDeathMask": 1782393717, + "Guest_EkeChuah": 13416770, + "Guest_AnacaonaBlackSnake": 1543344897, + "Guest_SmokingMirrorWight": 776452983, + "Guest_Tolkemec": 217428080, + "Mount_Fox": 77199428, + "PP_OwlProtege": 268847192, + "Mount_SharkSki": 331374103, + "PP_Dolphin": 1662291612, + "Mount_CastSymbol_D": 1134428045, + "Mount_CastSymbol_E": 1136525197, + "Mount_CastSymbol_F": 1138622349, + "Mount_CastSymbol_G": 1140719501, + "Mount_CastSymbol_A": 1128136589, + "Mount_CastSymbol_B": 1130233741, + "Mount_CastSymbol_C": 1132330893, + "Guest_LionSpectralGuardian": 1791543691, + "Guest_KillmareSpiritwalker": 1818928165, + "Guest_ZebraSpectralGuardian": 815933596, + "Guest_GorillaSpectralGuardian": 1635182119, + "Guest_IklawGhostWarrior": 373465545, + "Guest_BwanaShadowriver": 1307628747, + "Guest_ElephantSpectralGuardian": 1579402208, + "Guest_ZangaZebu": 1218173119, + "Guest_GrumishGreataxe": 486953385, + "PP_GlowFairy_A": 2028856748, + "Guest_RestlessSoldier": 1142701763, + "Guest_WanderingWizard": 209518514, + "Guest_ColonelIvanenko": 399169035, + "Guest_DetollitheDestroyer": 655767295, + "Guest_Jawniak": 1791298433, + "Guest_Tajniak": 356182394, + "Guest_Ygor": 996316081, + "Guest_KyaniteLancer": 2136703656, + "Guest_VestaShadowmark": 1846747836, + "Guest_ZoraSteelwielder": 1186470644, + "Guest_AndorBristleback": 1949884743, + "Guest_GalliumPaladin": 1812340868, + "Guest_GalliumFootman": 1295203112, + "Guest_GalliumShardtrooper": 1210699836, + "Guest_GalliumJuggernaut": 3527584, + "Guest_VladimirDarkflame": 1575322237, + "Guest_KyaniteLieutenant": 561528977, + "Guest_DrusillaMorningbane": 155837810, + "Guest_KyaniteValkyrie": 53242136, + "Transformation_20Q_SherlockBones": 1112674320, + "Guest_DevoraShadowcrown": 1813459117, + "Guest_YoualaNightDrinker": 881289828, + "Guest_Pendragon": 715669945, + "Guest_CelestianRevenant": 515730327, + "Guest_SoullessServant": 1505662730, + "Guest_SpiritServant": 104517373, + "Guest_SoulSerf": 1188214406, + "Guest_ServileSoul": 871844607, + "Guest_SkeletalCorsair": 239414410, + "Guest_RottedFodder": 1301186193, + "Guest_ScarletScreecher": 600457915, + "PP_FrankBunnyBride_A": 974707030, + "Guest_BastillaGravewynd": 2100015237, + "Guest_VilaraMoonwraith": 2067986693, + "Guest_YngvarSharptooth": 1783361972, + "Guest_TroubledWarrior": 1569033392, + "Guest_VeggieRevanant2": 928503904, + "Guest_VeggieRevanant3": 928503888, + "Guest_VeggieRevanant4": 928503872, + "Guest_VeggieRevanant5": 928503856, + "Guest_AncientQhatWarrior": 1564521104, + "Guest_EmperorPaleolo": 2079384347, + "Guest_SpiritofIntolerance": 1627658048, + "Guest_SpiritofInquiry": 1320544891, + "Guest_FirstGuardian": 1982227776, + "Guest_FallenMerc": 225926286, + "Guest_NightShadow2": 1638183490, + "Guest_NightShadow3": 1636086338, + "Guest_NightShadow2-2": 1436856907, + "Guest_NightShadow3-2": 1434759755, + "Guest_NightShadow4-2": 1432662603, + "Guest_NightShadow5-2": 1430565451, + "Guest_NightShadow6-2": 1428468299, + "Guest_NightShadow7-2": 1426371147, + "Guest_FirstScythe": 738854032, + "Guest_GreyMantisCaptain": 860186057, + "Guest_GreyMantisHunter": 1239274377, + "Guest_Atlach-Leng": 836136649, + "Guest_PetrovGloomstrider": 2045783873, + "Guest_NauyotolDownIntheHole": 1134251106, + "Guest_SandorSpearcaller": 1351072377, + "Guest_MavraFlamewing": 1477685600, + "Guest_Scaldling": 208751819, + "Guest_WoebegoneWraith": 1166488705, + "Guest_BorisBlackrock": 1365399915, + "Guest_KatiaFirewinter": 521255834, + "Guest_ValerikBrightsword": 1244055782, + "Guest_RurikFlamesoul": 1962726850, + "Guest_IonaPyrelance": 722266491, + "Guest_DarkPoltergeist": 818162178, + "Guest_TheCollector": 1772287612, + "Guest_ViktorSnowcrusher": 1028387381, + "Guest_ValeskaRedwind": 19316351, + "Guest_ScarrikGallowgaunt": 105397333, + "Guest_Neberyx": 1453883041, + "Guest_AsrikWidebelt": 401936422, + "Guest_GothricHonorbound": 750072340, + "Guest_HalfangBristlecrown": 618779562, + "Guest_OsvudFleetpaw": 1023466459, + "PP_PufferFish_A": 1578606029, + "Guest_OzelUnderwaterCat": 1033669302, + "PP_BabyGreenMan_A": 910025246, + "PP_SchoolTurtle_A": 1012620678, + "PP_DarkBalloon_A": 1229308566, + "MT_JetsamCopter": 92127678, + "Mount_4P_DarkClownCar": 420246262, + "MNT_BalloonsBunch": 2000358474, + "Guest_TempleGuardian": 632574316, + "Guest_TemplePhantom": 1701097840, + "Guest_MahonStarsearcher": 1549093341, + "Guest_LostKnight": 858980994, + "Guest_AnguishedWoodman": 174606918, + "Guest_TormentedTreant": 294050331, + "Guest_WildfireTreant": 1902129818, + "Guest_BlightedYaxche": 679097088, + "Guest_Junglethorn": 1734561424, + "Guest_Tangleroot": 2027061721, + "Guest_BlightedFreerooter": 1109803061, + "Guest_Winterbranch": 1170787806, + "Guest_DecayingBogwalker": 1338670789, + "Guest_BrownwoodTormentor": 1655181754, + "Guest_Wildroot": 1839747182, + "Guest_Ironsplinter": 668295157, + "Guest_Frostbranch": 75974631, + "Guest_KyoukonteiTreant": 474446232, + "Guest_BrokenStumps": 414724364, + "Guest_WordlessWoodsmen": 1813881830, + "Guest_DesiccatedTreebeard": 1826942903, + "Guest_ShadowoftheLand": 1612385317, + "Guest_TreeRoot": 1406633546, + "Guest_BefouledWoodwalker": 1517919498, + "Guest_ConfusedForestWarrior": 750805985, + "Guest_CrazedForestSpirit": 1007960507, + "Guest_Oakheart": 1158293719, + "Guest_SnowTreant": 1028620035, + "Guest_Snowbeard": 1997921701, + "Guest_BarkskinTreant": 2143957812, + "Guest_RazorleafTreant": 2133159197, + "Guest_CarrionFlowerMan": 1120698936, + "Guest_Kurokage": 355651925, + "Guest_LacombeStrawHouse": 568809873, + "Guest_BerkshireStickHouse": 1932133405, + "Guest_TamworthBrickHouse": 894027634, + "Guest_RustyTinderSpark": 1237916230, + "Guest_CoraWinterBranch": 1901918989, + "Guest_GrambleGoldRook": 1986988546, + "Guest_PiperStormTree": 1109520133, + "Guest_Hanadzura": 124838500, + "Guest_Kuchisaki": 2084188681, + "Guest_Kaizoku": 807430784, + "Guest_JaxonLastRites": 1653711119, + "Guest_SeijunKiller": 657647155, + "Guest_ZarichiTarakata": 1129212566, + "Guest_BladelessRonin": 1577395797, + "Guest_SanzokuOutlaw": 1682888807, + "Guest_SanzokuBandit": 1766198653, + "Guest_KakedaPainbringer": 1260119278, + "Guest_KakedaStalker": 367458449, + "Guest_KakedaShadow": 1604499626, + "Guest_KakedaSoulcrusher": 1961168112, + "Guest_ImitsuPlaguemaster": 1361539025, + "Guest_ImitsuDefouler": 1299791045, + "Guest_ImitsuPunisher": 234819300, + "Guest_StudentofKhai": 249757647, + "Guest_OtomoBattlemage": 918160114, + "Guest_OtomoCourier": 1373253378, + "Guest_OtomoSupplyRunner": 1580070577, + "Guest_OtomoScout": 1814051082, + "Guest_OtomoWrestler": 1053571230, + "Guest_OtomoFury": 111319603, + "Guest_Hyottoko": 307080225, + "Guest_Usunoki": 1881339626, + "Guest_Kagemoosha": 1842766119, + "Guest_UdoJin-e": 850816224, + "Guest_TakedaKanryu": 536087422, + "Guest_Tamauji": 818613882, + "Guest_Jikiru": 794167355, + "Guest_Nomoonaga": 849534658, + "Guest_Aiuchi": 515942855, + "Guest_Kurogaso": 1426248002, + "Guest_Ideyoshi": 1814038213, + "Guest_Koto": 1151260427, + "Guest_Usegi": 977549586, + "Guest_Kanago": 1644367227, + "Guest_Kyuto": 1168225979, + "Guest_Haru": 2070048389, + "Guest_Ashikata": 1523446928, + "Guest_Katsumori": 1823914597, + "Guest_Hingen": 1567896261, + "Guest_Yakedo": 502298497, + "Guest_Do-Daga": 1239945714, + "Guest_Maito": 979260804, + "Guest_TonkatsuThug": 1758658397, + "Guest_GobbloreanGuard": 1286210991, + "Guest_BabblingMeints": 413418139, + "Guest_PrinceGobblestone": 1813171676, + "Guest_GobblerMuncher": 1517159487, + "Guest_GobblerGorger": 130736772, + "Guest_GobblerScouter": 1509427587, + "Guest_GobblerGlutton": 1912199781, + "Guest_GobblerScavenger": 136586791, + "Guest_BaronGreebly": 1028182200, + "Guest_BaronRotunda": 457132907, + "PP_DeathMimic": 1811942047, + "Guest_GreenMan": 1126663802, + "Guest_ForestGrump": 1602350320, + "Guest_ErvintheBarbarian": 1671762776, + "Guest_RazortuskWarrior": 1109994549, + "Guest_RazortuskBrawler": 732265321, + "Guest_SplithoofRager": 1922134329, + "Guest_TuskedRaider": 1920114147, + "Guest_SviniBeserker": 1146317608, + "Guest_SviniReaver": 216717251, + "Guest_Shattertusk": 1191456730, + "Guest_SplithoofBarbarian": 296671728, + "Guest_Bloodseeker": 2086598239, + "Guest_Scarsnout": 1831766077, + "Guest_MasterTonkatsu": 1783298894, + "Guest_Grisletusk": 657393295, + "Guest_SplithoofBloodguard": 488382274, + "Guest_BristlehideRaider": 237078958, + "Guest_Gullin": 1656401882, + "Guest_ForestNymph": 812055814, + "Guest_SassafrasMan": 1327049788, + "Guest_RandolfSpellshine": 108808620, + "Guest_BleysFlamerender": 434070106, + "Transformation_Khan": 1398327634, + "Transformation_TheBat": 1675113521, + "MNT_DireWolf": 845578449, + "MNT_YuleMule": 1976182058, + "MNT_LightBlades": 829118450, + "MNT_FlyingSquid": 1573132252, + "PP_Globulin": 467801224, + "PP_BeastBaby": 1807874692, + "PP_SaniBot": 670845902, + "Mount_SwarmSand": 1277669407, + "Guest_Nodnarb": 211478288, + "Guest_LordBramble": 1118781162, + "Guest_Yogash": 506264561, + "Guest_Marcio": 499428996, + "Guest_Procyon": 1115376865, + "Guest_Thunderfin": 2029218563, + "Guest_ArkynMoonblade": 1152775206, + "Guest_CreeCurdWright": 1714953095, + "Guest_DeerMouseRevenant": 315064435, + "Guest_ElanaDarksun": 837982094, + "Guest_KingAlricFateSailor": 1934591130, + "Guest_LaughingCalaca": 984492527, + "Guest_WraithKnight": 620484548, + "Guest_FieryEchoofApep": 484636593, + "Guest_FrostyEchoofApep": 171933154, + "Guest_FalseEchoofApep": 479387377, + "Guest_ChargedEchoofApep": 1229406800, + "Guest_ShrowdengersQhat": 101563303, + "Guest_Scrollkeeper": 643219293, + "Guest_TerrorHound": 753341570, + "Guest_CondemnedMander": 445370758, + "Mnt_SnowStorm": 1491572670, + "Mount_ChimneySweeper": 378571534, + "MNT_PineappleCandyCane": 1630795796, + "Guest_TyphonDustwind": 740849673, + "MNT_StickHorse": 216654744, + "MimicTemplate": 1461219184, + "MNT_Ball_N_Chain": 289720920, + "PP_PeaceDove_A": 1785119671, + "Mount_Gyrocycle": 1495008048, + "PP_BattleMageDragon_A": 1864696711, + "MNT_BattleBeast": 1304449286, + "MNT_SmokeTrails": 387873030, + "Mount_FriendshipHare": 677127330, + "MNT_ButterflySwarm": 383602683, + "PP_EggChick_B": 1959154042, + "MNT_Unicorn": 562210585, + "PP_StuffedUnicorn": 1731641773, + "MNT_ParadeTruck": 2026348978, + "MNT_ParadeTruckXmas": 1017864627, + "MNT_AutumnLeafSwarm": 1540002279, + "PP_GingerbreadMan": 1796172229, + "PP_DecadeDragon": 1819398630, + "MNT_StageShip": 829852992, + "PP_DramaLlama": 255896529, + "PP_HallMinotaur_A": 1492017563, + "Guest_MacDeath": 1526226705, + "Guest_MacDeathUnderstudy": 1731752647, + "Guest_MacLifeUnderstudy": 257466641, + "Guest_MacStormUnderstudy": 8295117, + "MNT_Pantera": 1135198, + "MNT_StagLight": 1908778048, + "MNT_GiantSpider": 1247185021, + "MNT_StagEvil": 872303931, + "PP_BaskHound": 1093866594, + "PP_Marionette": 1688299938, + "PP_Marionette_B": 1688297824, + "Guest_Izft": 996301405, + "Guest_SapotisMinion": 1625665891, + "Guest_CrazedSlave": 1473233468, + "Guest_CharmedSlave": 803043667, + "Guest_EnsorcelledSlave": 40920285, + "Guest_HallServant": 2038116460, + "Guest_SiathePerceiver": 1235571913, + "Guest_Kiwu": 1151177787, + "Guest_NightImp": 1051843424, + "Guest_EvilTrickster": 1035477123, + "Guest_DeepWoodsImp": 1502444054, + "Guest_ForestPest": 802235713, + "Guest_TaintedForestImp": 1030343985, + "Guest_Youkai": 518367729, + "Guest_CarthaginianElephantWarrior": 776293919, + "Guest_IdrisBeast-Taker": 106759521, + "Guest_MikaSkarka": 237956516, + "Guest_Belloq": 757247833, + "Guest_GurtokPiercer": 549466122, + "Guest_GurtokFirebender": 817966523, + "Guest_GurtokDemon": 544070162, + "Guest_GeneralFiretusk": 2073037770, + "Guest_GurtokBarrierDemon": 44657563, + "Guest_BlacktuskShaman": 1009070925, + "Guest_FireDemon": 158367196, + "Guest_DeathOni": 1916642000, + "Guest_JadeOni": 1289517185, + "Guest_PlagueOni": 1464586443, + "Guest_WarOni": 1630196094, + "Guest_BrokenLandMammoth": 1587008312, + "Guest_SunderedSeamMammoth": 1272698721, + "Guest_BullyMammoth": 170705927, + "Guest_Bullhemoth": 146998717, + "Guest_Kogasha": 1909654543, + "Guest_MusuthBerserker": 1741298129, + "Guest_BlackTuskCultist": 1771575961, + "Guest_AksilBlacktrunk": 1253596409, + "Guest_LongdreamerShaman": 1521283133, + "Guest_MuratGreyeyes": 1296814314, + "Guest_ElephantSoldier": 1443670145, + "Guest_DarajaniGuard": 1597288495, + "Guest_Loremaster": 1792470809, + "Guest_Pork": 2069999347, + "Guest_Beans": 97706585, + "MNT_Ox": 1292937747, + "PP_PropellerSquirrel": 1657443894, + "Guest_RasikPridefall": 97921485, + "Guest_AmedrasLightstep": 1818417025, + "MNT_SmokeTrails_Balance": 1358150715, + "MNT_SmokeTrails_Fire": 702971609, + "MNT_SmokeTrails_Ice": 190218501, + "MNT_SmokeTrails_Life": 2045542105, + "MNT_SmokeTrails_Myth": 1276281121, + "MNT_SmokeTrails_Storm": 564954622, + "Guest_Bellosh": 1407013027, + "Guest_AcampiReedfist": 2076527733, + "Guest_AgnettaBroadblade": 14864960, + "Guest_FrostheartRaider": 1574787221, + "Guest_JordaSwordbearer": 1627071850, + "Guest_KasaiBaku": 1153107369, + "Guest_ZoraimeiHelephant": 1002482606, + "Guest_ConscriptedMander": 43811125, + "Firecat_Decade": 409516955, + "MNT_BatGlider": 2086258491, + "Transformation_PlayerHomework": 673389670, + "Transformation_PlayerAttendance": 422287307, + "Transformation_PlayerLecture": 2035625874, + "Transformation_PlayerPopQuiz": 483367038, + "MNT_GingerbreadHorse": 1369242781, + "MNT_NimbariChariot": 1251740392, + "PP_NimbariDog": 1235126828, + "Transformation_PlayerGrandma": 1128332272, + "Transformation_PlayerScionA": 33862367, + "PP_Mushroom": 1568942158, + "MNT_Scooter": 1148167046, + "MNT_Scooter_B": 2079302532, + "MNT_Scooter_C": 1810867076, + "MNT_Scooter_D": 468689796, + "MNT_IceCycle": 415797788, + "Transformation_PlayerScionA02": 33921759, + "Guest_FearoftheFuture": 947210229, + "Guest_FearofGremlins": 405857384, + "Guest_RootGuardian": 922940845, + "Guest_VineThrasher": 172546427, + "Guest_BlightWalker": 1438155154, + "Guest_BriarScourge": 615681851, + "Guest_DreamJabberwock": 907754098, + "Guest_DreamBelloq": 990352002, + "Guest_Voltergeist": 1558128068, + "Guest_SpecialBranch": 1927849418, + "Guest_MutantBriar": 805892802, + "Guest_FeralBriar": 883790223, + "Guest_MaizeMonster": 688905764, + "Guest_DreamShadowwock": 1432458248, + "Mount_Heartboard": 1421972759, + "PP_ChocoBunny": 324797859, + "Mount-PogoFlower": 906659501, + "MNT_AethyrCloud": 1586061078, + "MNT_Fangle": 7846854, + "Guest_StarfallSpider": 1177620831, + "Guest_AshSpider": 1588502553, + "Guest_CorruptedWeaver": 38937211, + "Guest_CrystalCrawler": 1197980149, + "Guest_ShimmerWidow": 1300740128, + "Guest_FacetedSpikespinner": 1939719331, + "Guest_CrystallineQueen": 1999282256, + "Guest_AncientCrystalweaver": 1409608801, + "Guest_FangtoothLavaspinner": 1538042104, + "Guest_VenomousHeatseeker": 1234682482, + "Guest_FireweaveRockbiter": 300743778, + "Guest_MonkeySpider": 754090007, + "Guest_CryptSpider": 1545405304, + "Guest_CommonHouseSpider": 613486002, + "Guest_ArachnaMagnaMagus": 825817937, + "Guest_ArachnaSoldier": 270978709, + "Guest_Gnissa": 1699826178, + "Guest_WebwoodScuttler": 1728611075, + "Guest_SandSpider": 61789007, + "Guest_WebwoodCreeper": 1013382584, + "Guest_Skathi": 1631429165, + "Guest_ArchmagusLorcan": 321146960, + "Guest_CrawleroftheMist": 2076696304, + "Guest_PaintedSpider": 1482115552, + "Guest_GiantSpider": 1545526191, + "Guest_CaveCrawler": 2101587667, + "Guest_RattleCatcher": 1472707326, + "Guest_TrapdoorSpider": 1321643694, + "Guest_RockClinger": 1304266411, + "Guest_InquisitorXimenez": 1053483090, + "Guest_ElderMagus": 1017836836, + "Guest_WardenBenthamic": 18807199, + "Guest_SpiderArchmagus": 387645558, + "Guest_SpiderAdept": 2094873407, + "Guest_InterrogatorRentenius": 1245984179, + "Guest_WarpedWeaver": 495882677, + "Guest_ArachnaSkinner": 281864085, + "Guest_SkinnerConscript": 2028526453, + "Guest_ArachnaGladiator": 2492046, + "Guest_LorcanInitiate": 353311753, + "Guest_Serket": 1871335773, + "Guest_IceWeaver": 2063216026, + "Guest_SpiritSpinner": 525666327, + "Guest_MysteriousCrawler": 218352756, + "Guest_BlackWidow": 1909331619, + "Guest_BrownRecluse": 1146386275, + "Guest_Creeper": 1197442790, + "Guest_GearSpinner": 67020478, + "Guest_Clinker": 1194519062, + "Guest_Clanker": 1194517014, + "Guest_GrandfatherSpider": 1330981335, + "Guest_Spiderling": 1400274461, + "Guest_ManekiWebWalker": 888348786, + "Guest_KoganiDeathCrawler": 276010604, + "Guest_CheliceranCrawler": 1169176517, + "Guest_ArachniteCreeper": 1850534774, + "Guest_ChelicaranStalker": 2057291848, + "Guest_HornedMonkeySpider": 1301514577, + "Guest_GreyOgreSpider": 1533774471, + "Guest_StarburstSpider": 698029451, + "Guest_PaintedCaveMonster": 601315479, + "Guest_RubbleRouser": 220785666, + "Guest_EarthElemental": 435260049, + "Guest_SharpshardWarrior": 1403237237, + "Guest_Firevein": 1220046430, + "Guest_Blackblade": 458130537, + "Guest_VengefulFireheart": 563205004, + "Guest_FirerockStomper": 608552855, + "Guest_BlackrockGuardian": 1663799582, + "Guest_ConfusedSentry": 24655510, + "Guest_SilverSentinel": 1090673683, + "Guest_SilverServant": 84560693, + "Guest_GiantHomunculus": 456098557, + "Guest_PropertyMaster": 229101764, + "Guest_VaultProtector": 185568207, + "Guest_PlatedDefender": 79324363, + "Guest_Avalanche": 761613547, + "Guest_RockReaver": 919912933, + "Guest_Frostmantle": 856308090, + "Guest_GlacierWalker": 131215932, + "Guest_SandBehemoth": 272513357, + "Guest_RunedAnnihilator": 121339936, + "Guest_RunedDevestator": 1611071181, + "Guest_RunedGuardian": 1986312667, + "Guest_CanyonRager": 1123038266, + "Guest_RubbleReaver": 220774678, + "Guest_Boulderbone": 122279242, + "Guest_Nali": 77467516, + "Guest_Gnar": 1151164930, + "Guest_GlacialAvenger": 1181253632, + "Guest_SokkwiKeymaster": 190919624, + "Guest_SandsofTime": 34920273, + "Guest_BladeGolem": 435561523, + "Guest_FrostColossus": 1564686403, + "Guest_IceColossus": 335477257, + "Guest_PollutedEarthWalker": 86045387, + "Guest_CorruptedEarthSpirit": 1135891559, + "Guest_Stonebreaker": 1317905436, + "Guest_StoneElemental": 1715022018, + "Guest_VolcanisGolem": 1904918929, + "Guest_WaterElemental": 1717850987, + "Guest_AshenDeathMonkeySpider": 35356665, + "Guest_DeathMonkeySpider": 1525508507, + "Guest_MotherMonkeySpider": 110317392, + "Guest_DoomMonkey": 1135105500, + "Guest_DreamMorganthe": 907599965, + "Guest_DragonBeetle": 1974635734, + "Guest_SandWalker": 1530843985, + "MNT_PandaMama": 916371162, + "PP_BabyPandas": 778536285, + "PP_FrogPrince": 729975205, + "MNT_PumpkinCarriage": 183672737, + "Mount_Gobbler_B": 1193388729, + "PP_Hamster": 1578040708, + "Guest_Steeleton": 657429968, + "Guest_GoldenWyrm": 311022393, + "MNT_Roc": 1564431869, + "PP_BabyGriffin": 1913686406, + "Transformation_ShadowDPSMob": 936133896, + "Transformation_ShadowTankMob": 305660992, + "Transformation_ShadowHealMob": 356596800, + "Guest_SpiritofIgnorance": 1577360126, + "Guest_FecklessSoul": 519648315, + "Guest_BurnedOutSoul": 312181646, + "Guest_BenightedRevenant": 2131956962, + "Guest_TombLurker": 1901203489, + "Guest_DesertGolem": 543642682, + "Guest_KumoOni": 215822625, + "Guest_SpellwritStalker": 161772776, + "PP_Sun": 1723237840, + "Guest_Leadite": 4480416, + "Mount_FestiveFox": 2125832348, + "PP_FenrisWolf": 1601784680, + "PP_SchoolPiggle": 109782407, + "PP_FenrisWolf_Red": 1597992854, + "PP_FenrisWolf_Teal": 1455058454, + "PP_FenrisWolf_White": 1102186199, + "Transformation_NinjaPig_Fire": 984575055, + "Transformation_BG_RatThief_Myth": 1191155131, + "Transformation_BG_RatThief_Storm": 675891897, + "MNT_Umbrella": 955683437, + "Transformation_BG_Elf_Ice": 1209681129, + "Transformation_BG_Fairy_DarkMinion_Balance": 33521202, + "Transformation_BG_Cyclops_Death": 876023972, + "Transformation_BG_Minotuar_Fire": 1118476387, + "Transformation_BG_WolfWarrior_Storm": 2075594475, + "Transformation_BG_WolfWarrior_Balance": 746159992, + "Transformation_BG_Draconian_Myth": 903606820, + "Transformation_BG_Draconian_Life": 1501291044, + "Transformation_BG_Colossus_Life": 1320377666, + "MNT_DolphinChariot": 102982520, + "MNT_EvilWagon": 685457563, + "MNT_FlyingDutchman": 1176206544, + "PP_SeaHorse": 2024322494, + "PP_EvilTeddy": 1159020925, + "PP_ZombieParrot": 384805107, + "Transformation_BG_Ice_Colossus": 299613211, + "MNT_CarrierBat": 7323333, + "Transformation_BG_Minotaur_MythTempalte": 430330904, + "PP_FeatheredTabby": 452526748, + "Transformation_Detritus01": 1335763402, + "Guest_Metallossus": 335457082, + "MNT_SantaJaws": 464410203, + "MNT_BattleBadger": 532858222, + "Transformation_Shedder01": 2069145892, + "PP_NatureSpirit": 373176286, + "Transformation_Devourer01": 1004421540, + "Guest_TheDevourer": 1591187996, + "Guest_Treeminder": 1093207850, + "Guest_RenegadeDruid": 2087982292, + "Guest_FractalTreeminder": 927174548, + "Guest_UnsettledTreeminder": 486164163, + "Guest_DragonspyreCrusader": 247317280, + "Guest_YoungGreggor": 66068670, + "Guest_GeneralGreyflame": 499924835, + "Guest_OldGreggor": 391726170, + "Guest_PrinceViggor": 853556298, + "Guest_DragonspyreVanguard": 693851565, + "Guest_SilasConviction": 177362659, + "Guest_SilasWeariness": 893431021, + "Guest_SilasRage": 1288904439, + "Guest_SilasDoubt": 1479426285, + "Guest_Lorekeeper": 147779344, + "Guest_FelixPhotomongerIII": 68387506, + "Guest_WarHavox": 1634324022, + "Guest_Mis-assembledSkeleton": 221832082, + "Guest_TreeminderGhost": 200408510, + "Guest_ViggorsDrake": 340449521, + "Guest_BlueNinjaPig": 938539327, + "Guest_RedNinjaPig": 2097962021, + "Guest_OrangeNinjaPig": 625058258, + "Guest_PurpleNinjaPig": 445746449, + "Guest_RitualColossus": 844563319, + "Guest_TinyDragon": 1123127688, + "Guest_RitualSpider": 429827552, + "Guest_RitualDraconian": 837510372, + "Guest_CC_Druid_Warrior_C_01": 55314616, + "Guest_CC_Druid_Wizard_A_01": 1046261169, + "Guest_CC_Druid_Wizard_B_01": 1046244785, + "Guest_CC_Druid_Warrior_A_01": 56363192, + "MNT_Toboggan": 995356805, + "MNT_2P_WickerTreant-001": 2065440944, + "PP_Ratatoskr": 1003497600, + "PP_Trash": 1195047012, + "Guest_CC_Druid_Wizard_D_01": 1046343089, + "MNT_Sunflower": 721091531, + "MNT_Whoopee": 1383311238, + "MNT_Warthog": 8060761, + "PP_ShamRock": 943893325, + "PP_LeapingLeprechaun": 132882517, + "PP_LionCubs": 465759803, + "PP_Tanuki": 670387843, + "MNT_Crane": 433122675, + "MNT_Krokosphinx": 739938754, + "Transformation_BG_Fairy_Life": 1897480818, + "Transformation_LiceDeepSpawnA": 244795720, + "Piggle_Alien": 1761605655, + "PP_JeweledScarab": 620544607, + "Guest_KR_Nymph_DrkMage_D50": 1248526054, + "Guest_KR_Nymph_DrkMage_C50": 1246953190, + "Guest_KR_Nymph_DrkMage_B50": 1247477478, + "Guest_KR_Nymph_DrkMage_A50": 1245904614, + "Guest_EM_Spider_Ash_01": 185724938, + "UFO": 47349, + "PP_Kit10": 326796620, + "PP_Lumi_Tulip": 84119585, + "PP_Lumi_Fern": 117015078, + "PP_Lumi_Violet": 1468797578, + "PP_Lumi_Sunny": 1769236703, + "PP_Lumi_Daisy": 1743454175, + "MNT_CelestianMech": 1238076872, + "MNT_Brontosaurus": 402157167, + "Guest_HG_AKT_Krok_Cyber_A_Balance_25": 1367985604, + "Guest_HG_AKT_Krok_Cyber_A_Balance_50": 1368084932, + "Guest_HG_AKT_Krok_Cyber_A_Balance_75": 1367988676, + "Guest_HG_AKT_Krok_Cyber_A_Balance_100": 1351303620, + "Guest_HG_AKT_Krok_Cyber_A_Balance_130": 1351270852, + "Guest_HG_AKT_Krok_Cyber_A_Fire_25": 976558490, + "Guest_HG_AKT_Krok_Cyber_A_Fire_50": 37034397, + "Guest_HG_AKT_Krok_Cyber_A_Fire_75": 305469850, + "Guest_HG_AKT_Krok_Cyber_A_Fire_100": 573905821, + "Guest_HG_AKT_Krok_Cyber_A_Fire_130": 573905824, + "Guest_HG_AKT_Krok_Cyber_A_Ice_25": 159411377, + "Guest_HG_AKT_Krok_Cyber_A_Ice_50": 541093041, + "Guest_HG_AKT_Krok_Cyber_A_Ice_75": 146828465, + "Guest_HG_AKT_Krok_Cyber_A_Ice_100": 557870241, + "Guest_HG_AKT_Krok_Cyber_A_Ice_130": 960523425, + "Guest_HG_AKT_Krok_Cyber_A_Myth_25": 976187830, + "Guest_HG_AKT_Krok_Cyber_A_Myth_50": 36663729, + "Guest_HG_AKT_Krok_Cyber_A_Myth_75": 305099190, + "Guest_HG_AKT_Krok_Cyber_A_Myth_100": 573535153, + "Guest_HG_AKT_Krok_Cyber_A_Myth_130": 573535156, + "Guest_CL-GolemButler-R9": 780077559, + "Guest_CL-GolemDigger-Boss-R10": 562020288, + "Guest_CL-GolemDigger-R9": 789375095, + "Guest_CL-GolemDigger-Rank8MythBoss-R10": 930527857, + "Guest_CL-GolemWorker-R9-1": 1072815287, + "Guest_CL-FishbotBrown-R9-1": 2006155417, + "Guest_CL-FishbotBrown-R9-2": 395542681, + "Guest_CL-FishbotGold-Boss-R10": 611881707, + "Guest_CL-FishbotGold-R9": 705414492, + "Guest_CL-FishbotYellow-Boss-R10": 23145662, + "Guest_CL-Protector-Black-Boss-R10-2": 679228793, + "Guest_CL-Protector-Gold-R10": 1909636609, + "Guest_CL-Protector-Gold-R9-1": 1909634804, + "Guest_CL-Protector-Gold-R9-2": 1909634932, + "Guest_CL-Protector-Gold-R9-3": 1909635060, + "Guest_CL-Protector-Gold-R9-4": 1909634164, + "Guest_CL-Protector-Purple-R9-Boss": 1889837072, + "Guest_CL-Protector-Purple-R9": 81760161, + "Guest_CL-Protector-Tan-Boss-R10": 912663188, + "Guest_KR_Golem_Worker": 1784607296, + "Guest_Golem-Brass-R7-1": 718939445, + "Guest_Golem-Clockwork-R7": 1161173708, + "Guest_EM_Robot_Batbot_A_01": 1482867950, + "Guest_EM_Robot_Batbot_B_02": 945947886, + "Guest_EM_Robot_Batbot_B_01": 1482818798, + "Guest_EM_Robot_Batbot_B_03": 409076974, + "Guest_EM_Robot_Batbot_B_04": 127793938, + "Guest_EM_Robot_Batbot_B_05": 664664850, + "Guest_EM_Robot_Drone_A_02": 1215188569, + "Guest_EM_Robot_Drone_A_03": 1231965785, + "Guest_EM_Robot_Drone_A_01": 1265520217, + "Guest_EM_Robot_Drone_A_04": 1315851865, + "Guest_EM_Robot_Drone_A_05": 1332629081, + "Guest_EM_Robot_Drone_A_06": 1282297433, + "Guest_EM_Robot_Drone_A_07": 1299074649, + "Guest_EM_Robot_Drone_A_08": 1114525273, + "Guest_EM_Robot_Drone_A_09": 1131302489, + "Guest_EM_Robot_Drone_A_Boss_01": 1960661151, + "Guest_EM_Robot_Drone_A_Boss_02": 1960530079, + "Guest_EM_Robot_Drone_E_01": 1265518169, + "Guest_EM_Robot_Tank_A_01": 1314796420, + "Guest_EM_Robot_Tank_A_02": 1313223556, + "Guest_EM_Robot_Drone_C_02": 1215187545, + "Guest_EM_Robot_Drone_D_03": 1231963225, + "Guest_EM_Robot_Drone_D_01": 1265517657, + "Guest_EM_Robot_Drone_D_02": 1215186009, + "Guest_EM_Robot_Tank_B_01": 1314796468, + "Guest_EM_Robot_Drone_C_01": 1265519193, + "Guest_G14-BP-Golem_Steel_Boss": 2071105129, + "Guest_G14-BP-Golem_Steel_Puzzle": 715790979, + "Guest_Golem-Brass-Elite-L38": 1163662532, + "Guest_Golem-Brass-Elite-L56": 2057562884, + "Guest_Golem-Brass-MBBoss-L48": 1498830732, + "Guest_Golem-Brass-MBBoss-L71": 1498829576, + "Guest_Golem-Brass-MBBoss-L76": 1498828936, + "Guest_Golem-Clockwork-Elite-L54-Metal": 417151527, + "Guest_Golem-Clockwork-Elite-L37": 1961943722, + "Guest_Golem-Clockwork-Elite-L54": 1950147242, + "Guest_Golem-Clockwork-L28": 1561959116, + "Guest_Golem-Clockwork-MBBoss-L37": 973152783, + "Guest_Golem-Clockwork-MBBoss-L69": 1262559759, + "Guest_Golem-Steel-Elite-L39": 1430496717, + "Guest_Golem-Steel-MBBoss-L40": 1229578887, + "Guest_Golem-Steel-MBBoss-L43": 1229579015, + "Guest_Golem-Steel-MBBoss-L50-1": 1231762051, + "Guest_Golem-Steel-MBBoss-L50": 1229578883, + "Guest_Golem-Steel-MBBoss-LXX": 1229583927, + "Guest_Golem-Wood-Elite-L35": 904360756, + "Guest_Golem-Wood-Elite-L37": 1978102580, + "Guest_Golem-Wood-Elite-L50": 1813548236, + "Guest_Golem-Wood-MBBoss-L63": 1392041724, + "Guest_MB-Gauntlet-Golem-Clockwork": 854649045, + "Guest_Spider-Golem-MBBoss-L67": 253352706, + "Guest_Spider-Golem-MBBoss-L96": 253348994, + "Guest_WC-MAW-GasGolem-Minion": 1511013798, + "Guest_WC-MAW-GasGolemLife-Minion": 1306026584, + "Guest_Golem-Steel-L02": 1027229749, + "Guest_Golem-Clockwork-L01": 1409915596, + "Guest_Gauntlet-01-Golem-Steel-Ghost-R8": 402816318, + "Guest_Golem-Wood-L01": 156976035, + "Guest_HG-Clock-ClockworkSpanner-20": 1523370449, + "Guest_HG-Clock-ClockworkSpanner-40": 1523370455, + "Guest_HG-Clock-ClockworkSpanner-60": 1523370453, + "Guest_HG-Clock-ClockworkSpanner-80": 1523370459, + "Guest_HG-Clock-ClockworkSpanner-100": 1523354068, + "Guest_HG-Clock-ClockworkSpanner-120": 1523354004, + "Guest_AQ-Cyclops-Guard": 191361948, + "Guest_AQ_Cyclops_Guard_A_Boss_01": 114747100, + "Guest_CL-Cyclops-Death-R10": 611013866, + "Guest_Cyclops-Death-Boss-R7": 1192370725, + "Guest_Cyclops-Death-Boss-R9": 1192370717, + "Guest_Cyclops-Death-R7": 144593791, + "Guest_GH-Cyclops-Death-R6": 594236619, + "Guest_Cyclops-BlueHelmet-KTBoss-L03": 1720105277, + "Guest_Cyclops-Red-L12": 1816429840, + "Guest_MR_Cyclops02WHelmet_Model_01": 1483732416, + "Guest_Cyclops-Blue-L02": 1633021234, + "Guest_Cyclops-BlueHelmet-WCBoss-L03": 427378332, + "Guest_Cyclops-RedHelmet-WCBoss-L03": 2021269422, + "Guest_HG_Sinbad_Cyclops_25": 911979034, + "Guest_HG_Sinbad_Cyclops_50": 1856261606, + "Guest_HG_Sinbad_Cyclops_75": 861647386, + "Guest_HG_Sinbad_Cyclops_100": 1789152678, + "Guest_HG_Sinbad_Cyclops_130": 178539942, + "Guest_HG_Sinbad_IronSultan_25": 930031152, + "Guest_HG_Sinbad_IronSultan_50": 930051504, + "Guest_HG_Sinbad_IronSultan_75": 930030768, + "Guest_HG_Sinbad_IronSultan_100": 927954864, + "Guest_HG_Sinbad_IronSultan_130": 927942576, + "MNT_SweetRide": 1643297840, + "PP_FrilledDino": 1395342809, + "PP_Celestian": 95679303, + "PP_Sun_Angry": 1955190071, + "PP_Marshmallow": 1220667954, + "MNT_Umbrella_B": 923364822, + "MNT_Tamer": 1050737194, + "PP_BumbleBee_B": 858653433, + "MNT_PunkFlamingo": 1634690818, + "MNT_2P_WoolyRhino": 1395943031, + "PP_Retriever": 72842604, + "PP_Piggle_Caveman": 181356174, + "PP_DecennialDragon": 1396523337, + "MNT_Tiger_Rainbow": 515535412, + "MNT_CarrierGhosts": 1833039309, + "MNT_Sled": 617654308, + "Transformation_BG_RatThief_Death": 30691641, + "Transformation_BG_Elf_Storm": 44352983, + "Transformation_BG_WolfWarrior_Ice": 986304351, + "MNT_CarriorGhost_B": 1768732109, + "MNT_CarriorGhost_C": 1766634957, + "Transformation_BG_Colossus_Fire": 1318803522, + "Transformation_BG_Krok_Balance": 140952965, + "Guest_KM_Gobbler_Skinny_A_11": 773648065, + "Guest_KM_Robot_Candy_A_01": 480414124, + "Guest_KM_Robot_Candy_A_02": 530745772, + "Guest_KM_Robot_Candy_A_03": 513968556, + "Guest_KM_Robot_Candy_A_04": 430082476, + "Guest_KM_Robot_Candy_A_05": 413305260, + "Guest_KM_Gummy_Bear_A_01": 1940905059, + "Guest_KM_Gummy_Bear_D_01": 1940905011, + "Guest_KM_Gummy_Bear_E_01": 1940904995, + "Guest_KM_Gummy_Bear_A_02": 1941429347, + "Guest_KM_Gummy_Bear_D_02": 1941429299, + "Guest_KM_Gummy_Bear_E_02": 1941429283, + "Guest_KM_Gummy_Bear_B_01": 1940905043, + "Guest_KM_Gummy_Bear_B_02": 1941429331, + "Guest_KM_Gummy_Bear_B_03": 1941953619, + "Guest_KM_Gummy_BearHat_A_01": 853226448, + "Guest_KM_Gummy_BearHat_A_02": 853226460, + "Guest_KM_Gummy_Bunny_A_01": 324805042, + "Guest_KM_Gummy_Bunny_C_01": 324806066, + "Guest_KM_Gummy_Bunny_D_01": 324807602, + "Guest_KM_Gummy_Bunny_E_01": 324807090, + "Guest_KM_Gummy_Bunny_F_01": 324808626, + "Guest_KM_Gummy_BunnyUber_A_01": 525565930, + "Guest_KM_Gummy_Worm_A_01": 231044195, + "Guest_KM_Gummy_Worm_B_01": 231044179, + "Guest_KM_Gummy_Worm_C_01": 231044163, + "Guest_KM_Gummy_Worm_A_02": 232617059, + "Guest_KM_Gummy_Worm_B_02": 232617043, + "Guest_KM_Gummy_Worm_C_02": 232617027, + "Guest_KM_Gummy_Bear_F_01": 1940904979, + "Guest_KM_Gummy_Bear_F_02": 1941429267, + "Guest_KM_Gummy_Bunny_C_02": 274474418, + "Guest_KM_Robot_Candy_A_06": 463636908, + "Guest_KM_Alphoi_DarkF_A_01": 475441543, + "Guest_KM_Gobbler_Skinny_A_01": 773648069, + "Guest_KM_Gobbler_Skinny_A_02": 773648197, + "Guest_KM_Gobbler_Skinny_A_03": 773648325, + "Guest_KM_Gobbler_SkinnyF_A_01": 254411012, + "Guest_KM_Gobbler_Skinny_A_04": 773647429, + "Guest_KM_Gobbler_Skinny_A_05": 773647557, + "Guest_KM_Gobbler_Skinny_A_06": 773647685, + "Guest_KM_Gobbler_SkinnyF_A_02": 254423300, + "Guest_KM_Gobbler_Skinny_A_07": 773647813, + "Guest_KM_Gobbler_Skinny_A_08": 773646917, + "Guest_KM_Gobbler_Skinny_A_09": 773647045, + "Guest_KM_Gobbler_SkinnyF_A_03": 254419204, + "Guest_KM_Gobbler_Fat_A_01": 1440595742, + "Guest_KM_Gobbler_Fruit_B_01": 1236446660, + "Guest_KM_Gobbler_Fruit_A_01": 1235922372, + "Guest_KM_Gobbler_Guard_B_01": 1435667582, + "Guest_KM_Gobbler_Skinny_A_10": 773647937, + "Transformation_PlayerBabyCarrot": 1580787628, + "Transformation_PlayerDeadBeet": 1992261692, + "Transformation_PlayerDisparagus": 373797484, + "Transformation_PlayerSnowPeas": 634199102, + "PP_Snowflake": 2036143125, + "PP_GummyBear_Myth": 117787890, + "PP_GummyBear_Death": 236577760, + "PP_GummyBear_Balance": 2100524337, + "PP_GummyBear_Life": 118020336, + "PP_GummyBear_Fire": 117995748, + "PP_GummyBear_Storm": 247437198, + "PP_GummyBear_Ice": 122536570, + "MNT_SnowOwl": 1578473542, + "Guest_KM_Gummy_Bear_Uber_A_01": 1856208859, + "Guest_KM_Gummy_Bear_Uber_A_02": 1856196571, + "MNT_ChocolateMoose": 567538552, + "MNT_Ram_Candied": 1913603720, + "Guest_KM_Spider_Mage_A_01": 1529720120, + "Guest_KM_Spider_Mage_B_01": 1529719608, + "Guest_KM_Spider_Mage_C_01": 1529719096, + "Guest_KM_Spider_Mage_D_01": 1529718584, + "Guest_KM_Spider_Mage_E_01": 1529718072, + "PP_SpriteDark_Balance": 914900728, + "MNT_Tricycle": 991465753, + "Guest_Tri-Gauntlet-Protector-Gold": 2029952053, + "Guest_Tri-Gauntlet-FishbotGold": 130267882, + "Guest_HG-Clock-Clockworker-20": 281216243, + "Guest_HG-Clock-Clockworker-40": 281217011, + "Guest_HG-Clock-Clockworker-60": 281216755, + "Guest_HG-Clock-Clockworker-80": 281215475, + "Guest_HG-Clock-Clockworker-100": 283313523, + "Guest_HG-Clock-Clockworker-120": 283321715, + "Guest_HG-Clock-Lugs-20": 1452756928, + "Guest_HG-Clock-Lugs-40": 1452756960, + "Guest_HG-Clock-Lugs-60": 1452756992, + "Guest_HG-Clock-Lugs-80": 1452756768, + "Guest_HG-Clock-Lugs-100": 1452494736, + "Guest_HG-Clock-Lugs-120": 1452493712, + "Guest_HG-Clock-Lucia-20": 1041451626, + "Guest_HG-Clock-Lucia-40": 1041450602, + "Guest_HG-Clock-Lucia-60": 1041449578, + "Guest_HG-Clock-Lucia-80": 1041456746, + "Guest_HG-Clock-Lucia-100": 1049840746, + "Guest_HG-Clock-Lucia-120": 1049873514, + "Guest_KM_Gummy_Worm_A_03": 232092771, + "MNT_Scooter_E": 200254340, + "PP_WolfWarrior_Balance": 991302673, + "PP_PetGift": 1816280689, + "PP_RatThief": 1390866051, + "Guest_PL_Titan_Small_A": 2015819364, + "Guest_PL_Titan_Large_B": 699791264, + "Guest_PL_Titan_Medium_A": 326730424, + "PP_Draconian": 1631557208, + "MNT_Pantera_Astral": 106092538, + "PP_YearOx": 105653084, + "PP_WolfWarrior_Ice": 1043644935, + "PP_SpriteDark": 2031730054, + "PP_Brudel": 1355697143, + "MNT_Astronomers": 742732792, + "MNT_CouchPotato": 418050932, + "MNT_Flowerfarthing": 1396771051, + "MNT_Astronomers_Blue": 236532779, + "MNT_Astronomers_Rainbow": 4428274, + "PP_Astronomer": 782095961, + "Guest_KM_Gummy_Bunny_B_01": 324806578, + "Guest_KM_DeadBeets_A_01": 1396016635, + "MNT_GummyBunny": 775900704, + "MNT_GummyBunny_A": 775834080, + "MNT_GummyBunny_B": 775836128, + "MNT_GummyBunny_C": 775838176, + "Transformation_BG_Minotaur_Life": 1445109091, + "MNT_Armadillo": 825635826, + "PP_SootGremlin": 768969093, + "PP_RoadRunner": 2057802060, + "MNT_TinyTrolly": 160881792, + "PP_Frog_B": 1530124761, + "MNT_FjordDragon": 129204340, + "Transformation_BG_NinjaPig_Myth": 422914079, + "PP_CorgiPup": 1638656105, + "MNT_Skateboard": 728018224, + "PP_Krokomummy": 326396577, + "MNT_Vroom": 1736383110, + "MNT_PlayerWings_AtralRaven": 1514774167, + "PP_Blimp": 690882397, + "Guest_GH_WoodenSkeletonKey_Boar_Boss_Grey_01": 678055851, + "Guest_GH_StoneSkeletonKey_Boar_Boss_Grey_01": 571670691, + "Guest_GH_GoldSkeletonKey_Boar_Boss_Grey_01": 961728819, + "MNT_Cloud_Promo_AW_01": 2032670992, + "Guest_EM_Hornet_Burner_A_01": 1881854632, + "Guest_EM_Hornet_Burner_A_02": 1881854636, + "Guest_EM_Hornet_Zapper_A_01": 2058539689, + "Guest_EM_Hornet_Zapper_A_02": 2058539685, + "Guest_EM_Ant_Giant_D_01": 379386121, + "Guest_EM_Ant_Giant_A_02": 1768146677, + "Guest_EM_Ant_Giant_A_01": 1768097525, + "Guest_EM_Ant_Giant_B_01": 379386122, + "Guest_KR_Moth_Priest_G_Achera": 381233569, + "Guest_KR_BeeMonsterF_A": 135146211, + "Guest_KR_BeeMonsterF_A_Weak": 1824123847, + "Guest_KR_Bee_Warrior_A": 1569202664, + "Guest_KR_Bee_Warrior_B": 1569204200, + "Guest_KR_Bee_Warrior_C_BossDrones": 1217189631, + "Guest_KR_Bee_Warrior_D": 1569205224, + "Guest_KR_Bee_Warrior_E": 1569204712, + "Guest_KR_Bee_Warrior_G": 1569205736, + "Guest_KR_Bee_Warrior_G_BossFight": 1055035476, + "Guest_KR_Bee_Warrior_H": 1569207272, + "Guest_KR_Bee_Warrior_I": 1569206760, + "Guest_KR_Bee_Warrior_L": 1569209320, + "Guest_KR_Bee_Warrior_M": 1569208808, + "Guest_KR_DragonBeetle_Monster_A": 1777853782, + "Guest_KR_Hornet_Drone_A": 1161590757, + "Guest_KR_Hornet_Drone_B": 1161607141, + "Guest_KR_Hornet_Drone_C": 1161623525, + "Guest_KR_Hornet_Drone_D": 1161639909, + "Guest_KR_Hornet_Drone_E": 1161656293, + "Guest_KR_Lice_DeepSpawn_A": 761604959, + "Guest_KR_Mantis_HunterF_A": 820917199, + "Guest_KR_Mantis_HunterF_B": 871248847, + "Guest_KR_Mantis_HunterF_C": 854471631, + "Guest_KR_Mantis_HunterF_D": 904803279, + "Guest_KR_Mantis_HunterF_F": 938357711, + "Guest_KR_Mantis_HunterF_F_Driftwood": 2053608437, + "Guest_KR_Mantis_HunterF_G": 921580495, + "Guest_KR_Mantis_HunterF_H": 971912143, + "Guest_KR_Mantis_HunterF_I": 955134927, + "Guest_KR_Mantis_HunterF_I_Zuzka": 935478878, + "Guest_KR_Mantis_HunterF_J": 1005466575, + "Guest_KR_Mantis_HunterF_J_Zelda": 886910558, + "Guest_KR_Mantis_HunterF_K": 988689359, + "Guest_KR_Mantis_HunterF_K_LongShd": 1767574336, + "Guest_KR_Mantis_HunterF_L": 1039021007, + "Guest_KR_Mantis_HunterF_M": 1022243791, + "Guest_KR_Mantis_HunterF_P_Bossfight": 1731428987, + "Guest_KR_Mantis_HunterF_Q": 552481743, + "Guest_KR_Mantis_HunterF_R": 602813391, + "Guest_KR_Mantis_HunterF_S": 586036175, + "Guest_KR_Mantis_HunterF_SecondColumnCpt_A": 1354033994, + "Guest_KR_Mantis_HunterF_T": 636367823, + "Guest_KR_Mantis_HunterF_Tribute": 1946371041, + "Guest_KR_Mantis_HunterF_U": 619590607, + "Guest_KR_Mantis_HunterF_V": 669922255, + "Guest_KR_Mantis_HunterF_W": 653145039, + "Guest_KR_Mantis_HunterF_Y": 686699471, + "Guest_KR_Mantis_HunterF_Z_Officer": 206016474, + "Guest_KR_Mantis_ProphetF_B": 1791139097, + "Guest_KR_Mantis_ProphetF_C": 1254268185, + "Guest_KR_Milipede_Warrior_A": 410726278, + "Guest_KR_Milipede_Warrior_B": 410726282, + "Guest_KR_Milipede_Warrior_C": 410726286, + "Guest_KR_Milipede_Warrior_D": 410726290, + "Guest_KR_Milipede_Warrior_H": 410726306, + "Guest_KR_Milipede_Warrior_J": 410726314, + "Guest_KR_Milipede_Warrior_K": 410726318, + "Guest_KR_Moth_Priest_A": 1421532604, + "Guest_KR_Moth_Priest_B": 1421532092, + "Guest_KR_Moth_Priest_C": 1421531580, + "Guest_KR_Moth_Priest_D": 1421531068, + "Guest_KR_Moth_Priest_D_Drepa": 1483393420, + "Guest_KR_Moth_Priest_E": 1421530556, + "Guest_KR_Moth_Priest_F": 1421530044, + "Guest_KR_Mantis_HunterF_Z": 737031119, + "Guest_KR_Roach_AntLion_A": 1860517987, + "Guest_KR_Roach_AntLion_B_Bossfight": 993284625, + "Guest_KR_Roach_AntLion_C": 1861566563, + "Guest_KR_Roach_Cook_A": 259847495, + "Guest_KR_Roach_Glutton_B": 249524334, + "Guest_KR_Roach_WaterBug_A": 1795473599, + "Guest_KR_Roach_WaterBug_B": 1745141951, + "Guest_MR_Beetle_Scarab_A_01": 1789741503, + "Guest_MR_Beetle_Scarab_A_02": 1789741491, + "Guest_MR_Beetle_Scarab_B_01": 1790265791, + "Guest_ZF-Goliath-R10-Boss-01": 7034074, + "Guest_ZF-Goliath-R10-Boss-02": 7034202, + "Guest_ZF-Goliath-R10-Boss-03": 7034330, + "Guest_ZF-Goliath-R10-Boss": 1603576807, + "Guest_ZF-Goliath-R11-Boss-01": 2140449574, + "Guest_ZF-Goliath-R11-Boss-02": 2140449446, + "Guest_ZF-Goliath-R11-Boss-03": 2140449318, + "Guest_ME1_Ant_Aunt_A": 707251855, + "Guest_ME1_Ant_Aunt_B": 1440231794, + "Guest_CC_Fly_Worker_A_01": 1497784524, + "Guest_CC_Roach_Worker_A_01": 1026321602, + "Guest_CC_Roach_Lieutenant_A_01": 1081690299, + "Guest_CC_Roach_Lieutenant_B_01": 1081690295, + "Guest_CC_Roach_Don_A_01": 547836893, + "Guest_CC_Roach_BBug_A_01": 1021150157, + "Guest_CC_Roach_RoachSteady_A_01": 859409247, + "Guest_Draconian-Caster-Yellow-Boss-R8": 1016221419, + "Guest_Draconian-Zombie-R8-2-1": 1226055265, + "Guest_Draconian-Zombie-R8-2": 1226115297, + "Guest_Draconian-Caster-Green-R7": 2143342719, + "Guest_Draconian-Warrior-Gold-Boss-R8": 1044388248, + "Guest_Draconian-Caster-Gray-R7": 95878769, + "Guest_DS-Boss-MAW": 1676071241, + "Guest_Draconian-Zombie-R8-1": 1226115309, + "Guest_Draconian-Warrior-Purple-Boss-R7": 601813964, + "Guest_Draconian-Caster-Tan-Boss-R7": 1973339532, + "Guest_Draconian-Caster-Blue-R6": 1684210173, + "Guest_Draconian-Caster-Yellow-R8": 2129956646, + "Guest_Draconian-Warrior-Red-R7": 521861944, + "Guest_Draconian-Warrior-Tan-R6": 1726416112, + "Guest_Draconian-Warrior-Purple-R8": 1896270341, + "Guest_Draconian-Caster-Blue-Boss-R7": 401581134, + "Guest_Draconian-Zombie-R8": 384497496, + "Guest_GH2-Draconian-HENCH-R10": 1149202878, + "Guest_GH2-Draconian-BOSS-R10": 2114378473, + "Guest_G14-DM-Draconian_Boss": 490246211, + "Guest_G14-DM-Draconian_Storm": 2035239226, + "Guest_G14-DM-Draconian_Ice": 782200563, + "Guest_G14-DM-Draconian_Malistaire_M": 1904691727, + "Guest_G14-DM-Draconian_Malistaire_S": 1904685583, + "Guest_G14-DM-Draconian_Malistaire_D": 1904700943, + "Guest_G14-DM-Draconian_Malistaire": 1904736751, + "Guest_G14-DM-Draconian_Malistaire_B": 1904702991, + "Guest_G14-DM-Draconian_Malistaire_I": 1904695823, + "Guest_G14-DM-Draconian_Malistaire_L": 1904692751, + "Guest_G14-DM-Draconian_Malistaire_F": 1904698895, + "Guest_Draconian-PW-Gauntlet-Boss": 493080513, + "Guest_CC_Draconian_A_01": 551348115, + "Guest_AZ-Parasaur-Undead-E": 2041242846, + "Guest_AZ-Parasaur-drkPriestF-F": 898239615, + "Guest_EM_Parasaur_DrkPriestF_A_01": 1007099606, + "Guest_EM_Parasaur_DrkPriestF_A_02": 1007099605, + "Guest_AZ-Parasaur-drkPriestF-D": 898501759, + "Guest_AZ-Parasaur-drkPriestF-E": 898370687, + "Guest_AZ-Parasaur-drkPriestF-A": 897846399, + "Guest_AZ-Parasaur-Undead-B": 1716853538, + "Guest_AZ-Parasaur-Undead-A": 106240802, + "Guest_AZ-Parasaur-Undead-G": 967501022, + "Guest_AZ-Parasaur-PriestF-D": 1177445525, + "Guest_AZ-Parasaur-Undead-C": 1179982626, + "Guest_AZ-Parasaur-drkPriestF-C": 897584255, + "Guest_AZ-Parasaur-Undead-SkurkisMinion": 1414766977, + "Guest_AZ-Parasaur-drkPriestF-B": 897715327, + "Guest_AZ-Parasaur-drkPriestF-B-Script": 1414847875, + "Guest_AZ_Parasaur_Priest_A_Boss_01": 890025421, + "Guest_AZ-Parasaur-Undead-D": 1504371934, + "Guest_AZ-Pteranodon-Knight-D": 1127364049, + "Guest_AZ-StoneSkeletonKey-Ixcax-Cursedwing": 699239601, + "Guest_AZ-Pteranodon-Knight-E": 1127363921, + "Guest_AZ-Pteranodon-Knight-F": 1127363793, + "Guest_AZ-Pteranodon-Knight-A-PageEvent": 942589002, + "Guest_AZ-StoneSkeletonKey-Minion-Death": 311645584, + "Guest_AZ-Pteranodon-Knight-A": 1127364433, + "Guest_AZ-Raptor-Wraith-A": 585729247, + "Guest_AZ-Raptor-Undead-D": 893623689, + "Guest_G14-HS-Ifzt": 1914694612, + "Guest_AZ-Raptor-Warrior-A": 855749884, + "Guest_AZ-Raptor-Undead-C": 897293705, + "Guest_AZ-Raptor-Undead-B": 896769417, + "Guest_AZ-Raptor-Undead-F": 894672265, + "Guest_AZ-Raptor-Warrior-F": 872527100, + "Guest_AZ-Raptor-Warrior-H": 973190396, + "Guest_AZ-Tritops-Warrior-I": 1942669769, + "Guest_AZ-Tritops-Undead-H": 1215305911, + "Guest_AZ-Tritops-Undead-E": 1164974263, + "Guest_AZ-Tritops-SpkWarrior-A": 860850257, + "Guest_AZ-Tritops-SpkWarrior-B": 860862545, + "Guest_AZ-Tritops-Undead-F": 1181751479, + "Guest_AZ-Tritops-Warrior-K": 868927945, + "Guest_AZ-Tritops-Undead-G": 1198528695, + "Guest_AZ-Tritops-Mummy-A": 1912444877, + "Guest_AZ-Tritops-Warrior-G": 1278555704, + "Guest_AZ-Tritops-Undead-D": 1148197047, + "Guest_AZ-Tritops-Undead-A": 1097865399, + "Guest_AZ-Tritops-SpkChief-B": 2096319577, + "Guest_AZ-Tritops-Mummy-B": 1910872013, + "Guest_AZ-Tritops-Warrior-H": 1405798857, + "Guest_AZ-Dino-Undead-A": 508678670, + "Guest_AZ-Dino-Undead-B": 508679182, + "Guest_AZ-Dino-Undead-D": 508680206, + "Guest_KR_Dino_Undead_A": 1638800628, + "Guest_KR_Dino_Undead_Minion_A": 892450235, + "MNT_HayRideTruck": 75377404, + "MNT_ShadowSpiderForm": 1439860426, + "Transformation_BG_Draconian_Death": 794598804, + "PP_BabyOrca": 1056061090, + "Transformation_BG_Cyclops_Fire": 638854828, + "Transformation_BG_Fairy_Ice": 874078461, + "PP_SpriteLife": 1824998010, + "PP_Raccoon": 1107326808, + "PP_FireKitten": 593048189, + "MNT_SkeletalDuck": 1306273036, + "PP_VampireSquid": 431023109, + "PP_CottonCandy": 891201813, + "PP_ThreeHeadGoat": 1282096939, + "PP_EyeBot": 260189248, + "MNT_DeathBoat": 1444454568, + "MNT_Lemuria": 908974762, + "MNT_DeathBoat_B": 1444456538, + "MNT_DeathBoat_C": 1444456474, + "MNT_Spooky3": 1667775622, + "MNT_PresentBox": 122082000, + "MNT_Orca": 1726961653, + "Guest_LM_Golem_Steel_A_01": 19551853, + "Guest_LM_Golem_Steel_A_02": 36329069, + "Guest_LM_EyeBot_A_01_Death": 380508535, + "Guest_LM_EyeBot_A_01_Myth": 167840640, + "PP_ThreeHeadGoat_B": 1209286443, + "PP_ThreeHeadGoat_C": 1211383595, + "Guest_KR_Eel_Whirligig_A": 1062268734, + "Guest_KR_Goliath_Behemoth_A": 1231139987, + "Guest_KR_Goliath_Behemoth_C": 1231139995, + "Guest_KR_Goliath_Behemoth_D": 1231139975, + "Guest_KR_Goliath_Behemoth_E": 1231139971, + "Guest_KR_Goliath_Behemoth_H": 1231140023, + "Guest_KR_Goliath_Crusher_C": 1651720060, + "Guest_KR_Goliath_Crusher_D": 2106376324, + "Guest_KR_Goliath_Crusher_F": 1032634500, + "Guest_KR_Goliath_Crusher_G": 495763588, + "Guest_KR_Goliath_Crusher_K": 1651720059, + "Guest_AZ-Goliath-Crusher-A": 1874784966, + "Guest_AZ-Goliath-Crusher-B": 264172230, + "Guest_AZ-Goliath-Crusher-C": 801043142, + "Guest_AZ-Goliath-Crusher-D": 809569594, + "Guest_AZ-Goliath-Crusher-E": 272698682, + "Guest_HG_AKT_Butterfly_Time_A_25": 1788523059, + "Guest_HG_AKT_Butterfly_Time_A_50": 1130017331, + "Guest_HG_AKT_Butterfly_Time_A_75": 1809494579, + "Guest_HG_AKT_Butterfly_Time_A_100": 1113240099, + "Guest_HG_AKT_Butterfly_Time_A_130": 1515893283, + "MNT_DeathBoat_D": 1444456922, + "Guest_KR_RhinoBeetle_Sun_A_Bossfight": 47895417, + "Guest_KR_RhinoBeetle_Star_A": 1947510103, + "Guest_KR_RhinoBeetle_Moon_A": 1751275863, + "Guest_ME1_Clockwork_Marine_A": 1481452452, + "Guest_ME1_Clockwork_Marine_B": 1481452068, + "Guest_CC_GoldSkeletonKey_Lice_DeepSpawn_B": 1306132994, + "Guest_KR_DamdinBazar_A_Bossfight": 1333596311, + "Guest_DS-Minion-MAW2": 356796677, + "Guest_KH-Wyrmling-1": 116330513, + "Guest_KH-Wyrmling-20": 183439385, + "Guest_KH-Wyrmling-40": 317657113, + "Guest_KH-Wyrmling-60": 451874841, + "Guest_KH-Wyrmling-80": 586092569, + "Guest_PL_Polar_Bear_Solider_C": 1785662565, + "Guest_Skeleton-Silver-WCBoss-L01": 17766963, + "Guest_Banshee-Red-Elite-L24_B": 1902069117, + "Transformation_BG_WolfWarrior_Myth": 339098032, + "Transformation_BG_RatThief_Balance": 881728218, + "Transformation_BG_Colossus_Storm": 593527492, + "Transformation_BG_Elf_Life": 347405087, + "Transformation_BG_Minotaur_Ice": 1197752291, + "MNT_TRex_B": 660285500, + "PP_SpriteDark_Ice": 2036248504, + "MNT_RollingBall": 1658139390, + "Guest_LM_TRex_Base_A_03": 1378630657, + "Guest_LM_TRex_Base_A_04": 1378745345, + "Guest_LM_TRex_Base_A_05": 1378728961, + "Guest_LM_TRex_Base_A_01": 1378663425, + "Guest_LM_TRex_Base_A_02": 1378647041, + "Guest_LM_TRex_Cyborg_A_01": 151609741, + "Guest_LM_TRex_Cyborg_A_02": 168386957, + "Guest_LM_TRex_Cyborg_A_03": 185164173, + "Guest_LM_TRex_Cyborg_B_01": 151611277, + "Guest_LM_TRex_Cyborg_D_01": 151612301, + "Guest_LM_TRex_Cyborg_E_01": 151611789, + "Guest_LM_TRex_Cyborg_C_01": 151610765, + "Guest_LM_Draconian_Base_A_01": 1607373112, + "Guest_LM_EyeBot_B_01": 1085543056, + "Guest_LM_Drone_Eye_C_01": 916954037, + "Guest_LM_Drone_Eye_D_01": 1230529608, + "Guest_LM_Drone_Eye_D_02": 1230545992, + "Guest_LM_Drone_Eye_D_04": 1230578760, + "Guest_LM_Drone_Eye_D_03": 1230562376, + "Guest_LM_Drone_Eye_A_01": 916954038, + "Guest_LM_Drone_Eye_A_02": 916937654, + "Guest_LM_Drone_Eye_B_01": 1230529611, + "Guest_LM_Drone_Eye_D_05": 1230595144, + "Guest_LM_Drone_Eye_D_07": 1230627912, + "Guest_LM_Drone_Eye_D_08": 1230644296, + "Guest_LM_Drone_Eye_A_03": 916921270, + "Guest_LM_Drone_Eye_A_04": 916904886, + "Guest_LM_Drone_Eye_C_02": 916937653, + "Guest_LM_EyeBot_B_02": 1061940593, + "Guest_LM_EyeBot_B_03": 1085543055, + "Guest_LM_EyeBot_B_04": 1061940594, + "Guest_LM_Drone_Eye_C_03": 916921269, + "Guest_LM_Robot_Kit10_A_01": 199936400, + "Guest_LM_Colossus_Mander_A_01": 2107529026, + "Guest_LM_Robot_Future_A_01": 998840846, + "Guest_LM_Robot_FutureBIG_A_01": 340408568, + "Guest_LM_Robot_FutureBIG_A_02": 340396280, + "Guest_LM_Robot_FutureBIG_A_03": 340400376, + "Guest_LM_Robot_OldOne_A_01": 779070973, + "Guest_LM_Robot_OldOne_A_02": 1315941885, + "Guest_LM_Millipede_Centi_A_01": 168575797, + "Guest_LM_Millipede_Centi_A_03": 168583989, + "Guest_LM_Millipede_Centi_A_02": 168588085, + "Guest_LM_Millipede_Centi_A_04": 168563509, + "Guest_LM_Moth_Sorcerer_A_01": 228191136, + "Guest_LM_Boar_Barbarian_A_01": 1238634912, + "Guest_LM_Boar_Barbarian_A_02": 1238634528, + "Guest_LM_Boar_Barbarian_A_03": 1238634656, + "Guest_LM_Boar_Barbarian_A_04": 1238635296, + "Guest_LM_Boar_Barbarian_A_05": 1238635424, + "Guest_LM_Boar_Chief_A_01": 357051311, + "Guest_LM_Fungus_Humango_A_01": 1398460044, + "Guest_LM_Fungus_Humango_A_02": 1398460172, + "Guest_LM_Treant_Base_A_01": 1658172241, + "Guest_LM_GiantTree_EvilRoots_A_01": 282225934, + "Guest_LM_PA_GreenMan_A_01": 67705044, + "Guest_LM_Fungus_Humango_B_01": 1348128396, + "Guest_LM_Fungus_Humango_A_03": 1398460300, + "Guest_LM_Fungus_Man_C_01": 1648824156, + "Guest_LM_Fungus_Man_C_02": 1650397020, + "Guest_LM_Rhino_Zombie_A_01": 248513993, + "Guest_LM_Malughast_Base_01": 883820436, + "Guest_LM_Malughast_Base_02": 1420691348, + "Guest_LM_Lemur_HierarchF_H_04": 231562115, + "Guest_LM_Malughast_Base_03": 1957562260, + "Guest_LM_Malughast_Base_05": 1263663212, + "Guest_LM_Malughast_Base_06": 726792300, + "Guest_LM_Malughast_Base_08": 346949523, + "Guest_LM_Malughast_Base_09": 883820435, + "Guest_LM_Malughast_Base_04": 1800534124, + "Guest_LM_Minotaur_Skeleton_A_01": 1865122824, + "Guest_LM_Lemur_Wild_B_03": 1783764037, + "Guest_LM_Lemur_HierarchF_H_01": 231541635, + "Guest_LM_Lemur_HierarchF_H_02": 231553923, + "Guest_LM_Mander_Warrior_A_01": 1651245419, + "Guest_LM_Mander_Warrior_A_02": 1651245291, + "Guest_LM_Mander_Warrior_B_01": 1634468203, + "Guest_LM_Mander_Warrior_B_02": 1634468075, + "Guest_LM_Mander_Warrior_A_03": 1651245163, + "Guest_LM_Mander_Warrior_B_03": 1634467947, + "Guest_LM_Mander_Warrior_A_06": 1651245803, + "Guest_LM_Mander_Warrior_A_05": 1651245931, + "Guest_LM_Mander_Mummy_B_01": 1844111521, + "Guest_LM_Mander_Hero_B_01": 865113284, + "MNT_HolidayHippogriff": 938892112, + "MNT_Sabertooth_Ice": 1870381696, + "PP_FenrisWolf_Bantam": 776647759, + "MNT_JetPack": 1986300552, + "MNT_Scooter_F": 1005560708, + "PP_FossaKitten_A": 431748212, + "PP_Elfvis": 147991405, + "Guest_LM_Chicken_Hero_A_01": 1308728300, + "Guest_LM_Horse_Explorer_A_01": 434405482, + "Guest_LM_Duck_HeroineF_A_01": 133199186, + "Guest_LM_Crane_Hero_A_01": 204272548, + "Guest_LM_Deer_HeroineF_A_01": 1800374959, + "Guest_LM_Deer_Hero_A_01": 223109503, + "Guest_LM_Dog_Hero_A_01": 1434615064, + "PP_YearTiger": 777048708, + "MNT_Barrel": 3576425, + "MNT_Krampus": 404117611, + "PP_ChineseTigerCub": 1256032005, + "PP_Lemur": 565774155, + "PP_Robot": 1089075331, + "PP_Capybara": 451970762, + "Guest_LM_Ghoul_Base_A_01": 1822415945, + "Guest_LM_Lemur_HierarchF_H_03": 231549827, + "Guest_LM_Ghoul_Base_A_02": 1820843081, + "Guest_LM_Ghoul_Base_A_03": 1821367369, + "MNT_SpringSoF2022": 1685679511, + "MNT_WarElephant": 875015497, + "PP_Strix": 514230046, + "MNT_Beachball": 791896033, + "MNT_Blank": 633398131, + "MNT_CardboardFlier": 1646636689, + "MNT_LochMonster": 879660722, + "Transformation_BG_Krok_Death": 1395067182, + "Transformation_BG_Draconian_Fire": 1551581732, + "PP_Scotty": 1708580475, + "Guest_KR_Mice_Knight_A": 480101508, + "PP_Peacock": 1178721112, + "MNT_PoodleMoth": 975420235, + "PP_Hummingbird": 624666906, + "PP_WolfWarrior_Myth": 470737416, + "Guest_HG_UFD_Ghost_QueenF_A_100": 795323059, + "Guest_HG_UFD_Ghost_QueenF_A_50": 728230579, + "Guest_HG_UFD_Pirate_UndeadHighland_A_Balance_150": 201145133, + "Guest_HG_UFD_Pirate_UndeadHighland_A_Balance_100": 201144941, + "Guest_HG_UFD_Pirate_UndeadHighland_A_Balance_50": 201177701, + "Guest_HG_UFD_Pirate_UndeadHighland_A_Star_150": 1329885920, + "Guest_HG_UFD_Pirate_UndeadHighland_A_Star_100": 1304720096, + "Guest_HG_UFD_Pirate_UndeadHighland_A_Star_50": 1305768671, + "Guest_HG_UFD_Pirate_UndeadHighland_A_Shadow_150": 1263689971, + "Guest_HG_UFD_Pirate_UndeadHighland_A_Shadow_100": 1263689977, + "Guest_HG_UFD_Pirate_UndeadHighland_A_Shadow_50": 189949177, + "Guest_HG_UFD_Kelpie_Warrior_A_150": 54296095, + "Guest_HG_UFD_Kelpie_Warrior_A_100": 725384735, + "Guest_HG_UFD_Kelpie_Warrior_A_50": 708607503, + "Guest_HG_UFD_Pirate_UndeadHighland_B_150": 1099317831, + "Guest_HG_UFD_Pirate_UndeadHighland_B_100": 25576008, + "Guest_HG_UFD_Pirate_UndeadHighland_B_50": 159793864, + "Guest_HG_UFD_Ghost_QueenF_A_150": 795716275, + "PP_SpiderMinion": 557357331, + "MNT_Vines_Rainbow": 1587180338, + "MNT_YoungDrake": 1279496198, + "PP_Pet_Coconut": 444388490, + "DragonKI": 1490194214, + "PP_Sharkfish": 601628284, + "PP_MimicCake": 48071878, + "Guest_AQ-Bronze-Eagle": 375279744, + "Guest_Spider-Brown-L26": 2128680185, + "Guest_KR_Spider_Giant_D": 744401035, + "Guest_Wizard-Female-Band-Blue-R8": 1447486557, + "Guest_CC_Human_DSCrusaderF_A_01": 726538068, + "Guest_WC_Scarecrow_A_01": 867491011, + "Guest_WC_Banshee_A_01": 1433786463, + "Guest_WC_LostSoul_A_01": 796936146, + "PP_Fairy_Myth": 1117624344, + "PP_SpriteDark_Myth": 1884257976, + "BG_CyclopsLife_A": 944091673, + "Transformation_BG_NinjaPig_Storm": 2005137181, + "Transformation_BG_Fairy_Myth": 1880704188, + "Transformation_BG_Cyclops_Life": 638936708, + "Guest_AQ-Eagle-Praetorian": 1988013806, + "Guest_KM_BabyCarrot_A_01": 766239512, + "Guest_G14-DM-Gargoyle": 282898047, + "Guest_MR_Durvish_Sergeant_A_Boss_01": 1532609325, + "Guest_Cyclops-RedHelmet-KTBoss-L28": 2072371506, + "Guest_EM_Pig_Singer_A_01": 698597069, + "Guest_EM_Pig_Captain_A": 977505995, + "Guest_EM_Pig_Crewman_A": 465576459, + "PP_ChipmunkConductor": 1089819900, + "PP_LuckyCat": 1109326826, + "MNT_ImpCar": 1736092191, + "MNT_Book": 1547655078, + "MNT_JackoLantern": 649919658, + "MNT_Zheng": 742453108, + "MNT_Train": 413197899, + "MNT_Cerberus": 552686313, + "PP_Coconut": 1122741587, + "Transformation_Statue": 1153168084, + "Transformation_Nullity": 622504394, + "PP_Irk": 1825277392, + "Guest_Wyrmling-Fire-R8-1": 531485009, + "MNT_WolfLowPoly_A": 1947890962, + "MNT_WolfLowPoly_B": 1947825426, + "Transformation_BG_RatThief_Fire": 1169330235, + "Transformation_BG_WolfWarrior_Death": 159966683, + "Transformation_BG_Minotaur_Balance": 657855108, + "Transformation_BG_Draconian_Ice": 1907339814, + "Transformation_BG_Colossus_Myth": 1305894338, + "Transformation_NV_Penguin": 1757096851, + "Transformation_NV_Unicorn": 60447768, + "Transformation_NV_Monkey": 1379873688, + "Transformation_NV_Dog": 1961288968, + "PP_Wolf_Storm": 455227171, + "PP_WoodDuck": 1680912895, + "MNT_RockingHorse": 1205280059, + "MNT_SOF2022_Car": 219868812, + "PP_Buffaloon": 796152873, + "MNT_Steamboat": 1969530127, + "MNT_FelizNavidog": 847046394, + "PP_Mustache": 1571079379, + "Guest_DD-DS01-Skeleton-Pirate-20": 226826848, + "Guest_DD-DS01-Skeleton-Pirate-40": 201661024, + "Guest_DD-DS01-Skeleton-Pirate-60": 210049632, + "Guest_DD-DS01-Skeleton-Pirate-80": 251992672, + "Guest_DD-DS01-Skeleton-Pirate": 1994450336, + "Guest_DD-DS01-Shadow-Minion-Fire": 1074864956, + "Guest_DD-DS01-Shadow-Minion-Ice": 1841681214, + "Guest_DD-DS01-Shadow-Minion-Fire-20": 1074880881, + "Guest_DD-DS01-Shadow-Minion-Fire-40": 1074880945, + "Guest_DD-DS01-Shadow-Minion-Ice-20": 96850220, + "Guest_DD-DS01-Shadow-Minion-Ice-40": 96850218, + "Guest_DD-DS01-Shadow-Minion-Fire-60": 1074881009, + "Guest_DD-DS01-Shadow-Minion-Ice-60": 96850216, + "Guest_DD-DS01-Shadow-Minion-Fire-80": 1074880561, + "Guest_DD-DS01-Shadow-Minion-Ice-80": 96850214, + "Guest_SC-SpectreOfB-1": 1471950935, + "Guest_SC-SpectreOfB-20": 1471942759, + "Guest_SC-SpectreOfB-40": 1471942663, + "Guest_SC-SpectreOfB-60": 1471942695, + "Guest_SC-SpectreOfB-80": 1471942855, + "Guest_KH-Skeleton-Ice-60": 2108358962, + "Guest_KH-Skeleton-Ice-40": 2108391730, + "Guest_KH-Skeleton-Ice-20": 2108293426, + "Guest_KH-Skeleton-Ice-1": 2099953970, + "Guest_KH-Skeleton-Ice-80": 2108195122, + "Guest_KH-Undead-Caster-60": 1662604496, + "Guest_KH-Undead-Caster-40": 1661555920, + "Guest_KH-Undead-Caster-20": 1664701648, + "Guest_KH-Undead-Caster-1": 1931564240, + "Guest_KH-Undead-Caster-80": 1667847376, + "Guest_DD-PA01-DeadBeets": 1664999367, + "Guest_DD-PA01-DeadBeets-20": 1901453253, + "Guest_DD-PA01-DeadBeets-40": 2002116549, + "Guest_DD-PA01-DeadBeets-60": 1968562117, + "Guest_DD-PA01-DeadBeets-80": 2069225413, + "Guest_DD-PA01-Disparagus": 1865816461, + "Guest_DD-PA01-Disparagus-20": 573970895, + "Guest_DD-PA01-Disparagus-40": 499770929, + "Guest_DD-PA01-Disparagus-60": 1573512753, + "Guest_DD-PA01-Disparagus-80": 1647712718, + "Guest_DD-PA01-MeanestFlyTrap": 2001546861, + "Guest_DD-PA01-MeanestFlyTrap-20": 1936326253, + "Guest_DD-PA01-MeanestFlyTrap-40": 1936064109, + "Guest_DD-PA01-MeanestFlyTrap-60": 1935801965, + "Guest_DD-PA01-MeanestFlyTrap-80": 1937636973, + "Guest_HG-MD-MacDeath-20": 182639104, + "Guest_HG-MD-MacDeath-40": 182638080, + "Guest_HG-MD-MacDeath-60": 182637056, + "Guest_HG-MD-MacDeath-80": 182636032, + "Guest_HG-MD-MacDeath-100": 174252032, + "Guest_HG-MD-MacDeath-130": 174202880, + "Guest_HG_Sinbad_Skeleton_25": 494617874, + "Guest_HG_Sinbad_Skeleton_50": 42253050, + "Guest_HG_Sinbad_Skeleton_75": 1115994862, + "Guest_HG_Sinbad_Skeleton_100": 2105232646, + "Guest_HG_Sinbad_Skeleton_130": 2105232650, + "Guest_HG_Sinbad_Skeleton_25_02": 492722834, + "Guest_HG_Sinbad_Skeleton_50_02": 44148090, + "Guest_HG_Sinbad_Skeleton_75_02": 1117889902, + "Guest_HG_Sinbad_Skeleton_100_02": 2044247302, + "Guest_HG_Sinbad_Skeleton_130_02": 2044247306, + "Guest_DD-AV01-WyrmBoss": 1648677986, + "Guest_DD-AV01-WyrmBoss-20": 1926730850, + "Guest_DD-AV01-WyrmBoss-40": 1927779426, + "Guest_DD-AV01-WyrmBoss-60": 1928828002, + "Guest_DD-AV01-WyrmBoss-80": 1921487970, + "Guest_RH-Wyrm-Boss-01": 1027277645, + "Guest_RH-Wyrm-Boss-20": 1027277660, + "Guest_RH-Wyrm-Boss-40": 1027277663, + "Guest_RH-Wyrm-Boss-60": 1027277662, + "Guest_RH-Wyrm-Boss-80": 1027277657, + "Guest_HG_Sinbad_Wyrm_25": 1101443356, + "Guest_HG_Sinbad_Wyrm_50": 1101528860, + "Guest_HG_Sinbad_Wyrm_75": 1101445916, + "Guest_HG_Sinbad_Wyrm_100": 1093138204, + "Guest_HG_Sinbad_Wyrm_130": 1093089052, + "Guest_KH-Treant-1": 2001244331, + "Guest_KH-Treant-60": 1968148651, + "Guest_KH-Treant-40": 1968017579, + "Guest_KH-Treant-20": 1967886507, + "Guest_KH-Treant-80": 1967231147, + "Guest_DD-PA01-ForestGrump": 1969685870, + "Guest_DD-PA01-ForestGrump-20": 714666713, + "Guest_DD-PA01-ForestGrump-40": 714666689, + "Guest_DD-PA01-ForestGrump-60": 714666697, + "Guest_DD-PA01-ForestGrump-80": 714666737, + "Guest_DD-PA01-ForestNymphs": 227087348, + "Guest_DD-PA01-ForestNymphs-20": 227023552, + "Guest_DD-PA01-ForestNymphs-60": 227023040, + "Guest_DD-PA01-ForestNymphs-80": 227024832, + "Guest_SC-Pig-BalanceWizardA-1": 475456968, + "Guest_SC-Pig-BalanceWizardA-20": 477550024, + "Guest_SC-Pig-BalanceWizardA-40": 477541832, + "Guest_SC-Pig-BalanceWizardA-60": 477533640, + "Guest_SC-Pig-BalanceWizardA-80": 477525448, + "Guest_SC-Pig-BalanceWizardB-1": 475456964, + "Guest_SC-Pig-BalanceWizardB-20": 477550020, + "Guest_SC-Pig-BalanceWizardB-40": 477541828, + "Guest_SC-Pig-BalanceWizardB-60": 477533636, + "Guest_SC-Pig-BalanceWizardB-80": 477525444, + "Guest_SC-Pig-BalanceWizardC-1": 475456960, + "Guest_SC-Pig-BalanceWizardC-20": 477550016, + "Guest_SC-Pig-FireWizard-1": 2048176291, + "Guest_SC-Pig-FireWizard-20": 2031399073, + "Guest_SC-Pig-FireWizard-40": 2132062369, + "Guest_SC-Pig-FireWizard-60": 2098507937, + "Guest_SC-Pig-FireWizard-80": 1930735777, + "Guest_SC-Pig-IceWizardF-1": 1178687744, + "Guest_SC-Pig-IceWizardF-20": 1161910526, + "Guest_SC-Pig-IceWizardF-40": 1128356094, + "Guest_SC-Pig-IceWizardF-60": 1094801662, + "Guest_SC-Pig-IceWizardF-80": 1329682686, + "Guest_SC-Pig-MythWizard-1": 2048492725, + "Guest_SC-Pig-MythWizard-20": 2031715511, + "Guest_SC-Pig-MythWizard-40": 2132378807, + "Guest_SC-Pig-MythWizard-60": 2098824375, + "Guest_SC-Pig-MythWizard-80": 1931052215, + "Guest_SC-Pig-StormWizardF-1": 1743849420, + "Guest_SC-Pig-StormWizardF-20": 1743851464, + "Guest_SC-Pig-StormWizardF-40": 1743851488, + "Guest_SC-Pig-StormWizardF-60": 1743851480, + "Guest_SC-Pig-StormWizardF-80": 1743851504, + "Guest_KH-Pig-Bandit-Lord-1": 1080496628, + "Guest_KH-Pig-Bandit-Lord-20": 543625652, + "Guest_KH-Pig-Bandit-Lord-40": 530116172, + "Guest_KH-Pig-Bandit-Lord-60": 1603857996, + "Guest_KH-Pig-Bandit-Lord-80": 1617367475, + "Guest_KH-Pig-Bandit-Ninja-1": 1945100907, + "Guest_KH-Pig-Bandit-Ninja-20": 1945102951, + "Guest_KH-Pig-Bandit-Ninja-40": 1945102975, + "Guest_KH-Pig-Bandit-Ninja-60": 1945102967, + "Guest_KH-Pig-Bandit-Ninja-80": 1945102927, + "Guest_KH-Pig-War-Caster-1": 656859765, + "Guest_KH-Pig-War-Caster-20": 606528119, + "Guest_KH-Pig-War-Caster-40": 572973687, + "Guest_KH-Pig-War-Caster-60": 539419255, + "Guest_KH-Pig-War-Caster-80": 774300279, + "Guest_KH-Pig-War-Warrior-Boss-1": 16342355, + "Guest_KH-Pig-War-Warrior-Boss-20": 2143724205, + "Guest_KH-Pig-War-Warrior-Boss-40": 2118558381, + "Guest_KH-Pig-War-Warrior-Boss-60": 2126946989, + "Guest_KH-Pig-War-Warrior-Boss-80": 2101781165, + "Guest_SC-Pig-BalanceWizardC-40": 477541824, + "Guest_SC-Pig-BalanceWizardC-60": 477533632, + "Guest_SC-Pig-BalanceWizardC-80": 477525440, + "Guest_KH-Helephant-Death-20": 1109389719, + "Guest_KH-Helephant-Death-40": 2111835753, + "Guest_KH-Helephant-Death-60": 1038093929, + "Guest_KH-Helephant-Death-80": 35647896, + "Guest_KH-GreyOgre-Spider-1": 356368404, + "Guest_KH-GreyOgre-Spider-20": 1966981204, + "Guest_KH-GreyOgre-Spider-40": 1254244268, + "Guest_KH-GreyOgre-Spider-60": 180502444, + "Guest_KH-GreyOgre-Spider-80": 893239379, + "Guest_HG_Sinbad_Colossus_25": 1190802829, + "Guest_HG_Sinbad_Colossus_50": 1493551719, + "Guest_HG_Sinbad_Colossus_75": 419809907, + "Guest_HG_Sinbad_Colossus_100": 653933977, + "Guest_HG_Sinbad_Colossus_130": 653933973, + "Guest_NV_Dino_AberrantUndead_A_01": 2035087398, + "Guest_NV_Hellephant_Aberrant_A_01": 989522333, + "Guest_NV_Hellephant_Aberrant_A_02": 989522334, + "Guest_NV_BananaSpider_Base_A_01": 1585810541, + "Guest_NV_BananaSpider_Base_A_02": 1581616237, + "Guest_NV_BananaSpider_Base_A_03": 1577421933, + "Guest_NV_BananaSpider_Base_A_04": 1606782061, + "Guest_NV_BananaSpider_Base_A_05": 1602587757, + "Guest_NV_Wyrm_Aberrant_A_01": 16108415, + "Guest_NV_Monkey_Zombie_A_01": 1854775300, + "Guest_NV_Monkey_Zombie_A_02": 1854775304, + "Guest_NV_Monkey_Zombie_A_03": 1854775308, + "Guest_NV_Monkey_Zombie_A_04": 1854775312, + "MNT_Flag_Monster": 867940056, + "Guest_SKB_WY_DarkBramble_A_30": 2046798767, + "Guest_SKB_WY_DarkBramble_A_50": 2046797999, + "Guest_SKB_WY_DarkBramble_A_100": 2044701359, + "Guest_SKB_WY_DarkBramble_A_150": 2044721839, + "Guest_SKB_GH_Boar_A_30": 1547921275, + "Guest_SKB_WC_SpiritIgnorance_A_50": 1488876986, + "Guest_SKB_WC_SpiritIgnorance_A_100": 2025748410, + "Guest_SKB_WC_SpiritIgnorance_A_150": 2025748413, + "Guest_SKB_DS_Loremaster_A_50": 527751539, + "Guest_SKB_DS_Loremaster_A_100": 527817059, + "Guest_SKB_DS_Loremaster_A_150": 527817699, + "Guest_SKB_CL_Dan_A_50": 637418706, + "Guest_SKB_CL_Dan_A_60": 1510064941, + "Guest_SKB_CL_Dan_A_100": 637410512, + "Guest_SKB_CL_Dan_A_150": 637410432, + "Guest_SKB_AV_Spectre_A_50": 2104631195, + "Guest_SKB_AV_Spectre_A_100": 2102534041, + "Guest_SKB_AV_Spectre_A_150": 2018647961, + "Guest_SKB_MS_Samoorai_A_50": 2029641915, + "Guest_SKB_MS_Samoorai_A_100": 2096750843, + "Guest_SKB_MS_Samoorai_A_150": 587603717, + "Transformation_BG_Krok_StromTemplate": 1317694546, + "PP_ChineseRabbit": 382941643, + "PP_ParadeElf": 1036247808, + "MNT_HeartSwarm": 918199310, + "MNT_SpringSOF2023": 1417178519, + "Transformation_BG_Elf_Death2Template": 1606653101, + "MNT_GummyBunny_D": 775840224, + "Transformation_BG_Krok_Life2Template": 747486212, + "PP_Flame": 959186933, + "PP_YachtRock": 1500927358, + "PP_PirateYachtRock": 1227549100, + "PP_ChickenMonster": 1845706534, + "PP_SnowHoppers_B": 1496460038, + "PP_SnowHoppers_C": 1496457990, + "MNT_Oarfish": 29720265, + "PP_RingTailedCat": 993143427, + "MNT_Fanboat": 19347694, + "MNT_MiniSub": 298697910, + "PP_DumboOctopus": 966435639, + "PP_Glowbug_Balance": 1405529577, + "PP_Glowbug_Death": 405117107, + "PP_Glowbug_Fire": 651698987, + "PP_Glowbug_Ice": 2124926395, + "PP_Glowbug_Life": 601367299, + "PP_Glowbug_Myth": 592978024, + "PP_Glowbug_Storm": 61190446, + "PP_DumboOctopus_B": 968448823, + "PP_DumboOctopus_C": 968383287, + "PP_BananaSpider_01": 1074383522, + "PP_BananaSpider_02": 1080674978, + "PP_BananaSpider_03": 1078577826, + "Guest_HG_NM_BeardDragon_Base_C_01": 82913785, + "Guest_HG_NM_BeardDragon_Base_C_02": 82913786, + "Guest_HG_NM_BeardDragon_Base_C_03": 82913787, + "Guest_HG_NM_Glowbug_Base_C_01": 544959703, + "Guest_HG_NM_Glowbug_Base_C_02": 544955607, + "Guest_HG_NM_Glowbug_Base_C_03": 544951511, + "Guest_HG_NM_Glowbug_Base_C_04": 544947415, + "Guest_HG_NM_Glowbug_Base_C_05": 544943319, + "Guest_HG_NM_Glowbug_Base_C_06": 544939223, + "Guest_HG_NM_Glowbug_Base_C_07": 544935127, + "MNT_BouquetofFlowers": 1511180560, + "PP_Piggle_Rainbow": 91081383, + "MNT_Sabertooth_FlameSaber": 1949516909, + "Guest_HG_NM_BeardDragon_Base_A_01": 83175929, + "Guest_HG_NM_BeardDragon_Base_A_02": 83175930, + "Guest_HG_NM_BeardDragon_Base_A_03": 83175931, + "Guest_HG_NM_BeardDragon_Base_B_01": 83044857, + "Guest_HG_NM_BeardDragon_Base_B_02": 83044858, + "Guest_HG_NM_BeardDragon_Base_B_03": 83044859, + "Guest_HG_NM_Glowbug_Base_B_01": 8088791, + "Guest_HG_NM_Glowbug_Base_B_02": 8084695, + "Guest_HG_NM_Glowbug_Base_B_03": 8080599, + "Guest_HG_NM_Glowbug_Base_B_04": 8076503, + "Guest_HG_NM_Glowbug_Base_B_05": 8072407, + "Guest_HG_NM_Glowbug_Base_B_06": 8068311, + "Guest_HG_NM_Glowbug_Base_B_07": 8064215, + "Guest_HG_NM_Glowbug_Base_A_01": 1618701527, + "Guest_HG_NM_Glowbug_Base_A_02": 1618697431, + "Guest_HG_NM_Glowbug_Base_A_03": 1618693335, + "Guest_HG_NM_Glowbug_Base_A_04": 1618689239, + "Guest_HG_NM_Glowbug_Base_A_05": 1618685143, + "Guest_HG_NM_Glowbug_Base_A_06": 1618681047, + "Guest_HG_NM_Glowbug_Base_A_07": 1618676951, + "MNT_SummerSOF2023": 1636120912, + "PP_Cyclops_Fire": 7821755, + "PP_Death_Elf": 1535744155, + "PP_Newt": 1438123483, + "PP_Echidna": 735439358, + "MNT_Wombat": 580544786, + "Transformation_BG_NinjaPig_Balance": 1799661438, + "Transformation_BG_Cyclops_Ice": 647975824, + "Transformation_BG_Minotaur_Storm": 1005667041, + "Transformation_GR_Parasaur_Priest_Ice": 1101466351, + "Transformation_GR_Parasaur_Priest_Fire": 892193041, + "Transformation_GR_Parasaur_Priest_Storm": 1525882116, + "Transformation_GR_Parasaur_Priest_Balance": 1127637476, + "Guest_GR_AZ_Parasaur_Undead_B_01": 322587487, + "MNT_WitchCat": 1167097888, + "PP_RolyPoly": 578538330, + "PP_Capybara_B": 628131532, + "MNT_OutbackTruck": 1815527801, + "PP_PoodleSailor": 2137704795, + "MNT_PolarianCannon": 2103490826, + "PP_TazmanianDevil": 1773548765, + "Guest_SKB_AZ_Ixcax_A_100": 556560994, + "Guest_SKB_AZ_Ixcax_A_150": 556610146, + "Guest_SKB_AZ_Ixcax_A_50": 564951650, + "MNT_GhoulsShovel": 2035610946, + "PP_CrystalBdayDragon": 1897078804, + "PP_SunGobblerBall": 1522469440, + "PP_Sun_GreenGobbler": 1337690394, + "MNT_2P_AutumnTreant": 1063435527, + "PP_AutumnTreant": 561077291, + "MNT_FlyingMonkey": 490807393, + "PP_BabyPlantMonster": 2076646587, + "MNT_PlantCreature_A": 1802823265, + "Transformation_BG_Fairy_Fire": 2065252898, + "Transformation_BG_Krok_Myth": 277926564, + "Transformation_BG_RatThief_Life": 1167758651, + "Transformation_BG_Elf_Balance": 1628238937, + "Transformation_BG_Colossus_Death": 184392004, + "Transformation_FortressPod": 139738335, + "P_Wombat_POLYMORPH": 1132264953, + "PP_SharkWobbegong": 1994247222, + "PP_ChineseNYDragon": 1126999021, + "PP_JingleBellRock": 1076037919, + "PP_Krok_Mummy_Myth": 438487583, + "PP_Cyclops_Ice": 1476966187, + "MNT_OutbackTruckB": 1813299577, + "MNT_EvilSnowmanBall": 758818712, + "MNT_ThanksgivingGobbler": 1760011910, + "Guest_WL_Ghost_LostSoul_A_01": 1224111704, + "Guest_WL_Kangaroo_Drover_F_01": 2025562931, + "Guest_WL_Spider_WarriorMage_C_01": 1296557888, + "Guest_WL_Spider_WarriorMage_C_02": 1430775616, + "Guest_WL_Spider_WarriorMage_C_03": 1564993344, + "Guest_WL_Spider_WarriorMage_C_04": 1699211072, + "Guest_WL_Spider_WarriorMage_C_05": 1833428800, + "Guest_WL_Spider_WarriorMage_C_06": 1967646528, + "Guest_WL_Spider_WarriorMage_C_07": 2101864256, + "Guest_SKB_KR_Lightbane_A_100": 837930677, + "Guest_SKB_KR_Lightbane_A_160": 837930669, + "Guest_SKB_KR_Lightbane_A_50": 1309555019, + "Transformation_WL_Phantasmanian_DevilTemplate": 384891502, + "MNT_2P_LeaflessTreant": 623083386, + "PP_Minotaur_Ice": 700151737, + "MNT_Scooter_G": 737125252, + "Guest_WL_Frog_Owner_B_01": 767864686, + "MNT_SilentKnight": 646654812, + "Guest_WL_TRex_Base_A_01": 1842562033, + "Guest_WL_TRex_Base_B_01": 304921616, + "PP_Groundhog": 108643243, + "Guest_NV_Unicorn_Guard_C_04": 1845621, + "MNT_EmuPunk": 647315080, + "MNT_HeartBalloon": 798826551, + "PP_ValentineHoppers": 968693964, + "MNT_SpringSOF2024_Heckhound": 453640548, + "Guest_AQ-Centaur-Arion": 1856508139, + "Guest_AQ-Centaur-Artemis": 333294011, + "Guest_AQ-Horse-Sea": 724896200, + "Guest_KR_Horse_Warlord_A_Bossfight": 1302284326, + "Guest_KR_Horse_Warlord_A_BossfightSP": 1300726822, + "Guest_KR_Zebra_Thrall_A": 1250265667, + "Guest_KR_Zebra_Thrall_A_Boss_Minion": 345677011, + "Guest_KR_Zebra_Thrall_A_Gallery": 1520303483, + "Guest_KH-Gray-Horse-40": 1802231403, + "Guest_KH-Gray-Horse-20": 1802231307, + "Guest_G14-BP-Unicorn_Fencer_Boss": 1602044152, + "Guest_Horse-Merc-Brown-L37": 1831175255, + "Guest_Horse-Merc-Tan-L39": 1363854837, + "Guest_Horse-Merc-Tan-L39-1": 2085275127, + "Guest_Horse-Merc-Gray-MSBoss-L39": 1863452041, + "Guest_Horse-Merc-Gray-L39": 2039135564, + "Guest_Horse-Merc-Tan-L38": 1363330549, + "Guest_WC_Horse_Mercenary_Roberto": 891924774, + "Guest_ZF-Nathi-Yellowstripe-R11": 1505157721, + "Guest_ZF-TseTse-Main-R11-Boss": 114927854, + "Guest_ZF-TseTse-Elephant-R11": 894147273, + "Guest_ZF-Zebra-Impi-Raider-R11": 1378242919, + "Guest_ZF-Zebra-Warrior-Male-R10-1": 1791906265, + "Guest_ZF-Zebra-Senzan-Zebu-R10-Boss": 373712721, + "Guest_ZF-Zebra-Shaka-Zebu-R10-Boss": 662142985, + "Guest_ZF-Zebra-Warrior-Female-R10-02": 1507835670, + "Guest_ZF-Zebra-Warrior-Male-R10": 47075786, + "Guest_ZF-Zebra-Warrior-Male-R10-02": 1791906714, + "Guest_ZF-Zebra-Warrior-Male-R10-03": 1791906746, + "Guest_ZF-Zebra-Warrior-Male-R10-05": 1791906682, + "Guest_ZF-Zebra-Warrior-Male-R10-2": 1791906268, + "Guest_ZF_Zebra_Spectral_Guardian-R11": 431970996, + "Guest_CC_Horse_Apoc_A_01": 644668374, + "Guest_CC_Horse_Apoc_B_01": 644668390, + "Guest_CC_Horse_Apoc_C_01": 644668406, + "Guest_CC_Horse_Apoc_D_01": 644668294, + "Guest_CC_Horse_Apoc_D_02": 645192582, + "Guest_CC_Unicorn_CorsairF_B_01": 1378532506, + "Guest_CC_Unicorn_Duelist_B_01": 64891542, + "Guest_CC_Unicorn_Guard_B_01": 1075063242, + "Guest_CC_Unicorn_Guard_B_02": 1075063238, + "Guest_CC_Unicorn_Guard_B_03": 1075063234, + "Guest_NV_Horse_HordeSoldier_A_01": 504396960, + "Guest_NV_Horse_HordeSoldier_A_02": 101743776, + "Guest_NV_Horse_HordeOfficer_A_01": 343600992, + "Guest_NV_Horse_HordeSoldier_A_03": 235961504, + "Guest_NV_Horse_HordeOfficer_A_02": 209383264, + "Guest_NV_Horse_AberrantTungAk_A_01": 952263441, + "Guest_NV_Horse_AberrantTungAk_A_02": 952263537, + "Guest_NV_Horse_TungAk_B_01": 1194718672, + "Guest_NV_Horse_TungAk_B_02": 657847760, + "Guest_NV_Horse_HordeOfficer_B_01": 343596896, + "Guest_NV_Horse_HordeOfficer_B_02": 209379168, + "Guest_NV_Horse_TungAk_A_01": 1194669520, + "Guest_NV_Unicorn_Guard_C_01": 1845601, + "Guest_NV_Unicorn_Guard_A_01": 797025, + "Guest_NV_Unicorn_AberrantGuard_A_01": 739851573, + "Guest_NV_Unicorn_Guard_C_02": 1845613, + "Guest_NV_Unicorn_Guard_C_03": 1845609, + "Guest_NV_Unicorn_AberrantGuard_A_02": 739848501, + "Guest_NV_Unicorn_Guard_A_02": 797037, + "Guest_NV_Unicorn_AberrantGuard_A_03": 739849525, + "Guest_NV_Unicorn_AberrantGuard_A_04": 739846453, + "Guest_NV_Horse_HordeOfficer_A_03": 75165536, + "Guest_NV_Horse_HordeSoldier_A_04": 907050144, + "Guest_NV_Horse_HordeSoldier_A_05": 1041267872, + "Guest_NV_Horse_HordeSoldier_C_01": 504388768, + "Guest_HG_TRAIN_Horse_MustangFencerF_A_Balance_50": 871182987, + "Guest_HG_TRAIN_Horse_MustangFencerF_A_Balance_75": 871176715, + "Guest_HG_TRAIN_Horse_MustangFencerF_A_Life_100": 886489645, + "Guest_HG_TRAIN_Horse_MustangFencerF_A_Balance_25": 871177035, + "Guest_HG_TRAIN_Horse_MustangFencerF_A_Balance_100": 872231819, + "Guest_HG_TRAIN_Horse_MustangFencerF_A_Life_140": 1960231469, + "Guest_HG_TRAIN_Horse_MustangFencerF_B_100": 2089957067, + "Guest_HG_TRAIN_Horse_MustangFencerF_A_Life_25": 1700184589, + "Guest_HG_TRAIN_Horse_MustangFencerF_A_Life_50": 920044045, + "Guest_HG_TRAIN_Horse_MustangFencerF_A_Life_75": 1742127629, + "Guest_HG_TRAIN_Horse_MustangFencerF_A_Balance_140": 872223627, + "Guest_HG_TRAIN_Horse_MustangFencerF_B_50": 2089952970, + "Guest_HG_TRAIN_Horse_MustangFencerF_B_75": 57530654, + "Guest_HG_TRAIN_Horse_MustangFencerF_B_140": 2089957099, + "Guest_HG_TRAIN_Horse_MustangFencerF_B_25": 1131272477, + "Guest_LM_Horse_Explorer_A_01_Hard": 1711837140, + "Guest_WL_Unicorn_Guard_A_01": 1074538935, + "Guest_WL_Unicorn_CorsairF_E_01": 1378532603, + "Guest_WL_Unicorn_Warlord_A_01": 1321310496, + "Guest_KH-Gray-Horse-1": 1802239547, + "Guest_KH-Gray-Horse-60": 1802231371, + "Guest_KH-Gray-Horse-80": 1802231467, + "Transformation_BG_NinjaPig_Ice": 186026527, + "Transformation_BG_Cyclops_Storm": 897316984, + "PP_MinotaurBalance": 1344665951, + "PP_OrthusMoon": 1804503950, + "PP_CoolPineapple": 1149318906, + "PP_TwinkleStars": 766378011, + "PP_Scroll": 1613313091, + "PP_Colossus_Death": 40713075, + "PP_ColossusDeath": 530964029, + "PP_KILiveRock": 1975550570, + "MNT_Outrigger": 1417937299, + "MNT_BookWyrm": 2080129190, + "MNT_RacingSnail": 1996220963, + "MNT_UmbrellaCloud": 145762615, + "PP_PropellerCat": 2094718580, + "MNT_TRex_Shirt": 586746001, + "MNT_Swarm_Bee": 1625228695, + "MNT__CelestialMoon": 968360256, + "Guest_ME_Sinbad_IronSultan_150": 2001676223, + "Guest_ME_Sinbad_Cyclops_150": 1968943689, + "Guest_ME_Sinbad_Skeleton_150": 1031490819, + "Guest_ME_Sinbad_Colossus_150": 1727675806, + "Guest_ME_Sinbad_Skeleton_150_02": 970505475, + "Guest_ME_Sinbad_Wyrm_150": 19314443, + "Guest_ZF-Zebra-Inzinzebu-Bandit-R11": 430262550, + "Guest_ZF-Zebra-Warrior-Male-R10-04": 1791906650, + "PP_TwinkleStars_02": 805304347, + "PP_TwinkleStars_03": 803207195, + "PP_TwinkleStars_01": 799012891, + "Transformation_BodleianHarrow": 609627870, + "Guest_HG_Gryphon_OwlStatue_A_01_L170": 77756046, + "Guest_HG_Gryphon_OwlStatue_A_02_L170": 73561742, + "Guest_HG_Gryphon_OwlStatue_A_01_L100": 77752974, + "Guest_HG_Gryphon_OwlStatue_A_02_L100": 73558670, + "Guest_HG_Gryphon_OwlStatue_A_01_L50": 78277134, + "Guest_HG_Gryphon_OwlStatue_A_02_L50": 74082830, + "MNT_SummerSOF2024_JudgementWings": 1078163967, + "MNT_Pegasus_E": 131704054, + "MNT_PolarisHero": 665176426, + "PP_Duckana": 1128961578, + "PP_QueenBee": 833291695, + "Transformation_BG_Draconian_Balance": 2078940682, + "Transformation_BG_WolfWarrior_Fire": 1762248682, + "Transformation_BG_Minotaur_Death": 309090657, + "PP_WolfWarrior_Fire": 685685256, + "PP_WolfWarrior_Death": 1857202724, + "Guest_ME-GTAV01-WyrmBoss-150": 1482208618, + "Guest_ME_SpectreOfB_L150": 684104791, + "Guest_ME_MD_MacDeath_L150": 1128977615, + "Guest_ME_Pig_BalanceWizardA_L150": 959913724, + "Guest_ME_Pig_BalanceWizardB_L150": 959913712, + "Guest_ME_Pig_BalanceWizardC_L150": 959913716, + "Guest_ME_Pig_FireWizard_L150": 964392255, + "Guest_ME_Pig_IceWizardF_L150": 86941026, + "Guest_ME_Pig_MythWizard_L150": 964051241, + "Guest_ME_Pig_StormWizardF_L150": 2016383602, + "Guest_ME_Clock_Clockworker_L150": 1424569772, + "Guest_ME_Clock_ClockworkSpanner_L150": 1966824609, + "Guest_ME_Clock_Lugs_L150": 370290904, + "Guest_ME_Clock_Lucia_L150": 1857768409, + "MNT_EvilChair": 339577702, + "PP_Cyclops_Storm": 621464512, + "PP_Krokomummy_Life": 462432735, + "Transformation_CL_Rematch_Crustacean": 1686865207, + "Transformation_CL_Rematch_Protector": 1893951532, + "Transformation_CL_Rematch_Angler": 120412196, + "Transformation_CL_Rematch_Piscean": 1624106070, + "Transformation_Zebra_Template": 1900548493, + "Transformation_Zebra2_Template": 325099540, + "Transformation_Zebra3_Template": 325099524, + "Transformation_Zebra4_Template": 325099636, + "MNT_SweetSixteenBirthday": 1009398096, + "MNT_2P_TRex_Bones": 1618543266, + "MNT_SpringBumperCar": 1725007788, + "PP_WinterGoblin": 2025052443, + "PP_OnyxAnubis": 1552575189, + "PP_OttomanCat": 223541582, + "MNT_HolidayYeti": 780983974, + "MNT_IceSled": 979912604, + "MNT_TurtleDoves": 1850191638, + "MNT_KrokChariot": 559783620, + "MNT_Mustang": 1775949401, + "MNT_PumpkinBall": 382849054, + "Transformation_BG_Fairy_Storm": 836920873, + "Transformation_BG_Elf_Myth": 1506493664, + "Transformation_NinjaPig_Life": 816802847, + "Transformation_BG_Krok_Fire": 1060580712, + "Transformation_BG_Colossus_Balance": 1067963041, + "Transformation_BG_NinjaPig_Life": 441460895, + "PP_Penguin_03": 1623028104, + "Transformation_Duck_Librarian_B": 864067551, + "Transformation_Duck_Librarian_A": 859873247, + "Transformation_Duck_Adventurer": 194560769, + "Transformation_Gummy_Bunny_C": 1298087941, + "Transformation_Frog_Horned_A": 837201339, + "Transformation_Glowbug_Storm": 2096380446, + "Transformation_Marshmallow_Critter_A": 1036335317, + "Transformation_Snipe_Base_B": 232132109, + "Transformation_Snowball": 915248481, + "Transformation_Wombat_Base": 333435450, + "Transformation_Human_Malistaire": 1414887773, + "Transformation_Morganthe_E": 1745180054, + "Transformation_Spider_Grandfather": 1131773979, + "Transformation_Khrulhu_Dasein_B": 367878762, + "Transformation_Devourer_Base": 698770016, + "Transformation_Alien_Meteor": 638746168, + "Transformation_Nightmare_Malus": 704212821, + "Transformation_Daemon_Personal": 278266463, + "PP_ValentinesDay": 810003364, + "PP_BabyHippo": 422858138, + "PP_Aardwold": 1592150119, + "PP_Aardwold_C": 1902528613, + "MNT_Cobra": 472847981, + "MNT_Serpopard": 1629558909, + "MNT_Serpopard_B": 1629556867, + "MNT_Serpopard_C": 1629556931, + "PP_Fairy_Fire": 1847789544, + "MNT_Mustang_B": 1448793691, + "PP_FireElfMyth": 1933609060, + "MNT_KT-BoatRide": 1560860110, + "MNT_ShadowMagic": 2095978357, + "MNT_MardiGrasFloat_A": 1740674432, + "PP_ChineseNYSnake": 988201940, + "MNT_AnubisDog": 1995079956, + "PP_ShadowImp_A": 1604849432, + "PP_ShadowImp_B": 1604849438, + "PP_ShadowImp_C": 1604849436, + "MNT_ShadowMagic_B": 2093870965, + "MNT_ShadowMagic_C": 2093805429, + "Guest_KT_SE_Tritops_Warrior_I_01": 97516901, + "Guest_KT_SE_DS_Draconian_Model_01": 1916095079, + "Guest_KT_SE_Beetle_Scarab_C_01_L50": 1064004307, + "Guest_KT_SE_Roach_Warrior_C_03": 1872574203, + "Guest_KT_SE_Roach_Warrior_C_04": 1871918843, + "Guest_KT_SE_Roach_Warrior_C_05": 1871787771, + "Guest_KT_SE_Beetle_Scarab_C_01": 1353410759, + "Guest_KT_SE_Mander_Citizen_B_01_L50": 2044509396, + "Guest_KT_SE_Mander_CitizenF_B_01_L50": 164327682, + "Guest_KT_SE_Treant_Tormented_A_01": 1359800879, + "Guest_KT_SE_Treant_Base_A_01": 765512948, + "Guest_KT_SE_Mander_Citizen_F_D_05": 171244620, + "Guest_KT_SE_Mander_CitizenF_D_01": 163791037, + "Guest_KT_SE_Mander_CitizenF_D_02": 298008765, + "Guest_KT_SE_Mander_CitizenF_D_03": 432226493, + "Guest_KT_SE_Mander_CitizenF_D_04": 566444221, + "Guest_KT_SE_Mander_MummyF_A_01": 964349080, + "Guest_KT_SE_Mander_MummyF_A_02": 964480152, + "Guest_KT_SE_MC_Wraith_Model_01": 1101442118, + "Guest_KT_SE_Mander_CitizenF_B_02": 298000573, + "MNT_Wheelbarrow": 614248817, + "MNT_StubbornLlama": 221089074 } }, - "m_cameraZoneName": { - "type": "std::string", + "m_afterCombatDance": { + "type": "unsigned char", "id": 19, - "offset": 368, - "flags": 287, + "offset": 184, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3131581121 + "hash": 2012714323 }, - "m_duration": { - "type": "float", + "m_nSkinDecal2": { + "type": "unsigned short", "id": 20, - "offset": 400, - "flags": 31, + "offset": 192, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 920323453 + "hash": 1904828726 }, - "m_delay": { - "type": "float", + "m_extendedHairColor": { + "type": "unsigned char", "id": 21, - "offset": 404, - "flags": 287, + "offset": 194, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 881988134 + "hash": 1534273092 }, - "m_cameraHidePlayers": { - "type": "int", + "m_extendedSkinDecal": { + "type": "unsigned short", "id": 22, - "offset": 408, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 28533149 - }, - "m_walkAwayNpcTemplateID": { - "type": "gid", - "id": 23, - "offset": 416, - "flags": 33554719, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 942697507 - }, - "m_walkAwayExitDirectionInDegrees": { - "type": "float", - "id": 24, - "offset": 424, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 396419785 - }, - "m_walkAwayFadeTime": { - "type": "float", - "id": 25, - "offset": 428, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 822405687 - }, - "m_walkAwayUseCurrentFacing": { - "type": "bool", - "id": 26, - "offset": 432, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1464855436 - }, - "m_standInPlayerTag": { - "type": "std::string", - "id": 27, - "offset": 440, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1590121141 - }, - "m_fadeOutCamera": { - "type": "bool", - "id": 28, - "offset": 472, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1766121252 - }, - "m_snapCameraToPlayerAtExit": { - "type": "bool", - "id": 29, - "offset": 473, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1323369645 - }, - "m_secondaryCameraName": { - "type": "std::string", - "id": 30, - "offset": 480, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1670705581 - }, - "m_secondaryInterpolationDuration": { - "type": "float", - "id": 31, - "offset": 512, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1873822349 - }, - "m_npcStandInList": { - "type": "std::string", - "id": 32, - "offset": 520, - "flags": 287, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2076308937 - }, - "m_dialogAnimationList": { - "type": "std::string", - "id": 33, - "offset": 536, - "flags": 287, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2444806919 - }, - "m_dialogTurningList": { - "type": "std::string", - "id": 34, - "offset": 552, - "flags": 287, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2782869422 - }, - "m_npcYawOffsetInDegrees": { - "type": "float", - "id": 35, - "offset": 568, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1395075270 - }, - "m_allowPlayerToMove": { - "type": "bool", - "id": 36, - "offset": 572, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 225101337 - }, - "m_soundEffectFile": { - "type": "std::string", - "id": 37, - "offset": 576, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3235157265 - }, - "m_musicFile": { - "type": "std::string", - "id": 38, - "offset": 608, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2963686620 - }, - "m_nonStackableMusic": { - "type": "bool", - "id": 39, - "offset": 640, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1675595625 - }, - "m_nonRepeatableMusic": { - "type": "bool", - "id": 40, - "offset": 641, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2138315572 - }, - "m_playMusicAtSFXVolume": { - "type": "bool", - "id": 41, - "offset": 642, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2130871816 - }, - "m_soundEffectDelay": { - "type": "float", - "id": 42, - "offset": 644, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1586382460 - }, - "m_musicDelay": { - "type": "float", - "id": 43, - "offset": 648, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1217785767 - }, - "m_musicFadeTime": { - "type": "float", - "id": 44, - "offset": 652, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 502925015 - }, - "m_dontReleaseCameraAtExit": { - "type": "bool", - "id": 45, - "offset": 474, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1107508961 - }, - "m_disableBackButton": { - "type": "bool", - "id": 46, - "offset": 656, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 122355444 - }, - "m_enableExitButton": { - "type": "bool", - "id": 47, - "offset": 657, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1824693936 - }, - "m_cameraFadeType": { - "type": "std::string", - "id": 48, - "offset": 664, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2021935382, - "enum_options": { - "": 0, - "In Out Black": "In Out Black", - "In Out White": "In Out White", - "In Black": "In Black", - "Out Black": "Out Black", - "In White": "In White", - "Out White": "Out White", - "__DEFAULT": 0 - } - }, - "m_cameraFadeTime": { - "type": "float", - "id": 49, - "offset": 696, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 614419391, - "enum_options": { - "__DEFAULT": "0.5" - } - }, - "m_idleAnimation": { - "type": "std::string", - "id": 50, - "offset": 704, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2900487193 - }, - "m_spamTime": { - "type": "float", - "id": 51, - "offset": 736, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1727215063, - "enum_options": { - "__DEFAULT": "1.0" - } - }, - "m_playSoundIfSpamming": { - "type": "bool", - "id": 52, - "offset": 740, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 690006749, - "enum_options": { - "__DEFAULT": 1 - } - }, - "m_playMusicIfSpamming": { - "type": "bool", - "id": 53, - "offset": 741, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 538564341, - "enum_options": { - "__DEFAULT": 1 - } - }, - "m_stopMusicFadeTime": { - "type": "float", - "id": 54, - "offset": 744, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 696390845, - "enum_options": { - "__DEFAULT": "0.0" - } - }, - "m_restartMusicFadeTime": { - "type": "float", - "id": 55, - "offset": 748, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 709379292, - "enum_options": { - "__DEFAULT": "0.0" - } - }, - "m_meetsRequirements": { - "type": "bool", - "id": 56, - "offset": 752, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 296443061 - }, - "m_secondaryCameraInitalDelay": { - "type": "float", - "id": 57, - "offset": 516, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1812842232 - }, - "m_displayButtonsOnTimedDialog": { - "type": "bool", - "id": 58, - "offset": 753, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 569741400 - } - } - }, - "1547366408": { - "name": "class SharedPointer", - "bases": [ - "GameEffectBase", - "PropertyClass" - ], - "hash": 1547366408, - "properties": { - "m_currentTickCount": { - "type": "double", - "id": 0, - "offset": 80, + "offset": 196, "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2533274692 + "hash": 2299798727 }, - "m_effectNameID": { + "m_newPlayerOptions": { "type": "unsigned int", - "id": 1, - "offset": 96, + "id": 23, + "offset": 200, "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1204067144 - }, - "m_bIsOnPet": { - "type": "bool", - "id": 2, - "offset": 73, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 522593303 - }, - "m_originatorID": { - "type": "gid", - "id": 3, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1131810019 + "hash": 1564037328 }, - "m_itemSlotID": { + "m_newPlayerOptions2": { "type": "unsigned int", - "id": 4, - "offset": 112, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1895747595 - }, - "m_internalID": { - "type": "int", - "id": 5, - "offset": 92, + "id": 24, + "offset": 204, "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1643137924 - }, - "m_endTime": { - "type": "unsigned int", - "id": 6, - "offset": 88, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 716479635 - }, - "m_pipsGiven": { - "type": "int", - "id": 7, - "offset": 128, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1346249167 - }, - "m_powerPipsGiven": { - "type": "int", - "id": 8, - "offset": 132, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 377908508 - } - } - }, - "370924093": { - "name": "class SharedPointer", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 370924093, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - }, - "m_lotWorldZone": { - "type": "std::string", - "id": 1, - "offset": 120, - "flags": 268435463, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3026711022, - "enum_options": { - "__BASECLASS": "ZoneData" - } - }, - "m_itemLimit": { - "type": "int", - "id": 2, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1799746856 - }, - "m_structureTemplateID": { - "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 33554439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1037379271 - }, - "m_previewWorldZone": { - "type": "std::string", - "id": 4, - "offset": 160, - "flags": 268435463, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2100214145, - "enum_options": { - "__BASECLASS": "ZoneData" - } - }, - "m_initialItemLayoutFile": { - "type": "std::string", - "id": 5, - "offset": 192, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1741580370 - }, - "m_alternateDeedTemplateID": { - "type": "unsigned int", - "id": 6, - "offset": 224, - "flags": 33554439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 264986664 - }, - "m_castleBlockLimit": { - "type": "int", - "id": 7, - "offset": 228, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 276037600 - } - } - }, - "369281133": { - "name": "class SharedPointer", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 369281133, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - }, - "m_kPathType": { - "type": "enum PathBehaviorTemplate::PathType", - "id": 1, - "offset": 120, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2890959924, - "enum_options": { - "PT_LOOP": 0, - "PT_CHAIN": 1, - "PT_RANDOM": 2 - } - }, - "m_pathID": { - "type": "gid", - "id": 2, - "offset": 128, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 821494322 - }, - "m_nPathDirection": { - "type": "int", - "id": 3, - "offset": 136, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2081830230, - "enum_options": { - "__DEFAULT": 1 - } - }, - "m_actionList": { - "type": "class SharedPointer", - "id": 4, - "offset": 144, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2665183795 - }, - "m_pauseChance": { - "type": "unsigned int", - "id": 5, - "offset": 160, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 821317997 - }, - "m_timeToPause": { - "type": "float", - "id": 6, - "offset": 164, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 408413991 - } - } - }, - "1140791825": { - "name": "class SharedPointer", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1140791825, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 + "hash": 1895849858 }, - "m_seedList": { + "m_afterCombatVictoryDance": { "type": "unsigned int", - "id": 1, - "offset": 112, - "flags": 65567, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 672751594 - } - } - }, - "367345369": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 367345369, - "properties": { - "m_stateType": { - "type": "std::string", - "id": 0, - "offset": 112, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2945167934 - }, - "m_stateName": { - "type": "std::string", - "id": 1, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2944926077 - }, - "m_transitions": { - "type": "class ObjStateTransition*", - "id": 2, - "offset": 144, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 3218935105 - }, - "m_forcedStates": { - "type": "class ForcedStateInfo*", - "id": 3, - "offset": 320, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 3462215437 - }, - "m_autoTransition": { - "type": "bool", - "id": 4, + "id": 25, "offset": 188, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 580653367 - }, - "m_transitionTime": { - "type": "float", - "id": 5, - "offset": 192, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1542232785 - }, - "m_autoState": { - "type": "std::string", - "id": 6, - "offset": 200, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2495723957 - }, - "m_allowedActions": { - "type": "std::string", - "id": 7, - "offset": 240, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1696631188 - }, - "m_disallowedActions": { - "type": "std::string", - "id": 8, - "offset": 256, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1878482772 - }, - "m_blockedStates": { - "type": "std::string", - "id": 9, - "offset": 288, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2730681379 - }, - "m_privateState": { - "type": "bool", - "id": 10, - "offset": 176, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 984277039 - }, - "m_fallbackPrevious": { - "type": "bool", - "id": 11, - "offset": 232, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 152378144 - }, - "m_postStateEvents": { - "type": "bool", - "id": 12, - "offset": 233, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1191427919 - }, - "m_blockMovement": { - "type": "bool", - "id": 13, - "offset": 177, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1121175209 - }, - "m_blockMoveControl": { - "type": "bool", - "id": 14, - "offset": 178, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 421629846 - }, - "m_haltMovement": { - "type": "bool", - "id": 15, - "offset": 179, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 770740551 - }, - "m_checkProximity": { - "type": "bool", - "id": 16, - "offset": 181, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1612279270 - }, - "m_proximityOverride": { - "type": "float", - "id": 17, - "offset": 184, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1963277868 - }, - "m_showDebug": { - "type": "bool", - "id": 18, - "offset": 180, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2109281211 - }, - "m_particles": { - "type": "class StateAssetInfo*", - "id": 19, - "offset": 336, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2185858754 - }, - "m_sounds": { - "type": "class StateAssetInfo*", - "id": 20, - "offset": 352, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2925617751 - }, - "m_animations": { - "type": "class StateAssetInfo*", - "id": 21, - "offset": 368, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 3503258990 - }, - "m_reinteract": { - "type": "bool", - "id": 22, - "offset": 392, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2149441988 - }, - "m_muteMusic": { - "type": "bool", - "id": 23, - "offset": 393, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 431520495 - } - } - }, - "786651361": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 786651361, - "properties": { - "m_publicEffects": { - "type": "class SharedPointer", - "id": 0, - "offset": 88, "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 3233153287 - }, - "m_myEffects": { - "type": "class SharedPointer", - "id": 1, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2650414414 - } - } - }, - "367311734": { - "name": "class WanderMovementBehaviorTemplate", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 367311734, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - }, - "m_movementSpeed": { - "type": "float", - "id": 1, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 769135219 - } - } - }, - "766121336": { - "name": "class SharedPointer", - "bases": [ - "Window", - "PropertyClass" - ], - "hash": 766121336, - "properties": { - "m_sName": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306437263 - }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 65667, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621225959 - }, - "m_Style": { - "type": "unsigned int", - "id": 2, - "offset": 152, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "SCALE_CHILDREN": 2, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "FOCUS_LOCKED": 64, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152 - } - }, - "m_Flags": { - "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } - }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3105139380 - }, - "m_fTargetAlpha": { - "type": "float", - "id": 5, - "offset": 212, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1809129834 - }, - "m_fDisabledAlpha": { - "type": "float", - "id": 6, - "offset": 216, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1389987675 - }, - "m_fAlpha": { - "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 482130755 - }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3623628394 - }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2102211316 - }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1846695875 - }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3389835433 - }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2547159940 - }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2587533771 - }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3091503757 - } - } - }, - "1934416869": { - "name": "class InteractiveMusicNote", - "bases": [ - "PropertyClass" - ], - "hash": 1934416869, - "properties": { - "m_noteName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 65543, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2085772594 - }, - "m_duration": { - "type": "float", - "id": 1, - "offset": 104, - "flags": 65543, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 920323453 + "hash": 1655464256 } } }, - "765032990": { - "name": "class SharedPointer", + "1972718979": { + "name": "class ClientUnSwapShadowMaterialActorCinematicAction*", "bases": [ - "GameEffectTemplate", + "UnSwapShadowMaterialActorCinematicAction", + "ActorCinematicAction", + "CinematicAction", "PropertyClass" ], - "hash": 765032990, + "hash": 1972718979, "properties": { - "m_effectName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2029161513 - }, - "m_effectCategory": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1852673222 - }, - "m_sortOrder": { - "type": "int", - "id": 2, - "offset": 148, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1411218206 - }, - "m_duration": { - "type": "double", - "id": 3, - "offset": 192, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2727932435 - }, - "m_stackingCategories": { - "type": "std::string", - "id": 4, - "offset": 160, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1774497525 - }, - "m_isPersistent": { - "type": "bool", - "id": 5, - "offset": 153, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 923861920 - }, - "m_bIsOnPet": { - "type": "bool", - "id": 6, - "offset": 154, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 522593303 - }, - "m_isPublic": { - "type": "bool", - "id": 7, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1728439822 - }, - "m_visualEffectAddName": { - "type": "std::string", - "id": 8, - "offset": 200, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3382086694 - }, - "m_visualEffectRemoveName": { - "type": "std::string", - "id": 9, - "offset": 232, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1541697323 - }, - "m_onAddFunctorName": { - "type": "std::string", - "id": 10, - "offset": 280, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1561843107 - }, - "m_onRemoveFunctorName": { - "type": "std::string", - "id": 11, - "offset": 312, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2559017864 - }, - "m_stackingRule": { - "type": "enum STACKING_RULE", - "id": 12, - "offset": 144, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 431568889, - "enum_options": { - "STACKING_ALLOWED": 0, - "STACKING_NOSTACK": 1, - "STACKING_REPLACE": 2 - } - }, - "m_sRace": { - "type": "std::string", - "id": 13, - "offset": 360, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306580681 - }, - "m_fScale": { + "m_timeOffset": { "type": "float", - "id": 14, - "offset": 392, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 503137701 - }, - "m_nPrimaryColor": { - "type": "int", - "id": 15, - "offset": 396, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 310334923 - }, - "m_nSecondaryColor": { - "type": "int", - "id": 16, - "offset": 400, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 516938671 - }, - "m_nPatternOption": { - "type": "int", - "id": 17, - "offset": 404, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 413195679 - }, - "m_nGeometryOption": { - "type": "int", - "id": 18, - "offset": 408, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 676541869 - }, - "m_sNaturalAttack": { - "type": "std::string", - "id": 19, - "offset": 416, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2131867453 - } - } - }, - "764671794": { - "name": "class GamebryoClientLeashBehavior", - "bases": [ - "ClientLeashBehavior", - "LeashBehavior", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 764671794, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_ownerGid": { - "type": "gid", - "id": 1, - "offset": 128, - "flags": 31, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1765088663 + "hash": 2237098605 }, - "m_radius": { - "type": "float", - "id": 2, - "offset": 136, - "flags": 31, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 989410271 - }, - "m_angle": { - "type": "float", - "id": 3, - "offset": 140, + "hash": 2285866132 + } + } + }, + "1110485234": { + "name": "class ReqHasQuest", + "bases": [ + "Requirement", + "PropertyClass" + ], + "hash": 1110485234, + "properties": { + "m_applyNOT": { + "type": "bool", + "id": 0, + "offset": 72, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 878748702 + "hash": 1746328074, + "enum_options": { + "__DEFAULT": 0 + } }, - "m_leashType": { - "type": "enum LeashType", - "id": 4, - "offset": 144, - "flags": 31, + "m_operator": { + "type": "enum Requirement::Operator", + "id": 1, + "offset": 76, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2170708051, + "hash": 2672792317, "enum_options": { - "LLT_Rigid": 0, - "LLT_Elastic": 1 + "ROP_AND": 0, + "ROP_OR": 1, + "__DEFAULT": "ROP_AND" } }, - "m_alwaysDisplay": { - "type": "bool", - "id": 5, - "offset": 161, - "flags": 31, + "m_questName": { + "type": "std::string", + "id": 2, + "offset": 80, + "flags": 268435463, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2071781402 + "hash": 1702112846, + "enum_options": { + "__BASECLASS": "QuestTemplate" + } } } }, - "369278005": { - "name": "class SharedPointer", + "1541492568": { + "name": "class ClientEffectCinematicAction", "bases": [ - "BehaviorTemplate", + "EffectCinematicAction", + "BaseEffectCinematicAction", + "CinematicAction", "PropertyClass" ], - "hash": 369278005, + "hash": 1541492568, "properties": { - "m_behaviorName": { - "type": "std::string", + "m_timeOffset": { + "type": "float", "id": 0, "offset": 72, "flags": 7, @@ -453025,782 +168373,846 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 3130754092 + "hash": 2237098605 }, - "m_speed": { - "type": "float", + "m_effectRel": { + "type": "enum BaseEffectCinematicAction::kEffectRelative", "id": 1, - "offset": 120, - "flags": 7, + "offset": 80, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 900164744 + "hash": 2978921287, + "enum_options": { + "kNone": 0, + "kSigil": 1, + "kTarget": 2, + "kSource": 3, + "kActor": 4 + } }, - "m_schoolName": { + "m_graphic": { "type": "std::string", "id": 2, - "offset": 128, - "flags": 7, - "container": "Static", - "dynamic": false, + "offset": 88, + "flags": 131079, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 3385349572 + "hash": 2592217913 }, - "m_rank": { - "type": "int", + "m_bUseOrientationOverride": { + "type": "bool", "id": 3, - "offset": 160, + "offset": 120, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 219803942 + "hash": 1088002894 }, - "m_holidayFlags": { - "type": "std::string", + "m_overrideOrientation": { + "type": "class Vector3D", "id": 4, - "offset": 168, + "offset": 124, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1506904690 + "hash": 3267199758 }, - "m_minimumSize": { - "type": "float", + "m_bUseLocationOverride": { + "type": "bool", "id": 5, - "offset": 200, + "offset": 104, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 751206574 + "hash": 1767170875 }, - "m_maximumSize": { - "type": "float", + "m_overrideLocation": { + "type": "class Vector3D", "id": 6, - "offset": 204, + "offset": 108, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 424567216 - }, - "m_isPredator": { - "type": "int", - "id": 7, - "offset": 208, + "hash": 3776417691 + } + } + }, + "1972718883": { + "name": "class ClientUnSwapShadowMaterialActorCinematicAction", + "bases": [ + "UnSwapShadowMaterialActorCinematicAction", + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 1972718883, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 952748183 + "hash": 2237098605 }, - "m_percentChanceToTurn": { - "type": "float", - "id": 8, - "offset": 212, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 144771798 - }, - "m_predatorRange": { + "hash": 2285866132 + } + } + }, + "694173895": { + "name": "class SharedPointer", + "bases": [ + "DamageEventCinematicAction", + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 694173895, + "properties": { + "m_timeOffset": { "type": "float", - "id": 9, - "offset": 216, + "id": 0, + "offset": 72, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2044238245 + "hash": 2237098605 }, - "m_shadowFishKFM": { + "m_actor": { "type": "std::string", - "id": 10, - "offset": 224, - "flags": 131079, + "id": 1, + "offset": 80, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2042617449 - }, - "m_alphaLevel": { - "type": "float", - "id": 11, - "offset": 256, + "hash": 2285866132 + } + } + }, + "1972400702": { + "name": "class PathActionChangeDirection", + "bases": [ + "PathBehaviorTemplate::Action", + "PropertyClass" + ], + "hash": 1972400702, + "properties": { + "m_nPathID": { + "type": "gid", + "id": 0, + "offset": 72, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1776159605 + "hash": 214382368 }, - "m_initialBiteChance": { - "type": "float", - "id": 12, - "offset": 260, + "m_nNodeID": { + "type": "int", + "id": 1, + "offset": 80, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1799125575 + "hash": 152152635, + "enum_options": { + "__DEFAULT": 4294967295 + } }, - "m_incrementalBiteChance": { - "type": "float", - "id": 13, - "offset": 264, + "m_nPriority": { + "type": "int", + "id": 2, + "offset": 84, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 282955535 + "hash": 1515251530, + "enum_options": { + "__DEFAULT": 100 + } }, - "m_baseLength": { - "type": "float", - "id": 14, - "offset": 268, + "m_nChance": { + "type": "int", + "id": 3, + "offset": 88, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 456346324 - }, - "m_fishingXP": { - "type": "int", - "id": 15, - "offset": 272, - "flags": 7, + "hash": 1860748394, + "enum_options": { + "__DEFAULT": 50 + } + } + } + }, + "1541836930": { + "name": "class ClientJewelSocketBehavior", + "bases": [ + "JewelSocketBehaviorBase", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1541836930, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 319909002 + "hash": 223437287 }, - "m_biteSeconds": { - "type": "float", - "id": 16, - "offset": 276, - "flags": 7, + "m_publicJewelInfo": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2051956582 + } + } + }, + "692109478": { + "name": "class SharedPointer", + "bases": [ + "PulseEffect", + "GameEffectBase", + "PropertyClass" + ], + "hash": 692109478, + "properties": { + "m_currentTickCount": { + "type": "double", + "id": 0, + "offset": 80, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2219559882 + "hash": 2533274692 }, - "m_iconIndex": { - "type": "int", - "id": 17, - "offset": 280, - "flags": 7, + "m_effectNameID": { + "type": "unsigned int", + "id": 1, + "offset": 96, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1053730811 + "hash": 1204067144 }, - "m_fishtankType": { - "type": "int", - "id": 18, - "offset": 284, - "flags": 7, + "m_bIsOnPet": { + "type": "bool", + "id": 2, + "offset": 73, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1397512660 + "hash": 522593303 }, - "m_fishSalePrice": { - "type": "int", - "id": 19, - "offset": 288, - "flags": 7, + "m_originatorID": { + "type": "gid", + "id": 3, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 274861692 + "hash": 1131810019 }, - "m_rarity": { - "type": "int", - "id": 20, - "offset": 292, - "flags": 7, + "m_itemSlotID": { + "type": "unsigned int", + "id": 4, + "offset": 112, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 899712213 - } - } - }, - "1935313606": { - "name": "class JewelVaultBehaviorTemplate*", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 1935313606, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, + "hash": 1895747595 + }, + "m_internalID": { + "type": "int", + "id": 5, + "offset": 92, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3130754092 - } - } - }, - "368019434": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 368019434, - "properties": { - "m_type": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, + "hash": 1643137924 + }, + "m_endTime": { + "type": "unsigned int", + "id": 6, + "offset": 88, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1717601629 + "hash": 716479635 }, - "m_associatedGID": { - "type": "gid", - "id": 1, - "offset": 104, - "flags": 7, + "m_pulseCount": { + "type": "double", + "id": 7, + "offset": 128, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 148404716 + "hash": 3507157375 }, - "m_blobRequestObjectList": { - "type": "class SharedPointer", - "id": 2, - "offset": 112, - "flags": 7, - "container": "List", - "dynamic": true, + "m_damageOverride": { + "type": "int", + "id": 8, + "offset": 136, + "flags": 63, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 883864802 + "pointer": false, + "hash": 213003481 } } }, - "1935189228": { - "name": "class std::list >", - "bases": [], - "hash": 1935189228, - "properties": {} - }, - "766080061": { - "name": "class WizStatisticScalerEffectTemplate*", + "1114710171": { + "name": "class SharedPointer", "bases": [ - "StatisticEffectTemplate", - "GameEffectTemplate", + "ControlButton", + "Window", "PropertyClass" ], - "hash": 766080061, + "hash": 1114710171, "properties": { - "m_effectName": { + "m_sName": { "type": "std::string", "id": 0, - "offset": 72, - "flags": 7, + "offset": 80, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2029161513 + "hash": 2306437263 }, - "m_effectCategory": { - "type": "std::string", + "m_Children": { + "type": "class SharedPointer", "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 1852673222 + "pointer": true, + "hash": 2621225959 }, - "m_sortOrder": { - "type": "int", + "m_Style": { + "type": "unsigned int", "id": 2, - "offset": 148, - "flags": 7, + "offset": 152, + "flags": 1048583, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1411218206 + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152, + "SHOW_HOTKEY": 16777216, + "EFFECT_SCALE": 67108864, + "LOCK_ICON_SIZE": 33554432, + "LEFT_TEXT": 536870912, + "NO_FIT_TEXT": 1073741824 + } }, - "m_duration": { - "type": "double", + "m_Flags": { + "type": "unsigned int", "id": 3, - "offset": 192, - "flags": 7, + "offset": 156, + "flags": 1048583, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2727932435 + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } }, - "m_stackingCategories": { - "type": "std::string", + "m_Window": { + "type": "class Rect", "id": 4, "offset": 160, - "flags": 7, - "container": "List", - "dynamic": true, + "flags": 135, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 1774497525 + "hash": 3105139380 }, - "m_isPersistent": { - "type": "bool", + "m_fTargetAlpha": { + "type": "float", "id": 5, - "offset": 153, - "flags": 7, + "offset": 212, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 923861920 + "hash": 1809129834 }, - "m_bIsOnPet": { - "type": "bool", + "m_fDisabledAlpha": { + "type": "float", "id": 6, - "offset": 154, - "flags": 7, + "offset": 216, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 522593303 + "hash": 1389987675 }, - "m_isPublic": { - "type": "bool", + "m_fAlpha": { + "type": "float", "id": 7, - "offset": 152, - "flags": 7, + "offset": 208, + "flags": 65671, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1728439822 + "hash": 482130755 }, - "m_visualEffectAddName": { - "type": "std::string", + "m_pWindowStyle": { + "type": "class SharedPointer", "id": 8, - "offset": 200, - "flags": 7, + "offset": 232, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 3382086694 + "pointer": true, + "hash": 3623628394 }, - "m_visualEffectRemoveName": { - "type": "std::string", + "m_sHelp": { + "type": "std::wstring", "id": 9, - "offset": 232, - "flags": 7, + "offset": 248, + "flags": 4194439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1541697323 + "hash": 2102211316 }, - "m_onAddFunctorName": { + "m_sScript": { "type": "std::string", "id": 10, - "offset": 280, - "flags": 7, + "offset": 352, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1561843107 + "hash": 1846695875 }, - "m_onRemoveFunctorName": { - "type": "std::string", + "m_Offset": { + "type": "class Point", "id": 11, - "offset": 312, - "flags": 7, + "offset": 192, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2559017864 + "hash": 3389835433 }, - "m_stackingRule": { - "type": "enum STACKING_RULE", + "m_Scale": { + "type": "class Point", "id": 12, - "offset": 144, - "flags": 2097159, + "offset": 200, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 431568889, - "enum_options": { - "STACKING_ALLOWED": 0, - "STACKING_NOSTACK": 1, - "STACKING_REPLACE": 2 - } + "hash": 2547159940 }, - "m_baseHitpoints": { - "type": "float", + "m_sTip": { + "type": "std::wstring", "id": 13, - "offset": 360, - "flags": 7, + "offset": 392, + "flags": 4194439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 686307060 + "hash": 1513510520 }, - "m_baseMana": { - "type": "float", + "m_BubbleList": { + "type": "class WindowBubble", "id": 14, - "offset": 364, - "flags": 7, - "container": "Static", - "dynamic": false, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 1565696591 + "hash": 2587533771 }, - "m_xpPercentIncrease": { - "type": "float", + "m_ParentOffset": { + "type": "class Rect", "id": 15, - "offset": 368, - "flags": 7, + "offset": 176, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1051081338 + "hash": 3091503757 }, - "m_goldPercent": { - "type": "float", + "m_bToggle": { + "type": "bool", "id": 16, - "offset": 372, - "flags": 7, + "offset": 608, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1095720878 + "hash": 2071810903 }, - "m_wispBonusPercent": { - "type": "float", + "m_bButtonDown": { + "type": "bool", "id": 17, - "offset": 376, - "flags": 7, + "offset": 609, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1304386546 + "hash": 840041705 }, - "m_powerPipBonusPercent": { - "type": "float", + "m_sLabel": { + "type": "std::wstring", "id": 18, - "offset": 380, - "flags": 7, + "offset": 616, + "flags": 4194439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1671446341 + "hash": 2207009163 }, - "m_shadowPipBonusPercent": { - "type": "float", + "m_labelOffset": { + "type": "class Rect", "id": 19, - "offset": 384, - "flags": 7, + "offset": 832, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1426533310 + "hash": 1990646723 }, - "m_shadowPipRating": { - "type": "float", + "m_pButton": { + "type": "class SharedPointer", "id": 20, - "offset": 388, - "flags": 7, + "offset": 656, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 507126123 + "pointer": true, + "hash": 1543855875 }, - "m_archmasteryBonus": { - "type": "float", + "m_HotKey": { + "type": "unsigned int", "id": 21, - "offset": 392, - "flags": 7, + "offset": 672, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1445460001 + "hash": 1631553409 }, - "m_stunResistancePercent": { - "type": "float", + "m_Color": { + "type": "class Color", "id": 22, - "offset": 396, - "flags": 7, + "offset": 676, + "flags": 262279, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1868382627 + "hash": 1753714077 }, - "m_school": { - "type": "std::string", + "m_bCursorOver": { + "type": "bool", "id": 23, - "offset": 400, - "flags": 7, + "offset": 689, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2438566051 + "hash": 283981103 }, - "m_pipConversionRating": { - "type": "float", + "m_bAbortWhenCursorNotOver": { + "type": "bool", "id": 24, - "offset": 432, - "flags": 7, + "offset": 706, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 246855691 + "hash": 325405258 }, - "m_criticalHitRating": { - "type": "float", + "m_bHotKeyDown": { + "type": "bool", "id": 25, - "offset": 436, - "flags": 7, + "offset": 680, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1978690540 + "hash": 616989185 }, - "m_blockRating": { + "m_fTime": { "type": "float", "id": 26, - "offset": 440, - "flags": 7, + "offset": 684, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2088486759 + "hash": 883746156 }, - "m_dmgBonusPercent": { - "type": "float", + "m_bGreyed": { + "type": "bool", "id": 27, - "offset": 444, - "flags": 7, + "offset": 688, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 194501159 + "hash": 1566556053 }, - "m_dmgBonusFlat": { + "m_fMaxScale": { "type": "float", "id": 28, - "offset": 448, - "flags": 7, + "offset": 692, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1837769725 + "hash": 2070186635 }, - "m_accBonusPercent": { + "m_fScaleSpeed": { "type": "float", "id": 29, - "offset": 452, - "flags": 7, + "offset": 696, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 331557526 + "hash": 1457135702 }, - "m_apBonusPercent": { - "type": "float", + "m_bUseDropShadow": { + "type": "bool", "id": 30, - "offset": 456, - "flags": 7, + "offset": 704, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1228557984 + "hash": 93063037 }, - "m_dmgReducePercent": { - "type": "float", + "m_bUseOutline": { + "type": "bool", "id": 31, - "offset": 460, - "flags": 7, + "offset": 705, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1426050712 + "hash": 744292994 }, - "m_dmgReduceFlat": { - "type": "float", + "m_pGreyedState": { + "type": "class SharedPointer", "id": 32, - "offset": 464, - "flags": 7, + "offset": 768, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1218184718 + "pointer": true, + "hash": 2703352263 }, - "m_accReducePercent": { - "type": "float", + "m_pNormalState": { + "type": "class SharedPointer", "id": 33, - "offset": 468, - "flags": 7, + "offset": 752, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1653943527 + "pointer": true, + "hash": 1887909808 }, - "m_healBonusPercent": { - "type": "float", + "m_pHighlightedState": { + "type": "class SharedPointer", "id": 34, - "offset": 472, - "flags": 7, + "offset": 784, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 562313577 + "pointer": true, + "hash": 2200177608 }, - "m_healIncBonusPercent": { - "type": "float", + "m_pSelectedState": { + "type": "class SharedPointer", "id": 35, - "offset": 476, - "flags": 7, + "offset": 800, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 2182535587 + "pointer": true, + "hash": 2266776432 }, - "m_fishingLuckBonusPercent": { - "type": "float", + "m_pDepressedState": { + "type": "class SharedPointer", "id": 36, - "offset": 480, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1363349254 - } - } - }, - "1935041501": { - "name": "class SharedPointer", - "bases": [ - "WizardAutobotQuestManager", - "AutobotQuestManager", - "PropertyClass" - ], - "hash": 1935041501, - "properties": {} - }, - "765081923": { - "name": "class UpFirstData", - "bases": [ - "PropertyClass" - ], - "hash": 765081923, - "properties": { - "m_upFirst": { - "type": "int", - "id": 0, - "offset": 72, - "flags": 31, + "offset": 816, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1884669703 + "pointer": true, + "hash": 1878185798 }, - "m_roundNum": { - "type": "int", - "id": 1, - "offset": 76, - "flags": 31, + "m_itemID": { + "type": "gid", + "id": 37, + "offset": 992, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1461215570 + "hash": 569545460 }, - "m_resultType": { - "type": "int", - "id": 2, - "offset": 80, - "flags": 31, + "m_currencyType": { + "type": "enum PermanentShop::CurrencyTab", + "id": 38, + "offset": 1000, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1136139931 + "hash": 405352622, + "enum_options": { + "Gold": 0, + "Crowns": 1, + "ArenaTickets": 2 + } } } }, - "369828328": { - "name": "class BalloonWindow", + "1112909976": { + "name": "class CombatPlanningPhaseWindow*", "bases": [ - "WindowLayout", "Window", "PropertyClass" ], - "hash": 369828328, + "hash": 1112909976, "properties": { "m_sName": { "type": "std::string", @@ -453836,9 +169248,11 @@ "hash": 983582334, "enum_options": { "HAS_BACK": 1, + "SCALE_CHILDREN": 2, "CAN_MOVE": 4, "CAN_SIZE": 8, "CAN_SCROLL": 16, + "FOCUS_LOCKED": 64, "CAN_FOCUS": 128, "CAN_DOCK": 32, "DO_NOT_CAPTURE_MOUSE": 256, @@ -453850,15 +169264,7 @@ "USE_ALPHA_BOUNDS": 8192, "AUTO_GROW": 16384, "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152, - "H_CENTER": 16777216, - "H_RIGHT": 33554432, - "V_CENTER": 2147483648, - "V_BOTTOM": 67108864, - "SORT": 536870912, - "LAYOUT_VERT": 1073741824, - "LAYOUT_REVERSE": 2147483648, - "DO_NOT_WRAP": 134217728 + "AUTO_RESIZE": 49152 } }, "m_Flags": { @@ -454018,572 +169424,803 @@ "singleton": false, "pointer": false, "hash": 3091503757 - }, - "m_nHSpacing": { - "type": "int", - "id": 16, - "offset": 584, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 893611957 - }, - "m_nVSpacing": { - "type": "int", - "id": 17, - "offset": 588, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 551359491 } } }, - "369474109": { - "name": "class SharedPointer", + "1112707086": { + "name": "class DynaModDelta*", "bases": [ - "BehaviorTemplate", + "DynaMod", "PropertyClass" ], - "hash": 369474109, + "hash": 1112707086, "properties": { - "m_behaviorName": { + "m_clientTag": { "type": "std::string", "id": 0, - "offset": 72, - "flags": 7, + "offset": 80, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3130754092 + "hash": 3409856790 }, - "m_defaultDeck": { + "m_zoneName": { "type": "std::string", "id": 1, - "offset": 120, - "flags": 268435463, + "offset": 112, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2375433463, - "enum_options": { - "__BASECLASS": "DeckTemplate" - } + "hash": 2171167736 }, - "m_primarySchoolName": { - "type": "std::string", + "m_zoneInstance": { + "type": "gid", "id": 2, "offset": 152, - "flags": 7, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3211370408 + "hash": 449538121 }, - "m_genericMaxRank": { - "type": "int", + "m_originator": { + "type": "gid", "id": 3, - "offset": 188, - "flags": 7, + "offset": 72, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1490181353 + "hash": 709051254 }, - "m_schoolMaxRank": { + "m_index": { "type": "int", "id": 4, - "offset": 192, - "flags": 7, + "offset": 160, + "flags": 30, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1600140084 + "hash": 798031442 }, - "m_genericMaxInstances": { - "type": "int", + "m_zoneID": { + "type": "unsigned int", "id": 5, - "offset": 196, - "flags": 7, + "offset": 144, + "flags": 16, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1724791269 + "hash": 1440651126 }, - "m_schoolMaxInstances": { - "type": "int", + "m_remove": { + "type": "bool", "id": 6, - "offset": 200, - "flags": 7, + "offset": 176, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1818539792 + "hash": 906763969 }, - "m_maxSpells": { - "type": "int", + "m_state": { + "type": "std::string", "id": 7, - "offset": 204, - "flags": 7, + "offset": 184, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 818580275 + "hash": 2307803100 }, - "m_maxTreasureCards": { - "type": "int", + "m_stateID": { + "type": "unsigned int", "id": 8, - "offset": 208, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 383300312 - }, - "m_maxArchmasteryPoints": { - "type": "float", - "id": 9, - "offset": 212, - "flags": 7, + "offset": 216, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 430012637 + "hash": 1849561019 } } }, - "1935313616": { - "name": "class JewelVaultBehaviorTemplate", + "1543205417": { + "name": "enum DerbyActionTargetType", + "bases": [], + "hash": 1543205417, + "properties": {} + }, + "1974860442": { + "name": "class HousingPetMovement*", "bases": [ - "BehaviorTemplate", "PropertyClass" ], - "hash": 1935313616, + "hash": 1974860442, + "properties": {} + }, + "1112586804": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1112586804, + "properties": {} + }, + "852171271": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 852171271, "properties": { - "m_behaviorName": { - "type": "std::string", + "m_madlibs": { + "type": "class SharedPointer", "id": 0, "offset": 72, - "flags": 7, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1912290195 + }, + "m_blockToken": { + "type": "std::string", + "id": 1, + "offset": 96, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3130754092 + "hash": 1821505575 } } }, - "766500222": { - "name": "class WizClientObject", + "1972767847": { + "name": "class GraphicalArenaBonusPoints*", "bases": [ - "ClientObject", - "CoreObject", + "GraphicalSpell", + "Spell", "PropertyClass" ], - "hash": 766500222, + "hash": 1972767847, "properties": { - "m_inactiveBehaviors": { - "type": "class SharedPointer", + "m_templateID": { + "type": "unsigned int", "id": 0, - "offset": 224, + "offset": 128, "flags": 31, - "container": "Vector", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1850812559 + "pointer": false, + "hash": 1286746870 }, - "m_globalID.m_full": { - "type": "unsigned __int64", + "m_enchantment": { + "type": "unsigned int", "id": 1, - "offset": 72, - "flags": 16777247, + "offset": 80, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2312465444 + "hash": 2217886818 }, - "m_permID": { - "type": "unsigned __int64", + "m_pipCost": { + "type": "class SharedPointer", "id": 2, - "offset": 80, - "flags": 16777247, + "offset": 176, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1298909658 + "pointer": true, + "hash": 3605704820 }, - "m_location": { - "type": "class Vector3D", + "m_regularAdjust": { + "type": "int", "id": 3, - "offset": 168, + "offset": 192, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2239683611 + "hash": 1420453335 }, - "m_orientation": { - "type": "class Vector3D", + "m_magicSchoolID": { + "type": "unsigned int", "id": 4, - "offset": 180, - "flags": 31, + "offset": 136, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2344058766 + "hash": 893146499 }, - "m_fScale": { - "type": "float", + "m_accuracy": { + "type": "unsigned char", "id": 5, - "offset": 196, - "flags": 31, + "offset": 132, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 503137701 + "hash": 2273914939 }, - "m_templateID.m_full": { - "type": "unsigned __int64", + "m_treasureCard": { + "type": "bool", "id": 6, - "offset": 96, + "offset": 197, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 633907631 + "hash": 1764879128 }, - "m_debugName": { - "type": "std::string", + "m_battleCard": { + "type": "bool", "id": 7, - "offset": 104, + "offset": 198, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3553984419 + "hash": 1332843753 }, - "m_displayKey": { - "type": "std::string", + "m_itemCard": { + "type": "bool", "id": 8, - "offset": 136, - "flags": 31, + "offset": 199, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3023276954 + "hash": 1683654300 }, - "m_zoneTagID": { - "type": "unsigned int", + "m_sideBoard": { + "type": "bool", "id": 9, - "offset": 344, - "flags": 31, + "offset": 200, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 965291410 + "hash": 1897838368 }, - "m_speedMultiplier": { - "type": "short", + "m_spellID": { + "type": "unsigned int", "id": 10, - "offset": 192, + "offset": 204, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 123130076 + "hash": 1697483258 }, - "m_nMobileID": { - "type": "unsigned short", + "m_leavesPlayWhenCastOverride": { + "type": "bool", "id": 11, - "offset": 194, + "offset": 216, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1054318939 + "hash": 874407398 }, - "m_characterId": { - "type": "gid", + "m_cloaked": { + "type": "bool", "id": 12, - "offset": 440, - "flags": 31, + "offset": 196, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 210498418 + "hash": 7349510 }, - "m_gameStats": { - "type": "class WizGameStats*", + "m_enchantmentSpellIsItemCard": { + "type": "bool", "id": 13, - "offset": 544, - "flags": 27, + "offset": 76, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 531590701 + }, + "m_premutationSpellID": { + "type": "unsigned int", + "id": 14, + "offset": 112, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, + "pointer": false, + "hash": 1530256370 + }, + "m_enchantedThisCombat": { + "type": "bool", + "id": 15, + "offset": 77, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1895738923 + }, + "m_paramOverrides": { + "type": "class SharedPointer", + "id": 16, + "offset": 224, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, "pointer": true, - "hash": 3194480406 + "hash": 2061635599 + }, + "m_subEffectMeta": { + "type": "class SharedPointer", + "id": 17, + "offset": 240, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1944101106 + }, + "m_delayEnchantment": { + "type": "bool", + "id": 18, + "offset": 257, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 191336919 + }, + "m_PvE": { + "type": "bool", + "id": 19, + "offset": 264, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 269492350 + }, + "m_delayEnchantmentOrder": { + "type": "enum SpellEffect::kDelayOrder", + "id": 20, + "offset": 72, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2526055263, + "enum_options": { + "SpellEffect::kAnyOrder": 0, + "SpellEffect::kFirst": 1, + "SpellEffect::kSecond": 2 + } + }, + "m_roundAddedTC": { + "type": "int", + "id": 21, + "offset": 260, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 112365451 + }, + "m_secondarySchoolID": { + "type": "unsigned int", + "id": 22, + "offset": 304, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2081206026 + }, + "m_fusionState": { + "type": "enum Spell::FusionState", + "id": 23, + "offset": 308, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 835324539, + "enum_options": { + "FS_Invalid": 0, + "FS_Partial": 1, + "FS_Valid": 2 + } } } }, - "766495102": { - "name": "class WizClientObject*", + "799299583": { + "name": "class std::list,class std::allocator >,class std::allocator,class std::allocator > > >", + "bases": [], + "hash": 799299583, + "properties": {} + }, + "1543933100": { + "name": "class AlchemyBehavior*", "bases": [ - "ClientObject", - "CoreObject", + "BehaviorInstance", "PropertyClass" ], - "hash": 766495102, + "hash": 1543933100, "properties": { - "m_inactiveBehaviors": { - "type": "class SharedPointer", + "m_behaviorTemplateNameID": { + "type": "unsigned int", "id": 0, - "offset": 224, - "flags": 31, - "container": "Vector", - "dynamic": true, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1850812559 + "pointer": false, + "hash": 223437287 }, - "m_globalID.m_full": { - "type": "unsigned __int64", + "m_recipeBag": { + "type": "class RecipeBag", "id": 1, - "offset": 72, - "flags": 16777247, + "offset": 112, + "flags": 27, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2312465444 + "hash": 2218166892 }, - "m_permID": { - "type": "unsigned __int64", + "m_craftingSlotsBag": { + "type": "class ObjectBag", "id": 2, - "offset": 80, - "flags": 16777247, + "offset": 320, + "flags": 27, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1298909658 + "hash": 2324986502 }, - "m_location": { - "type": "class Vector3D", + "m_reagentBag": { + "type": "class ObjectBag", "id": 3, - "offset": 168, - "flags": 31, + "offset": 512, + "flags": 27, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2239683611 + "hash": 2459563753 }, - "m_orientation": { - "type": "class Vector3D", + "m_bonusCrafting": { + "type": "int", "id": 4, - "offset": 180, - "flags": 31, + "offset": 704, + "flags": 59, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2344058766 + "hash": 943921711 }, - "m_fScale": { + "m_timerMultiplier": { "type": "float", "id": 5, - "offset": 196, - "flags": 31, + "offset": 708, + "flags": 27, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 503137701 + "hash": 1373659455 }, - "m_templateID.m_full": { - "type": "unsigned __int64", + "m_maxReagentStack": { + "type": "int", "id": 6, - "offset": 96, - "flags": 31, + "offset": 712, + "flags": 27, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 633907631 + "hash": 1121296540 }, - "m_debugName": { - "type": "std::string", + "m_equippedRecipes": { + "type": "unsigned int", "id": 7, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, + "offset": 720, + "flags": 27, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 3553984419 + "hash": 1981226997 }, - "m_displayKey": { + "m_equippedRecipeData": { "type": "std::string", "id": 8, - "offset": 136, - "flags": 31, + "offset": 736, + "flags": 551, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3023276954 - }, - "m_zoneTagID": { - "type": "unsigned int", - "id": 9, - "offset": 344, + "hash": 2773803466 + } + } + }, + "760034708": { + "name": "class KioskOption*", + "bases": [ + "ServiceOptionBase", + "PropertyClass" + ], + "hash": 760034708, + "properties": { + "m_serviceName": { + "type": "std::string", + "id": 0, + "offset": 72, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 965291410 + "hash": 2206028813 }, - "m_speedMultiplier": { - "type": "short", - "id": 10, - "offset": 192, + "m_iconKey": { + "type": "std::string", + "id": 1, + "offset": 168, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 123130076 + "hash": 2457138637 }, - "m_nMobileID": { - "type": "unsigned short", - "id": 11, - "offset": 194, + "m_displayKey": { + "type": "std::string", + "id": 2, + "offset": 104, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1054318939 + "hash": 3023276954 }, - "m_characterId": { - "type": "gid", - "id": 12, - "offset": 440, + "m_serviceIndex": { + "type": "unsigned int", + "id": 3, + "offset": 204, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 210498418 + "hash": 2103126710 }, - "m_gameStats": { - "type": "class WizGameStats*", - "id": 13, - "offset": 544, - "flags": 27, + "m_forceInteract": { + "type": "bool", + "id": 4, + "offset": 200, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3194480406 + "pointer": false, + "hash": 1705789564 } } }, - "1935739033": { - "name": "class ReqHasBadge*", + "1543718823": { + "name": "class DailyPvPData*", "bases": [ - "Requirement", "PropertyClass" ], - "hash": 1935739033, + "hash": 1543718823, "properties": { - "m_applyNOT": { - "type": "bool", + "m_dailyPvPList": { + "type": "class SharedPointer", "id": 0, "offset": 72, - "flags": 31, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2102460099 + } + } + }, + "723888172": { + "name": "class PropertyClass*", + "bases": [], + "hash": 723888172, + "properties": {} + }, + "1114671367": { + "name": "class SharedPointer", + "bases": [ + "LeashBehavior", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1114671367, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1746328074, - "enum_options": { - "__DEFAULT": 0 - } + "hash": 223437287 }, - "m_operator": { - "type": "enum Requirement::Operator", + "m_ownerGid": { + "type": "gid", "id": 1, - "offset": 76, - "flags": 2097183, + "offset": 128, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2672792317, - "enum_options": { - "ROP_AND": 0, - "ROP_OR": 1, - "__DEFAULT": "ROP_AND" - } + "hash": 1765088663 }, - "m_badgeName": { - "type": "std::string", + "m_radius": { + "type": "float", "id": 2, - "offset": 80, - "flags": 268435487, + "offset": 136, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3002948047, + "hash": 989410271 + }, + "m_angle": { + "type": "float", + "id": 3, + "offset": 140, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 878748702 + }, + "m_leashType": { + "type": "enum LeashType", + "id": 4, + "offset": 144, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2170708051, "enum_options": { - "__BASECLASS": "BadgeTemplate" + "LLT_Rigid": 0, + "LLT_Elastic": 1 } + }, + "m_alwaysDisplay": { + "type": "bool", + "id": 5, + "offset": 161, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2071781402 } } }, - "90289606": { - "name": "float", - "bases": [], - "hash": 90289606, - "properties": {} + "710825186": { + "name": "class ShoppingColorModifiers", + "bases": [ + "PropertyClass" + ], + "hash": 710825186, + "properties": { + "m_boysPrimaryColors": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 300868202 + }, + "m_boysSecondaryColors": { + "type": "float", + "id": 1, + "offset": 96, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2061028494 + }, + "m_girlsPrimaryColors": { + "type": "float", + "id": 2, + "offset": 120, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 327992494 + }, + "m_girlsSecondaryColors": { + "type": "float", + "id": 3, + "offset": 144, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1534611410 + } + } }, - "370266537": { - "name": "class SharedPointer", + "1976304404": { + "name": "class PetItemBehaviorTemplate", "bases": [ "BehaviorTemplate", "PropertyClass" ], - "hash": 370266537, + "hash": 1976304404, "properties": { "m_behaviorName": { "type": "std::string", @@ -454596,2636 +170233,3754 @@ "pointer": false, "hash": 3130754092 }, - "m_radius": { - "type": "float", + "m_primaryDyeToTexture": { + "type": "class PetDyeToTexture", "id": 1, "offset": 120, "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1981853869 + }, + "m_secondaryDyeToTexture": { + "type": "class PetDyeToTexture", + "id": 2, + "offset": 136, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1861913233 + }, + "m_patternToTexture": { + "type": "class PetDyeToTexture", + "id": 3, + "offset": 152, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1245062405 + }, + "m_eGender": { + "type": "enum eGender", + "id": 4, + "offset": 168, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 989410271 + "hash": 2776344943, + "enum_options": { + "Male": 1, + "Female": 0, + "Neutral": 2 + } }, - "m_category": { - "type": "enum AudioCategory", - "id": 2, - "offset": 124, + "m_eRace": { + "type": "enum eRace", + "id": 5, + "offset": 172, "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2951251982, + "hash": 963057554, "enum_options": { - "AudioCategory_Irrelevent": 0, - "AudioCategory_Accoustic": 1, - "AudioCategory_Noise": 2, - "AudioCategory_Music": 3, - "AudioCategory_MusicAtSFXVolume": 4, - "AudioCategory_Dialog": 5, - "AudioCategory_UI": 6, - "AudioCategory_NoiseAtMusicVolume": 7 + "Bat": 88066, + "BatLightning": 1472842576, + "Boar": 2624962, + "CatThug": 1855674386, + "ChristmasElf": 819908552, + "ChristmasSnowman": 1146515225, + "Colossus_Ice": 1063279538, + "Cyclops": 1691813655, + "DragonBeta": 417003588, + "DragonFriendly": 69049013, + "EvilSnowman": 1579630926, + "FireElf": 443793687, + "Firecat": 2045525741, + "Frog": 2274918, + "FrostBeetle": 7692383, + "GhostBlue": 1097396892, + "GhostGreen": 882822629, + "GhostRed": 560510742, + "GhostYellow": 909974358, + "Ghoul": 82556199, + "GoatMonk": 486215564, + "GolemBrass": 1057388325, + "GolemClockwork": 1143380031, + "GolemSteel": 1660583674, + "GolemWood": 1426849876, + "HalloweenCat": 1042869199, + "Heckhound": 626736403, + "Helephant": 719065368, + "Human": 79806088, + "Hydra": 70785800, + "Imp": 84361, + "Krokomummy": 555755242, + "Kroktut": 1352354178, + "Leprechaun": 2106466410, + "LeprechaunPattyDay": 380507781, + "LightningBat": 228257682, + "Mannequin": 428442544, + "Minotaur": 949570680, + "Mount_Broom": 94637995, + "Mount_Cat": 1150940211, + "Mount_Dragon": 1565720148, + "Mount_Horse": 2054712767, + "Mount_PlayerWings": 589829552, + "Nikkos": 1563122418, + "NinjaPig": 607400740, + "Orthus": 1552590225, + "Piggle": 1897753328, + "Piggle_Valentine": 687697592, + "Piggle_ValentinePart2": 1760391091, + "Pixie": 74836240, + "RatMagician": 885542120, + "SalamanderFire": 48480175, + "SalamanderIce": 2011152164, + "SalamanderStorm": 600331072, + "Satyr": 84793363, + "Scarab": 2143810477, + "Sheep": 86220083, + "SkeletonArmored": 1791586239, + "SnowSerpent": 138621543, + "Spider": 1603064269, + "SpiderBlack": 559353179, + "SpiderBrown": 557941675, + "SpiderCrystal": 2119625297, + "SpiderGolem": 1632616514, + "Sprite": 1889156557, + "SpriteDark": 1888685518, + "Stormzilla": 252684095, + "SunBird": 1602211198, + "Transformation_ArmoredSkeleton": 1861349834, + "Transformation_CatThug": 1175387611, + "Transformation_Cat_Bandit": 1012395694, + "Transformation_ClockworkGolem": 601121214, + "Transformation_Cyclops": 620156297, + "Transformation_DarkFairy": 1206757203, + "Transformation_DraconianSorcerer": 1212016810, + "Transformation_Draconian": 450730089, + "Transformation_EarthColossus": 140119452, + "Transformation_EvilSnowman": 1497097122, + "Transformation_FatGobbler": 634003800, + "Transformation_FireElemental": 822233230, + "Transformation_FireElf": 46585468, + "Transformation_FireSalamander": 2118418114, + "Transformation_Gobbler_Skinny": 162365207, + "Transformation_GolemSteel": 1329184184, + "Transformation_Ice_Colossus": 430406408, + "Transformation_Krokomummy": 1644615769, + "Transformation_MagmaMan": 545064542, + "Transformation_Mander": 88998828, + "Transformation_NinjaPig": 1029132174, + "Transformation_Ninja_Pig_04": 7093548, + "Transformation_RatThug": 1175352795, + "Transformation_RavenMystic": 1443197359, + "Transformation_StormElemental": 637088511, + "Transformation_Treant": 1874998327, + "Transformation_WarPig": 691088645, + "Transformation_WolfScout": 263523463, + "Transformation_WolfWarrior": 6092463, + "Transformationn_SkeletonPirate": 1821341863, + "Treant": 1396597132, + "Troll": 82261620, + "Unicorn": 550546918, + "Unknown": 718677478, + "Wolverine": 528843083, + "Wraith": 1788506505, + "Wyrmkin": 379044612, + "Transformation_CyrusDrake": 94277831, + "PetEgg": 1973167984, + "GhostLady": 493415959, + "Banshee": 827805677, + "GobblerRed": 250135875, + "Ghoul_Gravedigger": 161812468, + "SkeletonWarrior": 734585814, + "BansheeBoss": 806445565, + "Seraph": 1792950125, + "CrabKing": 277875784, + "UndeadCaster": 1680689397, + "DragonFrontier": 1829438301, + "HeckhoundGhost": 872406464, + "Mount_Unicorn": 212699468, + "Jellyfish": 910724608, + "SeaDragon": 1194541306, + "Turtle": 1897184620, + "Starfish": 1447562471, + "SpinyFish": 162948281, + "Mount_Gryphon": 2110522960, + "Mount_Shark": 1170186623, + "Mount_Manta": 979931598, + "Mount_Seahorse": 1554833818, + "Mount_Seahorse_Tough": 1245859453, + "Mount_Koi": 1150937409, + "Mount_Lobster": 2025618875, + "Mount_Turtle": 1490849128, + "VenusFlyTrap": 1612039757, + "GDN_MED_BabyCarrots": 327334743, + "GDN_SM_BoomShroom": 31324632, + "GDN_SM_Dandelion": 2058674142, + "GDN_SM_Disparagus": 1732989489, + "GDN_MED_EvilSnowPeas": 747408607, + "GDN_SM_FicklePickle": 205381955, + "GDN_SM_HappyHolidaisy": 1736236340, + "GDN_MED_HelephantEars": 1803669659, + "GDN_MED_HoneySickle": 424149132, + "GDN_LG_NinjaFig": 847338104, + "GDN_LG_SnapDragon": 1076151689, + "GDN_SM_StinkWeed": 845383431, + "GDN_MED_TrumpetVine": 1922690264, + "GDN_MED_VenusFlyTrap": 1560899638, + "GDN_SM_Laughodil": 1278979588, + "GDN_LG_BreadFruitBush": 533042934, + "GDN_MED_PricklyBearCactus": 1236846986, + "GDN_MED_KingParsley": 110148182, + "LeprechaunPatriotic": 414730890, + "SeraphYuletide": 1325846853, + "DragonGhost": 1502126893, + "UnicornNightmare": 604358256, + "EvilSnowmanSandman": 1579432150, + "Colossus_Spirit": 422514215, + "Rock": 2393554, + "GDN_MED_GivingTree": 2047236132, + "Egg": 70853, + "Mount_Carpets": 1602744888, + "Kraken": 1737191829, + "Wyvern": 1727802601, + "Phoenix": 1765559002, + "Judgement": 562901781, + "ForestLord": 1390734923, + "Humongofrog": 1272123051, + "Scarecrow": 41441599, + "Mount_Ram": 77196599, + "BasketSnake": 1835657086, + "Samoorai": 522797493, + "Transformation_RavenWarrior": 701169336, + "PhoenixStorm": 1325268802, + "PhoenixDeath": 1281634042, + "GDN_LG_CouchPotatoes": 879742725, + "GDN_MED_KeyLimes": 811516024, + "Mount_BoneDragon": 1023618313, + "Mount_BigBoneDragon": 1124383680, + "Mount_FairyWings": 1904926612, + "Mount_DragonWings": 755225925, + "Mount_Pegasus": 1621244140, + "GDN_MED_BellPepper": 1710238687, + "GDN_MED_GrapesOfWrath": 1068787103, + "GDN_SM_TigerLily": 1899057048, + "WysteriaPiggle": 49173891, + "Mount_Wyvern": 1658410744, + "Mount_2P_Rhino": 1052779475, + "NightHawk": 358964390, + "Giraffe": 935214826, + "Mount_Hawk": 2070898895, + "Mount_HalloweenNightmare": 726136378, + "GobblerHalloween": 1482399836, + "Leopard": 1606863715, + "Skink": 76950867, + "Mount_Ostrich": 466111322, + "Mount_Crocagator": 1981222087, + "Transformation_Blacktusk-01": 401543565, + "Mount_Hippogriff": 2043817624, + "Transformation_Gorilla-01": 1555853240, + "Transformation_Gorilla-02": 1606184888, + "Mount_Raven": 94983735, + "Mount_Chrismoose": 1822495199, + "Mount_CandyCane": 1148551147, + "Ivy_League": 925492799, + "GDN_MED_Ivy_League": 1630077794, + "Mount_Kirin": 1168691825, + "GDN_SM_Moonflower": 2068754330, + "GDN_MED_BoonTree": 788055729, + "Snowball": 2046118016, + "Foo_Dog": 1549710807, + "ShenlongDragon": 932676736, + "Monkey": 1233866291, + "Wolfhound": 626884686, + "Redcap": 1540319086, + "Raven": 79941650, + "HollowKnight": 1107268274, + "Book": 2405826, + "GDN_MED_AngoraBunnyEars": 1547559854, + "GDN_MED_FortuneCookieTree": 786686214, + "GDN_MED_GooseTree": 809354938, + "GDN_SM_HoneyBeePlant": 1528880373, + "GDN_MED_BambooShoots": 1096708900, + "GDN_SM_Huckleberries": 1937475840, + "Rock_Moustache": 962221287, + "Efreet_Myth": 1834555522, + "Efreet": 1401700123, + "Mammoth": 1395147745, + "Triton": 1730466188, + "Gnome": 74954215, + "BoneDragon": 429245206, + "Basilisk": 1457899086, + "Chimera": 529027789, + "Transformation_GammaTemplate": 1337834518, + "Mount_Camel": 1168198963, + "Mount_RenaissanceWings": 1049782088, + "Bull_Mount": 1713506759, + "Mount_Owl": 1150938242, + "Mount_Alphyn": 487264165, + "Mount_Stag": 1150353823, + "Mount_Auroch": 509865325, + "Mount_Warg": 1150358072, + "StrangeBeast": 511334734, + "Efreet_Ice": 1820009122, + "Efreet_Storm": 1269986674, + "GDN_LG_AlligatorPear": 1293913372, + "Mount_2P_Treant": 928450863, + "Mount_2P_Dragon": 1431637933, + "Mount_Pogo_Stick_WC": 1462849298, + "Mount_Pogo_Stick_MB": 1349603090, + "GDN_LG_MeltingCheese": 1914589015, + "GDN_SM_FishOnAVine": 1734955358, + "GDN_LG_AngelOak": 1539539424, + "GDN_LG_MeltingCheese_Angel": 1254781264, + "SnowyOwl": 1682262138, + "Mount_3P_Hydra": 1207475250, + "WeaselMinstrel": 1541234616, + "MOUNT_Rickshaw": 938282973, + "Transformation_Sherlock-Bones": 509126601, + "Mount_Phoenix": 556355452, + "Toaddle": 597488187, + "Pantera": 528797696, + "WildfireTreant": 673362041, + "StoneTiger": 746336665, + "Blowfish": 1447737334, + "Smith": 78327187, + "FlyingCat": 1254472614, + "RamWarrior": 536916302, + "Ladybug": 1846384669, + "BurlapBoy": 607590898, + "DeerKnight": 560802130, + "Gargoyle": 1227701700, + "Chameleon": 596131510, + "Scorpion": 1462253104, + "GDN_SM_BoiledPeanuts": 544885684, + "GDN_SM_ClockFlower": 676513046, + "GDN_SM_DeadBeets": 650783482, + "GDN_MED_SnowApple": 1916648180, + "Eyecaramba_Violet": 1804780775, + "Eyecaramba_Green": 750346574, + "Eyecaramba_Orange": 687614854, + "Piggle_Grandfather": 131445665, + "Velociraptor": 1042311818, + "Babydactyl": 1180982194, + "Stegosaurus": 476811765, + "Mount_Pegasus_Spectral": 948250730, + "Mount_2P_Scarydactyl": 1808983335, + "Mount_2P_TRex": 1495851852, + "Therizinosaurus": 80337863, + "Runtosaurus": 476200406, + "FrilledLizard": 420993517, + "Mount_Ankylosaurus": 669692274, + "Mount_Triceratops": 1126950204, + "Mount_2P_Glider": 1630365881, + "Transformation_Thunderhorn": 1045262037, + "Transformation_Jaguar": 1080966062, + "Transformation_Pteranadon": 273836142, + "Transformation_ShadowWeaver": 255927111, + "Transformation_EagleWarrior": 1880471875, + "Mount_Falalalallama": 389890123, + "Mount_2P_WinterTreant": 1850265056, + "GDN_LG_MissileToe": 1767792974, + "GDN_MED_PointSetta": 647257205, + "Nutcracker2012": 1598217699, + "Coal2012": 1627852119, + "Mount_Sleigh": 1636615519, + "Mount_Sabertooth": 1613031507, + "Mount_MechanicalWings": 1014917438, + "PiranhaHunter": 686271163, + "Quetzal": 2020925822, + "Mount_Sloth": 1169387359, + "HollowKnightLife": 2114081886, + "BettaFish": 138088968, + "MummyCat": 62372925, + "TrojanHorse": 1725299194, + "WC_Storm_Possessed": 186960228, + "AV_Possessed": 1106693085, + "AZ_Possessed": 1106692701, + "CL_Possessed": 1106692255, + "KT_Possessed": 1106693015, + "MS_Possessed": 1106692977, + "WC_Possessed": 1106692459, + "Mount_2P_Whale": 448824263, + "Mount_2P_Chariot": 88035298, + "Mount_WarBoar": 1159836211, + "Mount_Palanquin": 47587550, + "BearCub": 672664722, + "Transformation_Minotaur": 1454233452, + "DragonGauntlet": 797645257, + "DeathUnicorn": 924144161, + "Flamingo": 1488424911, + "Mount_Gorilla": 1939919432, + "Mount_WarUnicorn": 1361393198, + "GargoyleMyth": 1819685060, + "TikiMan": 16098567, + "Siren": 79937811, + "GoldenRam": 410220227, + "Harpy": 96026632, + "SwordShield": 1668411785, + "ClockworkKnight": 1059948980, + "Mount_MechanicalEagle": 1720948645, + "Mount_Cloud": 1166233435, + "Mount_Surfboard": 1914250039, + "Mount_BetaDragon": 1023653721, + "Mount_BeeWings": 1387988401, + "Vampire": 524731385, + "FrankenBunny": 589797989, + "BumbleBee": 249592226, + "Mount_Dragonfly": 1028843656, + "BronzeGolem": 1320867859, + "TarantulaHawk": 1983939429, + "Mount_Grasshopper": 1852850928, + "FlyingSquirrel": 847551166, + "GDN_MED_Sunion": 1652707634, + "GDN_MED_SwordFern": 548761438, + "GDN_SM_SugarKhrystal": 267539461, + "GDN_SM_SawPalmetto": 1892888046, + "GDN_LG_FacePalm": 2050814140, + "GDN_LG_QueenCrapeMyrtle": 80378450, + "Transformation_ShadowTank": 1304943609, + "Transformation_ShadowHeal": 1254024185, + "Transformation_ShadowDPS": 87276537, + "Mount_Noelephant": 1383672248, + "SaintBernard": 572932242, + "ParkaFox": 2009808189, + "Goose": 75019719, + "Mount_Coconut": 791151432, + "CreepyBeetle": 345594179, + "BabyDragonfly": 1367084335, + "FennecFox": 41315063, + "PP_Leviathan": 833901526, + "PP_SunSerpent": 1062677009, + "PP_LordOfWinter": 960214698, + "PP_Medusa": 867812931, + "PP_Dryad": 147654656, + "PP_AvengingFossil": 315904647, + "PP_Sabertooth": 1799146677, + "Mount_Butterfly": 1283940943, + "Mount_Hare": 2070851023, + "Transformation_MorganthB": 197306990, + "Transformation_MorganthC": 197831278, + "Transformation_MorganthD": 200452718, + "BabyPegasus": 1215000859, + "ArcaneHelp": 1899247549, + "Mount_Vines": 98389624, + "Mount_ArcaneMinecart": 2001270930, + "Hobgoblin": 2133668461, + "Mount_2P_Rowboat": 237071469, + "ForestSpirit": 1178454602, + "Mount_SpiritWolf": 531991076, + "Otter": 84138671, + "OrigamiBird": 550984083, + "DinoSkeletal": 233277835, + "Mount_HarrowingsGreen": 1605746772, + "Mount_HarrowingsBlue": 477152436, + "Mount_HarrowingsPurple": 2092807554, + "RedPanda": 1744233845, + "Ibis": 2665577, + "Corgi": 78823875, + "Mount_Yak": 996545739, + "Mount_FlyingBalance": 436519643, + "Transformation_ShadowMalistaire": 1043814435, + "Transformation_DragonMalistaire": 841867699, + "Mount_Scarab": 1687658791, + "Transformation_MisterHound": 1973578844, + "Mount_BahHumbug": 55114077, + "Skates": 1568993965, + "Moose": 75019725, + "Mount_Gargoyle": 1456663874, + "GDN_MED_VenusFlyTrapEpic": 1594069606, + "Mount_PlayerWingsPink": 19403046, + "GDN_LG_AlligatorPearEpic": 1326804812, + "Pet_Armadillo": 825736847, + "Mount_JoustingDestrierDyeable": 1683448768, + "GDN_MED_VampireCarrots": 871596496, + "GDN_SM_WhiteTigerLilyEpic": 1703271434, + "GDN_LG_NinjaFigEpic": 938504823, + "GDN_LG_SnapDragonEpic": 2071674466, + "GDN_MED_HelephantEarsEpic": 719166107, + "GDN_MED_TrumpetVineEpic": 225854518, + "GDN_SM_DandelionEpic": 728637442, + "GDN_SM_HuckleberriesEpic": 1903258448, + "GDN_MED_SnowAppleEpic": 1231175967, + "GDN_SM_BoomShroomEpic": 981598771, + "GDN_MED_KingParsleyEpic": 2038371004, + "Mount_Raptor": 749695031, + "Pet_Toucan": 581477475, + "Pet_Squirrel": 969881395, + "Mount_WonkyDonkey": 1481657312, + "Mount_HawkPatriotic": 509149743, + "Pet_FrogAssistant": 1945041750, + "Mount_Cat2": 1151054899, + "Mount_Cat2BW": 1603515443, + "Pet_ArmadilloBW": 825733899, + "Pet_FrankieForearms": 1100195857, + "Mount_SolarSabre": 1281093703, + "MNT_MechOstrich": 258667969, + "MNT_BootsBalance": 1799191558, + "MNT_BootsDeath": 1034912971, + "MNT_BootsFire": 606061658, + "MNT_BootsIce": 2142643294, + "MNT_BootsLife": 773751898, + "MNT_BootsMyth": 144792486, + "MNT_BootsStorm": 1525245121, + "Pet_CorgiBirthday": 1951779369, + "OrigamiBirdBDay": 1909935955, + "Pet_FlyingBlackCat": 432111988, + "Mount_Narwhal": 449637834, + "Mount_NightOwl": 1648420845, + "Pet_Penguin": 137342907, + "MNT_PowerGemUnicorn": 411234062, + "Pet_CrystalButterfly": 512136094, + "Mount_BabyMammoth": 185831059, + "MNT_BabaYaga": 564874997, + "Pet_BabySeal": 657606984, + "Pet_BabyYeti": 635847496, + "Transformation_BallerinaBear": 1525333600, + "Mount_StagYuletide": 1508680687, + "Transformation_TitanMedium": 1700742736, + "Transformation_TitanLarge": 718614967, + "Pet_SirenIce": 849851564, + "Mount_FlyingDeath": 1717725588, + "Mount_FlyingFire": 1177216332, + "Mount_FlyingIce": 1238841184, + "Mount_FlyingLife": 433397684, + "Mount_FlyingMyth": 164983572, + "Mount_FlyingStorm": 375872049, + "Dragonling": 1730534849, + "Pet_EggChicken": 952873217, + "HeckhoundGhost_MAW": 893368960, + "Mount_WinterTrain": 751515281, + "Mount_RubberDucky": 1826548479, + "Pet_BansheeSpellwrit": 917979583, + "Pet_SamooraiSpellwrit": 370057597, + "Mount_UnicornAstral": 886914505, + "Guest_Boochbeard": 1958574095, + "Pet_MouseSister": 1267930350, + "Pet_MouseFather": 2010008339, + "Pet_VampireSquirrel": 250588691, + "Mount_CoffinCar": 1387606595, + "Mount_BabyElephant": 2026559639, + "Pet_RoadHog": 601156960, + "Mount_WolfGryphonWings": 543038283, + "MNT_ClockworkSteed": 891371132, + "Mount_Chopper": 1196683136, + "Pet_ButterflyLamb": 527214392, + "Pet_MouseMother": 2012687123, + "Pet_MouseBrother": 1174380856, + "Pet_Cherub": 769208559, + "GDN_SM_Jewel": 1104045832, + "MR_Death_Duncan_Grimwater": 1850289001, + "Mount_DesertRunner": 2049036229, + "Pet_MonkeyMirage": 418612892, + "Pet_ClockworkOwl": 1038482431, + "Pet_NinjaTurtle": 2024540686, + "Mount_Vines_Halloween": 82852149, + "Mount_SwarmBat": 1151836459, + "Mount_2P_NinjaDragon": 1239694057, + "Mount_Gobler": 1820615236, + "Mount_MaryleboneCar": 2027689685, + "JackOLantern": 1016361578, + "Transformation_DjinnCommonA_Balance": 996127128, + "Transformation_MedicineMode": 25960701, + "CactusHopper": 1956293007, + "Transformation_Mimic_ChestGold_A": 414145432, + "Mount_Ghoulture": 1067671195, + "Pet_Macaw": 1087278472, + "Pet_SandWorm": 653200803, + "Transformation_DromelDancer": 1071824116, + "Pet_Bunnies": 695874547, + "Mount_Snowboard": 1914380015, + "Transformation_DrommelDancer": 226294468, + "Mount_Carpet_New": 1618650322, + "Mount_BunnySleigh": 599915427, + "Helephant_Heart": 419161272, + "Mount_Snowboard_Holiday": 876339060, + "Transformation_GhostDog": 646575420, + "Transformation_PrinceGobblestone": 693826496, + "Transformation_Mithraya": 1240010601, + "Transformation_LuskaCharmbeak": 897469730, + "Transformation_YoungCyrusDrake": 15595663, + "Kookaburra": 1069759154, + "BorealisGolemPet": 797488492, + "FlyingEyePet": 505959833, + "StormCloudPet": 548463069, + "BullPet": 1993917801, + "OpossumPet": 284003652, + "GhoulturePet": 939920734, + "StormCloudPetB": 548463001, + "StormCloudPetC": 548463003, + "Guest_LordNightshade": 1221409981, + "BullPetB": 1993917561, + "BullPetC": 1993917553, + "BullPetD": 1993917513, + "Transformation_ShadowCrit": 1392195065, + "Mount_Pennyfarthing": 1551926344, + "Mount_RowboatPirate": 2079208803, + "Mount_IceCube": 1261861595, + "Guest_LostMaiden": 883675592, + "Guest_BoatswainMcGee": 1359750850, + "Guest_ChiefMateMcGurk": 329643845, + "Guest_DoomedBones": 2015643882, + "Guest_SpectreoftheBrocken": 266357448, + "Guest_DrownedKnight": 1100966093, + "Guest_TarntheDrowned": 329540205, + "Guest_DisloyalKnight": 1853240753, + "Guest_NamelessKnight": 1065677876, + "Guest_LambentFire": 489886605, + "Guest_LordoftheBrocken": 1662003371, + "Guest_StormCaiman": 1147500291, + "Guest_GrinningDeathMoon": 737595789, + "Guest_MoonSkullWight": 1720039490, + "Guest_HuemacSpearWreath": 1522021131, + "Guest_HowlingBanshee": 1340855338, + "Guest_Sea-Booter": 1818491983, + "Guest_DeadRover": 1009273257, + "Guest_CelestianRemnant": 1312268448, + "Guest_Shadow-WebConscript": 1500529411, + "Guest_Shadow-WebMercenary": 623672171, + "Guest_Shadow-WebWraith": 810956416, + "Guest_Shadow-WebHaunt": 500586883, + "Guest_CelestianPartisan": 633346892, + "Guest_CelestianDefender": 482102727, + "Guest_ThraleBonestriker": 1172972733, + "Guest_VorgenSoulbreaker": 1935693246, + "Guest_ServusBloodsword": 1703995647, + "Guest_QueenCalypso": 845803519, + "Guest_BlueBart": 77043390, + "Guest_KarolakNightspinner": 1008737316, + "Guest_ArachtusDuskweb": 1787750209, + "Guest_ZhalarStarcloud": 1453644105, + "Guest_NarallorNightborn": 1963363700, + "Guest_SelwynSkywatcher": 1413136893, + "Guest_OsseusNightreaver": 306827003, + "Guest_IrateBanshee": 865143109, + "Guest_FuriousHowler": 1607252558, + "Guest_CryingSpirit": 1559074820, + "Guest_UndeadDraconian": 169249571, + "Guest_ReanimatedDraconian": 247067807, + "Guest_GhastlySlave": 80127661, + "Guest_BoundSpecter": 369706568, + "Guest_NecroticHaunter": 1714841563, + "Guest_LoathsomeCreeper": 1087245229, + "Guest_FleshrotRetriever": 1925148031, + "Guest_BarbarianSpirit": 2112552732, + "Guest_BeghastionCrowcaller": 586628832, + "Guest_BeghastionFieldburner": 1650751959, + "Guest_BoneWarrior": 76802026, + "Guest_FleshlessSentry": 708431820, + "Guest_PirateRavager": 945157059, + "Guest_RottenScallywag": 974666855, + "Guest_ArmoredBonewalker": 1444568072, + "Guest_UndeadWizard": 1622435563, + "Guest_SoulSearcher": 2094392941, + "Guest_DecayingBlackguard": 412324062, + "Guest_FoulReaper": 919877614, + "Guest_NightShadow": 1675932226, + "Guest_MotleyCrew": 653779218, + "Guest_OrinGrimcaster": 472649066, + "Guest_GhostofSylviaDrake": 218332449, + "Guest_VikaMarkmaker": 1145181168, + "Guest_VasekAshweaver": 1001434369, + "Guest_FireWraith": 1027720368, + "Guest_HungrySoul": 1722435576, + "Guest_FrostBones": 456145606, + "Guest_SnowSkull": 835837850, + "Guest_WinterSkull": 1556601065, + "Guest_LothinDoombringer": 860995070, + "Guest_MimirWinterbane": 1111898070, + "Guest_KulgrimSoulsunder": 278037985, + "Guest_HitojiniDeathcaster": 1144499043, + "Guest_GaikotsuSkeleton": 1113949902, + "Guest_PhantomAce": 1917639347, + "Guest_PhantomGlider": 849918336, + "Guest_Krokomummy": 857773886, + "Guest_NiriniAncientGuard": 359313880, + "Guest_NiriniFireSpirit": 1863811476, + "Guest_VaultHaunter": 197723476, + "Guest_VigilantDefender": 171276829, + "Guest_WanderingAhnicSpirit": 1702865088, + "Guest_ForgottenDjeseritSoul": 1170568256, + "Guest_KaranahnDeathfeeder": 1612857711, + "Guest_ShamblingAhnic": 1579129677, + "Guest_RisenDjeserit": 287855500, + "Guest_KaranahnMortifier": 874288111, + "Guest_DjeseritDweller": 2058423665, + "Guest_AhnicStrider": 1776992302, + "Guest_GuardianoftheFang": 1816795524, + "Guest_DefenderoftheFang": 354353604, + "Guest_ProtectoroftheFang": 1290191037, + "Guest_SouloftheCharmed": 422890577, + "Guest_KaranahnKeeper": 77581557, + "Guest_NiriniIntimidator": 677205957, + "Guest_CondemnedSoldier": 449152244, + "Guest_NimahtheWicked": 1298248873, + "Guest_AkoriNirini": 1123159753, + "Guest_SoulScavenger": 892852198, + "Guest_KeeperoftheFang": 1676773499, + "Guest_ItennuSokkwi": 699159408, + "Guest_Tempestra": 334938435, + "Guest_QueenIrisiDjeserit": 1861434100, + "Guest_TheBonekeeper": 1302503449, + "Guest_CryptScavenger": 1893795791, + "Guest_Soulsapper": 1699756010, + "Guest_KingUroAhnic": 1788825731, + "Guest_KingShemetDjeserit": 1350067043, + "Guest_UnholyWraith": 1871146013, + "Guest_PikeSpiritcrusher": 498715531, + "Guest_SpellwritScreamer": 801626733, + "Guest_SpellwritRonin": 1671439174, + "Guest_Shrieker": 805966229, + "Guest_GravePhantom": 731622936, + "Guest_NightmareSpirit": 230709057, + "Guest_VengefulCreeper": 1100197884, + "Guest_TombRoamer": 1277825068, + "Guest_ShieldSkeleton": 1634270152, + "Guest_AgonyWraith": 30384496, + "Guest_IcyGhost": 768353592, + "Guest_Half-wittedSkeleton": 647996362, + "Guest_LazyHenchman": 1329554426, + "Guest_TiredFighter": 210248632, + "Guest_Screecher": 469007005, + "Guest_SeethingWraith": 664913100, + "Guest_ColdConfusion": 1304943934, + "Guest_OssuaryConscript": 1017667150, + "Guest_Ghulture": 1330558655, + "Guest_BodyGuard": 1048581801, + "Guest_SpectralGuardian": 422805602, + "Guest_VaultConscript": 1388398065, + "Guest_FootPatrol": 1692393321, + "Guest_ArmedGuard": 2045920536, + "Guest_Chilly": 1764665905, + "Guest_Achey": 973370519, + "Guest_Sneezy": 1769440773, + "Guest_Cough": 1170200073, + "Guest_Shadowbones": 1316133167, + "Guest_ForgottenConscript": 1466348281, + "Guest_BarracksGuardian": 236603440, + "Guest_CryptConscript": 314755436, + "Guest_DurvishSeeker": 1825622267, + "Guest_MedicineMode": 167015574, + "Guest_Myriarch2": 593881680, + "Guest_Myriarch3": 593881616, + "Guest_MyriarchEphialtes": 773531895, + "Guest_MotherGhulture": 1585201915, + "Guest_CaptainCosrow": 727107332, + "Guest_VizierRafaj": 214040637, + "Guest_DarkmoorSerf": 1522169114, + "Guest_DarkmoorSquire": 1822567109, + "Guest_ScarletWampyr": 1683954247, + "Guest_DraconianRevenant": 741497298, + "Guest_DraconianEidolon": 107733297, + "Guest_AnguishedWraith": 1078602022, + "Guest_DraconianPyromancer": 729577007, + "Guest_DraconianThaumaturge": 189734361, + "Guest_DraconianDiviner": 472633746, + "Guest_DraconianConjurer": 1824962835, + "Guest_DraconianTheurgist": 1828628416, + "Guest_DraconianNecromancer": 175364324, + "Guest_DraconianSorcerer": 1262893339, + "Guest_SirBlackwater": 366308464, + "Guest_AkhtangWormCrawl": 1589032404, + "Guest_SpiritofDarkmoor": 579455915, + "Guest_ShanevonShane": 2096517522, + "Guest_YevgenyNightCreeper": 1535282881, + "Guest_MalistairetheUndying": 824508513, + "Guest_Bunferatu": 1015806005, + "Guest_CountBelaBlackSleep": 761647679, + "Guest_DeathSoldier": 1715141574, + "Guest_SorrowWhisperer": 556532003, + "Guest_GriefSpectre": 1425488559, + "Guest_HowlingShade": 631460247, + "Guest_WalkingDead": 318527090, + "Guest_Akuji": 977635799, + "Guest_TorturedKakedaSoul": 1716874833, + "Guest_KakedaSpiritSlave": 1814699344, + "Guest_DishonoredSamoorai": 320085744, + "Guest_CursedRonin": 1204095686, + "Guest_TomugawatheEvil": 166125424, + "Guest_OyotomitheDefiler": 1672714483, + "Guest_Fushiko": 801492770, + "Guest_BrokenLandGuardian": 294671991, + "Guest_ShatteredSkyGuardian": 746681463, + "Guest_SunderedSeamGuardian": 1439618652, + "Guest_BrokenLandSpirit": 860105895, + "Guest_ShatteredSkySpirit": 2104112380, + "Guest_SunderedSeamSpirit": 69572311, + "Guest_LostSoul": 204361577, + "Guest_RottingFodder": 308249734, + "Guest_HauntedMinion": 689597338, + "Guest_FieldGuard": 1175228991, + "Guest_SkeletalWarrior": 778393993, + "Guest_SkeletalPirate": 1476730220, + "Guest_WanderingSpecter": 126188449, + "Guest_LivingScarecrow": 1442943145, + "Guest_FrostPhantom": 1809776664, + "Guest_FireShrieker": 173332719, + "Guest_CryptCrawler": 2118799272, + "Guest_ViridianSpecter": 383149977, + "Guest_ArgentClatterer": 525414714, + "Guest_SwimmingSpecter": 1494025094, + "Guest_ScarletScreamer": 1689589811, + "Guest_BoneDigger": 1351421123, + "Guest_HowlingGhost": 664019391, + "Guest_SkeletalSoldier": 750463116, + "Guest_MaidenofHate": 444442868, + "Guest_SkeletalRetainer": 1409032775, + "Guest_SoulHunter": 1900267551, + "Guest_MidnightShuffler": 1991052065, + "Guest_PlaguedSoul": 419071561, + "Guest_HauntingBanshee": 345837052, + "Guest_SimontheSayer": 1352807820, + "Guest_TheHarvestLord": 1923575206, + "Guest_LadyBlackhope": 1403431623, + "Guest_SergeantSkullsplitter": 898737831, + "Guest_Foulgaze": 2063419769, + "Guest_Wormguts": 788697519, + "Guest_Rattlebones": 125602919, + "Guest_Paulson": 1112716921, + "Guest_Grubb": 1167554274, + "Guest_Norton": 581021964, + "Guest_NightStalker": 1447653309, + "Guest_AddereTimeo": 1491420030, + "Guest_TheReaper": 1526369733, + "Guest_AngrusHollowsoul": 1427862805, + "Guest_OrrickNightglider": 951078615, + "Guest_SteelSentinel": 885250894, + "Guest_Shadow-WebSoldier": 2014925398, + "Guest_LostCeleste": 1725301830, + "Guest_CapnNigelSkullcrack": 1665439970, + "Guest_HaulAwayJoe": 1075985331, + "Guest_OldMaui": 15300840, + "Guest_LordAgue": 140791419, + "Guest_MelweenaSmite": 432188189, + "Guest_HalloweenTrickster": 2043736417, + "Guest_PumpkinHead": 1098332105, + "Guest_BaronMordecai": 817370918, + "Guest_KaimaniteMummy": 1332671420, + "Guest_VeggieRevanant": 928504192, + "Guest_BloodBat": 76467389, + "Guest_DeadBeets": 157829578, + "Guest_Desparagus": 1130644076, + "Guest_MeanestFly-Trap": 1652898868, + "Guest_Nosferabbit": 1021159436, + "Guest_ThrallofSothmekhet": 330780177, + "Guest_VileApparition": 426627869, + "Guest_SoulServant": 1183110886, + "Guest_SoulKeeper": 917518313, + "Guest_AdmiralBontau": 2032168402, + "Guest_DeathWhisperer": 3814952, + "Mount_RollerBlades": 111369373, + "Guest_BaneWyrm": 147033576, + "Guest_BlackDragon": 939469656, + "Guest_DragonSpawn": 1829803517, + "Guest_Fire-SpitterSpawn": 616624489, + "Guest_CaoranachtheFire-Spitter": 323513000, + "Guest_Jabberwock": 1552492834, + "Guest_CatalantheLightningLizard": 1155778705, + "Guest_WhiteDragon": 2009449331, + "Guest_WinterWyrm": 478925069, + "Guest_WyrmStatue": 2119216210, + "Guest_AlgidWyrm": 1309546482, + "Guest_BruleeSucre": 390936202, + "Guest_HebitohoWyrmling": 1682026810, + "Guest_Shadowwock": 505539184, + "Guest_EirikurAxebreaker": 1361453552, + "Guest_WarWyrm": 1124740742, + "Guest_StrayFireflier": 610979811, + "Guest_BurningFlamewing": 2041225130, + "Guest_FeralLavaling": 371483057, + "Guest_SplinterWing": 923421333, + "Guest_ChanticoBlueAir": 1572441903, + "Guest_CopperWingGuard": 302783602, + "Guest_ObsidianBeak": 2016227452, + "Guest_CaquixNineShadows": 2070101060, + "Guest_LustrousTlalocan": 1201030473, + "Guest_SeedThief": 263211181, + "Guest_PopZotzUnluckyDay": 1416773489, + "Guest_NezathePoet": 1905861376, + "Guest_MazenStingerBee": 1642023393, + "Guest_ImperialJusticePayne": 1285679745, + "Guest_AssistantWardenPorfiry": 22099059, + "Guest_MarshalKamensky": 524669730, + "Guest_WardenVissarovich": 882556823, + "Guest_GulagGuard": 100744159, + "Guest_CaptainKravchuck": 690830770, + "Guest_ImperialGuard": 346803640, + "Guest_IronPaw": 1797329688, + "Guest_TundarianEnforcer": 134256836, + "Guest_Ivan": 996220221, + "Guest_ColonelOrlov": 1381254189, + "Guest_IronPawIntakeCaptain": 2099184835, + "Guest_SolitaryWarden": 1503529566, + "Guest_CaptainZubkov": 793725366, + "Guest_SergeantBobrik": 722182485, + "Guest_WailingWraith": 946976407, + "EggChick": 1452316301, + "BunnyMallow": 518233330, + "Guest_ThunderHornZombie": 1007920040, + "Guest_SmokingMirrorZombie": 340971759, + "Guest_ShamblingZombie": 1920485146, + "Guest_MoonSkullZombie": 809249764, + "Guest_DeathlessStormHorn": 812397213, + "Guest_MozarTurtleHunter": 561749043, + "Guest_GuillermoShatterer": 499565054, + "Guest_XiuhcoatlBarbedTooth": 1719245305, + "Guest_AzcalFireAnt": 1281366337, + "Guest_TlotzinMoonThief": 407285761, + "Guest_PocaCruelStar": 1117353085, + "Guest_ThunderHornGhoul": 597878999, + "Guest_TezomocStoneSinger": 733511940, + "Guest_EzhuaBadTaste": 632779219, + "Guest_UacalxochitlBloodEye": 1614856226, + "Guest_WanadiBlackSky": 349829749, + "Guest_ElMarrow": 483880636, + "Guest_GrimCalaca": 1534029144, + "Guest_XipeFlayedOne": 1343577398, + "Guest_MotecumaDeathMask": 1782393717, + "Guest_EkeChuah": 13416770, + "Guest_AnacaonaBlackSnake": 1543344897, + "Guest_SmokingMirrorWight": 776452983, + "Guest_Tolkemec": 217428080, + "Mount_Fox": 77199428, + "PP_OwlProtege": 268847192, + "Mount_SharkSki": 331374103, + "PP_Dolphin": 1662291612, + "Mount_CastSymbol_D": 1134428045, + "Mount_CastSymbol_E": 1136525197, + "Mount_CastSymbol_F": 1138622349, + "Mount_CastSymbol_G": 1140719501, + "Mount_CastSymbol_A": 1128136589, + "Mount_CastSymbol_B": 1130233741, + "Mount_CastSymbol_C": 1132330893, + "Guest_LionSpectralGuardian": 1791543691, + "Guest_KillmareSpiritwalker": 1818928165, + "Guest_ZebraSpectralGuardian": 815933596, + "Guest_GorillaSpectralGuardian": 1635182119, + "Guest_IklawGhostWarrior": 373465545, + "Guest_BwanaShadowriver": 1307628747, + "Guest_ElephantSpectralGuardian": 1579402208, + "Guest_ZangaZebu": 1218173119, + "Guest_GrumishGreataxe": 486953385, + "PP_GlowFairy_A": 2028856748, + "Guest_RestlessSoldier": 1142701763, + "Guest_WanderingWizard": 209518514, + "Guest_ColonelIvanenko": 399169035, + "Guest_DetollitheDestroyer": 655767295, + "Guest_Jawniak": 1791298433, + "Guest_Tajniak": 356182394, + "Guest_Ygor": 996316081, + "Guest_KyaniteLancer": 2136703656, + "Guest_VestaShadowmark": 1846747836, + "Guest_ZoraSteelwielder": 1186470644, + "Guest_AndorBristleback": 1949884743, + "Guest_GalliumPaladin": 1812340868, + "Guest_GalliumFootman": 1295203112, + "Guest_GalliumShardtrooper": 1210699836, + "Guest_GalliumJuggernaut": 3527584, + "Guest_VladimirDarkflame": 1575322237, + "Guest_KyaniteLieutenant": 561528977, + "Guest_DrusillaMorningbane": 155837810, + "Guest_KyaniteValkyrie": 53242136, + "Transformation_20Q_SherlockBones": 1112674320, + "Guest_DevoraShadowcrown": 1813459117, + "Guest_YoualaNightDrinker": 881289828, + "Guest_Pendragon": 715669945, + "Guest_CelestianRevenant": 515730327, + "Guest_SoullessServant": 1505662730, + "Guest_SpiritServant": 104517373, + "Guest_SoulSerf": 1188214406, + "Guest_ServileSoul": 871844607, + "Guest_SkeletalCorsair": 239414410, + "Guest_RottedFodder": 1301186193, + "Guest_ScarletScreecher": 600457915, + "PP_FrankBunnyBride_A": 974707030, + "Guest_BastillaGravewynd": 2100015237, + "Guest_VilaraMoonwraith": 2067986693, + "Guest_YngvarSharptooth": 1783361972, + "Guest_TroubledWarrior": 1569033392, + "Guest_VeggieRevanant2": 928503904, + "Guest_VeggieRevanant3": 928503888, + "Guest_VeggieRevanant4": 928503872, + "Guest_VeggieRevanant5": 928503856, + "Guest_AncientQhatWarrior": 1564521104, + "Guest_EmperorPaleolo": 2079384347, + "Guest_SpiritofIntolerance": 1627658048, + "Guest_SpiritofInquiry": 1320544891, + "Guest_FirstGuardian": 1982227776, + "Guest_FallenMerc": 225926286, + "Guest_NightShadow2": 1638183490, + "Guest_NightShadow3": 1636086338, + "Guest_NightShadow2-2": 1436856907, + "Guest_NightShadow3-2": 1434759755, + "Guest_NightShadow4-2": 1432662603, + "Guest_NightShadow5-2": 1430565451, + "Guest_NightShadow6-2": 1428468299, + "Guest_NightShadow7-2": 1426371147, + "Guest_FirstScythe": 738854032, + "Guest_GreyMantisCaptain": 860186057, + "Guest_GreyMantisHunter": 1239274377, + "Guest_Atlach-Leng": 836136649, + "Guest_PetrovGloomstrider": 2045783873, + "Guest_NauyotolDownIntheHole": 1134251106, + "Guest_SandorSpearcaller": 1351072377, + "Guest_MavraFlamewing": 1477685600, + "Guest_Scaldling": 208751819, + "Guest_WoebegoneWraith": 1166488705, + "Guest_BorisBlackrock": 1365399915, + "Guest_KatiaFirewinter": 521255834, + "Guest_ValerikBrightsword": 1244055782, + "Guest_RurikFlamesoul": 1962726850, + "Guest_IonaPyrelance": 722266491, + "Guest_DarkPoltergeist": 818162178, + "Guest_TheCollector": 1772287612, + "Guest_ViktorSnowcrusher": 1028387381, + "Guest_ValeskaRedwind": 19316351, + "Guest_ScarrikGallowgaunt": 105397333, + "Guest_Neberyx": 1453883041, + "Guest_AsrikWidebelt": 401936422, + "Guest_GothricHonorbound": 750072340, + "Guest_HalfangBristlecrown": 618779562, + "Guest_OsvudFleetpaw": 1023466459, + "PP_PufferFish_A": 1578606029, + "Guest_OzelUnderwaterCat": 1033669302, + "PP_BabyGreenMan_A": 910025246, + "PP_SchoolTurtle_A": 1012620678, + "PP_DarkBalloon_A": 1229308566, + "MT_JetsamCopter": 92127678, + "Mount_4P_DarkClownCar": 420246262, + "MNT_BalloonsBunch": 2000358474, + "Guest_TempleGuardian": 632574316, + "Guest_TemplePhantom": 1701097840, + "Guest_MahonStarsearcher": 1549093341, + "Guest_LostKnight": 858980994, + "Guest_AnguishedWoodman": 174606918, + "Guest_TormentedTreant": 294050331, + "Guest_WildfireTreant": 1902129818, + "Guest_BlightedYaxche": 679097088, + "Guest_Junglethorn": 1734561424, + "Guest_Tangleroot": 2027061721, + "Guest_BlightedFreerooter": 1109803061, + "Guest_Winterbranch": 1170787806, + "Guest_DecayingBogwalker": 1338670789, + "Guest_BrownwoodTormentor": 1655181754, + "Guest_Wildroot": 1839747182, + "Guest_Ironsplinter": 668295157, + "Guest_Frostbranch": 75974631, + "Guest_KyoukonteiTreant": 474446232, + "Guest_BrokenStumps": 414724364, + "Guest_WordlessWoodsmen": 1813881830, + "Guest_DesiccatedTreebeard": 1826942903, + "Guest_ShadowoftheLand": 1612385317, + "Guest_TreeRoot": 1406633546, + "Guest_BefouledWoodwalker": 1517919498, + "Guest_ConfusedForestWarrior": 750805985, + "Guest_CrazedForestSpirit": 1007960507, + "Guest_Oakheart": 1158293719, + "Guest_SnowTreant": 1028620035, + "Guest_Snowbeard": 1997921701, + "Guest_BarkskinTreant": 2143957812, + "Guest_RazorleafTreant": 2133159197, + "Guest_CarrionFlowerMan": 1120698936, + "Guest_Kurokage": 355651925, + "Guest_LacombeStrawHouse": 568809873, + "Guest_BerkshireStickHouse": 1932133405, + "Guest_TamworthBrickHouse": 894027634, + "Guest_RustyTinderSpark": 1237916230, + "Guest_CoraWinterBranch": 1901918989, + "Guest_GrambleGoldRook": 1986988546, + "Guest_PiperStormTree": 1109520133, + "Guest_Hanadzura": 124838500, + "Guest_Kuchisaki": 2084188681, + "Guest_Kaizoku": 807430784, + "Guest_JaxonLastRites": 1653711119, + "Guest_SeijunKiller": 657647155, + "Guest_ZarichiTarakata": 1129212566, + "Guest_BladelessRonin": 1577395797, + "Guest_SanzokuOutlaw": 1682888807, + "Guest_SanzokuBandit": 1766198653, + "Guest_KakedaPainbringer": 1260119278, + "Guest_KakedaStalker": 367458449, + "Guest_KakedaShadow": 1604499626, + "Guest_KakedaSoulcrusher": 1961168112, + "Guest_ImitsuPlaguemaster": 1361539025, + "Guest_ImitsuDefouler": 1299791045, + "Guest_ImitsuPunisher": 234819300, + "Guest_StudentofKhai": 249757647, + "Guest_OtomoBattlemage": 918160114, + "Guest_OtomoCourier": 1373253378, + "Guest_OtomoSupplyRunner": 1580070577, + "Guest_OtomoScout": 1814051082, + "Guest_OtomoWrestler": 1053571230, + "Guest_OtomoFury": 111319603, + "Guest_Hyottoko": 307080225, + "Guest_Usunoki": 1881339626, + "Guest_Kagemoosha": 1842766119, + "Guest_UdoJin-e": 850816224, + "Guest_TakedaKanryu": 536087422, + "Guest_Tamauji": 818613882, + "Guest_Jikiru": 794167355, + "Guest_Nomoonaga": 849534658, + "Guest_Aiuchi": 515942855, + "Guest_Kurogaso": 1426248002, + "Guest_Ideyoshi": 1814038213, + "Guest_Koto": 1151260427, + "Guest_Usegi": 977549586, + "Guest_Kanago": 1644367227, + "Guest_Kyuto": 1168225979, + "Guest_Haru": 2070048389, + "Guest_Ashikata": 1523446928, + "Guest_Katsumori": 1823914597, + "Guest_Hingen": 1567896261, + "Guest_Yakedo": 502298497, + "Guest_Do-Daga": 1239945714, + "Guest_Maito": 979260804, + "Guest_TonkatsuThug": 1758658397, + "Guest_GobbloreanGuard": 1286210991, + "Guest_BabblingMeints": 413418139, + "Guest_PrinceGobblestone": 1813171676, + "Guest_GobblerMuncher": 1517159487, + "Guest_GobblerGorger": 130736772, + "Guest_GobblerScouter": 1509427587, + "Guest_GobblerGlutton": 1912199781, + "Guest_GobblerScavenger": 136586791, + "Guest_BaronGreebly": 1028182200, + "Guest_BaronRotunda": 457132907, + "PP_DeathMimic": 1811942047, + "Guest_GreenMan": 1126663802, + "Guest_ForestGrump": 1602350320, + "Guest_ErvintheBarbarian": 1671762776, + "Guest_RazortuskWarrior": 1109994549, + "Guest_RazortuskBrawler": 732265321, + "Guest_SplithoofRager": 1922134329, + "Guest_TuskedRaider": 1920114147, + "Guest_SviniBeserker": 1146317608, + "Guest_SviniReaver": 216717251, + "Guest_Shattertusk": 1191456730, + "Guest_SplithoofBarbarian": 296671728, + "Guest_Bloodseeker": 2086598239, + "Guest_Scarsnout": 1831766077, + "Guest_MasterTonkatsu": 1783298894, + "Guest_Grisletusk": 657393295, + "Guest_SplithoofBloodguard": 488382274, + "Guest_BristlehideRaider": 237078958, + "Guest_Gullin": 1656401882, + "Guest_ForestNymph": 812055814, + "Guest_SassafrasMan": 1327049788, + "Guest_RandolfSpellshine": 108808620, + "Guest_BleysFlamerender": 434070106, + "Transformation_Khan": 1398327634, + "Transformation_TheBat": 1675113521, + "MNT_DireWolf": 845578449, + "MNT_YuleMule": 1976182058, + "MNT_LightBlades": 829118450, + "MNT_FlyingSquid": 1573132252, + "PP_Globulin": 467801224, + "PP_BeastBaby": 1807874692, + "PP_SaniBot": 670845902, + "Mount_SwarmSand": 1277669407, + "Guest_Nodnarb": 211478288, + "Guest_LordBramble": 1118781162, + "Guest_Yogash": 506264561, + "Guest_Marcio": 499428996, + "Guest_Procyon": 1115376865, + "Guest_Thunderfin": 2029218563, + "Guest_ArkynMoonblade": 1152775206, + "Guest_CreeCurdWright": 1714953095, + "Guest_DeerMouseRevenant": 315064435, + "Guest_ElanaDarksun": 837982094, + "Guest_KingAlricFateSailor": 1934591130, + "Guest_LaughingCalaca": 984492527, + "Guest_WraithKnight": 620484548, + "Guest_FieryEchoofApep": 484636593, + "Guest_FrostyEchoofApep": 171933154, + "Guest_FalseEchoofApep": 479387377, + "Guest_ChargedEchoofApep": 1229406800, + "Guest_ShrowdengersQhat": 101563303, + "Guest_Scrollkeeper": 643219293, + "Guest_TerrorHound": 753341570, + "Guest_CondemnedMander": 445370758, + "Mnt_SnowStorm": 1491572670, + "Mount_ChimneySweeper": 378571534, + "MNT_PineappleCandyCane": 1630795796, + "Guest_TyphonDustwind": 740849673, + "MNT_StickHorse": 216654744, + "MimicTemplate": 1461219184, + "MNT_Ball_N_Chain": 289720920, + "PP_PeaceDove_A": 1785119671, + "Mount_Gyrocycle": 1495008048, + "PP_BattleMageDragon_A": 1864696711, + "MNT_BattleBeast": 1304449286, + "MNT_SmokeTrails": 387873030, + "Mount_FriendshipHare": 677127330, + "MNT_ButterflySwarm": 383602683, + "PP_EggChick_B": 1959154042, + "MNT_Unicorn": 562210585, + "PP_StuffedUnicorn": 1731641773, + "MNT_ParadeTruck": 2026348978, + "MNT_ParadeTruckXmas": 1017864627, + "MNT_AutumnLeafSwarm": 1540002279, + "PP_GingerbreadMan": 1796172229, + "PP_DecadeDragon": 1819398630, + "MNT_StageShip": 829852992, + "PP_DramaLlama": 255896529, + "PP_HallMinotaur_A": 1492017563, + "Guest_MacDeath": 1526226705, + "Guest_MacDeathUnderstudy": 1731752647, + "Guest_MacLifeUnderstudy": 257466641, + "Guest_MacStormUnderstudy": 8295117, + "MNT_Pantera": 1135198, + "MNT_StagLight": 1908778048, + "MNT_GiantSpider": 1247185021, + "MNT_StagEvil": 872303931, + "PP_BaskHound": 1093866594, + "PP_Marionette": 1688299938, + "PP_Marionette_B": 1688297824, + "Guest_Izft": 996301405, + "Guest_SapotisMinion": 1625665891, + "Guest_CrazedSlave": 1473233468, + "Guest_CharmedSlave": 803043667, + "Guest_EnsorcelledSlave": 40920285, + "Guest_HallServant": 2038116460, + "Guest_SiathePerceiver": 1235571913, + "Guest_Kiwu": 1151177787, + "Guest_NightImp": 1051843424, + "Guest_EvilTrickster": 1035477123, + "Guest_DeepWoodsImp": 1502444054, + "Guest_ForestPest": 802235713, + "Guest_TaintedForestImp": 1030343985, + "Guest_Youkai": 518367729, + "Guest_CarthaginianElephantWarrior": 776293919, + "Guest_IdrisBeast-Taker": 106759521, + "Guest_MikaSkarka": 237956516, + "Guest_Belloq": 757247833, + "Guest_GurtokPiercer": 549466122, + "Guest_GurtokFirebender": 817966523, + "Guest_GurtokDemon": 544070162, + "Guest_GeneralFiretusk": 2073037770, + "Guest_GurtokBarrierDemon": 44657563, + "Guest_BlacktuskShaman": 1009070925, + "Guest_FireDemon": 158367196, + "Guest_DeathOni": 1916642000, + "Guest_JadeOni": 1289517185, + "Guest_PlagueOni": 1464586443, + "Guest_WarOni": 1630196094, + "Guest_BrokenLandMammoth": 1587008312, + "Guest_SunderedSeamMammoth": 1272698721, + "Guest_BullyMammoth": 170705927, + "Guest_Bullhemoth": 146998717, + "Guest_Kogasha": 1909654543, + "Guest_MusuthBerserker": 1741298129, + "Guest_BlackTuskCultist": 1771575961, + "Guest_AksilBlacktrunk": 1253596409, + "Guest_LongdreamerShaman": 1521283133, + "Guest_MuratGreyeyes": 1296814314, + "Guest_ElephantSoldier": 1443670145, + "Guest_DarajaniGuard": 1597288495, + "Guest_Loremaster": 1792470809, + "Guest_Pork": 2069999347, + "Guest_Beans": 97706585, + "MNT_Ox": 1292937747, + "PP_PropellerSquirrel": 1657443894, + "Guest_RasikPridefall": 97921485, + "Guest_AmedrasLightstep": 1818417025, + "MNT_SmokeTrails_Balance": 1358150715, + "MNT_SmokeTrails_Fire": 702971609, + "MNT_SmokeTrails_Ice": 190218501, + "MNT_SmokeTrails_Life": 2045542105, + "MNT_SmokeTrails_Myth": 1276281121, + "MNT_SmokeTrails_Storm": 564954622, + "Guest_Bellosh": 1407013027, + "Guest_AcampiReedfist": 2076527733, + "Guest_AgnettaBroadblade": 14864960, + "Guest_FrostheartRaider": 1574787221, + "Guest_JordaSwordbearer": 1627071850, + "Guest_KasaiBaku": 1153107369, + "Guest_ZoraimeiHelephant": 1002482606, + "Guest_ConscriptedMander": 43811125, + "Firecat_Decade": 409516955, + "MNT_BatGlider": 2086258491, + "Transformation_PlayerHomework": 673389670, + "Transformation_PlayerAttendance": 422287307, + "Transformation_PlayerLecture": 2035625874, + "Transformation_PlayerPopQuiz": 483367038, + "MNT_GingerbreadHorse": 1369242781, + "MNT_NimbariChariot": 1251740392, + "PP_NimbariDog": 1235126828, + "Transformation_PlayerGrandma": 1128332272, + "Transformation_PlayerScionA": 33862367, + "PP_Mushroom": 1568942158, + "MNT_Scooter": 1148167046, + "MNT_Scooter_B": 2079302532, + "MNT_Scooter_C": 1810867076, + "MNT_Scooter_D": 468689796, + "MNT_IceCycle": 415797788, + "Transformation_PlayerScionA02": 33921759, + "Guest_FearoftheFuture": 947210229, + "Guest_FearofGremlins": 405857384, + "Guest_RootGuardian": 922940845, + "Guest_VineThrasher": 172546427, + "Guest_BlightWalker": 1438155154, + "Guest_BriarScourge": 615681851, + "Guest_DreamJabberwock": 907754098, + "Guest_DreamBelloq": 990352002, + "Guest_Voltergeist": 1558128068, + "Guest_SpecialBranch": 1927849418, + "Guest_MutantBriar": 805892802, + "Guest_FeralBriar": 883790223, + "Guest_MaizeMonster": 688905764, + "Guest_DreamShadowwock": 1432458248, + "Mount_Heartboard": 1421972759, + "PP_ChocoBunny": 324797859, + "Mount-PogoFlower": 906659501, + "MNT_AethyrCloud": 1586061078, + "MNT_Fangle": 7846854, + "Guest_StarfallSpider": 1177620831, + "Guest_AshSpider": 1588502553, + "Guest_CorruptedWeaver": 38937211, + "Guest_CrystalCrawler": 1197980149, + "Guest_ShimmerWidow": 1300740128, + "Guest_FacetedSpikespinner": 1939719331, + "Guest_CrystallineQueen": 1999282256, + "Guest_AncientCrystalweaver": 1409608801, + "Guest_FangtoothLavaspinner": 1538042104, + "Guest_VenomousHeatseeker": 1234682482, + "Guest_FireweaveRockbiter": 300743778, + "Guest_MonkeySpider": 754090007, + "Guest_CryptSpider": 1545405304, + "Guest_CommonHouseSpider": 613486002, + "Guest_ArachnaMagnaMagus": 825817937, + "Guest_ArachnaSoldier": 270978709, + "Guest_Gnissa": 1699826178, + "Guest_WebwoodScuttler": 1728611075, + "Guest_SandSpider": 61789007, + "Guest_WebwoodCreeper": 1013382584, + "Guest_Skathi": 1631429165, + "Guest_ArchmagusLorcan": 321146960, + "Guest_CrawleroftheMist": 2076696304, + "Guest_PaintedSpider": 1482115552, + "Guest_GiantSpider": 1545526191, + "Guest_CaveCrawler": 2101587667, + "Guest_RattleCatcher": 1472707326, + "Guest_TrapdoorSpider": 1321643694, + "Guest_RockClinger": 1304266411, + "Guest_InquisitorXimenez": 1053483090, + "Guest_ElderMagus": 1017836836, + "Guest_WardenBenthamic": 18807199, + "Guest_SpiderArchmagus": 387645558, + "Guest_SpiderAdept": 2094873407, + "Guest_InterrogatorRentenius": 1245984179, + "Guest_WarpedWeaver": 495882677, + "Guest_ArachnaSkinner": 281864085, + "Guest_SkinnerConscript": 2028526453, + "Guest_ArachnaGladiator": 2492046, + "Guest_LorcanInitiate": 353311753, + "Guest_Serket": 1871335773, + "Guest_IceWeaver": 2063216026, + "Guest_SpiritSpinner": 525666327, + "Guest_MysteriousCrawler": 218352756, + "Guest_BlackWidow": 1909331619, + "Guest_BrownRecluse": 1146386275, + "Guest_Creeper": 1197442790, + "Guest_GearSpinner": 67020478, + "Guest_Clinker": 1194519062, + "Guest_Clanker": 1194517014, + "Guest_GrandfatherSpider": 1330981335, + "Guest_Spiderling": 1400274461, + "Guest_ManekiWebWalker": 888348786, + "Guest_KoganiDeathCrawler": 276010604, + "Guest_CheliceranCrawler": 1169176517, + "Guest_ArachniteCreeper": 1850534774, + "Guest_ChelicaranStalker": 2057291848, + "Guest_HornedMonkeySpider": 1301514577, + "Guest_GreyOgreSpider": 1533774471, + "Guest_StarburstSpider": 698029451, + "Guest_PaintedCaveMonster": 601315479, + "Guest_RubbleRouser": 220785666, + "Guest_EarthElemental": 435260049, + "Guest_SharpshardWarrior": 1403237237, + "Guest_Firevein": 1220046430, + "Guest_Blackblade": 458130537, + "Guest_VengefulFireheart": 563205004, + "Guest_FirerockStomper": 608552855, + "Guest_BlackrockGuardian": 1663799582, + "Guest_ConfusedSentry": 24655510, + "Guest_SilverSentinel": 1090673683, + "Guest_SilverServant": 84560693, + "Guest_GiantHomunculus": 456098557, + "Guest_PropertyMaster": 229101764, + "Guest_VaultProtector": 185568207, + "Guest_PlatedDefender": 79324363, + "Guest_Avalanche": 761613547, + "Guest_RockReaver": 919912933, + "Guest_Frostmantle": 856308090, + "Guest_GlacierWalker": 131215932, + "Guest_SandBehemoth": 272513357, + "Guest_RunedAnnihilator": 121339936, + "Guest_RunedDevestator": 1611071181, + "Guest_RunedGuardian": 1986312667, + "Guest_CanyonRager": 1123038266, + "Guest_RubbleReaver": 220774678, + "Guest_Boulderbone": 122279242, + "Guest_Nali": 77467516, + "Guest_Gnar": 1151164930, + "Guest_GlacialAvenger": 1181253632, + "Guest_SokkwiKeymaster": 190919624, + "Guest_SandsofTime": 34920273, + "Guest_BladeGolem": 435561523, + "Guest_FrostColossus": 1564686403, + "Guest_IceColossus": 335477257, + "Guest_PollutedEarthWalker": 86045387, + "Guest_CorruptedEarthSpirit": 1135891559, + "Guest_Stonebreaker": 1317905436, + "Guest_StoneElemental": 1715022018, + "Guest_VolcanisGolem": 1904918929, + "Guest_WaterElemental": 1717850987, + "Guest_AshenDeathMonkeySpider": 35356665, + "Guest_DeathMonkeySpider": 1525508507, + "Guest_MotherMonkeySpider": 110317392, + "Guest_DoomMonkey": 1135105500, + "Guest_DreamMorganthe": 907599965, + "Guest_DragonBeetle": 1974635734, + "Guest_SandWalker": 1530843985, + "MNT_PandaMama": 916371162, + "PP_BabyPandas": 778536285, + "PP_FrogPrince": 729975205, + "MNT_PumpkinCarriage": 183672737, + "Mount_Gobbler_B": 1193388729, + "PP_Hamster": 1578040708, + "Guest_Steeleton": 657429968, + "Guest_GoldenWyrm": 311022393, + "MNT_Roc": 1564431869, + "PP_BabyGriffin": 1913686406, + "Transformation_ShadowDPSMob": 936133896, + "Transformation_ShadowTankMob": 305660992, + "Transformation_ShadowHealMob": 356596800, + "Guest_SpiritofIgnorance": 1577360126, + "Guest_FecklessSoul": 519648315, + "Guest_BurnedOutSoul": 312181646, + "Guest_BenightedRevenant": 2131956962, + "Guest_TombLurker": 1901203489, + "Guest_DesertGolem": 543642682, + "Guest_KumoOni": 215822625, + "Guest_SpellwritStalker": 161772776, + "PP_Sun": 1723237840, + "Guest_Leadite": 4480416, + "Mount_FestiveFox": 2125832348, + "PP_FenrisWolf": 1601784680, + "PP_SchoolPiggle": 109782407, + "PP_FenrisWolf_Red": 1597992854, + "PP_FenrisWolf_Teal": 1455058454, + "PP_FenrisWolf_White": 1102186199, + "Transformation_NinjaPig_Fire": 984575055, + "Transformation_BG_RatThief_Myth": 1191155131, + "Transformation_BG_RatThief_Storm": 675891897, + "MNT_Umbrella": 955683437, + "Transformation_BG_Elf_Ice": 1209681129, + "Transformation_BG_Fairy_DarkMinion_Balance": 33521202, + "Transformation_BG_Cyclops_Death": 876023972, + "Transformation_BG_Minotuar_Fire": 1118476387, + "Transformation_BG_WolfWarrior_Storm": 2075594475, + "Transformation_BG_WolfWarrior_Balance": 746159992, + "Transformation_BG_Draconian_Myth": 903606820, + "Transformation_BG_Draconian_Life": 1501291044, + "Transformation_BG_Colossus_Life": 1320377666, + "MNT_DolphinChariot": 102982520, + "MNT_EvilWagon": 685457563, + "MNT_FlyingDutchman": 1176206544, + "PP_SeaHorse": 2024322494, + "PP_EvilTeddy": 1159020925, + "PP_ZombieParrot": 384805107, + "Transformation_BG_Ice_Colossus": 299613211, + "MNT_CarrierBat": 7323333, + "Transformation_BG_Minotaur_MythTempalte": 430330904, + "PP_FeatheredTabby": 452526748, + "Transformation_Detritus01": 1335763402, + "Guest_Metallossus": 335457082, + "MNT_SantaJaws": 464410203, + "MNT_BattleBadger": 532858222, + "Transformation_Shedder01": 2069145892, + "PP_NatureSpirit": 373176286, + "Transformation_Devourer01": 1004421540, + "Guest_TheDevourer": 1591187996, + "Guest_Treeminder": 1093207850, + "Guest_RenegadeDruid": 2087982292, + "Guest_FractalTreeminder": 927174548, + "Guest_UnsettledTreeminder": 486164163, + "Guest_DragonspyreCrusader": 247317280, + "Guest_YoungGreggor": 66068670, + "Guest_GeneralGreyflame": 499924835, + "Guest_OldGreggor": 391726170, + "Guest_PrinceViggor": 853556298, + "Guest_DragonspyreVanguard": 693851565, + "Guest_SilasConviction": 177362659, + "Guest_SilasWeariness": 893431021, + "Guest_SilasRage": 1288904439, + "Guest_SilasDoubt": 1479426285, + "Guest_Lorekeeper": 147779344, + "Guest_FelixPhotomongerIII": 68387506, + "Guest_WarHavox": 1634324022, + "Guest_Mis-assembledSkeleton": 221832082, + "Guest_TreeminderGhost": 200408510, + "Guest_ViggorsDrake": 340449521, + "Guest_BlueNinjaPig": 938539327, + "Guest_RedNinjaPig": 2097962021, + "Guest_OrangeNinjaPig": 625058258, + "Guest_PurpleNinjaPig": 445746449, + "Guest_RitualColossus": 844563319, + "Guest_TinyDragon": 1123127688, + "Guest_RitualSpider": 429827552, + "Guest_RitualDraconian": 837510372, + "Guest_CC_Druid_Warrior_C_01": 55314616, + "Guest_CC_Druid_Wizard_A_01": 1046261169, + "Guest_CC_Druid_Wizard_B_01": 1046244785, + "Guest_CC_Druid_Warrior_A_01": 56363192, + "MNT_Toboggan": 995356805, + "MNT_2P_WickerTreant-001": 2065440944, + "PP_Ratatoskr": 1003497600, + "PP_Trash": 1195047012, + "Guest_CC_Druid_Wizard_D_01": 1046343089, + "MNT_Sunflower": 721091531, + "MNT_Whoopee": 1383311238, + "MNT_Warthog": 8060761, + "PP_ShamRock": 943893325, + "PP_LeapingLeprechaun": 132882517, + "PP_LionCubs": 465759803, + "PP_Tanuki": 670387843, + "MNT_Crane": 433122675, + "MNT_Krokosphinx": 739938754, + "Transformation_BG_Fairy_Life": 1897480818, + "Transformation_LiceDeepSpawnA": 244795720, + "Piggle_Alien": 1761605655, + "PP_JeweledScarab": 620544607, + "Guest_KR_Nymph_DrkMage_D50": 1248526054, + "Guest_KR_Nymph_DrkMage_C50": 1246953190, + "Guest_KR_Nymph_DrkMage_B50": 1247477478, + "Guest_KR_Nymph_DrkMage_A50": 1245904614, + "Guest_EM_Spider_Ash_01": 185724938, + "UFO": 47349, + "PP_Kit10": 326796620, + "PP_Lumi_Tulip": 84119585, + "PP_Lumi_Fern": 117015078, + "PP_Lumi_Violet": 1468797578, + "PP_Lumi_Sunny": 1769236703, + "PP_Lumi_Daisy": 1743454175, + "MNT_CelestianMech": 1238076872, + "MNT_Brontosaurus": 402157167, + "Guest_HG_AKT_Krok_Cyber_A_Balance_25": 1367985604, + "Guest_HG_AKT_Krok_Cyber_A_Balance_50": 1368084932, + "Guest_HG_AKT_Krok_Cyber_A_Balance_75": 1367988676, + "Guest_HG_AKT_Krok_Cyber_A_Balance_100": 1351303620, + "Guest_HG_AKT_Krok_Cyber_A_Balance_130": 1351270852, + "Guest_HG_AKT_Krok_Cyber_A_Fire_25": 976558490, + "Guest_HG_AKT_Krok_Cyber_A_Fire_50": 37034397, + "Guest_HG_AKT_Krok_Cyber_A_Fire_75": 305469850, + "Guest_HG_AKT_Krok_Cyber_A_Fire_100": 573905821, + "Guest_HG_AKT_Krok_Cyber_A_Fire_130": 573905824, + "Guest_HG_AKT_Krok_Cyber_A_Ice_25": 159411377, + "Guest_HG_AKT_Krok_Cyber_A_Ice_50": 541093041, + "Guest_HG_AKT_Krok_Cyber_A_Ice_75": 146828465, + "Guest_HG_AKT_Krok_Cyber_A_Ice_100": 557870241, + "Guest_HG_AKT_Krok_Cyber_A_Ice_130": 960523425, + "Guest_HG_AKT_Krok_Cyber_A_Myth_25": 976187830, + "Guest_HG_AKT_Krok_Cyber_A_Myth_50": 36663729, + "Guest_HG_AKT_Krok_Cyber_A_Myth_75": 305099190, + "Guest_HG_AKT_Krok_Cyber_A_Myth_100": 573535153, + "Guest_HG_AKT_Krok_Cyber_A_Myth_130": 573535156, + "Guest_CL-GolemButler-R9": 780077559, + "Guest_CL-GolemDigger-Boss-R10": 562020288, + "Guest_CL-GolemDigger-R9": 789375095, + "Guest_CL-GolemDigger-Rank8MythBoss-R10": 930527857, + "Guest_CL-GolemWorker-R9-1": 1072815287, + "Guest_CL-FishbotBrown-R9-1": 2006155417, + "Guest_CL-FishbotBrown-R9-2": 395542681, + "Guest_CL-FishbotGold-Boss-R10": 611881707, + "Guest_CL-FishbotGold-R9": 705414492, + "Guest_CL-FishbotYellow-Boss-R10": 23145662, + "Guest_CL-Protector-Black-Boss-R10-2": 679228793, + "Guest_CL-Protector-Gold-R10": 1909636609, + "Guest_CL-Protector-Gold-R9-1": 1909634804, + "Guest_CL-Protector-Gold-R9-2": 1909634932, + "Guest_CL-Protector-Gold-R9-3": 1909635060, + "Guest_CL-Protector-Gold-R9-4": 1909634164, + "Guest_CL-Protector-Purple-R9-Boss": 1889837072, + "Guest_CL-Protector-Purple-R9": 81760161, + "Guest_CL-Protector-Tan-Boss-R10": 912663188, + "Guest_KR_Golem_Worker": 1784607296, + "Guest_Golem-Brass-R7-1": 718939445, + "Guest_Golem-Clockwork-R7": 1161173708, + "Guest_EM_Robot_Batbot_A_01": 1482867950, + "Guest_EM_Robot_Batbot_B_02": 945947886, + "Guest_EM_Robot_Batbot_B_01": 1482818798, + "Guest_EM_Robot_Batbot_B_03": 409076974, + "Guest_EM_Robot_Batbot_B_04": 127793938, + "Guest_EM_Robot_Batbot_B_05": 664664850, + "Guest_EM_Robot_Drone_A_02": 1215188569, + "Guest_EM_Robot_Drone_A_03": 1231965785, + "Guest_EM_Robot_Drone_A_01": 1265520217, + "Guest_EM_Robot_Drone_A_04": 1315851865, + "Guest_EM_Robot_Drone_A_05": 1332629081, + "Guest_EM_Robot_Drone_A_06": 1282297433, + "Guest_EM_Robot_Drone_A_07": 1299074649, + "Guest_EM_Robot_Drone_A_08": 1114525273, + "Guest_EM_Robot_Drone_A_09": 1131302489, + "Guest_EM_Robot_Drone_A_Boss_01": 1960661151, + "Guest_EM_Robot_Drone_A_Boss_02": 1960530079, + "Guest_EM_Robot_Drone_E_01": 1265518169, + "Guest_EM_Robot_Tank_A_01": 1314796420, + "Guest_EM_Robot_Tank_A_02": 1313223556, + "Guest_EM_Robot_Drone_C_02": 1215187545, + "Guest_EM_Robot_Drone_D_03": 1231963225, + "Guest_EM_Robot_Drone_D_01": 1265517657, + "Guest_EM_Robot_Drone_D_02": 1215186009, + "Guest_EM_Robot_Tank_B_01": 1314796468, + "Guest_EM_Robot_Drone_C_01": 1265519193, + "Guest_G14-BP-Golem_Steel_Boss": 2071105129, + "Guest_G14-BP-Golem_Steel_Puzzle": 715790979, + "Guest_Golem-Brass-Elite-L38": 1163662532, + "Guest_Golem-Brass-Elite-L56": 2057562884, + "Guest_Golem-Brass-MBBoss-L48": 1498830732, + "Guest_Golem-Brass-MBBoss-L71": 1498829576, + "Guest_Golem-Brass-MBBoss-L76": 1498828936, + "Guest_Golem-Clockwork-Elite-L54-Metal": 417151527, + "Guest_Golem-Clockwork-Elite-L37": 1961943722, + "Guest_Golem-Clockwork-Elite-L54": 1950147242, + "Guest_Golem-Clockwork-L28": 1561959116, + "Guest_Golem-Clockwork-MBBoss-L37": 973152783, + "Guest_Golem-Clockwork-MBBoss-L69": 1262559759, + "Guest_Golem-Steel-Elite-L39": 1430496717, + "Guest_Golem-Steel-MBBoss-L40": 1229578887, + "Guest_Golem-Steel-MBBoss-L43": 1229579015, + "Guest_Golem-Steel-MBBoss-L50-1": 1231762051, + "Guest_Golem-Steel-MBBoss-L50": 1229578883, + "Guest_Golem-Steel-MBBoss-LXX": 1229583927, + "Guest_Golem-Wood-Elite-L35": 904360756, + "Guest_Golem-Wood-Elite-L37": 1978102580, + "Guest_Golem-Wood-Elite-L50": 1813548236, + "Guest_Golem-Wood-MBBoss-L63": 1392041724, + "Guest_MB-Gauntlet-Golem-Clockwork": 854649045, + "Guest_Spider-Golem-MBBoss-L67": 253352706, + "Guest_Spider-Golem-MBBoss-L96": 253348994, + "Guest_WC-MAW-GasGolem-Minion": 1511013798, + "Guest_WC-MAW-GasGolemLife-Minion": 1306026584, + "Guest_Golem-Steel-L02": 1027229749, + "Guest_Golem-Clockwork-L01": 1409915596, + "Guest_Gauntlet-01-Golem-Steel-Ghost-R8": 402816318, + "Guest_Golem-Wood-L01": 156976035, + "Guest_HG-Clock-ClockworkSpanner-20": 1523370449, + "Guest_HG-Clock-ClockworkSpanner-40": 1523370455, + "Guest_HG-Clock-ClockworkSpanner-60": 1523370453, + "Guest_HG-Clock-ClockworkSpanner-80": 1523370459, + "Guest_HG-Clock-ClockworkSpanner-100": 1523354068, + "Guest_HG-Clock-ClockworkSpanner-120": 1523354004, + "Guest_AQ-Cyclops-Guard": 191361948, + "Guest_AQ_Cyclops_Guard_A_Boss_01": 114747100, + "Guest_CL-Cyclops-Death-R10": 611013866, + "Guest_Cyclops-Death-Boss-R7": 1192370725, + "Guest_Cyclops-Death-Boss-R9": 1192370717, + "Guest_Cyclops-Death-R7": 144593791, + "Guest_GH-Cyclops-Death-R6": 594236619, + "Guest_Cyclops-BlueHelmet-KTBoss-L03": 1720105277, + "Guest_Cyclops-Red-L12": 1816429840, + "Guest_MR_Cyclops02WHelmet_Model_01": 1483732416, + "Guest_Cyclops-Blue-L02": 1633021234, + "Guest_Cyclops-BlueHelmet-WCBoss-L03": 427378332, + "Guest_Cyclops-RedHelmet-WCBoss-L03": 2021269422, + "Guest_HG_Sinbad_Cyclops_25": 911979034, + "Guest_HG_Sinbad_Cyclops_50": 1856261606, + "Guest_HG_Sinbad_Cyclops_75": 861647386, + "Guest_HG_Sinbad_Cyclops_100": 1789152678, + "Guest_HG_Sinbad_Cyclops_130": 178539942, + "Guest_HG_Sinbad_IronSultan_25": 930031152, + "Guest_HG_Sinbad_IronSultan_50": 930051504, + "Guest_HG_Sinbad_IronSultan_75": 930030768, + "Guest_HG_Sinbad_IronSultan_100": 927954864, + "Guest_HG_Sinbad_IronSultan_130": 927942576, + "MNT_SweetRide": 1643297840, + "PP_FrilledDino": 1395342809, + "PP_Celestian": 95679303, + "PP_Sun_Angry": 1955190071, + "PP_Marshmallow": 1220667954, + "MNT_Umbrella_B": 923364822, + "MNT_Tamer": 1050737194, + "PP_BumbleBee_B": 858653433, + "MNT_PunkFlamingo": 1634690818, + "MNT_2P_WoolyRhino": 1395943031, + "PP_Retriever": 72842604, + "PP_Piggle_Caveman": 181356174, + "PP_DecennialDragon": 1396523337, + "MNT_Tiger_Rainbow": 515535412, + "MNT_CarrierGhosts": 1833039309, + "MNT_Sled": 617654308, + "Transformation_BG_RatThief_Death": 30691641, + "Transformation_BG_Elf_Storm": 44352983, + "Transformation_BG_WolfWarrior_Ice": 986304351, + "MNT_CarriorGhost_B": 1768732109, + "MNT_CarriorGhost_C": 1766634957, + "Transformation_BG_Colossus_Fire": 1318803522, + "Transformation_BG_Krok_Balance": 140952965, + "Guest_KM_Gobbler_Skinny_A_11": 773648065, + "Guest_KM_Robot_Candy_A_01": 480414124, + "Guest_KM_Robot_Candy_A_02": 530745772, + "Guest_KM_Robot_Candy_A_03": 513968556, + "Guest_KM_Robot_Candy_A_04": 430082476, + "Guest_KM_Robot_Candy_A_05": 413305260, + "Guest_KM_Gummy_Bear_A_01": 1940905059, + "Guest_KM_Gummy_Bear_D_01": 1940905011, + "Guest_KM_Gummy_Bear_E_01": 1940904995, + "Guest_KM_Gummy_Bear_A_02": 1941429347, + "Guest_KM_Gummy_Bear_D_02": 1941429299, + "Guest_KM_Gummy_Bear_E_02": 1941429283, + "Guest_KM_Gummy_Bear_B_01": 1940905043, + "Guest_KM_Gummy_Bear_B_02": 1941429331, + "Guest_KM_Gummy_Bear_B_03": 1941953619, + "Guest_KM_Gummy_BearHat_A_01": 853226448, + "Guest_KM_Gummy_BearHat_A_02": 853226460, + "Guest_KM_Gummy_Bunny_A_01": 324805042, + "Guest_KM_Gummy_Bunny_C_01": 324806066, + "Guest_KM_Gummy_Bunny_D_01": 324807602, + "Guest_KM_Gummy_Bunny_E_01": 324807090, + "Guest_KM_Gummy_Bunny_F_01": 324808626, + "Guest_KM_Gummy_BunnyUber_A_01": 525565930, + "Guest_KM_Gummy_Worm_A_01": 231044195, + "Guest_KM_Gummy_Worm_B_01": 231044179, + "Guest_KM_Gummy_Worm_C_01": 231044163, + "Guest_KM_Gummy_Worm_A_02": 232617059, + "Guest_KM_Gummy_Worm_B_02": 232617043, + "Guest_KM_Gummy_Worm_C_02": 232617027, + "Guest_KM_Gummy_Bear_F_01": 1940904979, + "Guest_KM_Gummy_Bear_F_02": 1941429267, + "Guest_KM_Gummy_Bunny_C_02": 274474418, + "Guest_KM_Robot_Candy_A_06": 463636908, + "Guest_KM_Alphoi_DarkF_A_01": 475441543, + "Guest_KM_Gobbler_Skinny_A_01": 773648069, + "Guest_KM_Gobbler_Skinny_A_02": 773648197, + "Guest_KM_Gobbler_Skinny_A_03": 773648325, + "Guest_KM_Gobbler_SkinnyF_A_01": 254411012, + "Guest_KM_Gobbler_Skinny_A_04": 773647429, + "Guest_KM_Gobbler_Skinny_A_05": 773647557, + "Guest_KM_Gobbler_Skinny_A_06": 773647685, + "Guest_KM_Gobbler_SkinnyF_A_02": 254423300, + "Guest_KM_Gobbler_Skinny_A_07": 773647813, + "Guest_KM_Gobbler_Skinny_A_08": 773646917, + "Guest_KM_Gobbler_Skinny_A_09": 773647045, + "Guest_KM_Gobbler_SkinnyF_A_03": 254419204, + "Guest_KM_Gobbler_Fat_A_01": 1440595742, + "Guest_KM_Gobbler_Fruit_B_01": 1236446660, + "Guest_KM_Gobbler_Fruit_A_01": 1235922372, + "Guest_KM_Gobbler_Guard_B_01": 1435667582, + "Guest_KM_Gobbler_Skinny_A_10": 773647937, + "Transformation_PlayerBabyCarrot": 1580787628, + "Transformation_PlayerDeadBeet": 1992261692, + "Transformation_PlayerDisparagus": 373797484, + "Transformation_PlayerSnowPeas": 634199102, + "PP_Snowflake": 2036143125, + "PP_GummyBear_Myth": 117787890, + "PP_GummyBear_Death": 236577760, + "PP_GummyBear_Balance": 2100524337, + "PP_GummyBear_Life": 118020336, + "PP_GummyBear_Fire": 117995748, + "PP_GummyBear_Storm": 247437198, + "PP_GummyBear_Ice": 122536570, + "MNT_SnowOwl": 1578473542, + "Guest_KM_Gummy_Bear_Uber_A_01": 1856208859, + "Guest_KM_Gummy_Bear_Uber_A_02": 1856196571, + "MNT_ChocolateMoose": 567538552, + "MNT_Ram_Candied": 1913603720, + "Guest_KM_Spider_Mage_A_01": 1529720120, + "Guest_KM_Spider_Mage_B_01": 1529719608, + "Guest_KM_Spider_Mage_C_01": 1529719096, + "Guest_KM_Spider_Mage_D_01": 1529718584, + "Guest_KM_Spider_Mage_E_01": 1529718072, + "PP_SpriteDark_Balance": 914900728, + "MNT_Tricycle": 991465753, + "Guest_Tri-Gauntlet-Protector-Gold": 2029952053, + "Guest_Tri-Gauntlet-FishbotGold": 130267882, + "Guest_HG-Clock-Clockworker-20": 281216243, + "Guest_HG-Clock-Clockworker-40": 281217011, + "Guest_HG-Clock-Clockworker-60": 281216755, + "Guest_HG-Clock-Clockworker-80": 281215475, + "Guest_HG-Clock-Clockworker-100": 283313523, + "Guest_HG-Clock-Clockworker-120": 283321715, + "Guest_HG-Clock-Lugs-20": 1452756928, + "Guest_HG-Clock-Lugs-40": 1452756960, + "Guest_HG-Clock-Lugs-60": 1452756992, + "Guest_HG-Clock-Lugs-80": 1452756768, + "Guest_HG-Clock-Lugs-100": 1452494736, + "Guest_HG-Clock-Lugs-120": 1452493712, + "Guest_HG-Clock-Lucia-20": 1041451626, + "Guest_HG-Clock-Lucia-40": 1041450602, + "Guest_HG-Clock-Lucia-60": 1041449578, + "Guest_HG-Clock-Lucia-80": 1041456746, + "Guest_HG-Clock-Lucia-100": 1049840746, + "Guest_HG-Clock-Lucia-120": 1049873514, + "Guest_KM_Gummy_Worm_A_03": 232092771, + "MNT_Scooter_E": 200254340, + "PP_WolfWarrior_Balance": 991302673, + "PP_PetGift": 1816280689, + "PP_RatThief": 1390866051, + "Guest_PL_Titan_Small_A": 2015819364, + "Guest_PL_Titan_Large_B": 699791264, + "Guest_PL_Titan_Medium_A": 326730424, + "PP_Draconian": 1631557208, + "MNT_Pantera_Astral": 106092538, + "PP_YearOx": 105653084, + "PP_WolfWarrior_Ice": 1043644935, + "PP_SpriteDark": 2031730054, + "PP_Brudel": 1355697143, + "MNT_Astronomers": 742732792, + "MNT_CouchPotato": 418050932, + "MNT_Flowerfarthing": 1396771051, + "MNT_Astronomers_Blue": 236532779, + "MNT_Astronomers_Rainbow": 4428274, + "PP_Astronomer": 782095961, + "Guest_KM_Gummy_Bunny_B_01": 324806578, + "Guest_KM_DeadBeets_A_01": 1396016635, + "MNT_GummyBunny": 775900704, + "MNT_GummyBunny_A": 775834080, + "MNT_GummyBunny_B": 775836128, + "MNT_GummyBunny_C": 775838176, + "Transformation_BG_Minotaur_Life": 1445109091, + "MNT_Armadillo": 825635826, + "PP_SootGremlin": 768969093, + "PP_RoadRunner": 2057802060, + "MNT_TinyTrolly": 160881792, + "PP_Frog_B": 1530124761, + "MNT_FjordDragon": 129204340, + "Transformation_BG_NinjaPig_Myth": 422914079, + "PP_CorgiPup": 1638656105, + "MNT_Skateboard": 728018224, + "PP_Krokomummy": 326396577, + "MNT_Vroom": 1736383110, + "MNT_PlayerWings_AtralRaven": 1514774167, + "PP_Blimp": 690882397, + "Guest_GH_WoodenSkeletonKey_Boar_Boss_Grey_01": 678055851, + "Guest_GH_StoneSkeletonKey_Boar_Boss_Grey_01": 571670691, + "Guest_GH_GoldSkeletonKey_Boar_Boss_Grey_01": 961728819, + "MNT_Cloud_Promo_AW_01": 2032670992, + "Guest_EM_Hornet_Burner_A_01": 1881854632, + "Guest_EM_Hornet_Burner_A_02": 1881854636, + "Guest_EM_Hornet_Zapper_A_01": 2058539689, + "Guest_EM_Hornet_Zapper_A_02": 2058539685, + "Guest_EM_Ant_Giant_D_01": 379386121, + "Guest_EM_Ant_Giant_A_02": 1768146677, + "Guest_EM_Ant_Giant_A_01": 1768097525, + "Guest_EM_Ant_Giant_B_01": 379386122, + "Guest_KR_Moth_Priest_G_Achera": 381233569, + "Guest_KR_BeeMonsterF_A": 135146211, + "Guest_KR_BeeMonsterF_A_Weak": 1824123847, + "Guest_KR_Bee_Warrior_A": 1569202664, + "Guest_KR_Bee_Warrior_B": 1569204200, + "Guest_KR_Bee_Warrior_C_BossDrones": 1217189631, + "Guest_KR_Bee_Warrior_D": 1569205224, + "Guest_KR_Bee_Warrior_E": 1569204712, + "Guest_KR_Bee_Warrior_G": 1569205736, + "Guest_KR_Bee_Warrior_G_BossFight": 1055035476, + "Guest_KR_Bee_Warrior_H": 1569207272, + "Guest_KR_Bee_Warrior_I": 1569206760, + "Guest_KR_Bee_Warrior_L": 1569209320, + "Guest_KR_Bee_Warrior_M": 1569208808, + "Guest_KR_DragonBeetle_Monster_A": 1777853782, + "Guest_KR_Hornet_Drone_A": 1161590757, + "Guest_KR_Hornet_Drone_B": 1161607141, + "Guest_KR_Hornet_Drone_C": 1161623525, + "Guest_KR_Hornet_Drone_D": 1161639909, + "Guest_KR_Hornet_Drone_E": 1161656293, + "Guest_KR_Lice_DeepSpawn_A": 761604959, + "Guest_KR_Mantis_HunterF_A": 820917199, + "Guest_KR_Mantis_HunterF_B": 871248847, + "Guest_KR_Mantis_HunterF_C": 854471631, + "Guest_KR_Mantis_HunterF_D": 904803279, + "Guest_KR_Mantis_HunterF_F": 938357711, + "Guest_KR_Mantis_HunterF_F_Driftwood": 2053608437, + "Guest_KR_Mantis_HunterF_G": 921580495, + "Guest_KR_Mantis_HunterF_H": 971912143, + "Guest_KR_Mantis_HunterF_I": 955134927, + "Guest_KR_Mantis_HunterF_I_Zuzka": 935478878, + "Guest_KR_Mantis_HunterF_J": 1005466575, + "Guest_KR_Mantis_HunterF_J_Zelda": 886910558, + "Guest_KR_Mantis_HunterF_K": 988689359, + "Guest_KR_Mantis_HunterF_K_LongShd": 1767574336, + "Guest_KR_Mantis_HunterF_L": 1039021007, + "Guest_KR_Mantis_HunterF_M": 1022243791, + "Guest_KR_Mantis_HunterF_P_Bossfight": 1731428987, + "Guest_KR_Mantis_HunterF_Q": 552481743, + "Guest_KR_Mantis_HunterF_R": 602813391, + "Guest_KR_Mantis_HunterF_S": 586036175, + "Guest_KR_Mantis_HunterF_SecondColumnCpt_A": 1354033994, + "Guest_KR_Mantis_HunterF_T": 636367823, + "Guest_KR_Mantis_HunterF_Tribute": 1946371041, + "Guest_KR_Mantis_HunterF_U": 619590607, + "Guest_KR_Mantis_HunterF_V": 669922255, + "Guest_KR_Mantis_HunterF_W": 653145039, + "Guest_KR_Mantis_HunterF_Y": 686699471, + "Guest_KR_Mantis_HunterF_Z_Officer": 206016474, + "Guest_KR_Mantis_ProphetF_B": 1791139097, + "Guest_KR_Mantis_ProphetF_C": 1254268185, + "Guest_KR_Milipede_Warrior_A": 410726278, + "Guest_KR_Milipede_Warrior_B": 410726282, + "Guest_KR_Milipede_Warrior_C": 410726286, + "Guest_KR_Milipede_Warrior_D": 410726290, + "Guest_KR_Milipede_Warrior_H": 410726306, + "Guest_KR_Milipede_Warrior_J": 410726314, + "Guest_KR_Milipede_Warrior_K": 410726318, + "Guest_KR_Moth_Priest_A": 1421532604, + "Guest_KR_Moth_Priest_B": 1421532092, + "Guest_KR_Moth_Priest_C": 1421531580, + "Guest_KR_Moth_Priest_D": 1421531068, + "Guest_KR_Moth_Priest_D_Drepa": 1483393420, + "Guest_KR_Moth_Priest_E": 1421530556, + "Guest_KR_Moth_Priest_F": 1421530044, + "Guest_KR_Mantis_HunterF_Z": 737031119, + "Guest_KR_Roach_AntLion_A": 1860517987, + "Guest_KR_Roach_AntLion_B_Bossfight": 993284625, + "Guest_KR_Roach_AntLion_C": 1861566563, + "Guest_KR_Roach_Cook_A": 259847495, + "Guest_KR_Roach_Glutton_B": 249524334, + "Guest_KR_Roach_WaterBug_A": 1795473599, + "Guest_KR_Roach_WaterBug_B": 1745141951, + "Guest_MR_Beetle_Scarab_A_01": 1789741503, + "Guest_MR_Beetle_Scarab_A_02": 1789741491, + "Guest_MR_Beetle_Scarab_B_01": 1790265791, + "Guest_ZF-Goliath-R10-Boss-01": 7034074, + "Guest_ZF-Goliath-R10-Boss-02": 7034202, + "Guest_ZF-Goliath-R10-Boss-03": 7034330, + "Guest_ZF-Goliath-R10-Boss": 1603576807, + "Guest_ZF-Goliath-R11-Boss-01": 2140449574, + "Guest_ZF-Goliath-R11-Boss-02": 2140449446, + "Guest_ZF-Goliath-R11-Boss-03": 2140449318, + "Guest_ME1_Ant_Aunt_A": 707251855, + "Guest_ME1_Ant_Aunt_B": 1440231794, + "Guest_CC_Fly_Worker_A_01": 1497784524, + "Guest_CC_Roach_Worker_A_01": 1026321602, + "Guest_CC_Roach_Lieutenant_A_01": 1081690299, + "Guest_CC_Roach_Lieutenant_B_01": 1081690295, + "Guest_CC_Roach_Don_A_01": 547836893, + "Guest_CC_Roach_BBug_A_01": 1021150157, + "Guest_CC_Roach_RoachSteady_A_01": 859409247, + "Guest_Draconian-Caster-Yellow-Boss-R8": 1016221419, + "Guest_Draconian-Zombie-R8-2-1": 1226055265, + "Guest_Draconian-Zombie-R8-2": 1226115297, + "Guest_Draconian-Caster-Green-R7": 2143342719, + "Guest_Draconian-Warrior-Gold-Boss-R8": 1044388248, + "Guest_Draconian-Caster-Gray-R7": 95878769, + "Guest_DS-Boss-MAW": 1676071241, + "Guest_Draconian-Zombie-R8-1": 1226115309, + "Guest_Draconian-Warrior-Purple-Boss-R7": 601813964, + "Guest_Draconian-Caster-Tan-Boss-R7": 1973339532, + "Guest_Draconian-Caster-Blue-R6": 1684210173, + "Guest_Draconian-Caster-Yellow-R8": 2129956646, + "Guest_Draconian-Warrior-Red-R7": 521861944, + "Guest_Draconian-Warrior-Tan-R6": 1726416112, + "Guest_Draconian-Warrior-Purple-R8": 1896270341, + "Guest_Draconian-Caster-Blue-Boss-R7": 401581134, + "Guest_Draconian-Zombie-R8": 384497496, + "Guest_GH2-Draconian-HENCH-R10": 1149202878, + "Guest_GH2-Draconian-BOSS-R10": 2114378473, + "Guest_G14-DM-Draconian_Boss": 490246211, + "Guest_G14-DM-Draconian_Storm": 2035239226, + "Guest_G14-DM-Draconian_Ice": 782200563, + "Guest_G14-DM-Draconian_Malistaire_M": 1904691727, + "Guest_G14-DM-Draconian_Malistaire_S": 1904685583, + "Guest_G14-DM-Draconian_Malistaire_D": 1904700943, + "Guest_G14-DM-Draconian_Malistaire": 1904736751, + "Guest_G14-DM-Draconian_Malistaire_B": 1904702991, + "Guest_G14-DM-Draconian_Malistaire_I": 1904695823, + "Guest_G14-DM-Draconian_Malistaire_L": 1904692751, + "Guest_G14-DM-Draconian_Malistaire_F": 1904698895, + "Guest_Draconian-PW-Gauntlet-Boss": 493080513, + "Guest_CC_Draconian_A_01": 551348115, + "Guest_AZ-Parasaur-Undead-E": 2041242846, + "Guest_AZ-Parasaur-drkPriestF-F": 898239615, + "Guest_EM_Parasaur_DrkPriestF_A_01": 1007099606, + "Guest_EM_Parasaur_DrkPriestF_A_02": 1007099605, + "Guest_AZ-Parasaur-drkPriestF-D": 898501759, + "Guest_AZ-Parasaur-drkPriestF-E": 898370687, + "Guest_AZ-Parasaur-drkPriestF-A": 897846399, + "Guest_AZ-Parasaur-Undead-B": 1716853538, + "Guest_AZ-Parasaur-Undead-A": 106240802, + "Guest_AZ-Parasaur-Undead-G": 967501022, + "Guest_AZ-Parasaur-PriestF-D": 1177445525, + "Guest_AZ-Parasaur-Undead-C": 1179982626, + "Guest_AZ-Parasaur-drkPriestF-C": 897584255, + "Guest_AZ-Parasaur-Undead-SkurkisMinion": 1414766977, + "Guest_AZ-Parasaur-drkPriestF-B": 897715327, + "Guest_AZ-Parasaur-drkPriestF-B-Script": 1414847875, + "Guest_AZ_Parasaur_Priest_A_Boss_01": 890025421, + "Guest_AZ-Parasaur-Undead-D": 1504371934, + "Guest_AZ-Pteranodon-Knight-D": 1127364049, + "Guest_AZ-StoneSkeletonKey-Ixcax-Cursedwing": 699239601, + "Guest_AZ-Pteranodon-Knight-E": 1127363921, + "Guest_AZ-Pteranodon-Knight-F": 1127363793, + "Guest_AZ-Pteranodon-Knight-A-PageEvent": 942589002, + "Guest_AZ-StoneSkeletonKey-Minion-Death": 311645584, + "Guest_AZ-Pteranodon-Knight-A": 1127364433, + "Guest_AZ-Raptor-Wraith-A": 585729247, + "Guest_AZ-Raptor-Undead-D": 893623689, + "Guest_G14-HS-Ifzt": 1914694612, + "Guest_AZ-Raptor-Warrior-A": 855749884, + "Guest_AZ-Raptor-Undead-C": 897293705, + "Guest_AZ-Raptor-Undead-B": 896769417, + "Guest_AZ-Raptor-Undead-F": 894672265, + "Guest_AZ-Raptor-Warrior-F": 872527100, + "Guest_AZ-Raptor-Warrior-H": 973190396, + "Guest_AZ-Tritops-Warrior-I": 1942669769, + "Guest_AZ-Tritops-Undead-H": 1215305911, + "Guest_AZ-Tritops-Undead-E": 1164974263, + "Guest_AZ-Tritops-SpkWarrior-A": 860850257, + "Guest_AZ-Tritops-SpkWarrior-B": 860862545, + "Guest_AZ-Tritops-Undead-F": 1181751479, + "Guest_AZ-Tritops-Warrior-K": 868927945, + "Guest_AZ-Tritops-Undead-G": 1198528695, + "Guest_AZ-Tritops-Mummy-A": 1912444877, + "Guest_AZ-Tritops-Warrior-G": 1278555704, + "Guest_AZ-Tritops-Undead-D": 1148197047, + "Guest_AZ-Tritops-Undead-A": 1097865399, + "Guest_AZ-Tritops-SpkChief-B": 2096319577, + "Guest_AZ-Tritops-Mummy-B": 1910872013, + "Guest_AZ-Tritops-Warrior-H": 1405798857, + "Guest_AZ-Dino-Undead-A": 508678670, + "Guest_AZ-Dino-Undead-B": 508679182, + "Guest_AZ-Dino-Undead-D": 508680206, + "Guest_KR_Dino_Undead_A": 1638800628, + "Guest_KR_Dino_Undead_Minion_A": 892450235, + "MNT_HayRideTruck": 75377404, + "MNT_ShadowSpiderForm": 1439860426, + "Transformation_BG_Draconian_Death": 794598804, + "PP_BabyOrca": 1056061090, + "Transformation_BG_Cyclops_Fire": 638854828, + "Transformation_BG_Fairy_Ice": 874078461, + "PP_SpriteLife": 1824998010, + "PP_Raccoon": 1107326808, + "PP_FireKitten": 593048189, + "MNT_SkeletalDuck": 1306273036, + "PP_VampireSquid": 431023109, + "PP_CottonCandy": 891201813, + "PP_ThreeHeadGoat": 1282096939, + "PP_EyeBot": 260189248, + "MNT_DeathBoat": 1444454568, + "MNT_Lemuria": 908974762, + "MNT_DeathBoat_B": 1444456538, + "MNT_DeathBoat_C": 1444456474, + "MNT_Spooky3": 1667775622, + "MNT_PresentBox": 122082000, + "MNT_Orca": 1726961653, + "Guest_LM_Golem_Steel_A_01": 19551853, + "Guest_LM_Golem_Steel_A_02": 36329069, + "Guest_LM_EyeBot_A_01_Death": 380508535, + "Guest_LM_EyeBot_A_01_Myth": 167840640, + "PP_ThreeHeadGoat_B": 1209286443, + "PP_ThreeHeadGoat_C": 1211383595, + "Guest_KR_Eel_Whirligig_A": 1062268734, + "Guest_KR_Goliath_Behemoth_A": 1231139987, + "Guest_KR_Goliath_Behemoth_C": 1231139995, + "Guest_KR_Goliath_Behemoth_D": 1231139975, + "Guest_KR_Goliath_Behemoth_E": 1231139971, + "Guest_KR_Goliath_Behemoth_H": 1231140023, + "Guest_KR_Goliath_Crusher_C": 1651720060, + "Guest_KR_Goliath_Crusher_D": 2106376324, + "Guest_KR_Goliath_Crusher_F": 1032634500, + "Guest_KR_Goliath_Crusher_G": 495763588, + "Guest_KR_Goliath_Crusher_K": 1651720059, + "Guest_AZ-Goliath-Crusher-A": 1874784966, + "Guest_AZ-Goliath-Crusher-B": 264172230, + "Guest_AZ-Goliath-Crusher-C": 801043142, + "Guest_AZ-Goliath-Crusher-D": 809569594, + "Guest_AZ-Goliath-Crusher-E": 272698682, + "Guest_HG_AKT_Butterfly_Time_A_25": 1788523059, + "Guest_HG_AKT_Butterfly_Time_A_50": 1130017331, + "Guest_HG_AKT_Butterfly_Time_A_75": 1809494579, + "Guest_HG_AKT_Butterfly_Time_A_100": 1113240099, + "Guest_HG_AKT_Butterfly_Time_A_130": 1515893283, + "MNT_DeathBoat_D": 1444456922, + "Guest_KR_RhinoBeetle_Sun_A_Bossfight": 47895417, + "Guest_KR_RhinoBeetle_Star_A": 1947510103, + "Guest_KR_RhinoBeetle_Moon_A": 1751275863, + "Guest_ME1_Clockwork_Marine_A": 1481452452, + "Guest_ME1_Clockwork_Marine_B": 1481452068, + "Guest_CC_GoldSkeletonKey_Lice_DeepSpawn_B": 1306132994, + "Guest_KR_DamdinBazar_A_Bossfight": 1333596311, + "Guest_DS-Minion-MAW2": 356796677, + "Guest_KH-Wyrmling-1": 116330513, + "Guest_KH-Wyrmling-20": 183439385, + "Guest_KH-Wyrmling-40": 317657113, + "Guest_KH-Wyrmling-60": 451874841, + "Guest_KH-Wyrmling-80": 586092569, + "Guest_PL_Polar_Bear_Solider_C": 1785662565, + "Guest_Skeleton-Silver-WCBoss-L01": 17766963, + "Guest_Banshee-Red-Elite-L24_B": 1902069117, + "Transformation_BG_WolfWarrior_Myth": 339098032, + "Transformation_BG_RatThief_Balance": 881728218, + "Transformation_BG_Colossus_Storm": 593527492, + "Transformation_BG_Elf_Life": 347405087, + "Transformation_BG_Minotaur_Ice": 1197752291, + "MNT_TRex_B": 660285500, + "PP_SpriteDark_Ice": 2036248504, + "MNT_RollingBall": 1658139390, + "Guest_LM_TRex_Base_A_03": 1378630657, + "Guest_LM_TRex_Base_A_04": 1378745345, + "Guest_LM_TRex_Base_A_05": 1378728961, + "Guest_LM_TRex_Base_A_01": 1378663425, + "Guest_LM_TRex_Base_A_02": 1378647041, + "Guest_LM_TRex_Cyborg_A_01": 151609741, + "Guest_LM_TRex_Cyborg_A_02": 168386957, + "Guest_LM_TRex_Cyborg_A_03": 185164173, + "Guest_LM_TRex_Cyborg_B_01": 151611277, + "Guest_LM_TRex_Cyborg_D_01": 151612301, + "Guest_LM_TRex_Cyborg_E_01": 151611789, + "Guest_LM_TRex_Cyborg_C_01": 151610765, + "Guest_LM_Draconian_Base_A_01": 1607373112, + "Guest_LM_EyeBot_B_01": 1085543056, + "Guest_LM_Drone_Eye_C_01": 916954037, + "Guest_LM_Drone_Eye_D_01": 1230529608, + "Guest_LM_Drone_Eye_D_02": 1230545992, + "Guest_LM_Drone_Eye_D_04": 1230578760, + "Guest_LM_Drone_Eye_D_03": 1230562376, + "Guest_LM_Drone_Eye_A_01": 916954038, + "Guest_LM_Drone_Eye_A_02": 916937654, + "Guest_LM_Drone_Eye_B_01": 1230529611, + "Guest_LM_Drone_Eye_D_05": 1230595144, + "Guest_LM_Drone_Eye_D_07": 1230627912, + "Guest_LM_Drone_Eye_D_08": 1230644296, + "Guest_LM_Drone_Eye_A_03": 916921270, + "Guest_LM_Drone_Eye_A_04": 916904886, + "Guest_LM_Drone_Eye_C_02": 916937653, + "Guest_LM_EyeBot_B_02": 1061940593, + "Guest_LM_EyeBot_B_03": 1085543055, + "Guest_LM_EyeBot_B_04": 1061940594, + "Guest_LM_Drone_Eye_C_03": 916921269, + "Guest_LM_Robot_Kit10_A_01": 199936400, + "Guest_LM_Colossus_Mander_A_01": 2107529026, + "Guest_LM_Robot_Future_A_01": 998840846, + "Guest_LM_Robot_FutureBIG_A_01": 340408568, + "Guest_LM_Robot_FutureBIG_A_02": 340396280, + "Guest_LM_Robot_FutureBIG_A_03": 340400376, + "Guest_LM_Robot_OldOne_A_01": 779070973, + "Guest_LM_Robot_OldOne_A_02": 1315941885, + "Guest_LM_Millipede_Centi_A_01": 168575797, + "Guest_LM_Millipede_Centi_A_03": 168583989, + "Guest_LM_Millipede_Centi_A_02": 168588085, + "Guest_LM_Millipede_Centi_A_04": 168563509, + "Guest_LM_Moth_Sorcerer_A_01": 228191136, + "Guest_LM_Boar_Barbarian_A_01": 1238634912, + "Guest_LM_Boar_Barbarian_A_02": 1238634528, + "Guest_LM_Boar_Barbarian_A_03": 1238634656, + "Guest_LM_Boar_Barbarian_A_04": 1238635296, + "Guest_LM_Boar_Barbarian_A_05": 1238635424, + "Guest_LM_Boar_Chief_A_01": 357051311, + "Guest_LM_Fungus_Humango_A_01": 1398460044, + "Guest_LM_Fungus_Humango_A_02": 1398460172, + "Guest_LM_Treant_Base_A_01": 1658172241, + "Guest_LM_GiantTree_EvilRoots_A_01": 282225934, + "Guest_LM_PA_GreenMan_A_01": 67705044, + "Guest_LM_Fungus_Humango_B_01": 1348128396, + "Guest_LM_Fungus_Humango_A_03": 1398460300, + "Guest_LM_Fungus_Man_C_01": 1648824156, + "Guest_LM_Fungus_Man_C_02": 1650397020, + "Guest_LM_Rhino_Zombie_A_01": 248513993, + "Guest_LM_Malughast_Base_01": 883820436, + "Guest_LM_Malughast_Base_02": 1420691348, + "Guest_LM_Lemur_HierarchF_H_04": 231562115, + "Guest_LM_Malughast_Base_03": 1957562260, + "Guest_LM_Malughast_Base_05": 1263663212, + "Guest_LM_Malughast_Base_06": 726792300, + "Guest_LM_Malughast_Base_08": 346949523, + "Guest_LM_Malughast_Base_09": 883820435, + "Guest_LM_Malughast_Base_04": 1800534124, + "Guest_LM_Minotaur_Skeleton_A_01": 1865122824, + "Guest_LM_Lemur_Wild_B_03": 1783764037, + "Guest_LM_Lemur_HierarchF_H_01": 231541635, + "Guest_LM_Lemur_HierarchF_H_02": 231553923, + "Guest_LM_Mander_Warrior_A_01": 1651245419, + "Guest_LM_Mander_Warrior_A_02": 1651245291, + "Guest_LM_Mander_Warrior_B_01": 1634468203, + "Guest_LM_Mander_Warrior_B_02": 1634468075, + "Guest_LM_Mander_Warrior_A_03": 1651245163, + "Guest_LM_Mander_Warrior_B_03": 1634467947, + "Guest_LM_Mander_Warrior_A_06": 1651245803, + "Guest_LM_Mander_Warrior_A_05": 1651245931, + "Guest_LM_Mander_Mummy_B_01": 1844111521, + "Guest_LM_Mander_Hero_B_01": 865113284, + "MNT_HolidayHippogriff": 938892112, + "MNT_Sabertooth_Ice": 1870381696, + "PP_FenrisWolf_Bantam": 776647759, + "MNT_JetPack": 1986300552, + "MNT_Scooter_F": 1005560708, + "PP_FossaKitten_A": 431748212, + "PP_Elfvis": 147991405, + "Guest_LM_Chicken_Hero_A_01": 1308728300, + "Guest_LM_Horse_Explorer_A_01": 434405482, + "Guest_LM_Duck_HeroineF_A_01": 133199186, + "Guest_LM_Crane_Hero_A_01": 204272548, + "Guest_LM_Deer_HeroineF_A_01": 1800374959, + "Guest_LM_Deer_Hero_A_01": 223109503, + "Guest_LM_Dog_Hero_A_01": 1434615064, + "PP_YearTiger": 777048708, + "MNT_Barrel": 3576425, + "MNT_Krampus": 404117611, + "PP_ChineseTigerCub": 1256032005, + "PP_Lemur": 565774155, + "PP_Robot": 1089075331, + "PP_Capybara": 451970762, + "Guest_LM_Ghoul_Base_A_01": 1822415945, + "Guest_LM_Lemur_HierarchF_H_03": 231549827, + "Guest_LM_Ghoul_Base_A_02": 1820843081, + "Guest_LM_Ghoul_Base_A_03": 1821367369, + "MNT_SpringSoF2022": 1685679511, + "MNT_WarElephant": 875015497, + "PP_Strix": 514230046, + "MNT_Beachball": 791896033, + "MNT_Blank": 633398131, + "MNT_CardboardFlier": 1646636689, + "MNT_LochMonster": 879660722, + "Transformation_BG_Krok_Death": 1395067182, + "Transformation_BG_Draconian_Fire": 1551581732, + "PP_Scotty": 1708580475, + "Guest_KR_Mice_Knight_A": 480101508, + "PP_Peacock": 1178721112, + "MNT_PoodleMoth": 975420235, + "PP_Hummingbird": 624666906, + "PP_WolfWarrior_Myth": 470737416, + "Guest_HG_UFD_Ghost_QueenF_A_100": 795323059, + "Guest_HG_UFD_Ghost_QueenF_A_50": 728230579, + "Guest_HG_UFD_Pirate_UndeadHighland_A_Balance_150": 201145133, + "Guest_HG_UFD_Pirate_UndeadHighland_A_Balance_100": 201144941, + "Guest_HG_UFD_Pirate_UndeadHighland_A_Balance_50": 201177701, + "Guest_HG_UFD_Pirate_UndeadHighland_A_Star_150": 1329885920, + "Guest_HG_UFD_Pirate_UndeadHighland_A_Star_100": 1304720096, + "Guest_HG_UFD_Pirate_UndeadHighland_A_Star_50": 1305768671, + "Guest_HG_UFD_Pirate_UndeadHighland_A_Shadow_150": 1263689971, + "Guest_HG_UFD_Pirate_UndeadHighland_A_Shadow_100": 1263689977, + "Guest_HG_UFD_Pirate_UndeadHighland_A_Shadow_50": 189949177, + "Guest_HG_UFD_Kelpie_Warrior_A_150": 54296095, + "Guest_HG_UFD_Kelpie_Warrior_A_100": 725384735, + "Guest_HG_UFD_Kelpie_Warrior_A_50": 708607503, + "Guest_HG_UFD_Pirate_UndeadHighland_B_150": 1099317831, + "Guest_HG_UFD_Pirate_UndeadHighland_B_100": 25576008, + "Guest_HG_UFD_Pirate_UndeadHighland_B_50": 159793864, + "Guest_HG_UFD_Ghost_QueenF_A_150": 795716275, + "PP_SpiderMinion": 557357331, + "MNT_Vines_Rainbow": 1587180338, + "MNT_YoungDrake": 1279496198, + "PP_Pet_Coconut": 444388490, + "DragonKI": 1490194214, + "PP_Sharkfish": 601628284, + "PP_MimicCake": 48071878, + "Guest_AQ-Bronze-Eagle": 375279744, + "Guest_Spider-Brown-L26": 2128680185, + "Guest_KR_Spider_Giant_D": 744401035, + "Guest_Wizard-Female-Band-Blue-R8": 1447486557, + "Guest_CC_Human_DSCrusaderF_A_01": 726538068, + "Guest_WC_Scarecrow_A_01": 867491011, + "Guest_WC_Banshee_A_01": 1433786463, + "Guest_WC_LostSoul_A_01": 796936146, + "PP_Fairy_Myth": 1117624344, + "PP_SpriteDark_Myth": 1884257976, + "BG_CyclopsLife_A": 944091673, + "Transformation_BG_NinjaPig_Storm": 2005137181, + "Transformation_BG_Fairy_Myth": 1880704188, + "Transformation_BG_Cyclops_Life": 638936708, + "Guest_AQ-Eagle-Praetorian": 1988013806, + "Guest_KM_BabyCarrot_A_01": 766239512, + "Guest_G14-DM-Gargoyle": 282898047, + "Guest_MR_Durvish_Sergeant_A_Boss_01": 1532609325, + "Guest_Cyclops-RedHelmet-KTBoss-L28": 2072371506, + "Guest_EM_Pig_Singer_A_01": 698597069, + "Guest_EM_Pig_Captain_A": 977505995, + "Guest_EM_Pig_Crewman_A": 465576459, + "PP_ChipmunkConductor": 1089819900, + "PP_LuckyCat": 1109326826, + "MNT_ImpCar": 1736092191, + "MNT_Book": 1547655078, + "MNT_JackoLantern": 649919658, + "MNT_Zheng": 742453108, + "MNT_Train": 413197899, + "MNT_Cerberus": 552686313, + "PP_Coconut": 1122741587, + "Transformation_Statue": 1153168084, + "Transformation_Nullity": 622504394, + "PP_Irk": 1825277392, + "Guest_Wyrmling-Fire-R8-1": 531485009, + "MNT_WolfLowPoly_A": 1947890962, + "MNT_WolfLowPoly_B": 1947825426, + "Transformation_BG_RatThief_Fire": 1169330235, + "Transformation_BG_WolfWarrior_Death": 159966683, + "Transformation_BG_Minotaur_Balance": 657855108, + "Transformation_BG_Draconian_Ice": 1907339814, + "Transformation_BG_Colossus_Myth": 1305894338, + "Transformation_NV_Penguin": 1757096851, + "Transformation_NV_Unicorn": 60447768, + "Transformation_NV_Monkey": 1379873688, + "Transformation_NV_Dog": 1961288968, + "PP_Wolf_Storm": 455227171, + "PP_WoodDuck": 1680912895, + "MNT_RockingHorse": 1205280059, + "MNT_SOF2022_Car": 219868812, + "PP_Buffaloon": 796152873, + "MNT_Steamboat": 1969530127, + "MNT_FelizNavidog": 847046394, + "PP_Mustache": 1571079379, + "Guest_DD-DS01-Skeleton-Pirate-20": 226826848, + "Guest_DD-DS01-Skeleton-Pirate-40": 201661024, + "Guest_DD-DS01-Skeleton-Pirate-60": 210049632, + "Guest_DD-DS01-Skeleton-Pirate-80": 251992672, + "Guest_DD-DS01-Skeleton-Pirate": 1994450336, + "Guest_DD-DS01-Shadow-Minion-Fire": 1074864956, + "Guest_DD-DS01-Shadow-Minion-Ice": 1841681214, + "Guest_DD-DS01-Shadow-Minion-Fire-20": 1074880881, + "Guest_DD-DS01-Shadow-Minion-Fire-40": 1074880945, + "Guest_DD-DS01-Shadow-Minion-Ice-20": 96850220, + "Guest_DD-DS01-Shadow-Minion-Ice-40": 96850218, + "Guest_DD-DS01-Shadow-Minion-Fire-60": 1074881009, + "Guest_DD-DS01-Shadow-Minion-Ice-60": 96850216, + "Guest_DD-DS01-Shadow-Minion-Fire-80": 1074880561, + "Guest_DD-DS01-Shadow-Minion-Ice-80": 96850214, + "Guest_SC-SpectreOfB-1": 1471950935, + "Guest_SC-SpectreOfB-20": 1471942759, + "Guest_SC-SpectreOfB-40": 1471942663, + "Guest_SC-SpectreOfB-60": 1471942695, + "Guest_SC-SpectreOfB-80": 1471942855, + "Guest_KH-Skeleton-Ice-60": 2108358962, + "Guest_KH-Skeleton-Ice-40": 2108391730, + "Guest_KH-Skeleton-Ice-20": 2108293426, + "Guest_KH-Skeleton-Ice-1": 2099953970, + "Guest_KH-Skeleton-Ice-80": 2108195122, + "Guest_KH-Undead-Caster-60": 1662604496, + "Guest_KH-Undead-Caster-40": 1661555920, + "Guest_KH-Undead-Caster-20": 1664701648, + "Guest_KH-Undead-Caster-1": 1931564240, + "Guest_KH-Undead-Caster-80": 1667847376, + "Guest_DD-PA01-DeadBeets": 1664999367, + "Guest_DD-PA01-DeadBeets-20": 1901453253, + "Guest_DD-PA01-DeadBeets-40": 2002116549, + "Guest_DD-PA01-DeadBeets-60": 1968562117, + "Guest_DD-PA01-DeadBeets-80": 2069225413, + "Guest_DD-PA01-Disparagus": 1865816461, + "Guest_DD-PA01-Disparagus-20": 573970895, + "Guest_DD-PA01-Disparagus-40": 499770929, + "Guest_DD-PA01-Disparagus-60": 1573512753, + "Guest_DD-PA01-Disparagus-80": 1647712718, + "Guest_DD-PA01-MeanestFlyTrap": 2001546861, + "Guest_DD-PA01-MeanestFlyTrap-20": 1936326253, + "Guest_DD-PA01-MeanestFlyTrap-40": 1936064109, + "Guest_DD-PA01-MeanestFlyTrap-60": 1935801965, + "Guest_DD-PA01-MeanestFlyTrap-80": 1937636973, + "Guest_HG-MD-MacDeath-20": 182639104, + "Guest_HG-MD-MacDeath-40": 182638080, + "Guest_HG-MD-MacDeath-60": 182637056, + "Guest_HG-MD-MacDeath-80": 182636032, + "Guest_HG-MD-MacDeath-100": 174252032, + "Guest_HG-MD-MacDeath-130": 174202880, + "Guest_HG_Sinbad_Skeleton_25": 494617874, + "Guest_HG_Sinbad_Skeleton_50": 42253050, + "Guest_HG_Sinbad_Skeleton_75": 1115994862, + "Guest_HG_Sinbad_Skeleton_100": 2105232646, + "Guest_HG_Sinbad_Skeleton_130": 2105232650, + "Guest_HG_Sinbad_Skeleton_25_02": 492722834, + "Guest_HG_Sinbad_Skeleton_50_02": 44148090, + "Guest_HG_Sinbad_Skeleton_75_02": 1117889902, + "Guest_HG_Sinbad_Skeleton_100_02": 2044247302, + "Guest_HG_Sinbad_Skeleton_130_02": 2044247306, + "Guest_DD-AV01-WyrmBoss": 1648677986, + "Guest_DD-AV01-WyrmBoss-20": 1926730850, + "Guest_DD-AV01-WyrmBoss-40": 1927779426, + "Guest_DD-AV01-WyrmBoss-60": 1928828002, + "Guest_DD-AV01-WyrmBoss-80": 1921487970, + "Guest_RH-Wyrm-Boss-01": 1027277645, + "Guest_RH-Wyrm-Boss-20": 1027277660, + "Guest_RH-Wyrm-Boss-40": 1027277663, + "Guest_RH-Wyrm-Boss-60": 1027277662, + "Guest_RH-Wyrm-Boss-80": 1027277657, + "Guest_HG_Sinbad_Wyrm_25": 1101443356, + "Guest_HG_Sinbad_Wyrm_50": 1101528860, + "Guest_HG_Sinbad_Wyrm_75": 1101445916, + "Guest_HG_Sinbad_Wyrm_100": 1093138204, + "Guest_HG_Sinbad_Wyrm_130": 1093089052, + "Guest_KH-Treant-1": 2001244331, + "Guest_KH-Treant-60": 1968148651, + "Guest_KH-Treant-40": 1968017579, + "Guest_KH-Treant-20": 1967886507, + "Guest_KH-Treant-80": 1967231147, + "Guest_DD-PA01-ForestGrump": 1969685870, + "Guest_DD-PA01-ForestGrump-20": 714666713, + "Guest_DD-PA01-ForestGrump-40": 714666689, + "Guest_DD-PA01-ForestGrump-60": 714666697, + "Guest_DD-PA01-ForestGrump-80": 714666737, + "Guest_DD-PA01-ForestNymphs": 227087348, + "Guest_DD-PA01-ForestNymphs-20": 227023552, + "Guest_DD-PA01-ForestNymphs-60": 227023040, + "Guest_DD-PA01-ForestNymphs-80": 227024832, + "Guest_SC-Pig-BalanceWizardA-1": 475456968, + "Guest_SC-Pig-BalanceWizardA-20": 477550024, + "Guest_SC-Pig-BalanceWizardA-40": 477541832, + "Guest_SC-Pig-BalanceWizardA-60": 477533640, + "Guest_SC-Pig-BalanceWizardA-80": 477525448, + "Guest_SC-Pig-BalanceWizardB-1": 475456964, + "Guest_SC-Pig-BalanceWizardB-20": 477550020, + "Guest_SC-Pig-BalanceWizardB-40": 477541828, + "Guest_SC-Pig-BalanceWizardB-60": 477533636, + "Guest_SC-Pig-BalanceWizardB-80": 477525444, + "Guest_SC-Pig-BalanceWizardC-1": 475456960, + "Guest_SC-Pig-BalanceWizardC-20": 477550016, + "Guest_SC-Pig-FireWizard-1": 2048176291, + "Guest_SC-Pig-FireWizard-20": 2031399073, + "Guest_SC-Pig-FireWizard-40": 2132062369, + "Guest_SC-Pig-FireWizard-60": 2098507937, + "Guest_SC-Pig-FireWizard-80": 1930735777, + "Guest_SC-Pig-IceWizardF-1": 1178687744, + "Guest_SC-Pig-IceWizardF-20": 1161910526, + "Guest_SC-Pig-IceWizardF-40": 1128356094, + "Guest_SC-Pig-IceWizardF-60": 1094801662, + "Guest_SC-Pig-IceWizardF-80": 1329682686, + "Guest_SC-Pig-MythWizard-1": 2048492725, + "Guest_SC-Pig-MythWizard-20": 2031715511, + "Guest_SC-Pig-MythWizard-40": 2132378807, + "Guest_SC-Pig-MythWizard-60": 2098824375, + "Guest_SC-Pig-MythWizard-80": 1931052215, + "Guest_SC-Pig-StormWizardF-1": 1743849420, + "Guest_SC-Pig-StormWizardF-20": 1743851464, + "Guest_SC-Pig-StormWizardF-40": 1743851488, + "Guest_SC-Pig-StormWizardF-60": 1743851480, + "Guest_SC-Pig-StormWizardF-80": 1743851504, + "Guest_KH-Pig-Bandit-Lord-1": 1080496628, + "Guest_KH-Pig-Bandit-Lord-20": 543625652, + "Guest_KH-Pig-Bandit-Lord-40": 530116172, + "Guest_KH-Pig-Bandit-Lord-60": 1603857996, + "Guest_KH-Pig-Bandit-Lord-80": 1617367475, + "Guest_KH-Pig-Bandit-Ninja-1": 1945100907, + "Guest_KH-Pig-Bandit-Ninja-20": 1945102951, + "Guest_KH-Pig-Bandit-Ninja-40": 1945102975, + "Guest_KH-Pig-Bandit-Ninja-60": 1945102967, + "Guest_KH-Pig-Bandit-Ninja-80": 1945102927, + "Guest_KH-Pig-War-Caster-1": 656859765, + "Guest_KH-Pig-War-Caster-20": 606528119, + "Guest_KH-Pig-War-Caster-40": 572973687, + "Guest_KH-Pig-War-Caster-60": 539419255, + "Guest_KH-Pig-War-Caster-80": 774300279, + "Guest_KH-Pig-War-Warrior-Boss-1": 16342355, + "Guest_KH-Pig-War-Warrior-Boss-20": 2143724205, + "Guest_KH-Pig-War-Warrior-Boss-40": 2118558381, + "Guest_KH-Pig-War-Warrior-Boss-60": 2126946989, + "Guest_KH-Pig-War-Warrior-Boss-80": 2101781165, + "Guest_SC-Pig-BalanceWizardC-40": 477541824, + "Guest_SC-Pig-BalanceWizardC-60": 477533632, + "Guest_SC-Pig-BalanceWizardC-80": 477525440, + "Guest_KH-Helephant-Death-20": 1109389719, + "Guest_KH-Helephant-Death-40": 2111835753, + "Guest_KH-Helephant-Death-60": 1038093929, + "Guest_KH-Helephant-Death-80": 35647896, + "Guest_KH-GreyOgre-Spider-1": 356368404, + "Guest_KH-GreyOgre-Spider-20": 1966981204, + "Guest_KH-GreyOgre-Spider-40": 1254244268, + "Guest_KH-GreyOgre-Spider-60": 180502444, + "Guest_KH-GreyOgre-Spider-80": 893239379, + "Guest_HG_Sinbad_Colossus_25": 1190802829, + "Guest_HG_Sinbad_Colossus_50": 1493551719, + "Guest_HG_Sinbad_Colossus_75": 419809907, + "Guest_HG_Sinbad_Colossus_100": 653933977, + "Guest_HG_Sinbad_Colossus_130": 653933973, + "Guest_NV_Dino_AberrantUndead_A_01": 2035087398, + "Guest_NV_Hellephant_Aberrant_A_01": 989522333, + "Guest_NV_Hellephant_Aberrant_A_02": 989522334, + "Guest_NV_BananaSpider_Base_A_01": 1585810541, + "Guest_NV_BananaSpider_Base_A_02": 1581616237, + "Guest_NV_BananaSpider_Base_A_03": 1577421933, + "Guest_NV_BananaSpider_Base_A_04": 1606782061, + "Guest_NV_BananaSpider_Base_A_05": 1602587757, + "Guest_NV_Wyrm_Aberrant_A_01": 16108415, + "Guest_NV_Monkey_Zombie_A_01": 1854775300, + "Guest_NV_Monkey_Zombie_A_02": 1854775304, + "Guest_NV_Monkey_Zombie_A_03": 1854775308, + "Guest_NV_Monkey_Zombie_A_04": 1854775312, + "MNT_Flag_Monster": 867940056, + "Guest_SKB_WY_DarkBramble_A_30": 2046798767, + "Guest_SKB_WY_DarkBramble_A_50": 2046797999, + "Guest_SKB_WY_DarkBramble_A_100": 2044701359, + "Guest_SKB_WY_DarkBramble_A_150": 2044721839, + "Guest_SKB_GH_Boar_A_30": 1547921275, + "Guest_SKB_WC_SpiritIgnorance_A_50": 1488876986, + "Guest_SKB_WC_SpiritIgnorance_A_100": 2025748410, + "Guest_SKB_WC_SpiritIgnorance_A_150": 2025748413, + "Guest_SKB_DS_Loremaster_A_50": 527751539, + "Guest_SKB_DS_Loremaster_A_100": 527817059, + "Guest_SKB_DS_Loremaster_A_150": 527817699, + "Guest_SKB_CL_Dan_A_50": 637418706, + "Guest_SKB_CL_Dan_A_60": 1510064941, + "Guest_SKB_CL_Dan_A_100": 637410512, + "Guest_SKB_CL_Dan_A_150": 637410432, + "Guest_SKB_AV_Spectre_A_50": 2104631195, + "Guest_SKB_AV_Spectre_A_100": 2102534041, + "Guest_SKB_AV_Spectre_A_150": 2018647961, + "Guest_SKB_MS_Samoorai_A_50": 2029641915, + "Guest_SKB_MS_Samoorai_A_100": 2096750843, + "Guest_SKB_MS_Samoorai_A_150": 587603717, + "Transformation_BG_Krok_StromTemplate": 1317694546, + "PP_ChineseRabbit": 382941643, + "PP_ParadeElf": 1036247808, + "MNT_HeartSwarm": 918199310, + "MNT_SpringSOF2023": 1417178519, + "Transformation_BG_Elf_Death2Template": 1606653101, + "MNT_GummyBunny_D": 775840224, + "Transformation_BG_Krok_Life2Template": 747486212, + "PP_Flame": 959186933, + "PP_YachtRock": 1500927358, + "PP_PirateYachtRock": 1227549100, + "PP_ChickenMonster": 1845706534, + "PP_SnowHoppers_B": 1496460038, + "PP_SnowHoppers_C": 1496457990, + "MNT_Oarfish": 29720265, + "PP_RingTailedCat": 993143427, + "MNT_Fanboat": 19347694, + "MNT_MiniSub": 298697910, + "PP_DumboOctopus": 966435639, + "PP_Glowbug_Balance": 1405529577, + "PP_Glowbug_Death": 405117107, + "PP_Glowbug_Fire": 651698987, + "PP_Glowbug_Ice": 2124926395, + "PP_Glowbug_Life": 601367299, + "PP_Glowbug_Myth": 592978024, + "PP_Glowbug_Storm": 61190446, + "PP_DumboOctopus_B": 968448823, + "PP_DumboOctopus_C": 968383287, + "PP_BananaSpider_01": 1074383522, + "PP_BananaSpider_02": 1080674978, + "PP_BananaSpider_03": 1078577826, + "Guest_HG_NM_BeardDragon_Base_C_01": 82913785, + "Guest_HG_NM_BeardDragon_Base_C_02": 82913786, + "Guest_HG_NM_BeardDragon_Base_C_03": 82913787, + "Guest_HG_NM_Glowbug_Base_C_01": 544959703, + "Guest_HG_NM_Glowbug_Base_C_02": 544955607, + "Guest_HG_NM_Glowbug_Base_C_03": 544951511, + "Guest_HG_NM_Glowbug_Base_C_04": 544947415, + "Guest_HG_NM_Glowbug_Base_C_05": 544943319, + "Guest_HG_NM_Glowbug_Base_C_06": 544939223, + "Guest_HG_NM_Glowbug_Base_C_07": 544935127, + "MNT_BouquetofFlowers": 1511180560, + "PP_Piggle_Rainbow": 91081383, + "MNT_Sabertooth_FlameSaber": 1949516909, + "Guest_HG_NM_BeardDragon_Base_A_01": 83175929, + "Guest_HG_NM_BeardDragon_Base_A_02": 83175930, + "Guest_HG_NM_BeardDragon_Base_A_03": 83175931, + "Guest_HG_NM_BeardDragon_Base_B_01": 83044857, + "Guest_HG_NM_BeardDragon_Base_B_02": 83044858, + "Guest_HG_NM_BeardDragon_Base_B_03": 83044859, + "Guest_HG_NM_Glowbug_Base_B_01": 8088791, + "Guest_HG_NM_Glowbug_Base_B_02": 8084695, + "Guest_HG_NM_Glowbug_Base_B_03": 8080599, + "Guest_HG_NM_Glowbug_Base_B_04": 8076503, + "Guest_HG_NM_Glowbug_Base_B_05": 8072407, + "Guest_HG_NM_Glowbug_Base_B_06": 8068311, + "Guest_HG_NM_Glowbug_Base_B_07": 8064215, + "Guest_HG_NM_Glowbug_Base_A_01": 1618701527, + "Guest_HG_NM_Glowbug_Base_A_02": 1618697431, + "Guest_HG_NM_Glowbug_Base_A_03": 1618693335, + "Guest_HG_NM_Glowbug_Base_A_04": 1618689239, + "Guest_HG_NM_Glowbug_Base_A_05": 1618685143, + "Guest_HG_NM_Glowbug_Base_A_06": 1618681047, + "Guest_HG_NM_Glowbug_Base_A_07": 1618676951, + "MNT_SummerSOF2023": 1636120912, + "PP_Cyclops_Fire": 7821755, + "PP_Death_Elf": 1535744155, + "PP_Newt": 1438123483, + "PP_Echidna": 735439358, + "MNT_Wombat": 580544786, + "Transformation_BG_NinjaPig_Balance": 1799661438, + "Transformation_BG_Cyclops_Ice": 647975824, + "Transformation_BG_Minotaur_Storm": 1005667041, + "Transformation_GR_Parasaur_Priest_Ice": 1101466351, + "Transformation_GR_Parasaur_Priest_Fire": 892193041, + "Transformation_GR_Parasaur_Priest_Storm": 1525882116, + "Transformation_GR_Parasaur_Priest_Balance": 1127637476, + "Guest_GR_AZ_Parasaur_Undead_B_01": 322587487, + "MNT_WitchCat": 1167097888, + "PP_RolyPoly": 578538330, + "PP_Capybara_B": 628131532, + "MNT_OutbackTruck": 1815527801, + "PP_PoodleSailor": 2137704795, + "MNT_PolarianCannon": 2103490826, + "PP_TazmanianDevil": 1773548765, + "Guest_SKB_AZ_Ixcax_A_100": 556560994, + "Guest_SKB_AZ_Ixcax_A_150": 556610146, + "Guest_SKB_AZ_Ixcax_A_50": 564951650, + "MNT_GhoulsShovel": 2035610946, + "PP_CrystalBdayDragon": 1897078804, + "PP_SunGobblerBall": 1522469440, + "PP_Sun_GreenGobbler": 1337690394, + "MNT_2P_AutumnTreant": 1063435527, + "PP_AutumnTreant": 561077291, + "MNT_FlyingMonkey": 490807393, + "PP_BabyPlantMonster": 2076646587, + "MNT_PlantCreature_A": 1802823265, + "Transformation_BG_Fairy_Fire": 2065252898, + "Transformation_BG_Krok_Myth": 277926564, + "Transformation_BG_RatThief_Life": 1167758651, + "Transformation_BG_Elf_Balance": 1628238937, + "Transformation_BG_Colossus_Death": 184392004, + "Transformation_FortressPod": 139738335, + "P_Wombat_POLYMORPH": 1132264953, + "PP_SharkWobbegong": 1994247222, + "PP_ChineseNYDragon": 1126999021, + "PP_JingleBellRock": 1076037919, + "PP_Krok_Mummy_Myth": 438487583, + "PP_Cyclops_Ice": 1476966187, + "MNT_OutbackTruckB": 1813299577, + "MNT_EvilSnowmanBall": 758818712, + "MNT_ThanksgivingGobbler": 1760011910, + "Guest_WL_Ghost_LostSoul_A_01": 1224111704, + "Guest_WL_Kangaroo_Drover_F_01": 2025562931, + "Guest_WL_Spider_WarriorMage_C_01": 1296557888, + "Guest_WL_Spider_WarriorMage_C_02": 1430775616, + "Guest_WL_Spider_WarriorMage_C_03": 1564993344, + "Guest_WL_Spider_WarriorMage_C_04": 1699211072, + "Guest_WL_Spider_WarriorMage_C_05": 1833428800, + "Guest_WL_Spider_WarriorMage_C_06": 1967646528, + "Guest_WL_Spider_WarriorMage_C_07": 2101864256, + "Guest_SKB_KR_Lightbane_A_100": 837930677, + "Guest_SKB_KR_Lightbane_A_160": 837930669, + "Guest_SKB_KR_Lightbane_A_50": 1309555019, + "Transformation_WL_Phantasmanian_DevilTemplate": 384891502, + "MNT_2P_LeaflessTreant": 623083386, + "PP_Minotaur_Ice": 700151737, + "MNT_Scooter_G": 737125252, + "Guest_WL_Frog_Owner_B_01": 767864686, + "MNT_SilentKnight": 646654812, + "Guest_WL_TRex_Base_A_01": 1842562033, + "Guest_WL_TRex_Base_B_01": 304921616, + "PP_Groundhog": 108643243, + "Guest_NV_Unicorn_Guard_C_04": 1845621, + "MNT_EmuPunk": 647315080, + "MNT_HeartBalloon": 798826551, + "PP_ValentineHoppers": 968693964, + "MNT_SpringSOF2024_Heckhound": 453640548, + "Guest_AQ-Centaur-Arion": 1856508139, + "Guest_AQ-Centaur-Artemis": 333294011, + "Guest_AQ-Horse-Sea": 724896200, + "Guest_KR_Horse_Warlord_A_Bossfight": 1302284326, + "Guest_KR_Horse_Warlord_A_BossfightSP": 1300726822, + "Guest_KR_Zebra_Thrall_A": 1250265667, + "Guest_KR_Zebra_Thrall_A_Boss_Minion": 345677011, + "Guest_KR_Zebra_Thrall_A_Gallery": 1520303483, + "Guest_KH-Gray-Horse-40": 1802231403, + "Guest_KH-Gray-Horse-20": 1802231307, + "Guest_G14-BP-Unicorn_Fencer_Boss": 1602044152, + "Guest_Horse-Merc-Brown-L37": 1831175255, + "Guest_Horse-Merc-Tan-L39": 1363854837, + "Guest_Horse-Merc-Tan-L39-1": 2085275127, + "Guest_Horse-Merc-Gray-MSBoss-L39": 1863452041, + "Guest_Horse-Merc-Gray-L39": 2039135564, + "Guest_Horse-Merc-Tan-L38": 1363330549, + "Guest_WC_Horse_Mercenary_Roberto": 891924774, + "Guest_ZF-Nathi-Yellowstripe-R11": 1505157721, + "Guest_ZF-TseTse-Main-R11-Boss": 114927854, + "Guest_ZF-TseTse-Elephant-R11": 894147273, + "Guest_ZF-Zebra-Impi-Raider-R11": 1378242919, + "Guest_ZF-Zebra-Warrior-Male-R10-1": 1791906265, + "Guest_ZF-Zebra-Senzan-Zebu-R10-Boss": 373712721, + "Guest_ZF-Zebra-Shaka-Zebu-R10-Boss": 662142985, + "Guest_ZF-Zebra-Warrior-Female-R10-02": 1507835670, + "Guest_ZF-Zebra-Warrior-Male-R10": 47075786, + "Guest_ZF-Zebra-Warrior-Male-R10-02": 1791906714, + "Guest_ZF-Zebra-Warrior-Male-R10-03": 1791906746, + "Guest_ZF-Zebra-Warrior-Male-R10-05": 1791906682, + "Guest_ZF-Zebra-Warrior-Male-R10-2": 1791906268, + "Guest_ZF_Zebra_Spectral_Guardian-R11": 431970996, + "Guest_CC_Horse_Apoc_A_01": 644668374, + "Guest_CC_Horse_Apoc_B_01": 644668390, + "Guest_CC_Horse_Apoc_C_01": 644668406, + "Guest_CC_Horse_Apoc_D_01": 644668294, + "Guest_CC_Horse_Apoc_D_02": 645192582, + "Guest_CC_Unicorn_CorsairF_B_01": 1378532506, + "Guest_CC_Unicorn_Duelist_B_01": 64891542, + "Guest_CC_Unicorn_Guard_B_01": 1075063242, + "Guest_CC_Unicorn_Guard_B_02": 1075063238, + "Guest_CC_Unicorn_Guard_B_03": 1075063234, + "Guest_NV_Horse_HordeSoldier_A_01": 504396960, + "Guest_NV_Horse_HordeSoldier_A_02": 101743776, + "Guest_NV_Horse_HordeOfficer_A_01": 343600992, + "Guest_NV_Horse_HordeSoldier_A_03": 235961504, + "Guest_NV_Horse_HordeOfficer_A_02": 209383264, + "Guest_NV_Horse_AberrantTungAk_A_01": 952263441, + "Guest_NV_Horse_AberrantTungAk_A_02": 952263537, + "Guest_NV_Horse_TungAk_B_01": 1194718672, + "Guest_NV_Horse_TungAk_B_02": 657847760, + "Guest_NV_Horse_HordeOfficer_B_01": 343596896, + "Guest_NV_Horse_HordeOfficer_B_02": 209379168, + "Guest_NV_Horse_TungAk_A_01": 1194669520, + "Guest_NV_Unicorn_Guard_C_01": 1845601, + "Guest_NV_Unicorn_Guard_A_01": 797025, + "Guest_NV_Unicorn_AberrantGuard_A_01": 739851573, + "Guest_NV_Unicorn_Guard_C_02": 1845613, + "Guest_NV_Unicorn_Guard_C_03": 1845609, + "Guest_NV_Unicorn_AberrantGuard_A_02": 739848501, + "Guest_NV_Unicorn_Guard_A_02": 797037, + "Guest_NV_Unicorn_AberrantGuard_A_03": 739849525, + "Guest_NV_Unicorn_AberrantGuard_A_04": 739846453, + "Guest_NV_Horse_HordeOfficer_A_03": 75165536, + "Guest_NV_Horse_HordeSoldier_A_04": 907050144, + "Guest_NV_Horse_HordeSoldier_A_05": 1041267872, + "Guest_NV_Horse_HordeSoldier_C_01": 504388768, + "Guest_HG_TRAIN_Horse_MustangFencerF_A_Balance_50": 871182987, + "Guest_HG_TRAIN_Horse_MustangFencerF_A_Balance_75": 871176715, + "Guest_HG_TRAIN_Horse_MustangFencerF_A_Life_100": 886489645, + "Guest_HG_TRAIN_Horse_MustangFencerF_A_Balance_25": 871177035, + "Guest_HG_TRAIN_Horse_MustangFencerF_A_Balance_100": 872231819, + "Guest_HG_TRAIN_Horse_MustangFencerF_A_Life_140": 1960231469, + "Guest_HG_TRAIN_Horse_MustangFencerF_B_100": 2089957067, + "Guest_HG_TRAIN_Horse_MustangFencerF_A_Life_25": 1700184589, + "Guest_HG_TRAIN_Horse_MustangFencerF_A_Life_50": 920044045, + "Guest_HG_TRAIN_Horse_MustangFencerF_A_Life_75": 1742127629, + "Guest_HG_TRAIN_Horse_MustangFencerF_A_Balance_140": 872223627, + "Guest_HG_TRAIN_Horse_MustangFencerF_B_50": 2089952970, + "Guest_HG_TRAIN_Horse_MustangFencerF_B_75": 57530654, + "Guest_HG_TRAIN_Horse_MustangFencerF_B_140": 2089957099, + "Guest_HG_TRAIN_Horse_MustangFencerF_B_25": 1131272477, + "Guest_LM_Horse_Explorer_A_01_Hard": 1711837140, + "Guest_WL_Unicorn_Guard_A_01": 1074538935, + "Guest_WL_Unicorn_CorsairF_E_01": 1378532603, + "Guest_WL_Unicorn_Warlord_A_01": 1321310496, + "Guest_KH-Gray-Horse-1": 1802239547, + "Guest_KH-Gray-Horse-60": 1802231371, + "Guest_KH-Gray-Horse-80": 1802231467, + "Transformation_BG_NinjaPig_Ice": 186026527, + "Transformation_BG_Cyclops_Storm": 897316984, + "PP_MinotaurBalance": 1344665951, + "PP_OrthusMoon": 1804503950, + "PP_CoolPineapple": 1149318906, + "PP_TwinkleStars": 766378011, + "PP_Scroll": 1613313091, + "PP_Colossus_Death": 40713075, + "PP_ColossusDeath": 530964029, + "PP_KILiveRock": 1975550570, + "MNT_Outrigger": 1417937299, + "MNT_BookWyrm": 2080129190, + "MNT_RacingSnail": 1996220963, + "MNT_UmbrellaCloud": 145762615, + "PP_PropellerCat": 2094718580, + "MNT_TRex_Shirt": 586746001, + "MNT_Swarm_Bee": 1625228695, + "MNT__CelestialMoon": 968360256, + "Guest_ME_Sinbad_IronSultan_150": 2001676223, + "Guest_ME_Sinbad_Cyclops_150": 1968943689, + "Guest_ME_Sinbad_Skeleton_150": 1031490819, + "Guest_ME_Sinbad_Colossus_150": 1727675806, + "Guest_ME_Sinbad_Skeleton_150_02": 970505475, + "Guest_ME_Sinbad_Wyrm_150": 19314443, + "Guest_ZF-Zebra-Inzinzebu-Bandit-R11": 430262550, + "Guest_ZF-Zebra-Warrior-Male-R10-04": 1791906650, + "PP_TwinkleStars_02": 805304347, + "PP_TwinkleStars_03": 803207195, + "PP_TwinkleStars_01": 799012891, + "Transformation_BodleianHarrow": 609627870, + "Guest_HG_Gryphon_OwlStatue_A_01_L170": 77756046, + "Guest_HG_Gryphon_OwlStatue_A_02_L170": 73561742, + "Guest_HG_Gryphon_OwlStatue_A_01_L100": 77752974, + "Guest_HG_Gryphon_OwlStatue_A_02_L100": 73558670, + "Guest_HG_Gryphon_OwlStatue_A_01_L50": 78277134, + "Guest_HG_Gryphon_OwlStatue_A_02_L50": 74082830, + "MNT_SummerSOF2024_JudgementWings": 1078163967, + "MNT_Pegasus_E": 131704054, + "MNT_PolarisHero": 665176426, + "PP_Duckana": 1128961578, + "PP_QueenBee": 833291695, + "Transformation_BG_Draconian_Balance": 2078940682, + "Transformation_BG_WolfWarrior_Fire": 1762248682, + "Transformation_BG_Minotaur_Death": 309090657, + "PP_WolfWarrior_Fire": 685685256, + "PP_WolfWarrior_Death": 1857202724, + "Guest_ME-GTAV01-WyrmBoss-150": 1482208618, + "Guest_ME_SpectreOfB_L150": 684104791, + "Guest_ME_MD_MacDeath_L150": 1128977615, + "Guest_ME_Pig_BalanceWizardA_L150": 959913724, + "Guest_ME_Pig_BalanceWizardB_L150": 959913712, + "Guest_ME_Pig_BalanceWizardC_L150": 959913716, + "Guest_ME_Pig_FireWizard_L150": 964392255, + "Guest_ME_Pig_IceWizardF_L150": 86941026, + "Guest_ME_Pig_MythWizard_L150": 964051241, + "Guest_ME_Pig_StormWizardF_L150": 2016383602, + "Guest_ME_Clock_Clockworker_L150": 1424569772, + "Guest_ME_Clock_ClockworkSpanner_L150": 1966824609, + "Guest_ME_Clock_Lugs_L150": 370290904, + "Guest_ME_Clock_Lucia_L150": 1857768409, + "MNT_EvilChair": 339577702, + "PP_Cyclops_Storm": 621464512, + "PP_Krokomummy_Life": 462432735, + "Transformation_CL_Rematch_Crustacean": 1686865207, + "Transformation_CL_Rematch_Protector": 1893951532, + "Transformation_CL_Rematch_Angler": 120412196, + "Transformation_CL_Rematch_Piscean": 1624106070, + "Transformation_Zebra_Template": 1900548493, + "Transformation_Zebra2_Template": 325099540, + "Transformation_Zebra3_Template": 325099524, + "Transformation_Zebra4_Template": 325099636, + "MNT_SweetSixteenBirthday": 1009398096, + "MNT_2P_TRex_Bones": 1618543266, + "MNT_SpringBumperCar": 1725007788, + "PP_WinterGoblin": 2025052443, + "PP_OnyxAnubis": 1552575189, + "PP_OttomanCat": 223541582, + "MNT_HolidayYeti": 780983974, + "MNT_IceSled": 979912604, + "MNT_TurtleDoves": 1850191638, + "MNT_KrokChariot": 559783620, + "MNT_Mustang": 1775949401, + "MNT_PumpkinBall": 382849054, + "Transformation_BG_Fairy_Storm": 836920873, + "Transformation_BG_Elf_Myth": 1506493664, + "Transformation_NinjaPig_Life": 816802847, + "Transformation_BG_Krok_Fire": 1060580712, + "Transformation_BG_Colossus_Balance": 1067963041, + "Transformation_BG_NinjaPig_Life": 441460895, + "PP_Penguin_03": 1623028104, + "Transformation_Duck_Librarian_B": 864067551, + "Transformation_Duck_Librarian_A": 859873247, + "Transformation_Duck_Adventurer": 194560769, + "Transformation_Gummy_Bunny_C": 1298087941, + "Transformation_Frog_Horned_A": 837201339, + "Transformation_Glowbug_Storm": 2096380446, + "Transformation_Marshmallow_Critter_A": 1036335317, + "Transformation_Snipe_Base_B": 232132109, + "Transformation_Snowball": 915248481, + "Transformation_Wombat_Base": 333435450, + "Transformation_Human_Malistaire": 1414887773, + "Transformation_Morganthe_E": 1745180054, + "Transformation_Spider_Grandfather": 1131773979, + "Transformation_Khrulhu_Dasein_B": 367878762, + "Transformation_Devourer_Base": 698770016, + "Transformation_Alien_Meteor": 638746168, + "Transformation_Nightmare_Malus": 704212821, + "Transformation_Daemon_Personal": 278266463, + "PP_ValentinesDay": 810003364, + "PP_BabyHippo": 422858138, + "PP_Aardwold": 1592150119, + "PP_Aardwold_C": 1902528613, + "MNT_Cobra": 472847981, + "MNT_Serpopard": 1629558909, + "MNT_Serpopard_B": 1629556867, + "MNT_Serpopard_C": 1629556931, + "PP_Fairy_Fire": 1847789544, + "MNT_Mustang_B": 1448793691, + "PP_FireElfMyth": 1933609060, + "MNT_KT-BoatRide": 1560860110, + "MNT_ShadowMagic": 2095978357, + "MNT_MardiGrasFloat_A": 1740674432, + "PP_ChineseNYSnake": 988201940, + "MNT_AnubisDog": 1995079956, + "PP_ShadowImp_A": 1604849432, + "PP_ShadowImp_B": 1604849438, + "PP_ShadowImp_C": 1604849436, + "MNT_ShadowMagic_B": 2093870965, + "MNT_ShadowMagic_C": 2093805429, + "Guest_KT_SE_Tritops_Warrior_I_01": 97516901, + "Guest_KT_SE_DS_Draconian_Model_01": 1916095079, + "Guest_KT_SE_Beetle_Scarab_C_01_L50": 1064004307, + "Guest_KT_SE_Roach_Warrior_C_03": 1872574203, + "Guest_KT_SE_Roach_Warrior_C_04": 1871918843, + "Guest_KT_SE_Roach_Warrior_C_05": 1871787771, + "Guest_KT_SE_Beetle_Scarab_C_01": 1353410759, + "Guest_KT_SE_Mander_Citizen_B_01_L50": 2044509396, + "Guest_KT_SE_Mander_CitizenF_B_01_L50": 164327682, + "Guest_KT_SE_Treant_Tormented_A_01": 1359800879, + "Guest_KT_SE_Treant_Base_A_01": 765512948, + "Guest_KT_SE_Mander_Citizen_F_D_05": 171244620, + "Guest_KT_SE_Mander_CitizenF_D_01": 163791037, + "Guest_KT_SE_Mander_CitizenF_D_02": 298008765, + "Guest_KT_SE_Mander_CitizenF_D_03": 432226493, + "Guest_KT_SE_Mander_CitizenF_D_04": 566444221, + "Guest_KT_SE_Mander_MummyF_A_01": 964349080, + "Guest_KT_SE_Mander_MummyF_A_02": 964480152, + "Guest_KT_SE_MC_Wraith_Model_01": 1101442118, + "Guest_KT_SE_Mander_CitizenF_B_02": 298000573, + "MNT_Wheelbarrow": 614248817, + "MNT_StubbornLlama": 221089074 } }, - "m_exclusive": { - "type": "bool", - "id": 3, - "offset": 128, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 824383403 - }, - "m_active": { - "type": "bool", - "id": 4, - "offset": 129, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 239335471 - }, - "m_enableReqs": { - "type": "class SharedPointer", - "id": 5, - "offset": 136, - "flags": 263, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3158020443 - } - } - }, - "369828333": { - "name": "class BalloonWindow*", - "bases": [ - "WindowLayout", - "Window", - "PropertyClass" - ], - "hash": 369828333, - "properties": { - "m_sName": { + "m_eggName": { "type": "std::string", - "id": 0, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306437263 - }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621225959 - }, - "m_Style": { - "type": "unsigned int", - "id": 2, - "offset": 152, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152, - "H_CENTER": 16777216, - "H_RIGHT": 33554432, - "V_CENTER": 2147483648, - "V_BOTTOM": 67108864, - "SORT": 536870912, - "LAYOUT_VERT": 1073741824, - "LAYOUT_REVERSE": 2147483648, - "DO_NOT_WRAP": 134217728 - } - }, - "m_Flags": { - "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } - }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3105139380 - }, - "m_fTargetAlpha": { - "type": "float", - "id": 5, - "offset": 212, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1809129834 - }, - "m_fDisabledAlpha": { - "type": "float", "id": 6, - "offset": 216, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1389987675 - }, - "m_fAlpha": { - "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 482130755 - }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3623628394 - }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2102211316 - }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1846695875 - }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3389835433 - }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2547159940 - }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2587533771 - }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, "offset": 176, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3091503757 - }, - "m_nHSpacing": { - "type": "int", - "id": 16, - "offset": 584, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 893611957 - }, - "m_nVSpacing": { - "type": "int", - "id": 17, - "offset": 588, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 551359491 - } - } - }, - "767522421": { - "name": "class GoldAmountTemplate", - "bases": [ - "WizItemTemplate", - "ItemTemplate", - "GameObjectTemplate", - "CoreTemplate", - "PropertyClass" - ], - "hash": 767522421, - "properties": { - "m_behaviors": { - "type": "class BehaviorTemplate*", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1197808594 - }, - "m_objectName": { - "type": "std::string", - "id": 1, - "offset": 96, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2154940147 - }, - "m_templateID": { - "type": "unsigned int", - "id": 2, - "offset": 128, - "flags": 16777223, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1286746870 - }, - "m_visualID": { - "type": "unsigned int", - "id": 3, - "offset": 132, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1118778894 - }, - "m_adjectiveList": { - "type": "std::string", - "id": 4, - "offset": 248, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 3195213318 - }, - "m_exemptFromAOI": { - "type": "bool", - "id": 5, - "offset": 240, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1457879059 - }, - "m_displayName": { - "type": "std::string", - "id": 6, - "offset": 168, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2446900370 - }, - "m_description": { - "type": "std::string", - "id": 7, - "offset": 136, "flags": 8388615, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1649374815 - }, - "m_nObjectType": { - "type": "enum ObjectType", - "id": 8, - "offset": 200, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2118905880, - "enum_options": { - "OT_UNDEFINED": 0, - "OT_PLAYER": 1, - "OT_NPC": 2, - "OT_PROP": 3, - "OT_OBJECT": 4, - "OT_HOUSE": 5, - "OT_KEY": 6, - "OT_OLD_KEY": 7, - "OT_DEED": 8, - "OT_MAIL": 9, - "OT_RECIPE": 17, - "OT_EQUIP_HEAD": 10, - "OT_EQUIP_CHEST": 11, - "OT_EQUIP_LEGS": 12, - "OT_EQUIP_HANDS": 13, - "OT_EQUIP_FINGER": 14, - "OT_EQUIP_FEET": 15, - "OT_EQUIP_EAR": 16, - "OT_BUILDING_BLOCK": 18, - "OT_BUILDING_BLOCK_SOLID": 19, - "OT_GOLF": 20, - "OT_DOOR": 21, - "OT_PET": 22, - "OT_FABRIC": 23, - "OT_WINDOW": 24, - "OT_ROOF": 25, - "OT_HORSE": 26, - "OT_STRUCTURE": 27, - "OT_HOUSING_TEXTURE": 28, - "OT_PLANT": 29 - } - }, - "m_sIcon": { - "type": "std::string", - "id": 9, - "offset": 208, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306259831 - }, - "m_equipRequirements": { - "type": "class RequirementList*", - "id": 10, - "offset": 280, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2762617226 - }, - "m_purchaseRequirements": { - "type": "class RequirementList*", - "id": 11, - "offset": 288, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3174641793 - }, - "m_equipEffects": { - "type": "class GameEffectInfo*", - "id": 12, - "offset": 296, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 836628351 - }, - "m_baseCost": { - "type": "float", - "id": 13, - "offset": 312, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1565352651 - }, - "m_creditsCost": { - "type": "float", - "id": 14, - "offset": 320, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 805514974 - }, - "m_avatarInfo": { - "type": "class AvatarItemInfoBase*", - "id": 15, - "offset": 328, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2627321299 - }, - "m_avatarFlags": { - "type": "std::string", - "id": 16, - "offset": 336, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2347762759 - }, - "m_itemLimit": { - "type": "int", - "id": 17, - "offset": 316, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1799746856 - }, - "m_holidayFlag": { - "type": "std::string", - "id": 18, - "offset": 352, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2994795359 - }, - "m_itemSetBonusTemplateID": { - "type": "unsigned int", - "id": 19, - "offset": 384, - "flags": 33554439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1316835672 - }, - "m_numPrimaryColors": { - "type": "int", - "id": 20, - "offset": 428, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 981103872 - }, - "m_numSecondaryColors": { - "type": "int", - "id": 21, - "offset": 432, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1310416868 - }, - "m_numPatterns": { - "type": "int", - "id": 22, - "offset": 436, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 953162171 - }, - "m_school": { - "type": "std::string", - "id": 23, - "offset": 392, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2438566051 - }, - "m_arenaPointCost": { - "type": "int", - "id": 24, - "offset": 440, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1819621796 - }, - "m_pvpCurrencyCost": { - "type": "int", - "id": 25, - "offset": 444, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 645595444 - }, - "m_pvpTourneyCurrencyCost": { - "type": "int", - "id": 26, - "offset": 448, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 517874954 - }, - "m_rank": { - "type": "int", - "id": 27, - "offset": 424, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 219803942 - }, - "m_boyIconIndex": { - "type": "int", - "id": 28, - "offset": 452, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 802140453 - }, - "m_girlIconIndex": { - "type": "int", - "id": 29, - "offset": 456, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 832706793 - }, - "m_leashOffsetOverride": { - "type": "class SharedPointer", - "id": 30, - "offset": 464, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1692586788 - }, - "m_rarity": { - "type": "enum RarityType", - "id": 31, - "offset": 460, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2253792108, - "enum_options": { - "RT_COMMON": 0, - "RT_UNCOMMON": 1, - "RT_RARE": 2, - "RT_ULTRARARE": 3, - "RT_EPIC": 4 - } - }, - "m_goldAmount": { - "type": "int", - "id": 32, - "offset": 480, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 754429876 - }, - "m_nif": { - "type": "std::string", - "id": 33, - "offset": 488, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1764743064 - } - } - }, - "1936783486": { - "name": "class SG_GameActionClient_PlayEffect", - "bases": [ - "SG_GameAction_PlayEffect", - "SG_GameAction", - "PropertyClass" - ], - "hash": 1936783486, - "properties": { - "m_target": { - "type": "enum SG_GameAction::SG_Target", - "id": 0, - "offset": 72, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1166870973, - "enum_options": { - "Target_Ball": 0, - "Target_Self": 1, - "Target_Connections": 2, - "__DEFAULT": "Target_Ball" - } - }, - "m_graphicArguments": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1656480079 - }, - "m_fMinimumTime": { - "type": "float", - "id": 2, - "offset": 144, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1516804616 - }, - "m_bDisplaysScore": { - "type": "bool", - "id": 3, - "offset": 148, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 722455866 - }, - "m_bPlaysPointsSounds": { - "type": "bool", - "id": 4, - "offset": 149, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 717919607 - } - } - }, - "1936326215": { - "name": "class RaidTeleportBehaviorTemplate*", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 1936326215, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - }, - "m_range": { - "type": "float", - "id": 1, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 898449636 - }, - "m_playerCount": { - "type": "int", - "id": 2, - "offset": 124, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 732802992 - }, - "m_zoneList": { - "type": "std::string", - "id": 3, - "offset": 128, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2171104787 - }, - "m_zoneTeleportLocation": { - "type": "std::string", - "id": 4, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3345769311 + "hash": 1732162479 }, - "m_enabledSeconds": { + "m_eggColor": { "type": "int", - "id": 5, - "offset": 184, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2014197012 - } - } - }, - "370732825": { - "name": "class SharedPointer", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 370732825, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - }, - "m_fAcceleration": { - "type": "float", - "id": 1, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1644159847, - "enum_options": { - "__DEFAULT": 600 - } - }, - "m_fDeceleration": { - "type": "float", - "id": 2, - "offset": 124, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2140366348, - "enum_options": { - "__DEFAULT": 600 - } - }, - "m_fVelocityDecay": { - "type": "float", - "id": 3, - "offset": 128, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 441764242, - "enum_options": { - "__DEFAULT": 0 - } - }, - "m_fWalkSpeed": { - "type": "float", - "id": 4, - "offset": 132, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1673729917, - "enum_options": { - "__DEFAULT": 125 - } - }, - "m_fRunSpeed": { - "type": "float", - "id": 5, - "offset": 136, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2230193347, - "enum_options": { - "__DEFAULT": 600 - } - }, - "m_fFlySpeed": { - "type": "float", - "id": 6, - "offset": 140, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1454681689, - "enum_options": { - "__DEFAULT": 1000 - } - }, - "m_fSwimSpeed": { - "type": "float", "id": 7, - "offset": 144, + "offset": 208, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2100640206, - "enum_options": { - "__DEFAULT": 300 - } + "hash": 1279450220 }, - "m_fFallSpeed": { + "m_fScale": { "type": "float", "id": 8, - "offset": 148, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 701808397, - "enum_options": { - "__DEFAULT": 100 - } - }, - "m_fYawRate": { - "type": "float", - "id": 9, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2111024186, - "enum_options": { - "__DEFAULT": "2.5" - } - }, - "m_fFallHeight": { - "type": "float", - "id": 10, - "offset": 156, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 499668597, - "enum_options": { - "__DEFAULT": 50 - } - }, - "m_fJumpVelocity": { - "type": "float", - "id": 11, - "offset": 160, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1243756264, - "enum_options": { - "__DEFAULT": 500 - } - }, - "m_AnimationList": { - "type": "struct MoveStateAnimation", - "id": 12, - "offset": 168, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 438791160 - } - } - }, - "1936315975": { - "name": "class RaidTeleportBehaviorTemplate", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 1936315975, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - }, - "m_range": { - "type": "float", - "id": 1, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 898449636 - }, - "m_playerCount": { - "type": "int", - "id": 2, - "offset": 124, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 732802992 - }, - "m_zoneList": { - "type": "std::string", - "id": 3, - "offset": 128, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2171104787 - }, - "m_zoneTeleportLocation": { - "type": "std::string", - "id": 4, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3345769311 - }, - "m_enabledSeconds": { - "type": "int", - "id": 5, - "offset": 184, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2014197012 - } - } - }, - "770633019": { - "name": "class FurnitureEssenceLootInfo", - "bases": [ - "ItemLootInfo", - "LootInfo", - "LootInfoBase", - "PropertyClass" - ], - "hash": 770633019, - "properties": { - "m_lootType": { - "type": "enum LootInfo::LOOT_TYPE", - "id": 0, - "offset": 72, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1591891442, - "enum_options": { - "LOOT_TYPE_NONE": 0, - "LOOT_TYPE_GOLD": 1, - "LOOT_TYPE_MANA": 2, - "LOOT_TYPE_ITEM": 3, - "LOOT_TYPE_TREASURE_CARD": 4, - "LOOT_TYPE_MAGIC_XP": 5, - "LOOT_TYPE_ADD_SPELL": 6, - "LOOT_TYPE_MAX_HEALTH": 7, - "LOOT_TYPE_MAX_GOLD": 8, - "LOOT_TYPE_MAX_MANA": 9, - "LOOT_TYPE_MAX_POTION": 10, - "LOOT_TYPE_TRAINING_POINTS": 11, - "LOOT_TYPE_RECIPE": 12, - "LOOT_TYPE_CRAFTING_SLOT": 13, - "LOOT_TYPE_REAGENT": 14, - "LOOT_TYPE_PETSNACK": 15, - "LOOT_TYPE_GARDENING_XP": 16, - "LOOT_TYPE_PET_XP": 17, - "LOOT_TYPE_TREASURE_TABLE": 18, - "LOOT_TYPE_ARENA_POINTS": 19, - "LOOT_TYPE_ARENA_BONUS_POINTS": 20, - "LOOT_TYPE_GROUP": 21, - "LOOT_TYPE_FISHING_XP": 22, - "LOOT_TYPE_EVENT_CURRENCY_1": 24, - "LOOT_TYPE_EVENT_CURRENCY_2": 25, - "LOOT_TYPE_PVP_CURRENCY": 26, - "LOOT_TYPE_PVP_CURRENCY_BONUS": 27, - "LOOT_TYPE_PVP_TOURNEY_CURRENCY": 28, - "LOOT_TYPE_PVP_TOURNEY_CURRENCY_BONUS": 29, - "LOOT_TYPE_FURNITURE_ESSENCE": 30 - } - }, - "m_itemID": { - "type": "gid", - "id": 1, - "offset": 88, - "flags": 33554463, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 569545460 - }, - "m_numItems": { - "type": "int", - "id": 2, - "offset": 96, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1588646284 - } - } - }, - "768421762": { - "name": "class SharedPointer", - "bases": [ - "CinematicAction", - "PropertyClass" - ], - "hash": 768421762, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_interpDuration": { - "type": "float", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237711951 - } - } - }, - "768016556": { - "name": "class FishingInfo*", - "bases": [ - "PropertyClass" - ], - "hash": 768016556, - "properties": { - "m_bodyOfWaterList": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 457750787 - } - } - }, - "371196985": { - "name": "class SharedPointer", - "bases": [ - "ServiceOptionBase", - "PropertyClass" - ], - "hash": 371196985, - "properties": { - "m_serviceName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2206028813 - }, - "m_iconKey": { - "type": "std::string", - "id": 1, - "offset": 168, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2457138637 - }, - "m_displayKey": { - "type": "std::string", - "id": 2, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3023276954 - }, - "m_serviceIndex": { - "type": "unsigned int", - "id": 3, - "offset": 204, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2103126710 - }, - "m_forceInteract": { - "type": "bool", - "id": 4, - "offset": 200, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1705789564 - } - } - }, - "1936649631": { - "name": "class PrivateEquippedJewelInfo", - "bases": [ - "PropertyClass" - ], - "hash": 1936649631, - "properties": { - "m_infoPairs": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1168115310 - } - } - }, - "767808974": { - "name": "class EffectCinematicAction", - "bases": [ - "BaseEffectCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 767808974, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_effectRel": { - "type": "enum BaseEffectCinematicAction::kEffectRelative", - "id": 1, - "offset": 80, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2978921287, - "enum_options": { - "kNone": 0, - "kSigil": 1, - "kTarget": 2, - "kSource": 3, - "kActor": 4 - } - }, - "m_graphic": { - "type": "std::string", - "id": 2, - "offset": 88, - "flags": 131079, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2592217913 - }, - "m_bUseOrientationOverride": { - "type": "bool", - "id": 3, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1088002894 - }, - "m_overrideOrientation": { - "type": "class Vector3D", - "id": 4, - "offset": 124, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3267199758 - }, - "m_bUseLocationOverride": { - "type": "bool", - "id": 5, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1767170875 - }, - "m_overrideLocation": { - "type": "class Vector3D", - "id": 6, - "offset": 108, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3776417691 - } - } - }, - "370924129": { - "name": "class SharedPointer", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 370924129, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - }, - "m_initialRandom": { - "type": "bool", - "id": 1, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1171693694, - "enum_options": { - "__DEFAULT": 1 - } - }, - "m_turnRandom": { - "type": "bool", - "id": 2, - "offset": 121, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1320199517, - "enum_options": { - "__DEFAULT": 1 - } - }, - "m_trackPlayer": { - "type": "bool", - "id": 3, - "offset": 122, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 222941845, - "enum_options": { - "__DEFAULT": 1 - } - }, - "m_shy": { - "type": "bool", - "id": 4, - "offset": 123, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 269530055 - }, - "m_speed": { - "type": "float", - "id": 5, - "offset": 124, + "offset": 212, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 900164744, + "hash": 503137701, "enum_options": { - "__DEFAULT": "400.0" + "__DEFAULT": "1.0" } }, - "m_nextStageTemplateID": { - "type": "unsigned int", - "id": 6, - "offset": 128, - "flags": 33554439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 953331817 - }, - "m_nextStageRate": { - "type": "std::string", - "id": 7, - "offset": 136, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2891393594 - }, - "m_needsWaterMinRate": { - "type": "std::string", - "id": 8, - "offset": 168, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2764655453 - }, - "m_needsSunMinRate": { + "m_sHatchRate": { "type": "std::string", "id": 9, - "offset": 232, + "offset": 216, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1962535184 + "hash": 1870311714 }, - "m_needsPollinationMinRate": { - "type": "std::string", + "m_wowFactor": { + "type": "unsigned int", "id": 10, - "offset": 296, + "offset": 248, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1849944227 + "hash": 1232905609 }, - "m_needsWaterMaxRate": { - "type": "std::string", + "m_flyingOffset": { + "type": "float", "id": 11, - "offset": 200, + "offset": 252, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2463431519 + "hash": 1899002567 }, - "m_needsSunMaxRate": { - "type": "std::string", + "m_maxStats": { + "type": "class PetStat", "id": 12, - "offset": 264, + "offset": 256, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 1661311250 + "hash": 1846363080 }, - "m_needsPollinationMaxRate": { - "type": "std::string", + "m_startStats": { + "type": "class PetStat", "id": 13, - "offset": 328, + "offset": 272, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 1548720293 + "hash": 2360362512 }, - "m_needsMagicMinRate": { + "m_talents": { "type": "std::string", "id": 14, - "offset": 360, - "flags": 7, - "container": "Static", - "dynamic": false, + "offset": 288, + "flags": 268435463, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 2161414587 + "hash": 1548787382, + "enum_options": { + "__BASECLASS": "PetTalentTemplate" + } }, - "m_needsMagicMaxRate": { + "m_derbyTalents": { "type": "std::string", "id": 15, - "offset": 392, - "flags": 7, - "container": "Static", - "dynamic": false, + "offset": 320, + "flags": 268435463, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 1860190653 + "hash": 2359224108, + "enum_options": { + "__BASECLASS": "PetDerbyTalentTemplate" + } }, - "m_needsMusicMinRate": { - "type": "std::string", + "m_Levels": { + "type": "class PetLevelInfo", "id": 16, - "offset": 424, + "offset": 304, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 2626783323 + "hash": 3555902999 }, - "m_needsMusicMaxRate": { - "type": "std::string", + "m_conversionStats": { + "type": "class PetStat", "id": 17, - "offset": 456, + "offset": 336, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 2325559389 + "hash": 2003448008 }, - "m_plantStage": { - "type": "enum PlantStage", + "m_conversionTalents": { + "type": "std::string", "id": 18, - "offset": 488, - "flags": 2097159, - "container": "Static", - "dynamic": false, + "offset": 352, + "flags": 268435463, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 2664847960, + "hash": 2717498332, "enum_options": { - "PS_Seedling": 0, - "PS_Young": 1, - "PS_Mature": 2, - "PS_Angel": 3, - "PS_Wilting": 4, - "PS_Dead": 5 + "__BASECLASS": "PetTalentTemplate" } }, - "m_wiltTemplateID": { - "type": "unsigned int", + "m_conversionLevel": { + "type": "unsigned char", "id": 19, - "offset": 492, - "flags": 33554439, + "offset": 368, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1395185014 + "hash": 941047662 }, - "m_deadTemplateID": { + "m_conversionXP": { "type": "unsigned int", "id": 20, - "offset": 496, - "flags": 33554439, + "offset": 372, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1067979076 + "hash": 2284347003 }, - "m_youngTemplateID": { - "type": "unsigned int", + "m_favoriteSnackCategories": { + "type": "std::string", "id": 21, - "offset": 500, - "flags": 33554439, - "container": "Static", - "dynamic": false, + "offset": 376, + "flags": 7, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 2019241800 + "hash": 3317721809 }, - "m_needsWaterWiltRate": { + "m_jumpSound": { "type": "std::string", "id": 22, - "offset": 512, - "flags": 7, + "offset": 392, + "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3446381113 + "hash": 2493302912 }, - "m_needsSunWiltRate": { + "m_duckSound": { "type": "std::string", "id": 23, - "offset": 544, - "flags": 7, + "offset": 424, + "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2746216012 + "hash": 3426875339 }, - "m_needsPollinationWiltRate": { - "type": "std::string", + "m_morphingExceptions": { + "type": "class MorphingException", "id": 24, - "offset": 576, + "offset": 456, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 3325681727 + "hash": 2719456886 }, - "m_needsMagicWiltRate": { - "type": "std::string", + "m_hatchesAsID": { + "type": "gid", "id": 25, - "offset": 608, - "flags": 7, + "offset": 472, + "flags": 33554439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2866785367 + "hash": 2010028089 }, - "m_needsMusicWiltRate": { + "m_guaranteedTalents": { "type": "std::string", "id": 26, - "offset": 640, - "flags": 7, - "container": "Static", - "dynamic": false, + "offset": 480, + "flags": 268435463, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 3191568119 + "hash": 2876819510, + "enum_options": { + "__BASECLASS": "PetTalentTemplate" + } }, - "m_harvestMinRate": { + "m_guaranteedDerbyTalents": { "type": "std::string", "id": 27, - "offset": 672, - "flags": 7, - "container": "Static", - "dynamic": false, + "offset": 496, + "flags": 268435463, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 1769440136 + "hash": 1658650796, + "enum_options": { + "__BASECLASS": "PetDerbyTalentTemplate" + } }, - "m_harvestMaxRate": { - "type": "std::string", + "m_hideName": { + "type": "bool", "id": 28, - "offset": 704, + "offset": 516, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3615699850 + "hash": 645410894 }, - "m_pestList": { - "type": "class PestEntry", + "m_houseGuestOpacity": { + "type": "float", "id": 29, - "offset": 736, + "offset": 520, "flags": 7, - "container": "Vector", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 3674788815 + "hash": 805760636, + "enum_options": { + "__DEFAULT": "1.0" + } }, - "m_pestUpdateRate": { - "type": "std::string", + "m_hatchmakingInitalCooldownTime": { + "type": "unsigned int", "id": 30, - "offset": 760, + "offset": 524, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1636194246 + "hash": 724960897, + "enum_options": { + "__DEFAULT": 0 + } }, - "m_requiresEnchantedSoil": { - "type": "bool", + "m_hatchmakingMaximumHatches": { + "type": "unsigned int", "id": 31, - "offset": 792, + "offset": 528, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1443901316 + "hash": 1142581578, + "enum_options": { + "__DEFAULT": 0 + } }, - "m_rewardsRating": { - "type": "int", + "m_excludeFromHatchOfTheDay": { + "type": "bool", "id": 32, - "offset": 796, + "offset": 532, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1304655351 + "hash": 1127631469, + "enum_options": { + "__DEFAULT": 0 + } }, - "m_challengeRating": { - "type": "int", + "m_exclusivePet": { + "type": "bool", "id": 33, - "offset": 800, + "offset": 533, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 310016034 + "hash": 1328949460, + "enum_options": { + "__DEFAULT": 0 + } }, - "m_harvestXP": { - "type": "int", + "m_animationEventList": { + "type": "class SharedPointer", "id": 34, - "offset": 804, + "offset": 536, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 1835284159 - }, - "m_requiresEnrichedSoil": { - "type": "bool", - "id": 35, - "offset": 793, + "pointer": true, + "hash": 2858101335 + } + } + }, + "1112934182": { + "name": "class CastleMagicSpellTemplate*", + "bases": [ + "SpellTemplate", + "CoreTemplate", + "PropertyClass" + ], + "hash": 1112934182, + "properties": { + "m_behaviors": { + "type": "class BehaviorTemplate*", + "id": 0, + "offset": 72, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "Vector", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 69513596 + "pointer": true, + "hash": 1197808594 }, - "m_fidgetDuringHappy": { - "type": "bool", - "id": 36, - "offset": 808, + "m_name": { + "type": "std::string", + "id": 1, + "offset": 96, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 302222161 + "hash": 1717359772 }, - "m_fidgetSoundEffectName": { + "m_description": { "type": "std::string", - "id": 37, - "offset": 816, - "flags": 7, + "id": 2, + "offset": 168, + "flags": 8388615, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2949012741 + "hash": 1649374815 }, - "m_fidgetSoundEffectGain": { - "type": "float", - "id": 38, - "offset": 848, - "flags": 7, + "m_advancedDescription": { + "type": "std::string", + "id": 3, + "offset": 200, + "flags": 8388615, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1541262591, - "enum_options": { - "__DEFAULT": "1.0" - } + "hash": 3465713013 }, - "m_angelEffectTemplateID": { - "type": "unsigned int", - "id": 39, - "offset": 852, - "flags": 33554439, + "m_displayName": { + "type": "std::string", + "id": 4, + "offset": 136, + "flags": 8388615, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 907020010 + "hash": 2446900370 }, - "m_seedSize": { - "type": "enum SeedSize", - "id": 40, - "offset": 856, - "flags": 2097159, + "m_spellBase": { + "type": "std::string", + "id": 5, + "offset": 248, + "flags": 268435463, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1971854021, + "hash": 2688054198, "enum_options": { - "SS_Small": 0, - "SS_Medium": 1, - "SS_Large": 2, - "__DEFAULT": "SS_Medium" + "__BASECLASS": "CinematicTemplate" } }, - "m_seedLimit": { - "type": "int", - "id": 41, - "offset": 860, + "m_effects": { + "type": "class SharedPointer", + "id": 6, + "offset": 280, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "Vector", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 189298778 + "pointer": true, + "hash": 370726379 }, - "m_gardeningLevelRequirement": { - "type": "int", - "id": 42, - "offset": 864, + "m_sMagicSchoolName": { + "type": "std::string", + "id": 7, + "offset": 312, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 52309522 + "hash": 2035693400 }, - "m_maximumNumberOfHarvests": { - "type": "unsigned int", - "id": 43, - "offset": 896, + "m_sTypeName": { + "type": "std::string", + "id": 8, + "offset": 352, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1889816953 + "hash": 3580785905 }, - "m_likesDislikesList": { - "type": "class LikesDislikesEntry", - "id": 44, - "offset": 872, + "m_trainingCost": { + "type": "int", + "id": 9, + "offset": 384, "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2284921934 - }, - "m_matureTemplateID": { - "type": "unsigned int", - "id": 45, - "offset": 504, - "flags": 33554439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1960067908 + "hash": 982588239 }, - "m_plantRank": { + "m_accuracy": { "type": "int", - "id": 46, - "offset": 900, + "id": 10, + "offset": 388, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 164732869 - } - } - }, - "1939506326": { - "name": "class SharedPointer", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 1939506326, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, + "hash": 1636315493 + }, + "m_baseCost": { + "type": "int", + "id": 11, + "offset": 232, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3130754092 - } - } - }, - "768042787": { - "name": "class SpellIngredient*", - "bases": [ - "PropertyClass" - ], - "hash": 768042787, - "properties": { - "m_adjective": { - "type": "std::string", - "id": 0, - "offset": 72, + "hash": 1475151502 + }, + "m_creditsCost": { + "type": "int", + "id": 12, + "offset": 236, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3429518154 - } - } - }, - "372947565": { - "name": "class SharedPointer", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 372947565, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, + "hash": 715313825 + }, + "m_pvpCurrencyCost": { + "type": "int", + "id": 13, + "offset": 240, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3130754092 + "hash": 645595444 }, - "m_pestRank": { + "m_pvpTourneyCurrencyCost": { "type": "int", - "id": 1, - "offset": 120, + "id": 14, + "offset": 244, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2022116066 + "hash": 517874954 }, - "m_wiltMinRate": { + "m_boosterPackIcon": { "type": "std::string", - "id": 2, - "offset": 128, - "flags": 7, + "id": 15, + "offset": 496, + "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3102833515 + "hash": 3428653697 }, - "m_wiltMaxRate": { - "type": "std::string", - "id": 3, - "offset": 160, + "m_validTargetSpells": { + "type": "unsigned int", + "id": 16, + "offset": 392, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 2801609581 + "hash": 2355782967 }, - "m_goodPest": { + "m_PvP": { "type": "bool", - "id": 4, - "offset": 192, + "id": 17, + "offset": 408, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 564893944 + "hash": 269492361 }, - "m_useSizeAnimations": { + "m_PvE": { "type": "bool", - "id": 5, - "offset": 193, + "id": 18, + "offset": 409, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1095895662 + "hash": 269492350 }, - "m_providesWater": { + "m_noPvPEnchant": { "type": "bool", - "id": 6, - "offset": 194, + "id": 19, + "offset": 410, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1403713858 + "hash": 661581703 }, - "m_providesSun": { + "m_noPvEEnchant": { "type": "bool", - "id": 7, - "offset": 195, + "id": 20, + "offset": 411, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1942306581 + "hash": 10144220 }, - "m_providesPollination": { + "m_battlegroundsOnly": { "type": "bool", - "id": 8, - "offset": 196, + "id": 21, + "offset": 412, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 443775752 + "hash": 1244782419 }, - "m_providesMagic": { + "m_Treasure": { "type": "bool", - "id": 9, - "offset": 197, + "id": 22, + "offset": 413, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1391840608 + "hash": 1749096414 }, - "m_providesMusic": { + "m_noDiscard": { "type": "bool", - "id": 10, - "offset": 198, + "id": 23, + "offset": 414, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1392572416 - } - } - }, - "1939066320": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1939066320, - "properties": {} - }, - "768016596": { - "name": "class SharedPointer", - "bases": [ - "WizClientObjectItem", - "ClientObject", - "CoreObject", - "PropertyClass" - ], - "hash": 768016596, - "properties": { - "m_inactiveBehaviors": { - "type": "class SharedPointer", - "id": 0, - "offset": 224, - "flags": 31, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1850812559 - }, - "m_globalID.m_full": { - "type": "unsigned __int64", - "id": 1, - "offset": 72, - "flags": 16777247, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2312465444 - }, - "m_permID": { - "type": "unsigned __int64", - "id": 2, - "offset": 80, - "flags": 16777247, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1298909658 - }, - "m_location": { - "type": "class Vector3D", - "id": 3, - "offset": 168, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2239683611 - }, - "m_orientation": { - "type": "class Vector3D", - "id": 4, - "offset": 180, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2344058766 - }, - "m_fScale": { - "type": "float", - "id": 5, - "offset": 196, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 503137701 + "hash": 565749226 }, - "m_templateID.m_full": { - "type": "unsigned __int64", - "id": 6, - "offset": 96, - "flags": 31, + "m_leavesPlayWhenCast": { + "type": "bool", + "id": 24, + "offset": 532, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 633907631 + "hash": 698216294 }, - "m_debugName": { - "type": "std::string", - "id": 7, - "offset": 104, - "flags": 31, + "m_imageIndex": { + "type": "int", + "id": 25, + "offset": 416, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3553984419 + "hash": 1570500405 }, - "m_displayKey": { + "m_imageName": { "type": "std::string", - "id": 8, - "offset": 136, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3023276954 - }, - "m_zoneTagID": { - "type": "unsigned int", - "id": 9, - "offset": 344, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 965291410 - }, - "m_speedMultiplier": { - "type": "short", - "id": 10, - "offset": 192, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 123130076 - }, - "m_nMobileID": { - "type": "unsigned short", - "id": 11, - "offset": 194, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1054318939 - }, - "m_characterId": { - "type": "gid", - "id": 12, - "offset": 440, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 210498418 - }, - "m_primaryColor": { - "type": "int", - "id": 13, - "offset": 560, - "flags": 31, + "id": 26, + "offset": 424, + "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 900965981 + "hash": 2391520543 }, - "m_pattern": { - "type": "int", - "id": 14, - "offset": 564, - "flags": 31, + "m_cloaked": { + "type": "bool", + "id": 27, + "offset": 489, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1337683384 + "hash": 7349510 }, - "m_secondaryColor": { - "type": "int", - "id": 15, - "offset": 568, - "flags": 63, + "m_casterInvisible": { + "type": "bool", + "id": 28, + "offset": 490, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1616550081 + "hash": 310214650 }, - "m_displayID": { - "type": "gid", - "id": 16, + "m_adjectives": { + "type": "std::string", + "id": 29, "offset": 576, - "flags": 63, - "container": "Static", - "dynamic": false, + "flags": 7, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 1022427803 + "hash": 2967855037 }, - "m_itemFlags": { - "type": "unsigned int", - "id": 17, - "offset": 584, - "flags": 31, + "m_spellSourceType": { + "type": "enum SpellTemplate::kSpellSourceType", + "id": 30, + "offset": 528, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2004128457 + "hash": 156272727, + "enum_options": { + "kCaster": 0, + "kPet": 1, + "kShadowCreature": 2, + "kWeapon": 3, + "kEquipment": 4 + } }, - "m_quantity": { - "type": "int", - "id": 18, - "offset": 600, - "flags": 27, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 169215289 - } - } - }, - "372514795": { - "name": "class GraphicalPetSnack*", - "bases": [ - "GraphicalSpell", - "Spell", - "PropertyClass" - ], - "hash": 372514795, - "properties": { - "m_templateID": { - "type": "unsigned int", - "id": 0, - "offset": 128, - "flags": 31, + "m_cloakedName": { + "type": "std::string", + "id": 31, + "offset": 536, + "flags": 268435463, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1286746870 + "hash": 2846679215, + "enum_options": { + "__BASECLASS": "SpellTemplate" + } }, - "m_enchantment": { - "type": "unsigned int", - "id": 1, - "offset": 80, - "flags": 31, + "m_purchaseRequirements": { + "type": "class RequirementList*", + "id": 32, + "offset": 608, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 2217886818 + "pointer": true, + "hash": 3174641793 }, - "m_pipCost": { - "type": "class SharedPointer", - "id": 2, - "offset": 176, + "m_displayRequirements": { + "type": "class RequirementList*", + "id": 33, + "offset": 840, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": true, - "hash": 3605704820 + "hash": 3646782876 }, - "m_regularAdjust": { - "type": "int", - "id": 3, - "offset": 192, - "flags": 31, + "m_descriptionTrainer": { + "type": "std::string", + "id": 34, + "offset": 616, + "flags": 8388871, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1420453335 + "hash": 1756093908 }, - "m_magicSchoolID": { - "type": "unsigned int", - "id": 4, - "offset": 136, - "flags": 7, + "m_descriptionCombatHUD": { + "type": "std::string", + "id": 35, + "offset": 648, + "flags": 8388871, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 893146499 + "hash": 1631478006 }, - "m_accuracy": { - "type": "unsigned char", - "id": 5, - "offset": 132, + "m_displayIndex": { + "type": "int", + "id": 36, + "offset": 680, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2273914939 - }, - "m_treasureCard": { - "type": "bool", - "id": 6, - "offset": 197, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1764879128 + "hash": 1250551048 }, - "m_battleCard": { + "m_hiddenFromEffectsWindow": { "type": "bool", - "id": 7, - "offset": 198, - "flags": 31, + "id": 37, + "offset": 684, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1332843753 + "hash": 1832736331 }, - "m_itemCard": { + "m_ignoreCharms": { "type": "bool", - "id": 8, - "offset": 199, + "id": 38, + "offset": 685, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1683654300 + "hash": 1840075893 }, - "m_sideBoard": { + "m_alwaysFizzle": { "type": "bool", - "id": 9, - "offset": 200, + "id": 39, + "offset": 686, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1897838368 - }, - "m_spellID": { - "type": "unsigned int", - "id": 10, - "offset": 204, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1697483258 + "hash": 2030988856 }, - "m_leavesPlayWhenCastOverride": { - "type": "bool", - "id": 11, - "offset": 216, - "flags": 31, + "m_spellCategory": { + "type": "std::string", + "id": 40, + "offset": 688, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 874407398 + "hash": 2472376729 }, - "m_cloaked": { + "m_showPolymorphedName": { "type": "bool", - "id": 12, - "offset": 196, + "id": 41, + "offset": 720, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 7349510 + "hash": 2097929096 }, - "m_enchantmentSpellIsItemCard": { + "m_skipTruncation": { "type": "bool", - "id": 13, - "offset": 76, - "flags": 31, + "id": 42, + "offset": 721, + "flags": 263, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 531590701 + "hash": 1838335249 }, - "m_premutationSpellID": { + "m_maxCopies": { "type": "unsigned int", - "id": 14, - "offset": 112, - "flags": 31, + "id": 43, + "offset": 724, + "flags": 263, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1530256370 + "hash": 403022326 }, - "m_enchantedThisCombat": { - "type": "bool", - "id": 15, - "offset": 77, - "flags": 31, + "m_levelRestriction": { + "type": "int", + "id": 44, + "offset": 728, + "flags": 263, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1895738923 - }, - "m_paramOverrides": { - "type": "class SharedPointer", - "id": 16, - "offset": 224, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2061635599 - }, - "m_subEffectMeta": { - "type": "class SharedPointer", - "id": 17, - "offset": 240, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1944101106 + "hash": 176502472 }, "m_delayEnchantment": { "type": "bool", - "id": 18, - "offset": 257, + "id": 45, + "offset": 732, "flags": 287, "container": "Static", "dynamic": false, @@ -457233,21 +173988,10 @@ "pointer": false, "hash": 191336919 }, - "m_PvE": { - "type": "bool", - "id": 19, - "offset": 264, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 269492350 - }, "m_delayEnchantmentOrder": { "type": "enum SpellEffect::kDelayOrder", - "id": 20, - "offset": 72, + "id": 46, + "offset": 736, "flags": 287, "container": "Static", "dynamic": false, @@ -457260,755 +174004,734 @@ "SpellEffect::kSecond": 2 } }, - "m_roundAddedTC": { - "type": "int", - "id": 21, - "offset": 260, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 112365451 - }, - "m_secondarySchoolID": { - "type": "unsigned int", - "id": 22, - "offset": 304, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2081206026 - } - } - }, - "1937961554": { - "name": "class SharedPointer", - "bases": [ - "PositionalSoundBehaviorTemplate", - "SoundBehaviorTemplate", - "AreaBehaviorTemplate", - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 1937961554, - "properties": { - "m_behaviorName": { + "m_previousSpellName": { "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, + "id": 47, + "offset": 744, + "flags": 268435463, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3130754092 + "hash": 2903322585, + "enum_options": { + "__BASECLASS": "SpellTemplate" + } }, - "m_radius": { - "type": "float", - "id": 1, - "offset": 120, - "flags": 7, + "m_cardFront": { + "type": "std::string", + "id": 48, + "offset": 456, + "flags": 131359, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 989410271 + "hash": 3557598526 }, - "m_category": { - "type": "enum AudioCategory", - "id": 2, - "offset": 124, - "flags": 2097159, + "m_useGloss": { + "type": "bool", + "id": 49, + "offset": 488, + "flags": 287, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2951251982, - "enum_options": { - "AudioCategory_Irrelevent": 0, - "AudioCategory_Accoustic": 1, - "AudioCategory_Noise": 2, - "AudioCategory_Music": 3, - "AudioCategory_MusicAtSFXVolume": 4, - "AudioCategory_Dialog": 5, - "AudioCategory_UI": 6, - "AudioCategory_NoiseAtMusicVolume": 7 - } + "hash": 668817544 }, - "m_exclusive": { + "m_ignoreDispel": { "type": "bool", - "id": 3, - "offset": 128, - "flags": 7, + "id": 50, + "offset": 776, + "flags": 287, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 824383403 + "hash": 1881041624 }, - "m_active": { + "m_backRowFriendly": { "type": "bool", - "id": 4, - "offset": 129, - "flags": 7, + "id": 51, + "offset": 777, + "flags": 287, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 239335471 + "hash": 501584377 }, - "m_enableReqs": { - "type": "class SharedPointer", - "id": 5, - "offset": 136, - "flags": 263, + "m_spellRank": { + "type": "class SharedPointer", + "id": 52, + "offset": 784, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": true, - "hash": 3158020443 + "hash": 3152361374 }, - "m_trackFilenameList": { + "m_secondarySchoolName": { "type": "std::string", - "id": 6, - "offset": 152, + "id": 53, + "offset": 800, "flags": 7, - "container": "Vector", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 2531081709 - }, - "m_playList": { - "type": "class PlayListEntry*", - "id": 7, - "offset": 176, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 3907873161 + "hash": 1803268236 }, - "m_priority": { - "type": "int", - "id": 8, - "offset": 208, + "m_spellFusion": { + "type": "unsigned int", + "id": 54, + "offset": 836, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1235205852 + "hash": 1658928321 }, - "m_volume": { - "type": "float", - "id": 9, - "offset": 200, + "m_requiredSchoolName": { + "type": "std::string", + "id": 55, + "offset": 848, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1162855023 + "hash": 3576058981 }, - "m_loopCount": { - "type": "int", - "id": 10, - "offset": 204, - "flags": 7, + "m_castleMagicSpellType": { + "type": "enum CastleMagicSpellTemplate::CastleMagicSpellType", + "id": 56, + "offset": 880, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 865634717 + "hash": 1857887320, + "enum_options": { + "CM_Action": 0, + "CM_Effect": 1, + "CM_Utility": 2, + "CM_Logic": 3 + } }, - "m_progression": { - "type": "enum PlayList::Progression", - "id": 11, - "offset": 220, + "m_castleMagicSpellEffect": { + "type": "enum CastleMagicSpellTemplate::CastleMagicSpellEffect", + "id": 57, + "offset": 884, "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3279400238, + "hash": 1408413012, "enum_options": { - "Sequence": 0, - "Random": 1, - "SequenceOnceOnly": 2, - "RandomNoRepeat": 3 + "CM_None": 0, + "CM_MakeInvisible": 1, + "CM_MakeVisible": 2, + "CM_PlaySpellEffect": 3, + "CM_PlaySoundEffect": 4, + "CM_RestoreObject": 5, + "CM_MoveObject": 6, + "CM_TurnObject": 7, + "CM_ScaleObject": 8, + "CM_TeleportObject": 9, + "CM_MoveObjectToMe": 10, + "CM_MoveTowardMe": 11, + "CM_PlayMusicScroll": 12, + "CM_MoveObjectForward": 13, + "CM_MoveObjectBackward": 14, + "CM_TurnLikeMe": 15, + "CM_TurnTowardMe": 16, + "CM_LogicEffect": 17, + "CM_StartTimer": 18, + "CM_StopTimer": 19, + "CM_ActivateReflector": 20, + "CM_CameraShake": 21, + "CM_SetCounter": 22, + "CM_SetBrazier": 23, + "CM_UseItem": 24, + "CM_Solidify": 25, + "CM_PetControl": 26, + "CM_MountControl": 27, + "CM_CameraControl": 28, + "CM_TeleportPlayer": 29, + "CM_PVPSigilControl": 30, + "CM_TeleportAllPlayers": 31, + "CM_MakeTranslucent": 32, + "CM_MakeOpaque": 33, + "CM_SilenceItem": 34, + "CM_MoveFaster": 35, + "CM_PVPDuelModifier": 36, + "CM_StopMovement": 37, + "CM_UnsilenceItem": 38, + "CM_PlayInstrumentLoop": 39, + "CM_StopMusic": 40, + "CM_PlayMusicPlayer": 41, + "CM_PlayAsPetControl": 42 } }, - "m_progressMin": { - "type": "float", - "id": 12, - "offset": 212, - "flags": 7, + "m_animationKFM": { + "type": "std::string", + "id": 58, + "offset": 888, + "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1497550192 + "hash": 2466280761 }, - "m_progressMax": { - "type": "float", - "id": 13, - "offset": 216, + "m_animationSequence": { + "type": "std::string", + "id": 59, + "offset": 920, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1497549938 + "hash": 2493126132 }, - "m_audioFilterSet": { - "type": "unsigned int", - "id": 14, - "offset": 224, - "flags": 33554439, + "m_effectSchool": { + "type": "std::string", + "id": 60, + "offset": 952, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 831339825 - }, - "m_animationNameFilter": { - "type": "std::string", - "id": 15, - "offset": 232, + "hash": 2688245616 + } + } + }, + "703599744": { + "name": "class SharedPointer", + "bases": [ + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 703599744, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2292854242 + "hash": 2237098605 }, - "m_functionallabel": { + "m_actor": { "type": "std::string", - "id": 16, - "offset": 264, + "id": 1, + "offset": 80, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3589331278 - }, - "m_innerRadius": { - "type": "float", - "id": 17, - "offset": 296, + "hash": 2285866132 + } + } + }, + "1975678991": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1975678991, + "properties": { + "m_token": { + "type": "std::string", + "id": 0, + "offset": 72, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 686816091 + "hash": 2308819740 }, - "m_inverted": { - "type": "bool", - "id": 18, - "offset": 300, - "flags": 7, + "m_icon": { + "type": "std::wstring", + "id": 1, + "offset": 104, + "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1034821044 + "hash": 1513167681 }, - "m_fInsideAngle": { - "type": "float", - "id": 19, - "offset": 304, - "flags": 7, + "m_text": { + "type": "std::wstring", + "id": 2, + "offset": 136, + "flags": 8388615, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1114383840 + "hash": 1513565469 }, - "m_fOutsideAngle": { - "type": "float", - "id": 20, - "offset": 308, - "flags": 7, + "m_tooltip": { + "type": "std::wstring", + "id": 3, + "offset": 168, + "flags": 8388615, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1627152289 + "hash": 1896483715 }, - "m_fOutsideVolume": { - "type": "float", - "id": 21, - "offset": 312, - "flags": 7, + "m_color": { + "type": "std::wstring", + "id": 4, + "offset": 200, + "flags": 262151, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 90369618 + "hash": 2084645847 }, - "m_fRangeScale": { - "type": "float", - "id": 22, - "offset": 316, + "m_colorOverride": { + "type": "bool", + "id": 5, + "offset": 232, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1749294034 + "hash": 1098799506 }, - "m_fAttenuationFactor": { - "type": "float", - "id": 23, - "offset": 320, + "m_wide": { + "type": "int", + "id": 6, + "offset": 236, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 273292776 + "hash": 219992003 }, - "m_eAttenuationType": { - "type": "enum PositionInfoAttenuationType", - "id": 24, - "offset": 324, + "m_useCase": { + "type": "enum MadlibIconUseCase", + "id": 7, + "offset": 240, "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2427193304, + "hash": 3032762361, "enum_options": { - "Standard": 0, - "Unit Range Power": 1 + "MIUC_Default": 0, + "MIUC_SpellDescription": 1, + "MIUC_AdvancedSpellDescription": 2, + "MIUC_CombatMessage": 3, + "MIUC_CustomCombatMessage": 4, + "MIUC_DescriptionCombatHUD": 5 } } } }, - "372254572": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 372254572, - "properties": { - "m_dailyQuestList": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 3219359410 - } - } - }, - "768045859": { - "name": "class SpellIngredient", - "bases": [ - "PropertyClass" - ], - "hash": 768045859, - "properties": { - "m_adjective": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3429518154 - } - } - }, - "1939150897": { - "name": "class PetGameInfo*", + "1543936172": { + "name": "class AlchemyBehavior", "bases": [ + "BehaviorInstance", "PropertyClass" ], - "hash": 1939150897, + "hash": 1543936172, "properties": { - "m_isWebGame": { - "type": "bool", + "m_behaviorTemplateNameID": { + "type": "unsigned int", "id": 0, - "offset": 72, - "flags": 7, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 944547943 + "hash": 223437287 }, - "m_name": { - "type": "std::string", + "m_recipeBag": { + "type": "class RecipeBag", "id": 1, - "offset": 160, - "flags": 7, + "offset": 112, + "flags": 27, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1717359772 + "hash": 2218166892 }, - "m_energyCosts": { - "type": "class SharedPointer", + "m_craftingSlotsBag": { + "type": "class ObjectBag", "id": 2, - "offset": 192, - "flags": 7, - "container": "List", - "dynamic": true, + "offset": 320, + "flags": 27, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3378376555 + "pointer": false, + "hash": 2324986502 }, - "m_trackChoices": { - "type": "class SharedPointer", + "m_reagentBag": { + "type": "class ObjectBag", "id": 3, - "offset": 208, - "flags": 7, - "container": "Vector", - "dynamic": true, + "offset": 512, + "flags": 27, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1548152913 + "pointer": false, + "hash": 2459563753 }, - "m_gameIcon": { - "type": "std::string", + "m_bonusCrafting": { + "type": "int", "id": 4, - "offset": 80, - "flags": 7, + "offset": 704, + "flags": 59, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3229574910 + "hash": 943921711 }, - "m_trackIcons": { - "type": "std::string", + "m_timerMultiplier": { + "type": "float", "id": 5, - "offset": 112, - "flags": 7, - "container": "Vector", - "dynamic": true, + "offset": 708, + "flags": 27, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 2211683916 + "hash": 1373659455 }, - "m_trackToolTips": { - "type": "std::string", + "m_maxReagentStack": { + "type": "int", "id": 6, - "offset": 136, - "flags": 7, - "container": "Vector", + "offset": 712, + "flags": 27, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1121296540 + }, + "m_equippedRecipes": { + "type": "unsigned int", + "id": 7, + "offset": 720, + "flags": 27, + "container": "List", "dynamic": true, "singleton": false, "pointer": false, - "hash": 1898819214 + "hash": 1981226997 + }, + "m_equippedRecipeData": { + "type": "std::string", + "id": 8, + "offset": 736, + "flags": 551, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2773803466 } } }, - "372643830": { - "name": "class NPCTrainingWindow*", + "701230857": { + "name": "class WizGameObjectTemplate*", "bases": [ - "Window", + "GameObjectTemplate", + "CoreTemplate", "PropertyClass" ], - "hash": 372643830, + "hash": 701230857, "properties": { - "m_sName": { - "type": "std::string", + "m_behaviors": { + "type": "class BehaviorTemplate*", "id": 0, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306437263 - }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 65671, + "offset": 72, + "flags": 7, "container": "Vector", "dynamic": true, "singleton": false, "pointer": true, - "hash": 2621225959 + "hash": 1197808594 }, - "m_Style": { + "m_objectName": { + "type": "std::string", + "id": 1, + "offset": 96, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2154940147 + }, + "m_templateID": { "type": "unsigned int", "id": 2, - "offset": 152, - "flags": 1048583, + "offset": 128, + "flags": 16777223, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "SCALE_CHILDREN": 2, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "FOCUS_LOCKED": 64, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152 - } + "hash": 1286746870 }, - "m_Flags": { + "m_visualID": { "type": "unsigned int", "id": 3, - "offset": 156, - "flags": 1048583, + "offset": 132, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } + "hash": 1118778894 }, - "m_Window": { - "type": "class Rect", + "m_adjectiveList": { + "type": "std::string", "id": 4, - "offset": 160, - "flags": 135, - "container": "Static", - "dynamic": false, + "offset": 248, + "flags": 7, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 3105139380 + "hash": 3195213318 }, - "m_fTargetAlpha": { - "type": "float", + "m_exemptFromAOI": { + "type": "bool", "id": 5, - "offset": 212, - "flags": 135, + "offset": 240, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1809129834 + "hash": 1457879059 }, - "m_fDisabledAlpha": { - "type": "float", + "m_displayName": { + "type": "std::string", "id": 6, - "offset": 216, - "flags": 135, + "offset": 168, + "flags": 8388615, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1389987675 + "hash": 2446900370 }, - "m_fAlpha": { - "type": "float", + "m_description": { + "type": "std::string", "id": 7, - "offset": 208, - "flags": 65671, + "offset": 136, + "flags": 8388615, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 482130755 + "hash": 1649374815 }, - "m_pWindowStyle": { - "type": "class SharedPointer", + "m_nObjectType": { + "type": "enum ObjectType", "id": 8, - "offset": 232, - "flags": 135, + "offset": 200, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3623628394 + "pointer": false, + "hash": 2118905880, + "enum_options": { + "OT_UNDEFINED": 0, + "OT_PLAYER": 1, + "OT_NPC": 2, + "OT_PROP": 3, + "OT_OBJECT": 4, + "OT_HOUSE": 5, + "OT_KEY": 6, + "OT_OLD_KEY": 7, + "OT_DEED": 8, + "OT_MAIL": 9, + "OT_RECIPE": 17, + "OT_EQUIP_HEAD": 10, + "OT_EQUIP_CHEST": 11, + "OT_EQUIP_LEGS": 12, + "OT_EQUIP_HANDS": 13, + "OT_EQUIP_FINGER": 14, + "OT_EQUIP_FEET": 15, + "OT_EQUIP_EAR": 16, + "OT_BUILDING_BLOCK": 18, + "OT_BUILDING_BLOCK_SOLID": 19, + "OT_GOLF": 20, + "OT_DOOR": 21, + "OT_PET": 22, + "OT_FABRIC": 23, + "OT_WINDOW": 24, + "OT_ROOF": 25, + "OT_HORSE": 26, + "OT_STRUCTURE": 27, + "OT_HOUSING_TEXTURE": 28, + "OT_PLANT": 29 + } }, - "m_sHelp": { - "type": "std::wstring", + "m_sIcon": { + "type": "std::string", "id": 9, - "offset": 248, - "flags": 4194439, + "offset": 208, + "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2102211316 + "hash": 2306259831 }, - "m_sScript": { + "m_lootTable": { "type": "std::string", "id": 10, - "offset": 352, - "flags": 135, - "container": "Static", - "dynamic": false, + "offset": 280, + "flags": 268435463, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 1846695875 + "hash": 2539512673, + "enum_options": { + "__BASECLASS": "LootTable" + } }, - "m_Offset": { - "type": "class Point", + "m_deathParticles": { + "type": "std::string", "id": 11, - "offset": 192, - "flags": 135, + "offset": 296, + "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3389835433 + "hash": 3201049672 }, - "m_Scale": { - "type": "class Point", + "m_deathSound": { + "type": "std::string", "id": 12, - "offset": 200, - "flags": 135, + "offset": 328, + "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2547159940 + "hash": 1865613610 }, - "m_sTip": { - "type": "std::wstring", + "m_hitSound": { + "type": "std::string", "id": 13, - "offset": 392, - "flags": 4194439, + "offset": 360, + "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1513510520 + "hash": 2746656777 }, - "m_BubbleList": { - "type": "class WindowBubble", + "m_castSound": { + "type": "std::string", "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, + "offset": 392, + "flags": 131079, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 2587533771 + "hash": 3343064815 }, - "m_ParentOffset": { - "type": "class Rect", + "m_aggroSound": { + "type": "std::string", "id": 15, - "offset": 176, - "flags": 135, + "offset": 424, + "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3091503757 + "hash": 3421949940 }, - "m_neverGoBackToTraining": { - "type": "bool", + "m_primarySchoolName": { + "type": "std::string", "id": 16, - "offset": 1008, + "offset": 456, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1983510297 - } - } - }, - "770019179": { - "name": "class std::vector >", - "bases": [], - "hash": 770019179, - "properties": {} - }, - "1940079300": { - "name": "class CSRAccessPassInfo", - "bases": [ - "PropertyClass" - ], - "hash": 1940079300, - "properties": { - "m_passName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 23, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2647581395 + "hash": 3211370408 }, - "m_hasPass": { - "type": "bool", - "id": 1, - "offset": 104, - "flags": 23, + "m_locationPreference": { + "type": "std::string", + "id": 17, + "offset": 488, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1743355078 + "hash": 2817699507 }, - "m_grantedByRight": { - "type": "bool", - "id": 2, - "offset": 105, - "flags": 23, + "m_leashOffsetOverride": { + "type": "class SharedPointer", + "id": 18, + "offset": 528, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 498060849 + "pointer": true, + "hash": 1692586788 } } }, - "769577082": { - "name": "class ClientCameraCutCinematicAction", + "1975054776": { + "name": "struct TerrainChangeData", + "bases": [], + "hash": 1975054776, + "properties": {} + }, + "699043223": { + "name": "class AddHangingCinematicStageTemplate", "bases": [ - "CameraCutCinematicAction", - "CinematicAction", + "CinematicStageTemplate", "PropertyClass" ], - "hash": 769577082, + "hash": 699043223, "properties": { - "m_timeOffset": { - "type": "float", + "m_name": { + "type": "std::string", "id": 0, "offset": 72, "flags": 7, @@ -458016,193 +174739,239 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 + "hash": 1717359772 }, - "m_cameras": { - "type": "std::string", + "m_duration": { + "type": "float", "id": 1, - "offset": 80, - "flags": 131079, - "container": "Vector", - "dynamic": true, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 3217341687 + "hash": 920323453 }, - "m_altcameras": { - "type": "std::string", + "m_actions": { + "type": "class SharedPointer", "id": 2, - "offset": 104, - "flags": 131079, - "container": "Vector", + "offset": 112, + "flags": 7, + "container": "List", "dynamic": true, "singleton": false, - "pointer": false, - "hash": 1882980152 + "pointer": true, + "hash": 1380578687 }, - "m_initialCameraName": { - "type": "std::string", + "m_stageRelationships": { + "type": "class SharedPointer", "id": 3, "offset": 128, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 2526319343 + "pointer": true, + "hash": 499983354 }, - "m_camRel": { - "type": "enum CameraCutCinematicAction::kCameraRelative", + "m_hanging": { + "type": "std::string", "id": 4, - "offset": 168, - "flags": 2097159, + "offset": 152, + "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 919962138, - "enum_options": { - "kNone": 0, - "kSigil": 1, - "kTarget": 2, - "kSource": 3, - "kActor": 4 - } + "hash": 3233478999 }, - "m_interpolationDuration": { - "type": "float", + "m_protection": { + "type": "std::string", "id": 5, - "offset": 160, - "flags": 7, + "offset": 184, + "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1458058437 + "hash": 1874970946 }, - "m_releaseInterpolationDuration": { - "type": "float", - "id": 6, - "offset": 164, - "flags": 7, + "m_sound": { + "type": "std::string", + "id": 6, + "offset": 216, + "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1807754278, - "enum_options": { - "__DEFAULT": "1.0" - } + "hash": 2307644996 }, - "m_bUseOrientationOverride": { - "type": "bool", + "m_burnSound": { + "type": "std::string", "id": 7, - "offset": 188, - "flags": 7, + "offset": 248, + "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1088002894 + "hash": 1827806971 }, - "m_overrideOrientation": { - "type": "class Vector3D", + "m_stopRotating": { + "type": "bool", "id": 8, - "offset": 192, + "offset": 282, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3267199758 + "hash": 13587553 }, - "m_bUseLocationOverride": { + "m_startRotating": { "type": "bool", "id": 9, - "offset": 172, + "offset": 283, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1767170875 + "hash": 839204969 }, - "m_overrideLocation": { - "type": "class Vector3D", + "m_spellText": { + "type": "std::string", "id": 10, - "offset": 176, - "flags": 7, + "offset": 288, + "flags": 8388615, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3776417691 + "hash": 2688705600 }, - "m_namedActor": { - "type": "std::string", + "m_bSwitchCameraToWideLong": { + "type": "bool", "id": 11, - "offset": 208, + "offset": 280, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3413532537 + "hash": 2136912684, + "enum_options": { + "__DEFAULT": 1 + } }, - "m_camScale": { - "type": "float", + "m_announcesSpell": { + "type": "bool", "id": 12, - "offset": 240, + "offset": 281, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 979098224 + "hash": 652261533, + "enum_options": { + "__DEFAULT": 1 + } } } }, - "373422829": { - "name": "class ClientCountdownBehavior*", + "1544098067": { + "name": "class SharedPointer", "bases": [ - "CountdownBehavior", - "BehaviorInstance", + "ReqNumeric", + "Requirement", "PropertyClass" ], - "hash": 373422829, + "hash": 1544098067, "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", + "m_applyNOT": { + "type": "bool", "id": 0, - "offset": 104, - "flags": 39, + "offset": 72, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 + "hash": 1746328074, + "enum_options": { + "__DEFAULT": 0 + } }, - "m_time": { - "type": "float", + "m_operator": { + "type": "enum Requirement::Operator", "id": 1, - "offset": 112, + "offset": 76, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2672792317, + "enum_options": { + "ROP_AND": 0, + "ROP_OR": 1, + "__DEFAULT": "ROP_AND" + } + }, + "m_numericValue": { + "type": "float", + "id": 2, + "offset": 80, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 310085638 + "hash": 521915239 + }, + "m_operatorType": { + "type": "enum ReqNumeric::OPERATOR_TYPE", + "id": 3, + "offset": 84, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2228122961, + "enum_options": { + "OPERATOR_UNKNOWN": 4294967295, + "OPERATOR_EQUALS": 0, + "OPERATOR_GREATER_THAN": 1, + "OPERATOR_LESS_THAN": 2, + "OPERATOR_GREATER_THAN_EQ": 3, + "OPERATOR_LESS_THAN_EQ": 4 + } + }, + "m_entryName": { + "type": "std::string", + "id": 4, + "offset": 88, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2055270734 } } }, - "1939767865": { - "name": "class SharedPointer", + "695766573": { + "name": "class WhirlyBurlyKioskBehaviorTemplate*", "bases": [ + "BehaviorTemplate", "PropertyClass" ], - "hash": 1939767865, + "hash": 695766573, "properties": { - "m_launchCameraAsset": { + "m_behaviorName": { "type": "std::string", "id": 0, "offset": 72, @@ -458211,429 +174980,379 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 1589507199 - }, - "m_launchAltCameraAsset": { + "hash": 3130754092 + } + } + }, + "1115186662": { + "name": "class SharedPointer", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 1115186662, + "properties": { + "m_behaviorName": { "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + }, + "m_minimumGuildSize": { + "type": "int", "id": 1, - "offset": 104, + "offset": 120, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3431958848 + "hash": 1297669158 }, - "m_finishCameraAsset": { - "type": "std::string", + "m_reagent1ID": { + "type": "unsigned int", "id": 2, - "offset": 136, + "offset": 124, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2785496869 + "hash": 1834039377 }, - "m_powEffectAsset": { - "type": "std::string", + "m_reagent1Number": { + "type": "unsigned int", "id": 3, - "offset": 168, + "offset": 128, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2123980286 + "hash": 704125517 }, - "m_poofEffectAsset": { + "m_reagent1Adjective": { "type": "std::string", "id": 4, - "offset": 200, + "offset": 136, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1882932092 + "hash": 1540526241 }, - "m_startSound": { - "type": "std::string", + "m_reagent2ID": { + "type": "unsigned int", "id": 5, - "offset": 232, + "offset": 168, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2166722354 + "hash": 1834040466 }, - "m_winningSound": { - "type": "std::string", + "m_reagent2Number": { + "type": "unsigned int", "id": 6, - "offset": 264, + "offset": 172, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3277436766 + "hash": 1995593486 }, - "m_numNearMisses": { - "type": "int", + "m_reagent2Adjective": { + "type": "std::string", "id": 7, - "offset": 296, + "offset": 176, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 367683972 + "hash": 1608327618 }, - "m_launchSpinAnim": { - "type": "std::string", + "m_reagent3ID": { + "type": "unsigned int", "id": 8, - "offset": 304, + "offset": 208, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3333397429 + "hash": 1834041555 }, - "m_springboardVelocity": { - "type": "float", + "m_reagent3Number": { + "type": "unsigned int", "id": 9, - "offset": 336, + "offset": 212, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1581485377 + "hash": 1139577807 }, - "m_springboardHorizontalDistance": { - "type": "float", + "m_reagent3Adjective": { + "type": "std::string", "id": 10, - "offset": 340, + "offset": 216, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1273881447 + "hash": 1676128995 }, - "m_launchFadeOutTime": { - "type": "float", + "m_reagent4ID": { + "type": "unsigned int", "id": 11, - "offset": 344, + "offset": 248, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 780794089 + "hash": 1834042644 }, - "m_launchFadeInTime": { - "type": "float", + "m_reagent4Number": { + "type": "unsigned int", "id": 12, - "offset": 348, + "offset": 252, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 712951592 + "hash": 283562128 }, - "m_launchCameraType": { - "type": "enum ObstacleCourseLaunchCameraType", + "m_reagent4Adjective": { + "type": "std::string", "id": 13, - "offset": 376, - "flags": 2097159, + "offset": 256, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1946138855, - "enum_options": { - "ShowLaunchPoint": 0, - "ShowLaunchDestination": 1 - } + "hash": 1743930372 }, - "m_launchDelay": { - "type": "float", + "m_reagent5ID": { + "type": "unsigned int", "id": 14, - "offset": 380, + "offset": 288, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 818941409 + "hash": 1834043733 }, - "m_springboardLaunchDelay": { - "type": "float", + "m_reagent5Number": { + "type": "unsigned int", "id": 15, - "offset": 384, + "offset": 292, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 358451836 + "hash": 1575030097 }, - "m_pendulumLaunchDelay": { - "type": "float", + "m_reagent5Adjective": { + "type": "std::string", "id": 16, - "offset": 388, + "offset": 296, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 813340139 + "hash": 1811731749 }, - "m_startLaunchCamAboveWaterDistance": { - "type": "float", + "m_reagent6ID": { + "type": "unsigned int", "id": 17, - "offset": 392, + "offset": 328, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1138704748 + "hash": 1834044822 }, - "m_floatingPenaltyStringKey": { - "type": "std::string", + "m_reagent6Number": { + "type": "unsigned int", "id": 18, - "offset": 416, + "offset": 332, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3048879372 + "hash": 719014418 }, - "m_floatingBonusStringKey": { + "m_reagent6Adjective": { "type": "std::string", "id": 19, - "offset": 448, + "offset": 336, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2779826934 + "hash": 1879533126 }, - "m_floatingReadyStringKey": { - "type": "std::string", + "m_requiredUnlockTriggerID": { + "type": "unsigned int", "id": 20, - "offset": 480, + "offset": 368, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2159650180 + "hash": 1012763195 }, - "m_floatingGoStringKey": { - "type": "std::string", + "m_islandNumber": { + "type": "unsigned int", "id": 21, - "offset": 512, + "offset": 372, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2635517125 + "hash": 1882137233 }, - "m_waitForRespawnTime": { - "type": "float", + "m_unlockCantrip": { + "type": "std::string", "id": 22, - "offset": 352, + "offset": 376, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 989830754 + "hash": 2731256472 }, - "m_waitForFanfareTime": { - "type": "float", + "m_numberOfUnlockPlayers": { + "type": "int", "id": 23, - "offset": 356, + "offset": 408, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1563405653 + "hash": 855609764 }, - "m_finishFadeOutTime": { - "type": "float", + "m_requiredUnlockDisplayName": { + "type": "std::string", "id": 24, - "offset": 360, + "offset": 416, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1976783759 + "hash": 1551879295 }, - "m_finishFadeInTime": { - "type": "float", + "m_unlockedObjectID": { + "type": "unsigned int", "id": 25, - "offset": 364, + "offset": 448, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1595172110 + "hash": 322023750 }, - "m_waitForScoreTime": { + "m_unlockedObjectYaw": { "type": "float", "id": 26, - "offset": 368, + "offset": 452, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 662585758 + "hash": 1590408244 }, - "m_timeTextBlinkRate": { - "type": "float", + "m_unlockedYawEnabled": { + "type": "bool", "id": 27, - "offset": 372, + "offset": 456, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1421152647 + "hash": 858029316 }, - "m_maxLaunchVelocity": { + "m_positionX": { "type": "float", "id": 28, - "offset": 396, + "offset": 460, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 187200007 + "hash": 837995844 }, - "m_warningSeconds": { - "type": "int", + "m_positionY": { + "type": "float", "id": 29, - "offset": 400, + "offset": 464, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1816542623 + "hash": 837995845 }, - "m_simTimeDelta": { + "m_positionZ": { "type": "float", "id": 30, - "offset": 404, + "offset": 468, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2151669465 + "hash": 837995846 }, - "m_pushOutVelocity": { - "type": "float", + "m_unlockedPositionEnabled": { + "type": "bool", "id": 31, - "offset": 408, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 586005630 - }, - "m_cameraCollisionRadius": { - "type": "float", - "id": 32, - "offset": 412, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 465605300 - }, - "m_failSound": { - "type": "std::string", - "id": 33, - "offset": 544, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2420690272 - }, - "m_timeWarningSound": { - "type": "std::string", - "id": 34, - "offset": 576, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2539048393 - }, - "m_splashSoundList": { - "type": "class WeightedList", - "id": 35, - "offset": 608, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2522662007 - }, - "m_nearMissSoundList": { - "type": "class WeightedList", - "id": 36, - "offset": 712, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1762129774 - }, - "m_splashCinematicList": { - "type": "class WeightedList", - "id": 37, - "offset": 816, + "offset": 472, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3318695259 + "hash": 1129626952 } } }, - "373442385": { - "name": "class SharedPointer", + "695413823": { + "name": "class SharedPointer", "bases": [ - "InfractionBehavior", "BehaviorInstance", "PropertyClass" ], - "hash": 373442385, + "hash": 695413823, "properties": { "m_behaviorTemplateNameID": { "type": "unsigned int", @@ -458645,1135 +175364,780 @@ "singleton": false, "pointer": false, "hash": 223437287 - }, - "m_penalties": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1696001746 - }, - "m_record": { - "type": "class SharedPointer", - "id": 2, - "offset": 128, - "flags": 16, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2129713657 } } }, - "770328692": { - "name": "class ControlDraw::GesturePoint", - "bases": [ - "PropertyClass" - ], - "hash": 770328692, - "properties": { - "m_Point": { - "type": "class Point", - "id": 0, - "offset": 72, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2475294668 - }, - "m_Color": { - "type": "class Color", - "id": 1, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1753714077 - } - } - }, - "1940107404": { - "name": "class std::vector >", - "bases": [], - "hash": 1940107404, - "properties": {} - }, - "382192232": { - "name": "class HousingShopOption*", + "1975797348": { + "name": "class BasePetMorphManager", "bases": [ - "ServiceOptionBase", "PropertyClass" ], - "hash": 382192232, + "hash": 1975797348, "properties": { - "m_serviceName": { - "type": "std::string", + "m_totalCostMin": { + "type": "unsigned int", "id": 0, "offset": 72, - "flags": 31, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2206028813 + "hash": 496624814 }, - "m_iconKey": { - "type": "std::string", + "m_totalCostMax": { + "type": "unsigned int", "id": 1, - "offset": 168, - "flags": 31, + "offset": 76, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2457138637 + "hash": 496624560 }, - "m_displayKey": { - "type": "std::string", + "m_totalRarityMin": { + "type": "unsigned int", "id": 2, - "offset": 104, - "flags": 31, + "offset": 80, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3023276954 + "hash": 1549157264 }, - "m_serviceIndex": { + "m_totalRarityMax": { "type": "unsigned int", "id": 3, - "offset": 204, - "flags": 31, + "offset": 84, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2103126710 + "hash": 1549157010 }, - "m_forceInteract": { - "type": "bool", + "m_statDataMin": { + "type": "unsigned int", "id": 4, - "offset": 200, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1705789564 - } - } - }, - "771315536": { - "name": "enum ObstacleCourseLaunchCameraType", - "bases": [], - "hash": 771315536, - "properties": {} - }, - "377422087": { - "name": "class TrainingPointLootInfo", - "bases": [ - "LootInfo", - "LootInfoBase", - "PropertyClass" - ], - "hash": 377422087, - "properties": { - "m_lootType": { - "type": "enum LootInfo::LOOT_TYPE", - "id": 0, - "offset": 72, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1591891442, - "enum_options": { - "LOOT_TYPE_NONE": 0, - "LOOT_TYPE_GOLD": 1, - "LOOT_TYPE_MANA": 2, - "LOOT_TYPE_ITEM": 3, - "LOOT_TYPE_TREASURE_CARD": 4, - "LOOT_TYPE_MAGIC_XP": 5, - "LOOT_TYPE_ADD_SPELL": 6, - "LOOT_TYPE_MAX_HEALTH": 7, - "LOOT_TYPE_MAX_GOLD": 8, - "LOOT_TYPE_MAX_MANA": 9, - "LOOT_TYPE_MAX_POTION": 10, - "LOOT_TYPE_TRAINING_POINTS": 11, - "LOOT_TYPE_RECIPE": 12, - "LOOT_TYPE_CRAFTING_SLOT": 13, - "LOOT_TYPE_REAGENT": 14, - "LOOT_TYPE_PETSNACK": 15, - "LOOT_TYPE_GARDENING_XP": 16, - "LOOT_TYPE_PET_XP": 17, - "LOOT_TYPE_TREASURE_TABLE": 18, - "LOOT_TYPE_ARENA_POINTS": 19, - "LOOT_TYPE_ARENA_BONUS_POINTS": 20, - "LOOT_TYPE_GROUP": 21, - "LOOT_TYPE_FISHING_XP": 22, - "LOOT_TYPE_EVENT_CURRENCY_1": 24, - "LOOT_TYPE_EVENT_CURRENCY_2": 25, - "LOOT_TYPE_PVP_CURRENCY": 26, - "LOOT_TYPE_PVP_CURRENCY_BONUS": 27, - "LOOT_TYPE_PVP_TOURNEY_CURRENCY": 28, - "LOOT_TYPE_PVP_TOURNEY_CURRENCY_BONUS": 29, - "LOOT_TYPE_FURNITURE_ESSENCE": 30 - } - }, - "m_trainingPoints": { - "type": "int", - "id": 1, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1003892499 - } - } - }, - "1943197007": { - "name": "class DestroyShadowCreatureCinematicAction", - "bases": [ - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 1943197007, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, + "offset": 88, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 + "hash": 988659687 }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, + "m_statDataMax": { + "type": "unsigned int", + "id": 5, + "offset": 92, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2285866132 - } - } - }, - "770703425": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 770703425, - "properties": { - "m_secondPetTemplateID": { - "type": "gid", - "id": 0, - "offset": 72, - "flags": 33554439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 89171206 + "hash": 988659433 }, - "m_eggTemplateID": { - "type": "gid", - "id": 1, - "offset": 80, - "flags": 33554439, + "m_wowDataMin": { + "type": "unsigned int", + "id": 6, + "offset": 96, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1463276884 + "hash": 1289909672 }, - "m_probability": { - "type": "float", - "id": 2, - "offset": 88, + "m_wowDataMax": { + "type": "unsigned int", + "id": 7, + "offset": 100, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 396611384 - } - } - }, - "374903879": { - "name": "class SharedPointer", - "bases": [ - "CinematicAction", - "PropertyClass" - ], - "hash": 374903879, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, + "hash": 1289909418 + }, + "m_pedigreeDataMin": { + "type": "unsigned int", + "id": 8, + "offset": 104, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 + "hash": 1947586064 }, - "m_sound": { - "type": "std::string", - "id": 1, - "offset": 80, + "m_pedigreeDataMax": { + "type": "unsigned int", + "id": 9, + "offset": 108, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2307644996 + "hash": 1947585810 }, - "m_stopAllLoopingSounds": { - "type": "bool", - "id": 2, + "m_statsWeight": { + "type": "float", + "id": 10, "offset": 112, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1944220294 + "hash": 1028083822 }, - "m_fadeDuration": { + "m_wowWeight": { "type": "float", - "id": 3, + "id": 11, "offset": 116, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1402536557 - } - } - }, - "1941788681": { - "name": "class ObstacleCourseSpeedUpBehaviorClient*", - "bases": [ - "ObstacleCourseSpeedUpBehavior", - "ObstacleCourseObstaclePathBase", - "ObstacleCourseObstacleBehavior", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1941788681, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - } - } - }, - "770666320": { - "name": "class SharedPointer", - "bases": [], - "hash": 770666320, - "properties": {} - }, - "373979211": { - "name": "class SharedPointer", - "bases": [ - "CinematicAction", - "PropertyClass" - ], - "hash": 373979211, - "properties": { - "m_timeOffset": { + "hash": 1781950908 + }, + "m_pedigreeWeight": { "type": "float", - "id": 0, - "offset": 72, + "id": 12, + "offset": 120, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 + "hash": 2192332068 }, - "m_cinematicSoundEmitterInfo": { - "type": "class SharedPointer", - "id": 1, - "offset": 80, + "m_kioskCombatTalentCostMin": { + "type": "int", + "id": 13, + "offset": 128, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "Vector", + "dynamic": true, "singleton": false, - "pointer": true, - "hash": 2303770088 - } - } - }, - "1941319049": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1941319049, - "properties": { - "m_goalCount": { - "type": "unsigned int", - "id": 0, - "offset": 72, + "pointer": false, + "hash": 2086730582 + }, + "m_kioskCombatTalentCostGrowth": { + "type": "int", + "id": 14, + "offset": 152, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "Vector", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 985669209 + "hash": 1600144109 }, - "m_lootTable": { - "type": "std::string", - "id": 1, - "offset": 80, + "m_kioskDerbyTalentCostMin": { + "type": "int", + "id": 15, + "offset": 176, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "Vector", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 2539512673 + "hash": 787626614 }, - "m_icon": { - "type": "std::string", - "id": 2, - "offset": 112, + "m_kioskDerbyTalentCostGrowth": { + "type": "int", + "id": 16, + "offset": 200, "flags": 7, - "container": "List", + "container": "Vector", "dynamic": true, "singleton": false, "pointer": false, - "hash": 1717182340 + "hash": 1995353613 }, - "m_featuredTemplateID": { - "type": "unsigned int", - "id": 3, - "offset": 128, + "m_inPersonCombatTalentCostMin": { + "type": "int", + "id": 17, + "offset": 224, "flags": 7, - "container": "List", + "container": "Vector", "dynamic": true, "singleton": false, "pointer": false, - "hash": 258965446 + "hash": 337785603 }, - "m_badgeName": { - "type": "std::string", - "id": 4, - "offset": 144, + "m_inPersonCombatTalentCostGrowth": { + "type": "int", + "id": 18, + "offset": 248, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "Vector", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 3002948047 + "hash": 168359802 }, - "m_rewardType": { - "type": "enum ClassProjectRewardType", - "id": 5, - "offset": 176, - "flags": 2097159, - "container": "Static", - "dynamic": false, + "m_inPersonDerbyTalentCostMin": { + "type": "int", + "id": 19, + "offset": 272, + "flags": 7, + "container": "Vector", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 3545827746, - "enum_options": { - "CPRT_Everyone": 0, - "CPRT_Subscriber": 1, - "CPRT_Purchased": 2 - } + "hash": 409251971 }, - "m_overrideTitle": { - "type": "std::string", - "id": 6, - "offset": 184, - "flags": 8388615, - "container": "Static", - "dynamic": false, + "m_inPersonDerbyTalentCostGrowth": { + "type": "int", + "id": 20, + "offset": 296, + "flags": 7, + "container": "Vector", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 2739145597 + "hash": 64783610 }, - "m_testLunari": { - "type": "unsigned int", - "id": 7, - "offset": 216, + "m_kioskPedigreeMin": { + "type": "int", + "id": 21, + "offset": 320, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1088922456 + "hash": 1416396228 }, - "m_crownsCostToAdvance": { + "m_kioskCombatDivisor": { "type": "int", - "id": 8, - "offset": 220, + "id": 22, + "offset": 324, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 304642756 - } - } - }, - "373550017": { - "name": "class HideShadowCreatureCinematicAction*", - "bases": [ - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 373550017, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, + "hash": 1325329457 + }, + "m_kioskCombatExponent": { + "type": "int", + "id": 23, + "offset": 328, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 + "hash": 268917794 }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, + "m_kioskDerbyDivisor": { + "type": "int", + "id": 24, + "offset": 332, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2285866132 - } - } - }, - "1940964455": { - "name": "class CinematicSoundEmitterInfo", - "bases": [ - "PropertyClass" - ], - "hash": 1940964455, - "properties": { - "m_volume": { - "type": "float", - "id": 0, - "offset": 72, + "hash": 1909936977 + }, + "m_kioskDerbyExponent": { + "type": "int", + "id": 25, + "offset": 336, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1162855023 + "hash": 233613122 }, - "m_loopCount": { + "m_inPersonPedigreeMin": { "type": "int", - "id": 1, - "offset": 76, + "id": 26, + "offset": 340, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 865634717 + "hash": 769349745 }, - "m_priority": { + "m_inPersonCombatDivisor": { "type": "int", - "id": 2, - "offset": 80, + "id": 27, + "offset": 344, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1235205852 + "hash": 1066346014 }, - "m_progression": { - "type": "enum CinematicSoundEmitterInfo::Progression", - "id": 3, - "offset": 84, - "flags": 2097159, + "m_inPersonCombatExponent": { + "type": "int", + "id": 28, + "offset": 348, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2562723160, - "enum_options": { - "Sequence": 0, - "Random": 1, - "SequenceOnceOnly": 2, - "RandomNoRepeat": 3 - } + "hash": 312398767 }, - "m_progressMin": { - "type": "float", - "id": 4, - "offset": 88, + "m_inPersonDerbyDivisor": { + "type": "int", + "id": 29, + "offset": 352, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1497550192 + "hash": 2032239518 }, - "m_progressMax": { - "type": "float", - "id": 5, - "offset": 92, + "m_inPersonDerbyExponent": { + "type": "int", + "id": 30, + "offset": 356, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1497549938 + "hash": 2122113327 }, - "m_trackFilenameList": { - "type": "std::string", - "id": 6, - "offset": 96, + "m_petLendsLevelDivisor": { + "type": "int", + "id": 31, + "offset": 408, "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2531081709 - }, - "m_category": { - "type": "enum CinematicSoundEmitterInfo::AudioCategory", - "id": 7, - "offset": 120, - "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2525629195, - "enum_options": { - "AudioCategory_Irrelevent": 0, - "AudioCategory_Accoustic": 1, - "AudioCategory_Noise": 2, - "AudioCategory_Music": 3, - "AudioCategory_MusicAtSFXVolume": 4, - "AudioCategory_Dialog": 5, - "AudioCategory_UI": 6, - "AudioCategory_NoiseAtMusicVolume": 7 - } + "hash": 574571025 }, - "m_name": { + "m_balancePetLendLoot": { "type": "std::string", - "id": 8, - "offset": 144, + "id": 32, + "offset": 416, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "Vector", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 1717359772 + "hash": 1766917643 }, - "m_useClientLocation": { - "type": "bool", - "id": 9, - "offset": 176, + "m_deathPetLendLoot": { + "type": "std::string", + "id": 33, + "offset": 440, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "Vector", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 98585784 + "hash": 2869638987 }, - "m_fadeInDuration": { - "type": "float", - "id": 10, - "offset": 124, + "m_firePetLendLoot": { + "type": "std::string", + "id": 34, + "offset": 464, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "Vector", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 770484100 + "hash": 2059692267 }, - "m_fadeOutDuration": { - "type": "float", - "id": 11, - "offset": 128, + "m_icePetLendLoot": { + "type": "std::string", + "id": 35, + "offset": 488, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "Vector", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 666963557 + "hash": 3354513750 }, - "m_wetReverb": { - "type": "float", - "id": 12, - "offset": 136, + "m_lifePetLendLoot": { + "type": "std::string", + "id": 36, + "offset": 512, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "Vector", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 1024635181 + "hash": 2516355429 }, - "m_dryReverb": { - "type": "float", - "id": 13, - "offset": 132, + "m_mythPetLendLoot": { + "type": "std::string", + "id": 37, + "offset": 536, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "Vector", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 403787084 + "hash": 3612618343 }, - "m_isStreamed": { - "type": "bool", - "id": 14, - "offset": 140, + "m_stormPetLendLoot": { + "type": "std::string", + "id": 38, + "offset": 560, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "Vector", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 906929764 + "hash": 2262680698 } } }, - "770978576": { - "name": "class SharedPointer", + "1114838843": { + "name": "class std::list >", + "bases": [], + "hash": 1114838843, + "properties": {} + }, + "1544211907": { + "name": "class BugReport*", "bases": [ "PropertyClass" ], - "hash": 770978576, + "hash": 1544211907, "properties": { - "m_tokens": { - "type": "class SharedPointer", + "m_clientVersion": { + "type": "std::string", "id": 0, "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, + "flags": 31, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2621026866 - } - } - }, - "374733549": { - "name": "class ClientCountdownBehavior", - "bases": [ - "CountdownBehavior", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 374733549, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, + "pointer": false, + "hash": 2207163808 + }, + "m_type": { + "type": "enum BugType", + "id": 1, "offset": 104, - "flags": 39, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 + "hash": 889643611, + "enum_options": { + "BT_CRASH": 1, + "BT_GAME_STOPPER": 2, + "BT_INTERFERENCE": 3, + "BT_ANNOYANCE": 4, + "BT_FEATURE_REQUEST": 5, + "BT_COMMENT": 6 + } }, - "m_time": { - "type": "float", - "id": 1, - "offset": 112, + "m_canReproduce": { + "type": "bool", + "id": 2, + "offset": 108, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 310085638 - } - } - }, - "1941706761": { - "name": "class ObstacleCourseSpeedUpBehaviorClient", - "bases": [ - "ObstacleCourseSpeedUpBehavior", - "ObstacleCourseObstaclePathBase", - "ObstacleCourseObstacleBehavior", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1941706761, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, + "hash": 859813390 + }, + "m_description": { + "type": "std::wstring", + "id": 3, + "offset": 112, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 + "hash": 1445360156 } } }, - "771796828": { - "name": "class PhysicsSimMassBox*", - "bases": [ - "PhysicsSimMass", - "PropertyClass" - ], - "hash": 771796828, + "695605721": { + "name": "enum CastleMagicSpellTemplate::CastleMagicSpellEffect", + "bases": [], + "hash": 695605721, "properties": {} }, - "771551630": { - "name": "class PolymorphEffectInfo", + "1975922355": { + "name": "class SharedPointer", "bases": [ - "GameEffectInfo", + "InfractionPenaltyInfo", "PropertyClass" ], - "hash": 771551630, + "hash": 1975922355, "properties": { - "m_effectName": { - "type": "std::string", + "m_addAtPointValue": { + "type": "float", "id": 0, "offset": 72, - "flags": 31, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2029161513 + "hash": 1071217084 }, - "m_templateID": { - "type": "unsigned int", + "m_removeAtPointValue": { + "type": "float", "id": 1, - "offset": 104, + "offset": 76, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1286746870 + "hash": 2112196961 + }, + "m_lifespan": { + "type": "std::string", + "id": 2, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3042809453 } } }, - "375660523": { - "name": "class GraphicalPetSnack", + "1544199619": { + "name": "class BugReport", "bases": [ - "GraphicalSpell", - "Spell", "PropertyClass" ], - "hash": 375660523, + "hash": 1544199619, "properties": { - "m_templateID": { - "type": "unsigned int", + "m_clientVersion": { + "type": "std::string", "id": 0, - "offset": 128, + "offset": 72, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1286746870 + "hash": 2207163808 }, - "m_enchantment": { - "type": "unsigned int", + "m_type": { + "type": "enum BugType", "id": 1, - "offset": 80, + "offset": 104, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2217886818 + "hash": 889643611, + "enum_options": { + "BT_CRASH": 1, + "BT_GAME_STOPPER": 2, + "BT_INTERFERENCE": 3, + "BT_ANNOYANCE": 4, + "BT_FEATURE_REQUEST": 5, + "BT_COMMENT": 6 + } }, - "m_pipCost": { - "type": "class SharedPointer", + "m_canReproduce": { + "type": "bool", "id": 2, - "offset": 176, - "flags": 7, + "offset": 108, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3605704820 + "pointer": false, + "hash": 859813390 }, - "m_regularAdjust": { - "type": "int", + "m_description": { + "type": "std::wstring", "id": 3, - "offset": 192, + "offset": 112, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1420453335 - }, - "m_magicSchoolID": { - "type": "unsigned int", - "id": 4, - "offset": 136, + "hash": 1445360156 + } + } + }, + "1115193037": { + "name": "class BaseZone*", + "bases": [ + "PropertyClass" + ], + "hash": 1115193037, + "properties": { + "m_id": { + "type": "gid", + "id": 0, + "offset": 72, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 893146499 + "hash": 2090569797 }, - "m_accuracy": { - "type": "unsigned char", - "id": 5, - "offset": 132, + "m_name": { + "type": "std::string", + "id": 1, + "offset": 88, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2273914939 - }, - "m_treasureCard": { - "type": "bool", - "id": 6, - "offset": 197, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1764879128 - }, - "m_battleCard": { - "type": "bool", - "id": 7, - "offset": 198, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1332843753 - }, - "m_itemCard": { - "type": "bool", - "id": 8, - "offset": 199, + "hash": 1717359772 + } + } + }, + "1115192397": { + "name": "class BaseZone", + "bases": [ + "PropertyClass" + ], + "hash": 1115192397, + "properties": { + "m_id": { + "type": "gid", + "id": 0, + "offset": 72, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1683654300 + "hash": 2090569797 }, - "m_sideBoard": { - "type": "bool", - "id": 9, - "offset": 200, + "m_name": { + "type": "std::string", + "id": 1, + "offset": 88, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1897838368 - }, - "m_spellID": { - "type": "unsigned int", - "id": 10, - "offset": 204, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1697483258 - }, - "m_leavesPlayWhenCastOverride": { - "type": "bool", - "id": 11, - "offset": 216, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 874407398 - }, - "m_cloaked": { - "type": "bool", - "id": 12, - "offset": 196, + "hash": 1717359772 + } + } + }, + "698487057": { + "name": "class SharedPointer", + "bases": [ + "PathBehaviorTemplate::Action", + "PropertyClass" + ], + "hash": 698487057, + "properties": { + "m_nPathID": { + "type": "gid", + "id": 0, + "offset": 72, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 7349510 - }, - "m_enchantmentSpellIsItemCard": { - "type": "bool", - "id": 13, - "offset": 76, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 531590701 - }, - "m_premutationSpellID": { - "type": "unsigned int", - "id": 14, - "offset": 112, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1530256370 - }, - "m_enchantedThisCombat": { - "type": "bool", - "id": 15, - "offset": 77, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1895738923 - }, - "m_paramOverrides": { - "type": "class SharedPointer", - "id": 16, - "offset": 224, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2061635599 - }, - "m_subEffectMeta": { - "type": "class SharedPointer", - "id": 17, - "offset": 240, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1944101106 + "hash": 214382368 }, - "m_delayEnchantment": { - "type": "bool", - "id": 18, - "offset": 257, - "flags": 287, + "m_nNodeID": { + "type": "int", + "id": 1, + "offset": 80, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 191336919 + "hash": 152152635, + "enum_options": { + "__DEFAULT": 4294967295 + } }, - "m_PvE": { - "type": "bool", - "id": 19, - "offset": 264, - "flags": 287, + "m_nPriority": { + "type": "int", + "id": 2, + "offset": 84, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 269492350 + "hash": 1515251530, + "enum_options": { + "__DEFAULT": 100 + } }, - "m_delayEnchantmentOrder": { - "type": "enum SpellEffect::kDelayOrder", - "id": 20, - "offset": 72, - "flags": 287, + "m_nChance": { + "type": "int", + "id": 3, + "offset": 88, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2526055263, + "hash": 1860748394, "enum_options": { - "SpellEffect::kAnyOrder": 0, - "SpellEffect::kFirst": 1, - "SpellEffect::kSecond": 2 + "__DEFAULT": 50 } }, - "m_roundAddedTC": { - "type": "int", - "id": 21, - "offset": 260, - "flags": 31, + "m_fMinPauseTime": { + "type": "float", + "id": 4, + "offset": 96, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 112365451 + "hash": 388964206 }, - "m_secondarySchoolID": { - "type": "unsigned int", - "id": 22, - "offset": 304, + "m_fMaxPauseTime": { + "type": "float", + "id": 5, + "offset": 100, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2081206026 + "hash": 347283632 } } }, - "1942745787": { - "name": "class AtticObject", - "bases": [ - "PropertyClass" - ], - "hash": 1942745787, - "properties": {} - }, - "375586257": { - "name": "class PetFeedingRewardInfo*", + "1976646887": { + "name": "class DailyPvPInfo", "bases": [ "PropertyClass" ], - "hash": 375586257, + "hash": 1976646887, "properties": { - "m_minIntrinsicValue": { - "type": "int", + "m_numMatchesRequired": { + "type": "unsigned int", "id": 0, "offset": 72, "flags": 7, @@ -459781,546 +176145,470 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 1962770606 + "hash": 2289964291 }, - "m_bCostsEnergy": { - "type": "bool", + "m_pvpType": { + "type": "enum DailyPvPInfo::DailyPvPTypes", "id": 1, "offset": 76, - "flags": 7, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1061466155 + "hash": 876371151, + "enum_options": { + "DPVP_Solo_Ranked": 0 + } }, - "m_lootTables": { - "type": "std::string", + "m_winRequired": { + "type": "bool", "id": 2, "offset": 80, "flags": 7, - "container": "Vector", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 1514961588 + "hash": 850879554 } } }, - "1942444569": { - "name": "class NamedCharacterElement", + "1544257861": { + "name": "class RespecOption", "bases": [ + "ServiceOptionBase", "PropertyClass" ], - "hash": 1942444569, + "hash": 1544257861, "properties": { - "m_name": { + "m_serviceName": { "type": "std::string", "id": 0, "offset": 72, - "flags": 7, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1717359772 + "hash": 2206028813 }, - "m_list": { - "type": "class CharacterElement*", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 646909524 - } - } - }, - "771652529": { - "name": "class SharedPointer", - "bases": [ - "CinematicStageTemplate", - "PropertyClass" - ], - "hash": 771652529, - "properties": { - "m_name": { + "m_iconKey": { "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, + "id": 1, + "offset": 168, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1717359772 + "hash": 2457138637 }, - "m_duration": { - "type": "float", - "id": 1, + "m_displayKey": { + "type": "std::string", + "id": 2, "offset": 104, - "flags": 7, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 920323453 - }, - "m_actions": { - "type": "class SharedPointer", - "id": 2, - "offset": 112, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1380578687 + "hash": 3023276954 }, - "m_stageRelationships": { - "type": "class SharedPointer", + "m_serviceIndex": { + "type": "unsigned int", "id": 3, - "offset": 128, - "flags": 7, - "container": "List", - "dynamic": true, + "offset": 204, + "flags": 31, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 499983354 + "pointer": false, + "hash": 2103126710 }, - "m_sound": { - "type": "std::string", + "m_forceInteract": { + "type": "bool", "id": 4, - "offset": 152, - "flags": 131079, + "offset": 200, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2307644996 + "hash": 1705789564 } } }, - "375372752": { - "name": "enum PermanentShop::CurrencyTab", - "bases": [], - "hash": 375372752, - "properties": {} - }, - "1942412211": { - "name": "class SharedPointer", + "696200388": { + "name": "class ProvideCombatTrigger*", "bases": [ - "BehaviorInstance", + "GameEffectBase", "PropertyClass" ], - "hash": 1942412211, + "hash": 696200388, "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", + "m_currentTickCount": { + "type": "double", "id": 0, - "offset": 104, - "flags": 39, + "offset": 80, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 + "hash": 2533274692 }, - "m_spellList": { - "type": "class SharedPointer", + "m_effectNameID": { + "type": "unsigned int", "id": 1, - "offset": 120, - "flags": 27, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2181913740 - } - } - }, - "375207967": { - "name": "class SharedPointer", - "bases": [ - "ControlSlider", - "ControlBar", - "Window", - "PropertyClass" - ], - "hash": 375207967, - "properties": { - "m_sName": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 135, + "offset": 96, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2306437263 - }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621225959 + "hash": 1204067144 }, - "m_Style": { - "type": "unsigned int", + "m_bIsOnPet": { + "type": "bool", "id": 2, - "offset": 152, - "flags": 1048583, + "offset": 73, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152 - } + "hash": 522593303 }, - "m_Flags": { - "type": "unsigned int", + "m_originatorID": { + "type": "gid", "id": 3, - "offset": 156, - "flags": 1048583, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } + "hash": 1131810019 }, - "m_Window": { - "type": "class Rect", + "m_itemSlotID": { + "type": "unsigned int", "id": 4, - "offset": 160, - "flags": 135, + "offset": 112, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3105139380 + "hash": 1895747595 }, - "m_fTargetAlpha": { - "type": "float", + "m_internalID": { + "type": "int", "id": 5, - "offset": 212, - "flags": 135, + "offset": 92, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1809129834 + "hash": 1643137924 }, - "m_fDisabledAlpha": { - "type": "float", + "m_endTime": { + "type": "unsigned int", "id": 6, - "offset": 216, - "flags": 135, + "offset": 88, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1389987675 + "hash": 716479635 }, - "m_fAlpha": { - "type": "float", + "m_triggerName": { + "type": "std::string", "id": 7, - "offset": 208, - "flags": 65671, + "offset": 128, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 482130755 - }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, + "hash": 3100183568 + } + } + }, + "1544241226": { + "name": "enum GardenSpellTemplate::UtilitySpellType", + "bases": [], + "hash": 1544241226, + "properties": {} + }, + "1115247383": { + "name": "class CantripsMajorInvisibilityEffectTemplate*", + "bases": [ + "CantripsInvisibilityEffectTemplate", + "GameEffectTemplate", + "PropertyClass" + ], + "hash": 1115247383, + "properties": { + "m_effectName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3623628394 + "pointer": false, + "hash": 2029161513 }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, + "m_effectCategory": { + "type": "std::string", + "id": 1, + "offset": 104, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2102211316 + "hash": 1852673222 }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, + "m_sortOrder": { + "type": "int", + "id": 2, + "offset": 148, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1846695875 + "hash": 1411218206 }, - "m_Offset": { - "type": "class Point", - "id": 11, + "m_duration": { + "type": "double", + "id": 3, "offset": 192, - "flags": 135, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3389835433 + "hash": 2727932435 }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, - "container": "Static", - "dynamic": false, + "m_stackingCategories": { + "type": "std::string", + "id": 4, + "offset": 160, + "flags": 7, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 2547159940 + "hash": 1774497525 }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, + "m_isPersistent": { + "type": "bool", + "id": 5, + "offset": 153, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1513510520 + "hash": 923861920 }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, + "m_bIsOnPet": { + "type": "bool", + "id": 6, + "offset": 154, + "flags": 7, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 2587533771 + "hash": 522593303 }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, + "m_isPublic": { + "type": "bool", + "id": 7, + "offset": 152, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3091503757 + "hash": 1728439822 }, - "m_fPosition": { - "type": "float", - "id": 16, - "offset": 584, - "flags": 135, + "m_visualEffectAddName": { + "type": "std::string", + "id": 8, + "offset": 200, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1808212114 + "hash": 3382086694 }, - "m_BaseColor": { - "type": "class Color", - "id": 17, - "offset": 588, - "flags": 262279, + "m_visualEffectRemoveName": { + "type": "std::string", + "id": 9, + "offset": 232, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2172251096 + "hash": 1541697323 }, - "m_BarColor": { - "type": "class Color", - "id": 18, - "offset": 592, - "flags": 262279, + "m_onAddFunctorName": { + "type": "std::string", + "id": 10, + "offset": 280, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2259916498 + "hash": 1561843107 }, - "m_bDisplayVertical": { - "type": "bool", - "id": 19, - "offset": 596, - "flags": 135, + "m_onRemoveFunctorName": { + "type": "std::string", + "id": 11, + "offset": 312, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1359621189 + "hash": 2559017864 }, - "m_pBarMaterial": { - "type": "class SharedPointer", - "id": 20, - "offset": 600, - "flags": 135, + "m_stackingRule": { + "type": "enum STACKING_RULE", + "id": 12, + "offset": 144, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2481929515 - }, - "m_pTopLeftMaterial": { - "type": "class SharedPointer", - "id": 21, - "offset": 616, - "flags": 135, + "pointer": false, + "hash": 431568889, + "enum_options": { + "STACKING_ALLOWED": 0, + "STACKING_NOSTACK": 1, + "STACKING_REPLACE": 2 + } + } + } + }, + "696200428": { + "name": "class ProvideCombatTrigger", + "bases": [ + "GameEffectBase", + "PropertyClass" + ], + "hash": 696200428, + "properties": { + "m_currentTickCount": { + "type": "double", + "id": 0, + "offset": 80, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3248096916 + "pointer": false, + "hash": 2533274692 }, - "m_pCenterMaterial": { - "type": "class SharedPointer", - "id": 22, - "offset": 632, - "flags": 135, + "m_effectNameID": { + "type": "unsigned int", + "id": 1, + "offset": 96, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1519560055 + "pointer": false, + "hash": 1204067144 }, - "m_pBottomRightMaterial": { - "type": "class SharedPointer", - "id": 23, - "offset": 648, - "flags": 135, + "m_bIsOnPet": { + "type": "bool", + "id": 2, + "offset": 73, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2932444745 + "pointer": false, + "hash": 522593303 }, - "m_fMin": { - "type": "float", - "id": 24, - "offset": 700, - "flags": 135, + "m_originatorID": { + "type": "gid", + "id": 3, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 309551905 + "hash": 1131810019 }, - "m_fMax": { - "type": "float", - "id": 25, - "offset": 704, - "flags": 135, + "m_itemSlotID": { + "type": "unsigned int", + "id": 4, + "offset": 112, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 309551651 + "hash": 1895747595 }, - "m_nTabWidth": { + "m_internalID": { "type": "int", - "id": 26, - "offset": 708, - "flags": 135, + "id": 5, + "offset": 92, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1554957503 + "hash": 1643137924 }, - "m_nNumberOfTicks": { - "type": "int", - "id": 27, - "offset": 712, - "flags": 135, + "m_endTime": { + "type": "unsigned int", + "id": 6, + "offset": 88, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1073178596 - } - } - }, - "772068097": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 772068097, - "properties": { - "m_entries": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, + "hash": 716479635 + }, + "m_triggerName": { + "type": "std::string", + "id": 7, + "offset": 128, + "flags": 31, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 998597073 + "pointer": false, + "hash": 3100183568 } } }, - "1942445849": { - "name": "class NamedCharacterElement*", + "1977090836": { + "name": "class PetItemBehaviorTemplate*", "bases": [ + "BehaviorTemplate", "PropertyClass" ], - "hash": 1942445849, + "hash": 1977090836, "properties": { - "m_name": { + "m_behaviorName": { "type": "std::string", "id": 0, "offset": 72, @@ -460329,104 +176617,62 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 1717359772 + "hash": 3130754092 }, - "m_list": { - "type": "class CharacterElement*", + "m_primaryDyeToTexture": { + "type": "class PetDyeToTexture", "id": 1, - "offset": 104, + "offset": 120, "flags": 7, - "container": "Vector", + "container": "List", "dynamic": true, "singleton": false, - "pointer": true, - "hash": 646909524 - } - } - }, - "771853884": { - "name": "class SharedPointer", - "bases": [ - "ReqNumeric", - "Requirement", - "PropertyClass" - ], - "hash": 771853884, - "properties": { - "m_applyNOT": { - "type": "bool", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, "pointer": false, - "hash": 1746328074, - "enum_options": { - "__DEFAULT": 0 - } + "hash": 1981853869 }, - "m_operator": { - "type": "enum Requirement::Operator", - "id": 1, - "offset": 76, - "flags": 2097183, - "container": "Static", - "dynamic": false, + "m_secondaryDyeToTexture": { + "type": "class PetDyeToTexture", + "id": 2, + "offset": 136, + "flags": 7, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 2672792317, - "enum_options": { - "ROP_AND": 0, - "ROP_OR": 1, - "__DEFAULT": "ROP_AND" - } + "hash": 1861913233 }, - "m_numericValue": { - "type": "float", - "id": 2, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, + "m_patternToTexture": { + "type": "class PetDyeToTexture", + "id": 3, + "offset": 152, + "flags": 7, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 521915239 + "hash": 1245062405 }, - "m_operatorType": { - "type": "enum ReqNumeric::OPERATOR_TYPE", - "id": 3, - "offset": 84, - "flags": 2097183, + "m_eGender": { + "type": "enum eGender", + "id": 4, + "offset": 168, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2228122961, + "hash": 2776344943, "enum_options": { - "OPERATOR_UNKNOWN": 4294967295, - "OPERATOR_EQUALS": 0, - "OPERATOR_GREATER_THAN": 1, - "OPERATOR_LESS_THAN": 2, - "OPERATOR_GREATER_THAN_EQ": 3, - "OPERATOR_LESS_THAN_EQ": 4 + "Male": 1, + "Female": 0, + "Neutral": 2 } - } - } - }, - "30915417": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 30915417, - "properties": { + }, "m_eRace": { "type": "enum eRace", - "id": 0, - "offset": 72, - "flags": 136314887, + "id": 5, + "offset": 172, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, @@ -463212,1181 +179458,13665 @@ "PP_Fairy_Fire": 1847789544, "MNT_Mustang_B": 1448793691, "PP_FireElfMyth": 1933609060, - "MNT_KT-BoatRide": 1560860110 + "MNT_KT-BoatRide": 1560860110, + "MNT_ShadowMagic": 2095978357, + "MNT_MardiGrasFloat_A": 1740674432, + "PP_ChineseNYSnake": 988201940, + "MNT_AnubisDog": 1995079956, + "PP_ShadowImp_A": 1604849432, + "PP_ShadowImp_B": 1604849438, + "PP_ShadowImp_C": 1604849436, + "MNT_ShadowMagic_B": 2093870965, + "MNT_ShadowMagic_C": 2093805429, + "Guest_KT_SE_Tritops_Warrior_I_01": 97516901, + "Guest_KT_SE_DS_Draconian_Model_01": 1916095079, + "Guest_KT_SE_Beetle_Scarab_C_01_L50": 1064004307, + "Guest_KT_SE_Roach_Warrior_C_03": 1872574203, + "Guest_KT_SE_Roach_Warrior_C_04": 1871918843, + "Guest_KT_SE_Roach_Warrior_C_05": 1871787771, + "Guest_KT_SE_Beetle_Scarab_C_01": 1353410759, + "Guest_KT_SE_Mander_Citizen_B_01_L50": 2044509396, + "Guest_KT_SE_Mander_CitizenF_B_01_L50": 164327682, + "Guest_KT_SE_Treant_Tormented_A_01": 1359800879, + "Guest_KT_SE_Treant_Base_A_01": 765512948, + "Guest_KT_SE_Mander_Citizen_F_D_05": 171244620, + "Guest_KT_SE_Mander_CitizenF_D_01": 163791037, + "Guest_KT_SE_Mander_CitizenF_D_02": 298008765, + "Guest_KT_SE_Mander_CitizenF_D_03": 432226493, + "Guest_KT_SE_Mander_CitizenF_D_04": 566444221, + "Guest_KT_SE_Mander_MummyF_A_01": 964349080, + "Guest_KT_SE_Mander_MummyF_A_02": 964480152, + "Guest_KT_SE_MC_Wraith_Model_01": 1101442118, + "Guest_KT_SE_Mander_CitizenF_B_02": 298000573, + "MNT_Wheelbarrow": 614248817, + "MNT_StubbornLlama": 221089074 + } + }, + "m_eggName": { + "type": "std::string", + "id": 6, + "offset": 176, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1732162479 + }, + "m_eggColor": { + "type": "int", + "id": 7, + "offset": 208, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1279450220 + }, + "m_fScale": { + "type": "float", + "id": 8, + "offset": 212, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 503137701, + "enum_options": { + "__DEFAULT": "1.0" + } + }, + "m_sHatchRate": { + "type": "std::string", + "id": 9, + "offset": 216, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1870311714 + }, + "m_wowFactor": { + "type": "unsigned int", + "id": 10, + "offset": 248, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1232905609 + }, + "m_flyingOffset": { + "type": "float", + "id": 11, + "offset": 252, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1899002567 + }, + "m_maxStats": { + "type": "class PetStat", + "id": 12, + "offset": 256, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1846363080 + }, + "m_startStats": { + "type": "class PetStat", + "id": 13, + "offset": 272, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2360362512 + }, + "m_talents": { + "type": "std::string", + "id": 14, + "offset": 288, + "flags": 268435463, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1548787382, + "enum_options": { + "__BASECLASS": "PetTalentTemplate" + } + }, + "m_derbyTalents": { + "type": "std::string", + "id": 15, + "offset": 320, + "flags": 268435463, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2359224108, + "enum_options": { + "__BASECLASS": "PetDerbyTalentTemplate" + } + }, + "m_Levels": { + "type": "class PetLevelInfo", + "id": 16, + "offset": 304, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 3555902999 + }, + "m_conversionStats": { + "type": "class PetStat", + "id": 17, + "offset": 336, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2003448008 + }, + "m_conversionTalents": { + "type": "std::string", + "id": 18, + "offset": 352, + "flags": 268435463, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2717498332, + "enum_options": { + "__BASECLASS": "PetTalentTemplate" + } + }, + "m_conversionLevel": { + "type": "unsigned char", + "id": 19, + "offset": 368, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 941047662 + }, + "m_conversionXP": { + "type": "unsigned int", + "id": 20, + "offset": 372, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2284347003 + }, + "m_favoriteSnackCategories": { + "type": "std::string", + "id": 21, + "offset": 376, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 3317721809 + }, + "m_jumpSound": { + "type": "std::string", + "id": 22, + "offset": 392, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2493302912 + }, + "m_duckSound": { + "type": "std::string", + "id": 23, + "offset": 424, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3426875339 + }, + "m_morphingExceptions": { + "type": "class MorphingException", + "id": 24, + "offset": 456, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2719456886 + }, + "m_hatchesAsID": { + "type": "gid", + "id": 25, + "offset": 472, + "flags": 33554439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2010028089 + }, + "m_guaranteedTalents": { + "type": "std::string", + "id": 26, + "offset": 480, + "flags": 268435463, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2876819510, + "enum_options": { + "__BASECLASS": "PetTalentTemplate" + } + }, + "m_guaranteedDerbyTalents": { + "type": "std::string", + "id": 27, + "offset": 496, + "flags": 268435463, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1658650796, + "enum_options": { + "__BASECLASS": "PetDerbyTalentTemplate" + } + }, + "m_hideName": { + "type": "bool", + "id": 28, + "offset": 516, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 645410894 + }, + "m_houseGuestOpacity": { + "type": "float", + "id": 29, + "offset": 520, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 805760636, + "enum_options": { + "__DEFAULT": "1.0" + } + }, + "m_hatchmakingInitalCooldownTime": { + "type": "unsigned int", + "id": 30, + "offset": 524, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 724960897, + "enum_options": { + "__DEFAULT": 0 + } + }, + "m_hatchmakingMaximumHatches": { + "type": "unsigned int", + "id": 31, + "offset": 528, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1142581578, + "enum_options": { + "__DEFAULT": 0 + } + }, + "m_excludeFromHatchOfTheDay": { + "type": "bool", + "id": 32, + "offset": 532, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1127631469, + "enum_options": { + "__DEFAULT": 0 + } + }, + "m_exclusivePet": { + "type": "bool", + "id": 33, + "offset": 533, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1328949460, + "enum_options": { + "__DEFAULT": 0 + } + }, + "m_animationEventList": { + "type": "class SharedPointer", + "id": 34, + "offset": 536, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2858101335 + } + } + }, + "1115247363": { + "name": "class CantripsMajorInvisibilityEffectTemplate", + "bases": [ + "CantripsInvisibilityEffectTemplate", + "GameEffectTemplate", + "PropertyClass" + ], + "hash": 1115247363, + "properties": { + "m_effectName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2029161513 + }, + "m_effectCategory": { + "type": "std::string", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1852673222 + }, + "m_sortOrder": { + "type": "int", + "id": 2, + "offset": 148, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1411218206 + }, + "m_duration": { + "type": "double", + "id": 3, + "offset": 192, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2727932435 + }, + "m_stackingCategories": { + "type": "std::string", + "id": 4, + "offset": 160, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1774497525 + }, + "m_isPersistent": { + "type": "bool", + "id": 5, + "offset": 153, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 923861920 + }, + "m_bIsOnPet": { + "type": "bool", + "id": 6, + "offset": 154, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 522593303 + }, + "m_isPublic": { + "type": "bool", + "id": 7, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1728439822 + }, + "m_visualEffectAddName": { + "type": "std::string", + "id": 8, + "offset": 200, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3382086694 + }, + "m_visualEffectRemoveName": { + "type": "std::string", + "id": 9, + "offset": 232, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1541697323 + }, + "m_onAddFunctorName": { + "type": "std::string", + "id": 10, + "offset": 280, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1561843107 + }, + "m_onRemoveFunctorName": { + "type": "std::string", + "id": 11, + "offset": 312, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2559017864 + }, + "m_stackingRule": { + "type": "enum STACKING_RULE", + "id": 12, + "offset": 144, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 431568889, + "enum_options": { + "STACKING_ALLOWED": 0, + "STACKING_NOSTACK": 1, + "STACKING_REPLACE": 2 + } + } + } + }, + "1976987344": { + "name": "class ClientActorDeathCinematicAction*", + "bases": [ + "ActorDeathCinematicAction", + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 1976987344, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + } + } + }, + "1546974253": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1546974253, + "properties": { + "m_sName": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306437263 + }, + "m_Children": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621225959 + }, + "m_Style": { + "type": "unsigned int", + "id": 2, + "offset": 152, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "SCALE_CHILDREN": 2, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "FOCUS_LOCKED": 64, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152 + } + }, + "m_Flags": { + "type": "unsigned int", + "id": 3, + "offset": 156, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } + }, + "m_Window": { + "type": "class Rect", + "id": 4, + "offset": 160, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3105139380 + }, + "m_fTargetAlpha": { + "type": "float", + "id": 5, + "offset": 212, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1809129834 + }, + "m_fDisabledAlpha": { + "type": "float", + "id": 6, + "offset": 216, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1389987675 + }, + "m_fAlpha": { + "type": "float", + "id": 7, + "offset": 208, + "flags": 65671, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 482130755 + }, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3623628394 + }, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2102211316 + }, + "m_sScript": { + "type": "std::string", + "id": 10, + "offset": 352, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1846695875 + }, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3389835433 + }, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547159940 + }, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513510520 + }, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3091503757 + } + } + }, + "698845303": { + "name": "class PathBehaviorClient*", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 698845303, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + } + } + }, + "1115558081": { + "name": "class QuantityBehaviorTemplate*", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 1115558081, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + }, + "m_maximumQuantity": { + "type": "int", + "id": 1, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1520461975 + } + } + }, + "1545570424": { + "name": "class PulseEffectTemplate", + "bases": [ + "GameEffectTemplate", + "PropertyClass" + ], + "hash": 1545570424, + "properties": { + "m_effectName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2029161513 + }, + "m_effectCategory": { + "type": "std::string", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1852673222 + }, + "m_sortOrder": { + "type": "int", + "id": 2, + "offset": 148, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1411218206 + }, + "m_duration": { + "type": "double", + "id": 3, + "offset": 192, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2727932435 + }, + "m_stackingCategories": { + "type": "std::string", + "id": 4, + "offset": 160, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1774497525 + }, + "m_isPersistent": { + "type": "bool", + "id": 5, + "offset": 153, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 923861920 + }, + "m_bIsOnPet": { + "type": "bool", + "id": 6, + "offset": 154, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 522593303 + }, + "m_isPublic": { + "type": "bool", + "id": 7, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1728439822 + }, + "m_visualEffectAddName": { + "type": "std::string", + "id": 8, + "offset": 200, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3382086694 + }, + "m_visualEffectRemoveName": { + "type": "std::string", + "id": 9, + "offset": 232, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1541697323 + }, + "m_onAddFunctorName": { + "type": "std::string", + "id": 10, + "offset": 280, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1561843107 + }, + "m_onRemoveFunctorName": { + "type": "std::string", + "id": 11, + "offset": 312, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2559017864 + }, + "m_stackingRule": { + "type": "enum STACKING_RULE", + "id": 12, + "offset": 144, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 431568889, + "enum_options": { + "STACKING_ALLOWED": 0, + "STACKING_NOSTACK": 1, + "STACKING_REPLACE": 2 + } + }, + "m_pulsePeriod": { + "type": "double", + "id": 13, + "offset": 360, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3960618585 + }, + "m_pulseEventName": { + "type": "std::string", + "id": 14, + "offset": 368, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1858926599 + } + } + }, + "1977648729": { + "name": "class ZoneTokenTrackingBehaviorTemplate*", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 1977648729, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + } + } + }, + "1545292680": { + "name": "class ProvidePetPower", + "bases": [ + "GameEffectBase", + "PropertyClass" + ], + "hash": 1545292680, + "properties": { + "m_currentTickCount": { + "type": "double", + "id": 0, + "offset": 80, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2533274692 + }, + "m_effectNameID": { + "type": "unsigned int", + "id": 1, + "offset": 96, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1204067144 + }, + "m_bIsOnPet": { + "type": "bool", + "id": 2, + "offset": 73, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 522593303 + }, + "m_originatorID": { + "type": "gid", + "id": 3, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1131810019 + }, + "m_itemSlotID": { + "type": "unsigned int", + "id": 4, + "offset": 112, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1895747595 + }, + "m_internalID": { + "type": "int", + "id": 5, + "offset": 92, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1643137924 + }, + "m_endTime": { + "type": "unsigned int", + "id": 6, + "offset": 88, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 716479635 + }, + "m_happinessCost": { + "type": "int", + "id": 7, + "offset": 128, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1107125310 + }, + "m_cooldown": { + "type": "int", + "id": 8, + "offset": 132, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1897549823 + }, + "m_usesPerCombat": { + "type": "int", + "id": 9, + "offset": 136, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1445312791 + }, + "m_combatTalent": { + "type": "bool", + "id": 10, + "offset": 140, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2113651857 + }, + "m_triggerName": { + "type": "std::string", + "id": 11, + "offset": 144, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3100183568 + }, + "m_extra1": { + "type": "std::string", + "id": 12, + "offset": 176, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1916008880 + }, + "m_extra2": { + "type": "std::string", + "id": 13, + "offset": 208, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1916008881 + }, + "m_lootTableName": { + "type": "std::string", + "id": 14, + "offset": 240, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2333333378 + }, + "m_powerDisplayName": { + "type": "std::string", + "id": 15, + "offset": 272, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2338393887 + }, + "m_requirementList": { + "type": "class SharedPointer", + "id": 16, + "offset": 304, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3783909798 + }, + "m_requirementFailedString": { + "type": "std::string", + "id": 17, + "offset": 320, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2051573416 + }, + "m_noPVP": { + "type": "bool", + "id": 18, + "offset": 356, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 806455846 + }, + "m_rampUp": { + "type": "int", + "id": 19, + "offset": 360, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 899539119 + }, + "m_description": { + "type": "std::string", + "id": 20, + "offset": 368, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1649374815 + }, + "m_myTurn": { + "type": "bool", + "id": 21, + "offset": 400, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 733913410 + } + } + }, + "1977648649": { + "name": "class ZoneTokenTrackingBehaviorTemplate", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 1977648649, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + } + } + }, + "1544496703": { + "name": "class DynamicSigilInstance", + "bases": [ + "PropertyClass" + ], + "hash": 1544496703, + "properties": { + "m_teams": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1624208548 + }, + "m_roundInfo": { + "type": "class SharedPointer", + "id": 1, + "offset": 128, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2078235549 + } + } + }, + "699404163": { + "name": "class PipFloatingTextCinematicAction*", + "bases": [ + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 699404163, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + } + } + }, + "1119272669": { + "name": "class PassInfo*", + "bases": [ + "PropertyClass" + ], + "hash": 1119272669, + "properties": { + "m_accessPassName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 268435463, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3398704837, + "enum_options": { + "__BASECLASS": "AccessPass" + } + }, + "m_zoneDisplayNames": { + "type": "std::string", + "id": 1, + "offset": 104, + "flags": 8388615, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1795597665 + }, + "m_crownsCost": { + "type": "int", + "id": 2, + "offset": 128, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1592212719 + }, + "m_msrpCost": { + "type": "int", + "id": 3, + "offset": 132, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1724602037 + }, + "m_options": { + "type": "std::string", + "id": 4, + "offset": 136, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2130561383 + }, + "m_accessMode": { + "type": "enum PassInfo::ZoneAccessMode", + "id": 5, + "offset": 160, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1953323843, + "enum_options": { + "AccessPass": 0, + "FreeToPlay": 1, + "NotReady": 2, + "SubscriberOnly": 3, + "__DEFAULT": "SubscriberOnly" + } + }, + "m_passType": { + "type": "enum PassInfo::AccessPassType", + "id": 6, + "offset": 164, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2228692515, + "enum_options": { + "Standard": 0, + "Timed": 1, + "Sample": 2, + "__DEFAULT": "Standard" + } + } + } + }, + "1117347935": { + "name": "class ActorMadlib", + "bases": [ + "PropertyClass" + ], + "hash": 1117347935, + "properties": { + "m_madlibBlock": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2391615468 + }, + "m_index": { + "type": "unsigned int", + "id": 1, + "offset": 88, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1009433893 + } + } + }, + "1544627514": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1544627514, + "properties": { + "m_partID": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 821435516 + }, + "m_data": { + "type": "unsigned int", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 430703463 + } + } + }, + "1116816543": { + "name": "class PetPowerControl*", + "bases": [ + "PetTalentControlBase", + "Window", + "PropertyClass" + ], + "hash": 1116816543, + "properties": { + "m_sName": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306437263 + }, + "m_Children": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 65667, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621225959 + }, + "m_Style": { + "type": "unsigned int", + "id": 2, + "offset": 152, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "SCALE_CHILDREN": 2, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "FOCUS_LOCKED": 64, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152 + } + }, + "m_Flags": { + "type": "unsigned int", + "id": 3, + "offset": 156, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } + }, + "m_Window": { + "type": "class Rect", + "id": 4, + "offset": 160, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3105139380 + }, + "m_fTargetAlpha": { + "type": "float", + "id": 5, + "offset": 212, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1809129834 + }, + "m_fDisabledAlpha": { + "type": "float", + "id": 6, + "offset": 216, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1389987675 + }, + "m_fAlpha": { + "type": "float", + "id": 7, + "offset": 208, + "flags": 65671, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 482130755 + }, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3623628394 + }, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2102211316 + }, + "m_sScript": { + "type": "std::string", + "id": 10, + "offset": 352, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1846695875 + }, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3389835433 + }, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547159940 + }, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513510520 + }, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3091503757 + } + } + }, + "1116399071": { + "name": "class BGSigilTimer*", + "bases": [ + "PropertyClass" + ], + "hash": 1116399071, + "properties": { + "m_state": { + "type": "unsigned int", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1021505934 + }, + "m_startTimeMS": { + "type": "unsigned int", + "id": 1, + "offset": 76, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 843207562 + }, + "m_snapshotT": { + "type": "float", + "id": 2, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1238335003 + }, + "m_snapshotMS": { + "type": "unsigned int", + "id": 3, + "offset": 84, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1589766845 + }, + "m_endTimeMS": { + "type": "unsigned int", + "id": 4, + "offset": 88, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 388403347 + }, + "m_durationMS": { + "type": "unsigned int", + "id": 5, + "offset": 92, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2175220755 + }, + "m_timeScale": { + "type": "float", + "id": 6, + "offset": 96, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 550426190 + } + } + }, + "699514598": { + "name": "class WizardStatTable", + "bases": [ + "PropertyClass" + ], + "hash": 699514598, + "properties": { + "m_tableName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3581058436 + }, + "m_schoolName": { + "type": "std::string", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3385349572 + }, + "m_modifyAll": { + "type": "bool", + "id": 2, + "offset": 140, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1269044724 + }, + "m_statType": { + "type": "enum WizardStatTable::STAT_TYPE", + "id": 3, + "offset": 144, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2100000712, + "enum_options": { + "STAT_TYPE_DAMAGE": 0, + "STAT_TYPE_ACCURACY": 1, + "STAT_TYPE_ARMOR_PIERCING": 2, + "STAT_TYPE_REDUCED_DAMAGE": 3, + "STAT_TYPE_REDUCED_ACCURACY": 4, + "STAT_TYPE_HEALING": 5, + "STAT_TYPE_POWER_PIP_CHANCE": 6, + "STAT_TYPE_MAX_MANA": 7, + "STAT_TYPE_MAX_HEALTH": 8, + "STAT_TYPE_PET_ACT_CHANCE": 9, + "STAT_TYPE_FLATDAMAGE": 10, + "STAT_TYPE_INC_HEALING": 11, + "STAT_TYPE_REDUCED_MAX_MANA": 12, + "STAT_TYPE_XP_PERCENT": 13, + "STAT_TYPE_GOLD_PERCENT": 14, + "STAT_TYPE_MAX_ENERGY": 15, + "STAT_TYPE_CRITICAL_HIT_RATING": 16, + "STAT_TYPE_BLOCK_RATING": 17, + "STAT_TYPE_ACCURACY_RATING": 18, + "STAT_TYPE_POWER_PIP_RATING": 19, + "STAT_TYPE_DAMAGE_RESISTANCE_RATING": 20, + "STAT_TYPE_BALANCE_MASTERY": 21, + "STAT_TYPE_DEATH_MASTERY": 22, + "STAT_TYPE_FIRE_MASTERY": 23, + "STAT_TYPE_ICE_MASTERY": 24, + "STAT_TYPE_LIFE_MASTERY": 25, + "STAT_TYPE_MYTH_MASTERY": 26, + "STAT_TYPE_STORM_MASTERY": 27, + "STAT_TYPE_STUN_RESISTANCE": 28, + "STAT_TYPE_FISHING_LUCK": 29, + "STAT_TYPE_SHADOW_PIP_CHANCE": 30, + "STAT_TYPE_REDUCED_DAMAGE_FLAT": 31, + "STAT_TYPE_WISP_BONUS": 32, + "STAT_TYPE_PIP_CONVERSION": 33, + "STAT_TYPE_SHADOW_PIP_RATING": 34, + "STAT_TYPE_ARCHMASTERY": 35, + "STAT_TYPE_ARCHMASTERY_PERCENTAGE": 36 + } + }, + "m_statVector": { + "type": "float", + "id": 4, + "offset": 152, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2189012326 + } + } + }, + "1981494607": { + "name": "class TriviaWindow*", + "bases": [ + "Window", + "PropertyClass" + ], + "hash": 1981494607, + "properties": { + "m_sName": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306437263 + }, + "m_Children": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621225959 + }, + "m_Style": { + "type": "unsigned int", + "id": 2, + "offset": 152, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "SCALE_CHILDREN": 2, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "FOCUS_LOCKED": 64, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152 + } + }, + "m_Flags": { + "type": "unsigned int", + "id": 3, + "offset": 156, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } + }, + "m_Window": { + "type": "class Rect", + "id": 4, + "offset": 160, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3105139380 + }, + "m_fTargetAlpha": { + "type": "float", + "id": 5, + "offset": 212, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1809129834 + }, + "m_fDisabledAlpha": { + "type": "float", + "id": 6, + "offset": 216, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1389987675 + }, + "m_fAlpha": { + "type": "float", + "id": 7, + "offset": 208, + "flags": 65671, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 482130755 + }, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3623628394 + }, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2102211316 + }, + "m_sScript": { + "type": "std::string", + "id": 10, + "offset": 352, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1846695875 + }, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3389835433 + }, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547159940 + }, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513510520 + }, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3091503757 + } + } + }, + "1116000943": { + "name": "class GameEffectBase", + "bases": [ + "PropertyClass" + ], + "hash": 1116000943, + "properties": { + "m_currentTickCount": { + "type": "double", + "id": 0, + "offset": 80, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2533274692 + }, + "m_effectNameID": { + "type": "unsigned int", + "id": 1, + "offset": 96, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1204067144 + }, + "m_bIsOnPet": { + "type": "bool", + "id": 2, + "offset": 73, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 522593303 + }, + "m_originatorID": { + "type": "gid", + "id": 3, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1131810019 + }, + "m_itemSlotID": { + "type": "unsigned int", + "id": 4, + "offset": 112, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1895747595 + }, + "m_internalID": { + "type": "int", + "id": 5, + "offset": 92, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1643137924 + }, + "m_endTime": { + "type": "unsigned int", + "id": 6, + "offset": 88, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 716479635 + } + } + }, + "1545297800": { + "name": "class ProvidePetPower*", + "bases": [ + "GameEffectBase", + "PropertyClass" + ], + "hash": 1545297800, + "properties": { + "m_currentTickCount": { + "type": "double", + "id": 0, + "offset": 80, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2533274692 + }, + "m_effectNameID": { + "type": "unsigned int", + "id": 1, + "offset": 96, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1204067144 + }, + "m_bIsOnPet": { + "type": "bool", + "id": 2, + "offset": 73, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 522593303 + }, + "m_originatorID": { + "type": "gid", + "id": 3, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1131810019 + }, + "m_itemSlotID": { + "type": "unsigned int", + "id": 4, + "offset": 112, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1895747595 + }, + "m_internalID": { + "type": "int", + "id": 5, + "offset": 92, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1643137924 + }, + "m_endTime": { + "type": "unsigned int", + "id": 6, + "offset": 88, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 716479635 + }, + "m_happinessCost": { + "type": "int", + "id": 7, + "offset": 128, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1107125310 + }, + "m_cooldown": { + "type": "int", + "id": 8, + "offset": 132, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1897549823 + }, + "m_usesPerCombat": { + "type": "int", + "id": 9, + "offset": 136, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1445312791 + }, + "m_combatTalent": { + "type": "bool", + "id": 10, + "offset": 140, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2113651857 + }, + "m_triggerName": { + "type": "std::string", + "id": 11, + "offset": 144, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3100183568 + }, + "m_extra1": { + "type": "std::string", + "id": 12, + "offset": 176, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1916008880 + }, + "m_extra2": { + "type": "std::string", + "id": 13, + "offset": 208, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1916008881 + }, + "m_lootTableName": { + "type": "std::string", + "id": 14, + "offset": 240, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2333333378 + }, + "m_powerDisplayName": { + "type": "std::string", + "id": 15, + "offset": 272, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2338393887 + }, + "m_requirementList": { + "type": "class SharedPointer", + "id": 16, + "offset": 304, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3783909798 + }, + "m_requirementFailedString": { + "type": "std::string", + "id": 17, + "offset": 320, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2051573416 + }, + "m_noPVP": { + "type": "bool", + "id": 18, + "offset": 356, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 806455846 + }, + "m_rampUp": { + "type": "int", + "id": 19, + "offset": 360, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 899539119 + }, + "m_description": { + "type": "std::string", + "id": 20, + "offset": 368, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1649374815 + }, + "m_myTurn": { + "type": "bool", + "id": 21, + "offset": 400, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 733913410 + } + } + }, + "699509478": { + "name": "class WizardStatTable*", + "bases": [ + "PropertyClass" + ], + "hash": 699509478, + "properties": { + "m_tableName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3581058436 + }, + "m_schoolName": { + "type": "std::string", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3385349572 + }, + "m_modifyAll": { + "type": "bool", + "id": 2, + "offset": 140, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1269044724 + }, + "m_statType": { + "type": "enum WizardStatTable::STAT_TYPE", + "id": 3, + "offset": 144, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2100000712, + "enum_options": { + "STAT_TYPE_DAMAGE": 0, + "STAT_TYPE_ACCURACY": 1, + "STAT_TYPE_ARMOR_PIERCING": 2, + "STAT_TYPE_REDUCED_DAMAGE": 3, + "STAT_TYPE_REDUCED_ACCURACY": 4, + "STAT_TYPE_HEALING": 5, + "STAT_TYPE_POWER_PIP_CHANCE": 6, + "STAT_TYPE_MAX_MANA": 7, + "STAT_TYPE_MAX_HEALTH": 8, + "STAT_TYPE_PET_ACT_CHANCE": 9, + "STAT_TYPE_FLATDAMAGE": 10, + "STAT_TYPE_INC_HEALING": 11, + "STAT_TYPE_REDUCED_MAX_MANA": 12, + "STAT_TYPE_XP_PERCENT": 13, + "STAT_TYPE_GOLD_PERCENT": 14, + "STAT_TYPE_MAX_ENERGY": 15, + "STAT_TYPE_CRITICAL_HIT_RATING": 16, + "STAT_TYPE_BLOCK_RATING": 17, + "STAT_TYPE_ACCURACY_RATING": 18, + "STAT_TYPE_POWER_PIP_RATING": 19, + "STAT_TYPE_DAMAGE_RESISTANCE_RATING": 20, + "STAT_TYPE_BALANCE_MASTERY": 21, + "STAT_TYPE_DEATH_MASTERY": 22, + "STAT_TYPE_FIRE_MASTERY": 23, + "STAT_TYPE_ICE_MASTERY": 24, + "STAT_TYPE_LIFE_MASTERY": 25, + "STAT_TYPE_MYTH_MASTERY": 26, + "STAT_TYPE_STORM_MASTERY": 27, + "STAT_TYPE_STUN_RESISTANCE": 28, + "STAT_TYPE_FISHING_LUCK": 29, + "STAT_TYPE_SHADOW_PIP_CHANCE": 30, + "STAT_TYPE_REDUCED_DAMAGE_FLAT": 31, + "STAT_TYPE_WISP_BONUS": 32, + "STAT_TYPE_PIP_CONVERSION": 33, + "STAT_TYPE_SHADOW_PIP_RATING": 34, + "STAT_TYPE_ARCHMASTERY": 35, + "STAT_TYPE_ARCHMASTERY_PERCENTAGE": 36 + } + }, + "m_statVector": { + "type": "float", + "id": 4, + "offset": 152, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2189012326 + } + } + }, + "1981028286": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1981028286, + "properties": { + "m_nodeList": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 3486511051 + } + } + }, + "1980250821": { + "name": "class ClientActorRenameCinematicAction*", + "bases": [ + "ActorRenameCinematicAction", + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 1980250821, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + }, + "m_newNamePattern": { + "type": "std::string", + "id": 2, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1519245892 + }, + "m_bActOnlyOnFirstActor": { + "type": "bool", + "id": 3, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2050856077 + } + } + }, + "1116493381": { + "name": "class SharedPointer", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 1116493381, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + }, + "m_maxReagentsPerStack": { + "type": "int", + "id": 1, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1052405942 + } + } + }, + "1545971467": { + "name": "class SharedPointer", + "bases": [ + "PetDerbyObstacleBehavior", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1545971467, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_laneNumber": { + "type": "int", + "id": 1, + "offset": 184, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 650028867 + }, + "m_distanceFromStart": { + "type": "int", + "id": 2, + "offset": 188, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 649349799 + } + } + }, + "701229577": { + "name": "class WizGameObjectTemplate", + "bases": [ + "GameObjectTemplate", + "CoreTemplate", + "PropertyClass" + ], + "hash": 701229577, + "properties": { + "m_behaviors": { + "type": "class BehaviorTemplate*", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1197808594 + }, + "m_objectName": { + "type": "std::string", + "id": 1, + "offset": 96, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2154940147 + }, + "m_templateID": { + "type": "unsigned int", + "id": 2, + "offset": 128, + "flags": 16777223, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1286746870 + }, + "m_visualID": { + "type": "unsigned int", + "id": 3, + "offset": 132, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1118778894 + }, + "m_adjectiveList": { + "type": "std::string", + "id": 4, + "offset": 248, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 3195213318 + }, + "m_exemptFromAOI": { + "type": "bool", + "id": 5, + "offset": 240, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1457879059 + }, + "m_displayName": { + "type": "std::string", + "id": 6, + "offset": 168, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2446900370 + }, + "m_description": { + "type": "std::string", + "id": 7, + "offset": 136, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1649374815 + }, + "m_nObjectType": { + "type": "enum ObjectType", + "id": 8, + "offset": 200, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2118905880, + "enum_options": { + "OT_UNDEFINED": 0, + "OT_PLAYER": 1, + "OT_NPC": 2, + "OT_PROP": 3, + "OT_OBJECT": 4, + "OT_HOUSE": 5, + "OT_KEY": 6, + "OT_OLD_KEY": 7, + "OT_DEED": 8, + "OT_MAIL": 9, + "OT_RECIPE": 17, + "OT_EQUIP_HEAD": 10, + "OT_EQUIP_CHEST": 11, + "OT_EQUIP_LEGS": 12, + "OT_EQUIP_HANDS": 13, + "OT_EQUIP_FINGER": 14, + "OT_EQUIP_FEET": 15, + "OT_EQUIP_EAR": 16, + "OT_BUILDING_BLOCK": 18, + "OT_BUILDING_BLOCK_SOLID": 19, + "OT_GOLF": 20, + "OT_DOOR": 21, + "OT_PET": 22, + "OT_FABRIC": 23, + "OT_WINDOW": 24, + "OT_ROOF": 25, + "OT_HORSE": 26, + "OT_STRUCTURE": 27, + "OT_HOUSING_TEXTURE": 28, + "OT_PLANT": 29 + } + }, + "m_sIcon": { + "type": "std::string", + "id": 9, + "offset": 208, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306259831 + }, + "m_lootTable": { + "type": "std::string", + "id": 10, + "offset": 280, + "flags": 268435463, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2539512673, + "enum_options": { + "__BASECLASS": "LootTable" + } + }, + "m_deathParticles": { + "type": "std::string", + "id": 11, + "offset": 296, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3201049672 + }, + "m_deathSound": { + "type": "std::string", + "id": 12, + "offset": 328, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1865613610 + }, + "m_hitSound": { + "type": "std::string", + "id": 13, + "offset": 360, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2746656777 + }, + "m_castSound": { + "type": "std::string", + "id": 14, + "offset": 392, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3343064815 + }, + "m_aggroSound": { + "type": "std::string", + "id": 15, + "offset": 424, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3421949940 + }, + "m_primarySchoolName": { + "type": "std::string", + "id": 16, + "offset": 456, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3211370408 + }, + "m_locationPreference": { + "type": "std::string", + "id": 17, + "offset": 488, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2817699507 + }, + "m_leashOffsetOverride": { + "type": "class SharedPointer", + "id": 18, + "offset": 528, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1692586788 + } + } + }, + "1545801038": { + "name": "class ConditionalSpellEffect*", + "bases": [ + "SpellEffect", + "PropertyClass" + ], + "hash": 1545801038, + "properties": { + "m_effectType": { + "type": "enum SpellEffect::kSpellEffects", + "id": 0, + "offset": 72, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2578255295, + "enum_options": { + "kInvalidSpellEffect": 0, + "kDamage": 1, + "kDamageNoCrit": 2, + "kHeal": 3, + "kHealPercent": 4, + "kSetHealPercent": 113, + "kStealHealth": 5, + "kReduceOverTime": 6, + "kDetonateOverTime": 7, + "kPushCharm": 8, + "kStealCharm": 9, + "kPushWard": 10, + "kStealWard": 11, + "kPushOverTime": 12, + "kStealOverTime": 13, + "kRemoveCharm": 14, + "kRemoveWard": 15, + "kRemoveOverTime": 16, + "kRemoveAura": 17, + "kSwapAll": 18, + "kSwapCharm": 19, + "kSwapWard": 20, + "kSwapOverTime": 21, + "kModifyIncomingDamage": 22, + "kModifyIncomingDamageFlat": 119, + "kMaximumIncomingDamage": 23, + "kModifyIncomingHeal": 24, + "kModifyIncomingHealFlat": 118, + "kModifyIncomingDamageType": 25, + "kModifyIncomingArmorPiercing": 26, + "kModifyOutgoingDamage": 27, + "kModifyOutgoingDamageFlat": 121, + "kModifyOutgoingHeal": 28, + "kModifyOutgoingHealFlat": 120, + "kModifyOutgoingDamageType": 29, + "kModifyOutgoingArmorPiercing": 30, + "kModifyOutgoingStealHealth": 31, + "kModifyIncomingStealHealth": 32, + "kBounceNext": 33, + "kBouncePrevious": 34, + "kBounceBack": 35, + "kBounceAll": 36, + "kAbsorbDamage": 37, + "kAbsorbHeal": 38, + "kModifyAccuracy": 39, + "kDispel": 40, + "kConfusion": 41, + "kCloakedCharm": 42, + "kCloakedWard": 43, + "kStunResist": 44, + "kClue": 111, + "kPipConversion": 45, + "kCritBoost": 46, + "kCritBlock": 47, + "kPolymorph": 48, + "kDelayCast": 49, + "kModifyCardCloak": 50, + "kModifyCardDamage": 51, + "kModifyCardAccuracy": 53, + "kModifyCardMutation": 54, + "kModifyCardRank": 55, + "kModifyCardArmorPiercing": 56, + "kSummonCreature": 65, + "kTeleportPlayer": 66, + "kStun": 67, + "kDampen": 68, + "kReshuffle": 69, + "kMindControl": 70, + "kModifyPips": 71, + "kModifyPowerPips": 72, + "kModifyShadowPips": 73, + "kModifyHate": 74, + "kDamageOverTime": 75, + "kHealOverTime": 76, + "kModifyPowerPipChance": 77, + "kModifyRank": 78, + "kStunBlock": 79, + "kRevealCloak": 80, + "kInstantKill": 81, + "kAfterlife": 82, + "kDeferredDamage": 83, + "kDamagePerTotalPipPower": 84, + "kModifyCardHeal": 52, + "kModifyCardCharm": 57, + "kModifyCardWard": 58, + "kModifyCardOutgoingDamage": 59, + "kModifyCardOutgoingAccuracy": 60, + "kModifyCardOutgoingHeal": 61, + "kModifyCardOutgoingArmorPiercing": 62, + "kModifyCardIncomingDamage": 63, + "kModifyCardAbsorbDamage": 64, + "kCloakedWardNoRemove": 86, + "kAddCombatTriggerList": 87, + "kRemoveCombatTriggerList": 88, + "kBacklashDamage": 89, + "kModifyBacklash": 90, + "kIntercept": 91, + "kShadowSelf": 92, + "kShadowCreature": 93, + "kModifyShadowCreatureLevel": 94, + "kSelectShadowCreatureAttackTarget": 95, + "kShadowDecrementTurn": 96, + "kCritBoostSchoolSpecific": 97, + "kSpawnCreature": 98, + "kUnPolymorph": 99, + "kPowerPipConversion": 100, + "kProtectCardBeneficial": 101, + "kProtectCardHarmful": 102, + "kProtectBeneficial": 103, + "kProtectHarmful": 104, + "kDivideDamage": 105, + "kCollectEssence": 106, + "kKillCreature": 107, + "kDispelBlock": 108, + "kConfusionBlock": 109, + "kModifyPipRoundRate": 110, + "kMaxHealthDamage": 112, + "kUntargetable": 114, + "kMakeTargetable": 115, + "kForceTargetable": 116, + "kRemoveStunBlock": 117, + "kExitCombat": 122, + "kSuspendPips": 123, + "kResumePips": 124, + "kAutoPass": 125, + "kStopAutoPass": 126, + "kVanish": 127, + "kStopVanish": 128, + "kMaxHealthHeal": 129, + "kHealByWard": 130, + "kTaunt": 131, + "kPacify": 132, + "kRemoveTargetRestriction": 133, + "kConvertHangingEffect": 134, + "kAddSpellToDeck": 135, + "kAddSpellToHand": 136, + "kModifyIncomingDamageOverTime": 137, + "kModifyIncomingHealOverTime": 138, + "kModifyCardDamagebyRank": 139, + "kPushConvertedCharm": 140, + "kStealConvertedCharm": 141, + "kPushConvertedWard": 142, + "kStealConvertedWard": 143, + "kPushConvertedOverTime": 144, + "kStealConvertedOverTime": 145, + "kRemoveConvertedCharm": 146, + "kRemoveConvertedWard": 147, + "kRemoveConvertedOverTime": 148, + "kModifyOverTimeDuration": 149, + "kModifySchoolPips": 150 + } + }, + "m_effectParam": { + "type": "int", + "id": 1, + "offset": 76, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 357920024 + }, + "m_disposition": { + "type": "enum SpellEffect::kHangingDisposition", + "id": 2, + "offset": 80, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1904841031, + "enum_options": { + "kBoth": 0, + "kBeneficial": 1, + "kHarmful": 2 + } + }, + "m_sDamageType": { + "type": "std::string", + "id": 3, + "offset": 88, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2501054223 + }, + "m_damageType": { + "type": "unsigned int", + "id": 4, + "offset": 84, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 737882766 + }, + "m_pipNum": { + "type": "int", + "id": 5, + "offset": 128, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 830827539 + }, + "m_actNum": { + "type": "int", + "id": 6, + "offset": 132, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 236824866 + }, + "m_effectTarget": { + "type": "enum SpellEffect::kEffectTarget", + "id": 7, + "offset": 140, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2458940523, + "enum_options": { + "kInvalidTarget": 0, + "kSpell": 1, + "kSpecificSpells": 2, + "kGlobal": 3, + "kEnemyTeam": 4, + "kEnemyTeamAllAtOnce": 5, + "kFriendlyTeam": 6, + "kFriendlyTeamAllAtOnce": 7, + "kEnemySingle": 8, + "kFriendlySingle": 9, + "kMinion": 10, + "kFriendlyMinion": 17, + "kEnemyMinion": 18, + "kSelf": 11, + "kAtLeastOneEnemy": 13, + "kPreselectedEnemySingle": 12, + "kMultiTargetEnemy": 14, + "kMultiTargetFriendly": 15, + "kFriendlySingleNotMe": 16 + } + }, + "m_numRounds": { + "type": "int", + "id": 8, + "offset": 144, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1229753829 + }, + "m_paramPerRound": { + "type": "int", + "id": 9, + "offset": 148, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 683234234 + }, + "m_healModifier": { + "type": "float", + "id": 10, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1317921248, + "enum_options": { + "__DEFAULT": "1.0" + } + }, + "m_spellTemplateID": { + "type": "unsigned int", + "id": 11, + "offset": 120, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 585567702 + }, + "m_enchantmentSpellTemplateID": { + "type": "unsigned int", + "id": 12, + "offset": 124, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 246955115 + }, + "m_act": { + "type": "bool", + "id": 13, + "offset": 136, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 269510283 + }, + "m_cloaked": { + "type": "bool", + "id": 14, + "offset": 157, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 7349510 + }, + "m_bypassProtection": { + "type": "bool", + "id": 15, + "offset": 159, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1657138252 + }, + "m_armorPiercingParam": { + "type": "int", + "id": 16, + "offset": 160, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2025530205 + }, + "m_chancePerTarget": { + "type": "int", + "id": 17, + "offset": 164, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 845426794 + }, + "m_protected": { + "type": "bool", + "id": 18, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1445655037 + }, + "m_converted": { + "type": "bool", + "id": 19, + "offset": 169, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1590428797 + }, + "m_rank": { + "type": "int", + "id": 20, + "offset": 208, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 219803942 + }, + "m_elements": { + "type": "class SharedPointer", + "id": 21, + "offset": 224, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2647383318 + } + } + }, + "1981046985": { + "name": "class BlobCacheInterface", + "bases": [ + "PropertyClass" + ], + "hash": 1981046985, + "properties": {} + }, + "1545613091": { + "name": "class RecipeTypeList*", + "bases": [ + "PropertyClass" + ], + "hash": 1545613091, + "properties": { + "m_allowedTypes": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 3134367000 + }, + "m_recipeList": { + "type": "std::string", + "id": 1, + "offset": 88, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 3311769839 + }, + "m_failedRequirementsList": { + "type": "std::string", + "id": 2, + "offset": 104, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1864028544 + }, + "m_noCooldown": { + "type": "bool", + "id": 3, + "offset": 120, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 751967189 + }, + "m_noCategories": { + "type": "bool", + "id": 4, + "offset": 121, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 767850966 + } + } + }, + "1116819615": { + "name": "class PetPowerControl", + "bases": [ + "PetTalentControlBase", + "Window", + "PropertyClass" + ], + "hash": 1116819615, + "properties": { + "m_sName": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306437263 + }, + "m_Children": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 65667, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621225959 + }, + "m_Style": { + "type": "unsigned int", + "id": 2, + "offset": 152, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "SCALE_CHILDREN": 2, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "FOCUS_LOCKED": 64, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152 + } + }, + "m_Flags": { + "type": "unsigned int", + "id": 3, + "offset": 156, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } + }, + "m_Window": { + "type": "class Rect", + "id": 4, + "offset": 160, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3105139380 + }, + "m_fTargetAlpha": { + "type": "float", + "id": 5, + "offset": 212, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1809129834 + }, + "m_fDisabledAlpha": { + "type": "float", + "id": 6, + "offset": 216, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1389987675 + }, + "m_fAlpha": { + "type": "float", + "id": 7, + "offset": 208, + "flags": 65671, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 482130755 + }, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3623628394 + }, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2102211316 + }, + "m_sScript": { + "type": "std::string", + "id": 10, + "offset": 352, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1846695875 + }, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3389835433 + }, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547159940 + }, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513510520 + }, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3091503757 + } + } + }, + "702487858": { + "name": "class LevelUpElixirPropertyRegistryEntry", + "bases": [ + "PropertyClass" + ], + "hash": 702487858, + "properties": { + "m_registryEntryName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1765562503 + }, + "m_value": { + "type": "int", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 812990455 + }, + "m_questRegistry": { + "type": "bool", + "id": 2, + "offset": 108, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1043261502 + }, + "m_questName": { + "type": "std::string", + "id": 3, + "offset": 112, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1702112846 + } + } + }, + "1981392230": { + "name": "class PetSnackBehaviorTemplate*", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 1981392230, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + }, + "m_maxReagentsPerStack": { + "type": "int", + "id": 1, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1052405942 + } + } + }, + "1545613187": { + "name": "class RecipeTypeList", + "bases": [ + "PropertyClass" + ], + "hash": 1545613187, + "properties": { + "m_allowedTypes": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 3134367000 + }, + "m_recipeList": { + "type": "std::string", + "id": 1, + "offset": 88, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 3311769839 + }, + "m_failedRequirementsList": { + "type": "std::string", + "id": 2, + "offset": 104, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1864028544 + }, + "m_noCooldown": { + "type": "bool", + "id": 3, + "offset": 120, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 751967189 + }, + "m_noCategories": { + "type": "bool", + "id": 4, + "offset": 121, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 767850966 + } + } + }, + "702053765": { + "name": "class SharedPointer", + "bases": [ + "ServiceOptionBase", + "PropertyClass" + ], + "hash": 702053765, + "properties": { + "m_serviceName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2206028813 + }, + "m_iconKey": { + "type": "std::string", + "id": 1, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2457138637 + }, + "m_displayKey": { + "type": "std::string", + "id": 2, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3023276954 + }, + "m_serviceIndex": { + "type": "unsigned int", + "id": 3, + "offset": 204, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2103126710 + }, + "m_forceInteract": { + "type": "bool", + "id": 4, + "offset": 200, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1705789564 + }, + "m_persona": { + "type": "std::string", + "id": 5, + "offset": 216, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2989527539 + } + } + }, + "1116980720": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1116980720, + "properties": {} + }, + "701416188": { + "name": "class SharedPointer", + "bases": [ + "SpellEffect", + "PropertyClass" + ], + "hash": 701416188, + "properties": { + "m_effectType": { + "type": "enum SpellEffect::kSpellEffects", + "id": 0, + "offset": 72, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2578255295, + "enum_options": { + "kInvalidSpellEffect": 0, + "kDamage": 1, + "kDamageNoCrit": 2, + "kHeal": 3, + "kHealPercent": 4, + "kSetHealPercent": 113, + "kStealHealth": 5, + "kReduceOverTime": 6, + "kDetonateOverTime": 7, + "kPushCharm": 8, + "kStealCharm": 9, + "kPushWard": 10, + "kStealWard": 11, + "kPushOverTime": 12, + "kStealOverTime": 13, + "kRemoveCharm": 14, + "kRemoveWard": 15, + "kRemoveOverTime": 16, + "kRemoveAura": 17, + "kSwapAll": 18, + "kSwapCharm": 19, + "kSwapWard": 20, + "kSwapOverTime": 21, + "kModifyIncomingDamage": 22, + "kModifyIncomingDamageFlat": 119, + "kMaximumIncomingDamage": 23, + "kModifyIncomingHeal": 24, + "kModifyIncomingHealFlat": 118, + "kModifyIncomingDamageType": 25, + "kModifyIncomingArmorPiercing": 26, + "kModifyOutgoingDamage": 27, + "kModifyOutgoingDamageFlat": 121, + "kModifyOutgoingHeal": 28, + "kModifyOutgoingHealFlat": 120, + "kModifyOutgoingDamageType": 29, + "kModifyOutgoingArmorPiercing": 30, + "kModifyOutgoingStealHealth": 31, + "kModifyIncomingStealHealth": 32, + "kBounceNext": 33, + "kBouncePrevious": 34, + "kBounceBack": 35, + "kBounceAll": 36, + "kAbsorbDamage": 37, + "kAbsorbHeal": 38, + "kModifyAccuracy": 39, + "kDispel": 40, + "kConfusion": 41, + "kCloakedCharm": 42, + "kCloakedWard": 43, + "kStunResist": 44, + "kClue": 111, + "kPipConversion": 45, + "kCritBoost": 46, + "kCritBlock": 47, + "kPolymorph": 48, + "kDelayCast": 49, + "kModifyCardCloak": 50, + "kModifyCardDamage": 51, + "kModifyCardAccuracy": 53, + "kModifyCardMutation": 54, + "kModifyCardRank": 55, + "kModifyCardArmorPiercing": 56, + "kSummonCreature": 65, + "kTeleportPlayer": 66, + "kStun": 67, + "kDampen": 68, + "kReshuffle": 69, + "kMindControl": 70, + "kModifyPips": 71, + "kModifyPowerPips": 72, + "kModifyShadowPips": 73, + "kModifyHate": 74, + "kDamageOverTime": 75, + "kHealOverTime": 76, + "kModifyPowerPipChance": 77, + "kModifyRank": 78, + "kStunBlock": 79, + "kRevealCloak": 80, + "kInstantKill": 81, + "kAfterlife": 82, + "kDeferredDamage": 83, + "kDamagePerTotalPipPower": 84, + "kModifyCardHeal": 52, + "kModifyCardCharm": 57, + "kModifyCardWard": 58, + "kModifyCardOutgoingDamage": 59, + "kModifyCardOutgoingAccuracy": 60, + "kModifyCardOutgoingHeal": 61, + "kModifyCardOutgoingArmorPiercing": 62, + "kModifyCardIncomingDamage": 63, + "kModifyCardAbsorbDamage": 64, + "kCloakedWardNoRemove": 86, + "kAddCombatTriggerList": 87, + "kRemoveCombatTriggerList": 88, + "kBacklashDamage": 89, + "kModifyBacklash": 90, + "kIntercept": 91, + "kShadowSelf": 92, + "kShadowCreature": 93, + "kModifyShadowCreatureLevel": 94, + "kSelectShadowCreatureAttackTarget": 95, + "kShadowDecrementTurn": 96, + "kCritBoostSchoolSpecific": 97, + "kSpawnCreature": 98, + "kUnPolymorph": 99, + "kPowerPipConversion": 100, + "kProtectCardBeneficial": 101, + "kProtectCardHarmful": 102, + "kProtectBeneficial": 103, + "kProtectHarmful": 104, + "kDivideDamage": 105, + "kCollectEssence": 106, + "kKillCreature": 107, + "kDispelBlock": 108, + "kConfusionBlock": 109, + "kModifyPipRoundRate": 110, + "kMaxHealthDamage": 112, + "kUntargetable": 114, + "kMakeTargetable": 115, + "kForceTargetable": 116, + "kRemoveStunBlock": 117, + "kExitCombat": 122, + "kSuspendPips": 123, + "kResumePips": 124, + "kAutoPass": 125, + "kStopAutoPass": 126, + "kVanish": 127, + "kStopVanish": 128, + "kMaxHealthHeal": 129, + "kHealByWard": 130, + "kTaunt": 131, + "kPacify": 132, + "kRemoveTargetRestriction": 133, + "kConvertHangingEffect": 134, + "kAddSpellToDeck": 135, + "kAddSpellToHand": 136, + "kModifyIncomingDamageOverTime": 137, + "kModifyIncomingHealOverTime": 138, + "kModifyCardDamagebyRank": 139, + "kPushConvertedCharm": 140, + "kStealConvertedCharm": 141, + "kPushConvertedWard": 142, + "kStealConvertedWard": 143, + "kPushConvertedOverTime": 144, + "kStealConvertedOverTime": 145, + "kRemoveConvertedCharm": 146, + "kRemoveConvertedWard": 147, + "kRemoveConvertedOverTime": 148, + "kModifyOverTimeDuration": 149, + "kModifySchoolPips": 150 + } + }, + "m_effectParam": { + "type": "int", + "id": 1, + "offset": 76, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 357920024 + }, + "m_disposition": { + "type": "enum SpellEffect::kHangingDisposition", + "id": 2, + "offset": 80, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1904841031, + "enum_options": { + "kBoth": 0, + "kBeneficial": 1, + "kHarmful": 2 + } + }, + "m_sDamageType": { + "type": "std::string", + "id": 3, + "offset": 88, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2501054223 + }, + "m_damageType": { + "type": "unsigned int", + "id": 4, + "offset": 84, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 737882766 + }, + "m_pipNum": { + "type": "int", + "id": 5, + "offset": 128, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 830827539 + }, + "m_actNum": { + "type": "int", + "id": 6, + "offset": 132, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 236824866 + }, + "m_effectTarget": { + "type": "enum SpellEffect::kEffectTarget", + "id": 7, + "offset": 140, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2458940523, + "enum_options": { + "kInvalidTarget": 0, + "kSpell": 1, + "kSpecificSpells": 2, + "kGlobal": 3, + "kEnemyTeam": 4, + "kEnemyTeamAllAtOnce": 5, + "kFriendlyTeam": 6, + "kFriendlyTeamAllAtOnce": 7, + "kEnemySingle": 8, + "kFriendlySingle": 9, + "kMinion": 10, + "kFriendlyMinion": 17, + "kEnemyMinion": 18, + "kSelf": 11, + "kAtLeastOneEnemy": 13, + "kPreselectedEnemySingle": 12, + "kMultiTargetEnemy": 14, + "kMultiTargetFriendly": 15, + "kFriendlySingleNotMe": 16 + } + }, + "m_numRounds": { + "type": "int", + "id": 8, + "offset": 144, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1229753829 + }, + "m_paramPerRound": { + "type": "int", + "id": 9, + "offset": 148, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 683234234 + }, + "m_healModifier": { + "type": "float", + "id": 10, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1317921248, + "enum_options": { + "__DEFAULT": "1.0" + } + }, + "m_spellTemplateID": { + "type": "unsigned int", + "id": 11, + "offset": 120, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 585567702 + }, + "m_enchantmentSpellTemplateID": { + "type": "unsigned int", + "id": 12, + "offset": 124, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 246955115 + }, + "m_act": { + "type": "bool", + "id": 13, + "offset": 136, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 269510283 + }, + "m_cloaked": { + "type": "bool", + "id": 14, + "offset": 157, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 7349510 + }, + "m_bypassProtection": { + "type": "bool", + "id": 15, + "offset": 159, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1657138252 + }, + "m_armorPiercingParam": { + "type": "int", + "id": 16, + "offset": 160, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2025530205 + }, + "m_chancePerTarget": { + "type": "int", + "id": 17, + "offset": 164, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 845426794 + }, + "m_protected": { + "type": "bool", + "id": 18, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1445655037 + }, + "m_converted": { + "type": "bool", + "id": 19, + "offset": 169, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1590428797 + }, + "m_rank": { + "type": "int", + "id": 20, + "offset": 208, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 219803942 + }, + "m_effectList": { + "type": "class SharedPointer", + "id": 21, + "offset": 224, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 707154804 + } + } + }, + "1981910857": { + "name": "class PolymorphImprovementRatingInfoList*", + "bases": [ + "PropertyClass" + ], + "hash": 1981910857, + "properties": { + "m_list": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 908909694 + } + } + }, + "1545841998": { + "name": "class ConditionalSpellEffect", + "bases": [ + "SpellEffect", + "PropertyClass" + ], + "hash": 1545841998, + "properties": { + "m_effectType": { + "type": "enum SpellEffect::kSpellEffects", + "id": 0, + "offset": 72, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2578255295, + "enum_options": { + "kInvalidSpellEffect": 0, + "kDamage": 1, + "kDamageNoCrit": 2, + "kHeal": 3, + "kHealPercent": 4, + "kSetHealPercent": 113, + "kStealHealth": 5, + "kReduceOverTime": 6, + "kDetonateOverTime": 7, + "kPushCharm": 8, + "kStealCharm": 9, + "kPushWard": 10, + "kStealWard": 11, + "kPushOverTime": 12, + "kStealOverTime": 13, + "kRemoveCharm": 14, + "kRemoveWard": 15, + "kRemoveOverTime": 16, + "kRemoveAura": 17, + "kSwapAll": 18, + "kSwapCharm": 19, + "kSwapWard": 20, + "kSwapOverTime": 21, + "kModifyIncomingDamage": 22, + "kModifyIncomingDamageFlat": 119, + "kMaximumIncomingDamage": 23, + "kModifyIncomingHeal": 24, + "kModifyIncomingHealFlat": 118, + "kModifyIncomingDamageType": 25, + "kModifyIncomingArmorPiercing": 26, + "kModifyOutgoingDamage": 27, + "kModifyOutgoingDamageFlat": 121, + "kModifyOutgoingHeal": 28, + "kModifyOutgoingHealFlat": 120, + "kModifyOutgoingDamageType": 29, + "kModifyOutgoingArmorPiercing": 30, + "kModifyOutgoingStealHealth": 31, + "kModifyIncomingStealHealth": 32, + "kBounceNext": 33, + "kBouncePrevious": 34, + "kBounceBack": 35, + "kBounceAll": 36, + "kAbsorbDamage": 37, + "kAbsorbHeal": 38, + "kModifyAccuracy": 39, + "kDispel": 40, + "kConfusion": 41, + "kCloakedCharm": 42, + "kCloakedWard": 43, + "kStunResist": 44, + "kClue": 111, + "kPipConversion": 45, + "kCritBoost": 46, + "kCritBlock": 47, + "kPolymorph": 48, + "kDelayCast": 49, + "kModifyCardCloak": 50, + "kModifyCardDamage": 51, + "kModifyCardAccuracy": 53, + "kModifyCardMutation": 54, + "kModifyCardRank": 55, + "kModifyCardArmorPiercing": 56, + "kSummonCreature": 65, + "kTeleportPlayer": 66, + "kStun": 67, + "kDampen": 68, + "kReshuffle": 69, + "kMindControl": 70, + "kModifyPips": 71, + "kModifyPowerPips": 72, + "kModifyShadowPips": 73, + "kModifyHate": 74, + "kDamageOverTime": 75, + "kHealOverTime": 76, + "kModifyPowerPipChance": 77, + "kModifyRank": 78, + "kStunBlock": 79, + "kRevealCloak": 80, + "kInstantKill": 81, + "kAfterlife": 82, + "kDeferredDamage": 83, + "kDamagePerTotalPipPower": 84, + "kModifyCardHeal": 52, + "kModifyCardCharm": 57, + "kModifyCardWard": 58, + "kModifyCardOutgoingDamage": 59, + "kModifyCardOutgoingAccuracy": 60, + "kModifyCardOutgoingHeal": 61, + "kModifyCardOutgoingArmorPiercing": 62, + "kModifyCardIncomingDamage": 63, + "kModifyCardAbsorbDamage": 64, + "kCloakedWardNoRemove": 86, + "kAddCombatTriggerList": 87, + "kRemoveCombatTriggerList": 88, + "kBacklashDamage": 89, + "kModifyBacklash": 90, + "kIntercept": 91, + "kShadowSelf": 92, + "kShadowCreature": 93, + "kModifyShadowCreatureLevel": 94, + "kSelectShadowCreatureAttackTarget": 95, + "kShadowDecrementTurn": 96, + "kCritBoostSchoolSpecific": 97, + "kSpawnCreature": 98, + "kUnPolymorph": 99, + "kPowerPipConversion": 100, + "kProtectCardBeneficial": 101, + "kProtectCardHarmful": 102, + "kProtectBeneficial": 103, + "kProtectHarmful": 104, + "kDivideDamage": 105, + "kCollectEssence": 106, + "kKillCreature": 107, + "kDispelBlock": 108, + "kConfusionBlock": 109, + "kModifyPipRoundRate": 110, + "kMaxHealthDamage": 112, + "kUntargetable": 114, + "kMakeTargetable": 115, + "kForceTargetable": 116, + "kRemoveStunBlock": 117, + "kExitCombat": 122, + "kSuspendPips": 123, + "kResumePips": 124, + "kAutoPass": 125, + "kStopAutoPass": 126, + "kVanish": 127, + "kStopVanish": 128, + "kMaxHealthHeal": 129, + "kHealByWard": 130, + "kTaunt": 131, + "kPacify": 132, + "kRemoveTargetRestriction": 133, + "kConvertHangingEffect": 134, + "kAddSpellToDeck": 135, + "kAddSpellToHand": 136, + "kModifyIncomingDamageOverTime": 137, + "kModifyIncomingHealOverTime": 138, + "kModifyCardDamagebyRank": 139, + "kPushConvertedCharm": 140, + "kStealConvertedCharm": 141, + "kPushConvertedWard": 142, + "kStealConvertedWard": 143, + "kPushConvertedOverTime": 144, + "kStealConvertedOverTime": 145, + "kRemoveConvertedCharm": 146, + "kRemoveConvertedWard": 147, + "kRemoveConvertedOverTime": 148, + "kModifyOverTimeDuration": 149, + "kModifySchoolPips": 150 + } + }, + "m_effectParam": { + "type": "int", + "id": 1, + "offset": 76, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 357920024 + }, + "m_disposition": { + "type": "enum SpellEffect::kHangingDisposition", + "id": 2, + "offset": 80, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1904841031, + "enum_options": { + "kBoth": 0, + "kBeneficial": 1, + "kHarmful": 2 + } + }, + "m_sDamageType": { + "type": "std::string", + "id": 3, + "offset": 88, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2501054223 + }, + "m_damageType": { + "type": "unsigned int", + "id": 4, + "offset": 84, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 737882766 + }, + "m_pipNum": { + "type": "int", + "id": 5, + "offset": 128, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 830827539 + }, + "m_actNum": { + "type": "int", + "id": 6, + "offset": 132, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 236824866 + }, + "m_effectTarget": { + "type": "enum SpellEffect::kEffectTarget", + "id": 7, + "offset": 140, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2458940523, + "enum_options": { + "kInvalidTarget": 0, + "kSpell": 1, + "kSpecificSpells": 2, + "kGlobal": 3, + "kEnemyTeam": 4, + "kEnemyTeamAllAtOnce": 5, + "kFriendlyTeam": 6, + "kFriendlyTeamAllAtOnce": 7, + "kEnemySingle": 8, + "kFriendlySingle": 9, + "kMinion": 10, + "kFriendlyMinion": 17, + "kEnemyMinion": 18, + "kSelf": 11, + "kAtLeastOneEnemy": 13, + "kPreselectedEnemySingle": 12, + "kMultiTargetEnemy": 14, + "kMultiTargetFriendly": 15, + "kFriendlySingleNotMe": 16 + } + }, + "m_numRounds": { + "type": "int", + "id": 8, + "offset": 144, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1229753829 + }, + "m_paramPerRound": { + "type": "int", + "id": 9, + "offset": 148, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 683234234 + }, + "m_healModifier": { + "type": "float", + "id": 10, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1317921248, + "enum_options": { + "__DEFAULT": "1.0" + } + }, + "m_spellTemplateID": { + "type": "unsigned int", + "id": 11, + "offset": 120, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 585567702 + }, + "m_enchantmentSpellTemplateID": { + "type": "unsigned int", + "id": 12, + "offset": 124, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 246955115 + }, + "m_act": { + "type": "bool", + "id": 13, + "offset": 136, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 269510283 + }, + "m_cloaked": { + "type": "bool", + "id": 14, + "offset": 157, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 7349510 + }, + "m_bypassProtection": { + "type": "bool", + "id": 15, + "offset": 159, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1657138252 + }, + "m_armorPiercingParam": { + "type": "int", + "id": 16, + "offset": 160, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2025530205 + }, + "m_chancePerTarget": { + "type": "int", + "id": 17, + "offset": 164, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 845426794 + }, + "m_protected": { + "type": "bool", + "id": 18, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1445655037 + }, + "m_converted": { + "type": "bool", + "id": 19, + "offset": 169, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1590428797 + }, + "m_rank": { + "type": "int", + "id": 20, + "offset": 208, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 219803942 + }, + "m_elements": { + "type": "class SharedPointer", + "id": 21, + "offset": 224, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2647383318 + } + } + }, + "1981908297": { + "name": "class PolymorphImprovementRatingInfoList", + "bases": [ + "PropertyClass" + ], + "hash": 1981908297, + "properties": { + "m_list": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 908909694 + } + } + }, + "1119240874": { + "name": "class LootInfo*", + "bases": [ + "LootInfoBase", + "PropertyClass" + ], + "hash": 1119240874, + "properties": { + "m_lootType": { + "type": "enum LootInfo::LOOT_TYPE", + "id": 0, + "offset": 72, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1591891442, + "enum_options": { + "LOOT_TYPE_NONE": 0, + "LOOT_TYPE_GOLD": 1, + "LOOT_TYPE_MANA": 2, + "LOOT_TYPE_ITEM": 3, + "LOOT_TYPE_TREASURE_CARD": 4, + "LOOT_TYPE_MAGIC_XP": 5, + "LOOT_TYPE_ADD_SPELL": 6, + "LOOT_TYPE_MAX_HEALTH": 7, + "LOOT_TYPE_MAX_GOLD": 8, + "LOOT_TYPE_MAX_MANA": 9, + "LOOT_TYPE_MAX_POTION": 10, + "LOOT_TYPE_TRAINING_POINTS": 11, + "LOOT_TYPE_RECIPE": 12, + "LOOT_TYPE_CRAFTING_SLOT": 13, + "LOOT_TYPE_REAGENT": 14, + "LOOT_TYPE_PETSNACK": 15, + "LOOT_TYPE_GARDENING_XP": 16, + "LOOT_TYPE_PET_XP": 17, + "LOOT_TYPE_TREASURE_TABLE": 18, + "LOOT_TYPE_ARENA_POINTS": 19, + "LOOT_TYPE_ARENA_BONUS_POINTS": 20, + "LOOT_TYPE_GROUP": 21, + "LOOT_TYPE_FISHING_XP": 22, + "LOOT_TYPE_EVENT_CURRENCY_1": 24, + "LOOT_TYPE_EVENT_CURRENCY_2": 25, + "LOOT_TYPE_PVP_CURRENCY": 26, + "LOOT_TYPE_PVP_CURRENCY_BONUS": 27, + "LOOT_TYPE_PVP_TOURNEY_CURRENCY": 28, + "LOOT_TYPE_PVP_TOURNEY_CURRENCY_BONUS": 29, + "LOOT_TYPE_FURNITURE_ESSENCE": 30 + } + } + } + }, + "702118365": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 702118365, + "properties": { + "m_playerList": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1909774945 + } + } + }, + "1119240234": { + "name": "class LootInfo", + "bases": [ + "LootInfoBase", + "PropertyClass" + ], + "hash": 1119240234, + "properties": { + "m_lootType": { + "type": "enum LootInfo::LOOT_TYPE", + "id": 0, + "offset": 72, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1591891442, + "enum_options": { + "LOOT_TYPE_NONE": 0, + "LOOT_TYPE_GOLD": 1, + "LOOT_TYPE_MANA": 2, + "LOOT_TYPE_ITEM": 3, + "LOOT_TYPE_TREASURE_CARD": 4, + "LOOT_TYPE_MAGIC_XP": 5, + "LOOT_TYPE_ADD_SPELL": 6, + "LOOT_TYPE_MAX_HEALTH": 7, + "LOOT_TYPE_MAX_GOLD": 8, + "LOOT_TYPE_MAX_MANA": 9, + "LOOT_TYPE_MAX_POTION": 10, + "LOOT_TYPE_TRAINING_POINTS": 11, + "LOOT_TYPE_RECIPE": 12, + "LOOT_TYPE_CRAFTING_SLOT": 13, + "LOOT_TYPE_REAGENT": 14, + "LOOT_TYPE_PETSNACK": 15, + "LOOT_TYPE_GARDENING_XP": 16, + "LOOT_TYPE_PET_XP": 17, + "LOOT_TYPE_TREASURE_TABLE": 18, + "LOOT_TYPE_ARENA_POINTS": 19, + "LOOT_TYPE_ARENA_BONUS_POINTS": 20, + "LOOT_TYPE_GROUP": 21, + "LOOT_TYPE_FISHING_XP": 22, + "LOOT_TYPE_EVENT_CURRENCY_1": 24, + "LOOT_TYPE_EVENT_CURRENCY_2": 25, + "LOOT_TYPE_PVP_CURRENCY": 26, + "LOOT_TYPE_PVP_CURRENCY_BONUS": 27, + "LOOT_TYPE_PVP_TOURNEY_CURRENCY": 28, + "LOOT_TYPE_PVP_TOURNEY_CURRENCY_BONUS": 29, + "LOOT_TYPE_FURNITURE_ESSENCE": 30 + } + } + } + }, + "1546372162": { + "name": "class SharedPointer", + "bases": [ + "Window", + "PropertyClass" + ], + "hash": 1546372162, + "properties": { + "m_sName": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306437263 + }, + "m_Children": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621225959 + }, + "m_Style": { + "type": "unsigned int", + "id": 2, + "offset": 152, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "SCALE_CHILDREN": 2, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "FOCUS_LOCKED": 64, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152 + } + }, + "m_Flags": { + "type": "unsigned int", + "id": 3, + "offset": 156, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } + }, + "m_Window": { + "type": "class Rect", + "id": 4, + "offset": 160, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3105139380 + }, + "m_fTargetAlpha": { + "type": "float", + "id": 5, + "offset": 212, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1809129834 + }, + "m_fDisabledAlpha": { + "type": "float", + "id": 6, + "offset": 216, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1389987675 + }, + "m_fAlpha": { + "type": "float", + "id": 7, + "offset": 208, + "flags": 65671, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 482130755 + }, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3623628394 + }, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2102211316 + }, + "m_sScript": { + "type": "std::string", + "id": 10, + "offset": 352, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1846695875 + }, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3389835433 + }, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547159940 + }, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513510520 + }, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3091503757 + } + } + }, + "702486322": { + "name": "class LevelUpElixirPropertyRegistryEntry*", + "bases": [ + "PropertyClass" + ], + "hash": 702486322, + "properties": { + "m_registryEntryName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1765562503 + }, + "m_value": { + "type": "int", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 812990455 + }, + "m_questRegistry": { + "type": "bool", + "id": 2, + "offset": 108, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1043261502 + }, + "m_questName": { + "type": "std::string", + "id": 3, + "offset": 112, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1702112846 + } + } + }, + "1982878661": { + "name": "class HousingTextureBehaviorTemplate", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 1982878661, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + }, + "m_textureType": { + "type": "enum HousingTextureType", + "id": 1, + "offset": 120, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1680179944, + "enum_options": { + "HTT_FLOOR": 0, + "HTT_WALL": 1 + } + }, + "m_textureFilename": { + "type": "std::string", + "id": 2, + "offset": 128, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2208648365 + } + } + }, + "1982718503": { + "name": "class SharedPointer", + "bases": [ + "GameEffectBase", + "PropertyClass" + ], + "hash": 1982718503, + "properties": { + "m_currentTickCount": { + "type": "double", + "id": 0, + "offset": 80, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2533274692 + }, + "m_effectNameID": { + "type": "unsigned int", + "id": 1, + "offset": 96, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1204067144 + }, + "m_bIsOnPet": { + "type": "bool", + "id": 2, + "offset": 73, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 522593303 + }, + "m_originatorID": { + "type": "gid", + "id": 3, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1131810019 + }, + "m_itemSlotID": { + "type": "unsigned int", + "id": 4, + "offset": 112, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1895747595 + }, + "m_internalID": { + "type": "int", + "id": 5, + "offset": 92, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1643137924 + }, + "m_endTime": { + "type": "unsigned int", + "id": 6, + "offset": 88, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 716479635 + }, + "m_spellName": { + "type": "std::string", + "id": 7, + "offset": 128, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2688485244 + }, + "m_percentChance": { + "type": "int", + "id": 8, + "offset": 160, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 385662509 + } + } + }, + "1119272029": { + "name": "class PassInfo", + "bases": [ + "PropertyClass" + ], + "hash": 1119272029, + "properties": { + "m_accessPassName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 268435463, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3398704837, + "enum_options": { + "__BASECLASS": "AccessPass" + } + }, + "m_zoneDisplayNames": { + "type": "std::string", + "id": 1, + "offset": 104, + "flags": 8388615, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1795597665 + }, + "m_crownsCost": { + "type": "int", + "id": 2, + "offset": 128, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1592212719 + }, + "m_msrpCost": { + "type": "int", + "id": 3, + "offset": 132, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1724602037 + }, + "m_options": { + "type": "std::string", + "id": 4, + "offset": 136, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2130561383 + }, + "m_accessMode": { + "type": "enum PassInfo::ZoneAccessMode", + "id": 5, + "offset": 160, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1953323843, + "enum_options": { + "AccessPass": 0, + "FreeToPlay": 1, + "NotReady": 2, + "SubscriberOnly": 3, + "__DEFAULT": "SubscriberOnly" + } + }, + "m_passType": { + "type": "enum PassInfo::AccessPassType", + "id": 6, + "offset": 164, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2228692515, + "enum_options": { + "Standard": 0, + "Timed": 1, + "Sample": 2, + "__DEFAULT": "Standard" + } + } + } + }, + "1549430778": { + "name": "class ModifyPipRoundRateData*", + "bases": [ + "PropertyClass" + ], + "hash": 1549430778, + "properties": { + "m_delta": { + "type": "int", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 791787588 + }, + "m_rounds": { + "type": "int", + "id": 1, + "offset": 76, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 916427829 + } + } + }, + "703231399": { + "name": "class ActorResurrectCinematicAction", + "bases": [ + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 703231399, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + } + } + }, + "1547966317": { + "name": "class RecentWizardInfoList*", + "bases": [ + "PropertyClass" + ], + "hash": 1547966317, + "properties": { + "m_recentWizardInfoList": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 3708234369 + } + } + }, + "702675844": { + "name": "class ProxyGeometry", + "bases": [ + "PropertyClass" + ], + "hash": 702675844, + "properties": { + "m_sName": { + "type": "std::string", + "id": 0, + "offset": 88, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306437263 + }, + "m_baseOrientation": { + "type": "class Matrix3x3", + "id": 1, + "offset": 176, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1692424809 + }, + "m_basePosition": { + "type": "class Vector3D", + "id": 2, + "offset": 224, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1912112658 + }, + "m_fCurrentScale": { + "type": "float", + "id": 3, + "offset": 236, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 234778792 + }, + "m_surfaceType": { + "type": "std::string", + "id": 4, + "offset": 280, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2553995974 + }, + "m_pInitialParams": { + "type": "class SharedPointer", + "id": 5, + "offset": 240, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1000009870 + } + } + }, + "1121346738": { + "name": "class MinigameInfo", + "bases": [ + "PropertyClass" + ], + "hash": 1121346738, + "properties": { + "m_name": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1717359772 + }, + "m_zone": { + "type": "std::string", + "id": 1, + "offset": 104, + "flags": 268435463, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1717806295, + "enum_options": { + "__BASECLASS": "ZoneData" + } + }, + "m_iconArt": { + "type": "std::string", + "id": 2, + "offset": 136, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2457128171 + }, + "m_scoreThresholds": { + "type": "int", + "id": 3, + "offset": 168, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1790576374 + }, + "m_rewardTable": { + "type": "std::string", + "id": 4, + "offset": 192, + "flags": 268435463, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2569041800, + "enum_options": { + "__BASECLASS": "LootTable" + } + } + } + }, + "1547395044": { + "name": "class SharedPointer", + "bases": [ + "ConditionalSpellEffectRequirement", + "Requirement", + "PropertyClass" + ], + "hash": 1547395044, + "properties": { + "m_applyNOT": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1746328074, + "enum_options": { + "__DEFAULT": 0 + } + }, + "m_operator": { + "type": "enum Requirement::Operator", + "id": 1, + "offset": 76, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2672792317, + "enum_options": { + "ROP_AND": 0, + "ROP_OR": 1, + "__DEFAULT": "ROP_AND" + } + }, + "m_targetType": { + "type": "enum ConditionalSpellEffectRequirement::RequirementTarget", + "id": 2, + "offset": 80, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547737902, + "enum_options": { + "RT_Caster": 0, + "RT_Target": 1 + } + }, + "m_minPips": { + "type": "int", + "id": 3, + "offset": 88, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2062924954 + }, + "m_maxPips": { + "type": "int", + "id": 4, + "offset": 92, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1761701020 + } + } + }, + "702675841": { + "name": "class ProxyGeometry*", + "bases": [ + "PropertyClass" + ], + "hash": 702675841, + "properties": { + "m_sName": { + "type": "std::string", + "id": 0, + "offset": 88, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306437263 + }, + "m_baseOrientation": { + "type": "class Matrix3x3", + "id": 1, + "offset": 176, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1692424809 + }, + "m_basePosition": { + "type": "class Vector3D", + "id": 2, + "offset": 224, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1912112658 + }, + "m_fCurrentScale": { + "type": "float", + "id": 3, + "offset": 236, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 234778792 + }, + "m_surfaceType": { + "type": "std::string", + "id": 4, + "offset": 280, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2553995974 + }, + "m_pInitialParams": { + "type": "class SharedPointer", + "id": 5, + "offset": 240, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1000009870 + } + } + }, + "1986538696": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1986538696, + "properties": { + "m_settings": { + "type": "unsigned int", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1279804446 + }, + "m_maycastChance": { + "type": "float", + "id": 1, + "offset": 76, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1532158347 + } + } + }, + "1119821118": { + "name": "class AlphaMaskTextureD3D", + "bases": [ + "TextureD3D", + "Texture", + "PropertyClass" + ], + "hash": 1119821118, + "properties": { + "m_sFilename": { + "type": "std::string", + "id": 0, + "offset": 104, + "flags": 131207, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2431512111 + }, + "m_bAlphaChannel": { + "type": "bool", + "id": 1, + "offset": 137, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1780697684 + }, + "m_bDoubleSided": { + "type": "bool", + "id": 2, + "offset": 138, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1054874233 + }, + "m_bMipMap": { + "type": "bool", + "id": 3, + "offset": 139, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1791042393 + } + } + }, + "1547353383": { + "name": "class SharedPointer", + "bases": [ + "ControlText", + "Window", + "PropertyClass" + ], + "hash": 1547353383, + "properties": { + "m_sName": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306437263 + }, + "m_Children": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621225959 + }, + "m_Style": { + "type": "unsigned int", + "id": 2, + "offset": 152, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152, + "DO_NOT_WRAP": 134217728, + "FIT_TEXT": 268435456 + } + }, + "m_Flags": { + "type": "unsigned int", + "id": 3, + "offset": 156, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } + }, + "m_Window": { + "type": "class Rect", + "id": 4, + "offset": 160, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3105139380 + }, + "m_fTargetAlpha": { + "type": "float", + "id": 5, + "offset": 212, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1809129834 + }, + "m_fDisabledAlpha": { + "type": "float", + "id": 6, + "offset": 216, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1389987675 + }, + "m_fAlpha": { + "type": "float", + "id": 7, + "offset": 208, + "flags": 65671, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 482130755 + }, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3623628394 + }, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2102211316 + }, + "m_sScript": { + "type": "std::string", + "id": 10, + "offset": 352, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1846695875 + }, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3389835433 + }, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547159940 + }, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513510520 + }, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3091503757 + }, + "m_sText": { + "type": "std::wstring", + "id": 16, + "offset": 584, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2102642960 + }, + "m_sTooltip": { + "type": "std::wstring", + "id": 17, + "offset": 616, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1680475798 + }, + "m_bUseDropShadow": { + "type": "bool", + "id": 18, + "offset": 653, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 93063037 + }, + "m_bUseOutline": { + "type": "bool", + "id": 19, + "offset": 654, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 744292994 + }, + "m_bEnableWordWrap": { + "type": "bool", + "id": 20, + "offset": 655, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 430904562 + }, + "m_bEnableToggle": { + "type": "bool", + "id": 21, + "offset": 652, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1937994142 + }, + "m_nLeadingAdjust": { + "type": "int", + "id": 22, + "offset": 656, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1559480167 + } + } + }, + "1986283116": { + "name": "class WizPetTemplate", + "bases": [ + "WizGameObjectTemplate", + "GameObjectTemplate", + "CoreTemplate", + "PropertyClass" + ], + "hash": 1986283116, + "properties": { + "m_behaviors": { + "type": "class BehaviorTemplate*", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1197808594 + }, + "m_objectName": { + "type": "std::string", + "id": 1, + "offset": 96, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2154940147 + }, + "m_templateID": { + "type": "unsigned int", + "id": 2, + "offset": 128, + "flags": 16777223, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1286746870 + }, + "m_visualID": { + "type": "unsigned int", + "id": 3, + "offset": 132, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1118778894 + }, + "m_adjectiveList": { + "type": "std::string", + "id": 4, + "offset": 248, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 3195213318 + }, + "m_exemptFromAOI": { + "type": "bool", + "id": 5, + "offset": 240, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1457879059 + }, + "m_displayName": { + "type": "std::string", + "id": 6, + "offset": 168, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2446900370 + }, + "m_description": { + "type": "std::string", + "id": 7, + "offset": 136, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1649374815 + }, + "m_nObjectType": { + "type": "enum ObjectType", + "id": 8, + "offset": 200, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2118905880, + "enum_options": { + "OT_UNDEFINED": 0, + "OT_PLAYER": 1, + "OT_NPC": 2, + "OT_PROP": 3, + "OT_OBJECT": 4, + "OT_HOUSE": 5, + "OT_KEY": 6, + "OT_OLD_KEY": 7, + "OT_DEED": 8, + "OT_MAIL": 9, + "OT_RECIPE": 17, + "OT_EQUIP_HEAD": 10, + "OT_EQUIP_CHEST": 11, + "OT_EQUIP_LEGS": 12, + "OT_EQUIP_HANDS": 13, + "OT_EQUIP_FINGER": 14, + "OT_EQUIP_FEET": 15, + "OT_EQUIP_EAR": 16, + "OT_BUILDING_BLOCK": 18, + "OT_BUILDING_BLOCK_SOLID": 19, + "OT_GOLF": 20, + "OT_DOOR": 21, + "OT_PET": 22, + "OT_FABRIC": 23, + "OT_WINDOW": 24, + "OT_ROOF": 25, + "OT_HORSE": 26, + "OT_STRUCTURE": 27, + "OT_HOUSING_TEXTURE": 28, + "OT_PLANT": 29 + } + }, + "m_sIcon": { + "type": "std::string", + "id": 9, + "offset": 208, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306259831 + }, + "m_lootTable": { + "type": "std::string", + "id": 10, + "offset": 280, + "flags": 268435463, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2539512673, + "enum_options": { + "__BASECLASS": "LootTable" + } + }, + "m_deathParticles": { + "type": "std::string", + "id": 11, + "offset": 296, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3201049672 + }, + "m_deathSound": { + "type": "std::string", + "id": 12, + "offset": 328, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1865613610 + }, + "m_hitSound": { + "type": "std::string", + "id": 13, + "offset": 360, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2746656777 + }, + "m_castSound": { + "type": "std::string", + "id": 14, + "offset": 392, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3343064815 + }, + "m_aggroSound": { + "type": "std::string", + "id": 15, + "offset": 424, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3421949940 + }, + "m_primarySchoolName": { + "type": "std::string", + "id": 16, + "offset": 456, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3211370408 + }, + "m_locationPreference": { + "type": "std::string", + "id": 17, + "offset": 488, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2817699507 + }, + "m_leashOffsetOverride": { + "type": "class SharedPointer", + "id": 18, + "offset": 528, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1692586788 + } + } + }, + "1119490211": { + "name": "class PetJewelControl", + "bases": [ + "PetTalentControlBase", + "Window", + "PropertyClass" + ], + "hash": 1119490211, + "properties": { + "m_sName": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306437263 + }, + "m_Children": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 65667, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621225959 + }, + "m_Style": { + "type": "unsigned int", + "id": 2, + "offset": 152, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "SCALE_CHILDREN": 2, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "FOCUS_LOCKED": 64, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152 + } + }, + "m_Flags": { + "type": "unsigned int", + "id": 3, + "offset": 156, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } + }, + "m_Window": { + "type": "class Rect", + "id": 4, + "offset": 160, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3105139380 + }, + "m_fTargetAlpha": { + "type": "float", + "id": 5, + "offset": 212, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1809129834 + }, + "m_fDisabledAlpha": { + "type": "float", + "id": 6, + "offset": 216, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1389987675 + }, + "m_fAlpha": { + "type": "float", + "id": 7, + "offset": 208, + "flags": 65671, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 482130755 + }, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3623628394 + }, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2102211316 + }, + "m_sScript": { + "type": "std::string", + "id": 10, + "offset": 352, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1846695875 + }, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3389835433 + }, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547159940 + }, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513510520 + }, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3091503757 + } + } + }, + "1984261221": { + "name": "class SharedPointer", + "bases": [ + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 1984261221, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + }, + "m_cloaked": { + "type": "bool", + "id": 2, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 7349510 + } + } + }, + "1119487139": { + "name": "class PetJewelControl*", + "bases": [ + "PetTalentControlBase", + "Window", + "PropertyClass" + ], + "hash": 1119487139, + "properties": { + "m_sName": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306437263 + }, + "m_Children": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 65667, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621225959 + }, + "m_Style": { + "type": "unsigned int", + "id": 2, + "offset": 152, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "SCALE_CHILDREN": 2, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "FOCUS_LOCKED": 64, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152 + } + }, + "m_Flags": { + "type": "unsigned int", + "id": 3, + "offset": 156, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } + }, + "m_Window": { + "type": "class Rect", + "id": 4, + "offset": 160, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3105139380 + }, + "m_fTargetAlpha": { + "type": "float", + "id": 5, + "offset": 212, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1809129834 + }, + "m_fDisabledAlpha": { + "type": "float", + "id": 6, + "offset": 216, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1389987675 + }, + "m_fAlpha": { + "type": "float", + "id": 7, + "offset": 208, + "flags": 65671, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 482130755 + }, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3623628394 + }, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2102211316 + }, + "m_sScript": { + "type": "std::string", + "id": 10, + "offset": 352, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1846695875 + }, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3389835433 + }, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547159940 + }, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513510520 + }, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3091503757 + } + } + }, + "1547366408": { + "name": "class SharedPointer", + "bases": [ + "GameEffectBase", + "PropertyClass" + ], + "hash": 1547366408, + "properties": { + "m_currentTickCount": { + "type": "double", + "id": 0, + "offset": 80, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2533274692 + }, + "m_effectNameID": { + "type": "unsigned int", + "id": 1, + "offset": 96, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1204067144 + }, + "m_bIsOnPet": { + "type": "bool", + "id": 2, + "offset": 73, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 522593303 + }, + "m_originatorID": { + "type": "gid", + "id": 3, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1131810019 + }, + "m_itemSlotID": { + "type": "unsigned int", + "id": 4, + "offset": 112, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1895747595 + }, + "m_internalID": { + "type": "int", + "id": 5, + "offset": 92, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1643137924 + }, + "m_endTime": { + "type": "unsigned int", + "id": 6, + "offset": 88, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 716479635 + }, + "m_pipsGiven": { + "type": "int", + "id": 7, + "offset": 128, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1346249167 + }, + "m_powerPipsGiven": { + "type": "int", + "id": 8, + "offset": 132, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 377908508 + } + } + }, + "702901064": { + "name": "class ProvideCombatTriggerInfo", + "bases": [ + "GameEffectInfo", + "PropertyClass" + ], + "hash": 702901064, + "properties": { + "m_effectName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2029161513 + }, + "m_triggerName": { + "type": "std::string", + "id": 1, + "offset": 104, + "flags": 268435463, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3100183568, + "enum_options": { + "__BASECLASS": "CombatTriggerList" + } + }, + "m_triggerDescription": { + "type": "class SharedPointer", + "id": 2, + "offset": 136, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2619655202 + } + } + }, + "703062343": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 703062343, + "properties": { + "m_target": { + "type": "int", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 977980321 + }, + "m_mult": { + "type": "float", + "id": 1, + "offset": 76, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 309847129 + }, + "m_blocked": { + "type": "bool", + "id": 2, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 863437063 + } + } + }, + "1986283212": { + "name": "class WizPetTemplate*", + "bases": [ + "WizGameObjectTemplate", + "GameObjectTemplate", + "CoreTemplate", + "PropertyClass" + ], + "hash": 1986283212, + "properties": { + "m_behaviors": { + "type": "class BehaviorTemplate*", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1197808594 + }, + "m_objectName": { + "type": "std::string", + "id": 1, + "offset": 96, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2154940147 + }, + "m_templateID": { + "type": "unsigned int", + "id": 2, + "offset": 128, + "flags": 16777223, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1286746870 + }, + "m_visualID": { + "type": "unsigned int", + "id": 3, + "offset": 132, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1118778894 + }, + "m_adjectiveList": { + "type": "std::string", + "id": 4, + "offset": 248, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 3195213318 + }, + "m_exemptFromAOI": { + "type": "bool", + "id": 5, + "offset": 240, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1457879059 + }, + "m_displayName": { + "type": "std::string", + "id": 6, + "offset": 168, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2446900370 + }, + "m_description": { + "type": "std::string", + "id": 7, + "offset": 136, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1649374815 + }, + "m_nObjectType": { + "type": "enum ObjectType", + "id": 8, + "offset": 200, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2118905880, + "enum_options": { + "OT_UNDEFINED": 0, + "OT_PLAYER": 1, + "OT_NPC": 2, + "OT_PROP": 3, + "OT_OBJECT": 4, + "OT_HOUSE": 5, + "OT_KEY": 6, + "OT_OLD_KEY": 7, + "OT_DEED": 8, + "OT_MAIL": 9, + "OT_RECIPE": 17, + "OT_EQUIP_HEAD": 10, + "OT_EQUIP_CHEST": 11, + "OT_EQUIP_LEGS": 12, + "OT_EQUIP_HANDS": 13, + "OT_EQUIP_FINGER": 14, + "OT_EQUIP_FEET": 15, + "OT_EQUIP_EAR": 16, + "OT_BUILDING_BLOCK": 18, + "OT_BUILDING_BLOCK_SOLID": 19, + "OT_GOLF": 20, + "OT_DOOR": 21, + "OT_PET": 22, + "OT_FABRIC": 23, + "OT_WINDOW": 24, + "OT_ROOF": 25, + "OT_HORSE": 26, + "OT_STRUCTURE": 27, + "OT_HOUSING_TEXTURE": 28, + "OT_PLANT": 29 + } + }, + "m_sIcon": { + "type": "std::string", + "id": 9, + "offset": 208, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306259831 + }, + "m_lootTable": { + "type": "std::string", + "id": 10, + "offset": 280, + "flags": 268435463, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2539512673, + "enum_options": { + "__BASECLASS": "LootTable" + } + }, + "m_deathParticles": { + "type": "std::string", + "id": 11, + "offset": 296, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3201049672 + }, + "m_deathSound": { + "type": "std::string", + "id": 12, + "offset": 328, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1865613610 + }, + "m_hitSound": { + "type": "std::string", + "id": 13, + "offset": 360, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2746656777 + }, + "m_castSound": { + "type": "std::string", + "id": 14, + "offset": 392, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3343064815 + }, + "m_aggroSound": { + "type": "std::string", + "id": 15, + "offset": 424, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3421949940 + }, + "m_primarySchoolName": { + "type": "std::string", + "id": 16, + "offset": 456, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3211370408 + }, + "m_locationPreference": { + "type": "std::string", + "id": 17, + "offset": 488, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2817699507 + }, + "m_leashOffsetOverride": { + "type": "class SharedPointer", + "id": 18, + "offset": 528, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1692586788 + } + } + }, + "1119606947": { + "name": "class FishingXPConfig*", + "bases": [ + "PropertyClass" + ], + "hash": 1119606947, + "properties": { + "m_levelInfo": { + "type": "class FishingLevelInfo*", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 4227148014 + }, + "m_maxLevel": { + "type": "unsigned char", + "id": 1, + "offset": 88, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 783962734 + } + } + }, + "1547966277": { + "name": "class RecentWizardInfoList", + "bases": [ + "PropertyClass" + ], + "hash": 1547966277, + "properties": { + "m_recentWizardInfoList": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 3708234369 + } + } + }, + "1119603875": { + "name": "class FishingXPConfig", + "bases": [ + "PropertyClass" + ], + "hash": 1119603875, + "properties": { + "m_levelInfo": { + "type": "class FishingLevelInfo*", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 4227148014 + }, + "m_maxLevel": { + "type": "unsigned char", + "id": 1, + "offset": 88, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 783962734 + } + } + }, + "703559079": { + "name": "class ActorResurrectCinematicAction*", + "bases": [ + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 703559079, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + } + } + }, + "1987787674": { + "name": "class TieredSpellGroupVisibility*", + "bases": [ + "PropertyClass" + ], + "hash": 1987787674, + "properties": { + "m_visibility": { + "type": "unsigned char", + "id": 0, + "offset": 72, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2550959800 + }, + "m_canUpgrade": { + "type": "int", + "id": 1, + "offset": 88, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 17860820 + } + } + }, + "1548349503": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1548349503, + "properties": { + "m_eventName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3493260286 + }, + "m_actions": { + "type": "class SharedPointer", + "id": 1, + "offset": 104, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 3152419933 + } + } + }, + "703512445": { + "name": "class ControlPopupButton*", + "bases": [ + "ControlButton", + "Window", + "PropertyClass" + ], + "hash": 703512445, + "properties": { + "m_sName": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306437263 + }, + "m_Children": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621225959 + }, + "m_Style": { + "type": "unsigned int", + "id": 2, + "offset": 152, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152, + "POPDOWN_SIBLINGS": 67108864, + "DISABLE_CHILDREN": 134217728, + "HIDE_SIBLINGS": 268435456, + "POPUP_ON_HOVER": 536870912 + } + }, + "m_Flags": { + "type": "unsigned int", + "id": 3, + "offset": 156, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } + }, + "m_Window": { + "type": "class Rect", + "id": 4, + "offset": 160, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3105139380 + }, + "m_fTargetAlpha": { + "type": "float", + "id": 5, + "offset": 212, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1809129834 + }, + "m_fDisabledAlpha": { + "type": "float", + "id": 6, + "offset": 216, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1389987675 + }, + "m_fAlpha": { + "type": "float", + "id": 7, + "offset": 208, + "flags": 65671, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 482130755 + }, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3623628394 + }, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2102211316 + }, + "m_sScript": { + "type": "std::string", + "id": 10, + "offset": 352, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1846695875 + }, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3389835433 + }, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547159940 + }, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513510520 + }, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3091503757 + }, + "m_bToggle": { + "type": "bool", + "id": 16, + "offset": 608, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2071810903 + }, + "m_bButtonDown": { + "type": "bool", + "id": 17, + "offset": 609, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 840041705 + }, + "m_sLabel": { + "type": "std::wstring", + "id": 18, + "offset": 616, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2207009163 + }, + "m_labelOffset": { + "type": "class Rect", + "id": 19, + "offset": 832, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1990646723 + }, + "m_pButton": { + "type": "class SharedPointer", + "id": 20, + "offset": 656, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1543855875 + }, + "m_HotKey": { + "type": "unsigned int", + "id": 21, + "offset": 672, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1631553409 + }, + "m_Color": { + "type": "class Color", + "id": 22, + "offset": 676, + "flags": 262279, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1753714077 + }, + "m_bCursorOver": { + "type": "bool", + "id": 23, + "offset": 689, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 283981103 + }, + "m_bAbortWhenCursorNotOver": { + "type": "bool", + "id": 24, + "offset": 706, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 325405258 + }, + "m_bHotKeyDown": { + "type": "bool", + "id": 25, + "offset": 680, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 616989185 + }, + "m_fTime": { + "type": "float", + "id": 26, + "offset": 684, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 883746156 + }, + "m_bGreyed": { + "type": "bool", + "id": 27, + "offset": 688, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1566556053 + }, + "m_fMaxScale": { + "type": "float", + "id": 28, + "offset": 692, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2070186635 + }, + "m_fScaleSpeed": { + "type": "float", + "id": 29, + "offset": 696, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1457135702 + }, + "m_bUseDropShadow": { + "type": "bool", + "id": 30, + "offset": 704, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 93063037 + }, + "m_bUseOutline": { + "type": "bool", + "id": 31, + "offset": 705, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 744292994 + }, + "m_pGreyedState": { + "type": "class SharedPointer", + "id": 32, + "offset": 768, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2703352263 + }, + "m_pNormalState": { + "type": "class SharedPointer", + "id": 33, + "offset": 752, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1887909808 + }, + "m_pHighlightedState": { + "type": "class SharedPointer", + "id": 34, + "offset": 784, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2200177608 + }, + "m_pSelectedState": { + "type": "class SharedPointer", + "id": 35, + "offset": 800, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2266776432 + }, + "m_pDepressedState": { + "type": "class SharedPointer", + "id": 36, + "offset": 816, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1878185798 + }, + "m_bUp": { + "type": "bool", + "id": 37, + "offset": 880, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 269510906 + } + } + }, + "1987324370": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1987324370, + "properties": {} + }, + "1548148071": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1548148071, + "properties": { + "m_loot": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 444353250 + } + } + }, + "1986669241": { + "name": "class MapInfoRequirementsPassedList*", + "bases": [ + "PropertyClass" + ], + "hash": 1986669241, + "properties": { + "m_idList": { + "type": "unsigned int", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 761088246 + } + } + }, + "1120788266": { + "name": "class SharedPointer", + "bases": [ + "AtticBehavior", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1120788266, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_containerGID": { + "type": "gid", + "id": 1, + "offset": 112, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 550557519 + }, + "m_atticItemCount": { + "type": "int", + "id": 2, + "offset": 120, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 184605671 + } + } + }, + "1120049690": { + "name": "class SpellbookBehaviorTemplate*", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 1120049690, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + }, + "m_spellbook": { + "type": "std::string", + "id": 1, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2689219302 + } + } + }, + "1986996921": { + "name": "class MapInfoRequirementsPassedList", + "bases": [ + "PropertyClass" + ], + "hash": 1986996921, + "properties": { + "m_idList": { + "type": "unsigned int", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 761088246 + } + } + }, + "1549113201": { + "name": "class SharedPointer", + "bases": [ + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 1549113201, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + } + } + }, + "709422724": { + "name": "class SharedPointer", + "bases": [ + "HousingMusicPlayerBehaviorBase", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 709422724, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_playlist": { + "type": "unsigned int", + "id": 1, + "offset": 112, + "flags": 65567, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1986295487 + }, + "m_currentSelection": { + "type": "unsigned int", + "id": 2, + "offset": 128, + "flags": 65567, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 906571734 + }, + "m_playStyle": { + "type": "unsigned int", + "id": 3, + "offset": 132, + "flags": 65567, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 768737172 + }, + "m_musicData": { + "type": "std::string", + "id": 4, + "offset": 136, + "flags": 551, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2963606294 + } + } + }, + "266780769": { + "name": "class ClientEventDrivenCinematic", + "bases": [ + "ClientCinematic", + "Cinematic", + "PropertyClass" + ], + "hash": 266780769, + "properties": {} + }, + "705182922": { + "name": "class SharedPointer", + "bases": [ + "ControlEdit", + "Window", + "PropertyClass" + ], + "hash": 705182922, + "properties": { + "m_sName": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306437263 + }, + "m_Children": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621225959 + }, + "m_Style": { + "type": "unsigned int", + "id": 2, + "offset": 152, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152, + "FORCE_NUMERIC": 16777216, + "FORCE_ALPHA": 268435456, + "FORCE_ALPHANUMERIC": 536870912, + "FORCE_INTEGER": 33554432, + "FORCE_POSITIVE": 67108864, + "FORCE_RANGE": 134217728 + } + }, + "m_Flags": { + "type": "unsigned int", + "id": 3, + "offset": 156, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } + }, + "m_Window": { + "type": "class Rect", + "id": 4, + "offset": 160, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3105139380 + }, + "m_fTargetAlpha": { + "type": "float", + "id": 5, + "offset": 212, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1809129834 + }, + "m_fDisabledAlpha": { + "type": "float", + "id": 6, + "offset": 216, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1389987675 + }, + "m_fAlpha": { + "type": "float", + "id": 7, + "offset": 208, + "flags": 65671, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 482130755 + }, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3623628394 + }, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2102211316 + }, + "m_sScript": { + "type": "std::string", + "id": 10, + "offset": 352, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1846695875 + }, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3389835433 + }, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547159940 + }, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513510520 + }, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3091503757 + }, + "m_sText": { + "type": "std::wstring", + "id": 16, + "offset": 584, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2102642960 + }, + "m_nMaxLength": { + "type": "int", + "id": 17, + "offset": 620, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1183478416 + }, + "m_bPassword": { + "type": "bool", + "id": 18, + "offset": 624, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1604468200 + }, + "m_bLog": { + "type": "bool", + "id": 19, + "offset": 625, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 221687287 + }, + "m_previousNext": { + "type": "bool", + "id": 20, + "offset": 627, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 858581071 + }, + "m_nMaxLogSize": { + "type": "int", + "id": 21, + "offset": 712, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 779573899 + }, + "m_bEditing": { + "type": "bool", + "id": 22, + "offset": 616, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1243218553 + }, + "m_bAllowPaste": { + "type": "bool", + "id": 23, + "offset": 626, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1129316721 + }, + "m_nLogPosition": { + "type": "int", + "id": 24, + "offset": 704, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1120160767 + }, + "m_nCursor": { + "type": "int", + "id": 25, + "offset": 716, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1876782150 + }, + "m_nEditBegin": { + "type": "int", + "id": 26, + "offset": 720, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1066592403 + }, + "m_nEditEnd": { + "type": "int", + "id": 27, + "offset": 724, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1560905669 + }, + "m_sSavedText": { + "type": "std::wstring", + "id": 28, + "offset": 728, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2197953283 + }, + "m_fCursorBlinkSpeed": { + "type": "float", + "id": 29, + "offset": 760, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2232655228 + }, + "m_fCursorTimer": { + "type": "float", + "id": 30, + "offset": 764, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1929942748 + }, + "m_bCursorBlink": { + "type": "bool", + "id": 31, + "offset": 768, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 683441507 + }, + "m_fMinRange": { + "type": "double", + "id": 32, + "offset": 776, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3079523396 + }, + "m_fMaxRange": { + "type": "double", + "id": 33, + "offset": 784, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3876551814 + }, + "m_nPrecision": { + "type": "int", + "id": 34, + "offset": 792, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1404974196 + }, + "m_bDeleteOnFirstChar": { + "type": "bool", + "id": 35, + "offset": 618, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 902105643 + } + } + }, + "1120852648": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1120852648, + "properties": { + "m_name": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1717359772 + }, + "m_duration": { + "type": "float", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 920323453 + }, + "m_actions": { + "type": "class SharedPointer", + "id": 2, + "offset": 112, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1380578687 + }, + "m_stageRelationships": { + "type": "class SharedPointer", + "id": 3, + "offset": 128, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 499983354 + } + } + }, + "704375042": { + "name": "class CastleToursBehaviorTemplate", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 704375042, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + } + } + }, + "1987787664": { + "name": "class TieredSpellGroupVisibility", + "bases": [ + "PropertyClass" + ], + "hash": 1987787664, + "properties": { + "m_visibility": { + "type": "unsigned char", + "id": 0, + "offset": 72, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2550959800 + }, + "m_canUpgrade": { + "type": "int", + "id": 1, + "offset": 88, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 17860820 + } + } + }, + "1549500791": { + "name": "class QuestEffectTemplate*", + "bases": [ + "ContainerEffectTemplate", + "GameEffectTemplate", + "PropertyClass" + ], + "hash": 1549500791, + "properties": { + "m_effectName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2029161513 + }, + "m_effectCategory": { + "type": "std::string", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1852673222 + }, + "m_sortOrder": { + "type": "int", + "id": 2, + "offset": 148, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1411218206 + }, + "m_duration": { + "type": "double", + "id": 3, + "offset": 192, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2727932435 + }, + "m_stackingCategories": { + "type": "std::string", + "id": 4, + "offset": 160, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1774497525 + }, + "m_isPersistent": { + "type": "bool", + "id": 5, + "offset": 153, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 923861920 + }, + "m_bIsOnPet": { + "type": "bool", + "id": 6, + "offset": 154, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 522593303 + }, + "m_isPublic": { + "type": "bool", + "id": 7, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1728439822 + }, + "m_visualEffectAddName": { + "type": "std::string", + "id": 8, + "offset": 200, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3382086694 + }, + "m_visualEffectRemoveName": { + "type": "std::string", + "id": 9, + "offset": 232, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1541697323 + }, + "m_onAddFunctorName": { + "type": "std::string", + "id": 10, + "offset": 280, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1561843107 + }, + "m_onRemoveFunctorName": { + "type": "std::string", + "id": 11, + "offset": 312, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2559017864 + }, + "m_stackingRule": { + "type": "enum STACKING_RULE", + "id": 12, + "offset": 144, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 431568889, + "enum_options": { + "STACKING_ALLOWED": 0, + "STACKING_NOSTACK": 1, + "STACKING_REPLACE": 2 + } + }, + "m_startReqs": { + "type": "class SharedPointer", + "id": 13, + "offset": 360, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3147529602 + }, + "m_containerEffects": { + "type": "class SharedPointer", + "id": 14, + "offset": 376, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 957354392 + }, + "m_accompanyID": { + "type": "unsigned int", + "id": 15, + "offset": 392, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1462123093 + } + } + }, + "704374850": { + "name": "class CastleToursBehaviorTemplate*", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 704374850, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + } + } + }, + "270737236": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 270737236, + "properties": { + "m_maxCopiesEachTemplate": { + "type": "int", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 482850544 + }, + "m_itemDegradationTime": { + "type": "float", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 500224183 + }, + "m_priceMods": { + "type": "class AuctionPriceMods*", + "id": 2, + "offset": 88, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2703049879 + }, + "m_craftedPriceMods": { + "type": "class AuctionPriceMods*", + "id": 3, + "offset": 112, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2084157488 + }, + "m_observerTimeout": { + "type": "int", + "id": 4, + "offset": 160, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 562500777 + }, + "m_maxReagentTemplateCopies": { + "type": "int", + "id": 5, + "offset": 76, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1246482213 + }, + "m_reagentPriceMods": { + "type": "class AuctionPriceMods*", + "id": 6, + "offset": 136, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1253990333 + }, + "m_templatesInStockList": { + "type": "unsigned int", + "id": 7, + "offset": 184, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 977195955 + } + } + }, + "1549455354": { + "name": "class ModifyPipRoundRateData", + "bases": [ + "PropertyClass" + ], + "hash": 1549455354, + "properties": { + "m_delta": { + "type": "int", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 791787588 + }, + "m_rounds": { + "type": "int", + "id": 1, + "offset": 76, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 916427829 + } + } + }, + "267962543": { + "name": "class ClientElixirBenefitEffect*", + "bases": [ + "ElixirBenefitEffect", + "GameEffectBase", + "PropertyClass" + ], + "hash": 267962543, + "properties": { + "m_currentTickCount": { + "type": "double", + "id": 0, + "offset": 80, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2533274692 + }, + "m_effectNameID": { + "type": "unsigned int", + "id": 1, + "offset": 96, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1204067144 + }, + "m_bIsOnPet": { + "type": "bool", + "id": 2, + "offset": 73, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 522593303 + }, + "m_originatorID": { + "type": "gid", + "id": 3, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1131810019 + }, + "m_itemSlotID": { + "type": "unsigned int", + "id": 4, + "offset": 112, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1895747595 + }, + "m_internalID": { + "type": "int", + "id": 5, + "offset": 92, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1643137924 + }, + "m_endTime": { + "type": "unsigned int", + "id": 6, + "offset": 88, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 716479635 + }, + "m_flags": { + "type": "unsigned int", + "id": 7, + "offset": 128, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1005801050 + } + } + }, + "1121431901": { + "name": "class LeaveTeamUpdate", + "bases": [ + "TournamentUpdate", + "PropertyClass" + ], + "hash": 1121431901, + "properties": { + "m_actorID": { + "type": "gid", + "id": 0, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1371104126 + }, + "m_teamID": { + "type": "gid", + "id": 1, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 982102220 + } + } + }, + "1987918967": { + "name": "class SharedPointer", + "bases": [ + "ProxyGeometry", + "PropertyClass" + ], + "hash": 1987918967, + "properties": { + "m_sName": { + "type": "std::string", + "id": 0, + "offset": 88, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306437263 + }, + "m_baseOrientation": { + "type": "class Matrix3x3", + "id": 1, + "offset": 176, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1692424809 + }, + "m_basePosition": { + "type": "class Vector3D", + "id": 2, + "offset": 224, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1912112658 + }, + "m_fCurrentScale": { + "type": "float", + "id": 3, + "offset": 236, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 234778792 + }, + "m_surfaceType": { + "type": "std::string", + "id": 4, + "offset": 280, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2553995974 + }, + "m_pInitialParams": { + "type": "class SharedPointer", + "id": 5, + "offset": 240, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1000009870 + }, + "m_verts": { + "type": "struct SimpleVert", + "id": 6, + "offset": 368, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1433503234 + }, + "m_faces": { + "type": "struct SimpleFace", + "id": 7, + "offset": 320, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1413288912 + }, + "m_normals": { + "type": "struct SimpleVert", + "id": 8, + "offset": 344, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2067861162 + } + } + }, + "267792475": { + "name": "class SharedPointer", + "bases": [ + "Window", + "PropertyClass" + ], + "hash": 267792475, + "properties": { + "m_sName": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306437263 + }, + "m_Children": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621225959 + }, + "m_Style": { + "type": "unsigned int", + "id": 2, + "offset": 152, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "SCALE_CHILDREN": 2, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "FOCUS_LOCKED": 64, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152 + } + }, + "m_Flags": { + "type": "unsigned int", + "id": 3, + "offset": 156, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } + }, + "m_Window": { + "type": "class Rect", + "id": 4, + "offset": 160, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3105139380 + }, + "m_fTargetAlpha": { + "type": "float", + "id": 5, + "offset": 212, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1809129834 + }, + "m_fDisabledAlpha": { + "type": "float", + "id": 6, + "offset": 216, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1389987675 + }, + "m_fAlpha": { + "type": "float", + "id": 7, + "offset": 208, + "flags": 65671, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 482130755 + }, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3623628394 + }, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2102211316 + }, + "m_sScript": { + "type": "std::string", + "id": 10, + "offset": 352, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1846695875 + }, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3389835433 + }, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547159940 + }, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513510520 + }, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3091503757 + }, + "m_frameImage": { + "type": "class SharedPointer", + "id": 16, + "offset": 584, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3125725509 + } + } + }, + "1121428829": { + "name": "class LeaveTeamUpdate*", + "bases": [ + "TournamentUpdate", + "PropertyClass" + ], + "hash": 1121428829, + "properties": { + "m_actorID": { + "type": "gid", + "id": 0, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1371104126 + }, + "m_teamID": { + "type": "gid", + "id": 1, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 982102220 + } + } + }, + "705172821": { + "name": "class ReqGardeningLevel*", + "bases": [ + "ReqNumeric", + "Requirement", + "PropertyClass" + ], + "hash": 705172821, + "properties": { + "m_applyNOT": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1746328074, + "enum_options": { + "__DEFAULT": 0 + } + }, + "m_operator": { + "type": "enum Requirement::Operator", + "id": 1, + "offset": 76, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2672792317, + "enum_options": { + "ROP_AND": 0, + "ROP_OR": 1, + "__DEFAULT": "ROP_AND" + } + }, + "m_numericValue": { + "type": "float", + "id": 2, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 521915239 + }, + "m_operatorType": { + "type": "enum ReqNumeric::OPERATOR_TYPE", + "id": 3, + "offset": 84, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2228122961, + "enum_options": { + "OPERATOR_UNKNOWN": 4294967295, + "OPERATOR_EQUALS": 0, + "OPERATOR_GREATER_THAN": 1, + "OPERATOR_LESS_THAN": 2, + "OPERATOR_GREATER_THAN_EQ": 3, + "OPERATOR_LESS_THAN_EQ": 4 + } + } + } + }, + "1987825302": { + "name": "class ReagentItemTemplate*", + "bases": [ + "WizItemTemplate", + "ItemTemplate", + "GameObjectTemplate", + "CoreTemplate", + "PropertyClass" + ], + "hash": 1987825302, + "properties": { + "m_behaviors": { + "type": "class BehaviorTemplate*", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1197808594 + }, + "m_objectName": { + "type": "std::string", + "id": 1, + "offset": 96, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2154940147 + }, + "m_templateID": { + "type": "unsigned int", + "id": 2, + "offset": 128, + "flags": 16777223, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1286746870 + }, + "m_visualID": { + "type": "unsigned int", + "id": 3, + "offset": 132, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1118778894 + }, + "m_adjectiveList": { + "type": "std::string", + "id": 4, + "offset": 248, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 3195213318 + }, + "m_exemptFromAOI": { + "type": "bool", + "id": 5, + "offset": 240, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1457879059 + }, + "m_displayName": { + "type": "std::string", + "id": 6, + "offset": 168, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2446900370 + }, + "m_description": { + "type": "std::string", + "id": 7, + "offset": 136, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1649374815 + }, + "m_nObjectType": { + "type": "enum ObjectType", + "id": 8, + "offset": 200, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2118905880, + "enum_options": { + "OT_UNDEFINED": 0, + "OT_PLAYER": 1, + "OT_NPC": 2, + "OT_PROP": 3, + "OT_OBJECT": 4, + "OT_HOUSE": 5, + "OT_KEY": 6, + "OT_OLD_KEY": 7, + "OT_DEED": 8, + "OT_MAIL": 9, + "OT_RECIPE": 17, + "OT_EQUIP_HEAD": 10, + "OT_EQUIP_CHEST": 11, + "OT_EQUIP_LEGS": 12, + "OT_EQUIP_HANDS": 13, + "OT_EQUIP_FINGER": 14, + "OT_EQUIP_FEET": 15, + "OT_EQUIP_EAR": 16, + "OT_BUILDING_BLOCK": 18, + "OT_BUILDING_BLOCK_SOLID": 19, + "OT_GOLF": 20, + "OT_DOOR": 21, + "OT_PET": 22, + "OT_FABRIC": 23, + "OT_WINDOW": 24, + "OT_ROOF": 25, + "OT_HORSE": 26, + "OT_STRUCTURE": 27, + "OT_HOUSING_TEXTURE": 28, + "OT_PLANT": 29 } }, - "m_characterTables": { - "type": "class CharacterElementTable", + "m_sIcon": { + "type": "std::string", + "id": 9, + "offset": 208, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306259831 + }, + "m_equipRequirements": { + "type": "class RequirementList*", + "id": 10, + "offset": 280, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2762617226 + }, + "m_purchaseRequirements": { + "type": "class RequirementList*", + "id": 11, + "offset": 288, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3174641793 + }, + "m_equipEffects": { + "type": "class GameEffectInfo*", + "id": 12, + "offset": 296, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 836628351 + }, + "m_baseCost": { + "type": "float", + "id": 13, + "offset": 312, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1565352651 + }, + "m_creditsCost": { + "type": "float", + "id": 14, + "offset": 320, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 805514974 + }, + "m_avatarInfo": { + "type": "class AvatarItemInfoBase*", + "id": 15, + "offset": 328, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2627321299 + }, + "m_avatarFlags": { + "type": "std::string", + "id": 16, + "offset": 336, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2347762759 + }, + "m_itemLimit": { + "type": "int", + "id": 17, + "offset": 316, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1799746856 + }, + "m_holidayFlag": { + "type": "std::string", + "id": 18, + "offset": 352, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2994795359 + }, + "m_itemSetBonusTemplateID": { + "type": "unsigned int", + "id": 19, + "offset": 384, + "flags": 33554439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1316835672 + }, + "m_numPrimaryColors": { + "type": "int", + "id": 20, + "offset": 428, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 981103872 + }, + "m_numSecondaryColors": { + "type": "int", + "id": 21, + "offset": 432, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1310416868 + }, + "m_numPatterns": { + "type": "int", + "id": 22, + "offset": 436, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 953162171 + }, + "m_school": { + "type": "std::string", + "id": 23, + "offset": 392, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2438566051 + }, + "m_arenaPointCost": { + "type": "int", + "id": 24, + "offset": 440, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1819621796 + }, + "m_pvpCurrencyCost": { + "type": "int", + "id": 25, + "offset": 444, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 645595444 + }, + "m_pvpTourneyCurrencyCost": { + "type": "int", + "id": 26, + "offset": 448, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 517874954 + }, + "m_rank": { + "type": "int", + "id": 27, + "offset": 424, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 219803942 + }, + "m_boyIconIndex": { + "type": "int", + "id": 28, + "offset": 452, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 802140453 + }, + "m_girlIconIndex": { + "type": "int", + "id": 29, + "offset": 456, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 832706793 + }, + "m_leashOffsetOverride": { + "type": "class SharedPointer", + "id": 30, + "offset": 464, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1692586788 + }, + "m_rarity": { + "type": "enum RarityType", + "id": 31, + "offset": 460, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2253792108, + "enum_options": { + "RT_COMMON": 0, + "RT_UNCOMMON": 1, + "RT_RARE": 2, + "RT_ULTRARARE": 3, + "RT_EPIC": 4 + } + }, + "m_iconIndex": { + "type": "int", + "id": 32, + "offset": 480, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1053730811 + }, + "m_imageName": { + "type": "std::string", + "id": 33, + "offset": 488, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2391520543 + } + } + }, + "1550016864": { + "name": "class SharedPointer", + "bases": [ + "TimerControlCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 1550016864, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_bSetVisible": { + "type": "bool", + "id": 1, + "offset": 88, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 471535983 + }, + "m_fTimeToSet": { + "type": "float", + "id": 2, + "offset": 84, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 661189659 + }, + "m_timerStrKey": { + "type": "std::string", + "id": 3, + "offset": 96, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3000196414 + }, + "m_timerOp": { + "type": "enum TimerControlCinematicAction::kControlOperation", + "id": 4, + "offset": 80, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1809610086, + "enum_options": { + "kNone": 0, + "kStartTimer": 1, + "kSetVisible": 2, + "kSetTimerString": 3, + "kSetTimeToShow": 4 + } + } + } + }, + "269842394": { + "name": "class EquipmentSet*", + "bases": [ + "PropertyClass" + ], + "hash": 269842394, + "properties": { + "m_serializedItems": { + "type": "std::string", + "id": 0, + "offset": 96, + "flags": 575, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1828227529 + }, + "m_equipmentSetName": { + "type": "unsigned int", + "id": 1, + "offset": 88, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 518194738 + }, + "m_isEquipped": { + "type": "bool", + "id": 2, + "offset": 128, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1792437804 + } + } + }, + "1122185342": { + "name": "class WinAnimMoveToLocationTimeEaseApprox", + "bases": [ + "WinAnimMoveToLocationTime", + "WinAnimMoveToLocation", + "WindowAnimation", + "PropertyClass" + ], + "hash": 1122185342, + "properties": { + "m_bUseDeepCopy": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 433380635 + }, + "m_targetLocation": { + "type": "class Vector3D", + "id": 1, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2653859938 + }, + "m_fTimeRemaining": { + "type": "float", + "id": 2, + "offset": 100, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1591443014 + }, + "m_fTimeTotal": { + "type": "float", + "id": 3, + "offset": 96, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 661225456 + }, + "m_fEaseAmount": { + "type": "float", + "id": 4, + "offset": 120, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1693654127 + }, + "m_fTotalDistance": { + "type": "float", + "id": 5, + "offset": 124, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1894338732 + }, + "m_fSpeed": { + "type": "float", + "id": 6, + "offset": 128, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 503609006 + }, + "m_fAccelRateMult": { + "type": "float", + "id": 7, + "offset": 132, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2071467395 + } + } + }, + "1550045949": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1550045949, + "properties": { + "m_guildChatList": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2707919623 + } + } + }, + "706487366": { + "name": "class FidgetBehaviorTemplate", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 706487366, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + }, + "m_fidgetStateInfo": { + "type": "class FidgetStateInfo", + "id": 1, + "offset": 120, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1986859062 + } + } + }, + "267975727": { + "name": "class SharedPointer", + "bases": [ + "HousingTeleporterBehaviorBase", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 267975727, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_lotInstanceGID": { + "type": "gid", + "id": 1, + "offset": 112, + "flags": 65567, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2010711536 + }, + "m_x": { + "type": "float", + "id": 2, + "offset": 120, + "flags": 65543, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 283788559 + }, + "m_y": { + "type": "float", + "id": 3, + "offset": 124, + "flags": 65543, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 283788560 + }, + "m_z": { + "type": "float", + "id": 4, + "offset": 128, + "flags": 65543, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 283788561 + }, + "m_yaw": { + "type": "float", + "id": 5, + "offset": 132, + "flags": 65543, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 357256328 + }, + "m_lotTemplateID": { + "type": "gid", + "id": 6, + "offset": 136, + "flags": 65543, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1344354096 + }, + "m_clusterGID": { + "type": "gid", + "id": 7, + "offset": 144, + "flags": 65543, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 112792526 + }, + "m_structureInstanceGID": { + "type": "gid", + "id": 8, + "offset": 152, + "flags": 65543, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2083588818 + }, + "m_structureTemplateID": { + "type": "gid", + "id": 9, + "offset": 160, + "flags": 65543, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 825960402 + }, + "m_isOutside": { + "type": "bool", + "id": 10, + "offset": 168, + "flags": 65543, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1999324940 + }, + "m_teleportData": { + "type": "std::string", + "id": 11, + "offset": 208, + "flags": 551, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3645160644 + } + } + }, + "1122136190": { + "name": "class WinAnimMoveToLocationTimeEaseApprox*", + "bases": [ + "WinAnimMoveToLocationTime", + "WinAnimMoveToLocation", + "WindowAnimation", + "PropertyClass" + ], + "hash": 1122136190, + "properties": { + "m_bUseDeepCopy": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 433380635 + }, + "m_targetLocation": { + "type": "class Vector3D", + "id": 1, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2653859938 + }, + "m_fTimeRemaining": { + "type": "float", + "id": 2, + "offset": 100, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1591443014 + }, + "m_fTimeTotal": { + "type": "float", + "id": 3, + "offset": 96, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 661225456 + }, + "m_fEaseAmount": { + "type": "float", + "id": 4, + "offset": 120, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1693654127 + }, + "m_fTotalDistance": { + "type": "float", + "id": 5, + "offset": 124, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1894338732 + }, + "m_fSpeed": { + "type": "float", + "id": 6, + "offset": 128, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 503609006 + }, + "m_fAccelRateMult": { + "type": "float", + "id": 7, + "offset": 132, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2071467395 + } + } + }, + "705797532": { + "name": "class SharedPointer", + "bases": [ + "PetAnimateActorCinematicAction", + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 705797532, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + }, + "m_animation": { + "type": "std::string", + "id": 2, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3431428731 + } + } + }, + "1993005499": { + "name": "class WizBankingOption", + "bases": [ + "ServiceOptionBase", + "PropertyClass" + ], + "hash": 1993005499, + "properties": { + "m_serviceName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2206028813 + }, + "m_iconKey": { + "type": "std::string", "id": 1, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2457138637 + }, + "m_displayKey": { + "type": "std::string", + "id": 2, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3023276954 + }, + "m_serviceIndex": { + "type": "unsigned int", + "id": 3, + "offset": 204, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2103126710 + }, + "m_forceInteract": { + "type": "bool", + "id": 4, + "offset": 200, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1705789564 + } + } + }, + "1991980737": { + "name": "class SharedPointer", + "bases": [ + "ControlButton", + "Window", + "PropertyClass" + ], + "hash": 1991980737, + "properties": { + "m_sName": { + "type": "std::string", + "id": 0, "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306437263 + }, + "m_Children": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621225959 + }, + "m_Style": { + "type": "unsigned int", + "id": 2, + "offset": 152, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152, + "EFFECT_SCALE": 67108864, + "LOCK_ICON_SIZE": 33554432, + "LEFT_TEXT": 536870912, + "NO_FIT_TEXT": 1073741824, + "CHECKBOX_TEXTOVERIMAGE": 16777216 + } + }, + "m_Flags": { + "type": "unsigned int", + "id": 3, + "offset": 156, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } + }, + "m_Window": { + "type": "class Rect", + "id": 4, + "offset": 160, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3105139380 + }, + "m_fTargetAlpha": { + "type": "float", + "id": 5, + "offset": 212, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1809129834 + }, + "m_fDisabledAlpha": { + "type": "float", + "id": 6, + "offset": 216, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1389987675 + }, + "m_fAlpha": { + "type": "float", + "id": 7, + "offset": 208, + "flags": 65671, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 482130755 + }, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3623628394 + }, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2102211316 + }, + "m_sScript": { + "type": "std::string", + "id": 10, + "offset": 352, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1846695875 + }, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3389835433 + }, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547159940 + }, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513510520 + }, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3091503757 + }, + "m_bToggle": { + "type": "bool", + "id": 16, + "offset": 608, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2071810903 + }, + "m_bButtonDown": { + "type": "bool", + "id": 17, + "offset": 609, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 840041705 + }, + "m_sLabel": { + "type": "std::wstring", + "id": 18, + "offset": 616, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2207009163 + }, + "m_labelOffset": { + "type": "class Rect", + "id": 19, + "offset": 832, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1990646723 + }, + "m_pButton": { + "type": "class SharedPointer", + "id": 20, + "offset": 656, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1543855875 + }, + "m_HotKey": { + "type": "unsigned int", + "id": 21, + "offset": 672, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1631553409 + }, + "m_Color": { + "type": "class Color", + "id": 22, + "offset": 676, + "flags": 262279, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1753714077 + }, + "m_bCursorOver": { + "type": "bool", + "id": 23, + "offset": 689, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 283981103 + }, + "m_bAbortWhenCursorNotOver": { + "type": "bool", + "id": 24, + "offset": 706, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 325405258 + }, + "m_bHotKeyDown": { + "type": "bool", + "id": 25, + "offset": 680, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 616989185 + }, + "m_fTime": { + "type": "float", + "id": 26, + "offset": 684, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 883746156 + }, + "m_bGreyed": { + "type": "bool", + "id": 27, + "offset": 688, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1566556053 + }, + "m_fMaxScale": { + "type": "float", + "id": 28, + "offset": 692, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2070186635 + }, + "m_fScaleSpeed": { + "type": "float", + "id": 29, + "offset": 696, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1457135702 + }, + "m_bUseDropShadow": { + "type": "bool", + "id": 30, + "offset": 704, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 93063037 + }, + "m_bUseOutline": { + "type": "bool", + "id": 31, + "offset": 705, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 744292994 + }, + "m_pGreyedState": { + "type": "class SharedPointer", + "id": 32, + "offset": 768, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2703352263 + }, + "m_pNormalState": { + "type": "class SharedPointer", + "id": 33, + "offset": 752, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1887909808 + }, + "m_pHighlightedState": { + "type": "class SharedPointer", + "id": 34, + "offset": 784, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2200177608 + }, + "m_pSelectedState": { + "type": "class SharedPointer", + "id": 35, + "offset": 800, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2266776432 + }, + "m_pDepressedState": { + "type": "class SharedPointer", + "id": 36, + "offset": 816, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1878185798 + }, + "m_nGroupID": { + "type": "int", + "id": 37, + "offset": 880, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 403966850 + }, + "m_bChecked": { + "type": "bool", + "id": 38, + "offset": 884, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 958955100 + }, + "m_pCheckedState": { + "type": "class SharedPointer", + "id": 39, + "offset": 888, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1210539694 + }, + "m_pCheckedGreyedState": { + "type": "class SharedPointer", + "id": 40, + "offset": 904, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2702030126 + }, + "m_pCheckedHighlightedState": { + "type": "class SharedPointer", + "id": 41, + "offset": 920, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1320097679 + }, + "m_pCheckedDepressedState": { + "type": "class SharedPointer", + "id": 42, + "offset": 936, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1609188685 + } + } + }, + "1565654366": { + "name": "class SharedPointer", + "bases": [ + "ServiceOptionBase", + "PropertyClass" + ], + "hash": 1565654366, + "properties": { + "m_serviceName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2206028813 + }, + "m_iconKey": { + "type": "std::string", + "id": 1, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2457138637 + }, + "m_displayKey": { + "type": "std::string", + "id": 2, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3023276954 + }, + "m_serviceIndex": { + "type": "unsigned int", + "id": 3, + "offset": 204, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2103126710 + }, + "m_forceInteract": { + "type": "bool", + "id": 4, + "offset": 200, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1705789564 + } + } + }, + "706414668": { + "name": "class SharedPointer", + "bases": [ + "CombatSigilTemplate", + "SigilTemplate", + "CoreTemplate", + "PropertyClass" + ], + "hash": 706414668, + "properties": { + "m_behaviors": { + "type": "class BehaviorTemplate*", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1197808594 + }, + "m_sigilName": { + "type": "std::string", + "id": 1, + "offset": 96, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3177657588 + }, + "m_sigilType": { + "type": "std::string", + "id": 2, + "offset": 136, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3177899445 + }, + "m_entryResults": { + "type": "class ResultList*", + "id": 3, + "offset": 184, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3262956108 + }, + "m_requirements": { + "type": "class RequirementList*", + "id": 4, + "offset": 176, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2840985510 + }, + "m_cancelResults": { + "type": "class ResultList*", + "id": 5, + "offset": 192, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3799257120 + }, + "m_completeResults": { + "type": "class ResultList*", + "id": 6, + "offset": 200, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1964258099 + }, + "m_useState": { + "type": "bool", + "id": 7, + "offset": 216, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 683320865 + }, + "m_stateOverride": { + "type": "std::string", + "id": 8, + "offset": 224, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1949715548 + }, + "m_subCircles": { + "type": "class SigilSubCircle*", + "id": 9, + "offset": 256, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2227135493 + }, + "m_engageRadius": { + "type": "float", + "id": 10, + "offset": 304, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1429683718 + }, + "m_battlefieldEffects": { + "type": "class SharedPointer", + "id": 11, + "offset": 312, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1245973515 + }, + "m_playerVictoryCinematic": { + "type": "std::string", + "id": 12, + "offset": 336, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2684536069 + }, + "m_combatMusic": { + "type": "std::string", + "id": 13, + "offset": 368, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3636593682 + }, + "m_prePlanningCinematicOverride": { + "type": "std::string", + "id": 14, + "offset": 400, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2585096390 + }, + "m_planningCinematicOverride": { + "type": "std::string", + "id": 15, + "offset": 432, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3592819999 + }, + "m_shadowThresholdType": { + "type": "enum kShadow_Threshold_Type", + "id": 16, + "offset": 464, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2847763136, + "enum_options": { + "SHADOW_THRESHOLD_MIN": 0, + "SHADOW_THRESHOLD_AVG": 1, + "SHADOW_THRESHOLD_MAX": 2 + } + }, + "m_shadowThresholdFactor": { + "type": "float", + "id": 17, + "offset": 468, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2104355177 + }, + "m_shadowPipRatingFactor": { + "type": "float", + "id": 18, + "offset": 472, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1061434314 + }, + "m_scalarDamagePvP": { + "type": "float", + "id": 19, + "offset": 476, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2195445026 + }, + "m_scalarResistPvP": { + "type": "float", + "id": 20, + "offset": 480, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1947822077 + }, + "m_scalarPiercePvP": { + "type": "float", + "id": 21, + "offset": 484, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 441266907 + }, + "m_scalarDamagePvE": { + "type": "float", + "id": 22, + "offset": 488, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2195445015 + }, + "m_scalarResistPvE": { + "type": "float", + "id": 23, + "offset": 492, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1947822066 + }, + "m_scalarPiercePvE": { + "type": "float", + "id": 24, + "offset": 496, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 441266896 + }, + "m_damageLimitPvP": { + "type": "float", + "id": 25, + "offset": 500, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1990135243 + }, + "m_dK0PvP": { + "type": "float", + "id": 26, + "offset": 504, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 413528556 + }, + "m_dN0PvP": { + "type": "float", + "id": 27, + "offset": 508, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 417086319 + }, + "m_resistLimitPvP": { + "type": "float", + "id": 28, + "offset": 512, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1174512006 + }, + "m_rK0PvP": { + "type": "float", + "id": 29, + "offset": 516, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 961424058 + }, + "m_rN0PvP": { + "type": "float", + "id": 30, + "offset": 520, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 964981821 + }, + "m_damageLimitPvE": { + "type": "float", + "id": 31, + "offset": 524, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1990135232 + }, + "m_dK0PvE": { + "type": "float", + "id": 32, + "offset": 528, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 413528545 + }, + "m_dN0PvE": { + "type": "float", + "id": 33, + "offset": 532, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 417086308 + }, + "m_resistLimitPvE": { + "type": "float", + "id": 34, + "offset": 536, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1174511995 + }, + "m_rK0PvE": { + "type": "float", + "id": 35, + "offset": 540, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 961424047 + }, + "m_rN0PvE": { + "type": "float", + "id": 36, + "offset": 544, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 964981810 + }, + "m_tickRateMS": { + "type": "unsigned int", + "id": 37, + "offset": 552, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 646469284 + }, + "m_playerAggroRange": { + "type": "float", + "id": 38, + "offset": 556, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1776075073 + }, + "m_deathEffect": { + "type": "std::string", + "id": 39, + "offset": 560, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2339494958 + }, + "m_noAggroEffect": { + "type": "std::string", + "id": 40, + "offset": 592, "flags": 7, - "container": "List", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 1801114527 + "hash": 1645655765 }, - "m_defaultTable": { - "type": "class CharacterElementTable", - "id": 2, - "offset": 96, + "m_redTeamStart": { + "type": "std::string", + "id": 41, + "offset": 624, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1709886308 + "hash": 2958941675 }, - "m_commonTable": { - "type": "class CommonElementTable", - "id": 3, - "offset": 888, + "m_blueTeamStart": { + "type": "std::string", + "id": 42, + "offset": 656, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1709304448 + "hash": 2806152280 }, - "m_raceAnimationSoundData": { - "type": "class SharedPointer", - "id": 4, - "offset": 984, + "m_redPlaceholdObjectID": { + "type": "unsigned int", + "id": 43, + "offset": 688, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1474423978 + "pointer": false, + "hash": 1608575032 }, - "m_animationEventList": { - "type": "class SharedPointer", - "id": 5, - "offset": 1000, + "m_bluePlaceholdObjectID": { + "type": "unsigned int", + "id": 44, + "offset": 692, "flags": 7, - "container": "List", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2858101335 + "pointer": false, + "hash": 1635754917 } } }, - "375586297": { - "name": "class PetFeedingRewardInfo", + "1990366250": { + "name": "class DerbyEffect", "bases": [ "PropertyClass" ], - "hash": 375586297, + "hash": 1990366250, "properties": { - "m_minIntrinsicValue": { - "type": "int", + "m_buffType": { + "type": "enum DerbyTalentBuffType", "id": 0, - "offset": 72, - "flags": 7, + "offset": 92, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1962770606 + "hash": 1149251982, + "enum_options": { + "Buff": 0, + "Debuff": 1, + "Neither": 2 + } }, - "m_bCostsEnergy": { - "type": "bool", + "m_kTarget": { + "type": "enum DerbyTargetType", "id": 1, - "offset": 76, - "flags": 7, + "offset": 96, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1061466155 + "hash": 1807803351, + "enum_options": { + "kTargetInFront": 0, + "kTargetBehind": 1, + "kTargetFirst": 2, + "kTargetSelf": 3, + "kTargetAll": 4, + "kTargetLast": 5 + } }, - "m_lootTables": { - "type": "std::string", + "m_nDuration": { + "type": "int", "id": 2, - "offset": 80, - "flags": 7, - "container": "Vector", - "dynamic": true, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 1514961588 + "hash": 1110167982 + }, + "m_effectID": { + "type": "unsigned int", + "id": 3, + "offset": 88, + "flags": 24, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2347630439 + }, + "m_imageFilename": { + "type": "std::string", + "id": 4, + "offset": 112, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2813328063 + }, + "m_iconIndex": { + "type": "unsigned int", + "id": 5, + "offset": 144, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1265133262 + }, + "m_soundOnActivate": { + "type": "std::string", + "id": 6, + "offset": 152, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1956929714 + }, + "m_soundOnTarget": { + "type": "std::string", + "id": 7, + "offset": 184, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3444214056 + }, + "m_targetParticleEffect": { + "type": "std::string", + "id": 8, + "offset": 216, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3048234723 + }, + "m_overheadMessage": { + "type": "std::string", + "id": 9, + "offset": 248, + "flags": 8388639, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1701018190 + }, + "m_requirements": { + "type": "class RequirementList", + "id": 10, + "offset": 280, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2840988582 } } }, - "1943074942": { - "name": "class SG_GameActionClient_PlayEffect*", + "270408835": { + "name": "class SharedPointer", "bases": [ - "SG_GameAction_PlayEffect", - "SG_GameAction", + "MatchTemplate", + "CoreTemplate", "PropertyClass" ], - "hash": 1943074942, + "hash": 270408835, "properties": { - "m_target": { - "type": "enum SG_GameAction::SG_Target", + "m_behaviors": { + "type": "class BehaviorTemplate*", "id": 0, "offset": 72, - "flags": 2097159, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1197808594 + }, + "m_matchName": { + "type": "std::string", + "id": 1, + "offset": 128, + "flags": 134217735, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1166870973, - "enum_options": { - "Target_Ball": 0, - "Target_Self": 1, - "Target_Connections": 2, - "__DEFAULT": "Target_Ball" - } + "hash": 2061215721 }, - "m_graphicArguments": { + "m_matchDisplayName": { "type": "std::string", - "id": 1, - "offset": 80, + "id": 2, + "offset": 96, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3201906495 + }, + "m_matchTitle": { + "type": "std::string", + "id": 3, + "offset": 168, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2918442218 + }, + "m_allowOverrides": { + "type": "bool", + "id": 4, + "offset": 200, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 469376485 + }, + "m_teamSize": { + "type": "unsigned int", + "id": 5, + "offset": 208, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2343388751 + }, + "m_teamCount": { + "type": "unsigned int", + "id": 6, + "offset": 204, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1825878845 + }, + "m_minTeams": { + "type": "unsigned int", + "id": 7, + "offset": 212, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1717685739 + }, + "m_timeout": { + "type": "int", + "id": 8, + "offset": 216, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 365357953 + }, + "m_maxPointsPerMatch": { + "type": "unsigned int", + "id": 9, + "offset": 280, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1397040900 + }, + "m_estimatedWeight": { + "type": "float", + "id": 10, + "offset": 284, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1374360127 + }, + "m_matchInfo": { + "type": "class SharedPointer", + "id": 11, + "offset": 256, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2424135306 + }, + "m_awardInfo": { + "type": "class SharedPointer", + "id": 12, + "offset": 224, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2862912855 + }, + "m_perLeagueAwardInfo": { + "type": "class SharedPointer", + "id": 13, + "offset": 240, "flags": 7, "container": "List", "dynamic": true, "singleton": false, + "pointer": true, + "hash": 1635456322 + }, + "m_zones": { + "type": "std::string", + "id": 14, + "offset": 288, + "flags": 268435463, + "container": "Vector", + "dynamic": true, + "singleton": false, "pointer": false, - "hash": 1656480079 + "hash": 2315938538, + "enum_options": { + "__BASECLASS": "ZoneData" + } }, - "m_fMinimumTime": { + "m_initialQueueThreshold": { + "type": "unsigned int", + "id": 15, + "offset": 312, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2069737705 + }, + "m_actorQueueTimeout": { + "type": "unsigned int", + "id": 16, + "offset": 316, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2220949042 + }, + "m_teamQueueTimeout": { + "type": "unsigned int", + "id": 17, + "offset": 320, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 905233664 + }, + "m_actorQueueGrowth": { "type": "float", - "id": 2, - "offset": 144, + "id": 18, + "offset": 324, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1516804616 + "hash": 499165488 }, - "m_bDisplaysScore": { + "m_teamQueueGrowth": { + "type": "float", + "id": 19, + "offset": 328, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1500499518 + }, + "m_matchMakingLevelMultiplier": { + "type": "float", + "id": 20, + "offset": 332, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 838900890 + }, + "m_levelModifiersListID": { + "type": "gid", + "id": 21, + "offset": 336, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 383459035 + }, + "m_incompleteTeamTimeout": { + "type": "unsigned int", + "id": 22, + "offset": 276, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1580576011 + }, + "m_incompleteMatchTimeout": { + "type": "unsigned int", + "id": 23, + "offset": 272, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2167303729 + }, + "m_shortMatchDurationForPenaltySeconds": { + "type": "unsigned int", + "id": 24, + "offset": 360, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1403927011 + }, + "m_thresholdForExtendingMatchSearch": { + "type": "unsigned int", + "id": 25, + "offset": 364, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1973589002 + }, + "m_numberOfPlayersRequiredToExtendMatchSearch": { + "type": "unsigned int", + "id": 26, + "offset": 368, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 858588026 + }, + "m_showStatusOnJoinQueue": { "type": "bool", - "id": 3, - "offset": 148, + "id": 27, + "offset": 376, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 722455866 + "hash": 1803391338 }, - "m_bPlaysPointsSounds": { + "m_allowExceedRangeForMatchesOptionForPlayers": { "type": "bool", - "id": 4, - "offset": 149, + "id": 28, + "offset": 377, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 717919607 - } - } - }, - "788436544": { - "name": "class GuildAchievementOption*", - "bases": [ - "ServiceOptionBase", - "PropertyClass" - ], - "hash": 788436544, - "properties": { - "m_serviceName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, + "hash": 592913977 + }, + "m_makeTeamsWithSameMatchOptsTimeoutSec": { + "type": "int", + "id": 29, + "offset": 372, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2206028813 + "hash": 1787977769 }, - "m_iconKey": { - "type": "std::string", - "id": 1, - "offset": 168, + "m_streakSize": { + "type": "int", + "id": 30, + "offset": 380, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1155220287 + }, + "m_historySize": { + "type": "int", + "id": 31, + "offset": 384, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 229055111 + }, + "m_queueWaitingTime": { + "type": "int", + "id": 32, + "offset": 388, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 15229089 + }, + "m_minQueueSize": { + "type": "int", + "id": 33, + "offset": 392, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1319267550 + }, + "m_maxQueueSize": { + "type": "int", + "id": 34, + "offset": 396, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1277586976 + }, + "m_confTierRankTimeout": { + "type": "int", + "id": 35, + "offset": 400, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 79057063 + }, + "m_matchTimer": { + "type": "float", + "id": 36, + "offset": 404, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1510935909 + }, + "m_bonusTime": { + "type": "int", + "id": 37, + "offset": 408, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1757496496 + }, + "m_passPenalty": { + "type": "int", + "id": 38, + "offset": 412, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 982951662 + }, + "m_yellowTime": { + "type": "int", + "id": 39, + "offset": 416, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1017028741 + }, + "m_redTime": { + "type": "int", + "id": 40, + "offset": 420, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1909556708 + }, + "m_minTurnTime": { + "type": "int", + "id": 41, + "offset": 424, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 652524886 + }, + "m_effects": { + "type": "class SharedPointer", + "id": 42, + "offset": 432, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 804962647 + }, + "m_updateBattlePassPoints": { + "type": "bool", + "id": 43, + "offset": 456, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 713306342 + }, + "m_battlePassWinPoints": { + "type": "int", + "id": 44, + "offset": 460, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1252337240 + }, + "m_battlePassLosePoints": { + "type": "int", + "id": 45, + "offset": 464, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1400839869 + }, + "m_numberOfRounds": { + "type": "unsigned int", + "id": 46, + "offset": 488, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2457138637 + "hash": 2292833030 }, - "m_displayKey": { - "type": "std::string", - "id": 2, - "offset": 104, + "m_removeBracketWhenEmpty": { + "type": "bool", + "id": 47, + "offset": 492, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3023276954 + "hash": 1934068926 }, - "m_serviceIndex": { + "m_prepareForMatchTimeSeconds": { "type": "unsigned int", - "id": 3, - "offset": 204, + "id": 48, + "offset": 496, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2103126710 + "hash": 2209979662 }, - "m_forceInteract": { + "m_precreateTeams": { "type": "bool", - "id": 4, - "offset": 200, + "id": 49, + "offset": 500, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1705789564 + "hash": 1229158248 + }, + "m_bracketTypeClassName": { + "type": "std::string", + "id": 50, + "offset": 504, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1569907152 } } }, - "375943772": { - "name": "class SharedPointer", + "1122257679": { + "name": "class SharedPointer", "bases": [ - "StatGlobe", - "ControlSprite", - "Window", + "WizStatisticEffectTemplate", + "StatisticEffectTemplate", + "GameEffectTemplate", "PropertyClass" ], - "hash": 375943772, + "hash": 1122257679, "properties": { - "m_sName": { + "m_effectName": { "type": "std::string", "id": 0, - "offset": 80, - "flags": 135, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2306437263 + "hash": 2029161513 }, - "m_Children": { - "type": "class SharedPointer", + "m_effectCategory": { + "type": "std::string", "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2621225959 + "pointer": false, + "hash": 1852673222 }, - "m_Style": { - "type": "unsigned int", + "m_sortOrder": { + "type": "int", "id": 2, - "offset": 152, - "flags": 1048583, + "offset": 148, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "SCALE_CHILDREN": 2, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "FOCUS_LOCKED": 64, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152 - } + "hash": 1411218206 }, - "m_Flags": { - "type": "unsigned int", + "m_duration": { + "type": "double", "id": 3, - "offset": 156, - "flags": 1048583, + "offset": 192, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648, - "ONE_SHOT": 8388608, - "FLIPPED_HORIZONTAL": 16777216, - "FLIPPED_VERTICAL": 33554432 - } + "hash": 2727932435 }, - "m_Window": { - "type": "class Rect", + "m_stackingCategories": { + "type": "std::string", "id": 4, "offset": 160, - "flags": 135, - "container": "Static", - "dynamic": false, + "flags": 7, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 3105139380 + "hash": 1774497525 }, - "m_fTargetAlpha": { - "type": "float", + "m_isPersistent": { + "type": "bool", "id": 5, - "offset": 212, - "flags": 135, + "offset": 153, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1809129834 + "hash": 923861920 }, - "m_fDisabledAlpha": { - "type": "float", + "m_bIsOnPet": { + "type": "bool", "id": 6, - "offset": 216, - "flags": 135, + "offset": 154, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1389987675 + "hash": 522593303 }, - "m_fAlpha": { - "type": "float", + "m_isPublic": { + "type": "bool", "id": 7, - "offset": 208, - "flags": 65671, + "offset": 152, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 482130755 + "hash": 1728439822 }, - "m_pWindowStyle": { - "type": "class SharedPointer", + "m_visualEffectAddName": { + "type": "std::string", "id": 8, - "offset": 232, - "flags": 135, + "offset": 200, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3623628394 + "pointer": false, + "hash": 3382086694 }, - "m_sHelp": { - "type": "std::wstring", + "m_visualEffectRemoveName": { + "type": "std::string", "id": 9, - "offset": 248, - "flags": 4194439, + "offset": 232, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2102211316 + "hash": 1541697323 }, - "m_sScript": { + "m_onAddFunctorName": { "type": "std::string", "id": 10, - "offset": 352, - "flags": 135, + "offset": 280, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1846695875 + "hash": 1561843107 }, - "m_Offset": { - "type": "class Point", + "m_onRemoveFunctorName": { + "type": "std::string", "id": 11, - "offset": 192, - "flags": 135, + "offset": 312, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3389835433 + "hash": 2559017864 }, - "m_Scale": { - "type": "class Point", + "m_stackingRule": { + "type": "enum STACKING_RULE", "id": 12, - "offset": 200, - "flags": 135, + "offset": 144, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2547159940 + "hash": 431568889, + "enum_options": { + "STACKING_ALLOWED": 0, + "STACKING_NOSTACK": 1, + "STACKING_REPLACE": 2 + } }, - "m_sTip": { - "type": "std::wstring", + "m_buffAll": { + "type": "bool", "id": 13, "offset": 392, - "flags": 4194439, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1513510520 + "hash": 1205044623 }, - "m_BubbleList": { - "type": "class WindowBubble", + "m_school": { + "type": "std::string", "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, + "offset": 400, + "flags": 7, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 2587533771 + "hash": 2438566051 }, - "m_ParentOffset": { - "type": "class Rect", + "m_damageBonusPercent": { + "type": "float", "id": 15, - "offset": 176, - "flags": 135, + "offset": 440, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3091503757 + "hash": 623230606 }, - "m_pMaterial": { - "type": "class SharedPointer", + "m_damageBonusFlat": { + "type": "float", "id": 16, - "offset": 592, - "flags": 135, + "offset": 488, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3479277078 + "pointer": false, + "hash": 2212039108 }, - "m_fRotation": { + "m_accuracyBonusPercent": { "type": "float", "id": 17, - "offset": 608, - "flags": 135, + "offset": 444, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1175400173 + "hash": 1972336538 }, - "m_Color": { - "type": "class Color", + "m_armorPiercingBonusPercent": { + "type": "float", "id": 18, - "offset": 584, - "flags": 262279, + "offset": 448, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1753714077 + "hash": 1569912641 }, - "m_textColor": { - "type": "class Color", + "m_damageReducePercent": { + "type": "float", "id": 19, - "offset": 612, - "flags": 262279, + "offset": 452, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2528109250 + "hash": 541736927 }, - "m_textComponent": { - "type": "class TextComponent", + "m_damageReduceFlat": { + "type": "float", "id": 20, - "offset": 616, - "flags": 135, + "offset": 456, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3491704390 + "hash": 684172469 }, - "m_amount": { - "type": "int", + "m_accuracyReducePercent": { + "type": "float", "id": 21, - "offset": 800, - "flags": 135, + "offset": 460, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 248546638 - } - } - }, - "780479981": { - "name": "class GuildMuseumCuratorBehavior", - "bases": [ - "GuildMuseumCuratorBehaviorBase", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 780479981, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, + "hash": 2112559723 + }, + "m_healBonusPercent": { + "type": "float", + "id": 22, + "offset": 464, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 - } - } - }, - "375789558": { - "name": "class NPCTrainingWindow", - "bases": [ - "Window", - "PropertyClass" - ], - "hash": 375789558, - "properties": { - "m_sName": { + "hash": 562313577 + }, + "m_healIncBonusPercent": { + "type": "float", + "id": 23, + "offset": 468, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2182535587 + }, + "m_hitPointBonus": { + "type": "float", + "id": 24, + "offset": 496, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 880644461 + }, + "m_spellChargeBonus": { + "type": "float", + "id": 25, + "offset": 504, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2109811656 + }, + "m_powerPipBonusPercent": { + "type": "float", + "id": 26, + "offset": 472, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1671446341 + }, + "m_petActChance": { + "type": "int", + "id": 27, + "offset": 492, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 237418461 + }, + "m_manaBonus": { + "type": "float", + "id": 28, + "offset": 500, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1372708603 + }, + "m_statTableName": { "type": "std::string", - "id": 0, - "offset": 80, - "flags": 135, + "id": 29, + "offset": 360, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2306437263 + "hash": 1616642912 }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, + "m_manaReducePercent": { + "type": "float", + "id": 30, + "offset": 568, + "flags": 7, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2621225959 + "pointer": false, + "hash": 348324221 }, - "m_Style": { - "type": "unsigned int", - "id": 2, - "offset": 152, - "flags": 1048583, + "m_expPercent": { + "type": "float", + "id": 31, + "offset": 572, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "SCALE_CHILDREN": 2, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "FOCUS_LOCKED": 64, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152 - } + "hash": 1147850677 }, - "m_Flags": { - "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 1048583, + "m_goldPercent": { + "type": "float", + "id": 32, + "offset": 576, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } + "hash": 1095720878 }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, - "flags": 135, + "m_energyBonus": { + "type": "float", + "id": 33, + "offset": 508, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3105139380 + "hash": 2223158984 }, - "m_fTargetAlpha": { + "m_criticalHitRating": { "type": "float", - "id": 5, - "offset": 212, - "flags": 135, + "id": 34, + "offset": 512, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1809129834 + "hash": 1978690540 }, - "m_fDisabledAlpha": { + "m_blockRating": { "type": "float", - "id": 6, - "offset": 216, - "flags": 135, + "id": 35, + "offset": 516, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1389987675 + "hash": 2088486759 }, - "m_fAlpha": { + "m_accuracyRating": { "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, + "id": 36, + "offset": 520, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 482130755 + "hash": 165525575 }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, + "m_powerPipRating": { + "type": "float", + "id": 37, + "offset": 524, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3623628394 + "pointer": false, + "hash": 1355340722 }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, + "m_damageResistanceRating": { + "type": "float", + "id": 38, + "offset": 532, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2102211316 + "hash": 1961377740 }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, + "m_archmastery": { + "type": "float", + "id": 39, + "offset": 536, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1846695875 + "hash": 1963579610 }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, + "m_archmasteryBonusPercent": { + "type": "float", + "id": 40, + "offset": 588, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3389835433 + "hash": 1908627154 }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, + "m_balanceMastery": { + "type": "int", + "id": 41, + "offset": 540, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2547159940 + "hash": 149062181 }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, + "m_deathMastery": { + "type": "int", + "id": 42, + "offset": 544, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1513510520 + "hash": 1421218661 }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, + "m_fireMastery": { + "type": "int", + "id": 43, + "offset": 548, + "flags": 7, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 2587533771 + "hash": 1431794949 }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, + "m_iceMastery": { + "type": "int", + "id": 44, + "offset": 552, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3091503757 + "hash": 704864240 }, - "m_neverGoBackToTraining": { - "type": "bool", - "id": 16, - "offset": 1008, + "m_lifeMastery": { + "type": "int", + "id": 45, + "offset": 556, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1983510297 - } - } - }, - "1945366566": { - "name": "class ClientFadeMusicSoundCinematicAction", - "bases": [ - "FadeMusicSoundCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 1945366566, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, + "hash": 2142136447 + }, + "m_mythMastery": { + "type": "int", + "id": 46, + "offset": 560, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 + "hash": 1766317185 }, - "m_fadeDuration": { - "type": "float", - "id": 1, - "offset": 80, + "m_stormMastery": { + "type": "int", + "id": 47, + "offset": 564, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1402536557 + "hash": 1883988244 }, - "m_fadeToGain": { + "m_stunResistancePercent": { "type": "float", - "id": 2, - "offset": 84, + "id": 48, + "offset": 580, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1724568201 - } - } - }, - "778459482": { - "name": "class SharedPointer", - "bases": [ - "HidePipsCinematicAction", - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 778459482, - "properties": { - "m_timeOffset": { + "hash": 1868382627 + }, + "m_fishingLuckBonusPercent": { "type": "float", - "id": 0, - "offset": 72, + "id": 49, + "offset": 480, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 + "hash": 1363349254 }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, + "m_shadowPipBonusPercent": { + "type": "float", + "id": 50, + "offset": 476, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2285866132 + "hash": 1426533310 }, - "m_newActorName": { - "type": "std::string", - "id": 2, - "offset": 120, + "m_wispBonusPercent": { + "type": "float", + "id": 51, + "offset": 484, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2029131039 - } - } - }, - "1945284646": { - "name": "class ClientFadeMusicSoundCinematicAction*", - "bases": [ - "FadeMusicSoundCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 1945284646, - "properties": { - "m_timeOffset": { + "hash": 1304386546 + }, + "m_pipConversionRating": { "type": "float", - "id": 0, - "offset": 72, + "id": 52, + "offset": 584, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 + "hash": 246855691 }, - "m_fadeDuration": { + "m_shadowPipRating": { "type": "float", - "id": 1, - "offset": 80, + "id": 53, + "offset": 528, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1402536557 + "hash": 507126123 }, - "m_fadeToGain": { - "type": "float", - "id": 2, - "offset": 84, + "m_primaryStat1": { + "type": "std::string", + "id": 54, + "offset": 600, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1724568201 - } - } - }, - "775544886": { - "name": "class ClientRaidManagerBehavior", - "bases": [ - "RaidManagerBehavior", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 775544886, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, + "hash": 2417808140 + }, + "m_primaryStat2": { + "type": "std::string", + "id": 55, + "offset": 632, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 + "hash": 2417808141 + }, + "m_secondaryStat": { + "type": "std::string", + "id": 56, + "offset": 664, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3564684959 + }, + "m_secondaryModifier": { + "type": "float", + "id": 57, + "offset": 696, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2101148238 } } }, - "29733670": { - "name": "class ClientDerbyRemoveAction*", + "1558190673": { + "name": "class RequirementList", "bases": [ - "DerbyRemoveAction", - "DerbyEffect", + "Requirement", "PropertyClass" ], - "hash": 29733670, + "hash": 1558190673, "properties": { - "m_buffType": { - "type": "enum DerbyTalentBuffType", + "m_applyNOT": { + "type": "bool", "id": 0, - "offset": 92, - "flags": 2097183, + "offset": 72, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1149251982, + "hash": 1746328074, "enum_options": { - "Buff": 0, - "Debuff": 1, - "Neither": 2 + "__DEFAULT": 0 } }, - "m_kTarget": { - "type": "enum DerbyTargetType", + "m_operator": { + "type": "enum Requirement::Operator", "id": 1, - "offset": 96, - "flags": 2097159, + "offset": 76, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1807803351, + "hash": 2672792317, "enum_options": { - "kTargetInFront": 0, - "kTargetBehind": 1, - "kTargetFirst": 2, - "kTargetSelf": 3, - "kTargetAll": 4, - "kTargetLast": 5 + "ROP_AND": 0, + "ROP_OR": 1, + "__DEFAULT": "ROP_AND" } }, - "m_nDuration": { - "type": "int", + "m_requirements": { + "type": "class Requirement*", "id": 2, - "offset": 104, + "offset": 80, "flags": 31, - "container": "Static", - "dynamic": false, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 1110167982 - }, - "m_effectID": { - "type": "unsigned int", - "id": 3, - "offset": 88, - "flags": 24, - "container": "Static", - "dynamic": false, + "pointer": true, + "hash": 1347801628 + } + } + }, + "1990122719": { + "name": "class HousingGameKhanDanceSequence*", + "bases": [ + "PropertyClass" + ], + "hash": 1990122719, + "properties": { + "m_danceSequenceList": { + "type": "unsigned char", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 2347630439 - }, - "m_imageFilename": { + "hash": 2597302176 + } + } + }, + "270201387": { + "name": "class VisualAttributeBehaviorTemplate", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 270201387, + "properties": { + "m_behaviorName": { "type": "std::string", - "id": 4, - "offset": 112, - "flags": 131103, + "id": 0, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2813328063 + "hash": 3130754092 }, - "m_iconIndex": { - "type": "unsigned int", - "id": 5, - "offset": 144, - "flags": 31, + "m_visualAttributeType": { + "type": "enum VisualAttributeType", + "id": 1, + "offset": 120, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1265133262 + "hash": 2701225082, + "enum_options": { + "VAT_HairStyle": 0, + "VAT_HairColor": 1, + "VAT_FaceStyle": 2, + "VAT_SkinColor": 3, + "VAT_EyeColor": 4, + "VAT_FacePaint": 5, + "VAT_NewEyeColor": 6, + "VAT_NewFaceStyle": 7, + "VAT_NoseStyle": 8, + "VAT_MouthStyle": 9, + "VAT_AccessoryStyle": 10, + "VAT_EyebrowStyle": 11, + "VAT_LipColorStyle": 12, + "VAT_BoyColor": 13, + "VAT_BoyTrimColor": 14, + "VAT_GirlColor": 15, + "VAT_GirlTrimColor": 16 + } }, - "m_soundOnActivate": { + "m_sourceFile": { "type": "std::string", - "id": 6, - "offset": 152, - "flags": 131103, + "id": 2, + "offset": 128, + "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1956929714 + "hash": 2304987980 }, - "m_soundOnTarget": { + "m_referenceFile": { "type": "std::string", - "id": 7, - "offset": 184, - "flags": 131103, + "id": 3, + "offset": 160, + "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3444214056 + "hash": 1866483306 }, - "m_targetParticleEffect": { - "type": "std::string", - "id": 8, - "offset": 216, - "flags": 131103, + "m_color": { + "type": "class Color", + "id": 4, + "offset": 192, + "flags": 262151, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3048234723 + "hash": 1791663549 }, - "m_overheadMessage": { + "m_equipmentIcon": { "type": "std::string", - "id": 9, - "offset": 248, - "flags": 8388639, + "id": 5, + "offset": 200, + "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1701018190 - }, - "m_requirements": { - "type": "class RequirementList", - "id": 10, - "offset": 280, - "flags": 31, + "hash": 1920035708 + } + } + }, + "1555394587": { + "name": "class SharedPointer", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 1555394587, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2840988582 + "hash": 3130754092 }, - "m_nActionType": { - "type": "enum DerbyActionTargetType", - "id": 11, - "offset": 376, - "flags": 2097183, + "m_lotWorldZone": { + "type": "std::string", + "id": 1, + "offset": 120, + "flags": 268435463, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3401355432, + "hash": 3026711022, "enum_options": { - "Jump": 0, - "Duck": 1, - "AllExceptCheer": 2, - "Cheer": 3 + "__BASECLASS": "ZoneData" } } } }, - "1944659735": { - "name": "class SharedPointer", + "1989170117": { + "name": "class HousingTextureBehaviorTemplate*", "bases": [ - "LootInfo", - "LootInfoBase", + "BehaviorTemplate", "PropertyClass" ], - "hash": 1944659735, + "hash": 1989170117, "properties": { - "m_lootType": { - "type": "enum LootInfo::LOOT_TYPE", + "m_behaviorName": { + "type": "std::string", "id": 0, "offset": 72, - "flags": 2097183, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1591891442, + "hash": 3130754092 + }, + "m_textureType": { + "type": "enum HousingTextureType", + "id": 1, + "offset": 120, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1680179944, "enum_options": { - "LOOT_TYPE_NONE": 0, - "LOOT_TYPE_GOLD": 1, - "LOOT_TYPE_MANA": 2, - "LOOT_TYPE_ITEM": 3, - "LOOT_TYPE_TREASURE_CARD": 4, - "LOOT_TYPE_MAGIC_XP": 5, - "LOOT_TYPE_ADD_SPELL": 6, - "LOOT_TYPE_MAX_HEALTH": 7, - "LOOT_TYPE_MAX_GOLD": 8, - "LOOT_TYPE_MAX_MANA": 9, - "LOOT_TYPE_MAX_POTION": 10, - "LOOT_TYPE_TRAINING_POINTS": 11, - "LOOT_TYPE_RECIPE": 12, - "LOOT_TYPE_CRAFTING_SLOT": 13, - "LOOT_TYPE_REAGENT": 14, - "LOOT_TYPE_PETSNACK": 15, - "LOOT_TYPE_GARDENING_XP": 16, - "LOOT_TYPE_PET_XP": 17, - "LOOT_TYPE_TREASURE_TABLE": 18, - "LOOT_TYPE_ARENA_POINTS": 19, - "LOOT_TYPE_ARENA_BONUS_POINTS": 20, - "LOOT_TYPE_GROUP": 21, - "LOOT_TYPE_FISHING_XP": 22, - "LOOT_TYPE_EVENT_CURRENCY_1": 24, - "LOOT_TYPE_EVENT_CURRENCY_2": 25, - "LOOT_TYPE_PVP_CURRENCY": 26, - "LOOT_TYPE_PVP_CURRENCY_BONUS": 27, - "LOOT_TYPE_PVP_TOURNEY_CURRENCY": 28, - "LOOT_TYPE_PVP_TOURNEY_CURRENCY_BONUS": 29, - "LOOT_TYPE_FURNITURE_ESSENCE": 30 + "HTT_FLOOR": 0, + "HTT_WALL": 1 } }, - "m_arenaBonusPointsAmount": { - "type": "int", - "id": 1, - "offset": 80, - "flags": 31, + "m_textureFilename": { + "type": "std::string", + "id": 2, + "offset": 128, + "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 774521529 + "hash": 2208648365 } } }, - "774596026": { - "name": "class ClientFishBehavior*", + "1553705857": { + "name": "class RidableBehavior*", "bases": [ - "FishBehavior", + "RidableBehaviorBase", "BehaviorInstance", "PropertyClass" ], - "hash": 774596026, + "hash": 1553705857, "properties": { "m_behaviorTemplateNameID": { "type": "unsigned int", @@ -464399,72 +193129,144 @@ "pointer": false, "hash": 223437287 }, - "m_fishSize": { - "type": "float", + "m_assignedPlayers": { + "type": "gid", "id": 1, "offset": 112, - "flags": 65536, - "container": "Static", - "dynamic": false, + "flags": 65543, + "container": "Vector", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 1986368316 + "hash": 1913541510 } } }, - "376466677": { - "name": "class SharedPointer", + "706511942": { + "name": "class FidgetBehaviorTemplate*", "bases": [ + "BehaviorTemplate", "PropertyClass" ], - "hash": 376466677, + "hash": 706511942, "properties": { - "m_FXFile": { + "m_behaviorName": { "type": "std::string", "id": 0, "offset": 72, - "flags": 131079, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2810683385 + "hash": 3130754092 }, - "m_stackingCategory": { - "type": "std::string", + "m_fidgetStateInfo": { + "type": "class FidgetStateInfo", "id": 1, - "offset": 104, + "offset": 120, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1986859062 + } + } + }, + "1988084744": { + "name": "class HatchmakingPetsList", + "bases": [ + "PropertyClass" + ], + "hash": 1988084744, + "properties": { + "m_hatchmakingPetsList": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2100166473 + }, + "m_disableKiosk": { + "type": "bool", + "id": 1, + "offset": 88, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2363740365 + "hash": 1561191592 }, - "m_repeatTime": { - "type": "float", + "m_disableOffer": { + "type": "bool", "id": 2, - "offset": 136, + "offset": 89, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 453389511 + "hash": 1565817209 + }, + "m_premiumPetExceptionCode": { + "type": "unsigned int", + "id": 3, + "offset": 92, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2278118367 } } }, - "1944344140": { - "name": "class SharedPointer", + "1138319455": { + "name": "class ActorMadlib*", "bases": [ - "ObstacleCourseObstaclePathBaseTemplate", - "ObstacleCourseObstacleBehaviorTemplate", - "BehaviorTemplate", "PropertyClass" ], - "hash": 1944344140, + "hash": 1138319455, "properties": { - "m_behaviorName": { + "m_madlibBlock": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2391615468 + }, + "m_index": { + "type": "unsigned int", + "id": 1, + "offset": 88, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1009433893 + } + } + }, + "1552218815": { + "name": "class DeathCinematicStageTemplate*", + "bases": [ + "CinematicStageTemplate", + "PropertyClass" + ], + "hash": 1552218815, + "properties": { + "m_name": { "type": "std::string", "id": 0, "offset": 72, @@ -464473,503 +193275,566 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 3130754092 + "hash": 1717359772 }, - "m_rate": { + "m_duration": { "type": "float", "id": 1, - "offset": 120, + "offset": 104, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 310005283 + "hash": 920323453 }, - "m_penaltyTime": { - "type": "float", + "m_actions": { + "type": "class SharedPointer", "id": 2, - "offset": 124, + "offset": 112, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 2083389507 + "pointer": true, + "hash": 1380578687 }, - "m_totalObstacleSize": { - "type": "class Vector3D", + "m_stageRelationships": { + "type": "class SharedPointer", "id": 3, "offset": 128, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 2379878414 + "pointer": true, + "hash": 499983354 }, - "m_bounds": { - "type": "class Vector3D", + "m_cameras": { + "type": "std::string", "id": 4, "offset": 152, - "flags": 7, + "flags": 131079, "container": "Vector", "dynamic": true, "singleton": false, "pointer": false, - "hash": 1948083181 + "hash": 3217341687 }, - "m_orientToPath": { - "type": "bool", + "m_altcameras": { + "type": "std::string", "id": 5, "offset": 176, - "flags": 7, - "container": "Static", - "dynamic": false, + "flags": 131079, + "container": "Vector", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 655036148 + "hash": 1882980152 }, - "m_heightUp": { - "type": "float", + "m_bShowDefeatedText": { + "type": "bool", "id": 6, - "offset": 140, + "offset": 232, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2208713013 + "hash": 2068996589 }, - "m_heightDown": { - "type": "float", + "m_bForceStageToWaitOnAnimation": { + "type": "bool", "id": 7, - "offset": 144, + "offset": 233, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 655333896 + "hash": 2071596205 }, - "m_changeDirectionSoundList": { - "type": "class WeightedList", + "m_animation": { + "type": "std::string", "id": 8, - "offset": 184, + "offset": 200, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1487918739 + "hash": 3431428731 } } }, - "772937500": { - "name": "class ObstacleCoursePendulumBehavior", + "1130469477": { + "name": "class std::list >", + "bases": [], + "hash": 1130469477, + "properties": {} + }, + "1551795256": { + "name": "class SharedPointer", "bases": [ - "ObstacleCourseObstacleBehavior", - "BehaviorInstance", + "BehaviorTemplate", "PropertyClass" ], - "hash": 772937500, + "hash": 1551795256, "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", + "m_behaviorName": { + "type": "std::string", "id": 0, - "offset": 104, - "flags": 39, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 + "hash": 3130754092 } } }, - "376260861": { - "name": "class SharedPointer", + "1988262585": { + "name": "class SharedPointer", "bases": [ - "BehaviorTemplate", "PropertyClass" ], - "hash": 376260861, + "hash": 1988262585, "properties": { - "m_behaviorName": { - "type": "std::string", + "m_stitchLeaderboardList": { + "type": "gid", "id": 0, "offset": 72, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 3130754092 + "hash": 1311714008 }, - "m_groundOffset": { - "type": "float", + "m_type": { + "type": "unsigned int", "id": 1, - "offset": 120, + "offset": 88, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 684524077 - }, - "m_yaw": { - "type": "float", - "id": 2, - "offset": 124, - "flags": 7, + "hash": 431304463 + } + } + }, + "272691651": { + "name": "class InteractiveMusicBehavior", + "bases": [ + "InteractiveMusicBehaviorBase", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 272691651, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 357256328 + "hash": 223437287 }, - "m_showNametag": { - "type": "bool", - "id": 3, - "offset": 128, - "flags": 7, + "m_musicData": { + "type": "std::string", + "id": 1, + "offset": 200, + "flags": 66087, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 584664753 - }, - "m_scale": { + "hash": 2963606294 + } + } + }, + "1126377724": { + "name": "class SharedPointer", + "bases": [ + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 1126377724, + "properties": { + "m_timeOffset": { "type": "float", - "id": 4, - "offset": 132, + "id": 0, + "offset": 72, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 899693439 + "hash": 2237098605 }, - "m_alpha": { - "type": "float", - "id": 5, - "offset": 136, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 878686493 - }, - "m_cycleSec": { - "type": "float", - "id": 6, - "offset": 140, - "flags": 7, + "hash": 2285866132 + } + } + }, + "1551752045": { + "name": "class SharedPointer", + "bases": [ + "ZoneTokenBase", + "PropertyClass" + ], + "hash": 1551752045, + "properties": { + "m_debugName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1547908898 + "hash": 3553984419 }, - "m_animDelaySec": { - "type": "float", - "id": 7, - "offset": 144, - "flags": 7, - "container": "Static", - "dynamic": false, + "m_adjectiveList": { + "type": "std::string", + "id": 1, + "offset": 104, + "flags": 31, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 2131058854 + "hash": 3195213318 }, - "m_animChance": { - "type": "float", - "id": 8, - "offset": 148, - "flags": 7, + "m_icon": { + "type": "std::string", + "id": 2, + "offset": 120, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 434823806 + "hash": 1717182340 }, - "m_animList": { + "m_iconBW": { "type": "std::string", - "id": 9, + "id": 3, "offset": 152, - "flags": 7, - "container": "List", - "dynamic": true, + "flags": 131103, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 2531745852 + "hash": 2047461085 }, - "m_settings": { - "type": "class SharedPointer", - "id": 10, - "offset": 168, - "flags": 7, - "container": "List", - "dynamic": true, + "m_description": { + "type": "std::string", + "id": 4, + "offset": 184, + "flags": 8388639, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2944992476 - } - } - }, - "30520102": { - "name": "class ClientDerbyRemoveAction", - "bases": [ - "DerbyRemoveAction", - "DerbyEffect", - "PropertyClass" - ], - "hash": 30520102, - "properties": { - "m_buffType": { - "type": "enum DerbyTalentBuffType", - "id": 0, - "offset": 92, + "pointer": false, + "hash": 1649374815 + }, + "m_displayMode": { + "type": "enum ZTDisplayMode", + "id": 5, + "offset": 216, "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1149251982, + "hash": 2216526410, "enum_options": { - "Buff": 0, - "Debuff": 1, - "Neither": 2 + "ZTDM_Shown": 0, + "ZTDM_Discoverable": 1, + "ZTDM_Hidden": 2 } }, - "m_kTarget": { - "type": "enum DerbyTargetType", - "id": 1, - "offset": 96, - "flags": 2097159, + "m_storage": { + "type": "enum ZTStorage", + "id": 6, + "offset": 220, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1807803351, + "hash": 2290454852, "enum_options": { - "kTargetInFront": 0, - "kTargetBehind": 1, - "kTargetFirst": 2, - "kTargetSelf": 3, - "kTargetAll": 4, - "kTargetLast": 5 + "ZTS_Player": 0, + "ZTS_Zone": 1 } }, - "m_nDuration": { - "type": "int", - "id": 2, - "offset": 104, - "flags": 31, + "m_onEnable": { + "type": "class SharedPointer", + "id": 7, + "offset": 224, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1110167982 + "pointer": true, + "hash": 2591736864 }, - "m_effectID": { - "type": "unsigned int", - "id": 3, - "offset": 88, - "flags": 24, + "m_onDiscover": { + "type": "class SharedPointer", + "id": 8, + "offset": 240, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 2347630439 + "pointer": true, + "hash": 2826026872 }, - "m_imageFilename": { - "type": "std::string", - "id": 4, - "offset": 112, - "flags": 131103, + "m_onDisable": { + "type": "class SharedPointer", + "id": 9, + "offset": 256, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 2813328063 + "pointer": true, + "hash": 1860656717 }, - "m_iconIndex": { - "type": "unsigned int", - "id": 5, - "offset": 144, + "m_sourceID": { + "type": "gid", + "id": 10, + "offset": 272, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1265133262 + "hash": 1134700470 }, - "m_soundOnActivate": { - "type": "std::string", - "id": 6, - "offset": 152, - "flags": 131103, + "m_inZone": { + "type": "bool", + "id": 11, + "offset": 280, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1956929714 + "hash": 564535654 }, - "m_soundOnTarget": { - "type": "std::string", - "id": 7, - "offset": 184, - "flags": 131103, + "m_enabled": { + "type": "bool", + "id": 12, + "offset": 281, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3444214056 + "hash": 504506718 }, - "m_targetParticleEffect": { - "type": "std::string", - "id": 8, - "offset": 216, - "flags": 131103, + "m_discovered": { + "type": "bool", + "id": 13, + "offset": 282, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3048234723 + "hash": 2060478331 }, - "m_overheadMessage": { + "m_duration": { "type": "std::string", - "id": 9, - "offset": 248, - "flags": 8388639, + "id": 14, + "offset": 288, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1701018190 + "hash": 2327821921 }, - "m_requirements": { - "type": "class RequirementList", - "id": 10, - "offset": 280, - "flags": 31, + "m_onExpire": { + "type": "class SharedPointer", + "id": 15, + "offset": 320, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 2840988582 + "pointer": true, + "hash": 2604142950 }, - "m_nActionType": { - "type": "enum DerbyActionTargetType", - "id": 11, - "offset": 376, - "flags": 2097183, + "m_timeTriggers": { + "type": "class SharedPointer", + "id": 16, + "offset": 336, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1112107844 + }, + "m_expireTime": { + "type": "unsigned int", + "id": 17, + "offset": 356, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3401355432, - "enum_options": { - "Jump": 0, - "Duck": 1, - "AllExceptCheer": 2, - "Cheer": 3 - } + "hash": 1836304873 } } }, - "772205039": { - "name": "class GuildMuseumCuratorBehaviorBase*", + "710399610": { + "name": "class SummonMinionCinematicAction", "bases": [ - "BehaviorInstance", + "QueuedCombatCinematicAction", + "CinematicAction", "PropertyClass" ], - "hash": 772205039, + "hash": 710399610, "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", + "m_timeOffset": { + "type": "float", "id": 0, - "offset": 104, - "flags": 39, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 + "hash": 2237098605 } } }, - "1945322180": { - "name": "class CSRAccessPassInfo*", + "271199900": { + "name": "class TakeCinematicStageTemplate*", "bases": [ + "CinematicStageTemplate", "PropertyClass" ], - "hash": 1945322180, + "hash": 271199900, "properties": { - "m_passName": { + "m_name": { "type": "std::string", "id": 0, "offset": 72, - "flags": 23, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2647581395 + "hash": 1717359772 }, - "m_hasPass": { - "type": "bool", + "m_duration": { + "type": "float", "id": 1, "offset": 104, - "flags": 23, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1743355078 + "hash": 920323453 }, - "m_grantedByRight": { - "type": "bool", + "m_actions": { + "type": "class SharedPointer", "id": 2, - "offset": 105, - "flags": 23, - "container": "Static", - "dynamic": false, + "offset": 112, + "flags": 7, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 498060849 - } - } - }, - "773327064": { - "name": "class PeriodicSubscriptionsInfo", - "bases": [ - "PropertyClass" - ], - "hash": 773327064, - "properties": { - "m_subscriptions": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 31, + "pointer": true, + "hash": 1380578687 + }, + "m_stageRelationships": { + "type": "class SharedPointer", + "id": 3, + "offset": 128, + "flags": 7, "container": "List", "dynamic": true, "singleton": false, "pointer": true, - "hash": 3595491367 + "hash": 499983354 + }, + "m_cameras": { + "type": "std::string", + "id": 4, + "offset": 152, + "flags": 131079, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 3217341687 + }, + "m_altcameras": { + "type": "std::string", + "id": 5, + "offset": 176, + "flags": 131079, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1882980152 + }, + "m_animation": { + "type": "std::string", + "id": 6, + "offset": 200, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3431428731 + }, + "m_sound": { + "type": "std::string", + "id": 7, + "offset": 232, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2307644996 } } }, - "379046504": { - "name": "class HousingShopOption", + "1124559077": { + "name": "class FishTournamentLeaderboardOption*", "bases": [ "ServiceOptionBase", "PropertyClass" ], - "hash": 379046504, + "hash": 1124559077, "properties": { "m_serviceName": { "type": "std::string", @@ -465028,816 +193893,550 @@ } } }, - "377905692": { - "name": "class SharedPointer", + "710248837": { + "name": "class SharedPointer", "bases": [ - "ServiceOptionBase", + "BehaviorInstance", "PropertyClass" ], - "hash": 377905692, + "hash": 710248837, "properties": { - "m_serviceName": { - "type": "std::string", + "m_behaviorTemplateNameID": { + "type": "unsigned int", "id": 0, - "offset": 72, - "flags": 31, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2206028813 + "hash": 223437287 }, - "m_iconKey": { - "type": "std::string", + "m_level": { + "type": "unsigned char", "id": 1, - "offset": 168, - "flags": 31, + "offset": 112, + "flags": 65727, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2457138637 + "hash": 1438884808 }, - "m_displayKey": { - "type": "std::string", + "m_XP": { + "type": "unsigned int", "id": 2, - "offset": 104, - "flags": 31, + "offset": 116, + "flags": 65727, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3023276954 + "hash": 2301988085 }, - "m_serviceIndex": { - "type": "unsigned int", + "m_firstName": { + "type": "int", "id": 3, - "offset": 204, - "flags": 31, + "offset": 264, + "flags": 65703, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2103126710 + "hash": 1618303331 }, - "m_forceInteract": { - "type": "bool", + "m_middleName": { + "type": "int", "id": 4, - "offset": 200, - "flags": 31, + "offset": 268, + "flags": 65703, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1705789564 - } - } - }, - "377422855": { - "name": "class TrainingPointLootInfo*", - "bases": [ - "LootInfo", - "LootInfoBase", - "PropertyClass" - ], - "hash": 377422855, - "properties": { - "m_lootType": { - "type": "enum LootInfo::LOOT_TYPE", - "id": 0, - "offset": 72, - "flags": 2097183, + "hash": 199781034 + }, + "m_lastName": { + "type": "int", + "id": 5, + "offset": 272, + "flags": 65703, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1591891442, - "enum_options": { - "LOOT_TYPE_NONE": 0, - "LOOT_TYPE_GOLD": 1, - "LOOT_TYPE_MANA": 2, - "LOOT_TYPE_ITEM": 3, - "LOOT_TYPE_TREASURE_CARD": 4, - "LOOT_TYPE_MAGIC_XP": 5, - "LOOT_TYPE_ADD_SPELL": 6, - "LOOT_TYPE_MAX_HEALTH": 7, - "LOOT_TYPE_MAX_GOLD": 8, - "LOOT_TYPE_MAX_MANA": 9, - "LOOT_TYPE_MAX_POTION": 10, - "LOOT_TYPE_TRAINING_POINTS": 11, - "LOOT_TYPE_RECIPE": 12, - "LOOT_TYPE_CRAFTING_SLOT": 13, - "LOOT_TYPE_REAGENT": 14, - "LOOT_TYPE_PETSNACK": 15, - "LOOT_TYPE_GARDENING_XP": 16, - "LOOT_TYPE_PET_XP": 17, - "LOOT_TYPE_TREASURE_TABLE": 18, - "LOOT_TYPE_ARENA_POINTS": 19, - "LOOT_TYPE_ARENA_BONUS_POINTS": 20, - "LOOT_TYPE_GROUP": 21, - "LOOT_TYPE_FISHING_XP": 22, - "LOOT_TYPE_EVENT_CURRENCY_1": 24, - "LOOT_TYPE_EVENT_CURRENCY_2": 25, - "LOOT_TYPE_PVP_CURRENCY": 26, - "LOOT_TYPE_PVP_CURRENCY_BONUS": 27, - "LOOT_TYPE_PVP_TOURNEY_CURRENCY": 28, - "LOOT_TYPE_PVP_TOURNEY_CURRENCY_BONUS": 29, - "LOOT_TYPE_FURNITURE_ESSENCE": 30 - } + "hash": 328503983 }, - "m_trainingPoints": { - "type": "int", - "id": 1, - "offset": 80, + "m_currentStats": { + "type": "class PetStat", + "id": 6, + "offset": 128, "flags": 31, - "container": "Static", - "dynamic": false, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 1003892499 - } - } - }, - "1946106526": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1946106526, - "properties": { - "m_type": { - "type": "std::string", - "id": 0, - "offset": 72, + "hash": 2342610661 + }, + "m_maxStats": { + "type": "class PetStat", + "id": 7, + "offset": 144, "flags": 31, - "container": "Static", - "dynamic": false, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 1717601629 + "hash": 1846363080 }, - "m_resetTime": { - "type": "unsigned __int64", - "id": 1, - "offset": 104, - "flags": 31, + "m_hatchedTimeSecs": { + "type": "unsigned int", + "id": 8, + "offset": 160, + "flags": 65727, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1841687339 + "hash": 606051291 }, - "m_productIconType": { - "type": "std::string", - "id": 2, - "offset": 112, + "m_expressedTalents": { + "type": "unsigned int", + "id": 9, + "offset": 168, "flags": 31, - "container": "Static", - "dynamic": false, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 3026584199 + "hash": 1557974043 }, - "m_status": { - "type": "std::string", - "id": 3, - "offset": 144, + "m_expressedDerbyTalents": { + "type": "unsigned int", + "id": 10, + "offset": 184, "flags": 31, - "container": "Static", - "dynamic": false, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 2458480799 + "hash": 484465777 }, - "m_itemsStatus": { + "m_talentRatings": { "type": "std::string", - "id": 4, - "offset": 176, + "id": 11, + "offset": 216, "flags": 31, - "container": "Static", - "dynamic": false, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 2942863777 + "hash": 2170591163 }, - "m_membership": { - "type": "bool", - "id": 5, - "offset": 208, + "m_powerRatings": { + "type": "std::string", + "id": 12, + "offset": 232, "flags": 31, - "container": "Static", - "dynamic": false, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 1596198559 - } - } - }, - "775336292": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 775336292, - "properties": { - "m_chatID": { + "hash": 1881287968 + }, + "m_overallRating": { "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 7, + "id": 13, + "offset": 248, + "flags": 159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 531784794 + "hash": 462138631 }, - "m_label": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, + "m_activeRating": { + "type": "unsigned int", + "id": 14, + "offset": 252, + "flags": 159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2298819451 + "hash": 234391118 }, - "m_text": { - "type": "std::string", - "id": 2, - "offset": 112, - "flags": 7, + "m_costToMorph": { + "type": "unsigned int", + "id": 15, + "offset": 256, + "flags": 65567, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1717580128 + "hash": 1866472719 }, - "m_charAnim": { - "type": "std::string", - "id": 3, - "offset": 144, - "flags": 7, + "m_rarity": { + "type": "unsigned int", + "id": 16, + "offset": 260, + "flags": 65567, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2402868926 + "hash": 1111114664 }, - "m_categoryMask": { + "m_requiredXP": { "type": "unsigned int", - "id": 4, - "offset": 176, - "flags": 7, + "id": 17, + "offset": 120, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2304824567 + "hash": 1890811574 }, - "m_dynFolder": { + "m_housingPetPrimaryColor": { "type": "int", - "id": 5, - "offset": 180, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 510571201 - }, - "m_supportsMore": { - "type": "bool", - "id": 6, - "offset": 184, - "flags": 7, + "id": 18, + "offset": 276, + "flags": 65664, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 902487766 + "hash": 525135139 }, - "m_membersOnly": { - "type": "bool", - "id": 7, - "offset": 185, - "flags": 7, + "m_housingPetPattern": { + "type": "int", + "id": 19, + "offset": 280, + "flags": 65664, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1051823616 + "hash": 165011646 }, - "m_unlockKey": { - "type": "std::string", - "id": 8, - "offset": 192, - "flags": 7, + "m_housingPetSecondaryColor": { + "type": "int", + "id": 20, + "offset": 284, + "flags": 65695, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3522694864 + "hash": 358656263 }, - "m_faceAnim": { - "type": "std::string", - "id": 9, - "offset": 224, - "flags": 7, + "m_housingPetOriginalGID": { + "type": "gid", + "id": 21, + "offset": 288, + "flags": 65664, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3169175247 + "hash": 1259075879 }, - "m_sound": { - "type": "std::string", - "id": 10, - "offset": 256, - "flags": 7, + "m_housingPetJewelTemplateID": { + "type": "unsigned int", + "id": 22, + "offset": 296, + "flags": 65664, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2307644996 + "hash": 1836117651 }, - "m_childEntries": { - "type": "class SharedPointer", - "id": 11, - "offset": 288, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1678382163 - } - } - }, - "1945818447": { - "name": "class DestroyShadowCreatureCinematicAction*", - "bases": [ - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 1945818447, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, + "m_happiness": { + "type": "unsigned int", + "id": 23, + "offset": 300, + "flags": 65727, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 + "hash": 1380970552 }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, + "m_maximumHappiness": { + "type": "unsigned int", + "id": 24, + "offset": 304, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2285866132 + "hash": 874954582 } } }, - "775120159": { - "name": "class ReqItemHasAdjective*", + "271199890": { + "name": "class TakeCinematicStageTemplate", "bases": [ - "Requirement", + "CinematicStageTemplate", "PropertyClass" ], - "hash": 775120159, + "hash": 271199890, "properties": { - "m_applyNOT": { - "type": "bool", + "m_name": { + "type": "std::string", "id": 0, "offset": 72, - "flags": 31, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1746328074, - "enum_options": { - "__DEFAULT": 0 - } + "hash": 1717359772 }, - "m_operator": { - "type": "enum Requirement::Operator", + "m_duration": { + "type": "float", "id": 1, - "offset": 76, - "flags": 2097183, + "offset": 104, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2672792317, - "enum_options": { - "ROP_AND": 0, - "ROP_OR": 1, - "__DEFAULT": "ROP_AND" - } + "hash": 920323453 }, - "m_adjective": { - "type": "std::string", + "m_actions": { + "type": "class SharedPointer", "id": 2, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3429518154 - } - } - }, - "378758584": { - "name": "class KhanDancePlayer", - "bases": [ - "PropertyClass" - ], - "hash": 378758584, - "properties": {} - }, - "378548646": { - "name": "class std::list >", - "bases": [], - "hash": 378548646, - "properties": {} - }, - "1946372007": { - "name": "class DailyPvPData", - "bases": [ - "PropertyClass" - ], - "hash": 1946372007, - "properties": { - "m_dailyPvPList": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, + "offset": 112, "flags": 7, "container": "List", "dynamic": true, "singleton": false, "pointer": true, - "hash": 2102460099 - } - } - }, - "775531811": { - "name": "class TieredSpellConfig", - "bases": [ - "PropertyClass" - ], - "hash": 775531811, - "properties": { - "m_tieredSpellGroupList": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, + "hash": 1380578687 + }, + "m_stageRelationships": { + "type": "class SharedPointer", + "id": 3, + "offset": 128, "flags": 7, "container": "List", "dynamic": true, "singleton": false, "pointer": true, - "hash": 1855207927 - } - } - }, - "378400400": { - "name": "class ClientSpellbookBehavior", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 378400400, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, + "hash": 499983354 + }, + "m_cameras": { + "type": "std::string", + "id": 4, + "offset": 152, + "flags": 131079, + "container": "Vector", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 223437287 + "hash": 3217341687 }, - "m_spellIDList": { - "type": "class SharedPointer", - "id": 1, - "offset": 128, - "flags": 27, - "container": "List", + "m_altcameras": { + "type": "std::string", + "id": 5, + "offset": 176, + "flags": 131079, + "container": "Vector", "dynamic": true, "singleton": false, - "pointer": true, - "hash": 3635357151 - } - } - }, - "28443790": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 28443790, - "properties": { - "m_badgeFilterNameID": { - "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, "pointer": false, - "hash": 2064078516 + "hash": 1882980152 }, - "m_numberOfBadges": { - "type": "int", - "id": 1, - "offset": 76, - "flags": 31, + "m_animation": { + "type": "std::string", + "id": 6, + "offset": 200, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1438042878 + "hash": 3431428731 }, - "m_numberOfExtraCreditBadges": { - "type": "int", - "id": 2, - "offset": 80, - "flags": 31, + "m_sound": { + "type": "std::string", + "id": 7, + "offset": 232, + "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 301196253 + "hash": 2307644996 } } }, - "1960204144": { - "name": "class SharedPointer", + "1123934692": { + "name": "class TournamentInfoRequest", "bases": [ - "ActorCinematicAction", - "CinematicAction", "PropertyClass" ], - "hash": 1960204144, + "hash": 1123934692, "properties": { - "m_timeOffset": { - "type": "float", + "m_tournamentNameID": { + "type": "unsigned int", "id": 0, "offset": 72, - "flags": 7, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 + "hash": 1799846440 }, - "m_actor": { - "type": "std::string", + "m_leagueID": { + "type": "unsigned int", "id": 1, - "offset": 80, - "flags": 7, + "offset": 76, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2285866132 + "hash": 692361645 }, - "m_activate": { - "type": "bool", + "m_seasonID": { + "type": "unsigned int", "id": 2, - "offset": 120, - "flags": 7, + "offset": 80, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 142527940 + "hash": 535260643 }, - "m_cloaked": { - "type": "bool", + "m_characterID": { + "type": "gid", "id": 3, - "offset": 121, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 7349510 - } - } - }, - "776472151": { - "name": "class ClientLeashBehavior*", - "bases": [ - "LeashBehavior", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 776472151, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, + "offset": 88, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 + "hash": 210498386 }, - "m_ownerGid": { + "m_bracketID": { "type": "gid", - "id": 1, - "offset": 128, + "id": 4, + "offset": 96, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1765088663 + "hash": 441272961 }, - "m_radius": { - "type": "float", - "id": 2, - "offset": 136, + "m_bracketIDList": { + "type": "class SharedPointer", + "id": 5, + "offset": 152, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 989410271 + "pointer": true, + "hash": 3367716172 }, - "m_angle": { - "type": "float", - "id": 3, - "offset": 140, + "m_tournamentRequestType": { + "type": "unsigned int", + "id": 6, + "offset": 104, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 878748702 + "hash": 874052549 }, - "m_leashType": { - "type": "enum LeashType", - "id": 4, - "offset": 144, + "m_startingIndex": { + "type": "int", + "id": 7, + "offset": 108, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2170708051, - "enum_options": { - "LLT_Rigid": 0, - "LLT_Elastic": 1 - } + "hash": 2126940894 }, - "m_alwaysDisplay": { - "type": "bool", - "id": 5, - "offset": 161, + "m_numberOfElements": { + "type": "int", + "id": 8, + "offset": 112, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2071781402 - } - } - }, - "1954006647": { - "name": "class SharedPointer", - "bases": [ - "TournamentUpdate", - "PropertyClass" - ], - "hash": 1954006647, - "properties": { - "m_actorID": { - "type": "gid", - "id": 0, - "offset": 80, + "hash": 790678773 + }, + "m_friendListBuffer": { + "type": "std::string", + "id": 9, + "offset": 120, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1371104126 + "hash": 2271699753 }, - "m_teamID": { - "type": "gid", - "id": 1, - "offset": 72, + "m_qualifiedOnly": { + "type": "bool", + "id": 10, + "offset": 168, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 982102220 - } - } - }, - "29109451": { - "name": "class ClientAtticBehavior*", - "bases": [ - "AtticBehavior", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 29109451, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 + "hash": 789459241 }, - "m_containerGID": { - "type": "gid", - "id": 1, - "offset": 112, - "flags": 63, + "m_qualifiedLevel": { + "type": "unsigned int", + "id": 11, + "offset": 172, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 550557519 + "hash": 405173305 }, - "m_atticItemCount": { + "m_qualifiedRank": { "type": "int", - "id": 2, - "offset": 120, - "flags": 63, + "id": 12, + "offset": 176, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 184605671 + "hash": 787071770 } } }, - "776352732": { - "name": "class PhysicsSimMass*", - "bases": [ - "PropertyClass" - ], - "hash": 776352732, - "properties": {} - }, - "378761656": { - "name": "class KhanDancePlayer*", - "bases": [ - "PropertyClass" - ], - "hash": 378761656, - "properties": {} - }, - "1950269687": { - "name": "class PartyChatObserver", - "bases": [ - "GroupObserver", - "PropertyClass" - ], - "hash": 1950269687, - "properties": {} - }, - "776352636": { - "name": "class PhysicsSimMass", - "bases": [ - "PropertyClass" - ], - "hash": 776352636, - "properties": {} - }, - "1949770771": { - "name": "class ZoneTokenWindow*", + "709697322": { + "name": "class SharedPointer", "bases": [ + "ControlRichEdit", + "ControlEdit", "Window", "PropertyClass" ], - "hash": 1949770771, + "hash": 709697322, "properties": { "m_sName": { "type": "std::string", @@ -465873,11 +194472,8 @@ "hash": 983582334, "enum_options": { "HAS_BACK": 1, - "SCALE_CHILDREN": 2, "CAN_MOVE": 4, "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "FOCUS_LOCKED": 64, "CAN_FOCUS": 128, "CAN_DOCK": 32, "DO_NOT_CAPTURE_MOUSE": 256, @@ -465889,7 +194485,13 @@ "USE_ALPHA_BOUNDS": 8192, "AUTO_GROW": 16384, "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152 + "AUTO_RESIZE": 49152, + "FORCE_NUMERIC": 16777216, + "FORCE_ALPHA": 268435456, + "FORCE_ALPHANUMERIC": 536870912, + "FORCE_INTEGER": 33554432, + "FORCE_POSITIVE": 67108864, + "FORCE_RANGE": 134217728 } }, "m_Flags": { @@ -466049,264 +194651,793 @@ "singleton": false, "pointer": false, "hash": 3091503757 + }, + "m_sText": { + "type": "std::wstring", + "id": 16, + "offset": 584, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2102642960 + }, + "m_nMaxLength": { + "type": "int", + "id": 17, + "offset": 620, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1183478416 + }, + "m_bPassword": { + "type": "bool", + "id": 18, + "offset": 624, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1604468200 + }, + "m_bLog": { + "type": "bool", + "id": 19, + "offset": 625, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 221687287 + }, + "m_previousNext": { + "type": "bool", + "id": 20, + "offset": 627, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 858581071 + }, + "m_nMaxLogSize": { + "type": "int", + "id": 21, + "offset": 712, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 779573899 + }, + "m_bEditing": { + "type": "bool", + "id": 22, + "offset": 616, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1243218553 + }, + "m_bAllowPaste": { + "type": "bool", + "id": 23, + "offset": 626, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1129316721 + }, + "m_nLogPosition": { + "type": "int", + "id": 24, + "offset": 704, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1120160767 + }, + "m_nCursor": { + "type": "int", + "id": 25, + "offset": 716, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1876782150 + }, + "m_nEditBegin": { + "type": "int", + "id": 26, + "offset": 720, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1066592403 + }, + "m_nEditEnd": { + "type": "int", + "id": 27, + "offset": 724, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1560905669 + }, + "m_sSavedText": { + "type": "std::wstring", + "id": 28, + "offset": 728, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2197953283 + }, + "m_fCursorBlinkSpeed": { + "type": "float", + "id": 29, + "offset": 760, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2232655228 + }, + "m_fCursorTimer": { + "type": "float", + "id": 30, + "offset": 764, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1929942748 + }, + "m_bCursorBlink": { + "type": "bool", + "id": 31, + "offset": 768, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 683441507 + }, + "m_fMinRange": { + "type": "double", + "id": 32, + "offset": 776, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3079523396 + }, + "m_fMaxRange": { + "type": "double", + "id": 33, + "offset": 784, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3876551814 + }, + "m_nPrecision": { + "type": "int", + "id": 34, + "offset": 792, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1404974196 + }, + "m_bDeleteOnFirstChar": { + "type": "bool", + "id": 35, + "offset": 618, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 902105643 } } }, - "378961954": { - "name": "class StartingPipEffectTemplate", + "1989475166": { + "name": "class SharedPointer", "bases": [ - "GameEffectTemplate", "PropertyClass" ], - "hash": 378961954, + "hash": 1989475166, "properties": { - "m_effectName": { + "m_housingItemGIDList": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 310124628 + } + } + }, + "1123285928": { + "name": "class SharedPointer", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1123285928, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + } + } + }, + "1551872303": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1551872303, + "properties": { + "m_enums": { "type": "std::string", "id": 0, + "offset": 128, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2291006147 + } + } + }, + "1123180163": { + "name": "class SharedPointer", + "bases": [ + "CinematicAction", + "PropertyClass" + ], + "hash": 1123180163, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, "offset": 72, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2029161513 + "hash": 2237098605 }, - "m_effectCategory": { + "m_eventToSend": { "type": "std::string", "id": 1, - "offset": 104, + "offset": 80, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1852673222 - }, - "m_sortOrder": { + "hash": 1564059786 + } + } + }, + "271300776": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 271300776, + "properties": { + "m_nCostChangeAmt": { "type": "int", - "id": 2, - "offset": 148, - "flags": 7, + "id": 0, + "offset": 72, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1411218206 + "hash": 1687521865 }, - "m_duration": { - "type": "double", - "id": 3, - "offset": 192, + "m_kTerrainType": { + "type": "enum DerbyTerrainTargetType", + "id": 1, + "offset": 76, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2546445910, + "enum_options": { + "Grass": 0, + "Dirt": 1, + "Clay": 2, + "AllObstacleTerrain": 4 + } + } + } + }, + "710316710": { + "name": "class CollisionBehaviorTemplate*", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 710316710, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2727932435 + "hash": 3130754092 }, - "m_stackingCategories": { + "m_walkableCollisionFilename": { + "type": "std::string", + "id": 1, + "offset": 120, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2223282859 + }, + "m_solidCollisionFilename": { + "type": "std::string", + "id": 2, + "offset": 152, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3292753187 + }, + "m_clickableCollisionFilename": { "type": "std::string", + "id": 3, + "offset": 184, + "flags": 131335, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1964485570 + }, + "m_bAutoClickBox": { + "type": "bool", "id": 4, - "offset": 160, + "offset": 216, "flags": 7, - "container": "List", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 1774497525 + "hash": 13289565 }, - "m_isPersistent": { + "m_bDisableCollision": { "type": "bool", "id": 5, - "offset": 153, + "offset": 217, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 923861920 + "hash": 2086036629 }, - "m_bIsOnPet": { + "m_bClientOnly": { "type": "bool", "id": 6, - "offset": 154, + "offset": 218, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 522593303 - }, - "m_isPublic": { - "type": "bool", - "id": 7, - "offset": 152, + "hash": 1918653686 + } + } + }, + "1990328099": { + "name": "class SharedPointer", + "bases": [ + "ComplexRotateTurnIndicatorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 1990328099, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1728439822 + "hash": 2237098605 }, - "m_visualEffectAddName": { + "m_rotationInfo": { + "type": "class SharedPointer", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2332010820 + } + } + }, + "1552219135": { + "name": "class DeathCinematicStageTemplate", + "bases": [ + "CinematicStageTemplate", + "PropertyClass" + ], + "hash": 1552219135, + "properties": { + "m_name": { "type": "std::string", - "id": 8, - "offset": 200, + "id": 0, + "offset": 72, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3382086694 + "hash": 1717359772 }, - "m_visualEffectRemoveName": { + "m_duration": { + "type": "float", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 920323453 + }, + "m_actions": { + "type": "class SharedPointer", + "id": 2, + "offset": 112, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1380578687 + }, + "m_stageRelationships": { + "type": "class SharedPointer", + "id": 3, + "offset": 128, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 499983354 + }, + "m_cameras": { "type": "std::string", - "id": 9, + "id": 4, + "offset": 152, + "flags": 131079, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 3217341687 + }, + "m_altcameras": { + "type": "std::string", + "id": 5, + "offset": 176, + "flags": 131079, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1882980152 + }, + "m_bShowDefeatedText": { + "type": "bool", + "id": 6, "offset": 232, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1541697323 + "hash": 2068996589 }, - "m_onAddFunctorName": { - "type": "std::string", - "id": 10, - "offset": 280, + "m_bForceStageToWaitOnAnimation": { + "type": "bool", + "id": 7, + "offset": 233, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1561843107 + "hash": 2071596205 }, - "m_onRemoveFunctorName": { + "m_animation": { "type": "std::string", - "id": 11, - "offset": 312, + "id": 8, + "offset": 200, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2559017864 + "hash": 3431428731 + } + } + }, + "1990128863": { + "name": "class HousingGameKhanDanceSequence", + "bases": [ + "PropertyClass" + ], + "hash": 1990128863, + "properties": { + "m_danceSequenceList": { + "type": "unsigned char", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2597302176 + } + } + }, + "272451851": { + "name": "class ClientLoyaltyStoreOption*", + "bases": [ + "LoyaltyStoreOption", + "ServiceOptionBase", + "PropertyClass" + ], + "hash": 272451851, + "properties": { + "m_serviceName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2206028813 }, - "m_stackingRule": { - "type": "enum STACKING_RULE", - "id": 12, - "offset": 144, - "flags": 2097159, + "m_iconKey": { + "type": "std::string", + "id": 1, + "offset": 168, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 431568889, - "enum_options": { - "STACKING_ALLOWED": 0, - "STACKING_NOSTACK": 1, - "STACKING_REPLACE": 2 - } + "hash": 2457138637 }, - "m_pipsGiven": { - "type": "int", - "id": 13, - "offset": 360, - "flags": 7, + "m_displayKey": { + "type": "std::string", + "id": 2, + "offset": 104, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1346249167 + "hash": 3023276954 }, - "m_powerPipsGiven": { - "type": "int", - "id": 14, - "offset": 364, - "flags": 7, + "m_serviceIndex": { + "type": "unsigned int", + "id": 3, + "offset": 204, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 377908508 + "hash": 2103126710 + }, + "m_forceInteract": { + "type": "bool", + "id": 4, + "offset": 200, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1705789564 } } }, - "1946911045": { - "name": "class RespecOption*", + "1123517181": { + "name": "class ProxyMesh*", "bases": [ - "ServiceOptionBase", + "ProxyGeometry", "PropertyClass" ], - "hash": 1946911045, + "hash": 1123517181, "properties": { - "m_serviceName": { + "m_sName": { "type": "std::string", "id": 0, - "offset": 72, - "flags": 31, + "offset": 88, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306437263 + }, + "m_baseOrientation": { + "type": "class Matrix3x3", + "id": 1, + "offset": 176, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1692424809 + }, + "m_basePosition": { + "type": "class Vector3D", + "id": 2, + "offset": 224, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2206028813 + "hash": 1912112658 }, - "m_iconKey": { - "type": "std::string", - "id": 1, - "offset": 168, - "flags": 31, + "m_fCurrentScale": { + "type": "float", + "id": 3, + "offset": 236, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2457138637 + "hash": 234778792 }, - "m_displayKey": { + "m_surfaceType": { "type": "std::string", - "id": 2, - "offset": 104, - "flags": 31, + "id": 4, + "offset": 280, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3023276954 + "hash": 2553995974 }, - "m_serviceIndex": { - "type": "unsigned int", - "id": 3, - "offset": 204, - "flags": 31, + "m_pInitialParams": { + "type": "class SharedPointer", + "id": 5, + "offset": 240, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, + "pointer": true, + "hash": 1000009870 + }, + "m_verts": { + "type": "struct SimpleVert", + "id": 6, + "offset": 368, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, "pointer": false, - "hash": 2103126710 + "hash": 1433503234 }, - "m_forceInteract": { - "type": "bool", - "id": 4, - "offset": 200, - "flags": 31, - "container": "Static", - "dynamic": false, + "m_faces": { + "type": "struct SimpleFace", + "id": 7, + "offset": 320, + "flags": 7, + "container": "Vector", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 1705789564 + "hash": 1413288912 + }, + "m_normals": { + "type": "struct SimpleVert", + "id": 8, + "offset": 344, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2067861162 } } }, - "1946785963": { - "name": "class SpeedEffectInfo", + "1552631708": { + "name": "class ReqHasShadowMagic*", "bases": [ - "GameEffectInfo", + "Requirement", "PropertyClass" ], - "hash": 1946785963, + "hash": 1552631708, "properties": { - "m_effectName": { - "type": "std::string", + "m_applyNOT": { + "type": "bool", "id": 0, "offset": 72, "flags": 31, @@ -466314,29 +195445,37 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 2029161513 + "hash": 1746328074, + "enum_options": { + "__DEFAULT": 0 + } }, - "m_speedMultiplier": { - "type": "int", + "m_operator": { + "type": "enum Requirement::Operator", "id": 1, - "offset": 104, - "flags": 7, + "offset": 76, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 32503058 + "hash": 2672792317, + "enum_options": { + "ROP_AND": 0, + "ROP_OR": 1, + "__DEFAULT": "ROP_AND" + } } } }, - "776399086": { - "name": "class SharedPointer", + "710415701": { + "name": "class ReqGardeningLevel", "bases": [ "ReqNumeric", "Requirement", "PropertyClass" ], - "hash": 776399086, + "hash": 710415701, "properties": { "m_applyNOT": { "type": "bool", @@ -466397,623 +195536,604 @@ "OPERATOR_GREATER_THAN_EQ": 3, "OPERATOR_LESS_THAN_EQ": 4 } - }, - "m_tournament": { - "type": "std::string", - "id": 4, - "offset": 88, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2799932264 } } }, - "380600970": { - "name": "class std::list >", - "bases": [], - "hash": 380600970, - "properties": {} - }, - "2062781655": { - "name": "class RaceAnimationSoundData*", + "1123537661": { + "name": "class ProxyMesh", "bases": [ + "ProxyGeometry", "PropertyClass" ], - "hash": 2062781655, + "hash": 1123537661, "properties": { - "m_allAnimationSounds": { - "type": "class SharedPointer", + "m_sName": { + "type": "std::string", "id": 0, - "offset": 72, + "offset": 88, "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2646511094 - } - } - }, - "379646014": { - "name": "class PetBoostPlayerStatEffect*", - "bases": [ - "WizStatisticEffect", - "StatisticEffect", - "GameEffectBase", - "PropertyClass" - ], - "hash": 379646014, - "properties": { - "m_currentTickCount": { - "type": "double", - "id": 0, - "offset": 80, - "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2533274692 + "hash": 2306437263 }, - "m_effectNameID": { - "type": "unsigned int", + "m_baseOrientation": { + "type": "class Matrix3x3", "id": 1, - "offset": 96, - "flags": 63, + "offset": 176, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1204067144 + "hash": 1692424809 }, - "m_bIsOnPet": { - "type": "bool", + "m_basePosition": { + "type": "class Vector3D", "id": 2, - "offset": 73, - "flags": 31, + "offset": 224, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 522593303 + "hash": 1912112658 }, - "m_originatorID": { - "type": "gid", + "m_fCurrentScale": { + "type": "float", "id": 3, - "offset": 104, - "flags": 39, + "offset": 236, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1131810019 + "hash": 234778792 }, - "m_itemSlotID": { - "type": "unsigned int", + "m_surfaceType": { + "type": "std::string", "id": 4, - "offset": 112, - "flags": 63, + "offset": 280, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1895747595 + "hash": 2553995974 }, - "m_internalID": { - "type": "int", + "m_pInitialParams": { + "type": "class SharedPointer", "id": 5, - "offset": 92, - "flags": 63, + "offset": 240, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1643137924 + "pointer": true, + "hash": 1000009870 }, - "m_endTime": { - "type": "unsigned int", + "m_verts": { + "type": "struct SimpleVert", "id": 6, - "offset": 88, - "flags": 31, - "container": "Static", - "dynamic": false, + "offset": 368, + "flags": 7, + "container": "Vector", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 716479635 + "hash": 1433503234 }, - "m_lookupIndex": { - "type": "int", + "m_faces": { + "type": "struct SimpleFace", "id": 7, - "offset": 128, - "flags": 31, - "container": "Static", - "dynamic": false, + "offset": 320, + "flags": 7, + "container": "Vector", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 1626623948 + "hash": 1413288912 }, - "m_damageBonusPercent": { - "type": "float", + "m_normals": { + "type": "struct SimpleVert", "id": 8, - "offset": 136, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 623230606 - }, - "m_damageBonusFlat": { - "type": "float", - "id": 9, - "offset": 180, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2212039108 - }, - "m_accuracyBonusPercent": { - "type": "float", - "id": 10, - "offset": 140, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1972336538 - }, - "m_armorPiercingBonusPercent": { - "type": "float", - "id": 11, - "offset": 144, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1569912641 - }, - "m_damageReducePercent": { - "type": "float", - "id": 12, - "offset": 148, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 541736927 - }, - "m_damageReduceFlat": { - "type": "float", - "id": 13, - "offset": 152, - "flags": 63, - "container": "Static", - "dynamic": false, + "offset": 344, + "flags": 7, + "container": "Vector", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 684172469 - }, - "m_accuracyReducePercent": { + "hash": 2067861162 + } + } + }, + "710399802": { + "name": "class SummonMinionCinematicAction*", + "bases": [ + "QueuedCombatCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 710399802, + "properties": { + "m_timeOffset": { "type": "float", - "id": 14, - "offset": 156, - "flags": 63, + "id": 0, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2112559723 - }, - "m_healBonusPercent": { - "type": "float", - "id": 15, - "offset": 160, - "flags": 63, + "hash": 2237098605 + } + } + }, + "273577555": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 273577555, + "properties": {} + }, + "1991057723": { + "name": "class PetLevelInfo", + "bases": [ + "PropertyClass" + ], + "hash": 1991057723, + "properties": { + "m_level": { + "type": "unsigned char", + "id": 0, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 562313577 + "hash": 1438884808 }, - "m_healIncBonusPercent": { - "type": "float", - "id": 16, - "offset": 164, - "flags": 63, + "m_template": { + "type": "unsigned int", + "id": 1, + "offset": 76, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2182535587 + "hash": 669977097 }, - "m_hitPointBonus": { - "type": "float", - "id": 17, - "offset": 204, - "flags": 63, + "m_requiredXP": { + "type": "unsigned int", + "id": 2, + "offset": 80, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 880644461 + "hash": 1890811574 }, - "m_spellChargeBonus": { - "type": "int", - "id": 18, - "offset": 212, - "flags": 63, + "m_powerCardCount": { + "type": "unsigned int", + "id": 3, + "offset": 84, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2019610507 + "hash": 1299301661 }, - "m_powerPipBonusPercent": { - "type": "float", - "id": 19, - "offset": 168, - "flags": 63, + "m_powerCardName": { + "type": "std::string", + "id": 4, + "offset": 88, + "flags": 268435463, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1671446341 + "hash": 1856508131, + "enum_options": { + "__BASECLASS": "SpellTemplate" + } }, - "m_petActChance": { - "type": "int", - "id": 20, - "offset": 200, - "flags": 63, + "m_powerCardName2": { + "type": "std::string", + "id": 5, + "offset": 120, + "flags": 268435463, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 237418461 + "hash": 2598131765, + "enum_options": { + "__BASECLASS": "SpellTemplate" + } }, - "m_manaBonus": { - "type": "float", - "id": 21, - "offset": 208, - "flags": 63, + "m_powerCardName3": { + "type": "std::string", + "id": 6, + "offset": 152, + "flags": 268435463, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1372708603 + "hash": 2598131766, + "enum_options": { + "__BASECLASS": "SpellTemplate" + } }, - "m_expPercent": { - "type": "float", - "id": 22, + "m_lootTable": { + "type": "std::string", + "id": 7, "offset": 184, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1147850677 - }, - "m_goldPercent": { - "type": "float", - "id": 23, - "offset": 188, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1095720878 - }, - "m_energyBonus": { - "type": "float", - "id": 24, - "offset": 216, - "flags": 63, - "container": "Static", - "dynamic": false, + "flags": 7, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 2223158984 - }, - "m_criticalHitRating": { - "type": "float", - "id": 25, - "offset": 220, - "flags": 63, + "hash": 2539512673 + } + } + }, + "273348900": { + "name": "class WinAnimScale*", + "bases": [ + "WindowAnimation", + "PropertyClass" + ], + "hash": 273348900, + "properties": { + "m_bUseDeepCopy": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1978690540 + "hash": 433380635 }, - "m_blockRating": { + "m_scale": { "type": "float", - "id": 26, - "offset": 224, - "flags": 63, + "id": 1, + "offset": 80, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2088486759 - }, - "m_accuracyRating": { - "type": "float", - "id": 27, - "offset": 228, - "flags": 63, + "hash": 899693439 + } + } + }, + "1554510971": { + "name": "class ClientTutorial*", + "bases": [ + "PropertyClass" + ], + "hash": 1554510971, + "properties": { + "m_stage": { + "type": "unsigned short", + "id": 0, + "offset": 74, + "flags": 7, "container": "Static", "dynamic": false, - "singleton": false, + "singleton": true, "pointer": false, - "hash": 165525575 - }, - "m_powerPipRating": { - "type": "float", - "id": 28, - "offset": 232, - "flags": 63, + "hash": 1363685500 + } + } + }, + "1990441318": { + "name": "class BGPolymorphSelectBehaviorTemplate", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 1990441318, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1355340722 + "hash": 3130754092 }, - "m_damageResistanceRating": { - "type": "float", - "id": 29, - "offset": 240, - "flags": 63, + "m_polymorphCategory": { + "type": "std::string", + "id": 1, + "offset": 120, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1961377740 - }, - "m_archmastery": { - "type": "float", - "id": 30, - "offset": 244, - "flags": 63, + "hash": 3076206595 + } + } + }, + "1123935460": { + "name": "class TournamentInfoRequest*", + "bases": [ + "PropertyClass" + ], + "hash": 1123935460, + "properties": { + "m_tournamentNameID": { + "type": "unsigned int", + "id": 0, + "offset": 72, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1963579610 + "hash": 1799846440 }, - "m_archmasteryBonusPercent": { - "type": "float", - "id": 31, - "offset": 288, - "flags": 63, + "m_leagueID": { + "type": "unsigned int", + "id": 1, + "offset": 76, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1908627154 + "hash": 692361645 }, - "m_balanceMastery": { - "type": "int", - "id": 32, - "offset": 248, - "flags": 63, + "m_seasonID": { + "type": "unsigned int", + "id": 2, + "offset": 80, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 149062181 + "hash": 535260643 }, - "m_deathMastery": { - "type": "int", - "id": 33, - "offset": 252, - "flags": 63, + "m_characterID": { + "type": "gid", + "id": 3, + "offset": 88, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1421218661 + "hash": 210498386 }, - "m_fireMastery": { - "type": "int", - "id": 34, - "offset": 256, - "flags": 63, + "m_bracketID": { + "type": "gid", + "id": 4, + "offset": 96, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1431794949 + "hash": 441272961 }, - "m_iceMastery": { - "type": "int", - "id": 35, - "offset": 260, - "flags": 63, + "m_bracketIDList": { + "type": "class SharedPointer", + "id": 5, + "offset": 152, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 704864240 + "pointer": true, + "hash": 3367716172 }, - "m_lifeMastery": { - "type": "int", - "id": 36, - "offset": 264, - "flags": 63, + "m_tournamentRequestType": { + "type": "unsigned int", + "id": 6, + "offset": 104, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2142136447 + "hash": 874052549 }, - "m_mythMastery": { + "m_startingIndex": { "type": "int", - "id": 37, - "offset": 268, - "flags": 63, + "id": 7, + "offset": 108, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1766317185 + "hash": 2126940894 }, - "m_stormMastery": { + "m_numberOfElements": { "type": "int", - "id": 38, - "offset": 272, - "flags": 63, + "id": 8, + "offset": 112, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1883988244 + "hash": 790678773 }, - "m_stunResistancePercent": { - "type": "float", - "id": 39, - "offset": 276, - "flags": 63, + "m_friendListBuffer": { + "type": "std::string", + "id": 9, + "offset": 120, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1868382627 + "hash": 2271699753 }, - "m_fishingLuckBonusPercent": { - "type": "float", - "id": 40, - "offset": 192, - "flags": 63, + "m_qualifiedOnly": { + "type": "bool", + "id": 10, + "offset": 168, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1363349254 + "hash": 789459241 }, - "m_shadowPipBonusPercent": { - "type": "float", - "id": 41, + "m_qualifiedLevel": { + "type": "unsigned int", + "id": 11, "offset": 172, - "flags": 63, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1426533310 + "hash": 405173305 }, - "m_wispBonusPercent": { - "type": "float", - "id": 42, - "offset": 196, - "flags": 63, + "m_qualifiedRank": { + "type": "int", + "id": 12, + "offset": 176, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1304386546 - }, - "m_pipConversionRating": { - "type": "float", - "id": 43, - "offset": 280, - "flags": 63, + "hash": 787071770 + } + } + }, + "1553752133": { + "name": "class FidgetStateInfo", + "bases": [ + "PropertyClass" + ], + "hash": 1553752133, + "properties": { + "m_idleName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 246855691 + "hash": 2107593594 }, - "m_shadowPipRating": { - "type": "float", - "id": 44, - "offset": 236, - "flags": 63, + "m_fidgetName": { + "type": "std::string", + "id": 1, + "offset": 104, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 507126123 + "hash": 2693632335 }, - "m_petID": { - "type": "gid", - "id": 45, - "offset": 304, - "flags": 24, + "m_fidgetsPerMinute": { + "type": "float", + "id": 2, + "offset": 136, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 806009486 + "hash": 1517617078 }, - "m_primaryStat1": { + "m_fidgetSound": { "type": "std::string", - "id": 46, - "offset": 312, - "flags": 24, + "id": 3, + "offset": 144, + "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2417808140 - }, - "m_primaryStat2": { - "type": "std::string", - "id": 47, - "offset": 344, - "flags": 24, + "hash": 2312384855 + } + } + }, + "710598381": { + "name": "class SharedPointer", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 710598381, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2417808141 - }, - "m_secondaryStat": { + "hash": 223437287 + } + } + }, + "1990441270": { + "name": "class BGPolymorphSelectBehaviorTemplate*", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 1990441270, + "properties": { + "m_behaviorName": { "type": "std::string", - "id": 48, - "offset": 376, - "flags": 24, + "id": 0, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3564684959 + "hash": 3130754092 }, - "m_secondaryValue": { - "type": "float", - "id": 49, - "offset": 408, - "flags": 24, + "m_polymorphCategory": { + "type": "std::string", + "id": 1, + "offset": 120, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1728780796 + "hash": 3076206595 } } }, - "2004688673": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 2004688673, - "properties": {} - }, - "777060197": { - "name": "class GardeningShedBehaviorBase", + "1553710977": { + "name": "class RidableBehavior", "bases": [ + "RidableBehaviorBase", "BehaviorInstance", "PropertyClass" ], - "hash": 777060197, + "hash": 1553710977, "properties": { "m_behaviorTemplateNameID": { "type": "unsigned int", @@ -467026,29 +196146,30 @@ "pointer": false, "hash": 223437287 }, - "m_seedList": { - "type": "unsigned int", + "m_assignedPlayers": { + "type": "gid", "id": 1, "offset": 112, - "flags": 65567, - "container": "List", + "flags": 65543, + "container": "Vector", "dynamic": true, "singleton": false, "pointer": false, - "hash": 672751594 + "hash": 1913541510 } } }, - "379231677": { - "name": "class PvPPenaltyMatchBan", + "273752108": { + "name": "class ReqGlobalRegistryValue*", "bases": [ - "InfractionPenalty", + "ReqNumeric", + "Requirement", "PropertyClass" ], - "hash": 379231677, + "hash": 273752108, "properties": { - "m_internalID": { - "type": "unsigned int", + "m_applyNOT": { + "type": "bool", "id": 0, "offset": 72, "flags": 31, @@ -467056,20 +196177,28 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 1854540375 + "hash": 1746328074, + "enum_options": { + "__DEFAULT": 0 + } }, - "m_categoryID": { - "type": "unsigned int", + "m_operator": { + "type": "enum Requirement::Operator", "id": 1, "offset": 76, - "flags": 31, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1382795736 + "hash": 2672792317, + "enum_options": { + "ROP_AND": 0, + "ROP_OR": 1, + "__DEFAULT": "ROP_AND" + } }, - "m_removeAtPointValue": { + "m_numericValue": { "type": "float", "id": 2, "offset": 80, @@ -467078,39 +196207,47 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 2112196961 + "hash": 521915239 }, - "m_expireTime": { - "type": "unsigned int", + "m_operatorType": { + "type": "enum ReqNumeric::OPERATOR_TYPE", "id": 3, "offset": 84, - "flags": 31, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1836304873 + "hash": 2228122961, + "enum_options": { + "OPERATOR_UNKNOWN": 4294967295, + "OPERATOR_EQUALS": 0, + "OPERATOR_GREATER_THAN": 1, + "OPERATOR_LESS_THAN": 2, + "OPERATOR_GREATER_THAN_EQ": 3, + "OPERATOR_LESS_THAN_EQ": 4 + } }, - "m_duration": { - "type": "unsigned int", + "m_entryName": { + "type": "std::string", "id": 4, "offset": 88, - "flags": 31, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1041524755 + "hash": 2055270734 } } }, - "27322510": { - "name": "class ResAsyncScript", + "1124173123": { + "name": "class SharedPointer", "bases": [ "Result", "PropertyClass" ], - "hash": 27322510, + "hash": 1124173123, "properties": { "m_script": { "type": "std::string", @@ -467147,857 +196284,747 @@ } } }, - "777039708": { - "name": "class PhysicsSimMassBox", - "bases": [ - "PhysicsSimMass", - "PropertyClass" - ], - "hash": 777039708, - "properties": {} - }, - "379186832": { - "name": "class ClientSpellbookBehavior*", + "273711153": { + "name": "class SharedPointer", "bases": [ - "BehaviorInstance", + "SigilTemplate", + "CoreTemplate", "PropertyClass" ], - "hash": 379186832, + "hash": 273711153, "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", + "m_behaviors": { + "type": "class BehaviorTemplate*", "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_spellIDList": { - "type": "class SharedPointer", - "id": 1, - "offset": 128, - "flags": 27, - "container": "List", + "offset": 72, + "flags": 7, + "container": "Vector", "dynamic": true, "singleton": false, "pointer": true, - "hash": 3635357151 - } - } - }, - "1949555697": { - "name": "class std::vector >", - "bases": [], - "hash": 1949555697, - "properties": {} - }, - "779748789": { - "name": "class ControlMultiLineEdit*", - "bases": [ - "ControlEdit", - "Window", - "PropertyClass" - ], - "hash": 779748789, - "properties": { - "m_sName": { + "hash": 1197808594 + }, + "m_sigilName": { "type": "std::string", - "id": 0, - "offset": 80, - "flags": 135, + "id": 1, + "offset": 96, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2306437263 - }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621225959 + "hash": 3177657588 }, - "m_Style": { - "type": "unsigned int", + "m_sigilType": { + "type": "std::string", "id": 2, - "offset": 152, - "flags": 1048583, + "offset": 136, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152, - "FORCE_NUMERIC": 16777216, - "FORCE_ALPHA": 268435456, - "FORCE_ALPHANUMERIC": 536870912, - "FORCE_INTEGER": 33554432, - "FORCE_POSITIVE": 67108864, - "FORCE_RANGE": 134217728 - } + "hash": 3177899445 }, - "m_Flags": { - "type": "unsigned int", + "m_entryResults": { + "type": "class ResultList*", "id": 3, - "offset": 156, - "flags": 1048583, + "offset": 184, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } + "pointer": true, + "hash": 3262956108 }, - "m_Window": { - "type": "class Rect", + "m_requirements": { + "type": "class RequirementList*", "id": 4, - "offset": 160, - "flags": 135, + "offset": 176, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 3105139380 + "pointer": true, + "hash": 2840985510 }, - "m_fTargetAlpha": { - "type": "float", + "m_cancelResults": { + "type": "class ResultList*", "id": 5, - "offset": 212, - "flags": 135, + "offset": 192, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1809129834 + "pointer": true, + "hash": 3799257120 }, - "m_fDisabledAlpha": { - "type": "float", + "m_completeResults": { + "type": "class ResultList*", "id": 6, - "offset": 216, - "flags": 135, + "offset": 200, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1389987675 + "pointer": true, + "hash": 1964258099 }, - "m_fAlpha": { - "type": "float", + "m_useState": { + "type": "bool", "id": 7, - "offset": 208, - "flags": 65671, + "offset": 216, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 482130755 + "hash": 683320865 }, - "m_pWindowStyle": { - "type": "class SharedPointer", + "m_stateOverride": { + "type": "std::string", "id": 8, - "offset": 232, - "flags": 135, + "offset": 224, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3623628394 + "pointer": false, + "hash": 1949715548 }, - "m_sHelp": { - "type": "std::wstring", + "m_subCircles": { + "type": "class SigilSubCircle*", "id": 9, - "offset": 248, - "flags": 4194439, - "container": "Static", - "dynamic": false, + "offset": 256, + "flags": 7, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 2102211316 + "pointer": true, + "hash": 2227135493 }, - "m_sScript": { - "type": "std::string", + "m_engageRadius": { + "type": "float", "id": 10, - "offset": 352, - "flags": 135, + "offset": 304, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1846695875 + "hash": 1429683718 }, - "m_Offset": { - "type": "class Point", + "m_battlefieldEffects": { + "type": "class SharedPointer", "id": 11, - "offset": 192, - "flags": 135, - "container": "Static", - "dynamic": false, + "offset": 312, + "flags": 7, + "container": "Vector", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 3389835433 + "pointer": true, + "hash": 1245973515 }, - "m_Scale": { - "type": "class Point", + "m_playerVictoryCinematic": { + "type": "std::string", "id": 12, - "offset": 200, - "flags": 135, + "offset": 336, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2547159940 + "hash": 2684536069 }, - "m_sTip": { - "type": "std::wstring", + "m_combatMusic": { + "type": "std::string", "id": 13, - "offset": 392, - "flags": 4194439, + "offset": 368, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1513510520 + "hash": 3636593682 }, - "m_BubbleList": { - "type": "class WindowBubble", + "m_prePlanningCinematicOverride": { + "type": "std::string", "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, + "offset": 400, + "flags": 7, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 2587533771 + "hash": 2585096390 }, - "m_ParentOffset": { - "type": "class Rect", + "m_planningCinematicOverride": { + "type": "std::string", "id": 15, - "offset": 176, - "flags": 135, + "offset": 432, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3091503757 + "hash": 3592819999 }, - "m_sText": { - "type": "std::wstring", + "m_shadowThresholdType": { + "type": "enum kShadow_Threshold_Type", "id": 16, - "offset": 584, - "flags": 135, + "offset": 464, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2102642960 + "hash": 2847763136, + "enum_options": { + "SHADOW_THRESHOLD_MIN": 0, + "SHADOW_THRESHOLD_AVG": 1, + "SHADOW_THRESHOLD_MAX": 2 + } }, - "m_nMaxLength": { - "type": "int", + "m_shadowThresholdFactor": { + "type": "float", "id": 17, - "offset": 620, - "flags": 135, + "offset": 468, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1183478416 + "hash": 2104355177 }, - "m_bPassword": { - "type": "bool", + "m_shadowPipRatingFactor": { + "type": "float", "id": 18, - "offset": 624, - "flags": 135, + "offset": 472, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1604468200 + "hash": 1061434314 }, - "m_bLog": { - "type": "bool", + "m_scalarDamagePvP": { + "type": "float", "id": 19, - "offset": 625, - "flags": 135, + "offset": 476, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 221687287 + "hash": 2195445026 }, - "m_previousNext": { - "type": "bool", + "m_scalarResistPvP": { + "type": "float", "id": 20, - "offset": 627, - "flags": 135, + "offset": 480, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 858581071 + "hash": 1947822077 }, - "m_nMaxLogSize": { - "type": "int", + "m_scalarPiercePvP": { + "type": "float", "id": 21, - "offset": 712, - "flags": 135, + "offset": 484, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 779573899 + "hash": 441266907 }, - "m_bEditing": { - "type": "bool", + "m_scalarDamagePvE": { + "type": "float", "id": 22, - "offset": 616, - "flags": 135, + "offset": 488, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1243218553 + "hash": 2195445015 }, - "m_bAllowPaste": { - "type": "bool", + "m_scalarResistPvE": { + "type": "float", "id": 23, - "offset": 626, - "flags": 135, + "offset": 492, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1129316721 + "hash": 1947822066 }, - "m_nLogPosition": { - "type": "int", + "m_scalarPiercePvE": { + "type": "float", "id": 24, - "offset": 704, - "flags": 135, + "offset": 496, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1120160767 + "hash": 441266896 }, - "m_nCursor": { - "type": "int", + "m_damageLimitPvP": { + "type": "float", "id": 25, - "offset": 716, - "flags": 135, + "offset": 500, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1876782150 + "hash": 1990135243 }, - "m_nEditBegin": { - "type": "int", + "m_dK0PvP": { + "type": "float", "id": 26, - "offset": 720, - "flags": 135, + "offset": 504, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1066592403 + "hash": 413528556 }, - "m_nEditEnd": { - "type": "int", + "m_dN0PvP": { + "type": "float", "id": 27, - "offset": 724, - "flags": 135, + "offset": 508, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1560905669 + "hash": 417086319 }, - "m_sSavedText": { - "type": "std::wstring", + "m_resistLimitPvP": { + "type": "float", "id": 28, - "offset": 728, - "flags": 135, + "offset": 512, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2197953283 + "hash": 1174512006 }, - "m_fCursorBlinkSpeed": { + "m_rK0PvP": { "type": "float", "id": 29, - "offset": 760, - "flags": 135, + "offset": 516, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2232655228 + "hash": 961424058 }, - "m_fCursorTimer": { + "m_rN0PvP": { "type": "float", "id": 30, - "offset": 764, - "flags": 135, + "offset": 520, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1929942748 + "hash": 964981821 }, - "m_bCursorBlink": { - "type": "bool", + "m_damageLimitPvE": { + "type": "float", "id": 31, - "offset": 768, - "flags": 135, + "offset": 524, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 683441507 + "hash": 1990135232 }, - "m_fMinRange": { - "type": "double", + "m_dK0PvE": { + "type": "float", "id": 32, - "offset": 776, - "flags": 135, + "offset": 528, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3079523396 + "hash": 413528545 }, - "m_fMaxRange": { - "type": "double", + "m_dN0PvE": { + "type": "float", "id": 33, - "offset": 784, - "flags": 135, + "offset": 532, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3876551814 + "hash": 417086308 }, - "m_nPrecision": { - "type": "int", + "m_resistLimitPvE": { + "type": "float", "id": 34, - "offset": 792, - "flags": 135, + "offset": 536, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1404974196 + "hash": 1174511995 }, - "m_bDeleteOnFirstChar": { - "type": "bool", + "m_rK0PvE": { + "type": "float", "id": 35, - "offset": 618, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 902105643 - } - } - }, - "380003423": { - "name": "class PetDerbyObstacleBehavior", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 380003423, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_laneNumber": { - "type": "int", - "id": 1, - "offset": 184, - "flags": 31, + "offset": 540, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 650028867 + "hash": 961424047 }, - "m_distanceFromStart": { - "type": "int", - "id": 2, - "offset": 188, - "flags": 31, + "m_rN0PvE": { + "type": "float", + "id": 36, + "offset": 544, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 649349799 + "hash": 964981810 } } }, - "779407445": { - "name": "class GuildAchievementData*", + "716714629": { + "name": "class CoreObjectInfo*", "bases": [ "PropertyClass" ], - "hash": 779407445, + "hash": 716714629, "properties": { - "m_guildName": { - "type": "unsigned int", + "m_templateID.m_full": { + "type": "unsigned __int64", "id": 0, "offset": 72, - "flags": 7, + "flags": 33554439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 778026115 + "hash": 633907631 }, - "m_guildNameLocale": { - "type": "int", + "m_nObjectID": { + "type": "unsigned int", "id": 1, - "offset": 76, + "offset": 80, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 656991008 + "hash": 748496927 }, - "m_categoryID": { - "type": "unsigned int", + "m_location": { + "type": "class Vector3D", "id": 2, - "offset": 80, + "offset": 84, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1382795736 + "hash": 2239683611 }, - "m_time": { - "type": "unsigned int", + "m_orientation": { + "type": "class Vector3D", "id": 3, - "offset": 84, + "offset": 96, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 431286940 + "hash": 2344058766 }, - "m_count": { - "type": "unsigned int", + "m_fScale": { + "type": "float", "id": 4, - "offset": 88, + "offset": 108, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1002373110 - } - } - }, - "1949832477": { - "name": "class MoveCommandSpeed*", - "bases": [ - "MoveController::MoveCommand", - "PropertyClass" - ], - "hash": 1949832477, - "properties": { - "m_vTarget": { - "type": "class Vector3D", - "id": 0, - "offset": 88, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3770499167 + "hash": 503137701 }, - "m_fSpeed": { - "type": "float", - "id": 1, - "offset": 100, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 503609006 - } - } - }, - "778972366": { - "name": "class WizDisableItemStatEffectTemplate", - "bases": [ - "StatisticEffectTemplate", - "GameEffectTemplate", - "PropertyClass" - ], - "hash": 778972366, - "properties": { - "m_effectName": { + "m_zoneTag": { "type": "std::string", - "id": 0, - "offset": 72, + "id": 5, + "offset": 152, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2029161513 + "hash": 3405382643 }, - "m_effectCategory": { + "m_startState": { "type": "std::string", - "id": 1, - "offset": 104, + "id": 6, + "offset": 184, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1852673222 + "hash": 2166880458 }, - "m_sortOrder": { - "type": "int", - "id": 2, - "offset": 148, - "flags": 7, + "m_overrideName": { + "type": "std::string", + "id": 7, + "offset": 120, + "flags": 8388615, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1411218206 + "hash": 1990707228 }, - "m_duration": { - "type": "double", - "id": 3, - "offset": 192, + "m_globalDynamic": { + "type": "bool", + "id": 8, + "offset": 116, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2727932435 - }, - "m_stackingCategories": { - "type": "std::string", - "id": 4, - "offset": 160, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1774497525 + "hash": 1951691017 }, - "m_isPersistent": { + "m_bUndetectable": { "type": "bool", - "id": 5, - "offset": 153, + "id": 9, + "offset": 216, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 923861920 + "hash": 1907454341 }, - "m_bIsOnPet": { - "type": "bool", - "id": 6, - "offset": 154, + "m_spawnRequirements": { + "type": "class SharedPointer", + "id": 10, + "offset": 224, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 522593303 + "pointer": true, + "hash": 2309120870 }, - "m_isPublic": { - "type": "bool", - "id": 7, - "offset": 152, - "flags": 7, + "m_loadingType": { + "type": "enum CoreObjectInfo::LoadingType", + "id": 11, + "offset": 112, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1728439822 - }, - "m_visualEffectAddName": { - "type": "std::string", - "id": 8, - "offset": 200, - "flags": 7, + "hash": 3522422550, + "enum_options": { + "STATIC_CLIENT_SERVER": 0, + "STATIC_CLIENT": 1, + "STATIC_SERVER": 2, + "DYNAMIC_SERVER": 3 + } + } + } + }, + "1990642621": { + "name": "class SharedPointer", + "bases": [ + "RaidPortalBehavior", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1990642621, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3382086694 + "hash": 223437287 }, - "m_visualEffectRemoveName": { - "type": "std::string", - "id": 9, - "offset": 232, - "flags": 7, + "m_active": { + "type": "bool", + "id": 1, + "offset": 112, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1541697323 - }, - "m_onAddFunctorName": { + "hash": 239335471 + } + } + }, + "1553757253": { + "name": "class FidgetStateInfo*", + "bases": [ + "PropertyClass" + ], + "hash": 1553757253, + "properties": { + "m_idleName": { "type": "std::string", - "id": 10, - "offset": 280, + "id": 0, + "offset": 72, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1561843107 + "hash": 2107593594 }, - "m_onRemoveFunctorName": { + "m_fidgetName": { "type": "std::string", - "id": 11, - "offset": 312, + "id": 1, + "offset": 104, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2559017864 + "hash": 2693632335 }, - "m_stackingRule": { - "type": "enum STACKING_RULE", - "id": 12, - "offset": 144, - "flags": 2097159, + "m_fidgetsPerMinute": { + "type": "float", + "id": 2, + "offset": 136, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 431568889, - "enum_options": { - "STACKING_ALLOWED": 0, - "STACKING_NOSTACK": 1, - "STACKING_REPLACE": 2 - } + "hash": 1517617078 }, - "m_itemSlots": { + "m_fidgetSound": { "type": "std::string", - "id": 13, - "offset": 360, - "flags": 7, - "container": "Vector", - "dynamic": true, + "id": 3, + "offset": 144, + "flags": 131079, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 3305858271 + "hash": 2312384855 } } }, - "27322414": { - "name": "class ResAsyncScript*", + "715846782": { + "name": "class SharedPointer", "bases": [ - "Result", + "LootInfo", + "LootInfoBase", "PropertyClass" ], - "hash": 27322414, + "hash": 715846782, "properties": { - "m_script": { - "type": "std::string", + "m_lootType": { + "type": "enum LootInfo::LOOT_TYPE", "id": 0, "offset": 72, - "flags": 7, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2438918928 + "hash": 1591891442, + "enum_options": { + "LOOT_TYPE_NONE": 0, + "LOOT_TYPE_GOLD": 1, + "LOOT_TYPE_MANA": 2, + "LOOT_TYPE_ITEM": 3, + "LOOT_TYPE_TREASURE_CARD": 4, + "LOOT_TYPE_MAGIC_XP": 5, + "LOOT_TYPE_ADD_SPELL": 6, + "LOOT_TYPE_MAX_HEALTH": 7, + "LOOT_TYPE_MAX_GOLD": 8, + "LOOT_TYPE_MAX_MANA": 9, + "LOOT_TYPE_MAX_POTION": 10, + "LOOT_TYPE_TRAINING_POINTS": 11, + "LOOT_TYPE_RECIPE": 12, + "LOOT_TYPE_CRAFTING_SLOT": 13, + "LOOT_TYPE_REAGENT": 14, + "LOOT_TYPE_PETSNACK": 15, + "LOOT_TYPE_GARDENING_XP": 16, + "LOOT_TYPE_PET_XP": 17, + "LOOT_TYPE_TREASURE_TABLE": 18, + "LOOT_TYPE_ARENA_POINTS": 19, + "LOOT_TYPE_ARENA_BONUS_POINTS": 20, + "LOOT_TYPE_GROUP": 21, + "LOOT_TYPE_FISHING_XP": 22, + "LOOT_TYPE_EVENT_CURRENCY_1": 24, + "LOOT_TYPE_EVENT_CURRENCY_2": 25, + "LOOT_TYPE_PVP_CURRENCY": 26, + "LOOT_TYPE_PVP_CURRENCY_BONUS": 27, + "LOOT_TYPE_PVP_TOURNEY_CURRENCY": 28, + "LOOT_TYPE_PVP_TOURNEY_CURRENCY_BONUS": 29, + "LOOT_TYPE_FURNITURE_ESSENCE": 30 + } }, - "m_startEvent": { + "m_recipeName": { "type": "std::string", "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2150353611 - }, - "m_endEvent": { - "type": "std::string", - "id": 2, - "offset": 136, - "flags": 7, + "offset": 80, + "flags": 268435487, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3112700596 + "hash": 3311832788, + "enum_options": { + "__BASECLASS": "RecipeTemplate" + } } } }, - "1949773843": { - "name": "class ZoneTokenWindow", + "1126041407": { + "name": "class FreeCamController", + "bases": [ + "CameraController", + "PropertyClass" + ], + "hash": 1126041407, + "properties": {} + }, + "712648149": { + "name": "class ControlDecalButton*", "bases": [ + "ControlButton", "Window", "PropertyClass" ], - "hash": 1949773843, + "hash": 712648149, "properties": { "m_sName": { "type": "std::string", @@ -468033,11 +197060,8 @@ "hash": 983582334, "enum_options": { "HAS_BACK": 1, - "SCALE_CHILDREN": 2, "CAN_MOVE": 4, "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "FOCUS_LOCKED": 64, "CAN_FOCUS": 128, "CAN_DOCK": 32, "DO_NOT_CAPTURE_MOUSE": 256, @@ -468049,7 +197073,12 @@ "USE_ALPHA_BOUNDS": 8192, "AUTO_GROW": 16384, "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152 + "AUTO_RESIZE": 49152, + "SHOW_HOTKEY": 16777216, + "EFFECT_SCALE": 67108864, + "LOCK_ICON_SIZE": 33554432, + "LEFT_TEXT": 536870912, + "NO_FIT_TEXT": 1073741824 } }, "m_Flags": { @@ -468209,357 +197238,417 @@ "singleton": false, "pointer": false, "hash": 3091503757 - } - } - }, - "778677539": { - "name": "class TieredSpellConfig*", - "bases": [ - "PropertyClass" - ], - "hash": 778677539, - "properties": { - "m_tieredSpellGroupList": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, + }, + "m_bToggle": { + "type": "bool", + "id": 16, + "offset": 608, + "flags": 135, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1855207927 - } - } - }, - "381596374": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 381596374, - "properties": { - "m_minLevel": { - "type": "int", - "id": 0, - "offset": 88, - "flags": 7, + "pointer": false, + "hash": 2071810903 + }, + "m_bButtonDown": { + "type": "bool", + "id": 17, + "offset": 609, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1496818518 + "hash": 840041705 }, - "m_levelValues": { - "type": "class SharedPointer", - "id": 1, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, + "m_sLabel": { + "type": "std::wstring", + "id": 18, + "offset": 616, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2207009163 + }, + "m_labelOffset": { + "type": "class Rect", + "id": 19, + "offset": 832, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1990646723 + }, + "m_pButton": { + "type": "class SharedPointer", + "id": 20, + "offset": 656, + "flags": 135, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": true, - "hash": 3506866422 - } - } - }, - "381128066": { - "name": "class ProvideSpellEffect", - "bases": [ - "GameEffectBase", - "PropertyClass" - ], - "hash": 381128066, - "properties": { - "m_currentTickCount": { - "type": "double", - "id": 0, - "offset": 80, - "flags": 63, + "hash": 1543855875 + }, + "m_HotKey": { + "type": "unsigned int", + "id": 21, + "offset": 672, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1631553409 + }, + "m_Color": { + "type": "class Color", + "id": 22, + "offset": 676, + "flags": 262279, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1753714077 + }, + "m_bCursorOver": { + "type": "bool", + "id": 23, + "offset": 689, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 283981103 + }, + "m_bAbortWhenCursorNotOver": { + "type": "bool", + "id": 24, + "offset": 706, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 325405258 + }, + "m_bHotKeyDown": { + "type": "bool", + "id": 25, + "offset": 680, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 616989185 + }, + "m_fTime": { + "type": "float", + "id": 26, + "offset": 684, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 883746156 + }, + "m_bGreyed": { + "type": "bool", + "id": 27, + "offset": 688, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1566556053 + }, + "m_fMaxScale": { + "type": "float", + "id": 28, + "offset": 692, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2070186635 + }, + "m_fScaleSpeed": { + "type": "float", + "id": 29, + "offset": 696, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2533274692 + "hash": 1457135702 }, - "m_effectNameID": { - "type": "unsigned int", - "id": 1, - "offset": 96, - "flags": 63, + "m_bUseDropShadow": { + "type": "bool", + "id": 30, + "offset": 704, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1204067144 + "hash": 93063037 }, - "m_bIsOnPet": { + "m_bUseOutline": { "type": "bool", - "id": 2, - "offset": 73, - "flags": 31, + "id": 31, + "offset": 705, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 522593303 + "hash": 744292994 }, - "m_originatorID": { - "type": "gid", - "id": 3, - "offset": 104, - "flags": 39, + "m_pGreyedState": { + "type": "class SharedPointer", + "id": 32, + "offset": 768, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1131810019 + "pointer": true, + "hash": 2703352263 }, - "m_itemSlotID": { - "type": "unsigned int", - "id": 4, - "offset": 112, - "flags": 63, + "m_pNormalState": { + "type": "class SharedPointer", + "id": 33, + "offset": 752, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1895747595 + "pointer": true, + "hash": 1887909808 }, - "m_internalID": { - "type": "int", - "id": 5, - "offset": 92, - "flags": 63, + "m_pHighlightedState": { + "type": "class SharedPointer", + "id": 34, + "offset": 784, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1643137924 + "pointer": true, + "hash": 2200177608 }, - "m_endTime": { - "type": "unsigned int", - "id": 6, - "offset": 88, - "flags": 31, + "m_pSelectedState": { + "type": "class SharedPointer", + "id": 35, + "offset": 800, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 716479635 + "pointer": true, + "hash": 2266776432 }, - "m_spellName": { - "type": "std::string", - "id": 7, - "offset": 128, - "flags": 31, + "m_pDepressedState": { + "type": "class SharedPointer", + "id": 36, + "offset": 816, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 2688485244 + "pointer": true, + "hash": 1878185798 }, - "m_numSpells": { - "type": "int", - "id": 8, - "offset": 160, - "flags": 31, + "m_pDecal": { + "type": "class SharedPointer", + "id": 37, + "offset": 880, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1269498237 + "pointer": true, + "hash": 2204742880 }, - "m_vFX": { - "type": "std::string", - "id": 9, - "offset": 168, - "flags": 31, + "m_DecalColor": { + "type": "class Color", + "id": 38, + "offset": 896, + "flags": 262279, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1764750607 + "hash": 2053465718 }, - "m_vFXOverride": { - "type": "bool", - "id": 10, - "offset": 200, - "flags": 31, + "m_DecalOffset": { + "type": "class Rect", + "id": 39, + "offset": 900, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1491092359 + "hash": 1942612892 }, - "m_sound": { - "type": "std::string", - "id": 11, - "offset": 208, - "flags": 31, + "m_pGreyedDecalState": { + "type": "class SharedPointer", + "id": 40, + "offset": 936, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 2307644996 - } - } - }, - "1949996317": { - "name": "class MoveCommandSpeed", - "bases": [ - "MoveController::MoveCommand", - "PropertyClass" - ], - "hash": 1949996317, - "properties": { - "m_vTarget": { - "type": "class Vector3D", - "id": 0, - "offset": 88, - "flags": 31, + "pointer": true, + "hash": 1430510752 + }, + "m_pNormalDecalState": { + "type": "class SharedPointer", + "id": 41, + "offset": 920, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 3770499167 + "pointer": true, + "hash": 1908952105 }, - "m_fSpeed": { - "type": "float", - "id": 1, - "offset": 100, - "flags": 31, + "m_pHighlightedDecalState": { + "type": "class SharedPointer", + "id": 42, + "offset": 952, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 503609006 + "pointer": true, + "hash": 3280301889 + }, + "m_pSelectedDecalState": { + "type": "class SharedPointer", + "id": 43, + "offset": 968, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1444589545 + }, + "m_pDepressedDecalState": { + "type": "class SharedPointer", + "id": 44, + "offset": 984, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2385844607 } } }, - "779056481": { - "name": "class SharedPointer", + "273776684": { + "name": "class ReqGlobalRegistryValue", "bases": [ - "ShowPipsCinematicAction", - "ActorCinematicAction", - "CinematicAction", + "ReqNumeric", + "Requirement", "PropertyClass" ], - "hash": 779056481, + "hash": 273776684, "properties": { - "m_timeOffset": { - "type": "float", + "m_applyNOT": { + "type": "bool", "id": 0, "offset": 72, - "flags": 7, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 + "hash": 1746328074, + "enum_options": { + "__DEFAULT": 0 + } }, - "m_actor": { - "type": "std::string", + "m_operator": { + "type": "enum Requirement::Operator", "id": 1, - "offset": 80, - "flags": 7, + "offset": 76, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2285866132 + "hash": 2672792317, + "enum_options": { + "ROP_AND": 0, + "ROP_OR": 1, + "__DEFAULT": "ROP_AND" + } }, - "m_newActorName": { - "type": "std::string", + "m_numericValue": { + "type": "float", "id": 2, - "offset": 120, - "flags": 7, + "offset": 80, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2029131039 - } - } - }, - "1949936558": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1949936558, - "properties": { - "m_petTemplateList": { - "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 567776494 - } - } - }, - "26817632": { - "name": "class WhirlyBurlyKioskBehavior*", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 26817632, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, + "hash": 521915239 + }, + "m_operatorType": { + "type": "enum ReqNumeric::OPERATOR_TYPE", + "id": 3, + "offset": 84, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 - } - } - }, - "382134151": { - "name": "class InteractiveMusicManager", - "bases": [ - "PropertyClass" - ], - "hash": 382134151, - "properties": {} - }, - "24823859": { - "name": "class MatchActorUpdate*", - "bases": [ - "TournamentUpdate", - "PropertyClass" - ], - "hash": 24823859, - "properties": { - "m_pActor": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 31, + "hash": 2228122961, + "enum_options": { + "OPERATOR_UNKNOWN": 4294967295, + "OPERATOR_EQUALS": 0, + "OPERATOR_GREATER_THAN": 1, + "OPERATOR_LESS_THAN": 2, + "OPERATOR_GREATER_THAN_EQ": 3, + "OPERATOR_LESS_THAN_EQ": 4 + } + }, + "m_entryName": { + "type": "std::string", + "id": 4, + "offset": 88, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1115051967 + "pointer": false, + "hash": 2055270734 } } }, - "779748765": { - "name": "class ControlMultiLineEdit", + "1125081789": { + "name": "class SubscriberBenefitControl", "bases": [ - "ControlEdit", "Window", "PropertyClass" ], - "hash": 779748765, + "hash": 1125081789, "properties": { "m_sName": { "type": "std::string", @@ -468595,8 +197684,11 @@ "hash": 983582334, "enum_options": { "HAS_BACK": 1, + "SCALE_CHILDREN": 2, "CAN_MOVE": 4, "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "FOCUS_LOCKED": 64, "CAN_FOCUS": 128, "CAN_DOCK": 32, "DO_NOT_CAPTURE_MOUSE": 256, @@ -468608,13 +197700,7 @@ "USE_ALPHA_BOUNDS": 8192, "AUTO_GROW": 16384, "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152, - "FORCE_NUMERIC": 16777216, - "FORCE_ALPHA": 268435456, - "FORCE_ALPHANUMERIC": 536870912, - "FORCE_INTEGER": 33554432, - "FORCE_POSITIVE": 67108864, - "FORCE_RANGE": 134217728 + "AUTO_RESIZE": 49152 } }, "m_Flags": { @@ -468774,238 +197860,320 @@ "singleton": false, "pointer": false, "hash": 3091503757 + } + } + }, + "712314622": { + "name": "class DMLRecord", + "bases": [], + "hash": 712314622, + "properties": {} + }, + "1991528513": { + "name": "class SharedPointer", + "bases": [ + "CoreObject", + "PropertyClass" + ], + "hash": 1991528513, + "properties": { + "m_inactiveBehaviors": { + "type": "class SharedPointer", + "id": 0, + "offset": 224, + "flags": 31, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1850812559 }, - "m_sText": { - "type": "std::wstring", - "id": 16, - "offset": 584, - "flags": 135, + "m_globalID.m_full": { + "type": "unsigned __int64", + "id": 1, + "offset": 72, + "flags": 16777247, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2102642960 + "hash": 2312465444 }, - "m_nMaxLength": { - "type": "int", - "id": 17, - "offset": 620, - "flags": 135, + "m_permID": { + "type": "unsigned __int64", + "id": 2, + "offset": 80, + "flags": 16777247, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1183478416 + "hash": 1298909658 }, - "m_bPassword": { - "type": "bool", - "id": 18, - "offset": 624, - "flags": 135, + "m_location": { + "type": "class Vector3D", + "id": 3, + "offset": 168, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1604468200 + "hash": 2239683611 }, - "m_bLog": { - "type": "bool", - "id": 19, - "offset": 625, - "flags": 135, + "m_orientation": { + "type": "class Vector3D", + "id": 4, + "offset": 180, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 221687287 + "hash": 2344058766 }, - "m_previousNext": { - "type": "bool", - "id": 20, - "offset": 627, - "flags": 135, + "m_fScale": { + "type": "float", + "id": 5, + "offset": 196, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 858581071 + "hash": 503137701 }, - "m_nMaxLogSize": { - "type": "int", - "id": 21, - "offset": 712, - "flags": 135, + "m_templateID.m_full": { + "type": "unsigned __int64", + "id": 6, + "offset": 96, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 779573899 + "hash": 633907631 }, - "m_bEditing": { - "type": "bool", - "id": 22, - "offset": 616, - "flags": 135, + "m_debugName": { + "type": "std::string", + "id": 7, + "offset": 104, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1243218553 + "hash": 3553984419 }, - "m_bAllowPaste": { - "type": "bool", - "id": 23, - "offset": 626, - "flags": 135, + "m_displayKey": { + "type": "std::string", + "id": 8, + "offset": 136, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1129316721 + "hash": 3023276954 }, - "m_nLogPosition": { - "type": "int", - "id": 24, - "offset": 704, - "flags": 135, + "m_zoneTagID": { + "type": "unsigned int", + "id": 9, + "offset": 344, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1120160767 + "hash": 965291410 }, - "m_nCursor": { - "type": "int", - "id": 25, - "offset": 716, - "flags": 135, + "m_speedMultiplier": { + "type": "short", + "id": 10, + "offset": 192, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1876782150 + "hash": 123130076 }, - "m_nEditBegin": { - "type": "int", - "id": 26, - "offset": 720, - "flags": 135, + "m_nMobileID": { + "type": "unsigned short", + "id": 11, + "offset": 194, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1066592403 + "hash": 1054318939 }, - "m_nEditEnd": { - "type": "int", - "id": 27, - "offset": 724, - "flags": 135, + "m_characterID": { + "type": "gid", + "id": 12, + "offset": 432, + "flags": 33554463, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1560905669 + "hash": 210498386 }, - "m_sSavedText": { - "type": "std::wstring", - "id": 28, - "offset": 728, - "flags": 135, + "m_gameID": { + "type": "gid", + "id": 13, + "offset": 416, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2197953283 + "hash": 469020959 }, - "m_fCursorBlinkSpeed": { - "type": "float", - "id": 29, - "offset": 760, - "flags": 135, + "m_gameNameID": { + "type": "unsigned int", + "id": 14, + "offset": 424, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2232655228 + "hash": 829938293 }, - "m_fCursorTimer": { - "type": "float", - "id": 30, - "offset": 764, - "flags": 135, + "m_gamesWon": { + "type": "int", + "id": 15, + "offset": 440, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1929942748 + "hash": 1733371579 }, - "m_bCursorBlink": { - "type": "bool", - "id": 31, - "offset": 768, - "flags": 135, + "m_gamesLost": { + "type": "int", + "id": 16, + "offset": 444, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 683441507 + "hash": 1363461609 }, - "m_fMinRange": { - "type": "double", - "id": 32, - "offset": 776, - "flags": 135, + "m_gamesTied": { + "type": "int", + "id": 17, + "offset": 448, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3079523396 + "hash": 1363742093 }, - "m_fMaxRange": { - "type": "double", - "id": 33, - "offset": 784, - "flags": 135, + "m_gamesPlayed": { + "type": "int", + "id": 18, + "offset": 452, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3876551814 + "hash": 954596038 }, - "m_nPrecision": { + "m_score": { "type": "int", - "id": 34, - "offset": 792, - "flags": 135, + "id": 19, + "offset": 456, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1404974196 - }, - "m_bDeleteOnFirstChar": { + "hash": 809507734 + } + } + }, + "1124710247": { + "name": "class SharedPointer", + "bases": [ + "ConditionalSpellEffectRequirement", + "Requirement", + "PropertyClass" + ], + "hash": 1124710247, + "properties": { + "m_applyNOT": { "type": "bool", - "id": 35, - "offset": 618, - "flags": 135, + "id": 0, + "offset": 72, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 902105643 + "hash": 1746328074, + "enum_options": { + "__DEFAULT": 0 + } + }, + "m_operator": { + "type": "enum Requirement::Operator", + "id": 1, + "offset": 76, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2672792317, + "enum_options": { + "ROP_AND": 0, + "ROP_OR": 1, + "__DEFAULT": "ROP_AND" + } + }, + "m_targetType": { + "type": "enum ConditionalSpellEffectRequirement::RequirementTarget", + "id": 2, + "offset": 80, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547737902, + "enum_options": { + "RT_Caster": 0, + "RT_Target": 1 + } + }, + "m_magicSchoolName": { + "type": "std::string", + "id": 3, + "offset": 88, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2939083077 } } }, - "27477940": { - "name": "class SharedPointer", + "1555179373": { + "name": "class HousingGameHiScores", "bases": [ - "BehaviorTemplate", "PropertyClass" ], - "hash": 27477940, + "hash": 1555179373, "properties": { - "m_behaviorName": { + "m_playerName0": { "type": "std::string", "id": 0, "offset": 72, @@ -469014,235 +198182,201 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 3130754092 + "hash": 2243035545 }, - "m_yaw": { - "type": "float", + "m_score0": { + "type": "unsigned short", "id": 1, - "offset": 120, + "offset": 104, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 357256328 + "hash": 1494703316 }, - "m_pitch": { - "type": "float", + "m_playerName1": { + "type": "std::string", "id": 2, - "offset": 124, + "offset": 112, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 896371695 + "hash": 2243035546 }, - "m_roll": { - "type": "float", + "m_score1": { + "type": "unsigned short", "id": 3, - "offset": 128, + "offset": 144, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 310020272 + "hash": 1494703317 }, - "m_rotate": { - "type": "bool", + "m_playerName2": { + "type": "std::string", "id": 4, - "offset": 132, + "offset": 152, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 918859426 + "hash": 2243035547 }, - "m_bounce": { - "type": "bool", + "m_score2": { + "type": "unsigned short", "id": 5, - "offset": 133, + "offset": 184, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 292742671 - }, - "m_textureIndex": { - "type": "int", - "id": 6, - "offset": 136, + "hash": 1494703318 + } + } + }, + "711200415": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 711200415, + "properties": { + "m_position": { + "type": "class Vector3D", + "id": 0, + "offset": 72, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1723520995 - }, - "m_textureFilename": { - "type": "std::string", - "id": 7, - "offset": 144, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2208648365 + "hash": 3697900983 }, - "m_cameraOffsetX": { + "m_pitch": { "type": "float", - "id": 8, - "offset": 176, + "id": 1, + "offset": 84, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1515912895 + "hash": 896371695 }, - "m_cameraOffsetY": { + "m_yaw": { "type": "float", - "id": 9, - "offset": 180, + "id": 2, + "offset": 88, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1515912896 + "hash": 357256328 }, - "m_cameraOffsetZ": { + "m_roll": { "type": "float", - "id": 10, - "offset": 184, + "id": 3, + "offset": 92, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1515912897 + "hash": 310020272, + "enum_options": { + "__DEFAULT": 0 + } } } }, - "1950019728": { - "name": "class SharedPointer", + "1554511067": { + "name": "class ClientTutorial", "bases": [ - "SG_GameAction", "PropertyClass" ], - "hash": 1950019728, + "hash": 1554511067, "properties": { - "m_target": { - "type": "enum SG_GameAction::SG_Target", + "m_stage": { + "type": "unsigned short", "id": 0, - "offset": 72, - "flags": 2097159, + "offset": 74, + "flags": 7, "container": "Static", "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1166870973, - "enum_options": { - "Target_Ball": 0, - "Target_Self": 1, - "Target_Connections": 2, - "__DEFAULT": "Target_Ball" - } - }, - "m_simpleSounds": { - "type": "std::string", - "id": 1, - "offset": 112, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, + "singleton": true, "pointer": false, - "hash": 3351944033 + "hash": 1363685500 } } }, - "779407485": { - "name": "class GuildAchievementData", + "710866146": { + "name": "class ShoppingColorModifiers*", "bases": [ "PropertyClass" ], - "hash": 779407485, + "hash": 710866146, "properties": { - "m_guildName": { - "type": "unsigned int", + "m_boysPrimaryColors": { + "type": "float", "id": 0, "offset": 72, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "Vector", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 778026115 + "hash": 300868202 }, - "m_guildNameLocale": { - "type": "int", + "m_boysSecondaryColors": { + "type": "float", "id": 1, - "offset": 76, + "offset": 96, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "Vector", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 656991008 + "hash": 2061028494 }, - "m_categoryID": { - "type": "unsigned int", + "m_girlsPrimaryColors": { + "type": "float", "id": 2, - "offset": 80, + "offset": 120, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "Vector", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 1382795736 + "hash": 327992494 }, - "m_time": { - "type": "unsigned int", + "m_girlsSecondaryColors": { + "type": "float", "id": 3, - "offset": 84, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 431286940 - }, - "m_count": { - "type": "unsigned int", - "id": 4, - "offset": 88, + "offset": 144, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "Vector", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 1002373110 + "hash": 1534611410 } } }, - "29620807": { - "name": "class std::list >", - "bases": [], - "hash": 29620807, - "properties": {} - }, - "388556399": { - "name": "class BattlegroundPolymorphImprovementOption", + "303373917": { + "name": "class DyeShopOption*", "bases": [ "ServiceOptionBase", "PropertyClass" ], - "hash": 388556399, + "hash": 303373917, "properties": { "m_serviceName": { "type": "std::string", @@ -469301,278 +198435,462 @@ } } }, - "384557736": { - "name": "class SharedPointer", + "1125070434": { + "name": "class SharedPointer", "bases": [ - "ServerSyncCinematicAction", - "CinematicAction", "PropertyClass" ], - "hash": 384557736, + "hash": 1125070434, "properties": { - "m_timeOffset": { + "m_accuracyScalarBase": { "type": "float", "id": 0, - "offset": 72, + "offset": 76, "flags": 7, "container": "Static", "dynamic": false, - "singleton": false, + "singleton": true, "pointer": false, - "hash": 2237098605 + "hash": 1121339315 }, - "m_eventToSend": { - "type": "std::string", + "m_powerPipScalarBase": { + "type": "float", "id": 1, "offset": 80, "flags": 7, "container": "Static", "dynamic": false, - "singleton": false, + "singleton": true, "pointer": false, - "hash": 1564059786 - } - } - }, - "382768786": { - "name": "class ElixirBehaviorTemplate*", - "bases": [ - "TimedItemBehaviorTemplate", - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 382768786, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, + "hash": 137046174 + }, + "m_damageResistanceScalarBase": { + "type": "float", + "id": 2, + "offset": 84, "flags": 7, "container": "Static", "dynamic": false, - "singleton": false, + "singleton": true, "pointer": false, - "hash": 3130754092 + "hash": 926091704 }, - "m_expireTime": { - "type": "std::string", - "id": 1, - "offset": 128, + "m_accuracyScalingFactor": { + "type": "float", + "id": 3, + "offset": 88, "flags": 7, "container": "Static", "dynamic": false, - "singleton": false, + "singleton": true, "pointer": false, - "hash": 3122602039 + "hash": 1629583970 }, - "m_timerType": { - "type": "enum TimerType", - "id": 2, + "m_powerPipScalingFactor": { + "type": "float", + "id": 4, + "offset": 92, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": true, + "pointer": false, + "hash": 290142061 + }, + "m_damageResistanceScalingFactor": { + "type": "float", + "id": 5, + "offset": 96, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": true, + "pointer": false, + "hash": 845265479 + }, + "m_criticalHitLevelThreshold": { + "type": "int", + "id": 6, + "offset": 100, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": true, + "pointer": false, + "hash": 278823695 + }, + "m_blockLevelThreshold": { + "type": "int", + "id": 7, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": true, + "pointer": false, + "hash": 639576458 + }, + "m_accuracyLevelThreshold": { + "type": "int", + "id": 8, + "offset": 108, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": true, + "pointer": false, + "hash": 458488426 + }, + "m_powerPipLevelThreshold": { + "type": "int", + "id": 9, + "offset": 112, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": true, + "pointer": false, + "hash": 1354062037 + }, + "m_damageResistanceLevelThreshold": { + "type": "int", + "id": 10, + "offset": 116, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": true, + "pointer": false, + "hash": 345781999 + }, + "m_critAndBlockLevelData": { + "type": "class SharedPointer", + "id": 11, + "offset": 136, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": true, + "pointer": true, + "hash": 2466687771 + }, + "m_criticalDamageAddPercent": { + "type": "float", + "id": 12, "offset": 120, - "flags": 2097159, + "flags": 7, "container": "Static", "dynamic": false, - "singleton": false, + "singleton": true, "pointer": false, - "hash": 571744132, - "enum_options": { - "TimerType_Game": 0, - "TimerType_Calendar": 1 - } + "hash": 169683323 }, - "m_typeList": { - "type": "std::string", - "id": 3, + "m_criticalDamageAddPercentPvP": { + "type": "float", + "id": 13, + "offset": 124, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": true, + "pointer": false, + "hash": 1404103985 + }, + "m_criticalHealAddPercent": { + "type": "float", + "id": 14, + "offset": 128, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": true, + "pointer": false, + "hash": 637250262 + }, + "m_criticalHealAddPercentPvP": { + "type": "float", + "id": 15, + "offset": 132, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": true, + "pointer": false, + "hash": 297645228 + }, + "m_pipConversionLevelThreshold": { + "type": "int", + "id": 16, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": true, + "pointer": false, + "hash": 469925422 + }, + "m_pipConversionLevelData": { + "type": "class SharedPointer", + "id": 17, "offset": 160, "flags": 7, "container": "List", "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2119049625 + "singleton": true, + "pointer": true, + "hash": 599333160 }, - "m_equipParticle": { - "type": "std::string", - "id": 4, + "m_baseCritDivisor": { + "type": "int", + "id": 18, "offset": 176, - "flags": 131079, + "flags": 7, "container": "Static", "dynamic": false, - "singleton": false, + "singleton": true, "pointer": false, - "hash": 2222557491 + "hash": 1793948871 }, - "m_unequipParticle": { - "type": "std::string", - "id": 5, - "offset": 208, - "flags": 131079, + "m_baseBlockDivisor": { + "type": "int", + "id": 19, + "offset": 180, + "flags": 7, "container": "Static", "dynamic": false, - "singleton": false, + "singleton": true, "pointer": false, - "hash": 2215431638 + "hash": 331192160 }, - "m_equipSound": { - "type": "std::string", - "id": 6, - "offset": 240, - "flags": 131079, + "m_critScalarDivisor": { + "type": "int", + "id": 20, + "offset": 184, + "flags": 7, "container": "Static", "dynamic": false, - "singleton": false, + "singleton": true, "pointer": false, - "hash": 2720016552 + "hash": 353250050 }, - "m_unequipSound": { - "type": "std::string", - "id": 7, - "offset": 272, - "flags": 131079, + "m_blockScalarDivisor": { + "type": "int", + "id": 21, + "offset": 188, + "flags": 7, "container": "Static", "dynamic": false, - "singleton": false, + "singleton": true, "pointer": false, - "hash": 1552545835 + "hash": 778321147 }, - "m_equipActionList": { - "type": "class SharedPointer", - "id": 8, - "offset": 304, + "m_finalCritMedian1": { + "type": "float", + "id": 22, + "offset": 192, "flags": 7, "container": "Static", "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1314016250 + "singleton": true, + "pointer": false, + "hash": 1779518738 }, - "m_unequipActionList": { - "type": "class SharedPointer", - "id": 9, - "offset": 320, + "m_finalCritMedian2": { + "type": "float", + "id": 23, + "offset": 196, "flags": 7, "container": "Static", "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2143896925 + "singleton": true, + "pointer": false, + "hash": 1779518739 }, - "m_combatEnabled": { - "type": "bool", - "id": 10, - "offset": 336, + "m_finalBlockMedian1": { + "type": "float", + "id": 24, + "offset": 200, "flags": 7, "container": "Static", "dynamic": false, - "singleton": false, + "singleton": true, "pointer": false, - "hash": 1399744148 + "hash": 2233508235 }, - "m_PvPEnabled": { - "type": "bool", - "id": 11, - "offset": 337, + "m_finalBlockMedian2": { + "type": "float", + "id": 25, + "offset": 204, "flags": 7, "container": "Static", "dynamic": false, - "singleton": false, + "singleton": true, "pointer": false, - "hash": 1042852532 - } - } - }, - "1952719338": { - "name": "class SharedPointer", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1952719338, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, + "hash": 2233508236 + }, + "m_baseCritDivisorPvP": { + "type": "int", + "id": 26, + "offset": 208, + "flags": 7, "container": "Static", "dynamic": false, - "singleton": false, + "singleton": true, "pointer": false, - "hash": 223437287 - } - } - }, - "25128045": { - "name": "class SharedPointer", - "bases": [ - "LootInfo", - "LootInfoBase", - "PropertyClass" - ], - "hash": 25128045, - "properties": { - "m_lootType": { - "type": "enum LootInfo::LOOT_TYPE", - "id": 0, - "offset": 72, - "flags": 2097183, + "hash": 650248157 + }, + "m_baseBlockDivisorPvP": { + "type": "int", + "id": 27, + "offset": 212, + "flags": 7, "container": "Static", "dynamic": false, - "singleton": false, + "singleton": true, "pointer": false, - "hash": 1591891442, - "enum_options": { - "LOOT_TYPE_NONE": 0, - "LOOT_TYPE_GOLD": 1, - "LOOT_TYPE_MANA": 2, - "LOOT_TYPE_ITEM": 3, - "LOOT_TYPE_TREASURE_CARD": 4, - "LOOT_TYPE_MAGIC_XP": 5, - "LOOT_TYPE_ADD_SPELL": 6, - "LOOT_TYPE_MAX_HEALTH": 7, - "LOOT_TYPE_MAX_GOLD": 8, - "LOOT_TYPE_MAX_MANA": 9, - "LOOT_TYPE_MAX_POTION": 10, - "LOOT_TYPE_TRAINING_POINTS": 11, - "LOOT_TYPE_RECIPE": 12, - "LOOT_TYPE_CRAFTING_SLOT": 13, - "LOOT_TYPE_REAGENT": 14, - "LOOT_TYPE_PETSNACK": 15, - "LOOT_TYPE_GARDENING_XP": 16, - "LOOT_TYPE_PET_XP": 17, - "LOOT_TYPE_TREASURE_TABLE": 18, - "LOOT_TYPE_ARENA_POINTS": 19, - "LOOT_TYPE_ARENA_BONUS_POINTS": 20, - "LOOT_TYPE_GROUP": 21, - "LOOT_TYPE_FISHING_XP": 22, - "LOOT_TYPE_EVENT_CURRENCY_1": 24, - "LOOT_TYPE_EVENT_CURRENCY_2": 25, - "LOOT_TYPE_PVP_CURRENCY": 26, - "LOOT_TYPE_PVP_CURRENCY_BONUS": 27, - "LOOT_TYPE_PVP_TOURNEY_CURRENCY": 28, - "LOOT_TYPE_PVP_TOURNEY_CURRENCY_BONUS": 29, - "LOOT_TYPE_FURNITURE_ESSENCE": 30 - } + "hash": 1814544342 }, - "m_experience": { + "m_critScalarDivisorPvP": { "type": "int", - "id": 1, - "offset": 80, - "flags": 31, + "id": 28, + "offset": 216, + "flags": 7, "container": "Static", "dynamic": false, - "singleton": false, + "singleton": true, "pointer": false, - "hash": 759357570 + "hash": 2087471160 + }, + "m_blockScalarDivisorPvP": { + "type": "int", + "id": 29, + "offset": 220, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": true, + "pointer": false, + "hash": 668812177 + }, + "m_finalCritMedian1PvP": { + "type": "float", + "id": 30, + "offset": 224, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": true, + "pointer": false, + "hash": 849935720 + }, + "m_finalCritMedian2PvP": { + "type": "float", + "id": 31, + "offset": 228, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": true, + "pointer": false, + "hash": 849971657 + }, + "m_finalBlockMedian1PvP": { + "type": "float", + "id": 32, + "offset": 232, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": true, + "pointer": false, + "hash": 1437215553 + }, + "m_finalBlockMedian2PvP": { + "type": "float", + "id": 33, + "offset": 236, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": true, + "pointer": false, + "hash": 1437251490 + }, + "m_archmasteryFillRateScaler": { + "type": "float", + "id": 34, + "offset": 240, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": true, + "pointer": false, + "hash": 266116071 + }, + "m_archmasteryFillRateMax": { + "type": "float", + "id": 35, + "offset": 244, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": true, + "pointer": false, + "hash": 2006811155 + }, + "m_archmasteryFullnessMinPvE": { + "type": "float", + "id": 36, + "offset": 248, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": true, + "pointer": false, + "hash": 1196194389 + }, + "m_archmasteryFullnessMinPvP": { + "type": "float", + "id": 37, + "offset": 252, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": true, + "pointer": false, + "hash": 1196194400 + }, + "m_archmasteryConversionCost": { + "type": "float", + "id": 38, + "offset": 256, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": true, + "pointer": false, + "hash": 1687582297 + }, + "m_archmasteryPowerPipCost": { + "type": "float", + "id": 39, + "offset": 260, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": true, + "pointer": false, + "hash": 411547625 } } }, - "382445691": { - "name": "class SharedPointer", + "1992841659": { + "name": "class WizBankingOption*", "bases": [ + "ServiceOptionBase", "PropertyClass" ], - "hash": 382445691, + "hash": 1992841659, "properties": { "m_serviceName": { "type": "std::string", @@ -469631,190 +198949,111 @@ } } }, - "1952005653": { - "name": "class WinAnimContainerBounded", + "294989869": { + "name": "class SharedPointer", "bases": [ - "WinAnimContainer", - "WindowAnimation", + "Group", "PropertyClass" ], - "hash": 1952005653, + "hash": 294989869, "properties": { - "m_bUseDeepCopy": { - "type": "bool", + "m_GroupID": { + "type": "gid", "id": 0, "offset": 72, - "flags": 135, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 433380635 + "hash": 586506386 }, - "m_winAnimList": { - "type": "class SharedPointer", + "m_ChannelID": { + "type": "gid", "id": 1, "offset": 80, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1941062728 - }, - "m_bLooping": { - "type": "bool", - "id": 2, - "offset": 104, - "flags": 135, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2131020845 + "hash": 1585983742 }, - "m_boundary": { - "type": "class Rect", - "id": 3, - "offset": 112, - "flags": 135, - "container": "Static", - "dynamic": false, + "m_MemberList": { + "type": "class SharedPointer", + "id": 2, + "offset": 88, + "flags": 31, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 1423726080 - } - } - }, - "780479975": { - "name": "class GuildMuseumCuratorBehavior*", - "bases": [ - "GuildMuseumCuratorBehaviorBase", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 780479975, - "properties": { - "m_behaviorTemplateNameID": { + "pointer": true, + "hash": 2864705424 + }, + "m_nMaxSize": { "type": "unsigned int", - "id": 0, + "id": 3, "offset": 104, - "flags": 39, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 - } - } - }, - "382307413": { - "name": "class LeashOffsetOverride", - "bases": [ - "PropertyClass" - ], - "hash": 382307413, - "properties": { - "m_offsetType": { - "type": "enum LeashOffsetOverride::LeashOffsetType", - "id": 0, - "offset": 72, - "flags": 2097159, + "hash": 1265869948 + }, + "m_fromAdventureParty": { + "type": "bool", + "id": 4, + "offset": 128, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1559902382, - "enum_options": { - "LOT_UNRESTRICTED": 0, - "LOT_RIGHTONLY": 1, - "LOT_LEFTONLY": 2 - } - } - } - }, - "1951219221": { - "name": "class WinAnimContainerBounded*", - "bases": [ - "WinAnimContainer", - "WindowAnimation", - "PropertyClass" - ], - "hash": 1951219221, - "properties": { - "m_bUseDeepCopy": { - "type": "bool", - "id": 0, - "offset": 72, - "flags": 135, + "hash": 940992997 + }, + "m_leaderGID": { + "type": "gid", + "id": 5, + "offset": 136, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 433380635 - }, - "m_winAnimList": { - "type": "class SharedPointer", - "id": 1, - "offset": 80, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1941062728 + "hash": 700505145 }, - "m_bLooping": { - "type": "bool", - "id": 2, - "offset": 104, - "flags": 135, + "m_questGID": { + "type": "gid", + "id": 6, + "offset": 144, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2131020845 + "hash": 331631550 }, - "m_boundary": { - "type": "class Rect", - "id": 3, - "offset": 112, - "flags": 135, + "m_goalGID": { + "type": "gid", + "id": 7, + "offset": 152, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1423726080 - } - } - }, - "382241933": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 382241933, - "properties": { - "m_madlibBlocks": { - "type": "class MadlibBlock*", - "id": 0, - "offset": 72, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2554334098 + "hash": 976914927 } } }, - "1950283476": { - "name": "class ClientMountRiderBehavior*", + "1992683330": { + "name": "class SharedPointer", "bases": [ "BehaviorInstance", "PropertyClass" ], - "hash": 1950283476, + "hash": 1992683330, "properties": { "m_behaviorTemplateNameID": { "type": "unsigned int", @@ -469829,236 +199068,211 @@ } } }, - "24660019": { - "name": "class MatchActorUpdate", + "283459238": { + "name": "class SharedPointer", "bases": [ - "TournamentUpdate", "PropertyClass" ], - "hash": 24660019, + "hash": 283459238, "properties": { - "m_pActor": { - "type": "class SharedPointer", + "m_itemTemplateID": { + "type": "unsigned int", "id": 0, "offset": 72, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1115051967 - } - } - }, - "784199461": { - "name": "class SharedPointer", - "bases": [ - "RecreateNPCActorCinematicAction", - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 784199461, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, "pointer": false, - "hash": 2237098605 + "hash": 2190120133 }, - "m_actor": { - "type": "std::string", + "m_numItemInInventory": { + "type": "int", "id": 1, - "offset": 80, - "flags": 7, + "offset": 76, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2285866132 + "hash": 1351636478 } } }, - "24033763": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 24033763, - "properties": {} - }, - "781595162": { - "name": "class ChatHistory", - "bases": [ - "PropertyClass" - ], - "hash": 781595162, - "properties": {} - }, - "1951952530": { - "name": "class BattlegroundPolymorphList*", + "711255698": { + "name": "class PlayerStatuePvPBlob*", "bases": [ + "PlayerStatueBlob", "PropertyClass" ], - "hash": 1951952530, + "hash": 711255698, "properties": { - "m_polymorphList": { - "type": "unsigned int", + "m_level": { + "type": "int", "id": 0, "offset": 72, - "flags": 7, - "container": "Vector", - "dynamic": true, + "flags": 31, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 619826355 + "hash": 801285362 }, - "m_polymorphCategory": { - "type": "std::string", + "m_school": { + "type": "unsigned int", "id": 1, - "offset": 120, - "flags": 7, + "offset": 76, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3076206595 + "hash": 1152268885 }, - "m_polymorphRole": { - "type": "std::string", + "m_gender": { + "type": "int", "id": 2, - "offset": 184, - "flags": 7, + "offset": 80, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1906345431 + "hash": 473816879 }, - "m_ratingBadgeInfo": { - "type": "class SharedPointer", - "id": 3, - "offset": 96, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1212938427 - } - } - }, - "781471872": { - "name": "class AmbientSoundBehavior*", - "bases": [ - "SoundBehavior", - "AreaBehavior", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 781471872, - "properties": { - "m_behaviorTemplateNameID": { + "m_nameKeys": { "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, + "id": 3, + "offset": 84, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 + "hash": 1772225898 }, - "m_radius": { - "type": "float", - "id": 1, - "offset": 116, - "flags": 7, + "m_badge": { + "type": "std::string", + "id": 4, + "offset": 88, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 989410271 + "hash": 2286962478 }, - "m_category": { - "type": "enum AudioCategory", - "id": 2, - "offset": 124, - "flags": 2097159, + "m_pCharacterBehavior": { + "type": "class SharedPointer", + "id": 5, + "offset": 120, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 2951251982, - "enum_options": { - "AudioCategory_Irrelevent": 0, - "AudioCategory_Accoustic": 1, - "AudioCategory_Noise": 2, - "AudioCategory_Music": 3 - } + "pointer": true, + "hash": 2724673923 }, - "m_exclusive": { - "type": "bool", - "id": 3, - "offset": 128, - "flags": 7, + "m_pEquipment": { + "type": "class SharedPointer", + "id": 6, + "offset": 136, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 824383403 + "pointer": true, + "hash": 2473540161 }, - "m_playList": { - "type": "class PlayList", - "id": 4, - "offset": 176, - "flags": 7, + "m_pStats": { + "type": "class SharedPointer", + "id": 7, + "offset": 152, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 2061221957 + "pointer": true, + "hash": 2212894623 }, - "m_volume": { - "type": "float", - "id": 5, - "offset": 304, - "flags": 7, + "m_pGameEffects": { + "type": "class SharedPointer", + "id": 8, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1557857436 + }, + "m_petTID": { + "type": "unsigned int", + "id": 9, + "offset": 200, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1162855023 + "hash": 1037635095 }, - "m_loopCount": { - "type": "int", - "id": 6, - "offset": 308, - "flags": 7, + "m_pPetBehavior": { + "type": "class SharedPointer", + "id": 10, + "offset": 208, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2663493503 + }, + "m_pPetJewels": { + "type": "class SharedPointer", + "id": 11, + "offset": 224, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 733229991 + } + } + }, + "1992226516": { + "name": "class ClientMountRiderBehavior", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1992226516, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 865634717 + "hash": 223437287 } } }, - "382744210": { - "name": "class ElixirBehaviorTemplate", + "279309079": { + "name": "class SharedPointer", "bases": [ - "TimedItemBehaviorTemplate", - "BehaviorTemplate", + "ActorCinematicAction", + "CinematicAction", "PropertyClass" ], - "hash": 382744210, + "hash": 279309079, "properties": { - "m_behaviorName": { - "type": "std::string", + "m_timeOffset": { + "type": "float", "id": 0, "offset": 72, "flags": 7, @@ -470066,783 +199280,741 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 3130754092 + "hash": 2237098605 }, - "m_expireTime": { + "m_actor": { "type": "std::string", "id": 1, - "offset": 128, + "offset": 80, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3122602039 + "hash": 2285866132 }, - "m_timerType": { - "type": "enum TimerType", + "m_bCaster": { + "type": "bool", "id": 2, "offset": 120, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 571744132, - "enum_options": { - "TimerType_Game": 0, - "TimerType_Calendar": 1 - } - }, - "m_typeList": { - "type": "std::string", - "id": 3, - "offset": 160, "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2119049625 - }, - "m_equipParticle": { - "type": "std::string", - "id": 4, - "offset": 176, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2222557491 - }, - "m_unequipParticle": { - "type": "std::string", - "id": 5, - "offset": 208, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2215431638 - }, - "m_equipSound": { - "type": "std::string", - "id": 6, - "offset": 240, - "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2720016552 - }, - "m_unequipSound": { + "hash": 1390351511 + } + } + }, + "1125885370": { + "name": "class TempStartingPipEffectInfo", + "bases": [ + "GameEffectInfo", + "PropertyClass" + ], + "hash": 1125885370, + "properties": { + "m_effectName": { "type": "std::string", - "id": 7, - "offset": 272, - "flags": 131079, + "id": 0, + "offset": 72, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1552545835 - }, - "m_equipActionList": { - "type": "class SharedPointer", - "id": 8, - "offset": 304, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1314016250 - }, - "m_unequipActionList": { - "type": "class SharedPointer", - "id": 9, - "offset": 320, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2143896925 + "hash": 2029161513 }, - "m_combatEnabled": { - "type": "bool", - "id": 10, - "offset": 336, + "m_pipsGiven": { + "type": "int", + "id": 1, + "offset": 104, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1399744148 + "hash": 1346249167 }, - "m_PvPEnabled": { - "type": "bool", - "id": 11, - "offset": 337, + "m_powerPipsGiven": { + "type": "int", + "id": 2, + "offset": 108, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1042852532 + "hash": 377908508 } } }, - "780614441": { - "name": "class AdvPvPLeaderboardEntry*", + "1557744904": { + "name": "class ClientSpawnObjectInfo", "bases": [ + "SpawnObjectInfo", + "CoreObjectInfo", "PropertyClass" ], - "hash": 780614441, + "hash": 1557744904, "properties": { - "m_entryID": { - "type": "gid", + "m_templateID.m_full": { + "type": "unsigned __int64", "id": 0, "offset": 72, - "flags": 16777279, + "flags": 33554439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 525129815 + "hash": 633907631 }, - "m_characterID": { - "type": "gid", + "m_nObjectID": { + "type": "unsigned int", "id": 1, "offset": 80, - "flags": 33554495, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 210498386 + "hash": 748496927 }, - "m_characterSchool": { - "type": "unsigned int", + "m_location": { + "type": "class Vector3D", "id": 2, - "offset": 88, - "flags": 63, + "offset": 84, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1330015234 + "hash": 2239683611 }, - "m_nameKeys": { - "type": "unsigned int", + "m_orientation": { + "type": "class Vector3D", "id": 3, - "offset": 92, - "flags": 63, + "offset": 96, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1772225898 + "hash": 2344058766 }, - "m_level": { - "type": "int", + "m_fScale": { + "type": "float", "id": 4, - "offset": 96, - "flags": 63, + "offset": 108, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 801285362 + "hash": 503137701 }, - "m_wins": { - "type": "int", + "m_zoneTag": { + "type": "std::string", "id": 5, - "offset": 100, - "flags": 63, + "offset": 152, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 219992347 + "hash": 3405382643 }, - "m_score": { - "type": "int", + "m_startState": { + "type": "std::string", "id": 6, - "offset": 104, - "flags": 63, + "offset": 184, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 809507734 + "hash": 2166880458 }, - "m_rank": { - "type": "int", + "m_overrideName": { + "type": "std::string", "id": 7, - "offset": 108, - "flags": 63, + "offset": 120, + "flags": 8388615, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 219803942 + "hash": 1990707228 }, - "m_sequenceID": { - "type": "unsigned int", + "m_globalDynamic": { + "type": "bool", "id": 8, - "offset": 112, - "flags": 63, + "offset": 116, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1797256403 + "hash": 1951691017 }, - "m_visualBlob": { - "type": "std::string", + "m_bUndetectable": { + "type": "bool", "id": 9, - "offset": 120, - "flags": 575, + "offset": 216, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1691722510 - } - } - }, - "1952338910": { - "name": "class SharedPointer", - "bases": [ - "Requirement", - "PropertyClass" - ], - "hash": 1952338910, - "properties": { - "m_applyNOT": { - "type": "bool", - "id": 0, - "offset": 72, - "flags": 31, + "hash": 1907454341 + }, + "m_spawnRequirements": { + "type": "class SharedPointer", + "id": 10, + "offset": 224, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2309120870 + }, + "m_loadingType": { + "type": "enum CoreObjectInfo::LoadingType", + "id": 11, + "offset": 112, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1746328074, + "hash": 3522422550, "enum_options": { - "__DEFAULT": 0 + "STATIC_CLIENT_SERVER": 0, + "STATIC_CLIENT": 1, + "STATIC_SERVER": 2, + "DYNAMIC_SERVER": 3 } }, - "m_operator": { - "type": "enum Requirement::Operator", - "id": 1, - "offset": 76, - "flags": 2097183, + "m_kStartNodeType": { + "type": "enum SpawnObjectInfo::StartNodeType", + "id": 12, + "offset": 240, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2672792317, + "hash": 1545814623, "enum_options": { - "ROP_AND": 0, - "ROP_OR": 1, - "__DEFAULT": "ROP_AND" + "SNT_RANDOM": 0, + "SNT_RANDOM_UNIQUE": 1, + "SNT_FIRST": 2, + "SNT_LAST": 3, + "SNT_SPECIFIC": 4 } }, - "m_numericValue": { - "type": "float", - "id": 2, - "offset": 80, - "flags": 31, + "m_startNode": { + "type": "unsigned int", + "id": 13, + "offset": 256, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 521915239 + "hash": 1598161889, + "enum_options": { + "__DEFAULT": 0 + } }, - "m_operatorType": { - "type": "enum ReqNumeric::OPERATOR_TYPE", - "id": 3, - "offset": 84, - "flags": 2097183, + "m_pathID": { + "type": "gid", + "id": 14, + "offset": 248, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2228122961, - "enum_options": { - "OPERATOR_UNKNOWN": 4294967295, - "OPERATOR_EQUALS": 0, - "OPERATOR_GREATER_THAN": 1, - "OPERATOR_LESS_THAN": 2, - "OPERATOR_GREATER_THAN_EQ": 3, - "OPERATOR_LESS_THAN_EQ": 4 - } + "hash": 821494322 + }, + "m_uniqueLoc": { + "type": "char", + "id": 15, + "offset": 260, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 400014505 } } }, - "780639017": { - "name": "class AdvPvPLeaderboardEntry", + "276188451": { + "name": "class SharedPointer", "bases": [ "PropertyClass" ], - "hash": 780639017, + "hash": 276188451, "properties": { - "m_entryID": { - "type": "gid", + "m_scores": { + "type": "class SharedPointer", "id": 0, "offset": 72, - "flags": 16777279, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1447258579 + } + } + }, + "1557710417": { + "name": "class SharedPointer", + "bases": [ + "Window", + "PropertyClass" + ], + "hash": 1557710417, + "properties": { + "m_sName": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 525129815 + "hash": 2306437263 }, - "m_characterID": { - "type": "gid", + "m_Children": { + "type": "class SharedPointer", "id": 1, - "offset": 80, - "flags": 33554495, - "container": "Static", - "dynamic": false, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 210498386 + "pointer": true, + "hash": 2621225959 }, - "m_characterSchool": { + "m_Style": { "type": "unsigned int", "id": 2, - "offset": 88, - "flags": 63, + "offset": 152, + "flags": 1048583, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1330015234 + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152, + "SINGLE_EXPAND": 16777216 + } }, - "m_nameKeys": { + "m_Flags": { "type": "unsigned int", "id": 3, - "offset": 92, - "flags": 63, + "offset": 156, + "flags": 1048583, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1772225898 + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } }, - "m_level": { - "type": "int", + "m_Window": { + "type": "class Rect", "id": 4, - "offset": 96, - "flags": 63, + "offset": 160, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 801285362 + "hash": 3105139380 }, - "m_wins": { - "type": "int", + "m_fTargetAlpha": { + "type": "float", "id": 5, - "offset": 100, - "flags": 63, + "offset": 212, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 219992347 + "hash": 1809129834 }, - "m_score": { - "type": "int", + "m_fDisabledAlpha": { + "type": "float", "id": 6, - "offset": 104, - "flags": 63, + "offset": 216, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 809507734 + "hash": 1389987675 }, - "m_rank": { - "type": "int", + "m_fAlpha": { + "type": "float", "id": 7, - "offset": 108, - "flags": 63, + "offset": 208, + "flags": 65671, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 219803942 + "hash": 482130755 }, - "m_sequenceID": { - "type": "unsigned int", + "m_pWindowStyle": { + "type": "class SharedPointer", "id": 8, - "offset": 112, - "flags": 63, + "offset": 232, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3623628394 + }, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1797256403 + "hash": 2102211316 }, - "m_visualBlob": { + "m_sScript": { "type": "std::string", - "id": 9, - "offset": 120, - "flags": 575, + "id": 10, + "offset": 352, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1691722510 - } - } - }, - "24534471": { - "name": "class Party*", - "bases": [ - "Group", - "PropertyClass" - ], - "hash": 24534471, - "properties": { - "m_GroupID": { - "type": "gid", - "id": 0, - "offset": 72, - "flags": 31, + "hash": 1846695875 + }, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 586506386 + "hash": 3389835433 }, - "m_ChannelID": { - "type": "gid", - "id": 1, - "offset": 80, - "flags": 31, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1585983742 + "hash": 2547159940 }, - "m_MemberList": { - "type": "class SharedPointer", - "id": 2, - "offset": 88, - "flags": 31, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513510520 + }, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, "container": "List", "dynamic": true, "singleton": false, - "pointer": true, - "hash": 2864705424 + "pointer": false, + "hash": 2587533771 }, - "m_nMaxSize": { - "type": "unsigned int", - "id": 3, - "offset": 104, - "flags": 31, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1265869948 + "hash": 3091503757 }, - "m_fromAdventureParty": { - "type": "bool", - "id": 4, - "offset": 128, - "flags": 31, + "m_nIndent": { + "type": "int", + "id": 16, + "offset": 584, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 940992997 + "hash": 2102774666 }, - "m_leaderGID": { - "type": "gid", - "id": 5, - "offset": 136, - "flags": 31, + "m_pRoot": { + "type": "struct ControlTree::Item*", + "id": 17, + "offset": 592, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 700505145 + "pointer": true, + "hash": 1289445775 }, - "m_questGID": { - "type": "gid", - "id": 6, - "offset": 144, - "flags": 31, + "m_pCursorOver": { + "type": "struct ControlTree::Item*", + "id": 18, + "offset": 600, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 331631550 + "pointer": true, + "hash": 2025071845 }, - "m_goalGID": { - "type": "gid", - "id": 7, - "offset": 152, - "flags": 31, + "m_pSelected": { + "type": "struct ControlTree::Item*", + "id": 19, + "offset": 608, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1115130964 + }, + "m_bCursorInWindow": { + "type": "bool", + "id": 20, + "offset": 616, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 976914927 + "hash": 1768047842 } } }, - "384355412": { - "name": "class HousingGameKhanDanceTurnData", + "711519895": { + "name": "enum WizBugReport::IdeaType", + "bases": [], + "hash": 711519895, + "properties": {} + }, + "274447384": { + "name": "class SharedPointer", "bases": [ "PropertyClass" ], - "hash": 384355412, + "hash": 274447384, "properties": { - "m_playerGIDList": { - "type": "gid", + "m_patches": { + "type": "std::string", "id": 0, "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 534186837 - }, - "m_playerYawList": { - "type": "unsigned char", - "id": 1, - "offset": 88, - "flags": 7, + "flags": 31, "container": "List", "dynamic": true, "singleton": false, "pointer": false, - "hash": 1795637418 + "hash": 2834774915 } } }, - "383531978": { - "name": "struct ControlTree::Item", + "1557105536": { + "name": "class SharedPointer", "bases": [ + "HousingGameInterface", "PropertyClass" ], - "hash": 383531978, + "hash": 1557105536, + "properties": {} + }, + "274147452": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 274147452, "properties": { - "m_Color": { - "type": "class Color", + "m_templateID": { + "type": "unsigned int", "id": 0, "offset": 72, - "flags": 262279, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1753714077 + "hash": 1286746870 }, - "m_sLabel": { - "type": "std::wstring", + "m_zoneDisplayName": { + "type": "std::string", "id": 1, "offset": 80, - "flags": 135, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2207009163 + "hash": 1962339438 }, - "m_Flags": { - "type": "unsigned int", + "m_worldName": { + "type": "std::string", "id": 2, "offset": 112, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 967851578, - "enum_options": { - "ControlTree::Item::EXPANDED": 2, - "ControlTree::Item::BUTTON": 1 - } - }, - "m_Children": { - "type": "struct ControlTree::Item*", - "id": 3, - "offset": 128, - "flags": 135, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1558446980 - } - } - }, - "382920583": { - "name": "class InteractiveMusicManager*", - "bases": [ - "PropertyClass" - ], - "hash": 382920583, - "properties": {} - }, - "1953415415": { - "name": "class PartyChatObserver*", - "bases": [ - "GroupObserver", - "PropertyClass" - ], - "hash": 1953415415, - "properties": {} - }, - "23900941": { - "name": "class FlareBacklashEffectCinematicAction", - "bases": [ - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 23900941, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 + "hash": 1846757476 }, - "m_actor": { + "m_eventName": { "type": "std::string", - "id": 1, - "offset": 80, + "id": 3, + "offset": 144, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2285866132 + "hash": 3493260286 } } }, - "781471912": { - "name": "class AmbientSoundBehavior", + "1126083367": { + "name": "class PremiumContentOption*", "bases": [ - "SoundBehavior", - "AreaBehavior", - "BehaviorInstance", "PropertyClass" ], - "hash": 781471912, + "hash": 1126083367, "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", + "m_crownsCost": { + "type": "int", "id": 0, - "offset": 104, - "flags": 39, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 + "hash": 1592212719 }, - "m_radius": { - "type": "float", + "m_msrpCost": { + "type": "int", "id": 1, - "offset": 116, + "offset": 76, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 989410271 + "hash": 1724602037 }, - "m_category": { - "type": "enum AudioCategory", + "m_purchaseText": { + "type": "std::string", "id": 2, - "offset": 124, - "flags": 2097159, + "offset": 80, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2951251982, - "enum_options": { - "AudioCategory_Irrelevent": 0, - "AudioCategory_Accoustic": 1, - "AudioCategory_Noise": 2, - "AudioCategory_Music": 3 - } + "hash": 2216277819 }, - "m_exclusive": { - "type": "bool", + "m_buttonText": { + "type": "std::string", "id": 3, - "offset": 128, + "offset": 112, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 824383403 + "hash": 3388300476 }, - "m_playList": { - "type": "class PlayList", + "m_type": { + "type": "enum PremiumContentOption::ContentType", "id": 4, - "offset": 176, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2061221957 - }, - "m_volume": { - "type": "float", - "id": 5, - "offset": 304, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1162855023 - }, - "m_loopCount": { - "type": "int", - "id": 6, - "offset": 308, - "flags": 7, + "offset": 144, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 865634717 + "hash": 2088156959, + "enum_options": { + "PCOT_UNKNOWN": 0, + "PCOT_ACCESSPASS": 1, + "PCOT_PURCHASE": 2, + "PCOT_TIMEDACCESSPASS": 3, + "PCOT_SAMPLEACCESSPASS": 4 + } } } }, - "1953974580": { - "name": "class SharedPointer", + "1555863548": { + "name": "class ReqClearCraftingSlots*", "bases": [ + "Requirement", "PropertyClass" ], - "hash": 1953974580, + "hash": 1555863548, "properties": { - "m_saleID": { - "type": "unsigned int", + "m_applyNOT": { + "type": "bool", "id": 0, "offset": 72, "flags": 31, @@ -470850,73 +200022,58 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 1150028607 + "hash": 1746328074, + "enum_options": { + "__DEFAULT": 0 + } }, - "m_templateId": { - "type": "gid", + "m_operator": { + "type": "enum Requirement::Operator", "id": 1, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1075328033 - }, - "m_loyaltyTokensPrice": { - "type": "int", - "id": 2, - "offset": 88, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 476322031 - }, - "m_purchaseLimit": { - "type": "int", - "id": 3, - "offset": 92, - "flags": 31, + "offset": 76, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 78574068 + "hash": 2672792317, + "enum_options": { + "ROP_AND": 0, + "ROP_OR": 1, + "__DEFAULT": "ROP_AND" + } } } }, - "23769576": { - "name": "class SharedPointer", + "1992896425": { + "name": "class GuildAchievementList*", "bases": [ - "CinematicAction", "PropertyClass" ], - "hash": 23769576, + "hash": 1992896425, "properties": { - "m_timeOffset": { - "type": "float", + "m_guildAchievementList": { + "type": "class SharedPointer", "id": 0, "offset": 72, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 2237098605 + "pointer": true, + "hash": 2487751645 } } }, - "384284263": { - "name": "class SharedPointer", + "1126083343": { + "name": "class PremiumContentOption", "bases": [ "PropertyClass" ], - "hash": 384284263, + "hash": 1126083343, "properties": { - "m_text": { - "type": "std::string", + "m_crownsCost": { + "type": "int", "id": 0, "offset": 72, "flags": 7, @@ -470924,331 +200081,560 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 1717580128 + "hash": 1592212719 }, - "m_chatID": { - "type": "unsigned int", + "m_msrpCost": { + "type": "int", "id": 1, - "offset": 104, + "offset": 76, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 531784794 + "hash": 1724602037 }, - "m_usage": { - "type": "unsigned int", + "m_purchaseText": { + "type": "std::string", "id": 2, - "offset": 108, + "offset": 80, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1023841410 + "hash": 2216277819 + }, + "m_buttonText": { + "type": "std::string", + "id": 3, + "offset": 112, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3388300476 + }, + "m_type": { + "type": "enum PremiumContentOption::ContentType", + "id": 4, + "offset": 144, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2088156959, + "enum_options": { + "PCOT_UNKNOWN": 0, + "PCOT_ACCESSPASS": 1, + "PCOT_PURCHASE": 2, + "PCOT_TIMEDACCESSPASS": 3, + "PCOT_SAMPLEACCESSPASS": 4 + } } } }, - "783298687": { - "name": "class DerbyTerrainEffect", + "1555862268": { + "name": "class ReqClearCraftingSlots", "bases": [ - "DerbyEffect", + "Requirement", "PropertyClass" ], - "hash": 783298687, + "hash": 1555862268, "properties": { - "m_buffType": { - "type": "enum DerbyTalentBuffType", + "m_applyNOT": { + "type": "bool", "id": 0, - "offset": 92, - "flags": 2097183, + "offset": 72, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1149251982, + "hash": 1746328074, "enum_options": { - "Buff": 0, - "Debuff": 1, - "Neither": 2 + "__DEFAULT": 0 } }, - "m_kTarget": { - "type": "enum DerbyTargetType", + "m_operator": { + "type": "enum Requirement::Operator", "id": 1, - "offset": 96, - "flags": 2097159, + "offset": 76, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1807803351, + "hash": 2672792317, "enum_options": { - "kTargetInFront": 0, - "kTargetBehind": 1, - "kTargetFirst": 2, - "kTargetSelf": 3, - "kTargetAll": 4, - "kTargetLast": 5 + "ROP_AND": 0, + "ROP_OR": 1, + "__DEFAULT": "ROP_AND" } + } + } + }, + "712631640": { + "name": "class CastleMagicTutorial", + "bases": [ + "PropertyClass" + ], + "hash": 712631640, + "properties": {} + }, + "1992858572": { + "name": "class CrownsConfirmWindow*", + "bases": [ + "Window", + "PropertyClass" + ], + "hash": 1992858572, + "properties": { + "m_sName": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306437263 }, - "m_nDuration": { - "type": "int", + "m_Children": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621225959 + }, + "m_Style": { + "type": "unsigned int", "id": 2, - "offset": 104, - "flags": 31, + "offset": 152, + "flags": 1048583, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1110167982 + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "SCALE_CHILDREN": 2, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "FOCUS_LOCKED": 64, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152 + } }, - "m_effectID": { + "m_Flags": { "type": "unsigned int", "id": 3, - "offset": 88, - "flags": 24, + "offset": 156, + "flags": 1048583, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2347630439 + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } }, - "m_imageFilename": { - "type": "std::string", + "m_Window": { + "type": "class Rect", "id": 4, - "offset": 112, - "flags": 131103, + "offset": 160, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2813328063 + "hash": 3105139380 }, - "m_iconIndex": { - "type": "unsigned int", + "m_fTargetAlpha": { + "type": "float", "id": 5, - "offset": 144, - "flags": 31, + "offset": 212, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1265133262 + "hash": 1809129834 }, - "m_soundOnActivate": { - "type": "std::string", + "m_fDisabledAlpha": { + "type": "float", "id": 6, - "offset": 152, - "flags": 131103, + "offset": 216, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1956929714 + "hash": 1389987675 }, - "m_soundOnTarget": { - "type": "std::string", + "m_fAlpha": { + "type": "float", "id": 7, - "offset": 184, - "flags": 131103, + "offset": 208, + "flags": 65671, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3444214056 + "hash": 482130755 }, - "m_targetParticleEffect": { - "type": "std::string", + "m_pWindowStyle": { + "type": "class SharedPointer", "id": 8, - "offset": 216, - "flags": 131103, + "offset": 232, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 3048234723 + "pointer": true, + "hash": 3623628394 }, - "m_overheadMessage": { - "type": "std::string", + "m_sHelp": { + "type": "std::wstring", "id": 9, "offset": 248, - "flags": 8388639, + "flags": 4194439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1701018190 + "hash": 2102211316 }, - "m_requirements": { - "type": "class RequirementList", + "m_sScript": { + "type": "std::string", "id": 10, - "offset": 280, - "flags": 31, + "offset": 352, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2840988582 + "hash": 1846695875 }, - "m_terrainType": { - "type": "enum PetDerbyTrackTerrain", + "m_Offset": { + "type": "class Point", "id": 11, - "offset": 376, - "flags": 2097183, + "offset": 192, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2688629581, - "enum_options": { - "Cobblestone": 0, - "Water": 1, - "Grass": 2, - "Clay": 3, - "Dirt": 4, - "Mud": 5 - } + "hash": 3389835433 }, - "m_fEffectReapplyTime": { - "type": "float", + "m_Scale": { + "type": "class Point", "id": 12, - "offset": 380, - "flags": 31, + "offset": 200, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1483497206 + "hash": 2547159940 }, - "m_effectsToApply": { - "type": "class SharedPointer", + "m_sTip": { + "type": "std::wstring", "id": 13, - "offset": 384, - "flags": 31, - "container": "List", - "dynamic": true, + "offset": 392, + "flags": 4194439, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2042624288 + "pointer": false, + "hash": 1513510520 }, - "m_permanentEffects": { - "type": "class SharedPointer", + "m_BubbleList": { + "type": "class WindowBubble", "id": 14, - "offset": 400, - "flags": 31, + "offset": 424, + "flags": 135, "container": "List", "dynamic": true, "singleton": false, - "pointer": true, - "hash": 2129171809 + "pointer": false, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3091503757 } } }, - "31486635": { - "name": "class Size", + "712335102": { + "name": "class DMLRecord*", "bases": [], - "hash": 31486635, + "hash": 712335102, "properties": {} }, - "782690799": { - "name": "class GuildMuseumCuratorBehaviorBase", + "275371761": { + "name": "class SharedPointer", "bases": [ - "BehaviorInstance", + "SG_GameAction_DestroyBlock", + "SG_GameAction", "PropertyClass" ], - "hash": 782690799, + "hash": 275371761, "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", + "m_target": { + "type": "enum SG_GameAction::SG_Target", "id": 0, - "offset": 104, - "flags": 39, + "offset": 72, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 + "hash": 1166870973, + "enum_options": { + "Target_Ball": 0, + "Target_Self": 1, + "Target_Connections": 2, + "__DEFAULT": "Target_Ball" + } } } }, - "23902477": { - "name": "class FlareBacklashEffectCinematicAction*", + "1992896385": { + "name": "class GuildAchievementList", "bases": [ - "ActorCinematicAction", - "CinematicAction", "PropertyClass" ], - "hash": 23902477, + "hash": 1992896385, "properties": { - "m_timeOffset": { - "type": "float", + "m_guildAchievementList": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2487751645 + } + } + }, + "274987373": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 274987373, + "properties": { + "m_tieredSpellConfig": { + "type": "class SharedPointer", + "id": 0, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": true, + "pointer": true, + "hash": 2945256819 + } + } + }, + "1126367065": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1126367065, + "properties": { + "m_Mounts": { + "type": "class SharedPointer", "id": 0, "offset": 72, "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2866335988 + } + } + }, + "2019251425": { + "name": "class ClientPetOwnerBehavior", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 2019251425, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 + "hash": 223437287 }, - "m_actor": { - "type": "std::string", + "m_maxSlots": { + "type": "unsigned char", "id": 1, - "offset": 80, - "flags": 7, + "offset": 128, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2285866132 + "hash": 792508619 + }, + "m_morphingSlots": { + "type": "class SharedPointer", + "id": 2, + "offset": 112, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2241134624 + }, + "m_energyTickTimeSecs": { + "type": "unsigned int", + "id": 3, + "offset": 136, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1255384991 + }, + "m_energy": { + "type": "int", + "id": 4, + "offset": 132, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 405911268 + }, + "m_playingAsPet": { + "type": "bool", + "id": 5, + "offset": 140, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1865705156 } } }, - "1958167150": { - "name": "class ClientSetTopTeamCinematicAction", + "713899435": { + "name": "class RealmInfoList*", "bases": [ - "SetTopTeamCinematicAction", - "CinematicAction", "PropertyClass" ], - "hash": 1958167150, + "hash": 713899435, "properties": { - "m_timeOffset": { - "type": "float", + "m_infoList": { + "type": "class SharedPointer", "id": 0, "offset": 72, - "flags": 7, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1814698255 + } + } + }, + "1992945078": { + "name": "class CastleMagicBehavior", + "bases": [ + "CastleMagicBehaviorBase", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1992945078, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 + "hash": 223437287 }, - "m_interpDuration": { - "type": "float", + "m_castleMagicData": { + "type": "std::string", "id": 1, - "offset": 80, - "flags": 7, + "offset": 128, + "flags": 575, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237711951 + "hash": 2874597138 } } }, - "781697662": { - "name": "class SharedPointer", + "1128943725": { + "name": "class PetGeneticsControl*", "bases": [ - "ScrollablePopupButton", - "ControlPopupButton", - "ControlButton", "Window", "PropertyClass" ], - "hash": 781697662, + "hash": 1128943725, "properties": { "m_sName": { "type": "std::string", @@ -471265,7 +200651,7 @@ "type": "class SharedPointer", "id": 1, "offset": 112, - "flags": 65671, + "flags": 65667, "container": "Vector", "dynamic": true, "singleton": false, @@ -471284,9 +200670,11 @@ "hash": 983582334, "enum_options": { "HAS_BACK": 1, + "SCALE_CHILDREN": 2, "CAN_MOVE": 4, "CAN_SIZE": 8, "CAN_SCROLL": 16, + "FOCUS_LOCKED": 64, "CAN_FOCUS": 128, "CAN_DOCK": 32, "DO_NOT_CAPTURE_MOUSE": 256, @@ -471298,11 +200686,7 @@ "USE_ALPHA_BOUNDS": 8192, "AUTO_GROW": 16384, "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152, - "POPDOWN_SIBLINGS": 67108864, - "DISABLE_CHILDREN": 134217728, - "HIDE_SIBLINGS": 268435456, - "POPUP_ON_HOVER": 536870912 + "AUTO_RESIZE": 49152 } }, "m_Flags": { @@ -471462,283 +200846,110 @@ "singleton": false, "pointer": false, "hash": 3091503757 - }, - "m_bToggle": { - "type": "bool", - "id": 16, - "offset": 608, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2071810903 - }, - "m_bButtonDown": { - "type": "bool", - "id": 17, - "offset": 609, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 840041705 - }, - "m_sLabel": { - "type": "std::wstring", - "id": 18, - "offset": 616, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2207009163 - }, - "m_labelOffset": { - "type": "class Rect", - "id": 19, - "offset": 832, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1990646723 - }, - "m_pButton": { - "type": "class SharedPointer", - "id": 20, - "offset": 656, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1543855875 - }, - "m_HotKey": { - "type": "unsigned int", - "id": 21, - "offset": 672, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1631553409 - }, - "m_Color": { - "type": "class Color", - "id": 22, - "offset": 676, - "flags": 262279, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1753714077 - }, - "m_bCursorOver": { - "type": "bool", - "id": 23, - "offset": 689, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 283981103 - }, - "m_bAbortWhenCursorNotOver": { - "type": "bool", - "id": 24, - "offset": 706, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 325405258 - }, - "m_bHotKeyDown": { - "type": "bool", - "id": 25, - "offset": 680, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 616989185 - }, - "m_fTime": { - "type": "float", - "id": 26, - "offset": 684, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 883746156 - }, - "m_bGreyed": { - "type": "bool", - "id": 27, - "offset": 688, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1566556053 - }, - "m_fMaxScale": { + } + } + }, + "713677941": { + "name": "class ClientCameraFadeCinematicAction*", + "bases": [ + "CameraFadeCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 713677941, + "properties": { + "m_timeOffset": { "type": "float", - "id": 28, - "offset": 692, - "flags": 135, + "id": 0, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2070186635 + "hash": 2237098605 }, - "m_fScaleSpeed": { + "m_fDuration": { "type": "float", - "id": 29, - "offset": 696, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1457135702 - }, - "m_bUseDropShadow": { - "type": "bool", - "id": 30, - "offset": 704, - "flags": 135, + "id": 1, + "offset": 80, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 93063037 + "hash": 598255075 }, - "m_bUseOutline": { + "m_bCycle": { "type": "bool", - "id": 31, - "offset": 705, - "flags": 135, + "id": 2, + "offset": 84, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 744292994 - }, - "m_pGreyedState": { - "type": "class SharedPointer", - "id": 32, - "offset": 768, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2703352263 - }, - "m_pNormalState": { - "type": "class SharedPointer", - "id": 33, - "offset": 752, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1887909808 - }, - "m_pHighlightedState": { - "type": "class SharedPointer", - "id": 34, - "offset": 784, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2200177608 - }, - "m_pSelectedState": { - "type": "class SharedPointer", - "id": 35, - "offset": 800, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2266776432 - }, - "m_pDepressedState": { - "type": "class SharedPointer", - "id": 36, - "offset": 816, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1878185798 + "hash": 240694213 }, - "m_bUp": { + "m_bFadeIn": { "type": "bool", - "id": 37, - "offset": 880, - "flags": 135, + "id": 3, + "offset": 85, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 269510906 + "hash": 1507201372 } } }, - "25315545": { - "name": "class MinigameSigilOption*", + "278101554": { + "name": "class ClientDerbyLockLane*", "bases": [ - "ServiceOptionBase", + "DerbyLockLane", + "DerbyEffect", "PropertyClass" ], - "hash": 25315545, + "hash": 278101554, "properties": { - "m_serviceName": { - "type": "std::string", + "m_buffType": { + "type": "enum DerbyTalentBuffType", "id": 0, - "offset": 72, - "flags": 31, + "offset": 92, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2206028813 + "hash": 1149251982, + "enum_options": { + "Buff": 0, + "Debuff": 1, + "Neither": 2 + } }, - "m_iconKey": { - "type": "std::string", + "m_kTarget": { + "type": "enum DerbyTargetType", "id": 1, - "offset": 168, - "flags": 31, + "offset": 96, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2457138637 + "hash": 1807803351, + "enum_options": { + "kTargetInFront": 0, + "kTargetBehind": 1, + "kTargetFirst": 2, + "kTargetSelf": 3, + "kTargetAll": 4, + "kTargetLast": 5 + } }, - "m_displayKey": { - "type": "std::string", + "m_nDuration": { + "type": "int", "id": 2, "offset": 104, "flags": 31, @@ -471746,1197 +200957,1105 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 3023276954 + "hash": 1110167982 }, - "m_serviceIndex": { + "m_effectID": { "type": "unsigned int", "id": 3, - "offset": 204, - "flags": 31, + "offset": 88, + "flags": 24, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2103126710 + "hash": 2347630439 }, - "m_forceInteract": { - "type": "bool", + "m_imageFilename": { + "type": "std::string", "id": 4, - "offset": 200, - "flags": 31, + "offset": 112, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1705789564 + "hash": 2813328063 }, - "m_teamUpAllowed": { - "type": "int", + "m_iconIndex": { + "type": "unsigned int", "id": 5, - "offset": 216, + "offset": 144, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1016118542 + "hash": 1265133262 }, - "m_successZone": { + "m_soundOnActivate": { "type": "std::string", "id": 6, - "offset": 224, - "flags": 31, + "offset": 152, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1516681392 + "hash": 1956929714 }, - "m_isCluster": { - "type": "bool", + "m_soundOnTarget": { + "type": "std::string", "id": 7, - "offset": 256, - "flags": 31, + "offset": 184, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1183074257 + "hash": 3444214056 }, - "m_requiresSkeletonKey": { - "type": "int", + "m_targetParticleEffect": { + "type": "std::string", "id": 8, - "offset": 220, - "flags": 31, + "offset": 216, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1735968152 + "hash": 3048234723 }, - "m_monthlyGauntletFields": { - "type": "class SharedPointer", + "m_overheadMessage": { + "type": "std::string", "id": 9, - "offset": 264, - "flags": 31, + "offset": 248, + "flags": 8388639, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2875746802 + "pointer": false, + "hash": 1701018190 }, - "m_advancedModeFields": { - "type": "class SharedPointer", + "m_requirements": { + "type": "class RequirementList", "id": 10, "offset": 280, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3117836827 - } - } - }, - "384361556": { - "name": "class HousingGameKhanDanceTurnData*", - "bases": [ - "PropertyClass" - ], - "hash": 384361556, - "properties": { - "m_playerGIDList": { - "type": "gid", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 534186837 - }, - "m_playerYawList": { - "type": "unsigned char", - "id": 1, - "offset": 88, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, "pointer": false, - "hash": 1795637418 + "hash": 2840988582 } } }, - "1957034783": { - "name": "class SharedPointer", + "1127770360": { + "name": "class ClientDerbyAddSpeedBoost", "bases": [ + "DerbyAddSpeedBoost", + "DerbyEffect", "PropertyClass" ], - "hash": 1957034783, + "hash": 1127770360, "properties": { - "m_ownerID.m_full": { - "type": "unsigned __int64", + "m_buffType": { + "type": "enum DerbyTalentBuffType", "id": 0, - "offset": 112, - "flags": 31, + "offset": 92, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2149616286 + "hash": 1149251982, + "enum_options": { + "Buff": 0, + "Debuff": 1, + "Neither": 2 + } }, - "m_templateID.m_full": { - "type": "unsigned __int64", + "m_kTarget": { + "type": "enum DerbyTargetType", "id": 1, - "offset": 120, - "flags": 31, + "offset": 96, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 633907631 + "hash": 1807803351, + "enum_options": { + "kTargetInFront": 0, + "kTargetBehind": 1, + "kTargetFirst": 2, + "kTargetSelf": 3, + "kTargetAll": 4, + "kTargetLast": 5 + } }, - "m_isPlayer": { - "type": "bool", + "m_nDuration": { + "type": "int", "id": 2, - "offset": 128, + "offset": 104, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1717744636 + "hash": 1110167982 }, - "m_zoneID.m_full": { - "type": "unsigned __int64", + "m_effectID": { + "type": "unsigned int", "id": 3, - "offset": 136, - "flags": 31, + "offset": 88, + "flags": 24, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2105998895 + "hash": 2347630439 }, - "m_teamID": { - "type": "int", + "m_imageFilename": { + "type": "std::string", "id": 4, - "offset": 144, - "flags": 31, + "offset": 112, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 982118638 + "hash": 2813328063 }, - "m_primaryMagicSchoolID": { - "type": "int", + "m_iconIndex": { + "type": "unsigned int", "id": 5, - "offset": 148, + "offset": 144, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1864910356 + "hash": 1265133262 }, - "m_pipCount": { - "type": "class SharedPointer", + "m_soundOnActivate": { + "type": "std::string", "id": 6, "offset": 152, - "flags": 31, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1862540484 + "pointer": false, + "hash": 1956929714 }, - "m_pipRoundRates": { - "type": "class SharedPointer", + "m_soundOnTarget": { + "type": "std::string", "id": 7, - "offset": 168, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1859513241 - }, - "m_PipsSuspended": { - "type": "bool", - "id": 8, "offset": 184, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 98171898 - }, - "m_stunned": { - "type": "int", - "id": 9, - "offset": 188, - "flags": 25, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1661672123 + "hash": 3444214056 }, - "m_mindcontrolled": { - "type": "int", - "id": 10, + "m_targetParticleEffect": { + "type": "std::string", + "id": 8, "offset": 216, - "flags": 25, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2059794744 - }, - "m_originalTeam": { - "type": "int", - "id": 11, - "offset": 224, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1121355446 - }, - "m_nAuraTurnLength": { - "type": "int", - "id": 12, - "offset": 236, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1719821564 - }, - "m_clue": { - "type": "int", - "id": 13, - "offset": 228, - "flags": 25, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 219277091 - }, - "m_roundsDead": { - "type": "int", - "id": 14, - "offset": 232, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2071727747 - }, - "m_nPolymorphTurnLength": { - "type": "int", - "id": 15, - "offset": 240, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1619550301 - }, - "m_playerHealth": { - "type": "int", - "id": 16, - "offset": 244, - "flags": 31, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 740444925 + "hash": 3048234723 }, - "m_maxPlayerHealth": { - "type": "int", - "id": 17, + "m_overheadMessage": { + "type": "std::string", + "id": 9, "offset": 248, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 96027363 - }, - "m_HideCurrentHP": { - "type": "bool", - "id": 18, - "offset": 252, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 31360456 - }, - "m_maxHandSize": { - "type": "int", - "id": 19, - "offset": 256, - "flags": 31, + "flags": 8388639, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1925169782 - }, - "m_pHand": { - "type": "class Hand*", - "id": 20, - "offset": 264, - "flags": 1, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 892448765 - }, - "m_pSavedHand": { - "type": "class Hand*", - "id": 21, - "offset": 272, - "flags": 1, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 787912720 - }, - "m_pPlayDeck": { - "type": "class PlayDeck*", - "id": 22, - "offset": 280, - "flags": 1, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2053198667 - }, - "m_pSavedPlayDeck": { - "type": "class PlayDeck*", - "id": 23, - "offset": 288, - "flags": 1, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 498207966 - }, - "m_pSavedGameStats": { - "type": "class SharedPointer", - "id": 24, - "offset": 296, - "flags": 1, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1599533644 + "hash": 1701018190 }, - "m_savedPrimaryMagicSchoolID": { - "type": "int", - "id": 25, - "offset": 312, - "flags": 1, + "m_requirements": { + "type": "class RequirementList", + "id": 10, + "offset": 280, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 983035431 + "hash": 2840988582 }, - "m_pGameStats": { - "type": "class SharedPointer", - "id": 26, - "offset": 320, + "m_nTimesToAdd": { + "type": "int", + "id": 11, + "offset": 376, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3522102873 - }, - "m_color": { - "type": "class Color", - "id": 27, - "offset": 336, - "flags": 31, + "pointer": false, + "hash": 1414275638 + } + } + }, + "1557743624": { + "name": "class ClientSpawnObjectInfo*", + "bases": [ + "SpawnObjectInfo", + "CoreObjectInfo", + "PropertyClass" + ], + "hash": 1557743624, + "properties": { + "m_templateID.m_full": { + "type": "unsigned __int64", + "id": 0, + "offset": 72, + "flags": 33554439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1791663549 + "hash": 633907631 }, - "m_rotation": { - "type": "float", - "id": 28, - "offset": 340, - "flags": 31, + "m_nObjectID": { + "type": "unsigned int", + "id": 1, + "offset": 80, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1497468551 + "hash": 748496927 }, - "m_radius": { - "type": "float", - "id": 29, - "offset": 344, - "flags": 31, + "m_location": { + "type": "class Vector3D", + "id": 2, + "offset": 84, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 989410271 + "hash": 2239683611 }, - "m_subcircle": { - "type": "int", - "id": 30, - "offset": 348, - "flags": 31, + "m_orientation": { + "type": "class Vector3D", + "id": 3, + "offset": 96, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1748202326 + "hash": 2344058766 }, - "m_pvp": { - "type": "bool", - "id": 31, - "offset": 352, - "flags": 31, + "m_fScale": { + "type": "float", + "id": 4, + "offset": 108, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 269527241 + "hash": 503137701 }, - "m_raid": { - "type": "bool", - "id": 32, - "offset": 353, - "flags": 31, + "m_zoneTag": { + "type": "std::string", + "id": 5, + "offset": 152, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 222284947 + "hash": 3405382643 }, - "m_dynamicSymbol": { - "type": "enum DynamicSigilSymbol", - "id": 33, - "offset": 356, - "flags": 31, + "m_startState": { + "type": "std::string", + "id": 6, + "offset": 184, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 701705655 + "hash": 2166880458 }, - "m_accuracyBonus": { - "type": "float", - "id": 34, - "offset": 396, - "flags": 1, + "m_overrideName": { + "type": "std::string", + "id": 7, + "offset": 120, + "flags": 8388615, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1440672233 + "hash": 1990707228 }, - "m_minionSubCircle": { - "type": "int", - "id": 35, - "offset": 400, - "flags": 31, + "m_globalDynamic": { + "type": "bool", + "id": 8, + "offset": 116, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1896926112 + "hash": 1951691017 }, - "m_isMinion": { + "m_bUndetectable": { "type": "bool", - "id": 36, - "offset": 404, - "flags": 31, + "id": 9, + "offset": 216, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1597230777 + "hash": 1907454341 }, - "m_isAccompanyNPC": { - "type": "bool", - "id": 37, - "offset": 412, - "flags": 31, + "m_spawnRequirements": { + "type": "class SharedPointer", + "id": 10, + "offset": 224, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1067399659 + "pointer": true, + "hash": 2309120870 }, - "m_hangingEffects": { - "type": "class SpellEffect", - "id": 38, - "offset": 416, - "flags": 27, - "container": "List", - "dynamic": true, + "m_loadingType": { + "type": "enum CoreObjectInfo::LoadingType", + "id": 11, + "offset": 112, + "flags": 2097159, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 2685029606 + "hash": 3522422550, + "enum_options": { + "STATIC_CLIENT_SERVER": 0, + "STATIC_CLIENT": 1, + "STATIC_SERVER": 2, + "DYNAMIC_SERVER": 3 + } }, - "m_publicHangingEffects": { - "type": "class SpellEffect", - "id": 39, - "offset": 432, - "flags": 31, - "container": "List", - "dynamic": true, + "m_kStartNodeType": { + "type": "enum SpawnObjectInfo::StartNodeType", + "id": 12, + "offset": 240, + "flags": 2097159, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 1243141029 + "hash": 1545814623, + "enum_options": { + "SNT_RANDOM": 0, + "SNT_RANDOM_UNIQUE": 1, + "SNT_FIRST": 2, + "SNT_LAST": 3, + "SNT_SPECIFIC": 4 + } }, - "m_auraEffects": { - "type": "class SpellEffect", - "id": 40, - "offset": 448, - "flags": 31, - "container": "List", - "dynamic": true, + "m_startNode": { + "type": "unsigned int", + "id": 13, + "offset": 256, + "flags": 7, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 2783652947 + "hash": 1598161889, + "enum_options": { + "__DEFAULT": 0 + } }, - "m_shadowEffects": { - "type": "class SharedPointer", - "id": 41, - "offset": 464, - "flags": 31, - "container": "List", - "dynamic": true, + "m_pathID": { + "type": "gid", + "id": 14, + "offset": 248, + "flags": 7, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1712698903 + "pointer": false, + "hash": 821494322 }, - "m_shadowSpellEffects": { - "type": "class SpellEffect", - "id": 42, - "offset": 480, - "flags": 31, - "container": "List", - "dynamic": true, + "m_uniqueLoc": { + "type": "char", + "id": 15, + "offset": 260, + "flags": 7, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 1808623792 - }, - "m_deathActivatedEffects": { - "type": "class SharedPointer", - "id": 43, - "offset": 512, - "flags": 31, - "container": "List", + "hash": 400014505 + } + } + }, + "276946685": { + "name": "class QuestTemplate*", + "bases": [ + "CoreTemplate", + "PropertyClass" + ], + "hash": 276946685, + "properties": { + "m_behaviors": { + "type": "class BehaviorTemplate*", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Vector", "dynamic": true, "singleton": false, "pointer": true, - "hash": 1347166054 + "hash": 1197808594 }, - "m_delayCastEffects": { - "type": "class DelaySpellEffect", - "id": 44, - "offset": 528, - "flags": 31, - "container": "List", - "dynamic": true, + "m_questName": { + "type": "std::string", + "id": 1, + "offset": 96, + "flags": 7, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 2596123949 + "hash": 1702112846 }, - "m_polymorphSpellTemplateID": { + "m_questNameID": { "type": "unsigned int", - "id": 45, - "offset": 576, - "flags": 31, + "id": 2, + "offset": 128, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1320079328 + "hash": 1530354349 }, - "m_side": { + "m_questTitle": { "type": "std::string", - "id": 46, - "offset": 600, - "flags": 1, + "id": 3, + "offset": 136, + "flags": 8388615, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1717547872 + "hash": 1805465583 }, - "m_shadowSpellsDisabled": { - "type": "bool", - "id": 47, - "offset": 672, - "flags": 31, + "m_questInfo": { + "type": "std::string", + "id": 4, + "offset": 168, + "flags": 8388615, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2077139652 + "hash": 1701947097 }, - "m_ignoreSpellsPvPOnlyFlag": { - "type": "bool", - "id": 48, - "offset": 673, - "flags": 31, + "m_questPrep": { + "type": "std::string", + "id": 5, + "offset": 200, + "flags": 8388615, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1714276188 + "hash": 1702202980 }, - "m_ignoreSpellsPvEOnlyFlag": { - "type": "bool", - "id": 49, - "offset": 674, - "flags": 31, + "m_questUnderway": { + "type": "std::string", + "id": 6, + "offset": 232, + "flags": 8388615, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1691675729 + "hash": 2308400380 }, - "m_bossMob": { - "type": "bool", - "id": 50, - "offset": 675, - "flags": 31, + "m_questComplete": { + "type": "std::string", + "id": 7, + "offset": 264, + "flags": 8388615, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 986129576 + "hash": 3484586150 }, - "m_hidePVPEnemyChat": { - "type": "bool", - "id": 51, - "offset": 676, - "flags": 31, - "container": "Static", - "dynamic": false, + "m_startGoals": { + "type": "std::string", + "id": 8, + "offset": 392, + "flags": 7, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 1284658049 + "hash": 2152469471 }, - "m_combatTriggerIDs": { - "type": "int", - "id": 52, - "offset": 696, - "flags": 1, + "m_goals": { + "type": "class SharedPointer", + "id": 9, + "offset": 408, + "flags": 7, "container": "List", "dynamic": true, "singleton": false, - "pointer": false, - "hash": 1654684388 + "pointer": true, + "hash": 1374041870 }, - "m_backlash": { - "type": "int", - "id": 53, - "offset": 724, - "flags": 31, + "m_startResults": { + "type": "class SharedPointer", + "id": 10, + "offset": 424, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 857558899 + "pointer": true, + "hash": 2094517692 }, - "m_pastBacklash": { - "type": "int", - "id": 54, - "offset": 728, - "flags": 31, + "m_endResults": { + "type": "class SharedPointer", + "id": 11, + "offset": 440, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1229328939 + "pointer": true, + "hash": 2118364133 }, - "m_shadowCreatureLevel": { - "type": "int", - "id": 55, - "offset": 732, - "flags": 31, + "m_requirements": { + "type": "class RequirementList*", + "id": 12, + "offset": 456, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1119572179 + "pointer": true, + "hash": 2840985510 }, - "m_pastShadowCreatureLevel": { - "type": "int", - "id": 56, - "offset": 736, - "flags": 31, + "m_prepRequirements": { + "type": "class RequirementList*", + "id": 13, + "offset": 464, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1267855499 - }, - "m_shadowCreatureLevelCount": { - "type": "int", - "id": 57, - "offset": 744, - "flags": 31, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 975615804 + "pointer": true, + "hash": 3016776541 }, - "m_interceptEffect": { - "type": "class SharedPointer", - "id": 58, - "offset": 768, - "flags": 31, + "m_pruneRequirements": { + "type": "class RequirementList*", + "id": 14, + "offset": 472, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": true, - "hash": 339294150 + "hash": 3211248912 }, - "m_roundsSinceShadowPip": { - "type": "int", - "id": 59, - "offset": 800, - "flags": 1, + "m_prepAlways": { + "type": "bool", + "id": 15, + "offset": 304, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 682042934 + "hash": 1423046331 }, - "m_polymorphEffect": { - "type": "class SharedPointer", - "id": 60, - "offset": 824, - "flags": 31, - "container": "Static", - "dynamic": false, + "m_clientTags": { + "type": "std::string", + "id": 16, + "offset": 312, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2319030025 + }, + "m_goalLogic": { + "type": "class GoalCompleteLogic*", + "id": 17, + "offset": 520, + "flags": 7, + "container": "List", + "dynamic": true, "singleton": false, "pointer": true, - "hash": 2193528962 + "hash": 963824003 }, - "m_confused": { + "m_questLevel": { "type": "int", - "id": 61, - "offset": 196, - "flags": 25, + "id": 18, + "offset": 296, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1851913585 + "hash": 298136804 }, - "m_confusionTrigger": { + "m_questRepeat": { "type": "int", - "id": 62, - "offset": 200, - "flags": 25, + "id": 19, + "offset": 300, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 554584130 + "hash": 1480345805 }, - "m_confusionDisplay": { - "type": "bool", - "id": 63, - "offset": 204, - "flags": 25, + "m_onStartQuestScript": { + "type": "std::string", + "id": 20, + "offset": 328, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1028383709 + "hash": 2577549709 }, - "m_confusedTarget": { - "type": "bool", - "id": 64, - "offset": 205, - "flags": 25, + "m_onEndQuestScript": { + "type": "std::string", + "id": 21, + "offset": 360, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1193542673 + "hash": 2285648118 }, - "m_untargetable": { - "type": "bool", - "id": 65, - "offset": 206, - "flags": 25, + "m_dialogList": { + "type": "class ActorDialogListBase*", + "id": 22, + "offset": 480, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 36479793 + "pointer": true, + "hash": 1909154969 }, - "m_untargetableRounds": { - "type": "int", - "id": 66, - "offset": 208, - "flags": 25, - "container": "Static", - "dynamic": false, + "m_missionDoors": { + "type": "std::string", + "id": 23, + "offset": 504, + "flags": 7, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 80618355 + "hash": 2428103908 }, - "m_restrictedTarget": { + "m_dynaMods": { + "type": "class QuestDynaModInfo*", + "id": 24, + "offset": 488, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 3330743945 + }, + "m_isHidden": { "type": "bool", - "id": 67, - "offset": 212, - "flags": 25, + "id": 25, + "offset": 305, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 394144563 + "hash": 1401188667 }, - "m_exitCombat": { + "m_outdated": { "type": "bool", - "id": 68, - "offset": 213, - "flags": 25, + "id": 26, + "offset": 306, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1293141763 + "hash": 1565198349 }, - "m_stunnedDisplay": { + "m_noQuestHelper": { "type": "bool", - "id": 69, - "offset": 192, - "flags": 25, + "id": 27, + "offset": 307, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 892304554 + "hash": 578010882 }, - "m_mindcontrolledDisplay": { + "m_mainline": { "type": "bool", - "id": 70, - "offset": 220, - "flags": 25, + "id": 28, + "offset": 552, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 174689415 + "hash": 1749856224 }, - "m_autoPass": { + "m_defaultDialogAnimation": { + "type": "std::string", + "id": 29, + "offset": 560, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2400834320 + }, + "m_skipQHAutoSelect": { "type": "bool", - "id": 71, - "offset": 720, - "flags": 25, + "id": 30, + "offset": 553, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1919864803 + "hash": 2024815836 }, - "m_vanish": { + "m_questEffectInfoList": { + "type": "class SharedPointer", + "id": 31, + "offset": 536, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2494024956 + }, + "m_forceInteraction": { "type": "bool", - "id": 72, - "offset": 721, - "flags": 25, + "id": 32, + "offset": 554, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1058591164 + "hash": 1038376866 }, - "m_myTeamTurn": { + "m_checkInventoryForCrafting": { "type": "bool", - "id": 73, - "offset": 722, - "flags": 25, + "id": 33, + "offset": 608, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1134422697 + "hash": 1549644020 }, - "m_needToCleanAuras": { + "m_playAsYourPetNPC": { "type": "bool", - "id": 74, - "offset": 888, - "flags": 25, + "id": 34, + "offset": 609, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1159570481 + "hash": 827482678 }, - "m_planningPhasePipAquiredType": { - "type": "enum CombatParticipant::PipAquiredByEnum", - "id": 75, - "offset": 816, + "m_activityType": { + "type": "enum QuestTemplate::ActivityType", + "id": 35, + "offset": 612, "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1435933659, + "hash": 231656390, "enum_options": { - "CombatParticipant::AQUIRED_PIP_UNKNOWN": 0, - "CombatParticipant::AQUIRED_PIP_NORMAL": 1, - "CombatParticipant::AQUIRED_PIP_POWER": 2, - "CombatParticipant::AQUIRED_NORMAL_TO_POWER_PIP_CONVERSION": 4, - "CombatParticipant::IMPEDE_PIPS": 5 + "ACTIVITY_NotActivity": 0, + "ACTIVITY_Crafting": 2, + "ACTIVITY_Fishing": 3, + "ACTIVITY_Gardening": 4, + "ACTIVITY_Pet": 5, + "ACTIVITY_Spell": 1 } - }, - "m_cheatSettings": { - "type": "class SharedPointer", - "id": 76, - "offset": 96, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2742666223 - }, - "m_isMonster": { - "type": "unsigned int", - "id": 77, - "offset": 408, - "flags": 31, + } + } + }, + "1126574566": { + "name": "class PetGameActionList", + "bases": [ + "Window", + "PropertyClass" + ], + "hash": 1126574566, + "properties": { + "m_sName": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1530878065 + "hash": 2306437263 }, - "m_weaponNifSoundList": { - "type": "class SharedPointer", - "id": 78, - "offset": 80, - "flags": 31, - "container": "List", + "m_Children": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 65667, + "container": "Vector", "dynamic": true, "singleton": false, "pointer": true, - "hash": 2575326929 - }, - "m_petCombatTrigger": { - "type": "int", - "id": 79, - "offset": 712, - "flags": 1, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 822894541 + "hash": 2621225959 }, - "m_petCombatTriggerTarget": { - "type": "int", - "id": 80, - "offset": 716, - "flags": 1, + "m_Style": { + "type": "unsigned int", + "id": 2, + "offset": 152, + "flags": 1048583, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 675145556 + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "SCALE_CHILDREN": 2, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "FOCUS_LOCKED": 64, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152 + } }, - "m_shadowPipRateThreshold": { - "type": "float", - "id": 81, - "offset": 840, - "flags": 31, + "m_Flags": { + "type": "unsigned int", + "id": 3, + "offset": 156, + "flags": 1048583, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1215959391 + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } }, - "m_baseSpellDamage": { - "type": "int", - "id": 82, - "offset": 844, - "flags": 31, + "m_Window": { + "type": "class Rect", + "id": 4, + "offset": 160, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 871613364 + "hash": 3105139380 }, - "m_statDamage": { + "m_fTargetAlpha": { "type": "float", - "id": 83, - "offset": 848, - "flags": 31, + "id": 5, + "offset": 212, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1480169970 + "hash": 1809129834 }, - "m_statResist": { + "m_fDisabledAlpha": { "type": "float", - "id": 84, - "offset": 852, - "flags": 31, + "id": 6, + "offset": 216, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2033033901 + "hash": 1389987675 }, - "m_statPierce": { + "m_fAlpha": { "type": "float", - "id": 85, - "offset": 856, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1959012939 - }, - "m_mobLevel": { - "type": "int", - "id": 86, - "offset": 860, - "flags": 31, + "id": 7, + "offset": 208, + "flags": 65671, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 186067024 + "hash": 482130755 }, - "m_bPlayerTimeUpdated": { - "type": "bool", - "id": 87, - "offset": 864, - "flags": 31, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 877395800 + "pointer": true, + "hash": 3623628394 }, - "m_bPlayerTimeEliminated": { - "type": "bool", - "id": 88, - "offset": 865, - "flags": 31, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1842006605 + "hash": 2102211316 }, - "m_bPlayerTimeWarning": { - "type": "bool", - "id": 89, - "offset": 866, - "flags": 31, + "m_sScript": { + "type": "std::string", + "id": 10, + "offset": 352, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 742875591 + "hash": 1846695875 }, - "m_deckFullness": { - "type": "float", - "id": 90, - "offset": 868, - "flags": 31, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 156080730 + "hash": 3389835433 }, - "m_archmasteryPoints": { - "type": "float", - "id": 91, - "offset": 872, - "flags": 31, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 261464375 + "hash": 2547159940 }, - "m_maxArchmasteryPoints": { - "type": "float", - "id": 92, - "offset": 876, - "flags": 31, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 430012637 + "hash": 1513510520 }, - "m_archmasterySchool": { - "type": "unsigned int", - "id": 93, - "offset": 880, - "flags": 31, - "container": "Static", - "dynamic": false, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 485805784 + "hash": 2587533771 }, - "m_archmasteryFlags": { - "type": "unsigned int", - "id": 94, - "offset": 884, - "flags": 31, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1571282557 + "hash": 3091503757 } } }, - "1955484398": { - "name": "class ItemSetBonusTemplate", + "1997308133": { + "name": "class std::vector >", + "bases": [], + "hash": 1997308133, + "properties": {} + }, + "276946680": { + "name": "class QuestTemplate", "bases": [ "CoreTemplate", "PropertyClass" ], - "hash": 1955484398, + "hash": 276946680, "properties": { "m_behaviors": { "type": "class BehaviorTemplate*", @@ -472949,7 +202068,7 @@ "pointer": true, "hash": 1197808594 }, - "m_objectName": { + "m_questName": { "type": "std::string", "id": 1, "offset": 96, @@ -472958,20 +202077,20 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 2154940147 + "hash": 1702112846 }, - "m_templateID": { + "m_questNameID": { "type": "unsigned int", "id": 2, "offset": 128, - "flags": 16777223, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1286746870 + "hash": 1530354349 }, - "m_displayName": { + "m_questTitle": { "type": "std::string", "id": 3, "offset": 136, @@ -472980,351 +202099,419 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 2446900370 + "hash": 1805465583 }, - "m_noStacking": { - "type": "bool", + "m_questInfo": { + "type": "std::string", "id": 4, "offset": 168, - "flags": 7, + "flags": 8388615, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1351303236 + "hash": 1701947097 }, - "m_itemSetBonusDataList": { - "type": "class ItemSetBonusData", + "m_questPrep": { + "type": "std::string", "id": 5, - "offset": 176, + "offset": 200, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1702202980 + }, + "m_questUnderway": { + "type": "std::string", + "id": 6, + "offset": 232, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2308400380 + }, + "m_questComplete": { + "type": "std::string", + "id": 7, + "offset": 264, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3484586150 + }, + "m_startGoals": { + "type": "std::string", + "id": 8, + "offset": 392, "flags": 7, "container": "List", "dynamic": true, "singleton": false, "pointer": false, - "hash": 2922880945 - } - } - }, - "1955484358": { - "name": "class ItemSetBonusTemplate*", - "bases": [ - "CoreTemplate", - "PropertyClass" - ], - "hash": 1955484358, - "properties": { - "m_behaviors": { - "type": "class BehaviorTemplate*", - "id": 0, - "offset": 72, + "hash": 2152469471 + }, + "m_goals": { + "type": "class SharedPointer", + "id": 9, + "offset": 408, "flags": 7, - "container": "Vector", + "container": "List", "dynamic": true, "singleton": false, "pointer": true, - "hash": 1197808594 + "hash": 1374041870 }, - "m_objectName": { - "type": "std::string", - "id": 1, - "offset": 96, + "m_startResults": { + "type": "class SharedPointer", + "id": 10, + "offset": 424, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 2154940147 + "pointer": true, + "hash": 2094517692 }, - "m_templateID": { - "type": "unsigned int", - "id": 2, - "offset": 128, - "flags": 16777223, + "m_endResults": { + "type": "class SharedPointer", + "id": 11, + "offset": 440, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1286746870 + "pointer": true, + "hash": 2118364133 }, - "m_displayName": { - "type": "std::string", - "id": 3, - "offset": 136, - "flags": 8388615, + "m_requirements": { + "type": "class RequirementList*", + "id": 12, + "offset": 456, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 2446900370 + "pointer": true, + "hash": 2840985510 }, - "m_noStacking": { + "m_prepRequirements": { + "type": "class RequirementList*", + "id": 13, + "offset": 464, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3016776541 + }, + "m_pruneRequirements": { + "type": "class RequirementList*", + "id": 14, + "offset": 472, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3211248912 + }, + "m_prepAlways": { "type": "bool", - "id": 4, - "offset": 168, + "id": 15, + "offset": 304, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1351303236 + "hash": 1423046331 }, - "m_itemSetBonusDataList": { - "type": "class ItemSetBonusData", - "id": 5, - "offset": 176, + "m_clientTags": { + "type": "std::string", + "id": 16, + "offset": 312, "flags": 7, "container": "List", "dynamic": true, "singleton": false, "pointer": false, - "hash": 2922880945 - } - } - }, - "38729342": { - "name": "class ActCinematicStageTemplate", - "bases": [ - "CinematicStageTemplate", - "PropertyClass" - ], - "hash": 38729342, - "properties": { - "m_name": { + "hash": 2319030025 + }, + "m_goalLogic": { + "type": "class GoalCompleteLogic*", + "id": 17, + "offset": 520, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 963824003 + }, + "m_questLevel": { + "type": "int", + "id": 18, + "offset": 296, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 298136804 + }, + "m_questRepeat": { + "type": "int", + "id": 19, + "offset": 300, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1480345805 + }, + "m_onStartQuestScript": { "type": "std::string", - "id": 0, - "offset": 72, + "id": 20, + "offset": 328, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1717359772 + "hash": 2577549709 }, - "m_duration": { - "type": "float", - "id": 1, - "offset": 104, + "m_onEndQuestScript": { + "type": "std::string", + "id": 21, + "offset": 360, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 920323453 + "hash": 2285648118 }, - "m_actions": { - "type": "class SharedPointer", - "id": 2, - "offset": 112, + "m_dialogList": { + "type": "class ActorDialogListBase*", + "id": 22, + "offset": 480, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1909154969 + }, + "m_missionDoors": { + "type": "std::string", + "id": 23, + "offset": 504, "flags": 7, "container": "List", "dynamic": true, "singleton": false, - "pointer": true, - "hash": 1380578687 + "pointer": false, + "hash": 2428103908 }, - "m_stageRelationships": { - "type": "class SharedPointer", - "id": 3, - "offset": 128, + "m_dynaMods": { + "type": "class QuestDynaModInfo*", + "id": 24, + "offset": 488, "flags": 7, "container": "List", "dynamic": true, "singleton": false, "pointer": true, - "hash": 499983354 + "hash": 3330743945 }, - "m_cameras": { - "type": "std::string", - "id": 4, - "offset": 152, - "flags": 131079, - "container": "Vector", - "dynamic": true, + "m_isHidden": { + "type": "bool", + "id": 25, + "offset": 305, + "flags": 7, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 3217341687 + "hash": 1401188667 }, - "m_altcameras": { - "type": "std::string", - "id": 5, - "offset": 176, - "flags": 131079, - "container": "Vector", - "dynamic": true, + "m_outdated": { + "type": "bool", + "id": 26, + "offset": 306, + "flags": 7, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 1882980152 + "hash": 1565198349 }, - "m_actAnim": { - "type": "std::string", - "id": 6, - "offset": 200, + "m_noQuestHelper": { + "type": "bool", + "id": 27, + "offset": 307, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2867163800 + "hash": 578010882 }, - "m_camRel": { - "type": "enum CameraCutCinematicAction::kCameraRelative", - "id": 7, - "offset": 232, - "flags": 2097159, + "m_mainline": { + "type": "bool", + "id": 28, + "offset": 552, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 919962138, - "enum_options": { - "kSigil": 1, - "kTarget": 2, - "kSource": 3, - "kActor": 4, - "__DEFAULT": "kTarget" - } + "hash": 1749856224 }, - "m_sound": { + "m_defaultDialogAnimation": { "type": "std::string", - "id": 8, - "offset": 240, - "flags": 131079, + "id": 29, + "offset": 560, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2400834320 + }, + "m_skipQHAutoSelect": { + "type": "bool", + "id": 30, + "offset": 553, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2307644996 + "hash": 2024815836 }, - "m_interpDuration": { - "type": "float", - "id": 9, - "offset": 272, + "m_questEffectInfoList": { + "type": "class SharedPointer", + "id": 31, + "offset": 536, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2494024956 + }, + "m_forceInteraction": { + "type": "bool", + "id": 32, + "offset": 554, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237711951, - "enum_options": { - "__DEFAULT": "1.0" - } + "hash": 1038376866 }, - "m_announcesSpell": { + "m_checkInventoryForCrafting": { "type": "bool", - "id": 10, - "offset": 276, + "id": 33, + "offset": 608, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 652261533 - } - } - }, - "387006880": { - "name": "class MadlibIconDefinition*", - "bases": [ - "PropertyClass" - ], - "hash": 387006880, - "properties": { - "m_madlibIconDataList": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, + "hash": 1549644020 + }, + "m_playAsYourPetNPC": { + "type": "bool", + "id": 34, + "offset": 609, "flags": 7, - "container": "List", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3692830504 - } - } - }, - "34878813": { - "name": "class HousingPaletteBehavior*", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 34878813, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, + "pointer": false, + "hash": 827482678 + }, + "m_activityType": { + "type": "enum QuestTemplate::ActivityType", + "id": 35, + "offset": 612, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 + "hash": 231656390, + "enum_options": { + "ACTIVITY_NotActivity": 0, + "ACTIVITY_Crafting": 2, + "ACTIVITY_Fishing": 3, + "ACTIVITY_Gardening": 4, + "ACTIVITY_Pet": 5, + "ACTIVITY_Spell": 1 + } } } }, - "783423260": { - "name": "class ObstacleCoursePendulumBehavior*", + "1126411004": { + "name": "class SharedPointer", "bases": [ - "ObstacleCourseObstacleBehavior", - "BehaviorInstance", + "BehaviorTemplate", "PropertyClass" ], - "hash": 783423260, + "hash": 1126411004, "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", + "m_behaviorName": { + "type": "std::string", "id": 0, - "offset": 104, - "flags": 39, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 + "hash": 3130754092 } } }, - "386133181": { - "name": "class PlayDeck*", + "713899438": { + "name": "class RealmInfoList", "bases": [ "PropertyClass" ], - "hash": 386133181, + "hash": 713899438, "properties": { - "m_deckToSave": { - "type": "class SharedPointer", + "m_infoList": { + "type": "class SharedPointer", "id": 0, "offset": 72, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1977265360 - }, - "m_graveYardToSave": { - "type": "class SharedPointer", - "id": 1, - "offset": 96, - "flags": 7, - "container": "Vector", + "flags": 31, + "container": "List", "dynamic": true, "singleton": false, "pointer": true, - "hash": 3785577598 + "hash": 1814698255 } } }, - "385438871": { - "name": "class HouseZone", + "1995872079": { + "name": "class BuddyEntry", "bases": [ "PropertyClass" ], - "hash": 385438871, + "hash": 1995872079, "properties": { - "m_displayName": { + "m_name": { "type": "std::string", "id": 0, "offset": 72, @@ -473333,10 +202520,10 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 2446900370 + "hash": 1717359772 }, - "m_zoneName": { - "type": "std::string", + "m_characterID": { + "type": "gid", "id": 1, "offset": 104, "flags": 7, @@ -473344,806 +202531,748 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 2171167736 + "hash": 210498386 + }, + "m_gameObjectID": { + "type": "gid", + "id": 2, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 23229750 + }, + "m_status": { + "type": "unsigned int", + "id": 3, + "offset": 112, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1172183633, + "enum_options": { + "PLAYERSTATUS_UNKNOWN": 0, + "PLAYERSTATUS_OFFLINE": 1, + "PLAYERSTATUS_LINKDEAD": 2, + "PLAYERSTATUS_TRANSITION": 3, + "PLAYERSTATUS_ONLINE": 4, + "PLAYERSTATUS_IGNORED": 5 + } } } }, - "1956447570": { - "name": "class InvisibilityEffectTemplate", + "1558000529": { + "name": "class SharedPointer", "bases": [ - "GameEffectTemplate", + "Window", "PropertyClass" ], - "hash": 1956447570, + "hash": 1558000529, "properties": { - "m_effectName": { + "m_sName": { "type": "std::string", "id": 0, - "offset": 72, - "flags": 7, + "offset": 80, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2029161513 + "hash": 2306437263 }, - "m_effectCategory": { - "type": "std::string", + "m_Children": { + "type": "class SharedPointer", "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 1852673222 + "pointer": true, + "hash": 2621225959 }, - "m_sortOrder": { - "type": "int", + "m_Style": { + "type": "unsigned int", "id": 2, - "offset": 148, - "flags": 7, + "offset": 152, + "flags": 1048583, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1411218206 + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "SCALE_CHILDREN": 2, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "FOCUS_LOCKED": 64, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152 + } }, - "m_duration": { - "type": "double", + "m_Flags": { + "type": "unsigned int", "id": 3, - "offset": 192, - "flags": 7, + "offset": 156, + "flags": 1048583, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2727932435 + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } }, - "m_stackingCategories": { - "type": "std::string", + "m_Window": { + "type": "class Rect", "id": 4, "offset": 160, - "flags": 7, - "container": "List", - "dynamic": true, + "flags": 135, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 1774497525 + "hash": 3105139380 }, - "m_isPersistent": { - "type": "bool", + "m_fTargetAlpha": { + "type": "float", "id": 5, - "offset": 153, - "flags": 7, + "offset": 212, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 923861920 + "hash": 1809129834 }, - "m_bIsOnPet": { - "type": "bool", + "m_fDisabledAlpha": { + "type": "float", "id": 6, - "offset": 154, - "flags": 7, + "offset": 216, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 522593303 + "hash": 1389987675 }, - "m_isPublic": { - "type": "bool", + "m_fAlpha": { + "type": "float", "id": 7, - "offset": 152, - "flags": 7, + "offset": 208, + "flags": 65671, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1728439822 + "hash": 482130755 }, - "m_visualEffectAddName": { - "type": "std::string", + "m_pWindowStyle": { + "type": "class SharedPointer", "id": 8, - "offset": 200, - "flags": 7, + "offset": 232, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 3382086694 + "pointer": true, + "hash": 3623628394 }, - "m_visualEffectRemoveName": { - "type": "std::string", + "m_sHelp": { + "type": "std::wstring", "id": 9, - "offset": 232, - "flags": 7, + "offset": 248, + "flags": 4194439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1541697323 + "hash": 2102211316 }, - "m_onAddFunctorName": { + "m_sScript": { "type": "std::string", "id": 10, - "offset": 280, - "flags": 7, + "offset": 352, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1561843107 + "hash": 1846695875 }, - "m_onRemoveFunctorName": { - "type": "std::string", + "m_Offset": { + "type": "class Point", "id": 11, - "offset": 312, - "flags": 7, + "offset": 192, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2559017864 + "hash": 3389835433 }, - "m_stackingRule": { - "type": "enum STACKING_RULE", + "m_Scale": { + "type": "class Point", "id": 12, - "offset": 144, - "flags": 2097159, + "offset": 200, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 431568889, - "enum_options": { - "STACKING_ALLOWED": 0, - "STACKING_NOSTACK": 1, - "STACKING_REPLACE": 2 - } + "hash": 2547159940 }, - "m_invisLevel": { - "type": "unsigned char", + "m_sTip": { + "type": "std::wstring", "id": 13, - "offset": 360, - "flags": 7, + "offset": 392, + "flags": 4194439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2488151665 - } - } - }, - "385418391": { - "name": "class HouseZone*", - "bases": [ - "PropertyClass" - ], - "hash": 385418391, - "properties": { - "m_displayName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, + "hash": 1513510520 + }, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2446900370 + "hash": 3091503757 }, - "m_zoneName": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 7, + "m_bButtonDown": { + "type": "bool", + "id": 16, + "offset": 584, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2171167736 - } - } - }, - "1956226406": { - "name": "class PetSnackBehaviorTemplate", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 1956226406, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, + "hash": 840041705 + }, + "m_bCursorOver": { + "type": "bool", + "id": 17, + "offset": 585, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3130754092 + "hash": 283981103 }, - "m_maxReagentsPerStack": { - "type": "int", - "id": 1, - "offset": 120, - "flags": 7, + "m_bSavedCursorOver": { + "type": "bool", + "id": 18, + "offset": 586, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1052405942 + "hash": 1803318978 } } }, - "785304891": { - "name": "class BattleCardShopOption*", + "1994916972": { + "name": "class SharedPointer", "bases": [ - "ServiceOptionBase", + "BehaviorTemplate", "PropertyClass" ], - "hash": 785304891, + "hash": 1994916972, "properties": { - "m_serviceName": { + "m_behaviorName": { "type": "std::string", "id": 0, "offset": 72, - "flags": 31, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2206028813 + "hash": 3130754092 }, - "m_iconKey": { - "type": "std::string", + "m_jewelSockets": { + "type": "class JewelSocket", "id": 1, - "offset": 168, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2457138637 - }, - "m_displayKey": { - "type": "std::string", - "id": 2, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3023276954 - }, - "m_serviceIndex": { - "type": "unsigned int", - "id": 3, - "offset": 204, + "offset": 120, "flags": 31, - "container": "Static", - "dynamic": false, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 2103126710 + "hash": 2355333159 }, - "m_forceInteract": { + "m_socketDeleted": { "type": "bool", - "id": 4, - "offset": 200, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1705789564 - } - } - }, - "785208611": { - "name": "class ContainerEffectInfo", - "bases": [ - "GameEffectInfo", - "PropertyClass" - ], - "hash": 785208611, - "properties": { - "m_effectName": { - "type": "std::string", - "id": 0, - "offset": 72, + "id": 2, + "offset": 136, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2029161513 + "hash": 685830803 } } }, - "1141140637": { - "name": "class HousingSigilBehaviorTemplate", + "1557997905": { + "name": "class SharedPointer", "bases": [ - "BehaviorTemplate", + "Window", "PropertyClass" ], - "hash": 1141140637, + "hash": 1557997905, "properties": { - "m_behaviorName": { + "m_sName": { "type": "std::string", "id": 0, - "offset": 72, - "flags": 7, + "offset": 80, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3130754092 + "hash": 2306437263 }, - "m_sigilZoneInfoList": { - "type": "class SharedPointer", + "m_Children": { + "type": "class SharedPointer", "id": 1, - "offset": 120, - "flags": 7, - "container": "List", + "offset": 112, + "flags": 65671, + "container": "Vector", "dynamic": true, "singleton": false, "pointer": true, - "hash": 3999162041 + "hash": 2621225959 }, - "m_usedDisposableDungeonTemplateID": { + "m_Style": { "type": "unsigned int", "id": 2, - "offset": 136, - "flags": 7, + "offset": 152, + "flags": 1048583, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 828840861 - } - } - }, - "784806131": { - "name": "class std::list >", - "bases": [], - "hash": 784806131, - "properties": {} - }, - "1141436269": { - "name": "class MadlibArgT*", - "bases": [ - "MadlibArg", - "PropertyClass" - ], - "hash": 1141436269, - "properties": { - "m_madlibToken": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 31, + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "SCALE_CHILDREN": 2, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "FOCUS_LOCKED": 64, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152 + } + }, + "m_Flags": { + "type": "unsigned int", + "id": 3, + "offset": 156, + "flags": 1048583, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3058682373 + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } }, - "m_madlibArgument": { - "type": "int", - "id": 1, - "offset": 112, - "flags": 31, + "m_Window": { + "type": "class Rect", + "id": 4, + "offset": 160, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 878492166 - } - } - }, - "785304851": { - "name": "class BattleCardShopOption", - "bases": [ - "ServiceOptionBase", - "PropertyClass" - ], - "hash": 785304851, - "properties": { - "m_serviceName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, + "hash": 3105139380 + }, + "m_fTargetAlpha": { + "type": "float", + "id": 5, + "offset": 212, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2206028813 + "hash": 1809129834 }, - "m_iconKey": { - "type": "std::string", - "id": 1, - "offset": 168, - "flags": 31, + "m_fDisabledAlpha": { + "type": "float", + "id": 6, + "offset": 216, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1389987675 + }, + "m_fAlpha": { + "type": "float", + "id": 7, + "offset": 208, + "flags": 65671, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2457138637 + "hash": 482130755 }, - "m_displayKey": { - "type": "std::string", - "id": 2, - "offset": 104, - "flags": 31, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 3023276954 + "pointer": true, + "hash": 3623628394 }, - "m_serviceIndex": { - "type": "unsigned int", - "id": 3, - "offset": 204, - "flags": 31, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2103126710 + "hash": 2102211316 }, - "m_forceInteract": { - "type": "bool", - "id": 4, - "offset": 200, - "flags": 31, + "m_sScript": { + "type": "std::string", + "id": 10, + "offset": 352, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1705789564 - } - } - }, - "1143763993": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1143763993, - "properties": {} - }, - "1142780880": { - "name": "class BGPolymorphSelectOption", - "bases": [ - "ServiceOptionBase", - "PropertyClass" - ], - "hash": 1142780880, - "properties": { - "m_serviceName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, + "hash": 1846695875 + }, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2206028813 + "hash": 3389835433 }, - "m_iconKey": { - "type": "std::string", - "id": 1, - "offset": 168, - "flags": 31, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2457138637 + "hash": 2547159940 }, - "m_displayKey": { - "type": "std::string", - "id": 2, - "offset": 104, - "flags": 31, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3023276954 + "hash": 1513510520 }, - "m_serviceIndex": { - "type": "unsigned int", - "id": 3, - "offset": 204, - "flags": 31, - "container": "Static", - "dynamic": false, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 2103126710 + "hash": 2587533771 }, - "m_forceInteract": { - "type": "bool", - "id": 4, - "offset": 200, - "flags": 31, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1705789564 - } - } - }, - "785676554": { - "name": "class MatchCostAdjustment", - "bases": [ - "PropertyClass" - ], - "hash": 785676554, - "properties": { - "m_matchAdjustmentType": { - "type": "enum MatchCostAdjustment::ADJUSTMENT_TYPE", - "id": 0, - "offset": 72, - "flags": 31, + "hash": 3091503757 + }, + "m_Color": { + "type": "class Color", + "id": 16, + "offset": 584, + "flags": 262279, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2305794521, - "enum_options": { - "SUBSCRIBER": 0, - "FREETOPLAY": 1, - "UNSET_MAX": 2 - } + "hash": 1753714077 } } }, - "785490191": { - "name": "class ObstacleCourseCatapultBehaviorClient*", + "714956159": { + "name": "class SharedPointer", "bases": [ - "ObstacleCourseCatapultBehavior", - "ObstacleCourseObstacleBehavior", - "BehaviorInstance", "PropertyClass" ], - "hash": 785490191, + "hash": 714956159, "properties": { - "m_behaviorTemplateNameID": { + "m_photoWorthyItems": { "type": "unsigned int", "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 223437287 + "hash": 1021725286 } } }, - "1144251228": { - "name": "class WizBGPolymorphStatisticOverrideEffect*", + "1993473511": { + "name": "class SharedPointer", "bases": [ - "StatisticEffect", - "GameEffectBase", "PropertyClass" ], - "hash": 1144251228, + "hash": 1993473511, "properties": { - "m_currentTickCount": { - "type": "double", + "m_tournamentNameID": { + "type": "unsigned int", "id": 0, - "offset": 80, - "flags": 63, + "offset": 72, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2533274692 + "hash": 1799846440 }, - "m_effectNameID": { + "m_leagueID": { "type": "unsigned int", "id": 1, - "offset": 96, - "flags": 63, + "offset": 76, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1204067144 + "hash": 692361645 }, - "m_bIsOnPet": { - "type": "bool", + "m_seasonID": { + "type": "unsigned int", "id": 2, - "offset": 73, + "offset": 80, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 522593303 + "hash": 535260643 }, - "m_originatorID": { + "m_characterID": { "type": "gid", "id": 3, - "offset": 104, - "flags": 39, + "offset": 88, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1131810019 + "hash": 210498386 }, - "m_itemSlotID": { - "type": "unsigned int", + "m_bracketID": { + "type": "gid", "id": 4, - "offset": 112, - "flags": 63, + "offset": 96, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1895747595 + "hash": 441272961 }, - "m_internalID": { - "type": "int", + "m_bracketIDList": { + "type": "class SharedPointer", "id": 5, - "offset": 92, - "flags": 63, + "offset": 152, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1643137924 + "pointer": true, + "hash": 3367716172 }, - "m_endTime": { + "m_tournamentRequestType": { "type": "unsigned int", "id": 6, - "offset": 88, + "offset": 104, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 716479635 + "hash": 874052549 }, - "m_lookupIndex": { + "m_startingIndex": { "type": "int", "id": 7, - "offset": 128, + "offset": 108, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1626623948 + "hash": 2126940894 }, - "m_baseHitpoints": { + "m_numberOfElements": { "type": "int", "id": 8, - "offset": 136, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 596105911 - } - } - }, - "786023501": { - "name": "class GuildAchievementDataList", - "bases": [ - "PropertyClass" - ], - "hash": 786023501, - "properties": { - "m_guildAchievementDataList": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1717126676 - } - } - }, - "1145215808": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1145215808, - "properties": { - "m_playerOID": { - "type": "gid", - "id": 0, - "offset": 88, + "offset": 112, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 578546081 + "hash": 790678773 }, - "m_currentTerrain": { - "type": "enum PetDerbyTrackTerrain", - "id": 1, - "offset": 100, - "flags": 2097183, + "m_friendListBuffer": { + "type": "std::string", + "id": 9, + "offset": 120, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3426350446, - "enum_options": { - "PDTT_Cobblestone": 0, - "PDTT_Water": 1, - "PDTT_Grass": 2, - "PDTT_Clay": 3, - "PDTT_Dirt": 4, - "PDTT_Mud": 5 - } + "hash": 2271699753 }, - "m_currentLane": { - "type": "int", - "id": 2, - "offset": 104, + "m_qualifiedOnly": { + "type": "bool", + "id": 10, + "offset": 168, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1255984189 + "hash": 789459241 }, - "m_currentLap": { + "m_qualifiedLevel": { "type": "unsigned int", - "id": 3, - "offset": 120, + "id": 11, + "offset": 172, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2006580429 + "hash": 405173305 }, - "m_indexIntoArray": { - "type": "unsigned char", - "id": 4, - "offset": 96, + "m_qualifiedRank": { + "type": "int", + "id": 12, + "offset": 176, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1554314337 + "hash": 787071770 } } }, - "1144712311": { - "name": "class RecipeWindow::RecipeItem*", + "277066535": { + "name": "class SharedPointer", "bases": [ - "ControlCheckBox", - "ControlButton", "Window", "PropertyClass" ], - "hash": 1144712311, + "hash": 277066535, "properties": { "m_sName": { "type": "std::string", @@ -474179,8 +203308,11 @@ "hash": 983582334, "enum_options": { "HAS_BACK": 1, + "SCALE_CHILDREN": 2, "CAN_MOVE": 4, "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "FOCUS_LOCKED": 64, "CAN_FOCUS": 128, "CAN_DOCK": 32, "DO_NOT_CAPTURE_MOUSE": 256, @@ -474192,12 +203324,7 @@ "USE_ALPHA_BOUNDS": 8192, "AUTO_GROW": 16384, "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152, - "EFFECT_SCALE": 67108864, - "LOCK_ICON_SIZE": 33554432, - "LEFT_TEXT": 536870912, - "NO_FIT_TEXT": 1073741824, - "CHECKBOX_TEXTOVERIMAGE": 16777216 + "AUTO_RESIZE": 49152 } }, "m_Flags": { @@ -474357,315 +203484,476 @@ "singleton": false, "pointer": false, "hash": 3091503757 + } + } + }, + "1127752174": { + "name": "class PetDerbyObstacleBehaviorTemplate", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 1127752174, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 }, - "m_bToggle": { - "type": "bool", - "id": 16, - "offset": 608, - "flags": 135, + "m_actionType": { + "type": "enum PetDerbyActions", + "id": 1, + "offset": 120, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2071810903 + "hash": 2398162476, + "enum_options": { + "PDA_None": 0, + "PDA_Duck": 2, + "PDA_Jump": 1 + } }, - "m_bButtonDown": { + "m_canDestroy": { "type": "bool", - "id": 17, - "offset": 609, - "flags": 135, + "id": 2, + "offset": 124, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 840041705 + "hash": 1271539151 }, - "m_sLabel": { - "type": "std::wstring", - "id": 18, - "offset": 616, - "flags": 4194439, + "m_decisionRadius": { + "type": "float", + "id": 3, + "offset": 128, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2207009163 + "hash": 104770413 }, - "m_labelOffset": { - "type": "class Rect", - "id": 19, - "offset": 832, - "flags": 135, + "m_moraleIncrease": { + "type": "int", + "id": 4, + "offset": 132, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1990646723 + "hash": 202238852 }, - "m_pButton": { - "type": "class SharedPointer", - "id": 20, - "offset": 656, - "flags": 135, + "m_spinEffect": { + "type": "std::string", + "id": 5, + "offset": 184, + "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1543855875 + "pointer": false, + "hash": 1896457826 }, - "m_HotKey": { - "type": "unsigned int", - "id": 21, - "offset": 672, - "flags": 135, + "m_impactSound": { + "type": "std::string", + "id": 6, + "offset": 216, + "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1631553409 + "hash": 2087348962 }, - "m_Color": { - "type": "class Color", - "id": 22, - "offset": 676, - "flags": 262279, + "m_addToWorldSound": { + "type": "std::string", + "id": 7, + "offset": 248, + "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1753714077 + "hash": 3324219384 }, - "m_bCursorOver": { + "m_derbyEffectList": { + "type": "class SharedPointer", + "id": 8, + "offset": 136, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1276867926 + }, + "m_onActionSuccessEffectList": { + "type": "class SharedPointer", + "id": 9, + "offset": 152, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1046745620 + }, + "m_onActionFailEffectList": { + "type": "class SharedPointer", + "id": 10, + "offset": 168, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 901707255 + } + } + }, + "1557874588": { + "name": "class ReqHasShadowMagic", + "bases": [ + "Requirement", + "PropertyClass" + ], + "hash": 1557874588, + "properties": { + "m_applyNOT": { "type": "bool", - "id": 23, - "offset": 689, - "flags": 135, + "id": 0, + "offset": 72, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 283981103 + "hash": 1746328074, + "enum_options": { + "__DEFAULT": 0 + } }, - "m_bAbortWhenCursorNotOver": { - "type": "bool", - "id": 24, - "offset": 706, - "flags": 135, + "m_operator": { + "type": "enum Requirement::Operator", + "id": 1, + "offset": 76, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 325405258 + "hash": 2672792317, + "enum_options": { + "ROP_AND": 0, + "ROP_OR": 1, + "__DEFAULT": "ROP_AND" + } + } + } + }, + "1993386671": { + "name": "class PulseEffect", + "bases": [ + "GameEffectBase", + "PropertyClass" + ], + "hash": 1993386671, + "properties": { + "m_currentTickCount": { + "type": "double", + "id": 0, + "offset": 80, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2533274692 }, - "m_bHotKeyDown": { + "m_effectNameID": { + "type": "unsigned int", + "id": 1, + "offset": 96, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1204067144 + }, + "m_bIsOnPet": { "type": "bool", - "id": 25, - "offset": 680, - "flags": 135, + "id": 2, + "offset": 73, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 616989185 + "hash": 522593303 }, - "m_fTime": { - "type": "float", - "id": 26, - "offset": 684, - "flags": 135, + "m_originatorID": { + "type": "gid", + "id": 3, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 883746156 + "hash": 1131810019 }, - "m_bGreyed": { - "type": "bool", - "id": 27, - "offset": 688, - "flags": 135, + "m_itemSlotID": { + "type": "unsigned int", + "id": 4, + "offset": 112, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1566556053 + "hash": 1895747595 }, - "m_fMaxScale": { - "type": "float", - "id": 28, - "offset": 692, - "flags": 135, + "m_internalID": { + "type": "int", + "id": 5, + "offset": 92, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2070186635 + "hash": 1643137924 }, - "m_fScaleSpeed": { - "type": "float", - "id": 29, - "offset": 696, - "flags": 135, + "m_endTime": { + "type": "unsigned int", + "id": 6, + "offset": 88, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1457135702 + "hash": 716479635 }, - "m_bUseDropShadow": { - "type": "bool", - "id": 30, - "offset": 704, - "flags": 135, + "m_pulseCount": { + "type": "double", + "id": 7, + "offset": 128, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 93063037 + "hash": 3507157375 + } + } + }, + "1127420642": { + "name": "class SharedPointer", + "bases": [ + "StatisticEffect", + "GameEffectBase", + "PropertyClass" + ], + "hash": 1127420642, + "properties": { + "m_currentTickCount": { + "type": "double", + "id": 0, + "offset": 80, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2533274692 }, - "m_bUseOutline": { - "type": "bool", - "id": 31, - "offset": 705, - "flags": 135, + "m_effectNameID": { + "type": "unsigned int", + "id": 1, + "offset": 96, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 744292994 + "hash": 1204067144 }, - "m_pGreyedState": { - "type": "class SharedPointer", - "id": 32, - "offset": 768, - "flags": 135, + "m_bIsOnPet": { + "type": "bool", + "id": 2, + "offset": 73, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2703352263 + "pointer": false, + "hash": 522593303 }, - "m_pNormalState": { - "type": "class SharedPointer", - "id": 33, - "offset": 752, - "flags": 135, + "m_originatorID": { + "type": "gid", + "id": 3, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1887909808 + "pointer": false, + "hash": 1131810019 }, - "m_pHighlightedState": { - "type": "class SharedPointer", - "id": 34, - "offset": 784, - "flags": 135, + "m_itemSlotID": { + "type": "unsigned int", + "id": 4, + "offset": 112, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2200177608 + "pointer": false, + "hash": 1895747595 }, - "m_pSelectedState": { - "type": "class SharedPointer", - "id": 35, - "offset": 800, - "flags": 135, + "m_internalID": { + "type": "int", + "id": 5, + "offset": 92, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2266776432 + "pointer": false, + "hash": 1643137924 }, - "m_pDepressedState": { - "type": "class SharedPointer", - "id": 36, - "offset": 816, - "flags": 135, + "m_endTime": { + "type": "unsigned int", + "id": 6, + "offset": 88, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1878185798 + "pointer": false, + "hash": 716479635 }, - "m_nGroupID": { + "m_lookupIndex": { "type": "int", - "id": 37, - "offset": 880, - "flags": 135, + "id": 7, + "offset": 128, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 403966850 + "hash": 1626623948 + } + } + }, + "716468600": { + "name": "class SharedPointer", + "bases": [ + "GameEffectBase", + "PropertyClass" + ], + "hash": 716468600, + "properties": { + "m_currentTickCount": { + "type": "double", + "id": 0, + "offset": 80, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2533274692 }, - "m_bChecked": { + "m_effectNameID": { + "type": "unsigned int", + "id": 1, + "offset": 96, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1204067144 + }, + "m_bIsOnPet": { "type": "bool", - "id": 38, - "offset": 884, - "flags": 135, + "id": 2, + "offset": 73, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 958955100 + "hash": 522593303 }, - "m_pCheckedState": { - "type": "class SharedPointer", - "id": 39, - "offset": 888, - "flags": 135, + "m_originatorID": { + "type": "gid", + "id": 3, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1210539694 + "pointer": false, + "hash": 1131810019 }, - "m_pCheckedGreyedState": { - "type": "class SharedPointer", - "id": 40, - "offset": 904, - "flags": 135, + "m_itemSlotID": { + "type": "unsigned int", + "id": 4, + "offset": 112, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2702030126 + "pointer": false, + "hash": 1895747595 }, - "m_pCheckedHighlightedState": { - "type": "class SharedPointer", - "id": 41, - "offset": 920, - "flags": 135, + "m_internalID": { + "type": "int", + "id": 5, + "offset": 92, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1320097679 + "pointer": false, + "hash": 1643137924 }, - "m_pCheckedDepressedState": { - "type": "class SharedPointer", - "id": 42, - "offset": 936, - "flags": 135, + "m_endTime": { + "type": "unsigned int", + "id": 6, + "offset": 88, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1609188685 + "pointer": false, + "hash": 716479635 } } }, - "788111631": { - "name": "class ObstacleCourseCatapultBehaviorClient", + "278680995": { + "name": "class SharedPointer", "bases": [ - "ObstacleCourseCatapultBehavior", - "ObstacleCourseObstacleBehavior", "BehaviorInstance", "PropertyClass" ], - "hash": 788111631, + "hash": 278680995, "properties": { "m_behaviorTemplateNameID": { "type": "unsigned int", @@ -474680,460 +203968,544 @@ } } }, - "1144520521": { - "name": "class SharedPointer", + "715937935": { + "name": "class BadgeInfoList*", "bases": [ - "WindowAnimation", "PropertyClass" ], - "hash": 1144520521, + "hash": 715937935, "properties": { - "m_bUseDeepCopy": { - "type": "bool", + "m_badges": { + "type": "class SharedPointer", "id": 0, "offset": 72, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 433380635 - }, - "m_targetLocation": { - "type": "class Vector3D", - "id": 1, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, + "flags": 31, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 2653859938 + "pointer": true, + "hash": 1636336781 } } }, - "787200567": { - "name": "class SharedPointer", + "1993611708": { + "name": "class SharedPointer", "bases": [ - "SoundInfo", - "ClientObjectInfo", - "CoreObjectInfo", + "WindowStyle", "PropertyClass" ], - "hash": 787200567, + "hash": 1993611708, "properties": { - "m_templateID.m_full": { - "type": "unsigned __int64", + "m_pBackMaterial": { + "type": "class SharedPointer", "id": 0, "offset": 72, - "flags": 33554439, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 633907631 + "pointer": true, + "hash": 1628562023 }, - "m_nObjectID": { - "type": "unsigned int", + "m_pFont": { + "type": "class SharedPointer", "id": 1, - "offset": 80, - "flags": 7, + "offset": 88, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 748496927 + "pointer": true, + "hash": 1067686307 }, - "m_location": { - "type": "class Vector3D", + "m_pLargeFont": { + "type": "class SharedPointer", "id": 2, - "offset": 84, - "flags": 7, + "offset": 104, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 2239683611 + "pointer": true, + "hash": 1523900782 }, - "m_orientation": { - "type": "class Vector3D", + "m_pSmallFont": { + "type": "class SharedPointer", "id": 3, - "offset": 96, - "flags": 7, + "offset": 120, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 2344058766 + "pointer": true, + "hash": 2363252956 }, - "m_fScale": { - "type": "float", + "m_Color": { + "type": "class Color", "id": 4, - "offset": 108, - "flags": 7, + "offset": 136, + "flags": 262279, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 503137701 + "hash": 1753714077 }, - "m_zoneTag": { - "type": "std::string", + "m_HighColor": { + "type": "class Color", "id": 5, - "offset": 152, - "flags": 7, + "offset": 140, + "flags": 262279, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3405382643 + "hash": 2310527421 }, - "m_startState": { - "type": "std::string", + "m_SelectColor": { + "type": "class Color", "id": 6, - "offset": 184, - "flags": 7, + "offset": 144, + "flags": 262279, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2166880458 + "hash": 2792529213 }, - "m_overrideName": { - "type": "std::string", + "m_BorderColor": { + "type": "class Color", "id": 7, - "offset": 120, - "flags": 8388615, + "offset": 148, + "flags": 262279, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1990707228 + "hash": 1470576795 }, - "m_globalDynamic": { - "type": "bool", + "m_BackColor": { + "type": "class Color", "id": 8, - "offset": 116, - "flags": 7, + "offset": 152, + "flags": 262279, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1951691017 + "hash": 1070928782 }, - "m_bUndetectable": { - "type": "bool", + "m_ScrollBarColor": { + "type": "class Color", "id": 9, - "offset": 216, - "flags": 7, + "offset": 156, + "flags": 262279, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1907454341 + "hash": 1180747361 }, - "m_spawnRequirements": { - "type": "class SharedPointer", + "m_ScrollTabColor": { + "type": "class Color", "id": 10, - "offset": 224, - "flags": 7, + "offset": 160, + "flags": 262279, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2309120870 + "pointer": false, + "hash": 1034892323 }, - "m_loadingType": { - "type": "enum CoreObjectInfo::LoadingType", + "m_nBorderSize": { + "type": "int", "id": 11, - "offset": 112, - "flags": 2097159, + "offset": 164, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3522422550, - "enum_options": { - "STATIC_CLIENT_SERVER": 0, - "STATIC_CLIENT": 1, - "STATIC_SERVER": 2, - "DYNAMIC_SERVER": 3 - } + "hash": 2016376897 }, - "m_radius": { - "type": "float", + "m_nScrollSize": { + "type": "int", "id": 12, - "offset": 256, - "flags": 7, + "offset": 168, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 989410271 + "hash": 632681746 }, - "m_exclusive": { - "type": "bool", + "m_sHoverSound": { + "type": "std::string", "id": 13, - "offset": 260, - "flags": 7, + "offset": 176, + "flags": 131207, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 824383403 + "hash": 2662773595 }, - "m_startActive": { - "type": "bool", + "m_sSelectSound": { + "type": "std::string", "id": 14, - "offset": 261, - "flags": 7, + "offset": 208, + "flags": 131207, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2031339229 + "hash": 2596786807 }, - "m_category": { - "type": "enum AudioCategory", + "m_sHighlightSound": { + "type": "std::string", "id": 15, - "offset": 264, - "flags": 2097159, + "offset": 240, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2951251982, + "hash": 3020805615 + } + } + }, + "278191150": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 278191150, + "properties": { + "m_nodeList": { + "type": "class NodeObject*", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2187152017 + } + } + }, + "1558187601": { + "name": "class RequirementList*", + "bases": [ + "Requirement", + "PropertyClass" + ], + "hash": 1558187601, + "properties": { + "m_applyNOT": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1746328074, "enum_options": { - "AudioCategory_Irrelevent": 0, - "AudioCategory_Accoustic": 1, - "AudioCategory_Noise": 2, - "AudioCategory_Music": 3 + "__DEFAULT": 0 } }, - "m_override": { - "type": "int", - "id": 16, - "offset": 268, - "flags": 1048583, + "m_operator": { + "type": "enum Requirement::Operator", + "id": 1, + "offset": 76, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 136872410, + "hash": 2672792317, "enum_options": { - "OVR_RADIUS": 1, - "OVR_CATEGORY": 2, - "OVR_EXCLUSIVE": 4, - "OVR_SIGNATURE": 64, - "OVR_VOLUME": 8, - "OVR_LOOPCOUNT": 16, - "OVR_ACTIVE": 32, - "OVR_PLAYPROG": 128, - "OVR_PRIORITY": 256, - "OVR_PROGTIME": 512, - "OVR_FILTERSET": 1024 + "ROP_AND": 0, + "ROP_OR": 1, + "__DEFAULT": "ROP_AND" } }, - "m_enableReqs": { - "type": "class SharedPointer", - "id": 17, - "offset": 272, - "flags": 263, + "m_requirements": { + "type": "class Requirement*", + "id": 2, + "offset": 80, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1347801628 + } + } + }, + "715937930": { + "name": "class BadgeInfoList", + "bases": [ + "PropertyClass" + ], + "hash": 715937930, + "properties": { + "m_badges": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1636336781 + } + } + }, + "1993563446": { + "name": "class PetObstacleCourseGameInfo*", + "bases": [ + "PetGameInfo", + "PropertyClass" + ], + "hash": 1993563446, + "properties": { + "m_isWebGame": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3158020443 + "pointer": false, + "hash": 944547943 }, - "m_volume": { - "type": "float", - "id": 18, - "offset": 288, + "m_name": { + "type": "std::string", + "id": 1, + "offset": 160, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1162855023 + "hash": 1717359772 }, - "m_loopCount": { - "type": "int", - "id": 19, - "offset": 292, + "m_energyCosts": { + "type": "class SharedPointer", + "id": 2, + "offset": 192, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 3378376555 + }, + "m_trackChoices": { + "type": "class SharedPointer", + "id": 3, + "offset": 208, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1548152913 + }, + "m_gameIcon": { + "type": "std::string", + "id": 4, + "offset": 80, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 865634717 + "hash": 3229574910 }, - "m_trackFilenameList": { + "m_trackIcons": { "type": "std::string", - "id": 20, - "offset": 312, - "flags": 131079, + "id": 5, + "offset": 112, + "flags": 7, "container": "Vector", "dynamic": true, "singleton": false, "pointer": false, - "hash": 2531081709 + "hash": 2211683916 }, - "m_playList": { - "type": "class PlayListEntry*", - "id": 21, - "offset": 336, + "m_trackToolTips": { + "type": "std::string", + "id": 6, + "offset": 136, "flags": 7, "container": "Vector", "dynamic": true, "singleton": false, - "pointer": true, - "hash": 3907873161 + "pointer": false, + "hash": 1898819214 }, - "m_priority": { + "m_petWidth": { "type": "int", - "id": 22, - "offset": 296, + "id": 7, + "offset": 232, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1235205852 + "hash": 2027689763 }, - "m_progression": { - "type": "enum PlayList::Progression", - "id": 23, - "offset": 300, - "flags": 2097159, + "m_petHeight": { + "type": "int", + "id": 8, + "offset": 236, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3279400238, - "enum_options": { - "Sequence": 0, - "Random": 1, - "SequenceOnceOnly": 2, - "RandomNoRepeat": 3 - } + "hash": 1894813180 }, - "m_progressMin": { - "type": "float", - "id": 24, - "offset": 304, + "m_petDepth": { + "type": "int", + "id": 9, + "offset": 240, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1497550192 + "hash": 2005026584 }, - "m_progressMax": { + "m_gravity": { "type": "float", - "id": 25, - "offset": 308, + "id": 10, + "offset": 244, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1497549938 + "hash": 1184936541 }, - "m_audioFilterSet": { - "type": "unsigned int", - "id": 26, - "offset": 360, - "flags": 33554439, + "m_fallingPenalty": { + "type": "int", + "id": 11, + "offset": 248, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 831339825 + "hash": 1717924532 }, - "m_clientTag": { - "type": "std::string", - "id": 27, - "offset": 368, + "m_trackTimes": { + "type": "int", + "id": 12, + "offset": 256, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 727242577 + }, + "m_collectionInterval": { + "type": "double", + "id": 13, + "offset": 280, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3409856790 + "hash": 3052813470 + }, + "m_tolerance": { + "type": "double", + "id": 14, + "offset": 288, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3410860138 } } }, - "787002237": { - "name": "class SharedPointer", + "1128158788": { + "name": "class TemplateLocation*", "bases": [ "PropertyClass" ], - "hash": 787002237, + "hash": 1128158788, "properties": { - "m_triggerAt": { + "m_filename": { "type": "std::string", "id": 0, "offset": 72, - "flags": 31, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2502995716 + "hash": 3117322428 }, - "m_onTimeLeft": { - "type": "class SharedPointer", + "m_id": { + "type": "unsigned int", "id": 1, "offset": 104, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1587597651 + "pointer": false, + "hash": 2301988666 } } }, - "1144799386": { - "name": "class MadlibBlock*", + "1558168828": { + "name": "class SharedPointer", "bases": [ + "MoveController::MoveCommand", "PropertyClass" ], - "hash": 1144799386, + "hash": 1558168828, "properties": { - "m_madlibs": { - "type": "class SharedPointer", + "m_fPitch": { + "type": "float", "id": 0, - "offset": 72, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1912290195 - }, - "m_blockToken": { - "type": "std::string", - "id": 1, - "offset": 96, + "offset": 88, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1821505575 + "hash": 499815957 } } }, - "787357606": { - "name": "class SharedPointer", + "278258281": { + "name": "class std::list >", + "bases": [], + "hash": 278258281, + "properties": {} + }, + "1128060484": { + "name": "class TemplateLocation", "bases": [ - "BehaviorTemplate", "PropertyClass" ], - "hash": 787357606, + "hash": 1128060484, "properties": { - "m_behaviorName": { + "m_filename": { "type": "std::string", "id": 0, "offset": 72, @@ -475142,61 +204514,60 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 3130754092 + "hash": 3117322428 }, - "m_maximumQuantity": { - "type": "int", + "m_id": { + "type": "unsigned int", "id": 1, - "offset": 120, + "offset": 104, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1520461975 + "hash": 2301988666 } } }, - "1146327826": { - "name": "class AddTeamToMatchUpdate*", + "1993573069": { + "name": "class HousingObjectState", "bases": [ - "TournamentUpdate", "PropertyClass" ], - "hash": 1146327826, + "hash": 1993573069, "properties": { - "m_teamID": { - "type": "gid", + "m_id": { + "type": "unsigned int", "id": 0, "offset": 72, - "flags": 31, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 982102220 + "hash": 2301988666 }, - "m_matchID": { - "type": "gid", + "m_stateID": { + "type": "unsigned int", "id": 1, - "offset": 80, - "flags": 31, + "offset": 76, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1757621298 + "hash": 1849561019 } } }, - "895927837": { - "name": "class RaidGateBehavior", + "1127898476": { + "name": "class SharedPointer", "bases": [ - "RaidGateBehaviorBase", + "PetSnackBehavior", "BehaviorInstance", "PropertyClass" ], - "hash": 895927837, + "hash": 1127898476, "properties": { "m_behaviorTemplateNameID": { "type": "unsigned int", @@ -475209,620 +204580,255 @@ "pointer": false, "hash": 223437287 }, - "m_raidKeyTemplateID": { - "type": "unsigned int", + "m_snackBag": { + "type": "class ObjectBag", "id": 1, "offset": 112, - "flags": 31, + "flags": 27, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 884418367 + "hash": 2027393587 } } }, - "1145907444": { - "name": "class ItemBundleTemplate*", + "716714533": { + "name": "class CoreObjectInfo", "bases": [ - "WizItemTemplate", - "ItemTemplate", - "GameObjectTemplate", - "CoreTemplate", "PropertyClass" ], - "hash": 1145907444, + "hash": 716714533, "properties": { - "m_behaviors": { - "type": "class BehaviorTemplate*", + "m_templateID.m_full": { + "type": "unsigned __int64", "id": 0, "offset": 72, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1197808594 - }, - "m_objectName": { - "type": "std::string", - "id": 1, - "offset": 96, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2154940147 - }, - "m_templateID": { - "type": "unsigned int", - "id": 2, - "offset": 128, - "flags": 16777223, + "flags": 33554439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1286746870 + "hash": 633907631 }, - "m_visualID": { + "m_nObjectID": { "type": "unsigned int", - "id": 3, - "offset": 132, + "id": 1, + "offset": 80, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1118778894 - }, - "m_adjectiveList": { - "type": "std::string", - "id": 4, - "offset": 248, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 3195213318 + "hash": 748496927 }, - "m_exemptFromAOI": { - "type": "bool", - "id": 5, - "offset": 240, + "m_location": { + "type": "class Vector3D", + "id": 2, + "offset": 84, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1457879059 - }, - "m_displayName": { - "type": "std::string", - "id": 6, - "offset": 168, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2446900370 - }, - "m_description": { - "type": "std::string", - "id": 7, - "offset": 136, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1649374815 - }, - "m_nObjectType": { - "type": "enum ObjectType", - "id": 8, - "offset": 200, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2118905880, - "enum_options": { - "OT_UNDEFINED": 0, - "OT_PLAYER": 1, - "OT_NPC": 2, - "OT_PROP": 3, - "OT_OBJECT": 4, - "OT_HOUSE": 5, - "OT_KEY": 6, - "OT_OLD_KEY": 7, - "OT_DEED": 8, - "OT_MAIL": 9, - "OT_RECIPE": 17, - "OT_EQUIP_HEAD": 10, - "OT_EQUIP_CHEST": 11, - "OT_EQUIP_LEGS": 12, - "OT_EQUIP_HANDS": 13, - "OT_EQUIP_FINGER": 14, - "OT_EQUIP_FEET": 15, - "OT_EQUIP_EAR": 16, - "OT_BUILDING_BLOCK": 18, - "OT_BUILDING_BLOCK_SOLID": 19, - "OT_GOLF": 20, - "OT_DOOR": 21, - "OT_PET": 22, - "OT_FABRIC": 23, - "OT_WINDOW": 24, - "OT_ROOF": 25, - "OT_HORSE": 26, - "OT_STRUCTURE": 27, - "OT_HOUSING_TEXTURE": 28, - "OT_PLANT": 29 - } - }, - "m_sIcon": { - "type": "std::string", - "id": 9, - "offset": 208, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306259831 - }, - "m_equipRequirements": { - "type": "class RequirementList*", - "id": 10, - "offset": 280, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2762617226 - }, - "m_purchaseRequirements": { - "type": "class RequirementList*", - "id": 11, - "offset": 288, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3174641793 - }, - "m_equipEffects": { - "type": "class GameEffectInfo*", - "id": 12, - "offset": 296, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 836628351 + "hash": 2239683611 }, - "m_baseCost": { - "type": "float", - "id": 13, - "offset": 312, + "m_orientation": { + "type": "class Vector3D", + "id": 3, + "offset": 96, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1565352651 + "hash": 2344058766 }, - "m_creditsCost": { + "m_fScale": { "type": "float", - "id": 14, - "offset": 320, + "id": 4, + "offset": 108, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 805514974 - }, - "m_avatarInfo": { - "type": "class AvatarItemInfoBase*", - "id": 15, - "offset": 328, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2627321299 + "hash": 503137701 }, - "m_avatarFlags": { + "m_zoneTag": { "type": "std::string", - "id": 16, - "offset": 336, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2347762759 - }, - "m_itemLimit": { - "type": "int", - "id": 17, - "offset": 316, + "id": 5, + "offset": 152, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1799746856 + "hash": 3405382643 }, - "m_holidayFlag": { + "m_startState": { "type": "std::string", - "id": 18, - "offset": 352, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2994795359 - }, - "m_itemSetBonusTemplateID": { - "type": "unsigned int", - "id": 19, - "offset": 384, - "flags": 33554439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1316835672 - }, - "m_numPrimaryColors": { - "type": "int", - "id": 20, - "offset": 428, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 981103872 - }, - "m_numSecondaryColors": { - "type": "int", - "id": 21, - "offset": 432, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1310416868 - }, - "m_numPatterns": { - "type": "int", - "id": 22, - "offset": 436, + "id": 6, + "offset": 184, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 953162171 + "hash": 2166880458 }, - "m_school": { + "m_overrideName": { "type": "std::string", - "id": 23, - "offset": 392, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2438566051 - }, - "m_arenaPointCost": { - "type": "int", - "id": 24, - "offset": 440, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1819621796 - }, - "m_pvpCurrencyCost": { - "type": "int", - "id": 25, - "offset": 444, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 645595444 - }, - "m_pvpTourneyCurrencyCost": { - "type": "int", - "id": 26, - "offset": 448, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 517874954 - }, - "m_rank": { - "type": "int", - "id": 27, - "offset": 424, - "flags": 7, + "id": 7, + "offset": 120, + "flags": 8388615, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 219803942 + "hash": 1990707228 }, - "m_boyIconIndex": { - "type": "int", - "id": 28, - "offset": 452, + "m_globalDynamic": { + "type": "bool", + "id": 8, + "offset": 116, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 802140453 + "hash": 1951691017 }, - "m_girlIconIndex": { - "type": "int", - "id": 29, - "offset": 456, + "m_bUndetectable": { + "type": "bool", + "id": 9, + "offset": 216, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 832706793 + "hash": 1907454341 }, - "m_leashOffsetOverride": { - "type": "class SharedPointer", - "id": 30, - "offset": 464, + "m_spawnRequirements": { + "type": "class SharedPointer", + "id": 10, + "offset": 224, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": true, - "hash": 1692586788 - }, - "m_rarity": { - "type": "enum RarityType", - "id": 31, - "offset": 460, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2253792108, - "enum_options": { - "RT_COMMON": 0, - "RT_UNCOMMON": 1, - "RT_RARE": 2, - "RT_ULTRARARE": 3, - "RT_EPIC": 4 - } - }, - "m_bundleItems": { - "type": "gid", - "id": 32, - "offset": 480, - "flags": 33554439, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 182029460 - }, - "m_bundleFreeItems": { - "type": "gid", - "id": 33, - "offset": 496, - "flags": 33554439, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 263220278 - }, - "m_bundleItemsToGrant": { - "type": "gid", - "id": 34, - "offset": 544, - "flags": 33554439, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1280974675 - }, - "m_featuredRewards": { - "type": "gid", - "id": 35, - "offset": 512, - "flags": 33554439, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1360288832 - }, - "m_acquireCondition": { - "type": "enum ItemBundleTemplate::AcquireConditionType", - "id": 36, - "offset": 528, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2176833998, - "enum_options": { - "kReceiveAll": 0, - "kChooseOne": 1 - } + "hash": 2309120870 }, - "m_bundleContentsType": { - "type": "enum ItemBundleTemplate::BundleContentsType", - "id": 37, - "offset": 532, + "m_loadingType": { + "type": "enum CoreObjectInfo::LoadingType", + "id": 11, + "offset": 112, "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2541051988, + "hash": 3522422550, "enum_options": { - "kHatRobeShoes": 0, - "kShowFirstItemInPortrait": 1, - "kHatRobeShoesWeaponMount": 2, - "kShowPortraitsConsecutively": 3 + "STATIC_CLIENT_SERVER": 0, + "STATIC_CLIENT": 1, + "STATIC_SERVER": 2, + "DYNAMIC_SERVER": 3 } - }, - "m_bundleSavings": { - "type": "int", - "id": 38, - "offset": 536, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2036928271 } } }, - "1145235256": { - "name": "class SpringboardNodeDescriptor*", + "278917123": { + "name": "class SharedPointer", "bases": [ - "NodeDescriptor", + "BehaviorInstance", "PropertyClass" ], - "hash": 1145235256, + "hash": 278917123, "properties": { - "m_kAnimationState": { - "type": "enum SpringboardNodeDescriptor::AnimationState", + "m_behaviorTemplateNameID": { + "type": "unsigned int", "id": 0, - "offset": 72, - "flags": 2097159, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1775415814, - "enum_options": { - "Down": 0, - "Shake": 1, - "PopUp": 2, - "Up": 3, - "Reset": 4 - } - } - } - }, - "804091088": { - "name": "class CastleGamesUpdate*", - "bases": [ - "PropertyClass" - ], - "hash": 804091088, - "properties": { - "m_entryList": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 619674006 + "hash": 223437287 }, - "m_numberOfGames": { - "type": "int", + "m_ownerGid": { + "type": "gid", "id": 1, - "offset": 88, - "flags": 7, + "offset": 128, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1220956901 - } - } - }, - "795152782": { - "name": "class CombatResolver*", - "bases": [ - "PropertyClass" - ], - "hash": 795152782, - "properties": { - "m_bGlobalEffect": { - "type": "bool", - "id": 0, - "offset": 112, + "hash": 1765088663 + }, + "m_radius": { + "type": "float", + "id": 2, + "offset": 136, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1403478355 + "hash": 989410271 }, - "m_globalEffect": { - "type": "class SharedPointer", - "id": 1, - "offset": 120, + "m_angle": { + "type": "float", + "id": 3, + "offset": 140, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 878748702 + }, + "m_leashType": { + "type": "enum LeashType", + "id": 4, + "offset": 144, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2170708051, + "enum_options": { + "LLT_Rigid": 0, + "LLT_Elastic": 1 + } + }, + "m_alwaysDisplay": { + "type": "bool", + "id": 5, + "offset": 161, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 967055913 - }, - "m_battlefieldEffects": { - "type": "class SharedPointer", - "id": 2, - "offset": 136, - "flags": 31, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1245973515 + "pointer": false, + "hash": 2071781402 } } }, - "792030105": { - "name": "class ClientFlareBacklashEffectCinematicAction*", + "1562533364": { + "name": "class ClientRemoveParticleActorCinematicAction*", "bases": [ - "FlareBacklashEffectCinematicAction", + "RemoveParticleActorCinematicAction", "ActorCinematicAction", "CinematicAction", "PropertyClass" ], - "hash": 792030105, + "hash": 1562533364, "properties": { "m_timeOffset": { "type": "float", @@ -475845,135 +204851,295 @@ "singleton": false, "pointer": false, "hash": 2285866132 + }, + "m_effectName": { + "type": "std::string", + "id": 2, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2029161513 + }, + "m_nodeName": { + "type": "std::string", + "id": 3, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3607089954 } } }, - "1146327866": { - "name": "class AddTeamToMatchUpdate", + "1994162749": { + "name": "class SharedPointer", "bases": [ - "TournamentUpdate", + "MoveController::MoveCommand", "PropertyClass" ], - "hash": 1146327866, + "hash": 1994162749, "properties": { - "m_teamID": { - "type": "gid", + "m_Orientation": { + "type": "class Euler", "id": 0, - "offset": 72, + "offset": 88, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 982102220 - }, - "m_matchID": { - "type": "gid", - "id": 1, - "offset": 80, - "flags": 31, + "hash": 3248981887 + } + } + }, + "1559715922": { + "name": "class ClientObjectRemapBehavior*", + "bases": [ + "ObjectRemapBehavior", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1559715922, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1757621298 + "hash": 223437287 } } }, - "790058144": { - "name": "class AnimationSetManager*", + "279106270": { + "name": "class SharedPointer", "bases": [ "PropertyClass" ], - "hash": 790058144, + "hash": 279106270, "properties": { - "m_sets": { - "type": "class AnimationSet*", + "m_pathList": { + "type": "class PathObjectTemplate*", "id": 0, - "offset": 80, + "offset": 72, "flags": 7, "container": "List", "dynamic": true, - "singleton": true, + "singleton": false, "pointer": true, - "hash": 809977903 + "hash": 2517543930 } } }, - "790017304": { - "name": "class SharedPointer", + "1128322611": { + "name": "class SharedPointer", "bases": [ - "ServiceOptionBase", + "ObstacleCourseObstacleBehaviorTemplate", + "BehaviorTemplate", "PropertyClass" ], - "hash": 790017304, + "hash": 1128322611, "properties": { - "m_serviceName": { + "m_behaviorName": { "type": "std::string", "id": 0, "offset": 72, - "flags": 31, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2206028813 + "hash": 3130754092 }, - "m_iconKey": { - "type": "std::string", + "m_rate": { + "type": "double", "id": 1, - "offset": 168, - "flags": 31, + "offset": 120, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2457138637 + "hash": 2117614265 }, - "m_displayKey": { - "type": "std::string", + "m_initialYaw": { + "type": "double", "id": 2, - "offset": 104, - "flags": 31, + "offset": 128, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3023276954 + "hash": 2566917224 }, - "m_serviceIndex": { - "type": "unsigned int", + "m_penaltyTime": { + "type": "double", "id": 3, - "offset": 204, - "flags": 31, + "offset": 136, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2103126710 + "hash": 3890998489 }, - "m_forceInteract": { - "type": "bool", + "m_pitch": { + "type": "double", "id": 4, - "offset": 200, - "flags": 31, + "offset": 144, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1705789564 + "hash": 2703980677 + }, + "m_maxYaw": { + "type": "double", + "id": 5, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2602042948 + }, + "m_platformWidth": { + "type": "double", + "id": 6, + "offset": 160, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 4024516466 + }, + "m_platformHeight": { + "type": "double", + "id": 7, + "offset": 168, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2765202891 + }, + "m_launchSpeed": { + "type": "double", + "id": 8, + "offset": 176, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2644727001 + }, + "m_launchSpeedUp": { + "type": "double", + "id": 9, + "offset": 184, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3445224318 + }, + "m_collisionHeight": { + "type": "double", + "id": 10, + "offset": 192, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3980975122 } } }, - "1146591003": { - "name": "class SharedPointer", + "1559037895": { + "name": "class SharedPointer", "bases": [ - "BehaviorTemplate", "PropertyClass" ], - "hash": 1146591003, + "hash": 1559037895, + "properties": {} + }, + "722124004": { + "name": "class ItemFinderBehavior", + "bases": [ + "ItemFinderBehaviorBase", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 722124004, "properties": { - "m_behaviorName": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + } + } + }, + "1128180754": { + "name": "class CombatResultListObj", + "bases": [ + "PropertyClass" + ], + "hash": 1128180754, + "properties": { + "m_resultList": { + "type": "class CombatResult", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2128076658 + }, + "m_duelID.m_full": { + "type": "unsigned __int64", + "id": 1, + "offset": 88, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1024980477 + } + } + }, + "1558495487": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1558495487, + "properties": { + "m_buttonName": { "type": "std::string", "id": 0, "offset": 72, @@ -475982,127 +205148,194 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 3130754092 + "hash": 3388080120 }, - "m_activeStateName": { + "m_sampleFilename": { "type": "std::string", "id": 1, - "offset": 120, + "offset": 104, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3583247033 + "hash": 2612990110 }, - "m_inactiveStateName": { + "m_hotKey": { "type": "std::string", "id": 2, - "offset": 152, + "offset": 136, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2765382672 + "hash": 2022699503 }, - "m_zoneList": { + "m_alternateSampleFilenameList": { "type": "std::string", "id": 3, - "offset": 184, + "offset": 168, "flags": 7, - "container": "Vector", + "container": "List", "dynamic": true, "singleton": false, "pointer": false, - "hash": 2171104787 + "hash": 2532699834 }, - "m_zoneTeleportLocation": { - "type": "std::string", + "m_limitToOneSample": { + "type": "int", "id": 4, - "offset": 208, + "offset": 184, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3345769311 + "hash": 1935781536 }, - "m_playerCount": { - "type": "int", + "m_altHotKey": { + "type": "std::string", "id": 5, - "offset": 240, + "offset": 192, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 732802992 - }, - "m_lockObjectTID": { - "type": "unsigned int", - "id": 6, - "offset": 244, + "hash": 1836211184 + } + } + }, + "721338156": { + "name": "class ClientHideShadowCreatureCinematicAction*", + "bases": [ + "HideShadowCreatureCinematicAction", + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 721338156, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1458748110 + "hash": 2237098605 }, - "m_lockObjectOffset": { - "type": "class Vector3D", - "id": 7, - "offset": 248, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1901342601 + "hash": 2285866132 + } + } + }, + "1995302474": { + "name": "class ClientIdleInterceptCinematicAction", + "bases": [ + "IdleInterceptCinematicAction", + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 1995302474, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 }, - "m_unlockedStateName": { + "m_actor": { "type": "std::string", - "id": 8, - "offset": 264, + "id": 1, + "offset": 80, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2407785906 + "hash": 2285866132 + } + } + }, + "1558283612": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1558283612, + "properties": { + "m_templateID": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1075328001 }, - "m_chargeObjectTID": { - "type": "unsigned int", - "id": 9, - "offset": 296, - "flags": 7, + "m_numForSale": { + "type": "int", + "id": 1, + "offset": 80, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 519506927 + "hash": 1454578518 }, - "m_chargeObjectOffset": { - "type": "class Vector3D", - "id": 10, - "offset": 300, - "flags": 7, + "m_buyPrice": { + "type": "int", + "id": 2, + "offset": 84, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2538928394 + "hash": 1746297085 + }, + "m_sellPrice": { + "type": "int", + "id": 3, + "offset": 88, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 957785661 } } }, - "789969400": { - "name": "class SharedPointer", + "719400181": { + "name": "class ControlTab::Button", "bases": [ + "ControlButton", "Window", "PropertyClass" ], - "hash": 789969400, + "hash": 719400181, "properties": { "m_sName": { "type": "std::string", @@ -476119,7 +205352,7 @@ "type": "class SharedPointer", "id": 1, "offset": 112, - "flags": 65667, + "flags": 65671, "container": "Vector", "dynamic": true, "singleton": false, @@ -476138,11 +205371,8 @@ "hash": 983582334, "enum_options": { "HAS_BACK": 1, - "SCALE_CHILDREN": 2, "CAN_MOVE": 4, "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "FOCUS_LOCKED": 64, "CAN_FOCUS": 128, "CAN_DOCK": 32, "DO_NOT_CAPTURE_MOUSE": 256, @@ -476154,7 +205384,12 @@ "USE_ALPHA_BOUNDS": 8192, "AUTO_GROW": 16384, "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152 + "AUTO_RESIZE": 49152, + "SHOW_HOTKEY": 16777216, + "EFFECT_SCALE": 67108864, + "LOCK_ICON_SIZE": 33554432, + "LEFT_TEXT": 536870912, + "NO_FIT_TEXT": 1073741824 } }, "m_Flags": { @@ -476314,257 +205549,286 @@ "singleton": false, "pointer": false, "hash": 3091503757 - } - } - }, - "788860132": { - "name": "class SharedPointer", - "bases": [ - "GameEffectInfo", - "PropertyClass" - ], - "hash": 788860132, - "properties": { - "m_effectName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, + }, + "m_bToggle": { + "type": "bool", + "id": 16, + "offset": 608, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2029161513 + "hash": 2071810903 }, - "m_xpPercent": { - "type": "int", - "id": 1, - "offset": 104, - "flags": 7, + "m_bButtonDown": { + "type": "bool", + "id": 17, + "offset": 609, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 755316563 - } - } - }, - "1223517492": { - "name": "class EquipmentShopOption", - "bases": [ - "ServiceOptionBase", - "PropertyClass" - ], - "hash": 1223517492, - "properties": { - "m_serviceName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, + "hash": 840041705 + }, + "m_sLabel": { + "type": "std::wstring", + "id": 18, + "offset": 616, + "flags": 4194439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2206028813 + "hash": 2207009163 }, - "m_iconKey": { - "type": "std::string", - "id": 1, - "offset": 168, - "flags": 31, + "m_labelOffset": { + "type": "class Rect", + "id": 19, + "offset": 832, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2457138637 + "hash": 1990646723 }, - "m_displayKey": { - "type": "std::string", - "id": 2, - "offset": 104, - "flags": 31, + "m_pButton": { + "type": "class SharedPointer", + "id": 20, + "offset": 656, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 3023276954 + "pointer": true, + "hash": 1543855875 }, - "m_serviceIndex": { + "m_HotKey": { "type": "unsigned int", - "id": 3, - "offset": 204, - "flags": 31, + "id": 21, + "offset": 672, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2103126710 + "hash": 1631553409 }, - "m_forceInteract": { - "type": "bool", - "id": 4, - "offset": 200, - "flags": 31, + "m_Color": { + "type": "class Color", + "id": 22, + "offset": 676, + "flags": 262279, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1705789564 - } - } - }, - "1173711933": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1173711933, - "properties": { - "m_nTeamID": { - "type": "gid", - "id": 0, - "offset": 72, - "flags": 31, + "hash": 1753714077 + }, + "m_bCursorOver": { + "type": "bool", + "id": 23, + "offset": 689, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 374990266 + "hash": 283981103 }, - "m_matchId": { - "type": "gid", - "id": 1, - "offset": 80, - "flags": 31, + "m_bAbortWhenCursorNotOver": { + "type": "bool", + "id": 24, + "offset": 706, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1757621330 + "hash": 325405258 }, - "m_matchNameID": { - "type": "unsigned int", - "id": 2, - "offset": 88, - "flags": 31, + "m_bHotKeyDown": { + "type": "bool", + "id": 25, + "offset": 680, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1751361288 + "hash": 616989185 }, - "m_creatorId": { - "type": "gid", - "id": 3, - "offset": 96, - "flags": 31, + "m_fTime": { + "type": "float", + "id": 26, + "offset": 684, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1051766069 + "hash": 883746156 }, - "m_friendsOnly": { + "m_bGreyed": { "type": "bool", - "id": 4, - "offset": 104, - "flags": 31, + "id": 27, + "offset": 688, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1420401792 + "hash": 1566556053 }, - "m_actors": { - "type": "class SharedPointer", - "id": 5, - "offset": 112, - "flags": 31, - "container": "List", - "dynamic": true, + "m_fMaxScale": { + "type": "float", + "id": 28, + "offset": 692, + "flags": 135, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 568947970 + "pointer": false, + "hash": 2070186635 }, - "m_bracketID": { - "type": "gid", - "id": 6, - "offset": 152, - "flags": 31, + "m_fScaleSpeed": { + "type": "float", + "id": 29, + "offset": 696, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 441272961 + "hash": 1457135702 }, - "m_leagueID": { - "type": "unsigned int", - "id": 7, - "offset": 160, - "flags": 31, + "m_bUseDropShadow": { + "type": "bool", + "id": 30, + "offset": 704, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 692361645 + "hash": 93063037 }, - "m_seasonID": { - "type": "unsigned int", - "id": 8, - "offset": 164, - "flags": 31, + "m_bUseOutline": { + "type": "bool", + "id": 31, + "offset": 705, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 535260643 + "hash": 744292994 }, - "m_maxActorLevel": { - "type": "int", - "id": 9, - "offset": 144, - "flags": 31, + "m_pGreyedState": { + "type": "class SharedPointer", + "id": 32, + "offset": 768, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 120597521 + "pointer": true, + "hash": 2703352263 + }, + "m_pNormalState": { + "type": "class SharedPointer", + "id": 33, + "offset": 752, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1887909808 + }, + "m_pHighlightedState": { + "type": "class SharedPointer", + "id": 34, + "offset": 784, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2200177608 + }, + "m_pSelectedState": { + "type": "class SharedPointer", + "id": 35, + "offset": 800, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2266776432 + }, + "m_pDepressedState": { + "type": "class SharedPointer", + "id": 36, + "offset": 816, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1878185798 } } }, - "1159827564": { - "name": "class CrownServicesOption*", + "1995064819": { + "name": "class SharedPointer", "bases": [ - "ServiceOptionBase", + "DerbyModifySpeedBoost", + "DerbyEffect", "PropertyClass" ], - "hash": 1159827564, + "hash": 1995064819, "properties": { - "m_serviceName": { - "type": "std::string", + "m_buffType": { + "type": "enum DerbyTalentBuffType", "id": 0, - "offset": 72, - "flags": 31, + "offset": 92, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2206028813 + "hash": 1149251982, + "enum_options": { + "Buff": 0, + "Debuff": 1, + "Neither": 2 + } }, - "m_iconKey": { - "type": "std::string", + "m_kTarget": { + "type": "enum DerbyTargetType", "id": 1, - "offset": 168, - "flags": 31, + "offset": 96, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2457138637 + "hash": 1807803351, + "enum_options": { + "kTargetInFront": 0, + "kTargetBehind": 1, + "kTargetFirst": 2, + "kTargetSelf": 3, + "kTargetAll": 4, + "kTargetLast": 5 + } }, - "m_displayKey": { - "type": "std::string", + "m_nDuration": { + "type": "int", "id": 2, "offset": 104, "flags": 31, @@ -476572,258 +205836,294 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 3023276954 + "hash": 1110167982 }, - "m_serviceIndex": { + "m_effectID": { "type": "unsigned int", "id": 3, - "offset": 204, - "flags": 31, + "offset": 88, + "flags": 24, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2103126710 + "hash": 2347630439 }, - "m_forceInteract": { - "type": "bool", + "m_imageFilename": { + "type": "std::string", "id": 4, - "offset": 200, - "flags": 31, + "offset": 112, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1705789564 - } - } - }, - "790055087": { - "name": "class SharedPointer", - "bases": [ - "CinematicAction", - "PropertyClass" - ], - "hash": 790055087, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, + "hash": 2813328063 + }, + "m_iconIndex": { + "type": "unsigned int", + "id": 5, + "offset": 144, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 + "hash": 1265133262 }, - "m_minDuration": { - "type": "float", - "id": 1, - "offset": 80, - "flags": 7, + "m_soundOnActivate": { + "type": "std::string", + "id": 6, + "offset": 152, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1733171553 + "hash": 1956929714 }, - "m_assetName": { + "m_soundOnTarget": { "type": "std::string", - "id": 2, - "offset": 88, - "flags": 7, + "id": 7, + "offset": 184, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1513131580 - } - } - }, - "1152306685": { - "name": "class CoreObject", - "bases": [ - "PropertyClass" - ], - "hash": 1152306685, - "properties": { - "m_inactiveBehaviors": { - "type": "class SharedPointer", - "id": 0, - "offset": 224, - "flags": 31, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1850812559 + "hash": 3444214056 }, - "m_globalID.m_full": { - "type": "unsigned __int64", - "id": 1, - "offset": 72, - "flags": 16777247, + "m_targetParticleEffect": { + "type": "std::string", + "id": 8, + "offset": 216, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2312465444 + "hash": 3048234723 }, - "m_permID": { - "type": "unsigned __int64", - "id": 2, - "offset": 80, - "flags": 16777247, + "m_overheadMessage": { + "type": "std::string", + "id": 9, + "offset": 248, + "flags": 8388639, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1298909658 + "hash": 1701018190 }, - "m_location": { - "type": "class Vector3D", - "id": 3, - "offset": 168, + "m_requirements": { + "type": "class RequirementList", + "id": 10, + "offset": 280, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2239683611 + "hash": 2840988582 }, - "m_orientation": { - "type": "class Vector3D", - "id": 4, - "offset": 180, + "m_nSpeedChange": { + "type": "int", + "id": 11, + "offset": 376, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2344058766 - }, - "m_fScale": { - "type": "float", - "id": 5, - "offset": 196, - "flags": 31, + "hash": 636533855 + } + } + }, + "281071924": { + "name": "class InteractiveMusicBehaviorBase*", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 281071924, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 503137701 - }, - "m_templateID.m_full": { - "type": "unsigned __int64", - "id": 6, - "offset": 96, + "hash": 223437287 + } + } + }, + "717808309": { + "name": "class ClientPvPPenaltyMatchBan", + "bases": [ + "PvPPenaltyMatchBan", + "InfractionPenalty", + "PropertyClass" + ], + "hash": 717808309, + "properties": { + "m_internalID": { + "type": "unsigned int", + "id": 0, + "offset": 72, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 633907631 + "hash": 1854540375 }, - "m_debugName": { - "type": "std::string", - "id": 7, - "offset": 104, + "m_categoryID": { + "type": "unsigned int", + "id": 1, + "offset": 76, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3553984419 + "hash": 1382795736 }, - "m_displayKey": { - "type": "std::string", - "id": 8, - "offset": 136, + "m_removeAtPointValue": { + "type": "float", + "id": 2, + "offset": 80, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3023276954 + "hash": 2112196961 }, - "m_zoneTagID": { + "m_expireTime": { "type": "unsigned int", - "id": 9, - "offset": 344, + "id": 3, + "offset": 84, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 965291410 + "hash": 1836304873 }, - "m_speedMultiplier": { - "type": "short", - "id": 10, - "offset": 192, + "m_duration": { + "type": "unsigned int", + "id": 4, + "offset": 88, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 123130076 + "hash": 1041524755 + } + } + }, + "279795948": { + "name": "class PlayerStatueBehavior", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 279795948, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 }, - "m_nMobileID": { - "type": "unsigned short", - "id": 11, - "offset": 194, + "m_visualBlobs": { + "type": "std::string", + "id": 1, + "offset": 176, "flags": 31, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 3602657281 + } + } + }, + "1128679787": { + "name": "class ResourcePointerBase*", + "bases": [ + "PropertyClass" + ], + "hash": 1128679787, + "properties": { + "m_sAssetName": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1054318939 + "hash": 2503711247 } } }, - "1149515186": { - "name": "class SharedPointer", + "279414099": { + "name": "class SpellSubEffectMetadata*", "bases": [ - "ActorCinematicAction", - "CinematicAction", "PropertyClass" ], - "hash": 1149515186, + "hash": 279414099, "properties": { - "m_timeOffset": { - "type": "float", + "m_effectIndex": { + "type": "int", "id": 0, "offset": 72, - "flags": 7, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 + "hash": 350070655 }, - "m_actor": { - "type": "std::string", + "m_chosenSubEffect": { + "type": "int", "id": 1, - "offset": 80, - "flags": 7, + "offset": 76, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2285866132 + "hash": 1555389905 } } }, - "1148430887": { - "name": "class ClientSetHangingEffectAlphaCinematicAction", + "1559022091": { + "name": "class QuestPathUpdateParams", + "bases": [], + "hash": 1559022091, + "properties": {} + }, + "1995304010": { + "name": "class ClientIdleInterceptCinematicAction*", "bases": [ - "SetHangingEffectAlphaCinematicAction", + "IdleInterceptCinematicAction", "ActorCinematicAction", "CinematicAction", "PropertyClass" ], - "hash": 1148430887, + "hash": 1995304010, "properties": { "m_timeOffset": { "type": "float", @@ -476846,40 +206146,55 @@ "singleton": false, "pointer": false, "hash": 2285866132 - }, - "m_cloaked": { - "type": "bool", - "id": 2, - "offset": 120, - "flags": 7, + } + } + }, + "279389523": { + "name": "class SpellSubEffectMetadata", + "bases": [ + "PropertyClass" + ], + "hash": 279389523, + "properties": { + "m_effectIndex": { + "type": "int", + "id": 0, + "offset": 72, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 7349510 + "hash": 350070655 }, - "m_alpha": { - "type": "float", - "id": 3, - "offset": 124, - "flags": 7, + "m_chosenSubEffect": { + "type": "int", + "id": 1, + "offset": 76, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 878686493 + "hash": 1555389905 } } }, - "791947256": { - "name": "class SharedPointer", + "720863591": { + "name": "class std::list >", + "bases": [], + "hash": 720863591, + "properties": {} + }, + "1129407734": { + "name": "class SharedPointer", "bases": [ - "BehaviorTemplate", + "GameEffectTemplate", "PropertyClass" ], - "hash": 791947256, + "hash": 1129407734, "properties": { - "m_behaviorName": { + "m_effectName": { "type": "std::string", "id": 0, "offset": 72, @@ -476888,625 +206203,800 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 3130754092 + "hash": 2029161513 }, - "m_expireTime": { + "m_effectCategory": { "type": "std::string", "id": 1, - "offset": 128, + "offset": 104, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3122602039 + "hash": 1852673222 }, - "m_timerType": { - "type": "enum TimerType", + "m_sortOrder": { + "type": "int", "id": 2, - "offset": 120, - "flags": 2097159, + "offset": 148, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 571744132, - "enum_options": { - "TimerType_Game": 0, - "TimerType_Calendar": 1 - } - } - } - }, - "1148237114": { - "name": "class TrackedPlant*", - "bases": [ - "PropertyClass" - ], - "hash": 1148237114, - "properties": {} - }, - "790862862": { - "name": "class JewelVaultBehavior*", - "bases": [ - "JewelVaultBehaviorBase", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 790862862, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, + "hash": 1411218206 + }, + "m_duration": { + "type": "double", + "id": 3, + "offset": 192, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 + "hash": 2727932435 }, - "m_jewelList": { - "type": "unsigned int", - "id": 1, - "offset": 112, - "flags": 65543, + "m_stackingCategories": { + "type": "std::string", + "id": 4, + "offset": 160, + "flags": 7, "container": "List", "dynamic": true, "singleton": false, "pointer": false, - "hash": 1839384000 + "hash": 1774497525 }, - "m_jewelData": { - "type": "std::string", - "id": 2, - "offset": 128, - "flags": 551, + "m_isPersistent": { + "type": "bool", + "id": 5, + "offset": 153, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3125384972 - } - } - }, - "1146863221": { - "name": "class LeashedPathMovementBehaviorClient", - "bases": [ - "LeashedPathMovementBehavior", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1146863221, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, + "hash": 923861920 + }, + "m_bIsOnPet": { + "type": "bool", + "id": 6, + "offset": 154, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 - } - } - }, - "790746714": { - "name": "class SharedPointer", - "bases": [ - "Requirement", - "PropertyClass" - ], - "hash": 790746714, - "properties": { - "m_applyNOT": { + "hash": 522593303 + }, + "m_isPublic": { "type": "bool", - "id": 0, - "offset": 72, - "flags": 31, + "id": 7, + "offset": 152, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1746328074, - "enum_options": { - "__DEFAULT": 0 - } + "hash": 1728439822 }, - "m_operator": { - "type": "enum Requirement::Operator", - "id": 1, - "offset": 76, - "flags": 2097183, + "m_visualEffectAddName": { + "type": "std::string", + "id": 8, + "offset": 200, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2672792317, - "enum_options": { - "ROP_AND": 0, - "ROP_OR": 1, - "__DEFAULT": "ROP_AND" - } + "hash": 3382086694 }, - "m_targetType": { - "type": "enum ConditionalSpellEffectRequirement::RequirementTarget", - "id": 2, - "offset": 80, + "m_visualEffectRemoveName": { + "type": "std::string", + "id": 9, + "offset": 232, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1541697323 + }, + "m_onAddFunctorName": { + "type": "std::string", + "id": 10, + "offset": 280, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1561843107 + }, + "m_onRemoveFunctorName": { + "type": "std::string", + "id": 11, + "offset": 312, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2559017864 + }, + "m_stackingRule": { + "type": "enum STACKING_RULE", + "id": 12, + "offset": 144, "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2547737902, + "hash": 431568889, "enum_options": { - "RT_Caster": 0, - "RT_Target": 1 + "STACKING_ALLOWED": 0, + "STACKING_NOSTACK": 1, + "STACKING_REPLACE": 2 } } } }, - "1146863141": { - "name": "class LeashedPathMovementBehaviorClient*", + "1129234562": { + "name": "class BracketReport*", "bases": [ - "LeashedPathMovementBehavior", - "BehaviorInstance", "PropertyClass" ], - "hash": 1146863141, + "hash": 1129234562, "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", + "m_report": { + "type": "class SharedPointer", "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, + "offset": 72, + "flags": 31, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 223437287 + "pointer": true, + "hash": 2579374715 } } }, - "1148119782": { - "name": "class MobMonsterMagicBehavior*", + "1559478206": { + "name": "class GardenData*", "bases": [ - "BehaviorInstance", "PropertyClass" ], - "hash": 1148119782, + "hash": 1559478206, "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", + "m_plantList": { + "type": "class GardenPlant", "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, + "offset": 72, + "flags": 31, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 223437287 + "hash": 645587347 } } }, - "792029465": { - "name": "class ClientFlareBacklashEffectCinematicAction", + "1996493942": { + "name": "class SharedPointer", "bases": [ - "FlareBacklashEffectCinematicAction", - "ActorCinematicAction", - "CinematicAction", + "WinAnimMoveToLocationTime", + "WinAnimMoveToLocation", + "WindowAnimation", "PropertyClass" ], - "hash": 792029465, + "hash": 1996493942, "properties": { - "m_timeOffset": { - "type": "float", + "m_bUseDeepCopy": { + "type": "bool", "id": 0, "offset": 72, - "flags": 7, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 + "hash": 433380635 }, - "m_actor": { - "type": "std::string", + "m_targetLocation": { + "type": "class Vector3D", "id": 1, "offset": 80, - "flags": 7, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2285866132 + "hash": 2653859938 + }, + "m_fTimeRemaining": { + "type": "float", + "id": 2, + "offset": 100, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1591443014 + }, + "m_fTimeTotal": { + "type": "float", + "id": 3, + "offset": 96, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 661225456 + }, + "m_fEaseAmount": { + "type": "float", + "id": 4, + "offset": 120, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1693654127 + }, + "m_fTotalDistance": { + "type": "float", + "id": 5, + "offset": 124, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1894338732 + }, + "m_fSpeed": { + "type": "float", + "id": 6, + "offset": 128, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 503609006 + }, + "m_fAccelRateMult": { + "type": "float", + "id": 7, + "offset": 132, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2071467395 } } }, - "1147203225": { - "name": "class WhirlyBurlyPlanningData", + "279795908": { + "name": "class PlayerStatueBehavior*", "bases": [ + "BehaviorInstance", "PropertyClass" ], - "hash": 1147203225, + "hash": 279795908, "properties": { - "m_unitTypesList": { - "type": "unsigned char", + "m_behaviorTemplateNameID": { + "type": "unsigned int", "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 2643134017 + "hash": 223437287 }, - "m_cardsUsedList": { - "type": "unsigned int", + "m_visualBlobs": { + "type": "std::string", "id": 1, - "offset": 88, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 711045287 - }, - "m_discardedCardsList": { - "type": "unsigned int", - "id": 2, - "offset": 104, - "flags": 7, - "container": "List", + "offset": 176, + "flags": 31, + "container": "Vector", "dynamic": true, "singleton": false, "pointer": false, - "hash": 1939154233 + "hash": 3602657281 } } }, - "792687072": { - "name": "class SharedPointer", + "1129187135": { + "name": "class FreeCamController*", "bases": [ + "CameraController", "PropertyClass" ], - "hash": 792687072, + "hash": 1129187135, + "properties": {} + }, + "1996265295": { + "name": "class BuddyEntry*", + "bases": [ + "PropertyClass" + ], + "hash": 1996265295, "properties": { - "m_message": { + "m_name": { "type": "std::string", "id": 0, "offset": 72, - "flags": 31, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3411261376 + "hash": 1717359772 }, - "m_itemId.m_full": { - "type": "unsigned __int64", + "m_characterID": { + "type": "gid", "id": 1, "offset": 104, - "flags": 31, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 625276258 + "hash": 210498386 }, - "m_itemCount": { - "type": "int", + "m_gameObjectID": { + "type": "gid", "id": 2, "offset": 120, - "flags": 31, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1789298066 + "hash": 23229750 }, - "m_itemFlags": { - "type": "int", + "m_status": { + "type": "unsigned int", "id": 3, - "offset": 124, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1792726006 - }, - "m_texture": { - "type": "int", - "id": 4, "offset": 112, - "flags": 31, + "flags": 1048583, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 222406987 - }, - "m_decal": { - "type": "int", - "id": 5, - "offset": 116, - "flags": 31, + "hash": 1172183633, + "enum_options": { + "PLAYERSTATUS_UNKNOWN": 0, + "PLAYERSTATUS_OFFLINE": 1, + "PLAYERSTATUS_LINKDEAD": 2, + "PLAYERSTATUS_TRANSITION": 3, + "PLAYERSTATUS_ONLINE": 4, + "PLAYERSTATUS_IGNORED": 5 + } + } + } + }, + "279475904": { + "name": "class SharedPointer", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 279475904, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 791777171 + "hash": 223437287 }, - "m_petName": { - "type": "int", - "id": 6, - "offset": 128, + "m_showTo": { + "type": "gid", + "id": 1, + "offset": 112, "flags": 31, - "container": "Static", - "dynamic": false, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 1492854820 + "hash": 947039004 }, - "m_giverAccountID": { + "m_hideFrom": { "type": "gid", - "id": 7, - "offset": 136, + "id": 2, + "offset": 128, "flags": 31, - "container": "Static", - "dynamic": false, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 679105551 + "hash": 642644390 }, - "m_itemTransactionId": { - "type": "std::string", - "id": 8, + "m_visible": { + "type": "bool", + "id": 3, "offset": 144, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1830751453 + "hash": 810536225 } } }, - "792292318": { - "name": "class SharedPointer", + "1996069046": { + "name": "class SharedPointer", "bases": [ - "Window", "PropertyClass" ], - "hash": 792292318, + "hash": 1996069046, "properties": { - "m_sName": { - "type": "std::string", + "m_characterGID": { + "type": "gid", "id": 0, - "offset": 80, - "flags": 135, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2306437263 + "hash": 501688601 }, - "m_Children": { - "type": "class SharedPointer", + "m_packedName": { + "type": "std::string", "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, + "offset": 88, + "flags": 7, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2621225959 + "pointer": false, + "hash": 1805208228 }, - "m_Style": { + "m_lastSeenTime": { "type": "unsigned int", "id": 2, - "offset": 152, - "flags": 1048583, + "offset": 80, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "SCALE_CHILDREN": 2, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "FOCUS_LOCKED": 64, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152 - } + "hash": 2066613339 }, - "m_Flags": { + "m_level": { "type": "unsigned int", "id": 3, - "offset": 156, - "flags": 1048583, + "offset": 120, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } + "hash": 1012687813 }, - "m_Window": { - "type": "class Rect", + "m_school": { + "type": "unsigned int", "id": 4, - "offset": 160, - "flags": 135, + "offset": 124, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3105139380 + "hash": 1152268885 }, - "m_fTargetAlpha": { - "type": "float", + "m_combatCount": { + "type": "unsigned int", "id": 5, - "offset": 212, - "flags": 135, + "offset": 128, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1809129834 + "hash": 2338224044 }, - "m_fDisabledAlpha": { - "type": "float", + "m_instanceCount": { + "type": "unsigned int", "id": 6, - "offset": 216, - "flags": 135, + "offset": 132, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1389987675 + "hash": 1489352139 }, - "m_fAlpha": { - "type": "float", + "m_hatchCount": { + "type": "unsigned int", "id": 7, - "offset": 208, - "flags": 65671, + "offset": 136, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 482130755 + "hash": 1273194302 }, - "m_pWindowStyle": { - "type": "class SharedPointer", + "m_beastmoonCount": { + "type": "unsigned int", "id": 8, - "offset": 232, - "flags": 135, + "offset": 140, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3623628394 + "pointer": false, + "hash": 1289638718 }, - "m_sHelp": { - "type": "std::wstring", + "m_derbyCount": { + "type": "unsigned int", "id": 9, - "offset": 248, - "flags": 4194439, + "offset": 144, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2102211316 + "hash": 265597676 }, - "m_sScript": { - "type": "std::string", + "m_PVPCount": { + "type": "unsigned int", "id": 10, - "offset": 352, - "flags": 135, + "offset": 148, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1846695875 + "hash": 624008108 }, - "m_Offset": { - "type": "class Point", + "m_housingGameCount": { + "type": "unsigned int", "id": 11, - "offset": 192, - "flags": 135, + "offset": 152, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3389835433 + "hash": 1403136525 }, - "m_Scale": { - "type": "class Point", + "m_worldID": { + "type": "unsigned int", "id": 12, - "offset": 200, - "flags": 135, + "offset": 156, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2547159940 + "hash": 397177058 }, - "m_sTip": { - "type": "std::wstring", + "m_objectGID": { + "type": "gid", "id": 13, - "offset": 392, - "flags": 4194439, + "offset": 160, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1513510520 + "hash": 2037310403 }, - "m_BubbleList": { - "type": "class WindowBubble", + "m_isOnline": { + "type": "bool", "id": 14, - "offset": 424, - "flags": 135, + "offset": 168, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1681359252 + } + } + }, + "721338176": { + "name": "class ClientHideShadowCreatureCinematicAction", + "bases": [ + "HideShadowCreatureCinematicAction", + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 721338176, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + } + } + }, + "1559871422": { + "name": "class GardenData", + "bases": [ + "PropertyClass" + ], + "hash": 1559871422, + "properties": { + "m_plantList": { + "type": "class GardenPlant", + "id": 0, + "offset": 72, + "flags": 31, "container": "List", "dynamic": true, "singleton": false, "pointer": false, - "hash": 2587533771 + "hash": 645587347 + } + } + }, + "1129234565": { + "name": "class BracketReport", + "bases": [ + "PropertyClass" + ], + "hash": 1129234565, + "properties": { + "m_report": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2579374715 + } + } + }, + "1559857256": { + "name": "class SharedPointer", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1559857256, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + } + } + }, + "280870482": { + "name": "class WindowBubble*", + "bases": [ + "PropertyClass" + ], + "hash": 280870482, + "properties": { + "m_sFilename": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2431512111 }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, + "m_Flags": { + "type": "unsigned int", + "id": 1, + "offset": 104, + "flags": 1048583, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3091503757 + "hash": 967851578, + "enum_options": { + "DOCK_BL_OF_BUBBLE": 1, + "DOCK_BR_OF_BUBBLE": 2, + "DOCK_TL_OF_BUBBLE": 4, + "DOCK_TR_OF_BUBBLE": 8 + } + }, + "m_DockToPoint": { + "type": "class Point", + "id": 2, + "offset": 144, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2353513904 } } }, - "1148351857": { - "name": "class CharacterRaceTable", + "723756188": { + "name": "class SharedPointer", "bases": [ + "BehaviorTemplate", "PropertyClass" ], - "hash": 1148351857, + "hash": 723756188, "properties": { - "m_eRace": { - "type": "enum eRace", + "m_behaviorName": { + "type": "std::string", "id": 0, "offset": 72, - "flags": 136314887, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + }, + "m_eGender": { + "type": "enum eGender", + "id": 1, + "offset": 168, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2776344943, + "enum_options": { + "Male": 1, + "Female": 0, + "Neutral": 2 + } + }, + "m_eRace": { + "type": "enum eRace", + "id": 2, + "offset": 172, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, @@ -480292,445 +209782,22851 @@ "PP_Fairy_Fire": 1847789544, "MNT_Mustang_B": 1448793691, "PP_FireElfMyth": 1933609060, - "MNT_KT-BoatRide": 1560860110 + "MNT_KT-BoatRide": 1560860110, + "MNT_ShadowMagic": 2095978357, + "MNT_MardiGrasFloat_A": 1740674432, + "PP_ChineseNYSnake": 988201940, + "MNT_AnubisDog": 1995079956, + "PP_ShadowImp_A": 1604849432, + "PP_ShadowImp_B": 1604849438, + "PP_ShadowImp_C": 1604849436, + "MNT_ShadowMagic_B": 2093870965, + "MNT_ShadowMagic_C": 2093805429, + "Guest_KT_SE_Tritops_Warrior_I_01": 97516901, + "Guest_KT_SE_DS_Draconian_Model_01": 1916095079, + "Guest_KT_SE_Beetle_Scarab_C_01_L50": 1064004307, + "Guest_KT_SE_Roach_Warrior_C_03": 1872574203, + "Guest_KT_SE_Roach_Warrior_C_04": 1871918843, + "Guest_KT_SE_Roach_Warrior_C_05": 1871787771, + "Guest_KT_SE_Beetle_Scarab_C_01": 1353410759, + "Guest_KT_SE_Mander_Citizen_B_01_L50": 2044509396, + "Guest_KT_SE_Mander_CitizenF_B_01_L50": 164327682, + "Guest_KT_SE_Treant_Tormented_A_01": 1359800879, + "Guest_KT_SE_Treant_Base_A_01": 765512948, + "Guest_KT_SE_Mander_Citizen_F_D_05": 171244620, + "Guest_KT_SE_Mander_CitizenF_D_01": 163791037, + "Guest_KT_SE_Mander_CitizenF_D_02": 298008765, + "Guest_KT_SE_Mander_CitizenF_D_03": 432226493, + "Guest_KT_SE_Mander_CitizenF_D_04": 566444221, + "Guest_KT_SE_Mander_MummyF_A_01": 964349080, + "Guest_KT_SE_Mander_MummyF_A_02": 964480152, + "Guest_KT_SE_MC_Wraith_Model_01": 1101442118, + "Guest_KT_SE_Mander_CitizenF_B_02": 298000573, + "MNT_Wheelbarrow": 614248817, + "MNT_StubbornLlama": 221089074 + } + }, + "m_eMountType": { + "type": "enum eMountType", + "id": 3, + "offset": 176, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3097765662, + "enum_options": { + "eMNT_Standard": 0, + "eMNT_Floating": 1 + } + }, + "m_adjustableAnimationRate": { + "type": "bool", + "id": 4, + "offset": 180, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 698897022 + }, + "m_primaryDyeToTexture": { + "type": "class MountDyeToTexture", + "id": 5, + "offset": 120, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2402789479 + }, + "m_secondaryDyeToTexture": { + "type": "class MountDyeToTexture", + "id": 6, + "offset": 136, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2282848843 + }, + "m_patternToTexture": { + "type": "class MountDyeToTexture", + "id": 7, + "offset": 152, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1665998015 + }, + "m_soundMountEquip": { + "type": "std::string", + "id": 8, + "offset": 184, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2862460187 + }, + "m_geometryOption": { + "type": "int", + "id": 9, + "offset": 216, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1776153279 + }, + "m_numSeats": { + "type": "int", + "id": 10, + "offset": 220, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1599962314, + "enum_options": { + "__DEFAULT": 1 + } + }, + "m_driverKFM": { + "type": "std::string", + "id": 11, + "offset": 224, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1883851493 + }, + "m_adjustedFocusHeight": { + "type": "float", + "id": 12, + "offset": 256, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 863441156 + }, + "m_animationEventList": { + "type": "class SharedPointer", + "id": 13, + "offset": 264, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2858101335 + } + } + }, + "1996774704": { + "name": "class DOTEffect*", + "bases": [ + "PulseEffect", + "GameEffectBase", + "PropertyClass" + ], + "hash": 1996774704, + "properties": { + "m_currentTickCount": { + "type": "double", + "id": 0, + "offset": 80, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2533274692 + }, + "m_effectNameID": { + "type": "unsigned int", + "id": 1, + "offset": 96, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1204067144 + }, + "m_bIsOnPet": { + "type": "bool", + "id": 2, + "offset": 73, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 522593303 + }, + "m_originatorID": { + "type": "gid", + "id": 3, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1131810019 + }, + "m_itemSlotID": { + "type": "unsigned int", + "id": 4, + "offset": 112, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1895747595 + }, + "m_internalID": { + "type": "int", + "id": 5, + "offset": 92, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1643137924 + }, + "m_endTime": { + "type": "unsigned int", + "id": 6, + "offset": 88, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 716479635 + }, + "m_pulseCount": { + "type": "double", + "id": 7, + "offset": 128, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3507157375 + }, + "m_damageOverride": { + "type": "int", + "id": 8, + "offset": 136, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 213003481 + } + } + }, + "723434534": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 723434534, + "properties": { + "m_templateID": { + "type": "unsigned int", + "id": 0, + "offset": 72, + "flags": 33554439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1286746870 + }, + "m_tier1": { + "type": "unsigned int", + "id": 1, + "offset": 76, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1022300786 + }, + "m_tier2": { + "type": "unsigned int", + "id": 2, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1022300787 + }, + "m_tier3": { + "type": "unsigned int", + "id": 3, + "offset": 84, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1022300788 + }, + "m_tier4": { + "type": "unsigned int", + "id": 4, + "offset": 88, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1022300789 + }, + "m_overrideDisplayName": { + "type": "std::string", + "id": 5, + "offset": 96, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3370041362 + }, + "m_description": { + "type": "std::string", + "id": 6, + "offset": 128, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1649374815 + }, + "m_foundInCantripChests": { + "type": "bool", + "id": 7, + "offset": 160, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2091052609 + }, + "m_equivalentTemplateIDList": { + "type": "unsigned int", + "id": 8, + "offset": 168, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 318979600 + }, + "m_overrideLocation": { + "type": "std::string", + "id": 9, + "offset": 192, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3616295668 + } + } + }, + "1129606174": { + "name": "class ClassProjectReward", + "bases": [ + "PropertyClass" + ], + "hash": 1129606174, + "properties": { + "m_goalCount": { + "type": "unsigned int", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 985669209 + }, + "m_lootTable": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2539512673 + }, + "m_icon": { + "type": "std::string", + "id": 2, + "offset": 112, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1717182340 + }, + "m_featuredTemplateID": { + "type": "unsigned int", + "id": 3, + "offset": 128, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 258965446 + }, + "m_badgeName": { + "type": "std::string", + "id": 4, + "offset": 144, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3002948047 + }, + "m_rewardType": { + "type": "enum ClassProjectRewardType", + "id": 5, + "offset": 176, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3545827746, + "enum_options": { + "CPRT_Everyone": 0, + "CPRT_Subscriber": 1, + "CPRT_Purchased": 2 + } + }, + "m_overrideTitle": { + "type": "std::string", + "id": 6, + "offset": 184, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2739145597 + }, + "m_testLunari": { + "type": "unsigned int", + "id": 7, + "offset": 216, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1088922456 + }, + "m_crownsCostToAdvance": { + "type": "int", + "id": 8, + "offset": 220, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 304642756 + } + } + }, + "1561457722": { + "name": "enum kDuelPhase", + "bases": [], + "hash": 1561457722, + "properties": {} + }, + "1996754224": { + "name": "class DOTEffect", + "bases": [ + "PulseEffect", + "GameEffectBase", + "PropertyClass" + ], + "hash": 1996754224, + "properties": { + "m_currentTickCount": { + "type": "double", + "id": 0, + "offset": 80, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2533274692 + }, + "m_effectNameID": { + "type": "unsigned int", + "id": 1, + "offset": 96, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1204067144 + }, + "m_bIsOnPet": { + "type": "bool", + "id": 2, + "offset": 73, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 522593303 + }, + "m_originatorID": { + "type": "gid", + "id": 3, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1131810019 + }, + "m_itemSlotID": { + "type": "unsigned int", + "id": 4, + "offset": 112, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1895747595 + }, + "m_internalID": { + "type": "int", + "id": 5, + "offset": 92, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1643137924 + }, + "m_endTime": { + "type": "unsigned int", + "id": 6, + "offset": 88, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 716479635 + }, + "m_pulseCount": { + "type": "double", + "id": 7, + "offset": 128, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3507157375 + }, + "m_damageOverride": { + "type": "int", + "id": 8, + "offset": 136, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 213003481 + } + } + }, + "723014038": { + "name": "class DynamicURLWhitelist*", + "bases": [ + "PropertyClass" + ], + "hash": 723014038, + "properties": { + "m_whitelist": { + "type": "class DynamicURLDescriptor", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2741681576 + } + } + }, + "1129539641": { + "name": "enum ItemBundleTemplate::BundleContentsType", + "bases": [], + "hash": 1129539641, + "properties": {} + }, + "1560718092": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1560718092, + "properties": { + "m_characterID": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 210498386 + }, + "m_localTime": { + "type": "int", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2008496724 + } + } + }, + "281487953": { + "name": "class SharedPointer", + "bases": [ + "ElixirBehaviorTemplate", + "TimedItemBehaviorTemplate", + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 281487953, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + }, + "m_expireTime": { + "type": "std::string", + "id": 1, + "offset": 128, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3122602039 + }, + "m_timerType": { + "type": "enum TimerType", + "id": 2, + "offset": 120, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 571744132, + "enum_options": { + "TimerType_Game": 0, + "TimerType_Calendar": 1 + } + }, + "m_typeList": { + "type": "std::string", + "id": 3, + "offset": 160, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2119049625 + }, + "m_equipParticle": { + "type": "std::string", + "id": 4, + "offset": 176, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2222557491 + }, + "m_unequipParticle": { + "type": "std::string", + "id": 5, + "offset": 208, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2215431638 + }, + "m_equipSound": { + "type": "std::string", + "id": 6, + "offset": 240, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2720016552 + }, + "m_unequipSound": { + "type": "std::string", + "id": 7, + "offset": 272, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1552545835 + }, + "m_equipActionList": { + "type": "class SharedPointer", + "id": 8, + "offset": 304, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1314016250 + }, + "m_unequipActionList": { + "type": "class SharedPointer", + "id": 9, + "offset": 320, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2143896925 + }, + "m_combatEnabled": { + "type": "bool", + "id": 10, + "offset": 336, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1399744148 + }, + "m_PvPEnabled": { + "type": "bool", + "id": 11, + "offset": 337, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1042852532 + }, + "m_classProjectName": { + "type": "std::string", + "id": 12, + "offset": 352, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1714146665 + } + } + }, + "722265540": { + "name": "class FilterSetTemplate", + "bases": [ + "CoreTemplate", + "PropertyClass" + ], + "hash": 722265540, + "properties": { + "m_behaviors": { + "type": "class BehaviorTemplate*", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1197808594 + }, + "m_name": { + "type": "std::string", + "id": 1, + "offset": 96, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1717359772 + }, + "m_uid": { + "type": "unsigned int", + "id": 2, + "offset": 128, + "flags": 16777223, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 478453519 + }, + "m_filters": { + "type": "class SharedPointer", + "id": 3, + "offset": 136, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2539658755 + } + } + }, + "1129521821": { + "name": "class SharedPointer", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 1129521821, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + }, + "m_gameName": { + "type": "std::string", + "id": 1, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3229752342 + } + } + }, + "1560631073": { + "name": "class RitualObjectBehaviorBase", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1560631073, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_playerList": { + "type": "gid", + "id": 1, + "offset": 112, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1909774945 + } + } + }, + "281429684": { + "name": "class LevelScaledInfo", + "bases": [ + "PropertyClass" + ], + "hash": 281429684, + "properties": { + "m_school": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2438566051 + }, + "m_level": { + "type": "int", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 801285362 + }, + "m_canonicalMaxHealth": { + "type": "float", + "id": 2, + "offset": 108, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2081916187 + }, + "m_canonicalMaxMana": { + "type": "float", + "id": 3, + "offset": 112, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1703399938 + }, + "m_canonicalFireAccuracy": { + "type": "float", + "id": 4, + "offset": 116, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 663526928 + }, + "m_canonicalIceAccuracy": { + "type": "float", + "id": 5, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1136218459 + }, + "m_canonicalStormAccuracy": { + "type": "float", + "id": 6, + "offset": 124, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 781009151 + }, + "m_canonicalMythAccuracy": { + "type": "float", + "id": 7, + "offset": 128, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 965342476 + }, + "m_canonicalLifeAccuracy": { + "type": "float", + "id": 8, + "offset": 132, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 482476234 + }, + "m_canonicalDeathAccuracy": { + "type": "float", + "id": 9, + "offset": 136, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 541998448 + }, + "m_canonicalBalanceAccuracy": { + "type": "float", + "id": 10, + "offset": 140, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1202638384 + }, + "m_canonicalStarAccuracy": { + "type": "float", + "id": 11, + "offset": 144, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2223128484 + }, + "m_canonicalSunAccuracy": { + "type": "float", + "id": 12, + "offset": 148, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1517720384 + }, + "m_canonicalMoonAccuracy": { + "type": "float", + "id": 13, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 715174115 + }, + "m_canonicalShadowAccuracy": { + "type": "float", + "id": 14, + "offset": 156, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 855808400 + }, + "m_canonicalFireArmorPiercing": { + "type": "float", + "id": 15, + "offset": 160, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1576771575 + }, + "m_canonicalIceArmorPiercing": { + "type": "float", + "id": 16, + "offset": 164, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 805509666 + }, + "m_canonicalStormArmorPiercing": { + "type": "float", + "id": 17, + "offset": 168, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1446146118 + }, + "m_canonicalMythArmorPiercing": { + "type": "float", + "id": 18, + "offset": 172, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 496153715 + }, + "m_canonicalLifeArmorPiercing": { + "type": "float", + "id": 19, + "offset": 176, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 666748657 + }, + "m_canonicalDeathArmorPiercing": { + "type": "float", + "id": 20, + "offset": 180, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 998759255 + }, + "m_canonicalBalanceArmorPiercing": { + "type": "float", + "id": 21, + "offset": 184, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 631301143 + }, + "m_canonicalStarArmorPiercing": { + "type": "float", + "id": 22, + "offset": 188, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2212060683 + }, + "m_canonicalSunArmorPiercing": { + "type": "float", + "id": 23, + "offset": 192, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 979260199 + }, + "m_canonicalMoonArmorPiercing": { + "type": "float", + "id": 24, + "offset": 196, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1453026986 + }, + "m_canonicalShadowArmorPiercing": { + "type": "float", + "id": 25, + "offset": 200, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2214251383 + }, + "m_canonicalFireDamage": { + "type": "float", + "id": 26, + "offset": 204, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1010754436 + }, + "m_canonicalIceDamage": { + "type": "float", + "id": 27, + "offset": 208, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1115703311 + }, + "m_canonicalStormDamage": { + "type": "float", + "id": 28, + "offset": 212, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 999030451 + }, + "m_canonicalMythDamage": { + "type": "float", + "id": 29, + "offset": 216, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1606568832 + }, + "m_canonicalLifeDamage": { + "type": "float", + "id": 30, + "offset": 220, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1097355198 + }, + "m_canonicalDeathDamage": { + "type": "float", + "id": 31, + "offset": 224, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 659630820 + }, + "m_canonicalBalanceDamage": { + "type": "float", + "id": 32, + "offset": 228, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 399936420 + }, + "m_canonicalStarDamage": { + "type": "float", + "id": 33, + "offset": 232, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 712445976 + }, + "m_canonicalSunDamage": { + "type": "float", + "id": 34, + "offset": 236, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 550096052 + }, + "m_canonicalMoonDamage": { + "type": "float", + "id": 35, + "offset": 240, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2205820311 + }, + "m_canonicalShadowDamage": { + "type": "float", + "id": 36, + "offset": 244, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 318766852 + }, + "m_canonicalFireFlatDamage": { + "type": "float", + "id": 37, + "offset": 248, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2042009387 + }, + "m_canonicalIceFlatDamage": { + "type": "float", + "id": 38, + "offset": 252, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1407011126 + }, + "m_canonicalStormFlatDamage": { + "type": "float", + "id": 39, + "offset": 256, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1131131354 + }, + "m_canonicalMythFlatDamage": { + "type": "float", + "id": 40, + "offset": 260, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2154143015 + }, + "m_canonicalLifeFlatDamage": { + "type": "float", + "id": 41, + "offset": 264, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 298815589 + }, + "m_canonicalDeathFlatDamage": { + "type": "float", + "id": 42, + "offset": 268, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 693997195 + }, + "m_canonicalBalanceFlatDamage": { + "type": "float", + "id": 43, + "offset": 272, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 723865419 + }, + "m_canonicalStarFlatDamage": { + "type": "float", + "id": 44, + "offset": 276, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1788538303 + }, + "m_canonicalSunFlatDamage": { + "type": "float", + "id": 45, + "offset": 280, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 250779739 + }, + "m_canonicalMoonFlatDamage": { + "type": "float", + "id": 46, + "offset": 284, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 303737534 + }, + "m_canonicalShadowFlatDamage": { + "type": "float", + "id": 47, + "offset": 288, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 983134891 + }, + "m_canonicalFireReduceDamage": { + "type": "float", + "id": 48, + "offset": 292, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2033292284 + }, + "m_canonicalIceReduceDamage": { + "type": "float", + "id": 49, + "offset": 296, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2009920711 + }, + "m_canonicalStormReduceDamage": { + "type": "float", + "id": 50, + "offset": 300, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2224559723 + }, + "m_canonicalDeathReduceDamage": { + "type": "float", + "id": 51, + "offset": 304, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 779346780 + }, + "m_canonicalMythReduceDamage": { + "type": "float", + "id": 52, + "offset": 308, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1740245240 + }, + "m_canonicalLifeReduceDamage": { + "type": "float", + "id": 53, + "offset": 312, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2070791094 + }, + "m_canonicalBalanceReduceDamage": { + "type": "float", + "id": 54, + "offset": 316, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1093587996 + }, + "m_canonicalStarReduceDamage": { + "type": "float", + "id": 55, + "offset": 320, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 881188752 + }, + "m_canonicalSunReduceDamage": { + "type": "float", + "id": 56, + "offset": 324, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1299357996 + }, + "m_canonicalMoonReduceDamage": { + "type": "float", + "id": 57, + "offset": 328, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 988338255 + }, + "m_canonicalShadowReduceDamage": { + "type": "float", + "id": 58, + "offset": 332, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2117685116 + }, + "m_canonicalFireFlatReduceDamage": { + "type": "float", + "id": 59, + "offset": 336, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1671506147 + }, + "m_canonicalIceFlatReduceDamage": { + "type": "float", + "id": 60, + "offset": 340, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 256243502 + }, + "m_canonicalStormFlatReduceDamage": { + "type": "float", + "id": 61, + "offset": 344, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1783712466 + }, + "m_canonicalDeathFlatReduceDamage": { + "type": "float", + "id": 62, + "offset": 348, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 104605763 + }, + "m_canonicalMythFlatReduceDamage": { + "type": "float", + "id": 63, + "offset": 352, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 454278111 + }, + "m_canonicalLifeFlatReduceDamage": { + "type": "float", + "id": 64, + "offset": 356, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2206377373 + }, + "m_canonicalBalanceFlatReduceDamage": { + "type": "float", + "id": 65, + "offset": 360, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1786870019 + }, + "m_canonicalStarFlatReduceDamage": { + "type": "float", + "id": 66, + "offset": 364, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2157518455 + }, + "m_canonicalSunFlatReduceDamage": { + "type": "float", + "id": 67, + "offset": 368, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1594183187 + }, + "m_canonicalMoonFlatReduceDamage": { + "type": "float", + "id": 68, + "offset": 372, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2100846262 + }, + "m_canonicalShadowFlatReduceDamage": { + "type": "float", + "id": 69, + "offset": 376, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1427809379 + }, + "m_canonicalPowerPip": { + "type": "float", + "id": 70, + "offset": 380, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1680220789 + }, + "m_canonicalShadowPipRating": { + "type": "float", + "id": 71, + "offset": 384, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1507596819 + }, + "m_canonicalIncHealing": { + "type": "float", + "id": 72, + "offset": 388, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1267876913 + }, + "m_canonicalLifeHealing": { + "type": "float", + "id": 73, + "offset": 392, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2124812407 + }, + "m_canonicalFireCriticalHit": { + "type": "float", + "id": 74, + "offset": 396, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1415646005 + }, + "m_canonicalIceCriticalHit": { + "type": "float", + "id": 75, + "offset": 400, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1935539872 + }, + "m_canonicalStormCriticalHit": { + "type": "float", + "id": 76, + "offset": 404, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1421441988 + }, + "m_canonicalMythCriticalHit": { + "type": "float", + "id": 77, + "offset": 408, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 821088433 + }, + "m_canonicalLifeCriticalHit": { + "type": "float", + "id": 78, + "offset": 412, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1872309167 + }, + "m_canonicalDeathCriticalHit": { + "type": "float", + "id": 79, + "offset": 416, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2028400277 + }, + "m_canonicalBalanceCriticalHit": { + "type": "float", + "id": 80, + "offset": 420, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 866568021 + }, + "m_canonicalStarCriticalHit": { + "type": "float", + "id": 81, + "offset": 424, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1641034825 + }, + "m_canonicalSunCriticalHit": { + "type": "float", + "id": 82, + "offset": 428, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 287126117 + }, + "m_canonicalMoonCriticalHit": { + "type": "float", + "id": 83, + "offset": 432, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2034733352 + }, + "m_canonicalShadowCriticalHit": { + "type": "float", + "id": 84, + "offset": 436, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 832526005 + }, + "m_canonicalFireBlock": { + "type": "float", + "id": 85, + "offset": 440, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 571735024 + }, + "m_canonicalIceBlock": { + "type": "float", + "id": 86, + "offset": 444, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 639990555 + }, + "m_canonicalStormBlock": { + "type": "float", + "id": 87, + "offset": 448, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1937960255 + }, + "m_canonicalMythBlock": { + "type": "float", + "id": 88, + "offset": 452, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 915166316 + }, + "m_canonicalLifeBlock": { + "type": "float", + "id": 89, + "offset": 456, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1094961386 + }, + "m_canonicalDeathBlock": { + "type": "float", + "id": 90, + "offset": 460, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 105568080 + }, + "m_canonicalBalanceBlock": { + "type": "float", + "id": 91, + "offset": 464, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1464279056 + }, + "m_canonicalStarBlock": { + "type": "float", + "id": 92, + "offset": 468, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 888071684 + }, + "m_canonicalSunBlock": { + "type": "float", + "id": 93, + "offset": 472, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1598979872 + }, + "m_canonicalMoonBlock": { + "type": "float", + "id": 94, + "offset": 476, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 152422307 + }, + "m_canonicalShadowBlock": { + "type": "float", + "id": 95, + "offset": 480, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1331668848 + }, + "m_canonicalFirePipConversion": { + "type": "float", + "id": 96, + "offset": 484, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1698926484 + }, + "m_canonicalIcePipConversion": { + "type": "float", + "id": 97, + "offset": 488, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 927664575 + }, + "m_canonicalStormPipConversion": { + "type": "float", + "id": 98, + "offset": 492, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1568301027 + }, + "m_canonicalMythPipConversion": { + "type": "float", + "id": 99, + "offset": 496, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 618308624 + }, + "m_canonicalLifePipConversion": { + "type": "float", + "id": 100, + "offset": 500, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 788903566 + }, + "m_canonicalDeathPipConversion": { + "type": "float", + "id": 101, + "offset": 504, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1120914164 + }, + "m_canonicalBalancePipConversion": { + "type": "float", + "id": 102, + "offset": 508, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 753456052 + }, + "m_canonicalStarPipConversion": { + "type": "float", + "id": 103, + "offset": 512, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 186731944 + }, + "m_canonicalSunPipConversion": { + "type": "float", + "id": 104, + "offset": 516, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1101415108 + }, + "m_canonicalMoonPipConversion": { + "type": "float", + "id": 105, + "offset": 520, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1575181895 + }, + "m_canonicalShadowPipConversion": { + "type": "float", + "id": 106, + "offset": 524, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 188922644 + }, + "m_canonicalAllArchmastery": { + "type": "float", + "id": 107, + "offset": 528, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 304759835 + }, + "m_maximumPips": { + "type": "int", + "id": 108, + "offset": 532, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 334257940 + }, + "m_maximumPowerPips": { + "type": "int", + "id": 109, + "offset": 536, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 952865025 + } + } + }, + "1996828358": { + "name": "class TextureRemap", + "bases": [ + "PropertyClass" + ], + "hash": 1996828358, + "properties": { + "m_remapIndex": { + "type": "unsigned int", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1234341146 + }, + "m_textureTemplateID": { + "type": "unsigned int", + "id": 1, + "offset": 76, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1730653991 + } + } + }, + "281082164": { + "name": "class InteractiveMusicBehaviorBase", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 281082164, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + } + } + }, + "1129543791": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1129543791, + "properties": { + "m_upFirst": { + "type": "int", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1884669703 + }, + "m_roundNum": { + "type": "int", + "id": 1, + "offset": 76, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1461215570 + }, + "m_resultType": { + "type": "int", + "id": 2, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1136139931 + } + } + }, + "1561289536": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1561289536, + "properties": { + "m_lootType": { + "type": "enum LootInfo::LOOT_TYPE", + "id": 0, + "offset": 72, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1591891442, + "enum_options": { + "LOOT_TYPE_NONE": 0, + "LOOT_TYPE_GOLD": 1, + "LOOT_TYPE_MANA": 2, + "LOOT_TYPE_ITEM": 3, + "LOOT_TYPE_TREASURE_CARD": 4, + "LOOT_TYPE_MAGIC_XP": 5, + "LOOT_TYPE_ADD_SPELL": 6, + "LOOT_TYPE_MAX_HEALTH": 7, + "LOOT_TYPE_MAX_GOLD": 8, + "LOOT_TYPE_MAX_MANA": 9, + "LOOT_TYPE_MAX_POTION": 10, + "LOOT_TYPE_TRAINING_POINTS": 11, + "LOOT_TYPE_RECIPE": 12, + "LOOT_TYPE_CRAFTING_SLOT": 13, + "LOOT_TYPE_REAGENT": 14, + "LOOT_TYPE_PETSNACK": 15, + "LOOT_TYPE_GARDENING_XP": 16, + "LOOT_TYPE_PET_XP": 17, + "LOOT_TYPE_TREASURE_TABLE": 18, + "LOOT_TYPE_ARENA_POINTS": 19, + "LOOT_TYPE_ARENA_BONUS_POINTS": 20, + "LOOT_TYPE_GROUP": 21, + "LOOT_TYPE_FISHING_XP": 22, + "LOOT_TYPE_JEWEL": 23, + "LOOT_TYPE_EMOTE": 23, + "LOOT_TYPE_TELEPORT_EFFECT": 23, + "LOOT_TYPE_PVP_CURRENCY": 26, + "LOOT_TYPE_PVP_CURRENCY_BONUS": 27, + "LOOT_TYPE_PVP_TOURNEY_CURRENCY": 28, + "LOOT_TYPE_PVP_TOURNEY_CURRENCY_BONUS": 29, + "LOOT_TYPE_FURNITURE_ESSENCE": 30 + } + }, + "m_max": { + "type": "int", + "id": 1, + "offset": 76, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 267042112 + } + } + }, + "281261287": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 281261287, + "properties": { + "m_forcedState": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2861191727 + }, + "m_category": { + "type": "std::string", + "id": 1, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2682050233 + }, + "m_fromState": { + "type": "std::string", + "id": 2, + "offset": 112, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2430398224 + } + } + }, + "723502030": { + "name": "class DoodleMapMap*", + "bases": [ + "PropertyClass" + ], + "hash": 723502030, + "properties": { + "m_mapList": { + "type": "class DoodleMapPair", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2964081080 + } + } + }, + "1999337645": { + "name": "class WizItemVendorData*", + "bases": [ + "PropertyClass" + ], + "hash": 1999337645, + "properties": { + "m_shopKeeperID": { + "type": "unsigned int", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 862026800 + }, + "m_shopType": { + "type": "unsigned int", + "id": 1, + "offset": 76, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 658077993 + } + } + }, + "1997371059": { + "name": "class TutorialActionOption*", + "bases": [ + "ServiceOptionBase", + "PropertyClass" + ], + "hash": 1997371059, + "properties": { + "m_serviceName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2206028813 + }, + "m_iconKey": { + "type": "std::string", + "id": 1, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2457138637 + }, + "m_displayKey": { + "type": "std::string", + "id": 2, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3023276954 + }, + "m_serviceIndex": { + "type": "unsigned int", + "id": 3, + "offset": 204, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2103126710 + }, + "m_forceInteract": { + "type": "bool", + "id": 4, + "offset": 200, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1705789564 + }, + "m_persona": { + "type": "std::string", + "id": 5, + "offset": 216, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2989527539 + } + } + }, + "1129897175": { + "name": "struct std::pair", + "bases": [], + "hash": 1129897175, + "properties": {} + }, + "1562443627": { + "name": "class SharedPointer", + "bases": [ + "ArenaMatchInfo", + "PropertyClass" + ], + "hash": 1562443627, + "properties": { + "m_matchID": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1757621298 + }, + "m_matchNameID": { + "type": "unsigned int", + "id": 1, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1751361288 + }, + "m_teams": { + "type": "class SharedPointer", + "id": 2, + "offset": 96, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1984373608 + }, + "m_matchName": { + "type": "std::string", + "id": 3, + "offset": 112, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2061215721 + }, + "m_matchTitle": { + "type": "std::string", + "id": 4, + "offset": 144, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2918442218 + }, + "m_matchZoneID": { + "type": "gid", + "id": 5, + "offset": 176, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2026205966 + }, + "m_creatorID": { + "type": "gid", + "id": 6, + "offset": 88, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1051766037 + }, + "m_matchZone": { + "type": "std::string", + "id": 7, + "offset": 184, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2061662244 + }, + "m_startTime": { + "type": "int", + "id": 8, + "offset": 216, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1386968823 + }, + "m_status": { + "type": "int", + "id": 9, + "offset": 220, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 960781182 + }, + "m_friendsOnly": { + "type": "bool", + "id": 10, + "offset": 236, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1420401792 + }, + "m_tournamentNameID": { + "type": "unsigned int", + "id": 11, + "offset": 224, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1799846440 + }, + "m_leagueID": { + "type": "unsigned int", + "id": 12, + "offset": 228, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 692361645 + }, + "m_seasonID": { + "type": "unsigned int", + "id": 13, + "offset": 232, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 535260643 + }, + "m_bUpdateLadder": { + "type": "bool", + "id": 14, + "offset": 248, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1937525956 + }, + "m_maxPointsPerMatch": { + "type": "unsigned int", + "id": 15, + "offset": 240, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1397040900 + }, + "m_estimatedWeight": { + "type": "float", + "id": 16, + "offset": 244, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1374360127 + }, + "m_maxELOError": { + "type": "int", + "id": 17, + "offset": 252, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 318998922 + }, + "m_uniqueMatchID": { + "type": "std::string", + "id": 18, + "offset": 264, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3291026220 + }, + "m_pvpDuelModifiersTemplates": { + "type": "class SharedPointer", + "id": 19, + "offset": 296, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1193155411 + }, + "m_teamSize": { + "type": "unsigned int", + "id": 20, + "offset": 256, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2343388751 + }, + "m_minRank": { + "type": "int", + "id": 21, + "offset": 312, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2062988042 + }, + "m_maxRank": { + "type": "int", + "id": 22, + "offset": 316, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1761764108 + }, + "m_trackRank": { + "type": "int", + "id": 23, + "offset": 320, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1258472859 + }, + "m_pTrackInfo": { + "type": "class SharedPointer", + "id": 24, + "offset": 336, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3026194809 + }, + "m_ratingBrackets": { + "type": "class ResultList*", + "id": 25, + "offset": 328, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2173049436 + } + } + }, + "1997371035": { + "name": "class TutorialActionOption", + "bases": [ + "ServiceOptionBase", + "PropertyClass" + ], + "hash": 1997371035, + "properties": { + "m_serviceName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2206028813 + }, + "m_iconKey": { + "type": "std::string", + "id": 1, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2457138637 + }, + "m_displayKey": { + "type": "std::string", + "id": 2, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3023276954 + }, + "m_serviceIndex": { + "type": "unsigned int", + "id": 3, + "offset": 204, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2103126710 + }, + "m_forceInteract": { + "type": "bool", + "id": 4, + "offset": 200, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1705789564 + }, + "m_persona": { + "type": "std::string", + "id": 5, + "offset": 216, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2989527539 + } + } + }, + "281432756": { + "name": "class LevelScaledInfo*", + "bases": [ + "PropertyClass" + ], + "hash": 281432756, + "properties": { + "m_school": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2438566051 + }, + "m_level": { + "type": "int", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 801285362 + }, + "m_canonicalMaxHealth": { + "type": "float", + "id": 2, + "offset": 108, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2081916187 + }, + "m_canonicalMaxMana": { + "type": "float", + "id": 3, + "offset": 112, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1703399938 + }, + "m_canonicalFireAccuracy": { + "type": "float", + "id": 4, + "offset": 116, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 663526928 + }, + "m_canonicalIceAccuracy": { + "type": "float", + "id": 5, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1136218459 + }, + "m_canonicalStormAccuracy": { + "type": "float", + "id": 6, + "offset": 124, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 781009151 + }, + "m_canonicalMythAccuracy": { + "type": "float", + "id": 7, + "offset": 128, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 965342476 + }, + "m_canonicalLifeAccuracy": { + "type": "float", + "id": 8, + "offset": 132, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 482476234 + }, + "m_canonicalDeathAccuracy": { + "type": "float", + "id": 9, + "offset": 136, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 541998448 + }, + "m_canonicalBalanceAccuracy": { + "type": "float", + "id": 10, + "offset": 140, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1202638384 + }, + "m_canonicalStarAccuracy": { + "type": "float", + "id": 11, + "offset": 144, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2223128484 + }, + "m_canonicalSunAccuracy": { + "type": "float", + "id": 12, + "offset": 148, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1517720384 + }, + "m_canonicalMoonAccuracy": { + "type": "float", + "id": 13, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 715174115 + }, + "m_canonicalShadowAccuracy": { + "type": "float", + "id": 14, + "offset": 156, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 855808400 + }, + "m_canonicalFireArmorPiercing": { + "type": "float", + "id": 15, + "offset": 160, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1576771575 + }, + "m_canonicalIceArmorPiercing": { + "type": "float", + "id": 16, + "offset": 164, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 805509666 + }, + "m_canonicalStormArmorPiercing": { + "type": "float", + "id": 17, + "offset": 168, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1446146118 + }, + "m_canonicalMythArmorPiercing": { + "type": "float", + "id": 18, + "offset": 172, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 496153715 + }, + "m_canonicalLifeArmorPiercing": { + "type": "float", + "id": 19, + "offset": 176, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 666748657 + }, + "m_canonicalDeathArmorPiercing": { + "type": "float", + "id": 20, + "offset": 180, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 998759255 + }, + "m_canonicalBalanceArmorPiercing": { + "type": "float", + "id": 21, + "offset": 184, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 631301143 + }, + "m_canonicalStarArmorPiercing": { + "type": "float", + "id": 22, + "offset": 188, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2212060683 + }, + "m_canonicalSunArmorPiercing": { + "type": "float", + "id": 23, + "offset": 192, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 979260199 + }, + "m_canonicalMoonArmorPiercing": { + "type": "float", + "id": 24, + "offset": 196, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1453026986 + }, + "m_canonicalShadowArmorPiercing": { + "type": "float", + "id": 25, + "offset": 200, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2214251383 + }, + "m_canonicalFireDamage": { + "type": "float", + "id": 26, + "offset": 204, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1010754436 + }, + "m_canonicalIceDamage": { + "type": "float", + "id": 27, + "offset": 208, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1115703311 + }, + "m_canonicalStormDamage": { + "type": "float", + "id": 28, + "offset": 212, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 999030451 + }, + "m_canonicalMythDamage": { + "type": "float", + "id": 29, + "offset": 216, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1606568832 + }, + "m_canonicalLifeDamage": { + "type": "float", + "id": 30, + "offset": 220, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1097355198 + }, + "m_canonicalDeathDamage": { + "type": "float", + "id": 31, + "offset": 224, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 659630820 + }, + "m_canonicalBalanceDamage": { + "type": "float", + "id": 32, + "offset": 228, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 399936420 + }, + "m_canonicalStarDamage": { + "type": "float", + "id": 33, + "offset": 232, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 712445976 + }, + "m_canonicalSunDamage": { + "type": "float", + "id": 34, + "offset": 236, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 550096052 + }, + "m_canonicalMoonDamage": { + "type": "float", + "id": 35, + "offset": 240, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2205820311 + }, + "m_canonicalShadowDamage": { + "type": "float", + "id": 36, + "offset": 244, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 318766852 + }, + "m_canonicalFireFlatDamage": { + "type": "float", + "id": 37, + "offset": 248, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2042009387 + }, + "m_canonicalIceFlatDamage": { + "type": "float", + "id": 38, + "offset": 252, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1407011126 + }, + "m_canonicalStormFlatDamage": { + "type": "float", + "id": 39, + "offset": 256, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1131131354 + }, + "m_canonicalMythFlatDamage": { + "type": "float", + "id": 40, + "offset": 260, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2154143015 + }, + "m_canonicalLifeFlatDamage": { + "type": "float", + "id": 41, + "offset": 264, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 298815589 + }, + "m_canonicalDeathFlatDamage": { + "type": "float", + "id": 42, + "offset": 268, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 693997195 + }, + "m_canonicalBalanceFlatDamage": { + "type": "float", + "id": 43, + "offset": 272, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 723865419 + }, + "m_canonicalStarFlatDamage": { + "type": "float", + "id": 44, + "offset": 276, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1788538303 + }, + "m_canonicalSunFlatDamage": { + "type": "float", + "id": 45, + "offset": 280, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 250779739 + }, + "m_canonicalMoonFlatDamage": { + "type": "float", + "id": 46, + "offset": 284, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 303737534 + }, + "m_canonicalShadowFlatDamage": { + "type": "float", + "id": 47, + "offset": 288, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 983134891 + }, + "m_canonicalFireReduceDamage": { + "type": "float", + "id": 48, + "offset": 292, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2033292284 + }, + "m_canonicalIceReduceDamage": { + "type": "float", + "id": 49, + "offset": 296, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2009920711 + }, + "m_canonicalStormReduceDamage": { + "type": "float", + "id": 50, + "offset": 300, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2224559723 + }, + "m_canonicalDeathReduceDamage": { + "type": "float", + "id": 51, + "offset": 304, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 779346780 + }, + "m_canonicalMythReduceDamage": { + "type": "float", + "id": 52, + "offset": 308, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1740245240 + }, + "m_canonicalLifeReduceDamage": { + "type": "float", + "id": 53, + "offset": 312, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2070791094 + }, + "m_canonicalBalanceReduceDamage": { + "type": "float", + "id": 54, + "offset": 316, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1093587996 + }, + "m_canonicalStarReduceDamage": { + "type": "float", + "id": 55, + "offset": 320, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 881188752 + }, + "m_canonicalSunReduceDamage": { + "type": "float", + "id": 56, + "offset": 324, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1299357996 + }, + "m_canonicalMoonReduceDamage": { + "type": "float", + "id": 57, + "offset": 328, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 988338255 + }, + "m_canonicalShadowReduceDamage": { + "type": "float", + "id": 58, + "offset": 332, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2117685116 + }, + "m_canonicalFireFlatReduceDamage": { + "type": "float", + "id": 59, + "offset": 336, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1671506147 + }, + "m_canonicalIceFlatReduceDamage": { + "type": "float", + "id": 60, + "offset": 340, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 256243502 + }, + "m_canonicalStormFlatReduceDamage": { + "type": "float", + "id": 61, + "offset": 344, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1783712466 + }, + "m_canonicalDeathFlatReduceDamage": { + "type": "float", + "id": 62, + "offset": 348, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 104605763 + }, + "m_canonicalMythFlatReduceDamage": { + "type": "float", + "id": 63, + "offset": 352, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 454278111 + }, + "m_canonicalLifeFlatReduceDamage": { + "type": "float", + "id": 64, + "offset": 356, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2206377373 + }, + "m_canonicalBalanceFlatReduceDamage": { + "type": "float", + "id": 65, + "offset": 360, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1786870019 + }, + "m_canonicalStarFlatReduceDamage": { + "type": "float", + "id": 66, + "offset": 364, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2157518455 + }, + "m_canonicalSunFlatReduceDamage": { + "type": "float", + "id": 67, + "offset": 368, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1594183187 + }, + "m_canonicalMoonFlatReduceDamage": { + "type": "float", + "id": 68, + "offset": 372, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2100846262 + }, + "m_canonicalShadowFlatReduceDamage": { + "type": "float", + "id": 69, + "offset": 376, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1427809379 + }, + "m_canonicalPowerPip": { + "type": "float", + "id": 70, + "offset": 380, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1680220789 + }, + "m_canonicalShadowPipRating": { + "type": "float", + "id": 71, + "offset": 384, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1507596819 + }, + "m_canonicalIncHealing": { + "type": "float", + "id": 72, + "offset": 388, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1267876913 + }, + "m_canonicalLifeHealing": { + "type": "float", + "id": 73, + "offset": 392, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2124812407 + }, + "m_canonicalFireCriticalHit": { + "type": "float", + "id": 74, + "offset": 396, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1415646005 + }, + "m_canonicalIceCriticalHit": { + "type": "float", + "id": 75, + "offset": 400, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1935539872 + }, + "m_canonicalStormCriticalHit": { + "type": "float", + "id": 76, + "offset": 404, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1421441988 + }, + "m_canonicalMythCriticalHit": { + "type": "float", + "id": 77, + "offset": 408, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 821088433 + }, + "m_canonicalLifeCriticalHit": { + "type": "float", + "id": 78, + "offset": 412, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1872309167 + }, + "m_canonicalDeathCriticalHit": { + "type": "float", + "id": 79, + "offset": 416, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2028400277 + }, + "m_canonicalBalanceCriticalHit": { + "type": "float", + "id": 80, + "offset": 420, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 866568021 + }, + "m_canonicalStarCriticalHit": { + "type": "float", + "id": 81, + "offset": 424, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1641034825 + }, + "m_canonicalSunCriticalHit": { + "type": "float", + "id": 82, + "offset": 428, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 287126117 + }, + "m_canonicalMoonCriticalHit": { + "type": "float", + "id": 83, + "offset": 432, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2034733352 + }, + "m_canonicalShadowCriticalHit": { + "type": "float", + "id": 84, + "offset": 436, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 832526005 + }, + "m_canonicalFireBlock": { + "type": "float", + "id": 85, + "offset": 440, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 571735024 + }, + "m_canonicalIceBlock": { + "type": "float", + "id": 86, + "offset": 444, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 639990555 + }, + "m_canonicalStormBlock": { + "type": "float", + "id": 87, + "offset": 448, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1937960255 + }, + "m_canonicalMythBlock": { + "type": "float", + "id": 88, + "offset": 452, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 915166316 + }, + "m_canonicalLifeBlock": { + "type": "float", + "id": 89, + "offset": 456, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1094961386 + }, + "m_canonicalDeathBlock": { + "type": "float", + "id": 90, + "offset": 460, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 105568080 + }, + "m_canonicalBalanceBlock": { + "type": "float", + "id": 91, + "offset": 464, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1464279056 + }, + "m_canonicalStarBlock": { + "type": "float", + "id": 92, + "offset": 468, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 888071684 + }, + "m_canonicalSunBlock": { + "type": "float", + "id": 93, + "offset": 472, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1598979872 + }, + "m_canonicalMoonBlock": { + "type": "float", + "id": 94, + "offset": 476, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 152422307 + }, + "m_canonicalShadowBlock": { + "type": "float", + "id": 95, + "offset": 480, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1331668848 + }, + "m_canonicalFirePipConversion": { + "type": "float", + "id": 96, + "offset": 484, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1698926484 + }, + "m_canonicalIcePipConversion": { + "type": "float", + "id": 97, + "offset": 488, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 927664575 + }, + "m_canonicalStormPipConversion": { + "type": "float", + "id": 98, + "offset": 492, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1568301027 + }, + "m_canonicalMythPipConversion": { + "type": "float", + "id": 99, + "offset": 496, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 618308624 + }, + "m_canonicalLifePipConversion": { + "type": "float", + "id": 100, + "offset": 500, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 788903566 + }, + "m_canonicalDeathPipConversion": { + "type": "float", + "id": 101, + "offset": 504, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1120914164 + }, + "m_canonicalBalancePipConversion": { + "type": "float", + "id": 102, + "offset": 508, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 753456052 + }, + "m_canonicalStarPipConversion": { + "type": "float", + "id": 103, + "offset": 512, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 186731944 + }, + "m_canonicalSunPipConversion": { + "type": "float", + "id": 104, + "offset": 516, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1101415108 + }, + "m_canonicalMoonPipConversion": { + "type": "float", + "id": 105, + "offset": 520, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1575181895 + }, + "m_canonicalShadowPipConversion": { + "type": "float", + "id": 106, + "offset": 524, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 188922644 + }, + "m_canonicalAllArchmastery": { + "type": "float", + "id": 107, + "offset": 528, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 304759835 + }, + "m_maximumPips": { + "type": "int", + "id": 108, + "offset": 532, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 334257940 + }, + "m_maximumPowerPips": { + "type": "int", + "id": 109, + "offset": 536, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 952865025 + } + } + }, + "723888169": { + "name": "class PropertyClass", + "bases": [], + "hash": 723888169, + "properties": {} + }, + "1561997376": { + "name": "class SoundFilterSetting*", + "bases": [ + "PropertyClass" + ], + "hash": 1561997376, + "properties": { + "m_name": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1717359772 + }, + "m_params": { + "type": "class SoundFilterParam*", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1984426024 + }, + "m_needsUpdate": { + "type": "bool", + "id": 2, + "offset": 128, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1787634021 + } + } + }, + "1133885852": { + "name": "class CreationNameInput*", + "bases": [ + "ControlRichEdit", + "ControlEdit", + "Window", + "PropertyClass" + ], + "hash": 1133885852, + "properties": { + "m_sName": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306437263 + }, + "m_Children": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621225959 + }, + "m_Style": { + "type": "unsigned int", + "id": 2, + "offset": 152, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152, + "FORCE_NUMERIC": 16777216, + "FORCE_ALPHA": 268435456, + "FORCE_ALPHANUMERIC": 536870912, + "FORCE_INTEGER": 33554432, + "FORCE_POSITIVE": 67108864, + "FORCE_RANGE": 134217728 + } + }, + "m_Flags": { + "type": "unsigned int", + "id": 3, + "offset": 156, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } + }, + "m_Window": { + "type": "class Rect", + "id": 4, + "offset": 160, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3105139380 + }, + "m_fTargetAlpha": { + "type": "float", + "id": 5, + "offset": 212, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1809129834 + }, + "m_fDisabledAlpha": { + "type": "float", + "id": 6, + "offset": 216, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1389987675 + }, + "m_fAlpha": { + "type": "float", + "id": 7, + "offset": 208, + "flags": 65671, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 482130755 + }, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3623628394 + }, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2102211316 + }, + "m_sScript": { + "type": "std::string", + "id": 10, + "offset": 352, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1846695875 + }, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3389835433 + }, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547159940 + }, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513510520 + }, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3091503757 + }, + "m_sText": { + "type": "std::wstring", + "id": 16, + "offset": 584, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2102642960 + }, + "m_nMaxLength": { + "type": "int", + "id": 17, + "offset": 620, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1183478416 + }, + "m_bPassword": { + "type": "bool", + "id": 18, + "offset": 624, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1604468200 + }, + "m_bLog": { + "type": "bool", + "id": 19, + "offset": 625, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 221687287 + }, + "m_previousNext": { + "type": "bool", + "id": 20, + "offset": 627, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 858581071 + }, + "m_nMaxLogSize": { + "type": "int", + "id": 21, + "offset": 712, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 779573899 + }, + "m_bEditing": { + "type": "bool", + "id": 22, + "offset": 616, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1243218553 + }, + "m_bAllowPaste": { + "type": "bool", + "id": 23, + "offset": 626, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1129316721 + }, + "m_nLogPosition": { + "type": "int", + "id": 24, + "offset": 704, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1120160767 + }, + "m_nCursor": { + "type": "int", + "id": 25, + "offset": 716, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1876782150 + }, + "m_nEditBegin": { + "type": "int", + "id": 26, + "offset": 720, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1066592403 + }, + "m_nEditEnd": { + "type": "int", + "id": 27, + "offset": 724, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1560905669 + }, + "m_sSavedText": { + "type": "std::wstring", + "id": 28, + "offset": 728, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2197953283 + }, + "m_fCursorBlinkSpeed": { + "type": "float", + "id": 29, + "offset": 760, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2232655228 + }, + "m_fCursorTimer": { + "type": "float", + "id": 30, + "offset": 764, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1929942748 + }, + "m_bCursorBlink": { + "type": "bool", + "id": 31, + "offset": 768, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 683441507 + }, + "m_fMinRange": { + "type": "double", + "id": 32, + "offset": 776, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3079523396 + }, + "m_fMaxRange": { + "type": "double", + "id": 33, + "offset": 784, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3876551814 + }, + "m_nPrecision": { + "type": "int", + "id": 34, + "offset": 792, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1404974196 + }, + "m_bDeleteOnFirstChar": { + "type": "bool", + "id": 35, + "offset": 618, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 902105643 + } + } + }, + "1998733073": { + "name": "class FriendlyPlayerInfoList", + "bases": [ + "PropertyClass" + ], + "hash": 1998733073, + "properties": { + "m_friendlyPlayerInfoList": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2302789544 + } + } + }, + "282724633": { + "name": "class MoveCommandTime*", + "bases": [ + "MoveController::MoveCommand", + "PropertyClass" + ], + "hash": 282724633, + "properties": { + "m_vTarget": { + "type": "class Vector3D", + "id": 0, + "offset": 100, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3770499167 + }, + "m_fTime": { + "type": "float", + "id": 1, + "offset": 124, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 883746156 + } + } + }, + "746693967": { + "name": "class ArenaMatchInfo*", + "bases": [ + "PropertyClass" + ], + "hash": 746693967, + "properties": { + "m_matchID": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1757621298 + }, + "m_matchNameID": { + "type": "unsigned int", + "id": 1, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1751361288 + }, + "m_teams": { + "type": "class SharedPointer", + "id": 2, + "offset": 96, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1984373608 + }, + "m_matchName": { + "type": "std::string", + "id": 3, + "offset": 112, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2061215721 + }, + "m_matchTitle": { + "type": "std::string", + "id": 4, + "offset": 144, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2918442218 + }, + "m_matchZoneID": { + "type": "gid", + "id": 5, + "offset": 176, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2026205966 + }, + "m_creatorID": { + "type": "gid", + "id": 6, + "offset": 88, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1051766037 + }, + "m_matchZone": { + "type": "std::string", + "id": 7, + "offset": 184, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2061662244 + }, + "m_startTime": { + "type": "int", + "id": 8, + "offset": 216, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1386968823 + }, + "m_status": { + "type": "int", + "id": 9, + "offset": 220, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 960781182 + }, + "m_friendsOnly": { + "type": "bool", + "id": 10, + "offset": 236, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1420401792 + }, + "m_tournamentNameID": { + "type": "unsigned int", + "id": 11, + "offset": 224, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1799846440 + }, + "m_leagueID": { + "type": "unsigned int", + "id": 12, + "offset": 228, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 692361645 + }, + "m_seasonID": { + "type": "unsigned int", + "id": 13, + "offset": 232, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 535260643 + }, + "m_bUpdateLadder": { + "type": "bool", + "id": 14, + "offset": 248, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1937525956 + }, + "m_maxPointsPerMatch": { + "type": "unsigned int", + "id": 15, + "offset": 240, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1397040900 + }, + "m_estimatedWeight": { + "type": "float", + "id": 16, + "offset": 244, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1374360127 + }, + "m_maxELOError": { + "type": "int", + "id": 17, + "offset": 252, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 318998922 + }, + "m_uniqueMatchID": { + "type": "std::string", + "id": 18, + "offset": 264, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3291026220 + }, + "m_pvpDuelModifiersTemplates": { + "type": "class SharedPointer", + "id": 19, + "offset": 296, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1193155411 + }, + "m_teamSize": { + "type": "unsigned int", + "id": 20, + "offset": 256, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2343388751 + } + } + }, + "1131635780": { + "name": "class WizardEquippedItemInfo", + "bases": [ + "EquippedItemInfo", + "PropertyClass" + ], + "hash": 1131635780, + "properties": { + "m_itemID": { + "type": "unsigned int", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 780964329 + }, + "m_baseColor": { + "type": "bui5", + "id": 1, + "offset": 92, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1433198221 + }, + "m_trimColor": { + "type": "bui5", + "id": 2, + "offset": 96, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1198446862 + }, + "m_pattern": { + "type": "bui5", + "id": 3, + "offset": 100, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1338360593 + }, + "m_displayID": { + "type": "unsigned int", + "id": 4, + "offset": 88, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1233846672 + }, + "m_pJewelInfo": { + "type": "class SharedPointer", + "id": 5, + "offset": 120, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 387523703 + }, + "m_fullColor": { + "type": "u24", + "id": 6, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 301226616 + } + } + }, + "1998134429": { + "name": "class std::list >", + "bases": [], + "hash": 1998134429, + "properties": {} + }, + "282411936": { + "name": "class HousingObjectTextureRemap", + "bases": [ + "PropertyClass" + ], + "hash": 282411936, + "properties": { + "m_tagName": { + "type": "unsigned int", + "id": 0, + "offset": 72, + "flags": 27, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 255719658 + }, + "m_textureFilename": { + "type": "unsigned int", + "id": 1, + "offset": 76, + "flags": 27, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 922351199 + } + } + }, + "737094019": { + "name": "class ShadowSpellTrackingData*", + "bases": [ + "PropertyClass" + ], + "hash": 737094019, + "properties": { + "m_pSpellEffect": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3446820733 + }, + "m_remainingTurns": { + "type": "int", + "id": 1, + "offset": 88, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1100057776 + } + } + }, + "1131100403": { + "name": "class BracketIDList", + "bases": [ + "PropertyClass" + ], + "hash": 1131100403, + "properties": { + "m_bracketIDList": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1493156413 + } + } + }, + "1564652149": { + "name": "class ClientClearTopTeamCinematicAction*", + "bases": [ + "ClearTopTeamCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 1564652149, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_interpDuration": { + "type": "float", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237711951 + } + } + }, + "1997400328": { + "name": "class ResSummonHenchman*", + "bases": [ + "Result", + "PropertyClass" + ], + "hash": 1997400328, + "properties": { + "m_templateID": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 33554439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1075328001 + } + } + }, + "731548130": { + "name": "class ClientSwapShadowMaterialActorCinematicAction", + "bases": [ + "SwapShadowMaterialActorCinematicAction", + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 731548130, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + } + } + }, + "1130687527": { + "name": "class AvatarOption*", + "bases": [ + "AvatarOptionBase", + "PropertyClass" + ], + "hash": 1130687527, + "properties": { + "m_conditionFlags": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2483653903 + }, + "m_mesh": { + "type": "std::string", + "id": 1, + "offset": 104, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1717328392 + }, + "m_noMesh": { + "type": "bool", + "id": 2, + "offset": 168, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 760920637 + }, + "m_geometry": { + "type": "std::string", + "id": 3, + "offset": 136, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2041778855 + } + } + }, + "1562818283": { + "name": "class SharedPointer", + "bases": [ + "ArenaMatchInfo", + "PropertyClass" + ], + "hash": 1562818283, + "properties": { + "m_matchID": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1757621298 + }, + "m_matchNameID": { + "type": "unsigned int", + "id": 1, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1751361288 + }, + "m_teams": { + "type": "class SharedPointer", + "id": 2, + "offset": 96, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1984373608 + }, + "m_matchName": { + "type": "std::string", + "id": 3, + "offset": 112, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2061215721 + }, + "m_matchTitle": { + "type": "std::string", + "id": 4, + "offset": 144, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2918442218 + }, + "m_matchZoneID": { + "type": "gid", + "id": 5, + "offset": 176, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2026205966 + }, + "m_creatorID": { + "type": "gid", + "id": 6, + "offset": 88, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1051766037 + }, + "m_matchZone": { + "type": "std::string", + "id": 7, + "offset": 184, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2061662244 + }, + "m_startTime": { + "type": "int", + "id": 8, + "offset": 216, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1386968823 + }, + "m_status": { + "type": "int", + "id": 9, + "offset": 220, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 960781182 + }, + "m_friendsOnly": { + "type": "bool", + "id": 10, + "offset": 236, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1420401792 + }, + "m_tournamentNameID": { + "type": "unsigned int", + "id": 11, + "offset": 224, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1799846440 + }, + "m_leagueID": { + "type": "unsigned int", + "id": 12, + "offset": 228, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 692361645 + }, + "m_seasonID": { + "type": "unsigned int", + "id": 13, + "offset": 232, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 535260643 + }, + "m_bUpdateLadder": { + "type": "bool", + "id": 14, + "offset": 248, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1937525956 + }, + "m_maxPointsPerMatch": { + "type": "unsigned int", + "id": 15, + "offset": 240, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1397040900 + }, + "m_estimatedWeight": { + "type": "float", + "id": 16, + "offset": 244, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1374360127 + }, + "m_maxELOError": { + "type": "int", + "id": 17, + "offset": 252, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 318998922 + }, + "m_uniqueMatchID": { + "type": "std::string", + "id": 18, + "offset": 264, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3291026220 + }, + "m_pvpDuelModifiersTemplates": { + "type": "class SharedPointer", + "id": 19, + "offset": 296, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1193155411 + }, + "m_teamSize": { + "type": "unsigned int", + "id": 20, + "offset": 256, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2343388751 + }, + "m_joinQueueRequirements": { + "type": "class SharedPointer", + "id": 21, + "offset": 312, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2746080983 + }, + "m_timeLimitSec": { + "type": "unsigned int", + "id": 22, + "offset": 328, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 312519798 + }, + "m_useHistoricDiego": { + "type": "bool", + "id": 23, + "offset": 352, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1688842509 + }, + "m_ignoredList": { + "type": "gid", + "id": 24, + "offset": 336, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1850924028 + }, + "m_matchTimer": { + "type": "float", + "id": 25, + "offset": 356, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1510935909 + }, + "m_bonusTime": { + "type": "int", + "id": 26, + "offset": 360, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1757496496 + }, + "m_passPenalty": { + "type": "int", + "id": 27, + "offset": 364, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 982951662 + }, + "m_yellowTime": { + "type": "int", + "id": 28, + "offset": 368, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1017028741 + }, + "m_redTime": { + "type": "int", + "id": 29, + "offset": 372, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1909556708 + }, + "m_minTurnTime": { + "type": "int", + "id": 30, + "offset": 376, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 652524886 + }, + "m_effects": { + "type": "class SharedPointer", + "id": 31, + "offset": 384, + "flags": 31, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 804962647 + }, + "m_updateBattlePassPoints": { + "type": "bool", + "id": 32, + "offset": 408, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 713306342 + }, + "m_battlePassWinPoints": { + "type": "int", + "id": 33, + "offset": 412, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1252337240 + }, + "m_battlePassLosePoints": { + "type": "int", + "id": 34, + "offset": 416, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1400839869 + } + } + }, + "725947370": { + "name": "class ClientPlayerStatueBehavior*", + "bases": [ + "PlayerStatueBehavior", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 725947370, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_visualBlobs": { + "type": "std::string", + "id": 1, + "offset": 176, + "flags": 31, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 3602657281 + } + } + }, + "1562533748": { + "name": "class ClientRemoveParticleActorCinematicAction", + "bases": [ + "RemoveParticleActorCinematicAction", + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 1562533748, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + }, + "m_effectName": { + "type": "std::string", + "id": 2, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2029161513 + }, + "m_nodeName": { + "type": "std::string", + "id": 3, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3607089954 + } + } + }, + "283068262": { + "name": "class SharedPointer", + "bases": [ + "GameEffectTemplate", + "PropertyClass" + ], + "hash": 283068262, + "properties": { + "m_effectName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2029161513 + }, + "m_effectCategory": { + "type": "std::string", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1852673222 + }, + "m_sortOrder": { + "type": "int", + "id": 2, + "offset": 148, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1411218206 + }, + "m_duration": { + "type": "double", + "id": 3, + "offset": 192, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2727932435 + }, + "m_stackingCategories": { + "type": "std::string", + "id": 4, + "offset": 160, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1774497525 + }, + "m_isPersistent": { + "type": "bool", + "id": 5, + "offset": 153, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 923861920 + }, + "m_bIsOnPet": { + "type": "bool", + "id": 6, + "offset": 154, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 522593303 + }, + "m_isPublic": { + "type": "bool", + "id": 7, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1728439822 + }, + "m_visualEffectAddName": { + "type": "std::string", + "id": 8, + "offset": 200, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3382086694 + }, + "m_visualEffectRemoveName": { + "type": "std::string", + "id": 9, + "offset": 232, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1541697323 + }, + "m_onAddFunctorName": { + "type": "std::string", + "id": 10, + "offset": 280, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1561843107 + }, + "m_onRemoveFunctorName": { + "type": "std::string", + "id": 11, + "offset": 312, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2559017864 + }, + "m_stackingRule": { + "type": "enum STACKING_RULE", + "id": 12, + "offset": 144, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 431568889, + "enum_options": { + "STACKING_ALLOWED": 0, + "STACKING_NOSTACK": 1, + "STACKING_REPLACE": 2 + } + }, + "m_invisLevel": { + "type": "unsigned char", + "id": 13, + "offset": 360, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2488151665 + } + } + }, + "724783357": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 724783357, + "properties": { + "m_Color": { + "type": "class Color", + "id": 0, + "offset": 72, + "flags": 262279, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1753714077 + }, + "m_sLabel": { + "type": "std::wstring", + "id": 1, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2207009163 + }, + "m_Flags": { + "type": "unsigned int", + "id": 2, + "offset": 112, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 967851578, + "enum_options": { + "ControlTree::Item::EXPANDED": 2, + "ControlTree::Item::BUTTON": 1 + } + }, + "m_Children": { + "type": "struct ControlTree::Item*", + "id": 3, + "offset": 128, + "flags": 135, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1558446980 + } + } + }, + "1998575840": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1998575840, + "properties": { + "m_circleNumber": { + "type": "unsigned int", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2324347272 + }, + "m_templateID": { + "type": "unsigned int", + "id": 1, + "offset": 76, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1286746870 + }, + "m_zonePath": { + "type": "std::string", + "id": 2, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2171239844 + }, + "m_activatorVolumeName": { + "type": "std::string", + "id": 3, + "offset": 112, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2802025985 + }, + "m_locationDisplayName": { + "type": "std::string", + "id": 4, + "offset": 144, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2796282603 + }, + "m_zoneDisplayName": { + "type": "std::string", + "id": 5, + "offset": 176, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1962339438 + }, + "m_overrideOffer": { + "type": "std::string", + "id": 6, + "offset": 208, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2733092717 + }, + "m_overrideCompleted": { + "type": "std::string", + "id": 7, + "offset": 240, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2887301912 + } + } + }, + "282729753": { + "name": "class MoveCommandTime", + "bases": [ + "MoveController::MoveCommand", + "PropertyClass" + ], + "hash": 282729753, + "properties": { + "m_vTarget": { + "type": "class Vector3D", + "id": 0, + "offset": 100, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3770499167 + }, + "m_fTime": { + "type": "float", + "id": 1, + "offset": 124, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 883746156 + } + } + }, + "724233985": { + "name": "class SharedPointer", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 724233985, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_jewelList": { + "type": "unsigned int", + "id": 1, + "offset": 112, + "flags": 65543, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1839384000 + } + } + }, + "1131456754": { + "name": "class ReqHasQuest*", + "bases": [ + "Requirement", + "PropertyClass" + ], + "hash": 1131456754, + "properties": { + "m_applyNOT": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1746328074, + "enum_options": { + "__DEFAULT": 0 + } + }, + "m_operator": { + "type": "enum Requirement::Operator", + "id": 1, + "offset": 76, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2672792317, + "enum_options": { + "ROP_AND": 0, + "ROP_OR": 1, + "__DEFAULT": "ROP_AND" + } + }, + "m_questName": { + "type": "std::string", + "id": 2, + "offset": 80, + "flags": 268435463, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1702112846, + "enum_options": { + "__BASECLASS": "QuestTemplate" + } + } + } + }, + "1131100408": { + "name": "class BracketIDList*", + "bases": [ + "PropertyClass" + ], + "hash": 1131100408, + "properties": { + "m_bracketIDList": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1493156413 + } + } + }, + "1564652069": { + "name": "class ClientClearTopTeamCinematicAction", + "bases": [ + "ClearTopTeamCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 1564652069, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_interpDuration": { + "type": "float", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237711951 + } + } + }, + "724755126": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 724755126, + "properties": { + "m_friendlyPlayerInfoList": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2302789544 + } + } + }, + "1563394131": { + "name": "class PvPSeasonTemplate*", + "bases": [ + "PropertyClass" + ], + "hash": 1563394131, + "properties": { + "m_seasonName": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1895926181 + }, + "m_seasonTitle": { + "type": "std::string", + "id": 1, + "offset": 112, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1758854694 + }, + "m_startMonth": { + "type": "int", + "id": 2, + "offset": 144, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 661899790 + }, + "m_startDay": { + "type": "int", + "id": 3, + "offset": 148, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 367473766 + }, + "m_startHour": { + "type": "int", + "id": 4, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1386544390 + }, + "m_startMinute": { + "type": "int", + "id": 5, + "offset": 156, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 357912026 + }, + "m_endMonth": { + "type": "int", + "id": 6, + "offset": 160, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1624246775 + }, + "m_endDay": { + "type": "int", + "id": 7, + "offset": 164, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 405825039 + }, + "m_endHour": { + "type": "int", + "id": 8, + "offset": 168, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 504652751 + }, + "m_endMinute": { + "type": "int", + "id": 9, + "offset": 172, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2050591459 + } + } + }, + "1998757649": { + "name": "class FriendlyPlayerInfoList*", + "bases": [ + "PropertyClass" + ], + "hash": 1998757649, + "properties": { + "m_friendlyPlayerInfoList": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2302789544 + } + } + }, + "283344906": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 283344906, + "properties": { + "m_leaderboardFriendsList": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 142730388 + } + } + }, + "1131615316": { + "name": "struct PetDerbyActionData", + "bases": [], + "hash": 1131615316, + "properties": {} + }, + "725294150": { + "name": "class GuildMuseumDataList", + "bases": [ + "PropertyClass" + ], + "hash": 725294150, + "properties": { + "m_worldIDList": { + "type": "unsigned int", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2050801310 + }, + "m_exhibitIDList": { + "type": "unsigned int", + "id": 1, + "offset": 88, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1339737091 + }, + "m_stateList": { + "type": "unsigned int", + "id": 2, + "offset": 104, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1658565962 + }, + "m_doorList": { + "type": "unsigned int", + "id": 3, + "offset": 120, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1783968669 + } + } + }, + "2004580525": { + "name": "class WizItemVendorData", + "bases": [ + "PropertyClass" + ], + "hash": 2004580525, + "properties": { + "m_shopKeeperID": { + "type": "unsigned int", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 862026800 + }, + "m_shopType": { + "type": "unsigned int", + "id": 1, + "offset": 76, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 658077993 + } + } + }, + "288780123": { + "name": "class SharedPointer", + "bases": [ + "GeomParams", + "PropertyClass" + ], + "hash": 288780123, + "properties": { + "m_eType": { + "type": "enum ProxyType", + "id": 0, + "offset": 72, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1656534066, + "enum_options": { + "ProxyTypeBox": 0, + "ProxyTypeRay": 1, + "ProxyTypeSphere": 2, + "ProxyTypeCylinder": 3, + "ProxyTypeTube": 4, + "ProxyTypePlane": 5, + "ProxyTypeMesh": 6, + "ProxyTypeInvalid": 7 + } + }, + "m_fRadius": { + "type": "float", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 787972805 + }, + "m_fLength": { + "type": "float", + "id": 2, + "offset": 84, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 558261279 + } + } + }, + "725043969": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 725043969, + "properties": { + "m_goalID": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 485200232 + }, + "m_name": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1717359772 + }, + "m_nameID": { + "type": "unsigned int", + "id": 2, + "offset": 112, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 954387579 + }, + "m_status": { + "type": "enum GOAL_STATUS", + "id": 3, + "offset": 116, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3025501257, + "enum_options": { + "GOAL_STATUS_INVALID": 4294967295, + "GOAL_STATUS_INCOMPLETE": 0, + "GOAL_STATUS_COMPLETE": 1 + } + }, + "m_location": { + "type": "std::string", + "id": 4, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2079561588 + }, + "m_type": { + "type": "enum GoalTemplate::GOAL_TYPE", + "id": 5, + "offset": 184, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1683753114, + "enum_options": { + "GoalTemplate::GOAL_TYPE_UNKNOWN": 0, + "GoalTemplate::GOAL_TYPE_BOUNTY": 1, + "GoalTemplate::GOAL_TYPE_BOUNTYCOLLECT": 2, + "GoalTemplate::GOAL_TYPE_SCAVENGE": 3, + "GoalTemplate::GOAL_TYPE_PERSONA": 4, + "GoalTemplate::GOAL_TYPE_WAYPOINT": 5, + "GoalTemplate::GOAL_TYPE_SCAVENGEFAKE": 6, + "GoalTemplate::GOAL_TYPE_ACHIEVERANK": 7, + "GoalTemplate::GOAL_TYPE_USAGE": 8, + "GoalTemplate::GOAL_TYPE_COMPLETEQUEST": 9, + "GoalTemplate::GOAL_TYPE_SOCIARANK": 10, + "GoalTemplate::GOAL_TYPE_SOCIACURRENCY": 11, + "GoalTemplate::GOAL_TYPE_SOCIAMINIGAME": 12, + "GoalTemplate::GOAL_TYPE_SOCIAGIVEITEM": 13, + "GoalTemplate::GOAL_TYPE_SOCIAGETITEM": 14, + "GoalTemplate::GOAL_TYPE_COLLECTAFTERBOUNTY": 15, + "GoalTemplate::GOAL_TYPE_ENCOUNTER_WAYPOINT_FOREACH": 16 + } + }, + "m_sendType": { + "type": "enum ENUM_SENDTYPE", + "id": 6, + "offset": 188, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1837051977, + "enum_options": { + "SENDTYPE_UNKNOWN": 4294967295, + "SENDTYPE_NORMAL": 0, + "SENDTYPE_NEW": 1, + "SENDTYPE_UPDATE": 2, + "SENDTYPE_NOUPDATE": 3 + } + }, + "m_madLibs": { + "type": "class SharedPointer", + "id": 7, + "offset": 192, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2589921204 + }, + "m_image1": { + "type": "std::string", + "id": 8, + "offset": 208, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2058810671 + }, + "m_image2": { + "type": "std::string", + "id": 9, + "offset": 240, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2058810672 + }, + "m_tagList": { + "type": "class SharedPointer", + "id": 10, + "offset": 272, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 464541847 + }, + "m_completeText": { + "type": "std::string", + "id": 11, + "offset": 288, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2767458393 + }, + "m_QuestHelperEnabled": { + "type": "bool", + "id": 12, + "offset": 320, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1164796656 + }, + "m_petOnlyQuest": { + "type": "bool", + "id": 13, + "offset": 321, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 679359344 + }, + "m_hasActiveResults": { + "type": "bool", + "id": 14, + "offset": 322, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1571197213 + }, + "m_hideGoalFloatyText": { + "type": "bool", + "id": 15, + "offset": 323, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1919383204 + } + } + }, + "1564926073": { + "name": "class ActiveMapQuestsCommon*", + "bases": [ + "PropertyClass" + ], + "hash": 1564926073, + "properties": { + "m_zoneID": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1229232257 + }, + "m_newQuestList": { + "type": "unsigned int", + "id": 1, + "offset": 80, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 394073349 + }, + "m_completedQuestList": { + "type": "unsigned int", + "id": 2, + "offset": 96, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 426641112 + } + } + }, + "2003390837": { + "name": "class ReqIsHatched", + "bases": [ + "Requirement", + "PropertyClass" + ], + "hash": 2003390837, + "properties": { + "m_applyNOT": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1746328074, + "enum_options": { + "__DEFAULT": 0 + } + }, + "m_operator": { + "type": "enum Requirement::Operator", + "id": 1, + "offset": 76, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2672792317, + "enum_options": { + "ROP_AND": 0, + "ROP_OR": 1, + "__DEFAULT": "ROP_AND" + } + } + } + }, + "287686942": { + "name": "class ClientRecipe*", + "bases": [ + "Recipe", + "CoreObject", + "PropertyClass" + ], + "hash": 287686942, + "properties": { + "m_inactiveBehaviors": { + "type": "class SharedPointer", + "id": 0, + "offset": 224, + "flags": 31, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1850812559 + }, + "m_globalID.m_full": { + "type": "unsigned __int64", + "id": 1, + "offset": 72, + "flags": 16777247, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2312465444 + }, + "m_permID": { + "type": "unsigned __int64", + "id": 2, + "offset": 80, + "flags": 16777247, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1298909658 + }, + "m_location": { + "type": "class Vector3D", + "id": 3, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2239683611 + }, + "m_orientation": { + "type": "class Vector3D", + "id": 4, + "offset": 180, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2344058766 + }, + "m_fScale": { + "type": "float", + "id": 5, + "offset": 196, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 503137701 + }, + "m_templateID.m_full": { + "type": "unsigned __int64", + "id": 6, + "offset": 96, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 633907631 + }, + "m_debugName": { + "type": "std::string", + "id": 7, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3553984419 + }, + "m_displayKey": { + "type": "std::string", + "id": 8, + "offset": 136, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3023276954 + }, + "m_zoneTagID": { + "type": "unsigned int", + "id": 9, + "offset": 344, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 965291410 + }, + "m_speedMultiplier": { + "type": "short", + "id": 10, + "offset": 192, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 123130076 + }, + "m_nMobileID": { + "type": "unsigned short", + "id": 11, + "offset": 194, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1054318939 + }, + "m_recipeNameID": { + "type": "unsigned int", + "id": 12, + "offset": 384, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2168714419 + } + } + }, + "1131817446": { + "name": "class PetGameActionList*", + "bases": [ + "Window", + "PropertyClass" + ], + "hash": 1131817446, + "properties": { + "m_sName": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306437263 + }, + "m_Children": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 65667, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621225959 + }, + "m_Style": { + "type": "unsigned int", + "id": 2, + "offset": 152, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "SCALE_CHILDREN": 2, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "FOCUS_LOCKED": 64, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152 + } + }, + "m_Flags": { + "type": "unsigned int", + "id": 3, + "offset": 156, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } + }, + "m_Window": { + "type": "class Rect", + "id": 4, + "offset": 160, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3105139380 + }, + "m_fTargetAlpha": { + "type": "float", + "id": 5, + "offset": 212, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1809129834 + }, + "m_fDisabledAlpha": { + "type": "float", + "id": 6, + "offset": 216, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1389987675 + }, + "m_fAlpha": { + "type": "float", + "id": 7, + "offset": 208, + "flags": 65671, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 482130755 + }, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3623628394 + }, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2102211316 + }, + "m_sScript": { + "type": "std::string", + "id": 10, + "offset": 352, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1846695875 + }, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3389835433 + }, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547159940 + }, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513510520 + }, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3091503757 + } + } + }, + "1564764121": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1564764121, + "properties": { + "m_maxBattleCards": { + "type": "int", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1906062665 + } + } + }, + "2002643208": { + "name": "class ResSummonHenchman", + "bases": [ + "Result", + "PropertyClass" + ], + "hash": 2002643208, + "properties": { + "m_templateID": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 33554439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1075328001 + } + } + }, + "284550330": { + "name": "class SharedPointer", + "bases": [ + "Window", + "PropertyClass" + ], + "hash": 284550330, + "properties": { + "m_sName": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306437263 + }, + "m_Children": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621225959 + }, + "m_Style": { + "type": "unsigned int", + "id": 2, + "offset": 152, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "SCALE_CHILDREN": 2, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "FOCUS_LOCKED": 64, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152 + } + }, + "m_Flags": { + "type": "unsigned int", + "id": 3, + "offset": 156, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } + }, + "m_Window": { + "type": "class Rect", + "id": 4, + "offset": 160, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3105139380 + }, + "m_fTargetAlpha": { + "type": "float", + "id": 5, + "offset": 212, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1809129834 + }, + "m_fDisabledAlpha": { + "type": "float", + "id": 6, + "offset": 216, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1389987675 + }, + "m_fAlpha": { + "type": "float", + "id": 7, + "offset": 208, + "flags": 65671, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 482130755 + }, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3623628394 + }, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2102211316 + }, + "m_sScript": { + "type": "std::string", + "id": 10, + "offset": 352, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1846695875 + }, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3389835433 + }, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547159940 + }, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513510520 + }, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3091503757 + } + } + }, + "1131660356": { + "name": "class WizardEquippedItemInfo*", + "bases": [ + "EquippedItemInfo", + "PropertyClass" + ], + "hash": 1131660356, + "properties": { + "m_itemID": { + "type": "unsigned int", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 780964329 + }, + "m_baseColor": { + "type": "bui5", + "id": 1, + "offset": 92, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1433198221 + }, + "m_trimColor": { + "type": "bui5", + "id": 2, + "offset": 96, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1198446862 + }, + "m_pattern": { + "type": "bui5", + "id": 3, + "offset": 100, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1338360593 + }, + "m_displayID": { + "type": "unsigned int", + "id": 4, + "offset": 88, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1233846672 + }, + "m_pJewelInfo": { + "type": "class SharedPointer", + "id": 5, + "offset": 120, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 387523703 + }, + "m_fullColor": { + "type": "u24", + "id": 6, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 301226616 + } + } + }, + "1999431021": { + "name": "class WhirlyBurlyBehavior", + "bases": [ + "WhirlyBurlyBehaviorBase", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1999431021, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + } + } + }, + "284413786": { + "name": "class MatchTemplate*", + "bases": [ + "CoreTemplate", + "PropertyClass" + ], + "hash": 284413786, + "properties": { + "m_behaviors": { + "type": "class BehaviorTemplate*", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1197808594 + }, + "m_matchName": { + "type": "std::string", + "id": 1, + "offset": 128, + "flags": 134217735, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2061215721 + }, + "m_matchDisplayName": { + "type": "std::string", + "id": 2, + "offset": 96, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3201906495 + }, + "m_matchTitle": { + "type": "std::string", + "id": 3, + "offset": 168, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2918442218 + }, + "m_allowOverrides": { + "type": "bool", + "id": 4, + "offset": 200, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 469376485 + }, + "m_teamSize": { + "type": "unsigned int", + "id": 5, + "offset": 208, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2343388751 + }, + "m_teamCount": { + "type": "unsigned int", + "id": 6, + "offset": 204, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1825878845 + }, + "m_minTeams": { + "type": "unsigned int", + "id": 7, + "offset": 212, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1717685739 + }, + "m_timeout": { + "type": "int", + "id": 8, + "offset": 216, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 365357953 + }, + "m_maxPointsPerMatch": { + "type": "unsigned int", + "id": 9, + "offset": 280, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1397040900 + }, + "m_estimatedWeight": { + "type": "float", + "id": 10, + "offset": 284, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1374360127 + }, + "m_matchInfo": { + "type": "class SharedPointer", + "id": 11, + "offset": 256, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2424135306 + }, + "m_awardInfo": { + "type": "class SharedPointer", + "id": 12, + "offset": 224, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2862912855 + }, + "m_perLeagueAwardInfo": { + "type": "class SharedPointer", + "id": 13, + "offset": 240, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1635456322 + }, + "m_zones": { + "type": "std::string", + "id": 14, + "offset": 288, + "flags": 268435463, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2315938538, + "enum_options": { + "__BASECLASS": "ZoneData" + } + }, + "m_initialQueueThreshold": { + "type": "unsigned int", + "id": 15, + "offset": 312, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2069737705 + }, + "m_actorQueueTimeout": { + "type": "unsigned int", + "id": 16, + "offset": 316, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2220949042 + }, + "m_teamQueueTimeout": { + "type": "unsigned int", + "id": 17, + "offset": 320, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 905233664 + }, + "m_actorQueueGrowth": { + "type": "float", + "id": 18, + "offset": 324, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 499165488 + }, + "m_teamQueueGrowth": { + "type": "float", + "id": 19, + "offset": 328, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1500499518 + }, + "m_matchMakingLevelMultiplier": { + "type": "float", + "id": 20, + "offset": 332, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 838900890 + }, + "m_levelModifiersListID": { + "type": "gid", + "id": 21, + "offset": 336, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 383459035 + }, + "m_incompleteTeamTimeout": { + "type": "unsigned int", + "id": 22, + "offset": 276, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1580576011 + }, + "m_incompleteMatchTimeout": { + "type": "unsigned int", + "id": 23, + "offset": 272, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2167303729 + }, + "m_shortMatchDurationForPenaltySeconds": { + "type": "unsigned int", + "id": 24, + "offset": 360, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1403927011 + }, + "m_thresholdForExtendingMatchSearch": { + "type": "unsigned int", + "id": 25, + "offset": 364, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1973589002 + }, + "m_numberOfPlayersRequiredToExtendMatchSearch": { + "type": "unsigned int", + "id": 26, + "offset": 368, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 858588026 + }, + "m_showStatusOnJoinQueue": { + "type": "bool", + "id": 27, + "offset": 376, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1803391338 + }, + "m_allowExceedRangeForMatchesOptionForPlayers": { + "type": "bool", + "id": 28, + "offset": 377, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 592913977 + }, + "m_makeTeamsWithSameMatchOptsTimeoutSec": { + "type": "int", + "id": 29, + "offset": 372, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1787977769 + }, + "m_streakSize": { + "type": "int", + "id": 30, + "offset": 380, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1155220287 + }, + "m_historySize": { + "type": "int", + "id": 31, + "offset": 384, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 229055111 + }, + "m_queueWaitingTime": { + "type": "int", + "id": 32, + "offset": 388, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 15229089 + }, + "m_minQueueSize": { + "type": "int", + "id": 33, + "offset": 392, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1319267550 + }, + "m_maxQueueSize": { + "type": "int", + "id": 34, + "offset": 396, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1277586976 + }, + "m_confTierRankTimeout": { + "type": "int", + "id": 35, + "offset": 400, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 79057063 + }, + "m_matchTimer": { + "type": "float", + "id": 36, + "offset": 404, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1510935909 + }, + "m_bonusTime": { + "type": "int", + "id": 37, + "offset": 408, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1757496496 + }, + "m_passPenalty": { + "type": "int", + "id": 38, + "offset": 412, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 982951662 + }, + "m_yellowTime": { + "type": "int", + "id": 39, + "offset": 416, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1017028741 + }, + "m_redTime": { + "type": "int", + "id": 40, + "offset": 420, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1909556708 + }, + "m_minTurnTime": { + "type": "int", + "id": 41, + "offset": 424, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 652524886 + }, + "m_effects": { + "type": "class SharedPointer", + "id": 42, + "offset": 432, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 804962647 + }, + "m_updateBattlePassPoints": { + "type": "bool", + "id": 43, + "offset": 456, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 713306342 + }, + "m_battlePassWinPoints": { + "type": "int", + "id": 44, + "offset": 460, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1252337240 + }, + "m_battlePassLosePoints": { + "type": "int", + "id": 45, + "offset": 464, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1400839869 + } + } + }, + "725947360": { + "name": "class ClientPlayerStatueBehavior", + "bases": [ + "PlayerStatueBehavior", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 725947360, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_visualBlobs": { + "type": "std::string", + "id": 1, + "offset": 176, + "flags": 31, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 3602657281 + } + } + }, + "284348187": { + "name": "class BlobDirectory", + "bases": [ + "PropertyClass" + ], + "hash": 284348187, + "properties": { + "m_blobDefinitionList": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2267613747 + } + } + }, + "1564927353": { + "name": "class ActiveMapQuestsCommon", + "bases": [ + "PropertyClass" + ], + "hash": 1564927353, + "properties": { + "m_zoneID": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1229232257 + }, + "m_newQuestList": { + "type": "unsigned int", + "id": 1, + "offset": 80, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 394073349 + }, + "m_completedQuestList": { + "type": "unsigned int", + "id": 2, + "offset": 96, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 426641112 + } + } + }, + "284102765": { + "name": "class SharedPointer", + "bases": [ + "UntargetableCinematicAction", + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 284102765, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + } + } + }, + "1132481924": { + "name": "class HousingObjectJewelWandContainer*", + "bases": [ + "HousingObjectWandContainer", + "PropertyClass" + ], + "hash": 1132481924, + "properties": { + "m_displayID": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 65543, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1022427803 + }, + "m_jewelBuffer": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 65543, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2221753804 + } + } + }, + "2002732489": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 2002732489, + "properties": { + "m_level": { + "type": "unsigned char", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1438884808 + }, + "m_xpToLevel": { + "type": "int", + "id": 1, + "offset": 76, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1972600157 + }, + "m_levelName": { + "type": "std::string", + "id": 2, + "offset": 80, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3595417396 + } + } + }, + "728610126": { + "name": "class TerrainCheerCostMap*", + "bases": [ + "PropertyClass" + ], + "hash": 728610126, + "properties": { + "m_nCostChangeAmt": { + "type": "int", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1687521865 + }, + "m_kTerrainType": { + "type": "enum DerbyTerrainTargetType", + "id": 1, + "offset": 76, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2546445910, + "enum_options": { + "Grass": 0, + "Dirt": 1, + "Clay": 2, + "AllObstacleTerrain": 4 + } + } + } + }, + "1565111275": { + "name": "class SharedPointer", + "bases": [ + "HousingBlobObject", + "PropertyClass" + ], + "hash": 1565111275, + "properties": { + "m_gameObjectTemplateID": { + "type": "unsigned int", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1154586887, + "enum_options": { + "__DEFAULT": 0 + } + }, + "m_positionXY": { + "type": "unsigned int", + "id": 1, + "offset": 76, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1263476723, + "enum_options": { + "__DEFAULT": 0 + } + }, + "m_positionZ": { + "type": "float", + "id": 2, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 837995846, + "enum_options": { + "__DEFAULT": 0 + } + }, + "m_yaw": { + "type": "unsigned char", + "id": 3, + "offset": 84, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 904654625, + "enum_options": { + "__DEFAULT": 0 + } + }, + "m_extraData1": { + "type": "unsigned int", + "id": 4, + "offset": 88, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 693220060, + "enum_options": { + "__DEFAULT": 0 + } + }, + "m_customData": { + "type": "std::string", + "id": 5, + "offset": 96, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1638082768 + } + } + }, + "727508420": { + "name": "class FilterSetTemplate*", + "bases": [ + "CoreTemplate", + "PropertyClass" + ], + "hash": 727508420, + "properties": { + "m_behaviors": { + "type": "class BehaviorTemplate*", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1197808594 + }, + "m_name": { + "type": "std::string", + "id": 1, + "offset": 96, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1717359772 + }, + "m_uid": { + "type": "unsigned int", + "id": 2, + "offset": 128, + "flags": 16777223, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 478453519 + }, + "m_filters": { + "type": "class SharedPointer", + "id": 3, + "offset": 136, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2539658755 + } + } + }, + "284348192": { + "name": "class BlobDirectory*", + "bases": [ + "PropertyClass" + ], + "hash": 284348192, + "properties": { + "m_blobDefinitionList": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2267613747 + } + } + }, + "726596974": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 726596974, + "properties": { + "m_fCenterOfMassX": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1084414079 + }, + "m_fCenterOfMassY": { + "type": "float", + "id": 1, + "offset": 76, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1084414080 + }, + "m_fCenterOfMassZ": { + "type": "float", + "id": 2, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1084414081 + }, + "m_MassShape": { + "type": "enum MassShapeTemplate::MassShape", + "id": 3, + "offset": 84, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2243789942, + "enum_options": { + "__DEFAULT": "MS_SPHERE", + "MS_SPHERE": 0, + "MS_CYLINDER": 1, + "MS_TUBE": 2, + "MS_BOX": 3, + "MS_MESH": 4 + } + }, + "m_fRadiusMeters": { + "type": "float", + "id": 4, + "offset": 88, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 459620885, + "enum_options": { + "__DEFAULT": "1.0" + } + }, + "m_CylinderDirection": { + "type": "int", + "id": 5, + "offset": 92, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1961650261, + "enum_options": { + "__DEFAULT": 1, + "CD_X": 1, + "CD_Y": 2, + "CD_Z": 3 + } + }, + "m_fLength": { + "type": "float", + "id": 6, + "offset": 96, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 558261279, + "enum_options": { + "__DEFAULT": "1.0" + } + }, + "m_fWidth": { + "type": "float", + "id": 7, + "offset": 100, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 508100541, + "enum_options": { + "__DEFAULT": "1.0" + } + }, + "m_fHeight": { + "type": "float", + "id": 8, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 401539638, + "enum_options": { + "__DEFAULT": "1.0" + } + }, + "m_fMassKilograms": { + "type": "float", + "id": 9, + "offset": 108, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1502844666, + "enum_options": { + "__DEFAULT": "1.0" + } + } + } + }, + "1136742422": { + "name": "class SharedPointer", + "bases": [ + "StopComplexSoundCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 1136742422, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_sound": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2307644996 + }, + "m_stopAllLoopingSounds": { + "type": "bool", + "id": 2, + "offset": 112, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1944220294 + }, + "m_fadeDuration": { + "type": "float", + "id": 3, + "offset": 116, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1402536557 + } + } + }, + "2003418478": { + "name": "class SharedPointer", + "bases": [ + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 2003418478, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + } + } + }, + "1135094549": { + "name": "class WizItemGoldChestList", + "bases": [ + "WizItemLocations", + "PropertyClass" + ], + "hash": 1135094549, + "properties": { + "m_itemType": { + "type": "enum WizItemLocations::eItemType", + "id": 0, + "offset": 72, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3482173907, + "enum_options": { + "shop": 0, + "quest": 1, + "boss": 2, + "gardening": 3, + "goldChest": 4 + } + }, + "m_goldChestZones": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2718514023 + } + } + }, + "1572433344": { + "name": "class SharedPointer", + "bases": [ + "LootInfo", + "LootInfoBase", + "PropertyClass" + ], + "hash": 1572433344, + "properties": { + "m_lootType": { + "type": "enum LootInfo::LOOT_TYPE", + "id": 0, + "offset": 72, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1591891442, + "enum_options": { + "LOOT_TYPE_NONE": 0, + "LOOT_TYPE_GOLD": 1, + "LOOT_TYPE_MANA": 2, + "LOOT_TYPE_ITEM": 3, + "LOOT_TYPE_TREASURE_CARD": 4, + "LOOT_TYPE_MAGIC_XP": 5, + "LOOT_TYPE_ADD_SPELL": 6, + "LOOT_TYPE_MAX_HEALTH": 7, + "LOOT_TYPE_MAX_GOLD": 8, + "LOOT_TYPE_MAX_MANA": 9, + "LOOT_TYPE_MAX_POTION": 10, + "LOOT_TYPE_TRAINING_POINTS": 11, + "LOOT_TYPE_RECIPE": 12, + "LOOT_TYPE_CRAFTING_SLOT": 13, + "LOOT_TYPE_REAGENT": 14, + "LOOT_TYPE_PETSNACK": 15, + "LOOT_TYPE_GARDENING_XP": 16, + "LOOT_TYPE_PET_XP": 17, + "LOOT_TYPE_TREASURE_TABLE": 18, + "LOOT_TYPE_ARENA_POINTS": 19, + "LOOT_TYPE_ARENA_BONUS_POINTS": 20, + "LOOT_TYPE_GROUP": 21, + "LOOT_TYPE_FISHING_XP": 22, + "LOOT_TYPE_EVENT_CURRENCY_1": 24, + "LOOT_TYPE_EVENT_CURRENCY_2": 25, + "LOOT_TYPE_PVP_CURRENCY": 26, + "LOOT_TYPE_PVP_CURRENCY_BONUS": 27, + "LOOT_TYPE_PVP_TOURNEY_CURRENCY": 28, + "LOOT_TYPE_PVP_TOURNEY_CURRENCY_BONUS": 29, + "LOOT_TYPE_FURNITURE_ESSENCE": 30 + } + }, + "m_pvpTourneyCurrencyBonusAmount": { + "type": "int", + "id": 1, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1691016556 + } + } + }, + "726935928": { + "name": "class PolymorphBattlegroundsBehavior", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 726935928, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_maxTempStartingPips": { + "type": "int", + "id": 1, + "offset": 112, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 997576222 + }, + "m_maxTempStartingPowerPips": { + "type": "int", + "id": 2, + "offset": 116, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 31848011 + } + } + }, + "1134547011": { + "name": "class SharedPointer", + "bases": [ + "ObstacleCourseObstacleBehavior", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1134547011, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + } + } + }, + "1569343273": { + "name": "class RitualObjectBehavior", + "bases": [ + "RitualObjectBehaviorBase", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1569343273, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_playerList": { + "type": "gid", + "id": 1, + "offset": 112, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1909774945 + } + } + }, + "2004131766": { + "name": "class ReqArenaSeasonScore*", + "bases": [ + "ReqNumeric", + "Requirement", + "PropertyClass" + ], + "hash": 2004131766, + "properties": { + "m_applyNOT": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1746328074, + "enum_options": { + "__DEFAULT": 0 + } + }, + "m_operator": { + "type": "enum Requirement::Operator", + "id": 1, + "offset": 76, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2672792317, + "enum_options": { + "ROP_AND": 0, + "ROP_OR": 1, + "__DEFAULT": "ROP_AND" + } + }, + "m_numericValue": { + "type": "float", + "id": 2, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 521915239 + }, + "m_operatorType": { + "type": "enum ReqNumeric::OPERATOR_TYPE", + "id": 3, + "offset": 84, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2228122961, + "enum_options": { + "OPERATOR_UNKNOWN": 4294967295, + "OPERATOR_EQUALS": 0, + "OPERATOR_GREATER_THAN": 1, + "OPERATOR_LESS_THAN": 2, + "OPERATOR_GREATER_THAN_EQ": 3, + "OPERATOR_LESS_THAN_EQ": 4 + } + }, + "m_tournament": { + "type": "std::string", + "id": 4, + "offset": 88, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2799932264 + } + } + }, + "284413791": { + "name": "class MatchTemplate", + "bases": [ + "CoreTemplate", + "PropertyClass" + ], + "hash": 284413791, + "properties": { + "m_behaviors": { + "type": "class BehaviorTemplate*", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1197808594 + }, + "m_matchName": { + "type": "std::string", + "id": 1, + "offset": 128, + "flags": 134217735, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2061215721 + }, + "m_matchDisplayName": { + "type": "std::string", + "id": 2, + "offset": 96, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3201906495 + }, + "m_matchTitle": { + "type": "std::string", + "id": 3, + "offset": 168, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2918442218 + }, + "m_allowOverrides": { + "type": "bool", + "id": 4, + "offset": 200, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 469376485 + }, + "m_teamSize": { + "type": "unsigned int", + "id": 5, + "offset": 208, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2343388751 + }, + "m_teamCount": { + "type": "unsigned int", + "id": 6, + "offset": 204, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1825878845 + }, + "m_minTeams": { + "type": "unsigned int", + "id": 7, + "offset": 212, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1717685739 + }, + "m_timeout": { + "type": "int", + "id": 8, + "offset": 216, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 365357953 + }, + "m_maxPointsPerMatch": { + "type": "unsigned int", + "id": 9, + "offset": 280, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1397040900 + }, + "m_estimatedWeight": { + "type": "float", + "id": 10, + "offset": 284, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1374360127 + }, + "m_matchInfo": { + "type": "class SharedPointer", + "id": 11, + "offset": 256, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2424135306 + }, + "m_awardInfo": { + "type": "class SharedPointer", + "id": 12, + "offset": 224, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2862912855 + }, + "m_perLeagueAwardInfo": { + "type": "class SharedPointer", + "id": 13, + "offset": 240, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1635456322 + }, + "m_zones": { + "type": "std::string", + "id": 14, + "offset": 288, + "flags": 268435463, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2315938538, + "enum_options": { + "__BASECLASS": "ZoneData" + } + }, + "m_initialQueueThreshold": { + "type": "unsigned int", + "id": 15, + "offset": 312, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2069737705 + }, + "m_actorQueueTimeout": { + "type": "unsigned int", + "id": 16, + "offset": 316, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2220949042 + }, + "m_teamQueueTimeout": { + "type": "unsigned int", + "id": 17, + "offset": 320, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 905233664 + }, + "m_actorQueueGrowth": { + "type": "float", + "id": 18, + "offset": 324, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 499165488 + }, + "m_teamQueueGrowth": { + "type": "float", + "id": 19, + "offset": 328, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1500499518 + }, + "m_matchMakingLevelMultiplier": { + "type": "float", + "id": 20, + "offset": 332, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 838900890 + }, + "m_levelModifiersListID": { + "type": "gid", + "id": 21, + "offset": 336, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 383459035 + }, + "m_incompleteTeamTimeout": { + "type": "unsigned int", + "id": 22, + "offset": 276, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1580576011 + }, + "m_incompleteMatchTimeout": { + "type": "unsigned int", + "id": 23, + "offset": 272, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2167303729 + }, + "m_shortMatchDurationForPenaltySeconds": { + "type": "unsigned int", + "id": 24, + "offset": 360, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1403927011 + }, + "m_thresholdForExtendingMatchSearch": { + "type": "unsigned int", + "id": 25, + "offset": 364, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1973589002 + }, + "m_numberOfPlayersRequiredToExtendMatchSearch": { + "type": "unsigned int", + "id": 26, + "offset": 368, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 858588026 + }, + "m_showStatusOnJoinQueue": { + "type": "bool", + "id": 27, + "offset": 376, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1803391338 + }, + "m_allowExceedRangeForMatchesOptionForPlayers": { + "type": "bool", + "id": 28, + "offset": 377, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 592913977 + }, + "m_makeTeamsWithSameMatchOptsTimeoutSec": { + "type": "int", + "id": 29, + "offset": 372, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1787977769 + }, + "m_streakSize": { + "type": "int", + "id": 30, + "offset": 380, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1155220287 + }, + "m_historySize": { + "type": "int", + "id": 31, + "offset": 384, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 229055111 + }, + "m_queueWaitingTime": { + "type": "int", + "id": 32, + "offset": 388, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 15229089 + }, + "m_minQueueSize": { + "type": "int", + "id": 33, + "offset": 392, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1319267550 + }, + "m_maxQueueSize": { + "type": "int", + "id": 34, + "offset": 396, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1277586976 + }, + "m_confTierRankTimeout": { + "type": "int", + "id": 35, + "offset": 400, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 79057063 + }, + "m_matchTimer": { + "type": "float", + "id": 36, + "offset": 404, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1510935909 + }, + "m_bonusTime": { + "type": "int", + "id": 37, + "offset": 408, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1757496496 + }, + "m_passPenalty": { + "type": "int", + "id": 38, + "offset": 412, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 982951662 + }, + "m_yellowTime": { + "type": "int", + "id": 39, + "offset": 416, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1017028741 + }, + "m_redTime": { + "type": "int", + "id": 40, + "offset": 420, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1909556708 + }, + "m_minTurnTime": { + "type": "int", + "id": 41, + "offset": 424, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 652524886 + }, + "m_effects": { + "type": "class SharedPointer", + "id": 42, + "offset": 432, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 804962647 + }, + "m_updateBattlePassPoints": { + "type": "bool", + "id": 43, + "offset": 456, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 713306342 + }, + "m_battlePassWinPoints": { + "type": "int", + "id": 44, + "offset": 460, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1252337240 + }, + "m_battlePassLosePoints": { + "type": "int", + "id": 45, + "offset": 464, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1400839869 + } + } + }, + "1133923160": { + "name": "class std::list >", + "bases": [], + "hash": 1133923160, + "properties": {} + }, + "1567024062": { + "name": "class BackpackBuddySchoolOptions", + "bases": [ + "PropertyClass" + ], + "hash": 1567024062, + "properties": { + "m_balance": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 429321305 + }, + "m_death": { + "type": "bool", + "id": 1, + "offset": 73, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 794256793 + }, + "m_fire": { + "type": "bool", + "id": 2, + "offset": 74, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 221862713 + }, + "m_ice": { + "type": "bool", + "id": 3, + "offset": 75, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 269518980 + }, + "m_life": { + "type": "bool", + "id": 4, + "offset": 76, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 222077939 + }, + "m_myth": { + "type": "bool", + "id": 5, + "offset": 77, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 222131765 + }, + "m_storm": { + "type": "bool", + "id": 6, + "offset": 78, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 812599848 + }, + "m_astral": { + "type": "bool", + "id": 7, + "offset": 79, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 258319322 + }, + "m_shadow": { + "type": "bool", + "id": 8, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 949013689 + } + } + }, + "1567024052": { + "name": "class BackpackBuddySchoolOptions*", + "bases": [ + "PropertyClass" + ], + "hash": 1567024052, + "properties": { + "m_balance": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 429321305 + }, + "m_death": { + "type": "bool", + "id": 1, + "offset": 73, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 794256793 + }, + "m_fire": { + "type": "bool", + "id": 2, + "offset": 74, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 221862713 + }, + "m_ice": { + "type": "bool", + "id": 3, + "offset": 75, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 269518980 + }, + "m_life": { + "type": "bool", + "id": 4, + "offset": 76, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 222077939 + }, + "m_myth": { + "type": "bool", + "id": 5, + "offset": 77, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 222131765 + }, + "m_storm": { + "type": "bool", + "id": 6, + "offset": 78, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 812599848 + }, + "m_astral": { + "type": "bool", + "id": 7, + "offset": 79, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 258319322 + }, + "m_shadow": { + "type": "bool", + "id": 8, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 949013689 + } + } + }, + "728066888": { + "name": "class ProvideCombatTriggerInfo*", + "bases": [ + "GameEffectInfo", + "PropertyClass" + ], + "hash": 728066888, + "properties": { + "m_effectName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2029161513 + }, + "m_triggerName": { + "type": "std::string", + "id": 1, + "offset": 104, + "flags": 268435463, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3100183568, + "enum_options": { + "__BASECLASS": "CombatTriggerList" + } + }, + "m_triggerDescription": { + "type": "class SharedPointer", + "id": 2, + "offset": 136, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2619655202 + } + } + }, + "1566443063": { + "name": "class SharedPointer", + "bases": [ + "CombatRule", + "PropertyClass" + ], + "hash": 1566443063, + "properties": { + "m_shadowThresholdType": { + "type": "enum kShadow_Threshold_Type", + "id": 0, + "offset": 72, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2847763136, + "enum_options": { + "SHADOW_THRESHOLD_MIN": 0, + "SHADOW_THRESHOLD_AVG": 1, + "SHADOW_THRESHOLD_MAX": 2 + } + }, + "m_shadowThresholdFactor": { + "type": "float", + "id": 1, + "offset": 76, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2104355177 + }, + "m_shadowPipRatingFactor": { + "type": "float", + "id": 2, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1061434314 + } + } + }, + "2005647508": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 2005647508, + "properties": { + "m_templateID": { + "type": "unsigned int", + "id": 0, + "offset": 72, + "flags": 71, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1286746870 + }, + "m_actorName": { + "type": "std::string", + "id": 1, + "offset": 96, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2050810421 + }, + "m_animations": { + "type": "class SharedPointer", + "id": 2, + "offset": 128, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2741681697 + }, + "m_templateIDs": { + "type": "unsigned int", + "id": 3, + "offset": 80, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1335199401 + } + } + }, + "285844797": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 285844797, + "properties": {} + }, + "2004688673": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 2004688673, + "properties": {} + }, + "285236358": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 285236358, + "properties": { + "m_playerID": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1774633426 + }, + "m_nameBlob": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3058206907 + }, + "m_status": { + "type": "enum BGGroupStatusEnum", + "id": 2, + "offset": 112, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1016087325, + "enum_options": { + "BGS_Checking": 0, + "BGS_Ready": 1, + "BGS_LowLevel": 2, + "BGS_Cheater": 3, + "BGS_OnCooldown": 4, + "BGS_QueuedForBG": 5, + "BGS_QueuedForPVP": 6, + "BGS_Disconnected": 7, + "BGS_LeftGroup": 8, + "BGS_GroupToBig": 9, + "BGS_Unavailable": 10 + } + } + } + }, + "1135808511": { + "name": "class WhirlyBurlySpellTemplate*", + "bases": [ + "SpellTemplate", + "CoreTemplate", + "PropertyClass" + ], + "hash": 1135808511, + "properties": { + "m_behaviors": { + "type": "class BehaviorTemplate*", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1197808594 + }, + "m_name": { + "type": "std::string", + "id": 1, + "offset": 96, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1717359772 + }, + "m_description": { + "type": "std::string", + "id": 2, + "offset": 168, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1649374815 + }, + "m_advancedDescription": { + "type": "std::string", + "id": 3, + "offset": 200, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3465713013 + }, + "m_displayName": { + "type": "std::string", + "id": 4, + "offset": 136, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2446900370 + }, + "m_spellBase": { + "type": "std::string", + "id": 5, + "offset": 248, + "flags": 268435463, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2688054198, + "enum_options": { + "__BASECLASS": "CinematicTemplate" + } + }, + "m_effects": { + "type": "class SharedPointer", + "id": 6, + "offset": 280, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 370726379 + }, + "m_sMagicSchoolName": { + "type": "std::string", + "id": 7, + "offset": 312, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2035693400 + }, + "m_sTypeName": { + "type": "std::string", + "id": 8, + "offset": 352, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3580785905 + }, + "m_trainingCost": { + "type": "int", + "id": 9, + "offset": 384, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 982588239 + }, + "m_accuracy": { + "type": "int", + "id": 10, + "offset": 388, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1636315493 + }, + "m_baseCost": { + "type": "int", + "id": 11, + "offset": 232, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1475151502 + }, + "m_creditsCost": { + "type": "int", + "id": 12, + "offset": 236, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 715313825 + }, + "m_pvpCurrencyCost": { + "type": "int", + "id": 13, + "offset": 240, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 645595444 + }, + "m_pvpTourneyCurrencyCost": { + "type": "int", + "id": 14, + "offset": 244, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 517874954 + }, + "m_boosterPackIcon": { + "type": "std::string", + "id": 15, + "offset": 496, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3428653697 + }, + "m_validTargetSpells": { + "type": "unsigned int", + "id": 16, + "offset": 392, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2355782967 + }, + "m_PvP": { + "type": "bool", + "id": 17, + "offset": 408, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 269492361 + }, + "m_PvE": { + "type": "bool", + "id": 18, + "offset": 409, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 269492350 + }, + "m_noPvPEnchant": { + "type": "bool", + "id": 19, + "offset": 410, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 661581703 + }, + "m_noPvEEnchant": { + "type": "bool", + "id": 20, + "offset": 411, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 10144220 + }, + "m_battlegroundsOnly": { + "type": "bool", + "id": 21, + "offset": 412, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1244782419 + }, + "m_Treasure": { + "type": "bool", + "id": 22, + "offset": 413, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1749096414 + }, + "m_noDiscard": { + "type": "bool", + "id": 23, + "offset": 414, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 565749226 + }, + "m_leavesPlayWhenCast": { + "type": "bool", + "id": 24, + "offset": 532, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 698216294 + }, + "m_imageIndex": { + "type": "int", + "id": 25, + "offset": 416, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1570500405 + }, + "m_imageName": { + "type": "std::string", + "id": 26, + "offset": 424, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2391520543 + }, + "m_cloaked": { + "type": "bool", + "id": 27, + "offset": 489, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 7349510 + }, + "m_casterInvisible": { + "type": "bool", + "id": 28, + "offset": 490, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 310214650 + }, + "m_adjectives": { + "type": "std::string", + "id": 29, + "offset": 576, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2967855037 + }, + "m_spellSourceType": { + "type": "enum SpellTemplate::kSpellSourceType", + "id": 30, + "offset": 528, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 156272727, + "enum_options": { + "kCaster": 0, + "kPet": 1, + "kShadowCreature": 2, + "kWeapon": 3, + "kEquipment": 4 + } + }, + "m_cloakedName": { + "type": "std::string", + "id": 31, + "offset": 536, + "flags": 268435463, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2846679215, + "enum_options": { + "__BASECLASS": "SpellTemplate" + } + }, + "m_purchaseRequirements": { + "type": "class RequirementList*", + "id": 32, + "offset": 608, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3174641793 + }, + "m_displayRequirements": { + "type": "class RequirementList*", + "id": 33, + "offset": 840, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3646782876 + }, + "m_descriptionTrainer": { + "type": "std::string", + "id": 34, + "offset": 616, + "flags": 8388871, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1756093908 + }, + "m_descriptionCombatHUD": { + "type": "std::string", + "id": 35, + "offset": 648, + "flags": 8388871, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1631478006 + }, + "m_displayIndex": { + "type": "int", + "id": 36, + "offset": 680, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1250551048 + }, + "m_hiddenFromEffectsWindow": { + "type": "bool", + "id": 37, + "offset": 684, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1832736331 + }, + "m_ignoreCharms": { + "type": "bool", + "id": 38, + "offset": 685, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1840075893 + }, + "m_alwaysFizzle": { + "type": "bool", + "id": 39, + "offset": 686, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2030988856 + }, + "m_spellCategory": { + "type": "std::string", + "id": 40, + "offset": 688, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2472376729 + }, + "m_showPolymorphedName": { + "type": "bool", + "id": 41, + "offset": 720, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2097929096 + }, + "m_skipTruncation": { + "type": "bool", + "id": 42, + "offset": 721, + "flags": 263, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1838335249 + }, + "m_maxCopies": { + "type": "unsigned int", + "id": 43, + "offset": 724, + "flags": 263, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 403022326 + }, + "m_levelRestriction": { + "type": "int", + "id": 44, + "offset": 728, + "flags": 263, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 176502472 + }, + "m_delayEnchantment": { + "type": "bool", + "id": 45, + "offset": 732, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 191336919 + }, + "m_delayEnchantmentOrder": { + "type": "enum SpellEffect::kDelayOrder", + "id": 46, + "offset": 736, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2526055263, + "enum_options": { + "SpellEffect::kAnyOrder": 0, + "SpellEffect::kFirst": 1, + "SpellEffect::kSecond": 2 + } + }, + "m_previousSpellName": { + "type": "std::string", + "id": 47, + "offset": 744, + "flags": 268435463, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2903322585, + "enum_options": { + "__BASECLASS": "SpellTemplate" + } + }, + "m_cardFront": { + "type": "std::string", + "id": 48, + "offset": 456, + "flags": 131359, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3557598526 + }, + "m_useGloss": { + "type": "bool", + "id": 49, + "offset": 488, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 668817544 + }, + "m_ignoreDispel": { + "type": "bool", + "id": 50, + "offset": 776, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1881041624 + }, + "m_backRowFriendly": { + "type": "bool", + "id": 51, + "offset": 777, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 501584377 + }, + "m_spellRank": { + "type": "class SharedPointer", + "id": 52, + "offset": 784, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3152361374 + }, + "m_secondarySchoolName": { + "type": "std::string", + "id": 53, + "offset": 800, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1803268236 + }, + "m_spellFusion": { + "type": "unsigned int", + "id": 54, + "offset": 836, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1658928321 + }, + "m_requiredSchoolName": { + "type": "std::string", + "id": 55, + "offset": 848, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3576058981 + }, + "m_unitMovement": { + "type": "std::string", + "id": 56, + "offset": 880, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3170961702 + }, + "m_specialUnits": { + "type": "std::string", + "id": 57, + "offset": 912, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2725603631 + } + } + }, + "729667830": { + "name": "class MeshGeomParams*", + "bases": [ + "GeomParams", + "PropertyClass" + ], + "hash": 729667830, + "properties": { + "m_eType": { + "type": "enum ProxyType", + "id": 0, + "offset": 72, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1656534066, + "enum_options": { + "ProxyTypeBox": 0, + "ProxyTypeRay": 1, + "ProxyTypeSphere": 2, + "ProxyTypeCylinder": 3, + "ProxyTypeTube": 4, + "ProxyTypePlane": 5, + "ProxyTypeMesh": 6, + "ProxyTypeInvalid": 7 + } + } + } + }, + "1135094589": { + "name": "class WizItemGoldChestList*", + "bases": [ + "WizItemLocations", + "PropertyClass" + ], + "hash": 1135094589, + "properties": { + "m_itemType": { + "type": "enum WizItemLocations::eItemType", + "id": 0, + "offset": 72, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3482173907, + "enum_options": { + "shop": 0, + "quest": 1, + "boss": 2, + "gardening": 3, + "goldChest": 4 + } + }, + "m_goldChestZones": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2718514023 + } + } + }, + "2005027782": { + "name": "class ReqArenaSeasonTitle*", + "bases": [ + "Requirement", + "PropertyClass" + ], + "hash": 2005027782, + "properties": { + "m_applyNOT": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1746328074, + "enum_options": { + "__DEFAULT": 0 + } + }, + "m_operator": { + "type": "enum Requirement::Operator", + "id": 1, + "offset": 76, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2672792317, + "enum_options": { + "ROP_AND": 0, + "ROP_OR": 1, + "__DEFAULT": "ROP_AND" + } + }, + "m_title": { + "type": "std::string", + "id": 2, + "offset": 112, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2308614141 + }, + "m_tournament": { + "type": "std::string", + "id": 3, + "offset": 80, + "flags": 268435487, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2799932264, + "enum_options": { + "__BASECLASS": "TournamentTemplate" + } + } + } + }, + "729667670": { + "name": "class MeshGeomParams", + "bases": [ + "GeomParams", + "PropertyClass" + ], + "hash": 729667670, + "properties": { + "m_eType": { + "type": "enum ProxyType", + "id": 0, + "offset": 72, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1656534066, + "enum_options": { + "ProxyTypeBox": 0, + "ProxyTypeRay": 1, + "ProxyTypeSphere": 2, + "ProxyTypeCylinder": 3, + "ProxyTypeTube": 4, + "ProxyTypePlane": 5, + "ProxyTypeMesh": 6, + "ProxyTypeInvalid": 7 + } + } + } + }, + "1568364158": { + "name": "class SharedPointer", + "bases": [ + "Window", + "PropertyClass" + ], + "hash": 1568364158, + "properties": { + "m_sName": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306437263 + }, + "m_Children": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 65667, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621225959 + }, + "m_Style": { + "type": "unsigned int", + "id": 2, + "offset": 152, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "SCALE_CHILDREN": 2, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "FOCUS_LOCKED": 64, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152 + } + }, + "m_Flags": { + "type": "unsigned int", + "id": 3, + "offset": 156, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } + }, + "m_Window": { + "type": "class Rect", + "id": 4, + "offset": 160, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3105139380 + }, + "m_fTargetAlpha": { + "type": "float", + "id": 5, + "offset": 212, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1809129834 + }, + "m_fDisabledAlpha": { + "type": "float", + "id": 6, + "offset": 216, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1389987675 + }, + "m_fAlpha": { + "type": "float", + "id": 7, + "offset": 208, + "flags": 65671, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 482130755 + }, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3623628394 + }, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2102211316 + }, + "m_sScript": { + "type": "std::string", + "id": 10, + "offset": 352, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1846695875 + }, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3389835433 + }, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547159940 + }, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513510520 + }, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3091503757 + } + } + }, + "287567362": { + "name": "class PlayList", + "bases": [ + "PropertyClass" + ], + "hash": 287567362, + "properties": { + "m_progression": { + "type": "enum PlayList::Progression", + "id": 0, + "offset": 72, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3279400238, + "enum_options": { + "Sequence": 0, + "Random": 1, + "SequenceOnceOnly": 2, + "RandomNoRepeat": 3 + } + }, + "m_currentTrack": { + "type": "int", + "id": 1, + "offset": 76, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 652542482 + }, + "m_trackFilenameList": { + "type": "class PlayListEntry*", + "id": 2, + "offset": 80, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 3167512201 + } + } + }, + "729218845": { + "name": "WeightedEntryT", + "bases": [ + "WeightedEntry", + "PropertyClass" + ], + "hash": 729218845, + "properties": { + "m_weight": { + "type": "unsigned int", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1311209301 + }, + "m_entry": { + "type": "class SplashCinematicInfo", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1951897293 + } + } + }, + "1135557334": { + "name": "class ReqSpecificTemplate", + "bases": [ + "Requirement", + "PropertyClass" + ], + "hash": 1135557334, + "properties": { + "m_applyNOT": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1746328074, + "enum_options": { + "__DEFAULT": 0 + } + }, + "m_operator": { + "type": "enum Requirement::Operator", + "id": 1, + "offset": 76, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2672792317, + "enum_options": { + "ROP_AND": 0, + "ROP_OR": 1, + "__DEFAULT": "ROP_AND" + } + }, + "m_templateID": { + "type": "gid", + "id": 2, + "offset": 80, + "flags": 33554439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1075328001 + } + } + }, + "1568319405": { + "name": "class GoalEntry", + "bases": [ + "ServiceOptionBase", + "PropertyClass" + ], + "hash": 1568319405, + "properties": { + "m_serviceName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2206028813 + }, + "m_iconKey": { + "type": "std::string", + "id": 1, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2457138637 + }, + "m_displayKey": { + "type": "std::string", + "id": 2, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3023276954 + }, + "m_serviceIndex": { + "type": "unsigned int", + "id": 3, + "offset": 204, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2103126710 + }, + "m_forceInteract": { + "type": "bool", + "id": 4, + "offset": 200, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1705789564 + }, + "m_questID": { + "type": "gid", + "id": 5, + "offset": 216, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1246549335 + }, + "m_goalID": { + "type": "gid", + "id": 6, + "offset": 224, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 485200232 + }, + "m_goalTitle": { + "type": "std::string", + "id": 7, + "offset": 272, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2291910240 + }, + "m_questTitle": { + "type": "std::string", + "id": 8, + "offset": 240, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1805465583 + }, + "m_goalNameID": { + "type": "unsigned int", + "id": 9, + "offset": 232, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 403158846 + } + } + }, + "287566978": { + "name": "class PlayList*", + "bases": [ + "PropertyClass" + ], + "hash": 287566978, + "properties": { + "m_progression": { + "type": "enum PlayList::Progression", + "id": 0, + "offset": 72, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3279400238, + "enum_options": { + "Sequence": 0, + "Random": 1, + "SequenceOnceOnly": 2, + "RandomNoRepeat": 3 + } + }, + "m_currentTrack": { + "type": "int", + "id": 1, + "offset": 76, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 652542482 + }, + "m_trackFilenameList": { + "type": "class PlayListEntry*", + "id": 2, + "offset": 80, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 3167512201 + } + } + }, + "1568205928": { + "name": "class LinearSoundBehavior", + "bases": [ + "PositionalSoundBehavior", + "SoundBehavior", + "AreaBehavior", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1568205928, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_radius": { + "type": "float", + "id": 1, + "offset": 116, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 989410271 + }, + "m_category": { + "type": "enum AudioCategory", + "id": 2, + "offset": 124, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2951251982, + "enum_options": { + "AudioCategory_Irrelevent": 0, + "AudioCategory_Accoustic": 1, + "AudioCategory_Noise": 2, + "AudioCategory_Music": 3 + } + }, + "m_exclusive": { + "type": "bool", + "id": 3, + "offset": 128, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 824383403 + }, + "m_playList": { + "type": "class PlayList", + "id": 4, + "offset": 176, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2061221957 + }, + "m_volume": { + "type": "float", + "id": 5, + "offset": 304, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1162855023 + }, + "m_loopCount": { + "type": "int", + "id": 6, + "offset": 308, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 865634717 + }, + "m_minimumFalloff": { + "type": "float", + "id": 7, + "offset": 328, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 355697197 + }, + "m_maximumFalloff": { + "type": "float", + "id": 8, + "offset": 332, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2210192367 + }, + "m_animDriven": { + "type": "bool", + "id": 9, + "offset": 392, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 398394720 + }, + "m_inverted": { + "type": "bool", + "id": 10, + "offset": 397, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1034821044 + }, + "m_fRangeScale": { + "type": "float", + "id": 11, + "offset": 512, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1749294034 + }, + "m_fAttenuationFactor": { + "type": "float", + "id": 12, + "offset": 516, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 273292776 + }, + "m_eAttenuationType": { + "type": "enum PositionInfoAttenuationType", + "id": 13, + "offset": 520, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2427193304, + "enum_options": { + "Standard": 0, + "Unit Range Power": 1 + } + }, + "m_vPositions": { + "type": "class Vector3D", + "id": 14, + "offset": 528, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 3599600160 + } + } + }, + "2005969583": { + "name": "class PulseEffect*", + "bases": [ + "GameEffectBase", + "PropertyClass" + ], + "hash": 2005969583, + "properties": { + "m_currentTickCount": { + "type": "double", + "id": 0, + "offset": 80, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2533274692 + }, + "m_effectNameID": { + "type": "unsigned int", + "id": 1, + "offset": 96, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1204067144 + }, + "m_bIsOnPet": { + "type": "bool", + "id": 2, + "offset": 73, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 522593303 + }, + "m_originatorID": { + "type": "gid", + "id": 3, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1131810019 + }, + "m_itemSlotID": { + "type": "unsigned int", + "id": 4, + "offset": 112, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1895747595 + }, + "m_internalID": { + "type": "int", + "id": 5, + "offset": 92, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1643137924 + }, + "m_endTime": { + "type": "unsigned int", + "id": 6, + "offset": 88, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 716479635 + }, + "m_pulseCount": { + "type": "double", + "id": 7, + "offset": 128, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3507157375 + } + } + }, + "1135853375": { + "name": "class PremiumContentOptionList", + "bases": [ + "PropertyClass" + ], + "hash": 1135853375, + "properties": { + "m_optionList": { + "type": "class PremiumContentOption", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1394856917 + } + } + }, + "731171495": { + "name": "class PetTalentControl", + "bases": [ + "PetTalentControlBase", + "Window", + "PropertyClass" + ], + "hash": 731171495, + "properties": { + "m_sName": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306437263 + }, + "m_Children": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 65667, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621225959 + }, + "m_Style": { + "type": "unsigned int", + "id": 2, + "offset": 152, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "SCALE_CHILDREN": 2, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "FOCUS_LOCKED": 64, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152 + } + }, + "m_Flags": { + "type": "unsigned int", + "id": 3, + "offset": 156, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } + }, + "m_Window": { + "type": "class Rect", + "id": 4, + "offset": 160, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3105139380 + }, + "m_fTargetAlpha": { + "type": "float", + "id": 5, + "offset": 212, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1809129834 + }, + "m_fDisabledAlpha": { + "type": "float", + "id": 6, + "offset": 216, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1389987675 + }, + "m_fAlpha": { + "type": "float", + "id": 7, + "offset": 208, + "flags": 65671, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 482130755 + }, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3623628394 + }, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2102211316 + }, + "m_sScript": { + "type": "std::string", + "id": 10, + "offset": 352, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1846695875 + }, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3389835433 + }, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547159940 + }, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513510520 + }, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3091503757 + } + } + }, + "1568339885": { + "name": "class GoalEntry*", + "bases": [ + "ServiceOptionBase", + "PropertyClass" + ], + "hash": 1568339885, + "properties": { + "m_serviceName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2206028813 + }, + "m_iconKey": { + "type": "std::string", + "id": 1, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2457138637 + }, + "m_displayKey": { + "type": "std::string", + "id": 2, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3023276954 + }, + "m_serviceIndex": { + "type": "unsigned int", + "id": 3, + "offset": 204, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2103126710 + }, + "m_forceInteract": { + "type": "bool", + "id": 4, + "offset": 200, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1705789564 + }, + "m_questID": { + "type": "gid", + "id": 5, + "offset": 216, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1246549335 + }, + "m_goalID": { + "type": "gid", + "id": 6, + "offset": 224, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 485200232 + }, + "m_goalTitle": { + "type": "std::string", + "id": 7, + "offset": 272, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2291910240 + }, + "m_questTitle": { + "type": "std::string", + "id": 8, + "offset": 240, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1805465583 + }, + "m_goalNameID": { + "type": "unsigned int", + "id": 9, + "offset": 232, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 403158846 + } + } + }, + "2019489492": { + "name": "class SharedPointer", + "bases": [ + "ServiceOptionBase", + "PropertyClass" + ], + "hash": 2019489492, + "properties": { + "m_serviceName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2206028813 + }, + "m_iconKey": { + "type": "std::string", + "id": 1, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2457138637 + }, + "m_displayKey": { + "type": "std::string", + "id": 2, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3023276954 + }, + "m_serviceIndex": { + "type": "unsigned int", + "id": 3, + "offset": 204, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2103126710 + }, + "m_forceInteract": { + "type": "bool", + "id": 4, + "offset": 200, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1705789564 + } + } + }, + "288192319": { + "name": "class SharedPointer", + "bases": [ + "GeomParams", + "PropertyClass" + ], + "hash": 288192319, + "properties": { + "m_eType": { + "type": "enum ProxyType", + "id": 0, + "offset": 72, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1656534066, + "enum_options": { + "ProxyTypeBox": 0, + "ProxyTypeRay": 1, + "ProxyTypeSphere": 2, + "ProxyTypeCylinder": 3, + "ProxyTypeTube": 4, + "ProxyTypePlane": 5, + "ProxyTypeMesh": 6, + "ProxyTypeInvalid": 7 + } + } + } + }, + "729904477": { + "name": "class SharedPointer", + "bases": [ + "ServiceOptionBase", + "PropertyClass" + ], + "hash": 729904477, + "properties": { + "m_serviceName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2206028813 + }, + "m_iconKey": { + "type": "std::string", + "id": 1, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2457138637 + }, + "m_displayKey": { + "type": "std::string", + "id": 2, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3023276954 + }, + "m_serviceIndex": { + "type": "unsigned int", + "id": 3, + "offset": 204, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2103126710 + }, + "m_forceInteract": { + "type": "bool", + "id": 4, + "offset": 200, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1705789564 + } + } + }, + "2013392653": { + "name": "class WidgetBackground", + "bases": [ + "PropertyClass" + ], + "hash": 2013392653, + "properties": { + "m_fBackgroundAlpha": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1164086307 + }, + "m_pTopLeftBackgroundAlphaMask": { + "type": "class SharedPointer", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2652729643 + }, + "m_pTopRightBackgroundAlphaMask": { + "type": "class SharedPointer", + "id": 2, + "offset": 96, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2236264926 + }, + "m_pBottomLeftBackgroundAlphaMask": { + "type": "class SharedPointer", + "id": 3, + "offset": 112, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3301927117 + }, + "m_pBottomRightBackgroundAlphaMask": { + "type": "class SharedPointer", + "id": 4, + "offset": 128, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2184945088 + }, + "m_pBottomBackgroundAlphaMask": { + "type": "class SharedPointer", + "id": 5, + "offset": 144, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2408122274 + }, + "m_pTopBackgroundAlphaMask": { + "type": "class SharedPointer", + "id": 6, + "offset": 160, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3440742656 + }, + "m_pLeftBackgroundAlphaMask": { + "type": "class SharedPointer", + "id": 7, + "offset": 176, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2348634648 + }, + "m_pRightBackgroundAlphaMask": { + "type": "class SharedPointer", + "id": 8, + "offset": 192, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2938548331 + }, + "m_pCenterBackgroundAlphaMask": { + "type": "class SharedPointer", + "id": 9, + "offset": 208, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3347258414 + } + } + }, + "288095203": { + "name": "class SharedPointer", + "bases": [ + "TrainBehaviorBase", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 288095203, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_trainData": { + "type": "std::string", + "id": 1, + "offset": 128, + "flags": 575, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2994039667 + } + } + }, + "1137044245": { + "name": "class SharedPointer", + "bases": [ + "PlayComplexSoundCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 1137044245, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_cinematicSoundEmitterInfo": { + "type": "class SharedPointer", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2303770088 + } + } + }, + "1137031580": { + "name": "class CreationNameInput", + "bases": [ + "ControlRichEdit", + "ControlEdit", + "Window", + "PropertyClass" + ], + "hash": 1137031580, + "properties": { + "m_sName": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306437263 + }, + "m_Children": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621225959 + }, + "m_Style": { + "type": "unsigned int", + "id": 2, + "offset": 152, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152, + "FORCE_NUMERIC": 16777216, + "FORCE_ALPHA": 268435456, + "FORCE_ALPHANUMERIC": 536870912, + "FORCE_INTEGER": 33554432, + "FORCE_POSITIVE": 67108864, + "FORCE_RANGE": 134217728 + } + }, + "m_Flags": { + "type": "unsigned int", + "id": 3, + "offset": 156, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } + }, + "m_Window": { + "type": "class Rect", + "id": 4, + "offset": 160, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3105139380 + }, + "m_fTargetAlpha": { + "type": "float", + "id": 5, + "offset": 212, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1809129834 + }, + "m_fDisabledAlpha": { + "type": "float", + "id": 6, + "offset": 216, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1389987675 + }, + "m_fAlpha": { + "type": "float", + "id": 7, + "offset": 208, + "flags": 65671, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 482130755 + }, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3623628394 + }, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2102211316 + }, + "m_sScript": { + "type": "std::string", + "id": 10, + "offset": 352, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1846695875 + }, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3389835433 + }, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547159940 + }, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513510520 + }, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3091503757 + }, + "m_sText": { + "type": "std::wstring", + "id": 16, + "offset": 584, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2102642960 + }, + "m_nMaxLength": { + "type": "int", + "id": 17, + "offset": 620, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1183478416 + }, + "m_bPassword": { + "type": "bool", + "id": 18, + "offset": 624, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1604468200 + }, + "m_bLog": { + "type": "bool", + "id": 19, + "offset": 625, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 221687287 + }, + "m_previousNext": { + "type": "bool", + "id": 20, + "offset": 627, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 858581071 + }, + "m_nMaxLogSize": { + "type": "int", + "id": 21, + "offset": 712, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 779573899 + }, + "m_bEditing": { + "type": "bool", + "id": 22, + "offset": 616, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1243218553 + }, + "m_bAllowPaste": { + "type": "bool", + "id": 23, + "offset": 626, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1129316721 + }, + "m_nLogPosition": { + "type": "int", + "id": 24, + "offset": 704, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1120160767 + }, + "m_nCursor": { + "type": "int", + "id": 25, + "offset": 716, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1876782150 + }, + "m_nEditBegin": { + "type": "int", + "id": 26, + "offset": 720, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1066592403 + }, + "m_nEditEnd": { + "type": "int", + "id": 27, + "offset": 724, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1560905669 + }, + "m_sSavedText": { + "type": "std::wstring", + "id": 28, + "offset": 728, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2197953283 + }, + "m_fCursorBlinkSpeed": { + "type": "float", + "id": 29, + "offset": 760, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2232655228 + }, + "m_fCursorTimer": { + "type": "float", + "id": 30, + "offset": 764, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1929942748 + }, + "m_bCursorBlink": { + "type": "bool", + "id": 31, + "offset": 768, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 683441507 + }, + "m_fMinRange": { + "type": "double", + "id": 32, + "offset": 776, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3079523396 + }, + "m_fMaxRange": { + "type": "double", + "id": 33, + "offset": 784, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3876551814 + }, + "m_nPrecision": { + "type": "int", + "id": 34, + "offset": 792, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1404974196 + }, + "m_bDeleteOnFirstChar": { + "type": "bool", + "id": 35, + "offset": 618, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 902105643 + } + } + }, + "1568928931": { + "name": "class SharedPointer", + "bases": [ + "StatisticEffect", + "GameEffectBase", + "PropertyClass" + ], + "hash": 1568928931, + "properties": { + "m_currentTickCount": { + "type": "double", + "id": 0, + "offset": 80, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2533274692 + }, + "m_effectNameID": { + "type": "unsigned int", + "id": 1, + "offset": 96, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1204067144 + }, + "m_bIsOnPet": { + "type": "bool", + "id": 2, + "offset": 73, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 522593303 + }, + "m_originatorID": { + "type": "gid", + "id": 3, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1131810019 + }, + "m_itemSlotID": { + "type": "unsigned int", + "id": 4, + "offset": 112, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1895747595 + }, + "m_internalID": { + "type": "int", + "id": 5, + "offset": 92, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1643137924 + }, + "m_endTime": { + "type": "unsigned int", + "id": 6, + "offset": 88, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 716479635 + }, + "m_lookupIndex": { + "type": "int", + "id": 7, + "offset": 128, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1626623948 + } + } + }, + "2006743509": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 2006743509, + "properties": { + "m_tabPriList": { + "type": "class TabDisplayPriority", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 3043784178 + } + } + }, + "731269799": { + "name": "class PetTalentControl*", + "bases": [ + "PetTalentControlBase", + "Window", + "PropertyClass" + ], + "hash": 731269799, + "properties": { + "m_sName": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306437263 + }, + "m_Children": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 65667, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621225959 + }, + "m_Style": { + "type": "unsigned int", + "id": 2, + "offset": 152, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "SCALE_CHILDREN": 2, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "FOCUS_LOCKED": 64, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152 + } + }, + "m_Flags": { + "type": "unsigned int", + "id": 3, + "offset": 156, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } + }, + "m_Window": { + "type": "class Rect", + "id": 4, + "offset": 160, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3105139380 + }, + "m_fTargetAlpha": { + "type": "float", + "id": 5, + "offset": 212, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1809129834 + }, + "m_fDisabledAlpha": { + "type": "float", + "id": 6, + "offset": 216, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1389987675 + }, + "m_fAlpha": { + "type": "float", + "id": 7, + "offset": 208, + "flags": 65671, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 482130755 + }, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3623628394 + }, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2102211316 + }, + "m_sScript": { + "type": "std::string", + "id": 10, + "offset": 352, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1846695875 + }, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3389835433 + }, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547159940 + }, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513510520 + }, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3091503757 + } + } + }, + "1568637011": { + "name": "class PvPSeasonTemplate", + "bases": [ + "PropertyClass" + ], + "hash": 1568637011, + "properties": { + "m_seasonName": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1895926181 + }, + "m_seasonTitle": { + "type": "std::string", + "id": 1, + "offset": 112, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1758854694 + }, + "m_startMonth": { + "type": "int", + "id": 2, + "offset": 144, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 661899790 + }, + "m_startDay": { + "type": "int", + "id": 3, + "offset": 148, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 367473766 + }, + "m_startHour": { + "type": "int", + "id": 4, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1386544390 + }, + "m_startMinute": { + "type": "int", + "id": 5, + "offset": 156, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 357912026 + }, + "m_endMonth": { + "type": "int", + "id": 6, + "offset": 160, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1624246775 + }, + "m_endDay": { + "type": "int", + "id": 7, + "offset": 164, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 405825039 + }, + "m_endHour": { + "type": "int", + "id": 8, + "offset": 168, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 504652751 + }, + "m_endMinute": { + "type": "int", + "id": 9, + "offset": 172, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2050591459 + } + } + }, + "2006247677": { + "name": "class JewelSocketWrenchRules", + "bases": [ + "PropertyClass" + ], + "hash": 2006247677, + "properties": { + "m_rules": { + "type": "class JewelSocketWrenchElements", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2323021272 + } + } + }, + "288503149": { + "name": "class SpellNifSoundOverride*", + "bases": [ + "PropertyClass" + ], + "hash": 288503149, + "properties": { + "m_sSpell": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2419867822 + }, + "m_sNif": { + "type": "std::string", + "id": 1, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1717518635 + }, + "m_sSound": { + "type": "std::string", + "id": 2, + "offset": 136, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2419849367 + }, + "m_bOverride": { + "type": "bool", + "id": 3, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 589970005 + } + } + }, + "288501869": { + "name": "class SpellNifSoundOverride", + "bases": [ + "PropertyClass" + ], + "hash": 288501869, + "properties": { + "m_sSpell": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2419867822 + }, + "m_sNif": { + "type": "std::string", + "id": 1, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1717518635 + }, + "m_sSound": { + "type": "std::string", + "id": 2, + "offset": 136, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2419849367 + }, + "m_bOverride": { + "type": "bool", + "id": 3, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 589970005 + } + } + }, + "1137884622": { + "name": "class LoyaltyPurchaseEntry*", + "bases": [ + "PropertyClass" + ], + "hash": 1137884622, + "properties": { + "m_timeOfPurchase": { + "type": "int", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 556096185 + }, + "m_charID": { + "type": "gid", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 320363747 + }, + "m_packedName": { + "type": "std::string", + "id": 2, + "offset": 88, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1805208228 + }, + "m_itemTemplateID": { + "type": "unsigned int", + "id": 3, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2190120133 + }, + "m_tokensAmount": { + "type": "int", + "id": 4, + "offset": 124, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 440789666 + }, + "m_tokensBalance": { + "type": "int", + "id": 5, + "offset": 128, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 328409108 + } + } + }, + "735227021": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 735227021, + "properties": { + "m_permissionFlag": { + "type": "unsigned int", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 558326096 + }, + "m_addList": { + "type": "gid", + "id": 1, + "offset": 80, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1389998621 + }, + "m_removeList": { + "type": "gid", + "id": 2, + "offset": 96, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 42923202 + } + } + }, + "1137370210": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1137370210, + "properties": { + "m_quickSellItemList": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2797277851 + }, + "m_sellingCharacterGID": { + "type": "gid", + "id": 1, + "offset": 88, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1096175527 + } + } + }, + "1569343233": { + "name": "class RitualObjectBehavior*", + "bases": [ + "RitualObjectBehaviorBase", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1569343233, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_playerList": { + "type": "gid", + "id": 1, + "offset": 112, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1909774945 + } + } + }, + "2009316924": { + "name": "class CloneActorCinematicAction*", + "bases": [ + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 2009316924, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + }, + "m_position": { + "type": "class Vector3D", + "id": 2, + "offset": 124, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3697900983 + }, + "m_yawPitchRoll": { + "type": "class Vector3D", + "id": 3, + "offset": 136, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3349460132 + }, + "m_clonePlayer": { + "type": "bool", + "id": 4, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1369917873 + } + } + }, + "734086489": { + "name": "class SharedPointer", + "bases": [ + "WhirlyBurlyBehaviorBase", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 734086489, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + } + } + }, + "2008755125": { + "name": "class SharedPointer", + "bases": [ + "SpellEffect", + "PropertyClass" + ], + "hash": 2008755125, + "properties": { + "m_effectType": { + "type": "enum SpellEffect::kSpellEffects", + "id": 0, + "offset": 72, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2578255295, + "enum_options": { + "kInvalidSpellEffect": 0, + "kDamage": 1, + "kDamageNoCrit": 2, + "kHeal": 3, + "kHealPercent": 4, + "kSetHealPercent": 113, + "kStealHealth": 5, + "kReduceOverTime": 6, + "kDetonateOverTime": 7, + "kPushCharm": 8, + "kStealCharm": 9, + "kPushWard": 10, + "kStealWard": 11, + "kPushOverTime": 12, + "kStealOverTime": 13, + "kRemoveCharm": 14, + "kRemoveWard": 15, + "kRemoveOverTime": 16, + "kRemoveAura": 17, + "kSwapAll": 18, + "kSwapCharm": 19, + "kSwapWard": 20, + "kSwapOverTime": 21, + "kModifyIncomingDamage": 22, + "kModifyIncomingDamageFlat": 119, + "kMaximumIncomingDamage": 23, + "kModifyIncomingHeal": 24, + "kModifyIncomingHealFlat": 118, + "kModifyIncomingDamageType": 25, + "kModifyIncomingArmorPiercing": 26, + "kModifyOutgoingDamage": 27, + "kModifyOutgoingDamageFlat": 121, + "kModifyOutgoingHeal": 28, + "kModifyOutgoingHealFlat": 120, + "kModifyOutgoingDamageType": 29, + "kModifyOutgoingArmorPiercing": 30, + "kModifyOutgoingStealHealth": 31, + "kModifyIncomingStealHealth": 32, + "kBounceNext": 33, + "kBouncePrevious": 34, + "kBounceBack": 35, + "kBounceAll": 36, + "kAbsorbDamage": 37, + "kAbsorbHeal": 38, + "kModifyAccuracy": 39, + "kDispel": 40, + "kConfusion": 41, + "kCloakedCharm": 42, + "kCloakedWard": 43, + "kStunResist": 44, + "kClue": 111, + "kPipConversion": 45, + "kCritBoost": 46, + "kCritBlock": 47, + "kPolymorph": 48, + "kDelayCast": 49, + "kModifyCardCloak": 50, + "kModifyCardDamage": 51, + "kModifyCardAccuracy": 53, + "kModifyCardMutation": 54, + "kModifyCardRank": 55, + "kModifyCardArmorPiercing": 56, + "kSummonCreature": 65, + "kTeleportPlayer": 66, + "kStun": 67, + "kDampen": 68, + "kReshuffle": 69, + "kMindControl": 70, + "kModifyPips": 71, + "kModifyPowerPips": 72, + "kModifyShadowPips": 73, + "kModifyHate": 74, + "kDamageOverTime": 75, + "kHealOverTime": 76, + "kModifyPowerPipChance": 77, + "kModifyRank": 78, + "kStunBlock": 79, + "kRevealCloak": 80, + "kInstantKill": 81, + "kAfterlife": 82, + "kDeferredDamage": 83, + "kDamagePerTotalPipPower": 84, + "kModifyCardHeal": 52, + "kModifyCardCharm": 57, + "kModifyCardWard": 58, + "kModifyCardOutgoingDamage": 59, + "kModifyCardOutgoingAccuracy": 60, + "kModifyCardOutgoingHeal": 61, + "kModifyCardOutgoingArmorPiercing": 62, + "kModifyCardIncomingDamage": 63, + "kModifyCardAbsorbDamage": 64, + "kCloakedWardNoRemove": 86, + "kAddCombatTriggerList": 87, + "kRemoveCombatTriggerList": 88, + "kBacklashDamage": 89, + "kModifyBacklash": 90, + "kIntercept": 91, + "kShadowSelf": 92, + "kShadowCreature": 93, + "kModifyShadowCreatureLevel": 94, + "kSelectShadowCreatureAttackTarget": 95, + "kShadowDecrementTurn": 96, + "kCritBoostSchoolSpecific": 97, + "kSpawnCreature": 98, + "kUnPolymorph": 99, + "kPowerPipConversion": 100, + "kProtectCardBeneficial": 101, + "kProtectCardHarmful": 102, + "kProtectBeneficial": 103, + "kProtectHarmful": 104, + "kDivideDamage": 105, + "kCollectEssence": 106, + "kKillCreature": 107, + "kDispelBlock": 108, + "kConfusionBlock": 109, + "kModifyPipRoundRate": 110, + "kMaxHealthDamage": 112, + "kUntargetable": 114, + "kMakeTargetable": 115, + "kForceTargetable": 116, + "kRemoveStunBlock": 117, + "kExitCombat": 122, + "kSuspendPips": 123, + "kResumePips": 124, + "kAutoPass": 125, + "kStopAutoPass": 126, + "kVanish": 127, + "kStopVanish": 128, + "kMaxHealthHeal": 129, + "kHealByWard": 130, + "kTaunt": 131, + "kPacify": 132, + "kRemoveTargetRestriction": 133, + "kConvertHangingEffect": 134, + "kAddSpellToDeck": 135, + "kAddSpellToHand": 136, + "kModifyIncomingDamageOverTime": 137, + "kModifyIncomingHealOverTime": 138, + "kModifyCardDamagebyRank": 139, + "kPushConvertedCharm": 140, + "kStealConvertedCharm": 141, + "kPushConvertedWard": 142, + "kStealConvertedWard": 143, + "kPushConvertedOverTime": 144, + "kStealConvertedOverTime": 145, + "kRemoveConvertedCharm": 146, + "kRemoveConvertedWard": 147, + "kRemoveConvertedOverTime": 148, + "kModifyOverTimeDuration": 149, + "kModifySchoolPips": 150 + } + }, + "m_effectParam": { + "type": "int", + "id": 1, + "offset": 76, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 357920024 + }, + "m_disposition": { + "type": "enum SpellEffect::kHangingDisposition", + "id": 2, + "offset": 80, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1904841031, + "enum_options": { + "kBoth": 0, + "kBeneficial": 1, + "kHarmful": 2 + } + }, + "m_sDamageType": { + "type": "std::string", + "id": 3, + "offset": 88, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2501054223 + }, + "m_damageType": { + "type": "unsigned int", + "id": 4, + "offset": 84, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 737882766 + }, + "m_pipNum": { + "type": "int", + "id": 5, + "offset": 128, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 830827539 + }, + "m_actNum": { + "type": "int", + "id": 6, + "offset": 132, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 236824866 + }, + "m_effectTarget": { + "type": "enum SpellEffect::kEffectTarget", + "id": 7, + "offset": 140, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2458940523, + "enum_options": { + "kInvalidTarget": 0, + "kSpell": 1, + "kSpecificSpells": 2, + "kGlobal": 3, + "kEnemyTeam": 4, + "kEnemyTeamAllAtOnce": 5, + "kFriendlyTeam": 6, + "kFriendlyTeamAllAtOnce": 7, + "kEnemySingle": 8, + "kFriendlySingle": 9, + "kMinion": 10, + "kFriendlyMinion": 17, + "kEnemyMinion": 18, + "kSelf": 11, + "kAtLeastOneEnemy": 13, + "kPreselectedEnemySingle": 12, + "kMultiTargetEnemy": 14, + "kMultiTargetFriendly": 15, + "kFriendlySingleNotMe": 16 + } + }, + "m_numRounds": { + "type": "int", + "id": 8, + "offset": 144, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1229753829 + }, + "m_paramPerRound": { + "type": "int", + "id": 9, + "offset": 148, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 683234234 + }, + "m_healModifier": { + "type": "float", + "id": 10, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1317921248, + "enum_options": { + "__DEFAULT": "1.0" + } + }, + "m_spellTemplateID": { + "type": "unsigned int", + "id": 11, + "offset": 120, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 585567702 + }, + "m_enchantmentSpellTemplateID": { + "type": "unsigned int", + "id": 12, + "offset": 124, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 246955115 + }, + "m_act": { + "type": "bool", + "id": 13, + "offset": 136, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 269510283 + }, + "m_cloaked": { + "type": "bool", + "id": 14, + "offset": 157, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 7349510 + }, + "m_bypassProtection": { + "type": "bool", + "id": 15, + "offset": 159, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1657138252 + }, + "m_armorPiercingParam": { + "type": "int", + "id": 16, + "offset": 160, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2025530205 + }, + "m_chancePerTarget": { + "type": "int", + "id": 17, + "offset": 164, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 845426794 + }, + "m_protected": { + "type": "bool", + "id": 18, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1445655037 + }, + "m_converted": { + "type": "bool", + "id": 19, + "offset": 169, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1590428797 + }, + "m_rank": { + "type": "int", + "id": 20, + "offset": 208, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 219803942 + }, + "m_damage": { + "type": "int", + "id": 21, + "offset": 236, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 351627865 + }, + "m_rounds": { + "type": "int", + "id": 22, + "offset": 240, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 916427829 + }, + "m_spellDelayedTemplateID": { + "type": "unsigned int", + "id": 23, + "offset": 244, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2227549390 + }, + "m_spellDelayedTemplateDamageID": { + "type": "unsigned int", + "id": 24, + "offset": 248, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1629569933 + }, + "m_spellEnchanterTemplateID": { + "type": "unsigned int", + "id": 25, + "offset": 252, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 760931950 + }, + "m_targetSubcircleList": { + "type": "int", + "id": 26, + "offset": 264, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 227779897 + }, + "m_spellHits": { + "type": "char", + "id": 27, + "offset": 280, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1193115340 + }, + "m_spell": { + "type": "class SharedPointer", + "id": 28, + "offset": 288, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1160380498 + } + } + }, + "733137027": { + "name": "class SharedPointer", + "bases": [ + "RegisterActorCinematicAction", + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 733137027, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + }, + "m_zoneTag": { + "type": "std::string", + "id": 2, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3405382643 + }, + "m_bStartHidden": { + "type": "bool", + "id": 3, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1939845615 + } + } + }, + "291344695": { + "name": "class SharedPointer", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 291344695, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + } + } + }, + "732659400": { + "name": "class TeamGIDToBracketID", + "bases": [ + "PropertyClass" + ], + "hash": 732659400, + "properties": { + "m_teamGID": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 194811347 + }, + "m_bracketTeamID": { + "type": "unsigned int", + "id": 1, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2174957597 + } + } + }, + "1137884646": { + "name": "class LoyaltyPurchaseEntry", + "bases": [ + "PropertyClass" + ], + "hash": 1137884646, + "properties": { + "m_timeOfPurchase": { + "type": "int", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 556096185 + }, + "m_charID": { + "type": "gid", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 320363747 + }, + "m_packedName": { + "type": "std::string", + "id": 2, + "offset": 88, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1805208228 + }, + "m_itemTemplateID": { + "type": "unsigned int", + "id": 3, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2190120133 + }, + "m_tokensAmount": { + "type": "int", + "id": 4, + "offset": 124, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 440789666 + }, + "m_tokensBalance": { + "type": "int", + "id": 5, + "offset": 128, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 328409108 + } + } + }, + "1570810315": { + "name": "class AdvPvPLeaderboardVisualBlob*", + "bases": [ + "PropertyClass" + ], + "hash": 1570810315, + "properties": { + "m_level": { + "type": "int", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 801285362 + }, + "m_school": { + "type": "unsigned int", + "id": 1, + "offset": 76, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1152268885 + }, + "m_gender": { + "type": "int", + "id": 2, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 473816879 + }, + "m_nameKeys": { + "type": "unsigned int", + "id": 3, + "offset": 84, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1772225898 + }, + "m_badge": { + "type": "std::string", + "id": 4, + "offset": 88, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2286962478 + }, + "m_pCharacterBehavior": { + "type": "class SharedPointer", + "id": 5, + "offset": 120, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2724673923 + }, + "m_pEquipment": { + "type": "class SharedPointer", + "id": 6, + "offset": 136, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2473540161 + }, + "m_pStats": { + "type": "class SharedPointer", + "id": 7, + "offset": 152, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2212894623 + }, + "m_pGameEffects": { + "type": "class SharedPointer", + "id": 8, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1557857436 + }, + "m_petTID": { + "type": "unsigned int", + "id": 9, + "offset": 200, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1037635095 + }, + "m_pPetBehavior": { + "type": "class SharedPointer", + "id": 10, + "offset": 208, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2663493503 + }, + "m_pPetJewels": { + "type": "class SharedPointer", + "id": 11, + "offset": 224, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 733229991 + } + } + }, + "290313930": { + "name": "class ClientMoveActorCinematicAction*", + "bases": [ + "MoveActorCinematicAction", + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 290313930, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + }, + "m_destinationActor": { + "type": "std::string", + "id": 2, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1510240374 + }, + "m_interpolationDuration": { + "type": "float", + "id": 3, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1458058437 + }, + "m_interpolateRotation": { + "type": "bool", + "id": 4, + "offset": 156, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2140337898 + }, + "m_kDestination": { + "type": "enum MoveActorCinematicAction::kMoveActorDestination", + "id": 5, + "offset": 160, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2027574244, + "enum_options": { + "kCenter": 0, + "kHome": 3, + "kActor": 1, + "kActorHangingEffect": 2 + } + }, + "m_destinationZOffset": { + "type": "float", + "id": 6, + "offset": 164, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2188240922 + } + } + }, + "1570800103": { + "name": "class SharedPointer", + "bases": [ + "WindowAnimation", + "PropertyClass" + ], + "hash": 1570800103, + "properties": { + "m_bUseDeepCopy": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 433380635 + }, + "m_scale": { + "type": "float", + "id": 1, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 899693439 + } + } + }, + "2009329728": { + "name": "class ScaleActorCinematicAction*", + "bases": [ + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 2009329728, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + }, + "m_scaleDuration": { + "type": "float", + "id": 2, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1764097637 + }, + "m_scaleTarget": { + "type": "float", + "id": 3, + "offset": 124, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1502791366 + } + } + }, + "289300862": { + "name": "class ClientAddAuraCinematicAction", + "bases": [ + "AddAuraCinematicAction", + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 289300862, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + }, + "m_effect": { + "type": "std::string", + "id": 2, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1894145160 + } + } + }, + "1570004307": { + "name": "class SharedPointer", + "bases": [ + "GameEffectInfo", + "PropertyClass" + ], + "hash": 1570004307, + "properties": { + "m_effectName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2029161513 + }, + "m_spellName": { + "type": "std::string", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2688485244 + }, + "m_numSpells": { + "type": "int", + "id": 2, + "offset": 136, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1269498237 + }, + "m_vFX": { + "type": "std::string", + "id": 3, + "offset": 144, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1764750607 + }, + "m_vFXOverride": { + "type": "bool", + "id": 4, + "offset": 176, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1491092359 + }, + "m_sound": { + "type": "std::string", + "id": 5, + "offset": 184, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2307644996 + } + } + }, + "289294718": { + "name": "class ClientAddAuraCinematicAction*", + "bases": [ + "AddAuraCinematicAction", + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 289294718, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + }, + "m_effect": { + "type": "std::string", + "id": 2, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1894145160 + } + } + }, + "733478466": { + "name": "class CursorStyleManager*", + "bases": [ + "PropertyClass" + ], + "hash": 733478466, + "properties": { + "m_defaultStyle": { + "type": "class CursorStyle", + "id": 0, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": true, + "pointer": false, + "hash": 1643631551 + }, + "m_cursorStyles": { + "type": "class CursorStyle", + "id": 1, + "offset": 408, + "flags": 135, + "container": "Vector", + "dynamic": true, + "singleton": true, + "pointer": false, + "hash": 1639869163 + } + } + }, + "1140592356": { + "name": "class PCDialogEntry", + "bases": [ + "ActorDialogEntry", + "PropertyClass" + ], + "hash": 1140592356, + "properties": { + "m_requirements": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 263, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3043523229 + }, + "m_dialog": { + "type": "std::string", + "id": 1, + "offset": 88, + "flags": 8388639, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1858395851 + }, + "m_picture": { + "type": "std::string", + "id": 2, + "offset": 120, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3128322903 + }, + "m_soundFile": { + "type": "std::string", + "id": 3, + "offset": 152, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2276870852 + }, + "m_action": { + "type": "std::string", + "id": 4, + "offset": 184, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1734553689 + }, + "m_dialogEvent": { + "type": "std::string", + "id": 5, + "offset": 216, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2707957549 + }, + "m_actorTemplateID": { + "type": "unsigned int", + "id": 6, + "offset": 248, + "flags": 33554463, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2134265679 + }, + "m_cameraName": { + "type": "std::string", + "id": 7, + "offset": 256, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3252786917 + }, + "m_interpolationDuration": { + "type": "float", + "id": 8, + "offset": 312, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1458058437, + "enum_options": { + "__DEFAULT": "1.0" + } + }, + "m_cameraOffsetX": { + "type": "float", + "id": 9, + "offset": 288, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1515912895 + }, + "m_cameraOffsetY": { + "type": "float", + "id": 10, + "offset": 292, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1515912896 + }, + "m_cameraOffsetZ": { + "type": "float", + "id": 11, + "offset": 296, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1515912897 + }, + "m_pitch": { + "type": "float", + "id": 12, + "offset": 304, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 896371695 + }, + "m_yaw": { + "type": "float", + "id": 13, + "offset": 300, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 357256328 + }, + "m_roll": { + "type": "float", + "id": 14, + "offset": 308, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 310020272 + }, + "m_cameraShakeType": { + "type": "std::string", + "id": 15, + "offset": 320, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1754128882, + "enum_options": { + "": 0, + "Constant": "Constant", + "Quake": "Quake", + "Thud": "Thud", + "End": "End", + "__DEFAULT": 0 + } + }, + "m_cameraShakeDuration": { + "type": "float", + "id": 16, + "offset": 352, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 316581010, + "enum_options": { + "__DEFAULT": "0.0" + } + }, + "m_cameraShakeAmplitude": { + "type": "float", + "id": 17, + "offset": 356, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2179718321, + "enum_options": { + "__DEFAULT": "0.0" + } + }, + "m_bypassCameraOnReview": { + "type": "bool", + "id": 18, + "offset": 360, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1412905725, + "enum_options": { + "__DEFAULT": 1 + } + }, + "m_cameraZoneName": { + "type": "std::string", + "id": 19, + "offset": 368, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3131581121 + }, + "m_duration": { + "type": "float", + "id": 20, + "offset": 400, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 920323453 + }, + "m_delay": { + "type": "float", + "id": 21, + "offset": 404, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 881988134 + }, + "m_cameraHidePlayers": { + "type": "int", + "id": 22, + "offset": 408, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 28533149 + }, + "m_walkAwayNpcTemplateID": { + "type": "gid", + "id": 23, + "offset": 416, + "flags": 33554719, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 942697507 + }, + "m_walkAwayExitDirectionInDegrees": { + "type": "float", + "id": 24, + "offset": 424, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 396419785 + }, + "m_walkAwayFadeTime": { + "type": "float", + "id": 25, + "offset": 428, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 822405687 + }, + "m_walkAwayUseCurrentFacing": { + "type": "bool", + "id": 26, + "offset": 432, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1464855436 + }, + "m_standInPlayerTag": { + "type": "std::string", + "id": 27, + "offset": 440, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1590121141 + }, + "m_fadeOutCamera": { + "type": "bool", + "id": 28, + "offset": 472, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1766121252 + }, + "m_snapCameraToPlayerAtExit": { + "type": "bool", + "id": 29, + "offset": 473, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1323369645 + }, + "m_secondaryCameraName": { + "type": "std::string", + "id": 30, + "offset": 480, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1670705581 + }, + "m_secondaryInterpolationDuration": { + "type": "float", + "id": 31, + "offset": 512, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1873822349 + }, + "m_npcStandInList": { + "type": "std::string", + "id": 32, + "offset": 520, + "flags": 287, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2076308937 + }, + "m_dialogAnimationList": { + "type": "std::string", + "id": 33, + "offset": 536, + "flags": 287, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2444806919 + }, + "m_dialogTurningList": { + "type": "std::string", + "id": 34, + "offset": 552, + "flags": 287, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2782869422 + }, + "m_npcYawOffsetInDegrees": { + "type": "float", + "id": 35, + "offset": 568, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1395075270 + }, + "m_allowPlayerToMove": { + "type": "bool", + "id": 36, + "offset": 572, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 225101337 + }, + "m_soundEffectFile": { + "type": "std::string", + "id": 37, + "offset": 576, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3235157265 + }, + "m_musicFile": { + "type": "std::string", + "id": 38, + "offset": 608, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2963686620 + }, + "m_nonStackableMusic": { + "type": "bool", + "id": 39, + "offset": 640, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1675595625 + }, + "m_nonRepeatableMusic": { + "type": "bool", + "id": 40, + "offset": 641, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2138315572 + }, + "m_playMusicAtSFXVolume": { + "type": "bool", + "id": 41, + "offset": 642, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2130871816 + }, + "m_soundEffectDelay": { + "type": "float", + "id": 42, + "offset": 644, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1586382460 + }, + "m_musicDelay": { + "type": "float", + "id": 43, + "offset": 648, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1217785767 + }, + "m_musicFadeTime": { + "type": "float", + "id": 44, + "offset": 652, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 502925015 + }, + "m_dontReleaseCameraAtExit": { + "type": "bool", + "id": 45, + "offset": 474, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1107508961 + }, + "m_disableBackButton": { + "type": "bool", + "id": 46, + "offset": 656, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 122355444 + }, + "m_enableExitButton": { + "type": "bool", + "id": 47, + "offset": 657, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1824693936 + }, + "m_cameraFadeType": { + "type": "std::string", + "id": 48, + "offset": 664, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2021935382, + "enum_options": { + "": 0, + "In Out Black": "In Out Black", + "In Out White": "In Out White", + "In Black": "In Black", + "Out Black": "Out Black", + "In White": "In White", + "Out White": "Out White", + "__DEFAULT": 0 + } + }, + "m_cameraFadeTime": { + "type": "float", + "id": 49, + "offset": 696, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 614419391, + "enum_options": { + "__DEFAULT": "0.5" + } + }, + "m_idleAnimation": { + "type": "std::string", + "id": 50, + "offset": 704, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2900487193 + }, + "m_spamTime": { + "type": "float", + "id": 51, + "offset": 736, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1727215063, + "enum_options": { + "__DEFAULT": "1.0" + } + }, + "m_playSoundIfSpamming": { + "type": "bool", + "id": 52, + "offset": 740, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 690006749, + "enum_options": { + "__DEFAULT": 1 + } + }, + "m_playMusicIfSpamming": { + "type": "bool", + "id": 53, + "offset": 741, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 538564341, + "enum_options": { + "__DEFAULT": 1 + } + }, + "m_stopMusicFadeTime": { + "type": "float", + "id": 54, + "offset": 744, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 696390845, + "enum_options": { + "__DEFAULT": "0.0" + } + }, + "m_restartMusicFadeTime": { + "type": "float", + "id": 55, + "offset": 748, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 709379292, + "enum_options": { + "__DEFAULT": "0.0" + } + }, + "m_meetsRequirements": { + "type": "bool", + "id": 56, + "offset": 752, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 296443061 + }, + "m_secondaryCameraInitalDelay": { + "type": "float", + "id": 57, + "offset": 516, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1812842232 + }, + "m_displayButtonsOnTimedDialog": { + "type": "bool", + "id": 58, + "offset": 753, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 569741400 + } + } + }, + "1569654863": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1569654863, + "properties": { + "m_defaultStyle": { + "type": "class CursorStyle", + "id": 0, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": true, + "pointer": false, + "hash": 1643631551 + }, + "m_cursorStyles": { + "type": "class CursorStyle", + "id": 1, + "offset": 408, + "flags": 135, + "container": "Vector", + "dynamic": true, + "singleton": true, + "pointer": false, + "hash": 1639869163 + } + } + }, + "288921992": { + "name": "class ProvidePetPowerInfo", + "bases": [ + "GameEffectInfo", + "PropertyClass" + ], + "hash": 288921992, + "properties": { + "m_effectName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2029161513 + }, + "m_happinessCost": { + "type": "int", + "id": 1, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1107125310 + }, + "m_cooldown": { + "type": "int", + "id": 2, + "offset": 108, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1897549823 + }, + "m_usesPerCombat": { + "type": "int", + "id": 3, + "offset": 112, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1445312791 + }, + "m_unlockedTemplate": { + "type": "std::string", + "id": 4, + "offset": 120, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1809846764 + }, + "m_lockedTemplate": { + "type": "std::string", + "id": 5, + "offset": 152, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2044999913 + }, + "m_combatTalent": { + "type": "bool", + "id": 6, + "offset": 184, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2113651857 + }, + "m_triggerName": { + "type": "std::string", + "id": 7, + "offset": 192, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3100183568 + }, + "m_unlockReagentAmount1": { + "type": "int", + "id": 8, + "offset": 224, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1546338481 + }, + "m_unlockReagentTemplate1": { + "type": "unsigned int", + "id": 9, + "offset": 228, + "flags": 33554463, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 943550188 + }, + "m_unlockReagentAmount2": { + "type": "int", + "id": 10, + "offset": 232, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1546338482 + }, + "m_unlockReagentTemplate2": { + "type": "unsigned int", + "id": 11, + "offset": 236, + "flags": 33554463, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 943550189 + }, + "m_unlockReagentAmount3": { + "type": "int", + "id": 12, + "offset": 240, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1546338483 + }, + "m_unlockReagentTemplate3": { + "type": "unsigned int", + "id": 13, + "offset": 244, + "flags": 33554463, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 943550190 + }, + "m_unlockReagentAmount4": { + "type": "int", + "id": 14, + "offset": 248, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1546338484 + }, + "m_unlockReagentTemplate4": { + "type": "unsigned int", + "id": 15, + "offset": 252, + "flags": 33554463, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 943550191 + }, + "m_extra1": { + "type": "std::string", + "id": 16, + "offset": 256, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1916008880 + }, + "m_extra2": { + "type": "std::string", + "id": 17, + "offset": 288, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1916008881 + }, + "m_lootTableName": { + "type": "std::string", + "id": 18, + "offset": 320, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2333333378 + }, + "m_powerDisplayName": { + "type": "std::string", + "id": 19, + "offset": 352, + "flags": 8388639, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2338393887 + }, + "m_requirementList": { + "type": "class SharedPointer", + "id": 20, + "offset": 384, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3783909798 + }, + "m_requirementFailedString": { + "type": "std::string", + "id": 21, + "offset": 400, + "flags": 8388639, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2051573416 + }, + "m_noPVP": { + "type": "bool", + "id": 22, + "offset": 436, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 806455846 + }, + "m_rampUp": { + "type": "int", + "id": 23, + "offset": 440, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 899539119 + }, + "m_description": { + "type": "std::string", + "id": 24, + "offset": 448, + "flags": 8388639, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1649374815 + }, + "m_myTurn": { + "type": "bool", + "id": 25, + "offset": 480, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 733913410 + } + } + }, + "1139266277": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1139266277, + "properties": {} + }, + "2011559543": { + "name": "class MoveCommandRoll*", + "bases": [ + "MoveController::MoveCommand", + "PropertyClass" + ], + "hash": 2011559543, + "properties": { + "m_fRoll": { + "type": "float", + "id": 0, + "offset": 88, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 883680790 + } + } + }, + "1138758149": { + "name": "class BurnHangingEffectCinematicAction", + "bases": [ + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 1138758149, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + }, + "m_cloaked": { + "type": "bool", + "id": 2, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 7349510 + }, + "m_detonate": { + "type": "bool", + "id": 3, + "offset": 153, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1738601959 + }, + "m_burnSound": { + "type": "std::string", + "id": 4, + "offset": 120, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1827806971 + } + } + }, + "2011337770": { + "name": "class DerbyEffect*", + "bases": [ + "PropertyClass" + ], + "hash": 2011337770, + "properties": { + "m_buffType": { + "type": "enum DerbyTalentBuffType", + "id": 0, + "offset": 92, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1149251982, + "enum_options": { + "Buff": 0, + "Debuff": 1, + "Neither": 2 + } + }, + "m_kTarget": { + "type": "enum DerbyTargetType", + "id": 1, + "offset": 96, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1807803351, + "enum_options": { + "kTargetInFront": 0, + "kTargetBehind": 1, + "kTargetFirst": 2, + "kTargetSelf": 3, + "kTargetAll": 4, + "kTargetLast": 5 + } + }, + "m_nDuration": { + "type": "int", + "id": 2, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1110167982 + }, + "m_effectID": { + "type": "unsigned int", + "id": 3, + "offset": 88, + "flags": 24, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2347630439 + }, + "m_imageFilename": { + "type": "std::string", + "id": 4, + "offset": 112, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2813328063 + }, + "m_iconIndex": { + "type": "unsigned int", + "id": 5, + "offset": 144, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1265133262 + }, + "m_soundOnActivate": { + "type": "std::string", + "id": 6, + "offset": 152, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1956929714 + }, + "m_soundOnTarget": { + "type": "std::string", + "id": 7, + "offset": 184, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3444214056 + }, + "m_targetParticleEffect": { + "type": "std::string", + "id": 8, + "offset": 216, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3048234723 + }, + "m_overheadMessage": { + "type": "std::string", + "id": 9, + "offset": 248, + "flags": 8388639, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1701018190 + }, + "m_requirements": { + "type": "class RequirementList", + "id": 10, + "offset": 280, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2840988582 + } + } + }, + "734261487": { + "name": "class ActiveTimedPassEntry", + "bases": [ + "PropertyClass" + ], + "hash": 734261487, + "properties": { + "m_passInfo": { + "type": "class PassInfo", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2268899601 + }, + "m_expireTime": { + "type": "int", + "id": 1, + "offset": 240, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1624902422 + } + } + }, + "1138583308": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1138583308, + "properties": { + "m_playerRecordedMusicLoopList": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 65543, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2520861630 + } + } + }, + "1570333910": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1570333910, + "properties": { + "m_itemInfoList": { + "type": "class AvatarItemInfoBase*", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 3137169759 + } + } + }, + "2010729727": { + "name": "class GardeningPatchData", + "bases": [ + "PropertyClass" + ], + "hash": 2010729727, + "properties": {} + }, + "734261447": { + "name": "class ActiveTimedPassEntry*", + "bases": [ + "PropertyClass" + ], + "hash": 734261447, + "properties": { + "m_passInfo": { + "type": "class PassInfo", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2268899601 + }, + "m_expireTime": { + "type": "int", + "id": 1, + "offset": 240, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1624902422 + } + } + }, + "2010298263": { + "name": "enum NPCBehaviorTemplate::TITLE_TYPE", + "bases": [], + "hash": 2010298263, + "properties": {} + }, + "290034604": { + "name": "class std::list >", + "bases": [], + "hash": 290034604, + "properties": {} + }, + "289844667": { + "name": "MadlibArgT", + "bases": [ + "MadlibArg", + "PropertyClass" + ], + "hash": 289844667, + "properties": { + "m_madlibToken": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3058682373 + }, + "m_madlibArgument": { + "type": "double", + "id": 1, + "offset": 112, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2776302297 + } + } + }, + "1138940983": { + "name": "class SharedPointer", + "bases": [ + "Window", + "PropertyClass" + ], + "hash": 1138940983, + "properties": { + "m_sName": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306437263 + }, + "m_Children": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621225959 + }, + "m_Style": { + "type": "unsigned int", + "id": 2, + "offset": 152, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "SCALE_CHILDREN": 2, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "FOCUS_LOCKED": 64, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152 + } + }, + "m_Flags": { + "type": "unsigned int", + "id": 3, + "offset": 156, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } + }, + "m_Window": { + "type": "class Rect", + "id": 4, + "offset": 160, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3105139380 + }, + "m_fTargetAlpha": { + "type": "float", + "id": 5, + "offset": 212, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1809129834 + }, + "m_fDisabledAlpha": { + "type": "float", + "id": 6, + "offset": 216, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1389987675 + }, + "m_fAlpha": { + "type": "float", + "id": 7, + "offset": 208, + "flags": 65671, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 482130755 + }, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3623628394 + }, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2102211316 + }, + "m_sScript": { + "type": "std::string", + "id": 10, + "offset": 352, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1846695875 + }, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3389835433 + }, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547159940 + }, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513510520 + }, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3091503757 + } + } + }, + "1570809995": { + "name": "class AdvPvPLeaderboardVisualBlob", + "bases": [ + "PropertyClass" + ], + "hash": 1570809995, + "properties": { + "m_level": { + "type": "int", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 801285362 + }, + "m_school": { + "type": "unsigned int", + "id": 1, + "offset": 76, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1152268885 + }, + "m_gender": { + "type": "int", + "id": 2, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 473816879 + }, + "m_nameKeys": { + "type": "unsigned int", + "id": 3, + "offset": 84, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1772225898 + }, + "m_badge": { + "type": "std::string", + "id": 4, + "offset": 88, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2286962478 + }, + "m_pCharacterBehavior": { + "type": "class SharedPointer", + "id": 5, + "offset": 120, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2724673923 + }, + "m_pEquipment": { + "type": "class SharedPointer", + "id": 6, + "offset": 136, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2473540161 + }, + "m_pStats": { + "type": "class SharedPointer", + "id": 7, + "offset": 152, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2212894623 + }, + "m_pGameEffects": { + "type": "class SharedPointer", + "id": 8, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1557857436 + }, + "m_petTID": { + "type": "unsigned int", + "id": 9, + "offset": 200, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1037635095 + }, + "m_pPetBehavior": { + "type": "class SharedPointer", + "id": 10, + "offset": 208, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2663493503 + }, + "m_pPetJewels": { + "type": "class SharedPointer", + "id": 11, + "offset": 224, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 733229991 + } + } + }, + "734576796": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 734576796, + "properties": { + "m_id": { + "type": "unsigned int", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2301988666 + }, + "m_stateID": { + "type": "unsigned int", + "id": 1, + "offset": 76, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1849561019 + } + } + }, + "734559806": { + "name": "class MakeTargetableCinematicStageTemplate*", + "bases": [ + "CinematicStageTemplate", + "PropertyClass" + ], + "hash": 734559806, + "properties": { + "m_name": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1717359772 + }, + "m_duration": { + "type": "float", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 920323453 + }, + "m_actions": { + "type": "class SharedPointer", + "id": 2, + "offset": 112, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1380578687 + }, + "m_stageRelationships": { + "type": "class SharedPointer", + "id": 3, + "offset": 128, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 499983354 + } + } + }, + "2011554423": { + "name": "class MoveCommandRoll", + "bases": [ + "MoveController::MoveCommand", + "PropertyClass" + ], + "hash": 2011554423, + "properties": { + "m_fRoll": { + "type": "float", + "id": 0, + "offset": 88, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 883680790 + } + } + }, + "290147688": { + "name": "class DuelistBehaviorTemplate", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 290147688, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + }, + "m_npcProximity": { + "type": "float", + "id": 1, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1306880973 + } + } + }, + "1139333181": { + "name": "class ClientDerbyForceLaneChange", + "bases": [ + "DerbyForceLaneChange", + "DerbyEffect", + "PropertyClass" + ], + "hash": 1139333181, + "properties": { + "m_buffType": { + "type": "enum DerbyTalentBuffType", + "id": 0, + "offset": 92, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1149251982, + "enum_options": { + "Buff": 0, + "Debuff": 1, + "Neither": 2 + } + }, + "m_kTarget": { + "type": "enum DerbyTargetType", + "id": 1, + "offset": 96, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1807803351, + "enum_options": { + "kTargetInFront": 0, + "kTargetBehind": 1, + "kTargetFirst": 2, + "kTargetSelf": 3, + "kTargetAll": 4, + "kTargetLast": 5 + } + }, + "m_nDuration": { + "type": "int", + "id": 2, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1110167982 + }, + "m_effectID": { + "type": "unsigned int", + "id": 3, + "offset": 88, + "flags": 24, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2347630439 + }, + "m_imageFilename": { + "type": "std::string", + "id": 4, + "offset": 112, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2813328063 + }, + "m_iconIndex": { + "type": "unsigned int", + "id": 5, + "offset": 144, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1265133262 + }, + "m_soundOnActivate": { + "type": "std::string", + "id": 6, + "offset": 152, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1956929714 + }, + "m_soundOnTarget": { + "type": "std::string", + "id": 7, + "offset": 184, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3444214056 + }, + "m_targetParticleEffect": { + "type": "std::string", + "id": 8, + "offset": 216, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3048234723 + }, + "m_overheadMessage": { + "type": "std::string", + "id": 9, + "offset": 248, + "flags": 8388639, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1701018190 + }, + "m_requirements": { + "type": "class RequirementList", + "id": 10, + "offset": 280, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2840988582 + } + } + }, + "1572128783": { + "name": "class BracketRequest*", + "bases": [ + "PvPMatchRequest", + "MatchRequest", + "PropertyClass" + ], + "hash": 1572128783, + "properties": { + "m_characterID": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 210498386 + }, + "m_tournamentNameID": { + "type": "unsigned int", + "id": 1, + "offset": 84, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1799846440 + }, + "m_matchNameID": { + "type": "unsigned int", + "id": 2, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1751361288 + }, + "m_leagueID": { + "type": "unsigned int", + "id": 3, + "offset": 88, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 692361645 + }, + "m_seasonID": { + "type": "unsigned int", + "id": 4, + "offset": 92, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 535260643 + }, + "m_teams": { + "type": "class SharedPointer", + "id": 5, + "offset": 96, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1984373608 + }, + "m_joinQueueRequirements": { + "type": "class SharedPointer", + "id": 6, + "offset": 112, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2746080983 + }, + "m_ignoredList": { + "type": "gid", + "id": 7, + "offset": 128, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1850924028 + }, + "m_matchTimer": { + "type": "float", + "id": 8, + "offset": 144, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1510935909 + }, + "m_bonusTime": { + "type": "int", + "id": 9, + "offset": 148, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1757496496 + }, + "m_passPenalty": { + "type": "int", + "id": 10, + "offset": 152, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 982951662 + }, + "m_yellowTime": { + "type": "int", + "id": 11, + "offset": 156, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1017028741 + }, + "m_redTime": { + "type": "int", + "id": 12, + "offset": 160, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1909556708 + }, + "m_minTurnTime": { + "type": "int", + "id": 13, + "offset": 164, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 652524886 + }, + "m_effects": { + "type": "class SharedPointer", + "id": 14, + "offset": 168, + "flags": 31, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 804962647 + }, + "m_maxNumberOfTeams": { + "type": "unsigned int", + "id": 15, + "offset": 220, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1656964203 + }, + "m_minNumberOfTeams": { + "type": "unsigned int", + "id": 16, + "offset": 224, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 746353193 + }, + "m_timeLimitSec": { + "type": "unsigned int", + "id": 17, + "offset": 216, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 312519798 + }, + "m_scheduleID": { + "type": "gid", + "id": 18, + "offset": 232, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1439120946 + }, + "m_visibleTimeSeconds": { + "type": "unsigned int", + "id": 19, + "offset": 248, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1245818841 + }, + "m_registrationOpenTimeSeconds": { + "type": "unsigned int", + "id": 20, + "offset": 252, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2064854776 + }, + "m_tournamentPreparingTimeSeconds": { + "type": "unsigned int", + "id": 21, + "offset": 256, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1121720544 + }, + "m_teamSize": { + "type": "int", + "id": 22, + "offset": 240, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2131986300 + }, + "m_bracketRewardsList": { + "type": "class SharedPointer", + "id": 23, + "offset": 272, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 3842983067 + }, + "m_name": { + "type": "std::string", + "id": 24, + "offset": 288, + "flags": 8388639, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1717359772 + }, + "m_roundStartsInSeconds": { + "type": "unsigned int", + "id": 25, + "offset": 260, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 346233980 + }, + "m_roundBufferTimeSeconds": { + "type": "unsigned int", + "id": 26, + "offset": 264, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 671173677 + }, + "m_numberOfRounds": { + "type": "unsigned int", + "id": 27, + "offset": 268, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2292833030 + }, + "m_scoreMultiplier": { + "type": "float", + "id": 28, + "offset": 328, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 545011290 + }, + "m_preferredNumberOfTeams": { + "type": "unsigned int", + "id": 29, + "offset": 228, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 686953092 + }, + "m_specialEvent": { + "type": "bool", + "id": 30, + "offset": 192, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1211693398 + }, + "m_pvpDuelModifiers": { + "type": "std::string", + "id": 31, + "offset": 200, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1796488605 + }, + "m_premierPrizesStoreGIDsCSV": { + "type": "std::string", + "id": 32, + "offset": 336, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2521625388 + }, + "m_costPvPTourneyCurrency": { + "type": "unsigned int", + "id": 33, + "offset": 320, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1823400061 + }, + "m_subCostPvPTourneyCurrency": { + "type": "unsigned int", + "id": 34, + "offset": 324, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2082801383 + } + } + }, + "1139333175": { + "name": "class ClientDerbyForceLaneChange*", + "bases": [ + "DerbyForceLaneChange", + "DerbyEffect", + "PropertyClass" + ], + "hash": 1139333175, + "properties": { + "m_buffType": { + "type": "enum DerbyTalentBuffType", + "id": 0, + "offset": 92, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1149251982, + "enum_options": { + "Buff": 0, + "Debuff": 1, + "Neither": 2 + } + }, + "m_kTarget": { + "type": "enum DerbyTargetType", + "id": 1, + "offset": 96, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1807803351, + "enum_options": { + "kTargetInFront": 0, + "kTargetBehind": 1, + "kTargetFirst": 2, + "kTargetSelf": 3, + "kTargetAll": 4, + "kTargetLast": 5 + } + }, + "m_nDuration": { + "type": "int", + "id": 2, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1110167982 + }, + "m_effectID": { + "type": "unsigned int", + "id": 3, + "offset": 88, + "flags": 24, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2347630439 + }, + "m_imageFilename": { + "type": "std::string", + "id": 4, + "offset": 112, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2813328063 + }, + "m_iconIndex": { + "type": "unsigned int", + "id": 5, + "offset": 144, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1265133262 + }, + "m_soundOnActivate": { + "type": "std::string", + "id": 6, + "offset": 152, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1956929714 + }, + "m_soundOnTarget": { + "type": "std::string", + "id": 7, + "offset": 184, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3444214056 + }, + "m_targetParticleEffect": { + "type": "std::string", + "id": 8, + "offset": 216, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3048234723 + }, + "m_overheadMessage": { + "type": "std::string", + "id": 9, + "offset": 248, + "flags": 8388639, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1701018190 + }, + "m_requirements": { + "type": "class RequirementList", + "id": 10, + "offset": 280, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2840988582 + } + } + }, + "1571927647": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1571927647, + "properties": { + "m_energyTick": { + "type": "int", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1236715535 + }, + "m_minPetLevelForJewels": { + "type": "unsigned char", + "id": 1, + "offset": 76, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1631450758 + }, + "m_petJewelTalentIcon": { + "type": "std::string", + "id": 2, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3286601420 + } + } + }, + "1571236207": { + "name": "class StitchLeaderboard*", + "bases": [ + "PropertyClass" + ], + "hash": 1571236207, + "properties": { + "m_stitchLeaderboardList": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1311714008 + }, + "m_type": { + "type": "unsigned int", + "id": 1, + "offset": 88, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 431304463 + } + } + }, + "2011992280": { + "name": "class SpawnActorCinematicAction*", + "bases": [ + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 2011992280, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + }, + "m_objectInfo": { + "type": "class CoreObjectInfo*", + "id": 2, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1373700953 + }, + "m_bStartHidden": { + "type": "bool", + "id": 3, + "offset": 128, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1939845615 + } + } + }, + "290405788": { + "name": "struct Search::ResultData", + "bases": [], + "hash": 290405788, + "properties": {} + }, + "736135446": { + "name": "class CinematicStageRelationship*", + "bases": [ + "PropertyClass" + ], + "hash": 736135446, + "properties": { + "m_actor": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + }, + "m_stageToWaitFor": { + "type": "std::string", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2133449134 + } + } + }, + "2011909800": { + "name": "class AnimatedControlButtonState*", + "bases": [ + "ControlButtonState", + "PropertyClass" + ], + "hash": 2011909800, + "properties": { + "m_nAnimBeginFrame": { + "type": "int", + "id": 0, + "offset": 72, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1469531165 + }, + "m_nAnimEndFrame": { + "type": "int", + "id": 1, + "offset": 76, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1659451087 + }, + "m_fAnimRate": { + "type": "float", + "id": 2, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 802385934 + }, + "m_bAnimLoop": { + "type": "bool", + "id": 3, + "offset": 84, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1487150228 + }, + "m_bAnimForceFinish": { + "type": "bool", + "id": 4, + "offset": 85, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 943660298 + } + } + }, + "736033564": { + "name": "class SharedPointer", + "bases": [ + "AvatarItemInfo", + "AvatarItemInfoBase", + "PropertyClass" + ], + "hash": 736033564, + "properties": { + "m_partName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2609631923 + }, + "m_slotName": { + "type": "std::string", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2819781566 + }, + "m_flags": { + "type": "std::string", + "id": 2, + "offset": 144, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2292098216 + }, + "m_options": { + "type": "class SharedPointer", + "id": 3, + "offset": 160, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2499357824 + }, + "m_textureOptions": { + "type": "class SharedPointer", + "id": 4, + "offset": 176, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2667548348 + }, + "m_defaultOption": { + "type": "class SharedPointer", + "id": 5, + "offset": 192, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2436336754 + }, + "m_defaultTextureOption": { + "type": "class SharedPointer", + "id": 6, + "offset": 208, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2712636654 + } + } + }, + "1139954009": { + "name": "class SharedPointer", + "bases": [ + "GameEffectTemplate", + "PropertyClass" + ], + "hash": 1139954009, + "properties": { + "m_effectName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2029161513 + }, + "m_effectCategory": { + "type": "std::string", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1852673222 + }, + "m_sortOrder": { + "type": "int", + "id": 2, + "offset": 148, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1411218206 + }, + "m_duration": { + "type": "double", + "id": 3, + "offset": 192, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2727932435 + }, + "m_stackingCategories": { + "type": "std::string", + "id": 4, + "offset": 160, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1774497525 + }, + "m_isPersistent": { + "type": "bool", + "id": 5, + "offset": 153, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 923861920 + }, + "m_bIsOnPet": { + "type": "bool", + "id": 6, + "offset": 154, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 522593303 + }, + "m_isPublic": { + "type": "bool", + "id": 7, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1728439822 + }, + "m_visualEffectAddName": { + "type": "std::string", + "id": 8, + "offset": 200, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3382086694 + }, + "m_visualEffectRemoveName": { + "type": "std::string", + "id": 9, + "offset": 232, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1541697323 + }, + "m_onAddFunctorName": { + "type": "std::string", + "id": 10, + "offset": 280, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1561843107 + }, + "m_onRemoveFunctorName": { + "type": "std::string", + "id": 11, + "offset": 312, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2559017864 + }, + "m_stackingRule": { + "type": "enum STACKING_RULE", + "id": 12, + "offset": 144, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 431568889, + "enum_options": { + "STACKING_ALLOWED": 0, + "STACKING_NOSTACK": 1, + "STACKING_REPLACE": 2 + } + }, + "m_startReqs": { + "type": "class SharedPointer", + "id": 13, + "offset": 360, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3147529602 + }, + "m_containerEffects": { + "type": "class SharedPointer", + "id": 14, + "offset": 376, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 957354392 + }, + "m_accompanyID": { + "type": "unsigned int", + "id": 15, + "offset": 392, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1462123093 + } + } + }, + "2011909794": { + "name": "class AnimatedControlButtonState", + "bases": [ + "ControlButtonState", + "PropertyClass" + ], + "hash": 2011909794, + "properties": { + "m_nAnimBeginFrame": { + "type": "int", + "id": 0, + "offset": 72, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1469531165 + }, + "m_nAnimEndFrame": { + "type": "int", + "id": 1, + "offset": 76, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1659451087 + }, + "m_fAnimRate": { + "type": "float", + "id": 2, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 802385934 + }, + "m_bAnimLoop": { + "type": "bool", + "id": 3, + "offset": 84, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1487150228 + }, + "m_bAnimForceFinish": { + "type": "bool", + "id": 4, + "offset": 85, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 943660298 + } + } + }, + "1139827849": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1139827849, + "properties": {} + }, + "292458316": { + "name": "class WizardCharacterCreationInfo", + "bases": [ + "CharacterCreationInfo", + "PropertyClass" + ], + "hash": 292458316, + "properties": { + "m_templateID": { + "type": "int", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1075344419 + }, + "m_name": { + "type": "std::wstring", + "id": 1, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513345113 + }, + "m_shouldRename": { + "type": "bool", + "id": 2, + "offset": 128, + "flags": 24, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1741266202 + }, + "m_globalID": { + "type": "gid", + "id": 3, + "offset": 120, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 981205014 + }, + "m_userID": { + "type": "gid", + "id": 4, + "offset": 112, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1037989700 + }, + "m_quarantined": { + "type": "bool", + "id": 5, + "offset": 129, + "flags": 24, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 637025007 + }, + "m_avatarBehavior": { + "type": "class SharedPointer", + "id": 6, + "offset": 136, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2884063077 + }, + "m_equipmentInfoList": { + "type": "class SharedPointer", + "id": 7, + "offset": 152, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2373226440 + }, + "m_location": { + "type": "std::string", + "id": 8, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2079561588 + }, + "m_level": { + "type": "int", + "id": 9, + "offset": 200, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 801285362 + }, + "m_world": { + "type": "int", + "id": 10, + "offset": 204, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 814685730 + }, + "m_schoolOfFocus": { + "type": "unsigned int", + "id": 11, + "offset": 208, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 236936682 + }, + "m_nameIndices": { + "type": "unsigned int", + "id": 12, + "offset": 212, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 258521869 + } + } + }, + "736132670": { + "name": "class MakeTargetableCinematicStageTemplate", + "bases": [ + "CinematicStageTemplate", + "PropertyClass" + ], + "hash": 736132670, + "properties": { + "m_name": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1717359772 + }, + "m_duration": { + "type": "float", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 920323453 + }, + "m_actions": { + "type": "class SharedPointer", + "id": 2, + "offset": 112, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1380578687 + }, + "m_stageRelationships": { + "type": "class SharedPointer", + "id": 3, + "offset": 128, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 499983354 + } + } + }, + "1572128943": { + "name": "class BracketRequest", + "bases": [ + "PvPMatchRequest", + "MatchRequest", + "PropertyClass" + ], + "hash": 1572128943, + "properties": { + "m_characterID": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 210498386 + }, + "m_tournamentNameID": { + "type": "unsigned int", + "id": 1, + "offset": 84, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1799846440 + }, + "m_matchNameID": { + "type": "unsigned int", + "id": 2, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1751361288 + }, + "m_leagueID": { + "type": "unsigned int", + "id": 3, + "offset": 88, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 692361645 + }, + "m_seasonID": { + "type": "unsigned int", + "id": 4, + "offset": 92, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 535260643 + }, + "m_teams": { + "type": "class SharedPointer", + "id": 5, + "offset": 96, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1984373608 + }, + "m_joinQueueRequirements": { + "type": "class SharedPointer", + "id": 6, + "offset": 112, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2746080983 + }, + "m_ignoredList": { + "type": "gid", + "id": 7, + "offset": 128, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1850924028 + }, + "m_matchTimer": { + "type": "float", + "id": 8, + "offset": 144, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1510935909 + }, + "m_bonusTime": { + "type": "int", + "id": 9, + "offset": 148, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1757496496 + }, + "m_passPenalty": { + "type": "int", + "id": 10, + "offset": 152, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 982951662 + }, + "m_yellowTime": { + "type": "int", + "id": 11, + "offset": 156, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1017028741 + }, + "m_redTime": { + "type": "int", + "id": 12, + "offset": 160, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1909556708 + }, + "m_minTurnTime": { + "type": "int", + "id": 13, + "offset": 164, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 652524886 + }, + "m_effects": { + "type": "class SharedPointer", + "id": 14, + "offset": 168, + "flags": 31, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 804962647 + }, + "m_maxNumberOfTeams": { + "type": "unsigned int", + "id": 15, + "offset": 220, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1656964203 + }, + "m_minNumberOfTeams": { + "type": "unsigned int", + "id": 16, + "offset": 224, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 746353193 + }, + "m_timeLimitSec": { + "type": "unsigned int", + "id": 17, + "offset": 216, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 312519798 + }, + "m_scheduleID": { + "type": "gid", + "id": 18, + "offset": 232, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1439120946 + }, + "m_visibleTimeSeconds": { + "type": "unsigned int", + "id": 19, + "offset": 248, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1245818841 + }, + "m_registrationOpenTimeSeconds": { + "type": "unsigned int", + "id": 20, + "offset": 252, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2064854776 + }, + "m_tournamentPreparingTimeSeconds": { + "type": "unsigned int", + "id": 21, + "offset": 256, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1121720544 + }, + "m_teamSize": { + "type": "int", + "id": 22, + "offset": 240, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2131986300 + }, + "m_bracketRewardsList": { + "type": "class SharedPointer", + "id": 23, + "offset": 272, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 3842983067 + }, + "m_name": { + "type": "std::string", + "id": 24, + "offset": 288, + "flags": 8388639, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1717359772 + }, + "m_roundStartsInSeconds": { + "type": "unsigned int", + "id": 25, + "offset": 260, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 346233980 + }, + "m_roundBufferTimeSeconds": { + "type": "unsigned int", + "id": 26, + "offset": 264, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 671173677 + }, + "m_numberOfRounds": { + "type": "unsigned int", + "id": 27, + "offset": 268, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2292833030 + }, + "m_scoreMultiplier": { + "type": "float", + "id": 28, + "offset": 328, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 545011290 + }, + "m_preferredNumberOfTeams": { + "type": "unsigned int", + "id": 29, + "offset": 228, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 686953092 + }, + "m_specialEvent": { + "type": "bool", + "id": 30, + "offset": 192, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1211693398 + }, + "m_pvpDuelModifiers": { + "type": "std::string", + "id": 31, + "offset": 200, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1796488605 + }, + "m_premierPrizesStoreGIDsCSV": { + "type": "std::string", + "id": 32, + "offset": 336, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2521625388 + }, + "m_costPvPTourneyCurrency": { + "type": "unsigned int", + "id": 33, + "offset": 320, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1823400061 + }, + "m_subCostPvPTourneyCurrency": { + "type": "unsigned int", + "id": 34, + "offset": 324, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2082801383 + } + } + }, + "292287628": { + "name": "enum ItemBundleTemplate::AcquireConditionType", + "bases": [], + "hash": 292287628, + "properties": {} + }, + "291458408": { + "name": "class DuelistBehaviorTemplate*", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 291458408, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + }, + "m_npcProximity": { + "type": "float", + "id": 1, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1306880973 + } + } + }, + "2012000686": { + "name": "class SharedPointer", + "bases": [ + "Window", + "PropertyClass" + ], + "hash": 2012000686, + "properties": { + "m_sName": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306437263 + }, + "m_Children": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621225959 + }, + "m_Style": { + "type": "unsigned int", + "id": 2, + "offset": 152, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "SCALE_CHILDREN": 2, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "FOCUS_LOCKED": 64, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152 + } + }, + "m_Flags": { + "type": "unsigned int", + "id": 3, + "offset": 156, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648, + "ONE_SHOT": 8388608, + "FLIPPED_HORIZONTAL": 16777216, + "FLIPPED_VERTICAL": 33554432 + } + }, + "m_Window": { + "type": "class Rect", + "id": 4, + "offset": 160, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3105139380 + }, + "m_fTargetAlpha": { + "type": "float", + "id": 5, + "offset": 212, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1809129834 + }, + "m_fDisabledAlpha": { + "type": "float", + "id": 6, + "offset": 216, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1389987675 + }, + "m_fAlpha": { + "type": "float", + "id": 7, + "offset": 208, + "flags": 65671, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 482130755 + }, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3623628394 + }, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2102211316 + }, + "m_sScript": { + "type": "std::string", + "id": 10, + "offset": 352, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1846695875 + }, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3389835433 + }, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547159940 + }, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513510520 + }, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3091503757 + }, + "m_pMaterial": { + "type": "class SharedPointer", + "id": 16, + "offset": 592, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3479277078 + }, + "m_fRotation": { + "type": "float", + "id": 17, + "offset": 608, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1175400173 + }, + "m_Color": { + "type": "class Color", + "id": 18, + "offset": 584, + "flags": 262279, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1753714077 + }, + "m_textColor": { + "type": "class Color", + "id": 19, + "offset": 612, + "flags": 262279, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2528109250 + }, + "m_textComponent": { + "type": "class TextComponent", + "id": 20, + "offset": 616, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3491704390 + } + } + }, + "736135456": { + "name": "class CinematicStageRelationship", + "bases": [ + "PropertyClass" + ], + "hash": 736135456, + "properties": { + "m_actor": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + }, + "m_stageToWaitFor": { + "type": "std::string", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2133449134 + } + } + }, + "1144391013": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1144391013, + "properties": { + "m_templateID": { + "type": "unsigned int", + "id": 0, + "offset": 72, + "flags": 33554471, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1286746870 + }, + "m_size": { + "type": "float", + "id": 1, + "offset": 76, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 310050130 + } + } + }, + "1573993703": { + "name": "class DailyPvPInfo*", + "bases": [ + "PropertyClass" + ], + "hash": 1573993703, + "properties": { + "m_numMatchesRequired": { + "type": "unsigned int", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2289964291 + }, + "m_pvpType": { + "type": "enum DailyPvPInfo::DailyPvPTypes", + "id": 1, + "offset": 76, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 876371151, + "enum_options": { + "DPVP_Solo_Ranked": 0 + } + }, + "m_winRequired": { + "type": "bool", + "id": 2, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 850879554 + } + } + }, + "1141470160": { + "name": "class BGPolymorphSelectOption*", + "bases": [ + "ServiceOptionBase", + "PropertyClass" + ], + "hash": 1141470160, + "properties": { + "m_serviceName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2206028813 + }, + "m_iconKey": { + "type": "std::string", + "id": 1, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2457138637 + }, + "m_displayKey": { + "type": "std::string", + "id": 2, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3023276954 + }, + "m_serviceIndex": { + "type": "unsigned int", + "id": 3, + "offset": 204, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2103126710 + }, + "m_forceInteract": { + "type": "bool", + "id": 4, + "offset": 200, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1705789564 + } + } + }, + "1573263953": { + "name": "class SharedPointer", + "bases": [ + "Window", + "PropertyClass" + ], + "hash": 1573263953, + "properties": { + "m_sName": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306437263 + }, + "m_Children": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621225959 + }, + "m_Style": { + "type": "unsigned int", + "id": 2, + "offset": 152, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152, + "DO_NOT_WRAP": 134217728, + "FIT_TEXT": 268435456 + } + }, + "m_Flags": { + "type": "unsigned int", + "id": 3, + "offset": 156, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } + }, + "m_Window": { + "type": "class Rect", + "id": 4, + "offset": 160, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3105139380 + }, + "m_fTargetAlpha": { + "type": "float", + "id": 5, + "offset": 212, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1809129834 + }, + "m_fDisabledAlpha": { + "type": "float", + "id": 6, + "offset": 216, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1389987675 + }, + "m_fAlpha": { + "type": "float", + "id": 7, + "offset": 208, + "flags": 65671, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 482130755 + }, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3623628394 + }, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2102211316 + }, + "m_sScript": { + "type": "std::string", + "id": 10, + "offset": 352, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1846695875 + }, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3389835433 + }, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547159940 + }, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513510520 + }, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3091503757 + }, + "m_sText": { + "type": "std::wstring", + "id": 16, + "offset": 584, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2102642960 + }, + "m_sTooltip": { + "type": "std::wstring", + "id": 17, + "offset": 616, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1680475798 + }, + "m_bUseDropShadow": { + "type": "bool", + "id": 18, + "offset": 653, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 93063037 + }, + "m_bUseOutline": { + "type": "bool", + "id": 19, + "offset": 654, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 744292994 + }, + "m_bEnableWordWrap": { + "type": "bool", + "id": 20, + "offset": 655, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 430904562 + }, + "m_bEnableToggle": { + "type": "bool", + "id": 21, + "offset": 652, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1937994142 + }, + "m_nLeadingAdjust": { + "type": "int", + "id": 22, + "offset": 656, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1559480167 + } + } + }, + "2012594057": { + "name": "class std::list >", + "bases": [], + "hash": 2012594057, + "properties": {} + }, + "292457996": { + "name": "class WizardCharacterCreationInfo*", + "bases": [ + "CharacterCreationInfo", + "PropertyClass" + ], + "hash": 292457996, + "properties": { + "m_templateID": { + "type": "int", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1075344419 + }, + "m_name": { + "type": "std::wstring", + "id": 1, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513345113 + }, + "m_shouldRename": { + "type": "bool", + "id": 2, + "offset": 128, + "flags": 24, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1741266202 + }, + "m_globalID": { + "type": "gid", + "id": 3, + "offset": 120, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 981205014 + }, + "m_userID": { + "type": "gid", + "id": 4, + "offset": 112, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1037989700 + }, + "m_quarantined": { + "type": "bool", + "id": 5, + "offset": 129, + "flags": 24, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 637025007 + }, + "m_avatarBehavior": { + "type": "class SharedPointer", + "id": 6, + "offset": 136, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2884063077 + }, + "m_equipmentInfoList": { + "type": "class SharedPointer", + "id": 7, + "offset": 152, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2373226440 + }, + "m_location": { + "type": "std::string", + "id": 8, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2079561588 + }, + "m_level": { + "type": "int", + "id": 9, + "offset": 200, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 801285362 + }, + "m_world": { + "type": "int", + "id": 10, + "offset": 204, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 814685730 + }, + "m_schoolOfFocus": { + "type": "unsigned int", + "id": 11, + "offset": 208, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 236936682 + }, + "m_nameIndices": { + "type": "unsigned int", + "id": 12, + "offset": 212, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 258521869 + } + } + }, + "1141130397": { + "name": "class HousingSigilBehaviorTemplate*", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 1141130397, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + }, + "m_sigilZoneInfoList": { + "type": "class SharedPointer", + "id": 1, + "offset": 120, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 3999162041 + }, + "m_usedDisposableDungeonTemplateID": { + "type": "unsigned int", + "id": 2, + "offset": 136, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 828840861 + } + } + }, + "1573103953": { + "name": "class SharedPointer", + "bases": [ + "ControlText", + "Window", + "PropertyClass" + ], + "hash": 1573103953, + "properties": { + "m_sName": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306437263 + }, + "m_Children": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621225959 + }, + "m_Style": { + "type": "unsigned int", + "id": 2, + "offset": 152, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152, + "ITEM_HEIGHT": 16777216, + "COLUMN_CENTER": 33554432, + "VERTICAL_CENTER": 67108864, + "DO_NOT_WRAP": 134217728, + "IGNORE_KEYBOARD": 536870912 + } + }, + "m_Flags": { + "type": "unsigned int", + "id": 3, + "offset": 156, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } + }, + "m_Window": { + "type": "class Rect", + "id": 4, + "offset": 160, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3105139380 + }, + "m_fTargetAlpha": { + "type": "float", + "id": 5, + "offset": 212, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1809129834 + }, + "m_fDisabledAlpha": { + "type": "float", + "id": 6, + "offset": 216, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1389987675 + }, + "m_fAlpha": { + "type": "float", + "id": 7, + "offset": 208, + "flags": 65671, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 482130755 + }, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3623628394 + }, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2102211316 + }, + "m_sScript": { + "type": "std::string", + "id": 10, + "offset": 352, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1846695875 + }, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3389835433 + }, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547159940 + }, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513510520 + }, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3091503757 + }, + "m_sText": { + "type": "std::wstring", + "id": 16, + "offset": 584, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2102642960 + }, + "m_sTooltip": { + "type": "std::wstring", + "id": 17, + "offset": 616, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1680475798 + }, + "m_bUseDropShadow": { + "type": "bool", + "id": 18, + "offset": 653, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 93063037 + }, + "m_bUseOutline": { + "type": "bool", + "id": 19, + "offset": 654, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 744292994 + }, + "m_bEnableWordWrap": { + "type": "bool", + "id": 20, + "offset": 655, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 430904562 + }, + "m_bEnableToggle": { + "type": "bool", + "id": 21, + "offset": 652, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1937994142 + }, + "m_nLeadingAdjust": { + "type": "int", + "id": 22, + "offset": 656, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1559480167 + }, + "m_TextColor": { + "type": "class Color", + "id": 23, + "offset": 696, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2267136674 + }, + "m_SelectColor": { + "type": "class Color", + "id": 24, + "offset": 700, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2792529213 + }, + "m_HighlightColor": { + "type": "class Color", + "id": 25, + "offset": 704, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1047198101 + }, + "m_bSortEnable": { + "type": "bool", + "id": 26, + "offset": 784, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 24009764 + }, + "m_nSortByColumn": { + "type": "int", + "id": 27, + "offset": 788, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1829537401 + }, + "m_bSortAscending": { + "type": "bool", + "id": 28, + "offset": 792, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1369222793 + }, + "m_nHighlighted": { + "type": "int", + "id": 29, + "offset": 796, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1020338345 + }, + "m_nSelected": { + "type": "int", + "id": 30, + "offset": 800, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1017366545 + }, + "m_bListInvalid": { + "type": "bool", + "id": 31, + "offset": 804, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 376155128 + }, + "m_bSortInvalid": { + "type": "bool", + "id": 32, + "offset": 805, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1605867140 + }, + "m_pScrollWin": { + "type": "class SharedPointer", + "id": 33, + "offset": 808, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3263557131 + }, + "m_itemHeight": { + "type": "int", + "id": 34, + "offset": 824, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1245325666 + }, + "m_itemNormalState": { + "type": "class ControlList::ListItemState*", + "id": 35, + "offset": 832, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2253036141 + }, + "m_itemHighlightedState": { + "type": "class ControlList::ListItemState*", + "id": 36, + "offset": 840, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2949959141 + }, + "m_itemSelectedState": { + "type": "class ControlList::ListItemState*", + "id": 37, + "offset": 848, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2463527405 + }, + "m_itemDisabledState": { + "type": "class ControlList::ListItemState*", + "id": 38, + "offset": 856, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 4008046876 + } + } + }, + "740787576": { + "name": "class BeneficialProximityBehaviorBase", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 740787576, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + } + } + }, + "1140592359": { + "name": "class PCDialogEntry*", + "bases": [ + "ActorDialogEntry", + "PropertyClass" + ], + "hash": 1140592359, + "properties": { + "m_requirements": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 263, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3043523229 + }, + "m_dialog": { + "type": "std::string", + "id": 1, + "offset": 88, + "flags": 8388639, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1858395851 + }, + "m_picture": { + "type": "std::string", + "id": 2, + "offset": 120, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3128322903 + }, + "m_soundFile": { + "type": "std::string", + "id": 3, + "offset": 152, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2276870852 + }, + "m_action": { + "type": "std::string", + "id": 4, + "offset": 184, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1734553689 + }, + "m_dialogEvent": { + "type": "std::string", + "id": 5, + "offset": 216, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2707957549 + }, + "m_actorTemplateID": { + "type": "unsigned int", + "id": 6, + "offset": 248, + "flags": 33554463, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2134265679 + }, + "m_cameraName": { + "type": "std::string", + "id": 7, + "offset": 256, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3252786917 + }, + "m_interpolationDuration": { + "type": "float", + "id": 8, + "offset": 312, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1458058437, + "enum_options": { + "__DEFAULT": "1.0" + } + }, + "m_cameraOffsetX": { + "type": "float", + "id": 9, + "offset": 288, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1515912895 + }, + "m_cameraOffsetY": { + "type": "float", + "id": 10, + "offset": 292, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1515912896 + }, + "m_cameraOffsetZ": { + "type": "float", + "id": 11, + "offset": 296, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1515912897 + }, + "m_pitch": { + "type": "float", + "id": 12, + "offset": 304, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 896371695 + }, + "m_yaw": { + "type": "float", + "id": 13, + "offset": 300, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 357256328 + }, + "m_roll": { + "type": "float", + "id": 14, + "offset": 308, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 310020272 + }, + "m_cameraShakeType": { + "type": "std::string", + "id": 15, + "offset": 320, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1754128882, + "enum_options": { + "": 0, + "Constant": "Constant", + "Quake": "Quake", + "Thud": "Thud", + "End": "End", + "__DEFAULT": 0 + } + }, + "m_cameraShakeDuration": { + "type": "float", + "id": 16, + "offset": 352, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 316581010, + "enum_options": { + "__DEFAULT": "0.0" + } + }, + "m_cameraShakeAmplitude": { + "type": "float", + "id": 17, + "offset": 356, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2179718321, + "enum_options": { + "__DEFAULT": "0.0" + } + }, + "m_bypassCameraOnReview": { + "type": "bool", + "id": 18, + "offset": 360, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1412905725, + "enum_options": { + "__DEFAULT": 1 + } + }, + "m_cameraZoneName": { + "type": "std::string", + "id": 19, + "offset": 368, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3131581121 + }, + "m_duration": { + "type": "float", + "id": 20, + "offset": 400, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 920323453 + }, + "m_delay": { + "type": "float", + "id": 21, + "offset": 404, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 881988134 + }, + "m_cameraHidePlayers": { + "type": "int", + "id": 22, + "offset": 408, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 28533149 + }, + "m_walkAwayNpcTemplateID": { + "type": "gid", + "id": 23, + "offset": 416, + "flags": 33554719, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 942697507 + }, + "m_walkAwayExitDirectionInDegrees": { + "type": "float", + "id": 24, + "offset": 424, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 396419785 + }, + "m_walkAwayFadeTime": { + "type": "float", + "id": 25, + "offset": 428, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 822405687 + }, + "m_walkAwayUseCurrentFacing": { + "type": "bool", + "id": 26, + "offset": 432, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1464855436 + }, + "m_standInPlayerTag": { + "type": "std::string", + "id": 27, + "offset": 440, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1590121141 + }, + "m_fadeOutCamera": { + "type": "bool", + "id": 28, + "offset": 472, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1766121252 + }, + "m_snapCameraToPlayerAtExit": { + "type": "bool", + "id": 29, + "offset": 473, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1323369645 + }, + "m_secondaryCameraName": { + "type": "std::string", + "id": 30, + "offset": 480, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1670705581 + }, + "m_secondaryInterpolationDuration": { + "type": "float", + "id": 31, + "offset": 512, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1873822349 + }, + "m_npcStandInList": { + "type": "std::string", + "id": 32, + "offset": 520, + "flags": 287, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2076308937 + }, + "m_dialogAnimationList": { + "type": "std::string", + "id": 33, + "offset": 536, + "flags": 287, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2444806919 + }, + "m_dialogTurningList": { + "type": "std::string", + "id": 34, + "offset": 552, + "flags": 287, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2782869422 + }, + "m_npcYawOffsetInDegrees": { + "type": "float", + "id": 35, + "offset": 568, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1395075270 + }, + "m_allowPlayerToMove": { + "type": "bool", + "id": 36, + "offset": 572, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 225101337 + }, + "m_soundEffectFile": { + "type": "std::string", + "id": 37, + "offset": 576, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3235157265 + }, + "m_musicFile": { + "type": "std::string", + "id": 38, + "offset": 608, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2963686620 + }, + "m_nonStackableMusic": { + "type": "bool", + "id": 39, + "offset": 640, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1675595625 + }, + "m_nonRepeatableMusic": { + "type": "bool", + "id": 40, + "offset": 641, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2138315572 + }, + "m_playMusicAtSFXVolume": { + "type": "bool", + "id": 41, + "offset": 642, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2130871816 + }, + "m_soundEffectDelay": { + "type": "float", + "id": 42, + "offset": 644, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1586382460 + }, + "m_musicDelay": { + "type": "float", + "id": 43, + "offset": 648, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1217785767 + }, + "m_musicFadeTime": { + "type": "float", + "id": 44, + "offset": 652, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 502925015 + }, + "m_dontReleaseCameraAtExit": { + "type": "bool", + "id": 45, + "offset": 474, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1107508961 + }, + "m_disableBackButton": { + "type": "bool", + "id": 46, + "offset": 656, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 122355444 + }, + "m_enableExitButton": { + "type": "bool", + "id": 47, + "offset": 657, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1824693936 + }, + "m_cameraFadeType": { + "type": "std::string", + "id": 48, + "offset": 664, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2021935382, + "enum_options": { + "": 0, + "In Out Black": "In Out Black", + "In Out White": "In Out White", + "In Black": "In Black", + "Out Black": "Out Black", + "In White": "In White", + "Out White": "Out White", + "__DEFAULT": 0 + } + }, + "m_cameraFadeTime": { + "type": "float", + "id": 49, + "offset": 696, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 614419391, + "enum_options": { + "__DEFAULT": "0.5" + } + }, + "m_idleAnimation": { + "type": "std::string", + "id": 50, + "offset": 704, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2900487193 + }, + "m_spamTime": { + "type": "float", + "id": 51, + "offset": 736, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1727215063, + "enum_options": { + "__DEFAULT": "1.0" + } + }, + "m_playSoundIfSpamming": { + "type": "bool", + "id": 52, + "offset": 740, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 690006749, + "enum_options": { + "__DEFAULT": 1 + } + }, + "m_playMusicIfSpamming": { + "type": "bool", + "id": 53, + "offset": 741, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 538564341, + "enum_options": { + "__DEFAULT": 1 + } + }, + "m_stopMusicFadeTime": { + "type": "float", + "id": 54, + "offset": 744, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 696390845, + "enum_options": { + "__DEFAULT": "0.0" + } + }, + "m_restartMusicFadeTime": { + "type": "float", + "id": 55, + "offset": 748, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 709379292, + "enum_options": { + "__DEFAULT": "0.0" } }, - "m_characterTables": { - "type": "class CharacterElementTable", + "m_meetsRequirements": { + "type": "bool", + "id": 56, + "offset": 752, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 296443061 + }, + "m_secondaryCameraInitalDelay": { + "type": "float", + "id": 57, + "offset": 516, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1812842232 + }, + "m_displayButtonsOnTimedDialog": { + "type": "bool", + "id": 58, + "offset": 753, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 569741400 + } + } + }, + "739063188": { + "name": "class KioskOption", + "bases": [ + "ServiceOptionBase", + "PropertyClass" + ], + "hash": 739063188, + "properties": { + "m_serviceName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2206028813 + }, + "m_iconKey": { + "type": "std::string", + "id": 1, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2457138637 + }, + "m_displayKey": { + "type": "std::string", + "id": 2, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3023276954 + }, + "m_serviceIndex": { + "type": "unsigned int", + "id": 3, + "offset": 204, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2103126710 + }, + "m_forceInteract": { + "type": "bool", + "id": 4, + "offset": 200, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1705789564 + } + } + }, + "2018289575": { + "name": "class RaidGateBehaviorTemplate*", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 2018289575, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + }, + "m_itemAdjective": { + "type": "std::string", + "id": 1, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3066441529 + }, + "m_unlockCantrip": { + "type": "std::string", + "id": 2, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2731256472 + }, + "m_numberOfUnlockPlayers": { + "type": "int", + "id": 3, + "offset": 184, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 855609764 + }, + "m_activateState": { + "type": "std::string", + "id": 4, + "offset": 192, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2508957133 + }, + "m_enabledSeconds": { + "type": "int", + "id": 5, + "offset": 224, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2014197012 + }, + "m_linkedUnlockTemplateID": { + "type": "unsigned int", + "id": 6, + "offset": 228, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 952577945 + }, + "m_cooldownSeconds": { + "type": "unsigned int", + "id": 7, + "offset": 232, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1670668641 + }, + "m_overrideTitle": { + "type": "std::string", + "id": 8, + "offset": 240, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2739145597 + }, + "m_overrideDonateTitle": { + "type": "std::string", + "id": 9, + "offset": 272, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2976683384 + }, + "m_overrideChooseTitle": { + "type": "std::string", + "id": 10, + "offset": 304, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2732703966 + }, + "m_overrideFinalStepText": { + "type": "std::string", + "id": 11, + "offset": 336, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2712952390 + }, + "m_overrideNeedKeyText": { + "type": "std::string", + "id": 12, + "offset": 368, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2575667685 + }, + "m_isExtractor": { + "type": "bool", + "id": 13, + "offset": 400, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2105029547 + } + } + }, + "293491482": { + "name": "class WindowColorAnimation", + "bases": [ + "WindowAnimation", + "PropertyClass" + ], + "hash": 293491482, + "properties": { + "m_bUseDeepCopy": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 433380635 + } + } + }, + "737880451": { + "name": "class ShadowSpellTrackingData", + "bases": [ + "PropertyClass" + ], + "hash": 737880451, + "properties": { + "m_pSpellEffect": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3446820733 + }, + "m_remainingTurns": { + "type": "int", "id": 1, - "offset": 80, - "flags": 7, + "offset": 88, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1100057776 + } + } + }, + "1140791825": { + "name": "class SharedPointer", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1140791825, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_seedList": { + "type": "unsigned int", + "id": 1, + "offset": 112, + "flags": 65567, "container": "List", "dynamic": true, "singleton": false, "pointer": false, - "hash": 1801114527 + "hash": 672751594 + } + } + }, + "1573821553": { + "name": "class SharedPointer", + "bases": [ + "Window", + "PropertyClass" + ], + "hash": 1573821553, + "properties": { + "m_sName": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306437263 }, - "m_defaultTable": { - "type": "class CharacterElementTable", + "m_Children": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621225959 + }, + "m_Style": { + "type": "unsigned int", "id": 2, - "offset": 96, - "flags": 7, + "offset": 152, + "flags": 1048583, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1709886308 + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152, + "FORCE_NUMERIC": 16777216, + "FORCE_ALPHA": 268435456, + "FORCE_ALPHANUMERIC": 536870912, + "FORCE_INTEGER": 33554432, + "FORCE_POSITIVE": 67108864, + "FORCE_RANGE": 134217728 + } }, - "m_commonTable": { - "type": "class CommonElementTable", + "m_Flags": { + "type": "unsigned int", "id": 3, - "offset": 888, - "flags": 7, + "offset": 156, + "flags": 1048583, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1709304448 + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } }, - "m_raceAnimationSoundData": { - "type": "class SharedPointer", + "m_Window": { + "type": "class Rect", "id": 4, - "offset": 984, - "flags": 7, + "offset": 160, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1474423978 + "pointer": false, + "hash": 3105139380 }, - "m_animationEventList": { - "type": "class SharedPointer", + "m_fTargetAlpha": { + "type": "float", "id": 5, - "offset": 1000, - "flags": 7, + "offset": 212, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1809129834 + }, + "m_fDisabledAlpha": { + "type": "float", + "id": 6, + "offset": 216, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1389987675 + }, + "m_fAlpha": { + "type": "float", + "id": 7, + "offset": 208, + "flags": 65671, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 482130755 + }, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3623628394 + }, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2102211316 + }, + "m_sScript": { + "type": "std::string", + "id": 10, + "offset": 352, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1846695875 + }, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3389835433 + }, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547159940 + }, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513510520 + }, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, "container": "List", "dynamic": true, "singleton": false, - "pointer": true, - "hash": 2858101335 + "pointer": false, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3091503757 + }, + "m_sText": { + "type": "std::wstring", + "id": 16, + "offset": 584, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2102642960 + }, + "m_nMaxLength": { + "type": "int", + "id": 17, + "offset": 620, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1183478416 + }, + "m_bPassword": { + "type": "bool", + "id": 18, + "offset": 624, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1604468200 + }, + "m_bLog": { + "type": "bool", + "id": 19, + "offset": 625, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 221687287 + }, + "m_previousNext": { + "type": "bool", + "id": 20, + "offset": 627, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 858581071 + }, + "m_nMaxLogSize": { + "type": "int", + "id": 21, + "offset": 712, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 779573899 + }, + "m_bEditing": { + "type": "bool", + "id": 22, + "offset": 616, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1243218553 + }, + "m_bAllowPaste": { + "type": "bool", + "id": 23, + "offset": 626, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1129316721 + }, + "m_nLogPosition": { + "type": "int", + "id": 24, + "offset": 704, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1120160767 + }, + "m_nCursor": { + "type": "int", + "id": 25, + "offset": 716, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1876782150 + }, + "m_nEditBegin": { + "type": "int", + "id": 26, + "offset": 720, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1066592403 + }, + "m_nEditEnd": { + "type": "int", + "id": 27, + "offset": 724, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1560905669 + }, + "m_sSavedText": { + "type": "std::wstring", + "id": 28, + "offset": 728, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2197953283 + }, + "m_fCursorBlinkSpeed": { + "type": "float", + "id": 29, + "offset": 760, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2232655228 + }, + "m_fCursorTimer": { + "type": "float", + "id": 30, + "offset": 764, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1929942748 + }, + "m_bCursorBlink": { + "type": "bool", + "id": 31, + "offset": 768, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 683441507 + }, + "m_fMinRange": { + "type": "double", + "id": 32, + "offset": 776, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3079523396 + }, + "m_fMaxRange": { + "type": "double", + "id": 33, + "offset": 784, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3876551814 + }, + "m_nPrecision": { + "type": "int", + "id": 34, + "offset": 792, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1404974196 + }, + "m_bDeleteOnFirstChar": { + "type": "bool", + "id": 35, + "offset": 618, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 902105643 } } }, - "792240292": { - "name": "class BadgeTemplate", + "2016345993": { + "name": "class SkyboxInfo", "bases": [ - "CoreTemplate", "PropertyClass" ], - "hash": 792240292, + "hash": 2016345993, "properties": { - "m_behaviors": { - "type": "class BehaviorTemplate*", + "m_skyLayerCount": { + "type": "int", "id": 0, "offset": 72, "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 816414615 + }, + "m_skyLayerName": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, "container": "Vector", "dynamic": true, "singleton": false, - "pointer": true, - "hash": 1197808594 + "pointer": false, + "hash": 2824410256 }, - "m_badgeName": { + "m_clientTag": { "type": "std::string", + "id": 2, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3409856790 + } + } + }, + "292847998": { + "name": "class CantripsMajorInvisibilityEffect", + "bases": [ + "CantripsInvisibilityEffect", + "GameEffectBase", + "PropertyClass" + ], + "hash": 292847998, + "properties": { + "m_currentTickCount": { + "type": "double", + "id": 0, + "offset": 80, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2533274692 + }, + "m_effectNameID": { + "type": "unsigned int", "id": 1, "offset": 96, - "flags": 134217735, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3002948047 + "hash": 1204067144 }, - "m_badgeTitle": { - "type": "std::string", + "m_bIsOnPet": { + "type": "bool", "id": 2, - "offset": 136, - "flags": 8388615, + "offset": 73, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1783354256 + "hash": 522593303 }, - "m_badgeInfo": { - "type": "std::string", + "m_originatorID": { + "type": "gid", "id": 3, - "offset": 168, - "flags": 8388615, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3002782298 + "hash": 1131810019 }, - "m_badgeProgressInfo": { - "type": "std::string", + "m_itemSlotID": { + "type": "unsigned int", "id": 4, - "offset": 200, - "flags": 8388615, + "offset": 112, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1902667503 + "hash": 1895747595 }, - "m_badgeReplace": { - "type": "std::string", + "m_internalID": { + "type": "int", "id": 5, - "offset": 256, - "flags": 268435463, + "offset": 92, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2644976426, - "enum_options": { - "__BASECLASS": "BadgeTemplate" - } + "hash": 1643137924 }, - "m_clearRegistry": { - "type": "bool", + "m_endTime": { + "type": "unsigned int", "id": 6, - "offset": 248, - "flags": 7, + "offset": 88, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2092369011 + "hash": 716479635 + } + } + }, + "737421688": { + "name": "class PolymorphBattlegroundsBehavior*", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 737421688, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 }, - "m_requirements": { - "type": "class RequirementList*", - "id": 7, - "offset": 232, + "m_maxTempStartingPips": { + "type": "int", + "id": 1, + "offset": 112, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2840985510 + "pointer": false, + "hash": 997576222 }, - "m_completeResults": { - "type": "class ResultList*", - "id": 8, - "offset": 240, + "m_maxTempStartingPowerPips": { + "type": "int", + "id": 2, + "offset": 116, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1964258099 + "pointer": false, + "hash": 31848011 + } + } + }, + "1573443663": { + "name": "class ClientVisibilityBehavior", + "bases": [ + "VisibilityBehavior", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1573443663, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 }, - "m_badgeAdjectives": { + "m_showTo": { + "type": "gid", + "id": 1, + "offset": 112, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 947039004 + }, + "m_hideFrom": { + "type": "gid", + "id": 2, + "offset": 128, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 642644390 + }, + "m_visible": { + "type": "bool", + "id": 3, + "offset": 144, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 810536225 + } + } + }, + "2014683147": { + "name": "class SharedPointer", + "bases": [ + "Requirement", + "PropertyClass" + ], + "hash": 2014683147, + "properties": { + "m_applyNOT": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1746328074, + "enum_options": { + "__DEFAULT": 0 + } + }, + "m_operator": { + "type": "enum Requirement::Operator", + "id": 1, + "offset": 76, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2672792317, + "enum_options": { + "ROP_AND": 0, + "ROP_OR": 1, + "__DEFAULT": "ROP_AND" + } + }, + "m_classProjectName": { "type": "std::string", - "id": 9, - "offset": 312, + "id": 2, + "offset": 80, "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1714146665 + } + } + }, + "737252728": { + "name": "class PetGameMorphPartner*", + "bases": [ + "PropertyClass" + ], + "hash": 737252728, + "properties": { + "m_characterId": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 210498418 + }, + "m_pets": { + "type": "class SharedPointer", + "id": 1, + "offset": 80, + "flags": 31, "container": "List", "dynamic": true, "singleton": false, + "pointer": true, + "hash": 521887012 + } + } + }, + "2013434854": { + "name": "class ControlFreeChat*", + "bases": [ + "ControlRichEdit", + "ControlEdit", + "Window", + "PropertyClass" + ], + "hash": 2013434854, + "properties": { + "m_sName": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306437263 + }, + "m_Children": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621225959 + }, + "m_Style": { + "type": "unsigned int", + "id": 2, + "offset": 152, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, "pointer": false, - "hash": 3438296880 + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152, + "FORCE_NUMERIC": 16777216, + "FORCE_ALPHA": 268435456, + "FORCE_ALPHANUMERIC": 536870912, + "FORCE_INTEGER": 33554432, + "FORCE_POSITIVE": 67108864, + "FORCE_RANGE": 134217728 + } }, - "m_registryName": { + "m_Flags": { + "type": "unsigned int", + "id": 3, + "offset": 156, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } + }, + "m_Window": { + "type": "class Rect", + "id": 4, + "offset": 160, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3105139380 + }, + "m_fTargetAlpha": { + "type": "float", + "id": 5, + "offset": 212, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1809129834 + }, + "m_fDisabledAlpha": { + "type": "float", + "id": 6, + "offset": 216, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1389987675 + }, + "m_fAlpha": { + "type": "float", + "id": 7, + "offset": 208, + "flags": 65671, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 482130755 + }, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3623628394 + }, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2102211316 + }, + "m_sScript": { "type": "std::string", "id": 10, - "offset": 344, - "flags": 7, + "offset": 352, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2065929269 + "hash": 1846695875 }, - "m_registryValue": { - "type": "int", + "m_Offset": { + "type": "class Point", "id": 11, - "offset": 376, - "flags": 7, + "offset": 192, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1578365616 + "hash": 3389835433 }, - "m_showTitle": { - "type": "bool", + "m_Scale": { + "type": "class Point", "id": 12, - "offset": 380, - "flags": 7, + "offset": 200, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2128418998 + "hash": 2547159940 }, - "m_autoAddBadge": { - "type": "bool", + "m_sTip": { + "type": "std::wstring", "id": 13, - "offset": 381, - "flags": 7, + "offset": 392, + "flags": 4194439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 236591912 + "hash": 1513510520 }, - "m_index": { - "type": "unsigned int", + "m_BubbleList": { + "type": "class WindowBubble", "id": 14, - "offset": 384, - "flags": 7, - "container": "Static", - "dynamic": false, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 1009433893 + "hash": 2587533771 }, - "m_badgeOutline": { - "type": "std::string", + "m_ParentOffset": { + "type": "class Rect", "id": 15, - "offset": 392, - "flags": 131079, + "offset": 176, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1548975214 + "hash": 3091503757 }, - "m_badgeImage": { - "type": "std::string", + "m_sText": { + "type": "std::wstring", "id": 16, - "offset": 424, - "flags": 131079, + "offset": 584, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1770432017 + "hash": 2102642960 }, - "m_dynamicBadge": { - "type": "bool", + "m_nMaxLength": { + "type": "int", "id": 17, - "offset": 456, - "flags": 7, + "offset": 620, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1496846667 + "hash": 1183478416 }, - "m_badgeFilterName": { - "type": "std::string", + "m_bPassword": { + "type": "bool", "id": 18, - "offset": 464, - "flags": 7, + "offset": 624, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2268560533 + "hash": 1604468200 }, - "m_extraCredit": { + "m_bLog": { "type": "bool", "id": 19, - "offset": 504, - "flags": 7, + "offset": 625, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 847737554 + "hash": 221687287 }, - "m_overcount": { + "m_previousNext": { "type": "bool", "id": 20, - "offset": 505, - "flags": 7, + "offset": 627, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 203918520 + "hash": 858581071 }, - "m_overcountInterval": { - "type": "unsigned int", + "m_nMaxLogSize": { + "type": "int", "id": 21, - "offset": 508, - "flags": 7, + "offset": 712, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1845137015 + "hash": 779573899 }, - "m_overcountLootTable": { - "type": "std::string", + "m_bEditing": { + "type": "bool", "id": 22, - "offset": 512, - "flags": 268435463, + "offset": 616, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3493569350, - "enum_options": { - "__BASECLASS": "LootTable" - } + "hash": 1243218553 }, - "m_recurringRewardsDescription": { - "type": "std::string", + "m_bAllowPaste": { + "type": "bool", "id": 23, - "offset": 544, - "flags": 8388615, + "offset": 626, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1668915496 + "hash": 1129316721 }, - "m_rewardLootTable": { - "type": "std::string", + "m_nLogPosition": { + "type": "int", "id": 24, - "offset": 576, - "flags": 268435463, + "offset": 704, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3635244294, - "enum_options": { - "__BASECLASS": "LootTable" - } + "hash": 1120160767 }, - "m_requiredAutoAddBadgeList": { - "type": "std::string", + "m_nCursor": { + "type": "int", "id": 25, - "offset": 608, - "flags": 268435463, - "container": "List", - "dynamic": true, + "offset": 716, + "flags": 135, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 3633108301, - "enum_options": { - "__BASECLASS": "BadgeTemplate" - } + "hash": 1876782150 }, - "m_forceRequirementsCheck": { - "type": "bool", + "m_nEditBegin": { + "type": "int", "id": 26, - "offset": 712, - "flags": 7, + "offset": 720, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1891065348 + "hash": 1066592403 + }, + "m_nEditEnd": { + "type": "int", + "id": 27, + "offset": 724, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1560905669 + }, + "m_sSavedText": { + "type": "std::wstring", + "id": 28, + "offset": 728, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2197953283 + }, + "m_fCursorBlinkSpeed": { + "type": "float", + "id": 29, + "offset": 760, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2232655228 + }, + "m_fCursorTimer": { + "type": "float", + "id": 30, + "offset": 764, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1929942748 + }, + "m_bCursorBlink": { + "type": "bool", + "id": 31, + "offset": 768, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 683441507 + }, + "m_fMinRange": { + "type": "double", + "id": 32, + "offset": 776, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3079523396 + }, + "m_fMaxRange": { + "type": "double", + "id": 33, + "offset": 784, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3876551814 + }, + "m_nPrecision": { + "type": "int", + "id": 34, + "offset": 792, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1404974196 + }, + "m_bDeleteOnFirstChar": { + "type": "bool", + "id": 35, + "offset": 618, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 902105643 } } }, - "792239485": { - "name": "class SharedPointer", + "293421498": { + "name": "class TutorialInfo*", "bases": [ "PropertyClass" ], - "hash": 792239485, + "hash": 293421498, "properties": { - "m_skip": { + "m_tutorialNameID": { "type": "unsigned int", "id": 0, "offset": 72, - "flags": 7, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 431253060 + "hash": 2228828719 }, - "m_petTemplateID": { - "type": "unsigned int", + "m_tutorialStage": { + "type": "int", "id": 1, "offset": 76, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 328120386 + } + } + }, + "1141140637": { + "name": "class HousingSigilBehaviorTemplate", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 1141140637, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 817215071 + "hash": 3130754092 }, - "m_hatchmakingPetGIDList": { - "type": "gid", - "id": 2, - "offset": 80, + "m_sigilZoneInfoList": { + "type": "class SharedPointer", + "id": 1, + "offset": 120, "flags": 7, "container": "List", "dynamic": true, "singleton": false, + "pointer": true, + "hash": 3999162041 + }, + "m_usedDisposableDungeonTemplateID": { + "type": "unsigned int", + "id": 2, + "offset": 136, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, "pointer": false, - "hash": 109341840 + "hash": 828840861 + } + } + }, + "2013431782": { + "name": "class ControlFreeChat", + "bases": [ + "ControlRichEdit", + "ControlEdit", + "Window", + "PropertyClass" + ], + "hash": 2013431782, + "properties": { + "m_sName": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306437263 }, - "m_hatchmakingPlayerGIDList": { - "type": "gid", + "m_Children": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621225959 + }, + "m_Style": { + "type": "unsigned int", + "id": 2, + "offset": 152, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152, + "FORCE_NUMERIC": 16777216, + "FORCE_ALPHA": 268435456, + "FORCE_ALPHANUMERIC": 536870912, + "FORCE_INTEGER": 33554432, + "FORCE_POSITIVE": 67108864, + "FORCE_RANGE": 134217728 + } + }, + "m_Flags": { + "type": "unsigned int", "id": 3, - "offset": 96, - "flags": 7, + "offset": 156, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } + }, + "m_Window": { + "type": "class Rect", + "id": 4, + "offset": 160, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3105139380 + }, + "m_fTargetAlpha": { + "type": "float", + "id": 5, + "offset": 212, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1809129834 + }, + "m_fDisabledAlpha": { + "type": "float", + "id": 6, + "offset": 216, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1389987675 + }, + "m_fAlpha": { + "type": "float", + "id": 7, + "offset": 208, + "flags": 65671, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 482130755 + }, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3623628394 + }, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2102211316 + }, + "m_sScript": { + "type": "std::string", + "id": 10, + "offset": 352, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1846695875 + }, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3389835433 + }, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547159940 + }, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513510520 + }, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, "container": "List", "dynamic": true, "singleton": false, "pointer": false, - "hash": 1721119220 + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3091503757 + }, + "m_sText": { + "type": "std::wstring", + "id": 16, + "offset": 584, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2102642960 + }, + "m_nMaxLength": { + "type": "int", + "id": 17, + "offset": 620, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1183478416 + }, + "m_bPassword": { + "type": "bool", + "id": 18, + "offset": 624, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1604468200 + }, + "m_bLog": { + "type": "bool", + "id": 19, + "offset": 625, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 221687287 + }, + "m_previousNext": { + "type": "bool", + "id": 20, + "offset": 627, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 858581071 + }, + "m_nMaxLogSize": { + "type": "int", + "id": 21, + "offset": 712, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 779573899 + }, + "m_bEditing": { + "type": "bool", + "id": 22, + "offset": 616, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1243218553 + }, + "m_bAllowPaste": { + "type": "bool", + "id": 23, + "offset": 626, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1129316721 + }, + "m_nLogPosition": { + "type": "int", + "id": 24, + "offset": 704, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1120160767 + }, + "m_nCursor": { + "type": "int", + "id": 25, + "offset": 716, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1876782150 + }, + "m_nEditBegin": { + "type": "int", + "id": 26, + "offset": 720, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1066592403 + }, + "m_nEditEnd": { + "type": "int", + "id": 27, + "offset": 724, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1560905669 + }, + "m_sSavedText": { + "type": "std::wstring", + "id": 28, + "offset": 728, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2197953283 + }, + "m_fCursorBlinkSpeed": { + "type": "float", + "id": 29, + "offset": 760, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2232655228 + }, + "m_fCursorTimer": { + "type": "float", + "id": 30, + "offset": 764, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1929942748 + }, + "m_bCursorBlink": { + "type": "bool", + "id": 31, + "offset": 768, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 683441507 + }, + "m_fMinRange": { + "type": "double", + "id": 32, + "offset": 776, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3079523396 + }, + "m_fMaxRange": { + "type": "double", + "id": 33, + "offset": 784, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3876551814 + }, + "m_nPrecision": { + "type": "int", + "id": 34, + "offset": 792, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1404974196 + }, + "m_bDeleteOnFirstChar": { + "type": "bool", + "id": 35, + "offset": 618, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 902105643 } } }, - "1148906214": { - "name": "class MobMonsterMagicBehavior", + "132490457": { + "name": "class ClientTimedItemBehavior", "bases": [ "BehaviorInstance", "PropertyClass" ], - "hash": 1148906214, + "hash": 132490457, "properties": { "m_behaviorTemplateNameID": { "type": "unsigned int", @@ -480742,994 +232638,1002 @@ "singleton": false, "pointer": false, "hash": 223437287 + }, + "m_expireTime": { + "type": "unsigned int", + "id": 1, + "offset": 112, + "flags": 59, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1836304873 } } }, - "1148824103": { - "name": "class ClientSetHangingEffectAlphaCinematicAction*", + "737470959": { + "name": "class SharedPointer", "bases": [ - "SetHangingEffectAlphaCinematicAction", - "ActorCinematicAction", - "CinematicAction", + "AutobotManager", "PropertyClass" ], - "hash": 1148824103, + "hash": 737470959, + "properties": {} + }, + "1141436269": { + "name": "class MadlibArgT*", + "bases": [ + "MadlibArg", + "PropertyClass" + ], + "hash": 1141436269, "properties": { - "m_timeOffset": { - "type": "float", + "m_madlibToken": { + "type": "std::string", "id": 0, - "offset": 72, - "flags": 7, + "offset": 80, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 + "hash": 3058682373 }, - "m_actor": { - "type": "std::string", + "m_madlibArgument": { + "type": "int", "id": 1, + "offset": 112, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 878492166 + } + } + }, + "293491506": { + "name": "class WindowColorAnimation*", + "bases": [ + "WindowAnimation", + "PropertyClass" + ], + "hash": 293491506, + "properties": { + "m_bUseDeepCopy": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 433380635 + } + } + }, + "2013815018": { + "name": "class SharedPointer", + "bases": [ + "GameEffectBase", + "PropertyClass" + ], + "hash": 2013815018, + "properties": { + "m_currentTickCount": { + "type": "double", + "id": 0, "offset": 80, - "flags": 7, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2285866132 + "hash": 2533274692 }, - "m_cloaked": { + "m_effectNameID": { + "type": "unsigned int", + "id": 1, + "offset": 96, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1204067144 + }, + "m_bIsOnPet": { "type": "bool", "id": 2, - "offset": 120, - "flags": 7, + "offset": 73, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 7349510 + "hash": 522593303 }, - "m_alpha": { - "type": "float", + "m_originatorID": { + "type": "gid", "id": 3, - "offset": 124, - "flags": 7, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 878686493 + "hash": 1131810019 + }, + "m_itemSlotID": { + "type": "unsigned int", + "id": 4, + "offset": 112, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1895747595 + }, + "m_internalID": { + "type": "int", + "id": 5, + "offset": 92, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1643137924 + }, + "m_endTime": { + "type": "unsigned int", + "id": 6, + "offset": 88, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 716479635 + }, + "m_minionType": { + "type": "enum MinionType", + "id": 7, + "offset": 128, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3186373083, + "enum_options": { + "MT_NONE": 0, + "MT_ACCOMPANY": 1, + "MT_MINION": 2, + "MT_MONSTER": 3 + } + }, + "m_summonedTemplateID": { + "type": "int", + "id": 8, + "offset": 132, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1109386027 } } }, - "792240295": { - "name": "class BadgeTemplate*", + "1576914107": { + "name": "class SharedPointer", "bases": [ - "CoreTemplate", + "ControlText", + "Window", "PropertyClass" ], - "hash": 792240295, + "hash": 1576914107, "properties": { - "m_behaviors": { - "type": "class BehaviorTemplate*", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1197808594 - }, - "m_badgeName": { + "m_sName": { "type": "std::string", - "id": 1, - "offset": 96, - "flags": 134217735, + "id": 0, + "offset": 80, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3002948047 + "hash": 2306437263 }, - "m_badgeTitle": { - "type": "std::string", + "m_Children": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621225959 + }, + "m_Style": { + "type": "unsigned int", "id": 2, - "offset": 136, - "flags": 8388615, + "offset": 152, + "flags": 1048583, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1783354256 + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152, + "DO_NOT_WRAP": 134217728, + "FIT_TEXT": 268435456 + } }, - "m_badgeInfo": { - "type": "std::string", + "m_Flags": { + "type": "unsigned int", "id": 3, - "offset": 168, - "flags": 8388615, + "offset": 156, + "flags": 1048583, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3002782298 + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } }, - "m_badgeProgressInfo": { - "type": "std::string", + "m_Window": { + "type": "class Rect", "id": 4, - "offset": 200, - "flags": 8388615, + "offset": 160, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1902667503 + "hash": 3105139380 }, - "m_badgeReplace": { - "type": "std::string", + "m_fTargetAlpha": { + "type": "float", "id": 5, - "offset": 256, - "flags": 268435463, + "offset": 212, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2644976426, - "enum_options": { - "__BASECLASS": "BadgeTemplate" - } + "hash": 1809129834 }, - "m_clearRegistry": { - "type": "bool", + "m_fDisabledAlpha": { + "type": "float", "id": 6, - "offset": 248, - "flags": 7, + "offset": 216, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2092369011 + "hash": 1389987675 }, - "m_requirements": { - "type": "class RequirementList*", + "m_fAlpha": { + "type": "float", "id": 7, - "offset": 232, - "flags": 7, + "offset": 208, + "flags": 65671, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2840985510 + "pointer": false, + "hash": 482130755 }, - "m_completeResults": { - "type": "class ResultList*", + "m_pWindowStyle": { + "type": "class SharedPointer", "id": 8, - "offset": 240, - "flags": 7, + "offset": 232, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": true, - "hash": 1964258099 + "hash": 3623628394 }, - "m_badgeAdjectives": { - "type": "std::string", + "m_sHelp": { + "type": "std::wstring", "id": 9, - "offset": 312, - "flags": 7, - "container": "List", - "dynamic": true, + "offset": 248, + "flags": 4194439, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 3438296880 + "hash": 2102211316 }, - "m_registryName": { + "m_sScript": { "type": "std::string", "id": 10, - "offset": 344, - "flags": 7, + "offset": 352, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2065929269 + "hash": 1846695875 }, - "m_registryValue": { - "type": "int", + "m_Offset": { + "type": "class Point", "id": 11, - "offset": 376, - "flags": 7, + "offset": 192, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1578365616 + "hash": 3389835433 }, - "m_showTitle": { - "type": "bool", + "m_Scale": { + "type": "class Point", "id": 12, - "offset": 380, - "flags": 7, + "offset": 200, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2128418998 + "hash": 2547159940 }, - "m_autoAddBadge": { - "type": "bool", + "m_sTip": { + "type": "std::wstring", "id": 13, - "offset": 381, - "flags": 7, + "offset": 392, + "flags": 4194439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 236591912 + "hash": 1513510520 }, - "m_index": { - "type": "unsigned int", + "m_BubbleList": { + "type": "class WindowBubble", "id": 14, - "offset": 384, - "flags": 7, - "container": "Static", - "dynamic": false, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 1009433893 + "hash": 2587533771 }, - "m_badgeOutline": { - "type": "std::string", + "m_ParentOffset": { + "type": "class Rect", "id": 15, - "offset": 392, - "flags": 131079, + "offset": 176, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1548975214 + "hash": 3091503757 }, - "m_badgeImage": { - "type": "std::string", + "m_sText": { + "type": "std::wstring", "id": 16, - "offset": 424, - "flags": 131079, + "offset": 584, + "flags": 4194439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1770432017 + "hash": 2102642960 }, - "m_dynamicBadge": { - "type": "bool", + "m_sTooltip": { + "type": "std::wstring", "id": 17, - "offset": 456, - "flags": 7, + "offset": 616, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1496846667 + "hash": 1680475798 }, - "m_badgeFilterName": { - "type": "std::string", + "m_bUseDropShadow": { + "type": "bool", "id": 18, - "offset": 464, - "flags": 7, + "offset": 653, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2268560533 + "hash": 93063037 }, - "m_extraCredit": { + "m_bUseOutline": { "type": "bool", "id": 19, - "offset": 504, - "flags": 7, + "offset": 654, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 847737554 + "hash": 744292994 }, - "m_overcount": { + "m_bEnableWordWrap": { "type": "bool", "id": 20, - "offset": 505, - "flags": 7, + "offset": 655, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 203918520 + "hash": 430904562 }, - "m_overcountInterval": { - "type": "unsigned int", + "m_bEnableToggle": { + "type": "bool", "id": 21, - "offset": 508, - "flags": 7, + "offset": 652, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1845137015 + "hash": 1937994142 }, - "m_overcountLootTable": { - "type": "std::string", + "m_nLeadingAdjust": { + "type": "int", "id": 22, - "offset": 512, - "flags": 268435463, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3493569350, - "enum_options": { - "__BASECLASS": "LootTable" - } - }, - "m_recurringRewardsDescription": { - "type": "std::string", - "id": 23, - "offset": 544, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1668915496 - }, - "m_rewardLootTable": { - "type": "std::string", - "id": 24, - "offset": 576, - "flags": 268435463, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3635244294, - "enum_options": { - "__BASECLASS": "LootTable" - } - }, - "m_requiredAutoAddBadgeList": { - "type": "std::string", - "id": 25, - "offset": 608, - "flags": 268435463, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 3633108301, - "enum_options": { - "__BASECLASS": "BadgeTemplate" - } - }, - "m_forceRequirementsCheck": { - "type": "bool", - "id": 26, - "offset": 712, - "flags": 7, + "offset": 656, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1891065348 - } - } - }, - "1148513945": { - "name": "class WhirlyBurlyPlanningData*", - "bases": [ - "PropertyClass" - ], - "hash": 1148513945, - "properties": { - "m_unitTypesList": { - "type": "unsigned char", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2643134017 - }, - "m_cardsUsedList": { - "type": "unsigned int", - "id": 1, - "offset": 88, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 711045287 - }, - "m_discardedCardsList": { - "type": "unsigned int", - "id": 2, - "offset": 104, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1939154233 + "hash": 1559480167 } } }, - "792420898": { - "name": "class SharedPointer", + "2013490957": { + "name": "class WidgetBackground*", "bases": [ "PropertyClass" ], - "hash": 792420898, + "hash": 2013490957, "properties": { - "m_adventurePartyList": { - "type": "class SharedPointer", + "m_fBackgroundAlpha": { + "type": "float", "id": 0, "offset": 72, "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2274288621 - } - } - }, - "1148928803": { - "name": "class GraphicalPvPCurrency", - "bases": [ - "GraphicalSpell", - "Spell", - "PropertyClass" - ], - "hash": 1148928803, - "properties": { - "m_templateID": { - "type": "unsigned int", - "id": 0, - "offset": 128, - "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1286746870 + "hash": 1164086307 }, - "m_enchantment": { - "type": "unsigned int", + "m_pTopLeftBackgroundAlphaMask": { + "type": "class SharedPointer", "id": 1, "offset": 80, - "flags": 31, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 2217886818 + "pointer": true, + "hash": 2652729643 }, - "m_pipCost": { - "type": "class SharedPointer", + "m_pTopRightBackgroundAlphaMask": { + "type": "class SharedPointer", "id": 2, - "offset": 176, + "offset": 96, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": true, - "hash": 3605704820 + "hash": 2236264926 }, - "m_regularAdjust": { - "type": "int", + "m_pBottomLeftBackgroundAlphaMask": { + "type": "class SharedPointer", "id": 3, - "offset": 192, - "flags": 31, + "offset": 112, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1420453335 + "pointer": true, + "hash": 3301927117 }, - "m_magicSchoolID": { - "type": "unsigned int", + "m_pBottomRightBackgroundAlphaMask": { + "type": "class SharedPointer", "id": 4, - "offset": 136, + "offset": 128, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 893146499 + "pointer": true, + "hash": 2184945088 }, - "m_accuracy": { - "type": "unsigned char", + "m_pBottomBackgroundAlphaMask": { + "type": "class SharedPointer", "id": 5, - "offset": 132, + "offset": 144, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 2273914939 + "pointer": true, + "hash": 2408122274 }, - "m_treasureCard": { - "type": "bool", + "m_pTopBackgroundAlphaMask": { + "type": "class SharedPointer", "id": 6, - "offset": 197, - "flags": 31, + "offset": 160, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1764879128 + "pointer": true, + "hash": 3440742656 }, - "m_battleCard": { - "type": "bool", + "m_pLeftBackgroundAlphaMask": { + "type": "class SharedPointer", "id": 7, - "offset": 198, - "flags": 31, + "offset": 176, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1332843753 + "pointer": true, + "hash": 2348634648 }, - "m_itemCard": { - "type": "bool", + "m_pRightBackgroundAlphaMask": { + "type": "class SharedPointer", "id": 8, - "offset": 199, + "offset": 192, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1683654300 + "pointer": true, + "hash": 2938548331 }, - "m_sideBoard": { - "type": "bool", + "m_pCenterBackgroundAlphaMask": { + "type": "class SharedPointer", "id": 9, - "offset": 200, + "offset": 208, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1897838368 - }, - "m_spellID": { - "type": "unsigned int", - "id": 10, - "offset": 204, - "flags": 31, + "pointer": true, + "hash": 3347258414 + } + } + }, + "738686112": { + "name": "class SharedPointer", + "bases": [ + "LootInfo", + "LootInfoBase", + "PropertyClass" + ], + "hash": 738686112, + "properties": { + "m_lootType": { + "type": "enum LootInfo::LOOT_TYPE", + "id": 0, + "offset": 72, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1697483258 + "hash": 1591891442, + "enum_options": { + "LOOT_TYPE_NONE": 0, + "LOOT_TYPE_GOLD": 1, + "LOOT_TYPE_MANA": 2, + "LOOT_TYPE_ITEM": 3, + "LOOT_TYPE_TREASURE_CARD": 4, + "LOOT_TYPE_MAGIC_XP": 5, + "LOOT_TYPE_ADD_SPELL": 6, + "LOOT_TYPE_MAX_HEALTH": 7, + "LOOT_TYPE_MAX_GOLD": 8, + "LOOT_TYPE_MAX_MANA": 9, + "LOOT_TYPE_MAX_POTION": 10, + "LOOT_TYPE_TRAINING_POINTS": 11, + "LOOT_TYPE_RECIPE": 12, + "LOOT_TYPE_CRAFTING_SLOT": 13, + "LOOT_TYPE_REAGENT": 14, + "LOOT_TYPE_PETSNACK": 15, + "LOOT_TYPE_GARDENING_XP": 16, + "LOOT_TYPE_PET_XP": 17, + "LOOT_TYPE_TREASURE_TABLE": 18, + "LOOT_TYPE_ARENA_POINTS": 19, + "LOOT_TYPE_ARENA_BONUS_POINTS": 20, + "LOOT_TYPE_GROUP": 21, + "LOOT_TYPE_FISHING_XP": 22, + "LOOT_TYPE_EVENT_CURRENCY_1": 24, + "LOOT_TYPE_EVENT_CURRENCY_2": 25, + "LOOT_TYPE_PVP_CURRENCY": 26, + "LOOT_TYPE_PVP_CURRENCY_BONUS": 27, + "LOOT_TYPE_PVP_TOURNEY_CURRENCY": 28, + "LOOT_TYPE_PVP_TOURNEY_CURRENCY_BONUS": 29, + "LOOT_TYPE_FURNITURE_ESSENCE": 30 + } }, - "m_leavesPlayWhenCastOverride": { - "type": "bool", - "id": 11, - "offset": 216, + "m_statModifierSet": { + "type": "class PetStatModificationSet", + "id": 1, + "offset": 80, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 874407398 - }, - "m_cloaked": { - "type": "bool", - "id": 12, - "offset": 196, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 7349510 + "hash": 2182942670 }, - "m_enchantmentSpellIsItemCard": { + "m_leveledUp": { "type": "bool", - "id": 13, - "offset": 76, + "id": 2, + "offset": 264, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 531590701 + "hash": 2101027993 }, - "m_premutationSpellID": { + "m_lastTalentGiven": { "type": "unsigned int", - "id": 14, - "offset": 112, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1530256370 - }, - "m_enchantedThisCombat": { - "type": "bool", - "id": 15, - "offset": 77, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1895738923 - }, - "m_paramOverrides": { - "type": "class SharedPointer", - "id": 16, - "offset": 224, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2061635599 - }, - "m_subEffectMeta": { - "type": "class SharedPointer", - "id": 17, - "offset": 240, + "id": 3, + "offset": 268, "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1944101106 - }, - "m_delayEnchantment": { - "type": "bool", - "id": 18, - "offset": 257, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 191336919 - }, - "m_PvE": { - "type": "bool", - "id": 19, - "offset": 264, - "flags": 287, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 269492350 - }, - "m_delayEnchantmentOrder": { - "type": "enum SpellEffect::kDelayOrder", - "id": 20, - "offset": 72, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2526055263, - "enum_options": { - "SpellEffect::kAnyOrder": 0, - "SpellEffect::kFirst": 1, - "SpellEffect::kSecond": 2 - } + "hash": 2315681826 }, - "m_roundAddedTC": { - "type": "int", - "id": 21, - "offset": 260, + "m_lastPowerGiven": { + "type": "unsigned int", + "id": 4, + "offset": 272, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 112365451 + "hash": 398209479 }, - "m_secondarySchoolID": { + "m_lastJewelGiven": { "type": "unsigned int", - "id": 22, - "offset": 304, - "flags": 7, + "id": 5, + "offset": 276, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2081206026 + "hash": 1688300849 } } }, - "1148928779": { - "name": "class GraphicalPvPCurrency*", + "1143763993": { + "name": "class SharedPointer", "bases": [ - "GraphicalSpell", - "Spell", "PropertyClass" ], - "hash": 1148928779, + "hash": 1143763993, + "properties": {} + }, + "1575071659": { + "name": "class CombatGardeningXPEffectTemplate*", + "bases": [ + "GameEffectTemplate", + "PropertyClass" + ], + "hash": 1575071659, "properties": { - "m_templateID": { - "type": "unsigned int", + "m_effectName": { + "type": "std::string", "id": 0, - "offset": 128, - "flags": 31, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1286746870 + "hash": 2029161513 }, - "m_enchantment": { - "type": "unsigned int", + "m_effectCategory": { + "type": "std::string", "id": 1, - "offset": 80, - "flags": 31, + "offset": 104, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2217886818 + "hash": 1852673222 }, - "m_pipCost": { - "type": "class SharedPointer", + "m_sortOrder": { + "type": "int", "id": 2, - "offset": 176, + "offset": 148, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3605704820 + "pointer": false, + "hash": 1411218206 }, - "m_regularAdjust": { - "type": "int", + "m_duration": { + "type": "double", "id": 3, "offset": 192, - "flags": 31, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1420453335 + "hash": 2727932435 }, - "m_magicSchoolID": { - "type": "unsigned int", + "m_stackingCategories": { + "type": "std::string", "id": 4, - "offset": 136, + "offset": 160, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 893146499 + "hash": 1774497525 }, - "m_accuracy": { - "type": "unsigned char", + "m_isPersistent": { + "type": "bool", "id": 5, - "offset": 132, + "offset": 153, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2273914939 + "hash": 923861920 }, - "m_treasureCard": { + "m_bIsOnPet": { "type": "bool", "id": 6, - "offset": 197, - "flags": 31, + "offset": 154, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1764879128 + "hash": 522593303 }, - "m_battleCard": { + "m_isPublic": { "type": "bool", "id": 7, - "offset": 198, - "flags": 31, + "offset": 152, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1332843753 + "hash": 1728439822 }, - "m_itemCard": { - "type": "bool", + "m_visualEffectAddName": { + "type": "std::string", "id": 8, - "offset": 199, + "offset": 200, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1683654300 + "hash": 3382086694 }, - "m_sideBoard": { - "type": "bool", + "m_visualEffectRemoveName": { + "type": "std::string", "id": 9, - "offset": 200, + "offset": 232, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1897838368 + "hash": 1541697323 }, - "m_spellID": { - "type": "unsigned int", + "m_onAddFunctorName": { + "type": "std::string", "id": 10, - "offset": 204, - "flags": 31, + "offset": 280, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1697483258 + "hash": 1561843107 }, - "m_leavesPlayWhenCastOverride": { - "type": "bool", + "m_onRemoveFunctorName": { + "type": "std::string", "id": 11, - "offset": 216, - "flags": 31, + "offset": 312, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 874407398 + "hash": 2559017864 }, - "m_cloaked": { - "type": "bool", + "m_stackingRule": { + "type": "enum STACKING_RULE", "id": 12, - "offset": 196, - "flags": 7, + "offset": 144, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 7349510 + "hash": 431568889, + "enum_options": { + "STACKING_ALLOWED": 0, + "STACKING_NOSTACK": 1, + "STACKING_REPLACE": 2 + } }, - "m_enchantmentSpellIsItemCard": { - "type": "bool", + "m_xpPercent": { + "type": "int", "id": 13, - "offset": 76, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 531590701 - }, - "m_premutationSpellID": { - "type": "unsigned int", - "id": 14, - "offset": 112, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1530256370 - }, - "m_enchantedThisCombat": { - "type": "bool", - "id": 15, - "offset": 77, - "flags": 31, + "offset": 360, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1895738923 - }, - "m_paramOverrides": { - "type": "class SharedPointer", - "id": 16, - "offset": 224, - "flags": 31, + "hash": 755316563 + } + } + }, + "301188117": { + "name": "class PetTalentsTriggeredSpells", + "bases": [ + "PropertyClass" + ], + "hash": 301188117, + "properties": { + "m_petTalentsTriggeredSpells": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 7, "container": "List", "dynamic": true, "singleton": false, "pointer": true, - "hash": 2061635599 - }, - "m_subEffectMeta": { - "type": "class SharedPointer", - "id": 17, - "offset": 240, + "hash": 2245729734 + } + } + }, + "737996094": { + "name": "class WizMinigameOffering", + "bases": [ + "PropertyClass" + ], + "hash": 737996094, + "properties": {} + }, + "1142780880": { + "name": "class BGPolymorphSelectOption", + "bases": [ + "ServiceOptionBase", + "PropertyClass" + ], + "hash": 1142780880, + "properties": { + "m_serviceName": { + "type": "std::string", + "id": 0, + "offset": 72, "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1944101106 - }, - "m_delayEnchantment": { - "type": "bool", - "id": 18, - "offset": 257, - "flags": 287, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 191336919 + "hash": 2206028813 }, - "m_PvE": { - "type": "bool", - "id": 19, - "offset": 264, - "flags": 287, + "m_iconKey": { + "type": "std::string", + "id": 1, + "offset": 168, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 269492350 + "hash": 2457138637 }, - "m_delayEnchantmentOrder": { - "type": "enum SpellEffect::kDelayOrder", - "id": 20, - "offset": 72, - "flags": 287, + "m_displayKey": { + "type": "std::string", + "id": 2, + "offset": 104, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2526055263, - "enum_options": { - "SpellEffect::kAnyOrder": 0, - "SpellEffect::kFirst": 1, - "SpellEffect::kSecond": 2 - } + "hash": 3023276954 }, - "m_roundAddedTC": { - "type": "int", - "id": 21, - "offset": 260, + "m_serviceIndex": { + "type": "unsigned int", + "id": 3, + "offset": 204, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 112365451 + "hash": 2103126710 }, - "m_secondarySchoolID": { - "type": "unsigned int", - "id": 22, - "offset": 304, - "flags": 7, + "m_forceInteract": { + "type": "bool", + "id": 4, + "offset": 200, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2081206026 + "hash": 1705789564 } } }, - "794346298": { - "name": "class SharedPointer", + "1574959647": { + "name": "class SharedPointer", "bases": [ - "ObstacleCoursePusherBehavior", - "ObstacleCourseObstaclePathBase", - "ObstacleCourseObstacleBehavior", + "GardeningShedBehaviorBase", "BehaviorInstance", "PropertyClass" ], - "hash": 794346298, + "hash": 1574959647, "properties": { "m_behaviorTemplateNameID": { "type": "unsigned int", @@ -481741,951 +233645,1170 @@ "singleton": false, "pointer": false, "hash": 223437287 + }, + "m_seedList": { + "type": "unsigned int", + "id": 1, + "offset": 112, + "flags": 65567, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 672751594 + }, + "m_seedData": { + "type": "std::string", + "id": 2, + "offset": 128, + "flags": 551, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1958752566 } } }, - "793513471": { - "name": "class SharedPointer", + "296942249": { + "name": "class AquariumBehaviorBase*", "bases": [ - "ControlButtonState", + "BehaviorInstance", "PropertyClass" ], - "hash": 793513471, + "hash": 296942249, "properties": { - "m_nMaterialFrame": { - "type": "int", + "m_behaviorTemplateNameID": { + "type": "unsigned int", "id": 0, - "offset": 72, - "flags": 135, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1641923970 + "hash": 223437287 + }, + "m_fishData": { + "type": "std::string", + "id": 1, + "offset": 128, + "flags": 575, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3393318815 } } }, - "1149186669": { - "name": "class ClientPlaySoundCinematicAction", + "1574804631": { + "name": "class SharedPointer", "bases": [ - "PlaySoundCinematicAction", - "CinematicAction", + "WizItemTemplate", + "ItemTemplate", + "GameObjectTemplate", + "CoreTemplate", "PropertyClass" ], - "hash": 1149186669, + "hash": 1574804631, "properties": { - "m_timeOffset": { - "type": "float", + "m_behaviors": { + "type": "class BehaviorTemplate*", "id": 0, "offset": 72, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "Vector", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 2237098605 + "pointer": true, + "hash": 1197808594 }, - "m_sound": { + "m_objectName": { "type": "std::string", "id": 1, - "offset": 80, - "flags": 131079, - "container": "List", - "dynamic": true, + "offset": 96, + "flags": 7, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 2307644996 + "hash": 2154940147 }, - "m_useClientLocation": { - "type": "bool", + "m_templateID": { + "type": "unsigned int", "id": 2, - "offset": 100, - "flags": 7, + "offset": 128, + "flags": 16777223, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 98585784 + "hash": 1286746870 }, - "m_soundType": { - "type": "enum PlaySoundCinematicAction::SoundType", + "m_visualID": { + "type": "unsigned int", "id": 3, - "offset": 96, - "flags": 2097159, + "offset": 132, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 868075053, - "enum_options": { - "kSigil": 0, - "kGotHit": 1, - "kDeath": 2, - "kChatter": 4, - "__DEFAULT": "kSigil" - } + "hash": 1118778894 }, - "m_streamSound": { - "type": "bool", + "m_adjectiveList": { + "type": "std::string", "id": 4, - "offset": 101, - "flags": 263, - "container": "Static", - "dynamic": false, + "offset": 248, + "flags": 7, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 1693179368 + "hash": 3195213318 }, - "m_playMusic": { + "m_exemptFromAOI": { "type": "bool", "id": 5, - "offset": 102, - "flags": 263, + "offset": 240, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 552729674 + "hash": 1457879059 }, - "m_fadeDuration": { - "type": "float", + "m_displayName": { + "type": "std::string", "id": 6, - "offset": 104, - "flags": 7, + "offset": 168, + "flags": 8388615, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1402536557 - } - } - }, - "794157837": { - "name": "class ReqGetExhibitState*", - "bases": [ - "ReqNumeric", - "Requirement", - "PropertyClass" - ], - "hash": 794157837, - "properties": { - "m_applyNOT": { - "type": "bool", - "id": 0, - "offset": 72, - "flags": 31, + "hash": 2446900370 + }, + "m_description": { + "type": "std::string", + "id": 7, + "offset": 136, + "flags": 8388615, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1746328074, - "enum_options": { - "__DEFAULT": 0 - } + "hash": 1649374815 }, - "m_operator": { - "type": "enum Requirement::Operator", - "id": 1, - "offset": 76, - "flags": 2097183, + "m_nObjectType": { + "type": "enum ObjectType", + "id": 8, + "offset": 200, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2672792317, + "hash": 2118905880, "enum_options": { - "ROP_AND": 0, - "ROP_OR": 1, - "__DEFAULT": "ROP_AND" + "OT_UNDEFINED": 0, + "OT_PLAYER": 1, + "OT_NPC": 2, + "OT_PROP": 3, + "OT_OBJECT": 4, + "OT_HOUSE": 5, + "OT_KEY": 6, + "OT_OLD_KEY": 7, + "OT_DEED": 8, + "OT_MAIL": 9, + "OT_RECIPE": 17, + "OT_EQUIP_HEAD": 10, + "OT_EQUIP_CHEST": 11, + "OT_EQUIP_LEGS": 12, + "OT_EQUIP_HANDS": 13, + "OT_EQUIP_FINGER": 14, + "OT_EQUIP_FEET": 15, + "OT_EQUIP_EAR": 16, + "OT_BUILDING_BLOCK": 18, + "OT_BUILDING_BLOCK_SOLID": 19, + "OT_GOLF": 20, + "OT_DOOR": 21, + "OT_PET": 22, + "OT_FABRIC": 23, + "OT_WINDOW": 24, + "OT_ROOF": 25, + "OT_HORSE": 26, + "OT_STRUCTURE": 27, + "OT_HOUSING_TEXTURE": 28, + "OT_PLANT": 29 } }, - "m_numericValue": { - "type": "float", - "id": 2, - "offset": 80, - "flags": 31, + "m_sIcon": { + "type": "std::string", + "id": 9, + "offset": 208, + "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 521915239 + "hash": 2306259831 }, - "m_operatorType": { - "type": "enum ReqNumeric::OPERATOR_TYPE", - "id": 3, - "offset": 84, - "flags": 2097183, + "m_equipRequirements": { + "type": "class RequirementList*", + "id": 10, + "offset": 280, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 2228122961, - "enum_options": { - "OPERATOR_UNKNOWN": 4294967295, - "OPERATOR_EQUALS": 0, - "OPERATOR_GREATER_THAN": 1, - "OPERATOR_LESS_THAN": 2, - "OPERATOR_GREATER_THAN_EQ": 3, - "OPERATOR_LESS_THAN_EQ": 4 - } + "pointer": true, + "hash": 2762617226 }, - "m_galleryWorld": { - "type": "std::string", - "id": 4, - "offset": 88, - "flags": 31, + "m_purchaseRequirements": { + "type": "class RequirementList*", + "id": 11, + "offset": 288, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 3310813907 + "pointer": true, + "hash": 3174641793 }, - "m_exhibitName": { - "type": "std::string", - "id": 5, - "offset": 120, - "flags": 31, + "m_equipEffects": { + "type": "class GameEffectInfo*", + "id": 12, + "offset": 296, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 836628351 + }, + "m_baseCost": { + "type": "float", + "id": 13, + "offset": 312, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1832300681 + "hash": 1565352651 }, - "m_testValue": { + "m_creditsCost": { "type": "float", - "id": 6, - "offset": 152, - "flags": 31, + "id": 14, + "offset": 320, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1624748404 - } - } - }, - "1151651325": { - "name": "class CoreObject*", - "bases": [ - "PropertyClass" - ], - "hash": 1151651325, - "properties": { - "m_inactiveBehaviors": { - "type": "class SharedPointer", - "id": 0, - "offset": 224, - "flags": 31, - "container": "Vector", - "dynamic": true, + "hash": 805514974 + }, + "m_avatarInfo": { + "type": "class AvatarItemInfoBase*", + "id": 15, + "offset": 328, + "flags": 7, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": true, - "hash": 1850812559 + "hash": 2627321299 }, - "m_globalID.m_full": { - "type": "unsigned __int64", - "id": 1, - "offset": 72, - "flags": 16777247, + "m_avatarFlags": { + "type": "std::string", + "id": 16, + "offset": 336, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2347762759 + }, + "m_itemLimit": { + "type": "int", + "id": 17, + "offset": 316, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2312465444 + "hash": 1799746856 }, - "m_permID": { - "type": "unsigned __int64", - "id": 2, - "offset": 80, - "flags": 16777247, + "m_holidayFlag": { + "type": "std::string", + "id": 18, + "offset": 352, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1298909658 + "hash": 2994795359 }, - "m_location": { - "type": "class Vector3D", - "id": 3, - "offset": 168, - "flags": 31, + "m_itemSetBonusTemplateID": { + "type": "unsigned int", + "id": 19, + "offset": 384, + "flags": 33554439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2239683611 + "hash": 1316835672 }, - "m_orientation": { - "type": "class Vector3D", - "id": 4, - "offset": 180, - "flags": 31, + "m_numPrimaryColors": { + "type": "int", + "id": 20, + "offset": 428, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2344058766 + "hash": 981103872 }, - "m_fScale": { - "type": "float", - "id": 5, - "offset": 196, - "flags": 31, + "m_numSecondaryColors": { + "type": "int", + "id": 21, + "offset": 432, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 503137701 + "hash": 1310416868 }, - "m_templateID.m_full": { - "type": "unsigned __int64", - "id": 6, - "offset": 96, - "flags": 31, + "m_numPatterns": { + "type": "int", + "id": 22, + "offset": 436, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 633907631 + "hash": 953162171 }, - "m_debugName": { + "m_school": { "type": "std::string", - "id": 7, - "offset": 104, - "flags": 31, + "id": 23, + "offset": 392, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3553984419 + "hash": 2438566051 }, - "m_displayKey": { - "type": "std::string", - "id": 8, - "offset": 136, - "flags": 31, + "m_arenaPointCost": { + "type": "int", + "id": 24, + "offset": 440, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3023276954 + "hash": 1819621796 }, - "m_zoneTagID": { - "type": "unsigned int", - "id": 9, - "offset": 344, - "flags": 31, + "m_pvpCurrencyCost": { + "type": "int", + "id": 25, + "offset": 444, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 965291410 + "hash": 645595444 }, - "m_speedMultiplier": { - "type": "short", - "id": 10, - "offset": 192, - "flags": 31, + "m_pvpTourneyCurrencyCost": { + "type": "int", + "id": 26, + "offset": 448, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 123130076 + "hash": 517874954 }, - "m_nMobileID": { - "type": "unsigned short", - "id": 11, - "offset": 194, - "flags": 31, + "m_rank": { + "type": "int", + "id": 27, + "offset": 424, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1054318939 - } - } - }, - "794376094": { - "name": "class SharedPointer", - "bases": [ - "InfractionPenalty", - "PropertyClass" - ], - "hash": 794376094, - "properties": { - "m_internalID": { - "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 31, + "hash": 219803942 + }, + "m_boyIconIndex": { + "type": "int", + "id": 28, + "offset": 452, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1854540375 + "hash": 802140453 }, - "m_categoryID": { - "type": "unsigned int", - "id": 1, - "offset": 76, - "flags": 31, + "m_girlIconIndex": { + "type": "int", + "id": 29, + "offset": 456, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1382795736 + "hash": 832706793 }, - "m_removeAtPointValue": { - "type": "float", - "id": 2, - "offset": 80, - "flags": 31, + "m_leashOffsetOverride": { + "type": "class SharedPointer", + "id": 30, + "offset": 464, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1692586788 + }, + "m_rarity": { + "type": "enum RarityType", + "id": 31, + "offset": 460, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2112196961 + "hash": 2253792108, + "enum_options": { + "RT_COMMON": 0, + "RT_UNCOMMON": 1, + "RT_RARE": 2, + "RT_ULTRARARE": 3, + "RT_EPIC": 4 + } }, - "m_expireTime": { - "type": "unsigned int", - "id": 3, - "offset": 84, - "flags": 31, + "m_bundleItems": { + "type": "gid", + "id": 32, + "offset": 480, + "flags": 33554439, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 182029460 + }, + "m_bundleFreeItems": { + "type": "gid", + "id": 33, + "offset": 496, + "flags": 33554439, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 263220278 + }, + "m_bundleItemsToGrant": { + "type": "gid", + "id": 34, + "offset": 544, + "flags": 33554439, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1280974675 + }, + "m_featuredRewards": { + "type": "gid", + "id": 35, + "offset": 512, + "flags": 33554439, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1360288832 + }, + "m_acquireCondition": { + "type": "enum ItemBundleTemplate::AcquireConditionType", + "id": 36, + "offset": 528, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1836304873 + "hash": 2176833998, + "enum_options": { + "kReceiveAll": 0, + "kChooseOne": 1 + } }, - "m_duration": { - "type": "unsigned int", - "id": 4, - "offset": 88, - "flags": 31, + "m_bundleContentsType": { + "type": "enum ItemBundleTemplate::BundleContentsType", + "id": 37, + "offset": 532, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1041524755 + "hash": 2541051988, + "enum_options": { + "kHatRobeShoes": 0, + "kShowFirstItemInPortrait": 1, + "kHatRobeShoesWeaponMount": 2, + "kShowPortraitsConsecutively": 3 + } + }, + "m_bundleSavings": { + "type": "int", + "id": 38, + "offset": 536, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2036928271 } } }, - "1150275198": { - "name": "class FidgetBehavior*", + "2014314318": { + "name": "class MapInfoRequirementsList*", "bases": [ - "BehaviorInstance", "PropertyClass" ], - "hash": 1150275198, + "hash": 2014314318, "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", + "m_mapInfoRequirementsList": { + "type": "class SharedPointer", "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 223437287 + "pointer": true, + "hash": 1745192089 } } }, - "1149577254": { - "name": "class AggroBehavior", + "296051428": { + "name": "class SharedPointer", "bases": [ - "BehaviorInstance", + "UnPolymorphCinematicAction", + "CinematicAction", "PropertyClass" ], - "hash": 1149577254, + "hash": 296051428, "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", + "m_timeOffset": { + "type": "float", "id": 0, - "offset": 104, - "flags": 39, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 + "hash": 2237098605 } } }, - "795152686": { - "name": "class CombatResolver", + "295403644": { + "name": "class DailyQuestRewardData", "bases": [ "PropertyClass" ], - "hash": 795152686, + "hash": 295403644, "properties": { - "m_bGlobalEffect": { - "type": "bool", + "m_dailyQuestRewardList": { + "type": "class SharedPointer", "id": 0, - "offset": 112, - "flags": 31, - "container": "Static", - "dynamic": false, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 1403478355 + "pointer": true, + "hash": 1109520555 }, - "m_globalEffect": { - "type": "class SharedPointer", + "m_dailyPvPRewardList": { + "type": "class SharedPointer", "id": 1, - "offset": 120, - "flags": 31, - "container": "Static", - "dynamic": false, + "offset": 88, + "flags": 7, + "container": "List", + "dynamic": true, "singleton": false, "pointer": true, - "hash": 967055913 + "hash": 952967791 }, - "m_battlefieldEffects": { - "type": "class SharedPointer", + "m_circleRegistryList": { + "type": "std::string", "id": 2, - "offset": 136, - "flags": 31, - "container": "Vector", + "offset": 104, + "flags": 7, + "container": "List", "dynamic": true, "singleton": false, - "pointer": true, - "hash": 1245973515 + "pointer": false, + "hash": 2265601986 + }, + "m_questRewardsList": { + "type": "std::string", + "id": 3, + "offset": 120, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2202355553 } } }, - "1149577251": { - "name": "class AggroBehavior*", + "738789728": { + "name": "class ReqClearHatchingSlot*", "bases": [ - "BehaviorInstance", + "Requirement", "PropertyClass" ], - "hash": 1149577251, + "hash": 738789728, "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", + "m_applyNOT": { + "type": "bool", "id": 0, - "offset": 104, - "flags": 39, + "offset": 72, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 + "hash": 1746328074, + "enum_options": { + "__DEFAULT": 0 + } + }, + "m_operator": { + "type": "enum Requirement::Operator", + "id": 1, + "offset": 76, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2672792317, + "enum_options": { + "ROP_AND": 0, + "ROP_OR": 1, + "__DEFAULT": "ROP_AND" + } } } }, - "797250852": { - "name": "class ZoneGateOption", + "1144251228": { + "name": "class WizBGPolymorphStatisticOverrideEffect*", "bases": [ - "ServiceOptionBase", + "StatisticEffect", + "GameEffectBase", "PropertyClass" ], - "hash": 797250852, + "hash": 1144251228, "properties": { - "m_serviceName": { - "type": "std::string", + "m_currentTickCount": { + "type": "double", "id": 0, - "offset": 72, - "flags": 31, + "offset": 80, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2206028813 + "hash": 2533274692 }, - "m_iconKey": { - "type": "std::string", + "m_effectNameID": { + "type": "unsigned int", "id": 1, - "offset": 168, - "flags": 31, + "offset": 96, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2457138637 + "hash": 1204067144 }, - "m_displayKey": { - "type": "std::string", + "m_bIsOnPet": { + "type": "bool", "id": 2, - "offset": 104, + "offset": 73, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3023276954 + "hash": 522593303 }, - "m_serviceIndex": { - "type": "unsigned int", + "m_originatorID": { + "type": "gid", "id": 3, - "offset": 204, - "flags": 31, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2103126710 + "hash": 1131810019 }, - "m_forceInteract": { - "type": "bool", + "m_itemSlotID": { + "type": "unsigned int", "id": 4, - "offset": 200, - "flags": 31, + "offset": 112, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1705789564 - } - } - }, - "1149957363": { - "name": "class BattlegroundGroupMemberStatus*", - "bases": [ - "PropertyClass" - ], - "hash": 1149957363, - "properties": { - "m_playerID": { - "type": "gid", - "id": 0, - "offset": 72, - "flags": 7, + "hash": 1895747595 + }, + "m_internalID": { + "type": "int", + "id": 5, + "offset": 92, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1774633426 + "hash": 1643137924 }, - "m_nameBlob": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, + "m_endTime": { + "type": "unsigned int", + "id": 6, + "offset": 88, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3058206907 + "hash": 716479635 }, - "m_status": { - "type": "enum BGGroupStatusEnum", - "id": 2, - "offset": 112, - "flags": 2097159, + "m_lookupIndex": { + "type": "int", + "id": 7, + "offset": 128, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1016087325, - "enum_options": { - "BGS_Checking": 0, - "BGS_Ready": 1, - "BGS_LowLevel": 2, - "BGS_Cheater": 3, - "BGS_OnCooldown": 4, - "BGS_QueuedForBG": 5, - "BGS_QueuedForPVP": 6, - "BGS_Disconnected": 7, - "BGS_LeftGroup": 8, - "BGS_GroupToBig": 9, - "BGS_Unavailable": 10 - } + "hash": 1626623948 + }, + "m_baseHitpoints": { + "type": "int", + "id": 8, + "offset": 136, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 596105911 } } }, - "795798843": { - "name": "class FurnitureEssenceLootInfo*", + "295368144": { + "name": "class ReqHangingAura", "bases": [ - "ItemLootInfo", - "LootInfo", - "LootInfoBase", + "ConditionalSpellEffectRequirement", + "Requirement", "PropertyClass" ], - "hash": 795798843, + "hash": 295368144, "properties": { - "m_lootType": { - "type": "enum LootInfo::LOOT_TYPE", + "m_applyNOT": { + "type": "bool", "id": 0, "offset": 72, - "flags": 2097183, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1591891442, + "hash": 1746328074, "enum_options": { - "LOOT_TYPE_NONE": 0, - "LOOT_TYPE_GOLD": 1, - "LOOT_TYPE_MANA": 2, - "LOOT_TYPE_ITEM": 3, - "LOOT_TYPE_TREASURE_CARD": 4, - "LOOT_TYPE_MAGIC_XP": 5, - "LOOT_TYPE_ADD_SPELL": 6, - "LOOT_TYPE_MAX_HEALTH": 7, - "LOOT_TYPE_MAX_GOLD": 8, - "LOOT_TYPE_MAX_MANA": 9, - "LOOT_TYPE_MAX_POTION": 10, - "LOOT_TYPE_TRAINING_POINTS": 11, - "LOOT_TYPE_RECIPE": 12, - "LOOT_TYPE_CRAFTING_SLOT": 13, - "LOOT_TYPE_REAGENT": 14, - "LOOT_TYPE_PETSNACK": 15, - "LOOT_TYPE_GARDENING_XP": 16, - "LOOT_TYPE_PET_XP": 17, - "LOOT_TYPE_TREASURE_TABLE": 18, - "LOOT_TYPE_ARENA_POINTS": 19, - "LOOT_TYPE_ARENA_BONUS_POINTS": 20, - "LOOT_TYPE_GROUP": 21, - "LOOT_TYPE_FISHING_XP": 22, - "LOOT_TYPE_EVENT_CURRENCY_1": 24, - "LOOT_TYPE_EVENT_CURRENCY_2": 25, - "LOOT_TYPE_PVP_CURRENCY": 26, - "LOOT_TYPE_PVP_CURRENCY_BONUS": 27, - "LOOT_TYPE_PVP_TOURNEY_CURRENCY": 28, - "LOOT_TYPE_PVP_TOURNEY_CURRENCY_BONUS": 29, - "LOOT_TYPE_FURNITURE_ESSENCE": 30 + "__DEFAULT": 0 } }, - "m_itemID": { - "type": "gid", + "m_operator": { + "type": "enum Requirement::Operator", "id": 1, - "offset": 88, - "flags": 33554463, + "offset": 76, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 569545460 + "hash": 2672792317, + "enum_options": { + "ROP_AND": 0, + "ROP_OR": 1, + "__DEFAULT": "ROP_AND" + } }, - "m_numItems": { - "type": "int", + "m_targetType": { + "type": "enum ConditionalSpellEffectRequirement::RequirementTarget", "id": 2, - "offset": 96, - "flags": 31, + "offset": 80, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1588646284 - } - } - }, - "795575806": { - "name": "class SharedPointer", - "bases": [ - "WinAnimScaleSymmetrical", - "WindowAnimation", - "PropertyClass" - ], - "hash": 795575806, - "properties": { - "m_bUseDeepCopy": { - "type": "bool", - "id": 0, - "offset": 72, - "flags": 135, + "hash": 2547737902, + "enum_options": { + "RT_Caster": 0, + "RT_Target": 1 + } + }, + "m_effectType": { + "type": "enum SpellEffect::kSpellEffects", + "id": 3, + "offset": 88, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 433380635 + "hash": 2578255295, + "enum_options": { + "SpellEffect::kInvalidSpellEffect": 0, + "SpellEffect::kAbsorbDamage": 37, + "SpellEffect::kAbsorbHeal": 38, + "SpellEffect::kAddCombatTriggerList": 87, + "SpellEffect::kBounceAll": 36, + "SpellEffect::kBounceBack": 35, + "SpellEffect::kBounceNext": 33, + "SpellEffect::kBouncePrevious": 34, + "SpellEffect::kCloakedCharm": 42, + "SpellEffect::kCloakedWard": 43, + "SpellEffect::kCloakedWardNoRemove": 86, + "SpellEffect::kConfusionBlock": 109, + "SpellEffect::kCritBlock": 47, + "SpellEffect::kCritBoost": 46, + "SpellEffect::kCritBoostSchoolSpecific": 97, + "SpellEffect::kDampen": 68, + "SpellEffect::kDispel": 40, + "SpellEffect::kDispelBlock": 108, + "SpellEffect::kMaximumIncomingDamage": 23, + "SpellEffect::kModifyAccuracy": 39, + "SpellEffect::kModifyIncomingArmorPiercing": 26, + "SpellEffect::kModifyIncomingDamage": 22, + "SpellEffect::kModifyIncomingDamageFlat": 119, + "SpellEffect::kModifyIncomingDamageOverTime": 137, + "SpellEffect::kModifyIncomingDamageType": 25, + "SpellEffect::kModifyIncomingHeal": 24, + "SpellEffect::kModifyIncomingHealFlat": 118, + "SpellEffect::kModifyIncomingHealOverTime": 138, + "SpellEffect::kModifyIncomingStealHealth": 32, + "SpellEffect::kModifyOutgoingArmorPiercing": 30, + "SpellEffect::kModifyOutgoingDamage": 27, + "SpellEffect::kModifyOutgoingDamageFlat": 121, + "SpellEffect::kModifyOutgoingDamageType": 29, + "SpellEffect::kModifyOutgoingHeal": 28, + "SpellEffect::kModifyOutgoingHealFlat": 120, + "SpellEffect::kModifyPipRoundRate": 110, + "SpellEffect::kModifyPowerPipChance": 77, + "SpellEffect::kPipConversion": 45, + "SpellEffect::kPowerPipConversion": 100, + "SpellEffect::kProtectBeneficial": 103, + "SpellEffect::kProtectHarmful": 104, + "SpellEffect::kPushCharm": 8, + "SpellEffect::kRemoveCombatTriggerList": 88, + "SpellEffect::kStunBlock": 79, + "SpellEffect::kStunResist": 44 + } }, - "m_scale": { - "type": "float", - "id": 1, - "offset": 80, - "flags": 135, + "m_disposition": { + "type": "enum SpellEffect::kHangingDisposition", + "id": 4, + "offset": 92, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 899693439 + "hash": 1904841031, + "enum_options": { + "SpellEffect::kBoth": 0, + "SpellEffect::kBeneficial": 1, + "SpellEffect::kHarmful": 2 + } }, - "m_fSpeed": { - "type": "float", - "id": 2, - "offset": 88, - "flags": 135, + "m_anyType": { + "type": "bool", + "id": 5, + "offset": 96, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 503609006 + "hash": 1809059293 + }, + "m_globalEffect": { + "type": "bool", + "id": 6, + "offset": 97, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 793781233 } } }, - "1150541086": { - "name": "class SharedPointer", + "2015100750": { + "name": "class MapInfoRequirementsList", "bases": [ - "ActorCinematicAction", - "CinematicAction", "PropertyClass" ], - "hash": 1150541086, + "hash": 2015100750, "properties": { - "m_timeOffset": { - "type": "float", + "m_mapInfoRequirementsList": { + "type": "class SharedPointer", "id": 0, "offset": 72, "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 2285866132 + "pointer": true, + "hash": 1745192089 } } }, - "1150285043": { - "name": "class BattlegroundGroupMemberStatus", + "295368048": { + "name": "class ReqHangingAura*", "bases": [ + "ConditionalSpellEffectRequirement", + "Requirement", "PropertyClass" ], - "hash": 1150285043, + "hash": 295368048, "properties": { - "m_playerID": { - "type": "gid", + "m_applyNOT": { + "type": "bool", "id": 0, "offset": 72, - "flags": 7, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1774633426 + "hash": 1746328074, + "enum_options": { + "__DEFAULT": 0 + } }, - "m_nameBlob": { - "type": "std::string", + "m_operator": { + "type": "enum Requirement::Operator", "id": 1, - "offset": 80, - "flags": 7, + "offset": 76, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3058206907 + "hash": 2672792317, + "enum_options": { + "ROP_AND": 0, + "ROP_OR": 1, + "__DEFAULT": "ROP_AND" + } }, - "m_status": { - "type": "enum BGGroupStatusEnum", + "m_targetType": { + "type": "enum ConditionalSpellEffectRequirement::RequirementTarget", "id": 2, - "offset": 112, + "offset": 80, "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1016087325, + "hash": 2547737902, "enum_options": { - "BGS_Checking": 0, - "BGS_Ready": 1, - "BGS_LowLevel": 2, - "BGS_Cheater": 3, - "BGS_OnCooldown": 4, - "BGS_QueuedForBG": 5, - "BGS_QueuedForPVP": 6, - "BGS_Disconnected": 7, - "BGS_LeftGroup": 8, - "BGS_GroupToBig": 9, - "BGS_Unavailable": 10 + "RT_Caster": 0, + "RT_Target": 1 } - } - } - }, - "795959143": { - "name": "class SharedPointer", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 795959143, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, + }, + "m_effectType": { + "type": "enum SpellEffect::kSpellEffects", + "id": 3, + "offset": 88, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3130754092 + "hash": 2578255295, + "enum_options": { + "SpellEffect::kInvalidSpellEffect": 0, + "SpellEffect::kAbsorbDamage": 37, + "SpellEffect::kAbsorbHeal": 38, + "SpellEffect::kAddCombatTriggerList": 87, + "SpellEffect::kBounceAll": 36, + "SpellEffect::kBounceBack": 35, + "SpellEffect::kBounceNext": 33, + "SpellEffect::kBouncePrevious": 34, + "SpellEffect::kCloakedCharm": 42, + "SpellEffect::kCloakedWard": 43, + "SpellEffect::kCloakedWardNoRemove": 86, + "SpellEffect::kConfusionBlock": 109, + "SpellEffect::kCritBlock": 47, + "SpellEffect::kCritBoost": 46, + "SpellEffect::kCritBoostSchoolSpecific": 97, + "SpellEffect::kDampen": 68, + "SpellEffect::kDispel": 40, + "SpellEffect::kDispelBlock": 108, + "SpellEffect::kMaximumIncomingDamage": 23, + "SpellEffect::kModifyAccuracy": 39, + "SpellEffect::kModifyIncomingArmorPiercing": 26, + "SpellEffect::kModifyIncomingDamage": 22, + "SpellEffect::kModifyIncomingDamageFlat": 119, + "SpellEffect::kModifyIncomingDamageOverTime": 137, + "SpellEffect::kModifyIncomingDamageType": 25, + "SpellEffect::kModifyIncomingHeal": 24, + "SpellEffect::kModifyIncomingHealFlat": 118, + "SpellEffect::kModifyIncomingHealOverTime": 138, + "SpellEffect::kModifyIncomingStealHealth": 32, + "SpellEffect::kModifyOutgoingArmorPiercing": 30, + "SpellEffect::kModifyOutgoingDamage": 27, + "SpellEffect::kModifyOutgoingDamageFlat": 121, + "SpellEffect::kModifyOutgoingDamageType": 29, + "SpellEffect::kModifyOutgoingHeal": 28, + "SpellEffect::kModifyOutgoingHealFlat": 120, + "SpellEffect::kModifyPipRoundRate": 110, + "SpellEffect::kModifyPowerPipChance": 77, + "SpellEffect::kPipConversion": 45, + "SpellEffect::kPowerPipConversion": 100, + "SpellEffect::kProtectBeneficial": 103, + "SpellEffect::kProtectHarmful": 104, + "SpellEffect::kPushCharm": 8, + "SpellEffect::kRemoveCombatTriggerList": 88, + "SpellEffect::kStunBlock": 79, + "SpellEffect::kStunResist": 44 + } }, - "m_fishtankSize": { - "type": "int", - "id": 1, - "offset": 120, - "flags": 7, + "m_disposition": { + "type": "enum SpellEffect::kHangingDisposition", + "id": 4, + "offset": 92, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1397459629 + "hash": 1904841031, + "enum_options": { + "SpellEffect::kBoth": 0, + "SpellEffect::kBeneficial": 1, + "SpellEffect::kHarmful": 2 + } }, - "m_fishtankType": { - "type": "int", - "id": 2, - "offset": 124, - "flags": 7, + "m_anyType": { + "type": "bool", + "id": 5, + "offset": 96, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1397512660 + "hash": 1809059293 }, - "m_numberOfFish": { - "type": "int", - "id": 3, - "offset": 128, - "flags": 7, + "m_globalEffect": { + "type": "bool", + "id": 6, + "offset": 97, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1143336898 + "hash": 793781233 } } }, - "1150275294": { - "name": "class FidgetBehavior", + "738789752": { + "name": "class ReqClearHatchingSlot", "bases": [ - "BehaviorInstance", + "Requirement", "PropertyClass" ], - "hash": 1150275294, + "hash": 738789752, "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", + "m_applyNOT": { + "type": "bool", "id": 0, - "offset": 104, - "flags": 39, + "offset": 72, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 + "hash": 1746328074, + "enum_options": { + "__DEFAULT": 0 + } + }, + "m_operator": { + "type": "enum Requirement::Operator", + "id": 1, + "offset": 76, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2672792317, + "enum_options": { + "ROP_AND": 0, + "ROP_OR": 1, + "__DEFAULT": "ROP_AND" + } } } }, - "797178977": { - "name": "class PetStatBlockControl", + "1576715345": { + "name": "class SharedPointer", "bases": [ "Window", "PropertyClass" ], - "hash": 797178977, + "hash": 1576715345, "properties": { "m_sName": { "type": "std::string", @@ -482702,7 +234825,7 @@ "type": "class SharedPointer", "id": 1, "offset": 112, - "flags": 65667, + "flags": 65671, "container": "Vector", "dynamic": true, "singleton": false, @@ -482897,16 +235020,50 @@ "singleton": false, "pointer": false, "hash": 3091503757 + }, + "m_Markers": { + "type": "class ControlDraw::GesturePoint", + "id": 16, + "offset": 592, + "flags": 135, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2001006042 + }, + "m_RefPoints": { + "type": "class ControlDraw::GesturePoint", + "id": 17, + "offset": 616, + "flags": 135, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1442006431 + }, + "m_LineList": { + "type": "class ControlDraw::Line", + "id": 18, + "offset": 664, + "flags": 135, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2941180014 } } }, - "1151650312": { - "name": "class DeckConfigurationWindow", + "2015042446": { + "name": "class SharedPointer", "bases": [ + "ControlButton", "Window", "PropertyClass" ], - "hash": 1151650312, + "hash": 2015042446, "properties": { "m_sName": { "type": "std::string", @@ -482942,11 +235099,9 @@ "hash": 983582334, "enum_options": { "HAS_BACK": 1, - "SCALE_CHILDREN": 2, "CAN_MOVE": 4, "CAN_SIZE": 8, "CAN_SCROLL": 16, - "FOCUS_LOCKED": 64, "CAN_FOCUS": 128, "CAN_DOCK": 32, "DO_NOT_CAPTURE_MOUSE": 256, @@ -482958,7 +235113,11 @@ "USE_ALPHA_BOUNDS": 8192, "AUTO_GROW": 16384, "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152 + "AUTO_RESIZE": 49152, + "POPDOWN_SIBLINGS": 67108864, + "DISABLE_CHILDREN": 134217728, + "HIDE_SIBLINGS": 268435456, + "POPUP_ON_HOVER": 536870912 } }, "m_Flags": { @@ -483118,1292 +235277,1246 @@ "singleton": false, "pointer": false, "hash": 3091503757 - } - } - }, - "798170352": { - "name": "class ChangeActorStateCinematicAction", - "bases": [ - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 798170352, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, + }, + "m_bToggle": { + "type": "bool", + "id": 16, + "offset": 608, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 + "hash": 2071810903 }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, + "m_bButtonDown": { + "type": "bool", + "id": 17, + "offset": 609, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2285866132 + "hash": 840041705 }, - "m_newState": { - "type": "std::string", - "id": 2, - "offset": 120, - "flags": 7, + "m_sLabel": { + "type": "std::wstring", + "id": 18, + "offset": 616, + "flags": 4194439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2153420230 - } - } - }, - "797377294": { - "name": "struct LootDialogData", - "bases": [], - "hash": 797377294, - "properties": {} - }, - "797250948": { - "name": "class ZoneGateOption*", - "bases": [ - "ServiceOptionBase", - "PropertyClass" - ], - "hash": 797250948, - "properties": { - "m_serviceName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, + "hash": 2207009163 + }, + "m_labelOffset": { + "type": "class Rect", + "id": 19, + "offset": 832, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2206028813 + "hash": 1990646723 }, - "m_iconKey": { - "type": "std::string", - "id": 1, - "offset": 168, - "flags": 31, + "m_pButton": { + "type": "class SharedPointer", + "id": 20, + "offset": 656, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1543855875 + }, + "m_HotKey": { + "type": "unsigned int", + "id": 21, + "offset": 672, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2457138637 + "hash": 1631553409 }, - "m_displayKey": { - "type": "std::string", - "id": 2, - "offset": 104, - "flags": 31, + "m_Color": { + "type": "class Color", + "id": 22, + "offset": 676, + "flags": 262279, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3023276954 + "hash": 1753714077 }, - "m_serviceIndex": { - "type": "unsigned int", - "id": 3, - "offset": 204, - "flags": 31, + "m_bCursorOver": { + "type": "bool", + "id": 23, + "offset": 689, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2103126710 + "hash": 283981103 }, - "m_forceInteract": { + "m_bAbortWhenCursorNotOver": { "type": "bool", - "id": 4, - "offset": 200, - "flags": 31, + "id": 24, + "offset": 706, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1705789564 + "hash": 325405258 + }, + "m_bHotKeyDown": { + "type": "bool", + "id": 25, + "offset": 680, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 616989185 + }, + "m_fTime": { + "type": "float", + "id": 26, + "offset": 684, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 883746156 + }, + "m_bGreyed": { + "type": "bool", + "id": 27, + "offset": 688, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1566556053 + }, + "m_fMaxScale": { + "type": "float", + "id": 28, + "offset": 692, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2070186635 + }, + "m_fScaleSpeed": { + "type": "float", + "id": 29, + "offset": 696, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1457135702 + }, + "m_bUseDropShadow": { + "type": "bool", + "id": 30, + "offset": 704, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 93063037 + }, + "m_bUseOutline": { + "type": "bool", + "id": 31, + "offset": 705, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 744292994 + }, + "m_pGreyedState": { + "type": "class SharedPointer", + "id": 32, + "offset": 768, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2703352263 + }, + "m_pNormalState": { + "type": "class SharedPointer", + "id": 33, + "offset": 752, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1887909808 + }, + "m_pHighlightedState": { + "type": "class SharedPointer", + "id": 34, + "offset": 784, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2200177608 + }, + "m_pSelectedState": { + "type": "class SharedPointer", + "id": 35, + "offset": 800, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2266776432 + }, + "m_pDepressedState": { + "type": "class SharedPointer", + "id": 36, + "offset": 816, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1878185798 + }, + "m_bUp": { + "type": "bool", + "id": 37, + "offset": 880, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 269510906 } } }, - "1151880678": { - "name": "class ClientInfractionMessageBox*", + "1145215808": { + "name": "class SharedPointer", "bases": [ - "InfractionMessageBox", - "InfractionPenalty", "PropertyClass" ], - "hash": 1151880678, + "hash": 1145215808, "properties": { - "m_internalID": { - "type": "unsigned int", + "m_playerOID": { + "type": "gid", "id": 0, - "offset": 72, + "offset": 88, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1854540375 + "hash": 578546081 }, - "m_categoryID": { - "type": "unsigned int", + "m_currentTerrain": { + "type": "enum PetDerbyTrackTerrain", "id": 1, - "offset": 76, - "flags": 31, + "offset": 100, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1382795736 + "hash": 3426350446, + "enum_options": { + "PDTT_Cobblestone": 0, + "PDTT_Water": 1, + "PDTT_Grass": 2, + "PDTT_Clay": 3, + "PDTT_Dirt": 4, + "PDTT_Mud": 5 + } }, - "m_removeAtPointValue": { - "type": "float", + "m_currentLane": { + "type": "int", "id": 2, - "offset": 80, + "offset": 104, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2112196961 + "hash": 1255984189 }, - "m_expireTime": { + "m_currentLap": { "type": "unsigned int", "id": 3, - "offset": 84, + "offset": 120, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1836304873 + "hash": 2006580429 }, - "m_titleKey": { - "type": "std::string", + "m_indexIntoArray": { + "type": "unsigned char", "id": 4, - "offset": 88, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3096106918 - }, - "m_messageKey": { - "type": "std::string", - "id": 5, - "offset": 120, + "offset": 96, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3561518217 + "hash": 1554314337 } } }, - "1151683121": { - "name": "class PetSnackItemTemplate", + "1576479087": { + "name": "class StitchLeaderboard", "bases": [ - "WizItemTemplate", - "ItemTemplate", - "GameObjectTemplate", - "CoreTemplate", "PropertyClass" ], - "hash": 1151683121, + "hash": 1576479087, "properties": { - "m_behaviors": { - "type": "class BehaviorTemplate*", + "m_stitchLeaderboardList": { + "type": "gid", "id": 0, "offset": 72, "flags": 7, - "container": "Vector", + "container": "List", "dynamic": true, "singleton": false, - "pointer": true, - "hash": 1197808594 + "pointer": false, + "hash": 1311714008 }, - "m_objectName": { - "type": "std::string", + "m_type": { + "type": "unsigned int", "id": 1, - "offset": 96, + "offset": 88, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2154940147 + "hash": 431304463 + } + } + }, + "1144712311": { + "name": "class RecipeWindow::RecipeItem*", + "bases": [ + "ControlCheckBox", + "ControlButton", + "Window", + "PropertyClass" + ], + "hash": 1144712311, + "properties": { + "m_sName": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306437263 }, - "m_templateID": { + "m_Children": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621225959 + }, + "m_Style": { "type": "unsigned int", "id": 2, - "offset": 128, - "flags": 16777223, + "offset": 152, + "flags": 1048583, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1286746870 + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152, + "EFFECT_SCALE": 67108864, + "LOCK_ICON_SIZE": 33554432, + "LEFT_TEXT": 536870912, + "NO_FIT_TEXT": 1073741824, + "CHECKBOX_TEXTOVERIMAGE": 16777216 + } }, - "m_visualID": { + "m_Flags": { "type": "unsigned int", "id": 3, - "offset": 132, - "flags": 7, + "offset": 156, + "flags": 1048583, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1118778894 + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } }, - "m_adjectiveList": { - "type": "std::string", + "m_Window": { + "type": "class Rect", "id": 4, - "offset": 248, - "flags": 7, - "container": "List", - "dynamic": true, + "offset": 160, + "flags": 135, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 3195213318 + "hash": 3105139380 }, - "m_exemptFromAOI": { - "type": "bool", + "m_fTargetAlpha": { + "type": "float", "id": 5, - "offset": 240, - "flags": 7, + "offset": 212, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1457879059 + "hash": 1809129834 }, - "m_displayName": { - "type": "std::string", + "m_fDisabledAlpha": { + "type": "float", "id": 6, - "offset": 168, - "flags": 8388615, + "offset": 216, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2446900370 + "hash": 1389987675 }, - "m_description": { - "type": "std::string", + "m_fAlpha": { + "type": "float", "id": 7, - "offset": 136, - "flags": 8388615, + "offset": 208, + "flags": 65671, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1649374815 + "hash": 482130755 }, - "m_nObjectType": { - "type": "enum ObjectType", + "m_pWindowStyle": { + "type": "class SharedPointer", "id": 8, - "offset": 200, - "flags": 2097159, + "offset": 232, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 2118905880, - "enum_options": { - "OT_UNDEFINED": 0, - "OT_PLAYER": 1, - "OT_NPC": 2, - "OT_PROP": 3, - "OT_OBJECT": 4, - "OT_HOUSE": 5, - "OT_KEY": 6, - "OT_OLD_KEY": 7, - "OT_DEED": 8, - "OT_MAIL": 9, - "OT_RECIPE": 17, - "OT_EQUIP_HEAD": 10, - "OT_EQUIP_CHEST": 11, - "OT_EQUIP_LEGS": 12, - "OT_EQUIP_HANDS": 13, - "OT_EQUIP_FINGER": 14, - "OT_EQUIP_FEET": 15, - "OT_EQUIP_EAR": 16, - "OT_BUILDING_BLOCK": 18, - "OT_BUILDING_BLOCK_SOLID": 19, - "OT_GOLF": 20, - "OT_DOOR": 21, - "OT_PET": 22, - "OT_FABRIC": 23, - "OT_WINDOW": 24, - "OT_ROOF": 25, - "OT_HORSE": 26, - "OT_STRUCTURE": 27, - "OT_HOUSING_TEXTURE": 28, - "OT_PLANT": 29 - } + "pointer": true, + "hash": 3623628394 }, - "m_sIcon": { - "type": "std::string", + "m_sHelp": { + "type": "std::wstring", "id": 9, - "offset": 208, - "flags": 131079, + "offset": 248, + "flags": 4194439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2306259831 + "hash": 2102211316 }, - "m_equipRequirements": { - "type": "class RequirementList*", + "m_sScript": { + "type": "std::string", "id": 10, - "offset": 280, - "flags": 7, + "offset": 352, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2762617226 + "pointer": false, + "hash": 1846695875 }, - "m_purchaseRequirements": { - "type": "class RequirementList*", + "m_Offset": { + "type": "class Point", "id": 11, - "offset": 288, - "flags": 7, + "offset": 192, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3174641793 + "pointer": false, + "hash": 3389835433 }, - "m_equipEffects": { - "type": "class GameEffectInfo*", + "m_Scale": { + "type": "class Point", "id": 12, - "offset": 296, - "flags": 7, - "container": "List", - "dynamic": true, + "offset": 200, + "flags": 135, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 836628351 + "pointer": false, + "hash": 2547159940 }, - "m_baseCost": { - "type": "float", + "m_sTip": { + "type": "std::wstring", "id": 13, - "offset": 312, - "flags": 7, + "offset": 392, + "flags": 4194439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1565352651 + "hash": 1513510520 }, - "m_creditsCost": { - "type": "float", + "m_BubbleList": { + "type": "class WindowBubble", "id": 14, - "offset": 320, - "flags": 7, - "container": "Static", - "dynamic": false, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 805514974 + "hash": 2587533771 }, - "m_avatarInfo": { - "type": "class AvatarItemInfoBase*", + "m_ParentOffset": { + "type": "class Rect", "id": 15, - "offset": 328, - "flags": 7, + "offset": 176, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2627321299 + "pointer": false, + "hash": 3091503757 }, - "m_avatarFlags": { - "type": "std::string", + "m_bToggle": { + "type": "bool", "id": 16, - "offset": 336, - "flags": 7, - "container": "List", - "dynamic": true, + "offset": 608, + "flags": 135, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 2347762759 + "hash": 2071810903 }, - "m_itemLimit": { - "type": "int", + "m_bButtonDown": { + "type": "bool", "id": 17, - "offset": 316, - "flags": 7, + "offset": 609, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1799746856 + "hash": 840041705 }, - "m_holidayFlag": { - "type": "std::string", + "m_sLabel": { + "type": "std::wstring", "id": 18, - "offset": 352, - "flags": 7, + "offset": 616, + "flags": 4194439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2994795359 + "hash": 2207009163 }, - "m_itemSetBonusTemplateID": { - "type": "unsigned int", + "m_labelOffset": { + "type": "class Rect", "id": 19, - "offset": 384, - "flags": 33554439, + "offset": 832, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1316835672 + "hash": 1990646723 }, - "m_numPrimaryColors": { - "type": "int", + "m_pButton": { + "type": "class SharedPointer", "id": 20, - "offset": 428, - "flags": 7, + "offset": 656, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 981103872 + "pointer": true, + "hash": 1543855875 }, - "m_numSecondaryColors": { - "type": "int", + "m_HotKey": { + "type": "unsigned int", "id": 21, - "offset": 432, - "flags": 7, + "offset": 672, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1310416868 + "hash": 1631553409 }, - "m_numPatterns": { - "type": "int", + "m_Color": { + "type": "class Color", "id": 22, - "offset": 436, - "flags": 7, + "offset": 676, + "flags": 262279, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 953162171 + "hash": 1753714077 }, - "m_school": { - "type": "std::string", + "m_bCursorOver": { + "type": "bool", "id": 23, - "offset": 392, - "flags": 7, + "offset": 689, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2438566051 + "hash": 283981103 }, - "m_arenaPointCost": { - "type": "int", + "m_bAbortWhenCursorNotOver": { + "type": "bool", "id": 24, - "offset": 440, - "flags": 7, + "offset": 706, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1819621796 + "hash": 325405258 }, - "m_pvpCurrencyCost": { - "type": "int", + "m_bHotKeyDown": { + "type": "bool", "id": 25, - "offset": 444, - "flags": 7, + "offset": 680, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 645595444 + "hash": 616989185 }, - "m_pvpTourneyCurrencyCost": { - "type": "int", + "m_fTime": { + "type": "float", "id": 26, - "offset": 448, - "flags": 7, + "offset": 684, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 517874954 + "hash": 883746156 }, - "m_rank": { - "type": "int", + "m_bGreyed": { + "type": "bool", "id": 27, - "offset": 424, - "flags": 7, + "offset": 688, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 219803942 + "hash": 1566556053 }, - "m_boyIconIndex": { - "type": "int", + "m_fMaxScale": { + "type": "float", "id": 28, - "offset": 452, - "flags": 7, + "offset": 692, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 802140453 + "hash": 2070186635 }, - "m_girlIconIndex": { - "type": "int", + "m_fScaleSpeed": { + "type": "float", "id": 29, - "offset": 456, - "flags": 7, + "offset": 696, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 832706793 + "hash": 1457135702 }, - "m_leashOffsetOverride": { - "type": "class SharedPointer", + "m_bUseDropShadow": { + "type": "bool", "id": 30, - "offset": 464, - "flags": 7, + "offset": 704, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1692586788 + "pointer": false, + "hash": 93063037 }, - "m_rarity": { - "type": "enum RarityType", + "m_bUseOutline": { + "type": "bool", "id": 31, - "offset": 460, - "flags": 2097159, + "offset": 705, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2253792108, - "enum_options": { - "RT_COMMON": 0, - "RT_UNCOMMON": 1, - "RT_RARE": 2, - "RT_ULTRARARE": 3, - "RT_EPIC": 4 - } + "hash": 744292994 }, - "m_iconIndex": { - "type": "int", + "m_pGreyedState": { + "type": "class SharedPointer", "id": 32, - "offset": 480, - "flags": 7, + "offset": 768, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1053730811 + "pointer": true, + "hash": 2703352263 }, - "m_imageName": { - "type": "std::string", + "m_pNormalState": { + "type": "class SharedPointer", "id": 33, - "offset": 488, - "flags": 131079, + "offset": 752, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 2391520543 + "pointer": true, + "hash": 1887909808 }, - "m_statModifierSet": { - "type": "class PetStatModificationSet", + "m_pHighlightedState": { + "type": "class SharedPointer", "id": 34, - "offset": 520, - "flags": 7, + "offset": 784, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 2182942670 - } - } - }, - "1151683097": { - "name": "class PetSnackItemTemplate*", - "bases": [ - "WizItemTemplate", - "ItemTemplate", - "GameObjectTemplate", - "CoreTemplate", - "PropertyClass" - ], - "hash": 1151683097, - "properties": { - "m_behaviors": { - "type": "class BehaviorTemplate*", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, "pointer": true, - "hash": 1197808594 + "hash": 2200177608 }, - "m_objectName": { - "type": "std::string", - "id": 1, - "offset": 96, - "flags": 7, + "m_pSelectedState": { + "type": "class SharedPointer", + "id": 35, + "offset": 800, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 2154940147 + "pointer": true, + "hash": 2266776432 }, - "m_templateID": { - "type": "unsigned int", - "id": 2, - "offset": 128, - "flags": 16777223, + "m_pDepressedState": { + "type": "class SharedPointer", + "id": 36, + "offset": 816, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1286746870 + "pointer": true, + "hash": 1878185798 }, - "m_visualID": { - "type": "unsigned int", - "id": 3, - "offset": 132, - "flags": 7, + "m_nGroupID": { + "type": "int", + "id": 37, + "offset": 880, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1118778894 - }, - "m_adjectiveList": { - "type": "std::string", - "id": 4, - "offset": 248, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 3195213318 + "hash": 403966850 }, - "m_exemptFromAOI": { + "m_bChecked": { "type": "bool", - "id": 5, - "offset": 240, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1457879059 - }, - "m_displayName": { - "type": "std::string", - "id": 6, - "offset": 168, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2446900370 - }, - "m_description": { - "type": "std::string", - "id": 7, - "offset": 136, - "flags": 8388615, + "id": 38, + "offset": 884, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1649374815 + "hash": 958955100 }, - "m_nObjectType": { - "type": "enum ObjectType", - "id": 8, - "offset": 200, - "flags": 2097159, + "m_pCheckedState": { + "type": "class SharedPointer", + "id": 39, + "offset": 888, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 2118905880, - "enum_options": { - "OT_UNDEFINED": 0, - "OT_PLAYER": 1, - "OT_NPC": 2, - "OT_PROP": 3, - "OT_OBJECT": 4, - "OT_HOUSE": 5, - "OT_KEY": 6, - "OT_OLD_KEY": 7, - "OT_DEED": 8, - "OT_MAIL": 9, - "OT_RECIPE": 17, - "OT_EQUIP_HEAD": 10, - "OT_EQUIP_CHEST": 11, - "OT_EQUIP_LEGS": 12, - "OT_EQUIP_HANDS": 13, - "OT_EQUIP_FINGER": 14, - "OT_EQUIP_FEET": 15, - "OT_EQUIP_EAR": 16, - "OT_BUILDING_BLOCK": 18, - "OT_BUILDING_BLOCK_SOLID": 19, - "OT_GOLF": 20, - "OT_DOOR": 21, - "OT_PET": 22, - "OT_FABRIC": 23, - "OT_WINDOW": 24, - "OT_ROOF": 25, - "OT_HORSE": 26, - "OT_STRUCTURE": 27, - "OT_HOUSING_TEXTURE": 28, - "OT_PLANT": 29 - } + "pointer": true, + "hash": 1210539694 }, - "m_sIcon": { - "type": "std::string", - "id": 9, - "offset": 208, - "flags": 131079, + "m_pCheckedGreyedState": { + "type": "class SharedPointer", + "id": 40, + "offset": 904, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 2306259831 + "pointer": true, + "hash": 2702030126 }, - "m_equipRequirements": { - "type": "class RequirementList*", - "id": 10, - "offset": 280, - "flags": 7, + "m_pCheckedHighlightedState": { + "type": "class SharedPointer", + "id": 41, + "offset": 920, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": true, - "hash": 2762617226 + "hash": 1320097679 }, - "m_purchaseRequirements": { - "type": "class RequirementList*", - "id": 11, - "offset": 288, - "flags": 7, + "m_pCheckedDepressedState": { + "type": "class SharedPointer", + "id": 42, + "offset": 936, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": true, - "hash": 3174641793 - }, - "m_equipEffects": { - "type": "class GameEffectInfo*", - "id": 12, - "offset": 296, + "hash": 1609188685 + } + } + }, + "295403604": { + "name": "class DailyQuestRewardData*", + "bases": [ + "PropertyClass" + ], + "hash": 295403604, + "properties": { + "m_dailyQuestRewardList": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, "flags": 7, "container": "List", "dynamic": true, "singleton": false, "pointer": true, - "hash": 836628351 + "hash": 1109520555 }, - "m_baseCost": { - "type": "float", - "id": 13, - "offset": 312, + "m_dailyPvPRewardList": { + "type": "class SharedPointer", + "id": 1, + "offset": 88, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 1565352651 + "pointer": true, + "hash": 952967791 }, - "m_creditsCost": { - "type": "float", - "id": 14, - "offset": 320, + "m_circleRegistryList": { + "type": "std::string", + "id": 2, + "offset": 104, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 805514974 - }, - "m_avatarInfo": { - "type": "class AvatarItemInfoBase*", - "id": 15, - "offset": 328, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2627321299 + "hash": 2265601986 }, - "m_avatarFlags": { + "m_questRewardsList": { "type": "std::string", - "id": 16, - "offset": 336, + "id": 3, + "offset": 120, "flags": 7, "container": "List", "dynamic": true, "singleton": false, "pointer": false, - "hash": 2347762759 - }, - "m_itemLimit": { - "type": "int", - "id": 17, - "offset": 316, - "flags": 7, + "hash": 2202355553 + } + } + }, + "739387287": { + "name": "class DeckListControl", + "bases": [ + "Window", + "PropertyClass" + ], + "hash": 739387287, + "properties": { + "m_sName": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1799746856 + "hash": 2306437263 }, - "m_holidayFlag": { - "type": "std::string", - "id": 18, - "offset": 352, - "flags": 7, + "m_Children": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621225959 + }, + "m_Style": { + "type": "unsigned int", + "id": 2, + "offset": 152, + "flags": 1048583, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2994795359 + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152, + "DLC_SPELLTIP": 16777216, + "DLC_SELECT": 33554432 + } }, - "m_itemSetBonusTemplateID": { + "m_Flags": { "type": "unsigned int", - "id": 19, - "offset": 384, - "flags": 33554439, + "id": 3, + "offset": 156, + "flags": 1048583, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1316835672 + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } }, - "m_numPrimaryColors": { - "type": "int", - "id": 20, - "offset": 428, - "flags": 7, + "m_Window": { + "type": "class Rect", + "id": 4, + "offset": 160, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 981103872 + "hash": 3105139380 }, - "m_numSecondaryColors": { - "type": "int", - "id": 21, - "offset": 432, - "flags": 7, + "m_fTargetAlpha": { + "type": "float", + "id": 5, + "offset": 212, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1310416868 + "hash": 1809129834 }, - "m_numPatterns": { - "type": "int", - "id": 22, - "offset": 436, - "flags": 7, + "m_fDisabledAlpha": { + "type": "float", + "id": 6, + "offset": 216, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 953162171 + "hash": 1389987675 }, - "m_school": { - "type": "std::string", - "id": 23, - "offset": 392, - "flags": 7, + "m_fAlpha": { + "type": "float", + "id": 7, + "offset": 208, + "flags": 65671, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2438566051 + "hash": 482130755 }, - "m_arenaPointCost": { - "type": "int", - "id": 24, - "offset": 440, - "flags": 7, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1819621796 + "pointer": true, + "hash": 3623628394 }, - "m_pvpCurrencyCost": { - "type": "int", - "id": 25, - "offset": 444, - "flags": 7, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 645595444 + "hash": 2102211316 }, - "m_pvpTourneyCurrencyCost": { - "type": "int", - "id": 26, - "offset": 448, - "flags": 7, + "m_sScript": { + "type": "std::string", + "id": 10, + "offset": 352, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 517874954 + "hash": 1846695875 }, - "m_rank": { - "type": "int", - "id": 27, - "offset": 424, - "flags": 7, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 219803942 + "hash": 3389835433 }, - "m_boyIconIndex": { - "type": "int", - "id": 28, - "offset": 452, - "flags": 7, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 802140453 + "hash": 2547159940 }, - "m_girlIconIndex": { - "type": "int", - "id": 29, - "offset": 456, - "flags": 7, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 832706793 + "hash": 1513510520 }, - "m_leashOffsetOverride": { - "type": "class SharedPointer", - "id": 30, - "offset": 464, - "flags": 7, - "container": "Static", - "dynamic": false, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": true, - "hash": 1692586788 + "pointer": false, + "hash": 2587533771 }, - "m_rarity": { - "type": "enum RarityType", - "id": 31, - "offset": 460, - "flags": 2097159, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2253792108, - "enum_options": { - "RT_COMMON": 0, - "RT_UNCOMMON": 1, - "RT_RARE": 2, - "RT_ULTRARARE": 3, - "RT_EPIC": 4 - } + "hash": 3091503757 }, - "m_iconIndex": { - "type": "int", - "id": 32, - "offset": 480, + "m_cardSize": { + "type": "class Size", + "id": 16, + "offset": 676, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1053730811 + "hash": 1135567057 }, - "m_imageName": { - "type": "std::string", - "id": 33, - "offset": 488, - "flags": 131079, + "m_spacing": { + "type": "int", + "id": 17, + "offset": 684, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2391520543 + "hash": 1481011679 }, - "m_statModifierSet": { - "type": "class PetStatModificationSet", - "id": 34, - "offset": 520, + "m_verticalSpacingAdjust": { + "type": "int", + "id": 18, + "offset": 688, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2182942670 - } - } - }, - "797823875": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 797823875, - "properties": { - "m_templateID": { - "type": "unsigned int", - "id": 0, - "offset": 72, + "hash": 2069000644 + }, + "m_slotImage": { + "type": "class SharedPointer", + "id": 19, + "offset": 616, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1286746870 + "pointer": true, + "hash": 2088856988 }, - "m_statusResult": { + "m_treasureFrame": { "type": "int", - "id": 1, - "offset": 76, + "id": 20, + "offset": 632, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1273560413 + "hash": 178393840 } } }, - "1151814478": { - "name": "class DerbyAddSpeedBoost*", + "1144520521": { + "name": "class SharedPointer", "bases": [ - "DerbyEffect", + "WindowAnimation", "PropertyClass" ], - "hash": 1151814478, + "hash": 1144520521, "properties": { - "m_buffType": { - "type": "enum DerbyTalentBuffType", + "m_bUseDeepCopy": { + "type": "bool", "id": 0, - "offset": 92, - "flags": 2097183, + "offset": 72, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1149251982, - "enum_options": { - "Buff": 0, - "Debuff": 1, - "Neither": 2 - } + "hash": 433380635 }, - "m_kTarget": { - "type": "enum DerbyTargetType", + "m_targetLocation": { + "type": "class Vector3D", "id": 1, - "offset": 96, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1807803351, - "enum_options": { - "kTargetInFront": 0, - "kTargetBehind": 1, - "kTargetFirst": 2, - "kTargetSelf": 3, - "kTargetAll": 4, - "kTargetLast": 5 - } - }, - "m_nDuration": { - "type": "int", - "id": 2, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1110167982 - }, - "m_effectID": { - "type": "unsigned int", - "id": 3, - "offset": 88, - "flags": 24, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2347630439 - }, - "m_imageFilename": { - "type": "std::string", - "id": 4, - "offset": 112, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2813328063 - }, - "m_iconIndex": { - "type": "unsigned int", - "id": 5, - "offset": 144, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1265133262 - }, - "m_soundOnActivate": { - "type": "std::string", - "id": 6, - "offset": 152, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1956929714 - }, - "m_soundOnTarget": { - "type": "std::string", - "id": 7, - "offset": 184, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3444214056 - }, - "m_targetParticleEffect": { - "type": "std::string", - "id": 8, - "offset": 216, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3048234723 - }, - "m_overheadMessage": { - "type": "std::string", - "id": 9, - "offset": 248, - "flags": 8388639, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1701018190 - }, - "m_requirements": { - "type": "class RequirementList", - "id": 10, - "offset": 280, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2840988582 - }, - "m_nTimesToAdd": { - "type": "int", - "id": 11, - "offset": 376, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1414275638 - } - } - }, - "798198570": { - "name": "class UnPolymorphCinematicAction*", - "bases": [ - "CinematicAction", - "PropertyClass" - ], - "hash": 798198570, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, + "offset": 80, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 + "hash": 2653859938 } } }, - "798198564": { - "name": "class UnPolymorphCinematicAction", + "2015690633": { + "name": "class SkyboxInfo*", "bases": [ - "CinematicAction", "PropertyClass" ], - "hash": 798198564, + "hash": 2015690633, "properties": { - "m_timeOffset": { - "type": "float", + "m_skyLayerCount": { + "type": "int", "id": 0, "offset": 72, "flags": 7, @@ -484411,386 +236524,389 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 - } - } - }, - "1152074325": { - "name": "class HousingGamePowerUpLocations*", - "bases": [ - "PropertyClass" - ], - "hash": 1152074325, - "properties": { - "m_powerupLocations": { - "type": "class Vector3D", - "id": 0, - "offset": 72, + "hash": 816414615 + }, + "m_skyLayerName": { + "type": "std::string", + "id": 1, + "offset": 80, "flags": 7, - "container": "List", + "container": "Vector", "dynamic": true, "singleton": false, "pointer": false, - "hash": 3618004416 + "hash": 2824410256 }, - "m_numberOfNodes": { - "type": "int", - "id": 1, - "offset": 88, + "m_clientTag": { + "type": "std::string", + "id": 2, + "offset": 104, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1229751665 + "hash": 3409856790 } } }, - "1151880684": { - "name": "class ClientInfractionMessageBox", + "739220943": { + "name": "class CSRSpellList", "bases": [ - "InfractionMessageBox", - "InfractionPenalty", + "Window", "PropertyClass" ], - "hash": 1151880684, + "hash": 739220943, "properties": { - "m_internalID": { - "type": "unsigned int", + "m_sName": { + "type": "std::string", "id": 0, - "offset": 72, - "flags": 31, + "offset": 80, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1854540375 + "hash": 2306437263 }, - "m_categoryID": { - "type": "unsigned int", + "m_Children": { + "type": "class SharedPointer", "id": 1, - "offset": 76, - "flags": 31, - "container": "Static", - "dynamic": false, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 1382795736 + "pointer": true, + "hash": 2621225959 }, - "m_removeAtPointValue": { - "type": "float", + "m_Style": { + "type": "unsigned int", "id": 2, - "offset": 80, - "flags": 31, + "offset": 152, + "flags": 1048583, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2112196961 + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "SCALE_CHILDREN": 2, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "FOCUS_LOCKED": 64, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152 + } }, - "m_expireTime": { + "m_Flags": { "type": "unsigned int", "id": 3, - "offset": 84, - "flags": 31, + "offset": 156, + "flags": 1048583, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1836304873 + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } }, - "m_titleKey": { - "type": "std::string", + "m_Window": { + "type": "class Rect", "id": 4, - "offset": 88, - "flags": 31, + "offset": 160, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3096106918 + "hash": 3105139380 }, - "m_messageKey": { - "type": "std::string", + "m_fTargetAlpha": { + "type": "float", "id": 5, - "offset": 120, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3561518217 - } - } - }, - "798314987": { - "name": "class SharedPointer", - "bases": [ - "ZoneTokenBehavior", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 798314987, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, + "offset": 212, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 - }, - "m_tokens": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 27, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621026866 - } - } - }, - "1152074517": { - "name": "class HousingGamePowerUpLocations", - "bases": [ - "PropertyClass" - ], - "hash": 1152074517, - "properties": { - "m_powerupLocations": { - "type": "class Vector3D", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 3618004416 + "hash": 1809129834 }, - "m_numberOfNodes": { - "type": "int", - "id": 1, - "offset": 88, - "flags": 7, + "m_fDisabledAlpha": { + "type": "float", + "id": 6, + "offset": 216, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1229751665 - } - } - }, - "825241061": { - "name": "class WizTrainingOption*", - "bases": [ - "ServiceOptionBase", - "PropertyClass" - ], - "hash": 825241061, - "properties": { - "m_serviceName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, + "pointer": false, + "hash": 1389987675 + }, + "m_fAlpha": { + "type": "float", + "id": 7, + "offset": 208, + "flags": 65671, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2206028813 + "hash": 482130755 }, - "m_iconKey": { - "type": "std::string", - "id": 1, - "offset": 168, - "flags": 31, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3623628394 + }, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2457138637 + "hash": 2102211316 }, - "m_displayKey": { + "m_sScript": { "type": "std::string", - "id": 2, - "offset": 104, - "flags": 31, + "id": 10, + "offset": 352, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3023276954 + "hash": 1846695875 }, - "m_serviceIndex": { - "type": "unsigned int", - "id": 3, - "offset": 204, - "flags": 31, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2103126710 + "hash": 3389835433 }, - "m_forceInteract": { - "type": "bool", - "id": 4, + "m_Scale": { + "type": "class Point", + "id": 12, "offset": 200, - "flags": 31, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1705789564 + "hash": 2547159940 }, - "m_trainingIndex": { - "type": "int", - "id": 5, - "offset": 216, - "flags": 31, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 217389422 + "hash": 1513510520 }, - "m_trainingCost": { - "type": "int", - "id": 6, - "offset": 220, - "flags": 31, - "container": "Static", - "dynamic": false, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 982588239 + "hash": 2587533771 }, - "m_spellName": { - "type": "std::string", - "id": 7, - "offset": 264, - "flags": 31, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2688485244 - }, - "m_bCanTrain": { - "type": "bool", - "id": 8, - "offset": 228, - "flags": 31, + "hash": 3091503757 + } + } + }, + "1578349544": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1578349544, + "properties": { + "m_animationName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1382854949 + "hash": 3393414044 }, - "m_requiredLevel": { - "type": "int", - "id": 9, - "offset": 224, - "flags": 31, + "m_time": { + "type": "float", + "id": 1, + "offset": 104, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1148041971 + "hash": 310085638 }, - "m_requirements": { - "type": "class SharedPointer", - "id": 10, - "offset": 232, - "flags": 31, + "m_actionType": { + "type": "std::string", + "id": 2, + "offset": 112, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3043523229 + "pointer": false, + "hash": 3328872763 }, - "m_failedRequirement": { - "type": "class SharedPointer", - "id": 11, - "offset": 248, - "flags": 31, + "m_surfaceType": { + "type": "std::string", + "id": 3, + "offset": 144, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2322583945 + "pointer": false, + "hash": 2553995974 } } }, - "807923400": { - "name": "class BattlegroundPlayerStatsManager", + "2015826661": { + "name": "class DiegoCombatObserver*", "bases": [ + "CombatObserver", "PropertyClass" ], - "hash": 807923400, + "hash": 2015826661, "properties": { - "m_statsList": { - "type": "class SharedPointer", + "m_playerStats": { + "type": "class SharedPointer", "id": 0, - "offset": 72, + "offset": 88, "flags": 7, "container": "List", "dynamic": true, "singleton": false, "pointer": true, - "hash": 2999855587 - }, - "m_poi": { - "type": "class SharedPointer", - "id": 1, - "offset": 88, - "flags": 7, + "hash": 873719258 + } + } + }, + "296035520": { + "name": "class SharedPointer", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 296035520, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1342603341 + "pointer": false, + "hash": 223437287 } } }, - "804398852": { - "name": "class SharedPointer", + "1144799386": { + "name": "class MadlibBlock*", "bases": [ "PropertyClass" ], - "hash": 804398852, + "hash": 1144799386, "properties": { - "m_effectName": { - "type": "std::string", + "m_madlibs": { + "type": "class SharedPointer", "id": 0, "offset": 72, "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1912290195 + }, + "m_blockToken": { + "type": "std::string", + "id": 1, + "offset": 96, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2029161513 + "hash": 1821505575 } } }, - "1155478125": { - "name": "class ClientPlaySoundCinematicAction*", + "1577466161": { + "name": "class SharedPointer", "bases": [ - "PlaySoundCinematicAction", - "CinematicAction", + "PathBehaviorTemplate::Action", "PropertyClass" ], - "hash": 1155478125, + "hash": 1577466161, "properties": { - "m_timeOffset": { - "type": "float", + "m_nPathID": { + "type": "gid", "id": 0, "offset": 72, "flags": 7, @@ -484798,124 +236914,126 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 + "hash": 214382368 }, - "m_sound": { - "type": "std::string", + "m_nNodeID": { + "type": "int", "id": 1, "offset": 80, - "flags": 131079, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2307644996 - }, - "m_useClientLocation": { - "type": "bool", - "id": 2, - "offset": 100, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 98585784 - }, - "m_soundType": { - "type": "enum PlaySoundCinematicAction::SoundType", - "id": 3, - "offset": 96, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 868075053, + "hash": 152152635, "enum_options": { - "kSigil": 0, - "kGotHit": 1, - "kDeath": 2, - "kChatter": 4, - "__DEFAULT": "kSigil" + "__DEFAULT": 4294967295 } }, - "m_streamSound": { - "type": "bool", - "id": 4, - "offset": 101, - "flags": 263, + "m_nPriority": { + "type": "int", + "id": 2, + "offset": 84, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1693179368 + "hash": 1515251530, + "enum_options": { + "__DEFAULT": 100 + } }, - "m_playMusic": { - "type": "bool", - "id": 5, - "offset": 102, - "flags": 263, + "m_nChance": { + "type": "int", + "id": 3, + "offset": 88, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 552729674 - }, - "m_fadeDuration": { - "type": "float", - "id": 6, - "offset": 104, + "hash": 1860748394, + "enum_options": { + "__DEFAULT": 50 + } + } + } + }, + "295881622": { + "name": "class CountdownBehaviorTemplate", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 295881622, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1402536557 + "hash": 3130754092 } } }, - "801183007": { - "name": "class UntargetableCinematicAction*", + "740052928": { + "name": "class WizItemQuestData", "bases": [ - "ActorCinematicAction", - "CinematicAction", "PropertyClass" ], - "hash": 801183007, + "hash": 740052928, "properties": { - "m_timeOffset": { - "type": "float", + "m_sQuestTitle": { + "type": "std::string", "id": 0, "offset": 72, - "flags": 7, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 + "hash": 2282339874 }, - "m_actor": { + "m_sFirstGoalLocation": { "type": "std::string", "id": 1, - "offset": 80, - "flags": 7, + "offset": 104, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2285866132 + "hash": 2049077170 + }, + "m_sSchoolFocus": { + "type": "std::string", + "id": 2, + "offset": 136, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2205763286 } } }, - "1154096504": { - "name": "class PhysicsBehavior", + "1577249055": { + "name": "class SharedPointer", "bases": [ - "CollisionBehavior", + "ConicalSoundBehavior", + "PositionalSoundBehavior", + "SoundBehavior", + "AreaBehavior", "BehaviorInstance", "PropertyClass" ], - "hash": 1154096504, + "hash": 1577249055, "properties": { "m_behaviorTemplateNameID": { "type": "unsigned int", @@ -484928,281 +237046,212 @@ "pointer": false, "hash": 223437287 }, - "m_nHolderGID": { - "type": "gid", + "m_radius": { + "type": "float", "id": 1, - "offset": 352, - "flags": 31, + "offset": 116, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 133708664 + "hash": 989410271 }, - "m_vHoldOffset": { - "type": "class Vector3D", + "m_category": { + "type": "enum AudioCategory", "id": 2, - "offset": 360, - "flags": 31, + "offset": 124, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3766080710 + "hash": 2951251982, + "enum_options": { + "AudioCategory_Irrelevent": 0, + "AudioCategory_Accoustic": 1, + "AudioCategory_Noise": 2, + "AudioCategory_Music": 3 + } }, - "m_fHoldForce": { - "type": "float", + "m_exclusive": { + "type": "bool", "id": 3, - "offset": 372, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1792175219 - } - } - }, - "799619185": { - "name": "class ClientTimerControlCinematicAction*", - "bases": [ - "TimerControlCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 799619185, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, + "offset": 128, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 + "hash": 824383403 }, - "m_bSetVisible": { - "type": "bool", - "id": 1, - "offset": 88, + "m_playList": { + "type": "class PlayList", + "id": 4, + "offset": 176, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 471535983 + "hash": 2061221957 }, - "m_fTimeToSet": { + "m_volume": { "type": "float", - "id": 2, - "offset": 84, + "id": 5, + "offset": 304, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 661189659 + "hash": 1162855023 }, - "m_timerStrKey": { - "type": "std::string", - "id": 3, - "offset": 96, - "flags": 8388615, + "m_loopCount": { + "type": "int", + "id": 6, + "offset": 308, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3000196414 + "hash": 865634717 }, - "m_timerOp": { - "type": "enum TimerControlCinematicAction::kControlOperation", - "id": 4, - "offset": 80, - "flags": 2097159, + "m_minimumFalloff": { + "type": "float", + "id": 7, + "offset": 328, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1809610086, - "enum_options": { - "kNone": 0, - "kStartTimer": 1, - "kSetVisible": 2, - "kSetTimerString": 3, - "kSetTimeToShow": 4 - } - } - } - }, - "1154006544": { - "name": "class ClientActorDialogCinematicAction", - "bases": [ - "ActorDialogCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 1154006544, - "properties": { - "m_timeOffset": { + "hash": 355697197 + }, + "m_maximumFalloff": { "type": "float", - "id": 0, - "offset": 72, + "id": 8, + "offset": 332, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 + "hash": 2210192367 }, - "m_dialog": { - "type": "class ActorDialog*", - "id": 1, - "offset": 80, + "m_animDriven": { + "type": "bool", + "id": 9, + "offset": 392, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1310859212 + "pointer": false, + "hash": 398394720 }, - "m_activePersona": { - "type": "std::string", - "id": 2, - "offset": 88, + "m_inverted": { + "type": "bool", + "id": 10, + "offset": 397, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1972573231 - } - } - }, - "799619105": { - "name": "class ClientTimerControlCinematicAction", - "bases": [ - "TimerControlCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 799619105, - "properties": { - "m_timeOffset": { + "hash": 1034821044 + }, + "m_fInsideAngle": { "type": "float", - "id": 0, - "offset": 72, + "id": 11, + "offset": 528, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 + "hash": 1114383840 }, - "m_bSetVisible": { - "type": "bool", - "id": 1, - "offset": 88, + "m_fOutsideAngle": { + "type": "float", + "id": 12, + "offset": 532, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 471535983 + "hash": 1627152289 }, - "m_fTimeToSet": { + "m_fOutsideVolume": { "type": "float", - "id": 2, - "offset": 84, + "id": 13, + "offset": 536, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 661189659 + "hash": 90369618 }, - "m_timerStrKey": { - "type": "std::string", - "id": 3, - "offset": 96, - "flags": 8388615, + "m_fRangeScale": { + "type": "float", + "id": 14, + "offset": 540, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3000196414 + "hash": 1749294034 }, - "m_timerOp": { - "type": "enum TimerControlCinematicAction::kControlOperation", - "id": 4, - "offset": 80, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1809610086, - "enum_options": { - "kNone": 0, - "kStartTimer": 1, - "kSetVisible": 2, - "kSetTimerString": 3, - "kSetTimeToShow": 4 - } - } - } - }, - "1152801723": { - "name": "class AtticBehavior*", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1152801723, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, + "m_fAttenuationFactor": { + "type": "float", + "id": 15, + "offset": 544, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 + "hash": 273292776 }, - "m_containerGID": { - "type": "gid", - "id": 1, - "offset": 112, - "flags": 63, + "m_eAttenuationType": { + "type": "enum PositionInfoAttenuationType", + "id": 16, + "offset": 548, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 550557519 + "hash": 2427193304, + "enum_options": { + "Standard": 0, + "Unit Range Power": 1 + } }, - "m_atticItemCount": { - "type": "int", - "id": 2, - "offset": 120, - "flags": 63, + "m_animationName": { + "type": "std::string", + "id": 17, + "offset": 648, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 184605671 + "hash": 3393414044 } } }, - "1152436744": { - "name": "class DeckConfigurationWindow*", + "739390359": { + "name": "class DeckListControl*", "bases": [ "Window", "PropertyClass" ], - "hash": 1152436744, + "hash": 739390359, "properties": { "m_sName": { "type": "std::string", @@ -485238,11 +237287,9 @@ "hash": 983582334, "enum_options": { "HAS_BACK": 1, - "SCALE_CHILDREN": 2, "CAN_MOVE": 4, "CAN_SIZE": 8, "CAN_SCROLL": 16, - "FOCUS_LOCKED": 64, "CAN_FOCUS": 128, "CAN_DOCK": 32, "DO_NOT_CAPTURE_MOUSE": 256, @@ -485254,7 +237301,9 @@ "USE_ALPHA_BOUNDS": 8192, "AUTO_GROW": 16384, "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152 + "AUTO_RESIZE": 49152, + "DLC_SPELLTIP": 16777216, + "DLC_SELECT": 33554432 } }, "m_Flags": { @@ -485414,80 +237463,71 @@ "singleton": false, "pointer": false, "hash": 3091503757 - } - } - }, - "800863363": { - "name": "class BadgeLeaderboardInfoList*", - "bases": [ - "PropertyClass" - ], - "hash": 800863363, - "properties": { - "m_badgeLeaderboardInfoList": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, + }, + "m_cardSize": { + "type": "class Size", + "id": 16, + "offset": 676, "flags": 7, - "container": "List", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3286468481 + "pointer": false, + "hash": 1135567057 }, - "m_page": { + "m_spacing": { "type": "int", - "id": 1, - "offset": 88, + "id": 17, + "offset": 684, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 219731831 + "hash": 1481011679 }, - "m_extraCredit": { - "type": "bool", - "id": 2, - "offset": 92, + "m_verticalSpacingAdjust": { + "type": "int", + "id": 18, + "offset": 688, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 847737554 + "hash": 2069000644 }, - "m_totalEntries": { - "type": "int", - "id": 3, - "offset": 96, + "m_slotImage": { + "type": "class SharedPointer", + "id": 19, + "offset": 616, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 682683672 + "pointer": true, + "hash": 2088856988 }, - "m_isFriends": { - "type": "bool", - "id": 4, - "offset": 100, + "m_treasureFrame": { + "type": "int", + "id": 20, + "offset": 632, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 982582490 + "hash": 178393840 } } }, - "800264844": { - "name": "class SharedPointer", + "2017278742": { + "name": "class AtticBehaviorTemplate", "bases": [ "BehaviorTemplate", "PropertyClass" ], - "hash": 800264844, + "hash": 2017278742, "properties": { "m_behaviorName": { "type": "std::string", @@ -485502,754 +237542,782 @@ } } }, - "1152801726": { - "name": "class AtticBehavior", + "1146327826": { + "name": "class AddTeamToMatchUpdate*", "bases": [ - "BehaviorInstance", + "TournamentUpdate", "PropertyClass" ], - "hash": 1152801726, + "hash": 1146327826, "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", + "m_teamID": { + "type": "gid", "id": 0, - "offset": 104, - "flags": 39, + "offset": 72, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 + "hash": 982102220 }, - "m_containerGID": { + "m_matchID": { "type": "gid", "id": 1, - "offset": 112, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 550557519 - }, - "m_atticItemCount": { - "type": "int", - "id": 2, - "offset": 120, - "flags": 63, + "offset": 80, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 184605671 + "hash": 1757621298 } } }, - "1153014399": { - "name": "class SharedPointer", + "2016817231": { + "name": "class DerbyImmunityEffect", "bases": [ - "EquippedItemInfo", + "DerbyEffect", "PropertyClass" ], - "hash": 1153014399, + "hash": 2016817231, "properties": { - "m_itemID": { - "type": "unsigned int", + "m_buffType": { + "type": "enum DerbyTalentBuffType", "id": 0, - "offset": 72, - "flags": 31, + "offset": 92, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 780964329 + "hash": 1149251982, + "enum_options": { + "Buff": 0, + "Debuff": 1, + "Neither": 2 + } }, - "m_baseColor": { - "type": "bui5", + "m_kTarget": { + "type": "enum DerbyTargetType", "id": 1, - "offset": 88, - "flags": 31, + "offset": 96, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1433198221 + "hash": 1807803351, + "enum_options": { + "kTargetInFront": 0, + "kTargetBehind": 1, + "kTargetFirst": 2, + "kTargetSelf": 3, + "kTargetAll": 4, + "kTargetLast": 5 + } }, - "m_trimColor": { - "type": "bui5", + "m_nDuration": { + "type": "int", "id": 2, - "offset": 92, + "offset": 104, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1198446862 + "hash": 1110167982 }, - "m_pattern": { - "type": "bui5", + "m_effectID": { + "type": "unsigned int", "id": 3, - "offset": 96, - "flags": 31, + "offset": 88, + "flags": 24, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1338360593 - } - } - }, - "801182815": { - "name": "class UntargetableCinematicAction", - "bases": [ - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 801182815, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, + "hash": 2347630439 + }, + "m_imageFilename": { + "type": "std::string", + "id": 4, + "offset": 112, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 + "hash": 2813328063 }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, + "m_iconIndex": { + "type": "unsigned int", + "id": 5, + "offset": 144, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2285866132 - } - } - }, - "800945360": { - "name": "class CastleGamesUpdate", - "bases": [ - "PropertyClass" - ], - "hash": 800945360, - "properties": { - "m_entryList": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, + "hash": 1265133262 + }, + "m_soundOnActivate": { + "type": "std::string", + "id": 6, + "offset": 152, + "flags": 131103, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 619674006 + "pointer": false, + "hash": 1956929714 }, - "m_numberOfGames": { - "type": "int", - "id": 1, - "offset": 88, - "flags": 7, + "m_soundOnTarget": { + "type": "std::string", + "id": 7, + "offset": 184, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1220956901 - } - } - }, - "1154091384": { - "name": "class PhysicsBehavior*", - "bases": [ - "CollisionBehavior", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1154091384, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, + "hash": 3444214056 + }, + "m_targetParticleEffect": { + "type": "std::string", + "id": 8, + "offset": 216, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 + "hash": 3048234723 }, - "m_nHolderGID": { - "type": "gid", - "id": 1, - "offset": 352, - "flags": 31, + "m_overheadMessage": { + "type": "std::string", + "id": 9, + "offset": 248, + "flags": 8388639, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 133708664 + "hash": 1701018190 }, - "m_vHoldOffset": { - "type": "class Vector3D", - "id": 2, - "offset": 360, + "m_requirements": { + "type": "class RequirementList", + "id": 10, + "offset": 280, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3766080710 + "hash": 2840988582 }, - "m_fHoldForce": { - "type": "float", - "id": 3, - "offset": 372, + "m_bToDebuffs": { + "type": "bool", + "id": 11, + "offset": 376, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1792175219 + "hash": 1216111639 } } }, - "802791634": { - "name": "class WeightedEntry*", + "739989927": { + "name": "class SharedPointer", "bases": [ "PropertyClass" ], - "hash": 802791634, + "hash": 739989927, "properties": { - "m_weight": { - "type": "unsigned int", + "m_houseTransferResultList": { + "type": "class SharedPointer", "id": 0, "offset": 72, "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1794426680 + }, + "m_characterGID": { + "type": "gid", + "id": 1, + "offset": 88, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1311209301 + "hash": 501688601 } } }, - "1154949689": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1154949689, - "properties": {} - }, - "802540586": { - "name": "class GiveCinematicStageTemplate", + "1145907444": { + "name": "class ItemBundleTemplate*", "bases": [ - "CinematicStageTemplate", + "WizItemTemplate", + "ItemTemplate", + "GameObjectTemplate", + "CoreTemplate", "PropertyClass" ], - "hash": 802540586, + "hash": 1145907444, "properties": { - "m_name": { - "type": "std::string", + "m_behaviors": { + "type": "class BehaviorTemplate*", "id": 0, "offset": 72, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "Vector", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 1717359772 + "pointer": true, + "hash": 1197808594 }, - "m_duration": { - "type": "float", + "m_objectName": { + "type": "std::string", "id": 1, - "offset": 104, + "offset": 96, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 920323453 + "hash": 2154940147 }, - "m_actions": { - "type": "class SharedPointer", + "m_templateID": { + "type": "unsigned int", "id": 2, - "offset": 112, - "flags": 7, - "container": "List", - "dynamic": true, + "offset": 128, + "flags": 16777223, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1380578687 + "pointer": false, + "hash": 1286746870 }, - "m_stageRelationships": { - "type": "class SharedPointer", + "m_visualID": { + "type": "unsigned int", "id": 3, - "offset": 128, + "offset": 132, "flags": 7, - "container": "List", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 499983354 + "pointer": false, + "hash": 1118778894 }, - "m_cameras": { + "m_adjectiveList": { "type": "std::string", "id": 4, - "offset": 152, - "flags": 131079, - "container": "Vector", + "offset": 248, + "flags": 7, + "container": "List", "dynamic": true, "singleton": false, "pointer": false, - "hash": 3217341687 + "hash": 3195213318 }, - "m_altcameras": { - "type": "std::string", + "m_exemptFromAOI": { + "type": "bool", "id": 5, - "offset": 176, - "flags": 131079, - "container": "Vector", - "dynamic": true, + "offset": 240, + "flags": 7, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 1882980152 + "hash": 1457879059 }, - "m_animation": { + "m_displayName": { "type": "std::string", "id": 6, - "offset": 200, - "flags": 7, + "offset": 168, + "flags": 8388615, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3431428731 + "hash": 2446900370 }, - "m_sound": { + "m_description": { "type": "std::string", "id": 7, - "offset": 232, - "flags": 131079, + "offset": 136, + "flags": 8388615, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2307644996 - } - } - }, - "1154574409": { - "name": "class TrainMovement", - "bases": [ - "PropertyClass" - ], - "hash": 1154574409, - "properties": {} - }, - "802540576": { - "name": "class GiveCinematicStageTemplate*", - "bases": [ - "CinematicStageTemplate", - "PropertyClass" - ], - "hash": 802540576, - "properties": { - "m_name": { + "hash": 1649374815 + }, + "m_nObjectType": { + "type": "enum ObjectType", + "id": 8, + "offset": 200, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2118905880, + "enum_options": { + "OT_UNDEFINED": 0, + "OT_PLAYER": 1, + "OT_NPC": 2, + "OT_PROP": 3, + "OT_OBJECT": 4, + "OT_HOUSE": 5, + "OT_KEY": 6, + "OT_OLD_KEY": 7, + "OT_DEED": 8, + "OT_MAIL": 9, + "OT_RECIPE": 17, + "OT_EQUIP_HEAD": 10, + "OT_EQUIP_CHEST": 11, + "OT_EQUIP_LEGS": 12, + "OT_EQUIP_HANDS": 13, + "OT_EQUIP_FINGER": 14, + "OT_EQUIP_FEET": 15, + "OT_EQUIP_EAR": 16, + "OT_BUILDING_BLOCK": 18, + "OT_BUILDING_BLOCK_SOLID": 19, + "OT_GOLF": 20, + "OT_DOOR": 21, + "OT_PET": 22, + "OT_FABRIC": 23, + "OT_WINDOW": 24, + "OT_ROOF": 25, + "OT_HORSE": 26, + "OT_STRUCTURE": 27, + "OT_HOUSING_TEXTURE": 28, + "OT_PLANT": 29 + } + }, + "m_sIcon": { "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, + "id": 9, + "offset": 208, + "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1717359772 + "hash": 2306259831 }, - "m_duration": { - "type": "float", - "id": 1, - "offset": 104, + "m_equipRequirements": { + "type": "class RequirementList*", + "id": 10, + "offset": 280, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 920323453 + "pointer": true, + "hash": 2762617226 }, - "m_actions": { - "type": "class SharedPointer", - "id": 2, - "offset": 112, + "m_purchaseRequirements": { + "type": "class RequirementList*", + "id": 11, + "offset": 288, "flags": 7, - "container": "List", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": true, - "hash": 1380578687 + "hash": 3174641793 }, - "m_stageRelationships": { - "type": "class SharedPointer", - "id": 3, - "offset": 128, + "m_equipEffects": { + "type": "class GameEffectInfo*", + "id": 12, + "offset": 296, "flags": 7, "container": "List", "dynamic": true, "singleton": false, "pointer": true, - "hash": 499983354 + "hash": 836628351 }, - "m_cameras": { - "type": "std::string", - "id": 4, - "offset": 152, - "flags": 131079, - "container": "Vector", - "dynamic": true, + "m_baseCost": { + "type": "float", + "id": 13, + "offset": 312, + "flags": 7, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 3217341687 + "hash": 1565352651 }, - "m_altcameras": { - "type": "std::string", - "id": 5, - "offset": 176, - "flags": 131079, - "container": "Vector", - "dynamic": true, + "m_creditsCost": { + "type": "float", + "id": 14, + "offset": 320, + "flags": 7, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 1882980152 + "hash": 805514974 }, - "m_animation": { - "type": "std::string", - "id": 6, - "offset": 200, + "m_avatarInfo": { + "type": "class AvatarItemInfoBase*", + "id": 15, + "offset": 328, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 3431428731 + "pointer": true, + "hash": 2627321299 }, - "m_sound": { + "m_avatarFlags": { "type": "std::string", - "id": 7, - "offset": 232, - "flags": 131079, + "id": 16, + "offset": 336, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2347762759 + }, + "m_itemLimit": { + "type": "int", + "id": 17, + "offset": 316, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2307644996 - } - } - }, - "1154263410": { - "name": "class std::list >", - "bases": [], - "hash": 1154263410, - "properties": {} - }, - "802566682": { - "name": "class ChatHistory*", - "bases": [ - "PropertyClass" - ], - "hash": 802566682, - "properties": {} - }, - "1154769183": { - "name": "class GraphicalReagent*", - "bases": [ - "GraphicalSpell", - "Spell", - "PropertyClass" - ], - "hash": 1154769183, - "properties": { - "m_templateID": { - "type": "unsigned int", - "id": 0, - "offset": 128, - "flags": 31, + "hash": 1799746856 + }, + "m_holidayFlag": { + "type": "std::string", + "id": 18, + "offset": 352, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1286746870 + "hash": 2994795359 }, - "m_enchantment": { + "m_itemSetBonusTemplateID": { "type": "unsigned int", - "id": 1, - "offset": 80, - "flags": 31, + "id": 19, + "offset": 384, + "flags": 33554439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2217886818 + "hash": 1316835672 }, - "m_pipCost": { - "type": "class SharedPointer", - "id": 2, - "offset": 176, + "m_numPrimaryColors": { + "type": "int", + "id": 20, + "offset": 428, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3605704820 + "pointer": false, + "hash": 981103872 }, - "m_regularAdjust": { + "m_numSecondaryColors": { "type": "int", - "id": 3, - "offset": 192, - "flags": 31, + "id": 21, + "offset": 432, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1420453335 + "hash": 1310416868 }, - "m_magicSchoolID": { - "type": "unsigned int", - "id": 4, - "offset": 136, + "m_numPatterns": { + "type": "int", + "id": 22, + "offset": 436, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 893146499 + "hash": 953162171 }, - "m_accuracy": { - "type": "unsigned char", - "id": 5, - "offset": 132, + "m_school": { + "type": "std::string", + "id": 23, + "offset": 392, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2273914939 + "hash": 2438566051 }, - "m_treasureCard": { - "type": "bool", - "id": 6, - "offset": 197, - "flags": 31, + "m_arenaPointCost": { + "type": "int", + "id": 24, + "offset": 440, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1764879128 + "hash": 1819621796 }, - "m_battleCard": { - "type": "bool", - "id": 7, - "offset": 198, - "flags": 31, + "m_pvpCurrencyCost": { + "type": "int", + "id": 25, + "offset": 444, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1332843753 + "hash": 645595444 }, - "m_itemCard": { - "type": "bool", - "id": 8, - "offset": 199, + "m_pvpTourneyCurrencyCost": { + "type": "int", + "id": 26, + "offset": 448, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1683654300 + "hash": 517874954 }, - "m_sideBoard": { - "type": "bool", - "id": 9, - "offset": 200, + "m_rank": { + "type": "int", + "id": 27, + "offset": 424, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1897838368 + "hash": 219803942 }, - "m_spellID": { - "type": "unsigned int", - "id": 10, - "offset": 204, - "flags": 31, + "m_boyIconIndex": { + "type": "int", + "id": 28, + "offset": 452, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1697483258 + "hash": 802140453 }, - "m_leavesPlayWhenCastOverride": { - "type": "bool", - "id": 11, - "offset": 216, - "flags": 31, + "m_girlIconIndex": { + "type": "int", + "id": 29, + "offset": 456, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 874407398 + "hash": 832706793 }, - "m_cloaked": { - "type": "bool", - "id": 12, - "offset": 196, + "m_leashOffsetOverride": { + "type": "class SharedPointer", + "id": 30, + "offset": 464, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 7349510 + "pointer": true, + "hash": 1692586788 }, - "m_enchantmentSpellIsItemCard": { - "type": "bool", - "id": 13, - "offset": 76, - "flags": 31, + "m_rarity": { + "type": "enum RarityType", + "id": 31, + "offset": 460, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 531590701 + "hash": 2253792108, + "enum_options": { + "RT_COMMON": 0, + "RT_UNCOMMON": 1, + "RT_RARE": 2, + "RT_ULTRARARE": 3, + "RT_EPIC": 4 + } }, - "m_premutationSpellID": { - "type": "unsigned int", - "id": 14, - "offset": 112, - "flags": 31, - "container": "Static", - "dynamic": false, + "m_bundleItems": { + "type": "gid", + "id": 32, + "offset": 480, + "flags": 33554439, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 1530256370 + "hash": 182029460 }, - "m_enchantedThisCombat": { - "type": "bool", - "id": 15, - "offset": 77, - "flags": 31, - "container": "Static", - "dynamic": false, + "m_bundleFreeItems": { + "type": "gid", + "id": 33, + "offset": 496, + "flags": 33554439, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 1895738923 + "hash": 263220278 }, - "m_paramOverrides": { - "type": "class SharedPointer", - "id": 16, - "offset": 224, - "flags": 31, + "m_bundleItemsToGrant": { + "type": "gid", + "id": 34, + "offset": 544, + "flags": 33554439, "container": "List", "dynamic": true, "singleton": false, - "pointer": true, - "hash": 2061635599 + "pointer": false, + "hash": 1280974675 }, - "m_subEffectMeta": { - "type": "class SharedPointer", - "id": 17, - "offset": 240, - "flags": 31, + "m_featuredRewards": { + "type": "gid", + "id": 35, + "offset": 512, + "flags": 33554439, "container": "List", "dynamic": true, "singleton": false, - "pointer": true, - "hash": 1944101106 + "pointer": false, + "hash": 1360288832 }, - "m_delayEnchantment": { - "type": "bool", - "id": 18, - "offset": 257, - "flags": 287, + "m_acquireCondition": { + "type": "enum ItemBundleTemplate::AcquireConditionType", + "id": 36, + "offset": 528, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 191336919 + "hash": 2176833998, + "enum_options": { + "kReceiveAll": 0, + "kChooseOne": 1 + } }, - "m_PvE": { - "type": "bool", - "id": 19, - "offset": 264, - "flags": 287, + "m_bundleContentsType": { + "type": "enum ItemBundleTemplate::BundleContentsType", + "id": 37, + "offset": 532, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 269492350 + "hash": 2541051988, + "enum_options": { + "kHatRobeShoes": 0, + "kShowFirstItemInPortrait": 1, + "kHatRobeShoesWeaponMount": 2, + "kShowPortraitsConsecutively": 3 + } }, - "m_delayEnchantmentOrder": { - "type": "enum SpellEffect::kDelayOrder", - "id": 20, + "m_bundleSavings": { + "type": "int", + "id": 38, + "offset": 536, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2036928271 + } + } + }, + "1578249642": { + "name": "class ClientFadeActorCinematicAction", + "bases": [ + "FadeActorCinematicAction", + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 1578249642, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, "offset": 72, - "flags": 287, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2526055263, - "enum_options": { - "SpellEffect::kAnyOrder": 0, - "SpellEffect::kFirst": 1, - "SpellEffect::kSecond": 2 - } + "hash": 2237098605 }, - "m_roundAddedTC": { - "type": "int", - "id": 21, - "offset": 260, - "flags": 31, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 112365451 + "hash": 2285866132 }, - "m_secondarySchoolID": { - "type": "unsigned int", - "id": 22, - "offset": 304, + "m_fadeDuration": { + "type": "float", + "id": 2, + "offset": 120, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2081206026 + "hash": 1402536557 + }, + "m_alphaTarget": { + "type": "float", + "id": 3, + "offset": 124, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 197622500 } } }, - "1154574414": { - "name": "class TrainMovement*", - "bases": [ - "PropertyClass" - ], - "hash": 1154574414, - "properties": {} - }, - "803309094": { - "name": "class MatchRequest*", + "2016689933": { + "name": "class SharedPointer", "bases": [ + "ConditionalSpellEffectRequirement", + "Requirement", "PropertyClass" ], - "hash": 803309094, + "hash": 2016689933, "properties": { - "m_characterID": { - "type": "gid", + "m_applyNOT": { + "type": "bool", "id": 0, "offset": 72, "flags": 31, @@ -486257,32 +238325,44 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 210498386 + "hash": 1746328074, + "enum_options": { + "__DEFAULT": 0 + } }, - "m_tournamentNameID": { - "type": "unsigned int", + "m_operator": { + "type": "enum Requirement::Operator", "id": 1, - "offset": 84, - "flags": 31, + "offset": 76, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1799846440 + "hash": 2672792317, + "enum_options": { + "ROP_AND": 0, + "ROP_OR": 1, + "__DEFAULT": "ROP_AND" + } }, - "m_matchNameID": { - "type": "unsigned int", + "m_targetType": { + "type": "enum ConditionalSpellEffectRequirement::RequirementTarget", "id": 2, "offset": 80, - "flags": 31, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1751361288 + "hash": 2547737902, + "enum_options": { + "RT_Caster": 0, + "RT_Target": 1 + } }, - "m_leagueID": { - "type": "unsigned int", + "m_minPips": { + "type": "int", "id": 3, "offset": 88, "flags": 31, @@ -486290,10 +238370,10 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 692361645 + "hash": 2062924954 }, - "m_seasonID": { - "type": "unsigned int", + "m_maxPips": { + "type": "int", "id": 4, "offset": 92, "flags": 31, @@ -486301,341 +238381,223 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 535260643 - }, - "m_teams": { - "type": "class SharedPointer", - "id": 5, - "offset": 96, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1984373608 + "hash": 1761701020 } } }, - "802791637": { - "name": "class WeightedEntry", + "296455231": { + "name": "class ObstacleCourseRevolvingDoorBehavior*", "bases": [ + "ObstacleCourseObstacleBehavior", + "BehaviorInstance", "PropertyClass" ], - "hash": 802791637, + "hash": 296455231, "properties": { - "m_weight": { + "m_behaviorTemplateNameID": { "type": "unsigned int", "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + } + } + }, + "1145235256": { + "name": "class SpringboardNodeDescriptor*", + "bases": [ + "NodeDescriptor", + "PropertyClass" + ], + "hash": 1145235256, + "properties": { + "m_kAnimationState": { + "type": "enum SpringboardNodeDescriptor::AnimationState", + "id": 0, "offset": 72, - "flags": 7, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1311209301 + "hash": 1775415814, + "enum_options": { + "Down": 0, + "Shake": 1, + "PopUp": 2, + "Up": 3, + "Reset": 4 + } } } }, - "1154933023": { - "name": "class GraphicalReagent", + "296406079": { + "name": "class ObstacleCourseRevolvingDoorBehavior", "bases": [ - "GraphicalSpell", - "Spell", + "ObstacleCourseObstacleBehavior", + "BehaviorInstance", "PropertyClass" ], - "hash": 1154933023, + "hash": 296406079, "properties": { - "m_templateID": { + "m_behaviorTemplateNameID": { "type": "unsigned int", "id": 0, - "offset": 128, - "flags": 31, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1286746870 + "hash": 223437287 + } + } + }, + "296258369": { + "name": "class SharedPointer", + "bases": [ + "ObstacleCourseObstacleBehaviorTemplate", + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 296258369, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 }, - "m_enchantment": { - "type": "unsigned int", + "m_rate": { + "type": "double", "id": 1, - "offset": 80, - "flags": 31, + "offset": 120, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2217886818 + "hash": 2117614265 }, - "m_pipCost": { - "type": "class SharedPointer", + "m_penaltyTime": { + "type": "double", "id": 2, - "offset": 176, + "offset": 128, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3605704820 + "pointer": false, + "hash": 3890998489 }, - "m_regularAdjust": { - "type": "int", + "m_boxAngle": { + "type": "double", "id": 3, - "offset": 192, - "flags": 31, + "offset": 136, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1420453335 + "hash": 2280680509 }, - "m_magicSchoolID": { - "type": "unsigned int", + "m_nearMissBoxAngle": { + "type": "double", "id": 4, - "offset": 136, + "offset": 144, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 893146499 + "hash": 2597648767 }, - "m_accuracy": { - "type": "unsigned char", + "m_nearMissWidth": { + "type": "double", "id": 5, - "offset": 132, + "offset": 152, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2273914939 + "hash": 3819808431 }, - "m_treasureCard": { - "type": "bool", + "m_pendulumHeight": { + "type": "double", "id": 6, - "offset": 197, - "flags": 31, + "offset": 160, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1764879128 + "hash": 3283581360 }, - "m_battleCard": { - "type": "bool", + "m_angleMax": { + "type": "double", "id": 7, - "offset": 198, - "flags": 31, + "offset": 168, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1332843753 + "hash": 2853267002 }, - "m_itemCard": { - "type": "bool", + "m_pendulumWidth": { + "type": "double", "id": 8, - "offset": 199, + "offset": 176, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1683654300 + "hash": 2478418615 }, - "m_sideBoard": { - "type": "bool", + "m_collisionHeight": { + "type": "double", "id": 9, - "offset": 200, + "offset": 184, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1897838368 + "hash": 3980975122 }, - "m_spellID": { - "type": "unsigned int", + "m_pendulumHitSoundList": { + "type": "class WeightedList", "id": 10, - "offset": 204, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1697483258 - }, - "m_leavesPlayWhenCastOverride": { - "type": "bool", - "id": 11, - "offset": 216, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 874407398 - }, - "m_cloaked": { - "type": "bool", - "id": 12, - "offset": 196, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 7349510 - }, - "m_enchantmentSpellIsItemCard": { - "type": "bool", - "id": 13, - "offset": 76, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 531590701 - }, - "m_premutationSpellID": { - "type": "unsigned int", - "id": 14, - "offset": 112, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1530256370 - }, - "m_enchantedThisCombat": { - "type": "bool", - "id": 15, - "offset": 77, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1895738923 - }, - "m_paramOverrides": { - "type": "class SharedPointer", - "id": 16, - "offset": 224, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2061635599 - }, - "m_subEffectMeta": { - "type": "class SharedPointer", - "id": 17, - "offset": 240, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1944101106 - }, - "m_delayEnchantment": { - "type": "bool", - "id": 18, - "offset": 257, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 191336919 - }, - "m_PvE": { - "type": "bool", - "id": 19, - "offset": 264, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 269492350 - }, - "m_delayEnchantmentOrder": { - "type": "enum SpellEffect::kDelayOrder", - "id": 20, - "offset": 72, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2526055263, - "enum_options": { - "SpellEffect::kAnyOrder": 0, - "SpellEffect::kFirst": 1, - "SpellEffect::kSecond": 2 - } - }, - "m_roundAddedTC": { - "type": "int", - "id": 21, - "offset": 260, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 112365451 - }, - "m_secondarySchoolID": { - "type": "unsigned int", - "id": 22, - "offset": 304, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2081206026 - } - } - }, - "1278380022": { - "name": "class QueuedCombatCinematicAction*", - "bases": [ - "CinematicAction", - "PropertyClass" - ], - "hash": 1278380022, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, + "offset": 192, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 + "hash": 1356951419 } } }, - "803179651": { - "name": "class SharedPointer", + "740216768": { + "name": "class WizItemQuestData*", "bases": [ - "Requirement", "PropertyClass" ], - "hash": 803179651, + "hash": 740216768, "properties": { - "m_applyNOT": { - "type": "bool", + "m_sQuestTitle": { + "type": "std::string", "id": 0, "offset": 72, "flags": 31, @@ -486643,564 +238605,606 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 1746328074, - "enum_options": { - "__DEFAULT": 0 - } + "hash": 2282339874 }, - "m_operator": { - "type": "enum Requirement::Operator", + "m_sFirstGoalLocation": { + "type": "std::string", "id": 1, - "offset": 76, - "flags": 2097183, + "offset": 104, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2672792317, - "enum_options": { - "ROP_AND": 0, - "ROP_OR": 1, - "__DEFAULT": "ROP_AND" - } + "hash": 2049077170 }, - "m_magicSchool": { + "m_sSchoolFocus": { "type": "std::string", "id": 2, - "offset": 80, + "offset": 136, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1597012900 + "hash": 2205763286 } } }, - "1155196412": { - "name": "class SharedPointer", + "1578701589": { + "name": "class BehaviorInstance", "bases": [ - "BehaviorTemplate", "PropertyClass" ], - "hash": 1155196412, + "hash": 1578701589, "properties": { - "m_behaviorName": { - "type": "std::string", + "m_behaviorTemplateNameID": { + "type": "unsigned int", "id": 0, - "offset": 72, - "flags": 7, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3130754092 + "hash": 223437287 + } + } + }, + "1578356076": { + "name": "class TreasureCardVaultBehavior*", + "bases": [ + "TreasureCardVaultBehaviorBase", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1578356076, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 }, - "m_combatMusicPlayer": { - "type": "bool", + "m_spellData": { + "type": "std::string", "id": 1, - "offset": 120, - "flags": 7, + "offset": 128, + "flags": 575, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 492667575 + "hash": 2688126101 } } }, - "1155031747": { - "name": "class Camera*", + "2018020244": { + "name": "enum PositionInfoAttenuationType", + "bases": [], + "hash": 2018020244, + "properties": {} + }, + "740633873": { + "name": "class std::list >", + "bases": [], + "hash": 740633873, + "properties": {} + }, + "1146327866": { + "name": "class AddTeamToMatchUpdate", "bases": [ + "TournamentUpdate", "PropertyClass" ], - "hash": 1155031747, + "hash": 1146327866, "properties": { - "m_coord": { - "type": "class Vector3D", + "m_teamID": { + "type": "gid", "id": 0, "offset": 72, - "flags": 7, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2448785881 + "hash": 982102220 }, - "m_quat": { - "type": "class Quaternion", + "m_matchID": { + "type": "gid", "id": 1, - "offset": 84, - "flags": 7, + "offset": 80, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2148807035 - }, - "m_mat": { - "type": "class Matrix3x3", - "id": 2, - "offset": 100, + "hash": 1757621298 + } + } + }, + "2017279510": { + "name": "class AtticBehaviorTemplate*", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 2017279510, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1746928484 + "hash": 3130754092 } } }, - "804376913": { - "name": "class SharedPointer", + "296942209": { + "name": "class AquariumBehaviorBase", "bases": [ - "LootInfo", - "LootInfoBase", + "BehaviorInstance", "PropertyClass" ], - "hash": 804376913, + "hash": 296942209, "properties": { - "m_lootType": { - "type": "enum LootInfo::LOOT_TYPE", + "m_behaviorTemplateNameID": { + "type": "unsigned int", "id": 0, - "offset": 72, - "flags": 2097183, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1591891442, - "enum_options": { - "LOOT_TYPE_NONE": 0, - "LOOT_TYPE_GOLD": 1, - "LOOT_TYPE_MANA": 2, - "LOOT_TYPE_ITEM": 3, - "LOOT_TYPE_TREASURE_CARD": 4, - "LOOT_TYPE_MAGIC_XP": 5, - "LOOT_TYPE_ADD_SPELL": 6, - "LOOT_TYPE_MAX_HEALTH": 7, - "LOOT_TYPE_MAX_GOLD": 8, - "LOOT_TYPE_MAX_MANA": 9, - "LOOT_TYPE_MAX_POTION": 10, - "LOOT_TYPE_TRAINING_POINTS": 11, - "LOOT_TYPE_RECIPE": 12, - "LOOT_TYPE_CRAFTING_SLOT": 13, - "LOOT_TYPE_REAGENT": 14, - "LOOT_TYPE_PETSNACK": 15, - "LOOT_TYPE_GARDENING_XP": 16, - "LOOT_TYPE_PET_XP": 17, - "LOOT_TYPE_TREASURE_TABLE": 18, - "LOOT_TYPE_ARENA_POINTS": 19, - "LOOT_TYPE_ARENA_BONUS_POINTS": 20, - "LOOT_TYPE_GROUP": 21, - "LOOT_TYPE_FISHING_XP": 22, - "LOOT_TYPE_EVENT_CURRENCY_1": 24, - "LOOT_TYPE_EVENT_CURRENCY_2": 25, - "LOOT_TYPE_PVP_CURRENCY": 26, - "LOOT_TYPE_PVP_CURRENCY_BONUS": 27, - "LOOT_TYPE_PVP_TOURNEY_CURRENCY": 28, - "LOOT_TYPE_PVP_TOURNEY_CURRENCY_BONUS": 29, - "LOOT_TYPE_FURNITURE_ESSENCE": 30 - } + "hash": 223437287 }, - "m_maxPotionToAdd": { - "type": "int", + "m_fishData": { + "type": "std::string", "id": 1, - "offset": 80, - "flags": 31, + "offset": 128, + "flags": 575, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1268091461 + "hash": 3393318815 } } }, - "1155431884": { - "name": "enum CinematicSoundEmitterInfo::Progression", - "bases": [], - "hash": 1155431884, - "properties": {} - }, - "385927390": { - "name": "class SharedPointer", + "1146591003": { + "name": "class SharedPointer", "bases": [ - "PetTalentBaseTemplate", - "CoreTemplate", + "BehaviorTemplate", "PropertyClass" ], - "hash": 385927390, + "hash": 1146591003, "properties": { - "m_behaviors": { - "type": "class BehaviorTemplate*", + "m_behaviorName": { + "type": "std::string", "id": 0, "offset": 72, "flags": 7, - "container": "Vector", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1197808594 + "pointer": false, + "hash": 3130754092 }, - "m_talentName": { + "m_activeStateName": { "type": "std::string", "id": 1, - "offset": 96, - "flags": 134217735, + "offset": 120, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2455147588 + "hash": 3583247033 }, - "m_displayName": { + "m_inactiveStateName": { "type": "std::string", "id": 2, - "offset": 136, - "flags": 8388615, + "offset": 152, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2446900370 + "hash": 2765382672 }, - "m_description": { + "m_zoneList": { "type": "std::string", "id": 3, - "offset": 168, - "flags": 8388615, - "container": "Static", - "dynamic": false, + "offset": 184, + "flags": 7, + "container": "Vector", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 1649374815 + "hash": 2171104787 }, - "m_imageIndex": { - "type": "unsigned int", + "m_zoneTeleportLocation": { + "type": "std::string", "id": 4, - "offset": 200, + "offset": 208, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1781902856 + "hash": 3345769311 }, - "m_imageName": { - "type": "std::string", + "m_playerCount": { + "type": "int", "id": 5, - "offset": 208, - "flags": 131079, + "offset": 240, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2391520543 + "hash": 732802992 }, - "m_rank": { - "type": "unsigned char", + "m_lockObjectTID": { + "type": "unsigned int", "id": 6, - "offset": 240, + "offset": 244, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 857403388 + "hash": 1458748110 }, - "m_breedsAsTalentName": { - "type": "std::string", + "m_lockObjectOffset": { + "type": "class Vector3D", "id": 7, "offset": 248, - "flags": 268435463, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2143399629, - "enum_options": { - "__BASECLASS": "PetTalentBaseTemplate" - } + "hash": 1901342601 }, - "m_bRetired": { - "type": "bool", + "m_unlockedStateName": { + "type": "std::string", "id": 8, - "offset": 280, + "offset": 264, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 904227684, - "enum_options": { - "__DEFAULT": 0 - } + "hash": 2407785906 }, - "m_unsearchable": { - "type": "bool", + "m_chargeObjectTID": { + "type": "unsigned int", "id": 9, - "offset": 281, + "offset": 296, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1760679968, - "enum_options": { - "__DEFAULT": 0 - } + "hash": 519506927 }, - "m_effectList": { - "type": "class GameEffectInfo*", + "m_chargeObjectOffset": { + "type": "class Vector3D", "id": 10, - "offset": 288, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 924514724 - }, - "m_maxStatList": { - "type": "class PetStat", - "id": 11, - "offset": 304, + "offset": 300, "flags": 7, - "container": "List", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 2545839409 + "hash": 2538928394 } } }, - "1956447576": { - "name": "class InvisibilityEffectTemplate*", + "1578841423": { + "name": "class TriviaWindow", "bases": [ - "GameEffectTemplate", + "Window", "PropertyClass" ], - "hash": 1956447576, + "hash": 1578841423, "properties": { - "m_effectName": { + "m_sName": { "type": "std::string", "id": 0, - "offset": 72, - "flags": 7, + "offset": 80, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2029161513 + "hash": 2306437263 }, - "m_effectCategory": { - "type": "std::string", + "m_Children": { + "type": "class SharedPointer", "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 1852673222 + "pointer": true, + "hash": 2621225959 }, - "m_sortOrder": { - "type": "int", + "m_Style": { + "type": "unsigned int", "id": 2, - "offset": 148, - "flags": 7, + "offset": 152, + "flags": 1048583, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1411218206 + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "SCALE_CHILDREN": 2, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "FOCUS_LOCKED": 64, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152 + } }, - "m_duration": { - "type": "double", + "m_Flags": { + "type": "unsigned int", "id": 3, - "offset": 192, - "flags": 7, + "offset": 156, + "flags": 1048583, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2727932435 + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } }, - "m_stackingCategories": { - "type": "std::string", + "m_Window": { + "type": "class Rect", "id": 4, "offset": 160, - "flags": 7, - "container": "List", - "dynamic": true, + "flags": 135, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 1774497525 + "hash": 3105139380 }, - "m_isPersistent": { - "type": "bool", + "m_fTargetAlpha": { + "type": "float", "id": 5, - "offset": 153, - "flags": 7, + "offset": 212, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 923861920 + "hash": 1809129834 }, - "m_bIsOnPet": { - "type": "bool", + "m_fDisabledAlpha": { + "type": "float", "id": 6, - "offset": 154, - "flags": 7, + "offset": 216, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 522593303 + "hash": 1389987675 }, - "m_isPublic": { - "type": "bool", + "m_fAlpha": { + "type": "float", "id": 7, - "offset": 152, - "flags": 7, + "offset": 208, + "flags": 65671, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1728439822 + "hash": 482130755 }, - "m_visualEffectAddName": { - "type": "std::string", + "m_pWindowStyle": { + "type": "class SharedPointer", "id": 8, - "offset": 200, - "flags": 7, + "offset": 232, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 3382086694 + "pointer": true, + "hash": 3623628394 }, - "m_visualEffectRemoveName": { - "type": "std::string", + "m_sHelp": { + "type": "std::wstring", "id": 9, - "offset": 232, - "flags": 7, + "offset": 248, + "flags": 4194439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1541697323 + "hash": 2102211316 }, - "m_onAddFunctorName": { + "m_sScript": { "type": "std::string", "id": 10, - "offset": 280, - "flags": 7, + "offset": 352, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1561843107 + "hash": 1846695875 }, - "m_onRemoveFunctorName": { - "type": "std::string", + "m_Offset": { + "type": "class Point", "id": 11, - "offset": 312, - "flags": 7, + "offset": 192, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2559017864 + "hash": 3389835433 }, - "m_stackingRule": { - "type": "enum STACKING_RULE", + "m_Scale": { + "type": "class Point", "id": 12, - "offset": 144, - "flags": 2097159, + "offset": 200, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 431568889, - "enum_options": { - "STACKING_ALLOWED": 0, - "STACKING_NOSTACK": 1, - "STACKING_REPLACE": 2 - } + "hash": 2547159940 }, - "m_invisLevel": { - "type": "unsigned char", + "m_sTip": { + "type": "std::wstring", "id": 13, - "offset": 360, - "flags": 7, + "offset": 392, + "flags": 4194439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2488151665 + "hash": 1513510520 + }, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3091503757 } } }, - "1548349503": { - "name": "class SharedPointer", + "1317096743": { + "name": "class ClientElixirBehavior", "bases": [ + "ClientTimedItemBehavior", + "BehaviorInstance", "PropertyClass" ], - "hash": 1548349503, + "hash": 1317096743, "properties": { - "m_eventName": { - "type": "std::string", + "m_behaviorTemplateNameID": { + "type": "unsigned int", "id": 0, - "offset": 72, - "flags": 7, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3493260286 + "hash": 223437287 }, - "m_actions": { - "type": "class SharedPointer", + "m_expireTime": { + "type": "unsigned int", "id": 1, - "offset": 104, - "flags": 7, - "container": "List", - "dynamic": true, + "offset": 112, + "flags": 59, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3152419933 + "pointer": false, + "hash": 1836304873 + }, + "m_statsApplied": { + "type": "bool", + "id": 2, + "offset": 328, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 828970945 } } }, - "1548148071": { - "name": "class SharedPointer", + "744080461": { + "name": "class GuildAchievementDataList*", "bases": [ "PropertyClass" ], - "hash": 1548148071, + "hash": 744080461, "properties": { - "m_loot": { - "type": "class SharedPointer", + "m_guildAchievementDataList": { + "type": "class SharedPointer", "id": 0, "offset": 72, - "flags": 31, - "container": "Vector", + "flags": 7, + "container": "List", "dynamic": true, "singleton": false, "pointer": true, - "hash": 444353250 + "hash": 1717126676 } } }, - "1158483591": { - "name": "class TreasureShopOption", + "743024801": { + "name": "class ClientConfirmOption", "bases": [ + "ConfirmOption", "ServiceOptionBase", "PropertyClass" ], - "hash": 1158483591, + "hash": 743024801, "properties": { "m_serviceName": { "type": "std::string", @@ -487256,18 +239260,137 @@ "singleton": false, "pointer": false, "hash": 1705789564 + }, + "m_confirmMessageTitleKey": { + "type": "std::string", + "id": 5, + "offset": 216, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1941136953 + }, + "m_confirmMessageTitleKeyAdvancedMode": { + "type": "std::string", + "id": 6, + "offset": 248, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3219201588 + }, + "m_confirmMessageKey": { + "type": "std::string", + "id": 7, + "offset": 280, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2088579351 + }, + "m_confirmMessageKeyAdvancedMode": { + "type": "std::string", + "id": 8, + "offset": 312, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2417239570 + }, + "m_promptSound": { + "type": "std::string", + "id": 9, + "offset": 344, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3178681510 + }, + "m_promptSoundAdvancedMode": { + "type": "std::string", + "id": 10, + "offset": 376, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1739626529 + }, + "m_acceptKey": { + "type": "std::string", + "id": 11, + "offset": 472, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3325790708 + }, + "m_declineKey": { + "type": "std::string", + "id": 12, + "offset": 504, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1679578008 + }, + "m_optionToConfirm": { + "type": "class SharedPointer", + "id": 13, + "offset": 536, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1224791766 + }, + "m_ignoreOption": { + "type": "std::string", + "id": 14, + "offset": 408, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1667595832 + }, + "m_ignoreAdvancedModeOption": { + "type": "std::string", + "id": 15, + "offset": 440, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2665095027 } } }, - "386638158": { - "name": "class SharedPointer", + "300563189": { + "name": "class SharedPointer", "bases": [ - "ItemTemplate", - "GameObjectTemplate", "CoreTemplate", "PropertyClass" ], - "hash": 386638158, + "hash": 300563189, "properties": { "m_behaviors": { "type": "class BehaviorTemplate*", @@ -487302,794 +239425,981 @@ "pointer": false, "hash": 1286746870 }, - "m_visualID": { - "type": "unsigned int", + "m_displayName": { + "type": "std::string", "id": 3, - "offset": 132, - "flags": 7, + "offset": 136, + "flags": 8388615, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1118778894 + "hash": 2446900370 }, - "m_adjectiveList": { - "type": "std::string", + "m_noStacking": { + "type": "bool", "id": 4, - "offset": 248, + "offset": 168, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1351303236 + }, + "m_itemSetBonusDataList": { + "type": "class ItemSetBonusData", + "id": 5, + "offset": 176, "flags": 7, "container": "List", "dynamic": true, "singleton": false, "pointer": false, - "hash": 3195213318 + "hash": 2922880945 + } + } + }, + "741293040": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 741293040, + "properties": { + "m_set": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 848667448 }, - "m_exemptFromAOI": { - "type": "bool", - "id": 5, - "offset": 240, + "m_cost": { + "type": "unsigned int", + "id": 1, + "offset": 88, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1457879059 - }, - "m_displayName": { + "hash": 430682758 + } + } + }, + "1223517492": { + "name": "class EquipmentShopOption", + "bases": [ + "ServiceOptionBase", + "PropertyClass" + ], + "hash": 1223517492, + "properties": { + "m_serviceName": { "type": "std::string", - "id": 6, - "offset": 168, - "flags": 8388615, + "id": 0, + "offset": 72, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2446900370 + "hash": 2206028813 }, - "m_description": { + "m_iconKey": { "type": "std::string", - "id": 7, - "offset": 136, - "flags": 8388615, + "id": 1, + "offset": 168, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1649374815 + "hash": 2457138637 }, - "m_nObjectType": { - "type": "enum ObjectType", - "id": 8, - "offset": 200, - "flags": 2097159, + "m_displayKey": { + "type": "std::string", + "id": 2, + "offset": 104, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2118905880, - "enum_options": { - "OT_UNDEFINED": 0, - "OT_PLAYER": 1, - "OT_NPC": 2, - "OT_PROP": 3, - "OT_OBJECT": 4, - "OT_HOUSE": 5, - "OT_KEY": 6, - "OT_OLD_KEY": 7, - "OT_DEED": 8, - "OT_MAIL": 9, - "OT_RECIPE": 17, - "OT_EQUIP_HEAD": 10, - "OT_EQUIP_CHEST": 11, - "OT_EQUIP_LEGS": 12, - "OT_EQUIP_HANDS": 13, - "OT_EQUIP_FINGER": 14, - "OT_EQUIP_FEET": 15, - "OT_EQUIP_EAR": 16, - "OT_BUILDING_BLOCK": 18, - "OT_BUILDING_BLOCK_SOLID": 19, - "OT_GOLF": 20, - "OT_DOOR": 21, - "OT_PET": 22, - "OT_FABRIC": 23, - "OT_WINDOW": 24, - "OT_ROOF": 25, - "OT_HORSE": 26, - "OT_STRUCTURE": 27, - "OT_HOUSING_TEXTURE": 28, - "OT_PLANT": 29 - } + "hash": 3023276954 }, - "m_sIcon": { - "type": "std::string", - "id": 9, - "offset": 208, - "flags": 131079, + "m_serviceIndex": { + "type": "unsigned int", + "id": 3, + "offset": 204, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2306259831 + "hash": 2103126710 }, - "m_equipRequirements": { - "type": "class RequirementList*", - "id": 10, - "offset": 280, - "flags": 7, + "m_forceInteract": { + "type": "bool", + "id": 4, + "offset": 200, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2762617226 - }, - "m_purchaseRequirements": { - "type": "class RequirementList*", - "id": 11, - "offset": 288, + "pointer": false, + "hash": 1705789564 + } + } + }, + "1603598820": { + "name": "class SharedPointer", + "bases": [ + "BurnHangingEffectCinematicAction", + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 1603598820, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3174641793 + "pointer": false, + "hash": 2237098605 }, - "m_equipEffects": { - "type": "class GameEffectInfo*", - "id": 12, - "offset": 296, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, "flags": 7, - "container": "List", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 836628351 + "pointer": false, + "hash": 2285866132 }, - "m_baseCost": { - "type": "float", - "id": 13, - "offset": 312, + "m_cloaked": { + "type": "bool", + "id": 2, + "offset": 152, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1565352651 + "hash": 7349510 }, - "m_creditsCost": { - "type": "float", - "id": 14, - "offset": 320, + "m_detonate": { + "type": "bool", + "id": 3, + "offset": 153, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 805514974 + "hash": 1738601959 }, - "m_avatarInfo": { - "type": "class AvatarItemInfoBase*", - "id": 15, - "offset": 328, - "flags": 7, + "m_burnSound": { + "type": "std::string", + "id": 4, + "offset": 120, + "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2627321299 - }, - "m_avatarFlags": { + "pointer": false, + "hash": 1827806971 + } + } + }, + "2018071983": { + "name": "class std::list >", + "bases": [], + "hash": 2018071983, + "properties": {} + }, + "298717772": { + "name": "class UnderwayEntry*", + "bases": [ + "ServiceOptionBase", + "PropertyClass" + ], + "hash": 298717772, + "properties": { + "m_serviceName": { "type": "std::string", - "id": 16, - "offset": 336, - "flags": 7, - "container": "List", - "dynamic": true, + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 2347762759 + "hash": 2206028813 }, - "m_itemLimit": { - "type": "int", - "id": 17, - "offset": 316, - "flags": 7, + "m_iconKey": { + "type": "std::string", + "id": 1, + "offset": 168, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1799746856 + "hash": 2457138637 }, - "m_holidayFlag": { + "m_displayKey": { "type": "std::string", - "id": 18, - "offset": 352, - "flags": 7, + "id": 2, + "offset": 104, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2994795359 + "hash": 3023276954 }, - "m_itemSetBonusTemplateID": { + "m_serviceIndex": { "type": "unsigned int", - "id": 19, - "offset": 384, - "flags": 33554439, + "id": 3, + "offset": 204, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1316835672 + "hash": 2103126710 }, - "m_numPrimaryColors": { - "type": "int", - "id": 20, - "offset": 428, - "flags": 7, + "m_forceInteract": { + "type": "bool", + "id": 4, + "offset": 200, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 981103872 + "hash": 1705789564 }, - "m_numSecondaryColors": { - "type": "int", - "id": 21, - "offset": 432, - "flags": 7, + "m_underwayText": { + "type": "std::string", + "id": 5, + "offset": 224, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1310416868 + "hash": 3006734255 }, - "m_numPatterns": { - "type": "int", - "id": 22, - "offset": 436, - "flags": 7, + "m_questID": { + "type": "gid", + "id": 6, + "offset": 216, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 953162171 - }, - "m_school": { - "type": "std::string", - "id": 23, - "offset": 392, - "flags": 7, + "hash": 1246549335 + } + } + }, + "1173711933": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1173711933, + "properties": { + "m_nTeamID": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2438566051 + "hash": 374990266 }, - "m_arenaPointCost": { - "type": "int", - "id": 24, - "offset": 440, - "flags": 7, + "m_matchId": { + "type": "gid", + "id": 1, + "offset": 80, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1819621796 + "hash": 1757621330 }, - "m_pvpCurrencyCost": { - "type": "int", - "id": 25, - "offset": 444, - "flags": 7, + "m_matchNameID": { + "type": "unsigned int", + "id": 2, + "offset": 88, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 645595444 + "hash": 1751361288 }, - "m_pvpTourneyCurrencyCost": { - "type": "int", - "id": 26, - "offset": 448, - "flags": 7, + "m_creatorId": { + "type": "gid", + "id": 3, + "offset": 96, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 517874954 + "hash": 1051766069 }, - "m_rank": { - "type": "int", - "id": 27, - "offset": 424, - "flags": 7, + "m_friendsOnly": { + "type": "bool", + "id": 4, + "offset": 104, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 219803942 + "hash": 1420401792 }, - "m_boyIconIndex": { - "type": "int", - "id": 28, - "offset": 452, - "flags": 7, + "m_actors": { + "type": "class SharedPointer", + "id": 5, + "offset": 112, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 568947970 + }, + "m_bracketID": { + "type": "gid", + "id": 6, + "offset": 152, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 802140453 + "hash": 441272961 }, - "m_girlIconIndex": { - "type": "int", - "id": 29, - "offset": 456, - "flags": 7, + "m_leagueID": { + "type": "unsigned int", + "id": 7, + "offset": 160, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 832706793 + "hash": 692361645 }, - "m_leashOffsetOverride": { - "type": "class SharedPointer", - "id": 30, - "offset": 464, - "flags": 7, + "m_seasonID": { + "type": "unsigned int", + "id": 8, + "offset": 164, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1692586788 + "pointer": false, + "hash": 535260643 }, - "m_rarity": { - "type": "enum RarityType", - "id": 31, - "offset": 460, - "flags": 2097159, + "m_maxActorLevel": { + "type": "int", + "id": 9, + "offset": 144, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2253792108, - "enum_options": { - "RT_COMMON": 0, - "RT_UNCOMMON": 1, - "RT_RARE": 2, - "RT_ULTRARARE": 3, - "RT_EPIC": 4 - } + "hash": 120597521 } } }, - "1157289788": { - "name": "class SharedPointer", + "1597189013": { + "name": "class std::vector >", + "bases": [], + "hash": 1597189013, + "properties": {} + }, + "298717769": { + "name": "class UnderwayEntry", "bases": [ - "WinAnimMoveToLocationSpeed", - "WinAnimMoveToLocation", - "WindowAnimation", + "ServiceOptionBase", "PropertyClass" ], - "hash": 1157289788, + "hash": 298717769, "properties": { - "m_bUseDeepCopy": { - "type": "bool", + "m_serviceName": { + "type": "std::string", "id": 0, "offset": 72, - "flags": 135, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 433380635 + "hash": 2206028813 }, - "m_targetLocation": { - "type": "class Vector3D", + "m_iconKey": { + "type": "std::string", "id": 1, - "offset": 80, - "flags": 135, + "offset": 168, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2653859938 + "hash": 2457138637 }, - "m_fSpeed": { - "type": "float", + "m_displayKey": { + "type": "std::string", "id": 2, - "offset": 96, - "flags": 135, + "offset": 104, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 503609006 + "hash": 3023276954 }, - "m_fEaseInPercent": { - "type": "float", + "m_serviceIndex": { + "type": "unsigned int", "id": 3, - "offset": 112, - "flags": 135, + "offset": 204, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1482967843 + "hash": 2103126710 }, - "m_fEaseOutPercent": { - "type": "float", + "m_forceInteract": { + "type": "bool", "id": 4, - "offset": 116, - "flags": 135, + "offset": 200, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1272154212 + "hash": 1705789564 }, - "m_fTotalDistance": { - "type": "float", + "m_underwayText": { + "type": "std::string", "id": 5, - "offset": 120, - "flags": 135, + "offset": 224, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1894338732 + "hash": 3006734255 + }, + "m_questID": { + "type": "gid", + "id": 6, + "offset": 216, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1246549335 } } }, - "1957332194": { - "name": "class SharedPointer", + "1159827564": { + "name": "class CrownServicesOption*", "bases": [ - "ObstacleCourseSpringboardBehavior", - "ObstacleCourseObstacleBehavior", - "BehaviorInstance", + "ServiceOptionBase", "PropertyClass" ], - "hash": 1957332194, + "hash": 1159827564, "properties": { - "m_behaviorTemplateNameID": { + "m_serviceName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2206028813 + }, + "m_iconKey": { + "type": "std::string", + "id": 1, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2457138637 + }, + "m_displayKey": { + "type": "std::string", + "id": 2, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3023276954 + }, + "m_serviceIndex": { "type": "unsigned int", + "id": 3, + "offset": 204, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2103126710 + }, + "m_forceInteract": { + "type": "bool", + "id": 4, + "offset": 200, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1705789564 + } + } + }, + "1587650672": { + "name": "class SharedPointer", + "bases": [ + "ServiceOptionBase", + "PropertyClass" + ], + "hash": 1587650672, + "properties": { + "m_serviceName": { + "type": "std::string", "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2206028813 + }, + "m_iconKey": { + "type": "std::string", + "id": 1, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2457138637 + }, + "m_displayKey": { + "type": "std::string", + "id": 2, "offset": 104, - "flags": 39, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 + "hash": 3023276954 + }, + "m_serviceIndex": { + "type": "unsigned int", + "id": 3, + "offset": 204, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2103126710 + }, + "m_forceInteract": { + "type": "bool", + "id": 4, + "offset": 200, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1705789564 } } }, - "1000791117": { - "name": "class Color", + "2018081055": { + "name": "class std::list >", "bases": [], - "hash": 1000791117, + "hash": 2018081055, "properties": {} }, - "386133565": { - "name": "class PlayDeck", + "297651831": { + "name": "class SharedPointer", "bases": [ "PropertyClass" ], - "hash": 386133565, + "hash": 297651831, "properties": { - "m_deckToSave": { - "type": "class SharedPointer", + "m_className": { + "type": "std::string", "id": 0, "offset": 72, "flags": 7, - "container": "Vector", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1977265360 + "pointer": false, + "hash": 2220521682 }, - "m_graveYardToSave": { - "type": "class SharedPointer", + "m_petCount": { + "type": "unsigned int", "id": 1, - "offset": 96, + "offset": 108, "flags": 7, - "container": "Vector", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3785577598 + "pointer": false, + "hash": 2215607743 } } }, - "1156005769": { - "name": "class TileMaterial*", + "743789384": { + "name": "class SharedPointer", "bases": [ - "Material", + "DerbyModifyRate", + "DerbyEffect", "PropertyClass" ], - "hash": 1156005769, + "hash": 743789384, "properties": { - "m_sMaterialName": { - "type": "std::wstring", + "m_buffType": { + "type": "enum DerbyTalentBuffType", "id": 0, - "offset": 72, - "flags": 135, + "offset": 92, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1299185467 + "hash": 1149251982, + "enum_options": { + "Buff": 0, + "Debuff": 1, + "Neither": 2 + } }, - "m_Blending": { - "type": "enum Material::Blending", + "m_kTarget": { + "type": "enum DerbyTargetType", "id": 1, - "offset": 116, + "offset": 96, "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3003693822, + "hash": 1807803351, "enum_options": { - "B_NONE": 0, - "B_ADDITIVE": 1, - "B_ALPHA": 2, - "B_ALPHA_INV": 3, - "B_ADDITIVE_INV": 4, - "__DEFAULT": "B_ALPHA" + "kTargetInFront": 0, + "kTargetBehind": 1, + "kTargetFirst": 2, + "kTargetSelf": 3, + "kTargetAll": 4, + "kTargetLast": 5 } }, - "m_eRepeat": { - "type": "enum Material::Repeating", + "m_nDuration": { + "type": "int", "id": 2, - "offset": 176, - "flags": 2097159, + "offset": 104, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3302018843, - "enum_options": { - "R_NONE": 0, - "R_REPEAT": 1 - } + "hash": 1110167982 }, - "m_pDiffuseMap": { - "type": "class SharedPointer", + "m_effectID": { + "type": "unsigned int", "id": 3, - "offset": 120, - "flags": 135, + "offset": 88, + "flags": 24, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 4008975679 + "pointer": false, + "hash": 2347630439 }, - "m_pAlphaMask": { - "type": "class SharedPointer", + "m_imageFilename": { + "type": "std::string", "id": 4, - "offset": 136, - "flags": 135, + "offset": 112, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3411451405 + "pointer": false, + "hash": 2813328063 }, - "m_fLastAlpha": { - "type": "float", + "m_iconIndex": { + "type": "unsigned int", "id": 5, - "offset": 152, - "flags": 135, + "offset": 144, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 284727287 + "hash": 1265133262 }, - "m_Diffuse": { - "type": "class Color", + "m_soundOnActivate": { + "type": "std::string", "id": 6, - "offset": 156, - "flags": 262279, + "offset": 152, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1644364836 + "hash": 1956929714 }, - "m_Ambient": { - "type": "class Color", + "m_soundOnTarget": { + "type": "std::string", "id": 7, - "offset": 160, - "flags": 262279, + "offset": 184, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2216816350 + "hash": 3444214056 }, - "m_Specular": { - "type": "class Color", + "m_targetParticleEffect": { + "type": "std::string", "id": 8, - "offset": 168, - "flags": 262279, + "offset": 216, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2645528957 + "hash": 3048234723 }, - "m_fSpecularPower": { - "type": "float", + "m_overheadMessage": { + "type": "std::string", "id": 9, - "offset": 172, - "flags": 135, + "offset": 248, + "flags": 8388639, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 539146057 + "hash": 1701018190 }, - "m_Frames": { - "type": "class Rect", + "m_requirements": { + "type": "class RequirementList", "id": 10, - "offset": 192, - "flags": 65671, - "container": "Vector", - "dynamic": true, + "offset": 280, + "flags": 31, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 3064301836 + "hash": 2840988582 }, - "m_nCurrentFrame": { + "m_nRateChange": { "type": "int", "id": 11, - "offset": 216, - "flags": 135, + "offset": 376, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 45308854 + "hash": 797681786 + } + } + }, + "1152306685": { + "name": "class CoreObject", + "bases": [ + "PropertyClass" + ], + "hash": 1152306685, + "properties": { + "m_inactiveBehaviors": { + "type": "class SharedPointer", + "id": 0, + "offset": 224, + "flags": 31, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1850812559 }, - "m_fAnimRate": { - "type": "float", - "id": 12, - "offset": 228, - "flags": 135, + "m_globalID.m_full": { + "type": "unsigned __int64", + "id": 1, + "offset": 72, + "flags": 16777247, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 802385934 + "hash": 2312465444 }, - "m_nAnimBegin": { - "type": "int", - "id": 13, - "offset": 220, - "flags": 135, + "m_permID": { + "type": "unsigned __int64", + "id": 2, + "offset": 80, + "flags": 16777247, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 400513266 + "hash": 1298909658 }, - "m_nAnimEnd": { - "type": "int", - "id": 14, - "offset": 224, - "flags": 135, + "m_location": { + "type": "class Vector3D", + "id": 3, + "offset": 168, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1081103460 + "hash": 2239683611 }, - "m_fAnimTime": { - "type": "float", - "id": 15, - "offset": 232, - "flags": 134, + "m_orientation": { + "type": "class Vector3D", + "id": 4, + "offset": 180, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 802466289 + "hash": 2344058766 }, - "m_fMaterialScaleX": { + "m_fScale": { "type": "float", - "id": 16, - "offset": 180, - "flags": 135, + "id": 5, + "offset": 196, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 634638220 + "hash": 503137701 }, - "m_fMaterialScaleY": { - "type": "float", - "id": 17, - "offset": 184, - "flags": 135, + "m_templateID.m_full": { + "type": "unsigned __int64", + "id": 6, + "offset": 96, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 634638221 + "hash": 633907631 }, - "m_TilesX": { - "type": "int", - "id": 18, - "offset": 240, - "flags": 135, + "m_debugName": { + "type": "std::string", + "id": 7, + "offset": 104, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1882401395 + "hash": 3553984419 }, - "m_TilesY": { - "type": "int", - "id": 19, - "offset": 244, - "flags": 135, + "m_displayKey": { + "type": "std::string", + "id": 8, + "offset": 136, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1882401396 - } - } - }, - "1549113201": { - "name": "class SharedPointer", - "bases": [ - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 1549113201, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, + "hash": 3023276954 + }, + "m_zoneTagID": { + "type": "unsigned int", + "id": 9, + "offset": 344, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 + "hash": 965291410 }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, + "m_speedMultiplier": { + "type": "short", + "id": 10, + "offset": 192, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2285866132 + "hash": 123130076 + }, + "m_nMobileID": { + "type": "unsigned short", + "id": 11, + "offset": 194, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1054318939 } } }, - "2624835": { - "name": "char", - "bases": [], - "hash": 2624835, - "properties": {} - }, - "1958082306": { - "name": "class SharedPointer", + "1581425519": { + "name": "class CinematicStageTemplate*", "bases": [ - "GameEffectTemplate", "PropertyClass" ], - "hash": 1958082306, + "hash": 1581425519, "properties": { - "m_effectName": { + "m_name": { "type": "std::string", "id": 0, "offset": 72, @@ -488098,10 +240408,10 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 2029161513 + "hash": 1717359772 }, - "m_effectCategory": { - "type": "std::string", + "m_duration": { + "type": "float", "id": 1, "offset": 104, "flags": 7, @@ -488109,196 +240419,236 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 1852673222 + "hash": 920323453 }, - "m_sortOrder": { - "type": "int", + "m_actions": { + "type": "class SharedPointer", "id": 2, - "offset": 148, + "offset": 112, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 1411218206 + "pointer": true, + "hash": 1380578687 }, - "m_duration": { - "type": "double", + "m_stageRelationships": { + "type": "class SharedPointer", "id": 3, - "offset": 192, + "offset": 128, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 2727932435 + "pointer": true, + "hash": 499983354 + } + } + }, + "743775317": { + "name": "class BattleCardShopOffering*", + "bases": [ + "PropertyClass" + ], + "hash": 743775317, + "properties": { + "m_battleCardsForSale": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2232728892 }, - "m_stackingCategories": { - "type": "std::string", - "id": 4, - "offset": 160, - "flags": 7, + "m_givenSpells": { + "type": "class SharedPointer", + "id": 1, + "offset": 88, + "flags": 31, "container": "List", "dynamic": true, "singleton": false, - "pointer": false, - "hash": 1774497525 + "pointer": true, + "hash": 3004531772 }, - "m_isPersistent": { - "type": "bool", - "id": 5, - "offset": 153, - "flags": 7, + "m_maxTotalBattleCards": { + "type": "int", + "id": 2, + "offset": 104, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 923861920 + "hash": 142607341 }, - "m_bIsOnPet": { - "type": "bool", - "id": 6, - "offset": 154, - "flags": 7, - "container": "Static", - "dynamic": false, + "m_nextLevelBattleCards": { + "type": "std::string", + "id": 3, + "offset": 112, + "flags": 31, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 522593303 - }, - "m_isPublic": { - "type": "bool", - "id": 7, - "offset": 152, + "hash": 2945949819 + } + } + }, + "1149515186": { + "name": "class SharedPointer", + "bases": [ + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 1149515186, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1728439822 + "hash": 2237098605 }, - "m_visualEffectAddName": { + "m_actor": { "type": "std::string", - "id": 8, - "offset": 200, + "id": 1, + "offset": 80, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3382086694 - }, - "m_visualEffectRemoveName": { - "type": "std::string", - "id": 9, - "offset": 232, - "flags": 7, + "hash": 2285866132 + } + } + }, + "1581265199": { + "name": "class HousingMusicBehavior*", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1581265199, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1541697323 - }, - "m_onAddFunctorName": { - "type": "std::string", - "id": 10, - "offset": 280, + "hash": 223437287 + } + } + }, + "1148430887": { + "name": "class ClientSetHangingEffectAlphaCinematicAction", + "bases": [ + "SetHangingEffectAlphaCinematicAction", + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 1148430887, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1561843107 + "hash": 2237098605 }, - "m_onRemoveFunctorName": { + "m_actor": { "type": "std::string", - "id": 11, - "offset": 312, + "id": 1, + "offset": 80, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2559017864 + "hash": 2285866132 }, - "m_stackingRule": { - "type": "enum STACKING_RULE", - "id": 12, - "offset": 144, - "flags": 2097159, + "m_cloaked": { + "type": "bool", + "id": 2, + "offset": 120, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 431568889, - "enum_options": { - "STACKING_ALLOWED": 0, - "STACKING_NOSTACK": 1, - "STACKING_REPLACE": 2 - } + "hash": 7349510 }, - "m_triggerName": { - "type": "std::string", - "id": 13, - "offset": 360, + "m_alpha": { + "type": "float", + "id": 3, + "offset": 124, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3100183568 + "hash": 878686493 } } }, - "84951489": { - "name": "class Hand", + "1579974194": { + "name": "class WinAnimMoveToLocation", "bases": [ + "WindowAnimation", "PropertyClass" ], - "hash": 84951489, + "hash": 1579974194, "properties": { - "m_spellList": { - "type": "class SharedPointer", + "m_bUseDeepCopy": { + "type": "bool", "id": 0, "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, + "flags": 135, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1541139342 + "pointer": false, + "hash": 433380635 }, - "m_spellFusionList": { - "type": "class SpellTemplate*", + "m_targetLocation": { + "type": "class Vector3D", "id": 1, - "offset": 88, - "flags": 7, - "container": "List", - "dynamic": true, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2334460620 + "pointer": false, + "hash": 2653859938 } } }, - "1156653022": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1156653022, - "properties": {} - }, - "23359649": { - "name": "class SharedPointer", + "2018695721": { + "name": "class PromoGift*", "bases": [ - "ServiceOptionBase", "PropertyClass" ], - "hash": 23359649, + "hash": 2018695721, "properties": { - "m_serviceName": { - "type": "std::string", + "m_rewardID": { + "type": "unsigned __int64", "id": 0, "offset": 72, "flags": 31, @@ -488306,509 +240656,511 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 2206028813 + "hash": 1967538827 }, - "m_iconKey": { - "type": "std::string", + "m_rewardModifier": { + "type": "unsigned __int64", "id": 1, - "offset": 168, + "offset": 112, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2457138637 + "hash": 1325279053 }, - "m_displayKey": { + "m_giftID": { "type": "std::string", "id": 2, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3023276954 - }, - "m_serviceIndex": { - "type": "unsigned int", - "id": 3, - "offset": 204, + "offset": 80, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2103126710 + "hash": 1975989138 }, - "m_forceInteract": { + "m_autoRedeem": { "type": "bool", - "id": 4, - "offset": 200, + "id": 3, + "offset": 120, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1705789564 + "hash": 665366430 } } }, - "386715787": { - "name": "class SharedPointer", + "1148237114": { + "name": "class TrackedPlant*", "bases": [ "PropertyClass" ], - "hash": 386715787, + "hash": 1148237114, + "properties": {} + }, + "1579973426": { + "name": "class WinAnimMoveToLocation*", + "bases": [ + "WindowAnimation", + "PropertyClass" + ], + "hash": 1579973426, "properties": { - "m_mapList": { - "type": "class DoodleMapPair", + "m_bUseDeepCopy": { + "type": "bool", "id": 0, "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, + "flags": 135, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 2964081080 + "hash": 433380635 + }, + "m_targetLocation": { + "type": "class Vector3D", + "id": 1, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2653859938 } } }, - "1549500791": { - "name": "class QuestEffectTemplate*", + "2018675241": { + "name": "class PromoGift", "bases": [ - "ContainerEffectTemplate", - "GameEffectTemplate", "PropertyClass" ], - "hash": 1549500791, + "hash": 2018675241, "properties": { - "m_effectName": { - "type": "std::string", + "m_rewardID": { + "type": "unsigned __int64", "id": 0, "offset": 72, - "flags": 7, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2029161513 + "hash": 1967538827 }, - "m_effectCategory": { - "type": "std::string", + "m_rewardModifier": { + "type": "unsigned __int64", "id": 1, - "offset": 104, - "flags": 7, + "offset": 112, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1852673222 + "hash": 1325279053 }, - "m_sortOrder": { - "type": "int", + "m_giftID": { + "type": "std::string", "id": 2, - "offset": 148, - "flags": 7, + "offset": 80, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1411218206 + "hash": 1975989138 }, - "m_duration": { - "type": "double", + "m_autoRedeem": { + "type": "bool", "id": 3, - "offset": 192, - "flags": 7, + "offset": 120, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2727932435 - }, - "m_stackingCategories": { - "type": "std::string", - "id": 4, - "offset": 160, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1774497525 - }, - "m_isPersistent": { - "type": "bool", - "id": 5, - "offset": 153, - "flags": 7, + "hash": 665366430 + } + } + }, + "300233778": { + "name": "class SharedPointer", + "bases": [ + "GameEffectBase", + "PropertyClass" + ], + "hash": 300233778, + "properties": { + "m_currentTickCount": { + "type": "double", + "id": 0, + "offset": 80, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 923861920 + "hash": 2533274692 }, - "m_bIsOnPet": { - "type": "bool", - "id": 6, - "offset": 154, - "flags": 7, + "m_effectNameID": { + "type": "unsigned int", + "id": 1, + "offset": 96, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 522593303 + "hash": 1204067144 }, - "m_isPublic": { + "m_bIsOnPet": { "type": "bool", - "id": 7, - "offset": 152, - "flags": 7, + "id": 2, + "offset": 73, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1728439822 + "hash": 522593303 }, - "m_visualEffectAddName": { - "type": "std::string", - "id": 8, - "offset": 200, - "flags": 7, + "m_originatorID": { + "type": "gid", + "id": 3, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3382086694 + "hash": 1131810019 }, - "m_visualEffectRemoveName": { - "type": "std::string", - "id": 9, - "offset": 232, - "flags": 7, + "m_itemSlotID": { + "type": "unsigned int", + "id": 4, + "offset": 112, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1541697323 + "hash": 1895747595 }, - "m_onAddFunctorName": { - "type": "std::string", - "id": 10, - "offset": 280, - "flags": 7, + "m_internalID": { + "type": "int", + "id": 5, + "offset": 92, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1561843107 + "hash": 1643137924 }, - "m_onRemoveFunctorName": { - "type": "std::string", - "id": 11, - "offset": 312, - "flags": 7, + "m_endTime": { + "type": "unsigned int", + "id": 6, + "offset": 88, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2559017864 + "hash": 716479635 }, - "m_stackingRule": { - "type": "enum STACKING_RULE", - "id": 12, - "offset": 144, - "flags": 2097159, + "m_xpPercent": { + "type": "int", + "id": 7, + "offset": 128, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 431568889, - "enum_options": { - "STACKING_ALLOWED": 0, - "STACKING_NOSTACK": 1, - "STACKING_REPLACE": 2 - } - }, - "m_startReqs": { - "type": "class SharedPointer", - "id": 13, - "offset": 360, - "flags": 7, - "container": "Static", - "dynamic": false, + "hash": 755316563 + } + } + }, + "743816277": { + "name": "class BattleCardShopOffering", + "bases": [ + "PropertyClass" + ], + "hash": 743816277, + "properties": { + "m_battleCardsForSale": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 31, + "container": "List", + "dynamic": true, "singleton": false, "pointer": true, - "hash": 3147529602 + "hash": 2232728892 }, - "m_containerEffects": { - "type": "class SharedPointer", - "id": 14, - "offset": 376, - "flags": 7, + "m_givenSpells": { + "type": "class SharedPointer", + "id": 1, + "offset": 88, + "flags": 31, "container": "List", "dynamic": true, "singleton": false, "pointer": true, - "hash": 957354392 + "hash": 3004531772 }, - "m_accompanyID": { - "type": "unsigned int", - "id": 15, - "offset": 392, - "flags": 7, + "m_maxTotalBattleCards": { + "type": "int", + "id": 2, + "offset": 104, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1462123093 + "hash": 142607341 + }, + "m_nextLevelBattleCards": { + "type": "std::string", + "id": 3, + "offset": 112, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2945949819 } } }, - "1959897505": { - "name": "class SharedPointer", + "1146863221": { + "name": "class LeashedPathMovementBehaviorClient", "bases": [ - "BGPlayerInfo", + "LeashedPathMovementBehavior", + "BehaviorInstance", "PropertyClass" ], - "hash": 1959897505, + "hash": 1146863221, "properties": { - "m_playerID": { - "type": "gid", + "m_behaviorTemplateNameID": { + "type": "unsigned int", "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1774633426 - }, - "m_team": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 31, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1717579362 + "hash": 223437287 } } }, - "472810120": { - "name": "unsigned __int64", - "bases": [], - "hash": 472810120, - "properties": {} - }, - "1549455354": { - "name": "class ModifyPipRoundRateData", + "2018521747": { + "name": "class SharedPointer", "bases": [ "PropertyClass" ], - "hash": 1549455354, + "hash": 2018521747, "properties": { - "m_delta": { - "type": "int", + "m_objList": { + "type": "gid", "id": 0, "offset": 72, "flags": 31, - "container": "Static", - "dynamic": false, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 791787588 - }, - "m_rounds": { - "type": "int", - "id": 1, - "offset": 76, - "flags": 31, + "hash": 72042095 + } + } + }, + "1146863141": { + "name": "class LeashedPathMovementBehaviorClient*", + "bases": [ + "LeashedPathMovementBehavior", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1146863141, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 916427829 + "hash": 223437287 } } }, - "23696098": { - "name": "buf16", - "bases": [], - "hash": 23696098, + "1580058821": { + "name": "class NodeDescriptor*", + "bases": [ + "PropertyClass" + ], + "hash": 1580058821, "properties": {} }, - "1157637127": { - "name": "class DerbyRemoveAction", + "300799690": { + "name": "class ClientMoveActorCinematicAction", "bases": [ - "DerbyEffect", + "MoveActorCinematicAction", + "ActorCinematicAction", + "CinematicAction", "PropertyClass" ], - "hash": 1157637127, + "hash": 300799690, "properties": { - "m_buffType": { - "type": "enum DerbyTalentBuffType", + "m_timeOffset": { + "type": "float", "id": 0, - "offset": 92, - "flags": 2097183, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1149251982, - "enum_options": { - "Buff": 0, - "Debuff": 1, - "Neither": 2 - } + "hash": 2237098605 }, - "m_kTarget": { - "type": "enum DerbyTargetType", + "m_actor": { + "type": "std::string", "id": 1, - "offset": 96, - "flags": 2097159, + "offset": 80, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1807803351, - "enum_options": { - "kTargetInFront": 0, - "kTargetBehind": 1, - "kTargetFirst": 2, - "kTargetSelf": 3, - "kTargetAll": 4, - "kTargetLast": 5 - } + "hash": 2285866132 }, - "m_nDuration": { - "type": "int", + "m_destinationActor": { + "type": "std::string", "id": 2, - "offset": 104, - "flags": 31, + "offset": 120, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1110167982 + "hash": 1510240374 }, - "m_effectID": { - "type": "unsigned int", + "m_interpolationDuration": { + "type": "float", "id": 3, - "offset": 88, - "flags": 24, + "offset": 152, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2347630439 + "hash": 1458058437 }, - "m_imageFilename": { - "type": "std::string", + "m_interpolateRotation": { + "type": "bool", "id": 4, - "offset": 112, - "flags": 131103, + "offset": 156, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2813328063 + "hash": 2140337898 }, - "m_iconIndex": { - "type": "unsigned int", + "m_kDestination": { + "type": "enum MoveActorCinematicAction::kMoveActorDestination", "id": 5, - "offset": 144, - "flags": 31, + "offset": 160, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1265133262 + "hash": 2027574244, + "enum_options": { + "kCenter": 0, + "kHome": 3, + "kActor": 1, + "kActorHangingEffect": 2 + } }, - "m_soundOnActivate": { - "type": "std::string", + "m_destinationZOffset": { + "type": "float", "id": 6, - "offset": 152, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1956929714 - }, - "m_soundOnTarget": { - "type": "std::string", - "id": 7, - "offset": 184, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3444214056 - }, - "m_targetParticleEffect": { - "type": "std::string", - "id": 8, - "offset": 216, - "flags": 131103, + "offset": 164, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3048234723 - }, - "m_overheadMessage": { + "hash": 2188240922 + } + } + }, + "746172267": { + "name": "class HelpChatElement", + "bases": [ + "PropertyClass" + ], + "hash": 746172267, + "properties": { + "m_labelKey": { "type": "std::string", - "id": 9, - "offset": 248, - "flags": 8388639, + "id": 0, + "offset": 72, + "flags": 8388615, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1701018190 + "hash": 3291650660 }, - "m_requirements": { - "type": "class RequirementList", - "id": 10, - "offset": 280, - "flags": 31, + "m_tipID": { + "type": "gid", + "id": 1, + "offset": 104, + "flags": 33554439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2840988582 + "hash": 810892562 }, - "m_nActionType": { - "type": "enum DerbyActionTargetType", - "id": 11, - "offset": 376, - "flags": 2097183, - "container": "Static", - "dynamic": false, + "m_children": { + "type": "class HelpChatElement*", + "id": 2, + "offset": 112, + "flags": 7, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 3401355432, - "enum_options": { - "Jump": 0, - "Duck": 1, - "AllExceptCheer": 2, - "Cheer": 3 - } + "pointer": true, + "hash": 1958485829 } } }, - "1959594853": { - "name": "class SchoolPipGauge", + "1580058725": { + "name": "class NodeDescriptor", + "bases": [ + "PropertyClass" + ], + "hash": 1580058725, + "properties": {} + }, + "300690939": { + "name": "class SharedPointer", "bases": [ "Window", "PropertyClass" ], - "hash": 1959594853, + "hash": 300690939, "properties": { "m_sName": { "type": "std::string", @@ -488825,7 +241177,7 @@ "type": "class SharedPointer", "id": 1, "offset": 112, - "flags": 65671, + "flags": 65667, "container": "Vector", "dynamic": true, "singleton": false, @@ -489023,935 +241375,968 @@ } } }, - "45337787": { - "name": "class LoyaltyStoreOption*", + "745039415": { + "name": "class CastleToursFavoritesBehaviorBase*", "bases": [ - "ServiceOptionBase", + "BehaviorInstance", "PropertyClass" ], - "hash": 45337787, + "hash": 745039415, "properties": { - "m_serviceName": { - "type": "std::string", + "m_behaviorTemplateNameID": { + "type": "unsigned int", "id": 0, - "offset": 72, - "flags": 31, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2206028813 + "hash": 223437287 }, - "m_iconKey": { + "m_castleToursFavoritesData": { "type": "std::string", "id": 1, - "offset": 168, - "flags": 31, + "offset": 128, + "flags": 575, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2457138637 - }, - "m_displayKey": { - "type": "std::string", - "id": 2, + "hash": 1708015073 + } + } + }, + "1148119782": { + "name": "class MobMonsterMagicBehavior*", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1148119782, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, "offset": 104, - "flags": 31, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3023276954 - }, - "m_serviceIndex": { + "hash": 223437287 + } + } + }, + "2019051106": { + "name": "class SharedPointer", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 2019051106, + "properties": { + "m_behaviorTemplateNameID": { "type": "unsigned int", - "id": 3, - "offset": 204, - "flags": 31, + "id": 0, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2103126710 + "hash": 223437287 + } + } + }, + "1147203225": { + "name": "class WhirlyBurlyPlanningData", + "bases": [ + "PropertyClass" + ], + "hash": 1147203225, + "properties": { + "m_unitTypesList": { + "type": "unsigned char", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2643134017 }, - "m_forceInteract": { - "type": "bool", - "id": 4, - "offset": 200, - "flags": 31, + "m_cardsUsedList": { + "type": "unsigned int", + "id": 1, + "offset": 88, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 711045287 + }, + "m_discardedCardsList": { + "type": "unsigned int", + "id": 2, + "offset": 104, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1939154233 + } + } + }, + "2018850768": { + "name": "class CastleToursFavoritesBehaviorTemplate*", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 2018850768, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1705789564 + "hash": 3130754092 } } }, - "700130": { - "name": "bui7", - "bases": [], - "hash": 700130, - "properties": {} - }, - "387833074": { - "name": "class SharedPointer", + "300799198": { + "name": "class SharedPointer", "bases": [ - "ControlButton", - "Window", "PropertyClass" ], - "hash": 387833074, + "hash": 300799198, "properties": { - "m_sName": { + "m_eventName": { "type": "std::string", "id": 0, - "offset": 80, - "flags": 135, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2306437263 + "hash": 3493260286 }, - "m_Children": { - "type": "class SharedPointer", + "m_basePoints": { + "type": "float", "id": 1, + "offset": 108, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 624575055 + }, + "m_repeatScaler": { + "type": "float", + "id": 2, "offset": 112, - "flags": 65671, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 322423826 + }, + "m_lifespan": { + "type": "std::string", + "id": 3, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3042809453 + }, + "m_collapse": { + "type": "bool", + "id": 4, + "offset": 156, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1782517958 + } + } + }, + "745497078": { + "name": "class SharedPointer", + "bases": [ + "SpellTemplate", + "CoreTemplate", + "PropertyClass" + ], + "hash": 745497078, + "properties": { + "m_behaviors": { + "type": "class BehaviorTemplate*", + "id": 0, + "offset": 72, + "flags": 7, "container": "Vector", "dynamic": true, "singleton": false, "pointer": true, - "hash": 2621225959 + "hash": 1197808594 }, - "m_Style": { - "type": "unsigned int", + "m_name": { + "type": "std::string", + "id": 1, + "offset": 96, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1717359772 + }, + "m_description": { + "type": "std::string", "id": 2, - "offset": 152, - "flags": 1048583, + "offset": 168, + "flags": 8388615, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152, - "SHOW_HOTKEY": 16777216, - "EFFECT_SCALE": 67108864, - "LOCK_ICON_SIZE": 33554432, - "LEFT_TEXT": 536870912, - "NO_FIT_TEXT": 1073741824 - } + "hash": 1649374815 }, - "m_Flags": { - "type": "unsigned int", + "m_advancedDescription": { + "type": "std::string", "id": 3, - "offset": 156, - "flags": 1048583, + "offset": 200, + "flags": 8388615, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } + "hash": 3465713013 }, - "m_Window": { - "type": "class Rect", + "m_displayName": { + "type": "std::string", "id": 4, - "offset": 160, - "flags": 135, + "offset": 136, + "flags": 8388615, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3105139380 + "hash": 2446900370 }, - "m_fTargetAlpha": { - "type": "float", + "m_spellBase": { + "type": "std::string", "id": 5, - "offset": 212, - "flags": 135, + "offset": 248, + "flags": 268435463, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1809129834 + "hash": 2688054198, + "enum_options": { + "__BASECLASS": "CinematicTemplate" + } }, - "m_fDisabledAlpha": { - "type": "float", + "m_effects": { + "type": "class SharedPointer", "id": 6, - "offset": 216, - "flags": 135, - "container": "Static", - "dynamic": false, + "offset": 280, + "flags": 7, + "container": "Vector", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 1389987675 + "pointer": true, + "hash": 370726379 }, - "m_fAlpha": { - "type": "float", + "m_sMagicSchoolName": { + "type": "std::string", "id": 7, - "offset": 208, - "flags": 65671, + "offset": 312, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 482130755 + "hash": 2035693400 }, - "m_pWindowStyle": { - "type": "class SharedPointer", + "m_sTypeName": { + "type": "std::string", "id": 8, - "offset": 232, - "flags": 135, + "offset": 352, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3623628394 + "pointer": false, + "hash": 3580785905 }, - "m_sHelp": { - "type": "std::wstring", + "m_trainingCost": { + "type": "int", "id": 9, - "offset": 248, - "flags": 4194439, + "offset": 384, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2102211316 + "hash": 982588239 }, - "m_sScript": { - "type": "std::string", + "m_accuracy": { + "type": "int", "id": 10, - "offset": 352, - "flags": 135, + "offset": 388, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1846695875 + "hash": 1636315493 }, - "m_Offset": { - "type": "class Point", + "m_baseCost": { + "type": "int", "id": 11, - "offset": 192, - "flags": 135, + "offset": 232, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3389835433 + "hash": 1475151502 }, - "m_Scale": { - "type": "class Point", + "m_creditsCost": { + "type": "int", "id": 12, - "offset": 200, - "flags": 135, + "offset": 236, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2547159940 + "hash": 715313825 }, - "m_sTip": { - "type": "std::wstring", + "m_pvpCurrencyCost": { + "type": "int", "id": 13, - "offset": 392, - "flags": 4194439, + "offset": 240, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1513510520 + "hash": 645595444 }, - "m_BubbleList": { - "type": "class WindowBubble", + "m_pvpTourneyCurrencyCost": { + "type": "int", "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, + "offset": 244, + "flags": 7, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 2587533771 + "hash": 517874954 }, - "m_ParentOffset": { - "type": "class Rect", + "m_boosterPackIcon": { + "type": "std::string", "id": 15, - "offset": 176, - "flags": 135, + "offset": 496, + "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3091503757 + "hash": 3428653697 }, - "m_bToggle": { - "type": "bool", + "m_validTargetSpells": { + "type": "unsigned int", "id": 16, - "offset": 608, - "flags": 135, - "container": "Static", - "dynamic": false, + "offset": 392, + "flags": 7, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 2071810903 + "hash": 2355782967 }, - "m_bButtonDown": { + "m_PvP": { "type": "bool", "id": 17, - "offset": 609, - "flags": 135, + "offset": 408, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 840041705 + "hash": 269492361 }, - "m_sLabel": { - "type": "std::wstring", + "m_PvE": { + "type": "bool", "id": 18, - "offset": 616, - "flags": 4194439, + "offset": 409, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2207009163 + "hash": 269492350 }, - "m_labelOffset": { - "type": "class Rect", + "m_noPvPEnchant": { + "type": "bool", "id": 19, - "offset": 832, - "flags": 135, + "offset": 410, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1990646723 + "hash": 661581703 }, - "m_pButton": { - "type": "class SharedPointer", + "m_noPvEEnchant": { + "type": "bool", "id": 20, - "offset": 656, - "flags": 135, + "offset": 411, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1543855875 + "pointer": false, + "hash": 10144220 }, - "m_HotKey": { - "type": "unsigned int", + "m_battlegroundsOnly": { + "type": "bool", "id": 21, - "offset": 672, - "flags": 135, + "offset": 412, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1631553409 + "hash": 1244782419 }, - "m_Color": { - "type": "class Color", + "m_Treasure": { + "type": "bool", "id": 22, - "offset": 676, - "flags": 262279, + "offset": 413, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1753714077 + "hash": 1749096414 }, - "m_bCursorOver": { + "m_noDiscard": { "type": "bool", "id": 23, - "offset": 689, - "flags": 135, + "offset": 414, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 283981103 + "hash": 565749226 }, - "m_bAbortWhenCursorNotOver": { + "m_leavesPlayWhenCast": { "type": "bool", "id": 24, - "offset": 706, - "flags": 135, + "offset": 532, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 325405258 + "hash": 698216294 }, - "m_bHotKeyDown": { - "type": "bool", + "m_imageIndex": { + "type": "int", "id": 25, - "offset": 680, - "flags": 135, + "offset": 416, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 616989185 + "hash": 1570500405 }, - "m_fTime": { - "type": "float", + "m_imageName": { + "type": "std::string", "id": 26, - "offset": 684, - "flags": 135, + "offset": 424, + "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 883746156 + "hash": 2391520543 }, - "m_bGreyed": { + "m_cloaked": { "type": "bool", "id": 27, - "offset": 688, - "flags": 135, + "offset": 489, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1566556053 + "hash": 7349510 }, - "m_fMaxScale": { - "type": "float", + "m_casterInvisible": { + "type": "bool", "id": 28, - "offset": 692, - "flags": 135, + "offset": 490, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2070186635 + "hash": 310214650 }, - "m_fScaleSpeed": { - "type": "float", + "m_adjectives": { + "type": "std::string", "id": 29, - "offset": 696, - "flags": 135, - "container": "Static", - "dynamic": false, + "offset": 576, + "flags": 7, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 1457135702 + "hash": 2967855037 }, - "m_bUseDropShadow": { - "type": "bool", + "m_spellSourceType": { + "type": "enum SpellTemplate::kSpellSourceType", "id": 30, - "offset": 704, - "flags": 135, + "offset": 528, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 93063037 + "hash": 156272727, + "enum_options": { + "kCaster": 0, + "kPet": 1, + "kShadowCreature": 2, + "kWeapon": 3, + "kEquipment": 4 + } }, - "m_bUseOutline": { - "type": "bool", + "m_cloakedName": { + "type": "std::string", "id": 31, - "offset": 705, - "flags": 135, + "offset": 536, + "flags": 268435463, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 744292994 + "hash": 2846679215, + "enum_options": { + "__BASECLASS": "SpellTemplate" + } }, - "m_pGreyedState": { - "type": "class SharedPointer", + "m_purchaseRequirements": { + "type": "class RequirementList*", "id": 32, - "offset": 768, - "flags": 135, + "offset": 608, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": true, - "hash": 2703352263 + "hash": 3174641793 }, - "m_pNormalState": { - "type": "class SharedPointer", + "m_displayRequirements": { + "type": "class RequirementList*", "id": 33, - "offset": 752, - "flags": 135, + "offset": 840, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": true, - "hash": 1887909808 + "hash": 3646782876 }, - "m_pHighlightedState": { - "type": "class SharedPointer", + "m_descriptionTrainer": { + "type": "std::string", "id": 34, - "offset": 784, - "flags": 135, + "offset": 616, + "flags": 8388871, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2200177608 + "pointer": false, + "hash": 1756093908 }, - "m_pSelectedState": { - "type": "class SharedPointer", + "m_descriptionCombatHUD": { + "type": "std::string", "id": 35, - "offset": 800, - "flags": 135, + "offset": 648, + "flags": 8388871, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2266776432 + "pointer": false, + "hash": 1631478006 }, - "m_pDepressedState": { - "type": "class SharedPointer", + "m_displayIndex": { + "type": "int", "id": 36, - "offset": 816, - "flags": 135, + "offset": 680, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1878185798 - } - } - }, - "1958374570": { - "name": "class SharedPointer", - "bases": [ - "LootInfo", - "LootInfoBase", - "PropertyClass" - ], - "hash": 1958374570, - "properties": { - "m_lootType": { - "type": "enum LootInfo::LOOT_TYPE", - "id": 0, - "offset": 72, - "flags": 2097183, + "pointer": false, + "hash": 1250551048 + }, + "m_hiddenFromEffectsWindow": { + "type": "bool", + "id": 37, + "offset": 684, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1591891442, - "enum_options": { - "LOOT_TYPE_NONE": 0, - "LOOT_TYPE_GOLD": 1, - "LOOT_TYPE_MANA": 2, - "LOOT_TYPE_ITEM": 3, - "LOOT_TYPE_TREASURE_CARD": 4, - "LOOT_TYPE_MAGIC_XP": 5, - "LOOT_TYPE_ADD_SPELL": 6, - "LOOT_TYPE_MAX_HEALTH": 7, - "LOOT_TYPE_MAX_GOLD": 8, - "LOOT_TYPE_MAX_MANA": 9, - "LOOT_TYPE_MAX_POTION": 10, - "LOOT_TYPE_TRAINING_POINTS": 11, - "LOOT_TYPE_RECIPE": 12, - "LOOT_TYPE_CRAFTING_SLOT": 13, - "LOOT_TYPE_REAGENT": 14, - "LOOT_TYPE_PETSNACK": 15, - "LOOT_TYPE_GARDENING_XP": 16, - "LOOT_TYPE_PET_XP": 17, - "LOOT_TYPE_TREASURE_TABLE": 18, - "LOOT_TYPE_ARENA_POINTS": 19, - "LOOT_TYPE_ARENA_BONUS_POINTS": 20, - "LOOT_TYPE_GROUP": 21, - "LOOT_TYPE_FISHING_XP": 22, - "LOOT_TYPE_EVENT_CURRENCY_1": 24, - "LOOT_TYPE_EVENT_CURRENCY_2": 25, - "LOOT_TYPE_PVP_CURRENCY": 26, - "LOOT_TYPE_PVP_CURRENCY_BONUS": 27, - "LOOT_TYPE_PVP_TOURNEY_CURRENCY": 28, - "LOOT_TYPE_PVP_TOURNEY_CURRENCY_BONUS": 29, - "LOOT_TYPE_FURNITURE_ESSENCE": 30 - } - } - } - }, - "88457": { - "name": "int", - "bases": [], - "hash": 88457, - "properties": {} - }, - "387022445": { - "name": "class SharedPointer", - "bases": [ - "MatchActorResult", - "PropertyClass" - ], - "hash": 387022445, - "properties": { - "m_pActor": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 31, + "hash": 1832736331 + }, + "m_ignoreCharms": { + "type": "bool", + "id": 38, + "offset": 685, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1115051967 + "pointer": false, + "hash": 1840075893 }, - "m_place": { - "type": "int", - "id": 1, - "offset": 88, - "flags": 31, + "m_alwaysFizzle": { + "type": "bool", + "id": 39, + "offset": 686, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 806257663 + "hash": 2030988856 }, - "m_ratingGained": { - "type": "int", - "id": 2, - "offset": 92, - "flags": 31, + "m_spellCategory": { + "type": "std::string", + "id": 40, + "offset": 688, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1426436071 + "hash": 2472376729 }, - "m_arenaPoints": { - "type": "int", - "id": 3, - "offset": 96, - "flags": 31, + "m_showPolymorphedName": { + "type": "bool", + "id": 41, + "offset": 720, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 511478910 + "hash": 2097929096 }, - "m_pvpCurrency": { - "type": "int", - "id": 4, - "offset": 100, - "flags": 31, + "m_skipTruncation": { + "type": "bool", + "id": 42, + "offset": 721, + "flags": 263, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 611304283 + "hash": 1838335249 }, - "m_pvpTourneyCurrency": { - "type": "int", - "id": 5, - "offset": 104, - "flags": 31, + "m_maxCopies": { + "type": "unsigned int", + "id": 43, + "offset": 724, + "flags": 263, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1184787505 + "hash": 403022326 }, - "m_gold": { + "m_levelRestriction": { "type": "int", - "id": 6, - "offset": 108, - "flags": 31, + "id": 44, + "offset": 728, + "flags": 263, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 219423808 + "hash": 176502472 }, - "m_gameResult": { - "type": "unsigned char", - "id": 7, - "offset": 112, - "flags": 31, + "m_delayEnchantment": { + "type": "bool", + "id": 45, + "offset": 732, + "flags": 287, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1417654793 + "hash": 191336919 }, - "m_nFinishTime": { - "type": "unsigned int", - "id": 8, - "offset": 120, - "flags": 31, + "m_delayEnchantmentOrder": { + "type": "enum SpellEffect::kDelayOrder", + "id": 46, + "offset": 736, + "flags": 287, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1238925387 + "hash": 2526055263, + "enum_options": { + "SpellEffect::kAnyOrder": 0, + "SpellEffect::kFirst": 1, + "SpellEffect::kSecond": 2 + } }, - "m_nIndex": { - "type": "unsigned int", - "id": 9, - "offset": 124, - "flags": 31, + "m_previousSpellName": { + "type": "std::string", + "id": 47, + "offset": 744, + "flags": 268435463, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 925961299 - } - } - }, - "1157919952": { - "name": "class BlobRequestObject", - "bases": [ - "PropertyClass" - ], - "hash": 1157919952, - "properties": { - "m_subType": { + "hash": 2903322585, + "enum_options": { + "__BASECLASS": "SpellTemplate" + } + }, + "m_cardFront": { "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, + "id": 48, + "offset": 456, + "flags": 131359, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3175052615 + "hash": 3557598526 }, - "m_versionNumber": { - "type": "unsigned int", - "id": 1, - "offset": 104, - "flags": 7, + "m_useGloss": { + "type": "bool", + "id": 49, + "offset": 488, + "flags": 287, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1265259452 + "hash": 668817544 }, - "m_packageNumber": { - "type": "int", - "id": 2, - "offset": 108, - "flags": 7, + "m_ignoreDispel": { + "type": "bool", + "id": 50, + "offset": 776, + "flags": 287, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1934060719 + "hash": 1881041624 }, - "m_userData": { - "type": "unsigned int", - "id": 3, - "offset": 112, - "flags": 7, + "m_backRowFriendly": { + "type": "bool", + "id": 51, + "offset": 777, + "flags": 287, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 927280710 + "hash": 501584377 }, - "m_objectCount": { - "type": "unsigned int", - "id": 4, - "offset": 116, + "m_spellRank": { + "type": "class SharedPointer", + "id": 52, + "offset": 784, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 410139949 - } - } - }, - "1550016864": { - "name": "class SharedPointer", - "bases": [ - "TimerControlCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 1550016864, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, + "pointer": true, + "hash": 3152361374 + }, + "m_secondarySchoolName": { + "type": "std::string", + "id": 53, + "offset": 800, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 + "hash": 1803268236 }, - "m_bSetVisible": { - "type": "bool", - "id": 1, - "offset": 88, + "m_spellFusion": { + "type": "unsigned int", + "id": 54, + "offset": 836, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 471535983 + "hash": 1658928321 }, - "m_fTimeToSet": { - "type": "float", - "id": 2, - "offset": 84, + "m_requiredSchoolName": { + "type": "std::string", + "id": 55, + "offset": 848, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 661189659 + "hash": 3576058981 }, - "m_timerStrKey": { - "type": "std::string", - "id": 3, - "offset": 96, - "flags": 8388615, + "m_castleMagicSpellType": { + "type": "enum CastleMagicSpellTemplate::CastleMagicSpellType", + "id": 56, + "offset": 880, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3000196414 + "hash": 1857887320, + "enum_options": { + "CM_Action": 0, + "CM_Effect": 1, + "CM_Utility": 2, + "CM_Logic": 3 + } }, - "m_timerOp": { - "type": "enum TimerControlCinematicAction::kControlOperation", - "id": 4, - "offset": 80, + "m_castleMagicSpellEffect": { + "type": "enum CastleMagicSpellTemplate::CastleMagicSpellEffect", + "id": 57, + "offset": 884, "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1809610086, + "hash": 1408413012, "enum_options": { - "kNone": 0, - "kStartTimer": 1, - "kSetVisible": 2, - "kSetTimerString": 3, - "kSetTimeToShow": 4 + "CM_None": 0, + "CM_MakeInvisible": 1, + "CM_MakeVisible": 2, + "CM_PlaySpellEffect": 3, + "CM_PlaySoundEffect": 4, + "CM_RestoreObject": 5, + "CM_MoveObject": 6, + "CM_TurnObject": 7, + "CM_ScaleObject": 8, + "CM_TeleportObject": 9, + "CM_MoveObjectToMe": 10, + "CM_MoveTowardMe": 11, + "CM_PlayMusicScroll": 12, + "CM_MoveObjectForward": 13, + "CM_MoveObjectBackward": 14, + "CM_TurnLikeMe": 15, + "CM_TurnTowardMe": 16, + "CM_LogicEffect": 17, + "CM_StartTimer": 18, + "CM_StopTimer": 19, + "CM_ActivateReflector": 20, + "CM_CameraShake": 21, + "CM_SetCounter": 22, + "CM_SetBrazier": 23, + "CM_UseItem": 24, + "CM_Solidify": 25, + "CM_PetControl": 26, + "CM_MountControl": 27, + "CM_CameraControl": 28, + "CM_TeleportPlayer": 29, + "CM_PVPSigilControl": 30, + "CM_TeleportAllPlayers": 31, + "CM_MakeTranslucent": 32, + "CM_MakeOpaque": 33, + "CM_SilenceItem": 34, + "CM_MoveFaster": 35, + "CM_PVPDuelModifier": 36, + "CM_StopMovement": 37, + "CM_UnsilenceItem": 38, + "CM_PlayInstrumentLoop": 39, + "CM_StopMusic": 40, + "CM_PlayMusicPlayer": 41, + "CM_PlayAsPetControl": 42 } - } - } - }, - "21858": { - "name": "bi7", - "bases": [], - "hash": 21858, - "properties": {} - }, - "387006904": { - "name": "class MadlibIconDefinition", - "bases": [ - "PropertyClass" - ], - "hash": 387006904, - "properties": { - "m_madlibIconDataList": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, + }, + "m_animationKFM": { + "type": "std::string", + "id": 58, + "offset": 888, + "flags": 131079, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3692830504 - } - } - }, - "1959076520": { - "name": "class UnlockTriggerBehaviorBase*", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1959076520, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, + "pointer": false, + "hash": 2466280761 + }, + "m_animationSequence": { + "type": "std::string", + "id": 59, + "offset": 920, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 - } - } - }, - "17762": { - "name": "bi3", - "bases": [], - "hash": 17762, - "properties": {} - }, - "1550045949": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1550045949, - "properties": { - "m_guildChatList": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, + "hash": 2493126132 + }, + "m_effectSchool": { + "type": "std::string", + "id": 60, + "offset": 952, "flags": 7, - "container": "List", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2707919623 + "pointer": false, + "hash": 2688245616 } } }, - "16738": { - "name": "bi2", - "bases": [], - "hash": 16738, - "properties": {} - }, - "1159010273": { - "name": "class SeedBehavior*", + "1581265159": { + "name": "class HousingMusicBehavior", "bases": [ "BehaviorInstance", "PropertyClass" ], - "hash": 1159010273, + "hash": 1581265159, "properties": { "m_behaviorTemplateNameID": { "type": "unsigned int", @@ -489966,316 +242351,125 @@ } } }, - "1158738341": { - "name": "class SummonMinionEffectInfo*", + "2018798352": { + "name": "class SharedPointer", "bases": [ - "GameEffectInfo", "PropertyClass" ], - "hash": 1158738341, + "hash": 2018798352, "properties": { - "m_effectName": { - "type": "std::string", + "m_Point": { + "type": "class Point", "id": 0, "offset": 72, - "flags": 31, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2029161513 + "hash": 2475294668 }, - "m_minionType": { - "type": "enum MinionType", + "m_Color": { + "type": "class Color", "id": 1, - "offset": 104, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3186373083, - "enum_options": { - "MT_NONE": 0, - "MT_ACCOMPANY": 1, - "MT_MINION": 2, - "MT_MONSTER": 3 - } - }, - "m_summonedTemplateID": { - "type": "int", - "id": 2, - "offset": 108, - "flags": 31, + "offset": 80, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1109386027 + "hash": 1753714077 } } }, - "1959594949": { - "name": "class SchoolPipGauge*", + "300800850": { + "name": "class SharedPointer", "bases": [ - "Window", + "BuffDebuffEventCinematicAction", + "ActorCinematicAction", + "CinematicAction", "PropertyClass" ], - "hash": 1959594949, + "hash": 300800850, "properties": { - "m_sName": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306437263 - }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621225959 - }, - "m_Style": { - "type": "unsigned int", - "id": 2, - "offset": 152, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "SCALE_CHILDREN": 2, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "FOCUS_LOCKED": 64, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152 - } - }, - "m_Flags": { - "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } - }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3105139380 - }, - "m_fTargetAlpha": { - "type": "float", - "id": 5, - "offset": 212, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1809129834 - }, - "m_fDisabledAlpha": { - "type": "float", - "id": 6, - "offset": 216, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1389987675 - }, - "m_fAlpha": { + "m_timeOffset": { "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 482130755 - }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3623628394 - }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, + "id": 0, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2102211316 + "hash": 2237098605 }, - "m_sScript": { + "m_actor": { "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1846695875 - }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3389835433 - }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2547159940 - }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2587533771 - }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, + "id": 1, + "offset": 80, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3091503757 + "hash": 2285866132 } } }, - "388156276": { - "name": "class MountItemBehaviorTemplate", + "746175339": { + "name": "class HelpChatElement*", "bases": [ - "BehaviorTemplate", "PropertyClass" ], - "hash": 388156276, + "hash": 746175339, "properties": { - "m_behaviorName": { + "m_labelKey": { "type": "std::string", "id": 0, "offset": 72, - "flags": 7, + "flags": 8388615, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3130754092 + "hash": 3291650660 }, - "m_eGender": { - "type": "enum eGender", + "m_tipID": { + "type": "gid", "id": 1, - "offset": 168, - "flags": 2097159, + "offset": 104, + "flags": 33554439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2776344943, - "enum_options": { - "Male": 1, - "Female": 0, - "Neutral": 2 - } + "hash": 810892562 }, + "m_children": { + "type": "class HelpChatElement*", + "id": 2, + "offset": 112, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1958485829 + } + } + }, + "1148351857": { + "name": "class CharacterRaceTable", + "bases": [ + "PropertyClass" + ], + "hash": 1148351857, + "properties": { "m_eRace": { "type": "enum eRace", - "id": 2, - "offset": 172, - "flags": 2097159, + "id": 0, + "offset": 72, + "flags": 136314887, "container": "Static", "dynamic": false, "singleton": false, @@ -493061,248 +245255,20021 @@ "PP_Fairy_Fire": 1847789544, "MNT_Mustang_B": 1448793691, "PP_FireElfMyth": 1933609060, - "MNT_KT-BoatRide": 1560860110 + "MNT_KT-BoatRide": 1560860110, + "MNT_ShadowMagic": 2095978357, + "MNT_MardiGrasFloat_A": 1740674432, + "PP_ChineseNYSnake": 988201940, + "MNT_AnubisDog": 1995079956, + "PP_ShadowImp_A": 1604849432, + "PP_ShadowImp_B": 1604849438, + "PP_ShadowImp_C": 1604849436, + "MNT_ShadowMagic_B": 2093870965, + "MNT_ShadowMagic_C": 2093805429, + "Guest_KT_SE_Tritops_Warrior_I_01": 97516901, + "Guest_KT_SE_DS_Draconian_Model_01": 1916095079, + "Guest_KT_SE_Beetle_Scarab_C_01_L50": 1064004307, + "Guest_KT_SE_Roach_Warrior_C_03": 1872574203, + "Guest_KT_SE_Roach_Warrior_C_04": 1871918843, + "Guest_KT_SE_Roach_Warrior_C_05": 1871787771, + "Guest_KT_SE_Beetle_Scarab_C_01": 1353410759, + "Guest_KT_SE_Mander_Citizen_B_01_L50": 2044509396, + "Guest_KT_SE_Mander_CitizenF_B_01_L50": 164327682, + "Guest_KT_SE_Treant_Tormented_A_01": 1359800879, + "Guest_KT_SE_Treant_Base_A_01": 765512948, + "Guest_KT_SE_Mander_Citizen_F_D_05": 171244620, + "Guest_KT_SE_Mander_CitizenF_D_01": 163791037, + "Guest_KT_SE_Mander_CitizenF_D_02": 298008765, + "Guest_KT_SE_Mander_CitizenF_D_03": 432226493, + "Guest_KT_SE_Mander_CitizenF_D_04": 566444221, + "Guest_KT_SE_Mander_MummyF_A_01": 964349080, + "Guest_KT_SE_Mander_MummyF_A_02": 964480152, + "Guest_KT_SE_MC_Wraith_Model_01": 1101442118, + "Guest_KT_SE_Mander_CitizenF_B_02": 298000573, + "MNT_Wheelbarrow": 614248817, + "MNT_StubbornLlama": 221089074 + } + }, + "m_characterTables": { + "type": "class CharacterElementTable", + "id": 1, + "offset": 80, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1801114527 + }, + "m_defaultTable": { + "type": "class CharacterElementTable", + "id": 2, + "offset": 96, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1709886308 + }, + "m_commonTable": { + "type": "class CommonElementTable", + "id": 3, + "offset": 888, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1709304448 + }, + "m_raceAnimationSoundData": { + "type": "class SharedPointer", + "id": 4, + "offset": 984, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1474423978 + }, + "m_animationEventList": { + "type": "class SharedPointer", + "id": 5, + "offset": 1000, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2858101335 + } + } + }, + "1581384559": { + "name": "class CinematicStageTemplate", + "bases": [ + "PropertyClass" + ], + "hash": 1581384559, + "properties": { + "m_name": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1717359772 + }, + "m_duration": { + "type": "float", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 920323453 + }, + "m_actions": { + "type": "class SharedPointer", + "id": 2, + "offset": 112, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1380578687 + }, + "m_stageRelationships": { + "type": "class SharedPointer", + "id": 3, + "offset": 128, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 499983354 + } + } + }, + "2019292385": { + "name": "class ClientPetOwnerBehavior*", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 2019292385, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_maxSlots": { + "type": "unsigned char", + "id": 1, + "offset": 128, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 792508619 + }, + "m_morphingSlots": { + "type": "class SharedPointer", + "id": 2, + "offset": 112, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2241134624 + }, + "m_energyTickTimeSecs": { + "type": "unsigned int", + "id": 3, + "offset": 136, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1255384991 + }, + "m_energy": { + "type": "int", + "id": 4, + "offset": 132, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 405911268 + }, + "m_playingAsPet": { + "type": "bool", + "id": 5, + "offset": 140, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1865705156 + } + } + }, + "746461756": { + "name": "class PhysicsSimMassTube", + "bases": [ + "PhysicsSimMassCylinder", + "PhysicsSimMassSphere", + "PhysicsSimMass", + "PropertyClass" + ], + "hash": 746461756, + "properties": {} + }, + "302068699": { + "name": "class SharedPointer", + "bases": [ + "WindowAnimation", + "PropertyClass" + ], + "hash": 302068699, + "properties": { + "m_bUseDeepCopy": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 433380635 + }, + "m_nAmount": { + "type": "int", + "id": 1, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1788918332 + }, + "m_fTime": { + "type": "float", + "id": 2, + "offset": 84, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 883746156 + }, + "m_fTimeRemaining": { + "type": "float", + "id": 3, + "offset": 88, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1591443014 + }, + "m_bEndTutorialOnFinish": { + "type": "bool", + "id": 4, + "offset": 92, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1777836702 + } + } + }, + "1148906214": { + "name": "class MobMonsterMagicBehavior", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1148906214, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + } + } + }, + "1584390625": { + "name": "class ClientCameraReleaseCinematicAction*", + "bases": [ + "CameraReleaseCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 1584390625, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_releaseInterpolationDuration": { + "type": "float", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1807754278, + "enum_options": { + "__DEFAULT": "1.0" + } + } + } + }, + "301853426": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 301853426, + "properties": { + "m_socketNumber": { + "type": "unsigned int", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 772707167 + }, + "m_jewelID": { + "type": "gid", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 190876604 + } + } + }, + "1148824103": { + "name": "class ClientSetHangingEffectAlphaCinematicAction*", + "bases": [ + "SetHangingEffectAlphaCinematicAction", + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 1148824103, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + }, + "m_cloaked": { + "type": "bool", + "id": 2, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 7349510 + }, + "m_alpha": { + "type": "float", + "id": 3, + "offset": 124, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 878686493 + } + } + }, + "1583982124": { + "name": "class NaturalActCinematicStageTemplate", + "bases": [ + "CinematicStageTemplate", + "PropertyClass" + ], + "hash": 1583982124, + "properties": { + "m_name": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1717359772 + }, + "m_duration": { + "type": "float", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 920323453 + }, + "m_actions": { + "type": "class SharedPointer", + "id": 2, + "offset": 112, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1380578687 + }, + "m_stageRelationships": { + "type": "class SharedPointer", + "id": 3, + "offset": 128, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 499983354 + }, + "m_sound": { + "type": "std::string", + "id": 4, + "offset": 152, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2307644996 + }, + "m_animation": { + "type": "std::string", + "id": 5, + "offset": 184, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3431428731 + } + } + }, + "301407068": { + "name": "enum NPCDataList::ZONE_TYPE", + "bases": [], + "hash": 301407068, + "properties": {} + }, + "753781023": { + "name": "class ClientBurnAuraCinematicAction*", + "bases": [ + "BurnAuraCinematicAction", + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 753781023, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + } + } + }, + "1148513945": { + "name": "class WhirlyBurlyPlanningData*", + "bases": [ + "PropertyClass" + ], + "hash": 1148513945, + "properties": { + "m_unitTypesList": { + "type": "unsigned char", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2643134017 + }, + "m_cardsUsedList": { + "type": "unsigned int", + "id": 1, + "offset": 88, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 711045287 + }, + "m_discardedCardsList": { + "type": "unsigned int", + "id": 2, + "offset": 104, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1939154233 + } + } + }, + "1582149200": { + "name": "class SharedPointer", + "bases": [ + "ResultSourceType", + "Result", + "PropertyClass" + ], + "hash": 1582149200, + "properties": { + "m_sourceType": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2305508654 + }, + "m_zoneLevelMax": { + "type": "unsigned int", + "id": 1, + "offset": 76, + "flags": 263, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1028933895 + }, + "m_zoneLevelMin": { + "type": "unsigned int", + "id": 2, + "offset": 72, + "flags": 263, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1028934149 + }, + "m_templateID": { + "type": "gid", + "id": 3, + "offset": 112, + "flags": 33554439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1075328001 + }, + "m_quantity": { + "type": "int", + "id": 4, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 169215289 + } + } + }, + "2019293881": { + "name": "class Search::ResultList", + "bases": [ + "PropertyClass" + ], + "hash": 2019293881, + "properties": { + "m_items": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1610486152 + }, + "m_requestHandle": { + "type": "gid", + "id": 1, + "offset": 88, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 563564461 + } + } + }, + "301195382": { + "name": "class SharedPointer", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 301195382, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + } + } + }, + "749699656": { + "name": "class CastleGamesOption*", + "bases": [ + "ServiceOptionBase", + "PropertyClass" + ], + "hash": 749699656, + "properties": { + "m_serviceName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2206028813 + }, + "m_iconKey": { + "type": "std::string", + "id": 1, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2457138637 + }, + "m_displayKey": { + "type": "std::string", + "id": 2, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3023276954 + }, + "m_serviceIndex": { + "type": "unsigned int", + "id": 3, + "offset": 204, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2103126710 + }, + "m_forceInteract": { + "type": "bool", + "id": 4, + "offset": 200, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1705789564 + } + } + }, + "748620131": { + "name": "class SharedPointer", + "bases": [ + "Window", + "PropertyClass" + ], + "hash": 748620131, + "properties": { + "m_sName": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306437263 + }, + "m_Children": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 65667, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621225959 + }, + "m_Style": { + "type": "unsigned int", + "id": 2, + "offset": 152, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "SCALE_CHILDREN": 2, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "FOCUS_LOCKED": 64, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152 + } + }, + "m_Flags": { + "type": "unsigned int", + "id": 3, + "offset": 156, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } + }, + "m_Window": { + "type": "class Rect", + "id": 4, + "offset": 160, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3105139380 + }, + "m_fTargetAlpha": { + "type": "float", + "id": 5, + "offset": 212, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1809129834 + }, + "m_fDisabledAlpha": { + "type": "float", + "id": 6, + "offset": 216, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1389987675 + }, + "m_fAlpha": { + "type": "float", + "id": 7, + "offset": 208, + "flags": 65671, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 482130755 + }, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3623628394 + }, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2102211316 + }, + "m_sScript": { + "type": "std::string", + "id": 10, + "offset": 352, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1846695875 + }, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3389835433 + }, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547159940 + }, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513510520 + }, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3091503757 + } + } + }, + "747045036": { + "name": "class FishingInfo", + "bases": [ + "PropertyClass" + ], + "hash": 747045036, + "properties": { + "m_bodyOfWaterList": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 457750787 + } + } + }, + "2025151985": { + "name": "class SharedPointer", + "bases": [ + "ServiceOptionBase", + "PropertyClass" + ], + "hash": 2025151985, + "properties": { + "m_serviceName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2206028813 + }, + "m_iconKey": { + "type": "std::string", + "id": 1, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2457138637 + }, + "m_displayKey": { + "type": "std::string", + "id": 2, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3023276954 + }, + "m_serviceIndex": { + "type": "unsigned int", + "id": 3, + "offset": 204, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2103126710 + }, + "m_forceInteract": { + "type": "bool", + "id": 4, + "offset": 200, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1705789564 + } + } + }, + "301545591": { + "name": "class SharedPointer", + "bases": [ + "Window", + "PropertyClass" + ], + "hash": 301545591, + "properties": { + "m_sName": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306437263 + }, + "m_Children": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621225959 + }, + "m_Style": { + "type": "unsigned int", + "id": 2, + "offset": 152, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "SCALE_CHILDREN": 2, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "FOCUS_LOCKED": 64, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152 + } + }, + "m_Flags": { + "type": "unsigned int", + "id": 3, + "offset": 156, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } + }, + "m_Window": { + "type": "class Rect", + "id": 4, + "offset": 160, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3105139380 + }, + "m_fTargetAlpha": { + "type": "float", + "id": 5, + "offset": 212, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1809129834 + }, + "m_fDisabledAlpha": { + "type": "float", + "id": 6, + "offset": 216, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1389987675 + }, + "m_fAlpha": { + "type": "float", + "id": 7, + "offset": 208, + "flags": 65671, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 482130755 + }, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3623628394 + }, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2102211316 + }, + "m_sScript": { + "type": "std::string", + "id": 10, + "offset": 352, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1846695875 + }, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3389835433 + }, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547159940 + }, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513510520 + }, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3091503757 + } + } + }, + "746694127": { + "name": "class ArenaMatchInfo", + "bases": [ + "PropertyClass" + ], + "hash": 746694127, + "properties": { + "m_matchID": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1757621298 + }, + "m_matchNameID": { + "type": "unsigned int", + "id": 1, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1751361288 + }, + "m_teams": { + "type": "class SharedPointer", + "id": 2, + "offset": 96, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1984373608 + }, + "m_matchName": { + "type": "std::string", + "id": 3, + "offset": 112, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2061215721 + }, + "m_matchTitle": { + "type": "std::string", + "id": 4, + "offset": 144, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2918442218 + }, + "m_matchZoneID": { + "type": "gid", + "id": 5, + "offset": 176, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2026205966 + }, + "m_creatorID": { + "type": "gid", + "id": 6, + "offset": 88, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1051766037 + }, + "m_matchZone": { + "type": "std::string", + "id": 7, + "offset": 184, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2061662244 + }, + "m_startTime": { + "type": "int", + "id": 8, + "offset": 216, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1386968823 + }, + "m_status": { + "type": "int", + "id": 9, + "offset": 220, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 960781182 + }, + "m_friendsOnly": { + "type": "bool", + "id": 10, + "offset": 236, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1420401792 + }, + "m_tournamentNameID": { + "type": "unsigned int", + "id": 11, + "offset": 224, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1799846440 + }, + "m_leagueID": { + "type": "unsigned int", + "id": 12, + "offset": 228, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 692361645 + }, + "m_seasonID": { + "type": "unsigned int", + "id": 13, + "offset": 232, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 535260643 + }, + "m_bUpdateLadder": { + "type": "bool", + "id": 14, + "offset": 248, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1937525956 + }, + "m_maxPointsPerMatch": { + "type": "unsigned int", + "id": 15, + "offset": 240, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1397040900 + }, + "m_estimatedWeight": { + "type": "float", + "id": 16, + "offset": 244, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1374360127 + }, + "m_maxELOError": { + "type": "int", + "id": 17, + "offset": 252, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 318998922 + }, + "m_uniqueMatchID": { + "type": "std::string", + "id": 18, + "offset": 264, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3291026220 + }, + "m_pvpDuelModifiersTemplates": { + "type": "class SharedPointer", + "id": 19, + "offset": 296, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1193155411 + }, + "m_teamSize": { + "type": "unsigned int", + "id": 20, + "offset": 256, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2343388751 + } + } + }, + "1148928803": { + "name": "class GraphicalPvPCurrency", + "bases": [ + "GraphicalSpell", + "Spell", + "PropertyClass" + ], + "hash": 1148928803, + "properties": { + "m_templateID": { + "type": "unsigned int", + "id": 0, + "offset": 128, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1286746870 + }, + "m_enchantment": { + "type": "unsigned int", + "id": 1, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2217886818 + }, + "m_pipCost": { + "type": "class SharedPointer", + "id": 2, + "offset": 176, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3605704820 + }, + "m_regularAdjust": { + "type": "int", + "id": 3, + "offset": 192, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1420453335 + }, + "m_magicSchoolID": { + "type": "unsigned int", + "id": 4, + "offset": 136, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 893146499 + }, + "m_accuracy": { + "type": "unsigned char", + "id": 5, + "offset": 132, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2273914939 + }, + "m_treasureCard": { + "type": "bool", + "id": 6, + "offset": 197, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1764879128 + }, + "m_battleCard": { + "type": "bool", + "id": 7, + "offset": 198, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1332843753 + }, + "m_itemCard": { + "type": "bool", + "id": 8, + "offset": 199, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1683654300 + }, + "m_sideBoard": { + "type": "bool", + "id": 9, + "offset": 200, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1897838368 + }, + "m_spellID": { + "type": "unsigned int", + "id": 10, + "offset": 204, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1697483258 + }, + "m_leavesPlayWhenCastOverride": { + "type": "bool", + "id": 11, + "offset": 216, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 874407398 + }, + "m_cloaked": { + "type": "bool", + "id": 12, + "offset": 196, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 7349510 + }, + "m_enchantmentSpellIsItemCard": { + "type": "bool", + "id": 13, + "offset": 76, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 531590701 + }, + "m_premutationSpellID": { + "type": "unsigned int", + "id": 14, + "offset": 112, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1530256370 + }, + "m_enchantedThisCombat": { + "type": "bool", + "id": 15, + "offset": 77, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1895738923 + }, + "m_paramOverrides": { + "type": "class SharedPointer", + "id": 16, + "offset": 224, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2061635599 + }, + "m_subEffectMeta": { + "type": "class SharedPointer", + "id": 17, + "offset": 240, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1944101106 + }, + "m_delayEnchantment": { + "type": "bool", + "id": 18, + "offset": 257, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 191336919 + }, + "m_PvE": { + "type": "bool", + "id": 19, + "offset": 264, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 269492350 + }, + "m_delayEnchantmentOrder": { + "type": "enum SpellEffect::kDelayOrder", + "id": 20, + "offset": 72, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2526055263, + "enum_options": { + "SpellEffect::kAnyOrder": 0, + "SpellEffect::kFirst": 1, + "SpellEffect::kSecond": 2 + } + }, + "m_roundAddedTC": { + "type": "int", + "id": 21, + "offset": 260, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 112365451 + }, + "m_secondarySchoolID": { + "type": "unsigned int", + "id": 22, + "offset": 304, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2081206026 + }, + "m_fusionState": { + "type": "enum Spell::FusionState", + "id": 23, + "offset": 308, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 835324539, + "enum_options": { + "FS_Invalid": 0, + "FS_Partial": 1, + "FS_Valid": 2 + } + } + } + }, + "1585320665": { + "name": "class GamebryoBody*", + "bases": [ + "Body", + "PropertyClass" + ], + "hash": 1585320665, + "properties": { + "m_position": { + "type": "class Vector3D", + "id": 0, + "offset": 88, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3697900983 + }, + "m_pitch": { + "type": "float", + "id": 1, + "offset": 100, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 896371695 + }, + "m_roll": { + "type": "float", + "id": 2, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 310020272 + }, + "m_yaw": { + "type": "float", + "id": 3, + "offset": 108, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 357256328 + }, + "m_fHeight": { + "type": "float", + "id": 4, + "offset": 132, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 401539638 + }, + "m_scale": { + "type": "float", + "id": 5, + "offset": 112, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 899693439 + } + } + }, + "2023112937": { + "name": "class Search::ResultItem", + "bases": [ + "PropertyClass" + ], + "hash": 2023112937, + "properties": { + "m_userID": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1037989700 + }, + "m_userName": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2213937019 + }, + "m_characterID": { + "type": "gid", + "id": 2, + "offset": 112, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 210498386 + }, + "m_characterName": { + "type": "std::wstring", + "id": 3, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2815013574 + }, + "m_zoneName": { + "type": "std::string", + "id": 4, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2171167736 + }, + "m_realmName": { + "type": "std::string", + "id": 5, + "offset": 184, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3507983949 + } + } + }, + "1148928779": { + "name": "class GraphicalPvPCurrency*", + "bases": [ + "GraphicalSpell", + "Spell", + "PropertyClass" + ], + "hash": 1148928779, + "properties": { + "m_templateID": { + "type": "unsigned int", + "id": 0, + "offset": 128, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1286746870 + }, + "m_enchantment": { + "type": "unsigned int", + "id": 1, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2217886818 + }, + "m_pipCost": { + "type": "class SharedPointer", + "id": 2, + "offset": 176, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3605704820 + }, + "m_regularAdjust": { + "type": "int", + "id": 3, + "offset": 192, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1420453335 + }, + "m_magicSchoolID": { + "type": "unsigned int", + "id": 4, + "offset": 136, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 893146499 + }, + "m_accuracy": { + "type": "unsigned char", + "id": 5, + "offset": 132, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2273914939 + }, + "m_treasureCard": { + "type": "bool", + "id": 6, + "offset": 197, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1764879128 + }, + "m_battleCard": { + "type": "bool", + "id": 7, + "offset": 198, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1332843753 + }, + "m_itemCard": { + "type": "bool", + "id": 8, + "offset": 199, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1683654300 + }, + "m_sideBoard": { + "type": "bool", + "id": 9, + "offset": 200, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1897838368 + }, + "m_spellID": { + "type": "unsigned int", + "id": 10, + "offset": 204, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1697483258 + }, + "m_leavesPlayWhenCastOverride": { + "type": "bool", + "id": 11, + "offset": 216, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 874407398 + }, + "m_cloaked": { + "type": "bool", + "id": 12, + "offset": 196, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 7349510 + }, + "m_enchantmentSpellIsItemCard": { + "type": "bool", + "id": 13, + "offset": 76, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 531590701 + }, + "m_premutationSpellID": { + "type": "unsigned int", + "id": 14, + "offset": 112, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1530256370 + }, + "m_enchantedThisCombat": { + "type": "bool", + "id": 15, + "offset": 77, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1895738923 + }, + "m_paramOverrides": { + "type": "class SharedPointer", + "id": 16, + "offset": 224, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2061635599 + }, + "m_subEffectMeta": { + "type": "class SharedPointer", + "id": 17, + "offset": 240, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1944101106 + }, + "m_delayEnchantment": { + "type": "bool", + "id": 18, + "offset": 257, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 191336919 + }, + "m_PvE": { + "type": "bool", + "id": 19, + "offset": 264, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 269492350 + }, + "m_delayEnchantmentOrder": { + "type": "enum SpellEffect::kDelayOrder", + "id": 20, + "offset": 72, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2526055263, + "enum_options": { + "SpellEffect::kAnyOrder": 0, + "SpellEffect::kFirst": 1, + "SpellEffect::kSecond": 2 + } + }, + "m_roundAddedTC": { + "type": "int", + "id": 21, + "offset": 260, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 112365451 + }, + "m_secondarySchoolID": { + "type": "unsigned int", + "id": 22, + "offset": 304, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2081206026 + }, + "m_fusionState": { + "type": "enum Spell::FusionState", + "id": 23, + "offset": 308, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 835324539, + "enum_options": { + "FS_Invalid": 0, + "FS_Partial": 1, + "FS_Valid": 2 + } + } + } + }, + "1584393185": { + "name": "class ClientCameraReleaseCinematicAction", + "bases": [ + "CameraReleaseCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 1584393185, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_releaseInterpolationDuration": { + "type": "float", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1807754278, + "enum_options": { + "__DEFAULT": "1.0" + } + } + } + }, + "2020189188": { + "name": "class GardeningXPLootInfo", + "bases": [ + "LootInfo", + "LootInfoBase", + "PropertyClass" + ], + "hash": 2020189188, + "properties": { + "m_lootType": { + "type": "enum LootInfo::LOOT_TYPE", + "id": 0, + "offset": 72, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1591891442, + "enum_options": { + "LOOT_TYPE_NONE": 0, + "LOOT_TYPE_GOLD": 1, + "LOOT_TYPE_MANA": 2, + "LOOT_TYPE_ITEM": 3, + "LOOT_TYPE_TREASURE_CARD": 4, + "LOOT_TYPE_MAGIC_XP": 5, + "LOOT_TYPE_ADD_SPELL": 6, + "LOOT_TYPE_MAX_HEALTH": 7, + "LOOT_TYPE_MAX_GOLD": 8, + "LOOT_TYPE_MAX_MANA": 9, + "LOOT_TYPE_MAX_POTION": 10, + "LOOT_TYPE_TRAINING_POINTS": 11, + "LOOT_TYPE_RECIPE": 12, + "LOOT_TYPE_CRAFTING_SLOT": 13, + "LOOT_TYPE_REAGENT": 14, + "LOOT_TYPE_PETSNACK": 15, + "LOOT_TYPE_GARDENING_XP": 16, + "LOOT_TYPE_PET_XP": 17, + "LOOT_TYPE_TREASURE_TABLE": 18, + "LOOT_TYPE_ARENA_POINTS": 19, + "LOOT_TYPE_ARENA_BONUS_POINTS": 20, + "LOOT_TYPE_GROUP": 21, + "LOOT_TYPE_FISHING_XP": 22, + "LOOT_TYPE_EVENT_CURRENCY_1": 24, + "LOOT_TYPE_EVENT_CURRENCY_2": 25, + "LOOT_TYPE_PVP_CURRENCY": 26, + "LOOT_TYPE_PVP_CURRENCY_BONUS": 27, + "LOOT_TYPE_PVP_TOURNEY_CURRENCY": 28, + "LOOT_TYPE_PVP_TOURNEY_CURRENCY_BONUS": 29, + "LOOT_TYPE_FURNITURE_ESSENCE": 30 + } + }, + "m_experience": { + "type": "int", + "id": 1, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 759357570 + } + } + }, + "2019959134": { + "name": "class WorldTeleportOptions*", + "bases": [ + "PropertyClass" + ], + "hash": 2019959134, + "properties": { + "m_worldList": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1846694527 + }, + "m_imageList": { + "type": "std::string", + "id": 1, + "offset": 88, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2391457594 + }, + "m_initialImage": { + "type": "std::string", + "id": 2, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2043562056 + } + } + }, + "301889062": { + "name": "class SharedPointer", + "bases": [ + "DerbyEffect", + "PropertyClass" + ], + "hash": 301889062, + "properties": { + "m_buffType": { + "type": "enum DerbyTalentBuffType", + "id": 0, + "offset": 92, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1149251982, + "enum_options": { + "Buff": 0, + "Debuff": 1, + "Neither": 2 + } + }, + "m_kTarget": { + "type": "enum DerbyTargetType", + "id": 1, + "offset": 96, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1807803351, + "enum_options": { + "kTargetInFront": 0, + "kTargetBehind": 1, + "kTargetFirst": 2, + "kTargetSelf": 3, + "kTargetAll": 4, + "kTargetLast": 5 + } + }, + "m_nDuration": { + "type": "int", + "id": 2, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1110167982 + }, + "m_effectID": { + "type": "unsigned int", + "id": 3, + "offset": 88, + "flags": 24, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2347630439 + }, + "m_imageFilename": { + "type": "std::string", + "id": 4, + "offset": 112, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2813328063 + }, + "m_iconIndex": { + "type": "unsigned int", + "id": 5, + "offset": 144, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1265133262 + }, + "m_soundOnActivate": { + "type": "std::string", + "id": 6, + "offset": 152, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1956929714 + }, + "m_soundOnTarget": { + "type": "std::string", + "id": 7, + "offset": 184, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3444214056 + }, + "m_targetParticleEffect": { + "type": "std::string", + "id": 8, + "offset": 216, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3048234723 + }, + "m_overheadMessage": { + "type": "std::string", + "id": 9, + "offset": 248, + "flags": 8388639, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1701018190 + }, + "m_requirements": { + "type": "class RequirementList", + "id": 10, + "offset": 280, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2840988582 + }, + "m_nNumBuffs": { + "type": "int", + "id": 11, + "offset": 376, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1860427310 + }, + "m_nNumDebuffs": { + "type": "int", + "id": 12, + "offset": 380, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 637090007 + } + } + }, + "747330152": { + "name": "class HatchmakingKioskBehaviorTemplate*", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 747330152, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + }, + "m_isKiosk": { + "type": "bool", + "id": 1, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1545253296 + } + } + }, + "2019547573": { + "name": "class SharedPointer", + "bases": [ + "WindowAnimation", + "PropertyClass" + ], + "hash": 2019547573, + "properties": { + "m_bUseDeepCopy": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 433380635 + }, + "m_fCycleTime": { + "type": "float", + "id": 1, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1056288476 + }, + "m_fElapsedTime": { + "type": "float", + "id": 2, + "offset": 84, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1862647402 + }, + "m_fContrastMax": { + "type": "float", + "id": 3, + "offset": 88, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 915848113 + } + } + }, + "747047641": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 747047641, + "properties": { + "m_categories": { + "type": "class ObjStateCategory*", + "id": 0, + "offset": 128, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1980433352 + }, + "m_stateSetName": { + "type": "std::string", + "id": 1, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1863712969 + } + } + }, + "1149186669": { + "name": "class ClientPlaySoundCinematicAction", + "bases": [ + "PlaySoundCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 1149186669, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_sound": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 131079, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2307644996 + }, + "m_useClientLocation": { + "type": "bool", + "id": 2, + "offset": 100, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 98585784 + }, + "m_soundType": { + "type": "enum PlaySoundCinematicAction::SoundType", + "id": 3, + "offset": 96, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 868075053, + "enum_options": { + "kSigil": 0, + "kGotHit": 1, + "kDeath": 2, + "kChatter": 4, + "__DEFAULT": "kSigil" + } + }, + "m_streamSound": { + "type": "bool", + "id": 4, + "offset": 101, + "flags": 263, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1693179368 + }, + "m_playMusic": { + "type": "bool", + "id": 5, + "offset": 102, + "flags": 263, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 552729674 + }, + "m_fadeDuration": { + "type": "float", + "id": 6, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1402536557 + } + } + }, + "1586753232": { + "name": "class WhirlyBurlyGameList*", + "bases": [ + "PropertyClass" + ], + "hash": 1586753232, + "properties": { + "m_whirlyBurlyGameList": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1597138179 + } + } + }, + "1585664901": { + "name": "class HousingBlobObject", + "bases": [ + "PropertyClass" + ], + "hash": 1585664901, + "properties": { + "m_gameObjectTemplateID": { + "type": "unsigned int", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1154586887, + "enum_options": { + "__DEFAULT": 0 + } + }, + "m_positionXY": { + "type": "unsigned int", + "id": 1, + "offset": 76, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1263476723, + "enum_options": { + "__DEFAULT": 0 + } + }, + "m_positionZ": { + "type": "float", + "id": 2, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 837995846, + "enum_options": { + "__DEFAULT": 0 + } + }, + "m_yaw": { + "type": "unsigned char", + "id": 3, + "offset": 84, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 904654625, + "enum_options": { + "__DEFAULT": 0 + } + }, + "m_extraData1": { + "type": "unsigned int", + "id": 4, + "offset": 88, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 693220060, + "enum_options": { + "__DEFAULT": 0 + } + } + } + }, + "2019662957": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 2019662957, + "properties": { + "m_worldKeys": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": true, + "pointer": false, + "hash": 1846654431 + } + } + }, + "302238839": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 302238839, + "properties": { + "m_inactiveBehaviors": { + "type": "class SharedPointer", + "id": 0, + "offset": 224, + "flags": 31, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1850812559 + }, + "m_globalID.m_full": { + "type": "unsigned __int64", + "id": 1, + "offset": 72, + "flags": 16777247, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2312465444 + }, + "m_permID": { + "type": "unsigned __int64", + "id": 2, + "offset": 80, + "flags": 16777247, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1298909658 + }, + "m_location": { + "type": "class Vector3D", + "id": 3, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2239683611 + }, + "m_orientation": { + "type": "class Vector3D", + "id": 4, + "offset": 180, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2344058766 + }, + "m_fScale": { + "type": "float", + "id": 5, + "offset": 196, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 503137701 + }, + "m_templateID.m_full": { + "type": "unsigned __int64", + "id": 6, + "offset": 96, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 633907631 + }, + "m_debugName": { + "type": "std::string", + "id": 7, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3553984419 + }, + "m_displayKey": { + "type": "std::string", + "id": 8, + "offset": 136, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3023276954 + }, + "m_zoneTagID": { + "type": "unsigned int", + "id": 9, + "offset": 344, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 965291410 + }, + "m_speedMultiplier": { + "type": "short", + "id": 10, + "offset": 192, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 123130076 + }, + "m_nMobileID": { + "type": "unsigned short", + "id": 11, + "offset": 194, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1054318939 + } + } + }, + "302165059": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 302165059, + "properties": { + "m_location": { + "type": "class Vector3D", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2239683611 + }, + "m_fRadius": { + "type": "float", + "id": 1, + "offset": 84, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 787972805 + }, + "m_id": { + "type": "gid", + "id": 2, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2090569797 + }, + "m_direction": { + "type": "float", + "id": 3, + "offset": 88, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1528165112 + }, + "m_roll": { + "type": "float", + "id": 4, + "offset": 92, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 310020272 + }, + "m_descriptor": { + "type": "class SharedPointer", + "id": 5, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1929260873 + } + } + }, + "748376216": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 748376216, + "properties": { + "m_schoolNameID": { + "type": "unsigned int", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 624113571 + } + } + }, + "1151651325": { + "name": "class CoreObject*", + "bases": [ + "PropertyClass" + ], + "hash": 1151651325, + "properties": { + "m_inactiveBehaviors": { + "type": "class SharedPointer", + "id": 0, + "offset": 224, + "flags": 31, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1850812559 + }, + "m_globalID.m_full": { + "type": "unsigned __int64", + "id": 1, + "offset": 72, + "flags": 16777247, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2312465444 + }, + "m_permID": { + "type": "unsigned __int64", + "id": 2, + "offset": 80, + "flags": 16777247, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1298909658 + }, + "m_location": { + "type": "class Vector3D", + "id": 3, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2239683611 + }, + "m_orientation": { + "type": "class Vector3D", + "id": 4, + "offset": 180, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2344058766 + }, + "m_fScale": { + "type": "float", + "id": 5, + "offset": 196, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 503137701 + }, + "m_templateID.m_full": { + "type": "unsigned __int64", + "id": 6, + "offset": 96, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 633907631 + }, + "m_debugName": { + "type": "std::string", + "id": 7, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3553984419 + }, + "m_displayKey": { + "type": "std::string", + "id": 8, + "offset": 136, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3023276954 + }, + "m_zoneTagID": { + "type": "unsigned int", + "id": 9, + "offset": 344, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 965291410 + }, + "m_speedMultiplier": { + "type": "short", + "id": 10, + "offset": 192, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 123130076 + }, + "m_nMobileID": { + "type": "unsigned short", + "id": 11, + "offset": 194, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1054318939 + } + } + }, + "1150275198": { + "name": "class FidgetBehavior*", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1150275198, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + } + } + }, + "1587295800": { + "name": "class ClientDerbyImmunityEffect*", + "bases": [ + "DerbyImmunityEffect", + "DerbyEffect", + "PropertyClass" + ], + "hash": 1587295800, + "properties": { + "m_buffType": { + "type": "enum DerbyTalentBuffType", + "id": 0, + "offset": 92, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1149251982, + "enum_options": { + "Buff": 0, + "Debuff": 1, + "Neither": 2 + } + }, + "m_kTarget": { + "type": "enum DerbyTargetType", + "id": 1, + "offset": 96, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1807803351, + "enum_options": { + "kTargetInFront": 0, + "kTargetBehind": 1, + "kTargetFirst": 2, + "kTargetSelf": 3, + "kTargetAll": 4, + "kTargetLast": 5 + } + }, + "m_nDuration": { + "type": "int", + "id": 2, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1110167982 + }, + "m_effectID": { + "type": "unsigned int", + "id": 3, + "offset": 88, + "flags": 24, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2347630439 + }, + "m_imageFilename": { + "type": "std::string", + "id": 4, + "offset": 112, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2813328063 + }, + "m_iconIndex": { + "type": "unsigned int", + "id": 5, + "offset": 144, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1265133262 + }, + "m_soundOnActivate": { + "type": "std::string", + "id": 6, + "offset": 152, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1956929714 + }, + "m_soundOnTarget": { + "type": "std::string", + "id": 7, + "offset": 184, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3444214056 + }, + "m_targetParticleEffect": { + "type": "std::string", + "id": 8, + "offset": 216, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3048234723 + }, + "m_overheadMessage": { + "type": "std::string", + "id": 9, + "offset": 248, + "flags": 8388639, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1701018190 + }, + "m_requirements": { + "type": "class RequirementList", + "id": 10, + "offset": 280, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2840988582 + }, + "m_bToDebuffs": { + "type": "bool", + "id": 11, + "offset": 376, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1216111639 + } + } + }, + "2019959158": { + "name": "class WorldTeleportOptions", + "bases": [ + "PropertyClass" + ], + "hash": 2019959158, + "properties": { + "m_worldList": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1846694527 + }, + "m_imageList": { + "type": "std::string", + "id": 1, + "offset": 88, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2391457594 + }, + "m_initialImage": { + "type": "std::string", + "id": 2, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2043562056 + } + } + }, + "302181491": { + "name": "class SharedPointer", + "bases": [ + "PositionalSoundBehaviorTemplate", + "SoundBehaviorTemplate", + "AreaBehaviorTemplate", + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 302181491, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + }, + "m_radius": { + "type": "float", + "id": 1, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 989410271 + }, + "m_category": { + "type": "enum AudioCategory", + "id": 2, + "offset": 124, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2951251982, + "enum_options": { + "AudioCategory_Irrelevent": 0, + "AudioCategory_Accoustic": 1, + "AudioCategory_Noise": 2, + "AudioCategory_Music": 3, + "AudioCategory_MusicAtSFXVolume": 4, + "AudioCategory_Dialog": 5, + "AudioCategory_UI": 6, + "AudioCategory_NoiseAtMusicVolume": 7 + } + }, + "m_exclusive": { + "type": "bool", + "id": 3, + "offset": 128, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 824383403 + }, + "m_active": { + "type": "bool", + "id": 4, + "offset": 129, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 239335471 + }, + "m_enableReqs": { + "type": "class SharedPointer", + "id": 5, + "offset": 136, + "flags": 263, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3158020443 + }, + "m_trackFilenameList": { + "type": "std::string", + "id": 6, + "offset": 152, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2531081709 + }, + "m_playList": { + "type": "class PlayListEntry*", + "id": 7, + "offset": 176, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 3907873161 + }, + "m_priority": { + "type": "int", + "id": 8, + "offset": 208, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1235205852 + }, + "m_volume": { + "type": "float", + "id": 9, + "offset": 200, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1162855023 + }, + "m_loopCount": { + "type": "int", + "id": 10, + "offset": 204, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 865634717 + }, + "m_progression": { + "type": "enum PlayList::Progression", + "id": 11, + "offset": 220, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3279400238, + "enum_options": { + "Sequence": 0, + "Random": 1, + "SequenceOnceOnly": 2, + "RandomNoRepeat": 3 + } + }, + "m_progressMin": { + "type": "float", + "id": 12, + "offset": 212, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1497550192 + }, + "m_progressMax": { + "type": "float", + "id": 13, + "offset": 216, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1497549938 + }, + "m_audioFilterSet": { + "type": "unsigned int", + "id": 14, + "offset": 224, + "flags": 33554439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 831339825 + }, + "m_animationNameFilter": { + "type": "std::string", + "id": 15, + "offset": 232, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2292854242 + }, + "m_functionallabel": { + "type": "std::string", + "id": 16, + "offset": 264, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3589331278 + }, + "m_innerRadius": { + "type": "float", + "id": 17, + "offset": 296, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 686816091 + }, + "m_inverted": { + "type": "bool", + "id": 18, + "offset": 300, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1034821044 + } + } + }, + "1149577254": { + "name": "class AggroBehavior", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1149577254, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + } + } + }, + "749324872": { + "name": "class BattlegroundMatchmakingChat", + "bases": [ + "PropertyClass" + ], + "hash": 749324872, + "properties": { + "m_matchSize": { + "type": "int", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 563704930 + }, + "m_secondsWaited": { + "type": "int", + "id": 1, + "offset": 76, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 606761671 + } + } + }, + "1149577251": { + "name": "class AggroBehavior*", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1149577251, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + } + } + }, + "748829085": { + "name": "class ClassProjectUpdateList", + "bases": [ + "PropertyClass" + ], + "hash": 748829085, + "properties": { + "m_activeProjectList": { + "type": "unsigned int", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 284210684 + } + } + }, + "1592441179": { + "name": "class SharedPointer", + "bases": [ + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 1592441179, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + } + } + }, + "2021878608": { + "name": "class ClientHidePipsCinematicAction*", + "bases": [ + "HidePipsCinematicAction", + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 2021878608, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + }, + "m_newActorName": { + "type": "std::string", + "id": 2, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2029131039 + } + } + }, + "303197932": { + "name": "class PvP5thAgeKioskBehaviorTemplate", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 303197932, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + }, + "m_kioskName": { + "type": "std::string", + "id": 1, + "offset": 120, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2560037053 + }, + "m_leagueType": { + "type": "std::string", + "id": 2, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3327951024 + } + } + }, + "748767198": { + "name": "class BattleBookBehavior", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 748767198, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_spellList": { + "type": "class SharedPointer", + "id": 1, + "offset": 120, + "flags": 27, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2181913740 + }, + "m_rating": { + "type": "class SharedPointer", + "id": 2, + "offset": 136, + "flags": 27, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2464459535 + } + } + }, + "1591320462": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1591320462, + "properties": { + "m_messageType": { + "type": "int", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1531535105 + } + } + }, + "2020951153": { + "name": "class BattlegroundTemplate*", + "bases": [ + "PropertyClass" + ], + "hash": 2020951153, + "properties": { + "m_battlegroundName": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1534120775 + }, + "m_countdownSeconds": { + "type": "float", + "id": 1, + "offset": 112, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 255072071 + }, + "m_matchSize": { + "type": "int", + "id": 2, + "offset": 116, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 563704930 + }, + "m_teamStartA": { + "type": "std::string", + "id": 3, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1716880369 + }, + "m_teamStartB": { + "type": "std::string", + "id": 4, + "offset": 184, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1716880370 + }, + "m_battlegroundZone": { + "type": "std::string", + "id": 5, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1534567298 + }, + "m_cancelCooldownSeconds": { + "type": "int", + "id": 6, + "offset": 216, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1074662868 + }, + "m_maximumDisplayPoints": { + "type": "int", + "id": 7, + "offset": 220, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 751410187 + }, + "m_matchTimeSeconds": { + "type": "int", + "id": 8, + "offset": 224, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1560908229 + }, + "m_revealTimeSeconds": { + "type": "int", + "id": 9, + "offset": 228, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 258367543 + }, + "m_matchmakingList": { + "type": "class SharedPointer", + "id": 10, + "offset": 232, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2069645122 + }, + "m_unlockedPolymorphTags": { + "type": "std::string", + "id": 11, + "offset": 256, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2024692009 + }, + "m_lootWinner": { + "type": "std::string", + "id": 12, + "offset": 288, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1642288556 + }, + "m_lootLoser": { + "type": "std::string", + "id": 13, + "offset": 320, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2530546718 + }, + "m_lootTie": { + "type": "std::string", + "id": 14, + "offset": 352, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2506425499 + }, + "m_pveMode": { + "type": "bool", + "id": 15, + "offset": 384, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2142827875 + }, + "m_defeatedPolyLockCount": { + "type": "int", + "id": 16, + "offset": 388, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1366197282 + }, + "m_lockSigilSpotOnDefeat": { + "type": "bool", + "id": 17, + "offset": 392, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 407313920 + } + } + }, + "303027026": { + "name": "class ClientUpdatePipsCinematicAction*", + "bases": [ + "UpdatePipsCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 303027026, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + } + } + }, + "1149957363": { + "name": "class BattlegroundGroupMemberStatus*", + "bases": [ + "PropertyClass" + ], + "hash": 1149957363, + "properties": { + "m_playerID": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1774633426 + }, + "m_nameBlob": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3058206907 + }, + "m_status": { + "type": "enum BGGroupStatusEnum", + "id": 2, + "offset": 112, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1016087325, + "enum_options": { + "BGS_Checking": 0, + "BGS_Ready": 1, + "BGS_LowLevel": 2, + "BGS_Cheater": 3, + "BGS_OnCooldown": 4, + "BGS_QueuedForBG": 5, + "BGS_QueuedForPVP": 6, + "BGS_Disconnected": 7, + "BGS_LeftGroup": 8, + "BGS_GroupToBig": 9, + "BGS_Unavailable": 10 + } + } + } + }, + "1588735402": { + "name": "class ClientFadeActorCinematicAction*", + "bases": [ + "FadeActorCinematicAction", + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 1588735402, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + }, + "m_fadeDuration": { + "type": "float", + "id": 2, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1402536557 + }, + "m_alphaTarget": { + "type": "float", + "id": 3, + "offset": 124, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 197622500 + } + } + }, + "2020951129": { + "name": "class BattlegroundTemplate", + "bases": [ + "PropertyClass" + ], + "hash": 2020951129, + "properties": { + "m_battlegroundName": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1534120775 + }, + "m_countdownSeconds": { + "type": "float", + "id": 1, + "offset": 112, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 255072071 + }, + "m_matchSize": { + "type": "int", + "id": 2, + "offset": 116, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 563704930 + }, + "m_teamStartA": { + "type": "std::string", + "id": 3, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1716880369 + }, + "m_teamStartB": { + "type": "std::string", + "id": 4, + "offset": 184, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1716880370 + }, + "m_battlegroundZone": { + "type": "std::string", + "id": 5, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1534567298 + }, + "m_cancelCooldownSeconds": { + "type": "int", + "id": 6, + "offset": 216, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1074662868 + }, + "m_maximumDisplayPoints": { + "type": "int", + "id": 7, + "offset": 220, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 751410187 + }, + "m_matchTimeSeconds": { + "type": "int", + "id": 8, + "offset": 224, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1560908229 + }, + "m_revealTimeSeconds": { + "type": "int", + "id": 9, + "offset": 228, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 258367543 + }, + "m_matchmakingList": { + "type": "class SharedPointer", + "id": 10, + "offset": 232, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2069645122 + }, + "m_unlockedPolymorphTags": { + "type": "std::string", + "id": 11, + "offset": 256, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2024692009 + }, + "m_lootWinner": { + "type": "std::string", + "id": 12, + "offset": 288, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1642288556 + }, + "m_lootLoser": { + "type": "std::string", + "id": 13, + "offset": 320, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2530546718 + }, + "m_lootTie": { + "type": "std::string", + "id": 14, + "offset": 352, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2506425499 + }, + "m_pveMode": { + "type": "bool", + "id": 15, + "offset": 384, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2142827875 + }, + "m_defeatedPolyLockCount": { + "type": "int", + "id": 16, + "offset": 388, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1366197282 + }, + "m_lockSigilSpotOnDefeat": { + "type": "bool", + "id": 17, + "offset": 392, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 407313920 + } + } + }, + "302567393": { + "name": "class SharedPointer", + "bases": [ + "MoveBehavior::Controller", + "PropertyClass" + ], + "hash": 302567393, + "properties": { + "m_bCollisionDisabled": { + "type": "bool", + "id": 0, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1732895577 + }, + "m_bVehicleMode": { + "type": "bool", + "id": 1, + "offset": 121, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1597295002 + }, + "m_fForwardModifier": { + "type": "float", + "id": 2, + "offset": 124, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1173988321 + }, + "m_fBackModifier": { + "type": "float", + "id": 3, + "offset": 128, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 148042045 + }, + "m_fStrafeModifier": { + "type": "float", + "id": 4, + "offset": 132, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 226084913 + }, + "m_fTurnModifier": { + "type": "float", + "id": 5, + "offset": 136, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2134998805 + }, + "m_fAccelerationModifier": { + "type": "float", + "id": 6, + "offset": 144, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 592902742 + }, + "m_fDecelerationModifier": { + "type": "float", + "id": 7, + "offset": 148, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1770082811 + } + } + }, + "1588404539": { + "name": "class PetLevelInfo*", + "bases": [ + "PropertyClass" + ], + "hash": 1588404539, + "properties": { + "m_level": { + "type": "unsigned char", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1438884808 + }, + "m_template": { + "type": "unsigned int", + "id": 1, + "offset": 76, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 669977097 + }, + "m_requiredXP": { + "type": "unsigned int", + "id": 2, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1890811574 + }, + "m_powerCardCount": { + "type": "unsigned int", + "id": 3, + "offset": 84, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1299301661 + }, + "m_powerCardName": { + "type": "std::string", + "id": 4, + "offset": 88, + "flags": 268435463, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1856508131, + "enum_options": { + "__BASECLASS": "SpellTemplate" + } + }, + "m_powerCardName2": { + "type": "std::string", + "id": 5, + "offset": 120, + "flags": 268435463, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2598131765, + "enum_options": { + "__BASECLASS": "SpellTemplate" + } + }, + "m_powerCardName3": { + "type": "std::string", + "id": 6, + "offset": 152, + "flags": 268435463, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2598131766, + "enum_options": { + "__BASECLASS": "SpellTemplate" + } + }, + "m_lootTable": { + "type": "std::string", + "id": 7, + "offset": 184, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2539512673 + } + } + }, + "748853661": { + "name": "class ClassProjectUpdateList*", + "bases": [ + "PropertyClass" + ], + "hash": 748853661, + "properties": { + "m_activeProjectList": { + "type": "unsigned int", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 284210684 + } + } + }, + "1150541086": { + "name": "class SharedPointer", + "bases": [ + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 1150541086, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + } + } + }, + "1588673790": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1588673790, + "properties": {} + }, + "2021472208": { + "name": "class CastleToursFavoritesBehaviorTemplate", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 2021472208, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + } + } + }, + "1150285043": { + "name": "class BattlegroundGroupMemberStatus", + "bases": [ + "PropertyClass" + ], + "hash": 1150285043, + "properties": { + "m_playerID": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1774633426 + }, + "m_nameBlob": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3058206907 + }, + "m_status": { + "type": "enum BGGroupStatusEnum", + "id": 2, + "offset": 112, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1016087325, + "enum_options": { + "BGS_Checking": 0, + "BGS_Ready": 1, + "BGS_LowLevel": 2, + "BGS_Cheater": 3, + "BGS_OnCooldown": 4, + "BGS_QueuedForBG": 5, + "BGS_QueuedForPVP": 6, + "BGS_Disconnected": 7, + "BGS_LeftGroup": 8, + "BGS_GroupToBig": 9, + "BGS_Unavailable": 10 + } + } + } + }, + "303373912": { + "name": "class DyeShopOption", + "bases": [ + "ServiceOptionBase", + "PropertyClass" + ], + "hash": 303373912, + "properties": { + "m_serviceName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2206028813 + }, + "m_iconKey": { + "type": "std::string", + "id": 1, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2457138637 + }, + "m_displayKey": { + "type": "std::string", + "id": 2, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3023276954 + }, + "m_serviceIndex": { + "type": "unsigned int", + "id": 3, + "offset": 204, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2103126710 + }, + "m_forceInteract": { + "type": "bool", + "id": 4, + "offset": 200, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1705789564 + } + } + }, + "749325064": { + "name": "class BattlegroundMatchmakingChat*", + "bases": [ + "PropertyClass" + ], + "hash": 749325064, + "properties": { + "m_matchSize": { + "type": "int", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 563704930 + }, + "m_secondsWaited": { + "type": "int", + "id": 1, + "offset": 76, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 606761671 + } + } + }, + "1150275294": { + "name": "class FidgetBehavior", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1150275294, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + } + } + }, + "1590635123": { + "name": "class SharedPointer", + "bases": [ + "Window", + "PropertyClass" + ], + "hash": 1590635123, + "properties": { + "m_sName": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306437263 + }, + "m_Children": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 65667, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621225959 + }, + "m_Style": { + "type": "unsigned int", + "id": 2, + "offset": 152, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "SCALE_CHILDREN": 2, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "FOCUS_LOCKED": 64, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152 + } + }, + "m_Flags": { + "type": "unsigned int", + "id": 3, + "offset": 156, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } + }, + "m_Window": { + "type": "class Rect", + "id": 4, + "offset": 160, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3105139380 + }, + "m_fTargetAlpha": { + "type": "float", + "id": 5, + "offset": 212, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1809129834 + }, + "m_fDisabledAlpha": { + "type": "float", + "id": 6, + "offset": 216, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1389987675 + }, + "m_fAlpha": { + "type": "float", + "id": 7, + "offset": 208, + "flags": 65671, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 482130755 + }, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3623628394 + }, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2102211316 + }, + "m_sScript": { + "type": "std::string", + "id": 10, + "offset": 352, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1846695875 + }, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3389835433 + }, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547159940 + }, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513510520 + }, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3091503757 + } + } + }, + "2022075216": { + "name": "class ClientHidePipsCinematicAction", + "bases": [ + "HidePipsCinematicAction", + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 2022075216, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + }, + "m_newActorName": { + "type": "std::string", + "id": 2, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2029131039 + } + } + }, + "2021988860": { + "name": "class CrownShopSettings", + "bases": [ + "PropertyClass" + ], + "hash": 2021988860, + "properties": { + "m_saleFilter": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1462249118 + }, + "m_newUsableFilter": { + "type": "bool", + "id": 1, + "offset": 73, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1923088319 + }, + "m_buttonView": { + "type": "bool", + "id": 2, + "offset": 74, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1893157642 + }, + "m_theBattleReadyItemTemplateID": { + "type": "unsigned int", + "id": 3, + "offset": 76, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 494853047 + } + } + }, + "323423977": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 323423977, + "properties": {} + }, + "753237830": { + "name": "class EloRank*", + "bases": [ + "PropertyClass" + ], + "hash": 753237830, + "properties": { + "m_eloRankUp": { + "type": "int", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2072991243 + }, + "m_eloRankDown": { + "type": "int", + "id": 1, + "offset": 76, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 385300382 + }, + "m_kFactor": { + "type": "int", + "id": 2, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 243011684 + }, + "m_carryoverElo": { + "type": "int", + "id": 3, + "offset": 84, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 61027127 + }, + "m_rankName": { + "type": "std::string", + "id": 4, + "offset": 88, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1779957096 + }, + "m_icon": { + "type": "std::string", + "id": 5, + "offset": 120, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1717182340 + }, + "m_badgeName": { + "type": "std::string", + "id": 6, + "offset": 152, + "flags": 268435463, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3002948047, + "enum_options": { + "__BASECLASS": "BadgeTemplate" + } + } + } + }, + "1590907781": { + "name": "class HousingBlobObject*", + "bases": [ + "PropertyClass" + ], + "hash": 1590907781, + "properties": { + "m_gameObjectTemplateID": { + "type": "unsigned int", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1154586887, + "enum_options": { + "__DEFAULT": 0 + } + }, + "m_positionXY": { + "type": "unsigned int", + "id": 1, + "offset": 76, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1263476723, + "enum_options": { + "__DEFAULT": 0 + } + }, + "m_positionZ": { + "type": "float", + "id": 2, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 837995846, + "enum_options": { + "__DEFAULT": 0 + } + }, + "m_yaw": { + "type": "unsigned char", + "id": 3, + "offset": 84, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 904654625, + "enum_options": { + "__DEFAULT": 0 + } + }, + "m_extraData1": { + "type": "unsigned int", + "id": 4, + "offset": 88, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 693220060, + "enum_options": { + "__DEFAULT": 0 + } + } + } + }, + "317343907": { + "name": "class AreaBehavior", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 317343907, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_radius": { + "type": "float", + "id": 1, + "offset": 116, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 989410271 + }, + "m_category": { + "type": "enum AudioCategory", + "id": 2, + "offset": 124, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2951251982, + "enum_options": { + "AudioCategory_Irrelevent": 0, + "AudioCategory_Accoustic": 1, + "AudioCategory_Noise": 2, + "AudioCategory_Music": 3 + } + }, + "m_exclusive": { + "type": "bool", + "id": 3, + "offset": 128, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 824383403 + } + } + }, + "750574987": { + "name": "class MapInfoManager::MapInfo::DoodleData*", + "bases": [ + "PropertyClass" + ], + "hash": 750574987, + "properties": { + "m_image": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2295691902 + }, + "m_rect": { + "type": "class Rect", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1325069066 + }, + "m_onTags": { + "type": "std::string", + "id": 2, + "offset": 136, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2294335367 + }, + "m_label": { + "type": "std::string", + "id": 3, + "offset": 216, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2298819451 + }, + "m_displayText": { + "type": "std::string", + "id": 4, + "offset": 248, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2447120726 + }, + "m_margins": { + "type": "class Rect", + "id": 5, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2860673101 + }, + "m_childIds": { + "type": "unsigned int", + "id": 6, + "offset": 168, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1423756721 + }, + "m_id": { + "type": "unsigned int", + "id": 7, + "offset": 160, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2301988666 + }, + "m_bIgnoresMouse": { + "type": "bool", + "id": 8, + "offset": 292, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2149274933 + }, + "m_templateID": { + "type": "unsigned int", + "id": 9, + "offset": 312, + "flags": 33554439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1286746870 + }, + "m_childDisplayText": { + "type": "std::string", + "id": 10, + "offset": 320, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3062136730 + }, + "m_childImage": { + "type": "std::string", + "id": 11, + "offset": 352, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3100605890 + }, + "m_childRect": { + "type": "class Rect", + "id": 12, + "offset": 384, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2455739854 + }, + "m_childMargins": { + "type": "class Rect", + "id": 13, + "offset": 400, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3238677649 + }, + "m_displayRequirements": { + "type": "class RequirementList*", + "id": 14, + "offset": 424, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3646782876 + } + } + }, + "1151650312": { + "name": "class DeckConfigurationWindow", + "bases": [ + "Window", + "PropertyClass" + ], + "hash": 1151650312, + "properties": { + "m_sName": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306437263 + }, + "m_Children": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621225959 + }, + "m_Style": { + "type": "unsigned int", + "id": 2, + "offset": 152, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "SCALE_CHILDREN": 2, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "FOCUS_LOCKED": 64, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152 + } + }, + "m_Flags": { + "type": "unsigned int", + "id": 3, + "offset": 156, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } + }, + "m_Window": { + "type": "class Rect", + "id": 4, + "offset": 160, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3105139380 + }, + "m_fTargetAlpha": { + "type": "float", + "id": 5, + "offset": 212, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1809129834 + }, + "m_fDisabledAlpha": { + "type": "float", + "id": 6, + "offset": 216, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1389987675 + }, + "m_fAlpha": { + "type": "float", + "id": 7, + "offset": 208, + "flags": 65671, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 482130755 + }, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3623628394 + }, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2102211316 + }, + "m_sScript": { + "type": "std::string", + "id": 10, + "offset": 352, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1846695875 + }, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3389835433 + }, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547159940 + }, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513510520 + }, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3091503757 + } + } + }, + "311758424": { + "name": "class CameraController*", + "bases": [ + "PropertyClass" + ], + "hash": 311758424, + "properties": {} + }, + "750358885": { + "name": "class AddBacklashEffectCinematicAction", + "bases": [ + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 750358885, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + }, + "m_backlashEffect": { + "type": "std::string", + "id": 2, + "offset": 120, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3051687009 + } + } + }, + "308979895": { + "name": "class SharedPointer", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 308979895, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_containerGID": { + "type": "gid", + "id": 1, + "offset": 112, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 550557519 + }, + "m_atticItemCount": { + "type": "int", + "id": 2, + "offset": 120, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 184605671 + } + } + }, + "1592381020": { + "name": "class RegisterActorCinematicAction*", + "bases": [ + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 1592381020, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + }, + "m_zoneTag": { + "type": "std::string", + "id": 2, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3405382643 + }, + "m_bStartHidden": { + "type": "bool", + "id": 3, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1939845615 + } + } + }, + "2024304058": { + "name": "class SharedPointer", + "bases": [ + "DerbyEffect", + "PropertyClass" + ], + "hash": 2024304058, + "properties": { + "m_buffType": { + "type": "enum DerbyTalentBuffType", + "id": 0, + "offset": 92, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1149251982, + "enum_options": { + "Buff": 0, + "Debuff": 1, + "Neither": 2 + } + }, + "m_kTarget": { + "type": "enum DerbyTargetType", + "id": 1, + "offset": 96, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1807803351, + "enum_options": { + "kTargetInFront": 0, + "kTargetBehind": 1, + "kTargetFirst": 2, + "kTargetSelf": 3, + "kTargetAll": 4, + "kTargetLast": 5 + } + }, + "m_nDuration": { + "type": "int", + "id": 2, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1110167982 + }, + "m_effectID": { + "type": "unsigned int", + "id": 3, + "offset": 88, + "flags": 24, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2347630439 + }, + "m_imageFilename": { + "type": "std::string", + "id": 4, + "offset": 112, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2813328063 + }, + "m_iconIndex": { + "type": "unsigned int", + "id": 5, + "offset": 144, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1265133262 + }, + "m_soundOnActivate": { + "type": "std::string", + "id": 6, + "offset": 152, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1956929714 + }, + "m_soundOnTarget": { + "type": "std::string", + "id": 7, + "offset": 184, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3444214056 + }, + "m_targetParticleEffect": { + "type": "std::string", + "id": 8, + "offset": 216, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3048234723 + }, + "m_overheadMessage": { + "type": "std::string", + "id": 9, + "offset": 248, + "flags": 8388639, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1701018190 + }, + "m_requirements": { + "type": "class RequirementList", + "id": 10, + "offset": 280, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2840988582 + } + } + }, + "305559732": { + "name": "class SharedPointer", + "bases": [ + "WinAnimConcurrent", + "WinAnimContainer", + "WindowAnimation", + "PropertyClass" + ], + "hash": 305559732, + "properties": { + "m_bUseDeepCopy": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 433380635 + }, + "m_winAnimList": { + "type": "class SharedPointer", + "id": 1, + "offset": 80, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1941062728 + }, + "m_bLooping": { + "type": "bool", + "id": 2, + "offset": 104, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2131020845 + }, + "m_finishedAnimList": { + "type": "class SharedPointer", + "id": 3, + "offset": 112, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 3066650884 + }, + "m_boundary": { + "type": "class Rect", + "id": 4, + "offset": 128, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1423726080 + } + } + }, + "1151880678": { + "name": "class ClientInfractionMessageBox*", + "bases": [ + "InfractionMessageBox", + "InfractionPenalty", + "PropertyClass" + ], + "hash": 1151880678, + "properties": { + "m_internalID": { + "type": "unsigned int", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1854540375 + }, + "m_categoryID": { + "type": "unsigned int", + "id": 1, + "offset": 76, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1382795736 + }, + "m_removeAtPointValue": { + "type": "float", + "id": 2, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2112196961 + }, + "m_expireTime": { + "type": "unsigned int", + "id": 3, + "offset": 84, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1836304873 + }, + "m_titleKey": { + "type": "std::string", + "id": 4, + "offset": 88, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3096106918 + }, + "m_messageKey": { + "type": "std::string", + "id": 5, + "offset": 120, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3561518217 + } + } + }, + "1592021383": { + "name": "enum CursorState", + "bases": [], + "hash": 1592021383, + "properties": {} + }, + "2023559936": { + "name": "class ConditionalSpellEffectRequirement*", + "bases": [ + "Requirement", + "PropertyClass" + ], + "hash": 2023559936, + "properties": { + "m_applyNOT": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1746328074, + "enum_options": { + "__DEFAULT": 0 + } + }, + "m_operator": { + "type": "enum Requirement::Operator", + "id": 1, + "offset": 76, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2672792317, + "enum_options": { + "ROP_AND": 0, + "ROP_OR": 1, + "__DEFAULT": "ROP_AND" + } + }, + "m_targetType": { + "type": "enum ConditionalSpellEffectRequirement::RequirementTarget", + "id": 2, + "offset": 80, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547737902, + "enum_options": { + "RT_Caster": 0, + "RT_Target": 1 + } + } + } + }, + "303823158": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 303823158, + "properties": { + "m_opponents": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1257835102 + }, + "m_points": { + "type": "unsigned int", + "id": 1, + "offset": 88, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1049128778 + }, + "m_matchResult": { + "type": "unsigned int", + "id": 2, + "offset": 92, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1912880793 + }, + "m_competingForPlace": { + "type": "unsigned int", + "id": 3, + "offset": 100, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1156208831 + } + } + }, + "752499011": { + "name": "class UpFirstData*", + "bases": [ + "PropertyClass" + ], + "hash": 752499011, + "properties": { + "m_upFirst": { + "type": "int", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1884669703 + }, + "m_roundNum": { + "type": "int", + "id": 1, + "offset": 76, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1461215570 + }, + "m_resultType": { + "type": "int", + "id": 2, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1136139931 + } + } + }, + "1151683121": { + "name": "class PetSnackItemTemplate", + "bases": [ + "WizItemTemplate", + "ItemTemplate", + "GameObjectTemplate", + "CoreTemplate", + "PropertyClass" + ], + "hash": 1151683121, + "properties": { + "m_behaviors": { + "type": "class BehaviorTemplate*", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1197808594 + }, + "m_objectName": { + "type": "std::string", + "id": 1, + "offset": 96, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2154940147 + }, + "m_templateID": { + "type": "unsigned int", + "id": 2, + "offset": 128, + "flags": 16777223, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1286746870 + }, + "m_visualID": { + "type": "unsigned int", + "id": 3, + "offset": 132, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1118778894 + }, + "m_adjectiveList": { + "type": "std::string", + "id": 4, + "offset": 248, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 3195213318 + }, + "m_exemptFromAOI": { + "type": "bool", + "id": 5, + "offset": 240, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1457879059 + }, + "m_displayName": { + "type": "std::string", + "id": 6, + "offset": 168, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2446900370 + }, + "m_description": { + "type": "std::string", + "id": 7, + "offset": 136, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1649374815 + }, + "m_nObjectType": { + "type": "enum ObjectType", + "id": 8, + "offset": 200, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2118905880, + "enum_options": { + "OT_UNDEFINED": 0, + "OT_PLAYER": 1, + "OT_NPC": 2, + "OT_PROP": 3, + "OT_OBJECT": 4, + "OT_HOUSE": 5, + "OT_KEY": 6, + "OT_OLD_KEY": 7, + "OT_DEED": 8, + "OT_MAIL": 9, + "OT_RECIPE": 17, + "OT_EQUIP_HEAD": 10, + "OT_EQUIP_CHEST": 11, + "OT_EQUIP_LEGS": 12, + "OT_EQUIP_HANDS": 13, + "OT_EQUIP_FINGER": 14, + "OT_EQUIP_FEET": 15, + "OT_EQUIP_EAR": 16, + "OT_BUILDING_BLOCK": 18, + "OT_BUILDING_BLOCK_SOLID": 19, + "OT_GOLF": 20, + "OT_DOOR": 21, + "OT_PET": 22, + "OT_FABRIC": 23, + "OT_WINDOW": 24, + "OT_ROOF": 25, + "OT_HORSE": 26, + "OT_STRUCTURE": 27, + "OT_HOUSING_TEXTURE": 28, + "OT_PLANT": 29 + } + }, + "m_sIcon": { + "type": "std::string", + "id": 9, + "offset": 208, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306259831 + }, + "m_equipRequirements": { + "type": "class RequirementList*", + "id": 10, + "offset": 280, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2762617226 + }, + "m_purchaseRequirements": { + "type": "class RequirementList*", + "id": 11, + "offset": 288, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3174641793 + }, + "m_equipEffects": { + "type": "class GameEffectInfo*", + "id": 12, + "offset": 296, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 836628351 + }, + "m_baseCost": { + "type": "float", + "id": 13, + "offset": 312, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1565352651 + }, + "m_creditsCost": { + "type": "float", + "id": 14, + "offset": 320, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 805514974 + }, + "m_avatarInfo": { + "type": "class AvatarItemInfoBase*", + "id": 15, + "offset": 328, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2627321299 + }, + "m_avatarFlags": { + "type": "std::string", + "id": 16, + "offset": 336, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2347762759 + }, + "m_itemLimit": { + "type": "int", + "id": 17, + "offset": 316, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1799746856 + }, + "m_holidayFlag": { + "type": "std::string", + "id": 18, + "offset": 352, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2994795359 + }, + "m_itemSetBonusTemplateID": { + "type": "unsigned int", + "id": 19, + "offset": 384, + "flags": 33554439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1316835672 + }, + "m_numPrimaryColors": { + "type": "int", + "id": 20, + "offset": 428, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 981103872 + }, + "m_numSecondaryColors": { + "type": "int", + "id": 21, + "offset": 432, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1310416868 + }, + "m_numPatterns": { + "type": "int", + "id": 22, + "offset": 436, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 953162171 + }, + "m_school": { + "type": "std::string", + "id": 23, + "offset": 392, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2438566051 + }, + "m_arenaPointCost": { + "type": "int", + "id": 24, + "offset": 440, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1819621796 + }, + "m_pvpCurrencyCost": { + "type": "int", + "id": 25, + "offset": 444, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 645595444 + }, + "m_pvpTourneyCurrencyCost": { + "type": "int", + "id": 26, + "offset": 448, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 517874954 + }, + "m_rank": { + "type": "int", + "id": 27, + "offset": 424, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 219803942 + }, + "m_boyIconIndex": { + "type": "int", + "id": 28, + "offset": 452, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 802140453 + }, + "m_girlIconIndex": { + "type": "int", + "id": 29, + "offset": 456, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 832706793 + }, + "m_leashOffsetOverride": { + "type": "class SharedPointer", + "id": 30, + "offset": 464, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1692586788 + }, + "m_rarity": { + "type": "enum RarityType", + "id": 31, + "offset": 460, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2253792108, + "enum_options": { + "RT_COMMON": 0, + "RT_UNCOMMON": 1, + "RT_RARE": 2, + "RT_ULTRARARE": 3, + "RT_EPIC": 4 + } + }, + "m_iconIndex": { + "type": "int", + "id": 32, + "offset": 480, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1053730811 + }, + "m_imageName": { + "type": "std::string", + "id": 33, + "offset": 488, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2391520543 + }, + "m_statModifierSet": { + "type": "class PetStatModificationSet", + "id": 34, + "offset": 520, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2182942670 + } + } + }, + "1591463513": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1591463513, + "properties": { + "m_actionList": { + "type": "class CombatAction", + "id": 0, + "offset": 72, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1971690676 + } + } + }, + "750624139": { + "name": "class MapInfoManager::MapInfo::DoodleData", + "bases": [ + "PropertyClass" + ], + "hash": 750624139, + "properties": { + "m_image": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2295691902 + }, + "m_rect": { + "type": "class Rect", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1325069066 + }, + "m_onTags": { + "type": "std::string", + "id": 2, + "offset": 136, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2294335367 + }, + "m_label": { + "type": "std::string", + "id": 3, + "offset": 216, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2298819451 + }, + "m_displayText": { + "type": "std::string", + "id": 4, + "offset": 248, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2447120726 + }, + "m_margins": { + "type": "class Rect", + "id": 5, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2860673101 + }, + "m_childIds": { + "type": "unsigned int", + "id": 6, + "offset": 168, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1423756721 + }, + "m_id": { + "type": "unsigned int", + "id": 7, + "offset": 160, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2301988666 + }, + "m_bIgnoresMouse": { + "type": "bool", + "id": 8, + "offset": 292, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2149274933 + }, + "m_templateID": { + "type": "unsigned int", + "id": 9, + "offset": 312, + "flags": 33554439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1286746870 + }, + "m_childDisplayText": { + "type": "std::string", + "id": 10, + "offset": 320, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3062136730 + }, + "m_childImage": { + "type": "std::string", + "id": 11, + "offset": 352, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3100605890 + }, + "m_childRect": { + "type": "class Rect", + "id": 12, + "offset": 384, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2455739854 + }, + "m_childMargins": { + "type": "class Rect", + "id": 13, + "offset": 400, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3238677649 + }, + "m_displayRequirements": { + "type": "class RequirementList*", + "id": 14, + "offset": 424, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3646782876 + } + } + }, + "1151683097": { + "name": "class PetSnackItemTemplate*", + "bases": [ + "WizItemTemplate", + "ItemTemplate", + "GameObjectTemplate", + "CoreTemplate", + "PropertyClass" + ], + "hash": 1151683097, + "properties": { + "m_behaviors": { + "type": "class BehaviorTemplate*", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1197808594 + }, + "m_objectName": { + "type": "std::string", + "id": 1, + "offset": 96, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2154940147 + }, + "m_templateID": { + "type": "unsigned int", + "id": 2, + "offset": 128, + "flags": 16777223, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1286746870 + }, + "m_visualID": { + "type": "unsigned int", + "id": 3, + "offset": 132, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1118778894 + }, + "m_adjectiveList": { + "type": "std::string", + "id": 4, + "offset": 248, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 3195213318 + }, + "m_exemptFromAOI": { + "type": "bool", + "id": 5, + "offset": 240, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1457879059 + }, + "m_displayName": { + "type": "std::string", + "id": 6, + "offset": 168, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2446900370 + }, + "m_description": { + "type": "std::string", + "id": 7, + "offset": 136, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1649374815 + }, + "m_nObjectType": { + "type": "enum ObjectType", + "id": 8, + "offset": 200, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2118905880, + "enum_options": { + "OT_UNDEFINED": 0, + "OT_PLAYER": 1, + "OT_NPC": 2, + "OT_PROP": 3, + "OT_OBJECT": 4, + "OT_HOUSE": 5, + "OT_KEY": 6, + "OT_OLD_KEY": 7, + "OT_DEED": 8, + "OT_MAIL": 9, + "OT_RECIPE": 17, + "OT_EQUIP_HEAD": 10, + "OT_EQUIP_CHEST": 11, + "OT_EQUIP_LEGS": 12, + "OT_EQUIP_HANDS": 13, + "OT_EQUIP_FINGER": 14, + "OT_EQUIP_FEET": 15, + "OT_EQUIP_EAR": 16, + "OT_BUILDING_BLOCK": 18, + "OT_BUILDING_BLOCK_SOLID": 19, + "OT_GOLF": 20, + "OT_DOOR": 21, + "OT_PET": 22, + "OT_FABRIC": 23, + "OT_WINDOW": 24, + "OT_ROOF": 25, + "OT_HORSE": 26, + "OT_STRUCTURE": 27, + "OT_HOUSING_TEXTURE": 28, + "OT_PLANT": 29 + } + }, + "m_sIcon": { + "type": "std::string", + "id": 9, + "offset": 208, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306259831 + }, + "m_equipRequirements": { + "type": "class RequirementList*", + "id": 10, + "offset": 280, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2762617226 + }, + "m_purchaseRequirements": { + "type": "class RequirementList*", + "id": 11, + "offset": 288, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3174641793 + }, + "m_equipEffects": { + "type": "class GameEffectInfo*", + "id": 12, + "offset": 296, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 836628351 + }, + "m_baseCost": { + "type": "float", + "id": 13, + "offset": 312, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1565352651 + }, + "m_creditsCost": { + "type": "float", + "id": 14, + "offset": 320, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 805514974 + }, + "m_avatarInfo": { + "type": "class AvatarItemInfoBase*", + "id": 15, + "offset": 328, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2627321299 + }, + "m_avatarFlags": { + "type": "std::string", + "id": 16, + "offset": 336, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2347762759 + }, + "m_itemLimit": { + "type": "int", + "id": 17, + "offset": 316, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1799746856 + }, + "m_holidayFlag": { + "type": "std::string", + "id": 18, + "offset": 352, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2994795359 + }, + "m_itemSetBonusTemplateID": { + "type": "unsigned int", + "id": 19, + "offset": 384, + "flags": 33554439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1316835672 + }, + "m_numPrimaryColors": { + "type": "int", + "id": 20, + "offset": 428, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 981103872 + }, + "m_numSecondaryColors": { + "type": "int", + "id": 21, + "offset": 432, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1310416868 + }, + "m_numPatterns": { + "type": "int", + "id": 22, + "offset": 436, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 953162171 + }, + "m_school": { + "type": "std::string", + "id": 23, + "offset": 392, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2438566051 + }, + "m_arenaPointCost": { + "type": "int", + "id": 24, + "offset": 440, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1819621796 + }, + "m_pvpCurrencyCost": { + "type": "int", + "id": 25, + "offset": 444, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 645595444 + }, + "m_pvpTourneyCurrencyCost": { + "type": "int", + "id": 26, + "offset": 448, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 517874954 + }, + "m_rank": { + "type": "int", + "id": 27, + "offset": 424, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 219803942 + }, + "m_boyIconIndex": { + "type": "int", + "id": 28, + "offset": 452, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 802140453 + }, + "m_girlIconIndex": { + "type": "int", + "id": 29, + "offset": 456, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 832706793 + }, + "m_leashOffsetOverride": { + "type": "class SharedPointer", + "id": 30, + "offset": 464, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1692586788 + }, + "m_rarity": { + "type": "enum RarityType", + "id": 31, + "offset": 460, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2253792108, + "enum_options": { + "RT_COMMON": 0, + "RT_UNCOMMON": 1, + "RT_RARE": 2, + "RT_ULTRARARE": 3, + "RT_EPIC": 4 + } + }, + "m_iconIndex": { + "type": "int", + "id": 32, + "offset": 480, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1053730811 + }, + "m_imageName": { + "type": "std::string", + "id": 33, + "offset": 488, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2391520543 + }, + "m_statModifierSet": { + "type": "class PetStatModificationSet", + "id": 34, + "offset": 520, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2182942670 + } + } + }, + "2023560016": { + "name": "class ConditionalSpellEffectRequirement", + "bases": [ + "Requirement", + "PropertyClass" + ], + "hash": 2023560016, + "properties": { + "m_applyNOT": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1746328074, + "enum_options": { + "__DEFAULT": 0 + } + }, + "m_operator": { + "type": "enum Requirement::Operator", + "id": 1, + "offset": 76, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2672792317, + "enum_options": { + "ROP_AND": 0, + "ROP_OR": 1, + "__DEFAULT": "ROP_AND" + } + }, + "m_targetType": { + "type": "enum ConditionalSpellEffectRequirement::RequirementTarget", + "id": 2, + "offset": 80, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547737902, + "enum_options": { + "RT_Caster": 0, + "RT_Target": 1 + } + } + } + }, + "304888175": { + "name": "class WizardControlTable", + "bases": [ + "Window", + "PropertyClass" + ], + "hash": 304888175, + "properties": { + "m_sName": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306437263 + }, + "m_Children": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 65667, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621225959 + }, + "m_Style": { + "type": "unsigned int", + "id": 2, + "offset": 152, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "SCALE_CHILDREN": 2, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "FOCUS_LOCKED": 64, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152 + } + }, + "m_Flags": { + "type": "unsigned int", + "id": 3, + "offset": 156, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } + }, + "m_Window": { + "type": "class Rect", + "id": 4, + "offset": 160, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3105139380 + }, + "m_fTargetAlpha": { + "type": "float", + "id": 5, + "offset": 212, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1809129834 + }, + "m_fDisabledAlpha": { + "type": "float", + "id": 6, + "offset": 216, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1389987675 + }, + "m_fAlpha": { + "type": "float", + "id": 7, + "offset": 208, + "flags": 65671, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 482130755 + }, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3623628394 + }, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2102211316 + }, + "m_sScript": { + "type": "std::string", + "id": 10, + "offset": 352, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1846695875 + }, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3389835433 + }, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547159940 + }, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513510520 + }, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3091503757 + } + } + }, + "752741281": { + "name": "class ClientBGPlayerInfo", + "bases": [ + "BGPlayerInfo", + "PropertyClass" + ], + "hash": 752741281, + "properties": { + "m_playerID": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1774633426 + }, + "m_team": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1717579362 + } + } + }, + "1151814478": { + "name": "class DerbyAddSpeedBoost*", + "bases": [ + "DerbyEffect", + "PropertyClass" + ], + "hash": 1151814478, + "properties": { + "m_buffType": { + "type": "enum DerbyTalentBuffType", + "id": 0, + "offset": 92, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1149251982, + "enum_options": { + "Buff": 0, + "Debuff": 1, + "Neither": 2 + } + }, + "m_kTarget": { + "type": "enum DerbyTargetType", + "id": 1, + "offset": 96, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1807803351, + "enum_options": { + "kTargetInFront": 0, + "kTargetBehind": 1, + "kTargetFirst": 2, + "kTargetSelf": 3, + "kTargetAll": 4, + "kTargetLast": 5 + } + }, + "m_nDuration": { + "type": "int", + "id": 2, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1110167982 + }, + "m_effectID": { + "type": "unsigned int", + "id": 3, + "offset": 88, + "flags": 24, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2347630439 + }, + "m_imageFilename": { + "type": "std::string", + "id": 4, + "offset": 112, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2813328063 + }, + "m_iconIndex": { + "type": "unsigned int", + "id": 5, + "offset": 144, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1265133262 + }, + "m_soundOnActivate": { + "type": "std::string", + "id": 6, + "offset": 152, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1956929714 + }, + "m_soundOnTarget": { + "type": "std::string", + "id": 7, + "offset": 184, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3444214056 + }, + "m_targetParticleEffect": { + "type": "std::string", + "id": 8, + "offset": 216, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3048234723 + }, + "m_overheadMessage": { + "type": "std::string", + "id": 9, + "offset": 248, + "flags": 8388639, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1701018190 + }, + "m_requirements": { + "type": "class RequirementList", + "id": 10, + "offset": 280, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2840988582 + }, + "m_nTimesToAdd": { + "type": "int", + "id": 11, + "offset": 376, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1414275638 + } + } + }, + "1592387164": { + "name": "class RegisterActorCinematicAction", + "bases": [ + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 1592387164, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + }, + "m_zoneTag": { + "type": "std::string", + "id": 2, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3405382643 + }, + "m_bStartHidden": { + "type": "bool", + "id": 3, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1939845615 + } + } + }, + "2024668540": { + "name": "class CharacterSet*", + "bases": [ + "PropertyClass" + ], + "hash": 2024668540, + "properties": { + "m_set": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 848667448 + }, + "m_cost": { + "type": "unsigned int", + "id": 1, + "offset": 88, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 430682758 + } + } + }, + "307603608": { + "name": "class CombatPlanningPhaseWindow", + "bases": [ + "Window", + "PropertyClass" + ], + "hash": 307603608, + "properties": { + "m_sName": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306437263 + }, + "m_Children": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621225959 + }, + "m_Style": { + "type": "unsigned int", + "id": 2, + "offset": 152, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "SCALE_CHILDREN": 2, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "FOCUS_LOCKED": 64, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152 + } + }, + "m_Flags": { + "type": "unsigned int", + "id": 3, + "offset": 156, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } + }, + "m_Window": { + "type": "class Rect", + "id": 4, + "offset": 160, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3105139380 + }, + "m_fTargetAlpha": { + "type": "float", + "id": 5, + "offset": 212, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1809129834 + }, + "m_fDisabledAlpha": { + "type": "float", + "id": 6, + "offset": 216, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1389987675 + }, + "m_fAlpha": { + "type": "float", + "id": 7, + "offset": 208, + "flags": 65671, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 482130755 + }, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3623628394 + }, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2102211316 + }, + "m_sScript": { + "type": "std::string", + "id": 10, + "offset": 352, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1846695875 + }, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3389835433 + }, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547159940 + }, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513510520 + }, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3091503757 + } + } + }, + "306083240": { + "name": "class SharedPointer", + "bases": [ + "TournamentUpdate", + "PropertyClass" + ], + "hash": 306083240, + "properties": { + "m_teamID": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 982102220 + }, + "m_matchID": { + "type": "gid", + "id": 1, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1757621298 + } + } + }, + "753453343": { + "name": "class ClientBurnAuraCinematicAction", + "bases": [ + "BurnAuraCinematicAction", + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 753453343, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + } + } + }, + "1152074325": { + "name": "class HousingGamePowerUpLocations*", + "bases": [ + "PropertyClass" + ], + "hash": 1152074325, + "properties": { + "m_powerupLocations": { + "type": "class Vector3D", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 3618004416 + }, + "m_numberOfNodes": { + "type": "int", + "id": 1, + "offset": 88, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1229751665 + } + } + }, + "1594175174": { + "name": "class TextureRemap*", + "bases": [ + "PropertyClass" + ], + "hash": 1594175174, + "properties": { + "m_remapIndex": { + "type": "unsigned int", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1234341146 + }, + "m_textureTemplateID": { + "type": "unsigned int", + "id": 1, + "offset": 76, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1730653991 + } + } + }, + "2028806687": { + "name": "class SharedPointer", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 2028806687, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + }, + "m_animation1": { + "type": "std::string", + "id": 1, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3030904012 + }, + "m_animation2": { + "type": "std::string", + "id": 2, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3030904013 + }, + "m_sound1": { + "type": "std::string", + "id": 3, + "offset": 184, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2453262773 + }, + "m_sound2": { + "type": "std::string", + "id": 4, + "offset": 216, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2453262774 + }, + "m_emoteText": { + "type": "std::string", + "id": 5, + "offset": 248, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2426384538 + }, + "m_emoteType": { + "type": "enum CustomEmoteType", + "id": 6, + "offset": 280, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1172696222, + "enum_options": { + "CE_Emote": 0, + "CE_Teleport": 1, + "CE_Dance": 2 + } + }, + "m_isMemberEmote": { + "type": "bool", + "id": 7, + "offset": 284, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1406867457 + }, + "m_isDefaultEmote": { + "type": "bool", + "id": 8, + "offset": 285, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1645218254 + }, + "m_bitFieldNumber": { + "type": "int", + "id": 9, + "offset": 288, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 59324198 + } + } + }, + "306737126": { + "name": "MadlibArgT", + "bases": [ + "MadlibArg", + "PropertyClass" + ], + "hash": 306737126, + "properties": { + "m_madlibToken": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3058682373 + }, + "m_madlibArgument": { + "type": "unsigned int", + "id": 1, + "offset": 112, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1089894617 + } + } + }, + "753237842": { + "name": "class EloRank", + "bases": [ + "PropertyClass" + ], + "hash": 753237842, + "properties": { + "m_eloRankUp": { + "type": "int", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2072991243 + }, + "m_eloRankDown": { + "type": "int", + "id": 1, + "offset": 76, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 385300382 + }, + "m_kFactor": { + "type": "int", + "id": 2, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 243011684 + }, + "m_carryoverElo": { + "type": "int", + "id": 3, + "offset": 84, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 61027127 + }, + "m_rankName": { + "type": "std::string", + "id": 4, + "offset": 88, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1779957096 + }, + "m_icon": { + "type": "std::string", + "id": 5, + "offset": 120, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1717182340 + }, + "m_badgeName": { + "type": "std::string", + "id": 6, + "offset": 152, + "flags": 268435463, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3002948047, + "enum_options": { + "__BASECLASS": "BadgeTemplate" + } + } + } + }, + "1151880684": { + "name": "class ClientInfractionMessageBox", + "bases": [ + "InfractionMessageBox", + "InfractionPenalty", + "PropertyClass" + ], + "hash": 1151880684, + "properties": { + "m_internalID": { + "type": "unsigned int", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1854540375 + }, + "m_categoryID": { + "type": "unsigned int", + "id": 1, + "offset": 76, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1382795736 + }, + "m_removeAtPointValue": { + "type": "float", + "id": 2, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2112196961 + }, + "m_expireTime": { + "type": "unsigned int", + "id": 3, + "offset": 84, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1836304873 + }, + "m_titleKey": { + "type": "std::string", + "id": 4, + "offset": 88, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3096106918 + }, + "m_messageKey": { + "type": "std::string", + "id": 5, + "offset": 120, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3561518217 + } + } + }, + "1593514008": { + "name": "class InfractionRecord*", + "bases": [ + "PropertyClass" + ], + "hash": 1593514008, + "properties": { + "m_categoryID": { + "type": "unsigned int", + "id": 0, + "offset": 72, + "flags": 55, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1382795736 + }, + "m_eventID": { + "type": "unsigned int", + "id": 1, + "offset": 76, + "flags": 55, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1031693820 + }, + "m_eventCount": { + "type": "unsigned int", + "id": 2, + "offset": 80, + "flags": 55, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1625031576 + }, + "m_expireTime": { + "type": "unsigned int", + "id": 3, + "offset": 84, + "flags": 55, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1836304873 + }, + "m_points": { + "type": "float", + "id": 4, + "offset": 88, + "flags": 55, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 927927476 + }, + "m_metadata": { + "type": "std::string", + "id": 5, + "offset": 96, + "flags": 55, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2383271932 + } + } + }, + "2028047017": { + "name": "class ClientHousingBlobStrategy", + "bases": [ + "BaseClientHousingBlobStrategy", + "BlobCacheInterface", + "PropertyClass" + ], + "hash": 2028047017, + "properties": {} + }, + "1593415704": { + "name": "class InfractionRecord", + "bases": [ + "PropertyClass" + ], + "hash": 1593415704, + "properties": { + "m_categoryID": { + "type": "unsigned int", + "id": 0, + "offset": 72, + "flags": 55, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1382795736 + }, + "m_eventID": { + "type": "unsigned int", + "id": 1, + "offset": 76, + "flags": 55, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1031693820 + }, + "m_eventCount": { + "type": "unsigned int", + "id": 2, + "offset": 80, + "flags": 55, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1625031576 + }, + "m_expireTime": { + "type": "unsigned int", + "id": 3, + "offset": 84, + "flags": 55, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1836304873 + }, + "m_points": { + "type": "float", + "id": 4, + "offset": 88, + "flags": 55, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 927927476 + }, + "m_metadata": { + "type": "std::string", + "id": 5, + "offset": 96, + "flags": 55, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2383271932 + } + } + }, + "2026612444": { + "name": "class SharedPointer", + "bases": [ + "PhysicsSimMassSphere", + "PhysicsSimMass", + "PropertyClass" + ], + "hash": 2026612444, + "properties": {} + }, + "2025704763": { + "name": "class SharedPointer", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 2025704763, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + } + } + }, + "308149642": { + "name": "class SpellFusionTemplate*", + "bases": [ + "CoreTemplate", + "PropertyClass" + ], + "hash": 308149642, + "properties": { + "m_behaviors": { + "type": "class BehaviorTemplate*", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1197808594 + }, + "m_templateID": { + "type": "unsigned int", + "id": 1, + "offset": 96, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1286746870 + }, + "m_debugName": { + "type": "std::string", + "id": 2, + "offset": 104, + "flags": 134217735, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3553984419 + }, + "m_displayKey": { + "type": "std::string", + "id": 3, + "offset": 136, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3023276954 + }, + "m_adjectives": { + "type": "std::string", + "id": 4, + "offset": 168, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2967855037 + }, + "m_primaryIngredient": { + "type": "class SpellIngredient*", + "id": 5, + "offset": 184, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1337011809 + }, + "m_secondaryIngredient": { + "type": "class SpellIngredient*", + "id": 6, + "offset": 192, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2076393285 + } + } + }, + "1152074517": { + "name": "class HousingGamePowerUpLocations", + "bases": [ + "PropertyClass" + ], + "hash": 1152074517, + "properties": { + "m_powerupLocations": { + "type": "class Vector3D", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 3618004416 + }, + "m_numberOfNodes": { + "type": "int", + "id": 1, + "offset": 88, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1229751665 + } + } + }, + "756064718": { + "name": "class SG_GameAction_PlaySound", + "bases": [ + "SG_GameAction", + "PropertyClass" + ], + "hash": 756064718, + "properties": { + "m_target": { + "type": "enum SG_GameAction::SG_Target", + "id": 0, + "offset": 72, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1166870973, + "enum_options": { + "Target_Ball": 0, + "Target_Self": 1, + "Target_Connections": 2, + "__DEFAULT": "Target_Ball" + } + }, + "m_simpleSounds": { + "type": "std::string", + "id": 1, + "offset": 112, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 3351944033 + } + } + }, + "1593863596": { + "name": "class ShadowPipRule::RoundPercent", + "bases": [ + "PropertyClass" + ], + "hash": 1593863596, + "properties": { + "m_roundNum": { + "type": "int", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1461215570 + }, + "m_percentageChance": { + "type": "int", + "id": 1, + "offset": 76, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 982834938 + } + } + }, + "755256256": { + "name": "class Ladder", + "bases": [ + "CoreObject", + "PropertyClass" + ], + "hash": 755256256, + "properties": { + "m_inactiveBehaviors": { + "type": "class SharedPointer", + "id": 0, + "offset": 224, + "flags": 31, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1850812559 + }, + "m_globalID.m_full": { + "type": "unsigned __int64", + "id": 1, + "offset": 72, + "flags": 16777247, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2312465444 + }, + "m_permID": { + "type": "unsigned __int64", + "id": 2, + "offset": 80, + "flags": 16777247, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1298909658 + }, + "m_location": { + "type": "class Vector3D", + "id": 3, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2239683611 + }, + "m_orientation": { + "type": "class Vector3D", + "id": 4, + "offset": 180, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2344058766 + }, + "m_fScale": { + "type": "float", + "id": 5, + "offset": 196, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 503137701 + }, + "m_templateID.m_full": { + "type": "unsigned __int64", + "id": 6, + "offset": 96, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 633907631 + }, + "m_debugName": { + "type": "std::string", + "id": 7, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3553984419 + }, + "m_displayKey": { + "type": "std::string", + "id": 8, + "offset": 136, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3023276954 + }, + "m_zoneTagID": { + "type": "unsigned int", + "id": 9, + "offset": 344, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 965291410 + }, + "m_speedMultiplier": { + "type": "short", + "id": 10, + "offset": 192, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 123130076 + }, + "m_nMobileID": { + "type": "unsigned short", + "id": 11, + "offset": 194, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1054318939 + }, + "m_characterID": { + "type": "gid", + "id": 12, + "offset": 432, + "flags": 33554463, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 210498386 + }, + "m_gameID": { + "type": "gid", + "id": 13, + "offset": 416, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 469020959 + }, + "m_gameNameID": { + "type": "unsigned int", + "id": 14, + "offset": 424, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 829938293 + }, + "m_gamesWon": { + "type": "int", + "id": 15, + "offset": 440, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1733371579 + }, + "m_gamesLost": { + "type": "int", + "id": 16, + "offset": 444, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1363461609 + }, + "m_gamesTied": { + "type": "int", + "id": 17, + "offset": 448, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1363742093 + }, + "m_gamesPlayed": { + "type": "int", + "id": 18, + "offset": 452, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 954596038 + }, + "m_score": { + "type": "int", + "id": 19, + "offset": 456, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 809507734 + } + } + }, + "1593863404": { + "name": "class ShadowPipRule::RoundPercent*", + "bases": [ + "PropertyClass" + ], + "hash": 1593863404, + "properties": { + "m_roundNum": { + "type": "int", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1461215570 + }, + "m_percentageChance": { + "type": "int", + "id": 1, + "offset": 76, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 982834938 + } + } + }, + "2027516117": { + "name": "class BattlegroundTemplateChat", + "bases": [ + "PropertyClass" + ], + "hash": 2027516117, + "properties": { + "m_projectID": { + "type": "unsigned int", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1263221425 + }, + "m_countdownSeconds": { + "type": "float", + "id": 1, + "offset": 76, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 255072071 + }, + "m_matchSize": { + "type": "int", + "id": 2, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 563704930 + }, + "m_cancelCooldownSeconds": { + "type": "int", + "id": 3, + "offset": 84, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1074662868 + }, + "m_teamCount": { + "type": "int", + "id": 4, + "offset": 88, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1614476394 + }, + "m_matchmakingList": { + "type": "class SharedPointer", + "id": 5, + "offset": 96, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 3012888769 + } + } + }, + "309965574": { + "name": "class AddGlobalCinematicStageTemplate", + "bases": [ + "CinematicStageTemplate", + "PropertyClass" + ], + "hash": 309965574, + "properties": { + "m_name": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1717359772 + }, + "m_duration": { + "type": "float", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 920323453 + }, + "m_actions": { + "type": "class SharedPointer", + "id": 2, + "offset": 112, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1380578687 + }, + "m_stageRelationships": { + "type": "class SharedPointer", + "id": 3, + "offset": 128, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 499983354 + }, + "m_global": { + "type": "std::string", + "id": 4, + "offset": 152, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1979851564 + }, + "m_sound": { + "type": "std::string", + "id": 5, + "offset": 184, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2307644996 + } + } + }, + "754942536": { + "name": "class CastleGamesOption", + "bases": [ + "ServiceOptionBase", + "PropertyClass" + ], + "hash": 754942536, + "properties": { + "m_serviceName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2206028813 + }, + "m_iconKey": { + "type": "std::string", + "id": 1, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2457138637 + }, + "m_displayKey": { + "type": "std::string", + "id": 2, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3023276954 + }, + "m_serviceIndex": { + "type": "unsigned int", + "id": 3, + "offset": 204, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2103126710 + }, + "m_forceInteract": { + "type": "bool", + "id": 4, + "offset": 200, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1705789564 + } + } + }, + "1155478125": { + "name": "class ClientPlaySoundCinematicAction*", + "bases": [ + "PlaySoundCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 1155478125, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_sound": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 131079, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2307644996 + }, + "m_useClientLocation": { + "type": "bool", + "id": 2, + "offset": 100, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 98585784 + }, + "m_soundType": { + "type": "enum PlaySoundCinematicAction::SoundType", + "id": 3, + "offset": 96, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 868075053, + "enum_options": { + "kSigil": 0, + "kGotHit": 1, + "kDeath": 2, + "kChatter": 4, + "__DEFAULT": "kSigil" + } + }, + "m_streamSound": { + "type": "bool", + "id": 4, + "offset": 101, + "flags": 263, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1693179368 + }, + "m_playMusic": { + "type": "bool", + "id": 5, + "offset": 102, + "flags": 263, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 552729674 + }, + "m_fadeDuration": { + "type": "float", + "id": 6, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1402536557 + } + } + }, + "2027231740": { + "name": "class CrownShopSettings*", + "bases": [ + "PropertyClass" + ], + "hash": 2027231740, + "properties": { + "m_saleFilter": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1462249118 + }, + "m_newUsableFilter": { + "type": "bool", + "id": 1, + "offset": 73, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1923088319 + }, + "m_buttonView": { + "type": "bool", + "id": 2, + "offset": 74, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1893157642 + }, + "m_theBattleReadyItemTemplateID": { + "type": "unsigned int", + "id": 3, + "offset": 76, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 494853047 + } + } + }, + "309130423": { + "name": "class ControlButton*", + "bases": [ + "Window", + "PropertyClass" + ], + "hash": 309130423, + "properties": { + "m_sName": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306437263 + }, + "m_Children": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621225959 + }, + "m_Style": { + "type": "unsigned int", + "id": 2, + "offset": 152, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152, + "SHOW_HOTKEY": 16777216, + "EFFECT_SCALE": 67108864, + "LOCK_ICON_SIZE": 33554432, + "LEFT_TEXT": 536870912, + "NO_FIT_TEXT": 1073741824 + } + }, + "m_Flags": { + "type": "unsigned int", + "id": 3, + "offset": 156, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } + }, + "m_Window": { + "type": "class Rect", + "id": 4, + "offset": 160, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3105139380 + }, + "m_fTargetAlpha": { + "type": "float", + "id": 5, + "offset": 212, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1809129834 + }, + "m_fDisabledAlpha": { + "type": "float", + "id": 6, + "offset": 216, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1389987675 + }, + "m_fAlpha": { + "type": "float", + "id": 7, + "offset": 208, + "flags": 65671, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 482130755 + }, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3623628394 + }, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2102211316 + }, + "m_sScript": { + "type": "std::string", + "id": 10, + "offset": 352, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1846695875 + }, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3389835433 + }, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547159940 + }, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513510520 + }, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3091503757 + }, + "m_bToggle": { + "type": "bool", + "id": 16, + "offset": 608, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2071810903 + }, + "m_bButtonDown": { + "type": "bool", + "id": 17, + "offset": 609, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 840041705 + }, + "m_sLabel": { + "type": "std::wstring", + "id": 18, + "offset": 616, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2207009163 + }, + "m_labelOffset": { + "type": "class Rect", + "id": 19, + "offset": 832, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1990646723 + }, + "m_pButton": { + "type": "class SharedPointer", + "id": 20, + "offset": 656, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1543855875 + }, + "m_HotKey": { + "type": "unsigned int", + "id": 21, + "offset": 672, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1631553409 + }, + "m_Color": { + "type": "class Color", + "id": 22, + "offset": 676, + "flags": 262279, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1753714077 + }, + "m_bCursorOver": { + "type": "bool", + "id": 23, + "offset": 689, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 283981103 + }, + "m_bAbortWhenCursorNotOver": { + "type": "bool", + "id": 24, + "offset": 706, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 325405258 + }, + "m_bHotKeyDown": { + "type": "bool", + "id": 25, + "offset": 680, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 616989185 + }, + "m_fTime": { + "type": "float", + "id": 26, + "offset": 684, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 883746156 + }, + "m_bGreyed": { + "type": "bool", + "id": 27, + "offset": 688, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1566556053 + }, + "m_fMaxScale": { + "type": "float", + "id": 28, + "offset": 692, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2070186635 + }, + "m_fScaleSpeed": { + "type": "float", + "id": 29, + "offset": 696, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1457135702 + }, + "m_bUseDropShadow": { + "type": "bool", + "id": 30, + "offset": 704, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 93063037 + }, + "m_bUseOutline": { + "type": "bool", + "id": 31, + "offset": 705, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 744292994 + }, + "m_pGreyedState": { + "type": "class SharedPointer", + "id": 32, + "offset": 768, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2703352263 + }, + "m_pNormalState": { + "type": "class SharedPointer", + "id": 33, + "offset": 752, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1887909808 + }, + "m_pHighlightedState": { + "type": "class SharedPointer", + "id": 34, + "offset": 784, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2200177608 + }, + "m_pSelectedState": { + "type": "class SharedPointer", + "id": 35, + "offset": 800, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2266776432 + }, + "m_pDepressedState": { + "type": "class SharedPointer", + "id": 36, + "offset": 816, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1878185798 + } + } + }, + "754846348": { + "name": "class BadgeFilterInfoList*", + "bases": [ + "PropertyClass" + ], + "hash": 754846348, + "properties": { + "m_badgeFilterInfoList": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2012631232 + } + } + }, + "1154096504": { + "name": "class PhysicsBehavior", + "bases": [ + "CollisionBehavior", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1154096504, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_nHolderGID": { + "type": "gid", + "id": 1, + "offset": 352, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 133708664 + }, + "m_vHoldOffset": { + "type": "class Vector3D", + "id": 2, + "offset": 360, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3766080710 + }, + "m_fHoldForce": { + "type": "float", + "id": 3, + "offset": 372, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1792175219 + } + } + }, + "309130418": { + "name": "class ControlButton", + "bases": [ + "Window", + "PropertyClass" + ], + "hash": 309130418, + "properties": { + "m_sName": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306437263 + }, + "m_Children": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621225959 + }, + "m_Style": { + "type": "unsigned int", + "id": 2, + "offset": 152, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152, + "SHOW_HOTKEY": 16777216, + "EFFECT_SCALE": 67108864, + "LOCK_ICON_SIZE": 33554432, + "LEFT_TEXT": 536870912, + "NO_FIT_TEXT": 1073741824 + } + }, + "m_Flags": { + "type": "unsigned int", + "id": 3, + "offset": 156, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } + }, + "m_Window": { + "type": "class Rect", + "id": 4, + "offset": 160, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3105139380 + }, + "m_fTargetAlpha": { + "type": "float", + "id": 5, + "offset": 212, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1809129834 + }, + "m_fDisabledAlpha": { + "type": "float", + "id": 6, + "offset": 216, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1389987675 + }, + "m_fAlpha": { + "type": "float", + "id": 7, + "offset": 208, + "flags": 65671, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 482130755 + }, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3623628394 + }, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2102211316 + }, + "m_sScript": { + "type": "std::string", + "id": 10, + "offset": 352, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1846695875 + }, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3389835433 + }, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547159940 + }, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513510520 + }, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3091503757 + }, + "m_bToggle": { + "type": "bool", + "id": 16, + "offset": 608, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2071810903 + }, + "m_bButtonDown": { + "type": "bool", + "id": 17, + "offset": 609, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 840041705 + }, + "m_sLabel": { + "type": "std::wstring", + "id": 18, + "offset": 616, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2207009163 + }, + "m_labelOffset": { + "type": "class Rect", + "id": 19, + "offset": 832, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1990646723 + }, + "m_pButton": { + "type": "class SharedPointer", + "id": 20, + "offset": 656, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1543855875 + }, + "m_HotKey": { + "type": "unsigned int", + "id": 21, + "offset": 672, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1631553409 + }, + "m_Color": { + "type": "class Color", + "id": 22, + "offset": 676, + "flags": 262279, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1753714077 + }, + "m_bCursorOver": { + "type": "bool", + "id": 23, + "offset": 689, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 283981103 + }, + "m_bAbortWhenCursorNotOver": { + "type": "bool", + "id": 24, + "offset": 706, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 325405258 + }, + "m_bHotKeyDown": { + "type": "bool", + "id": 25, + "offset": 680, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 616989185 + }, + "m_fTime": { + "type": "float", + "id": 26, + "offset": 684, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 883746156 + }, + "m_bGreyed": { + "type": "bool", + "id": 27, + "offset": 688, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1566556053 + }, + "m_fMaxScale": { + "type": "float", + "id": 28, + "offset": 692, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2070186635 + }, + "m_fScaleSpeed": { + "type": "float", + "id": 29, + "offset": 696, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1457135702 + }, + "m_bUseDropShadow": { + "type": "bool", + "id": 30, + "offset": 704, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 93063037 + }, + "m_bUseOutline": { + "type": "bool", + "id": 31, + "offset": 705, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 744292994 + }, + "m_pGreyedState": { + "type": "class SharedPointer", + "id": 32, + "offset": 768, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2703352263 + }, + "m_pNormalState": { + "type": "class SharedPointer", + "id": 33, + "offset": 752, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1887909808 + }, + "m_pHighlightedState": { + "type": "class SharedPointer", + "id": 34, + "offset": 784, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2200177608 + }, + "m_pSelectedState": { + "type": "class SharedPointer", + "id": 35, + "offset": 800, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2266776432 + }, + "m_pDepressedState": { + "type": "class SharedPointer", + "id": 36, + "offset": 816, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1878185798 + } + } + }, + "1154006544": { + "name": "class ClientActorDialogCinematicAction", + "bases": [ + "ActorDialogCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 1154006544, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_dialog": { + "type": "class ActorDialog*", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1310859212 + }, + "m_activePersona": { + "type": "std::string", + "id": 2, + "offset": 88, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1972573231 + } + } + }, + "1152801723": { + "name": "class AtticBehavior*", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1152801723, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_containerGID": { + "type": "gid", + "id": 1, + "offset": 112, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 550557519 + }, + "m_atticItemCount": { + "type": "int", + "id": 2, + "offset": 120, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 184605671 + } + } + }, + "1595304254": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1595304254, + "properties": { + "m_rootElement": { + "type": "class HelpChatElement", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2242085258 + } + } + }, + "1152436744": { + "name": "class DeckConfigurationWindow*", + "bases": [ + "Window", + "PropertyClass" + ], + "hash": 1152436744, + "properties": { + "m_sName": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306437263 + }, + "m_Children": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621225959 + }, + "m_Style": { + "type": "unsigned int", + "id": 2, + "offset": 152, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "SCALE_CHILDREN": 2, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "FOCUS_LOCKED": 64, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152 + } + }, + "m_Flags": { + "type": "unsigned int", + "id": 3, + "offset": 156, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } + }, + "m_Window": { + "type": "class Rect", + "id": 4, + "offset": 160, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3105139380 + }, + "m_fTargetAlpha": { + "type": "float", + "id": 5, + "offset": 212, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1809129834 + }, + "m_fDisabledAlpha": { + "type": "float", + "id": 6, + "offset": 216, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1389987675 + }, + "m_fAlpha": { + "type": "float", + "id": 7, + "offset": 208, + "flags": 65671, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 482130755 + }, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3623628394 + }, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2102211316 + }, + "m_sScript": { + "type": "std::string", + "id": 10, + "offset": 352, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1846695875 + }, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3389835433 + }, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547159940 + }, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513510520 + }, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3091503757 + } + } + }, + "1594871815": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1594871815, + "properties": {} + }, + "2028473291": { + "name": "class SharedPointer", + "bases": [ + "CastEffectCinematicAction", + "BaseEffectCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 2028473291, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_effectRel": { + "type": "enum BaseEffectCinematicAction::kEffectRelative", + "id": 1, + "offset": 80, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2978921287, + "enum_options": { + "kNone": 0, + "kSigil": 1, + "kTarget": 2, + "kSource": 3, + "kActor": 4 + } + }, + "m_namedActor": { + "type": "std::string", + "id": 2, + "offset": 88, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3413532537 + } + } + }, + "309942562": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 309942562, + "properties": { + "m_numberOfEntries": { + "type": "int", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 315514866 + }, + "m_fishTemplateID": { + "type": "unsigned int", + "id": 1, + "offset": 76, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2050232416 + }, + "m_entryList": { + "type": "class SharedPointer", + "id": 2, + "offset": 80, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1434386087 + } + } + }, + "755452973": { + "name": "struct DuelSimInfo", + "bases": [], + "hash": 755452973, + "properties": {} + }, + "755278286": { + "name": "class SG_GameAction_PlaySound*", + "bases": [ + "SG_GameAction", + "PropertyClass" + ], + "hash": 755278286, + "properties": { + "m_target": { + "type": "enum SG_GameAction::SG_Target", + "id": 0, + "offset": 72, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1166870973, + "enum_options": { + "Target_Ball": 0, + "Target_Self": 1, + "Target_Connections": 2, + "__DEFAULT": "Target_Ball" + } + }, + "m_simpleSounds": { + "type": "std::string", + "id": 1, + "offset": 112, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 3351944033 + } + } + }, + "1152801726": { + "name": "class AtticBehavior", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1152801726, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_containerGID": { + "type": "gid", + "id": 1, + "offset": 112, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 550557519 + }, + "m_atticItemCount": { + "type": "int", + "id": 2, + "offset": 120, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 184605671 + } + } + }, + "1595636983": { + "name": "class WizItemVendorDataList*", + "bases": [ + "WizItemLocations", + "PropertyClass" + ], + "hash": 1595636983, + "properties": { + "m_itemType": { + "type": "enum WizItemLocations::eItemType", + "id": 0, + "offset": 72, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3482173907, + "enum_options": { + "shop": 0, + "quest": 1, + "boss": 2, + "gardening": 3, + "goldChest": 4 + } + }, + "m_vendors": { + "type": "class SharedPointer", + "id": 1, + "offset": 80, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1211076136 + } + } + }, + "2030626927": { + "name": "class HousingSignOperator*", + "bases": [ + "HelpChatOperator", + "PropertyClass" + ], + "hash": 2030626927, + "properties": { + "m_rootElement": { + "type": "class HelpChatElement", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2242085258 + } + } + }, + "310980971": { + "name": "class TitleOption*", + "bases": [ + "PropertyClass" + ], + "hash": 310980971, + "properties": { + "m_titleStringKey": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1751250333 + }, + "m_cost": { + "type": "int", + "id": 1, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 219280307 + } + } + }, + "755305948": { + "name": "class FXOverrideBehavior*", + "bases": [ + "ClientEquipmentBehavior", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 755305948, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_itemList": { + "type": "class SharedPointer", + "id": 1, + "offset": 120, + "flags": 27, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1983655699 + }, + "m_slotList": { + "type": "class SharedPointer", + "id": 2, + "offset": 136, + "flags": 27, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 3213026923 + }, + "m_publicItemList": { + "type": "class SharedPointer", + "id": 3, + "offset": 152, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1693467991 + }, + "m_FXOverrideBehaviorInfo": { + "type": "class FXOverrideBehaviorInfo", + "id": 4, + "offset": 232, + "flags": 27, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1746411198 + } + } + }, + "1595636215": { + "name": "class WizItemVendorDataList", + "bases": [ + "WizItemLocations", + "PropertyClass" + ], + "hash": 1595636215, + "properties": { + "m_itemType": { + "type": "enum WizItemLocations::eItemType", + "id": 0, + "offset": 72, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3482173907, + "enum_options": { + "shop": 0, + "quest": 1, + "boss": 2, + "gardening": 3, + "goldChest": 4 + } + }, + "m_vendors": { + "type": "class SharedPointer", + "id": 1, + "offset": 80, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1211076136 + } + } + }, + "2029353086": { + "name": "class StopComplexSoundCinematicAction", + "bases": [ + "CinematicAction", + "PropertyClass" + ], + "hash": 2029353086, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_sound": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2307644996 + }, + "m_stopAllLoopingSounds": { + "type": "bool", + "id": 2, + "offset": 112, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1944220294 + }, + "m_fadeDuration": { + "type": "float", + "id": 3, + "offset": 116, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1402536557 + } + } + }, + "310451120": { + "name": "class SpawnPointTemplate", + "bases": [ + "PropertyClass" + ], + "hash": 310451120, + "properties": { + "m_location": { + "type": "class Vector3D", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2239683611 + }, + "m_boxLengths": { + "type": "class Vector3D", + "id": 1, + "offset": 84, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2872763232 + }, + "m_templateID.m_full": { + "type": "unsigned __int64", + "id": 2, + "offset": 96, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 633907631 + }, + "m_respawnTime": { + "type": "float", + "id": 3, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1554573574 + }, + "m_numSpawns": { + "type": "int", + "id": 4, + "offset": 108, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1269366534 + }, + "m_zoneLevelMin": { + "type": "unsigned int", + "id": 5, + "offset": 112, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1028934149 + }, + "m_zoneLevelMax": { + "type": "unsigned int", + "id": 6, + "offset": 116, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1028933895 + }, + "m_zoneLevelUp": { + "type": "unsigned int", + "id": 7, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1342541638 + } + } + }, + "1153014399": { + "name": "class SharedPointer", + "bases": [ + "EquippedItemInfo", + "PropertyClass" + ], + "hash": 1153014399, + "properties": { + "m_itemID": { + "type": "unsigned int", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 780964329 + }, + "m_baseColor": { + "type": "bui5", + "id": 1, + "offset": 88, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1433198221 + }, + "m_trimColor": { + "type": "bui5", + "id": 2, + "offset": 92, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1198446862 + }, + "m_pattern": { + "type": "bui5", + "id": 3, + "offset": 96, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1338360593 + } + } + }, + "2029808554": { + "name": "class ObstacleCourseModifyTimeBehavior*", + "bases": [ + "ObstacleCourseObstaclePathBase", + "ObstacleCourseObstacleBehavior", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 2029808554, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + } + } + }, + "310964851": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 310964851, + "properties": { + "m_roundNumber": { + "type": "unsigned char", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1040180705 + }, + "m_maximumRounds": { + "type": "unsigned char", + "id": 1, + "offset": 73, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1709082345 + }, + "m_planningTurnTime": { + "type": "unsigned char", + "id": 2, + "offset": 74, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1183728479 + }, + "m_blueTeamScore": { + "type": "unsigned int", + "id": 3, + "offset": 76, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1519259416 + }, + "m_orangeTeamScore": { + "type": "unsigned int", + "id": 4, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 988508012 + }, + "m_redTeamScore": { + "type": "unsigned int", + "id": 5, + "offset": 84, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1672048811 + }, + "m_passport": { + "type": "unsigned int", + "id": 6, + "offset": 88, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1362521513 + }, + "m_team1": { + "type": "unsigned char", + "id": 7, + "offset": 92, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1448349512 + }, + "m_team2": { + "type": "unsigned char", + "id": 8, + "offset": 93, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1448349513 + }, + "m_team3": { + "type": "unsigned char", + "id": 9, + "offset": 94, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1448349514 + }, + "m_handList": { + "type": "unsigned int", + "id": 10, + "offset": 96, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1650111716 + } + } + }, + "755839751": { + "name": "class ClientPlatformUser", + "bases": [ + "PropertyClass" + ], + "hash": 755839751, + "properties": { + "m_platformID": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3429548237 + }, + "m_displayName": { + "type": "std::wstring", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2242885711 + } + } + }, + "1595932260": { + "name": "class SharedPointer", + "bases": [ + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 1595932260, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + }, + "m_newActorName": { + "type": "std::string", + "id": 2, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2029131039 + } + } + }, + "1154091384": { + "name": "class PhysicsBehavior*", + "bases": [ + "CollisionBehavior", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1154091384, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_nHolderGID": { + "type": "gid", + "id": 1, + "offset": 352, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 133708664 + }, + "m_vHoldOffset": { + "type": "class Vector3D", + "id": 2, + "offset": 360, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3766080710 + }, + "m_fHoldForce": { + "type": "float", + "id": 3, + "offset": 372, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1792175219 + } + } + }, + "2031983546": { + "name": "class SharedPointer", + "bases": [ + "ObstacleCourseObstacleBehavior", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 2031983546, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + } + } + }, + "311008470": { + "name": "class SharedPointer", + "bases": [ + "DerbyAddSpeedBoost", + "DerbyEffect", + "PropertyClass" + ], + "hash": 311008470, + "properties": { + "m_buffType": { + "type": "enum DerbyTalentBuffType", + "id": 0, + "offset": 92, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1149251982, + "enum_options": { + "Buff": 0, + "Debuff": 1, + "Neither": 2 + } + }, + "m_kTarget": { + "type": "enum DerbyTargetType", + "id": 1, + "offset": 96, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1807803351, + "enum_options": { + "kTargetInFront": 0, + "kTargetBehind": 1, + "kTargetFirst": 2, + "kTargetSelf": 3, + "kTargetAll": 4, + "kTargetLast": 5 + } + }, + "m_nDuration": { + "type": "int", + "id": 2, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1110167982 + }, + "m_effectID": { + "type": "unsigned int", + "id": 3, + "offset": 88, + "flags": 24, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2347630439 + }, + "m_imageFilename": { + "type": "std::string", + "id": 4, + "offset": 112, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2813328063 + }, + "m_iconIndex": { + "type": "unsigned int", + "id": 5, + "offset": 144, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1265133262 + }, + "m_soundOnActivate": { + "type": "std::string", + "id": 6, + "offset": 152, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1956929714 + }, + "m_soundOnTarget": { + "type": "std::string", + "id": 7, + "offset": 184, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3444214056 + }, + "m_targetParticleEffect": { + "type": "std::string", + "id": 8, + "offset": 216, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3048234723 + }, + "m_overheadMessage": { + "type": "std::string", + "id": 9, + "offset": 248, + "flags": 8388639, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1701018190 + }, + "m_requirements": { + "type": "class RequirementList", + "id": 10, + "offset": 280, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2840988582 + }, + "m_nTimesToAdd": { + "type": "int", + "id": 11, + "offset": 376, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1414275638 + } + } + }, + "758327461": { + "name": "class MadlibIconData", + "bases": [ + "PropertyClass" + ], + "hash": 758327461, + "properties": { + "m_token": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2308819740 + }, + "m_icon": { + "type": "std::wstring", + "id": 1, + "offset": 104, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513167681 + }, + "m_text": { + "type": "std::wstring", + "id": 2, + "offset": 136, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513565469 + }, + "m_tooltip": { + "type": "std::wstring", + "id": 3, + "offset": 168, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1896483715 + }, + "m_color": { + "type": "std::wstring", + "id": 4, + "offset": 200, + "flags": 262151, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2084645847 + }, + "m_colorOverride": { + "type": "bool", + "id": 5, + "offset": 232, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1098799506 + }, + "m_wide": { + "type": "int", + "id": 6, + "offset": 236, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 219992003 + }, + "m_useCase": { + "type": "enum MadlibIconUseCase", + "id": 7, + "offset": 240, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3032762361, + "enum_options": { + "MIUC_Default": 0, + "MIUC_SpellDescription": 1, + "MIUC_AdvancedSpellDescription": 2, + "MIUC_CombatMessage": 3, + "MIUC_CustomCombatMessage": 4, + "MIUC_DescriptionCombatHUD": 5 + } + } + } + }, + "1601658659": { + "name": "class PetSnackShopOption", + "bases": [ + "ServiceOptionBase", + "PropertyClass" + ], + "hash": 1601658659, + "properties": { + "m_serviceName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2206028813 + }, + "m_iconKey": { + "type": "std::string", + "id": 1, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2457138637 + }, + "m_displayKey": { + "type": "std::string", + "id": 2, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3023276954 + }, + "m_serviceIndex": { + "type": "unsigned int", + "id": 3, + "offset": 204, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2103126710 + }, + "m_forceInteract": { + "type": "bool", + "id": 4, + "offset": 200, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1705789564 + } + } + }, + "2031691118": { + "name": "class SharedPointer", + "bases": [ + "CinematicAction", + "PropertyClass" + ], + "hash": 2031691118, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + } + } + }, + "757720884": { + "name": "class MobMonsterMagicBehaviorTemplate*", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 757720884, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + }, + "m_worldName": { + "type": "std::string", + "id": 1, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1846757476 + }, + "m_collectionResistance": { + "type": "int", + "id": 2, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 717150423 + }, + "m_isBoss": { + "type": "bool", + "id": 3, + "offset": 156, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 569602950 + }, + "m_essencesPerSummonTC": { + "type": "int", + "id": 4, + "offset": 160, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2052433520 + }, + "m_goldPerSummonTC": { + "type": "int", + "id": 5, + "offset": 164, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1978867293 + }, + "m_essencesPerHouseGuest": { + "type": "int", + "id": 6, + "offset": 168, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 254219206 + }, + "m_goldPerHouseGuest": { + "type": "int", + "id": 7, + "offset": 172, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1744976627 + }, + "m_essencesPerKillTC": { + "type": "int", + "id": 8, + "offset": 176, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 305653757 + }, + "m_goldPerKillTC": { + "type": "int", + "id": 9, + "offset": 180, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 910983338 + }, + "m_houseGuestTemplateID": { + "type": "unsigned int", + "id": 10, + "offset": 184, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 612813314 + }, + "m_alternateMobTemplateID": { + "type": "unsigned int", + "id": 11, + "offset": 188, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 233156212 + }, + "m_collectedAsTemplateID": { + "type": "unsigned int", + "id": 12, + "offset": 232, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1661926425 + } + } + }, + "1154949689": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1154949689, + "properties": {} + }, + "1599252829": { + "name": "class FXBySlotEffectInfo*", + "bases": [ + "GameEffectInfo", + "PropertyClass" + ], + "hash": 1599252829, + "properties": { + "m_effectName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2029161513 + }, + "m_bIsOnPet": { + "type": "bool", + "id": 1, + "offset": 104, + "flags": 263, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 522593303 + } + } + }, + "756318596": { + "name": "class FishBehavior", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 756318596, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_fishSize": { + "type": "float", + "id": 1, + "offset": 112, + "flags": 65536, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1986368316 + } + } + }, + "1154574409": { + "name": "class TrainMovement", + "bases": [ + "PropertyClass" + ], + "hash": 1154574409, + "properties": {} + }, + "1598253607": { + "name": "class ClientRegisterPersonaCinematicAction*", + "bases": [ + "RegisterPersonaCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 1598253607, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_persona": { + "type": "class Persona*", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2350440768 + } + } + }, + "314163079": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 314163079, + "properties": { + "m_loyaltyTierCount": { + "type": "int", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1322604645 + }, + "m_loyaltyTierDemotionTrigger": { + "type": "int", + "id": 1, + "offset": 76, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1427712879 + }, + "m_loyaltyTierLevelDuration": { + "type": "int", + "id": 2, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 599216410 + } + } + }, + "1154263410": { + "name": "class std::list >", + "bases": [], + "hash": 1154263410, + "properties": {} + }, + "1597722248": { + "name": "class SharedPointer", + "bases": [ + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 1597722248, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + }, + "m_newActorName": { + "type": "std::string", + "id": 2, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2029131039 + } + } + }, + "2032111182": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 2032111182, + "properties": { + "m_petTomePetTotalList": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 449762511 + }, + "m_petTemplateList": { + "type": "unsigned int", + "id": 1, + "offset": 88, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 567776494 + } + } + }, + "312595391": { + "name": "class SharedPointer", + "bases": [ + "PlayerStatueBehavior", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 312595391, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_visualBlobs": { + "type": "std::string", + "id": 1, + "offset": 176, + "flags": 31, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 3602657281 + } + } + }, + "1597347714": { + "name": "enum LeashedPathNodeType", + "bases": [], + "hash": 1597347714, + "properties": {} + }, + "311922264": { + "name": "class CameraController", + "bases": [ + "PropertyClass" + ], + "hash": 311922264, + "properties": {} + }, + "758327301": { + "name": "class MadlibIconData*", + "bases": [ + "PropertyClass" + ], + "hash": 758327301, + "properties": { + "m_token": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2308819740 + }, + "m_icon": { + "type": "std::wstring", + "id": 1, + "offset": 104, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513167681 + }, + "m_text": { + "type": "std::wstring", + "id": 2, + "offset": 136, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513565469 + }, + "m_tooltip": { + "type": "std::wstring", + "id": 3, + "offset": 168, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1896483715 + }, + "m_color": { + "type": "std::wstring", + "id": 4, + "offset": 200, + "flags": 262151, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2084645847 + }, + "m_colorOverride": { + "type": "bool", + "id": 5, + "offset": 232, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1098799506 + }, + "m_wide": { + "type": "int", + "id": 6, + "offset": 236, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 219992003 + }, + "m_useCase": { + "type": "enum MadlibIconUseCase", + "id": 7, + "offset": 240, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3032762361, + "enum_options": { + "MIUC_Default": 0, + "MIUC_SpellDescription": 1, + "MIUC_AdvancedSpellDescription": 2, + "MIUC_CombatMessage": 3, + "MIUC_CustomCombatMessage": 4, + "MIUC_DescriptionCombatHUD": 5 + } + } + } + }, + "1154769183": { + "name": "class GraphicalReagent*", + "bases": [ + "GraphicalSpell", + "Spell", + "PropertyClass" + ], + "hash": 1154769183, + "properties": { + "m_templateID": { + "type": "unsigned int", + "id": 0, + "offset": 128, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1286746870 + }, + "m_enchantment": { + "type": "unsigned int", + "id": 1, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2217886818 + }, + "m_pipCost": { + "type": "class SharedPointer", + "id": 2, + "offset": 176, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3605704820 + }, + "m_regularAdjust": { + "type": "int", + "id": 3, + "offset": 192, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1420453335 + }, + "m_magicSchoolID": { + "type": "unsigned int", + "id": 4, + "offset": 136, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 893146499 + }, + "m_accuracy": { + "type": "unsigned char", + "id": 5, + "offset": 132, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2273914939 + }, + "m_treasureCard": { + "type": "bool", + "id": 6, + "offset": 197, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1764879128 + }, + "m_battleCard": { + "type": "bool", + "id": 7, + "offset": 198, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1332843753 + }, + "m_itemCard": { + "type": "bool", + "id": 8, + "offset": 199, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1683654300 + }, + "m_sideBoard": { + "type": "bool", + "id": 9, + "offset": 200, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1897838368 + }, + "m_spellID": { + "type": "unsigned int", + "id": 10, + "offset": 204, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1697483258 + }, + "m_leavesPlayWhenCastOverride": { + "type": "bool", + "id": 11, + "offset": 216, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 874407398 + }, + "m_cloaked": { + "type": "bool", + "id": 12, + "offset": 196, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 7349510 + }, + "m_enchantmentSpellIsItemCard": { + "type": "bool", + "id": 13, + "offset": 76, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 531590701 + }, + "m_premutationSpellID": { + "type": "unsigned int", + "id": 14, + "offset": 112, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1530256370 + }, + "m_enchantedThisCombat": { + "type": "bool", + "id": 15, + "offset": 77, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1895738923 + }, + "m_paramOverrides": { + "type": "class SharedPointer", + "id": 16, + "offset": 224, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2061635599 + }, + "m_subEffectMeta": { + "type": "class SharedPointer", + "id": 17, + "offset": 240, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1944101106 + }, + "m_delayEnchantment": { + "type": "bool", + "id": 18, + "offset": 257, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 191336919 + }, + "m_PvE": { + "type": "bool", + "id": 19, + "offset": 264, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 269492350 + }, + "m_delayEnchantmentOrder": { + "type": "enum SpellEffect::kDelayOrder", + "id": 20, + "offset": 72, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2526055263, + "enum_options": { + "SpellEffect::kAnyOrder": 0, + "SpellEffect::kFirst": 1, + "SpellEffect::kSecond": 2 + } + }, + "m_roundAddedTC": { + "type": "int", + "id": 21, + "offset": 260, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 112365451 + }, + "m_secondarySchoolID": { + "type": "unsigned int", + "id": 22, + "offset": 304, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2081206026 + }, + "m_fusionState": { + "type": "enum Spell::FusionState", + "id": 23, + "offset": 308, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 835324539, + "enum_options": { + "FS_Invalid": 0, + "FS_Partial": 1, + "FS_Valid": 2 + } + } + } + }, + "2103213764": { + "name": "class EnergyShopOption", + "bases": [ + "ServiceOptionBase", + "PropertyClass" + ], + "hash": 2103213764, + "properties": { + "m_serviceName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2206028813 + }, + "m_iconKey": { + "type": "std::string", + "id": 1, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2457138637 + }, + "m_displayKey": { + "type": "std::string", + "id": 2, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3023276954 + }, + "m_serviceIndex": { + "type": "unsigned int", + "id": 3, + "offset": 204, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2103126710 + }, + "m_forceInteract": { + "type": "bool", + "id": 4, + "offset": 200, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1705789564 + } + } + }, + "311932339": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 311932339, + "properties": { + "m_team": { + "type": "unsigned char", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 857479191 + }, + "m_passport": { + "type": "unsigned int", + "id": 1, + "offset": 76, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1362521513 + }, + "m_handList": { + "type": "unsigned int", + "id": 2, + "offset": 80, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1650111716 + } + } + }, + "1154574414": { + "name": "class TrainMovement*", + "bases": [ + "PropertyClass" + ], + "hash": 1154574414, + "properties": {} + }, + "2079956026": { + "name": "class Value", + "bases": [], + "hash": 2079956026, + "properties": {} + }, + "758954654": { + "name": "class std::list >", + "bases": [], + "hash": 758954654, + "properties": {} + }, + "1598609487": { + "name": "class ClientVisibilityBehavior*", + "bases": [ + "VisibilityBehavior", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1598609487, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_showTo": { + "type": "gid", + "id": 1, + "offset": 112, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 947039004 + }, + "m_hideFrom": { + "type": "gid", + "id": 2, + "offset": 128, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 642644390 + }, + "m_visible": { + "type": "bool", + "id": 3, + "offset": 144, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 810536225 + } + } + }, + "2059670605": { + "name": "class Body*", + "bases": [ + "PropertyClass" + ], + "hash": 2059670605, + "properties": { + "m_position": { + "type": "class Vector3D", + "id": 0, + "offset": 88, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3697900983 + }, + "m_pitch": { + "type": "float", + "id": 1, + "offset": 100, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 896371695 + }, + "m_roll": { + "type": "float", + "id": 2, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 310020272 + }, + "m_yaw": { + "type": "float", + "id": 3, + "offset": 108, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 357256328 + }, + "m_fHeight": { + "type": "float", + "id": 4, + "offset": 132, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 401539638 + }, + "m_scale": { + "type": "float", + "id": 5, + "offset": 112, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 899693439 + } + } + }, + "758920323": { + "name": "class BadgeLeaderboardInfoList", + "bases": [ + "PropertyClass" + ], + "hash": 758920323, + "properties": { + "m_badgeLeaderboardInfoList": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 3286468481 + }, + "m_page": { + "type": "int", + "id": 1, + "offset": 88, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 219731831 + }, + "m_extraCredit": { + "type": "bool", + "id": 2, + "offset": 92, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 847737554 + }, + "m_totalEntries": { + "type": "int", + "id": 3, + "offset": 96, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 682683672 + }, + "m_isFriends": { + "type": "bool", + "id": 4, + "offset": 100, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 982582490 + } + } + }, + "1598381699": { + "name": "class SharedPointer", + "bases": [ + "InfractionPenaltyInfo", + "PropertyClass" + ], + "hash": 1598381699, + "properties": { + "m_addAtPointValue": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1071217084 + }, + "m_removeAtPointValue": { + "type": "float", + "id": 1, + "offset": 76, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2112196961 + }, + "m_lifespan": { + "type": "std::string", + "id": 2, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3042809453 + } + } + }, + "2046639999": { + "name": "enum SpellEffect::kSpellEffects", + "bases": [], + "hash": 2046639999, + "properties": {} + }, + "312818808": { + "name": "class SharedPointer", + "bases": [ + "SpellEffect", + "PropertyClass" + ], + "hash": 312818808, + "properties": { + "m_effectType": { + "type": "enum SpellEffect::kSpellEffects", + "id": 0, + "offset": 72, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2578255295, + "enum_options": { + "kInvalidSpellEffect": 0, + "kDamage": 1, + "kDamageNoCrit": 2, + "kHeal": 3, + "kHealPercent": 4, + "kSetHealPercent": 113, + "kStealHealth": 5, + "kReduceOverTime": 6, + "kDetonateOverTime": 7, + "kPushCharm": 8, + "kStealCharm": 9, + "kPushWard": 10, + "kStealWard": 11, + "kPushOverTime": 12, + "kStealOverTime": 13, + "kRemoveCharm": 14, + "kRemoveWard": 15, + "kRemoveOverTime": 16, + "kRemoveAura": 17, + "kSwapAll": 18, + "kSwapCharm": 19, + "kSwapWard": 20, + "kSwapOverTime": 21, + "kModifyIncomingDamage": 22, + "kModifyIncomingDamageFlat": 119, + "kMaximumIncomingDamage": 23, + "kModifyIncomingHeal": 24, + "kModifyIncomingHealFlat": 118, + "kModifyIncomingDamageType": 25, + "kModifyIncomingArmorPiercing": 26, + "kModifyOutgoingDamage": 27, + "kModifyOutgoingDamageFlat": 121, + "kModifyOutgoingHeal": 28, + "kModifyOutgoingHealFlat": 120, + "kModifyOutgoingDamageType": 29, + "kModifyOutgoingArmorPiercing": 30, + "kModifyOutgoingStealHealth": 31, + "kModifyIncomingStealHealth": 32, + "kBounceNext": 33, + "kBouncePrevious": 34, + "kBounceBack": 35, + "kBounceAll": 36, + "kAbsorbDamage": 37, + "kAbsorbHeal": 38, + "kModifyAccuracy": 39, + "kDispel": 40, + "kConfusion": 41, + "kCloakedCharm": 42, + "kCloakedWard": 43, + "kStunResist": 44, + "kClue": 111, + "kPipConversion": 45, + "kCritBoost": 46, + "kCritBlock": 47, + "kPolymorph": 48, + "kDelayCast": 49, + "kModifyCardCloak": 50, + "kModifyCardDamage": 51, + "kModifyCardAccuracy": 53, + "kModifyCardMutation": 54, + "kModifyCardRank": 55, + "kModifyCardArmorPiercing": 56, + "kSummonCreature": 65, + "kTeleportPlayer": 66, + "kStun": 67, + "kDampen": 68, + "kReshuffle": 69, + "kMindControl": 70, + "kModifyPips": 71, + "kModifyPowerPips": 72, + "kModifyShadowPips": 73, + "kModifyHate": 74, + "kDamageOverTime": 75, + "kHealOverTime": 76, + "kModifyPowerPipChance": 77, + "kModifyRank": 78, + "kStunBlock": 79, + "kRevealCloak": 80, + "kInstantKill": 81, + "kAfterlife": 82, + "kDeferredDamage": 83, + "kDamagePerTotalPipPower": 84, + "kModifyCardHeal": 52, + "kModifyCardCharm": 57, + "kModifyCardWard": 58, + "kModifyCardOutgoingDamage": 59, + "kModifyCardOutgoingAccuracy": 60, + "kModifyCardOutgoingHeal": 61, + "kModifyCardOutgoingArmorPiercing": 62, + "kModifyCardIncomingDamage": 63, + "kModifyCardAbsorbDamage": 64, + "kCloakedWardNoRemove": 86, + "kAddCombatTriggerList": 87, + "kRemoveCombatTriggerList": 88, + "kBacklashDamage": 89, + "kModifyBacklash": 90, + "kIntercept": 91, + "kShadowSelf": 92, + "kShadowCreature": 93, + "kModifyShadowCreatureLevel": 94, + "kSelectShadowCreatureAttackTarget": 95, + "kShadowDecrementTurn": 96, + "kCritBoostSchoolSpecific": 97, + "kSpawnCreature": 98, + "kUnPolymorph": 99, + "kPowerPipConversion": 100, + "kProtectCardBeneficial": 101, + "kProtectCardHarmful": 102, + "kProtectBeneficial": 103, + "kProtectHarmful": 104, + "kDivideDamage": 105, + "kCollectEssence": 106, + "kKillCreature": 107, + "kDispelBlock": 108, + "kConfusionBlock": 109, + "kModifyPipRoundRate": 110, + "kMaxHealthDamage": 112, + "kUntargetable": 114, + "kMakeTargetable": 115, + "kForceTargetable": 116, + "kRemoveStunBlock": 117, + "kExitCombat": 122, + "kSuspendPips": 123, + "kResumePips": 124, + "kAutoPass": 125, + "kStopAutoPass": 126, + "kVanish": 127, + "kStopVanish": 128, + "kMaxHealthHeal": 129, + "kHealByWard": 130, + "kTaunt": 131, + "kPacify": 132, + "kRemoveTargetRestriction": 133, + "kConvertHangingEffect": 134, + "kAddSpellToDeck": 135, + "kAddSpellToHand": 136, + "kModifyIncomingDamageOverTime": 137, + "kModifyIncomingHealOverTime": 138, + "kModifyCardDamagebyRank": 139, + "kPushConvertedCharm": 140, + "kStealConvertedCharm": 141, + "kPushConvertedWard": 142, + "kStealConvertedWard": 143, + "kPushConvertedOverTime": 144, + "kStealConvertedOverTime": 145, + "kRemoveConvertedCharm": 146, + "kRemoveConvertedWard": 147, + "kRemoveConvertedOverTime": 148, + "kModifyOverTimeDuration": 149, + "kModifySchoolPips": 150 + } + }, + "m_effectParam": { + "type": "int", + "id": 1, + "offset": 76, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 357920024 + }, + "m_disposition": { + "type": "enum SpellEffect::kHangingDisposition", + "id": 2, + "offset": 80, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1904841031, + "enum_options": { + "kBoth": 0, + "kBeneficial": 1, + "kHarmful": 2 + } + }, + "m_sDamageType": { + "type": "std::string", + "id": 3, + "offset": 88, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2501054223 + }, + "m_damageType": { + "type": "unsigned int", + "id": 4, + "offset": 84, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 737882766 + }, + "m_pipNum": { + "type": "int", + "id": 5, + "offset": 128, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 830827539 + }, + "m_actNum": { + "type": "int", + "id": 6, + "offset": 132, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 236824866 + }, + "m_effectTarget": { + "type": "enum SpellEffect::kEffectTarget", + "id": 7, + "offset": 140, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2458940523, + "enum_options": { + "kInvalidTarget": 0, + "kSpell": 1, + "kSpecificSpells": 2, + "kGlobal": 3, + "kEnemyTeam": 4, + "kEnemyTeamAllAtOnce": 5, + "kFriendlyTeam": 6, + "kFriendlyTeamAllAtOnce": 7, + "kEnemySingle": 8, + "kFriendlySingle": 9, + "kMinion": 10, + "kFriendlyMinion": 17, + "kEnemyMinion": 18, + "kSelf": 11, + "kAtLeastOneEnemy": 13, + "kPreselectedEnemySingle": 12, + "kMultiTargetEnemy": 14, + "kMultiTargetFriendly": 15, + "kFriendlySingleNotMe": 16 + } + }, + "m_numRounds": { + "type": "int", + "id": 8, + "offset": 144, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1229753829 + }, + "m_paramPerRound": { + "type": "int", + "id": 9, + "offset": 148, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 683234234 + }, + "m_healModifier": { + "type": "float", + "id": 10, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1317921248, + "enum_options": { + "__DEFAULT": "1.0" + } + }, + "m_spellTemplateID": { + "type": "unsigned int", + "id": 11, + "offset": 120, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 585567702 + }, + "m_enchantmentSpellTemplateID": { + "type": "unsigned int", + "id": 12, + "offset": 124, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 246955115 + }, + "m_act": { + "type": "bool", + "id": 13, + "offset": 136, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 269510283 + }, + "m_cloaked": { + "type": "bool", + "id": 14, + "offset": 157, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 7349510 + }, + "m_bypassProtection": { + "type": "bool", + "id": 15, + "offset": 159, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1657138252 + }, + "m_armorPiercingParam": { + "type": "int", + "id": 16, + "offset": 160, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2025530205 + }, + "m_chancePerTarget": { + "type": "int", + "id": 17, + "offset": 164, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 845426794 + }, + "m_protected": { + "type": "bool", + "id": 18, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1445655037 + }, + "m_converted": { + "type": "bool", + "id": 19, + "offset": 169, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1590428797 + }, + "m_rank": { + "type": "int", + "id": 20, + "offset": 208, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 219803942 + }, + "m_hangingEffectType": { + "type": "enum HangingConversionSpellEffect::HangingEffectType", + "id": 21, + "offset": 224, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2015960933, + "enum_options": { + "HE_Any": 0, + "HE_Ward": 1, + "HE_Charm": 2, + "HE_OverTime": 3, + "HE_Specific": 4 + } + }, + "m_specificEffectTypes": { + "type": "enum SpellEffect::kSpellEffects", + "id": 22, + "offset": 232, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2049268184, + "enum_options": { + "kModifyOutgoingDamage": 27, + "kModifyOutgoingDamageFlat": 121, + "kModifyAccuracy": 39, + "kCloakedCharm": 42, + "kDispel": 40, + "kCritBoost": 46, + "kCritBoostSchoolSpecific": 97, + "kModifyOutgoingHeal": 28, + "kModifyOutgoingHealFlat": 120, + "kModifyOutgoingDamageType": 29, + "kModifyOutgoingArmorPiercing": 30, + "kModifyIncomingStealHealth": 32, + "kModifyOutgoingStealHealth": 31, + "kBounceNext": 33, + "kBouncePrevious": 34, + "kBounceBack": 35, + "kCloakedWard": 43, + "kModifyIncomingDamage": 22, + "kModifyIncomingDamageFlat": 119, + "kModifyIncomingDamageOverTime": 137, + "kMaximumIncomingDamage": 23, + "kAbsorbDamage": 37, + "kAbsorbHeal": 38, + "kBounceAll": 36, + "kCritBlock": 47, + "kStunBlock": 79, + "kStunResist": 44, + "kPipConversion": 45, + "kPowerPipConversion": 100, + "kModifyIncomingDamageType": 25, + "kModifyIncomingHeal": 24, + "kModifyIncomingHealFlat": 118, + "kModifyIncomingHealOverTime": 138, + "kModifyIncomingArmorPiercing": 26, + "kCloakedWardNoRemove": 86, + "kDispelBlock": 108, + "kConfusionBlock": 109, + "kDamageOverTime": 75, + "kHealOverTime": 76, + "kDeferredDamage": 83 + } + }, + "m_minEffectValue": { + "type": "int", + "id": 23, + "offset": 248, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1614619272 + }, + "m_maxEffectValue": { + "type": "int", + "id": 24, + "offset": 252, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1321630794 + }, + "m_notDamageType": { + "type": "bool", + "id": 25, + "offset": 256, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1313760773 + }, + "m_minEffectCount": { + "type": "int", + "id": 26, + "offset": 260, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1592599476 + }, + "m_maxEffectCount": { + "type": "int", + "id": 27, + "offset": 264, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1299610998 + }, + "m_outputSelector": { + "type": "enum HangingConversionSpellEffect::OutputEffectSelector", + "id": 28, + "offset": 268, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1795006880, + "enum_options": { + "OES_All": 0, + "OES_MatchedSelectRank": 1 + } + }, + "m_scaleSourceEffectValue": { + "type": "bool", + "id": 29, + "offset": 272, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1962536406 + }, + "m_sourceEffectValuePercent": { + "type": "float", + "id": 30, + "offset": 276, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1001903523 + }, + "m_applyToEffectSource": { + "type": "bool", + "id": 31, + "offset": 280, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 760527802 + }, + "m_outputEffect": { + "type": "class SharedPointer", + "id": 32, + "offset": 288, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1098575817 + } + } + }, + "758582262": { + "name": "class SharedPointer", + "bases": [ + "Requirement", + "PropertyClass" + ], + "hash": 758582262, + "properties": { + "m_applyNOT": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1746328074, + "enum_options": { + "__DEFAULT": 0 + } + }, + "m_operator": { + "type": "enum Requirement::Operator", + "id": 1, + "offset": 76, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2672792317, + "enum_options": { + "ROP_AND": 0, + "ROP_OR": 1, + "__DEFAULT": "ROP_AND" + } + } + } + }, + "1154933023": { + "name": "class GraphicalReagent", + "bases": [ + "GraphicalSpell", + "Spell", + "PropertyClass" + ], + "hash": 1154933023, + "properties": { + "m_templateID": { + "type": "unsigned int", + "id": 0, + "offset": 128, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1286746870 + }, + "m_enchantment": { + "type": "unsigned int", + "id": 1, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2217886818 + }, + "m_pipCost": { + "type": "class SharedPointer", + "id": 2, + "offset": 176, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3605704820 + }, + "m_regularAdjust": { + "type": "int", + "id": 3, + "offset": 192, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1420453335 + }, + "m_magicSchoolID": { + "type": "unsigned int", + "id": 4, + "offset": 136, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 893146499 + }, + "m_accuracy": { + "type": "unsigned char", + "id": 5, + "offset": 132, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2273914939 + }, + "m_treasureCard": { + "type": "bool", + "id": 6, + "offset": 197, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1764879128 + }, + "m_battleCard": { + "type": "bool", + "id": 7, + "offset": 198, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1332843753 + }, + "m_itemCard": { + "type": "bool", + "id": 8, + "offset": 199, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1683654300 + }, + "m_sideBoard": { + "type": "bool", + "id": 9, + "offset": 200, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1897838368 + }, + "m_spellID": { + "type": "unsigned int", + "id": 10, + "offset": 204, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1697483258 + }, + "m_leavesPlayWhenCastOverride": { + "type": "bool", + "id": 11, + "offset": 216, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 874407398 + }, + "m_cloaked": { + "type": "bool", + "id": 12, + "offset": 196, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 7349510 + }, + "m_enchantmentSpellIsItemCard": { + "type": "bool", + "id": 13, + "offset": 76, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 531590701 + }, + "m_premutationSpellID": { + "type": "unsigned int", + "id": 14, + "offset": 112, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1530256370 + }, + "m_enchantedThisCombat": { + "type": "bool", + "id": 15, + "offset": 77, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1895738923 + }, + "m_paramOverrides": { + "type": "class SharedPointer", + "id": 16, + "offset": 224, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2061635599 + }, + "m_subEffectMeta": { + "type": "class SharedPointer", + "id": 17, + "offset": 240, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1944101106 + }, + "m_delayEnchantment": { + "type": "bool", + "id": 18, + "offset": 257, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 191336919 + }, + "m_PvE": { + "type": "bool", + "id": 19, + "offset": 264, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 269492350 + }, + "m_delayEnchantmentOrder": { + "type": "enum SpellEffect::kDelayOrder", + "id": 20, + "offset": 72, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2526055263, + "enum_options": { + "SpellEffect::kAnyOrder": 0, + "SpellEffect::kFirst": 1, + "SpellEffect::kSecond": 2 + } + }, + "m_roundAddedTC": { + "type": "int", + "id": 21, + "offset": 260, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 112365451 + }, + "m_secondarySchoolID": { + "type": "unsigned int", + "id": 22, + "offset": 304, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2081206026 + }, + "m_fusionState": { + "type": "enum Spell::FusionState", + "id": 23, + "offset": 308, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 835324539, + "enum_options": { + "FS_Invalid": 0, + "FS_Partial": 1, + "FS_Valid": 2 + } + } + } + }, + "2042186825": { + "name": "class ClientShadowCreatureIdleCinematicAction*", + "bases": [ + "ShadowCreatureIdleCinematicAction", + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 2042186825, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + } + } + }, + "312772984": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 312772984, + "properties": { + "m_fileName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3116172444 + }, + "m_attenuationPercent": { + "type": "float", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1412579028 + } + } + }, + "2038295331": { + "name": "class ClientPetItemBehavior*", + "bases": [ + "BasePetItemBehavior", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 2038295331, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_level": { + "type": "unsigned char", + "id": 1, + "offset": 112, + "flags": 65727, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1438884808 + }, + "m_XP": { + "type": "unsigned int", + "id": 2, + "offset": 116, + "flags": 65727, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2301988085 + }, + "m_firstName": { + "type": "int", + "id": 3, + "offset": 264, + "flags": 65703, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1618303331 + }, + "m_middleName": { + "type": "int", + "id": 4, + "offset": 268, + "flags": 65703, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 199781034 + }, + "m_lastName": { + "type": "int", + "id": 5, + "offset": 272, + "flags": 65703, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 328503983 + }, + "m_currentStats": { + "type": "class PetStat", + "id": 6, + "offset": 128, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2342610661 + }, + "m_maxStats": { + "type": "class PetStat", + "id": 7, + "offset": 144, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1846363080 + }, + "m_hatchedTimeSecs": { + "type": "unsigned int", + "id": 8, + "offset": 160, + "flags": 65727, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 606051291 + }, + "m_expressedTalents": { + "type": "unsigned int", + "id": 9, + "offset": 168, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1557974043 + }, + "m_expressedDerbyTalents": { + "type": "unsigned int", + "id": 10, + "offset": 184, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 484465777 + }, + "m_talentRatings": { + "type": "std::string", + "id": 11, + "offset": 216, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2170591163 + }, + "m_powerRatings": { + "type": "std::string", + "id": 12, + "offset": 232, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1881287968 + }, + "m_overallRating": { + "type": "unsigned int", + "id": 13, + "offset": 248, + "flags": 159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 462138631 + }, + "m_activeRating": { + "type": "unsigned int", + "id": 14, + "offset": 252, + "flags": 159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 234391118 + }, + "m_costToMorph": { + "type": "unsigned int", + "id": 15, + "offset": 256, + "flags": 65567, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1866472719 + }, + "m_rarity": { + "type": "unsigned int", + "id": 16, + "offset": 260, + "flags": 65567, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1111114664 + }, + "m_requiredXP": { + "type": "unsigned int", + "id": 17, + "offset": 120, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1890811574 + }, + "m_housingPetPrimaryColor": { + "type": "int", + "id": 18, + "offset": 276, + "flags": 65664, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 525135139 + }, + "m_housingPetPattern": { + "type": "int", + "id": 19, + "offset": 280, + "flags": 65664, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 165011646 + }, + "m_housingPetSecondaryColor": { + "type": "int", + "id": 20, + "offset": 284, + "flags": 65695, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 358656263 + }, + "m_housingPetOriginalGID": { + "type": "gid", + "id": 21, + "offset": 288, + "flags": 65664, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1259075879 + }, + "m_housingPetJewelTemplateID": { + "type": "unsigned int", + "id": 22, + "offset": 296, + "flags": 65664, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1836117651 + }, + "m_happiness": { + "type": "unsigned int", + "id": 23, + "offset": 300, + "flags": 65727, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1380970552 + }, + "m_maximumHappiness": { + "type": "unsigned int", + "id": 24, + "offset": 304, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 874954582 + }, + "m_allTalents": { + "type": "unsigned int", + "id": 25, + "offset": 464, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1053182849 + }, + "m_allDerbyTalents": { + "type": "unsigned int", + "id": 26, + "offset": 480, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1165978519 + }, + "m_sSerializedMaxStats": { + "type": "std::string", + "id": 27, + "offset": 328, + "flags": 65536, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2078753551 + }, + "m_sSerializedStats": { + "type": "std::string", + "id": 28, + "offset": 360, + "flags": 65536, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3084176585 + }, + "m_sSerializedTalents": { + "type": "std::string", + "id": 29, + "offset": 392, + "flags": 65536, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3058423637 + }, + "m_sSerializedDerbyTalents": { + "type": "std::string", + "id": 30, + "offset": 424, + "flags": 65536, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1866554155 + }, + "m_bInitialized": { + "type": "bool", + "id": 31, + "offset": 456, + "flags": 65536, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 233973963 + } + } + }, + "2034234548": { + "name": "class SharedPointer", + "bases": [ + "GameEffectInfo", + "PropertyClass" + ], + "hash": 2034234548, + "properties": { + "m_effectName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2029161513 + }, + "m_templateID": { + "type": "unsigned int", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1286746870 + } + } + }, + "1155196412": { + "name": "class SharedPointer", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 1155196412, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + }, + "m_combatMusicPlayer": { + "type": "bool", + "id": 1, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 492667575 + } + } + }, + "1600737653": { + "name": "class ReqIsHatched*", + "bases": [ + "Requirement", + "PropertyClass" + ], + "hash": 1600737653, + "properties": { + "m_applyNOT": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1746328074, + "enum_options": { + "__DEFAULT": 0 + } + }, + "m_operator": { + "type": "enum Requirement::Operator", + "id": 1, + "offset": 76, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2672792317, + "enum_options": { + "ROP_AND": 0, + "ROP_OR": 1, + "__DEFAULT": "ROP_AND" + } + } + } + }, + "2033462600": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 2033462600, + "properties": { + "m_playerList": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1909774945 + } + } + }, + "313683692": { + "name": "class PvP5thAgeKioskBehaviorTemplate*", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 313683692, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + }, + "m_kioskName": { + "type": "std::string", + "id": 1, + "offset": 120, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2560037053 + }, + "m_leagueType": { + "type": "std::string", + "id": 2, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3327951024 + } + } + }, + "759044060": { + "name": "class WhirlyBurlyMovementDataAI", + "bases": [ + "PropertyClass" + ], + "hash": 759044060, + "properties": { + "m_unitType": { + "type": "unsigned char", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1498103218 + }, + "m_cardUsed": { + "type": "unsigned int", + "id": 1, + "offset": 76, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1315653400 + }, + "m_passport": { + "type": "unsigned int", + "id": 2, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1362521513 + }, + "m_unitMovementList": { + "type": "unsigned int", + "id": 3, + "offset": 88, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 687999892 + } + } + }, + "1155031747": { + "name": "class Camera*", + "bases": [ + "PropertyClass" + ], + "hash": 1155031747, + "properties": { + "m_coord": { + "type": "class Vector3D", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2448785881 + }, + "m_quat": { + "type": "class Quaternion", + "id": 1, + "offset": 84, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2148807035 + }, + "m_mat": { + "type": "class Matrix3x3", + "id": 2, + "offset": 100, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1746928484 + } + } + }, + "1600315479": { + "name": "class ConditionalSpellElement*", + "bases": [ + "PropertyClass" + ], + "hash": 1600315479, + "properties": { + "m_pReqs": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2565964996 + }, + "m_pEffect": { + "type": "class SharedPointer", + "id": 1, + "offset": 88, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 400541736 + } + } + }, + "2033078873": { + "name": "class RecipeBag*", + "bases": [ + "ObjectBag", + "PropertyClass" + ], + "hash": 2033078873, + "properties": { + "m_itemList": { + "type": "class SharedPointer", + "id": 0, + "offset": 168, + "flags": 27, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1983655699 + }, + "m_maxItemStack": { + "type": "int", + "id": 1, + "offset": 184, + "flags": 27, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 673449637 + } + } + }, + "313442845": { + "name": "class CinematicTemplate", + "bases": [ + "PropertyClass" + ], + "hash": 313442845, + "properties": { + "m_name": { + "type": "std::string", + "id": 0, + "offset": 120, + "flags": 134217735, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1717359772 + }, + "m_stages": { + "type": "class SharedPointer", + "id": 1, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2081530688 + }, + "m_actors": { + "type": "class SharedPointer", + "id": 2, + "offset": 88, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2242419761 + }, + "m_sharedAnimations": { + "type": "class SharedPointer", + "id": 3, + "offset": 104, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 3289641416 + } + } + }, + "1599709038": { + "name": "class CombatHealthListObj*", + "bases": [ + "PropertyClass" + ], + "hash": 1599709038, + "properties": { + "m_healthList": { + "type": "class ParticipantParameter", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2874774642 + }, + "m_duelID.m_full": { + "type": "unsigned __int64", + "id": 1, + "offset": 88, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1024980477 + } + } + }, + "2033058393": { + "name": "class RecipeBag", + "bases": [ + "ObjectBag", + "PropertyClass" + ], + "hash": 2033058393, + "properties": { + "m_itemList": { + "type": "class SharedPointer", + "id": 0, + "offset": 168, + "flags": 27, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1983655699 + }, + "m_maxItemStack": { + "type": "int", + "id": 1, + "offset": 184, + "flags": 27, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 673449637 + } + } + }, + "772185668": { + "name": "class RateMyStitchOption", + "bases": [ + "ServiceOptionBase", + "PropertyClass" + ], + "hash": 772185668, + "properties": { + "m_serviceName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2206028813 + }, + "m_iconKey": { + "type": "std::string", + "id": 1, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2457138637 + }, + "m_displayKey": { + "type": "std::string", + "id": 2, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3023276954 + }, + "m_serviceIndex": { + "type": "unsigned int", + "id": 3, + "offset": 204, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2103126710 + }, + "m_forceInteract": { + "type": "bool", + "id": 4, + "offset": 200, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1705789564 + } + } + }, + "1155431884": { + "name": "enum CinematicSoundEmitterInfo::Progression", + "bases": [], + "hash": 1155431884, + "properties": {} + }, + "764247145": { + "name": "class CastleBlocksBehaviorTemplate*", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 764247145, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + }, + "m_providesFloor": { + "type": "int", + "id": 1, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1381462216 + }, + "m_placedOnFloorTemplateID": { + "type": "unsigned int", + "id": 2, + "offset": 124, + "flags": 33554439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 349311070 + }, + "m_pickedupFromFloorTemplateID": { + "type": "unsigned int", + "id": 3, + "offset": 128, + "flags": 33554439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1208761121 + }, + "m_hasFadeableCeiling": { + "type": "int", + "id": 4, + "offset": 132, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2119980373 + }, + "m_dontFadeCeiling": { + "type": "int", + "id": 5, + "offset": 136, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 373748538 + } + } + }, + "2033304558": { + "name": "class ObstacleCourseFinishLineBehaviorClient*", + "bases": [ + "ObstacleCourseFinishLineBehavior", + "ObstacleCourseObstacleBehavior", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 2033304558, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + } + } + }, + "315786665": { + "name": "class LoyaltyStoreItem*", + "bases": [ + "PropertyClass" + ], + "hash": 315786665, + "properties": { + "m_saleID": { + "type": "unsigned int", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1150028607 + }, + "m_templateId": { + "type": "gid", + "id": 1, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1075328033 + }, + "m_loyaltyTokensPrice": { + "type": "int", + "id": 2, + "offset": 88, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 476322031 + }, + "m_purchaseLimit": { + "type": "int", + "id": 3, + "offset": 92, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 78574068 + } + } + }, + "763523353": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 763523353, + "properties": { + "m_level": { + "type": "int", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 801285362 + }, + "m_categoryData": { + "type": "class SharedPointer", + "id": 1, + "offset": 96, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2178338894 + } + } + }, + "1601234546": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1601234546, + "properties": { + "m_info": { + "type": "class PassInfo", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1338677978 + } + } + }, + "314743322": { + "name": "class SpellbookBehaviorTemplate", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 314743322, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + }, + "m_spellbook": { + "type": "std::string", + "id": 1, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2689219302 + } + } + }, + "762056823": { + "name": "class ClientAddCameraMappingCinematicAction", + "bases": [ + "AddCameraMappingCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 762056823, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_camToReplace": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2286913643 + }, + "m_replaceWithCam": { + "type": "std::string", + "id": 2, + "offset": 112, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2992754084 + } + } + }, + "1158483591": { + "name": "class TreasureShopOption", + "bases": [ + "ServiceOptionBase", + "PropertyClass" + ], + "hash": 1158483591, + "properties": { + "m_serviceName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2206028813 + }, + "m_iconKey": { + "type": "std::string", + "id": 1, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2457138637 + }, + "m_displayKey": { + "type": "std::string", + "id": 2, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3023276954 + }, + "m_serviceIndex": { + "type": "unsigned int", + "id": 3, + "offset": 204, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2103126710 + }, + "m_forceInteract": { + "type": "bool", + "id": 4, + "offset": 200, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1705789564 + } + } + }, + "1600875047": { + "name": "class ClientRegisterPersonaCinematicAction", + "bases": [ + "RegisterPersonaCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 1600875047, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_persona": { + "type": "class Persona*", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2350440768 + } + } + }, + "314634691": { + "name": "class InteractiveMusicBehavior*", + "bases": [ + "InteractiveMusicBehaviorBase", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 314634691, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_musicData": { + "type": "std::string", + "id": 1, + "offset": 200, + "flags": 66087, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2963606294 + } + } + }, + "761677405": { + "name": "class LevelScaledData", + "bases": [ + "PropertyClass" + ], + "hash": 761677405, + "properties": { + "m_levelScaledInfoList": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2689138081 + }, + "m_statsFloorPercent": { + "type": "class SharedPointer", + "id": 1, + "offset": 88, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2929073687 + } + } + }, + "1157289788": { + "name": "class SharedPointer", + "bases": [ + "WinAnimMoveToLocationSpeed", + "WinAnimMoveToLocation", + "WindowAnimation", + "PropertyClass" + ], + "hash": 1157289788, + "properties": { + "m_bUseDeepCopy": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 433380635 + }, + "m_targetLocation": { + "type": "class Vector3D", + "id": 1, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2653859938 + }, + "m_fSpeed": { + "type": "float", + "id": 2, + "offset": 96, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 503609006 + }, + "m_fEaseInPercent": { + "type": "float", + "id": 3, + "offset": 112, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1482967843 + }, + "m_fEaseOutPercent": { + "type": "float", + "id": 4, + "offset": 116, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1272154212 + }, + "m_fTotalDistance": { + "type": "float", + "id": 5, + "offset": 120, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1894338732 + } + } + }, + "2033470371": { + "name": "class std::vector >", + "bases": [], + "hash": 2033470371, + "properties": {} + }, + "314394891": { + "name": "class ClientLoyaltyStoreOption", + "bases": [ + "LoyaltyStoreOption", + "ServiceOptionBase", + "PropertyClass" + ], + "hash": 314394891, + "properties": { + "m_serviceName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2206028813 + }, + "m_iconKey": { + "type": "std::string", + "id": 1, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2457138637 + }, + "m_displayKey": { + "type": "std::string", + "id": 2, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3023276954 + }, + "m_serviceIndex": { + "type": "unsigned int", + "id": 3, + "offset": 204, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2103126710 + }, + "m_forceInteract": { + "type": "bool", + "id": 4, + "offset": 200, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1705789564 + } + } + }, + "760900532": { + "name": "class ActivateHangingEffectCinematicAction", + "bases": [ + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 760900532, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + }, + "m_activate": { + "type": "bool", + "id": 2, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 142527940 + }, + "m_cloaked": { + "type": "bool", + "id": 3, + "offset": 121, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 7349510 + } + } + }, + "1156005769": { + "name": "class TileMaterial*", + "bases": [ + "Material", + "PropertyClass" + ], + "hash": 1156005769, + "properties": { + "m_sMaterialName": { + "type": "std::wstring", + "id": 0, + "offset": 72, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1299185467 + }, + "m_Blending": { + "type": "enum Material::Blending", + "id": 1, + "offset": 116, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3003693822, + "enum_options": { + "B_NONE": 0, + "B_ADDITIVE": 1, + "B_ALPHA": 2, + "B_ALPHA_INV": 3, + "B_ADDITIVE_INV": 4, + "__DEFAULT": "B_ALPHA" + } + }, + "m_eRepeat": { + "type": "enum Material::Repeating", + "id": 2, + "offset": 176, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3302018843, + "enum_options": { + "R_NONE": 0, + "R_REPEAT": 1 + } + }, + "m_pDiffuseMap": { + "type": "class SharedPointer", + "id": 3, + "offset": 120, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 4008975679 + }, + "m_pAlphaMask": { + "type": "class SharedPointer", + "id": 4, + "offset": 136, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3411451405 + }, + "m_fLastAlpha": { + "type": "float", + "id": 5, + "offset": 152, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 284727287 + }, + "m_Diffuse": { + "type": "class Color", + "id": 6, + "offset": 156, + "flags": 262279, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1644364836 + }, + "m_Ambient": { + "type": "class Color", + "id": 7, + "offset": 160, + "flags": 262279, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2216816350 + }, + "m_Specular": { + "type": "class Color", + "id": 8, + "offset": 168, + "flags": 262279, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2645528957 + }, + "m_fSpecularPower": { + "type": "float", + "id": 9, + "offset": 172, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 539146057 + }, + "m_Frames": { + "type": "class Rect", + "id": 10, + "offset": 192, + "flags": 65671, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 3064301836 + }, + "m_nCurrentFrame": { + "type": "int", + "id": 11, + "offset": 216, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 45308854 + }, + "m_fAnimRate": { + "type": "float", + "id": 12, + "offset": 228, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 802385934 + }, + "m_nAnimBegin": { + "type": "int", + "id": 13, + "offset": 220, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 400513266 + }, + "m_nAnimEnd": { + "type": "int", + "id": 14, + "offset": 224, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1081103460 + }, + "m_fAnimTime": { + "type": "float", + "id": 15, + "offset": 232, + "flags": 134, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 802466289 + }, + "m_fMaterialScaleX": { + "type": "float", + "id": 16, + "offset": 180, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 634638220 + }, + "m_fMaterialScaleY": { + "type": "float", + "id": 17, + "offset": 184, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 634638221 + }, + "m_TilesX": { + "type": "int", + "id": 18, + "offset": 240, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1882401395 + }, + "m_TilesY": { + "type": "int", + "id": 19, + "offset": 244, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1882401396 + } + } + }, + "1600986917": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1600986917, + "properties": { + "m_spellCaster": { + "type": "int", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1306412924 + }, + "m_spell": { + "type": "class SharedPointer", + "id": 1, + "offset": 96, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1160380498 + }, + "m_spellHits": { + "type": "char", + "id": 2, + "offset": 112, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1193115340 + }, + "m_effectChosen": { + "type": "unsigned int", + "id": 3, + "offset": 212, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 781967354 + }, + "m_interrupt": { + "type": "bool", + "id": 4, + "offset": 113, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1419105216 + }, + "m_sigilSpell": { + "type": "bool", + "id": 5, + "offset": 114, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1757632683 + }, + "m_showCast": { + "type": "bool", + "id": 6, + "offset": 115, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 456821215 + }, + "m_criticalHitRoll": { + "type": "unsigned char", + "id": 7, + "offset": 116, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2767200825 + }, + "m_stunResistRoll": { + "type": "unsigned char", + "id": 8, + "offset": 117, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2034125421 + }, + "m_blocksCalculated": { + "type": "bool", + "id": 9, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1203964291 + }, + "m_serializedBlocks": { + "type": "std::string", + "id": 10, + "offset": 160, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3529268709 + }, + "m_stringKeyMessage": { + "type": "std::string", + "id": 11, + "offset": 216, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2591311648 + }, + "m_soundFileName": { + "type": "std::string", + "id": 12, + "offset": 248, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3058120805 + }, + "m_durationModifier": { + "type": "float", + "id": 13, + "offset": 280, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 753259116 + }, + "m_serializedTargetsAffected": { + "type": "std::string", + "id": 14, + "offset": 288, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2626745971 + }, + "m_targetSubcircleList": { + "type": "int", + "id": 15, + "offset": 80, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 227779897 + }, + "m_pipConversionRoll": { + "type": "int", + "id": 16, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 791010242 + }, + "m_randomSpellEffectPerTargetRolls": { + "type": "int", + "id": 17, + "offset": 128, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 430465634 + }, + "m_handledRandomSpellPerTarget": { + "type": "bool", + "id": 18, + "offset": 124, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1741636882 + }, + "m_confusedTarget": { + "type": "bool", + "id": 19, + "offset": 208, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1193542673 + }, + "m_forceSpell": { + "type": "bool", + "id": 20, + "offset": 336, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 935804098 + }, + "m_afterDied": { + "type": "bool", + "id": 21, + "offset": 209, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1317680827 + }, + "m_delayed": { + "type": "bool", + "id": 22, + "offset": 337, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1021327211 + }, + "m_delayedEnchanted": { + "type": "bool", + "id": 23, + "offset": 338, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2083048693 + }, + "m_petCast": { + "type": "bool", + "id": 24, + "offset": 339, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1494940903 + }, + "m_petCasted": { + "type": "bool", + "id": 25, + "offset": 340, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1697247120 + }, + "m_petCastTarget": { + "type": "int", + "id": 26, + "offset": 344, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 317564181 + }, + "m_CritHitList": { + "type": "class TargetCritHit", + "id": 27, + "offset": 368, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1448398021 + }, + "m_xPipCost": { + "type": "unsigned char", + "id": 28, + "offset": 348, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2557198122 + } + } + }, + "760406993": { + "name": "class SharedPointer", + "bases": [ + "ZoneTokenCount", + "ZoneTokenBase", + "PropertyClass" + ], + "hash": 760406993, + "properties": { + "m_debugName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3553984419 + }, + "m_adjectiveList": { + "type": "std::string", + "id": 1, + "offset": 104, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 3195213318 + }, + "m_icon": { + "type": "std::string", + "id": 2, + "offset": 120, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1717182340 + }, + "m_iconBW": { + "type": "std::string", + "id": 3, + "offset": 152, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2047461085 + }, + "m_description": { + "type": "std::string", + "id": 4, + "offset": 184, + "flags": 8388639, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1649374815 + }, + "m_displayMode": { + "type": "enum ZTDisplayMode", + "id": 5, + "offset": 216, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2216526410, + "enum_options": { + "ZTDM_Shown": 0, + "ZTDM_Discoverable": 1, + "ZTDM_Hidden": 2 + } + }, + "m_storage": { + "type": "enum ZTStorage", + "id": 6, + "offset": 220, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2290454852, + "enum_options": { + "ZTS_Player": 0, + "ZTS_Zone": 1 + } + }, + "m_onEnable": { + "type": "class SharedPointer", + "id": 7, + "offset": 224, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2591736864 + }, + "m_onDiscover": { + "type": "class SharedPointer", + "id": 8, + "offset": 240, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2826026872 + }, + "m_onDisable": { + "type": "class SharedPointer", + "id": 9, + "offset": 256, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1860656717 + }, + "m_sourceID": { + "type": "gid", + "id": 10, + "offset": 272, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1134700470 + }, + "m_inZone": { + "type": "bool", + "id": 11, + "offset": 280, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 564535654 + }, + "m_enabled": { + "type": "bool", + "id": 12, + "offset": 281, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 504506718 + }, + "m_discovered": { + "type": "bool", + "id": 13, + "offset": 282, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2060478331 + }, + "m_minValue": { + "type": "int", + "id": 14, + "offset": 288, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1508523611 + }, + "m_startValue": { + "type": "int", + "id": 15, + "offset": 292, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 672067813 + }, + "m_maxValue": { + "type": "int", + "id": 16, + "offset": 296, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 158068381 + }, + "m_curValue": { + "type": "int", + "id": 17, + "offset": 300, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1147627809 + }, + "m_counterType": { + "type": "enum ZTCounterType", + "id": 18, + "offset": 304, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1417526179, + "enum_options": { + "ZTCT_Full": 0, + "ZTCT_Count": 1, + "ZTCT_Meter": 2, + "ZTCT_Hidden": 3 + } + }, + "m_onIncrease": { + "type": "class SharedPointer", + "id": 19, + "offset": 312, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2723490243 + }, + "m_onDecrease": { + "type": "class SharedPointer", + "id": 20, + "offset": 328, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1346363029 + }, + "m_onEmpty": { + "type": "class SharedPointer", + "id": 21, + "offset": 344, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1658398600 + }, + "m_onFull": { + "type": "class SharedPointer", + "id": 22, + "offset": 360, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1955555436 + } + } + }, + "1156653022": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1156653022, + "properties": {} + }, + "2035824477": { + "name": "class HousingTeleporterBehaviorTemplate*", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 2035824477, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + }, + "m_isPetTeleporter": { + "type": "bool", + "id": 1, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 137008766 + } + } + }, + "1601626199": { + "name": "class ConditionalSpellElement", + "bases": [ + "PropertyClass" + ], + "hash": 1601626199, + "properties": { + "m_pReqs": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2565964996 + }, + "m_pEffect": { + "type": "class SharedPointer", + "id": 1, + "offset": 88, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 400541736 + } + } + }, + "2035824397": { + "name": "class HousingTeleporterBehaviorTemplate", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 2035824397, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + }, + "m_isPetTeleporter": { + "type": "bool", + "id": 1, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 137008766 + } + } + }, + "315399378": { + "name": "class BGPenaltyMatchBanInfo", + "bases": [ + "InfractionPenaltyInfo", + "PropertyClass" + ], + "hash": 315399378, + "properties": { + "m_addAtPointValue": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1071217084 + }, + "m_removeAtPointValue": { + "type": "float", + "id": 1, + "offset": 76, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2112196961 + }, + "m_lifespan": { + "type": "std::string", + "id": 2, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3042809453 + } + } + }, + "333867396": { + "name": "class SharedPointer", + "bases": [ + "GoalEntry", + "ServiceOptionBase", + "PropertyClass" + ], + "hash": 333867396, + "properties": { + "m_serviceName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2206028813 + }, + "m_iconKey": { + "type": "std::string", + "id": 1, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2457138637 + }, + "m_displayKey": { + "type": "std::string", + "id": 2, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3023276954 + }, + "m_serviceIndex": { + "type": "unsigned int", + "id": 3, + "offset": 204, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2103126710 + }, + "m_forceInteract": { + "type": "bool", + "id": 4, + "offset": 200, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1705789564 + }, + "m_questID": { + "type": "gid", + "id": 5, + "offset": 216, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1246549335 + }, + "m_goalID": { + "type": "gid", + "id": 6, + "offset": 224, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 485200232 + }, + "m_goalTitle": { + "type": "std::string", + "id": 7, + "offset": 272, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2291910240 + }, + "m_questTitle": { + "type": "std::string", + "id": 8, + "offset": 240, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1805465583 + }, + "m_goalNameID": { + "type": "unsigned int", + "id": 9, + "offset": 232, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 403158846 + }, + "m_personaName": { + "type": "std::string", + "id": 10, + "offset": 312, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2514452244 + }, + "m_goalType": { + "type": "int", + "id": 11, + "offset": 344, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 24170047 + }, + "m_goalStatus": { + "type": "int", + "id": 12, + "offset": 348, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 409552449 + }, + "m_goalCount": { + "type": "int", + "id": 13, + "offset": 352, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 774266758 + }, + "m_goalTotal": { + "type": "int", + "id": 14, + "offset": 356, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 794425889 + }, + "m_useTally": { + "type": "bool", + "id": 15, + "offset": 364, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 683835718 + }, + "m_tallyText": { + "type": "std::string", + "id": 16, + "offset": 368, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3634775014 + }, + "m_tallyText2": { + "type": "std::string", + "id": 17, + "offset": 400, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3298880408 + }, + "m_goalLocation": { + "type": "std::string", + "id": 18, + "offset": 432, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3086892791 + }, + "m_goalDestinationZone": { + "type": "std::string", + "id": 19, + "offset": 464, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2141407900 + }, + "m_goalImage1": { + "type": "std::string", + "id": 20, + "offset": 496, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1507581938 + }, + "m_goalImage2": { + "type": "std::string", + "id": 21, + "offset": 528, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1507581939 + }, + "m_clientTags": { + "type": "std::string", + "id": 22, + "offset": 560, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2319030025 + }, + "m_goalMadlibs": { + "type": "class SharedPointer", + "id": 23, + "offset": 576, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1580392183 + } + } + }, + "2035431543": { + "name": "class ToSendCheerModsList", + "bases": [ + "PropertyClass" + ], + "hash": 2035431543, + "properties": { + "m_list": { + "type": "class TerrainCheerCostMap", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2021860698 + } + } + }, + "315398610": { + "name": "class BGPenaltyMatchBanInfo*", + "bases": [ + "InfractionPenaltyInfo", + "PropertyClass" + ], + "hash": 315398610, + "properties": { + "m_addAtPointValue": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1071217084 + }, + "m_removeAtPointValue": { + "type": "float", + "id": 1, + "offset": 76, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2112196961 + }, + "m_lifespan": { + "type": "std::string", + "id": 2, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3042809453 + } + } + }, + "761680477": { + "name": "class LevelScaledData*", + "bases": [ + "PropertyClass" + ], + "hash": 761680477, + "properties": { + "m_levelScaledInfoList": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2689138081 + }, + "m_statsFloorPercent": { + "type": "class SharedPointer", + "id": 1, + "offset": 88, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2929073687 + } + } + }, + "1157637127": { + "name": "class DerbyRemoveAction", + "bases": [ + "DerbyEffect", + "PropertyClass" + ], + "hash": 1157637127, + "properties": { + "m_buffType": { + "type": "enum DerbyTalentBuffType", + "id": 0, + "offset": 92, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1149251982, + "enum_options": { + "Buff": 0, + "Debuff": 1, + "Neither": 2 + } + }, + "m_kTarget": { + "type": "enum DerbyTargetType", + "id": 1, + "offset": 96, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1807803351, + "enum_options": { + "kTargetInFront": 0, + "kTargetBehind": 1, + "kTargetFirst": 2, + "kTargetSelf": 3, + "kTargetAll": 4, + "kTargetLast": 5 + } + }, + "m_nDuration": { + "type": "int", + "id": 2, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1110167982 + }, + "m_effectID": { + "type": "unsigned int", + "id": 3, + "offset": 88, + "flags": 24, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2347630439 + }, + "m_imageFilename": { + "type": "std::string", + "id": 4, + "offset": 112, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2813328063 + }, + "m_iconIndex": { + "type": "unsigned int", + "id": 5, + "offset": 144, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1265133262 + }, + "m_soundOnActivate": { + "type": "std::string", + "id": 6, + "offset": 152, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1956929714 + }, + "m_soundOnTarget": { + "type": "std::string", + "id": 7, + "offset": 184, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3444214056 + }, + "m_targetParticleEffect": { + "type": "std::string", + "id": 8, + "offset": 216, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3048234723 + }, + "m_overheadMessage": { + "type": "std::string", + "id": 9, + "offset": 248, + "flags": 8388639, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1701018190 + }, + "m_requirements": { + "type": "class RequirementList", + "id": 10, + "offset": 280, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2840988582 + }, + "m_nActionType": { + "type": "enum DerbyActionTargetType", + "id": 11, + "offset": 376, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3401355432, + "enum_options": { + "Jump": 0, + "Duck": 1, + "AllExceptCheer": 2, + "Cheer": 3 + } + } + } + }, + "1602167042": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1602167042, + "properties": { + "m_loot": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2139157014 + }, + "m_goldInfo": { + "type": "class SharedPointer", + "id": 1, + "offset": 88, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2077081000 + }, + "m_lootRarityList": { + "type": "class SharedPointer", + "id": 2, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3268854573 + } + } + }, + "1157919952": { + "name": "class BlobRequestObject", + "bases": [ + "PropertyClass" + ], + "hash": 1157919952, + "properties": { + "m_subType": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3175052615 + }, + "m_versionNumber": { + "type": "unsigned int", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1265259452 + }, + "m_packageNumber": { + "type": "int", + "id": 2, + "offset": 108, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1934060719 + }, + "m_userData": { + "type": "unsigned int", + "id": 3, + "offset": 112, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 927280710 + }, + "m_objectCount": { + "type": "unsigned int", + "id": 4, + "offset": 116, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 410139949 + } + } + }, + "1601931018": { + "name": "class FoodFightGameComponent*", + "bases": [ + "HousingGameInterface", + "PropertyClass" + ], + "hash": 1601931018, + "properties": {} + }, + "315622825": { + "name": "class LoyaltyStoreItem", + "bases": [ + "PropertyClass" + ], + "hash": 315622825, + "properties": { + "m_saleID": { + "type": "unsigned int", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1150028607 + }, + "m_templateId": { + "type": "gid", + "id": 1, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1075328033 + }, + "m_loyaltyTokensPrice": { + "type": "int", + "id": 2, + "offset": 88, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 476322031 + }, + "m_purchaseLimit": { + "type": "int", + "id": 3, + "offset": 92, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 78574068 + } + } + }, + "762746723": { + "name": "class SharedPointer", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 762746723, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_badgeData": { + "type": "std::string", + "id": 1, + "offset": 160, + "flags": 575, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3002588904 + } + } + }, + "1601906442": { + "name": "class FoodFightGameComponent", + "bases": [ + "HousingGameInterface", + "PropertyClass" + ], + "hash": 1601906442, + "properties": {} + }, + "2036231557": { + "name": "class SharedPointer", + "bases": [ + "ServiceOptionBase", + "PropertyClass" + ], + "hash": 2036231557, + "properties": { + "m_serviceName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2206028813 + }, + "m_iconKey": { + "type": "std::string", + "id": 1, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2457138637 + }, + "m_displayKey": { + "type": "std::string", + "id": 2, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3023276954 + }, + "m_serviceIndex": { + "type": "unsigned int", + "id": 3, + "offset": 204, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2103126710 + }, + "m_forceInteract": { + "type": "bool", + "id": 4, + "offset": 200, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1705789564 + } + } + }, + "762473396": { + "name": "class ActivateHangingEffectCinematicAction*", + "bases": [ + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 762473396, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + }, + "m_activate": { + "type": "bool", + "id": 2, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 142527940 + }, + "m_cloaked": { + "type": "bool", + "id": 3, + "offset": 121, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 7349510 + } + } + }, + "2036058068": { + "name": "class ReqEnergy*", + "bases": [ + "ReqNumeric", + "Requirement", + "PropertyClass" + ], + "hash": 2036058068, + "properties": { + "m_applyNOT": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1746328074, + "enum_options": { + "__DEFAULT": 0 } }, - "m_eMountType": { - "type": "enum eMountType", + "m_operator": { + "type": "enum Requirement::Operator", + "id": 1, + "offset": 76, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2672792317, + "enum_options": { + "ROP_AND": 0, + "ROP_OR": 1, + "__DEFAULT": "ROP_AND" + } + }, + "m_numericValue": { + "type": "float", + "id": 2, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 521915239 + }, + "m_operatorType": { + "type": "enum ReqNumeric::OPERATOR_TYPE", "id": 3, - "offset": 176, - "flags": 2097159, + "offset": 84, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3097765662, + "hash": 2228122961, "enum_options": { - "eMNT_Standard": 0, - "eMNT_Floating": 1 + "OPERATOR_UNKNOWN": 4294967295, + "OPERATOR_EQUALS": 0, + "OPERATOR_GREATER_THAN": 1, + "OPERATOR_LESS_THAN": 2, + "OPERATOR_GREATER_THAN_EQ": 3, + "OPERATOR_LESS_THAN_EQ": 4 } }, - "m_adjustableAnimationRate": { + "m_isPercent": { "type": "bool", "id": 4, - "offset": 180, + "offset": 88, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 514192128 + } + } + }, + "1159010273": { + "name": "class SeedBehavior*", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1159010273, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + } + } + }, + "2036045780": { + "name": "class ReqEnergy", + "bases": [ + "ReqNumeric", + "Requirement", + "PropertyClass" + ], + "hash": 2036045780, + "properties": { + "m_applyNOT": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1746328074, + "enum_options": { + "__DEFAULT": 0 + } + }, + "m_operator": { + "type": "enum Requirement::Operator", + "id": 1, + "offset": 76, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2672792317, + "enum_options": { + "ROP_AND": 0, + "ROP_OR": 1, + "__DEFAULT": "ROP_AND" + } + }, + "m_numericValue": { + "type": "float", + "id": 2, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 521915239 + }, + "m_operatorType": { + "type": "enum ReqNumeric::OPERATOR_TYPE", + "id": 3, + "offset": 84, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2228122961, + "enum_options": { + "OPERATOR_UNKNOWN": 4294967295, + "OPERATOR_EQUALS": 0, + "OPERATOR_GREATER_THAN": 1, + "OPERATOR_LESS_THAN": 2, + "OPERATOR_GREATER_THAN_EQ": 3, + "OPERATOR_LESS_THAN_EQ": 4 + } + }, + "m_isPercent": { + "type": "bool", + "id": 4, + "offset": 88, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 514192128 + } + } + }, + "317107401": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 317107401, + "properties": { + "m_hairModel": { + "type": "int", + "id": 0, + "offset": 72, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 698897022 + "hash": 764326287 }, - "m_primaryDyeToTexture": { - "type": "class MountDyeToTexture", + "m_hairColor": { + "type": "int", + "id": 1, + "offset": 76, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 752476125 + }, + "m_skinColor": { + "type": "int", + "id": 2, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1601202478 + }, + "m_face": { + "type": "int", + "id": 3, + "offset": 84, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 219372329 + }, + "m_skinDecal2": { + "type": "int", + "id": 4, + "offset": 88, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1324180954 + }, + "m_nose": { + "type": "int", "id": 5, - "offset": 120, + "offset": 92, "flags": 7, - "container": "List", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 2402789479 + "hash": 219675599 }, - "m_secondaryDyeToTexture": { - "type": "class MountDyeToTexture", + "m_eyeColor": { + "type": "int", "id": 6, + "offset": 96, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 825282748 + }, + "m_mouth": { + "type": "int", + "id": 7, + "offset": 100, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 802830055 + }, + "m_accessory": { + "type": "int", + "id": 8, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1831652550 + }, + "m_faceDecal": { + "type": "int", + "id": 9, + "offset": 108, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1472001474 + }, + "m_mouthDecal": { + "type": "int", + "id": 10, + "offset": 112, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 993581120 + }, + "m_hatColor": { + "type": "int", + "id": 11, + "offset": 116, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1635647158 + }, + "m_hatDecal": { + "type": "int", + "id": 12, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1636463440 + }, + "m_torsoColor": { + "type": "int", + "id": 13, + "offset": 124, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1443544208 + }, + "m_torsoDecal": { + "type": "int", + "id": 14, + "offset": 128, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1444360490 + }, + "m_feetColor": { + "type": "int", + "id": 15, + "offset": 132, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1168748445 + }, + "m_feetDecal": { + "type": "int", + "id": 16, "offset": 136, "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1169564727 + } + } + }, + "762636292": { + "name": "class std::list >", + "bases": [], + "hash": 762636292, + "properties": {} + }, + "1158738341": { + "name": "class SummonMinionEffectInfo*", + "bases": [ + "GameEffectInfo", + "PropertyClass" + ], + "hash": 1158738341, + "properties": { + "m_effectName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2029161513 + }, + "m_minionType": { + "type": "enum MinionType", + "id": 1, + "offset": 104, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3186373083, + "enum_options": { + "MT_NONE": 0, + "MT_ACCOMPANY": 1, + "MT_MINION": 2, + "MT_MONSTER": 3 + } + }, + "m_summonedTemplateID": { + "type": "int", + "id": 2, + "offset": 108, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1109386027 + } + } + }, + "1158680138": { + "name": "class SplashCinematicInfo", + "bases": [ + "PropertyClass" + ], + "hash": 1158680138, + "properties": { + "m_assetName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513131580 + }, + "m_assetPlaybackTime": { + "type": "float", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1640179405 + } + } + }, + "1602574113": { + "name": "class RitualObjectBehaviorBase*", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1602574113, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_playerList": { + "type": "gid", + "id": 1, + "offset": 112, + "flags": 31, "container": "List", "dynamic": true, "singleton": false, "pointer": false, - "hash": 2282848843 + "hash": 1909774945 + } + } + }, + "317214006": { + "name": "class CinematicActorAnimationContainer*", + "bases": [ + "PropertyClass" + ], + "hash": 317214006, + "properties": { + "m_templateID": { + "type": "unsigned int", + "id": 0, + "offset": 72, + "flags": 71, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1286746870 }, - "m_patternToTexture": { - "type": "class MountDyeToTexture", - "id": 7, - "offset": 152, + "m_actorName": { + "type": "std::string", + "id": 1, + "offset": 96, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2050810421 + }, + "m_animations": { + "type": "class SharedPointer", + "id": 2, + "offset": 128, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2741681697 + }, + "m_templateIDs": { + "type": "unsigned int", + "id": 3, + "offset": 80, "flags": 7, "container": "List", "dynamic": true, "singleton": false, "pointer": false, - "hash": 1665998015 + "hash": 1335199401 + } + } + }, + "763285626": { + "name": "class ClientCameraCutCinematicAction*", + "bases": [ + "CameraCutCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 763285626, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 }, - "m_soundMountEquip": { + "m_cameras": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 131079, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 3217341687 + }, + "m_altcameras": { + "type": "std::string", + "id": 2, + "offset": 104, + "flags": 131079, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1882980152 + }, + "m_initialCameraName": { + "type": "std::string", + "id": 3, + "offset": 128, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2526319343 + }, + "m_camRel": { + "type": "enum CameraCutCinematicAction::kCameraRelative", + "id": 4, + "offset": 168, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 919962138, + "enum_options": { + "kNone": 0, + "kSigil": 1, + "kTarget": 2, + "kSource": 3, + "kActor": 4 + } + }, + "m_interpolationDuration": { + "type": "float", + "id": 5, + "offset": 160, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1458058437 + }, + "m_releaseInterpolationDuration": { + "type": "float", + "id": 6, + "offset": 164, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1807754278, + "enum_options": { + "__DEFAULT": "1.0" + } + }, + "m_bUseOrientationOverride": { + "type": "bool", + "id": 7, + "offset": 188, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1088002894 + }, + "m_overrideOrientation": { + "type": "class Vector3D", + "id": 8, + "offset": 192, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3267199758 + }, + "m_bUseLocationOverride": { + "type": "bool", + "id": 9, + "offset": 172, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1767170875 + }, + "m_overrideLocation": { + "type": "class Vector3D", + "id": 10, + "offset": 176, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3776417691 + }, + "m_namedActor": { + "type": "std::string", + "id": 11, + "offset": 208, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3413532537 + }, + "m_camScale": { + "type": "float", + "id": 12, + "offset": 240, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 979098224 + } + } + }, + "1158697381": { + "name": "class SummonMinionEffectInfo", + "bases": [ + "GameEffectInfo", + "PropertyClass" + ], + "hash": 1158697381, + "properties": { + "m_effectName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2029161513 + }, + "m_minionType": { + "type": "enum MinionType", + "id": 1, + "offset": 104, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3186373083, + "enum_options": { + "MT_NONE": 0, + "MT_ACCOMPANY": 1, + "MT_MINION": 2, + "MT_MONSTER": 3 + } + }, + "m_summonedTemplateID": { + "type": "int", + "id": 2, + "offset": 108, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1109386027 + } + } + }, + "2037410175": { + "name": "class WizDisableItemStatEffect*", + "bases": [ + "StatisticEffect", + "GameEffectBase", + "PropertyClass" + ], + "hash": 2037410175, + "properties": { + "m_currentTickCount": { + "type": "double", + "id": 0, + "offset": 80, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2533274692 + }, + "m_effectNameID": { + "type": "unsigned int", + "id": 1, + "offset": 96, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1204067144 + }, + "m_bIsOnPet": { + "type": "bool", + "id": 2, + "offset": 73, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 522593303 + }, + "m_originatorID": { + "type": "gid", + "id": 3, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1131810019 + }, + "m_itemSlotID": { + "type": "unsigned int", + "id": 4, + "offset": 112, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1895747595 + }, + "m_internalID": { + "type": "int", + "id": 5, + "offset": 92, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1643137924 + }, + "m_endTime": { + "type": "unsigned int", + "id": 6, + "offset": 88, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 716479635 + }, + "m_lookupIndex": { + "type": "int", + "id": 7, + "offset": 128, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1626623948 + } + } + }, + "1608379321": { + "name": "class MatchActorResult*", + "bases": [ + "PropertyClass" + ], + "hash": 1608379321, + "properties": { + "m_pActor": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1115051967 + }, + "m_place": { + "type": "int", + "id": 1, + "offset": 88, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 806257663 + }, + "m_ratingGained": { + "type": "int", + "id": 2, + "offset": 92, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1426436071 + }, + "m_arenaPoints": { + "type": "int", + "id": 3, + "offset": 96, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 511478910 + }, + "m_pvpCurrency": { + "type": "int", + "id": 4, + "offset": 100, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 611304283 + }, + "m_pvpTourneyCurrency": { + "type": "int", + "id": 5, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1184787505 + }, + "m_gold": { + "type": "int", + "id": 6, + "offset": 108, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 219423808 + }, + "m_gameResult": { + "type": "unsigned char", + "id": 7, + "offset": 112, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1417654793 + } + } + }, + "318607003": { + "name": "class SharedPointer", + "bases": [ + "ServiceOptionBase", + "PropertyClass" + ], + "hash": 318607003, + "properties": { + "m_serviceName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2206028813 + }, + "m_iconKey": { + "type": "std::string", + "id": 1, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2457138637 + }, + "m_displayKey": { + "type": "std::string", + "id": 2, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3023276954 + }, + "m_serviceIndex": { + "type": "unsigned int", + "id": 3, + "offset": 204, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2103126710 + }, + "m_forceInteract": { + "type": "bool", + "id": 4, + "offset": 200, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1705789564 + } + } + }, + "1605019892": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1605019892, + "properties": { + "m_characterGID": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 501688601 + }, + "m_lastLoginTime": { + "type": "unsigned int", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1758221801 + }, + "m_partyJoinTime": { + "type": "unsigned int", + "id": 2, + "offset": 84, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1561970012 + }, + "m_packedName": { + "type": "std::string", + "id": 3, + "offset": 88, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1805208228 + }, + "m_level": { + "type": "unsigned int", + "id": 4, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1012687813 + }, + "m_school": { + "type": "unsigned int", + "id": 5, + "offset": 124, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1152268885 + }, + "m_previousLoginTime": { + "type": "unsigned int", + "id": 6, + "offset": 128, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1473612434 + }, + "m_zonePath": { "type": "std::string", + "id": 7, + "offset": 136, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2171239844 + }, + "m_flags": { + "type": "unsigned char", "id": 8, + "offset": 168, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1431998045 + }, + "m_provisionalTime": { + "type": "unsigned int", + "id": 9, + "offset": 172, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 394820722 + }, + "m_permissions": { + "type": "unsigned int", + "id": 10, + "offset": 176, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2127187241 + }, + "m_accountGID": { + "type": "gid", + "id": 11, "offset": 184, - "flags": 131079, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2862460187 + "hash": 414395289 + } + } + }, + "318424777": { + "name": "class ClientComplexRotateTurnIndicatorCinematicAction*", + "bases": [ + "ComplexRotateTurnIndicatorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 318424777, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_rotationInfo": { + "type": "class SharedPointer", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2332010820 + } + } + }, + "764116777": { + "name": "class SharedPointer", + "bases": [ + "ToggleInterfaceControlCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 764116777, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_maximumDurationInSeconds": { + "type": "float", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1457214913 + }, + "m_hideUI": { + "type": "bool", + "id": 2, + "offset": 84, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 519818283 + }, + "m_stopMovement": { + "type": "bool", + "id": 3, + "offset": 85, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1752496036 + } + } + }, + "1158760128": { + "name": "class Mail", + "bases": [ + "PropertyClass" + ], + "hash": 1158760128, + "properties": { + "m_mailId": { + "type": "gid", + "id": 0, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 703697224 + }, + "m_timeStamp": { + "type": "unsigned __int64", + "id": 1, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 933557677 + }, + "m_senderId": { + "type": "gid", + "id": 2, + "offset": 88, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 814458086 + }, + "m_recipientId": { + "type": "gid", + "id": 3, + "offset": 96, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2065780840 + }, + "m_messageType": { + "type": "int", + "id": 4, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1531535105 + }, + "m_messageData": { + "type": "std::string", + "id": 5, + "offset": 112, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3028633722 + }, + "m_messageFlags": { + "type": "int", + "id": 6, + "offset": 108, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1128617708 + }, + "m_expireDuration": { + "type": "unsigned int", + "id": 7, + "offset": 144, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2308711904 + } + } + }, + "1604359739": { + "name": "class HousingSigilBehavior", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1604359739, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + } + } + }, + "2038760820": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 2038760820, + "properties": {} + }, + "317381450": { + "name": "class MoveBehavior", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 317381450, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_nFlags": { + "type": "unsigned int", + "id": 1, + "offset": 112, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 922328456 + }, + "m_nMoveState": { + "type": "enum MoveState", + "id": 2, + "offset": 116, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1430960270, + "enum_options": { + "MS_WALKING": 0, + "MS_RUNNING": 1, + "MS_SWIMMING": 2, + "MS_FLYING": 3, + "MS_JUMPING": 4, + "MS_FALLING": 5 + } + } + } + }, + "763677369": { + "name": "class SharedPointer", + "bases": [ + "SetTopTeamCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 763677369, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_interpDuration": { + "type": "float", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237711951 + } + } + }, + "1604359699": { + "name": "class HousingSigilBehavior*", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1604359699, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + } + } + }, + "2038438212": { + "name": "class AddMatchUpdate*", + "bases": [ + "TournamentUpdate", + "PropertyClass" + ], + "hash": 2038438212, + "properties": { + "m_matchInfo": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2424135306 + } + } + }, + "763901006": { + "name": "class SharedPointer", + "bases": [ + "GameEffectBase", + "PropertyClass" + ], + "hash": 763901006, + "properties": { + "m_currentTickCount": { + "type": "double", + "id": 0, + "offset": 80, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2533274692 + }, + "m_effectNameID": { + "type": "unsigned int", + "id": 1, + "offset": 96, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1204067144 + }, + "m_bIsOnPet": { + "type": "bool", + "id": 2, + "offset": 73, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 522593303 + }, + "m_originatorID": { + "type": "gid", + "id": 3, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1131810019 + }, + "m_itemSlotID": { + "type": "unsigned int", + "id": 4, + "offset": 112, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1895747595 + }, + "m_internalID": { + "type": "int", + "id": 5, + "offset": 92, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1643137924 + }, + "m_endTime": { + "type": "unsigned int", + "id": 6, + "offset": 88, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 716479635 + }, + "m_spellName": { + "type": "std::string", + "id": 7, + "offset": 128, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2688485244 + }, + "m_numSpells": { + "type": "int", + "id": 8, + "offset": 160, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1269498237 + }, + "m_vFX": { + "type": "std::string", + "id": 9, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1764750607 + }, + "m_vFXOverride": { + "type": "bool", + "id": 10, + "offset": 200, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1491092359 + }, + "m_sound": { + "type": "std::string", + "id": 11, + "offset": 208, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2307644996 + } + } + }, + "1159489323": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1159489323, + "properties": { + "m_results": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 3083396188 + } + } + }, + "318427849": { + "name": "class ClientComplexRotateTurnIndicatorCinematicAction", + "bases": [ + "ComplexRotateTurnIndicatorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 318427849, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_rotationInfo": { + "type": "class SharedPointer", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2332010820 + } + } + }, + "1604368941": { + "name": "class HidePipsCinematicAction", + "bases": [ + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 1604368941, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + }, + "m_newActorName": { + "type": "std::string", + "id": 2, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2029131039 + } + } + }, + "2038438372": { + "name": "class AddMatchUpdate", + "bases": [ + "TournamentUpdate", + "PropertyClass" + ], + "hash": 2038438372, + "properties": { + "m_matchInfo": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2424135306 + } + } + }, + "764236905": { + "name": "class CastleBlocksBehaviorTemplate", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 764236905, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + }, + "m_providesFloor": { + "type": "int", + "id": 1, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1381462216 + }, + "m_placedOnFloorTemplateID": { + "type": "unsigned int", + "id": 2, + "offset": 124, + "flags": 33554439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 349311070 + }, + "m_pickedupFromFloorTemplateID": { + "type": "unsigned int", + "id": 3, + "offset": 128, + "flags": 33554439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1208761121 }, - "m_geometryOption": { + "m_hasFadeableCeiling": { "type": "int", - "id": 9, - "offset": 216, + "id": 4, + "offset": 132, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1776153279 + "hash": 2119980373 }, - "m_numSeats": { + "m_dontFadeCeiling": { "type": "int", - "id": 10, - "offset": 220, + "id": 5, + "offset": 136, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1599962314, - "enum_options": { - "__DEFAULT": 1 - } - }, - "m_driverKFM": { - "type": "std::string", - "id": 11, - "offset": 224, - "flags": 131079, + "hash": 373748538 + } + } + }, + "1167378027": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1167378027, + "properties": { + "m_socketType": { + "type": "enum JewelSocket::JewelSocketType", + "id": 0, + "offset": 72, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1883851493 + "hash": 3989417709, + "enum_options": { + "SOCKETTYPE_SQUARE": 0, + "SOCKETTYPE_CIRCLE": 1, + "SOCKETTYPE_TRIANGLE": 2, + "SOCKETTYPE_TEAR": 3, + "SOCKETTYPE_PET": 4, + "SOCKETTYPE_PINSQUAREPIP": 5, + "SOCKETTYPE_PINSQUARESHIELD": 6, + "SOCKETTYPE_PINSQUARESWORD": 7 + } }, - "m_adjustedFocusHeight": { - "type": "float", - "id": 12, - "offset": 256, - "flags": 7, + "m_bLockable": { + "type": "bool", + "id": 1, + "offset": 76, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 863441156 - }, - "m_animationEventList": { - "type": "class SharedPointer", - "id": 13, - "offset": 264, - "flags": 7, + "hash": 1046128242 + } + } + }, + "320081443": { + "name": "class PromoRewardList*", + "bases": [ + "PropertyClass" + ], + "hash": 320081443, + "properties": { + "m_promoRewards": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 31, "container": "List", "dynamic": true, "singleton": false, "pointer": true, - "hash": 2858101335 + "hash": 3146833727 } } }, - "1158680138": { - "name": "class SplashCinematicInfo", + "1163494062": { + "name": "class TreasureCardPosterBehaviorBase*", "bases": [ + "BehaviorInstance", "PropertyClass" ], - "hash": 1158680138, + "hash": 1163494062, "properties": { - "m_assetName": { - "type": "std::string", + "m_behaviorTemplateNameID": { + "type": "unsigned int", "id": 0, - "offset": 72, - "flags": 7, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1513131580 + "hash": 223437287 }, - "m_assetPlaybackTime": { - "type": "float", + "m_spellData": { + "type": "std::string", "id": 1, - "offset": 104, - "flags": 7, + "offset": 128, + "flags": 575, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1640179405 + "hash": 2688126101 } } }, - "1565654366": { - "name": "class SharedPointer", + "1605679661": { + "name": "class HidePipsCinematicAction*", "bases": [ - "ServiceOptionBase", + "ActorCinematicAction", + "CinematicAction", "PropertyClass" ], - "hash": 1565654366, + "hash": 1605679661, "properties": { - "m_serviceName": { - "type": "std::string", + "m_timeOffset": { + "type": "float", "id": 0, "offset": 72, - "flags": 31, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2206028813 + "hash": 2237098605 }, - "m_iconKey": { + "m_actor": { "type": "std::string", "id": 1, - "offset": 168, - "flags": 31, + "offset": 80, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2457138637 + "hash": 2285866132 }, - "m_displayKey": { + "m_newActorName": { "type": "std::string", "id": 2, - "offset": 104, - "flags": 31, + "offset": 120, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3023276954 + "hash": 2029131039 + } + } + }, + "319646203": { + "name": "class ClientCreatePipCinematicActorsFromResult", + "bases": [ + "CreatePipCinematicActorsFromResult", + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 319646203, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 }, - "m_serviceIndex": { - "type": "unsigned int", - "id": 3, - "offset": 204, - "flags": 31, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2103126710 + "hash": 2285866132 }, - "m_forceInteract": { - "type": "bool", - "id": 4, - "offset": 200, - "flags": 31, + "m_newActorName": { + "type": "std::string", + "id": 2, + "offset": 120, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1705789564 + "hash": 2029131039 } } }, - "21011": { - "name": "s24", - "bases": [], - "hash": 21011, - "properties": {} - }, - "1558190673": { - "name": "class RequirementList", + "1161498678": { + "name": "class ReqCombatHealth", "bases": [ + "ConditionalSpellEffectRequirement", "Requirement", "PropertyClass" ], - "hash": 1558190673, + "hash": 1161498678, "properties": { "m_applyNOT": { "type": "bool", @@ -493334,34 +265301,62 @@ "__DEFAULT": "ROP_AND" } }, - "m_requirements": { - "type": "class Requirement*", + "m_targetType": { + "type": "enum ConditionalSpellEffectRequirement::RequirementTarget", "id": 2, "offset": 80, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547737902, + "enum_options": { + "RT_Caster": 0, + "RT_Target": 1 + } + }, + "m_fMinPercent": { + "type": "float", + "id": 3, + "offset": 88, "flags": 31, - "container": "List", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1347801628 + "pointer": false, + "hash": 262693330 + }, + "m_fMaxPercent": { + "type": "float", + "id": 4, + "offset": 92, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 643246740 } } }, - "20834": { - "name": "bi6", - "bases": [], - "hash": 20834, + "1605342853": { + "name": "class HousingNodeReference*", + "bases": [ + "PropertyClass" + ], + "hash": 1605342853, "properties": {} }, - "1158697381": { - "name": "class SummonMinionEffectInfo", + "2040574667": { + "name": "class PlayerStatueStitchBlob*", "bases": [ - "GameEffectInfo", + "PlayerStatueBlob", "PropertyClass" ], - "hash": 1158697381, + "hash": 2040574667, "properties": { - "m_effectName": { + "m_packedName": { "type": "std::string", "id": 0, "offset": 72, @@ -493370,233 +265365,210 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 2029161513 + "hash": 1805208228 }, - "m_minionType": { - "type": "enum MinionType", + "m_characterBuffer": { + "type": "std::string", "id": 1, "offset": 104, - "flags": 2097159, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3186373083, - "enum_options": { - "MT_NONE": 0, - "MT_ACCOMPANY": 1, - "MT_MINION": 2, - "MT_MONSTER": 3 - } + "hash": 1972275298 }, - "m_summonedTemplateID": { - "type": "int", + "m_equipmentBuffer": { + "type": "std::string", "id": 2, - "offset": 108, + "offset": 136, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1109386027 + "hash": 1511030957 + }, + "m_emoteID": { + "type": "unsigned int", + "id": 3, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 691533780 } } }, - "1960141592": { - "name": "class SharedPointer", + "318658534": { + "name": "class ClientDerbyModifySpeedBoost*", "bases": [ - "RemoveParticleActorCinematicAction", - "ActorCinematicAction", - "CinematicAction", + "DerbyModifySpeedBoost", + "DerbyEffect", "PropertyClass" ], - "hash": 1960141592, + "hash": 318658534, "properties": { - "m_timeOffset": { - "type": "float", + "m_buffType": { + "type": "enum DerbyTalentBuffType", "id": 0, - "offset": 72, - "flags": 7, + "offset": 92, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 + "hash": 1149251982, + "enum_options": { + "Buff": 0, + "Debuff": 1, + "Neither": 2 + } }, - "m_actor": { - "type": "std::string", + "m_kTarget": { + "type": "enum DerbyTargetType", "id": 1, - "offset": 80, - "flags": 7, + "offset": 96, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2285866132 + "hash": 1807803351, + "enum_options": { + "kTargetInFront": 0, + "kTargetBehind": 1, + "kTargetFirst": 2, + "kTargetSelf": 3, + "kTargetAll": 4, + "kTargetLast": 5 + } }, - "m_effectName": { - "type": "std::string", + "m_nDuration": { + "type": "int", "id": 2, - "offset": 120, - "flags": 7, + "offset": 104, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2029161513 + "hash": 1110167982 }, - "m_nodeName": { - "type": "std::string", + "m_effectID": { + "type": "unsigned int", "id": 3, - "offset": 152, - "flags": 7, + "offset": 88, + "flags": 24, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3607089954 - } - } - }, - "1555394587": { - "name": "class SharedPointer", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 1555394587, - "properties": { - "m_behaviorName": { + "hash": 2347630439 + }, + "m_imageFilename": { "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, + "id": 4, + "offset": 112, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3130754092 + "hash": 2813328063 }, - "m_lotWorldZone": { + "m_iconIndex": { + "type": "unsigned int", + "id": 5, + "offset": 144, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1265133262 + }, + "m_soundOnActivate": { "type": "std::string", - "id": 1, - "offset": 120, - "flags": 268435463, + "id": 6, + "offset": 152, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3026711022, - "enum_options": { - "__BASECLASS": "ZoneData" - } - } - } - }, - "393738954": { - "name": "class SharedPointer", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 393738954, - "properties": { - "m_behaviorName": { + "hash": 1956929714 + }, + "m_soundOnTarget": { "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, + "id": 7, + "offset": 184, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3130754092 - } - } - }, - "1960135198": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1960135198, - "properties": { - "m_todaysQuestList": { - "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 31, - "container": "List", - "dynamic": true, + "hash": 3444214056 + }, + "m_targetParticleEffect": { + "type": "std::string", + "id": 8, + "offset": 216, + "flags": 131103, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 1866614959 - } - } - }, - "1553705857": { - "name": "class RidableBehavior*", - "bases": [ - "RidableBehaviorBase", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1553705857, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, + "hash": 3048234723 + }, + "m_overheadMessage": { + "type": "std::string", + "id": 9, + "offset": 248, + "flags": 8388639, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 + "hash": 1701018190 }, - "m_assignedPlayers": { - "type": "gid", - "id": 1, - "offset": 112, - "flags": 65543, - "container": "Vector", - "dynamic": true, + "m_requirements": { + "type": "class RequirementList", + "id": 10, + "offset": 280, + "flags": 31, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 1913541510 - } - } - }, - "393204234": { - "name": "class GameEffectInfo*", - "bases": [ - "PropertyClass" - ], - "hash": 393204234, - "properties": { - "m_effectName": { - "type": "std::string", - "id": 0, - "offset": 72, + "hash": 2840988582 + }, + "m_nSpeedChange": { + "type": "int", + "id": 11, + "offset": 376, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2029161513 + "hash": 636533855 } } }, - "1552218815": { - "name": "class DeathCinematicStageTemplate*", + "767807694": { + "name": "class EffectCinematicAction*", "bases": [ - "CinematicStageTemplate", + "BaseEffectCinematicAction", + "CinematicAction", "PropertyClass" ], - "hash": 1552218815, + "hash": 767807694, "properties": { - "m_name": { - "type": "std::string", + "m_timeOffset": { + "type": "float", "id": 0, "offset": 72, "flags": 7, @@ -493604,141 +265576,89 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 1717359772 + "hash": 2237098605 }, - "m_duration": { - "type": "float", + "m_effectRel": { + "type": "enum BaseEffectCinematicAction::kEffectRelative", "id": 1, - "offset": 104, - "flags": 7, + "offset": 80, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 920323453 - }, - "m_actions": { - "type": "class SharedPointer", - "id": 2, - "offset": 112, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1380578687 - }, - "m_stageRelationships": { - "type": "class SharedPointer", - "id": 3, - "offset": 128, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 499983354 - }, - "m_cameras": { - "type": "std::string", - "id": 4, - "offset": 152, - "flags": 131079, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 3217341687 + "hash": 2978921287, + "enum_options": { + "kNone": 0, + "kSigil": 1, + "kTarget": 2, + "kSource": 3, + "kActor": 4 + } }, - "m_altcameras": { + "m_graphic": { "type": "std::string", - "id": 5, - "offset": 176, + "id": 2, + "offset": 88, "flags": 131079, - "container": "Vector", + "container": "List", "dynamic": true, "singleton": false, "pointer": false, - "hash": 1882980152 + "hash": 2592217913 }, - "m_bShowDefeatedText": { + "m_bUseOrientationOverride": { "type": "bool", - "id": 6, - "offset": 232, + "id": 3, + "offset": 120, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2068996589 + "hash": 1088002894 }, - "m_bForceStageToWaitOnAnimation": { - "type": "bool", - "id": 7, - "offset": 233, + "m_overrideOrientation": { + "type": "class Vector3D", + "id": 4, + "offset": 124, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2071596205 + "hash": 3267199758 }, - "m_animation": { - "type": "std::string", - "id": 8, - "offset": 200, + "m_bUseLocationOverride": { + "type": "bool", + "id": 5, + "offset": 104, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3431428731 - } - } - }, - "21013": { - "name": "u24", - "bases": [], - "hash": 21013, - "properties": {} - }, - "391267251": { - "name": "class ShowcasedStoreItem", - "bases": [ - "PropertyClass" - ], - "hash": 391267251, - "properties": { - "m_iconFilename": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3103016389 + "hash": 1767170875 }, - "m_templateID": { - "type": "gid", - "id": 1, - "offset": 104, - "flags": 31, + "m_overrideLocation": { + "type": "class Vector3D", + "id": 6, + "offset": 108, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1075328001 + "hash": 3776417691 } } }, - "1158760128": { - "name": "class Mail", + "1161381568": { + "name": "class Mail*", "bases": [ "PropertyClass" ], - "hash": 1158760128, + "hash": 1161381568, "properties": { "m_mailId": { "type": "gid", @@ -493830,381 +265750,307 @@ } } }, - "1551795256": { - "name": "class SharedPointer", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 1551795256, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - } - } - }, - "390058977": { - "name": "class AcousticAreaBehaviorTemplate*", + "2040533707": { + "name": "class PlayerStatueStitchBlob", "bases": [ - "AreaBehaviorTemplate", - "BehaviorTemplate", + "PlayerStatueBlob", "PropertyClass" ], - "hash": 390058977, + "hash": 2040533707, "properties": { - "m_behaviorName": { + "m_packedName": { "type": "std::string", "id": 0, "offset": 72, - "flags": 7, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3130754092 + "hash": 1805208228 }, - "m_radius": { - "type": "float", + "m_characterBuffer": { + "type": "std::string", "id": 1, - "offset": 120, - "flags": 7, + "offset": 104, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 989410271 + "hash": 1972275298 }, - "m_category": { - "type": "enum AudioCategory", + "m_equipmentBuffer": { + "type": "std::string", "id": 2, - "offset": 124, - "flags": 2097159, + "offset": 136, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2951251982, - "enum_options": { - "AudioCategory_Irrelevent": 0, - "AudioCategory_Accoustic": 1, - "AudioCategory_Noise": 2, - "AudioCategory_Music": 3, - "AudioCategory_MusicAtSFXVolume": 4, - "AudioCategory_Dialog": 5, - "AudioCategory_UI": 6, - "AudioCategory_NoiseAtMusicVolume": 7 - } + "hash": 1511030957 }, - "m_exclusive": { - "type": "bool", + "m_emoteID": { + "type": "unsigned int", "id": 3, - "offset": 128, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 824383403 - }, - "m_active": { - "type": "bool", - "id": 4, - "offset": 129, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 239335471 - }, - "m_enableReqs": { - "type": "class SharedPointer", - "id": 5, - "offset": 136, - "flags": 263, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3158020443 - }, - "m_accousticSignature": { - "type": "enum AccousticSignature", - "id": 6, - "offset": 152, - "flags": 2097159, + "offset": 168, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1188263221, - "enum_options": { - "Generic": 0, - "Padded Cell": 1, - "Room": 2, - "Bath Room": 3, - "Living Room": 4, - "Stone Room": 5, - "Auditorium": 6, - "Concert Hall": 7, - "Cave": 8, - "Arena": 9, - "Hanger": 10, - "Carpeted Hallway": 11, - "Hallway": 12, - "Stone Corridor": 13, - "Alley": 14, - "Forest": 15, - "City": 16, - "Mountains": 17, - "Quarry": 18, - "Plain": 19, - "Parking Lot": 20, - "Sewer Pipe": 21, - "Underwater": 22, - "Drugged": 23, - "Dizzy": 24, - "Psychotic": 25 - } + "hash": 691533780 } } }, - "1551752045": { - "name": "class SharedPointer", + "318658214": { + "name": "class ClientDerbyModifySpeedBoost", "bases": [ - "ZoneTokenBase", + "DerbyModifySpeedBoost", + "DerbyEffect", "PropertyClass" ], - "hash": 1551752045, + "hash": 318658214, "properties": { - "m_debugName": { - "type": "std::string", + "m_buffType": { + "type": "enum DerbyTalentBuffType", "id": 0, - "offset": 72, - "flags": 31, + "offset": 92, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3553984419 + "hash": 1149251982, + "enum_options": { + "Buff": 0, + "Debuff": 1, + "Neither": 2 + } }, - "m_adjectiveList": { - "type": "std::string", + "m_kTarget": { + "type": "enum DerbyTargetType", "id": 1, - "offset": 104, - "flags": 31, - "container": "List", - "dynamic": true, + "offset": 96, + "flags": 2097159, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 3195213318 + "hash": 1807803351, + "enum_options": { + "kTargetInFront": 0, + "kTargetBehind": 1, + "kTargetFirst": 2, + "kTargetSelf": 3, + "kTargetAll": 4, + "kTargetLast": 5 + } }, - "m_icon": { - "type": "std::string", + "m_nDuration": { + "type": "int", "id": 2, - "offset": 120, - "flags": 131103, + "offset": 104, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1717182340 + "hash": 1110167982 }, - "m_iconBW": { - "type": "std::string", + "m_effectID": { + "type": "unsigned int", "id": 3, - "offset": 152, - "flags": 131103, + "offset": 88, + "flags": 24, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2047461085 + "hash": 2347630439 }, - "m_description": { + "m_imageFilename": { "type": "std::string", "id": 4, - "offset": 184, - "flags": 8388639, + "offset": 112, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1649374815 + "hash": 2813328063 }, - "m_displayMode": { - "type": "enum ZTDisplayMode", + "m_iconIndex": { + "type": "unsigned int", "id": 5, - "offset": 216, - "flags": 2097183, + "offset": 144, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2216526410, - "enum_options": { - "ZTDM_Shown": 0, - "ZTDM_Discoverable": 1, - "ZTDM_Hidden": 2 - } + "hash": 1265133262 }, - "m_storage": { - "type": "enum ZTStorage", + "m_soundOnActivate": { + "type": "std::string", "id": 6, - "offset": 220, - "flags": 2097183, + "offset": 152, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2290454852, - "enum_options": { - "ZTS_Player": 0, - "ZTS_Zone": 1 - } + "hash": 1956929714 }, - "m_onEnable": { - "type": "class SharedPointer", + "m_soundOnTarget": { + "type": "std::string", "id": 7, - "offset": 224, - "flags": 7, + "offset": 184, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2591736864 + "pointer": false, + "hash": 3444214056 }, - "m_onDiscover": { - "type": "class SharedPointer", + "m_targetParticleEffect": { + "type": "std::string", "id": 8, - "offset": 240, - "flags": 7, + "offset": 216, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2826026872 + "pointer": false, + "hash": 3048234723 }, - "m_onDisable": { - "type": "class SharedPointer", + "m_overheadMessage": { + "type": "std::string", "id": 9, - "offset": 256, - "flags": 7, + "offset": 248, + "flags": 8388639, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1860656717 + "pointer": false, + "hash": 1701018190 }, - "m_sourceID": { - "type": "gid", + "m_requirements": { + "type": "class RequirementList", "id": 10, - "offset": 272, + "offset": 280, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1134700470 + "hash": 2840988582 }, - "m_inZone": { - "type": "bool", + "m_nSpeedChange": { + "type": "int", "id": 11, - "offset": 280, + "offset": 376, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 564535654 - }, - "m_enabled": { - "type": "bool", - "id": 12, - "offset": 281, - "flags": 31, + "hash": 636533855 + } + } + }, + "764671602": { + "name": "class GamebryoClientLeashBehavior*", + "bases": [ + "ClientLeashBehavior", + "LeashBehavior", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 764671602, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 504506718 + "hash": 223437287 }, - "m_discovered": { - "type": "bool", - "id": 13, - "offset": 282, + "m_ownerGid": { + "type": "gid", + "id": 1, + "offset": 128, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2060478331 + "hash": 1765088663 }, - "m_duration": { - "type": "std::string", - "id": 14, - "offset": 288, + "m_radius": { + "type": "float", + "id": 2, + "offset": 136, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2327821921 + "hash": 989410271 }, - "m_onExpire": { - "type": "class SharedPointer", - "id": 15, - "offset": 320, - "flags": 7, + "m_angle": { + "type": "float", + "id": 3, + "offset": 140, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2604142950 + "pointer": false, + "hash": 878748702 }, - "m_timeTriggers": { - "type": "class SharedPointer", - "id": 16, - "offset": 336, + "m_leashType": { + "type": "enum LeashType", + "id": 4, + "offset": 144, "flags": 31, - "container": "List", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1112107844 + "pointer": false, + "hash": 2170708051, + "enum_options": { + "LLT_Rigid": 0, + "LLT_Elastic": 1 + } }, - "m_expireTime": { - "type": "unsigned int", - "id": 17, - "offset": 356, + "m_alwaysDisplay": { + "type": "bool", + "id": 5, + "offset": 161, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1836304873 + "hash": 2071781402 } } }, - "388865230": { - "name": "class SharedPointer", + "1160849771": { + "name": "class RatingBadgeInfo", "bases": [ - "ActorCinematicAction", - "CinematicAction", "PropertyClass" ], - "hash": 388865230, + "hash": 1160849771, "properties": { - "m_timeOffset": { - "type": "float", + "m_badgeName": { + "type": "std::string", "id": 0, "offset": 72, "flags": 7, @@ -494212,474 +266058,347 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 + "hash": 3002948047 }, - "m_actor": { - "type": "std::string", + "m_cost": { + "type": "int", "id": 1, - "offset": 80, + "offset": 104, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2285866132 + "hash": 219280307 }, - "m_cloaked": { - "type": "bool", + "m_ingredients": { + "type": "class Ingredient*", "id": 2, - "offset": 124, + "offset": 112, "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 7349510 - }, - "m_type": { - "type": "enum StopHangingRotationCinematicAction::kStopHangingTypes", - "id": 3, - "offset": 120, - "flags": 2097159, - "container": "Static", - "dynamic": false, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 2339468071, - "enum_options": { - "kStopHanging_Burn": 0, - "kStopHanging_Add": 1 - } + "pointer": true, + "hash": 1061809494 } } }, - "1961520417": { - "name": "class SharedPointer", + "1605342893": { + "name": "class HousingNodeReference", "bases": [ "PropertyClass" ], - "hash": 1961520417, + "hash": 1605342893, + "properties": {} + }, + "2038880726": { + "name": "class SharedPointer", + "bases": [ + "Camera", + "PropertyClass" + ], + "hash": 2038880726, "properties": { - "m_spellRank": { - "type": "unsigned char", + "m_coord": { + "type": "class Vector3D", "id": 0, - "offset": 80, + "offset": 72, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1828528860 + "hash": 2448785881 }, - "m_balancePips": { - "type": "unsigned char", + "m_quat": { + "type": "class Quaternion", "id": 1, - "offset": 81, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1232748146 - }, - "m_deathPips": { - "type": "unsigned char", - "id": 2, - "offset": 82, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1364547506 - }, - "m_firePips": { - "type": "unsigned char", - "id": 3, - "offset": 83, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2490965330 - }, - "m_icePips": { - "type": "unsigned char", - "id": 4, "offset": 84, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1584134173 - }, - "m_lifePips": { - "type": "unsigned char", - "id": 5, - "offset": 85, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2181444364 - }, - "m_mythPips": { - "type": "unsigned char", - "id": 6, - "offset": 86, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1590318670 + "hash": 2148807035 }, - "m_stormPips": { - "type": "unsigned char", - "id": 7, - "offset": 87, + "m_mat": { + "type": "class Matrix3x3", + "id": 2, + "offset": 100, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 769321921 - }, - "m_shadowPips": { - "type": "unsigned char", - "id": 8, - "offset": 88, - "flags": 7, + "hash": 1746928484 + } + } + }, + "764405530": { + "name": "class std::list >", + "bases": [], + "hash": 764405530, + "properties": {} + }, + "1160667979": { + "name": "class ArenaBonusPointsLootInfo", + "bases": [ + "LootInfo", + "LootInfoBase", + "PropertyClass" + ], + "hash": 1160667979, + "properties": { + "m_lootType": { + "type": "enum LootInfo::LOOT_TYPE", + "id": 0, + "offset": 72, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2569883346 + "hash": 1591891442, + "enum_options": { + "LOOT_TYPE_NONE": 0, + "LOOT_TYPE_GOLD": 1, + "LOOT_TYPE_MANA": 2, + "LOOT_TYPE_ITEM": 3, + "LOOT_TYPE_TREASURE_CARD": 4, + "LOOT_TYPE_MAGIC_XP": 5, + "LOOT_TYPE_ADD_SPELL": 6, + "LOOT_TYPE_MAX_HEALTH": 7, + "LOOT_TYPE_MAX_GOLD": 8, + "LOOT_TYPE_MAX_MANA": 9, + "LOOT_TYPE_MAX_POTION": 10, + "LOOT_TYPE_TRAINING_POINTS": 11, + "LOOT_TYPE_RECIPE": 12, + "LOOT_TYPE_CRAFTING_SLOT": 13, + "LOOT_TYPE_REAGENT": 14, + "LOOT_TYPE_PETSNACK": 15, + "LOOT_TYPE_GARDENING_XP": 16, + "LOOT_TYPE_PET_XP": 17, + "LOOT_TYPE_TREASURE_TABLE": 18, + "LOOT_TYPE_ARENA_POINTS": 19, + "LOOT_TYPE_ARENA_BONUS_POINTS": 20, + "LOOT_TYPE_GROUP": 21, + "LOOT_TYPE_FISHING_XP": 22, + "LOOT_TYPE_EVENT_CURRENCY_1": 24, + "LOOT_TYPE_EVENT_CURRENCY_2": 25, + "LOOT_TYPE_PVP_CURRENCY": 26, + "LOOT_TYPE_PVP_CURRENCY_BONUS": 27, + "LOOT_TYPE_PVP_TOURNEY_CURRENCY": 28, + "LOOT_TYPE_PVP_TOURNEY_CURRENCY_BONUS": 29, + "LOOT_TYPE_FURNITURE_ESSENCE": 30 + } }, - "m_xPipSpell": { - "type": "bool", - "id": 9, - "offset": 90, - "flags": 7, + "m_arenaBonusPointsAmount": { + "type": "int", + "id": 1, + "offset": 80, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1088376340 + "hash": 774521529 } } }, - "23906": { - "name": "bi5", - "bases": [], - "hash": 23906, + "764330343": { + "name": "class AutobotMobAvoidance", + "bases": [ + "PropertyClass" + ], + "hash": 764330343, "properties": {} }, - "1159489323": { - "name": "class SharedPointer", + "319128344": { + "name": "class SharedPointer", "bases": [ "PropertyClass" ], - "hash": 1159489323, + "hash": 319128344, "properties": { - "m_results": { - "type": "class SharedPointer", + "m_templateID": { + "type": "unsigned int", "id": 0, "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, + "flags": 31, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3083396188 + "pointer": false, + "hash": 1286746870 + }, + "m_lastPurchaseTimeSec": { + "type": "unsigned __int64", + "id": 1, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1926562290 } } }, - "1961332375": { - "name": "class GardeningBehaviorTemplate", + "1606943963": { + "name": "class SharedPointer", "bases": [ - "BehaviorTemplate", "PropertyClass" ], - "hash": 1961332375, + "hash": 1606943963, "properties": { - "m_behaviorName": { - "type": "std::string", + "m_classProjectID": { + "type": "unsigned int", "id": 0, "offset": 72, - "flags": 7, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3130754092 + "hash": 996536487 + }, + "m_sigilIcon": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3177480156 } } }, - "211490908": { - "name": "unsigned int", - "bases": [], - "hash": 211490908, - "properties": {} - }, - "22882": { - "name": "bi4", - "bases": [], - "hash": 22882, - "properties": {} - }, - "1961304729": { - "name": "class ToolTipWindow*", + "318685725": { + "name": "class CinematicTemplate*", "bases": [ - "Window", "PropertyClass" ], - "hash": 1961304729, + "hash": 318685725, "properties": { - "m_sName": { + "m_name": { "type": "std::string", "id": 0, - "offset": 80, - "flags": 135, + "offset": 120, + "flags": 134217735, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2306437263 + "hash": 1717359772 }, - "m_Children": { - "type": "class SharedPointer", + "m_stages": { + "type": "class SharedPointer", "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", + "offset": 72, + "flags": 7, + "container": "List", "dynamic": true, "singleton": false, "pointer": true, - "hash": 2621225959 + "hash": 2081530688 }, - "m_Style": { - "type": "unsigned int", + "m_actors": { + "type": "class SharedPointer", "id": 2, - "offset": 152, - "flags": 1048583, - "container": "Static", - "dynamic": false, + "offset": 88, + "flags": 7, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "SCALE_CHILDREN": 2, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "FOCUS_LOCKED": 64, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152 - } + "pointer": true, + "hash": 2242419761 }, - "m_Flags": { - "type": "unsigned int", + "m_sharedAnimations": { + "type": "class SharedPointer", "id": 3, - "offset": 156, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } - }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3105139380 - }, - "m_fTargetAlpha": { - "type": "float", - "id": 5, - "offset": 212, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1809129834 - }, - "m_fDisabledAlpha": { - "type": "float", - "id": 6, - "offset": 216, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1389987675 - }, - "m_fAlpha": { - "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 482130755 - }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, - "container": "Static", - "dynamic": false, + "offset": 104, + "flags": 7, + "container": "List", + "dynamic": true, "singleton": false, "pointer": true, - "hash": 3623628394 - }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2102211316 - }, - "m_sScript": { + "hash": 3289641416 + } + } + }, + "1160854891": { + "name": "class RatingBadgeInfo*", + "bases": [ + "PropertyClass" + ], + "hash": 1160854891, + "properties": { + "m_badgeName": { "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1846695875 - }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3389835433 - }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, + "id": 0, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2547159940 + "hash": 3002948047 }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, + "m_cost": { + "type": "int", + "id": 1, + "offset": 104, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1513510520 + "hash": 219280307 }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, + "m_ingredients": { + "type": "class Ingredient*", + "id": 2, + "offset": 112, + "flags": 7, "container": "List", "dynamic": true, "singleton": false, - "pointer": false, - "hash": 2587533771 - }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3091503757 + "pointer": true, + "hash": 1061809494 } } }, - "1551872303": { - "name": "class SharedPointer", + "1605852679": { + "name": "class SharedPointer", "bases": [ + "BehaviorTemplate", "PropertyClass" ], - "hash": 1551872303, + "hash": 1605852679, "properties": { - "m_enums": { + "m_behaviorName": { "type": "std::string", "id": 0, - "offset": 128, + "offset": 72, "flags": 7, - "container": "List", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 2291006147 + "hash": 3130754092 } } }, - "390069217": { - "name": "class AcousticAreaBehaviorTemplate", + "2041281165": { + "name": "class GuildMuseumCuratorTemplate*", "bases": [ - "AreaBehaviorTemplate", "BehaviorTemplate", "PropertyClass" ], - "hash": 390069217, + "hash": 2041281165, "properties": { "m_behaviorName": { "type": "std::string", @@ -494692,8 +266411,8 @@ "pointer": false, "hash": 3130754092 }, - "m_radius": { - "type": "float", + "m_galleryWorld": { + "type": "std::string", "id": 1, "offset": 120, "flags": 7, @@ -494701,285 +266420,168 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 989410271 + "hash": 3310813907 }, - "m_category": { - "type": "enum AudioCategory", + "m_exhibit": { + "type": "std::string", "id": 2, - "offset": 124, - "flags": 2097159, + "offset": 152, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2951251982, - "enum_options": { - "AudioCategory_Irrelevent": 0, - "AudioCategory_Accoustic": 1, - "AudioCategory_Noise": 2, - "AudioCategory_Music": 3, - "AudioCategory_MusicAtSFXVolume": 4, - "AudioCategory_Dialog": 5, - "AudioCategory_UI": 6, - "AudioCategory_NoiseAtMusicVolume": 7 - } - }, - "m_exclusive": { - "type": "bool", - "id": 3, - "offset": 128, + "hash": 2399621352 + } + } + }, + "764485787": { + "name": "class BadgeLeaderboardInfo*", + "bases": [ + "PropertyClass" + ], + "hash": 764485787, + "properties": { + "m_characterGID": { + "type": "gid", + "id": 0, + "offset": 72, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 824383403 + "hash": 501688601 }, - "m_active": { - "type": "bool", - "id": 4, - "offset": 129, + "m_packedName": { + "type": "std::string", + "id": 1, + "offset": 80, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 239335471 + "hash": 1805208228 }, - "m_enableReqs": { - "type": "class SharedPointer", - "id": 5, - "offset": 136, - "flags": 263, + "m_playerLevel": { + "type": "int", + "id": 2, + "offset": 112, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3158020443 + "pointer": false, + "hash": 743117695 }, - "m_accousticSignature": { - "type": "enum AccousticSignature", - "id": 6, - "offset": 152, - "flags": 2097159, + "m_badgeCount": { + "type": "int", + "id": 3, + "offset": 116, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1188263221, - "enum_options": { - "Generic": 0, - "Padded Cell": 1, - "Room": 2, - "Bath Room": 3, - "Living Room": 4, - "Stone Room": 5, - "Auditorium": 6, - "Concert Hall": 7, - "Cave": 8, - "Arena": 9, - "Hanger": 10, - "Carpeted Hallway": 11, - "Hallway": 12, - "Stone Corridor": 13, - "Alley": 14, - "Forest": 15, - "City": 16, - "Mountains": 17, - "Quarry": 18, - "Plain": 19, - "Parking Lot": 20, - "Sewer Pipe": 21, - "Underwater": 22, - "Drugged": 23, - "Dizzy": 24, - "Psychotic": 25 - } - } - } - }, - "1961169875": { - "name": "class InitialCombatSound*", - "bases": [ - "PropertyClass" - ], - "hash": 1961169875, - "properties": { - "m_worldZoneName": { - "type": "std::string", - "id": 0, - "offset": 72, + "hash": 265710774 + }, + "m_school": { + "type": "unsigned int", + "id": 4, + "offset": 120, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2739174336 + "hash": 1152268885 }, - "m_soundList": { + "m_lastBadgeName": { "type": "std::string", - "id": 1, - "offset": 104, + "id": 5, + "offset": 128, "flags": 7, - "container": "List", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 2277086720 + "hash": 3502394755 } } }, - "22658": { - "name": "bf4", - "bases": [], - "hash": 22658, - "properties": {} - }, - "1167378027": { - "name": "class SharedPointer", + "2041281159": { + "name": "class GuildMuseumCuratorTemplate", "bases": [ + "BehaviorTemplate", "PropertyClass" ], - "hash": 1167378027, + "hash": 2041281159, "properties": { - "m_socketType": { - "type": "enum JewelSocket::JewelSocketType", + "m_behaviorName": { + "type": "std::string", "id": 0, "offset": 72, - "flags": 2097159, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3989417709, - "enum_options": { - "SOCKETTYPE_SQUARE": 0, - "SOCKETTYPE_CIRCLE": 1, - "SOCKETTYPE_TRIANGLE": 2, - "SOCKETTYPE_TEAR": 3, - "SOCKETTYPE_PET": 4, - "SOCKETTYPE_PINSQUAREPIP": 5, - "SOCKETTYPE_PINSQUARESHIELD": 6, - "SOCKETTYPE_PINSQUARESWORD": 7 - } + "hash": 3130754092 }, - "m_bLockable": { - "type": "bool", + "m_galleryWorld": { + "type": "std::string", "id": 1, - "offset": 76, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1046128242 - } - } - }, - "1960696169": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1960696169, - "properties": { - "m_rank": { - "type": "int", - "id": 0, - "offset": 72, + "offset": 120, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 219803942 + "hash": 3310813907 }, - "m_level": { - "type": "int", - "id": 1, - "offset": 76, + "m_exhibit": { + "type": "std::string", + "id": 2, + "offset": 152, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 801285362 + "hash": 2399621352 } } }, - "391082004": { - "name": "class SharedPointer", + "1606679257": { + "name": "class SharedPointer", "bases": [ "PropertyClass" ], - "hash": 391082004, + "hash": 1606679257, "properties": { - "m_auctionList": { - "type": "class SharedPointer", + "m_hubZoneMapping": { + "type": "class HubZoneMapping*", "id": 0, "offset": 72, - "flags": 31, + "flags": 7, "container": "List", "dynamic": true, "singleton": false, "pointer": true, - "hash": 3624813468 - }, - "m_auctionHousePurchaseKey": { - "type": "unsigned int", - "id": 1, - "offset": 88, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 394777768 - } - } - }, - "1163494062": { - "name": "class TreasureCardPosterBehaviorBase*", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1163494062, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_spellData": { - "type": "std::string", - "id": 1, - "offset": 128, - "flags": 575, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2688126101 + "hash": 1402898811 } } }, - "1552219135": { - "name": "class DeathCinematicStageTemplate", + "764485811": { + "name": "class BadgeLeaderboardInfo", "bases": [ - "CinematicStageTemplate", "PropertyClass" ], - "hash": 1552219135, + "hash": 764485811, "properties": { - "m_name": { - "type": "std::string", + "m_characterGID": { + "type": "gid", "id": 0, "offset": 72, "flags": 7, @@ -494987,106 +266589,73 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 1717359772 + "hash": 501688601 }, - "m_duration": { - "type": "float", + "m_packedName": { + "type": "std::string", "id": 1, - "offset": 104, + "offset": 80, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 920323453 + "hash": 1805208228 }, - "m_actions": { - "type": "class SharedPointer", + "m_playerLevel": { + "type": "int", "id": 2, "offset": 112, "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1380578687 - }, - "m_stageRelationships": { - "type": "class SharedPointer", - "id": 3, - "offset": 128, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 499983354 - }, - "m_cameras": { - "type": "std::string", - "id": 4, - "offset": 152, - "flags": 131079, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 3217341687 - }, - "m_altcameras": { - "type": "std::string", - "id": 5, - "offset": 176, - "flags": 131079, - "container": "Vector", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 1882980152 + "hash": 743117695 }, - "m_bShowDefeatedText": { - "type": "bool", - "id": 6, - "offset": 232, + "m_badgeCount": { + "type": "int", + "id": 3, + "offset": 116, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2068996589 + "hash": 265710774 }, - "m_bForceStageToWaitOnAnimation": { - "type": "bool", - "id": 7, - "offset": 233, + "m_school": { + "type": "unsigned int", + "id": 4, + "offset": 120, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2071596205 + "hash": 1152268885 }, - "m_animation": { + "m_lastBadgeName": { "type": "std::string", - "id": 8, - "offset": 200, + "id": 5, + "offset": 128, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3431428731 + "hash": 3502394755 } } }, - "1161498678": { - "name": "class ReqCombatHealth", + "1161495606": { + "name": "class ReqCombatHealth*", "bases": [ "ConditionalSpellEffectRequirement", "Requirement", "PropertyClass" ], - "hash": 1161498678, + "hash": 1161495606, "properties": { "m_applyNOT": { "type": "bool", @@ -495157,190 +266726,169 @@ } } }, - "1161381568": { - "name": "class Mail*", + "319646587": { + "name": "class ClientCreatePipCinematicActorsFromResult*", "bases": [ + "CreatePipCinematicActorsFromResult", + "ActorCinematicAction", + "CinematicAction", "PropertyClass" ], - "hash": 1161381568, + "hash": 319646587, "properties": { - "m_mailId": { - "type": "gid", + "m_timeOffset": { + "type": "float", "id": 0, - "offset": 80, - "flags": 31, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 703697224 + "hash": 2237098605 }, - "m_timeStamp": { - "type": "unsigned __int64", + "m_actor": { + "type": "std::string", "id": 1, - "offset": 72, - "flags": 31, + "offset": 80, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 933557677 + "hash": 2285866132 }, - "m_senderId": { - "type": "gid", + "m_newActorName": { + "type": "std::string", "id": 2, - "offset": 88, - "flags": 31, + "offset": 120, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 814458086 - }, - "m_recipientId": { - "type": "gid", - "id": 3, - "offset": 96, - "flags": 31, + "hash": 2029131039 + } + } + }, + "1161438416": { + "name": "class WhirlyBurlyGameInfo*", + "bases": [ + "PropertyClass" + ], + "hash": 1161438416, + "properties": { + "m_gameID": { + "type": "unsigned int", + "id": 0, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2065780840 + "hash": 680439828 }, - "m_messageType": { - "type": "int", - "id": 4, - "offset": 104, - "flags": 31, + "m_bluePlayerGID": { + "type": "gid", + "id": 1, + "offset": 80, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1531535105 + "hash": 253380865 }, - "m_messageData": { + "m_bluePackedName": { "type": "std::string", - "id": 5, - "offset": 112, - "flags": 31, + "id": 2, + "offset": 88, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3028633722 + "hash": 1812461836 }, - "m_messageFlags": { - "type": "int", - "id": 6, - "offset": 108, - "flags": 31, + "m_orangePlayerGID": { + "type": "gid", + "id": 3, + "offset": 120, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1128617708 + "hash": 1870113109 }, - "m_expireDuration": { - "type": "unsigned int", - "id": 7, - "offset": 144, - "flags": 31, + "m_orangePackedName": { + "type": "std::string", + "id": 4, + "offset": 128, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2308711904 - } - } - }, - "72039": { - "name": "gid", - "bases": [], - "hash": 72039, - "properties": {} - }, - "1552631708": { - "name": "class ReqHasShadowMagic*", - "bases": [ - "Requirement", - "PropertyClass" - ], - "hash": 1552631708, - "properties": { - "m_applyNOT": { - "type": "bool", - "id": 0, - "offset": 72, - "flags": 31, + "hash": 3625018336 + }, + "m_redPlayerGID": { + "type": "gid", + "id": 5, + "offset": 160, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1746328074, - "enum_options": { - "__DEFAULT": 0 - } + "hash": 406170260 }, - "m_operator": { - "type": "enum Requirement::Operator", - "id": 1, - "offset": 76, - "flags": 2097183, + "m_redPackedName": { + "type": "std::string", + "id": 6, + "offset": 168, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2672792317, - "enum_options": { - "ROP_AND": 0, - "ROP_OR": 1, - "__DEFAULT": "ROP_AND" - } + "hash": 2559544575 } } }, - "392209268": { - "name": "class CombatGardeningXPEffectInfo*", + "1607671953": { + "name": "class ChatDiagnostics", "bases": [ - "GameEffectInfo", "PropertyClass" ], - "hash": 392209268, + "hash": 1607671953, "properties": { - "m_effectName": { + "m_textData": { "type": "std::string", "id": 0, "offset": 72, "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2029161513 - }, - "m_xpPercent": { - "type": "int", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 755316563 + "hash": 2390069786 } } }, - "1160849771": { - "name": "class RatingBadgeInfo", + "2044006224": { + "name": "class ClientFloatingTextCinematicAction", "bases": [ + "FloatingTextCinematicAction", + "ActorCinematicAction", + "CinematicAction", "PropertyClass" ], - "hash": 1160849771, + "hash": 2044006224, "properties": { - "m_badgeName": { - "type": "std::string", + "m_timeOffset": { + "type": "float", "id": 0, "offset": 72, "flags": 7, @@ -495348,39 +266896,39 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 3002948047 + "hash": 2237098605 }, - "m_cost": { - "type": "int", + "m_actor": { + "type": "std::string", "id": 1, - "offset": 104, + "offset": 80, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 219280307 + "hash": 2285866132 }, - "m_ingredients": { - "type": "class Ingredient*", + "m_stringTableEntry": { + "type": "std::string", "id": 2, - "offset": 112, + "offset": 120, "flags": 7, - "container": "List", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1061809494 + "pointer": false, + "hash": 2181170604 } } }, - "1961304732": { - "name": "class ToolTipWindow", + "766121336": { + "name": "class SharedPointer", "bases": [ "Window", "PropertyClass" ], - "hash": 1961304732, + "hash": 766121336, "properties": { "m_sName": { "type": "std::string", @@ -495397,7 +266945,7 @@ "type": "class SharedPointer", "id": 1, "offset": 112, - "flags": 65671, + "flags": 65667, "container": "Vector", "dynamic": true, "singleton": false, @@ -495595,98 +267143,47 @@ } } }, - "26754": { - "name": "bf8", - "bases": [], - "hash": 26754, - "properties": {} - }, - "392208948": { - "name": "class CombatGardeningXPEffectInfo", + "1606967184": { + "name": "class SharedPointer", "bases": [ - "GameEffectInfo", + "CinematicAction", "PropertyClass" ], - "hash": 392208948, + "hash": 1606967184, "properties": { - "m_effectName": { - "type": "std::string", + "m_timeOffset": { + "type": "float", "id": 0, "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2029161513 - }, - "m_xpPercent": { - "type": "int", - "id": 1, - "offset": 104, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 755316563 + "hash": 2237098605 } } }, - "1160667979": { - "name": "class ArenaBonusPointsLootInfo", + "2042546468": { + "name": "class ArenaMatchResults*", "bases": [ - "LootInfo", - "LootInfoBase", "PropertyClass" ], - "hash": 1160667979, + "hash": 2042546468, "properties": { - "m_lootType": { - "type": "enum LootInfo::LOOT_TYPE", + "m_matchID": { + "type": "gid", "id": 0, "offset": 72, - "flags": 2097183, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1591891442, - "enum_options": { - "LOOT_TYPE_NONE": 0, - "LOOT_TYPE_GOLD": 1, - "LOOT_TYPE_MANA": 2, - "LOOT_TYPE_ITEM": 3, - "LOOT_TYPE_TREASURE_CARD": 4, - "LOOT_TYPE_MAGIC_XP": 5, - "LOOT_TYPE_ADD_SPELL": 6, - "LOOT_TYPE_MAX_HEALTH": 7, - "LOOT_TYPE_MAX_GOLD": 8, - "LOOT_TYPE_MAX_MANA": 9, - "LOOT_TYPE_MAX_POTION": 10, - "LOOT_TYPE_TRAINING_POINTS": 11, - "LOOT_TYPE_RECIPE": 12, - "LOOT_TYPE_CRAFTING_SLOT": 13, - "LOOT_TYPE_REAGENT": 14, - "LOOT_TYPE_PETSNACK": 15, - "LOOT_TYPE_GARDENING_XP": 16, - "LOOT_TYPE_PET_XP": 17, - "LOOT_TYPE_TREASURE_TABLE": 18, - "LOOT_TYPE_ARENA_POINTS": 19, - "LOOT_TYPE_ARENA_BONUS_POINTS": 20, - "LOOT_TYPE_GROUP": 21, - "LOOT_TYPE_FISHING_XP": 22, - "LOOT_TYPE_EVENT_CURRENCY_1": 24, - "LOOT_TYPE_EVENT_CURRENCY_2": 25, - "LOOT_TYPE_PVP_CURRENCY": 26, - "LOOT_TYPE_PVP_CURRENCY_BONUS": 27, - "LOOT_TYPE_PVP_TOURNEY_CURRENCY": 28, - "LOOT_TYPE_PVP_TOURNEY_CURRENCY_BONUS": 29, - "LOOT_TYPE_FURNITURE_ESSENCE": 30 - } + "hash": 1757621298 }, - "m_arenaBonusPointsAmount": { - "type": "int", + "m_matchNameID": { + "type": "unsigned int", "id": 1, "offset": 80, "flags": 31, @@ -495694,69 +267191,96 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 774521529 - } - } - }, - "1554510971": { - "name": "class ClientTutorial*", - "bases": [ - "PropertyClass" - ], - "hash": 1554510971, - "properties": { - "m_stage": { - "type": "unsigned short", - "id": 0, - "offset": 74, - "flags": 7, + "hash": 1751361288 + }, + "m_matchResolution": { + "type": "int", + "id": 2, + "offset": 84, + "flags": 31, "container": "Static", "dynamic": false, - "singleton": true, + "singleton": false, "pointer": false, - "hash": 1363685500 + "hash": 1481862043 + }, + "m_actorList": { + "type": "class SharedPointer", + "id": 3, + "offset": 88, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2087966079 + }, + "m_teamResults": { + "type": "class MatchTeamResult", + "id": 4, + "offset": 104, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2421530763 + }, + "m_timeOutDraw": { + "type": "bool", + "id": 5, + "offset": 120, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 582264616 } } }, - "1961426403": { - "name": "class TabDisplayPriority*", + "322077384": { + "name": "class SharedPointer", "bases": [ + "ActorCinematicAction", + "CinematicAction", "PropertyClass" ], - "hash": 1961426403, + "hash": 322077384, "properties": { - "m_uTab": { - "type": "unsigned int", + "m_timeOffset": { + "type": "float", "id": 0, "offset": 72, - "flags": 31, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 431299609 + "hash": 2237098605 }, - "m_uPriority": { - "type": "unsigned int", + "m_actor": { + "type": "std::string", "id": 1, - "offset": 76, - "flags": 31, + "offset": 80, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 374455588 + "hash": 2285866132 } } }, - "1553752133": { - "name": "class FidgetStateInfo", + "765032990": { + "name": "class SharedPointer", "bases": [ + "GameEffectTemplate", "PropertyClass" ], - "hash": 1553752133, + "hash": 765032990, "properties": { - "m_idleName": { + "m_effectName": { "type": "std::string", "id": 0, "offset": 72, @@ -495765,9 +267289,9 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 2107593594 + "hash": 2029161513 }, - "m_fidgetName": { + "m_effectCategory": { "type": "std::string", "id": 1, "offset": 104, @@ -495776,229 +267300,222 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 2693632335 + "hash": 1852673222 }, - "m_fidgetsPerMinute": { - "type": "float", + "m_sortOrder": { + "type": "int", "id": 2, - "offset": 136, + "offset": 148, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1517617078 + "hash": 1411218206 }, - "m_fidgetSound": { - "type": "std::string", + "m_duration": { + "type": "double", "id": 3, - "offset": 144, - "flags": 131079, + "offset": 192, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2312384855 - } - } - }, - "392858099": { - "name": "class ReqSchoolOfFocus", - "bases": [ - "Requirement", - "PropertyClass" - ], - "hash": 392858099, - "properties": { - "m_applyNOT": { + "hash": 2727932435 + }, + "m_stackingCategories": { + "type": "std::string", + "id": 4, + "offset": 160, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1774497525 + }, + "m_isPersistent": { "type": "bool", - "id": 0, - "offset": 72, - "flags": 31, + "id": 5, + "offset": 153, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1746328074, - "enum_options": { - "__DEFAULT": 0 - } + "hash": 923861920 }, - "m_operator": { - "type": "enum Requirement::Operator", - "id": 1, - "offset": 76, - "flags": 2097183, + "m_bIsOnPet": { + "type": "bool", + "id": 6, + "offset": 154, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2672792317, - "enum_options": { - "ROP_AND": 0, - "ROP_OR": 1, - "__DEFAULT": "ROP_AND" - } + "hash": 522593303 }, - "m_magicSchool": { - "type": "std::string", - "id": 2, - "offset": 80, - "flags": 31, + "m_isPublic": { + "type": "bool", + "id": 7, + "offset": 152, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1597012900 - } - } - }, - "1160854891": { - "name": "class RatingBadgeInfo*", - "bases": [ - "PropertyClass" - ], - "hash": 1160854891, - "properties": { - "m_badgeName": { + "hash": 1728439822 + }, + "m_visualEffectAddName": { "type": "std::string", - "id": 0, - "offset": 72, + "id": 8, + "offset": 200, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3002948047 + "hash": 3382086694 }, - "m_cost": { - "type": "int", - "id": 1, - "offset": 104, + "m_visualEffectRemoveName": { + "type": "std::string", + "id": 9, + "offset": 232, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 219280307 + "hash": 1541697323 }, - "m_ingredients": { - "type": "class Ingredient*", - "id": 2, - "offset": 112, + "m_onAddFunctorName": { + "type": "std::string", + "id": 10, + "offset": 280, "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1061809494 - } - } - }, - "569058": { - "name": "bui3", - "bases": [], - "hash": 569058, - "properties": {} - }, - "1553710977": { - "name": "class RidableBehavior", - "bases": [ - "RidableBehaviorBase", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1553710977, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 + "hash": 1561843107 }, - "m_assignedPlayers": { - "type": "gid", - "id": 1, - "offset": 112, - "flags": 65543, - "container": "Vector", - "dynamic": true, + "m_onRemoveFunctorName": { + "type": "std::string", + "id": 11, + "offset": 312, + "flags": 7, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 1913541510 - } - } - }, - "392694259": { - "name": "class ReqSchoolOfFocus*", - "bases": [ - "Requirement", - "PropertyClass" - ], - "hash": 392694259, - "properties": { - "m_applyNOT": { - "type": "bool", - "id": 0, - "offset": 72, - "flags": 31, + "hash": 2559017864 + }, + "m_stackingRule": { + "type": "enum STACKING_RULE", + "id": 12, + "offset": 144, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1746328074, + "hash": 431568889, "enum_options": { - "__DEFAULT": 0 + "STACKING_ALLOWED": 0, + "STACKING_NOSTACK": 1, + "STACKING_REPLACE": 2 } }, - "m_operator": { - "type": "enum Requirement::Operator", - "id": 1, - "offset": 76, - "flags": 2097183, + "m_sRace": { + "type": "std::string", + "id": 13, + "offset": 360, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2672792317, - "enum_options": { - "ROP_AND": 0, - "ROP_OR": 1, - "__DEFAULT": "ROP_AND" - } + "hash": 2306580681 }, - "m_magicSchool": { + "m_fScale": { + "type": "float", + "id": 14, + "offset": 392, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 503137701 + }, + "m_nPrimaryColor": { + "type": "int", + "id": 15, + "offset": 396, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 310334923 + }, + "m_nSecondaryColor": { + "type": "int", + "id": 16, + "offset": 400, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 516938671 + }, + "m_nPatternOption": { + "type": "int", + "id": 17, + "offset": 404, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 413195679 + }, + "m_nGeometryOption": { + "type": "int", + "id": 18, + "offset": 408, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 676541869 + }, + "m_sNaturalAttack": { "type": "std::string", - "id": 2, - "offset": 80, - "flags": 31, + "id": 19, + "offset": 416, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1597012900 + "hash": 2131867453 } } }, - "536290": { - "name": "bui2", - "bases": [], - "hash": 536290, - "properties": {} - }, - "1963225128": { - "name": "class ClearHangingEffectsCinematicAction*", + "2042186845": { + "name": "class ClientShadowCreatureIdleCinematicAction", "bases": [ + "ShadowCreatureIdleCinematicAction", "ActorCinematicAction", "CinematicAction", "PropertyClass" ], - "hash": 1963225128, + "hash": 2042186845, "properties": { "m_timeOffset": { "type": "float", @@ -496024,17 +267541,16 @@ } } }, - "1161495606": { - "name": "class ReqCombatHealth*", + "320579002": { + "name": "class TempStartingPipEffectInfo*", "bases": [ - "ConditionalSpellEffectRequirement", - "Requirement", + "GameEffectInfo", "PropertyClass" ], - "hash": 1161495606, + "hash": 320579002, "properties": { - "m_applyNOT": { - "type": "bool", + "m_effectName": { + "type": "std::string", "id": 0, "offset": 72, "flags": 31, @@ -496042,317 +267558,577 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 1746328074, - "enum_options": { - "__DEFAULT": 0 - } + "hash": 2029161513 }, - "m_operator": { - "type": "enum Requirement::Operator", + "m_pipsGiven": { + "type": "int", "id": 1, - "offset": 76, - "flags": 2097183, + "offset": 104, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2672792317, - "enum_options": { - "ROP_AND": 0, - "ROP_OR": 1, - "__DEFAULT": "ROP_AND" - } + "hash": 1346249167 }, - "m_targetType": { - "type": "enum ConditionalSpellEffectRequirement::RequirementTarget", + "m_powerPipsGiven": { + "type": "int", "id": 2, - "offset": 80, - "flags": 2097159, + "offset": 108, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2547737902, - "enum_options": { - "RT_Caster": 0, - "RT_Target": 1 - } + "hash": 377908508 + } + } + }, + "764671794": { + "name": "class GamebryoClientLeashBehavior", + "bases": [ + "ClientLeashBehavior", + "LeashBehavior", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 764671794, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 }, - "m_fMinPercent": { + "m_ownerGid": { + "type": "gid", + "id": 1, + "offset": 128, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1765088663 + }, + "m_radius": { "type": "float", - "id": 3, - "offset": 88, + "id": 2, + "offset": 136, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 262693330 + "hash": 989410271 }, - "m_fMaxPercent": { + "m_angle": { "type": "float", + "id": 3, + "offset": 140, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 878748702 + }, + "m_leashType": { + "type": "enum LeashType", "id": 4, - "offset": 92, + "offset": 144, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 643246740 + "hash": 2170708051, + "enum_options": { + "LLT_Rigid": 0, + "LLT_Elastic": 1 + } + }, + "m_alwaysDisplay": { + "type": "bool", + "id": 5, + "offset": 161, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2071781402 } } }, - "1961941674": { - "name": "class FishBehaviorTemplate*", + "1162880007": { + "name": "class DerbyRemoveAction*", "bases": [ - "BehaviorTemplate", + "DerbyEffect", "PropertyClass" ], - "hash": 1961941674, + "hash": 1162880007, "properties": { - "m_behaviorName": { - "type": "std::string", + "m_buffType": { + "type": "enum DerbyTalentBuffType", "id": 0, - "offset": 72, - "flags": 7, + "offset": 92, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3130754092 + "hash": 1149251982, + "enum_options": { + "Buff": 0, + "Debuff": 1, + "Neither": 2 + } }, - "m_speed": { - "type": "float", + "m_kTarget": { + "type": "enum DerbyTargetType", "id": 1, - "offset": 120, - "flags": 7, + "offset": 96, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 900164744 + "hash": 1807803351, + "enum_options": { + "kTargetInFront": 0, + "kTargetBehind": 1, + "kTargetFirst": 2, + "kTargetSelf": 3, + "kTargetAll": 4, + "kTargetLast": 5 + } }, - "m_schoolName": { - "type": "std::string", + "m_nDuration": { + "type": "int", "id": 2, - "offset": 128, - "flags": 7, + "offset": 104, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3385349572 + "hash": 1110167982 }, - "m_rank": { - "type": "int", + "m_effectID": { + "type": "unsigned int", "id": 3, - "offset": 160, - "flags": 7, + "offset": 88, + "flags": 24, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 219803942 + "hash": 2347630439 }, - "m_holidayFlags": { + "m_imageFilename": { "type": "std::string", "id": 4, - "offset": 168, - "flags": 7, + "offset": 112, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1506904690 + "hash": 2813328063 }, - "m_minimumSize": { - "type": "float", + "m_iconIndex": { + "type": "unsigned int", "id": 5, - "offset": 200, - "flags": 7, + "offset": 144, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 751206574 + "hash": 1265133262 }, - "m_maximumSize": { - "type": "float", + "m_soundOnActivate": { + "type": "std::string", "id": 6, - "offset": 204, - "flags": 7, + "offset": 152, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 424567216 + "hash": 1956929714 }, - "m_isPredator": { - "type": "int", + "m_soundOnTarget": { + "type": "std::string", "id": 7, - "offset": 208, - "flags": 7, + "offset": 184, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 952748183 + "hash": 3444214056 }, - "m_percentChanceToTurn": { - "type": "float", + "m_targetParticleEffect": { + "type": "std::string", "id": 8, - "offset": 212, - "flags": 7, + "offset": 216, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 144771798 + "hash": 3048234723 }, - "m_predatorRange": { - "type": "float", + "m_overheadMessage": { + "type": "std::string", "id": 9, - "offset": 216, - "flags": 7, + "offset": 248, + "flags": 8388639, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2044238245 + "hash": 1701018190 }, - "m_shadowFishKFM": { - "type": "std::string", + "m_requirements": { + "type": "class RequirementList", "id": 10, - "offset": 224, - "flags": 131079, + "offset": 280, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2042617449 + "hash": 2840988582 }, - "m_alphaLevel": { - "type": "float", + "m_nActionType": { + "type": "enum DerbyActionTargetType", "id": 11, - "offset": 256, - "flags": 7, + "offset": 376, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1776159605 + "hash": 3401355432, + "enum_options": { + "Jump": 0, + "Duck": 1, + "AllExceptCheer": 2, + "Cheer": 3 + } + } + } + }, + "320084515": { + "name": "class PromoRewardList", + "bases": [ + "PropertyClass" + ], + "hash": 320084515, + "properties": { + "m_promoRewards": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 3146833727 + } + } + }, + "1161776452": { + "name": "class std::vector >", + "bases": [], + "hash": 1161776452, + "properties": {} + }, + "1607677073": { + "name": "class ChatDiagnostics*", + "bases": [ + "PropertyClass" + ], + "hash": 1607677073, + "properties": { + "m_textData": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2390069786 + } + } + }, + "2042504841": { + "name": "enum CountBasedSpellEffect::CountBasedType", + "bases": [], + "hash": 2042504841, + "properties": {} + }, + "321241350": { + "name": "class CombatResult*", + "bases": [ + "PropertyClass" + ], + "hash": 321241350, + "properties": { + "m_resultType": { + "type": "enum CombatResult::kResultType", + "id": 0, + "offset": 72, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1482430415, + "enum_options": { + "kResult_StartSpellCast": 0, + "kResult_StartSpellNoCast": 1, + "kResult_Focus": 2, + "kResult_Discard": 3, + "kResult_Flee": 4, + "kResult_HangingEffectAdded": 5, + "kResult_ProtectedHangingEffectAdded": 6, + "kResult_RemovingHangingEffect": 7, + "kResult_HangingEffectRemovedIncoming": 8, + "kResult_HangingEffectRemovedIncomingFast": 9, + "kResult_HangingEffectRemovedIncomingDetonated": 10, + "kResult_HangingEffectRemovedOutgoing": 11, + "kResult_HangingEffectRemovedOutgoingFast": 12, + "kResult_HangingEffectProcessed": 13, + "kResult_HangingEffectRoundsModified": 14, + "kResult_Bounce": 15, + "kResult_TakeDamage": 16, + "kResult_HealDamage": 17, + "kResult_TakeDamageOverTime": 18, + "kResult_HealDamageOverTime": 19, + "kResult_StealTake": 20, + "kResult_StealGive": 21, + "kResult_AbsorbDamage": 22, + "kResult_AbsorbHeal": 110, + "kResult_Miss": 23, + "kResult_Hit": 24, + "kResult_CriticalBlocked": 25, + "kResult_CriticalHit": 26, + "kResult_GlobalEffectProcessed": 27, + "kResult_GlobalEffectAdded": 28, + "kResult_GlobalEffectRemoved": 29, + "kResult_PlayerDied": 30, + "kResult_CreatureSummoned": 31, + "kResult_TeleportPlayer": 32, + "kResult_PipsModified": 33, + "kResult_PowerPipsModified": 34, + "kResult_ShadowPipsModified": 35, + "kResult_Stunned": 36, + "kResult_Unstunned": 37, + "kResult_Polymorphed": 38, + "kResult_UnPolymorphed": 39, + "kResult_Reshuffle": 40, + "kResult_SpellDone": 41, + "kResult_ModifyHate": 42, + "kResult_MindControlled": 43, + "kResult_UnMindControlled": 44, + "kResult_MindControlImmune": 45, + "kResult_AddAura": 46, + "kResult_RemoveAura": 47, + "kResult_BuffDebuff": 48, + "kResult_Resurrected": 49, + "kResult_DamageTypeChanged": 50, + "kResult_CloakedEffectAdded": 51, + "kResult_RevealCloakedEffect": 52, + "kResult_StunResist": 53, + "kResult_StunResistFailed": 54, + "kResult_StunImmune": 55, + "kResult_ArmorPierced": 56, + "kResult_AfterlifeEffectsProcessed": 57, + "kResult_AfterlifeEffectsAdded": 58, + "kResult_AfterlifeEffectsRemoved": 59, + "kResult_EffectFailed": 60, + "kResult_StartAOE": 61, + "kResult_StopAOE": 62, + "kResult_StartAOEAct": 63, + "kResult_StopAOEAct": 64, + "kResult_CombatTriggerListAdded": 65, + "kResult_CombatTriggerListRemoved": 66, + "kResult_AddBacklashResult": 72, + "kResult_RemoveBacklashResult": 73, + "kResult_AddShadowSpellEffect": 67, + "kResult_ChangeShadowSelfEffect": 71, + "kResult_RemoveShadowSpellEffect": 68, + "kResult_ShadowSelfEffect": 69, + "kResult_UnShadowSelfEffect": 70, + "kResult_ModifyBacklash": 74, + "kResult_AddIntercept": 75, + "kResult_RemoveIntercept": 76, + "kResult_TakeInterceptDamage": 77, + "kResult_InterceptedDamage": 78, + "kResult_InterceptedDamageThisRound": 79, + "kResult_IncreaseShadowCreatureLevel": 81, + "kResult_DecreaseShadowCreatureLevel": 82, + "kResult_SetShadowCreatureLevel": 83, + "kResult_RemoveShadowCreature": 84, + "kResult_ShadowCreatureAttack": 85, + "kResult_PostActionProcess": 86, + "kResult_CreatureSpawned": 88, + "kResult_HangingEffectRemovedProtection": 90, + "kResult_planningPhasePipSync": 97, + "kResult_pipConversionRefund": 96, + "kResult_FirstPlayerSwitched": 98, + "kResult_Confused": 99, + "kResult_Unconfused": 100, + "kResult_Clued": 102, + "kResult_ClueImmune": 103, + "kResult_PetCasted": 112, + "kResult_CastSigilSpell": 113, + "kResult_AddSpellToDeck": 114, + "kResult_SetTopTeam": 115, + "kResult_SetBottomTeam": 116, + "kResult_ClearTopTeam": 117, + "kResult_ClearBottomTeam": 118, + "kResult_StartBackRowCast": 119, + "kResult_StopBackRowCast": 120, + "kResult_SchoolPipsModified": 121, + "kResult_None": 122 + } }, - "m_initialBiteChance": { - "type": "float", - "id": 12, - "offset": 260, + "m_participantSubCircle": { + "type": "int", + "id": 1, + "offset": 76, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1799125575 + "hash": 1360563125 }, - "m_incrementalBiteChance": { - "type": "float", - "id": 13, - "offset": 264, + "m_effectType": { + "type": "int", + "id": 2, + "offset": 80, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 282955535 + "hash": 531703753 }, - "m_baseLength": { - "type": "float", - "id": 14, - "offset": 268, + "m_effectAmount": { + "type": "int", + "id": 3, + "offset": 84, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 456346324 + "hash": 498226203 }, - "m_fishingXP": { - "type": "int", - "id": 15, - "offset": 272, + "m_spellTemplateID": { + "type": "unsigned int", + "id": 4, + "offset": 88, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 319909002 + "hash": 585567702 }, - "m_biteSeconds": { - "type": "float", - "id": 16, - "offset": 276, + "m_spellBaseOverrideTemplateID": { + "type": "unsigned int", + "id": 5, + "offset": 92, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2219559882 + "hash": 2024236913 }, - "m_iconIndex": { + "m_targetSubCircle": { "type": "int", - "id": 17, - "offset": 280, + "id": 6, + "offset": 96, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1053730811 + "hash": 1278786653 }, - "m_fishtankType": { - "type": "int", - "id": 18, - "offset": 284, + "m_durationModifier": { + "type": "float", + "id": 7, + "offset": 192, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1397512660 + "hash": 753259116 }, - "m_fishSalePrice": { - "type": "int", - "id": 19, - "offset": 288, + "m_petCasted": { + "type": "bool", + "id": 8, + "offset": 196, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 274861692 + "hash": 1697247120 }, - "m_rarity": { + "m_petCastedTarget": { "type": "int", - "id": 20, - "offset": 292, + "id": 9, + "offset": 200, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 899712213 + "hash": 1344025214 + }, + "m_cloaked": { + "type": "bool", + "id": 10, + "offset": 204, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 7349510 } } }, - "536698": { - "name": "class SharedPointer", + "322820028": { + "name": "class SharedPointer", "bases": [ - "PathBehaviorTemplate::Action", + "ActorCinematicAction", + "CinematicAction", "PropertyClass" ], - "hash": 536698, + "hash": 322820028, "properties": { - "m_nPathID": { - "type": "gid", + "m_timeOffset": { + "type": "float", "id": 0, "offset": 72, "flags": 7, @@ -496360,10 +268136,10 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 214382368 + "hash": 2237098605 }, - "m_nNodeID": { - "type": "int", + "m_actor": { + "type": "std::string", "id": 1, "offset": 80, "flags": 7, @@ -496371,1540 +268147,1369 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 152152635, - "enum_options": { - "__DEFAULT": 4294967295 - } - }, - "m_nPriority": { - "type": "int", - "id": 2, - "offset": 84, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1515251530, - "enum_options": { - "__DEFAULT": 100 - } - }, - "m_nChance": { - "type": "int", - "id": 3, - "offset": 88, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1860748394, - "enum_options": { - "__DEFAULT": 50 - } + "hash": 2285866132 } } }, - "1553757253": { - "name": "class FidgetStateInfo*", + "335952591": { + "name": "class std::vector >", + "bases": [], + "hash": 335952591, + "properties": {} + }, + "329052425": { + "name": "class IslandSpaceOption", "bases": [ + "ServiceOptionBase", "PropertyClass" ], - "hash": 1553757253, + "hash": 329052425, "properties": { - "m_idleName": { + "m_serviceName": { "type": "std::string", "id": 0, "offset": 72, - "flags": 7, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2107593594 + "hash": 2206028813 }, - "m_fidgetName": { + "m_iconKey": { "type": "std::string", "id": 1, - "offset": 104, - "flags": 7, + "offset": 168, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2693632335 + "hash": 2457138637 }, - "m_fidgetsPerMinute": { - "type": "float", + "m_displayKey": { + "type": "std::string", "id": 2, - "offset": 136, - "flags": 7, + "offset": 104, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1517617078 + "hash": 3023276954 }, - "m_fidgetSound": { - "type": "std::string", + "m_serviceIndex": { + "type": "unsigned int", "id": 3, - "offset": 144, - "flags": 131079, + "offset": 204, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2312384855 - } - } - }, - "393110686": { - "name": "class CommonElementTable", - "bases": [ - "PropertyClass" - ], - "hash": 393110686, - "properties": { - "m_hairColorList": { - "type": "class CharacterElement*", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Vector", - "dynamic": true, + "hash": 2103126710 + }, + "m_forceInteract": { + "type": "bool", + "id": 4, + "offset": 200, + "flags": 31, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1900063063 + "pointer": false, + "hash": 1705789564 } } }, - "1161438416": { - "name": "class WhirlyBurlyGameInfo*", + "327136487": { + "name": "class SharedPointer", "bases": [ "PropertyClass" ], - "hash": 1161438416, + "hash": 327136487, "properties": { - "m_gameID": { - "type": "unsigned int", + "m_filePath": { + "type": "std::string", "id": 0, "offset": 72, - "flags": 7, + "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 680439828 + "hash": 3116244552 }, - "m_bluePlayerGID": { - "type": "gid", + "m_shotLimit": { + "type": "int", "id": 1, - "offset": 80, + "offset": 136, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 253380865 + "hash": 1999036567 }, - "m_bluePackedName": { - "type": "std::string", + "m_levelIndex": { + "type": "unsigned int", "id": 2, - "offset": 88, + "offset": 140, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1812461836 + "hash": 708309693 }, - "m_orangePlayerGID": { - "type": "gid", + "m_perfectScore": { + "type": "int", "id": 3, - "offset": 120, + "offset": 144, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1870113109 + "hash": 147156703 }, - "m_orangePackedName": { + "m_flyOverCamera": { "type": "std::string", "id": 4, - "offset": 128, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3625018336 - }, - "m_redPlayerGID": { - "type": "gid", - "id": 5, - "offset": 160, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 406170260 - }, - "m_redPackedName": { - "type": "std::string", - "id": 6, - "offset": 168, + "offset": 152, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2559544575 + "hash": 3580817515 } } }, - "1961941634": { - "name": "class FishBehaviorTemplate", + "326041796": { + "name": "enum HousingTextureType", + "bases": [], + "hash": 326041796, + "properties": {} + }, + "324600236": { + "name": "class GardenLevelControl*", "bases": [ - "BehaviorTemplate", + "Window", "PropertyClass" ], - "hash": 1961941634, + "hash": 324600236, "properties": { - "m_behaviorName": { + "m_sName": { "type": "std::string", "id": 0, - "offset": 72, - "flags": 7, + "offset": 80, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3130754092 + "hash": 2306437263 }, - "m_speed": { - "type": "float", + "m_Children": { + "type": "class SharedPointer", "id": 1, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, + "offset": 112, + "flags": 65667, + "container": "Vector", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 900164744 + "pointer": true, + "hash": 2621225959 }, - "m_schoolName": { - "type": "std::string", + "m_Style": { + "type": "unsigned int", "id": 2, - "offset": 128, - "flags": 7, + "offset": 152, + "flags": 1048583, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3385349572 + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "SCALE_CHILDREN": 2, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "FOCUS_LOCKED": 64, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152 + } }, - "m_rank": { - "type": "int", + "m_Flags": { + "type": "unsigned int", "id": 3, - "offset": 160, - "flags": 7, + "offset": 156, + "flags": 1048583, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 219803942 + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } }, - "m_holidayFlags": { - "type": "std::string", + "m_Window": { + "type": "class Rect", "id": 4, - "offset": 168, - "flags": 7, + "offset": 160, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1506904690 + "hash": 3105139380 }, - "m_minimumSize": { + "m_fTargetAlpha": { "type": "float", "id": 5, - "offset": 200, - "flags": 7, + "offset": 212, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 751206574 + "hash": 1809129834 }, - "m_maximumSize": { + "m_fDisabledAlpha": { "type": "float", "id": 6, - "offset": 204, - "flags": 7, + "offset": 216, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 424567216 + "hash": 1389987675 }, - "m_isPredator": { - "type": "int", + "m_fAlpha": { + "type": "float", "id": 7, "offset": 208, - "flags": 7, + "flags": 65671, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 952748183 + "hash": 482130755 }, - "m_percentChanceToTurn": { - "type": "float", + "m_pWindowStyle": { + "type": "class SharedPointer", "id": 8, - "offset": 212, - "flags": 7, + "offset": 232, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 144771798 + "pointer": true, + "hash": 3623628394 }, - "m_predatorRange": { - "type": "float", + "m_sHelp": { + "type": "std::wstring", "id": 9, - "offset": 216, - "flags": 7, + "offset": 248, + "flags": 4194439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2044238245 + "hash": 2102211316 }, - "m_shadowFishKFM": { + "m_sScript": { "type": "std::string", "id": 10, - "offset": 224, - "flags": 131079, + "offset": 352, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2042617449 + "hash": 1846695875 }, - "m_alphaLevel": { - "type": "float", + "m_Offset": { + "type": "class Point", "id": 11, - "offset": 256, - "flags": 7, + "offset": 192, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1776159605 + "hash": 3389835433 }, - "m_initialBiteChance": { - "type": "float", + "m_Scale": { + "type": "class Point", "id": 12, - "offset": 260, - "flags": 7, + "offset": 200, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1799125575 + "hash": 2547159940 }, - "m_incrementalBiteChance": { - "type": "float", + "m_sTip": { + "type": "std::wstring", "id": 13, - "offset": 264, - "flags": 7, + "offset": 392, + "flags": 4194439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 282955535 + "hash": 1513510520 }, - "m_baseLength": { - "type": "float", + "m_BubbleList": { + "type": "class WindowBubble", "id": 14, - "offset": 268, - "flags": 7, - "container": "Static", - "dynamic": false, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 456346324 + "hash": 2587533771 }, - "m_fishingXP": { - "type": "int", + "m_ParentOffset": { + "type": "class Rect", "id": 15, - "offset": 272, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 319909002 - }, - "m_biteSeconds": { - "type": "float", - "id": 16, - "offset": 276, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2219559882 - }, - "m_iconIndex": { - "type": "int", - "id": 17, - "offset": 280, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1053730811 - }, - "m_fishtankType": { - "type": "int", - "id": 18, - "offset": 284, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1397512660 - }, - "m_fishSalePrice": { - "type": "int", - "id": 19, - "offset": 288, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 274861692 - }, - "m_rarity": { - "type": "int", - "id": 20, - "offset": 292, - "flags": 7, + "offset": 176, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 899712213 + "hash": 3091503757 } } }, - "667362": { - "name": "bui6", - "bases": [], - "hash": 667362, - "properties": {} - }, - "1555179373": { - "name": "class HousingGameHiScores", + "324040870": { + "name": "class HousingSignBehavior", "bases": [ + "HousingSignBehaviorBase", + "BehaviorInstance", "PropertyClass" ], - "hash": 1555179373, + "hash": 324040870, "properties": { - "m_playerName0": { - "type": "std::string", + "m_behaviorTemplateNameID": { + "type": "unsigned int", "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2243035545 - }, - "m_score0": { - "type": "unsigned short", - "id": 1, "offset": 104, - "flags": 7, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1494703316 + "hash": 223437287 }, - "m_playerName1": { + "m_packedName": { "type": "std::string", - "id": 2, + "id": 1, "offset": 112, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2243035546 - }, - "m_score1": { - "type": "unsigned short", - "id": 3, - "offset": 144, - "flags": 7, + "flags": 65543, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1494703317 + "hash": 1805208228 }, - "m_playerName2": { + "m_signText": { "type": "std::string", - "id": 4, - "offset": 152, - "flags": 7, + "id": 2, + "offset": 144, + "flags": 65543, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2243035547 - }, - "m_score2": { - "type": "unsigned short", - "id": 5, - "offset": 184, + "hash": 2920366641 + } + } + }, + "325273369": { + "name": "class AdventurePartyList*", + "bases": [ + "PropertyClass" + ], + "hash": 325273369, + "properties": { + "m_adventurePartyList": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 1494703318 + "pointer": true, + "hash": 2274288621 } } }, - "393452396": { - "name": "class QuickChatEntry*", + "324777766": { + "name": "class SharedPointer", "bases": [ + "WizItemTemplate", + "ItemTemplate", + "GameObjectTemplate", + "CoreTemplate", "PropertyClass" ], - "hash": 393452396, + "hash": 324777766, "properties": { - "m_chatID": { - "type": "unsigned int", + "m_behaviors": { + "type": "class BehaviorTemplate*", "id": 0, "offset": 72, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "Vector", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 531784794 + "pointer": true, + "hash": 1197808594 }, - "m_label": { + "m_objectName": { "type": "std::string", "id": 1, - "offset": 80, + "offset": 96, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2298819451 + "hash": 2154940147 }, - "m_text": { - "type": "std::string", + "m_templateID": { + "type": "unsigned int", "id": 2, - "offset": 112, - "flags": 7, + "offset": 128, + "flags": 16777223, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1717580128 + "hash": 1286746870 }, - "m_charAnim": { - "type": "std::string", + "m_visualID": { + "type": "unsigned int", "id": 3, - "offset": 144, + "offset": 132, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2402868926 + "hash": 1118778894 }, - "m_categoryMask": { - "type": "unsigned int", + "m_adjectiveList": { + "type": "std::string", "id": 4, - "offset": 176, + "offset": 248, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 2304824567 + "hash": 3195213318 }, - "m_dynFolder": { - "type": "int", + "m_exemptFromAOI": { + "type": "bool", "id": 5, - "offset": 180, + "offset": 240, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 510571201 + "hash": 1457879059 }, - "m_supportsMore": { - "type": "bool", + "m_displayName": { + "type": "std::string", "id": 6, - "offset": 184, - "flags": 7, + "offset": 168, + "flags": 8388615, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 902487766 + "hash": 2446900370 }, - "m_membersOnly": { - "type": "bool", + "m_description": { + "type": "std::string", "id": 7, - "offset": 185, - "flags": 7, + "offset": 136, + "flags": 8388615, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1051823616 + "hash": 1649374815 }, - "m_unlockKey": { - "type": "std::string", + "m_nObjectType": { + "type": "enum ObjectType", "id": 8, - "offset": 192, - "flags": 7, + "offset": 200, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3522694864 + "hash": 2118905880, + "enum_options": { + "OT_UNDEFINED": 0, + "OT_PLAYER": 1, + "OT_NPC": 2, + "OT_PROP": 3, + "OT_OBJECT": 4, + "OT_HOUSE": 5, + "OT_KEY": 6, + "OT_OLD_KEY": 7, + "OT_DEED": 8, + "OT_MAIL": 9, + "OT_RECIPE": 17, + "OT_EQUIP_HEAD": 10, + "OT_EQUIP_CHEST": 11, + "OT_EQUIP_LEGS": 12, + "OT_EQUIP_HANDS": 13, + "OT_EQUIP_FINGER": 14, + "OT_EQUIP_FEET": 15, + "OT_EQUIP_EAR": 16, + "OT_BUILDING_BLOCK": 18, + "OT_BUILDING_BLOCK_SOLID": 19, + "OT_GOLF": 20, + "OT_DOOR": 21, + "OT_PET": 22, + "OT_FABRIC": 23, + "OT_WINDOW": 24, + "OT_ROOF": 25, + "OT_HORSE": 26, + "OT_STRUCTURE": 27, + "OT_HOUSING_TEXTURE": 28, + "OT_PLANT": 29 + } }, - "m_faceAnim": { + "m_sIcon": { "type": "std::string", "id": 9, - "offset": 224, - "flags": 7, + "offset": 208, + "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3169175247 + "hash": 2306259831 }, - "m_sound": { - "type": "std::string", + "m_equipRequirements": { + "type": "class RequirementList*", "id": 10, - "offset": 256, + "offset": 280, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 2307644996 + "pointer": true, + "hash": 2762617226 }, - "m_childEntries": { - "type": "class SharedPointer", + "m_purchaseRequirements": { + "type": "class RequirementList*", "id": 11, "offset": 288, "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1678382163 - } - } - }, - "1962564119": { - "name": "class PipConversionLevelData*", - "bases": [ - "PropertyClass" - ], - "hash": 1962564119, - "properties": { - "m_minLevel": { - "type": "int", - "id": 0, - "offset": 88, - "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1496818518 + "pointer": true, + "hash": 3174641793 }, - "m_levelValues": { - "type": "class SharedPointer", - "id": 1, - "offset": 72, + "m_equipEffects": { + "type": "class GameEffectInfo*", + "id": 12, + "offset": 296, "flags": 7, "container": "List", "dynamic": true, "singleton": false, "pointer": true, - "hash": 3506866422 - } - } - }, - "1554511067": { - "name": "class ClientTutorial", - "bases": [ - "PropertyClass" - ], - "hash": 1554511067, - "properties": { - "m_stage": { - "type": "unsigned short", - "id": 0, - "offset": 74, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": true, - "pointer": false, - "hash": 1363685500 - } - } - }, - "393204394": { - "name": "class GameEffectInfo", - "bases": [ - "PropertyClass" - ], - "hash": 393204394, - "properties": { - "m_effectName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2029161513 - } - } - }, - "1162880007": { - "name": "class DerbyRemoveAction*", - "bases": [ - "DerbyEffect", - "PropertyClass" - ], - "hash": 1162880007, - "properties": { - "m_buffType": { - "type": "enum DerbyTalentBuffType", - "id": 0, - "offset": 92, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1149251982, - "enum_options": { - "Buff": 0, - "Debuff": 1, - "Neither": 2 - } - }, - "m_kTarget": { - "type": "enum DerbyTargetType", - "id": 1, - "offset": 96, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1807803351, - "enum_options": { - "kTargetInFront": 0, - "kTargetBehind": 1, - "kTargetFirst": 2, - "kTargetSelf": 3, - "kTargetAll": 4, - "kTargetLast": 5 - } - }, - "m_nDuration": { - "type": "int", - "id": 2, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1110167982 - }, - "m_effectID": { - "type": "unsigned int", - "id": 3, - "offset": 88, - "flags": 24, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2347630439 - }, - "m_imageFilename": { - "type": "std::string", - "id": 4, - "offset": 112, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2813328063 + "hash": 836628351 }, - "m_iconIndex": { - "type": "unsigned int", - "id": 5, - "offset": 144, - "flags": 31, + "m_baseCost": { + "type": "float", + "id": 13, + "offset": 312, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1265133262 + "hash": 1565352651 }, - "m_soundOnActivate": { - "type": "std::string", - "id": 6, - "offset": 152, - "flags": 131103, + "m_creditsCost": { + "type": "float", + "id": 14, + "offset": 320, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1956929714 + "hash": 805514974 }, - "m_soundOnTarget": { - "type": "std::string", - "id": 7, - "offset": 184, - "flags": 131103, + "m_avatarInfo": { + "type": "class AvatarItemInfoBase*", + "id": 15, + "offset": 328, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 3444214056 + "pointer": true, + "hash": 2627321299 }, - "m_targetParticleEffect": { + "m_avatarFlags": { "type": "std::string", - "id": 8, - "offset": 216, - "flags": 131103, + "id": 16, + "offset": 336, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2347762759 + }, + "m_itemLimit": { + "type": "int", + "id": 17, + "offset": 316, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3048234723 + "hash": 1799746856 }, - "m_overheadMessage": { + "m_holidayFlag": { "type": "std::string", - "id": 9, - "offset": 248, - "flags": 8388639, + "id": 18, + "offset": 352, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1701018190 + "hash": 2994795359 }, - "m_requirements": { - "type": "class RequirementList", - "id": 10, - "offset": 280, - "flags": 31, + "m_itemSetBonusTemplateID": { + "type": "unsigned int", + "id": 19, + "offset": 384, + "flags": 33554439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2840988582 + "hash": 1316835672 }, - "m_nActionType": { - "type": "enum DerbyActionTargetType", - "id": 11, - "offset": 376, - "flags": 2097183, + "m_numPrimaryColors": { + "type": "int", + "id": 20, + "offset": 428, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3401355432, - "enum_options": { - "Jump": 0, - "Duck": 1, - "AllExceptCheer": 2, - "Cheer": 3 - } - } - } - }, - "1962470811": { - "name": "class std::vector,class std::allocator >,class std::allocator,class std::allocator > > >", - "bases": [], - "hash": 1962470811, - "properties": {} - }, - "1161776452": { - "name": "class std::vector >", - "bases": [], - "hash": 1161776452, - "properties": {} - }, - "765666": { - "name": "bui5", - "bases": [], - "hash": 765666, - "properties": {} - }, - "393300496": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 393300496, - "properties": { - "m_attenuatedFileDescriptionList": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 395748088 - } - } - }, - "1161514098": { - "name": "class DependentResourcesBehaviorTemplate*", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 1161514098, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, + "hash": 981103872 + }, + "m_numSecondaryColors": { + "type": "int", + "id": 21, + "offset": 432, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3130754092 + "hash": 1310416868 }, - "m_dependentResourceList": { - "type": "class DependentResourceContainer", - "id": 1, - "offset": 120, + "m_numPatterns": { + "type": "int", + "id": 22, + "offset": 436, "flags": 7, - "container": "List", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 893254530 - } - } - }, - "732898": { - "name": "bui4", - "bases": [], - "hash": 732898, - "properties": {} - }, - "1161512562": { - "name": "class DependentResourcesBehaviorTemplate", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 1161512562, - "properties": { - "m_behaviorName": { + "hash": 953162171 + }, + "m_school": { "type": "std::string", - "id": 0, - "offset": 72, + "id": 23, + "offset": 392, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3130754092 + "hash": 2438566051 }, - "m_dependentResourceList": { - "type": "class DependentResourceContainer", - "id": 1, - "offset": 120, + "m_arenaPointCost": { + "type": "int", + "id": 24, + "offset": 440, "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 893254530 - } - } - }, - "1963134700": { - "name": "class PendingClassProjectFriendReward", - "bases": [ - "PropertyClass" - ], - "hash": 1963134700, - "properties": {} - }, - "725087": { - "name": "class DerbyLockLane", - "bases": [ - "DerbyEffect", - "PropertyClass" - ], - "hash": 725087, - "properties": { - "m_buffType": { - "type": "enum DerbyTalentBuffType", - "id": 0, - "offset": 92, - "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1149251982, - "enum_options": { - "Buff": 0, - "Debuff": 1, - "Neither": 2 - } + "hash": 1819621796 }, - "m_kTarget": { - "type": "enum DerbyTargetType", - "id": 1, - "offset": 96, - "flags": 2097159, + "m_pvpCurrencyCost": { + "type": "int", + "id": 25, + "offset": 444, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1807803351, - "enum_options": { - "kTargetInFront": 0, - "kTargetBehind": 1, - "kTargetFirst": 2, - "kTargetSelf": 3, - "kTargetAll": 4, - "kTargetLast": 5 - } + "hash": 645595444 }, - "m_nDuration": { + "m_pvpTourneyCurrencyCost": { "type": "int", - "id": 2, - "offset": 104, - "flags": 31, + "id": 26, + "offset": 448, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1110167982 + "hash": 517874954 }, - "m_effectID": { - "type": "unsigned int", - "id": 3, - "offset": 88, - "flags": 24, + "m_rank": { + "type": "int", + "id": 27, + "offset": 424, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2347630439 + "hash": 219803942 }, - "m_imageFilename": { - "type": "std::string", - "id": 4, - "offset": 112, - "flags": 131103, + "m_boyIconIndex": { + "type": "int", + "id": 28, + "offset": 452, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2813328063 + "hash": 802140453 }, - "m_iconIndex": { - "type": "unsigned int", - "id": 5, - "offset": 144, - "flags": 31, + "m_girlIconIndex": { + "type": "int", + "id": 29, + "offset": 456, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1265133262 + "hash": 832706793 }, - "m_soundOnActivate": { - "type": "std::string", - "id": 6, - "offset": 152, - "flags": 131103, + "m_leashOffsetOverride": { + "type": "class SharedPointer", + "id": 30, + "offset": 464, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1956929714 + "pointer": true, + "hash": 1692586788 }, - "m_soundOnTarget": { - "type": "std::string", - "id": 7, - "offset": 184, - "flags": 131103, + "m_rarity": { + "type": "enum RarityType", + "id": 31, + "offset": 460, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3444214056 + "hash": 2253792108, + "enum_options": { + "RT_COMMON": 0, + "RT_UNCOMMON": 1, + "RT_RARE": 2, + "RT_ULTRARARE": 3, + "RT_EPIC": 4 + } }, - "m_targetParticleEffect": { - "type": "std::string", - "id": 8, - "offset": 216, - "flags": 131103, + "m_iconIndex": { + "type": "int", + "id": 32, + "offset": 480, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3048234723 + "hash": 1053730811 }, - "m_overheadMessage": { + "m_imageName": { "type": "std::string", - "id": 9, - "offset": 248, - "flags": 8388639, + "id": 33, + "offset": 488, + "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1701018190 + "hash": 2391520543 }, - "m_requirements": { - "type": "class RequirementList", - "id": 10, - "offset": 280, - "flags": 31, + "m_statModifierSet": { + "type": "class PetStatModificationSet", + "id": 34, + "offset": 520, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2840988582 + "hash": 2182942670 } } }, - "1557744904": { - "name": "class ClientSpawnObjectInfo", + "326864513": { + "name": "class ClientZoneTokenTimer", "bases": [ - "SpawnObjectInfo", - "CoreObjectInfo", + "ZoneTokenTimer", + "ZoneTokenBase", "PropertyClass" ], - "hash": 1557744904, + "hash": 326864513, "properties": { - "m_templateID.m_full": { - "type": "unsigned __int64", + "m_debugName": { + "type": "std::string", "id": 0, "offset": 72, - "flags": 33554439, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 633907631 + "hash": 3553984419 }, - "m_nObjectID": { - "type": "unsigned int", + "m_adjectiveList": { + "type": "std::string", "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, + "offset": 104, + "flags": 31, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 748496927 + "hash": 3195213318 }, - "m_location": { - "type": "class Vector3D", + "m_icon": { + "type": "std::string", "id": 2, - "offset": 84, - "flags": 7, + "offset": 120, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2239683611 + "hash": 1717182340 }, - "m_orientation": { - "type": "class Vector3D", + "m_iconBW": { + "type": "std::string", "id": 3, - "offset": 96, - "flags": 7, + "offset": 152, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2344058766 + "hash": 2047461085 }, - "m_fScale": { - "type": "float", + "m_description": { + "type": "std::string", "id": 4, - "offset": 108, - "flags": 7, + "offset": 184, + "flags": 8388639, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 503137701 + "hash": 1649374815 }, - "m_zoneTag": { - "type": "std::string", + "m_displayMode": { + "type": "enum ZTDisplayMode", "id": 5, - "offset": 152, - "flags": 7, + "offset": 216, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3405382643 + "hash": 2216526410, + "enum_options": { + "ZTDM_Shown": 0, + "ZTDM_Discoverable": 1, + "ZTDM_Hidden": 2 + } }, - "m_startState": { - "type": "std::string", + "m_storage": { + "type": "enum ZTStorage", "id": 6, - "offset": 184, - "flags": 7, + "offset": 220, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2166880458 + "hash": 2290454852, + "enum_options": { + "ZTS_Player": 0, + "ZTS_Zone": 1 + } }, - "m_overrideName": { - "type": "std::string", + "m_onEnable": { + "type": "class SharedPointer", "id": 7, - "offset": 120, - "flags": 8388615, + "offset": 224, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1990707228 + "pointer": true, + "hash": 2591736864 }, - "m_globalDynamic": { - "type": "bool", + "m_onDiscover": { + "type": "class SharedPointer", "id": 8, - "offset": 116, + "offset": 240, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1951691017 + "pointer": true, + "hash": 2826026872 }, - "m_bUndetectable": { - "type": "bool", + "m_onDisable": { + "type": "class SharedPointer", "id": 9, - "offset": 216, + "offset": 256, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1907454341 + "pointer": true, + "hash": 1860656717 }, - "m_spawnRequirements": { - "type": "class SharedPointer", + "m_sourceID": { + "type": "gid", "id": 10, - "offset": 224, - "flags": 7, + "offset": 272, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2309120870 + "pointer": false, + "hash": 1134700470 }, - "m_loadingType": { - "type": "enum CoreObjectInfo::LoadingType", + "m_inZone": { + "type": "bool", "id": 11, - "offset": 112, - "flags": 2097159, + "offset": 280, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3522422550, - "enum_options": { - "STATIC_CLIENT_SERVER": 0, - "STATIC_CLIENT": 1, - "STATIC_SERVER": 2, - "DYNAMIC_SERVER": 3 - } + "hash": 564535654 }, - "m_kStartNodeType": { - "type": "enum SpawnObjectInfo::StartNodeType", + "m_enabled": { + "type": "bool", "id": 12, - "offset": 240, - "flags": 2097159, + "offset": 281, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1545814623, - "enum_options": { - "SNT_RANDOM": 0, - "SNT_RANDOM_UNIQUE": 1, - "SNT_FIRST": 2, - "SNT_LAST": 3, - "SNT_SPECIFIC": 4 - } + "hash": 504506718 }, - "m_startNode": { - "type": "unsigned int", + "m_discovered": { + "type": "bool", "id": 13, - "offset": 256, - "flags": 7, + "offset": 282, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1598161889, - "enum_options": { - "__DEFAULT": 0 - } + "hash": 2060478331 }, - "m_pathID": { - "type": "gid", + "m_duration": { + "type": "std::string", "id": 14, - "offset": 248, - "flags": 7, + "offset": 288, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 821494322 + "hash": 2327821921 }, - "m_uniqueLoc": { - "type": "char", + "m_onExpire": { + "type": "class SharedPointer", "id": 15, - "offset": 260, + "offset": 320, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, + "pointer": true, + "hash": 2604142950 + }, + "m_timeTriggers": { + "type": "class SharedPointer", + "id": 16, + "offset": 336, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1112107844 + }, + "m_expireTime": { + "type": "unsigned int", + "id": 17, + "offset": 356, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, "pointer": false, - "hash": 400014505 + "hash": 1836304873 } } }, - "1962605079": { - "name": "class PipConversionLevelData", + "326789209": { + "name": "class SharedPointer", "bases": [ + "WizardAutobotManager", + "AutobotManager", "PropertyClass" ], - "hash": 1962605079, + "hash": 326789209, + "properties": {} + }, + "326780975": { + "name": "class TeleportProximityBehaviorBase*", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 326780975, "properties": { - "m_minLevel": { - "type": "int", + "m_behaviorTemplateNameID": { + "type": "unsigned int", "id": 0, - "offset": 88, - "flags": 7, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1496818518 - }, - "m_levelValues": { - "type": "class SharedPointer", - "id": 1, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 3506866422 + "hash": 223437287 } } }, - "725084": { - "name": "class DerbyLockLane*", + "326864553": { + "name": "class ClientZoneTokenTimer*", "bases": [ - "DerbyEffect", + "ZoneTokenTimer", + "ZoneTokenBase", "PropertyClass" ], - "hash": 725084, + "hash": 326864553, "properties": { - "m_buffType": { - "type": "enum DerbyTalentBuffType", + "m_debugName": { + "type": "std::string", "id": 0, - "offset": 92, - "flags": 2097183, + "offset": 72, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1149251982, - "enum_options": { - "Buff": 0, - "Debuff": 1, - "Neither": 2 - } + "hash": 3553984419 }, - "m_kTarget": { - "type": "enum DerbyTargetType", + "m_adjectiveList": { + "type": "std::string", "id": 1, - "offset": 96, - "flags": 2097159, - "container": "Static", - "dynamic": false, + "offset": 104, + "flags": 31, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 1807803351, - "enum_options": { - "kTargetInFront": 0, - "kTargetBehind": 1, - "kTargetFirst": 2, - "kTargetSelf": 3, - "kTargetAll": 4, - "kTargetLast": 5 - } + "hash": 3195213318 }, - "m_nDuration": { - "type": "int", + "m_icon": { + "type": "std::string", "id": 2, - "offset": 104, - "flags": 31, + "offset": 120, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1110167982 + "hash": 1717182340 }, - "m_effectID": { - "type": "unsigned int", + "m_iconBW": { + "type": "std::string", "id": 3, - "offset": 88, - "flags": 24, + "offset": 152, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2347630439 + "hash": 2047461085 }, - "m_imageFilename": { + "m_description": { "type": "std::string", "id": 4, - "offset": 112, - "flags": 131103, + "offset": 184, + "flags": 8388639, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2813328063 + "hash": 1649374815 }, - "m_iconIndex": { - "type": "unsigned int", + "m_displayMode": { + "type": "enum ZTDisplayMode", "id": 5, - "offset": 144, - "flags": 31, + "offset": 216, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1265133262 + "hash": 2216526410, + "enum_options": { + "ZTDM_Shown": 0, + "ZTDM_Discoverable": 1, + "ZTDM_Hidden": 2 + } }, - "m_soundOnActivate": { - "type": "std::string", + "m_storage": { + "type": "enum ZTStorage", "id": 6, - "offset": 152, - "flags": 131103, + "offset": 220, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1956929714 + "hash": 2290454852, + "enum_options": { + "ZTS_Player": 0, + "ZTS_Zone": 1 + } }, - "m_soundOnTarget": { - "type": "std::string", + "m_onEnable": { + "type": "class SharedPointer", "id": 7, - "offset": 184, - "flags": 131103, + "offset": 224, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 3444214056 + "pointer": true, + "hash": 2591736864 }, - "m_targetParticleEffect": { - "type": "std::string", + "m_onDiscover": { + "type": "class SharedPointer", "id": 8, - "offset": 216, - "flags": 131103, + "offset": 240, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 3048234723 + "pointer": true, + "hash": 2826026872 }, - "m_overheadMessage": { - "type": "std::string", + "m_onDisable": { + "type": "class SharedPointer", "id": 9, - "offset": 248, - "flags": 8388639, + "offset": 256, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1701018190 + "pointer": true, + "hash": 1860656717 }, - "m_requirements": { - "type": "class RequirementList", + "m_sourceID": { + "type": "gid", "id": 10, + "offset": 272, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1134700470 + }, + "m_inZone": { + "type": "bool", + "id": 11, "offset": 280, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2840988582 + "hash": 564535654 + }, + "m_enabled": { + "type": "bool", + "id": 12, + "offset": 281, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 504506718 + }, + "m_discovered": { + "type": "bool", + "id": 13, + "offset": 282, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2060478331 + }, + "m_duration": { + "type": "std::string", + "id": 14, + "offset": 288, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2327821921 + }, + "m_onExpire": { + "type": "class SharedPointer", + "id": 15, + "offset": 320, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2604142950 + }, + "m_timeTriggers": { + "type": "class SharedPointer", + "id": 16, + "offset": 336, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1112107844 + }, + "m_expireTime": { + "type": "unsigned int", + "id": 17, + "offset": 356, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1836304873 } } }, - "1557710417": { - "name": "class SharedPointer", + "327108655": { + "name": "class TeleportProximityBehaviorBase", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 327108655, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + } + } + }, + "328077231": { + "name": "class StatGlobe*", "bases": [ + "ControlSprite", "Window", "PropertyClass" ], - "hash": 1557710417, + "hash": 328077231, "properties": { "m_sName": { "type": "std::string", @@ -497940,9 +269545,11 @@ "hash": 983582334, "enum_options": { "HAS_BACK": 1, + "SCALE_CHILDREN": 2, "CAN_MOVE": 4, "CAN_SIZE": 8, "CAN_SCROLL": 16, + "FOCUS_LOCKED": 64, "CAN_FOCUS": 128, "CAN_DOCK": 32, "DO_NOT_CAPTURE_MOUSE": 256, @@ -497950,11 +269557,11 @@ "EFFECT_FADEIN": 512, "EFFECT_HIGHLIGHT": 1024, "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, "USE_ALPHA_BOUNDS": 8192, "AUTO_GROW": 16384, "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152, - "SINGLE_EXPAND": 16777216 + "AUTO_RESIZE": 49152 } }, "m_Flags": { @@ -497980,7 +269587,10 @@ "PARENT_HEIGHT": 524288, "HCENTER": 32768, "VCENTER": 65536, - "DISABLED": 2147483648 + "DISABLED": 2147483648, + "ONE_SHOT": 8388608, + "FLIPPED_HORIZONTAL": 16777216, + "FLIPPED_VERTICAL": 33554432 } }, "m_Window": { @@ -498115,52 +269725,52 @@ "pointer": false, "hash": 3091503757 }, - "m_nIndent": { - "type": "int", + "m_pMaterial": { + "type": "class SharedPointer", "id": 16, - "offset": 584, + "offset": 592, "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 2102774666 + "pointer": true, + "hash": 3479277078 }, - "m_pRoot": { - "type": "struct ControlTree::Item*", + "m_fRotation": { + "type": "float", "id": 17, - "offset": 592, + "offset": 608, "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1289445775 + "pointer": false, + "hash": 1175400173 }, - "m_pCursorOver": { - "type": "struct ControlTree::Item*", + "m_Color": { + "type": "class Color", "id": 18, - "offset": 600, - "flags": 135, + "offset": 584, + "flags": 262279, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2025071845 + "pointer": false, + "hash": 1753714077 }, - "m_pSelected": { - "type": "struct ControlTree::Item*", + "m_textColor": { + "type": "class Color", "id": 19, - "offset": 608, - "flags": 135, + "offset": 612, + "flags": 262279, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1115130964 + "pointer": false, + "hash": 2528109250 }, - "m_bCursorInWindow": { - "type": "bool", + "m_textComponent": { + "type": "class TextComponent", "id": 20, "offset": 616, "flags": 135, @@ -498168,2361 +269778,2267 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 1768047842 - } - } - }, - "393606423": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 393606423, - "properties": { - "m_whitelist": { - "type": "class DynamicURLDescriptor", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Vector", - "dynamic": true, + "hash": 3491704390 + }, + "m_amount": { + "type": "int", + "id": 21, + "offset": 800, + "flags": 135, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 2741681576 + "hash": 248546638 } } }, - "1557105536": { - "name": "class SharedPointer", - "bases": [ - "HousingGameInterface", - "PropertyClass" - ], - "hash": 1557105536, - "properties": {} - }, - "393452492": { - "name": "class QuickChatEntry", + "327928967": { + "name": "class SharedPointer", "bases": [ + "InfractionMessageBox", + "InfractionPenalty", "PropertyClass" ], - "hash": 393452492, + "hash": 327928967, "properties": { - "m_chatID": { + "m_internalID": { "type": "unsigned int", "id": 0, "offset": 72, - "flags": 7, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 531784794 + "hash": 1854540375 }, - "m_label": { - "type": "std::string", + "m_categoryID": { + "type": "unsigned int", "id": 1, - "offset": 80, - "flags": 7, + "offset": 76, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2298819451 + "hash": 1382795736 }, - "m_text": { - "type": "std::string", + "m_removeAtPointValue": { + "type": "float", "id": 2, - "offset": 112, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1717580128 - }, - "m_charAnim": { - "type": "std::string", - "id": 3, - "offset": 144, - "flags": 7, + "offset": 80, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2402868926 + "hash": 2112196961 }, - "m_categoryMask": { + "m_expireTime": { "type": "unsigned int", - "id": 4, - "offset": 176, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2304824567 - }, - "m_dynFolder": { - "type": "int", - "id": 5, - "offset": 180, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 510571201 - }, - "m_supportsMore": { - "type": "bool", - "id": 6, - "offset": 184, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 902487766 - }, - "m_membersOnly": { - "type": "bool", - "id": 7, - "offset": 185, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1051823616 - }, - "m_unlockKey": { - "type": "std::string", - "id": 8, - "offset": 192, - "flags": 7, + "id": 3, + "offset": 84, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3522694864 + "hash": 1836304873 }, - "m_faceAnim": { + "m_titleKey": { "type": "std::string", - "id": 9, - "offset": 224, - "flags": 7, + "id": 4, + "offset": 88, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3169175247 + "hash": 3096106918 }, - "m_sound": { + "m_messageKey": { "type": "std::string", - "id": 10, - "offset": 256, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2307644996 - }, - "m_childEntries": { - "type": "class SharedPointer", - "id": 11, - "offset": 288, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1678382163 - } - } - }, - "1555863548": { - "name": "class ReqClearCraftingSlots*", - "bases": [ - "Requirement", - "PropertyClass" - ], - "hash": 1555863548, - "properties": { - "m_applyNOT": { - "type": "bool", - "id": 0, - "offset": 72, + "id": 5, + "offset": 120, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1746328074, - "enum_options": { - "__DEFAULT": 0 - } - }, - "m_operator": { - "type": "enum Requirement::Operator", - "id": 1, - "offset": 76, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2672792317, - "enum_options": { - "ROP_AND": 0, - "ROP_OR": 1, - "__DEFAULT": "ROP_AND" - } + "hash": 3561518217 } } }, - "1162271805": { - "name": "class SharedPointer", + "328097711": { + "name": "class StatGlobe", "bases": [ - "WizItemLocations", + "ControlSprite", + "Window", "PropertyClass" ], - "hash": 1162271805, + "hash": 328097711, "properties": { - "m_itemType": { - "type": "enum WizItemLocations::eItemType", + "m_sName": { + "type": "std::string", "id": 0, - "offset": 72, - "flags": 2097183, + "offset": 80, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3482173907, - "enum_options": { - "shop": 0, - "quest": 1, - "boss": 2, - "gardening": 3, - "goldChest": 4 - } + "hash": 2306437263 }, - "m_houseNames": { - "type": "std::string", + "m_Children": { + "type": "class SharedPointer", "id": 1, - "offset": 80, - "flags": 31, - "container": "List", + "offset": 112, + "flags": 65671, + "container": "Vector", "dynamic": true, "singleton": false, - "pointer": false, - "hash": 2902609843 - } - } - }, - "725730": { - "name": "buf4", - "bases": [], - "hash": 725730, - "properties": {} - }, - "1555862268": { - "name": "class ReqClearCraftingSlots", - "bases": [ - "Requirement", - "PropertyClass" - ], - "hash": 1555862268, - "properties": { - "m_applyNOT": { - "type": "bool", - "id": 0, - "offset": 72, - "flags": 31, + "pointer": true, + "hash": 2621225959 + }, + "m_Style": { + "type": "unsigned int", + "id": 2, + "offset": 152, + "flags": 1048583, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1746328074, + "hash": 983582334, "enum_options": { - "__DEFAULT": 0 + "HAS_BACK": 1, + "SCALE_CHILDREN": 2, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "FOCUS_LOCKED": 64, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152 } }, - "m_operator": { - "type": "enum Requirement::Operator", - "id": 1, - "offset": 76, - "flags": 2097183, + "m_Flags": { + "type": "unsigned int", + "id": 3, + "offset": 156, + "flags": 1048583, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2672792317, + "hash": 967851578, "enum_options": { - "ROP_AND": 0, - "ROP_OR": 1, - "__DEFAULT": "ROP_AND" + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648, + "ONE_SHOT": 8388608, + "FLIPPED_HORIZONTAL": 16777216, + "FLIPPED_VERTICAL": 33554432 } - } - } - }, - "1963861785": { - "name": "class BGSigilProxyBehaviorTemplate*", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 1963861785, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, + }, + "m_Window": { + "type": "class Rect", + "id": 4, + "offset": 160, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3130754092 - } - } - }, - "393620306": { - "name": "enum HousingNode::ConnectionType", - "bases": [], - "hash": 393620306, - "properties": {} - }, - "1963449740": { - "name": "class std::list >", - "bases": [], - "hash": 1963449740, - "properties": {} - }, - "1163082003": { - "name": "class SoundFilterParam*", - "bases": [ - "PropertyClass" - ], - "hash": 1163082003, - "properties": { - "m_name": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, + "hash": 3105139380 + }, + "m_fTargetAlpha": { + "type": "float", + "id": 5, + "offset": 212, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1717359772 + "hash": 1809129834 }, - "m_distanceRatio": { + "m_fDisabledAlpha": { "type": "float", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Vector", - "dynamic": true, + "id": 6, + "offset": 216, + "flags": 135, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 1358433825 + "hash": 1389987675 }, - "m_value": { + "m_fAlpha": { "type": "float", - "id": 2, - "offset": 128, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 903191604 - }, - "m_needsUpdate": { - "type": "bool", - "id": 3, - "offset": 152, - "flags": 7, + "id": 7, + "offset": 208, + "flags": 65671, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1787634021 - } - } - }, - "1963227688": { - "name": "class ClearHangingEffectsCinematicAction", - "bases": [ - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 1963227688, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, + "hash": 482130755 + }, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 2237098605 + "pointer": true, + "hash": 3623628394 }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2285866132 - } - } - }, - "740482": { - "name": "bf16", - "bases": [], - "hash": 740482, - "properties": {} - }, - "1162983699": { - "name": "class SoundFilterParam", - "bases": [ - "PropertyClass" - ], - "hash": 1162983699, - "properties": { - "m_name": { + "hash": 2102211316 + }, + "m_sScript": { "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, + "id": 10, + "offset": 352, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1717359772 - }, - "m_distanceRatio": { - "type": "float", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1358433825 - }, - "m_value": { - "type": "float", - "id": 2, - "offset": 128, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 903191604 + "hash": 1846695875 }, - "m_needsUpdate": { - "type": "bool", - "id": 3, - "offset": 152, - "flags": 7, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1787634021 - } - } - }, - "2019251425": { - "name": "class ClientPetOwnerBehavior", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 2019251425, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, + "hash": 3389835433 + }, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 + "hash": 2547159940 }, - "m_maxSlots": { - "type": "unsigned char", - "id": 1, - "offset": 128, - "flags": 63, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 792508619 + "hash": 1513510520 }, - "m_morphingSlots": { - "type": "class SharedPointer", - "id": 2, - "offset": 112, - "flags": 31, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, "container": "List", "dynamic": true, "singleton": false, - "pointer": true, - "hash": 2241134624 - }, - "m_energyTickTimeSecs": { - "type": "unsigned int", - "id": 3, - "offset": 136, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, "pointer": false, - "hash": 1255384991 + "hash": 2587533771 }, - "m_energy": { - "type": "int", - "id": 4, - "offset": 132, - "flags": 63, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 405911268 + "hash": 3091503757 }, - "m_playingAsPet": { - "type": "bool", - "id": 5, - "offset": 140, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1865705156 - } - } - }, - "394313333": { - "name": "class ClientCantripsInvisibilityEffect", - "bases": [ - "CantripsInvisibilityEffect", - "GameEffectBase", - "PropertyClass" - ], - "hash": 394313333, - "properties": { - "m_currentTickCount": { - "type": "double", - "id": 0, - "offset": 80, - "flags": 63, + "m_pMaterial": { + "type": "class SharedPointer", + "id": 16, + "offset": 592, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 2533274692 + "pointer": true, + "hash": 3479277078 }, - "m_effectNameID": { - "type": "unsigned int", - "id": 1, - "offset": 96, - "flags": 63, + "m_fRotation": { + "type": "float", + "id": 17, + "offset": 608, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1204067144 + "hash": 1175400173 }, - "m_bIsOnPet": { - "type": "bool", - "id": 2, - "offset": 73, - "flags": 31, + "m_Color": { + "type": "class Color", + "id": 18, + "offset": 584, + "flags": 262279, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 522593303 + "hash": 1753714077 }, - "m_originatorID": { - "type": "gid", - "id": 3, - "offset": 104, - "flags": 39, + "m_textColor": { + "type": "class Color", + "id": 19, + "offset": 612, + "flags": 262279, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1131810019 + "hash": 2528109250 }, - "m_itemSlotID": { - "type": "unsigned int", - "id": 4, - "offset": 112, - "flags": 63, + "m_textComponent": { + "type": "class TextComponent", + "id": 20, + "offset": 616, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1895747595 + "hash": 3491704390 }, - "m_internalID": { + "m_amount": { "type": "int", - "id": 5, - "offset": 92, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1643137924 - }, - "m_endTime": { - "type": "unsigned int", - "id": 6, - "offset": 88, - "flags": 31, + "id": 21, + "offset": 800, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 716479635 + "hash": 248546638 } } }, - "394062644": { - "name": "class SharedPointer", + "328536954": { + "name": "class BountyGoalTemplate*", "bases": [ - "Material", + "GoalTemplate", + "CoreTemplate", "PropertyClass" ], - "hash": 394062644, + "hash": 328536954, "properties": { - "m_sMaterialName": { - "type": "std::wstring", + "m_behaviors": { + "type": "class BehaviorTemplate*", "id": 0, "offset": 72, - "flags": 135, - "container": "Static", - "dynamic": false, + "flags": 7, + "container": "Vector", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 1299185467 + "pointer": true, + "hash": 1197808594 }, - "m_Blending": { - "type": "enum Material::Blending", + "m_goalName": { + "type": "std::string", "id": 1, - "offset": 116, - "flags": 2097159, + "offset": 104, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3003693822, - "enum_options": { - "B_NONE": 0, - "B_ADDITIVE": 1, - "B_ALPHA": 2, - "B_ALPHA_INV": 3, - "B_ADDITIVE_INV": 4, - "__DEFAULT": "B_ALPHA" - } + "hash": 1521627807 }, - "m_eRepeat": { - "type": "enum Material::Repeating", + "m_goalNameID": { + "type": "unsigned int", "id": 2, - "offset": 176, - "flags": 2097159, + "offset": 496, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3302018843, - "enum_options": { - "R_NONE": 0, - "R_REPEAT": 1 - } + "hash": 403158846 }, - "m_pDiffuseMap": { - "type": "class SharedPointer", + "m_goalTitle": { + "type": "std::string", "id": 3, - "offset": 120, - "flags": 135, + "offset": 136, + "flags": 8388615, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 4008975679 + "pointer": false, + "hash": 2291910240 }, - "m_pAlphaMask": { - "type": "class SharedPointer", + "m_goalUnderway": { + "type": "std::string", "id": 4, - "offset": 136, - "flags": 135, + "offset": 168, + "flags": 8388615, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3411451405 + "pointer": false, + "hash": 3153144269 }, - "m_fLastAlpha": { - "type": "float", + "m_hyperlink": { + "type": "std::string", "id": 5, - "offset": 152, - "flags": 135, + "offset": 200, + "flags": 8388615, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 284727287 + "hash": 2887798993 }, - "m_Diffuse": { - "type": "class Color", + "m_completeText": { + "type": "std::string", "id": 6, - "offset": 156, - "flags": 262279, + "offset": 232, + "flags": 8388615, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1644364836 + "hash": 2767458393 }, - "m_Ambient": { - "type": "class Color", + "m_completeResults": { + "type": "class ResultList*", "id": 7, - "offset": 160, - "flags": 262279, + "offset": 440, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 2216816350 + "pointer": true, + "hash": 1964258099 }, - "m_Specular": { - "type": "class Color", + "m_goalRequirements": { + "type": "class RequirementList*", "id": 8, - "offset": 168, - "flags": 262279, + "offset": 448, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 2645528957 + "pointer": true, + "hash": 2979967145 }, - "m_fSpecularPower": { - "type": "float", + "m_tallyCounter": { + "type": "class TallyCounterTemplate*", "id": 9, - "offset": 172, - "flags": 135, + "offset": 456, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 539146057 + "pointer": true, + "hash": 1884546193 }, - "m_Frames": { - "type": "class Rect", + "m_locationName": { + "type": "std::string", "id": 10, - "offset": 192, - "flags": 65671, - "container": "Vector", - "dynamic": true, + "offset": 272, + "flags": 8388615, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 3064301836 + "hash": 1824218389 }, - "m_nCurrentFrame": { - "type": "int", + "m_displayImage1": { + "type": "std::string", "id": 11, - "offset": 216, - "flags": 135, + "offset": 304, + "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 45308854 + "hash": 1959572133 }, - "m_fAnimRate": { - "type": "float", + "m_displayImage2": { + "type": "std::string", "id": 12, - "offset": 228, - "flags": 135, + "offset": 336, + "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 802385934 + "hash": 1959572134 }, - "m_nAnimBegin": { - "type": "int", + "m_clientTags": { + "type": "std::string", "id": 13, - "offset": 220, - "flags": 135, - "container": "Static", - "dynamic": false, + "offset": 368, + "flags": 7, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 400513266 + "hash": 2319030025 }, - "m_nAnimEnd": { - "type": "int", + "m_genericEvents": { + "type": "std::string", "id": 14, - "offset": 224, - "flags": 135, - "container": "Static", - "dynamic": false, + "offset": 384, + "flags": 7, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 1081103460 + "hash": 3466670829 }, - "m_fAnimTime": { - "type": "float", + "m_autoQualify": { + "type": "bool", "id": 15, - "offset": 232, - "flags": 134, + "offset": 400, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 802466289 + "hash": 1878907431 }, - "m_fMaterialScaleX": { - "type": "float", + "m_autoComplete": { + "type": "bool", "id": 16, - "offset": 180, - "flags": 135, + "offset": 401, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 634638220 + "hash": 1302545445 }, - "m_fMaterialScaleY": { - "type": "float", + "m_destinationZone": { + "type": "std::string", "id": 17, - "offset": 184, - "flags": 135, + "offset": 408, + "flags": 268435463, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 634638221 + "hash": 2605356153, + "enum_options": { + "__BASECLASS": "ZoneData" + } }, - "m_TilesX": { - "type": "int", + "m_dialogList": { + "type": "class ActorDialogListBase*", "id": 18, - "offset": 240, - "flags": 135, + "offset": 264, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1882401395 + "pointer": true, + "hash": 1909154969 }, - "m_TilesY": { - "type": "int", + "m_goalType": { + "type": "enum GoalTemplate::GOAL_TYPE", "id": 19, - "offset": 244, - "flags": 135, + "offset": 96, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1882401396 - } - } - }, - "1963855641": { - "name": "class BGSigilProxyBehaviorTemplate", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 1963855641, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, + "hash": 1488021149, + "enum_options": { + "GOAL_TYPE_UNKNOWN": 0, + "GOAL_TYPE_BOUNTY": 1, + "GOAL_TYPE_BOUNTYCOLLECT": 2, + "GOAL_TYPE_SCAVENGE": 3, + "GOAL_TYPE_PERSONA": 4, + "GOAL_TYPE_WAYPOINT": 5, + "GOAL_TYPE_SCAVENGEFAKE": 6, + "GOAL_TYPE_ACHIEVERANK": 7, + "GOAL_TYPE_USAGE": 8, + "GOAL_TYPE_COMPLETEQUEST": 9, + "GOAL_TYPE_SOCIARANK": 10, + "GOAL_TYPE_SOCIACURRENCY": 11, + "GOAL_TYPE_SOCIAMINIGAME": 12, + "GOAL_TYPE_SOCIAGIVEITEM": 13, + "GOAL_TYPE_SOCIAGETITEM": 14, + "GOAL_TYPE_COLLECTAFTERBOUNTY": 15, + "GOAL_TYPE_ENCOUNTER_WAYPOINT_FOREACH": 16 + } + }, + "m_noQuestHelper": { + "type": "bool", + "id": 20, + "offset": 500, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3130754092 - } - } - }, - "1982447": { - "name": "class SharedPointer", - "bases": [ - "ItemLootInfo", - "LootInfo", - "LootInfoBase", - "PropertyClass" - ], - "hash": 1982447, - "properties": { - "m_lootType": { - "type": "enum LootInfo::LOOT_TYPE", - "id": 0, - "offset": 72, - "flags": 2097183, + "hash": 578010882, + "enum_options": { + "__DEFAULT": 0 + } + }, + "m_petOnlyQuest": { + "type": "bool", + "id": 21, + "offset": 501, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1591891442, + "hash": 679359344, "enum_options": { - "LOOT_TYPE_NONE": 0, - "LOOT_TYPE_GOLD": 1, - "LOOT_TYPE_MANA": 2, - "LOOT_TYPE_ITEM": 3, - "LOOT_TYPE_TREASURE_CARD": 4, - "LOOT_TYPE_MAGIC_XP": 5, - "LOOT_TYPE_ADD_SPELL": 6, - "LOOT_TYPE_MAX_HEALTH": 7, - "LOOT_TYPE_MAX_GOLD": 8, - "LOOT_TYPE_MAX_MANA": 9, - "LOOT_TYPE_MAX_POTION": 10, - "LOOT_TYPE_TRAINING_POINTS": 11, - "LOOT_TYPE_RECIPE": 12, - "LOOT_TYPE_CRAFTING_SLOT": 13, - "LOOT_TYPE_REAGENT": 14, - "LOOT_TYPE_PETSNACK": 15, - "LOOT_TYPE_GARDENING_XP": 16, - "LOOT_TYPE_PET_XP": 17, - "LOOT_TYPE_TREASURE_TABLE": 18, - "LOOT_TYPE_ARENA_POINTS": 19, - "LOOT_TYPE_ARENA_BONUS_POINTS": 20, - "LOOT_TYPE_GROUP": 21, - "LOOT_TYPE_FISHING_XP": 22, - "LOOT_TYPE_EVENT_CURRENCY_1": 24, - "LOOT_TYPE_EVENT_CURRENCY_2": 25, - "LOOT_TYPE_PVP_CURRENCY": 26, - "LOOT_TYPE_PVP_CURRENCY_BONUS": 27, - "LOOT_TYPE_PVP_TOURNEY_CURRENCY": 28, - "LOOT_TYPE_PVP_TOURNEY_CURRENCY_BONUS": 29, - "LOOT_TYPE_FURNITURE_ESSENCE": 30 + "__DEFAULT": 0 } }, - "m_itemID": { - "type": "gid", - "id": 1, - "offset": 88, - "flags": 33554463, + "m_activateResults": { + "type": "class ResultList*", + "id": 22, + "offset": 504, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3790153995 + }, + "m_hideGoalFloatyText": { + "type": "bool", + "id": 23, + "offset": 512, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 569545460 + "hash": 1919383204, + "enum_options": { + "__DEFAULT": 0 + } }, - "m_numItems": { + "m_npcAdjectives": { + "type": "std::string", + "id": 24, + "offset": 520, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 3044559358 + }, + "m_bountyTotal": { "type": "int", - "id": 2, - "offset": 96, - "flags": 31, + "id": 25, + "offset": 536, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1588646284 + "hash": 1943105087 + }, + "m_bountyType": { + "type": "enum BountyGoalTemplate::BOUNTY_TYPE", + "id": 26, + "offset": 540, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3703892338, + "enum_options": { + "BountyGoalTemplate::BT_MOB_KILL": 0, + "BountyGoalTemplate::BT_MOB_FLEE": 1 + } } } }, - "1163162832": { - "name": "class BlobRequestObject*", + "332198153": { + "name": "class IslandSpaceOption*", "bases": [ + "ServiceOptionBase", "PropertyClass" ], - "hash": 1163162832, + "hash": 332198153, "properties": { - "m_subType": { + "m_serviceName": { "type": "std::string", "id": 0, "offset": 72, - "flags": 7, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3175052615 + "hash": 2206028813 }, - "m_versionNumber": { - "type": "unsigned int", + "m_iconKey": { + "type": "std::string", "id": 1, - "offset": 104, - "flags": 7, + "offset": 168, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1265259452 + "hash": 2457138637 }, - "m_packageNumber": { - "type": "int", + "m_displayKey": { + "type": "std::string", "id": 2, - "offset": 108, - "flags": 7, + "offset": 104, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1934060719 + "hash": 3023276954 }, - "m_userData": { + "m_serviceIndex": { "type": "unsigned int", "id": 3, - "offset": 112, - "flags": 7, + "offset": 204, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 927280710 + "hash": 2103126710 }, - "m_objectCount": { - "type": "unsigned int", + "m_forceInteract": { + "type": "bool", "id": 4, - "offset": 116, - "flags": 7, + "offset": 200, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 410139949 + "hash": 1705789564 } } }, - "1448017": { - "name": "class PortraitWindow*", + "331221321": { + "name": "class AdventurePartyInfo*", "bases": [ - "Window", "PropertyClass" ], - "hash": 1448017, + "hash": 331221321, "properties": { - "m_sName": { - "type": "std::string", + "m_adventurePartyGID": { + "type": "gid", "id": 0, - "offset": 80, - "flags": 135, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2306437263 + "hash": 2003479882 }, - "m_Children": { - "type": "class SharedPointer", + "m_adventurePartyName": { + "type": "unsigned int", "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2621225959 + "pointer": false, + "hash": 1899719436 }, - "m_Style": { - "type": "unsigned int", + "m_adventurePartyNameLocale": { + "type": "int", "id": 2, - "offset": 152, - "flags": 1048583, + "offset": 84, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "SCALE_CHILDREN": 2, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "FOCUS_LOCKED": 64, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152 - } + "hash": 695833705 }, - "m_Flags": { + "m_creationDate": { "type": "unsigned int", "id": 3, - "offset": 156, - "flags": 1048583, + "offset": 88, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } + "hash": 2141685120 }, - "m_Window": { - "type": "class Rect", + "m_ownerGID": { + "type": "gid", "id": 4, - "offset": 160, - "flags": 135, + "offset": 96, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3105139380 + "hash": 1765087575 }, - "m_fTargetAlpha": { - "type": "float", + "m_ownerName": { + "type": "std::string", "id": 5, - "offset": 212, - "flags": 135, + "offset": 104, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1809129834 + "hash": 1761521415 }, - "m_fDisabledAlpha": { - "type": "float", + "m_purposeType": { + "type": "int", "id": 6, - "offset": 216, - "flags": 135, + "offset": 136, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1389987675 + "hash": 1148443466 }, - "m_fAlpha": { - "type": "float", + "m_purposeWorldID": { + "type": "unsigned int", "id": 7, - "offset": 208, - "flags": 65671, + "offset": 140, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 482130755 + "hash": 1790486832 }, - "m_pWindowStyle": { - "type": "class SharedPointer", + "m_flags": { + "type": "unsigned int", "id": 8, - "offset": 232, - "flags": 135, + "offset": 144, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3623628394 + "pointer": false, + "hash": 1005801050 }, - "m_sHelp": { - "type": "std::wstring", + "m_equippedHouseInstanceGID": { + "type": "gid", "id": 9, - "offset": 248, - "flags": 4194439, + "offset": 152, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2102211316 + "hash": 63247330 }, - "m_sScript": { - "type": "std::string", + "m_equippedInteriorInstanceGID": { + "type": "gid", "id": 10, - "offset": 352, - "flags": 135, + "offset": 160, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1846695875 + "hash": 1578260586 }, - "m_Offset": { - "type": "class Point", + "m_adventurePartyMemberList": { + "type": "class SharedPointer", "id": 11, - "offset": 192, - "flags": 135, - "container": "Static", - "dynamic": false, + "offset": 168, + "flags": 7, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 3389835433 + "pointer": true, + "hash": 2861967351 }, - "m_Scale": { - "type": "class Point", + "m_messageBoardList": { + "type": "class SharedPointer", "id": 12, + "offset": 184, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2175215327 + }, + "m_renameCooldownTime": { + "type": "unsigned int", + "id": 13, "offset": 200, - "flags": 135, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2547159940 + "hash": 762261177 }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, + "m_newOwnerTime": { + "type": "unsigned int", + "id": 14, + "offset": 204, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, + "hash": 453769201 + } + } + }, + "329969771": { + "name": "class ReqInventoryFull", + "bases": [ + "ReqNumeric", + "Requirement", + "PropertyClass" + ], + "hash": 329969771, + "properties": { + "m_applyNOT": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 2587533771 + "hash": 1746328074, + "enum_options": { + "__DEFAULT": 0 + } }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, + "m_operator": { + "type": "enum Requirement::Operator", + "id": 1, + "offset": 76, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3091503757 + "hash": 2672792317, + "enum_options": { + "ROP_AND": 0, + "ROP_OR": 1, + "__DEFAULT": "ROP_AND" + } }, - "m_pMaterial": { - "type": "class SharedPointer", - "id": 16, - "offset": 632, - "flags": 7, + "m_numericValue": { + "type": "float", + "id": 2, + "offset": 80, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3479277078 + "pointer": false, + "hash": 521915239 }, - "m_alphaMask": { - "type": "class SharedPointer", - "id": 17, - "offset": 648, - "flags": 7, + "m_operatorType": { + "type": "enum ReqNumeric::OPERATOR_TYPE", + "id": 3, + "offset": 84, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2624275869 + "pointer": false, + "hash": 2228122961, + "enum_options": { + "OPERATOR_UNKNOWN": 4294967295, + "OPERATOR_EQUALS": 0, + "OPERATOR_GREATER_THAN": 1, + "OPERATOR_LESS_THAN": 2, + "OPERATOR_GREATER_THAN_EQ": 3, + "OPERATOR_LESS_THAN_EQ": 4 + } } } }, - "1557743624": { - "name": "class ClientSpawnObjectInfo*", + "329805931": { + "name": "class ReqInventoryFull*", "bases": [ - "SpawnObjectInfo", - "CoreObjectInfo", + "ReqNumeric", + "Requirement", "PropertyClass" ], - "hash": 1557743624, + "hash": 329805931, "properties": { - "m_templateID.m_full": { - "type": "unsigned __int64", + "m_applyNOT": { + "type": "bool", "id": 0, "offset": 72, - "flags": 33554439, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 633907631 + "hash": 1746328074, + "enum_options": { + "__DEFAULT": 0 + } }, - "m_nObjectID": { - "type": "unsigned int", + "m_operator": { + "type": "enum Requirement::Operator", "id": 1, - "offset": 80, - "flags": 7, + "offset": 76, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 748496927 + "hash": 2672792317, + "enum_options": { + "ROP_AND": 0, + "ROP_OR": 1, + "__DEFAULT": "ROP_AND" + } }, - "m_location": { - "type": "class Vector3D", + "m_numericValue": { + "type": "float", "id": 2, - "offset": 84, - "flags": 7, + "offset": 80, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2239683611 + "hash": 521915239 }, - "m_orientation": { - "type": "class Vector3D", + "m_operatorType": { + "type": "enum ReqNumeric::OPERATOR_TYPE", "id": 3, - "offset": 96, - "flags": 7, + "offset": 84, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2344058766 - }, - "m_fScale": { - "type": "float", - "id": 4, - "offset": 108, - "flags": 7, + "hash": 2228122961, + "enum_options": { + "OPERATOR_UNKNOWN": 4294967295, + "OPERATOR_EQUALS": 0, + "OPERATOR_GREATER_THAN": 1, + "OPERATOR_LESS_THAN": 2, + "OPERATOR_GREATER_THAN_EQ": 3, + "OPERATOR_LESS_THAN_EQ": 4 + } + } + } + }, + "329561471": { + "name": "class SharedPointer", + "bases": [ + "AreaBehavior", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 329561471, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 503137701 + "hash": 223437287 }, - "m_zoneTag": { - "type": "std::string", - "id": 5, - "offset": 152, + "m_radius": { + "type": "float", + "id": 1, + "offset": 116, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3405382643 + "hash": 989410271 }, - "m_startState": { - "type": "std::string", - "id": 6, - "offset": 184, - "flags": 7, + "m_category": { + "type": "enum AudioCategory", + "id": 2, + "offset": 124, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2166880458 + "hash": 2951251982, + "enum_options": { + "AudioCategory_Irrelevent": 0, + "AudioCategory_Accoustic": 1, + "AudioCategory_Noise": 2, + "AudioCategory_Music": 3 + } }, - "m_overrideName": { - "type": "std::string", - "id": 7, - "offset": 120, - "flags": 8388615, + "m_exclusive": { + "type": "bool", + "id": 3, + "offset": 128, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1990707228 + "hash": 824383403 }, - "m_globalDynamic": { - "type": "bool", - "id": 8, - "offset": 116, + "m_playList": { + "type": "class PlayList", + "id": 4, + "offset": 176, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1951691017 + "hash": 2061221957 }, - "m_bUndetectable": { - "type": "bool", - "id": 9, - "offset": 216, + "m_volume": { + "type": "float", + "id": 5, + "offset": 304, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1907454341 + "hash": 1162855023 }, - "m_spawnRequirements": { - "type": "class SharedPointer", - "id": 10, - "offset": 224, + "m_loopCount": { + "type": "int", + "id": 6, + "offset": 308, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2309120870 - }, - "m_loadingType": { - "type": "enum CoreObjectInfo::LoadingType", - "id": 11, - "offset": 112, - "flags": 2097159, + "pointer": false, + "hash": 865634717 + } + } + }, + "329907022": { + "name": "class ReqMatchesPlayed*", + "bases": [ + "ReqNumeric", + "Requirement", + "PropertyClass" + ], + "hash": 329907022, + "properties": { + "m_applyNOT": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3522422550, + "hash": 1746328074, "enum_options": { - "STATIC_CLIENT_SERVER": 0, - "STATIC_CLIENT": 1, - "STATIC_SERVER": 2, - "DYNAMIC_SERVER": 3 + "__DEFAULT": 0 } }, - "m_kStartNodeType": { - "type": "enum SpawnObjectInfo::StartNodeType", - "id": 12, - "offset": 240, - "flags": 2097159, + "m_operator": { + "type": "enum Requirement::Operator", + "id": 1, + "offset": 76, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1545814623, + "hash": 2672792317, "enum_options": { - "SNT_RANDOM": 0, - "SNT_RANDOM_UNIQUE": 1, - "SNT_FIRST": 2, - "SNT_LAST": 3, - "SNT_SPECIFIC": 4 + "ROP_AND": 0, + "ROP_OR": 1, + "__DEFAULT": "ROP_AND" } }, - "m_startNode": { - "type": "unsigned int", - "id": 13, - "offset": 256, - "flags": 7, + "m_numericValue": { + "type": "float", + "id": 2, + "offset": 80, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1598161889, - "enum_options": { - "__DEFAULT": 0 - } + "hash": 521915239 }, - "m_pathID": { - "type": "gid", - "id": 14, - "offset": 248, - "flags": 7, + "m_operatorType": { + "type": "enum ReqNumeric::OPERATOR_TYPE", + "id": 3, + "offset": 84, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 821494322 + "hash": 2228122961, + "enum_options": { + "OPERATOR_UNKNOWN": 4294967295, + "OPERATOR_EQUALS": 0, + "OPERATOR_GREATER_THAN": 1, + "OPERATOR_LESS_THAN": 2, + "OPERATOR_GREATER_THAN_EQ": 3, + "OPERATOR_LESS_THAN_EQ": 4 + } }, - "m_uniqueLoc": { - "type": "char", - "id": 15, - "offset": 260, - "flags": 7, + "m_tournament": { + "type": "std::string", + "id": 4, + "offset": 88, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 400014505 + "hash": 2799932264 } } }, - "394082966": { - "name": "class SharedPointer", + "330851950": { + "name": "class SharedPointer", "bases": [ - "Window", + "WinAnimScale", + "WindowAnimation", "PropertyClass" ], - "hash": 394082966, + "hash": 330851950, "properties": { - "m_sName": { - "type": "std::string", + "m_bUseDeepCopy": { + "type": "bool", "id": 0, - "offset": 80, + "offset": 72, "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2306437263 + "hash": 433380635 }, - "m_Children": { - "type": "class SharedPointer", + "m_scale": { + "type": "float", "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2621225959 + "pointer": false, + "hash": 899693439 }, - "m_Style": { - "type": "unsigned int", + "m_fSpeed": { + "type": "float", "id": 2, - "offset": 152, - "flags": 1048583, + "offset": 96, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 983582334, + "hash": 503609006 + } + } + }, + "330005326": { + "name": "class ReqMatchesPlayed", + "bases": [ + "ReqNumeric", + "Requirement", + "PropertyClass" + ], + "hash": 330005326, + "properties": { + "m_applyNOT": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1746328074, "enum_options": { - "HAS_BACK": 1, - "SCALE_CHILDREN": 2, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "FOCUS_LOCKED": 64, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152 + "__DEFAULT": 0 } }, - "m_Flags": { - "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 1048583, + "m_operator": { + "type": "enum Requirement::Operator", + "id": 1, + "offset": 76, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 967851578, + "hash": 2672792317, "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 + "ROP_AND": 0, + "ROP_OR": 1, + "__DEFAULT": "ROP_AND" } }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, - "flags": 135, + "m_numericValue": { + "type": "float", + "id": 2, + "offset": 80, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3105139380 + "hash": 521915239 }, - "m_fTargetAlpha": { - "type": "float", - "id": 5, - "offset": 212, - "flags": 135, + "m_operatorType": { + "type": "enum ReqNumeric::OPERATOR_TYPE", + "id": 3, + "offset": 84, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1809129834 + "hash": 2228122961, + "enum_options": { + "OPERATOR_UNKNOWN": 4294967295, + "OPERATOR_EQUALS": 0, + "OPERATOR_GREATER_THAN": 1, + "OPERATOR_LESS_THAN": 2, + "OPERATOR_GREATER_THAN_EQ": 3, + "OPERATOR_LESS_THAN_EQ": 4 + } }, - "m_fDisabledAlpha": { - "type": "float", - "id": 6, - "offset": 216, - "flags": 135, + "m_tournament": { + "type": "std::string", + "id": 4, + "offset": 88, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1389987675 - }, - "m_fAlpha": { - "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, + "hash": 2799932264 + } + } + }, + "330226830": { + "name": "class SharedPointer", + "bases": [ + "ReqNumeric", + "Requirement", + "PropertyClass" + ], + "hash": 330226830, + "properties": { + "m_applyNOT": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 482130755 + "hash": 1746328074, + "enum_options": { + "__DEFAULT": 0 + } }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, + "m_operator": { + "type": "enum Requirement::Operator", + "id": 1, + "offset": 76, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3623628394 + "pointer": false, + "hash": 2672792317, + "enum_options": { + "ROP_AND": 0, + "ROP_OR": 1, + "__DEFAULT": "ROP_AND" + } }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, + "m_numericValue": { + "type": "float", + "id": 2, + "offset": 80, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2102211316 + "hash": 521915239 }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, + "m_operatorType": { + "type": "enum ReqNumeric::OPERATOR_TYPE", + "id": 3, + "offset": 84, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1846695875 + "hash": 2228122961, + "enum_options": { + "OPERATOR_UNKNOWN": 4294967295, + "OPERATOR_EQUALS": 0, + "OPERATOR_GREATER_THAN": 1, + "OPERATOR_LESS_THAN": 2, + "OPERATOR_GREATER_THAN_EQ": 3, + "OPERATOR_LESS_THAN_EQ": 4 + } }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, + "m_galleryWorld": { + "type": "std::string", + "id": 4, + "offset": 88, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3389835433 + "hash": 3310813907 }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, + "m_exhibitName": { + "type": "std::string", + "id": 5, + "offset": 120, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2547159940 + "hash": 1832300681 }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, + "m_testValue": { + "type": "float", + "id": 6, + "offset": 152, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, + "hash": 1624748404 + } + } + }, + "331030263": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 331030263, + "properties": { + "m_powerupLocations": { + "type": "class Vector3D", + "id": 0, + "offset": 72, + "flags": 7, "container": "List", "dynamic": true, "singleton": false, "pointer": false, - "hash": 2587533771 + "hash": 3618004416 }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, + "m_numberOfNodes": { + "type": "int", + "id": 1, + "offset": 88, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3091503757 + "hash": 1229751665 } } }, - "1410034": { - "name": "class SharedPointer", + "331052464": { + "name": "class BoosterPackTemplate*", "bases": [ + "WizItemTemplate", + "ItemTemplate", + "GameObjectTemplate", + "CoreTemplate", "PropertyClass" ], - "hash": 1410034, + "hash": 331052464, "properties": { - "m_locationType": { - "type": "std::string", + "m_behaviors": { + "type": "class BehaviorTemplate*", "id": 0, "offset": 72, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "Vector", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 1824460246 + "pointer": true, + "hash": 1197808594 }, - "m_locationPreference": { + "m_objectName": { "type": "std::string", "id": 1, - "offset": 112, + "offset": 96, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2817699507 + "hash": 2154940147 }, - "m_rotation": { - "type": "float", + "m_templateID": { + "type": "unsigned int", "id": 2, - "offset": 152, - "flags": 7, + "offset": 128, + "flags": 16777223, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1497468551 + "hash": 1286746870 }, - "m_radius": { - "type": "float", + "m_visualID": { + "type": "unsigned int", "id": 3, - "offset": 156, + "offset": 132, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 989410271 + "hash": 1118778894 }, - "m_color": { - "type": "class Color", + "m_adjectiveList": { + "type": "std::string", "id": 4, - "offset": 160, + "offset": 248, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 3195213318 + }, + "m_exemptFromAOI": { + "type": "bool", + "id": 5, + "offset": 240, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1791663549 + "hash": 1457879059 }, - "m_cameras": { - "type": "class SigilCamera*", - "id": 5, + "m_displayName": { + "type": "std::string", + "id": 6, "offset": 168, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2446900370 + }, + "m_description": { + "type": "std::string", + "id": 7, + "offset": 136, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1649374815 + }, + "m_nObjectType": { + "type": "enum ObjectType", + "id": 8, + "offset": 200, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2118905880, + "enum_options": { + "OT_UNDEFINED": 0, + "OT_PLAYER": 1, + "OT_NPC": 2, + "OT_PROP": 3, + "OT_OBJECT": 4, + "OT_HOUSE": 5, + "OT_KEY": 6, + "OT_OLD_KEY": 7, + "OT_DEED": 8, + "OT_MAIL": 9, + "OT_RECIPE": 17, + "OT_EQUIP_HEAD": 10, + "OT_EQUIP_CHEST": 11, + "OT_EQUIP_LEGS": 12, + "OT_EQUIP_HANDS": 13, + "OT_EQUIP_FINGER": 14, + "OT_EQUIP_FEET": 15, + "OT_EQUIP_EAR": 16, + "OT_BUILDING_BLOCK": 18, + "OT_BUILDING_BLOCK_SOLID": 19, + "OT_GOLF": 20, + "OT_DOOR": 21, + "OT_PET": 22, + "OT_FABRIC": 23, + "OT_WINDOW": 24, + "OT_ROOF": 25, + "OT_HORSE": 26, + "OT_STRUCTURE": 27, + "OT_HOUSING_TEXTURE": 28, + "OT_PLANT": 29 + } + }, + "m_sIcon": { + "type": "std::string", + "id": 9, + "offset": 208, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306259831 + }, + "m_equipRequirements": { + "type": "class RequirementList*", + "id": 10, + "offset": 280, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2762617226 + }, + "m_purchaseRequirements": { + "type": "class RequirementList*", + "id": 11, + "offset": 288, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3174641793 + }, + "m_equipEffects": { + "type": "class GameEffectInfo*", + "id": 12, + "offset": 296, "flags": 7, "container": "List", "dynamic": true, "singleton": false, "pointer": true, - "hash": 2715542772 - } - } - }, - "1965470268": { - "name": "class SharedPointer", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 1965470268, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, + "hash": 836628351 + }, + "m_baseCost": { + "type": "float", + "id": 13, + "offset": 312, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3130754092 + "hash": 1565352651 }, - "m_spellbook": { - "type": "std::string", - "id": 1, - "offset": 120, + "m_creditsCost": { + "type": "float", + "id": 14, + "offset": 320, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2689219302 - } - } - }, - "856802": { - "name": "buf8", - "bases": [], - "hash": 856802, - "properties": {} - }, - "1164989609": { - "name": "class GraphicalSpellWindow*", - "bases": [ - "Window", - "PropertyClass" - ], - "hash": 1164989609, - "properties": { - "m_sName": { + "hash": 805514974 + }, + "m_avatarInfo": { + "type": "class AvatarItemInfoBase*", + "id": 15, + "offset": 328, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2627321299 + }, + "m_avatarFlags": { "type": "std::string", - "id": 0, - "offset": 80, - "flags": 135, + "id": 16, + "offset": 336, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2347762759 + }, + "m_itemLimit": { + "type": "int", + "id": 17, + "offset": 316, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2306437263 + "hash": 1799746856 }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, + "m_holidayFlag": { + "type": "std::string", + "id": 18, + "offset": 352, + "flags": 7, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2621225959 + "pointer": false, + "hash": 2994795359 }, - "m_Style": { + "m_itemSetBonusTemplateID": { "type": "unsigned int", - "id": 2, - "offset": 152, - "flags": 1048583, + "id": 19, + "offset": 384, + "flags": 33554439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "SCALE_CHILDREN": 2, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "FOCUS_LOCKED": 64, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152 - } + "hash": 1316835672 }, - "m_Flags": { - "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 1048583, + "m_numPrimaryColors": { + "type": "int", + "id": 20, + "offset": 428, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } + "hash": 981103872 }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, - "flags": 135, + "m_numSecondaryColors": { + "type": "int", + "id": 21, + "offset": 432, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3105139380 + "hash": 1310416868 }, - "m_fTargetAlpha": { - "type": "float", - "id": 5, - "offset": 212, - "flags": 135, + "m_numPatterns": { + "type": "int", + "id": 22, + "offset": 436, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1809129834 + "hash": 953162171 }, - "m_fDisabledAlpha": { - "type": "float", - "id": 6, - "offset": 216, - "flags": 135, + "m_school": { + "type": "std::string", + "id": 23, + "offset": 392, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1389987675 + "hash": 2438566051 }, - "m_fAlpha": { - "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, + "m_arenaPointCost": { + "type": "int", + "id": 24, + "offset": 440, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 482130755 + "hash": 1819621796 }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, + "m_pvpCurrencyCost": { + "type": "int", + "id": 25, + "offset": 444, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3623628394 + "pointer": false, + "hash": 645595444 }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, + "m_pvpTourneyCurrencyCost": { + "type": "int", + "id": 26, + "offset": 448, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2102211316 + "hash": 517874954 }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, + "m_rank": { + "type": "int", + "id": 27, + "offset": 424, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1846695875 + "hash": 219803942 }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, + "m_boyIconIndex": { + "type": "int", + "id": 28, + "offset": 452, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3389835433 + "hash": 802140453 }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, + "m_girlIconIndex": { + "type": "int", + "id": 29, + "offset": 456, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2547159940 + "hash": 832706793 }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, + "m_leashOffsetOverride": { + "type": "class SharedPointer", + "id": 30, + "offset": 464, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1692586788 + }, + "m_rarity": { + "type": "enum RarityType", + "id": 31, + "offset": 460, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1513510520 + "hash": 2253792108, + "enum_options": { + "RT_COMMON": 0, + "RT_UNCOMMON": 1, + "RT_RARE": 2, + "RT_ULTRARARE": 3, + "RT_EPIC": 4 + } }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, + "m_lootTables": { + "type": "std::string", + "id": 32, + "offset": 488, + "flags": 268435463, "container": "List", "dynamic": true, "singleton": false, "pointer": false, - "hash": 2587533771 + "hash": 1514961588, + "enum_options": { + "__BASECLASS": "LootTable" + } }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, + "m_featuredRewards": { + "type": "gid", + "id": 33, + "offset": 504, + "flags": 33554439, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1360288832 + }, + "m_nif": { + "type": "std::string", + "id": 34, + "offset": 520, + "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3091503757 + "hash": 1764743064 }, - "m_spell": { - "type": "class SharedPointer", - "id": 16, - "offset": 584, - "flags": 7, + "m_boosterPackType": { + "type": "enum BoosterPackTemplate::BoosterPackType", + "id": 35, + "offset": 480, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, + "pointer": false, + "hash": 2575057189, + "enum_options": { + "TreasureCards": 0, + "Reagents": 1, + "Snacks": 2, + "GardenTreasureCards": 3, + "Items": 4, + "MixOfVarious": 5, + "RockhammerJewelPack": 6, + "PurreauPack": 7, + "SchoolJewelPack": 8 + } + } + } + }, + "331899708": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 331899708, + "properties": { + "m_items": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, "pointer": true, - "hash": 1393190292 - }, - "m_spellName": { - "type": "std::string", - "id": 17, - "offset": 600, + "hash": 1667746752 + } + } + }, + "331781598": { + "name": "class CastleTourMyCastleDataList*", + "bases": [ + "PropertyClass" + ], + "hash": 331781598, + "properties": { + "m_entryList": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1101912968 + } + } + }, + "331781588": { + "name": "class CastleTourMyCastleDataList", + "bases": [ + "PropertyClass" + ], + "hash": 331781588, + "properties": { + "m_entryList": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1101912968 + } + } + }, + "331845770": { + "name": "class WinAnimDelay*", + "bases": [ + "WindowAnimation", + "PropertyClass" + ], + "hash": 331845770, + "properties": { + "m_bUseDeepCopy": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2688485244 + "hash": 433380635 }, - "m_grayscale": { - "type": "bool", - "id": 18, - "offset": 636, - "flags": 7, + "m_fDelay": { + "type": "float", + "id": 1, + "offset": 80, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 348289198 + "hash": 485432396 + }, + "m_fElapsedTime": { + "type": "float", + "id": 2, + "offset": 84, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1862647402 } } }, - "1965311493": { - "name": "class VariableSpellEffect", + "332169412": { + "name": "class ObstacleCourseModifyTimeBehaviorClient", "bases": [ - "SpellEffect", + "ObstacleCourseModifyTimeBehavior", + "ObstacleCourseObstaclePathBase", + "ObstacleCourseObstacleBehavior", + "BehaviorInstance", "PropertyClass" ], - "hash": 1965311493, + "hash": 332169412, "properties": { - "m_effectType": { - "type": "enum SpellEffect::kSpellEffects", + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + } + } + }, + "331952491": { + "name": "class TitleOption", + "bases": [ + "PropertyClass" + ], + "hash": 331952491, + "properties": { + "m_titleStringKey": { + "type": "std::string", "id": 0, "offset": 72, - "flags": 2097183, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2578255295, - "enum_options": { - "kInvalidSpellEffect": 0, - "kDamage": 1, - "kDamageNoCrit": 2, - "kHeal": 3, - "kHealPercent": 4, - "kSetHealPercent": 113, - "kStealHealth": 5, - "kReduceOverTime": 6, - "kDetonateOverTime": 7, - "kPushCharm": 8, - "kStealCharm": 9, - "kPushWard": 10, - "kStealWard": 11, - "kPushOverTime": 12, - "kStealOverTime": 13, - "kRemoveCharm": 14, - "kRemoveWard": 15, - "kRemoveOverTime": 16, - "kRemoveAura": 17, - "kSwapAll": 18, - "kSwapCharm": 19, - "kSwapWard": 20, - "kSwapOverTime": 21, - "kModifyIncomingDamage": 22, - "kModifyIncomingDamageFlat": 119, - "kMaximumIncomingDamage": 23, - "kModifyIncomingHeal": 24, - "kModifyIncomingHealFlat": 118, - "kModifyIncomingDamageType": 25, - "kModifyIncomingArmorPiercing": 26, - "kModifyOutgoingDamage": 27, - "kModifyOutgoingDamageFlat": 121, - "kModifyOutgoingHeal": 28, - "kModifyOutgoingHealFlat": 120, - "kModifyOutgoingDamageType": 29, - "kModifyOutgoingArmorPiercing": 30, - "kModifyOutgoingStealHealth": 31, - "kModifyIncomingStealHealth": 32, - "kBounceNext": 33, - "kBouncePrevious": 34, - "kBounceBack": 35, - "kBounceAll": 36, - "kAbsorbDamage": 37, - "kAbsorbHeal": 38, - "kModifyAccuracy": 39, - "kDispel": 40, - "kConfusion": 41, - "kCloakedCharm": 42, - "kCloakedWard": 43, - "kStunResist": 44, - "kClue": 111, - "kPipConversion": 45, - "kCritBoost": 46, - "kCritBlock": 47, - "kPolymorph": 48, - "kDelayCast": 49, - "kModifyCardCloak": 50, - "kModifyCardDamage": 51, - "kModifyCardAccuracy": 53, - "kModifyCardMutation": 54, - "kModifyCardRank": 55, - "kModifyCardArmorPiercing": 56, - "kSummonCreature": 65, - "kTeleportPlayer": 66, - "kStun": 67, - "kDampen": 68, - "kReshuffle": 69, - "kMindControl": 70, - "kModifyPips": 71, - "kModifyPowerPips": 72, - "kModifyShadowPips": 73, - "kModifyHate": 74, - "kDamageOverTime": 75, - "kHealOverTime": 76, - "kModifyPowerPipChance": 77, - "kModifyRank": 78, - "kStunBlock": 79, - "kRevealCloak": 80, - "kInstantKill": 81, - "kAfterlife": 82, - "kDeferredDamage": 83, - "kDamagePerTotalPipPower": 84, - "kModifyCardHeal": 52, - "kModifyCardCharm": 57, - "kModifyCardWard": 58, - "kModifyCardOutgoingDamage": 59, - "kModifyCardOutgoingAccuracy": 60, - "kModifyCardOutgoingHeal": 61, - "kModifyCardOutgoingArmorPiercing": 62, - "kModifyCardIncomingDamage": 63, - "kModifyCardAbsorbDamage": 64, - "kCloakedWardNoRemove": 86, - "kAddCombatTriggerList": 87, - "kRemoveCombatTriggerList": 88, - "kBacklashDamage": 89, - "kModifyBacklash": 90, - "kIntercept": 91, - "kShadowSelf": 92, - "kShadowCreature": 93, - "kModifyShadowCreatureLevel": 94, - "kSelectShadowCreatureAttackTarget": 95, - "kShadowDecrementTurn": 96, - "kCritBoostSchoolSpecific": 97, - "kSpawnCreature": 98, - "kUnPolymorph": 99, - "kPowerPipConversion": 100, - "kProtectCardBeneficial": 101, - "kProtectCardHarmful": 102, - "kProtectBeneficial": 103, - "kProtectHarmful": 104, - "kDivideDamage": 105, - "kCollectEssence": 106, - "kKillCreature": 107, - "kDispelBlock": 108, - "kConfusionBlock": 109, - "kModifyPipRoundRate": 110, - "kMaxHealthDamage": 112, - "kUntargetable": 114, - "kMakeTargetable": 115, - "kForceTargetable": 116, - "kRemoveStunBlock": 117, - "kExitCombat": 122, - "kSuspendPips": 123, - "kResumePips": 124, - "kAutoPass": 125, - "kStopAutoPass": 126, - "kVanish": 127, - "kStopVanish": 128, - "kMaxHealthHeal": 129, - "kHealByWard": 130, - "kTaunt": 131, - "kPacify": 132, - "kRemoveTargetRestriction": 133, - "kConvertHangingEffect": 134, - "kAddSpellToDeck": 135, - "kAddSpellToHand": 136, - "kModifyIncomingDamageOverTime": 137, - "kModifyIncomingHealOverTime": 138, - "kModifyCardDamagebyRank": 139, - "kPushConvertedCharm": 140, - "kStealConvertedCharm": 141, - "kPushConvertedWard": 142, - "kStealConvertedWard": 143, - "kPushConvertedOverTime": 144, - "kStealConvertedOverTime": 145, - "kRemoveConvertedCharm": 146, - "kRemoveConvertedWard": 147, - "kRemoveConvertedOverTime": 148, - "kModifyOverTimeDuration": 149, - "kModifySchoolPips": 150 - } + "hash": 1751250333 }, - "m_effectParam": { + "m_cost": { "type": "int", "id": 1, - "offset": 76, + "offset": 104, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 357920024 + "hash": 219280307 + } + } + }, + "332175717": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 332175717, + "properties": { + "m_nActorID": { + "type": "gid", + "id": 0, + "offset": 88, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 663762476 }, - "m_disposition": { - "type": "enum SpellEffect::kHangingDisposition", + "m_nLadderContainerID": { + "type": "gid", + "id": 1, + "offset": 96, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 782107042 + }, + "m_nTournamentNameID": { + "type": "unsigned int", "id": 2, - "offset": 80, - "flags": 2097159, + "offset": 104, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1904841031, - "enum_options": { - "kBoth": 0, - "kBeneficial": 1, - "kHarmful": 2 - } + "hash": 471412886 }, - "m_sDamageType": { - "type": "std::string", + "m_nTournamentID": { + "type": "gid", "id": 3, - "offset": 88, - "flags": 7, + "offset": 112, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2501054223 + "hash": 105258688 }, - "m_damageType": { + "m_leagueID": { "type": "unsigned int", "id": 4, - "offset": 84, + "offset": 124, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 737882766 + "hash": 692361645 }, - "m_pipNum": { - "type": "int", + "m_seasonID": { + "type": "unsigned int", "id": 5, - "offset": 128, - "flags": 7, + "offset": 120, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 830827539 + "hash": 535260643 }, - "m_actNum": { - "type": "int", + "m_nMatchNameID": { + "type": "unsigned int", "id": 6, - "offset": 132, + "offset": 128, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 236824866 + "hash": 497033398 }, - "m_effectTarget": { - "type": "enum SpellEffect::kEffectTarget", + "m_nMatchID": { + "type": "gid", "id": 7, - "offset": 140, - "flags": 2097183, + "offset": 136, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2458940523, - "enum_options": { - "kInvalidTarget": 0, - "kSpell": 1, - "kSpecificSpells": 2, - "kGlobal": 3, - "kEnemyTeam": 4, - "kEnemyTeamAllAtOnce": 5, - "kFriendlyTeam": 6, - "kFriendlyTeamAllAtOnce": 7, - "kEnemySingle": 8, - "kFriendlySingle": 9, - "kMinion": 10, - "kFriendlyMinion": 17, - "kEnemyMinion": 18, - "kSelf": 11, - "kAtLeastOneEnemy": 13, - "kPreselectedEnemySingle": 12, - "kMultiTargetEnemy": 14, - "kMultiTargetFriendly": 15, - "kFriendlySingleNotMe": 16 - } + "hash": 1050279648 }, - "m_numRounds": { - "type": "int", + "m_nTeamID": { + "type": "gid", "id": 8, "offset": 144, "flags": 31, @@ -500530,417 +272046,338 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 1229753829 + "hash": 374990266 }, - "m_paramPerRound": { + "m_status": { "type": "int", "id": 9, - "offset": 148, + "offset": 160, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 683234234 + "hash": 960781182 }, - "m_healModifier": { - "type": "float", + "m_costAdj": { + "type": "class MatchCostAdjustment", "id": 10, - "offset": 152, - "flags": 7, + "offset": 200, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1317921248, - "enum_options": { - "__DEFAULT": "1.0" - } + "hash": 913243331 }, - "m_spellTemplateID": { - "type": "unsigned int", + "m_pLadder": { + "type": "class SharedPointer", "id": 11, - "offset": 120, + "offset": 304, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 585567702 + "pointer": true, + "hash": 2484171182 }, - "m_enchantmentSpellTemplateID": { - "type": "unsigned int", + "m_bracketID": { + "type": "gid", "id": 12, - "offset": 124, + "offset": 152, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 246955115 + "hash": 441272961 }, - "m_act": { - "type": "bool", + "m_overridingELO": { + "type": "int", "id": 13, - "offset": 136, - "flags": 7, + "offset": 284, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 269510283 + "hash": 1428697363 }, - "m_cloaked": { - "type": "bool", + "m_matchKFactor": { + "type": "int", "id": 14, - "offset": 157, + "offset": 288, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 7349510 + "hash": 773340305 }, - "m_bypassProtection": { - "type": "bool", + "m_userID": { + "type": "gid", "id": 15, - "offset": 159, + "offset": 80, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1657138252 + "hash": 1037989700 }, - "m_armorPiercingParam": { - "type": "int", + "m_matchMakingRangeForMatches": { + "type": "unsigned int", "id": 16, - "offset": 160, + "offset": 320, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2025530205 + "hash": 1193045098 }, - "m_chancePerTarget": { - "type": "int", + "m_maxMatchMakingRangeForMatches": { + "type": "unsigned int", "id": 17, - "offset": 164, + "offset": 324, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 845426794 + "hash": 1279540944 }, - "m_protected": { + "m_allowRangeToExceedMaxForMatches": { "type": "bool", "id": 18, - "offset": 168, + "offset": 328, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1445655037 + "hash": 1260448226 }, - "m_converted": { - "type": "bool", + "m_matchCrownsCost": { + "type": "int", "id": 19, - "offset": 169, + "offset": 280, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1590428797 + "hash": 1094489596 }, - "m_rank": { - "type": "int", + "m_machineID": { + "type": "gid", "id": 20, - "offset": 208, - "flags": 7, + "offset": 336, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 219803942 + "hash": 281396698 }, - "m_effectList": { - "type": "class SharedPointer", + "m_tier": { + "type": "int", "id": 21, - "offset": 224, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 707154804 - } - } - }, - "1558000529": { - "name": "class SharedPointer", - "bases": [ - "Window", - "PropertyClass" - ], - "hash": 1558000529, - "properties": { - "m_sName": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306437263 - }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621225959 - }, - "m_Style": { - "type": "unsigned int", - "id": 2, - "offset": 152, - "flags": 1048583, + "offset": 344, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "SCALE_CHILDREN": 2, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "FOCUS_LOCKED": 64, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152 - } + "hash": 219884238 }, - "m_Flags": { - "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 1048583, + "m_rank": { + "type": "int", + "id": 22, + "offset": 348, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } + "hash": 219803942 }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, - "flags": 135, + "m_rating": { + "type": "int", + "id": 23, + "offset": 352, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3105139380 + "hash": 899783871 }, - "m_fTargetAlpha": { - "type": "float", - "id": 5, - "offset": 212, - "flags": 135, + "m_levelBand": { + "type": "int", + "id": 24, + "offset": 356, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1809129834 + "hash": 2097286567 }, - "m_fDisabledAlpha": { - "type": "float", - "id": 6, - "offset": 216, - "flags": 135, + "m_enteredQueue": { + "type": "int", + "id": 25, + "offset": 376, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1389987675 + "hash": 638238406 }, - "m_fAlpha": { - "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, + "m_isSubscriber": { + "type": "bool", + "id": 26, + "offset": 428, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 482130755 + "hash": 952325795 }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, + "m_meetBracketBadgeRequirnments": { + "type": "bool", + "id": 27, + "offset": 429, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3623628394 + "pointer": false, + "hash": 438139258 }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, + "m_1v1": { + "type": "bool", + "id": 28, + "offset": 430, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2102211316 + "hash": 269458571 }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, + "m_streak": { + "type": "int", + "id": 29, + "offset": 360, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1846695875 + "hash": 961375108 }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, + "m_matches": { + "type": "int", + "id": 30, + "offset": 364, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3389835433 + "hash": 1757638687 }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, + "m_lastFight": { + "type": "int", + "id": 31, + "offset": 368, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2547159940 + "hash": 91176384 }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, + "m_PVPHistoryStr": { + "type": "std::string", + "id": 32, + "offset": 384, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1513510520 + "hash": 1498439420 }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, + "m_maxCritHit": { + "type": "float", + "id": 33, + "offset": 416, + "flags": 31, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 2587533771 + "hash": 2225327348 }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, + "m_maxBlockCrit": { + "type": "float", + "id": 34, + "offset": 420, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3091503757 + "hash": 135865530 }, - "m_bButtonDown": { - "type": "bool", - "id": 16, - "offset": 584, - "flags": 135, + "m_shadowPipRating": { + "type": "float", + "id": 35, + "offset": 424, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 840041705 + "hash": 507126123 }, - "m_bCursorOver": { - "type": "bool", - "id": 17, - "offset": 585, - "flags": 135, + "m_optInOut": { + "type": "std::string", + "id": 36, + "offset": 168, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 283981103 + "hash": 3013935453 }, - "m_bSavedCursorOver": { + "m_playerTimeDraw": { "type": "bool", - "id": 18, - "offset": 586, - "flags": 135, + "id": 37, + "offset": 431, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1803318978 + "hash": 447636221 } } }, - "396256952": { - "name": "class CameraFadeCinematicAction*", + "332889952": { + "name": "class ClientBanishBacklashEffectCinematicAction*", "bases": [ + "BanishBacklashEffectCinematicAction", + "ActorCinematicAction", "CinematicAction", "PropertyClass" ], - "hash": 396256952, + "hash": 332889952, "properties": { "m_timeOffset": { "type": "float", @@ -500953,8 +272390,8 @@ "pointer": false, "hash": 2237098605 }, - "m_fDuration": { - "type": "float", + "m_actor": { + "type": "std::string", "id": 1, "offset": 80, "flags": 7, @@ -500962,1008 +272399,936 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 598255075 - }, - "m_bCycle": { - "type": "bool", - "id": 2, - "offset": 84, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 240694213 - }, - "m_bFadeIn": { - "type": "bool", - "id": 3, - "offset": 85, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1507201372 + "hash": 2285866132 } } }, - "1164677937": { - "name": "class SharedPointer", + "332851697": { + "name": "class SharedPointer", "bases": [ - "CoreTemplate", "PropertyClass" ], - "hash": 1164677937, + "hash": 332851697, "properties": { - "m_behaviors": { - "type": "class BehaviorTemplate*", + "m_GroupID": { + "type": "gid", "id": 0, "offset": 72, - "flags": 7, - "container": "Vector", - "dynamic": true, + "flags": 31, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1197808594 + "pointer": false, + "hash": 586506386 }, - "m_templateID": { - "type": "unsigned int", + "m_ChannelID": { + "type": "gid", "id": 1, - "offset": 96, - "flags": 33554463, + "offset": 80, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1286746870 + "hash": 1585983742 }, - "m_name": { - "type": "std::string", + "m_MemberList": { + "type": "class SharedPointer", "id": 2, - "offset": 104, - "flags": 134217759, - "container": "Static", - "dynamic": false, + "offset": 88, + "flags": 31, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 1717359772 + "pointer": true, + "hash": 2864705424 }, - "m_description": { - "type": "std::string", + "m_nMaxSize": { + "type": "unsigned int", "id": 3, - "offset": 136, - "flags": 8388639, + "offset": 104, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1649374815 + "hash": 1265869948 }, - "m_combatTriggers": { - "type": "std::string", + "m_fromAdventureParty": { + "type": "bool", "id": 4, - "offset": 168, + "offset": 128, "flags": 31, - "container": "List", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 3023646200 + "hash": 940992997 }, - "m_battlefieldEffects": { - "type": "class SharedPointer", + "m_leaderGID": { + "type": "gid", "id": 5, - "offset": 184, + "offset": 136, "flags": 31, - "container": "Vector", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1245973515 + "pointer": false, + "hash": 700505145 }, - "m_gameEffects": { - "type": "class SharedPointer", + "m_questGID": { + "type": "gid", "id": 6, - "offset": 208, + "offset": 144, "flags": 31, - "container": "List", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1187421775 + "pointer": false, + "hash": 331631550 }, - "m_combatRules": { - "type": "class SharedPointer", + "m_goalGID": { + "type": "gid", "id": 7, - "offset": 240, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 3327225763 - }, - "m_noCrits": { - "type": "bool", - "id": 8, - "offset": 224, + "offset": 152, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1394430197 - }, - "m_noTreasureCards": { - "type": "bool", - "id": 9, - "offset": 225, - "flags": 31, + "hash": 976914927 + } + } + }, + "332607721": { + "name": "class SwapShadowMaterialActorCinematicAction", + "bases": [ + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 332607721, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1653008424 + "hash": 2237098605 }, - "m_bannedEquipment": { - "type": "int", - "id": 10, - "offset": 256, - "flags": 33554463, - "container": "List", - "dynamic": true, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 697457018 - }, - "m_bannedEquipmentSlots": { - "type": "std::string", - "id": 11, - "offset": 288, - "flags": 31, - "container": "List", - "dynamic": true, + "hash": 2285866132 + } + } + }, + "332869472": { + "name": "class ClientBanishBacklashEffectCinematicAction", + "bases": [ + "BanishBacklashEffectCinematicAction", + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 332869472, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 2291474320 + "hash": 2237098605 }, - "m_bannedSchools": { + "m_actor": { "type": "std::string", - "id": 12, - "offset": 320, - "flags": 31, - "container": "List", - "dynamic": true, + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 2417746270 - }, - "m_requiredSpellsAdjectives": { - "type": "std::string", - "id": 13, - "offset": 352, - "flags": 31, + "hash": 2285866132 + } + } + }, + "333327714": { + "name": "class ObjectLocationList*", + "bases": [ + "PropertyClass" + ], + "hash": 333327714, + "properties": { + "m_objectList": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 7, "container": "List", "dynamic": true, "singleton": false, - "pointer": false, - "hash": 2759718993 - }, - "m_bannedSpellsAdjectives": { + "pointer": true, + "hash": 931236576 + } + } + }, + "333085065": { + "name": "class SharedPointer", + "bases": [ + "GameEffectInfo", + "PropertyClass" + ], + "hash": 333085065, + "properties": { + "m_effectName": { "type": "std::string", - "id": 14, - "offset": 384, + "id": 0, + "offset": 72, "flags": 31, - "container": "List", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 2971738904 + "hash": 2029161513 }, - "m_leftDoodle": { - "type": "std::string", - "id": 15, - "offset": 744, - "flags": 131103, + "m_bIsOnPet": { + "type": "bool", + "id": 1, + "offset": 104, + "flags": 263, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1523671421 - }, - "m_rightDoodle": { - "type": "std::string", - "id": 16, - "offset": 776, - "flags": 131103, + "hash": 522593303 + } + } + }, + "334996027": { + "name": "class SharedPointer", + "bases": [ + "BaseBadgeBehavior", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 334996027, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2828021488 + "hash": 223437287 }, - "m_onlyTreasureCards": { - "type": "bool", - "id": 17, - "offset": 226, - "flags": 31, + "m_badgeData": { + "type": "std::string", + "id": 1, + "offset": 160, + "flags": 575, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 752220749 - }, - "m_noShadowSpells": { - "type": "bool", - "id": 18, - "offset": 227, - "flags": 31, + "hash": 3002588904 + } + } + }, + "340150373": { + "name": "class SG_GameBlockType", + "bases": [ + "PropertyClass" + ], + "hash": 340150373, + "properties": { + "m_adjective": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2142185705 + "hash": 3429518154 }, - "m_noEnchantedTreasureCards": { - "type": "bool", - "id": 19, - "offset": 228, - "flags": 31, - "container": "Static", - "dynamic": false, + "m_subTypePointPairs": { + "type": "std::string", + "id": 1, + "offset": 104, + "flags": 7, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 1780948882 + "hash": 2463625808 }, - "m_noEnchantmentSpells": { - "type": "bool", - "id": 20, - "offset": 229, - "flags": 31, + "m_pointsGainedList": { + "type": "std::string", + "id": 2, + "offset": 120, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1744394364 + } + } + }, + "337702974": { + "name": "class PetBoostPlayerStatEffect", + "bases": [ + "WizStatisticEffect", + "StatisticEffect", + "GameEffectBase", + "PropertyClass" + ], + "hash": 337702974, + "properties": { + "m_currentTickCount": { + "type": "double", + "id": 0, + "offset": 80, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1325982520 + "hash": 2533274692 }, - "m_noMaycastSpells": { - "type": "bool", - "id": 21, - "offset": 230, - "flags": 31, + "m_effectNameID": { + "type": "unsigned int", + "id": 1, + "offset": 96, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1409034133 + "hash": 1204067144 }, - "m_enableSpellLevelRestrictions": { + "m_bIsOnPet": { "type": "bool", - "id": 22, - "offset": 231, + "id": 2, + "offset": 73, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1272415451 + "hash": 522593303 }, - "m_ignoreSpellsPvPOnlyFlag": { - "type": "bool", - "id": 23, - "offset": 232, - "flags": 31, + "m_originatorID": { + "type": "gid", + "id": 3, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1714276188 + "hash": 1131810019 }, - "m_ignoreSpellsPvEOnlyFlag": { - "type": "bool", - "id": 24, - "offset": 233, - "flags": 31, + "m_itemSlotID": { + "type": "unsigned int", + "id": 4, + "offset": 112, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1691675729 + "hash": 1895747595 }, - "m_newRulesFlag": { - "type": "bool", - "id": 25, - "offset": 736, - "flags": 31, + "m_internalID": { + "type": "int", + "id": 5, + "offset": 92, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2040511330 + "hash": 1643137924 }, - "m_ruleText": { - "type": "std::string", - "id": 26, - "offset": 448, - "flags": 8388639, + "m_endTime": { + "type": "unsigned int", + "id": 6, + "offset": 88, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1754346744 + "hash": 716479635 }, - "m_gameTypeText": { - "type": "std::string", - "id": 27, - "offset": 416, - "flags": 8388639, + "m_lookupIndex": { + "type": "int", + "id": 7, + "offset": 128, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1885530300 + "hash": 1626623948 }, - "m_combatTriggersDescText": { - "type": "std::string", - "id": 28, - "offset": 480, - "flags": 8388639, + "m_damageBonusPercent": { + "type": "float", + "id": 8, + "offset": 136, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2417600380 + "hash": 623230606 }, - "m_battlefieldEffectsDescText": { - "type": "std::string", - "id": 29, - "offset": 512, - "flags": 8388639, + "m_damageBonusFlat": { + "type": "float", + "id": 9, + "offset": 180, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3278371679 + "hash": 2212039108 }, - "m_gameEffectsDescText": { - "type": "std::string", - "id": 30, - "offset": 544, - "flags": 8388639, + "m_accuracyBonusPercent": { + "type": "float", + "id": 10, + "offset": 140, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2965245049 + "hash": 1972336538 }, - "m_spellLevelRestrictionsDescText": { - "type": "std::string", - "id": 31, - "offset": 576, - "flags": 8388639, + "m_armorPiercingBonusPercent": { + "type": "float", + "id": 11, + "offset": 144, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3306238112 + "hash": 1569912641 }, - "m_combatRulesDescText": { - "type": "std::string", - "id": 32, - "offset": 608, - "flags": 8388639, + "m_damageReducePercent": { + "type": "float", + "id": 12, + "offset": 148, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3064659424 + "hash": 541736927 }, - "m_bannedEquipmentDescText": { - "type": "std::string", - "id": 33, - "offset": 640, - "flags": 8388639, + "m_damageReduceFlat": { + "type": "float", + "id": 13, + "offset": 152, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1681120031 + "hash": 684172469 }, - "m_requiredSpellsDescText": { - "type": "std::string", - "id": 34, - "offset": 672, - "flags": 8388639, + "m_accuracyReducePercent": { + "type": "float", + "id": 14, + "offset": 156, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2035585939 + "hash": 2112559723 }, - "m_bannedSpellsDescText": { - "type": "std::string", - "id": 35, - "offset": 704, - "flags": 8388639, + "m_healBonusPercent": { + "type": "float", + "id": 15, + "offset": 160, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2010144922 - } - } - }, - "1964085648": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1964085648, - "properties": { - "m_unitType": { - "type": "unsigned char", - "id": 0, - "offset": 72, - "flags": 7, + "hash": 562313577 + }, + "m_healIncBonusPercent": { + "type": "float", + "id": 16, + "offset": 164, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1498103218 + "hash": 2182535587 }, - "m_cardUsed": { - "type": "unsigned int", - "id": 1, - "offset": 76, - "flags": 7, + "m_hitPointBonus": { + "type": "float", + "id": 17, + "offset": 204, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1315653400 + "hash": 880644461 }, - "m_passport": { - "type": "unsigned int", - "id": 2, - "offset": 80, - "flags": 7, + "m_spellChargeBonus": { + "type": "int", + "id": 18, + "offset": 212, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1362521513 + "hash": 2019610507 }, - "m_unitMovementList": { - "type": "unsigned int", - "id": 3, - "offset": 88, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 687999892 - } - } - }, - "1557997905": { - "name": "class SharedPointer", - "bases": [ - "Window", - "PropertyClass" - ], - "hash": 1557997905, - "properties": { - "m_sName": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 135, + "m_powerPipBonusPercent": { + "type": "float", + "id": 19, + "offset": 168, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2306437263 - }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621225959 + "hash": 1671446341 }, - "m_Style": { - "type": "unsigned int", - "id": 2, - "offset": 152, - "flags": 1048583, + "m_petActChance": { + "type": "int", + "id": 20, + "offset": 200, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "SCALE_CHILDREN": 2, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "FOCUS_LOCKED": 64, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152 - } + "hash": 237418461 }, - "m_Flags": { - "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 1048583, + "m_manaBonus": { + "type": "float", + "id": 21, + "offset": 208, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } + "hash": 1372708603 }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, - "flags": 135, + "m_expPercent": { + "type": "float", + "id": 22, + "offset": 184, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3105139380 + "hash": 1147850677 }, - "m_fTargetAlpha": { + "m_goldPercent": { "type": "float", - "id": 5, - "offset": 212, - "flags": 135, + "id": 23, + "offset": 188, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1809129834 + "hash": 1095720878 }, - "m_fDisabledAlpha": { + "m_energyBonus": { "type": "float", - "id": 6, + "id": 24, "offset": 216, - "flags": 135, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1389987675 + "hash": 2223158984 }, - "m_fAlpha": { + "m_criticalHitRating": { "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, + "id": 25, + "offset": 220, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 482130755 + "hash": 1978690540 }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, + "m_blockRating": { + "type": "float", + "id": 26, + "offset": 224, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3623628394 + "pointer": false, + "hash": 2088486759 }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, + "m_accuracyRating": { + "type": "float", + "id": 27, + "offset": 228, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2102211316 + "hash": 165525575 }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, + "m_powerPipRating": { + "type": "float", + "id": 28, + "offset": 232, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1846695875 + "hash": 1355340722 }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, + "m_damageResistanceRating": { + "type": "float", + "id": 29, + "offset": 240, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3389835433 + "hash": 1961377740 }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, + "m_archmastery": { + "type": "float", + "id": 30, + "offset": 244, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2547159940 + "hash": 1963579610 }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, + "m_archmasteryBonusPercent": { + "type": "float", + "id": 31, + "offset": 288, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2587533771 + "hash": 1908627154 }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, + "m_balanceMastery": { + "type": "int", + "id": 32, + "offset": 248, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3091503757 + "hash": 149062181 }, - "m_Color": { - "type": "class Color", - "id": 16, - "offset": 584, - "flags": 262279, + "m_deathMastery": { + "type": "int", + "id": 33, + "offset": 252, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1753714077 - } - } - }, - "396027674": { - "name": "class SharedPointer", - "bases": [ - "WizGameObjectTemplate", - "GameObjectTemplate", - "CoreTemplate", - "PropertyClass" - ], - "hash": 396027674, - "properties": { - "m_behaviors": { - "type": "class BehaviorTemplate*", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1197808594 + "hash": 1421218661 }, - "m_objectName": { - "type": "std::string", - "id": 1, - "offset": 96, - "flags": 7, + "m_fireMastery": { + "type": "int", + "id": 34, + "offset": 256, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2154940147 + "hash": 1431794949 }, - "m_templateID": { - "type": "unsigned int", - "id": 2, - "offset": 128, - "flags": 16777223, + "m_iceMastery": { + "type": "int", + "id": 35, + "offset": 260, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1286746870 + "hash": 704864240 }, - "m_visualID": { - "type": "unsigned int", - "id": 3, - "offset": 132, - "flags": 7, + "m_lifeMastery": { + "type": "int", + "id": 36, + "offset": 264, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1118778894 - }, - "m_adjectiveList": { - "type": "std::string", - "id": 4, - "offset": 248, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 3195213318 + "hash": 2142136447 }, - "m_exemptFromAOI": { - "type": "bool", - "id": 5, - "offset": 240, - "flags": 7, + "m_mythMastery": { + "type": "int", + "id": 37, + "offset": 268, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1457879059 + "hash": 1766317185 }, - "m_displayName": { - "type": "std::string", - "id": 6, - "offset": 168, - "flags": 8388615, + "m_stormMastery": { + "type": "int", + "id": 38, + "offset": 272, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2446900370 + "hash": 1883988244 }, - "m_description": { - "type": "std::string", - "id": 7, - "offset": 136, - "flags": 8388615, + "m_stunResistancePercent": { + "type": "float", + "id": 39, + "offset": 276, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1649374815 + "hash": 1868382627 }, - "m_nObjectType": { - "type": "enum ObjectType", - "id": 8, - "offset": 200, - "flags": 2097159, + "m_fishingLuckBonusPercent": { + "type": "float", + "id": 40, + "offset": 192, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2118905880, - "enum_options": { - "OT_UNDEFINED": 0, - "OT_PLAYER": 1, - "OT_NPC": 2, - "OT_PROP": 3, - "OT_OBJECT": 4, - "OT_HOUSE": 5, - "OT_KEY": 6, - "OT_OLD_KEY": 7, - "OT_DEED": 8, - "OT_MAIL": 9, - "OT_RECIPE": 17, - "OT_EQUIP_HEAD": 10, - "OT_EQUIP_CHEST": 11, - "OT_EQUIP_LEGS": 12, - "OT_EQUIP_HANDS": 13, - "OT_EQUIP_FINGER": 14, - "OT_EQUIP_FEET": 15, - "OT_EQUIP_EAR": 16, - "OT_BUILDING_BLOCK": 18, - "OT_BUILDING_BLOCK_SOLID": 19, - "OT_GOLF": 20, - "OT_DOOR": 21, - "OT_PET": 22, - "OT_FABRIC": 23, - "OT_WINDOW": 24, - "OT_ROOF": 25, - "OT_HORSE": 26, - "OT_STRUCTURE": 27, - "OT_HOUSING_TEXTURE": 28, - "OT_PLANT": 29 - } + "hash": 1363349254 }, - "m_sIcon": { - "type": "std::string", - "id": 9, - "offset": 208, - "flags": 131079, + "m_shadowPipBonusPercent": { + "type": "float", + "id": 41, + "offset": 172, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2306259831 - }, - "m_lootTable": { - "type": "std::string", - "id": 10, - "offset": 280, - "flags": 268435463, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2539512673, - "enum_options": { - "__BASECLASS": "LootTable" - } + "hash": 1426533310 }, - "m_deathParticles": { - "type": "std::string", - "id": 11, - "offset": 296, - "flags": 131079, + "m_wispBonusPercent": { + "type": "float", + "id": 42, + "offset": 196, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3201049672 + "hash": 1304386546 }, - "m_deathSound": { - "type": "std::string", - "id": 12, - "offset": 328, - "flags": 131079, + "m_pipConversionRating": { + "type": "float", + "id": 43, + "offset": 280, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1865613610 + "hash": 246855691 }, - "m_hitSound": { - "type": "std::string", - "id": 13, - "offset": 360, - "flags": 131079, + "m_shadowPipRating": { + "type": "float", + "id": 44, + "offset": 236, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2746656777 + "hash": 507126123 }, - "m_castSound": { - "type": "std::string", - "id": 14, - "offset": 392, - "flags": 131079, + "m_petID": { + "type": "gid", + "id": 45, + "offset": 304, + "flags": 24, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3343064815 + "hash": 806009486 }, - "m_aggroSound": { + "m_primaryStat1": { "type": "std::string", - "id": 15, - "offset": 424, - "flags": 131079, + "id": 46, + "offset": 312, + "flags": 24, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3421949940 + "hash": 2417808140 }, - "m_primarySchoolName": { + "m_primaryStat2": { "type": "std::string", - "id": 16, - "offset": 456, - "flags": 7, + "id": 47, + "offset": 344, + "flags": 24, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3211370408 + "hash": 2417808141 }, - "m_locationPreference": { + "m_secondaryStat": { "type": "std::string", - "id": 17, - "offset": 488, - "flags": 7, + "id": 48, + "offset": 376, + "flags": 24, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2817699507 + "hash": 3564684959 }, - "m_leashOffsetOverride": { - "type": "class SharedPointer", - "id": 18, - "offset": 528, - "flags": 7, + "m_secondaryValue": { + "type": "float", + "id": 49, + "offset": 408, + "flags": 24, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1692586788 + "pointer": false, + "hash": 1728780796 } } }, - "1163827125": { - "name": "class RaidManagerBehavior*", + "337312279": { + "name": "class PvPTourneyCurrencyLootInfo", "bases": [ - "BehaviorInstance", + "LootInfo", + "LootInfoBase", "PropertyClass" ], - "hash": 1163827125, + "hash": 337312279, "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", + "m_lootType": { + "type": "enum LootInfo::LOOT_TYPE", "id": 0, - "offset": 104, - "flags": 39, + "offset": 72, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 + "hash": 1591891442, + "enum_options": { + "LOOT_TYPE_NONE": 0, + "LOOT_TYPE_GOLD": 1, + "LOOT_TYPE_MANA": 2, + "LOOT_TYPE_ITEM": 3, + "LOOT_TYPE_TREASURE_CARD": 4, + "LOOT_TYPE_MAGIC_XP": 5, + "LOOT_TYPE_ADD_SPELL": 6, + "LOOT_TYPE_MAX_HEALTH": 7, + "LOOT_TYPE_MAX_GOLD": 8, + "LOOT_TYPE_MAX_MANA": 9, + "LOOT_TYPE_MAX_POTION": 10, + "LOOT_TYPE_TRAINING_POINTS": 11, + "LOOT_TYPE_RECIPE": 12, + "LOOT_TYPE_CRAFTING_SLOT": 13, + "LOOT_TYPE_REAGENT": 14, + "LOOT_TYPE_PETSNACK": 15, + "LOOT_TYPE_GARDENING_XP": 16, + "LOOT_TYPE_PET_XP": 17, + "LOOT_TYPE_TREASURE_TABLE": 18, + "LOOT_TYPE_ARENA_POINTS": 19, + "LOOT_TYPE_ARENA_BONUS_POINTS": 20, + "LOOT_TYPE_GROUP": 21, + "LOOT_TYPE_FISHING_XP": 22, + "LOOT_TYPE_EVENT_CURRENCY_1": 24, + "LOOT_TYPE_EVENT_CURRENCY_2": 25, + "LOOT_TYPE_PVP_CURRENCY": 26, + "LOOT_TYPE_PVP_CURRENCY_BONUS": 27, + "LOOT_TYPE_PVP_TOURNEY_CURRENCY": 28, + "LOOT_TYPE_PVP_TOURNEY_CURRENCY_BONUS": 29, + "LOOT_TYPE_FURNITURE_ESSENCE": 30 + } + }, + "m_pvpTourneyCurrencyAmount": { + "type": "int", + "id": 1, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1148086373 } } }, - "1410091": { - "name": "class GraphicalPvPCurrencyBonus*", + "337183319": { + "name": "class SharedPointer", "bases": [ "GraphicalSpell", "Spell", "PropertyClass" ], - "hash": 1410091, + "hash": 337183319, "properties": { "m_templateID": { "type": "unsigned int", @@ -502222,65 +273587,158 @@ "singleton": false, "pointer": false, "hash": 2081206026 + }, + "m_fusionState": { + "type": "enum Spell::FusionState", + "id": 23, + "offset": 308, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 835324539, + "enum_options": { + "FS_Invalid": 0, + "FS_Partial": 1, + "FS_Valid": 2 + } } } }, - "1557874588": { - "name": "class ReqHasShadowMagic", + "336820599": { + "name": "class ShadowCreatureCameraCutCinematicAction", "bases": [ - "Requirement", + "ActorCinematicAction", + "CinematicAction", "PropertyClass" ], - "hash": 1557874588, + "hash": 336820599, "properties": { - "m_applyNOT": { - "type": "bool", + "m_timeOffset": { + "type": "float", "id": 0, "offset": 72, - "flags": 31, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1746328074, - "enum_options": { - "__DEFAULT": 0 - } + "hash": 2237098605 }, - "m_operator": { - "type": "enum Requirement::Operator", + "m_actor": { + "type": "std::string", "id": 1, - "offset": 76, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + } + } + }, + "337221590": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 337221590, + "properties": {} + }, + "337312285": { + "name": "class PvPTourneyCurrencyLootInfo*", + "bases": [ + "LootInfo", + "LootInfoBase", + "PropertyClass" + ], + "hash": 337312285, + "properties": { + "m_lootType": { + "type": "enum LootInfo::LOOT_TYPE", + "id": 0, + "offset": 72, "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2672792317, + "hash": 1591891442, "enum_options": { - "ROP_AND": 0, - "ROP_OR": 1, - "__DEFAULT": "ROP_AND" + "LOOT_TYPE_NONE": 0, + "LOOT_TYPE_GOLD": 1, + "LOOT_TYPE_MANA": 2, + "LOOT_TYPE_ITEM": 3, + "LOOT_TYPE_TREASURE_CARD": 4, + "LOOT_TYPE_MAGIC_XP": 5, + "LOOT_TYPE_ADD_SPELL": 6, + "LOOT_TYPE_MAX_HEALTH": 7, + "LOOT_TYPE_MAX_GOLD": 8, + "LOOT_TYPE_MAX_MANA": 9, + "LOOT_TYPE_MAX_POTION": 10, + "LOOT_TYPE_TRAINING_POINTS": 11, + "LOOT_TYPE_RECIPE": 12, + "LOOT_TYPE_CRAFTING_SLOT": 13, + "LOOT_TYPE_REAGENT": 14, + "LOOT_TYPE_PETSNACK": 15, + "LOOT_TYPE_GARDENING_XP": 16, + "LOOT_TYPE_PET_XP": 17, + "LOOT_TYPE_TREASURE_TABLE": 18, + "LOOT_TYPE_ARENA_POINTS": 19, + "LOOT_TYPE_ARENA_BONUS_POINTS": 20, + "LOOT_TYPE_GROUP": 21, + "LOOT_TYPE_FISHING_XP": 22, + "LOOT_TYPE_EVENT_CURRENCY_1": 24, + "LOOT_TYPE_EVENT_CURRENCY_2": 25, + "LOOT_TYPE_PVP_CURRENCY": 26, + "LOOT_TYPE_PVP_CURRENCY_BONUS": 27, + "LOOT_TYPE_PVP_TOURNEY_CURRENCY": 28, + "LOOT_TYPE_PVP_TOURNEY_CURRENCY_BONUS": 29, + "LOOT_TYPE_FURNITURE_ESSENCE": 30 } + }, + "m_pvpTourneyCurrencyAmount": { + "type": "int", + "id": 1, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1148086373 } } }, - "396775930": { - "name": "class BaseZone::BaseSimulation", + "339187177": { + "name": "class ScoreTrackingList*", "bases": [ "PropertyClass" ], - "hash": 396775930, - "properties": {} + "hash": 339187177, + "properties": { + "m_scores": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1447258579 + } + } }, - "1164898096": { - "name": "class SharedPointer", + "338060383": { + "name": "class PetDerbyObstacleBehavior*", "bases": [ - "RaidManagerBehavior", "BehaviorInstance", "PropertyClass" ], - "hash": 1164898096, + "hash": 338060383, "properties": { "m_behaviorTemplateNameID": { "type": "unsigned int", @@ -502292,81 +273750,194 @@ "singleton": false, "pointer": false, "hash": 223437287 + }, + "m_laneNumber": { + "type": "int", + "id": 1, + "offset": 184, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 650028867 + }, + "m_distanceFromStart": { + "type": "int", + "id": 2, + "offset": 188, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 649349799 } } }, - "1966140498": { - "name": "class QuestFinderNPCData*", + "340052069": { + "name": "class SG_GameBlockType*", "bases": [ "PropertyClass" ], - "hash": 1966140498, + "hash": 340052069, "properties": { - "m_zoneName": { + "m_adjective": { "type": "std::string", "id": 0, "offset": 72, - "flags": 31, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2171167736 + "hash": 3429518154 }, - "m_location": { - "type": "class Vector3D", + "m_subTypePointPairs": { + "type": "std::string", "id": 1, "offset": 104, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2463625808 + }, + "m_pointsGainedList": { + "type": "std::string", + "id": 2, + "offset": 120, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1744394364 + } + } + }, + "339928888": { + "name": "class SpringboardNodeDescriptor", + "bases": [ + "NodeDescriptor", + "PropertyClass" + ], + "hash": 339928888, + "properties": { + "m_kAnimationState": { + "type": "enum SpringboardNodeDescriptor::AnimationState", + "id": 0, + "offset": 72, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1775415814, + "enum_options": { + "Down": 0, + "Shake": 1, + "PopUp": 2, + "Up": 3, + "Reset": 4 + } + } + } + }, + "342915709": { + "name": "class SeamstressOption", + "bases": [ + "ServiceOptionBase", + "PropertyClass" + ], + "hash": 342915709, + "properties": { + "m_serviceName": { + "type": "std::string", + "id": 0, + "offset": 72, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2239683611 + "hash": 2206028813 }, - "m_firstName": { + "m_iconKey": { "type": "std::string", - "id": 2, - "offset": 120, + "id": 1, + "offset": 168, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3116002948 + "hash": 2457138637 }, - "m_lastName": { + "m_displayKey": { "type": "std::string", + "id": 2, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3023276954 + }, + "m_serviceIndex": { + "type": "unsigned int", "id": 3, - "offset": 152, + "offset": 204, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1826203600 + "hash": 2103126710 }, - "m_zoneDisplayName": { - "type": "std::string", + "m_forceInteract": { + "type": "bool", "id": 4, - "offset": 184, + "offset": 200, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1962339438 + "hash": 1705789564 } } }, - "1924843": { - "name": "class MatchTimerControl", + "341172316": { + "name": "class InfractionConfig*", "bases": [ - "ControlText", + "PropertyClass" + ], + "hash": 341172316, + "properties": { + "m_categories": { + "type": "class SharedPointer", + "id": 0, + "offset": 80, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": true, + "pointer": true, + "hash": 2474674612 + } + } + }, + "340695854": { + "name": "class SharedPointer", + "bases": [ + "WindowLayout", "Window", "PropertyClass" ], - "hash": 1924843, + "hash": 340695854, "properties": { "m_sName": { "type": "std::string", @@ -502417,8 +273988,14 @@ "AUTO_GROW": 16384, "AUTO_SHRINK": 32768, "AUTO_RESIZE": 49152, - "DO_NOT_WRAP": 134217728, - "FIT_TEXT": 268435456 + "H_CENTER": 16777216, + "H_RIGHT": 33554432, + "V_CENTER": 2147483648, + "V_BOTTOM": 67108864, + "SORT": 536870912, + "LAYOUT_VERT": 1073741824, + "LAYOUT_REVERSE": 2147483648, + "DO_NOT_WRAP": 134217728 } }, "m_Flags": { @@ -502579,419 +274156,183 @@ "pointer": false, "hash": 3091503757 }, - "m_sText": { - "type": "std::wstring", + "m_nHSpacing": { + "type": "int", "id": 16, "offset": 584, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2102642960 - }, - "m_sTooltip": { - "type": "std::wstring", - "id": 17, - "offset": 616, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1680475798 - }, - "m_bUseDropShadow": { - "type": "bool", - "id": 18, - "offset": 653, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 93063037 - }, - "m_bUseOutline": { - "type": "bool", - "id": 19, - "offset": 654, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 744292994 - }, - "m_bEnableWordWrap": { - "type": "bool", - "id": 20, - "offset": 655, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 430904562 - }, - "m_bEnableToggle": { - "type": "bool", - "id": 21, - "offset": 652, "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1937994142 + "hash": 893611957 }, - "m_nLeadingAdjust": { + "m_nVSpacing": { "type": "int", - "id": 22, - "offset": 656, + "id": 17, + "offset": 588, "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1559480167 - }, - "m_alertSeconds": { - "type": "unsigned int", - "id": 23, - "offset": 700, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2220095860 - }, - "m_alertSeconds2": { - "type": "unsigned int", - "id": 24, - "offset": 704, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2070944934 - }, - "m_blinkRate": { - "type": "float", - "id": 25, - "offset": 708, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 395499571 + "hash": 551359491 } } }, - "1448177": { - "name": "class PortraitWindow", + "341847115": { + "name": "class ParticipantList*", "bases": [ - "Window", "PropertyClass" ], - "hash": 1448177, + "hash": 341847115, "properties": { - "m_sName": { - "type": "std::string", + "m_partList": { + "type": "class SharedPointer", "id": 0, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, + "offset": 72, + "flags": 31, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 2306437263 + "pointer": true, + "hash": 3068815683 }, - "m_Children": { - "type": "class SharedPointer", + "m_deckSize": { + "type": "unsigned int", "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", + "offset": 88, + "flags": 31, + "container": "List", "dynamic": true, "singleton": false, - "pointer": true, - "hash": 2621225959 + "pointer": false, + "hash": 1276516479 }, - "m_Style": { + "m_totalDeckSize": { "type": "unsigned int", "id": 2, - "offset": 152, - "flags": 1048583, - "container": "Static", - "dynamic": false, + "offset": 104, + "flags": 31, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "SCALE_CHILDREN": 2, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "FOCUS_LOCKED": 64, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152 - } + "hash": 2180827619 }, - "m_Flags": { + "m_treasureCardAmount": { "type": "unsigned int", "id": 3, - "offset": 156, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } - }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3105139380 - }, - "m_fTargetAlpha": { - "type": "float", - "id": 5, - "offset": 212, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1809129834 - }, - "m_fDisabledAlpha": { - "type": "float", - "id": 6, - "offset": 216, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1389987675 - }, - "m_fAlpha": { - "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 482130755 - }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3623628394 - }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2102211316 - }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1846695875 - }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3389835433 - }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2547159940 - }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, + "offset": 120, + "flags": 31, "container": "List", "dynamic": true, "singleton": false, "pointer": false, - "hash": 2587533771 - }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3091503757 - }, - "m_pMaterial": { - "type": "class SharedPointer", - "id": 16, - "offset": 632, + "hash": 486812806 + } + } + }, + "341270620": { + "name": "class InfractionConfig", + "bases": [ + "PropertyClass" + ], + "hash": 341270620, + "properties": { + "m_categories": { + "type": "class SharedPointer", + "id": 0, + "offset": 80, "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, + "container": "List", + "dynamic": true, + "singleton": true, "pointer": true, - "hash": 3479277078 - }, - "m_alphaMask": { - "type": "class SharedPointer", - "id": 17, - "offset": 648, + "hash": 2474674612 + } + } + }, + "342332905": { + "name": "class ScoreTrackingList", + "bases": [ + "PropertyClass" + ], + "hash": 342332905, + "properties": { + "m_scores": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "List", + "dynamic": true, "singleton": false, "pointer": true, - "hash": 2624275869 + "hash": 1447258579 } } }, - "1558187601": { - "name": "class RequirementList*", + "341850187": { + "name": "class ParticipantList", "bases": [ - "Requirement", "PropertyClass" ], - "hash": 1558187601, + "hash": 341850187, "properties": { - "m_applyNOT": { - "type": "bool", + "m_partList": { + "type": "class SharedPointer", "id": 0, "offset": 72, "flags": 31, - "container": "Static", - "dynamic": false, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 1746328074, - "enum_options": { - "__DEFAULT": 0 - } + "pointer": true, + "hash": 3068815683 }, - "m_operator": { - "type": "enum Requirement::Operator", + "m_deckSize": { + "type": "unsigned int", "id": 1, - "offset": 76, - "flags": 2097183, - "container": "Static", - "dynamic": false, + "offset": 88, + "flags": 31, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 2672792317, - "enum_options": { - "ROP_AND": 0, - "ROP_OR": 1, - "__DEFAULT": "ROP_AND" - } + "hash": 1276516479 }, - "m_requirements": { - "type": "class Requirement*", + "m_totalDeckSize": { + "type": "unsigned int", "id": 2, - "offset": 80, + "offset": 104, "flags": 31, "container": "List", "dynamic": true, "singleton": false, - "pointer": true, - "hash": 1347801628 + "pointer": false, + "hash": 2180827619 + }, + "m_treasureCardAmount": { + "type": "unsigned int", + "id": 3, + "offset": 120, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 486812806 } } }, - "1164989569": { - "name": "class GraphicalSpellWindow", + "344863720": { + "name": "class CantripLevelControl*", "bases": [ "Window", "PropertyClass" ], - "hash": 1164989569, + "hash": 344863720, "properties": { "m_sName": { "type": "std::string", @@ -503008,7 +274349,7 @@ "type": "class SharedPointer", "id": 1, "offset": 112, - "flags": 65671, + "flags": 65667, "container": "Vector", "dynamic": true, "singleton": false, @@ -503203,200 +274544,329 @@ "singleton": false, "pointer": false, "hash": 3091503757 + } + } + }, + "343477306": { + "name": "class DerbyTeleport*", + "bases": [ + "DerbyEffect", + "PropertyClass" + ], + "hash": 343477306, + "properties": { + "m_buffType": { + "type": "enum DerbyTalentBuffType", + "id": 0, + "offset": 92, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1149251982, + "enum_options": { + "Buff": 0, + "Debuff": 1, + "Neither": 2 + } }, - "m_spell": { - "type": "class SharedPointer", - "id": 16, - "offset": 584, - "flags": 7, + "m_kTarget": { + "type": "enum DerbyTargetType", + "id": 1, + "offset": 96, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1393190292 + "pointer": false, + "hash": 1807803351, + "enum_options": { + "kTargetInFront": 0, + "kTargetBehind": 1, + "kTargetFirst": 2, + "kTargetSelf": 3, + "kTargetAll": 4, + "kTargetLast": 5 + } }, - "m_spellName": { + "m_nDuration": { + "type": "int", + "id": 2, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1110167982 + }, + "m_effectID": { + "type": "unsigned int", + "id": 3, + "offset": 88, + "flags": 24, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2347630439 + }, + "m_imageFilename": { "type": "std::string", - "id": 17, - "offset": 600, - "flags": 7, + "id": 4, + "offset": 112, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2688485244 + "hash": 2813328063 }, - "m_grayscale": { - "type": "bool", - "id": 18, - "offset": 636, - "flags": 7, + "m_iconIndex": { + "type": "unsigned int", + "id": 5, + "offset": 144, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 348289198 - } - } - }, - "1558168828": { - "name": "class SharedPointer", - "bases": [ - "MoveController::MoveCommand", - "PropertyClass" - ], - "hash": 1558168828, - "properties": { - "m_fPitch": { - "type": "float", - "id": 0, - "offset": 88, + "hash": 1265133262 + }, + "m_soundOnActivate": { + "type": "std::string", + "id": 6, + "offset": 152, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1956929714 + }, + "m_soundOnTarget": { + "type": "std::string", + "id": 7, + "offset": 184, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3444214056 + }, + "m_targetParticleEffect": { + "type": "std::string", + "id": 8, + "offset": 216, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3048234723 + }, + "m_overheadMessage": { + "type": "std::string", + "id": 9, + "offset": 248, + "flags": 8388639, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1701018190 + }, + "m_requirements": { + "type": "class RequirementList", + "id": 10, + "offset": 280, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 499815957 + "hash": 2840988582 + }, + "m_kTeleportToTarget": { + "type": "enum DerbyTargetType", + "id": 11, + "offset": 376, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3096289769, + "enum_options": { + "kTargetInFront": 0, + "kTargetBehind": 1, + "kTargetFirst": 2, + "kTargetSelf": 3, + "kTargetAll": 4, + "kTargetLast": 5 + } } } }, - "431425521": { - "name": "class SharedPointer", + "343029615": { + "name": "class ScoreTracking", "bases": [ - "ServiceOptionBase", "PropertyClass" ], - "hash": 431425521, + "hash": 343029615, "properties": { - "m_serviceName": { - "type": "std::string", + "m_gamerID": { + "type": "gid", "id": 0, "offset": 72, - "flags": 31, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2206028813 + "hash": 443045745 }, - "m_iconKey": { - "type": "std::string", + "m_gamerName": { + "type": "std::wstring", "id": 1, - "offset": 168, - "flags": 31, + "offset": 80, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2457138637 + "hash": 2656017061 }, - "m_displayKey": { - "type": "std::string", + "m_gamerNameCode": { + "type": "unsigned int", "id": 2, - "offset": 104, - "flags": 31, + "offset": 112, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3023276954 + "hash": 267246197 }, - "m_serviceIndex": { - "type": "unsigned int", + "m_gameScore": { + "type": "float", "id": 3, - "offset": 204, - "flags": 31, + "offset": 116, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2103126710 + "hash": 1416539789 }, - "m_forceInteract": { - "type": "bool", + "m_gamerRace": { + "type": "std::string", "id": 4, - "offset": 200, - "flags": 31, + "offset": 120, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1705789564 + "hash": 2860175138 + }, + "m_gamerGender": { + "type": "std::string", + "id": 5, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2948235676 } } }, - "2032829065": { - "name": "class SharedPointer", + "343029612": { + "name": "class ScoreTracking*", "bases": [ - "ServiceOptionBase", "PropertyClass" ], - "hash": 2032829065, + "hash": 343029612, "properties": { - "m_serviceName": { - "type": "std::string", + "m_gamerID": { + "type": "gid", "id": 0, "offset": 72, - "flags": 31, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2206028813 + "hash": 443045745 }, - "m_iconKey": { - "type": "std::string", + "m_gamerName": { + "type": "std::wstring", "id": 1, - "offset": 168, - "flags": 31, + "offset": 80, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2457138637 + "hash": 2656017061 }, - "m_displayKey": { - "type": "std::string", + "m_gamerNameCode": { + "type": "unsigned int", "id": 2, - "offset": 104, - "flags": 31, + "offset": 112, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3023276954 + "hash": 267246197 }, - "m_serviceIndex": { - "type": "unsigned int", + "m_gameScore": { + "type": "float", "id": 3, - "offset": 204, - "flags": 31, + "offset": 116, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2103126710 + "hash": 1416539789 }, - "m_forceInteract": { - "type": "bool", + "m_gamerRace": { + "type": "std::string", "id": 4, - "offset": 200, - "flags": 31, + "offset": 120, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1705789564 + "hash": 2860175138 + }, + "m_gamerGender": { + "type": "std::string", + "id": 5, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2948235676 } } }, - "413605834": { - "name": "class UniverseMapOption", + "343079549": { + "name": "class SeamstressOption*", "bases": [ "ServiceOptionBase", "PropertyClass" ], - "hash": 413605834, + "hash": 343079549, "properties": { "m_serviceName": { "type": "std::string", @@ -503455,886 +274925,794 @@ } } }, - "2006206717": { - "name": "class JewelSocketWrenchRules*", - "bases": [ - "PropertyClass" - ], - "hash": 2006206717, - "properties": { - "m_rules": { - "type": "class JewelSocketWrenchElements", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2323021272 - } - } - }, - "508746293": { - "name": "class PlayerInteractiveMusicLoops*", - "bases": [ - "PropertyClass" - ], - "hash": 508746293, - "properties": { - "m_playerRecordedMusicLoopList": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 65543, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2520861630 - } - } - }, - "454960420": { - "name": "class PetActorResults", + "343477311": { + "name": "class DerbyTeleport", "bases": [ - "MatchActorResult", + "DerbyEffect", "PropertyClass" ], - "hash": 454960420, + "hash": 343477311, "properties": { - "m_pActor": { - "type": "class SharedPointer", + "m_buffType": { + "type": "enum DerbyTalentBuffType", "id": 0, - "offset": 72, - "flags": 31, + "offset": 92, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1115051967 + "pointer": false, + "hash": 1149251982, + "enum_options": { + "Buff": 0, + "Debuff": 1, + "Neither": 2 + } }, - "m_place": { - "type": "int", + "m_kTarget": { + "type": "enum DerbyTargetType", "id": 1, - "offset": 88, - "flags": 31, + "offset": 96, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 806257663 + "hash": 1807803351, + "enum_options": { + "kTargetInFront": 0, + "kTargetBehind": 1, + "kTargetFirst": 2, + "kTargetSelf": 3, + "kTargetAll": 4, + "kTargetLast": 5 + } }, - "m_ratingGained": { + "m_nDuration": { "type": "int", "id": 2, - "offset": 92, + "offset": 104, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1426436071 + "hash": 1110167982 }, - "m_arenaPoints": { - "type": "int", + "m_effectID": { + "type": "unsigned int", "id": 3, - "offset": 96, - "flags": 31, + "offset": 88, + "flags": 24, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 511478910 + "hash": 2347630439 }, - "m_pvpCurrency": { - "type": "int", + "m_imageFilename": { + "type": "std::string", "id": 4, - "offset": 100, - "flags": 31, + "offset": 112, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 611304283 + "hash": 2813328063 }, - "m_pvpTourneyCurrency": { - "type": "int", + "m_iconIndex": { + "type": "unsigned int", "id": 5, - "offset": 104, + "offset": 144, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1184787505 + "hash": 1265133262 }, - "m_gold": { - "type": "int", + "m_soundOnActivate": { + "type": "std::string", "id": 6, - "offset": 108, - "flags": 31, + "offset": 152, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 219423808 + "hash": 1956929714 }, - "m_gameResult": { - "type": "unsigned char", + "m_soundOnTarget": { + "type": "std::string", "id": 7, - "offset": 112, - "flags": 31, + "offset": 184, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1417654793 + "hash": 3444214056 }, - "m_nFinishTime": { - "type": "unsigned int", + "m_targetParticleEffect": { + "type": "std::string", "id": 8, - "offset": 120, - "flags": 31, + "offset": 216, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1238925387 + "hash": 3048234723 }, - "m_nIndex": { - "type": "unsigned int", + "m_overheadMessage": { + "type": "std::string", "id": 9, - "offset": 124, + "offset": 248, + "flags": 8388639, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1701018190 + }, + "m_requirements": { + "type": "class RequirementList", + "id": 10, + "offset": 280, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 925961299 + "hash": 2840988582 + }, + "m_kTeleportToTarget": { + "type": "enum DerbyTargetType", + "id": 11, + "offset": 376, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3096289769, + "enum_options": { + "kTargetInFront": 0, + "kTargetBehind": 1, + "kTargetFirst": 2, + "kTargetSelf": 3, + "kTargetAll": 4, + "kTargetLast": 5 + } } } }, - "1165770906": { - "name": "class MadlibBlock", + "344539011": { + "name": "class SharedPointer", "bases": [ "PropertyClass" ], - "hash": 1165770906, + "hash": 344539011, "properties": { - "m_madlibs": { - "type": "class SharedPointer", + "m_coord": { + "type": "class Vector3D", "id": 0, "offset": 72, - "flags": 31, - "container": "List", - "dynamic": true, + "flags": 7, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1912290195 + "pointer": false, + "hash": 2448785881 }, - "m_blockToken": { - "type": "std::string", + "m_quat": { + "type": "class Quaternion", "id": 1, - "offset": 96, - "flags": 31, + "offset": 84, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1821505575 + "hash": 2148807035 + }, + "m_mat": { + "type": "class Matrix3x3", + "id": 2, + "offset": 100, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1746928484 } } }, - "1987973849": { - "name": "class GamebryoBody", + "345061619": { + "name": "class BracketTemplate*", "bases": [ - "Body", + "MatchTemplate", + "CoreTemplate", "PropertyClass" ], - "hash": 1987973849, + "hash": 345061619, "properties": { - "m_position": { - "type": "class Vector3D", + "m_behaviors": { + "type": "class BehaviorTemplate*", "id": 0, - "offset": 88, + "offset": 72, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "Vector", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 3697900983 + "pointer": true, + "hash": 1197808594 }, - "m_pitch": { - "type": "float", + "m_matchName": { + "type": "std::string", "id": 1, - "offset": 100, - "flags": 7, + "offset": 128, + "flags": 134217735, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 896371695 + "hash": 2061215721 }, - "m_roll": { - "type": "float", + "m_matchDisplayName": { + "type": "std::string", "id": 2, - "offset": 104, + "offset": 96, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 310020272 + "hash": 3201906495 }, - "m_yaw": { - "type": "float", + "m_matchTitle": { + "type": "std::string", "id": 3, - "offset": 108, + "offset": 168, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 357256328 + "hash": 2918442218 }, - "m_fHeight": { - "type": "float", + "m_allowOverrides": { + "type": "bool", "id": 4, - "offset": 132, + "offset": 200, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 401539638 + "hash": 469376485 }, - "m_scale": { - "type": "float", + "m_teamSize": { + "type": "unsigned int", "id": 5, - "offset": 112, + "offset": 208, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 899693439 - } - } - }, - "2569634": { - "name": "bool", - "bases": [], - "hash": 2569634, - "properties": {} - }, - "1165098961": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1165098961, - "properties": { - "m_statsList": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, + "hash": 2343388751 + }, + "m_teamCount": { + "type": "unsigned int", + "id": 6, + "offset": 204, "flags": 7, - "container": "List", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2999855587 + "pointer": false, + "hash": 1825878845 }, - "m_poi": { - "type": "class SharedPointer", - "id": 1, - "offset": 88, + "m_minTeams": { + "type": "unsigned int", + "id": 7, + "offset": 212, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1342603341 - } - } - }, - "1972306740": { - "name": "class RemoveAuraCinematicAction", - "bases": [ - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 1972306740, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, + "pointer": false, + "hash": 1717685739 + }, + "m_timeout": { + "type": "int", + "id": 8, + "offset": 216, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 + "hash": 365357953 }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, + "m_maxPointsPerMatch": { + "type": "unsigned int", + "id": 9, + "offset": 280, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2285866132 - } - } - }, - "1562533364": { - "name": "class ClientRemoveParticleActorCinematicAction*", - "bases": [ - "RemoveParticleActorCinematicAction", - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 1562533364, - "properties": { - "m_timeOffset": { + "hash": 1397040900 + }, + "m_estimatedWeight": { "type": "float", - "id": 0, - "offset": 72, + "id": 10, + "offset": 284, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 + "hash": 1374360127 }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, + "m_matchInfo": { + "type": "class SharedPointer", + "id": 11, + "offset": 256, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 2285866132 + "pointer": true, + "hash": 2424135306 }, - "m_effectName": { + "m_awardInfo": { + "type": "class SharedPointer", + "id": 12, + "offset": 224, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2862912855 + }, + "m_perLeagueAwardInfo": { + "type": "class SharedPointer", + "id": 13, + "offset": 240, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1635456322 + }, + "m_zones": { "type": "std::string", - "id": 2, - "offset": 120, + "id": 14, + "offset": 288, + "flags": 268435463, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2315938538, + "enum_options": { + "__BASECLASS": "ZoneData" + } + }, + "m_initialQueueThreshold": { + "type": "unsigned int", + "id": 15, + "offset": 312, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2029161513 + "hash": 2069737705 }, - "m_nodeName": { - "type": "std::string", - "id": 3, - "offset": 152, + "m_actorQueueTimeout": { + "type": "unsigned int", + "id": 16, + "offset": 316, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3607089954 - } - } - }, - "397829655": { - "name": "class CoreTemplate*", - "bases": [ - "PropertyClass" - ], - "hash": 397829655, - "properties": { - "m_behaviors": { - "type": "class BehaviorTemplate*", - "id": 0, - "offset": 72, + "hash": 2220949042 + }, + "m_teamQueueTimeout": { + "type": "unsigned int", + "id": 17, + "offset": 320, "flags": 7, - "container": "Vector", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1197808594 - } - } - }, - "1969795844": { - "name": "class RenamePipActorsFromResult", - "bases": [ - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 1969795844, - "properties": { - "m_timeOffset": { + "pointer": false, + "hash": 905233664 + }, + "m_actorQueueGrowth": { "type": "float", - "id": 0, - "offset": 72, + "id": 18, + "offset": 324, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 + "hash": 499165488 }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, + "m_teamQueueGrowth": { + "type": "float", + "id": 19, + "offset": 328, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2285866132 + "hash": 1500499518 }, - "m_newActorName": { - "type": "std::string", - "id": 2, - "offset": 120, + "m_matchMakingLevelMultiplier": { + "type": "float", + "id": 20, + "offset": 332, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2029131039 + "hash": 838900890 }, - "m_newActorName2": { - "type": "std::string", - "id": 3, - "offset": 152, + "m_levelModifiersListID": { + "type": "gid", + "id": 21, + "offset": 336, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1852236785 + "hash": 383459035 }, - "m_oldActorName": { - "type": "std::string", - "id": 4, - "offset": 184, + "m_incompleteTeamTimeout": { + "type": "unsigned int", + "id": 22, + "offset": 276, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2191892948 - } - } - }, - "397908045": { - "name": "class BaseBadgeBehavior", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 397908045, - "properties": { - "m_behaviorTemplateNameID": { + "hash": 1580576011 + }, + "m_incompleteMatchTimeout": { "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, + "id": 23, + "offset": 272, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 + "hash": 2167303729 }, - "m_badgeData": { - "type": "std::string", - "id": 1, - "offset": 160, - "flags": 575, + "m_shortMatchDurationForPenaltySeconds": { + "type": "unsigned int", + "id": 24, + "offset": 360, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3002588904 - } - } - }, - "1559715922": { - "name": "class ClientObjectRemapBehavior*", - "bases": [ - "ObjectRemapBehavior", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1559715922, - "properties": { - "m_behaviorTemplateNameID": { + "hash": 1403927011 + }, + "m_thresholdForExtendingMatchSearch": { "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, + "id": 25, + "offset": 364, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 - } - } - }, - "1165769920": { - "name": "class SharedPointer", - "bases": [ - "ConditionalSpellEffectRequirement", - "Requirement", - "PropertyClass" - ], - "hash": 1165769920, - "properties": { - "m_applyNOT": { - "type": "bool", - "id": 0, - "offset": 72, - "flags": 31, + "hash": 1973589002 + }, + "m_numberOfPlayersRequiredToExtendMatchSearch": { + "type": "unsigned int", + "id": 26, + "offset": 368, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1746328074, - "enum_options": { - "__DEFAULT": 0 - } + "hash": 858588026 }, - "m_operator": { - "type": "enum Requirement::Operator", - "id": 1, - "offset": 76, - "flags": 2097183, + "m_showStatusOnJoinQueue": { + "type": "bool", + "id": 27, + "offset": 376, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2672792317, - "enum_options": { - "ROP_AND": 0, - "ROP_OR": 1, - "__DEFAULT": "ROP_AND" - } + "hash": 1803391338 }, - "m_targetType": { - "type": "enum ConditionalSpellEffectRequirement::RequirementTarget", - "id": 2, - "offset": 80, - "flags": 2097159, + "m_allowExceedRangeForMatchesOptionForPlayers": { + "type": "bool", + "id": 28, + "offset": 377, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2547737902, - "enum_options": { - "RT_Caster": 0, - "RT_Target": 1 - } + "hash": 592913977 }, - "m_disposition": { - "type": "enum SpellEffect::kHangingDisposition", - "id": 3, - "offset": 88, - "flags": 2097159, + "m_makeTeamsWithSameMatchOptsTimeoutSec": { + "type": "int", + "id": 29, + "offset": 372, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1904841031, - "enum_options": { - "SpellEffect::kBoth": 0, - "SpellEffect::kBeneficial": 1, - "SpellEffect::kHarmful": 2 - } + "hash": 1787977769 }, - "m_minCount": { + "m_streakSize": { "type": "int", - "id": 4, - "offset": 92, - "flags": 31, + "id": 30, + "offset": 380, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1486503815 + "hash": 1155220287 }, - "m_maxCount": { + "m_historySize": { "type": "int", - "id": 5, - "offset": 96, - "flags": 31, + "id": 31, + "offset": 384, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 136048585 - } - } - }, - "1966662129": { - "name": "class SharedPointer", - "bases": [ - "ServiceOptionBase", - "PropertyClass" - ], - "hash": 1966662129, - "properties": { - "m_serviceName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, + "hash": 229055111 + }, + "m_queueWaitingTime": { + "type": "int", + "id": 32, + "offset": 388, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2206028813 + "hash": 15229089 }, - "m_iconKey": { - "type": "std::string", - "id": 1, - "offset": 168, - "flags": 31, + "m_minQueueSize": { + "type": "int", + "id": 33, + "offset": 392, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2457138637 + "hash": 1319267550 }, - "m_displayKey": { - "type": "std::string", - "id": 2, - "offset": 104, - "flags": 31, + "m_maxQueueSize": { + "type": "int", + "id": 34, + "offset": 396, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3023276954 + "hash": 1277586976 }, - "m_serviceIndex": { - "type": "unsigned int", - "id": 3, - "offset": 204, - "flags": 31, + "m_confTierRankTimeout": { + "type": "int", + "id": 35, + "offset": 400, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2103126710 + "hash": 79057063 }, - "m_forceInteract": { - "type": "bool", - "id": 4, - "offset": 200, - "flags": 31, + "m_matchTimer": { + "type": "float", + "id": 36, + "offset": 404, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1705789564 - } - } - }, - "10475889": { - "name": "class BadgeLeaderboardOption*", - "bases": [ - "ServiceOptionBase", - "PropertyClass" - ], - "hash": 10475889, - "properties": { - "m_serviceName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, + "hash": 1510935909 + }, + "m_bonusTime": { + "type": "int", + "id": 37, + "offset": 408, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2206028813 + "hash": 1757496496 }, - "m_iconKey": { - "type": "std::string", - "id": 1, - "offset": 168, - "flags": 31, + "m_passPenalty": { + "type": "int", + "id": 38, + "offset": 412, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2457138637 + "hash": 982951662 }, - "m_displayKey": { - "type": "std::string", - "id": 2, - "offset": 104, - "flags": 31, + "m_yellowTime": { + "type": "int", + "id": 39, + "offset": 416, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3023276954 + "hash": 1017028741 }, - "m_serviceIndex": { - "type": "unsigned int", - "id": 3, - "offset": 204, - "flags": 31, + "m_redTime": { + "type": "int", + "id": 40, + "offset": 420, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2103126710 + "hash": 1909556708 }, - "m_forceInteract": { - "type": "bool", - "id": 4, - "offset": 200, - "flags": 31, + "m_minTurnTime": { + "type": "int", + "id": 41, + "offset": 424, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1705789564 - } - } - }, - "1559037895": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1559037895, - "properties": {} - }, - "397251396": { - "name": "class EmoteStateOverrideInfo*", - "bases": [ - "ObjStateOverrideInfo", - "PropertyClass" - ], - "hash": 397251396, - "properties": { - "m_stateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 31, + "hash": 652524886 + }, + "m_effects": { + "type": "class SharedPointer", + "id": 42, + "offset": 432, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 804962647 + }, + "m_updateBattlePassPoints": { + "type": "bool", + "id": 43, + "offset": 456, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2039264668 + "hash": 713306342 }, - "m_emoteName": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 31, + "m_battlePassWinPoints": { + "type": "int", + "id": 44, + "offset": 460, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2426164182 + "hash": 1252337240 }, - "m_particleAsset": { - "type": "std::string", - "id": 2, - "offset": 112, - "flags": 31, + "m_battlePassLosePoints": { + "type": "int", + "id": 45, + "offset": 464, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2165004143 + "hash": 1400839869 }, - "m_loop": { - "type": "bool", - "id": 3, - "offset": 144, + "m_numberOfRounds": { + "type": "unsigned int", + "id": 46, + "offset": 488, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 222084781 + "hash": 2292833030 }, - "m_particleNode": { - "type": "std::string", - "id": 4, - "offset": 152, + "m_removeBracketWhenEmpty": { + "type": "bool", + "id": 47, + "offset": 492, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3405651669 + "hash": 1934068926 }, - "m_soundAsset": { - "type": "std::string", - "id": 5, - "offset": 184, + "m_prepareForMatchTimeSeconds": { + "type": "unsigned int", + "id": 48, + "offset": 496, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3579637124 + "hash": 2209979662 }, - "m_wizBangID": { - "type": "unsigned int", - "id": 6, - "offset": 216, + "m_precreateTeams": { + "type": "bool", + "id": 49, + "offset": 500, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 496076748 - } - } - }, - "1966430886": { - "name": "class MadlibArg", - "bases": [ - "PropertyClass" - ], - "hash": 1966430886, - "properties": { - "m_madlibToken": { + "hash": 1229158248 + }, + "m_bracketTypeClassName": { "type": "std::string", - "id": 0, - "offset": 80, + "id": 50, + "offset": 504, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3058682373 + "hash": 1569907152 } } }, - "6632204": { - "name": "class SharedPointer", + "345058547": { + "name": "class BracketTemplate", "bases": [ - "SpellTemplate", + "MatchTemplate", "CoreTemplate", "PropertyClass" ], - "hash": 6632204, + "hash": 345058547, "properties": { "m_behaviors": { "type": "class BehaviorTemplate*", @@ -504347,949 +275725,788 @@ "pointer": true, "hash": 1197808594 }, - "m_name": { + "m_matchName": { "type": "std::string", "id": 1, - "offset": 96, - "flags": 7, + "offset": 128, + "flags": 134217735, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1717359772 + "hash": 2061215721 }, - "m_description": { + "m_matchDisplayName": { "type": "std::string", "id": 2, - "offset": 168, - "flags": 8388615, + "offset": 96, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1649374815 + "hash": 3201906495 }, - "m_advancedDescription": { + "m_matchTitle": { "type": "std::string", "id": 3, - "offset": 200, - "flags": 8388615, + "offset": 168, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3465713013 + "hash": 2918442218 }, - "m_displayName": { - "type": "std::string", + "m_allowOverrides": { + "type": "bool", "id": 4, - "offset": 136, - "flags": 8388615, + "offset": 200, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2446900370 + "hash": 469376485 }, - "m_spellBase": { - "type": "std::string", + "m_teamSize": { + "type": "unsigned int", "id": 5, - "offset": 248, - "flags": 268435463, + "offset": 208, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2688054198, - "enum_options": { - "__BASECLASS": "CinematicTemplate" - } + "hash": 2343388751 }, - "m_effects": { - "type": "class SharedPointer", + "m_teamCount": { + "type": "unsigned int", "id": 6, - "offset": 280, + "offset": 204, "flags": 7, - "container": "Vector", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 370726379 + "pointer": false, + "hash": 1825878845 }, - "m_sMagicSchoolName": { - "type": "std::string", + "m_minTeams": { + "type": "unsigned int", "id": 7, - "offset": 312, + "offset": 212, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2035693400 + "hash": 1717685739 }, - "m_sTypeName": { - "type": "std::string", + "m_timeout": { + "type": "int", "id": 8, - "offset": 352, + "offset": 216, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3580785905 + "hash": 365357953 }, - "m_trainingCost": { - "type": "int", + "m_maxPointsPerMatch": { + "type": "unsigned int", "id": 9, - "offset": 384, + "offset": 280, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 982588239 + "hash": 1397040900 }, - "m_accuracy": { - "type": "int", + "m_estimatedWeight": { + "type": "float", "id": 10, - "offset": 388, + "offset": 284, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1636315493 + "hash": 1374360127 }, - "m_baseCost": { - "type": "int", + "m_matchInfo": { + "type": "class SharedPointer", "id": 11, - "offset": 232, + "offset": 256, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1475151502 + "pointer": true, + "hash": 2424135306 }, - "m_creditsCost": { - "type": "int", + "m_awardInfo": { + "type": "class SharedPointer", "id": 12, - "offset": 236, + "offset": 224, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 715313825 + "pointer": true, + "hash": 2862912855 }, - "m_pvpCurrencyCost": { - "type": "int", + "m_perLeagueAwardInfo": { + "type": "class SharedPointer", "id": 13, "offset": 240, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 645595444 + "pointer": true, + "hash": 1635456322 }, - "m_pvpTourneyCurrencyCost": { - "type": "int", + "m_zones": { + "type": "std::string", "id": 14, - "offset": 244, - "flags": 7, - "container": "Static", - "dynamic": false, + "offset": 288, + "flags": 268435463, + "container": "Vector", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 517874954 + "hash": 2315938538, + "enum_options": { + "__BASECLASS": "ZoneData" + } }, - "m_boosterPackIcon": { - "type": "std::string", + "m_initialQueueThreshold": { + "type": "unsigned int", "id": 15, - "offset": 496, - "flags": 131079, + "offset": 312, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3428653697 + "hash": 2069737705 }, - "m_validTargetSpells": { + "m_actorQueueTimeout": { "type": "unsigned int", "id": 16, - "offset": 392, + "offset": 316, "flags": 7, - "container": "List", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 2355782967 + "hash": 2220949042 }, - "m_PvP": { - "type": "bool", + "m_teamQueueTimeout": { + "type": "unsigned int", "id": 17, - "offset": 408, + "offset": 320, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 269492361 + "hash": 905233664 }, - "m_PvE": { - "type": "bool", + "m_actorQueueGrowth": { + "type": "float", "id": 18, - "offset": 409, + "offset": 324, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 269492350 + "hash": 499165488 }, - "m_noPvPEnchant": { - "type": "bool", + "m_teamQueueGrowth": { + "type": "float", "id": 19, - "offset": 410, + "offset": 328, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 661581703 + "hash": 1500499518 }, - "m_noPvEEnchant": { - "type": "bool", + "m_matchMakingLevelMultiplier": { + "type": "float", "id": 20, - "offset": 411, + "offset": 332, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 10144220 + "hash": 838900890 }, - "m_battlegroundsOnly": { - "type": "bool", + "m_levelModifiersListID": { + "type": "gid", "id": 21, - "offset": 412, + "offset": 336, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1244782419 + "hash": 383459035 }, - "m_Treasure": { - "type": "bool", + "m_incompleteTeamTimeout": { + "type": "unsigned int", "id": 22, - "offset": 413, + "offset": 276, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1749096414 + "hash": 1580576011 }, - "m_noDiscard": { - "type": "bool", + "m_incompleteMatchTimeout": { + "type": "unsigned int", "id": 23, - "offset": 414, + "offset": 272, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 565749226 + "hash": 2167303729 }, - "m_leavesPlayWhenCast": { - "type": "bool", + "m_shortMatchDurationForPenaltySeconds": { + "type": "unsigned int", "id": 24, - "offset": 532, + "offset": 360, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 698216294 + "hash": 1403927011 }, - "m_imageIndex": { - "type": "int", + "m_thresholdForExtendingMatchSearch": { + "type": "unsigned int", "id": 25, - "offset": 416, + "offset": 364, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1570500405 + "hash": 1973589002 }, - "m_imageName": { - "type": "std::string", + "m_numberOfPlayersRequiredToExtendMatchSearch": { + "type": "unsigned int", "id": 26, - "offset": 424, - "flags": 131079, + "offset": 368, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2391520543 + "hash": 858588026 }, - "m_cloaked": { + "m_showStatusOnJoinQueue": { "type": "bool", "id": 27, - "offset": 489, + "offset": 376, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 7349510 + "hash": 1803391338 }, - "m_casterInvisible": { + "m_allowExceedRangeForMatchesOptionForPlayers": { "type": "bool", "id": 28, - "offset": 490, + "offset": 377, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 310214650 + "hash": 592913977 }, - "m_adjectives": { - "type": "std::string", + "m_makeTeamsWithSameMatchOptsTimeoutSec": { + "type": "int", "id": 29, - "offset": 576, + "offset": 372, "flags": 7, - "container": "List", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 2967855037 + "hash": 1787977769 }, - "m_spellSourceType": { - "type": "enum SpellTemplate::kSpellSourceType", + "m_streakSize": { + "type": "int", "id": 30, - "offset": 528, - "flags": 2097159, + "offset": 380, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 156272727, - "enum_options": { - "kCaster": 0, - "kPet": 1, - "kShadowCreature": 2, - "kWeapon": 3, - "kEquipment": 4 - } + "hash": 1155220287 }, - "m_cloakedName": { - "type": "std::string", + "m_historySize": { + "type": "int", "id": 31, - "offset": 536, - "flags": 268435463, + "offset": 384, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2846679215, - "enum_options": { - "__BASECLASS": "SpellTemplate" - } + "hash": 229055111 }, - "m_purchaseRequirements": { - "type": "class RequirementList*", + "m_queueWaitingTime": { + "type": "int", "id": 32, - "offset": 608, + "offset": 388, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3174641793 + "pointer": false, + "hash": 15229089 }, - "m_displayRequirements": { - "type": "class RequirementList*", + "m_minQueueSize": { + "type": "int", "id": 33, - "offset": 840, + "offset": 392, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3646782876 + "pointer": false, + "hash": 1319267550 }, - "m_descriptionTrainer": { - "type": "std::string", + "m_maxQueueSize": { + "type": "int", "id": 34, - "offset": 616, - "flags": 8388871, + "offset": 396, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1756093908 + "hash": 1277586976 }, - "m_descriptionCombatHUD": { - "type": "std::string", + "m_confTierRankTimeout": { + "type": "int", "id": 35, - "offset": 648, - "flags": 8388871, + "offset": 400, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1631478006 + "hash": 79057063 }, - "m_displayIndex": { - "type": "int", + "m_matchTimer": { + "type": "float", "id": 36, - "offset": 680, + "offset": 404, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1250551048 + "hash": 1510935909 }, - "m_hiddenFromEffectsWindow": { - "type": "bool", + "m_bonusTime": { + "type": "int", "id": 37, - "offset": 684, + "offset": 408, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1832736331 + "hash": 1757496496 }, - "m_ignoreCharms": { - "type": "bool", + "m_passPenalty": { + "type": "int", "id": 38, - "offset": 685, + "offset": 412, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1840075893 + "hash": 982951662 }, - "m_alwaysFizzle": { - "type": "bool", + "m_yellowTime": { + "type": "int", "id": 39, - "offset": 686, + "offset": 416, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2030988856 + "hash": 1017028741 }, - "m_spellCategory": { - "type": "std::string", + "m_redTime": { + "type": "int", "id": 40, - "offset": 688, + "offset": 420, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2472376729 + "hash": 1909556708 }, - "m_showPolymorphedName": { - "type": "bool", + "m_minTurnTime": { + "type": "int", "id": 41, - "offset": 720, + "offset": 424, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2097929096 + "hash": 652524886 }, - "m_skipTruncation": { - "type": "bool", + "m_effects": { + "type": "class SharedPointer", "id": 42, - "offset": 721, - "flags": 263, - "container": "Static", - "dynamic": false, + "offset": 432, + "flags": 7, + "container": "Vector", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 1838335249 + "pointer": true, + "hash": 804962647 }, - "m_maxCopies": { - "type": "unsigned int", + "m_updateBattlePassPoints": { + "type": "bool", "id": 43, - "offset": 724, - "flags": 263, + "offset": 456, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 403022326 + "hash": 713306342 }, - "m_levelRestriction": { + "m_battlePassWinPoints": { "type": "int", "id": 44, - "offset": 728, - "flags": 263, + "offset": 460, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 176502472 + "hash": 1252337240 }, - "m_delayEnchantment": { - "type": "bool", + "m_battlePassLosePoints": { + "type": "int", "id": 45, - "offset": 732, - "flags": 287, + "offset": 464, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 191336919 + "hash": 1400839869 }, - "m_delayEnchantmentOrder": { - "type": "enum SpellEffect::kDelayOrder", + "m_numberOfRounds": { + "type": "unsigned int", "id": 46, - "offset": 736, - "flags": 287, + "offset": 488, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2526055263, - "enum_options": { - "SpellEffect::kAnyOrder": 0, - "SpellEffect::kFirst": 1, - "SpellEffect::kSecond": 2 - } + "hash": 2292833030 }, - "m_previousSpellName": { - "type": "std::string", + "m_removeBracketWhenEmpty": { + "type": "bool", "id": 47, - "offset": 744, - "flags": 268435463, + "offset": 492, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2903322585, - "enum_options": { - "__BASECLASS": "SpellTemplate" - } + "hash": 1934068926 }, - "m_cardFront": { - "type": "std::string", + "m_prepareForMatchTimeSeconds": { + "type": "unsigned int", "id": 48, - "offset": 456, - "flags": 131359, + "offset": 496, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3557598526 + "hash": 2209979662 }, - "m_useGloss": { + "m_precreateTeams": { "type": "bool", "id": 49, - "offset": 488, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 668817544 - }, - "m_ignoreDispel": { - "type": "bool", - "id": 50, - "offset": 776, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1881041624 - }, - "m_backRowFriendly": { - "type": "bool", - "id": 51, - "offset": 777, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 501584377 - }, - "m_spellRank": { - "type": "class SharedPointer", - "id": 52, - "offset": 784, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3152361374 - }, - "m_secondarySchoolName": { - "type": "std::string", - "id": 53, - "offset": 800, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1803268236 - }, - "m_spellFusion": { - "type": "unsigned int", - "id": 54, - "offset": 836, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1658928321 - }, - "m_requiredSchoolName": { - "type": "std::string", - "id": 55, - "offset": 848, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3576058981 - }, - "m_cantripsSpellType": { - "type": "enum CantripsSpellTemplate::CantripsSpellType", - "id": 56, - "offset": 880, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3328314982, - "enum_options": { - "CS_Teleportation": 0, - "CS_Incantation": 1, - "CS_Beneficial": 2, - "CS_Ritual": 3, - "CS_Sigil": 4 - } - }, - "m_energyCost": { - "type": "int", - "id": 57, - "offset": 884, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1236111677 - }, - "m_animationKFMs": { - "type": "std::string", - "id": 58, - "offset": 888, - "flags": 131079, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 3393275788 - }, - "m_animationNames": { - "type": "std::string", - "id": 59, - "offset": 912, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1776419407 - }, - "m_soundEffectName": { - "type": "std::string", - "id": 60, - "offset": 936, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3235436082 - }, - "m_soundEffectGain": { - "type": "float", - "id": 61, - "offset": 968, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1827685932, - "enum_options": { - "__DEFAULT": "1.0" - } - }, - "m_cantripsSpellImageIndex": { - "type": "int", - "id": 62, - "offset": 972, - "flags": 7, + "offset": 500, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1902695161 + "hash": 1229158248 }, - "m_cantripsSpellImageName": { + "m_bracketTypeClassName": { "type": "std::string", - "id": 63, - "offset": 976, - "flags": 131079, + "id": 50, + "offset": 504, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2661888099 - }, - "m_effectParameter": { - "type": "std::string", - "id": 64, - "offset": 1008, - "flags": 7, + "hash": 1569907152 + } + } + }, + "346378941": { + "name": "enum CombatResult::kResultType", + "bases": [], + "hash": 346378941, + "properties": {} + }, + "345731282": { + "name": "class SharedPointer", + "bases": [ + "CombatRule", + "PropertyClass" + ], + "hash": 345731282, + "properties": { + "m_resistLimit": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1522601705 + "hash": 1192834544 }, - "m_cantripsSpellEffect": { - "type": "enum CantripsSpellTemplate::CantripsSpellEffect", - "id": 65, - "offset": 1040, - "flags": 2097159, + "m_rK0": { + "type": "float", + "id": 1, + "offset": 76, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3436262155, - "enum_options": { - "CSE_None": 0, - "CSE_PlayEffect": 1, - "CSE_Mark": 2, - "CSE_Recall": 3, - "CSE_Heal": 4, - "CSE_NoAggro": 5, - "CSE_Teleport": 6, - "CSE_Invisibility": 7, - "CSE_Emote": 8, - "CSE_Ritual": 9, - "CSE_Sigil": 10, - "CSE_Beneficial": 11, - "CSE_PlaySchoolEffect": 12 - } + "hash": 357247908 }, - "m_cooldownSeconds": { - "type": "int", - "id": 66, - "offset": 1044, - "flags": 7, + "m_rN0": { + "type": "float", + "id": 2, + "offset": 80, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1459266190 + "hash": 357248007 } } }, - "1558495487": { - "name": "class SharedPointer", + "397071299": { + "name": "class InteractableOption*", "bases": [ + "ServiceOptionBase", "PropertyClass" ], - "hash": 1558495487, + "hash": 397071299, "properties": { - "m_buttonName": { + "m_serviceName": { "type": "std::string", "id": 0, "offset": 72, - "flags": 7, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3388080120 + "hash": 2206028813 }, - "m_sampleFilename": { + "m_iconKey": { "type": "std::string", "id": 1, - "offset": 104, - "flags": 7, + "offset": 168, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2612990110 + "hash": 2457138637 }, - "m_hotKey": { + "m_displayKey": { "type": "std::string", "id": 2, - "offset": 136, - "flags": 7, + "offset": 104, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2022699503 + "hash": 3023276954 }, - "m_alternateSampleFilenameList": { - "type": "std::string", + "m_serviceIndex": { + "type": "unsigned int", "id": 3, - "offset": 168, - "flags": 7, - "container": "List", - "dynamic": true, + "offset": 204, + "flags": 31, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 2532699834 + "hash": 2103126710 }, - "m_limitToOneSample": { - "type": "int", + "m_forceInteract": { + "type": "bool", "id": 4, - "offset": 184, - "flags": 7, + "offset": 200, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1935781536 + "hash": 1705789564 }, - "m_altHotKey": { - "type": "std::string", + "m_optionIndex": { + "type": "int", "id": 5, - "offset": 192, - "flags": 7, + "offset": 216, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1836211184 + "hash": 276287019 } } }, - "397226820": { - "name": "class EmoteStateOverrideInfo", + "373549969": { + "name": "class HideShadowCreatureCinematicAction", "bases": [ - "ObjStateOverrideInfo", + "ActorCinematicAction", + "CinematicAction", "PropertyClass" ], - "hash": 397226820, + "hash": 373549969, "properties": { - "m_stateNameID": { - "type": "unsigned int", + "m_timeOffset": { + "type": "float", "id": 0, "offset": 72, - "flags": 31, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2039264668 + "hash": 2237098605 }, - "m_emoteName": { + "m_actor": { "type": "std::string", "id": 1, "offset": 80, - "flags": 31, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2426164182 - }, - "m_particleAsset": { + "hash": 2285866132 + } + } + }, + "367308357": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 367308357, + "properties": { + "m_name": { "type": "std::string", - "id": 2, - "offset": 112, - "flags": 31, + "id": 0, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2165004143 + "hash": 1717359772 }, - "m_loop": { - "type": "bool", - "id": 3, - "offset": 144, + "m_statID": { + "type": "unsigned int", + "id": 1, + "offset": 104, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 222084781 + "hash": 1172182134 }, - "m_particleNode": { - "type": "std::string", - "id": 4, - "offset": 152, + "m_value": { + "type": "int", + "id": 2, + "offset": 108, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3405651669 - }, - "m_soundAsset": { + "hash": 812990455 + } + } + }, + "360329950": { + "name": "class BehaviorTemplate*", + "bases": [ + "PropertyClass" + ], + "hash": 360329950, + "properties": { + "m_behaviorName": { "type": "std::string", - "id": 5, - "offset": 184, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3579637124 - }, - "m_wizBangID": { - "type": "unsigned int", - "id": 6, - "offset": 216, - "flags": 31, + "id": 0, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 496076748 + "hash": 3130754092 } } }, - "5393471": { - "name": "class SchoolPipPanel*", + "352834858": { + "name": "class SharedPointer", "bases": [ "Window", "PropertyClass" ], - "hash": 5393471, + "hash": 352834858, "properties": { "m_sName": { "type": "std::string", @@ -505325,11 +276542,7 @@ "hash": 983582334, "enum_options": { "HAS_BACK": 1, - "SCALE_CHILDREN": 2, "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "FOCUS_LOCKED": 64, "CAN_FOCUS": 128, "CAN_DOCK": 32, "DO_NOT_CAPTURE_MOUSE": 256, @@ -505341,7 +276554,10 @@ "USE_ALPHA_BOUNDS": 8192, "AUTO_GROW": 16384, "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152 + "AUTO_RESIZE": 49152, + "CAN_SIZE_HORIZONTALLY": 16777216, + "CAN_SIZE_VERTICALLY": 33554432, + "CAN_SIZE_WIDGET": 50331648 } }, "m_Flags": { @@ -505501,18 +276717,151 @@ "singleton": false, "pointer": false, "hash": 3091503757 + }, + "m_pWidgetBackground": { + "type": "class SharedPointer", + "id": 16, + "offset": 584, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1642222607 + }, + "m_pTopLeftCornerMaterial": { + "type": "class SharedPointer", + "id": 17, + "offset": 600, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2210830717 + }, + "m_pTopRightCornerMaterial": { + "type": "class SharedPointer", + "id": 18, + "offset": 616, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2025381456 + }, + "m_pBottomLeftCornerMaterial": { + "type": "class SharedPointer", + "id": 19, + "offset": 632, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2960442335 + }, + "m_pBottomRightCornerMaterial": { + "type": "class SharedPointer", + "id": 20, + "offset": 648, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3140244722 + }, + "m_pBottomEdgeMaterial": { + "type": "class SharedPointer", + "id": 21, + "offset": 664, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2538880672 + }, + "m_pTopEdgeMaterial": { + "type": "class SharedPointer", + "id": 22, + "offset": 680, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2522199486 + }, + "m_pLeftEdgeMaterial": { + "type": "class SharedPointer", + "id": 23, + "offset": 696, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3154051542 + }, + "m_pRightEdgeMaterial": { + "type": "class SharedPointer", + "id": 24, + "offset": 712, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2818320265 + }, + "m_pCenterMaterial": { + "type": "class SharedPointer", + "id": 25, + "offset": 728, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1519560055 + }, + "m_MaximumSize": { + "type": "class Size", + "id": 26, + "offset": 744, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1781954165 + }, + "m_MinimumSize": { + "type": "class Size", + "id": 27, + "offset": 752, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2108593523 } } }, - "1558283612": { - "name": "class SharedPointer", + "349166424": { + "name": "class SharedPointer", "bases": [ + "ServiceOptionBase", "PropertyClass" ], - "hash": 1558283612, + "hash": 349166424, "properties": { - "m_templateID": { - "type": "gid", + "m_serviceName": { + "type": "std::string", "id": 0, "offset": 72, "flags": 31, @@ -505520,175 +276869,245 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 1075328001 + "hash": 2206028813 }, - "m_numForSale": { - "type": "int", + "m_iconKey": { + "type": "std::string", "id": 1, - "offset": 80, + "offset": 168, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1454578518 + "hash": 2457138637 }, - "m_buyPrice": { - "type": "int", + "m_displayKey": { + "type": "std::string", "id": 2, - "offset": 84, + "offset": 104, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1746297085 + "hash": 3023276954 }, - "m_sellPrice": { - "type": "int", + "m_serviceIndex": { + "type": "unsigned int", "id": 3, - "offset": 88, + "offset": 204, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 957785661 + "hash": 2103126710 + }, + "m_forceInteract": { + "type": "bool", + "id": 4, + "offset": 200, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1705789564 } } }, - "1167371726": { - "name": "class PetSnackLootInfo", + "347792815": { + "name": "class SharedPointer", "bases": [ - "ItemLootInfo", - "LootInfo", - "LootInfoBase", + "ServiceOptionBase", "PropertyClass" ], - "hash": 1167371726, + "hash": 347792815, "properties": { - "m_lootType": { - "type": "enum LootInfo::LOOT_TYPE", + "m_serviceName": { + "type": "std::string", "id": 0, "offset": 72, - "flags": 2097183, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1591891442, - "enum_options": { - "LOOT_TYPE_NONE": 0, - "LOOT_TYPE_GOLD": 1, - "LOOT_TYPE_MANA": 2, - "LOOT_TYPE_ITEM": 3, - "LOOT_TYPE_TREASURE_CARD": 4, - "LOOT_TYPE_MAGIC_XP": 5, - "LOOT_TYPE_ADD_SPELL": 6, - "LOOT_TYPE_MAX_HEALTH": 7, - "LOOT_TYPE_MAX_GOLD": 8, - "LOOT_TYPE_MAX_MANA": 9, - "LOOT_TYPE_MAX_POTION": 10, - "LOOT_TYPE_TRAINING_POINTS": 11, - "LOOT_TYPE_RECIPE": 12, - "LOOT_TYPE_CRAFTING_SLOT": 13, - "LOOT_TYPE_REAGENT": 14, - "LOOT_TYPE_PETSNACK": 15, - "LOOT_TYPE_GARDENING_XP": 16, - "LOOT_TYPE_PET_XP": 17, - "LOOT_TYPE_TREASURE_TABLE": 18, - "LOOT_TYPE_ARENA_POINTS": 19, - "LOOT_TYPE_ARENA_BONUS_POINTS": 20, - "LOOT_TYPE_GROUP": 21, - "LOOT_TYPE_FISHING_XP": 22, - "LOOT_TYPE_EVENT_CURRENCY_1": 24, - "LOOT_TYPE_EVENT_CURRENCY_2": 25, - "LOOT_TYPE_PVP_CURRENCY": 26, - "LOOT_TYPE_PVP_CURRENCY_BONUS": 27, - "LOOT_TYPE_PVP_TOURNEY_CURRENCY": 28, - "LOOT_TYPE_PVP_TOURNEY_CURRENCY_BONUS": 29, - "LOOT_TYPE_FURNITURE_ESSENCE": 30 - } + "hash": 2206028813 }, - "m_itemID": { - "type": "gid", + "m_iconKey": { + "type": "std::string", "id": 1, - "offset": 88, - "flags": 33554463, + "offset": 168, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 569545460 + "hash": 2457138637 }, - "m_numItems": { - "type": "int", + "m_displayKey": { + "type": "std::string", "id": 2, - "offset": 96, + "offset": 104, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1588646284 + "hash": 3023276954 + }, + "m_serviceIndex": { + "type": "unsigned int", + "id": 3, + "offset": 204, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2103126710 + }, + "m_forceInteract": { + "type": "bool", + "id": 4, + "offset": 200, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1705789564 + }, + "m_auctionHousePurchaseKey": { + "type": "unsigned int", + "id": 5, + "offset": 216, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 394777768 + }, + "m_sellModifier": { + "type": "float", + "id": 6, + "offset": 220, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 360128886 } } }, - "4737210": { - "name": "class DeckTemplate", + "346981666": { + "name": "class SharedPointer", "bases": [ - "CoreTemplate", + "BehaviorInstance", "PropertyClass" ], - "hash": 4737210, + "hash": 346981666, "properties": { - "m_behaviors": { - "type": "class BehaviorTemplate*", + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + } + } + }, + "346926357": { + "name": "class GameObjectAnimData", + "bases": [ + "PropertyClass" + ], + "hash": 346926357, + "properties": { + "m_zoneTag": { + "type": "std::string", "id": 0, "offset": 72, - "flags": 7, - "container": "Vector", - "dynamic": true, + "flags": 31, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1197808594 + "pointer": false, + "hash": 3405382643 }, - "m_name": { - "type": "std::string", + "m_zoneTagID": { + "type": "unsigned int", "id": 1, - "offset": 96, - "flags": 134217735, + "offset": 104, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1717359772 + "hash": 965291410 }, - "m_spellNameList": { + "m_animation": { "type": "std::string", "id": 2, - "offset": 136, - "flags": 268435463, - "container": "List", - "dynamic": true, + "offset": 112, + "flags": 31, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 2848889656, - "enum_options": { - "__BASECLASS": "SpellTemplate" - } + "hash": 3431428731 + }, + "m_backupAnimation": { + "type": "std::string", + "id": 3, + "offset": 144, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1661537937 + }, + "m_default": { + "type": "bool", + "id": 4, + "offset": 176, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1014207576 + }, + "m_evenWhileDead": { + "type": "bool", + "id": 5, + "offset": 177, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2100875368 } } }, - "1967451218": { - "name": "class SharedPointer", + "348728510": { + "name": "class SharedPointer", "bases": [ - "ClientZoneTokenBehavior", - "ZoneTokenBehavior", + "JewelVaultBehaviorBase", "BehaviorInstance", "PropertyClass" ], - "hash": 1967451218, + "hash": 348728510, "properties": { "m_behaviorTemplateNameID": { "type": "unsigned int", @@ -505701,416 +277120,449 @@ "pointer": false, "hash": 223437287 }, - "m_tokens": { - "type": "class SharedPointer", + "m_jewelList": { + "type": "unsigned int", "id": 1, "offset": 112, - "flags": 27, + "flags": 65543, "container": "List", "dynamic": true, "singleton": false, - "pointer": true, - "hash": 2621026866 + "pointer": false, + "hash": 1839384000 + }, + "m_jewelData": { + "type": "std::string", + "id": 2, + "offset": 128, + "flags": 551, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3125384972 } } }, - "4139762": { - "name": "class SharedPointer", + "348708862": { + "name": "class PositionalStateSoundBehaviorTemplate", "bases": [ + "PositionalSoundBehaviorTemplate", + "SoundBehaviorTemplate", + "AreaBehaviorTemplate", + "BehaviorTemplate", "PropertyClass" ], - "hash": 4139762, + "hash": 348708862, "properties": { - "m_fPetMass": { - "type": "float", + "m_behaviorName": { + "type": "std::string", "id": 0, - "offset": 76, + "offset": 72, "flags": 7, "container": "Static", "dynamic": false, - "singleton": true, + "singleton": false, "pointer": false, - "hash": 1378034810 + "hash": 3130754092 }, - "m_fBounce": { + "m_radius": { "type": "float", "id": 1, - "offset": 92, + "offset": 120, "flags": 7, "container": "Static", "dynamic": false, - "singleton": true, + "singleton": false, "pointer": false, - "hash": 179025177 + "hash": 989410271 }, - "m_fBounceThreshold": { - "type": "float", + "m_category": { + "type": "enum AudioCategory", "id": 2, - "offset": 96, - "flags": 7, + "offset": 124, + "flags": 2097159, "container": "Static", "dynamic": false, - "singleton": true, + "singleton": false, "pointer": false, - "hash": 1371486086 + "hash": 2951251982, + "enum_options": { + "AudioCategory_Irrelevent": 0, + "AudioCategory_Accoustic": 1, + "AudioCategory_Noise": 2, + "AudioCategory_Music": 3, + "AudioCategory_MusicAtSFXVolume": 4, + "AudioCategory_Dialog": 5, + "AudioCategory_UI": 6, + "AudioCategory_NoiseAtMusicVolume": 7 + } }, - "m_fMU": { - "type": "float", + "m_exclusive": { + "type": "bool", "id": 3, - "offset": 100, + "offset": 128, "flags": 7, "container": "Static", "dynamic": false, - "singleton": true, + "singleton": false, "pointer": false, - "hash": 357234943 + "hash": 824383403 }, - "m_fERP": { - "type": "float", + "m_active": { + "type": "bool", "id": 4, - "offset": 104, + "offset": 129, "flags": 7, "container": "Static", "dynamic": false, - "singleton": true, + "singleton": false, "pointer": false, - "hash": 309542404 + "hash": 239335471 }, - "m_fCFM": { - "type": "float", + "m_enableReqs": { + "type": "class SharedPointer", "id": 5, - "offset": 108, - "flags": 7, + "offset": 136, + "flags": 263, "container": "Static", "dynamic": false, - "singleton": true, - "pointer": false, - "hash": 309539827 + "singleton": false, + "pointer": true, + "hash": 3158020443 }, - "m_fContactSurfaceDepth": { - "type": "float", + "m_trackFilenameList": { + "type": "std::string", "id": 6, - "offset": 112, + "offset": 152, "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": true, + "container": "Vector", + "dynamic": true, + "singleton": false, "pointer": false, - "hash": 999400231 + "hash": 2531081709 }, - "m_bAutoDisable": { - "type": "bool", + "m_playList": { + "type": "class PlayListEntry*", "id": 7, - "offset": 116, + "offset": 176, "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": true, - "pointer": false, - "hash": 1449036226 + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 3907873161 }, - "m_fAutoDisableLinearThreshold": { - "type": "float", + "m_priority": { + "type": "int", "id": 8, - "offset": 120, + "offset": 208, "flags": 7, "container": "Static", "dynamic": false, - "singleton": true, + "singleton": false, "pointer": false, - "hash": 2028120914 + "hash": 1235205852 }, - "m_fAutoDisableAngularThreshold": { + "m_volume": { "type": "float", "id": 9, - "offset": 124, + "offset": 200, "flags": 7, "container": "Static", "dynamic": false, - "singleton": true, + "singleton": false, "pointer": false, - "hash": 391896705 + "hash": 1162855023 }, - "m_iAutoDisableSteps": { + "m_loopCount": { "type": "int", "id": 10, - "offset": 128, + "offset": 204, "flags": 7, "container": "Static", "dynamic": false, - "singleton": true, + "singleton": false, "pointer": false, - "hash": 380025343 + "hash": 865634717 }, - "m_fAutoDisableTime": { - "type": "float", + "m_progression": { + "type": "enum PlayList::Progression", "id": 11, - "offset": 132, - "flags": 7, + "offset": 220, + "flags": 2097159, "container": "Static", "dynamic": false, - "singleton": true, + "singleton": false, "pointer": false, - "hash": 1114279513 + "hash": 3279400238, + "enum_options": { + "Sequence": 0, + "Random": 1, + "SequenceOnceOnly": 2, + "RandomNoRepeat": 3 + } }, - "m_fContactMaxCorrectingVel": { + "m_progressMin": { "type": "float", "id": 12, - "offset": 136, + "offset": 212, "flags": 7, "container": "Static", "dynamic": false, - "singleton": true, + "singleton": false, "pointer": false, - "hash": 2046803974 + "hash": 1497550192 }, - "m_fGravityX": { + "m_progressMax": { "type": "float", "id": 13, - "offset": 80, + "offset": 216, "flags": 7, "container": "Static", "dynamic": false, - "singleton": true, + "singleton": false, "pointer": false, - "hash": 1531831803 + "hash": 1497549938 }, - "m_fGravityY": { - "type": "float", + "m_audioFilterSet": { + "type": "unsigned int", "id": 14, - "offset": 84, - "flags": 7, + "offset": 224, + "flags": 33554439, "container": "Static", "dynamic": false, - "singleton": true, + "singleton": false, "pointer": false, - "hash": 1531831804 + "hash": 831339825 }, - "m_fGravityZ": { - "type": "float", + "m_animationNameFilter": { + "type": "std::string", "id": 15, - "offset": 88, + "offset": 232, "flags": 7, "container": "Static", "dynamic": false, - "singleton": true, + "singleton": false, "pointer": false, - "hash": 1531831805 + "hash": 2292854242 }, - "m_perShotLeftoverScoreBonus": { - "type": "int", + "m_functionallabel": { + "type": "std::string", "id": 16, - "offset": 140, + "offset": 264, "flags": 7, "container": "Static", "dynamic": false, - "singleton": true, + "singleton": false, "pointer": false, - "hash": 1865826121 + "hash": 3589331278 }, - "m_iSoundCollisionThreshold": { - "type": "int", + "m_innerRadius": { + "type": "float", "id": 17, - "offset": 144, + "offset": 296, "flags": 7, "container": "Static", "dynamic": false, - "singleton": true, + "singleton": false, "pointer": false, - "hash": 610409093 + "hash": 686816091 }, - "m_gamePowers": { - "type": "class SharedPointer", + "m_inverted": { + "type": "bool", "id": 18, - "offset": 152, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": true, - "pointer": true, - "hash": 2071626314 - }, - "m_gameInteractions": { - "type": "class SharedPointer", - "id": 19, - "offset": 168, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": true, - "pointer": true, - "hash": 3264886543 - }, - "m_gameEvents": { - "type": "class SharedPointer", - "id": 20, - "offset": 184, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": true, - "pointer": true, - "hash": 1839206463 - }, - "m_gameLevelData": { - "type": "class SharedPointer", - "id": 21, - "offset": 200, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": true, - "pointer": true, - "hash": 1151370820 - }, - "m_blockTypes": { - "type": "class SharedPointer", - "id": 22, - "offset": 216, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": true, - "pointer": true, - "hash": 811905140 - }, - "m_comboMultipliers": { - "type": "class SharedPointer", - "id": 23, - "offset": 232, + "offset": 300, "flags": 7, - "container": "List", - "dynamic": true, - "singleton": true, - "pointer": true, - "hash": 3057704584 + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1034821044 } } }, - "1967088498": { - "name": "class SharedPointer", + "349022322": { + "name": "class TreasureShopOffering*", "bases": [ - "BehaviorInstance", "PropertyClass" ], - "hash": 1967088498, + "hash": 349022322, "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", + "m_treasureShopTitle": { + "type": "std::string", "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3126438722 + }, + "m_treasureSpellNames": { + "type": "std::string", + "id": 1, "offset": 104, - "flags": 39, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 3358741882 + }, + "m_crownShop": { + "type": "bool", + "id": 2, + "offset": 120, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 + "hash": 1936888726 + }, + "m_pvpCurrencyShop": { + "type": "bool", + "id": 3, + "offset": 121, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 648643854 + }, + "m_pvpTourneyCurrencyShop": { + "type": "bool", + "id": 4, + "offset": 122, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 520923364 } } }, - "4050806": { - "name": "class SharedPointer", + "349022298": { + "name": "class TreasureShopOffering", "bases": [ - "ItemLootInfo", - "LootInfo", - "LootInfoBase", "PropertyClass" ], - "hash": 4050806, + "hash": 349022298, "properties": { - "m_lootType": { - "type": "enum LootInfo::LOOT_TYPE", + "m_treasureShopTitle": { + "type": "std::string", "id": 0, "offset": 72, - "flags": 2097183, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1591891442, - "enum_options": { - "LOOT_TYPE_NONE": 0, - "LOOT_TYPE_GOLD": 1, - "LOOT_TYPE_MANA": 2, - "LOOT_TYPE_ITEM": 3, - "LOOT_TYPE_TREASURE_CARD": 4, - "LOOT_TYPE_MAGIC_XP": 5, - "LOOT_TYPE_ADD_SPELL": 6, - "LOOT_TYPE_MAX_HEALTH": 7, - "LOOT_TYPE_MAX_GOLD": 8, - "LOOT_TYPE_MAX_MANA": 9, - "LOOT_TYPE_MAX_POTION": 10, - "LOOT_TYPE_TRAINING_POINTS": 11, - "LOOT_TYPE_RECIPE": 12, - "LOOT_TYPE_CRAFTING_SLOT": 13, - "LOOT_TYPE_REAGENT": 14, - "LOOT_TYPE_PETSNACK": 15, - "LOOT_TYPE_GARDENING_XP": 16, - "LOOT_TYPE_PET_XP": 17, - "LOOT_TYPE_TREASURE_TABLE": 18, - "LOOT_TYPE_ARENA_POINTS": 19, - "LOOT_TYPE_ARENA_BONUS_POINTS": 20, - "LOOT_TYPE_GROUP": 21, - "LOOT_TYPE_FISHING_XP": 22, - "LOOT_TYPE_EVENT_CURRENCY_1": 24, - "LOOT_TYPE_EVENT_CURRENCY_2": 25, - "LOOT_TYPE_PVP_CURRENCY": 26, - "LOOT_TYPE_PVP_CURRENCY_BONUS": 27, - "LOOT_TYPE_PVP_TOURNEY_CURRENCY": 28, - "LOOT_TYPE_PVP_TOURNEY_CURRENCY_BONUS": 29, - "LOOT_TYPE_FURNITURE_ESSENCE": 30 - } + "hash": 3126438722 }, - "m_itemID": { - "type": "gid", + "m_treasureSpellNames": { + "type": "std::string", "id": 1, - "offset": 88, - "flags": 33554463, + "offset": 104, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 3358741882 + }, + "m_crownShop": { + "type": "bool", + "id": 2, + "offset": 120, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 569545460 + "hash": 1936888726 }, - "m_numItems": { - "type": "int", - "id": 2, - "offset": 96, + "m_pvpCurrencyShop": { + "type": "bool", + "id": 3, + "offset": 121, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1588646284 + "hash": 648643854 + }, + "m_pvpTourneyCurrencyShop": { + "type": "bool", + "id": 4, + "offset": 122, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 520923364 } } }, - "1559022091": { - "name": "class QuestPathUpdateParams", - "bases": [], - "hash": 1559022091, - "properties": {} - }, - "397890838": { - "name": "class GoalTemplate*", + "1161514098": { + "name": "class DependentResourcesBehaviorTemplate*", "bases": [ - "CoreTemplate", + "BehaviorTemplate", "PropertyClass" ], - "hash": 397890838, + "hash": 1161514098, "properties": { - "m_behaviors": { - "type": "class BehaviorTemplate*", + "m_behaviorName": { + "type": "std::string", "id": 0, "offset": 72, "flags": 7, - "container": "Vector", + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + }, + "m_dependentResourceList": { + "type": "class DependentResourceContainer", + "id": 1, + "offset": 120, + "flags": 7, + "container": "List", "dynamic": true, "singleton": false, - "pointer": true, - "hash": 1197808594 + "pointer": false, + "hash": 893254530 + } + } + }, + "766080061": { + "name": "class WizStatisticScalerEffectTemplate*", + "bases": [ + "StatisticEffectTemplate", + "GameEffectTemplate", + "PropertyClass" + ], + "hash": 766080061, + "properties": { + "m_effectName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2029161513 }, - "m_goalName": { + "m_effectCategory": { "type": "std::string", "id": 1, "offset": 104, @@ -506119,322 +277571,503 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 1521627807 + "hash": 1852673222 }, - "m_goalNameID": { - "type": "unsigned int", + "m_sortOrder": { + "type": "int", "id": 2, - "offset": 496, + "offset": 148, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 403158846 + "hash": 1411218206 }, - "m_goalTitle": { - "type": "std::string", + "m_duration": { + "type": "double", "id": 3, - "offset": 136, - "flags": 8388615, + "offset": 192, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2291910240 + "hash": 2727932435 }, - "m_goalUnderway": { + "m_stackingCategories": { "type": "std::string", "id": 4, - "offset": 168, - "flags": 8388615, - "container": "Static", - "dynamic": false, + "offset": 160, + "flags": 7, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 3153144269 + "hash": 1774497525 }, - "m_hyperlink": { - "type": "std::string", + "m_isPersistent": { + "type": "bool", "id": 5, - "offset": 200, - "flags": 8388615, + "offset": 153, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2887798993 + "hash": 923861920 }, - "m_completeText": { - "type": "std::string", + "m_bIsOnPet": { + "type": "bool", "id": 6, - "offset": 232, - "flags": 8388615, + "offset": 154, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2767458393 + "hash": 522593303 }, - "m_completeResults": { - "type": "class ResultList*", + "m_isPublic": { + "type": "bool", "id": 7, - "offset": 440, + "offset": 152, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1964258099 + "pointer": false, + "hash": 1728439822 }, - "m_goalRequirements": { - "type": "class RequirementList*", + "m_visualEffectAddName": { + "type": "std::string", "id": 8, - "offset": 448, + "offset": 200, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2979967145 + "pointer": false, + "hash": 3382086694 }, - "m_tallyCounter": { - "type": "class TallyCounterTemplate*", + "m_visualEffectRemoveName": { + "type": "std::string", "id": 9, - "offset": 456, + "offset": 232, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1884546193 + "pointer": false, + "hash": 1541697323 }, - "m_locationName": { + "m_onAddFunctorName": { "type": "std::string", "id": 10, - "offset": 272, - "flags": 8388615, + "offset": 280, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1824218389 + "hash": 1561843107 }, - "m_displayImage1": { + "m_onRemoveFunctorName": { "type": "std::string", "id": 11, - "offset": 304, - "flags": 131079, + "offset": 312, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1959572133 + "hash": 2559017864 }, - "m_displayImage2": { - "type": "std::string", + "m_stackingRule": { + "type": "enum STACKING_RULE", "id": 12, - "offset": 336, - "flags": 131079, + "offset": 144, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1959572134 + "hash": 431568889, + "enum_options": { + "STACKING_ALLOWED": 0, + "STACKING_NOSTACK": 1, + "STACKING_REPLACE": 2 + } }, - "m_clientTags": { - "type": "std::string", + "m_baseHitpoints": { + "type": "float", "id": 13, - "offset": 368, + "offset": 360, "flags": 7, - "container": "List", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 2319030025 + "hash": 686307060 }, - "m_genericEvents": { - "type": "std::string", + "m_baseMana": { + "type": "float", "id": 14, - "offset": 384, + "offset": 364, "flags": 7, - "container": "List", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 3466670829 + "hash": 1565696591 }, - "m_autoQualify": { - "type": "bool", + "m_xpPercentIncrease": { + "type": "float", "id": 15, - "offset": 400, + "offset": 368, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1878907431 + "hash": 1051081338 }, - "m_autoComplete": { - "type": "bool", + "m_goldPercent": { + "type": "float", "id": 16, - "offset": 401, + "offset": 372, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1302545445 + "hash": 1095720878 }, - "m_destinationZone": { - "type": "std::string", + "m_wispBonusPercent": { + "type": "float", "id": 17, - "offset": 408, - "flags": 268435463, + "offset": 376, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2605356153, - "enum_options": { - "__BASECLASS": "ZoneData" - } + "hash": 1304386546 }, - "m_dialogList": { - "type": "class ActorDialogListBase*", + "m_powerPipBonusPercent": { + "type": "float", "id": 18, - "offset": 264, + "offset": 380, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1909154969 + "pointer": false, + "hash": 1671446341 }, - "m_goalType": { - "type": "enum GoalTemplate::GOAL_TYPE", + "m_shadowPipBonusPercent": { + "type": "float", "id": 19, - "offset": 96, - "flags": 2097159, + "offset": 384, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1488021149, - "enum_options": { - "GOAL_TYPE_UNKNOWN": 0, - "GOAL_TYPE_BOUNTY": 1, - "GOAL_TYPE_BOUNTYCOLLECT": 2, - "GOAL_TYPE_SCAVENGE": 3, - "GOAL_TYPE_PERSONA": 4, - "GOAL_TYPE_WAYPOINT": 5, - "GOAL_TYPE_SCAVENGEFAKE": 6, - "GOAL_TYPE_ACHIEVERANK": 7, - "GOAL_TYPE_USAGE": 8, - "GOAL_TYPE_COMPLETEQUEST": 9, - "GOAL_TYPE_SOCIARANK": 10, - "GOAL_TYPE_SOCIACURRENCY": 11, - "GOAL_TYPE_SOCIAMINIGAME": 12, - "GOAL_TYPE_SOCIAGIVEITEM": 13, - "GOAL_TYPE_SOCIAGETITEM": 14, - "GOAL_TYPE_COLLECTAFTERBOUNTY": 15, - "GOAL_TYPE_ENCOUNTER_WAYPOINT_FOREACH": 16 - } + "hash": 1426533310 }, - "m_noQuestHelper": { - "type": "bool", + "m_shadowPipRating": { + "type": "float", "id": 20, - "offset": 500, + "offset": 388, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 578010882, - "enum_options": { - "__DEFAULT": 0 - } + "hash": 507126123 }, - "m_petOnlyQuest": { - "type": "bool", + "m_archmasteryBonus": { + "type": "float", "id": 21, - "offset": 501, + "offset": 392, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 679359344, - "enum_options": { - "__DEFAULT": 0 - } + "hash": 1445460001 }, - "m_activateResults": { - "type": "class ResultList*", + "m_stunResistancePercent": { + "type": "float", "id": 22, - "offset": 504, + "offset": 396, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3790153995 + "pointer": false, + "hash": 1868382627 }, - "m_hideGoalFloatyText": { - "type": "bool", + "m_school": { + "type": "std::string", "id": 23, - "offset": 512, + "offset": 400, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1919383204, - "enum_options": { - "__DEFAULT": 0 - } + "hash": 2438566051 + }, + "m_pipConversionRating": { + "type": "float", + "id": 24, + "offset": 432, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 246855691 + }, + "m_criticalHitRating": { + "type": "float", + "id": 25, + "offset": 436, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1978690540 + }, + "m_blockRating": { + "type": "float", + "id": 26, + "offset": 440, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2088486759 + }, + "m_dmgBonusPercent": { + "type": "float", + "id": 27, + "offset": 444, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 194501159 + }, + "m_dmgBonusFlat": { + "type": "float", + "id": 28, + "offset": 448, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1837769725 + }, + "m_accBonusPercent": { + "type": "float", + "id": 29, + "offset": 452, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 331557526 + }, + "m_apBonusPercent": { + "type": "float", + "id": 30, + "offset": 456, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1228557984 + }, + "m_dmgReducePercent": { + "type": "float", + "id": 31, + "offset": 460, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1426050712 + }, + "m_dmgReduceFlat": { + "type": "float", + "id": 32, + "offset": 464, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1218184718 + }, + "m_accReducePercent": { + "type": "float", + "id": 33, + "offset": 468, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1653943527 + }, + "m_healBonusPercent": { + "type": "float", + "id": 34, + "offset": 472, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 562313577 + }, + "m_healIncBonusPercent": { + "type": "float", + "id": 35, + "offset": 476, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2182535587 + }, + "m_fishingLuckBonusPercent": { + "type": "float", + "id": 36, + "offset": 480, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1363349254 } } }, - "1169179094": { - "name": "class SharedPointer", + "1161512562": { + "name": "class DependentResourcesBehaviorTemplate", "bases": [ + "BehaviorTemplate", "PropertyClass" ], - "hash": 1169179094, + "hash": 1161512562, "properties": { - "m_combatTalents": { - "type": "unsigned int", + "m_behaviorName": { + "type": "std::string", "id": 0, "offset": 72, "flags": 7, - "container": "List", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 1157727646 + "hash": 3130754092 }, - "m_derbyTalents": { - "type": "unsigned int", + "m_dependentResourceList": { + "type": "class DependentResourceContainer", "id": 1, - "offset": 88, + "offset": 120, "flags": 7, "container": "List", "dynamic": true, "singleton": false, "pointer": false, - "hash": 1072926942 + "hash": 893254530 } } }, - "1167742754": { - "name": "class ClientAnnounceRoundCinematicAction", + "765081923": { + "name": "class UpFirstData", "bases": [ - "AnnounceRoundCinematicAction", + "PropertyClass" + ], + "hash": 765081923, + "properties": { + "m_upFirst": { + "type": "int", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1884669703 + }, + "m_roundNum": { + "type": "int", + "id": 1, + "offset": 76, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1461215570 + }, + "m_resultType": { + "type": "int", + "id": 2, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1136139931 + } + } + }, + "1615116100": { + "name": "class PolymorphRatingInfo", + "bases": [ + "PropertyClass" + ], + "hash": 1615116100, + "properties": { + "m_maxBattleCards": { + "type": "int", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1906062665 + } + } + }, + "2044006144": { + "name": "class ClientFloatingTextCinematicAction*", + "bases": [ + "FloatingTextCinematicAction", + "ActorCinematicAction", "CinematicAction", "PropertyClass" ], - "hash": 1167742754, + "hash": 2044006144, "properties": { "m_timeOffset": { "type": "float", @@ -506446,370 +278079,468 @@ "singleton": false, "pointer": false, "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + }, + "m_stringTableEntry": { + "type": "std::string", + "id": 2, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2181170604 } } }, - "1167529981": { - "name": "struct std::pair", - "bases": [], - "hash": 1167529981, + "1611944252": { + "name": "class ActorDialogListBase*", + "bases": [ + "PropertyClass" + ], + "hash": 1611944252, "properties": {} }, - "1969752831": { - "name": "class CastleTourLeaderboardEntry*", + "2042958415": { + "name": "class SharedPointer", "bases": [ - "CastleTourTeleportInfo", + "BehaviorInstance", "PropertyClass" ], - "hash": 1969752831, + "hash": 2042958415, "properties": { - "m_houseTemplateID": { + "m_behaviorTemplateNameID": { "type": "unsigned int", "id": 0, - "offset": 72, - "flags": 7, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2326023642 + "hash": 223437287 + } + } + }, + "1610139823": { + "name": "class ClientElixirBenefitEffect", + "bases": [ + "ElixirBenefitEffect", + "GameEffectBase", + "PropertyClass" + ], + "hash": 1610139823, + "properties": { + "m_currentTickCount": { + "type": "double", + "id": 0, + "offset": 80, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2533274692 }, - "m_structureTemplateID": { + "m_effectNameID": { "type": "unsigned int", "id": 1, - "offset": 76, - "flags": 7, + "offset": 96, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1037379271 + "hash": 1204067144 }, - "m_lotInstanceGID": { - "type": "gid", + "m_bIsOnPet": { + "type": "bool", "id": 2, - "offset": 80, - "flags": 7, + "offset": 73, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2010711536 + "hash": 522593303 }, - "m_structureInstanceGID": { + "m_originatorID": { "type": "gid", "id": 3, - "offset": 88, - "flags": 7, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2083588818 + "hash": 1131810019 }, - "m_owningCharacterGID": { - "type": "gid", + "m_itemSlotID": { + "type": "unsigned int", "id": 4, - "offset": 96, - "flags": 7, + "offset": 112, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 316234091 + "hash": 1895747595 }, - "m_type": { - "type": "unsigned char", + "m_internalID": { + "type": "int", "id": 5, - "offset": 104, - "flags": 7, + "offset": 92, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 857501458 + "hash": 1643137924 }, - "m_packedName": { - "type": "std::string", + "m_endTime": { + "type": "unsigned int", "id": 6, - "offset": 112, - "flags": 7, + "offset": 88, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1805208228 + "hash": 716479635 }, - "m_rank": { - "type": "unsigned short", + "m_flags": { + "type": "unsigned int", "id": 7, - "offset": 144, + "offset": 128, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 773386388 + "hash": 1005801050 } } }, - "4324381": { - "name": "class AlternateTurnsCombatRule*", + "1162271805": { + "name": "class SharedPointer", "bases": [ - "CombatRule", + "WizItemLocations", "PropertyClass" ], - "hash": 4324381, + "hash": 1162271805, "properties": { - "m_alternateTurns": { - "type": "bool", + "m_itemType": { + "type": "enum WizItemLocations::eItemType", "id": 0, "offset": 72, - "flags": 31, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1974126767 + "hash": 3482173907, + "enum_options": { + "shop": 0, + "quest": 1, + "boss": 2, + "gardening": 3, + "goldChest": 4 + } }, - "m_pipsForBothTeamsAtOnce": { - "type": "bool", + "m_houseNames": { + "type": "std::string", "id": 1, - "offset": 73, + "offset": 80, "flags": 31, - "container": "Static", - "dynamic": false, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 289530295 + "hash": 2902609843 } } }, - "1559478206": { - "name": "class GardenData*", + "1608477625": { + "name": "class MatchActorResult", "bases": [ "PropertyClass" ], - "hash": 1559478206, + "hash": 1608477625, "properties": { - "m_plantList": { - "type": "class GardenPlant", + "m_pActor": { + "type": "class SharedPointer", "id": 0, "offset": 72, "flags": 31, - "container": "List", - "dynamic": true, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1115051967 + }, + "m_place": { + "type": "int", + "id": 1, + "offset": 88, + "flags": 31, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 645587347 - } - } - }, - "398214428": { - "name": "class SharedPointer", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 398214428, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, + "hash": 806257663 + }, + "m_ratingGained": { + "type": "int", + "id": 2, + "offset": 92, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 - } - } - }, - "1167470030": { - "name": "class PetSnackLootInfo*", - "bases": [ - "ItemLootInfo", - "LootInfo", - "LootInfoBase", - "PropertyClass" - ], - "hash": 1167470030, - "properties": { - "m_lootType": { - "type": "enum LootInfo::LOOT_TYPE", - "id": 0, - "offset": 72, - "flags": 2097183, + "hash": 1426436071 + }, + "m_arenaPoints": { + "type": "int", + "id": 3, + "offset": 96, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1591891442, - "enum_options": { - "LOOT_TYPE_NONE": 0, - "LOOT_TYPE_GOLD": 1, - "LOOT_TYPE_MANA": 2, - "LOOT_TYPE_ITEM": 3, - "LOOT_TYPE_TREASURE_CARD": 4, - "LOOT_TYPE_MAGIC_XP": 5, - "LOOT_TYPE_ADD_SPELL": 6, - "LOOT_TYPE_MAX_HEALTH": 7, - "LOOT_TYPE_MAX_GOLD": 8, - "LOOT_TYPE_MAX_MANA": 9, - "LOOT_TYPE_MAX_POTION": 10, - "LOOT_TYPE_TRAINING_POINTS": 11, - "LOOT_TYPE_RECIPE": 12, - "LOOT_TYPE_CRAFTING_SLOT": 13, - "LOOT_TYPE_REAGENT": 14, - "LOOT_TYPE_PETSNACK": 15, - "LOOT_TYPE_GARDENING_XP": 16, - "LOOT_TYPE_PET_XP": 17, - "LOOT_TYPE_TREASURE_TABLE": 18, - "LOOT_TYPE_ARENA_POINTS": 19, - "LOOT_TYPE_ARENA_BONUS_POINTS": 20, - "LOOT_TYPE_GROUP": 21, - "LOOT_TYPE_FISHING_XP": 22, - "LOOT_TYPE_EVENT_CURRENCY_1": 24, - "LOOT_TYPE_EVENT_CURRENCY_2": 25, - "LOOT_TYPE_PVP_CURRENCY": 26, - "LOOT_TYPE_PVP_CURRENCY_BONUS": 27, - "LOOT_TYPE_PVP_TOURNEY_CURRENCY": 28, - "LOOT_TYPE_PVP_TOURNEY_CURRENCY_BONUS": 29, - "LOOT_TYPE_FURNITURE_ESSENCE": 30 - } + "hash": 511478910 }, - "m_itemID": { - "type": "gid", - "id": 1, - "offset": 88, - "flags": 33554463, + "m_pvpCurrency": { + "type": "int", + "id": 4, + "offset": 100, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 569545460 + "hash": 611304283 }, - "m_numItems": { + "m_pvpTourneyCurrency": { "type": "int", - "id": 2, - "offset": 96, + "id": 5, + "offset": 104, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1588646284 + "hash": 1184787505 + }, + "m_gold": { + "type": "int", + "id": 6, + "offset": 108, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 219423808 + }, + "m_gameResult": { + "type": "unsigned char", + "id": 7, + "offset": 112, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1417654793 } } }, - "1969752821": { - "name": "class CastleTourLeaderboardEntry", + "766500222": { + "name": "class WizClientObject", "bases": [ - "CastleTourTeleportInfo", + "ClientObject", + "CoreObject", "PropertyClass" ], - "hash": 1969752821, + "hash": 766500222, "properties": { - "m_houseTemplateID": { - "type": "unsigned int", + "m_inactiveBehaviors": { + "type": "class SharedPointer", "id": 0, + "offset": 224, + "flags": 31, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1850812559 + }, + "m_globalID.m_full": { + "type": "unsigned __int64", + "id": 1, "offset": 72, - "flags": 7, + "flags": 16777247, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2326023642 + "hash": 2312465444 }, - "m_structureTemplateID": { - "type": "unsigned int", - "id": 1, - "offset": 76, - "flags": 7, + "m_permID": { + "type": "unsigned __int64", + "id": 2, + "offset": 80, + "flags": 16777247, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1298909658 + }, + "m_location": { + "type": "class Vector3D", + "id": 3, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2239683611 + }, + "m_orientation": { + "type": "class Vector3D", + "id": 4, + "offset": 180, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2344058766 + }, + "m_fScale": { + "type": "float", + "id": 5, + "offset": 196, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 503137701 + }, + "m_templateID.m_full": { + "type": "unsigned __int64", + "id": 6, + "offset": 96, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 633907631 + }, + "m_debugName": { + "type": "std::string", + "id": 7, + "offset": 104, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1037379271 + "hash": 3553984419 }, - "m_lotInstanceGID": { - "type": "gid", - "id": 2, - "offset": 80, - "flags": 7, + "m_displayKey": { + "type": "std::string", + "id": 8, + "offset": 136, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2010711536 + "hash": 3023276954 }, - "m_structureInstanceGID": { - "type": "gid", - "id": 3, - "offset": 88, - "flags": 7, + "m_zoneTagID": { + "type": "unsigned int", + "id": 9, + "offset": 344, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2083588818 + "hash": 965291410 }, - "m_owningCharacterGID": { - "type": "gid", - "id": 4, - "offset": 96, - "flags": 7, + "m_speedMultiplier": { + "type": "short", + "id": 10, + "offset": 192, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 316234091 + "hash": 123130076 }, - "m_type": { - "type": "unsigned char", - "id": 5, - "offset": 104, - "flags": 7, + "m_nMobileID": { + "type": "unsigned short", + "id": 11, + "offset": 194, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 857501458 + "hash": 1054318939 }, - "m_packedName": { - "type": "std::string", - "id": 6, - "offset": 112, - "flags": 7, + "m_characterId": { + "type": "gid", + "id": 12, + "offset": 440, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1805208228 + "hash": 210498418 }, - "m_rank": { - "type": "unsigned short", - "id": 7, - "offset": 144, - "flags": 7, + "m_gameStats": { + "type": "class WizGameStats*", + "id": 13, + "offset": 552, + "flags": 27, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 773386388 + "pointer": true, + "hash": 3194480406 } } }, - "398229815": { - "name": "class ClientReagentItem", + "766495102": { + "name": "class WizClientObject*", "bases": [ - "WizClientObjectItem", "ClientObject", "CoreObject", "PropertyClass" ], - "hash": 398229815, + "hash": 766495102, "properties": { "m_inactiveBehaviors": { "type": "class SharedPointer", @@ -506954,84 +278685,59 @@ "pointer": false, "hash": 210498418 }, - "m_primaryColor": { - "type": "int", + "m_gameStats": { + "type": "class WizGameStats*", "id": 13, - "offset": 560, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 900965981 - }, - "m_pattern": { - "type": "int", - "id": 14, - "offset": 564, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1337683384 - }, - "m_secondaryColor": { - "type": "int", - "id": 15, - "offset": 568, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1616550081 - }, - "m_displayID": { - "type": "gid", - "id": 16, - "offset": 576, - "flags": 63, + "offset": 552, + "flags": 27, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1022427803 - }, - "m_itemFlags": { + "pointer": true, + "hash": 3194480406 + } + } + }, + "1608477879": { + "name": "class TeamHelpSigilMonthlyGauntletInfo*", + "bases": [ + "PropertyClass" + ], + "hash": 1608477879, + "properties": { + "m_monthlyGauntletClassProjectID": { "type": "unsigned int", - "id": 17, - "offset": 584, - "flags": 31, + "id": 0, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2004128457 + "hash": 2317452086 }, - "m_quantity": { + "m_monthlyGauntletCanTeamUp": { "type": "int", - "id": 18, - "offset": 600, - "flags": 27, + "id": 1, + "offset": 76, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 169215289 + "hash": 476490151 } } }, - "4897181": { - "name": "class GuildMuseumCuratorOption", + "2045692196": { + "name": "class ArenaMatchResults", "bases": [ - "ServiceOptionBase", "PropertyClass" ], - "hash": 4897181, + "hash": 2045692196, "properties": { - "m_serviceName": { - "type": "std::string", + "m_matchID": { + "type": "gid", "id": 0, "offset": 72, "flags": 31, @@ -507039,83 +278745,127 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 2206028813 + "hash": 1757621298 }, - "m_iconKey": { - "type": "std::string", + "m_matchNameID": { + "type": "unsigned int", "id": 1, - "offset": 168, + "offset": 80, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2457138637 + "hash": 1751361288 }, - "m_displayKey": { - "type": "std::string", + "m_matchResolution": { + "type": "int", "id": 2, - "offset": 104, + "offset": 84, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3023276954 + "hash": 1481862043 }, - "m_serviceIndex": { - "type": "unsigned int", + "m_actorList": { + "type": "class SharedPointer", "id": 3, - "offset": 204, + "offset": 88, "flags": 31, - "container": "Static", - "dynamic": false, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2087966079 + }, + "m_teamResults": { + "type": "class MatchTeamResult", + "id": 4, + "offset": 104, + "flags": 31, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 2103126710 + "hash": 2421530763 }, - "m_forceInteract": { + "m_timeOutDraw": { "type": "bool", - "id": 4, - "offset": 200, + "id": 5, + "offset": 120, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1705789564 + "hash": 582264616 } } }, - "1559871422": { - "name": "class GardenData", + "1163082003": { + "name": "class SoundFilterParam*", "bases": [ "PropertyClass" ], - "hash": 1559871422, + "hash": 1163082003, "properties": { - "m_plantList": { - "type": "class GardenPlant", + "m_name": { + "type": "std::string", "id": 0, "offset": 72, - "flags": 31, - "container": "List", + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1717359772 + }, + "m_distanceRatio": { + "type": "float", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Vector", "dynamic": true, "singleton": false, "pointer": false, - "hash": 645587347 + "hash": 1358433825 + }, + "m_value": { + "type": "float", + "id": 2, + "offset": 128, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 903191604 + }, + "m_needsUpdate": { + "type": "bool", + "id": 3, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1787634021 } } }, - "1167591447": { - "name": "class SharedPointer", + "2044969640": { + "name": "class TemplateCache", "bases": [ "PropertyClass" ], - "hash": 1167591447, + "hash": 2044969640, "properties": { - "m_dye": { - "type": "int", + "m_nVersion": { + "type": "unsigned int", "id": 0, "offset": 72, "flags": 7, @@ -507123,128 +278873,81 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 267033084 + "hash": 2302239105 }, - "m_texture": { - "type": "int", + "m_sSerializedCache": { + "type": "class SerializedBuffer", "id": 1, - "offset": 76, + "offset": 96, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 222406987 + "hash": 3187138089 } } }, - "4781295": { - "name": "class ProvideSpellEffectInfo*", + "1162983699": { + "name": "class SoundFilterParam", "bases": [ - "GameEffectInfo", "PropertyClass" ], - "hash": 4781295, + "hash": 1162983699, "properties": { - "m_effectName": { + "m_name": { "type": "std::string", "id": 0, "offset": 72, - "flags": 31, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2029161513 + "hash": 1717359772 }, - "m_spellName": { - "type": "std::string", + "m_distanceRatio": { + "type": "float", "id": 1, "offset": 104, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "Vector", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 2688485244 + "hash": 1358433825 }, - "m_numSpells": { - "type": "int", + "m_value": { + "type": "float", "id": 2, - "offset": 136, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1269498237 - }, - "m_vFX": { - "type": "std::string", - "id": 3, - "offset": 144, + "offset": 128, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "Vector", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 1764750607 + "hash": 903191604 }, - "m_vFXOverride": { + "m_needsUpdate": { "type": "bool", - "id": 4, - "offset": 176, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1491092359 - }, - "m_sound": { - "type": "std::string", - "id": 5, - "offset": 184, + "id": 3, + "offset": 152, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2307644996 - } - } - }, - "1559857256": { - "name": "class SharedPointer", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1559857256, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 + "hash": 1787634021 } } }, - "1167581154": { - "name": "class WizClientPet", + "2044277430": { + "name": "class SharedPointer", "bases": [ - "WizClientLeashedObject", - "WizClientObject", - "ClientObject", "CoreObject", "PropertyClass" ], - "hash": 1167581154, + "hash": 2044277430, "properties": { "m_inactiveBehaviors": { "type": "class SharedPointer", @@ -507378,85 +279081,548 @@ "pointer": false, "hash": 1054318939 }, - "m_characterId": { - "type": "gid", + "m_recipeName": { + "type": "std::string", "id": 12, - "offset": 440, - "flags": 31, + "offset": 392, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 210498418 + "hash": 3311832788 }, - "m_gameStats": { - "type": "class WizGameStats*", + "m_timeFinished": { + "type": "int", "id": 13, - "offset": 544, - "flags": 27, + "offset": 388, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, + "pointer": false, + "hash": 2127619571 + } + } + }, + "767522421": { + "name": "class GoldAmountTemplate", + "bases": [ + "WizItemTemplate", + "ItemTemplate", + "GameObjectTemplate", + "CoreTemplate", + "PropertyClass" + ], + "hash": 767522421, + "properties": { + "m_behaviors": { + "type": "class BehaviorTemplate*", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, "pointer": true, - "hash": 3194480406 + "hash": 1197808594 }, - "m_leashed": { + "m_objectName": { + "type": "std::string", + "id": 1, + "offset": 96, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2154940147 + }, + "m_templateID": { + "type": "unsigned int", + "id": 2, + "offset": 128, + "flags": 16777223, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1286746870 + }, + "m_visualID": { + "type": "unsigned int", + "id": 3, + "offset": 132, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1118778894 + }, + "m_adjectiveList": { + "type": "std::string", + "id": 4, + "offset": 248, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 3195213318 + }, + "m_exemptFromAOI": { "type": "bool", + "id": 5, + "offset": 240, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1457879059 + }, + "m_displayName": { + "type": "std::string", + "id": 6, + "offset": 168, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2446900370 + }, + "m_description": { + "type": "std::string", + "id": 7, + "offset": 136, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1649374815 + }, + "m_nObjectType": { + "type": "enum ObjectType", + "id": 8, + "offset": 200, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2118905880, + "enum_options": { + "OT_UNDEFINED": 0, + "OT_PLAYER": 1, + "OT_NPC": 2, + "OT_PROP": 3, + "OT_OBJECT": 4, + "OT_HOUSE": 5, + "OT_KEY": 6, + "OT_OLD_KEY": 7, + "OT_DEED": 8, + "OT_MAIL": 9, + "OT_RECIPE": 17, + "OT_EQUIP_HEAD": 10, + "OT_EQUIP_CHEST": 11, + "OT_EQUIP_LEGS": 12, + "OT_EQUIP_HANDS": 13, + "OT_EQUIP_FINGER": 14, + "OT_EQUIP_FEET": 15, + "OT_EQUIP_EAR": 16, + "OT_BUILDING_BLOCK": 18, + "OT_BUILDING_BLOCK_SOLID": 19, + "OT_GOLF": 20, + "OT_DOOR": 21, + "OT_PET": 22, + "OT_FABRIC": 23, + "OT_WINDOW": 24, + "OT_ROOF": 25, + "OT_HORSE": 26, + "OT_STRUCTURE": 27, + "OT_HOUSING_TEXTURE": 28, + "OT_PLANT": 29 + } + }, + "m_sIcon": { + "type": "std::string", + "id": 9, + "offset": 208, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306259831 + }, + "m_equipRequirements": { + "type": "class RequirementList*", + "id": 10, + "offset": 280, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2762617226 + }, + "m_purchaseRequirements": { + "type": "class RequirementList*", + "id": 11, + "offset": 288, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3174641793 + }, + "m_equipEffects": { + "type": "class GameEffectInfo*", + "id": 12, + "offset": 296, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 836628351 + }, + "m_baseCost": { + "type": "float", + "id": 13, + "offset": 312, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1565352651 + }, + "m_creditsCost": { + "type": "float", "id": 14, - "offset": 576, - "flags": 31, + "offset": 320, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 603235945 + "hash": 805514974 + }, + "m_avatarInfo": { + "type": "class AvatarItemInfoBase*", + "id": 15, + "offset": 328, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2627321299 + }, + "m_avatarFlags": { + "type": "std::string", + "id": 16, + "offset": 336, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2347762759 + }, + "m_itemLimit": { + "type": "int", + "id": 17, + "offset": 316, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1799746856 + }, + "m_holidayFlag": { + "type": "std::string", + "id": 18, + "offset": 352, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2994795359 + }, + "m_itemSetBonusTemplateID": { + "type": "unsigned int", + "id": 19, + "offset": 384, + "flags": 33554439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1316835672 + }, + "m_numPrimaryColors": { + "type": "int", + "id": 20, + "offset": 428, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 981103872 + }, + "m_numSecondaryColors": { + "type": "int", + "id": 21, + "offset": 432, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1310416868 + }, + "m_numPatterns": { + "type": "int", + "id": 22, + "offset": 436, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 953162171 + }, + "m_school": { + "type": "std::string", + "id": 23, + "offset": 392, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2438566051 + }, + "m_arenaPointCost": { + "type": "int", + "id": 24, + "offset": 440, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1819621796 + }, + "m_pvpCurrencyCost": { + "type": "int", + "id": 25, + "offset": 444, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 645595444 + }, + "m_pvpTourneyCurrencyCost": { + "type": "int", + "id": 26, + "offset": 448, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 517874954 + }, + "m_rank": { + "type": "int", + "id": 27, + "offset": 424, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 219803942 + }, + "m_boyIconIndex": { + "type": "int", + "id": 28, + "offset": 452, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 802140453 + }, + "m_girlIconIndex": { + "type": "int", + "id": 29, + "offset": 456, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 832706793 + }, + "m_leashOffsetOverride": { + "type": "class SharedPointer", + "id": 30, + "offset": 464, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1692586788 + }, + "m_rarity": { + "type": "enum RarityType", + "id": 31, + "offset": 460, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2253792108, + "enum_options": { + "RT_COMMON": 0, + "RT_UNCOMMON": 1, + "RT_RARE": 2, + "RT_ULTRARARE": 3, + "RT_EPIC": 4 + } + }, + "m_goldAmount": { + "type": "int", + "id": 32, + "offset": 480, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 754429876 + }, + "m_nif": { + "type": "std::string", + "id": 33, + "offset": 488, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1764743064 } } }, - "1969979772": { - "name": "class ClientMobAggroBehavior*", + "1611255421": { + "name": "class SharedPointer", "bases": [ - "MobAggroBehavior", - "AggroBehavior", - "BehaviorInstance", "PropertyClass" ], - "hash": 1969979772, + "hash": 1611255421, + "properties": {} + }, + "1610986034": { + "name": "struct ControlTileMap::CellInfo", + "bases": [ + "PropertyClass" + ], + "hash": 1610986034, "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", + "m_nTileIndex": { + "type": "int", "id": 0, - "offset": 104, - "flags": 39, + "offset": 72, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 + "hash": 1956352654 + }, + "m_fCurrentFrame": { + "type": "float", + "id": 1, + "offset": 76, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 219900907 + }, + "m_bIsFlippedHorizontal": { + "type": "bool", + "id": 2, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 627031807 + }, + "m_bIsFlippedVertical": { + "type": "bool", + "id": 3, + "offset": 81, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 298230063 + }, + "m_nRotation": { + "type": "unsigned int", + "id": 4, + "offset": 84, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1898715531 } } }, - "4740335": { - "name": "class ProvideSpellEffectInfo", + "1163162832": { + "name": "class BlobRequestObject*", "bases": [ - "GameEffectInfo", "PropertyClass" ], - "hash": 4740335, + "hash": 1163162832, "properties": { - "m_effectName": { + "m_subType": { "type": "std::string", "id": 0, "offset": 72, - "flags": 31, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2029161513 + "hash": 3175052615 }, - "m_spellName": { - "type": "std::string", + "m_versionNumber": { + "type": "unsigned int", "id": 1, "offset": 104, "flags": 7, @@ -507464,62 +279630,222 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 2688485244 + "hash": 1265259452 }, - "m_numSpells": { + "m_packageNumber": { "type": "int", "id": 2, - "offset": 136, + "offset": 108, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1269498237 + "hash": 1934060719 }, - "m_vFX": { - "type": "std::string", + "m_userData": { + "type": "unsigned int", "id": 3, - "offset": 144, + "offset": 112, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1764750607 + "hash": 927280710 }, - "m_vFXOverride": { - "type": "bool", + "m_objectCount": { + "type": "unsigned int", "id": 4, - "offset": 176, + "offset": 116, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1491092359 + "hash": 410139949 + } + } + }, + "1610760886": { + "name": "class ParticipantPipData*", + "bases": [ + "PropertyClass" + ], + "hash": 1610760886, + "properties": { + "m_partID": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 821435516 }, - "m_sound": { - "type": "std::string", - "id": 5, - "offset": 184, + "m_pips": { + "type": "class SharedPointer", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1511196686 + }, + "m_acq": { + "type": "unsigned int", + "id": 2, + "offset": 96, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2307644996 + "hash": 478431554 + }, + "m_arch": { + "type": "unsigned int", + "id": 3, + "offset": 100, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 430613611 + }, + "m_archPoints": { + "type": "float", + "id": 4, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2151979634 } } }, - "399891816": { - "name": "class SharedPointer", + "2044969645": { + "name": "class TemplateCache*", + "bases": [ + "PropertyClass" + ], + "hash": 2044969645, + "properties": { + "m_nVersion": { + "type": "unsigned int", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2302239105 + }, + "m_sSerializedCache": { + "type": "class SerializedBuffer", + "id": 1, + "offset": 96, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3187138089 + } + } + }, + "770633019": { + "name": "class FurnitureEssenceLootInfo", + "bases": [ + "ItemLootInfo", + "LootInfo", + "LootInfoBase", + "PropertyClass" + ], + "hash": 770633019, + "properties": { + "m_lootType": { + "type": "enum LootInfo::LOOT_TYPE", + "id": 0, + "offset": 72, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1591891442, + "enum_options": { + "LOOT_TYPE_NONE": 0, + "LOOT_TYPE_GOLD": 1, + "LOOT_TYPE_MANA": 2, + "LOOT_TYPE_ITEM": 3, + "LOOT_TYPE_TREASURE_CARD": 4, + "LOOT_TYPE_MAGIC_XP": 5, + "LOOT_TYPE_ADD_SPELL": 6, + "LOOT_TYPE_MAX_HEALTH": 7, + "LOOT_TYPE_MAX_GOLD": 8, + "LOOT_TYPE_MAX_MANA": 9, + "LOOT_TYPE_MAX_POTION": 10, + "LOOT_TYPE_TRAINING_POINTS": 11, + "LOOT_TYPE_RECIPE": 12, + "LOOT_TYPE_CRAFTING_SLOT": 13, + "LOOT_TYPE_REAGENT": 14, + "LOOT_TYPE_PETSNACK": 15, + "LOOT_TYPE_GARDENING_XP": 16, + "LOOT_TYPE_PET_XP": 17, + "LOOT_TYPE_TREASURE_TABLE": 18, + "LOOT_TYPE_ARENA_POINTS": 19, + "LOOT_TYPE_ARENA_BONUS_POINTS": 20, + "LOOT_TYPE_GROUP": 21, + "LOOT_TYPE_FISHING_XP": 22, + "LOOT_TYPE_EVENT_CURRENCY_1": 24, + "LOOT_TYPE_EVENT_CURRENCY_2": 25, + "LOOT_TYPE_PVP_CURRENCY": 26, + "LOOT_TYPE_PVP_CURRENCY_BONUS": 27, + "LOOT_TYPE_PVP_TOURNEY_CURRENCY": 28, + "LOOT_TYPE_PVP_TOURNEY_CURRENCY_BONUS": 29, + "LOOT_TYPE_FURNITURE_ESSENCE": 30 + } + }, + "m_itemID": { + "type": "gid", + "id": 1, + "offset": 88, + "flags": 33554463, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 569545460 + }, + "m_numItems": { + "type": "int", + "id": 2, + "offset": 96, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1588646284 + } + } + }, + "768421762": { + "name": "class SharedPointer", "bases": [ - "ActorCinematicAction", "CinematicAction", "PropertyClass" ], - "hash": 399891816, + "hash": 768421762, "properties": { "m_timeOffset": { "type": "float", @@ -507532,8 +279858,8 @@ "pointer": false, "hash": 2237098605 }, - "m_actor": { - "type": "std::string", + "m_interpDuration": { + "type": "float", "id": 1, "offset": 80, "flags": 7, @@ -507541,40 +279867,291 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 2285866132 + "hash": 2237711951 + } + } + }, + "768016556": { + "name": "class FishingInfo*", + "bases": [ + "PropertyClass" + ], + "hash": 768016556, + "properties": { + "m_bodyOfWaterList": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 457750787 + } + } + }, + "1164989609": { + "name": "class GraphicalSpellWindow*", + "bases": [ + "Window", + "PropertyClass" + ], + "hash": 1164989609, + "properties": { + "m_sName": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306437263 }, - "m_cloaked": { - "type": "bool", + "m_Children": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621225959 + }, + "m_Style": { + "type": "unsigned int", "id": 2, - "offset": 120, - "flags": 7, + "offset": 152, + "flags": 1048583, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 7349510 + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "SCALE_CHILDREN": 2, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "FOCUS_LOCKED": 64, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152 + } }, - "m_newActorName": { - "type": "std::string", + "m_Flags": { + "type": "unsigned int", "id": 3, - "offset": 128, + "offset": 156, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } + }, + "m_Window": { + "type": "class Rect", + "id": 4, + "offset": 160, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3105139380 + }, + "m_fTargetAlpha": { + "type": "float", + "id": 5, + "offset": 212, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1809129834 + }, + "m_fDisabledAlpha": { + "type": "float", + "id": 6, + "offset": 216, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1389987675 + }, + "m_fAlpha": { + "type": "float", + "id": 7, + "offset": 208, + "flags": 65671, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 482130755 + }, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3623628394 + }, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2102211316 + }, + "m_sScript": { + "type": "std::string", + "id": 10, + "offset": 352, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1846695875 + }, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3389835433 + }, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547159940 + }, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513510520 + }, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3091503757 + }, + "m_spell": { + "type": "class SharedPointer", + "id": 16, + "offset": 584, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1393190292 + }, + "m_spellName": { + "type": "std::string", + "id": 17, + "offset": 600, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2029131039 + "hash": 2688485244 + }, + "m_grayscale": { + "type": "bool", + "id": 18, + "offset": 636, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 348289198 } } }, - "1969823355": { - "name": "class AccousticAreaBehavior", + "2045893860": { + "name": "class WanderMovementBehavior", "bases": [ - "AreaBehavior", "BehaviorInstance", "PropertyClass" ], - "hash": 1969823355, + "hash": 2045893860, "properties": { "m_behaviorTemplateNameID": { "type": "unsigned int", @@ -507586,490 +280163,506 @@ "singleton": false, "pointer": false, "hash": 223437287 - }, - "m_radius": { + } + } + }, + "767808974": { + "name": "class EffectCinematicAction", + "bases": [ + "BaseEffectCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 767808974, + "properties": { + "m_timeOffset": { "type": "float", - "id": 1, - "offset": 116, + "id": 0, + "offset": 72, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 989410271 + "hash": 2237098605 }, - "m_category": { - "type": "enum AudioCategory", - "id": 2, - "offset": 124, + "m_effectRel": { + "type": "enum BaseEffectCinematicAction::kEffectRelative", + "id": 1, + "offset": 80, "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2951251982, + "hash": 2978921287, "enum_options": { - "AudioCategory_Irrelevent": 0, - "AudioCategory_Accoustic": 1, - "AudioCategory_Noise": 2, - "AudioCategory_Music": 3 + "kNone": 0, + "kSigil": 1, + "kTarget": 2, + "kSource": 3, + "kActor": 4 } }, - "m_exclusive": { + "m_graphic": { + "type": "std::string", + "id": 2, + "offset": 88, + "flags": 131079, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2592217913 + }, + "m_bUseOrientationOverride": { "type": "bool", "id": 3, - "offset": 128, + "offset": 120, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 824383403 + "hash": 1088002894 }, - "m_accousticSignature": { - "type": "enum AccousticSignature", + "m_overrideOrientation": { + "type": "class Vector3D", "id": 4, - "offset": 176, - "flags": 2097159, + "offset": 124, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1188263221, - "enum_options": { - "Generic": 0, - "Padded Cell": 1, - "Room": 2, - "Bath Room": 3, - "Living Room": 4, - "Stone Room": 5, - "Auditorium": 6, - "Concert Hall": 7, - "Cave": 8, - "Arena": 9, - "Hanger": 10, - "Carpeted Hallway": 11, - "Hallway": 12, - "Stone Corridor": 13, - "Alley": 14, - "Forest": 15, - "City": 16, - "Mountains": 17, - "Quarry": 18, - "Plain": 19, - "Parking Lot": 20, - "Sewer Pipe": 21, - "Underwater": 22, - "Drugged": 23, - "Dizzy": 24, - "Psychotic": 25 - } + "hash": 3267199758 + }, + "m_bUseLocationOverride": { + "type": "bool", + "id": 5, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1767170875 + }, + "m_overrideLocation": { + "type": "class Vector3D", + "id": 6, + "offset": 108, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3776417691 } } }, - "398288299": { - "name": "class PvPMatchInfo", + "1164677937": { + "name": "class SharedPointer", "bases": [ - "ArenaMatchInfo", + "CoreTemplate", "PropertyClass" ], - "hash": 398288299, + "hash": 1164677937, "properties": { - "m_matchID": { - "type": "gid", + "m_behaviors": { + "type": "class BehaviorTemplate*", "id": 0, "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, + "flags": 7, + "container": "Vector", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 1757621298 + "pointer": true, + "hash": 1197808594 }, - "m_matchNameID": { + "m_templateID": { "type": "unsigned int", "id": 1, - "offset": 80, - "flags": 31, + "offset": 96, + "flags": 33554463, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1751361288 + "hash": 1286746870 }, - "m_teams": { - "type": "class SharedPointer", + "m_name": { + "type": "std::string", "id": 2, - "offset": 96, - "flags": 31, - "container": "List", - "dynamic": true, + "offset": 104, + "flags": 134217759, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1984373608 + "pointer": false, + "hash": 1717359772 }, - "m_matchName": { + "m_description": { "type": "std::string", "id": 3, - "offset": 112, - "flags": 31, + "offset": 136, + "flags": 8388639, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2061215721 + "hash": 1649374815 }, - "m_matchTitle": { + "m_combatTriggers": { "type": "std::string", "id": 4, - "offset": 144, + "offset": 168, "flags": 31, - "container": "Static", - "dynamic": false, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 2918442218 + "hash": 3023646200 }, - "m_matchZoneID": { - "type": "gid", + "m_battlefieldEffects": { + "type": "class SharedPointer", "id": 5, - "offset": 176, + "offset": 184, "flags": 31, - "container": "Static", - "dynamic": false, + "container": "Vector", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 2026205966 + "pointer": true, + "hash": 1245973515 }, - "m_creatorID": { - "type": "gid", + "m_gameEffects": { + "type": "class SharedPointer", "id": 6, - "offset": 88, + "offset": 208, "flags": 31, - "container": "Static", - "dynamic": false, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 1051766037 + "pointer": true, + "hash": 1187421775 }, - "m_matchZone": { - "type": "std::string", + "m_combatRules": { + "type": "class SharedPointer", "id": 7, - "offset": 184, + "offset": 240, "flags": 31, - "container": "Static", - "dynamic": false, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 2061662244 + "pointer": true, + "hash": 3327225763 }, - "m_startTime": { - "type": "int", + "m_noCrits": { + "type": "bool", "id": 8, - "offset": 216, + "offset": 224, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1386968823 + "hash": 1394430197 }, - "m_status": { - "type": "int", + "m_noTreasureCards": { + "type": "bool", "id": 9, - "offset": 220, + "offset": 225, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 960781182 + "hash": 1653008424 }, - "m_friendsOnly": { - "type": "bool", + "m_bannedEquipment": { + "type": "int", "id": 10, - "offset": 236, - "flags": 31, - "container": "Static", - "dynamic": false, + "offset": 256, + "flags": 33554463, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 1420401792 + "hash": 697457018 }, - "m_tournamentNameID": { - "type": "unsigned int", + "m_bannedEquipmentSlots": { + "type": "std::string", "id": 11, - "offset": 224, + "offset": 288, "flags": 31, - "container": "Static", - "dynamic": false, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 1799846440 + "hash": 2291474320 }, - "m_leagueID": { - "type": "unsigned int", + "m_bannedSchools": { + "type": "std::string", "id": 12, - "offset": 228, + "offset": 320, "flags": 31, - "container": "Static", - "dynamic": false, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 692361645 + "hash": 2417746270 }, - "m_seasonID": { - "type": "unsigned int", + "m_requiredSpellsAdjectives": { + "type": "std::string", "id": 13, - "offset": 232, + "offset": 352, "flags": 31, - "container": "Static", - "dynamic": false, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 535260643 + "hash": 2759718993 }, - "m_bUpdateLadder": { - "type": "bool", + "m_bannedSpellsAdjectives": { + "type": "std::string", "id": 14, - "offset": 248, + "offset": 384, "flags": 31, - "container": "Static", - "dynamic": false, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 1937525956 + "hash": 2971738904 }, - "m_maxPointsPerMatch": { - "type": "unsigned int", + "m_leftDoodle": { + "type": "std::string", "id": 15, - "offset": 240, - "flags": 31, + "offset": 712, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1397040900 + "hash": 1523671421 }, - "m_estimatedWeight": { - "type": "float", + "m_rightDoodle": { + "type": "std::string", "id": 16, - "offset": 244, - "flags": 31, + "offset": 744, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1374360127 + "hash": 2828021488 }, - "m_maxELOError": { - "type": "int", + "m_onlyTreasureCards": { + "type": "bool", "id": 17, - "offset": 252, + "offset": 226, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 318998922 + "hash": 752220749 }, - "m_uniqueMatchID": { - "type": "std::string", + "m_noShadowSpells": { + "type": "bool", "id": 18, - "offset": 264, + "offset": 227, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3291026220 + "hash": 2142185705 }, - "m_pvpDuelModifiersTemplates": { - "type": "class SharedPointer", + "m_noEnchantedTreasureCards": { + "type": "bool", "id": 19, - "offset": 296, + "offset": 228, "flags": 31, - "container": "List", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1193155411 + "pointer": false, + "hash": 1780948882 }, - "m_teamSize": { - "type": "unsigned int", + "m_noEnchantmentSpells": { + "type": "bool", "id": 20, - "offset": 256, + "offset": 229, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2343388751 + "hash": 1325982520 }, - "m_joinQueueRequirements": { - "type": "class SharedPointer", + "m_noMaycastSpells": { + "type": "bool", "id": 21, - "offset": 312, + "offset": 230, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2746080983 + "pointer": false, + "hash": 1409034133 }, - "m_timeLimitSec": { - "type": "unsigned int", + "m_enableSpellLevelRestrictions": { + "type": "bool", "id": 22, - "offset": 328, + "offset": 231, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 312519798 + "hash": 1272415451 }, - "m_useHistoricDiego": { + "m_ignoreSpellsPvPOnlyFlag": { "type": "bool", "id": 23, - "offset": 352, + "offset": 232, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1688842509 + "hash": 1714276188 }, - "m_ignoredList": { - "type": "gid", + "m_ignoreSpellsPvEOnlyFlag": { + "type": "bool", "id": 24, - "offset": 336, + "offset": 233, "flags": 31, - "container": "List", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 1850924028 + "hash": 1691675729 }, - "m_matchTimer": { - "type": "float", + "m_newRulesFlag": { + "type": "bool", "id": 25, - "offset": 356, + "offset": 704, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1510935909 + "hash": 2040511330 }, - "m_bonusTime": { - "type": "int", + "m_ruleText": { + "type": "std::string", "id": 26, - "offset": 360, - "flags": 31, + "offset": 448, + "flags": 8388639, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1757496496 + "hash": 1754346744 }, - "m_passPenalty": { - "type": "int", + "m_gameTypeText": { + "type": "std::string", "id": 27, - "offset": 364, - "flags": 31, + "offset": 416, + "flags": 8388639, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 982951662 + "hash": 1885530300 }, - "m_yellowTime": { - "type": "int", + "m_combatTriggersDescText": { + "type": "std::string", "id": 28, - "offset": 368, - "flags": 31, + "offset": 480, + "flags": 8388639, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1017028741 + "hash": 2417600380 }, - "m_redTime": { - "type": "int", + "m_battlefieldEffectsDescText": { + "type": "std::string", "id": 29, - "offset": 372, - "flags": 31, + "offset": 512, + "flags": 8388639, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1909556708 + "hash": 3278371679 }, - "m_minTurnTime": { - "type": "int", + "m_gameEffectsDescText": { + "type": "std::string", "id": 30, - "offset": 376, - "flags": 31, + "offset": 544, + "flags": 8388639, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 652524886 + "hash": 2965245049 }, - "m_effects": { - "type": "class SharedPointer", + "m_spellLevelRestrictionsDescText": { + "type": "std::string", "id": 31, - "offset": 384, - "flags": 31, - "container": "Vector", - "dynamic": true, + "offset": 576, + "flags": 8388639, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 804962647 + "pointer": false, + "hash": 3306238112 }, - "m_updateBattlePassPoints": { - "type": "bool", + "m_combatRulesDescText": { + "type": "std::string", "id": 32, - "offset": 408, - "flags": 31, + "offset": 608, + "flags": 8388639, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 713306342 + "hash": 3064659424 }, - "m_battlePassWinPoints": { - "type": "int", + "m_requiredSpellsDescText": { + "type": "std::string", "id": 33, - "offset": 412, - "flags": 31, + "offset": 640, + "flags": 8388639, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1252337240 + "hash": 2035585939 }, - "m_battlePassLosePoints": { - "type": "int", + "m_bannedSpellsDescText": { + "type": "std::string", "id": 34, - "offset": 416, - "flags": 31, + "offset": 672, + "flags": 8388639, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1400839869 + "hash": 2010144922 } } }, - "1969822587": { - "name": "class AccousticAreaBehavior*", + "1611442142": { + "name": "class SharedPointer", "bases": [ - "AreaBehavior", "BehaviorInstance", "PropertyClass" ], - "hash": 1969822587, + "hash": 1611442142, "properties": { "m_behaviorTemplateNameID": { "type": "unsigned int", @@ -508082,777 +280675,568 @@ "pointer": false, "hash": 223437287 }, - "m_radius": { - "type": "float", + "m_hiddenQuestsData": { + "type": "std::string", "id": 1, - "offset": 116, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 989410271 - }, - "m_category": { - "type": "enum AudioCategory", - "id": 2, - "offset": 124, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2951251982, - "enum_options": { - "AudioCategory_Irrelevent": 0, - "AudioCategory_Accoustic": 1, - "AudioCategory_Noise": 2, - "AudioCategory_Music": 3 - } - }, - "m_exclusive": { - "type": "bool", - "id": 3, "offset": 128, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 824383403 - }, - "m_accousticSignature": { - "type": "enum AccousticSignature", - "id": 4, - "offset": 176, - "flags": 2097159, + "flags": 575, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1188263221, - "enum_options": { - "Generic": 0, - "Padded Cell": 1, - "Room": 2, - "Bath Room": 3, - "Living Room": 4, - "Stone Room": 5, - "Auditorium": 6, - "Concert Hall": 7, - "Cave": 8, - "Arena": 9, - "Hanger": 10, - "Carpeted Hallway": 11, - "Hallway": 12, - "Stone Corridor": 13, - "Alley": 14, - "Forest": 15, - "City": 16, - "Mountains": 17, - "Quarry": 18, - "Plain": 19, - "Parking Lot": 20, - "Sewer Pipe": 21, - "Underwater": 22, - "Drugged": 23, - "Dizzy": 24, - "Psychotic": 25 - } + "hash": 2912992358 } } }, - "1561457722": { - "name": "enum kDuelPhase", - "bases": [], - "hash": 1561457722, - "properties": {} - }, - "398244517": { - "name": "class GraphicalSpell*", + "2045869284": { + "name": "class WanderMovementBehavior*", "bases": [ - "Spell", + "BehaviorInstance", "PropertyClass" ], - "hash": 398244517, + "hash": 2045869284, "properties": { - "m_templateID": { + "m_behaviorTemplateNameID": { "type": "unsigned int", "id": 0, - "offset": 128, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1286746870 - }, - "m_enchantment": { - "type": "unsigned int", - "id": 1, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2217886818 - }, - "m_pipCost": { - "type": "class SharedPointer", - "id": 2, - "offset": 176, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3605704820 - }, - "m_regularAdjust": { - "type": "int", - "id": 3, - "offset": 192, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1420453335 - }, - "m_magicSchoolID": { - "type": "unsigned int", - "id": 4, - "offset": 136, - "flags": 7, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 893146499 - }, - "m_accuracy": { - "type": "unsigned char", - "id": 5, - "offset": 132, - "flags": 7, + "hash": 223437287 + } + } + }, + "1163827125": { + "name": "class RaidManagerBehavior*", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1163827125, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2273914939 - }, - "m_treasureCard": { - "type": "bool", - "id": 6, - "offset": 197, - "flags": 31, + "hash": 223437287 + } + } + }, + "768042787": { + "name": "class SpellIngredient*", + "bases": [ + "PropertyClass" + ], + "hash": 768042787, + "properties": { + "m_adjective": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1764879128 - }, - "m_battleCard": { + "hash": 3429518154 + } + } + }, + "1613621836": { + "name": "class MoveController", + "bases": [ + "MoveBehavior::Controller", + "PropertyClass" + ], + "hash": 1613621836, + "properties": { + "m_bCollisionDisabled": { "type": "bool", - "id": 7, - "offset": 198, - "flags": 31, + "id": 0, + "offset": 120, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1332843753 + "hash": 1732895577 }, - "m_itemCard": { + "m_bVehicleMode": { "type": "bool", - "id": 8, - "offset": 199, + "id": 1, + "offset": 121, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1683654300 + "hash": 1597295002 }, - "m_sideBoard": { - "type": "bool", - "id": 9, - "offset": 200, + "m_fForwardModifier": { + "type": "float", + "id": 2, + "offset": 124, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1897838368 + "hash": 1173988321 }, - "m_spellID": { - "type": "unsigned int", - "id": 10, - "offset": 204, - "flags": 31, + "m_fBackModifier": { + "type": "float", + "id": 3, + "offset": 128, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1697483258 + "hash": 148042045 }, - "m_leavesPlayWhenCastOverride": { - "type": "bool", - "id": 11, - "offset": 216, - "flags": 31, + "m_fStrafeModifier": { + "type": "float", + "id": 4, + "offset": 132, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 874407398 + "hash": 226084913 }, - "m_cloaked": { - "type": "bool", - "id": 12, - "offset": 196, + "m_fTurnModifier": { + "type": "float", + "id": 5, + "offset": 136, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 7349510 + "hash": 2134998805 }, - "m_enchantmentSpellIsItemCard": { - "type": "bool", - "id": 13, - "offset": 76, - "flags": 31, + "m_fAccelerationModifier": { + "type": "float", + "id": 6, + "offset": 144, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 531590701 + "hash": 592902742 }, - "m_premutationSpellID": { - "type": "unsigned int", - "id": 14, - "offset": 112, - "flags": 31, + "m_fDecelerationModifier": { + "type": "float", + "id": 7, + "offset": 148, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1530256370 + "hash": 1770082811 }, - "m_enchantedThisCombat": { + "m_bPaused": { "type": "bool", - "id": 15, - "offset": 77, + "id": 8, + "offset": 160, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1895738923 + "hash": 1899182391 }, - "m_paramOverrides": { - "type": "class SharedPointer", - "id": 16, - "offset": 224, + "m_spCommand": { + "type": "class SharedPointer", + "id": 9, + "offset": 168, "flags": 31, - "container": "List", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": true, - "hash": 2061635599 + "hash": 636010160 }, - "m_subEffectMeta": { - "type": "class SharedPointer", - "id": 17, - "offset": 240, + "m_Queue": { + "type": "class SharedPointer", + "id": 10, + "offset": 184, "flags": 31, "container": "List", "dynamic": true, "singleton": false, "pointer": true, - "hash": 1944101106 - }, - "m_delayEnchantment": { - "type": "bool", - "id": 18, - "offset": 257, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 191336919 - }, - "m_PvE": { - "type": "bool", - "id": 19, - "offset": 264, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 269492350 - }, - "m_delayEnchantmentOrder": { - "type": "enum SpellEffect::kDelayOrder", - "id": 20, - "offset": 72, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2526055263, - "enum_options": { - "SpellEffect::kAnyOrder": 0, - "SpellEffect::kFirst": 1, - "SpellEffect::kSecond": 2 - } - }, - "m_roundAddedTC": { - "type": "int", - "id": 21, - "offset": 260, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 112365451 - }, - "m_secondarySchoolID": { - "type": "unsigned int", - "id": 22, - "offset": 304, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2081206026 + "hash": 1055578835 } } }, - "1560718092": { - "name": "class SharedPointer", + "2046055251": { + "name": "class BoosterPackData", "bases": [ "PropertyClass" ], - "hash": 1560718092, + "hash": 2046055251, "properties": { - "m_characterID": { - "type": "gid", + "m_lootTypeMaxes": { + "type": "class SharedPointer", "id": 0, "offset": 72, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 210498386 + "pointer": true, + "hash": 3636229967 }, - "m_localTime": { - "type": "int", + "m_templateID": { + "type": "unsigned int", "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2008496724 - } - } - }, - "1168355512": { - "name": "class ZoneTokenBehaviorTemplate*", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 1168355512, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, + "offset": 88, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3130754092 + "hash": 1286746870 } } }, - "5085046": { - "name": "class std::list >", - "bases": [], - "hash": 5085046, - "properties": {} - }, - "1560631073": { - "name": "class RitualObjectBehaviorBase", + "768016596": { + "name": "class SharedPointer", "bases": [ - "BehaviorInstance", + "WizClientObjectItem", + "ClientObject", + "CoreObject", "PropertyClass" ], - "hash": 1560631073, + "hash": 768016596, "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", + "m_inactiveBehaviors": { + "type": "class SharedPointer", "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_playerList": { - "type": "gid", - "id": 1, - "offset": 112, + "offset": 224, "flags": 31, - "container": "List", + "container": "Vector", "dynamic": true, "singleton": false, - "pointer": false, - "hash": 1909774945 - } - } - }, - "398262579": { - "name": "class PetMatchInfo", - "bases": [ - "ArenaMatchInfo", - "PropertyClass" - ], - "hash": 398262579, - "properties": { - "m_matchID": { - "type": "gid", - "id": 0, + "pointer": true, + "hash": 1850812559 + }, + "m_globalID.m_full": { + "type": "unsigned __int64", + "id": 1, "offset": 72, - "flags": 31, + "flags": 16777247, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1757621298 + "hash": 2312465444 }, - "m_matchNameID": { - "type": "unsigned int", - "id": 1, + "m_permID": { + "type": "unsigned __int64", + "id": 2, "offset": 80, - "flags": 31, + "flags": 16777247, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1751361288 - }, - "m_teams": { - "type": "class SharedPointer", - "id": 2, - "offset": 96, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1984373608 + "hash": 1298909658 }, - "m_matchName": { - "type": "std::string", + "m_location": { + "type": "class Vector3D", "id": 3, - "offset": 112, + "offset": 168, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2061215721 + "hash": 2239683611 }, - "m_matchTitle": { - "type": "std::string", + "m_orientation": { + "type": "class Vector3D", "id": 4, - "offset": 144, + "offset": 180, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2918442218 + "hash": 2344058766 }, - "m_matchZoneID": { - "type": "gid", + "m_fScale": { + "type": "float", "id": 5, - "offset": 176, + "offset": 196, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2026205966 + "hash": 503137701 }, - "m_creatorID": { - "type": "gid", + "m_templateID.m_full": { + "type": "unsigned __int64", "id": 6, - "offset": 88, + "offset": 96, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1051766037 + "hash": 633907631 }, - "m_matchZone": { + "m_debugName": { "type": "std::string", "id": 7, - "offset": 184, + "offset": 104, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2061662244 + "hash": 3553984419 }, - "m_startTime": { - "type": "int", + "m_displayKey": { + "type": "std::string", "id": 8, - "offset": 216, + "offset": 136, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1386968823 + "hash": 3023276954 }, - "m_status": { - "type": "int", + "m_zoneTagID": { + "type": "unsigned int", "id": 9, - "offset": 220, + "offset": 344, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 960781182 + "hash": 965291410 }, - "m_friendsOnly": { - "type": "bool", + "m_speedMultiplier": { + "type": "short", "id": 10, - "offset": 236, + "offset": 192, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1420401792 + "hash": 123130076 }, - "m_tournamentNameID": { - "type": "unsigned int", + "m_nMobileID": { + "type": "unsigned short", "id": 11, - "offset": 224, + "offset": 194, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1799846440 + "hash": 1054318939 }, - "m_leagueID": { - "type": "unsigned int", + "m_characterId": { + "type": "gid", "id": 12, - "offset": 228, + "offset": 440, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 692361645 + "hash": 210498418 }, - "m_seasonID": { - "type": "unsigned int", + "m_primaryColor": { + "type": "int", "id": 13, - "offset": 232, + "offset": 568, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 535260643 + "hash": 900965981 }, - "m_bUpdateLadder": { - "type": "bool", + "m_pattern": { + "type": "int", "id": 14, - "offset": 248, + "offset": 572, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1937525956 + "hash": 1337683384 }, - "m_maxPointsPerMatch": { - "type": "unsigned int", + "m_secondaryColor": { + "type": "int", "id": 15, - "offset": 240, - "flags": 31, + "offset": 576, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1397040900 + "hash": 1616550081 }, - "m_estimatedWeight": { - "type": "float", + "m_displayID": { + "type": "gid", "id": 16, - "offset": 244, - "flags": 31, + "offset": 584, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1374360127 + "hash": 1022427803 }, - "m_maxELOError": { - "type": "int", + "m_itemFlags": { + "type": "unsigned int", "id": 17, - "offset": 252, + "offset": 592, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 318998922 + "hash": 2004128457 }, - "m_uniqueMatchID": { - "type": "std::string", + "m_quantity": { + "type": "int", "id": 18, - "offset": 264, - "flags": 31, + "offset": 608, + "flags": 27, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3291026220 - }, - "m_pvpDuelModifiersTemplates": { - "type": "class SharedPointer", - "id": 19, - "offset": 296, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1193155411 - }, - "m_teamSize": { + "hash": 169215289 + } + } + }, + "1164898096": { + "name": "class SharedPointer", + "bases": [ + "RaidManagerBehavior", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1164898096, + "properties": { + "m_behaviorTemplateNameID": { "type": "unsigned int", - "id": 20, - "offset": 256, - "flags": 31, + "id": 0, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2343388751 - }, - "m_minRank": { - "type": "int", - "id": 21, - "offset": 312, - "flags": 31, - "container": "Static", - "dynamic": false, + "hash": 223437287 + } + } + }, + "1612907381": { + "name": "class FlyThroughDataManager*", + "bases": [ + "PropertyClass" + ], + "hash": 1612907381, + "properties": { + "m_points": { + "type": "struct PointData", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Vector", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 2062988042 + "hash": 1791272219 }, - "m_maxRank": { - "type": "int", - "id": 22, - "offset": 316, - "flags": 31, + "m_cameraSpeed": { + "type": "float", + "id": 1, + "offset": 96, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1761764108 + "hash": 2177136625 }, - "m_trackRank": { - "type": "int", - "id": 23, - "offset": 320, - "flags": 31, + "m_zoneName": { + "type": "std::string", + "id": 2, + "offset": 104, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1258472859 - }, - "m_pTrackInfo": { - "type": "class SharedPointer", - "id": 24, - "offset": 336, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3026194809 - }, - "m_ratingBrackets": { - "type": "class ResultList*", - "id": 25, - "offset": 328, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2173049436 + "hash": 2171167736 } } }, - "1167744290": { - "name": "class ClientAnnounceRoundCinematicAction*", + "2046052179": { + "name": "class BoosterPackData*", "bases": [ - "AnnounceRoundCinematicAction", - "CinematicAction", "PropertyClass" ], - "hash": 1167744290, + "hash": 2046052179, "properties": { - "m_timeOffset": { - "type": "float", + "m_lootTypeMaxes": { + "type": "class SharedPointer", "id": 0, "offset": 72, "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 3636229967 + }, + "m_templateID": { + "type": "unsigned int", + "id": 1, + "offset": 88, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 + "hash": 1286746870 } } }, - "1969955196": { - "name": "class ClientMobAggroBehavior", + "1612333390": { + "name": "class SharedPointer", "bases": [ - "MobAggroBehavior", - "AggroBehavior", + "PhysicsBehavior", + "CollisionBehavior", "BehaviorInstance", "PropertyClass" ], - "hash": 1969955196, + "hash": 1612333390, "properties": { "m_behaviorTemplateNameID": { "type": "unsigned int", @@ -508864,17 +281248,49 @@ "singleton": false, "pointer": false, "hash": 223437287 + }, + "m_nHolderGID": { + "type": "gid", + "id": 1, + "offset": 352, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 133708664 + }, + "m_vHoldOffset": { + "type": "class Vector3D", + "id": 2, + "offset": 360, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3766080710 + }, + "m_fHoldForce": { + "type": "float", + "id": 3, + "offset": 372, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1792175219 } } }, - "5070571": { - "name": "class MatchTimerControl*", + "1164989569": { + "name": "class GraphicalSpellWindow", "bases": [ - "ControlText", "Window", "PropertyClass" ], - "hash": 5070571, + "hash": 1164989569, "properties": { "m_sName": { "type": "std::string", @@ -508910,9 +281326,11 @@ "hash": 983582334, "enum_options": { "HAS_BACK": 1, + "SCALE_CHILDREN": 2, "CAN_MOVE": 4, "CAN_SIZE": 8, "CAN_SCROLL": 16, + "FOCUS_LOCKED": 64, "CAN_FOCUS": 128, "CAN_DOCK": 32, "DO_NOT_CAPTURE_MOUSE": 256, @@ -508924,9 +281342,7 @@ "USE_ALPHA_BOUNDS": 8192, "AUTO_GROW": 16384, "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152, - "DO_NOT_WRAP": 134217728, - "FIT_TEXT": 268435456 + "AUTO_RESIZE": 49152 } }, "m_Flags": { @@ -509087,1463 +281503,1480 @@ "pointer": false, "hash": 3091503757 }, - "m_sText": { - "type": "std::wstring", + "m_spell": { + "type": "class SharedPointer", "id": 16, "offset": 584, - "flags": 4194439, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 2102642960 + "pointer": true, + "hash": 1393190292 }, - "m_sTooltip": { - "type": "std::wstring", + "m_spellName": { + "type": "std::string", "id": 17, - "offset": 616, - "flags": 135, + "offset": 600, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1680475798 + "hash": 2688485244 }, - "m_bUseDropShadow": { + "m_grayscale": { "type": "bool", "id": 18, - "offset": 653, - "flags": 135, + "offset": 636, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 93063037 + "hash": 348289198 + } + } + }, + "1611967301": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1611967301, + "properties": { + "m_playerGID": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 578537369 }, - "m_bUseOutline": { - "type": "bool", - "id": 19, - "offset": 654, - "flags": 135, + "m_messageBoardMessageType": { + "type": "int", + "id": 1, + "offset": 80, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 744292994 + "hash": 1435388398 }, - "m_bEnableWordWrap": { - "type": "bool", - "id": 20, - "offset": 655, - "flags": 135, + "m_playerName": { + "type": "std::string", + "id": 2, + "offset": 88, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 430904562 + "hash": 3407553929 }, - "m_bEnableToggle": { - "type": "bool", - "id": 21, - "offset": 652, - "flags": 135, + "m_messageBoardActivityType": { + "type": "int", + "id": 3, + "offset": 120, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1937994142 + "hash": 1226468534 }, - "m_nLeadingAdjust": { + "m_worldID": { + "type": "unsigned int", + "id": 4, + "offset": 124, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 397177058 + }, + "m_partyNameLocale": { "type": "int", - "id": 22, - "offset": 656, - "flags": 135, + "id": 5, + "offset": 128, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1559480167 + "hash": 104095035 }, - "m_alertSeconds": { + "m_centralSeconds": { "type": "unsigned int", - "id": 23, - "offset": 700, + "id": 6, + "offset": 132, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2220095860 + "hash": 1225584997 }, - "m_alertSeconds2": { + "m_removalTime": { "type": "unsigned int", - "id": 24, - "offset": 704, + "id": 7, + "offset": 136, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2070944934 + "hash": 1506221490 }, - "m_blinkRate": { - "type": "float", - "id": 25, - "offset": 708, + "m_creationTime": { + "type": "unsigned int", + "id": 8, + "offset": 140, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 395499571 + "hash": 2142268593 + }, + "m_playerResponses": { + "type": "gid", + "id": 9, + "offset": 144, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1006378727 } } }, - "1561289536": { - "name": "class SharedPointer", + "768045859": { + "name": "class SpellIngredient", "bases": [ "PropertyClass" ], - "hash": 1561289536, + "hash": 768045859, "properties": { - "m_lootType": { - "type": "enum LootInfo::LOOT_TYPE", + "m_adjective": { + "type": "std::string", "id": 0, "offset": 72, - "flags": 2097183, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1591891442, - "enum_options": { - "LOOT_TYPE_NONE": 0, - "LOOT_TYPE_GOLD": 1, - "LOOT_TYPE_MANA": 2, - "LOOT_TYPE_ITEM": 3, - "LOOT_TYPE_TREASURE_CARD": 4, - "LOOT_TYPE_MAGIC_XP": 5, - "LOOT_TYPE_ADD_SPELL": 6, - "LOOT_TYPE_MAX_HEALTH": 7, - "LOOT_TYPE_MAX_GOLD": 8, - "LOOT_TYPE_MAX_MANA": 9, - "LOOT_TYPE_MAX_POTION": 10, - "LOOT_TYPE_TRAINING_POINTS": 11, - "LOOT_TYPE_RECIPE": 12, - "LOOT_TYPE_CRAFTING_SLOT": 13, - "LOOT_TYPE_REAGENT": 14, - "LOOT_TYPE_PETSNACK": 15, - "LOOT_TYPE_GARDENING_XP": 16, - "LOOT_TYPE_PET_XP": 17, - "LOOT_TYPE_TREASURE_TABLE": 18, - "LOOT_TYPE_ARENA_POINTS": 19, - "LOOT_TYPE_ARENA_BONUS_POINTS": 20, - "LOOT_TYPE_GROUP": 21, - "LOOT_TYPE_FISHING_XP": 22, - "LOOT_TYPE_JEWEL": 23, - "LOOT_TYPE_EMOTE": 23, - "LOOT_TYPE_TELEPORT_EFFECT": 23, - "LOOT_TYPE_PVP_CURRENCY": 26, - "LOOT_TYPE_PVP_CURRENCY_BONUS": 27, - "LOOT_TYPE_PVP_TOURNEY_CURRENCY": 28, - "LOOT_TYPE_PVP_TOURNEY_CURRENCY_BONUS": 29, - "LOOT_TYPE_FURNITURE_ESSENCE": 30 - } + "hash": 3429518154 + } + } + }, + "2046639585": { + "name": "class std::vector >", + "bases": [], + "hash": 2046639585, + "properties": {} + }, + "1165770906": { + "name": "class MadlibBlock", + "bases": [ + "PropertyClass" + ], + "hash": 1165770906, + "properties": { + "m_madlibs": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1912290195 }, - "m_max": { - "type": "int", + "m_blockToken": { + "type": "std::string", "id": 1, - "offset": 76, - "flags": 7, + "offset": 96, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 267042112 + "hash": 1821505575 } } }, - "399201392": { - "name": "class SharedPointer", + "1612511577": { + "name": "class ClientPlayGraphicOnActorAction", "bases": [ - "BehaviorInstance", + "PlayGraphicOnActorAction", + "ActorCinematicAction", + "CinematicAction", "PropertyClass" ], - "hash": 399201392, + "hash": 1612511577, "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", + "m_timeOffset": { + "type": "float", "id": 0, - "offset": 104, - "flags": 39, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 + "hash": 2237098605 }, - "m_assignedPlayers": { - "type": "gid", + "m_actor": { + "type": "std::string", "id": 1, - "offset": 112, - "flags": 65543, - "container": "Vector", - "dynamic": true, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 1913541510 + "hash": 2285866132 + }, + "m_assetName": { + "type": "std::string", + "id": 2, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513131580 + }, + "m_bDontFlipActorYaw": { + "type": "bool", + "id": 3, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 632297791 } } }, - "1169087738": { - "name": "class TeamHelpFailWindow*", + "770019179": { + "name": "class std::vector >", + "bases": [], + "hash": 770019179, + "properties": {} + }, + "1165098961": { + "name": "class SharedPointer", "bases": [ - "Window", "PropertyClass" ], - "hash": 1169087738, + "hash": 1165098961, "properties": { - "m_sName": { - "type": "std::string", + "m_statsList": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2999855587 + }, + "m_poi": { + "type": "class SharedPointer", + "id": 1, + "offset": 88, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1342603341 + } + } + }, + "2053270675": { + "name": "class ClientModifyPipsCinematicAction", + "bases": [ + "ModifyPipsCinematicAction", + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 2053270675, + "properties": { + "m_timeOffset": { + "type": "float", "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, "offset": 80, - "flags": 135, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2306437263 + "hash": 2285866132 + } + } + }, + "769577082": { + "name": "class ClientCameraCutCinematicAction", + "bases": [ + "CameraCutCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 769577082, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 }, - "m_Children": { - "type": "class SharedPointer", + "m_cameras": { + "type": "std::string", "id": 1, - "offset": 112, - "flags": 65671, + "offset": 80, + "flags": 131079, "container": "Vector", "dynamic": true, "singleton": false, - "pointer": true, - "hash": 2621225959 + "pointer": false, + "hash": 3217341687 }, - "m_Style": { - "type": "unsigned int", + "m_altcameras": { + "type": "std::string", "id": 2, - "offset": 152, - "flags": 1048583, - "container": "Static", - "dynamic": false, + "offset": 104, + "flags": 131079, + "container": "Vector", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "SCALE_CHILDREN": 2, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "FOCUS_LOCKED": 64, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152 - } + "hash": 1882980152 }, - "m_Flags": { - "type": "unsigned int", + "m_initialCameraName": { + "type": "std::string", "id": 3, - "offset": 156, - "flags": 1048583, + "offset": 128, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } + "hash": 2526319343 }, - "m_Window": { - "type": "class Rect", + "m_camRel": { + "type": "enum CameraCutCinematicAction::kCameraRelative", "id": 4, - "offset": 160, - "flags": 135, + "offset": 168, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3105139380 + "hash": 919962138, + "enum_options": { + "kNone": 0, + "kSigil": 1, + "kTarget": 2, + "kSource": 3, + "kActor": 4 + } }, - "m_fTargetAlpha": { + "m_interpolationDuration": { "type": "float", "id": 5, - "offset": 212, - "flags": 135, + "offset": 160, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1809129834 + "hash": 1458058437 }, - "m_fDisabledAlpha": { + "m_releaseInterpolationDuration": { "type": "float", "id": 6, - "offset": 216, - "flags": 135, + "offset": 164, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1389987675 + "hash": 1807754278, + "enum_options": { + "__DEFAULT": "1.0" + } }, - "m_fAlpha": { - "type": "float", + "m_bUseOrientationOverride": { + "type": "bool", "id": 7, - "offset": 208, - "flags": 65671, + "offset": 188, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 482130755 + "hash": 1088002894 }, - "m_pWindowStyle": { - "type": "class SharedPointer", + "m_overrideOrientation": { + "type": "class Vector3D", "id": 8, - "offset": 232, - "flags": 135, + "offset": 192, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3623628394 + "pointer": false, + "hash": 3267199758 }, - "m_sHelp": { - "type": "std::wstring", + "m_bUseLocationOverride": { + "type": "bool", "id": 9, - "offset": 248, - "flags": 4194439, + "offset": 172, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2102211316 + "hash": 1767170875 }, - "m_sScript": { - "type": "std::string", + "m_overrideLocation": { + "type": "class Vector3D", "id": 10, - "offset": 352, - "flags": 135, + "offset": 176, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1846695875 + "hash": 3776417691 }, - "m_Offset": { - "type": "class Point", + "m_namedActor": { + "type": "std::string", "id": 11, - "offset": 192, - "flags": 135, + "offset": 208, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3389835433 + "hash": 3413532537 }, - "m_Scale": { - "type": "class Point", + "m_camScale": { + "type": "float", "id": 12, - "offset": 200, - "flags": 135, + "offset": 240, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2547159940 - }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, + "hash": 979098224 + } + } + }, + "2049666362": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 2049666362, + "properties": { + "m_companionID": { + "type": "int", + "id": 0, + "offset": 72, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2587533771 + "hash": 1594812875 }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, + "m_serializedEffects": { + "type": "std::string", + "id": 1, + "offset": 96, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3091503757 + "hash": 3446153863 } } }, - "1970011949": { - "name": "class TeamUpVolunteerWindow", + "1165769920": { + "name": "class SharedPointer", "bases": [ - "Window", + "ConditionalSpellEffectRequirement", + "Requirement", "PropertyClass" ], - "hash": 1970011949, + "hash": 1165769920, "properties": { - "m_sName": { - "type": "std::string", + "m_applyNOT": { + "type": "bool", "id": 0, - "offset": 80, - "flags": 135, + "offset": 72, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2306437263 + "hash": 1746328074, + "enum_options": { + "__DEFAULT": 0 + } }, - "m_Children": { - "type": "class SharedPointer", + "m_operator": { + "type": "enum Requirement::Operator", "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, + "offset": 76, + "flags": 2097183, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2621225959 + "pointer": false, + "hash": 2672792317, + "enum_options": { + "ROP_AND": 0, + "ROP_OR": 1, + "__DEFAULT": "ROP_AND" + } }, - "m_Style": { - "type": "unsigned int", + "m_targetType": { + "type": "enum ConditionalSpellEffectRequirement::RequirementTarget", "id": 2, - "offset": 152, - "flags": 1048583, + "offset": 80, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 983582334, + "hash": 2547737902, "enum_options": { - "HAS_BACK": 1, - "SCALE_CHILDREN": 2, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "FOCUS_LOCKED": 64, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152 + "RT_Caster": 0, + "RT_Target": 1 } }, - "m_Flags": { - "type": "unsigned int", + "m_disposition": { + "type": "enum SpellEffect::kHangingDisposition", "id": 3, - "offset": 156, - "flags": 1048583, + "offset": 88, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 967851578, + "hash": 1904841031, "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 + "SpellEffect::kBoth": 0, + "SpellEffect::kBeneficial": 1, + "SpellEffect::kHarmful": 2 } }, - "m_Window": { - "type": "class Rect", + "m_minCount": { + "type": "int", "id": 4, - "offset": 160, - "flags": 135, + "offset": 92, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3105139380 + "hash": 1486503815 }, - "m_fTargetAlpha": { - "type": "float", + "m_maxCount": { + "type": "int", "id": 5, - "offset": 212, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1809129834 - }, - "m_fDisabledAlpha": { - "type": "float", - "id": 6, - "offset": 216, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1389987675 - }, - "m_fAlpha": { - "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 482130755 - }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3623628394 - }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, + "offset": 96, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2102211316 - }, - "m_sScript": { + "hash": 136048585 + } + } + }, + "1613056142": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1613056142, + "properties": { + "m_altMusicFileName": { "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1846695875 - }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3389835433 - }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2547159940 - }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, + "id": 0, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2587533771 + "hash": 2103410014 }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, + "m_requirements": { + "type": "class RequirementList", + "id": 1, + "offset": 104, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3091503757 + "hash": 2840988582 } } }, - "5153843": { - "name": "class SharedPointer", + "2047404866": { + "name": "class RemoveHangingCinematicStageTemplate", "bases": [ - "ZoneTokenBoolean", - "ZoneTokenBase", + "CinematicStageTemplate", "PropertyClass" ], - "hash": 5153843, + "hash": 2047404866, "properties": { - "m_debugName": { + "m_name": { "type": "std::string", "id": 0, "offset": 72, - "flags": 31, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3553984419 + "hash": 1717359772 }, - "m_adjectiveList": { - "type": "std::string", + "m_duration": { + "type": "float", "id": 1, "offset": 104, - "flags": 31, - "container": "List", - "dynamic": true, + "flags": 7, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 3195213318 + "hash": 920323453 }, - "m_icon": { - "type": "std::string", + "m_actions": { + "type": "class SharedPointer", "id": 2, - "offset": 120, - "flags": 131103, - "container": "Static", - "dynamic": false, + "offset": 112, + "flags": 7, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 1717182340 + "pointer": true, + "hash": 1380578687 }, - "m_iconBW": { - "type": "std::string", + "m_stageRelationships": { + "type": "class SharedPointer", "id": 3, - "offset": 152, - "flags": 131103, - "container": "Static", - "dynamic": false, + "offset": 128, + "flags": 7, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 2047461085 + "pointer": true, + "hash": 499983354 }, - "m_description": { - "type": "std::string", + "m_burnHangingTime": { + "type": "float", "id": 4, - "offset": 184, - "flags": 8388639, + "offset": 152, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1649374815 + "hash": 1114462681 }, - "m_displayMode": { - "type": "enum ZTDisplayMode", + "m_stopRotating": { + "type": "bool", "id": 5, - "offset": 216, - "flags": 2097183, + "offset": 158, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2216526410, - "enum_options": { - "ZTDM_Shown": 0, - "ZTDM_Discoverable": 1, - "ZTDM_Hidden": 2 - } + "hash": 13587553 }, - "m_storage": { - "type": "enum ZTStorage", + "m_startRotating": { + "type": "bool", "id": 6, - "offset": 220, - "flags": 2097183, + "offset": 159, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2290454852, - "enum_options": { - "ZTS_Player": 0, - "ZTS_Zone": 1 - } + "hash": 839204969 }, - "m_onEnable": { - "type": "class SharedPointer", + "m_startRotationTime": { + "type": "float", "id": 7, - "offset": 224, + "offset": 160, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2591736864 + "pointer": false, + "hash": 1011449124 }, - "m_onDiscover": { - "type": "class SharedPointer", + "m_revealText": { + "type": "std::string", "id": 8, - "offset": 240, + "offset": 168, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2826026872 + "pointer": false, + "hash": 2011500383 }, - "m_onDisable": { - "type": "class SharedPointer", + "m_revealsHanging": { + "type": "bool", "id": 9, - "offset": 256, + "offset": 200, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1860656717 + "pointer": false, + "hash": 1202199809 }, - "m_sourceID": { - "type": "gid", + "m_camRel": { + "type": "enum CameraCutCinematicAction::kCameraRelative", "id": 10, - "offset": 272, - "flags": 31, + "offset": 204, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1134700470 + "hash": 919962138, + "enum_options": { + "kSigil": 1, + "kTarget": 2, + "kSource": 3, + "kActor": 4, + "__DEFAULT": "kTarget" + } }, - "m_inZone": { + "m_bSwitchCameraToWideLong": { "type": "bool", "id": 11, - "offset": 280, - "flags": 31, + "offset": 156, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 564535654 + "hash": 2136912684, + "enum_options": { + "__DEFAULT": 1 + } }, - "m_enabled": { + "m_announcesSpell": { "type": "bool", "id": 12, - "offset": 281, - "flags": 31, + "offset": 157, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 504506718 + "hash": 652261533, + "enum_options": { + "__DEFAULT": 1 + } }, - "m_discovered": { + "m_detonate": { "type": "bool", "id": 13, - "offset": 282, - "flags": 31, + "offset": 208, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2060478331 - }, - "m_onSet": { - "type": "class SharedPointer", - "id": 14, - "offset": 288, + "hash": 1738601959 + } + } + }, + "1612908149": { + "name": "class FlyThroughDataManager", + "bases": [ + "PropertyClass" + ], + "hash": 1612908149, + "properties": { + "m_points": { + "type": "struct PointData", + "id": 0, + "offset": 72, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "Vector", + "dynamic": true, "singleton": false, - "pointer": true, - "hash": 1964529317 + "pointer": false, + "hash": 1791272219 }, - "m_onClear": { - "type": "class SharedPointer", - "id": 15, - "offset": 304, + "m_cameraSpeed": { + "type": "float", + "id": 1, + "offset": 96, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1655978208 + "pointer": false, + "hash": 2177136625 }, - "m_bSet": { - "type": "bool", - "id": 16, - "offset": 320, - "flags": 31, + "m_zoneName": { + "type": "std::string", + "id": 2, + "offset": 104, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 221694593 + "hash": 2171167736 } } }, - "1970010669": { - "name": "class TeamUpVolunteerWindow*", + "2047300709": { + "name": "class GameObjectTemplate", "bases": [ - "Window", + "CoreTemplate", "PropertyClass" ], - "hash": 1970010669, + "hash": 2047300709, "properties": { - "m_sName": { - "type": "std::string", + "m_behaviors": { + "type": "class BehaviorTemplate*", "id": 0, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306437263 - }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 65671, + "offset": 72, + "flags": 7, "container": "Vector", "dynamic": true, "singleton": false, "pointer": true, - "hash": 2621225959 + "hash": 1197808594 }, - "m_Style": { + "m_objectName": { + "type": "std::string", + "id": 1, + "offset": 96, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2154940147 + }, + "m_templateID": { "type": "unsigned int", "id": 2, - "offset": 152, - "flags": 1048583, + "offset": 128, + "flags": 16777223, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "SCALE_CHILDREN": 2, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "FOCUS_LOCKED": 64, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152 - } + "hash": 1286746870 }, - "m_Flags": { + "m_visualID": { "type": "unsigned int", "id": 3, - "offset": 156, - "flags": 1048583, + "offset": 132, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } + "hash": 1118778894 }, - "m_Window": { - "type": "class Rect", + "m_adjectiveList": { + "type": "std::string", "id": 4, - "offset": 160, - "flags": 135, - "container": "Static", - "dynamic": false, + "offset": 248, + "flags": 7, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 3105139380 + "hash": 3195213318 }, - "m_fTargetAlpha": { - "type": "float", + "m_exemptFromAOI": { + "type": "bool", "id": 5, - "offset": 212, - "flags": 135, + "offset": 240, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1809129834 + "hash": 1457879059 }, - "m_fDisabledAlpha": { - "type": "float", + "m_displayName": { + "type": "std::string", "id": 6, - "offset": 216, - "flags": 135, + "offset": 168, + "flags": 8388615, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1389987675 + "hash": 2446900370 }, - "m_fAlpha": { - "type": "float", + "m_description": { + "type": "std::string", "id": 7, - "offset": 208, - "flags": 65671, + "offset": 136, + "flags": 8388615, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 482130755 + "hash": 1649374815 }, - "m_pWindowStyle": { - "type": "class SharedPointer", + "m_nObjectType": { + "type": "enum ObjectType", "id": 8, - "offset": 232, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3623628394 - }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, + "offset": 200, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2102211316 + "hash": 2118905880, + "enum_options": { + "OT_UNDEFINED": 0, + "OT_PLAYER": 1, + "OT_NPC": 2, + "OT_PROP": 3, + "OT_OBJECT": 4, + "OT_HOUSE": 5, + "OT_KEY": 6, + "OT_OLD_KEY": 7, + "OT_DEED": 8, + "OT_MAIL": 9, + "OT_RECIPE": 17, + "OT_EQUIP_HEAD": 10, + "OT_EQUIP_CHEST": 11, + "OT_EQUIP_LEGS": 12, + "OT_EQUIP_HANDS": 13, + "OT_EQUIP_FINGER": 14, + "OT_EQUIP_FEET": 15, + "OT_EQUIP_EAR": 16, + "OT_BUILDING_BLOCK": 18, + "OT_BUILDING_BLOCK_SOLID": 19, + "OT_GOLF": 20, + "OT_DOOR": 21, + "OT_PET": 22, + "OT_FABRIC": 23, + "OT_WINDOW": 24, + "OT_ROOF": 25, + "OT_HORSE": 26, + "OT_STRUCTURE": 27, + "OT_HOUSING_TEXTURE": 28, + "OT_PLANT": 29 + } }, - "m_sScript": { + "m_sIcon": { "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, + "id": 9, + "offset": 208, + "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1846695875 - }, - "m_Offset": { + "hash": 2306259831 + } + } + }, + "770328692": { + "name": "class ControlDraw::GesturePoint", + "bases": [ + "PropertyClass" + ], + "hash": 770328692, + "properties": { + "m_Point": { "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3389835433 - }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, + "id": 0, + "offset": 72, "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2547159940 - }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2587533771 + "hash": 2475294668 }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, + "m_Color": { + "type": "class Color", + "id": 1, + "offset": 80, "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3091503757 + "hash": 1753714077 } } }, - "399825320": { - "name": "class std::list >", - "bases": [], - "hash": 399825320, - "properties": {} - }, - "1562443627": { - "name": "class SharedPointer", + "1167371726": { + "name": "class PetSnackLootInfo", "bases": [ - "ArenaMatchInfo", + "ItemLootInfo", + "LootInfo", + "LootInfoBase", "PropertyClass" ], - "hash": 1562443627, + "hash": 1167371726, "properties": { - "m_matchID": { - "type": "gid", + "m_lootType": { + "type": "enum LootInfo::LOOT_TYPE", "id": 0, "offset": 72, - "flags": 31, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1757621298 + "hash": 1591891442, + "enum_options": { + "LOOT_TYPE_NONE": 0, + "LOOT_TYPE_GOLD": 1, + "LOOT_TYPE_MANA": 2, + "LOOT_TYPE_ITEM": 3, + "LOOT_TYPE_TREASURE_CARD": 4, + "LOOT_TYPE_MAGIC_XP": 5, + "LOOT_TYPE_ADD_SPELL": 6, + "LOOT_TYPE_MAX_HEALTH": 7, + "LOOT_TYPE_MAX_GOLD": 8, + "LOOT_TYPE_MAX_MANA": 9, + "LOOT_TYPE_MAX_POTION": 10, + "LOOT_TYPE_TRAINING_POINTS": 11, + "LOOT_TYPE_RECIPE": 12, + "LOOT_TYPE_CRAFTING_SLOT": 13, + "LOOT_TYPE_REAGENT": 14, + "LOOT_TYPE_PETSNACK": 15, + "LOOT_TYPE_GARDENING_XP": 16, + "LOOT_TYPE_PET_XP": 17, + "LOOT_TYPE_TREASURE_TABLE": 18, + "LOOT_TYPE_ARENA_POINTS": 19, + "LOOT_TYPE_ARENA_BONUS_POINTS": 20, + "LOOT_TYPE_GROUP": 21, + "LOOT_TYPE_FISHING_XP": 22, + "LOOT_TYPE_EVENT_CURRENCY_1": 24, + "LOOT_TYPE_EVENT_CURRENCY_2": 25, + "LOOT_TYPE_PVP_CURRENCY": 26, + "LOOT_TYPE_PVP_CURRENCY_BONUS": 27, + "LOOT_TYPE_PVP_TOURNEY_CURRENCY": 28, + "LOOT_TYPE_PVP_TOURNEY_CURRENCY_BONUS": 29, + "LOOT_TYPE_FURNITURE_ESSENCE": 30 + } }, - "m_matchNameID": { - "type": "unsigned int", + "m_itemID": { + "type": "gid", "id": 1, - "offset": 80, - "flags": 31, + "offset": 88, + "flags": 33554463, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1751361288 + "hash": 569545460 }, - "m_teams": { - "type": "class SharedPointer", + "m_numItems": { + "type": "int", "id": 2, "offset": 96, "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1984373608 - }, - "m_matchName": { - "type": "std::string", - "id": 3, - "offset": 112, - "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2061215721 - }, - "m_matchTitle": { - "type": "std::string", - "id": 4, - "offset": 144, - "flags": 31, + "hash": 1588646284 + } + } + }, + "1613581670": { + "name": "class HousingLayoutObject*", + "bases": [ + "PropertyClass" + ], + "hash": 1613581670, + "properties": { + "m_templateID": { + "type": "unsigned int", + "id": 0, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2918442218 + "hash": 1286746870 }, - "m_matchZoneID": { - "type": "gid", - "id": 5, - "offset": 176, - "flags": 31, + "m_positionX": { + "type": "float", + "id": 1, + "offset": 76, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2026205966 + "hash": 837995844 }, - "m_creatorID": { - "type": "gid", - "id": 6, - "offset": 88, - "flags": 31, + "m_positionY": { + "type": "float", + "id": 2, + "offset": 80, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1051766037 + "hash": 837995845 }, - "m_matchZone": { - "type": "std::string", - "id": 7, - "offset": 184, - "flags": 31, + "m_positionZ": { + "type": "float", + "id": 3, + "offset": 84, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2061662244 + "hash": 837995846 }, - "m_startTime": { - "type": "int", - "id": 8, - "offset": 216, - "flags": 31, + "m_yaw": { + "type": "float", + "id": 4, + "offset": 88, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1386968823 - }, - "m_status": { - "type": "int", - "id": 9, - "offset": 220, - "flags": 31, + "hash": 357256328 + } + } + }, + "2047454018": { + "name": "class RemoveHangingCinematicStageTemplate*", + "bases": [ + "CinematicStageTemplate", + "PropertyClass" + ], + "hash": 2047454018, + "properties": { + "m_name": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 960781182 + "hash": 1717359772 }, - "m_friendsOnly": { - "type": "bool", - "id": 10, - "offset": 236, - "flags": 31, + "m_duration": { + "type": "float", + "id": 1, + "offset": 104, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1420401792 + "hash": 920323453 }, - "m_tournamentNameID": { - "type": "unsigned int", - "id": 11, - "offset": 224, - "flags": 31, - "container": "Static", - "dynamic": false, + "m_actions": { + "type": "class SharedPointer", + "id": 2, + "offset": 112, + "flags": 7, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 1799846440 + "pointer": true, + "hash": 1380578687 }, - "m_leagueID": { - "type": "unsigned int", - "id": 12, - "offset": 228, - "flags": 31, - "container": "Static", - "dynamic": false, + "m_stageRelationships": { + "type": "class SharedPointer", + "id": 3, + "offset": 128, + "flags": 7, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 692361645 + "pointer": true, + "hash": 499983354 }, - "m_seasonID": { - "type": "unsigned int", - "id": 13, - "offset": 232, - "flags": 31, + "m_burnHangingTime": { + "type": "float", + "id": 4, + "offset": 152, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 535260643 + "hash": 1114462681 }, - "m_bUpdateLadder": { + "m_stopRotating": { "type": "bool", - "id": 14, - "offset": 248, - "flags": 31, + "id": 5, + "offset": 158, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1937525956 + "hash": 13587553 }, - "m_maxPointsPerMatch": { - "type": "unsigned int", - "id": 15, - "offset": 240, - "flags": 31, + "m_startRotating": { + "type": "bool", + "id": 6, + "offset": 159, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1397040900 + "hash": 839204969 }, - "m_estimatedWeight": { + "m_startRotationTime": { "type": "float", - "id": 16, - "offset": 244, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1374360127 - }, - "m_maxELOError": { - "type": "int", - "id": 17, - "offset": 252, - "flags": 31, + "id": 7, + "offset": 160, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 318998922 + "hash": 1011449124 }, - "m_uniqueMatchID": { + "m_revealText": { "type": "std::string", - "id": 18, - "offset": 264, - "flags": 31, + "id": 8, + "offset": 168, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3291026220 - }, - "m_pvpDuelModifiersTemplates": { - "type": "class SharedPointer", - "id": 19, - "offset": 296, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1193155411 + "hash": 2011500383 }, - "m_teamSize": { - "type": "unsigned int", - "id": 20, - "offset": 256, - "flags": 31, + "m_revealsHanging": { + "type": "bool", + "id": 9, + "offset": 200, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2343388751 + "hash": 1202199809 }, - "m_minRank": { - "type": "int", - "id": 21, - "offset": 312, - "flags": 31, + "m_camRel": { + "type": "enum CameraCutCinematicAction::kCameraRelative", + "id": 10, + "offset": 204, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2062988042 + "hash": 919962138, + "enum_options": { + "kSigil": 1, + "kTarget": 2, + "kSource": 3, + "kActor": 4, + "__DEFAULT": "kTarget" + } }, - "m_maxRank": { - "type": "int", - "id": 22, - "offset": 316, - "flags": 31, + "m_bSwitchCameraToWideLong": { + "type": "bool", + "id": 11, + "offset": 156, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1761764108 + "hash": 2136912684, + "enum_options": { + "__DEFAULT": 1 + } }, - "m_trackRank": { - "type": "int", - "id": 23, - "offset": 320, - "flags": 31, + "m_announcesSpell": { + "type": "bool", + "id": 12, + "offset": 157, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1258472859 - }, - "m_pTrackInfo": { - "type": "class SharedPointer", - "id": 24, - "offset": 336, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3026194809 + "hash": 652261533, + "enum_options": { + "__DEFAULT": 1 + } }, - "m_ratingBrackets": { - "type": "class ResultList*", - "id": 25, - "offset": 328, - "flags": 31, + "m_detonate": { + "type": "bool", + "id": 13, + "offset": 208, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2173049436 + "pointer": false, + "hash": 1738601959 } } }, - "1171932844": { - "name": "class TreasureCardPosterBehavior", + "771315536": { + "name": "enum ObstacleCourseLaunchCameraType", + "bases": [], + "hash": 771315536, + "properties": {} + }, + "770703425": { + "name": "class SharedPointer", "bases": [ - "TreasureCardPosterBehaviorBase", - "BehaviorInstance", "PropertyClass" ], - "hash": 1171932844, + "hash": 770703425, "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", + "m_secondPetTemplateID": { + "type": "gid", "id": 0, - "offset": 104, - "flags": 39, + "offset": 72, + "flags": 33554439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 + "hash": 89171206 }, - "m_spellData": { - "type": "std::string", + "m_eggTemplateID": { + "type": "gid", "id": 1, - "offset": 128, - "flags": 575, + "offset": 80, + "flags": 33554439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2688126101 + "hash": 1463276884 + }, + "m_probability": { + "type": "float", + "id": 2, + "offset": 88, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 396611384 } } }, - "6006332": { - "name": "class ExtraHousingZoneBehaviorTemplate", + "1169179094": { + "name": "class SharedPointer", "bases": [ - "BehaviorTemplate", "PropertyClass" ], - "hash": 6006332, + "hash": 1169179094, "properties": { - "m_behaviorName": { - "type": "std::string", + "m_combatTalents": { + "type": "unsigned int", "id": 0, "offset": 72, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 3130754092 + "hash": 1157727646 }, - "m_lotWorldZone": { - "type": "std::string", + "m_derbyTalents": { + "type": "unsigned int", "id": 1, - "offset": 120, - "flags": 268435463, - "container": "Static", - "dynamic": false, + "offset": 88, + "flags": 7, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 3026711022, - "enum_options": { - "__BASECLASS": "ZoneData" - } + "hash": 1072926942 } } }, - "1561997376": { - "name": "class SoundFilterSetting*", + "770666320": { + "name": "class SharedPointer", + "bases": [], + "hash": 770666320, + "properties": {} + }, + "1167742754": { + "name": "class ClientAnnounceRoundCinematicAction", "bases": [ + "AnnounceRoundCinematicAction", + "CinematicAction", "PropertyClass" ], - "hash": 1561997376, + "hash": 1167742754, "properties": { - "m_name": { - "type": "std::string", + "m_timeOffset": { + "type": "float", "id": 0, "offset": 72, "flags": 7, @@ -510551,39 +282984,17 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 1717359772 - }, - "m_params": { - "type": "class SoundFilterParam*", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1984426024 - }, - "m_needsUpdate": { - "type": "bool", - "id": 2, - "offset": 128, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1787634021 + "hash": 2237098605 } } }, - "1170959856": { - "name": "class SharedPointer", + "1614099046": { + "name": "class SharedPointer", "bases": [ "BehaviorTemplate", "PropertyClass" ], - "hash": 1170959856, + "hash": 1614099046, "properties": { "m_behaviorName": { "type": "std::string", @@ -510595,426 +283006,346 @@ "singleton": false, "pointer": false, "hash": 3130754092 - }, - "m_maxTempStartingPips": { - "type": "int", - "id": 1, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 997576222 - }, - "m_maxTempStartingPowerPips": { - "type": "int", - "id": 2, - "offset": 124, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 31848011 - }, - "m_maxHandSize": { - "type": "int", - "id": 3, - "offset": 128, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1925169782 - }, - "m_pointValue": { - "type": "int", - "id": 4, - "offset": 132, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 61258881 - }, - "m_battleCardsForSale": { - "type": "class SharedPointer", - "id": 5, - "offset": 136, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2232728892 - }, - "m_ratingInfo": { - "type": "class SharedPointer", - "id": 6, - "offset": 152, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2739486523 - }, - "m_levelUpIngredients": { - "type": "class Ingredient*", - "id": 7, - "offset": 176, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 361958771 - }, - "m_levelUpCost": { - "type": "int", - "id": 8, - "offset": 192, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1833544304 } } }, - "1970143146": { - "name": "class StateAssetInfo", + "2051503008": { + "name": "class SharedPointer", "bases": [ + "BGPolymorphSelectBehavior", + "BehaviorInstance", "PropertyClass" ], - "hash": 1970143146, + "hash": 2051503008, "properties": { - "m_assetName": { - "type": "std::string", + "m_behaviorTemplateNameID": { + "type": "unsigned int", "id": 0, - "offset": 72, - "flags": 131079, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1513131580 + "hash": 223437287 }, - "m_attachmentNode": { - "type": "std::string", + "m_polyCategoryInactiveToRedTeamPlayers": { + "type": "gid", "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, + "offset": 112, + "flags": 31, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 1683933674 + "hash": 757020210 }, - "m_soundTemplate": { - "type": "unsigned int", + "m_polyCategoryUnavailableToRedTeamPlayers": { + "type": "gid", "id": 2, - "offset": 136, - "flags": 33554439, - "container": "Static", - "dynamic": false, + "offset": 128, + "flags": 31, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 611925458 + "hash": 1382977667 }, - "m_loop": { - "type": "bool", + "m_polyCategoryInactiveToBlueTeamPlayers": { + "type": "gid", "id": 3, - "offset": 140, - "flags": 7, - "container": "Static", - "dynamic": false, + "offset": 144, + "flags": 31, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 222084781 + "hash": 1877669599 }, - "m_fireAndForget": { - "type": "bool", + "m_polyCategoryUnavailableToBlueTeamPlayers": { + "type": "gid", "id": 4, - "offset": 141, - "flags": 7, - "container": "Static", - "dynamic": false, + "offset": 160, + "flags": 31, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 531791155 + "hash": 1059429200 } } }, - "5393567": { - "name": "class SchoolPipPanel", + "1167529981": { + "name": "struct std::pair", + "bases": [], + "hash": 1167529981, + "properties": {} + }, + "1613621996": { + "name": "class MoveController*", "bases": [ - "Window", + "MoveBehavior::Controller", "PropertyClass" ], - "hash": 5393567, + "hash": 1613621996, "properties": { - "m_sName": { - "type": "std::string", + "m_bCollisionDisabled": { + "type": "bool", "id": 0, - "offset": 80, - "flags": 135, + "offset": 120, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2306437263 + "hash": 1732895577 }, - "m_Children": { - "type": "class SharedPointer", + "m_bVehicleMode": { + "type": "bool", "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, + "offset": 121, + "flags": 7, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2621225959 + "pointer": false, + "hash": 1597295002 }, - "m_Style": { - "type": "unsigned int", + "m_fForwardModifier": { + "type": "float", "id": 2, - "offset": 152, - "flags": 1048583, + "offset": 124, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "SCALE_CHILDREN": 2, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "FOCUS_LOCKED": 64, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152 - } + "hash": 1173988321 }, - "m_Flags": { - "type": "unsigned int", + "m_fBackModifier": { + "type": "float", "id": 3, - "offset": 156, - "flags": 1048583, + "offset": 128, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } + "hash": 148042045 }, - "m_Window": { - "type": "class Rect", + "m_fStrafeModifier": { + "type": "float", "id": 4, - "offset": 160, - "flags": 135, + "offset": 132, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3105139380 + "hash": 226084913 }, - "m_fTargetAlpha": { + "m_fTurnModifier": { "type": "float", "id": 5, - "offset": 212, - "flags": 135, + "offset": 136, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1809129834 + "hash": 2134998805 }, - "m_fDisabledAlpha": { + "m_fAccelerationModifier": { "type": "float", "id": 6, - "offset": 216, - "flags": 135, + "offset": 144, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1389987675 + "hash": 592902742 }, - "m_fAlpha": { + "m_fDecelerationModifier": { "type": "float", "id": 7, - "offset": 208, - "flags": 65671, + "offset": 148, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 482130755 + "hash": 1770082811 }, - "m_pWindowStyle": { - "type": "class SharedPointer", + "m_bPaused": { + "type": "bool", "id": 8, - "offset": 232, - "flags": 135, + "offset": 160, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3623628394 + "pointer": false, + "hash": 1899182391 }, - "m_sHelp": { - "type": "std::wstring", + "m_spCommand": { + "type": "class SharedPointer", "id": 9, - "offset": 248, - "flags": 4194439, + "offset": 168, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 2102211316 + "pointer": true, + "hash": 636010160 }, - "m_sScript": { - "type": "std::string", + "m_Queue": { + "type": "class SharedPointer", "id": 10, - "offset": 352, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1846695875 - }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, - "container": "Static", - "dynamic": false, + "offset": 184, + "flags": 31, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 3389835433 - }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, + "pointer": true, + "hash": 1055578835 + } + } + }, + "2050799194": { + "name": "class ClientGameEffectTimerPopupTrigger", + "bases": [ + "GameEffectTimerPopupTrigger", + "GameEffectTimerTrigger", + "PropertyClass" + ], + "hash": 2050799194, + "properties": { + "m_radius": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2547159940 + "hash": 989410271 }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, + "m_triggerT": { + "type": "float", + "id": 1, + "offset": 76, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2587533771 + "hash": 2138083583 }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, + "m_popupKey": { + "type": "std::string", + "id": 2, + "offset": 80, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3091503757 + "hash": 3434427096 } } }, - "400515292": { - "name": "class SharedPointer", + "1167470030": { + "name": "class PetSnackLootInfo*", "bases": [ + "ItemLootInfo", + "LootInfo", + "LootInfoBase", "PropertyClass" ], - "hash": 400515292, + "hash": 1167470030, "properties": { - "m_id": { - "type": "int", + "m_lootType": { + "type": "enum LootInfo::LOOT_TYPE", "id": 0, "offset": 72, - "flags": 31, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2090586215 + "hash": 1591891442, + "enum_options": { + "LOOT_TYPE_NONE": 0, + "LOOT_TYPE_GOLD": 1, + "LOOT_TYPE_MANA": 2, + "LOOT_TYPE_ITEM": 3, + "LOOT_TYPE_TREASURE_CARD": 4, + "LOOT_TYPE_MAGIC_XP": 5, + "LOOT_TYPE_ADD_SPELL": 6, + "LOOT_TYPE_MAX_HEALTH": 7, + "LOOT_TYPE_MAX_GOLD": 8, + "LOOT_TYPE_MAX_MANA": 9, + "LOOT_TYPE_MAX_POTION": 10, + "LOOT_TYPE_TRAINING_POINTS": 11, + "LOOT_TYPE_RECIPE": 12, + "LOOT_TYPE_CRAFTING_SLOT": 13, + "LOOT_TYPE_REAGENT": 14, + "LOOT_TYPE_PETSNACK": 15, + "LOOT_TYPE_GARDENING_XP": 16, + "LOOT_TYPE_PET_XP": 17, + "LOOT_TYPE_TREASURE_TABLE": 18, + "LOOT_TYPE_ARENA_POINTS": 19, + "LOOT_TYPE_ARENA_BONUS_POINTS": 20, + "LOOT_TYPE_GROUP": 21, + "LOOT_TYPE_FISHING_XP": 22, + "LOOT_TYPE_EVENT_CURRENCY_1": 24, + "LOOT_TYPE_EVENT_CURRENCY_2": 25, + "LOOT_TYPE_PVP_CURRENCY": 26, + "LOOT_TYPE_PVP_CURRENCY_BONUS": 27, + "LOOT_TYPE_PVP_TOURNEY_CURRENCY": 28, + "LOOT_TYPE_PVP_TOURNEY_CURRENCY_BONUS": 29, + "LOOT_TYPE_FURNITURE_ESSENCE": 30 + } }, - "m_teamIndex": { - "type": "int", + "m_itemID": { + "type": "gid", "id": 1, - "offset": 76, - "flags": 31, + "offset": 88, + "flags": 33554463, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1621537177 + "hash": 569545460 }, - "m_rotation": { - "type": "float", + "m_numItems": { + "type": "int", "id": 2, - "offset": 80, + "offset": 96, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1497468551 - }, + "hash": 1588646284 + } + } + }, + "2050799114": { + "name": "class ClientGameEffectTimerPopupTrigger*", + "bases": [ + "GameEffectTimerPopupTrigger", + "GameEffectTimerTrigger", + "PropertyClass" + ], + "hash": 2050799114, + "properties": { "m_radius": { "type": "float", - "id": 3, - "offset": 84, + "id": 0, + "offset": 72, "flags": 31, "container": "Static", "dynamic": false, @@ -511022,54 +283353,58 @@ "pointer": false, "hash": 989410271 }, - "m_locationPreference": { - "type": "std::string", - "id": 4, - "offset": 88, + "m_triggerT": { + "type": "float", + "id": 1, + "offset": 76, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2817699507 + "hash": 2138083583 }, - "m_symbol": { - "type": "enum DynamicSigilSymbol", - "id": 5, - "offset": 120, - "flags": 2097183, + "m_popupKey": { + "type": "std::string", + "id": 2, + "offset": 80, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1055639026, - "enum_options": { - "NotSet": 0, - "Dagger": 1, - "Key": 2, - "Gem": 3, - "Spiral": 4, - "Book": 5, - "Chalice": 6, - "Wand": 7, - "Potion": 8, - "Sun": 9, - "Eye": 10, - "Star": 11, - "Moon": 12 - } + "hash": 3434427096 } } }, - "1169587682": { - "name": "class SharedPointer", + "770978576": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 770978576, + "properties": { + "m_tokens": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621026866 + } + } + }, + "1614732627": { + "name": "class SharedPointer", "bases": [ - "RenamePipActorsFromResult", "ActorCinematicAction", "CinematicAction", "PropertyClass" ], - "hash": 1169587682, + "hash": 1614732627, "properties": { "m_timeOffset": { "type": "float", @@ -511093,7 +283428,7 @@ "pointer": false, "hash": 2285866132 }, - "m_newActorName": { + "m_newState": { "type": "std::string", "id": 2, "offset": 120, @@ -511102,912 +283437,1065 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 2029131039 - }, - "m_newActorName2": { - "type": "std::string", - "id": 3, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1852236785 - }, - "m_oldActorName": { - "type": "std::string", - "id": 4, - "offset": 184, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2191892948 + "hash": 2153420230 } } }, - "1970142986": { - "name": "class StateAssetInfo*", + "1167591447": { + "name": "class SharedPointer", "bases": [ "PropertyClass" ], - "hash": 1970142986, + "hash": 1167591447, "properties": { - "m_assetName": { - "type": "std::string", + "m_dye": { + "type": "int", "id": 0, "offset": 72, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513131580 - }, - "m_attachmentNode": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1683933674 - }, - "m_soundTemplate": { - "type": "unsigned int", - "id": 2, - "offset": 136, - "flags": 33554439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 611925458 - }, - "m_loop": { - "type": "bool", - "id": 3, - "offset": 140, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 222084781 + "hash": 267033084 }, - "m_fireAndForget": { - "type": "bool", - "id": 4, - "offset": 141, + "m_texture": { + "type": "int", + "id": 1, + "offset": 76, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 531791155 + "hash": 222406987 } } }, - "399955952": { - "name": "class SharedPointer", + "2050919557": { + "name": "class FishingBehaviorBase*", "bases": [ + "BehaviorInstance", "PropertyClass" ], - "hash": 399955952, + "hash": 2050919557, "properties": { - "m_sigilInfoList": { - "type": "class SharedPointer", + "m_behaviorTemplateNameID": { + "type": "unsigned int", "id": 0, - "offset": 72, - "flags": 7, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_caughtFishList": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 1, "container": "List", "dynamic": true, "singleton": false, "pointer": true, - "hash": 2125475193 + "hash": 2107365240 + }, + "m_fishHistoryList": { + "type": "class SharedPointer", + "id": 2, + "offset": 128, + "flags": 1, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 3741999493 } } }, - "1169504057": { - "name": "class SharedPointer", + "771796828": { + "name": "class PhysicsSimMassBox*", "bases": [ - "BaseZone", + "PhysicsSimMass", "PropertyClass" ], - "hash": 1169504057, - "properties": { - "m_id": { - "type": "gid", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2090569797 - }, - "m_name": { - "type": "std::string", - "id": 1, - "offset": 88, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1717359772 - } - } + "hash": 771796828, + "properties": {} }, - "1169266791": { - "name": "class SharedPointer", + "1167581154": { + "name": "class WizClientPet", "bases": [ - "Duel", + "WizClientLeashedObject", + "WizClientObject", + "ClientObject", + "CoreObject", "PropertyClass" ], - "hash": 1169266791, + "hash": 1167581154, "properties": { - "m_flatParticipantList": { - "type": "class SharedPointer", + "m_inactiveBehaviors": { + "type": "class SharedPointer", "id": 0, - "offset": 80, + "offset": 224, "flags": 31, "container": "Vector", "dynamic": true, "singleton": false, "pointer": true, - "hash": 3375244498 + "hash": 1850812559 }, - "m_dynamicTeams": { - "type": "class SharedPointer", + "m_globalID.m_full": { + "type": "unsigned __int64", "id": 1, - "offset": 104, - "flags": 31, + "offset": 72, + "flags": 16777247, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3227206264 + "pointer": false, + "hash": 2312465444 }, - "m_dynamicTurn": { - "type": "unsigned int", + "m_permID": { + "type": "unsigned __int64", "id": 2, - "offset": 120, - "flags": 31, + "offset": 80, + "flags": 16777247, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1168494811 + "hash": 1298909658 }, - "m_dynamicTurnSubcircles": { - "type": "unsigned int", + "m_location": { + "type": "class Vector3D", "id": 3, - "offset": 124, + "offset": 168, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 618930538 + "hash": 2239683611 }, - "m_dynamicTurnCounter": { - "type": "int", + "m_orientation": { + "type": "class Vector3D", "id": 4, - "offset": 128, + "offset": 180, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 543404296 + "hash": 2344058766 }, - "m_duelID.m_full": { - "type": "unsigned __int64", + "m_fScale": { + "type": "float", "id": 5, - "offset": 72, + "offset": 196, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1024980477 + "hash": 503137701 }, - "m_planningTimer": { - "type": "float", + "m_templateID.m_full": { + "type": "unsigned __int64", "id": 6, - "offset": 144, + "offset": 96, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1142844143 + "hash": 633907631 }, - "m_position": { - "type": "class Vector3D", + "m_debugName": { + "type": "std::string", "id": 7, - "offset": 148, + "offset": 104, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3697900983 + "hash": 3553984419 }, - "m_yaw": { - "type": "float", + "m_displayKey": { + "type": "std::string", "id": 8, - "offset": 160, + "offset": 136, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 357256328 + "hash": 3023276954 }, - "m_disableTimer": { - "type": "bool", + "m_zoneTagID": { + "type": "unsigned int", "id": 9, - "offset": 179, + "offset": 344, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1571862248 + "hash": 965291410 }, - "m_tutorialMode": { - "type": "bool", + "m_speedMultiplier": { + "type": "short", "id": 10, - "offset": 180, + "offset": 192, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1704245836 + "hash": 123130076 }, - "m_firstTeamToAct": { - "type": "int", + "m_nMobileID": { + "type": "unsigned short", "id": 11, - "offset": 184, + "offset": 194, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1499447620 + "hash": 1054318939 }, - "m_combatResolver": { - "type": "class CombatResolver*", + "m_characterId": { + "type": "gid", "id": 12, - "offset": 136, + "offset": 440, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1627811879 + "pointer": false, + "hash": 210498418 }, - "m_bPVP": { - "type": "bool", + "m_gameStats": { + "type": "class WizGameStats*", "id": 13, - "offset": 176, - "flags": 31, + "offset": 552, + "flags": 27, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 221690795 + "pointer": true, + "hash": 3194480406 }, - "m_bBattleground": { + "m_leashed": { "type": "bool", "id": 14, - "offset": 177, + "offset": 584, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1158269184 - }, - "m_bRaid": { - "type": "bool", - "id": 15, - "offset": 178, - "flags": 31, + "hash": 603235945 + } + } + }, + "1614961590": { + "name": "class AdventurePartyEntryInfo*", + "bases": [ + "PropertyClass" + ], + "hash": 1614961590, + "properties": { + "m_characterGID": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 791201781 + "hash": 501688601 }, - "m_roundNum": { - "type": "int", - "id": 16, - "offset": 192, - "flags": 31, + "m_lastLoginTime": { + "type": "unsigned int", + "id": 1, + "offset": 80, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1461215570 + "hash": 1758221801 }, - "m_executionPhaseTimer": { - "type": "float", - "id": 17, - "offset": 200, - "flags": 31, + "m_partyJoinTime": { + "type": "unsigned int", + "id": 2, + "offset": 84, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1645062877 + "hash": 1561970012 }, - "m_executionPhaseCombatActions": { - "type": "class CombatAction", - "id": 18, - "offset": 208, - "flags": 31, - "container": "List", - "dynamic": true, + "m_packedName": { + "type": "std::string", + "id": 3, + "offset": 88, + "flags": 7, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 270648678 + "hash": 1805208228 }, - "m_sigilActions": { - "type": "class CombatAction", - "id": 19, - "offset": 224, - "flags": 31, - "container": "List", - "dynamic": true, + "m_level": { + "type": "unsigned int", + "id": 4, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 2176432675 + "hash": 1012687813 }, - "m_shadowPipRule": { - "type": "class SharedPointer", - "id": 20, - "offset": 280, + "m_school": { + "type": "unsigned int", + "id": 5, + "offset": 124, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2692865990 + "pointer": false, + "hash": 1152268885 }, - "m_gameObjectAnimStateTracker": { - "type": "class GameObjectAnimStateTracker", - "id": 21, - "offset": 296, - "flags": 31, + "m_previousLoginTime": { + "type": "unsigned int", + "id": 6, + "offset": 128, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3120084989 + "hash": 1473612434 }, - "m_duelPhase": { - "type": "enum kDuelPhase", - "id": 22, - "offset": 196, - "flags": 2097183, + "m_zonePath": { + "type": "std::string", + "id": 7, + "offset": 136, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1813818086, - "enum_options": { - "kPhase_Starting": 0, - "kPhase_PrePlanning": 1, - "kPhase_Planning": 2, - "kPhase_PreExecution": 3, - "kPhase_Execution": 4, - "kPhase_Resolution": 5, - "kPhase_Victory": 6, - "kPhase_Ended": 7, - "kPhase_MAX": 10 - } + "hash": 2171239844 }, - "m_duelModifier": { - "type": "class SharedPointer", - "id": 23, - "offset": 264, - "flags": 31, + "m_flags": { + "type": "unsigned char", + "id": 8, + "offset": 168, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3330438158 + "pointer": false, + "hash": 1431998045 }, - "m_initiativeSwitchMode": { - "type": "enum Duel::SigilInitiativeSwitchMode", - "id": 24, - "offset": 384, - "flags": 2097183, + "m_provisionalTime": { + "type": "unsigned int", + "id": 9, + "offset": 172, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1258091520, - "enum_options": { - "InitiativeSwitchMode_None": 0, - "InitiativeSwitchMode_Reroll": 1, - "InitiativeSwitchMode_Switch": 2 - } + "hash": 394820722 }, - "m_initiativeSwitchRounds": { - "type": "int", - "id": 25, - "offset": 388, - "flags": 31, + "m_permissions": { + "type": "unsigned int", + "id": 10, + "offset": 176, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 540229885 + "hash": 2127187241 }, - "m_combatRules": { - "type": "class SharedPointer", - "id": 26, - "offset": 464, - "flags": 31, - "container": "List", - "dynamic": true, + "m_accountGID": { + "type": "gid", + "id": 11, + "offset": 184, + "flags": 7, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3327225763 - }, - "m_gameEffectInfo": { - "type": "class SharedPointer", - "id": 27, - "offset": 496, + "pointer": false, + "hash": 414395289 + } + } + }, + "771551630": { + "name": "class PolymorphEffectInfo", + "bases": [ + "GameEffectInfo", + "PropertyClass" + ], + "hash": 771551630, + "properties": { + "m_effectName": { + "type": "std::string", + "id": 0, + "offset": 72, "flags": 31, - "container": "List", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2275096584 + "pointer": false, + "hash": 2029161513 }, - "m_pStatEffects": { - "type": "class SharedPointer", - "id": 28, - "offset": 512, - "flags": 31, + "m_templateID": { + "type": "unsigned int", + "id": 1, + "offset": 104, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1275229758 - }, - "m_alternateTurnCombatRule": { - "type": "class SharedPointer", - "id": 29, - "offset": 480, - "flags": 31, + "pointer": false, + "hash": 1286746870 + } + } + }, + "2052681941": { + "name": "class BattlegroundTemplateChat*", + "bases": [ + "PropertyClass" + ], + "hash": 2052681941, + "properties": { + "m_projectID": { + "type": "unsigned int", + "id": 0, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1715882395 + "pointer": false, + "hash": 1263221425 }, - "m_altTurnCounter": { - "type": "int", - "id": 30, - "offset": 456, - "flags": 31, + "m_countdownSeconds": { + "type": "float", + "id": 1, + "offset": 76, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1434810564 + "hash": 255072071 }, - "m_originalFirstTeamToAct": { + "m_matchSize": { "type": "int", - "id": 31, - "offset": 188, - "flags": 31, + "id": 2, + "offset": 80, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 560350457 + "hash": 563704930 }, - "m_executionOrder": { - "type": "enum kDuelExecutionOrder", - "id": 32, - "offset": 528, - "flags": 2097183, + "m_cancelCooldownSeconds": { + "type": "int", + "id": 3, + "offset": 84, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3362082097, - "enum_options": { - "kDEO_Sequential": 0, - "kDEO_Alternating": 1 - } + "hash": 1074662868 }, - "m_noHenchmen": { - "type": "bool", - "id": 33, - "offset": 532, - "flags": 31, + "m_teamCount": { + "type": "int", + "id": 4, + "offset": 88, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1163855414 + "hash": 1614476394 }, - "m_SpellTruncation": { - "type": "bool", - "id": 34, - "offset": 540, - "flags": 31, + "m_matchmakingList": { + "type": "class SharedPointer", + "id": 5, + "offset": 96, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 3012888769 + } + } + }, + "771652529": { + "name": "class SharedPointer", + "bases": [ + "CinematicStageTemplate", + "PropertyClass" + ], + "hash": 771652529, + "properties": { + "m_name": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1257440762 + "hash": 1717359772 }, - "m_shadowThresholdFactor": { + "m_duration": { "type": "float", - "id": 35, - "offset": 548, - "flags": 31, + "id": 1, + "offset": 104, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2104355177 + "hash": 920323453 }, - "m_shadowPipRatingFactor": { - "type": "float", - "id": 36, - "offset": 552, - "flags": 31, + "m_actions": { + "type": "class SharedPointer", + "id": 2, + "offset": 112, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1380578687 + }, + "m_stageRelationships": { + "type": "class SharedPointer", + "id": 3, + "offset": 128, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 499983354 + }, + "m_sound": { + "type": "std::string", + "id": 4, + "offset": 152, + "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1061434314 - }, - "m_defaultShadowPipRating": { - "type": "float", - "id": 37, - "offset": 556, - "flags": 31, + "hash": 2307644996 + } + } + }, + "1617428317": { + "name": "class PassInfoList*", + "bases": [ + "PropertyClass" + ], + "hash": 1617428317, + "properties": { + "m_info": { + "type": "class PassInfo", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1338677978 + } + } + }, + "2052493990": { + "name": "class CollisionBehaviorTemplate", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 2052493990, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1544572080 + "hash": 3130754092 }, - "m_shadowPipThresholdTeam0": { - "type": "float", - "id": 38, - "offset": 560, - "flags": 31, + "m_walkableCollisionFilename": { + "type": "std::string", + "id": 1, + "offset": 120, + "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 447039594 + "hash": 2223282859 }, - "m_shadowPipThresholdTeam1": { - "type": "float", - "id": 39, - "offset": 564, - "flags": 31, + "m_solidCollisionFilename": { + "type": "std::string", + "id": 2, + "offset": 152, + "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 447039595 + "hash": 3292753187 }, - "m_maxArchmasteryTeam0": { - "type": "float", - "id": 40, - "offset": 568, - "flags": 31, + "m_clickableCollisionFilename": { + "type": "std::string", + "id": 3, + "offset": 184, + "flags": 131335, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 300185527 + "hash": 1964485570 }, - "m_maxArchmasteryTeam1": { - "type": "float", - "id": 41, - "offset": 572, - "flags": 31, + "m_bAutoClickBox": { + "type": "bool", + "id": 4, + "offset": 216, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 300185528 + "hash": 13289565 }, - "m_scalarDamage": { - "type": "float", - "id": 42, - "offset": 600, - "flags": 31, + "m_bDisableCollision": { + "type": "bool", + "id": 5, + "offset": 217, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1865068300 + "hash": 2086036629 }, - "m_scalarResist": { + "m_bClientOnly": { + "type": "bool", + "id": 6, + "offset": 218, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1918653686 + } + } + }, + "1168355512": { + "name": "class ZoneTokenBehaviorTemplate*", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 1168355512, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + } + } + }, + "1616508212": { + "name": "class std::vector >", + "bases": [], + "hash": 1616508212, + "properties": {} + }, + "1167744290": { + "name": "class ClientAnnounceRoundCinematicAction*", + "bases": [ + "AnnounceRoundCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 1167744290, + "properties": { + "m_timeOffset": { "type": "float", - "id": 43, - "offset": 604, - "flags": 31, + "id": 0, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 270448583 - }, - "m_scalarPierce": { + "hash": 2237098605 + } + } + }, + "1615400669": { + "name": "class ShowPipsCinematicAction*", + "bases": [ + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 1615400669, + "properties": { + "m_timeOffset": { "type": "float", - "id": 44, - "offset": 608, - "flags": 31, + "id": 0, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 196427621 + "hash": 2237098605 }, - "m_damageLimit": { - "type": "float", - "id": 45, - "offset": 612, - "flags": 31, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 271286357 + "hash": 2285866132 }, - "m_dK0": { - "type": "float", - "id": 46, - "offset": 616, - "flags": 31, + "m_newActorName": { + "type": "std::string", + "id": 2, + "offset": 120, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 357232662 + "hash": 2029131039 + } + } + }, + "772068097": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 772068097, + "properties": { + "m_entries": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 998597073 + } + } + }, + "2052795687": { + "name": "class IngredientTracking", + "bases": [ + "PropertyClass" + ], + "hash": 2052795687, + "properties": { + "m_ingredientID": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1616797422 }, - "m_dN0": { - "type": "float", - "id": 47, - "offset": 620, - "flags": 31, + "m_quantity": { + "type": "int", + "id": 1, + "offset": 80, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 357232761 + "hash": 169215289 }, - "m_resistLimit": { - "type": "float", - "id": 48, - "offset": 624, + "m_sufficient": { + "type": "bool", + "id": 2, + "offset": 96, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 92688739 + } + } + }, + "771853884": { + "name": "class SharedPointer", + "bases": [ + "ReqNumeric", + "Requirement", + "PropertyClass" + ], + "hash": 771853884, + "properties": { + "m_applyNOT": { + "type": "bool", + "id": 0, + "offset": 72, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1192834544 + "hash": 1746328074, + "enum_options": { + "__DEFAULT": 0 + } }, - "m_rK0": { - "type": "float", - "id": 49, - "offset": 628, - "flags": 31, + "m_operator": { + "type": "enum Requirement::Operator", + "id": 1, + "offset": 76, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 357247908 + "hash": 2672792317, + "enum_options": { + "ROP_AND": 0, + "ROP_OR": 1, + "__DEFAULT": "ROP_AND" + } }, - "m_rN0": { + "m_numericValue": { "type": "float", - "id": 50, - "offset": 632, + "id": 2, + "offset": 80, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 357248007 + "hash": 521915239 }, - "m_fullPartyGroup": { - "type": "bool", - "id": 51, - "offset": 636, - "flags": 31, + "m_operatorType": { + "type": "enum ReqNumeric::OPERATOR_TYPE", + "id": 3, + "offset": 84, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1888593059 - }, - "m_matchTimer": { - "type": "float", - "id": 52, - "offset": 656, - "flags": 31, + "hash": 2228122961, + "enum_options": { + "OPERATOR_UNKNOWN": 4294967295, + "OPERATOR_EQUALS": 0, + "OPERATOR_GREATER_THAN": 1, + "OPERATOR_LESS_THAN": 2, + "OPERATOR_GREATER_THAN_EQ": 3, + "OPERATOR_LESS_THAN_EQ": 4 + } + } + } + }, + "1616272310": { + "name": "class AdventurePartyEntryInfo", + "bases": [ + "PropertyClass" + ], + "hash": 1616272310, + "properties": { + "m_characterGID": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1510935909 + "hash": 501688601 }, - "m_bonusTime": { - "type": "int", - "id": 53, - "offset": 660, - "flags": 31, + "m_lastLoginTime": { + "type": "unsigned int", + "id": 1, + "offset": 80, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1757496496 + "hash": 1758221801 }, - "m_passPenalty": { - "type": "int", - "id": 54, - "offset": 664, - "flags": 31, + "m_partyJoinTime": { + "type": "unsigned int", + "id": 2, + "offset": 84, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 982951662 + "hash": 1561970012 }, - "m_yellowTime": { - "type": "int", - "id": 55, - "offset": 668, - "flags": 31, + "m_packedName": { + "type": "std::string", + "id": 3, + "offset": 88, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1017028741 + "hash": 1805208228 }, - "m_redTime": { - "type": "int", - "id": 56, - "offset": 672, - "flags": 31, + "m_level": { + "type": "unsigned int", + "id": 4, + "offset": 120, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1909556708 + "hash": 1012687813 }, - "m_minTurnTime": { - "type": "int", - "id": 57, - "offset": 676, - "flags": 31, + "m_school": { + "type": "unsigned int", + "id": 5, + "offset": 124, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 652524886 + "hash": 1152268885 }, - "m_bIsPlayerTimedDuel": { - "type": "bool", - "id": 58, - "offset": 637, - "flags": 31, + "m_previousLoginTime": { + "type": "unsigned int", + "id": 6, + "offset": 128, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 857311611 + "hash": 1473612434 }, - "m_hideNoncombatantDistance": { - "type": "float", - "id": 59, - "offset": 536, - "flags": 31, + "m_zonePath": { + "type": "std::string", + "id": 7, + "offset": 136, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1733017888 - } - } - }, - "6020997": { - "name": "class SharedPointer", - "bases": [ - "UnSwapShadowMaterialActorCinematicAction", - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 6020997, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, + "hash": 2171239844 + }, + "m_flags": { + "type": "unsigned char", + "id": 8, + "offset": 168, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 + "hash": 1431998045 }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, + "m_provisionalTime": { + "type": "unsigned int", + "id": 9, + "offset": 172, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2285866132 - } - } - }, - "1564652149": { - "name": "class ClientClearTopTeamCinematicAction*", - "bases": [ - "ClearTopTeamCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 1564652149, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, + "hash": 394820722 + }, + "m_permissions": { + "type": "unsigned int", + "id": 10, + "offset": 176, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 + "hash": 2127187241 }, - "m_interpDuration": { - "type": "float", - "id": 1, - "offset": 80, + "m_accountGID": { + "type": "gid", + "id": 11, + "offset": 184, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237711951 + "hash": 414395289 } } }, - "1971709958": { - "name": "class SharedPointer", + "1169087738": { + "name": "class TeamHelpFailWindow*", "bases": [ "Window", "PropertyClass" ], - "hash": 1971709958, + "hash": 1169087738, "properties": { "m_sName": { "type": "std::string", @@ -512222,1483 +284710,1645 @@ } } }, - "1562818283": { - "name": "class SharedPointer", + "2056787553": { + "name": "class ClientShadowCreatureLevelTransitionCinematicAction*", "bases": [ - "ArenaMatchInfo", + "ShadowCreatureLevelTransitionCinematicAction", + "ActorCinematicAction", + "CinematicAction", "PropertyClass" ], - "hash": 1562818283, + "hash": 2056787553, "properties": { - "m_matchID": { - "type": "gid", + "m_timeOffset": { + "type": "float", "id": 0, "offset": 72, - "flags": 31, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1757621298 + "hash": 2237098605 }, - "m_matchNameID": { - "type": "unsigned int", + "m_actor": { + "type": "std::string", "id": 1, "offset": 80, - "flags": 31, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1751361288 - }, - "m_teams": { - "type": "class SharedPointer", - "id": 2, - "offset": 96, - "flags": 31, - "container": "List", - "dynamic": true, + "hash": 2285866132 + } + } + }, + "1616711389": { + "name": "class ShowPipsCinematicAction", + "bases": [ + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 1616711389, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1984373608 + "pointer": false, + "hash": 2237098605 }, - "m_matchName": { + "m_actor": { "type": "std::string", - "id": 3, - "offset": 112, - "flags": 31, + "id": 1, + "offset": 80, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2061215721 + "hash": 2285866132 }, - "m_matchTitle": { + "m_newActorName": { "type": "std::string", - "id": 4, - "offset": 144, - "flags": 31, + "id": 2, + "offset": 120, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2918442218 + "hash": 2029131039 + } + } + }, + "2055972232": { + "name": "class SharedPointer", + "bases": [ + "ClientVisibilityBehavior", + "VisibilityBehavior", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 2055972232, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 }, - "m_matchZoneID": { + "m_showTo": { "type": "gid", - "id": 5, - "offset": 176, + "id": 1, + "offset": 112, "flags": 31, - "container": "Static", - "dynamic": false, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 2026205966 + "hash": 947039004 }, - "m_creatorID": { + "m_hideFrom": { "type": "gid", - "id": 6, - "offset": 88, + "id": 2, + "offset": 128, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 642644390 + }, + "m_visible": { + "type": "bool", + "id": 3, + "offset": 144, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1051766037 - }, - "m_matchZone": { + "hash": 810536225 + } + } + }, + "788436544": { + "name": "class GuildAchievementOption*", + "bases": [ + "ServiceOptionBase", + "PropertyClass" + ], + "hash": 788436544, + "properties": { + "m_serviceName": { "type": "std::string", - "id": 7, - "offset": 184, + "id": 0, + "offset": 72, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2061662244 + "hash": 2206028813 }, - "m_startTime": { - "type": "int", - "id": 8, - "offset": 216, + "m_iconKey": { + "type": "std::string", + "id": 1, + "offset": 168, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1386968823 + "hash": 2457138637 }, - "m_status": { - "type": "int", - "id": 9, - "offset": 220, + "m_displayKey": { + "type": "std::string", + "id": 2, + "offset": 104, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 960781182 + "hash": 3023276954 }, - "m_friendsOnly": { - "type": "bool", - "id": 10, - "offset": 236, + "m_serviceIndex": { + "type": "unsigned int", + "id": 3, + "offset": 204, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1420401792 + "hash": 2103126710 }, - "m_tournamentNameID": { - "type": "unsigned int", - "id": 11, - "offset": 224, + "m_forceInteract": { + "type": "bool", + "id": 4, + "offset": 200, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1799846440 - }, - "m_leagueID": { + "hash": 1705789564 + } + } + }, + "1171932844": { + "name": "class TreasureCardPosterBehavior", + "bases": [ + "TreasureCardPosterBehaviorBase", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1171932844, + "properties": { + "m_behaviorTemplateNameID": { "type": "unsigned int", - "id": 12, - "offset": 228, - "flags": 31, + "id": 0, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 692361645 + "hash": 223437287 }, - "m_seasonID": { - "type": "unsigned int", - "id": 13, - "offset": 232, - "flags": 31, + "m_spellData": { + "type": "std::string", + "id": 1, + "offset": 128, + "flags": 575, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 535260643 + "hash": 2688126101 + } + } + }, + "2053962856": { + "name": "class PetSiegeGameManager*", + "bases": [ + "PropertyClass" + ], + "hash": 2053962856, + "properties": { + "m_fPetMass": { + "type": "float", + "id": 0, + "offset": 76, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": true, + "pointer": false, + "hash": 1378034810 }, - "m_bUpdateLadder": { + "m_fBounce": { + "type": "float", + "id": 1, + "offset": 92, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": true, + "pointer": false, + "hash": 179025177 + }, + "m_fBounceThreshold": { + "type": "float", + "id": 2, + "offset": 96, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": true, + "pointer": false, + "hash": 1371486086 + }, + "m_fMU": { + "type": "float", + "id": 3, + "offset": 100, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": true, + "pointer": false, + "hash": 357234943 + }, + "m_fERP": { + "type": "float", + "id": 4, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": true, + "pointer": false, + "hash": 309542404 + }, + "m_fCFM": { + "type": "float", + "id": 5, + "offset": 108, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": true, + "pointer": false, + "hash": 309539827 + }, + "m_fContactSurfaceDepth": { + "type": "float", + "id": 6, + "offset": 112, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": true, + "pointer": false, + "hash": 999400231 + }, + "m_bAutoDisable": { "type": "bool", - "id": 14, - "offset": 248, - "flags": 31, + "id": 7, + "offset": 116, + "flags": 7, "container": "Static", "dynamic": false, - "singleton": false, + "singleton": true, "pointer": false, - "hash": 1937525956 + "hash": 1449036226 }, - "m_maxPointsPerMatch": { - "type": "unsigned int", - "id": 15, - "offset": 240, - "flags": 31, + "m_fAutoDisableLinearThreshold": { + "type": "float", + "id": 8, + "offset": 120, + "flags": 7, "container": "Static", "dynamic": false, - "singleton": false, + "singleton": true, "pointer": false, - "hash": 1397040900 + "hash": 2028120914 }, - "m_estimatedWeight": { + "m_fAutoDisableAngularThreshold": { "type": "float", - "id": 16, - "offset": 244, - "flags": 31, + "id": 9, + "offset": 124, + "flags": 7, "container": "Static", "dynamic": false, - "singleton": false, + "singleton": true, "pointer": false, - "hash": 1374360127 + "hash": 391896705 }, - "m_maxELOError": { + "m_iAutoDisableSteps": { "type": "int", - "id": 17, - "offset": 252, - "flags": 31, + "id": 10, + "offset": 128, + "flags": 7, "container": "Static", "dynamic": false, - "singleton": false, + "singleton": true, "pointer": false, - "hash": 318998922 + "hash": 380025343 }, - "m_uniqueMatchID": { - "type": "std::string", - "id": 18, - "offset": 264, - "flags": 31, + "m_fAutoDisableTime": { + "type": "float", + "id": 11, + "offset": 132, + "flags": 7, "container": "Static", "dynamic": false, - "singleton": false, + "singleton": true, "pointer": false, - "hash": 3291026220 + "hash": 1114279513 }, - "m_pvpDuelModifiersTemplates": { - "type": "class SharedPointer", - "id": 19, - "offset": 296, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1193155411 + "m_fContactMaxCorrectingVel": { + "type": "float", + "id": 12, + "offset": 136, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": true, + "pointer": false, + "hash": 2046803974 }, - "m_teamSize": { - "type": "unsigned int", - "id": 20, - "offset": 256, - "flags": 31, + "m_fGravityX": { + "type": "float", + "id": 13, + "offset": 80, + "flags": 7, "container": "Static", "dynamic": false, - "singleton": false, + "singleton": true, "pointer": false, - "hash": 2343388751 + "hash": 1531831803 }, - "m_joinQueueRequirements": { - "type": "class SharedPointer", - "id": 21, - "offset": 312, - "flags": 31, + "m_fGravityY": { + "type": "float", + "id": 14, + "offset": 84, + "flags": 7, "container": "Static", "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2746080983 + "singleton": true, + "pointer": false, + "hash": 1531831804 }, - "m_timeLimitSec": { - "type": "unsigned int", - "id": 22, - "offset": 328, - "flags": 31, + "m_fGravityZ": { + "type": "float", + "id": 15, + "offset": 88, + "flags": 7, "container": "Static", "dynamic": false, - "singleton": false, + "singleton": true, "pointer": false, - "hash": 312519798 + "hash": 1531831805 }, - "m_useHistoricDiego": { - "type": "bool", - "id": 23, - "offset": 352, - "flags": 31, + "m_perShotLeftoverScoreBonus": { + "type": "int", + "id": 16, + "offset": 140, + "flags": 7, "container": "Static", "dynamic": false, - "singleton": false, + "singleton": true, "pointer": false, - "hash": 1688842509 + "hash": 1865826121 }, - "m_ignoredList": { - "type": "gid", - "id": 24, - "offset": 336, - "flags": 31, + "m_iSoundCollisionThreshold": { + "type": "int", + "id": 17, + "offset": 144, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": true, + "pointer": false, + "hash": 610409093 + }, + "m_gamePowers": { + "type": "class SharedPointer", + "id": 18, + "offset": 152, + "flags": 7, "container": "List", "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1850924028 + "singleton": true, + "pointer": true, + "hash": 2071626314 }, - "m_matchTimer": { - "type": "float", - "id": 25, - "offset": 356, - "flags": 31, + "m_gameInteractions": { + "type": "class SharedPointer", + "id": 19, + "offset": 168, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": true, + "pointer": true, + "hash": 3264886543 + }, + "m_gameEvents": { + "type": "class SharedPointer", + "id": 20, + "offset": 184, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": true, + "pointer": true, + "hash": 1839206463 + }, + "m_gameLevelData": { + "type": "class SharedPointer", + "id": 21, + "offset": 200, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": true, + "pointer": true, + "hash": 1151370820 + }, + "m_blockTypes": { + "type": "class SharedPointer", + "id": 22, + "offset": 216, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": true, + "pointer": true, + "hash": 811905140 + }, + "m_comboMultipliers": { + "type": "class SharedPointer", + "id": 23, + "offset": 232, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": true, + "pointer": true, + "hash": 3057704584 + } + } + }, + "780479981": { + "name": "class GuildMuseumCuratorBehavior", + "bases": [ + "GuildMuseumCuratorBehaviorBase", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 780479981, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1510935909 - }, - "m_bonusTime": { - "type": "int", - "id": 26, - "offset": 360, - "flags": 31, + "hash": 223437287 + } + } + }, + "1170959856": { + "name": "class SharedPointer", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 1170959856, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1757496496 + "hash": 3130754092 }, - "m_passPenalty": { + "m_maxTempStartingPips": { "type": "int", - "id": 27, - "offset": 364, - "flags": 31, + "id": 1, + "offset": 120, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 982951662 + "hash": 997576222 }, - "m_yellowTime": { + "m_maxTempStartingPowerPips": { "type": "int", - "id": 28, - "offset": 368, - "flags": 31, + "id": 2, + "offset": 124, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1017028741 + "hash": 31848011 }, - "m_redTime": { + "m_maxHandSize": { "type": "int", - "id": 29, - "offset": 372, - "flags": 31, + "id": 3, + "offset": 128, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1909556708 + "hash": 1925169782 }, - "m_minTurnTime": { + "m_pointValue": { "type": "int", - "id": 30, - "offset": 376, - "flags": 31, + "id": 4, + "offset": 132, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 652524886 + "hash": 61258881 }, - "m_effects": { - "type": "class SharedPointer", - "id": 31, - "offset": 384, - "flags": 31, + "m_battleCardsForSale": { + "type": "class SharedPointer", + "id": 5, + "offset": 136, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2232728892 + }, + "m_ratingInfo": { + "type": "class SharedPointer", + "id": 6, + "offset": 152, + "flags": 7, "container": "Vector", "dynamic": true, "singleton": false, "pointer": true, - "hash": 804962647 + "hash": 2739486523 }, - "m_updateBattlePassPoints": { - "type": "bool", - "id": 32, - "offset": 408, - "flags": 31, + "m_levelUpIngredients": { + "type": "class Ingredient*", + "id": 7, + "offset": 176, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 361958771 + }, + "m_levelUpCost": { + "type": "int", + "id": 8, + "offset": 192, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 713306342 + "hash": 1833544304 + } + } + }, + "1617363754": { + "name": "class LootInfoList*", + "bases": [ + "PropertyClass" + ], + "hash": 1617363754, + "properties": { + "m_loot": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2139157014 }, - "m_battlePassWinPoints": { - "type": "int", - "id": 33, - "offset": 412, + "m_goldInfo": { + "type": "class SharedPointer", + "id": 1, + "offset": 88, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1252337240 + "pointer": true, + "hash": 2077081000 }, - "m_battlePassLosePoints": { - "type": "int", - "id": 34, - "offset": 416, + "m_lootRarityList": { + "type": "class SharedPointer", + "id": 2, + "offset": 104, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1400839869 + "pointer": true, + "hash": 3268854573 } } }, - "400652242": { - "name": "class InventoryPageWindow*", + "2053784145": { + "name": "class InfractionBehavior*", "bases": [ - "Window", + "BehaviorInstance", "PropertyClass" ], - "hash": 400652242, + "hash": 2053784145, "properties": { - "m_sName": { - "type": "std::string", + "m_behaviorTemplateNameID": { + "type": "unsigned int", "id": 0, - "offset": 80, - "flags": 135, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2306437263 + "hash": 223437287 }, - "m_Children": { - "type": "class SharedPointer", + "m_penalties": { + "type": "class SharedPointer", "id": 1, "offset": 112, - "flags": 65671, - "container": "Vector", + "flags": 31, + "container": "List", "dynamic": true, "singleton": false, "pointer": true, - "hash": 2621225959 + "hash": 1696001746 }, - "m_Style": { - "type": "unsigned int", + "m_record": { + "type": "class SharedPointer", "id": 2, - "offset": 152, - "flags": 1048583, - "container": "Static", - "dynamic": false, + "offset": 128, + "flags": 16, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "SCALE_CHILDREN": 2, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "FOCUS_LOCKED": 64, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152 - } - }, - "m_Flags": { - "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 1048583, + "pointer": true, + "hash": 2129713657 + } + } + }, + "778459482": { + "name": "class SharedPointer", + "bases": [ + "HidePipsCinematicAction", + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 778459482, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } + "hash": 2237098605 }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, - "flags": 135, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3105139380 + "hash": 2285866132 }, - "m_fTargetAlpha": { - "type": "float", - "id": 5, - "offset": 212, - "flags": 135, + "m_newActorName": { + "type": "std::string", + "id": 2, + "offset": 120, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1809129834 - }, - "m_fDisabledAlpha": { + "hash": 2029131039 + } + } + }, + "1169587682": { + "name": "class SharedPointer", + "bases": [ + "RenamePipActorsFromResult", + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 1169587682, + "properties": { + "m_timeOffset": { "type": "float", - "id": 6, - "offset": 216, - "flags": 135, + "id": 0, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1389987675 + "hash": 2237098605 }, - "m_fAlpha": { - "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 482130755 + "hash": 2285866132 }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, + "m_newActorName": { + "type": "std::string", + "id": 2, + "offset": 120, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3623628394 + "pointer": false, + "hash": 2029131039 }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, + "m_newActorName2": { + "type": "std::string", + "id": 3, + "offset": 152, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2102211316 + "hash": 1852236785 }, - "m_sScript": { + "m_oldActorName": { "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, + "id": 4, + "offset": 184, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1846695875 - }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, + "hash": 2191892948 + } + } + }, + "775544886": { + "name": "class ClientRaidManagerBehavior", + "bases": [ + "RaidManagerBehavior", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 775544886, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3389835433 - }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, + "hash": 223437287 + } + } + }, + "1169504057": { + "name": "class SharedPointer", + "bases": [ + "BaseZone", + "PropertyClass" + ], + "hash": 1169504057, + "properties": { + "m_id": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2547159940 + "hash": 2090569797 }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, + "m_name": { + "type": "std::string", + "id": 1, + "offset": 88, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, + "hash": 1717359772 + } + } + }, + "1619572820": { + "name": "class IgnoreEntryDataList", + "bases": [ + "PropertyClass" + ], + "hash": 1619572820, + "properties": { + "m_ignoreDataList": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 31, "container": "List", "dynamic": true, "singleton": false, + "pointer": true, + "hash": 2636534189 + } + } + }, + "774596026": { + "name": "class ClientFishBehavior*", + "bases": [ + "FishBehavior", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 774596026, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, "pointer": false, - "hash": 2587533771 + "hash": 223437287 }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, + "m_fishSize": { + "type": "float", + "id": 1, + "offset": 112, + "flags": 65536, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3091503757 + "hash": 1986368316 } } }, - "6156116": { - "name": "class SharedPointer", + "1169266791": { + "name": "class SharedPointer", "bases": [ - "WizItemTemplate", - "ItemTemplate", - "GameObjectTemplate", - "CoreTemplate", + "Duel", "PropertyClass" ], - "hash": 6156116, + "hash": 1169266791, "properties": { - "m_behaviors": { - "type": "class BehaviorTemplate*", + "m_flatParticipantList": { + "type": "class SharedPointer", "id": 0, - "offset": 72, - "flags": 7, + "offset": 80, + "flags": 31, "container": "Vector", "dynamic": true, "singleton": false, "pointer": true, - "hash": 1197808594 + "hash": 3375244498 }, - "m_objectName": { - "type": "std::string", + "m_dynamicTeams": { + "type": "class SharedPointer", "id": 1, - "offset": 96, - "flags": 7, + "offset": 104, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 2154940147 + "pointer": true, + "hash": 3227206264 }, - "m_templateID": { + "m_dynamicTurn": { "type": "unsigned int", "id": 2, - "offset": 128, - "flags": 16777223, + "offset": 120, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1286746870 + "hash": 1168494811 }, - "m_visualID": { + "m_dynamicTurnSubcircles": { "type": "unsigned int", "id": 3, - "offset": 132, - "flags": 7, + "offset": 124, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1118778894 + "hash": 618930538 }, - "m_adjectiveList": { - "type": "std::string", + "m_dynamicTurnCounter": { + "type": "int", "id": 4, - "offset": 248, - "flags": 7, - "container": "List", - "dynamic": true, + "offset": 128, + "flags": 31, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 3195213318 + "hash": 543404296 }, - "m_exemptFromAOI": { - "type": "bool", + "m_duelID.m_full": { + "type": "unsigned __int64", "id": 5, - "offset": 240, - "flags": 7, + "offset": 72, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1457879059 + "hash": 1024980477 }, - "m_displayName": { - "type": "std::string", + "m_planningTimer": { + "type": "float", "id": 6, - "offset": 168, - "flags": 8388615, + "offset": 144, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2446900370 + "hash": 1142844143 }, - "m_description": { - "type": "std::string", + "m_position": { + "type": "class Vector3D", "id": 7, - "offset": 136, - "flags": 8388615, + "offset": 148, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1649374815 + "hash": 3697900983 }, - "m_nObjectType": { - "type": "enum ObjectType", + "m_yaw": { + "type": "float", "id": 8, - "offset": 200, - "flags": 2097159, + "offset": 160, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2118905880, - "enum_options": { - "OT_UNDEFINED": 0, - "OT_PLAYER": 1, - "OT_NPC": 2, - "OT_PROP": 3, - "OT_OBJECT": 4, - "OT_HOUSE": 5, - "OT_KEY": 6, - "OT_OLD_KEY": 7, - "OT_DEED": 8, - "OT_MAIL": 9, - "OT_RECIPE": 17, - "OT_EQUIP_HEAD": 10, - "OT_EQUIP_CHEST": 11, - "OT_EQUIP_LEGS": 12, - "OT_EQUIP_HANDS": 13, - "OT_EQUIP_FINGER": 14, - "OT_EQUIP_FEET": 15, - "OT_EQUIP_EAR": 16, - "OT_BUILDING_BLOCK": 18, - "OT_BUILDING_BLOCK_SOLID": 19, - "OT_GOLF": 20, - "OT_DOOR": 21, - "OT_PET": 22, - "OT_FABRIC": 23, - "OT_WINDOW": 24, - "OT_ROOF": 25, - "OT_HORSE": 26, - "OT_STRUCTURE": 27, - "OT_HOUSING_TEXTURE": 28, - "OT_PLANT": 29 - } + "hash": 357256328 }, - "m_sIcon": { - "type": "std::string", + "m_disableTimer": { + "type": "bool", "id": 9, - "offset": 208, - "flags": 131079, + "offset": 179, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2306259831 + "hash": 1571862248 }, - "m_equipRequirements": { - "type": "class RequirementList*", + "m_tutorialMode": { + "type": "bool", "id": 10, - "offset": 280, - "flags": 7, + "offset": 180, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2762617226 + "pointer": false, + "hash": 1704245836 }, - "m_purchaseRequirements": { - "type": "class RequirementList*", + "m_firstTeamToAct": { + "type": "int", "id": 11, - "offset": 288, - "flags": 7, + "offset": 184, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3174641793 + "pointer": false, + "hash": 1499447620 }, - "m_equipEffects": { - "type": "class GameEffectInfo*", + "m_combatResolver": { + "type": "class CombatResolver*", "id": 12, - "offset": 296, - "flags": 7, - "container": "List", - "dynamic": true, + "offset": 136, + "flags": 31, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": true, - "hash": 836628351 + "hash": 1627811879 }, - "m_baseCost": { - "type": "float", + "m_bPVP": { + "type": "bool", "id": 13, - "offset": 312, - "flags": 7, + "offset": 176, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1565352651 + "hash": 221690795 }, - "m_creditsCost": { - "type": "float", + "m_bBattleground": { + "type": "bool", "id": 14, - "offset": 320, - "flags": 7, + "offset": 177, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 805514974 + "hash": 1158269184 }, - "m_avatarInfo": { - "type": "class AvatarItemInfoBase*", + "m_bRaid": { + "type": "bool", "id": 15, - "offset": 328, - "flags": 7, + "offset": 178, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2627321299 + "pointer": false, + "hash": 791201781 }, - "m_avatarFlags": { - "type": "std::string", + "m_roundNum": { + "type": "int", "id": 16, - "offset": 336, - "flags": 7, - "container": "List", - "dynamic": true, + "offset": 192, + "flags": 31, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 2347762759 + "hash": 1461215570 }, - "m_itemLimit": { - "type": "int", + "m_executionPhaseTimer": { + "type": "float", "id": 17, - "offset": 316, - "flags": 7, + "offset": 200, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1799746856 + "hash": 1645062877 }, - "m_holidayFlag": { - "type": "std::string", + "m_executionPhaseCombatActions": { + "type": "class CombatAction", "id": 18, - "offset": 352, - "flags": 7, - "container": "Static", - "dynamic": false, + "offset": 208, + "flags": 31, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 2994795359 + "hash": 270648678 }, - "m_itemSetBonusTemplateID": { - "type": "unsigned int", + "m_sigilActions": { + "type": "class CombatAction", "id": 19, - "offset": 384, - "flags": 33554439, - "container": "Static", - "dynamic": false, + "offset": 224, + "flags": 31, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 1316835672 + "hash": 2176432675 }, - "m_numPrimaryColors": { - "type": "int", + "m_shadowPipRule": { + "type": "class SharedPointer", "id": 20, - "offset": 428, + "offset": 280, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 981103872 + "pointer": true, + "hash": 2692865990 }, - "m_numSecondaryColors": { - "type": "int", + "m_gameObjectAnimStateTracker": { + "type": "class GameObjectAnimStateTracker", "id": 21, - "offset": 432, - "flags": 7, + "offset": 296, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1310416868 + "hash": 3120084989 }, - "m_numPatterns": { - "type": "int", + "m_duelPhase": { + "type": "enum kDuelPhase", "id": 22, - "offset": 436, - "flags": 7, + "offset": 196, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 953162171 + "hash": 1813818086, + "enum_options": { + "kPhase_Starting": 0, + "kPhase_PrePlanning": 1, + "kPhase_Planning": 2, + "kPhase_PreExecution": 3, + "kPhase_Execution": 4, + "kPhase_Resolution": 5, + "kPhase_Victory": 6, + "kPhase_Ended": 7, + "kPhase_MAX": 10 + } }, - "m_school": { - "type": "std::string", + "m_duelModifier": { + "type": "class SharedPointer", "id": 23, - "offset": 392, - "flags": 7, + "offset": 264, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 2438566051 + "pointer": true, + "hash": 3330438158 }, - "m_arenaPointCost": { - "type": "int", + "m_initiativeSwitchMode": { + "type": "enum Duel::SigilInitiativeSwitchMode", "id": 24, - "offset": 440, - "flags": 7, + "offset": 384, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1819621796 + "hash": 1258091520, + "enum_options": { + "InitiativeSwitchMode_None": 0, + "InitiativeSwitchMode_Reroll": 1, + "InitiativeSwitchMode_Switch": 2 + } }, - "m_pvpCurrencyCost": { + "m_initiativeSwitchRounds": { "type": "int", "id": 25, - "offset": 444, - "flags": 7, + "offset": 388, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 645595444 + "hash": 540229885 }, - "m_pvpTourneyCurrencyCost": { - "type": "int", + "m_combatRules": { + "type": "class SharedPointer", "id": 26, - "offset": 448, - "flags": 7, - "container": "Static", - "dynamic": false, + "offset": 464, + "flags": 31, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 517874954 + "pointer": true, + "hash": 3327225763 }, - "m_rank": { - "type": "int", + "m_gameEffectInfo": { + "type": "class SharedPointer", "id": 27, - "offset": 424, - "flags": 7, - "container": "Static", - "dynamic": false, + "offset": 496, + "flags": 31, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 219803942 + "pointer": true, + "hash": 2275096584 }, - "m_boyIconIndex": { - "type": "int", + "m_pStatEffects": { + "type": "class SharedPointer", "id": 28, - "offset": 452, - "flags": 7, + "offset": 512, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 802140453 + "pointer": true, + "hash": 1275229758 }, - "m_girlIconIndex": { - "type": "int", + "m_alternateTurnCombatRule": { + "type": "class SharedPointer", "id": 29, - "offset": 456, - "flags": 7, + "offset": 480, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 832706793 + "pointer": true, + "hash": 1715882395 }, - "m_leashOffsetOverride": { - "type": "class SharedPointer", + "m_altTurnCounter": { + "type": "int", "id": 30, - "offset": 464, - "flags": 7, + "offset": 456, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1692586788 + "pointer": false, + "hash": 1434810564 }, - "m_rarity": { - "type": "enum RarityType", + "m_originalFirstTeamToAct": { + "type": "int", "id": 31, - "offset": 460, - "flags": 2097159, + "offset": 188, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2253792108, - "enum_options": { - "RT_COMMON": 0, - "RT_UNCOMMON": 1, - "RT_RARE": 2, - "RT_ULTRARARE": 3, - "RT_EPIC": 4 - } + "hash": 560350457 }, - "m_tourneyTokensAmount": { - "type": "int", + "m_executionOrder": { + "type": "enum kDuelExecutionOrder", "id": 32, - "offset": 480, - "flags": 7, + "offset": 528, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1579576120 + "hash": 3362082097, + "enum_options": { + "kDEO_Sequential": 0, + "kDEO_Alternating": 1 + } }, - "m_nif": { - "type": "std::string", + "m_noHenchmen": { + "type": "bool", "id": 33, - "offset": 488, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1764743064 - } - } - }, - "1562533748": { - "name": "class ClientRemoveParticleActorCinematicAction", - "bases": [ - "RemoveParticleActorCinematicAction", - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 1562533748, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, + "offset": 532, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 + "hash": 1163855414 }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, + "m_SpellTruncation": { + "type": "bool", + "id": 34, + "offset": 540, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2285866132 + "hash": 1257440762 }, - "m_effectName": { - "type": "std::string", - "id": 2, - "offset": 120, - "flags": 7, + "m_shadowThresholdFactor": { + "type": "float", + "id": 35, + "offset": 548, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2029161513 + "hash": 2104355177 }, - "m_nodeName": { - "type": "std::string", - "id": 3, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3607089954 - } - } - }, - "1170264438": { - "name": "class CastEffectCinematicAction", - "bases": [ - "BaseEffectCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 1170264438, - "properties": { - "m_timeOffset": { + "m_shadowPipRatingFactor": { "type": "float", - "id": 0, - "offset": 72, - "flags": 7, + "id": 36, + "offset": 552, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 + "hash": 1061434314 }, - "m_effectRel": { - "type": "enum BaseEffectCinematicAction::kEffectRelative", - "id": 1, - "offset": 80, - "flags": 2097159, + "m_defaultShadowPipRating": { + "type": "float", + "id": 37, + "offset": 556, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2978921287, - "enum_options": { - "kNone": 0, - "kSigil": 1, - "kTarget": 2, - "kSource": 3, - "kActor": 4 - } + "hash": 1544572080 }, - "m_namedActor": { - "type": "std::string", - "id": 2, - "offset": 88, - "flags": 7, + "m_shadowPipThresholdTeam0": { + "type": "float", + "id": 38, + "offset": 560, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3413532537 - } - } - }, - "1979778321": { - "name": "class SharedPointer", - "bases": [ - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 1979778321, - "properties": { - "m_timeOffset": { + "hash": 447039594 + }, + "m_shadowPipThresholdTeam1": { "type": "float", - "id": 0, - "offset": 72, - "flags": 7, + "id": 39, + "offset": 564, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 + "hash": 447039595 }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, + "m_maxArchmasteryTeam0": { + "type": "float", + "id": 40, + "offset": 568, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2285866132 - } - } - }, - "406357213": { - "name": "class SharedPointer", - "bases": [ - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 406357213, - "properties": { - "m_timeOffset": { + "hash": 300185527 + }, + "m_maxArchmasteryTeam1": { "type": "float", - "id": 0, - "offset": 72, - "flags": 7, + "id": 41, + "offset": 572, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 + "hash": 300185528 }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, + "m_scalarDamage": { + "type": "float", + "id": 42, + "offset": 600, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2285866132 - } - } - }, - "1976896556": { - "name": "class std::list >", - "bases": [], - "hash": 1976896556, - "properties": {} - }, - "8916291": { - "name": "char*", - "bases": [], - "hash": 8916291, - "properties": {} - }, - "1564652069": { - "name": "class ClientClearTopTeamCinematicAction", - "bases": [ - "ClearTopTeamCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 1564652069, - "properties": { - "m_timeOffset": { + "hash": 1865068300 + }, + "m_scalarResist": { "type": "float", - "id": 0, - "offset": 72, - "flags": 7, + "id": 43, + "offset": 604, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 + "hash": 270448583 }, - "m_interpDuration": { + "m_scalarPierce": { "type": "float", - "id": 1, - "offset": 80, - "flags": 7, + "id": 44, + "offset": 608, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237711951 - } - } - }, - "404151600": { - "name": "class SharedPointer", - "bases": [ - "DerbyEffect", - "PropertyClass" - ], - "hash": 404151600, - "properties": { - "m_buffType": { - "type": "enum DerbyTalentBuffType", - "id": 0, - "offset": 92, - "flags": 2097183, + "hash": 196427621 + }, + "m_damageLimit": { + "type": "float", + "id": 45, + "offset": 612, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1149251982, - "enum_options": { - "Buff": 0, - "Debuff": 1, - "Neither": 2 - } + "hash": 271286357 }, - "m_kTarget": { - "type": "enum DerbyTargetType", - "id": 1, - "offset": 96, - "flags": 2097159, + "m_dK0": { + "type": "float", + "id": 46, + "offset": 616, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1807803351, - "enum_options": { - "kTargetInFront": 0, - "kTargetBehind": 1, - "kTargetFirst": 2, - "kTargetSelf": 3, - "kTargetAll": 4, - "kTargetLast": 5 - } + "hash": 357232662 }, - "m_nDuration": { - "type": "int", - "id": 2, - "offset": 104, + "m_dN0": { + "type": "float", + "id": 47, + "offset": 620, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1110167982 + "hash": 357232761 }, - "m_effectID": { - "type": "unsigned int", - "id": 3, - "offset": 88, - "flags": 24, + "m_resistLimit": { + "type": "float", + "id": 48, + "offset": 624, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2347630439 + "hash": 1192834544 }, - "m_imageFilename": { - "type": "std::string", - "id": 4, - "offset": 112, - "flags": 131103, + "m_rK0": { + "type": "float", + "id": 49, + "offset": 628, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2813328063 + "hash": 357247908 }, - "m_iconIndex": { - "type": "unsigned int", - "id": 5, - "offset": 144, + "m_rN0": { + "type": "float", + "id": 50, + "offset": 632, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1265133262 + "hash": 357248007 }, - "m_soundOnActivate": { - "type": "std::string", - "id": 6, - "offset": 152, - "flags": 131103, + "m_fullPartyGroup": { + "type": "bool", + "id": 51, + "offset": 636, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1956929714 + "hash": 1888593059 }, - "m_soundOnTarget": { - "type": "std::string", - "id": 7, - "offset": 184, - "flags": 131103, + "m_matchTimer": { + "type": "float", + "id": 52, + "offset": 656, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3444214056 + "hash": 1510935909 }, - "m_targetParticleEffect": { - "type": "std::string", - "id": 8, - "offset": 216, - "flags": 131103, + "m_bonusTime": { + "type": "int", + "id": 53, + "offset": 660, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3048234723 + "hash": 1757496496 }, - "m_overheadMessage": { - "type": "std::string", - "id": 9, - "offset": 248, - "flags": 8388639, + "m_passPenalty": { + "type": "int", + "id": 54, + "offset": 664, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1701018190 + "hash": 982951662 }, - "m_requirements": { - "type": "class RequirementList", - "id": 10, - "offset": 280, + "m_yellowTime": { + "type": "int", + "id": 55, + "offset": 668, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2840988582 + "hash": 1017028741 }, - "m_nMoraleChange": { + "m_redTime": { "type": "int", - "id": 11, - "offset": 376, + "id": 56, + "offset": 672, "flags": 31, "container": "Static", "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1624723118 - } - } - }, - "1170652568": { - "name": "class SharedPointer", - "bases": [ - "Requirement", - "PropertyClass" - ], - "hash": 1170652568, - "properties": { - "m_applyNOT": { - "type": "bool", - "id": 0, - "offset": 72, + "singleton": false, + "pointer": false, + "hash": 1909556708 + }, + "m_minTurnTime": { + "type": "int", + "id": 57, + "offset": 676, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1746328074, - "enum_options": { - "__DEFAULT": 0 - } + "hash": 652524886 }, - "m_operator": { - "type": "enum Requirement::Operator", - "id": 1, - "offset": 76, - "flags": 2097183, + "m_bIsPlayerTimedDuel": { + "type": "bool", + "id": 58, + "offset": 637, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2672792317, - "enum_options": { - "ROP_AND": 0, - "ROP_OR": 1, - "__DEFAULT": "ROP_AND" - } + "hash": 857311611 }, - "m_adjective": { - "type": "std::string", - "id": 2, - "offset": 80, - "flags": 7, + "m_hideNoncombatantDistance": { + "type": "float", + "id": 59, + "offset": 536, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3429518154 + "hash": 1733017888 } } }, - "1974931982": { - "name": "class SharedPointer", + "1619021775": { + "name": "class ControlTab::Page*", "bases": [ - "AnnounceTextCinematicAction", - "CinematicAction", "PropertyClass" ], - "hash": 1974931982, + "hash": 1619021775, "properties": { - "m_timeOffset": { - "type": "float", + "m_tabName": { + "type": "std::string", "id": 0, "offset": 72, "flags": 7, @@ -513706,389 +286356,358 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 + "hash": 1536087219 }, - "m_text": { - "type": "std::string", + "m_tabWindow": { + "type": "class SharedPointer", "id": 1, - "offset": 112, + "offset": 104, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1717580128 + "pointer": true, + "hash": 2814298381 }, - "m_onlyForPlayer": { - "type": "bool", + "m_tabButton": { + "type": "class SharedPointer", "id": 2, - "offset": 144, + "offset": 120, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 249913353 - }, - "m_stringTable": { + "pointer": true, + "hash": 847778038 + } + } + }, + "2055478895": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 2055478895, + "properties": { + "m_adjective": { "type": "std::string", - "id": 3, - "offset": 80, + "id": 0, + "offset": 72, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3386025626 - }, - "m_effectParamMadlib": { - "type": "bool", - "id": 4, - "offset": 146, - "flags": 7, + "hash": 3429518154 + } + } + }, + "772937500": { + "name": "class ObstacleCoursePendulumBehavior", + "bases": [ + "ObstacleCourseObstacleBehavior", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 772937500, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 292989178 + "hash": 223437287 } } }, - "6677714": { - "name": "class PvPPenaltyMatchBanInfo*", + "1618382704": { + "name": "class SharedPointer", "bases": [ - "InfractionPenaltyInfo", + "BehaviorInstance", "PropertyClass" ], - "hash": 6677714, + "hash": 1618382704, "properties": { - "m_addAtPointValue": { - "type": "float", + "m_behaviorTemplateNameID": { + "type": "unsigned int", "id": 0, - "offset": 72, - "flags": 7, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1071217084 + "hash": 223437287 }, - "m_removeAtPointValue": { - "type": "float", + "m_castleToursFavoritesData": { + "type": "std::string", "id": 1, - "offset": 76, - "flags": 7, + "offset": 128, + "flags": 575, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2112196961 - }, - "m_lifespan": { - "type": "std::string", - "id": 2, - "offset": 80, - "flags": 7, + "hash": 1708015073 + } + } + }, + "772205039": { + "name": "class GuildMuseumCuratorBehaviorBase*", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 772205039, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3042809453 + "hash": 223437287 } } }, - "1563394131": { - "name": "class PvPSeasonTemplate*", + "1618010027": { + "name": "class ConicalStateSoundBehavior*", "bases": [ + "ConicalSoundBehavior", + "PositionalSoundBehavior", + "SoundBehavior", + "AreaBehavior", + "BehaviorInstance", "PropertyClass" ], - "hash": 1563394131, + "hash": 1618010027, "properties": { - "m_seasonName": { - "type": "std::string", + "m_behaviorTemplateNameID": { + "type": "unsigned int", "id": 0, - "offset": 80, - "flags": 7, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1895926181 + "hash": 223437287 }, - "m_seasonTitle": { - "type": "std::string", + "m_radius": { + "type": "float", "id": 1, - "offset": 112, - "flags": 8388615, + "offset": 116, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1758854694 + "hash": 989410271 }, - "m_startMonth": { - "type": "int", + "m_category": { + "type": "enum AudioCategory", "id": 2, - "offset": 144, - "flags": 7, + "offset": 124, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 661899790 + "hash": 2951251982, + "enum_options": { + "AudioCategory_Irrelevent": 0, + "AudioCategory_Accoustic": 1, + "AudioCategory_Noise": 2, + "AudioCategory_Music": 3 + } }, - "m_startDay": { - "type": "int", + "m_exclusive": { + "type": "bool", "id": 3, - "offset": 148, + "offset": 128, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 367473766 + "hash": 824383403 }, - "m_startHour": { - "type": "int", + "m_playList": { + "type": "class PlayList", "id": 4, - "offset": 152, + "offset": 176, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1386544390 + "hash": 2061221957 }, - "m_startMinute": { - "type": "int", + "m_volume": { + "type": "float", "id": 5, - "offset": 156, + "offset": 304, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 357912026 + "hash": 1162855023 }, - "m_endMonth": { + "m_loopCount": { "type": "int", "id": 6, - "offset": 160, + "offset": 308, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1624246775 + "hash": 865634717 }, - "m_endDay": { - "type": "int", + "m_minimumFalloff": { + "type": "float", "id": 7, - "offset": 164, + "offset": 328, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 405825039 + "hash": 355697197 }, - "m_endHour": { - "type": "int", + "m_maximumFalloff": { + "type": "float", "id": 8, - "offset": 168, + "offset": 332, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 504652751 + "hash": 2210192367 }, - "m_endMinute": { - "type": "int", + "m_animDriven": { + "type": "bool", "id": 9, - "offset": 172, + "offset": 392, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2050591459 - } - } - }, - "403229938": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 403229938, - "properties": { - "m_savedDebugCommandList": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2197698884 + "hash": 398394720 }, - "m_saveToHistory": { + "m_inverted": { "type": "bool", - "id": 1, - "offset": 88, + "id": 10, + "offset": 397, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 762028567 - } - } - }, - "1972718979": { - "name": "class ClientUnSwapShadowMaterialActorCinematicAction*", - "bases": [ - "UnSwapShadowMaterialActorCinematicAction", - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 1972718979, - "properties": { - "m_timeOffset": { + "hash": 1034821044 + }, + "m_fInsideAngle": { "type": "float", - "id": 0, - "offset": 72, + "id": 11, + "offset": 528, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 + "hash": 1114383840 }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, + "m_fOutsideAngle": { + "type": "float", + "id": 12, + "offset": 532, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2285866132 - } - } - }, - "6636754": { - "name": "class PvPPenaltyMatchBanInfo", - "bases": [ - "InfractionPenaltyInfo", - "PropertyClass" - ], - "hash": 6636754, - "properties": { - "m_addAtPointValue": { + "hash": 1627152289 + }, + "m_fOutsideVolume": { "type": "float", - "id": 0, - "offset": 72, + "id": 13, + "offset": 536, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1071217084 + "hash": 90369618 }, - "m_removeAtPointValue": { + "m_fRangeScale": { "type": "float", - "id": 1, - "offset": 76, + "id": 14, + "offset": 540, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2112196961 + "hash": 1749294034 }, - "m_lifespan": { - "type": "std::string", - "id": 2, - "offset": 80, + "m_fAttenuationFactor": { + "type": "float", + "id": 15, + "offset": 544, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3042809453 - } - } - }, - "402756076": { - "name": "class MinigameConfig", - "bases": [ - "PropertyClass" - ], - "hash": 402756076, - "properties": { - "m_minigames": { - "type": "class MinigameInfo*", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2928955645 - } - } - }, - "1972718883": { - "name": "class ClientUnSwapShadowMaterialActorCinematicAction", - "bases": [ - "UnSwapShadowMaterialActorCinematicAction", - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 1972718883, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, + "hash": 273292776 + }, + "m_eAttenuationType": { + "type": "enum PositionInfoAttenuationType", + "id": 16, + "offset": 548, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 + "hash": 2427193304, + "enum_options": { + "Standard": 0, + "Unit Range Power": 1 + } }, - "m_actor": { + "m_animationName": { "type": "std::string", - "id": 1, - "offset": 80, + "id": 17, + "offset": 648, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2285866132 + "hash": 3393414044 } } }, - "402439329": { - "name": "class SharedPointer", + "2056437968": { + "name": "class AuctionHouseConfig", "bases": [ - "ActorCinematicAction", - "CinematicAction", "PropertyClass" ], - "hash": 402439329, + "hash": 2056437968, "properties": { - "m_timeOffset": { - "type": "float", + "m_maxCopiesEachTemplate": { + "type": "int", "id": 0, "offset": 72, "flags": 7, @@ -514096,10 +286715,10 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 + "hash": 482850544 }, - "m_actor": { - "type": "std::string", + "m_itemDegradationTime": { + "type": "float", "id": 1, "offset": 80, "flags": 7, @@ -514107,118 +286726,87 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 2285866132 + "hash": 500224183 }, - "m_animation": { - "type": "std::string", + "m_priceMods": { + "type": "class AuctionPriceMods*", "id": 2, - "offset": 120, + "offset": 88, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "Vector", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 3431428731 + "pointer": true, + "hash": 2703049879 }, - "m_backupAnimation": { - "type": "std::string", + "m_craftedPriceMods": { + "type": "class AuctionPriceMods*", "id": 3, - "offset": 152, + "offset": 112, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "Vector", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 1661537937 + "pointer": true, + "hash": 2084157488 }, - "m_default": { - "type": "bool", + "m_observerTimeout": { + "type": "int", "id": 4, - "offset": 184, + "offset": 160, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1014207576 + "hash": 562500777 }, - "m_evenWhileDead": { - "type": "bool", + "m_maxReagentTemplateCopies": { + "type": "int", "id": 5, - "offset": 185, + "offset": 76, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2100875368 + "hash": 1246482213 }, - "m_fadeOutAfter": { - "type": "bool", + "m_reagentPriceMods": { + "type": "class AuctionPriceMods*", "id": 6, - "offset": 186, + "offset": 136, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "Vector", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 2006083917 + "pointer": true, + "hash": 1253990333 }, - "m_startsImportantAnimations": { - "type": "bool", + "m_templatesInStockList": { + "type": "unsigned int", "id": 7, - "offset": 187, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 734711685 - }, - "m_forcesStageToWait": { - "type": "bool", - "id": 8, - "offset": 188, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 74507905 - }, - "m_storeAnimForLateComers": { - "type": "bool", - "id": 9, - "offset": 190, + "offset": 184, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 634303291 + "hash": 977195955 } } }, - "1171118906": { - "name": "class FixedCamController", - "bases": [ - "ChaseCamController", - "CameraController", - "PropertyClass" - ], - "hash": 1171118906, - "properties": {} - }, - "1972400702": { - "name": "class PathActionChangeDirection", + "1170264438": { + "name": "class CastEffectCinematicAction", "bases": [ - "PathBehaviorTemplate::Action", + "BaseEffectCinematicAction", + "CinematicAction", "PropertyClass" ], - "hash": 1972400702, + "hash": 1170264438, "properties": { - "m_nPathID": { - "type": "gid", + "m_timeOffset": { + "type": "float", "id": 0, "offset": 72, "flags": 7, @@ -514226,436 +286814,313 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 214382368 + "hash": 2237098605 }, - "m_nNodeID": { - "type": "int", + "m_effectRel": { + "type": "enum BaseEffectCinematicAction::kEffectRelative", "id": 1, "offset": 80, - "flags": 7, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 152152635, + "hash": 2978921287, "enum_options": { - "__DEFAULT": 4294967295 + "kNone": 0, + "kSigil": 1, + "kTarget": 2, + "kSource": 3, + "kActor": 4 } }, - "m_nPriority": { - "type": "int", + "m_namedActor": { + "type": "std::string", "id": 2, - "offset": 84, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1515251530, - "enum_options": { - "__DEFAULT": 100 - } - }, - "m_nChance": { - "type": "int", - "id": 3, "offset": 88, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1860748394, - "enum_options": { - "__DEFAULT": 50 - } + "hash": 3413532537 } } }, - "401053773": { - "name": "class BaseBadgeBehavior*", + "773327064": { + "name": "class PeriodicSubscriptionsInfo", "bases": [ - "BehaviorInstance", "PropertyClass" ], - "hash": 401053773, + "hash": 773327064, "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", + "m_subscriptions": { + "type": "class SharedPointer", "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_badgeData": { - "type": "std::string", - "id": 1, - "offset": 160, - "flags": 575, - "container": "Static", - "dynamic": false, + "offset": 72, + "flags": 31, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 3002588904 + "pointer": true, + "hash": 3595491367 } } }, - "1171082868": { - "name": "class RadialMenuSlotInfo", + "1170652568": { + "name": "class SharedPointer", "bases": [ + "Requirement", "PropertyClass" ], - "hash": 1171082868, + "hash": 1170652568, "properties": { - "m_slot": { - "type": "short", + "m_applyNOT": { + "type": "bool", "id": 0, "offset": 72, - "flags": 33554495, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 310478918 + "hash": 1746328074, + "enum_options": { + "__DEFAULT": 0 + } }, - "m_emoteID": { - "type": "gid", + "m_operator": { + "type": "enum Requirement::Operator", "id": 1, + "offset": 76, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2672792317, + "enum_options": { + "ROP_AND": 0, + "ROP_OR": 1, + "__DEFAULT": "ROP_AND" + } + }, + "m_adjective": { + "type": "std::string", + "id": 2, "offset": 80, - "flags": 33554495, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 480114911 + "hash": 3429518154 } } }, - "7329248": { - "name": "class SharedPointer", + "1619185615": { + "name": "class ControlTab::Page", "bases": [ - "GraphicalSpell", - "Spell", "PropertyClass" ], - "hash": 7329248, + "hash": 1619185615, "properties": { - "m_templateID": { - "type": "unsigned int", + "m_tabName": { + "type": "std::string", "id": 0, - "offset": 128, - "flags": 31, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1286746870 + "hash": 1536087219 }, - "m_enchantment": { - "type": "unsigned int", + "m_tabWindow": { + "type": "class SharedPointer", "id": 1, - "offset": 80, - "flags": 31, + "offset": 104, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 2217886818 + "pointer": true, + "hash": 2814298381 }, - "m_pipCost": { - "type": "class SharedPointer", + "m_tabButton": { + "type": "class SharedPointer", "id": 2, - "offset": 176, + "offset": 120, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": true, - "hash": 3605704820 - }, - "m_regularAdjust": { - "type": "int", - "id": 3, - "offset": 192, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1420453335 - }, - "m_magicSchoolID": { - "type": "unsigned int", - "id": 4, - "offset": 136, + "hash": 847778038 + } + } + }, + "2059229228": { + "name": "class ComplexRotationInfo", + "bases": [ + "PropertyClass" + ], + "hash": 2059229228, + "properties": { + "m_startWeight": { + "type": "float", + "id": 0, + "offset": 72, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 893146499 + "hash": 834528109 }, - "m_accuracy": { - "type": "unsigned char", - "id": 5, - "offset": 132, + "m_middleWeight": { + "type": "float", + "id": 1, + "offset": 76, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2273914939 - }, - "m_treasureCard": { - "type": "bool", - "id": 6, - "offset": 197, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1764879128 - }, - "m_battleCard": { - "type": "bool", - "id": 7, - "offset": 198, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1332843753 + "hash": 1016481710 }, - "m_itemCard": { - "type": "bool", - "id": 8, - "offset": 199, + "m_endWeight": { + "type": "float", + "id": 2, + "offset": 80, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1683654300 + "hash": 379723894 }, - "m_sideBoard": { - "type": "bool", - "id": 9, - "offset": 200, + "m_desiredSpeed": { + "type": "float", + "id": 3, + "offset": 84, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1897838368 - }, - "m_spellID": { - "type": "unsigned int", - "id": 10, - "offset": 204, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1697483258 - }, - "m_leavesPlayWhenCastOverride": { - "type": "bool", - "id": 11, - "offset": 216, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 874407398 + "hash": 406717000 }, - "m_cloaked": { - "type": "bool", - "id": 12, - "offset": 196, + "m_durationSeconds": { + "type": "float", + "id": 4, + "offset": 88, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 7349510 - }, - "m_enchantmentSpellIsItemCard": { - "type": "bool", - "id": 13, - "offset": 76, - "flags": 31, + "hash": 1349797100 + } + } + }, + "2057349160": { + "name": "class ClientFXBySlotEffect", + "bases": [ + "FXBySlotEffect", + "GameEffectBase", + "PropertyClass" + ], + "hash": 2057349160, + "properties": { + "m_currentTickCount": { + "type": "double", + "id": 0, + "offset": 80, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 531590701 + "hash": 2533274692 }, - "m_premutationSpellID": { + "m_effectNameID": { "type": "unsigned int", - "id": 14, - "offset": 112, - "flags": 31, + "id": 1, + "offset": 96, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1530256370 + "hash": 1204067144 }, - "m_enchantedThisCombat": { + "m_bIsOnPet": { "type": "bool", - "id": 15, - "offset": 77, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1895738923 - }, - "m_paramOverrides": { - "type": "class SharedPointer", - "id": 16, - "offset": 224, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2061635599 - }, - "m_subEffectMeta": { - "type": "class SharedPointer", - "id": 17, - "offset": 240, + "id": 2, + "offset": 73, "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1944101106 - }, - "m_delayEnchantment": { - "type": "bool", - "id": 18, - "offset": 257, - "flags": 287, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 191336919 + "hash": 522593303 }, - "m_PvE": { - "type": "bool", - "id": 19, - "offset": 264, - "flags": 287, + "m_originatorID": { + "type": "gid", + "id": 3, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 269492350 + "hash": 1131810019 }, - "m_delayEnchantmentOrder": { - "type": "enum SpellEffect::kDelayOrder", - "id": 20, - "offset": 72, - "flags": 287, + "m_itemSlotID": { + "type": "unsigned int", + "id": 4, + "offset": 112, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2526055263, - "enum_options": { - "SpellEffect::kAnyOrder": 0, - "SpellEffect::kFirst": 1, - "SpellEffect::kSecond": 2 - } + "hash": 1895747595 }, - "m_roundAddedTC": { + "m_internalID": { "type": "int", - "id": 21, - "offset": 260, - "flags": 31, + "id": 5, + "offset": 92, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 112365451 + "hash": 1643137924 }, - "m_secondarySchoolID": { + "m_endTime": { "type": "unsigned int", - "id": 22, - "offset": 304, - "flags": 7, + "id": 6, + "offset": 88, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2081206026 + "hash": 716479635 } } }, - "1564926073": { - "name": "class ActiveMapQuestsCommon*", + "775336292": { + "name": "class SharedPointer", "bases": [ "PropertyClass" ], - "hash": 1564926073, + "hash": 775336292, "properties": { - "m_zoneID": { - "type": "gid", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1229232257 - }, - "m_newQuestList": { - "type": "unsigned int", - "id": 1, - "offset": 80, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 394073349 - }, - "m_completedQuestList": { + "m_chatID": { "type": "unsigned int", - "id": 2, - "offset": 96, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 426641112 - } - } - }, - "6746851": { - "name": "class SharedPointer", - "bases": [ - "GameEffectTemplate", - "PropertyClass" - ], - "hash": 6746851, - "properties": { - "m_effectName": { - "type": "std::string", "id": 0, "offset": 72, "flags": 7, @@ -514663,413 +287128,522 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 2029161513 + "hash": 531784794 }, - "m_effectCategory": { + "m_label": { "type": "std::string", "id": 1, - "offset": 104, + "offset": 80, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1852673222 + "hash": 2298819451 }, - "m_sortOrder": { - "type": "int", + "m_text": { + "type": "std::string", "id": 2, - "offset": 148, + "offset": 112, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1411218206 + "hash": 1717580128 }, - "m_duration": { - "type": "double", + "m_charAnim": { + "type": "std::string", "id": 3, - "offset": 192, + "offset": 144, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2727932435 + "hash": 2402868926 }, - "m_stackingCategories": { - "type": "std::string", + "m_categoryMask": { + "type": "unsigned int", "id": 4, - "offset": 160, + "offset": 176, "flags": 7, - "container": "List", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 1774497525 + "hash": 2304824567 }, - "m_isPersistent": { - "type": "bool", + "m_dynFolder": { + "type": "int", "id": 5, - "offset": 153, + "offset": 180, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 923861920 + "hash": 510571201 }, - "m_bIsOnPet": { + "m_supportsMore": { "type": "bool", "id": 6, - "offset": 154, + "offset": 184, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 522593303 + "hash": 902487766 }, - "m_isPublic": { + "m_membersOnly": { "type": "bool", "id": 7, - "offset": 152, + "offset": 185, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1728439822 + "hash": 1051823616 }, - "m_visualEffectAddName": { + "m_unlockKey": { "type": "std::string", "id": 8, - "offset": 200, + "offset": 192, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3382086694 + "hash": 3522694864 }, - "m_visualEffectRemoveName": { + "m_faceAnim": { "type": "std::string", "id": 9, - "offset": 232, + "offset": 224, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1541697323 + "hash": 3169175247 }, - "m_onAddFunctorName": { + "m_sound": { "type": "std::string", "id": 10, - "offset": 280, + "offset": 256, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1561843107 + "hash": 2307644996 }, - "m_onRemoveFunctorName": { - "type": "std::string", + "m_childEntries": { + "type": "class SharedPointer", "id": 11, - "offset": 312, + "offset": 288, "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1678382163 + } + } + }, + "1619478954": { + "name": "class SharedPointer", + "bases": [ + "NameOverrideBehavior", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1619478954, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2559017864 + "hash": 223437287 }, - "m_stackingRule": { - "type": "enum STACKING_RULE", - "id": 12, - "offset": 144, - "flags": 2097159, + "m_wsNameOverride": { + "type": "std::wstring", + "id": 1, + "offset": 120, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 431568889, - "enum_options": { - "STACKING_ALLOWED": 0, - "STACKING_NOSTACK": 1, - "STACKING_REPLACE": 2 - } + "hash": 2131249091 }, - "m_minionType": { - "type": "enum MinionType", - "id": 13, - "offset": 360, - "flags": 2097159, + "m_firstName": { + "type": "std::string", + "id": 2, + "offset": 160, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3186373083, - "enum_options": { - "MT_NONE": 0, - "MT_ACCOMPANY": 1, - "MT_MINION": 2, - "MT_MONSTER": 3 - } + "hash": 3116002948 }, - "m_summonedTemplateID": { - "type": "int", - "id": 14, - "offset": 364, - "flags": 7, + "m_lastName": { + "type": "std::string", + "id": 3, + "offset": 192, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1109386027 - } - } - }, - "1564764121": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1564764121, - "properties": { - "m_maxBattleCards": { - "type": "int", - "id": 0, - "offset": 72, + "hash": 1826203600 + }, + "m_nickname": { + "type": "std::string", + "id": 4, + "offset": 224, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1906062665 + "hash": 2269863201 + }, + "m_title": { + "type": "std::string", + "id": 5, + "offset": 256, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2308614141 + }, + "m_isMonster": { + "type": "bool", + "id": 6, + "offset": 288, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1321956791 } } }, - "401375543": { - "name": "class ClientReagentItem*", + "2057349120": { + "name": "class ClientFXBySlotEffect*", "bases": [ - "WizClientObjectItem", - "ClientObject", - "CoreObject", + "FXBySlotEffect", + "GameEffectBase", "PropertyClass" ], - "hash": 401375543, + "hash": 2057349120, "properties": { - "m_inactiveBehaviors": { - "type": "class SharedPointer", + "m_currentTickCount": { + "type": "double", "id": 0, - "offset": 224, - "flags": 31, - "container": "Vector", - "dynamic": true, + "offset": 80, + "flags": 63, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1850812559 + "pointer": false, + "hash": 2533274692 }, - "m_globalID.m_full": { - "type": "unsigned __int64", + "m_effectNameID": { + "type": "unsigned int", "id": 1, - "offset": 72, - "flags": 16777247, + "offset": 96, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2312465444 + "hash": 1204067144 }, - "m_permID": { - "type": "unsigned __int64", + "m_bIsOnPet": { + "type": "bool", "id": 2, - "offset": 80, - "flags": 16777247, + "offset": 73, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1298909658 + "hash": 522593303 }, - "m_location": { - "type": "class Vector3D", + "m_originatorID": { + "type": "gid", "id": 3, - "offset": 168, - "flags": 31, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2239683611 + "hash": 1131810019 }, - "m_orientation": { - "type": "class Vector3D", + "m_itemSlotID": { + "type": "unsigned int", "id": 4, - "offset": 180, - "flags": 31, + "offset": 112, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2344058766 + "hash": 1895747595 }, - "m_fScale": { - "type": "float", + "m_internalID": { + "type": "int", "id": 5, - "offset": 196, - "flags": 31, + "offset": 92, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 503137701 + "hash": 1643137924 }, - "m_templateID.m_full": { - "type": "unsigned __int64", + "m_endTime": { + "type": "unsigned int", "id": 6, - "offset": 96, + "offset": 88, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 633907631 - }, - "m_debugName": { - "type": "std::string", - "id": 7, - "offset": 104, + "hash": 716479635 + } + } + }, + "775120159": { + "name": "class ReqItemHasAdjective*", + "bases": [ + "Requirement", + "PropertyClass" + ], + "hash": 775120159, + "properties": { + "m_applyNOT": { + "type": "bool", + "id": 0, + "offset": 72, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3553984419 + "hash": 1746328074, + "enum_options": { + "__DEFAULT": 0 + } }, - "m_displayKey": { - "type": "std::string", - "id": 8, - "offset": 136, - "flags": 31, + "m_operator": { + "type": "enum Requirement::Operator", + "id": 1, + "offset": 76, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3023276954 + "hash": 2672792317, + "enum_options": { + "ROP_AND": 0, + "ROP_OR": 1, + "__DEFAULT": "ROP_AND" + } }, - "m_zoneTagID": { - "type": "unsigned int", - "id": 9, - "offset": 344, - "flags": 31, + "m_adjective": { + "type": "std::string", + "id": 2, + "offset": 80, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 965291410 - }, - "m_speedMultiplier": { + "hash": 3429518154 + } + } + }, + "1171118906": { + "name": "class FixedCamController", + "bases": [ + "ChaseCamController", + "CameraController", + "PropertyClass" + ], + "hash": 1171118906, + "properties": {} + }, + "1171082868": { + "name": "class RadialMenuSlotInfo", + "bases": [ + "PropertyClass" + ], + "hash": 1171082868, + "properties": { + "m_slot": { "type": "short", - "id": 10, - "offset": 192, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 123130076 - }, - "m_nMobileID": { - "type": "unsigned short", - "id": 11, - "offset": 194, - "flags": 31, + "id": 0, + "offset": 72, + "flags": 33554495, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1054318939 + "hash": 310478918 }, - "m_characterId": { + "m_emoteID": { "type": "gid", - "id": 12, - "offset": 440, - "flags": 31, + "id": 1, + "offset": 80, + "flags": 33554495, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 210498418 - }, - "m_primaryColor": { - "type": "int", - "id": 13, - "offset": 560, - "flags": 31, + "hash": 480114911 + } + } + }, + "1619757016": { + "name": "class CoreInfoTable", + "bases": [ + "PropertyClass" + ], + "hash": 1619757016, + "properties": { + "Name": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 900965981 + "hash": 3587174096 }, - "m_pattern": { - "type": "int", - "id": 14, - "offset": 564, - "flags": 31, + "Value": { + "type": "std::wstring", + "id": 1, + "offset": 104, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1337683384 + "hash": 1533522313 }, - "m_secondaryColor": { - "type": "int", - "id": 15, - "offset": 568, - "flags": 63, + "Nodes": { + "type": "class SharedPointer", + "id": 2, + "offset": 136, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1601731202 + } + } + }, + "2058562748": { + "name": "class SharedPointer", + "bases": [ + "CollisionBehavior", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 2058562748, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1616550081 - }, - "m_displayID": { - "type": "gid", - "id": 16, - "offset": 576, - "flags": 63, + "hash": 223437287 + } + } + }, + "775531811": { + "name": "class TieredSpellConfig", + "bases": [ + "PropertyClass" + ], + "hash": 775531811, + "properties": { + "m_tieredSpellGroupList": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1855207927 + } + } + }, + "1619757011": { + "name": "class CoreInfoTable*", + "bases": [ + "PropertyClass" + ], + "hash": 1619757011, + "properties": { + "Name": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1022427803 + "hash": 3587174096 }, - "m_itemFlags": { - "type": "unsigned int", - "id": 17, - "offset": 584, - "flags": 31, + "Value": { + "type": "std::wstring", + "id": 1, + "offset": 104, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2004128457 + "hash": 1533522313 }, - "m_quantity": { - "type": "int", - "id": 18, - "offset": 600, - "flags": 27, - "container": "Static", - "dynamic": false, + "Nodes": { + "type": "class SharedPointer", + "id": 2, + "offset": 136, + "flags": 7, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 169215289 + "pointer": true, + "hash": 1601731202 } } }, @@ -515183,14 +287757,6 @@ } } }, - "1974860442": { - "name": "class HousingPetMovement*", - "bases": [ - "PropertyClass" - ], - "hash": 1974860442, - "properties": {} - }, "1171149879": { "name": "class SharedPointer", "bases": [ @@ -515222,28 +287788,60 @@ } } }, - "1972767847": { - "name": "class GraphicalArenaBonusPoints*", + "2059285962": { + "name": "class SharedPointer", "bases": [ - "GraphicalSpell", - "Spell", + "LootInfo", + "LootInfoBase", "PropertyClass" ], - "hash": 1972767847, + "hash": 2059285962, "properties": { - "m_templateID": { - "type": "unsigned int", + "m_lootType": { + "type": "enum LootInfo::LOOT_TYPE", "id": 0, - "offset": 128, - "flags": 31, + "offset": 72, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1286746870 + "hash": 1591891442, + "enum_options": { + "LOOT_TYPE_NONE": 0, + "LOOT_TYPE_GOLD": 1, + "LOOT_TYPE_MANA": 2, + "LOOT_TYPE_ITEM": 3, + "LOOT_TYPE_TREASURE_CARD": 4, + "LOOT_TYPE_MAGIC_XP": 5, + "LOOT_TYPE_ADD_SPELL": 6, + "LOOT_TYPE_MAX_HEALTH": 7, + "LOOT_TYPE_MAX_GOLD": 8, + "LOOT_TYPE_MAX_MANA": 9, + "LOOT_TYPE_MAX_POTION": 10, + "LOOT_TYPE_TRAINING_POINTS": 11, + "LOOT_TYPE_RECIPE": 12, + "LOOT_TYPE_CRAFTING_SLOT": 13, + "LOOT_TYPE_REAGENT": 14, + "LOOT_TYPE_PETSNACK": 15, + "LOOT_TYPE_GARDENING_XP": 16, + "LOOT_TYPE_PET_XP": 17, + "LOOT_TYPE_TREASURE_TABLE": 18, + "LOOT_TYPE_ARENA_POINTS": 19, + "LOOT_TYPE_ARENA_BONUS_POINTS": 20, + "LOOT_TYPE_GROUP": 21, + "LOOT_TYPE_FISHING_XP": 22, + "LOOT_TYPE_EVENT_CURRENCY_1": 24, + "LOOT_TYPE_EVENT_CURRENCY_2": 25, + "LOOT_TYPE_PVP_CURRENCY": 26, + "LOOT_TYPE_PVP_CURRENCY_BONUS": 27, + "LOOT_TYPE_PVP_TOURNEY_CURRENCY": 28, + "LOOT_TYPE_PVP_TOURNEY_CURRENCY_BONUS": 29, + "LOOT_TYPE_FURNITURE_ESSENCE": 30 + } }, - "m_enchantment": { - "type": "unsigned int", + "m_healthToAdd": { + "type": "int", "id": 1, "offset": 80, "flags": 31, @@ -515251,415 +287849,273 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 2217886818 - }, - "m_pipCost": { - "type": "class SharedPointer", - "id": 2, - "offset": 176, - "flags": 7, + "hash": 1370421596 + } + } + }, + "776472151": { + "name": "class ClientLeashBehavior*", + "bases": [ + "LeashBehavior", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 776472151, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3605704820 + "pointer": false, + "hash": 223437287 }, - "m_regularAdjust": { - "type": "int", - "id": 3, - "offset": 192, + "m_ownerGid": { + "type": "gid", + "id": 1, + "offset": 128, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1420453335 + "hash": 1765088663 }, - "m_magicSchoolID": { - "type": "unsigned int", - "id": 4, + "m_radius": { + "type": "float", + "id": 2, "offset": 136, - "flags": 7, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 893146499 + "hash": 989410271 }, - "m_accuracy": { - "type": "unsigned char", - "id": 5, - "offset": 132, - "flags": 7, + "m_angle": { + "type": "float", + "id": 3, + "offset": 140, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2273914939 + "hash": 878748702 }, - "m_treasureCard": { - "type": "bool", - "id": 6, - "offset": 197, + "m_leashType": { + "type": "enum LeashType", + "id": 4, + "offset": 144, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1764879128 + "hash": 2170708051, + "enum_options": { + "LLT_Rigid": 0, + "LLT_Elastic": 1 + } }, - "m_battleCard": { + "m_alwaysDisplay": { "type": "bool", - "id": 7, - "offset": 198, + "id": 5, + "offset": 161, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1332843753 - }, - "m_itemCard": { - "type": "bool", - "id": 8, - "offset": 199, - "flags": 7, + "hash": 2071781402 + } + } + }, + "1619990104": { + "name": "class DerbyAffectEffects*", + "bases": [ + "DerbyEffect", + "PropertyClass" + ], + "hash": 1619990104, + "properties": { + "m_buffType": { + "type": "enum DerbyTalentBuffType", + "id": 0, + "offset": 92, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1683654300 + "hash": 1149251982, + "enum_options": { + "Buff": 0, + "Debuff": 1, + "Neither": 2 + } }, - "m_sideBoard": { - "type": "bool", - "id": 9, - "offset": 200, - "flags": 7, + "m_kTarget": { + "type": "enum DerbyTargetType", + "id": 1, + "offset": 96, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1897838368 + "hash": 1807803351, + "enum_options": { + "kTargetInFront": 0, + "kTargetBehind": 1, + "kTargetFirst": 2, + "kTargetSelf": 3, + "kTargetAll": 4, + "kTargetLast": 5 + } }, - "m_spellID": { - "type": "unsigned int", - "id": 10, - "offset": 204, + "m_nDuration": { + "type": "int", + "id": 2, + "offset": 104, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1697483258 + "hash": 1110167982 }, - "m_leavesPlayWhenCastOverride": { - "type": "bool", - "id": 11, - "offset": 216, - "flags": 31, + "m_effectID": { + "type": "unsigned int", + "id": 3, + "offset": 88, + "flags": 24, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 874407398 + "hash": 2347630439 }, - "m_cloaked": { - "type": "bool", - "id": 12, - "offset": 196, - "flags": 7, + "m_imageFilename": { + "type": "std::string", + "id": 4, + "offset": 112, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 7349510 + "hash": 2813328063 }, - "m_enchantmentSpellIsItemCard": { - "type": "bool", - "id": 13, - "offset": 76, + "m_iconIndex": { + "type": "unsigned int", + "id": 5, + "offset": 144, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 531590701 + "hash": 1265133262 }, - "m_premutationSpellID": { - "type": "unsigned int", - "id": 14, - "offset": 112, - "flags": 31, + "m_soundOnActivate": { + "type": "std::string", + "id": 6, + "offset": 152, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1530256370 + "hash": 1956929714 }, - "m_enchantedThisCombat": { - "type": "bool", - "id": 15, - "offset": 77, - "flags": 31, + "m_soundOnTarget": { + "type": "std::string", + "id": 7, + "offset": 184, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1895738923 - }, - "m_paramOverrides": { - "type": "class SharedPointer", - "id": 16, - "offset": 224, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2061635599 - }, - "m_subEffectMeta": { - "type": "class SharedPointer", - "id": 17, - "offset": 240, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1944101106 + "hash": 3444214056 }, - "m_delayEnchantment": { - "type": "bool", - "id": 18, - "offset": 257, - "flags": 287, + "m_targetParticleEffect": { + "type": "std::string", + "id": 8, + "offset": 216, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 191336919 + "hash": 3048234723 }, - "m_PvE": { - "type": "bool", - "id": 19, - "offset": 264, - "flags": 287, + "m_overheadMessage": { + "type": "std::string", + "id": 9, + "offset": 248, + "flags": 8388639, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 269492350 + "hash": 1701018190 }, - "m_delayEnchantmentOrder": { - "type": "enum SpellEffect::kDelayOrder", - "id": 20, - "offset": 72, - "flags": 287, + "m_requirements": { + "type": "class RequirementList", + "id": 10, + "offset": 280, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2526055263, - "enum_options": { - "SpellEffect::kAnyOrder": 0, - "SpellEffect::kFirst": 1, - "SpellEffect::kSecond": 2 - } + "hash": 2840988582 }, - "m_roundAddedTC": { + "m_nNumBuffs": { "type": "int", - "id": 21, - "offset": 260, + "id": 11, + "offset": 376, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 112365451 + "hash": 1860427310 }, - "m_secondarySchoolID": { - "type": "unsigned int", - "id": 22, - "offset": 304, - "flags": 7, + "m_nNumDebuffs": { + "type": "int", + "id": 12, + "offset": 380, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2081206026 + "hash": 637090007 } } }, - "8699517": { - "name": "class CombatObserver*", + "776352732": { + "name": "class PhysicsSimMass*", "bases": [ "PropertyClass" ], - "hash": 8699517, + "hash": 776352732, "properties": {} }, - "1564927353": { - "name": "class ActiveMapQuestsCommon", - "bases": [ - "PropertyClass" - ], - "hash": 1564927353, - "properties": { - "m_zoneID": { - "type": "gid", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1229232257 - }, - "m_newQuestList": { - "type": "unsigned int", - "id": 1, - "offset": 80, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 394073349 - }, - "m_completedQuestList": { - "type": "unsigned int", - "id": 2, - "offset": 96, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 426641112 - } - } - }, - "402755916": { - "name": "class MinigameConfig*", - "bases": [ - "PropertyClass" - ], - "hash": 402755916, - "properties": { - "m_minigames": { - "type": "class MinigameInfo*", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2928955645 - } - } - }, - "8699613": { - "name": "class CombatObserver", + "776352636": { + "name": "class PhysicsSimMass", "bases": [ "PropertyClass" ], - "hash": 8699613, + "hash": 776352636, "properties": {} }, - "1565111275": { - "name": "class SharedPointer", - "bases": [ - "HousingBlobObject", - "PropertyClass" - ], - "hash": 1565111275, - "properties": { - "m_gameObjectTemplateID": { - "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1154586887, - "enum_options": { - "__DEFAULT": 0 - } - }, - "m_positionXY": { - "type": "unsigned int", - "id": 1, - "offset": 76, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1263476723, - "enum_options": { - "__DEFAULT": 0 - } - }, - "m_positionZ": { - "type": "float", - "id": 2, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 837995846, - "enum_options": { - "__DEFAULT": 0 - } - }, - "m_yaw": { - "type": "unsigned char", - "id": 3, - "offset": 84, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 904654625, - "enum_options": { - "__DEFAULT": 0 - } - }, - "m_extraData1": { - "type": "unsigned int", - "id": 4, - "offset": 88, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 693220060, - "enum_options": { - "__DEFAULT": 0 - } - }, - "m_customData": { - "type": "std::string", - "id": 5, - "offset": 96, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1638082768 - } - } - }, "1171932838": { "name": "class TreasureCardPosterBehavior*", "bases": [ @@ -515693,46 +288149,180 @@ } } }, - "403006079": { - "name": "class ClientRaidPortalBehavior*", + "2063706146": { + "name": "wchar_t", + "bases": [], + "hash": 2063706146, + "properties": {} + }, + "1680441227": { + "name": "class std::list >", + "bases": [], + "hash": 1680441227, + "properties": {} + }, + "2061408032": { + "name": "class ClientAnimatePipsCinematicAction*", "bases": [ - "RaidPortalBehavior", - "BehaviorInstance", + "AnimatePipsCinematicAction", + "ActorCinematicAction", + "CinematicAction", "PropertyClass" ], - "hash": 403006079, + "hash": 2061408032, "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", + "m_timeOffset": { + "type": "float", "id": 0, - "offset": 104, - "flags": 39, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 + "hash": 2237098605 }, - "m_active": { + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + }, + "m_sActorPrefix": { + "type": "std::string", + "id": 2, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3246317205 + }, + "m_fPerPipDelay": { + "type": "float", + "id": 3, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1466507836 + }, + "m_fRate": { + "type": "float", + "id": 4, + "offset": 156, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 883665801 + } + } + }, + "776399086": { + "name": "class SharedPointer", + "bases": [ + "ReqNumeric", + "Requirement", + "PropertyClass" + ], + "hash": 776399086, + "properties": { + "m_applyNOT": { "type": "bool", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1746328074, + "enum_options": { + "__DEFAULT": 0 + } + }, + "m_operator": { + "type": "enum Requirement::Operator", "id": 1, - "offset": 112, + "offset": 76, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2672792317, + "enum_options": { + "ROP_AND": 0, + "ROP_OR": 1, + "__DEFAULT": "ROP_AND" + } + }, + "m_numericValue": { + "type": "float", + "id": 2, + "offset": 80, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 239335471 + "hash": 521915239 + }, + "m_operatorType": { + "type": "enum ReqNumeric::OPERATOR_TYPE", + "id": 3, + "offset": 84, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2228122961, + "enum_options": { + "OPERATOR_UNKNOWN": 4294967295, + "OPERATOR_EQUALS": 0, + "OPERATOR_GREATER_THAN": 1, + "OPERATOR_LESS_THAN": 2, + "OPERATOR_GREATER_THAN_EQ": 3, + "OPERATOR_LESS_THAN_EQ": 4 + } + }, + "m_tournament": { + "type": "std::string", + "id": 4, + "offset": 88, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2799932264 } } }, - "1976304404": { - "name": "class PetItemBehaviorTemplate", + "1657910097": { + "name": "class Vector3D", + "bases": [], + "hash": 1657910097, + "properties": {} + }, + "2060232615": { + "name": "class RaidGateBehaviorTemplate", "bases": [ "BehaviorTemplate", "PropertyClass" ], - "hash": 1976304404, + "hash": 2060232615, "properties": { "m_behaviorName": { "type": "std::string", @@ -515745,43 +288335,587 @@ "pointer": false, "hash": 3130754092 }, - "m_primaryDyeToTexture": { - "type": "class PetDyeToTexture", + "m_itemAdjective": { + "type": "std::string", "id": 1, "offset": 120, "flags": 7, - "container": "List", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 1981853869 + "hash": 3066441529 }, - "m_secondaryDyeToTexture": { - "type": "class PetDyeToTexture", + "m_unlockCantrip": { + "type": "std::string", + "id": 2, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2731256472 + }, + "m_numberOfUnlockPlayers": { + "type": "int", + "id": 3, + "offset": 184, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 855609764 + }, + "m_activateState": { + "type": "std::string", + "id": 4, + "offset": 192, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2508957133 + }, + "m_enabledSeconds": { + "type": "int", + "id": 5, + "offset": 224, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2014197012 + }, + "m_linkedUnlockTemplateID": { + "type": "unsigned int", + "id": 6, + "offset": 228, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 952577945 + }, + "m_cooldownSeconds": { + "type": "unsigned int", + "id": 7, + "offset": 232, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1670668641 + }, + "m_overrideTitle": { + "type": "std::string", + "id": 8, + "offset": 240, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2739145597 + }, + "m_overrideDonateTitle": { + "type": "std::string", + "id": 9, + "offset": 272, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2976683384 + }, + "m_overrideChooseTitle": { + "type": "std::string", + "id": 10, + "offset": 304, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2732703966 + }, + "m_overrideFinalStepText": { + "type": "std::string", + "id": 11, + "offset": 336, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2712952390 + }, + "m_overrideNeedKeyText": { + "type": "std::string", + "id": 12, + "offset": 368, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2575667685 + }, + "m_isExtractor": { + "type": "bool", + "id": 13, + "offset": 400, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2105029547 + } + } + }, + "1172628385": { + "name": "class HousingMusicBehaviorTemplate*", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 1172628385, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + }, + "m_staticMusicFile": { + "type": "std::string", + "id": 1, + "offset": 120, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2845362532 + }, + "m_dynamicMusicFile": { + "type": "std::string", + "id": 2, + "offset": 152, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3205780097 + } + } + }, + "1640777701": { + "name": "class PolymorphBattlegroundsBehaviorTemplate*", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 1640777701, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + }, + "m_maxTempStartingPips": { + "type": "int", + "id": 1, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 997576222 + }, + "m_maxTempStartingPowerPips": { + "type": "int", "id": 2, + "offset": 124, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 31848011 + }, + "m_maxHandSize": { + "type": "int", + "id": 3, + "offset": 128, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1925169782 + }, + "m_pointValue": { + "type": "int", + "id": 4, + "offset": 132, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 61258881 + }, + "m_battleCardsForSale": { + "type": "class SharedPointer", + "id": 5, "offset": 136, "flags": 7, "container": "List", "dynamic": true, "singleton": false, - "pointer": false, - "hash": 1861913233 + "pointer": true, + "hash": 2232728892 }, - "m_patternToTexture": { - "type": "class PetDyeToTexture", - "id": 3, + "m_ratingInfo": { + "type": "class SharedPointer", + "id": 6, "offset": 152, "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2739486523 + }, + "m_levelUpIngredients": { + "type": "class Ingredient*", + "id": 7, + "offset": 176, + "flags": 7, "container": "List", "dynamic": true, "singleton": false, + "pointer": true, + "hash": 361958771 + }, + "m_levelUpCost": { + "type": "int", + "id": 8, + "offset": 192, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, "pointer": false, - "hash": 1245062405 + "hash": 1833544304 + } + } + }, + "2060059197": { + "name": "class TieredSpellRetiredSpellData*", + "bases": [ + "PropertyClass" + ], + "hash": 2060059197, + "properties": { + "m_spellName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2688485244 }, - "m_eGender": { - "type": "enum eGender", + "m_spellID": { + "type": "unsigned int", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1697483258 + }, + "m_totalShardsToUpgrade": { + "type": "int", + "id": 2, + "offset": 108, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 596508110 + } + } + }, + "1172622241": { + "name": "class HousingMusicBehaviorTemplate", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 1172622241, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + }, + "m_staticMusicFile": { + "type": "std::string", + "id": 1, + "offset": 120, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2845362532 + }, + "m_dynamicMusicFile": { + "type": "std::string", + "id": 2, + "offset": 152, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3205780097 + } + } + }, + "1631002337": { + "name": "class SharedPointer", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 1631002337, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + }, + "m_nHeadHandsModel": { + "type": "int", + "id": 1, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 998398489 + }, + "m_nHairModel": { + "type": "int", + "id": 2, + "offset": 124, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1415899069 + }, + "m_nHatModel": { + "type": "int", + "id": 3, + "offset": 128, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1927542998 + }, + "m_nTorsoModel": { + "type": "int", "id": 4, + "offset": 132, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1482459696 + }, + "m_nFeetModel": { + "type": "int", + "id": 5, + "offset": 136, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1832171389 + }, + "m_nWandModel": { + "type": "int", + "id": 6, + "offset": 140, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 132808131 + }, + "m_nSkinColor": { + "type": "int", + "id": 7, + "offset": 144, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 105291612 + }, + "m_nSkinDecal": { + "type": "int", + "id": 8, + "offset": 148, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 106107894 + }, + "m_nHairColor": { + "type": "int", + "id": 9, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1404048907 + }, + "m_nHatColor": { + "type": "int", + "id": 10, + "offset": 156, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1915692836 + }, + "m_nHatDecal": { + "type": "int", + "id": 11, + "offset": 160, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1916509118 + }, + "m_nTorsoColor": { + "type": "int", + "id": 12, + "offset": 164, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1470609534 + }, + "m_nTorsoDecal": { + "type": "int", + "id": 13, "offset": 168, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1471425816 + }, + "m_nTorsoDecal2": { + "type": "int", + "id": 14, + "offset": 172, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1309581098 + }, + "m_nFeetColor": { + "type": "int", + "id": 15, + "offset": 176, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1820321227 + }, + "m_nFeetDecal": { + "type": "int", + "id": 16, + "offset": 180, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1821137509 + }, + "m_eGender": { + "type": "enum eGender", + "id": 17, + "offset": 184, "flags": 2097159, "container": "Static", "dynamic": false, @@ -515796,8 +288930,8 @@ }, "m_eRace": { "type": "enum eRace", - "id": 5, - "offset": 172, + "id": 18, + "offset": 188, "flags": 2097159, "container": "Static", "dynamic": false, @@ -518584,563 +291718,25024 @@ "PP_Fairy_Fire": 1847789544, "MNT_Mustang_B": 1448793691, "PP_FireElfMyth": 1933609060, - "MNT_KT-BoatRide": 1560860110 + "MNT_KT-BoatRide": 1560860110, + "MNT_ShadowMagic": 2095978357, + "MNT_MardiGrasFloat_A": 1740674432, + "PP_ChineseNYSnake": 988201940, + "MNT_AnubisDog": 1995079956, + "PP_ShadowImp_A": 1604849432, + "PP_ShadowImp_B": 1604849438, + "PP_ShadowImp_C": 1604849436, + "MNT_ShadowMagic_B": 2093870965, + "MNT_ShadowMagic_C": 2093805429, + "Guest_KT_SE_Tritops_Warrior_I_01": 97516901, + "Guest_KT_SE_DS_Draconian_Model_01": 1916095079, + "Guest_KT_SE_Beetle_Scarab_C_01_L50": 1064004307, + "Guest_KT_SE_Roach_Warrior_C_03": 1872574203, + "Guest_KT_SE_Roach_Warrior_C_04": 1871918843, + "Guest_KT_SE_Roach_Warrior_C_05": 1871787771, + "Guest_KT_SE_Beetle_Scarab_C_01": 1353410759, + "Guest_KT_SE_Mander_Citizen_B_01_L50": 2044509396, + "Guest_KT_SE_Mander_CitizenF_B_01_L50": 164327682, + "Guest_KT_SE_Treant_Tormented_A_01": 1359800879, + "Guest_KT_SE_Treant_Base_A_01": 765512948, + "Guest_KT_SE_Mander_Citizen_F_D_05": 171244620, + "Guest_KT_SE_Mander_CitizenF_D_01": 163791037, + "Guest_KT_SE_Mander_CitizenF_D_02": 298008765, + "Guest_KT_SE_Mander_CitizenF_D_03": 432226493, + "Guest_KT_SE_Mander_CitizenF_D_04": 566444221, + "Guest_KT_SE_Mander_MummyF_A_01": 964349080, + "Guest_KT_SE_Mander_MummyF_A_02": 964480152, + "Guest_KT_SE_MC_Wraith_Model_01": 1101442118, + "Guest_KT_SE_Mander_CitizenF_B_02": 298000573, + "MNT_Wheelbarrow": 614248817, + "MNT_StubbornLlama": 221089074 + } + } + } + }, + "2059779662": { + "name": "class Font*", + "bases": [ + "PropertyClass" + ], + "hash": 2059779662, + "properties": {} + }, + "1172223090": { + "name": "class InteractiveMusicBehaviorTemplate", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 1172223090, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + }, + "m_titleText": { + "type": "std::string", + "id": 1, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2703025890 + }, + "m_instrumentGUI": { + "type": "std::string", + "id": 2, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1548997465 + }, + "m_useAlternateHighlighting": { + "type": "int", + "id": 3, + "offset": 184, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 275839645 + }, + "m_buttonSampleList": { + "type": "class SharedPointer", + "id": 4, + "offset": 192, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2024362058 + }, + "m_musicLoopList": { + "type": "class SharedPointer", + "id": 5, + "offset": 208, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2490589385 + } + } + }, + "777060197": { + "name": "class GardeningShedBehaviorBase", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 777060197, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_seedList": { + "type": "unsigned int", + "id": 1, + "offset": 112, + "flags": 65567, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 672751594 + } + } + }, + "1622997337": { + "name": "class ClientPlayGraphicOnActorAction*", + "bases": [ + "PlayGraphicOnActorAction", + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 1622997337, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + }, + "m_assetName": { + "type": "std::string", + "id": 2, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513131580 + }, + "m_bDontFlipActorYaw": { + "type": "bool", + "id": 3, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 632297791 + } + } + }, + "777039708": { + "name": "class PhysicsSimMassBox", + "bases": [ + "PhysicsSimMass", + "PropertyClass" + ], + "hash": 777039708, + "properties": {} + }, + "1621593527": { + "name": "class SharedPointer", + "bases": [ + "SwapShadowMaterialActorCinematicAction", + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 1621593527, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + } + } + }, + "2059894613": { + "name": "class Blob*", + "bases": [ + "BlobDefinition", + "PropertyClass" + ], + "hash": 2059894613, + "properties": { + "m_type": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1717601629 + }, + "m_subType": { + "type": "std::string", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3175052615 + }, + "m_versionNumber": { + "type": "unsigned int", + "id": 2, + "offset": 136, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1265259452 + }, + "m_packageNumber": { + "type": "int", + "id": 3, + "offset": 140, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1934060719 + }, + "m_associatedGID": { + "type": "gid", + "id": 4, + "offset": 144, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 148404716 + }, + "m_epochDays": { + "type": "unsigned int", + "id": 5, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1631557837 + }, + "m_data": { + "type": "class SharedPointer", + "id": 6, + "offset": 160, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 565926218 + } + } + }, + "1621009104": { + "name": "class NumItemInInventory*", + "bases": [ + "PropertyClass" + ], + "hash": 1621009104, + "properties": { + "m_itemTemplateID": { + "type": "unsigned int", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2190120133 + }, + "m_numItemInInventory": { + "type": "int", + "id": 1, + "offset": 76, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1351636478 + } + } + }, + "1173239748": { + "name": "class SharedPointer", + "bases": [ + "ServiceOptionBase", + "PropertyClass" + ], + "hash": 1173239748, + "properties": { + "m_serviceName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2206028813 + }, + "m_iconKey": { + "type": "std::string", + "id": 1, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2457138637 + }, + "m_displayKey": { + "type": "std::string", + "id": 2, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3023276954 + }, + "m_serviceIndex": { + "type": "unsigned int", + "id": 3, + "offset": 204, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2103126710 + }, + "m_forceInteract": { + "type": "bool", + "id": 4, + "offset": 200, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1705789564 + }, + "m_underwayText": { + "type": "std::string", + "id": 5, + "offset": 224, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3006734255 + }, + "m_questID": { + "type": "gid", + "id": 6, + "offset": 216, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1246549335 + } + } + }, + "1621206145": { + "name": "class std::list >", + "bases": [], + "hash": 1621206145, + "properties": {} + }, + "2060059517": { + "name": "class TieredSpellRetiredSpellData", + "bases": [ + "PropertyClass" + ], + "hash": 2060059517, + "properties": { + "m_spellName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2688485244 + }, + "m_spellID": { + "type": "unsigned int", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1697483258 + }, + "m_totalShardsToUpgrade": { + "type": "int", + "id": 2, + "offset": 108, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 596508110 + } + } + }, + "1172757019": { + "name": "class DdWinAnimMovePlayer", + "bases": [ + "WindowAnimation", + "PropertyClass" + ], + "hash": 1172757019, + "properties": { + "m_bUseDeepCopy": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 433380635 + }, + "m_facing": { + "type": "enum DoodleDoug::DdDirection", + "id": 1, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 591537519 + }, + "m_direction": { + "type": "enum DoodleDoug::DdDirection", + "id": 2, + "offset": 84, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1599953256 + }, + "m_fSpeed": { + "type": "float", + "id": 3, + "offset": 88, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 503609006 + }, + "m_currentLocation": { + "type": "class Vector3D", + "id": 4, + "offset": 92, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3670997758 + }, + "m_targetLocation": { + "type": "class Vector3D", + "id": 5, + "offset": 104, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2653859938 + }, + "m_myBoard": { + "type": "class DoodleDoug*", + "id": 6, + "offset": 120, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2212758093 + } + } + }, + "779748789": { + "name": "class ControlMultiLineEdit*", + "bases": [ + "ControlEdit", + "Window", + "PropertyClass" + ], + "hash": 779748789, + "properties": { + "m_sName": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306437263 + }, + "m_Children": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621225959 + }, + "m_Style": { + "type": "unsigned int", + "id": 2, + "offset": 152, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152, + "FORCE_NUMERIC": 16777216, + "FORCE_ALPHA": 268435456, + "FORCE_ALPHANUMERIC": 536870912, + "FORCE_INTEGER": 33554432, + "FORCE_POSITIVE": 67108864, + "FORCE_RANGE": 134217728 + } + }, + "m_Flags": { + "type": "unsigned int", + "id": 3, + "offset": 156, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } + }, + "m_Window": { + "type": "class Rect", + "id": 4, + "offset": 160, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3105139380 + }, + "m_fTargetAlpha": { + "type": "float", + "id": 5, + "offset": 212, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1809129834 + }, + "m_fDisabledAlpha": { + "type": "float", + "id": 6, + "offset": 216, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1389987675 + }, + "m_fAlpha": { + "type": "float", + "id": 7, + "offset": 208, + "flags": 65671, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 482130755 + }, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3623628394 + }, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2102211316 + }, + "m_sScript": { + "type": "std::string", + "id": 10, + "offset": 352, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1846695875 + }, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3389835433 + }, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547159940 + }, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513510520 + }, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3091503757 + }, + "m_sText": { + "type": "std::wstring", + "id": 16, + "offset": 584, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2102642960 + }, + "m_nMaxLength": { + "type": "int", + "id": 17, + "offset": 620, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1183478416 + }, + "m_bPassword": { + "type": "bool", + "id": 18, + "offset": 624, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1604468200 + }, + "m_bLog": { + "type": "bool", + "id": 19, + "offset": 625, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 221687287 + }, + "m_previousNext": { + "type": "bool", + "id": 20, + "offset": 627, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 858581071 + }, + "m_nMaxLogSize": { + "type": "int", + "id": 21, + "offset": 712, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 779573899 + }, + "m_bEditing": { + "type": "bool", + "id": 22, + "offset": 616, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1243218553 + }, + "m_bAllowPaste": { + "type": "bool", + "id": 23, + "offset": 626, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1129316721 + }, + "m_nLogPosition": { + "type": "int", + "id": 24, + "offset": 704, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1120160767 + }, + "m_nCursor": { + "type": "int", + "id": 25, + "offset": 716, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1876782150 + }, + "m_nEditBegin": { + "type": "int", + "id": 26, + "offset": 720, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1066592403 + }, + "m_nEditEnd": { + "type": "int", + "id": 27, + "offset": 724, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1560905669 + }, + "m_sSavedText": { + "type": "std::wstring", + "id": 28, + "offset": 728, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2197953283 + }, + "m_fCursorBlinkSpeed": { + "type": "float", + "id": 29, + "offset": 760, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2232655228 + }, + "m_fCursorTimer": { + "type": "float", + "id": 30, + "offset": 764, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1929942748 + }, + "m_bCursorBlink": { + "type": "bool", + "id": 31, + "offset": 768, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 683441507 + }, + "m_fMinRange": { + "type": "double", + "id": 32, + "offset": 776, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3079523396 + }, + "m_fMaxRange": { + "type": "double", + "id": 33, + "offset": 784, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3876551814 + }, + "m_nPrecision": { + "type": "int", + "id": 34, + "offset": 792, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1404974196 + }, + "m_bDeleteOnFirstChar": { + "type": "bool", + "id": 35, + "offset": 618, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 902105643 + } + } + }, + "779407445": { + "name": "class GuildAchievementData*", + "bases": [ + "PropertyClass" + ], + "hash": 779407445, + "properties": { + "m_guildName": { + "type": "unsigned int", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 778026115 + }, + "m_guildNameLocale": { + "type": "int", + "id": 1, + "offset": 76, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 656991008 + }, + "m_categoryID": { + "type": "unsigned int", + "id": 2, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1382795736 + }, + "m_time": { + "type": "unsigned int", + "id": 3, + "offset": 84, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 431286940 + }, + "m_count": { + "type": "unsigned int", + "id": 4, + "offset": 88, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1002373110 + } + } + }, + "778972366": { + "name": "class WizDisableItemStatEffectTemplate", + "bases": [ + "StatisticEffectTemplate", + "GameEffectTemplate", + "PropertyClass" + ], + "hash": 778972366, + "properties": { + "m_effectName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2029161513 + }, + "m_effectCategory": { + "type": "std::string", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1852673222 + }, + "m_sortOrder": { + "type": "int", + "id": 2, + "offset": 148, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1411218206 + }, + "m_duration": { + "type": "double", + "id": 3, + "offset": 192, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2727932435 + }, + "m_stackingCategories": { + "type": "std::string", + "id": 4, + "offset": 160, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1774497525 + }, + "m_isPersistent": { + "type": "bool", + "id": 5, + "offset": 153, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 923861920 + }, + "m_bIsOnPet": { + "type": "bool", + "id": 6, + "offset": 154, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 522593303 + }, + "m_isPublic": { + "type": "bool", + "id": 7, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1728439822 + }, + "m_visualEffectAddName": { + "type": "std::string", + "id": 8, + "offset": 200, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3382086694 + }, + "m_visualEffectRemoveName": { + "type": "std::string", + "id": 9, + "offset": 232, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1541697323 + }, + "m_onAddFunctorName": { + "type": "std::string", + "id": 10, + "offset": 280, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1561843107 + }, + "m_onRemoveFunctorName": { + "type": "std::string", + "id": 11, + "offset": 312, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2559017864 + }, + "m_stackingRule": { + "type": "enum STACKING_RULE", + "id": 12, + "offset": 144, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 431568889, + "enum_options": { + "STACKING_ALLOWED": 0, + "STACKING_NOSTACK": 1, + "STACKING_REPLACE": 2 + } + }, + "m_itemSlots": { + "type": "std::string", + "id": 13, + "offset": 360, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 3305858271 + } + } + }, + "1622622830": { + "name": "class ClientSetTopTeamCinematicAction*", + "bases": [ + "SetTopTeamCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 1622622830, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_interpDuration": { + "type": "float", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237711951 + } + } + }, + "2060310289": { + "name": "class SharedPointer", + "bases": [ + "Window", + "PropertyClass" + ], + "hash": 2060310289, + "properties": { + "m_sName": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306437263 + }, + "m_Children": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621225959 + }, + "m_Style": { + "type": "unsigned int", + "id": 2, + "offset": 152, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "SCALE_CHILDREN": 2, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "FOCUS_LOCKED": 64, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152 + } + }, + "m_Flags": { + "type": "unsigned int", + "id": 3, + "offset": 156, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } + }, + "m_Window": { + "type": "class Rect", + "id": 4, + "offset": 160, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3105139380 + }, + "m_fTargetAlpha": { + "type": "float", + "id": 5, + "offset": 212, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1809129834 + }, + "m_fDisabledAlpha": { + "type": "float", + "id": 6, + "offset": 216, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1389987675 + }, + "m_fAlpha": { + "type": "float", + "id": 7, + "offset": 208, + "flags": 65671, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 482130755 + }, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3623628394 + }, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2102211316 + }, + "m_sScript": { + "type": "std::string", + "id": 10, + "offset": 352, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1846695875 + }, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3389835433 + }, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547159940 + }, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513510520 + }, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3091503757 + }, + "m_alertSeconds": { + "type": "int", + "id": 16, + "offset": 588, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2008693409 + } + } + }, + "1173463435": { + "name": "class HideActorCinematicAction", + "bases": [ + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 1173463435, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + }, + "m_bHide": { + "type": "bool", + "id": 2, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 790850959 + }, + "m_evenWhileDead": { + "type": "bool", + "id": 3, + "offset": 121, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2100875368 + }, + "m_bMultiRound": { + "type": "bool", + "id": 4, + "offset": 122, + "flags": 263, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1821746440 + } + } + }, + "778677539": { + "name": "class TieredSpellConfig*", + "bases": [ + "PropertyClass" + ], + "hash": 778677539, + "properties": { + "m_tieredSpellGroupList": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1855207927 + } + } + }, + "1622169648": { + "name": "struct EquipSpellResponse", + "bases": [], + "hash": 1622169648, + "properties": {} + }, + "2060271807": { + "name": "class SharedPointer", + "bases": [ + "BaseEffectCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 2060271807, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_effectRel": { + "type": "enum BaseEffectCinematicAction::kEffectRelative", + "id": 1, + "offset": 80, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2978921287, + "enum_options": { + "kNone": 0, + "kSigil": 1, + "kTarget": 2, + "kSource": 3, + "kActor": 4 + } + }, + "m_graphic": { + "type": "std::string", + "id": 2, + "offset": 88, + "flags": 131079, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2592217913 + }, + "m_bUseOrientationOverride": { + "type": "bool", + "id": 3, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1088002894 + }, + "m_overrideOrientation": { + "type": "class Vector3D", + "id": 4, + "offset": 124, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3267199758 + }, + "m_bUseLocationOverride": { + "type": "bool", + "id": 5, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1767170875 + }, + "m_overrideLocation": { + "type": "class Vector3D", + "id": 6, + "offset": 108, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3776417691 + } + } + }, + "1204857755": { + "name": "class GameEffectTemplate", + "bases": [ + "PropertyClass" + ], + "hash": 1204857755, + "properties": { + "m_effectName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2029161513 + }, + "m_effectCategory": { + "type": "std::string", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1852673222 + }, + "m_sortOrder": { + "type": "int", + "id": 2, + "offset": 148, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1411218206 + }, + "m_duration": { + "type": "double", + "id": 3, + "offset": 192, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2727932435 + }, + "m_stackingCategories": { + "type": "std::string", + "id": 4, + "offset": 160, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1774497525 + }, + "m_isPersistent": { + "type": "bool", + "id": 5, + "offset": 153, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 923861920 + }, + "m_bIsOnPet": { + "type": "bool", + "id": 6, + "offset": 154, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 522593303 + }, + "m_isPublic": { + "type": "bool", + "id": 7, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1728439822 + }, + "m_visualEffectAddName": { + "type": "std::string", + "id": 8, + "offset": 200, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3382086694 + }, + "m_visualEffectRemoveName": { + "type": "std::string", + "id": 9, + "offset": 232, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1541697323 + }, + "m_onAddFunctorName": { + "type": "std::string", + "id": 10, + "offset": 280, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1561843107 + }, + "m_onRemoveFunctorName": { + "type": "std::string", + "id": 11, + "offset": 312, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2559017864 + }, + "m_stackingRule": { + "type": "enum STACKING_RULE", + "id": 12, + "offset": 144, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 431568889, + "enum_options": { + "STACKING_ALLOWED": 0, + "STACKING_NOSTACK": 1, + "STACKING_REPLACE": 2 + } + } + } + }, + "779056481": { + "name": "class SharedPointer", + "bases": [ + "ShowPipsCinematicAction", + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 779056481, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + }, + "m_newActorName": { + "type": "std::string", + "id": 2, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2029131039 + } + } + }, + "2061252289": { + "name": "class SharedPointer", + "bases": [ + "Window", + "PropertyClass" + ], + "hash": 2061252289, + "properties": { + "m_sName": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306437263 + }, + "m_Children": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621225959 + }, + "m_Style": { + "type": "unsigned int", + "id": 2, + "offset": 152, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "SCALE_CHILDREN": 2, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "FOCUS_LOCKED": 64, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152 + } + }, + "m_Flags": { + "type": "unsigned int", + "id": 3, + "offset": 156, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } + }, + "m_Window": { + "type": "class Rect", + "id": 4, + "offset": 160, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3105139380 + }, + "m_fTargetAlpha": { + "type": "float", + "id": 5, + "offset": 212, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1809129834 + }, + "m_fDisabledAlpha": { + "type": "float", + "id": 6, + "offset": 216, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1389987675 + }, + "m_fAlpha": { + "type": "float", + "id": 7, + "offset": 208, + "flags": 65671, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 482130755 + }, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3623628394 + }, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2102211316 + }, + "m_sScript": { + "type": "std::string", + "id": 10, + "offset": 352, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1846695875 + }, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3389835433 + }, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547159940 + }, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513510520 + }, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3091503757 + }, + "m_nBorderSize": { + "type": "int", + "id": 16, + "offset": 584, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2016376897 + }, + "m_TileSize": { + "type": "class Size", + "id": 17, + "offset": 588, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1169748581 + }, + "m_MapSize": { + "type": "class Size", + "id": 18, + "offset": 596, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1258934261 + }, + "m_nDefaultTile": { + "type": "int", + "id": 19, + "offset": 604, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1771469243 + }, + "m_Tiles": { + "type": "class SharedPointer", + "id": 20, + "offset": 608, + "flags": 135, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2276817757 + }, + "m_Map": { + "type": "class SharedPointer", + "id": 21, + "offset": 632, + "flags": 135, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1765608522 + }, + "m_nCursorOverTile": { + "type": "int", + "id": 22, + "offset": 664, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 590305648 + } + } + }, + "1192877320": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1192877320, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + } + } + }, + "1627590380": { + "name": "class PendingClassProjectFriendReward*", + "bases": [ + "PropertyClass" + ], + "hash": 1627590380, + "properties": {} + }, + "2060704661": { + "name": "class SavedSetting", + "bases": [ + "PropertyClass" + ], + "hash": 2060704661, + "properties": { + "m_settingName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2915007546 + }, + "m_settingValue": { + "type": "std::string", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3178360950 + } + } + }, + "1180450861": { + "name": "class ActorDialogBase*", + "bases": [ + "PropertyClass" + ], + "hash": 1180450861, + "properties": {} + }, + "1625345198": { + "name": "class SharedPointer", + "bases": [ + "ControlCheckBox", + "ControlButton", + "Window", + "PropertyClass" + ], + "hash": 1625345198, + "properties": { + "m_sName": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306437263 + }, + "m_Children": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621225959 + }, + "m_Style": { + "type": "unsigned int", + "id": 2, + "offset": 152, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152, + "EFFECT_SCALE": 67108864, + "LOCK_ICON_SIZE": 33554432, + "LEFT_TEXT": 536870912, + "NO_FIT_TEXT": 1073741824, + "CHECKBOX_TEXTOVERIMAGE": 16777216 + } + }, + "m_Flags": { + "type": "unsigned int", + "id": 3, + "offset": 156, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } + }, + "m_Window": { + "type": "class Rect", + "id": 4, + "offset": 160, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3105139380 + }, + "m_fTargetAlpha": { + "type": "float", + "id": 5, + "offset": 212, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1809129834 + }, + "m_fDisabledAlpha": { + "type": "float", + "id": 6, + "offset": 216, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1389987675 + }, + "m_fAlpha": { + "type": "float", + "id": 7, + "offset": 208, + "flags": 65671, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 482130755 + }, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3623628394 + }, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2102211316 + }, + "m_sScript": { + "type": "std::string", + "id": 10, + "offset": 352, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1846695875 + }, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3389835433 + }, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547159940 + }, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513510520 + }, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3091503757 + }, + "m_bToggle": { + "type": "bool", + "id": 16, + "offset": 608, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2071810903 + }, + "m_bButtonDown": { + "type": "bool", + "id": 17, + "offset": 609, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 840041705 + }, + "m_sLabel": { + "type": "std::wstring", + "id": 18, + "offset": 616, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2207009163 + }, + "m_labelOffset": { + "type": "class Rect", + "id": 19, + "offset": 832, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1990646723 + }, + "m_pButton": { + "type": "class SharedPointer", + "id": 20, + "offset": 656, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1543855875 + }, + "m_HotKey": { + "type": "unsigned int", + "id": 21, + "offset": 672, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1631553409 + }, + "m_Color": { + "type": "class Color", + "id": 22, + "offset": 676, + "flags": 262279, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1753714077 + }, + "m_bCursorOver": { + "type": "bool", + "id": 23, + "offset": 689, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 283981103 + }, + "m_bAbortWhenCursorNotOver": { + "type": "bool", + "id": 24, + "offset": 706, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 325405258 + }, + "m_bHotKeyDown": { + "type": "bool", + "id": 25, + "offset": 680, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 616989185 + }, + "m_fTime": { + "type": "float", + "id": 26, + "offset": 684, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 883746156 + }, + "m_bGreyed": { + "type": "bool", + "id": 27, + "offset": 688, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1566556053 + }, + "m_fMaxScale": { + "type": "float", + "id": 28, + "offset": 692, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2070186635 + }, + "m_fScaleSpeed": { + "type": "float", + "id": 29, + "offset": 696, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1457135702 + }, + "m_bUseDropShadow": { + "type": "bool", + "id": 30, + "offset": 704, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 93063037 + }, + "m_bUseOutline": { + "type": "bool", + "id": 31, + "offset": 705, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 744292994 + }, + "m_pGreyedState": { + "type": "class SharedPointer", + "id": 32, + "offset": 768, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2703352263 + }, + "m_pNormalState": { + "type": "class SharedPointer", + "id": 33, + "offset": 752, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1887909808 + }, + "m_pHighlightedState": { + "type": "class SharedPointer", + "id": 34, + "offset": 784, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2200177608 + }, + "m_pSelectedState": { + "type": "class SharedPointer", + "id": 35, + "offset": 800, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2266776432 + }, + "m_pDepressedState": { + "type": "class SharedPointer", + "id": 36, + "offset": 816, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1878185798 + }, + "m_nGroupID": { + "type": "int", + "id": 37, + "offset": 880, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 403966850 + }, + "m_bChecked": { + "type": "bool", + "id": 38, + "offset": 884, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 958955100 + }, + "m_pCheckedState": { + "type": "class SharedPointer", + "id": 39, + "offset": 888, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1210539694 + }, + "m_pCheckedGreyedState": { + "type": "class SharedPointer", + "id": 40, + "offset": 904, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2702030126 + }, + "m_pCheckedHighlightedState": { + "type": "class SharedPointer", + "id": 41, + "offset": 920, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1320097679 + }, + "m_pCheckedDepressedState": { + "type": "class SharedPointer", + "id": 42, + "offset": 936, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1609188685 + } + } + }, + "1177468303": { + "name": "class RitualObjectBehaviorTemplate", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 1177468303, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + }, + "m_nifStateList": { + "type": "std::string", + "id": 1, + "offset": 120, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2130407509 + }, + "m_requirementList": { + "type": "class RequirementList*", + "id": 2, + "offset": 136, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3581372079 + }, + "m_activatedResultList": { + "type": "class ResultList*", + "id": 3, + "offset": 144, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3738420568 + }, + "m_questEvent": { + "type": "std::string", + "id": 4, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1788127695 + }, + "m_singleUse": { + "type": "bool", + "id": 5, + "offset": 184, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2055323234 + }, + "m_removalTime": { + "type": "float", + "id": 6, + "offset": 224, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1385020188 + }, + "m_lootTable": { + "type": "std::string", + "id": 7, + "offset": 192, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2539512673 + }, + "m_useStates": { + "type": "bool", + "id": 8, + "offset": 228, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 992523892 + }, + "m_stateList": { + "type": "std::string", + "id": 9, + "offset": 232, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2944863128 + }, + "m_unlockFirst": { + "type": "bool", + "id": 10, + "offset": 248, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1802051527 + }, + "m_removedState": { + "type": "std::string", + "id": 11, + "offset": 256, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1831242670 + }, + "m_allowedSchoolsList": { + "type": "std::string", + "id": 12, + "offset": 288, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2565048282 + }, + "m_wrongSchoolResultList": { + "type": "class ResultList*", + "id": 13, + "offset": 320, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3155773624 + } + } + }, + "779748765": { + "name": "class ControlMultiLineEdit", + "bases": [ + "ControlEdit", + "Window", + "PropertyClass" + ], + "hash": 779748765, + "properties": { + "m_sName": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306437263 + }, + "m_Children": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621225959 + }, + "m_Style": { + "type": "unsigned int", + "id": 2, + "offset": 152, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152, + "FORCE_NUMERIC": 16777216, + "FORCE_ALPHA": 268435456, + "FORCE_ALPHANUMERIC": 536870912, + "FORCE_INTEGER": 33554432, + "FORCE_POSITIVE": 67108864, + "FORCE_RANGE": 134217728 + } + }, + "m_Flags": { + "type": "unsigned int", + "id": 3, + "offset": 156, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } + }, + "m_Window": { + "type": "class Rect", + "id": 4, + "offset": 160, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3105139380 + }, + "m_fTargetAlpha": { + "type": "float", + "id": 5, + "offset": 212, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1809129834 + }, + "m_fDisabledAlpha": { + "type": "float", + "id": 6, + "offset": 216, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1389987675 + }, + "m_fAlpha": { + "type": "float", + "id": 7, + "offset": 208, + "flags": 65671, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 482130755 + }, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3623628394 + }, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2102211316 + }, + "m_sScript": { + "type": "std::string", + "id": 10, + "offset": 352, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1846695875 + }, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3389835433 + }, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547159940 + }, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513510520 + }, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3091503757 + }, + "m_sText": { + "type": "std::wstring", + "id": 16, + "offset": 584, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2102642960 + }, + "m_nMaxLength": { + "type": "int", + "id": 17, + "offset": 620, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1183478416 + }, + "m_bPassword": { + "type": "bool", + "id": 18, + "offset": 624, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1604468200 + }, + "m_bLog": { + "type": "bool", + "id": 19, + "offset": 625, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 221687287 + }, + "m_previousNext": { + "type": "bool", + "id": 20, + "offset": 627, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 858581071 + }, + "m_nMaxLogSize": { + "type": "int", + "id": 21, + "offset": 712, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 779573899 + }, + "m_bEditing": { + "type": "bool", + "id": 22, + "offset": 616, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1243218553 + }, + "m_bAllowPaste": { + "type": "bool", + "id": 23, + "offset": 626, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1129316721 + }, + "m_nLogPosition": { + "type": "int", + "id": 24, + "offset": 704, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1120160767 + }, + "m_nCursor": { + "type": "int", + "id": 25, + "offset": 716, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1876782150 + }, + "m_nEditBegin": { + "type": "int", + "id": 26, + "offset": 720, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1066592403 + }, + "m_nEditEnd": { + "type": "int", + "id": 27, + "offset": 724, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1560905669 + }, + "m_sSavedText": { + "type": "std::wstring", + "id": 28, + "offset": 728, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2197953283 + }, + "m_fCursorBlinkSpeed": { + "type": "float", + "id": 29, + "offset": 760, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2232655228 + }, + "m_fCursorTimer": { + "type": "float", + "id": 30, + "offset": 764, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1929942748 + }, + "m_bCursorBlink": { + "type": "bool", + "id": 31, + "offset": 768, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 683441507 + }, + "m_fMinRange": { + "type": "double", + "id": 32, + "offset": 776, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3079523396 + }, + "m_fMaxRange": { + "type": "double", + "id": 33, + "offset": 784, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3876551814 + }, + "m_nPrecision": { + "type": "int", + "id": 34, + "offset": 792, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1404974196 + }, + "m_bDeleteOnFirstChar": { + "type": "bool", + "id": 35, + "offset": 618, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 902105643 + } + } + }, + "1624948453": { + "name": "class DdSprite*", + "bases": [ + "ControlSprite", + "Window", + "PropertyClass" + ], + "hash": 1624948453, + "properties": { + "m_sName": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306437263 + }, + "m_Children": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621225959 + }, + "m_Style": { + "type": "unsigned int", + "id": 2, + "offset": 152, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "SCALE_CHILDREN": 2, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "FOCUS_LOCKED": 64, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152 + } + }, + "m_Flags": { + "type": "unsigned int", + "id": 3, + "offset": 156, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648, + "ONE_SHOT": 8388608, + "FLIPPED_HORIZONTAL": 16777216, + "FLIPPED_VERTICAL": 33554432 + } + }, + "m_Window": { + "type": "class Rect", + "id": 4, + "offset": 160, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3105139380 + }, + "m_fTargetAlpha": { + "type": "float", + "id": 5, + "offset": 212, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1809129834 + }, + "m_fDisabledAlpha": { + "type": "float", + "id": 6, + "offset": 216, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1389987675 + }, + "m_fAlpha": { + "type": "float", + "id": 7, + "offset": 208, + "flags": 65671, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 482130755 + }, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3623628394 + }, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2102211316 + }, + "m_sScript": { + "type": "std::string", + "id": 10, + "offset": 352, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1846695875 + }, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3389835433 + }, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547159940 + }, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513510520 + }, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3091503757 + }, + "m_pMaterial": { + "type": "class SharedPointer", + "id": 16, + "offset": 592, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3479277078 + }, + "m_fRotation": { + "type": "float", + "id": 17, + "offset": 608, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1175400173 + }, + "m_Color": { + "type": "class Color", + "id": 18, + "offset": 584, + "flags": 262279, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1753714077 + }, + "m_textColor": { + "type": "class Color", + "id": 19, + "offset": 612, + "flags": 262279, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2528109250 + }, + "m_textComponent": { + "type": "class TextComponent", + "id": 20, + "offset": 616, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3491704390 + } + } + }, + "2061168380": { + "name": "class std::list >", + "bases": [], + "hash": 2061168380, + "properties": {} + }, + "1175767843": { + "name": "class CastleMagicBehaviorTemplate*", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 1175767843, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + }, + "m_castleMagicItemType": { + "type": "enum CastleMagicItemType", + "id": 1, + "offset": 120, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3772531839, + "enum_options": { + "CM_Lever": 0, + "CM_PlayerDetector": 1, + "CM_PressurePlate": 2, + "CM_StartDetector": 3, + "CM_Brazier": 4, + "CM_TextDetector": 5, + "CM_JumpDetector": 6, + "CM_MagicReflector": 7, + "CM_Timer": 8, + "CM_RandomReflector": 9, + "CM_MagicButton": 10, + "CM_Computer": 11, + "CM_FireOrbCreator": 12, + "CM_IceOrbCreator": 13, + "CM_StormOrbCreator": 14, + "CM_FireOrbDetector": 15, + "CM_IceOrbDetector": 16, + "CM_StormOrbDetector": 17, + "CM_Help": 18, + "CM_RoomDetector": 19, + "CM_Counter": 20, + "CM_ItemDetector": 21, + "CM_AnyItemPlayerDetector": 22, + "CM_SequenceReflector": 23, + "CM_FastTimer": 24, + "CM_CantripDetector": 25 + } + }, + "m_numberOfActions": { + "type": "int", + "id": 2, + "offset": 124, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1161288009 + }, + "m_actionStringKeys": { + "type": "std::string", + "id": 3, + "offset": 128, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2973138892 + } + } + }, + "779407485": { + "name": "class GuildAchievementData", + "bases": [ + "PropertyClass" + ], + "hash": 779407485, + "properties": { + "m_guildName": { + "type": "unsigned int", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 778026115 + }, + "m_guildNameLocale": { + "type": "int", + "id": 1, + "offset": 76, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 656991008 + }, + "m_categoryID": { + "type": "unsigned int", + "id": 2, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1382795736 + }, + "m_time": { + "type": "unsigned int", + "id": 3, + "offset": 84, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 431286940 + }, + "m_count": { + "type": "unsigned int", + "id": 4, + "offset": 88, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1002373110 + } + } + }, + "1624947813": { + "name": "class DdSprite", + "bases": [ + "ControlSprite", + "Window", + "PropertyClass" + ], + "hash": 1624947813, + "properties": { + "m_sName": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306437263 + }, + "m_Children": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621225959 + }, + "m_Style": { + "type": "unsigned int", + "id": 2, + "offset": 152, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "SCALE_CHILDREN": 2, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "FOCUS_LOCKED": 64, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152 + } + }, + "m_Flags": { + "type": "unsigned int", + "id": 3, + "offset": 156, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648, + "ONE_SHOT": 8388608, + "FLIPPED_HORIZONTAL": 16777216, + "FLIPPED_VERTICAL": 33554432 + } + }, + "m_Window": { + "type": "class Rect", + "id": 4, + "offset": 160, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3105139380 + }, + "m_fTargetAlpha": { + "type": "float", + "id": 5, + "offset": 212, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1809129834 + }, + "m_fDisabledAlpha": { + "type": "float", + "id": 6, + "offset": 216, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1389987675 + }, + "m_fAlpha": { + "type": "float", + "id": 7, + "offset": 208, + "flags": 65671, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 482130755 + }, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3623628394 + }, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2102211316 + }, + "m_sScript": { + "type": "std::string", + "id": 10, + "offset": 352, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1846695875 + }, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3389835433 + }, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547159940 + }, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513510520 + }, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3091503757 + }, + "m_pMaterial": { + "type": "class SharedPointer", + "id": 16, + "offset": 592, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3479277078 + }, + "m_fRotation": { + "type": "float", + "id": 17, + "offset": 608, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1175400173 + }, + "m_Color": { + "type": "class Color", + "id": 18, + "offset": 584, + "flags": 262279, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1753714077 + }, + "m_textColor": { + "type": "class Color", + "id": 19, + "offset": 612, + "flags": 262279, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2528109250 + }, + "m_textComponent": { + "type": "class TextComponent", + "id": 20, + "offset": 616, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3491704390 + } + } + }, + "1173979822": { + "name": "class TreasureCardPosterBehaviorBase", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1173979822, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_spellData": { + "type": "std::string", + "id": 1, + "offset": 128, + "flags": 575, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2688126101 + } + } + }, + "1624781959": { + "name": "class PetDropGameSettings", + "bases": [ + "PropertyClass" + ], + "hash": 1624781959, + "properties": { + "m_uPathID": { + "type": "unsigned int", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 876142428 + }, + "m_nFullnessScoreTarget": { + "type": "int", + "id": 1, + "offset": 76, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 293633463 + }, + "m_nTimeLimitInSeconds": { + "type": "int", + "id": 2, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1125165468 + }, + "m_nWeightChangeInSeconds": { + "type": "int", + "id": 3, + "offset": 84, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1881631612 + }, + "m_fDropsPerSecondAtStart": { + "type": "float", + "id": 4, + "offset": 88, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 752496235 + }, + "m_fDropsPerSecondAtEnd": { + "type": "float", + "id": 5, + "offset": 92, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1684240180 + }, + "m_fCatchDistance": { + "type": "float", + "id": 6, + "offset": 96, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 879620619 + }, + "m_fFreezeSpeed": { + "type": "float", + "id": 7, + "offset": 100, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1366477327 + }, + "m_fSpeedNormal": { + "type": "float", + "id": 8, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1038542199 + }, + "m_fSpeedBonus": { + "type": "float", + "id": 9, + "offset": 108, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1406294645 + }, + "m_fSpeedPenalty": { + "type": "float", + "id": 10, + "offset": 112, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1356789899 + }, + "m_fInitialItemHeight": { + "type": "float", + "id": 11, + "offset": 116, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2124739791 + }, + "m_fGroundHeight": { + "type": "float", + "id": 12, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2050728741 + }, + "m_fPetHeight": { + "type": "float", + "id": 13, + "offset": 124, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2094176095 + }, + "m_fJumpHeight": { + "type": "float", + "id": 14, + "offset": 128, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1742092018 + }, + "m_fMaxScaleIncrease": { + "type": "float", + "id": 15, + "offset": 132, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1883110517 + }, + "m_sItemHitGroundSound": { + "type": "std::string", + "id": 16, + "offset": 136, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1678384346 + }, + "m_sItemHitGroundFX": { + "type": "std::string", + "id": 17, + "offset": 168, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1855437679 + }, + "m_foodItems": { + "type": "class SharedPointer", + "id": 18, + "offset": 200, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2404207033 + } + } + }, + "1173951136": { + "name": "class PathObjectTemplate", + "bases": [ + "PropertyClass" + ], + "hash": 1173951136, + "properties": { + "m_id": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2090569797 + }, + "m_name": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1717359772 + }, + "m_nodeIDs": { + "type": "gid", + "id": 2, + "offset": 112, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1430564382 + } + } + }, + "2061407505": { + "name": "class std::list >", + "bases": [], + "hash": 2061407505, + "properties": {} + }, + "1173715365": { + "name": "class MadlibArgT,class std::allocator > const >*", + "bases": [ + "MadlibArg", + "PropertyClass" + ], + "hash": 1173715365, + "properties": { + "m_madlibToken": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3058682373 + }, + "m_madlibArgument": { + "type": "std::string", + "id": 1, + "offset": 112, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2376191783 + } + } + }, + "780479975": { + "name": "class GuildMuseumCuratorBehavior*", + "bases": [ + "GuildMuseumCuratorBehaviorBase", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 780479975, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + } + } + }, + "1625241486": { + "name": "class PolymorphEffect*", + "bases": [ + "GameEffectBase", + "PropertyClass" + ], + "hash": 1625241486, + "properties": { + "m_currentTickCount": { + "type": "double", + "id": 0, + "offset": 80, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2533274692 + }, + "m_effectNameID": { + "type": "unsigned int", + "id": 1, + "offset": 96, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1204067144 + }, + "m_bIsOnPet": { + "type": "bool", + "id": 2, + "offset": 73, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 522593303 + }, + "m_originatorID": { + "type": "gid", + "id": 3, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1131810019 + }, + "m_itemSlotID": { + "type": "unsigned int", + "id": 4, + "offset": 112, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1895747595 + }, + "m_internalID": { + "type": "int", + "id": 5, + "offset": 92, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1643137924 + }, + "m_endTime": { + "type": "unsigned int", + "id": 6, + "offset": 88, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 716479635 + }, + "m_templateID": { + "type": "unsigned int", + "id": 7, + "offset": 128, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1286746870 + } + } + }, + "2062292045": { + "name": "class Body", + "bases": [ + "PropertyClass" + ], + "hash": 2062292045, + "properties": { + "m_position": { + "type": "class Vector3D", + "id": 0, + "offset": 88, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3697900983 + }, + "m_pitch": { + "type": "float", + "id": 1, + "offset": 100, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 896371695 + }, + "m_roll": { + "type": "float", + "id": 2, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 310020272 + }, + "m_yaw": { + "type": "float", + "id": 3, + "offset": 108, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 357256328 + }, + "m_fHeight": { + "type": "float", + "id": 4, + "offset": 132, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 401539638 + }, + "m_scale": { + "type": "float", + "id": 5, + "offset": 112, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 899693439 + } + } + }, + "1625236366": { + "name": "class PolymorphEffect", + "bases": [ + "GameEffectBase", + "PropertyClass" + ], + "hash": 1625236366, + "properties": { + "m_currentTickCount": { + "type": "double", + "id": 0, + "offset": 80, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2533274692 + }, + "m_effectNameID": { + "type": "unsigned int", + "id": 1, + "offset": 96, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1204067144 + }, + "m_bIsOnPet": { + "type": "bool", + "id": 2, + "offset": 73, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 522593303 + }, + "m_originatorID": { + "type": "gid", + "id": 3, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1131810019 + }, + "m_itemSlotID": { + "type": "unsigned int", + "id": 4, + "offset": 112, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1895747595 + }, + "m_internalID": { + "type": "int", + "id": 5, + "offset": 92, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1643137924 + }, + "m_endTime": { + "type": "unsigned int", + "id": 6, + "offset": 88, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 716479635 + }, + "m_templateID": { + "type": "unsigned int", + "id": 7, + "offset": 128, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1286746870 + } + } + }, + "2062215196": { + "name": "class DeedBehavior*", + "bases": [ + "DeedBehaviorBase", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 2062215196, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_lotInstanceGID": { + "type": "gid", + "id": 1, + "offset": 120, + "flags": 33554495, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2010711536 + }, + "m_streetAddress": { + "type": "int", + "id": 2, + "offset": 112, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1809670519 + }, + "m_transferCoolDownTime": { + "type": "unsigned int", + "id": 3, + "offset": 128, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1616830022 + } + } + }, + "1175395902": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1175395902, + "properties": { + "m_hatchmakingPetTypesList": { + "type": "unsigned int", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1843158182 + } + } + }, + "784199461": { + "name": "class SharedPointer", + "bases": [ + "RecreateNPCActorCinematicAction", + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 784199461, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + } + } + }, + "2061588773": { + "name": "enum PetDerbyTrackTerrain", + "bases": [], + "hash": 2061588773, + "properties": {} + }, + "1174231616": { + "name": "class SharedPointer", + "bases": [ + "ConditionalSpellEffectRequirement", + "Requirement", + "PropertyClass" + ], + "hash": 1174231616, + "properties": { + "m_applyNOT": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1746328074, + "enum_options": { + "__DEFAULT": 0 + } + }, + "m_operator": { + "type": "enum Requirement::Operator", + "id": 1, + "offset": 76, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2672792317, + "enum_options": { + "ROP_AND": 0, + "ROP_OR": 1, + "__DEFAULT": "ROP_AND" + } + }, + "m_targetType": { + "type": "enum ConditionalSpellEffectRequirement::RequirementTarget", + "id": 2, + "offset": 80, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547737902, + "enum_options": { + "RT_Caster": 0, + "RT_Target": 1 + } + }, + "m_disposition": { + "type": "enum SpellEffect::kHangingDisposition", + "id": 3, + "offset": 88, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1904841031, + "enum_options": { + "SpellEffect::kBoth": 0, + "SpellEffect::kBeneficial": 1, + "SpellEffect::kHarmful": 2 + } + }, + "m_minCount": { + "type": "int", + "id": 4, + "offset": 92, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1486503815 + }, + "m_maxCount": { + "type": "int", + "id": 5, + "offset": 96, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 136048585 + } + } + }, + "781595162": { + "name": "class ChatHistory", + "bases": [ + "PropertyClass" + ], + "hash": 781595162, + "properties": {} + }, + "781471872": { + "name": "class AmbientSoundBehavior*", + "bases": [ + "SoundBehavior", + "AreaBehavior", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 781471872, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_radius": { + "type": "float", + "id": 1, + "offset": 116, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 989410271 + }, + "m_category": { + "type": "enum AudioCategory", + "id": 2, + "offset": 124, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2951251982, + "enum_options": { + "AudioCategory_Irrelevent": 0, + "AudioCategory_Accoustic": 1, + "AudioCategory_Noise": 2, + "AudioCategory_Music": 3 + } + }, + "m_exclusive": { + "type": "bool", + "id": 3, + "offset": 128, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 824383403 + }, + "m_playList": { + "type": "class PlayList", + "id": 4, + "offset": 176, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2061221957 + }, + "m_volume": { + "type": "float", + "id": 5, + "offset": 304, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1162855023 + }, + "m_loopCount": { + "type": "int", + "id": 6, + "offset": 308, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 865634717 + } + } + }, + "1625317695": { + "name": "class std::list >", + "bases": [], + "hash": 1625317695, + "properties": {} + }, + "2062089759": { + "name": "class PestBehavior*", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 2062089759, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + } + } + }, + "1174772918": { + "name": "class SharedPointer", + "bases": [ + "Requirement", + "PropertyClass" + ], + "hash": 1174772918, + "properties": { + "m_applyNOT": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1746328074, + "enum_options": { + "__DEFAULT": 0 + } + }, + "m_operator": { + "type": "enum Requirement::Operator", + "id": 1, + "offset": 76, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2672792317, + "enum_options": { + "ROP_AND": 0, + "ROP_OR": 1, + "__DEFAULT": "ROP_AND" + } + }, + "m_questName": { + "type": "std::string", + "id": 2, + "offset": 80, + "flags": 268435463, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1702112846, + "enum_options": { + "__BASECLASS": "QuestTemplate" + } + } + } + }, + "780614441": { + "name": "class AdvPvPLeaderboardEntry*", + "bases": [ + "PropertyClass" + ], + "hash": 780614441, + "properties": { + "m_entryID": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 16777279, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 525129815 + }, + "m_characterID": { + "type": "gid", + "id": 1, + "offset": 80, + "flags": 33554495, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 210498386 + }, + "m_characterSchool": { + "type": "unsigned int", + "id": 2, + "offset": 88, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1330015234 + }, + "m_nameKeys": { + "type": "unsigned int", + "id": 3, + "offset": 92, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1772225898 + }, + "m_level": { + "type": "int", + "id": 4, + "offset": 96, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 801285362 + }, + "m_wins": { + "type": "int", + "id": 5, + "offset": 100, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 219992347 + }, + "m_score": { + "type": "int", + "id": 6, + "offset": 104, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 809507734 + }, + "m_rank": { + "type": "int", + "id": 7, + "offset": 108, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 219803942 + }, + "m_sequenceID": { + "type": "unsigned int", + "id": 8, + "offset": 112, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1797256403 + }, + "m_visualBlob": { + "type": "std::string", + "id": 9, + "offset": 120, + "flags": 575, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1691722510 + } + } + }, + "780639017": { + "name": "class AdvPvPLeaderboardEntry", + "bases": [ + "PropertyClass" + ], + "hash": 780639017, + "properties": { + "m_entryID": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 16777279, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 525129815 + }, + "m_characterID": { + "type": "gid", + "id": 1, + "offset": 80, + "flags": 33554495, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 210498386 + }, + "m_characterSchool": { + "type": "unsigned int", + "id": 2, + "offset": 88, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1330015234 + }, + "m_nameKeys": { + "type": "unsigned int", + "id": 3, + "offset": 92, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1772225898 + }, + "m_level": { + "type": "int", + "id": 4, + "offset": 96, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 801285362 + }, + "m_wins": { + "type": "int", + "id": 5, + "offset": 100, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 219992347 + }, + "m_score": { + "type": "int", + "id": 6, + "offset": 104, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 809507734 + }, + "m_rank": { + "type": "int", + "id": 7, + "offset": 108, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 219803942 + }, + "m_sequenceID": { + "type": "unsigned int", + "id": 8, + "offset": 112, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1797256403 + }, + "m_visualBlob": { + "type": "std::string", + "id": 9, + "offset": 120, + "flags": 575, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1691722510 + } + } + }, + "1626785549": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1626785549, + "properties": { + "m_debugName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3553984419 + }, + "m_adjectiveList": { + "type": "std::string", + "id": 1, + "offset": 104, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 3195213318 + }, + "m_icon": { + "type": "std::string", + "id": 2, + "offset": 120, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1717182340 + }, + "m_iconBW": { + "type": "std::string", + "id": 3, + "offset": 152, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2047461085 + }, + "m_description": { + "type": "std::string", + "id": 4, + "offset": 184, + "flags": 8388639, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1649374815 + }, + "m_displayMode": { + "type": "enum ZTDisplayMode", + "id": 5, + "offset": 216, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2216526410, + "enum_options": { + "ZTDM_Shown": 0, + "ZTDM_Discoverable": 1, + "ZTDM_Hidden": 2 + } + }, + "m_storage": { + "type": "enum ZTStorage", + "id": 6, + "offset": 220, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2290454852, + "enum_options": { + "ZTS_Player": 0, + "ZTS_Zone": 1 + } + }, + "m_onEnable": { + "type": "class SharedPointer", + "id": 7, + "offset": 224, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2591736864 + }, + "m_onDiscover": { + "type": "class SharedPointer", + "id": 8, + "offset": 240, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2826026872 + }, + "m_onDisable": { + "type": "class SharedPointer", + "id": 9, + "offset": 256, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1860656717 + }, + "m_sourceID": { + "type": "gid", + "id": 10, + "offset": 272, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1134700470 + }, + "m_inZone": { + "type": "bool", + "id": 11, + "offset": 280, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 564535654 + }, + "m_enabled": { + "type": "bool", + "id": 12, + "offset": 281, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 504506718 + }, + "m_discovered": { + "type": "bool", + "id": 13, + "offset": 282, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2060478331 + } + } + }, + "2062224924": { + "name": "class DeckBehavior*", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 2062224924, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_spellList": { + "type": "class SharedPointer", + "id": 1, + "offset": 120, + "flags": 27, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2181913740 + }, + "m_serializedExclusionList": { + "type": "std::string", + "id": 2, + "offset": 152, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1502583517 + }, + "m_archmasterySchool": { + "type": "unsigned int", + "id": 3, + "offset": 184, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 485805784 + } + } + }, + "1175767651": { + "name": "class CastleMagicBehaviorTemplate", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 1175767651, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + }, + "m_castleMagicItemType": { + "type": "enum CastleMagicItemType", + "id": 1, + "offset": 120, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3772531839, + "enum_options": { + "CM_Lever": 0, + "CM_PlayerDetector": 1, + "CM_PressurePlate": 2, + "CM_StartDetector": 3, + "CM_Brazier": 4, + "CM_TextDetector": 5, + "CM_JumpDetector": 6, + "CM_MagicReflector": 7, + "CM_Timer": 8, + "CM_RandomReflector": 9, + "CM_MagicButton": 10, + "CM_Computer": 11, + "CM_FireOrbCreator": 12, + "CM_IceOrbCreator": 13, + "CM_StormOrbCreator": 14, + "CM_FireOrbDetector": 15, + "CM_IceOrbDetector": 16, + "CM_StormOrbDetector": 17, + "CM_Help": 18, + "CM_RoomDetector": 19, + "CM_Counter": 20, + "CM_ItemDetector": 21, + "CM_AnyItemPlayerDetector": 22, + "CM_SequenceReflector": 23, + "CM_FastTimer": 24, + "CM_CantripDetector": 25 + } + }, + "m_numberOfActions": { + "type": "int", + "id": 2, + "offset": 124, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1161288009 + }, + "m_actionStringKeys": { + "type": "std::string", + "id": 3, + "offset": 128, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2973138892 + } + } + }, + "1626093931": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1626093931, + "properties": { + "m_playersInZoneList": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1367168135 + } + } + }, + "2062280860": { + "name": "class DuelBehavior*", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 2062280860, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_pDuel": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1066616366 + }, + "m_sigilTemplateID": { + "type": "unsigned int", + "id": 2, + "offset": 128, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 269055310 + } + } + }, + "781471912": { + "name": "class AmbientSoundBehavior", + "bases": [ + "SoundBehavior", + "AreaBehavior", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 781471912, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_radius": { + "type": "float", + "id": 1, + "offset": 116, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 989410271 + }, + "m_category": { + "type": "enum AudioCategory", + "id": 2, + "offset": 124, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2951251982, + "enum_options": { + "AudioCategory_Irrelevent": 0, + "AudioCategory_Accoustic": 1, + "AudioCategory_Noise": 2, + "AudioCategory_Music": 3 + } + }, + "m_exclusive": { + "type": "bool", + "id": 3, + "offset": 128, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 824383403 + }, + "m_playList": { + "type": "class PlayList", + "id": 4, + "offset": 176, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2061221957 + }, + "m_volume": { + "type": "float", + "id": 5, + "offset": 304, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1162855023 + }, + "m_loopCount": { + "type": "int", + "id": 6, + "offset": 308, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 865634717 + } + } + }, + "1177075005": { + "name": "class SharedPointer", + "bases": [ + "RemoveAuraCinematicAction", + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 1177075005, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + } + } + }, + "1176480631": { + "name": "class SharedPointer", + "bases": [ + "CinematicAction", + "PropertyClass" + ], + "hash": 1176480631, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_interpDuration": { + "type": "float", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237711951 + } + } + }, + "1629914793": { + "name": "class SharedPointer", + "bases": [ + "AutobotMobAvoidance", + "PropertyClass" + ], + "hash": 1629914793, + "properties": {} + }, + "2062757079": { + "name": "class RaceAnimationSoundData", + "bases": [ + "PropertyClass" + ], + "hash": 2062757079, + "properties": { + "m_allAnimationSounds": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2646511094 + } + } + }, + "783298687": { + "name": "class DerbyTerrainEffect", + "bases": [ + "DerbyEffect", + "PropertyClass" + ], + "hash": 783298687, + "properties": { + "m_buffType": { + "type": "enum DerbyTalentBuffType", + "id": 0, + "offset": 92, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1149251982, + "enum_options": { + "Buff": 0, + "Debuff": 1, + "Neither": 2 + } + }, + "m_kTarget": { + "type": "enum DerbyTargetType", + "id": 1, + "offset": 96, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1807803351, + "enum_options": { + "kTargetInFront": 0, + "kTargetBehind": 1, + "kTargetFirst": 2, + "kTargetSelf": 3, + "kTargetAll": 4, + "kTargetLast": 5 + } + }, + "m_nDuration": { + "type": "int", + "id": 2, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1110167982 + }, + "m_effectID": { + "type": "unsigned int", + "id": 3, + "offset": 88, + "flags": 24, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2347630439 + }, + "m_imageFilename": { + "type": "std::string", + "id": 4, + "offset": 112, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2813328063 + }, + "m_iconIndex": { + "type": "unsigned int", + "id": 5, + "offset": 144, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1265133262 + }, + "m_soundOnActivate": { + "type": "std::string", + "id": 6, + "offset": 152, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1956929714 + }, + "m_soundOnTarget": { + "type": "std::string", + "id": 7, + "offset": 184, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3444214056 + }, + "m_targetParticleEffect": { + "type": "std::string", + "id": 8, + "offset": 216, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3048234723 + }, + "m_overheadMessage": { + "type": "std::string", + "id": 9, + "offset": 248, + "flags": 8388639, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1701018190 + }, + "m_requirements": { + "type": "class RequirementList", + "id": 10, + "offset": 280, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2840988582 + }, + "m_terrainType": { + "type": "enum PetDerbyTrackTerrain", + "id": 11, + "offset": 376, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2688629581, + "enum_options": { + "Cobblestone": 0, + "Water": 1, + "Grass": 2, + "Clay": 3, + "Dirt": 4, + "Mud": 5 + } + }, + "m_fEffectReapplyTime": { + "type": "float", + "id": 12, + "offset": 380, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1483497206 + }, + "m_effectsToApply": { + "type": "class SharedPointer", + "id": 13, + "offset": 384, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2042624288 + }, + "m_permanentEffects": { + "type": "class SharedPointer", + "id": 14, + "offset": 400, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2129171809 + } + } + }, + "1629131138": { + "name": "class FurnitureInfoBehavior", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1629131138, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + } + } + }, + "2062428618": { + "name": "class SharedPointer", + "bases": [ + "DerbyEffect", + "PropertyClass" + ], + "hash": 2062428618, + "properties": { + "m_buffType": { + "type": "enum DerbyTalentBuffType", + "id": 0, + "offset": 92, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1149251982, + "enum_options": { + "Buff": 0, + "Debuff": 1, + "Neither": 2 + } + }, + "m_kTarget": { + "type": "enum DerbyTargetType", + "id": 1, + "offset": 96, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1807803351, + "enum_options": { + "kTargetInFront": 0, + "kTargetBehind": 1, + "kTargetFirst": 2, + "kTargetSelf": 3, + "kTargetAll": 4, + "kTargetLast": 5 + } + }, + "m_nDuration": { + "type": "int", + "id": 2, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1110167982 + }, + "m_effectID": { + "type": "unsigned int", + "id": 3, + "offset": 88, + "flags": 24, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2347630439 + }, + "m_imageFilename": { + "type": "std::string", + "id": 4, + "offset": 112, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2813328063 + }, + "m_iconIndex": { + "type": "unsigned int", + "id": 5, + "offset": 144, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1265133262 + }, + "m_soundOnActivate": { + "type": "std::string", + "id": 6, + "offset": 152, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1956929714 + }, + "m_soundOnTarget": { + "type": "std::string", + "id": 7, + "offset": 184, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3444214056 + }, + "m_targetParticleEffect": { + "type": "std::string", + "id": 8, + "offset": 216, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3048234723 + }, + "m_overheadMessage": { + "type": "std::string", + "id": 9, + "offset": 248, + "flags": 8388639, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1701018190 + }, + "m_requirements": { + "type": "class RequirementList", + "id": 10, + "offset": 280, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2840988582 + }, + "m_moraleChanceActionMap": { + "type": "class MoraleModificationMap", + "id": 11, + "offset": 376, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1654668404 + } + } + }, + "1177003820": { + "name": "class SharedPointer", + "bases": [ + "Requirement", + "PropertyClass" + ], + "hash": 1177003820, + "properties": { + "m_applyNOT": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1746328074, + "enum_options": { + "__DEFAULT": 0 + } + }, + "m_operator": { + "type": "enum Requirement::Operator", + "id": 1, + "offset": 76, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2672792317, + "enum_options": { + "ROP_AND": 0, + "ROP_OR": 1, + "__DEFAULT": "ROP_AND" + } + } + } + }, + "782690799": { + "name": "class GuildMuseumCuratorBehaviorBase", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 782690799, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + } + } + }, + "1628314592": { + "name": "class GuildChatInfo*", + "bases": [ + "PropertyClass" + ], + "hash": 1628314592, + "properties": { + "m_characterGID": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 501688601 + }, + "m_packedName": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1805208228 + }, + "m_message": { + "type": "std::string", + "id": 2, + "offset": 112, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3411261376 + }, + "m_messageID": { + "type": "unsigned int", + "id": 3, + "offset": 144, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 924780703 + }, + "m_sendFilter": { + "type": "unsigned char", + "id": 4, + "offset": 148, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1518238304 + }, + "m_messageTime": { + "type": "unsigned int", + "id": 5, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1742920033 + } + } + }, + "2062401102": { + "name": "class Font", + "bases": [ + "PropertyClass" + ], + "hash": 2062401102, + "properties": {} + }, + "781697662": { + "name": "class SharedPointer", + "bases": [ + "ScrollablePopupButton", + "ControlPopupButton", + "ControlButton", + "Window", + "PropertyClass" + ], + "hash": 781697662, + "properties": { + "m_sName": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306437263 + }, + "m_Children": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621225959 + }, + "m_Style": { + "type": "unsigned int", + "id": 2, + "offset": 152, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152, + "POPDOWN_SIBLINGS": 67108864, + "DISABLE_CHILDREN": 134217728, + "HIDE_SIBLINGS": 268435456, + "POPUP_ON_HOVER": 536870912 + } + }, + "m_Flags": { + "type": "unsigned int", + "id": 3, + "offset": 156, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } + }, + "m_Window": { + "type": "class Rect", + "id": 4, + "offset": 160, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3105139380 + }, + "m_fTargetAlpha": { + "type": "float", + "id": 5, + "offset": 212, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1809129834 + }, + "m_fDisabledAlpha": { + "type": "float", + "id": 6, + "offset": 216, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1389987675 + }, + "m_fAlpha": { + "type": "float", + "id": 7, + "offset": 208, + "flags": 65671, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 482130755 + }, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3623628394 + }, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2102211316 + }, + "m_sScript": { + "type": "std::string", + "id": 10, + "offset": 352, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1846695875 + }, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3389835433 + }, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547159940 + }, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513510520 + }, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3091503757 + }, + "m_bToggle": { + "type": "bool", + "id": 16, + "offset": 608, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2071810903 + }, + "m_bButtonDown": { + "type": "bool", + "id": 17, + "offset": 609, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 840041705 + }, + "m_sLabel": { + "type": "std::wstring", + "id": 18, + "offset": 616, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2207009163 + }, + "m_labelOffset": { + "type": "class Rect", + "id": 19, + "offset": 832, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1990646723 + }, + "m_pButton": { + "type": "class SharedPointer", + "id": 20, + "offset": 656, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1543855875 + }, + "m_HotKey": { + "type": "unsigned int", + "id": 21, + "offset": 672, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1631553409 + }, + "m_Color": { + "type": "class Color", + "id": 22, + "offset": 676, + "flags": 262279, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1753714077 + }, + "m_bCursorOver": { + "type": "bool", + "id": 23, + "offset": 689, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 283981103 + }, + "m_bAbortWhenCursorNotOver": { + "type": "bool", + "id": 24, + "offset": 706, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 325405258 + }, + "m_bHotKeyDown": { + "type": "bool", + "id": 25, + "offset": 680, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 616989185 + }, + "m_fTime": { + "type": "float", + "id": 26, + "offset": 684, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 883746156 + }, + "m_bGreyed": { + "type": "bool", + "id": 27, + "offset": 688, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1566556053 + }, + "m_fMaxScale": { + "type": "float", + "id": 28, + "offset": 692, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2070186635 + }, + "m_fScaleSpeed": { + "type": "float", + "id": 29, + "offset": 696, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1457135702 + }, + "m_bUseDropShadow": { + "type": "bool", + "id": 30, + "offset": 704, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 93063037 + }, + "m_bUseOutline": { + "type": "bool", + "id": 31, + "offset": 705, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 744292994 + }, + "m_pGreyedState": { + "type": "class SharedPointer", + "id": 32, + "offset": 768, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2703352263 + }, + "m_pNormalState": { + "type": "class SharedPointer", + "id": 33, + "offset": 752, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1887909808 + }, + "m_pHighlightedState": { + "type": "class SharedPointer", + "id": 34, + "offset": 784, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2200177608 + }, + "m_pSelectedState": { + "type": "class SharedPointer", + "id": 35, + "offset": 800, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2266776432 + }, + "m_pDepressedState": { + "type": "class SharedPointer", + "id": 36, + "offset": 816, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1878185798 + }, + "m_bUp": { + "type": "bool", + "id": 37, + "offset": 880, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 269510906 + } + } + }, + "1628314597": { + "name": "class GuildChatInfo", + "bases": [ + "PropertyClass" + ], + "hash": 1628314597, + "properties": { + "m_characterGID": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 501688601 + }, + "m_packedName": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1805208228 + }, + "m_message": { + "type": "std::string", + "id": 2, + "offset": 112, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3411261376 + }, + "m_messageID": { + "type": "unsigned int", + "id": 3, + "offset": 144, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 924780703 + }, + "m_sendFilter": { + "type": "unsigned char", + "id": 4, + "offset": 148, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1518238304 + }, + "m_messageTime": { + "type": "unsigned int", + "id": 5, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1742920033 + } + } + }, + "1177303622": { + "name": "class ObstacleCoursePusherBehavior*", + "bases": [ + "ObstacleCourseObstaclePathBase", + "ObstacleCourseObstacleBehavior", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1177303622, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + } + } + }, + "2062516053": { + "name": "class Blob", + "bases": [ + "BlobDefinition", + "PropertyClass" + ], + "hash": 2062516053, + "properties": { + "m_type": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1717601629 + }, + "m_subType": { + "type": "std::string", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3175052615 + }, + "m_versionNumber": { + "type": "unsigned int", + "id": 2, + "offset": 136, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1265259452 + }, + "m_packageNumber": { + "type": "int", + "id": 3, + "offset": 140, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1934060719 + }, + "m_associatedGID": { + "type": "gid", + "id": 4, + "offset": 144, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 148404716 + }, + "m_epochDays": { + "type": "unsigned int", + "id": 5, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1631557837 + }, + "m_data": { + "type": "class SharedPointer", + "id": 6, + "offset": 160, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 565926218 + } + } + }, + "1177293382": { + "name": "class ObstacleCoursePusherBehavior", + "bases": [ + "ObstacleCourseObstaclePathBase", + "ObstacleCourseObstacleBehavior", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1177293382, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + } + } + }, + "783423260": { + "name": "class ObstacleCoursePendulumBehavior*", + "bases": [ + "ObstacleCourseObstacleBehavior", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 783423260, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + } + } + }, + "1629131906": { + "name": "class FurnitureInfoBehavior*", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1629131906, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + } + } + }, + "2062781655": { + "name": "class RaceAnimationSoundData*", + "bases": [ + "PropertyClass" + ], + "hash": 2062781655, + "properties": { + "m_allAnimationSounds": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2646511094 + } + } + }, + "1177458063": { + "name": "class RitualObjectBehaviorTemplate*", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 1177458063, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + }, + "m_nifStateList": { + "type": "std::string", + "id": 1, + "offset": 120, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2130407509 + }, + "m_requirementList": { + "type": "class RequirementList*", + "id": 2, + "offset": 136, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3581372079 + }, + "m_activatedResultList": { + "type": "class ResultList*", + "id": 3, + "offset": 144, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3738420568 + }, + "m_questEvent": { + "type": "std::string", + "id": 4, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1788127695 + }, + "m_singleUse": { + "type": "bool", + "id": 5, + "offset": 184, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2055323234 + }, + "m_removalTime": { + "type": "float", + "id": 6, + "offset": 224, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1385020188 + }, + "m_lootTable": { + "type": "std::string", + "id": 7, + "offset": 192, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2539512673 + }, + "m_useStates": { + "type": "bool", + "id": 8, + "offset": 228, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 992523892 + }, + "m_stateList": { + "type": "std::string", + "id": 9, + "offset": 232, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2944863128 + }, + "m_unlockFirst": { + "type": "bool", + "id": 10, + "offset": 248, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1802051527 + }, + "m_removedState": { + "type": "std::string", + "id": 11, + "offset": 256, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1831242670 + }, + "m_allowedSchoolsList": { + "type": "std::string", + "id": 12, + "offset": 288, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2565048282 + }, + "m_wrongSchoolResultList": { + "type": "class ResultList*", + "id": 13, + "offset": 320, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3155773624 + } + } + }, + "1629458853": { + "name": "class BalloonBaseWindow", + "bases": [ + "Window", + "PropertyClass" + ], + "hash": 1629458853, + "properties": { + "m_sName": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306437263 + }, + "m_Children": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621225959 + }, + "m_Style": { + "type": "unsigned int", + "id": 2, + "offset": 152, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "SCALE_CHILDREN": 2, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "FOCUS_LOCKED": 64, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152 + } + }, + "m_Flags": { + "type": "unsigned int", + "id": 3, + "offset": 156, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } + }, + "m_Window": { + "type": "class Rect", + "id": 4, + "offset": 160, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3105139380 + }, + "m_fTargetAlpha": { + "type": "float", + "id": 5, + "offset": 212, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1809129834 + }, + "m_fDisabledAlpha": { + "type": "float", + "id": 6, + "offset": 216, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1389987675 + }, + "m_fAlpha": { + "type": "float", + "id": 7, + "offset": 208, + "flags": 65671, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 482130755 + }, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3623628394 + }, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2102211316 + }, + "m_sScript": { + "type": "std::string", + "id": 10, + "offset": 352, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1846695875 + }, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3389835433 + }, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547159940 + }, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513510520 + }, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3091503757 + } + } + }, + "786651361": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 786651361, + "properties": { + "m_publicEffects": { + "type": "class SharedPointer", + "id": 0, + "offset": 88, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 3233153287 + }, + "m_myEffects": { + "type": "class SharedPointer", + "id": 1, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2650414414 + } + } + }, + "785304891": { + "name": "class BattleCardShopOption*", + "bases": [ + "ServiceOptionBase", + "PropertyClass" + ], + "hash": 785304891, + "properties": { + "m_serviceName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2206028813 + }, + "m_iconKey": { + "type": "std::string", + "id": 1, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2457138637 + }, + "m_displayKey": { + "type": "std::string", + "id": 2, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3023276954 + }, + "m_serviceIndex": { + "type": "unsigned int", + "id": 3, + "offset": 204, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2103126710 + }, + "m_forceInteract": { + "type": "bool", + "id": 4, + "offset": 200, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1705789564 + } + } + }, + "2068870381": { + "name": "class BadgeBehavior*", + "bases": [ + "BaseBadgeBehavior", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 2068870381, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_badgeData": { + "type": "std::string", + "id": 1, + "offset": 160, + "flags": 575, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3002588904 + } + } + }, + "1177927758": { + "name": "class EmojiData*", + "bases": [ + "PropertyClass" + ], + "hash": 1177927758, + "properties": { + "m_name": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1717359772 + }, + "m_icon": { + "type": "std::string", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1717182340 + }, + "m_shortcutList": { + "type": "std::string", + "id": 2, + "offset": 136, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 3408488691 + }, + "m_skinTone": { + "type": "unsigned int", + "id": 3, + "offset": 172, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2147803096 + } + } + }, + "785208611": { + "name": "class ContainerEffectInfo", + "bases": [ + "GameEffectInfo", + "PropertyClass" + ], + "hash": 785208611, + "properties": { + "m_effectName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2029161513 + } + } + }, + "1630660717": { + "name": "class GameEffectTimerTrigger", + "bases": [ + "PropertyClass" + ], + "hash": 1630660717, + "properties": { + "m_radius": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 989410271 + }, + "m_triggerT": { + "type": "float", + "id": 1, + "offset": 76, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2138083583 + } + } + }, + "2067755928": { + "name": "class ControlWidget", + "bases": [ + "Window", + "PropertyClass" + ], + "hash": 2067755928, + "properties": { + "m_sName": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306437263 + }, + "m_Children": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621225959 + }, + "m_Style": { + "type": "unsigned int", + "id": 2, + "offset": 152, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "CAN_MOVE": 4, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152, + "CAN_SIZE_HORIZONTALLY": 16777216, + "CAN_SIZE_VERTICALLY": 33554432, + "CAN_SIZE_WIDGET": 50331648 + } + }, + "m_Flags": { + "type": "unsigned int", + "id": 3, + "offset": 156, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } + }, + "m_Window": { + "type": "class Rect", + "id": 4, + "offset": 160, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3105139380 + }, + "m_fTargetAlpha": { + "type": "float", + "id": 5, + "offset": 212, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1809129834 + }, + "m_fDisabledAlpha": { + "type": "float", + "id": 6, + "offset": 216, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1389987675 + }, + "m_fAlpha": { + "type": "float", + "id": 7, + "offset": 208, + "flags": 65671, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 482130755 + }, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3623628394 + }, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2102211316 + }, + "m_sScript": { + "type": "std::string", + "id": 10, + "offset": 352, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1846695875 + }, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3389835433 + }, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547159940 + }, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513510520 + }, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3091503757 + }, + "m_pWidgetBackground": { + "type": "class SharedPointer", + "id": 16, + "offset": 584, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1642222607 + }, + "m_pTopLeftCornerMaterial": { + "type": "class SharedPointer", + "id": 17, + "offset": 600, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2210830717 + }, + "m_pTopRightCornerMaterial": { + "type": "class SharedPointer", + "id": 18, + "offset": 616, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2025381456 + }, + "m_pBottomLeftCornerMaterial": { + "type": "class SharedPointer", + "id": 19, + "offset": 632, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2960442335 + }, + "m_pBottomRightCornerMaterial": { + "type": "class SharedPointer", + "id": 20, + "offset": 648, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3140244722 + }, + "m_pBottomEdgeMaterial": { + "type": "class SharedPointer", + "id": 21, + "offset": 664, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2538880672 + }, + "m_pTopEdgeMaterial": { + "type": "class SharedPointer", + "id": 22, + "offset": 680, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2522199486 + }, + "m_pLeftEdgeMaterial": { + "type": "class SharedPointer", + "id": 23, + "offset": 696, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3154051542 + }, + "m_pRightEdgeMaterial": { + "type": "class SharedPointer", + "id": 24, + "offset": 712, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2818320265 + }, + "m_pCenterMaterial": { + "type": "class SharedPointer", + "id": 25, + "offset": 728, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1519560055 + }, + "m_MaximumSize": { + "type": "class Size", + "id": 26, + "offset": 744, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1781954165 + }, + "m_MinimumSize": { + "type": "class Size", + "id": 27, + "offset": 752, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2108593523 + } + } + }, + "1177809922": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1177809922, + "properties": { + "m_leagueType": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3327951024 + }, + "m_startingElo": { + "type": "int", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1459328550 + }, + "m_minElo": { + "type": "int", + "id": 2, + "offset": 108, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 713339390 + }, + "m_ranks": { + "type": "class SharedPointer", + "id": 3, + "offset": 112, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2563941952 + } + } + }, + "784806131": { + "name": "class std::list >", + "bases": [], + "hash": 784806131, + "properties": {} + }, + "1630619757": { + "name": "class GameEffectTimerTrigger*", + "bases": [ + "PropertyClass" + ], + "hash": 1630619757, + "properties": { + "m_radius": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 989410271 + }, + "m_triggerT": { + "type": "float", + "id": 1, + "offset": 76, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2138083583 + } + } + }, + "2065583660": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 2065583660, + "properties": { + "m_poiType": { + "type": "unsigned int", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2082807927 + }, + "m_icon": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1717182340 + }, + "m_objectID": { + "type": "gid", + "id": 2, + "offset": 112, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 257032380 + }, + "m_position": { + "type": "class Vector3D", + "id": 3, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3697900983 + }, + "m_yaw": { + "type": "float", + "id": 4, + "offset": 132, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 357256328 + } + } + }, + "1177768684": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1177768684, + "properties": { + "m_petTalentsTriggeredSpells": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2245729734 + } + } + }, + "2063706278": { + "name": "class SharedPointer", + "bases": [ + "ControlBar", + "Window", + "PropertyClass" + ], + "hash": 2063706278, + "properties": { + "m_sName": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306437263 + }, + "m_Children": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621225959 + }, + "m_Style": { + "type": "unsigned int", + "id": 2, + "offset": 152, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152, + "PROGRESS_UV": 16777216, + "PROGRESS_RTOL": 33554432 + } + }, + "m_Flags": { + "type": "unsigned int", + "id": 3, + "offset": 156, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } + }, + "m_Window": { + "type": "class Rect", + "id": 4, + "offset": 160, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3105139380 + }, + "m_fTargetAlpha": { + "type": "float", + "id": 5, + "offset": 212, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1809129834 + }, + "m_fDisabledAlpha": { + "type": "float", + "id": 6, + "offset": 216, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1389987675 + }, + "m_fAlpha": { + "type": "float", + "id": 7, + "offset": 208, + "flags": 65671, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 482130755 + }, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3623628394 + }, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2102211316 + }, + "m_sScript": { + "type": "std::string", + "id": 10, + "offset": 352, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1846695875 + }, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3389835433 + }, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547159940 + }, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513510520 + }, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3091503757 + }, + "m_fPosition": { + "type": "float", + "id": 16, + "offset": 584, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1808212114 + }, + "m_BaseColor": { + "type": "class Color", + "id": 17, + "offset": 588, + "flags": 262279, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2172251096 + }, + "m_BarColor": { + "type": "class Color", + "id": 18, + "offset": 592, + "flags": 262279, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2259916498 + }, + "m_bDisplayVertical": { + "type": "bool", + "id": 19, + "offset": 596, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1359621189 + }, + "m_pBarMaterial": { + "type": "class SharedPointer", + "id": 20, + "offset": 600, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2481929515 + }, + "m_pTopLeftMaterial": { + "type": "class SharedPointer", + "id": 21, + "offset": 616, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3248096916 + }, + "m_pCenterMaterial": { + "type": "class SharedPointer", + "id": 22, + "offset": 632, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1519560055 + }, + "m_pBottomRightMaterial": { + "type": "class SharedPointer", + "id": 23, + "offset": 648, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2932444745 + }, + "m_bTimed": { + "type": "bool", + "id": 24, + "offset": 696, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 260290536 + }, + "m_fTotalTime": { + "type": "float", + "id": 25, + "offset": 700, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1142609040 + }, + "m_fCurrentTime": { + "type": "float", + "id": 26, + "offset": 704, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2112044047 + }, + "m_bReverseDir": { + "type": "bool", + "id": 27, + "offset": 708, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 137983376 + } + } + }, + "2063706226": { + "name": "wchar_t*", + "bases": [], + "hash": 2063706226, + "properties": {} + }, + "785304851": { + "name": "class BattleCardShopOption", + "bases": [ + "ServiceOptionBase", + "PropertyClass" + ], + "hash": 785304851, + "properties": { + "m_serviceName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2206028813 + }, + "m_iconKey": { + "type": "std::string", + "id": 1, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2457138637 + }, + "m_displayKey": { + "type": "std::string", + "id": 2, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3023276954 + }, + "m_serviceIndex": { + "type": "unsigned int", + "id": 3, + "offset": 204, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2103126710 + }, + "m_forceInteract": { + "type": "bool", + "id": 4, + "offset": 200, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1705789564 + } + } + }, + "1630864175": { + "name": "class WizBangTemplate*", + "bases": [ + "PropertyClass" + ], + "hash": 1630864175, + "properties": { + "m_name": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1717359772 + }, + "m_source": { + "type": "std::string", + "id": 1, + "offset": 104, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2453267148 + } + } + }, + "1177915470": { + "name": "class EmojiData", + "bases": [ + "PropertyClass" + ], + "hash": 1177915470, + "properties": { + "m_name": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1717359772 + }, + "m_icon": { + "type": "std::string", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1717182340 + }, + "m_shortcutList": { + "type": "std::string", + "id": 2, + "offset": 136, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 3408488691 + }, + "m_skinTone": { + "type": "unsigned int", + "id": 3, + "offset": 172, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2147803096 + } + } + }, + "1630869295": { + "name": "class WizBangTemplate", + "bases": [ + "PropertyClass" + ], + "hash": 1630869295, + "properties": { + "m_name": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1717359772 + }, + "m_source": { + "type": "std::string", + "id": 1, + "offset": 104, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2453267148 + } + } + }, + "2065465110": { + "name": "class SharedPointer", + "bases": [ + "HidePolymorphFloatyTextCinematicAction", + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 2065465110, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + } + } + }, + "785676554": { + "name": "class MatchCostAdjustment", + "bases": [ + "PropertyClass" + ], + "hash": 785676554, + "properties": { + "m_matchAdjustmentType": { + "type": "enum MatchCostAdjustment::ADJUSTMENT_TYPE", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2305794521, + "enum_options": { + "SUBSCRIBER": 0, + "FREETOPLAY": 1, + "UNSET_MAX": 2 + } + } + } + }, + "2064808532": { + "name": "enum GOAL_STATUS", + "bases": [], + "hash": 2064808532, + "properties": {} + }, + "1178922238": { + "name": "class SharedPointer", + "bases": [ + "CinematicAction", + "PropertyClass" + ], + "hash": 1178922238, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_persona": { + "type": "class Persona*", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2350440768 + } + } + }, + "785490191": { + "name": "class ObstacleCourseCatapultBehaviorClient*", + "bases": [ + "ObstacleCourseCatapultBehavior", + "ObstacleCourseObstacleBehavior", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 785490191, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + } + } + }, + "1178790539": { + "name": "class QuestData*", + "bases": [ + "PropertyClass" + ], + "hash": 1178790539, + "properties": { + "m_name": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1717359772 + } + } + }, + "1633647808": { + "name": "class CrownShopItem", + "bases": [ + "PropertyClass" + ], + "hash": 1633647808, + "properties": { + "m_itemTemplateId": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1978701296 + }, + "m_itemFlags": { + "type": "int", + "id": 1, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1792726006 + }, + "m_goldCost": { + "type": "int", + "id": 2, + "offset": 92, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 444550297 + }, + "m_crownsCost": { + "type": "int", + "id": 3, + "offset": 96, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1592212719 + }, + "m_ticketCost": { + "type": "int", + "id": 4, + "offset": 100, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1199423063 + }, + "m_displayPriority": { + "type": "std::string", + "id": 5, + "offset": 112, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2036319987 + }, + "m_strikethruCrowns": { + "type": "int", + "id": 6, + "offset": 144, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1756077003 + }, + "m_strikethruGold": { + "type": "int", + "id": 7, + "offset": 148, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 664425781 + }, + "m_description": { + "type": "std::string", + "id": 8, + "offset": 208, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1649374815 + }, + "m_saleID": { + "type": "unsigned int", + "id": 9, + "offset": 240, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1150028607 + }, + "m_recommendIfOwned": { + "type": "bool", + "id": 10, + "offset": 152, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1653579929 + }, + "m_combatOnly": { + "type": "bool", + "id": 11, + "offset": 153, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 978499627 + }, + "m_noGift": { + "type": "bool", + "id": 12, + "offset": 154, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 760708954 + }, + "m_segReqsStatement": { + "type": "std::string", + "id": 13, + "offset": 160, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3526390858 + }, + "m_segReqsPoolsStatements": { + "type": "std::string", + "id": 14, + "offset": 192, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 3225359562 + } + } + }, + "1178778251": { + "name": "class QuestData", + "bases": [ + "PropertyClass" + ], + "hash": 1178778251, + "properties": { + "m_name": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1717359772 + } + } + }, + "1632018797": { + "name": "class SharedPointer", + "bases": [ + "LootInfo", + "LootInfoBase", + "PropertyClass" + ], + "hash": 1632018797, + "properties": { + "m_lootType": { + "type": "enum LootInfo::LOOT_TYPE", + "id": 0, + "offset": 72, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1591891442, + "enum_options": { + "LOOT_TYPE_NONE": 0, + "LOOT_TYPE_GOLD": 1, + "LOOT_TYPE_MANA": 2, + "LOOT_TYPE_ITEM": 3, + "LOOT_TYPE_TREASURE_CARD": 4, + "LOOT_TYPE_MAGIC_XP": 5, + "LOOT_TYPE_ADD_SPELL": 6, + "LOOT_TYPE_MAX_HEALTH": 7, + "LOOT_TYPE_MAX_GOLD": 8, + "LOOT_TYPE_MAX_MANA": 9, + "LOOT_TYPE_MAX_POTION": 10, + "LOOT_TYPE_TRAINING_POINTS": 11, + "LOOT_TYPE_RECIPE": 12, + "LOOT_TYPE_CRAFTING_SLOT": 13, + "LOOT_TYPE_REAGENT": 14, + "LOOT_TYPE_PETSNACK": 15, + "LOOT_TYPE_GARDENING_XP": 16, + "LOOT_TYPE_PET_XP": 17, + "LOOT_TYPE_TREASURE_TABLE": 18, + "LOOT_TYPE_ARENA_POINTS": 19, + "LOOT_TYPE_ARENA_BONUS_POINTS": 20, + "LOOT_TYPE_GROUP": 21, + "LOOT_TYPE_FISHING_XP": 22, + "LOOT_TYPE_EVENT_CURRENCY_1": 24, + "LOOT_TYPE_EVENT_CURRENCY_2": 25, + "LOOT_TYPE_PVP_CURRENCY": 26, + "LOOT_TYPE_PVP_CURRENCY_BONUS": 27, + "LOOT_TYPE_PVP_TOURNEY_CURRENCY": 28, + "LOOT_TYPE_PVP_TOURNEY_CURRENCY_BONUS": 29, + "LOOT_TYPE_FURNITURE_ESSENCE": 30 + } + }, + "m_manaAmount": { + "type": "int", + "id": 1, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1476254699 + } + } + }, + "786023501": { + "name": "class GuildAchievementDataList", + "bases": [ + "PropertyClass" + ], + "hash": 786023501, + "properties": { + "m_guildAchievementDataList": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1717126676 + } + } + }, + "1631591209": { + "name": "class SharedPointer", + "bases": [ + "DestroyShadowCreatureCinematicAction", + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 1631591209, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + } + } + }, + "2066707981": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 2066707981, + "properties": { + "m_displayName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2446900370 + }, + "m_tagName": { + "type": "std::string", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1542016824 + }, + "m_artifactList": { + "type": "class SharedPointer", + "id": 2, + "offset": 136, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 768482721 + } + } + }, + "1631431646": { + "name": "class UnlockTriggerList*", + "bases": [ + "PropertyClass" + ], + "hash": 1631431646, + "properties": { + "m_unlockTriggerList": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2206769498 + } + } + }, + "2065830996": { + "name": "class FriendlyPlayerInfo", + "bases": [ + "PropertyClass" + ], + "hash": 2065830996, + "properties": { + "m_characterGID": { + "type": "gid", + "id": 0, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 501688601 + }, + "m_nameBlob": { + "type": "std::string", + "id": 1, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3058206907 + }, + "m_schoolCode": { + "type": "unsigned int", + "id": 2, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2098672048 + }, + "m_zoneDisplayName": { + "type": "std::string", + "id": 3, + "offset": 112, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1962339438 + }, + "m_level": { + "type": "unsigned char", + "id": 4, + "offset": 144, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1438884808 + }, + "m_groupStatus": { + "type": "unsigned char", + "id": 5, + "offset": 145, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1901216097 + }, + "m_hasFreeChat": { + "type": "unsigned char", + "id": 6, + "offset": 160, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1722302062 + }, + "m_isOnline": { + "type": "bool", + "id": 7, + "offset": 161, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1681359252 + } + } + }, + "1179647209": { + "name": "class PvPCurrencyLootInfo*", + "bases": [ + "LootInfo", + "LootInfoBase", + "PropertyClass" + ], + "hash": 1179647209, + "properties": { + "m_lootType": { + "type": "enum LootInfo::LOOT_TYPE", + "id": 0, + "offset": 72, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1591891442, + "enum_options": { + "LOOT_TYPE_NONE": 0, + "LOOT_TYPE_GOLD": 1, + "LOOT_TYPE_MANA": 2, + "LOOT_TYPE_ITEM": 3, + "LOOT_TYPE_TREASURE_CARD": 4, + "LOOT_TYPE_MAGIC_XP": 5, + "LOOT_TYPE_ADD_SPELL": 6, + "LOOT_TYPE_MAX_HEALTH": 7, + "LOOT_TYPE_MAX_GOLD": 8, + "LOOT_TYPE_MAX_MANA": 9, + "LOOT_TYPE_MAX_POTION": 10, + "LOOT_TYPE_TRAINING_POINTS": 11, + "LOOT_TYPE_RECIPE": 12, + "LOOT_TYPE_CRAFTING_SLOT": 13, + "LOOT_TYPE_REAGENT": 14, + "LOOT_TYPE_PETSNACK": 15, + "LOOT_TYPE_GARDENING_XP": 16, + "LOOT_TYPE_PET_XP": 17, + "LOOT_TYPE_TREASURE_TABLE": 18, + "LOOT_TYPE_ARENA_POINTS": 19, + "LOOT_TYPE_ARENA_BONUS_POINTS": 20, + "LOOT_TYPE_GROUP": 21, + "LOOT_TYPE_FISHING_XP": 22, + "LOOT_TYPE_EVENT_CURRENCY_1": 24, + "LOOT_TYPE_EVENT_CURRENCY_2": 25, + "LOOT_TYPE_PVP_CURRENCY": 26, + "LOOT_TYPE_PVP_CURRENCY_BONUS": 27, + "LOOT_TYPE_PVP_TOURNEY_CURRENCY": 28, + "LOOT_TYPE_PVP_TOURNEY_CURRENCY_BONUS": 29, + "LOOT_TYPE_FURNITURE_ESSENCE": 30 + } + }, + "m_pvpCurrencyAmount": { + "type": "int", + "id": 1, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 649262863 + } + } + }, + "788111631": { + "name": "class ObstacleCourseCatapultBehaviorClient", + "bases": [ + "ObstacleCourseCatapultBehavior", + "ObstacleCourseObstacleBehavior", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 788111631, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + } + } + }, + "2065998829": { + "name": "class EquipmentTemplate", + "bases": [ + "CoreTemplate", + "PropertyClass" + ], + "hash": 2065998829, + "properties": { + "m_behaviors": { + "type": "class BehaviorTemplate*", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1197808594 + }, + "m_baseSlots": { + "type": "class EquipSlot*", + "id": 1, + "offset": 136, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 3098501161 + }, + "m_equipmentName": { + "type": "std::string", + "id": 2, + "offset": 96, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1920213140 + } + } + }, + "787200567": { + "name": "class SharedPointer", + "bases": [ + "SoundInfo", + "ClientObjectInfo", + "CoreObjectInfo", + "PropertyClass" + ], + "hash": 787200567, + "properties": { + "m_templateID.m_full": { + "type": "unsigned __int64", + "id": 0, + "offset": 72, + "flags": 33554439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 633907631 + }, + "m_nObjectID": { + "type": "unsigned int", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 748496927 + }, + "m_location": { + "type": "class Vector3D", + "id": 2, + "offset": 84, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2239683611 + }, + "m_orientation": { + "type": "class Vector3D", + "id": 3, + "offset": 96, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2344058766 + }, + "m_fScale": { + "type": "float", + "id": 4, + "offset": 108, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 503137701 + }, + "m_zoneTag": { + "type": "std::string", + "id": 5, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3405382643 + }, + "m_startState": { + "type": "std::string", + "id": 6, + "offset": 184, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2166880458 + }, + "m_overrideName": { + "type": "std::string", + "id": 7, + "offset": 120, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1990707228 + }, + "m_globalDynamic": { + "type": "bool", + "id": 8, + "offset": 116, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1951691017 + }, + "m_bUndetectable": { + "type": "bool", + "id": 9, + "offset": 216, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1907454341 + }, + "m_spawnRequirements": { + "type": "class SharedPointer", + "id": 10, + "offset": 224, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2309120870 + }, + "m_loadingType": { + "type": "enum CoreObjectInfo::LoadingType", + "id": 11, + "offset": 112, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3522422550, + "enum_options": { + "STATIC_CLIENT_SERVER": 0, + "STATIC_CLIENT": 1, + "STATIC_SERVER": 2, + "DYNAMIC_SERVER": 3 + } + }, + "m_radius": { + "type": "float", + "id": 12, + "offset": 256, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 989410271 + }, + "m_exclusive": { + "type": "bool", + "id": 13, + "offset": 260, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 824383403 + }, + "m_startActive": { + "type": "bool", + "id": 14, + "offset": 261, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2031339229 + }, + "m_category": { + "type": "enum AudioCategory", + "id": 15, + "offset": 264, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2951251982, + "enum_options": { + "AudioCategory_Irrelevent": 0, + "AudioCategory_Accoustic": 1, + "AudioCategory_Noise": 2, + "AudioCategory_Music": 3 + } + }, + "m_override": { + "type": "int", + "id": 16, + "offset": 268, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 136872410, + "enum_options": { + "OVR_RADIUS": 1, + "OVR_CATEGORY": 2, + "OVR_EXCLUSIVE": 4, + "OVR_SIGNATURE": 64, + "OVR_VOLUME": 8, + "OVR_LOOPCOUNT": 16, + "OVR_ACTIVE": 32, + "OVR_PLAYPROG": 128, + "OVR_PRIORITY": 256, + "OVR_PROGTIME": 512, + "OVR_FILTERSET": 1024 + } + }, + "m_enableReqs": { + "type": "class SharedPointer", + "id": 17, + "offset": 272, + "flags": 263, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3158020443 + }, + "m_volume": { + "type": "float", + "id": 18, + "offset": 288, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1162855023 + }, + "m_loopCount": { + "type": "int", + "id": 19, + "offset": 292, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 865634717 + }, + "m_trackFilenameList": { + "type": "std::string", + "id": 20, + "offset": 312, + "flags": 131079, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2531081709 + }, + "m_playList": { + "type": "class PlayListEntry*", + "id": 21, + "offset": 336, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 3907873161 + }, + "m_priority": { + "type": "int", + "id": 22, + "offset": 296, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1235205852 + }, + "m_progression": { + "type": "enum PlayList::Progression", + "id": 23, + "offset": 300, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3279400238, + "enum_options": { + "Sequence": 0, + "Random": 1, + "SequenceOnceOnly": 2, + "RandomNoRepeat": 3 + } + }, + "m_progressMin": { + "type": "float", + "id": 24, + "offset": 304, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1497550192 + }, + "m_progressMax": { + "type": "float", + "id": 25, + "offset": 308, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1497549938 + }, + "m_audioFilterSet": { + "type": "unsigned int", + "id": 26, + "offset": 360, + "flags": 33554439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 831339825 + }, + "m_clientTag": { + "type": "std::string", + "id": 27, + "offset": 368, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3409856790 + } + } + }, + "787002237": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 787002237, + "properties": { + "m_triggerAt": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2502995716 + }, + "m_onTimeLeft": { + "type": "class SharedPointer", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1587597651 + } + } + }, + "1632604581": { + "name": "class BalloonBaseWindow*", + "bases": [ + "Window", + "PropertyClass" + ], + "hash": 1632604581, + "properties": { + "m_sName": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306437263 + }, + "m_Children": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621225959 + }, + "m_Style": { + "type": "unsigned int", + "id": 2, + "offset": 152, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "SCALE_CHILDREN": 2, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "FOCUS_LOCKED": 64, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152 + } + }, + "m_Flags": { + "type": "unsigned int", + "id": 3, + "offset": 156, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } + }, + "m_Window": { + "type": "class Rect", + "id": 4, + "offset": 160, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3105139380 + }, + "m_fTargetAlpha": { + "type": "float", + "id": 5, + "offset": 212, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1809129834 + }, + "m_fDisabledAlpha": { + "type": "float", + "id": 6, + "offset": 216, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1389987675 + }, + "m_fAlpha": { + "type": "float", + "id": 7, + "offset": 208, + "flags": 65671, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 482130755 + }, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3623628394 + }, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2102211316 + }, + "m_sScript": { + "type": "std::string", + "id": 10, + "offset": 352, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1846695875 + }, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3389835433 + }, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547159940 + }, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513510520 + }, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3091503757 + } + } + }, + "1187022372": { + "name": "class SharedPointer", + "bases": [ + "PlayGraphicOnActorAction", + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 1187022372, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + }, + "m_assetName": { + "type": "std::string", + "id": 2, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513131580 + }, + "m_bDontFlipActorYaw": { + "type": "bool", + "id": 3, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 632297791 + } + } + }, + "1632405061": { + "name": "class SharedPointer", + "bases": [ + "LootInfo", + "LootInfoBase", + "PropertyClass" + ], + "hash": 1632405061, + "properties": { + "m_lootType": { + "type": "enum LootInfo::LOOT_TYPE", + "id": 0, + "offset": 72, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1591891442, + "enum_options": { + "LOOT_TYPE_NONE": 0, + "LOOT_TYPE_GOLD": 1, + "LOOT_TYPE_MANA": 2, + "LOOT_TYPE_ITEM": 3, + "LOOT_TYPE_TREASURE_CARD": 4, + "LOOT_TYPE_MAGIC_XP": 5, + "LOOT_TYPE_ADD_SPELL": 6, + "LOOT_TYPE_MAX_HEALTH": 7, + "LOOT_TYPE_MAX_GOLD": 8, + "LOOT_TYPE_MAX_MANA": 9, + "LOOT_TYPE_MAX_POTION": 10, + "LOOT_TYPE_TRAINING_POINTS": 11, + "LOOT_TYPE_RECIPE": 12, + "LOOT_TYPE_CRAFTING_SLOT": 13, + "LOOT_TYPE_REAGENT": 14, + "LOOT_TYPE_PETSNACK": 15, + "LOOT_TYPE_GARDENING_XP": 16, + "LOOT_TYPE_PET_XP": 17, + "LOOT_TYPE_TREASURE_TABLE": 18, + "LOOT_TYPE_ARENA_POINTS": 19, + "LOOT_TYPE_ARENA_BONUS_POINTS": 20, + "LOOT_TYPE_GROUP": 21, + "LOOT_TYPE_FISHING_XP": 22, + "LOOT_TYPE_EVENT_CURRENCY_1": 24, + "LOOT_TYPE_EVENT_CURRENCY_2": 25, + "LOOT_TYPE_PVP_CURRENCY": 26, + "LOOT_TYPE_PVP_CURRENCY_BONUS": 27, + "LOOT_TYPE_PVP_TOURNEY_CURRENCY": 28, + "LOOT_TYPE_PVP_TOURNEY_CURRENCY_BONUS": 29, + "LOOT_TYPE_FURNITURE_ESSENCE": 30 + } + }, + "m_goldAmount": { + "type": "int", + "id": 1, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 754429876 + } + } + }, + "2067627022": { + "name": "class ClassProjectActivity*", + "bases": [ + "PropertyClass" + ], + "hash": 2067627022, + "properties": { + "m_activityType": { + "type": "enum ClassProjectActivityType", + "id": 0, + "offset": 72, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1382301495, + "enum_options": { + "CPT_DefeatMob": 0, + "CPT_CatchFish": 1, + "CPT_CastTreasureCard": 2, + "CPT_DefeatPlayer": 3, + "CPT_ClaimCaptureArea": 4, + "CPT_UseInteractable": 5, + "CPT_CraftItem": 6, + "CPT_DailyQuest": 7, + "CPT_FeedPetSnack": 8, + "CPT_HelpTeam": 9, + "CPT_WinMatchBG": 10, + "CPT_LevelPolymorph": 11, + "CPT_HarvestPlant": 12, + "CPT_WinPetGame": 13, + "CPT_HatchPet": 14, + "CPT_PlayDerby": 15, + "CPT_FeedPetHappiness": 16, + "CPT_RateCastleToursHouse": 17, + "CPT_VisitCastleToursHouse": 18, + "CPT_RateOverallStitches": 19, + "CPT_RateEventStitches": 20, + "CPT_JudgesChoice": 21 + } + }, + "m_activityGoal": { + "type": "int", + "id": 1, + "offset": 112, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 103864010 + }, + "m_activityValue": { + "type": "int", + "id": 2, + "offset": 116, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1294496132 + }, + "m_activityLimit": { + "type": "int", + "id": 3, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1282925126 + }, + "m_activityDescription": { + "type": "std::string", + "id": 4, + "offset": 128, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3300318636 + }, + "m_adjectiveList": { + "type": "std::string", + "id": 5, + "offset": 80, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 3195213318 + } + } + }, + "938471743": { + "name": "class MorphingException*", + "bases": [ + "PropertyClass" + ], + "hash": 938471743, + "properties": { + "m_secondPetTemplateID": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 33554439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 89171206 + }, + "m_eggTemplateID": { + "type": "gid", + "id": 1, + "offset": 80, + "flags": 33554439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1463276884 + }, + "m_probability": { + "type": "float", + "id": 2, + "offset": 88, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 396611384 + } + } + }, + "1182498289": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1182498289, + "properties": {} + }, + "1632187140": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1632187140, + "properties": { + "m_timeList": { + "type": "class ParticipantParameter", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2652015083 + }, + "m_duelID.m_full": { + "type": "unsigned __int64", + "id": 1, + "offset": 88, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1024980477 + } + } + }, + "2067225463": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 2067225463, + "properties": { + "m_initialCombatSoundsList": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1746599966 + } + } + }, + "1181777421": { + "name": "class MountInteractableOption", + "bases": [ + "InteractableOption", + "ServiceOptionBase", + "PropertyClass" + ], + "hash": 1181777421, + "properties": { + "m_serviceName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2206028813 + }, + "m_iconKey": { + "type": "std::string", + "id": 1, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2457138637 + }, + "m_displayKey": { + "type": "std::string", + "id": 2, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3023276954 + }, + "m_serviceIndex": { + "type": "unsigned int", + "id": 3, + "offset": 204, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2103126710 + }, + "m_forceInteract": { + "type": "bool", + "id": 4, + "offset": 200, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1705789564 + }, + "m_optionIndex": { + "type": "int", + "id": 5, + "offset": 216, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 276287019 + } + } + }, + "787357606": { + "name": "class SharedPointer", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 787357606, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + }, + "m_maximumQuantity": { + "type": "int", + "id": 1, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1520461975 + } + } + }, + "1180990989": { + "name": "class MountInteractableOption*", + "bases": [ + "InteractableOption", + "ServiceOptionBase", + "PropertyClass" + ], + "hash": 1180990989, + "properties": { + "m_serviceName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2206028813 + }, + "m_iconKey": { + "type": "std::string", + "id": 1, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2457138637 + }, + "m_displayKey": { + "type": "std::string", + "id": 2, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3023276954 + }, + "m_serviceIndex": { + "type": "unsigned int", + "id": 3, + "offset": 204, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2103126710 + }, + "m_forceInteract": { + "type": "bool", + "id": 4, + "offset": 200, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1705789564 + }, + "m_optionIndex": { + "type": "int", + "id": 5, + "offset": 216, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 276287019 + } + } + }, + "1180594468": { + "name": "class DerbyMoraleByTerrainEffect*", + "bases": [ + "DerbyEffect", + "PropertyClass" + ], + "hash": 1180594468, + "properties": { + "m_buffType": { + "type": "enum DerbyTalentBuffType", + "id": 0, + "offset": 92, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1149251982, + "enum_options": { + "Buff": 0, + "Debuff": 1, + "Neither": 2 + } + }, + "m_kTarget": { + "type": "enum DerbyTargetType", + "id": 1, + "offset": 96, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1807803351, + "enum_options": { + "kTargetInFront": 0, + "kTargetBehind": 1, + "kTargetFirst": 2, + "kTargetSelf": 3, + "kTargetAll": 4, + "kTargetLast": 5 + } + }, + "m_nDuration": { + "type": "int", + "id": 2, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1110167982 + }, + "m_effectID": { + "type": "unsigned int", + "id": 3, + "offset": 88, + "flags": 24, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2347630439 + }, + "m_imageFilename": { + "type": "std::string", + "id": 4, + "offset": 112, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2813328063 + }, + "m_iconIndex": { + "type": "unsigned int", + "id": 5, + "offset": 144, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1265133262 + }, + "m_soundOnActivate": { + "type": "std::string", + "id": 6, + "offset": 152, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1956929714 + }, + "m_soundOnTarget": { + "type": "std::string", + "id": 7, + "offset": 184, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3444214056 + }, + "m_targetParticleEffect": { + "type": "std::string", + "id": 8, + "offset": 216, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3048234723 + }, + "m_overheadMessage": { + "type": "std::string", + "id": 9, + "offset": 248, + "flags": 8388639, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1701018190 + }, + "m_requirements": { + "type": "class RequirementList", + "id": 10, + "offset": 280, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2840988582 + } + } + }, + "2067737670": { + "name": "class HousingObjectWandContainer", + "bases": [ + "PropertyClass" + ], + "hash": 2067737670, + "properties": { + "m_displayID": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 65543, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1022427803 + } + } + }, + "1180455981": { + "name": "class ActorDialogBase", + "bases": [ + "PropertyClass" + ], + "hash": 1180455981, + "properties": {} + }, + "788411968": { + "name": "class GuildAchievementOption", + "bases": [ + "ServiceOptionBase", + "PropertyClass" + ], + "hash": 788411968, + "properties": { + "m_serviceName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2206028813 + }, + "m_iconKey": { + "type": "std::string", + "id": 1, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2457138637 + }, + "m_displayKey": { + "type": "std::string", + "id": 2, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3023276954 + }, + "m_serviceIndex": { + "type": "unsigned int", + "id": 3, + "offset": 204, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2103126710 + }, + "m_forceInteract": { + "type": "bool", + "id": 4, + "offset": 200, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1705789564 + } + } + }, + "1633557501": { + "name": "class SharedPointer", + "bases": [ + "LootInfo", + "LootInfoBase", + "PropertyClass" + ], + "hash": 1633557501, + "properties": { + "m_lootType": { + "type": "enum LootInfo::LOOT_TYPE", + "id": 0, + "offset": 72, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1591891442, + "enum_options": { + "LOOT_TYPE_NONE": 0, + "LOOT_TYPE_GOLD": 1, + "LOOT_TYPE_MANA": 2, + "LOOT_TYPE_ITEM": 3, + "LOOT_TYPE_TREASURE_CARD": 4, + "LOOT_TYPE_MAGIC_XP": 5, + "LOOT_TYPE_ADD_SPELL": 6, + "LOOT_TYPE_MAX_HEALTH": 7, + "LOOT_TYPE_MAX_GOLD": 8, + "LOOT_TYPE_MAX_MANA": 9, + "LOOT_TYPE_MAX_POTION": 10, + "LOOT_TYPE_TRAINING_POINTS": 11, + "LOOT_TYPE_RECIPE": 12, + "LOOT_TYPE_CRAFTING_SLOT": 13, + "LOOT_TYPE_REAGENT": 14, + "LOOT_TYPE_PETSNACK": 15, + "LOOT_TYPE_GARDENING_XP": 16, + "LOOT_TYPE_PET_XP": 17, + "LOOT_TYPE_TREASURE_TABLE": 18, + "LOOT_TYPE_ARENA_POINTS": 19, + "LOOT_TYPE_ARENA_BONUS_POINTS": 20, + "LOOT_TYPE_GROUP": 21, + "LOOT_TYPE_FISHING_XP": 22, + "LOOT_TYPE_EVENT_CURRENCY_1": 24, + "LOOT_TYPE_EVENT_CURRENCY_2": 25, + "LOOT_TYPE_PVP_CURRENCY": 26, + "LOOT_TYPE_PVP_CURRENCY_BONUS": 27, + "LOOT_TYPE_PVP_TOURNEY_CURRENCY": 28, + "LOOT_TYPE_PVP_TOURNEY_CURRENCY_BONUS": 29, + "LOOT_TYPE_FURNITURE_ESSENCE": 30 + } + }, + "m_itemID": { + "type": "gid", + "id": 1, + "offset": 88, + "flags": 33554463, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 569545460 + }, + "m_numItems": { + "type": "int", + "id": 2, + "offset": 96, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1588646284 + } + } + }, + "2067627046": { + "name": "class ClassProjectActivity", + "bases": [ + "PropertyClass" + ], + "hash": 2067627046, + "properties": { + "m_activityType": { + "type": "enum ClassProjectActivityType", + "id": 0, + "offset": 72, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1382301495, + "enum_options": { + "CPT_DefeatMob": 0, + "CPT_CatchFish": 1, + "CPT_CastTreasureCard": 2, + "CPT_DefeatPlayer": 3, + "CPT_ClaimCaptureArea": 4, + "CPT_UseInteractable": 5, + "CPT_CraftItem": 6, + "CPT_DailyQuest": 7, + "CPT_FeedPetSnack": 8, + "CPT_HelpTeam": 9, + "CPT_WinMatchBG": 10, + "CPT_LevelPolymorph": 11, + "CPT_HarvestPlant": 12, + "CPT_WinPetGame": 13, + "CPT_HatchPet": 14, + "CPT_PlayDerby": 15, + "CPT_FeedPetHappiness": 16, + "CPT_RateCastleToursHouse": 17, + "CPT_VisitCastleToursHouse": 18, + "CPT_RateOverallStitches": 19, + "CPT_RateEventStitches": 20, + "CPT_JudgesChoice": 21 + } + }, + "m_activityGoal": { + "type": "int", + "id": 1, + "offset": 112, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 103864010 + }, + "m_activityValue": { + "type": "int", + "id": 2, + "offset": 116, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1294496132 + }, + "m_activityLimit": { + "type": "int", + "id": 3, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1282925126 + }, + "m_activityDescription": { + "type": "std::string", + "id": 4, + "offset": 128, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3300318636 + }, + "m_adjectiveList": { + "type": "std::string", + "id": 5, + "offset": 80, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 3195213318 + } + } + }, + "1180594474": { + "name": "class DerbyMoraleByTerrainEffect", + "bases": [ + "DerbyEffect", + "PropertyClass" + ], + "hash": 1180594474, + "properties": { + "m_buffType": { + "type": "enum DerbyTalentBuffType", + "id": 0, + "offset": 92, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1149251982, + "enum_options": { + "Buff": 0, + "Debuff": 1, + "Neither": 2 + } + }, + "m_kTarget": { + "type": "enum DerbyTargetType", + "id": 1, + "offset": 96, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1807803351, + "enum_options": { + "kTargetInFront": 0, + "kTargetBehind": 1, + "kTargetFirst": 2, + "kTargetSelf": 3, + "kTargetAll": 4, + "kTargetLast": 5 + } + }, + "m_nDuration": { + "type": "int", + "id": 2, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1110167982 + }, + "m_effectID": { + "type": "unsigned int", + "id": 3, + "offset": 88, + "flags": 24, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2347630439 + }, + "m_imageFilename": { + "type": "std::string", + "id": 4, + "offset": 112, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2813328063 + }, + "m_iconIndex": { + "type": "unsigned int", + "id": 5, + "offset": 144, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1265133262 + }, + "m_soundOnActivate": { + "type": "std::string", + "id": 6, + "offset": 152, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1956929714 + }, + "m_soundOnTarget": { + "type": "std::string", + "id": 7, + "offset": 184, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3444214056 + }, + "m_targetParticleEffect": { + "type": "std::string", + "id": 8, + "offset": 216, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3048234723 + }, + "m_overheadMessage": { + "type": "std::string", + "id": 9, + "offset": 248, + "flags": 8388639, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1701018190 + }, + "m_requirements": { + "type": "class RequirementList", + "id": 10, + "offset": 280, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2840988582 + } + } + }, + "795152782": { + "name": "class CombatResolver*", + "bases": [ + "PropertyClass" + ], + "hash": 795152782, + "properties": { + "m_bGlobalEffect": { + "type": "bool", + "id": 0, + "offset": 112, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1403478355 + }, + "m_globalEffect": { + "type": "class SharedPointer", + "id": 1, + "offset": 120, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 967055913 + }, + "m_battlefieldEffects": { + "type": "class SharedPointer", + "id": 2, + "offset": 136, + "flags": 31, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1245973515 + } + } + }, + "1636895196": { + "name": "class BattlegroundPOI*", + "bases": [ + "PropertyClass" + ], + "hash": 1636895196, + "properties": { + "m_poiList": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 3936595873 + } + } + }, + "2067737680": { + "name": "class HousingObjectWandContainer*", + "bases": [ + "PropertyClass" + ], + "hash": 2067737680, + "properties": { + "m_displayID": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 65543, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1022427803 + } + } + }, + "792030105": { + "name": "class ClientFlareBacklashEffectCinematicAction*", + "bases": [ + "FlareBacklashEffectCinematicAction", + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 792030105, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + } + } + }, + "1636331801": { + "name": "class CraftingSlotLootInfo*", + "bases": [ + "LootInfo", + "LootInfoBase", + "PropertyClass" + ], + "hash": 1636331801, + "properties": { + "m_lootType": { + "type": "enum LootInfo::LOOT_TYPE", + "id": 0, + "offset": 72, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1591891442, + "enum_options": { + "LOOT_TYPE_NONE": 0, + "LOOT_TYPE_GOLD": 1, + "LOOT_TYPE_MANA": 2, + "LOOT_TYPE_ITEM": 3, + "LOOT_TYPE_TREASURE_CARD": 4, + "LOOT_TYPE_MAGIC_XP": 5, + "LOOT_TYPE_ADD_SPELL": 6, + "LOOT_TYPE_MAX_HEALTH": 7, + "LOOT_TYPE_MAX_GOLD": 8, + "LOOT_TYPE_MAX_MANA": 9, + "LOOT_TYPE_MAX_POTION": 10, + "LOOT_TYPE_TRAINING_POINTS": 11, + "LOOT_TYPE_RECIPE": 12, + "LOOT_TYPE_CRAFTING_SLOT": 13, + "LOOT_TYPE_REAGENT": 14, + "LOOT_TYPE_PETSNACK": 15, + "LOOT_TYPE_GARDENING_XP": 16, + "LOOT_TYPE_PET_XP": 17, + "LOOT_TYPE_TREASURE_TABLE": 18, + "LOOT_TYPE_ARENA_POINTS": 19, + "LOOT_TYPE_ARENA_BONUS_POINTS": 20, + "LOOT_TYPE_GROUP": 21, + "LOOT_TYPE_FISHING_XP": 22, + "LOOT_TYPE_EVENT_CURRENCY_1": 24, + "LOOT_TYPE_EVENT_CURRENCY_2": 25, + "LOOT_TYPE_PVP_CURRENCY": 26, + "LOOT_TYPE_PVP_CURRENCY_BONUS": 27, + "LOOT_TYPE_PVP_TOURNEY_CURRENCY": 28, + "LOOT_TYPE_PVP_TOURNEY_CURRENCY_BONUS": 29, + "LOOT_TYPE_FURNITURE_ESSENCE": 30 + } + }, + "m_delta": { + "type": "int", + "id": 1, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 791787588 + } + } + }, + "790058144": { + "name": "class AnimationSetManager*", + "bases": [ + "PropertyClass" + ], + "hash": 790058144, + "properties": { + "m_sets": { + "type": "class AnimationSet*", + "id": 0, + "offset": 80, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": true, + "pointer": true, + "hash": 809977903 + } + } + }, + "1634327279": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1634327279, + "properties": { + "m_labelKey": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3291650660 + }, + "m_tipID": { + "type": "gid", + "id": 1, + "offset": 104, + "flags": 33554439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 810892562 + }, + "m_children": { + "type": "class HelpChatElement*", + "id": 2, + "offset": 112, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1958485829 + } + } + }, + "1181658755": { + "name": "class DdWinAnimMoveDiggingMob*", + "bases": [ + "DdWinAnimMoveMob", + "WinAnimMoveToLocationSpeed", + "WinAnimMoveToLocation", + "WindowAnimation", + "PropertyClass" + ], + "hash": 1181658755, + "properties": { + "m_bUseDeepCopy": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 433380635 + }, + "m_targetLocation": { + "type": "class Vector3D", + "id": 1, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2653859938 + }, + "m_fSpeed": { + "type": "float", + "id": 2, + "offset": 96, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 503609006 + }, + "m_facing": { + "type": "enum DoodleDoug::DdDirection", + "id": 3, + "offset": 112, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 591537519 + }, + "m_cameFrom": { + "type": "enum DoodleDoug::DdDirection", + "id": 4, + "offset": 116, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1071209393 + }, + "m_nextWaypoint": { + "type": "class Point", + "id": 5, + "offset": 120, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2346187452 + }, + "m_myBoard": { + "type": "class DoodleDoug*", + "id": 6, + "offset": 136, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2212758093 + } + } + }, + "790017304": { + "name": "class SharedPointer", + "bases": [ + "ServiceOptionBase", + "PropertyClass" + ], + "hash": 790017304, + "properties": { + "m_serviceName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2206028813 + }, + "m_iconKey": { + "type": "std::string", + "id": 1, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2457138637 + }, + "m_displayKey": { + "type": "std::string", + "id": 2, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3023276954 + }, + "m_serviceIndex": { + "type": "unsigned int", + "id": 3, + "offset": 204, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2103126710 + }, + "m_forceInteract": { + "type": "bool", + "id": 4, + "offset": 200, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1705789564 + } + } + }, + "1633647813": { + "name": "class CrownShopItem*", + "bases": [ + "PropertyClass" + ], + "hash": 1633647813, + "properties": { + "m_itemTemplateId": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1978701296 + }, + "m_itemFlags": { + "type": "int", + "id": 1, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1792726006 + }, + "m_goldCost": { + "type": "int", + "id": 2, + "offset": 92, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 444550297 + }, + "m_crownsCost": { + "type": "int", + "id": 3, + "offset": 96, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1592212719 + }, + "m_ticketCost": { + "type": "int", + "id": 4, + "offset": 100, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1199423063 + }, + "m_displayPriority": { + "type": "std::string", + "id": 5, + "offset": 112, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2036319987 + }, + "m_strikethruCrowns": { + "type": "int", + "id": 6, + "offset": 144, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1756077003 + }, + "m_strikethruGold": { + "type": "int", + "id": 7, + "offset": 148, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 664425781 + }, + "m_description": { + "type": "std::string", + "id": 8, + "offset": 208, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1649374815 + }, + "m_saleID": { + "type": "unsigned int", + "id": 9, + "offset": 240, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1150028607 + }, + "m_recommendIfOwned": { + "type": "bool", + "id": 10, + "offset": 152, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1653579929 + }, + "m_combatOnly": { + "type": "bool", + "id": 11, + "offset": 153, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 978499627 + }, + "m_noGift": { + "type": "bool", + "id": 12, + "offset": 154, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 760708954 + }, + "m_segReqsStatement": { + "type": "std::string", + "id": 13, + "offset": 160, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3526390858 + }, + "m_segReqsPoolsStatements": { + "type": "std::string", + "id": 14, + "offset": 192, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 3225359562 + } + } + }, + "2067857413": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 2067857413, + "properties": { + "m_clientTag": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3409856790 + }, + "m_zoneName": { + "type": "std::string", + "id": 1, + "offset": 112, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2171167736 + }, + "m_zoneInstance": { + "type": "gid", + "id": 2, + "offset": 152, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 449538121 + }, + "m_originator": { + "type": "gid", + "id": 3, + "offset": 72, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 709051254 + }, + "m_index": { + "type": "int", + "id": 4, + "offset": 160, + "flags": 30, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 798031442 + }, + "m_zoneID": { + "type": "unsigned int", + "id": 5, + "offset": 144, + "flags": 16, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1440651126 + } + } + }, + "789969400": { + "name": "class SharedPointer", + "bases": [ + "Window", + "PropertyClass" + ], + "hash": 789969400, + "properties": { + "m_sName": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306437263 + }, + "m_Children": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 65667, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621225959 + }, + "m_Style": { + "type": "unsigned int", + "id": 2, + "offset": 152, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "SCALE_CHILDREN": 2, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "FOCUS_LOCKED": 64, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152 + } + }, + "m_Flags": { + "type": "unsigned int", + "id": 3, + "offset": 156, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } + }, + "m_Window": { + "type": "class Rect", + "id": 4, + "offset": 160, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3105139380 + }, + "m_fTargetAlpha": { + "type": "float", + "id": 5, + "offset": 212, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1809129834 + }, + "m_fDisabledAlpha": { + "type": "float", + "id": 6, + "offset": 216, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1389987675 + }, + "m_fAlpha": { + "type": "float", + "id": 7, + "offset": 208, + "flags": 65671, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 482130755 + }, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3623628394 + }, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2102211316 + }, + "m_sScript": { + "type": "std::string", + "id": 10, + "offset": 352, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1846695875 + }, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3389835433 + }, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547159940 + }, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513510520 + }, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3091503757 + } + } + }, + "2067755933": { + "name": "class ControlWidget*", + "bases": [ + "Window", + "PropertyClass" + ], + "hash": 2067755933, + "properties": { + "m_sName": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306437263 + }, + "m_Children": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621225959 + }, + "m_Style": { + "type": "unsigned int", + "id": 2, + "offset": 152, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "CAN_MOVE": 4, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152, + "CAN_SIZE_HORIZONTALLY": 16777216, + "CAN_SIZE_VERTICALLY": 33554432, + "CAN_SIZE_WIDGET": 50331648 + } + }, + "m_Flags": { + "type": "unsigned int", + "id": 3, + "offset": 156, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } + }, + "m_Window": { + "type": "class Rect", + "id": 4, + "offset": 160, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3105139380 + }, + "m_fTargetAlpha": { + "type": "float", + "id": 5, + "offset": 212, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1809129834 + }, + "m_fDisabledAlpha": { + "type": "float", + "id": 6, + "offset": 216, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1389987675 + }, + "m_fAlpha": { + "type": "float", + "id": 7, + "offset": 208, + "flags": 65671, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 482130755 + }, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3623628394 + }, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2102211316 + }, + "m_sScript": { + "type": "std::string", + "id": 10, + "offset": 352, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1846695875 + }, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3389835433 + }, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547159940 + }, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513510520 + }, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3091503757 + }, + "m_pWidgetBackground": { + "type": "class SharedPointer", + "id": 16, + "offset": 584, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1642222607 + }, + "m_pTopLeftCornerMaterial": { + "type": "class SharedPointer", + "id": 17, + "offset": 600, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2210830717 + }, + "m_pTopRightCornerMaterial": { + "type": "class SharedPointer", + "id": 18, + "offset": 616, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2025381456 + }, + "m_pBottomLeftCornerMaterial": { + "type": "class SharedPointer", + "id": 19, + "offset": 632, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2960442335 + }, + "m_pBottomRightCornerMaterial": { + "type": "class SharedPointer", + "id": 20, + "offset": 648, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3140244722 + }, + "m_pBottomEdgeMaterial": { + "type": "class SharedPointer", + "id": 21, + "offset": 664, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2538880672 + }, + "m_pTopEdgeMaterial": { + "type": "class SharedPointer", + "id": 22, + "offset": 680, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2522199486 + }, + "m_pLeftEdgeMaterial": { + "type": "class SharedPointer", + "id": 23, + "offset": 696, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3154051542 + }, + "m_pRightEdgeMaterial": { + "type": "class SharedPointer", + "id": 24, + "offset": 712, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2818320265 + }, + "m_pCenterMaterial": { + "type": "class SharedPointer", + "id": 25, + "offset": 728, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1519560055 + }, + "m_MaximumSize": { + "type": "class Size", + "id": 26, + "offset": 744, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1781954165 + }, + "m_MinimumSize": { + "type": "class Size", + "id": 27, + "offset": 752, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2108593523 + } + } + }, + "788860132": { + "name": "class SharedPointer", + "bases": [ + "GameEffectInfo", + "PropertyClass" + ], + "hash": 788860132, + "properties": { + "m_effectName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2029161513 + }, + "m_xpPercent": { + "type": "int", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 755316563 + } + } + }, + "1633876473": { + "name": "enum ReqCombatStatus::kStatusEffect", + "bases": [], + "hash": 1633876473, + "properties": {} + }, + "1181994921": { + "name": "class LinearSoundEmitterInfo", + "bases": [ + "PositionalSoundEmitterInfo", + "SoundEmitterInfo", + "SoundInfo", + "ClientObjectInfo", + "CoreObjectInfo", + "PropertyClass" + ], + "hash": 1181994921, + "properties": { + "m_templateID.m_full": { + "type": "unsigned __int64", + "id": 0, + "offset": 72, + "flags": 33554439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 633907631 + }, + "m_nObjectID": { + "type": "unsigned int", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 748496927 + }, + "m_location": { + "type": "class Vector3D", + "id": 2, + "offset": 84, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2239683611 + }, + "m_orientation": { + "type": "class Vector3D", + "id": 3, + "offset": 96, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2344058766 + }, + "m_fScale": { + "type": "float", + "id": 4, + "offset": 108, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 503137701 + }, + "m_zoneTag": { + "type": "std::string", + "id": 5, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3405382643 + }, + "m_startState": { + "type": "std::string", + "id": 6, + "offset": 184, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2166880458 + }, + "m_overrideName": { + "type": "std::string", + "id": 7, + "offset": 120, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1990707228 + }, + "m_globalDynamic": { + "type": "bool", + "id": 8, + "offset": 116, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1951691017 + }, + "m_bUndetectable": { + "type": "bool", + "id": 9, + "offset": 216, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1907454341 + }, + "m_spawnRequirements": { + "type": "class SharedPointer", + "id": 10, + "offset": 224, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2309120870 + }, + "m_loadingType": { + "type": "enum CoreObjectInfo::LoadingType", + "id": 11, + "offset": 112, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3522422550, + "enum_options": { + "STATIC_CLIENT_SERVER": 0, + "STATIC_CLIENT": 1, + "STATIC_SERVER": 2, + "DYNAMIC_SERVER": 3 + } + }, + "m_radius": { + "type": "float", + "id": 12, + "offset": 256, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 989410271 + }, + "m_exclusive": { + "type": "bool", + "id": 13, + "offset": 260, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 824383403 + }, + "m_startActive": { + "type": "bool", + "id": 14, + "offset": 261, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2031339229 + }, + "m_category": { + "type": "enum AudioCategory", + "id": 15, + "offset": 264, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2951251982, + "enum_options": { + "AudioCategory_Irrelevent": 0, + "AudioCategory_Accoustic": 1, + "AudioCategory_Noise": 2, + "AudioCategory_Music": 3 + } + }, + "m_override": { + "type": "int", + "id": 16, + "offset": 268, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 136872410, + "enum_options": { + "OVR_RADIUS": 1, + "OVR_CATEGORY": 2, + "OVR_EXCLUSIVE": 4, + "OVR_SIGNATURE": 64, + "OVR_VOLUME": 8, + "OVR_LOOPCOUNT": 16, + "OVR_ACTIVE": 32, + "OVR_PLAYPROG": 128, + "OVR_PRIORITY": 256, + "OVR_PROGTIME": 512, + "OVR_FILTERSET": 1024 + } + }, + "m_enableReqs": { + "type": "class SharedPointer", + "id": 17, + "offset": 272, + "flags": 263, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3158020443 + }, + "m_volume": { + "type": "float", + "id": 18, + "offset": 288, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1162855023 + }, + "m_loopCount": { + "type": "int", + "id": 19, + "offset": 292, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 865634717 + }, + "m_trackFilenameList": { + "type": "std::string", + "id": 20, + "offset": 312, + "flags": 131079, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2531081709 + }, + "m_playList": { + "type": "class PlayListEntry*", + "id": 21, + "offset": 336, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 3907873161 + }, + "m_priority": { + "type": "int", + "id": 22, + "offset": 296, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1235205852 + }, + "m_progression": { + "type": "enum PlayList::Progression", + "id": 23, + "offset": 300, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3279400238, + "enum_options": { + "Sequence": 0, + "Random": 1, + "SequenceOnceOnly": 2, + "RandomNoRepeat": 3 + } + }, + "m_progressMin": { + "type": "float", + "id": 24, + "offset": 304, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1497550192 + }, + "m_progressMax": { + "type": "float", + "id": 25, + "offset": 308, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1497549938 + }, + "m_audioFilterSet": { + "type": "unsigned int", + "id": 26, + "offset": 360, + "flags": 33554439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 831339825 + }, + "m_clientTag": { + "type": "std::string", + "id": 27, + "offset": 368, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3409856790 + }, + "m_innerRadius": { + "type": "float", + "id": 28, + "offset": 400, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 686816091 + }, + "m_nifObjName": { + "type": "std::string", + "id": 29, + "offset": 408, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513857812 + }, + "m_animNIFObjName": { + "type": "std::string", + "id": 30, + "offset": 440, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2245834777 + }, + "m_inverted": { + "type": "bool", + "id": 31, + "offset": 472, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1034821044 + }, + "m_initialDelay": { + "type": "float", + "id": 32, + "offset": 476, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 629858288 + }, + "m_fRangeScale": { + "type": "float", + "id": 33, + "offset": 480, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1749294034 + }, + "m_fAttenuationFactor": { + "type": "float", + "id": 34, + "offset": 484, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 273292776 + }, + "m_eAttenuationType": { + "type": "enum PositionInfoAttenuationType", + "id": 35, + "offset": 488, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2427193304, + "enum_options": { + "Standard": 0, + "Unit Range Power": 1 + } + }, + "m_vPositions": { + "type": "class Vector3D", + "id": 36, + "offset": 496, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 3599600160 + } + } + }, + "1181970345": { + "name": "class LinearSoundEmitterInfo*", + "bases": [ + "PositionalSoundEmitterInfo", + "SoundEmitterInfo", + "SoundInfo", + "ClientObjectInfo", + "CoreObjectInfo", + "PropertyClass" + ], + "hash": 1181970345, + "properties": { + "m_templateID.m_full": { + "type": "unsigned __int64", + "id": 0, + "offset": 72, + "flags": 33554439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 633907631 + }, + "m_nObjectID": { + "type": "unsigned int", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 748496927 + }, + "m_location": { + "type": "class Vector3D", + "id": 2, + "offset": 84, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2239683611 + }, + "m_orientation": { + "type": "class Vector3D", + "id": 3, + "offset": 96, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2344058766 + }, + "m_fScale": { + "type": "float", + "id": 4, + "offset": 108, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 503137701 + }, + "m_zoneTag": { + "type": "std::string", + "id": 5, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3405382643 + }, + "m_startState": { + "type": "std::string", + "id": 6, + "offset": 184, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2166880458 + }, + "m_overrideName": { + "type": "std::string", + "id": 7, + "offset": 120, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1990707228 + }, + "m_globalDynamic": { + "type": "bool", + "id": 8, + "offset": 116, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1951691017 + }, + "m_bUndetectable": { + "type": "bool", + "id": 9, + "offset": 216, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1907454341 + }, + "m_spawnRequirements": { + "type": "class SharedPointer", + "id": 10, + "offset": 224, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2309120870 + }, + "m_loadingType": { + "type": "enum CoreObjectInfo::LoadingType", + "id": 11, + "offset": 112, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3522422550, + "enum_options": { + "STATIC_CLIENT_SERVER": 0, + "STATIC_CLIENT": 1, + "STATIC_SERVER": 2, + "DYNAMIC_SERVER": 3 + } + }, + "m_radius": { + "type": "float", + "id": 12, + "offset": 256, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 989410271 + }, + "m_exclusive": { + "type": "bool", + "id": 13, + "offset": 260, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 824383403 + }, + "m_startActive": { + "type": "bool", + "id": 14, + "offset": 261, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2031339229 + }, + "m_category": { + "type": "enum AudioCategory", + "id": 15, + "offset": 264, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2951251982, + "enum_options": { + "AudioCategory_Irrelevent": 0, + "AudioCategory_Accoustic": 1, + "AudioCategory_Noise": 2, + "AudioCategory_Music": 3 + } + }, + "m_override": { + "type": "int", + "id": 16, + "offset": 268, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 136872410, + "enum_options": { + "OVR_RADIUS": 1, + "OVR_CATEGORY": 2, + "OVR_EXCLUSIVE": 4, + "OVR_SIGNATURE": 64, + "OVR_VOLUME": 8, + "OVR_LOOPCOUNT": 16, + "OVR_ACTIVE": 32, + "OVR_PLAYPROG": 128, + "OVR_PRIORITY": 256, + "OVR_PROGTIME": 512, + "OVR_FILTERSET": 1024 + } + }, + "m_enableReqs": { + "type": "class SharedPointer", + "id": 17, + "offset": 272, + "flags": 263, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3158020443 + }, + "m_volume": { + "type": "float", + "id": 18, + "offset": 288, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1162855023 + }, + "m_loopCount": { + "type": "int", + "id": 19, + "offset": 292, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 865634717 + }, + "m_trackFilenameList": { + "type": "std::string", + "id": 20, + "offset": 312, + "flags": 131079, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2531081709 + }, + "m_playList": { + "type": "class PlayListEntry*", + "id": 21, + "offset": 336, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 3907873161 + }, + "m_priority": { + "type": "int", + "id": 22, + "offset": 296, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1235205852 + }, + "m_progression": { + "type": "enum PlayList::Progression", + "id": 23, + "offset": 300, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3279400238, + "enum_options": { + "Sequence": 0, + "Random": 1, + "SequenceOnceOnly": 2, + "RandomNoRepeat": 3 + } + }, + "m_progressMin": { + "type": "float", + "id": 24, + "offset": 304, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1497550192 + }, + "m_progressMax": { + "type": "float", + "id": 25, + "offset": 308, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1497549938 + }, + "m_audioFilterSet": { + "type": "unsigned int", + "id": 26, + "offset": 360, + "flags": 33554439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 831339825 + }, + "m_clientTag": { + "type": "std::string", + "id": 27, + "offset": 368, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3409856790 + }, + "m_innerRadius": { + "type": "float", + "id": 28, + "offset": 400, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 686816091 + }, + "m_nifObjName": { + "type": "std::string", + "id": 29, + "offset": 408, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513857812 + }, + "m_animNIFObjName": { + "type": "std::string", + "id": 30, + "offset": 440, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2245834777 + }, + "m_inverted": { + "type": "bool", + "id": 31, + "offset": 472, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1034821044 + }, + "m_initialDelay": { + "type": "float", + "id": 32, + "offset": 476, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 629858288 + }, + "m_fRangeScale": { + "type": "float", + "id": 33, + "offset": 480, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1749294034 + }, + "m_fAttenuationFactor": { + "type": "float", + "id": 34, + "offset": 484, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 273292776 + }, + "m_eAttenuationType": { + "type": "enum PositionInfoAttenuationType", + "id": 35, + "offset": 488, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2427193304, + "enum_options": { + "Standard": 0, + "Unit Range Power": 1 + } + }, + "m_vPositions": { + "type": "class Vector3D", + "id": 36, + "offset": 496, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 3599600160 + } + } + }, + "2068272439": { + "name": "class SharedPointer", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 2068272439, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + } + } + }, + "1634577374": { + "name": "class UnlockTriggerList", + "bases": [ + "PropertyClass" + ], + "hash": 1634577374, + "properties": { + "m_unlockTriggerList": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2206769498 + } + } + }, + "2068207453": { + "name": "class std::list >", + "bases": [], + "hash": 2068207453, + "properties": {} + }, + "790055087": { + "name": "class SharedPointer", + "bases": [ + "CinematicAction", + "PropertyClass" + ], + "hash": 790055087, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_minDuration": { + "type": "float", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1733171553 + }, + "m_assetName": { + "type": "std::string", + "id": 2, + "offset": 88, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513131580 + } + } + }, + "2068021638": { + "name": "class ReqIsLimitExpandBackpackElixirs", + "bases": [ + "Requirement", + "PropertyClass" + ], + "hash": 2068021638, + "properties": { + "m_applyNOT": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1746328074, + "enum_options": { + "__DEFAULT": 0 + } + }, + "m_operator": { + "type": "enum Requirement::Operator", + "id": 1, + "offset": 76, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2672792317, + "enum_options": { + "ROP_AND": 0, + "ROP_OR": 1, + "__DEFAULT": "ROP_AND" + } + } + } + }, + "1182445187": { + "name": "class DdWinAnimMoveDiggingMob", + "bases": [ + "DdWinAnimMoveMob", + "WinAnimMoveToLocationSpeed", + "WinAnimMoveToLocation", + "WindowAnimation", + "PropertyClass" + ], + "hash": 1182445187, + "properties": { + "m_bUseDeepCopy": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 433380635 + }, + "m_targetLocation": { + "type": "class Vector3D", + "id": 1, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2653859938 + }, + "m_fSpeed": { + "type": "float", + "id": 2, + "offset": 96, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 503609006 + }, + "m_facing": { + "type": "enum DoodleDoug::DdDirection", + "id": 3, + "offset": 112, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 591537519 + }, + "m_cameFrom": { + "type": "enum DoodleDoug::DdDirection", + "id": 4, + "offset": 116, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1071209393 + }, + "m_nextWaypoint": { + "type": "class Point", + "id": 5, + "offset": 120, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2346187452 + }, + "m_myBoard": { + "type": "class DoodleDoug*", + "id": 6, + "offset": 136, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2212758093 + } + } + }, + "1636331825": { + "name": "class CraftingSlotLootInfo", + "bases": [ + "LootInfo", + "LootInfoBase", + "PropertyClass" + ], + "hash": 1636331825, + "properties": { + "m_lootType": { + "type": "enum LootInfo::LOOT_TYPE", + "id": 0, + "offset": 72, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1591891442, + "enum_options": { + "LOOT_TYPE_NONE": 0, + "LOOT_TYPE_GOLD": 1, + "LOOT_TYPE_MANA": 2, + "LOOT_TYPE_ITEM": 3, + "LOOT_TYPE_TREASURE_CARD": 4, + "LOOT_TYPE_MAGIC_XP": 5, + "LOOT_TYPE_ADD_SPELL": 6, + "LOOT_TYPE_MAX_HEALTH": 7, + "LOOT_TYPE_MAX_GOLD": 8, + "LOOT_TYPE_MAX_MANA": 9, + "LOOT_TYPE_MAX_POTION": 10, + "LOOT_TYPE_TRAINING_POINTS": 11, + "LOOT_TYPE_RECIPE": 12, + "LOOT_TYPE_CRAFTING_SLOT": 13, + "LOOT_TYPE_REAGENT": 14, + "LOOT_TYPE_PETSNACK": 15, + "LOOT_TYPE_GARDENING_XP": 16, + "LOOT_TYPE_PET_XP": 17, + "LOOT_TYPE_TREASURE_TABLE": 18, + "LOOT_TYPE_ARENA_POINTS": 19, + "LOOT_TYPE_ARENA_BONUS_POINTS": 20, + "LOOT_TYPE_GROUP": 21, + "LOOT_TYPE_FISHING_XP": 22, + "LOOT_TYPE_EVENT_CURRENCY_1": 24, + "LOOT_TYPE_EVENT_CURRENCY_2": 25, + "LOOT_TYPE_PVP_CURRENCY": 26, + "LOOT_TYPE_PVP_CURRENCY_BONUS": 27, + "LOOT_TYPE_PVP_TOURNEY_CURRENCY": 28, + "LOOT_TYPE_PVP_TOURNEY_CURRENCY_BONUS": 29, + "LOOT_TYPE_FURNITURE_ESSENCE": 30 + } + }, + "m_delta": { + "type": "int", + "id": 1, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 791787588 + } + } + }, + "1182462215": { + "name": "class GardenSpellTemplate*", + "bases": [ + "SpellTemplate", + "CoreTemplate", + "PropertyClass" + ], + "hash": 1182462215, + "properties": { + "m_behaviors": { + "type": "class BehaviorTemplate*", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1197808594 + }, + "m_name": { + "type": "std::string", + "id": 1, + "offset": 96, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1717359772 + }, + "m_description": { + "type": "std::string", + "id": 2, + "offset": 168, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1649374815 + }, + "m_advancedDescription": { + "type": "std::string", + "id": 3, + "offset": 200, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3465713013 + }, + "m_displayName": { + "type": "std::string", + "id": 4, + "offset": 136, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2446900370 + }, + "m_spellBase": { + "type": "std::string", + "id": 5, + "offset": 248, + "flags": 268435463, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2688054198, + "enum_options": { + "__BASECLASS": "CinematicTemplate" + } + }, + "m_effects": { + "type": "class SharedPointer", + "id": 6, + "offset": 280, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 370726379 + }, + "m_sMagicSchoolName": { + "type": "std::string", + "id": 7, + "offset": 312, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2035693400 + }, + "m_sTypeName": { + "type": "std::string", + "id": 8, + "offset": 352, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3580785905 + }, + "m_trainingCost": { + "type": "int", + "id": 9, + "offset": 384, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 982588239 + }, + "m_accuracy": { + "type": "int", + "id": 10, + "offset": 388, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1636315493 + }, + "m_baseCost": { + "type": "int", + "id": 11, + "offset": 232, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1475151502 + }, + "m_creditsCost": { + "type": "int", + "id": 12, + "offset": 236, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 715313825 + }, + "m_pvpCurrencyCost": { + "type": "int", + "id": 13, + "offset": 240, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 645595444 + }, + "m_pvpTourneyCurrencyCost": { + "type": "int", + "id": 14, + "offset": 244, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 517874954 + }, + "m_boosterPackIcon": { + "type": "std::string", + "id": 15, + "offset": 496, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3428653697 + }, + "m_validTargetSpells": { + "type": "unsigned int", + "id": 16, + "offset": 392, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2355782967 + }, + "m_PvP": { + "type": "bool", + "id": 17, + "offset": 408, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 269492361 + }, + "m_PvE": { + "type": "bool", + "id": 18, + "offset": 409, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 269492350 + }, + "m_noPvPEnchant": { + "type": "bool", + "id": 19, + "offset": 410, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 661581703 + }, + "m_noPvEEnchant": { + "type": "bool", + "id": 20, + "offset": 411, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 10144220 + }, + "m_battlegroundsOnly": { + "type": "bool", + "id": 21, + "offset": 412, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1244782419 + }, + "m_Treasure": { + "type": "bool", + "id": 22, + "offset": 413, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1749096414 + }, + "m_noDiscard": { + "type": "bool", + "id": 23, + "offset": 414, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 565749226 + }, + "m_leavesPlayWhenCast": { + "type": "bool", + "id": 24, + "offset": 532, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 698216294 + }, + "m_imageIndex": { + "type": "int", + "id": 25, + "offset": 416, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1570500405 + }, + "m_imageName": { + "type": "std::string", + "id": 26, + "offset": 424, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2391520543 + }, + "m_cloaked": { + "type": "bool", + "id": 27, + "offset": 489, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 7349510 + }, + "m_casterInvisible": { + "type": "bool", + "id": 28, + "offset": 490, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 310214650 + }, + "m_adjectives": { + "type": "std::string", + "id": 29, + "offset": 576, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2967855037 + }, + "m_spellSourceType": { + "type": "enum SpellTemplate::kSpellSourceType", + "id": 30, + "offset": 528, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 156272727, + "enum_options": { + "kCaster": 0, + "kPet": 1, + "kShadowCreature": 2, + "kWeapon": 3, + "kEquipment": 4 + } + }, + "m_cloakedName": { + "type": "std::string", + "id": 31, + "offset": 536, + "flags": 268435463, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2846679215, + "enum_options": { + "__BASECLASS": "SpellTemplate" + } + }, + "m_purchaseRequirements": { + "type": "class RequirementList*", + "id": 32, + "offset": 608, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3174641793 + }, + "m_displayRequirements": { + "type": "class RequirementList*", + "id": 33, + "offset": 840, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3646782876 + }, + "m_descriptionTrainer": { + "type": "std::string", + "id": 34, + "offset": 616, + "flags": 8388871, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1756093908 + }, + "m_descriptionCombatHUD": { + "type": "std::string", + "id": 35, + "offset": 648, + "flags": 8388871, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1631478006 + }, + "m_displayIndex": { + "type": "int", + "id": 36, + "offset": 680, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1250551048 + }, + "m_hiddenFromEffectsWindow": { + "type": "bool", + "id": 37, + "offset": 684, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1832736331 + }, + "m_ignoreCharms": { + "type": "bool", + "id": 38, + "offset": 685, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1840075893 + }, + "m_alwaysFizzle": { + "type": "bool", + "id": 39, + "offset": 686, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2030988856 + }, + "m_spellCategory": { + "type": "std::string", + "id": 40, + "offset": 688, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2472376729 + }, + "m_showPolymorphedName": { + "type": "bool", + "id": 41, + "offset": 720, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2097929096 + }, + "m_skipTruncation": { + "type": "bool", + "id": 42, + "offset": 721, + "flags": 263, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1838335249 + }, + "m_maxCopies": { + "type": "unsigned int", + "id": 43, + "offset": 724, + "flags": 263, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 403022326 + }, + "m_levelRestriction": { + "type": "int", + "id": 44, + "offset": 728, + "flags": 263, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 176502472 + }, + "m_delayEnchantment": { + "type": "bool", + "id": 45, + "offset": 732, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 191336919 + }, + "m_delayEnchantmentOrder": { + "type": "enum SpellEffect::kDelayOrder", + "id": 46, + "offset": 736, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2526055263, + "enum_options": { + "SpellEffect::kAnyOrder": 0, + "SpellEffect::kFirst": 1, + "SpellEffect::kSecond": 2 + } + }, + "m_previousSpellName": { + "type": "std::string", + "id": 47, + "offset": 744, + "flags": 268435463, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2903322585, + "enum_options": { + "__BASECLASS": "SpellTemplate" + } + }, + "m_cardFront": { + "type": "std::string", + "id": 48, + "offset": 456, + "flags": 131359, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3557598526 + }, + "m_useGloss": { + "type": "bool", + "id": 49, + "offset": 488, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 668817544 + }, + "m_ignoreDispel": { + "type": "bool", + "id": 50, + "offset": 776, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1881041624 + }, + "m_backRowFriendly": { + "type": "bool", + "id": 51, + "offset": 777, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 501584377 + }, + "m_spellRank": { + "type": "class SharedPointer", + "id": 52, + "offset": 784, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3152361374 + }, + "m_secondarySchoolName": { + "type": "std::string", + "id": 53, + "offset": 800, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1803268236 + }, + "m_spellFusion": { + "type": "unsigned int", + "id": 54, + "offset": 836, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1658928321 + }, + "m_requiredSchoolName": { + "type": "std::string", + "id": 55, + "offset": 848, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3576058981 + }, + "m_gardenSpellType": { + "type": "enum GardenSpellTemplate::GardenSpellType", + "id": 56, + "offset": 880, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3204656351, + "enum_options": { + "GS_SoilPreparation": 0, + "GS_Growing": 1, + "GS_InsectFighting": 2, + "GS_PlantProtection": 3, + "GS_PlantUtility": 4 + } + }, + "m_animationKFM": { + "type": "std::string", + "id": 57, + "offset": 888, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2466280761 + }, + "m_animationName": { + "type": "std::string", + "id": 58, + "offset": 920, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3393414044 + }, + "m_soundEffectName": { + "type": "std::string", + "id": 59, + "offset": 1016, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3235436082 + }, + "m_soilTemplateID": { + "type": "unsigned int", + "id": 60, + "offset": 1048, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2225235405 + }, + "m_providesWater": { + "type": "bool", + "id": 61, + "offset": 1052, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1403713858 + }, + "m_providesSun": { + "type": "bool", + "id": 62, + "offset": 1053, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1942306581 + }, + "m_providesPollination": { + "type": "bool", + "id": 63, + "offset": 1054, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 443775752 + }, + "m_providesMagic": { + "type": "bool", + "id": 64, + "offset": 1055, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1391840608 + }, + "m_providesMusic": { + "type": "bool", + "id": 65, + "offset": 1056, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1392572416 + }, + "m_bugZapLevel": { + "type": "int", + "id": 66, + "offset": 1060, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1811340955 + }, + "m_protectionTemplateID": { + "type": "unsigned int", + "id": 67, + "offset": 1064, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 280411517 + }, + "m_soundEffectGain": { + "type": "float", + "id": 68, + "offset": 1068, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1827685932, + "enum_options": { + "__DEFAULT": "1.0" + } + }, + "m_utilitySpellType": { + "type": "enum GardenSpellTemplate::UtilitySpellType", + "id": 69, + "offset": 1072, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1635978289, + "enum_options": { + "US_None": 0, + "US_Zap": 1, + "US_Revive": 2, + "US_Inspect": 3, + "US_Stasis": 4, + "US_PlowAll": 5, + "US_PlantAll": 6, + "US_HarvestNow": 7 + } + }, + "m_affectedRadius": { + "type": "int", + "id": 70, + "offset": 1076, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 540739476 + }, + "m_yOffset": { + "type": "float", + "id": 71, + "offset": 1080, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1592149751 + }, + "m_energyCost": { + "type": "int", + "id": 72, + "offset": 1084, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1236111677 + }, + "m_gardenSpellImageIndex": { + "type": "int", + "id": 73, + "offset": 1088, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 721561158 + }, + "m_gardenSpellImageName": { + "type": "std::string", + "id": 74, + "offset": 1096, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3146698256 + }, + "m_animationNameSmall": { + "type": "std::string", + "id": 75, + "offset": 952, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2904009973 + }, + "m_animationNameLarge": { + "type": "std::string", + "id": 76, + "offset": 984, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2895295623 + } + } + }, + "791947256": { + "name": "class SharedPointer", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 791947256, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + }, + "m_expireTime": { + "type": "std::string", + "id": 1, + "offset": 128, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3122602039 + }, + "m_timerType": { + "type": "enum TimerType", + "id": 2, + "offset": 120, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 571744132, + "enum_options": { + "TimerType_Game": 0, + "TimerType_Calendar": 1 + } + } + } + }, + "790862862": { + "name": "class JewelVaultBehavior*", + "bases": [ + "JewelVaultBehaviorBase", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 790862862, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_jewelList": { + "type": "unsigned int", + "id": 1, + "offset": 112, + "flags": 65543, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1839384000 + }, + "m_jewelData": { + "type": "std::string", + "id": 2, + "offset": 128, + "flags": 551, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3125384972 + } + } + }, + "1636745978": { + "name": "class ObjectStateBehavior", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1636745978, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_stateList": { + "type": "unsigned int", + "id": 1, + "offset": 136, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1658565962 + }, + "m_stateSetOverride": { + "type": "std::string", + "id": 2, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3188396456 + } + } + }, + "2068870378": { + "name": "class BadgeBehavior", + "bases": [ + "BaseBadgeBehavior", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 2068870378, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_badgeData": { + "type": "std::string", + "id": 1, + "offset": 160, + "flags": 575, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3002588904 + } + } + }, + "790746714": { + "name": "class SharedPointer", + "bases": [ + "Requirement", + "PropertyClass" + ], + "hash": 790746714, + "properties": { + "m_applyNOT": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1746328074, + "enum_options": { + "__DEFAULT": 0 + } + }, + "m_operator": { + "type": "enum Requirement::Operator", + "id": 1, + "offset": 76, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2672792317, + "enum_options": { + "ROP_AND": 0, + "ROP_OR": 1, + "__DEFAULT": "ROP_AND" + } + }, + "m_targetType": { + "type": "enum ConditionalSpellEffectRequirement::RequirementTarget", + "id": 2, + "offset": 80, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547737902, + "enum_options": { + "RT_Caster": 0, + "RT_Target": 1 + } + } + } + }, + "1186142512": { + "name": "class SharedPointer", + "bases": [ + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 1186142512, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + }, + "m_bCaster": { + "type": "bool", + "id": 2, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1390351511 + } + } + }, + "1184185144": { + "name": "class SharedPointer", + "bases": [ + "StartHangingRotationCinematicAction", + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 1184185144, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + }, + "m_cloaked": { + "type": "bool", + "id": 2, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 7349510 + } + } + }, + "1636982071": { + "name": "class PetGameEnergyCost*", + "bases": [ + "PropertyClass" + ], + "hash": 1636982071, + "properties": { + "m_rank": { + "type": "unsigned char", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 857403388 + }, + "m_cost": { + "type": "unsigned char", + "id": 1, + "offset": 73, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 856879753 + } + } + }, + "2074326083": { + "name": "class ServiceOptionBase*", + "bases": [ + "PropertyClass" + ], + "hash": 2074326083, + "properties": { + "m_serviceName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2206028813 + }, + "m_iconKey": { + "type": "std::string", + "id": 1, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2457138637 + }, + "m_displayKey": { + "type": "std::string", + "id": 2, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3023276954 + }, + "m_serviceIndex": { + "type": "unsigned int", + "id": 3, + "offset": 204, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2103126710 + }, + "m_forceInteract": { + "type": "bool", + "id": 4, + "offset": 200, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1705789564 + } + } + }, + "1648038308": { + "name": "enum eGender", + "bases": [], + "hash": 1648038308, + "properties": {} + }, + "1636900316": { + "name": "class BattlegroundPOI", + "bases": [ + "PropertyClass" + ], + "hash": 1636900316, + "properties": { + "m_poiList": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 3936595873 + } + } + }, + "2071241709": { + "name": "class EquipmentTemplate*", + "bases": [ + "CoreTemplate", + "PropertyClass" + ], + "hash": 2071241709, + "properties": { + "m_behaviors": { + "type": "class BehaviorTemplate*", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1197808594 + }, + "m_baseSlots": { + "type": "class EquipSlot*", + "id": 1, + "offset": 136, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 3098501161 + }, + "m_equipmentName": { + "type": "std::string", + "id": 2, + "offset": 96, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1920213140 + } + } + }, + "792029465": { + "name": "class ClientFlareBacklashEffectCinematicAction", + "bases": [ + "FlareBacklashEffectCinematicAction", + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 792029465, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + } + } + }, + "2070320662": { + "name": "class SharedPointer", + "bases": [ + "Result", + "PropertyClass" + ], + "hash": 2070320662, + "properties": { + "m_maximumPurchasedCharacterSlots": { + "type": "int", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 57745273 + } + } + }, + "2069980869": { + "name": "class LeaderboardUpdateFriendsList*", + "bases": [ + "PropertyClass" + ], + "hash": 2069980869, + "properties": { + "m_leaderboardFriendsList": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 142730388 + } + } + }, + "1184791435": { + "name": "class SharedPointer", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1184791435, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + } + } + }, + "1640127799": { + "name": "class PetGameEnergyCost", + "bases": [ + "PropertyClass" + ], + "hash": 1640127799, + "properties": { + "m_rank": { + "type": "unsigned char", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 857403388 + }, + "m_cost": { + "type": "unsigned char", + "id": 1, + "offset": 73, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 856879753 + } + } + }, + "2069974725": { + "name": "class LeaderboardUpdateFriendsList", + "bases": [ + "PropertyClass" + ], + "hash": 2069974725, + "properties": { + "m_leaderboardFriendsList": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 142730388 + } + } + }, + "1184268322": { + "name": "class StartingPipEffectTemplate*", + "bases": [ + "GameEffectTemplate", + "PropertyClass" + ], + "hash": 1184268322, + "properties": { + "m_effectName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2029161513 + }, + "m_effectCategory": { + "type": "std::string", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1852673222 + }, + "m_sortOrder": { + "type": "int", + "id": 2, + "offset": 148, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1411218206 + }, + "m_duration": { + "type": "double", + "id": 3, + "offset": 192, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2727932435 + }, + "m_stackingCategories": { + "type": "std::string", + "id": 4, + "offset": 160, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1774497525 + }, + "m_isPersistent": { + "type": "bool", + "id": 5, + "offset": 153, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 923861920 + }, + "m_bIsOnPet": { + "type": "bool", + "id": 6, + "offset": 154, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 522593303 + }, + "m_isPublic": { + "type": "bool", + "id": 7, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1728439822 + }, + "m_visualEffectAddName": { + "type": "std::string", + "id": 8, + "offset": 200, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3382086694 + }, + "m_visualEffectRemoveName": { + "type": "std::string", + "id": 9, + "offset": 232, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1541697323 + }, + "m_onAddFunctorName": { + "type": "std::string", + "id": 10, + "offset": 280, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1561843107 + }, + "m_onRemoveFunctorName": { + "type": "std::string", + "id": 11, + "offset": 312, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2559017864 + }, + "m_stackingRule": { + "type": "enum STACKING_RULE", + "id": 12, + "offset": 144, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 431568889, + "enum_options": { + "STACKING_ALLOWED": 0, + "STACKING_NOSTACK": 1, + "STACKING_REPLACE": 2 + } + }, + "m_pipsGiven": { + "type": "int", + "id": 13, + "offset": 360, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1346249167 + }, + "m_powerPipsGiven": { + "type": "int", + "id": 14, + "offset": 364, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 377908508 + } + } + }, + "792687072": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 792687072, + "properties": { + "m_message": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3411261376 + }, + "m_itemId.m_full": { + "type": "unsigned __int64", + "id": 1, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 625276258 + }, + "m_itemCount": { + "type": "int", + "id": 2, + "offset": 120, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1789298066 + }, + "m_itemFlags": { + "type": "int", + "id": 3, + "offset": 124, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1792726006 + }, + "m_texture": { + "type": "int", + "id": 4, + "offset": 112, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 222406987 + }, + "m_decal": { + "type": "int", + "id": 5, + "offset": 116, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 791777171 + }, + "m_petName": { + "type": "int", + "id": 6, + "offset": 128, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1492854820 + }, + "m_giverAccountID": { + "type": "gid", + "id": 7, + "offset": 136, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 679105551 + }, + "m_itemTransactionId": { + "type": "std::string", + "id": 8, + "offset": 144, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1830751453 + } + } + }, + "1639918656": { + "name": "struct std::pair", + "bases": [], + "hash": 1639918656, + "properties": {} + }, + "792292318": { + "name": "class SharedPointer", + "bases": [ + "Window", + "PropertyClass" + ], + "hash": 792292318, + "properties": { + "m_sName": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306437263 + }, + "m_Children": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621225959 + }, + "m_Style": { + "type": "unsigned int", + "id": 2, + "offset": 152, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "SCALE_CHILDREN": 2, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "FOCUS_LOCKED": 64, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152 + } + }, + "m_Flags": { + "type": "unsigned int", + "id": 3, + "offset": 156, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } + }, + "m_Window": { + "type": "class Rect", + "id": 4, + "offset": 160, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3105139380 + }, + "m_fTargetAlpha": { + "type": "float", + "id": 5, + "offset": 212, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1809129834 + }, + "m_fDisabledAlpha": { + "type": "float", + "id": 6, + "offset": 216, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1389987675 + }, + "m_fAlpha": { + "type": "float", + "id": 7, + "offset": 208, + "flags": 65671, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 482130755 + }, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3623628394 + }, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2102211316 + }, + "m_sScript": { + "type": "std::string", + "id": 10, + "offset": 352, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1846695875 + }, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3389835433 + }, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547159940 + }, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513510520 + }, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3091503757 + } + } + }, + "1639159474": { + "name": "class WinAnimConcurrentBounded*", + "bases": [ + "WinAnimConcurrent", + "WinAnimContainer", + "WindowAnimation", + "PropertyClass" + ], + "hash": 1639159474, + "properties": { + "m_bUseDeepCopy": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 433380635 + }, + "m_winAnimList": { + "type": "class SharedPointer", + "id": 1, + "offset": 80, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1941062728 + }, + "m_bLooping": { + "type": "bool", + "id": 2, + "offset": 104, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2131020845 + }, + "m_finishedAnimList": { + "type": "class SharedPointer", + "id": 3, + "offset": 112, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 3066650884 + }, + "m_boundary": { + "type": "class Rect", + "id": 4, + "offset": 128, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1423726080 + } + } + }, + "792240292": { + "name": "class BadgeTemplate", + "bases": [ + "CoreTemplate", + "PropertyClass" + ], + "hash": 792240292, + "properties": { + "m_behaviors": { + "type": "class BehaviorTemplate*", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1197808594 + }, + "m_badgeName": { + "type": "std::string", + "id": 1, + "offset": 96, + "flags": 134217735, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3002948047 + }, + "m_badgeTitle": { + "type": "std::string", + "id": 2, + "offset": 136, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1783354256 + }, + "m_badgeInfo": { + "type": "std::string", + "id": 3, + "offset": 168, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3002782298 + }, + "m_badgeProgressInfo": { + "type": "std::string", + "id": 4, + "offset": 200, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1902667503 + }, + "m_badgeReplace": { + "type": "std::string", + "id": 5, + "offset": 256, + "flags": 268435463, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2644976426, + "enum_options": { + "__BASECLASS": "BadgeTemplate" + } + }, + "m_clearRegistry": { + "type": "bool", + "id": 6, + "offset": 248, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2092369011 + }, + "m_requirements": { + "type": "class RequirementList*", + "id": 7, + "offset": 232, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2840985510 + }, + "m_completeResults": { + "type": "class ResultList*", + "id": 8, + "offset": 240, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1964258099 + }, + "m_badgeAdjectives": { + "type": "std::string", + "id": 9, + "offset": 312, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 3438296880 + }, + "m_registryName": { + "type": "std::string", + "id": 10, + "offset": 344, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2065929269 + }, + "m_registryValue": { + "type": "int", + "id": 11, + "offset": 376, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1578365616 + }, + "m_showTitle": { + "type": "bool", + "id": 12, + "offset": 380, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2128418998 + }, + "m_autoAddBadge": { + "type": "bool", + "id": 13, + "offset": 381, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 236591912 + }, + "m_index": { + "type": "unsigned int", + "id": 14, + "offset": 384, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1009433893 + }, + "m_badgeOutline": { + "type": "std::string", + "id": 15, + "offset": 392, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1548975214 + }, + "m_badgeImage": { + "type": "std::string", + "id": 16, + "offset": 424, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1770432017 + }, + "m_dynamicBadge": { + "type": "bool", + "id": 17, + "offset": 456, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1496846667 + }, + "m_badgeFilterName": { + "type": "std::string", + "id": 18, + "offset": 464, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2268560533 + }, + "m_extraCredit": { + "type": "bool", + "id": 19, + "offset": 504, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 847737554 + }, + "m_overcount": { + "type": "bool", + "id": 20, + "offset": 505, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 203918520 + }, + "m_overcountInterval": { + "type": "unsigned int", + "id": 21, + "offset": 508, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1845137015 + }, + "m_overcountLootTable": { + "type": "std::string", + "id": 22, + "offset": 512, + "flags": 268435463, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3493569350, + "enum_options": { + "__BASECLASS": "LootTable" + } + }, + "m_recurringRewardsDescription": { + "type": "std::string", + "id": 23, + "offset": 544, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1668915496 + }, + "m_rewardLootTable": { + "type": "std::string", + "id": 24, + "offset": 576, + "flags": 268435463, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3635244294, + "enum_options": { + "__BASECLASS": "LootTable" + } + }, + "m_requiredAutoAddBadgeList": { + "type": "std::string", + "id": 25, + "offset": 608, + "flags": 268435463, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 3633108301, + "enum_options": { + "__BASECLASS": "BadgeTemplate" + } + }, + "m_forceRequirementsCheck": { + "type": "bool", + "id": 26, + "offset": 712, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1891065348 + } + } + }, + "2070237326": { + "name": "class ParticleSystem2D*", + "bases": [ + "Window", + "PropertyClass" + ], + "hash": 2070237326, + "properties": { + "m_sName": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306437263 + }, + "m_Children": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621225959 + }, + "m_Style": { + "type": "unsigned int", + "id": 2, + "offset": 152, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "SCALE_CHILDREN": 2, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "FOCUS_LOCKED": 64, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152 + } + }, + "m_Flags": { + "type": "unsigned int", + "id": 3, + "offset": 156, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } + }, + "m_Window": { + "type": "class Rect", + "id": 4, + "offset": 160, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3105139380 + }, + "m_fTargetAlpha": { + "type": "float", + "id": 5, + "offset": 212, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1809129834 + }, + "m_fDisabledAlpha": { + "type": "float", + "id": 6, + "offset": 216, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1389987675 + }, + "m_fAlpha": { + "type": "float", + "id": 7, + "offset": 208, + "flags": 65671, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 482130755 + }, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3623628394 + }, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2102211316 + }, + "m_sScript": { + "type": "std::string", + "id": 10, + "offset": 352, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1846695875 + }, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3389835433 + }, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547159940 + }, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513510520 + }, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3091503757 + } + } + }, + "792239485": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 792239485, + "properties": { + "m_skip": { + "type": "unsigned int", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 431253060 + }, + "m_petTemplateID": { + "type": "unsigned int", + "id": 1, + "offset": 76, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 817215071 + }, + "m_hatchmakingPetGIDList": { + "type": "gid", + "id": 2, + "offset": 80, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 109341840 + }, + "m_hatchmakingPlayerGIDList": { + "type": "gid", + "id": 3, + "offset": 96, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1721119220 + } + } + }, + "1186655351": { + "name": "class RecipeWindow::RecipeItem", + "bases": [ + "ControlCheckBox", + "ControlButton", + "Window", + "PropertyClass" + ], + "hash": 1186655351, + "properties": { + "m_sName": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306437263 + }, + "m_Children": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621225959 + }, + "m_Style": { + "type": "unsigned int", + "id": 2, + "offset": 152, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152, + "EFFECT_SCALE": 67108864, + "LOCK_ICON_SIZE": 33554432, + "LEFT_TEXT": 536870912, + "NO_FIT_TEXT": 1073741824, + "CHECKBOX_TEXTOVERIMAGE": 16777216 + } + }, + "m_Flags": { + "type": "unsigned int", + "id": 3, + "offset": 156, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } + }, + "m_Window": { + "type": "class Rect", + "id": 4, + "offset": 160, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3105139380 + }, + "m_fTargetAlpha": { + "type": "float", + "id": 5, + "offset": 212, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1809129834 + }, + "m_fDisabledAlpha": { + "type": "float", + "id": 6, + "offset": 216, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1389987675 + }, + "m_fAlpha": { + "type": "float", + "id": 7, + "offset": 208, + "flags": 65671, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 482130755 + }, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3623628394 + }, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2102211316 + }, + "m_sScript": { + "type": "std::string", + "id": 10, + "offset": 352, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1846695875 + }, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3389835433 + }, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547159940 + }, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513510520 + }, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3091503757 + }, + "m_bToggle": { + "type": "bool", + "id": 16, + "offset": 608, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2071810903 + }, + "m_bButtonDown": { + "type": "bool", + "id": 17, + "offset": 609, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 840041705 + }, + "m_sLabel": { + "type": "std::wstring", + "id": 18, + "offset": 616, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2207009163 + }, + "m_labelOffset": { + "type": "class Rect", + "id": 19, + "offset": 832, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1990646723 + }, + "m_pButton": { + "type": "class SharedPointer", + "id": 20, + "offset": 656, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1543855875 + }, + "m_HotKey": { + "type": "unsigned int", + "id": 21, + "offset": 672, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1631553409 + }, + "m_Color": { + "type": "class Color", + "id": 22, + "offset": 676, + "flags": 262279, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1753714077 + }, + "m_bCursorOver": { + "type": "bool", + "id": 23, + "offset": 689, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 283981103 + }, + "m_bAbortWhenCursorNotOver": { + "type": "bool", + "id": 24, + "offset": 706, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 325405258 + }, + "m_bHotKeyDown": { + "type": "bool", + "id": 25, + "offset": 680, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 616989185 + }, + "m_fTime": { + "type": "float", + "id": 26, + "offset": 684, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 883746156 + }, + "m_bGreyed": { + "type": "bool", + "id": 27, + "offset": 688, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1566556053 + }, + "m_fMaxScale": { + "type": "float", + "id": 28, + "offset": 692, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2070186635 + }, + "m_fScaleSpeed": { + "type": "float", + "id": 29, + "offset": 696, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1457135702 + }, + "m_bUseDropShadow": { + "type": "bool", + "id": 30, + "offset": 704, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 93063037 + }, + "m_bUseOutline": { + "type": "bool", + "id": 31, + "offset": 705, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 744292994 + }, + "m_pGreyedState": { + "type": "class SharedPointer", + "id": 32, + "offset": 768, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2703352263 + }, + "m_pNormalState": { + "type": "class SharedPointer", + "id": 33, + "offset": 752, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1887909808 + }, + "m_pHighlightedState": { + "type": "class SharedPointer", + "id": 34, + "offset": 784, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2200177608 + }, + "m_pSelectedState": { + "type": "class SharedPointer", + "id": 35, + "offset": 800, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2266776432 + }, + "m_pDepressedState": { + "type": "class SharedPointer", + "id": 36, + "offset": 816, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1878185798 + }, + "m_nGroupID": { + "type": "int", + "id": 37, + "offset": 880, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 403966850 + }, + "m_bChecked": { + "type": "bool", + "id": 38, + "offset": 884, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 958955100 + }, + "m_pCheckedState": { + "type": "class SharedPointer", + "id": 39, + "offset": 888, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1210539694 + }, + "m_pCheckedGreyedState": { + "type": "class SharedPointer", + "id": 40, + "offset": 904, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2702030126 + }, + "m_pCheckedHighlightedState": { + "type": "class SharedPointer", + "id": 41, + "offset": 920, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1320097679 + }, + "m_pCheckedDepressedState": { + "type": "class SharedPointer", + "id": 42, + "offset": 936, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1609188685 + } + } + }, + "1640044984": { + "name": "class SharedPointer", + "bases": [ + "CombatRule", + "PropertyClass" + ], + "hash": 1640044984, + "properties": { + "m_baseCritDivisor": { + "type": "int", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1793948871 + }, + "m_baseBlockDivisor": { + "type": "int", + "id": 1, + "offset": 76, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 331192160 + }, + "m_critScalarDivisor": { + "type": "int", + "id": 2, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 353250050 + }, + "m_blockScalarDivisor": { + "type": "int", + "id": 3, + "offset": 84, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 778321147 + }, + "m_finalCritMedian1": { + "type": "float", + "id": 4, + "offset": 88, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1779518738 + }, + "m_finalCritMedian2": { + "type": "float", + "id": 5, + "offset": 92, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1779518739 + }, + "m_finalBlockMedian1": { + "type": "float", + "id": 6, + "offset": 96, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2233508235 + }, + "m_finalBlockMedian2": { + "type": "float", + "id": 7, + "offset": 100, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2233508236 + } + } + }, + "1186588230": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1186588230, + "properties": { + "m_boardKeyList": { + "type": "unsigned int", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2327762042 + }, + "m_boardValueList": { + "type": "unsigned int", + "id": 1, + "offset": 88, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1770021678 + }, + "m_pieceKeyList": { + "type": "unsigned int", + "id": 2, + "offset": 104, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1090726552 + }, + "m_pieceValueList": { + "type": "unsigned int", + "id": 3, + "offset": 120, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1110620364 + } + } + }, + "350505121": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 350505121, + "properties": { + "m_templateID": { + "type": "unsigned int", + "id": 0, + "offset": 128, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1286746870 + }, + "m_enchantment": { + "type": "unsigned int", + "id": 1, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2217886818 + }, + "m_pipCost": { + "type": "class SharedPointer", + "id": 2, + "offset": 176, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3605704820 + }, + "m_regularAdjust": { + "type": "int", + "id": 3, + "offset": 192, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1420453335 + }, + "m_magicSchoolID": { + "type": "unsigned int", + "id": 4, + "offset": 136, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 893146499 + }, + "m_accuracy": { + "type": "unsigned char", + "id": 5, + "offset": 132, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2273914939 + }, + "m_treasureCard": { + "type": "bool", + "id": 6, + "offset": 197, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1764879128 + }, + "m_battleCard": { + "type": "bool", + "id": 7, + "offset": 198, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1332843753 + }, + "m_itemCard": { + "type": "bool", + "id": 8, + "offset": 199, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1683654300 + }, + "m_sideBoard": { + "type": "bool", + "id": 9, + "offset": 200, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1897838368 + }, + "m_spellID": { + "type": "unsigned int", + "id": 10, + "offset": 204, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1697483258 + }, + "m_leavesPlayWhenCastOverride": { + "type": "bool", + "id": 11, + "offset": 216, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 874407398 + }, + "m_cloaked": { + "type": "bool", + "id": 12, + "offset": 196, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 7349510 + }, + "m_enchantmentSpellIsItemCard": { + "type": "bool", + "id": 13, + "offset": 76, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 531590701 + }, + "m_premutationSpellID": { + "type": "unsigned int", + "id": 14, + "offset": 112, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1530256370 + }, + "m_enchantedThisCombat": { + "type": "bool", + "id": 15, + "offset": 77, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1895738923 + }, + "m_paramOverrides": { + "type": "class SharedPointer", + "id": 16, + "offset": 224, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2061635599 + }, + "m_subEffectMeta": { + "type": "class SharedPointer", + "id": 17, + "offset": 240, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1944101106 + }, + "m_delayEnchantment": { + "type": "bool", + "id": 18, + "offset": 257, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 191336919 + }, + "m_PvE": { + "type": "bool", + "id": 19, + "offset": 264, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 269492350 + }, + "m_delayEnchantmentOrder": { + "type": "enum SpellEffect::kDelayOrder", + "id": 20, + "offset": 72, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2526055263, + "enum_options": { + "SpellEffect::kAnyOrder": 0, + "SpellEffect::kFirst": 1, + "SpellEffect::kSecond": 2 + } + }, + "m_roundAddedTC": { + "type": "int", + "id": 21, + "offset": 260, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 112365451 + }, + "m_secondarySchoolID": { + "type": "unsigned int", + "id": 22, + "offset": 304, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2081206026 + }, + "m_fusionState": { + "type": "enum Spell::FusionState", + "id": 23, + "offset": 308, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 835324539, + "enum_options": { + "FS_Invalid": 0, + "FS_Partial": 1, + "FS_Valid": 2 + } + } + } + }, + "2070401166": { + "name": "class ParticleSystem2D", + "bases": [ + "Window", + "PropertyClass" + ], + "hash": 2070401166, + "properties": { + "m_sName": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306437263 + }, + "m_Children": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621225959 + }, + "m_Style": { + "type": "unsigned int", + "id": 2, + "offset": 152, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "SCALE_CHILDREN": 2, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "FOCUS_LOCKED": 64, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152 + } + }, + "m_Flags": { + "type": "unsigned int", + "id": 3, + "offset": 156, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } + }, + "m_Window": { + "type": "class Rect", + "id": 4, + "offset": 160, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3105139380 + }, + "m_fTargetAlpha": { + "type": "float", + "id": 5, + "offset": 212, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1809129834 + }, + "m_fDisabledAlpha": { + "type": "float", + "id": 6, + "offset": 216, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1389987675 + }, + "m_fAlpha": { + "type": "float", + "id": 7, + "offset": 208, + "flags": 65671, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 482130755 + }, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3623628394 + }, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2102211316 + }, + "m_sScript": { + "type": "std::string", + "id": 10, + "offset": 352, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1846695875 + }, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3389835433 + }, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547159940 + }, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513510520 + }, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3091503757 + } + } + }, + "349849130": { + "name": "class SharedPointer", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 349849130, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + } + } + }, + "792240295": { + "name": "class BadgeTemplate*", + "bases": [ + "CoreTemplate", + "PropertyClass" + ], + "hash": 792240295, + "properties": { + "m_behaviors": { + "type": "class BehaviorTemplate*", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1197808594 + }, + "m_badgeName": { + "type": "std::string", + "id": 1, + "offset": 96, + "flags": 134217735, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3002948047 + }, + "m_badgeTitle": { + "type": "std::string", + "id": 2, + "offset": 136, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1783354256 + }, + "m_badgeInfo": { + "type": "std::string", + "id": 3, + "offset": 168, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3002782298 + }, + "m_badgeProgressInfo": { + "type": "std::string", + "id": 4, + "offset": 200, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1902667503 + }, + "m_badgeReplace": { + "type": "std::string", + "id": 5, + "offset": 256, + "flags": 268435463, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2644976426, + "enum_options": { + "__BASECLASS": "BadgeTemplate" + } + }, + "m_clearRegistry": { + "type": "bool", + "id": 6, + "offset": 248, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2092369011 + }, + "m_requirements": { + "type": "class RequirementList*", + "id": 7, + "offset": 232, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2840985510 + }, + "m_completeResults": { + "type": "class ResultList*", + "id": 8, + "offset": 240, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1964258099 + }, + "m_badgeAdjectives": { + "type": "std::string", + "id": 9, + "offset": 312, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 3438296880 + }, + "m_registryName": { + "type": "std::string", + "id": 10, + "offset": 344, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2065929269 + }, + "m_registryValue": { + "type": "int", + "id": 11, + "offset": 376, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1578365616 + }, + "m_showTitle": { + "type": "bool", + "id": 12, + "offset": 380, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2128418998 + }, + "m_autoAddBadge": { + "type": "bool", + "id": 13, + "offset": 381, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 236591912 + }, + "m_index": { + "type": "unsigned int", + "id": 14, + "offset": 384, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1009433893 + }, + "m_badgeOutline": { + "type": "std::string", + "id": 15, + "offset": 392, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1548975214 + }, + "m_badgeImage": { + "type": "std::string", + "id": 16, + "offset": 424, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1770432017 + }, + "m_dynamicBadge": { + "type": "bool", + "id": 17, + "offset": 456, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1496846667 + }, + "m_badgeFilterName": { + "type": "std::string", + "id": 18, + "offset": 464, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2268560533 + }, + "m_extraCredit": { + "type": "bool", + "id": 19, + "offset": 504, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 847737554 + }, + "m_overcount": { + "type": "bool", + "id": 20, + "offset": 505, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 203918520 + }, + "m_overcountInterval": { + "type": "unsigned int", + "id": 21, + "offset": 508, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1845137015 + }, + "m_overcountLootTable": { + "type": "std::string", + "id": 22, + "offset": 512, + "flags": 268435463, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3493569350, + "enum_options": { + "__BASECLASS": "LootTable" + } + }, + "m_recurringRewardsDescription": { + "type": "std::string", + "id": 23, + "offset": 544, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1668915496 + }, + "m_rewardLootTable": { + "type": "std::string", + "id": 24, + "offset": 576, + "flags": 268435463, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3635244294, + "enum_options": { + "__BASECLASS": "LootTable" + } + }, + "m_requiredAutoAddBadgeList": { + "type": "std::string", + "id": 25, + "offset": 608, + "flags": 268435463, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 3633108301, + "enum_options": { + "__BASECLASS": "BadgeTemplate" + } + }, + "m_forceRequirementsCheck": { + "type": "bool", + "id": 26, + "offset": 712, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1891065348 + } + } + }, + "1640223391": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1640223391, + "properties": { + "m_name": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1717359772 + }, + "m_ID": { + "type": "int", + "id": 1, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2090585127 + }, + "m_parentTabID": { + "type": "int", + "id": 2, + "offset": 108, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 16409672 + }, + "m_description": { + "type": "std::string", + "id": 3, + "offset": 112, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1649374815 + }, + "m_iconResource": { + "type": "std::string", + "id": 4, + "offset": 144, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2838396012 + }, + "m_tags": { + "type": "std::string", + "id": 5, + "offset": 184, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1717575210 + }, + "m_dontFilterOwnedRecoItems": { + "type": "bool", + "id": 6, + "offset": 216, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2079281430 + }, + "m_allowMultipleBuy": { + "type": "bool", + "id": 7, + "offset": 217, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 831782030 + }, + "m_forceDisallowMultipleBuy": { + "type": "bool", + "id": 8, + "offset": 218, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 19425277 + }, + "m_isHousesCategory": { + "type": "bool", + "id": 9, + "offset": 220, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1982819524 + }, + "m_isEverythingCategory": { + "type": "bool", + "id": 10, + "offset": 219, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 111927122 + }, + "m_isGroupElixirsCategory": { + "type": "bool", + "id": 11, + "offset": 221, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 768811642 + } + } + }, + "1186792113": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1186792113, + "properties": { + "m_polymorphTypeList": { + "type": "class SharedPointer", + "id": 0, + "offset": 80, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": true, + "pointer": true, + "hash": 1494222584 + } + } + }, + "2070752429": { + "name": "class std::vector >", + "bases": [], + "hash": 2070752429, + "properties": {} + }, + "350281726": { + "name": "class PositionalStateSoundBehaviorTemplate*", + "bases": [ + "PositionalSoundBehaviorTemplate", + "SoundBehaviorTemplate", + "AreaBehaviorTemplate", + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 350281726, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + }, + "m_radius": { + "type": "float", + "id": 1, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 989410271 + }, + "m_category": { + "type": "enum AudioCategory", + "id": 2, + "offset": 124, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2951251982, + "enum_options": { + "AudioCategory_Irrelevent": 0, + "AudioCategory_Accoustic": 1, + "AudioCategory_Noise": 2, + "AudioCategory_Music": 3, + "AudioCategory_MusicAtSFXVolume": 4, + "AudioCategory_Dialog": 5, + "AudioCategory_UI": 6, + "AudioCategory_NoiseAtMusicVolume": 7 + } + }, + "m_exclusive": { + "type": "bool", + "id": 3, + "offset": 128, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 824383403 + }, + "m_active": { + "type": "bool", + "id": 4, + "offset": 129, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 239335471 + }, + "m_enableReqs": { + "type": "class SharedPointer", + "id": 5, + "offset": 136, + "flags": 263, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3158020443 + }, + "m_trackFilenameList": { + "type": "std::string", + "id": 6, + "offset": 152, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2531081709 + }, + "m_playList": { + "type": "class PlayListEntry*", + "id": 7, + "offset": 176, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 3907873161 + }, + "m_priority": { + "type": "int", + "id": 8, + "offset": 208, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1235205852 + }, + "m_volume": { + "type": "float", + "id": 9, + "offset": 200, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1162855023 + }, + "m_loopCount": { + "type": "int", + "id": 10, + "offset": 204, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 865634717 + }, + "m_progression": { + "type": "enum PlayList::Progression", + "id": 11, + "offset": 220, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3279400238, + "enum_options": { + "Sequence": 0, + "Random": 1, + "SequenceOnceOnly": 2, + "RandomNoRepeat": 3 + } + }, + "m_progressMin": { + "type": "float", + "id": 12, + "offset": 212, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1497550192 + }, + "m_progressMax": { + "type": "float", + "id": 13, + "offset": 216, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1497549938 + }, + "m_audioFilterSet": { + "type": "unsigned int", + "id": 14, + "offset": 224, + "flags": 33554439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 831339825 + }, + "m_animationNameFilter": { + "type": "std::string", + "id": 15, + "offset": 232, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2292854242 + }, + "m_functionallabel": { + "type": "std::string", + "id": 16, + "offset": 264, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3589331278 + }, + "m_innerRadius": { + "type": "float", + "id": 17, + "offset": 296, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 686816091 + }, + "m_inverted": { + "type": "bool", + "id": 18, + "offset": 300, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1034821044 + } + } + }, + "1186748545": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1186748545, + "properties": { + "m_fxToReplace": { + "type": "std::string", + "id": 0, + "offset": 112, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2301964408 + }, + "m_fxReplaceWith": { + "type": "std::string", + "id": 1, + "offset": 144, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2445657937 + }, + "m_fxCastToReplace": { + "type": "std::string", + "id": 2, + "offset": 176, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2287885731 + }, + "m_fxCastReplaceWith": { + "type": "std::string", + "id": 3, + "offset": 208, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2146364220 + }, + "m_fxFidgetToReplace": { + "type": "std::string", + "id": 4, + "offset": 240, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3444964235 + }, + "m_fxFidgetReplaceWith": { + "type": "std::string", + "id": 5, + "offset": 272, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1631953700 + } + } + }, + "792420898": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 792420898, + "properties": { + "m_adventurePartyList": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2274288621 + } + } + }, + "2073428137": { + "name": "class SharedPointer", + "bases": [ + "ActorDeathCinematicAction", + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 2073428137, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + } + } + }, + "351609529": { + "name": "class ControlTickedSlider", + "bases": [ + "ControlSlider", + "ControlBar", + "Window", + "PropertyClass" + ], + "hash": 351609529, + "properties": { + "m_sName": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306437263 + }, + "m_Children": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621225959 + }, + "m_Style": { + "type": "unsigned int", + "id": 2, + "offset": 152, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152 + } + }, + "m_Flags": { + "type": "unsigned int", + "id": 3, + "offset": 156, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } + }, + "m_Window": { + "type": "class Rect", + "id": 4, + "offset": 160, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3105139380 + }, + "m_fTargetAlpha": { + "type": "float", + "id": 5, + "offset": 212, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1809129834 + }, + "m_fDisabledAlpha": { + "type": "float", + "id": 6, + "offset": 216, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1389987675 + }, + "m_fAlpha": { + "type": "float", + "id": 7, + "offset": 208, + "flags": 65671, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 482130755 + }, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3623628394 + }, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2102211316 + }, + "m_sScript": { + "type": "std::string", + "id": 10, + "offset": 352, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1846695875 + }, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3389835433 + }, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547159940 + }, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513510520 + }, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3091503757 + }, + "m_fPosition": { + "type": "float", + "id": 16, + "offset": 584, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1808212114 + }, + "m_BaseColor": { + "type": "class Color", + "id": 17, + "offset": 588, + "flags": 262279, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2172251096 + }, + "m_BarColor": { + "type": "class Color", + "id": 18, + "offset": 592, + "flags": 262279, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2259916498 + }, + "m_bDisplayVertical": { + "type": "bool", + "id": 19, + "offset": 596, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1359621189 + }, + "m_pBarMaterial": { + "type": "class SharedPointer", + "id": 20, + "offset": 600, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2481929515 + }, + "m_pTopLeftMaterial": { + "type": "class SharedPointer", + "id": 21, + "offset": 616, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3248096916 + }, + "m_pCenterMaterial": { + "type": "class SharedPointer", + "id": 22, + "offset": 632, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1519560055 + }, + "m_pBottomRightMaterial": { + "type": "class SharedPointer", + "id": 23, + "offset": 648, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2932444745 + }, + "m_fMin": { + "type": "float", + "id": 24, + "offset": 700, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 309551905 + }, + "m_fMax": { + "type": "float", + "id": 25, + "offset": 704, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 309551651 + }, + "m_nTabWidth": { + "type": "int", + "id": 26, + "offset": 708, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1554957503 + }, + "m_nNumberOfTicks": { + "type": "int", + "id": 27, + "offset": 712, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1073178596 + } + } + }, + "1644385755": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1644385755, + "properties": { + "m_volume": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1162855023 + }, + "m_loopCount": { + "type": "int", + "id": 1, + "offset": 76, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 865634717 + }, + "m_priority": { + "type": "int", + "id": 2, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1235205852 + }, + "m_progression": { + "type": "enum CinematicSoundEmitterInfo::Progression", + "id": 3, + "offset": 84, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2562723160, + "enum_options": { + "Sequence": 0, + "Random": 1, + "SequenceOnceOnly": 2, + "RandomNoRepeat": 3 + } + }, + "m_progressMin": { + "type": "float", + "id": 4, + "offset": 88, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1497550192 + }, + "m_progressMax": { + "type": "float", + "id": 5, + "offset": 92, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1497549938 + }, + "m_trackFilenameList": { + "type": "std::string", + "id": 6, + "offset": 96, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2531081709 + }, + "m_category": { + "type": "enum CinematicSoundEmitterInfo::AudioCategory", + "id": 7, + "offset": 120, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2525629195, + "enum_options": { + "AudioCategory_Irrelevent": 0, + "AudioCategory_Accoustic": 1, + "AudioCategory_Noise": 2, + "AudioCategory_Music": 3, + "AudioCategory_MusicAtSFXVolume": 4, + "AudioCategory_Dialog": 5, + "AudioCategory_UI": 6, + "AudioCategory_NoiseAtMusicVolume": 7 + } + }, + "m_name": { + "type": "std::string", + "id": 8, + "offset": 144, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1717359772 + }, + "m_useClientLocation": { + "type": "bool", + "id": 9, + "offset": 176, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 98585784 + }, + "m_fadeInDuration": { + "type": "float", + "id": 10, + "offset": 124, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 770484100 + }, + "m_fadeOutDuration": { + "type": "float", + "id": 11, + "offset": 128, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 666963557 + }, + "m_wetReverb": { + "type": "float", + "id": 12, + "offset": 136, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1024635181 + }, + "m_dryReverb": { + "type": "float", + "id": 13, + "offset": 132, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 403787084 + }, + "m_isStreamed": { + "type": "bool", + "id": 14, + "offset": 140, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 906929764 + } + } + }, + "2071813018": { + "name": "class SharedPointer", + "bases": [ + "GameEffectInfo", + "PropertyClass" + ], + "hash": 2071813018, + "properties": { + "m_effectName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2029161513 + }, + "m_lootTableName": { + "type": "std::string", + "id": 1, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2333333378 + }, + "m_description": { + "type": "std::string", + "id": 2, + "offset": 136, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1649374815 + } + } + }, + "350837933": { + "name": "class ClientObject", + "bases": [ + "CoreObject", + "PropertyClass" + ], + "hash": 350837933, + "properties": { + "m_inactiveBehaviors": { + "type": "class SharedPointer", + "id": 0, + "offset": 224, + "flags": 31, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1850812559 + }, + "m_globalID.m_full": { + "type": "unsigned __int64", + "id": 1, + "offset": 72, + "flags": 16777247, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2312465444 + }, + "m_permID": { + "type": "unsigned __int64", + "id": 2, + "offset": 80, + "flags": 16777247, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1298909658 + }, + "m_location": { + "type": "class Vector3D", + "id": 3, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2239683611 + }, + "m_orientation": { + "type": "class Vector3D", + "id": 4, + "offset": 180, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2344058766 + }, + "m_fScale": { + "type": "float", + "id": 5, + "offset": 196, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 503137701 + }, + "m_templateID.m_full": { + "type": "unsigned __int64", + "id": 6, + "offset": 96, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 633907631 + }, + "m_debugName": { + "type": "std::string", + "id": 7, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3553984419 + }, + "m_displayKey": { + "type": "std::string", + "id": 8, + "offset": 136, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3023276954 + }, + "m_zoneTagID": { + "type": "unsigned int", + "id": 9, + "offset": 344, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 965291410 + }, + "m_speedMultiplier": { + "type": "short", + "id": 10, + "offset": 192, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 123130076 + }, + "m_nMobileID": { + "type": "unsigned short", + "id": 11, + "offset": 194, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1054318939 + }, + "m_characterId": { + "type": "gid", + "id": 12, + "offset": 440, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 210498418 + } + } + }, + "794346298": { + "name": "class SharedPointer", + "bases": [ + "ObstacleCoursePusherBehavior", + "ObstacleCourseObstaclePathBase", + "ObstacleCourseObstacleBehavior", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 794346298, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + } + } + }, + "1642187547": { + "name": "class std::vector >", + "bases": [], + "hash": 1642187547, + "properties": {} + }, + "1191779065": { + "name": "class GuildMuseumArtifactInfo*", + "bases": [ + "PropertyClass" + ], + "hash": 1191779065, + "properties": { + "m_templateID": { + "type": "unsigned int", + "id": 0, + "offset": 72, + "flags": 33554439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1286746870 + }, + "m_tier1": { + "type": "unsigned int", + "id": 1, + "offset": 76, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1022300786 + }, + "m_tier2": { + "type": "unsigned int", + "id": 2, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1022300787 + }, + "m_tier3": { + "type": "unsigned int", + "id": 3, + "offset": 84, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1022300788 + }, + "m_tier4": { + "type": "unsigned int", + "id": 4, + "offset": 88, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1022300789 + }, + "m_overrideDisplayName": { + "type": "std::string", + "id": 5, + "offset": 96, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3370041362 + }, + "m_description": { + "type": "std::string", + "id": 6, + "offset": 128, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1649374815 + }, + "m_foundInCantripChests": { + "type": "bool", + "id": 7, + "offset": 160, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2091052609 + }, + "m_equivalentTemplateIDList": { + "type": "unsigned int", + "id": 8, + "offset": 168, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 318979600 + }, + "m_overrideLocation": { + "type": "std::string", + "id": 9, + "offset": 192, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3616295668 + } + } + }, + "793513471": { + "name": "class SharedPointer", + "bases": [ + "ControlButtonState", + "PropertyClass" + ], + "hash": 793513471, + "properties": { + "m_nMaterialFrame": { + "type": "int", + "id": 0, + "offset": 72, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1641923970 + } + } + }, + "1641443024": { + "name": "class ClientActorDeathCinematicAction", + "bases": [ + "ActorDeathCinematicAction", + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 1641443024, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + } + } + }, + "1188282081": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1188282081, + "properties": { + "m_talentName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2455147588 + }, + "m_triggeredSpells": { + "type": "std::string", + "id": 1, + "offset": 104, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2939702987 + } + } + }, + "1640960940": { + "name": "class SharedPointer", + "bases": [ + "StatGlobe", + "ControlSprite", + "Window", + "PropertyClass" + ], + "hash": 1640960940, + "properties": { + "m_sName": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306437263 + }, + "m_Children": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621225959 + }, + "m_Style": { + "type": "unsigned int", + "id": 2, + "offset": 152, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "SCALE_CHILDREN": 2, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "FOCUS_LOCKED": 64, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152 + } + }, + "m_Flags": { + "type": "unsigned int", + "id": 3, + "offset": 156, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648, + "ONE_SHOT": 8388608, + "FLIPPED_HORIZONTAL": 16777216, + "FLIPPED_VERTICAL": 33554432 + } + }, + "m_Window": { + "type": "class Rect", + "id": 4, + "offset": 160, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3105139380 + }, + "m_fTargetAlpha": { + "type": "float", + "id": 5, + "offset": 212, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1809129834 + }, + "m_fDisabledAlpha": { + "type": "float", + "id": 6, + "offset": 216, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1389987675 + }, + "m_fAlpha": { + "type": "float", + "id": 7, + "offset": 208, + "flags": 65671, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 482130755 + }, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3623628394 + }, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2102211316 + }, + "m_sScript": { + "type": "std::string", + "id": 10, + "offset": 352, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1846695875 + }, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3389835433 + }, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547159940 + }, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513510520 + }, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3091503757 + }, + "m_pMaterial": { + "type": "class SharedPointer", + "id": 16, + "offset": 592, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3479277078 + }, + "m_fRotation": { + "type": "float", + "id": 17, + "offset": 608, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1175400173 + }, + "m_Color": { + "type": "class Color", + "id": 18, + "offset": 584, + "flags": 262279, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1753714077 + }, + "m_textColor": { + "type": "class Color", + "id": 19, + "offset": 612, + "flags": 262279, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2528109250 + }, + "m_textComponent": { + "type": "class TextComponent", + "id": 20, + "offset": 616, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3491704390 + }, + "m_amount": { + "type": "int", + "id": 21, + "offset": 800, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 248546638 + } + } + }, + "1188083506": { + "name": "class PlaySoundInfo*", + "bases": [ + "PropertyClass" + ], + "hash": 1188083506, + "properties": { + "m_assetName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513131580 + }, + "m_gain": { + "type": "float", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 309609622 + }, + "m_loopCount": { + "type": "int", + "id": 2, + "offset": 108, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 865634717 + }, + "m_stream": { + "type": "bool", + "id": 3, + "offset": 112, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 963856287 + }, + "m_priority": { + "type": "int", + "id": 4, + "offset": 116, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1235205852 + }, + "m_category": { + "type": "enum AudioCategory", + "id": 5, + "offset": 120, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2951251982, + "enum_options": { + "AudioCategory_Irrelevent": 0, + "AudioCategory_Accoustic": 1, + "AudioCategory_Noise": 2, + "AudioCategory_Music": 3 + } + }, + "m_pitch": { + "type": "float", + "id": 6, + "offset": 124, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 896371695 + }, + "m_maxInstances": { + "type": "int", + "id": 7, + "offset": 128, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1704365544 + }, + "m_pan": { + "type": "float", + "id": 8, + "offset": 132, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 357246518 + } + } + }, + "2073825284": { + "name": "class RequirementFailureData", + "bases": [], + "hash": 2073825284, + "properties": {} + }, + "352071518": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 352071518, + "properties": { + "m_commandName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1931590331 + }, + "m_command": { + "type": "std::string", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1618022938 + } + } + }, + "794157837": { + "name": "class ReqGetExhibitState*", + "bases": [ + "ReqNumeric", + "Requirement", + "PropertyClass" + ], + "hash": 794157837, + "properties": { + "m_applyNOT": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1746328074, + "enum_options": { + "__DEFAULT": 0 + } + }, + "m_operator": { + "type": "enum Requirement::Operator", + "id": 1, + "offset": 76, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2672792317, + "enum_options": { + "ROP_AND": 0, + "ROP_OR": 1, + "__DEFAULT": "ROP_AND" + } + }, + "m_numericValue": { + "type": "float", + "id": 2, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 521915239 + }, + "m_operatorType": { + "type": "enum ReqNumeric::OPERATOR_TYPE", + "id": 3, + "offset": 84, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2228122961, + "enum_options": { + "OPERATOR_UNKNOWN": 4294967295, + "OPERATOR_EQUALS": 0, + "OPERATOR_GREATER_THAN": 1, + "OPERATOR_LESS_THAN": 2, + "OPERATOR_GREATER_THAN_EQ": 3, + "OPERATOR_LESS_THAN_EQ": 4 + } + }, + "m_galleryWorld": { + "type": "std::string", + "id": 4, + "offset": 88, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3310813907 + }, + "m_exhibitName": { + "type": "std::string", + "id": 5, + "offset": 120, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1832300681 + }, + "m_testValue": { + "type": "float", + "id": 6, + "offset": 152, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1624748404 + } + } + }, + "1187057175": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1187057175, + "properties": { + "m_moraleBase": { + "type": "int", + "id": 0, + "offset": 76, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": true, + "pointer": false, + "hash": 1266117365 + }, + "m_rateBase": { + "type": "int", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": true, + "pointer": false, + "hash": 509523265 + }, + "m_speedBoostBase": { + "type": "int", + "id": 2, + "offset": 84, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": true, + "pointer": false, + "hash": 1322305965 + }, + "m_speedometerMin": { + "type": "unsigned int", + "id": 3, + "offset": 88, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": true, + "pointer": false, + "hash": 2086670670 + }, + "m_speedometerMax": { + "type": "unsigned int", + "id": 4, + "offset": 92, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": true, + "pointer": false, + "hash": 2086670416 + }, + "m_willTerrainFactor": { + "type": "float", + "id": 5, + "offset": 96, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": true, + "pointer": false, + "hash": 1504784419 + }, + "m_intelligenceTerrainFactor": { + "type": "float", + "id": 6, + "offset": 100, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": true, + "pointer": false, + "hash": 1222264734 + }, + "m_agilityTerrainFactor": { + "type": "float", + "id": 7, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": true, + "pointer": false, + "hash": 739714590 + }, + "m_strengthTerrainFactor": { + "type": "float", + "id": 8, + "offset": 108, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": true, + "pointer": false, + "hash": 2193163834 + }, + "m_moraleBaseChance": { + "type": "int", + "id": 9, + "offset": 112, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": true, + "pointer": false, + "hash": 1198290007 + }, + "m_startingSpeed": { + "type": "int", + "id": 10, + "offset": 116, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": true, + "pointer": false, + "hash": 2138873047 + }, + "m_cheerCostBase": { + "type": "int", + "id": 11, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": true, + "pointer": false, + "hash": 260219765 + }, + "m_fMoraleFactor": { + "type": "float", + "id": 12, + "offset": 124, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": true, + "pointer": false, + "hash": 1908498588 + }, + "m_fTerrainCostFactor": { + "type": "float", + "id": 13, + "offset": 128, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": true, + "pointer": false, + "hash": 1632613482 + }, + "m_fSpeedBoostFactor": { + "type": "float", + "id": 14, + "offset": 132, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": true, + "pointer": false, + "hash": 1763479636 + }, + "m_cheerTimerInMS": { + "type": "int", + "id": 15, + "offset": 136, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": true, + "pointer": false, + "hash": 1155591641 + }, + "m_slowTimerInMS": { + "type": "int", + "id": 16, + "offset": 140, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": true, + "pointer": false, + "hash": 2014411479 + }, + "m_cobblestoneCost": { + "type": "int", + "id": 17, + "offset": 144, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": true, + "pointer": false, + "hash": 539222659 + }, + "m_terrainEffects": { + "type": "class SharedPointer", + "id": 18, + "offset": 208, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": true, + "pointer": true, + "hash": 3143618983 + }, + "m_cheerEffects": { + "type": "class SharedPointer", + "id": 19, + "offset": 224, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": true, + "pointer": true, + "hash": 1565796382 + }, + "m_slowEffects": { + "type": "class SharedPointer", + "id": 20, + "offset": 240, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": true, + "pointer": true, + "hash": 409034140 + }, + "m_tracks": { + "type": "class SharedPointer", + "id": 21, + "offset": 152, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": true, + "pointer": true, + "hash": 1978381840 + } + } + }, + "352463339": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 352463339, + "properties": { + "m_displayID": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 65543, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1022427803 + } + } + }, + "1641732241": { + "name": "class SharedPointer", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 1641732241, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + }, + "m_materialName": { + "type": "std::string", + "id": 1, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1878140043 + }, + "m_red": { + "type": "float", + "id": 2, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 357248818 + }, + "m_green": { + "type": "float", + "id": 3, + "offset": 156, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 886005576 + }, + "m_blue": { + "type": "float", + "id": 4, + "offset": 160, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 309442303 + }, + "m_hasShadow": { + "type": "bool", + "id": 5, + "offset": 164, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1762388821 + }, + "m_animate": { + "type": "bool", + "id": 6, + "offset": 165, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1790956978 + }, + "m_defaultSignText": { + "type": "std::string", + "id": 7, + "offset": 168, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3351101718 + } + } + }, + "2078347732": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 2078347732, + "properties": { + "m_slotRequirements": { + "type": "class RequirementList*", + "id": 0, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2462163144 + }, + "m_adjectivesAND": { + "type": "std::string", + "id": 1, + "offset": 160, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 3196570032 + }, + "m_adjectivesOR": { + "type": "std::string", + "id": 2, + "offset": 176, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2525395710 + }, + "m_adjectivesNOT": { + "type": "std::string", + "id": 3, + "offset": 192, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 3196584238 + }, + "m_slotName": { + "type": "std::string", + "id": 4, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2819781566 + }, + "m_slotCategory": { + "type": "std::string", + "id": 5, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1940993755 + }, + "m_maxItemCount": { + "type": "unsigned int", + "id": 6, + "offset": 144, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 865719819 + } + } + }, + "794376094": { + "name": "class SharedPointer", + "bases": [ + "InfractionPenalty", + "PropertyClass" + ], + "hash": 794376094, + "properties": { + "m_internalID": { + "type": "unsigned int", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1854540375 + }, + "m_categoryID": { + "type": "unsigned int", + "id": 1, + "offset": 76, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1382795736 + }, + "m_removeAtPointValue": { + "type": "float", + "id": 2, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2112196961 + }, + "m_expireTime": { + "type": "unsigned int", + "id": 3, + "offset": 84, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1836304873 + }, + "m_duration": { + "type": "unsigned int", + "id": 4, + "offset": 88, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1041524755 + } + } + }, + "1641545040": { + "name": "class SharedPointer", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 1641545040, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + }, + "m_equivalentItemTemplateID": { + "type": "gid", + "id": 1, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 657877294 + } + } + }, + "1188278876": { + "name": "class DamageScalarOverride*", + "bases": [ + "CombatRule", + "PropertyClass" + ], + "hash": 1188278876, + "properties": { + "m_scalarDamage": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1865068300 + }, + "m_scalarPierce": { + "type": "float", + "id": 1, + "offset": 76, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 196427621 + }, + "m_scalarResist": { + "type": "float", + "id": 2, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 270448583 + } + } + }, + "2076283146": { + "name": "class Reco::CategoryData", + "bases": [ + "PropertyClass" + ], + "hash": 2076283146, + "properties": { + "m_id": { + "type": "int", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2090586215 + }, + "m_items": { + "type": "class SharedPointer", + "id": 1, + "offset": 80, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 966759714 + } + } + }, + "1188083511": { + "name": "class PlaySoundInfo", + "bases": [ + "PropertyClass" + ], + "hash": 1188083511, + "properties": { + "m_assetName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513131580 + }, + "m_gain": { + "type": "float", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 309609622 + }, + "m_loopCount": { + "type": "int", + "id": 2, + "offset": 108, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 865634717 + }, + "m_stream": { + "type": "bool", + "id": 3, + "offset": 112, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 963856287 + }, + "m_priority": { + "type": "int", + "id": 4, + "offset": 116, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1235205852 + }, + "m_category": { + "type": "enum AudioCategory", + "id": 5, + "offset": 120, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2951251982, + "enum_options": { + "AudioCategory_Irrelevent": 0, + "AudioCategory_Accoustic": 1, + "AudioCategory_Noise": 2, + "AudioCategory_Music": 3 + } + }, + "m_pitch": { + "type": "float", + "id": 6, + "offset": 124, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 896371695 + }, + "m_maxInstances": { + "type": "int", + "id": 7, + "offset": 128, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1704365544 + }, + "m_pan": { + "type": "float", + "id": 8, + "offset": 132, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 357246518 + } + } + }, + "2076171901": { + "name": "class ClientAddBacklashEffectCinematicAction*", + "bases": [ + "AddBacklashEffectCinematicAction", + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 2076171901, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + }, + "m_backlashEffect": { + "type": "std::string", + "id": 2, + "offset": 120, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3051687009 + } + } + }, + "355842646": { + "name": "class CrownShopLayout*", + "bases": [ + "PropertyClass" + ], + "hash": 355842646, + "properties": { + "m_categories": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2811511766 + }, + "m_tabs": { + "type": "class SharedPointer", + "id": 1, + "offset": 88, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 895280674 + } + } + }, + "795152686": { + "name": "class CombatResolver", + "bases": [ + "PropertyClass" + ], + "hash": 795152686, + "properties": { + "m_bGlobalEffect": { + "type": "bool", + "id": 0, + "offset": 112, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1403478355 + }, + "m_globalEffect": { + "type": "class SharedPointer", + "id": 1, + "offset": 120, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 967055913 + }, + "m_battlefieldEffects": { + "type": "class SharedPointer", + "id": 2, + "offset": 136, + "flags": 31, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1245973515 + } + } + }, + "2074914700": { + "name": "class ClientPlayComplexSoundCinematicAction*", + "bases": [ + "PlayComplexSoundCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 2074914700, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_cinematicSoundEmitterInfo": { + "type": "class SharedPointer", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2303770088 + } + } + }, + "355694195": { + "name": "class SharedPointer", + "bases": [ + "WindowAnimation", + "PropertyClass" + ], + "hash": 355694195, + "properties": { + "m_bUseDeepCopy": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 433380635 + }, + "m_scale": { + "type": "float", + "id": 1, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 899693439 + } + } + }, + "1641769117": { + "name": "class OldWizardEquippedItemInfo*", + "bases": [ + "EquippedItemInfo", + "PropertyClass" + ], + "hash": 1641769117, + "properties": { + "m_itemID": { + "type": "unsigned int", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 780964329 + }, + "m_baseColor": { + "type": "bui5", + "id": 1, + "offset": 88, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1433198221 + }, + "m_trimColor": { + "type": "bui5", + "id": 2, + "offset": 92, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1198446862 + }, + "m_pattern": { + "type": "bui5", + "id": 3, + "offset": 96, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1338360593 + } + } + }, + "354734785": { + "name": "class SpellCardAttachmentBehaviorTemplate*", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 354734785, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + }, + "m_spellNames": { + "type": "std::string", + "id": 1, + "offset": 120, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2136089135 + }, + "m_targetNode": { + "type": "std::string", + "id": 2, + "offset": 136, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2698500040 + }, + "m_offset": { + "type": "class Vector3D", + "id": 3, + "offset": 168, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2445636425 + }, + "m_rotate": { + "type": "class Vector3D", + "id": 4, + "offset": 180, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2574199889 + }, + "m_height": { + "type": "float", + "id": 5, + "offset": 192, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 602977104 + }, + "m_alpha": { + "type": "float", + "id": 6, + "offset": 196, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 878686493 + }, + "m_cycleRate": { + "type": "float", + "id": 7, + "offset": 200, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 947046355 + } + } + }, + "1188278900": { + "name": "class DamageScalarOverride", + "bases": [ + "CombatRule", + "PropertyClass" + ], + "hash": 1188278900, + "properties": { + "m_scalarDamage": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1865068300 + }, + "m_scalarPierce": { + "type": "float", + "id": 1, + "offset": 76, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 196427621 + }, + "m_scalarResist": { + "type": "float", + "id": 2, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 270448583 + } + } + }, + "353148171": { + "name": "struct MoveStateAnimation", + "bases": [ + "PropertyClass" + ], + "hash": 353148171, + "properties": { + "m_nMoveState": { + "type": "enum MoveState", + "id": 0, + "offset": 72, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1430960270, + "enum_options": { + "MS_WALKING": 0, + "MS_RUNNING": 1, + "MS_SWIMMING": 2, + "MS_FLYING": 3, + "MS_JUMPING": 4, + "MS_FALLING": 5, + "MS_SLIDING": 6, + "__DEFAULT": "MS_WALKING" + } + }, + "m_nMoveAnimation": { + "type": "enum MoveAnimation", + "id": 1, + "offset": 76, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3179560950, + "enum_options": { + "MA_IDLE": 0, + "MA_FORWARD": 1, + "MA_BACK": 2, + "MA_LEFT": 3, + "MA_RIGHT": 4, + "MA_TURNLEFT": 5, + "MA_TURNRIGHT": 6, + "__DEFAULT": "MA_IDLE" + } + }, + "m_sAnimationName": { + "type": "std::string", + "id": 2, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1757815023 + } + } + }, + "797250852": { + "name": "class ZoneGateOption", + "bases": [ + "ServiceOptionBase", + "PropertyClass" + ], + "hash": 797250852, + "properties": { + "m_serviceName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2206028813 + }, + "m_iconKey": { + "type": "std::string", + "id": 1, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2457138637 + }, + "m_displayKey": { + "type": "std::string", + "id": 2, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3023276954 + }, + "m_serviceIndex": { + "type": "unsigned int", + "id": 3, + "offset": 204, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2103126710 + }, + "m_forceInteract": { + "type": "bool", + "id": 4, + "offset": 200, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1705789564 + } + } + }, + "795798843": { + "name": "class FurnitureEssenceLootInfo*", + "bases": [ + "ItemLootInfo", + "LootInfo", + "LootInfoBase", + "PropertyClass" + ], + "hash": 795798843, + "properties": { + "m_lootType": { + "type": "enum LootInfo::LOOT_TYPE", + "id": 0, + "offset": 72, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1591891442, + "enum_options": { + "LOOT_TYPE_NONE": 0, + "LOOT_TYPE_GOLD": 1, + "LOOT_TYPE_MANA": 2, + "LOOT_TYPE_ITEM": 3, + "LOOT_TYPE_TREASURE_CARD": 4, + "LOOT_TYPE_MAGIC_XP": 5, + "LOOT_TYPE_ADD_SPELL": 6, + "LOOT_TYPE_MAX_HEALTH": 7, + "LOOT_TYPE_MAX_GOLD": 8, + "LOOT_TYPE_MAX_MANA": 9, + "LOOT_TYPE_MAX_POTION": 10, + "LOOT_TYPE_TRAINING_POINTS": 11, + "LOOT_TYPE_RECIPE": 12, + "LOOT_TYPE_CRAFTING_SLOT": 13, + "LOOT_TYPE_REAGENT": 14, + "LOOT_TYPE_PETSNACK": 15, + "LOOT_TYPE_GARDENING_XP": 16, + "LOOT_TYPE_PET_XP": 17, + "LOOT_TYPE_TREASURE_TABLE": 18, + "LOOT_TYPE_ARENA_POINTS": 19, + "LOOT_TYPE_ARENA_BONUS_POINTS": 20, + "LOOT_TYPE_GROUP": 21, + "LOOT_TYPE_FISHING_XP": 22, + "LOOT_TYPE_EVENT_CURRENCY_1": 24, + "LOOT_TYPE_EVENT_CURRENCY_2": 25, + "LOOT_TYPE_PVP_CURRENCY": 26, + "LOOT_TYPE_PVP_CURRENCY_BONUS": 27, + "LOOT_TYPE_PVP_TOURNEY_CURRENCY": 28, + "LOOT_TYPE_PVP_TOURNEY_CURRENCY_BONUS": 29, + "LOOT_TYPE_FURNITURE_ESSENCE": 30 + } + }, + "m_itemID": { + "type": "gid", + "id": 1, + "offset": 88, + "flags": 33554463, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 569545460 + }, + "m_numItems": { + "type": "int", + "id": 2, + "offset": 96, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1588646284 + } + } + }, + "1642645331": { + "name": "class CreateActorCinematicAction*", + "bases": [ + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 1642645331, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + }, + "m_animations": { + "type": "std::string", + "id": 2, + "offset": 120, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3030904078 + }, + "m_model": { + "type": "std::string", + "id": 3, + "offset": 152, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2300510668 + }, + "m_createOrientation": { + "type": "enum CreateActorCinematicAction::kCreateOrientation", + "id": 4, + "offset": 184, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3562324429, + "enum_options": { + "kFaceTarget": 0, + "kFaceSource": 1, + "kSigil": 2, + "kTarget": 3, + "kSource": 4, + "kSigilRight": 5, + "kSigilLeft": 6, + "kFaceTargetTeam": 7 + } + }, + "m_hidePolymorphFloatyText": { + "type": "bool", + "id": 5, + "offset": 188, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 942475883 + }, + "m_forwardOffset": { + "type": "float", + "id": 6, + "offset": 192, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1749681459 + }, + "m_absoluteTarget": { + "type": "bool", + "id": 7, + "offset": 196, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1463993657 + } + } + }, + "2077713755": { + "name": "class SharedPointer", + "bases": [ + "CinematicAction", + "PropertyClass" + ], + "hash": 2077713755, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + } + } + }, + "795575806": { + "name": "class SharedPointer", + "bases": [ + "WinAnimScaleSymmetrical", + "WindowAnimation", + "PropertyClass" + ], + "hash": 795575806, + "properties": { + "m_bUseDeepCopy": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 433380635 + }, + "m_scale": { + "type": "float", + "id": 1, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 899693439 + }, + "m_fSpeed": { + "type": "float", + "id": 2, + "offset": 88, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 503609006 + } + } + }, + "1642476635": { + "name": "enum PassInfo::ZoneAccessMode", + "bases": [], + "hash": 1642476635, + "properties": {} + }, + "1189411886": { + "name": "class SharedPointer", + "bases": [ + "PulseEffectTemplate", + "GameEffectTemplate", + "PropertyClass" + ], + "hash": 1189411886, + "properties": { + "m_effectName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2029161513 + }, + "m_effectCategory": { + "type": "std::string", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1852673222 + }, + "m_sortOrder": { + "type": "int", + "id": 2, + "offset": 148, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1411218206 + }, + "m_duration": { + "type": "double", + "id": 3, + "offset": 192, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2727932435 + }, + "m_stackingCategories": { + "type": "std::string", + "id": 4, + "offset": 160, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1774497525 + }, + "m_isPersistent": { + "type": "bool", + "id": 5, + "offset": 153, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 923861920 + }, + "m_bIsOnPet": { + "type": "bool", + "id": 6, + "offset": 154, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 522593303 + }, + "m_isPublic": { + "type": "bool", + "id": 7, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1728439822 + }, + "m_visualEffectAddName": { + "type": "std::string", + "id": 8, + "offset": 200, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3382086694 + }, + "m_visualEffectRemoveName": { + "type": "std::string", + "id": 9, + "offset": 232, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1541697323 + }, + "m_onAddFunctorName": { + "type": "std::string", + "id": 10, + "offset": 280, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1561843107 + }, + "m_onRemoveFunctorName": { + "type": "std::string", + "id": 11, + "offset": 312, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2559017864 + }, + "m_stackingRule": { + "type": "enum STACKING_RULE", + "id": 12, + "offset": 144, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 431568889, + "enum_options": { + "STACKING_ALLOWED": 0, + "STACKING_NOSTACK": 1, + "STACKING_REPLACE": 2 + } + }, + "m_pulsePeriod": { + "type": "double", + "id": 13, + "offset": 360, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3960618585 + }, + "m_pulseEventName": { + "type": "std::string", + "id": 14, + "offset": 368, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1858926599 + }, + "m_statName": { + "type": "std::string", + "id": 15, + "offset": 408, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1866211576 + }, + "m_statMaxName": { + "type": "std::string", + "id": 16, + "offset": 440, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3164833118 + }, + "m_damage": { + "type": "int", + "id": 17, + "offset": 472, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 351627865 + } + } + }, + "2077268920": { + "name": "class PetStatModification", + "bases": [ + "PropertyClass" + ], + "hash": 2077268920, + "properties": { + "m_name": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1717359772 + }, + "m_change": { + "type": "int", + "id": 1, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 320376832 + }, + "m_actualChange": { + "type": "unsigned int", + "id": 2, + "offset": 108, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 448133229 + } + } + }, + "354832890": { + "name": "class BaseZone::BaseSimulation*", + "bases": [ + "PropertyClass" + ], + "hash": 354832890, + "properties": {} + }, + "1642457428": { + "name": "class SharedPointer", + "bases": [ + "ControlSprite", + "Window", + "PropertyClass" + ], + "hash": 1642457428, + "properties": { + "m_sName": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306437263 + }, + "m_Children": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621225959 + }, + "m_Style": { + "type": "unsigned int", + "id": 2, + "offset": 152, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "SCALE_CHILDREN": 2, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "FOCUS_LOCKED": 64, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152 + } + }, + "m_Flags": { + "type": "unsigned int", + "id": 3, + "offset": 156, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648, + "ONE_SHOT": 8388608, + "FLIPPED_HORIZONTAL": 16777216, + "FLIPPED_VERTICAL": 33554432 + } + }, + "m_Window": { + "type": "class Rect", + "id": 4, + "offset": 160, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3105139380 + }, + "m_fTargetAlpha": { + "type": "float", + "id": 5, + "offset": 212, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1809129834 + }, + "m_fDisabledAlpha": { + "type": "float", + "id": 6, + "offset": 216, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1389987675 + }, + "m_fAlpha": { + "type": "float", + "id": 7, + "offset": 208, + "flags": 65671, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 482130755 + }, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3623628394 + }, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2102211316 + }, + "m_sScript": { + "type": "std::string", + "id": 10, + "offset": 352, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1846695875 + }, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3389835433 + }, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547159940 + }, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513510520 + }, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3091503757 + }, + "m_pMaterial": { + "type": "class SharedPointer", + "id": 16, + "offset": 592, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3479277078 + }, + "m_fRotation": { + "type": "float", + "id": 17, + "offset": 608, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1175400173 + }, + "m_Color": { + "type": "class Color", + "id": 18, + "offset": 584, + "flags": 262279, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1753714077 + }, + "m_textColor": { + "type": "class Color", + "id": 19, + "offset": 612, + "flags": 262279, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2528109250 + }, + "m_textComponent": { + "type": "class TextComponent", + "id": 20, + "offset": 616, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3491704390 + }, + "m_amount": { + "type": "int", + "id": 21, + "offset": 800, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 248546638 + } + } + }, + "1188420394": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1188420394, + "properties": { + "m_buttonName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3388080120 + }, + "m_buttonStringKey": { + "type": "std::string", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3226477495 + }, + "m_displayIndex": { + "type": "int", + "id": 2, + "offset": 136, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1250551048 + }, + "m_minimumLevel": { + "type": "int", + "id": 3, + "offset": 140, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 327062478 + }, + "m_registryEntry": { + "type": "std::string", + "id": 4, + "offset": 144, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3056380390 + }, + "m_worldPath": { + "type": "std::string", + "id": 5, + "offset": 176, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1846829584 + }, + "m_spiralShowcaseStringKey": { + "type": "std::string", + "id": 6, + "offset": 208, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2723709283 + } + } + }, + "354783937": { + "name": "class SpellCardAttachmentBehaviorTemplate", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 354783937, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + }, + "m_spellNames": { + "type": "std::string", + "id": 1, + "offset": 120, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2136089135 + }, + "m_targetNode": { + "type": "std::string", + "id": 2, + "offset": 136, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2698500040 + }, + "m_offset": { + "type": "class Vector3D", + "id": 3, + "offset": 168, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2445636425 + }, + "m_rotate": { + "type": "class Vector3D", + "id": 4, + "offset": 180, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2574199889 + }, + "m_height": { + "type": "float", + "id": 5, + "offset": 192, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 602977104 + }, + "m_alpha": { + "type": "float", + "id": 6, + "offset": 196, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 878686493 + }, + "m_cycleRate": { + "type": "float", + "id": 7, + "offset": 200, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 947046355 + } + } + }, + "1188387778": { + "name": "class SharedPointer", + "bases": [ + "Requirement", + "PropertyClass" + ], + "hash": 1188387778, + "properties": { + "m_applyNOT": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1746328074, + "enum_options": { + "__DEFAULT": 0 + } + }, + "m_operator": { + "type": "enum Requirement::Operator", + "id": 1, + "offset": 76, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2672792317, + "enum_options": { + "ROP_AND": 0, + "ROP_OR": 1, + "__DEFAULT": "ROP_AND" + } + }, + "m_entryName": { + "type": "std::string", + "id": 2, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2055270734 + }, + "m_displayName": { + "type": "std::string", + "id": 3, + "offset": 112, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2446900370 + }, + "m_isQuestRegistry": { + "type": "bool", + "id": 4, + "offset": 144, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1388902362 + }, + "m_questName": { + "type": "std::string", + "id": 5, + "offset": 152, + "flags": 268435463, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1702112846, + "enum_options": { + "__BASECLASS": "QuestTemplate" + } + } + } + }, + "795959143": { + "name": "class SharedPointer", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 795959143, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + }, + "m_fishtankSize": { + "type": "int", + "id": 1, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1397459629 + }, + "m_fishtankType": { + "type": "int", + "id": 2, + "offset": 124, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1397512660 + }, + "m_numberOfFish": { + "type": "int", + "id": 3, + "offset": 128, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1143336898 + } + } + }, + "2079568963": { + "name": "class ServiceOptionBase", + "bases": [ + "PropertyClass" + ], + "hash": 2079568963, + "properties": { + "m_serviceName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2206028813 + }, + "m_iconKey": { + "type": "std::string", + "id": 1, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2457138637 + }, + "m_displayKey": { + "type": "std::string", + "id": 2, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3023276954 + }, + "m_serviceIndex": { + "type": "unsigned int", + "id": 3, + "offset": 204, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2103126710 + }, + "m_forceInteract": { + "type": "bool", + "id": 4, + "offset": 200, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1705789564 + } + } + }, + "354888075": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 354888075, + "properties": { + "m_activityType": { + "type": "enum ClassProjectActivityType", + "id": 0, + "offset": 72, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1382301495, + "enum_options": { + "CPT_DefeatMob": 0, + "CPT_CatchFish": 1, + "CPT_CastTreasureCard": 2, + "CPT_DefeatPlayer": 3, + "CPT_ClaimCaptureArea": 4, + "CPT_UseInteractable": 5, + "CPT_CraftItem": 6, + "CPT_DailyQuest": 7, + "CPT_FeedPetSnack": 8, + "CPT_HelpTeam": 9, + "CPT_WinMatchBG": 10, + "CPT_LevelPolymorph": 11, + "CPT_HarvestPlant": 12, + "CPT_WinPetGame": 13, + "CPT_HatchPet": 14, + "CPT_PlayDerby": 15, + "CPT_FeedPetHappiness": 16, + "CPT_RateCastleToursHouse": 17, + "CPT_VisitCastleToursHouse": 18, + "CPT_RateOverallStitches": 19, + "CPT_RateEventStitches": 20, + "CPT_JudgesChoice": 21 + } + }, + "m_activityGoal": { + "type": "int", + "id": 1, + "offset": 112, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 103864010 + }, + "m_activityValue": { + "type": "int", + "id": 2, + "offset": 116, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1294496132 + }, + "m_activityLimit": { + "type": "int", + "id": 3, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1282925126 + }, + "m_activityDescription": { + "type": "std::string", + "id": 4, + "offset": 128, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3300318636 + }, + "m_adjectiveList": { + "type": "std::string", + "id": 5, + "offset": 80, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 3195213318 + } + } + }, + "797178977": { + "name": "class PetStatBlockControl", + "bases": [ + "Window", + "PropertyClass" + ], + "hash": 797178977, + "properties": { + "m_sName": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306437263 + }, + "m_Children": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 65667, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621225959 + }, + "m_Style": { + "type": "unsigned int", + "id": 2, + "offset": 152, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "SCALE_CHILDREN": 2, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "FOCUS_LOCKED": 64, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152 + } + }, + "m_Flags": { + "type": "unsigned int", + "id": 3, + "offset": 156, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 } }, - "m_eggName": { - "type": "std::string", + "m_Window": { + "type": "class Rect", + "id": 4, + "offset": 160, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3105139380 + }, + "m_fTargetAlpha": { + "type": "float", + "id": 5, + "offset": 212, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1809129834 + }, + "m_fDisabledAlpha": { + "type": "float", "id": 6, - "offset": 176, - "flags": 8388615, + "offset": 216, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1732162479 + "hash": 1389987675 }, - "m_eggColor": { - "type": "int", + "m_fAlpha": { + "type": "float", "id": 7, "offset": 208, + "flags": 65671, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 482130755 + }, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3623628394 + }, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2102211316 + }, + "m_sScript": { + "type": "std::string", + "id": 10, + "offset": 352, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1846695875 + }, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3389835433 + }, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547159940 + }, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513510520 + }, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3091503757 + } + } + }, + "1642857013": { + "name": "class SharedPointer", + "bases": [ + "ObstacleCourseObstacleBehaviorTemplate", + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 1642857013, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1279450220 + "hash": 3130754092 }, - "m_fScale": { + "m_penaltyTime": { + "type": "float", + "id": 1, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2083389507 + }, + "m_rate": { + "type": "float", + "id": 2, + "offset": 124, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 310005283 + }, + "m_springboardLength": { + "type": "float", + "id": 3, + "offset": 128, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1881375988 + }, + "m_springboardWidth": { + "type": "float", + "id": 4, + "offset": 132, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 418044402 + }, + "m_collisionHeight": { + "type": "float", + "id": 5, + "offset": 136, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2173366140 + }, + "m_springboardHitSoundList": { + "type": "class WeightedList", + "id": 6, + "offset": 144, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1378022956 + } + } + }, + "1189049883": { + "name": "class GameEffectTimerDisplayBehaviorTemplate*", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 1189049883, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + }, + "m_effectName": { + "type": "std::string", + "id": 1, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2029161513 + }, + "m_textKey": { + "type": "std::string", + "id": 2, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1720060457 + }, + "m_height": { + "type": "float", + "id": 3, + "offset": 184, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 602977104 + }, + "m_zOffset": { "type": "float", + "id": 4, + "offset": 188, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 736134072 + }, + "m_red": { + "type": "unsigned char", + "id": 5, + "offset": 192, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 904647115 + }, + "m_green": { + "type": "unsigned char", + "id": 6, + "offset": 193, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1433403873 + }, + "m_blue": { + "type": "unsigned char", + "id": 7, + "offset": 194, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 856840600 + }, + "m_triggers": { + "type": "class SharedPointer", "id": 8, - "offset": 212, + "offset": 200, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 3290329276 + } + } + }, + "2078482989": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 2078482989, + "properties": { + "m_numMatchesRequired": { + "type": "unsigned int", + "id": 0, + "offset": 72, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 503137701, + "hash": 2289964291 + }, + "m_pvpType": { + "type": "enum DailyPvPInfo::DailyPvPTypes", + "id": 1, + "offset": 76, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 876371151, "enum_options": { - "__DEFAULT": "1.0" + "DPVP_Solo_Ranked": 0 } }, - "m_sHatchRate": { + "m_winRequired": { + "type": "bool", + "id": 2, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 850879554 + } + } + }, + "1642645337": { + "name": "class CreateActorCinematicAction", + "bases": [ + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 1642645337, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { "type": "std::string", - "id": 9, - "offset": 216, + "id": 1, + "offset": 80, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1870311714 + "hash": 2285866132 }, - "m_wowFactor": { - "type": "unsigned int", - "id": 10, - "offset": 248, + "m_animations": { + "type": "std::string", + "id": 2, + "offset": 120, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3030904078 + }, + "m_model": { + "type": "std::string", + "id": 3, + "offset": 152, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2300510668 + }, + "m_createOrientation": { + "type": "enum CreateActorCinematicAction::kCreateOrientation", + "id": 4, + "offset": 184, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3562324429, + "enum_options": { + "kFaceTarget": 0, + "kFaceSource": 1, + "kSigil": 2, + "kTarget": 3, + "kSource": 4, + "kSigilRight": 5, + "kSigilLeft": 6, + "kFaceTargetTeam": 7 + } + }, + "m_hidePolymorphFloatyText": { + "type": "bool", + "id": 5, + "offset": 188, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1232905609 + "hash": 942475883 }, - "m_flyingOffset": { + "m_forwardOffset": { "type": "float", - "id": 11, - "offset": 252, + "id": 6, + "offset": 192, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1899002567 + "hash": 1749681459 }, - "m_maxStats": { - "type": "class PetStat", - "id": 12, - "offset": 256, + "m_absoluteTarget": { + "type": "bool", + "id": 7, + "offset": 196, "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1463993657 + } + } + }, + "2079353215": { + "name": "class WizDisableItemStatEffect", + "bases": [ + "StatisticEffect", + "GameEffectBase", + "PropertyClass" + ], + "hash": 2079353215, + "properties": { + "m_currentTickCount": { + "type": "double", + "id": 0, + "offset": 80, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2533274692 + }, + "m_effectNameID": { + "type": "unsigned int", + "id": 1, + "offset": 96, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1204067144 + }, + "m_bIsOnPet": { + "type": "bool", + "id": 2, + "offset": 73, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 522593303 + }, + "m_originatorID": { + "type": "gid", + "id": 3, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1131810019 + }, + "m_itemSlotID": { + "type": "unsigned int", + "id": 4, + "offset": 112, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1895747595 + }, + "m_internalID": { + "type": "int", + "id": 5, + "offset": 92, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1643137924 + }, + "m_endTime": { + "type": "unsigned int", + "id": 6, + "offset": 88, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 716479635 + }, + "m_lookupIndex": { + "type": "int", + "id": 7, + "offset": 128, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1626623948 + } + } + }, + "355839574": { + "name": "class CrownShopLayout", + "bases": [ + "PropertyClass" + ], + "hash": 355839574, + "properties": { + "m_categories": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 31, "container": "List", "dynamic": true, "singleton": false, - "pointer": false, - "hash": 1846363080 + "pointer": true, + "hash": 2811511766 }, - "m_startStats": { - "type": "class PetStat", - "id": 13, - "offset": 272, - "flags": 7, + "m_tabs": { + "type": "class SharedPointer", + "id": 1, + "offset": 88, + "flags": 31, "container": "List", "dynamic": true, "singleton": false, + "pointer": true, + "hash": 895280674 + } + } + }, + "798170352": { + "name": "class ChangeActorStateCinematicAction", + "bases": [ + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 798170352, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, "pointer": false, - "hash": 2360362512 + "hash": 2237098605 }, - "m_talents": { + "m_actor": { "type": "std::string", - "id": 14, - "offset": 288, - "flags": 268435463, + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + }, + "m_newState": { + "type": "std::string", + "id": 2, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2153420230 + } + } + }, + "1190617662": { + "name": "class WizStatisticOverrideEffect*", + "bases": [ + "StatisticEffect", + "GameEffectBase", + "PropertyClass" + ], + "hash": 1190617662, + "properties": { + "m_currentTickCount": { + "type": "double", + "id": 0, + "offset": 80, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2533274692 + }, + "m_effectNameID": { + "type": "unsigned int", + "id": 1, + "offset": 96, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1204067144 + }, + "m_bIsOnPet": { + "type": "bool", + "id": 2, + "offset": 73, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 522593303 + }, + "m_originatorID": { + "type": "gid", + "id": 3, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1131810019 + }, + "m_itemSlotID": { + "type": "unsigned int", + "id": 4, + "offset": 112, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1895747595 + }, + "m_internalID": { + "type": "int", + "id": 5, + "offset": 92, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1643137924 + }, + "m_endTime": { + "type": "unsigned int", + "id": 6, + "offset": 88, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 716479635 + }, + "m_lookupIndex": { + "type": "int", + "id": 7, + "offset": 128, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1626623948 + } + } + }, + "797377294": { + "name": "struct LootDialogData", + "bases": [], + "hash": 797377294, + "properties": {} + }, + "1643543483": { + "name": "class SharedPointer", + "bases": [ + "StatisticEffect", + "GameEffectBase", + "PropertyClass" + ], + "hash": 1643543483, + "properties": { + "m_currentTickCount": { + "type": "double", + "id": 0, + "offset": 80, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2533274692 + }, + "m_effectNameID": { + "type": "unsigned int", + "id": 1, + "offset": 96, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1204067144 + }, + "m_bIsOnPet": { + "type": "bool", + "id": 2, + "offset": 73, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 522593303 + }, + "m_originatorID": { + "type": "gid", + "id": 3, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1131810019 + }, + "m_itemSlotID": { + "type": "unsigned int", + "id": 4, + "offset": 112, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1895747595 + }, + "m_internalID": { + "type": "int", + "id": 5, + "offset": 92, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1643137924 + }, + "m_endTime": { + "type": "unsigned int", + "id": 6, + "offset": 88, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 716479635 + }, + "m_lookupIndex": { + "type": "int", + "id": 7, + "offset": 128, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1626623948 + } + } + }, + "1190617652": { + "name": "class WizStatisticOverrideEffect", + "bases": [ + "StatisticEffect", + "GameEffectBase", + "PropertyClass" + ], + "hash": 1190617652, + "properties": { + "m_currentTickCount": { + "type": "double", + "id": 0, + "offset": 80, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2533274692 + }, + "m_effectNameID": { + "type": "unsigned int", + "id": 1, + "offset": 96, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1204067144 + }, + "m_bIsOnPet": { + "type": "bool", + "id": 2, + "offset": 73, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 522593303 + }, + "m_originatorID": { + "type": "gid", + "id": 3, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1131810019 + }, + "m_itemSlotID": { + "type": "unsigned int", + "id": 4, + "offset": 112, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1895747595 + }, + "m_internalID": { + "type": "int", + "id": 5, + "offset": 92, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1643137924 + }, + "m_endTime": { + "type": "unsigned int", + "id": 6, + "offset": 88, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 716479635 + }, + "m_lookupIndex": { + "type": "int", + "id": 7, + "offset": 128, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1626623948 + } + } + }, + "797250948": { + "name": "class ZoneGateOption*", + "bases": [ + "ServiceOptionBase", + "PropertyClass" + ], + "hash": 797250948, + "properties": { + "m_serviceName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2206028813 + }, + "m_iconKey": { + "type": "std::string", + "id": 1, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2457138637 + }, + "m_displayKey": { + "type": "std::string", + "id": 2, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3023276954 + }, + "m_serviceIndex": { + "type": "unsigned int", + "id": 3, + "offset": 204, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2103126710 + }, + "m_forceInteract": { + "type": "bool", + "id": 4, + "offset": 200, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1705789564 + } + } + }, + "2079848438": { + "name": "class FXDef", + "bases": [ + "PropertyClass" + ], + "hash": 2079848438, + "properties": { + "m_FXFile": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2810683385 + }, + "m_stackingCategory": { + "type": "std::string", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2363740365 + }, + "m_repeatTime": { + "type": "float", + "id": 2, + "offset": 136, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 453389511 + } + } + }, + "358431199": { + "name": "class SharedPointer", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 358431199, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + } + } + }, + "356591668": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 356591668, + "properties": { + "m_worldIDList": { + "type": "unsigned int", + "id": 0, + "offset": 72, + "flags": 7, "container": "List", "dynamic": true, "singleton": false, "pointer": false, - "hash": 1548787382, - "enum_options": { - "__BASECLASS": "PetTalentTemplate" - } + "hash": 2050801310 }, - "m_derbyTalents": { - "type": "std::string", - "id": 15, - "offset": 320, - "flags": 268435463, + "m_exhibitIDList": { + "type": "unsigned int", + "id": 1, + "offset": 88, + "flags": 7, "container": "List", "dynamic": true, "singleton": false, "pointer": false, - "hash": 2359224108, - "enum_options": { - "__BASECLASS": "PetDerbyTalentTemplate" - } + "hash": 1339737091 }, - "m_Levels": { - "type": "class PetLevelInfo", - "id": 16, - "offset": 304, + "m_stateList": { + "type": "unsigned int", + "id": 2, + "offset": 104, "flags": 7, "container": "List", "dynamic": true, "singleton": false, "pointer": false, - "hash": 3555902999 + "hash": 1658565962 }, - "m_conversionStats": { - "type": "class PetStat", - "id": 17, - "offset": 336, + "m_doorList": { + "type": "unsigned int", + "id": 3, + "offset": 120, "flags": 7, "container": "List", "dynamic": true, "singleton": false, "pointer": false, - "hash": 2003448008 + "hash": 1783968669 + } + } + }, + "1646584070": { + "name": "class DynaMod", + "bases": [ + "PropertyClass" + ], + "hash": 1646584070, + "properties": { + "m_clientTag": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3409856790 }, - "m_conversionTalents": { + "m_zoneName": { "type": "std::string", - "id": 18, - "offset": 352, - "flags": 268435463, + "id": 1, + "offset": 112, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2171167736 + }, + "m_zoneInstance": { + "type": "gid", + "id": 2, + "offset": 152, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 449538121 + }, + "m_originator": { + "type": "gid", + "id": 3, + "offset": 72, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 709051254 + }, + "m_index": { + "type": "int", + "id": 4, + "offset": 160, + "flags": 30, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 798031442 + }, + "m_zoneID": { + "type": "unsigned int", + "id": 5, + "offset": 144, + "flags": 16, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1440651126 + } + } + }, + "356469809": { + "name": "class SharedPointer", + "bases": [ + "GameEffectTemplate", + "PropertyClass" + ], + "hash": 356469809, + "properties": { + "m_effectName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2029161513 + }, + "m_effectCategory": { + "type": "std::string", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1852673222 + }, + "m_sortOrder": { + "type": "int", + "id": 2, + "offset": 148, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1411218206 + }, + "m_duration": { + "type": "double", + "id": 3, + "offset": 192, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2727932435 + }, + "m_stackingCategories": { + "type": "std::string", + "id": 4, + "offset": 160, + "flags": 7, "container": "List", "dynamic": true, "singleton": false, "pointer": false, - "hash": 2717498332, + "hash": 1774497525 + }, + "m_isPersistent": { + "type": "bool", + "id": 5, + "offset": 153, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 923861920 + }, + "m_bIsOnPet": { + "type": "bool", + "id": 6, + "offset": 154, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 522593303 + }, + "m_isPublic": { + "type": "bool", + "id": 7, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1728439822 + }, + "m_visualEffectAddName": { + "type": "std::string", + "id": 8, + "offset": 200, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3382086694 + }, + "m_visualEffectRemoveName": { + "type": "std::string", + "id": 9, + "offset": 232, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1541697323 + }, + "m_onAddFunctorName": { + "type": "std::string", + "id": 10, + "offset": 280, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1561843107 + }, + "m_onRemoveFunctorName": { + "type": "std::string", + "id": 11, + "offset": 312, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2559017864 + }, + "m_stackingRule": { + "type": "enum STACKING_RULE", + "id": 12, + "offset": 144, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 431568889, "enum_options": { - "__BASECLASS": "PetTalentTemplate" + "STACKING_ALLOWED": 0, + "STACKING_NOSTACK": 1, + "STACKING_REPLACE": 2 } }, - "m_conversionLevel": { - "type": "unsigned char", - "id": 19, - "offset": 368, + "m_pipsGiven": { + "type": "int", + "id": 13, + "offset": 360, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 941047662 + "hash": 1346249167 }, - "m_conversionXP": { + "m_powerPipsGiven": { + "type": "int", + "id": 14, + "offset": 364, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 377908508 + } + } + }, + "797823875": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 797823875, + "properties": { + "m_templateID": { "type": "unsigned int", - "id": 20, - "offset": 372, + "id": 0, + "offset": 72, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2284347003 + "hash": 1286746870 }, - "m_favoriteSnackCategories": { - "type": "std::string", - "id": 21, - "offset": 376, + "m_statusResult": { + "type": "int", + "id": 1, + "offset": 76, "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1273560413 + } + } + }, + "1645158766": { + "name": "class PlayerStatueBlob", + "bases": [ + "PropertyClass" + ], + "hash": 1645158766, + "properties": {} + }, + "1192544334": { + "name": "class CrownShopCategoryMenu*", + "bases": [ + "PropertyClass" + ], + "hash": 1192544334, + "properties": { + "m_name": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1717359772 + }, + "m_ID": { + "type": "int", + "id": 1, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2090585127 + }, + "m_description": { + "type": "std::string", + "id": 2, + "offset": 112, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1649374815 + }, + "m_iconResource": { + "type": "std::string", + "id": 3, + "offset": 144, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2838396012 + }, + "m_categoryIDs": { + "type": "int", + "id": 4, + "offset": 208, + "flags": 31, "container": "List", "dynamic": true, "singleton": false, "pointer": false, - "hash": 3317721809 + "hash": 2145925880 }, - "m_jumpSound": { + "m_tags": { "type": "std::string", - "id": 22, - "offset": 392, - "flags": 131079, + "id": 5, + "offset": 176, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2493302912 + "hash": 1717575210 + } + } + }, + "2099501888": { + "name": "class std::list >", + "bases": [], + "hash": 2099501888, + "properties": {} + }, + "356240772": { + "name": "class WeightedEntryT,class std::allocator > >*", + "bases": [ + "WeightedEntry", + "PropertyClass" + ], + "hash": 356240772, + "properties": { + "m_weight": { + "type": "unsigned int", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1311209301 }, - "m_duckSound": { + "m_entry": { "type": "std::string", - "id": 23, - "offset": 424, - "flags": 131079, + "id": 1, + "offset": 80, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3426875339 + "hash": 2291005229 + } + } + }, + "1645060462": { + "name": "class PlayerStatueBlob*", + "bases": [ + "PropertyClass" + ], + "hash": 1645060462, + "properties": {} + }, + "1192136481": { + "name": "class TargetCritHit", + "bases": [ + "PropertyClass" + ], + "hash": 1192136481, + "properties": { + "m_target": { + "type": "int", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 977980321 }, - "m_morphingExceptions": { - "type": "class MorphingException", - "id": 24, - "offset": 456, + "m_mult": { + "type": "float", + "id": 1, + "offset": 76, "flags": 7, - "container": "List", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 2719456886 + "hash": 309847129 }, - "m_hatchesAsID": { - "type": "gid", - "id": 25, - "offset": 472, - "flags": 33554439, + "m_blocked": { + "type": "bool", + "id": 2, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 863437063 + } + } + }, + "2086923724": { + "name": "class SharedPointer", + "bases": [ + "StopHangingRotationCinematicAction", + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 2086923724, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + }, + "m_cloaked": { + "type": "bool", + "id": 2, + "offset": 124, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 7349510 + }, + "m_type": { + "type": "enum StopHangingRotationCinematicAction::kStopHangingTypes", + "id": 3, + "offset": 120, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2339468071, + "enum_options": { + "kStopHanging_Burn": 0, + "kStopHanging_Add": 1 + } + } + } + }, + "1191946562": { + "name": "class PlayComplexSoundCinematicAction", + "bases": [ + "CinematicAction", + "PropertyClass" + ], + "hash": 1191946562, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_cinematicSoundEmitterInfo": { + "type": "class SharedPointer", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2303770088 + } + } + }, + "2083411819": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 2083411819, + "properties": { + "m_zoneNameID": { + "type": "unsigned int", + "id": 0, + "offset": 72, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1230021335 + }, + "m_time": { + "type": "unsigned int", + "id": 1, + "offset": 76, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 431286940 + }, + "m_buffer": { + "type": "std::string", + "id": 2, + "offset": 80, + "flags": 551, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1794528949 + } + } + }, + "798198570": { + "name": "class UnPolymorphCinematicAction*", + "bases": [ + "CinematicAction", + "PropertyClass" + ], + "hash": 798198570, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + } + } + }, + "2081701582": { + "name": "class ClientDerbyModifyMoraleChance*", + "bases": [ + "DerbyModifyMoraleChance", + "DerbyEffect", + "PropertyClass" + ], + "hash": 2081701582, + "properties": { + "m_buffType": { + "type": "enum DerbyTalentBuffType", + "id": 0, + "offset": 92, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1149251982, + "enum_options": { + "Buff": 0, + "Debuff": 1, + "Neither": 2 + } + }, + "m_kTarget": { + "type": "enum DerbyTargetType", + "id": 1, + "offset": 96, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1807803351, + "enum_options": { + "kTargetInFront": 0, + "kTargetBehind": 1, + "kTargetFirst": 2, + "kTargetSelf": 3, + "kTargetAll": 4, + "kTargetLast": 5 + } + }, + "m_nDuration": { + "type": "int", + "id": 2, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1110167982 + }, + "m_effectID": { + "type": "unsigned int", + "id": 3, + "offset": 88, + "flags": 24, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2347630439 + }, + "m_imageFilename": { + "type": "std::string", + "id": 4, + "offset": 112, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2813328063 + }, + "m_iconIndex": { + "type": "unsigned int", + "id": 5, + "offset": 144, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1265133262 + }, + "m_soundOnActivate": { + "type": "std::string", + "id": 6, + "offset": 152, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1956929714 + }, + "m_soundOnTarget": { + "type": "std::string", + "id": 7, + "offset": 184, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3444214056 + }, + "m_targetParticleEffect": { + "type": "std::string", + "id": 8, + "offset": 216, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3048234723 + }, + "m_overheadMessage": { + "type": "std::string", + "id": 9, + "offset": 248, + "flags": 8388639, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1701018190 + }, + "m_requirements": { + "type": "class RequirementList", + "id": 10, + "offset": 280, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2840988582 + }, + "m_moraleChanceActionMap": { + "type": "class MoraleModificationMap", + "id": 11, + "offset": 376, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1654668404 + } + } + }, + "356555022": { + "name": "class SharedPointer", + "bases": [ + "BGSigilProxyBehavior", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 356555022, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_autoCapTimer": { + "type": "class BGSigilTimer", + "id": 1, + "offset": 112, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2270881950 + }, + "m_timerTeam": { + "type": "std::string", + "id": 2, + "offset": 216, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1994153155 + }, + "m_teamOwner": { + "type": "std::string", + "id": 3, + "offset": 248, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3126686637 + }, + "m_combatActive": { + "type": "bool", + "id": 4, + "offset": 280, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1372743333 + }, + "m_captureable": { + "type": "bool", + "id": 5, + "offset": 281, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1101963387 + }, + "m_allowAutoCap": { + "type": "bool", + "id": 6, + "offset": 282, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 946300927 + }, + "m_sigilAggroRange": { + "type": "float", + "id": 7, + "offset": 284, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 995063020 + }, + "m_playerAggroRange": { + "type": "float", + "id": 8, + "offset": 288, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1776075073 + }, + "m_triggerOrientation": { + "type": "class Vector3D", + "id": 9, + "offset": 292, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2671004802 + }, + "m_triggerLocation": { + "type": "class Vector3D", + "id": 10, + "offset": 304, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2573315471 + }, + "m_triggerBox": { + "type": "bool", + "id": 11, + "offset": 316, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 962168144 + }, + "m_width": { + "type": "float", + "id": 12, + "offset": 320, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 904656279 + }, + "m_length": { + "type": "float", + "id": 13, + "offset": 324, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2010028089 - }, - "m_guaranteedTalents": { - "type": "std::string", - "id": 26, - "offset": 480, - "flags": 268435463, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2876819510, - "enum_options": { - "__BASECLASS": "PetTalentTemplate" - } + "hash": 759698745 }, - "m_guaranteedDerbyTalents": { - "type": "std::string", - "id": 27, - "offset": 496, - "flags": 268435463, - "container": "List", - "dynamic": true, + "m_triggerSphere": { + "type": "bool", + "id": 14, + "offset": 328, + "flags": 31, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 1658650796, - "enum_options": { - "__BASECLASS": "PetDerbyTalentTemplate" - } + "hash": 1467830382 }, - "m_hideName": { - "type": "bool", - "id": 28, - "offset": 516, - "flags": 7, + "m_radius": { + "type": "float", + "id": 15, + "offset": 332, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 645410894 + "hash": 989410271 }, - "m_houseGuestOpacity": { + "m_inRange": { + "type": "class SharedPointer", + "id": 16, + "offset": 336, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2259190010 + } + } + }, + "798198564": { + "name": "class UnPolymorphCinematicAction", + "bases": [ + "CinematicAction", + "PropertyClass" + ], + "hash": 798198564, + "properties": { + "m_timeOffset": { "type": "float", - "id": 29, - "offset": 520, + "id": 0, + "offset": 72, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 805760636, - "enum_options": { - "__DEFAULT": "1.0" - } - }, - "m_hatchmakingInitalCooldownTime": { + "hash": 2237098605 + } + } + }, + "1646335451": { + "name": "class BattlegroundPOIData*", + "bases": [ + "PropertyClass" + ], + "hash": 1646335451, + "properties": { + "m_poiType": { "type": "unsigned int", - "id": 30, - "offset": 524, + "id": 0, + "offset": 72, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 724960897, - "enum_options": { - "__DEFAULT": 0 - } + "hash": 2082807927 }, - "m_hatchmakingMaximumHatches": { - "type": "unsigned int", - "id": 31, - "offset": 528, + "m_icon": { + "type": "std::string", + "id": 1, + "offset": 80, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1142581578, - "enum_options": { - "__DEFAULT": 0 - } + "hash": 1717182340 }, - "m_excludeFromHatchOfTheDay": { - "type": "bool", - "id": 32, - "offset": 532, + "m_objectID": { + "type": "gid", + "id": 2, + "offset": 112, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1127631469, - "enum_options": { - "__DEFAULT": 0 - } + "hash": 257032380 }, - "m_exclusivePet": { - "type": "bool", - "id": 33, - "offset": 533, + "m_position": { + "type": "class Vector3D", + "id": 3, + "offset": 120, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1328949460, - "enum_options": { - "__DEFAULT": 0 - } + "hash": 3697900983 }, - "m_animationEventList": { - "type": "class SharedPointer", - "id": 34, - "offset": 536, + "m_yaw": { + "type": "float", + "id": 4, + "offset": 132, "flags": 7, - "container": "List", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2858101335 + "pointer": false, + "hash": 357256328 } } }, - "1975678991": { - "name": "class SharedPointer", + "2081356735": { + "name": "class SharedPointer", "bases": [ + "ClientObject", + "CoreObject", "PropertyClass" ], - "hash": 1975678991, + "hash": 2081356735, "properties": { - "m_token": { - "type": "std::string", + "m_inactiveBehaviors": { + "type": "class SharedPointer", "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, + "offset": 224, + "flags": 31, + "container": "Vector", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 2308819740 + "pointer": true, + "hash": 1850812559 }, - "m_icon": { - "type": "std::wstring", + "m_globalID.m_full": { + "type": "unsigned __int64", "id": 1, - "offset": 104, - "flags": 131079, + "offset": 72, + "flags": 16777247, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1513167681 + "hash": 2312465444 }, - "m_text": { - "type": "std::wstring", + "m_permID": { + "type": "unsigned __int64", "id": 2, - "offset": 136, - "flags": 8388615, + "offset": 80, + "flags": 16777247, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1513565469 + "hash": 1298909658 }, - "m_tooltip": { - "type": "std::wstring", + "m_location": { + "type": "class Vector3D", "id": 3, "offset": 168, - "flags": 8388615, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1896483715 + "hash": 2239683611 }, - "m_color": { - "type": "std::wstring", + "m_orientation": { + "type": "class Vector3D", "id": 4, - "offset": 200, - "flags": 262151, + "offset": 180, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2084645847 + "hash": 2344058766 }, - "m_colorOverride": { - "type": "bool", + "m_fScale": { + "type": "float", "id": 5, - "offset": 232, - "flags": 7, + "offset": 196, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1098799506 + "hash": 503137701 }, - "m_wide": { - "type": "int", + "m_templateID.m_full": { + "type": "unsigned __int64", "id": 6, - "offset": 236, - "flags": 7, + "offset": 96, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 219992003 + "hash": 633907631 }, - "m_useCase": { - "type": "enum MadlibIconUseCase", + "m_debugName": { + "type": "std::string", "id": 7, - "offset": 240, - "flags": 2097159, + "offset": 104, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3032762361, - "enum_options": { - "MIUC_Default": 0, - "MIUC_SpellDescription": 1, - "MIUC_AdvancedSpellDescription": 2, - "MIUC_CombatMessage": 3, - "MIUC_CustomCombatMessage": 4, - "MIUC_DescriptionCombatHUD": 5 - } - } - } - }, - "9764221": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 9764221, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, + "hash": 3553984419 + }, + "m_displayKey": { + "type": "std::string", + "id": 8, + "offset": 136, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 - } - } - }, - "1572433344": { - "name": "class SharedPointer", - "bases": [ - "LootInfo", - "LootInfoBase", - "PropertyClass" - ], - "hash": 1572433344, - "properties": { - "m_lootType": { - "type": "enum LootInfo::LOOT_TYPE", - "id": 0, - "offset": 72, - "flags": 2097183, + "hash": 3023276954 + }, + "m_zoneTagID": { + "type": "unsigned int", + "id": 9, + "offset": 344, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1591891442, - "enum_options": { - "LOOT_TYPE_NONE": 0, - "LOOT_TYPE_GOLD": 1, - "LOOT_TYPE_MANA": 2, - "LOOT_TYPE_ITEM": 3, - "LOOT_TYPE_TREASURE_CARD": 4, - "LOOT_TYPE_MAGIC_XP": 5, - "LOOT_TYPE_ADD_SPELL": 6, - "LOOT_TYPE_MAX_HEALTH": 7, - "LOOT_TYPE_MAX_GOLD": 8, - "LOOT_TYPE_MAX_MANA": 9, - "LOOT_TYPE_MAX_POTION": 10, - "LOOT_TYPE_TRAINING_POINTS": 11, - "LOOT_TYPE_RECIPE": 12, - "LOOT_TYPE_CRAFTING_SLOT": 13, - "LOOT_TYPE_REAGENT": 14, - "LOOT_TYPE_PETSNACK": 15, - "LOOT_TYPE_GARDENING_XP": 16, - "LOOT_TYPE_PET_XP": 17, - "LOOT_TYPE_TREASURE_TABLE": 18, - "LOOT_TYPE_ARENA_POINTS": 19, - "LOOT_TYPE_ARENA_BONUS_POINTS": 20, - "LOOT_TYPE_GROUP": 21, - "LOOT_TYPE_FISHING_XP": 22, - "LOOT_TYPE_EVENT_CURRENCY_1": 24, - "LOOT_TYPE_EVENT_CURRENCY_2": 25, - "LOOT_TYPE_PVP_CURRENCY": 26, - "LOOT_TYPE_PVP_CURRENCY_BONUS": 27, - "LOOT_TYPE_PVP_TOURNEY_CURRENCY": 28, - "LOOT_TYPE_PVP_TOURNEY_CURRENCY_BONUS": 29, - "LOOT_TYPE_FURNITURE_ESSENCE": 30 - } + "hash": 965291410 }, - "m_pvpTourneyCurrencyBonusAmount": { - "type": "int", - "id": 1, - "offset": 80, + "m_speedMultiplier": { + "type": "short", + "id": 10, + "offset": 192, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1691016556 + "hash": 123130076 + }, + "m_nMobileID": { + "type": "unsigned short", + "id": 11, + "offset": 194, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1054318939 + }, + "m_characterId": { + "type": "gid", + "id": 12, + "offset": 440, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 210498418 + }, + "m_gameStats": { + "type": "class WizGameStats*", + "id": 13, + "offset": 552, + "flags": 27, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3194480406 } } }, - "1172628385": { - "name": "class HousingMusicBehaviorTemplate*", + "1192136484": { + "name": "class TargetCritHit*", "bases": [ - "BehaviorTemplate", "PropertyClass" ], - "hash": 1172628385, + "hash": 1192136484, "properties": { - "m_behaviorName": { - "type": "std::string", + "m_target": { + "type": "int", "id": 0, "offset": 72, "flags": 7, @@ -519148,144 +316743,177 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 3130754092 + "hash": 977980321 }, - "m_staticMusicFile": { - "type": "std::string", + "m_mult": { + "type": "float", "id": 1, - "offset": 120, - "flags": 131079, + "offset": 76, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2845362532 + "hash": 309847129 }, - "m_dynamicMusicFile": { - "type": "std::string", + "m_blocked": { + "type": "bool", "id": 2, - "offset": 152, - "flags": 131079, + "offset": 80, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3205780097 + "hash": 863437063 } } }, - "1975054776": { - "name": "struct TerrainChangeData", - "bases": [], - "hash": 1975054776, - "properties": {} - }, - "9759260": { - "name": "class AvatarTextureOption", + "2080833560": { + "name": "class ReqManaPercent", "bases": [ - "AvatarOptionBase", + "ReqNumeric", + "Requirement", "PropertyClass" ], - "hash": 9759260, + "hash": 2080833560, "properties": { - "m_conditionFlags": { - "type": "std::string", + "m_applyNOT": { + "type": "bool", "id": 0, "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, + "flags": 31, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 2483653903 + "hash": 1746328074, + "enum_options": { + "__DEFAULT": 0 + } }, - "m_materialName": { - "type": "std::string", + "m_operator": { + "type": "enum Requirement::Operator", "id": 1, - "offset": 104, - "flags": 7, + "offset": 76, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1878140043 + "hash": 2672792317, + "enum_options": { + "ROP_AND": 0, + "ROP_OR": 1, + "__DEFAULT": "ROP_AND" + } }, - "m_textures": { - "type": "std::string", + "m_numericValue": { + "type": "float", "id": 2, - "offset": 136, - "flags": 131079, - "container": "Vector", - "dynamic": true, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 2391848735 + "hash": 521915239 }, - "m_decals": { - "type": "std::string", + "m_operatorType": { + "type": "enum ReqNumeric::OPERATOR_TYPE", "id": 3, - "offset": 160, - "flags": 131079, - "container": "Vector", - "dynamic": true, + "offset": 84, + "flags": 2097183, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 1853711975 - }, - "m_decals2": { - "type": "std::string", - "id": 4, - "offset": 184, - "flags": 131079, - "container": "Vector", - "dynamic": true, + "hash": 2228122961, + "enum_options": { + "OPERATOR_UNKNOWN": 4294967295, + "OPERATOR_EQUALS": 0, + "OPERATOR_GREATER_THAN": 1, + "OPERATOR_LESS_THAN": 2, + "OPERATOR_GREATER_THAN_EQ": 3, + "OPERATOR_LESS_THAN_EQ": 4 + } + } + } + }, + "2080038541": { + "name": "class SharedPointer", + "bases": [ + "ClearHangingEffectsCinematicAction", + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 2080038541, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 2505858617 + "hash": 2237098605 }, - "m_tintColors": { - "type": "class Vector3D", - "id": 5, - "offset": 208, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, "flags": 7, - "container": "Vector", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 3059416083 - }, - "m_tintColorNames": { + "hash": 2285866132 + } + } + }, + "356825974": { + "name": "class WanderMovementBehaviorTemplate*", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 356825974, + "properties": { + "m_behaviorName": { "type": "std::string", - "id": 6, - "offset": 232, + "id": 0, + "offset": 72, "flags": 7, - "container": "Vector", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 1803799469 + "hash": 3130754092 }, - "m_useTintColor": { - "type": "bool", - "id": 7, - "offset": 256, + "m_movementSpeed": { + "type": "float", + "id": 1, + "offset": 120, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1646372318 + "hash": 769135219 } } }, - "1569343273": { - "name": "class RitualObjectBehavior", + "798314987": { + "name": "class SharedPointer", "bases": [ - "RitualObjectBehaviorBase", + "ZoneTokenBehavior", "BehaviorInstance", "PropertyClass" ], - "hash": 1569343273, + "hash": 798314987, "properties": { "m_behaviorTemplateNameID": { "type": "unsigned int", @@ -519298,28 +316926,29 @@ "pointer": false, "hash": 223437287 }, - "m_playerList": { - "type": "gid", + "m_tokens": { + "type": "class SharedPointer", "id": 1, "offset": 112, - "flags": 31, + "flags": 27, "container": "List", "dynamic": true, "singleton": false, - "pointer": false, - "hash": 1909774945 + "pointer": true, + "hash": 2621026866 } } }, - "403320877": { - "name": "class UserCapabilitiesInfo", + "1647010330": { + "name": "class BGPenaltyMatchBan*", "bases": [ + "InfractionPenalty", "PropertyClass" ], - "hash": 403320877, + "hash": 1647010330, "properties": { - "m_macAddress": { - "type": "std::string", + "m_internalID": { + "type": "unsigned int", "id": 0, "offset": 72, "flags": 31, @@ -519327,468 +316956,550 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 3156887154 + "hash": 1854540375 }, - "m_systemMemory": { - "type": "unsigned short", + "m_categoryID": { + "type": "unsigned int", "id": 1, - "offset": 104, + "offset": 76, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 852349606 + "hash": 1382795736 }, - "m_freeDiskSpace": { - "type": "unsigned short", + "m_removeAtPointValue": { + "type": "float", "id": 2, - "offset": 106, + "offset": 80, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1250782497 + "hash": 2112196961 }, - "m_processorArchitecture": { - "type": "unsigned short", + "m_expireTime": { + "type": "unsigned int", "id": 3, - "offset": 108, + "offset": 84, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2088980971 + "hash": 1836304873 }, - "m_numProcessors": { - "type": "char", + "m_duration": { + "type": "unsigned int", "id": 4, - "offset": 110, + "offset": 88, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 706266711 - }, - "m_processorType": { - "type": "unsigned int", - "id": 5, - "offset": 112, - "flags": 31, + "hash": 1041524755 + } + } + }, + "1646584082": { + "name": "class DynaMod*", + "bases": [ + "PropertyClass" + ], + "hash": 1646584082, + "properties": { + "m_clientTag": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1199310607 + "hash": 3409856790 }, - "m_processorLevel": { - "type": "unsigned short", - "id": 6, - "offset": 116, - "flags": 31, + "m_zoneName": { + "type": "std::string", + "id": 1, + "offset": 112, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 929266784 + "hash": 2171167736 }, - "m_processorRevision": { - "type": "unsigned short", - "id": 7, - "offset": 118, - "flags": 31, + "m_zoneInstance": { + "type": "gid", + "id": 2, + "offset": 152, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1573335831 + "hash": 449538121 }, - "m_vendorID": { - "type": "unsigned short", - "id": 8, - "offset": 120, - "flags": 31, + "m_originator": { + "type": "gid", + "id": 3, + "offset": 72, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2522209987 + "hash": 709051254 }, - "m_deviceID": { - "type": "unsigned short", - "id": 9, - "offset": 122, - "flags": 31, + "m_index": { + "type": "int", + "id": 4, + "offset": 160, + "flags": 30, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2360466085 + "hash": 798031442 }, - "m_subSysID": { + "m_zoneID": { "type": "unsigned int", - "id": 10, - "offset": 124, - "flags": 31, + "id": 5, + "offset": 144, + "flags": 16, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1872946051 - }, - "m_textureMemory": { - "type": "unsigned short", - "id": 11, - "offset": 128, + "hash": 1440651126 + } + } + }, + "1192545614": { + "name": "class CrownShopCategoryMenu", + "bases": [ + "PropertyClass" + ], + "hash": 1192545614, + "properties": { + "m_name": { + "type": "std::string", + "id": 0, + "offset": 72, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1738572338 + "hash": 1717359772 }, - "m_hwTransformAndLight": { - "type": "bool", - "id": 12, - "offset": 130, + "m_ID": { + "type": "int", + "id": 1, + "offset": 104, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2100427321 + "hash": 2090585127 }, - "m_dynamicTextures": { - "type": "bool", - "id": 13, - "offset": 131, + "m_description": { + "type": "std::string", + "id": 2, + "offset": 112, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2010245916 + "hash": 1649374815 }, - "m_renderToTexture_A8R8G8B8": { - "type": "bool", - "id": 14, - "offset": 132, + "m_iconResource": { + "type": "std::string", + "id": 3, + "offset": 144, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1029952834 + "hash": 2838396012 }, - "m_renderToTexture_A8B8G8R8": { - "type": "bool", - "id": 15, - "offset": 133, + "m_categoryIDs": { + "type": "int", + "id": 4, + "offset": 208, "flags": 31, - "container": "Static", - "dynamic": false, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 403787074 + "hash": 2145925880 }, - "m_textureFromSystemMemory": { - "type": "bool", - "id": 16, - "offset": 134, + "m_tags": { + "type": "std::string", + "id": 5, + "offset": 176, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1414058230 - }, - "m_textureFromVideoMemory": { + "hash": 1717575210 + } + } + }, + "2080833720": { + "name": "class ReqManaPercent*", + "bases": [ + "ReqNumeric", + "Requirement", + "PropertyClass" + ], + "hash": 2080833720, + "properties": { + "m_applyNOT": { "type": "bool", - "id": 17, - "offset": 135, + "id": 0, + "offset": 72, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 501373448 + "hash": 1746328074, + "enum_options": { + "__DEFAULT": 0 + } }, - "m_maxTextureBlendStages": { - "type": "char", - "id": 18, - "offset": 136, - "flags": 31, + "m_operator": { + "type": "enum Requirement::Operator", + "id": 1, + "offset": 76, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 783320407 + "hash": 2672792317, + "enum_options": { + "ROP_AND": 0, + "ROP_OR": 1, + "__DEFAULT": "ROP_AND" + } }, - "m_maxActiveLights": { - "type": "char", - "id": 19, - "offset": 137, + "m_numericValue": { + "type": "float", + "id": 2, + "offset": 80, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1302798081 + "hash": 521915239 }, - "m_maxSimultaneousTextures": { - "type": "char", - "id": 20, - "offset": 138, - "flags": 31, + "m_operatorType": { + "type": "enum ReqNumeric::OPERATOR_TYPE", + "id": 3, + "offset": 84, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1083967879 - }, - "m_maxTextureWidth": { - "type": "unsigned short", - "id": 21, - "offset": 140, - "flags": 31, - "container": "Static", - "dynamic": false, + "hash": 2228122961, + "enum_options": { + "OPERATOR_UNKNOWN": 4294967295, + "OPERATOR_EQUALS": 0, + "OPERATOR_GREATER_THAN": 1, + "OPERATOR_LESS_THAN": 2, + "OPERATOR_GREATER_THAN_EQ": 3, + "OPERATOR_LESS_THAN_EQ": 4 + } + } + } + }, + "359892405": { + "name": "class SocialSystemPlayerList", + "bases": [ + "PropertyClass" + ], + "hash": 359892405, + "properties": { + "m_playerList": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 1649109567 - }, - "m_maxTextureHeight": { - "type": "unsigned short", - "id": 22, - "offset": 142, + "hash": 1909774945 + } + } + }, + "825241061": { + "name": "class WizTrainingOption*", + "bases": [ + "ServiceOptionBase", + "PropertyClass" + ], + "hash": 825241061, + "properties": { + "m_serviceName": { + "type": "std::string", + "id": 0, + "offset": 72, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1751799512 + "hash": 2206028813 }, - "m_vertexShaderVersion": { - "type": "unsigned int", - "id": 23, - "offset": 144, + "m_iconKey": { + "type": "std::string", + "id": 1, + "offset": 168, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2017875080 + "hash": 2457138637 }, - "m_pixelShaderVersion": { - "type": "unsigned int", - "id": 24, - "offset": 148, + "m_displayKey": { + "type": "std::string", + "id": 2, + "offset": 104, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2108833228 + "hash": 3023276954 }, - "m_numMonitors": { - "type": "int", - "id": 25, - "offset": 152, + "m_serviceIndex": { + "type": "unsigned int", + "id": 3, + "offset": 204, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 452729285 + "hash": 2103126710 }, - "m_mouseButtons": { - "type": "int", - "id": 26, - "offset": 156, + "m_forceInteract": { + "type": "bool", + "id": 4, + "offset": 200, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 980265490 + "hash": 1705789564 }, - "m_screenResX": { - "type": "unsigned short", - "id": 27, - "offset": 160, + "m_trainingIndex": { + "type": "int", + "id": 5, + "offset": 216, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 857804618 + "hash": 217389422 }, - "m_screenResY": { - "type": "unsigned short", - "id": 28, - "offset": 162, + "m_trainingCost": { + "type": "int", + "id": 6, + "offset": 220, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 857804619 + "hash": 982588239 }, - "m_packedOSVersion": { - "type": "unsigned int", - "id": 29, - "offset": 164, + "m_spellName": { + "type": "std::string", + "id": 7, + "offset": 264, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 701472349 + "hash": 2688485244 }, - "m_packedOSServicePack": { - "type": "unsigned int", - "id": 30, - "offset": 168, + "m_bCanTrain": { + "type": "bool", + "id": 8, + "offset": 228, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 888199623 + "hash": 1382854949 }, - "m_hostedOS": { - "type": "bool", - "id": 31, - "offset": 172, + "m_requiredLevel": { + "type": "int", + "id": 9, + "offset": 224, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 409932636 + "hash": 1148041971 }, - "m_flashPluginInstalled": { - "type": "bool", - "id": 32, - "offset": 173, + "m_requirements": { + "type": "class SharedPointer", + "id": 10, + "offset": 232, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 557011344 + "pointer": true, + "hash": 3043523229 }, - "m_isAdministrator": { - "type": "bool", - "id": 33, - "offset": 174, + "m_failedRequirement": { + "type": "class SharedPointer", + "id": 11, + "offset": 248, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1925580112 - }, - "m_tabletPC": { + "pointer": true, + "hash": 2322583945 + } + } + }, + "1646809340": { + "name": "class ReqHasSpell", + "bases": [ + "Requirement", + "PropertyClass" + ], + "hash": 1646809340, + "properties": { + "m_applyNOT": { "type": "bool", - "id": 34, - "offset": 175, + "id": 0, + "offset": 72, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1302169794 + "hash": 1746328074, + "enum_options": { + "__DEFAULT": 0 + } }, - "m_touchCapabilites": { - "type": "int", - "id": 35, - "offset": 176, - "flags": 31, + "m_operator": { + "type": "enum Requirement::Operator", + "id": 1, + "offset": 76, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 422911998 + "hash": 2672792317, + "enum_options": { + "ROP_AND": 0, + "ROP_OR": 1, + "__DEFAULT": "ROP_AND" + } }, - "m_hwID": { + "m_spellName": { "type": "std::string", - "id": 36, - "offset": 184, - "flags": 31, + "id": 2, + "offset": 80, + "flags": 268435487, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1717166887 - }, - "m_hwSerials": { - "type": "std::string", - "id": 37, - "offset": 216, - "flags": 31, - "container": "Vector", + "hash": 2688485244, + "enum_options": { + "__BASECLASS": "SpellTemplate" + } + } + } + }, + "359867829": { + "name": "class SocialSystemPlayerList*", + "bases": [ + "PropertyClass" + ], + "hash": 359867829, + "properties": { + "m_playerList": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", "dynamic": true, "singleton": false, "pointer": false, - "hash": 2604793293 + "hash": 1909774945 } } }, - "1172622241": { - "name": "class HousingMusicBehaviorTemplate", + "807923400": { + "name": "class BattlegroundPlayerStatsManager", "bases": [ - "BehaviorTemplate", "PropertyClass" ], - "hash": 1172622241, + "hash": 807923400, "properties": { - "m_behaviorName": { - "type": "std::string", + "m_statsList": { + "type": "class SharedPointer", "id": 0, "offset": 72, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 3130754092 + "pointer": true, + "hash": 2999855587 }, - "m_staticMusicFile": { - "type": "std::string", + "m_poi": { + "type": "class SharedPointer", "id": 1, - "offset": 120, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2845362532 - }, - "m_dynamicMusicFile": { - "type": "std::string", - "id": 2, - "offset": 152, - "flags": 131079, + "offset": 88, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 3205780097 + "pointer": true, + "hash": 1342603341 } } }, - "9491829": { - "name": "class SharedPointer", + "1198629259": { + "name": "class HideActorCinematicAction*", "bases": [ "ActorCinematicAction", "CinematicAction", "PropertyClass" ], - "hash": 9491829, + "hash": 1198629259, "properties": { "m_timeOffset": { "type": "float", @@ -519812,8 +317523,8 @@ "pointer": false, "hash": 2285866132 }, - "m_newNamePattern": { - "type": "std::string", + "m_bHide": { + "type": "bool", "id": 2, "offset": 120, "flags": 7, @@ -519821,1690 +317532,1534 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 1519245892 + "hash": 790850959 }, - "m_bActOnlyOnFirstActor": { + "m_evenWhileDead": { "type": "bool", "id": 3, - "offset": 152, + "offset": 121, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2050856077 + "hash": 2100875368 + }, + "m_bMultiRound": { + "type": "bool", + "id": 4, + "offset": 122, + "flags": 263, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1821746440 } } }, - "1567024062": { - "name": "class BackpackBuddySchoolOptions", + "2080921617": { + "name": "class DamageLimitOverride", "bases": [ + "CombatRule", "PropertyClass" ], - "hash": 1567024062, + "hash": 2080921617, "properties": { - "m_balance": { - "type": "bool", + "m_damageLimit": { + "type": "float", "id": 0, "offset": 72, - "flags": 7, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 429321305 + "hash": 271286357 }, - "m_death": { - "type": "bool", + "m_dK0": { + "type": "float", "id": 1, - "offset": 73, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 794256793 - }, - "m_fire": { - "type": "bool", - "id": 2, - "offset": 74, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 221862713 - }, - "m_ice": { - "type": "bool", - "id": 3, - "offset": 75, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 269518980 - }, - "m_life": { - "type": "bool", - "id": 4, "offset": 76, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 222077939 - }, - "m_myth": { - "type": "bool", - "id": 5, - "offset": 77, - "flags": 7, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 222131765 + "hash": 357232662 }, - "m_storm": { - "type": "bool", - "id": 6, - "offset": 78, - "flags": 7, + "m_dN0": { + "type": "float", + "id": 2, + "offset": 80, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 812599848 - }, - "m_astral": { - "type": "bool", - "id": 7, - "offset": 79, + "hash": 357232761 + } + } + }, + "359215443": { + "name": "class TieredSpellManager", + "bases": [ + "PropertyClass" + ], + "hash": 359215443, + "properties": { + "m_tieredSpellConfig": { + "type": "class SharedPointer", + "id": 0, + "offset": 80, "flags": 7, "container": "Static", "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 258319322 - }, - "m_shadow": { - "type": "bool", - "id": 8, - "offset": 80, - "flags": 7, + "singleton": true, + "pointer": true, + "hash": 2945256819 + } + } + }, + "804398852": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 804398852, + "properties": { + "m_effectName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 949013689 + "hash": 2029161513 } } }, - "403320837": { - "name": "class UserCapabilitiesInfo*", + "1196545820": { + "name": "class WizGameStats", "bases": [ "PropertyClass" ], - "hash": 403320837, + "hash": 1196545820, "properties": { - "m_macAddress": { - "type": "std::string", + "m_baseHitpoints": { + "type": "int", "id": 0, - "offset": 72, + "offset": 80, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3156887154 + "hash": 596105911 }, - "m_systemMemory": { - "type": "unsigned short", + "m_baseMana": { + "type": "int", "id": 1, - "offset": 104, + "offset": 84, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 852349606 + "hash": 1475495442 }, - "m_freeDiskSpace": { - "type": "unsigned short", + "m_baseGoldPouch": { + "type": "int", "id": 2, - "offset": 106, + "offset": 88, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1250782497 + "hash": 848889754 }, - "m_processorArchitecture": { - "type": "unsigned short", + "m_baseEventCurrency1Pouch": { + "type": "int", "id": 3, - "offset": 108, + "offset": 92, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2088980971 + "hash": 1227701106 }, - "m_numProcessors": { - "type": "char", + "m_baseEventCurrency2Pouch": { + "type": "int", "id": 4, - "offset": 110, + "offset": 96, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 706266711 + "hash": 1266836499 }, - "m_processorType": { - "type": "unsigned int", + "m_basePvPCurrencyPouch": { + "type": "int", "id": 5, - "offset": 112, + "offset": 100, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1199310607 + "hash": 250034965 }, - "m_processorLevel": { - "type": "unsigned short", + "m_basePvPTourneyCurrencyPouch": { + "type": "int", "id": 6, - "offset": 116, + "offset": 104, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 929266784 + "hash": 2005272907 }, - "m_processorRevision": { - "type": "unsigned short", + "m_energyMax": { + "type": "int", "id": 7, - "offset": 118, + "offset": 108, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1573335831 + "hash": 493080970 }, - "m_vendorID": { - "type": "unsigned short", + "m_currentHitpoints": { + "type": "int", "id": 8, - "offset": 120, + "offset": 112, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2522209987 + "hash": 1533788735 }, - "m_deviceID": { - "type": "unsigned short", + "m_currentGold": { + "type": "int", "id": 9, - "offset": 122, + "offset": 116, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2360466085 + "hash": 1255819683 }, - "m_subSysID": { - "type": "unsigned int", + "m_currentEventCurrency1": { + "type": "int", "id": 10, - "offset": 124, + "offset": 120, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1872946051 + "hash": 1718583419 }, - "m_textureMemory": { - "type": "unsigned short", + "m_currentEventCurrency2": { + "type": "int", "id": 11, - "offset": 128, + "offset": 124, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1738572338 + "hash": 1718583420 }, - "m_hwTransformAndLight": { - "type": "bool", + "m_currentPvPCurrency": { + "type": "int", "id": 12, - "offset": 130, + "offset": 128, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2100427321 + "hash": 958495550 }, - "m_dynamicTextures": { - "type": "bool", + "m_currentPvPTourneyCurrency": { + "type": "int", "id": 13, - "offset": 131, + "offset": 132, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2010245916 + "hash": 398198452 }, - "m_renderToTexture_A8R8G8B8": { - "type": "bool", + "m_currentMana": { + "type": "int", "id": 14, - "offset": 132, + "offset": 136, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1029952834 + "hash": 1256020122 }, - "m_renderToTexture_A8B8G8R8": { - "type": "bool", + "m_currentArenaPoints": { + "type": "int", "id": 15, - "offset": 133, + "offset": 140, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 403787074 + "hash": 1119642753 }, - "m_textureFromSystemMemory": { - "type": "bool", + "m_spellChargeBase": { + "type": "int", "id": 16, - "offset": 134, + "offset": 144, "flags": 31, - "container": "Static", - "dynamic": false, + "container": "Vector", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 1414058230 + "hash": 712023615 }, - "m_textureFromVideoMemory": { - "type": "bool", + "m_potionMax": { + "type": "float", "id": 17, - "offset": 135, + "offset": 168, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 501373448 + "hash": 2123676470 }, - "m_maxTextureBlendStages": { - "type": "char", + "m_potionCharge": { + "type": "float", "id": 18, - "offset": 136, + "offset": 172, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 783320407 + "hash": 1104179290 }, - "m_maxActiveLights": { - "type": "char", + "m_pArenaLadder": { + "type": "class SharedPointer", "id": 19, - "offset": 137, + "offset": 176, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1302798081 + "pointer": true, + "hash": 2717766581 }, - "m_maxSimultaneousTextures": { - "type": "char", + "m_pDerbyLadder": { + "type": "class SharedPointer", "id": 20, - "offset": 138, + "offset": 192, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1083967879 + "pointer": true, + "hash": 2352744804 }, - "m_maxTextureWidth": { - "type": "unsigned short", + "m_bracketLader": { + "type": "class SharedPointer", "id": 21, - "offset": 140, + "offset": 208, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1649109567 + "pointer": true, + "hash": 2562001526 }, - "m_maxTextureHeight": { - "type": "unsigned short", + "m_bonusHitpoints": { + "type": "int", "id": 22, - "offset": 142, + "offset": 224, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1751799512 + "hash": 103057475 }, - "m_vertexShaderVersion": { - "type": "unsigned int", + "m_bonusMana": { + "type": "int", "id": 23, - "offset": 144, + "offset": 228, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2017875080 + "hash": 1757236254 }, - "m_pixelShaderVersion": { - "type": "unsigned int", + "m_bonusEnergy": { + "type": "int", "id": 24, - "offset": 148, + "offset": 244, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2108833228 + "hash": 1975625099 }, - "m_numMonitors": { - "type": "int", + "m_criticalHitPercentAll": { + "type": "float", "id": 25, - "offset": 152, + "offset": 248, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 452729285 + "hash": 2085066513 }, - "m_mouseButtons": { - "type": "int", + "m_blockPercentAll": { + "type": "float", "id": 26, - "offset": 156, + "offset": 252, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 980265490 + "hash": 1203386380 }, - "m_screenResX": { - "type": "unsigned short", + "m_criticalHitRatingAll": { + "type": "float", "id": 27, - "offset": 160, + "offset": 256, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 857804618 + "hash": 923968773 }, - "m_screenResY": { - "type": "unsigned short", + "m_blockRatingAll": { + "type": "float", "id": 28, - "offset": 162, + "offset": 260, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 857804619 + "hash": 1743229600 }, - "m_packedOSVersion": { - "type": "unsigned int", + "m_referenceLevel": { + "type": "int", "id": 29, - "offset": 164, + "offset": 324, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 701472349 + "hash": 1436595649 }, - "m_packedOSServicePack": { - "type": "unsigned int", + "m_highestCharacterLevelOnAccount": { + "type": "int", "id": 30, - "offset": 168, + "offset": 336, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 888199623 + "hash": 1662017333 }, - "m_hostedOS": { - "type": "bool", + "m_petActChance": { + "type": "int", "id": 31, - "offset": 172, + "offset": 344, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 409932636 + "hash": 237418461 }, - "m_flashPluginInstalled": { - "type": "bool", + "m_dmgBonusPercent": { + "type": "float", "id": 32, - "offset": 173, + "offset": 352, "flags": 31, - "container": "Static", - "dynamic": false, + "container": "Vector", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 557011344 + "hash": 194501159 }, - "m_isAdministrator": { - "type": "bool", + "m_dmgBonusFlat": { + "type": "float", "id": 33, - "offset": 174, + "offset": 376, "flags": 31, - "container": "Static", - "dynamic": false, + "container": "Vector", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 1925580112 + "hash": 1837769725 }, - "m_tabletPC": { - "type": "bool", + "m_accBonusPercent": { + "type": "float", "id": 34, - "offset": 175, + "offset": 400, "flags": 31, - "container": "Static", - "dynamic": false, + "container": "Vector", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 1302169794 + "hash": 331557526 }, - "m_touchCapabilites": { - "type": "int", + "m_apBonusPercent": { + "type": "float", "id": 35, - "offset": 176, + "offset": 424, "flags": 31, - "container": "Static", - "dynamic": false, + "container": "Vector", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 422911998 + "hash": 1228557984 }, - "m_hwID": { - "type": "std::string", + "m_dmgReducePercent": { + "type": "float", "id": 36, - "offset": 184, + "offset": 448, "flags": 31, - "container": "Static", - "dynamic": false, + "container": "Vector", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 1717166887 + "hash": 1426050712 }, - "m_hwSerials": { - "type": "std::string", + "m_dmgReduceFlat": { + "type": "float", "id": 37, - "offset": 216, + "offset": 472, "flags": 31, "container": "Vector", "dynamic": true, "singleton": false, "pointer": false, - "hash": 2604793293 - } - } - }, - "1172223090": { - "name": "class InteractiveMusicBehaviorTemplate", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 1172223090, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - }, - "m_titleText": { - "type": "std::string", - "id": 1, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2703025890 - }, - "m_instrumentGUI": { - "type": "std::string", - "id": 2, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1548997465 - }, - "m_useAlternateHighlighting": { - "type": "int", - "id": 3, - "offset": 184, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 275839645 + "hash": 1218184718 }, - "m_buttonSampleList": { - "type": "class SharedPointer", - "id": 4, - "offset": 192, - "flags": 7, - "container": "List", + "m_accReducePercent": { + "type": "float", + "id": 38, + "offset": 496, + "flags": 31, + "container": "Vector", "dynamic": true, "singleton": false, - "pointer": true, - "hash": 2024362058 + "pointer": false, + "hash": 1653943527 }, - "m_musicLoopList": { - "type": "class SharedPointer", - "id": 5, - "offset": 208, - "flags": 7, - "container": "List", + "m_healBonusPercent": { + "type": "float", + "id": 39, + "offset": 520, + "flags": 31, + "container": "Vector", "dynamic": true, "singleton": false, - "pointer": true, - "hash": 2490589385 - } - } - }, - "1567024052": { - "name": "class BackpackBuddySchoolOptions*", - "bases": [ - "PropertyClass" - ], - "hash": 1567024052, - "properties": { - "m_balance": { - "type": "bool", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, "pointer": false, - "hash": 429321305 + "hash": 562313577 }, - "m_death": { - "type": "bool", - "id": 1, - "offset": 73, - "flags": 7, - "container": "Static", - "dynamic": false, + "m_healIncBonusPercent": { + "type": "float", + "id": 40, + "offset": 544, + "flags": 31, + "container": "Vector", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 794256793 + "hash": 2182535587 }, - "m_fire": { - "type": "bool", - "id": 2, - "offset": 74, - "flags": 7, - "container": "Static", - "dynamic": false, + "m_spellChargeBonus": { + "type": "int", + "id": 41, + "offset": 592, + "flags": 31, + "container": "Vector", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 221862713 + "hash": 2019610507 }, - "m_ice": { - "type": "bool", - "id": 3, - "offset": 75, - "flags": 7, + "m_dmgBonusPercentAll": { + "type": "float", + "id": 42, + "offset": 712, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 269518980 + "hash": 2076945760 }, - "m_life": { - "type": "bool", - "id": 4, - "offset": 76, - "flags": 7, + "m_dmgBonusFlatAll": { + "type": "float", + "id": 43, + "offset": 716, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 222077939 + "hash": 419082102 }, - "m_myth": { - "type": "bool", - "id": 5, - "offset": 77, - "flags": 7, + "m_accBonusPercentAll": { + "type": "float", + "id": 44, + "offset": 720, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 222131765 + "hash": 1144118127 }, - "m_storm": { - "type": "bool", - "id": 6, - "offset": 78, - "flags": 7, + "m_apBonusPercentAll": { + "type": "float", + "id": 45, + "offset": 724, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 812599848 + "hash": 772537145 }, - "m_astral": { - "type": "bool", - "id": 7, - "offset": 79, - "flags": 7, + "m_dmgReducePercentAll": { + "type": "float", + "id": 46, + "offset": 728, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 258319322 + "hash": 635246641 }, - "m_shadow": { - "type": "bool", - "id": 8, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 949013689 - } - } - }, - "1975797348": { - "name": "class BasePetMorphManager", - "bases": [ - "PropertyClass" - ], - "hash": 1975797348, - "properties": { - "m_totalCostMin": { - "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 7, + "m_dmgReduceFlatAll": { + "type": "float", + "id": 47, + "offset": 732, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 496624814 + "hash": 1650631655 }, - "m_totalCostMax": { - "type": "unsigned int", - "id": 1, - "offset": 76, - "flags": 7, + "m_accReducePercentAll": { + "type": "float", + "id": 48, + "offset": 736, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 496624560 + "hash": 2064189472 }, - "m_totalRarityMin": { - "type": "unsigned int", - "id": 2, - "offset": 80, - "flags": 7, + "m_healBonusPercentAll": { + "type": "float", + "id": 49, + "offset": 740, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1549157264 + "hash": 242474338 }, - "m_totalRarityMax": { - "type": "unsigned int", - "id": 3, - "offset": 84, - "flags": 7, + "m_healIncBonusPercentAll": { + "type": "float", + "id": 50, + "offset": 744, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1549157010 + "hash": 1436699484 }, - "m_statDataMin": { - "type": "unsigned int", - "id": 4, - "offset": 88, - "flags": 7, + "m_spellChargeBonusAll": { + "type": "int", + "id": 51, + "offset": 752, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 988659687 + "hash": 1354189604 }, - "m_statDataMax": { - "type": "unsigned int", - "id": 5, - "offset": 92, - "flags": 7, + "m_powerPipBase": { + "type": "float", + "id": 52, + "offset": 756, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 988659433 + "hash": 345261352 }, - "m_wowDataMin": { - "type": "unsigned int", - "id": 6, - "offset": 96, - "flags": 7, + "m_powerPipBonusPercentAll": { + "type": "float", + "id": 53, + "offset": 792, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1289909672 + "hash": 1850107326 }, - "m_wowDataMax": { - "type": "unsigned int", - "id": 7, - "offset": 100, - "flags": 7, + "m_xpPercentIncrease": { + "type": "float", + "id": 54, + "offset": 800, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1289909418 + "hash": 1051081338 }, - "m_pedigreeDataMin": { - "type": "unsigned int", - "id": 8, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, + "m_criticalHitPercentBySchool": { + "type": "float", + "id": 55, + "offset": 616, + "flags": 31, + "container": "Vector", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 1947586064 + "hash": 1022327067 }, - "m_pedigreeDataMax": { - "type": "unsigned int", - "id": 9, - "offset": 108, - "flags": 7, - "container": "Static", - "dynamic": false, + "m_blockPercentBySchool": { + "type": "float", + "id": 56, + "offset": 640, + "flags": 31, + "container": "Vector", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 1947585810 + "hash": 2189750006 }, - "m_statsWeight": { + "m_criticalHitRatingBySchool": { "type": "float", - "id": 10, - "offset": 112, - "flags": 7, - "container": "Static", - "dynamic": false, + "id": 57, + "offset": 664, + "flags": 31, + "container": "Vector", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 1028083822 + "hash": 2060803983 }, - "m_wowWeight": { + "m_blockRatingBySchool": { "type": "float", - "id": 11, - "offset": 116, - "flags": 7, - "container": "Static", - "dynamic": false, + "id": 58, + "offset": 688, + "flags": 31, + "container": "Vector", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 1781950908 + "hash": 274073098 }, - "m_pedigreeWeight": { - "type": "float", - "id": 12, - "offset": 120, - "flags": 7, + "m_balanceMastery": { + "type": "int", + "id": 59, + "offset": 832, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2192332068 + "hash": 149062181 }, - "m_kioskCombatTalentCostMin": { + "m_deathMastery": { "type": "int", - "id": 13, - "offset": 128, - "flags": 7, - "container": "Vector", - "dynamic": true, + "id": 60, + "offset": 836, + "flags": 31, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 2086730582 + "hash": 1421218661 }, - "m_kioskCombatTalentCostGrowth": { + "m_fireMastery": { "type": "int", - "id": 14, - "offset": 152, - "flags": 7, - "container": "Vector", - "dynamic": true, + "id": 61, + "offset": 840, + "flags": 31, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 1600144109 + "hash": 1431794949 }, - "m_kioskDerbyTalentCostMin": { + "m_iceMastery": { "type": "int", - "id": 15, - "offset": 176, - "flags": 7, - "container": "Vector", - "dynamic": true, + "id": 62, + "offset": 844, + "flags": 31, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 787626614 + "hash": 704864240 }, - "m_kioskDerbyTalentCostGrowth": { + "m_lifeMastery": { "type": "int", - "id": 16, - "offset": 200, - "flags": 7, - "container": "Vector", - "dynamic": true, + "id": 63, + "offset": 848, + "flags": 31, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 1995353613 + "hash": 2142136447 }, - "m_inPersonCombatTalentCostMin": { + "m_mythMastery": { "type": "int", - "id": 17, - "offset": 224, - "flags": 7, - "container": "Vector", - "dynamic": true, + "id": 64, + "offset": 852, + "flags": 31, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 337785603 + "hash": 1766317185 }, - "m_inPersonCombatTalentCostGrowth": { + "m_stormMastery": { "type": "int", - "id": 18, - "offset": 248, - "flags": 7, - "container": "Vector", - "dynamic": true, + "id": 65, + "offset": 856, + "flags": 31, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 168359802 + "hash": 1883988244 }, - "m_inPersonDerbyTalentCostMin": { + "m_maximumNumberOfIslands": { "type": "int", - "id": 19, - "offset": 272, - "flags": 7, - "container": "Vector", - "dynamic": true, + "id": 66, + "offset": 860, + "flags": 31, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 409251971 + "hash": 412109412 }, - "m_inPersonDerbyTalentCostGrowth": { - "type": "int", - "id": 20, - "offset": 296, - "flags": 7, - "container": "Vector", - "dynamic": true, + "m_gardeningLevel": { + "type": "unsigned char", + "id": 67, + "offset": 864, + "flags": 31, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 64783610 + "hash": 2456231799 }, - "m_kioskPedigreeMin": { + "m_gardeningXP": { "type": "int", - "id": 21, - "offset": 320, - "flags": 7, + "id": 68, + "offset": 868, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1416396228 + "hash": 590238801 }, - "m_kioskCombatDivisor": { - "type": "int", - "id": 22, - "offset": 324, - "flags": 7, + "m_invisibleToFriends": { + "type": "bool", + "id": 69, + "offset": 872, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1325329457 + "hash": 416456454 }, - "m_kioskCombatExponent": { - "type": "int", - "id": 23, - "offset": 328, - "flags": 7, + "m_showItemLock": { + "type": "bool", + "id": 70, + "offset": 873, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 268917794 + "hash": 3575244 }, - "m_kioskDerbyDivisor": { - "type": "int", - "id": 24, - "offset": 332, - "flags": 7, + "m_questFinderEnabled": { + "type": "bool", + "id": 71, + "offset": 874, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1909936977 + "hash": 125544072 }, - "m_kioskDerbyExponent": { + "m_buddyListLimit": { "type": "int", - "id": 25, - "offset": 336, - "flags": 7, + "id": 72, + "offset": 876, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 233613122 + "hash": 1103577965 }, - "m_inPersonPedigreeMin": { - "type": "int", - "id": 26, - "offset": 340, - "flags": 7, + "m_dontAllowFriendFinderCodes": { + "type": "bool", + "id": 73, + "offset": 884, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 769349745 + "hash": 1360721765 }, - "m_inPersonCombatDivisor": { - "type": "int", - "id": 27, - "offset": 344, - "flags": 7, + "m_stunResistancePercent": { + "type": "float", + "id": 74, + "offset": 880, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1066346014 + "hash": 1868382627 }, - "m_inPersonCombatExponent": { - "type": "int", - "id": 28, - "offset": 348, - "flags": 7, + "m_shadowMagicUnlocked": { + "type": "bool", + "id": 75, + "offset": 892, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 312398767 + "hash": 1642162767 }, - "m_inPersonDerbyDivisor": { + "m_shadowPipMax": { "type": "int", - "id": 29, - "offset": 352, - "flags": 7, + "id": 76, + "offset": 888, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2032239518 + "hash": 1774396431 }, - "m_inPersonDerbyExponent": { - "type": "int", - "id": 30, - "offset": 356, - "flags": 7, + "m_fishingLevel": { + "type": "unsigned char", + "id": 77, + "offset": 893, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2122113327 + "hash": 682785040 }, - "m_petLendsLevelDivisor": { + "m_fishingXP": { "type": "int", - "id": 31, - "offset": 408, - "flags": 7, + "id": 78, + "offset": 896, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 574571025 + "hash": 319909002 }, - "m_balancePetLendLoot": { - "type": "std::string", - "id": 32, - "offset": 416, - "flags": 7, + "m_fishingLuckBonusPercent": { + "type": "float", + "id": 79, + "offset": 568, + "flags": 31, "container": "Vector", "dynamic": true, "singleton": false, "pointer": false, - "hash": 1766917643 + "hash": 1363349254 }, - "m_deathPetLendLoot": { - "type": "std::string", - "id": 33, - "offset": 440, - "flags": 7, - "container": "Vector", - "dynamic": true, + "m_fishingLuckBonusPercentAll": { + "type": "float", + "id": 80, + "offset": 748, + "flags": 31, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 2869638987 + "hash": 2190780895 }, - "m_firePetLendLoot": { - "type": "std::string", - "id": 34, - "offset": 464, - "flags": 7, - "container": "Vector", - "dynamic": true, + "m_subscriberBenefitFlags": { + "type": "unsigned int", + "id": 81, + "offset": 900, + "flags": 31, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 2059692267 + "hash": 1587324747 }, - "m_icePetLendLoot": { - "type": "std::string", - "id": 35, - "offset": 488, - "flags": 7, - "container": "Vector", - "dynamic": true, + "m_elixirBenefitFlags": { + "type": "unsigned int", + "id": 82, + "offset": 904, + "flags": 31, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 3354513750 + "hash": 2320773252 }, - "m_lifePetLendLoot": { - "type": "std::string", - "id": 36, - "offset": 512, - "flags": 7, - "container": "Vector", - "dynamic": true, + "m_shadowPipBonusPercent": { + "type": "float", + "id": 83, + "offset": 796, + "flags": 31, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 2516355429 + "hash": 1426533310 }, - "m_mythPetLendLoot": { - "type": "std::string", - "id": 37, - "offset": 536, - "flags": 7, - "container": "Vector", - "dynamic": true, + "m_wispBonusPercent": { + "type": "float", + "id": 84, + "offset": 824, + "flags": 31, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 3612618343 + "hash": 1304386546 }, - "m_stormPetLendLoot": { - "type": "std::string", - "id": 38, - "offset": 560, - "flags": 7, + "m_pipConversionRatingAll": { + "type": "float", + "id": 85, + "offset": 288, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 198602948 + }, + "m_pipConversionRatingPerSchool": { + "type": "float", + "id": 86, + "offset": 264, + "flags": 31, "container": "Vector", "dynamic": true, "singleton": false, "pointer": false, - "hash": 2262680698 - } - } - }, - "1566443063": { - "name": "class SharedPointer", - "bases": [ - "CombatRule", - "PropertyClass" - ], - "hash": 1566443063, - "properties": { - "m_shadowThresholdType": { - "type": "enum kShadow_Threshold_Type", - "id": 0, - "offset": 72, - "flags": 2097159, + "hash": 930350362 + }, + "m_pipConversionPercentAll": { + "type": "float", + "id": 87, + "offset": 320, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2847763136, - "enum_options": { - "SHADOW_THRESHOLD_MIN": 0, - "SHADOW_THRESHOLD_AVG": 1, - "SHADOW_THRESHOLD_MAX": 2 - } + "hash": 1770314416 }, - "m_shadowThresholdFactor": { + "m_pipConversionPercentPerSchool": { "type": "float", - "id": 1, - "offset": 76, + "id": 88, + "offset": 296, + "flags": 31, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 960311302 + }, + "m_monsterMagicLevel": { + "type": "unsigned char", + "id": 89, + "offset": 908, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2104355177 + "hash": 729572689 }, - "m_shadowPipRatingFactor": { - "type": "float", - "id": 2, - "offset": 80, + "m_monsterMagicXP": { + "type": "int", + "id": 90, + "offset": 912, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1061434314 - } - } - }, - "425837993": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 425837993, - "properties": { - "m_id": { - "type": "gid", - "id": 0, - "offset": 72, - "flags": 7, + "hash": 770955371 + }, + "m_playerChatChannelIsPublic": { + "type": "bool", + "id": 91, + "offset": 916, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2090569797 + "hash": 50035796 }, - "m_name": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, + "m_extraInventorySpace": { + "type": "int", + "id": 92, + "offset": 920, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1717359772 + "hash": 1757105784 }, - "m_nodeIDs": { - "type": "gid", - "id": 2, - "offset": 112, - "flags": 7, - "container": "List", - "dynamic": true, + "m_rememberLastRealm": { + "type": "bool", + "id": 93, + "offset": 924, + "flags": 31, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 1430564382 - } - } - }, - "1996069046": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1996069046, - "properties": { - "m_characterGID": { - "type": "gid", - "id": 0, - "offset": 72, - "flags": 7, + "hash": 746394247 + }, + "m_newSpellbookLayoutWarning": { + "type": "bool", + "id": 94, + "offset": 925, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 501688601 + "hash": 1509105148 }, - "m_packedName": { - "type": "std::string", - "id": 1, - "offset": 88, - "flags": 7, + "m_pipConversionBaseAllSchools": { + "type": "int", + "id": 95, + "offset": 760, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1805208228 + "hash": 307930968 }, - "m_lastSeenTime": { + "m_pipConversionBasePerSchool": { + "type": "int", + "id": 96, + "offset": 768, + "flags": 31, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1322493139 + }, + "m_purchasedCustomEmotes1": { "type": "unsigned int", - "id": 2, - "offset": 80, - "flags": 7, + "id": 97, + "offset": 928, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2066613339 + "hash": 2104336133 }, - "m_level": { + "m_purchasedCustomTeleportEffects1": { "type": "unsigned int", - "id": 3, - "offset": 120, - "flags": 7, + "id": 98, + "offset": 932, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1012687813 + "hash": 603893351 }, - "m_school": { + "m_equippedTeleportEffect": { "type": "unsigned int", - "id": 4, - "offset": 124, - "flags": 7, + "id": 99, + "offset": 936, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1152268885 + "hash": 918478182 }, - "m_combatCount": { + "m_highestWorld1ID": { "type": "unsigned int", - "id": 5, - "offset": 128, - "flags": 7, + "id": 100, + "offset": 956, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2338224044 + "hash": 2049405919 }, - "m_instanceCount": { + "m_highestWorld2ID": { "type": "unsigned int", - "id": 6, - "offset": 132, - "flags": 7, + "id": 101, + "offset": 960, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1489352139 + "hash": 2049407008 }, - "m_hatchCount": { + "m_activeClassProjectsList": { "type": "unsigned int", - "id": 7, - "offset": 136, - "flags": 7, - "container": "Static", - "dynamic": false, + "id": 102, + "offset": 968, + "flags": 31, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 1273194302 + "hash": 1952826405 }, - "m_beastmoonCount": { + "m_disabledItemSlotIDs": { "type": "unsigned int", - "id": 8, - "offset": 140, - "flags": 7, + "id": 103, + "offset": 984, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1477574262 + }, + "m_adventurePowerCooldownTime": { + "type": "unsigned int", + "id": 104, + "offset": 1000, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1289638718 + "hash": 1774753180 }, - "m_derbyCount": { + "m_purchasedCustomEmotes2": { "type": "unsigned int", - "id": 9, - "offset": 144, - "flags": 7, + "id": 105, + "offset": 940, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 265597676 + "hash": 2104336134 }, - "m_PVPCount": { + "m_purchasedCustomTeleportEffects2": { "type": "unsigned int", - "id": 10, - "offset": 148, - "flags": 7, + "id": 106, + "offset": 944, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 624008108 + "hash": 603893352 }, - "m_housingGameCount": { + "m_purchasedCustomEmotes3": { "type": "unsigned int", - "id": 11, - "offset": 152, - "flags": 7, + "id": 107, + "offset": 948, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1403136525 + "hash": 2104336135 }, - "m_worldID": { + "m_purchasedCustomTeleportEffects3": { "type": "unsigned int", - "id": 12, - "offset": 156, - "flags": 7, + "id": 108, + "offset": 952, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 397177058 + "hash": 603893353 }, - "m_objectGID": { - "type": "gid", - "id": 13, - "offset": 160, - "flags": 7, + "m_shadowPipRating": { + "type": "float", + "id": 109, + "offset": 1004, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2037310403 + "hash": 507126123 }, - "m_isOnline": { - "type": "bool", - "id": 14, - "offset": 168, - "flags": 7, + "m_bonusShadowPipRating": { + "type": "float", + "id": 110, + "offset": 1008, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1681359252 - } - } - }, - "403526249": { - "name": "class SharedPointer", - "bases": [ - "PathBehaviorTemplate::Action", - "PropertyClass" - ], - "hash": 403526249, - "properties": { - "m_nPathID": { - "type": "gid", - "id": 0, - "offset": 72, - "flags": 7, + "hash": 578452466 + }, + "m_shadowPipRateAccumulated": { + "type": "float", + "id": 111, + "offset": 1012, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 214382368 + "hash": 922051738 }, - "m_nNodeID": { - "type": "int", - "id": 1, - "offset": 80, - "flags": 7, + "m_shadowPipRateThreshold": { + "type": "float", + "id": 112, + "offset": 1016, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 152152635, - "enum_options": { - "__DEFAULT": 4294967295 - } + "hash": 1215959391 }, - "m_nPriority": { + "m_shadowPipRatePercentage": { "type": "int", - "id": 2, - "offset": 84, - "flags": 7, + "id": 113, + "offset": 1020, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1515251530, - "enum_options": { - "__DEFAULT": 100 - } + "hash": 2119696723 }, - "m_nChance": { - "type": "int", - "id": 3, - "offset": 88, - "flags": 7, + "m_friendlyPlayer": { + "type": "bool", + "id": 114, + "offset": 1024, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1860748394, - "enum_options": { - "__DEFAULT": 50 - } + "hash": 990699901 }, - "m_sStateName": { - "type": "std::string", - "id": 4, - "offset": 96, - "flags": 7, + "m_emojiSkinTone": { + "type": "int", + "id": 115, + "offset": 1028, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1788022096 - } - } - }, - "819916259": { - "name": "class ClassInfo*", - "bases": [ - "PropertyClass" - ], - "hash": 819916259, - "properties": { - "m_className": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, + "hash": 1291044345 + }, + "m_showPVPOption": { + "type": "unsigned int", + "id": 116, + "offset": 1032, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2220521682 + "hash": 2052204093 }, - "m_classLevelInfo": { - "type": "class MagicLevelInfo*", - "id": 1, - "offset": 112, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 3643333981 - } - } - }, - "1975922355": { - "name": "class SharedPointer", - "bases": [ - "InfractionPenaltyInfo", - "PropertyClass" - ], - "hash": 1975922355, - "properties": { - "m_addAtPointValue": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, + "m_favoriteSlot": { + "type": "int", + "id": 117, + "offset": 1036, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1071217084 + "hash": 13456252 }, - "m_removeAtPointValue": { - "type": "float", - "id": 1, - "offset": 76, - "flags": 7, + "m_cantripLevel": { + "type": "unsigned char", + "id": 118, + "offset": 1040, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2112196961 + "hash": 788457241 }, - "m_lifespan": { - "type": "std::string", - "id": 2, - "offset": 80, - "flags": 7, + "m_cantripXP": { + "type": "int", + "id": 119, + "offset": 1044, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3042809453 - } - } - }, - "403628188": { - "name": "class SharedPointer", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 403628188, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, + "hash": 1867018035 + }, + "m_archmasteryBase": { + "type": "float", + "id": 120, + "offset": 1048, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 + "hash": 2213748661 }, - "m_schoolOfFocus": { - "type": "unsigned int", - "id": 1, - "offset": 128, + "m_archmasteryBonusFlat": { + "type": "float", + "id": 121, + "offset": 1052, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 236936682 + "hash": 2047862920 }, - "m_experiencePoints": { - "type": "int", - "id": 2, - "offset": 136, + "m_archmasteryBonusPercentage": { + "type": "float", + "id": 122, + "offset": 1056, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2011512991 + "hash": 2054419871 }, - "m_level": { + "m_highestCharacterWorldOnAccount": { "type": "int", - "id": 3, - "offset": 132, + "id": 123, + "offset": 340, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 801285362 + "hash": 1240477285 }, - "m_trainingPoints": { - "type": "int", - "id": 4, - "offset": 140, + "m_schoolID": { + "type": "unsigned int", + "id": 124, + "offset": 328, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1003892499 + "hash": 369010242 }, - "m_overflowXP": { + "m_levelScaled": { "type": "int", - "id": 5, - "offset": 148, + "id": 125, + "offset": 332, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 315792502 + "hash": 1740930910 }, - "m_levelLocked": { - "type": "int", - "id": 6, - "offset": 152, + "m_currentZoneName": { + "type": "std::string", + "id": 126, + "offset": 1064, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1481284996 + "hash": 3602481883 }, - "m_equippedTeleportEffect": { - "type": "unsigned int", - "id": 7, - "offset": 144, + "m_mailSentToday": { + "type": "unsigned char", + "id": 127, + "offset": 1096, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 918478182 + "hash": 2737597102 }, "m_secondarySchool": { "type": "unsigned int", - "id": 8, - "offset": 156, + "id": 128, + "offset": 1100, "flags": 31, "container": "Static", "dynamic": false, @@ -521514,631 +319069,599 @@ } } }, - "1568364158": { - "name": "class SharedPointer", + "801183007": { + "name": "class UntargetableCinematicAction*", "bases": [ - "Window", + "ActorCinematicAction", + "CinematicAction", "PropertyClass" ], - "hash": 1568364158, + "hash": 801183007, "properties": { - "m_sName": { - "type": "std::string", + "m_timeOffset": { + "type": "float", "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, "offset": 80, - "flags": 135, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2306437263 + "hash": 2285866132 + } + } + }, + "1647198248": { + "name": "class EquipSlot*", + "bases": [ + "PropertyClass" + ], + "hash": 1647198248, + "properties": { + "m_slotRequirements": { + "type": "class RequirementList*", + "id": 0, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2462163144 }, - "m_Children": { - "type": "class SharedPointer", + "m_adjectivesAND": { + "type": "std::string", "id": 1, - "offset": 112, - "flags": 65667, - "container": "Vector", + "offset": 160, + "flags": 7, + "container": "List", "dynamic": true, "singleton": false, - "pointer": true, - "hash": 2621225959 + "pointer": false, + "hash": 3196570032 }, - "m_Style": { - "type": "unsigned int", + "m_adjectivesOR": { + "type": "std::string", "id": 2, - "offset": 152, - "flags": 1048583, - "container": "Static", - "dynamic": false, + "offset": 176, + "flags": 7, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "SCALE_CHILDREN": 2, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "FOCUS_LOCKED": 64, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152 - } + "hash": 2525395710 }, - "m_Flags": { - "type": "unsigned int", + "m_adjectivesNOT": { + "type": "std::string", "id": 3, - "offset": 156, - "flags": 1048583, - "container": "Static", - "dynamic": false, + "offset": 192, + "flags": 7, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } + "hash": 3196584238 }, - "m_Window": { - "type": "class Rect", + "m_slotName": { + "type": "std::string", "id": 4, - "offset": 160, - "flags": 135, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3105139380 + "hash": 2819781566 }, - "m_fTargetAlpha": { - "type": "float", + "m_slotCategory": { + "type": "std::string", "id": 5, - "offset": 212, - "flags": 135, + "offset": 104, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1809129834 + "hash": 1940993755 }, - "m_fDisabledAlpha": { - "type": "float", + "m_maxItemCount": { + "type": "unsigned int", "id": 6, - "offset": 216, - "flags": 135, + "offset": 144, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1389987675 - }, - "m_fAlpha": { - "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, + "hash": 865719819 + } + } + }, + "1194186908": { + "name": "class SharedPointer", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1194186908, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 482130755 - }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3623628394 + "hash": 223437287 }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, + "m_spellData": { + "type": "std::string", + "id": 1, + "offset": 128, + "flags": 575, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2102211316 - }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, + "hash": 2688126101 + } + } + }, + "799619185": { + "name": "class ClientTimerControlCinematicAction*", + "bases": [ + "TimerControlCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 799619185, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1846695875 + "hash": 2237098605 }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, + "m_bSetVisible": { + "type": "bool", + "id": 1, + "offset": 88, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3389835433 + "hash": 471535983 }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, + "m_fTimeToSet": { + "type": "float", + "id": 2, + "offset": 84, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2547159940 + "hash": 661189659 }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, + "m_timerStrKey": { + "type": "std::string", + "id": 3, + "offset": 96, + "flags": 8388615, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2587533771 + "hash": 3000196414 }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, + "m_timerOp": { + "type": "enum TimerControlCinematicAction::kControlOperation", + "id": 4, + "offset": 80, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3091503757 + "hash": 1809610086, + "enum_options": { + "kNone": 0, + "kStartTimer": 1, + "kSetVisible": 2, + "kSetTimerString": 3, + "kSetTimeToShow": 4 + } } } }, - "1976646887": { - "name": "class DailyPvPInfo", + "1647185960": { + "name": "class EquipSlot", "bases": [ "PropertyClass" ], - "hash": 1976646887, + "hash": 1647185960, "properties": { - "m_numMatchesRequired": { - "type": "unsigned int", + "m_slotRequirements": { + "type": "class RequirementList*", "id": 0, - "offset": 72, + "offset": 152, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 2289964291 + "pointer": true, + "hash": 2462163144 }, - "m_pvpType": { - "type": "enum DailyPvPInfo::DailyPvPTypes", + "m_adjectivesAND": { + "type": "std::string", "id": 1, - "offset": 76, - "flags": 2097159, + "offset": 160, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 3196570032 + }, + "m_adjectivesOR": { + "type": "std::string", + "id": 2, + "offset": 176, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2525395710 + }, + "m_adjectivesNOT": { + "type": "std::string", + "id": 3, + "offset": 192, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 3196584238 + }, + "m_slotName": { + "type": "std::string", + "id": 4, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 876371151, - "enum_options": { - "DPVP_Solo_Ranked": 0 - } + "hash": 2819781566 }, - "m_winRequired": { - "type": "bool", - "id": 2, - "offset": 80, + "m_slotCategory": { + "type": "std::string", + "id": 5, + "offset": 104, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 850879554 - } - } - }, - "807066584": { - "name": "class ClientClearCameraMappingCinematicAction*", - "bases": [ - "ClearCameraMappingCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 807066584, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, + "hash": 1940993755 + }, + "m_maxItemCount": { + "type": "unsigned int", + "id": 6, + "offset": 144, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 + "hash": 865719819 } } }, - "1568319405": { - "name": "class GoalEntry", + "1193089785": { + "name": "class GuildMuseumArtifactInfo", "bases": [ - "ServiceOptionBase", "PropertyClass" ], - "hash": 1568319405, + "hash": 1193089785, "properties": { - "m_serviceName": { - "type": "std::string", + "m_templateID": { + "type": "unsigned int", "id": 0, "offset": 72, - "flags": 31, + "flags": 33554439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2206028813 + "hash": 1286746870 }, - "m_iconKey": { - "type": "std::string", + "m_tier1": { + "type": "unsigned int", "id": 1, - "offset": 168, - "flags": 31, + "offset": 76, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2457138637 + "hash": 1022300786 }, - "m_displayKey": { - "type": "std::string", + "m_tier2": { + "type": "unsigned int", "id": 2, - "offset": 104, - "flags": 31, + "offset": 80, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3023276954 + "hash": 1022300787 }, - "m_serviceIndex": { + "m_tier3": { "type": "unsigned int", "id": 3, - "offset": 204, - "flags": 31, + "offset": 84, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2103126710 + "hash": 1022300788 }, - "m_forceInteract": { - "type": "bool", + "m_tier4": { + "type": "unsigned int", "id": 4, - "offset": 200, - "flags": 31, + "offset": 88, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1705789564 + "hash": 1022300789 }, - "m_questID": { - "type": "gid", + "m_overrideDisplayName": { + "type": "std::string", "id": 5, - "offset": 216, - "flags": 31, + "offset": 96, + "flags": 8388615, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1246549335 + "hash": 3370041362 }, - "m_goalID": { - "type": "gid", + "m_description": { + "type": "std::string", "id": 6, - "offset": 224, - "flags": 31, + "offset": 128, + "flags": 8388615, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 485200232 + "hash": 1649374815 }, - "m_goalTitle": { - "type": "std::string", + "m_foundInCantripChests": { + "type": "bool", "id": 7, - "offset": 272, - "flags": 31, + "offset": 160, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2291910240 + "hash": 2091052609 }, - "m_questTitle": { - "type": "std::string", + "m_equivalentTemplateIDList": { + "type": "unsigned int", "id": 8, - "offset": 240, - "flags": 31, - "container": "Static", - "dynamic": false, + "offset": 168, + "flags": 7, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 1805465583 + "hash": 318979600 }, - "m_goalNameID": { - "type": "unsigned int", + "m_overrideLocation": { + "type": "std::string", "id": 9, - "offset": 232, - "flags": 31, + "offset": 192, + "flags": 8388615, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 403158846 - } - } - }, - "806790542": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 806790542, - "properties": { - "m_hairColorList": { - "type": "class CharacterElement*", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1900063063 + "hash": 3616295668 } } }, - "1568205928": { - "name": "class LinearSoundBehavior", + "2081504974": { + "name": "class ClientDerbyModifyMoraleChance", "bases": [ - "PositionalSoundBehavior", - "SoundBehavior", - "AreaBehavior", - "BehaviorInstance", + "DerbyModifyMoraleChance", + "DerbyEffect", "PropertyClass" ], - "hash": 1568205928, + "hash": 2081504974, "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", + "m_buffType": { + "type": "enum DerbyTalentBuffType", "id": 0, - "offset": 104, - "flags": 39, + "offset": 92, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 + "hash": 1149251982, + "enum_options": { + "Buff": 0, + "Debuff": 1, + "Neither": 2 + } }, - "m_radius": { - "type": "float", + "m_kTarget": { + "type": "enum DerbyTargetType", "id": 1, - "offset": 116, - "flags": 7, + "offset": 96, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 989410271 + "hash": 1807803351, + "enum_options": { + "kTargetInFront": 0, + "kTargetBehind": 1, + "kTargetFirst": 2, + "kTargetSelf": 3, + "kTargetAll": 4, + "kTargetLast": 5 + } }, - "m_category": { - "type": "enum AudioCategory", + "m_nDuration": { + "type": "int", "id": 2, - "offset": 124, - "flags": 2097159, + "offset": 104, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2951251982, - "enum_options": { - "AudioCategory_Irrelevent": 0, - "AudioCategory_Accoustic": 1, - "AudioCategory_Noise": 2, - "AudioCategory_Music": 3 - } + "hash": 1110167982 }, - "m_exclusive": { - "type": "bool", + "m_effectID": { + "type": "unsigned int", "id": 3, - "offset": 128, - "flags": 7, + "offset": 88, + "flags": 24, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 824383403 + "hash": 2347630439 }, - "m_playList": { - "type": "class PlayList", + "m_imageFilename": { + "type": "std::string", "id": 4, - "offset": 176, - "flags": 7, + "offset": 112, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2061221957 + "hash": 2813328063 }, - "m_volume": { - "type": "float", + "m_iconIndex": { + "type": "unsigned int", "id": 5, - "offset": 304, - "flags": 7, + "offset": 144, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1162855023 + "hash": 1265133262 }, - "m_loopCount": { - "type": "int", + "m_soundOnActivate": { + "type": "std::string", "id": 6, - "offset": 308, - "flags": 7, + "offset": 152, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 865634717 + "hash": 1956929714 }, - "m_minimumFalloff": { - "type": "float", + "m_soundOnTarget": { + "type": "std::string", "id": 7, - "offset": 328, - "flags": 7, + "offset": 184, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 355697197 + "hash": 3444214056 }, - "m_maximumFalloff": { - "type": "float", + "m_targetParticleEffect": { + "type": "std::string", "id": 8, - "offset": 332, - "flags": 7, + "offset": 216, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2210192367 + "hash": 3048234723 }, - "m_animDriven": { - "type": "bool", + "m_overheadMessage": { + "type": "std::string", "id": 9, - "offset": 392, - "flags": 7, + "offset": 248, + "flags": 8388639, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 398394720 + "hash": 1701018190 }, - "m_inverted": { - "type": "bool", + "m_requirements": { + "type": "class RequirementList", "id": 10, - "offset": 397, - "flags": 7, + "offset": 280, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1034821044 + "hash": 2840988582 }, - "m_fRangeScale": { - "type": "float", + "m_moraleChanceActionMap": { + "type": "class MoraleModificationMap", "id": 11, - "offset": 512, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1749294034 - }, - "m_fAttenuationFactor": { - "type": "float", - "id": 12, - "offset": 516, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 273292776 - }, - "m_eAttenuationType": { - "type": "enum PositionInfoAttenuationType", - "id": 13, - "offset": 520, - "flags": 2097159, + "offset": 376, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2427193304, - "enum_options": { - "Standard": 0, - "Unit Range Power": 1 - } - }, - "m_vPositions": { - "type": "class Vector3D", - "id": 14, - "offset": 528, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 3599600160 + "hash": 1654668404 } } }, - "405734015": { - "name": "class ClientMakeTargetableCinematicAction*", + "799619105": { + "name": "class ClientTimerControlCinematicAction", "bases": [ - "MakeTargetableCinematicAction", - "ActorCinematicAction", + "TimerControlCinematicAction", "CinematicAction", "PropertyClass" ], - "hash": 405734015, + "hash": 799619105, "properties": { "m_timeOffset": { "type": "float", @@ -522151,311 +319674,363 @@ "pointer": false, "hash": 2237098605 }, - "m_actor": { - "type": "std::string", + "m_bSetVisible": { + "type": "bool", "id": 1, - "offset": 80, + "offset": 88, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2285866132 + "hash": 471535983 + }, + "m_fTimeToSet": { + "type": "float", + "id": 2, + "offset": 84, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 661189659 + }, + "m_timerStrKey": { + "type": "std::string", + "id": 3, + "offset": 96, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3000196414 + }, + "m_timerOp": { + "type": "enum TimerControlCinematicAction::kControlOperation", + "id": 4, + "offset": 80, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1809610086, + "enum_options": { + "kNone": 0, + "kStartTimer": 1, + "kSetVisible": 2, + "kSetTimerString": 3, + "kSetTimeToShow": 4 + } } } }, - "805679666": { - "name": "struct ControlTileMap::CellInfo*", + "1193058637": { + "name": "class MagicSchoolTemplate", "bases": [ + "CoreTemplate", "PropertyClass" ], - "hash": 805679666, + "hash": 1193058637, "properties": { - "m_nTileIndex": { - "type": "int", + "m_behaviors": { + "type": "class BehaviorTemplate*", "id": 0, "offset": 72, - "flags": 135, - "container": "Static", - "dynamic": false, + "flags": 7, + "container": "Vector", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 1956352654 + "pointer": true, + "hash": 1197808594 }, - "m_fCurrentFrame": { - "type": "float", + "m_schoolName": { + "type": "std::string", "id": 1, - "offset": 76, - "flags": 135, + "offset": 96, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 219900907 + "hash": 3385349572 }, - "m_bIsFlippedHorizontal": { - "type": "bool", + "m_minLevel": { + "type": "unsigned int", "id": 2, - "offset": 80, - "flags": 135, + "offset": 132, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 627031807 + "hash": 1708220969 }, - "m_bIsFlippedVertical": { - "type": "bool", + "m_schoolIndex": { + "type": "int", "id": 3, - "offset": 81, - "flags": 135, + "offset": 136, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 298230063 + "hash": 7119994 }, - "m_nRotation": { - "type": "unsigned int", + "m_secondarySchoolBadgeList": { + "type": "std::string", "id": 4, - "offset": 84, - "flags": 135, + "offset": 144, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2758948314 + } + } + }, + "360231646": { + "name": "class BehaviorTemplate", + "bases": [ + "PropertyClass" + ], + "hash": 360231646, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1898715531 + "hash": 3130754092 } } }, - "405551471": { - "name": "class WizardControlTable*", + "2081595736": { + "name": "class StatisticEffectInfo", "bases": [ - "Window", + "GameEffectInfo", "PropertyClass" ], - "hash": 405551471, + "hash": 2081595736, "properties": { - "m_sName": { + "m_effectName": { "type": "std::string", "id": 0, - "offset": 80, - "flags": 135, + "offset": 72, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2306437263 + "hash": 2029161513 }, - "m_Children": { - "type": "class SharedPointer", + "m_lookupIndex": { + "type": "int", "id": 1, - "offset": 112, - "flags": 65667, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621225959 - }, - "m_Style": { - "type": "unsigned int", - "id": 2, - "offset": 152, - "flags": 1048583, + "offset": 104, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "SCALE_CHILDREN": 2, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "FOCUS_LOCKED": 64, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152 - } - }, - "m_Flags": { - "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 1048583, + "hash": 1626623948 + } + } + }, + "359972447": { + "name": "class SharedPointer", + "bases": [ + "Requirement", + "PropertyClass" + ], + "hash": 359972447, + "properties": { + "m_applyNOT": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 967851578, + "hash": 1746328074, "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 + "__DEFAULT": 0 } }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, - "flags": 135, + "m_operator": { + "type": "enum Requirement::Operator", + "id": 1, + "offset": 76, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3105139380 + "hash": 2672792317, + "enum_options": { + "ROP_AND": 0, + "ROP_OR": 1, + "__DEFAULT": "ROP_AND" + } }, - "m_fTargetAlpha": { - "type": "float", - "id": 5, - "offset": 212, - "flags": 135, + "m_magicSchool": { + "type": "std::string", + "id": 2, + "offset": 80, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1809129834 - }, - "m_fDisabledAlpha": { - "type": "float", - "id": 6, - "offset": 216, - "flags": 135, + "hash": 1597012900 + } + } + }, + "1647491364": { + "name": "class ZoneTickEffectInfo*", + "bases": [ + "GameEffectInfo", + "PropertyClass" + ], + "hash": 1647491364, + "properties": { + "m_effectName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1389987675 + "hash": 2029161513 }, - "m_fAlpha": { - "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, + "m_tickOnAdd": { + "type": "bool", + "id": 1, + "offset": 104, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 482130755 + "hash": 663357284 }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, + "m_zoneEventName": { + "type": "std::string", + "id": 2, + "offset": 112, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3623628394 + "pointer": false, + "hash": 2601481434 }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, + "m_tickRateSec": { + "type": "float", + "id": 3, + "offset": 144, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2102211316 + "hash": 1559681353 }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, + "m_maxTicks": { + "type": "int", + "id": 4, + "offset": 148, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1846695875 + "hash": 155973918 + } + } + }, + "800863363": { + "name": "class BadgeLeaderboardInfoList*", + "bases": [ + "PropertyClass" + ], + "hash": 800863363, + "properties": { + "m_badgeLeaderboardInfoList": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 3286468481 }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, + "m_page": { + "type": "int", + "id": 1, + "offset": 88, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3389835433 + "hash": 219731831 }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, + "m_extraCredit": { + "type": "bool", + "id": 2, + "offset": 92, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2547159940 + "hash": 847737554 }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, + "m_totalEntries": { + "type": "int", + "id": 3, + "offset": 96, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2587533771 + "hash": 682683672 }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, + "m_isFriends": { + "type": "bool", + "id": 4, + "offset": 100, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3091503757 + "hash": 982582490 } } }, - "1977090836": { - "name": "class PetItemBehaviorTemplate*", + "1193462644": { + "name": "class MountItemBehaviorTemplate*", "bases": [ "BehaviorTemplate", "PropertyClass" ], - "hash": 1977090836, + "hash": 1193462644, "properties": { "m_behaviorName": { "type": "std::string", @@ -522468,42 +320043,9 @@ "pointer": false, "hash": 3130754092 }, - "m_primaryDyeToTexture": { - "type": "class PetDyeToTexture", - "id": 1, - "offset": 120, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1981853869 - }, - "m_secondaryDyeToTexture": { - "type": "class PetDyeToTexture", - "id": 2, - "offset": 136, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1861913233 - }, - "m_patternToTexture": { - "type": "class PetDyeToTexture", - "id": 3, - "offset": 152, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1245062405 - }, "m_eGender": { "type": "enum eGender", - "id": 4, + "id": 1, "offset": 168, "flags": 2097159, "container": "Static", @@ -522519,7 +320061,7 @@ }, "m_eRace": { "type": "enum eRace", - "id": 5, + "id": 2, "offset": 172, "flags": 2097159, "container": "Static", @@ -525307,491 +322849,14933 @@ "PP_Fairy_Fire": 1847789544, "MNT_Mustang_B": 1448793691, "PP_FireElfMyth": 1933609060, - "MNT_KT-BoatRide": 1560860110 + "MNT_KT-BoatRide": 1560860110, + "MNT_ShadowMagic": 2095978357, + "MNT_MardiGrasFloat_A": 1740674432, + "PP_ChineseNYSnake": 988201940, + "MNT_AnubisDog": 1995079956, + "PP_ShadowImp_A": 1604849432, + "PP_ShadowImp_B": 1604849438, + "PP_ShadowImp_C": 1604849436, + "MNT_ShadowMagic_B": 2093870965, + "MNT_ShadowMagic_C": 2093805429, + "Guest_KT_SE_Tritops_Warrior_I_01": 97516901, + "Guest_KT_SE_DS_Draconian_Model_01": 1916095079, + "Guest_KT_SE_Beetle_Scarab_C_01_L50": 1064004307, + "Guest_KT_SE_Roach_Warrior_C_03": 1872574203, + "Guest_KT_SE_Roach_Warrior_C_04": 1871918843, + "Guest_KT_SE_Roach_Warrior_C_05": 1871787771, + "Guest_KT_SE_Beetle_Scarab_C_01": 1353410759, + "Guest_KT_SE_Mander_Citizen_B_01_L50": 2044509396, + "Guest_KT_SE_Mander_CitizenF_B_01_L50": 164327682, + "Guest_KT_SE_Treant_Tormented_A_01": 1359800879, + "Guest_KT_SE_Treant_Base_A_01": 765512948, + "Guest_KT_SE_Mander_Citizen_F_D_05": 171244620, + "Guest_KT_SE_Mander_CitizenF_D_01": 163791037, + "Guest_KT_SE_Mander_CitizenF_D_02": 298008765, + "Guest_KT_SE_Mander_CitizenF_D_03": 432226493, + "Guest_KT_SE_Mander_CitizenF_D_04": 566444221, + "Guest_KT_SE_Mander_MummyF_A_01": 964349080, + "Guest_KT_SE_Mander_MummyF_A_02": 964480152, + "Guest_KT_SE_MC_Wraith_Model_01": 1101442118, + "Guest_KT_SE_Mander_CitizenF_B_02": 298000573, + "MNT_Wheelbarrow": 614248817, + "MNT_StubbornLlama": 221089074 + } + }, + "m_eMountType": { + "type": "enum eMountType", + "id": 3, + "offset": 176, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3097765662, + "enum_options": { + "eMNT_Standard": 0, + "eMNT_Floating": 1 + } + }, + "m_adjustableAnimationRate": { + "type": "bool", + "id": 4, + "offset": 180, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 698897022 + }, + "m_primaryDyeToTexture": { + "type": "class MountDyeToTexture", + "id": 5, + "offset": 120, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2402789479 + }, + "m_secondaryDyeToTexture": { + "type": "class MountDyeToTexture", + "id": 6, + "offset": 136, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2282848843 + }, + "m_patternToTexture": { + "type": "class MountDyeToTexture", + "id": 7, + "offset": 152, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1665998015 + }, + "m_soundMountEquip": { + "type": "std::string", + "id": 8, + "offset": 184, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2862460187 + }, + "m_geometryOption": { + "type": "int", + "id": 9, + "offset": 216, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1776153279 + }, + "m_numSeats": { + "type": "int", + "id": 10, + "offset": 220, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1599962314, + "enum_options": { + "__DEFAULT": 1 + } + }, + "m_driverKFM": { + "type": "std::string", + "id": 11, + "offset": 224, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1883851493 + }, + "m_adjustedFocusHeight": { + "type": "float", + "id": 12, + "offset": 256, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 863441156 + }, + "m_animationEventList": { + "type": "class SharedPointer", + "id": 13, + "offset": 264, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2858101335 + } + } + }, + "800264844": { + "name": "class SharedPointer", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 800264844, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + } + } + }, + "1193253413": { + "name": "class SharedPointer", + "bases": [ + "Requirement", + "PropertyClass" + ], + "hash": 1193253413, + "properties": { + "m_applyNOT": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1746328074, + "enum_options": { + "__DEFAULT": 0 + } + }, + "m_operator": { + "type": "enum Requirement::Operator", + "id": 1, + "offset": 76, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2672792317, + "enum_options": { + "ROP_AND": 0, + "ROP_OR": 1, + "__DEFAULT": "ROP_AND" + } + }, + "m_badgeName": { + "type": "std::string", + "id": 2, + "offset": 80, + "flags": 268435487, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3002948047, + "enum_options": { + "__BASECLASS": "BadgeTemplate" + } + } + } + }, + "2082208076": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 2082208076, + "properties": { + "m_zoneName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2171167736 + }, + "m_maximumLevel": { + "type": "int", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 285381904 + } + } + }, + "1652604248": { + "name": "class CompassMarker*", + "bases": [ + "PropertyClass" + ], + "hash": 1652604248, + "properties": { + "m_textKey": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1720060457 + }, + "m_location": { + "type": "class Vector3D", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2239683611 + }, + "m_mapLocation": { + "type": "class Point", + "id": 2, + "offset": 116, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2172826233 + }, + "m_nObjectID": { + "type": "gid", + "id": 3, + "offset": 128, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 537078058 + }, + "m_visible": { + "type": "bool", + "id": 4, + "offset": 136, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 810536225 + } + } + }, + "2081710281": { + "name": "class BlobCacheInterface*", + "bases": [ + "PropertyClass" + ], + "hash": 2081710281, + "properties": {} + }, + "364170412": { + "name": "class PhysicsSim", + "bases": [ + "BaseZone::BaseSimulation", + "PropertyClass" + ], + "hash": 364170412, + "properties": {} + }, + "1650715070": { + "name": "class SharedPointer", + "bases": [ + "CoreTemplate", + "PropertyClass" + ], + "hash": 1650715070, + "properties": { + "m_behaviors": { + "type": "class BehaviorTemplate*", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1197808594 + }, + "m_soundName": { + "type": "std::string", + "id": 1, + "offset": 96, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2277149669 + }, + "m_soundFile": { + "type": "std::string", + "id": 2, + "offset": 136, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2276870852 + }, + "m_delay": { + "type": "double", + "id": 3, + "offset": 168, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2689597116 + } + } + }, + "361756972": { + "name": "class ClientDerbyTeleport", + "bases": [ + "DerbyTeleport", + "DerbyEffect", + "PropertyClass" + ], + "hash": 361756972, + "properties": { + "m_buffType": { + "type": "enum DerbyTalentBuffType", + "id": 0, + "offset": 92, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1149251982, + "enum_options": { + "Buff": 0, + "Debuff": 1, + "Neither": 2 + } + }, + "m_kTarget": { + "type": "enum DerbyTargetType", + "id": 1, + "offset": 96, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1807803351, + "enum_options": { + "kTargetInFront": 0, + "kTargetBehind": 1, + "kTargetFirst": 2, + "kTargetSelf": 3, + "kTargetAll": 4, + "kTargetLast": 5 + } + }, + "m_nDuration": { + "type": "int", + "id": 2, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1110167982 + }, + "m_effectID": { + "type": "unsigned int", + "id": 3, + "offset": 88, + "flags": 24, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2347630439 + }, + "m_imageFilename": { + "type": "std::string", + "id": 4, + "offset": 112, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2813328063 + }, + "m_iconIndex": { + "type": "unsigned int", + "id": 5, + "offset": 144, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1265133262 + }, + "m_soundOnActivate": { + "type": "std::string", + "id": 6, + "offset": 152, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1956929714 + }, + "m_soundOnTarget": { + "type": "std::string", + "id": 7, + "offset": 184, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3444214056 + }, + "m_targetParticleEffect": { + "type": "std::string", + "id": 8, + "offset": 216, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3048234723 + }, + "m_overheadMessage": { + "type": "std::string", + "id": 9, + "offset": 248, + "flags": 8388639, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1701018190 + }, + "m_requirements": { + "type": "class RequirementList", + "id": 10, + "offset": 280, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2840988582 + }, + "m_kTeleportToTarget": { + "type": "enum DerbyTargetType", + "id": 11, + "offset": 376, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3096289769, + "enum_options": { + "kTargetInFront": 0, + "kTargetBehind": 1, + "kTargetFirst": 2, + "kTargetSelf": 3, + "kTargetAll": 4, + "kTargetLast": 5 + } + } + } + }, + "801182815": { + "name": "class UntargetableCinematicAction", + "bases": [ + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 801182815, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + } + } + }, + "1649312569": { + "name": "class AvatarAppearanceRule", + "bases": [ + "AvatarItemInfo", + "AvatarItemInfoBase", + "PropertyClass" + ], + "hash": 1649312569, + "properties": { + "m_partName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2609631923 + }, + "m_slotName": { + "type": "std::string", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2819781566 + }, + "m_flags": { + "type": "std::string", + "id": 2, + "offset": 144, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2292098216 + }, + "m_options": { + "type": "class SharedPointer", + "id": 3, + "offset": 160, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2499357824 + }, + "m_textureOptions": { + "type": "class SharedPointer", + "id": 4, + "offset": 176, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2667548348 + }, + "m_defaultOption": { + "type": "class SharedPointer", + "id": 5, + "offset": 192, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2436336754 + }, + "m_defaultTextureOption": { + "type": "class SharedPointer", + "id": 6, + "offset": 208, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2712636654 + } + } + }, + "361034463": { + "name": "class SharedPointer", + "bases": [ + "ActorDialogCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 361034463, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_dialog": { + "type": "class ActorDialog*", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1310859212 + }, + "m_activePersona": { + "type": "std::string", + "id": 2, + "offset": 88, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1972573231 + } + } + }, + "800945360": { + "name": "class CastleGamesUpdate", + "bases": [ + "PropertyClass" + ], + "hash": 800945360, + "properties": { + "m_entryList": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 619674006 + }, + "m_numberOfGames": { + "type": "int", + "id": 1, + "offset": 88, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1220956901 + } + } + }, + "1648836778": { + "name": "class LootInfoBase*", + "bases": [ + "PropertyClass" + ], + "hash": 1648836778, + "properties": {} + }, + "1196368601": { + "name": "class SharedPointer", + "bases": [ + "Window", + "PropertyClass" + ], + "hash": 1196368601, + "properties": { + "m_sName": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306437263 + }, + "m_Children": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 65667, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621225959 + }, + "m_Style": { + "type": "unsigned int", + "id": 2, + "offset": 152, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "SCALE_CHILDREN": 2, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "FOCUS_LOCKED": 64, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152 + } + }, + "m_Flags": { + "type": "unsigned int", + "id": 3, + "offset": 156, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } + }, + "m_Window": { + "type": "class Rect", + "id": 4, + "offset": 160, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3105139380 + }, + "m_fTargetAlpha": { + "type": "float", + "id": 5, + "offset": 212, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1809129834 + }, + "m_fDisabledAlpha": { + "type": "float", + "id": 6, + "offset": 216, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1389987675 + }, + "m_fAlpha": { + "type": "float", + "id": 7, + "offset": 208, + "flags": 65671, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 482130755 + }, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3623628394 + }, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2102211316 + }, + "m_sScript": { + "type": "std::string", + "id": 10, + "offset": 352, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1846695875 + }, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3389835433 + }, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547159940 + }, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513510520 + }, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3091503757 + } + } + }, + "2082870084": { + "name": "class SharedPointer", + "bases": [ + "DynaMod", + "PropertyClass" + ], + "hash": 2082870084, + "properties": { + "m_clientTag": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3409856790 + }, + "m_zoneName": { + "type": "std::string", + "id": 1, + "offset": 112, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2171167736 + }, + "m_zoneInstance": { + "type": "gid", + "id": 2, + "offset": 152, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 449538121 + }, + "m_originator": { + "type": "gid", + "id": 3, + "offset": 72, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 709051254 + }, + "m_index": { + "type": "int", + "id": 4, + "offset": 160, + "flags": 30, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 798031442 + }, + "m_zoneID": { + "type": "unsigned int", + "id": 5, + "offset": 144, + "flags": 16, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1440651126 + }, + "m_remove": { + "type": "bool", + "id": 6, + "offset": 176, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 906763969 + }, + "m_state": { + "type": "std::string", + "id": 7, + "offset": 184, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2307803100 + }, + "m_stateID": { + "type": "unsigned int", + "id": 8, + "offset": 216, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1849561019 + } + } + }, + "360760641": { + "name": "class FurnitureInfoBehaviorTemplate*", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 360760641, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + }, + "m_yaw": { + "type": "float", + "id": 1, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 357256328 + }, + "m_pitch": { + "type": "float", + "id": 2, + "offset": 124, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 896371695 + }, + "m_roll": { + "type": "float", + "id": 3, + "offset": 128, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 310020272 + }, + "m_rotate": { + "type": "bool", + "id": 4, + "offset": 132, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 918859426 + }, + "m_bounce": { + "type": "bool", + "id": 5, + "offset": 133, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 292742671 + }, + "m_textureIndex": { + "type": "int", + "id": 6, + "offset": 136, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1723520995 + }, + "m_textureFilename": { + "type": "std::string", + "id": 7, + "offset": 144, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2208648365 + }, + "m_cameraOffsetX": { + "type": "float", + "id": 8, + "offset": 176, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1515912895 + }, + "m_cameraOffsetY": { + "type": "float", + "id": 9, + "offset": 180, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1515912896 + }, + "m_cameraOffsetZ": { + "type": "float", + "id": 10, + "offset": 184, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1515912897 + } + } + }, + "1648230806": { + "name": "class ClientPetSnackItem*", + "bases": [ + "WizClientObjectItem", + "ClientObject", + "CoreObject", + "PropertyClass" + ], + "hash": 1648230806, + "properties": { + "m_inactiveBehaviors": { + "type": "class SharedPointer", + "id": 0, + "offset": 224, + "flags": 31, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1850812559 + }, + "m_globalID.m_full": { + "type": "unsigned __int64", + "id": 1, + "offset": 72, + "flags": 16777247, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2312465444 + }, + "m_permID": { + "type": "unsigned __int64", + "id": 2, + "offset": 80, + "flags": 16777247, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1298909658 + }, + "m_location": { + "type": "class Vector3D", + "id": 3, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2239683611 + }, + "m_orientation": { + "type": "class Vector3D", + "id": 4, + "offset": 180, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2344058766 + }, + "m_fScale": { + "type": "float", + "id": 5, + "offset": 196, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 503137701 + }, + "m_templateID.m_full": { + "type": "unsigned __int64", + "id": 6, + "offset": 96, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 633907631 + }, + "m_debugName": { + "type": "std::string", + "id": 7, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3553984419 + }, + "m_displayKey": { + "type": "std::string", + "id": 8, + "offset": 136, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3023276954 + }, + "m_zoneTagID": { + "type": "unsigned int", + "id": 9, + "offset": 344, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 965291410 + }, + "m_speedMultiplier": { + "type": "short", + "id": 10, + "offset": 192, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 123130076 + }, + "m_nMobileID": { + "type": "unsigned short", + "id": 11, + "offset": 194, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1054318939 + }, + "m_characterId": { + "type": "gid", + "id": 12, + "offset": 440, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 210498418 + }, + "m_primaryColor": { + "type": "int", + "id": 13, + "offset": 568, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 900965981 + }, + "m_pattern": { + "type": "int", + "id": 14, + "offset": 572, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1337683384 + }, + "m_secondaryColor": { + "type": "int", + "id": 15, + "offset": 576, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1616550081 + }, + "m_displayID": { + "type": "gid", + "id": 16, + "offset": 584, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1022427803 + }, + "m_itemFlags": { + "type": "unsigned int", + "id": 17, + "offset": 592, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2004128457 + }, + "m_quantity": { + "type": "int", + "id": 18, + "offset": 608, + "flags": 27, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 169215289 + } + } + }, + "1195478758": { + "name": "enum MoveActorCinematicAction::kMoveActorDestination", + "bases": [], + "hash": 1195478758, + "properties": {} + }, + "2082396287": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 2082396287, + "properties": { + "m_world": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2312385347 + }, + "m_hubZone": { + "type": "std::string", + "id": 1, + "offset": 104, + "flags": 268435463, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1854011510, + "enum_options": { + "__BASECLASS": "ZoneData" + } + }, + "m_location": { + "type": "std::string", + "id": 2, + "offset": 136, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2079561588 + }, + "m_universeTPZone": { + "type": "std::string", + "id": 3, + "offset": 168, + "flags": 268435463, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1587575180, + "enum_options": { + "__BASECLASS": "ZoneData" + } + }, + "m_universeTPLocation": { + "type": "std::string", + "id": 4, + "offset": 200, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3141910185 + }, + "m_hubZoneDisplayName": { + "type": "std::string", + "id": 5, + "offset": 232, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3166854829 + }, + "m_specialZones": { + "type": "std::string", + "id": 6, + "offset": 264, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2731574123 + } + } + }, + "360471032": { + "name": "class SharedPointer", + "bases": [ + "ObstacleCourseObstacleBehavior", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 360471032, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + } + } + }, + "1194894801": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1194894801, + "properties": { + "m_itemList": { + "type": "class SharedPointer", + "id": 0, + "offset": 168, + "flags": 27, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1983655699 + }, + "m_maxItemStack": { + "type": "int", + "id": 1, + "offset": 184, + "flags": 27, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 673449637 + } + } + }, + "802791634": { + "name": "class WeightedEntry*", + "bases": [ + "PropertyClass" + ], + "hash": 802791634, + "properties": { + "m_weight": { + "type": "unsigned int", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1311209301 + } + } + }, + "1649312529": { + "name": "class AvatarAppearanceRule*", + "bases": [ + "AvatarItemInfo", + "AvatarItemInfoBase", + "PropertyClass" + ], + "hash": 1649312529, + "properties": { + "m_partName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2609631923 + }, + "m_slotName": { + "type": "std::string", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2819781566 + }, + "m_flags": { + "type": "std::string", + "id": 2, + "offset": 144, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2292098216 + }, + "m_options": { + "type": "class SharedPointer", + "id": 3, + "offset": 160, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2499357824 + }, + "m_textureOptions": { + "type": "class SharedPointer", + "id": 4, + "offset": 176, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2667548348 + }, + "m_defaultOption": { + "type": "class SharedPointer", + "id": 5, + "offset": 192, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2436336754 + }, + "m_defaultTextureOption": { + "type": "class SharedPointer", + "id": 6, + "offset": 208, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2712636654 + } + } + }, + "2083195998": { + "name": "enum BountyGoalTemplate::BOUNTY_TYPE", + "bases": [], + "hash": 2083195998, + "properties": {} + }, + "360955637": { + "name": "class BreadCrumbBehavior*", + "bases": [ + "BreadCrumbBehaviorBase", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 360955637, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_breadCrumbNumber": { + "type": "unsigned int", + "id": 1, + "offset": 112, + "flags": 65543, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2100995821 + }, + "m_equippedPetGIDList": { + "type": "gid", + "id": 2, + "offset": 120, + "flags": 65543, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1574152046 + }, + "m_equippedBreadCrumbIDList": { + "type": "unsigned short", + "id": 3, + "offset": 136, + "flags": 65543, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 592278117 + }, + "m_flags": { + "type": "unsigned int", + "id": 4, + "offset": 152, + "flags": 65543, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1005801050 + } + } + }, + "802540586": { + "name": "class GiveCinematicStageTemplate", + "bases": [ + "CinematicStageTemplate", + "PropertyClass" + ], + "hash": 802540586, + "properties": { + "m_name": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1717359772 + }, + "m_duration": { + "type": "float", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 920323453 + }, + "m_actions": { + "type": "class SharedPointer", + "id": 2, + "offset": 112, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1380578687 + }, + "m_stageRelationships": { + "type": "class SharedPointer", + "id": 3, + "offset": 128, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 499983354 + }, + "m_cameras": { + "type": "std::string", + "id": 4, + "offset": 152, + "flags": 131079, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 3217341687 + }, + "m_altcameras": { + "type": "std::string", + "id": 5, + "offset": 176, + "flags": 131079, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1882980152 + }, + "m_animation": { + "type": "std::string", + "id": 6, + "offset": 200, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3431428731 + }, + "m_sound": { + "type": "std::string", + "id": 7, + "offset": 232, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2307644996 + } + } + }, + "802540576": { + "name": "class GiveCinematicStageTemplate*", + "bases": [ + "CinematicStageTemplate", + "PropertyClass" + ], + "hash": 802540576, + "properties": { + "m_name": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1717359772 + }, + "m_duration": { + "type": "float", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 920323453 + }, + "m_actions": { + "type": "class SharedPointer", + "id": 2, + "offset": 112, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1380578687 + }, + "m_stageRelationships": { + "type": "class SharedPointer", + "id": 3, + "offset": 128, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 499983354 + }, + "m_cameras": { + "type": "std::string", + "id": 4, + "offset": 152, + "flags": 131079, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 3217341687 + }, + "m_altcameras": { + "type": "std::string", + "id": 5, + "offset": 176, + "flags": 131079, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1882980152 + }, + "m_animation": { + "type": "std::string", + "id": 6, + "offset": 200, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3431428731 + }, + "m_sound": { + "type": "std::string", + "id": 7, + "offset": 232, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2307644996 + } + } + }, + "1196470535": { + "name": "class SharedPointer", + "bases": [ + "Window", + "PropertyClass" + ], + "hash": 1196470535, + "properties": { + "m_sName": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306437263 + }, + "m_Children": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621225959 + }, + "m_Style": { + "type": "unsigned int", + "id": 2, + "offset": 152, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "SCALE_CHILDREN": 2, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "FOCUS_LOCKED": 64, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152 + } + }, + "m_Flags": { + "type": "unsigned int", + "id": 3, + "offset": 156, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } + }, + "m_Window": { + "type": "class Rect", + "id": 4, + "offset": 160, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3105139380 + }, + "m_fTargetAlpha": { + "type": "float", + "id": 5, + "offset": 212, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1809129834 + }, + "m_fDisabledAlpha": { + "type": "float", + "id": 6, + "offset": 216, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1389987675 + }, + "m_fAlpha": { + "type": "float", + "id": 7, + "offset": 208, + "flags": 65671, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 482130755 + }, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3623628394 + }, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2102211316 + }, + "m_sScript": { + "type": "std::string", + "id": 10, + "offset": 352, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1846695875 + }, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3389835433 + }, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547159940 + }, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513510520 + }, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3091503757 + } + } + }, + "1649992222": { + "name": "class SharedPointer", + "bases": [ + "RenderBehavior", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1649992222, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + } + } + }, + "1196458162": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1196458162, + "properties": { + "m_characterID": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 210498386 + }, + "m_rank": { + "type": "unsigned int", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 431206393 + }, + "m_nameBlob": { + "type": "std::string", + "id": 2, + "offset": 88, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3058206907 + }, + "m_characterLevel": { + "type": "unsigned int", + "id": 3, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1018074066 + }, + "m_characterSchool": { + "type": "unsigned int", + "id": 4, + "offset": 124, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1330015234 + }, + "m_wins": { + "type": "unsigned int", + "id": 5, + "offset": 128, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 431394798 + }, + "m_losses": { + "type": "unsigned int", + "id": 6, + "offset": 132, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 892951526 + }, + "m_ties": { + "type": "unsigned int", + "id": 7, + "offset": 136, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 431286690 + }, + "m_gamesPlayed": { + "type": "unsigned int", + "id": 8, + "offset": 140, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1165998489 + }, + "m_points": { + "type": "unsigned int", + "id": 9, + "offset": 144, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1049128778 + } + } + }, + "2085490330": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 2085490330, + "properties": { + "m_prepEntries": { + "type": "class PrepEntry*", + "id": 0, + "offset": 72, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2230286528 + }, + "m_underwayEntries": { + "type": "class UnderwayEntry*", + "id": 1, + "offset": 88, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1490882790 + }, + "m_availableCompleteEntries": { + "type": "class AvailableCompleteEntry*", + "id": 2, + "offset": 104, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2930050163 + }, + "m_availableQuestEntries": { + "type": "class AvailableQuestEntry*", + "id": 3, + "offset": 120, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 729081883 + } + } + }, + "361088321": { + "name": "class FurnitureInfoBehaviorTemplate", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 361088321, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + }, + "m_yaw": { + "type": "float", + "id": 1, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 357256328 + }, + "m_pitch": { + "type": "float", + "id": 2, + "offset": 124, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 896371695 + }, + "m_roll": { + "type": "float", + "id": 3, + "offset": 128, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 310020272 + }, + "m_rotate": { + "type": "bool", + "id": 4, + "offset": 132, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 918859426 + }, + "m_bounce": { + "type": "bool", + "id": 5, + "offset": 133, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 292742671 + }, + "m_textureIndex": { + "type": "int", + "id": 6, + "offset": 136, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1723520995 + }, + "m_textureFilename": { + "type": "std::string", + "id": 7, + "offset": 144, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2208648365 + }, + "m_cameraOffsetX": { + "type": "float", + "id": 8, + "offset": 176, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1515912895 + }, + "m_cameraOffsetY": { + "type": "float", + "id": 9, + "offset": 180, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1515912896 + }, + "m_cameraOffsetZ": { + "type": "float", + "id": 10, + "offset": 184, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1515912897 + } + } + }, + "2084415420": { + "name": "class GroupMember*", + "bases": [ + "PropertyClass" + ], + "hash": 2084415420, + "properties": { + "m_GlobalID": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 843146230 + }, + "m_CharacterID": { + "type": "gid", + "id": 1, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1626688306 + }, + "m_sNameBlob": { + "type": "std::string", + "id": 2, + "offset": 88, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2372396590 + }, + "m_schoolID": { + "type": "unsigned int", + "id": 3, + "offset": 120, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 369010242 + }, + "m_level": { + "type": "unsigned int", + "id": 4, + "offset": 124, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1012687813 + }, + "m_zoneDisplayName": { + "type": "std::string", + "id": 5, + "offset": 128, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1962339438 + }, + "m_hasFilteredChat": { + "type": "unsigned char", + "id": 6, + "offset": 160, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2657823291 + }, + "m_sigilSlot": { + "type": "unsigned int", + "id": 7, + "offset": 164, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1891552167 + }, + "m_platformType": { + "type": "int", + "id": 8, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1300871393 + } + } + }, + "802566682": { + "name": "class ChatHistory*", + "bases": [ + "PropertyClass" + ], + "hash": 802566682, + "properties": {} + }, + "1650584509": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1650584509, + "properties": { + "m_capValue": { + "type": "float", + "id": 0, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1100002568 + }, + "m_scalarBase": { + "type": "float", + "id": 1, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2028329704 + }, + "m_scalingFactor": { + "type": "float", + "id": 2, + "offset": 76, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1636384119 + } + } + }, + "2083819973": { + "name": "class SharedPointer", + "bases": [ + "FXDef", + "PropertyClass" + ], + "hash": 2083819973, + "properties": { + "m_FXFile": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2810683385 + }, + "m_stackingCategory": { + "type": "std::string", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2363740365 + }, + "m_repeatTime": { + "type": "float", + "id": 2, + "offset": 136, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 453389511 + } + } + }, + "361737915": { + "name": "class SubscriberOnlyItemsList", + "bases": [ + "PropertyClass" + ], + "hash": 361737915, + "properties": { + "m_subscriberOnlyItems": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1721964880 + } + } + }, + "1197709952": { + "name": "class LevelUpElixirSchoolSpecificData*", + "bases": [ + "PropertyClass" + ], + "hash": 1197709952, + "properties": { + "m_schoolID": { + "type": "unsigned int", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 369010242 + }, + "m_spellsToGive": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 3002626524 + }, + "m_questsToComplete": { + "type": "std::string", + "id": 2, + "offset": 96, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 3386208316 + }, + "m_questsToAdd": { + "type": "std::string", + "id": 3, + "offset": 112, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2101794028 + }, + "m_itemsToPlaceInInventory": { + "type": "unsigned int", + "id": 4, + "offset": 128, + "flags": 33554439, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 792703868 + }, + "m_gearToEquip": { + "type": "unsigned int", + "id": 5, + "offset": 144, + "flags": 33554439, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1383467923 + }, + "m_teleportToZoneOnComplete": { + "type": "std::string", + "id": 6, + "offset": 176, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2109587583 + }, + "m_badgesToComplete": { + "type": "std::string", + "id": 7, + "offset": 160, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2133622941 + }, + "m_schoolName": { + "type": "std::string", + "id": 8, + "offset": 208, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3385349572 + }, + "m_propertyRegistryEntires": { + "type": "class LevelUpElixirPropertyRegistryEntry", + "id": 9, + "offset": 240, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2009387835 + }, + "m_addTrainingPointIfQuestNotComplete": { + "type": "std::string", + "id": 10, + "offset": 256, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 3422771029 + } + } + }, + "803309094": { + "name": "class MatchRequest*", + "bases": [ + "PropertyClass" + ], + "hash": 803309094, + "properties": { + "m_characterID": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 210498386 + }, + "m_tournamentNameID": { + "type": "unsigned int", + "id": 1, + "offset": 84, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1799846440 + }, + "m_matchNameID": { + "type": "unsigned int", + "id": 2, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1751361288 + }, + "m_leagueID": { + "type": "unsigned int", + "id": 3, + "offset": 88, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 692361645 + }, + "m_seasonID": { + "type": "unsigned int", + "id": 4, + "offset": 92, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 535260643 + }, + "m_teams": { + "type": "class SharedPointer", + "id": 5, + "offset": 96, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1984373608 + } + } + }, + "1651665694": { + "name": "class DynaModList", + "bases": [ + "PropertyClass" + ], + "hash": 1651665694, + "properties": { + "m_allMods": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 27, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 3780396482 + } + } + }, + "1197475757": { + "name": "class SG_GamePower", + "bases": [ + "PropertyClass" + ], + "hash": 1197475757, + "properties": { + "m_name": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1717359772 + }, + "m_blockInteraction": { + "type": "std::string", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1884044102 + }, + "m_blockTypeDestroyed": { + "type": "std::string", + "id": 2, + "offset": 136, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3388691227 + }, + "m_ballGraphic": { + "type": "std::string", + "id": 3, + "offset": 200, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2352594772 + }, + "m_impactGraphic": { + "type": "std::string", + "id": 4, + "offset": 232, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3208005463 + }, + "m_powerComboMultipliers": { + "type": "class SharedPointer", + "id": 5, + "offset": 328, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1957941557 + }, + "m_impactSound": { + "type": "std::string", + "id": 6, + "offset": 264, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2087348962 + }, + "m_selectSound": { + "type": "std::string", + "id": 7, + "offset": 296, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1892320740 + } + } + }, + "2085066254": { + "name": "class ConicalStateSoundBehaviorTemplate*", + "bases": [ + "ConicalSoundBehaviorTemplate", + "PositionalSoundBehaviorTemplate", + "SoundBehaviorTemplate", + "AreaBehaviorTemplate", + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 2085066254, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + }, + "m_radius": { + "type": "float", + "id": 1, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 989410271 + }, + "m_category": { + "type": "enum AudioCategory", + "id": 2, + "offset": 124, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2951251982, + "enum_options": { + "AudioCategory_Irrelevent": 0, + "AudioCategory_Accoustic": 1, + "AudioCategory_Noise": 2, + "AudioCategory_Music": 3, + "AudioCategory_MusicAtSFXVolume": 4, + "AudioCategory_Dialog": 5, + "AudioCategory_UI": 6, + "AudioCategory_NoiseAtMusicVolume": 7 + } + }, + "m_exclusive": { + "type": "bool", + "id": 3, + "offset": 128, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 824383403 + }, + "m_active": { + "type": "bool", + "id": 4, + "offset": 129, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 239335471 + }, + "m_enableReqs": { + "type": "class SharedPointer", + "id": 5, + "offset": 136, + "flags": 263, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3158020443 + }, + "m_trackFilenameList": { + "type": "std::string", + "id": 6, + "offset": 152, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2531081709 + }, + "m_playList": { + "type": "class PlayListEntry*", + "id": 7, + "offset": 176, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 3907873161 + }, + "m_priority": { + "type": "int", + "id": 8, + "offset": 208, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1235205852 + }, + "m_volume": { + "type": "float", + "id": 9, + "offset": 200, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1162855023 + }, + "m_loopCount": { + "type": "int", + "id": 10, + "offset": 204, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 865634717 + }, + "m_progression": { + "type": "enum PlayList::Progression", + "id": 11, + "offset": 220, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3279400238, + "enum_options": { + "Sequence": 0, + "Random": 1, + "SequenceOnceOnly": 2, + "RandomNoRepeat": 3 + } + }, + "m_progressMin": { + "type": "float", + "id": 12, + "offset": 212, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1497550192 + }, + "m_progressMax": { + "type": "float", + "id": 13, + "offset": 216, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1497549938 + }, + "m_audioFilterSet": { + "type": "unsigned int", + "id": 14, + "offset": 224, + "flags": 33554439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 831339825 + }, + "m_animationNameFilter": { + "type": "std::string", + "id": 15, + "offset": 232, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2292854242 + }, + "m_functionallabel": { + "type": "std::string", + "id": 16, + "offset": 264, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3589331278 + }, + "m_innerRadius": { + "type": "float", + "id": 17, + "offset": 296, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 686816091 + }, + "m_inverted": { + "type": "bool", + "id": 18, + "offset": 300, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1034821044 + }, + "m_fInsideAngle": { + "type": "float", + "id": 19, + "offset": 304, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1114383840 + }, + "m_fOutsideAngle": { + "type": "float", + "id": 20, + "offset": 308, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1627152289 + }, + "m_fOutsideVolume": { + "type": "float", + "id": 21, + "offset": 312, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 90369618 + }, + "m_fRangeScale": { + "type": "float", + "id": 22, + "offset": 316, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1749294034 + }, + "m_fAttenuationFactor": { + "type": "float", + "id": 23, + "offset": 320, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 273292776 + }, + "m_eAttenuationType": { + "type": "enum PositionInfoAttenuationType", + "id": 24, + "offset": 324, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2427193304, + "enum_options": { + "Standard": 0, + "Unit Range Power": 1 + } + } + } + }, + "363285728": { + "name": "class GraphicalPvPTourneyCurrencyBonus", + "bases": [ + "GraphicalSpell", + "Spell", + "PropertyClass" + ], + "hash": 363285728, + "properties": { + "m_templateID": { + "type": "unsigned int", + "id": 0, + "offset": 128, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1286746870 + }, + "m_enchantment": { + "type": "unsigned int", + "id": 1, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2217886818 + }, + "m_pipCost": { + "type": "class SharedPointer", + "id": 2, + "offset": 176, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3605704820 + }, + "m_regularAdjust": { + "type": "int", + "id": 3, + "offset": 192, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1420453335 + }, + "m_magicSchoolID": { + "type": "unsigned int", + "id": 4, + "offset": 136, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 893146499 + }, + "m_accuracy": { + "type": "unsigned char", + "id": 5, + "offset": 132, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2273914939 + }, + "m_treasureCard": { + "type": "bool", + "id": 6, + "offset": 197, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1764879128 + }, + "m_battleCard": { + "type": "bool", + "id": 7, + "offset": 198, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1332843753 + }, + "m_itemCard": { + "type": "bool", + "id": 8, + "offset": 199, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1683654300 + }, + "m_sideBoard": { + "type": "bool", + "id": 9, + "offset": 200, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1897838368 + }, + "m_spellID": { + "type": "unsigned int", + "id": 10, + "offset": 204, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1697483258 + }, + "m_leavesPlayWhenCastOverride": { + "type": "bool", + "id": 11, + "offset": 216, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 874407398 + }, + "m_cloaked": { + "type": "bool", + "id": 12, + "offset": 196, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 7349510 + }, + "m_enchantmentSpellIsItemCard": { + "type": "bool", + "id": 13, + "offset": 76, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 531590701 + }, + "m_premutationSpellID": { + "type": "unsigned int", + "id": 14, + "offset": 112, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1530256370 + }, + "m_enchantedThisCombat": { + "type": "bool", + "id": 15, + "offset": 77, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1895738923 + }, + "m_paramOverrides": { + "type": "class SharedPointer", + "id": 16, + "offset": 224, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2061635599 + }, + "m_subEffectMeta": { + "type": "class SharedPointer", + "id": 17, + "offset": 240, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1944101106 + }, + "m_delayEnchantment": { + "type": "bool", + "id": 18, + "offset": 257, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 191336919 + }, + "m_PvE": { + "type": "bool", + "id": 19, + "offset": 264, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 269492350 + }, + "m_delayEnchantmentOrder": { + "type": "enum SpellEffect::kDelayOrder", + "id": 20, + "offset": 72, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2526055263, + "enum_options": { + "SpellEffect::kAnyOrder": 0, + "SpellEffect::kFirst": 1, + "SpellEffect::kSecond": 2 + } + }, + "m_roundAddedTC": { + "type": "int", + "id": 21, + "offset": 260, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 112365451 + }, + "m_secondarySchoolID": { + "type": "unsigned int", + "id": 22, + "offset": 304, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2081206026 + }, + "m_fusionState": { + "type": "enum Spell::FusionState", + "id": 23, + "offset": 308, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 835324539, + "enum_options": { + "FS_Invalid": 0, + "FS_Partial": 1, + "FS_Valid": 2 + } + } + } + }, + "802791637": { + "name": "class WeightedEntry", + "bases": [ + "PropertyClass" + ], + "hash": 802791637, + "properties": { + "m_weight": { + "type": "unsigned int", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1311209301 + } + } + }, + "1651140211": { + "name": "class SharedPointer", + "bases": [ + "ConfirmOption", + "ServiceOptionBase", + "PropertyClass" + ], + "hash": 1651140211, + "properties": { + "m_serviceName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2206028813 + }, + "m_iconKey": { + "type": "std::string", + "id": 1, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2457138637 + }, + "m_displayKey": { + "type": "std::string", + "id": 2, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3023276954 + }, + "m_serviceIndex": { + "type": "unsigned int", + "id": 3, + "offset": 204, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2103126710 + }, + "m_forceInteract": { + "type": "bool", + "id": 4, + "offset": 200, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1705789564 + }, + "m_confirmMessageTitleKey": { + "type": "std::string", + "id": 5, + "offset": 216, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1941136953 + }, + "m_confirmMessageTitleKeyAdvancedMode": { + "type": "std::string", + "id": 6, + "offset": 248, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3219201588 + }, + "m_confirmMessageKey": { + "type": "std::string", + "id": 7, + "offset": 280, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2088579351 + }, + "m_confirmMessageKeyAdvancedMode": { + "type": "std::string", + "id": 8, + "offset": 312, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2417239570 + }, + "m_promptSound": { + "type": "std::string", + "id": 9, + "offset": 344, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3178681510 + }, + "m_promptSoundAdvancedMode": { + "type": "std::string", + "id": 10, + "offset": 376, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1739626529 + }, + "m_acceptKey": { + "type": "std::string", + "id": 11, + "offset": 472, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3325790708 + }, + "m_declineKey": { + "type": "std::string", + "id": 12, + "offset": 504, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1679578008 + }, + "m_optionToConfirm": { + "type": "class SharedPointer", + "id": 13, + "offset": 536, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1224791766 + }, + "m_ignoreOption": { + "type": "std::string", + "id": 14, + "offset": 408, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1667595832 + }, + "m_ignoreAdvancedModeOption": { + "type": "std::string", + "id": 15, + "offset": 440, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2665095027 + } + } + }, + "1196795364": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1196795364, + "properties": {} + }, + "2084782222": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 2084782222, + "properties": { + "m_templates": { + "type": "class WizBangTemplate", + "id": 0, + "offset": 80, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": true, + "pointer": false, + "hash": 1728528111 + } + } + }, + "362524347": { + "name": "class SubscriberOnlyItemsList*", + "bases": [ + "PropertyClass" + ], + "hash": 362524347, + "properties": { + "m_subscriberOnlyItems": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1721964880 + } + } + }, + "362097999": { + "name": "class TourneyTokensAmountTemplate*", + "bases": [ + "WizItemTemplate", + "ItemTemplate", + "GameObjectTemplate", + "CoreTemplate", + "PropertyClass" + ], + "hash": 362097999, + "properties": { + "m_behaviors": { + "type": "class BehaviorTemplate*", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1197808594 + }, + "m_objectName": { + "type": "std::string", + "id": 1, + "offset": 96, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2154940147 + }, + "m_templateID": { + "type": "unsigned int", + "id": 2, + "offset": 128, + "flags": 16777223, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1286746870 + }, + "m_visualID": { + "type": "unsigned int", + "id": 3, + "offset": 132, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1118778894 + }, + "m_adjectiveList": { + "type": "std::string", + "id": 4, + "offset": 248, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 3195213318 + }, + "m_exemptFromAOI": { + "type": "bool", + "id": 5, + "offset": 240, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1457879059 + }, + "m_displayName": { + "type": "std::string", + "id": 6, + "offset": 168, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2446900370 + }, + "m_description": { + "type": "std::string", + "id": 7, + "offset": 136, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1649374815 + }, + "m_nObjectType": { + "type": "enum ObjectType", + "id": 8, + "offset": 200, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2118905880, + "enum_options": { + "OT_UNDEFINED": 0, + "OT_PLAYER": 1, + "OT_NPC": 2, + "OT_PROP": 3, + "OT_OBJECT": 4, + "OT_HOUSE": 5, + "OT_KEY": 6, + "OT_OLD_KEY": 7, + "OT_DEED": 8, + "OT_MAIL": 9, + "OT_RECIPE": 17, + "OT_EQUIP_HEAD": 10, + "OT_EQUIP_CHEST": 11, + "OT_EQUIP_LEGS": 12, + "OT_EQUIP_HANDS": 13, + "OT_EQUIP_FINGER": 14, + "OT_EQUIP_FEET": 15, + "OT_EQUIP_EAR": 16, + "OT_BUILDING_BLOCK": 18, + "OT_BUILDING_BLOCK_SOLID": 19, + "OT_GOLF": 20, + "OT_DOOR": 21, + "OT_PET": 22, + "OT_FABRIC": 23, + "OT_WINDOW": 24, + "OT_ROOF": 25, + "OT_HORSE": 26, + "OT_STRUCTURE": 27, + "OT_HOUSING_TEXTURE": 28, + "OT_PLANT": 29 + } + }, + "m_sIcon": { + "type": "std::string", + "id": 9, + "offset": 208, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306259831 + }, + "m_equipRequirements": { + "type": "class RequirementList*", + "id": 10, + "offset": 280, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2762617226 + }, + "m_purchaseRequirements": { + "type": "class RequirementList*", + "id": 11, + "offset": 288, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3174641793 + }, + "m_equipEffects": { + "type": "class GameEffectInfo*", + "id": 12, + "offset": 296, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 836628351 + }, + "m_baseCost": { + "type": "float", + "id": 13, + "offset": 312, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1565352651 + }, + "m_creditsCost": { + "type": "float", + "id": 14, + "offset": 320, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 805514974 + }, + "m_avatarInfo": { + "type": "class AvatarItemInfoBase*", + "id": 15, + "offset": 328, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2627321299 + }, + "m_avatarFlags": { + "type": "std::string", + "id": 16, + "offset": 336, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2347762759 + }, + "m_itemLimit": { + "type": "int", + "id": 17, + "offset": 316, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1799746856 + }, + "m_holidayFlag": { + "type": "std::string", + "id": 18, + "offset": 352, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2994795359 + }, + "m_itemSetBonusTemplateID": { + "type": "unsigned int", + "id": 19, + "offset": 384, + "flags": 33554439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1316835672 + }, + "m_numPrimaryColors": { + "type": "int", + "id": 20, + "offset": 428, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 981103872 + }, + "m_numSecondaryColors": { + "type": "int", + "id": 21, + "offset": 432, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1310416868 + }, + "m_numPatterns": { + "type": "int", + "id": 22, + "offset": 436, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 953162171 + }, + "m_school": { + "type": "std::string", + "id": 23, + "offset": 392, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2438566051 + }, + "m_arenaPointCost": { + "type": "int", + "id": 24, + "offset": 440, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1819621796 + }, + "m_pvpCurrencyCost": { + "type": "int", + "id": 25, + "offset": 444, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 645595444 + }, + "m_pvpTourneyCurrencyCost": { + "type": "int", + "id": 26, + "offset": 448, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 517874954 + }, + "m_rank": { + "type": "int", + "id": 27, + "offset": 424, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 219803942 + }, + "m_boyIconIndex": { + "type": "int", + "id": 28, + "offset": 452, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 802140453 + }, + "m_girlIconIndex": { + "type": "int", + "id": 29, + "offset": 456, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 832706793 + }, + "m_leashOffsetOverride": { + "type": "class SharedPointer", + "id": 30, + "offset": 464, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1692586788 + }, + "m_rarity": { + "type": "enum RarityType", + "id": 31, + "offset": 460, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2253792108, + "enum_options": { + "RT_COMMON": 0, + "RT_UNCOMMON": 1, + "RT_RARE": 2, + "RT_ULTRARARE": 3, + "RT_EPIC": 4 + } + }, + "m_tourneyTokensAmount": { + "type": "int", + "id": 32, + "offset": 480, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1579576120 + }, + "m_nif": { + "type": "std::string", + "id": 33, + "offset": 488, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1764743064 + } + } + }, + "803179651": { + "name": "class SharedPointer", + "bases": [ + "Requirement", + "PropertyClass" + ], + "hash": 803179651, + "properties": { + "m_applyNOT": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1746328074, + "enum_options": { + "__DEFAULT": 0 + } + }, + "m_operator": { + "type": "enum Requirement::Operator", + "id": 1, + "offset": 76, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2672792317, + "enum_options": { + "ROP_AND": 0, + "ROP_OR": 1, + "__DEFAULT": "ROP_AND" + } + }, + "m_magicSchool": { + "type": "std::string", + "id": 2, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1597012900 + } + } + }, + "362097679": { + "name": "class TourneyTokensAmountTemplate", + "bases": [ + "WizItemTemplate", + "ItemTemplate", + "GameObjectTemplate", + "CoreTemplate", + "PropertyClass" + ], + "hash": 362097679, + "properties": { + "m_behaviors": { + "type": "class BehaviorTemplate*", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1197808594 + }, + "m_objectName": { + "type": "std::string", + "id": 1, + "offset": 96, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2154940147 + }, + "m_templateID": { + "type": "unsigned int", + "id": 2, + "offset": 128, + "flags": 16777223, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1286746870 + }, + "m_visualID": { + "type": "unsigned int", + "id": 3, + "offset": 132, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1118778894 + }, + "m_adjectiveList": { + "type": "std::string", + "id": 4, + "offset": 248, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 3195213318 + }, + "m_exemptFromAOI": { + "type": "bool", + "id": 5, + "offset": 240, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1457879059 + }, + "m_displayName": { + "type": "std::string", + "id": 6, + "offset": 168, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2446900370 + }, + "m_description": { + "type": "std::string", + "id": 7, + "offset": 136, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1649374815 + }, + "m_nObjectType": { + "type": "enum ObjectType", + "id": 8, + "offset": 200, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2118905880, + "enum_options": { + "OT_UNDEFINED": 0, + "OT_PLAYER": 1, + "OT_NPC": 2, + "OT_PROP": 3, + "OT_OBJECT": 4, + "OT_HOUSE": 5, + "OT_KEY": 6, + "OT_OLD_KEY": 7, + "OT_DEED": 8, + "OT_MAIL": 9, + "OT_RECIPE": 17, + "OT_EQUIP_HEAD": 10, + "OT_EQUIP_CHEST": 11, + "OT_EQUIP_LEGS": 12, + "OT_EQUIP_HANDS": 13, + "OT_EQUIP_FINGER": 14, + "OT_EQUIP_FEET": 15, + "OT_EQUIP_EAR": 16, + "OT_BUILDING_BLOCK": 18, + "OT_BUILDING_BLOCK_SOLID": 19, + "OT_GOLF": 20, + "OT_DOOR": 21, + "OT_PET": 22, + "OT_FABRIC": 23, + "OT_WINDOW": 24, + "OT_ROOF": 25, + "OT_HORSE": 26, + "OT_STRUCTURE": 27, + "OT_HOUSING_TEXTURE": 28, + "OT_PLANT": 29 + } + }, + "m_sIcon": { + "type": "std::string", + "id": 9, + "offset": 208, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306259831 + }, + "m_equipRequirements": { + "type": "class RequirementList*", + "id": 10, + "offset": 280, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2762617226 + }, + "m_purchaseRequirements": { + "type": "class RequirementList*", + "id": 11, + "offset": 288, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3174641793 + }, + "m_equipEffects": { + "type": "class GameEffectInfo*", + "id": 12, + "offset": 296, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 836628351 + }, + "m_baseCost": { + "type": "float", + "id": 13, + "offset": 312, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1565352651 + }, + "m_creditsCost": { + "type": "float", + "id": 14, + "offset": 320, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 805514974 + }, + "m_avatarInfo": { + "type": "class AvatarItemInfoBase*", + "id": 15, + "offset": 328, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2627321299 + }, + "m_avatarFlags": { + "type": "std::string", + "id": 16, + "offset": 336, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2347762759 + }, + "m_itemLimit": { + "type": "int", + "id": 17, + "offset": 316, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1799746856 + }, + "m_holidayFlag": { + "type": "std::string", + "id": 18, + "offset": 352, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2994795359 + }, + "m_itemSetBonusTemplateID": { + "type": "unsigned int", + "id": 19, + "offset": 384, + "flags": 33554439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1316835672 + }, + "m_numPrimaryColors": { + "type": "int", + "id": 20, + "offset": 428, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 981103872 + }, + "m_numSecondaryColors": { + "type": "int", + "id": 21, + "offset": 432, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1310416868 + }, + "m_numPatterns": { + "type": "int", + "id": 22, + "offset": 436, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 953162171 + }, + "m_school": { + "type": "std::string", + "id": 23, + "offset": 392, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2438566051 + }, + "m_arenaPointCost": { + "type": "int", + "id": 24, + "offset": 440, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1819621796 + }, + "m_pvpCurrencyCost": { + "type": "int", + "id": 25, + "offset": 444, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 645595444 + }, + "m_pvpTourneyCurrencyCost": { + "type": "int", + "id": 26, + "offset": 448, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 517874954 + }, + "m_rank": { + "type": "int", + "id": 27, + "offset": 424, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 219803942 + }, + "m_boyIconIndex": { + "type": "int", + "id": 28, + "offset": 452, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 802140453 + }, + "m_girlIconIndex": { + "type": "int", + "id": 29, + "offset": 456, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 832706793 + }, + "m_leashOffsetOverride": { + "type": "class SharedPointer", + "id": 30, + "offset": 464, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1692586788 + }, + "m_rarity": { + "type": "enum RarityType", + "id": 31, + "offset": 460, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2253792108, + "enum_options": { + "RT_COMMON": 0, + "RT_UNCOMMON": 1, + "RT_RARE": 2, + "RT_ULTRARARE": 3, + "RT_EPIC": 4 + } + }, + "m_tourneyTokensAmount": { + "type": "int", + "id": 32, + "offset": 480, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1579576120 + }, + "m_nif": { + "type": "std::string", + "id": 33, + "offset": 488, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1764743064 + } + } + }, + "1652604243": { + "name": "class CompassMarker", + "bases": [ + "PropertyClass" + ], + "hash": 1652604243, + "properties": { + "m_textKey": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1720060457 + }, + "m_location": { + "type": "class Vector3D", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2239683611 + }, + "m_mapLocation": { + "type": "class Point", + "id": 2, + "offset": 116, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2172826233 + }, + "m_nObjectID": { + "type": "gid", + "id": 3, + "offset": 128, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 537078058 + }, + "m_visible": { + "type": "bool", + "id": 4, + "offset": 136, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 810536225 + } + } + }, + "1197675283": { + "name": "class SharedPointer", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1197675283, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_loaded": { + "type": "bool", + "id": 1, + "offset": 112, + "flags": 27, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 683367036 + }, + "m_entries": { + "type": "class SharedPointer", + "id": 2, + "offset": 120, + "flags": 27, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1075986553 + }, + "m_recordCache": { + "type": "class SharedPointer", + "id": 3, + "offset": 136, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 828243474 + } + } + }, + "2085066334": { + "name": "class ConicalStateSoundBehaviorTemplate", + "bases": [ + "ConicalSoundBehaviorTemplate", + "PositionalSoundBehaviorTemplate", + "SoundBehaviorTemplate", + "AreaBehaviorTemplate", + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 2085066334, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + }, + "m_radius": { + "type": "float", + "id": 1, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 989410271 + }, + "m_category": { + "type": "enum AudioCategory", + "id": 2, + "offset": 124, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2951251982, + "enum_options": { + "AudioCategory_Irrelevent": 0, + "AudioCategory_Accoustic": 1, + "AudioCategory_Noise": 2, + "AudioCategory_Music": 3, + "AudioCategory_MusicAtSFXVolume": 4, + "AudioCategory_Dialog": 5, + "AudioCategory_UI": 6, + "AudioCategory_NoiseAtMusicVolume": 7 + } + }, + "m_exclusive": { + "type": "bool", + "id": 3, + "offset": 128, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 824383403 + }, + "m_active": { + "type": "bool", + "id": 4, + "offset": 129, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 239335471 + }, + "m_enableReqs": { + "type": "class SharedPointer", + "id": 5, + "offset": 136, + "flags": 263, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3158020443 + }, + "m_trackFilenameList": { + "type": "std::string", + "id": 6, + "offset": 152, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2531081709 + }, + "m_playList": { + "type": "class PlayListEntry*", + "id": 7, + "offset": 176, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 3907873161 + }, + "m_priority": { + "type": "int", + "id": 8, + "offset": 208, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1235205852 + }, + "m_volume": { + "type": "float", + "id": 9, + "offset": 200, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1162855023 + }, + "m_loopCount": { + "type": "int", + "id": 10, + "offset": 204, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 865634717 + }, + "m_progression": { + "type": "enum PlayList::Progression", + "id": 11, + "offset": 220, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3279400238, + "enum_options": { + "Sequence": 0, + "Random": 1, + "SequenceOnceOnly": 2, + "RandomNoRepeat": 3 + } + }, + "m_progressMin": { + "type": "float", + "id": 12, + "offset": 212, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1497550192 + }, + "m_progressMax": { + "type": "float", + "id": 13, + "offset": 216, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1497549938 + }, + "m_audioFilterSet": { + "type": "unsigned int", + "id": 14, + "offset": 224, + "flags": 33554439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 831339825 + }, + "m_animationNameFilter": { + "type": "std::string", + "id": 15, + "offset": 232, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2292854242 + }, + "m_functionallabel": { + "type": "std::string", + "id": 16, + "offset": 264, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3589331278 + }, + "m_innerRadius": { + "type": "float", + "id": 17, + "offset": 296, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 686816091 + }, + "m_inverted": { + "type": "bool", + "id": 18, + "offset": 300, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1034821044 + }, + "m_fInsideAngle": { + "type": "float", + "id": 19, + "offset": 304, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1114383840 + }, + "m_fOutsideAngle": { + "type": "float", + "id": 20, + "offset": 308, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1627152289 + }, + "m_fOutsideVolume": { + "type": "float", + "id": 21, + "offset": 312, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 90369618 + }, + "m_fRangeScale": { + "type": "float", + "id": 22, + "offset": 316, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1749294034 + }, + "m_fAttenuationFactor": { + "type": "float", + "id": 23, + "offset": 320, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 273292776 + }, + "m_eAttenuationType": { + "type": "enum PositionInfoAttenuationType", + "id": 24, + "offset": 324, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2427193304, + "enum_options": { + "Standard": 0, + "Unit Range Power": 1 + } + } + } + }, + "1652253210": { + "name": "class BGPenaltyMatchBan", + "bases": [ + "InfractionPenalty", + "PropertyClass" + ], + "hash": 1652253210, + "properties": { + "m_internalID": { + "type": "unsigned int", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1854540375 + }, + "m_categoryID": { + "type": "unsigned int", + "id": 1, + "offset": 76, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1382795736 + }, + "m_removeAtPointValue": { + "type": "float", + "id": 2, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2112196961 + }, + "m_expireTime": { + "type": "unsigned int", + "id": 3, + "offset": 84, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1836304873 + }, + "m_duration": { + "type": "unsigned int", + "id": 4, + "offset": 88, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1041524755 + } + } + }, + "804376913": { + "name": "class SharedPointer", + "bases": [ + "LootInfo", + "LootInfoBase", + "PropertyClass" + ], + "hash": 804376913, + "properties": { + "m_lootType": { + "type": "enum LootInfo::LOOT_TYPE", + "id": 0, + "offset": 72, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1591891442, + "enum_options": { + "LOOT_TYPE_NONE": 0, + "LOOT_TYPE_GOLD": 1, + "LOOT_TYPE_MANA": 2, + "LOOT_TYPE_ITEM": 3, + "LOOT_TYPE_TREASURE_CARD": 4, + "LOOT_TYPE_MAGIC_XP": 5, + "LOOT_TYPE_ADD_SPELL": 6, + "LOOT_TYPE_MAX_HEALTH": 7, + "LOOT_TYPE_MAX_GOLD": 8, + "LOOT_TYPE_MAX_MANA": 9, + "LOOT_TYPE_MAX_POTION": 10, + "LOOT_TYPE_TRAINING_POINTS": 11, + "LOOT_TYPE_RECIPE": 12, + "LOOT_TYPE_CRAFTING_SLOT": 13, + "LOOT_TYPE_REAGENT": 14, + "LOOT_TYPE_PETSNACK": 15, + "LOOT_TYPE_GARDENING_XP": 16, + "LOOT_TYPE_PET_XP": 17, + "LOOT_TYPE_TREASURE_TABLE": 18, + "LOOT_TYPE_ARENA_POINTS": 19, + "LOOT_TYPE_ARENA_BONUS_POINTS": 20, + "LOOT_TYPE_GROUP": 21, + "LOOT_TYPE_FISHING_XP": 22, + "LOOT_TYPE_EVENT_CURRENCY_1": 24, + "LOOT_TYPE_EVENT_CURRENCY_2": 25, + "LOOT_TYPE_PVP_CURRENCY": 26, + "LOOT_TYPE_PVP_CURRENCY_BONUS": 27, + "LOOT_TYPE_PVP_TOURNEY_CURRENCY": 28, + "LOOT_TYPE_PVP_TOURNEY_CURRENCY_BONUS": 29, + "LOOT_TYPE_FURNITURE_ESSENCE": 30 + } + }, + "m_maxPotionToAdd": { + "type": "int", + "id": 1, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1268091461 + } + } + }, + "362135826": { + "name": "class SharedPointer", + "bases": [ + "GameEffectTemplate", + "PropertyClass" + ], + "hash": 362135826, + "properties": { + "m_effectName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2029161513 + }, + "m_effectCategory": { + "type": "std::string", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1852673222 + }, + "m_sortOrder": { + "type": "int", + "id": 2, + "offset": 148, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1411218206 + }, + "m_duration": { + "type": "double", + "id": 3, + "offset": 192, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2727932435 + }, + "m_stackingCategories": { + "type": "std::string", + "id": 4, + "offset": 160, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1774497525 + }, + "m_isPersistent": { + "type": "bool", + "id": 5, + "offset": 153, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 923861920 + }, + "m_bIsOnPet": { + "type": "bool", + "id": 6, + "offset": 154, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 522593303 + }, + "m_isPublic": { + "type": "bool", + "id": 7, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1728439822 + }, + "m_visualEffectAddName": { + "type": "std::string", + "id": 8, + "offset": 200, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3382086694 + }, + "m_visualEffectRemoveName": { + "type": "std::string", + "id": 9, + "offset": 232, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1541697323 + }, + "m_onAddFunctorName": { + "type": "std::string", + "id": 10, + "offset": 280, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1561843107 + }, + "m_onRemoveFunctorName": { + "type": "std::string", + "id": 11, + "offset": 312, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2559017864 + }, + "m_stackingRule": { + "type": "enum STACKING_RULE", + "id": 12, + "offset": 144, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 431568889, + "enum_options": { + "STACKING_ALLOWED": 0, + "STACKING_NOSTACK": 1, + "STACKING_REPLACE": 2 + } + }, + "m_tickOnAdd": { + "type": "bool", + "id": 13, + "offset": 360, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 663357284 + }, + "m_zoneEventName": { + "type": "std::string", + "id": 14, + "offset": 368, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2601481434 + }, + "m_tickRateSec": { + "type": "float", + "id": 15, + "offset": 400, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1559681353 + }, + "m_maxTicks": { + "type": "int", + "id": 16, + "offset": 404, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 155973918 + } + } + }, + "804091088": { + "name": "class CastleGamesUpdate*", + "bases": [ + "PropertyClass" + ], + "hash": 804091088, + "properties": { + "m_entryList": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 619674006 + }, + "m_numberOfGames": { + "type": "int", + "id": 1, + "offset": 88, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1220956901 + } + } + }, + "1198547408": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1198547408, + "properties": { + "m_subscriptions": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 3595491367 + } + } + }, + "2085933540": { + "name": "class ClientShadowSelfCinematicAction*", + "bases": [ + "ShadowSelfCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 2085933540, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + } + } + }, + "2085857565": { + "name": "class PathActionZoneEvent", + "bases": [ + "PathBehaviorTemplate::Action", + "PropertyClass" + ], + "hash": 2085857565, + "properties": { + "m_nPathID": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 214382368 + }, + "m_nNodeID": { + "type": "int", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 152152635, + "enum_options": { + "__DEFAULT": 4294967295 + } + }, + "m_nPriority": { + "type": "int", + "id": 2, + "offset": 84, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1515251530, + "enum_options": { + "__DEFAULT": 100 + } + }, + "m_nChance": { + "type": "int", + "id": 3, + "offset": 88, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1860748394, + "enum_options": { + "__DEFAULT": 50 + } + }, + "m_zoneEvent": { + "type": "std::string", + "id": 4, + "offset": 96, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2234553529 + } + } + }, + "1654392709": { + "name": "class BracketUpdateMessage", + "bases": [ + "PvPUpdateMessage", + "PropertyClass" + ], + "hash": 1654392709, + "properties": { + "m_messageType": { + "type": "int", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1531535105 + } + } + }, + "363049144": { + "name": "class ZoneTokenBehaviorTemplate", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 363049144, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + } + } + }, + "1653005502": { + "name": "class PrepEntry", + "bases": [ + "ServiceOptionBase", + "PropertyClass" + ], + "hash": 1653005502, + "properties": { + "m_serviceName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2206028813 + }, + "m_iconKey": { + "type": "std::string", + "id": 1, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2457138637 + }, + "m_displayKey": { + "type": "std::string", + "id": 2, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3023276954 + }, + "m_serviceIndex": { + "type": "unsigned int", + "id": 3, + "offset": 204, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2103126710 + }, + "m_forceInteract": { + "type": "bool", + "id": 4, + "offset": 200, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1705789564 + }, + "m_prepText": { + "type": "std::string", + "id": 5, + "offset": 248, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2576467479 + } + } + }, + "1202255320": { + "name": "class SoftEnumList", + "bases": [ + "PropertyClass" + ], + "hash": 1202255320, + "properties": { + "m_enums": { + "type": "std::string", + "id": 0, + "offset": 128, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2291006147 + } + } + }, + "807066584": { + "name": "class ClientClearCameraMappingCinematicAction*", + "bases": [ + "ClearCameraMappingCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 807066584, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + } + } + }, + "1652967942": { + "name": "class PestEntry", + "bases": [ + "PropertyClass" + ], + "hash": 1652967942, + "properties": { + "m_percentPerHour": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1587432077 + }, + "m_pestTemplateID": { + "type": "unsigned int", + "id": 1, + "offset": 76, + "flags": 33554439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1301457330 + } + } + }, + "1199794116": { + "name": "class SharedPointer", + "bases": [ + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 1199794116, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + }, + "m_animations": { + "type": "std::string", + "id": 2, + "offset": 120, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3030904078 + }, + "m_model": { + "type": "std::string", + "id": 3, + "offset": 152, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2300510668 + }, + "m_createOrientation": { + "type": "enum CreateActorCinematicAction::kCreateOrientation", + "id": 4, + "offset": 184, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3562324429, + "enum_options": { + "kFaceTarget": 0, + "kFaceSource": 1, + "kSigil": 2, + "kTarget": 3, + "kSource": 4, + "kSigilRight": 5, + "kSigilLeft": 6, + "kFaceTargetTeam": 7 + } + }, + "m_hidePolymorphFloatyText": { + "type": "bool", + "id": 5, + "offset": 188, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 942475883 + }, + "m_forwardOffset": { + "type": "float", + "id": 6, + "offset": 192, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1749681459 + }, + "m_absoluteTarget": { + "type": "bool", + "id": 7, + "offset": 196, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1463993657 + } + } + }, + "2085984988": { + "name": "class SharedPointer", + "bases": [ + "Window", + "PropertyClass" + ], + "hash": 2085984988, + "properties": { + "m_sName": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306437263 + }, + "m_Children": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621225959 + }, + "m_Style": { + "type": "unsigned int", + "id": 2, + "offset": 152, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "SCALE_CHILDREN": 2, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "FOCUS_LOCKED": 64, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152 + } + }, + "m_Flags": { + "type": "unsigned int", + "id": 3, + "offset": 156, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } + }, + "m_Window": { + "type": "class Rect", + "id": 4, + "offset": 160, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3105139380 + }, + "m_fTargetAlpha": { + "type": "float", + "id": 5, + "offset": 212, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1809129834 + }, + "m_fDisabledAlpha": { + "type": "float", + "id": 6, + "offset": 216, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1389987675 + }, + "m_fAlpha": { + "type": "float", + "id": 7, + "offset": 208, + "flags": 65671, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 482130755 + }, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3623628394 + }, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2102211316 + }, + "m_sScript": { + "type": "std::string", + "id": 10, + "offset": 352, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1846695875 + }, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3389835433 + }, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547159940 + }, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513510520 + }, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3091503757 + } + } + }, + "806790542": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 806790542, + "properties": { + "m_hairColorList": { + "type": "class CharacterElement*", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1900063063 + } + } + }, + "1652893342": { + "name": "class SharedPointer", + "bases": [ + "BlobCacheInterface", + "PropertyClass" + ], + "hash": 1652893342, + "properties": {} + }, + "1198855130": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1198855130, + "properties": { + "m_mapStringKey": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3476195193 + }, + "m_mapImageFile": { + "type": "std::string", + "id": 1, + "offset": 104, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2861333660 + }, + "m_playerGlyphFile": { + "type": "std::string", + "id": 2, + "offset": 136, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3606975340 + }, + "m_mapIconsFile": { + "type": "std::string", + "id": 3, + "offset": 168, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3069899221 + }, + "m_namePlateFile": { + "type": "std::string", + "id": 4, + "offset": 200, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3484945554 + }, + "m_topLeft": { + "type": "class Point", + "id": 5, + "offset": 232, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2378435386 + }, + "m_topRight": { + "type": "class Point", + "id": 6, + "offset": 240, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2345696461 + }, + "m_bottomRight": { + "type": "class Point", + "id": 7, + "offset": 248, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3584882159 + }, + "m_bottomLeft": { + "type": "class Point", + "id": 8, + "offset": 256, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2676287516 + } + } + }, + "363660502": { + "name": "class SharedPointer", + "bases": [ + "CollisionBehavior", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 363660502, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_nHolderGID": { + "type": "gid", + "id": 1, + "offset": 352, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 133708664 + }, + "m_vHoldOffset": { + "type": "class Vector3D", + "id": 2, + "offset": 360, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3766080710 + }, + "m_fHoldForce": { + "type": "float", + "id": 3, + "offset": 372, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1792175219 + } + } + }, + "805679666": { + "name": "struct ControlTileMap::CellInfo*", + "bases": [ + "PropertyClass" + ], + "hash": 805679666, + "properties": { + "m_nTileIndex": { + "type": "int", + "id": 0, + "offset": 72, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1956352654 + }, + "m_fCurrentFrame": { + "type": "float", + "id": 1, + "offset": 76, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 219900907 + }, + "m_bIsFlippedHorizontal": { + "type": "bool", + "id": 2, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 627031807 + }, + "m_bIsFlippedVertical": { + "type": "bool", + "id": 3, + "offset": 81, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 298230063 + }, + "m_nRotation": { + "type": "unsigned int", + "id": 4, + "offset": 84, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1898715531 + } + } + }, + "1198704979": { + "name": "class std::vector >", + "bases": [], + "hash": 1198704979, + "properties": {} + }, + "2086449938": { + "name": "class SharedPointer", + "bases": [ + "SoundEmitterInfo", + "SoundInfo", + "ClientObjectInfo", + "CoreObjectInfo", + "PropertyClass" + ], + "hash": 2086449938, + "properties": { + "m_templateID.m_full": { + "type": "unsigned __int64", + "id": 0, + "offset": 72, + "flags": 33554439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 633907631 + }, + "m_nObjectID": { + "type": "unsigned int", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 748496927 + }, + "m_location": { + "type": "class Vector3D", + "id": 2, + "offset": 84, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2239683611 + }, + "m_orientation": { + "type": "class Vector3D", + "id": 3, + "offset": 96, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2344058766 + }, + "m_fScale": { + "type": "float", + "id": 4, + "offset": 108, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 503137701 + }, + "m_zoneTag": { + "type": "std::string", + "id": 5, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3405382643 + }, + "m_startState": { + "type": "std::string", + "id": 6, + "offset": 184, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2166880458 + }, + "m_overrideName": { + "type": "std::string", + "id": 7, + "offset": 120, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1990707228 + }, + "m_globalDynamic": { + "type": "bool", + "id": 8, + "offset": 116, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1951691017 + }, + "m_bUndetectable": { + "type": "bool", + "id": 9, + "offset": 216, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1907454341 + }, + "m_spawnRequirements": { + "type": "class SharedPointer", + "id": 10, + "offset": 224, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2309120870 + }, + "m_loadingType": { + "type": "enum CoreObjectInfo::LoadingType", + "id": 11, + "offset": 112, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3522422550, + "enum_options": { + "STATIC_CLIENT_SERVER": 0, + "STATIC_CLIENT": 1, + "STATIC_SERVER": 2, + "DYNAMIC_SERVER": 3 + } + }, + "m_radius": { + "type": "float", + "id": 12, + "offset": 256, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 989410271 + }, + "m_exclusive": { + "type": "bool", + "id": 13, + "offset": 260, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 824383403 + }, + "m_startActive": { + "type": "bool", + "id": 14, + "offset": 261, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2031339229 + }, + "m_category": { + "type": "enum AudioCategory", + "id": 15, + "offset": 264, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2951251982, + "enum_options": { + "AudioCategory_Irrelevent": 0, + "AudioCategory_Accoustic": 1, + "AudioCategory_Noise": 2, + "AudioCategory_Music": 3 + } + }, + "m_override": { + "type": "int", + "id": 16, + "offset": 268, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 136872410, + "enum_options": { + "OVR_RADIUS": 1, + "OVR_CATEGORY": 2, + "OVR_EXCLUSIVE": 4, + "OVR_SIGNATURE": 64, + "OVR_VOLUME": 8, + "OVR_LOOPCOUNT": 16, + "OVR_ACTIVE": 32, + "OVR_PLAYPROG": 128, + "OVR_PRIORITY": 256, + "OVR_PROGTIME": 512, + "OVR_FILTERSET": 1024 + } + }, + "m_enableReqs": { + "type": "class SharedPointer", + "id": 17, + "offset": 272, + "flags": 263, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3158020443 + }, + "m_volume": { + "type": "float", + "id": 18, + "offset": 288, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1162855023 + }, + "m_loopCount": { + "type": "int", + "id": 19, + "offset": 292, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 865634717 + }, + "m_trackFilenameList": { + "type": "std::string", + "id": 20, + "offset": 312, + "flags": 131079, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2531081709 + }, + "m_playList": { + "type": "class PlayListEntry*", + "id": 21, + "offset": 336, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 3907873161 + }, + "m_priority": { + "type": "int", + "id": 22, + "offset": 296, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1235205852 + }, + "m_progression": { + "type": "enum PlayList::Progression", + "id": 23, + "offset": 300, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3279400238, + "enum_options": { + "Sequence": 0, + "Random": 1, + "SequenceOnceOnly": 2, + "RandomNoRepeat": 3 + } + }, + "m_progressMin": { + "type": "float", + "id": 24, + "offset": 304, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1497550192 + }, + "m_progressMax": { + "type": "float", + "id": 25, + "offset": 308, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1497549938 + }, + "m_audioFilterSet": { + "type": "unsigned int", + "id": 26, + "offset": 360, + "flags": 33554439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 831339825 + }, + "m_clientTag": { + "type": "std::string", + "id": 27, + "offset": 368, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3409856790 + }, + "m_innerRadius": { + "type": "float", + "id": 28, + "offset": 400, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 686816091 + }, + "m_nifObjName": { + "type": "std::string", + "id": 29, + "offset": 408, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513857812 + }, + "m_animNIFObjName": { + "type": "std::string", + "id": 30, + "offset": 440, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2245834777 + }, + "m_inverted": { + "type": "bool", + "id": 31, + "offset": 472, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1034821044 + }, + "m_initialDelay": { + "type": "float", + "id": 32, + "offset": 476, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 629858288 + } + } + }, + "1652955654": { + "name": "class PestEntry*", + "bases": [ + "PropertyClass" + ], + "hash": 1652955654, + "properties": { + "m_percentPerHour": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1587432077 + }, + "m_pestTemplateID": { + "type": "unsigned int", + "id": 1, + "offset": 76, + "flags": 33554439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1301457330 + } + } + }, + "364159407": { + "name": "class SharedPointer", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 364159407, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_snackBag": { + "type": "class ObjectBag", + "id": 1, + "offset": 112, + "flags": 27, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2027393587 + } + } + }, + "806171162": { + "name": "class ObstacleCourseObstacleBehaviorTemplate", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 806171162, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + } + } + }, + "1199732992": { + "name": "class SharedPointer", + "bases": [ + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 1199732992, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + }, + "m_deltaYaw": { + "type": "float", + "id": 2, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1518691890 + } + } + }, + "2094243210": { + "name": "class ClientWizInventoryBehavior", + "bases": [ + "ClientInventoryBehavior", + "InventoryBehaviorBase", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 2094243210, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_itemList": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 27, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1983655699 + }, + "m_numItemsAllowed": { + "type": "int", + "id": 2, + "offset": 160, + "flags": 27, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1404509492 + }, + "m_numJewelsAllowed": { + "type": "int", + "id": 3, + "offset": 164, + "flags": 27, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 49168892 + }, + "m_numCEEmotesAllowed": { + "type": "int", + "id": 4, + "offset": 168, + "flags": 27, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 259951495 + }, + "m_numCETeleportsAllowed": { + "type": "int", + "id": 5, + "offset": 172, + "flags": 27, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 284631772 + } + } + }, + "1652985022": { + "name": "class PrepEntry*", + "bases": [ + "ServiceOptionBase", + "PropertyClass" + ], + "hash": 1652985022, + "properties": { + "m_serviceName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2206028813 + }, + "m_iconKey": { + "type": "std::string", + "id": 1, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2457138637 + }, + "m_displayKey": { + "type": "std::string", + "id": 2, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3023276954 + }, + "m_serviceIndex": { + "type": "unsigned int", + "id": 3, + "offset": 204, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2103126710 + }, + "m_forceInteract": { + "type": "bool", + "id": 4, + "offset": 200, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1705789564 + }, + "m_prepText": { + "type": "std::string", + "id": 5, + "offset": 248, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2576467479 + } + } + }, + "1198856126": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1198856126, + "properties": { + "m_id": { + "type": "gid", + "id": 0, + "offset": 88, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2090569797 + }, + "m_requirements": { + "type": "class RequirementList", + "id": 1, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2840988582 + }, + "m_actorImage": { + "type": "std::string", + "id": 2, + "offset": 248, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2562145079 + }, + "m_actorName": { + "type": "std::string", + "id": 3, + "offset": 280, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2050810421 + }, + "m_dialog": { + "type": "class SharedPointer", + "id": 4, + "offset": 352, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 440960800 + }, + "m_repeatable": { + "type": "bool", + "id": 5, + "offset": 368, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 366129064 + }, + "m_criticalTip": { + "type": "bool", + "id": 6, + "offset": 369, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 402676843 + }, + "m_backgroundMusic": { + "type": "std::string", + "id": 7, + "offset": 312, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1857091004 + }, + "m_musicAtSFXVolume": { + "type": "bool", + "id": 8, + "offset": 344, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2142315218 + }, + "m_eventName": { + "type": "std::string", + "id": 9, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 3493260286 + }, + "m_tutorialTipType": { + "type": "enum TutorialTipType", + "id": 10, + "offset": 372, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1666586963, + "enum_options": { + "TTT_Tutorial": 0, + "TTT_Warning": 1, + "TTT_Quest": 2, + "TTT_school": 3 + } + } + } + }, + "2091667075": { + "name": "class SharedPointer", + "bases": [ + "GameEffectBase", + "PropertyClass" + ], + "hash": 2091667075, + "properties": { + "m_currentTickCount": { + "type": "double", + "id": 0, + "offset": 80, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2533274692 + }, + "m_effectNameID": { + "type": "unsigned int", + "id": 1, + "offset": 96, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1204067144 + }, + "m_bIsOnPet": { + "type": "bool", + "id": 2, + "offset": 73, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 522593303 + }, + "m_originatorID": { + "type": "gid", + "id": 3, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1131810019 + }, + "m_itemSlotID": { + "type": "unsigned int", + "id": 4, + "offset": 112, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1895747595 + }, + "m_internalID": { + "type": "int", + "id": 5, + "offset": 92, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1643137924 + }, + "m_endTime": { + "type": "unsigned int", + "id": 6, + "offset": 88, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 716479635 + }, + "m_flags": { + "type": "unsigned int", + "id": 7, + "offset": 128, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1005801050 + } + } + }, + "364958070": { + "name": "class CastEffectCinematicAction*", + "bases": [ + "BaseEffectCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 364958070, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_effectRel": { + "type": "enum BaseEffectCinematicAction::kEffectRelative", + "id": 1, + "offset": 80, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2978921287, + "enum_options": { + "kNone": 0, + "kSigil": 1, + "kTarget": 2, + "kSource": 3, + "kActor": 4 + } + }, + "m_namedActor": { + "type": "std::string", + "id": 2, + "offset": 88, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3413532537 + } + } + }, + "807066564": { + "name": "class ClientClearCameraMappingCinematicAction", + "bases": [ + "ClearCameraMappingCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 807066564, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + } + } + }, + "2089315118": { + "name": "class SharedPointer", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 2089315118, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + } + } + }, + "364463519": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 364463519, + "properties": {} + }, + "2088854734": { + "name": "class SharedPointer", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 2088854734, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_effectName": { + "type": "std::string", + "id": 1, + "offset": 112, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2029161513 + }, + "m_textKey": { + "type": "std::string", + "id": 2, + "offset": 144, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1720060457 + }, + "m_height": { + "type": "float", + "id": 3, + "offset": 176, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 602977104 + }, + "m_zOffset": { + "type": "float", + "id": 4, + "offset": 180, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 736134072 + }, + "m_red": { + "type": "unsigned char", + "id": 5, + "offset": 184, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 904647115 + }, + "m_green": { + "type": "unsigned char", + "id": 6, + "offset": 185, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1433403873 + }, + "m_blue": { + "type": "unsigned char", + "id": 7, + "offset": 186, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 856840600 + }, + "m_triggers": { + "type": "class SharedPointer", + "id": 8, + "offset": 192, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 3290329276 + } + } + }, + "364199998": { + "name": "class AdventurePartyJoinList*", + "bases": [ + "PropertyClass" + ], + "hash": 364199998, + "properties": { + "m_adventurePartyJoinList": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1532734392 + } + } + }, + "1653757790": { + "name": "class DynamicTriggerTemplate", + "bases": [ + "GameObjectTemplate", + "CoreTemplate", + "PropertyClass" + ], + "hash": 1653757790, + "properties": { + "m_behaviors": { + "type": "class BehaviorTemplate*", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1197808594 + }, + "m_objectName": { + "type": "std::string", + "id": 1, + "offset": 96, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2154940147 + }, + "m_templateID": { + "type": "unsigned int", + "id": 2, + "offset": 128, + "flags": 16777223, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1286746870 + }, + "m_visualID": { + "type": "unsigned int", + "id": 3, + "offset": 132, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1118778894 + }, + "m_adjectiveList": { + "type": "std::string", + "id": 4, + "offset": 248, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 3195213318 + }, + "m_exemptFromAOI": { + "type": "bool", + "id": 5, + "offset": 240, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1457879059 + }, + "m_displayName": { + "type": "std::string", + "id": 6, + "offset": 168, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2446900370 + }, + "m_description": { + "type": "std::string", + "id": 7, + "offset": 136, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1649374815 + }, + "m_nObjectType": { + "type": "enum ObjectType", + "id": 8, + "offset": 200, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2118905880, + "enum_options": { + "OT_UNDEFINED": 0, + "OT_PLAYER": 1, + "OT_NPC": 2, + "OT_PROP": 3, + "OT_OBJECT": 4, + "OT_HOUSE": 5, + "OT_KEY": 6, + "OT_OLD_KEY": 7, + "OT_DEED": 8, + "OT_MAIL": 9, + "OT_RECIPE": 17, + "OT_EQUIP_HEAD": 10, + "OT_EQUIP_CHEST": 11, + "OT_EQUIP_LEGS": 12, + "OT_EQUIP_HANDS": 13, + "OT_EQUIP_FINGER": 14, + "OT_EQUIP_FEET": 15, + "OT_EQUIP_EAR": 16, + "OT_BUILDING_BLOCK": 18, + "OT_BUILDING_BLOCK_SOLID": 19, + "OT_GOLF": 20, + "OT_DOOR": 21, + "OT_PET": 22, + "OT_FABRIC": 23, + "OT_WINDOW": 24, + "OT_ROOF": 25, + "OT_HORSE": 26, + "OT_STRUCTURE": 27, + "OT_HOUSING_TEXTURE": 28, + "OT_PLANT": 29 + } + }, + "m_sIcon": { + "type": "std::string", + "id": 9, + "offset": 208, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306259831 + } + } + }, + "2087170015": { + "name": "class SharedPointer", + "bases": [ + "StatisticEffectTemplate", + "GameEffectTemplate", + "PropertyClass" + ], + "hash": 2087170015, + "properties": { + "m_effectName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2029161513 + }, + "m_effectCategory": { + "type": "std::string", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1852673222 + }, + "m_sortOrder": { + "type": "int", + "id": 2, + "offset": 148, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1411218206 + }, + "m_duration": { + "type": "double", + "id": 3, + "offset": 192, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2727932435 + }, + "m_stackingCategories": { + "type": "std::string", + "id": 4, + "offset": 160, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1774497525 + }, + "m_isPersistent": { + "type": "bool", + "id": 5, + "offset": 153, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 923861920 + }, + "m_bIsOnPet": { + "type": "bool", + "id": 6, + "offset": 154, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 522593303 + }, + "m_isPublic": { + "type": "bool", + "id": 7, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1728439822 + }, + "m_visualEffectAddName": { + "type": "std::string", + "id": 8, + "offset": 200, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3382086694 + }, + "m_visualEffectRemoveName": { + "type": "std::string", + "id": 9, + "offset": 232, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1541697323 + }, + "m_onAddFunctorName": { + "type": "std::string", + "id": 10, + "offset": 280, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1561843107 + }, + "m_onRemoveFunctorName": { + "type": "std::string", + "id": 11, + "offset": 312, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2559017864 + }, + "m_stackingRule": { + "type": "enum STACKING_RULE", + "id": 12, + "offset": 144, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 431568889, + "enum_options": { + "STACKING_ALLOWED": 0, + "STACKING_NOSTACK": 1, + "STACKING_REPLACE": 2 + } + }, + "m_baseHitpoints": { + "type": "float", + "id": 13, + "offset": 360, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 686307060 + }, + "m_baseMana": { + "type": "float", + "id": 14, + "offset": 364, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1565696591 + }, + "m_xpPercentIncrease": { + "type": "float", + "id": 15, + "offset": 368, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1051081338 + }, + "m_goldPercent": { + "type": "float", + "id": 16, + "offset": 372, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1095720878 + }, + "m_wispBonusPercent": { + "type": "float", + "id": 17, + "offset": 376, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1304386546 + }, + "m_powerPipBonusPercent": { + "type": "float", + "id": 18, + "offset": 380, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1671446341 + }, + "m_shadowPipBonusPercent": { + "type": "float", + "id": 19, + "offset": 384, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1426533310 + }, + "m_shadowPipRating": { + "type": "float", + "id": 20, + "offset": 388, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 507126123 + }, + "m_archmasteryBonus": { + "type": "float", + "id": 21, + "offset": 392, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1445460001 + }, + "m_stunResistancePercent": { + "type": "float", + "id": 22, + "offset": 396, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1868382627 + }, + "m_school": { + "type": "std::string", + "id": 23, + "offset": 400, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2438566051 + }, + "m_pipConversionRating": { + "type": "float", + "id": 24, + "offset": 432, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 246855691 + }, + "m_criticalHitRating": { + "type": "float", + "id": 25, + "offset": 436, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1978690540 + }, + "m_blockRating": { + "type": "float", + "id": 26, + "offset": 440, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2088486759 + }, + "m_dmgBonusPercent": { + "type": "float", + "id": 27, + "offset": 444, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 194501159 + }, + "m_dmgBonusFlat": { + "type": "float", + "id": 28, + "offset": 448, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1837769725 + }, + "m_accBonusPercent": { + "type": "float", + "id": 29, + "offset": 452, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 331557526 + }, + "m_apBonusPercent": { + "type": "float", + "id": 30, + "offset": 456, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1228557984 + }, + "m_dmgReducePercent": { + "type": "float", + "id": 31, + "offset": 460, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1426050712 + }, + "m_dmgReduceFlat": { + "type": "float", + "id": 32, + "offset": 464, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1218184718 + }, + "m_accReducePercent": { + "type": "float", + "id": 33, + "offset": 468, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1653943527 + }, + "m_healBonusPercent": { + "type": "float", + "id": 34, + "offset": 472, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 562313577 + }, + "m_healIncBonusPercent": { + "type": "float", + "id": 35, + "offset": 476, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2182535587 + }, + "m_fishingLuckBonusPercent": { + "type": "float", + "id": 36, + "offset": 480, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1363349254 + } + } + }, + "807343814": { + "name": "class EmojiWindow", + "bases": [ + "Window", + "PropertyClass" + ], + "hash": 807343814, + "properties": { + "m_sName": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306437263 + }, + "m_Children": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621225959 + }, + "m_Style": { + "type": "unsigned int", + "id": 2, + "offset": 152, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "SCALE_CHILDREN": 2, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "FOCUS_LOCKED": 64, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152 + } + }, + "m_Flags": { + "type": "unsigned int", + "id": 3, + "offset": 156, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } + }, + "m_Window": { + "type": "class Rect", + "id": 4, + "offset": 160, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3105139380 + }, + "m_fTargetAlpha": { + "type": "float", + "id": 5, + "offset": 212, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1809129834 + }, + "m_fDisabledAlpha": { + "type": "float", + "id": 6, + "offset": 216, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1389987675 + }, + "m_fAlpha": { + "type": "float", + "id": 7, + "offset": 208, + "flags": 65671, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 482130755 + }, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3623628394 + }, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2102211316 + }, + "m_sScript": { + "type": "std::string", + "id": 10, + "offset": 352, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1846695875 + }, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3389835433 + }, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547159940 + }, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513510520 + }, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3091503757 + } + } + }, + "1653249532": { + "name": "class SharedPointer", + "bases": [ + "DynaModBehavior", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1653249532, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + } + } + }, + "1200595993": { + "name": "class RenderBehavior*", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1200595993, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + } + } + }, + "364240958": { + "name": "class AdventurePartyJoinList", + "bases": [ + "PropertyClass" + ], + "hash": 364240958, + "properties": { + "m_adventurePartyJoinList": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1532734392 + } + } + }, + "807186171": { + "name": "class SharedPointer", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 807186171, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_targetLeague": { + "type": "std::string", + "id": 1, + "offset": 112, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3312829397 + }, + "m_rank": { + "type": "int", + "id": 2, + "offset": 144, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 219803942 + }, + "m_refreshRateSec": { + "type": "int", + "id": 3, + "offset": 148, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 418402320 + }, + "m_groundOffset": { + "type": "float", + "id": 4, + "offset": 152, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 684524077 + }, + "m_yaw": { + "type": "float", + "id": 5, + "offset": 156, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 357256328 + }, + "m_showNametag": { + "type": "bool", + "id": 6, + "offset": 160, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 584664753 + }, + "m_showInGrace": { + "type": "bool", + "id": 7, + "offset": 161, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1033917517 + }, + "m_showActive": { + "type": "bool", + "id": 8, + "offset": 162, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 685431312 + }, + "m_scale": { + "type": "float", + "id": 9, + "offset": 164, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 899693439 + }, + "m_alpha": { + "type": "float", + "id": 10, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 878686493 + }, + "m_animDelaySec": { + "type": "float", + "id": 11, + "offset": 172, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2131058854 + }, + "m_animChance": { + "type": "float", + "id": 12, + "offset": 176, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 434823806 + }, + "m_animList": { + "type": "std::string", + "id": 13, + "offset": 184, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2531745852 + }, + "m_leagueID": { + "type": "unsigned int", + "id": 14, + "offset": 200, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 692361645 + }, + "m_seasonID": { + "type": "unsigned int", + "id": 15, + "offset": 204, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 535260643 + }, + "m_startTime": { + "type": "unsigned int", + "id": 16, + "offset": 208, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1598371274 + }, + "m_visualBlob": { + "type": "std::string", + "id": 17, + "offset": 216, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1691722510 + } + } + }, + "1653180090": { + "name": "class SharedPointer", + "bases": [ + "ConicalSoundBehaviorTemplate", + "PositionalSoundBehaviorTemplate", + "SoundBehaviorTemplate", + "AreaBehaviorTemplate", + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 1653180090, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + }, + "m_radius": { + "type": "float", + "id": 1, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 989410271 + }, + "m_category": { + "type": "enum AudioCategory", + "id": 2, + "offset": 124, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2951251982, + "enum_options": { + "AudioCategory_Irrelevent": 0, + "AudioCategory_Accoustic": 1, + "AudioCategory_Noise": 2, + "AudioCategory_Music": 3, + "AudioCategory_MusicAtSFXVolume": 4, + "AudioCategory_Dialog": 5, + "AudioCategory_UI": 6, + "AudioCategory_NoiseAtMusicVolume": 7 + } + }, + "m_exclusive": { + "type": "bool", + "id": 3, + "offset": 128, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 824383403 + }, + "m_active": { + "type": "bool", + "id": 4, + "offset": 129, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 239335471 + }, + "m_enableReqs": { + "type": "class SharedPointer", + "id": 5, + "offset": 136, + "flags": 263, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3158020443 + }, + "m_trackFilenameList": { + "type": "std::string", + "id": 6, + "offset": 152, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2531081709 + }, + "m_playList": { + "type": "class PlayListEntry*", + "id": 7, + "offset": 176, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 3907873161 + }, + "m_priority": { + "type": "int", + "id": 8, + "offset": 208, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1235205852 + }, + "m_volume": { + "type": "float", + "id": 9, + "offset": 200, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1162855023 + }, + "m_loopCount": { + "type": "int", + "id": 10, + "offset": 204, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 865634717 + }, + "m_progression": { + "type": "enum PlayList::Progression", + "id": 11, + "offset": 220, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3279400238, + "enum_options": { + "Sequence": 0, + "Random": 1, + "SequenceOnceOnly": 2, + "RandomNoRepeat": 3 + } + }, + "m_progressMin": { + "type": "float", + "id": 12, + "offset": 212, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1497550192 + }, + "m_progressMax": { + "type": "float", + "id": 13, + "offset": 216, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1497549938 + }, + "m_audioFilterSet": { + "type": "unsigned int", + "id": 14, + "offset": 224, + "flags": 33554439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 831339825 + }, + "m_animationNameFilter": { + "type": "std::string", + "id": 15, + "offset": 232, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2292854242 + }, + "m_functionallabel": { + "type": "std::string", + "id": 16, + "offset": 264, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3589331278 + }, + "m_innerRadius": { + "type": "float", + "id": 17, + "offset": 296, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 686816091 + }, + "m_inverted": { + "type": "bool", + "id": 18, + "offset": 300, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1034821044 + }, + "m_fInsideAngle": { + "type": "float", + "id": 19, + "offset": 304, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1114383840 + }, + "m_fOutsideAngle": { + "type": "float", + "id": 20, + "offset": 308, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1627152289 + }, + "m_fOutsideVolume": { + "type": "float", + "id": 21, + "offset": 312, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 90369618 + }, + "m_fRangeScale": { + "type": "float", + "id": 22, + "offset": 316, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1749294034 + }, + "m_fAttenuationFactor": { + "type": "float", + "id": 23, + "offset": 320, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 273292776 + }, + "m_eAttenuationType": { + "type": "enum PositionInfoAttenuationType", + "id": 24, + "offset": 324, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2427193304, + "enum_options": { + "Standard": 0, + "Unit Range Power": 1 + } + } + } + }, + "1200205223": { + "name": "class std::list >", + "bases": [], + "hash": 1200205223, + "properties": {} + }, + "2088237777": { + "name": "class SharedPointer", + "bases": [ + "ReqNumeric", + "Requirement", + "PropertyClass" + ], + "hash": 2088237777, + "properties": { + "m_applyNOT": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1746328074, + "enum_options": { + "__DEFAULT": 0 + } + }, + "m_operator": { + "type": "enum Requirement::Operator", + "id": 1, + "offset": 76, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2672792317, + "enum_options": { + "ROP_AND": 0, + "ROP_OR": 1, + "__DEFAULT": "ROP_AND" + } + }, + "m_numericValue": { + "type": "float", + "id": 2, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 521915239 + }, + "m_operatorType": { + "type": "enum ReqNumeric::OPERATOR_TYPE", + "id": 3, + "offset": 84, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2228122961, + "enum_options": { + "OPERATOR_UNKNOWN": 4294967295, + "OPERATOR_EQUALS": 0, + "OPERATOR_GREATER_THAN": 1, + "OPERATOR_LESS_THAN": 2, + "OPERATOR_GREATER_THAN_EQ": 3, + "OPERATOR_LESS_THAN_EQ": 4 + } + } + } + }, + "1200233492": { + "name": "class SharedPointer", + "bases": [ + "Requirement", + "PropertyClass" + ], + "hash": 1200233492, + "properties": { + "m_applyNOT": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1746328074, + "enum_options": { + "__DEFAULT": 0 + } + }, + "m_operator": { + "type": "enum Requirement::Operator", + "id": 1, + "offset": 76, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2672792317, + "enum_options": { + "ROP_AND": 0, + "ROP_OR": 1, + "__DEFAULT": "ROP_AND" + } + }, + "m_spellName": { + "type": "std::string", + "id": 2, + "offset": 80, + "flags": 268435487, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2688485244, + "enum_options": { + "__BASECLASS": "SpellTemplate" + } + } + } + }, + "364825772": { + "name": "class PhysicsSim*", + "bases": [ + "BaseZone::BaseSimulation", + "PropertyClass" + ], + "hash": 364825772, + "properties": {} + }, + "807463180": { + "name": "class PlayerControllerClient", + "bases": [ + "PlayerController", + "MoveBehavior::Controller", + "PropertyClass" + ], + "hash": 807463180, + "properties": { + "m_bCollisionDisabled": { + "type": "bool", + "id": 0, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1732895577 + }, + "m_bVehicleMode": { + "type": "bool", + "id": 1, + "offset": 121, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1597295002 + }, + "m_fForwardModifier": { + "type": "float", + "id": 2, + "offset": 124, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1173988321 + }, + "m_fBackModifier": { + "type": "float", + "id": 3, + "offset": 128, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 148042045 + }, + "m_fStrafeModifier": { + "type": "float", + "id": 4, + "offset": 132, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 226084913 + }, + "m_fTurnModifier": { + "type": "float", + "id": 5, + "offset": 136, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2134998805 + }, + "m_fAccelerationModifier": { + "type": "float", + "id": 6, + "offset": 144, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 592902742 + }, + "m_fDecelerationModifier": { + "type": "float", + "id": 7, + "offset": 148, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1770082811 + } + } + }, + "2089277885": { + "name": "class TieredSpellTemplate*", + "bases": [ + "SpellTemplate", + "CoreTemplate", + "PropertyClass" + ], + "hash": 2089277885, + "properties": { + "m_behaviors": { + "type": "class BehaviorTemplate*", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1197808594 + }, + "m_name": { + "type": "std::string", + "id": 1, + "offset": 96, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1717359772 + }, + "m_description": { + "type": "std::string", + "id": 2, + "offset": 168, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1649374815 + }, + "m_advancedDescription": { + "type": "std::string", + "id": 3, + "offset": 200, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3465713013 + }, + "m_displayName": { + "type": "std::string", + "id": 4, + "offset": 136, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2446900370 + }, + "m_spellBase": { + "type": "std::string", + "id": 5, + "offset": 248, + "flags": 268435463, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2688054198, + "enum_options": { + "__BASECLASS": "CinematicTemplate" + } + }, + "m_effects": { + "type": "class SharedPointer", + "id": 6, + "offset": 280, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 370726379 + }, + "m_sMagicSchoolName": { + "type": "std::string", + "id": 7, + "offset": 312, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2035693400 + }, + "m_sTypeName": { + "type": "std::string", + "id": 8, + "offset": 352, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3580785905 + }, + "m_trainingCost": { + "type": "int", + "id": 9, + "offset": 384, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 982588239 + }, + "m_accuracy": { + "type": "int", + "id": 10, + "offset": 388, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1636315493 + }, + "m_baseCost": { + "type": "int", + "id": 11, + "offset": 232, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1475151502 + }, + "m_creditsCost": { + "type": "int", + "id": 12, + "offset": 236, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 715313825 + }, + "m_pvpCurrencyCost": { + "type": "int", + "id": 13, + "offset": 240, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 645595444 + }, + "m_pvpTourneyCurrencyCost": { + "type": "int", + "id": 14, + "offset": 244, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 517874954 + }, + "m_boosterPackIcon": { + "type": "std::string", + "id": 15, + "offset": 496, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3428653697 + }, + "m_validTargetSpells": { + "type": "unsigned int", + "id": 16, + "offset": 392, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2355782967 + }, + "m_PvP": { + "type": "bool", + "id": 17, + "offset": 408, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 269492361 + }, + "m_PvE": { + "type": "bool", + "id": 18, + "offset": 409, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 269492350 + }, + "m_noPvPEnchant": { + "type": "bool", + "id": 19, + "offset": 410, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 661581703 + }, + "m_noPvEEnchant": { + "type": "bool", + "id": 20, + "offset": 411, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 10144220 + }, + "m_battlegroundsOnly": { + "type": "bool", + "id": 21, + "offset": 412, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1244782419 + }, + "m_Treasure": { + "type": "bool", + "id": 22, + "offset": 413, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1749096414 + }, + "m_noDiscard": { + "type": "bool", + "id": 23, + "offset": 414, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 565749226 + }, + "m_leavesPlayWhenCast": { + "type": "bool", + "id": 24, + "offset": 532, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 698216294 + }, + "m_imageIndex": { + "type": "int", + "id": 25, + "offset": 416, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1570500405 + }, + "m_imageName": { + "type": "std::string", + "id": 26, + "offset": 424, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2391520543 + }, + "m_cloaked": { + "type": "bool", + "id": 27, + "offset": 489, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 7349510 + }, + "m_casterInvisible": { + "type": "bool", + "id": 28, + "offset": 490, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 310214650 + }, + "m_adjectives": { + "type": "std::string", + "id": 29, + "offset": 576, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2967855037 + }, + "m_spellSourceType": { + "type": "enum SpellTemplate::kSpellSourceType", + "id": 30, + "offset": 528, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 156272727, + "enum_options": { + "kCaster": 0, + "kPet": 1, + "kShadowCreature": 2, + "kWeapon": 3, + "kEquipment": 4 + } + }, + "m_cloakedName": { + "type": "std::string", + "id": 31, + "offset": 536, + "flags": 268435463, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2846679215, + "enum_options": { + "__BASECLASS": "SpellTemplate" + } + }, + "m_purchaseRequirements": { + "type": "class RequirementList*", + "id": 32, + "offset": 608, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3174641793 + }, + "m_displayRequirements": { + "type": "class RequirementList*", + "id": 33, + "offset": 840, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3646782876 + }, + "m_descriptionTrainer": { + "type": "std::string", + "id": 34, + "offset": 616, + "flags": 8388871, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1756093908 + }, + "m_descriptionCombatHUD": { + "type": "std::string", + "id": 35, + "offset": 648, + "flags": 8388871, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1631478006 + }, + "m_displayIndex": { + "type": "int", + "id": 36, + "offset": 680, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1250551048 + }, + "m_hiddenFromEffectsWindow": { + "type": "bool", + "id": 37, + "offset": 684, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1832736331 + }, + "m_ignoreCharms": { + "type": "bool", + "id": 38, + "offset": 685, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1840075893 + }, + "m_alwaysFizzle": { + "type": "bool", + "id": 39, + "offset": 686, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2030988856 + }, + "m_spellCategory": { + "type": "std::string", + "id": 40, + "offset": 688, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2472376729 + }, + "m_showPolymorphedName": { + "type": "bool", + "id": 41, + "offset": 720, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2097929096 + }, + "m_skipTruncation": { + "type": "bool", + "id": 42, + "offset": 721, + "flags": 263, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1838335249 + }, + "m_maxCopies": { + "type": "unsigned int", + "id": 43, + "offset": 724, + "flags": 263, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 403022326 + }, + "m_levelRestriction": { + "type": "int", + "id": 44, + "offset": 728, + "flags": 263, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 176502472 + }, + "m_delayEnchantment": { + "type": "bool", + "id": 45, + "offset": 732, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 191336919 + }, + "m_delayEnchantmentOrder": { + "type": "enum SpellEffect::kDelayOrder", + "id": 46, + "offset": 736, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2526055263, + "enum_options": { + "SpellEffect::kAnyOrder": 0, + "SpellEffect::kFirst": 1, + "SpellEffect::kSecond": 2 + } + }, + "m_previousSpellName": { + "type": "std::string", + "id": 47, + "offset": 744, + "flags": 268435463, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2903322585, + "enum_options": { + "__BASECLASS": "SpellTemplate" + } + }, + "m_cardFront": { + "type": "std::string", + "id": 48, + "offset": 456, + "flags": 131359, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3557598526 + }, + "m_useGloss": { + "type": "bool", + "id": 49, + "offset": 488, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 668817544 + }, + "m_ignoreDispel": { + "type": "bool", + "id": 50, + "offset": 776, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1881041624 + }, + "m_backRowFriendly": { + "type": "bool", + "id": 51, + "offset": 777, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 501584377 + }, + "m_spellRank": { + "type": "class SharedPointer", + "id": 52, + "offset": 784, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3152361374 + }, + "m_secondarySchoolName": { + "type": "std::string", + "id": 53, + "offset": 800, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1803268236 + }, + "m_spellFusion": { + "type": "unsigned int", + "id": 54, + "offset": 836, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1658928321 + }, + "m_requiredSchoolName": { + "type": "std::string", + "id": 55, + "offset": 848, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3576058981 + }, + "m_retired": { + "type": "bool", + "id": 56, + "offset": 880, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1931776834 + }, + "m_shardCost": { + "type": "int", + "id": 57, + "offset": 884, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1047182405 + }, + "m_requirements": { + "type": "class RequirementList*", + "id": 58, + "offset": 888, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2840985510 + }, + "m_nextTierSpells": { + "type": "std::string", + "id": 59, + "offset": 896, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1762416321 + } + } + }, + "807421397": { + "name": "class MyStitchEntry", + "bases": [ + "PropertyClass" + ], + "hash": 807421397, + "properties": { + "m_ageOutTime": { + "type": "unsigned int", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 819371137 + }, + "m_totalRating": { + "type": "unsigned int", + "id": 1, + "offset": 76, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 725509110 + }, + "m_numberOfRatings": { + "type": "int", + "id": 2, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1563134896 + }, + "m_flags": { + "type": "unsigned char", + "id": 3, + "offset": 84, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1431998045 + }, + "m_type": { + "type": "unsigned int", + "id": 4, + "offset": 88, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 431304463 + } + } + }, + "1653798750": { + "name": "class DynamicTriggerTemplate*", + "bases": [ + "GameObjectTemplate", + "CoreTemplate", + "PropertyClass" + ], + "hash": 1653798750, + "properties": { + "m_behaviors": { + "type": "class BehaviorTemplate*", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1197808594 + }, + "m_objectName": { + "type": "std::string", + "id": 1, + "offset": 96, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2154940147 + }, + "m_templateID": { + "type": "unsigned int", + "id": 2, + "offset": 128, + "flags": 16777223, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1286746870 + }, + "m_visualID": { + "type": "unsigned int", + "id": 3, + "offset": 132, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1118778894 + }, + "m_adjectiveList": { + "type": "std::string", + "id": 4, + "offset": 248, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 3195213318 + }, + "m_exemptFromAOI": { + "type": "bool", + "id": 5, + "offset": 240, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1457879059 + }, + "m_displayName": { + "type": "std::string", + "id": 6, + "offset": 168, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2446900370 + }, + "m_description": { + "type": "std::string", + "id": 7, + "offset": 136, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1649374815 + }, + "m_nObjectType": { + "type": "enum ObjectType", + "id": 8, + "offset": 200, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2118905880, + "enum_options": { + "OT_UNDEFINED": 0, + "OT_PLAYER": 1, + "OT_NPC": 2, + "OT_PROP": 3, + "OT_OBJECT": 4, + "OT_HOUSE": 5, + "OT_KEY": 6, + "OT_OLD_KEY": 7, + "OT_DEED": 8, + "OT_MAIL": 9, + "OT_RECIPE": 17, + "OT_EQUIP_HEAD": 10, + "OT_EQUIP_CHEST": 11, + "OT_EQUIP_LEGS": 12, + "OT_EQUIP_HANDS": 13, + "OT_EQUIP_FINGER": 14, + "OT_EQUIP_FEET": 15, + "OT_EQUIP_EAR": 16, + "OT_BUILDING_BLOCK": 18, + "OT_BUILDING_BLOCK_SOLID": 19, + "OT_GOLF": 20, + "OT_DOOR": 21, + "OT_PET": 22, + "OT_FABRIC": 23, + "OT_WINDOW": 24, + "OT_ROOF": 25, + "OT_HORSE": 26, + "OT_STRUCTURE": 27, + "OT_HOUSING_TEXTURE": 28, + "OT_PLANT": 29 + } + }, + "m_sIcon": { + "type": "std::string", + "id": 9, + "offset": 208, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306259831 + } + } + }, + "807421392": { + "name": "class MyStitchEntry*", + "bases": [ + "PropertyClass" + ], + "hash": 807421392, + "properties": { + "m_ageOutTime": { + "type": "unsigned int", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 819371137 + }, + "m_totalRating": { + "type": "unsigned int", + "id": 1, + "offset": 76, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 725509110 + }, + "m_numberOfRatings": { + "type": "int", + "id": 2, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1563134896 + }, + "m_flags": { + "type": "unsigned char", + "id": 3, + "offset": 84, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1431998045 + }, + "m_type": { + "type": "unsigned int", + "id": 4, + "offset": 88, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 431304463 + } + } + }, + "1653772158": { + "name": "class WizClientObjectItem", + "bases": [ + "ClientObject", + "CoreObject", + "PropertyClass" + ], + "hash": 1653772158, + "properties": { + "m_inactiveBehaviors": { + "type": "class SharedPointer", + "id": 0, + "offset": 224, + "flags": 31, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1850812559 + }, + "m_globalID.m_full": { + "type": "unsigned __int64", + "id": 1, + "offset": 72, + "flags": 16777247, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2312465444 + }, + "m_permID": { + "type": "unsigned __int64", + "id": 2, + "offset": 80, + "flags": 16777247, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1298909658 + }, + "m_location": { + "type": "class Vector3D", + "id": 3, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2239683611 + }, + "m_orientation": { + "type": "class Vector3D", + "id": 4, + "offset": 180, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2344058766 + }, + "m_fScale": { + "type": "float", + "id": 5, + "offset": 196, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 503137701 + }, + "m_templateID.m_full": { + "type": "unsigned __int64", + "id": 6, + "offset": 96, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 633907631 + }, + "m_debugName": { + "type": "std::string", + "id": 7, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3553984419 + }, + "m_displayKey": { + "type": "std::string", + "id": 8, + "offset": 136, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3023276954 + }, + "m_zoneTagID": { + "type": "unsigned int", + "id": 9, + "offset": 344, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 965291410 + }, + "m_speedMultiplier": { + "type": "short", + "id": 10, + "offset": 192, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 123130076 + }, + "m_nMobileID": { + "type": "unsigned short", + "id": 11, + "offset": 194, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1054318939 + }, + "m_characterId": { + "type": "gid", + "id": 12, + "offset": 440, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 210498418 + }, + "m_primaryColor": { + "type": "int", + "id": 13, + "offset": 568, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 900965981 + }, + "m_pattern": { + "type": "int", + "id": 14, + "offset": 572, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1337683384 + }, + "m_secondaryColor": { + "type": "int", + "id": 15, + "offset": 576, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1616550081 + }, + "m_displayID": { + "type": "gid", + "id": 16, + "offset": 584, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1022427803 + }, + "m_itemFlags": { + "type": "unsigned int", + "id": 17, + "offset": 592, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2004128457 + } + } + }, + "1201418614": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1201418614, + "properties": { + "m_level": { + "type": "unsigned char", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1438884808 + }, + "m_xpToLevel": { + "type": "int", + "id": 1, + "offset": 76, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1972600157 + }, + "m_levelName": { + "type": "std::string", + "id": 2, + "offset": 80, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3595417396 + } + } + }, + "366984182": { + "name": "class SharedPointer", + "bases": [ + "Window", + "PropertyClass" + ], + "hash": 366984182, + "properties": { + "m_sName": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306437263 + }, + "m_Children": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621225959 + }, + "m_Style": { + "type": "unsigned int", + "id": 2, + "offset": 152, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "SCALE_CHILDREN": 2, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "FOCUS_LOCKED": 64, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152 + } + }, + "m_Flags": { + "type": "unsigned int", + "id": 3, + "offset": 156, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } + }, + "m_Window": { + "type": "class Rect", + "id": 4, + "offset": 160, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3105139380 + }, + "m_fTargetAlpha": { + "type": "float", + "id": 5, + "offset": 212, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1809129834 + }, + "m_fDisabledAlpha": { + "type": "float", + "id": 6, + "offset": 216, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1389987675 + }, + "m_fAlpha": { + "type": "float", + "id": 7, + "offset": 208, + "flags": 65671, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 482130755 + }, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3623628394 + }, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2102211316 + }, + "m_sScript": { + "type": "std::string", + "id": 10, + "offset": 352, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1846695875 + }, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3389835433 + }, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547159940 + }, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513510520 + }, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3091503757 + } + } + }, + "1200596153": { + "name": "class RenderBehavior", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1200596153, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + } + } + }, + "2089962586": { + "name": "class SharedPointer", + "bases": [ + "MoveBehavior", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 2089962586, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_nFlags": { + "type": "unsigned int", + "id": 1, + "offset": 112, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 922328456 + }, + "m_nMoveState": { + "type": "enum MoveState", + "id": 2, + "offset": 116, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1430960270, + "enum_options": { + "MS_WALKING": 0, + "MS_RUNNING": 1, + "MS_SWIMMING": 2, + "MS_FLYING": 3, + "MS_JUMPING": 4, + "MS_FALLING": 5 + } + } + } + }, + "366622928": { + "name": "class DdWinAnimMoveZap*", + "bases": [ + "WinAnimMoveToLocationSpeed", + "WinAnimMoveToLocation", + "WindowAnimation", + "PropertyClass" + ], + "hash": 366622928, + "properties": { + "m_bUseDeepCopy": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 433380635 + }, + "m_targetLocation": { + "type": "class Vector3D", + "id": 1, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2653859938 + }, + "m_fSpeed": { + "type": "float", + "id": 2, + "offset": 96, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 503609006 + } + } + }, + "2089652934": { + "name": "class SharedPointer", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 2089652934, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_textureRemapList": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 3580415920 + } + } + }, + "366524624": { + "name": "class DdWinAnimMoveZap", + "bases": [ + "WinAnimMoveToLocationSpeed", + "WinAnimMoveToLocation", + "WindowAnimation", + "PropertyClass" + ], + "hash": 366524624, + "properties": { + "m_bUseDeepCopy": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 433380635 + }, + "m_targetLocation": { + "type": "class Vector3D", + "id": 1, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2653859938 + }, + "m_fSpeed": { + "type": "float", + "id": 2, + "offset": 96, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 503609006 + } + } + }, + "807422220": { + "name": "class PlayerControllerClient*", + "bases": [ + "PlayerController", + "MoveBehavior::Controller", + "PropertyClass" + ], + "hash": 807422220, + "properties": { + "m_bCollisionDisabled": { + "type": "bool", + "id": 0, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1732895577 + }, + "m_bVehicleMode": { + "type": "bool", + "id": 1, + "offset": 121, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1597295002 + }, + "m_fForwardModifier": { + "type": "float", + "id": 2, + "offset": 124, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1173988321 + }, + "m_fBackModifier": { + "type": "float", + "id": 3, + "offset": 128, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 148042045 + }, + "m_fStrafeModifier": { + "type": "float", + "id": 4, + "offset": 132, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 226084913 + }, + "m_fTurnModifier": { + "type": "float", + "id": 5, + "offset": 136, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2134998805 + }, + "m_fAccelerationModifier": { + "type": "float", + "id": 6, + "offset": 144, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 592902742 + }, + "m_fDecelerationModifier": { + "type": "float", + "id": 7, + "offset": 148, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1770082811 + } + } + }, + "366317956": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 366317956, + "properties": { + "m_treasureShopTitle": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3126438722 + }, + "m_treasureSpellNames": { + "type": "std::string", + "id": 1, + "offset": 104, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 3358741882 + }, + "m_crownShop": { + "type": "bool", + "id": 2, + "offset": 120, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1936888726 + }, + "m_pvpCurrencyShop": { + "type": "bool", + "id": 3, + "offset": 121, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 648643854 + }, + "m_pvpTourneyCurrencyShop": { + "type": "bool", + "id": 4, + "offset": 122, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 520923364 + } + } + }, + "1655827220": { + "name": "class std::list >", + "bases": [], + "hash": 1655827220, + "properties": {} + }, + "1201563320": { + "name": "class CameraFadeCinematicAction", + "bases": [ + "CinematicAction", + "PropertyClass" + ], + "hash": 1201563320, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_fDuration": { + "type": "float", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 598255075 + }, + "m_bCycle": { + "type": "bool", + "id": 2, + "offset": 84, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 240694213 + }, + "m_bFadeIn": { + "type": "bool", + "id": 3, + "offset": 85, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1507201372 + } + } + }, + "1655612104": { + "name": "class PetDerbyTrackDescriptor", + "bases": [ + "NodeDescriptor", + "PropertyClass" + ], + "hash": 1655612104, + "properties": { + "m_terrainType": { + "type": "enum PetDerbyTrackTerrain", + "id": 0, + "offset": 72, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2688629581, + "enum_options": { + "PDTT_Water": 1, + "PDTT_Grass": 2, + "PDTT_Clay": 3, + "PDTT_Dirt": 4, + "PDTT_Cobblestone": 0, + "PDTT_Mud": 5 + } + }, + "m_laneSwitch": { + "type": "enum PetDerbyLaneSwitch", + "id": 1, + "offset": 76, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2094800111, + "enum_options": { + "PDLS_None": 0, + "PDLS_Left": 1, + "PDLS_Right": 2, + "PDLS_Both": 3 + } + } + } + }, + "2089988868": { + "name": "class PlayerStatueSettings*", + "bases": [ + "PropertyClass" + ], + "hash": 2089988868, + "properties": { + "m_group": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2293515464 + }, + "m_name": { + "type": "std::string", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1717359772 + } + } + }, + "807565152": { + "name": "class DependentResourceContainer*", + "bases": [ + "PropertyClass" + ], + "hash": 807565152, + "properties": { + "m_dependentResourceFilename": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2968493147 + } + } + }, + "1654392749": { + "name": "class BracketUpdateMessage*", + "bases": [ + "PvPUpdateMessage", + "PropertyClass" + ], + "hash": 1654392749, + "properties": { + "m_messageType": { + "type": "int", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1531535105 + } + } + }, + "2089965014": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 2089965014, + "properties": { + "m_progressHistoryList": { + "type": "int", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1514478333 + } + } + }, + "807565142": { + "name": "class DependentResourceContainer", + "bases": [ + "PropertyClass" + ], + "hash": 807565142, + "properties": { + "m_dependentResourceFilename": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2968493147 + } + } + }, + "1202611019": { + "name": "class ArenaBonusPointsLootInfo*", + "bases": [ + "LootInfo", + "LootInfoBase", + "PropertyClass" + ], + "hash": 1202611019, + "properties": { + "m_lootType": { + "type": "enum LootInfo::LOOT_TYPE", + "id": 0, + "offset": 72, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1591891442, + "enum_options": { + "LOOT_TYPE_NONE": 0, + "LOOT_TYPE_GOLD": 1, + "LOOT_TYPE_MANA": 2, + "LOOT_TYPE_ITEM": 3, + "LOOT_TYPE_TREASURE_CARD": 4, + "LOOT_TYPE_MAGIC_XP": 5, + "LOOT_TYPE_ADD_SPELL": 6, + "LOOT_TYPE_MAX_HEALTH": 7, + "LOOT_TYPE_MAX_GOLD": 8, + "LOOT_TYPE_MAX_MANA": 9, + "LOOT_TYPE_MAX_POTION": 10, + "LOOT_TYPE_TRAINING_POINTS": 11, + "LOOT_TYPE_RECIPE": 12, + "LOOT_TYPE_CRAFTING_SLOT": 13, + "LOOT_TYPE_REAGENT": 14, + "LOOT_TYPE_PETSNACK": 15, + "LOOT_TYPE_GARDENING_XP": 16, + "LOOT_TYPE_PET_XP": 17, + "LOOT_TYPE_TREASURE_TABLE": 18, + "LOOT_TYPE_ARENA_POINTS": 19, + "LOOT_TYPE_ARENA_BONUS_POINTS": 20, + "LOOT_TYPE_GROUP": 21, + "LOOT_TYPE_FISHING_XP": 22, + "LOOT_TYPE_EVENT_CURRENCY_1": 24, + "LOOT_TYPE_EVENT_CURRENCY_2": 25, + "LOOT_TYPE_PVP_CURRENCY": 26, + "LOOT_TYPE_PVP_CURRENCY_BONUS": 27, + "LOOT_TYPE_PVP_TOURNEY_CURRENCY": 28, + "LOOT_TYPE_PVP_TOURNEY_CURRENCY_BONUS": 29, + "LOOT_TYPE_FURNITURE_ESSENCE": 30 + } + }, + "m_arenaBonusPointsAmount": { + "type": "int", + "id": 1, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 774521529 + } + } + }, + "366707306": { + "name": "class GameEffectInfoList", + "bases": [ + "PropertyClass" + ], + "hash": 366707306, + "properties": { + "m_gameEffectInfoList": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1747948740 + } + } + }, + "1202426311": { + "name": "class SG_GameEvent", + "bases": [ + "PropertyClass" + ], + "hash": 1202426311, + "properties": { + "m_eventName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3493260286 + }, + "m_actions": { + "type": "class SharedPointer", + "id": 1, + "offset": 104, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 3152419933 + } + } + }, + "1655807897": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1655807897, + "properties": { + "m_recentWizardInfoList": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 3708234369 + } + } + }, + "2089988908": { + "name": "class PlayerStatueSettings", + "bases": [ + "PropertyClass" + ], + "hash": 2089988908, + "properties": { + "m_group": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2293515464 + }, + "m_name": { + "type": "std::string", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1717359772 + } + } + }, + "807665868": { + "name": "class DespawnInfo", + "bases": [ + "PropertyClass" + ], + "hash": 807665868, + "properties": { + "m_killer": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 635022555 + }, + "m_despawnEffect": { + "type": "unsigned int", + "id": 1, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1477583404 + } + } + }, + "367284943": { + "name": "class SpellSelectionWindow", + "bases": [ + "Window", + "PropertyClass" + ], + "hash": 367284943, + "properties": { + "m_sName": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306437263 + }, + "m_Children": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621225959 + }, + "m_Style": { + "type": "unsigned int", + "id": 2, + "offset": 152, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "SCALE_CHILDREN": 2, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "FOCUS_LOCKED": 64, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152 + } + }, + "m_Flags": { + "type": "unsigned int", + "id": 3, + "offset": 156, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } + }, + "m_Window": { + "type": "class Rect", + "id": 4, + "offset": 160, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3105139380 + }, + "m_fTargetAlpha": { + "type": "float", + "id": 5, + "offset": 212, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1809129834 + }, + "m_fDisabledAlpha": { + "type": "float", + "id": 6, + "offset": 216, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1389987675 + }, + "m_fAlpha": { + "type": "float", + "id": 7, + "offset": 208, + "flags": 65671, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 482130755 + }, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3623628394 + }, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2102211316 + }, + "m_sScript": { + "type": "std::string", + "id": 10, + "offset": 352, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1846695875 + }, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3389835433 + }, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547159940 + }, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513510520 + }, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3091503757 + } + } + }, + "1203497002": { + "name": "class CollisionWorld*", + "bases": [ + "PropertyClass" + ], + "hash": 1203497002, + "properties": { + "m_World": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1731856744 + } + } + }, + "367205573": { + "name": "class SharedPointer", + "bases": [ + "GroupObserver", + "PropertyClass" + ], + "hash": 367205573, + "properties": {} + }, + "1656244364": { + "name": "class SharedPointer", + "bases": [ + "WizItemTemplate", + "ItemTemplate", + "GameObjectTemplate", + "CoreTemplate", + "PropertyClass" + ], + "hash": 1656244364, + "properties": { + "m_behaviors": { + "type": "class BehaviorTemplate*", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1197808594 + }, + "m_objectName": { + "type": "std::string", + "id": 1, + "offset": 96, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2154940147 + }, + "m_templateID": { + "type": "unsigned int", + "id": 2, + "offset": 128, + "flags": 16777223, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1286746870 + }, + "m_visualID": { + "type": "unsigned int", + "id": 3, + "offset": 132, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1118778894 + }, + "m_adjectiveList": { + "type": "std::string", + "id": 4, + "offset": 248, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 3195213318 + }, + "m_exemptFromAOI": { + "type": "bool", + "id": 5, + "offset": 240, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1457879059 + }, + "m_displayName": { + "type": "std::string", + "id": 6, + "offset": 168, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2446900370 + }, + "m_description": { + "type": "std::string", + "id": 7, + "offset": 136, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1649374815 + }, + "m_nObjectType": { + "type": "enum ObjectType", + "id": 8, + "offset": 200, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2118905880, + "enum_options": { + "OT_UNDEFINED": 0, + "OT_PLAYER": 1, + "OT_NPC": 2, + "OT_PROP": 3, + "OT_OBJECT": 4, + "OT_HOUSE": 5, + "OT_KEY": 6, + "OT_OLD_KEY": 7, + "OT_DEED": 8, + "OT_MAIL": 9, + "OT_RECIPE": 17, + "OT_EQUIP_HEAD": 10, + "OT_EQUIP_CHEST": 11, + "OT_EQUIP_LEGS": 12, + "OT_EQUIP_HANDS": 13, + "OT_EQUIP_FINGER": 14, + "OT_EQUIP_FEET": 15, + "OT_EQUIP_EAR": 16, + "OT_BUILDING_BLOCK": 18, + "OT_BUILDING_BLOCK_SOLID": 19, + "OT_GOLF": 20, + "OT_DOOR": 21, + "OT_PET": 22, + "OT_FABRIC": 23, + "OT_WINDOW": 24, + "OT_ROOF": 25, + "OT_HORSE": 26, + "OT_STRUCTURE": 27, + "OT_HOUSING_TEXTURE": 28, + "OT_PLANT": 29 + } + }, + "m_sIcon": { + "type": "std::string", + "id": 9, + "offset": 208, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306259831 + }, + "m_equipRequirements": { + "type": "class RequirementList*", + "id": 10, + "offset": 280, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2762617226 + }, + "m_purchaseRequirements": { + "type": "class RequirementList*", + "id": 11, + "offset": 288, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3174641793 + }, + "m_equipEffects": { + "type": "class GameEffectInfo*", + "id": 12, + "offset": 296, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 836628351 + }, + "m_baseCost": { + "type": "float", + "id": 13, + "offset": 312, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1565352651 + }, + "m_creditsCost": { + "type": "float", + "id": 14, + "offset": 320, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 805514974 + }, + "m_avatarInfo": { + "type": "class AvatarItemInfoBase*", + "id": 15, + "offset": 328, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2627321299 + }, + "m_avatarFlags": { + "type": "std::string", + "id": 16, + "offset": 336, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2347762759 + }, + "m_itemLimit": { + "type": "int", + "id": 17, + "offset": 316, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1799746856 + }, + "m_holidayFlag": { + "type": "std::string", + "id": 18, + "offset": 352, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2994795359 + }, + "m_itemSetBonusTemplateID": { + "type": "unsigned int", + "id": 19, + "offset": 384, + "flags": 33554439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1316835672 + }, + "m_numPrimaryColors": { + "type": "int", + "id": 20, + "offset": 428, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 981103872 + }, + "m_numSecondaryColors": { + "type": "int", + "id": 21, + "offset": 432, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1310416868 + }, + "m_numPatterns": { + "type": "int", + "id": 22, + "offset": 436, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 953162171 + }, + "m_school": { + "type": "std::string", + "id": 23, + "offset": 392, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2438566051 + }, + "m_arenaPointCost": { + "type": "int", + "id": 24, + "offset": 440, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1819621796 + }, + "m_pvpCurrencyCost": { + "type": "int", + "id": 25, + "offset": 444, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 645595444 + }, + "m_pvpTourneyCurrencyCost": { + "type": "int", + "id": 26, + "offset": 448, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 517874954 + }, + "m_rank": { + "type": "int", + "id": 27, + "offset": 424, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 219803942 + }, + "m_boyIconIndex": { + "type": "int", + "id": 28, + "offset": 452, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 802140453 + }, + "m_girlIconIndex": { + "type": "int", + "id": 29, + "offset": 456, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 832706793 + }, + "m_leashOffsetOverride": { + "type": "class SharedPointer", + "id": 30, + "offset": 464, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1692586788 + }, + "m_rarity": { + "type": "enum RarityType", + "id": 31, + "offset": 460, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2253792108, + "enum_options": { + "RT_COMMON": 0, + "RT_UNCOMMON": 1, + "RT_RARE": 2, + "RT_ULTRARARE": 3, + "RT_EPIC": 4 + } + }, + "m_lootTables": { + "type": "std::string", + "id": 32, + "offset": 488, + "flags": 268435463, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1514961588, + "enum_options": { + "__BASECLASS": "LootTable" } }, - "m_eggName": { + "m_featuredRewards": { + "type": "gid", + "id": 33, + "offset": 504, + "flags": 33554439, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1360288832 + }, + "m_nif": { + "type": "std::string", + "id": 34, + "offset": 520, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1764743064 + }, + "m_boosterPackType": { + "type": "enum BoosterPackTemplate::BoosterPackType", + "id": 35, + "offset": 480, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2575057189, + "enum_options": { + "TreasureCards": 0, + "Reagents": 1, + "Snacks": 2, + "GardenTreasureCards": 3, + "Items": 4, + "MixOfVarious": 5, + "RockhammerJewelPack": 6, + "PurreauPack": 7, + "SchoolJewelPack": 8 + } + } + } + }, + "1203072571": { + "name": "class GearVaultBehavior*", + "bases": [ + "GearVaultBehaviorBase", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1203072571, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_gearList": { + "type": "std::string", + "id": 1, + "offset": 112, + "flags": 65567, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1498902582 + }, + "m_gearData": { + "type": "std::string", + "id": 2, + "offset": 128, + "flags": 551, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1498606388 + } + } + }, + "2092894194": { + "name": "class BracketRewards*", + "bases": [ + "PropertyClass" + ], + "hash": 2092894194, + "properties": { + "m_place": { + "type": "int", + "id": 0, + "offset": 72, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 806257663 + }, + "m_lootTableNameList": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2465726014 + }, + "m_lootTableNameBlob": { + "type": "std::string", + "id": 2, + "offset": 96, + "flags": 551, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2465369761 + }, + "m_templateIDList": { + "type": "unsigned int", + "id": 3, + "offset": 128, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1639803570 + }, + "m_templateIDListBlob": { + "type": "std::string", + "id": 4, + "offset": 144, + "flags": 551, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3246130975 + }, + "m_rewardDescriptor": { + "type": "std::string", + "id": 5, + "offset": 176, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1935206431 + } + } + }, + "813925295": { + "name": "class MiniMapWindow*", + "bases": [ + "Window", + "PropertyClass" + ], + "hash": 813925295, + "properties": { + "m_sName": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306437263 + }, + "m_Children": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621225959 + }, + "m_Style": { + "type": "unsigned int", + "id": 2, + "offset": 152, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "SCALE_CHILDREN": 2, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "FOCUS_LOCKED": 64, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152 + } + }, + "m_Flags": { + "type": "unsigned int", + "id": 3, + "offset": 156, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } + }, + "m_Window": { + "type": "class Rect", + "id": 4, + "offset": 160, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3105139380 + }, + "m_fTargetAlpha": { + "type": "float", + "id": 5, + "offset": 212, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1809129834 + }, + "m_fDisabledAlpha": { + "type": "float", + "id": 6, + "offset": 216, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1389987675 + }, + "m_fAlpha": { + "type": "float", + "id": 7, + "offset": 208, + "flags": 65671, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 482130755 + }, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3623628394 + }, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2102211316 + }, + "m_sScript": { + "type": "std::string", + "id": 10, + "offset": 352, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1846695875 + }, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3389835433 + }, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547159940 + }, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513510520 + }, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3091503757 + } + } + }, + "1655830989": { + "name": "class SharedPointer", + "bases": [ + "GameEffectBase", + "PropertyClass" + ], + "hash": 1655830989, + "properties": { + "m_currentTickCount": { + "type": "double", + "id": 0, + "offset": 80, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2533274692 + }, + "m_effectNameID": { + "type": "unsigned int", + "id": 1, + "offset": 96, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1204067144 + }, + "m_bIsOnPet": { + "type": "bool", + "id": 2, + "offset": 73, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 522593303 + }, + "m_originatorID": { + "type": "gid", + "id": 3, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1131810019 + }, + "m_itemSlotID": { + "type": "unsigned int", + "id": 4, + "offset": 112, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1895747595 + }, + "m_internalID": { + "type": "int", + "id": 5, + "offset": 92, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1643137924 + }, + "m_endTime": { + "type": "unsigned int", + "id": 6, + "offset": 88, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 716479635 + } + } + }, + "2092894034": { + "name": "class BracketRewards", + "bases": [ + "PropertyClass" + ], + "hash": 2092894034, + "properties": { + "m_place": { + "type": "int", + "id": 0, + "offset": 72, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 806257663 + }, + "m_lootTableNameList": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2465726014 + }, + "m_lootTableNameBlob": { + "type": "std::string", + "id": 2, + "offset": 96, + "flags": 551, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2465369761 + }, + "m_templateIDList": { + "type": "unsigned int", + "id": 3, + "offset": 128, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1639803570 + }, + "m_templateIDListBlob": { "type": "std::string", - "id": 6, + "id": 4, + "offset": 144, + "flags": 551, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3246130975 + }, + "m_rewardDescriptor": { + "type": "std::string", + "id": 5, "offset": 176, - "flags": 8388615, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1732162479 + "hash": 1935206431 + } + } + }, + "811054127": { + "name": "class PvPLobbyOption", + "bases": [ + "ServiceOptionBase", + "PropertyClass" + ], + "hash": 811054127, + "properties": { + "m_serviceName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2206028813 }, - "m_eggColor": { - "type": "int", - "id": 7, - "offset": 208, + "m_iconKey": { + "type": "std::string", + "id": 1, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2457138637 + }, + "m_displayKey": { + "type": "std::string", + "id": 2, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3023276954 + }, + "m_serviceIndex": { + "type": "unsigned int", + "id": 3, + "offset": 204, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2103126710 + }, + "m_forceInteract": { + "type": "bool", + "id": 4, + "offset": 200, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1705789564 + }, + "m_tournamentName": { + "type": "std::string", + "id": 5, + "offset": 216, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3329241865 + } + } + }, + "2091674507": { + "name": "class SharedPointer", + "bases": [ + "PositionalSoundBehaviorTemplate", + "SoundBehaviorTemplate", + "AreaBehaviorTemplate", + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 2091674507, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1279450220 + "hash": 3130754092 }, - "m_fScale": { + "m_radius": { "type": "float", - "id": 8, - "offset": 212, + "id": 1, + "offset": 120, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 503137701, + "hash": 989410271 + }, + "m_category": { + "type": "enum AudioCategory", + "id": 2, + "offset": 124, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2951251982, "enum_options": { - "__DEFAULT": "1.0" + "AudioCategory_Irrelevent": 0, + "AudioCategory_Accoustic": 1, + "AudioCategory_Noise": 2, + "AudioCategory_Music": 3, + "AudioCategory_MusicAtSFXVolume": 4, + "AudioCategory_Dialog": 5, + "AudioCategory_UI": 6, + "AudioCategory_NoiseAtMusicVolume": 7 } }, - "m_sHatchRate": { + "m_exclusive": { + "type": "bool", + "id": 3, + "offset": 128, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 824383403 + }, + "m_active": { + "type": "bool", + "id": 4, + "offset": 129, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 239335471 + }, + "m_enableReqs": { + "type": "class SharedPointer", + "id": 5, + "offset": 136, + "flags": 263, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3158020443 + }, + "m_trackFilenameList": { "type": "std::string", + "id": 6, + "offset": 152, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2531081709 + }, + "m_playList": { + "type": "class PlayListEntry*", + "id": 7, + "offset": 176, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 3907873161 + }, + "m_priority": { + "type": "int", + "id": 8, + "offset": 208, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1235205852 + }, + "m_volume": { + "type": "float", "id": 9, + "offset": 200, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1162855023 + }, + "m_loopCount": { + "type": "int", + "id": 10, + "offset": 204, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 865634717 + }, + "m_progression": { + "type": "enum PlayList::Progression", + "id": 11, + "offset": 220, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3279400238, + "enum_options": { + "Sequence": 0, + "Random": 1, + "SequenceOnceOnly": 2, + "RandomNoRepeat": 3 + } + }, + "m_progressMin": { + "type": "float", + "id": 12, + "offset": 212, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1497550192 + }, + "m_progressMax": { + "type": "float", + "id": 13, "offset": 216, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1870311714 + "hash": 1497549938 }, - "m_wowFactor": { + "m_audioFilterSet": { "type": "unsigned int", - "id": 10, - "offset": 248, + "id": 14, + "offset": 224, + "flags": 33554439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 831339825 + }, + "m_animationNameFilter": { + "type": "std::string", + "id": 15, + "offset": 232, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1232905609 + "hash": 2292854242 }, - "m_flyingOffset": { + "m_functionallabel": { + "type": "std::string", + "id": 16, + "offset": 264, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3589331278 + }, + "m_innerRadius": { "type": "float", - "id": 11, - "offset": 252, + "id": 17, + "offset": 296, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1899002567 + "hash": 686816091 }, - "m_maxStats": { - "type": "class PetStat", - "id": 12, - "offset": 256, + "m_inverted": { + "type": "bool", + "id": 18, + "offset": 300, "flags": 7, - "container": "List", + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1034821044 + }, + "m_fRangeScale": { + "type": "float", + "id": 19, + "offset": 304, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1749294034 + }, + "m_fAttenuationFactor": { + "type": "float", + "id": 20, + "offset": 308, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 273292776 + }, + "m_eAttenuationType": { + "type": "enum PositionInfoAttenuationType", + "id": 21, + "offset": 312, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2427193304, + "enum_options": { + "Standard": 0, + "Unit Range Power": 1 + } + }, + "m_vPositions": { + "type": "class Vector3D", + "id": 22, + "offset": 320, + "flags": 7, + "container": "Vector", "dynamic": true, "singleton": false, "pointer": false, - "hash": 1846363080 + "hash": 3599600160 + } + } + }, + "367284967": { + "name": "class SpellSelectionWindow*", + "bases": [ + "Window", + "PropertyClass" + ], + "hash": 367284967, + "properties": { + "m_sName": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306437263 }, - "m_startStats": { - "type": "class PetStat", + "m_Children": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621225959 + }, + "m_Style": { + "type": "unsigned int", + "id": 2, + "offset": 152, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "SCALE_CHILDREN": 2, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "FOCUS_LOCKED": 64, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152 + } + }, + "m_Flags": { + "type": "unsigned int", + "id": 3, + "offset": 156, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } + }, + "m_Window": { + "type": "class Rect", + "id": 4, + "offset": 160, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3105139380 + }, + "m_fTargetAlpha": { + "type": "float", + "id": 5, + "offset": 212, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1809129834 + }, + "m_fDisabledAlpha": { + "type": "float", + "id": 6, + "offset": 216, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1389987675 + }, + "m_fAlpha": { + "type": "float", + "id": 7, + "offset": 208, + "flags": 65671, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 482130755 + }, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3623628394 + }, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2102211316 + }, + "m_sScript": { + "type": "std::string", + "id": 10, + "offset": 352, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1846695875 + }, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3389835433 + }, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547159940 + }, + "m_sTip": { + "type": "std::wstring", "id": 13, - "offset": 272, + "offset": 392, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513510520 + }, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3091503757 + } + } + }, + "809144977": { + "name": "class ObjStateCategory*", + "bases": [ + "PropertyClass" + ], + "hash": 809144977, + "properties": { + "m_categoryName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3591157466 + }, + "m_states": { + "type": "class ObjState*", + "id": 1, + "offset": 176, "flags": 7, "container": "List", "dynamic": true, "singleton": false, + "pointer": true, + "hash": 2490652686 + }, + "m_startState": { + "type": "std::string", + "id": 2, + "offset": 112, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, "pointer": false, - "hash": 2360362512 + "hash": 2166880458 }, - "m_talents": { + "m_baseState": { "type": "std::string", - "id": 14, - "offset": 288, - "flags": 268435463, + "id": 3, + "offset": 144, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2949363223 + } + } + }, + "1204566674": { + "name": "class SharedPointer", + "bases": [ + "TreasureCardVaultBehaviorBase", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1204566674, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_spellData": { + "type": "std::string", + "id": 1, + "offset": 128, + "flags": 575, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2688126101 + } + } + }, + "808843619": { + "name": "class PetGameKioskOption*", + "bases": [ + "ServiceOptionBase", + "PropertyClass" + ], + "hash": 808843619, + "properties": { + "m_serviceName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2206028813 + }, + "m_iconKey": { + "type": "std::string", + "id": 1, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2457138637 + }, + "m_displayKey": { + "type": "std::string", + "id": 2, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3023276954 + }, + "m_serviceIndex": { + "type": "unsigned int", + "id": 3, + "offset": 204, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2103126710 + }, + "m_forceInteract": { + "type": "bool", + "id": 4, + "offset": 200, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1705789564 + } + } + }, + "1656297832": { + "name": "class SharedPointer", + "bases": [ + "ObstacleCourseObstacleBehaviorTemplate", + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 1656297832, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + }, + "m_width": { + "type": "double", + "id": 1, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2712265261 + }, + "m_height": { + "type": "double", + "id": 2, + "offset": 128, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2410586086 + } + } + }, + "1203497098": { + "name": "class CollisionWorld", + "bases": [ + "PropertyClass" + ], + "hash": 1203497098, + "properties": { + "m_World": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 7, "container": "List", "dynamic": true, "singleton": false, + "pointer": true, + "hash": 1731856744 + } + } + }, + "808508263": { + "name": "class ReqHangingOverTime", + "bases": [ + "ConditionalSpellEffectRequirement", + "Requirement", + "PropertyClass" + ], + "hash": 808508263, + "properties": { + "m_applyNOT": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, "pointer": false, - "hash": 1548787382, + "hash": 1746328074, "enum_options": { - "__BASECLASS": "PetTalentTemplate" + "__DEFAULT": 0 } }, - "m_derbyTalents": { + "m_operator": { + "type": "enum Requirement::Operator", + "id": 1, + "offset": 76, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2672792317, + "enum_options": { + "ROP_AND": 0, + "ROP_OR": 1, + "__DEFAULT": "ROP_AND" + } + }, + "m_targetType": { + "type": "enum ConditionalSpellEffectRequirement::RequirementTarget", + "id": 2, + "offset": 80, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547737902, + "enum_options": { + "RT_Caster": 0, + "RT_Target": 1 + } + }, + "m_disposition": { + "type": "enum SpellEffect::kHangingDisposition", + "id": 3, + "offset": 88, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1904841031, + "enum_options": { + "SpellEffect::kBoth": 0, + "SpellEffect::kBeneficial": 1, + "SpellEffect::kHarmful": 2 + } + }, + "m_minCount": { + "type": "int", + "id": 4, + "offset": 92, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1486503815 + }, + "m_maxCount": { + "type": "int", + "id": 5, + "offset": 96, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 136048585 + } + } + }, + "370924093": { + "name": "class SharedPointer", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 370924093, + "properties": { + "m_behaviorName": { "type": "std::string", - "id": 15, - "offset": 320, + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + }, + "m_lotWorldZone": { + "type": "std::string", + "id": 1, + "offset": 120, "flags": 268435463, - "container": "List", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 2359224108, + "hash": 3026711022, "enum_options": { - "__BASECLASS": "PetDerbyTalentTemplate" + "__BASECLASS": "ZoneData" } }, - "m_Levels": { - "type": "class PetLevelInfo", - "id": 16, - "offset": 304, + "m_itemLimit": { + "type": "int", + "id": 2, + "offset": 152, "flags": 7, - "container": "List", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 3555902999 + "hash": 1799746856 }, - "m_conversionStats": { - "type": "class PetStat", - "id": 17, - "offset": 336, - "flags": 7, - "container": "List", - "dynamic": true, + "m_structureTemplateID": { + "type": "unsigned int", + "id": 3, + "offset": 156, + "flags": 33554439, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 2003448008 + "hash": 1037379271 }, - "m_conversionTalents": { + "m_previewWorldZone": { "type": "std::string", - "id": 18, - "offset": 352, + "id": 4, + "offset": 160, "flags": 268435463, - "container": "List", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 2717498332, + "hash": 2100214145, "enum_options": { - "__BASECLASS": "PetTalentTemplate" + "__BASECLASS": "ZoneData" } }, - "m_conversionLevel": { + "m_initialItemLayoutFile": { + "type": "std::string", + "id": 5, + "offset": 192, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1741580370 + }, + "m_alternateDeedTemplateID": { + "type": "unsigned int", + "id": 6, + "offset": 224, + "flags": 33554439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 264986664 + }, + "m_castleBlockLimit": { + "type": "int", + "id": 7, + "offset": 228, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 276037600 + } + } + }, + "808134519": { + "name": "class PetDerbyRacerState", + "bases": [ + "PropertyClass" + ], + "hash": 808134519, + "properties": { + "m_playerOID": { + "type": "gid", + "id": 0, + "offset": 88, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 578546081 + }, + "m_currentTerrain": { + "type": "enum PetDerbyTrackTerrain", + "id": 1, + "offset": 100, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3426350446, + "enum_options": { + "PDTT_Cobblestone": 0, + "PDTT_Water": 1, + "PDTT_Grass": 2, + "PDTT_Clay": 3, + "PDTT_Dirt": 4, + "PDTT_Mud": 5 + } + }, + "m_currentLane": { + "type": "int", + "id": 2, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1255984189 + }, + "m_currentLap": { + "type": "unsigned int", + "id": 3, + "offset": 120, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2006580429 + }, + "m_indexIntoArray": { "type": "unsigned char", - "id": 19, - "offset": 368, + "id": 4, + "offset": 96, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1554314337 + } + } + }, + "1656398536": { + "name": "class PetDerbyTrackDescriptor*", + "bases": [ + "NodeDescriptor", + "PropertyClass" + ], + "hash": 1656398536, + "properties": { + "m_terrainType": { + "type": "enum PetDerbyTrackTerrain", + "id": 0, + "offset": 72, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2688629581, + "enum_options": { + "PDTT_Water": 1, + "PDTT_Grass": 2, + "PDTT_Clay": 3, + "PDTT_Dirt": 4, + "PDTT_Cobblestone": 0, + "PDTT_Mud": 5 + } + }, + "m_laneSwitch": { + "type": "enum PetDerbyLaneSwitch", + "id": 1, + "offset": 76, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2094800111, + "enum_options": { + "PDLS_None": 0, + "PDLS_Left": 1, + "PDLS_Right": 2, + "PDLS_Both": 3 + } + } + } + }, + "2093751440": { + "name": "class SG_GameAction", + "bases": [ + "PropertyClass" + ], + "hash": 2093751440, + "properties": { + "m_target": { + "type": "enum SG_GameAction::SG_Target", + "id": 0, + "offset": 72, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1166870973, + "enum_options": { + "Target_Ball": 0, + "Target_Self": 1, + "Target_Connections": 2, + "__DEFAULT": "Target_Ball" + } + } + } + }, + "369281133": { + "name": "class SharedPointer", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 369281133, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 941047662 + "hash": 3130754092 }, - "m_conversionXP": { + "m_kPathType": { + "type": "enum PathBehaviorTemplate::PathType", + "id": 1, + "offset": 120, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2890959924, + "enum_options": { + "PT_LOOP": 0, + "PT_CHAIN": 1, + "PT_RANDOM": 2 + } + }, + "m_pathID": { + "type": "gid", + "id": 2, + "offset": 128, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 821494322 + }, + "m_nPathDirection": { + "type": "int", + "id": 3, + "offset": 136, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2081830230, + "enum_options": { + "__DEFAULT": 1 + } + }, + "m_actionList": { + "type": "class SharedPointer", + "id": 4, + "offset": 144, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2665183795 + }, + "m_pauseChance": { "type": "unsigned int", - "id": 20, - "offset": 372, + "id": 5, + "offset": 160, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2284347003 + "hash": 821317997 }, - "m_favoriteSnackCategories": { + "m_timeToPause": { + "type": "float", + "id": 6, + "offset": 164, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 408413991 + } + } + }, + "808108408": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 808108408, + "properties": { + "m_teamHelpWorldInfoList": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2354245339 + } + } + }, + "2093751435": { + "name": "class SG_GameAction*", + "bases": [ + "PropertyClass" + ], + "hash": 2093751435, + "properties": { + "m_target": { + "type": "enum SG_GameAction::SG_Target", + "id": 0, + "offset": 72, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1166870973, + "enum_options": { + "Target_Ball": 0, + "Target_Self": 1, + "Target_Connections": 2, + "__DEFAULT": "Target_Ball" + } + } + } + }, + "367564844": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 367564844, + "properties": { + "m_sFallbackPage": { "type": "std::string", - "id": 21, - "offset": 376, + "id": 0, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": true, + "pointer": false, + "hash": 1789796475 + }, + "m_entries": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, "flags": 7, "container": "List", "dynamic": true, + "singleton": true, + "pointer": true, + "hash": 1210334404 + } + } + }, + "1214880889": { + "name": "class SpeedEffect*", + "bases": [ + "GameEffectBase", + "PropertyClass" + ], + "hash": 1214880889, + "properties": { + "m_currentTickCount": { + "type": "double", + "id": 0, + "offset": 80, + "flags": 63, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 3317721809 + "hash": 2533274692 }, - "m_jumpSound": { + "m_effectNameID": { + "type": "unsigned int", + "id": 1, + "offset": 96, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1204067144 + }, + "m_bIsOnPet": { + "type": "bool", + "id": 2, + "offset": 73, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 522593303 + }, + "m_originatorID": { + "type": "gid", + "id": 3, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1131810019 + }, + "m_itemSlotID": { + "type": "unsigned int", + "id": 4, + "offset": 112, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1895747595 + }, + "m_internalID": { + "type": "int", + "id": 5, + "offset": 92, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1643137924 + }, + "m_endTime": { + "type": "unsigned int", + "id": 6, + "offset": 88, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 716479635 + }, + "m_speedMultiplier": { + "type": "int", + "id": 7, + "offset": 128, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 32503058 + } + } + }, + "367345369": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 367345369, + "properties": { + "m_stateType": { "type": "std::string", - "id": 22, - "offset": 392, - "flags": 131079, + "id": 0, + "offset": 112, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2493302912 + "hash": 2945167934 }, - "m_duckSound": { + "m_stateName": { "type": "std::string", - "id": 23, - "offset": 424, - "flags": 131079, + "id": 1, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3426875339 + "hash": 2944926077 }, - "m_morphingExceptions": { - "type": "class MorphingException", - "id": 24, - "offset": 456, + "m_transitions": { + "type": "class ObjStateTransition*", + "id": 2, + "offset": 144, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 3218935105 + }, + "m_forcedStates": { + "type": "class ForcedStateInfo*", + "id": 3, + "offset": 320, "flags": 7, "container": "List", "dynamic": true, "singleton": false, + "pointer": true, + "hash": 3462215437 + }, + "m_autoTransition": { + "type": "bool", + "id": 4, + "offset": 188, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, "pointer": false, - "hash": 2719456886 + "hash": 580653367 }, - "m_hatchesAsID": { - "type": "gid", - "id": 25, - "offset": 472, - "flags": 33554439, + "m_transitionTime": { + "type": "float", + "id": 5, + "offset": 192, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2010028089 + "hash": 1542232785 }, - "m_guaranteedTalents": { + "m_autoState": { "type": "std::string", - "id": 26, - "offset": 480, - "flags": 268435463, + "id": 6, + "offset": 200, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2495723957 + }, + "m_allowedActions": { + "type": "std::string", + "id": 7, + "offset": 240, + "flags": 7, "container": "List", "dynamic": true, "singleton": false, "pointer": false, - "hash": 2876819510, - "enum_options": { - "__BASECLASS": "PetTalentTemplate" - } + "hash": 1696631188 }, - "m_guaranteedDerbyTalents": { + "m_disallowedActions": { "type": "std::string", - "id": 27, - "offset": 496, - "flags": 268435463, + "id": 8, + "offset": 256, + "flags": 7, "container": "List", "dynamic": true, "singleton": false, "pointer": false, - "hash": 1658650796, - "enum_options": { - "__BASECLASS": "PetDerbyTalentTemplate" - } + "hash": 1878482772 }, - "m_hideName": { + "m_blockedStates": { + "type": "std::string", + "id": 9, + "offset": 288, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2730681379 + }, + "m_privateState": { "type": "bool", - "id": 28, - "offset": 516, + "id": 10, + "offset": 176, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 645410894 + "hash": 984277039 }, - "m_houseGuestOpacity": { + "m_fallbackPrevious": { + "type": "bool", + "id": 11, + "offset": 232, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 152378144 + }, + "m_postStateEvents": { + "type": "bool", + "id": 12, + "offset": 233, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1191427919 + }, + "m_blockMovement": { + "type": "bool", + "id": 13, + "offset": 177, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1121175209 + }, + "m_blockMoveControl": { + "type": "bool", + "id": 14, + "offset": 178, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 421629846 + }, + "m_haltMovement": { + "type": "bool", + "id": 15, + "offset": 179, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 770740551 + }, + "m_checkProximity": { + "type": "bool", + "id": 16, + "offset": 181, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1612279270 + }, + "m_proximityOverride": { "type": "float", - "id": 29, - "offset": 520, + "id": 17, + "offset": 184, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 805760636, + "hash": 1963277868 + }, + "m_showDebug": { + "type": "bool", + "id": 18, + "offset": 180, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2109281211 + }, + "m_particles": { + "type": "class StateAssetInfo*", + "id": 19, + "offset": 336, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2185858754 + }, + "m_sounds": { + "type": "class StateAssetInfo*", + "id": 20, + "offset": 352, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2925617751 + }, + "m_animations": { + "type": "class StateAssetInfo*", + "id": 21, + "offset": 368, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 3503258990 + }, + "m_reinteract": { + "type": "bool", + "id": 22, + "offset": 392, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2149441988 + }, + "m_muteMusic": { + "type": "bool", + "id": 23, + "offset": 393, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 431520495 + } + } + }, + "1667523383": { + "name": "class AvatarOptionBase", + "bases": [ + "PropertyClass" + ], + "hash": 1667523383, + "properties": { + "m_conditionFlags": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2483653903 + } + } + }, + "1208136751": { + "name": "class HaltCinematicAction*", + "bases": [ + "CinematicAction", + "PropertyClass" + ], + "hash": 1208136751, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + } + } + }, + "367311734": { + "name": "class WanderMovementBehaviorTemplate", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 367311734, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + }, + "m_movementSpeed": { + "type": "float", + "id": 1, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 769135219 + } + } + }, + "1663618278": { + "name": "class PipControl*", + "bases": [ + "Window", + "PropertyClass" + ], + "hash": 1663618278, + "properties": { + "m_sName": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306437263 + }, + "m_Children": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621225959 + }, + "m_Style": { + "type": "unsigned int", + "id": 2, + "offset": 152, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 983582334, "enum_options": { - "__DEFAULT": "1.0" + "HAS_BACK": 1, + "SCALE_CHILDREN": 2, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "FOCUS_LOCKED": 64, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152 } }, - "m_hatchmakingInitalCooldownTime": { + "m_Flags": { "type": "unsigned int", - "id": 30, - "offset": 524, + "id": 3, + "offset": 156, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } + }, + "m_Window": { + "type": "class Rect", + "id": 4, + "offset": 160, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3105139380 + }, + "m_fTargetAlpha": { + "type": "float", + "id": 5, + "offset": 212, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1809129834 + }, + "m_fDisabledAlpha": { + "type": "float", + "id": 6, + "offset": 216, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1389987675 + }, + "m_fAlpha": { + "type": "float", + "id": 7, + "offset": 208, + "flags": 65671, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 482130755 + }, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3623628394 + }, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2102211316 + }, + "m_sScript": { + "type": "std::string", + "id": 10, + "offset": 352, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1846695875 + }, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3389835433 + }, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547159940 + }, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513510520 + }, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3091503757 + } + } + }, + "1206915484": { + "name": "enum BattlegroundPlayerStats::PlayerTeamEnum", + "bases": [], + "hash": 1206915484, + "properties": {} + }, + "2094236365": { + "name": "class HousingObjectState*", + "bases": [ + "PropertyClass" + ], + "hash": 2094236365, + "properties": { + "m_id": { + "type": "unsigned int", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2301988666 + }, + "m_stateID": { + "type": "unsigned int", + "id": 1, + "offset": 76, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 724960897, - "enum_options": { - "__DEFAULT": 0 - } + "hash": 1849561019 + } + } + }, + "808633172": { + "name": "class RemoveMatchUpdate", + "bases": [ + "TournamentUpdate", + "PropertyClass" + ], + "hash": 808633172, + "properties": { + "m_matchID": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1757621298 + } + } + }, + "1660963204": { + "name": "class RequirementFailNotification*", + "bases": [ + "ServiceOptionBase", + "PropertyClass" + ], + "hash": 1660963204, + "properties": { + "m_serviceName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2206028813 }, - "m_hatchmakingMaximumHatches": { - "type": "unsigned int", - "id": 31, - "offset": 528, - "flags": 7, + "m_iconKey": { + "type": "std::string", + "id": 1, + "offset": 168, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1142581578, - "enum_options": { - "__DEFAULT": 0 - } + "hash": 2457138637 }, - "m_excludeFromHatchOfTheDay": { - "type": "bool", - "id": 32, - "offset": 532, - "flags": 7, + "m_displayKey": { + "type": "std::string", + "id": 2, + "offset": 104, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1127631469, - "enum_options": { - "__DEFAULT": 0 - } + "hash": 3023276954 }, - "m_exclusivePet": { - "type": "bool", - "id": 33, - "offset": 533, - "flags": 7, + "m_serviceIndex": { + "type": "unsigned int", + "id": 3, + "offset": 204, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1328949460, - "enum_options": { - "__DEFAULT": 0 - } + "hash": 2103126710 }, - "m_animationEventList": { - "type": "class SharedPointer", - "id": 34, - "offset": 536, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2858101335 - } - } - }, - "1630864175": { - "name": "class WizBangTemplate*", - "bases": [ - "PropertyClass" - ], - "hash": 1630864175, - "properties": { - "m_name": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, + "m_forceInteract": { + "type": "bool", + "id": 4, + "offset": 200, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1717359772 + "hash": 1705789564 }, - "m_source": { + "m_failureMessage": { "type": "std::string", - "id": 1, - "offset": 104, - "flags": 131079, + "id": 5, + "offset": 224, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2453267148 + "hash": 1882376712 } } }, - "404939124": { - "name": "class WizAvatarItemInfo", + "1205782502": { + "name": "enum BaseEffectCinematicAction::kEffectRelative", + "bases": [], + "hash": 1205782502, + "properties": {} + }, + "2094058284": { + "name": "class SharedPointer", "bases": [ - "AvatarItemInfo", - "AvatarItemInfoBase", + "CoreTemplate", "PropertyClass" ], - "hash": 404939124, + "hash": 2094058284, "properties": { - "m_partName": { - "type": "std::string", + "m_behaviors": { + "type": "class BehaviorTemplate*", "id": 0, "offset": 72, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "Vector", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 2609631923 + "pointer": true, + "hash": 1197808594 }, - "m_slotName": { - "type": "std::string", + "m_templateID": { + "type": "unsigned int", "id": 1, - "offset": 104, + "offset": 96, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2819781566 + "hash": 1286746870 }, - "m_flags": { + "m_debugName": { "type": "std::string", "id": 2, - "offset": 144, - "flags": 7, - "container": "List", - "dynamic": true, + "offset": 104, + "flags": 134217735, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 2292098216 + "hash": 3553984419 }, - "m_options": { - "type": "class SharedPointer", + "m_displayKey": { + "type": "std::string", "id": 3, - "offset": 160, - "flags": 7, - "container": "List", - "dynamic": true, + "offset": 136, + "flags": 8388615, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2499357824 + "pointer": false, + "hash": 3023276954 }, - "m_textureOptions": { - "type": "class SharedPointer", + "m_adjectives": { + "type": "std::string", "id": 4, - "offset": 176, + "offset": 168, "flags": 7, "container": "List", "dynamic": true, "singleton": false, - "pointer": true, - "hash": 2667548348 + "pointer": false, + "hash": 2967855037 }, - "m_defaultOption": { - "type": "class SharedPointer", + "m_primaryIngredient": { + "type": "class SpellIngredient*", "id": 5, - "offset": 192, + "offset": 184, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": true, - "hash": 2436336754 + "hash": 1337011809 }, - "m_defaultTextureOption": { - "type": "class SharedPointer", + "m_secondaryIngredient": { + "type": "class SpellIngredient*", "id": 6, - "offset": 208, + "offset": 192, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": true, - "hash": 2712636654 + "hash": 2076393285 } } }, - "1976987344": { - "name": "class ClientActorDeathCinematicAction*", + "1660205564": { + "name": "class RemoveHangingEffectCinematicAction", "bases": [ - "ActorDeathCinematicAction", "ActorCinematicAction", "CinematicAction", "PropertyClass" ], - "hash": 1976987344, + "hash": 1660205564, "properties": { "m_timeOffset": { "type": "float", @@ -525814,16 +337798,27 @@ "singleton": false, "pointer": false, "hash": 2285866132 + }, + "m_cloaked": { + "type": "bool", + "id": 2, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 7349510 } } }, - "806171162": { - "name": "class ObstacleCourseObstacleBehaviorTemplate", + "1205539138": { + "name": "class BadgeBehaviorTemplate*", "bases": [ "BehaviorTemplate", "PropertyClass" ], - "hash": 806171162, + "hash": 1205539138, "properties": { "m_behaviorName": { "type": "std::string", @@ -525838,70 +337833,45 @@ } } }, - "1592381020": { - "name": "class RegisterActorCinematicAction*", + "808838995": { + "name": "class MyStitchEntryList", "bases": [ - "ActorCinematicAction", - "CinematicAction", "PropertyClass" ], - "hash": 1592381020, + "hash": 808838995, "properties": { - "m_timeOffset": { - "type": "float", + "m_myStitchEntryList": { + "type": "class SharedPointer", "id": 0, "offset": 72, "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - }, - "m_zoneTag": { - "type": "std::string", - "id": 2, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 3405382643 + "pointer": true, + "hash": 2621117270 }, - "m_bStartHidden": { + "m_hasEventJudgesChoiceAvailable": { "type": "bool", - "id": 3, - "offset": 152, + "id": 1, + "offset": 88, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1939845615 + "hash": 1875999071 } } }, - "405684863": { - "name": "class ClientMakeTargetableCinematicAction", + "1660057489": { + "name": "class SharedPointer", "bases": [ - "MakeTargetableCinematicAction", - "ActorCinematicAction", + "SetBottomTeamCinematicAction", "CinematicAction", "PropertyClass" ], - "hash": 405684863, + "hash": 1660057489, "properties": { "m_timeOffset": { "type": "float", @@ -525914,8 +337884,8 @@ "pointer": false, "hash": 2237098605 }, - "m_actor": { - "type": "std::string", + "m_interpDuration": { + "type": "float", "id": 1, "offset": 80, "flags": 7, @@ -525923,163 +337893,179 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 2285866132 - } - } - }, - "1977648729": { - "name": "class ZoneTokenTrackingBehaviorTemplate*", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 1977648729, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - } - } - }, - "807066564": { - "name": "class ClientClearCameraMappingCinematicAction", - "bases": [ - "ClearCameraMappingCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 807066564, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 + "hash": 2237711951 } } }, - "1568928931": { - "name": "class SharedPointer", + "1205084658": { + "name": "class SharedPointer", "bases": [ - "StatisticEffect", - "GameEffectBase", + "DerbyRemoveAction", + "DerbyEffect", "PropertyClass" ], - "hash": 1568928931, + "hash": 1205084658, "properties": { - "m_currentTickCount": { - "type": "double", + "m_buffType": { + "type": "enum DerbyTalentBuffType", "id": 0, - "offset": 80, - "flags": 63, + "offset": 92, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2533274692 + "hash": 1149251982, + "enum_options": { + "Buff": 0, + "Debuff": 1, + "Neither": 2 + } }, - "m_effectNameID": { - "type": "unsigned int", + "m_kTarget": { + "type": "enum DerbyTargetType", "id": 1, "offset": 96, - "flags": 63, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1204067144 + "hash": 1807803351, + "enum_options": { + "kTargetInFront": 0, + "kTargetBehind": 1, + "kTargetFirst": 2, + "kTargetSelf": 3, + "kTargetAll": 4, + "kTargetLast": 5 + } }, - "m_bIsOnPet": { - "type": "bool", + "m_nDuration": { + "type": "int", "id": 2, - "offset": 73, + "offset": 104, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 522593303 + "hash": 1110167982 }, - "m_originatorID": { - "type": "gid", + "m_effectID": { + "type": "unsigned int", "id": 3, - "offset": 104, - "flags": 39, + "offset": 88, + "flags": 24, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1131810019 + "hash": 2347630439 }, - "m_itemSlotID": { - "type": "unsigned int", + "m_imageFilename": { + "type": "std::string", "id": 4, "offset": 112, - "flags": 63, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1895747595 + "hash": 2813328063 }, - "m_internalID": { - "type": "int", + "m_iconIndex": { + "type": "unsigned int", "id": 5, - "offset": 92, - "flags": 63, + "offset": 144, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1643137924 + "hash": 1265133262 }, - "m_endTime": { - "type": "unsigned int", + "m_soundOnActivate": { + "type": "std::string", "id": 6, - "offset": 88, - "flags": 31, + "offset": 152, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 716479635 + "hash": 1956929714 }, - "m_lookupIndex": { - "type": "int", + "m_soundOnTarget": { + "type": "std::string", "id": 7, - "offset": 128, + "offset": 184, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3444214056 + }, + "m_targetParticleEffect": { + "type": "std::string", + "id": 8, + "offset": 216, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3048234723 + }, + "m_overheadMessage": { + "type": "std::string", + "id": 9, + "offset": 248, + "flags": 8388639, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1701018190 + }, + "m_requirements": { + "type": "class RequirementList", + "id": 10, + "offset": 280, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1626623948 + "hash": 2840988582 + }, + "m_nActionType": { + "type": "enum DerbyActionTargetType", + "id": 11, + "offset": 376, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3401355432, + "enum_options": { + "Jump": 0, + "Duck": 1, + "AllExceptCheer": 2, + "Cheer": 3 + } } } }, - "405622211": { - "name": "class LinearStateSoundBehaviorTemplate*", + "369278005": { + "name": "class SharedPointer", "bases": [ - "LinearSoundBehaviorTemplate", - "PositionalSoundBehaviorTemplate", - "SoundBehaviorTemplate", - "AreaBehaviorTemplate", "BehaviorTemplate", "PropertyClass" ], - "hash": 405622211, + "hash": 369278005, "properties": { "m_behaviorName": { "type": "std::string", @@ -526092,7 +338078,7 @@ "pointer": false, "hash": 3130754092 }, - "m_radius": { + "m_speed": { "type": "float", "id": 1, "offset": 120, @@ -526101,3109 +338087,3008 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 989410271 + "hash": 900164744 }, - "m_category": { - "type": "enum AudioCategory", + "m_schoolName": { + "type": "std::string", "id": 2, - "offset": 124, - "flags": 2097159, + "offset": 128, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2951251982, - "enum_options": { - "AudioCategory_Irrelevent": 0, - "AudioCategory_Accoustic": 1, - "AudioCategory_Noise": 2, - "AudioCategory_Music": 3, - "AudioCategory_MusicAtSFXVolume": 4, - "AudioCategory_Dialog": 5, - "AudioCategory_UI": 6, - "AudioCategory_NoiseAtMusicVolume": 7 - } + "hash": 3385349572 }, - "m_exclusive": { - "type": "bool", + "m_rank": { + "type": "int", "id": 3, - "offset": 128, + "offset": 160, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 824383403 + "hash": 219803942 }, - "m_active": { - "type": "bool", + "m_holidayFlags": { + "type": "std::string", "id": 4, - "offset": 129, + "offset": 168, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 239335471 + "hash": 1506904690 }, - "m_enableReqs": { - "type": "class SharedPointer", + "m_minimumSize": { + "type": "float", "id": 5, - "offset": 136, - "flags": 263, + "offset": 200, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3158020443 + "pointer": false, + "hash": 751206574 }, - "m_trackFilenameList": { - "type": "std::string", + "m_maximumSize": { + "type": "float", "id": 6, - "offset": 152, + "offset": 204, "flags": 7, - "container": "Vector", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 2531081709 + "hash": 424567216 }, - "m_playList": { - "type": "class PlayListEntry*", + "m_isPredator": { + "type": "int", "id": 7, - "offset": 176, + "offset": 208, "flags": 7, - "container": "Vector", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3907873161 + "pointer": false, + "hash": 952748183 }, - "m_priority": { - "type": "int", + "m_percentChanceToTurn": { + "type": "float", "id": 8, - "offset": 208, + "offset": 212, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1235205852 + "hash": 144771798 }, - "m_volume": { + "m_predatorRange": { "type": "float", "id": 9, - "offset": 200, + "offset": 216, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1162855023 + "hash": 2044238245 }, - "m_loopCount": { - "type": "int", + "m_shadowFishKFM": { + "type": "std::string", "id": 10, - "offset": 204, - "flags": 7, + "offset": 224, + "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 865634717 + "hash": 2042617449 }, - "m_progression": { - "type": "enum PlayList::Progression", + "m_alphaLevel": { + "type": "float", "id": 11, - "offset": 220, - "flags": 2097159, + "offset": 256, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3279400238, - "enum_options": { - "Sequence": 0, - "Random": 1, - "SequenceOnceOnly": 2, - "RandomNoRepeat": 3 - } + "hash": 1776159605 }, - "m_progressMin": { + "m_initialBiteChance": { "type": "float", "id": 12, - "offset": 212, + "offset": 260, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1497550192 + "hash": 1799125575 }, - "m_progressMax": { + "m_incrementalBiteChance": { "type": "float", "id": 13, - "offset": 216, + "offset": 264, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1497549938 + "hash": 282955535 }, - "m_audioFilterSet": { - "type": "unsigned int", + "m_baseLength": { + "type": "float", "id": 14, - "offset": 224, - "flags": 33554439, + "offset": 268, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 831339825 + "hash": 456346324 }, - "m_animationNameFilter": { - "type": "std::string", + "m_fishingXP": { + "type": "int", "id": 15, - "offset": 232, + "offset": 272, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2292854242 + "hash": 319909002 }, - "m_functionallabel": { - "type": "std::string", + "m_biteSeconds": { + "type": "float", "id": 16, - "offset": 264, + "offset": 276, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3589331278 + "hash": 2219559882 }, - "m_innerRadius": { - "type": "float", + "m_iconIndex": { + "type": "int", "id": 17, - "offset": 296, + "offset": 280, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 686816091 + "hash": 1053730811 }, - "m_inverted": { - "type": "bool", + "m_fishtankType": { + "type": "int", "id": 18, - "offset": 300, + "offset": 284, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1034821044 + "hash": 1397512660 }, - "m_fRangeScale": { - "type": "float", + "m_fishSalePrice": { + "type": "int", "id": 19, - "offset": 304, + "offset": 288, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1749294034 + "hash": 274861692 }, - "m_fAttenuationFactor": { - "type": "float", + "m_rarity": { + "type": "int", "id": 20, - "offset": 308, + "offset": 292, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 273292776 - }, - "m_eAttenuationType": { - "type": "enum PositionInfoAttenuationType", - "id": 21, - "offset": 312, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2427193304, - "enum_options": { - "Standard": 0, - "Unit Range Power": 1 - } - }, - "m_vPositions": { - "type": "class Vector3D", - "id": 22, - "offset": 320, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 3599600160 + "hash": 899712213 } } }, - "1977648649": { - "name": "class ZoneTokenTrackingBehaviorTemplate", + "1658012869": { + "name": "class ReqPipCount*", "bases": [ - "BehaviorTemplate", + "ConditionalSpellEffectRequirement", + "Requirement", "PropertyClass" ], - "hash": 1977648649, + "hash": 1658012869, "properties": { - "m_behaviorName": { - "type": "std::string", + "m_applyNOT": { + "type": "bool", "id": 0, "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - } - } - }, - "1568637011": { - "name": "class PvPSeasonTemplate", - "bases": [ - "PropertyClass" - ], - "hash": 1568637011, - "properties": { - "m_seasonName": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 7, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1895926181 + "hash": 1746328074, + "enum_options": { + "__DEFAULT": 0 + } }, - "m_seasonTitle": { - "type": "std::string", + "m_operator": { + "type": "enum Requirement::Operator", "id": 1, - "offset": 112, - "flags": 8388615, + "offset": 76, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1758854694 + "hash": 2672792317, + "enum_options": { + "ROP_AND": 0, + "ROP_OR": 1, + "__DEFAULT": "ROP_AND" + } }, - "m_startMonth": { - "type": "int", + "m_targetType": { + "type": "enum ConditionalSpellEffectRequirement::RequirementTarget", "id": 2, - "offset": 144, - "flags": 7, + "offset": 80, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 661899790 + "hash": 2547737902, + "enum_options": { + "RT_Caster": 0, + "RT_Target": 1 + } }, - "m_startDay": { + "m_minPips": { "type": "int", "id": 3, - "offset": 148, - "flags": 7, + "offset": 88, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 367473766 + "hash": 2062924954 }, - "m_startHour": { + "m_maxPips": { "type": "int", "id": 4, - "offset": 152, - "flags": 7, + "offset": 92, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1386544390 - }, - "m_startMinute": { - "type": "int", - "id": 5, - "offset": 156, - "flags": 7, + "hash": 1761701020 + } + } + }, + "2094243204": { + "name": "class ClientWizInventoryBehavior*", + "bases": [ + "ClientInventoryBehavior", + "InventoryBehaviorBase", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 2094243204, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 357912026 + "hash": 223437287 }, - "m_endMonth": { + "m_itemList": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 27, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1983655699 + }, + "m_numItemsAllowed": { "type": "int", - "id": 6, + "id": 2, "offset": 160, - "flags": 7, + "flags": 27, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1624246775 + "hash": 1404509492 }, - "m_endDay": { + "m_numJewelsAllowed": { "type": "int", - "id": 7, + "id": 3, "offset": 164, - "flags": 7, + "flags": 27, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 405825039 + "hash": 49168892 }, - "m_endHour": { + "m_numCEEmotesAllowed": { "type": "int", - "id": 8, + "id": 4, "offset": 168, - "flags": 7, + "flags": 27, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 504652751 + "hash": 259951495 }, - "m_endMinute": { + "m_numCETeleportsAllowed": { "type": "int", - "id": 9, + "id": 5, "offset": 172, - "flags": 7, + "flags": 27, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2050591459 + "hash": 284631772 } } }, - "807343814": { - "name": "class EmojiWindow", + "368019434": { + "name": "class SharedPointer", "bases": [ - "Window", "PropertyClass" ], - "hash": 807343814, + "hash": 368019434, "properties": { - "m_sName": { + "m_type": { "type": "std::string", "id": 0, - "offset": 80, - "flags": 135, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2306437263 + "hash": 1717601629 }, - "m_Children": { - "type": "class SharedPointer", + "m_associatedGID": { + "type": "gid", "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621225959 - }, - "m_Style": { - "type": "unsigned int", - "id": 2, - "offset": 152, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "SCALE_CHILDREN": 2, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "FOCUS_LOCKED": 64, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152 - } - }, - "m_Flags": { - "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } - }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, - "flags": 135, + "offset": 104, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3105139380 + "hash": 148404716 }, - "m_fTargetAlpha": { - "type": "float", - "id": 5, - "offset": 212, - "flags": 135, - "container": "Static", - "dynamic": false, + "m_blobRequestObjectList": { + "type": "class SharedPointer", + "id": 2, + "offset": 112, + "flags": 7, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 1809129834 - }, - "m_fDisabledAlpha": { - "type": "float", - "id": 6, - "offset": 216, - "flags": 135, + "pointer": true, + "hash": 883864802 + } + } + }, + "1657950048": { + "name": "enum CastleMagicItemType", + "bases": [], + "hash": 1657950048, + "properties": {} + }, + "809142483": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 809142483, + "properties": {} + }, + "1205539906": { + "name": "class BadgeBehaviorTemplate", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 1205539906, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1389987675 - }, - "m_fAlpha": { - "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, + "hash": 3130754092 + } + } + }, + "808981137": { + "name": "class ObjStateCategory", + "bases": [ + "PropertyClass" + ], + "hash": 808981137, + "properties": { + "m_categoryName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 482130755 + "hash": 3591157466 }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, - "container": "Static", - "dynamic": false, + "m_states": { + "type": "class ObjState*", + "id": 1, + "offset": 176, + "flags": 7, + "container": "List", + "dynamic": true, "singleton": false, "pointer": true, - "hash": 3623628394 - }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2102211316 + "hash": 2490652686 }, - "m_sScript": { + "m_startState": { "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, + "id": 2, + "offset": 112, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1846695875 + "hash": 2166880458 }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, + "m_baseState": { + "type": "std::string", + "id": 3, + "offset": 144, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3389835433 - }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, + "hash": 2949363223 + } + } + }, + "2096485267": { + "name": "class SharedPointer", + "bases": [ + "LootInfo", + "LootInfoBase", + "PropertyClass" + ], + "hash": 2096485267, + "properties": { + "m_lootType": { + "type": "enum LootInfo::LOOT_TYPE", + "id": 0, + "offset": 72, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2547159940 + "hash": 1591891442, + "enum_options": { + "LOOT_TYPE_NONE": 0, + "LOOT_TYPE_GOLD": 1, + "LOOT_TYPE_MANA": 2, + "LOOT_TYPE_ITEM": 3, + "LOOT_TYPE_TREASURE_CARD": 4, + "LOOT_TYPE_MAGIC_XP": 5, + "LOOT_TYPE_ADD_SPELL": 6, + "LOOT_TYPE_MAX_HEALTH": 7, + "LOOT_TYPE_MAX_GOLD": 8, + "LOOT_TYPE_MAX_MANA": 9, + "LOOT_TYPE_MAX_POTION": 10, + "LOOT_TYPE_TRAINING_POINTS": 11, + "LOOT_TYPE_RECIPE": 12, + "LOOT_TYPE_CRAFTING_SLOT": 13, + "LOOT_TYPE_REAGENT": 14, + "LOOT_TYPE_PETSNACK": 15, + "LOOT_TYPE_GARDENING_XP": 16, + "LOOT_TYPE_PET_XP": 17, + "LOOT_TYPE_TREASURE_TABLE": 18, + "LOOT_TYPE_ARENA_POINTS": 19, + "LOOT_TYPE_ARENA_BONUS_POINTS": 20, + "LOOT_TYPE_GROUP": 21, + "LOOT_TYPE_FISHING_XP": 22, + "LOOT_TYPE_EVENT_CURRENCY_1": 24, + "LOOT_TYPE_EVENT_CURRENCY_2": 25, + "LOOT_TYPE_PVP_CURRENCY": 26, + "LOOT_TYPE_PVP_CURRENCY_BONUS": 27, + "LOOT_TYPE_PVP_TOURNEY_CURRENCY": 28, + "LOOT_TYPE_PVP_TOURNEY_CURRENCY_BONUS": 29, + "LOOT_TYPE_FURNITURE_ESSENCE": 30 + } }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, + "m_eventCurrency1Amount": { + "type": "int", + "id": 1, + "offset": 80, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2587533771 - }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, + "hash": 945914060 + } + } + }, + "1659329652": { + "name": "class SharedPointer", + "bases": [ + "LootInfo", + "LootInfoBase", + "PropertyClass" + ], + "hash": 1659329652, + "properties": { + "m_lootType": { + "type": "enum LootInfo::LOOT_TYPE", + "id": 0, + "offset": 72, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3091503757 + "hash": 1591891442, + "enum_options": { + "LOOT_TYPE_NONE": 0, + "LOOT_TYPE_GOLD": 1, + "LOOT_TYPE_MANA": 2, + "LOOT_TYPE_ITEM": 3, + "LOOT_TYPE_TREASURE_CARD": 4, + "LOOT_TYPE_MAGIC_XP": 5, + "LOOT_TYPE_ADD_SPELL": 6, + "LOOT_TYPE_MAX_HEALTH": 7, + "LOOT_TYPE_MAX_GOLD": 8, + "LOOT_TYPE_MAX_MANA": 9, + "LOOT_TYPE_MAX_POTION": 10, + "LOOT_TYPE_TRAINING_POINTS": 11, + "LOOT_TYPE_RECIPE": 12, + "LOOT_TYPE_CRAFTING_SLOT": 13, + "LOOT_TYPE_REAGENT": 14, + "LOOT_TYPE_PETSNACK": 15, + "LOOT_TYPE_GARDENING_XP": 16, + "LOOT_TYPE_PET_XP": 17, + "LOOT_TYPE_TREASURE_TABLE": 18, + "LOOT_TYPE_ARENA_POINTS": 19, + "LOOT_TYPE_ARENA_BONUS_POINTS": 20, + "LOOT_TYPE_GROUP": 21, + "LOOT_TYPE_FISHING_XP": 22, + "LOOT_TYPE_EVENT_CURRENCY_1": 24, + "LOOT_TYPE_EVENT_CURRENCY_2": 25, + "LOOT_TYPE_PVP_CURRENCY": 26, + "LOOT_TYPE_PVP_CURRENCY_BONUS": 27, + "LOOT_TYPE_PVP_TOURNEY_CURRENCY": 28, + "LOOT_TYPE_PVP_TOURNEY_CURRENCY_BONUS": 29, + "LOOT_TYPE_FURNITURE_ESSENCE": 30 + } } } }, - "807186171": { - "name": "class SharedPointer", + "2095072306": { + "name": "class FishingSpellTemplate*", "bases": [ - "BehaviorInstance", + "SpellTemplate", + "CoreTemplate", "PropertyClass" ], - "hash": 807186171, + "hash": 2095072306, "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", + "m_behaviors": { + "type": "class BehaviorTemplate*", "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, + "offset": 72, + "flags": 7, + "container": "Vector", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 223437287 + "pointer": true, + "hash": 1197808594 }, - "m_targetLeague": { + "m_name": { "type": "std::string", "id": 1, - "offset": 112, - "flags": 31, + "offset": 96, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3312829397 + "hash": 1717359772 }, - "m_rank": { - "type": "int", + "m_description": { + "type": "std::string", "id": 2, - "offset": 144, - "flags": 31, + "offset": 168, + "flags": 8388615, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 219803942 + "hash": 1649374815 }, - "m_refreshRateSec": { - "type": "int", + "m_advancedDescription": { + "type": "std::string", "id": 3, - "offset": 148, - "flags": 31, + "offset": 200, + "flags": 8388615, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 418402320 + "hash": 3465713013 }, - "m_groundOffset": { - "type": "float", + "m_displayName": { + "type": "std::string", "id": 4, - "offset": 152, - "flags": 31, + "offset": 136, + "flags": 8388615, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 684524077 + "hash": 2446900370 }, - "m_yaw": { - "type": "float", + "m_spellBase": { + "type": "std::string", "id": 5, - "offset": 156, - "flags": 31, + "offset": 248, + "flags": 268435463, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 357256328 + "hash": 2688054198, + "enum_options": { + "__BASECLASS": "CinematicTemplate" + } }, - "m_showNametag": { - "type": "bool", + "m_effects": { + "type": "class SharedPointer", "id": 6, - "offset": 160, - "flags": 31, - "container": "Static", - "dynamic": false, + "offset": 280, + "flags": 7, + "container": "Vector", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 584664753 + "pointer": true, + "hash": 370726379 }, - "m_showInGrace": { - "type": "bool", + "m_sMagicSchoolName": { + "type": "std::string", "id": 7, - "offset": 161, - "flags": 31, + "offset": 312, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1033917517 + "hash": 2035693400 }, - "m_showActive": { - "type": "bool", + "m_sTypeName": { + "type": "std::string", "id": 8, - "offset": 162, - "flags": 31, + "offset": 352, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 685431312 + "hash": 3580785905 }, - "m_scale": { - "type": "float", + "m_trainingCost": { + "type": "int", "id": 9, - "offset": 164, - "flags": 31, + "offset": 384, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 899693439 + "hash": 982588239 }, - "m_alpha": { - "type": "float", + "m_accuracy": { + "type": "int", "id": 10, - "offset": 168, - "flags": 31, + "offset": 388, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 878686493 + "hash": 1636315493 }, - "m_animDelaySec": { - "type": "float", + "m_baseCost": { + "type": "int", "id": 11, - "offset": 172, - "flags": 31, + "offset": 232, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2131058854 + "hash": 1475151502 }, - "m_animChance": { - "type": "float", + "m_creditsCost": { + "type": "int", "id": 12, - "offset": 176, - "flags": 31, + "offset": 236, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 434823806 + "hash": 715313825 }, - "m_animList": { - "type": "std::string", + "m_pvpCurrencyCost": { + "type": "int", "id": 13, - "offset": 184, - "flags": 31, - "container": "List", - "dynamic": true, + "offset": 240, + "flags": 7, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 2531745852 + "hash": 645595444 }, - "m_leagueID": { - "type": "unsigned int", + "m_pvpTourneyCurrencyCost": { + "type": "int", "id": 14, - "offset": 200, - "flags": 31, + "offset": 244, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 692361645 + "hash": 517874954 }, - "m_seasonID": { - "type": "unsigned int", + "m_boosterPackIcon": { + "type": "std::string", "id": 15, - "offset": 204, - "flags": 31, + "offset": 496, + "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 535260643 + "hash": 3428653697 }, - "m_startTime": { + "m_validTargetSpells": { "type": "unsigned int", "id": 16, - "offset": 208, - "flags": 31, - "container": "Static", - "dynamic": false, + "offset": 392, + "flags": 7, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 1598371274 + "hash": 2355782967 }, - "m_visualBlob": { - "type": "std::string", + "m_PvP": { + "type": "bool", "id": 17, - "offset": 216, - "flags": 31, + "offset": 408, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1691722510 - } - } - }, - "1569343233": { - "name": "class RitualObjectBehavior*", - "bases": [ - "RitualObjectBehaviorBase", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1569343233, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, + "hash": 269492361 + }, + "m_PvE": { + "type": "bool", + "id": 18, + "offset": 409, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 + "hash": 269492350 }, - "m_playerList": { - "type": "gid", - "id": 1, - "offset": 112, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1909774945 - } - } - }, - "405973516": { - "name": "class SharedPointer", - "bases": [ - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 405973516, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, + "m_noPvPEnchant": { + "type": "bool", + "id": 19, + "offset": 410, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 + "hash": 661581703 }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, + "m_noPvEEnchant": { + "type": "bool", + "id": 20, + "offset": 411, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2285866132 - } - } - }, - "1981494607": { - "name": "class TriviaWindow*", - "bases": [ - "Window", - "PropertyClass" - ], - "hash": 1981494607, - "properties": { - "m_sName": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 135, + "hash": 10144220 + }, + "m_battlegroundsOnly": { + "type": "bool", + "id": 21, + "offset": 412, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2306437263 - }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621225959 + "hash": 1244782419 }, - "m_Style": { - "type": "unsigned int", - "id": 2, - "offset": 152, - "flags": 1048583, + "m_Treasure": { + "type": "bool", + "id": 22, + "offset": 413, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "SCALE_CHILDREN": 2, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "FOCUS_LOCKED": 64, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152 - } + "hash": 1749096414 }, - "m_Flags": { - "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 1048583, + "m_noDiscard": { + "type": "bool", + "id": 23, + "offset": 414, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } + "hash": 565749226 }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, - "flags": 135, + "m_leavesPlayWhenCast": { + "type": "bool", + "id": 24, + "offset": 532, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3105139380 + "hash": 698216294 }, - "m_fTargetAlpha": { - "type": "float", - "id": 5, - "offset": 212, - "flags": 135, + "m_imageIndex": { + "type": "int", + "id": 25, + "offset": 416, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1809129834 + "hash": 1570500405 }, - "m_fDisabledAlpha": { - "type": "float", - "id": 6, - "offset": 216, - "flags": 135, + "m_imageName": { + "type": "std::string", + "id": 26, + "offset": 424, + "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1389987675 + "hash": 2391520543 }, - "m_fAlpha": { - "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, + "m_cloaked": { + "type": "bool", + "id": 27, + "offset": 489, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 482130755 + "hash": 7349510 }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, + "m_casterInvisible": { + "type": "bool", + "id": 28, + "offset": 490, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3623628394 + "pointer": false, + "hash": 310214650 }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, - "container": "Static", - "dynamic": false, + "m_adjectives": { + "type": "std::string", + "id": 29, + "offset": 576, + "flags": 7, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 2102211316 + "hash": 2967855037 }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, + "m_spellSourceType": { + "type": "enum SpellTemplate::kSpellSourceType", + "id": 30, + "offset": 528, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1846695875 + "hash": 156272727, + "enum_options": { + "kCaster": 0, + "kPet": 1, + "kShadowCreature": 2, + "kWeapon": 3, + "kEquipment": 4 + } }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, + "m_cloakedName": { + "type": "std::string", + "id": 31, + "offset": 536, + "flags": 268435463, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3389835433 + "hash": 2846679215, + "enum_options": { + "__BASECLASS": "SpellTemplate" + } }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, + "m_purchaseRequirements": { + "type": "class RequirementList*", + "id": 32, + "offset": 608, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 2547159940 + "pointer": true, + "hash": 3174641793 }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, + "m_displayRequirements": { + "type": "class RequirementList*", + "id": 33, + "offset": 840, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1513510520 + "pointer": true, + "hash": 3646782876 }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, + "m_descriptionTrainer": { + "type": "std::string", + "id": 34, + "offset": 616, + "flags": 8388871, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 2587533771 + "hash": 1756093908 }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, + "m_descriptionCombatHUD": { + "type": "std::string", + "id": 35, + "offset": 648, + "flags": 8388871, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3091503757 - } - } - }, - "1981028286": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1981028286, - "properties": { - "m_nodeList": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 3486511051 - } - } - }, - "807463180": { - "name": "class PlayerControllerClient", - "bases": [ - "PlayerController", - "MoveBehavior::Controller", - "PropertyClass" - ], - "hash": 807463180, - "properties": { - "m_bCollisionDisabled": { - "type": "bool", - "id": 0, - "offset": 120, + "hash": 1631478006 + }, + "m_displayIndex": { + "type": "int", + "id": 36, + "offset": 680, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1732895577 + "hash": 1250551048 }, - "m_bVehicleMode": { + "m_hiddenFromEffectsWindow": { "type": "bool", - "id": 1, - "offset": 121, + "id": 37, + "offset": 684, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1597295002 + "hash": 1832736331 }, - "m_fForwardModifier": { - "type": "float", - "id": 2, - "offset": 124, + "m_ignoreCharms": { + "type": "bool", + "id": 38, + "offset": 685, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1173988321 + "hash": 1840075893 }, - "m_fBackModifier": { - "type": "float", - "id": 3, - "offset": 128, + "m_alwaysFizzle": { + "type": "bool", + "id": 39, + "offset": 686, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 148042045 + "hash": 2030988856 }, - "m_fStrafeModifier": { - "type": "float", - "id": 4, - "offset": 132, + "m_spellCategory": { + "type": "std::string", + "id": 40, + "offset": 688, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 226084913 + "hash": 2472376729 }, - "m_fTurnModifier": { - "type": "float", - "id": 5, - "offset": 136, + "m_showPolymorphedName": { + "type": "bool", + "id": 41, + "offset": 720, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2134998805 + "hash": 2097929096 }, - "m_fAccelerationModifier": { - "type": "float", - "id": 6, - "offset": 144, - "flags": 7, + "m_skipTruncation": { + "type": "bool", + "id": 42, + "offset": 721, + "flags": 263, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 592902742 + "hash": 1838335249 }, - "m_fDecelerationModifier": { - "type": "float", - "id": 7, - "offset": 148, - "flags": 7, + "m_maxCopies": { + "type": "unsigned int", + "id": 43, + "offset": 724, + "flags": 263, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1770082811 - } - } - }, - "1570810315": { - "name": "class AdvPvPLeaderboardVisualBlob*", - "bases": [ - "PropertyClass" - ], - "hash": 1570810315, - "properties": { - "m_level": { + "hash": 403022326 + }, + "m_levelRestriction": { "type": "int", - "id": 0, - "offset": 72, - "flags": 31, + "id": 44, + "offset": 728, + "flags": 263, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 801285362 + "hash": 176502472 }, - "m_school": { - "type": "unsigned int", - "id": 1, - "offset": 76, - "flags": 31, + "m_delayEnchantment": { + "type": "bool", + "id": 45, + "offset": 732, + "flags": 287, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1152268885 + "hash": 191336919 }, - "m_gender": { - "type": "int", - "id": 2, - "offset": 80, - "flags": 31, + "m_delayEnchantmentOrder": { + "type": "enum SpellEffect::kDelayOrder", + "id": 46, + "offset": 736, + "flags": 287, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 473816879 + "hash": 2526055263, + "enum_options": { + "SpellEffect::kAnyOrder": 0, + "SpellEffect::kFirst": 1, + "SpellEffect::kSecond": 2 + } }, - "m_nameKeys": { - "type": "unsigned int", - "id": 3, - "offset": 84, - "flags": 31, + "m_previousSpellName": { + "type": "std::string", + "id": 47, + "offset": 744, + "flags": 268435463, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1772225898 + "hash": 2903322585, + "enum_options": { + "__BASECLASS": "SpellTemplate" + } }, - "m_badge": { + "m_cardFront": { "type": "std::string", - "id": 4, - "offset": 88, - "flags": 63, + "id": 48, + "offset": 456, + "flags": 131359, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2286962478 + "hash": 3557598526 }, - "m_pCharacterBehavior": { - "type": "class SharedPointer", - "id": 5, - "offset": 120, - "flags": 31, + "m_useGloss": { + "type": "bool", + "id": 49, + "offset": 488, + "flags": 287, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2724673923 + "pointer": false, + "hash": 668817544 }, - "m_pEquipment": { - "type": "class SharedPointer", - "id": 6, - "offset": 136, - "flags": 31, + "m_ignoreDispel": { + "type": "bool", + "id": 50, + "offset": 776, + "flags": 287, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2473540161 + "pointer": false, + "hash": 1881041624 }, - "m_pStats": { - "type": "class SharedPointer", - "id": 7, - "offset": 152, - "flags": 31, + "m_backRowFriendly": { + "type": "bool", + "id": 51, + "offset": 777, + "flags": 287, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2212894623 + "pointer": false, + "hash": 501584377 }, - "m_pGameEffects": { - "type": "class SharedPointer", - "id": 8, - "offset": 168, - "flags": 31, + "m_spellRank": { + "type": "class SharedPointer", + "id": 52, + "offset": 784, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": true, - "hash": 1557857436 + "hash": 3152361374 }, - "m_petTID": { - "type": "unsigned int", - "id": 9, - "offset": 200, - "flags": 31, + "m_secondarySchoolName": { + "type": "std::string", + "id": 53, + "offset": 800, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1037635095 + "hash": 1803268236 }, - "m_pPetBehavior": { - "type": "class SharedPointer", - "id": 10, - "offset": 208, - "flags": 31, + "m_spellFusion": { + "type": "unsigned int", + "id": 54, + "offset": 836, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2663493503 + "pointer": false, + "hash": 1658928321 }, - "m_pPetJewels": { - "type": "class SharedPointer", - "id": 11, - "offset": 224, - "flags": 31, + "m_requiredSchoolName": { + "type": "std::string", + "id": 55, + "offset": 848, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 733229991 - } - } - }, - "412276022": { - "name": "class std::vector >", - "bases": [], - "hash": 412276022, - "properties": {} - }, - "1980250821": { - "name": "class ClientActorRenameCinematicAction*", - "bases": [ - "ActorRenameCinematicAction", - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 1980250821, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, + "pointer": false, + "hash": 3576058981 + }, + "m_fishingSpellType": { + "type": "enum FishingSpellTemplate::FishingSpellType", + "id": 56, + "offset": 880, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 + "hash": 3230697370, + "enum_options": { + "FS_Catching": 0, + "FS_Utility": 1, + "FS_PredatorBanishment": 2 + } }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, + "m_energyCost": { + "type": "int", + "id": 57, + "offset": 884, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2285866132 + "hash": 1236111677 }, - "m_newNamePattern": { + "m_animationKFM": { "type": "std::string", - "id": 2, - "offset": 120, - "flags": 7, + "id": 58, + "offset": 888, + "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1519245892 + "hash": 2466280761 }, - "m_bActOnlyOnFirstActor": { - "type": "bool", - "id": 3, - "offset": 152, + "m_animationName": { + "type": "std::string", + "id": 59, + "offset": 920, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2050856077 - } - } - }, - "807421397": { - "name": "class MyStitchEntry", - "bases": [ - "PropertyClass" - ], - "hash": 807421397, - "properties": { - "m_ageOutTime": { - "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 7, + "hash": 3393414044 + }, + "m_soundEffectName": { + "type": "std::string", + "id": 60, + "offset": 952, + "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 819371137 + "hash": 3235436082 }, - "m_totalRating": { - "type": "unsigned int", - "id": 1, - "offset": 76, + "m_soundEffectGain": { + "type": "float", + "id": 61, + "offset": 984, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 725509110 + "hash": 1827685932, + "enum_options": { + "__DEFAULT": "1.0" + } }, - "m_numberOfRatings": { + "m_fishingSpellImageIndex": { "type": "int", - "id": 2, - "offset": 80, + "id": 62, + "offset": 988, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1563134896 + "hash": 757127517 }, - "m_flags": { - "type": "unsigned char", - "id": 3, - "offset": 84, - "flags": 7, + "m_fishingSpellImageName": { + "type": "std::string", + "id": 63, + "offset": 992, + "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1431998045 + "hash": 1585969735 }, - "m_type": { - "type": "unsigned int", - "id": 4, - "offset": 88, + "m_fishingSchoolFocus": { + "type": "std::string", + "id": 64, + "offset": 1024, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 431304463 + "hash": 2178393483 } } }, - "1570800103": { - "name": "class SharedPointer", + "369828328": { + "name": "class BalloonWindow", "bases": [ - "WindowAnimation", + "WindowLayout", + "Window", "PropertyClass" ], - "hash": 1570800103, + "hash": 369828328, "properties": { - "m_bUseDeepCopy": { - "type": "bool", + "m_sName": { + "type": "std::string", "id": 0, - "offset": 72, + "offset": 80, "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 433380635 + "hash": 2306437263 }, - "m_scale": { - "type": "float", + "m_Children": { + "type": "class SharedPointer", "id": 1, - "offset": 80, - "flags": 135, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621225959 + }, + "m_Style": { + "type": "unsigned int", + "id": 2, + "offset": 152, + "flags": 1048583, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 899693439 - } - } - }, - "410182004": { - "name": "class WizAvatarItemInfo*", - "bases": [ - "AvatarItemInfo", - "AvatarItemInfoBase", - "PropertyClass" - ], - "hash": 410182004, - "properties": { - "m_partName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152, + "H_CENTER": 16777216, + "H_RIGHT": 33554432, + "V_CENTER": 2147483648, + "V_BOTTOM": 67108864, + "SORT": 536870912, + "LAYOUT_VERT": 1073741824, + "LAYOUT_REVERSE": 2147483648, + "DO_NOT_WRAP": 134217728 + } + }, + "m_Flags": { + "type": "unsigned int", + "id": 3, + "offset": 156, + "flags": 1048583, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2609631923 + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } }, - "m_slotName": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 7, + "m_Window": { + "type": "class Rect", + "id": 4, + "offset": 160, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2819781566 + "hash": 3105139380 }, - "m_flags": { - "type": "std::string", - "id": 2, - "offset": 144, - "flags": 7, - "container": "List", - "dynamic": true, + "m_fTargetAlpha": { + "type": "float", + "id": 5, + "offset": 212, + "flags": 135, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 2292098216 - }, - "m_options": { - "type": "class SharedPointer", - "id": 3, - "offset": 160, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2499357824 + "hash": 1809129834 }, - "m_textureOptions": { - "type": "class SharedPointer", - "id": 4, - "offset": 176, - "flags": 7, - "container": "List", - "dynamic": true, + "m_fDisabledAlpha": { + "type": "float", + "id": 6, + "offset": 216, + "flags": 135, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2667548348 + "pointer": false, + "hash": 1389987675 }, - "m_defaultOption": { - "type": "class SharedPointer", - "id": 5, - "offset": 192, - "flags": 7, + "m_fAlpha": { + "type": "float", + "id": 7, + "offset": 208, + "flags": 65671, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2436336754 + "pointer": false, + "hash": 482130755 }, - "m_defaultTextureOption": { - "type": "class SharedPointer", - "id": 6, - "offset": 208, - "flags": 7, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": true, - "hash": 2712636654 - } - } - }, - "807421392": { - "name": "class MyStitchEntry*", - "bases": [ - "PropertyClass" - ], - "hash": 807421392, - "properties": { - "m_ageOutTime": { - "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 7, + "hash": 3623628394 + }, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 819371137 + "hash": 2102211316 }, - "m_totalRating": { - "type": "unsigned int", - "id": 1, - "offset": 76, - "flags": 7, + "m_sScript": { + "type": "std::string", + "id": 10, + "offset": 352, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 725509110 + "hash": 1846695875 }, - "m_numberOfRatings": { - "type": "int", - "id": 2, - "offset": 80, - "flags": 7, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1563134896 + "hash": 3389835433 }, - "m_flags": { - "type": "unsigned char", - "id": 3, - "offset": 84, - "flags": 7, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1431998045 + "hash": 2547159940 }, - "m_type": { - "type": "unsigned int", - "id": 4, - "offset": 88, - "flags": 7, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 431304463 - } - } - }, - "1570004307": { - "name": "class SharedPointer", - "bases": [ - "GameEffectInfo", - "PropertyClass" - ], - "hash": 1570004307, - "properties": { - "m_effectName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, + "hash": 1513510520 + }, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 2029161513 + "hash": 2587533771 }, - "m_spellName": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 7, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2688485244 + "hash": 3091503757 }, - "m_numSpells": { + "m_nHSpacing": { "type": "int", - "id": 2, - "offset": 136, - "flags": 7, + "id": 16, + "offset": 584, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1269498237 + "hash": 893611957 }, - "m_vFX": { - "type": "std::string", - "id": 3, - "offset": 144, - "flags": 7, + "m_nVSpacing": { + "type": "int", + "id": 17, + "offset": 588, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1764750607 - }, - "m_vFXOverride": { - "type": "bool", - "id": 4, - "offset": 176, - "flags": 7, + "hash": 551359491 + } + } + }, + "1206218299": { + "name": "class GearVaultBehavior", + "bases": [ + "GearVaultBehaviorBase", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1206218299, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1491092359 + "hash": 223437287 }, - "m_sound": { + "m_gearList": { "type": "std::string", - "id": 5, - "offset": 184, - "flags": 7, + "id": 1, + "offset": 112, + "flags": 65567, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1498902582 + }, + "m_gearData": { + "type": "std::string", + "id": 2, + "offset": 128, + "flags": 551, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2307644996 + "hash": 1498606388 } } }, - "407794292": { - "name": "class BracketInfo*", + "2095072282": { + "name": "class FishingSpellTemplate", "bases": [ + "SpellTemplate", + "CoreTemplate", "PropertyClass" ], - "hash": 407794292, + "hash": 2095072282, "properties": { - "m_bracketGID": { - "type": "gid", + "m_behaviors": { + "type": "class BehaviorTemplate*", "id": 0, "offset": 72, - "flags": 63, - "container": "Static", - "dynamic": false, + "flags": 7, + "container": "Vector", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 1674798632 + "pointer": true, + "hash": 1197808594 }, - "m_creatorActorGID": { - "type": "gid", + "m_name": { + "type": "std::string", "id": 1, - "offset": 80, - "flags": 63, + "offset": 96, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1339404213 + "hash": 1717359772 }, - "m_creatorBracketGID": { - "type": "gid", + "m_description": { + "type": "std::string", "id": 2, - "offset": 88, - "flags": 31, + "offset": 168, + "flags": 8388615, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1005482776 + "hash": 1649374815 }, - "m_teams": { - "type": "class SharedPointer", + "m_advancedDescription": { + "type": "std::string", "id": 3, - "offset": 184, - "flags": 31, - "container": "List", - "dynamic": true, + "offset": 200, + "flags": 8388615, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 981867512 + "pointer": false, + "hash": 3465713013 }, - "m_teamSize": { - "type": "unsigned int", + "m_displayName": { + "type": "std::string", "id": 4, - "offset": 224, - "flags": 63, + "offset": 136, + "flags": 8388615, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2343388751 + "hash": 2446900370 }, - "m_actorList": { - "type": "class SharedPointer", + "m_spellBase": { + "type": "std::string", "id": 5, - "offset": 168, - "flags": 6, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 885135115 - }, - "m_currentRound": { - "type": "unsigned int", - "id": 6, - "offset": 144, - "flags": 63, + "offset": 248, + "flags": 268435463, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 861487416 + "hash": 2688054198, + "enum_options": { + "__BASECLASS": "CinematicTemplate" + } }, - "m_bracketState": { - "type": "unsigned int", + "m_effects": { + "type": "class SharedPointer", + "id": 6, + "offset": 280, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 370726379 + }, + "m_sMagicSchoolName": { + "type": "std::string", "id": 7, - "offset": 236, - "flags": 63, + "offset": 312, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 790945386 + "hash": 2035693400 }, - "m_matchNameID": { - "type": "unsigned int", + "m_sTypeName": { + "type": "std::string", "id": 8, - "offset": 240, - "flags": 63, + "offset": 352, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1751361288 + "hash": 3580785905 }, - "m_roundStartsInSeconds": { - "type": "unsigned int", + "m_trainingCost": { + "type": "int", "id": 9, - "offset": 232, - "flags": 63, + "offset": 384, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 346233980 + "hash": 982588239 }, - "m_roundTimeSeconds": { - "type": "unsigned int", + "m_accuracy": { + "type": "int", "id": 10, - "offset": 228, - "flags": 63, + "offset": 388, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1964849971 + "hash": 1636315493 }, - "m_scheduleID": { - "type": "gid", + "m_baseCost": { + "type": "int", "id": 11, - "offset": 248, - "flags": 63, + "offset": 232, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1439120946 + "hash": 1475151502 }, - "m_visibleTimeSeconds": { - "type": "unsigned int", + "m_creditsCost": { + "type": "int", "id": 12, - "offset": 272, - "flags": 63, + "offset": 236, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1245818841 + "hash": 715313825 }, - "m_startTimeSec": { + "m_pvpCurrencyCost": { "type": "int", "id": 13, - "offset": 268, - "flags": 63, + "offset": 240, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1519392434 + "hash": 645595444 }, - "m_registrationOpenTimeSeconds": { - "type": "unsigned int", + "m_pvpTourneyCurrencyCost": { + "type": "int", "id": 14, - "offset": 276, - "flags": 63, + "offset": 244, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2064854776 + "hash": 517874954 }, - "m_tournamentPreparingTimeSeconds": { - "type": "unsigned int", + "m_boosterPackIcon": { + "type": "std::string", "id": 15, - "offset": 280, - "flags": 63, + "offset": 496, + "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1121720544 + "hash": 3428653697 }, - "m_roundBufferTimeSeconds": { + "m_validTargetSpells": { "type": "unsigned int", "id": 16, - "offset": 284, - "flags": 63, - "container": "Static", - "dynamic": false, + "offset": 392, + "flags": 7, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 671173677 + "hash": 2355782967 }, - "m_numberOfRounds": { - "type": "int", + "m_PvP": { + "type": "bool", "id": 17, - "offset": 148, - "flags": 63, + "offset": 408, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2081430579 + "hash": 269492361 }, - "m_overrideTourneyName": { - "type": "std::string", + "m_PvE": { + "type": "bool", "id": 18, - "offset": 296, - "flags": 63, + "offset": 409, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2611946162 + "hash": 269492350 }, - "m_firstTourneyNameSTKey": { - "type": "std::string", + "m_noPvPEnchant": { + "type": "bool", "id": 19, - "offset": 328, - "flags": 63, + "offset": 410, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2731391050 + "hash": 661581703 }, - "m_secondTourneyNameSTKey": { - "type": "std::string", + "m_noPvEEnchant": { + "type": "bool", "id": 20, - "offset": 360, - "flags": 63, + "offset": 411, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1747016318 + "hash": 10144220 }, - "m_subBracketIdx": { - "type": "int", + "m_battlegroundsOnly": { + "type": "bool", "id": 21, - "offset": 392, - "flags": 31, + "offset": 412, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1688562149 + "hash": 1244782419 }, - "m_scoreMultiplier": { - "type": "float", + "m_Treasure": { + "type": "bool", "id": 22, - "offset": 396, - "flags": 63, + "offset": 413, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 545011290 + "hash": 1749096414 }, - "m_preferredNumberOfTeams": { - "type": "int", + "m_noDiscard": { + "type": "bool", "id": 23, - "offset": 264, - "flags": 63, + "offset": 414, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 475550641 + "hash": 565749226 }, - "m_minTeams": { - "type": "int", + "m_leavesPlayWhenCast": { + "type": "bool", "id": 24, - "offset": 256, - "flags": 63, + "offset": 532, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1506283288 + "hash": 698216294 }, - "m_maxTeams": { + "m_imageIndex": { "type": "int", "id": 25, - "offset": 260, - "flags": 63, + "offset": 416, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 155828058 + "hash": 1570500405 }, - "m_specialEvent": { - "type": "bool", + "m_imageName": { + "type": "std::string", "id": 26, - "offset": 416, - "flags": 63, + "offset": 424, + "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1211693398 + "hash": 2391520543 }, - "m_pvpDuelModifiers": { - "type": "std::string", + "m_cloaked": { + "type": "bool", "id": 27, - "offset": 424, - "flags": 31, - "container": "List", - "dynamic": true, + "offset": 489, + "flags": 7, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 1796488605 + "hash": 7349510 }, - "m_pvpDuelModifierTemplates": { - "type": "class SharedPointer", + "m_casterInvisible": { + "type": "bool", "id": 28, - "offset": 472, - "flags": 31, - "container": "List", - "dynamic": true, + "offset": 490, + "flags": 7, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2010454400 + "pointer": false, + "hash": 310214650 }, - "m_pvpDuelModifiersBlob": { + "m_adjectives": { "type": "std::string", "id": 29, - "offset": 440, - "flags": 551, - "container": "Static", - "dynamic": false, + "offset": 576, + "flags": 7, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 2862516796 + "hash": 2967855037 }, - "m_premierPrizesStoreGIDsCSV": { - "type": "std::string", + "m_spellSourceType": { + "type": "enum SpellTemplate::kSpellSourceType", "id": 30, - "offset": 488, - "flags": 63, + "offset": 528, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2521625388 + "hash": 156272727, + "enum_options": { + "kCaster": 0, + "kPet": 1, + "kShadowCreature": 2, + "kWeapon": 3, + "kEquipment": 4 + } }, - "m_tournamentStyle": { - "type": "enum BracketInfo::EnumTournamentStyle", + "m_cloakedName": { + "type": "std::string", "id": 31, - "offset": 288, - "flags": 2097159, + "offset": 536, + "flags": 268435463, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1530265666, + "hash": 2846679215, "enum_options": { - "SINGLE_ELIM": 1, - "SWISS": 0 + "__BASECLASS": "SpellTemplate" } }, - "m_bracketRewardsList": { - "type": "class SharedPointer", + "m_purchaseRequirements": { + "type": "class RequirementList*", "id": 32, - "offset": 400, - "flags": 31, - "container": "List", - "dynamic": true, + "offset": 608, + "flags": 7, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": true, - "hash": 3842983067 + "hash": 3174641793 }, - "m_costPvPTourneyCurrency": { - "type": "int", + "m_displayRequirements": { + "type": "class RequirementList*", "id": 33, - "offset": 216, - "flags": 63, + "offset": 840, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1611997610 + "pointer": true, + "hash": 3646782876 }, - "m_subCostPvPTourneyCurrency": { - "type": "int", + "m_descriptionTrainer": { + "type": "std::string", "id": 34, - "offset": 220, - "flags": 63, + "offset": 616, + "flags": 8388871, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1871398932 + "hash": 1756093908 }, - "m_joinQueueRequirements": { - "type": "class SharedPointer", + "m_descriptionCombatHUD": { + "type": "std::string", "id": 35, - "offset": 96, - "flags": 31, + "offset": 648, + "flags": 8388871, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2746080983 + "pointer": false, + "hash": 1631478006 }, - "m_joinQueueRequirementsBlob": { - "type": "std::string", + "m_displayIndex": { + "type": "int", "id": 36, - "offset": 112, - "flags": 551, + "offset": 680, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2615447859 - } - } - }, - "1569654863": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1569654863, - "properties": { - "m_defaultStyle": { - "type": "class CursorStyle", - "id": 0, - "offset": 80, - "flags": 135, + "hash": 1250551048 + }, + "m_hiddenFromEffectsWindow": { + "type": "bool", + "id": 37, + "offset": 684, + "flags": 7, "container": "Static", "dynamic": false, - "singleton": true, + "singleton": false, "pointer": false, - "hash": 1643631551 + "hash": 1832736331 }, - "m_cursorStyles": { - "type": "class CursorStyle", - "id": 1, - "offset": 408, - "flags": 135, - "container": "Vector", - "dynamic": true, - "singleton": true, - "pointer": false, - "hash": 1639869163 - } - } - }, - "407233073": { - "name": "class EmotesRadialMenuBehavior*", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 407233073, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, + "m_ignoreCharms": { + "type": "bool", + "id": 38, + "offset": 685, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 + "hash": 1840075893 }, - "m_radialMenuData": { - "type": "std::string", - "id": 1, - "offset": 128, - "flags": 575, + "m_alwaysFizzle": { + "type": "bool", + "id": 39, + "offset": 686, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3438486999 - } - } - }, - "1981046985": { - "name": "class BlobCacheInterface", - "bases": [ - "PropertyClass" - ], - "hash": 1981046985, - "properties": {} - }, - "406941336": { - "name": "class std::list >", - "bases": [], - "hash": 406941336, - "properties": {} - }, - "807422220": { - "name": "class PlayerControllerClient*", - "bases": [ - "PlayerController", - "MoveBehavior::Controller", - "PropertyClass" - ], - "hash": 807422220, - "properties": { - "m_bCollisionDisabled": { - "type": "bool", - "id": 0, - "offset": 120, + "hash": 2030988856 + }, + "m_spellCategory": { + "type": "std::string", + "id": 40, + "offset": 688, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1732895577 + "hash": 2472376729 }, - "m_bVehicleMode": { + "m_showPolymorphedName": { "type": "bool", - "id": 1, - "offset": 121, + "id": 41, + "offset": 720, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1597295002 + "hash": 2097929096 }, - "m_fForwardModifier": { - "type": "float", - "id": 2, - "offset": 124, - "flags": 7, + "m_skipTruncation": { + "type": "bool", + "id": 42, + "offset": 721, + "flags": 263, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1173988321 + "hash": 1838335249 }, - "m_fBackModifier": { - "type": "float", - "id": 3, - "offset": 128, - "flags": 7, + "m_maxCopies": { + "type": "unsigned int", + "id": 43, + "offset": 724, + "flags": 263, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 148042045 + "hash": 403022326 }, - "m_fStrafeModifier": { - "type": "float", - "id": 4, - "offset": 132, - "flags": 7, + "m_levelRestriction": { + "type": "int", + "id": 44, + "offset": 728, + "flags": 263, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 226084913 + "hash": 176502472 }, - "m_fTurnModifier": { - "type": "float", - "id": 5, - "offset": 136, - "flags": 7, + "m_delayEnchantment": { + "type": "bool", + "id": 45, + "offset": 732, + "flags": 287, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2134998805 + "hash": 191336919 }, - "m_fAccelerationModifier": { - "type": "float", - "id": 6, - "offset": 144, - "flags": 7, + "m_delayEnchantmentOrder": { + "type": "enum SpellEffect::kDelayOrder", + "id": 46, + "offset": 736, + "flags": 287, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 592902742 + "hash": 2526055263, + "enum_options": { + "SpellEffect::kAnyOrder": 0, + "SpellEffect::kFirst": 1, + "SpellEffect::kSecond": 2 + } }, - "m_fDecelerationModifier": { - "type": "float", - "id": 7, - "offset": 148, - "flags": 7, + "m_previousSpellName": { + "type": "std::string", + "id": 47, + "offset": 744, + "flags": 268435463, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1770082811 - } - } - }, - "1981392230": { - "name": "class PetSnackBehaviorTemplate*", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 1981392230, - "properties": { - "m_behaviorName": { + "hash": 2903322585, + "enum_options": { + "__BASECLASS": "SpellTemplate" + } + }, + "m_cardFront": { "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, + "id": 48, + "offset": 456, + "flags": 131359, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3130754092 + "hash": 3557598526 }, - "m_maxReagentsPerStack": { - "type": "int", - "id": 1, - "offset": 120, - "flags": 7, + "m_useGloss": { + "type": "bool", + "id": 49, + "offset": 488, + "flags": 287, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1052405942 - } - } - }, - "1570333910": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1570333910, - "properties": { - "m_itemInfoList": { - "type": "class AvatarItemInfoBase*", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, + "hash": 668817544 + }, + "m_ignoreDispel": { + "type": "bool", + "id": 50, + "offset": 776, + "flags": 287, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3137169759 - } - } - }, - "407652490": { - "name": "class BracketTeam*", - "bases": [ - "PropertyClass" - ], - "hash": 407652490, - "properties": { - "m_matchTeamGID": { - "type": "gid", - "id": 0, - "offset": 88, - "flags": 31, + "pointer": false, + "hash": 1881041624 + }, + "m_backRowFriendly": { + "type": "bool", + "id": 51, + "offset": 777, + "flags": 287, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 725139968 + "hash": 501584377 }, - "m_matchTeam": { - "type": "class SharedPointer", - "id": 1, - "offset": 72, - "flags": 31, + "m_spellRank": { + "type": "class SharedPointer", + "id": 52, + "offset": 784, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": true, - "hash": 1737359170 + "hash": 3152361374 }, - "m_points": { - "type": "unsigned int", - "id": 2, - "offset": 100, - "flags": 31, + "m_secondarySchoolName": { + "type": "std::string", + "id": 53, + "offset": 800, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1049128778 + "hash": 1803268236 }, - "m_matchResults": { - "type": "class SharedPointer", - "id": 3, - "offset": 112, - "flags": 31, - "container": "List", - "dynamic": true, + "m_spellFusion": { + "type": "unsigned int", + "id": 54, + "offset": 836, + "flags": 7, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 615114630 + "pointer": false, + "hash": 1658928321 }, - "m_teamID": { - "type": "unsigned int", - "id": 4, - "offset": 128, - "flags": 31, + "m_requiredSchoolName": { + "type": "std::string", + "id": 55, + "offset": 848, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1193521089 + "hash": 3576058981 }, - "m_ranking": { - "type": "unsigned int", - "id": 5, - "offset": 132, - "flags": 31, + "m_fishingSpellType": { + "type": "enum FishingSpellTemplate::FishingSpellType", + "id": 56, + "offset": 880, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1977103383 + "hash": 3230697370, + "enum_options": { + "FS_Catching": 0, + "FS_Utility": 1, + "FS_PredatorBanishment": 2 + } }, - "m_pendingResult": { - "type": "class SharedPointer", - "id": 6, - "offset": 176, - "flags": 31, + "m_energyCost": { + "type": "int", + "id": 57, + "offset": 884, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 599580139 + "pointer": false, + "hash": 1236111677 }, - "m_name": { + "m_animationKFM": { "type": "std::string", - "id": 7, - "offset": 144, - "flags": 31, + "id": 58, + "offset": 888, + "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1717359772 + "hash": 2466280761 }, - "m_pointsAsOfTheLastCompletedRound": { - "type": "unsigned int", - "id": 8, - "offset": 104, - "flags": 31, + "m_animationName": { + "type": "std::string", + "id": 59, + "offset": 920, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2267670253 - } - } - }, - "807565152": { - "name": "class DependentResourceContainer*", - "bases": [ - "PropertyClass" - ], - "hash": 807565152, - "properties": { - "m_dependentResourceFilename": { + "hash": 3393414044 + }, + "m_soundEffectName": { "type": "std::string", - "id": 0, - "offset": 72, + "id": 60, + "offset": 952, "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2968493147 - } - } - }, - "1981910857": { - "name": "class PolymorphImprovementRatingInfoList*", - "bases": [ - "PropertyClass" - ], - "hash": 1981910857, - "properties": { - "m_list": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 31, - "container": "List", - "dynamic": true, + "hash": 3235436082 + }, + "m_soundEffectGain": { + "type": "float", + "id": 61, + "offset": 984, + "flags": 7, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 908909694 - } - } - }, - "807565142": { - "name": "class DependentResourceContainer", - "bases": [ - "PropertyClass" - ], - "hash": 807565142, - "properties": { - "m_dependentResourceFilename": { + "pointer": false, + "hash": 1827685932, + "enum_options": { + "__DEFAULT": "1.0" + } + }, + "m_fishingSpellImageIndex": { + "type": "int", + "id": 62, + "offset": 988, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 757127517 + }, + "m_fishingSpellImageName": { "type": "std::string", - "id": 0, - "offset": 72, + "id": 63, + "offset": 992, "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2968493147 + "hash": 1585969735 + }, + "m_fishingSchoolFocus": { + "type": "std::string", + "id": 64, + "offset": 1024, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2178393483 } } }, - "1570809995": { - "name": "class AdvPvPLeaderboardVisualBlob", + "369474109": { + "name": "class SharedPointer", "bases": [ + "BehaviorTemplate", "PropertyClass" ], - "hash": 1570809995, + "hash": 369474109, "properties": { - "m_level": { - "type": "int", + "m_behaviorName": { + "type": "std::string", "id": 0, "offset": 72, - "flags": 31, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 801285362 + "hash": 3130754092 }, - "m_school": { - "type": "unsigned int", + "m_defaultDeck": { + "type": "std::string", "id": 1, - "offset": 76, - "flags": 31, + "offset": 120, + "flags": 268435463, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1152268885 + "hash": 2375433463, + "enum_options": { + "__BASECLASS": "DeckTemplate" + } }, - "m_gender": { - "type": "int", + "m_primarySchoolName": { + "type": "std::string", "id": 2, - "offset": 80, - "flags": 31, + "offset": 152, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 473816879 + "hash": 3211370408 }, - "m_nameKeys": { - "type": "unsigned int", + "m_genericMaxRank": { + "type": "int", "id": 3, - "offset": 84, - "flags": 31, + "offset": 188, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1772225898 + "hash": 1490181353 }, - "m_badge": { - "type": "std::string", + "m_schoolMaxRank": { + "type": "int", "id": 4, - "offset": 88, - "flags": 63, + "offset": 192, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2286962478 + "hash": 1600140084 }, - "m_pCharacterBehavior": { - "type": "class SharedPointer", + "m_genericMaxInstances": { + "type": "int", "id": 5, - "offset": 120, - "flags": 31, + "offset": 196, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2724673923 + "pointer": false, + "hash": 1724791269 }, - "m_pEquipment": { - "type": "class SharedPointer", + "m_schoolMaxInstances": { + "type": "int", "id": 6, - "offset": 136, - "flags": 31, + "offset": 200, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2473540161 + "pointer": false, + "hash": 1818539792 }, - "m_pStats": { - "type": "class SharedPointer", + "m_maxSpells": { + "type": "int", "id": 7, - "offset": 152, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2212894623 - }, - "m_pGameEffects": { - "type": "class SharedPointer", - "id": 8, - "offset": 168, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1557857436 - }, - "m_petTID": { - "type": "unsigned int", - "id": 9, - "offset": 200, - "flags": 31, + "offset": 204, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1037635095 + "hash": 818580275 }, - "m_pPetBehavior": { - "type": "class SharedPointer", - "id": 10, + "m_maxTreasureCards": { + "type": "int", + "id": 8, "offset": 208, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2663493503 - }, - "m_pPetJewels": { - "type": "class SharedPointer", - "id": 11, - "offset": 224, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 733229991 - } - } - }, - "1981908297": { - "name": "class PolymorphImprovementRatingInfoList", - "bases": [ - "PropertyClass" - ], - "hash": 1981908297, - "properties": { - "m_list": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 908909694 - } - } - }, - "409574036": { - "name": "class SharedPointer", - "bases": [ - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 409574036, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 + "hash": 383300312 }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, + "m_maxArchmasteryPoints": { + "type": "float", + "id": 9, + "offset": 212, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2285866132 + "hash": 430012637 } } }, - "409421015": { - "name": "class SharedPointer", + "810478868": { + "name": "class SharedPointer", "bases": [ - "ZoneTokenBase", + "GraphicalSpell", + "Spell", "PropertyClass" ], - "hash": 409421015, + "hash": 810478868, "properties": { - "m_debugName": { - "type": "std::string", + "m_templateID": { + "type": "unsigned int", "id": 0, - "offset": 72, + "offset": 128, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3553984419 + "hash": 1286746870 }, - "m_adjectiveList": { - "type": "std::string", + "m_enchantment": { + "type": "unsigned int", "id": 1, - "offset": 104, + "offset": 80, "flags": 31, - "container": "List", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 3195213318 + "hash": 2217886818 }, - "m_icon": { - "type": "std::string", + "m_pipCost": { + "type": "class SharedPointer", "id": 2, - "offset": 120, - "flags": 131103, + "offset": 176, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1717182340 + "pointer": true, + "hash": 3605704820 }, - "m_iconBW": { - "type": "std::string", + "m_regularAdjust": { + "type": "int", "id": 3, - "offset": 152, - "flags": 131103, + "offset": 192, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2047461085 + "hash": 1420453335 }, - "m_description": { - "type": "std::string", + "m_magicSchoolID": { + "type": "unsigned int", "id": 4, - "offset": 184, - "flags": 8388639, + "offset": 136, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1649374815 + "hash": 893146499 }, - "m_displayMode": { - "type": "enum ZTDisplayMode", + "m_accuracy": { + "type": "unsigned char", "id": 5, - "offset": 216, - "flags": 2097183, + "offset": 132, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2216526410, - "enum_options": { - "ZTDM_Shown": 0, - "ZTDM_Discoverable": 1, - "ZTDM_Hidden": 2 - } + "hash": 2273914939 }, - "m_storage": { - "type": "enum ZTStorage", + "m_treasureCard": { + "type": "bool", "id": 6, - "offset": 220, - "flags": 2097183, + "offset": 197, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2290454852, - "enum_options": { - "ZTS_Player": 0, - "ZTS_Zone": 1 - } + "hash": 1764879128 }, - "m_onEnable": { - "type": "class SharedPointer", + "m_battleCard": { + "type": "bool", "id": 7, - "offset": 224, - "flags": 7, + "offset": 198, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2591736864 + "pointer": false, + "hash": 1332843753 }, - "m_onDiscover": { - "type": "class SharedPointer", + "m_itemCard": { + "type": "bool", "id": 8, - "offset": 240, + "offset": 199, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2826026872 + "pointer": false, + "hash": 1683654300 }, - "m_onDisable": { - "type": "class SharedPointer", + "m_sideBoard": { + "type": "bool", "id": 9, - "offset": 256, + "offset": 200, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1860656717 + "pointer": false, + "hash": 1897838368 }, - "m_sourceID": { - "type": "gid", + "m_spellID": { + "type": "unsigned int", "id": 10, - "offset": 272, + "offset": 204, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1134700470 + "hash": 1697483258 }, - "m_inZone": { + "m_leavesPlayWhenCastOverride": { "type": "bool", "id": 11, - "offset": 280, + "offset": 216, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 564535654 + "hash": 874407398 }, - "m_enabled": { + "m_cloaked": { "type": "bool", "id": 12, - "offset": 281, - "flags": 31, + "offset": 196, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 504506718 + "hash": 7349510 }, - "m_discovered": { + "m_enchantmentSpellIsItemCard": { "type": "bool", "id": 13, - "offset": 282, + "offset": 76, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2060478331 + "hash": 531590701 }, - "m_onSet": { - "type": "class SharedPointer", + "m_premutationSpellID": { + "type": "unsigned int", "id": 14, - "offset": 288, - "flags": 7, + "offset": 112, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1964529317 + "pointer": false, + "hash": 1530256370 }, - "m_onClear": { - "type": "class SharedPointer", + "m_enchantedThisCombat": { + "type": "bool", "id": 15, - "offset": 304, - "flags": 7, + "offset": 77, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, + "pointer": false, + "hash": 1895738923 + }, + "m_paramOverrides": { + "type": "class SharedPointer", + "id": 16, + "offset": 224, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, "pointer": true, - "hash": 1655978208 + "hash": 2061635599 }, - "m_bSet": { + "m_subEffectMeta": { + "type": "class SharedPointer", + "id": 17, + "offset": 240, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1944101106 + }, + "m_delayEnchantment": { "type": "bool", - "id": 16, - "offset": 320, + "id": 18, + "offset": 257, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 191336919 + }, + "m_PvE": { + "type": "bool", + "id": 19, + "offset": 264, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 269492350 + }, + "m_delayEnchantmentOrder": { + "type": "enum SpellEffect::kDelayOrder", + "id": 20, + "offset": 72, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2526055263, + "enum_options": { + "SpellEffect::kAnyOrder": 0, + "SpellEffect::kFirst": 1, + "SpellEffect::kSecond": 2 + } + }, + "m_roundAddedTC": { + "type": "int", + "id": 21, + "offset": 260, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 221694593 + "hash": 112365451 + }, + "m_secondarySchoolID": { + "type": "unsigned int", + "id": 22, + "offset": 304, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2081206026 + }, + "m_fusionState": { + "type": "enum Spell::FusionState", + "id": 23, + "offset": 308, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 835324539, + "enum_options": { + "FS_Invalid": 0, + "FS_Partial": 1, + "FS_Valid": 2 + } } } }, - "807665868": { - "name": "class DespawnInfo", + "1660204028": { + "name": "class RemoveHangingEffectCinematicAction*", "bases": [ + "ActorCinematicAction", + "CinematicAction", "PropertyClass" ], - "hash": 807665868, + "hash": 1660204028, "properties": { - "m_killer": { - "type": "gid", + "m_timeOffset": { + "type": "float", "id": 0, "offset": 72, - "flags": 31, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 635022555 + "hash": 2237098605 }, - "m_despawnEffect": { - "type": "unsigned int", + "m_actor": { + "type": "std::string", "id": 1, "offset": 80, - "flags": 31, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1477583404 + "hash": 2285866132 + }, + "m_cloaked": { + "type": "bool", + "id": 2, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 7349510 } } }, - "1572128783": { - "name": "class BracketRequest*", + "809514271": { + "name": "class std::vector >", + "bases": [], + "hash": 809514271, + "properties": {} + }, + "1660064566": { + "name": "class SharedPointer", "bases": [ - "PvPMatchRequest", - "MatchRequest", + "ObstacleCourseSpeedUpBehavior", + "ObstacleCourseObstaclePathBase", + "ObstacleCourseObstacleBehavior", + "BehaviorInstance", "PropertyClass" ], - "hash": 1572128783, + "hash": 1660064566, "properties": { - "m_characterID": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + } + } + }, + "1207527840": { + "name": "class SharedPointer", + "bases": [ + "MatchActor", + "PropertyClass" + ], + "hash": 1207527840, + "properties": { + "m_nActorID": { "type": "gid", "id": 0, - "offset": 72, + "offset": 88, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 210498386 + "hash": 663762476 }, - "m_tournamentNameID": { - "type": "unsigned int", + "m_nLadderContainerID": { + "type": "gid", "id": 1, - "offset": 84, + "offset": 96, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1799846440 + "hash": 782107042 }, - "m_matchNameID": { + "m_nTournamentNameID": { "type": "unsigned int", "id": 2, - "offset": 80, + "offset": 104, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1751361288 + "hash": 471412886 }, - "m_leagueID": { - "type": "unsigned int", + "m_nTournamentID": { + "type": "gid", "id": 3, - "offset": 88, + "offset": 112, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 692361645 + "hash": 105258688 }, - "m_seasonID": { + "m_leagueID": { "type": "unsigned int", "id": 4, - "offset": 92, + "offset": 124, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 535260643 + "hash": 692361645 }, - "m_teams": { - "type": "class SharedPointer", + "m_seasonID": { + "type": "unsigned int", "id": 5, - "offset": 96, + "offset": 120, "flags": 31, - "container": "List", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1984373608 + "pointer": false, + "hash": 535260643 }, - "m_joinQueueRequirements": { - "type": "class SharedPointer", + "m_nMatchNameID": { + "type": "unsigned int", "id": 6, - "offset": 112, + "offset": 128, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2746080983 + "pointer": false, + "hash": 497033398 }, - "m_ignoredList": { + "m_nMatchID": { "type": "gid", "id": 7, - "offset": 128, + "offset": 136, "flags": 31, - "container": "List", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 1850924028 + "hash": 1050279648 }, - "m_matchTimer": { - "type": "float", + "m_nTeamID": { + "type": "gid", "id": 8, "offset": 144, "flags": 31, @@ -529211,532 +341096,595 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 1510935909 + "hash": 374990266 }, - "m_bonusTime": { + "m_status": { "type": "int", "id": 9, - "offset": 148, + "offset": 160, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1757496496 + "hash": 960781182 }, - "m_passPenalty": { - "type": "int", + "m_costAdj": { + "type": "class MatchCostAdjustment", "id": 10, - "offset": 152, + "offset": 200, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 982951662 + "hash": 913243331 }, - "m_yellowTime": { - "type": "int", + "m_pLadder": { + "type": "class SharedPointer", "id": 11, - "offset": 156, + "offset": 304, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1017028741 + "pointer": true, + "hash": 2484171182 }, - "m_redTime": { - "type": "int", + "m_bracketID": { + "type": "gid", "id": 12, - "offset": 160, + "offset": 152, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1909556708 + "hash": 441272961 }, - "m_minTurnTime": { + "m_overridingELO": { "type": "int", "id": 13, - "offset": 164, + "offset": 284, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 652524886 + "hash": 1428697363 }, - "m_effects": { - "type": "class SharedPointer", + "m_matchKFactor": { + "type": "int", "id": 14, - "offset": 168, + "offset": 288, "flags": 31, - "container": "Vector", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 804962647 + "pointer": false, + "hash": 773340305 }, - "m_maxNumberOfTeams": { - "type": "unsigned int", + "m_userID": { + "type": "gid", "id": 15, - "offset": 220, + "offset": 80, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1656964203 + "hash": 1037989700 }, - "m_minNumberOfTeams": { + "m_matchMakingRangeForMatches": { "type": "unsigned int", "id": 16, - "offset": 224, + "offset": 320, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 746353193 + "hash": 1193045098 }, - "m_timeLimitSec": { + "m_maxMatchMakingRangeForMatches": { "type": "unsigned int", "id": 17, - "offset": 216, + "offset": 324, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 312519798 + "hash": 1279540944 }, - "m_scheduleID": { - "type": "gid", + "m_allowRangeToExceedMaxForMatches": { + "type": "bool", "id": 18, - "offset": 232, + "offset": 328, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1439120946 + "hash": 1260448226 }, - "m_visibleTimeSeconds": { - "type": "unsigned int", + "m_matchCrownsCost": { + "type": "int", "id": 19, - "offset": 248, + "offset": 280, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1245818841 + "hash": 1094489596 }, - "m_registrationOpenTimeSeconds": { - "type": "unsigned int", + "m_machineID": { + "type": "gid", "id": 20, - "offset": 252, + "offset": 336, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2064854776 + "hash": 281396698 }, - "m_tournamentPreparingTimeSeconds": { - "type": "unsigned int", + "m_tier": { + "type": "int", "id": 21, - "offset": 256, + "offset": 344, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1121720544 + "hash": 219884238 }, - "m_teamSize": { + "m_rank": { "type": "int", "id": 22, - "offset": 240, + "offset": 348, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2131986300 + "hash": 219803942 }, - "m_bracketRewardsList": { - "type": "class SharedPointer", + "m_rating": { + "type": "int", "id": 23, - "offset": 272, - "flags": 7, - "container": "List", - "dynamic": true, + "offset": 352, + "flags": 31, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3842983067 + "pointer": false, + "hash": 899783871 }, - "m_name": { - "type": "std::string", + "m_levelBand": { + "type": "int", "id": 24, - "offset": 288, - "flags": 8388639, + "offset": 356, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1717359772 + "hash": 2097286567 }, - "m_roundStartsInSeconds": { - "type": "unsigned int", + "m_enteredQueue": { + "type": "int", "id": 25, - "offset": 260, + "offset": 376, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 346233980 + "hash": 638238406 }, - "m_roundBufferTimeSeconds": { - "type": "unsigned int", + "m_isSubscriber": { + "type": "bool", "id": 26, - "offset": 264, + "offset": 428, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 671173677 + "hash": 952325795 }, - "m_numberOfRounds": { - "type": "unsigned int", + "m_meetBracketBadgeRequirnments": { + "type": "bool", "id": 27, - "offset": 268, + "offset": 429, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2292833030 + "hash": 438139258 }, - "m_scoreMultiplier": { - "type": "float", + "m_1v1": { + "type": "bool", "id": 28, - "offset": 328, + "offset": 430, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 545011290 + "hash": 269458571 }, - "m_preferredNumberOfTeams": { - "type": "unsigned int", + "m_streak": { + "type": "int", "id": 29, - "offset": 228, + "offset": 360, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 686953092 + "hash": 961375108 }, - "m_specialEvent": { - "type": "bool", + "m_matches": { + "type": "int", "id": 30, - "offset": 192, + "offset": 364, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1211693398 + "hash": 1757638687 }, - "m_pvpDuelModifiers": { - "type": "std::string", + "m_lastFight": { + "type": "int", "id": 31, - "offset": 200, + "offset": 368, "flags": 31, - "container": "List", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 1796488605 + "hash": 91176384 }, - "m_premierPrizesStoreGIDsCSV": { + "m_PVPHistoryStr": { "type": "std::string", "id": 32, - "offset": 336, + "offset": 384, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2521625388 + "hash": 1498439420 }, - "m_costPvPTourneyCurrency": { - "type": "unsigned int", + "m_maxCritHit": { + "type": "float", "id": 33, - "offset": 320, + "offset": 416, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1823400061 + "hash": 2225327348 }, - "m_subCostPvPTourneyCurrency": { - "type": "unsigned int", + "m_maxBlockCrit": { + "type": "float", "id": 34, - "offset": 324, + "offset": 420, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2082801383 - } - } - }, - "1982878661": { - "name": "class HousingTextureBehaviorTemplate", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 1982878661, - "properties": { - "m_behaviorName": { + "hash": 135865530 + }, + "m_shadowPipRating": { + "type": "float", + "id": 35, + "offset": 424, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 507126123 + }, + "m_optInOut": { "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, + "id": 36, + "offset": 168, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3130754092 + "hash": 3013935453 }, - "m_textureType": { - "type": "enum HousingTextureType", - "id": 1, - "offset": 120, - "flags": 2097159, + "m_playerTimeDraw": { + "type": "bool", + "id": 37, + "offset": 431, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1680179944, - "enum_options": { - "HTT_FLOOR": 0, - "HTT_WALL": 1 - } + "hash": 447636221 }, - "m_textureFilename": { - "type": "std::string", - "id": 2, - "offset": 128, - "flags": 131079, + "m_pvpStatus": { + "type": "unsigned char", + "id": 38, + "offset": 432, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2208648365 - } - } - }, - "1571927647": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1571927647, - "properties": { - "m_energyTick": { + "hash": 773570858 + }, + "m_gender": { + "type": "short", + "id": 39, + "offset": 434, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 564443897 + }, + "m_level": { "type": "int", - "id": 0, - "offset": 72, - "flags": 7, + "id": 40, + "offset": 436, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1236715535 + "hash": 801285362 }, - "m_minPetLevelForJewels": { - "type": "unsigned char", - "id": 1, - "offset": 76, - "flags": 7, + "m_nameBlob": { + "type": "std::string", + "id": 41, + "offset": 440, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1631450758 + "hash": 3058206907 }, - "m_petJewelTalentIcon": { + "m_sSchool": { "type": "std::string", - "id": 2, - "offset": 80, - "flags": 7, + "id": 42, + "offset": 472, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3286601420 + "hash": 1846342998 + }, + "m_timeLeft": { + "type": "int", + "id": 43, + "offset": 508, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1315288020 } } }, - "1982718503": { - "name": "class SharedPointer", + "2096458182": { + "name": "class MadlibArgT*", "bases": [ - "GameEffectBase", + "MadlibArg", "PropertyClass" ], - "hash": 1982718503, + "hash": 2096458182, "properties": { - "m_currentTickCount": { - "type": "double", + "m_madlibToken": { + "type": "std::string", "id": 0, "offset": 80, - "flags": 63, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2533274692 + "hash": 3058682373 }, - "m_effectNameID": { + "m_madlibArgument": { "type": "unsigned int", "id": 1, - "offset": 96, - "flags": 63, + "offset": 112, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1204067144 - }, - "m_bIsOnPet": { - "type": "bool", - "id": 2, - "offset": 73, - "flags": 31, + "hash": 1089894617 + } + } + }, + "370266537": { + "name": "class SharedPointer", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 370266537, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 522593303 + "hash": 3130754092 }, - "m_originatorID": { - "type": "gid", - "id": 3, - "offset": 104, - "flags": 39, + "m_radius": { + "type": "float", + "id": 1, + "offset": 120, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1131810019 + "hash": 989410271 }, - "m_itemSlotID": { - "type": "unsigned int", - "id": 4, - "offset": 112, - "flags": 63, + "m_category": { + "type": "enum AudioCategory", + "id": 2, + "offset": 124, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1895747595 + "hash": 2951251982, + "enum_options": { + "AudioCategory_Irrelevent": 0, + "AudioCategory_Accoustic": 1, + "AudioCategory_Noise": 2, + "AudioCategory_Music": 3, + "AudioCategory_MusicAtSFXVolume": 4, + "AudioCategory_Dialog": 5, + "AudioCategory_UI": 6, + "AudioCategory_NoiseAtMusicVolume": 7 + } }, - "m_internalID": { - "type": "int", - "id": 5, - "offset": 92, - "flags": 63, + "m_exclusive": { + "type": "bool", + "id": 3, + "offset": 128, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1643137924 + "hash": 824383403 }, - "m_endTime": { - "type": "unsigned int", - "id": 6, - "offset": 88, - "flags": 31, + "m_active": { + "type": "bool", + "id": 4, + "offset": 129, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 716479635 + "hash": 239335471 }, - "m_spellName": { - "type": "std::string", - "id": 7, - "offset": 128, - "flags": 31, + "m_enableReqs": { + "type": "class SharedPointer", + "id": 5, + "offset": 136, + "flags": 263, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 2688485244 - }, - "m_percentChance": { - "type": "int", - "id": 8, - "offset": 160, - "flags": 31, + "pointer": true, + "hash": 3158020443 + } + } + }, + "1207026682": { + "name": "class WhirlyBurlyBehaviorTemplate*", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 1207026682, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 385662509 + "hash": 3130754092 } } }, - "1571236207": { - "name": "class StitchLeaderboard*", + "2095264355": { + "name": "class SharedPointer", "bases": [ "PropertyClass" ], - "hash": 1571236207, + "hash": 2095264355, "properties": { - "m_stitchLeaderboardList": { - "type": "gid", + "m_name": { + "type": "std::string", "id": 0, + "offset": 120, + "flags": 134217735, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1717359772 + }, + "m_stages": { + "type": "class SharedPointer", + "id": 1, "offset": 72, "flags": 7, "container": "List", "dynamic": true, "singleton": false, - "pointer": false, - "hash": 1311714008 + "pointer": true, + "hash": 2081530688 }, - "m_type": { - "type": "unsigned int", - "id": 1, + "m_actors": { + "type": "class SharedPointer", + "id": 2, "offset": 88, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 431304463 + "pointer": true, + "hash": 2242419761 + }, + "m_sharedAnimations": { + "type": "class SharedPointer", + "id": 3, + "offset": 104, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 3289641416 } } }, - "813925295": { - "name": "class MiniMapWindow*", + "369828333": { + "name": "class BalloonWindow*", "bases": [ + "WindowLayout", "Window", "PropertyClass" ], - "hash": 813925295, + "hash": 369828333, "properties": { "m_sName": { "type": "std::string", @@ -529772,11 +341720,9 @@ "hash": 983582334, "enum_options": { "HAS_BACK": 1, - "SCALE_CHILDREN": 2, "CAN_MOVE": 4, "CAN_SIZE": 8, "CAN_SCROLL": 16, - "FOCUS_LOCKED": 64, "CAN_FOCUS": 128, "CAN_DOCK": 32, "DO_NOT_CAPTURE_MOUSE": 256, @@ -529788,7 +341734,15 @@ "USE_ALPHA_BOUNDS": 8192, "AUTO_GROW": 16384, "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152 + "AUTO_RESIZE": 49152, + "H_CENTER": 16777216, + "H_RIGHT": 33554432, + "V_CENTER": 2147483648, + "V_BOTTOM": 67108864, + "SORT": 536870912, + "LAYOUT_VERT": 1073741824, + "LAYOUT_REVERSE": 2147483648, + "DO_NOT_WRAP": 134217728 } }, "m_Flags": { @@ -529948,1438 +341902,1409 @@ "singleton": false, "pointer": false, "hash": 3091503757 + }, + "m_nHSpacing": { + "type": "int", + "id": 16, + "offset": 584, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 893611957 + }, + "m_nVSpacing": { + "type": "int", + "id": 17, + "offset": 588, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 551359491 } } }, - "411122505": { - "name": "class GameEffectContainer", + "1207026362": { + "name": "class WhirlyBurlyBehaviorTemplate", "bases": [ + "BehaviorTemplate", "PropertyClass" ], - "hash": 411122505, + "hash": 1207026362, "properties": { - "m_publicEffects": { - "type": "class SharedPointer", + "m_behaviorName": { + "type": "std::string", "id": 0, - "offset": 88, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 3233153287 - }, - "m_myEffects": { - "type": "class SharedPointer", - "id": 1, "offset": 72, "flags": 7, - "container": "List", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2650414414 + "pointer": false, + "hash": 3130754092 } } }, - "811054127": { - "name": "class PvPLobbyOption", + "810897298": { + "name": "class WizStatisticEffect*", "bases": [ - "ServiceOptionBase", + "StatisticEffect", + "GameEffectBase", "PropertyClass" ], - "hash": 811054127, + "hash": 810897298, "properties": { - "m_serviceName": { - "type": "std::string", + "m_currentTickCount": { + "type": "double", "id": 0, - "offset": 72, - "flags": 31, + "offset": 80, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2206028813 + "hash": 2533274692 }, - "m_iconKey": { - "type": "std::string", + "m_effectNameID": { + "type": "unsigned int", "id": 1, - "offset": 168, - "flags": 31, + "offset": 96, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2457138637 + "hash": 1204067144 }, - "m_displayKey": { - "type": "std::string", + "m_bIsOnPet": { + "type": "bool", "id": 2, - "offset": 104, + "offset": 73, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3023276954 + "hash": 522593303 }, - "m_serviceIndex": { - "type": "unsigned int", + "m_originatorID": { + "type": "gid", "id": 3, - "offset": 204, - "flags": 31, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2103126710 + "hash": 1131810019 }, - "m_forceInteract": { - "type": "bool", + "m_itemSlotID": { + "type": "unsigned int", "id": 4, - "offset": 200, - "flags": 31, + "offset": 112, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1705789564 + "hash": 1895747595 }, - "m_tournamentName": { - "type": "std::string", + "m_internalID": { + "type": "int", "id": 5, - "offset": 216, - "flags": 31, + "offset": 92, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3329241865 - } - } - }, - "411114416": { - "name": "class SpawnPointTemplate*", - "bases": [ - "PropertyClass" - ], - "hash": 411114416, - "properties": { - "m_location": { - "type": "class Vector3D", - "id": 0, - "offset": 72, - "flags": 7, + "hash": 1643137924 + }, + "m_endTime": { + "type": "unsigned int", + "id": 6, + "offset": 88, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2239683611 + "hash": 716479635 }, - "m_boxLengths": { - "type": "class Vector3D", - "id": 1, - "offset": 84, - "flags": 7, + "m_lookupIndex": { + "type": "int", + "id": 7, + "offset": 128, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2872763232 + "hash": 1626623948 }, - "m_templateID.m_full": { - "type": "unsigned __int64", - "id": 2, - "offset": 96, - "flags": 7, + "m_damageBonusPercent": { + "type": "float", + "id": 8, + "offset": 136, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 633907631 + "hash": 623230606 }, - "m_respawnTime": { + "m_damageBonusFlat": { "type": "float", - "id": 3, - "offset": 104, - "flags": 7, + "id": 9, + "offset": 180, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1554573574 + "hash": 2212039108 }, - "m_numSpawns": { - "type": "int", - "id": 4, - "offset": 108, - "flags": 7, + "m_accuracyBonusPercent": { + "type": "float", + "id": 10, + "offset": 140, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1269366534 + "hash": 1972336538 }, - "m_zoneLevelMin": { - "type": "unsigned int", - "id": 5, - "offset": 112, - "flags": 7, + "m_armorPiercingBonusPercent": { + "type": "float", + "id": 11, + "offset": 144, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1028934149 + "hash": 1569912641 }, - "m_zoneLevelMax": { - "type": "unsigned int", - "id": 6, - "offset": 116, - "flags": 7, + "m_damageReducePercent": { + "type": "float", + "id": 12, + "offset": 148, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1028933895 + "hash": 541736927 }, - "m_zoneLevelUp": { - "type": "unsigned int", - "id": 7, - "offset": 120, - "flags": 7, + "m_damageReduceFlat": { + "type": "float", + "id": 13, + "offset": 152, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1342541638 - } - } - }, - "809144977": { - "name": "class ObjStateCategory*", - "bases": [ - "PropertyClass" - ], - "hash": 809144977, - "properties": { - "m_categoryName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, + "hash": 684172469 + }, + "m_accuracyReducePercent": { + "type": "float", + "id": 14, + "offset": 156, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3591157466 + "hash": 2112559723 }, - "m_states": { - "type": "class ObjState*", - "id": 1, - "offset": 176, - "flags": 7, - "container": "List", - "dynamic": true, + "m_healBonusPercent": { + "type": "float", + "id": 15, + "offset": 160, + "flags": 63, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2490652686 + "pointer": false, + "hash": 562313577 }, - "m_startState": { - "type": "std::string", - "id": 2, - "offset": 112, - "flags": 7, + "m_healIncBonusPercent": { + "type": "float", + "id": 16, + "offset": 164, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2166880458 + "hash": 2182535587 }, - "m_baseState": { - "type": "std::string", - "id": 3, - "offset": 144, - "flags": 7, + "m_hitPointBonus": { + "type": "float", + "id": 17, + "offset": 204, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2949363223 - } - } - }, - "1986538696": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1986538696, - "properties": { - "m_settings": { - "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 31, + "hash": 880644461 + }, + "m_spellChargeBonus": { + "type": "int", + "id": 18, + "offset": 212, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1279804446 + "hash": 2019610507 }, - "m_maycastChance": { + "m_powerPipBonusPercent": { "type": "float", - "id": 1, - "offset": 76, - "flags": 31, + "id": 19, + "offset": 168, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1532158347 - } - } - }, - "808843619": { - "name": "class PetGameKioskOption*", - "bases": [ - "ServiceOptionBase", - "PropertyClass" - ], - "hash": 808843619, - "properties": { - "m_serviceName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, + "hash": 1671446341 + }, + "m_petActChance": { + "type": "int", + "id": 20, + "offset": 200, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2206028813 + "hash": 237418461 }, - "m_iconKey": { - "type": "std::string", - "id": 1, - "offset": 168, - "flags": 31, + "m_manaBonus": { + "type": "float", + "id": 21, + "offset": 208, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2457138637 + "hash": 1372708603 }, - "m_displayKey": { - "type": "std::string", - "id": 2, - "offset": 104, - "flags": 31, + "m_expPercent": { + "type": "float", + "id": 22, + "offset": 184, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3023276954 + "hash": 1147850677 }, - "m_serviceIndex": { - "type": "unsigned int", - "id": 3, - "offset": 204, - "flags": 31, + "m_goldPercent": { + "type": "float", + "id": 23, + "offset": 188, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2103126710 + "hash": 1095720878 }, - "m_forceInteract": { - "type": "bool", - "id": 4, - "offset": 200, - "flags": 31, + "m_energyBonus": { + "type": "float", + "id": 24, + "offset": 216, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1705789564 - } - } - }, - "1572128943": { - "name": "class BracketRequest", - "bases": [ - "PvPMatchRequest", - "MatchRequest", - "PropertyClass" - ], - "hash": 1572128943, - "properties": { - "m_characterID": { - "type": "gid", - "id": 0, - "offset": 72, - "flags": 31, + "hash": 2223158984 + }, + "m_criticalHitRating": { + "type": "float", + "id": 25, + "offset": 220, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 210498386 + "hash": 1978690540 }, - "m_tournamentNameID": { - "type": "unsigned int", - "id": 1, - "offset": 84, - "flags": 31, + "m_blockRating": { + "type": "float", + "id": 26, + "offset": 224, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1799846440 + "hash": 2088486759 }, - "m_matchNameID": { - "type": "unsigned int", - "id": 2, - "offset": 80, - "flags": 31, + "m_accuracyRating": { + "type": "float", + "id": 27, + "offset": 228, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1751361288 + "hash": 165525575 }, - "m_leagueID": { - "type": "unsigned int", - "id": 3, - "offset": 88, - "flags": 31, + "m_powerPipRating": { + "type": "float", + "id": 28, + "offset": 232, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 692361645 + "hash": 1355340722 }, - "m_seasonID": { - "type": "unsigned int", - "id": 4, - "offset": 92, - "flags": 31, + "m_damageResistanceRating": { + "type": "float", + "id": 29, + "offset": 240, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 535260643 + "hash": 1961377740 }, - "m_teams": { - "type": "class SharedPointer", - "id": 5, - "offset": 96, - "flags": 31, - "container": "List", - "dynamic": true, + "m_archmastery": { + "type": "float", + "id": 30, + "offset": 244, + "flags": 63, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1984373608 + "pointer": false, + "hash": 1963579610 }, - "m_joinQueueRequirements": { - "type": "class SharedPointer", - "id": 6, - "offset": 112, - "flags": 31, + "m_archmasteryBonusPercent": { + "type": "float", + "id": 31, + "offset": 288, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2746080983 + "pointer": false, + "hash": 1908627154 }, - "m_ignoredList": { - "type": "gid", - "id": 7, - "offset": 128, - "flags": 31, - "container": "List", - "dynamic": true, + "m_balanceMastery": { + "type": "int", + "id": 32, + "offset": 248, + "flags": 63, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 1850924028 + "hash": 149062181 }, - "m_matchTimer": { - "type": "float", - "id": 8, - "offset": 144, - "flags": 31, + "m_deathMastery": { + "type": "int", + "id": 33, + "offset": 252, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1510935909 + "hash": 1421218661 }, - "m_bonusTime": { + "m_fireMastery": { "type": "int", - "id": 9, - "offset": 148, - "flags": 31, + "id": 34, + "offset": 256, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1757496496 + "hash": 1431794949 }, - "m_passPenalty": { + "m_iceMastery": { "type": "int", - "id": 10, - "offset": 152, - "flags": 31, + "id": 35, + "offset": 260, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 982951662 + "hash": 704864240 }, - "m_yellowTime": { + "m_lifeMastery": { "type": "int", - "id": 11, - "offset": 156, - "flags": 31, + "id": 36, + "offset": 264, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1017028741 + "hash": 2142136447 }, - "m_redTime": { + "m_mythMastery": { "type": "int", - "id": 12, - "offset": 160, - "flags": 31, + "id": 37, + "offset": 268, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1909556708 + "hash": 1766317185 }, - "m_minTurnTime": { + "m_stormMastery": { "type": "int", - "id": 13, - "offset": 164, - "flags": 31, + "id": 38, + "offset": 272, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 652524886 + "hash": 1883988244 }, - "m_effects": { - "type": "class SharedPointer", - "id": 14, - "offset": 168, - "flags": 31, - "container": "Vector", - "dynamic": true, + "m_stunResistancePercent": { + "type": "float", + "id": 39, + "offset": 276, + "flags": 63, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 804962647 + "pointer": false, + "hash": 1868382627 }, - "m_maxNumberOfTeams": { - "type": "unsigned int", - "id": 15, - "offset": 220, - "flags": 31, + "m_fishingLuckBonusPercent": { + "type": "float", + "id": 40, + "offset": 192, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1656964203 + "hash": 1363349254 }, - "m_minNumberOfTeams": { - "type": "unsigned int", - "id": 16, - "offset": 224, - "flags": 31, + "m_shadowPipBonusPercent": { + "type": "float", + "id": 41, + "offset": 172, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 746353193 + "hash": 1426533310 }, - "m_timeLimitSec": { + "m_wispBonusPercent": { + "type": "float", + "id": 42, + "offset": 196, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1304386546 + }, + "m_pipConversionRating": { + "type": "float", + "id": 43, + "offset": 280, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 246855691 + }, + "m_shadowPipRating": { + "type": "float", + "id": 44, + "offset": 236, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 507126123 + } + } + }, + "1660948595": { + "name": "class SharedPointer", + "bases": [ + "WizStatisticEffect", + "StatisticEffect", + "GameEffectBase", + "PropertyClass" + ], + "hash": 1660948595, + "properties": { + "m_currentTickCount": { + "type": "double", + "id": 0, + "offset": 80, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2533274692 + }, + "m_effectNameID": { "type": "unsigned int", - "id": 17, - "offset": 216, + "id": 1, + "offset": 96, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1204067144 + }, + "m_bIsOnPet": { + "type": "bool", + "id": 2, + "offset": 73, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 312519798 + "hash": 522593303 }, - "m_scheduleID": { + "m_originatorID": { "type": "gid", - "id": 18, - "offset": 232, - "flags": 31, + "id": 3, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1439120946 + "hash": 1131810019 }, - "m_visibleTimeSeconds": { + "m_itemSlotID": { "type": "unsigned int", - "id": 19, - "offset": 248, - "flags": 31, + "id": 4, + "offset": 112, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1245818841 + "hash": 1895747595 }, - "m_registrationOpenTimeSeconds": { - "type": "unsigned int", - "id": 20, - "offset": 252, - "flags": 31, + "m_internalID": { + "type": "int", + "id": 5, + "offset": 92, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2064854776 + "hash": 1643137924 }, - "m_tournamentPreparingTimeSeconds": { + "m_endTime": { "type": "unsigned int", - "id": 21, - "offset": 256, + "id": 6, + "offset": 88, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1121720544 + "hash": 716479635 }, - "m_teamSize": { + "m_lookupIndex": { "type": "int", - "id": 22, - "offset": 240, + "id": 7, + "offset": 128, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2131986300 + "hash": 1626623948 }, - "m_bracketRewardsList": { - "type": "class SharedPointer", - "id": 23, - "offset": 272, - "flags": 7, - "container": "List", - "dynamic": true, + "m_damageBonusPercent": { + "type": "float", + "id": 8, + "offset": 136, + "flags": 63, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3842983067 + "pointer": false, + "hash": 623230606 }, - "m_name": { - "type": "std::string", - "id": 24, - "offset": 288, - "flags": 8388639, + "m_damageBonusFlat": { + "type": "float", + "id": 9, + "offset": 180, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1717359772 + "hash": 2212039108 }, - "m_roundStartsInSeconds": { - "type": "unsigned int", - "id": 25, - "offset": 260, - "flags": 31, + "m_accuracyBonusPercent": { + "type": "float", + "id": 10, + "offset": 140, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 346233980 + "hash": 1972336538 }, - "m_roundBufferTimeSeconds": { - "type": "unsigned int", - "id": 26, - "offset": 264, - "flags": 31, + "m_armorPiercingBonusPercent": { + "type": "float", + "id": 11, + "offset": 144, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 671173677 + "hash": 1569912641 }, - "m_numberOfRounds": { - "type": "unsigned int", - "id": 27, - "offset": 268, - "flags": 31, + "m_damageReducePercent": { + "type": "float", + "id": 12, + "offset": 148, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2292833030 + "hash": 541736927 }, - "m_scoreMultiplier": { + "m_damageReduceFlat": { "type": "float", - "id": 28, - "offset": 328, - "flags": 31, + "id": 13, + "offset": 152, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 545011290 + "hash": 684172469 }, - "m_preferredNumberOfTeams": { - "type": "unsigned int", - "id": 29, - "offset": 228, - "flags": 31, + "m_accuracyReducePercent": { + "type": "float", + "id": 14, + "offset": 156, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 686953092 + "hash": 2112559723 }, - "m_specialEvent": { - "type": "bool", - "id": 30, - "offset": 192, - "flags": 31, + "m_healBonusPercent": { + "type": "float", + "id": 15, + "offset": 160, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1211693398 + "hash": 562313577 }, - "m_pvpDuelModifiers": { - "type": "std::string", - "id": 31, - "offset": 200, - "flags": 31, - "container": "List", - "dynamic": true, + "m_healIncBonusPercent": { + "type": "float", + "id": 16, + "offset": 164, + "flags": 63, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 1796488605 + "hash": 2182535587 }, - "m_premierPrizesStoreGIDsCSV": { - "type": "std::string", - "id": 32, - "offset": 336, - "flags": 31, + "m_hitPointBonus": { + "type": "float", + "id": 17, + "offset": 204, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2521625388 + "hash": 880644461 }, - "m_costPvPTourneyCurrency": { - "type": "unsigned int", - "id": 33, - "offset": 320, - "flags": 31, + "m_spellChargeBonus": { + "type": "int", + "id": 18, + "offset": 212, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1823400061 + "hash": 2019610507 }, - "m_subCostPvPTourneyCurrency": { - "type": "unsigned int", - "id": 34, - "offset": 324, - "flags": 31, + "m_powerPipBonusPercent": { + "type": "float", + "id": 19, + "offset": 168, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2082801383 - } - } - }, - "1986283116": { - "name": "class WizPetTemplate", - "bases": [ - "WizGameObjectTemplate", - "GameObjectTemplate", - "CoreTemplate", - "PropertyClass" - ], - "hash": 1986283116, - "properties": { - "m_behaviors": { - "type": "class BehaviorTemplate*", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Vector", - "dynamic": true, + "hash": 1671446341 + }, + "m_petActChance": { + "type": "int", + "id": 20, + "offset": 200, + "flags": 63, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1197808594 + "pointer": false, + "hash": 237418461 }, - "m_objectName": { - "type": "std::string", - "id": 1, - "offset": 96, - "flags": 7, + "m_manaBonus": { + "type": "float", + "id": 21, + "offset": 208, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2154940147 + "hash": 1372708603 }, - "m_templateID": { - "type": "unsigned int", - "id": 2, - "offset": 128, - "flags": 16777223, + "m_expPercent": { + "type": "float", + "id": 22, + "offset": 184, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1286746870 + "hash": 1147850677 }, - "m_visualID": { - "type": "unsigned int", - "id": 3, - "offset": 132, - "flags": 7, + "m_goldPercent": { + "type": "float", + "id": 23, + "offset": 188, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1118778894 + "hash": 1095720878 }, - "m_adjectiveList": { - "type": "std::string", - "id": 4, - "offset": 248, - "flags": 7, - "container": "List", - "dynamic": true, + "m_energyBonus": { + "type": "float", + "id": 24, + "offset": 216, + "flags": 63, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 3195213318 + "hash": 2223158984 }, - "m_exemptFromAOI": { - "type": "bool", - "id": 5, - "offset": 240, - "flags": 7, + "m_criticalHitRating": { + "type": "float", + "id": 25, + "offset": 220, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1457879059 + "hash": 1978690540 }, - "m_displayName": { - "type": "std::string", - "id": 6, - "offset": 168, - "flags": 8388615, + "m_blockRating": { + "type": "float", + "id": 26, + "offset": 224, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2446900370 + "hash": 2088486759 }, - "m_description": { - "type": "std::string", - "id": 7, - "offset": 136, - "flags": 8388615, + "m_accuracyRating": { + "type": "float", + "id": 27, + "offset": 228, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1649374815 + "hash": 165525575 }, - "m_nObjectType": { - "type": "enum ObjectType", - "id": 8, - "offset": 200, - "flags": 2097159, + "m_powerPipRating": { + "type": "float", + "id": 28, + "offset": 232, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2118905880, - "enum_options": { - "OT_UNDEFINED": 0, - "OT_PLAYER": 1, - "OT_NPC": 2, - "OT_PROP": 3, - "OT_OBJECT": 4, - "OT_HOUSE": 5, - "OT_KEY": 6, - "OT_OLD_KEY": 7, - "OT_DEED": 8, - "OT_MAIL": 9, - "OT_RECIPE": 17, - "OT_EQUIP_HEAD": 10, - "OT_EQUIP_CHEST": 11, - "OT_EQUIP_LEGS": 12, - "OT_EQUIP_HANDS": 13, - "OT_EQUIP_FINGER": 14, - "OT_EQUIP_FEET": 15, - "OT_EQUIP_EAR": 16, - "OT_BUILDING_BLOCK": 18, - "OT_BUILDING_BLOCK_SOLID": 19, - "OT_GOLF": 20, - "OT_DOOR": 21, - "OT_PET": 22, - "OT_FABRIC": 23, - "OT_WINDOW": 24, - "OT_ROOF": 25, - "OT_HORSE": 26, - "OT_STRUCTURE": 27, - "OT_HOUSING_TEXTURE": 28, - "OT_PLANT": 29 - } + "hash": 1355340722 }, - "m_sIcon": { - "type": "std::string", - "id": 9, - "offset": 208, - "flags": 131079, + "m_damageResistanceRating": { + "type": "float", + "id": 29, + "offset": 240, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2306259831 + "hash": 1961377740 }, - "m_lootTable": { - "type": "std::string", - "id": 10, - "offset": 280, - "flags": 268435463, - "container": "List", - "dynamic": true, + "m_archmastery": { + "type": "float", + "id": 30, + "offset": 244, + "flags": 63, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 2539512673, - "enum_options": { - "__BASECLASS": "LootTable" - } + "hash": 1963579610 }, - "m_deathParticles": { - "type": "std::string", - "id": 11, - "offset": 296, - "flags": 131079, + "m_archmasteryBonusPercent": { + "type": "float", + "id": 31, + "offset": 288, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3201049672 + "hash": 1908627154 }, - "m_deathSound": { - "type": "std::string", - "id": 12, - "offset": 328, - "flags": 131079, + "m_balanceMastery": { + "type": "int", + "id": 32, + "offset": 248, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1865613610 + "hash": 149062181 }, - "m_hitSound": { - "type": "std::string", - "id": 13, - "offset": 360, - "flags": 131079, + "m_deathMastery": { + "type": "int", + "id": 33, + "offset": 252, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2746656777 + "hash": 1421218661 }, - "m_castSound": { - "type": "std::string", - "id": 14, - "offset": 392, - "flags": 131079, + "m_fireMastery": { + "type": "int", + "id": 34, + "offset": 256, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3343064815 + "hash": 1431794949 }, - "m_aggroSound": { - "type": "std::string", - "id": 15, - "offset": 424, - "flags": 131079, + "m_iceMastery": { + "type": "int", + "id": 35, + "offset": 260, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3421949940 + "hash": 704864240 }, - "m_primarySchoolName": { - "type": "std::string", - "id": 16, - "offset": 456, - "flags": 7, + "m_lifeMastery": { + "type": "int", + "id": 36, + "offset": 264, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3211370408 + "hash": 2142136447 }, - "m_locationPreference": { - "type": "std::string", - "id": 17, - "offset": 488, - "flags": 7, + "m_mythMastery": { + "type": "int", + "id": 37, + "offset": 268, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2817699507 + "hash": 1766317185 }, - "m_leashOffsetOverride": { - "type": "class SharedPointer", - "id": 18, - "offset": 528, - "flags": 7, + "m_stormMastery": { + "type": "int", + "id": 38, + "offset": 272, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1692586788 - } - } - }, - "808508263": { - "name": "class ReqHangingOverTime", - "bases": [ - "ConditionalSpellEffectRequirement", - "Requirement", - "PropertyClass" - ], - "hash": 808508263, - "properties": { - "m_applyNOT": { - "type": "bool", - "id": 0, - "offset": 72, - "flags": 31, + "pointer": false, + "hash": 1883988244 + }, + "m_stunResistancePercent": { + "type": "float", + "id": 39, + "offset": 276, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1746328074, - "enum_options": { - "__DEFAULT": 0 - } + "hash": 1868382627 }, - "m_operator": { - "type": "enum Requirement::Operator", - "id": 1, - "offset": 76, - "flags": 2097183, + "m_fishingLuckBonusPercent": { + "type": "float", + "id": 40, + "offset": 192, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2672792317, - "enum_options": { - "ROP_AND": 0, - "ROP_OR": 1, - "__DEFAULT": "ROP_AND" - } + "hash": 1363349254 }, - "m_targetType": { - "type": "enum ConditionalSpellEffectRequirement::RequirementTarget", - "id": 2, - "offset": 80, - "flags": 2097159, + "m_shadowPipBonusPercent": { + "type": "float", + "id": 41, + "offset": 172, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2547737902, - "enum_options": { - "RT_Caster": 0, - "RT_Target": 1 - } + "hash": 1426533310 }, - "m_disposition": { - "type": "enum SpellEffect::kHangingDisposition", - "id": 3, - "offset": 88, - "flags": 2097159, + "m_wispBonusPercent": { + "type": "float", + "id": 42, + "offset": 196, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1904841031, - "enum_options": { - "SpellEffect::kBoth": 0, - "SpellEffect::kBeneficial": 1, - "SpellEffect::kHarmful": 2 - } + "hash": 1304386546 }, - "m_minCount": { - "type": "int", - "id": 4, - "offset": 92, - "flags": 31, + "m_pipConversionRating": { + "type": "float", + "id": 43, + "offset": 280, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1486503815 + "hash": 246855691 }, - "m_maxCount": { - "type": "int", - "id": 5, - "offset": 96, - "flags": 31, + "m_shadowPipRating": { + "type": "float", + "id": 44, + "offset": 236, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 136048585 - } - } - }, - "412030598": { - "name": "class ReqHighestCharacterLevelOnAccount*", - "bases": [ - "ReqNumeric", - "Requirement", - "PropertyClass" - ], - "hash": 412030598, - "properties": { - "m_applyNOT": { - "type": "bool", - "id": 0, - "offset": 72, - "flags": 31, + "hash": 507126123 + }, + "m_petID": { + "type": "gid", + "id": 45, + "offset": 304, + "flags": 24, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1746328074, - "enum_options": { - "__DEFAULT": 0 - } + "hash": 806009486 }, - "m_operator": { - "type": "enum Requirement::Operator", - "id": 1, - "offset": 76, - "flags": 2097183, + "m_primaryStat1": { + "type": "std::string", + "id": 46, + "offset": 312, + "flags": 24, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2672792317, - "enum_options": { - "ROP_AND": 0, - "ROP_OR": 1, - "__DEFAULT": "ROP_AND" - } + "hash": 2417808140 }, - "m_numericValue": { - "type": "float", - "id": 2, - "offset": 80, - "flags": 31, + "m_primaryStat2": { + "type": "std::string", + "id": 47, + "offset": 344, + "flags": 24, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 521915239 + "hash": 2417808141 }, - "m_operatorType": { - "type": "enum ReqNumeric::OPERATOR_TYPE", - "id": 3, - "offset": 84, - "flags": 2097183, + "m_secondaryStat": { + "type": "std::string", + "id": 48, + "offset": 376, + "flags": 24, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2228122961, - "enum_options": { - "OPERATOR_UNKNOWN": 4294967295, - "OPERATOR_EQUALS": 0, - "OPERATOR_GREATER_THAN": 1, - "OPERATOR_LESS_THAN": 2, - "OPERATOR_GREATER_THAN_EQ": 3, - "OPERATOR_LESS_THAN_EQ": 4 - } + "hash": 3564684959 + }, + "m_secondaryValue": { + "type": "float", + "id": 49, + "offset": 408, + "flags": 24, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1728780796 } } }, - "1984261221": { - "name": "class SharedPointer", + "2096485259": { + "name": "class SharedPointer", "bases": [ - "ActorCinematicAction", - "CinematicAction", + "LootInfo", + "LootInfoBase", "PropertyClass" ], - "hash": 1984261221, + "hash": 2096485259, "properties": { - "m_timeOffset": { - "type": "float", + "m_lootType": { + "type": "enum LootInfo::LOOT_TYPE", "id": 0, "offset": 72, - "flags": 7, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 + "hash": 1591891442, + "enum_options": { + "LOOT_TYPE_NONE": 0, + "LOOT_TYPE_GOLD": 1, + "LOOT_TYPE_MANA": 2, + "LOOT_TYPE_ITEM": 3, + "LOOT_TYPE_TREASURE_CARD": 4, + "LOOT_TYPE_MAGIC_XP": 5, + "LOOT_TYPE_ADD_SPELL": 6, + "LOOT_TYPE_MAX_HEALTH": 7, + "LOOT_TYPE_MAX_GOLD": 8, + "LOOT_TYPE_MAX_MANA": 9, + "LOOT_TYPE_MAX_POTION": 10, + "LOOT_TYPE_TRAINING_POINTS": 11, + "LOOT_TYPE_RECIPE": 12, + "LOOT_TYPE_CRAFTING_SLOT": 13, + "LOOT_TYPE_REAGENT": 14, + "LOOT_TYPE_PETSNACK": 15, + "LOOT_TYPE_GARDENING_XP": 16, + "LOOT_TYPE_PET_XP": 17, + "LOOT_TYPE_TREASURE_TABLE": 18, + "LOOT_TYPE_ARENA_POINTS": 19, + "LOOT_TYPE_ARENA_BONUS_POINTS": 20, + "LOOT_TYPE_GROUP": 21, + "LOOT_TYPE_FISHING_XP": 22, + "LOOT_TYPE_EVENT_CURRENCY_1": 24, + "LOOT_TYPE_EVENT_CURRENCY_2": 25, + "LOOT_TYPE_PVP_CURRENCY": 26, + "LOOT_TYPE_PVP_CURRENCY_BONUS": 27, + "LOOT_TYPE_PVP_TOURNEY_CURRENCY": 28, + "LOOT_TYPE_PVP_TOURNEY_CURRENCY_BONUS": 29, + "LOOT_TYPE_FURNITURE_ESSENCE": 30 + } }, - "m_actor": { - "type": "std::string", + "m_eventCurrency2Amount": { + "type": "int", "id": 1, "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - }, - "m_cloaked": { - "type": "bool", - "id": 2, - "offset": 120, - "flags": 7, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 7349510 + "hash": 89898381 } } }, - "808134519": { - "name": "class PetDerbyRacerState", + "370732825": { + "name": "class SharedPointer", "bases": [ + "BehaviorTemplate", "PropertyClass" ], - "hash": 808134519, + "hash": 370732825, "properties": { - "m_playerOID": { - "type": "gid", + "m_behaviorName": { + "type": "std::string", "id": 0, - "offset": 88, - "flags": 31, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 578546081 + "hash": 3130754092 }, - "m_currentTerrain": { - "type": "enum PetDerbyTrackTerrain", + "m_fAcceleration": { + "type": "float", "id": 1, - "offset": 100, - "flags": 2097183, + "offset": 120, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3426350446, + "hash": 1644159847, "enum_options": { - "PDTT_Cobblestone": 0, - "PDTT_Water": 1, - "PDTT_Grass": 2, - "PDTT_Clay": 3, - "PDTT_Dirt": 4, - "PDTT_Mud": 5 + "__DEFAULT": 600 } }, - "m_currentLane": { - "type": "int", + "m_fDeceleration": { + "type": "float", "id": 2, - "offset": 104, - "flags": 31, + "offset": 124, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1255984189 + "hash": 2140366348, + "enum_options": { + "__DEFAULT": 600 + } }, - "m_currentLap": { - "type": "unsigned int", + "m_fVelocityDecay": { + "type": "float", "id": 3, - "offset": 120, - "flags": 31, + "offset": 128, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2006580429 + "hash": 441764242, + "enum_options": { + "__DEFAULT": 0 + } }, - "m_indexIntoArray": { - "type": "unsigned char", + "m_fWalkSpeed": { + "type": "float", "id": 4, - "offset": 96, - "flags": 31, + "offset": 132, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1554314337 - } - } - }, - "808108408": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 808108408, - "properties": { - "m_teamHelpWorldInfoList": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, + "hash": 1673729917, + "enum_options": { + "__DEFAULT": 125 + } + }, + "m_fRunSpeed": { + "type": "float", + "id": 5, + "offset": 136, "flags": 7, - "container": "List", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2354245339 - } - } - }, - "1573993703": { - "name": "class DailyPvPInfo*", - "bases": [ - "PropertyClass" - ], - "hash": 1573993703, - "properties": { - "m_numMatchesRequired": { - "type": "unsigned int", - "id": 0, - "offset": 72, + "pointer": false, + "hash": 2230193347, + "enum_options": { + "__DEFAULT": 600 + } + }, + "m_fFlySpeed": { + "type": "float", + "id": 6, + "offset": 140, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2289964291 + "hash": 1454681689, + "enum_options": { + "__DEFAULT": 1000 + } }, - "m_pvpType": { - "type": "enum DailyPvPInfo::DailyPvPTypes", - "id": 1, - "offset": 76, - "flags": 2097159, + "m_fSwimSpeed": { + "type": "float", + "id": 7, + "offset": 144, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 876371151, + "hash": 2100640206, "enum_options": { - "DPVP_Solo_Ranked": 0 + "__DEFAULT": 300 } }, - "m_winRequired": { - "type": "bool", - "id": 2, - "offset": 80, + "m_fFallSpeed": { + "type": "float", + "id": 8, + "offset": 148, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 850879554 - } - } - }, - "412030678": { - "name": "class ReqHighestCharacterLevelOnAccount", - "bases": [ - "ReqNumeric", - "Requirement", - "PropertyClass" - ], - "hash": 412030678, - "properties": { - "m_applyNOT": { - "type": "bool", - "id": 0, - "offset": 72, - "flags": 31, + "hash": 701808397, + "enum_options": { + "__DEFAULT": 100 + } + }, + "m_fYawRate": { + "type": "float", + "id": 9, + "offset": 152, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1746328074, + "hash": 2111024186, "enum_options": { - "__DEFAULT": 0 + "__DEFAULT": "2.5" } }, - "m_operator": { - "type": "enum Requirement::Operator", - "id": 1, - "offset": 76, - "flags": 2097183, + "m_fFallHeight": { + "type": "float", + "id": 10, + "offset": 156, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2672792317, + "hash": 499668597, "enum_options": { - "ROP_AND": 0, - "ROP_OR": 1, - "__DEFAULT": "ROP_AND" + "__DEFAULT": 50 } }, - "m_numericValue": { + "m_fJumpVelocity": { "type": "float", - "id": 2, - "offset": 80, + "id": 11, + "offset": 160, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1243756264, + "enum_options": { + "__DEFAULT": 500 + } + }, + "m_AnimationList": { + "type": "struct MoveStateAnimation", + "id": 12, + "offset": 168, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 438791160 + } + } + }, + "1660318710": { + "name": "class CombatCheatSettings", + "bases": [ + "PropertyClass" + ], + "hash": 1660318710, + "properties": { + "m_settings": { + "type": "unsigned int", + "id": 0, + "offset": 72, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 521915239 + "hash": 1279804446 }, - "m_operatorType": { - "type": "enum ReqNumeric::OPERATOR_TYPE", - "id": 3, - "offset": 84, - "flags": 2097183, + "m_maycastChance": { + "type": "float", + "id": 1, + "offset": 76, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2228122961, - "enum_options": { - "OPERATOR_UNKNOWN": 4294967295, - "OPERATOR_EQUALS": 0, - "OPERATOR_GREATER_THAN": 1, - "OPERATOR_LESS_THAN": 2, - "OPERATOR_GREATER_THAN_EQ": 3, - "OPERATOR_LESS_THAN_EQ": 4 - } + "hash": 1532158347 } } }, - "1573263953": { - "name": "class SharedPointer", + "1207306741": { + "name": "class SharedPointer", "bases": [ "Window", "PropertyClass" ], - "hash": 1573263953, + "hash": 1207306741, "properties": { "m_sName": { "type": "std::string", @@ -531415,9 +343340,11 @@ "hash": 983582334, "enum_options": { "HAS_BACK": 1, + "SCALE_CHILDREN": 2, "CAN_MOVE": 4, "CAN_SIZE": 8, "CAN_SCROLL": 16, + "FOCUS_LOCKED": 64, "CAN_FOCUS": 128, "CAN_DOCK": 32, "DO_NOT_CAPTURE_MOUSE": 256, @@ -531429,9 +343356,7 @@ "USE_ALPHA_BOUNDS": 8192, "AUTO_GROW": 16384, "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152, - "DO_NOT_WRAP": 134217728, - "FIT_TEXT": 268435456 + "AUTO_RESIZE": 49152 } }, "m_Flags": { @@ -531591,95 +343516,96 @@ "singleton": false, "pointer": false, "hash": 3091503757 - }, - "m_sText": { - "type": "std::wstring", - "id": 16, - "offset": 584, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2102642960 - }, - "m_sTooltip": { - "type": "std::wstring", - "id": 17, - "offset": 616, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1680475798 - }, - "m_bUseDropShadow": { - "type": "bool", - "id": 18, - "offset": 653, - "flags": 135, + } + } + }, + "813546873": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 813546873, + "properties": { + "m_teamName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 93063037 + "hash": 3629497091 }, - "m_bUseOutline": { - "type": "bool", - "id": 19, - "offset": 654, - "flags": 135, + "m_teamIndex": { + "type": "int", + "id": 1, + "offset": 104, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 744292994 + "hash": 1621537177 }, - "m_bEnableWordWrap": { - "type": "bool", - "id": 20, - "offset": 655, - "flags": 135, + "m_flags": { + "type": "unsigned int", + "id": 2, + "offset": 108, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 430904562 + "hash": 1005801050, + "enum_options": { + "DTF_Players": 1 + } }, - "m_bEnableToggle": { - "type": "bool", - "id": 21, - "offset": 652, - "flags": 135, - "container": "Static", - "dynamic": false, + "m_subcircles": { + "type": "class SharedPointer", + "id": 3, + "offset": 112, + "flags": 31, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 1937994142 - }, - "m_nLeadingAdjust": { - "type": "int", - "id": 22, - "offset": 656, - "flags": 135, + "pointer": true, + "hash": 2253698236 + } + } + }, + "811778900": { + "name": "class RemoveMatchUpdate*", + "bases": [ + "TournamentUpdate", + "PropertyClass" + ], + "hash": 811778900, + "properties": { + "m_matchID": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1559480167 + "hash": 1757621298 } } }, - "1986283212": { - "name": "class WizPetTemplate*", + "1660450034": { + "name": "class SharedPointer", "bases": [ - "WizGameObjectTemplate", + "WizItemTemplate", + "ItemTemplate", "GameObjectTemplate", "CoreTemplate", "PropertyClass" ], - "hash": 1986283212, + "hash": 1660450034, "properties": { "m_behaviors": { "type": "class BehaviorTemplate*", @@ -531823,1455 +343749,1737 @@ "pointer": false, "hash": 2306259831 }, - "m_lootTable": { - "type": "std::string", + "m_equipRequirements": { + "type": "class RequirementList*", "id": 10, "offset": 280, - "flags": 268435463, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2762617226 + }, + "m_purchaseRequirements": { + "type": "class RequirementList*", + "id": 11, + "offset": 288, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3174641793 + }, + "m_equipEffects": { + "type": "class GameEffectInfo*", + "id": 12, + "offset": 296, + "flags": 7, "container": "List", "dynamic": true, "singleton": false, + "pointer": true, + "hash": 836628351 + }, + "m_baseCost": { + "type": "float", + "id": 13, + "offset": 312, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, "pointer": false, - "hash": 2539512673, - "enum_options": { - "__BASECLASS": "LootTable" - } + "hash": 1565352651 }, - "m_deathParticles": { - "type": "std::string", - "id": 11, - "offset": 296, - "flags": 131079, + "m_creditsCost": { + "type": "float", + "id": 14, + "offset": 320, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3201049672 + "hash": 805514974 }, - "m_deathSound": { - "type": "std::string", - "id": 12, + "m_avatarInfo": { + "type": "class AvatarItemInfoBase*", + "id": 15, "offset": 328, - "flags": 131079, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2627321299 + }, + "m_avatarFlags": { + "type": "std::string", + "id": 16, + "offset": 336, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2347762759 + }, + "m_itemLimit": { + "type": "int", + "id": 17, + "offset": 316, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1865613610 + "hash": 1799746856 }, - "m_hitSound": { + "m_holidayFlag": { "type": "std::string", - "id": 13, - "offset": 360, - "flags": 131079, + "id": 18, + "offset": 352, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2746656777 + "hash": 2994795359 }, - "m_castSound": { + "m_itemSetBonusTemplateID": { + "type": "unsigned int", + "id": 19, + "offset": 384, + "flags": 33554439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1316835672 + }, + "m_numPrimaryColors": { + "type": "int", + "id": 20, + "offset": 428, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 981103872 + }, + "m_numSecondaryColors": { + "type": "int", + "id": 21, + "offset": 432, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1310416868 + }, + "m_numPatterns": { + "type": "int", + "id": 22, + "offset": 436, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 953162171 + }, + "m_school": { "type": "std::string", - "id": 14, + "id": 23, "offset": 392, - "flags": 131079, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3343064815 + "hash": 2438566051 }, - "m_aggroSound": { - "type": "std::string", - "id": 15, + "m_arenaPointCost": { + "type": "int", + "id": 24, + "offset": 440, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1819621796 + }, + "m_pvpCurrencyCost": { + "type": "int", + "id": 25, + "offset": 444, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 645595444 + }, + "m_pvpTourneyCurrencyCost": { + "type": "int", + "id": 26, + "offset": 448, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 517874954 + }, + "m_rank": { + "type": "int", + "id": 27, "offset": 424, - "flags": 131079, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3421949940 + "hash": 219803942 }, - "m_primarySchoolName": { - "type": "std::string", - "id": 16, - "offset": 456, + "m_boyIconIndex": { + "type": "int", + "id": 28, + "offset": 452, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3211370408 + "hash": 802140453 }, - "m_locationPreference": { - "type": "std::string", - "id": 17, - "offset": 488, + "m_girlIconIndex": { + "type": "int", + "id": 29, + "offset": 456, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2817699507 + "hash": 832706793 }, "m_leashOffsetOverride": { "type": "class SharedPointer", - "id": 18, - "offset": 528, + "id": 30, + "offset": 464, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": true, "hash": 1692586788 + }, + "m_rarity": { + "type": "enum RarityType", + "id": 31, + "offset": 460, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2253792108, + "enum_options": { + "RT_COMMON": 0, + "RT_UNCOMMON": 1, + "RT_RARE": 2, + "RT_ULTRARARE": 3, + "RT_EPIC": 4 + } + }, + "m_goldAmount": { + "type": "int", + "id": 32, + "offset": 480, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 754429876 + }, + "m_nif": { + "type": "std::string", + "id": 33, + "offset": 488, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1764743064 } } }, - "1573103953": { - "name": "class SharedPointer", + "2097041168": { + "name": "class ClientServerSyncCinematicAction*", "bases": [ - "ControlText", - "Window", + "ServerSyncCinematicAction", + "CinematicAction", "PropertyClass" ], - "hash": 1573103953, + "hash": 2097041168, "properties": { - "m_sName": { - "type": "std::string", + "m_timeOffset": { + "type": "float", "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_eventToSend": { + "type": "std::string", + "id": 1, "offset": 80, - "flags": 135, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2306437263 + "hash": 1564059786 + } + } + }, + "371196985": { + "name": "class SharedPointer", + "bases": [ + "ServiceOptionBase", + "PropertyClass" + ], + "hash": 371196985, + "properties": { + "m_serviceName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2206028813 }, - "m_Children": { - "type": "class SharedPointer", + "m_iconKey": { + "type": "std::string", "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2621225959 + "pointer": false, + "hash": 2457138637 }, - "m_Style": { + "m_displayKey": { + "type": "std::string", + "id": 2, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3023276954 + }, + "m_serviceIndex": { "type": "unsigned int", + "id": 3, + "offset": 204, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2103126710 + }, + "m_forceInteract": { + "type": "bool", + "id": 4, + "offset": 200, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1705789564 + } + } + }, + "811054223": { + "name": "class PvPLobbyOption*", + "bases": [ + "ServiceOptionBase", + "PropertyClass" + ], + "hash": 811054223, + "properties": { + "m_serviceName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2206028813 + }, + "m_iconKey": { + "type": "std::string", + "id": 1, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2457138637 + }, + "m_displayKey": { + "type": "std::string", "id": 2, - "offset": 152, - "flags": 1048583, + "offset": 104, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152, - "ITEM_HEIGHT": 16777216, - "COLUMN_CENTER": 33554432, - "VERTICAL_CENTER": 67108864, - "DO_NOT_WRAP": 134217728, - "IGNORE_KEYBOARD": 536870912 - } + "hash": 3023276954 }, - "m_Flags": { + "m_serviceIndex": { "type": "unsigned int", "id": 3, - "offset": 156, - "flags": 1048583, + "offset": 204, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } + "hash": 2103126710 }, - "m_Window": { - "type": "class Rect", + "m_forceInteract": { + "type": "bool", "id": 4, - "offset": 160, - "flags": 135, + "offset": 200, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3105139380 + "hash": 1705789564 }, - "m_fTargetAlpha": { - "type": "float", + "m_tournamentName": { + "type": "std::string", "id": 5, - "offset": 212, - "flags": 135, + "offset": 216, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1809129834 + "hash": 3329241865 + } + } + }, + "1207902240": { + "name": "class SharedPointer", + "bases": [ + "MatchActor", + "PropertyClass" + ], + "hash": 1207902240, + "properties": { + "m_nActorID": { + "type": "gid", + "id": 0, + "offset": 88, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 663762476 }, - "m_fDisabledAlpha": { - "type": "float", + "m_nLadderContainerID": { + "type": "gid", + "id": 1, + "offset": 96, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 782107042 + }, + "m_nTournamentNameID": { + "type": "unsigned int", + "id": 2, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 471412886 + }, + "m_nTournamentID": { + "type": "gid", + "id": 3, + "offset": 112, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 105258688 + }, + "m_leagueID": { + "type": "unsigned int", + "id": 4, + "offset": 124, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 692361645 + }, + "m_seasonID": { + "type": "unsigned int", + "id": 5, + "offset": 120, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 535260643 + }, + "m_nMatchNameID": { + "type": "unsigned int", "id": 6, - "offset": 216, - "flags": 135, + "offset": 128, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1389987675 + "hash": 497033398 }, - "m_fAlpha": { - "type": "float", + "m_nMatchID": { + "type": "gid", "id": 7, - "offset": 208, - "flags": 65671, + "offset": 136, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 482130755 + "hash": 1050279648 }, - "m_pWindowStyle": { - "type": "class SharedPointer", + "m_nTeamID": { + "type": "gid", "id": 8, - "offset": 232, - "flags": 135, + "offset": 144, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3623628394 + "pointer": false, + "hash": 374990266 }, - "m_sHelp": { - "type": "std::wstring", + "m_status": { + "type": "int", "id": 9, - "offset": 248, - "flags": 4194439, + "offset": 160, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2102211316 + "hash": 960781182 }, - "m_sScript": { - "type": "std::string", + "m_costAdj": { + "type": "class MatchCostAdjustment", "id": 10, - "offset": 352, - "flags": 135, + "offset": 200, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1846695875 + "hash": 913243331 }, - "m_Offset": { - "type": "class Point", + "m_pLadder": { + "type": "class SharedPointer", "id": 11, - "offset": 192, - "flags": 135, + "offset": 304, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 3389835433 + "pointer": true, + "hash": 2484171182 }, - "m_Scale": { - "type": "class Point", + "m_bracketID": { + "type": "gid", "id": 12, - "offset": 200, - "flags": 135, + "offset": 152, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2547159940 + "hash": 441272961 }, - "m_sTip": { - "type": "std::wstring", + "m_overridingELO": { + "type": "int", "id": 13, - "offset": 392, - "flags": 4194439, + "offset": 284, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1513510520 + "hash": 1428697363 }, - "m_BubbleList": { - "type": "class WindowBubble", + "m_matchKFactor": { + "type": "int", "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, + "offset": 288, + "flags": 31, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 2587533771 + "hash": 773340305 }, - "m_ParentOffset": { - "type": "class Rect", + "m_userID": { + "type": "gid", "id": 15, - "offset": 176, - "flags": 135, + "offset": 80, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3091503757 + "hash": 1037989700 }, - "m_sText": { - "type": "std::wstring", + "m_matchMakingRangeForMatches": { + "type": "unsigned int", "id": 16, - "offset": 584, - "flags": 4194439, + "offset": 320, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2102642960 + "hash": 1193045098 }, - "m_sTooltip": { - "type": "std::wstring", + "m_maxMatchMakingRangeForMatches": { + "type": "unsigned int", "id": 17, - "offset": 616, - "flags": 135, + "offset": 324, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1680475798 + "hash": 1279540944 }, - "m_bUseDropShadow": { + "m_allowRangeToExceedMaxForMatches": { "type": "bool", "id": 18, - "offset": 653, - "flags": 135, + "offset": 328, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 93063037 + "hash": 1260448226 }, - "m_bUseOutline": { - "type": "bool", + "m_matchCrownsCost": { + "type": "int", "id": 19, - "offset": 654, - "flags": 135, + "offset": 280, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 744292994 + "hash": 1094489596 }, - "m_bEnableWordWrap": { - "type": "bool", + "m_machineID": { + "type": "gid", "id": 20, - "offset": 655, - "flags": 135, + "offset": 336, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 430904562 + "hash": 281396698 }, - "m_bEnableToggle": { - "type": "bool", + "m_tier": { + "type": "int", "id": 21, - "offset": 652, - "flags": 135, + "offset": 344, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1937994142 + "hash": 219884238 }, - "m_nLeadingAdjust": { + "m_rank": { "type": "int", "id": 22, - "offset": 656, - "flags": 135, + "offset": 348, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1559480167 + "hash": 219803942 }, - "m_TextColor": { - "type": "class Color", + "m_rating": { + "type": "int", "id": 23, - "offset": 696, - "flags": 135, + "offset": 352, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2267136674 + "hash": 899783871 }, - "m_SelectColor": { - "type": "class Color", + "m_levelBand": { + "type": "int", "id": 24, - "offset": 700, - "flags": 135, + "offset": 356, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2792529213 + "hash": 2097286567 }, - "m_HighlightColor": { - "type": "class Color", + "m_enteredQueue": { + "type": "int", "id": 25, - "offset": 704, - "flags": 135, + "offset": 376, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1047198101 + "hash": 638238406 }, - "m_bSortEnable": { + "m_isSubscriber": { "type": "bool", "id": 26, - "offset": 784, - "flags": 135, + "offset": 428, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 24009764 + "hash": 952325795 }, - "m_nSortByColumn": { - "type": "int", + "m_meetBracketBadgeRequirnments": { + "type": "bool", "id": 27, - "offset": 788, - "flags": 135, + "offset": 429, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1829537401 + "hash": 438139258 }, - "m_bSortAscending": { + "m_1v1": { "type": "bool", "id": 28, - "offset": 792, - "flags": 135, + "offset": 430, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1369222793 + "hash": 269458571 }, - "m_nHighlighted": { + "m_streak": { "type": "int", "id": 29, - "offset": 796, - "flags": 135, + "offset": 360, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1020338345 + "hash": 961375108 }, - "m_nSelected": { + "m_matches": { "type": "int", "id": 30, - "offset": 800, - "flags": 135, + "offset": 364, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1017366545 + "hash": 1757638687 }, - "m_bListInvalid": { - "type": "bool", + "m_lastFight": { + "type": "int", "id": 31, - "offset": 804, - "flags": 135, + "offset": 368, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 376155128 + "hash": 91176384 }, - "m_bSortInvalid": { - "type": "bool", + "m_PVPHistoryStr": { + "type": "std::string", "id": 32, - "offset": 805, - "flags": 135, + "offset": 384, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1605867140 + "hash": 1498439420 }, - "m_pScrollWin": { - "type": "class SharedPointer", + "m_maxCritHit": { + "type": "float", "id": 33, - "offset": 808, - "flags": 135, + "offset": 416, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3263557131 + "pointer": false, + "hash": 2225327348 }, - "m_itemHeight": { - "type": "int", + "m_maxBlockCrit": { + "type": "float", "id": 34, - "offset": 824, - "flags": 135, + "offset": 420, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1245325666 + "hash": 135865530 }, - "m_itemNormalState": { - "type": "class ControlList::ListItemState*", + "m_shadowPipRating": { + "type": "float", "id": 35, - "offset": 832, - "flags": 135, + "offset": 424, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2253036141 + "pointer": false, + "hash": 507126123 }, - "m_itemHighlightedState": { - "type": "class ControlList::ListItemState*", + "m_optInOut": { + "type": "std::string", "id": 36, - "offset": 840, - "flags": 135, + "offset": 168, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2949959141 + "pointer": false, + "hash": 3013935453 }, - "m_itemSelectedState": { - "type": "class ControlList::ListItemState*", + "m_playerTimeDraw": { + "type": "bool", "id": 37, - "offset": 848, - "flags": 135, + "offset": 431, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2463527405 + "pointer": false, + "hash": 447636221 }, - "m_itemDisabledState": { - "type": "class ControlList::ListItemState*", + "m_nTemplateID": { + "type": "unsigned __int64", "id": 38, - "offset": 856, - "flags": 135, + "offset": 448, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 4008046876 - } - } - }, - "412971319": { - "name": "class std::basic_string,class std::allocator >", - "bases": [], - "hash": 412971319, - "properties": {} - }, - "808633172": { - "name": "class RemoveMatchUpdate", - "bases": [ - "TournamentUpdate", - "PropertyClass" - ], - "hash": 808633172, - "properties": { - "m_matchID": { + "pointer": false, + "hash": 1575131408 + }, + "m_nRank": { + "type": "unsigned char", + "id": 39, + "offset": 456, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1440551274 + }, + "m_petID": { "type": "gid", - "id": 0, - "offset": 72, + "id": 40, + "offset": 432, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1757621298 - } - } - }, - "412563783": { - "name": "class SharedPointer", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 412563783, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, + "hash": 806009486 + }, + "m_petPermanentID": { + "type": "gid", + "id": 41, + "offset": 440, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 + "hash": 1647183032 }, - "m_spellData": { + "m_nameBlob": { "type": "std::string", - "id": 1, - "offset": 128, - "flags": 575, + "id": 42, + "offset": 464, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2688126101 + "hash": 3058206907 } } }, - "1987787674": { - "name": "class TieredSpellGroupVisibility*", + "2096911695": { + "name": "class RemoveTeamUpdate*", "bases": [ + "TournamentUpdate", "PropertyClass" ], - "hash": 1987787674, + "hash": 2096911695, "properties": { - "m_visibility": { - "type": "unsigned char", + "m_teamID": { + "type": "gid", "id": 0, "offset": 72, "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2550959800 - }, - "m_canUpgrade": { - "type": "int", - "id": 1, - "offset": 88, - "flags": 31, - "container": "List", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 17860820 + "hash": 982102220 } } }, - "1573821553": { - "name": "class SharedPointer", + "370924129": { + "name": "class SharedPointer", "bases": [ - "Window", + "BehaviorTemplate", "PropertyClass" ], - "hash": 1573821553, + "hash": 370924129, "properties": { - "m_sName": { + "m_behaviorName": { "type": "std::string", "id": 0, - "offset": 80, - "flags": 135, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2306437263 + "hash": 3130754092 }, - "m_Children": { - "type": "class SharedPointer", + "m_initialRandom": { + "type": "bool", "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2621225959 + "pointer": false, + "hash": 1171693694, + "enum_options": { + "__DEFAULT": 1 + } }, - "m_Style": { - "type": "unsigned int", + "m_turnRandom": { + "type": "bool", "id": 2, - "offset": 152, - "flags": 1048583, + "offset": 121, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 983582334, + "hash": 1320199517, "enum_options": { - "HAS_BACK": 1, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152, - "FORCE_NUMERIC": 16777216, - "FORCE_ALPHA": 268435456, - "FORCE_ALPHANUMERIC": 536870912, - "FORCE_INTEGER": 33554432, - "FORCE_POSITIVE": 67108864, - "FORCE_RANGE": 134217728 + "__DEFAULT": 1 } }, - "m_Flags": { - "type": "unsigned int", + "m_trackPlayer": { + "type": "bool", "id": 3, - "offset": 156, - "flags": 1048583, + "offset": 122, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 967851578, + "hash": 222941845, "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 + "__DEFAULT": 1 } }, - "m_Window": { - "type": "class Rect", + "m_shy": { + "type": "bool", "id": 4, - "offset": 160, - "flags": 135, + "offset": 123, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3105139380 + "hash": 269530055 }, - "m_fTargetAlpha": { + "m_speed": { "type": "float", "id": 5, - "offset": 212, - "flags": 135, + "offset": 124, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1809129834 + "hash": 900164744, + "enum_options": { + "__DEFAULT": "400.0" + } }, - "m_fDisabledAlpha": { - "type": "float", + "m_nextStageTemplateID": { + "type": "unsigned int", "id": 6, - "offset": 216, - "flags": 135, + "offset": 128, + "flags": 33554439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1389987675 + "hash": 953331817 }, - "m_fAlpha": { - "type": "float", + "m_nextStageRate": { + "type": "std::string", "id": 7, - "offset": 208, - "flags": 65671, + "offset": 136, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 482130755 + "hash": 2891393594 }, - "m_pWindowStyle": { - "type": "class SharedPointer", + "m_needsWaterMinRate": { + "type": "std::string", "id": 8, - "offset": 232, - "flags": 135, + "offset": 168, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3623628394 + "pointer": false, + "hash": 2764655453 }, - "m_sHelp": { - "type": "std::wstring", + "m_needsSunMinRate": { + "type": "std::string", "id": 9, - "offset": 248, - "flags": 4194439, + "offset": 232, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2102211316 + "hash": 1962535184 }, - "m_sScript": { + "m_needsPollinationMinRate": { "type": "std::string", "id": 10, - "offset": 352, - "flags": 135, + "offset": 296, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1846695875 + "hash": 1849944227 }, - "m_Offset": { - "type": "class Point", + "m_needsWaterMaxRate": { + "type": "std::string", "id": 11, - "offset": 192, - "flags": 135, + "offset": 200, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3389835433 + "hash": 2463431519 }, - "m_Scale": { - "type": "class Point", + "m_needsSunMaxRate": { + "type": "std::string", "id": 12, - "offset": 200, - "flags": 135, + "offset": 264, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2547159940 + "hash": 1661311250 }, - "m_sTip": { - "type": "std::wstring", + "m_needsPollinationMaxRate": { + "type": "std::string", "id": 13, - "offset": 392, - "flags": 4194439, + "offset": 328, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1513510520 + "hash": 1548720293 }, - "m_BubbleList": { - "type": "class WindowBubble", + "m_needsMagicMinRate": { + "type": "std::string", "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, + "offset": 360, + "flags": 7, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 2587533771 + "hash": 2161414587 }, - "m_ParentOffset": { - "type": "class Rect", + "m_needsMagicMaxRate": { + "type": "std::string", "id": 15, - "offset": 176, - "flags": 135, + "offset": 392, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3091503757 + "hash": 1860190653 }, - "m_sText": { - "type": "std::wstring", + "m_needsMusicMinRate": { + "type": "std::string", "id": 16, - "offset": 584, - "flags": 135, + "offset": 424, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2102642960 + "hash": 2626783323 }, - "m_nMaxLength": { - "type": "int", + "m_needsMusicMaxRate": { + "type": "std::string", "id": 17, - "offset": 620, - "flags": 135, + "offset": 456, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1183478416 + "hash": 2325559389 }, - "m_bPassword": { - "type": "bool", + "m_plantStage": { + "type": "enum PlantStage", "id": 18, - "offset": 624, - "flags": 135, + "offset": 488, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1604468200 + "hash": 2664847960, + "enum_options": { + "PS_Seedling": 0, + "PS_Young": 1, + "PS_Mature": 2, + "PS_Angel": 3, + "PS_Wilting": 4, + "PS_Dead": 5 + } }, - "m_bLog": { - "type": "bool", + "m_wiltTemplateID": { + "type": "unsigned int", "id": 19, - "offset": 625, - "flags": 135, + "offset": 492, + "flags": 33554439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 221687287 + "hash": 1395185014 }, - "m_previousNext": { - "type": "bool", + "m_deadTemplateID": { + "type": "unsigned int", "id": 20, - "offset": 627, - "flags": 135, + "offset": 496, + "flags": 33554439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 858581071 + "hash": 1067979076 }, - "m_nMaxLogSize": { - "type": "int", + "m_youngTemplateID": { + "type": "unsigned int", "id": 21, - "offset": 712, - "flags": 135, + "offset": 500, + "flags": 33554439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 779573899 + "hash": 2019241800 }, - "m_bEditing": { - "type": "bool", + "m_needsWaterWiltRate": { + "type": "std::string", "id": 22, - "offset": 616, - "flags": 135, + "offset": 512, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1243218553 + "hash": 3446381113 }, - "m_bAllowPaste": { - "type": "bool", + "m_needsSunWiltRate": { + "type": "std::string", "id": 23, - "offset": 626, - "flags": 135, + "offset": 544, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1129316721 + "hash": 2746216012 }, - "m_nLogPosition": { - "type": "int", + "m_needsPollinationWiltRate": { + "type": "std::string", "id": 24, - "offset": 704, - "flags": 135, + "offset": 576, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1120160767 + "hash": 3325681727 }, - "m_nCursor": { - "type": "int", + "m_needsMagicWiltRate": { + "type": "std::string", "id": 25, - "offset": 716, - "flags": 135, + "offset": 608, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1876782150 + "hash": 2866785367 }, - "m_nEditBegin": { - "type": "int", + "m_needsMusicWiltRate": { + "type": "std::string", "id": 26, - "offset": 720, - "flags": 135, + "offset": 640, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1066592403 + "hash": 3191568119 }, - "m_nEditEnd": { - "type": "int", + "m_harvestMinRate": { + "type": "std::string", "id": 27, - "offset": 724, - "flags": 135, + "offset": 672, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1560905669 + "hash": 1769440136 }, - "m_sSavedText": { - "type": "std::wstring", + "m_harvestMaxRate": { + "type": "std::string", "id": 28, - "offset": 728, - "flags": 135, + "offset": 704, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2197953283 + "hash": 3615699850 }, - "m_fCursorBlinkSpeed": { - "type": "float", + "m_pestList": { + "type": "class PestEntry", "id": 29, - "offset": 760, - "flags": 135, - "container": "Static", - "dynamic": false, + "offset": 736, + "flags": 7, + "container": "Vector", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 2232655228 + "hash": 3674788815 }, - "m_fCursorTimer": { - "type": "float", + "m_pestUpdateRate": { + "type": "std::string", "id": 30, - "offset": 764, - "flags": 135, + "offset": 760, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1929942748 + "hash": 1636194246 }, - "m_bCursorBlink": { + "m_requiresEnchantedSoil": { "type": "bool", "id": 31, - "offset": 768, - "flags": 135, + "offset": 792, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 683441507 + "hash": 1443901316 }, - "m_fMinRange": { - "type": "double", + "m_rewardsRating": { + "type": "int", "id": 32, - "offset": 776, - "flags": 135, + "offset": 796, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3079523396 + "hash": 1304655351 }, - "m_fMaxRange": { - "type": "double", + "m_challengeRating": { + "type": "int", "id": 33, - "offset": 784, - "flags": 135, + "offset": 800, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3876551814 + "hash": 310016034 }, - "m_nPrecision": { + "m_harvestXP": { "type": "int", "id": 34, - "offset": 792, - "flags": 135, + "offset": 804, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1404974196 + "hash": 1835284159 }, - "m_bDeleteOnFirstChar": { + "m_requiresEnrichedSoil": { "type": "bool", "id": 35, - "offset": 618, - "flags": 135, + "offset": 793, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 902105643 - } - } - }, - "412368872": { - "name": "class GuildAchievementBehaviorTemplate*", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 412368872, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, + "hash": 69513596 + }, + "m_fidgetDuringHappy": { + "type": "bool", + "id": 36, + "offset": 808, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3130754092 - } - } - }, - "1987324370": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1987324370, - "properties": {} - }, - "808838995": { - "name": "class MyStitchEntryList", - "bases": [ - "PropertyClass" - ], - "hash": 808838995, - "properties": { - "m_myStitchEntryList": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, + "hash": 302222161 + }, + "m_fidgetSoundEffectName": { + "type": "std::string", + "id": 37, + "offset": 816, "flags": 7, - "container": "List", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2621117270 + "pointer": false, + "hash": 2949012741 }, - "m_hasEventJudgesChoiceAvailable": { - "type": "bool", - "id": 1, - "offset": 88, + "m_fidgetSoundEffectGain": { + "type": "float", + "id": 38, + "offset": 848, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1875999071 - } - } - }, - "1573443663": { - "name": "class ClientVisibilityBehavior", - "bases": [ - "VisibilityBehavior", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1573443663, - "properties": { - "m_behaviorTemplateNameID": { + "hash": 1541262591, + "enum_options": { + "__DEFAULT": "1.0" + } + }, + "m_angelEffectTemplateID": { "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, + "id": 39, + "offset": 852, + "flags": 33554439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 + "hash": 907020010 }, - "m_showTo": { - "type": "gid", - "id": 1, - "offset": 112, - "flags": 31, - "container": "List", - "dynamic": true, + "m_seedSize": { + "type": "enum SeedSize", + "id": 40, + "offset": 856, + "flags": 2097159, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 947039004 + "hash": 1971854021, + "enum_options": { + "SS_Small": 0, + "SS_Medium": 1, + "SS_Large": 2, + "__DEFAULT": "SS_Medium" + } }, - "m_hideFrom": { - "type": "gid", - "id": 2, - "offset": 128, - "flags": 31, - "container": "List", - "dynamic": true, + "m_seedLimit": { + "type": "int", + "id": 41, + "offset": 860, + "flags": 7, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 642644390 + "hash": 189298778 }, - "m_visible": { - "type": "bool", - "id": 3, - "offset": 144, - "flags": 31, + "m_gardeningLevelRequirement": { + "type": "int", + "id": 42, + "offset": 864, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 810536225 - } - } - }, - "1986669241": { - "name": "class MapInfoRequirementsPassedList*", - "bases": [ - "PropertyClass" - ], - "hash": 1986669241, - "properties": { - "m_idList": { + "hash": 52309522 + }, + "m_maximumNumberOfHarvests": { "type": "unsigned int", - "id": 0, - "offset": 72, + "id": 43, + "offset": 896, "flags": 7, - "container": "List", + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1889816953 + }, + "m_likesDislikesList": { + "type": "class LikesDislikesEntry", + "id": 44, + "offset": 872, + "flags": 7, + "container": "Vector", "dynamic": true, "singleton": false, "pointer": false, - "hash": 761088246 - } - } - }, - "412738632": { - "name": "class SharedPointer", - "bases": [ - "JewelSocketBehaviorBase", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 412738632, - "properties": { - "m_behaviorTemplateNameID": { + "hash": 2284921934 + }, + "m_matureTemplateID": { "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, + "id": 45, + "offset": 504, + "flags": 33554439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 + "hash": 1960067908 }, - "m_publicJewelInfo": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 31, + "m_plantRank": { + "type": "int", + "id": 46, + "offset": 900, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2051956582 - } - } - }, - "1986996921": { - "name": "class MapInfoRequirementsPassedList", - "bases": [ - "PropertyClass" - ], - "hash": 1986996921, - "properties": { - "m_idList": { - "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, "pointer": false, - "hash": 761088246 + "hash": 164732869 } } }, - "809142483": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 809142483, - "properties": {} - }, - "808981137": { - "name": "class ObjStateCategory", + "2096781544": { + "name": "class SharedPointer", "bases": [ "PropertyClass" ], - "hash": 808981137, + "hash": 2096781544, "properties": { - "m_categoryName": { - "type": "std::string", + "m_level": { + "type": "int", "id": 0, "offset": 72, - "flags": 7, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3591157466 + "hash": 801285362 }, - "m_states": { - "type": "class ObjState*", + "m_school": { + "type": "unsigned int", "id": 1, - "offset": 176, - "flags": 7, - "container": "List", - "dynamic": true, + "offset": 76, + "flags": 31, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2490652686 + "pointer": false, + "hash": 1152268885 }, - "m_startState": { - "type": "std::string", + "m_gender": { + "type": "int", "id": 2, - "offset": 112, - "flags": 7, + "offset": 80, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2166880458 + "hash": 473816879 }, - "m_baseState": { - "type": "std::string", + "m_nameKeys": { + "type": "unsigned int", "id": 3, - "offset": 144, - "flags": 7, + "offset": 84, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2949363223 + "hash": 1772225898 + }, + "m_badge": { + "type": "std::string", + "id": 4, + "offset": 88, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2286962478 + }, + "m_pCharacterBehavior": { + "type": "class SharedPointer", + "id": 5, + "offset": 120, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2724673923 + }, + "m_pEquipment": { + "type": "class SharedPointer", + "id": 6, + "offset": 136, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2473540161 + }, + "m_pStats": { + "type": "class SharedPointer", + "id": 7, + "offset": 152, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2212894623 + }, + "m_pGameEffects": { + "type": "class SharedPointer", + "id": 8, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1557857436 + }, + "m_petTID": { + "type": "unsigned int", + "id": 9, + "offset": 200, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1037635095 + }, + "m_pPetBehavior": { + "type": "class SharedPointer", + "id": 10, + "offset": 208, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2663493503 + }, + "m_pPetJewels": { + "type": "class SharedPointer", + "id": 11, + "offset": 224, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 733229991 } } }, - "413013788": { - "name": "class ClientPetAnimateActorCinematicAction*", + "1660963012": { + "name": "class RequirementFailNotification", "bases": [ - "PetAnimateActorCinematicAction", - "ActorCinematicAction", - "CinematicAction", + "ServiceOptionBase", "PropertyClass" ], - "hash": 413013788, + "hash": 1660963012, "properties": { - "m_timeOffset": { - "type": "float", + "m_serviceName": { + "type": "std::string", "id": 0, "offset": 72, - "flags": 7, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 + "hash": 2206028813 }, - "m_actor": { + "m_iconKey": { "type": "std::string", "id": 1, - "offset": 80, - "flags": 7, + "offset": 168, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2285866132 + "hash": 2457138637 }, - "m_animation": { + "m_displayKey": { "type": "std::string", "id": 2, - "offset": 120, - "flags": 7, + "offset": 104, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3431428731 - } - } - }, - "1987787664": { - "name": "class TieredSpellGroupVisibility", - "bases": [ - "PropertyClass" - ], - "hash": 1987787664, - "properties": { - "m_visibility": { - "type": "unsigned char", - "id": 0, - "offset": 72, + "hash": 3023276954 + }, + "m_serviceIndex": { + "type": "unsigned int", + "id": 3, + "offset": 204, "flags": 31, - "container": "List", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 2550959800 + "hash": 2103126710 }, - "m_canUpgrade": { - "type": "int", - "id": 1, - "offset": 88, + "m_forceInteract": { + "type": "bool", + "id": 4, + "offset": 200, "flags": 31, - "container": "List", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 17860820 + "hash": 1705789564 + }, + "m_failureMessage": { + "type": "std::string", + "id": 5, + "offset": 224, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1882376712 } } }, - "1576914107": { - "name": "class SharedPointer", + "812543172": { + "name": "class SharedPointer", "bases": [ - "ControlText", "Window", "PropertyClass" ], - "hash": 1576914107, + "hash": 812543172, "properties": { "m_sName": { "type": "std::string", @@ -533307,9 +345515,11 @@ "hash": 983582334, "enum_options": { "HAS_BACK": 1, + "SCALE_CHILDREN": 2, "CAN_MOVE": 4, "CAN_SIZE": 8, "CAN_SCROLL": 16, + "FOCUS_LOCKED": 64, "CAN_FOCUS": 128, "CAN_DOCK": 32, "DO_NOT_CAPTURE_MOUSE": 256, @@ -533321,9 +345531,7 @@ "USE_ALPHA_BOUNDS": 8192, "AUTO_GROW": 16384, "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152, - "DO_NOT_WRAP": 134217728, - "FIT_TEXT": 268435456 + "AUTO_RESIZE": 49152 } }, "m_Flags": { @@ -533484,92 +345692,578 @@ "pointer": false, "hash": 3091503757 }, - "m_sText": { - "type": "std::wstring", + "m_neverGoBackToTraining": { + "type": "bool", "id": 16, - "offset": 584, - "flags": 4194439, + "offset": 1008, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2102642960 + "hash": 1983510297 + } + } + }, + "1212726393": { + "name": "class SpellEffect*", + "bases": [ + "PropertyClass" + ], + "hash": 1212726393, + "properties": { + "m_effectType": { + "type": "enum SpellEffect::kSpellEffects", + "id": 0, + "offset": 72, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2578255295, + "enum_options": { + "kInvalidSpellEffect": 0, + "kDamage": 1, + "kDamageNoCrit": 2, + "kHeal": 3, + "kHealPercent": 4, + "kSetHealPercent": 113, + "kStealHealth": 5, + "kReduceOverTime": 6, + "kDetonateOverTime": 7, + "kPushCharm": 8, + "kStealCharm": 9, + "kPushWard": 10, + "kStealWard": 11, + "kPushOverTime": 12, + "kStealOverTime": 13, + "kRemoveCharm": 14, + "kRemoveWard": 15, + "kRemoveOverTime": 16, + "kRemoveAura": 17, + "kSwapAll": 18, + "kSwapCharm": 19, + "kSwapWard": 20, + "kSwapOverTime": 21, + "kModifyIncomingDamage": 22, + "kModifyIncomingDamageFlat": 119, + "kMaximumIncomingDamage": 23, + "kModifyIncomingHeal": 24, + "kModifyIncomingHealFlat": 118, + "kModifyIncomingDamageType": 25, + "kModifyIncomingArmorPiercing": 26, + "kModifyOutgoingDamage": 27, + "kModifyOutgoingDamageFlat": 121, + "kModifyOutgoingHeal": 28, + "kModifyOutgoingHealFlat": 120, + "kModifyOutgoingDamageType": 29, + "kModifyOutgoingArmorPiercing": 30, + "kModifyOutgoingStealHealth": 31, + "kModifyIncomingStealHealth": 32, + "kBounceNext": 33, + "kBouncePrevious": 34, + "kBounceBack": 35, + "kBounceAll": 36, + "kAbsorbDamage": 37, + "kAbsorbHeal": 38, + "kModifyAccuracy": 39, + "kDispel": 40, + "kConfusion": 41, + "kCloakedCharm": 42, + "kCloakedWard": 43, + "kStunResist": 44, + "kClue": 111, + "kPipConversion": 45, + "kCritBoost": 46, + "kCritBlock": 47, + "kPolymorph": 48, + "kDelayCast": 49, + "kModifyCardCloak": 50, + "kModifyCardDamage": 51, + "kModifyCardAccuracy": 53, + "kModifyCardMutation": 54, + "kModifyCardRank": 55, + "kModifyCardArmorPiercing": 56, + "kSummonCreature": 65, + "kTeleportPlayer": 66, + "kStun": 67, + "kDampen": 68, + "kReshuffle": 69, + "kMindControl": 70, + "kModifyPips": 71, + "kModifyPowerPips": 72, + "kModifyShadowPips": 73, + "kModifyHate": 74, + "kDamageOverTime": 75, + "kHealOverTime": 76, + "kModifyPowerPipChance": 77, + "kModifyRank": 78, + "kStunBlock": 79, + "kRevealCloak": 80, + "kInstantKill": 81, + "kAfterlife": 82, + "kDeferredDamage": 83, + "kDamagePerTotalPipPower": 84, + "kModifyCardHeal": 52, + "kModifyCardCharm": 57, + "kModifyCardWard": 58, + "kModifyCardOutgoingDamage": 59, + "kModifyCardOutgoingAccuracy": 60, + "kModifyCardOutgoingHeal": 61, + "kModifyCardOutgoingArmorPiercing": 62, + "kModifyCardIncomingDamage": 63, + "kModifyCardAbsorbDamage": 64, + "kCloakedWardNoRemove": 86, + "kAddCombatTriggerList": 87, + "kRemoveCombatTriggerList": 88, + "kBacklashDamage": 89, + "kModifyBacklash": 90, + "kIntercept": 91, + "kShadowSelf": 92, + "kShadowCreature": 93, + "kModifyShadowCreatureLevel": 94, + "kSelectShadowCreatureAttackTarget": 95, + "kShadowDecrementTurn": 96, + "kCritBoostSchoolSpecific": 97, + "kSpawnCreature": 98, + "kUnPolymorph": 99, + "kPowerPipConversion": 100, + "kProtectCardBeneficial": 101, + "kProtectCardHarmful": 102, + "kProtectBeneficial": 103, + "kProtectHarmful": 104, + "kDivideDamage": 105, + "kCollectEssence": 106, + "kKillCreature": 107, + "kDispelBlock": 108, + "kConfusionBlock": 109, + "kModifyPipRoundRate": 110, + "kMaxHealthDamage": 112, + "kUntargetable": 114, + "kMakeTargetable": 115, + "kForceTargetable": 116, + "kRemoveStunBlock": 117, + "kExitCombat": 122, + "kSuspendPips": 123, + "kResumePips": 124, + "kAutoPass": 125, + "kStopAutoPass": 126, + "kVanish": 127, + "kStopVanish": 128, + "kMaxHealthHeal": 129, + "kHealByWard": 130, + "kTaunt": 131, + "kPacify": 132, + "kRemoveTargetRestriction": 133, + "kConvertHangingEffect": 134, + "kAddSpellToDeck": 135, + "kAddSpellToHand": 136, + "kModifyIncomingDamageOverTime": 137, + "kModifyIncomingHealOverTime": 138, + "kModifyCardDamagebyRank": 139, + "kPushConvertedCharm": 140, + "kStealConvertedCharm": 141, + "kPushConvertedWard": 142, + "kStealConvertedWard": 143, + "kPushConvertedOverTime": 144, + "kStealConvertedOverTime": 145, + "kRemoveConvertedCharm": 146, + "kRemoveConvertedWard": 147, + "kRemoveConvertedOverTime": 148, + "kModifyOverTimeDuration": 149, + "kModifySchoolPips": 150 + } }, - "m_sTooltip": { - "type": "std::wstring", + "m_effectParam": { + "type": "int", + "id": 1, + "offset": 76, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 357920024 + }, + "m_disposition": { + "type": "enum SpellEffect::kHangingDisposition", + "id": 2, + "offset": 80, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1904841031, + "enum_options": { + "kBoth": 0, + "kBeneficial": 1, + "kHarmful": 2 + } + }, + "m_sDamageType": { + "type": "std::string", + "id": 3, + "offset": 88, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2501054223 + }, + "m_damageType": { + "type": "unsigned int", + "id": 4, + "offset": 84, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 737882766 + }, + "m_pipNum": { + "type": "int", + "id": 5, + "offset": 128, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 830827539 + }, + "m_actNum": { + "type": "int", + "id": 6, + "offset": 132, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 236824866 + }, + "m_effectTarget": { + "type": "enum SpellEffect::kEffectTarget", + "id": 7, + "offset": 140, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2458940523, + "enum_options": { + "kInvalidTarget": 0, + "kSpell": 1, + "kSpecificSpells": 2, + "kGlobal": 3, + "kEnemyTeam": 4, + "kEnemyTeamAllAtOnce": 5, + "kFriendlyTeam": 6, + "kFriendlyTeamAllAtOnce": 7, + "kEnemySingle": 8, + "kFriendlySingle": 9, + "kMinion": 10, + "kFriendlyMinion": 17, + "kEnemyMinion": 18, + "kSelf": 11, + "kAtLeastOneEnemy": 13, + "kPreselectedEnemySingle": 12, + "kMultiTargetEnemy": 14, + "kMultiTargetFriendly": 15, + "kFriendlySingleNotMe": 16 + } + }, + "m_numRounds": { + "type": "int", + "id": 8, + "offset": 144, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1229753829 + }, + "m_paramPerRound": { + "type": "int", + "id": 9, + "offset": 148, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 683234234 + }, + "m_healModifier": { + "type": "float", + "id": 10, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1317921248, + "enum_options": { + "__DEFAULT": "1.0" + } + }, + "m_spellTemplateID": { + "type": "unsigned int", + "id": 11, + "offset": 120, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 585567702 + }, + "m_enchantmentSpellTemplateID": { + "type": "unsigned int", + "id": 12, + "offset": 124, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 246955115 + }, + "m_act": { + "type": "bool", + "id": 13, + "offset": 136, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 269510283 + }, + "m_cloaked": { + "type": "bool", + "id": 14, + "offset": 157, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 7349510 + }, + "m_bypassProtection": { + "type": "bool", + "id": 15, + "offset": 159, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1657138252 + }, + "m_armorPiercingParam": { + "type": "int", + "id": 16, + "offset": 160, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2025530205 + }, + "m_chancePerTarget": { + "type": "int", "id": 17, - "offset": 616, - "flags": 135, + "offset": 164, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1680475798 + "hash": 845426794 }, - "m_bUseDropShadow": { + "m_protected": { "type": "bool", "id": 18, - "offset": 653, - "flags": 135, + "offset": 168, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 93063037 + "hash": 1445655037 }, - "m_bUseOutline": { + "m_converted": { "type": "bool", "id": 19, - "offset": 654, - "flags": 135, + "offset": 169, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 744292994 + "hash": 1590428797 }, - "m_bEnableWordWrap": { - "type": "bool", + "m_rank": { + "type": "int", "id": 20, - "offset": 655, - "flags": 135, + "offset": 208, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 430904562 + "hash": 219803942 + } + } + }, + "372947565": { + "name": "class SharedPointer", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 372947565, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 }, - "m_bEnableToggle": { + "m_pestRank": { + "type": "int", + "id": 1, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2022116066 + }, + "m_wiltMinRate": { + "type": "std::string", + "id": 2, + "offset": 128, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3102833515 + }, + "m_wiltMaxRate": { + "type": "std::string", + "id": 3, + "offset": 160, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2801609581 + }, + "m_goodPest": { "type": "bool", - "id": 21, - "offset": 652, - "flags": 135, + "id": 4, + "offset": 192, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1937994142 + "hash": 564893944 }, - "m_nLeadingAdjust": { - "type": "int", - "id": 22, - "offset": 656, - "flags": 135, + "m_useSizeAnimations": { + "type": "bool", + "id": 5, + "offset": 193, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1559480167 + "hash": 1095895662 + }, + "m_providesWater": { + "type": "bool", + "id": 6, + "offset": 194, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1403713858 + }, + "m_providesSun": { + "type": "bool", + "id": 7, + "offset": 195, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1942306581 + }, + "m_providesPollination": { + "type": "bool", + "id": 8, + "offset": 196, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 443775752 + }, + "m_providesMagic": { + "type": "bool", + "id": 9, + "offset": 197, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1391840608 + }, + "m_providesMusic": { + "type": "bool", + "id": 10, + "offset": 198, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1392572416 } } }, - "1575071659": { - "name": "class CombatGardeningXPEffectTemplate*", + "812061116": { + "name": "class SharedPointer", "bases": [ "GameEffectTemplate", "PropertyClass" ], - "hash": 1575071659, + "hash": 812061116, "properties": { "m_effectName": { "type": "std::string", @@ -533719,7 +346413,7 @@ "STACKING_REPLACE": 2 } }, - "m_xpPercent": { + "m_pipsGiven": { "type": "int", "id": 13, "offset": 360, @@ -533728,83 +346422,60 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 755316563 + "hash": 1346249167 + }, + "m_powerPipsGiven": { + "type": "int", + "id": 14, + "offset": 364, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 377908508 } } }, - "413184803": { - "name": "class SharedPointer", + "1212099530": { + "name": "class DoodleMapPair*", "bases": [ - "LootInfo", - "LootInfoBase", "PropertyClass" ], - "hash": 413184803, + "hash": 1212099530, "properties": { - "m_lootType": { - "type": "enum LootInfo::LOOT_TYPE", + "m_mapName": { + "type": "std::string", "id": 0, "offset": 72, - "flags": 2097183, + "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1591891442, - "enum_options": { - "LOOT_TYPE_NONE": 0, - "LOOT_TYPE_GOLD": 1, - "LOOT_TYPE_MANA": 2, - "LOOT_TYPE_ITEM": 3, - "LOOT_TYPE_TREASURE_CARD": 4, - "LOOT_TYPE_MAGIC_XP": 5, - "LOOT_TYPE_ADD_SPELL": 6, - "LOOT_TYPE_MAX_HEALTH": 7, - "LOOT_TYPE_MAX_GOLD": 8, - "LOOT_TYPE_MAX_MANA": 9, - "LOOT_TYPE_MAX_POTION": 10, - "LOOT_TYPE_TRAINING_POINTS": 11, - "LOOT_TYPE_RECIPE": 12, - "LOOT_TYPE_CRAFTING_SLOT": 13, - "LOOT_TYPE_REAGENT": 14, - "LOOT_TYPE_PETSNACK": 15, - "LOOT_TYPE_GARDENING_XP": 16, - "LOOT_TYPE_PET_XP": 17, - "LOOT_TYPE_TREASURE_TABLE": 18, - "LOOT_TYPE_ARENA_POINTS": 19, - "LOOT_TYPE_ARENA_BONUS_POINTS": 20, - "LOOT_TYPE_GROUP": 21, - "LOOT_TYPE_FISHING_XP": 22, - "LOOT_TYPE_EVENT_CURRENCY_1": 24, - "LOOT_TYPE_EVENT_CURRENCY_2": 25, - "LOOT_TYPE_PVP_CURRENCY": 26, - "LOOT_TYPE_PVP_CURRENCY_BONUS": 27, - "LOOT_TYPE_PVP_TOURNEY_CURRENCY": 28, - "LOOT_TYPE_PVP_TOURNEY_CURRENCY_BONUS": 29, - "LOOT_TYPE_FURNITURE_ESSENCE": 30 - } + "hash": 3249832570 }, - "m_pvpTourneyCurrencyAmount": { - "type": "int", + "m_zoneName": { + "type": "std::string", "id": 1, - "offset": 80, - "flags": 31, + "offset": 104, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1148086373 + "hash": 2171167736 } } }, - "810478868": { - "name": "class SharedPointer", + "372514795": { + "name": "class GraphicalPetSnack*", "bases": [ "GraphicalSpell", "Spell", "PropertyClass" ], - "hash": 810478868, + "hash": 372514795, "properties": { "m_templateID": { "type": "unsigned int", @@ -534063,669 +346734,1634 @@ "singleton": false, "pointer": false, "hash": 2081206026 + }, + "m_fusionState": { + "type": "enum Spell::FusionState", + "id": 23, + "offset": 308, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 835324539, + "enum_options": { + "FS_Invalid": 0, + "FS_Partial": 1, + "FS_Valid": 2 + } } } }, - "1574959647": { - "name": "class SharedPointer", + "811984723": { + "name": "class MyStitchEntryList*", "bases": [ - "GardeningShedBehaviorBase", - "BehaviorInstance", "PropertyClass" ], - "hash": 1574959647, + "hash": 811984723, "properties": { - "m_behaviorTemplateNameID": { + "m_myStitchEntryList": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621117270 + }, + "m_hasEventJudgesChoiceAvailable": { + "type": "bool", + "id": 1, + "offset": 88, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1875999071 + } + } + }, + "1662820207": { + "name": "class VisibilityBehaviorTemplate", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 1662820207, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + }, + "m_visible": { + "type": "bool", + "id": 1, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 810536225 + }, + "m_showToPets": { + "type": "bool", + "id": 2, + "offset": 121, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1441936691 + } + } + }, + "1209754275": { + "name": "class ClientBGPenaltyMatchBan*", + "bases": [ + "BGPenaltyMatchBan", + "InfractionPenalty", + "PropertyClass" + ], + "hash": 1209754275, + "properties": { + "m_internalID": { "type": "unsigned int", "id": 0, - "offset": 104, - "flags": 39, + "offset": 72, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 + "hash": 1854540375 }, - "m_seedList": { + "m_categoryID": { "type": "unsigned int", "id": 1, - "offset": 112, - "flags": 65567, + "offset": 76, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1382795736 + }, + "m_removeAtPointValue": { + "type": "float", + "id": 2, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2112196961 + }, + "m_expireTime": { + "type": "unsigned int", + "id": 3, + "offset": 84, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1836304873 + }, + "m_duration": { + "type": "unsigned int", + "id": 4, + "offset": 88, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1041524755 + } + } + }, + "2097695834": { + "name": "class HousingWaterManager*", + "bases": [ + "PropertyClass" + ], + "hash": 2097695834, + "properties": {} + }, + "372254572": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 372254572, + "properties": { + "m_dailyQuestList": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 7, "container": "List", "dynamic": true, "singleton": false, + "pointer": true, + "hash": 3219359410 + } + } + }, + "1662478659": { + "name": "class ClientIdleAuraCinematicAction", + "bases": [ + "IdleAuraCinematicAction", + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 1662478659, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, "pointer": false, - "hash": 672751594 + "hash": 2237098605 }, - "m_seedData": { + "m_actor": { "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + } + } + }, + "1208967843": { + "name": "class ClientBGPenaltyMatchBan", + "bases": [ + "BGPenaltyMatchBan", + "InfractionPenalty", + "PropertyClass" + ], + "hash": 1208967843, + "properties": { + "m_internalID": { + "type": "unsigned int", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1854540375 + }, + "m_categoryID": { + "type": "unsigned int", + "id": 1, + "offset": 76, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1382795736 + }, + "m_removeAtPointValue": { + "type": "float", "id": 2, - "offset": 128, - "flags": 551, + "offset": 80, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1958752566 + "hash": 2112196961 + }, + "m_expireTime": { + "type": "unsigned int", + "id": 3, + "offset": 84, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1836304873 + }, + "m_duration": { + "type": "unsigned int", + "id": 4, + "offset": 88, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1041524755 } } }, - "1987918967": { - "name": "class SharedPointer", + "2097075535": { + "name": "class RemoveTeamUpdate", "bases": [ - "ProxyGeometry", + "TournamentUpdate", "PropertyClass" ], - "hash": 1987918967, + "hash": 2097075535, "properties": { - "m_sName": { + "m_teamID": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 982102220 + } + } + }, + "1662150979": { + "name": "class ClientIdleAuraCinematicAction*", + "bases": [ + "IdleAuraCinematicAction", + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 1662150979, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + } + } + }, + "1208565693": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1208565693, + "properties": { + "m_animationName": { "type": "std::string", "id": 0, - "offset": 88, + "offset": 72, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2306437263 + "hash": 3393414044 }, - "m_baseOrientation": { - "type": "class Matrix3x3", + "m_animationPath": { + "type": "std::string", "id": 1, - "offset": 176, + "offset": 104, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1692424809 + "hash": 3393486152 }, - "m_basePosition": { - "type": "class Vector3D", + "m_sound": { + "type": "std::string", "id": 2, - "offset": 224, + "offset": 136, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1912112658 + "hash": 2307644996 + } + } + }, + "812326197": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 812326197, + "properties": { + "m_userID": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1037989700 }, - "m_fCurrentScale": { - "type": "float", + "m_userName": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2213937019 + }, + "m_characterID": { + "type": "gid", + "id": 2, + "offset": 112, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 210498386 + }, + "m_characterName": { + "type": "std::wstring", "id": 3, - "offset": 236, + "offset": 120, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 234778792 + "hash": 2815013574 }, - "m_surfaceType": { + "m_zoneName": { "type": "std::string", "id": 4, - "offset": 280, + "offset": 152, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2553995974 + "hash": 2171167736 }, - "m_pInitialParams": { - "type": "class SharedPointer", + "m_realmName": { + "type": "std::string", "id": 5, - "offset": 240, + "offset": 184, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1000009870 + "pointer": false, + "hash": 3507983949 + } + } + }, + "372643830": { + "name": "class NPCTrainingWindow*", + "bases": [ + "Window", + "PropertyClass" + ], + "hash": 372643830, + "properties": { + "m_sName": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306437263 }, - "m_verts": { - "type": "struct SimpleVert", - "id": 6, - "offset": 368, - "flags": 7, + "m_Children": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 65671, "container": "Vector", "dynamic": true, "singleton": false, + "pointer": true, + "hash": 2621225959 + }, + "m_Style": { + "type": "unsigned int", + "id": 2, + "offset": 152, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, "pointer": false, - "hash": 1433503234 + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "SCALE_CHILDREN": 2, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "FOCUS_LOCKED": 64, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152 + } }, - "m_faces": { - "type": "struct SimpleFace", + "m_Flags": { + "type": "unsigned int", + "id": 3, + "offset": 156, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } + }, + "m_Window": { + "type": "class Rect", + "id": 4, + "offset": 160, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3105139380 + }, + "m_fTargetAlpha": { + "type": "float", + "id": 5, + "offset": 212, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1809129834 + }, + "m_fDisabledAlpha": { + "type": "float", + "id": 6, + "offset": 216, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1389987675 + }, + "m_fAlpha": { + "type": "float", "id": 7, - "offset": 320, + "offset": 208, + "flags": 65671, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 482130755 + }, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3623628394 + }, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2102211316 + }, + "m_sScript": { + "type": "std::string", + "id": 10, + "offset": 352, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1846695875 + }, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3389835433 + }, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547159940 + }, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513510520 + }, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3091503757 + }, + "m_neverGoBackToTraining": { + "type": "bool", + "id": 16, + "offset": 1008, "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1983510297 + } + } + }, + "2099482363": { + "name": "class SharedPointer", + "bases": [ + "WizClientLeashedObject", + "WizClientObject", + "ClientObject", + "CoreObject", + "PropertyClass" + ], + "hash": 2099482363, + "properties": { + "m_inactiveBehaviors": { + "type": "class SharedPointer", + "id": 0, + "offset": 224, + "flags": 31, "container": "Vector", "dynamic": true, "singleton": false, + "pointer": true, + "hash": 1850812559 + }, + "m_globalID.m_full": { + "type": "unsigned __int64", + "id": 1, + "offset": 72, + "flags": 16777247, + "container": "Static", + "dynamic": false, + "singleton": false, "pointer": false, - "hash": 1413288912 + "hash": 2312465444 }, - "m_normals": { - "type": "struct SimpleVert", + "m_permID": { + "type": "unsigned __int64", + "id": 2, + "offset": 80, + "flags": 16777247, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1298909658 + }, + "m_location": { + "type": "class Vector3D", + "id": 3, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2239683611 + }, + "m_orientation": { + "type": "class Vector3D", + "id": 4, + "offset": 180, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2344058766 + }, + "m_fScale": { + "type": "float", + "id": 5, + "offset": 196, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 503137701 + }, + "m_templateID.m_full": { + "type": "unsigned __int64", + "id": 6, + "offset": 96, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 633907631 + }, + "m_debugName": { + "type": "std::string", + "id": 7, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3553984419 + }, + "m_displayKey": { + "type": "std::string", "id": 8, + "offset": 136, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3023276954 + }, + "m_zoneTagID": { + "type": "unsigned int", + "id": 9, "offset": 344, - "flags": 7, - "container": "Vector", - "dynamic": true, + "flags": 31, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 2067861162 + "hash": 965291410 + }, + "m_speedMultiplier": { + "type": "short", + "id": 10, + "offset": 192, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 123130076 + }, + "m_nMobileID": { + "type": "unsigned short", + "id": 11, + "offset": 194, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1054318939 + }, + "m_characterId": { + "type": "gid", + "id": 12, + "offset": 440, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 210498418 + }, + "m_gameStats": { + "type": "class WizGameStats*", + "id": 13, + "offset": 552, + "flags": 27, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3194480406 + }, + "m_leashed": { + "type": "bool", + "id": 14, + "offset": 584, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 603235945 } } }, - "809514271": { - "name": "class std::vector >", - "bases": [], - "hash": 809514271, - "properties": {} - }, - "1574804631": { - "name": "class SharedPointer", + "1662820197": { + "name": "class VisibilityBehaviorTemplate*", "bases": [ - "WizItemTemplate", - "ItemTemplate", - "GameObjectTemplate", - "CoreTemplate", + "BehaviorTemplate", "PropertyClass" ], - "hash": 1574804631, + "hash": 1662820197, "properties": { - "m_behaviors": { - "type": "class BehaviorTemplate*", + "m_behaviorName": { + "type": "std::string", "id": 0, "offset": 72, "flags": 7, - "container": "Vector", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1197808594 + "pointer": false, + "hash": 3130754092 }, - "m_objectName": { - "type": "std::string", + "m_visible": { + "type": "bool", "id": 1, - "offset": 96, + "offset": 120, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2154940147 + "hash": 810536225 }, - "m_templateID": { + "m_showToPets": { + "type": "bool", + "id": 2, + "offset": 121, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1441936691 + } + } + }, + "1209457190": { + "name": "class CompassMarkerWindow", + "bases": [ + "Window", + "PropertyClass" + ], + "hash": 1209457190, + "properties": { + "m_sName": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306437263 + }, + "m_Children": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621225959 + }, + "m_Style": { "type": "unsigned int", "id": 2, - "offset": 128, - "flags": 16777223, + "offset": 152, + "flags": 1048583, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1286746870 + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "SCALE_CHILDREN": 2, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "FOCUS_LOCKED": 64, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152 + } }, - "m_visualID": { + "m_Flags": { "type": "unsigned int", "id": 3, - "offset": 132, - "flags": 7, + "offset": 156, + "flags": 1048583, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1118778894 + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } }, - "m_adjectiveList": { - "type": "std::string", + "m_Window": { + "type": "class Rect", "id": 4, - "offset": 248, - "flags": 7, - "container": "List", - "dynamic": true, + "offset": 160, + "flags": 135, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 3195213318 + "hash": 3105139380 }, - "m_exemptFromAOI": { - "type": "bool", + "m_fTargetAlpha": { + "type": "float", "id": 5, - "offset": 240, - "flags": 7, + "offset": 212, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1457879059 + "hash": 1809129834 }, - "m_displayName": { - "type": "std::string", + "m_fDisabledAlpha": { + "type": "float", "id": 6, - "offset": 168, - "flags": 8388615, + "offset": 216, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2446900370 + "hash": 1389987675 }, - "m_description": { - "type": "std::string", + "m_fAlpha": { + "type": "float", "id": 7, - "offset": 136, - "flags": 8388615, + "offset": 208, + "flags": 65671, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1649374815 + "hash": 482130755 }, - "m_nObjectType": { - "type": "enum ObjectType", + "m_pWindowStyle": { + "type": "class SharedPointer", "id": 8, - "offset": 200, - "flags": 2097159, + "offset": 232, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 2118905880, - "enum_options": { - "OT_UNDEFINED": 0, - "OT_PLAYER": 1, - "OT_NPC": 2, - "OT_PROP": 3, - "OT_OBJECT": 4, - "OT_HOUSE": 5, - "OT_KEY": 6, - "OT_OLD_KEY": 7, - "OT_DEED": 8, - "OT_MAIL": 9, - "OT_RECIPE": 17, - "OT_EQUIP_HEAD": 10, - "OT_EQUIP_CHEST": 11, - "OT_EQUIP_LEGS": 12, - "OT_EQUIP_HANDS": 13, - "OT_EQUIP_FINGER": 14, - "OT_EQUIP_FEET": 15, - "OT_EQUIP_EAR": 16, - "OT_BUILDING_BLOCK": 18, - "OT_BUILDING_BLOCK_SOLID": 19, - "OT_GOLF": 20, - "OT_DOOR": 21, - "OT_PET": 22, - "OT_FABRIC": 23, - "OT_WINDOW": 24, - "OT_ROOF": 25, - "OT_HORSE": 26, - "OT_STRUCTURE": 27, - "OT_HOUSING_TEXTURE": 28, - "OT_PLANT": 29 - } + "pointer": true, + "hash": 3623628394 }, - "m_sIcon": { - "type": "std::string", + "m_sHelp": { + "type": "std::wstring", "id": 9, - "offset": 208, - "flags": 131079, + "offset": 248, + "flags": 4194439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2306259831 + "hash": 2102211316 }, - "m_equipRequirements": { - "type": "class RequirementList*", + "m_sScript": { + "type": "std::string", "id": 10, - "offset": 280, - "flags": 7, + "offset": 352, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2762617226 + "pointer": false, + "hash": 1846695875 }, - "m_purchaseRequirements": { - "type": "class RequirementList*", + "m_Offset": { + "type": "class Point", "id": 11, - "offset": 288, - "flags": 7, + "offset": 192, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3174641793 + "pointer": false, + "hash": 3389835433 }, - "m_equipEffects": { - "type": "class GameEffectInfo*", + "m_Scale": { + "type": "class Point", "id": 12, - "offset": 296, - "flags": 7, + "offset": 200, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547159940 + }, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513510520 + }, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, "container": "List", "dynamic": true, "singleton": false, - "pointer": true, - "hash": 836628351 + "pointer": false, + "hash": 2587533771 }, - "m_baseCost": { + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3091503757 + } + } + }, + "813008293": { + "name": "class GuildAchievementBehavior*", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 813008293, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + } + } + }, + "373422829": { + "name": "class ClientCountdownBehavior*", + "bases": [ + "CountdownBehavior", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 373422829, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_time": { "type": "float", - "id": 13, - "offset": 312, - "flags": 7, + "id": 1, + "offset": 112, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1565352651 + "hash": 310085638 + } + } + }, + "812703659": { + "name": "class ConicalStateSoundBehavior", + "bases": [ + "ConicalSoundBehavior", + "PositionalSoundBehavior", + "SoundBehavior", + "AreaBehavior", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 812703659, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 }, - "m_creditsCost": { + "m_radius": { "type": "float", - "id": 14, - "offset": 320, + "id": 1, + "offset": 116, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 805514974 + "hash": 989410271 }, - "m_avatarInfo": { - "type": "class AvatarItemInfoBase*", - "id": 15, - "offset": 328, + "m_category": { + "type": "enum AudioCategory", + "id": 2, + "offset": 124, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2951251982, + "enum_options": { + "AudioCategory_Irrelevent": 0, + "AudioCategory_Accoustic": 1, + "AudioCategory_Noise": 2, + "AudioCategory_Music": 3 + } + }, + "m_exclusive": { + "type": "bool", + "id": 3, + "offset": 128, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2627321299 + "pointer": false, + "hash": 824383403 }, - "m_avatarFlags": { - "type": "std::string", - "id": 16, - "offset": 336, + "m_playList": { + "type": "class PlayList", + "id": 4, + "offset": 176, "flags": 7, - "container": "List", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 2347762759 + "hash": 2061221957 }, - "m_itemLimit": { + "m_volume": { + "type": "float", + "id": 5, + "offset": 304, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1162855023 + }, + "m_loopCount": { "type": "int", - "id": 17, - "offset": 316, + "id": 6, + "offset": 308, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1799746856 + "hash": 865634717 }, - "m_holidayFlag": { - "type": "std::string", - "id": 18, - "offset": 352, + "m_minimumFalloff": { + "type": "float", + "id": 7, + "offset": 328, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2994795359 + "hash": 355697197 }, - "m_itemSetBonusTemplateID": { - "type": "unsigned int", - "id": 19, - "offset": 384, - "flags": 33554439, + "m_maximumFalloff": { + "type": "float", + "id": 8, + "offset": 332, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1316835672 + "hash": 2210192367 }, - "m_numPrimaryColors": { - "type": "int", - "id": 20, - "offset": 428, + "m_animDriven": { + "type": "bool", + "id": 9, + "offset": 392, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 981103872 + "hash": 398394720 }, - "m_numSecondaryColors": { - "type": "int", - "id": 21, - "offset": 432, + "m_inverted": { + "type": "bool", + "id": 10, + "offset": 397, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1310416868 + "hash": 1034821044 }, - "m_numPatterns": { - "type": "int", - "id": 22, - "offset": 436, + "m_fInsideAngle": { + "type": "float", + "id": 11, + "offset": 528, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 953162171 + "hash": 1114383840 }, - "m_school": { - "type": "std::string", - "id": 23, - "offset": 392, + "m_fOutsideAngle": { + "type": "float", + "id": 12, + "offset": 532, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2438566051 + "hash": 1627152289 }, - "m_arenaPointCost": { - "type": "int", - "id": 24, - "offset": 440, + "m_fOutsideVolume": { + "type": "float", + "id": 13, + "offset": 536, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1819621796 + "hash": 90369618 }, - "m_pvpCurrencyCost": { - "type": "int", - "id": 25, - "offset": 444, + "m_fRangeScale": { + "type": "float", + "id": 14, + "offset": 540, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 645595444 + "hash": 1749294034 }, - "m_pvpTourneyCurrencyCost": { - "type": "int", - "id": 26, - "offset": 448, + "m_fAttenuationFactor": { + "type": "float", + "id": 15, + "offset": 544, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 517874954 + "hash": 273292776 }, - "m_rank": { - "type": "int", - "id": 27, - "offset": 424, - "flags": 7, + "m_eAttenuationType": { + "type": "enum PositionInfoAttenuationType", + "id": 16, + "offset": 548, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 219803942 + "hash": 2427193304, + "enum_options": { + "Standard": 0, + "Unit Range Power": 1 + } }, - "m_boyIconIndex": { - "type": "int", - "id": 28, - "offset": 452, + "m_animationName": { + "type": "std::string", + "id": 17, + "offset": 648, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 802140453 - }, - "m_girlIconIndex": { - "type": "int", - "id": 29, - "offset": 456, - "flags": 7, + "hash": 3393414044 + } + } + }, + "2101799980": { + "name": "class WishlistItemInfo", + "bases": [ + "PropertyClass" + ], + "hash": 2101799980, + "properties": { + "m_templateID": { + "type": "unsigned int", + "id": 0, + "offset": 72, + "flags": 33554495, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 832706793 + "hash": 1286746870 }, - "m_leashOffsetOverride": { - "type": "class SharedPointer", - "id": 30, - "offset": 464, - "flags": 7, + "m_keepOnWishlistAfterPurchase": { + "type": "unsigned short", + "id": 1, + "offset": 76, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, + "pointer": false, + "hash": 1244445710 + } + } + }, + "1663161200": { + "name": "class GoalCompilation*", + "bases": [ + "PropertyClass" + ], + "hash": 1663161200, + "properties": { + "m_goals": { + "type": "class GoalEntryFull*", + "id": 0, + "offset": 72, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, "pointer": true, - "hash": 1692586788 - }, - "m_rarity": { - "type": "enum RarityType", - "id": 31, - "offset": 460, - "flags": 2097159, + "hash": 2484767728 + } + } + }, + "1210525869": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1210525869, + "properties": { + "m_sReqName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2253792108, - "enum_options": { - "RT_COMMON": 0, - "RT_UNCOMMON": 1, - "RT_RARE": 2, - "RT_ULTRARARE": 3, - "RT_EPIC": 4 - } + "hash": 3206441047 }, - "m_bundleItems": { - "type": "gid", - "id": 32, - "offset": 480, - "flags": 33554439, - "container": "List", - "dynamic": true, + "m_reqOperatorType": { + "type": "enum SegmentationRequrinment::OPERATOR_TYPE", + "id": 1, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 182029460 + "hash": 1334217449 }, - "m_bundleFreeItems": { - "type": "gid", - "id": 33, - "offset": 496, - "flags": 33554439, - "container": "List", - "dynamic": true, + "m_sReqValue": { + "type": "std::string", + "id": 2, + "offset": 112, + "flags": 31, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 263220278 - }, - "m_bundleItemsToGrant": { - "type": "gid", - "id": 34, - "offset": 544, - "flags": 33554439, - "container": "List", - "dynamic": true, + "hash": 2058248243 + } + } + }, + "2101762018": { + "name": "class Texture", + "bases": [ + "PropertyClass" + ], + "hash": 2101762018, + "properties": { + "m_sFilename": { + "type": "std::string", + "id": 0, + "offset": 104, + "flags": 131207, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 1280974675 + "hash": 2431512111 }, - "m_featuredRewards": { - "type": "gid", - "id": 35, - "offset": 512, - "flags": 33554439, - "container": "List", - "dynamic": true, + "m_bAlphaChannel": { + "type": "bool", + "id": 1, + "offset": 137, + "flags": 135, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 1360288832 + "hash": 1780697684 }, - "m_acquireCondition": { - "type": "enum ItemBundleTemplate::AcquireConditionType", - "id": 36, - "offset": 528, - "flags": 2097159, + "m_bDoubleSided": { + "type": "bool", + "id": 2, + "offset": 138, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2176833998, - "enum_options": { - "kReceiveAll": 0, - "kChooseOne": 1 - } + "hash": 1054874233 }, - "m_bundleContentsType": { - "type": "enum ItemBundleTemplate::BundleContentsType", - "id": 37, - "offset": 532, - "flags": 2097159, + "m_bMipMap": { + "type": "bool", + "id": 3, + "offset": 139, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2541051988, - "enum_options": { - "kHatRobeShoes": 0, - "kShowFirstItemInPortrait": 1, - "kHatRobeShoesWeaponMount": 2, - "kShowPortraitsConsecutively": 3 - } - }, - "m_bundleSavings": { - "type": "int", - "id": 38, - "offset": 536, - "flags": 7, + "hash": 1791042393 + } + } + }, + "373442385": { + "name": "class SharedPointer", + "bases": [ + "InfractionBehavior", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 373442385, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2036928271 + "hash": 223437287 + }, + "m_penalties": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1696001746 + }, + "m_record": { + "type": "class SharedPointer", + "id": 2, + "offset": 128, + "flags": 16, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2129713657 } } }, - "1987825302": { - "name": "class ReagentItemTemplate*", + "1663158128": { + "name": "class GoalCompilation", "bases": [ - "WizItemTemplate", - "ItemTemplate", + "PropertyClass" + ], + "hash": 1663158128, + "properties": { + "m_goals": { + "type": "class GoalEntryFull*", + "id": 0, + "offset": 72, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2484767728 + } + } + }, + "1209992050": { + "name": "class SharedPointer", + "bases": [ + "DynamicTriggerTemplate", "GameObjectTemplate", "CoreTemplate", "PropertyClass" ], - "hash": 1987825302, + "hash": 1209992050, "properties": { "m_behaviors": { "type": "class BehaviorTemplate*", @@ -534868,293 +348504,142 @@ "singleton": false, "pointer": false, "hash": 2306259831 - }, - "m_equipRequirements": { - "type": "class RequirementList*", - "id": 10, - "offset": 280, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2762617226 - }, - "m_purchaseRequirements": { - "type": "class RequirementList*", - "id": 11, - "offset": 288, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3174641793 - }, - "m_equipEffects": { - "type": "class GameEffectInfo*", - "id": 12, - "offset": 296, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 836628351 - }, - "m_baseCost": { - "type": "float", - "id": 13, - "offset": 312, - "flags": 7, + } + } + }, + "2100620697": { + "name": "class MaxHealthLootInfo", + "bases": [ + "LootInfo", + "LootInfoBase", + "PropertyClass" + ], + "hash": 2100620697, + "properties": { + "m_lootType": { + "type": "enum LootInfo::LOOT_TYPE", + "id": 0, + "offset": 72, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1565352651 + "hash": 1591891442, + "enum_options": { + "LOOT_TYPE_NONE": 0, + "LOOT_TYPE_GOLD": 1, + "LOOT_TYPE_MANA": 2, + "LOOT_TYPE_ITEM": 3, + "LOOT_TYPE_TREASURE_CARD": 4, + "LOOT_TYPE_MAGIC_XP": 5, + "LOOT_TYPE_ADD_SPELL": 6, + "LOOT_TYPE_MAX_HEALTH": 7, + "LOOT_TYPE_MAX_GOLD": 8, + "LOOT_TYPE_MAX_MANA": 9, + "LOOT_TYPE_MAX_POTION": 10, + "LOOT_TYPE_TRAINING_POINTS": 11, + "LOOT_TYPE_RECIPE": 12, + "LOOT_TYPE_CRAFTING_SLOT": 13, + "LOOT_TYPE_REAGENT": 14, + "LOOT_TYPE_PETSNACK": 15, + "LOOT_TYPE_GARDENING_XP": 16, + "LOOT_TYPE_PET_XP": 17, + "LOOT_TYPE_TREASURE_TABLE": 18, + "LOOT_TYPE_ARENA_POINTS": 19, + "LOOT_TYPE_ARENA_BONUS_POINTS": 20, + "LOOT_TYPE_GROUP": 21, + "LOOT_TYPE_FISHING_XP": 22, + "LOOT_TYPE_EVENT_CURRENCY_1": 24, + "LOOT_TYPE_EVENT_CURRENCY_2": 25, + "LOOT_TYPE_PVP_CURRENCY": 26, + "LOOT_TYPE_PVP_CURRENCY_BONUS": 27, + "LOOT_TYPE_PVP_TOURNEY_CURRENCY": 28, + "LOOT_TYPE_PVP_TOURNEY_CURRENCY_BONUS": 29, + "LOOT_TYPE_FURNITURE_ESSENCE": 30 + } }, - "m_creditsCost": { - "type": "float", - "id": 14, - "offset": 320, - "flags": 7, + "m_healthToAdd": { + "type": "int", + "id": 1, + "offset": 80, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 805514974 - }, - "m_avatarInfo": { - "type": "class AvatarItemInfoBase*", - "id": 15, - "offset": 328, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2627321299 - }, - "m_avatarFlags": { - "type": "std::string", - "id": 16, - "offset": 336, - "flags": 7, + "hash": 1370421596 + } + } + }, + "813518302": { + "name": "class CombatActionListObj*", + "bases": [ + "PropertyClass" + ], + "hash": 813518302, + "properties": { + "m_actionList": { + "type": "class CombatAction", + "id": 0, + "offset": 72, + "flags": 31, "container": "List", "dynamic": true, "singleton": false, "pointer": false, - "hash": 2347762759 - }, - "m_itemLimit": { - "type": "int", - "id": 17, - "offset": 316, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1799746856 - }, - "m_holidayFlag": { - "type": "std::string", - "id": 18, - "offset": 352, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2994795359 - }, - "m_itemSetBonusTemplateID": { - "type": "unsigned int", - "id": 19, - "offset": 384, - "flags": 33554439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1316835672 - }, - "m_numPrimaryColors": { - "type": "int", - "id": 20, - "offset": 428, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 981103872 - }, - "m_numSecondaryColors": { - "type": "int", - "id": 21, - "offset": 432, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1310416868 - }, - "m_numPatterns": { - "type": "int", - "id": 22, - "offset": 436, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 953162171 - }, - "m_school": { - "type": "std::string", - "id": 23, - "offset": 392, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2438566051 - }, - "m_arenaPointCost": { - "type": "int", - "id": 24, - "offset": 440, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1819621796 - }, - "m_pvpCurrencyCost": { - "type": "int", - "id": 25, - "offset": 444, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 645595444 - }, - "m_pvpTourneyCurrencyCost": { - "type": "int", - "id": 26, - "offset": 448, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 517874954 - }, - "m_rank": { - "type": "int", - "id": 27, - "offset": 424, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 219803942 - }, - "m_boyIconIndex": { - "type": "int", - "id": 28, - "offset": 452, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 802140453 - }, - "m_girlIconIndex": { - "type": "int", - "id": 29, - "offset": 456, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 832706793 - }, - "m_leashOffsetOverride": { - "type": "class SharedPointer", - "id": 30, - "offset": 464, + "hash": 1971690676 + } + } + }, + "1662950038": { + "name": "class WeightedList*", + "bases": [ + "PropertyClass" + ], + "hash": 1662950038, + "properties": { + "m_list": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "Vector", + "dynamic": true, "singleton": false, "pointer": true, - "hash": 1692586788 - }, - "m_rarity": { - "type": "enum RarityType", - "id": 31, - "offset": 460, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2253792108, - "enum_options": { - "RT_COMMON": 0, - "RT_UNCOMMON": 1, - "RT_RARE": 2, - "RT_ULTRARARE": 3, - "RT_EPIC": 4 - } - }, - "m_iconIndex": { - "type": "int", - "id": 32, - "offset": 480, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1053730811 - }, - "m_imageName": { - "type": "std::string", - "id": 33, - "offset": 488, - "flags": 131079, + "hash": 1753240061 + } + } + }, + "2099858571": { + "name": "class AccompanyNPCBehavior*", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 2099858571, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2391520543 + "hash": 223437287 } } }, - "424382627": { - "name": "class std::list >", - "bases": [], - "hash": 424382627, - "properties": {} - }, - "418848714": { - "name": "class UniverseMapOption*", + "382192232": { + "name": "class HousingShopOption*", "bases": [ "ServiceOptionBase", "PropertyClass" ], - "hash": 418848714, + "hash": 382192232, "properties": { "m_serviceName": { "type": "std::string", @@ -535213,521 +348698,554 @@ } } }, - "810897298": { - "name": "class WizStatisticEffect*", + "2099858595": { + "name": "class AccompanyNPCBehavior", "bases": [ - "StatisticEffect", - "GameEffectBase", + "BehaviorInstance", "PropertyClass" ], - "hash": 810897298, + "hash": 2099858595, "properties": { - "m_currentTickCount": { - "type": "double", - "id": 0, - "offset": 80, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2533274692 - }, - "m_effectNameID": { + "m_behaviorTemplateNameID": { "type": "unsigned int", - "id": 1, - "offset": 96, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1204067144 - }, - "m_bIsOnPet": { - "type": "bool", - "id": 2, - "offset": 73, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 522593303 - }, - "m_originatorID": { - "type": "gid", - "id": 3, + "id": 0, "offset": 104, "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1131810019 - }, - "m_itemSlotID": { - "type": "unsigned int", - "id": 4, - "offset": 112, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1895747595 - }, - "m_internalID": { - "type": "int", - "id": 5, - "offset": 92, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1643137924 - }, - "m_endTime": { - "type": "unsigned int", - "id": 6, - "offset": 88, - "flags": 31, + "hash": 223437287 + } + } + }, + "377422087": { + "name": "class TrainingPointLootInfo", + "bases": [ + "LootInfo", + "LootInfoBase", + "PropertyClass" + ], + "hash": 377422087, + "properties": { + "m_lootType": { + "type": "enum LootInfo::LOOT_TYPE", + "id": 0, + "offset": 72, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 716479635 + "hash": 1591891442, + "enum_options": { + "LOOT_TYPE_NONE": 0, + "LOOT_TYPE_GOLD": 1, + "LOOT_TYPE_MANA": 2, + "LOOT_TYPE_ITEM": 3, + "LOOT_TYPE_TREASURE_CARD": 4, + "LOOT_TYPE_MAGIC_XP": 5, + "LOOT_TYPE_ADD_SPELL": 6, + "LOOT_TYPE_MAX_HEALTH": 7, + "LOOT_TYPE_MAX_GOLD": 8, + "LOOT_TYPE_MAX_MANA": 9, + "LOOT_TYPE_MAX_POTION": 10, + "LOOT_TYPE_TRAINING_POINTS": 11, + "LOOT_TYPE_RECIPE": 12, + "LOOT_TYPE_CRAFTING_SLOT": 13, + "LOOT_TYPE_REAGENT": 14, + "LOOT_TYPE_PETSNACK": 15, + "LOOT_TYPE_GARDENING_XP": 16, + "LOOT_TYPE_PET_XP": 17, + "LOOT_TYPE_TREASURE_TABLE": 18, + "LOOT_TYPE_ARENA_POINTS": 19, + "LOOT_TYPE_ARENA_BONUS_POINTS": 20, + "LOOT_TYPE_GROUP": 21, + "LOOT_TYPE_FISHING_XP": 22, + "LOOT_TYPE_EVENT_CURRENCY_1": 24, + "LOOT_TYPE_EVENT_CURRENCY_2": 25, + "LOOT_TYPE_PVP_CURRENCY": 26, + "LOOT_TYPE_PVP_CURRENCY_BONUS": 27, + "LOOT_TYPE_PVP_TOURNEY_CURRENCY": 28, + "LOOT_TYPE_PVP_TOURNEY_CURRENCY_BONUS": 29, + "LOOT_TYPE_FURNITURE_ESSENCE": 30 + } }, - "m_lookupIndex": { + "m_trainingPoints": { "type": "int", - "id": 7, - "offset": 128, + "id": 1, + "offset": 80, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1626623948 - }, - "m_damageBonusPercent": { - "type": "float", - "id": 8, - "offset": 136, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 623230606 - }, - "m_damageBonusFlat": { + "hash": 1003892499 + } + } + }, + "813589465": { + "name": "class SharedPointer", + "bases": [ + "CinematicAction", + "PropertyClass" + ], + "hash": 813589465, + "properties": { + "m_timeOffset": { "type": "float", - "id": 9, - "offset": 180, - "flags": 63, + "id": 0, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2212039108 + "hash": 2237098605 }, - "m_accuracyBonusPercent": { - "type": "float", - "id": 10, - "offset": 140, - "flags": 63, + "m_text": { + "type": "std::string", + "id": 1, + "offset": 112, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1972336538 + "hash": 1717580128 }, - "m_armorPiercingBonusPercent": { - "type": "float", - "id": 11, + "m_onlyForPlayer": { + "type": "bool", + "id": 2, "offset": 144, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1569912641 - }, - "m_damageReducePercent": { - "type": "float", - "id": 12, - "offset": 148, - "flags": 63, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 541736927 + "hash": 249913353 }, - "m_damageReduceFlat": { - "type": "float", - "id": 13, - "offset": 152, - "flags": 63, + "m_stringTable": { + "type": "std::string", + "id": 3, + "offset": 80, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 684172469 + "hash": 3386025626 }, - "m_accuracyReducePercent": { - "type": "float", - "id": 14, - "offset": 156, - "flags": 63, + "m_effectParamMadlib": { + "type": "bool", + "id": 4, + "offset": 146, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2112559723 - }, - "m_healBonusPercent": { - "type": "float", - "id": 15, - "offset": 160, - "flags": 63, + "hash": 292989178 + } + } + }, + "1212099533": { + "name": "class DoodleMapPair", + "bases": [ + "PropertyClass" + ], + "hash": 1212099533, + "properties": { + "m_mapName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 562313577 + "hash": 3249832570 }, - "m_healIncBonusPercent": { - "type": "float", - "id": 16, - "offset": 164, - "flags": 63, + "m_zoneName": { + "type": "std::string", + "id": 1, + "offset": 104, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2182535587 - }, - "m_hitPointBonus": { + "hash": 2171167736 + } + } + }, + "374903879": { + "name": "class SharedPointer", + "bases": [ + "CinematicAction", + "PropertyClass" + ], + "hash": 374903879, + "properties": { + "m_timeOffset": { "type": "float", - "id": 17, - "offset": 204, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 880644461 - }, - "m_spellChargeBonus": { - "type": "int", - "id": 18, - "offset": 212, - "flags": 63, + "id": 0, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2019610507 + "hash": 2237098605 }, - "m_powerPipBonusPercent": { - "type": "float", - "id": 19, - "offset": 168, - "flags": 63, + "m_sound": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1671446341 + "hash": 2307644996 }, - "m_petActChance": { - "type": "int", - "id": 20, - "offset": 200, - "flags": 63, + "m_stopAllLoopingSounds": { + "type": "bool", + "id": 2, + "offset": 112, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 237418461 + "hash": 1944220294 }, - "m_manaBonus": { + "m_fadeDuration": { "type": "float", - "id": 21, - "offset": 208, - "flags": 63, + "id": 3, + "offset": 116, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1372708603 - }, - "m_expPercent": { - "type": "float", - "id": 22, - "offset": 184, - "flags": 63, - "container": "Static", - "dynamic": false, + "hash": 1402536557 + } + } + }, + "813551353": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 813551353, + "properties": { + "m_teamNames": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Vector", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 1147850677 - }, - "m_goldPercent": { - "type": "float", - "id": 23, - "offset": 188, - "flags": 63, + "hash": 3124709014 + } + } + }, + "1663225062": { + "name": "class PipControl", + "bases": [ + "Window", + "PropertyClass" + ], + "hash": 1663225062, + "properties": { + "m_sName": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1095720878 + "hash": 2306437263 }, - "m_energyBonus": { - "type": "float", - "id": 24, - "offset": 216, - "flags": 63, - "container": "Static", - "dynamic": false, + "m_Children": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 2223158984 + "pointer": true, + "hash": 2621225959 }, - "m_criticalHitRating": { - "type": "float", - "id": 25, - "offset": 220, - "flags": 63, + "m_Style": { + "type": "unsigned int", + "id": 2, + "offset": 152, + "flags": 1048583, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1978690540 + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "SCALE_CHILDREN": 2, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "FOCUS_LOCKED": 64, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152 + } }, - "m_blockRating": { - "type": "float", - "id": 26, - "offset": 224, - "flags": 63, + "m_Flags": { + "type": "unsigned int", + "id": 3, + "offset": 156, + "flags": 1048583, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2088486759 + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } }, - "m_accuracyRating": { - "type": "float", - "id": 27, - "offset": 228, - "flags": 63, + "m_Window": { + "type": "class Rect", + "id": 4, + "offset": 160, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 165525575 + "hash": 3105139380 }, - "m_powerPipRating": { + "m_fTargetAlpha": { "type": "float", - "id": 28, - "offset": 232, - "flags": 63, + "id": 5, + "offset": 212, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1355340722 + "hash": 1809129834 }, - "m_damageResistanceRating": { + "m_fDisabledAlpha": { "type": "float", - "id": 29, - "offset": 240, - "flags": 63, + "id": 6, + "offset": 216, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1961377740 + "hash": 1389987675 }, - "m_archmastery": { + "m_fAlpha": { "type": "float", - "id": 30, - "offset": 244, - "flags": 63, + "id": 7, + "offset": 208, + "flags": 65671, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1963579610 + "hash": 482130755 }, - "m_archmasteryBonusPercent": { - "type": "float", - "id": 31, - "offset": 288, - "flags": 63, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1908627154 + "pointer": true, + "hash": 3623628394 }, - "m_balanceMastery": { - "type": "int", - "id": 32, + "m_sHelp": { + "type": "std::wstring", + "id": 9, "offset": 248, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 149062181 - }, - "m_deathMastery": { - "type": "int", - "id": 33, - "offset": 252, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1421218661 - }, - "m_fireMastery": { - "type": "int", - "id": 34, - "offset": 256, - "flags": 63, + "flags": 4194439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1431794949 + "hash": 2102211316 }, - "m_iceMastery": { - "type": "int", - "id": 35, - "offset": 260, - "flags": 63, + "m_sScript": { + "type": "std::string", + "id": 10, + "offset": 352, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 704864240 + "hash": 1846695875 }, - "m_lifeMastery": { - "type": "int", - "id": 36, - "offset": 264, - "flags": 63, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2142136447 + "hash": 3389835433 }, - "m_mythMastery": { - "type": "int", - "id": 37, - "offset": 268, - "flags": 63, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1766317185 + "hash": 2547159940 }, - "m_stormMastery": { - "type": "int", - "id": 38, - "offset": 272, - "flags": 63, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1883988244 + "hash": 1513510520 }, - "m_stunResistancePercent": { - "type": "float", - "id": 39, - "offset": 276, - "flags": 63, - "container": "Static", - "dynamic": false, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 1868382627 + "hash": 2587533771 }, - "m_fishingLuckBonusPercent": { - "type": "float", - "id": 40, - "offset": 192, - "flags": 63, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1363349254 - }, - "m_shadowPipBonusPercent": { + "hash": 3091503757 + } + } + }, + "373979211": { + "name": "class SharedPointer", + "bases": [ + "CinematicAction", + "PropertyClass" + ], + "hash": 373979211, + "properties": { + "m_timeOffset": { "type": "float", - "id": 41, - "offset": 172, - "flags": 63, + "id": 0, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1426533310 + "hash": 2237098605 }, - "m_wispBonusPercent": { - "type": "float", - "id": 42, - "offset": 196, - "flags": 63, + "m_cinematicSoundEmitterInfo": { + "type": "class SharedPointer", + "id": 1, + "offset": 80, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1304386546 - }, - "m_pipConversionRating": { - "type": "float", - "id": 43, - "offset": 280, - "flags": 63, + "pointer": true, + "hash": 2303770088 + } + } + }, + "2101636140": { + "name": "class WishlistItemInfo*", + "bases": [ + "PropertyClass" + ], + "hash": 2101636140, + "properties": { + "m_templateID": { + "type": "unsigned int", + "id": 0, + "offset": 72, + "flags": 33554495, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 246855691 + "hash": 1286746870 }, - "m_shadowPipRating": { - "type": "float", - "id": 44, - "offset": 236, + "m_keepOnWishlistAfterPurchase": { + "type": "unsigned short", + "id": 1, + "offset": 76, "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 507126123 + "hash": 1244445710 } } }, - "417604905": { - "name": "class SharedPointer", + "373550017": { + "name": "class HideShadowCreatureCinematicAction*", "bases": [ - "EffectCinematicAction", - "BaseEffectCinematicAction", + "ActorCinematicAction", "CinematicAction", "PropertyClass" ], - "hash": 417604905, + "hash": 373550017, "properties": { "m_timeOffset": { "type": "float", @@ -535740,88 +349258,100 @@ "pointer": false, "hash": 2237098605 }, - "m_effectRel": { - "type": "enum BaseEffectCinematicAction::kEffectRelative", + "m_actor": { + "type": "std::string", "id": 1, "offset": 80, - "flags": 2097159, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2978921287, - "enum_options": { - "kNone": 0, - "kSigil": 1, - "kTarget": 2, - "kSource": 3, - "kActor": 4 - } - }, - "m_graphic": { - "type": "std::string", - "id": 2, - "offset": 88, - "flags": 131079, + "hash": 2285866132 + } + } + }, + "1214775133": { + "name": "class PassInfoList", + "bases": [ + "PropertyClass" + ], + "hash": 1214775133, + "properties": { + "m_info": { + "type": "class PassInfo", + "id": 0, + "offset": 72, + "flags": 7, "container": "List", "dynamic": true, "singleton": false, "pointer": false, - "hash": 2592217913 - }, - "m_bUseOrientationOverride": { - "type": "bool", - "id": 3, - "offset": 120, + "hash": 1338677978 + } + } + }, + "2101221340": { + "name": "class WhirlyBurlyMovementDataAI*", + "bases": [ + "PropertyClass" + ], + "hash": 2101221340, + "properties": { + "m_unitType": { + "type": "unsigned char", + "id": 0, + "offset": 72, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1088002894 + "hash": 1498103218 }, - "m_overrideOrientation": { - "type": "class Vector3D", - "id": 4, - "offset": 124, + "m_cardUsed": { + "type": "unsigned int", + "id": 1, + "offset": 76, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3267199758 + "hash": 1315653400 }, - "m_bUseLocationOverride": { - "type": "bool", - "id": 5, - "offset": 104, + "m_passport": { + "type": "unsigned int", + "id": 2, + "offset": 80, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1767170875 + "hash": 1362521513 }, - "m_overrideLocation": { - "type": "class Vector3D", - "id": 6, - "offset": 108, + "m_unitMovementList": { + "type": "unsigned int", + "id": 3, + "offset": 88, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 3776417691 + "hash": 687999892 } } }, - "1576715345": { - "name": "class SharedPointer", + "813922450": { + "name": "class DerbyEffectSprite*", "bases": [ + "ControlSprite", "Window", "PropertyClass" ], - "hash": 1576715345, + "hash": 813922450, "properties": { "m_sName": { "type": "std::string", @@ -535899,7 +349429,10 @@ "PARENT_HEIGHT": 524288, "HCENTER": 32768, "VCENTER": 65536, - "DISABLED": 2147483648 + "DISABLED": 2147483648, + "ONE_SHOT": 8388608, + "FLIPPED_HORIZONTAL": 16777216, + "FLIPPED_VERTICAL": 33554432 } }, "m_Window": { @@ -536034,475 +349567,432 @@ "pointer": false, "hash": 3091503757 }, - "m_Markers": { - "type": "class ControlDraw::GesturePoint", + "m_pMaterial": { + "type": "class SharedPointer", "id": 16, "offset": 592, "flags": 135, - "container": "Vector", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": false, - "hash": 2001006042 + "pointer": true, + "hash": 3479277078 }, - "m_RefPoints": { - "type": "class ControlDraw::GesturePoint", + "m_fRotation": { + "type": "float", "id": 17, - "offset": 616, + "offset": 608, "flags": 135, - "container": "Vector", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 1442006431 + "hash": 1175400173 }, - "m_LineList": { - "type": "class ControlDraw::Line", + "m_Color": { + "type": "class Color", "id": 18, - "offset": 664, + "offset": 584, + "flags": 262279, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1753714077 + }, + "m_textColor": { + "type": "class Color", + "id": 19, + "offset": 612, + "flags": 262279, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2528109250 + }, + "m_textComponent": { + "type": "class TextComponent", + "id": 20, + "offset": 616, "flags": 135, - "container": "Vector", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 2941180014 + "hash": 3491704390 + }, + "m_effectID": { + "type": "std::string", + "id": 21, + "offset": 736, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3633927605 } } }, - "415913568": { - "name": "class BasePetItemBehavior*", + "1664883408": { + "name": "class ControlSlider", "bases": [ - "BehaviorInstance", + "ControlBar", + "Window", "PropertyClass" ], - "hash": 415913568, + "hash": 1664883408, "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", + "m_sName": { + "type": "std::string", "id": 0, - "offset": 104, - "flags": 39, + "offset": 80, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 + "hash": 2306437263 }, - "m_level": { - "type": "unsigned char", + "m_Children": { + "type": "class SharedPointer", "id": 1, "offset": 112, - "flags": 65727, - "container": "Static", - "dynamic": false, + "flags": 65671, + "container": "Vector", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 1438884808 + "pointer": true, + "hash": 2621225959 }, - "m_XP": { + "m_Style": { "type": "unsigned int", "id": 2, - "offset": 116, - "flags": 65727, + "offset": 152, + "flags": 1048583, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2301988085 + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "SCALE_CHILDREN": 2, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "FOCUS_LOCKED": 64, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152 + } }, - "m_firstName": { - "type": "int", + "m_Flags": { + "type": "unsigned int", "id": 3, - "offset": 264, - "flags": 65703, + "offset": 156, + "flags": 1048583, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1618303331 + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } }, - "m_middleName": { - "type": "int", + "m_Window": { + "type": "class Rect", "id": 4, - "offset": 268, - "flags": 65703, + "offset": 160, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 199781034 + "hash": 3105139380 }, - "m_lastName": { - "type": "int", + "m_fTargetAlpha": { + "type": "float", "id": 5, - "offset": 272, - "flags": 65703, + "offset": 212, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 328503983 + "hash": 1809129834 }, - "m_currentStats": { - "type": "class PetStat", + "m_fDisabledAlpha": { + "type": "float", "id": 6, - "offset": 128, - "flags": 31, - "container": "List", - "dynamic": true, + "offset": 216, + "flags": 135, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 2342610661 + "hash": 1389987675 }, - "m_maxStats": { - "type": "class PetStat", + "m_fAlpha": { + "type": "float", "id": 7, - "offset": 144, - "flags": 31, - "container": "List", - "dynamic": true, + "offset": 208, + "flags": 65671, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 1846363080 + "hash": 482130755 }, - "m_hatchedTimeSecs": { - "type": "unsigned int", + "m_pWindowStyle": { + "type": "class SharedPointer", "id": 8, - "offset": 160, - "flags": 65727, + "offset": 232, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 606051291 + "pointer": true, + "hash": 3623628394 }, - "m_expressedTalents": { - "type": "unsigned int", + "m_sHelp": { + "type": "std::wstring", "id": 9, - "offset": 168, - "flags": 31, - "container": "List", - "dynamic": true, + "offset": 248, + "flags": 4194439, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 1557974043 + "hash": 2102211316 }, - "m_expressedDerbyTalents": { - "type": "unsigned int", + "m_sScript": { + "type": "std::string", "id": 10, - "offset": 184, - "flags": 31, - "container": "List", - "dynamic": true, + "offset": 352, + "flags": 135, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 484465777 + "hash": 1846695875 }, - "m_talentRatings": { - "type": "std::string", + "m_Offset": { + "type": "class Point", "id": 11, - "offset": 216, - "flags": 31, - "container": "List", - "dynamic": true, + "offset": 192, + "flags": 135, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 2170591163 + "hash": 3389835433 }, - "m_powerRatings": { - "type": "std::string", + "m_Scale": { + "type": "class Point", "id": 12, - "offset": 232, - "flags": 31, - "container": "List", - "dynamic": true, + "offset": 200, + "flags": 135, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 1881287968 + "hash": 2547159940 }, - "m_overallRating": { - "type": "unsigned int", + "m_sTip": { + "type": "std::wstring", "id": 13, - "offset": 248, - "flags": 159, + "offset": 392, + "flags": 4194439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 462138631 + "hash": 1513510520 }, - "m_activeRating": { - "type": "unsigned int", + "m_BubbleList": { + "type": "class WindowBubble", "id": 14, - "offset": 252, - "flags": 159, - "container": "Static", - "dynamic": false, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 234391118 + "hash": 2587533771 }, - "m_costToMorph": { - "type": "unsigned int", + "m_ParentOffset": { + "type": "class Rect", "id": 15, - "offset": 256, - "flags": 65567, + "offset": 176, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1866472719 + "hash": 3091503757 }, - "m_rarity": { - "type": "unsigned int", + "m_fPosition": { + "type": "float", "id": 16, - "offset": 260, - "flags": 65567, + "offset": 584, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1111114664 + "hash": 1808212114 }, - "m_requiredXP": { - "type": "unsigned int", + "m_BaseColor": { + "type": "class Color", "id": 17, - "offset": 120, - "flags": 31, + "offset": 588, + "flags": 262279, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1890811574 + "hash": 2172251096 }, - "m_housingPetPrimaryColor": { - "type": "int", + "m_BarColor": { + "type": "class Color", "id": 18, - "offset": 276, - "flags": 65664, + "offset": 592, + "flags": 262279, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 525135139 + "hash": 2259916498 }, - "m_housingPetPattern": { - "type": "int", + "m_bDisplayVertical": { + "type": "bool", "id": 19, - "offset": 280, - "flags": 65664, + "offset": 596, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 165011646 + "hash": 1359621189 }, - "m_housingPetSecondaryColor": { - "type": "int", + "m_pBarMaterial": { + "type": "class SharedPointer", "id": 20, - "offset": 284, - "flags": 65695, + "offset": 600, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 358656263 + "pointer": true, + "hash": 2481929515 }, - "m_housingPetOriginalGID": { - "type": "gid", + "m_pTopLeftMaterial": { + "type": "class SharedPointer", "id": 21, - "offset": 288, - "flags": 65664, + "offset": 616, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1259075879 + "pointer": true, + "hash": 3248096916 }, - "m_housingPetJewelTemplateID": { - "type": "unsigned int", + "m_pCenterMaterial": { + "type": "class SharedPointer", "id": 22, - "offset": 296, - "flags": 65664, + "offset": 632, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1836117651 + "pointer": true, + "hash": 1519560055 }, - "m_happiness": { - "type": "unsigned int", + "m_pBottomRightMaterial": { + "type": "class SharedPointer", "id": 23, - "offset": 300, - "flags": 65727, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1380970552 - }, - "m_maximumHappiness": { - "type": "unsigned int", - "id": 24, - "offset": 304, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 874954582 - } - } - }, - "1993005499": { - "name": "class WizBankingOption", - "bases": [ - "ServiceOptionBase", - "PropertyClass" - ], - "hash": 1993005499, - "properties": { - "m_serviceName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2206028813 - }, - "m_iconKey": { - "type": "std::string", - "id": 1, - "offset": 168, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2457138637 - }, - "m_displayKey": { - "type": "std::string", - "id": 2, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3023276954 - }, - "m_serviceIndex": { - "type": "unsigned int", - "id": 3, - "offset": 204, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2103126710 - }, - "m_forceInteract": { - "type": "bool", - "id": 4, - "offset": 200, - "flags": 31, + "offset": 648, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1705789564 - } - } - }, - "1576479087": { - "name": "class StitchLeaderboard", - "bases": [ - "PropertyClass" - ], - "hash": 1576479087, - "properties": { - "m_stitchLeaderboardList": { - "type": "gid", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1311714008 + "pointer": true, + "hash": 2932444745 }, - "m_type": { - "type": "unsigned int", - "id": 1, - "offset": 88, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 431304463 - } - } - }, - "414586652": { - "name": "class ClientPetAnimateActorCinematicAction", - "bases": [ - "PetAnimateActorCinematicAction", - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 414586652, - "properties": { - "m_timeOffset": { + "m_fMin": { "type": "float", - "id": 0, - "offset": 72, - "flags": 7, + "id": 24, + "offset": 700, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, + "hash": 309551905 + }, + "m_fMax": { + "type": "float", + "id": 25, + "offset": 704, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2285866132 + "hash": 309551651 }, - "m_animation": { - "type": "std::string", - "id": 2, - "offset": 120, - "flags": 7, + "m_nTabWidth": { + "type": "int", + "id": 26, + "offset": 708, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3431428731 + "hash": 1554957503 } } }, - "1991980737": { - "name": "class SharedPointer", + "1214168029": { + "name": "enum HangingConversionSpellEffect::OutputEffectSelector", + "bases": [], + "hash": 1214168029, + "properties": {} + }, + "813778773": { + "name": "class PetSnackCheckBox", "bases": [ + "ControlCheckBox", "ControlButton", "Window", "PropertyClass" ], - "hash": 1991980737, + "hash": 813778773, "properties": { "m_sName": { "type": "std::string", @@ -537016,624 +350506,1244 @@ } } }, - "813546873": { - "name": "class SharedPointer", + "1664325298": { + "name": "class WinAnimConcurrentBounded", "bases": [ + "WinAnimConcurrent", + "WinAnimContainer", + "WindowAnimation", "PropertyClass" ], - "hash": 813546873, + "hash": 1664325298, "properties": { - "m_teamName": { - "type": "std::string", + "m_bUseDeepCopy": { + "type": "bool", "id": 0, "offset": 72, - "flags": 31, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3629497091 + "hash": 433380635 }, - "m_teamIndex": { - "type": "int", + "m_winAnimList": { + "type": "class SharedPointer", "id": 1, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, + "offset": 80, + "flags": 135, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 1621537177 + "pointer": true, + "hash": 1941062728 }, - "m_flags": { - "type": "unsigned int", + "m_bLooping": { + "type": "bool", "id": 2, - "offset": 108, - "flags": 31, + "offset": 104, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1005801050, - "enum_options": { - "DTF_Players": 1 - } + "hash": 2131020845 }, - "m_subcircles": { - "type": "class SharedPointer", + "m_finishedAnimList": { + "type": "class SharedPointer", "id": 3, "offset": 112, - "flags": 31, + "flags": 135, "container": "List", "dynamic": true, "singleton": false, "pointer": true, - "hash": 2253698236 + "hash": 3066650884 + }, + "m_boundary": { + "type": "class Rect", + "id": 4, + "offset": 128, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1423726080 } } }, - "1990366250": { - "name": "class DerbyEffect", + "1214156982": { + "name": "class SharedPointer", "bases": [ "PropertyClass" ], - "hash": 1990366250, + "hash": 1214156982, "properties": { - "m_buffType": { - "type": "enum DerbyTalentBuffType", + "m_isWebGame": { + "type": "bool", "id": 0, - "offset": 92, - "flags": 2097183, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1149251982, - "enum_options": { - "Buff": 0, - "Debuff": 1, - "Neither": 2 - } + "hash": 944547943 }, - "m_kTarget": { - "type": "enum DerbyTargetType", + "m_name": { + "type": "std::string", "id": 1, - "offset": 96, - "flags": 2097159, + "offset": 160, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1807803351, - "enum_options": { - "kTargetInFront": 0, - "kTargetBehind": 1, - "kTargetFirst": 2, - "kTargetSelf": 3, - "kTargetAll": 4, - "kTargetLast": 5 - } + "hash": 1717359772 }, - "m_nDuration": { - "type": "int", + "m_energyCosts": { + "type": "class SharedPointer", "id": 2, + "offset": 192, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 3378376555 + }, + "m_trackChoices": { + "type": "class SharedPointer", + "id": 3, + "offset": 208, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1548152913 + }, + "m_gameIcon": { + "type": "std::string", + "id": 4, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3229574910 + }, + "m_trackIcons": { + "type": "std::string", + "id": 5, + "offset": 112, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2211683916 + }, + "m_trackToolTips": { + "type": "std::string", + "id": 6, + "offset": 136, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1898819214 + } + } + }, + "374733549": { + "name": "class ClientCountdownBehavior", + "bases": [ + "CountdownBehavior", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 374733549, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_time": { + "type": "float", + "id": 1, + "offset": 112, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1110167982 + "hash": 310085638 + } + } + }, + "813763071": { + "name": "class SoundInfo", + "bases": [ + "ClientObjectInfo", + "CoreObjectInfo", + "PropertyClass" + ], + "hash": 813763071, + "properties": { + "m_templateID.m_full": { + "type": "unsigned __int64", + "id": 0, + "offset": 72, + "flags": 33554439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 633907631 }, - "m_effectID": { + "m_nObjectID": { "type": "unsigned int", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 748496927 + }, + "m_location": { + "type": "class Vector3D", + "id": 2, + "offset": 84, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2239683611 + }, + "m_orientation": { + "type": "class Vector3D", "id": 3, - "offset": 88, - "flags": 24, + "offset": 96, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2347630439 + "hash": 2344058766 }, - "m_imageFilename": { - "type": "std::string", + "m_fScale": { + "type": "float", "id": 4, - "offset": 112, - "flags": 131103, + "offset": 108, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2813328063 + "hash": 503137701 }, - "m_iconIndex": { - "type": "unsigned int", + "m_zoneTag": { + "type": "std::string", "id": 5, - "offset": 144, - "flags": 31, + "offset": 152, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1265133262 + "hash": 3405382643 }, - "m_soundOnActivate": { + "m_startState": { "type": "std::string", "id": 6, - "offset": 152, - "flags": 131103, + "offset": 184, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1956929714 + "hash": 2166880458 }, - "m_soundOnTarget": { + "m_overrideName": { "type": "std::string", "id": 7, - "offset": 184, - "flags": 131103, + "offset": 120, + "flags": 8388615, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3444214056 + "hash": 1990707228 }, - "m_targetParticleEffect": { - "type": "std::string", + "m_globalDynamic": { + "type": "bool", "id": 8, - "offset": 216, - "flags": 131103, + "offset": 116, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3048234723 + "hash": 1951691017 }, - "m_overheadMessage": { - "type": "std::string", + "m_bUndetectable": { + "type": "bool", "id": 9, - "offset": 248, - "flags": 8388639, + "offset": 216, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1701018190 + "hash": 1907454341 }, - "m_requirements": { - "type": "class RequirementList", + "m_spawnRequirements": { + "type": "class SharedPointer", "id": 10, - "offset": 280, - "flags": 31, + "offset": 224, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2309120870 + }, + "m_loadingType": { + "type": "enum CoreObjectInfo::LoadingType", + "id": 11, + "offset": 112, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2840988582 + "hash": 3522422550, + "enum_options": { + "STATIC_CLIENT_SERVER": 0, + "STATIC_CLIENT": 1, + "STATIC_SERVER": 2, + "DYNAMIC_SERVER": 3 + } + }, + "m_radius": { + "type": "float", + "id": 12, + "offset": 256, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 989410271 + }, + "m_exclusive": { + "type": "bool", + "id": 13, + "offset": 260, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 824383403 + }, + "m_startActive": { + "type": "bool", + "id": 14, + "offset": 261, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2031339229 + }, + "m_category": { + "type": "enum AudioCategory", + "id": 15, + "offset": 264, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2951251982, + "enum_options": { + "AudioCategory_Irrelevent": 0, + "AudioCategory_Accoustic": 1, + "AudioCategory_Noise": 2, + "AudioCategory_Music": 3 + } + }, + "m_override": { + "type": "int", + "id": 16, + "offset": 268, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 136872410, + "enum_options": { + "OVR_RADIUS": 1, + "OVR_CATEGORY": 2, + "OVR_EXCLUSIVE": 4, + "OVR_SIGNATURE": 64, + "OVR_VOLUME": 8, + "OVR_LOOPCOUNT": 16, + "OVR_ACTIVE": 32, + "OVR_PLAYPROG": 128, + "OVR_PRIORITY": 256, + "OVR_PROGTIME": 512, + "OVR_FILTERSET": 1024 + } + }, + "m_enableReqs": { + "type": "class SharedPointer", + "id": 17, + "offset": 272, + "flags": 263, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3158020443 } } }, - "811778900": { - "name": "class RemoveMatchUpdate*", + "1663987506": { + "name": "class ObjStateTransition", "bases": [ - "TournamentUpdate", "PropertyClass" ], - "hash": 811778900, + "hash": 1663987506, "properties": { - "m_matchID": { - "type": "gid", + "m_targetState": { + "type": "std::string", "id": 0, "offset": 72, - "flags": 31, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1757621298 + "hash": 2472683907 + }, + "m_transitionState": { + "type": "std::string", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2166469639 } } }, - "415861216": { - "name": "class EnergyGlobe", + "1663896733": { + "name": "class PvPStatueBehaviorTemplate", "bases": [ - "StatGlobe", - "ControlSprite", - "Window", + "BehaviorTemplate", "PropertyClass" ], - "hash": 415861216, + "hash": 1663896733, "properties": { - "m_sName": { + "m_behaviorName": { "type": "std::string", "id": 0, - "offset": 80, - "flags": 135, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2306437263 + "hash": 3130754092 }, - "m_Children": { - "type": "class SharedPointer", + "m_league": { + "type": "std::string", "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2621225959 + "pointer": false, + "hash": 2166730062 }, - "m_Style": { - "type": "unsigned int", + "m_rank": { + "type": "int", "id": 2, "offset": 152, - "flags": 1048583, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "SCALE_CHILDREN": 2, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "FOCUS_LOCKED": 64, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152 - } + "hash": 219803942 }, - "m_Flags": { - "type": "unsigned int", + "m_refreshRateSec": { + "type": "int", "id": 3, "offset": 156, - "flags": 1048583, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648, - "ONE_SHOT": 8388608, - "FLIPPED_HORIZONTAL": 16777216, - "FLIPPED_VERTICAL": 33554432 - } + "hash": 418402320 }, - "m_Window": { - "type": "class Rect", + "m_groundOffset": { + "type": "float", "id": 4, "offset": 160, - "flags": 135, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3105139380 + "hash": 684524077 }, - "m_fTargetAlpha": { + "m_yaw": { "type": "float", "id": 5, - "offset": 212, - "flags": 135, + "offset": 164, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1809129834 + "hash": 357256328 }, - "m_fDisabledAlpha": { - "type": "float", + "m_showNametag": { + "type": "bool", "id": 6, - "offset": 216, - "flags": 135, + "offset": 168, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1389987675 + "hash": 584664753 }, - "m_fAlpha": { - "type": "float", + "m_showInGrace": { + "type": "bool", "id": 7, - "offset": 208, - "flags": 65671, + "offset": 169, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 482130755 + "hash": 1033917517 }, - "m_pWindowStyle": { - "type": "class SharedPointer", + "m_showActive": { + "type": "bool", "id": 8, - "offset": 232, - "flags": 135, + "offset": 170, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3623628394 + "pointer": false, + "hash": 685431312 }, - "m_sHelp": { - "type": "std::wstring", + "m_scale": { + "type": "float", "id": 9, - "offset": 248, - "flags": 4194439, + "offset": 172, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2102211316 + "hash": 899693439 }, - "m_sScript": { - "type": "std::string", + "m_alpha": { + "type": "float", "id": 10, - "offset": 352, - "flags": 135, + "offset": 176, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1846695875 + "hash": 878686493 }, - "m_Offset": { - "type": "class Point", + "m_animDelaySec": { + "type": "float", "id": 11, - "offset": 192, - "flags": 135, + "offset": 180, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3389835433 + "hash": 2131058854 }, - "m_Scale": { - "type": "class Point", + "m_animChance": { + "type": "float", "id": 12, - "offset": 200, - "flags": 135, + "offset": 184, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2547159940 + "hash": 434823806 }, - "m_sTip": { - "type": "std::wstring", + "m_animList": { + "type": "std::string", "id": 13, - "offset": 392, - "flags": 4194439, + "offset": 192, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2531745852 + } + } + }, + "2101762038": { + "name": "class Texture*", + "bases": [ + "PropertyClass" + ], + "hash": 2101762038, + "properties": { + "m_sFilename": { + "type": "std::string", + "id": 0, + "offset": 104, + "flags": 131207, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1513510520 + "hash": 2431512111 }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, + "m_bAlphaChannel": { + "type": "bool", + "id": 1, + "offset": 137, "flags": 135, - "container": "List", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 2587533771 + "hash": 1780697684 }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, + "m_bDoubleSided": { + "type": "bool", + "id": 2, + "offset": 138, "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3091503757 + "hash": 1054874233 }, - "m_pMaterial": { - "type": "class SharedPointer", - "id": 16, - "offset": 592, + "m_bMipMap": { + "type": "bool", + "id": 3, + "offset": 139, "flags": 135, "container": "Static", "dynamic": false, "singleton": false, + "pointer": false, + "hash": 1791042393 + } + } + }, + "1214710570": { + "name": "class LootInfoList", + "bases": [ + "PropertyClass" + ], + "hash": 1214710570, + "properties": { + "m_loot": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, "pointer": true, - "hash": 3479277078 + "hash": 2139157014 }, - "m_fRotation": { - "type": "float", - "id": 17, - "offset": 608, - "flags": 135, + "m_goldInfo": { + "type": "class SharedPointer", + "id": 1, + "offset": 88, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2077081000 + }, + "m_lootRarityList": { + "type": "class SharedPointer", + "id": 2, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3268854573 + } + } + }, + "375660523": { + "name": "class GraphicalPetSnack", + "bases": [ + "GraphicalSpell", + "Spell", + "PropertyClass" + ], + "hash": 375660523, + "properties": { + "m_templateID": { + "type": "unsigned int", + "id": 0, + "offset": 128, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1175400173 + "hash": 1286746870 }, - "m_Color": { - "type": "class Color", + "m_enchantment": { + "type": "unsigned int", + "id": 1, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2217886818 + }, + "m_pipCost": { + "type": "class SharedPointer", + "id": 2, + "offset": 176, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3605704820 + }, + "m_regularAdjust": { + "type": "int", + "id": 3, + "offset": 192, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1420453335 + }, + "m_magicSchoolID": { + "type": "unsigned int", + "id": 4, + "offset": 136, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 893146499 + }, + "m_accuracy": { + "type": "unsigned char", + "id": 5, + "offset": 132, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2273914939 + }, + "m_treasureCard": { + "type": "bool", + "id": 6, + "offset": 197, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1764879128 + }, + "m_battleCard": { + "type": "bool", + "id": 7, + "offset": 198, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1332843753 + }, + "m_itemCard": { + "type": "bool", + "id": 8, + "offset": 199, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1683654300 + }, + "m_sideBoard": { + "type": "bool", + "id": 9, + "offset": 200, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1897838368 + }, + "m_spellID": { + "type": "unsigned int", + "id": 10, + "offset": 204, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1697483258 + }, + "m_leavesPlayWhenCastOverride": { + "type": "bool", + "id": 11, + "offset": 216, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 874407398 + }, + "m_cloaked": { + "type": "bool", + "id": 12, + "offset": 196, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 7349510 + }, + "m_enchantmentSpellIsItemCard": { + "type": "bool", + "id": 13, + "offset": 76, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 531590701 + }, + "m_premutationSpellID": { + "type": "unsigned int", + "id": 14, + "offset": 112, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1530256370 + }, + "m_enchantedThisCombat": { + "type": "bool", + "id": 15, + "offset": 77, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1895738923 + }, + "m_paramOverrides": { + "type": "class SharedPointer", + "id": 16, + "offset": 224, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2061635599 + }, + "m_subEffectMeta": { + "type": "class SharedPointer", + "id": 17, + "offset": 240, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1944101106 + }, + "m_delayEnchantment": { + "type": "bool", "id": 18, - "offset": 584, - "flags": 262279, + "offset": 257, + "flags": 287, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1753714077 + "hash": 191336919 }, - "m_textColor": { - "type": "class Color", + "m_PvE": { + "type": "bool", "id": 19, - "offset": 612, - "flags": 262279, + "offset": 264, + "flags": 287, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2528109250 + "hash": 269492350 }, - "m_textComponent": { - "type": "class TextComponent", + "m_delayEnchantmentOrder": { + "type": "enum SpellEffect::kDelayOrder", "id": 20, - "offset": 616, - "flags": 135, + "offset": 72, + "flags": 287, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3491704390 + "hash": 2526055263, + "enum_options": { + "SpellEffect::kAnyOrder": 0, + "SpellEffect::kFirst": 1, + "SpellEffect::kSecond": 2 + } }, - "m_amount": { + "m_roundAddedTC": { "type": "int", "id": 21, - "offset": 800, - "flags": 135, + "offset": 260, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 248546638 - } - } - }, - "1990122719": { - "name": "class HousingGameKhanDanceSequence*", - "bases": [ - "PropertyClass" - ], - "hash": 1990122719, - "properties": { - "m_danceSequenceList": { - "type": "unsigned char", - "id": 0, - "offset": 72, + "hash": 112365451 + }, + "m_secondarySchoolID": { + "type": "unsigned int", + "id": 22, + "offset": 304, "flags": 7, - "container": "List", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 2597302176 + "hash": 2081206026 + }, + "m_fusionState": { + "type": "enum Spell::FusionState", + "id": 23, + "offset": 308, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 835324539, + "enum_options": { + "FS_Invalid": 0, + "FS_Partial": 1, + "FS_Valid": 2 + } } } }, - "811054223": { - "name": "class PvPLobbyOption*", + "813783551": { + "name": "class SoundInfo*", "bases": [ - "ServiceOptionBase", + "ClientObjectInfo", + "CoreObjectInfo", "PropertyClass" ], - "hash": 811054223, + "hash": 813783551, "properties": { - "m_serviceName": { - "type": "std::string", + "m_templateID.m_full": { + "type": "unsigned __int64", "id": 0, "offset": 72, - "flags": 31, + "flags": 33554439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2206028813 + "hash": 633907631 }, - "m_iconKey": { - "type": "std::string", + "m_nObjectID": { + "type": "unsigned int", "id": 1, - "offset": 168, - "flags": 31, + "offset": 80, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2457138637 + "hash": 748496927 }, - "m_displayKey": { - "type": "std::string", + "m_location": { + "type": "class Vector3D", "id": 2, - "offset": 104, - "flags": 31, + "offset": 84, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3023276954 + "hash": 2239683611 }, - "m_serviceIndex": { - "type": "unsigned int", + "m_orientation": { + "type": "class Vector3D", "id": 3, - "offset": 204, - "flags": 31, + "offset": 96, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2103126710 + "hash": 2344058766 }, - "m_forceInteract": { - "type": "bool", + "m_fScale": { + "type": "float", "id": 4, - "offset": 200, - "flags": 31, + "offset": 108, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1705789564 + "hash": 503137701 }, - "m_tournamentName": { + "m_zoneTag": { "type": "std::string", "id": 5, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3405382643 + }, + "m_startState": { + "type": "std::string", + "id": 6, + "offset": 184, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2166880458 + }, + "m_overrideName": { + "type": "std::string", + "id": 7, + "offset": 120, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1990707228 + }, + "m_globalDynamic": { + "type": "bool", + "id": 8, + "offset": 116, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1951691017 + }, + "m_bUndetectable": { + "type": "bool", + "id": 9, "offset": 216, - "flags": 31, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3329241865 + "hash": 1907454341 + }, + "m_spawnRequirements": { + "type": "class SharedPointer", + "id": 10, + "offset": 224, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2309120870 + }, + "m_loadingType": { + "type": "enum CoreObjectInfo::LoadingType", + "id": 11, + "offset": 112, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3522422550, + "enum_options": { + "STATIC_CLIENT_SERVER": 0, + "STATIC_CLIENT": 1, + "STATIC_SERVER": 2, + "DYNAMIC_SERVER": 3 + } + }, + "m_radius": { + "type": "float", + "id": 12, + "offset": 256, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 989410271 + }, + "m_exclusive": { + "type": "bool", + "id": 13, + "offset": 260, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 824383403 + }, + "m_startActive": { + "type": "bool", + "id": 14, + "offset": 261, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2031339229 + }, + "m_category": { + "type": "enum AudioCategory", + "id": 15, + "offset": 264, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2951251982, + "enum_options": { + "AudioCategory_Irrelevent": 0, + "AudioCategory_Accoustic": 1, + "AudioCategory_Noise": 2, + "AudioCategory_Music": 3 + } + }, + "m_override": { + "type": "int", + "id": 16, + "offset": 268, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 136872410, + "enum_options": { + "OVR_RADIUS": 1, + "OVR_CATEGORY": 2, + "OVR_EXCLUSIVE": 4, + "OVR_SIGNATURE": 64, + "OVR_VOLUME": 8, + "OVR_LOOPCOUNT": 16, + "OVR_ACTIVE": 32, + "OVR_PLAYPROG": 128, + "OVR_PRIORITY": 256, + "OVR_PROGTIME": 512, + "OVR_FILTERSET": 1024 + } + }, + "m_enableReqs": { + "type": "class SharedPointer", + "id": 17, + "offset": 272, + "flags": 263, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3158020443 } } }, - "1989170117": { - "name": "class HousingTextureBehaviorTemplate*", + "375586257": { + "name": "class PetFeedingRewardInfo*", "bases": [ - "BehaviorTemplate", "PropertyClass" ], - "hash": 1989170117, + "hash": 375586257, "properties": { - "m_behaviorName": { - "type": "std::string", + "m_minIntrinsicValue": { + "type": "int", "id": 0, "offset": 72, "flags": 7, @@ -537641,45 +351751,41 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 3130754092 + "hash": 1962770606 }, - "m_textureType": { - "type": "enum HousingTextureType", + "m_bCostsEnergy": { + "type": "bool", "id": 1, - "offset": 120, - "flags": 2097159, + "offset": 76, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1680179944, - "enum_options": { - "HTT_FLOOR": 0, - "HTT_WALL": 1 - } + "hash": 1061466155 }, - "m_textureFilename": { + "m_lootTables": { "type": "std::string", "id": 2, - "offset": 128, - "flags": 131079, - "container": "Static", - "dynamic": false, + "offset": 80, + "flags": 7, + "container": "Vector", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 2208648365 + "hash": 1514961588 } } }, - "1578349544": { - "name": "class SharedPointer", + "1664247340": { + "name": "struct CharacterChatStatsByState*", "bases": [ "PropertyClass" ], - "hash": 1578349544, + "hash": 1664247340, "properties": { - "m_animationName": { - "type": "std::string", + "m_state": { + "type": "unsigned int", "id": 0, "offset": 72, "flags": 7, @@ -537687,106 +351793,151 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 3393414044 + "hash": 1021505934 }, - "m_time": { - "type": "float", + "m_chatID": { + "type": "unsigned int", "id": 1, - "offset": 104, + "offset": 76, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 310085638 + "hash": 531784794 }, - "m_actionType": { - "type": "std::string", + "m_usage": { + "type": "unsigned int", "id": 2, - "offset": 112, + "offset": 80, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3328872763 + "hash": 1023841410 + } + } + }, + "2102212723": { + "name": "class std::vector >", + "bases": [], + "hash": 2102212723, + "properties": {} + }, + "375372752": { + "name": "enum PermanentShop::CurrencyTab", + "bases": [], + "hash": 375372752, + "properties": {} + }, + "1664247330": { + "name": "struct CharacterChatStatsByState", + "bases": [ + "PropertyClass" + ], + "hash": 1664247330, + "properties": { + "m_state": { + "type": "unsigned int", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1021505934 }, - "m_surfaceType": { - "type": "std::string", - "id": 3, - "offset": 144, + "m_chatID": { + "type": "unsigned int", + "id": 1, + "offset": 76, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2553995974 + "hash": 531784794 + }, + "m_usage": { + "type": "unsigned int", + "id": 2, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1023841410 } } }, - "1988084744": { - "name": "class HatchmakingPetsList", + "2101834602": { + "name": "class TextureD3D", "bases": [ + "Texture", "PropertyClass" ], - "hash": 1988084744, + "hash": 2101834602, "properties": { - "m_hatchmakingPetsList": { - "type": "class SharedPointer", + "m_sFilename": { + "type": "std::string", "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, + "offset": 104, + "flags": 131207, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2100166473 + "pointer": false, + "hash": 2431512111 }, - "m_disableKiosk": { + "m_bAlphaChannel": { "type": "bool", "id": 1, - "offset": 88, - "flags": 7, + "offset": 137, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1561191592 + "hash": 1780697684 }, - "m_disableOffer": { + "m_bDoubleSided": { "type": "bool", "id": 2, - "offset": 89, - "flags": 7, + "offset": 138, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1565817209 + "hash": 1054874233 }, - "m_premiumPetExceptionCode": { - "type": "unsigned int", + "m_bMipMap": { + "type": "bool", "id": 3, - "offset": 92, - "flags": 7, + "offset": 139, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2278118367 + "hash": 1791042393 } } }, - "1577466161": { - "name": "class SharedPointer", + "720842147": { + "name": "class SharedPointer", "bases": [ - "PathBehaviorTemplate::Action", + "AreaBehaviorTemplate", + "BehaviorTemplate", "PropertyClass" ], - "hash": 1577466161, + "hash": 720842147, "properties": { - "m_nPathID": { - "type": "gid", + "m_behaviorName": { + "type": "std::string", "id": 0, "offset": 72, "flags": 7, @@ -537794,280 +351945,601 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 214382368 + "hash": 3130754092 }, - "m_nNodeID": { - "type": "int", + "m_radius": { + "type": "float", "id": 1, - "offset": 80, + "offset": 120, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 152152635, - "enum_options": { - "__DEFAULT": 4294967295 - } + "hash": 989410271 }, - "m_nPriority": { - "type": "int", + "m_category": { + "type": "enum AudioCategory", "id": 2, - "offset": 84, - "flags": 7, + "offset": 124, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1515251530, + "hash": 2951251982, "enum_options": { - "__DEFAULT": 100 + "AudioCategory_Irrelevent": 0, + "AudioCategory_Accoustic": 1, + "AudioCategory_Noise": 2, + "AudioCategory_Music": 3, + "AudioCategory_MusicAtSFXVolume": 4, + "AudioCategory_Dialog": 5, + "AudioCategory_UI": 6, + "AudioCategory_NoiseAtMusicVolume": 7 } }, - "m_nChance": { - "type": "int", + "m_exclusive": { + "type": "bool", "id": 3, - "offset": 88, + "offset": 128, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1860748394, + "hash": 824383403 + }, + "m_active": { + "type": "bool", + "id": 4, + "offset": 129, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 239335471 + }, + "m_enableReqs": { + "type": "class SharedPointer", + "id": 5, + "offset": 136, + "flags": 263, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3158020443 + }, + "m_accousticSignature": { + "type": "enum AccousticSignature", + "id": 6, + "offset": 152, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1188263221, "enum_options": { - "__DEFAULT": 50 + "Generic": 0, + "Padded Cell": 1, + "Room": 2, + "Bath Room": 3, + "Living Room": 4, + "Stone Room": 5, + "Auditorium": 6, + "Concert Hall": 7, + "Cave": 8, + "Arena": 9, + "Hanger": 10, + "Carpeted Hallway": 11, + "Hallway": 12, + "Stone Corridor": 13, + "Alley": 14, + "Forest": 15, + "City": 16, + "Mountains": 17, + "Quarry": 18, + "Plain": 19, + "Parking Lot": 20, + "Sewer Pipe": 21, + "Underwater": 22, + "Drugged": 23, + "Dizzy": 24, + "Psychotic": 25 } } } }, - "417450311": { - "name": "class SpellBookPrefsWindow", + "1214784666": { + "name": "class ConicalSoundEmitterInfo", "bases": [ - "Window", + "PositionalSoundEmitterInfo", + "SoundEmitterInfo", + "SoundInfo", + "ClientObjectInfo", + "CoreObjectInfo", "PropertyClass" ], - "hash": 417450311, + "hash": 1214784666, "properties": { - "m_sName": { - "type": "std::string", + "m_templateID.m_full": { + "type": "unsigned __int64", "id": 0, - "offset": 80, - "flags": 135, + "offset": 72, + "flags": 33554439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2306437263 + "hash": 633907631 }, - "m_Children": { - "type": "class SharedPointer", + "m_nObjectID": { + "type": "unsigned int", "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2621225959 + "pointer": false, + "hash": 748496927 }, - "m_Style": { - "type": "unsigned int", + "m_location": { + "type": "class Vector3D", "id": 2, - "offset": 152, - "flags": 1048583, + "offset": 84, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "SCALE_CHILDREN": 2, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "FOCUS_LOCKED": 64, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152 - } + "hash": 2239683611 }, - "m_Flags": { - "type": "unsigned int", + "m_orientation": { + "type": "class Vector3D", "id": 3, - "offset": 156, - "flags": 1048583, + "offset": 96, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } + "hash": 2344058766 }, - "m_Window": { - "type": "class Rect", + "m_fScale": { + "type": "float", "id": 4, - "offset": 160, - "flags": 135, + "offset": 108, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3105139380 + "hash": 503137701 }, - "m_fTargetAlpha": { - "type": "float", + "m_zoneTag": { + "type": "std::string", "id": 5, - "offset": 212, - "flags": 135, + "offset": 152, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1809129834 + "hash": 3405382643 }, - "m_fDisabledAlpha": { - "type": "float", + "m_startState": { + "type": "std::string", "id": 6, - "offset": 216, - "flags": 135, + "offset": 184, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1389987675 + "hash": 2166880458 }, - "m_fAlpha": { - "type": "float", + "m_overrideName": { + "type": "std::string", "id": 7, - "offset": 208, - "flags": 65671, + "offset": 120, + "flags": 8388615, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 482130755 + "hash": 1990707228 }, - "m_pWindowStyle": { - "type": "class SharedPointer", + "m_globalDynamic": { + "type": "bool", "id": 8, - "offset": 232, - "flags": 135, + "offset": 116, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3623628394 + "pointer": false, + "hash": 1951691017 }, - "m_sHelp": { - "type": "std::wstring", + "m_bUndetectable": { + "type": "bool", "id": 9, - "offset": 248, - "flags": 4194439, + "offset": 216, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2102211316 + "hash": 1907454341 }, - "m_sScript": { - "type": "std::string", + "m_spawnRequirements": { + "type": "class SharedPointer", "id": 10, - "offset": 352, - "flags": 135, + "offset": 224, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1846695875 + "pointer": true, + "hash": 2309120870 }, - "m_Offset": { - "type": "class Point", + "m_loadingType": { + "type": "enum CoreObjectInfo::LoadingType", "id": 11, - "offset": 192, - "flags": 135, + "offset": 112, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3389835433 + "hash": 3522422550, + "enum_options": { + "STATIC_CLIENT_SERVER": 0, + "STATIC_CLIENT": 1, + "STATIC_SERVER": 2, + "DYNAMIC_SERVER": 3 + } }, - "m_Scale": { - "type": "class Point", + "m_radius": { + "type": "float", "id": 12, - "offset": 200, - "flags": 135, + "offset": 256, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2547159940 + "hash": 989410271 }, - "m_sTip": { - "type": "std::wstring", + "m_exclusive": { + "type": "bool", "id": 13, - "offset": 392, - "flags": 4194439, + "offset": 260, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1513510520 + "hash": 824383403 }, - "m_BubbleList": { - "type": "class WindowBubble", + "m_startActive": { + "type": "bool", "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, + "offset": 261, + "flags": 7, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 2587533771 + "hash": 2031339229 }, - "m_ParentOffset": { - "type": "class Rect", + "m_category": { + "type": "enum AudioCategory", "id": 15, - "offset": 176, - "flags": 135, + "offset": 264, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3091503757 + "hash": 2951251982, + "enum_options": { + "AudioCategory_Irrelevent": 0, + "AudioCategory_Accoustic": 1, + "AudioCategory_Noise": 2, + "AudioCategory_Music": 3 + } + }, + "m_override": { + "type": "int", + "id": 16, + "offset": 268, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 136872410, + "enum_options": { + "OVR_RADIUS": 1, + "OVR_CATEGORY": 2, + "OVR_EXCLUSIVE": 4, + "OVR_SIGNATURE": 64, + "OVR_VOLUME": 8, + "OVR_LOOPCOUNT": 16, + "OVR_ACTIVE": 32, + "OVR_PLAYPROG": 128, + "OVR_PRIORITY": 256, + "OVR_PROGTIME": 512, + "OVR_FILTERSET": 1024 + } + }, + "m_enableReqs": { + "type": "class SharedPointer", + "id": 17, + "offset": 272, + "flags": 263, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3158020443 + }, + "m_volume": { + "type": "float", + "id": 18, + "offset": 288, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1162855023 + }, + "m_loopCount": { + "type": "int", + "id": 19, + "offset": 292, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 865634717 + }, + "m_trackFilenameList": { + "type": "std::string", + "id": 20, + "offset": 312, + "flags": 131079, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2531081709 + }, + "m_playList": { + "type": "class PlayListEntry*", + "id": 21, + "offset": 336, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 3907873161 + }, + "m_priority": { + "type": "int", + "id": 22, + "offset": 296, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1235205852 + }, + "m_progression": { + "type": "enum PlayList::Progression", + "id": 23, + "offset": 300, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3279400238, + "enum_options": { + "Sequence": 0, + "Random": 1, + "SequenceOnceOnly": 2, + "RandomNoRepeat": 3 + } + }, + "m_progressMin": { + "type": "float", + "id": 24, + "offset": 304, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1497550192 + }, + "m_progressMax": { + "type": "float", + "id": 25, + "offset": 308, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1497549938 + }, + "m_audioFilterSet": { + "type": "unsigned int", + "id": 26, + "offset": 360, + "flags": 33554439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 831339825 + }, + "m_clientTag": { + "type": "std::string", + "id": 27, + "offset": 368, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3409856790 + }, + "m_innerRadius": { + "type": "float", + "id": 28, + "offset": 400, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 686816091 + }, + "m_nifObjName": { + "type": "std::string", + "id": 29, + "offset": 408, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513857812 + }, + "m_animNIFObjName": { + "type": "std::string", + "id": 30, + "offset": 440, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2245834777 + }, + "m_inverted": { + "type": "bool", + "id": 31, + "offset": 472, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1034821044 + }, + "m_initialDelay": { + "type": "float", + "id": 32, + "offset": 476, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 629858288 + }, + "m_fInsideAngle": { + "type": "float", + "id": 33, + "offset": 480, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1114383840 + }, + "m_fOutsideAngle": { + "type": "float", + "id": 34, + "offset": 484, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1627152289 + }, + "m_fOutsideVolume": { + "type": "float", + "id": 35, + "offset": 488, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 90369618 + }, + "m_fRangeScale": { + "type": "float", + "id": 36, + "offset": 492, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1749294034 + }, + "m_fAttenuationFactor": { + "type": "float", + "id": 37, + "offset": 496, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 273292776 + }, + "m_eAttenuationType": { + "type": "enum PositionInfoAttenuationType", + "id": 38, + "offset": 500, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2427193304, + "enum_options": { + "Standard": 0, + "Unit Range Power": 1 + } } } }, - "812543172": { - "name": "class SharedPointer", + "375207967": { + "name": "class SharedPointer", "bases": [ + "ControlSlider", + "ControlBar", "Window", "PropertyClass" ], - "hash": 812543172, + "hash": 375207967, "properties": { "m_sName": { "type": "std::string", @@ -538103,11 +352575,8 @@ "hash": 983582334, "enum_options": { "HAS_BACK": 1, - "SCALE_CHILDREN": 2, "CAN_MOVE": 4, "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "FOCUS_LOCKED": 64, "CAN_FOCUS": 128, "CAN_DOCK": 32, "DO_NOT_CAPTURE_MOUSE": 256, @@ -538280,578 +352749,147 @@ "pointer": false, "hash": 3091503757 }, - "m_neverGoBackToTraining": { - "type": "bool", - "id": 16, - "offset": 1008, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1983510297 - } - } - }, - "1577249055": { - "name": "class SharedPointer", - "bases": [ - "ConicalSoundBehavior", - "PositionalSoundBehavior", - "SoundBehavior", - "AreaBehavior", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1577249055, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_radius": { - "type": "float", - "id": 1, - "offset": 116, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 989410271 - }, - "m_category": { - "type": "enum AudioCategory", - "id": 2, - "offset": 124, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2951251982, - "enum_options": { - "AudioCategory_Irrelevent": 0, - "AudioCategory_Accoustic": 1, - "AudioCategory_Noise": 2, - "AudioCategory_Music": 3 - } - }, - "m_exclusive": { - "type": "bool", - "id": 3, - "offset": 128, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 824383403 - }, - "m_playList": { - "type": "class PlayList", - "id": 4, - "offset": 176, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2061221957 - }, - "m_volume": { - "type": "float", - "id": 5, - "offset": 304, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1162855023 - }, - "m_loopCount": { - "type": "int", - "id": 6, - "offset": 308, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 865634717 - }, - "m_minimumFalloff": { - "type": "float", - "id": 7, - "offset": 328, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 355697197 - }, - "m_maximumFalloff": { - "type": "float", - "id": 8, - "offset": 332, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2210192367 - }, - "m_animDriven": { - "type": "bool", - "id": 9, - "offset": 392, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 398394720 - }, - "m_inverted": { - "type": "bool", - "id": 10, - "offset": 397, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1034821044 - }, - "m_fInsideAngle": { - "type": "float", - "id": 11, - "offset": 528, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1114383840 - }, - "m_fOutsideAngle": { - "type": "float", - "id": 12, - "offset": 532, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1627152289 - }, - "m_fOutsideVolume": { - "type": "float", - "id": 13, - "offset": 536, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 90369618 - }, - "m_fRangeScale": { - "type": "float", - "id": 14, - "offset": 540, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1749294034 - }, - "m_fAttenuationFactor": { + "m_fPosition": { "type": "float", - "id": 15, - "offset": 544, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 273292776 - }, - "m_eAttenuationType": { - "type": "enum PositionInfoAttenuationType", "id": 16, - "offset": 548, - "flags": 2097159, + "offset": 584, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2427193304, - "enum_options": { - "Standard": 0, - "Unit Range Power": 1 - } + "hash": 1808212114 }, - "m_animationName": { - "type": "std::string", + "m_BaseColor": { + "type": "class Color", "id": 17, - "offset": 648, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3393414044 - } - } - }, - "417390188": { - "name": "class SharedPointer", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 417390188, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_time": { - "type": "float", - "id": 1, - "offset": 112, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 310085638 - } - } - }, - "1988262585": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1988262585, - "properties": { - "m_stitchLeaderboardList": { - "type": "gid", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1311714008 - }, - "m_type": { - "type": "unsigned int", - "id": 1, - "offset": 88, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 431304463 - } - } - }, - "812061116": { - "name": "class SharedPointer", - "bases": [ - "GameEffectTemplate", - "PropertyClass" - ], - "hash": 812061116, - "properties": { - "m_effectName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2029161513 - }, - "m_effectCategory": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1852673222 - }, - "m_sortOrder": { - "type": "int", - "id": 2, - "offset": 148, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1411218206 - }, - "m_duration": { - "type": "double", - "id": 3, - "offset": 192, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2727932435 - }, - "m_stackingCategories": { - "type": "std::string", - "id": 4, - "offset": 160, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1774497525 - }, - "m_isPersistent": { - "type": "bool", - "id": 5, - "offset": 153, - "flags": 7, + "offset": 588, + "flags": 262279, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 923861920 + "hash": 2172251096 }, - "m_bIsOnPet": { - "type": "bool", - "id": 6, - "offset": 154, - "flags": 7, + "m_BarColor": { + "type": "class Color", + "id": 18, + "offset": 592, + "flags": 262279, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 522593303 + "hash": 2259916498 }, - "m_isPublic": { + "m_bDisplayVertical": { "type": "bool", - "id": 7, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1728439822 - }, - "m_visualEffectAddName": { - "type": "std::string", - "id": 8, - "offset": 200, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3382086694 - }, - "m_visualEffectRemoveName": { - "type": "std::string", - "id": 9, - "offset": 232, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1541697323 - }, - "m_onAddFunctorName": { - "type": "std::string", - "id": 10, - "offset": 280, - "flags": 7, + "id": 19, + "offset": 596, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1561843107 + "hash": 1359621189 }, - "m_onRemoveFunctorName": { - "type": "std::string", - "id": 11, - "offset": 312, - "flags": 7, + "m_pBarMaterial": { + "type": "class SharedPointer", + "id": 20, + "offset": 600, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 2559017864 + "pointer": true, + "hash": 2481929515 }, - "m_stackingRule": { - "type": "enum STACKING_RULE", - "id": 12, - "offset": 144, - "flags": 2097159, + "m_pTopLeftMaterial": { + "type": "class SharedPointer", + "id": 21, + "offset": 616, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 431568889, - "enum_options": { - "STACKING_ALLOWED": 0, - "STACKING_NOSTACK": 1, - "STACKING_REPLACE": 2 - } + "pointer": true, + "hash": 3248096916 }, - "m_pipsGiven": { - "type": "int", - "id": 13, - "offset": 360, - "flags": 7, + "m_pCenterMaterial": { + "type": "class SharedPointer", + "id": 22, + "offset": 632, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1346249167 + "pointer": true, + "hash": 1519560055 }, - "m_powerPipsGiven": { - "type": "int", - "id": 14, - "offset": 364, - "flags": 7, + "m_pBottomRightMaterial": { + "type": "class SharedPointer", + "id": 23, + "offset": 648, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 377908508 - } - } - }, - "811984723": { - "name": "class MyStitchEntryList*", - "bases": [ - "PropertyClass" - ], - "hash": 811984723, - "properties": { - "m_myStitchEntryList": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, "pointer": true, - "hash": 2621117270 + "hash": 2932444745 }, - "m_hasEventJudgesChoiceAvailable": { - "type": "bool", - "id": 1, - "offset": 88, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1875999071 - } - } - }, - "1578249642": { - "name": "class ClientFadeActorCinematicAction", - "bases": [ - "FadeActorCinematicAction", - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 1578249642, - "properties": { - "m_timeOffset": { + "m_fMin": { "type": "float", - "id": 0, - "offset": 72, - "flags": 7, + "id": 24, + "offset": 700, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 + "hash": 309551905 }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, + "m_fMax": { + "type": "float", + "id": 25, + "offset": 704, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2285866132 + "hash": 309551651 }, - "m_fadeDuration": { - "type": "float", - "id": 2, - "offset": 120, - "flags": 7, + "m_nTabWidth": { + "type": "int", + "id": 26, + "offset": 708, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1402536557 + "hash": 1554957503 }, - "m_alphaTarget": { - "type": "float", - "id": 3, - "offset": 124, - "flags": 7, + "m_nNumberOfTicks": { + "type": "int", + "id": 27, + "offset": 712, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 197622500 + "hash": 1073178596 } } }, - "417450351": { - "name": "class SpellBookPrefsWindow*", + "813925290": { + "name": "class MiniMapWindow", "bases": [ "Window", "PropertyClass" ], - "hash": 417450351, + "hash": 813925290, "properties": { "m_sName": { "type": "std::string", @@ -539066,128 +353104,208 @@ } } }, - "1989475166": { - "name": "class SharedPointer", + "1214778953": { + "name": "struct std::pair", + "bases": [], + "hash": 1214778953, + "properties": {} + }, + "2101981679": { + "name": "class ChatInfo", + "bases": [], + "hash": 2101981679, + "properties": {} + }, + "1664248606": { + "name": "class DynaModList*", "bases": [ "PropertyClass" ], - "hash": 1989475166, + "hash": 1664248606, "properties": { - "m_housingItemGIDList": { - "type": "gid", + "m_allMods": { + "type": "class SharedPointer", "id": 0, "offset": 72, - "flags": 7, + "flags": 27, "container": "List", "dynamic": true, "singleton": false, - "pointer": false, - "hash": 310124628 + "pointer": true, + "hash": 3780396482 } } }, - "812326197": { - "name": "class SharedPointer", + "820388105": { + "name": "class MagicMirrorShopOption", "bases": [ + "ServiceOptionBase", "PropertyClass" ], - "hash": 812326197, + "hash": 820388105, "properties": { - "m_userID": { - "type": "gid", + "m_serviceName": { + "type": "std::string", "id": 0, "offset": 72, - "flags": 7, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1037989700 + "hash": 2206028813 }, - "m_userName": { + "m_iconKey": { "type": "std::string", "id": 1, - "offset": 80, - "flags": 7, + "offset": 168, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2213937019 + "hash": 2457138637 }, - "m_characterID": { - "type": "gid", + "m_displayKey": { + "type": "std::string", "id": 2, - "offset": 112, - "flags": 7, + "offset": 104, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 210498386 + "hash": 3023276954 }, - "m_characterName": { - "type": "std::wstring", + "m_serviceIndex": { + "type": "unsigned int", "id": 3, - "offset": 120, + "offset": 204, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2103126710 + }, + "m_forceInteract": { + "type": "bool", + "id": 4, + "offset": 200, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1705789564 + } + } + }, + "1214843369": { + "name": "class SharedPointer", + "bases": [ + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 1214843369, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2815013574 + "hash": 2237098605 }, - "m_zoneName": { + "m_actor": { "type": "std::string", - "id": 4, - "offset": 152, + "id": 1, + "offset": 80, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2171167736 + "hash": 2285866132 }, - "m_realmName": { + "m_zoneTag": { "type": "std::string", - "id": 5, - "offset": 184, + "id": 2, + "offset": 120, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3507983949 + "hash": 3405382643 + }, + "m_bStartHidden": { + "type": "bool", + "id": 3, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1939845615 } } }, - "1578701589": { - "name": "class BehaviorInstance", + "375586297": { + "name": "class PetFeedingRewardInfo", "bases": [ "PropertyClass" ], - "hash": 1578701589, + "hash": 375586297, "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", + "m_minIntrinsicValue": { + "type": "int", "id": 0, - "offset": 104, - "flags": 39, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 + "hash": 1962770606 + }, + "m_bCostsEnergy": { + "type": "bool", + "id": 1, + "offset": 76, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1061466155 + }, + "m_lootTables": { + "type": "std::string", + "id": 2, + "offset": 80, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1514961588 } } }, - "417955841": { - "name": "class NewFriendsListWindow*", + "814646514": { + "name": "class SpellFusionListControl", "bases": [ + "SpellListControl", "Window", "PropertyClass" ], - "hash": 417955841, + "hash": 814646514, "properties": { "m_sName": { "type": "std::string", @@ -539223,11 +353341,9 @@ "hash": 983582334, "enum_options": { "HAS_BACK": 1, - "SCALE_CHILDREN": 2, "CAN_MOVE": 4, "CAN_SIZE": 8, "CAN_SCROLL": 16, - "FOCUS_LOCKED": 64, "CAN_FOCUS": 128, "CAN_DOCK": 32, "DO_NOT_CAPTURE_MOUSE": 256, @@ -539239,7 +353355,8 @@ "USE_ALPHA_BOUNDS": 8192, "AUTO_GROW": 16384, "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152 + "AUTO_RESIZE": 49152, + "SLC_NUMBERS": 16777216 } }, "m_Flags": { @@ -539399,410 +353516,119 @@ "singleton": false, "pointer": false, "hash": 3091503757 - } - } - }, - "1990328099": { - "name": "class SharedPointer", - "bases": [ - "ComplexRotateTurnIndicatorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 1990328099, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, + }, + "m_cardSize": { + "type": "class Size", + "id": 16, + "offset": 716, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 + "hash": 1135567057 }, - "m_rotationInfo": { - "type": "class SharedPointer", - "id": 1, - "offset": 80, + "m_spacing": { + "type": "class Point", + "id": 17, + "offset": 724, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2332010820 - } - } - }, - "1578356076": { - "name": "class TreasureCardVaultBehavior*", - "bases": [ - "TreasureCardVaultBehaviorBase", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1578356076, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, "pointer": false, - "hash": 223437287 + "hash": 3187881255 }, - "m_spellData": { - "type": "std::string", - "id": 1, - "offset": 128, - "flags": 575, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2688126101 - } - } - }, - "417820202": { - "name": "class ArenaPointsLootInfo*", - "bases": [ - "LootInfo", - "LootInfoBase", - "PropertyClass" - ], - "hash": 417820202, - "properties": { - "m_lootType": { - "type": "enum LootInfo::LOOT_TYPE", - "id": 0, - "offset": 72, - "flags": 2097183, - "container": "Static", - "dynamic": false, + "m_holes": { + "type": "class Rect", + "id": 18, + "offset": 696, + "flags": 7, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 1591891442, - "enum_options": { - "LOOT_TYPE_NONE": 0, - "LOOT_TYPE_GOLD": 1, - "LOOT_TYPE_MANA": 2, - "LOOT_TYPE_ITEM": 3, - "LOOT_TYPE_TREASURE_CARD": 4, - "LOOT_TYPE_MAGIC_XP": 5, - "LOOT_TYPE_ADD_SPELL": 6, - "LOOT_TYPE_MAX_HEALTH": 7, - "LOOT_TYPE_MAX_GOLD": 8, - "LOOT_TYPE_MAX_MANA": 9, - "LOOT_TYPE_MAX_POTION": 10, - "LOOT_TYPE_TRAINING_POINTS": 11, - "LOOT_TYPE_RECIPE": 12, - "LOOT_TYPE_CRAFTING_SLOT": 13, - "LOOT_TYPE_REAGENT": 14, - "LOOT_TYPE_PETSNACK": 15, - "LOOT_TYPE_GARDENING_XP": 16, - "LOOT_TYPE_PET_XP": 17, - "LOOT_TYPE_TREASURE_TABLE": 18, - "LOOT_TYPE_ARENA_POINTS": 19, - "LOOT_TYPE_ARENA_BONUS_POINTS": 20, - "LOOT_TYPE_GROUP": 21, - "LOOT_TYPE_FISHING_XP": 22, - "LOOT_TYPE_EVENT_CURRENCY_1": 24, - "LOOT_TYPE_EVENT_CURRENCY_2": 25, - "LOOT_TYPE_PVP_CURRENCY": 26, - "LOOT_TYPE_PVP_CURRENCY_BONUS": 27, - "LOOT_TYPE_PVP_TOURNEY_CURRENCY": 28, - "LOOT_TYPE_PVP_TOURNEY_CURRENCY_BONUS": 29, - "LOOT_TYPE_FURNITURE_ESSENCE": 30 - } + "hash": 1902151287 }, - "m_arenaPointsAmount": { - "type": "int", - "id": 1, - "offset": 80, - "flags": 31, + "m_ingredientSize": { + "type": "class Size", + "id": 19, + "offset": 760, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2041106034 - } - } - }, - "1990128863": { - "name": "class HousingGameKhanDanceSequence", - "bases": [ - "PropertyClass" - ], - "hash": 1990128863, - "properties": { - "m_danceSequenceList": { - "type": "unsigned char", - "id": 0, - "offset": 72, + "hash": 1856724800 + }, + "m_ingredientSpacing": { + "type": "class Point", + "id": 20, + "offset": 768, "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2597302176 - } - } - }, - "813008293": { - "name": "class GuildAchievementBehavior*", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 813008293, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 + "hash": 2794695056 } } }, - "812703659": { - "name": "class ConicalStateSoundBehavior", + "2103181614": { + "name": "class JewelSocketUnlockCost", "bases": [ - "ConicalSoundBehavior", - "PositionalSoundBehavior", - "SoundBehavior", - "AreaBehavior", - "BehaviorInstance", "PropertyClass" ], - "hash": 812703659, + "hash": 2103181614, "properties": { - "m_behaviorTemplateNameID": { + "m_crownsCost": { "type": "unsigned int", "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_radius": { - "type": "float", - "id": 1, - "offset": 116, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 989410271 - }, - "m_category": { - "type": "enum AudioCategory", - "id": 2, - "offset": 124, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2951251982, - "enum_options": { - "AudioCategory_Irrelevent": 0, - "AudioCategory_Accoustic": 1, - "AudioCategory_Noise": 2, - "AudioCategory_Music": 3 - } - }, - "m_exclusive": { - "type": "bool", - "id": 3, - "offset": 128, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 824383403 - }, - "m_playList": { - "type": "class PlayList", - "id": 4, - "offset": 176, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2061221957 - }, - "m_volume": { - "type": "float", - "id": 5, - "offset": 304, + "offset": 72, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1162855023 + "hash": 1803615170 }, - "m_loopCount": { + "m_lowestEquipLevelInclusive": { "type": "int", - "id": 6, - "offset": 308, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 865634717 - }, - "m_minimumFalloff": { - "type": "float", - "id": 7, - "offset": 328, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 355697197 - }, - "m_maximumFalloff": { - "type": "float", - "id": 8, - "offset": 332, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2210192367 - }, - "m_animDriven": { - "type": "bool", - "id": 9, - "offset": 392, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 398394720 - }, - "m_inverted": { - "type": "bool", - "id": 10, - "offset": 397, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1034821044 - }, - "m_fInsideAngle": { - "type": "float", - "id": 11, - "offset": 528, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1114383840 - }, - "m_fOutsideAngle": { - "type": "float", - "id": 12, - "offset": 532, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1627152289 - }, - "m_fOutsideVolume": { - "type": "float", - "id": 13, - "offset": 536, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 90369618 - }, - "m_fRangeScale": { - "type": "float", - "id": 14, - "offset": 540, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1749294034 - }, - "m_fAttenuationFactor": { - "type": "float", - "id": 15, - "offset": 544, + "id": 1, + "offset": 76, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 273292776 - }, - "m_eAttenuationType": { - "type": "enum PositionInfoAttenuationType", - "id": 16, - "offset": 548, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2427193304, - "enum_options": { - "Standard": 0, - "Unit Range Power": 1 - } + "hash": 1282442502 }, - "m_animationName": { - "type": "std::string", - "id": 17, - "offset": 648, + "m_highestEquipLevelInclusive": { + "type": "int", + "id": 2, + "offset": 80, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3393414044 + "hash": 1771734836 } } }, - "1578841423": { - "name": "class TriviaWindow", + "814466824": { + "name": "class std::list >", + "bases": [], + "hash": 814466824, + "properties": {} + }, + "1664748859": { + "name": "class HUDWindow*", "bases": [ "Window", "PropertyClass" ], - "hash": 1578841423, + "hash": 1664748859, "properties": { "m_sName": { "type": "std::string", @@ -540017,36 +353843,69 @@ } } }, - "418089412": { - "name": "class SharedPointer", + "2102227818": { + "name": "class TextureD3D*", "bases": [ - "ObstacleCourseRevolvingDoorBehavior", - "ObstacleCourseObstacleBehavior", - "BehaviorInstance", + "Texture", "PropertyClass" ], - "hash": 418089412, + "hash": 2102227818, "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", + "m_sFilename": { + "type": "std::string", "id": 0, "offset": 104, - "flags": 39, + "flags": 131207, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 + "hash": 2431512111 + }, + "m_bAlphaChannel": { + "type": "bool", + "id": 1, + "offset": 137, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1780697684 + }, + "m_bDoubleSided": { + "type": "bool", + "id": 2, + "offset": 138, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1054874233 + }, + "m_bMipMap": { + "type": "bool", + "id": 3, + "offset": 139, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1791042393 } } }, - "417955881": { - "name": "class NewFriendsListWindow", + "813942613": { + "name": "class PetSnackCheckBox*", "bases": [ + "ControlCheckBox", + "ControlButton", "Window", "PropertyClass" ], - "hash": 417955881, + "hash": 813942613, "properties": { "m_sName": { "type": "std::string", @@ -540082,11 +353941,8 @@ "hash": 983582334, "enum_options": { "HAS_BACK": 1, - "SCALE_CHILDREN": 2, "CAN_MOVE": 4, "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "FOCUS_LOCKED": 64, "CAN_FOCUS": 128, "CAN_DOCK": 32, "DO_NOT_CAPTURE_MOUSE": 256, @@ -540098,7 +353954,12 @@ "USE_ALPHA_BOUNDS": 8192, "AUTO_GROW": 16384, "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152 + "AUTO_RESIZE": 49152, + "EFFECT_SCALE": 67108864, + "LOCK_ICON_SIZE": 33554432, + "LEFT_TEXT": 536870912, + "NO_FIT_TEXT": 1073741824, + "CHECKBOX_TEXTOVERIMAGE": 16777216 } }, "m_Flags": { @@ -540258,837 +354119,660 @@ "singleton": false, "pointer": false, "hash": 3091503757 - } - } - }, - "1991057723": { - "name": "class PetLevelInfo", - "bases": [ - "PropertyClass" - ], - "hash": 1991057723, - "properties": { - "m_level": { - "type": "unsigned char", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1438884808 - }, - "m_template": { - "type": "unsigned int", - "id": 1, - "offset": 76, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 669977097 }, - "m_requiredXP": { - "type": "unsigned int", - "id": 2, - "offset": 80, - "flags": 7, + "m_bToggle": { + "type": "bool", + "id": 16, + "offset": 608, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1890811574 + "hash": 2071810903 }, - "m_powerCardCount": { - "type": "unsigned int", - "id": 3, - "offset": 84, - "flags": 7, + "m_bButtonDown": { + "type": "bool", + "id": 17, + "offset": 609, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1299301661 + "hash": 840041705 }, - "m_powerCardName": { - "type": "std::string", - "id": 4, - "offset": 88, - "flags": 268435463, + "m_sLabel": { + "type": "std::wstring", + "id": 18, + "offset": 616, + "flags": 4194439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1856508131, - "enum_options": { - "__BASECLASS": "SpellTemplate" - } + "hash": 2207009163 }, - "m_powerCardName2": { - "type": "std::string", - "id": 5, - "offset": 120, - "flags": 268435463, + "m_labelOffset": { + "type": "class Rect", + "id": 19, + "offset": 832, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2598131765, - "enum_options": { - "__BASECLASS": "SpellTemplate" - } + "hash": 1990646723 }, - "m_powerCardName3": { - "type": "std::string", - "id": 6, - "offset": 152, - "flags": 268435463, + "m_pButton": { + "type": "class SharedPointer", + "id": 20, + "offset": 656, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 2598131766, - "enum_options": { - "__BASECLASS": "SpellTemplate" - } + "pointer": true, + "hash": 1543855875 }, - "m_lootTable": { - "type": "std::string", - "id": 7, - "offset": 184, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2539512673 - } - } - }, - "813518302": { - "name": "class CombatActionListObj*", - "bases": [ - "PropertyClass" - ], - "hash": 813518302, - "properties": { - "m_actionList": { - "type": "class CombatAction", - "id": 0, - "offset": 72, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1971690676 - } - } - }, - "1990441318": { - "name": "class BGPolymorphSelectBehaviorTemplate", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 1990441318, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, + "m_HotKey": { + "type": "unsigned int", + "id": 21, + "offset": 672, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3130754092 + "hash": 1631553409 }, - "m_polymorphCategory": { - "type": "std::string", - "id": 1, - "offset": 120, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3076206595 - } - } - }, - "1603598820": { - "name": "class SharedPointer", - "bases": [ - "BurnHangingEffectCinematicAction", - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 1603598820, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, + "m_Color": { + "type": "class Color", + "id": 22, + "offset": 676, + "flags": 262279, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 + "hash": 1753714077 }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, + "m_bCursorOver": { + "type": "bool", + "id": 23, + "offset": 689, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2285866132 + "hash": 283981103 }, - "m_cloaked": { + "m_bAbortWhenCursorNotOver": { "type": "bool", - "id": 2, - "offset": 152, - "flags": 7, + "id": 24, + "offset": 706, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 7349510 + "hash": 325405258 }, - "m_detonate": { + "m_bHotKeyDown": { "type": "bool", - "id": 3, - "offset": 153, - "flags": 7, + "id": 25, + "offset": 680, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1738601959 + "hash": 616989185 }, - "m_burnSound": { - "type": "std::string", - "id": 4, - "offset": 120, - "flags": 131079, + "m_fTime": { + "type": "float", + "id": 26, + "offset": 684, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1827806971 - } - } - }, - "1990441270": { - "name": "class BGPolymorphSelectBehaviorTemplate*", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 1990441270, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, + "hash": 883746156 + }, + "m_bGreyed": { + "type": "bool", + "id": 27, + "offset": 688, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3130754092 + "hash": 1566556053 }, - "m_polymorphCategory": { - "type": "std::string", - "id": 1, - "offset": 120, - "flags": 31, + "m_fMaxScale": { + "type": "float", + "id": 28, + "offset": 692, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3076206595 - } - } - }, - "1597189013": { - "name": "class std::vector >", - "bases": [], - "hash": 1597189013, - "properties": {} - }, - "418408050": { - "name": "class SharedPointer", - "bases": [ - "StatisticEffectTemplate", - "GameEffectTemplate", - "PropertyClass" - ], - "hash": 418408050, - "properties": { - "m_effectName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, + "hash": 2070186635 + }, + "m_fScaleSpeed": { + "type": "float", + "id": 29, + "offset": 696, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2029161513 + "hash": 1457135702 }, - "m_effectCategory": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 7, + "m_bUseDropShadow": { + "type": "bool", + "id": 30, + "offset": 704, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1852673222 + "hash": 93063037 }, - "m_sortOrder": { - "type": "int", - "id": 2, - "offset": 148, - "flags": 7, + "m_bUseOutline": { + "type": "bool", + "id": 31, + "offset": 705, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1411218206 + "hash": 744292994 }, - "m_duration": { - "type": "double", - "id": 3, - "offset": 192, - "flags": 7, + "m_pGreyedState": { + "type": "class SharedPointer", + "id": 32, + "offset": 768, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 2727932435 - }, - "m_stackingCategories": { - "type": "std::string", - "id": 4, - "offset": 160, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1774497525 + "pointer": true, + "hash": 2703352263 }, - "m_isPersistent": { - "type": "bool", - "id": 5, - "offset": 153, - "flags": 7, + "m_pNormalState": { + "type": "class SharedPointer", + "id": 33, + "offset": 752, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 923861920 + "pointer": true, + "hash": 1887909808 }, - "m_bIsOnPet": { - "type": "bool", - "id": 6, - "offset": 154, - "flags": 7, + "m_pHighlightedState": { + "type": "class SharedPointer", + "id": 34, + "offset": 784, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 522593303 + "pointer": true, + "hash": 2200177608 }, - "m_isPublic": { - "type": "bool", - "id": 7, - "offset": 152, - "flags": 7, + "m_pSelectedState": { + "type": "class SharedPointer", + "id": 35, + "offset": 800, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1728439822 + "pointer": true, + "hash": 2266776432 }, - "m_visualEffectAddName": { - "type": "std::string", - "id": 8, - "offset": 200, - "flags": 7, + "m_pDepressedState": { + "type": "class SharedPointer", + "id": 36, + "offset": 816, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 3382086694 + "pointer": true, + "hash": 1878185798 }, - "m_visualEffectRemoveName": { - "type": "std::string", - "id": 9, - "offset": 232, - "flags": 7, + "m_nGroupID": { + "type": "int", + "id": 37, + "offset": 880, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1541697323 + "hash": 403966850 }, - "m_onAddFunctorName": { - "type": "std::string", - "id": 10, - "offset": 280, - "flags": 7, + "m_bChecked": { + "type": "bool", + "id": 38, + "offset": 884, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1561843107 + "hash": 958955100 }, - "m_onRemoveFunctorName": { - "type": "std::string", - "id": 11, - "offset": 312, - "flags": 7, + "m_pCheckedState": { + "type": "class SharedPointer", + "id": 39, + "offset": 888, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 2559017864 + "pointer": true, + "hash": 1210539694 }, - "m_stackingRule": { - "type": "enum STACKING_RULE", - "id": 12, - "offset": 144, - "flags": 2097159, + "m_pCheckedGreyedState": { + "type": "class SharedPointer", + "id": 40, + "offset": 904, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 431568889, - "enum_options": { - "STACKING_ALLOWED": 0, - "STACKING_NOSTACK": 1, - "STACKING_REPLACE": 2 - } + "pointer": true, + "hash": 2702030126 }, - "m_scaleToLevel": { - "type": "int", - "id": 13, - "offset": 360, - "flags": 7, + "m_pCheckedHighlightedState": { + "type": "class SharedPointer", + "id": 41, + "offset": 920, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 2018266685 + "pointer": true, + "hash": 1320097679 }, - "m_scaleUp": { - "type": "bool", - "id": 14, - "offset": 364, - "flags": 7, + "m_pCheckedDepressedState": { + "type": "class SharedPointer", + "id": 42, + "offset": 936, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 975051008 + "pointer": true, + "hash": 1609188685 } } }, - "813589465": { - "name": "class SharedPointer", + "1664491959": { + "name": "class ControlBanner*", "bases": [ - "CinematicAction", + "ControlSprite", + "Window", "PropertyClass" ], - "hash": 813589465, + "hash": 1664491959, "properties": { - "m_timeOffset": { - "type": "float", + "m_sName": { + "type": "std::string", "id": 0, - "offset": 72, - "flags": 7, + "offset": 80, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 + "hash": 2306437263 }, - "m_text": { - "type": "std::string", + "m_Children": { + "type": "class SharedPointer", "id": 1, "offset": 112, - "flags": 7, - "container": "Static", - "dynamic": false, + "flags": 65671, + "container": "Vector", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 1717580128 + "pointer": true, + "hash": 2621225959 }, - "m_onlyForPlayer": { - "type": "bool", + "m_Style": { + "type": "unsigned int", "id": 2, - "offset": 144, - "flags": 7, + "offset": 152, + "flags": 1048583, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 249913353 + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "SCALE_CHILDREN": 2, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "FOCUS_LOCKED": 64, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152 + } }, - "m_stringTable": { - "type": "std::string", + "m_Flags": { + "type": "unsigned int", "id": 3, - "offset": 80, - "flags": 7, + "offset": 156, + "flags": 1048583, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3386025626 + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648, + "ONE_SHOT": 8388608, + "FLIPPED_HORIZONTAL": 16777216, + "FLIPPED_VERTICAL": 33554432 + } }, - "m_effectParamMadlib": { - "type": "bool", + "m_Window": { + "type": "class Rect", "id": 4, - "offset": 146, - "flags": 7, + "offset": 160, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 292989178 - } - } - }, - "1587650672": { - "name": "class SharedPointer", - "bases": [ - "ServiceOptionBase", - "PropertyClass" - ], - "hash": 1587650672, - "properties": { - "m_serviceName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, + "hash": 3105139380 + }, + "m_fTargetAlpha": { + "type": "float", + "id": 5, + "offset": 212, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2206028813 + "hash": 1809129834 }, - "m_iconKey": { - "type": "std::string", - "id": 1, - "offset": 168, - "flags": 31, + "m_fDisabledAlpha": { + "type": "float", + "id": 6, + "offset": 216, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2457138637 + "hash": 1389987675 }, - "m_displayKey": { - "type": "std::string", - "id": 2, - "offset": 104, - "flags": 31, + "m_fAlpha": { + "type": "float", + "id": 7, + "offset": 208, + "flags": 65671, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3023276954 + "hash": 482130755 }, - "m_serviceIndex": { - "type": "unsigned int", - "id": 3, - "offset": 204, - "flags": 31, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 2103126710 + "pointer": true, + "hash": 3623628394 }, - "m_forceInteract": { - "type": "bool", - "id": 4, - "offset": 200, - "flags": 31, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1705789564 - } - } - }, - "813551353": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 813551353, - "properties": { - "m_teamNames": { + "hash": 2102211316 + }, + "m_sScript": { "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Vector", - "dynamic": true, + "id": 10, + "offset": 352, + "flags": 135, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 3124709014 - } - } - }, - "1581425519": { - "name": "class CinematicStageTemplate*", - "bases": [ - "PropertyClass" - ], - "hash": 1581425519, - "properties": { - "m_name": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, + "hash": 1846695875 + }, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1717359772 + "hash": 3389835433 }, - "m_duration": { - "type": "float", - "id": 1, - "offset": 104, - "flags": 7, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 920323453 + "hash": 2547159940 }, - "m_actions": { - "type": "class SharedPointer", - "id": 2, - "offset": 112, - "flags": 7, - "container": "List", - "dynamic": true, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1380578687 + "pointer": false, + "hash": 1513510520 }, - "m_stageRelationships": { - "type": "class SharedPointer", - "id": 3, - "offset": 128, - "flags": 7, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, "container": "List", "dynamic": true, "singleton": false, - "pointer": true, - "hash": 499983354 - } - } - }, - "1990642621": { - "name": "class SharedPointer", - "bases": [ - "RaidPortalBehavior", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1990642621, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, "pointer": false, - "hash": 223437287 + "hash": 2587533771 }, - "m_active": { - "type": "bool", - "id": 1, - "offset": 112, - "flags": 31, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 239335471 - } - } - }, - "1581265199": { - "name": "class HousingMusicBehavior*", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1581265199, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, + "hash": 3091503757 + }, + "m_pMaterial": { + "type": "class SharedPointer", + "id": 16, + "offset": 592, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 223437287 - } - } - }, - "420802697": { - "name": "class SharedPointer", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 420802697, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, + "pointer": true, + "hash": 3479277078 + }, + "m_fRotation": { + "type": "float", + "id": 17, + "offset": 608, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3130754092 + "hash": 1175400173 }, - "m_raidPortalTemplate": { - "type": "unsigned int", - "id": 1, - "offset": 120, - "flags": 7, + "m_Color": { + "type": "class Color", + "id": 18, + "offset": 584, + "flags": 262279, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1948761787 - } - } - }, - "1579974194": { - "name": "class WinAnimMoveToLocation", - "bases": [ - "WindowAnimation", - "PropertyClass" - ], - "hash": 1579974194, - "properties": { - "m_bUseDeepCopy": { - "type": "bool", - "id": 0, - "offset": 72, - "flags": 135, + "hash": 1753714077 + }, + "m_textColor": { + "type": "class Color", + "id": 19, + "offset": 612, + "flags": 262279, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 433380635 + "hash": 2528109250 }, - "m_targetLocation": { - "type": "class Vector3D", - "id": 1, - "offset": 80, + "m_textComponent": { + "type": "class TextComponent", + "id": 20, + "offset": 616, "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2653859938 + "hash": 3491704390 } } }, - "420276161": { - "name": "class SharedPointer", + "1222056337": { + "name": "class BattlegroundPolymorphImprovementOption*", "bases": [ - "ActorCinematicAction", - "CinematicAction", + "ServiceOptionBase", "PropertyClass" ], - "hash": 420276161, + "hash": 1222056337, "properties": { - "m_timeOffset": { - "type": "float", + "m_serviceName": { + "type": "std::string", "id": 0, "offset": 72, - "flags": 7, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 + "hash": 2206028813 }, - "m_actor": { + "m_iconKey": { "type": "std::string", "id": 1, - "offset": 80, - "flags": 7, + "offset": 168, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2285866132 + "hash": 2457138637 }, - "m_effect": { + "m_displayKey": { "type": "std::string", "id": 2, - "offset": 120, - "flags": 7, + "offset": 104, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1894145160 + "hash": 3023276954 }, - "m_idleOnly": { - "type": "bool", + "m_serviceIndex": { + "type": "unsigned int", "id": 3, - "offset": 152, - "flags": 7, + "offset": 204, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 612425235 + "hash": 2103126710 + }, + "m_forceInteract": { + "type": "bool", + "id": 4, + "offset": 200, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1705789564 } } }, - "813922450": { - "name": "class DerbyEffectSprite*", + "375943772": { + "name": "class SharedPointer", "bases": [ + "StatGlobe", "ControlSprite", "Window", "PropertyClass" ], - "hash": 813922450, + "hash": 375943772, "properties": { "m_sName": { "type": "std::string", @@ -541359,321 +355043,125 @@ "pointer": false, "hash": 3491704390 }, - "m_effectID": { - "type": "std::string", + "m_amount": { + "type": "int", "id": 21, - "offset": 736, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3633927605 - } - } - }, - "1579973426": { - "name": "class WinAnimMoveToLocation*", - "bases": [ - "WindowAnimation", - "PropertyClass" - ], - "hash": 1579973426, - "properties": { - "m_bUseDeepCopy": { - "type": "bool", - "id": 0, - "offset": 72, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 433380635 - }, - "m_targetLocation": { - "type": "class Vector3D", - "id": 1, - "offset": 80, + "offset": 800, "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2653859938 + "hash": 248546638 } } }, - "418937936": { - "name": "class SharedPointer", + "813931909": { + "name": "class BracketMatchActorResult", "bases": [ + "MatchActorResult", "PropertyClass" ], - "hash": 418937936, + "hash": 813931909, "properties": { - "m_actor": { - "type": "std::string", + "m_pActor": { + "type": "class SharedPointer", "id": 0, "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - }, - "m_stageToWaitFor": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 7, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 2133449134 - } - } - }, - "1991528513": { - "name": "class SharedPointer", - "bases": [ - "CoreObject", - "PropertyClass" - ], - "hash": 1991528513, - "properties": { - "m_inactiveBehaviors": { - "type": "class SharedPointer", - "id": 0, - "offset": 224, - "flags": 31, - "container": "Vector", - "dynamic": true, - "singleton": false, "pointer": true, - "hash": 1850812559 + "hash": 1115051967 }, - "m_globalID.m_full": { - "type": "unsigned __int64", + "m_place": { + "type": "int", "id": 1, - "offset": 72, - "flags": 16777247, + "offset": 88, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2312465444 + "hash": 806257663 }, - "m_permID": { - "type": "unsigned __int64", + "m_ratingGained": { + "type": "int", "id": 2, - "offset": 80, - "flags": 16777247, + "offset": 92, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1298909658 + "hash": 1426436071 }, - "m_location": { - "type": "class Vector3D", + "m_arenaPoints": { + "type": "int", "id": 3, - "offset": 168, + "offset": 96, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2239683611 + "hash": 511478910 }, - "m_orientation": { - "type": "class Vector3D", + "m_pvpCurrency": { + "type": "int", "id": 4, - "offset": 180, + "offset": 100, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2344058766 + "hash": 611304283 }, - "m_fScale": { - "type": "float", + "m_pvpTourneyCurrency": { + "type": "int", "id": 5, - "offset": 196, + "offset": 104, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 503137701 + "hash": 1184787505 }, - "m_templateID.m_full": { - "type": "unsigned __int64", + "m_gold": { + "type": "int", "id": 6, - "offset": 96, + "offset": 108, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 633907631 + "hash": 219423808 }, - "m_debugName": { - "type": "std::string", + "m_gameResult": { + "type": "unsigned char", "id": 7, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3553984419 - }, - "m_displayKey": { - "type": "std::string", - "id": 8, - "offset": 136, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3023276954 - }, - "m_zoneTagID": { - "type": "unsigned int", - "id": 9, - "offset": 344, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 965291410 - }, - "m_speedMultiplier": { - "type": "short", - "id": 10, - "offset": 192, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 123130076 - }, - "m_nMobileID": { - "type": "unsigned short", - "id": 11, - "offset": 194, + "offset": 112, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1054318939 - }, - "m_characterID": { - "type": "gid", - "id": 12, - "offset": 432, - "flags": 33554463, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 210498386 - }, - "m_gameID": { - "type": "gid", - "id": 13, - "offset": 416, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 469020959 - }, - "m_gameNameID": { - "type": "unsigned int", - "id": 14, - "offset": 424, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 829938293 - }, - "m_gamesWon": { - "type": "int", - "id": 15, - "offset": 440, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1733371579 - }, - "m_gamesLost": { - "type": "int", - "id": 16, - "offset": 444, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1363461609 - }, - "m_gamesTied": { - "type": "int", - "id": 17, - "offset": 448, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1363742093 - }, - "m_gamesPlayed": { - "type": "int", - "id": 18, - "offset": 452, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 954596038 - }, - "m_score": { - "type": "int", - "id": 19, - "offset": 456, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 809507734 + "hash": 1417654793 } } }, - "813778773": { - "name": "class PetSnackCheckBox", + "1664491954": { + "name": "class ControlBanner", "bases": [ - "ControlCheckBox", - "ControlButton", + "ControlSprite", "Window", "PropertyClass" ], - "hash": 813778773, + "hash": 1664491954, "properties": { "m_sName": { "type": "std::string", @@ -541709,8 +355197,11 @@ "hash": 983582334, "enum_options": { "HAS_BACK": 1, + "SCALE_CHILDREN": 2, "CAN_MOVE": 4, "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "FOCUS_LOCKED": 64, "CAN_FOCUS": 128, "CAN_DOCK": 32, "DO_NOT_CAPTURE_MOUSE": 256, @@ -541722,12 +355213,7 @@ "USE_ALPHA_BOUNDS": 8192, "AUTO_GROW": 16384, "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152, - "EFFECT_SCALE": 67108864, - "LOCK_ICON_SIZE": 33554432, - "LEFT_TEXT": 536870912, - "NO_FIT_TEXT": 1073741824, - "CHECKBOX_TEXTOVERIMAGE": 16777216 + "AUTO_RESIZE": 49152 } }, "m_Flags": { @@ -541753,7 +355239,10 @@ "PARENT_HEIGHT": 524288, "HCENTER": 32768, "VCENTER": 65536, - "DISABLED": 2147483648 + "DISABLED": 2147483648, + "ONE_SHOT": 8388608, + "FLIPPED_HORIZONTAL": 16777216, + "FLIPPED_VERTICAL": 33554432 } }, "m_Window": { @@ -541888,757 +355377,884 @@ "pointer": false, "hash": 3091503757 }, - "m_bToggle": { - "type": "bool", + "m_pMaterial": { + "type": "class SharedPointer", "id": 16, - "offset": 608, + "offset": 592, "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 2071810903 + "pointer": true, + "hash": 3479277078 }, - "m_bButtonDown": { - "type": "bool", + "m_fRotation": { + "type": "float", "id": 17, - "offset": 609, + "offset": 608, "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 840041705 + "hash": 1175400173 }, - "m_sLabel": { - "type": "std::wstring", + "m_Color": { + "type": "class Color", "id": 18, - "offset": 616, - "flags": 4194439, + "offset": 584, + "flags": 262279, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2207009163 + "hash": 1753714077 }, - "m_labelOffset": { - "type": "class Rect", + "m_textColor": { + "type": "class Color", "id": 19, - "offset": 832, - "flags": 135, + "offset": 612, + "flags": 262279, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1990646723 + "hash": 2528109250 }, - "m_pButton": { - "type": "class SharedPointer", + "m_textComponent": { + "type": "class TextComponent", "id": 20, - "offset": 656, + "offset": 616, "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1543855875 - }, - "m_HotKey": { - "type": "unsigned int", - "id": 21, - "offset": 672, - "flags": 135, + "pointer": false, + "hash": 3491704390 + } + } + }, + "1219953108": { + "name": "class Reco::LevelData*", + "bases": [ + "PropertyClass" + ], + "hash": 1219953108, + "properties": { + "m_level": { + "type": "int", + "id": 0, + "offset": 72, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1631553409 + "hash": 801285362 }, - "m_Color": { - "type": "class Color", - "id": 22, - "offset": 676, - "flags": 262279, + "m_categoryData": { + "type": "class SharedPointer", + "id": 1, + "offset": 96, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2178338894 + } + } + }, + "2102471527": { + "name": "class SharedPointer", + "bases": [ + "ExtraHousingZoneBehaviorBase", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 2102471527, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1753714077 - }, - "m_bCursorOver": { - "type": "bool", - "id": 23, - "offset": 689, + "hash": 223437287 + } + } + }, + "375789558": { + "name": "class NPCTrainingWindow", + "bases": [ + "Window", + "PropertyClass" + ], + "hash": 375789558, + "properties": { + "m_sName": { + "type": "std::string", + "id": 0, + "offset": 80, "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 283981103 + "hash": 2306437263 }, - "m_bAbortWhenCursorNotOver": { - "type": "bool", - "id": 24, - "offset": 706, - "flags": 135, + "m_Children": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621225959 + }, + "m_Style": { + "type": "unsigned int", + "id": 2, + "offset": 152, + "flags": 1048583, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 325405258 + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "SCALE_CHILDREN": 2, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "FOCUS_LOCKED": 64, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152 + } }, - "m_bHotKeyDown": { - "type": "bool", - "id": 25, - "offset": 680, - "flags": 135, + "m_Flags": { + "type": "unsigned int", + "id": 3, + "offset": 156, + "flags": 1048583, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 616989185 + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } }, - "m_fTime": { - "type": "float", - "id": 26, - "offset": 684, + "m_Window": { + "type": "class Rect", + "id": 4, + "offset": 160, "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 883746156 + "hash": 3105139380 }, - "m_bGreyed": { - "type": "bool", - "id": 27, - "offset": 688, + "m_fTargetAlpha": { + "type": "float", + "id": 5, + "offset": 212, "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1566556053 + "hash": 1809129834 }, - "m_fMaxScale": { + "m_fDisabledAlpha": { "type": "float", - "id": 28, - "offset": 692, + "id": 6, + "offset": 216, "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2070186635 + "hash": 1389987675 }, - "m_fScaleSpeed": { + "m_fAlpha": { "type": "float", - "id": 29, - "offset": 696, - "flags": 135, + "id": 7, + "offset": 208, + "flags": 65671, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1457135702 + "hash": 482130755 }, - "m_bUseDropShadow": { - "type": "bool", - "id": 30, - "offset": 704, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 93063037 + "pointer": true, + "hash": 3623628394 }, - "m_bUseOutline": { - "type": "bool", - "id": 31, - "offset": 705, - "flags": 135, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 744292994 + "hash": 2102211316 }, - "m_pGreyedState": { - "type": "class SharedPointer", - "id": 32, - "offset": 768, + "m_sScript": { + "type": "std::string", + "id": 10, + "offset": 352, "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2703352263 + "pointer": false, + "hash": 1846695875 }, - "m_pNormalState": { - "type": "class SharedPointer", - "id": 33, - "offset": 752, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1887909808 + "pointer": false, + "hash": 3389835433 }, - "m_pHighlightedState": { - "type": "class SharedPointer", - "id": 34, - "offset": 784, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2200177608 + "pointer": false, + "hash": 2547159940 }, - "m_pSelectedState": { - "type": "class SharedPointer", - "id": 35, - "offset": 800, - "flags": 135, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2266776432 + "pointer": false, + "hash": 1513510520 }, - "m_pDepressedState": { - "type": "class SharedPointer", - "id": 36, - "offset": 816, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, "flags": 135, - "container": "Static", - "dynamic": false, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": true, - "hash": 1878185798 + "pointer": false, + "hash": 2587533771 }, - "m_nGroupID": { - "type": "int", - "id": 37, - "offset": 880, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 403966850 + "hash": 3091503757 }, - "m_bChecked": { + "m_neverGoBackToTraining": { "type": "bool", - "id": 38, - "offset": 884, - "flags": 135, + "id": 16, + "offset": 1008, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 958955100 - }, - "m_pCheckedState": { - "type": "class SharedPointer", - "id": 39, - "offset": 888, - "flags": 135, + "hash": 1983510297 + } + } + }, + "1218902917": { + "name": "class SharedPointer", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1218902917, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1210539694 - }, - "m_pCheckedGreyedState": { - "type": "class SharedPointer", - "id": 40, - "offset": 904, + "pointer": false, + "hash": 223437287 + } + } + }, + "1217299961": { + "name": "class ControlDraw::Line*", + "bases": [ + "PropertyClass" + ], + "hash": 1217299961, + "properties": { + "m_PointData": { + "type": "class Point", + "id": 0, + "offset": 72, "flags": 135, - "container": "Static", - "dynamic": false, + "container": "Vector", + "dynamic": true, "singleton": false, - "pointer": true, - "hash": 2702030126 + "pointer": false, + "hash": 2358246150 }, - "m_pCheckedHighlightedState": { - "type": "class SharedPointer", - "id": 41, - "offset": 920, + "m_Color": { + "type": "class Color", + "id": 1, + "offset": 96, "flags": 135, "container": "Static", "dynamic": false, "singleton": false, + "pointer": false, + "hash": 1753714077 + } + } + }, + "814214856": { + "name": "class BattlegroundPlayerStatsManager*", + "bases": [ + "PropertyClass" + ], + "hash": 814214856, + "properties": { + "m_statsList": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, "pointer": true, - "hash": 1320097679 + "hash": 2999855587 }, - "m_pCheckedDepressedState": { - "type": "class SharedPointer", - "id": 42, - "offset": 936, - "flags": 135, + "m_poi": { + "type": "class SharedPointer", + "id": 1, + "offset": 88, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": true, - "hash": 1609188685 + "hash": 1342603341 } } }, - "813763071": { - "name": "class SoundInfo", + "1215206899": { + "name": "enum BracketInfo::EnumTournamentStyle", + "bases": [], + "hash": 1215206899, + "properties": {} + }, + "2103182382": { + "name": "class JewelSocketUnlockCost*", "bases": [ - "ClientObjectInfo", - "CoreObjectInfo", "PropertyClass" ], - "hash": 813763071, + "hash": 2103182382, "properties": { - "m_templateID.m_full": { - "type": "unsigned __int64", + "m_crownsCost": { + "type": "unsigned int", "id": 0, "offset": 72, - "flags": 33554439, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 633907631 + "hash": 1803615170 }, - "m_nObjectID": { - "type": "unsigned int", + "m_lowestEquipLevelInclusive": { + "type": "int", "id": 1, - "offset": 80, + "offset": 76, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 748496927 + "hash": 1282442502 }, - "m_location": { - "type": "class Vector3D", + "m_highestEquipLevelInclusive": { + "type": "int", "id": 2, - "offset": 84, + "offset": 80, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2239683611 + "hash": 1771734836 + } + } + }, + "376466677": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 376466677, + "properties": { + "m_FXFile": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2810683385 }, - "m_orientation": { - "type": "class Vector3D", - "id": 3, - "offset": 96, + "m_stackingCategory": { + "type": "std::string", + "id": 1, + "offset": 104, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2344058766 + "hash": 2363740365 }, - "m_fScale": { + "m_repeatTime": { "type": "float", - "id": 4, - "offset": 108, + "id": 2, + "offset": 136, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 503137701 - }, - "m_zoneTag": { + "hash": 453389511 + } + } + }, + "1664769339": { + "name": "class HUDWindow", + "bases": [ + "Window", + "PropertyClass" + ], + "hash": 1664769339, + "properties": { + "m_sName": { "type": "std::string", - "id": 5, + "id": 0, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306437263 + }, + "m_Children": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621225959 + }, + "m_Style": { + "type": "unsigned int", + "id": 2, "offset": 152, - "flags": 7, + "flags": 1048583, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3405382643 + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "SCALE_CHILDREN": 2, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "FOCUS_LOCKED": 64, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152 + } }, - "m_startState": { - "type": "std::string", - "id": 6, - "offset": 184, - "flags": 7, + "m_Flags": { + "type": "unsigned int", + "id": 3, + "offset": 156, + "flags": 1048583, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2166880458 + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } }, - "m_overrideName": { - "type": "std::string", - "id": 7, - "offset": 120, - "flags": 8388615, + "m_Window": { + "type": "class Rect", + "id": 4, + "offset": 160, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1990707228 + "hash": 3105139380 }, - "m_globalDynamic": { - "type": "bool", - "id": 8, - "offset": 116, - "flags": 7, + "m_fTargetAlpha": { + "type": "float", + "id": 5, + "offset": 212, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1951691017 + "hash": 1809129834 }, - "m_bUndetectable": { - "type": "bool", - "id": 9, + "m_fDisabledAlpha": { + "type": "float", + "id": 6, "offset": 216, - "flags": 7, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1907454341 + "hash": 1389987675 }, - "m_spawnRequirements": { - "type": "class SharedPointer", - "id": 10, - "offset": 224, - "flags": 7, + "m_fAlpha": { + "type": "float", + "id": 7, + "offset": 208, + "flags": 65671, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2309120870 + "pointer": false, + "hash": 482130755 }, - "m_loadingType": { - "type": "enum CoreObjectInfo::LoadingType", - "id": 11, - "offset": 112, - "flags": 2097159, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 3522422550, - "enum_options": { - "STATIC_CLIENT_SERVER": 0, - "STATIC_CLIENT": 1, - "STATIC_SERVER": 2, - "DYNAMIC_SERVER": 3 - } + "pointer": true, + "hash": 3623628394 }, - "m_radius": { - "type": "float", - "id": 12, - "offset": 256, - "flags": 7, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 989410271 + "hash": 2102211316 }, - "m_exclusive": { - "type": "bool", - "id": 13, - "offset": 260, - "flags": 7, + "m_sScript": { + "type": "std::string", + "id": 10, + "offset": 352, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 824383403 + "hash": 1846695875 }, - "m_startActive": { - "type": "bool", - "id": 14, - "offset": 261, - "flags": 7, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2031339229 + "hash": 3389835433 }, - "m_category": { - "type": "enum AudioCategory", - "id": 15, - "offset": 264, - "flags": 2097159, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2951251982, - "enum_options": { - "AudioCategory_Irrelevent": 0, - "AudioCategory_Accoustic": 1, - "AudioCategory_Noise": 2, - "AudioCategory_Music": 3 - } + "hash": 2547159940 }, - "m_override": { - "type": "int", - "id": 16, - "offset": 268, - "flags": 1048583, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 136872410, - "enum_options": { - "OVR_RADIUS": 1, - "OVR_CATEGORY": 2, - "OVR_EXCLUSIVE": 4, - "OVR_SIGNATURE": 64, - "OVR_VOLUME": 8, - "OVR_LOOPCOUNT": 16, - "OVR_ACTIVE": 32, - "OVR_PLAYPROG": 128, - "OVR_PRIORITY": 256, - "OVR_PROGTIME": 512, - "OVR_FILTERSET": 1024 - } + "hash": 1513510520 }, - "m_enableReqs": { - "type": "class SharedPointer", - "id": 17, - "offset": 272, - "flags": 263, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3158020443 + "pointer": false, + "hash": 3091503757 } } }, - "420235402": { - "name": "class BracketTeam", + "376260861": { + "name": "class SharedPointer", "bases": [ + "BehaviorTemplate", "PropertyClass" ], - "hash": 420235402, + "hash": 376260861, "properties": { - "m_matchTeamGID": { - "type": "gid", + "m_behaviorName": { + "type": "std::string", "id": 0, - "offset": 88, - "flags": 31, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 725139968 + "hash": 3130754092 }, - "m_matchTeam": { - "type": "class SharedPointer", + "m_groundOffset": { + "type": "float", "id": 1, - "offset": 72, - "flags": 31, + "offset": 120, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1737359170 + "pointer": false, + "hash": 684524077 }, - "m_points": { - "type": "unsigned int", + "m_yaw": { + "type": "float", "id": 2, - "offset": 100, - "flags": 31, + "offset": 124, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1049128778 + "hash": 357256328 }, - "m_matchResults": { - "type": "class SharedPointer", + "m_showNametag": { + "type": "bool", "id": 3, - "offset": 112, - "flags": 31, - "container": "List", - "dynamic": true, + "offset": 128, + "flags": 7, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 615114630 + "pointer": false, + "hash": 584664753 }, - "m_teamID": { - "type": "unsigned int", + "m_scale": { + "type": "float", "id": 4, - "offset": 128, - "flags": 31, + "offset": 132, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1193521089 + "hash": 899693439 }, - "m_ranking": { - "type": "unsigned int", + "m_alpha": { + "type": "float", "id": 5, - "offset": 132, - "flags": 31, + "offset": 136, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1977103383 + "hash": 878686493 }, - "m_pendingResult": { - "type": "class SharedPointer", + "m_cycleSec": { + "type": "float", "id": 6, - "offset": 176, - "flags": 31, + "offset": 140, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 599580139 + "pointer": false, + "hash": 1547908898 }, - "m_name": { - "type": "std::string", + "m_animDelaySec": { + "type": "float", "id": 7, "offset": 144, - "flags": 31, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1717359772 + "hash": 2131058854 }, - "m_pointsAsOfTheLastCompletedRound": { - "type": "unsigned int", + "m_animChance": { + "type": "float", "id": 8, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2267670253 - } - } - }, - "1580058821": { - "name": "class NodeDescriptor*", - "bases": [ - "PropertyClass" - ], - "hash": 1580058821, - "properties": {} - }, - "1992841659": { - "name": "class WizBankingOption*", - "bases": [ - "ServiceOptionBase", - "PropertyClass" - ], - "hash": 1992841659, - "properties": { - "m_serviceName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2206028813 - }, - "m_iconKey": { - "type": "std::string", - "id": 1, - "offset": 168, - "flags": 31, + "offset": 148, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2457138637 + "hash": 434823806 }, - "m_displayKey": { + "m_animList": { "type": "std::string", - "id": 2, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3023276954 - }, - "m_serviceIndex": { - "type": "unsigned int", - "id": 3, - "offset": 204, - "flags": 31, - "container": "Static", - "dynamic": false, + "id": 9, + "offset": 152, + "flags": 7, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 2103126710 + "hash": 2531745852 }, - "m_forceInteract": { - "type": "bool", - "id": 4, - "offset": 200, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1705789564 - } - } - }, - "1580058725": { - "name": "class NodeDescriptor", - "bases": [ - "PropertyClass" - ], - "hash": 1580058725, - "properties": {} - }, - "1992683330": { - "name": "class SharedPointer", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1992683330, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, + "m_settings": { + "type": "class SharedPointer", + "id": 10, + "offset": 168, + "flags": 7, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 223437287 + "pointer": true, + "hash": 2944992476 } } }, - "813783551": { - "name": "class SoundInfo*", + "1216095386": { + "name": "class ConicalSoundEmitterInfo*", "bases": [ + "PositionalSoundEmitterInfo", + "SoundEmitterInfo", + "SoundInfo", "ClientObjectInfo", "CoreObjectInfo", "PropertyClass" ], - "hash": 813783551, + "hash": 1216095386, "properties": { "m_templateID.m_full": { "type": "unsigned __int64", @@ -542862,498 +356478,279 @@ "singleton": false, "pointer": true, "hash": 3158020443 - } - } - }, - "420377204": { - "name": "class BracketInfo", - "bases": [ - "PropertyClass" - ], - "hash": 420377204, - "properties": { - "m_bracketGID": { - "type": "gid", - "id": 0, - "offset": 72, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1674798632 }, - "m_creatorActorGID": { - "type": "gid", - "id": 1, - "offset": 80, - "flags": 63, + "m_volume": { + "type": "float", + "id": 18, + "offset": 288, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1339404213 + "hash": 1162855023 }, - "m_creatorBracketGID": { - "type": "gid", - "id": 2, - "offset": 88, - "flags": 31, + "m_loopCount": { + "type": "int", + "id": 19, + "offset": 292, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1005482776 + "hash": 865634717 }, - "m_teams": { - "type": "class SharedPointer", - "id": 3, - "offset": 184, - "flags": 31, - "container": "List", + "m_trackFilenameList": { + "type": "std::string", + "id": 20, + "offset": 312, + "flags": 131079, + "container": "Vector", "dynamic": true, "singleton": false, - "pointer": true, - "hash": 981867512 - }, - "m_teamSize": { - "type": "unsigned int", - "id": 4, - "offset": 224, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, "pointer": false, - "hash": 2343388751 + "hash": 2531081709 }, - "m_actorList": { - "type": "class SharedPointer", - "id": 5, - "offset": 168, - "flags": 6, - "container": "List", + "m_playList": { + "type": "class PlayListEntry*", + "id": 21, + "offset": 336, + "flags": 7, + "container": "Vector", "dynamic": true, "singleton": false, "pointer": true, - "hash": 885135115 - }, - "m_currentRound": { - "type": "unsigned int", - "id": 6, - "offset": 144, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 861487416 - }, - "m_bracketState": { - "type": "unsigned int", - "id": 7, - "offset": 236, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 790945386 - }, - "m_matchNameID": { - "type": "unsigned int", - "id": 8, - "offset": 240, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1751361288 - }, - "m_roundStartsInSeconds": { - "type": "unsigned int", - "id": 9, - "offset": 232, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 346233980 - }, - "m_roundTimeSeconds": { - "type": "unsigned int", - "id": 10, - "offset": 228, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1964849971 - }, - "m_scheduleID": { - "type": "gid", - "id": 11, - "offset": 248, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1439120946 + "hash": 3907873161 }, - "m_visibleTimeSeconds": { - "type": "unsigned int", - "id": 12, - "offset": 272, - "flags": 63, + "m_priority": { + "type": "int", + "id": 22, + "offset": 296, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1245818841 + "hash": 1235205852 }, - "m_startTimeSec": { - "type": "int", - "id": 13, - "offset": 268, - "flags": 63, + "m_progression": { + "type": "enum PlayList::Progression", + "id": 23, + "offset": 300, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1519392434 + "hash": 3279400238, + "enum_options": { + "Sequence": 0, + "Random": 1, + "SequenceOnceOnly": 2, + "RandomNoRepeat": 3 + } }, - "m_registrationOpenTimeSeconds": { - "type": "unsigned int", - "id": 14, - "offset": 276, - "flags": 63, + "m_progressMin": { + "type": "float", + "id": 24, + "offset": 304, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2064854776 + "hash": 1497550192 }, - "m_tournamentPreparingTimeSeconds": { - "type": "unsigned int", - "id": 15, - "offset": 280, - "flags": 63, + "m_progressMax": { + "type": "float", + "id": 25, + "offset": 308, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1121720544 + "hash": 1497549938 }, - "m_roundBufferTimeSeconds": { + "m_audioFilterSet": { "type": "unsigned int", - "id": 16, - "offset": 284, - "flags": 63, + "id": 26, + "offset": 360, + "flags": 33554439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 671173677 + "hash": 831339825 }, - "m_numberOfRounds": { - "type": "int", - "id": 17, - "offset": 148, - "flags": 63, + "m_clientTag": { + "type": "std::string", + "id": 27, + "offset": 368, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2081430579 + "hash": 3409856790 }, - "m_overrideTourneyName": { - "type": "std::string", - "id": 18, - "offset": 296, - "flags": 63, + "m_innerRadius": { + "type": "float", + "id": 28, + "offset": 400, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2611946162 + "hash": 686816091 }, - "m_firstTourneyNameSTKey": { + "m_nifObjName": { "type": "std::string", - "id": 19, - "offset": 328, - "flags": 63, + "id": 29, + "offset": 408, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2731391050 + "hash": 1513857812 }, - "m_secondTourneyNameSTKey": { + "m_animNIFObjName": { "type": "std::string", - "id": 20, - "offset": 360, - "flags": 63, + "id": 30, + "offset": 440, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1747016318 + "hash": 2245834777 }, - "m_subBracketIdx": { - "type": "int", - "id": 21, - "offset": 392, - "flags": 31, + "m_inverted": { + "type": "bool", + "id": 31, + "offset": 472, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1688562149 + "hash": 1034821044 }, - "m_scoreMultiplier": { + "m_initialDelay": { "type": "float", - "id": 22, - "offset": 396, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 545011290 - }, - "m_preferredNumberOfTeams": { - "type": "int", - "id": 23, - "offset": 264, - "flags": 63, + "id": 32, + "offset": 476, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 475550641 + "hash": 629858288 }, - "m_minTeams": { - "type": "int", - "id": 24, - "offset": 256, - "flags": 63, + "m_fInsideAngle": { + "type": "float", + "id": 33, + "offset": 480, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1506283288 + "hash": 1114383840 }, - "m_maxTeams": { - "type": "int", - "id": 25, - "offset": 260, - "flags": 63, + "m_fOutsideAngle": { + "type": "float", + "id": 34, + "offset": 484, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 155828058 + "hash": 1627152289 }, - "m_specialEvent": { - "type": "bool", - "id": 26, - "offset": 416, - "flags": 63, + "m_fOutsideVolume": { + "type": "float", + "id": 35, + "offset": 488, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1211693398 - }, - "m_pvpDuelModifiers": { - "type": "std::string", - "id": 27, - "offset": 424, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1796488605 - }, - "m_pvpDuelModifierTemplates": { - "type": "class SharedPointer", - "id": 28, - "offset": 472, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2010454400 + "hash": 90369618 }, - "m_pvpDuelModifiersBlob": { - "type": "std::string", - "id": 29, - "offset": 440, - "flags": 551, + "m_fRangeScale": { + "type": "float", + "id": 36, + "offset": 492, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2862516796 + "hash": 1749294034 }, - "m_premierPrizesStoreGIDsCSV": { - "type": "std::string", - "id": 30, - "offset": 488, - "flags": 63, + "m_fAttenuationFactor": { + "type": "float", + "id": 37, + "offset": 496, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2521625388 + "hash": 273292776 }, - "m_tournamentStyle": { - "type": "enum BracketInfo::EnumTournamentStyle", - "id": 31, - "offset": 288, + "m_eAttenuationType": { + "type": "enum PositionInfoAttenuationType", + "id": 38, + "offset": 500, "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1530265666, + "hash": 2427193304, "enum_options": { - "SINGLE_ELIM": 1, - "SWISS": 0 + "Standard": 0, + "Unit Range Power": 1 } - }, - "m_bracketRewardsList": { - "type": "class SharedPointer", - "id": 32, - "offset": 400, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 3842983067 - }, - "m_costPvPTourneyCurrency": { - "type": "int", - "id": 33, - "offset": 216, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1611997610 - }, - "m_subCostPvPTourneyCurrency": { - "type": "int", - "id": 34, - "offset": 220, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1871398932 - }, - "m_joinQueueRequirements": { - "type": "class SharedPointer", - "id": 35, - "offset": 96, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2746080983 - }, - "m_joinQueueRequirementsBlob": { - "type": "std::string", - "id": 36, - "offset": 112, - "flags": 551, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2615447859 - } - } - }, - "1992226516": { - "name": "class ClientMountRiderBehavior", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1992226516, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 } } }, - "420376046": { - "name": "class SharedPointer", + "1344283767": { + "name": "class FishingBehaviorTemplate*", "bases": [ + "BehaviorTemplate", "PropertyClass" ], - "hash": 420376046, + "hash": 1344283767, "properties": { - "m_clientTags": { + "m_behaviorName": { "type": "std::string", "id": 0, "offset": 72, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2319030025 - } - } - }, - "1581265159": { - "name": "class HousingMusicBehavior", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1581265159, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 + "hash": 3130754092 } } }, - "813925290": { - "name": "class MiniMapWindow", + "814621938": { + "name": "class SpellFusionListControl*", "bases": [ + "SpellListControl", "Window", "PropertyClass" ], - "hash": 813925290, + "hash": 814621938, "properties": { "m_sName": { "type": "std::string", @@ -543389,11 +356786,9 @@ "hash": 983582334, "enum_options": { "HAS_BACK": 1, - "SCALE_CHILDREN": 2, "CAN_MOVE": 4, "CAN_SIZE": 8, "CAN_SCROLL": 16, - "FOCUS_LOCKED": 64, "CAN_FOCUS": 128, "CAN_DOCK": 32, "DO_NOT_CAPTURE_MOUSE": 256, @@ -543405,7 +356800,8 @@ "USE_ALPHA_BOUNDS": 8192, "AUTO_GROW": 16384, "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152 + "AUTO_RESIZE": 49152, + "SLC_NUMBERS": 16777216 } }, "m_Flags": { @@ -543565,160 +356961,140 @@ "singleton": false, "pointer": false, "hash": 3091503757 - } - } - }, - "1992896425": { - "name": "class GuildAchievementList*", - "bases": [ - "PropertyClass" - ], - "hash": 1992896425, - "properties": { - "m_guildAchievementList": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2487751645 - } - } - }, - "1581384559": { - "name": "class CinematicStageTemplate", - "bases": [ - "PropertyClass" - ], - "hash": 1581384559, - "properties": { - "m_name": { - "type": "std::string", - "id": 0, - "offset": 72, + }, + "m_cardSize": { + "type": "class Size", + "id": 16, + "offset": 716, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1717359772 + "hash": 1135567057 }, - "m_duration": { - "type": "float", - "id": 1, - "offset": 104, + "m_spacing": { + "type": "class Point", + "id": 17, + "offset": 724, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 920323453 + "hash": 3187881255 }, - "m_actions": { - "type": "class SharedPointer", - "id": 2, - "offset": 112, + "m_holes": { + "type": "class Rect", + "id": 18, + "offset": 696, "flags": 7, "container": "List", "dynamic": true, "singleton": false, - "pointer": true, - "hash": 1380578687 + "pointer": false, + "hash": 1902151287 }, - "m_stageRelationships": { - "type": "class SharedPointer", - "id": 3, - "offset": 128, + "m_ingredientSize": { + "type": "class Size", + "id": 19, + "offset": 760, "flags": 7, - "container": "List", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 499983354 + "pointer": false, + "hash": 1856724800 + }, + "m_ingredientSpacing": { + "type": "class Point", + "id": 20, + "offset": 768, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2794695056 } } }, - "423154689": { - "name": "class SG_GameAction_PlayEffect*", + "2117118906": { + "name": "class SharedPointer", + "bases": [], + "hash": 2117118906, + "properties": {} + }, + "1665274872": { + "name": "class SharedPointer", "bases": [ - "SG_GameAction", "PropertyClass" ], - "hash": 423154689, + "hash": 1665274872, "properties": { - "m_target": { - "type": "enum SG_GameAction::SG_Target", + "m_delta": { + "type": "int", "id": 0, "offset": 72, - "flags": 2097159, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1166870973, - "enum_options": { - "Target_Ball": 0, - "Target_Self": 1, - "Target_Connections": 2, - "__DEFAULT": "Target_Ball" - } + "hash": 791787588 }, - "m_graphicArguments": { - "type": "std::string", + "m_rounds": { + "type": "int", "id": 1, - "offset": 80, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1656480079 - }, - "m_fMinimumTime": { - "type": "float", - "id": 2, - "offset": 144, - "flags": 7, + "offset": 76, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1516804616 - }, - "m_bDisplaysScore": { - "type": "bool", - "id": 3, - "offset": 148, - "flags": 7, + "hash": 916427829 + } + } + }, + "2110543894": { + "name": "class QuestEffectDisplayInfo", + "bases": [ + "PropertyClass" + ], + "hash": 2110543894, + "properties": { + "m_companionID": { + "type": "int", + "id": 0, + "offset": 72, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 722455866 + "hash": 1594812875 }, - "m_bPlaysPointsSounds": { - "type": "bool", - "id": 4, - "offset": 149, - "flags": 7, + "m_serializedEffects": { + "type": "std::string", + "id": 1, + "offset": 96, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 717919607 + "hash": 3446153863 } } }, - "1992858572": { - "name": "class CrownsConfirmWindow*", + "1664883413": { + "name": "class ControlSlider*", "bases": [ + "ControlBar", "Window", "PropertyClass" ], - "hash": 1992858572, + "hash": 1664883413, "properties": { "m_sName": { "type": "std::string", @@ -543930,191 +357306,292 @@ "singleton": false, "pointer": false, "hash": 3091503757 - } - } - }, - "820388105": { - "name": "class MagicMirrorShopOption", - "bases": [ - "ServiceOptionBase", - "PropertyClass" - ], - "hash": 820388105, - "properties": { - "m_serviceName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, + }, + "m_fPosition": { + "type": "float", + "id": 16, + "offset": 584, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2206028813 + "hash": 1808212114 }, - "m_iconKey": { - "type": "std::string", - "id": 1, - "offset": 168, - "flags": 31, + "m_BaseColor": { + "type": "class Color", + "id": 17, + "offset": 588, + "flags": 262279, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2457138637 + "hash": 2172251096 }, - "m_displayKey": { - "type": "std::string", - "id": 2, - "offset": 104, - "flags": 31, + "m_BarColor": { + "type": "class Color", + "id": 18, + "offset": 592, + "flags": 262279, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3023276954 + "hash": 2259916498 }, - "m_serviceIndex": { - "type": "unsigned int", - "id": 3, - "offset": 204, - "flags": 31, + "m_bDisplayVertical": { + "type": "bool", + "id": 19, + "offset": 596, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2103126710 + "hash": 1359621189 }, - "m_forceInteract": { - "type": "bool", - "id": 4, - "offset": 200, - "flags": 31, + "m_pBarMaterial": { + "type": "class SharedPointer", + "id": 20, + "offset": 600, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2481929515 + }, + "m_pTopLeftMaterial": { + "type": "class SharedPointer", + "id": 21, + "offset": 616, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3248096916 + }, + "m_pCenterMaterial": { + "type": "class SharedPointer", + "id": 22, + "offset": 632, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1519560055 + }, + "m_pBottomRightMaterial": { + "type": "class SharedPointer", + "id": 23, + "offset": 648, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2932444745 + }, + "m_fMin": { + "type": "float", + "id": 24, + "offset": 700, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1705789564 + "hash": 309551905 + }, + "m_fMax": { + "type": "float", + "id": 25, + "offset": 704, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 309551651 + }, + "m_nTabWidth": { + "type": "int", + "id": 26, + "offset": 708, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1554957503 } } }, - "421562853": { - "name": "class GameEffectTimerDisplayBehaviorTemplate", + "1218092279": { + "name": "class ObstacleCoursePusherBehaviorClient", "bases": [ - "BehaviorTemplate", + "ObstacleCoursePusherBehavior", + "ObstacleCourseObstaclePathBase", + "ObstacleCourseObstacleBehavior", + "BehaviorInstance", "PropertyClass" ], - "hash": 421562853, + "hash": 1218092279, "properties": { - "m_behaviorName": { - "type": "std::string", + "m_behaviorTemplateNameID": { + "type": "unsigned int", "id": 0, - "offset": 72, - "flags": 7, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3130754092 - }, - "m_effectName": { - "type": "std::string", - "id": 1, - "offset": 120, - "flags": 7, + "hash": 223437287 + } + } + }, + "2107708414": { + "name": "class EventCurrency2LootInfo*", + "bases": [ + "LootInfo", + "LootInfoBase", + "PropertyClass" + ], + "hash": 2107708414, + "properties": { + "m_lootType": { + "type": "enum LootInfo::LOOT_TYPE", + "id": 0, + "offset": 72, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2029161513 + "hash": 1591891442, + "enum_options": { + "LOOT_TYPE_NONE": 0, + "LOOT_TYPE_GOLD": 1, + "LOOT_TYPE_MANA": 2, + "LOOT_TYPE_ITEM": 3, + "LOOT_TYPE_TREASURE_CARD": 4, + "LOOT_TYPE_MAGIC_XP": 5, + "LOOT_TYPE_ADD_SPELL": 6, + "LOOT_TYPE_MAX_HEALTH": 7, + "LOOT_TYPE_MAX_GOLD": 8, + "LOOT_TYPE_MAX_MANA": 9, + "LOOT_TYPE_MAX_POTION": 10, + "LOOT_TYPE_TRAINING_POINTS": 11, + "LOOT_TYPE_RECIPE": 12, + "LOOT_TYPE_CRAFTING_SLOT": 13, + "LOOT_TYPE_REAGENT": 14, + "LOOT_TYPE_PETSNACK": 15, + "LOOT_TYPE_GARDENING_XP": 16, + "LOOT_TYPE_PET_XP": 17, + "LOOT_TYPE_TREASURE_TABLE": 18, + "LOOT_TYPE_ARENA_POINTS": 19, + "LOOT_TYPE_ARENA_BONUS_POINTS": 20, + "LOOT_TYPE_GROUP": 21, + "LOOT_TYPE_FISHING_XP": 22, + "LOOT_TYPE_EVENT_CURRENCY_1": 24, + "LOOT_TYPE_EVENT_CURRENCY_2": 25, + "LOOT_TYPE_PVP_CURRENCY": 26, + "LOOT_TYPE_PVP_CURRENCY_BONUS": 27, + "LOOT_TYPE_PVP_TOURNEY_CURRENCY": 28, + "LOOT_TYPE_PVP_TOURNEY_CURRENCY_BONUS": 29, + "LOOT_TYPE_FURNITURE_ESSENCE": 30 + } }, - "m_textKey": { - "type": "std::string", - "id": 2, - "offset": 152, - "flags": 7, + "m_eventCurrency2Amount": { + "type": "int", + "id": 1, + "offset": 80, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1720060457 - }, - "m_height": { - "type": "float", - "id": 3, - "offset": 184, - "flags": 7, + "hash": 89898381 + } + } + }, + "379046504": { + "name": "class HousingShopOption", + "bases": [ + "ServiceOptionBase", + "PropertyClass" + ], + "hash": 379046504, + "properties": { + "m_serviceName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 602977104 + "hash": 2206028813 }, - "m_zOffset": { - "type": "float", - "id": 4, - "offset": 188, - "flags": 7, + "m_iconKey": { + "type": "std::string", + "id": 1, + "offset": 168, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 736134072 + "hash": 2457138637 }, - "m_red": { - "type": "unsigned char", - "id": 5, - "offset": 192, - "flags": 7, + "m_displayKey": { + "type": "std::string", + "id": 2, + "offset": 104, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 904647115 + "hash": 3023276954 }, - "m_green": { - "type": "unsigned char", - "id": 6, - "offset": 193, - "flags": 7, + "m_serviceIndex": { + "type": "unsigned int", + "id": 3, + "offset": 204, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1433403873 + "hash": 2103126710 }, - "m_blue": { - "type": "unsigned char", - "id": 7, - "offset": 194, - "flags": 7, + "m_forceInteract": { + "type": "bool", + "id": 4, + "offset": 200, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 856840600 - }, - "m_triggers": { - "type": "class SharedPointer", - "id": 8, - "offset": 200, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 3290329276 + "hash": 1705789564 } } }, - "814646514": { - "name": "class SpellFusionListControl", + "819165330": { + "name": "class DerbyEffectSprite", "bases": [ - "SpellListControl", + "ControlSprite", "Window", "PropertyClass" ], - "hash": 814646514, + "hash": 819165330, "properties": { "m_sName": { "type": "std::string", @@ -544150,9 +357627,11 @@ "hash": 983582334, "enum_options": { "HAS_BACK": 1, + "SCALE_CHILDREN": 2, "CAN_MOVE": 4, "CAN_SIZE": 8, "CAN_SCROLL": 16, + "FOCUS_LOCKED": 64, "CAN_FOCUS": 128, "CAN_DOCK": 32, "DO_NOT_CAPTURE_MOUSE": 256, @@ -544164,8 +357643,7 @@ "USE_ALPHA_BOUNDS": 8192, "AUTO_GROW": 16384, "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152, - "SLC_NUMBERS": 16777216 + "AUTO_RESIZE": 49152 } }, "m_Flags": { @@ -544191,7 +357669,10 @@ "PARENT_HEIGHT": 524288, "HCENTER": 32768, "VCENTER": 65536, - "DISABLED": 2147483648 + "DISABLED": 2147483648, + "ONE_SHOT": 8388608, + "FLIPPED_HORIZONTAL": 16777216, + "FLIPPED_VERTICAL": 33554432 } }, "m_Window": { @@ -544326,120 +357807,108 @@ "pointer": false, "hash": 3091503757 }, - "m_cardSize": { - "type": "class Size", + "m_pMaterial": { + "type": "class SharedPointer", "id": 16, - "offset": 716, - "flags": 7, + "offset": 592, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1135567057 + "pointer": true, + "hash": 3479277078 }, - "m_spacing": { - "type": "class Point", + "m_fRotation": { + "type": "float", "id": 17, - "offset": 724, - "flags": 7, + "offset": 608, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3187881255 + "hash": 1175400173 }, - "m_holes": { - "type": "class Rect", + "m_Color": { + "type": "class Color", "id": 18, - "offset": 696, - "flags": 7, - "container": "List", - "dynamic": true, + "offset": 584, + "flags": 262279, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 1902151287 + "hash": 1753714077 }, - "m_ingredientSize": { - "type": "class Size", + "m_textColor": { + "type": "class Color", "id": 19, - "offset": 760, - "flags": 7, + "offset": 612, + "flags": 262279, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1856724800 + "hash": 2528109250 }, - "m_ingredientSpacing": { - "type": "class Point", + "m_textComponent": { + "type": "class TextComponent", "id": 20, - "offset": 768, - "flags": 7, + "offset": 616, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2794695056 - } - } - }, - "420999562": { - "name": "class HardwareStyle*", - "bases": [ - "PropertyClass" - ], - "hash": 420999562, - "properties": { - "m_cursorFile": { + "hash": 3491704390 + }, + "m_effectID": { "type": "std::string", - "id": 0, - "offset": 72, - "flags": 135, + "id": 21, + "offset": 736, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2831338361 + "hash": 3633927605 } } }, - "1992896385": { - "name": "class GuildAchievementList", + "1218090743": { + "name": "class ObstacleCoursePusherBehaviorClient*", "bases": [ + "ObstacleCoursePusherBehavior", + "ObstacleCourseObstaclePathBase", + "ObstacleCourseObstacleBehavior", + "BehaviorInstance", "PropertyClass" ], - "hash": 1992896385, + "hash": 1218090743, "properties": { - "m_guildAchievementList": { - "type": "class SharedPointer", + "m_behaviorTemplateNameID": { + "type": "unsigned int", "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2487751645 + "pointer": false, + "hash": 223437287 } } }, - "814466824": { - "name": "class std::list >", - "bases": [], - "hash": 814466824, - "properties": {} - }, - "1584390625": { - "name": "class ClientCameraReleaseCinematicAction*", + "2104732208": { + "name": "class ItemFinderBehaviorTemplate*", "bases": [ - "CameraReleaseCinematicAction", - "CinematicAction", + "BehaviorTemplate", "PropertyClass" ], - "hash": 1584390625, + "hash": 2104732208, "properties": { - "m_timeOffset": { - "type": "float", + "m_behaviorName": { + "type": "std::string", "id": 0, "offset": 72, "flags": 7, @@ -544447,197 +357916,266 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 - }, - "m_releaseInterpolationDuration": { - "type": "float", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1807754278, - "enum_options": { - "__DEFAULT": "1.0" - } + "hash": 3130754092 } } }, - "420865728": { - "name": "class SharedPointer", + "377905692": { + "name": "class SharedPointer", "bases": [ - "CoreTemplate", + "ServiceOptionBase", "PropertyClass" ], - "hash": 420865728, + "hash": 377905692, "properties": { - "m_behaviors": { - "type": "class BehaviorTemplate*", + "m_serviceName": { + "type": "std::string", "id": 0, "offset": 72, - "flags": 7, - "container": "Vector", - "dynamic": true, + "flags": 31, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1197808594 + "pointer": false, + "hash": 2206028813 }, - "m_tournamentName": { + "m_iconKey": { "type": "std::string", "id": 1, - "offset": 112, - "flags": 7, + "offset": 168, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3329241865 + "hash": 2457138637 }, - "m_allowedMatches": { + "m_displayKey": { "type": "std::string", "id": 2, - "offset": 152, - "flags": 7, - "container": "List", - "dynamic": true, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 2083366952 + "hash": 3023276954 }, - "m_updateLadder": { - "type": "bool", + "m_serviceIndex": { + "type": "unsigned int", "id": 3, - "offset": 209, - "flags": 7, + "offset": 204, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1327828834 + "hash": 2103126710 }, - "m_useEloBehavior": { + "m_forceInteract": { "type": "bool", "id": 4, - "offset": 210, - "flags": 7, + "offset": 200, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2113224016 - }, - "m_ladderTable": { - "type": "std::string", - "id": 5, - "offset": 216, - "flags": 7, + "hash": 1705789564 + } + } + }, + "817027151": { + "name": "class TutorialLogBehaviorBase", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 817027151, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3225825807 - }, - "m_matchActor": { - "type": "class SharedPointer", - "id": 6, - "offset": 96, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1730081852 + "hash": 223437287 }, - "m_bPremium": { - "type": "bool", - "id": 7, - "offset": 208, - "flags": 7, + "m_tutorialTipData": { + "type": "std::string", + "id": 1, + "offset": 128, + "flags": 551, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 959881172 - }, - "m_defaultLadder": { - "type": "class SharedPointer", - "id": 8, - "offset": 248, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2425504995 - }, - "m_isBracketTournament": { - "type": "bool", - "id": 9, - "offset": 265, - "flags": 7, + "hash": 3119782422 + } + } + }, + "2103766425": { + "name": "class MaxHealthLootInfo*", + "bases": [ + "LootInfo", + "LootInfoBase", + "PropertyClass" + ], + "hash": 2103766425, + "properties": { + "m_lootType": { + "type": "enum LootInfo::LOOT_TYPE", + "id": 0, + "offset": 72, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1062809176 + "hash": 1591891442, + "enum_options": { + "LOOT_TYPE_NONE": 0, + "LOOT_TYPE_GOLD": 1, + "LOOT_TYPE_MANA": 2, + "LOOT_TYPE_ITEM": 3, + "LOOT_TYPE_TREASURE_CARD": 4, + "LOOT_TYPE_MAGIC_XP": 5, + "LOOT_TYPE_ADD_SPELL": 6, + "LOOT_TYPE_MAX_HEALTH": 7, + "LOOT_TYPE_MAX_GOLD": 8, + "LOOT_TYPE_MAX_MANA": 9, + "LOOT_TYPE_MAX_POTION": 10, + "LOOT_TYPE_TRAINING_POINTS": 11, + "LOOT_TYPE_RECIPE": 12, + "LOOT_TYPE_CRAFTING_SLOT": 13, + "LOOT_TYPE_REAGENT": 14, + "LOOT_TYPE_PETSNACK": 15, + "LOOT_TYPE_GARDENING_XP": 16, + "LOOT_TYPE_PET_XP": 17, + "LOOT_TYPE_TREASURE_TABLE": 18, + "LOOT_TYPE_ARENA_POINTS": 19, + "LOOT_TYPE_ARENA_BONUS_POINTS": 20, + "LOOT_TYPE_GROUP": 21, + "LOOT_TYPE_FISHING_XP": 22, + "LOOT_TYPE_EVENT_CURRENCY_1": 24, + "LOOT_TYPE_EVENT_CURRENCY_2": 25, + "LOOT_TYPE_PVP_CURRENCY": 26, + "LOOT_TYPE_PVP_CURRENCY_BONUS": 27, + "LOOT_TYPE_PVP_TOURNEY_CURRENCY": 28, + "LOOT_TYPE_PVP_TOURNEY_CURRENCY_BONUS": 29, + "LOOT_TYPE_FURNITURE_ESSENCE": 30 + } }, - "m_persisted": { - "type": "bool", - "id": 10, - "offset": 266, - "flags": 7, + "m_healthToAdd": { + "type": "int", + "id": 1, + "offset": 80, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1002297414 - }, - "m_penalizeMatchDeclines": { - "type": "bool", - "id": 11, - "offset": 267, - "flags": 7, + "hash": 1370421596 + } + } + }, + "377422855": { + "name": "class TrainingPointLootInfo*", + "bases": [ + "LootInfo", + "LootInfoBase", + "PropertyClass" + ], + "hash": 377422855, + "properties": { + "m_lootType": { + "type": "enum LootInfo::LOOT_TYPE", + "id": 0, + "offset": 72, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 623338303 + "hash": 1591891442, + "enum_options": { + "LOOT_TYPE_NONE": 0, + "LOOT_TYPE_GOLD": 1, + "LOOT_TYPE_MANA": 2, + "LOOT_TYPE_ITEM": 3, + "LOOT_TYPE_TREASURE_CARD": 4, + "LOOT_TYPE_MAGIC_XP": 5, + "LOOT_TYPE_ADD_SPELL": 6, + "LOOT_TYPE_MAX_HEALTH": 7, + "LOOT_TYPE_MAX_GOLD": 8, + "LOOT_TYPE_MAX_MANA": 9, + "LOOT_TYPE_MAX_POTION": 10, + "LOOT_TYPE_TRAINING_POINTS": 11, + "LOOT_TYPE_RECIPE": 12, + "LOOT_TYPE_CRAFTING_SLOT": 13, + "LOOT_TYPE_REAGENT": 14, + "LOOT_TYPE_PETSNACK": 15, + "LOOT_TYPE_GARDENING_XP": 16, + "LOOT_TYPE_PET_XP": 17, + "LOOT_TYPE_TREASURE_TABLE": 18, + "LOOT_TYPE_ARENA_POINTS": 19, + "LOOT_TYPE_ARENA_BONUS_POINTS": 20, + "LOOT_TYPE_GROUP": 21, + "LOOT_TYPE_FISHING_XP": 22, + "LOOT_TYPE_EVENT_CURRENCY_1": 24, + "LOOT_TYPE_EVENT_CURRENCY_2": 25, + "LOOT_TYPE_PVP_CURRENCY": 26, + "LOOT_TYPE_PVP_CURRENCY_BONUS": 27, + "LOOT_TYPE_PVP_TOURNEY_CURRENCY": 28, + "LOOT_TYPE_PVP_TOURNEY_CURRENCY_BONUS": 29, + "LOOT_TYPE_FURNITURE_ESSENCE": 30 + } }, - "m_hidePlayerInfo": { - "type": "bool", - "id": 12, - "offset": 268, - "flags": 7, + "m_trainingPoints": { + "type": "int", + "id": 1, + "offset": 80, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 665001286 - }, - "m_pvpDuelModifiers": { - "type": "std::string", - "id": 13, - "offset": 272, - "flags": 7, + "hash": 1003892499 + } + } + }, + "815474551": { + "name": "class PetDerbyRacerStats", + "bases": [ + "PropertyClass" + ], + "hash": 815474551, + "properties": { + "m_initialStats": { + "type": "class PetStat", + "id": 0, + "offset": 72, + "flags": 31, "container": "List", "dynamic": true, "singleton": false, "pointer": false, - "hash": 1796488605 + "hash": 2249155308 } } }, - "813942613": { - "name": "class PetSnackCheckBox*", + "1665905929": { + "name": "class InventoryPageWindow::InventoryItem*", "bases": [ "ControlCheckBox", "ControlButton", "Window", "PropertyClass" ], - "hash": 813942613, + "hash": 1665905929, "properties": { "m_sName": { "type": "std::string", @@ -545148,92 +358686,147 @@ "singleton": false, "pointer": true, "hash": 1609188685 + }, + "m_pEquipNormalState": { + "type": "class SharedPointer", + "id": 43, + "offset": 976, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1322058516 + }, + "m_pEquipPressState": { + "type": "class SharedPointer", + "id": 44, + "offset": 992, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3019605144 + }, + "m_pEquipHighlightState": { + "type": "class SharedPointer", + "id": 45, + "offset": 1008, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2559056739 + }, + "m_pEquipCheckState": { + "type": "class SharedPointer", + "id": 46, + "offset": 1024, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2420681417 + }, + "m_pEquipCheckPressState": { + "type": "class SharedPointer", + "id": 47, + "offset": 1040, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2063281462 + }, + "m_pEquipCheckHighlightState": { + "type": "class SharedPointer", + "id": 48, + "offset": 1056, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2990990081 } } }, - "1583982124": { - "name": "class NaturalActCinematicStageTemplate", + "2103377604": { + "name": "class EnergyShopOption*", "bases": [ - "CinematicStageTemplate", + "ServiceOptionBase", "PropertyClass" ], - "hash": 1583982124, + "hash": 2103377604, "properties": { - "m_name": { + "m_serviceName": { "type": "std::string", "id": 0, "offset": 72, - "flags": 7, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1717359772 + "hash": 2206028813 }, - "m_duration": { - "type": "float", + "m_iconKey": { + "type": "std::string", "id": 1, - "offset": 104, - "flags": 7, + "offset": 168, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 920323453 + "hash": 2457138637 }, - "m_actions": { - "type": "class SharedPointer", + "m_displayKey": { + "type": "std::string", "id": 2, - "offset": 112, - "flags": 7, - "container": "List", - "dynamic": true, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1380578687 + "pointer": false, + "hash": 3023276954 }, - "m_stageRelationships": { - "type": "class SharedPointer", + "m_serviceIndex": { + "type": "unsigned int", "id": 3, - "offset": 128, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 499983354 - }, - "m_sound": { - "type": "std::string", - "id": 4, - "offset": 152, - "flags": 131079, + "offset": 204, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2307644996 + "hash": 2103126710 }, - "m_animation": { - "type": "std::string", - "id": 5, - "offset": 184, - "flags": 7, + "m_forceInteract": { + "type": "bool", + "id": 4, + "offset": 200, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3431428731 + "hash": 1705789564 } } }, - "813931909": { - "name": "class BracketMatchActorResult", + "815242629": { + "name": "class BracketMatchActorResult*", "bases": [ "MatchActorResult", "PropertyClass" ], - "hash": 813931909, + "hash": 815242629, "properties": { "m_pActor": { "type": "class SharedPointer", @@ -545325,245 +358918,206 @@ } } }, - "1582149200": { - "name": "class SharedPointer", + "1665727249": { + "name": "class SharedPointer", "bases": [ - "ResultSourceType", - "Result", + "ContainerEffectTemplate", + "GameEffectTemplate", "PropertyClass" ], - "hash": 1582149200, + "hash": 1665727249, "properties": { - "m_sourceType": { + "m_effectName": { "type": "std::string", "id": 0, - "offset": 80, + "offset": 72, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2305508654 + "hash": 2029161513 }, - "m_zoneLevelMax": { - "type": "unsigned int", + "m_effectCategory": { + "type": "std::string", "id": 1, - "offset": 76, - "flags": 263, + "offset": 104, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1028933895 + "hash": 1852673222 }, - "m_zoneLevelMin": { - "type": "unsigned int", + "m_sortOrder": { + "type": "int", "id": 2, - "offset": 72, - "flags": 263, + "offset": 148, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1028934149 + "hash": 1411218206 }, - "m_templateID": { - "type": "gid", + "m_duration": { + "type": "double", "id": 3, - "offset": 112, - "flags": 33554439, + "offset": 192, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1075328001 + "hash": 2727932435 }, - "m_quantity": { - "type": "int", + "m_stackingCategories": { + "type": "std::string", "id": 4, - "offset": 120, + "offset": 160, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 169215289 - } - } - }, - "1992945078": { - "name": "class CastleMagicBehavior", - "bases": [ - "CastleMagicBehaviorBase", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1992945078, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, + "hash": 1774497525 + }, + "m_isPersistent": { + "type": "bool", + "id": 5, + "offset": 153, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 + "hash": 923861920 }, - "m_castleMagicData": { - "type": "std::string", - "id": 1, - "offset": 128, - "flags": 575, + "m_bIsOnPet": { + "type": "bool", + "id": 6, + "offset": 154, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2874597138 - } - } - }, - "420999567": { - "name": "class HardwareStyle", - "bases": [ - "PropertyClass" - ], - "hash": 420999567, - "properties": { - "m_cursorFile": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 135, + "hash": 522593303 + }, + "m_isPublic": { + "type": "bool", + "id": 7, + "offset": 152, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2831338361 - } - } - }, - "814214856": { - "name": "class BattlegroundPlayerStatsManager*", - "bases": [ - "PropertyClass" - ], - "hash": 814214856, - "properties": { - "m_statsList": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2999855587 + "hash": 1728439822 }, - "m_poi": { - "type": "class SharedPointer", - "id": 1, - "offset": 88, + "m_visualEffectAddName": { + "type": "std::string", + "id": 8, + "offset": 200, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1342603341 - } - } - }, - "1997308133": { - "name": "class std::vector >", - "bases": [], - "hash": 1997308133, - "properties": {} - }, - "1585320665": { - "name": "class GamebryoBody*", - "bases": [ - "Body", - "PropertyClass" - ], - "hash": 1585320665, - "properties": { - "m_position": { - "type": "class Vector3D", - "id": 0, - "offset": 88, + "pointer": false, + "hash": 3382086694 + }, + "m_visualEffectRemoveName": { + "type": "std::string", + "id": 9, + "offset": 232, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3697900983 + "hash": 1541697323 }, - "m_pitch": { - "type": "float", - "id": 1, - "offset": 100, + "m_onAddFunctorName": { + "type": "std::string", + "id": 10, + "offset": 280, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 896371695 + "hash": 1561843107 }, - "m_roll": { - "type": "float", - "id": 2, - "offset": 104, + "m_onRemoveFunctorName": { + "type": "std::string", + "id": 11, + "offset": 312, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 310020272 + "hash": 2559017864 }, - "m_yaw": { - "type": "float", - "id": 3, - "offset": 108, - "flags": 7, + "m_stackingRule": { + "type": "enum STACKING_RULE", + "id": 12, + "offset": 144, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 357256328 + "hash": 431568889, + "enum_options": { + "STACKING_ALLOWED": 0, + "STACKING_NOSTACK": 1, + "STACKING_REPLACE": 2 + } }, - "m_fHeight": { - "type": "float", - "id": 4, - "offset": 132, + "m_startReqs": { + "type": "class SharedPointer", + "id": 13, + "offset": 360, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 401539638 + "pointer": true, + "hash": 3147529602 }, - "m_scale": { - "type": "float", - "id": 5, - "offset": 112, + "m_containerEffects": { + "type": "class SharedPointer", + "id": 14, + "offset": 376, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 957354392 + }, + "m_accompanyID": { + "type": "unsigned int", + "id": 15, + "offset": 392, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 899693439 + "hash": 1462123093 } } }, - "421973717": { - "name": "class CastleToursBehavior", + "2103478230": { + "name": "class PlayerAggroBehavior", "bases": [ + "AggroBehavior", "BehaviorInstance", "PropertyClass" ], - "hash": 421973717, + "hash": 2103478230, "properties": { "m_behaviorTemplateNameID": { "type": "unsigned int", @@ -545578,154 +359132,61 @@ } } }, - "1995872079": { - "name": "class BuddyEntry", + "378758584": { + "name": "class KhanDancePlayer", "bases": [ "PropertyClass" ], - "hash": 1995872079, - "properties": { - "m_name": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1717359772 - }, - "m_characterID": { - "type": "gid", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 210498386 - }, - "m_gameObjectID": { - "type": "gid", - "id": 2, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 23229750 - }, - "m_status": { - "type": "unsigned int", - "id": 3, - "offset": 112, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1172183633, - "enum_options": { - "PLAYERSTATUS_UNKNOWN": 0, - "PLAYERSTATUS_OFFLINE": 1, - "PLAYERSTATUS_LINKDEAD": 2, - "PLAYERSTATUS_TRANSITION": 3, - "PLAYERSTATUS_ONLINE": 4, - "PLAYERSTATUS_IGNORED": 5 - } - } - } + "hash": 378758584, + "properties": {} }, - "1584393185": { - "name": "class ClientCameraReleaseCinematicAction", - "bases": [ - "CameraReleaseCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 1584393185, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_releaseInterpolationDuration": { - "type": "float", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1807754278, - "enum_options": { - "__DEFAULT": "1.0" - } - } - } + "378548646": { + "name": "class std::list >", + "bases": [], + "hash": 378548646, + "properties": {} }, - "1994916972": { - "name": "class SharedPointer", + "816240719": { + "name": "class TutorialLogBehaviorBase*", "bases": [ - "BehaviorTemplate", + "BehaviorInstance", "PropertyClass" ], - "hash": 1994916972, + "hash": 816240719, "properties": { - "m_behaviorName": { - "type": "std::string", + "m_behaviorTemplateNameID": { + "type": "unsigned int", "id": 0, - "offset": 72, - "flags": 7, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3130754092 + "hash": 223437287 }, - "m_jewelSockets": { - "type": "class JewelSocket", + "m_tutorialTipData": { + "type": "std::string", "id": 1, - "offset": 120, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2355333159 - }, - "m_socketDeleted": { - "type": "bool", - "id": 2, - "offset": 136, - "flags": 31, + "offset": 128, + "flags": 551, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 685830803 + "hash": 3119782422 } } }, - "814621938": { - "name": "class SpellFusionListControl*", + "1665908489": { + "name": "class InventoryPageWindow::InventoryItem", "bases": [ - "SpellListControl", + "ControlCheckBox", + "ControlButton", "Window", "PropertyClass" ], - "hash": 814621938, + "hash": 1665908489, "properties": { "m_sName": { "type": "std::string", @@ -545763,7 +359224,6 @@ "HAS_BACK": 1, "CAN_MOVE": 4, "CAN_SIZE": 8, - "CAN_SCROLL": 16, "CAN_FOCUS": 128, "CAN_DOCK": 32, "DO_NOT_CAPTURE_MOUSE": 256, @@ -545776,7 +359236,11 @@ "AUTO_GROW": 16384, "AUTO_SHRINK": 32768, "AUTO_RESIZE": 49152, - "SLC_NUMBERS": 16777216 + "EFFECT_SCALE": 67108864, + "LOCK_ICON_SIZE": 33554432, + "LEFT_TEXT": 536870912, + "NO_FIT_TEXT": 1073741824, + "CHECKBOX_TEXTOVERIMAGE": 16777216 } }, "m_Flags": { @@ -545937,405 +359401,669 @@ "pointer": false, "hash": 3091503757 }, - "m_cardSize": { - "type": "class Size", + "m_bToggle": { + "type": "bool", "id": 16, - "offset": 716, - "flags": 7, + "offset": 608, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1135567057 + "hash": 2071810903 }, - "m_spacing": { - "type": "class Point", + "m_bButtonDown": { + "type": "bool", "id": 17, - "offset": 724, - "flags": 7, + "offset": 609, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3187881255 + "hash": 840041705 }, - "m_holes": { - "type": "class Rect", + "m_sLabel": { + "type": "std::wstring", "id": 18, - "offset": 696, - "flags": 7, - "container": "List", - "dynamic": true, + "offset": 616, + "flags": 4194439, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 1902151287 + "hash": 2207009163 }, - "m_ingredientSize": { - "type": "class Size", + "m_labelOffset": { + "type": "class Rect", "id": 19, - "offset": 760, - "flags": 7, + "offset": 832, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1856724800 + "hash": 1990646723 }, - "m_ingredientSpacing": { - "type": "class Point", + "m_pButton": { + "type": "class SharedPointer", "id": 20, - "offset": 768, - "flags": 7, + "offset": 656, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1543855875 + }, + "m_HotKey": { + "type": "unsigned int", + "id": 21, + "offset": 672, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2794695056 - } - } - }, - "422263029": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 422263029, - "properties": { - "m_partID": { - "type": "gid", - "id": 0, - "offset": 72, - "flags": 7, + "hash": 1631553409 + }, + "m_Color": { + "type": "class Color", + "id": 22, + "offset": 676, + "flags": 262279, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 821435516 + "hash": 1753714077 }, - "m_pips": { - "type": "class SharedPointer", - "id": 1, - "offset": 80, - "flags": 7, + "m_bCursorOver": { + "type": "bool", + "id": 23, + "offset": 689, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1511196686 + "pointer": false, + "hash": 283981103 }, - "m_acq": { - "type": "unsigned int", - "id": 2, - "offset": 96, - "flags": 7, + "m_bAbortWhenCursorNotOver": { + "type": "bool", + "id": 24, + "offset": 706, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 478431554 + "hash": 325405258 }, - "m_arch": { - "type": "unsigned int", - "id": 3, - "offset": 100, - "flags": 7, + "m_bHotKeyDown": { + "type": "bool", + "id": 25, + "offset": 680, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 430613611 + "hash": 616989185 }, - "m_archPoints": { + "m_fTime": { "type": "float", - "id": 4, - "offset": 104, - "flags": 7, + "id": 26, + "offset": 684, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2151979634 - } - } - }, - "1993473511": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1993473511, - "properties": { - "m_tournamentNameID": { - "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 31, + "hash": 883746156 + }, + "m_bGreyed": { + "type": "bool", + "id": 27, + "offset": 688, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1799846440 + "hash": 1566556053 }, - "m_leagueID": { - "type": "unsigned int", - "id": 1, - "offset": 76, - "flags": 31, + "m_fMaxScale": { + "type": "float", + "id": 28, + "offset": 692, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 692361645 + "hash": 2070186635 }, - "m_seasonID": { - "type": "unsigned int", - "id": 2, - "offset": 80, - "flags": 31, + "m_fScaleSpeed": { + "type": "float", + "id": 29, + "offset": 696, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 535260643 + "hash": 1457135702 }, - "m_characterID": { - "type": "gid", - "id": 3, - "offset": 88, - "flags": 31, + "m_bUseDropShadow": { + "type": "bool", + "id": 30, + "offset": 704, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 210498386 + "hash": 93063037 }, - "m_bracketID": { - "type": "gid", - "id": 4, - "offset": 96, - "flags": 31, + "m_bUseOutline": { + "type": "bool", + "id": 31, + "offset": 705, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 441272961 + "hash": 744292994 }, - "m_bracketIDList": { - "type": "class SharedPointer", - "id": 5, - "offset": 152, - "flags": 31, + "m_pGreyedState": { + "type": "class SharedPointer", + "id": 32, + "offset": 768, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": true, - "hash": 3367716172 + "hash": 2703352263 }, - "m_tournamentRequestType": { - "type": "unsigned int", - "id": 6, - "offset": 104, - "flags": 31, + "m_pNormalState": { + "type": "class SharedPointer", + "id": 33, + "offset": 752, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 874052549 + "pointer": true, + "hash": 1887909808 }, - "m_startingIndex": { + "m_pHighlightedState": { + "type": "class SharedPointer", + "id": 34, + "offset": 784, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2200177608 + }, + "m_pSelectedState": { + "type": "class SharedPointer", + "id": 35, + "offset": 800, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2266776432 + }, + "m_pDepressedState": { + "type": "class SharedPointer", + "id": 36, + "offset": 816, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1878185798 + }, + "m_nGroupID": { "type": "int", - "id": 7, - "offset": 108, - "flags": 31, + "id": 37, + "offset": 880, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2126940894 + "hash": 403966850 }, - "m_numberOfElements": { - "type": "int", - "id": 8, - "offset": 112, - "flags": 31, + "m_bChecked": { + "type": "bool", + "id": 38, + "offset": 884, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 790678773 + "hash": 958955100 }, - "m_friendListBuffer": { + "m_pCheckedState": { + "type": "class SharedPointer", + "id": 39, + "offset": 888, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1210539694 + }, + "m_pCheckedGreyedState": { + "type": "class SharedPointer", + "id": 40, + "offset": 904, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2702030126 + }, + "m_pCheckedHighlightedState": { + "type": "class SharedPointer", + "id": 41, + "offset": 920, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1320097679 + }, + "m_pCheckedDepressedState": { + "type": "class SharedPointer", + "id": 42, + "offset": 936, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1609188685 + }, + "m_pEquipNormalState": { + "type": "class SharedPointer", + "id": 43, + "offset": 976, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1322058516 + }, + "m_pEquipPressState": { + "type": "class SharedPointer", + "id": 44, + "offset": 992, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3019605144 + }, + "m_pEquipHighlightState": { + "type": "class SharedPointer", + "id": 45, + "offset": 1008, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2559056739 + }, + "m_pEquipCheckState": { + "type": "class SharedPointer", + "id": 46, + "offset": 1024, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2420681417 + }, + "m_pEquipCheckPressState": { + "type": "class SharedPointer", + "id": 47, + "offset": 1040, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2063281462 + }, + "m_pEquipCheckHighlightState": { + "type": "class SharedPointer", + "id": 48, + "offset": 1056, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2990990081 + } + } + }, + "1219613825": { + "name": "class LeaderboardOption", + "bases": [ + "ServiceOptionBase", + "PropertyClass" + ], + "hash": 1219613825, + "properties": { + "m_serviceName": { "type": "std::string", - "id": 9, - "offset": 120, + "id": 0, + "offset": 72, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2271699753 + "hash": 2206028813 }, - "m_qualifiedOnly": { - "type": "bool", - "id": 10, + "m_iconKey": { + "type": "std::string", + "id": 1, "offset": 168, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 789459241 + "hash": 2457138637 }, - "m_qualifiedLevel": { + "m_displayKey": { + "type": "std::string", + "id": 2, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3023276954 + }, + "m_serviceIndex": { "type": "unsigned int", - "id": 11, - "offset": 172, + "id": 3, + "offset": 204, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 405173305 + "hash": 2103126710 }, - "m_qualifiedRank": { - "type": "int", - "id": 12, - "offset": 176, + "m_forceInteract": { + "type": "bool", + "id": 4, + "offset": 200, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 787071770 + "hash": 1705789564 + }, + "m_leaderboardType": { + "type": "std::string", + "id": 5, + "offset": 216, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2181150930 } } }, - "1993386671": { - "name": "class PulseEffect", + "378400400": { + "name": "class ClientSpellbookBehavior", "bases": [ - "GameEffectBase", + "BehaviorInstance", "PropertyClass" ], - "hash": 1993386671, + "hash": 378400400, "properties": { - "m_currentTickCount": { - "type": "double", + "m_behaviorTemplateNameID": { + "type": "unsigned int", "id": 0, - "offset": 80, - "flags": 63, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2533274692 + "hash": 223437287 }, - "m_effectNameID": { - "type": "unsigned int", + "m_spellIDList": { + "type": "class SharedPointer", "id": 1, - "offset": 96, - "flags": 63, + "offset": 128, + "flags": 27, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 3635357151 + } + } + }, + "2104732198": { + "name": "class ItemFinderBehaviorTemplate", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 2104732198, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1204067144 + "hash": 3130754092 + } + } + }, + "2104110305": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 2104110305, + "properties": { + "m_shopList": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 446354318 }, - "m_bIsOnPet": { - "type": "bool", + "m_recipeList": { + "type": "std::string", + "id": 1, + "offset": 88, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 3311769839 + }, + "m_shopTitle": { + "type": "std::string", "id": 2, - "offset": 73, + "offset": 104, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 522593303 + "hash": 3349689687 }, - "m_originatorID": { - "type": "gid", + "m_sellModifier": { + "type": "float", "id": 3, - "offset": 104, - "flags": 39, + "offset": 136, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1131810019 + "hash": 360128886 }, - "m_itemSlotID": { - "type": "unsigned int", + "m_shopType": { + "type": "int", "id": 4, - "offset": 112, - "flags": 63, + "offset": 140, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1895747595 + "hash": 446675542 }, - "m_internalID": { - "type": "int", + "m_CSRTestShop": { + "type": "bool", "id": 5, - "offset": 92, - "flags": 63, + "offset": 144, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1643137924 + "hash": 1651336981 }, - "m_endTime": { - "type": "unsigned int", + "m_furnitureShop": { + "type": "int", "id": 6, - "offset": 88, + "offset": 148, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 716479635 + "hash": 1321981560 }, - "m_pulseCount": { - "type": "double", + "m_activeHolidayList": { + "type": "std::string", "id": 7, + "offset": 152, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2341827453 + } + } + }, + "602336913": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 602336913, + "properties": { + "m_projectID": { + "type": "unsigned int", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1263221425 + }, + "m_classProjectPlayer": { + "type": "class SharedPointer", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1748630410 + } + } + }, + "817275086": { + "name": "class TutorialLogBehavior*", + "bases": [ + "TutorialLogBehaviorBase", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 817275086, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_tutorialTipData": { + "type": "std::string", + "id": 1, "offset": 128, - "flags": 63, + "flags": 551, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3507157375 - } - } - }, - "1586753232": { - "name": "class WhirlyBurlyGameList*", - "bases": [ - "PropertyClass" - ], - "hash": 1586753232, - "properties": { - "m_whirlyBurlyGameList": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1597138179 + "hash": 3119782422 } } }, - "819165330": { - "name": "class DerbyEffectSprite", + "1221567754": { + "name": "class ControlRichEdit*", "bases": [ - "ControlSprite", + "ControlEdit", "Window", "PropertyClass" ], - "hash": 819165330, + "hash": 1221567754, "properties": { "m_sName": { "type": "std::string", @@ -546371,11 +360099,8 @@ "hash": 983582334, "enum_options": { "HAS_BACK": 1, - "SCALE_CHILDREN": 2, "CAN_MOVE": 4, "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "FOCUS_LOCKED": 64, "CAN_FOCUS": 128, "CAN_DOCK": 32, "DO_NOT_CAPTURE_MOUSE": 256, @@ -546387,7 +360112,13 @@ "USE_ALPHA_BOUNDS": 8192, "AUTO_GROW": 16384, "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152 + "AUTO_RESIZE": 49152, + "FORCE_NUMERIC": 16777216, + "FORCE_ALPHA": 268435456, + "FORCE_ALPHANUMERIC": 536870912, + "FORCE_INTEGER": 33554432, + "FORCE_POSITIVE": 67108864, + "FORCE_RANGE": 134217728 } }, "m_Flags": { @@ -546413,10 +360144,7 @@ "PARENT_HEIGHT": 524288, "HCENTER": 32768, "VCENTER": 65536, - "DISABLED": 2147483648, - "ONE_SHOT": 8388608, - "FLIPPED_HORIZONTAL": 16777216, - "FLIPPED_VERTICAL": 33554432 + "DISABLED": 2147483648 } }, "m_Window": { @@ -546551,495 +360279,238 @@ "pointer": false, "hash": 3091503757 }, - "m_pMaterial": { - "type": "class SharedPointer", + "m_sText": { + "type": "std::wstring", "id": 16, - "offset": 592, + "offset": 584, "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3479277078 + "pointer": false, + "hash": 2102642960 }, - "m_fRotation": { - "type": "float", + "m_nMaxLength": { + "type": "int", "id": 17, - "offset": 608, + "offset": 620, "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1175400173 + "hash": 1183478416 }, - "m_Color": { - "type": "class Color", + "m_bPassword": { + "type": "bool", "id": 18, - "offset": 584, - "flags": 262279, + "offset": 624, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1753714077 + "hash": 1604468200 }, - "m_textColor": { - "type": "class Color", + "m_bLog": { + "type": "bool", "id": 19, - "offset": 612, - "flags": 262279, + "offset": 625, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2528109250 + "hash": 221687287 }, - "m_textComponent": { - "type": "class TextComponent", + "m_previousNext": { + "type": "bool", "id": 20, - "offset": 616, + "offset": 627, "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3491704390 + "hash": 858581071 }, - "m_effectID": { - "type": "std::string", + "m_nMaxLogSize": { + "type": "int", "id": 21, - "offset": 736, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3633927605 - } - } - }, - "1585664901": { - "name": "class HousingBlobObject", - "bases": [ - "PropertyClass" - ], - "hash": 1585664901, - "properties": { - "m_gameObjectTemplateID": { - "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1154586887, - "enum_options": { - "__DEFAULT": 0 - } - }, - "m_positionXY": { - "type": "unsigned int", - "id": 1, - "offset": 76, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1263476723, - "enum_options": { - "__DEFAULT": 0 - } - }, - "m_positionZ": { - "type": "float", - "id": 2, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 837995846, - "enum_options": { - "__DEFAULT": 0 - } - }, - "m_yaw": { - "type": "unsigned char", - "id": 3, - "offset": 84, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 904654625, - "enum_options": { - "__DEFAULT": 0 - } - }, - "m_extraData1": { - "type": "unsigned int", - "id": 4, - "offset": 88, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 693220060, - "enum_options": { - "__DEFAULT": 0 - } - } - } - }, - "423929075": { - "name": "class SharedPointer", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 423929075, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - }, - "m_movementSpeed": { - "type": "float", - "id": 1, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 769135219 - } - } - }, - "817027151": { - "name": "class TutorialLogBehaviorBase", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 817027151, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_tutorialTipData": { - "type": "std::string", - "id": 1, - "offset": 128, - "flags": 551, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3119782422 - } - } - }, - "423538800": { - "name": "class SharedPointer", - "bases": [ - "CoreTemplate", - "PropertyClass" - ], - "hash": 423538800, - "properties": { - "m_behaviors": { - "type": "class BehaviorTemplate*", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1197808594 - }, - "m_name": { - "type": "std::string", - "id": 1, - "offset": 96, - "flags": 7, + "offset": 712, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1717359772 + "hash": 779573899 }, - "m_uid": { - "type": "unsigned int", - "id": 2, - "offset": 128, - "flags": 16777223, + "m_bEditing": { + "type": "bool", + "id": 22, + "offset": 616, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 478453519 + "hash": 1243218553 }, - "m_filters": { - "type": "class SharedPointer", - "id": 3, - "offset": 136, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2539658755 - } - } - }, - "1993611708": { - "name": "class SharedPointer", - "bases": [ - "WindowStyle", - "PropertyClass" - ], - "hash": 1993611708, - "properties": { - "m_pBackMaterial": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, + "m_bAllowPaste": { + "type": "bool", + "id": 23, + "offset": 626, "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1628562023 + "pointer": false, + "hash": 1129316721 }, - "m_pFont": { - "type": "class SharedPointer", - "id": 1, - "offset": 88, + "m_nLogPosition": { + "type": "int", + "id": 24, + "offset": 704, "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1067686307 + "pointer": false, + "hash": 1120160767 }, - "m_pLargeFont": { - "type": "class SharedPointer", - "id": 2, - "offset": 104, + "m_nCursor": { + "type": "int", + "id": 25, + "offset": 716, "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1523900782 + "pointer": false, + "hash": 1876782150 }, - "m_pSmallFont": { - "type": "class SharedPointer", - "id": 3, - "offset": 120, + "m_nEditBegin": { + "type": "int", + "id": 26, + "offset": 720, "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2363252956 - }, - "m_Color": { - "type": "class Color", - "id": 4, - "offset": 136, - "flags": 262279, - "container": "Static", - "dynamic": false, - "singleton": false, "pointer": false, - "hash": 1753714077 + "hash": 1066592403 }, - "m_HighColor": { - "type": "class Color", - "id": 5, - "offset": 140, - "flags": 262279, + "m_nEditEnd": { + "type": "int", + "id": 27, + "offset": 724, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2310527421 + "hash": 1560905669 }, - "m_SelectColor": { - "type": "class Color", - "id": 6, - "offset": 144, - "flags": 262279, + "m_sSavedText": { + "type": "std::wstring", + "id": 28, + "offset": 728, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2792529213 + "hash": 2197953283 }, - "m_BorderColor": { - "type": "class Color", - "id": 7, - "offset": 148, - "flags": 262279, + "m_fCursorBlinkSpeed": { + "type": "float", + "id": 29, + "offset": 760, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1470576795 + "hash": 2232655228 }, - "m_BackColor": { - "type": "class Color", - "id": 8, - "offset": 152, - "flags": 262279, + "m_fCursorTimer": { + "type": "float", + "id": 30, + "offset": 764, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1070928782 + "hash": 1929942748 }, - "m_ScrollBarColor": { - "type": "class Color", - "id": 9, - "offset": 156, - "flags": 262279, + "m_bCursorBlink": { + "type": "bool", + "id": 31, + "offset": 768, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1180747361 + "hash": 683441507 }, - "m_ScrollTabColor": { - "type": "class Color", - "id": 10, - "offset": 160, - "flags": 262279, + "m_fMinRange": { + "type": "double", + "id": 32, + "offset": 776, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1034892323 + "hash": 3079523396 }, - "m_nBorderSize": { - "type": "int", - "id": 11, - "offset": 164, + "m_fMaxRange": { + "type": "double", + "id": 33, + "offset": 784, "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2016376897 + "hash": 3876551814 }, - "m_nScrollSize": { + "m_nPrecision": { "type": "int", - "id": 12, - "offset": 168, + "id": 34, + "offset": 792, "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 632681746 - }, - "m_sHoverSound": { - "type": "std::string", - "id": 13, - "offset": 176, - "flags": 131207, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2662773595 - }, - "m_sSelectSound": { - "type": "std::string", - "id": 14, - "offset": 208, - "flags": 131207, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2596786807 + "hash": 1404974196 }, - "m_sHighlightSound": { - "type": "std::string", - "id": 15, - "offset": 240, + "m_bDeleteOnFirstChar": { + "type": "bool", + "id": 35, + "offset": 618, "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3020805615 - } - } - }, - "815474551": { - "name": "class PetDerbyRacerStats", - "bases": [ - "PropertyClass" - ], - "hash": 815474551, - "properties": { - "m_initialStats": { - "type": "class PetStat", - "id": 0, - "offset": 72, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2249155308 + "hash": 902105643 } } }, - "423509891": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 423509891, - "properties": {} - }, - "1993563446": { - "name": "class PetObstacleCourseGameInfo*", + "1676066464": { + "name": "class SpeedEffectTemplate", "bases": [ - "PetGameInfo", + "GameEffectTemplate", "PropertyClass" ], - "hash": 1993563446, + "hash": 1676066464, "properties": { - "m_isWebGame": { - "type": "bool", + "m_effectName": { + "type": "std::string", "id": 0, "offset": 72, "flags": 7, @@ -547047,849 +360518,665 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 944547943 + "hash": 2029161513 }, - "m_name": { + "m_effectCategory": { "type": "std::string", "id": 1, - "offset": 160, + "offset": 104, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1717359772 + "hash": 1852673222 }, - "m_energyCosts": { - "type": "class SharedPointer", + "m_sortOrder": { + "type": "int", "id": 2, - "offset": 192, + "offset": 148, "flags": 7, - "container": "List", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3378376555 + "pointer": false, + "hash": 1411218206 }, - "m_trackChoices": { - "type": "class SharedPointer", + "m_duration": { + "type": "double", "id": 3, - "offset": 208, + "offset": 192, "flags": 7, - "container": "Vector", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1548152913 + "pointer": false, + "hash": 2727932435 }, - "m_gameIcon": { + "m_stackingCategories": { "type": "std::string", "id": 4, - "offset": 80, + "offset": 160, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 3229574910 + "hash": 1774497525 }, - "m_trackIcons": { - "type": "std::string", + "m_isPersistent": { + "type": "bool", "id": 5, - "offset": 112, + "offset": 153, "flags": 7, - "container": "Vector", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 2211683916 + "hash": 923861920 }, - "m_trackToolTips": { - "type": "std::string", + "m_bIsOnPet": { + "type": "bool", "id": 6, - "offset": 136, + "offset": 154, "flags": 7, - "container": "Vector", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 1898819214 + "hash": 522593303 }, - "m_petWidth": { - "type": "int", + "m_isPublic": { + "type": "bool", "id": 7, - "offset": 232, + "offset": 152, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2027689763 + "hash": 1728439822 }, - "m_petHeight": { - "type": "int", + "m_visualEffectAddName": { + "type": "std::string", "id": 8, - "offset": 236, + "offset": 200, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1894813180 + "hash": 3382086694 }, - "m_petDepth": { - "type": "int", + "m_visualEffectRemoveName": { + "type": "std::string", "id": 9, - "offset": 240, + "offset": 232, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2005026584 + "hash": 1541697323 }, - "m_gravity": { - "type": "float", + "m_onAddFunctorName": { + "type": "std::string", "id": 10, - "offset": 244, + "offset": 280, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1184936541 + "hash": 1561843107 }, - "m_fallingPenalty": { - "type": "int", + "m_onRemoveFunctorName": { + "type": "std::string", "id": 11, - "offset": 248, + "offset": 312, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1717924532 + "hash": 2559017864 }, - "m_trackTimes": { - "type": "int", + "m_stackingRule": { + "type": "enum STACKING_RULE", "id": 12, - "offset": 256, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 727242577 - }, - "m_collectionInterval": { - "type": "double", - "id": 13, - "offset": 280, - "flags": 7, + "offset": 144, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3052813470 + "hash": 431568889, + "enum_options": { + "STACKING_ALLOWED": 0, + "STACKING_NOSTACK": 1, + "STACKING_REPLACE": 2 + } }, - "m_tolerance": { - "type": "double", - "id": 14, - "offset": 288, + "m_speedMultiplier": { + "type": "int", + "id": 13, + "offset": 360, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3410860138 + "hash": 32503058 } } }, - "815242629": { - "name": "class BracketMatchActorResult*", + "1673432062": { + "name": "class TreasureTableLootInfo", "bases": [ - "MatchActorResult", + "LootInfo", + "LootInfoBase", "PropertyClass" ], - "hash": 815242629, + "hash": 1673432062, "properties": { - "m_pActor": { - "type": "class SharedPointer", + "m_lootType": { + "type": "enum LootInfo::LOOT_TYPE", "id": 0, "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1115051967 - }, - "m_place": { - "type": "int", - "id": 1, - "offset": 88, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 806257663 - }, - "m_ratingGained": { - "type": "int", - "id": 2, - "offset": 92, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1426436071 - }, - "m_arenaPoints": { - "type": "int", - "id": 3, - "offset": 96, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 511478910 - }, - "m_pvpCurrency": { - "type": "int", - "id": 4, - "offset": 100, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 611304283 - }, - "m_pvpTourneyCurrency": { - "type": "int", - "id": 5, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1184787505 - }, - "m_gold": { - "type": "int", - "id": 6, - "offset": 108, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 219423808 - }, - "m_gameResult": { - "type": "unsigned char", - "id": 7, - "offset": 112, - "flags": 31, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1417654793 + "hash": 1591891442, + "enum_options": { + "LOOT_TYPE_NONE": 0, + "LOOT_TYPE_GOLD": 1, + "LOOT_TYPE_MANA": 2, + "LOOT_TYPE_ITEM": 3, + "LOOT_TYPE_TREASURE_CARD": 4, + "LOOT_TYPE_MAGIC_XP": 5, + "LOOT_TYPE_ADD_SPELL": 6, + "LOOT_TYPE_MAX_HEALTH": 7, + "LOOT_TYPE_MAX_GOLD": 8, + "LOOT_TYPE_MAX_MANA": 9, + "LOOT_TYPE_MAX_POTION": 10, + "LOOT_TYPE_TRAINING_POINTS": 11, + "LOOT_TYPE_RECIPE": 12, + "LOOT_TYPE_CRAFTING_SLOT": 13, + "LOOT_TYPE_REAGENT": 14, + "LOOT_TYPE_PETSNACK": 15, + "LOOT_TYPE_GARDENING_XP": 16, + "LOOT_TYPE_PET_XP": 17, + "LOOT_TYPE_TREASURE_TABLE": 18, + "LOOT_TYPE_ARENA_POINTS": 19, + "LOOT_TYPE_ARENA_BONUS_POINTS": 20, + "LOOT_TYPE_GROUP": 21, + "LOOT_TYPE_FISHING_XP": 22, + "LOOT_TYPE_EVENT_CURRENCY_1": 24, + "LOOT_TYPE_EVENT_CURRENCY_2": 25, + "LOOT_TYPE_PVP_CURRENCY": 26, + "LOOT_TYPE_PVP_CURRENCY_BONUS": 27, + "LOOT_TYPE_PVP_TOURNEY_CURRENCY": 28, + "LOOT_TYPE_PVP_TOURNEY_CURRENCY_BONUS": 29, + "LOOT_TYPE_FURNITURE_ESSENCE": 30 + } } } }, - "1587295800": { - "name": "class ClientDerbyImmunityEffect*", + "1221321528": { + "name": "class ControlMailEdit", "bases": [ - "DerbyImmunityEffect", - "DerbyEffect", + "ControlRichEdit", + "ControlEdit", + "Window", "PropertyClass" ], - "hash": 1587295800, + "hash": 1221321528, "properties": { - "m_buffType": { - "type": "enum DerbyTalentBuffType", + "m_sName": { + "type": "std::string", "id": 0, - "offset": 92, - "flags": 2097183, + "offset": 80, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1149251982, - "enum_options": { - "Buff": 0, - "Debuff": 1, - "Neither": 2 - } + "hash": 2306437263 }, - "m_kTarget": { - "type": "enum DerbyTargetType", + "m_Children": { + "type": "class SharedPointer", "id": 1, - "offset": 96, - "flags": 2097159, - "container": "Static", - "dynamic": false, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 1807803351, - "enum_options": { - "kTargetInFront": 0, - "kTargetBehind": 1, - "kTargetFirst": 2, - "kTargetSelf": 3, - "kTargetAll": 4, - "kTargetLast": 5 - } + "pointer": true, + "hash": 2621225959 }, - "m_nDuration": { - "type": "int", + "m_Style": { + "type": "unsigned int", "id": 2, - "offset": 104, - "flags": 31, + "offset": 152, + "flags": 1048583, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1110167982 + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152, + "FORCE_NUMERIC": 16777216, + "FORCE_ALPHA": 268435456, + "FORCE_ALPHANUMERIC": 536870912, + "FORCE_INTEGER": 33554432, + "FORCE_POSITIVE": 67108864, + "FORCE_RANGE": 134217728 + } }, - "m_effectID": { + "m_Flags": { "type": "unsigned int", "id": 3, - "offset": 88, - "flags": 24, + "offset": 156, + "flags": 1048583, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2347630439 + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } }, - "m_imageFilename": { - "type": "std::string", + "m_Window": { + "type": "class Rect", "id": 4, - "offset": 112, - "flags": 131103, + "offset": 160, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2813328063 + "hash": 3105139380 }, - "m_iconIndex": { - "type": "unsigned int", + "m_fTargetAlpha": { + "type": "float", "id": 5, - "offset": 144, - "flags": 31, + "offset": 212, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1265133262 + "hash": 1809129834 }, - "m_soundOnActivate": { - "type": "std::string", + "m_fDisabledAlpha": { + "type": "float", "id": 6, - "offset": 152, - "flags": 131103, + "offset": 216, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1956929714 + "hash": 1389987675 }, - "m_soundOnTarget": { - "type": "std::string", + "m_fAlpha": { + "type": "float", "id": 7, - "offset": 184, - "flags": 131103, + "offset": 208, + "flags": 65671, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3444214056 + "hash": 482130755 }, - "m_targetParticleEffect": { - "type": "std::string", + "m_pWindowStyle": { + "type": "class SharedPointer", "id": 8, - "offset": 216, - "flags": 131103, + "offset": 232, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 3048234723 + "pointer": true, + "hash": 3623628394 }, - "m_overheadMessage": { - "type": "std::string", + "m_sHelp": { + "type": "std::wstring", "id": 9, "offset": 248, - "flags": 8388639, + "flags": 4194439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1701018190 + "hash": 2102211316 }, - "m_requirements": { - "type": "class RequirementList", + "m_sScript": { + "type": "std::string", "id": 10, - "offset": 280, - "flags": 31, + "offset": 352, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2840988582 + "hash": 1846695875 }, - "m_bToDebuffs": { - "type": "bool", + "m_Offset": { + "type": "class Point", "id": 11, - "offset": 376, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1216111639 - } - } - }, - "1993573069": { - "name": "class HousingObjectState", - "bases": [ - "PropertyClass" - ], - "hash": 1993573069, - "properties": { - "m_id": { - "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 7, + "offset": 192, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2301988666 + "hash": 3389835433 }, - "m_stateID": { - "type": "unsigned int", - "id": 1, - "offset": 76, - "flags": 7, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1849561019 - } - } - }, - "423827455": { - "name": "class std::list >", - "bases": [], - "hash": 423827455, - "properties": {} - }, - "816240719": { - "name": "class TutorialLogBehaviorBase*", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 816240719, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, + "hash": 2547159940 + }, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 + "hash": 1513510520 }, - "m_tutorialTipData": { - "type": "std::string", - "id": 1, - "offset": 128, - "flags": 551, - "container": "Static", - "dynamic": false, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 3119782422 - } - } - }, - "1592441179": { - "name": "class SharedPointer", - "bases": [ - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 1592441179, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 + "hash": 3091503757 }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, + "m_sText": { + "type": "std::wstring", + "id": 16, + "offset": 584, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2285866132 - } - } - }, - "1591320462": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1591320462, - "properties": { - "m_messageType": { + "hash": 2102642960 + }, + "m_nMaxLength": { "type": "int", - "id": 0, - "offset": 72, - "flags": 31, + "id": 17, + "offset": 620, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1531535105 - } - } - }, - "1994162749": { - "name": "class SharedPointer", - "bases": [ - "MoveController::MoveCommand", - "PropertyClass" - ], - "hash": 1994162749, - "properties": { - "m_Orientation": { - "type": "class Euler", - "id": 0, - "offset": 88, - "flags": 31, + "hash": 1183478416 + }, + "m_bPassword": { + "type": "bool", + "id": 18, + "offset": 624, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3248981887 - } - } - }, - "1588735402": { - "name": "class ClientFadeActorCinematicAction*", - "bases": [ - "FadeActorCinematicAction", - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 1588735402, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, + "hash": 1604468200 + }, + "m_bLog": { + "type": "bool", + "id": 19, + "offset": 625, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 + "hash": 221687287 }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, + "m_previousNext": { + "type": "bool", + "id": 20, + "offset": 627, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2285866132 + "hash": 858581071 }, - "m_fadeDuration": { - "type": "float", - "id": 2, - "offset": 120, - "flags": 7, + "m_nMaxLogSize": { + "type": "int", + "id": 21, + "offset": 712, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1402536557 + "hash": 779573899 }, - "m_alphaTarget": { - "type": "float", - "id": 3, - "offset": 124, - "flags": 7, + "m_bEditing": { + "type": "bool", + "id": 22, + "offset": 616, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 197622500 - } - } - }, - "424256581": { - "name": "class SharedPointer", - "bases": [ - "SG_GameAction", - "PropertyClass" - ], - "hash": 424256581, - "properties": { - "m_target": { - "type": "enum SG_GameAction::SG_Target", - "id": 0, - "offset": 72, - "flags": 2097159, + "hash": 1243218553 + }, + "m_bAllowPaste": { + "type": "bool", + "id": 23, + "offset": 626, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1166870973, - "enum_options": { - "Target_Ball": 0, - "Target_Self": 1, - "Target_Connections": 2, - "__DEFAULT": "Target_Ball" - } + "hash": 1129316721 }, - "m_impactInteraction": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, + "m_nLogPosition": { + "type": "int", + "id": 24, + "offset": 704, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3623009561 + "hash": 1120160767 }, - "m_fExplosionForceScalar": { - "type": "float", - "id": 2, - "offset": 116, - "flags": 7, + "m_nCursor": { + "type": "int", + "id": 25, + "offset": 716, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1506193859 + "hash": 1876782150 }, - "m_fExplosionRadiusScalar": { - "type": "float", - "id": 3, - "offset": 120, - "flags": 7, + "m_nEditBegin": { + "type": "int", + "id": 26, + "offset": 720, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 658772124 - } - } - }, - "817275086": { - "name": "class TutorialLogBehavior*", - "bases": [ - "TutorialLogBehaviorBase", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 817275086, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, + "hash": 1066592403 + }, + "m_nEditEnd": { + "type": "int", + "id": 27, + "offset": 724, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 + "hash": 1560905669 }, - "m_tutorialTipData": { - "type": "std::string", - "id": 1, - "offset": 128, - "flags": 551, + "m_sSavedText": { + "type": "std::wstring", + "id": 28, + "offset": 728, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3119782422 - } - } - }, - "1588404539": { - "name": "class PetLevelInfo*", - "bases": [ - "PropertyClass" - ], - "hash": 1588404539, - "properties": { - "m_level": { - "type": "unsigned char", - "id": 0, - "offset": 72, - "flags": 7, + "hash": 2197953283 + }, + "m_fCursorBlinkSpeed": { + "type": "float", + "id": 29, + "offset": 760, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1438884808 + "hash": 2232655228 }, - "m_template": { - "type": "unsigned int", - "id": 1, - "offset": 76, - "flags": 7, + "m_fCursorTimer": { + "type": "float", + "id": 30, + "offset": 764, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 669977097 + "hash": 1929942748 }, - "m_requiredXP": { - "type": "unsigned int", - "id": 2, - "offset": 80, - "flags": 7, + "m_bCursorBlink": { + "type": "bool", + "id": 31, + "offset": 768, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1890811574 + "hash": 683441507 }, - "m_powerCardCount": { - "type": "unsigned int", - "id": 3, - "offset": 84, - "flags": 7, + "m_fMinRange": { + "type": "double", + "id": 32, + "offset": 776, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1299301661 + "hash": 3079523396 }, - "m_powerCardName": { - "type": "std::string", - "id": 4, - "offset": 88, - "flags": 268435463, + "m_fMaxRange": { + "type": "double", + "id": 33, + "offset": 784, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1856508131, - "enum_options": { - "__BASECLASS": "SpellTemplate" - } + "hash": 3876551814 }, - "m_powerCardName2": { - "type": "std::string", - "id": 5, - "offset": 120, - "flags": 268435463, + "m_nPrecision": { + "type": "int", + "id": 34, + "offset": 792, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2598131765, - "enum_options": { - "__BASECLASS": "SpellTemplate" - } + "hash": 1404974196 }, - "m_powerCardName3": { - "type": "std::string", - "id": 6, - "offset": 152, - "flags": 268435463, + "m_bDeleteOnFirstChar": { + "type": "bool", + "id": 35, + "offset": 618, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2598131766, - "enum_options": { - "__BASECLASS": "SpellTemplate" - } - }, - "m_lootTable": { - "type": "std::string", - "id": 7, - "offset": 184, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2539512673 + "hash": 902105643 } } }, - "1995302474": { - "name": "class ClientIdleInterceptCinematicAction", + "378761656": { + "name": "class KhanDancePlayer*", "bases": [ - "IdleInterceptCinematicAction", - "ActorCinematicAction", - "CinematicAction", "PropertyClass" ], - "hash": 1995302474, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - } - } + "hash": 378761656, + "properties": {} }, "818739088": { "name": "class LinearStateSoundBehavior*", @@ -548091,586 +361378,423 @@ } } }, - "1588673790": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1588673790, - "properties": {} - }, - "427447797": { - "name": "class SharedPointer", + "1670227319": { + "name": "class SharedPointer", "bases": [ - "CoreTemplate", + "WizItemLocations", "PropertyClass" ], - "hash": 427447797, + "hash": 1670227319, "properties": { - "m_behaviors": { - "type": "class BehaviorTemplate*", + "m_itemType": { + "type": "enum WizItemLocations::eItemType", "id": 0, "offset": 72, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1197808594 - }, - "m_objectName": { - "type": "std::string", - "id": 1, - "offset": 96, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2154940147 - }, - "m_templateID": { - "type": "unsigned int", - "id": 2, - "offset": 128, - "flags": 16777223, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1286746870 - }, - "m_visualID": { - "type": "unsigned int", - "id": 3, - "offset": 132, - "flags": 7, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1118778894 + "hash": 3482173907, + "enum_options": { + "shop": 0, + "quest": 1, + "boss": 2, + "gardening": 3, + "goldChest": 4 + } }, - "m_adjectiveList": { + "m_goldChestZones": { "type": "std::string", - "id": 4, - "offset": 248, - "flags": 7, + "id": 1, + "offset": 80, + "flags": 31, "container": "List", "dynamic": true, "singleton": false, "pointer": false, - "hash": 3195213318 - }, - "m_exemptFromAOI": { - "type": "bool", - "id": 5, - "offset": 240, - "flags": 7, + "hash": 2718514023 + } + } + }, + "1219958228": { + "name": "class Reco::LevelData", + "bases": [ + "PropertyClass" + ], + "hash": 1219958228, + "properties": { + "m_level": { + "type": "int", + "id": 0, + "offset": 72, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1457879059 + "hash": 801285362 }, - "m_displayName": { - "type": "std::string", - "id": 6, - "offset": 168, - "flags": 8388615, - "container": "Static", - "dynamic": false, + "m_categoryData": { + "type": "class SharedPointer", + "id": 1, + "offset": 96, + "flags": 31, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 2446900370 - }, - "m_description": { + "pointer": true, + "hash": 2178338894 + } + } + }, + "1668142640": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1668142640, + "properties": { + "m_worldName": { "type": "std::string", - "id": 7, - "offset": 136, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1649374815 - }, - "m_nObjectType": { - "type": "enum ObjectType", - "id": 8, - "offset": 200, - "flags": 2097159, + "id": 0, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2118905880, - "enum_options": { - "OT_UNDEFINED": 0, - "OT_PLAYER": 1, - "OT_NPC": 2, - "OT_PROP": 3, - "OT_OBJECT": 4, - "OT_HOUSE": 5, - "OT_KEY": 6, - "OT_OLD_KEY": 7, - "OT_DEED": 8, - "OT_MAIL": 9, - "OT_RECIPE": 17, - "OT_EQUIP_HEAD": 10, - "OT_EQUIP_CHEST": 11, - "OT_EQUIP_LEGS": 12, - "OT_EQUIP_HANDS": 13, - "OT_EQUIP_FINGER": 14, - "OT_EQUIP_FEET": 15, - "OT_EQUIP_EAR": 16, - "OT_BUILDING_BLOCK": 18, - "OT_BUILDING_BLOCK_SOLID": 19, - "OT_GOLF": 20, - "OT_DOOR": 21, - "OT_PET": 22, - "OT_FABRIC": 23, - "OT_WINDOW": 24, - "OT_ROOF": 25, - "OT_HORSE": 26, - "OT_STRUCTURE": 27, - "OT_HOUSING_TEXTURE": 28, - "OT_PLANT": 29 - } + "hash": 1846757476 }, - "m_sIcon": { - "type": "std::string", - "id": 9, - "offset": 208, - "flags": 131079, + "m_monsterCount": { + "type": "unsigned int", + "id": 1, + "offset": 108, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2306259831 + "hash": 2119592350 } } }, - "1995064819": { - "name": "class SharedPointer", + "2105386940": { + "name": "class GroupMember", "bases": [ - "DerbyModifySpeedBoost", - "DerbyEffect", "PropertyClass" ], - "hash": 1995064819, + "hash": 2105386940, "properties": { - "m_buffType": { - "type": "enum DerbyTalentBuffType", + "m_GlobalID": { + "type": "gid", "id": 0, - "offset": 92, - "flags": 2097183, + "offset": 72, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1149251982, - "enum_options": { - "Buff": 0, - "Debuff": 1, - "Neither": 2 - } + "hash": 843146230 }, - "m_kTarget": { - "type": "enum DerbyTargetType", + "m_CharacterID": { + "type": "gid", "id": 1, - "offset": 96, - "flags": 2097159, + "offset": 80, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1807803351, - "enum_options": { - "kTargetInFront": 0, - "kTargetBehind": 1, - "kTargetFirst": 2, - "kTargetSelf": 3, - "kTargetAll": 4, - "kTargetLast": 5 - } + "hash": 1626688306 }, - "m_nDuration": { - "type": "int", + "m_sNameBlob": { + "type": "std::string", "id": 2, - "offset": 104, + "offset": 88, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1110167982 + "hash": 2372396590 }, - "m_effectID": { + "m_schoolID": { "type": "unsigned int", "id": 3, - "offset": 88, - "flags": 24, + "offset": 120, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2347630439 + "hash": 369010242 }, - "m_imageFilename": { - "type": "std::string", + "m_level": { + "type": "unsigned int", "id": 4, - "offset": 112, - "flags": 131103, + "offset": 124, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2813328063 + "hash": 1012687813 }, - "m_iconIndex": { - "type": "unsigned int", + "m_zoneDisplayName": { + "type": "std::string", "id": 5, - "offset": 144, + "offset": 128, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1265133262 + "hash": 1962339438 }, - "m_soundOnActivate": { - "type": "std::string", + "m_hasFilteredChat": { + "type": "unsigned char", "id": 6, - "offset": 152, - "flags": 131103, + "offset": 160, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1956929714 + "hash": 2657823291 }, - "m_soundOnTarget": { - "type": "std::string", + "m_sigilSlot": { + "type": "unsigned int", "id": 7, - "offset": 184, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3444214056 - }, - "m_targetParticleEffect": { - "type": "std::string", - "id": 8, - "offset": 216, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3048234723 - }, - "m_overheadMessage": { - "type": "std::string", - "id": 9, - "offset": 248, - "flags": 8388639, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1701018190 - }, - "m_requirements": { - "type": "class RequirementList", - "id": 10, - "offset": 280, + "offset": 164, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2840988582 + "hash": 1891552167 }, - "m_nSpeedChange": { + "m_platformType": { "type": "int", - "id": 11, - "offset": 376, + "id": 8, + "offset": 168, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 636533855 + "hash": 1300871393 } } }, - "425263532": { - "name": "class GardenLevelControl", + "378961954": { + "name": "class StartingPipEffectTemplate", "bases": [ - "Window", + "GameEffectTemplate", "PropertyClass" ], - "hash": 425263532, + "hash": 378961954, "properties": { - "m_sName": { + "m_effectName": { "type": "std::string", "id": 0, - "offset": 80, - "flags": 135, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2306437263 + "hash": 2029161513 }, - "m_Children": { - "type": "class SharedPointer", + "m_effectCategory": { + "type": "std::string", "id": 1, - "offset": 112, - "flags": 65667, - "container": "Vector", - "dynamic": true, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2621225959 + "pointer": false, + "hash": 1852673222 }, - "m_Style": { - "type": "unsigned int", + "m_sortOrder": { + "type": "int", "id": 2, - "offset": 152, - "flags": 1048583, + "offset": 148, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "SCALE_CHILDREN": 2, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "FOCUS_LOCKED": 64, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152 - } + "hash": 1411218206 }, - "m_Flags": { - "type": "unsigned int", + "m_duration": { + "type": "double", "id": 3, - "offset": 156, - "flags": 1048583, + "offset": 192, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } + "hash": 2727932435 }, - "m_Window": { - "type": "class Rect", + "m_stackingCategories": { + "type": "std::string", "id": 4, "offset": 160, - "flags": 135, - "container": "Static", - "dynamic": false, + "flags": 7, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 3105139380 + "hash": 1774497525 }, - "m_fTargetAlpha": { - "type": "float", + "m_isPersistent": { + "type": "bool", "id": 5, - "offset": 212, - "flags": 135, + "offset": 153, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1809129834 + "hash": 923861920 }, - "m_fDisabledAlpha": { - "type": "float", + "m_bIsOnPet": { + "type": "bool", "id": 6, - "offset": 216, - "flags": 135, + "offset": 154, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1389987675 + "hash": 522593303 }, - "m_fAlpha": { - "type": "float", + "m_isPublic": { + "type": "bool", "id": 7, - "offset": 208, - "flags": 65671, + "offset": 152, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 482130755 + "hash": 1728439822 }, - "m_pWindowStyle": { - "type": "class SharedPointer", + "m_visualEffectAddName": { + "type": "std::string", "id": 8, - "offset": 232, - "flags": 135, + "offset": 200, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3623628394 + "pointer": false, + "hash": 3382086694 }, - "m_sHelp": { - "type": "std::wstring", + "m_visualEffectRemoveName": { + "type": "std::string", "id": 9, - "offset": 248, - "flags": 4194439, + "offset": 232, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2102211316 + "hash": 1541697323 }, - "m_sScript": { + "m_onAddFunctorName": { "type": "std::string", "id": 10, - "offset": 352, - "flags": 135, + "offset": 280, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1846695875 + "hash": 1561843107 }, - "m_Offset": { - "type": "class Point", + "m_onRemoveFunctorName": { + "type": "std::string", "id": 11, - "offset": 192, - "flags": 135, + "offset": 312, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3389835433 + "hash": 2559017864 }, - "m_Scale": { - "type": "class Point", + "m_stackingRule": { + "type": "enum STACKING_RULE", "id": 12, - "offset": 200, - "flags": 135, + "offset": 144, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2547159940 + "hash": 431568889, + "enum_options": { + "STACKING_ALLOWED": 0, + "STACKING_NOSTACK": 1, + "STACKING_REPLACE": 2 + } }, - "m_sTip": { - "type": "std::wstring", + "m_pipsGiven": { + "type": "int", "id": 13, - "offset": 392, - "flags": 4194439, + "offset": 360, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1513510520 + "hash": 1346249167 }, - "m_BubbleList": { - "type": "class WindowBubble", + "m_powerPipsGiven": { + "type": "int", "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2587533771 - }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, + "offset": 364, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3091503757 + "hash": 377908508 } } }, - "424565367": { - "name": "class SharedPointer", + "1667687223": { + "name": "class AvatarOptionBase*", "bases": [ - "BehaviorTemplate", "PropertyClass" ], - "hash": 424565367, + "hash": 1667687223, "properties": { - "m_behaviorName": { + "m_conditionFlags": { "type": "std::string", "id": 0, "offset": 72, "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - }, - "m_sigilZoneInfoList": { - "type": "class SharedPointer", - "id": 1, - "offset": 120, - "flags": 7, "container": "List", "dynamic": true, "singleton": false, - "pointer": true, - "hash": 3999162041 - }, - "m_usedDisposableDungeonTemplateID": { - "type": "unsigned int", - "id": 2, - "offset": 136, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, "pointer": false, - "hash": 828840861 + "hash": 2483653903 } } }, + "2105219330": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 2105219330, + "properties": {} + }, "819903971": { "name": "class ClassInfo", "bases": [ @@ -548702,13 +361826,15 @@ } } }, - "1590635123": { - "name": "class SharedPointer", + "1221326648": { + "name": "class ControlMailEdit*", "bases": [ + "ControlRichEdit", + "ControlEdit", "Window", "PropertyClass" ], - "hash": 1590635123, + "hash": 1221326648, "properties": { "m_sName": { "type": "std::string", @@ -548725,7 +361851,7 @@ "type": "class SharedPointer", "id": 1, "offset": 112, - "flags": 65667, + "flags": 65671, "container": "Vector", "dynamic": true, "singleton": false, @@ -548744,11 +361870,8 @@ "hash": 983582334, "enum_options": { "HAS_BACK": 1, - "SCALE_CHILDREN": 2, "CAN_MOVE": 4, "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "FOCUS_LOCKED": 64, "CAN_FOCUS": 128, "CAN_DOCK": 32, "DO_NOT_CAPTURE_MOUSE": 256, @@ -548760,7 +361883,13 @@ "USE_ALPHA_BOUNDS": 8192, "AUTO_GROW": 16384, "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152 + "AUTO_RESIZE": 49152, + "FORCE_NUMERIC": 16777216, + "FORCE_ALPHA": 268435456, + "FORCE_ALPHANUMERIC": 536870912, + "FORCE_INTEGER": 33554432, + "FORCE_POSITIVE": 67108864, + "FORCE_RANGE": 134217728 } }, "m_Flags": { @@ -548920,2337 +362049,2162 @@ "singleton": false, "pointer": false, "hash": 3091503757 - } - } - }, - "1995304010": { - "name": "class ClientIdleInterceptCinematicAction*", - "bases": [ - "IdleInterceptCinematicAction", - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 1995304010, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, + }, + "m_sText": { + "type": "std::wstring", + "id": 16, + "offset": 584, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 + "hash": 2102642960 }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, + "m_nMaxLength": { + "type": "int", + "id": 17, + "offset": 620, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2285866132 - } - } - }, - "819409525": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 819409525, - "properties": { - "m_questEntries": { - "type": "class QuestEntry*", - "id": 0, - "offset": 72, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1432837330 - } - } - }, - "424717417": { - "name": "class SharedPointer", - "bases": [ - "PvPMatchInfo", - "ArenaMatchInfo", - "PropertyClass" - ], - "hash": 424717417, - "properties": { - "m_matchID": { - "type": "gid", - "id": 0, - "offset": 72, - "flags": 31, + "hash": 1183478416 + }, + "m_bPassword": { + "type": "bool", + "id": 18, + "offset": 624, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1757621298 + "hash": 1604468200 }, - "m_matchNameID": { - "type": "unsigned int", - "id": 1, - "offset": 80, - "flags": 31, + "m_bLog": { + "type": "bool", + "id": 19, + "offset": 625, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1751361288 - }, - "m_teams": { - "type": "class SharedPointer", - "id": 2, - "offset": 96, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1984373608 + "hash": 221687287 }, - "m_matchName": { - "type": "std::string", - "id": 3, - "offset": 112, - "flags": 31, + "m_previousNext": { + "type": "bool", + "id": 20, + "offset": 627, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2061215721 + "hash": 858581071 }, - "m_matchTitle": { - "type": "std::string", - "id": 4, - "offset": 144, - "flags": 31, + "m_nMaxLogSize": { + "type": "int", + "id": 21, + "offset": 712, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2918442218 + "hash": 779573899 }, - "m_matchZoneID": { - "type": "gid", - "id": 5, - "offset": 176, - "flags": 31, + "m_bEditing": { + "type": "bool", + "id": 22, + "offset": 616, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2026205966 + "hash": 1243218553 }, - "m_creatorID": { - "type": "gid", - "id": 6, - "offset": 88, - "flags": 31, + "m_bAllowPaste": { + "type": "bool", + "id": 23, + "offset": 626, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1051766037 + "hash": 1129316721 }, - "m_matchZone": { - "type": "std::string", - "id": 7, - "offset": 184, - "flags": 31, + "m_nLogPosition": { + "type": "int", + "id": 24, + "offset": 704, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2061662244 + "hash": 1120160767 }, - "m_startTime": { + "m_nCursor": { "type": "int", - "id": 8, - "offset": 216, - "flags": 31, + "id": 25, + "offset": 716, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1386968823 + "hash": 1876782150 }, - "m_status": { + "m_nEditBegin": { "type": "int", - "id": 9, - "offset": 220, - "flags": 31, + "id": 26, + "offset": 720, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 960781182 + "hash": 1066592403 }, - "m_friendsOnly": { - "type": "bool", - "id": 10, - "offset": 236, - "flags": 31, + "m_nEditEnd": { + "type": "int", + "id": 27, + "offset": 724, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1420401792 + "hash": 1560905669 }, - "m_tournamentNameID": { - "type": "unsigned int", - "id": 11, - "offset": 224, - "flags": 31, + "m_sSavedText": { + "type": "std::wstring", + "id": 28, + "offset": 728, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1799846440 + "hash": 2197953283 }, - "m_leagueID": { - "type": "unsigned int", - "id": 12, - "offset": 228, - "flags": 31, + "m_fCursorBlinkSpeed": { + "type": "float", + "id": 29, + "offset": 760, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 692361645 + "hash": 2232655228 }, - "m_seasonID": { - "type": "unsigned int", - "id": 13, - "offset": 232, - "flags": 31, + "m_fCursorTimer": { + "type": "float", + "id": 30, + "offset": 764, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 535260643 + "hash": 1929942748 }, - "m_bUpdateLadder": { + "m_bCursorBlink": { "type": "bool", - "id": 14, - "offset": 248, - "flags": 31, + "id": 31, + "offset": 768, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1937525956 + "hash": 683441507 }, - "m_maxPointsPerMatch": { - "type": "unsigned int", - "id": 15, - "offset": 240, - "flags": 31, + "m_fMinRange": { + "type": "double", + "id": 32, + "offset": 776, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1397040900 + "hash": 3079523396 }, - "m_estimatedWeight": { - "type": "float", - "id": 16, - "offset": 244, - "flags": 31, + "m_fMaxRange": { + "type": "double", + "id": 33, + "offset": 784, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1374360127 + "hash": 3876551814 }, - "m_maxELOError": { + "m_nPrecision": { "type": "int", - "id": 17, - "offset": 252, - "flags": 31, + "id": 34, + "offset": 792, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 318998922 + "hash": 1404974196 }, - "m_uniqueMatchID": { - "type": "std::string", - "id": 18, - "offset": 264, - "flags": 31, + "m_bDeleteOnFirstChar": { + "type": "bool", + "id": 35, + "offset": 618, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3291026220 - }, - "m_pvpDuelModifiersTemplates": { - "type": "class SharedPointer", - "id": 19, - "offset": 296, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1193155411 - }, - "m_teamSize": { - "type": "unsigned int", - "id": 20, - "offset": 256, - "flags": 31, + "hash": 902105643 + } + } + }, + "2105004635": { + "name": "class SharedPointer", + "bases": [ + "Window", + "PropertyClass" + ], + "hash": 2105004635, + "properties": { + "m_sName": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2343388751 + "hash": 2306437263 }, - "m_joinQueueRequirements": { - "type": "class SharedPointer", - "id": 21, - "offset": 312, - "flags": 31, - "container": "Static", - "dynamic": false, + "m_Children": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, "singleton": false, "pointer": true, - "hash": 2746080983 + "hash": 2621225959 }, - "m_timeLimitSec": { + "m_Style": { "type": "unsigned int", - "id": 22, - "offset": 328, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 312519798 - }, - "m_useHistoricDiego": { - "type": "bool", - "id": 23, - "offset": 352, - "flags": 31, + "id": 2, + "offset": 152, + "flags": 1048583, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1688842509 - }, - "m_ignoredList": { - "type": "gid", - "id": 24, - "offset": 336, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1850924028 + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "SCALE_CHILDREN": 2, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "FOCUS_LOCKED": 64, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152 + } }, - "m_matchTimer": { - "type": "float", - "id": 25, - "offset": 356, - "flags": 31, + "m_Flags": { + "type": "unsigned int", + "id": 3, + "offset": 156, + "flags": 1048583, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1510935909 + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } }, - "m_bonusTime": { - "type": "int", - "id": 26, - "offset": 360, - "flags": 31, + "m_Window": { + "type": "class Rect", + "id": 4, + "offset": 160, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1757496496 + "hash": 3105139380 }, - "m_passPenalty": { - "type": "int", - "id": 27, - "offset": 364, - "flags": 31, + "m_fTargetAlpha": { + "type": "float", + "id": 5, + "offset": 212, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 982951662 + "hash": 1809129834 }, - "m_yellowTime": { - "type": "int", - "id": 28, - "offset": 368, - "flags": 31, + "m_fDisabledAlpha": { + "type": "float", + "id": 6, + "offset": 216, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1017028741 + "hash": 1389987675 }, - "m_redTime": { - "type": "int", - "id": 29, - "offset": 372, - "flags": 31, + "m_fAlpha": { + "type": "float", + "id": 7, + "offset": 208, + "flags": 65671, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1909556708 + "hash": 482130755 }, - "m_minTurnTime": { - "type": "int", - "id": 30, - "offset": 376, - "flags": 31, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 652524886 - }, - "m_effects": { - "type": "class SharedPointer", - "id": 31, - "offset": 384, - "flags": 31, - "container": "Vector", - "dynamic": true, - "singleton": false, "pointer": true, - "hash": 804962647 - }, - "m_updateBattlePassPoints": { - "type": "bool", - "id": 32, - "offset": 408, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 713306342 - }, - "m_battlePassWinPoints": { - "type": "int", - "id": 33, - "offset": 412, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1252337240 - }, - "m_battlePassLosePoints": { - "type": "int", - "id": 34, - "offset": 416, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1400839869 - }, - "m_numTeams": { - "type": "int", - "id": 35, - "offset": 424, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1601148004 + "hash": 3623628394 }, - "m_pointsForLosingByDefeat": { - "type": "int", - "id": 36, - "offset": 432, - "flags": 31, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 394154926 + "hash": 2102211316 }, - "m_pointsForWinningByDefeat": { - "type": "int", - "id": 37, - "offset": 436, - "flags": 31, + "m_sScript": { + "type": "std::string", + "id": 10, + "offset": 352, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1202223548 + "hash": 1846695875 }, - "m_pointsForWinningByJudgement": { - "type": "int", - "id": 38, - "offset": 440, - "flags": 31, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1978958934 + "hash": 3389835433 }, - "m_pointsForLosingByJudgement": { - "type": "int", - "id": 39, - "offset": 444, - "flags": 31, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 690778376 + "hash": 2547159940 }, - "m_pointsForFleeingMatch": { - "type": "int", - "id": 40, - "offset": 448, - "flags": 31, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 679642949 + "hash": 1513510520 }, - "m_pointsForByeGame": { - "type": "int", - "id": 41, - "offset": 452, - "flags": 31, - "container": "Static", - "dynamic": false, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 729567064 + "hash": 2587533771 }, - "m_scoreMultiplier": { - "type": "float", - "id": 42, - "offset": 428, - "flags": 31, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 545011290 - }, - "m_teamIDToBracketTeamIDList": { - "type": "class TeamGIDToBracketID", - "id": 43, - "offset": 456, + "hash": 3091503757 + } + } + }, + "819409525": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 819409525, + "properties": { + "m_questEntries": { + "type": "class QuestEntry*", + "id": 0, + "offset": 72, "flags": 31, "container": "List", "dynamic": true, "singleton": false, - "pointer": false, - "hash": 1980997052 + "pointer": true, + "hash": 1432837330 } } }, - "1590907781": { - "name": "class HousingBlobObject*", + "1667780860": { + "name": "class ReqHasSpell*", "bases": [ + "Requirement", "PropertyClass" ], - "hash": 1590907781, + "hash": 1667780860, "properties": { - "m_gameObjectTemplateID": { - "type": "unsigned int", + "m_applyNOT": { + "type": "bool", "id": 0, "offset": 72, - "flags": 7, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1154586887, + "hash": 1746328074, "enum_options": { "__DEFAULT": 0 } }, - "m_positionXY": { - "type": "unsigned int", + "m_operator": { + "type": "enum Requirement::Operator", "id": 1, "offset": 76, - "flags": 7, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1263476723, + "hash": 2672792317, "enum_options": { - "__DEFAULT": 0 + "ROP_AND": 0, + "ROP_OR": 1, + "__DEFAULT": "ROP_AND" } }, - "m_positionZ": { - "type": "float", + "m_spellName": { + "type": "std::string", "id": 2, "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 837995846, - "enum_options": { - "__DEFAULT": 0 - } - }, - "m_yaw": { - "type": "unsigned char", - "id": 3, - "offset": 84, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 904654625, - "enum_options": { - "__DEFAULT": 0 - } - }, - "m_extraData1": { - "type": "unsigned int", - "id": 4, - "offset": 88, - "flags": 7, + "flags": 268435487, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 693220060, + "hash": 2688485244, "enum_options": { - "__DEFAULT": 0 + "__BASECLASS": "SpellTemplate" } } } }, - "1996493942": { - "name": "class SharedPointer", + "380600970": { + "name": "class std::list >", + "bases": [], + "hash": 380600970, + "properties": {} + }, + "379646014": { + "name": "class PetBoostPlayerStatEffect*", "bases": [ - "WinAnimMoveToLocationTime", - "WinAnimMoveToLocation", - "WindowAnimation", + "WizStatisticEffect", + "StatisticEffect", + "GameEffectBase", "PropertyClass" ], - "hash": 1996493942, + "hash": 379646014, "properties": { - "m_bUseDeepCopy": { - "type": "bool", + "m_currentTickCount": { + "type": "double", "id": 0, - "offset": 72, - "flags": 135, + "offset": 80, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 433380635 + "hash": 2533274692 }, - "m_targetLocation": { - "type": "class Vector3D", + "m_effectNameID": { + "type": "unsigned int", "id": 1, - "offset": 80, - "flags": 135, + "offset": 96, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2653859938 + "hash": 1204067144 }, - "m_fTimeRemaining": { - "type": "float", + "m_bIsOnPet": { + "type": "bool", "id": 2, - "offset": 100, - "flags": 135, + "offset": 73, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1591443014 + "hash": 522593303 }, - "m_fTimeTotal": { - "type": "float", + "m_originatorID": { + "type": "gid", "id": 3, - "offset": 96, - "flags": 135, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 661225456 + "hash": 1131810019 }, - "m_fEaseAmount": { - "type": "float", + "m_itemSlotID": { + "type": "unsigned int", "id": 4, - "offset": 120, - "flags": 135, + "offset": 112, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1693654127 + "hash": 1895747595 }, - "m_fTotalDistance": { - "type": "float", + "m_internalID": { + "type": "int", "id": 5, - "offset": 124, - "flags": 135, + "offset": 92, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1894338732 + "hash": 1643137924 }, - "m_fSpeed": { - "type": "float", + "m_endTime": { + "type": "unsigned int", "id": 6, - "offset": 128, - "flags": 135, + "offset": 88, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 503609006 + "hash": 716479635 }, - "m_fAccelRateMult": { - "type": "float", + "m_lookupIndex": { + "type": "int", "id": 7, - "offset": 132, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2071467395 - } - } - }, - "820192164": { - "name": "class WinAnimSize", - "bases": [ - "WindowAnimation", - "PropertyClass" - ], - "hash": 820192164, - "properties": { - "m_bUseDeepCopy": { - "type": "bool", - "id": 0, - "offset": 72, - "flags": 135, + "offset": 128, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 433380635 + "hash": 1626623948 }, - "m_size": { - "type": "class Size", - "id": 1, - "offset": 80, - "flags": 135, + "m_damageBonusPercent": { + "type": "float", + "id": 8, + "offset": 136, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 251247159 - } - } - }, - "425925951": { - "name": "class SharedPointer", - "bases": [ - "CinematicAction", - "PropertyClass" - ], - "hash": 425925951, - "properties": { - "m_timeOffset": { + "hash": 623230606 + }, + "m_damageBonusFlat": { "type": "float", - "id": 0, - "offset": 72, - "flags": 7, + "id": 9, + "offset": 180, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 + "hash": 2212039108 }, - "m_releaseInterpolationDuration": { + "m_accuracyBonusPercent": { "type": "float", - "id": 1, - "offset": 80, - "flags": 7, + "id": 10, + "offset": 140, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1807754278, - "enum_options": { - "__DEFAULT": "1.0" - } - } - } - }, - "1996265295": { - "name": "class BuddyEntry*", - "bases": [ - "PropertyClass" - ], - "hash": 1996265295, - "properties": { - "m_name": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, + "hash": 1972336538 + }, + "m_armorPiercingBonusPercent": { + "type": "float", + "id": 11, + "offset": 144, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1717359772 + "hash": 1569912641 }, - "m_characterID": { - "type": "gid", - "id": 1, - "offset": 104, - "flags": 7, + "m_damageReducePercent": { + "type": "float", + "id": 12, + "offset": 148, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 210498386 + "hash": 541736927 }, - "m_gameObjectID": { - "type": "gid", - "id": 2, - "offset": 120, - "flags": 7, + "m_damageReduceFlat": { + "type": "float", + "id": 13, + "offset": 152, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 23229750 + "hash": 684172469 }, - "m_status": { - "type": "unsigned int", - "id": 3, - "offset": 112, - "flags": 1048583, + "m_accuracyReducePercent": { + "type": "float", + "id": 14, + "offset": 156, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1172183633, - "enum_options": { - "PLAYERSTATUS_UNKNOWN": 0, - "PLAYERSTATUS_OFFLINE": 1, - "PLAYERSTATUS_LINKDEAD": 2, - "PLAYERSTATUS_TRANSITION": 3, - "PLAYERSTATUS_ONLINE": 4, - "PLAYERSTATUS_IGNORED": 5 - } - } - } - }, - "1614099046": { - "name": "class SharedPointer", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 1614099046, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, + "hash": 2112559723 + }, + "m_healBonusPercent": { + "type": "float", + "id": 15, + "offset": 160, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3130754092 - } - } - }, - "48724494": { - "name": "class SharedPointer", - "bases": [], - "hash": 48724494, - "properties": {} - }, - "1592021383": { - "name": "enum CursorState", - "bases": [], - "hash": 1592021383, - "properties": {} - }, - "10451313": { - "name": "class BadgeLeaderboardOption", - "bases": [ - "ServiceOptionBase", - "PropertyClass" - ], - "hash": 10451313, - "properties": { - "m_serviceName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, + "hash": 562313577 + }, + "m_healIncBonusPercent": { + "type": "float", + "id": 16, + "offset": 164, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2206028813 + "hash": 2182535587 }, - "m_iconKey": { - "type": "std::string", - "id": 1, - "offset": 168, - "flags": 31, + "m_hitPointBonus": { + "type": "float", + "id": 17, + "offset": 204, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2457138637 + "hash": 880644461 }, - "m_displayKey": { - "type": "std::string", - "id": 2, - "offset": 104, - "flags": 31, + "m_spellChargeBonus": { + "type": "int", + "id": 18, + "offset": 212, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3023276954 + "hash": 2019610507 }, - "m_serviceIndex": { - "type": "unsigned int", - "id": 3, - "offset": 204, - "flags": 31, + "m_powerPipBonusPercent": { + "type": "float", + "id": 19, + "offset": 168, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2103126710 + "hash": 1671446341 }, - "m_forceInteract": { - "type": "bool", - "id": 4, + "m_petActChance": { + "type": "int", + "id": 20, "offset": 200, - "flags": 31, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1705789564 - } - } - }, - "1173239748": { - "name": "class SharedPointer", - "bases": [ - "ServiceOptionBase", - "PropertyClass" - ], - "hash": 1173239748, - "properties": { - "m_serviceName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, + "hash": 237418461 + }, + "m_manaBonus": { + "type": "float", + "id": 21, + "offset": 208, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2206028813 + "hash": 1372708603 }, - "m_iconKey": { - "type": "std::string", - "id": 1, - "offset": 168, - "flags": 31, + "m_expPercent": { + "type": "float", + "id": 22, + "offset": 184, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2457138637 + "hash": 1147850677 }, - "m_displayKey": { - "type": "std::string", - "id": 2, - "offset": 104, - "flags": 31, + "m_goldPercent": { + "type": "float", + "id": 23, + "offset": 188, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3023276954 + "hash": 1095720878 }, - "m_serviceIndex": { - "type": "unsigned int", - "id": 3, - "offset": 204, - "flags": 31, + "m_energyBonus": { + "type": "float", + "id": 24, + "offset": 216, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2103126710 + "hash": 2223158984 }, - "m_forceInteract": { - "type": "bool", - "id": 4, - "offset": 200, - "flags": 31, + "m_criticalHitRating": { + "type": "float", + "id": 25, + "offset": 220, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1705789564 + "hash": 1978690540 }, - "m_underwayText": { - "type": "std::string", - "id": 5, + "m_blockRating": { + "type": "float", + "id": 26, "offset": 224, - "flags": 31, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3006734255 + "hash": 2088486759 }, - "m_questID": { - "type": "gid", - "id": 6, - "offset": 216, - "flags": 31, + "m_accuracyRating": { + "type": "float", + "id": 27, + "offset": 228, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1246549335 - } - } - }, - "1591463513": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1591463513, - "properties": { - "m_actionList": { - "type": "class CombatAction", - "id": 0, - "offset": 72, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1971690676 - } - } - }, - "1172757019": { - "name": "class DdWinAnimMovePlayer", - "bases": [ - "WindowAnimation", - "PropertyClass" - ], - "hash": 1172757019, - "properties": { - "m_bUseDeepCopy": { - "type": "bool", - "id": 0, - "offset": 72, - "flags": 135, + "hash": 165525575 + }, + "m_powerPipRating": { + "type": "float", + "id": 28, + "offset": 232, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 433380635 + "hash": 1355340722 }, - "m_facing": { - "type": "enum DoodleDoug::DdDirection", - "id": 1, - "offset": 80, - "flags": 135, + "m_damageResistanceRating": { + "type": "float", + "id": 29, + "offset": 240, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 591537519 + "hash": 1961377740 }, - "m_direction": { - "type": "enum DoodleDoug::DdDirection", - "id": 2, - "offset": 84, - "flags": 135, + "m_archmastery": { + "type": "float", + "id": 30, + "offset": 244, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1599953256 + "hash": 1963579610 }, - "m_fSpeed": { + "m_archmasteryBonusPercent": { "type": "float", - "id": 3, - "offset": 88, - "flags": 135, + "id": 31, + "offset": 288, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 503609006 + "hash": 1908627154 }, - "m_currentLocation": { - "type": "class Vector3D", - "id": 4, - "offset": 92, - "flags": 135, + "m_balanceMastery": { + "type": "int", + "id": 32, + "offset": 248, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3670997758 + "hash": 149062181 }, - "m_targetLocation": { - "type": "class Vector3D", - "id": 5, - "offset": 104, - "flags": 135, + "m_deathMastery": { + "type": "int", + "id": 33, + "offset": 252, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2653859938 + "hash": 1421218661 }, - "m_myBoard": { - "type": "class DoodleDoug*", - "id": 6, - "offset": 120, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2212758093 - } - } - }, - "16528759": { - "name": "class SharedPointer", - "bases": [ - "PlaySoundCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 16528759, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, + "m_fireMastery": { + "type": "int", + "id": 34, + "offset": 256, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 + "hash": 1431794949 }, - "m_sound": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 131079, - "container": "List", - "dynamic": true, + "m_iceMastery": { + "type": "int", + "id": 35, + "offset": 260, + "flags": 63, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 2307644996 + "hash": 704864240 }, - "m_useClientLocation": { - "type": "bool", - "id": 2, - "offset": 100, - "flags": 7, + "m_lifeMastery": { + "type": "int", + "id": 36, + "offset": 264, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 98585784 + "hash": 2142136447 }, - "m_soundType": { - "type": "enum PlaySoundCinematicAction::SoundType", - "id": 3, - "offset": 96, - "flags": 2097159, + "m_mythMastery": { + "type": "int", + "id": 37, + "offset": 268, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 868075053, - "enum_options": { - "kSigil": 0, - "kGotHit": 1, - "kDeath": 2, - "kChatter": 4, - "__DEFAULT": "kSigil" - } + "hash": 1766317185 }, - "m_streamSound": { - "type": "bool", - "id": 4, - "offset": 101, - "flags": 263, + "m_stormMastery": { + "type": "int", + "id": 38, + "offset": 272, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1693179368 + "hash": 1883988244 }, - "m_playMusic": { - "type": "bool", - "id": 5, - "offset": 102, - "flags": 263, + "m_stunResistancePercent": { + "type": "float", + "id": 39, + "offset": 276, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 552729674 + "hash": 1868382627 }, - "m_fadeDuration": { + "m_fishingLuckBonusPercent": { "type": "float", - "id": 6, - "offset": 104, - "flags": 7, + "id": 40, + "offset": 192, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1402536557 - } - } - }, - "13460654": { - "name": "class AdvPvPEloEntryListWrapper*", - "bases": [ - "PropertyClass" - ], - "hash": 13460654, - "properties": { - "m_entries": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1075986553 - } - } - }, - "1173463435": { - "name": "class HideActorCinematicAction", - "bases": [ - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 1173463435, - "properties": { - "m_timeOffset": { + "hash": 1363349254 + }, + "m_shadowPipBonusPercent": { "type": "float", - "id": 0, - "offset": 72, - "flags": 7, + "id": 41, + "offset": 172, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 + "hash": 1426533310 }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, + "m_wispBonusPercent": { + "type": "float", + "id": 42, + "offset": 196, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2285866132 + "hash": 1304386546 }, - "m_bHide": { - "type": "bool", - "id": 2, - "offset": 120, - "flags": 7, + "m_pipConversionRating": { + "type": "float", + "id": 43, + "offset": 280, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 790850959 + "hash": 246855691 }, - "m_evenWhileDead": { - "type": "bool", - "id": 3, - "offset": 121, - "flags": 7, + "m_shadowPipRating": { + "type": "float", + "id": 44, + "offset": 236, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2100875368 + "hash": 507126123 }, - "m_bMultiRound": { - "type": "bool", - "id": 4, - "offset": 122, - "flags": 263, + "m_petID": { + "type": "gid", + "id": 45, + "offset": 304, + "flags": 24, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1821746440 - } - } - }, - "1592387164": { - "name": "class RegisterActorCinematicAction", - "bases": [ - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 1592387164, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, + "hash": 806009486 + }, + "m_primaryStat1": { + "type": "std::string", + "id": 46, + "offset": 312, + "flags": 24, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 + "hash": 2417808140 }, - "m_actor": { + "m_primaryStat2": { "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, + "id": 47, + "offset": 344, + "flags": 24, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2285866132 + "hash": 2417808141 }, - "m_zoneTag": { + "m_secondaryStat": { "type": "std::string", - "id": 2, - "offset": 120, - "flags": 7, + "id": 48, + "offset": 376, + "flags": 24, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3405382643 + "hash": 3564684959 }, - "m_bStartHidden": { - "type": "bool", - "id": 3, - "offset": 152, - "flags": 7, + "m_secondaryValue": { + "type": "float", + "id": 49, + "offset": 408, + "flags": 24, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1939845615 + "hash": 1728780796 } } }, - "12485992": { - "name": "class SharedPointer", + "1221570826": { + "name": "class ControlRichEdit", "bases": [ - "PlayerStatueBlob", + "ControlEdit", + "Window", "PropertyClass" ], - "hash": 12485992, + "hash": 1221570826, "properties": { - "m_level": { - "type": "int", + "m_sName": { + "type": "std::string", "id": 0, - "offset": 72, - "flags": 31, + "offset": 80, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 801285362 + "hash": 2306437263 }, - "m_school": { - "type": "unsigned int", + "m_Children": { + "type": "class SharedPointer", "id": 1, - "offset": 76, - "flags": 31, - "container": "Static", - "dynamic": false, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 1152268885 + "pointer": true, + "hash": 2621225959 }, - "m_gender": { - "type": "int", + "m_Style": { + "type": "unsigned int", "id": 2, - "offset": 80, - "flags": 31, + "offset": 152, + "flags": 1048583, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 473816879 + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152, + "FORCE_NUMERIC": 16777216, + "FORCE_ALPHA": 268435456, + "FORCE_ALPHANUMERIC": 536870912, + "FORCE_INTEGER": 33554432, + "FORCE_POSITIVE": 67108864, + "FORCE_RANGE": 134217728 + } }, - "m_nameKeys": { + "m_Flags": { "type": "unsigned int", "id": 3, - "offset": 84, - "flags": 31, + "offset": 156, + "flags": 1048583, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1772225898 + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } }, - "m_badge": { - "type": "std::string", + "m_Window": { + "type": "class Rect", "id": 4, - "offset": 88, - "flags": 63, + "offset": 160, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2286962478 + "hash": 3105139380 }, - "m_pCharacterBehavior": { - "type": "class SharedPointer", + "m_fTargetAlpha": { + "type": "float", "id": 5, - "offset": 120, - "flags": 31, + "offset": 212, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2724673923 + "pointer": false, + "hash": 1809129834 }, - "m_pEquipment": { - "type": "class SharedPointer", + "m_fDisabledAlpha": { + "type": "float", "id": 6, - "offset": 136, - "flags": 31, + "offset": 216, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2473540161 + "pointer": false, + "hash": 1389987675 }, - "m_pStats": { - "type": "class SharedPointer", + "m_fAlpha": { + "type": "float", "id": 7, - "offset": 152, - "flags": 31, + "offset": 208, + "flags": 65671, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2212894623 + "pointer": false, + "hash": 482130755 }, - "m_pGameEffects": { - "type": "class SharedPointer", + "m_pWindowStyle": { + "type": "class SharedPointer", "id": 8, - "offset": 168, - "flags": 31, + "offset": 232, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": true, - "hash": 1557857436 + "hash": 3623628394 }, - "m_petTID": { - "type": "unsigned int", + "m_sHelp": { + "type": "std::wstring", "id": 9, - "offset": 200, - "flags": 31, + "offset": 248, + "flags": 4194439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1037635095 + "hash": 2102211316 }, - "m_pPetBehavior": { - "type": "class SharedPointer", + "m_sScript": { + "type": "std::string", "id": 10, - "offset": 208, - "flags": 31, + "offset": 352, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2663493503 + "pointer": false, + "hash": 1846695875 }, - "m_pPetJewels": { - "type": "class SharedPointer", + "m_Offset": { + "type": "class Point", "id": 11, - "offset": 224, - "flags": 31, + "offset": 192, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 733229991 - } - } - }, - "11800387": { - "name": "class InfractionCategory", - "bases": [ - "PropertyClass" - ], - "hash": 11800387, - "properties": { - "m_category": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, + "pointer": false, + "hash": 3389835433 + }, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2682050233 + "hash": 2547159940 }, - "m_events": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 7, - "container": "List", - "dynamic": true, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 716105444 + "pointer": false, + "hash": 1513510520 }, - "m_penalties": { - "type": "class SharedPointer", - "id": 2, - "offset": 128, - "flags": 7, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, "container": "List", "dynamic": true, "singleton": false, - "pointer": true, - "hash": 1631054690 - } - } - }, - "11239862": { - "name": "class SharedPointer", - "bases": [ - "AnnounceRoundCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 11239862, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, + "pointer": false, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 - } - } - }, - "1204857755": { - "name": "class GameEffectTemplate", - "bases": [ - "PropertyClass" - ], - "hash": 1204857755, - "properties": { - "m_effectName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, + "hash": 3091503757 + }, + "m_sText": { + "type": "std::wstring", + "id": 16, + "offset": 584, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2029161513 + "hash": 2102642960 }, - "m_effectCategory": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 7, + "m_nMaxLength": { + "type": "int", + "id": 17, + "offset": 620, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1852673222 + "hash": 1183478416 }, - "m_sortOrder": { - "type": "int", - "id": 2, - "offset": 148, - "flags": 7, + "m_bPassword": { + "type": "bool", + "id": 18, + "offset": 624, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1411218206 + "hash": 1604468200 }, - "m_duration": { - "type": "double", - "id": 3, - "offset": 192, - "flags": 7, + "m_bLog": { + "type": "bool", + "id": 19, + "offset": 625, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2727932435 + "hash": 221687287 }, - "m_stackingCategories": { - "type": "std::string", - "id": 4, - "offset": 160, - "flags": 7, - "container": "List", - "dynamic": true, + "m_previousNext": { + "type": "bool", + "id": 20, + "offset": 627, + "flags": 135, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 1774497525 + "hash": 858581071 }, - "m_isPersistent": { - "type": "bool", - "id": 5, - "offset": 153, - "flags": 7, + "m_nMaxLogSize": { + "type": "int", + "id": 21, + "offset": 712, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 923861920 + "hash": 779573899 }, - "m_bIsOnPet": { + "m_bEditing": { "type": "bool", - "id": 6, - "offset": 154, - "flags": 7, + "id": 22, + "offset": 616, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 522593303 + "hash": 1243218553 }, - "m_isPublic": { + "m_bAllowPaste": { "type": "bool", - "id": 7, - "offset": 152, - "flags": 7, + "id": 23, + "offset": 626, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1728439822 + "hash": 1129316721 }, - "m_visualEffectAddName": { - "type": "std::string", - "id": 8, - "offset": 200, - "flags": 7, + "m_nLogPosition": { + "type": "int", + "id": 24, + "offset": 704, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3382086694 + "hash": 1120160767 }, - "m_visualEffectRemoveName": { - "type": "std::string", - "id": 9, - "offset": 232, - "flags": 7, + "m_nCursor": { + "type": "int", + "id": 25, + "offset": 716, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1541697323 + "hash": 1876782150 }, - "m_onAddFunctorName": { - "type": "std::string", - "id": 10, - "offset": 280, - "flags": 7, + "m_nEditBegin": { + "type": "int", + "id": 26, + "offset": 720, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1561843107 + "hash": 1066592403 }, - "m_onRemoveFunctorName": { - "type": "std::string", - "id": 11, - "offset": 312, - "flags": 7, + "m_nEditEnd": { + "type": "int", + "id": 27, + "offset": 724, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2559017864 + "hash": 1560905669 }, - "m_stackingRule": { - "type": "enum STACKING_RULE", - "id": 12, - "offset": 144, - "flags": 2097159, + "m_sSavedText": { + "type": "std::wstring", + "id": 28, + "offset": 728, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 431568889, - "enum_options": { - "STACKING_ALLOWED": 0, - "STACKING_NOSTACK": 1, - "STACKING_REPLACE": 2 - } - } - } - }, - "1594175174": { - "name": "class TextureRemap*", - "bases": [ - "PropertyClass" - ], - "hash": 1594175174, - "properties": { - "m_remapIndex": { - "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 31, + "hash": 2197953283 + }, + "m_fCursorBlinkSpeed": { + "type": "float", + "id": 29, + "offset": 760, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1234341146 + "hash": 2232655228 }, - "m_textureTemplateID": { - "type": "unsigned int", - "id": 1, - "offset": 76, - "flags": 31, + "m_fCursorTimer": { + "type": "float", + "id": 30, + "offset": 764, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1730653991 - } - } - }, - "1192877320": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1192877320, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, + "hash": 1929942748 + }, + "m_bCursorBlink": { + "type": "bool", + "id": 31, + "offset": 768, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 683441507 + }, + "m_fMinRange": { + "type": "double", + "id": 32, + "offset": 776, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3079523396 + }, + "m_fMaxRange": { + "type": "double", + "id": 33, + "offset": 784, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3876551814 + }, + "m_nPrecision": { + "type": "int", + "id": 34, + "offset": 792, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1404974196 + }, + "m_bDeleteOnFirstChar": { + "type": "bool", + "id": 35, + "offset": 618, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 + "hash": 902105643 } } }, - "1593514008": { - "name": "class InfractionRecord*", + "2105241716": { + "name": "class ClassProjectLeaderboardPlayer", "bases": [ "PropertyClass" ], - "hash": 1593514008, + "hash": 2105241716, "properties": { - "m_categoryID": { - "type": "unsigned int", + "m_playerGID": { + "type": "gid", "id": 0, "offset": 72, - "flags": 55, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1382795736 + "hash": 578537369 }, - "m_eventID": { + "m_packedName": { "type": "unsigned int", "id": 1, - "offset": 76, - "flags": 55, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1031693820 - }, - "m_eventCount": { - "type": "unsigned int", - "id": 2, "offset": 80, - "flags": 55, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1625031576 + "hash": 518911062 }, - "m_expireTime": { + "m_points": { "type": "unsigned int", - "id": 3, + "id": 2, "offset": 84, - "flags": 55, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1836304873 - }, - "m_points": { - "type": "float", - "id": 4, - "offset": 88, - "flags": 55, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 927927476 - }, - "m_metadata": { - "type": "std::string", - "id": 5, - "offset": 96, - "flags": 55, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2383271932 + "hash": 1049128778 } } }, - "1180450861": { - "name": "class ActorDialogBase*", - "bases": [ - "PropertyClass" - ], - "hash": 1180450861, - "properties": {} - }, - "1593415704": { - "name": "class InfractionRecord", + "379231677": { + "name": "class PvPPenaltyMatchBan", "bases": [ + "InfractionPenalty", "PropertyClass" ], - "hash": 1593415704, + "hash": 379231677, "properties": { - "m_categoryID": { + "m_internalID": { "type": "unsigned int", "id": 0, "offset": 72, - "flags": 55, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1382795736 + "hash": 1854540375 }, - "m_eventID": { + "m_categoryID": { "type": "unsigned int", "id": 1, "offset": 76, - "flags": 55, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1031693820 + "hash": 1382795736 }, - "m_eventCount": { - "type": "unsigned int", + "m_removeAtPointValue": { + "type": "float", "id": 2, "offset": 80, - "flags": 55, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1625031576 + "hash": 2112196961 }, "m_expireTime": { "type": "unsigned int", "id": 3, "offset": 84, - "flags": 55, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, "hash": 1836304873 }, - "m_points": { - "type": "float", + "m_duration": { + "type": "unsigned int", "id": 4, "offset": 88, - "flags": 55, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 927927476 + "hash": 1041524755 + } + } + }, + "820192164": { + "name": "class WinAnimSize", + "bases": [ + "WindowAnimation", + "PropertyClass" + ], + "hash": 820192164, + "properties": { + "m_bUseDeepCopy": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 433380635 }, - "m_metadata": { - "type": "std::string", - "id": 5, - "offset": 96, - "flags": 55, + "m_size": { + "type": "class Size", + "id": 1, + "offset": 80, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2383271932 + "hash": 251247159 } } }, - "12243566": { - "name": "class std::vector >", - "bases": [], - "hash": 12243566, - "properties": {} - }, - "1177468303": { - "name": "class RitualObjectBehaviorTemplate", + "1668596303": { + "name": "class SharedPointer", "bases": [ - "BehaviorTemplate", + "EffectListSpellEffect", + "SpellEffect", "PropertyClass" ], - "hash": 1177468303, + "hash": 1668596303, "properties": { - "m_behaviorName": { - "type": "std::string", + "m_effectType": { + "type": "enum SpellEffect::kSpellEffects", "id": 0, "offset": 72, - "flags": 7, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3130754092 + "hash": 2578255295, + "enum_options": { + "kInvalidSpellEffect": 0, + "kDamage": 1, + "kDamageNoCrit": 2, + "kHeal": 3, + "kHealPercent": 4, + "kSetHealPercent": 113, + "kStealHealth": 5, + "kReduceOverTime": 6, + "kDetonateOverTime": 7, + "kPushCharm": 8, + "kStealCharm": 9, + "kPushWard": 10, + "kStealWard": 11, + "kPushOverTime": 12, + "kStealOverTime": 13, + "kRemoveCharm": 14, + "kRemoveWard": 15, + "kRemoveOverTime": 16, + "kRemoveAura": 17, + "kSwapAll": 18, + "kSwapCharm": 19, + "kSwapWard": 20, + "kSwapOverTime": 21, + "kModifyIncomingDamage": 22, + "kModifyIncomingDamageFlat": 119, + "kMaximumIncomingDamage": 23, + "kModifyIncomingHeal": 24, + "kModifyIncomingHealFlat": 118, + "kModifyIncomingDamageType": 25, + "kModifyIncomingArmorPiercing": 26, + "kModifyOutgoingDamage": 27, + "kModifyOutgoingDamageFlat": 121, + "kModifyOutgoingHeal": 28, + "kModifyOutgoingHealFlat": 120, + "kModifyOutgoingDamageType": 29, + "kModifyOutgoingArmorPiercing": 30, + "kModifyOutgoingStealHealth": 31, + "kModifyIncomingStealHealth": 32, + "kBounceNext": 33, + "kBouncePrevious": 34, + "kBounceBack": 35, + "kBounceAll": 36, + "kAbsorbDamage": 37, + "kAbsorbHeal": 38, + "kModifyAccuracy": 39, + "kDispel": 40, + "kConfusion": 41, + "kCloakedCharm": 42, + "kCloakedWard": 43, + "kStunResist": 44, + "kClue": 111, + "kPipConversion": 45, + "kCritBoost": 46, + "kCritBlock": 47, + "kPolymorph": 48, + "kDelayCast": 49, + "kModifyCardCloak": 50, + "kModifyCardDamage": 51, + "kModifyCardAccuracy": 53, + "kModifyCardMutation": 54, + "kModifyCardRank": 55, + "kModifyCardArmorPiercing": 56, + "kSummonCreature": 65, + "kTeleportPlayer": 66, + "kStun": 67, + "kDampen": 68, + "kReshuffle": 69, + "kMindControl": 70, + "kModifyPips": 71, + "kModifyPowerPips": 72, + "kModifyShadowPips": 73, + "kModifyHate": 74, + "kDamageOverTime": 75, + "kHealOverTime": 76, + "kModifyPowerPipChance": 77, + "kModifyRank": 78, + "kStunBlock": 79, + "kRevealCloak": 80, + "kInstantKill": 81, + "kAfterlife": 82, + "kDeferredDamage": 83, + "kDamagePerTotalPipPower": 84, + "kModifyCardHeal": 52, + "kModifyCardCharm": 57, + "kModifyCardWard": 58, + "kModifyCardOutgoingDamage": 59, + "kModifyCardOutgoingAccuracy": 60, + "kModifyCardOutgoingHeal": 61, + "kModifyCardOutgoingArmorPiercing": 62, + "kModifyCardIncomingDamage": 63, + "kModifyCardAbsorbDamage": 64, + "kCloakedWardNoRemove": 86, + "kAddCombatTriggerList": 87, + "kRemoveCombatTriggerList": 88, + "kBacklashDamage": 89, + "kModifyBacklash": 90, + "kIntercept": 91, + "kShadowSelf": 92, + "kShadowCreature": 93, + "kModifyShadowCreatureLevel": 94, + "kSelectShadowCreatureAttackTarget": 95, + "kShadowDecrementTurn": 96, + "kCritBoostSchoolSpecific": 97, + "kSpawnCreature": 98, + "kUnPolymorph": 99, + "kPowerPipConversion": 100, + "kProtectCardBeneficial": 101, + "kProtectCardHarmful": 102, + "kProtectBeneficial": 103, + "kProtectHarmful": 104, + "kDivideDamage": 105, + "kCollectEssence": 106, + "kKillCreature": 107, + "kDispelBlock": 108, + "kConfusionBlock": 109, + "kModifyPipRoundRate": 110, + "kMaxHealthDamage": 112, + "kUntargetable": 114, + "kMakeTargetable": 115, + "kForceTargetable": 116, + "kRemoveStunBlock": 117, + "kExitCombat": 122, + "kSuspendPips": 123, + "kResumePips": 124, + "kAutoPass": 125, + "kStopAutoPass": 126, + "kVanish": 127, + "kStopVanish": 128, + "kMaxHealthHeal": 129, + "kHealByWard": 130, + "kTaunt": 131, + "kPacify": 132, + "kRemoveTargetRestriction": 133, + "kConvertHangingEffect": 134, + "kAddSpellToDeck": 135, + "kAddSpellToHand": 136, + "kModifyIncomingDamageOverTime": 137, + "kModifyIncomingHealOverTime": 138, + "kModifyCardDamagebyRank": 139, + "kPushConvertedCharm": 140, + "kStealConvertedCharm": 141, + "kPushConvertedWard": 142, + "kStealConvertedWard": 143, + "kPushConvertedOverTime": 144, + "kStealConvertedOverTime": 145, + "kRemoveConvertedCharm": 146, + "kRemoveConvertedWard": 147, + "kRemoveConvertedOverTime": 148, + "kModifyOverTimeDuration": 149, + "kModifySchoolPips": 150 + } }, - "m_nifStateList": { - "type": "std::string", + "m_effectParam": { + "type": "int", "id": 1, - "offset": 120, - "flags": 7, - "container": "List", - "dynamic": true, + "offset": 76, + "flags": 31, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 2130407509 + "hash": 357920024 }, - "m_requirementList": { - "type": "class RequirementList*", + "m_disposition": { + "type": "enum SpellEffect::kHangingDisposition", "id": 2, - "offset": 136, - "flags": 7, + "offset": 80, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3581372079 + "pointer": false, + "hash": 1904841031, + "enum_options": { + "kBoth": 0, + "kBeneficial": 1, + "kHarmful": 2 + } }, - "m_activatedResultList": { - "type": "class ResultList*", + "m_sDamageType": { + "type": "std::string", "id": 3, - "offset": 144, + "offset": 88, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3738420568 + "pointer": false, + "hash": 2501054223 }, - "m_questEvent": { - "type": "std::string", + "m_damageType": { + "type": "unsigned int", "id": 4, - "offset": 152, - "flags": 7, + "offset": 84, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1788127695 + "hash": 737882766 }, - "m_singleUse": { - "type": "bool", + "m_pipNum": { + "type": "int", "id": 5, - "offset": 184, + "offset": 128, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2055323234 + "hash": 830827539 }, - "m_removalTime": { - "type": "float", + "m_actNum": { + "type": "int", "id": 6, - "offset": 224, - "flags": 7, + "offset": 132, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1385020188 + "hash": 236824866 }, - "m_lootTable": { - "type": "std::string", + "m_effectTarget": { + "type": "enum SpellEffect::kEffectTarget", "id": 7, - "offset": 192, - "flags": 7, + "offset": 140, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2539512673 + "hash": 2458940523, + "enum_options": { + "kInvalidTarget": 0, + "kSpell": 1, + "kSpecificSpells": 2, + "kGlobal": 3, + "kEnemyTeam": 4, + "kEnemyTeamAllAtOnce": 5, + "kFriendlyTeam": 6, + "kFriendlyTeamAllAtOnce": 7, + "kEnemySingle": 8, + "kFriendlySingle": 9, + "kMinion": 10, + "kFriendlyMinion": 17, + "kEnemyMinion": 18, + "kSelf": 11, + "kAtLeastOneEnemy": 13, + "kPreselectedEnemySingle": 12, + "kMultiTargetEnemy": 14, + "kMultiTargetFriendly": 15, + "kFriendlySingleNotMe": 16 + } }, - "m_useStates": { - "type": "bool", + "m_numRounds": { + "type": "int", "id": 8, - "offset": 228, - "flags": 7, + "offset": 144, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 992523892 + "hash": 1229753829 }, - "m_stateList": { - "type": "std::string", + "m_paramPerRound": { + "type": "int", "id": 9, - "offset": 232, - "flags": 7, - "container": "List", - "dynamic": true, + "offset": 148, + "flags": 31, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 2944863128 + "hash": 683234234 }, - "m_unlockFirst": { - "type": "bool", + "m_healModifier": { + "type": "float", "id": 10, - "offset": 248, + "offset": 152, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1802051527 + "hash": 1317921248, + "enum_options": { + "__DEFAULT": "1.0" + } }, - "m_removedState": { - "type": "std::string", + "m_spellTemplateID": { + "type": "unsigned int", "id": 11, - "offset": 256, - "flags": 7, + "offset": 120, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1831242670 + "hash": 585567702 }, - "m_allowedSchoolsList": { - "type": "std::string", + "m_enchantmentSpellTemplateID": { + "type": "unsigned int", "id": 12, - "offset": 288, - "flags": 7, + "offset": 124, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2565048282 + "hash": 246955115 }, - "m_wrongSchoolResultList": { - "type": "class ResultList*", + "m_act": { + "type": "bool", "id": 13, - "offset": 320, + "offset": 136, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3155773624 - } - } - }, - "1175767843": { - "name": "class CastleMagicBehaviorTemplate*", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 1175767843, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, + "pointer": false, + "hash": 269510283 + }, + "m_cloaked": { + "type": "bool", + "id": 14, + "offset": 157, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3130754092 + "hash": 7349510 }, - "m_castleMagicItemType": { - "type": "enum CastleMagicItemType", - "id": 1, - "offset": 120, - "flags": 2097159, + "m_bypassProtection": { + "type": "bool", + "id": 15, + "offset": 159, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3772531839, - "enum_options": { - "CM_Lever": 0, - "CM_PlayerDetector": 1, - "CM_PressurePlate": 2, - "CM_StartDetector": 3, - "CM_Brazier": 4, - "CM_TextDetector": 5, - "CM_JumpDetector": 6, - "CM_MagicReflector": 7, - "CM_Timer": 8, - "CM_RandomReflector": 9, - "CM_MagicButton": 10, - "CM_Computer": 11, - "CM_FireOrbCreator": 12, - "CM_IceOrbCreator": 13, - "CM_StormOrbCreator": 14, - "CM_FireOrbDetector": 15, - "CM_IceOrbDetector": 16, - "CM_StormOrbDetector": 17, - "CM_Help": 18, - "CM_RoomDetector": 19, - "CM_Counter": 20, - "CM_ItemDetector": 21, - "CM_AnyItemPlayerDetector": 22, - "CM_SequenceReflector": 23, - "CM_FastTimer": 24, - "CM_CantripDetector": 25 - } + "hash": 1657138252 }, - "m_numberOfActions": { + "m_armorPiercingParam": { "type": "int", - "id": 2, - "offset": 124, - "flags": 7, + "id": 16, + "offset": 160, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1161288009 + "hash": 2025530205 }, - "m_actionStringKeys": { - "type": "std::string", - "id": 3, - "offset": 128, - "flags": 7, - "container": "List", - "dynamic": true, + "m_chancePerTarget": { + "type": "int", + "id": 17, + "offset": 164, + "flags": 31, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 2973138892 - } - } - }, - "1173979822": { - "name": "class TreasureCardPosterBehaviorBase", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1173979822, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, + "hash": 845426794 + }, + "m_protected": { + "type": "bool", + "id": 18, + "offset": 168, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 + "hash": 1445655037 }, - "m_spellData": { - "type": "std::string", - "id": 1, - "offset": 128, - "flags": 575, + "m_converted": { + "type": "bool", + "id": 19, + "offset": 169, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2688126101 - } - } - }, - "1593863596": { - "name": "class ShadowPipRule::RoundPercent", - "bases": [ - "PropertyClass" - ], - "hash": 1593863596, - "properties": { - "m_roundNum": { + "hash": 1590428797 + }, + "m_rank": { "type": "int", - "id": 0, - "offset": 72, + "id": 20, + "offset": 208, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1461215570 + "hash": 219803942 }, - "m_percentageChance": { + "m_effectList": { + "type": "class SharedPointer", + "id": 21, + "offset": 224, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 707154804 + }, + "m_initialBacklash": { "type": "int", - "id": 1, - "offset": 76, + "id": 22, + "offset": 240, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 982834938 + "hash": 300794109 } } }, - "13258036": { - "name": "class std::vector >", - "bases": [], - "hash": 13258036, - "properties": {} - }, - "1173951136": { - "name": "class PathObjectTemplate", + "379186832": { + "name": "class ClientSpellbookBehavior*", "bases": [ + "BehaviorInstance", "PropertyClass" ], - "hash": 1173951136, + "hash": 379186832, "properties": { - "m_id": { - "type": "gid", + "m_behaviorTemplateNameID": { + "type": "unsigned int", "id": 0, - "offset": 72, - "flags": 7, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2090569797 + "hash": 223437287 }, - "m_name": { - "type": "std::string", + "m_spellIDList": { + "type": "class SharedPointer", "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1717359772 - }, - "m_nodeIDs": { - "type": "gid", - "id": 2, - "offset": 112, - "flags": 7, + "offset": 128, + "flags": 27, "container": "List", "dynamic": true, "singleton": false, - "pointer": false, - "hash": 1430564382 + "pointer": true, + "hash": 3635357151 } } }, - "1593863404": { - "name": "class ShadowPipRule::RoundPercent*", + "819916259": { + "name": "class ClassInfo*", "bases": [ "PropertyClass" ], - "hash": 1593863404, + "hash": 819916259, "properties": { - "m_roundNum": { - "type": "int", + "m_className": { + "type": "std::string", "id": 0, "offset": 72, "flags": 7, @@ -551258,126 +364212,102 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 1461215570 + "hash": 2220521682 }, - "m_percentageChance": { - "type": "int", + "m_classLevelInfo": { + "type": "class MagicLevelInfo*", "id": 1, - "offset": 76, + "offset": 112, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 982834938 + "pointer": true, + "hash": 3643333981 } } }, - "13229182": { - "name": "class WishlistBehavior*", + "1222804784": { + "name": "class EmbeddedBrowserConfigEntry*", "bases": [ - "BehaviorInstance", "PropertyClass" ], - "hash": 13229182, + "hash": 1222804784, "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", + "m_sName": { + "type": "std::string", "id": 0, - "offset": 104, - "flags": 39, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 + "hash": 2306437263 }, - "m_wishlistData": { + "m_sEmbeddedPage": { "type": "std::string", "id": 1, - "offset": 136, - "flags": 575, + "offset": 112, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2126601580 - } - } - }, - "1173715365": { - "name": "class MadlibArgT,class std::allocator > const >*", - "bases": [ - "MadlibArg", - "PropertyClass" - ], - "hash": 1173715365, - "properties": { - "m_madlibToken": { + "hash": 1709213077 + }, + "m_sExternalPage": { "type": "std::string", - "id": 0, - "offset": 80, - "flags": 31, + "id": 2, + "offset": 144, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3058682373 + "hash": 3459688718 }, - "m_madlibArgument": { + "m_sSteamPage": { "type": "std::string", - "id": 1, - "offset": 112, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2376191783 - } - } - }, - "13327486": { - "name": "class WishlistBehavior", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 13327486, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, + "id": 3, + "offset": 176, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 + "hash": 1924913253 }, - "m_wishlistData": { - "type": "std::string", - "id": 1, - "offset": 136, - "flags": 575, + "m_nFlags": { + "type": "unsigned int", + "id": 4, + "offset": 208, + "flags": 1048583, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2126601580 + "hash": 922328456, + "enum_options": { + "CheckSubscription": 1, + "UpdateCrownsBalance": 2, + "QuietAudio": 4 + } } } }, - "1595304254": { - "name": "class SharedPointer", + "2106942585": { + "name": "class ClientShadowCreatureCameraCutCinematicAction*", "bases": [ + "ShadowCreatureCameraCutCinematicAction", + "ActorCinematicAction", + "CinematicAction", "PropertyClass" ], - "hash": 1595304254, + "hash": 2106942585, "properties": { - "m_rootElement": { - "type": "class HelpChatElement", + "m_timeOffset": { + "type": "float", "id": 0, "offset": 72, "flags": 7, @@ -551385,49 +364315,31 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 2242085258 - } - } - }, - "1175395902": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1175395902, - "properties": { - "m_hatchmakingPetTypesList": { - "type": "unsigned int", - "id": 0, - "offset": 72, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, "flags": 7, - "container": "List", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 1843158182 + "hash": 2285866132 } } }, - "1594871815": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1594871815, - "properties": {} - }, - "1174231616": { - "name": "class SharedPointer", + "1671573378": { + "name": "class SharedPointer", "bases": [ - "ConditionalSpellEffectRequirement", - "Requirement", + "ServiceOptionBase", "PropertyClass" ], - "hash": 1174231616, + "hash": 1671573378, "properties": { - "m_applyNOT": { - "type": "bool", + "m_serviceName": { + "type": "std::string", "id": 0, "offset": 72, "flags": 31, @@ -551435,166 +364347,150 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 1746328074, - "enum_options": { - "__DEFAULT": 0 - } + "hash": 2206028813 }, - "m_operator": { - "type": "enum Requirement::Operator", + "m_iconKey": { + "type": "std::string", "id": 1, - "offset": 76, - "flags": 2097183, + "offset": 168, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2672792317, - "enum_options": { - "ROP_AND": 0, - "ROP_OR": 1, - "__DEFAULT": "ROP_AND" - } + "hash": 2457138637 }, - "m_targetType": { - "type": "enum ConditionalSpellEffectRequirement::RequirementTarget", + "m_displayKey": { + "type": "std::string", "id": 2, - "offset": 80, - "flags": 2097159, + "offset": 104, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2547737902, - "enum_options": { - "RT_Caster": 0, - "RT_Target": 1 - } + "hash": 3023276954 }, - "m_disposition": { - "type": "enum SpellEffect::kHangingDisposition", + "m_serviceIndex": { + "type": "unsigned int", "id": 3, - "offset": 88, - "flags": 2097159, + "offset": 204, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1904841031, - "enum_options": { - "SpellEffect::kBoth": 0, - "SpellEffect::kBeneficial": 1, - "SpellEffect::kHarmful": 2 - } + "hash": 2103126710 }, - "m_minCount": { - "type": "int", + "m_forceInteract": { + "type": "bool", "id": 4, - "offset": 92, + "offset": 200, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1486503815 + "hash": 1705789564 }, - "m_maxCount": { + "m_optionIndex": { "type": "int", "id": 5, - "offset": 96, + "offset": 216, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 136048585 + "hash": 276287019 } } }, - "14292356": { - "name": "class BrowserWindowSettings*", + "1222759553": { + "name": "class LeaderboardOption*", "bases": [ + "ServiceOptionBase", "PropertyClass" ], - "hash": 14292356, + "hash": 1222759553, "properties": { - "m_browserWidth": { - "type": "int", + "m_serviceName": { + "type": "std::string", "id": 0, "offset": 72, - "flags": 7, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1384030174 + "hash": 2206028813 }, - "m_browserHeight": { - "type": "int", + "m_iconKey": { + "type": "std::string", "id": 1, - "offset": 76, - "flags": 7, + "offset": 168, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2128883223 + "hash": 2457138637 }, - "m_windowWidth": { - "type": "int", + "m_displayKey": { + "type": "std::string", "id": 2, - "offset": 80, - "flags": 7, + "offset": 104, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1557707410 + "hash": 3023276954 }, - "m_windowHeight": { - "type": "int", + "m_serviceIndex": { + "type": "unsigned int", "id": 3, - "offset": 84, - "flags": 7, + "offset": 204, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1417781067 + "hash": 2103126710 }, - "m_windowXoff": { - "type": "int", + "m_forceInteract": { + "type": "bool", "id": 4, - "offset": 88, - "flags": 7, + "offset": 200, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1999589413 + "hash": 1705789564 }, - "m_windowYoff": { - "type": "int", + "m_leaderboardType": { + "type": "std::string", "id": 5, - "offset": 92, - "flags": 7, + "offset": 216, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1999625350 + "hash": 2181150930 } } }, - "14291076": { - "name": "class BrowserWindowSettings", + "2106911931": { + "name": "class SharedPointer", "bases": [ "PropertyClass" ], - "hash": 14291076, + "hash": 2106911931, "properties": { - "m_browserWidth": { - "type": "int", + "m_name": { + "type": "std::string", "id": 0, "offset": 72, "flags": 7, @@ -551602,72 +364498,62 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 1384030174 + "hash": 1717359772 }, - "m_browserHeight": { - "type": "int", + "m_loadScreenOverride": { + "type": "std::string", "id": 1, - "offset": 76, + "offset": 104, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 2128883223 + "hash": 1633906299 }, - "m_windowWidth": { - "type": "int", + "m_transInSoundOverride": { + "type": "std::string", "id": 2, - "offset": 80, - "flags": 7, + "offset": 120, + "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1557707410 + "hash": 2697765027 }, - "m_windowHeight": { - "type": "int", + "m_transOutSoundOverride": { + "type": "std::string", "id": 3, - "offset": 84, - "flags": 7, + "offset": 152, + "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1417781067 + "hash": 2103733028 }, - "m_windowXoff": { - "type": "int", + "m_id": { + "type": "unsigned int", "id": 4, - "offset": 88, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1999589413 - }, - "m_windowYoff": { - "type": "int", - "id": 5, - "offset": 92, + "offset": 184, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1999625350 + "hash": 2301988666 } } }, - "1174772918": { - "name": "class SharedPointer", + "1670595781": { + "name": "class ReqPipCount", "bases": [ + "ConditionalSpellEffectRequirement", "Requirement", "PropertyClass" ], - "hash": 1174772918, + "hash": 1670595781, "properties": { "m_applyNOT": { "type": "bool", @@ -551699,110 +364585,85 @@ "__DEFAULT": "ROP_AND" } }, - "m_questName": { - "type": "std::string", + "m_targetType": { + "type": "enum ConditionalSpellEffectRequirement::RequirementTarget", "id": 2, "offset": 80, - "flags": 268435463, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1702112846, + "hash": 2547737902, "enum_options": { - "__BASECLASS": "QuestTemplate" + "RT_Caster": 0, + "RT_Target": 1 } - } - } - }, - "1595636983": { - "name": "class WizItemVendorDataList*", - "bases": [ - "WizItemLocations", - "PropertyClass" - ], - "hash": 1595636983, - "properties": { - "m_itemType": { - "type": "enum WizItemLocations::eItemType", - "id": 0, - "offset": 72, - "flags": 2097183, + }, + "m_minPips": { + "type": "int", + "id": 3, + "offset": 88, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3482173907, - "enum_options": { - "shop": 0, - "quest": 1, - "boss": 2, - "gardening": 3, - "goldChest": 4 - } + "hash": 2062924954 }, - "m_vendors": { - "type": "class SharedPointer", - "id": 1, - "offset": 80, + "m_maxPips": { + "type": "int", + "id": 4, + "offset": 92, "flags": 31, - "container": "List", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1211076136 + "pointer": false, + "hash": 1761701020 } } }, - "1595636215": { - "name": "class WizItemVendorDataList", + "1222542841": { + "name": "class ControlDraw::Line", "bases": [ - "WizItemLocations", "PropertyClass" ], - "hash": 1595636215, + "hash": 1222542841, "properties": { - "m_itemType": { - "type": "enum WizItemLocations::eItemType", + "m_PointData": { + "type": "class Point", "id": 0, "offset": 72, - "flags": 2097183, - "container": "Static", - "dynamic": false, + "flags": 135, + "container": "Vector", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 3482173907, - "enum_options": { - "shop": 0, - "quest": 1, - "boss": 2, - "gardening": 3, - "goldChest": 4 - } + "hash": 2358246150 }, - "m_vendors": { - "type": "class SharedPointer", + "m_Color": { + "type": "class Color", "id": 1, - "offset": 80, - "flags": 31, - "container": "List", - "dynamic": true, + "offset": 96, + "flags": 135, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1211076136 + "pointer": false, + "hash": 1753714077 } } }, - "1175767651": { - "name": "class CastleMagicBehaviorTemplate", + "2105438324": { + "name": "class ClassProjectLeaderboardPlayer*", "bases": [ - "BehaviorTemplate", "PropertyClass" ], - "hash": 1175767651, + "hash": 2105438324, "properties": { - "m_behaviorName": { - "type": "std::string", + "m_playerGID": { + "type": "gid", "id": 0, "offset": 72, "flags": 7, @@ -551810,78 +364671,39 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 3130754092 + "hash": 578537369 }, - "m_castleMagicItemType": { - "type": "enum CastleMagicItemType", + "m_packedName": { + "type": "unsigned int", "id": 1, - "offset": 120, - "flags": 2097159, + "offset": 80, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3772531839, - "enum_options": { - "CM_Lever": 0, - "CM_PlayerDetector": 1, - "CM_PressurePlate": 2, - "CM_StartDetector": 3, - "CM_Brazier": 4, - "CM_TextDetector": 5, - "CM_JumpDetector": 6, - "CM_MagicReflector": 7, - "CM_Timer": 8, - "CM_RandomReflector": 9, - "CM_MagicButton": 10, - "CM_Computer": 11, - "CM_FireOrbCreator": 12, - "CM_IceOrbCreator": 13, - "CM_StormOrbCreator": 14, - "CM_FireOrbDetector": 15, - "CM_IceOrbDetector": 16, - "CM_StormOrbDetector": 17, - "CM_Help": 18, - "CM_RoomDetector": 19, - "CM_Counter": 20, - "CM_ItemDetector": 21, - "CM_AnyItemPlayerDetector": 22, - "CM_SequenceReflector": 23, - "CM_FastTimer": 24, - "CM_CantripDetector": 25 - } + "hash": 518911062 }, - "m_numberOfActions": { - "type": "int", + "m_points": { + "type": "unsigned int", "id": 2, - "offset": 124, + "offset": 84, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1161288009 - }, - "m_actionStringKeys": { - "type": "std::string", - "id": 3, - "offset": 128, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2973138892 + "hash": 1049128778 } } }, - "18268171": { - "name": "class AdvPvPEloBehavior", + "380003423": { + "name": "class PetDerbyObstacleBehavior", "bases": [ "BehaviorInstance", "PropertyClass" ], - "hash": 18268171, + "hash": 380003423, "properties": { "m_behaviorTemplateNameID": { "type": "unsigned int", @@ -551894,95 +364716,38 @@ "pointer": false, "hash": 223437287 }, - "m_loaded": { - "type": "bool", + "m_laneNumber": { + "type": "int", "id": 1, - "offset": 112, - "flags": 27, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 683367036 - }, - "m_entries": { - "type": "class SharedPointer", - "id": 2, - "offset": 120, - "flags": 27, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1075986553 - }, - "m_recordCache": { - "type": "class SharedPointer", - "id": 3, - "offset": 136, + "offset": 184, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 828243474 - } - } - }, - "1595932260": { - "name": "class SharedPointer", - "bases": [ - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 1595932260, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, "pointer": false, - "hash": 2285866132 + "hash": 650028867 }, - "m_newActorName": { - "type": "std::string", + "m_distanceFromStart": { + "type": "int", "id": 2, - "offset": 120, - "flags": 7, + "offset": 188, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2029131039 + "hash": 649349799 } } }, - "17342258": { - "name": "class LeashedPathMovementBehaviorTemplate*", + "823759422": { + "name": "class AnimationSoundData", "bases": [ - "PathMovementBehaviorTemplate", - "BehaviorTemplate", "PropertyClass" ], - "hash": 17342258, + "hash": 823759422, "properties": { - "m_behaviorName": { + "m_animationName": { "type": "std::string", "id": 0, "offset": 72, @@ -551991,311 +364756,142 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 3130754092 + "hash": 3393414044 }, - "m_movementSpeed": { - "type": "float", + "m_soundFileName": { + "type": "std::string", "id": 1, - "offset": 120, + "offset": 104, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 769135219 + "hash": 3058120805 }, - "m_movementScale": { - "type": "float", + "m_introSoundFileName": { + "type": "std::string", "id": 2, - "offset": 124, + "offset": 136, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 768663914 + "hash": 2449081745 }, - "m_canFly": { - "type": "bool", + "m_endSoundFileName": { + "type": "std::string", "id": 3, - "offset": 128, + "offset": 168, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 314980368 + "hash": 2326794300 }, - "m_mountTemplateID": { - "type": "gid", + "m_loop": { + "type": "bool", "id": 4, - "offset": 136, + "offset": 200, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 169688980 + "hash": 222084781 }, - "m_pathID": { - "type": "gid", + "m_innerRadius": { + "type": "float", "id": 5, - "offset": 144, + "offset": 204, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 821494322 - } - } - }, - "17180268": { - "name": "class ClientDerbyMoraleByTerrainEffect*", - "bases": [ - "DerbyMoraleByTerrainEffect", - "DerbyEffect", - "PropertyClass" - ], - "hash": 17180268, - "properties": { - "m_buffType": { - "type": "enum DerbyTalentBuffType", - "id": 0, - "offset": 92, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1149251982, - "enum_options": { - "Buff": 0, - "Debuff": 1, - "Neither": 2 - } - }, - "m_kTarget": { - "type": "enum DerbyTargetType", - "id": 1, - "offset": 96, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1807803351, - "enum_options": { - "kTargetInFront": 0, - "kTargetBehind": 1, - "kTargetFirst": 2, - "kTargetSelf": 3, - "kTargetAll": 4, - "kTargetLast": 5 - } - }, - "m_nDuration": { - "type": "int", - "id": 2, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1110167982 - }, - "m_effectID": { - "type": "unsigned int", - "id": 3, - "offset": 88, - "flags": 24, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2347630439 - }, - "m_imageFilename": { - "type": "std::string", - "id": 4, - "offset": 112, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2813328063 - }, - "m_iconIndex": { - "type": "unsigned int", - "id": 5, - "offset": 144, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1265133262 + "hash": 686816091 }, - "m_soundOnActivate": { - "type": "std::string", + "m_outerRadius": { + "type": "float", "id": 6, - "offset": 152, - "flags": 131103, + "offset": 208, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1956929714 + "hash": 542169294 }, - "m_soundOnTarget": { - "type": "std::string", + "m_volume": { + "type": "float", "id": 7, - "offset": 184, - "flags": 131103, + "offset": 212, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3444214056 + "hash": 1162855023 }, - "m_targetParticleEffect": { - "type": "std::string", + "m_introFadeInTime": { + "type": "float", "id": 8, "offset": 216, - "flags": 131103, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3048234723 + "hash": 677198649 }, - "m_overheadMessage": { - "type": "std::string", + "m_introFadeOutTime": { + "type": "float", "id": 9, - "offset": 248, - "flags": 8388639, + "offset": 220, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1701018190 + "hash": 1748430618 }, - "m_requirements": { - "type": "class RequirementList", - "id": 10, - "offset": 280, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2840988582 - } - } - }, - "1177075005": { - "name": "class SharedPointer", - "bases": [ - "RemoveAuraCinematicAction", - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 1177075005, - "properties": { - "m_timeOffset": { + "m_endFadeInTime": { "type": "float", - "id": 0, - "offset": 72, + "id": 10, + "offset": 224, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 + "hash": 717770180 }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, + "m_endFadeOutTime": { + "type": "float", + "id": 11, + "offset": 228, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2285866132 + "hash": 939807493 } } }, - "17056927": { - "name": "class NonCombatMayCastSpellInfo*", + "1670287641": { + "name": "class ObstacleCourseSpringboardBehaviorTemplate*", "bases": [ - "GameEffectInfo", + "ObstacleCourseObstacleBehaviorTemplate", + "BehaviorTemplate", "PropertyClass" ], - "hash": 17056927, + "hash": 1670287641, "properties": { - "m_effectName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2029161513 - }, - "m_spellName": { + "m_behaviorName": { "type": "std::string", - "id": 1, - "offset": 104, - "flags": 268435463, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2688485244, - "enum_options": { - "__BASECLASS": "SpellTemplate" - } - }, - "m_percentChance": { - "type": "int", - "id": 2, - "offset": 136, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 385662509 - }, - "m_spellDescription": { - "type": "class SharedPointer", - "id": 3, - "offset": 144, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 790341621 - } - } - }, - "1176480631": { - "name": "class SharedPointer", - "bases": [ - "CinematicAction", - "PropertyClass" - ], - "hash": 1176480631, - "properties": { - "m_timeOffset": { - "type": "float", "id": 0, "offset": 72, "flags": 7, @@ -552303,202 +364899,127 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 + "hash": 3130754092 }, - "m_interpDuration": { + "m_penaltyTime": { "type": "float", "id": 1, - "offset": 80, + "offset": 120, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237711951 - } - } - }, - "1601658659": { - "name": "class PetSnackShopOption", - "bases": [ - "ServiceOptionBase", - "PropertyClass" - ], - "hash": 1601658659, - "properties": { - "m_serviceName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2206028813 - }, - "m_iconKey": { - "type": "std::string", - "id": 1, - "offset": 168, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2457138637 + "hash": 2083389507 }, - "m_displayKey": { - "type": "std::string", + "m_rate": { + "type": "float", "id": 2, - "offset": 104, - "flags": 31, + "offset": 124, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3023276954 + "hash": 310005283 }, - "m_serviceIndex": { - "type": "unsigned int", + "m_springboardLength": { + "type": "float", "id": 3, - "offset": 204, - "flags": 31, + "offset": 128, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2103126710 + "hash": 1881375988 }, - "m_forceInteract": { - "type": "bool", + "m_springboardWidth": { + "type": "float", "id": 4, - "offset": 200, - "flags": 31, + "offset": 132, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1705789564 - } - } - }, - "1599252829": { - "name": "class FXBySlotEffectInfo*", - "bases": [ - "GameEffectInfo", - "PropertyClass" - ], - "hash": 1599252829, - "properties": { - "m_effectName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, + "hash": 418044402 + }, + "m_collisionHeight": { + "type": "float", + "id": 5, + "offset": 136, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2029161513 + "hash": 2173366140 }, - "m_bIsOnPet": { - "type": "bool", - "id": 1, - "offset": 104, - "flags": 263, + "m_springboardHitSoundList": { + "type": "class WeightedList", + "id": 6, + "offset": 144, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 522593303 + "hash": 1378022956 } } }, - "1177003820": { - "name": "class SharedPointer", + "821744484": { + "name": "class HousingPetMovementCompressed*", "bases": [ - "Requirement", "PropertyClass" ], - "hash": 1177003820, + "hash": 821744484, "properties": { - "m_applyNOT": { - "type": "bool", + "m_compressedPetMovement": { + "type": "unsigned int", "id": 0, "offset": 72, "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1746328074, - "enum_options": { - "__DEFAULT": 0 - } - }, - "m_operator": { - "type": "enum Requirement::Operator", - "id": 1, - "offset": 76, - "flags": 2097183, - "container": "Static", - "dynamic": false, + "container": "Vector", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 2672792317, - "enum_options": { - "ROP_AND": 0, - "ROP_OR": 1, - "__DEFAULT": "ROP_AND" - } + "hash": 324140950 } } }, - "1598253607": { - "name": "class ClientRegisterPersonaCinematicAction*", + "820502102": { + "name": "class SharedPointer", "bases": [ - "RegisterPersonaCinematicAction", - "CinematicAction", "PropertyClass" ], - "hash": 1598253607, + "hash": 820502102, "properties": { - "m_timeOffset": { - "type": "float", + "m_danceSequenceList": { + "type": "unsigned char", "id": 0, "offset": 72, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 2237098605 - }, - "m_persona": { - "type": "class Persona*", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2350440768 + "hash": 2597302176 } } }, - "1597722248": { - "name": "class SharedPointer", + "1670299929": { + "name": "class ObstacleCourseSpringboardBehaviorTemplate", "bases": [ - "ActorCinematicAction", - "CinematicAction", + "ObstacleCourseObstacleBehaviorTemplate", + "BehaviorTemplate", "PropertyClass" ], - "hash": 1597722248, + "hash": 1670299929, "properties": { - "m_timeOffset": { - "type": "float", + "m_behaviorName": { + "type": "std::string", "id": 0, "offset": 72, "flags": 7, @@ -552506,477 +365027,290 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 + "hash": 3130754092 }, - "m_actor": { - "type": "std::string", + "m_penaltyTime": { + "type": "float", "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - }, - "m_newActorName": { - "type": "std::string", - "id": 2, "offset": 120, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2029131039 - } - } - }, - "17892046": { - "name": "class SigilDynamicTriggerTemplate", - "bases": [ - "DynamicTriggerTemplate", - "GameObjectTemplate", - "CoreTemplate", - "PropertyClass" - ], - "hash": 17892046, - "properties": { - "m_behaviors": { - "type": "class BehaviorTemplate*", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1197808594 + "hash": 2083389507 }, - "m_objectName": { - "type": "std::string", - "id": 1, - "offset": 96, + "m_rate": { + "type": "float", + "id": 2, + "offset": 124, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2154940147 + "hash": 310005283 }, - "m_templateID": { - "type": "unsigned int", - "id": 2, + "m_springboardLength": { + "type": "float", + "id": 3, "offset": 128, - "flags": 16777223, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1286746870 + "hash": 1881375988 }, - "m_visualID": { - "type": "unsigned int", - "id": 3, + "m_springboardWidth": { + "type": "float", + "id": 4, "offset": 132, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1118778894 - }, - "m_adjectiveList": { - "type": "std::string", - "id": 4, - "offset": 248, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 3195213318 + "hash": 418044402 }, - "m_exemptFromAOI": { - "type": "bool", + "m_collisionHeight": { + "type": "float", "id": 5, - "offset": 240, + "offset": 136, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1457879059 + "hash": 2173366140 }, - "m_displayName": { - "type": "std::string", + "m_springboardHitSoundList": { + "type": "class WeightedList", "id": 6, - "offset": 168, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2446900370 - }, - "m_description": { - "type": "std::string", - "id": 7, - "offset": 136, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1649374815 - }, - "m_nObjectType": { - "type": "enum ObjectType", - "id": 8, - "offset": 200, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2118905880, - "enum_options": { - "OT_UNDEFINED": 0, - "OT_PLAYER": 1, - "OT_NPC": 2, - "OT_PROP": 3, - "OT_OBJECT": 4, - "OT_HOUSE": 5, - "OT_KEY": 6, - "OT_OLD_KEY": 7, - "OT_DEED": 8, - "OT_MAIL": 9, - "OT_RECIPE": 17, - "OT_EQUIP_HEAD": 10, - "OT_EQUIP_CHEST": 11, - "OT_EQUIP_LEGS": 12, - "OT_EQUIP_HANDS": 13, - "OT_EQUIP_FINGER": 14, - "OT_EQUIP_FEET": 15, - "OT_EQUIP_EAR": 16, - "OT_BUILDING_BLOCK": 18, - "OT_BUILDING_BLOCK_SOLID": 19, - "OT_GOLF": 20, - "OT_DOOR": 21, - "OT_PET": 22, - "OT_FABRIC": 23, - "OT_WINDOW": 24, - "OT_ROOF": 25, - "OT_HORSE": 26, - "OT_STRUCTURE": 27, - "OT_HOUSING_TEXTURE": 28, - "OT_PLANT": 29 - } - }, - "m_sIcon": { - "type": "std::string", - "id": 9, - "offset": 208, - "flags": 131079, + "offset": 144, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2306259831 + "hash": 1378022956 } } }, - "1597347714": { - "name": "enum LeashedPathNodeType", - "bases": [], - "hash": 1597347714, - "properties": {} - }, - "17424178": { - "name": "class LeashedPathMovementBehaviorTemplate", + "381596374": { + "name": "class SharedPointer", "bases": [ - "PathMovementBehaviorTemplate", - "BehaviorTemplate", "PropertyClass" ], - "hash": 17424178, + "hash": 381596374, "properties": { - "m_behaviorName": { - "type": "std::string", + "m_minLevel": { + "type": "int", "id": 0, - "offset": 72, + "offset": 88, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3130754092 + "hash": 1496818518 }, - "m_movementSpeed": { - "type": "float", + "m_levelValues": { + "type": "class SharedPointer", "id": 1, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 769135219 - }, - "m_movementScale": { - "type": "float", - "id": 2, - "offset": 124, + "offset": 72, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 768663914 - }, - "m_canFly": { - "type": "bool", - "id": 3, - "offset": 128, - "flags": 7, + "pointer": true, + "hash": 3506866422 + } + } + }, + "820388873": { + "name": "class MagicMirrorShopOption*", + "bases": [ + "ServiceOptionBase", + "PropertyClass" + ], + "hash": 820388873, + "properties": { + "m_serviceName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 314980368 + "hash": 2206028813 }, - "m_mountTemplateID": { - "type": "gid", - "id": 4, - "offset": 136, - "flags": 7, + "m_iconKey": { + "type": "std::string", + "id": 1, + "offset": 168, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 169688980 + "hash": 2457138637 }, - "m_pathID": { - "type": "gid", - "id": 5, - "offset": 144, - "flags": 7, + "m_displayKey": { + "type": "std::string", + "id": 2, + "offset": 104, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 821494322 - } - } - }, - "1177303622": { - "name": "class ObstacleCoursePusherBehavior*", - "bases": [ - "ObstacleCourseObstaclePathBase", - "ObstacleCourseObstacleBehavior", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1177303622, - "properties": { - "m_behaviorTemplateNameID": { + "hash": 3023276954 + }, + "m_serviceIndex": { "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, + "id": 3, + "offset": 204, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 - } - } - }, - "1177293382": { - "name": "class ObstacleCoursePusherBehavior", - "bases": [ - "ObstacleCourseObstaclePathBase", - "ObstacleCourseObstacleBehavior", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1177293382, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, + "hash": 2103126710 + }, + "m_forceInteract": { + "type": "bool", + "id": 4, + "offset": 200, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 + "hash": 1705789564 } } }, - "17892238": { - "name": "class SigilDynamicTriggerTemplate*", + "1223396336": { + "name": "class ClientCreateActorCinematicAction*", "bases": [ - "DynamicTriggerTemplate", - "GameObjectTemplate", - "CoreTemplate", + "CreateActorCinematicAction", + "ActorCinematicAction", + "CinematicAction", "PropertyClass" ], - "hash": 17892238, + "hash": 1223396336, "properties": { - "m_behaviors": { - "type": "class BehaviorTemplate*", + "m_timeOffset": { + "type": "float", "id": 0, "offset": 72, "flags": 7, - "container": "Vector", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1197808594 + "pointer": false, + "hash": 2237098605 }, - "m_objectName": { + "m_actor": { "type": "std::string", "id": 1, - "offset": 96, + "offset": 80, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2154940147 + "hash": 2285866132 }, - "m_templateID": { - "type": "unsigned int", + "m_animations": { + "type": "std::string", "id": 2, - "offset": 128, - "flags": 16777223, + "offset": 120, + "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1286746870 + "hash": 3030904078 }, - "m_visualID": { - "type": "unsigned int", + "m_model": { + "type": "std::string", "id": 3, - "offset": 132, - "flags": 7, + "offset": 152, + "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1118778894 + "hash": 2300510668 }, - "m_adjectiveList": { - "type": "std::string", + "m_createOrientation": { + "type": "enum CreateActorCinematicAction::kCreateOrientation", "id": 4, - "offset": 248, - "flags": 7, - "container": "List", - "dynamic": true, + "offset": 184, + "flags": 2097159, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 3195213318 + "hash": 3562324429, + "enum_options": { + "kFaceTarget": 0, + "kFaceSource": 1, + "kSigil": 2, + "kTarget": 3, + "kSource": 4, + "kSigilRight": 5, + "kSigilLeft": 6, + "kFaceTargetTeam": 7 + } }, - "m_exemptFromAOI": { + "m_hidePolymorphFloatyText": { "type": "bool", "id": 5, - "offset": 240, + "offset": 188, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1457879059 + "hash": 942475883 }, - "m_displayName": { - "type": "std::string", + "m_forwardOffset": { + "type": "float", "id": 6, - "offset": 168, - "flags": 8388615, + "offset": 192, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2446900370 + "hash": 1749681459 }, - "m_description": { - "type": "std::string", + "m_absoluteTarget": { + "type": "bool", "id": 7, - "offset": 136, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1649374815 - }, - "m_nObjectType": { - "type": "enum ObjectType", - "id": 8, - "offset": 200, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2118905880, - "enum_options": { - "OT_UNDEFINED": 0, - "OT_PLAYER": 1, - "OT_NPC": 2, - "OT_PROP": 3, - "OT_OBJECT": 4, - "OT_HOUSE": 5, - "OT_KEY": 6, - "OT_OLD_KEY": 7, - "OT_DEED": 8, - "OT_MAIL": 9, - "OT_RECIPE": 17, - "OT_EQUIP_HEAD": 10, - "OT_EQUIP_CHEST": 11, - "OT_EQUIP_LEGS": 12, - "OT_EQUIP_HANDS": 13, - "OT_EQUIP_FINGER": 14, - "OT_EQUIP_FEET": 15, - "OT_EQUIP_EAR": 16, - "OT_BUILDING_BLOCK": 18, - "OT_BUILDING_BLOCK_SOLID": 19, - "OT_GOLF": 20, - "OT_DOOR": 21, - "OT_PET": 22, - "OT_FABRIC": 23, - "OT_WINDOW": 24, - "OT_ROOF": 25, - "OT_HORSE": 26, - "OT_STRUCTURE": 27, - "OT_HOUSING_TEXTURE": 28, - "OT_PLANT": 29 - } - }, - "m_sIcon": { - "type": "std::string", - "id": 9, - "offset": 208, - "flags": 131079, + "offset": 196, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2306259831 + "hash": 1463993657 } } }, - "1598609487": { - "name": "class ClientVisibilityBehavior*", + "2107352090": { + "name": "class SharedPointer", "bases": [ - "VisibilityBehavior", + "FishingBehaviorBase", "BehaviorInstance", "PropertyClass" ], - "hash": 1598609487, + "hash": 2107352090, "properties": { "m_behaviorTemplateNameID": { "type": "unsigned int", @@ -552989,215 +365323,181 @@ "pointer": false, "hash": 223437287 }, - "m_showTo": { - "type": "gid", + "m_caughtFishList": { + "type": "class SharedPointer", "id": 1, "offset": 112, - "flags": 31, + "flags": 1, "container": "List", "dynamic": true, "singleton": false, - "pointer": false, - "hash": 947039004 + "pointer": true, + "hash": 2107365240 }, - "m_hideFrom": { - "type": "gid", + "m_fishHistoryList": { + "type": "class SharedPointer", "id": 2, "offset": 128, - "flags": 31, + "flags": 1, "container": "List", "dynamic": true, "singleton": false, - "pointer": false, - "hash": 642644390 - }, - "m_visible": { - "type": "bool", - "id": 3, - "offset": 144, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 810536225 + "pointer": true, + "hash": 3741999493 } } }, - "1177458063": { - "name": "class RitualObjectBehaviorTemplate*", + "381128066": { + "name": "class ProvideSpellEffect", "bases": [ - "BehaviorTemplate", + "GameEffectBase", "PropertyClass" ], - "hash": 1177458063, + "hash": 381128066, "properties": { - "m_behaviorName": { - "type": "std::string", + "m_currentTickCount": { + "type": "double", "id": 0, - "offset": 72, - "flags": 7, + "offset": 80, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3130754092 + "hash": 2533274692 }, - "m_nifStateList": { - "type": "std::string", + "m_effectNameID": { + "type": "unsigned int", "id": 1, - "offset": 120, - "flags": 7, - "container": "List", - "dynamic": true, + "offset": 96, + "flags": 63, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 2130407509 + "hash": 1204067144 }, - "m_requirementList": { - "type": "class RequirementList*", + "m_bIsOnPet": { + "type": "bool", "id": 2, - "offset": 136, - "flags": 7, + "offset": 73, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3581372079 + "pointer": false, + "hash": 522593303 }, - "m_activatedResultList": { - "type": "class ResultList*", + "m_originatorID": { + "type": "gid", "id": 3, - "offset": 144, - "flags": 7, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3738420568 + "pointer": false, + "hash": 1131810019 }, - "m_questEvent": { - "type": "std::string", + "m_itemSlotID": { + "type": "unsigned int", "id": 4, - "offset": 152, - "flags": 7, + "offset": 112, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1788127695 + "hash": 1895747595 }, - "m_singleUse": { - "type": "bool", + "m_internalID": { + "type": "int", "id": 5, - "offset": 184, - "flags": 7, + "offset": 92, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2055323234 + "hash": 1643137924 }, - "m_removalTime": { - "type": "float", + "m_endTime": { + "type": "unsigned int", "id": 6, - "offset": 224, - "flags": 7, + "offset": 88, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1385020188 + "hash": 716479635 }, - "m_lootTable": { + "m_spellName": { "type": "std::string", "id": 7, - "offset": 192, - "flags": 7, + "offset": 128, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2539512673 + "hash": 2688485244 }, - "m_useStates": { - "type": "bool", + "m_numSpells": { + "type": "int", "id": 8, - "offset": 228, - "flags": 7, + "offset": 160, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 992523892 + "hash": 1269498237 }, - "m_stateList": { + "m_vFX": { "type": "std::string", "id": 9, - "offset": 232, - "flags": 7, - "container": "List", - "dynamic": true, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 2944863128 + "hash": 1764750607 }, - "m_unlockFirst": { + "m_vFXOverride": { "type": "bool", "id": 10, - "offset": 248, - "flags": 7, + "offset": 200, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1802051527 + "hash": 1491092359 }, - "m_removedState": { + "m_sound": { "type": "std::string", "id": 11, - "offset": 256, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1831242670 - }, - "m_allowedSchoolsList": { - "type": "std::string", - "id": 12, - "offset": 288, - "flags": 7, + "offset": 208, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2565048282 - }, - "m_wrongSchoolResultList": { - "type": "class ResultList*", - "id": 13, - "offset": 320, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3155773624 + "hash": 2307644996 } } }, - "1598381699": { - "name": "class SharedPointer", + "1222804794": { + "name": "class EmbeddedBrowserConfigEntry", "bases": [ - "InfractionPenaltyInfo", "PropertyClass" ], - "hash": 1598381699, + "hash": 1222804794, "properties": { - "m_addAtPointValue": { - "type": "float", + "m_sName": { + "type": "std::string", "id": 0, "offset": 72, "flags": 7, @@ -553205,636 +365505,565 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 1071217084 + "hash": 2306437263 }, - "m_removeAtPointValue": { - "type": "float", + "m_sEmbeddedPage": { + "type": "std::string", "id": 1, - "offset": 76, + "offset": 112, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2112196961 + "hash": 1709213077 }, - "m_lifespan": { + "m_sExternalPage": { "type": "std::string", "id": 2, - "offset": 80, + "offset": 144, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3042809453 - } - } - }, - "21413899": { - "name": "class AdvPvPEloBehavior*", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 21413899, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 + "hash": 3459688718 }, - "m_loaded": { - "type": "bool", - "id": 1, - "offset": 112, - "flags": 27, + "m_sSteamPage": { + "type": "std::string", + "id": 3, + "offset": 176, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 683367036 - }, - "m_entries": { - "type": "class SharedPointer", - "id": 2, - "offset": 120, - "flags": 27, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1075986553 + "hash": 1924913253 }, - "m_recordCache": { - "type": "class SharedPointer", - "id": 3, - "offset": 136, - "flags": 31, + "m_nFlags": { + "type": "unsigned int", + "id": 4, + "offset": 208, + "flags": 1048583, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 828243474 + "pointer": false, + "hash": 922328456, + "enum_options": { + "CheckSubscription": 1, + "UpdateCrownsBalance": 2, + "QuietAudio": 4 + } } } }, - "20195762": { - "name": "class SharedPointer", + "1671334357": { + "name": "class SoundAcousticsInfo", "bases": [ - "BehaviorTemplate", + "SoundInfo", + "ClientObjectInfo", + "CoreObjectInfo", "PropertyClass" ], - "hash": 20195762, + "hash": 1671334357, "properties": { - "m_behaviorName": { - "type": "std::string", + "m_templateID.m_full": { + "type": "unsigned __int64", "id": 0, "offset": 72, - "flags": 7, + "flags": 33554439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3130754092 + "hash": 633907631 }, - "m_battlegroundTemplateName": { - "type": "std::string", + "m_nObjectID": { + "type": "unsigned int", "id": 1, - "offset": 120, + "offset": 80, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2598590755 - } - } - }, - "1177927758": { - "name": "class EmojiData*", - "bases": [ - "PropertyClass" - ], - "hash": 1177927758, - "properties": { - "m_name": { - "type": "std::string", - "id": 0, - "offset": 72, + "hash": 748496927 + }, + "m_location": { + "type": "class Vector3D", + "id": 2, + "offset": 84, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1717359772 + "hash": 2239683611 }, - "m_icon": { - "type": "std::string", - "id": 1, - "offset": 104, + "m_orientation": { + "type": "class Vector3D", + "id": 3, + "offset": 96, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1717182340 + "hash": 2344058766 }, - "m_shortcutList": { - "type": "std::string", - "id": 2, - "offset": 136, + "m_fScale": { + "type": "float", + "id": 4, + "offset": 108, "flags": 7, - "container": "List", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 3408488691 + "hash": 503137701 }, - "m_skinTone": { - "type": "unsigned int", - "id": 3, - "offset": 172, + "m_zoneTag": { + "type": "std::string", + "id": 5, + "offset": 152, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2147803096 - } - } - }, - "18831726": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 18831726, - "properties": { - "m_houseTemplateID": { - "type": "unsigned int", - "id": 0, - "offset": 72, + "hash": 3405382643 + }, + "m_startState": { + "type": "std::string", + "id": 6, + "offset": 184, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2326023642 + "hash": 2166880458 }, - "m_structureTemplateID": { - "type": "unsigned int", - "id": 1, - "offset": 76, - "flags": 7, + "m_overrideName": { + "type": "std::string", + "id": 7, + "offset": 120, + "flags": 8388615, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1037379271 + "hash": 1990707228 }, - "m_lotInstanceGID": { - "type": "gid", - "id": 2, - "offset": 80, + "m_globalDynamic": { + "type": "bool", + "id": 8, + "offset": 116, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2010711536 + "hash": 1951691017 }, - "m_structureInstanceGID": { - "type": "gid", - "id": 3, - "offset": 88, + "m_bUndetectable": { + "type": "bool", + "id": 9, + "offset": 216, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2083588818 + "hash": 1907454341 }, - "m_owningCharacterGID": { - "type": "gid", - "id": 4, - "offset": 96, + "m_spawnRequirements": { + "type": "class SharedPointer", + "id": 10, + "offset": 224, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 316234091 - } - } - }, - "1177809922": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1177809922, - "properties": { - "m_leagueType": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, + "pointer": true, + "hash": 2309120870 + }, + "m_loadingType": { + "type": "enum CoreObjectInfo::LoadingType", + "id": 11, + "offset": 112, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3327951024 + "hash": 3522422550, + "enum_options": { + "STATIC_CLIENT_SERVER": 0, + "STATIC_CLIENT": 1, + "STATIC_SERVER": 2, + "DYNAMIC_SERVER": 3 + } }, - "m_startingElo": { - "type": "int", - "id": 1, - "offset": 104, + "m_radius": { + "type": "float", + "id": 12, + "offset": 256, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1459328550 + "hash": 989410271 }, - "m_minElo": { - "type": "int", - "id": 2, - "offset": 108, + "m_exclusive": { + "type": "bool", + "id": 13, + "offset": 260, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 713339390 + "hash": 824383403 }, - "m_ranks": { - "type": "class SharedPointer", - "id": 3, - "offset": 112, + "m_startActive": { + "type": "bool", + "id": 14, + "offset": 261, "flags": 7, - "container": "Vector", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2563941952 - } - } - }, - "1600737653": { - "name": "class ReqIsHatched*", - "bases": [ - "Requirement", - "PropertyClass" - ], - "hash": 1600737653, - "properties": { - "m_applyNOT": { - "type": "bool", - "id": 0, - "offset": 72, - "flags": 31, + "pointer": false, + "hash": 2031339229 + }, + "m_category": { + "type": "enum AudioCategory", + "id": 15, + "offset": 264, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1746328074, + "hash": 2951251982, "enum_options": { - "__DEFAULT": 0 + "AudioCategory_Irrelevent": 0, + "AudioCategory_Accoustic": 1, + "AudioCategory_Noise": 2, + "AudioCategory_Music": 3 } }, - "m_operator": { - "type": "enum Requirement::Operator", - "id": 1, - "offset": 76, - "flags": 2097183, + "m_override": { + "type": "int", + "id": 16, + "offset": 268, + "flags": 1048583, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2672792317, + "hash": 136872410, "enum_options": { - "ROP_AND": 0, - "ROP_OR": 1, - "__DEFAULT": "ROP_AND" + "OVR_RADIUS": 1, + "OVR_CATEGORY": 2, + "OVR_EXCLUSIVE": 4, + "OVR_SIGNATURE": 64, + "OVR_VOLUME": 8, + "OVR_LOOPCOUNT": 16, + "OVR_ACTIVE": 32, + "OVR_PLAYPROG": 128, + "OVR_PRIORITY": 256, + "OVR_PROGTIME": 512, + "OVR_FILTERSET": 1024 } - } - } - }, - "1177768684": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1177768684, - "properties": { - "m_petTalentsTriggeredSpells": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2245729734 - } - } - }, - "1600315479": { - "name": "class ConditionalSpellElement*", - "bases": [ - "PropertyClass" - ], - "hash": 1600315479, - "properties": { - "m_pReqs": { + }, + "m_enableReqs": { "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 31, + "id": 17, + "offset": 272, + "flags": 263, "container": "Static", "dynamic": false, "singleton": false, "pointer": true, - "hash": 2565964996 + "hash": 3158020443 }, - "m_pEffect": { - "type": "class SharedPointer", - "id": 1, - "offset": 88, - "flags": 31, + "m_effect": { + "type": "enum AccousticSignature", + "id": 18, + "offset": 288, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 400541736 + "pointer": false, + "hash": 1284866962, + "enum_options": { + "Generic": 0, + "Padded Cell": 1, + "Room": 2, + "Bath Room": 3, + "Living Room": 4, + "Stone Room": 5, + "Auditorium": 6, + "Concert Hall": 7, + "Cave": 8, + "Arena": 9, + "Hanger": 10, + "Carpeted Hallway": 11, + "Hallway": 12, + "Stone Corridor": 13, + "Alley": 14, + "Forest": 15, + "City": 16, + "Mountains": 17, + "Quarry": 18, + "Plain": 19, + "Parking Lot": 20, + "Sewer Pipe": 21, + "Underwater": 22, + "Drugged": 23, + "Dizzy": 24, + "Psychotic": 25 + } } } }, - "1599709038": { - "name": "class CombatHealthListObj*", + "820503964": { + "name": "class AttenuatedFileList*", "bases": [ "PropertyClass" ], - "hash": 1599709038, + "hash": 820503964, "properties": { - "m_healthList": { - "type": "class ParticipantParameter", + "m_attenuatedFileDescriptionList": { + "type": "class SharedPointer", "id": 0, "offset": 72, "flags": 7, "container": "List", "dynamic": true, "singleton": false, - "pointer": false, - "hash": 2874774642 - }, - "m_duelID.m_full": { - "type": "unsigned __int64", - "id": 1, - "offset": 88, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1024980477 + "pointer": true, + "hash": 395748088 } } }, - "32764539": { - "name": "class EloRatingsTable", + "2108320692": { + "name": "class ZoneInstanceFish", "bases": [ "PropertyClass" ], - "hash": 32764539, + "hash": 2108320692, "properties": { - "m_leagueType": { - "type": "std::string", + "m_zoneNameID": { + "type": "unsigned int", "id": 0, "offset": 72, - "flags": 7, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3327951024 + "hash": 1230021335 }, - "m_startingElo": { - "type": "int", + "m_time": { + "type": "unsigned int", "id": 1, - "offset": 104, - "flags": 7, + "offset": 76, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1459328550 + "hash": 431286940 }, - "m_minElo": { - "type": "int", + "m_buffer": { + "type": "std::string", "id": 2, - "offset": 108, - "flags": 7, + "offset": 80, + "flags": 551, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 713339390 - }, - "m_ranks": { - "type": "class SharedPointer", - "id": 3, - "offset": 112, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2563941952 + "hash": 1794528949 } } }, - "32538927": { - "name": "class SharedPointer", + "382134151": { + "name": "class InteractiveMusicManager", "bases": [ - "DerbyTeleport", - "DerbyEffect", "PropertyClass" ], - "hash": 32538927, + "hash": 382134151, + "properties": {} + }, + "2108017200": { + "name": "class ElixirBenefitEffect*", + "bases": [ + "GameEffectBase", + "PropertyClass" + ], + "hash": 2108017200, "properties": { - "m_buffType": { - "type": "enum DerbyTalentBuffType", + "m_currentTickCount": { + "type": "double", "id": 0, - "offset": 92, - "flags": 2097183, + "offset": 80, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1149251982, - "enum_options": { - "Buff": 0, - "Debuff": 1, - "Neither": 2 - } + "hash": 2533274692 }, - "m_kTarget": { - "type": "enum DerbyTargetType", + "m_effectNameID": { + "type": "unsigned int", "id": 1, "offset": 96, - "flags": 2097159, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1807803351, - "enum_options": { - "kTargetInFront": 0, - "kTargetBehind": 1, - "kTargetFirst": 2, - "kTargetSelf": 3, - "kTargetAll": 4, - "kTargetLast": 5 - } + "hash": 1204067144 }, - "m_nDuration": { - "type": "int", + "m_bIsOnPet": { + "type": "bool", "id": 2, - "offset": 104, + "offset": 73, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1110167982 + "hash": 522593303 }, - "m_effectID": { - "type": "unsigned int", + "m_originatorID": { + "type": "gid", "id": 3, - "offset": 88, - "flags": 24, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2347630439 + "hash": 1131810019 }, - "m_imageFilename": { - "type": "std::string", + "m_itemSlotID": { + "type": "unsigned int", "id": 4, "offset": 112, - "flags": 131103, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2813328063 + "hash": 1895747595 }, - "m_iconIndex": { - "type": "unsigned int", + "m_internalID": { + "type": "int", "id": 5, - "offset": 144, - "flags": 31, + "offset": 92, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1265133262 + "hash": 1643137924 }, - "m_soundOnActivate": { - "type": "std::string", + "m_endTime": { + "type": "unsigned int", "id": 6, - "offset": 152, - "flags": 131103, + "offset": 88, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1956929714 + "hash": 716479635 }, - "m_soundOnTarget": { - "type": "std::string", + "m_flags": { + "type": "unsigned int", "id": 7, - "offset": 184, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3444214056 - }, - "m_targetParticleEffect": { - "type": "std::string", - "id": 8, - "offset": 216, - "flags": 131103, + "offset": 128, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3048234723 - }, - "m_overheadMessage": { - "type": "std::string", - "id": 9, - "offset": 248, - "flags": 8388639, + "hash": 1005801050 + } + } + }, + "1671834112": { + "name": "class MoveBehaviorClient", + "bases": [ + "MoveBehavior", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1671834112, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1701018190 + "hash": 223437287 }, - "m_requirements": { - "type": "class RequirementList", - "id": 10, - "offset": 280, + "m_nFlags": { + "type": "unsigned int", + "id": 1, + "offset": 112, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2840988582 + "hash": 922328456 }, - "m_kTeleportToTarget": { - "type": "enum DerbyTargetType", - "id": 11, - "offset": 376, + "m_nMoveState": { + "type": "enum MoveState", + "id": 2, + "offset": 116, "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3096289769, + "hash": 1430960270, "enum_options": { - "kTargetInFront": 0, - "kTargetBehind": 1, - "kTargetFirst": 2, - "kTargetSelf": 3, - "kTargetAll": 4, - "kTargetLast": 5 + "MS_WALKING": 0, + "MS_RUNNING": 1, + "MS_SWIMMING": 2, + "MS_FLYING": 3, + "MS_JUMPING": 4, + "MS_FALLING": 5 } } } }, - "1177915470": { - "name": "class EmojiData", + "1257145459": { + "name": "class SharedPointer", "bases": [ + "AddAuraCinematicAction", + "ActorCinematicAction", + "CinematicAction", "PropertyClass" ], - "hash": 1177915470, + "hash": 1257145459, "properties": { - "m_name": { - "type": "std::string", + "m_timeOffset": { + "type": "float", "id": 0, "offset": 72, "flags": 7, @@ -553842,123 +366071,136 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 1717359772 + "hash": 2237098605 }, - "m_icon": { + "m_actor": { "type": "std::string", "id": 1, - "offset": 104, + "offset": 80, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1717182340 + "hash": 2285866132 }, - "m_shortcutList": { + "m_effect": { "type": "std::string", "id": 2, - "offset": 136, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 3408488691 - }, - "m_skinTone": { - "type": "unsigned int", - "id": 3, - "offset": 172, + "offset": 120, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2147803096 + "hash": 1894145160 } } }, - "32463714": { - "name": "class PromoPromotionList*", + "2107749374": { + "name": "class EventCurrency2LootInfo", "bases": [ + "LootInfo", + "LootInfoBase", "PropertyClass" ], - "hash": 32463714, + "hash": 2107749374, "properties": { - "m_promoPromotions": { - "type": "class SharedPointer", + "m_lootType": { + "type": "enum LootInfo::LOOT_TYPE", "id": 0, "offset": 72, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1591891442, + "enum_options": { + "LOOT_TYPE_NONE": 0, + "LOOT_TYPE_GOLD": 1, + "LOOT_TYPE_MANA": 2, + "LOOT_TYPE_ITEM": 3, + "LOOT_TYPE_TREASURE_CARD": 4, + "LOOT_TYPE_MAGIC_XP": 5, + "LOOT_TYPE_ADD_SPELL": 6, + "LOOT_TYPE_MAX_HEALTH": 7, + "LOOT_TYPE_MAX_GOLD": 8, + "LOOT_TYPE_MAX_MANA": 9, + "LOOT_TYPE_MAX_POTION": 10, + "LOOT_TYPE_TRAINING_POINTS": 11, + "LOOT_TYPE_RECIPE": 12, + "LOOT_TYPE_CRAFTING_SLOT": 13, + "LOOT_TYPE_REAGENT": 14, + "LOOT_TYPE_PETSNACK": 15, + "LOOT_TYPE_GARDENING_XP": 16, + "LOOT_TYPE_PET_XP": 17, + "LOOT_TYPE_TREASURE_TABLE": 18, + "LOOT_TYPE_ARENA_POINTS": 19, + "LOOT_TYPE_ARENA_BONUS_POINTS": 20, + "LOOT_TYPE_GROUP": 21, + "LOOT_TYPE_FISHING_XP": 22, + "LOOT_TYPE_EVENT_CURRENCY_1": 24, + "LOOT_TYPE_EVENT_CURRENCY_2": 25, + "LOOT_TYPE_PVP_CURRENCY": 26, + "LOOT_TYPE_PVP_CURRENCY_BONUS": 27, + "LOOT_TYPE_PVP_TOURNEY_CURRENCY": 28, + "LOOT_TYPE_PVP_TOURNEY_CURRENCY_BONUS": 29, + "LOOT_TYPE_FURNITURE_ESSENCE": 30 + } + }, + "m_eventCurrency2Amount": { + "type": "int", + "id": 1, + "offset": 80, "flags": 31, - "container": "List", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2231640821 + "pointer": false, + "hash": 89898381 } } }, - "1601234546": { - "name": "class SharedPointer", + "822894460": { + "name": "class QuickSellItemList*", "bases": [ "PropertyClass" ], - "hash": 1601234546, + "hash": 822894460, "properties": { - "m_info": { - "type": "class PassInfo", + "m_quickSellItemList": { + "type": "class SharedPointer", "id": 0, "offset": 72, "flags": 7, "container": "List", "dynamic": true, "singleton": false, - "pointer": false, - "hash": 1338677978 - } - } - }, - "1178922238": { - "name": "class SharedPointer", - "bases": [ - "CinematicAction", - "PropertyClass" - ], - "hash": 1178922238, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 + "pointer": true, + "hash": 2797277851 }, - "m_persona": { - "type": "class Persona*", + "m_sellingCharacterGID": { + "type": "gid", "id": 1, - "offset": 80, + "offset": 88, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2350440768 + "pointer": false, + "hash": 1096175527 } } }, - "1600875047": { - "name": "class ClientRegisterPersonaCinematicAction", + "1671579461": { + "name": "class SharedPointer", "bases": [ - "RegisterPersonaCinematicAction", + "ActorCinematicAction", "CinematicAction", "PropertyClass" ], - "hash": 1600875047, + "hash": 1671579461, "properties": { "m_timeOffset": { "type": "float", @@ -553971,479 +366213,417 @@ "pointer": false, "hash": 2237098605 }, - "m_persona": { - "type": "class Persona*", + "m_actor": { + "type": "std::string", "id": 1, "offset": 80, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2350440768 + "pointer": false, + "hash": 2285866132 } } }, - "32761467": { - "name": "class EloRatingsTable*", + "1238540803": { + "name": "class std::list >", + "bases": [], + "hash": 1238540803, + "properties": {} + }, + "388556399": { + "name": "class BattlegroundPolymorphImprovementOption", "bases": [ + "ServiceOptionBase", "PropertyClass" ], - "hash": 32761467, + "hash": 388556399, "properties": { - "m_leagueType": { + "m_serviceName": { "type": "std::string", "id": 0, "offset": 72, - "flags": 7, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3327951024 + "hash": 2206028813 }, - "m_startingElo": { - "type": "int", + "m_iconKey": { + "type": "std::string", "id": 1, - "offset": 104, - "flags": 7, + "offset": 168, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1459328550 + "hash": 2457138637 }, - "m_minElo": { - "type": "int", + "m_displayKey": { + "type": "std::string", "id": 2, - "offset": 108, - "flags": 7, + "offset": 104, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 713339390 + "hash": 3023276954 }, - "m_ranks": { - "type": "class SharedPointer", + "m_serviceIndex": { + "type": "unsigned int", "id": 3, - "offset": 112, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2563941952 - } - } - }, - "1178790539": { - "name": "class QuestData*", - "bases": [ - "PropertyClass" - ], - "hash": 1178790539, - "properties": { - "m_name": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, + "offset": 204, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1717359772 - } - } - }, - "1178778251": { - "name": "class QuestData", - "bases": [ - "PropertyClass" - ], - "hash": 1178778251, - "properties": { - "m_name": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, + "hash": 2103126710 + }, + "m_forceInteract": { + "type": "bool", + "id": 4, + "offset": 200, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1717359772 + "hash": 1705789564 } } }, - "1600986917": { - "name": "class SharedPointer", + "822224159": { + "name": "class SharedPointer", "bases": [ + "GameEffectBase", "PropertyClass" ], - "hash": 1600986917, + "hash": 822224159, "properties": { - "m_spellCaster": { - "type": "int", + "m_currentTickCount": { + "type": "double", "id": 0, - "offset": 72, - "flags": 7, + "offset": 80, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1306412924 + "hash": 2533274692 }, - "m_spell": { - "type": "class SharedPointer", + "m_effectNameID": { + "type": "unsigned int", "id": 1, "offset": 96, - "flags": 7, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1160380498 + "pointer": false, + "hash": 1204067144 }, - "m_spellHits": { - "type": "char", + "m_bIsOnPet": { + "type": "bool", "id": 2, - "offset": 112, - "flags": 7, + "offset": 73, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1193115340 + "hash": 522593303 }, - "m_effectChosen": { - "type": "unsigned int", + "m_originatorID": { + "type": "gid", "id": 3, - "offset": 212, - "flags": 7, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 781967354 + "hash": 1131810019 }, - "m_interrupt": { - "type": "bool", + "m_itemSlotID": { + "type": "unsigned int", "id": 4, - "offset": 113, - "flags": 7, + "offset": 112, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1419105216 + "hash": 1895747595 }, - "m_sigilSpell": { - "type": "bool", + "m_internalID": { + "type": "int", "id": 5, - "offset": 114, - "flags": 7, + "offset": 92, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1757632683 + "hash": 1643137924 }, - "m_showCast": { - "type": "bool", + "m_endTime": { + "type": "unsigned int", "id": 6, - "offset": 115, - "flags": 7, + "offset": 88, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 456821215 + "hash": 716479635 }, - "m_criticalHitRoll": { - "type": "unsigned char", + "m_triggerName": { + "type": "std::string", "id": 7, - "offset": 116, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2767200825 - }, - "m_stunResistRoll": { - "type": "unsigned char", - "id": 8, - "offset": 117, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2034125421 - }, - "m_blocksCalculated": { - "type": "bool", - "id": 9, - "offset": 152, - "flags": 7, + "offset": 128, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1203964291 - }, - "m_serializedBlocks": { + "hash": 3100183568 + } + } + }, + "1229607021": { + "name": "class PetGeneticsControl", + "bases": [ + "Window", + "PropertyClass" + ], + "hash": 1229607021, + "properties": { + "m_sName": { "type": "std::string", - "id": 10, - "offset": 160, - "flags": 7, + "id": 0, + "offset": 80, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3529268709 + "hash": 2306437263 }, - "m_stringKeyMessage": { - "type": "std::string", - "id": 11, - "offset": 216, - "flags": 7, - "container": "Static", - "dynamic": false, + "m_Children": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 65667, + "container": "Vector", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 2591311648 + "pointer": true, + "hash": 2621225959 }, - "m_soundFileName": { - "type": "std::string", - "id": 12, - "offset": 248, - "flags": 7, + "m_Style": { + "type": "unsigned int", + "id": 2, + "offset": 152, + "flags": 1048583, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3058120805 + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "SCALE_CHILDREN": 2, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "FOCUS_LOCKED": 64, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152 + } }, - "m_durationModifier": { - "type": "float", - "id": 13, - "offset": 280, - "flags": 7, + "m_Flags": { + "type": "unsigned int", + "id": 3, + "offset": 156, + "flags": 1048583, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 753259116 + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } }, - "m_serializedTargetsAffected": { - "type": "std::string", - "id": 14, - "offset": 288, - "flags": 7, + "m_Window": { + "type": "class Rect", + "id": 4, + "offset": 160, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2626745971 - }, - "m_targetSubcircleList": { - "type": "int", - "id": 15, - "offset": 80, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 227779897 + "hash": 3105139380 }, - "m_pipConversionRoll": { - "type": "int", - "id": 16, - "offset": 120, - "flags": 7, + "m_fTargetAlpha": { + "type": "float", + "id": 5, + "offset": 212, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 791010242 - }, - "m_randomSpellEffectPerTargetRolls": { - "type": "int", - "id": 17, - "offset": 128, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 430465634 + "hash": 1809129834 }, - "m_handledRandomSpellPerTarget": { - "type": "bool", - "id": 18, - "offset": 124, - "flags": 7, + "m_fDisabledAlpha": { + "type": "float", + "id": 6, + "offset": 216, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1741636882 + "hash": 1389987675 }, - "m_confusedTarget": { - "type": "bool", - "id": 19, + "m_fAlpha": { + "type": "float", + "id": 7, "offset": 208, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1193542673 - }, - "m_forceSpell": { - "type": "bool", - "id": 20, - "offset": 336, - "flags": 7, + "flags": 65671, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 935804098 + "hash": 482130755 }, - "m_afterDied": { - "type": "bool", - "id": 21, - "offset": 209, - "flags": 7, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1317680827 + "pointer": true, + "hash": 3623628394 }, - "m_delayed": { - "type": "bool", - "id": 22, - "offset": 337, - "flags": 7, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1021327211 + "hash": 2102211316 }, - "m_delayedEnchanted": { - "type": "bool", - "id": 23, - "offset": 338, - "flags": 7, + "m_sScript": { + "type": "std::string", + "id": 10, + "offset": 352, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2083048693 + "hash": 1846695875 }, - "m_petCast": { - "type": "bool", - "id": 24, - "offset": 339, - "flags": 7, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1494940903 + "hash": 3389835433 }, - "m_petCasted": { - "type": "bool", - "id": 25, - "offset": 340, - "flags": 7, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1697247120 + "hash": 2547159940 }, - "m_petCastTarget": { - "type": "int", - "id": 26, - "offset": 344, - "flags": 7, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 317564181 + "hash": 1513510520 }, - "m_CritHitList": { - "type": "class TargetCritHit", - "id": 27, - "offset": 368, - "flags": 7, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, "container": "List", "dynamic": true, "singleton": false, "pointer": false, - "hash": 1448398021 + "hash": 2587533771 }, - "m_xPipCost": { - "type": "unsigned char", - "id": 28, - "offset": 348, - "flags": 7, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2557198122 - } - } - }, - "33622494": { - "name": "class PetTomePetTotalList", - "bases": [ - "PropertyClass" - ], - "hash": 33622494, - "properties": { - "m_petTomePetTotalList": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 449762511 - }, - "m_petTemplateList": { - "type": "unsigned int", - "id": 1, - "offset": 88, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 567776494 + "hash": 3091503757 } } }, - "33497323": { - "name": "class SharedPointer", + "384557736": { + "name": "class SharedPointer", "bases": [ - "ActorCinematicAction", + "ServerSyncCinematicAction", "CinematicAction", "PropertyClass" ], - "hash": 33497323, + "hash": 384557736, "properties": { "m_timeOffset": { "type": "float", @@ -554456,7 +366636,7 @@ "pointer": false, "hash": 2237098605 }, - "m_actor": { + "m_eventToSend": { "type": "std::string", "id": 1, "offset": 80, @@ -554465,115 +366645,40 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 2285866132 - } - } - }, - "1601626199": { - "name": "class ConditionalSpellElement", - "bases": [ - "PropertyClass" - ], - "hash": 1601626199, - "properties": { - "m_pReqs": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2565964996 - }, - "m_pEffect": { - "type": "class SharedPointer", - "id": 1, - "offset": 88, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 400541736 + "hash": 1564059786 } } }, - "1179647209": { - "name": "class PvPCurrencyLootInfo*", + "821754724": { + "name": "class HousingPetMovementCompressed", "bases": [ - "LootInfo", - "LootInfoBase", "PropertyClass" ], - "hash": 1179647209, + "hash": 821754724, "properties": { - "m_lootType": { - "type": "enum LootInfo::LOOT_TYPE", + "m_compressedPetMovement": { + "type": "unsigned int", "id": 0, "offset": 72, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1591891442, - "enum_options": { - "LOOT_TYPE_NONE": 0, - "LOOT_TYPE_GOLD": 1, - "LOOT_TYPE_MANA": 2, - "LOOT_TYPE_ITEM": 3, - "LOOT_TYPE_TREASURE_CARD": 4, - "LOOT_TYPE_MAGIC_XP": 5, - "LOOT_TYPE_ADD_SPELL": 6, - "LOOT_TYPE_MAX_HEALTH": 7, - "LOOT_TYPE_MAX_GOLD": 8, - "LOOT_TYPE_MAX_MANA": 9, - "LOOT_TYPE_MAX_POTION": 10, - "LOOT_TYPE_TRAINING_POINTS": 11, - "LOOT_TYPE_RECIPE": 12, - "LOOT_TYPE_CRAFTING_SLOT": 13, - "LOOT_TYPE_REAGENT": 14, - "LOOT_TYPE_PETSNACK": 15, - "LOOT_TYPE_GARDENING_XP": 16, - "LOOT_TYPE_PET_XP": 17, - "LOOT_TYPE_TREASURE_TABLE": 18, - "LOOT_TYPE_ARENA_POINTS": 19, - "LOOT_TYPE_ARENA_BONUS_POINTS": 20, - "LOOT_TYPE_GROUP": 21, - "LOOT_TYPE_FISHING_XP": 22, - "LOOT_TYPE_EVENT_CURRENCY_1": 24, - "LOOT_TYPE_EVENT_CURRENCY_2": 25, - "LOOT_TYPE_PVP_CURRENCY": 26, - "LOOT_TYPE_PVP_CURRENCY_BONUS": 27, - "LOOT_TYPE_PVP_TOURNEY_CURRENCY": 28, - "LOOT_TYPE_PVP_TOURNEY_CURRENCY_BONUS": 29, - "LOOT_TYPE_FURNITURE_ESSENCE": 30 - } - }, - "m_pvpCurrencyAmount": { - "type": "int", - "id": 1, - "offset": 80, "flags": 31, - "container": "Static", - "dynamic": false, + "container": "Vector", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 649262863 + "hash": 324140950 } } }, - "1294575809": { - "name": "class SharedPointer", + "1225623647": { + "name": "class SharedPointer", "bases": [ + "ServiceOptionBase", "PropertyClass" ], - "hash": 1294575809, + "hash": 1225623647, "properties": { - "m_bIsValidSegmentationData": { - "type": "bool", + "m_serviceName": { + "type": "std::string", "id": 0, "offset": 72, "flags": 31, @@ -554581,184 +366686,107 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 145039017 + "hash": 2206028813 }, - "m_playerLevel": { - "type": "int", + "m_iconKey": { + "type": "std::string", "id": 1, - "offset": 76, + "offset": 168, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 743117695 + "hash": 2457138637 }, - "m_playerSchoolOfFocus": { + "m_displayKey": { "type": "std::string", "id": 2, - "offset": 80, + "offset": 104, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2154520517 + "hash": 3023276954 }, - "m_accountNDaysAged": { - "type": "int", + "m_serviceIndex": { + "type": "unsigned int", "id": 3, - "offset": 112, + "offset": 204, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1683372023 + "hash": 2103126710 }, - "m_accountNDaysSinceLastLogin": { - "type": "int", + "m_forceInteract": { + "type": "bool", "id": 4, - "offset": 116, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1736007845 - }, - "m_accountNDaysSinceLastPurchase": { - "type": "int", - "id": 5, - "offset": 120, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1887348903 - }, - "m_accountNDaysLastCrownsPurchase": { - "type": "int", - "id": 6, - "offset": 124, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1622259729 - }, - "m_accountIsMember": { - "type": "int", - "id": 7, - "offset": 128, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1600243867 - }, - "m_accountIsCSR": { - "type": "int", - "id": 8, - "offset": 132, + "offset": 200, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 230424555 - }, - "m_accountNCrownsSpent": { - "type": "int", - "id": 9, - "offset": 136, - "flags": 31, + "hash": 1705789564 + } + } + }, + "2108222388": { + "name": "class ZoneInstanceFish*", + "bases": [ + "PropertyClass" + ], + "hash": 2108222388, + "properties": { + "m_zoneNameID": { + "type": "unsigned int", + "id": 0, + "offset": 72, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1946996187 + "hash": 1230021335 }, - "m_accountNCrownsInWallet": { - "type": "int", - "id": 10, - "offset": 140, - "flags": 31, + "m_time": { + "type": "unsigned int", + "id": 1, + "offset": 76, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1171814609 - }, - "m_accountNDaysSinceItemPurchased": { - "type": "class SharedPointer", - "id": 11, - "offset": 152, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2517785757 - }, - "m_numOfParticularItemInInventory": { - "type": "class SharedPointer", - "id": 12, - "offset": 168, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 937766887 - }, - "m_numItemsOfCategoryInInventory": { - "type": "class SharedPointer", - "id": 13, - "offset": 184, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1221776137 - }, - "m_playerHasBadge": { - "type": "class SharedPointer", - "id": 14, - "offset": 200, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1707274667 + "hash": 431286940 }, - "m_accountNHighestWorld": { - "type": "int", - "id": 15, - "offset": 144, - "flags": 31, + "m_buffer": { + "type": "std::string", + "id": 2, + "offset": 80, + "flags": 551, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1128631305 + "hash": 1794528949 } } }, - "1240378629": { - "name": "class SharedPointer", + "382768786": { + "name": "class ElixirBehaviorTemplate*", "bases": [ + "TimedItemBehaviorTemplate", + "BehaviorTemplate", "PropertyClass" ], - "hash": 1240378629, + "hash": 382768786, "properties": { - "m_characterGID": { - "type": "gid", + "m_behaviorName": { + "type": "std::string", "id": 0, "offset": 72, "flags": 7, @@ -554766,251 +366794,195 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 501688601 + "hash": 3130754092 }, - "m_packedName": { + "m_expireTime": { "type": "std::string", "id": 1, - "offset": 80, + "offset": 128, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1805208228 + "hash": 3122602039 }, - "m_message": { - "type": "std::string", + "m_timerType": { + "type": "enum TimerType", "id": 2, - "offset": 112, - "flags": 7, + "offset": 120, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3411261376 + "hash": 571744132, + "enum_options": { + "TimerType_Game": 0, + "TimerType_Calendar": 1 + } }, - "m_messageID": { - "type": "unsigned int", + "m_typeList": { + "type": "std::string", "id": 3, - "offset": 144, + "offset": 160, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 924780703 + "hash": 2119049625 }, - "m_sendFilter": { - "type": "unsigned char", + "m_equipParticle": { + "type": "std::string", "id": 4, - "offset": 148, - "flags": 7, + "offset": 176, + "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1518238304 + "hash": 2222557491 }, - "m_messageTime": { - "type": "unsigned int", + "m_unequipParticle": { + "type": "std::string", "id": 5, - "offset": 152, - "flags": 7, + "offset": 208, + "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1742920033 - } - } - }, - "34048784": { - "name": "class std::list >", - "bases": [], - "hash": 34048784, - "properties": {} - }, - "1602167042": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1602167042, - "properties": { - "m_loot": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2139157014 + "hash": 2215431638 }, - "m_goldInfo": { - "type": "class SharedPointer", - "id": 1, - "offset": 88, - "flags": 31, + "m_equipSound": { + "type": "std::string", + "id": 6, + "offset": 240, + "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2077081000 + "pointer": false, + "hash": 2720016552 }, - "m_lootRarityList": { - "type": "class SharedPointer", - "id": 2, - "offset": 104, - "flags": 31, + "m_unequipSound": { + "type": "std::string", + "id": 7, + "offset": 272, + "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3268854573 - } - } - }, - "33877872": { - "name": "class std::list >", - "bases": [], - "hash": 33877872, - "properties": {} - }, - "1182498289": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1182498289, - "properties": {} - }, - "1601931018": { - "name": "class FoodFightGameComponent*", - "bases": [ - "HousingGameInterface", - "PropertyClass" - ], - "hash": 1601931018, - "properties": {} - }, - "1187022372": { - "name": "class SharedPointer", - "bases": [ - "PlayGraphicOnActorAction", - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 1187022372, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, + "pointer": false, + "hash": 1552545835 + }, + "m_equipActionList": { + "type": "class SharedPointer", + "id": 8, + "offset": 304, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 2237098605 + "pointer": true, + "hash": 1314016250 }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, + "m_unequipActionList": { + "type": "class SharedPointer", + "id": 9, + "offset": 320, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 2285866132 + "pointer": true, + "hash": 2143896925 }, - "m_assetName": { - "type": "std::string", - "id": 2, - "offset": 120, + "m_combatEnabled": { + "type": "bool", + "id": 10, + "offset": 336, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1513131580 + "hash": 1399744148 }, - "m_bDontFlipActorYaw": { + "m_PvPEnabled": { "type": "bool", - "id": 3, - "offset": 152, + "id": 11, + "offset": 337, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 632297791 + "hash": 1042852532 } } }, - "1192136481": { - "name": "class TargetCritHit", + "1672816928": { + "name": "class SharedPointer", "bases": [ "PropertyClass" ], - "hash": 1192136481, + "hash": 1672816928, "properties": { - "m_target": { - "type": "int", + "m_battleCardsForSale": { + "type": "class SharedPointer", "id": 0, "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, + "flags": 31, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 977980321 + "pointer": true, + "hash": 2232728892 }, - "m_mult": { - "type": "float", + "m_givenSpells": { + "type": "class SharedPointer", "id": 1, - "offset": 76, - "flags": 7, - "container": "Static", - "dynamic": false, + "offset": 88, + "flags": 31, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 309847129 + "pointer": true, + "hash": 3004531772 }, - "m_blocked": { - "type": "bool", + "m_maxTotalBattleCards": { + "type": "int", "id": 2, - "offset": 80, - "flags": 7, + "offset": 104, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 863437063 + "hash": 142607341 + }, + "m_nextLevelBattleCards": { + "type": "std::string", + "id": 3, + "offset": 112, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2945949819 } } }, - "1601906442": { - "name": "class FoodFightGameComponent", - "bases": [ - "HousingGameInterface", - "PropertyClass" - ], - "hash": 1601906442, - "properties": {} - }, - "1181777421": { - "name": "class MountInteractableOption", + "1224986081": { + "name": "class DailyPvPOption*", "bases": [ - "InteractableOption", "ServiceOptionBase", "PropertyClass" ], - "hash": 1181777421, + "hash": 1224986081, "properties": { "m_serviceName": { "type": "std::string", @@ -555066,28 +367038,15 @@ "singleton": false, "pointer": false, "hash": 1705789564 - }, - "m_optionIndex": { - "type": "int", - "id": 5, - "offset": 216, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 276287019 } } }, - "1180990989": { - "name": "class MountInteractableOption*", + "382445691": { + "name": "class SharedPointer", "bases": [ - "InteractableOption", - "ServiceOptionBase", "PropertyClass" ], - "hash": 1180990989, + "hash": 382445691, "properties": { "m_serviceName": { "type": "std::string", @@ -555143,220 +367102,195 @@ "singleton": false, "pointer": false, "hash": 1705789564 + } + } + }, + "1672665346": { + "name": "class std::vector,class std::allocator > >", + "bases": [], + "hash": 1672665346, + "properties": {} + }, + "1223816892": { + "name": "class BlobRequest", + "bases": [ + "PropertyClass" + ], + "hash": 1223816892, + "properties": { + "m_type": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1717601629 }, - "m_optionIndex": { - "type": "int", - "id": 5, - "offset": 216, - "flags": 31, + "m_associatedGID": { + "type": "gid", + "id": 1, + "offset": 104, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 276287019 + "hash": 148404716 + }, + "m_blobRequestObjectList": { + "type": "class SharedPointer", + "id": 2, + "offset": 112, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 883864802 } } }, - "37091348": { - "name": "class SharedPointer", + "382307413": { + "name": "class LeashOffsetOverride", "bases": [ "PropertyClass" ], - "hash": 37091348, + "hash": 382307413, "properties": { - "m_subscriberOnlyItems": { - "type": "gid", + "m_offsetType": { + "type": "enum LeashOffsetOverride::LeashOffsetType", "id": 0, "offset": 72, - "flags": 31, - "container": "Vector", - "dynamic": true, + "flags": 2097159, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 1721964880 + "hash": 1559902382, + "enum_options": { + "LOT_UNRESTRICTED": 0, + "LOT_RIGHTONLY": 1, + "LOT_LEFTONLY": 2 + } } } }, - "1180594468": { - "name": "class DerbyMoraleByTerrainEffect*", + "822329364": { + "name": "class LevelScaledEffect*", "bases": [ - "DerbyEffect", + "StatisticEffect", + "GameEffectBase", "PropertyClass" ], - "hash": 1180594468, + "hash": 822329364, "properties": { - "m_buffType": { - "type": "enum DerbyTalentBuffType", + "m_currentTickCount": { + "type": "double", "id": 0, - "offset": 92, - "flags": 2097183, + "offset": 80, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1149251982, - "enum_options": { - "Buff": 0, - "Debuff": 1, - "Neither": 2 - } + "hash": 2533274692 }, - "m_kTarget": { - "type": "enum DerbyTargetType", + "m_effectNameID": { + "type": "unsigned int", "id": 1, "offset": 96, - "flags": 2097159, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1807803351, - "enum_options": { - "kTargetInFront": 0, - "kTargetBehind": 1, - "kTargetFirst": 2, - "kTargetSelf": 3, - "kTargetAll": 4, - "kTargetLast": 5 - } + "hash": 1204067144 }, - "m_nDuration": { - "type": "int", + "m_bIsOnPet": { + "type": "bool", "id": 2, - "offset": 104, + "offset": 73, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1110167982 + "hash": 522593303 }, - "m_effectID": { - "type": "unsigned int", + "m_originatorID": { + "type": "gid", "id": 3, - "offset": 88, - "flags": 24, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2347630439 + "hash": 1131810019 }, - "m_imageFilename": { - "type": "std::string", + "m_itemSlotID": { + "type": "unsigned int", "id": 4, "offset": 112, - "flags": 131103, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2813328063 + "hash": 1895747595 }, - "m_iconIndex": { - "type": "unsigned int", + "m_internalID": { + "type": "int", "id": 5, - "offset": 144, - "flags": 31, + "offset": 92, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1265133262 + "hash": 1643137924 }, - "m_soundOnActivate": { - "type": "std::string", + "m_endTime": { + "type": "unsigned int", "id": 6, - "offset": 152, - "flags": 131103, + "offset": 88, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1956929714 + "hash": 716479635 }, - "m_soundOnTarget": { - "type": "std::string", + "m_lookupIndex": { + "type": "int", "id": 7, - "offset": 184, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3444214056 - }, - "m_targetParticleEffect": { - "type": "std::string", - "id": 8, - "offset": 216, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3048234723 - }, - "m_overheadMessage": { - "type": "std::string", - "id": 9, - "offset": 248, - "flags": 8388639, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1701018190 - }, - "m_requirements": { - "type": "class RequirementList", - "id": 10, - "offset": 280, + "offset": 128, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2840988582 - } - } - }, - "34903389": { - "name": "class HousingPaletteBehavior", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 34903389, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 + "hash": 1626623948 } } }, - "1180455981": { - "name": "class ActorDialogBase", - "bases": [ - "PropertyClass" - ], - "hash": 1180455981, + "1223737542": { + "name": "class std::list >", + "bases": [], + "hash": 1223737542, "properties": {} }, - "1602574113": { - "name": "class RitualObjectBehaviorBase*", + "2109119620": { + "name": "class FishingBehavior*", "bases": [ + "FishingBehaviorBase", "BehaviorInstance", "PropertyClass" ], - "hash": 1602574113, + "hash": 2109119620, "properties": { "m_behaviorTemplateNameID": { "type": "unsigned int", @@ -555369,388 +367303,207 @@ "pointer": false, "hash": 223437287 }, - "m_playerList": { - "type": "gid", + "m_caughtFishList": { + "type": "class SharedPointer", "id": 1, "offset": 112, - "flags": 31, + "flags": 1, "container": "List", "dynamic": true, "singleton": false, - "pointer": false, - "hash": 1909774945 + "pointer": true, + "hash": 2107365240 + }, + "m_fishHistoryList": { + "type": "class SharedPointer", + "id": 2, + "offset": 128, + "flags": 1, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 3741999493 } } }, - "37883294": { - "name": "class SharedPointer", + "382241933": { + "name": "class SharedPointer", "bases": [ - "BehaviorTemplate", "PropertyClass" ], - "hash": 37883294, + "hash": 382241933, "properties": { - "m_behaviorName": { - "type": "std::string", + "m_madlibBlocks": { + "type": "class MadlibBlock*", "id": 0, "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - }, - "m_expansions": { - "type": "class SharedPointer", - "id": 1, - "offset": 120, - "flags": 7, + "flags": 31, "container": "List", "dynamic": true, "singleton": false, "pointer": true, - "hash": 3762221063 + "hash": 2554334098 } } }, - "1180594474": { - "name": "class DerbyMoraleByTerrainEffect", + "2108616236": { + "name": "class QuestCompilation*", "bases": [ - "DerbyEffect", "PropertyClass" ], - "hash": 1180594474, + "hash": 2108616236, "properties": { - "m_buffType": { - "type": "enum DerbyTalentBuffType", + "m_prepEntries": { + "type": "class PrepEntry*", "id": 0, - "offset": 92, - "flags": 2097183, - "container": "Static", - "dynamic": false, + "offset": 72, + "flags": 31, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 1149251982, - "enum_options": { - "Buff": 0, - "Debuff": 1, - "Neither": 2 - } + "pointer": true, + "hash": 2230286528 }, - "m_kTarget": { - "type": "enum DerbyTargetType", + "m_underwayEntries": { + "type": "class UnderwayEntry*", "id": 1, - "offset": 96, - "flags": 2097159, - "container": "Static", - "dynamic": false, + "offset": 88, + "flags": 31, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 1807803351, - "enum_options": { - "kTargetInFront": 0, - "kTargetBehind": 1, - "kTargetFirst": 2, - "kTargetSelf": 3, - "kTargetAll": 4, - "kTargetLast": 5 - } + "pointer": true, + "hash": 1490882790 }, - "m_nDuration": { - "type": "int", + "m_availableCompleteEntries": { + "type": "class AvailableCompleteEntry*", "id": 2, "offset": 104, "flags": 31, - "container": "Static", - "dynamic": false, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 1110167982 + "pointer": true, + "hash": 2930050163 }, - "m_effectID": { - "type": "unsigned int", + "m_availableQuestEntries": { + "type": "class AvailableQuestEntry*", "id": 3, - "offset": 88, - "flags": 24, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2347630439 - }, - "m_imageFilename": { - "type": "std::string", - "id": 4, - "offset": 112, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2813328063 - }, - "m_iconIndex": { - "type": "unsigned int", - "id": 5, - "offset": 144, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1265133262 - }, - "m_soundOnActivate": { - "type": "std::string", - "id": 6, - "offset": 152, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1956929714 - }, - "m_soundOnTarget": { - "type": "std::string", - "id": 7, - "offset": 184, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3444214056 - }, - "m_targetParticleEffect": { - "type": "std::string", - "id": 8, - "offset": 216, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3048234723 - }, - "m_overheadMessage": { - "type": "std::string", - "id": 9, - "offset": 248, - "flags": 8388639, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1701018190 - }, - "m_requirements": { - "type": "class RequirementList", - "id": 10, - "offset": 280, + "offset": 120, "flags": 31, - "container": "Static", - "dynamic": false, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 2840988582 + "pointer": true, + "hash": 729081883 } } }, - "1608379321": { - "name": "class MatchActorResult*", + "1672933251": { + "name": "class PipConversionValues*", "bases": [ "PropertyClass" ], - "hash": 1608379321, + "hash": 1672933251, "properties": { - "m_pActor": { - "type": "class SharedPointer", + "m_capValue": { + "type": "float", "id": 0, - "offset": 72, - "flags": 31, + "offset": 80, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1115051967 + "pointer": false, + "hash": 1100002568 }, - "m_place": { - "type": "int", + "m_scalarBase": { + "type": "float", "id": 1, - "offset": 88, - "flags": 31, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 806257663 + "hash": 2028329704 }, - "m_ratingGained": { - "type": "int", + "m_scalingFactor": { + "type": "float", "id": 2, - "offset": 92, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1426436071 - }, - "m_arenaPoints": { - "type": "int", - "id": 3, - "offset": 96, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 511478910 - }, - "m_pvpCurrency": { - "type": "int", - "id": 4, - "offset": 100, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 611304283 - }, - "m_pvpTourneyCurrency": { - "type": "int", - "id": 5, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1184787505 - }, - "m_gold": { - "type": "int", - "id": 6, - "offset": 108, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 219423808 - }, - "m_gameResult": { - "type": "unsigned char", - "id": 7, - "offset": 112, - "flags": 31, + "offset": 76, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1417654793 + "hash": 1636384119 } } }, - "37594247": { - "name": "class ReqHasEntry", + "2108452396": { + "name": "class QuestCompilation", "bases": [ - "Requirement", "PropertyClass" ], - "hash": 37594247, + "hash": 2108452396, "properties": { - "m_applyNOT": { - "type": "bool", + "m_prepEntries": { + "type": "class PrepEntry*", "id": 0, "offset": 72, "flags": 31, - "container": "Static", - "dynamic": false, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 1746328074, - "enum_options": { - "__DEFAULT": 0 - } + "pointer": true, + "hash": 2230286528 }, - "m_operator": { - "type": "enum Requirement::Operator", + "m_underwayEntries": { + "type": "class UnderwayEntry*", "id": 1, - "offset": 76, - "flags": 2097183, - "container": "Static", - "dynamic": false, + "offset": 88, + "flags": 31, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 2672792317, - "enum_options": { - "ROP_AND": 0, - "ROP_OR": 1, - "__DEFAULT": "ROP_AND" - } + "pointer": true, + "hash": 1490882790 }, - "m_entryName": { - "type": "std::string", + "m_availableCompleteEntries": { + "type": "class AvailableCompleteEntry*", "id": 2, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, + "offset": 104, + "flags": 31, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 2055270734 + "pointer": true, + "hash": 2930050163 }, - "m_displayName": { - "type": "std::string", + "m_availableQuestEntries": { + "type": "class AvailableQuestEntry*", "id": 3, - "offset": 112, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2446900370 - }, - "m_isQuestRegistry": { - "type": "bool", - "id": 4, - "offset": 144, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1388902362 - }, - "m_questName": { - "type": "std::string", - "id": 5, - "offset": 152, - "flags": 268435463, - "container": "Static", - "dynamic": false, + "offset": 120, + "flags": 31, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 1702112846, - "enum_options": { - "__BASECLASS": "QuestTemplate" - } + "pointer": true, + "hash": 729081883 } } }, - "1605019892": { - "name": "class SharedPointer", + "823257584": { + "name": "class SharedPointer", "bases": [ "PropertyClass" ], - "hash": 1605019892, + "hash": 823257584, "properties": { - "m_characterGID": { - "type": "gid", + "m_sGender": { + "type": "std::string", "id": 0, "offset": 72, "flags": 7, @@ -555758,944 +367511,1169 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 501688601 + "hash": 3526777091 }, - "m_lastLoginTime": { - "type": "unsigned int", + "m_sBodySource": { + "type": "std::string", "id": 1, - "offset": 80, - "flags": 7, + "offset": 104, + "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1758221801 + "hash": 2802913933 }, - "m_partyJoinTime": { - "type": "unsigned int", + "m_sSkeletonSource": { + "type": "std::string", "id": 2, - "offset": 84, - "flags": 7, + "offset": 136, + "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1561970012 + "hash": 1545150788 }, - "m_packedName": { - "type": "std::string", + "m_idleAnimation": { + "type": "int", "id": 3, - "offset": 88, + "offset": 168, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1805208228 + "hash": 1402787576 }, - "m_level": { - "type": "unsigned int", + "m_headElementList": { + "type": "class CharacterElement*", "id": 4, - "offset": 120, + "offset": 176, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "Vector", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 1012687813 + "pointer": true, + "hash": 568589744 }, - "m_school": { - "type": "unsigned int", + "m_hatElementList": { + "type": "class CharacterElement*", "id": 5, - "offset": 124, + "offset": 200, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "Vector", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 1152268885 + "pointer": true, + "hash": 2416614427 }, - "m_previousLoginTime": { - "type": "unsigned int", + "m_hairElementList": { + "type": "class CharacterElement*", "id": 6, - "offset": 128, + "offset": 224, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "Vector", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 1473612434 + "pointer": true, + "hash": 1563065986 }, - "m_zonePath": { - "type": "std::string", + "m_torsoElementList": { + "type": "class CharacterElement*", "id": 7, - "offset": 136, + "offset": 248, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "Vector", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 2171239844 + "pointer": true, + "hash": 2307446133 }, - "m_flags": { - "type": "unsigned char", + "m_feetElementList": { + "type": "class CharacterElement*", "id": 8, - "offset": 168, + "offset": 272, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "Vector", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 1431998045 + "pointer": true, + "hash": 671555138 }, - "m_provisionalTime": { - "type": "unsigned int", + "m_hairTextureList": { + "type": "class CharacterElement*", "id": 9, - "offset": 172, + "offset": 296, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "Vector", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 394820722 + "pointer": true, + "hash": 2218875305 }, - "m_permissions": { - "type": "unsigned int", + "m_torsoTextureList": { + "type": "class CharacterElement*", "id": 10, - "offset": 176, + "offset": 320, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "Vector", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 2127187241 + "pointer": true, + "hash": 815771804 }, - "m_accountGID": { - "type": "gid", + "m_torsoDecalList": { + "type": "class CharacterElement*", "id": 11, - "offset": 184, + "offset": 344, "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 414395289 - } - } - }, - "1604359739": { - "name": "class HousingSigilBehavior", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1604359739, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, + "container": "Vector", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 223437287 - } - } - }, - "1181658755": { - "name": "class DdWinAnimMoveDiggingMob*", - "bases": [ - "DdWinAnimMoveMob", - "WinAnimMoveToLocationSpeed", - "WinAnimMoveToLocation", - "WindowAnimation", - "PropertyClass" - ], - "hash": 1181658755, - "properties": { - "m_bUseDeepCopy": { - "type": "bool", - "id": 0, - "offset": 72, - "flags": 135, - "container": "Static", - "dynamic": false, + "pointer": true, + "hash": 808442148 + }, + "m_skinTextureList": { + "type": "class CharacterElement*", + "id": 12, + "offset": 368, + "flags": 7, + "container": "Vector", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 433380635 + "pointer": true, + "hash": 2500320186 }, - "m_targetLocation": { - "type": "class Vector3D", - "id": 1, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, + "m_skinDecalList": { + "type": "class CharacterElement*", + "id": 13, + "offset": 392, + "flags": 7, + "container": "Vector", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 2653859938 + "pointer": true, + "hash": 2545329346 }, - "m_fSpeed": { - "type": "float", - "id": 2, - "offset": 96, - "flags": 135, - "container": "Static", - "dynamic": false, + "m_hatTextureList": { + "type": "class CharacterElement*", + "id": 14, + "offset": 416, + "flags": 7, + "container": "Vector", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 503609006 + "pointer": true, + "hash": 924940098 }, - "m_facing": { - "type": "enum DoodleDoug::DdDirection", - "id": 3, - "offset": 112, - "flags": 135, - "container": "Static", - "dynamic": false, + "m_hatDecalList": { + "type": "class CharacterElement*", + "id": 15, + "offset": 440, + "flags": 7, + "container": "Vector", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 591537519 + "pointer": true, + "hash": 1780727370 }, - "m_cameFrom": { - "type": "enum DoodleDoug::DdDirection", - "id": 4, - "offset": 116, - "flags": 135, - "container": "Static", - "dynamic": false, + "m_feetTextureList": { + "type": "class CharacterElement*", + "id": 16, + "offset": 464, + "flags": 7, + "container": "Vector", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 1071209393 + "pointer": true, + "hash": 1327364457 }, - "m_nextWaypoint": { - "type": "class Point", - "id": 5, - "offset": 120, - "flags": 135, - "container": "Static", - "dynamic": false, + "m_feetDecalList": { + "type": "class CharacterElement*", + "id": 17, + "offset": 488, + "flags": 7, + "container": "Vector", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 2346187452 + "pointer": true, + "hash": 1828424369 }, - "m_myBoard": { - "type": "class DoodleDoug*", - "id": 6, - "offset": 136, - "flags": 135, - "container": "Static", - "dynamic": false, + "m_attachSlotList": { + "type": "class CharacterElement*", + "id": 18, + "offset": 512, + "flags": 7, + "container": "Vector", + "dynamic": true, "singleton": false, "pointer": true, - "hash": 2212758093 - } - } - }, - "1604359699": { - "name": "class HousingSigilBehavior*", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1604359699, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, + "hash": 1124990027 + }, + "m_attachableList": { + "type": "class NamedCharacterElement", + "id": 19, + "offset": 536, + "flags": 7, + "container": "Vector", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 223437287 - } - } - }, - "37911382": { - "name": "class SharedPointer", - "bases": [ - "CinematicActorTemplate", - "CinematicDefTemplate", - "CoreTemplate", - "PropertyClass" - ], - "hash": 37911382, - "properties": { - "m_behaviors": { - "type": "class BehaviorTemplate*", - "id": 0, - "offset": 72, + "hash": 2132808559 + }, + "m_skinDecalList2": { + "type": "class CharacterElement*", + "id": 20, + "offset": 560, "flags": 7, "container": "Vector", "dynamic": true, "singleton": false, "pointer": true, - "hash": 1197808594 + "hash": 1599566932 }, - "m_nifFile": { - "type": "std::string", - "id": 1, - "offset": 136, - "flags": 131079, - "container": "Static", - "dynamic": false, + "m_faceElementList": { + "type": "class CharacterElement*", + "id": 21, + "offset": 584, + "flags": 7, + "container": "Vector", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 2694762008 + "pointer": true, + "hash": 1040559117 }, - "m_delay": { - "type": "double", - "id": 2, - "offset": 168, + "m_eyeElementList": { + "type": "class CharacterElement*", + "id": 22, + "offset": 608, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "Vector", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 2689597116 + "pointer": true, + "hash": 1894800033 }, - "m_cinematicName": { - "type": "std::string", - "id": 3, - "offset": 96, - "flags": 134217735, - "container": "Static", - "dynamic": false, + "m_mouthElementList": { + "type": "class CharacterElement*", + "id": 23, + "offset": 632, + "flags": 7, + "container": "Vector", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 2611527497 + "pointer": true, + "hash": 1586296075 }, - "m_completeEvents": { - "type": "class CinematicEventInfo*", - "id": 4, - "offset": 272, + "m_noseElementList": { + "type": "class CharacterElement*", + "id": 24, + "offset": 656, "flags": 7, - "container": "List", + "container": "Vector", "dynamic": true, "singleton": false, "pointer": true, - "hash": 2945338320 + "hash": 2343885043 }, - "m_stateChangeEvents": { - "type": "class CinematicEventInfo*", - "id": 5, - "offset": 304, + "m_accessoryElementList": { + "type": "class CharacterElement*", + "id": 25, + "offset": 680, "flags": 7, - "container": "List", + "container": "Vector", "dynamic": true, "singleton": false, "pointer": true, - "hash": 1874505374 + "hash": 771146122 }, - "m_stateInteractions": { - "type": "class CinematicInteractInfo*", - "id": 6, - "offset": 336, + "m_eyeColorTextureList": { + "type": "class CharacterElement*", + "id": 26, + "offset": 704, "flags": 7, - "container": "List", + "container": "Vector", "dynamic": true, "singleton": false, "pointer": true, - "hash": 1949887389 + "hash": 1921350375 }, - "m_targetGameState": { - "type": "std::string", - "id": 7, - "offset": 176, + "m_faceDecalTextureList": { + "type": "class CharacterElement*", + "id": 27, + "offset": 728, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1002745901 + }, + "m_mouthDecalTextureList": { + "type": "class CharacterElement*", + "id": 28, + "offset": 752, "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2358724587 + } + } + }, + "1224985921": { + "name": "class DailyPvPOption", + "bases": [ + "ServiceOptionBase", + "PropertyClass" + ], + "hash": 1224985921, + "properties": { + "m_serviceName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3607550909 + "hash": 2206028813 }, - "m_actorStateSet": { + "m_iconKey": { "type": "std::string", - "id": 8, - "offset": 208, - "flags": 268435463, + "id": 1, + "offset": 168, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1765258049, - "enum_options": { - "__BASECLASS": "ObjStateSet" - } + "hash": 2457138637 }, - "m_rootAsset": { + "m_displayKey": { "type": "std::string", - "id": 9, - "offset": 240, - "flags": 131079, + "id": 2, + "offset": 104, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3506101791 + "hash": 3023276954 }, - "m_dialogList": { - "type": "class ActorDialogList*", - "id": 10, - "offset": 368, - "flags": 7, + "m_serviceIndex": { + "type": "unsigned int", + "id": 3, + "offset": 204, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2035504282 + "pointer": false, + "hash": 2103126710 + }, + "m_forceInteract": { + "type": "bool", + "id": 4, + "offset": 200, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1705789564 } } }, - "1181994921": { - "name": "class LinearSoundEmitterInfo", + "382744210": { + "name": "class ElixirBehaviorTemplate", "bases": [ - "PositionalSoundEmitterInfo", - "SoundEmitterInfo", - "SoundInfo", - "ClientObjectInfo", - "CoreObjectInfo", + "TimedItemBehaviorTemplate", + "BehaviorTemplate", "PropertyClass" ], - "hash": 1181994921, + "hash": 382744210, "properties": { - "m_templateID.m_full": { - "type": "unsigned __int64", + "m_behaviorName": { + "type": "std::string", "id": 0, "offset": 72, - "flags": 33554439, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 633907631 + "hash": 3130754092 }, - "m_nObjectID": { - "type": "unsigned int", + "m_expireTime": { + "type": "std::string", "id": 1, - "offset": 80, + "offset": 128, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 748496927 + "hash": 3122602039 }, - "m_location": { - "type": "class Vector3D", + "m_timerType": { + "type": "enum TimerType", "id": 2, - "offset": 84, - "flags": 7, + "offset": 120, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2239683611 + "hash": 571744132, + "enum_options": { + "TimerType_Game": 0, + "TimerType_Calendar": 1 + } }, - "m_orientation": { - "type": "class Vector3D", + "m_typeList": { + "type": "std::string", "id": 3, - "offset": 96, + "offset": 160, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 2344058766 + "hash": 2119049625 }, - "m_fScale": { - "type": "float", + "m_equipParticle": { + "type": "std::string", "id": 4, - "offset": 108, - "flags": 7, + "offset": 176, + "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 503137701 + "hash": 2222557491 }, - "m_zoneTag": { + "m_unequipParticle": { "type": "std::string", "id": 5, - "offset": 152, - "flags": 7, + "offset": 208, + "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3405382643 + "hash": 2215431638 }, - "m_startState": { + "m_equipSound": { "type": "std::string", "id": 6, - "offset": 184, - "flags": 7, + "offset": 240, + "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2166880458 + "hash": 2720016552 }, - "m_overrideName": { + "m_unequipSound": { "type": "std::string", "id": 7, - "offset": 120, - "flags": 8388615, + "offset": 272, + "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1990707228 + "hash": 1552545835 }, - "m_globalDynamic": { - "type": "bool", + "m_equipActionList": { + "type": "class SharedPointer", "id": 8, - "offset": 116, + "offset": 304, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1951691017 + "pointer": true, + "hash": 1314016250 }, - "m_bUndetectable": { - "type": "bool", + "m_unequipActionList": { + "type": "class SharedPointer", "id": 9, - "offset": 216, + "offset": 320, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1907454341 + "pointer": true, + "hash": 2143896925 }, - "m_spawnRequirements": { - "type": "class SharedPointer", + "m_combatEnabled": { + "type": "bool", "id": 10, - "offset": 224, + "offset": 336, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2309120870 + "pointer": false, + "hash": 1399744148 }, - "m_loadingType": { - "type": "enum CoreObjectInfo::LoadingType", + "m_PvPEnabled": { + "type": "bool", "id": 11, + "offset": 337, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1042852532 + } + } + }, + "1673929471": { + "name": "class std::vector >", + "bases": [], + "hash": 1673929471, + "properties": {} + }, + "2109114500": { + "name": "class FishingBehavior", + "bases": [ + "FishingBehaviorBase", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 2109114500, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_caughtFishList": { + "type": "class SharedPointer", + "id": 1, "offset": 112, - "flags": 2097159, + "flags": 1, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2107365240 + }, + "m_fishHistoryList": { + "type": "class SharedPointer", + "id": 2, + "offset": 128, + "flags": 1, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 3741999493 + } + } + }, + "824531989": { + "name": "enum Spell::FusionState", + "bases": [], + "hash": 824531989, + "properties": {} + }, + "1673829428": { + "name": "class DerbyStealMorale", + "bases": [ + "DerbyEffect", + "PropertyClass" + ], + "hash": 1673829428, + "properties": { + "m_buffType": { + "type": "enum DerbyTalentBuffType", + "id": 0, + "offset": 92, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3522422550, + "hash": 1149251982, "enum_options": { - "STATIC_CLIENT_SERVER": 0, - "STATIC_CLIENT": 1, - "STATIC_SERVER": 2, - "DYNAMIC_SERVER": 3 + "Buff": 0, + "Debuff": 1, + "Neither": 2 } }, - "m_radius": { - "type": "float", - "id": 12, - "offset": 256, - "flags": 7, + "m_kTarget": { + "type": "enum DerbyTargetType", + "id": 1, + "offset": 96, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 989410271 + "hash": 1807803351, + "enum_options": { + "kTargetInFront": 0, + "kTargetBehind": 1, + "kTargetFirst": 2, + "kTargetSelf": 3, + "kTargetAll": 4, + "kTargetLast": 5 + } }, - "m_exclusive": { - "type": "bool", - "id": 13, - "offset": 260, - "flags": 7, + "m_nDuration": { + "type": "int", + "id": 2, + "offset": 104, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 824383403 + "hash": 1110167982 }, - "m_startActive": { - "type": "bool", - "id": 14, - "offset": 261, - "flags": 7, + "m_effectID": { + "type": "unsigned int", + "id": 3, + "offset": 88, + "flags": 24, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2031339229 + "hash": 2347630439 }, - "m_category": { - "type": "enum AudioCategory", - "id": 15, - "offset": 264, - "flags": 2097159, + "m_imageFilename": { + "type": "std::string", + "id": 4, + "offset": 112, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2951251982, - "enum_options": { - "AudioCategory_Irrelevent": 0, - "AudioCategory_Accoustic": 1, - "AudioCategory_Noise": 2, - "AudioCategory_Music": 3 - } + "hash": 2813328063 }, - "m_override": { - "type": "int", - "id": 16, - "offset": 268, - "flags": 1048583, + "m_iconIndex": { + "type": "unsigned int", + "id": 5, + "offset": 144, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 136872410, - "enum_options": { - "OVR_RADIUS": 1, - "OVR_CATEGORY": 2, - "OVR_EXCLUSIVE": 4, - "OVR_SIGNATURE": 64, - "OVR_VOLUME": 8, - "OVR_LOOPCOUNT": 16, - "OVR_ACTIVE": 32, - "OVR_PLAYPROG": 128, - "OVR_PRIORITY": 256, - "OVR_PROGTIME": 512, - "OVR_FILTERSET": 1024 - } + "hash": 1265133262 }, - "m_enableReqs": { - "type": "class SharedPointer", - "id": 17, - "offset": 272, - "flags": 263, + "m_soundOnActivate": { + "type": "std::string", + "id": 6, + "offset": 152, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3158020443 + "pointer": false, + "hash": 1956929714 }, - "m_volume": { - "type": "float", - "id": 18, - "offset": 288, - "flags": 7, + "m_soundOnTarget": { + "type": "std::string", + "id": 7, + "offset": 184, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1162855023 + "hash": 3444214056 }, - "m_loopCount": { - "type": "int", - "id": 19, - "offset": 292, - "flags": 7, + "m_targetParticleEffect": { + "type": "std::string", + "id": 8, + "offset": 216, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 865634717 + "hash": 3048234723 }, - "m_trackFilenameList": { + "m_overheadMessage": { "type": "std::string", - "id": 20, - "offset": 312, - "flags": 131079, - "container": "Vector", - "dynamic": true, + "id": 9, + "offset": 248, + "flags": 8388639, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 2531081709 + "hash": 1701018190 }, - "m_playList": { - "type": "class PlayListEntry*", - "id": 21, - "offset": 336, - "flags": 7, - "container": "Vector", - "dynamic": true, + "m_requirements": { + "type": "class RequirementList", + "id": 10, + "offset": 280, + "flags": 31, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3907873161 + "pointer": false, + "hash": 2840988582 }, - "m_priority": { + "m_nAmountToSteal": { "type": "int", - "id": 22, - "offset": 296, - "flags": 7, + "id": 11, + "offset": 376, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1235205852 - }, - "m_progression": { - "type": "enum PlayList::Progression", - "id": 23, - "offset": 300, - "flags": 2097159, + "hash": 247752792 + } + } + }, + "1225309305": { + "name": "class SpellEffect", + "bases": [ + "PropertyClass" + ], + "hash": 1225309305, + "properties": { + "m_effectType": { + "type": "enum SpellEffect::kSpellEffects", + "id": 0, + "offset": 72, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3279400238, + "hash": 2578255295, "enum_options": { - "Sequence": 0, - "Random": 1, - "SequenceOnceOnly": 2, - "RandomNoRepeat": 3 + "kInvalidSpellEffect": 0, + "kDamage": 1, + "kDamageNoCrit": 2, + "kHeal": 3, + "kHealPercent": 4, + "kSetHealPercent": 113, + "kStealHealth": 5, + "kReduceOverTime": 6, + "kDetonateOverTime": 7, + "kPushCharm": 8, + "kStealCharm": 9, + "kPushWard": 10, + "kStealWard": 11, + "kPushOverTime": 12, + "kStealOverTime": 13, + "kRemoveCharm": 14, + "kRemoveWard": 15, + "kRemoveOverTime": 16, + "kRemoveAura": 17, + "kSwapAll": 18, + "kSwapCharm": 19, + "kSwapWard": 20, + "kSwapOverTime": 21, + "kModifyIncomingDamage": 22, + "kModifyIncomingDamageFlat": 119, + "kMaximumIncomingDamage": 23, + "kModifyIncomingHeal": 24, + "kModifyIncomingHealFlat": 118, + "kModifyIncomingDamageType": 25, + "kModifyIncomingArmorPiercing": 26, + "kModifyOutgoingDamage": 27, + "kModifyOutgoingDamageFlat": 121, + "kModifyOutgoingHeal": 28, + "kModifyOutgoingHealFlat": 120, + "kModifyOutgoingDamageType": 29, + "kModifyOutgoingArmorPiercing": 30, + "kModifyOutgoingStealHealth": 31, + "kModifyIncomingStealHealth": 32, + "kBounceNext": 33, + "kBouncePrevious": 34, + "kBounceBack": 35, + "kBounceAll": 36, + "kAbsorbDamage": 37, + "kAbsorbHeal": 38, + "kModifyAccuracy": 39, + "kDispel": 40, + "kConfusion": 41, + "kCloakedCharm": 42, + "kCloakedWard": 43, + "kStunResist": 44, + "kClue": 111, + "kPipConversion": 45, + "kCritBoost": 46, + "kCritBlock": 47, + "kPolymorph": 48, + "kDelayCast": 49, + "kModifyCardCloak": 50, + "kModifyCardDamage": 51, + "kModifyCardAccuracy": 53, + "kModifyCardMutation": 54, + "kModifyCardRank": 55, + "kModifyCardArmorPiercing": 56, + "kSummonCreature": 65, + "kTeleportPlayer": 66, + "kStun": 67, + "kDampen": 68, + "kReshuffle": 69, + "kMindControl": 70, + "kModifyPips": 71, + "kModifyPowerPips": 72, + "kModifyShadowPips": 73, + "kModifyHate": 74, + "kDamageOverTime": 75, + "kHealOverTime": 76, + "kModifyPowerPipChance": 77, + "kModifyRank": 78, + "kStunBlock": 79, + "kRevealCloak": 80, + "kInstantKill": 81, + "kAfterlife": 82, + "kDeferredDamage": 83, + "kDamagePerTotalPipPower": 84, + "kModifyCardHeal": 52, + "kModifyCardCharm": 57, + "kModifyCardWard": 58, + "kModifyCardOutgoingDamage": 59, + "kModifyCardOutgoingAccuracy": 60, + "kModifyCardOutgoingHeal": 61, + "kModifyCardOutgoingArmorPiercing": 62, + "kModifyCardIncomingDamage": 63, + "kModifyCardAbsorbDamage": 64, + "kCloakedWardNoRemove": 86, + "kAddCombatTriggerList": 87, + "kRemoveCombatTriggerList": 88, + "kBacklashDamage": 89, + "kModifyBacklash": 90, + "kIntercept": 91, + "kShadowSelf": 92, + "kShadowCreature": 93, + "kModifyShadowCreatureLevel": 94, + "kSelectShadowCreatureAttackTarget": 95, + "kShadowDecrementTurn": 96, + "kCritBoostSchoolSpecific": 97, + "kSpawnCreature": 98, + "kUnPolymorph": 99, + "kPowerPipConversion": 100, + "kProtectCardBeneficial": 101, + "kProtectCardHarmful": 102, + "kProtectBeneficial": 103, + "kProtectHarmful": 104, + "kDivideDamage": 105, + "kCollectEssence": 106, + "kKillCreature": 107, + "kDispelBlock": 108, + "kConfusionBlock": 109, + "kModifyPipRoundRate": 110, + "kMaxHealthDamage": 112, + "kUntargetable": 114, + "kMakeTargetable": 115, + "kForceTargetable": 116, + "kRemoveStunBlock": 117, + "kExitCombat": 122, + "kSuspendPips": 123, + "kResumePips": 124, + "kAutoPass": 125, + "kStopAutoPass": 126, + "kVanish": 127, + "kStopVanish": 128, + "kMaxHealthHeal": 129, + "kHealByWard": 130, + "kTaunt": 131, + "kPacify": 132, + "kRemoveTargetRestriction": 133, + "kConvertHangingEffect": 134, + "kAddSpellToDeck": 135, + "kAddSpellToHand": 136, + "kModifyIncomingDamageOverTime": 137, + "kModifyIncomingHealOverTime": 138, + "kModifyCardDamagebyRank": 139, + "kPushConvertedCharm": 140, + "kStealConvertedCharm": 141, + "kPushConvertedWard": 142, + "kStealConvertedWard": 143, + "kPushConvertedOverTime": 144, + "kStealConvertedOverTime": 145, + "kRemoveConvertedCharm": 146, + "kRemoveConvertedWard": 147, + "kRemoveConvertedOverTime": 148, + "kModifyOverTimeDuration": 149, + "kModifySchoolPips": 150 } }, - "m_progressMin": { - "type": "float", - "id": 24, - "offset": 304, - "flags": 7, + "m_effectParam": { + "type": "int", + "id": 1, + "offset": 76, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1497550192 + "hash": 357920024 }, - "m_progressMax": { - "type": "float", - "id": 25, - "offset": 308, + "m_disposition": { + "type": "enum SpellEffect::kHangingDisposition", + "id": 2, + "offset": 80, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1904841031, + "enum_options": { + "kBoth": 0, + "kBeneficial": 1, + "kHarmful": 2 + } + }, + "m_sDamageType": { + "type": "std::string", + "id": 3, + "offset": 88, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1497549938 + "hash": 2501054223 }, - "m_audioFilterSet": { + "m_damageType": { "type": "unsigned int", - "id": 26, - "offset": 360, - "flags": 33554439, + "id": 4, + "offset": 84, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 831339825 + "hash": 737882766 }, - "m_clientTag": { - "type": "std::string", - "id": 27, - "offset": 368, + "m_pipNum": { + "type": "int", + "id": 5, + "offset": 128, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3409856790 + "hash": 830827539 }, - "m_innerRadius": { - "type": "float", - "id": 28, - "offset": 400, - "flags": 7, + "m_actNum": { + "type": "int", + "id": 6, + "offset": 132, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 686816091 + "hash": 236824866 }, - "m_nifObjName": { - "type": "std::string", - "id": 29, - "offset": 408, - "flags": 7, + "m_effectTarget": { + "type": "enum SpellEffect::kEffectTarget", + "id": 7, + "offset": 140, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1513857812 + "hash": 2458940523, + "enum_options": { + "kInvalidTarget": 0, + "kSpell": 1, + "kSpecificSpells": 2, + "kGlobal": 3, + "kEnemyTeam": 4, + "kEnemyTeamAllAtOnce": 5, + "kFriendlyTeam": 6, + "kFriendlyTeamAllAtOnce": 7, + "kEnemySingle": 8, + "kFriendlySingle": 9, + "kMinion": 10, + "kFriendlyMinion": 17, + "kEnemyMinion": 18, + "kSelf": 11, + "kAtLeastOneEnemy": 13, + "kPreselectedEnemySingle": 12, + "kMultiTargetEnemy": 14, + "kMultiTargetFriendly": 15, + "kFriendlySingleNotMe": 16 + } }, - "m_animNIFObjName": { - "type": "std::string", - "id": 30, - "offset": 440, - "flags": 7, + "m_numRounds": { + "type": "int", + "id": 8, + "offset": 144, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2245834777 + "hash": 1229753829 }, - "m_inverted": { - "type": "bool", - "id": 31, - "offset": 472, - "flags": 7, + "m_paramPerRound": { + "type": "int", + "id": 9, + "offset": 148, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1034821044 + "hash": 683234234 }, - "m_initialDelay": { + "m_healModifier": { "type": "float", - "id": 32, - "offset": 476, + "id": 10, + "offset": 152, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 629858288 + "hash": 1317921248, + "enum_options": { + "__DEFAULT": "1.0" + } }, - "m_fRangeScale": { - "type": "float", - "id": 33, - "offset": 480, - "flags": 7, + "m_spellTemplateID": { + "type": "unsigned int", + "id": 11, + "offset": 120, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1749294034 + "hash": 585567702 }, - "m_fAttenuationFactor": { - "type": "float", - "id": 34, - "offset": 484, + "m_enchantmentSpellTemplateID": { + "type": "unsigned int", + "id": 12, + "offset": 124, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 246955115 + }, + "m_act": { + "type": "bool", + "id": 13, + "offset": 136, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 273292776 + "hash": 269510283 }, - "m_eAttenuationType": { - "type": "enum PositionInfoAttenuationType", - "id": 35, - "offset": 488, - "flags": 2097159, + "m_cloaked": { + "type": "bool", + "id": 14, + "offset": 157, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2427193304, - "enum_options": { - "Standard": 0, - "Unit Range Power": 1 - } + "hash": 7349510 }, - "m_vPositions": { - "type": "class Vector3D", - "id": 36, - "offset": 496, - "flags": 7, - "container": "Vector", - "dynamic": true, + "m_bypassProtection": { + "type": "bool", + "id": 15, + "offset": 159, + "flags": 31, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 3599600160 - } - } - }, - "1604368941": { - "name": "class HidePipsCinematicAction", - "bases": [ - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 1604368941, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, + "hash": 1657138252 + }, + "m_armorPiercingParam": { + "type": "int", + "id": 16, + "offset": 160, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 + "hash": 2025530205 }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, + "m_chancePerTarget": { + "type": "int", + "id": 17, + "offset": 164, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2285866132 + "hash": 845426794 }, - "m_newActorName": { - "type": "std::string", - "id": 2, - "offset": 120, - "flags": 7, + "m_protected": { + "type": "bool", + "id": 18, + "offset": 168, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2029131039 - } - } - }, - "43516137": { - "name": "class SharedPointer", - "bases": [ - "StopBacklashRotationEffectCinematicAction", - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 43516137, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, + "hash": 1445655037 + }, + "m_converted": { + "type": "bool", + "id": 19, + "offset": 169, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 + "hash": 1590428797 }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, + "m_rank": { + "type": "int", + "id": 20, + "offset": 208, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2285866132 + "hash": 219803942 } } }, - "1181970345": { - "name": "class LinearSoundEmitterInfo*", + "824433843": { + "name": "class SpawnObjectInfo", "bases": [ - "PositionalSoundEmitterInfo", - "SoundEmitterInfo", - "SoundInfo", - "ClientObjectInfo", "CoreObjectInfo", "PropertyClass" ], - "hash": 1181970345, + "hash": 824433843, "properties": { "m_templateID.m_full": { "type": "unsigned __int64", @@ -556835,375 +368813,70 @@ "DYNAMIC_SERVER": 3 } }, - "m_radius": { - "type": "float", + "m_kStartNodeType": { + "type": "enum SpawnObjectInfo::StartNodeType", "id": 12, - "offset": 256, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 989410271 - }, - "m_exclusive": { - "type": "bool", - "id": 13, - "offset": 260, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 824383403 - }, - "m_startActive": { - "type": "bool", - "id": 14, - "offset": 261, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2031339229 - }, - "m_category": { - "type": "enum AudioCategory", - "id": 15, - "offset": 264, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2951251982, - "enum_options": { - "AudioCategory_Irrelevent": 0, - "AudioCategory_Accoustic": 1, - "AudioCategory_Noise": 2, - "AudioCategory_Music": 3 - } - }, - "m_override": { - "type": "int", - "id": 16, - "offset": 268, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 136872410, - "enum_options": { - "OVR_RADIUS": 1, - "OVR_CATEGORY": 2, - "OVR_EXCLUSIVE": 4, - "OVR_SIGNATURE": 64, - "OVR_VOLUME": 8, - "OVR_LOOPCOUNT": 16, - "OVR_ACTIVE": 32, - "OVR_PLAYPROG": 128, - "OVR_PRIORITY": 256, - "OVR_PROGTIME": 512, - "OVR_FILTERSET": 1024 - } - }, - "m_enableReqs": { - "type": "class SharedPointer", - "id": 17, - "offset": 272, - "flags": 263, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3158020443 - }, - "m_volume": { - "type": "float", - "id": 18, - "offset": 288, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1162855023 - }, - "m_loopCount": { - "type": "int", - "id": 19, - "offset": 292, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 865634717 - }, - "m_trackFilenameList": { - "type": "std::string", - "id": 20, - "offset": 312, - "flags": 131079, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2531081709 - }, - "m_playList": { - "type": "class PlayListEntry*", - "id": 21, - "offset": 336, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 3907873161 - }, - "m_priority": { - "type": "int", - "id": 22, - "offset": 296, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1235205852 - }, - "m_progression": { - "type": "enum PlayList::Progression", - "id": 23, - "offset": 300, + "offset": 240, "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3279400238, + "hash": 1545814623, "enum_options": { - "Sequence": 0, - "Random": 1, - "SequenceOnceOnly": 2, - "RandomNoRepeat": 3 + "SNT_RANDOM": 0, + "SNT_RANDOM_UNIQUE": 1, + "SNT_FIRST": 2, + "SNT_LAST": 3, + "SNT_SPECIFIC": 4 } }, - "m_progressMin": { - "type": "float", - "id": 24, - "offset": 304, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1497550192 - }, - "m_progressMax": { - "type": "float", - "id": 25, - "offset": 308, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1497549938 - }, - "m_audioFilterSet": { + "m_startNode": { "type": "unsigned int", - "id": 26, - "offset": 360, - "flags": 33554439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 831339825 - }, - "m_clientTag": { - "type": "std::string", - "id": 27, - "offset": 368, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3409856790 - }, - "m_innerRadius": { - "type": "float", - "id": 28, - "offset": 400, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 686816091 - }, - "m_nifObjName": { - "type": "std::string", - "id": 29, - "offset": 408, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513857812 - }, - "m_animNIFObjName": { - "type": "std::string", - "id": 30, - "offset": 440, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2245834777 - }, - "m_inverted": { - "type": "bool", - "id": 31, - "offset": 472, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1034821044 - }, - "m_initialDelay": { - "type": "float", - "id": 32, - "offset": 476, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 629858288 - }, - "m_fRangeScale": { - "type": "float", - "id": 33, - "offset": 480, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1749294034 - }, - "m_fAttenuationFactor": { - "type": "float", - "id": 34, - "offset": 484, + "id": 13, + "offset": 256, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 273292776 - }, - "m_eAttenuationType": { - "type": "enum PositionInfoAttenuationType", - "id": 35, - "offset": 488, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2427193304, + "hash": 1598161889, "enum_options": { - "Standard": 0, - "Unit Range Power": 1 + "__DEFAULT": 0 } }, - "m_vPositions": { - "type": "class Vector3D", - "id": 36, - "offset": 496, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 3599600160 - } - } - }, - "39832719": { - "name": "class SharedPointer", - "bases": [ - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 39832719, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - }, - "m_assetName": { - "type": "std::string", - "id": 2, - "offset": 120, + "m_pathID": { + "type": "gid", + "id": 14, + "offset": 248, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1513131580 + "hash": 821494322 }, - "m_bDontFlipActorYaw": { - "type": "bool", - "id": 3, - "offset": 152, + "m_uniqueLoc": { + "type": "char", + "id": 15, + "offset": 260, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 632297791 + "hash": 400014505 } } }, - "39734275": { - "name": "class EventCurrency1LootInfo", + "1673432830": { + "name": "class TreasureTableLootInfo*", "bases": [ "LootInfo", "LootInfoBase", "PropertyClass" ], - "hash": 39734275, + "hash": 1673432830, "properties": { "m_lootType": { "type": "enum LootInfo::LOOT_TYPE", @@ -557247,2558 +368920,2478 @@ "LOOT_TYPE_PVP_TOURNEY_CURRENCY_BONUS": 29, "LOOT_TYPE_FURNITURE_ESSENCE": 30 } - }, - "m_eventCurrency1Amount": { - "type": "int", - "id": 1, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 945914060 } } }, - "1605679661": { - "name": "class HidePipsCinematicAction*", + "384355412": { + "name": "class HousingGameKhanDanceTurnData", "bases": [ - "ActorCinematicAction", - "CinematicAction", "PropertyClass" ], - "hash": 1605679661, + "hash": 384355412, "properties": { - "m_timeOffset": { - "type": "float", + "m_playerGIDList": { + "type": "gid", "id": 0, "offset": 72, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 2237098605 + "hash": 534186837 }, - "m_actor": { - "type": "std::string", + "m_playerYawList": { + "type": "unsigned char", "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - }, - "m_newActorName": { - "type": "std::string", - "id": 2, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2029131039 - } - } - }, - "38735987": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 38735987, - "properties": { - "m_adventurePartyJoinList": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, + "offset": 88, "flags": 7, "container": "List", "dynamic": true, "singleton": false, - "pointer": true, - "hash": 1532734392 + "pointer": false, + "hash": 1795637418 } } }, - "1182445187": { - "name": "class DdWinAnimMoveDiggingMob", + "824428723": { + "name": "class SpawnObjectInfo*", "bases": [ - "DdWinAnimMoveMob", - "WinAnimMoveToLocationSpeed", - "WinAnimMoveToLocation", - "WindowAnimation", + "CoreObjectInfo", "PropertyClass" ], - "hash": 1182445187, + "hash": 824428723, "properties": { - "m_bUseDeepCopy": { - "type": "bool", + "m_templateID.m_full": { + "type": "unsigned __int64", "id": 0, "offset": 72, - "flags": 135, + "flags": 33554439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 433380635 + "hash": 633907631 }, - "m_targetLocation": { - "type": "class Vector3D", + "m_nObjectID": { + "type": "unsigned int", "id": 1, "offset": 80, - "flags": 135, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2653859938 + "hash": 748496927 }, - "m_fSpeed": { - "type": "float", + "m_location": { + "type": "class Vector3D", "id": 2, - "offset": 96, - "flags": 135, + "offset": 84, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 503609006 + "hash": 2239683611 }, - "m_facing": { - "type": "enum DoodleDoug::DdDirection", + "m_orientation": { + "type": "class Vector3D", "id": 3, - "offset": 112, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 591537519 - }, - "m_cameFrom": { - "type": "enum DoodleDoug::DdDirection", - "id": 4, - "offset": 116, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1071209393 - }, - "m_nextWaypoint": { - "type": "class Point", - "id": 5, - "offset": 120, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2346187452 - }, - "m_myBoard": { - "type": "class DoodleDoug*", - "id": 6, - "offset": 136, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2212758093 - } - } - }, - "1605342853": { - "name": "class HousingNodeReference*", - "bases": [ - "PropertyClass" - ], - "hash": 1605342853, - "properties": {} - }, - "38881026": { - "name": "enum GoalStatusRequirement", - "bases": [], - "hash": 38881026, - "properties": {} - }, - "1182462215": { - "name": "class GardenSpellTemplate*", - "bases": [ - "SpellTemplate", - "CoreTemplate", - "PropertyClass" - ], - "hash": 1182462215, - "properties": { - "m_behaviors": { - "type": "class BehaviorTemplate*", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1197808594 - }, - "m_name": { - "type": "std::string", - "id": 1, "offset": 96, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1717359772 - }, - "m_description": { - "type": "std::string", - "id": 2, - "offset": 168, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1649374815 - }, - "m_advancedDescription": { - "type": "std::string", - "id": 3, - "offset": 200, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3465713013 + "hash": 2344058766 }, - "m_displayName": { - "type": "std::string", + "m_fScale": { + "type": "float", "id": 4, - "offset": 136, - "flags": 8388615, + "offset": 108, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2446900370 + "hash": 503137701 }, - "m_spellBase": { + "m_zoneTag": { "type": "std::string", "id": 5, - "offset": 248, - "flags": 268435463, + "offset": 152, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2688054198, - "enum_options": { - "__BASECLASS": "CinematicTemplate" - } + "hash": 3405382643 }, - "m_effects": { - "type": "class SharedPointer", + "m_startState": { + "type": "std::string", "id": 6, - "offset": 280, + "offset": 184, "flags": 7, - "container": "Vector", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 370726379 + "pointer": false, + "hash": 2166880458 }, - "m_sMagicSchoolName": { + "m_overrideName": { "type": "std::string", "id": 7, - "offset": 312, - "flags": 7, + "offset": 120, + "flags": 8388615, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2035693400 + "hash": 1990707228 }, - "m_sTypeName": { - "type": "std::string", + "m_globalDynamic": { + "type": "bool", "id": 8, - "offset": 352, + "offset": 116, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3580785905 + "hash": 1951691017 }, - "m_trainingCost": { - "type": "int", + "m_bUndetectable": { + "type": "bool", "id": 9, - "offset": 384, + "offset": 216, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 982588239 + "hash": 1907454341 }, - "m_accuracy": { - "type": "int", + "m_spawnRequirements": { + "type": "class SharedPointer", "id": 10, - "offset": 388, + "offset": 224, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1636315493 + "pointer": true, + "hash": 2309120870 }, - "m_baseCost": { - "type": "int", + "m_loadingType": { + "type": "enum CoreObjectInfo::LoadingType", "id": 11, - "offset": 232, - "flags": 7, + "offset": 112, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1475151502 + "hash": 3522422550, + "enum_options": { + "STATIC_CLIENT_SERVER": 0, + "STATIC_CLIENT": 1, + "STATIC_SERVER": 2, + "DYNAMIC_SERVER": 3 + } }, - "m_creditsCost": { - "type": "int", + "m_kStartNodeType": { + "type": "enum SpawnObjectInfo::StartNodeType", "id": 12, - "offset": 236, - "flags": 7, + "offset": 240, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 715313825 + "hash": 1545814623, + "enum_options": { + "SNT_RANDOM": 0, + "SNT_RANDOM_UNIQUE": 1, + "SNT_FIRST": 2, + "SNT_LAST": 3, + "SNT_SPECIFIC": 4 + } }, - "m_pvpCurrencyCost": { - "type": "int", + "m_startNode": { + "type": "unsigned int", "id": 13, - "offset": 240, + "offset": 256, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 645595444 + "hash": 1598161889, + "enum_options": { + "__DEFAULT": 0 + } }, - "m_pvpTourneyCurrencyCost": { - "type": "int", + "m_pathID": { + "type": "gid", "id": 14, - "offset": 244, + "offset": 248, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 517874954 + "hash": 821494322 }, - "m_boosterPackIcon": { - "type": "std::string", + "m_uniqueLoc": { + "type": "char", "id": 15, - "offset": 496, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3428653697 - }, - "m_validTargetSpells": { - "type": "unsigned int", - "id": 16, - "offset": 392, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2355782967 - }, - "m_PvP": { - "type": "bool", - "id": 17, - "offset": 408, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 269492361 - }, - "m_PvE": { - "type": "bool", - "id": 18, - "offset": 409, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 269492350 - }, - "m_noPvPEnchant": { - "type": "bool", - "id": 19, - "offset": 410, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 661581703 - }, - "m_noPvEEnchant": { - "type": "bool", - "id": 20, - "offset": 411, + "offset": 260, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 10144220 - }, - "m_battlegroundsOnly": { - "type": "bool", - "id": 21, - "offset": 412, + "hash": 400014505 + } + } + }, + "1225428773": { + "name": "class BadgeLeaderboardBehaviorTemplate", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 1225428773, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1244782419 - }, - "m_Treasure": { - "type": "bool", - "id": 22, - "offset": 413, - "flags": 7, - "container": "Static", - "dynamic": false, + "hash": 3130754092 + } + } + }, + "2109552491": { + "name": "class WizClientMount*", + "bases": [ + "WizClientLeashedObject", + "WizClientObject", + "ClientObject", + "CoreObject", + "PropertyClass" + ], + "hash": 2109552491, + "properties": { + "m_inactiveBehaviors": { + "type": "class SharedPointer", + "id": 0, + "offset": 224, + "flags": 31, + "container": "Vector", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 1749096414 + "pointer": true, + "hash": 1850812559 }, - "m_noDiscard": { - "type": "bool", - "id": 23, - "offset": 414, - "flags": 7, + "m_globalID.m_full": { + "type": "unsigned __int64", + "id": 1, + "offset": 72, + "flags": 16777247, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 565749226 + "hash": 2312465444 }, - "m_leavesPlayWhenCast": { - "type": "bool", - "id": 24, - "offset": 532, - "flags": 7, + "m_permID": { + "type": "unsigned __int64", + "id": 2, + "offset": 80, + "flags": 16777247, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 698216294 + "hash": 1298909658 }, - "m_imageIndex": { - "type": "int", - "id": 25, - "offset": 416, - "flags": 7, + "m_location": { + "type": "class Vector3D", + "id": 3, + "offset": 168, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1570500405 + "hash": 2239683611 }, - "m_imageName": { - "type": "std::string", - "id": 26, - "offset": 424, - "flags": 131079, + "m_orientation": { + "type": "class Vector3D", + "id": 4, + "offset": 180, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2391520543 + "hash": 2344058766 }, - "m_cloaked": { - "type": "bool", - "id": 27, - "offset": 489, - "flags": 7, + "m_fScale": { + "type": "float", + "id": 5, + "offset": 196, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 7349510 + "hash": 503137701 }, - "m_casterInvisible": { - "type": "bool", - "id": 28, - "offset": 490, - "flags": 7, + "m_templateID.m_full": { + "type": "unsigned __int64", + "id": 6, + "offset": 96, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 310214650 + "hash": 633907631 }, - "m_adjectives": { + "m_debugName": { "type": "std::string", - "id": 29, - "offset": 576, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2967855037 - }, - "m_spellSourceType": { - "type": "enum SpellTemplate::kSpellSourceType", - "id": 30, - "offset": 528, - "flags": 2097159, + "id": 7, + "offset": 104, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 156272727, - "enum_options": { - "kCaster": 0, - "kPet": 1, - "kShadowCreature": 2, - "kWeapon": 3, - "kEquipment": 4 - } + "hash": 3553984419 }, - "m_cloakedName": { + "m_displayKey": { "type": "std::string", - "id": 31, - "offset": 536, - "flags": 268435463, + "id": 8, + "offset": 136, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2846679215, - "enum_options": { - "__BASECLASS": "SpellTemplate" - } - }, - "m_purchaseRequirements": { - "type": "class RequirementList*", - "id": 32, - "offset": 608, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3174641793 - }, - "m_displayRequirements": { - "type": "class RequirementList*", - "id": 33, - "offset": 840, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3646782876 + "hash": 3023276954 }, - "m_descriptionTrainer": { - "type": "std::string", - "id": 34, - "offset": 616, - "flags": 8388871, + "m_zoneTagID": { + "type": "unsigned int", + "id": 9, + "offset": 344, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1756093908 + "hash": 965291410 }, - "m_descriptionCombatHUD": { - "type": "std::string", - "id": 35, - "offset": 648, - "flags": 8388871, + "m_speedMultiplier": { + "type": "short", + "id": 10, + "offset": 192, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1631478006 + "hash": 123130076 }, - "m_displayIndex": { - "type": "int", - "id": 36, - "offset": 680, - "flags": 7, + "m_nMobileID": { + "type": "unsigned short", + "id": 11, + "offset": 194, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1250551048 + "hash": 1054318939 }, - "m_hiddenFromEffectsWindow": { - "type": "bool", - "id": 37, - "offset": 684, - "flags": 7, + "m_characterId": { + "type": "gid", + "id": 12, + "offset": 440, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1832736331 + "hash": 210498418 }, - "m_ignoreCharms": { - "type": "bool", - "id": 38, - "offset": 685, - "flags": 7, + "m_gameStats": { + "type": "class WizGameStats*", + "id": 13, + "offset": 552, + "flags": 27, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1840075893 + "pointer": true, + "hash": 3194480406 }, - "m_alwaysFizzle": { + "m_leashed": { "type": "bool", - "id": 39, - "offset": 686, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2030988856 - }, - "m_spellCategory": { - "type": "std::string", - "id": 40, - "offset": 688, - "flags": 7, + "id": 14, + "offset": 584, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2472376729 - }, - "m_showPolymorphedName": { - "type": "bool", - "id": 41, - "offset": 720, - "flags": 7, + "hash": 603235945 + } + } + }, + "383531978": { + "name": "struct ControlTree::Item", + "bases": [ + "PropertyClass" + ], + "hash": 383531978, + "properties": { + "m_Color": { + "type": "class Color", + "id": 0, + "offset": 72, + "flags": 262279, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2097929096 + "hash": 1753714077 }, - "m_skipTruncation": { - "type": "bool", - "id": 42, - "offset": 721, - "flags": 263, + "m_sLabel": { + "type": "std::wstring", + "id": 1, + "offset": 80, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1838335249 + "hash": 2207009163 }, - "m_maxCopies": { + "m_Flags": { "type": "unsigned int", - "id": 43, - "offset": 724, - "flags": 263, + "id": 2, + "offset": 112, + "flags": 1048583, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 403022326 + "hash": 967851578, + "enum_options": { + "ControlTree::Item::EXPANDED": 2, + "ControlTree::Item::BUTTON": 1 + } }, - "m_levelRestriction": { - "type": "int", - "id": 44, - "offset": 728, - "flags": 263, - "container": "Static", - "dynamic": false, + "m_Children": { + "type": "struct ControlTree::Item*", + "id": 3, + "offset": 128, + "flags": 135, + "container": "Vector", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 176502472 - }, - "m_delayEnchantment": { + "pointer": true, + "hash": 1558446980 + } + } + }, + "1673570116": { + "name": "class SharedPointer", + "bases": [ + "ReqNumeric", + "Requirement", + "PropertyClass" + ], + "hash": 1673570116, + "properties": { + "m_applyNOT": { "type": "bool", - "id": 45, - "offset": 732, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 191336919 - }, - "m_delayEnchantmentOrder": { - "type": "enum SpellEffect::kDelayOrder", - "id": 46, - "offset": 736, - "flags": 287, + "id": 0, + "offset": 72, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2526055263, + "hash": 1746328074, "enum_options": { - "SpellEffect::kAnyOrder": 0, - "SpellEffect::kFirst": 1, - "SpellEffect::kSecond": 2 + "__DEFAULT": 0 } }, - "m_previousSpellName": { - "type": "std::string", - "id": 47, - "offset": 744, - "flags": 268435463, + "m_operator": { + "type": "enum Requirement::Operator", + "id": 1, + "offset": 76, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2903322585, + "hash": 2672792317, "enum_options": { - "__BASECLASS": "SpellTemplate" + "ROP_AND": 0, + "ROP_OR": 1, + "__DEFAULT": "ROP_AND" } }, - "m_cardFront": { - "type": "std::string", - "id": 48, - "offset": 456, - "flags": 131359, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3557598526 - }, - "m_useGloss": { - "type": "bool", - "id": 49, - "offset": 488, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 668817544 - }, - "m_ignoreDispel": { - "type": "bool", - "id": 50, - "offset": 776, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1881041624 - }, - "m_backRowFriendly": { - "type": "bool", - "id": 51, - "offset": 777, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 501584377 - }, - "m_spellRank": { - "type": "class SharedPointer", - "id": 52, - "offset": 784, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3152361374 - }, - "m_secondarySchoolName": { - "type": "std::string", - "id": 53, - "offset": 800, - "flags": 7, + "m_numericValue": { + "type": "float", + "id": 2, + "offset": 80, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1803268236 + "hash": 521915239 }, - "m_spellFusion": { - "type": "unsigned int", - "id": 54, - "offset": 836, - "flags": 7, + "m_operatorType": { + "type": "enum ReqNumeric::OPERATOR_TYPE", + "id": 3, + "offset": 84, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1658928321 + "hash": 2228122961, + "enum_options": { + "OPERATOR_UNKNOWN": 4294967295, + "OPERATOR_EQUALS": 0, + "OPERATOR_GREATER_THAN": 1, + "OPERATOR_LESS_THAN": 2, + "OPERATOR_GREATER_THAN_EQ": 3, + "OPERATOR_LESS_THAN_EQ": 4 + } }, - "m_requiredSchoolName": { + "m_tournament": { "type": "std::string", - "id": 55, - "offset": 848, - "flags": 7, + "id": 4, + "offset": 88, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3576058981 - }, - "m_gardenSpellType": { - "type": "enum GardenSpellTemplate::GardenSpellType", - "id": 56, - "offset": 880, - "flags": 2097159, + "hash": 2799932264 + } + } + }, + "2109503673": { + "name": "class SharedPointer", + "bases": [ + "PvPMatchRequest", + "MatchRequest", + "PropertyClass" + ], + "hash": 2109503673, + "properties": { + "m_characterID": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3204656351, - "enum_options": { - "GS_SoilPreparation": 0, - "GS_Growing": 1, - "GS_InsectFighting": 2, - "GS_PlantProtection": 3, - "GS_PlantUtility": 4 - } + "hash": 210498386 }, - "m_animationKFM": { - "type": "std::string", - "id": 57, - "offset": 888, - "flags": 131079, + "m_tournamentNameID": { + "type": "unsigned int", + "id": 1, + "offset": 84, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2466280761 + "hash": 1799846440 }, - "m_animationName": { - "type": "std::string", - "id": 58, - "offset": 920, - "flags": 7, + "m_matchNameID": { + "type": "unsigned int", + "id": 2, + "offset": 80, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3393414044 + "hash": 1751361288 }, - "m_soundEffectName": { - "type": "std::string", - "id": 59, - "offset": 1016, - "flags": 131079, + "m_leagueID": { + "type": "unsigned int", + "id": 3, + "offset": 88, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3235436082 + "hash": 692361645 }, - "m_soilTemplateID": { + "m_seasonID": { "type": "unsigned int", - "id": 60, - "offset": 1048, - "flags": 7, + "id": 4, + "offset": 92, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2225235405 + "hash": 535260643 }, - "m_providesWater": { - "type": "bool", - "id": 61, - "offset": 1052, - "flags": 7, - "container": "Static", - "dynamic": false, + "m_teams": { + "type": "class SharedPointer", + "id": 5, + "offset": 96, + "flags": 31, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 1403713858 + "pointer": true, + "hash": 1984373608 }, - "m_providesSun": { - "type": "bool", - "id": 62, - "offset": 1053, - "flags": 7, + "m_joinQueueRequirements": { + "type": "class SharedPointer", + "id": 6, + "offset": 112, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1942306581 + "pointer": true, + "hash": 2746080983 }, - "m_providesPollination": { - "type": "bool", - "id": 63, - "offset": 1054, - "flags": 7, - "container": "Static", - "dynamic": false, + "m_ignoredList": { + "type": "gid", + "id": 7, + "offset": 128, + "flags": 31, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 443775752 + "hash": 1850924028 }, - "m_providesMagic": { - "type": "bool", - "id": 64, - "offset": 1055, - "flags": 7, + "m_matchTimer": { + "type": "float", + "id": 8, + "offset": 144, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1391840608 + "hash": 1510935909 }, - "m_providesMusic": { - "type": "bool", - "id": 65, - "offset": 1056, - "flags": 7, + "m_bonusTime": { + "type": "int", + "id": 9, + "offset": 148, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1392572416 + "hash": 1757496496 }, - "m_bugZapLevel": { + "m_passPenalty": { "type": "int", - "id": 66, - "offset": 1060, - "flags": 7, + "id": 10, + "offset": 152, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1811340955 + "hash": 982951662 }, - "m_protectionTemplateID": { - "type": "unsigned int", - "id": 67, - "offset": 1064, - "flags": 7, + "m_yellowTime": { + "type": "int", + "id": 11, + "offset": 156, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 280411517 + "hash": 1017028741 }, - "m_soundEffectGain": { - "type": "float", - "id": 68, - "offset": 1068, - "flags": 7, + "m_redTime": { + "type": "int", + "id": 12, + "offset": 160, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1827685932, - "enum_options": { - "__DEFAULT": "1.0" - } + "hash": 1909556708 }, - "m_utilitySpellType": { - "type": "enum GardenSpellTemplate::UtilitySpellType", - "id": 69, - "offset": 1072, - "flags": 2097159, + "m_minTurnTime": { + "type": "int", + "id": 13, + "offset": 164, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1635978289, - "enum_options": { - "US_None": 0, - "US_Zap": 1, - "US_Revive": 2, - "US_Inspect": 3, - "US_Stasis": 4, - "US_PlowAll": 5, - "US_PlantAll": 6, - "US_HarvestNow": 7 - } + "hash": 652524886 }, - "m_affectedRadius": { - "type": "int", - "id": 70, - "offset": 1076, - "flags": 7, - "container": "Static", - "dynamic": false, + "m_effects": { + "type": "class SharedPointer", + "id": 14, + "offset": 168, + "flags": 31, + "container": "Vector", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 540739476 + "pointer": true, + "hash": 804962647 }, - "m_yOffset": { - "type": "float", - "id": 71, - "offset": 1080, - "flags": 7, + "m_maxNumberOfTeams": { + "type": "unsigned int", + "id": 15, + "offset": 220, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1592149751 + "hash": 1656964203 }, - "m_energyCost": { - "type": "int", - "id": 72, - "offset": 1084, - "flags": 7, + "m_minNumberOfTeams": { + "type": "unsigned int", + "id": 16, + "offset": 224, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1236111677 + "hash": 746353193 }, - "m_gardenSpellImageIndex": { - "type": "int", - "id": 73, - "offset": 1088, - "flags": 7, + "m_timeLimitSec": { + "type": "unsigned int", + "id": 17, + "offset": 216, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 721561158 + "hash": 312519798 }, - "m_gardenSpellImageName": { - "type": "std::string", - "id": 74, - "offset": 1096, - "flags": 131079, + "m_scheduleID": { + "type": "gid", + "id": 18, + "offset": 232, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3146698256 + "hash": 1439120946 }, - "m_animationNameSmall": { - "type": "std::string", - "id": 75, - "offset": 952, - "flags": 7, + "m_visibleTimeSeconds": { + "type": "unsigned int", + "id": 19, + "offset": 248, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2904009973 + "hash": 1245818841 }, - "m_animationNameLarge": { - "type": "std::string", - "id": 76, - "offset": 984, - "flags": 7, + "m_registrationOpenTimeSeconds": { + "type": "unsigned int", + "id": 20, + "offset": 252, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2895295623 - } - } - }, - "1605342893": { - "name": "class HousingNodeReference", - "bases": [ - "PropertyClass" - ], - "hash": 1605342893, - "properties": {} - }, - "39775235": { - "name": "class EventCurrency1LootInfo*", - "bases": [ - "LootInfo", - "LootInfoBase", - "PropertyClass" - ], - "hash": 39775235, - "properties": { - "m_lootType": { - "type": "enum LootInfo::LOOT_TYPE", - "id": 0, - "offset": 72, - "flags": 2097183, + "hash": 2064854776 + }, + "m_tournamentPreparingTimeSeconds": { + "type": "unsigned int", + "id": 21, + "offset": 256, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1591891442, - "enum_options": { - "LOOT_TYPE_NONE": 0, - "LOOT_TYPE_GOLD": 1, - "LOOT_TYPE_MANA": 2, - "LOOT_TYPE_ITEM": 3, - "LOOT_TYPE_TREASURE_CARD": 4, - "LOOT_TYPE_MAGIC_XP": 5, - "LOOT_TYPE_ADD_SPELL": 6, - "LOOT_TYPE_MAX_HEALTH": 7, - "LOOT_TYPE_MAX_GOLD": 8, - "LOOT_TYPE_MAX_MANA": 9, - "LOOT_TYPE_MAX_POTION": 10, - "LOOT_TYPE_TRAINING_POINTS": 11, - "LOOT_TYPE_RECIPE": 12, - "LOOT_TYPE_CRAFTING_SLOT": 13, - "LOOT_TYPE_REAGENT": 14, - "LOOT_TYPE_PETSNACK": 15, - "LOOT_TYPE_GARDENING_XP": 16, - "LOOT_TYPE_PET_XP": 17, - "LOOT_TYPE_TREASURE_TABLE": 18, - "LOOT_TYPE_ARENA_POINTS": 19, - "LOOT_TYPE_ARENA_BONUS_POINTS": 20, - "LOOT_TYPE_GROUP": 21, - "LOOT_TYPE_FISHING_XP": 22, - "LOOT_TYPE_EVENT_CURRENCY_1": 24, - "LOOT_TYPE_EVENT_CURRENCY_2": 25, - "LOOT_TYPE_PVP_CURRENCY": 26, - "LOOT_TYPE_PVP_CURRENCY_BONUS": 27, - "LOOT_TYPE_PVP_TOURNEY_CURRENCY": 28, - "LOOT_TYPE_PVP_TOURNEY_CURRENCY_BONUS": 29, - "LOOT_TYPE_FURNITURE_ESSENCE": 30 - } + "hash": 1121720544 }, - "m_eventCurrency1Amount": { + "m_teamSize": { "type": "int", - "id": 1, - "offset": 80, + "id": 22, + "offset": 240, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 945914060 - } - } - }, - "1186142512": { - "name": "class SharedPointer", - "bases": [ - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 1186142512, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, + "hash": 2131986300 + }, + "m_bracketRewardsList": { + "type": "class SharedPointer", + "id": 23, + "offset": 272, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 2237098605 + "pointer": true, + "hash": 3842983067 }, - "m_actor": { + "m_name": { "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, + "id": 24, + "offset": 288, + "flags": 8388639, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2285866132 + "hash": 1717359772 }, - "m_bCaster": { - "type": "bool", - "id": 2, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1390351511 - } - } - }, - "1606943963": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1606943963, - "properties": { - "m_classProjectID": { + "m_roundStartsInSeconds": { "type": "unsigned int", - "id": 0, - "offset": 72, + "id": 25, + "offset": 260, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 996536487 + "hash": 346233980 }, - "m_sigilIcon": { - "type": "std::string", - "id": 1, - "offset": 80, + "m_roundBufferTimeSeconds": { + "type": "unsigned int", + "id": 26, + "offset": 264, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3177480156 - } - } - }, - "1184185144": { - "name": "class SharedPointer", - "bases": [ - "StartHangingRotationCinematicAction", - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 1184185144, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 + "hash": 671173677 }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, + "m_numberOfRounds": { + "type": "unsigned int", + "id": 27, + "offset": 268, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2285866132 + "hash": 2292833030 }, - "m_cloaked": { - "type": "bool", - "id": 2, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 7349510 - } - } - }, - "1605852679": { - "name": "class SharedPointer", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 1605852679, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - } - } - }, - "1648038308": { - "name": "enum eGender", - "bases": [], - "hash": 1648038308, - "properties": {} - }, - "41816003": { - "name": "class SharedPointer", - "bases": [ - "FaceTargetActorCinematicAction", - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 41816003, - "properties": { - "m_timeOffset": { + "m_scoreMultiplier": { "type": "float", - "id": 0, - "offset": 72, - "flags": 7, + "id": 28, + "offset": 328, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 + "hash": 545011290 }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, + "m_preferredNumberOfTeams": { + "type": "unsigned int", + "id": 29, + "offset": 228, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2285866132 + "hash": 686953092 }, - "m_bCaster": { + "m_specialEvent": { "type": "bool", - "id": 2, - "offset": 120, - "flags": 7, + "id": 30, + "offset": 192, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1390351511 - } - } - }, - "1606679257": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1606679257, - "properties": { - "m_hubZoneMapping": { - "type": "class HubZoneMapping*", - "id": 0, - "offset": 72, - "flags": 7, + "hash": 1211693398 + }, + "m_pvpDuelModifiers": { + "type": "std::string", + "id": 31, + "offset": 200, + "flags": 31, "container": "List", "dynamic": true, "singleton": false, - "pointer": true, - "hash": 1402898811 - } - } - }, - "41012572": { - "name": "class SharedPointer", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 41012572, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, "pointer": false, - "hash": 3130754092 + "hash": 1796488605 }, - "m_scriptFilename": { + "m_premierPrizesStoreGIDsCSV": { "type": "std::string", - "id": 1, - "offset": 120, - "flags": 131079, + "id": 32, + "offset": 336, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1831462225 + "hash": 2521625388 }, - "m_bDisableAutoRestart": { - "type": "bool", - "id": 2, - "offset": 152, - "flags": 7, + "m_costPvPTourneyCurrency": { + "type": "unsigned int", + "id": 33, + "offset": 320, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 815844583, - "enum_options": { - "__DEFAULT": 0 - } + "hash": 1823400061 }, - "m_clientScriptFilename": { - "type": "std::string", - "id": 3, - "offset": 160, - "flags": 131079, + "m_subCostPvPTourneyCurrency": { + "type": "unsigned int", + "id": 34, + "offset": 324, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2499494128 + "hash": 2082801383 } } }, - "40309991": { - "name": "class SharedPointer", + "382920583": { + "name": "class InteractiveMusicManager*", "bases": [ - "TournamentUpdate", "PropertyClass" ], - "hash": 40309991, - "properties": { - "m_team": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1393503221 - } - } + "hash": 382920583, + "properties": {} }, - "1184791435": { - "name": "class SharedPointer", + "1227786784": { + "name": "class GraphicalPvPTourneyCurrency*", "bases": [ - "BehaviorInstance", + "GraphicalSpell", + "Spell", "PropertyClass" ], - "hash": 1184791435, + "hash": 1227786784, "properties": { - "m_behaviorTemplateNameID": { + "m_templateID": { "type": "unsigned int", "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - } - } - }, - "1184268322": { - "name": "class StartingPipEffectTemplate*", - "bases": [ - "GameEffectTemplate", - "PropertyClass" - ], - "hash": 1184268322, - "properties": { - "m_effectName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, + "offset": 128, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2029161513 + "hash": 1286746870 }, - "m_effectCategory": { - "type": "std::string", + "m_enchantment": { + "type": "unsigned int", "id": 1, - "offset": 104, - "flags": 7, + "offset": 80, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1852673222 + "hash": 2217886818 }, - "m_sortOrder": { - "type": "int", + "m_pipCost": { + "type": "class SharedPointer", "id": 2, - "offset": 148, + "offset": 176, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1411218206 + "pointer": true, + "hash": 3605704820 }, - "m_duration": { - "type": "double", + "m_regularAdjust": { + "type": "int", "id": 3, "offset": 192, - "flags": 7, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2727932435 + "hash": 1420453335 }, - "m_stackingCategories": { - "type": "std::string", + "m_magicSchoolID": { + "type": "unsigned int", "id": 4, - "offset": 160, + "offset": 136, "flags": 7, - "container": "List", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 1774497525 + "hash": 893146499 }, - "m_isPersistent": { - "type": "bool", + "m_accuracy": { + "type": "unsigned char", "id": 5, - "offset": 153, + "offset": 132, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 923861920 + "hash": 2273914939 }, - "m_bIsOnPet": { + "m_treasureCard": { "type": "bool", "id": 6, - "offset": 154, - "flags": 7, + "offset": 197, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 522593303 + "hash": 1764879128 }, - "m_isPublic": { + "m_battleCard": { "type": "bool", "id": 7, - "offset": 152, - "flags": 7, + "offset": 198, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1728439822 + "hash": 1332843753 }, - "m_visualEffectAddName": { - "type": "std::string", + "m_itemCard": { + "type": "bool", "id": 8, - "offset": 200, + "offset": 199, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3382086694 + "hash": 1683654300 }, - "m_visualEffectRemoveName": { - "type": "std::string", + "m_sideBoard": { + "type": "bool", "id": 9, - "offset": 232, + "offset": 200, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1541697323 + "hash": 1897838368 }, - "m_onAddFunctorName": { - "type": "std::string", + "m_spellID": { + "type": "unsigned int", "id": 10, - "offset": 280, - "flags": 7, + "offset": 204, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1561843107 + "hash": 1697483258 }, - "m_onRemoveFunctorName": { - "type": "std::string", + "m_leavesPlayWhenCastOverride": { + "type": "bool", "id": 11, - "offset": 312, - "flags": 7, + "offset": 216, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2559017864 + "hash": 874407398 }, - "m_stackingRule": { - "type": "enum STACKING_RULE", + "m_cloaked": { + "type": "bool", "id": 12, - "offset": 144, - "flags": 2097159, + "offset": 196, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 431568889, - "enum_options": { - "STACKING_ALLOWED": 0, - "STACKING_NOSTACK": 1, - "STACKING_REPLACE": 2 - } + "hash": 7349510 }, - "m_pipsGiven": { - "type": "int", + "m_enchantmentSpellIsItemCard": { + "type": "bool", "id": 13, - "offset": 360, - "flags": 7, + "offset": 76, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1346249167 + "hash": 531590701 }, - "m_powerPipsGiven": { - "type": "int", + "m_premutationSpellID": { + "type": "unsigned int", "id": 14, - "offset": 364, - "flags": 7, + "offset": 112, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 377908508 - } - } - }, - "1607671953": { - "name": "class ChatDiagnostics", - "bases": [ - "PropertyClass" - ], - "hash": 1607671953, - "properties": { - "m_textData": { - "type": "std::string", - "id": 0, - "offset": 72, + "hash": 1530256370 + }, + "m_enchantedThisCombat": { + "type": "bool", + "id": 15, + "offset": 77, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1895738923 + }, + "m_paramOverrides": { + "type": "class SharedPointer", + "id": 16, + "offset": 224, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2061635599 + }, + "m_subEffectMeta": { + "type": "class SharedPointer", + "id": 17, + "offset": 240, "flags": 31, "container": "List", "dynamic": true, "singleton": false, + "pointer": true, + "hash": 1944101106 + }, + "m_delayEnchantment": { + "type": "bool", + "id": 18, + "offset": 257, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, "pointer": false, - "hash": 2390069786 - } - } - }, - "1606967184": { - "name": "class SharedPointer", - "bases": [ - "CinematicAction", - "PropertyClass" - ], - "hash": 1606967184, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, + "hash": 191336919 + }, + "m_PvE": { + "type": "bool", + "id": 19, + "offset": 264, + "flags": 287, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 - } - } - }, - "41773224": { - "name": "class SharedPointer", - "bases": [ - "VisibilityBehavior", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 41773224, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, + "hash": 269492350 + }, + "m_delayEnchantmentOrder": { + "type": "enum SpellEffect::kDelayOrder", + "id": 20, + "offset": 72, + "flags": 287, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 + "hash": 2526055263, + "enum_options": { + "SpellEffect::kAnyOrder": 0, + "SpellEffect::kFirst": 1, + "SpellEffect::kSecond": 2 + } }, - "m_showTo": { - "type": "gid", - "id": 1, - "offset": 112, + "m_roundAddedTC": { + "type": "int", + "id": 21, + "offset": 260, "flags": 31, - "container": "List", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 947039004 + "hash": 112365451 }, - "m_hideFrom": { - "type": "gid", - "id": 2, - "offset": 128, - "flags": 31, - "container": "List", - "dynamic": true, + "m_secondarySchoolID": { + "type": "unsigned int", + "id": 22, + "offset": 304, + "flags": 7, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 642644390 + "hash": 2081206026 }, - "m_visible": { - "type": "bool", - "id": 3, - "offset": 144, + "m_fusionState": { + "type": "enum Spell::FusionState", + "id": 23, + "offset": 308, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 810536225 + "hash": 835324539, + "enum_options": { + "FS_Invalid": 0, + "FS_Partial": 1, + "FS_Valid": 2 + } } } }, - "1186655351": { - "name": "class RecipeWindow::RecipeItem", + "825163370": { + "name": "class SharedPointer", "bases": [ - "ControlCheckBox", - "ControlButton", - "Window", + "BasePetItemBehavior", + "BehaviorInstance", "PropertyClass" ], - "hash": 1186655351, + "hash": 825163370, "properties": { - "m_sName": { - "type": "std::string", + "m_behaviorTemplateNameID": { + "type": "unsigned int", "id": 0, - "offset": 80, - "flags": 135, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2306437263 + "hash": 223437287 }, - "m_Children": { - "type": "class SharedPointer", + "m_level": { + "type": "unsigned char", "id": 1, "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, + "flags": 65727, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2621225959 + "pointer": false, + "hash": 1438884808 }, - "m_Style": { + "m_XP": { "type": "unsigned int", "id": 2, - "offset": 152, - "flags": 1048583, + "offset": 116, + "flags": 65727, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152, - "EFFECT_SCALE": 67108864, - "LOCK_ICON_SIZE": 33554432, - "LEFT_TEXT": 536870912, - "NO_FIT_TEXT": 1073741824, - "CHECKBOX_TEXTOVERIMAGE": 16777216 - } + "hash": 2301988085 }, - "m_Flags": { - "type": "unsigned int", + "m_firstName": { + "type": "int", "id": 3, - "offset": 156, - "flags": 1048583, + "offset": 264, + "flags": 65703, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } + "hash": 1618303331 }, - "m_Window": { - "type": "class Rect", + "m_middleName": { + "type": "int", "id": 4, - "offset": 160, - "flags": 135, + "offset": 268, + "flags": 65703, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3105139380 + "hash": 199781034 }, - "m_fTargetAlpha": { - "type": "float", + "m_lastName": { + "type": "int", "id": 5, - "offset": 212, - "flags": 135, + "offset": 272, + "flags": 65703, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1809129834 + "hash": 328503983 }, - "m_fDisabledAlpha": { - "type": "float", + "m_currentStats": { + "type": "class PetStat", "id": 6, - "offset": 216, - "flags": 135, - "container": "Static", - "dynamic": false, + "offset": 128, + "flags": 31, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 1389987675 + "hash": 2342610661 }, - "m_fAlpha": { - "type": "float", + "m_maxStats": { + "type": "class PetStat", "id": 7, - "offset": 208, - "flags": 65671, - "container": "Static", - "dynamic": false, + "offset": 144, + "flags": 31, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 482130755 + "hash": 1846363080 }, - "m_pWindowStyle": { - "type": "class SharedPointer", + "m_hatchedTimeSecs": { + "type": "unsigned int", "id": 8, - "offset": 232, - "flags": 135, + "offset": 160, + "flags": 65727, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3623628394 + "pointer": false, + "hash": 606051291 }, - "m_sHelp": { - "type": "std::wstring", + "m_expressedTalents": { + "type": "unsigned int", "id": 9, - "offset": 248, - "flags": 4194439, - "container": "Static", - "dynamic": false, + "offset": 168, + "flags": 31, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 2102211316 + "hash": 1557974043 }, - "m_sScript": { - "type": "std::string", + "m_expressedDerbyTalents": { + "type": "unsigned int", "id": 10, - "offset": 352, - "flags": 135, - "container": "Static", - "dynamic": false, + "offset": 184, + "flags": 31, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 1846695875 + "hash": 484465777 }, - "m_Offset": { - "type": "class Point", + "m_talentRatings": { + "type": "std::string", "id": 11, - "offset": 192, - "flags": 135, - "container": "Static", - "dynamic": false, + "offset": 216, + "flags": 31, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 3389835433 + "hash": 2170591163 }, - "m_Scale": { - "type": "class Point", + "m_powerRatings": { + "type": "std::string", "id": 12, - "offset": 200, - "flags": 135, - "container": "Static", - "dynamic": false, + "offset": 232, + "flags": 31, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 2547159940 + "hash": 1881287968 }, - "m_sTip": { - "type": "std::wstring", + "m_overallRating": { + "type": "unsigned int", "id": 13, - "offset": 392, - "flags": 4194439, + "offset": 248, + "flags": 159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1513510520 + "hash": 462138631 }, - "m_BubbleList": { - "type": "class WindowBubble", + "m_activeRating": { + "type": "unsigned int", "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, + "offset": 252, + "flags": 159, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 2587533771 + "hash": 234391118 }, - "m_ParentOffset": { - "type": "class Rect", + "m_costToMorph": { + "type": "unsigned int", "id": 15, - "offset": 176, - "flags": 135, + "offset": 256, + "flags": 65567, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3091503757 + "hash": 1866472719 }, - "m_bToggle": { - "type": "bool", + "m_rarity": { + "type": "unsigned int", "id": 16, - "offset": 608, - "flags": 135, + "offset": 260, + "flags": 65567, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2071810903 + "hash": 1111114664 }, - "m_bButtonDown": { - "type": "bool", + "m_requiredXP": { + "type": "unsigned int", "id": 17, - "offset": 609, - "flags": 135, + "offset": 120, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 840041705 + "hash": 1890811574 }, - "m_sLabel": { - "type": "std::wstring", + "m_housingPetPrimaryColor": { + "type": "int", "id": 18, - "offset": 616, - "flags": 4194439, + "offset": 276, + "flags": 65664, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2207009163 + "hash": 525135139 }, - "m_labelOffset": { - "type": "class Rect", + "m_housingPetPattern": { + "type": "int", "id": 19, - "offset": 832, - "flags": 135, + "offset": 280, + "flags": 65664, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1990646723 + "hash": 165011646 }, - "m_pButton": { - "type": "class SharedPointer", + "m_housingPetSecondaryColor": { + "type": "int", "id": 20, - "offset": 656, - "flags": 135, + "offset": 284, + "flags": 65695, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1543855875 + "pointer": false, + "hash": 358656263 }, - "m_HotKey": { - "type": "unsigned int", + "m_housingPetOriginalGID": { + "type": "gid", "id": 21, - "offset": 672, - "flags": 135, + "offset": 288, + "flags": 65664, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1631553409 + "hash": 1259075879 }, - "m_Color": { - "type": "class Color", + "m_housingPetJewelTemplateID": { + "type": "unsigned int", "id": 22, - "offset": 676, - "flags": 262279, + "offset": 296, + "flags": 65664, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1753714077 + "hash": 1836117651 }, - "m_bCursorOver": { - "type": "bool", + "m_happiness": { + "type": "unsigned int", "id": 23, - "offset": 689, - "flags": 135, + "offset": 300, + "flags": 65727, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 283981103 + "hash": 1380970552 }, - "m_bAbortWhenCursorNotOver": { - "type": "bool", + "m_maximumHappiness": { + "type": "unsigned int", "id": 24, - "offset": 706, - "flags": 135, + "offset": 304, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 325405258 + "hash": 874954582 }, - "m_bHotKeyDown": { - "type": "bool", + "m_allTalents": { + "type": "unsigned int", "id": 25, - "offset": 680, - "flags": 135, - "container": "Static", - "dynamic": false, + "offset": 464, + "flags": 7, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 616989185 + "hash": 1053182849 }, - "m_fTime": { - "type": "float", + "m_allDerbyTalents": { + "type": "unsigned int", "id": 26, - "offset": 684, - "flags": 135, - "container": "Static", - "dynamic": false, + "offset": 480, + "flags": 7, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 883746156 + "hash": 1165978519 }, - "m_bGreyed": { - "type": "bool", + "m_sSerializedMaxStats": { + "type": "std::string", "id": 27, - "offset": 688, - "flags": 135, + "offset": 328, + "flags": 65536, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1566556053 + "hash": 2078753551 }, - "m_fMaxScale": { - "type": "float", + "m_sSerializedStats": { + "type": "std::string", "id": 28, - "offset": 692, - "flags": 135, + "offset": 360, + "flags": 65536, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2070186635 + "hash": 3084176585 }, - "m_fScaleSpeed": { - "type": "float", + "m_sSerializedTalents": { + "type": "std::string", "id": 29, - "offset": 696, - "flags": 135, + "offset": 392, + "flags": 65536, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1457135702 + "hash": 3058423637 }, - "m_bUseDropShadow": { - "type": "bool", + "m_sSerializedDerbyTalents": { + "type": "std::string", "id": 30, - "offset": 704, - "flags": 135, + "offset": 424, + "flags": 65536, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 93063037 + "hash": 1866554155 }, - "m_bUseOutline": { + "m_bInitialized": { "type": "bool", "id": 31, - "offset": 705, - "flags": 135, + "offset": 456, + "flags": 65536, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 744292994 + "hash": 233973963 + } + } + }, + "1673927732": { + "name": "class DerbyStealMorale*", + "bases": [ + "DerbyEffect", + "PropertyClass" + ], + "hash": 1673927732, + "properties": { + "m_buffType": { + "type": "enum DerbyTalentBuffType", + "id": 0, + "offset": 92, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1149251982, + "enum_options": { + "Buff": 0, + "Debuff": 1, + "Neither": 2 + } }, - "m_pGreyedState": { - "type": "class SharedPointer", - "id": 32, - "offset": 768, - "flags": 135, + "m_kTarget": { + "type": "enum DerbyTargetType", + "id": 1, + "offset": 96, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2703352263 + "pointer": false, + "hash": 1807803351, + "enum_options": { + "kTargetInFront": 0, + "kTargetBehind": 1, + "kTargetFirst": 2, + "kTargetSelf": 3, + "kTargetAll": 4, + "kTargetLast": 5 + } }, - "m_pNormalState": { - "type": "class SharedPointer", - "id": 33, - "offset": 752, - "flags": 135, + "m_nDuration": { + "type": "int", + "id": 2, + "offset": 104, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1887909808 + "pointer": false, + "hash": 1110167982 }, - "m_pHighlightedState": { - "type": "class SharedPointer", - "id": 34, - "offset": 784, - "flags": 135, + "m_effectID": { + "type": "unsigned int", + "id": 3, + "offset": 88, + "flags": 24, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2200177608 + "pointer": false, + "hash": 2347630439 }, - "m_pSelectedState": { - "type": "class SharedPointer", - "id": 35, - "offset": 800, - "flags": 135, + "m_imageFilename": { + "type": "std::string", + "id": 4, + "offset": 112, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2266776432 + "pointer": false, + "hash": 2813328063 }, - "m_pDepressedState": { - "type": "class SharedPointer", - "id": 36, - "offset": 816, - "flags": 135, + "m_iconIndex": { + "type": "unsigned int", + "id": 5, + "offset": 144, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1878185798 + "pointer": false, + "hash": 1265133262 }, - "m_nGroupID": { - "type": "int", - "id": 37, - "offset": 880, - "flags": 135, + "m_soundOnActivate": { + "type": "std::string", + "id": 6, + "offset": 152, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 403966850 + "hash": 1956929714 }, - "m_bChecked": { - "type": "bool", - "id": 38, - "offset": 884, - "flags": 135, + "m_soundOnTarget": { + "type": "std::string", + "id": 7, + "offset": 184, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 958955100 + "hash": 3444214056 }, - "m_pCheckedState": { - "type": "class SharedPointer", - "id": 39, - "offset": 888, - "flags": 135, + "m_targetParticleEffect": { + "type": "std::string", + "id": 8, + "offset": 216, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1210539694 + "pointer": false, + "hash": 3048234723 }, - "m_pCheckedGreyedState": { - "type": "class SharedPointer", - "id": 40, - "offset": 904, - "flags": 135, + "m_overheadMessage": { + "type": "std::string", + "id": 9, + "offset": 248, + "flags": 8388639, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2702030126 + "pointer": false, + "hash": 1701018190 }, - "m_pCheckedHighlightedState": { - "type": "class SharedPointer", - "id": 41, - "offset": 920, - "flags": 135, + "m_requirements": { + "type": "class RequirementList", + "id": 10, + "offset": 280, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1320097679 + "pointer": false, + "hash": 2840988582 }, - "m_pCheckedDepressedState": { - "type": "class SharedPointer", - "id": 42, - "offset": 936, - "flags": 135, + "m_nAmountToSteal": { + "type": "int", + "id": 11, + "offset": 376, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1609188685 + "pointer": false, + "hash": 247752792 } } }, - "1607677073": { - "name": "class ChatDiagnostics*", + "1227180511": { + "name": "class SharedPointer", "bases": [ + "MountInteractableOption", + "InteractableOption", + "ServiceOptionBase", "PropertyClass" ], - "hash": 1607677073, + "hash": 1227180511, "properties": { - "m_textData": { + "m_serviceName": { "type": "std::string", "id": 0, "offset": 72, "flags": 31, - "container": "List", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 2390069786 + "hash": 2206028813 + }, + "m_iconKey": { + "type": "std::string", + "id": 1, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2457138637 + }, + "m_displayKey": { + "type": "std::string", + "id": 2, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3023276954 + }, + "m_serviceIndex": { + "type": "unsigned int", + "id": 3, + "offset": 204, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2103126710 + }, + "m_forceInteract": { + "type": "bool", + "id": 4, + "offset": 200, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1705789564 + }, + "m_optionIndex": { + "type": "int", + "id": 5, + "offset": 216, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 276287019 } } }, - "43063088": { - "name": "class ClientHaltCinematicAction*", + "2109552587": { + "name": "class WizClientMount", "bases": [ - "HaltCinematicAction", - "CinematicAction", + "WizClientLeashedObject", + "WizClientObject", + "ClientObject", + "CoreObject", "PropertyClass" ], - "hash": 43063088, + "hash": 2109552587, "properties": { - "m_timeOffset": { - "type": "float", + "m_inactiveBehaviors": { + "type": "class SharedPointer", "id": 0, + "offset": 224, + "flags": 31, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1850812559 + }, + "m_globalID.m_full": { + "type": "unsigned __int64", + "id": 1, "offset": 72, - "flags": 7, + "flags": 16777247, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 + "hash": 2312465444 + }, + "m_permID": { + "type": "unsigned __int64", + "id": 2, + "offset": 80, + "flags": 16777247, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1298909658 + }, + "m_location": { + "type": "class Vector3D", + "id": 3, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2239683611 + }, + "m_orientation": { + "type": "class Vector3D", + "id": 4, + "offset": 180, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2344058766 + }, + "m_fScale": { + "type": "float", + "id": 5, + "offset": 196, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 503137701 + }, + "m_templateID.m_full": { + "type": "unsigned __int64", + "id": 6, + "offset": 96, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 633907631 + }, + "m_debugName": { + "type": "std::string", + "id": 7, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3553984419 + }, + "m_displayKey": { + "type": "std::string", + "id": 8, + "offset": 136, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3023276954 + }, + "m_zoneTagID": { + "type": "unsigned int", + "id": 9, + "offset": 344, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 965291410 + }, + "m_speedMultiplier": { + "type": "short", + "id": 10, + "offset": 192, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 123130076 + }, + "m_nMobileID": { + "type": "unsigned short", + "id": 11, + "offset": 194, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1054318939 + }, + "m_characterId": { + "type": "gid", + "id": 12, + "offset": 440, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 210498418 + }, + "m_gameStats": { + "type": "class WizGameStats*", + "id": 13, + "offset": 552, + "flags": 27, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3194480406 + }, + "m_leashed": { + "type": "bool", + "id": 14, + "offset": 584, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 603235945 } } }, - "1186588230": { - "name": "class SharedPointer", + "384284263": { + "name": "class SharedPointer", "bases": [ "PropertyClass" ], - "hash": 1186588230, + "hash": 384284263, "properties": { - "m_boardKeyList": { - "type": "unsigned int", + "m_text": { + "type": "std::string", "id": 0, "offset": 72, "flags": 7, - "container": "List", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 2327762042 + "hash": 1717580128 }, - "m_boardValueList": { + "m_chatID": { "type": "unsigned int", "id": 1, - "offset": 88, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1770021678 - }, - "m_pieceKeyList": { - "type": "unsigned int", - "id": 2, "offset": 104, "flags": 7, - "container": "List", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 1090726552 + "hash": 531784794 }, - "m_pieceValueList": { + "m_usage": { "type": "unsigned int", - "id": 3, - "offset": 120, + "id": 2, + "offset": 108, "flags": 7, - "container": "List", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 1110620364 + "hash": 1023841410 } } }, - "1615116100": { - "name": "class PolymorphRatingInfo", + "1673902225": { + "name": "class CinematicEventInfo*", "bases": [ "PropertyClass" ], - "hash": 1615116100, + "hash": 1673902225, "properties": { - "m_maxBattleCards": { - "type": "int", + "m_event": { + "type": "std::string", "id": 0, "offset": 72, - "flags": 31, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1906062665 + "hash": 2291276253 + }, + "m_newState": { + "type": "std::string", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2153420230 + }, + "m_requiredState": { + "type": "std::string", + "id": 2, + "offset": 136, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2654559709 } } }, - "45031966": { - "name": "class SharedPointer", + "1225878825": { + "name": "class SharedPointer", "bases": [ "PropertyClass" ], - "hash": 45031966, + "hash": 1225878825, "properties": { - "m_sellMultiplier": { - "type": "float", + "m_categoryID": { + "type": "unsigned int", "id": 0, "offset": 72, - "flags": 7, + "flags": 55, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1673304590 + "hash": 1382795736 }, - "m_sellAdditive": { - "type": "int", + "m_eventID": { + "type": "unsigned int", "id": 1, "offset": 76, - "flags": 7, + "flags": 55, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 776461780 + "hash": 1031693820 + }, + "m_eventCount": { + "type": "unsigned int", + "id": 2, + "offset": 80, + "flags": 55, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1625031576 + }, + "m_expireTime": { + "type": "unsigned int", + "id": 3, + "offset": 84, + "flags": 55, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1836304873 + }, + "m_points": { + "type": "float", + "id": 4, + "offset": 88, + "flags": 55, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 927927476 + }, + "m_metadata": { + "type": "std::string", + "id": 5, + "offset": 96, + "flags": 55, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2383271932 } } }, - "1186792113": { - "name": "class SharedPointer", + "836978406": { + "name": "class CombatRule*", "bases": [ "PropertyClass" ], - "hash": 1186792113, + "hash": 836978406, + "properties": {} + }, + "2112300964": { + "name": "class SharedPointer", + "bases": [ + "AvatarItemInfo", + "AvatarItemInfoBase", + "PropertyClass" + ], + "hash": 2112300964, "properties": { - "m_polymorphTypeList": { - "type": "class SharedPointer", + "m_partName": { + "type": "std::string", "id": 0, - "offset": 80, + "offset": 72, "flags": 7, - "container": "Vector", + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2609631923 + }, + "m_slotName": { + "type": "std::string", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2819781566 + }, + "m_flags": { + "type": "std::string", + "id": 2, + "offset": 144, + "flags": 7, + "container": "List", "dynamic": true, - "singleton": true, + "singleton": false, + "pointer": false, + "hash": 2292098216 + }, + "m_options": { + "type": "class SharedPointer", + "id": 3, + "offset": 160, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, "pointer": true, - "hash": 1494222584 + "hash": 2499357824 + }, + "m_textureOptions": { + "type": "class SharedPointer", + "id": 4, + "offset": 176, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2667548348 + }, + "m_defaultOption": { + "type": "class SharedPointer", + "id": 5, + "offset": 192, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2436336754 + }, + "m_defaultTextureOption": { + "type": "class SharedPointer", + "id": 6, + "offset": 208, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2712636654 } } }, - "1611944252": { - "name": "class ActorDialogListBase*", - "bases": [ - "PropertyClass" - ], - "hash": 1611944252, - "properties": {} - }, - "44866769": { - "name": "class TreasureBookBehavior*", + "384361556": { + "name": "class HousingGameKhanDanceTurnData*", "bases": [ - "BehaviorInstance", "PropertyClass" ], - "hash": 44866769, + "hash": 384361556, "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", + "m_playerGIDList": { + "type": "gid", "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 223437287 + "hash": 534186837 }, - "m_spellList": { - "type": "class SharedPointer", + "m_playerYawList": { + "type": "unsigned char", "id": 1, - "offset": 120, - "flags": 27, + "offset": 88, + "flags": 7, "container": "List", "dynamic": true, "singleton": false, - "pointer": true, - "hash": 2181913740 + "pointer": false, + "hash": 1795637418 } } }, - "1186748545": { - "name": "class SharedPointer", + "828386789": { + "name": "class WizTrainingOption", "bases": [ + "ServiceOptionBase", "PropertyClass" ], - "hash": 1186748545, + "hash": 828386789, "properties": { - "m_fxToReplace": { + "m_serviceName": { "type": "std::string", "id": 0, - "offset": 112, + "offset": 72, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2301964408 + "hash": 2206028813 }, - "m_fxReplaceWith": { + "m_iconKey": { "type": "std::string", "id": 1, - "offset": 144, + "offset": 168, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2445657937 + "hash": 2457138637 }, - "m_fxCastToReplace": { + "m_displayKey": { "type": "std::string", "id": 2, - "offset": 176, + "offset": 104, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2287885731 + "hash": 3023276954 }, - "m_fxCastReplaceWith": { - "type": "std::string", + "m_serviceIndex": { + "type": "unsigned int", "id": 3, - "offset": 208, + "offset": 204, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2146364220 + "hash": 2103126710 }, - "m_fxFidgetToReplace": { - "type": "std::string", + "m_forceInteract": { + "type": "bool", "id": 4, - "offset": 240, + "offset": 200, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3444964235 + "hash": 1705789564 }, - "m_fxFidgetReplaceWith": { - "type": "std::string", + "m_trainingIndex": { + "type": "int", "id": 5, - "offset": 272, + "offset": 216, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1631953700 + "hash": 217389422 + }, + "m_trainingCost": { + "type": "int", + "id": 6, + "offset": 220, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 982588239 + }, + "m_spellName": { + "type": "std::string", + "id": 7, + "offset": 264, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2688485244 + }, + "m_bCanTrain": { + "type": "bool", + "id": 8, + "offset": 228, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1382854949 + }, + "m_requiredLevel": { + "type": "int", + "id": 9, + "offset": 224, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1148041971 + }, + "m_requirements": { + "type": "class SharedPointer", + "id": 10, + "offset": 232, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3043523229 + }, + "m_failedRequirement": { + "type": "class SharedPointer", + "id": 11, + "offset": 248, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2322583945 } } }, - "1610139823": { - "name": "class ClientElixirBenefitEffect", + "1227463801": { + "name": "class SpeedEffect", "bases": [ - "ElixirBenefitEffect", "GameEffectBase", "PropertyClass" ], - "hash": 1610139823, + "hash": 1227463801, "properties": { "m_currentTickCount": { "type": "double", @@ -559877,382 +371470,215 @@ "pointer": false, "hash": 716479635 }, - "m_flags": { - "type": "unsigned int", + "m_speedMultiplier": { + "type": "int", "id": 7, "offset": 128, - "flags": 7, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1005801050 + "hash": 32503058 } } }, - "44032199": { - "name": "class Requirement", + "2111248242": { + "name": "class SharedPointer", "bases": [ + "DerbyAffectEffects", + "DerbyEffect", "PropertyClass" ], - "hash": 44032199, + "hash": 2111248242, "properties": { - "m_applyNOT": { - "type": "bool", + "m_buffType": { + "type": "enum DerbyTalentBuffType", "id": 0, - "offset": 72, - "flags": 31, + "offset": 92, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1746328074, + "hash": 1149251982, "enum_options": { - "__DEFAULT": 0 + "Buff": 0, + "Debuff": 1, + "Neither": 2 } }, - "m_operator": { - "type": "enum Requirement::Operator", + "m_kTarget": { + "type": "enum DerbyTargetType", "id": 1, - "offset": 76, - "flags": 2097183, + "offset": 96, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2672792317, + "hash": 1807803351, "enum_options": { - "ROP_AND": 0, - "ROP_OR": 1, - "__DEFAULT": "ROP_AND" + "kTargetInFront": 0, + "kTargetBehind": 1, + "kTargetFirst": 2, + "kTargetSelf": 3, + "kTargetAll": 4, + "kTargetLast": 5 } - } - } - }, - "1608477625": { - "name": "class MatchActorResult", - "bases": [ - "PropertyClass" - ], - "hash": 1608477625, - "properties": { - "m_pActor": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1115051967 - }, - "m_place": { - "type": "int", - "id": 1, - "offset": 88, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 806257663 }, - "m_ratingGained": { + "m_nDuration": { "type": "int", "id": 2, - "offset": 92, + "offset": 104, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1426436071 + "hash": 1110167982 }, - "m_arenaPoints": { - "type": "int", + "m_effectID": { + "type": "unsigned int", "id": 3, - "offset": 96, - "flags": 31, + "offset": 88, + "flags": 24, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 511478910 + "hash": 2347630439 }, - "m_pvpCurrency": { - "type": "int", + "m_imageFilename": { + "type": "std::string", "id": 4, - "offset": 100, - "flags": 31, + "offset": 112, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 611304283 + "hash": 2813328063 }, - "m_pvpTourneyCurrency": { - "type": "int", + "m_iconIndex": { + "type": "unsigned int", "id": 5, - "offset": 104, + "offset": 144, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1184787505 + "hash": 1265133262 }, - "m_gold": { - "type": "int", + "m_soundOnActivate": { + "type": "std::string", "id": 6, - "offset": 108, - "flags": 31, + "offset": 152, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 219423808 + "hash": 1956929714 }, - "m_gameResult": { - "type": "unsigned char", + "m_soundOnTarget": { + "type": "std::string", "id": 7, - "offset": 112, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1417654793 - } - } - }, - "43991615": { - "name": "enum TutorialTipType", - "bases": [], - "hash": 43991615, - "properties": {} - }, - "1608477879": { - "name": "class TeamHelpSigilMonthlyGauntletInfo*", - "bases": [ - "PropertyClass" - ], - "hash": 1608477879, - "properties": { - "m_monthlyGauntletClassProjectID": { - "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2317452086 - }, - "m_monthlyGauntletCanTeamUp": { - "type": "int", - "id": 1, - "offset": 76, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 476490151 - } - } - }, - "1191779065": { - "name": "class GuildMuseumArtifactInfo*", - "bases": [ - "PropertyClass" - ], - "hash": 1191779065, - "properties": { - "m_templateID": { - "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 33554439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1286746870 - }, - "m_tier1": { - "type": "unsigned int", - "id": 1, - "offset": 76, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1022300786 - }, - "m_tier2": { - "type": "unsigned int", - "id": 2, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1022300787 - }, - "m_tier3": { - "type": "unsigned int", - "id": 3, - "offset": 84, - "flags": 7, + "offset": 184, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1022300788 + "hash": 3444214056 }, - "m_tier4": { - "type": "unsigned int", - "id": 4, - "offset": 88, - "flags": 7, + "m_targetParticleEffect": { + "type": "std::string", + "id": 8, + "offset": 216, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1022300789 + "hash": 3048234723 }, - "m_overrideDisplayName": { + "m_overheadMessage": { "type": "std::string", - "id": 5, - "offset": 96, - "flags": 8388615, + "id": 9, + "offset": 248, + "flags": 8388639, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3370041362 + "hash": 1701018190 }, - "m_description": { - "type": "std::string", - "id": 6, - "offset": 128, - "flags": 8388615, + "m_requirements": { + "type": "class RequirementList", + "id": 10, + "offset": 280, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1649374815 + "hash": 2840988582 }, - "m_foundInCantripChests": { - "type": "bool", - "id": 7, - "offset": 160, - "flags": 7, + "m_nNumBuffs": { + "type": "int", + "id": 11, + "offset": 376, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2091052609 - }, - "m_equivalentTemplateIDList": { - "type": "unsigned int", - "id": 8, - "offset": 168, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 318979600 + "hash": 1860427310 }, - "m_overrideLocation": { - "type": "std::string", - "id": 9, - "offset": 192, - "flags": 8388615, + "m_nNumDebuffs": { + "type": "int", + "id": 12, + "offset": 380, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3616295668 + "hash": 637090007 } } }, - "1188282081": { - "name": "class SharedPointer", + "827639275": { + "name": "class TournamentUpdateFriendList", "bases": [ "PropertyClass" ], - "hash": 1188282081, + "hash": 827639275, "properties": { - "m_talentName": { - "type": "std::string", + "m_friendList": { + "type": "gid", "id": 0, "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2455147588 - }, - "m_triggeredSpells": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 7, + "flags": 31, "container": "List", "dynamic": true, "singleton": false, "pointer": false, - "hash": 2939702987 - } - } - }, - "44866809": { - "name": "class TreasureBookBehavior", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 44866809, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_spellList": { - "type": "class SharedPointer", - "id": 1, - "offset": 120, - "flags": 27, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2181913740 + "hash": 1993921452 } } }, - "1188083506": { - "name": "class PlaySoundInfo*", + "1675664000": { + "name": "class StateEffectTemplate", "bases": [ + "GameEffectTemplate", "PropertyClass" ], - "hash": 1188083506, + "hash": 1675664000, "properties": { - "m_assetName": { + "m_effectName": { "type": "std::string", "id": 0, "offset": 72, @@ -560261,10 +371687,10 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 1513131580 + "hash": 2029161513 }, - "m_gain": { - "type": "float", + "m_effectCategory": { + "type": "std::string", "id": 1, "offset": 104, "flags": 7, @@ -560272,1444 +371698,1560 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 309609622 + "hash": 1852673222 }, - "m_loopCount": { + "m_sortOrder": { "type": "int", "id": 2, - "offset": 108, + "offset": 148, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 865634717 + "hash": 1411218206 }, - "m_stream": { - "type": "bool", + "m_duration": { + "type": "double", "id": 3, - "offset": 112, + "offset": 192, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 963856287 + "hash": 2727932435 }, - "m_priority": { - "type": "int", + "m_stackingCategories": { + "type": "std::string", "id": 4, - "offset": 116, + "offset": 160, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 1235205852 + "hash": 1774497525 }, - "m_category": { - "type": "enum AudioCategory", + "m_isPersistent": { + "type": "bool", "id": 5, - "offset": 120, - "flags": 2097159, + "offset": 153, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2951251982, - "enum_options": { - "AudioCategory_Irrelevent": 0, - "AudioCategory_Accoustic": 1, - "AudioCategory_Noise": 2, - "AudioCategory_Music": 3 - } + "hash": 923861920 }, - "m_pitch": { - "type": "float", + "m_bIsOnPet": { + "type": "bool", "id": 6, - "offset": 124, + "offset": 154, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 896371695 + "hash": 522593303 }, - "m_maxInstances": { - "type": "int", + "m_isPublic": { + "type": "bool", "id": 7, - "offset": 128, + "offset": 152, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1704365544 + "hash": 1728439822 }, - "m_pan": { - "type": "float", + "m_visualEffectAddName": { + "type": "std::string", "id": 8, - "offset": 132, + "offset": 200, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 357246518 - } - } - }, - "1611255421": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1611255421, - "properties": {} - }, - "1187057175": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1187057175, - "properties": { - "m_moraleBase": { - "type": "int", - "id": 0, - "offset": 76, + "hash": 3382086694 + }, + "m_visualEffectRemoveName": { + "type": "std::string", + "id": 9, + "offset": 232, "flags": 7, "container": "Static", "dynamic": false, - "singleton": true, + "singleton": false, "pointer": false, - "hash": 1266117365 + "hash": 1541697323 }, - "m_rateBase": { - "type": "int", - "id": 1, - "offset": 80, + "m_onAddFunctorName": { + "type": "std::string", + "id": 10, + "offset": 280, "flags": 7, "container": "Static", "dynamic": false, - "singleton": true, + "singleton": false, "pointer": false, - "hash": 509523265 + "hash": 1561843107 }, - "m_speedBoostBase": { - "type": "int", - "id": 2, - "offset": 84, + "m_onRemoveFunctorName": { + "type": "std::string", + "id": 11, + "offset": 312, "flags": 7, "container": "Static", "dynamic": false, - "singleton": true, + "singleton": false, "pointer": false, - "hash": 1322305965 + "hash": 2559017864 }, - "m_speedometerMin": { - "type": "unsigned int", - "id": 3, - "offset": 88, - "flags": 7, + "m_stackingRule": { + "type": "enum STACKING_RULE", + "id": 12, + "offset": 144, + "flags": 2097159, "container": "Static", "dynamic": false, - "singleton": true, + "singleton": false, "pointer": false, - "hash": 2086670670 + "hash": 431568889, + "enum_options": { + "STACKING_ALLOWED": 0, + "STACKING_NOSTACK": 1, + "STACKING_REPLACE": 2 + } }, - "m_speedometerMax": { - "type": "unsigned int", - "id": 4, - "offset": 92, + "m_state": { + "type": "std::string", + "id": 13, + "offset": 360, "flags": 7, "container": "Static", "dynamic": false, - "singleton": true, + "singleton": false, "pointer": false, - "hash": 2086670416 + "hash": 2307803100 }, - "m_willTerrainFactor": { - "type": "float", - "id": 5, - "offset": 96, + "m_animation": { + "type": "std::string", + "id": 14, + "offset": 392, "flags": 7, "container": "Static", "dynamic": false, - "singleton": true, + "singleton": false, "pointer": false, - "hash": 1504784419 + "hash": 3431428731 }, - "m_intelligenceTerrainFactor": { - "type": "float", - "id": 6, - "offset": 100, + "m_override": { + "type": "bool", + "id": 15, + "offset": 424, "flags": 7, "container": "Static", "dynamic": false, - "singleton": true, + "singleton": false, "pointer": false, - "hash": 1222264734 - }, - "m_agilityTerrainFactor": { + "hash": 139353587 + } + } + }, + "2110945329": { + "name": "class ClearCameraMappingCinematicAction*", + "bases": [ + "CinematicAction", + "PropertyClass" + ], + "hash": 2110945329, + "properties": { + "m_timeOffset": { "type": "float", - "id": 7, - "offset": 104, + "id": 0, + "offset": 72, "flags": 7, "container": "Static", "dynamic": false, - "singleton": true, + "singleton": false, "pointer": false, - "hash": 739714590 + "hash": 2237098605 + } + } + }, + "826434743": { + "name": "class SegmentationInputData", + "bases": [ + "PropertyClass" + ], + "hash": 826434743, + "properties": { + "m_bIsValidSegmentationData": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 145039017 }, - "m_strengthTerrainFactor": { - "type": "float", - "id": 8, - "offset": 108, - "flags": 7, + "m_playerLevel": { + "type": "int", + "id": 1, + "offset": 76, + "flags": 31, "container": "Static", "dynamic": false, - "singleton": true, + "singleton": false, "pointer": false, - "hash": 2193163834 + "hash": 743117695 }, - "m_moraleBaseChance": { + "m_playerSchoolOfFocus": { + "type": "std::string", + "id": 2, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2154520517 + }, + "m_accountNDaysAged": { "type": "int", - "id": 9, + "id": 3, "offset": 112, - "flags": 7, + "flags": 31, "container": "Static", "dynamic": false, - "singleton": true, + "singleton": false, "pointer": false, - "hash": 1198290007 + "hash": 1683372023 }, - "m_startingSpeed": { + "m_accountNDaysSinceLastLogin": { "type": "int", - "id": 10, + "id": 4, "offset": 116, - "flags": 7, + "flags": 31, "container": "Static", "dynamic": false, - "singleton": true, + "singleton": false, "pointer": false, - "hash": 2138873047 + "hash": 1736007845 }, - "m_cheerCostBase": { + "m_accountNDaysSinceLastPurchase": { "type": "int", - "id": 11, + "id": 5, "offset": 120, - "flags": 7, + "flags": 31, "container": "Static", "dynamic": false, - "singleton": true, + "singleton": false, "pointer": false, - "hash": 260219765 + "hash": 1887348903 }, - "m_fMoraleFactor": { - "type": "float", - "id": 12, + "m_accountNDaysLastCrownsPurchase": { + "type": "int", + "id": 6, "offset": 124, - "flags": 7, + "flags": 31, "container": "Static", "dynamic": false, - "singleton": true, + "singleton": false, "pointer": false, - "hash": 1908498588 + "hash": 1622259729 }, - "m_fTerrainCostFactor": { - "type": "float", - "id": 13, + "m_accountIsMember": { + "type": "int", + "id": 7, "offset": 128, - "flags": 7, + "flags": 31, "container": "Static", "dynamic": false, - "singleton": true, + "singleton": false, "pointer": false, - "hash": 1632613482 + "hash": 1600243867 }, - "m_fSpeedBoostFactor": { - "type": "float", - "id": 14, + "m_accountIsCSR": { + "type": "int", + "id": 8, "offset": 132, - "flags": 7, + "flags": 31, "container": "Static", "dynamic": false, - "singleton": true, + "singleton": false, "pointer": false, - "hash": 1763479636 + "hash": 230424555 }, - "m_cheerTimerInMS": { + "m_accountNCrownsSpent": { "type": "int", - "id": 15, + "id": 9, "offset": 136, - "flags": 7, + "flags": 31, "container": "Static", "dynamic": false, - "singleton": true, + "singleton": false, "pointer": false, - "hash": 1155591641 + "hash": 1946996187 }, - "m_slowTimerInMS": { + "m_accountNCrownsInWallet": { "type": "int", - "id": 16, + "id": 10, "offset": 140, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": true, - "pointer": false, - "hash": 2014411479 - }, - "m_cobblestoneCost": { - "type": "int", - "id": 17, - "offset": 144, - "flags": 7, + "flags": 31, "container": "Static", "dynamic": false, - "singleton": true, + "singleton": false, "pointer": false, - "hash": 539222659 + "hash": 1171814609 }, - "m_terrainEffects": { - "type": "class SharedPointer", - "id": 18, - "offset": 208, - "flags": 7, + "m_accountNDaysSinceItemPurchased": { + "type": "class SharedPointer", + "id": 11, + "offset": 152, + "flags": 31, "container": "List", "dynamic": true, - "singleton": true, + "singleton": false, "pointer": true, - "hash": 3143618983 + "hash": 2517785757 }, - "m_cheerEffects": { - "type": "class SharedPointer", - "id": 19, - "offset": 224, - "flags": 7, + "m_numOfParticularItemInInventory": { + "type": "class SharedPointer", + "id": 12, + "offset": 168, + "flags": 31, "container": "List", "dynamic": true, - "singleton": true, + "singleton": false, "pointer": true, - "hash": 1565796382 + "hash": 937766887 }, - "m_slowEffects": { - "type": "class SharedPointer", - "id": 20, - "offset": 240, - "flags": 7, + "m_numItemsOfCategoryInInventory": { + "type": "class SharedPointer", + "id": 13, + "offset": 184, + "flags": 31, "container": "List", "dynamic": true, - "singleton": true, + "singleton": false, "pointer": true, - "hash": 409034140 + "hash": 1221776137 }, - "m_tracks": { - "type": "class SharedPointer", - "id": 21, - "offset": 152, - "flags": 7, - "container": "Vector", + "m_playerHasBadge": { + "type": "class SharedPointer", + "id": 14, + "offset": 200, + "flags": 31, + "container": "List", "dynamic": true, - "singleton": true, + "singleton": false, "pointer": true, - "hash": 1978381840 + "hash": 1707274667 + }, + "m_accountNHighestWorld": { + "type": "int", + "id": 15, + "offset": 144, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1128631305 } } }, - "1610986034": { - "name": "struct ControlTileMap::CellInfo", + "1674214823": { + "name": "class SharedPointer", "bases": [ + "PathBehaviorTemplate::Action", "PropertyClass" ], - "hash": 1610986034, + "hash": 1674214823, "properties": { - "m_nTileIndex": { - "type": "int", + "m_nPathID": { + "type": "gid", "id": 0, "offset": 72, - "flags": 135, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1956352654 + "hash": 214382368 }, - "m_fCurrentFrame": { - "type": "float", + "m_nNodeID": { + "type": "int", "id": 1, - "offset": 76, - "flags": 135, + "offset": 80, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 219900907 + "hash": 152152635, + "enum_options": { + "__DEFAULT": 4294967295 + } }, - "m_bIsFlippedHorizontal": { - "type": "bool", + "m_nPriority": { + "type": "int", "id": 2, - "offset": 80, - "flags": 135, + "offset": 84, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 627031807 + "hash": 1515251530, + "enum_options": { + "__DEFAULT": 100 + } }, - "m_bIsFlippedVertical": { - "type": "bool", + "m_nChance": { + "type": "int", "id": 3, - "offset": 81, - "flags": 135, + "offset": 88, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 298230063 + "hash": 1860748394, + "enum_options": { + "__DEFAULT": 50 + } }, - "m_nRotation": { - "type": "unsigned int", + "m_zoneEvent": { + "type": "std::string", "id": 4, - "offset": 84, - "flags": 135, + "offset": 96, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1898715531 + "hash": 2234553529 } } }, - "1610760886": { - "name": "class ParticipantPipData*", + "2110584854": { + "name": "class QuestEffectDisplayInfo*", "bases": [ "PropertyClass" ], - "hash": 1610760886, + "hash": 2110584854, "properties": { - "m_partID": { - "type": "gid", + "m_companionID": { + "type": "int", "id": 0, "offset": 72, - "flags": 7, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 821435516 + "hash": 1594812875 }, - "m_pips": { - "type": "class SharedPointer", + "m_serializedEffects": { + "type": "std::string", "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1511196686 - }, - "m_acq": { - "type": "unsigned int", - "id": 2, "offset": 96, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 478431554 - }, - "m_arch": { - "type": "unsigned int", - "id": 3, - "offset": 100, - "flags": 7, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 430613611 - }, - "m_archPoints": { - "type": "float", - "id": 4, - "offset": 104, + "hash": 3446153863 + } + } + }, + "387006880": { + "name": "class MadlibIconDefinition*", + "bases": [ + "PropertyClass" + ], + "hash": 387006880, + "properties": { + "m_madlibIconDataList": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 2151979634 + "pointer": true, + "hash": 3692830504 } } }, - "45152925": { - "name": "class CylinderGeomParams", + "825324376": { + "name": "class StatisticEffect", "bases": [ - "GeomParams", + "GameEffectBase", "PropertyClass" ], - "hash": 45152925, + "hash": 825324376, "properties": { - "m_eType": { - "type": "enum ProxyType", + "m_currentTickCount": { + "type": "double", "id": 0, - "offset": 72, - "flags": 2097159, + "offset": 80, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1656534066, - "enum_options": { - "ProxyTypeBox": 0, - "ProxyTypeRay": 1, - "ProxyTypeSphere": 2, - "ProxyTypeCylinder": 3, - "ProxyTypeTube": 4, - "ProxyTypePlane": 5, - "ProxyTypeMesh": 6, - "ProxyTypeInvalid": 7 - } + "hash": 2533274692 }, - "m_fRadius": { - "type": "float", + "m_effectNameID": { + "type": "unsigned int", "id": 1, - "offset": 80, - "flags": 7, + "offset": 96, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 787972805 + "hash": 1204067144 }, - "m_fLength": { - "type": "float", + "m_bIsOnPet": { + "type": "bool", "id": 2, - "offset": 84, - "flags": 7, + "offset": 73, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 558261279 - } - } - }, - "1188278876": { - "name": "class DamageScalarOverride*", - "bases": [ - "CombatRule", - "PropertyClass" - ], - "hash": 1188278876, - "properties": { - "m_scalarDamage": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 31, + "hash": 522593303 + }, + "m_originatorID": { + "type": "gid", + "id": 3, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1865068300 + "hash": 1131810019 }, - "m_scalarPierce": { - "type": "float", - "id": 1, - "offset": 76, + "m_itemSlotID": { + "type": "unsigned int", + "id": 4, + "offset": 112, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1895747595 + }, + "m_internalID": { + "type": "int", + "id": 5, + "offset": 92, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1643137924 + }, + "m_endTime": { + "type": "unsigned int", + "id": 6, + "offset": 88, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 196427621 + "hash": 716479635 }, - "m_scalarResist": { - "type": "float", - "id": 2, - "offset": 80, + "m_lookupIndex": { + "type": "int", + "id": 7, + "offset": 128, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 270448583 + "hash": 1626623948 } } }, - "1188083511": { - "name": "class PlaySoundInfo", + "1674024026": { + "name": "class SharedPointer", "bases": [ + "ControlPopupButton", + "ControlButton", + "Window", "PropertyClass" ], - "hash": 1188083511, + "hash": 1674024026, "properties": { - "m_assetName": { + "m_sName": { "type": "std::string", "id": 0, - "offset": 72, - "flags": 7, + "offset": 80, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1513131580 + "hash": 2306437263 }, - "m_gain": { - "type": "float", + "m_Children": { + "type": "class SharedPointer", "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 309609622 + "pointer": true, + "hash": 2621225959 }, - "m_loopCount": { - "type": "int", + "m_Style": { + "type": "unsigned int", "id": 2, - "offset": 108, - "flags": 7, + "offset": 152, + "flags": 1048583, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 865634717 + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152, + "POPDOWN_SIBLINGS": 67108864, + "DISABLE_CHILDREN": 134217728, + "HIDE_SIBLINGS": 268435456, + "POPUP_ON_HOVER": 536870912 + } }, - "m_stream": { - "type": "bool", + "m_Flags": { + "type": "unsigned int", "id": 3, - "offset": 112, - "flags": 7, + "offset": 156, + "flags": 1048583, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 963856287 + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } }, - "m_priority": { - "type": "int", + "m_Window": { + "type": "class Rect", "id": 4, - "offset": 116, - "flags": 7, + "offset": 160, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1235205852 + "hash": 3105139380 }, - "m_category": { - "type": "enum AudioCategory", + "m_fTargetAlpha": { + "type": "float", "id": 5, - "offset": 120, - "flags": 2097159, + "offset": 212, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2951251982, - "enum_options": { - "AudioCategory_Irrelevent": 0, - "AudioCategory_Accoustic": 1, - "AudioCategory_Noise": 2, - "AudioCategory_Music": 3 - } + "hash": 1809129834 }, - "m_pitch": { + "m_fDisabledAlpha": { "type": "float", "id": 6, - "offset": 124, - "flags": 7, + "offset": 216, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 896371695 + "hash": 1389987675 }, - "m_maxInstances": { - "type": "int", + "m_fAlpha": { + "type": "float", "id": 7, - "offset": 128, - "flags": 7, + "offset": 208, + "flags": 65671, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1704365544 + "hash": 482130755 }, - "m_pan": { - "type": "float", + "m_pWindowStyle": { + "type": "class SharedPointer", "id": 8, - "offset": 132, - "flags": 7, + "offset": 232, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 357246518 - } - } - }, - "65003719": { - "name": "class Requirement*", - "bases": [ - "PropertyClass" - ], - "hash": 65003719, - "properties": { - "m_applyNOT": { - "type": "bool", - "id": 0, - "offset": 72, - "flags": 31, + "pointer": true, + "hash": 3623628394 + }, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1746328074, - "enum_options": { - "__DEFAULT": 0 - } + "hash": 2102211316 }, - "m_operator": { - "type": "enum Requirement::Operator", - "id": 1, - "offset": 76, - "flags": 2097183, + "m_sScript": { + "type": "std::string", + "id": 10, + "offset": 352, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2672792317, - "enum_options": { - "ROP_AND": 0, - "ROP_OR": 1, - "__DEFAULT": "ROP_AND" - } - } - } - }, - "1611442142": { - "name": "class SharedPointer", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1611442142, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, + "hash": 1846695875 + }, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 + "hash": 3389835433 }, - "m_hiddenQuestsData": { - "type": "std::string", - "id": 1, - "offset": 128, - "flags": 575, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2912992358 - } - } - }, - "52230224": { - "name": "class std::list >", - "bases": [], - "hash": 52230224, - "properties": {} - }, - "49336727": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 49336727, - "properties": { - "m_socketWrenchTemplateID": { - "type": "gid", - "id": 0, - "offset": 72, - "flags": 7, + "hash": 2547159940 + }, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1148289553 + "hash": 1513510520 }, - "m_lowestEquipLevelInclusive": { - "type": "int", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 1282442502 + "hash": 2587533771 }, - "m_hightestEquipLevelInclusive": { - "type": "int", - "id": 2, - "offset": 84, - "flags": 7, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1111256264 - } - } - }, - "1188278900": { - "name": "class DamageScalarOverride", - "bases": [ - "CombatRule", - "PropertyClass" - ], - "hash": 1188278900, - "properties": { - "m_scalarDamage": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 31, + "hash": 3091503757 + }, + "m_bToggle": { + "type": "bool", + "id": 16, + "offset": 608, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1865068300 + "hash": 2071810903 }, - "m_scalarPierce": { - "type": "float", - "id": 1, - "offset": 76, - "flags": 31, + "m_bButtonDown": { + "type": "bool", + "id": 17, + "offset": 609, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 196427621 + "hash": 840041705 }, - "m_scalarResist": { - "type": "float", - "id": 2, - "offset": 80, - "flags": 31, + "m_sLabel": { + "type": "std::wstring", + "id": 18, + "offset": 616, + "flags": 4194439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 270448583 - } - } - }, - "46840221": { - "name": "class GuildMuseumCuratorOption*", - "bases": [ - "ServiceOptionBase", - "PropertyClass" - ], - "hash": 46840221, - "properties": { - "m_serviceName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, + "hash": 2207009163 + }, + "m_labelOffset": { + "type": "class Rect", + "id": 19, + "offset": 832, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2206028813 + "hash": 1990646723 }, - "m_iconKey": { - "type": "std::string", - "id": 1, - "offset": 168, - "flags": 31, + "m_pButton": { + "type": "class SharedPointer", + "id": 20, + "offset": 656, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 2457138637 + "pointer": true, + "hash": 1543855875 }, - "m_displayKey": { - "type": "std::string", - "id": 2, - "offset": 104, - "flags": 31, + "m_HotKey": { + "type": "unsigned int", + "id": 21, + "offset": 672, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3023276954 + "hash": 1631553409 }, - "m_serviceIndex": { - "type": "unsigned int", - "id": 3, - "offset": 204, - "flags": 31, + "m_Color": { + "type": "class Color", + "id": 22, + "offset": 676, + "flags": 262279, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2103126710 + "hash": 1753714077 }, - "m_forceInteract": { + "m_bCursorOver": { "type": "bool", - "id": 4, - "offset": 200, - "flags": 31, + "id": 23, + "offset": 689, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1705789564 - } - } - }, - "1613621836": { - "name": "class MoveController", - "bases": [ - "MoveBehavior::Controller", - "PropertyClass" - ], - "hash": 1613621836, - "properties": { - "m_bCollisionDisabled": { + "hash": 283981103 + }, + "m_bAbortWhenCursorNotOver": { "type": "bool", - "id": 0, - "offset": 120, - "flags": 7, + "id": 24, + "offset": 706, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1732895577 + "hash": 325405258 }, - "m_bVehicleMode": { + "m_bHotKeyDown": { "type": "bool", - "id": 1, - "offset": 121, - "flags": 7, + "id": 25, + "offset": 680, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1597295002 + "hash": 616989185 }, - "m_fForwardModifier": { + "m_fTime": { "type": "float", - "id": 2, - "offset": 124, - "flags": 7, + "id": 26, + "offset": 684, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1173988321 + "hash": 883746156 }, - "m_fBackModifier": { - "type": "float", - "id": 3, - "offset": 128, - "flags": 7, + "m_bGreyed": { + "type": "bool", + "id": 27, + "offset": 688, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 148042045 + "hash": 1566556053 }, - "m_fStrafeModifier": { + "m_fMaxScale": { "type": "float", - "id": 4, - "offset": 132, - "flags": 7, + "id": 28, + "offset": 692, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 226084913 + "hash": 2070186635 }, - "m_fTurnModifier": { + "m_fScaleSpeed": { "type": "float", - "id": 5, - "offset": 136, - "flags": 7, + "id": 29, + "offset": 696, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2134998805 + "hash": 1457135702 }, - "m_fAccelerationModifier": { - "type": "float", - "id": 6, - "offset": 144, - "flags": 7, + "m_bUseDropShadow": { + "type": "bool", + "id": 30, + "offset": 704, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 592902742 + "hash": 93063037 }, - "m_fDecelerationModifier": { - "type": "float", - "id": 7, - "offset": 148, - "flags": 7, + "m_bUseOutline": { + "type": "bool", + "id": 31, + "offset": 705, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1770082811 + "hash": 744292994 }, - "m_bPaused": { + "m_pGreyedState": { + "type": "class SharedPointer", + "id": 32, + "offset": 768, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2703352263 + }, + "m_pNormalState": { + "type": "class SharedPointer", + "id": 33, + "offset": 752, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1887909808 + }, + "m_pHighlightedState": { + "type": "class SharedPointer", + "id": 34, + "offset": 784, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2200177608 + }, + "m_pSelectedState": { + "type": "class SharedPointer", + "id": 35, + "offset": 800, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2266776432 + }, + "m_pDepressedState": { + "type": "class SharedPointer", + "id": 36, + "offset": 816, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1878185798 + }, + "m_bUp": { "type": "bool", - "id": 8, - "offset": 160, + "id": 37, + "offset": 880, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 269510906 + } + } + }, + "1228245429": { + "name": "class QuestEntry*", + "bases": [ + "PropertyClass" + ], + "hash": 1228245429, + "properties": { + "m_questName": { + "type": "std::string", + "id": 0, + "offset": 80, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1899182391 + "hash": 1702112846 }, - "m_spCommand": { - "type": "class SharedPointer", - "id": 9, - "offset": 168, + "m_questNameID": { + "type": "unsigned int", + "id": 1, + "offset": 72, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 636010160 + "pointer": false, + "hash": 1530354349 }, - "m_Queue": { - "type": "class SharedPointer", - "id": 10, - "offset": 184, + "m_goalEntries": { + "type": "class GoalEntryFull*", + "id": 2, + "offset": 232, "flags": 31, "container": "List", "dynamic": true, "singleton": false, "pointer": true, - "hash": 1055578835 + "hash": 3351009655 } } }, - "46182351": { - "name": "class CastleBlockDoorBehavior", + "2110562141": { + "name": "class SharedPointer", "bases": [ - "BehaviorInstance", "PropertyClass" ], - "hash": 46182351, + "hash": 2110562141, "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", + "m_zoneGID": { + "type": "gid", "id": 0, - "offset": 104, - "flags": 39, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 + "hash": 1907651624 + }, + "m_objectGID": { + "type": "gid", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2037310403 } } }, - "1612907381": { - "name": "class FlyThroughDataManager*", + "386133181": { + "name": "class PlayDeck*", "bases": [ "PropertyClass" ], - "hash": 1612907381, + "hash": 386133181, "properties": { - "m_points": { - "type": "struct PointData", + "m_deckToSave": { + "type": "class SharedPointer", "id": 0, "offset": 72, "flags": 7, "container": "Vector", "dynamic": true, "singleton": false, - "pointer": false, - "hash": 1791272219 + "pointer": true, + "hash": 1977265360 }, - "m_cameraSpeed": { - "type": "float", + "m_graveYardToSave": { + "type": "class SharedPointer", "id": 1, "offset": 96, "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2177136625 - }, - "m_zoneName": { - "type": "std::string", - "id": 2, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, + "container": "Vector", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 2171167736 + "pointer": true, + "hash": 3785577598 } } }, - "46079293": { - "name": "class AlphaMaskTextureD3D*", + "825321304": { + "name": "class StatisticEffect*", "bases": [ - "TextureD3D", - "Texture", + "GameEffectBase", "PropertyClass" ], - "hash": 46079293, + "hash": 825321304, "properties": { - "m_sFilename": { - "type": "std::string", + "m_currentTickCount": { + "type": "double", "id": 0, - "offset": 104, - "flags": 131207, + "offset": 80, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2431512111 + "hash": 2533274692 }, - "m_bAlphaChannel": { - "type": "bool", + "m_effectNameID": { + "type": "unsigned int", "id": 1, - "offset": 137, - "flags": 135, + "offset": 96, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1780697684 + "hash": 1204067144 }, - "m_bDoubleSided": { + "m_bIsOnPet": { "type": "bool", "id": 2, - "offset": 138, - "flags": 135, + "offset": 73, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1054874233 + "hash": 522593303 }, - "m_bMipMap": { - "type": "bool", + "m_originatorID": { + "type": "gid", "id": 3, - "offset": 139, - "flags": 135, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1791042393 + "hash": 1131810019 + }, + "m_itemSlotID": { + "type": "unsigned int", + "id": 4, + "offset": 112, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1895747595 + }, + "m_internalID": { + "type": "int", + "id": 5, + "offset": 92, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1643137924 + }, + "m_endTime": { + "type": "unsigned int", + "id": 6, + "offset": 88, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 716479635 + }, + "m_lookupIndex": { + "type": "int", + "id": 7, + "offset": 128, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1626623948 } } }, - "1189411886": { - "name": "class SharedPointer", + "1227787104": { + "name": "class GraphicalPvPTourneyCurrency", "bases": [ - "PulseEffectTemplate", - "GameEffectTemplate", + "GraphicalSpell", + "Spell", "PropertyClass" ], - "hash": 1189411886, + "hash": 1227787104, "properties": { - "m_effectName": { - "type": "std::string", + "m_templateID": { + "type": "unsigned int", "id": 0, - "offset": 72, - "flags": 7, + "offset": 128, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2029161513 + "hash": 1286746870 }, - "m_effectCategory": { - "type": "std::string", + "m_enchantment": { + "type": "unsigned int", "id": 1, - "offset": 104, - "flags": 7, + "offset": 80, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1852673222 + "hash": 2217886818 }, - "m_sortOrder": { - "type": "int", + "m_pipCost": { + "type": "class SharedPointer", "id": 2, - "offset": 148, + "offset": 176, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1411218206 + "pointer": true, + "hash": 3605704820 }, - "m_duration": { - "type": "double", + "m_regularAdjust": { + "type": "int", "id": 3, "offset": 192, - "flags": 7, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2727932435 + "hash": 1420453335 }, - "m_stackingCategories": { - "type": "std::string", + "m_magicSchoolID": { + "type": "unsigned int", "id": 4, - "offset": 160, + "offset": 136, "flags": 7, - "container": "List", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 1774497525 + "hash": 893146499 }, - "m_isPersistent": { - "type": "bool", + "m_accuracy": { + "type": "unsigned char", "id": 5, - "offset": 153, + "offset": 132, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 923861920 + "hash": 2273914939 }, - "m_bIsOnPet": { + "m_treasureCard": { "type": "bool", "id": 6, - "offset": 154, - "flags": 7, + "offset": 197, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 522593303 + "hash": 1764879128 }, - "m_isPublic": { + "m_battleCard": { "type": "bool", "id": 7, - "offset": 152, - "flags": 7, + "offset": 198, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1728439822 + "hash": 1332843753 }, - "m_visualEffectAddName": { - "type": "std::string", + "m_itemCard": { + "type": "bool", "id": 8, - "offset": 200, + "offset": 199, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3382086694 + "hash": 1683654300 }, - "m_visualEffectRemoveName": { - "type": "std::string", + "m_sideBoard": { + "type": "bool", "id": 9, - "offset": 232, + "offset": 200, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1541697323 + "hash": 1897838368 }, - "m_onAddFunctorName": { - "type": "std::string", + "m_spellID": { + "type": "unsigned int", "id": 10, - "offset": 280, - "flags": 7, + "offset": 204, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1561843107 + "hash": 1697483258 }, - "m_onRemoveFunctorName": { - "type": "std::string", + "m_leavesPlayWhenCastOverride": { + "type": "bool", "id": 11, - "offset": 312, - "flags": 7, + "offset": 216, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2559017864 + "hash": 874407398 }, - "m_stackingRule": { - "type": "enum STACKING_RULE", + "m_cloaked": { + "type": "bool", "id": 12, - "offset": 144, - "flags": 2097159, + "offset": 196, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 431568889, - "enum_options": { - "STACKING_ALLOWED": 0, - "STACKING_NOSTACK": 1, - "STACKING_REPLACE": 2 - } + "hash": 7349510 }, - "m_pulsePeriod": { - "type": "double", + "m_enchantmentSpellIsItemCard": { + "type": "bool", "id": 13, - "offset": 360, - "flags": 7, + "offset": 76, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3960618585 + "hash": 531590701 }, - "m_pulseEventName": { - "type": "std::string", + "m_premutationSpellID": { + "type": "unsigned int", "id": 14, - "offset": 368, - "flags": 7, + "offset": 112, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1858926599 + "hash": 1530256370 }, - "m_statName": { - "type": "std::string", + "m_enchantedThisCombat": { + "type": "bool", "id": 15, - "offset": 408, - "flags": 7, + "offset": 77, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1866211576 + "hash": 1895738923 }, - "m_statMaxName": { - "type": "std::string", + "m_paramOverrides": { + "type": "class SharedPointer", "id": 16, - "offset": 440, - "flags": 7, + "offset": 224, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2061635599 + }, + "m_subEffectMeta": { + "type": "class SharedPointer", + "id": 17, + "offset": 240, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1944101106 + }, + "m_delayEnchantment": { + "type": "bool", + "id": 18, + "offset": 257, + "flags": 287, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3164833118 + "hash": 191336919 }, - "m_damage": { - "type": "int", - "id": 17, - "offset": 472, - "flags": 7, + "m_PvE": { + "type": "bool", + "id": 19, + "offset": 264, + "flags": 287, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 351627865 - } - } - }, - "1612333390": { - "name": "class SharedPointer", - "bases": [ - "PhysicsBehavior", - "CollisionBehavior", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1612333390, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, + "hash": 269492350 + }, + "m_delayEnchantmentOrder": { + "type": "enum SpellEffect::kDelayOrder", + "id": 20, + "offset": 72, + "flags": 287, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 + "hash": 2526055263, + "enum_options": { + "SpellEffect::kAnyOrder": 0, + "SpellEffect::kFirst": 1, + "SpellEffect::kSecond": 2 + } }, - "m_nHolderGID": { - "type": "gid", - "id": 1, - "offset": 352, + "m_roundAddedTC": { + "type": "int", + "id": 21, + "offset": 260, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 133708664 + "hash": 112365451 }, - "m_vHoldOffset": { - "type": "class Vector3D", - "id": 2, - "offset": 360, - "flags": 31, + "m_secondarySchoolID": { + "type": "unsigned int", + "id": 22, + "offset": 304, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3766080710 + "hash": 2081206026 }, - "m_fHoldForce": { - "type": "float", - "id": 3, - "offset": 372, + "m_fusionState": { + "type": "enum Spell::FusionState", + "id": 23, + "offset": 308, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1792175219 + "hash": 835324539, + "enum_options": { + "FS_Invalid": 0, + "FS_Partial": 1, + "FS_Valid": 2 + } } } }, - "1188420394": { - "name": "class SharedPointer", + "385438871": { + "name": "class HouseZone", "bases": [ "PropertyClass" ], - "hash": 1188420394, + "hash": 385438871, "properties": { - "m_buttonName": { + "m_displayName": { "type": "std::string", "id": 0, "offset": 72, @@ -561718,9 +373260,9 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 3388080120 + "hash": 2446900370 }, - "m_buttonStringKey": { + "m_zoneName": { "type": "std::string", "id": 1, "offset": 104, @@ -561729,3032 +373271,3358 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 3226477495 - }, - "m_displayIndex": { - "type": "int", - "id": 2, - "offset": 136, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1250551048 - }, - "m_minimumLevel": { - "type": "int", - "id": 3, - "offset": 140, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 327062478 - }, - "m_registryEntry": { - "type": "std::string", - "id": 4, - "offset": 144, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3056380390 - }, - "m_worldPath": { + "hash": 2171167736 + } + } + }, + "385418391": { + "name": "class HouseZone*", + "bases": [ + "PropertyClass" + ], + "hash": 385418391, + "properties": { + "m_displayName": { "type": "std::string", - "id": 5, - "offset": 176, + "id": 0, + "offset": 72, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1846829584 + "hash": 2446900370 }, - "m_spiralShowcaseStringKey": { + "m_zoneName": { "type": "std::string", - "id": 6, - "offset": 208, + "id": 1, + "offset": 104, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2723709283 + "hash": 2171167736 } } }, - "1611967301": { - "name": "class SharedPointer", + "1675072686": { + "name": "class SharedPointer", "bases": [ "PropertyClass" ], - "hash": 1611967301, + "hash": 1675072686, "properties": { - "m_playerGID": { + "m_scheduleID": { "type": "gid", "id": 0, "offset": 72, - "flags": 7, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 578537369 + "hash": 1439120946 }, - "m_messageBoardMessageType": { - "type": "int", + "m_bracketID": { + "type": "gid", "id": 1, "offset": 80, - "flags": 7, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1435388398 + "hash": 441272961 }, - "m_playerName": { - "type": "std::string", + "m_bracketState": { + "type": "unsigned int", "id": 2, "offset": 88, - "flags": 7, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3407553929 + "hash": 790945386 }, - "m_messageBoardActivityType": { + "m_creationTime": { "type": "int", "id": 3, - "offset": 120, - "flags": 7, + "offset": 92, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1226468534 + "hash": 1930866142 }, - "m_worldID": { - "type": "unsigned int", + "m_registrationOpenTime": { + "type": "int", "id": 4, - "offset": 124, - "flags": 7, + "offset": 96, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 397177058 + "hash": 313608566 }, - "m_partyNameLocale": { + "m_matchStartTime": { "type": "int", "id": 5, - "offset": 128, - "flags": 7, + "offset": 100, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 104095035 + "hash": 1241735780 }, - "m_centralSeconds": { + "m_tournamentNameID": { "type": "unsigned int", "id": 6, - "offset": 132, - "flags": 7, + "offset": 104, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1225584997 + "hash": 1799846440 }, - "m_removalTime": { + "m_tournamentDuration": { "type": "unsigned int", "id": 7, - "offset": 136, - "flags": 7, + "offset": 108, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1506221490 + "hash": 475739392 }, - "m_creationTime": { - "type": "unsigned int", + "m_minLevel": { + "type": "int", "id": 8, - "offset": 140, - "flags": 7, + "offset": 112, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2142268593 + "hash": 1496818518 }, - "m_playerResponses": { - "type": "gid", + "m_maxLevel": { + "type": "int", "id": 9, - "offset": 144, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1006378727 - } - } - }, - "1188387778": { - "name": "class SharedPointer", - "bases": [ - "Requirement", - "PropertyClass" - ], - "hash": 1188387778, - "properties": { - "m_applyNOT": { - "type": "bool", - "id": 0, - "offset": 72, + "offset": 116, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1746328074, - "enum_options": { - "__DEFAULT": 0 - } - }, - "m_operator": { - "type": "enum Requirement::Operator", - "id": 1, - "offset": 76, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2672792317, - "enum_options": { - "ROP_AND": 0, - "ROP_OR": 1, - "__DEFAULT": "ROP_AND" - } - }, - "m_entryName": { - "type": "std::string", - "id": 2, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2055270734 + "hash": 146363288 }, - "m_displayName": { + "m_overrideTourneyName": { "type": "std::string", - "id": 3, - "offset": 112, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2446900370 - }, - "m_isQuestRegistry": { - "type": "bool", - "id": 4, - "offset": 144, - "flags": 7, + "id": 10, + "offset": 120, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1388902362 + "hash": 2611946162 }, - "m_questName": { + "m_firstTourneyNameSTKey": { "type": "std::string", - "id": 5, + "id": 11, "offset": 152, - "flags": 268435463, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1702112846, - "enum_options": { - "__BASECLASS": "QuestTemplate" - } - } - } - }, - "46267421": { - "name": "class AlternateTurnsCombatRule", - "bases": [ - "CombatRule", - "PropertyClass" - ], - "hash": 46267421, - "properties": { - "m_alternateTurns": { - "type": "bool", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1974126767 - }, - "m_pipsForBothTeamsAtOnce": { - "type": "bool", - "id": 1, - "offset": 73, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 289530295 - } - } - }, - "1612511577": { - "name": "class ClientPlayGraphicOnActorAction", - "bases": [ - "PlayGraphicOnActorAction", - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 1612511577, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 + "hash": 2731391050 }, - "m_assetName": { + "m_secondTourneyNameSTKey": { "type": "std::string", - "id": 2, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513131580 - }, - "m_bDontFlipActorYaw": { - "type": "bool", - "id": 3, - "offset": 152, - "flags": 7, + "id": 12, + "offset": 184, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 632297791 + "hash": 1747016318 } } }, - "46407369": { - "name": "enum ClassProjectType", - "bases": [], - "hash": 46407369, - "properties": {} - }, - "1189049883": { - "name": "class GameEffectTimerDisplayBehaviorTemplate*", + "826192241": { + "name": "class SharedPointer", "bases": [ - "BehaviorTemplate", + "GraphicalSpell", + "Spell", "PropertyClass" ], - "hash": 1189049883, + "hash": 826192241, "properties": { - "m_behaviorName": { - "type": "std::string", + "m_templateID": { + "type": "unsigned int", "id": 0, - "offset": 72, - "flags": 7, + "offset": 128, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3130754092 + "hash": 1286746870 }, - "m_effectName": { - "type": "std::string", + "m_enchantment": { + "type": "unsigned int", "id": 1, - "offset": 120, - "flags": 7, + "offset": 80, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2029161513 + "hash": 2217886818 }, - "m_textKey": { - "type": "std::string", + "m_pipCost": { + "type": "class SharedPointer", "id": 2, - "offset": 152, + "offset": 176, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1720060457 + "pointer": true, + "hash": 3605704820 }, - "m_height": { - "type": "float", + "m_regularAdjust": { + "type": "int", "id": 3, - "offset": 184, - "flags": 7, + "offset": 192, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 602977104 + "hash": 1420453335 }, - "m_zOffset": { - "type": "float", + "m_magicSchoolID": { + "type": "unsigned int", "id": 4, - "offset": 188, + "offset": 136, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 736134072 + "hash": 893146499 }, - "m_red": { + "m_accuracy": { "type": "unsigned char", "id": 5, - "offset": 192, + "offset": 132, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 904647115 + "hash": 2273914939 }, - "m_green": { - "type": "unsigned char", + "m_treasureCard": { + "type": "bool", "id": 6, - "offset": 193, - "flags": 7, + "offset": 197, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1433403873 + "hash": 1764879128 }, - "m_blue": { - "type": "unsigned char", + "m_battleCard": { + "type": "bool", "id": 7, - "offset": 194, - "flags": 7, + "offset": 198, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 856840600 + "hash": 1332843753 }, - "m_triggers": { - "type": "class SharedPointer", + "m_itemCard": { + "type": "bool", "id": 8, - "offset": 200, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 3290329276 - } - } - }, - "1613056142": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1613056142, - "properties": { - "m_altMusicFileName": { - "type": "std::string", - "id": 0, - "offset": 72, + "offset": 199, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2103410014 + "hash": 1683654300 }, - "m_requirements": { - "type": "class RequirementList", - "id": 1, - "offset": 104, + "m_sideBoard": { + "type": "bool", + "id": 9, + "offset": 200, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2840988582 - } - } - }, - "47493071": { - "name": "class CastleBlockDoorBehavior*", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 47493071, - "properties": { - "m_behaviorTemplateNameID": { + "hash": 1897838368 + }, + "m_spellID": { "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, + "id": 10, + "offset": 204, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 - } - } - }, - "1190617662": { - "name": "class WizStatisticOverrideEffect*", - "bases": [ - "StatisticEffect", - "GameEffectBase", - "PropertyClass" - ], - "hash": 1190617662, - "properties": { - "m_currentTickCount": { - "type": "double", - "id": 0, - "offset": 80, - "flags": 63, + "hash": 1697483258 + }, + "m_leavesPlayWhenCastOverride": { + "type": "bool", + "id": 11, + "offset": 216, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2533274692 + "hash": 874407398 }, - "m_effectNameID": { + "m_cloaked": { + "type": "bool", + "id": 12, + "offset": 196, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 7349510 + }, + "m_enchantmentSpellIsItemCard": { + "type": "bool", + "id": 13, + "offset": 76, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 531590701 + }, + "m_premutationSpellID": { "type": "unsigned int", - "id": 1, - "offset": 96, - "flags": 63, + "id": 14, + "offset": 112, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1204067144 + "hash": 1530256370 }, - "m_bIsOnPet": { + "m_enchantedThisCombat": { "type": "bool", - "id": 2, - "offset": 73, + "id": 15, + "offset": 77, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 522593303 + "hash": 1895738923 }, - "m_originatorID": { - "type": "gid", - "id": 3, - "offset": 104, - "flags": 39, + "m_paramOverrides": { + "type": "class SharedPointer", + "id": 16, + "offset": 224, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2061635599 + }, + "m_subEffectMeta": { + "type": "class SharedPointer", + "id": 17, + "offset": 240, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1944101106 + }, + "m_delayEnchantment": { + "type": "bool", + "id": 18, + "offset": 257, + "flags": 287, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1131810019 + "hash": 191336919 }, - "m_itemSlotID": { - "type": "unsigned int", - "id": 4, - "offset": 112, - "flags": 63, + "m_PvE": { + "type": "bool", + "id": 19, + "offset": 264, + "flags": 287, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1895747595 + "hash": 269492350 }, - "m_internalID": { + "m_delayEnchantmentOrder": { + "type": "enum SpellEffect::kDelayOrder", + "id": 20, + "offset": 72, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2526055263, + "enum_options": { + "SpellEffect::kAnyOrder": 0, + "SpellEffect::kFirst": 1, + "SpellEffect::kSecond": 2 + } + }, + "m_roundAddedTC": { "type": "int", - "id": 5, - "offset": 92, - "flags": 63, + "id": 21, + "offset": 260, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1643137924 + "hash": 112365451 }, - "m_endTime": { + "m_secondarySchoolID": { "type": "unsigned int", - "id": 6, - "offset": 88, - "flags": 31, + "id": 22, + "offset": 304, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 716479635 + "hash": 2081206026 }, - "m_lookupIndex": { - "type": "int", - "id": 7, - "offset": 128, + "m_fusionState": { + "type": "enum Spell::FusionState", + "id": 23, + "offset": 308, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1626623948 + "hash": 835324539, + "enum_options": { + "FS_Invalid": 0, + "FS_Partial": 1, + "FS_Valid": 2 + } } } }, - "1612908149": { - "name": "class FlyThroughDataManager", + "1228900789": { + "name": "class QuestEntry", "bases": [ "PropertyClass" ], - "hash": 1612908149, + "hash": 1228900789, "properties": { - "m_points": { - "type": "struct PointData", + "m_questName": { + "type": "std::string", "id": 0, - "offset": 72, - "flags": 7, - "container": "Vector", - "dynamic": true, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 1791272219 + "hash": 1702112846 }, - "m_cameraSpeed": { - "type": "float", + "m_questNameID": { + "type": "unsigned int", "id": 1, - "offset": 96, - "flags": 7, + "offset": 72, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2177136625 + "hash": 1530354349 }, - "m_zoneName": { - "type": "std::string", + "m_goalEntries": { + "type": "class GoalEntryFull*", "id": 2, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, + "offset": 232, + "flags": 31, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 2171167736 + "pointer": true, + "hash": 3351009655 } } }, - "47104000": { - "name": "class WizardClientZoneTokenBehavior*", + "2110945377": { + "name": "class ClearCameraMappingCinematicAction", "bases": [ - "ClientZoneTokenBehavior", - "ZoneTokenBehavior", - "BehaviorInstance", + "CinematicAction", "PropertyClass" ], - "hash": 47104000, + "hash": 2110945377, "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", + "m_timeOffset": { + "type": "float", "id": 0, - "offset": 104, - "flags": 39, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 - }, - "m_tokens": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 27, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621026866 + "hash": 2237098605 } } }, - "1190617652": { - "name": "class WizStatisticOverrideEffect", + "825821228": { + "name": "class SharedPointer", "bases": [ - "StatisticEffect", - "GameEffectBase", "PropertyClass" ], - "hash": 1190617652, + "hash": 825821228, "properties": { - "m_currentTickCount": { - "type": "double", + "m_elementName": { + "type": "std::string", "id": 0, - "offset": 80, - "flags": 63, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2533274692 + "hash": 2195875046 }, - "m_effectNameID": { - "type": "unsigned int", + "m_assetFilename": { + "type": "std::string", "id": 1, - "offset": 96, - "flags": 63, + "offset": 104, + "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1204067144 + "hash": 2116426332 }, - "m_bIsOnPet": { - "type": "bool", + "m_geometryName": { + "type": "std::string", "id": 2, - "offset": 73, - "flags": 31, + "offset": 136, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 522593303 + "hash": 1734031816 }, - "m_originatorID": { - "type": "gid", + "m_materialName": { + "type": "std::string", "id": 3, - "offset": 104, - "flags": 39, + "offset": 168, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1131810019 + "hash": 1878140043 }, - "m_itemSlotID": { + "m_flags": { "type": "unsigned int", "id": 4, - "offset": 112, - "flags": 63, + "offset": 200, + "flags": 1048583, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1895747595 + "hash": 1005801050, + "enum_options": { + "EF_AVAILABLE_AT_CREATION": 1 + } }, - "m_internalID": { - "type": "int", + "m_color": { + "type": "class Color", "id": 5, - "offset": 92, - "flags": 63, + "offset": 204, + "flags": 262151, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1643137924 + "hash": 1791663549 }, - "m_endTime": { - "type": "unsigned int", + "m_id": { + "type": "unsigned short", "id": 6, - "offset": 88, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 716479635 - }, - "m_lookupIndex": { - "type": "int", - "id": 7, - "offset": 128, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1626623948 - } - } - }, - "46907392": { - "name": "class WizardClientZoneTokenBehavior", - "bases": [ - "ClientZoneTokenBehavior", - "ZoneTokenBehavior", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 46907392, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, + "offset": 208, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 - }, - "m_tokens": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 27, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621026866 + "hash": 2644168661 } } }, - "1613581670": { - "name": "class HousingLayoutObject*", + "1675105539": { + "name": "class SharedPointer", "bases": [ + "ReqNumeric", + "Requirement", "PropertyClass" ], - "hash": 1613581670, + "hash": 1675105539, "properties": { - "m_templateID": { - "type": "unsigned int", + "m_applyNOT": { + "type": "bool", "id": 0, "offset": 72, - "flags": 7, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1286746870 + "hash": 1746328074, + "enum_options": { + "__DEFAULT": 0 + } }, - "m_positionX": { - "type": "float", + "m_operator": { + "type": "enum Requirement::Operator", "id": 1, "offset": 76, - "flags": 7, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 837995844 + "hash": 2672792317, + "enum_options": { + "ROP_AND": 0, + "ROP_OR": 1, + "__DEFAULT": "ROP_AND" + } }, - "m_positionY": { + "m_numericValue": { "type": "float", "id": 2, "offset": 80, - "flags": 7, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 837995845 + "hash": 521915239 }, - "m_positionZ": { - "type": "float", + "m_operatorType": { + "type": "enum ReqNumeric::OPERATOR_TYPE", "id": 3, "offset": 84, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 837995846 - }, - "m_yaw": { - "type": "float", - "id": 4, - "offset": 88, - "flags": 7, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 357256328 + "hash": 2228122961, + "enum_options": { + "OPERATOR_UNKNOWN": 4294967295, + "OPERATOR_EQUALS": 0, + "OPERATOR_GREATER_THAN": 1, + "OPERATOR_LESS_THAN": 2, + "OPERATOR_GREATER_THAN_EQ": 3, + "OPERATOR_LESS_THAN_EQ": 4 + } } } }, - "1192544334": { - "name": "class CrownShopCategoryMenu*", + "385927390": { + "name": "class SharedPointer", "bases": [ + "PetTalentBaseTemplate", + "CoreTemplate", "PropertyClass" ], - "hash": 1192544334, + "hash": 385927390, "properties": { - "m_name": { - "type": "std::string", + "m_behaviors": { + "type": "class BehaviorTemplate*", "id": 0, "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, + "flags": 7, + "container": "Vector", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 1717359772 + "pointer": true, + "hash": 1197808594 }, - "m_ID": { - "type": "int", + "m_talentName": { + "type": "std::string", "id": 1, - "offset": 104, - "flags": 31, + "offset": 96, + "flags": 134217735, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2090585127 + "hash": 2455147588 }, - "m_description": { + "m_displayName": { "type": "std::string", "id": 2, - "offset": 112, - "flags": 31, + "offset": 136, + "flags": 8388615, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1649374815 + "hash": 2446900370 }, - "m_iconResource": { + "m_description": { "type": "std::string", "id": 3, - "offset": 144, - "flags": 31, + "offset": 168, + "flags": 8388615, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2838396012 + "hash": 1649374815 }, - "m_categoryIDs": { - "type": "int", + "m_imageIndex": { + "type": "unsigned int", "id": 4, - "offset": 208, - "flags": 31, - "container": "List", - "dynamic": true, + "offset": 200, + "flags": 7, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 2145925880 + "hash": 1781902856 }, - "m_tags": { + "m_imageName": { "type": "std::string", "id": 5, - "offset": 176, - "flags": 31, + "offset": 208, + "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1717575210 - } - } - }, - "1191946562": { - "name": "class PlayComplexSoundCinematicAction", - "bases": [ - "CinematicAction", - "PropertyClass" - ], - "hash": 1191946562, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, + "hash": 2391520543 + }, + "m_rank": { + "type": "unsigned char", + "id": 6, + "offset": 240, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 + "hash": 857403388 }, - "m_cinematicSoundEmitterInfo": { - "type": "class SharedPointer", - "id": 1, - "offset": 80, - "flags": 7, + "m_breedsAsTalentName": { + "type": "std::string", + "id": 7, + "offset": 248, + "flags": 268435463, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2303770088 - } - } - }, - "821744484": { - "name": "class HousingPetMovementCompressed*", - "bases": [ - "PropertyClass" - ], - "hash": 821744484, - "properties": { - "m_compressedPetMovement": { - "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Vector", - "dynamic": true, - "singleton": false, "pointer": false, - "hash": 324140950 - } - } - }, - "1192136484": { - "name": "class TargetCritHit*", - "bases": [ - "PropertyClass" - ], - "hash": 1192136484, - "properties": { - "m_target": { - "type": "int", - "id": 0, - "offset": 72, + "hash": 2143399629, + "enum_options": { + "__BASECLASS": "PetTalentBaseTemplate" + } + }, + "m_bRetired": { + "type": "bool", + "id": 8, + "offset": 280, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 977980321 + "hash": 904227684, + "enum_options": { + "__DEFAULT": 0 + } }, - "m_mult": { - "type": "float", - "id": 1, - "offset": 76, + "m_unsearchable": { + "type": "bool", + "id": 9, + "offset": 281, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 309847129 + "hash": 1760679968, + "enum_options": { + "__DEFAULT": 0 + } }, - "m_blocked": { - "type": "bool", - "id": 2, - "offset": 80, + "m_effectList": { + "type": "class GameEffectInfo*", + "id": 10, + "offset": 288, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 924514724 + }, + "m_maxStatList": { + "type": "class PetStat", + "id": 11, + "offset": 304, + "flags": 7, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 863437063 + "hash": 2545839409 } } }, - "1996774704": { - "name": "class DOTEffect*", + "1231612728": { + "name": "class AnnounceTextCinematicAction", "bases": [ - "PulseEffect", - "GameEffectBase", + "CinematicAction", "PropertyClass" ], - "hash": 1996774704, + "hash": 1231612728, "properties": { - "m_currentTickCount": { - "type": "double", + "m_timeOffset": { + "type": "float", "id": 0, - "offset": 80, - "flags": 63, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2533274692 + "hash": 2237098605 }, - "m_effectNameID": { - "type": "unsigned int", + "m_text": { + "type": "std::string", "id": 1, - "offset": 96, - "flags": 63, + "offset": 112, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1204067144 + "hash": 1717580128 }, - "m_bIsOnPet": { + "m_onlyForPlayer": { "type": "bool", "id": 2, - "offset": 73, - "flags": 31, + "offset": 144, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 522593303 + "hash": 249913353 }, - "m_originatorID": { - "type": "gid", + "m_stringTable": { + "type": "std::string", "id": 3, - "offset": 104, - "flags": 39, + "offset": 80, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1131810019 + "hash": 3386025626 }, - "m_itemSlotID": { - "type": "unsigned int", + "m_effectParamMadlib": { + "type": "bool", "id": 4, - "offset": 112, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1895747595 - }, - "m_internalID": { - "type": "int", - "id": 5, - "offset": 92, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1643137924 - }, - "m_endTime": { - "type": "unsigned int", - "id": 6, - "offset": 88, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 716479635 - }, - "m_pulseCount": { - "type": "double", - "id": 7, - "offset": 128, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3507157375 - }, - "m_damageOverride": { - "type": "int", - "id": 8, - "offset": 136, - "flags": 63, + "offset": 146, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 213003481 + "hash": 292989178 } } }, - "820502102": { - "name": "class SharedPointer", + "2111393023": { + "name": "class GardeningPatchData*", "bases": [ "PropertyClass" ], - "hash": 820502102, - "properties": { - "m_danceSequenceList": { - "type": "unsigned char", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2597302176 - } - } + "hash": 2111393023, + "properties": {} }, - "1996754224": { - "name": "class DOTEffect", + "826433975": { + "name": "class SegmentationInputData*", "bases": [ - "PulseEffect", - "GameEffectBase", "PropertyClass" ], - "hash": 1996754224, + "hash": 826433975, "properties": { - "m_currentTickCount": { - "type": "double", + "m_bIsValidSegmentationData": { + "type": "bool", "id": 0, - "offset": 80, - "flags": 63, + "offset": 72, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2533274692 + "hash": 145039017 }, - "m_effectNameID": { - "type": "unsigned int", + "m_playerLevel": { + "type": "int", "id": 1, - "offset": 96, - "flags": 63, + "offset": 76, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1204067144 + "hash": 743117695 }, - "m_bIsOnPet": { - "type": "bool", + "m_playerSchoolOfFocus": { + "type": "std::string", "id": 2, - "offset": 73, + "offset": 80, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 522593303 + "hash": 2154520517 }, - "m_originatorID": { - "type": "gid", + "m_accountNDaysAged": { + "type": "int", "id": 3, - "offset": 104, - "flags": 39, + "offset": 112, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1131810019 + "hash": 1683372023 }, - "m_itemSlotID": { - "type": "unsigned int", + "m_accountNDaysSinceLastLogin": { + "type": "int", "id": 4, - "offset": 112, - "flags": 63, + "offset": 116, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1895747595 + "hash": 1736007845 }, - "m_internalID": { + "m_accountNDaysSinceLastPurchase": { "type": "int", "id": 5, - "offset": 92, - "flags": 63, + "offset": 120, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1643137924 + "hash": 1887348903 }, - "m_endTime": { - "type": "unsigned int", + "m_accountNDaysLastCrownsPurchase": { + "type": "int", "id": 6, - "offset": 88, + "offset": 124, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 716479635 + "hash": 1622259729 }, - "m_pulseCount": { - "type": "double", + "m_accountIsMember": { + "type": "int", "id": 7, "offset": 128, - "flags": 63, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3507157375 + "hash": 1600243867 }, - "m_damageOverride": { + "m_accountIsCSR": { "type": "int", "id": 8, - "offset": 136, - "flags": 63, + "offset": 132, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 213003481 - } - } - }, - "820388873": { - "name": "class MagicMirrorShopOption*", - "bases": [ - "ServiceOptionBase", - "PropertyClass" - ], - "hash": 820388873, - "properties": { - "m_serviceName": { - "type": "std::string", - "id": 0, - "offset": 72, + "hash": 230424555 + }, + "m_accountNCrownsSpent": { + "type": "int", + "id": 9, + "offset": 136, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2206028813 + "hash": 1946996187 }, - "m_iconKey": { - "type": "std::string", - "id": 1, - "offset": 168, + "m_accountNCrownsInWallet": { + "type": "int", + "id": 10, + "offset": 140, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2457138637 + "hash": 1171814609 }, - "m_displayKey": { - "type": "std::string", - "id": 2, - "offset": 104, + "m_accountNDaysSinceItemPurchased": { + "type": "class SharedPointer", + "id": 11, + "offset": 152, "flags": 31, - "container": "Static", - "dynamic": false, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 3023276954 + "pointer": true, + "hash": 2517785757 }, - "m_serviceIndex": { - "type": "unsigned int", - "id": 3, - "offset": 204, + "m_numOfParticularItemInInventory": { + "type": "class SharedPointer", + "id": 12, + "offset": 168, "flags": 31, - "container": "Static", - "dynamic": false, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 2103126710 + "pointer": true, + "hash": 937766887 }, - "m_forceInteract": { - "type": "bool", - "id": 4, + "m_numItemsOfCategoryInInventory": { + "type": "class SharedPointer", + "id": 13, + "offset": 184, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1221776137 + }, + "m_playerHasBadge": { + "type": "class SharedPointer", + "id": 14, "offset": 200, "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1707274667 + }, + "m_accountNHighestWorld": { + "type": "int", + "id": 15, + "offset": 144, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1705789564 + "hash": 1128631305 } } }, - "1192545614": { - "name": "class CrownShopCategoryMenu", + "1676064302": { + "name": "class NamedEffectTemplate*", "bases": [ + "GameEffectTemplate", "PropertyClass" ], - "hash": 1192545614, + "hash": 1676064302, "properties": { - "m_name": { + "m_effectName": { "type": "std::string", "id": 0, "offset": 72, - "flags": 31, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1717359772 + "hash": 2029161513 }, - "m_ID": { - "type": "int", + "m_effectCategory": { + "type": "std::string", "id": 1, "offset": 104, - "flags": 31, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2090585127 + "hash": 1852673222 }, - "m_description": { - "type": "std::string", + "m_sortOrder": { + "type": "int", "id": 2, - "offset": 112, - "flags": 31, + "offset": 148, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1649374815 + "hash": 1411218206 }, - "m_iconResource": { - "type": "std::string", + "m_duration": { + "type": "double", "id": 3, - "offset": 144, - "flags": 31, + "offset": 192, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2838396012 + "hash": 2727932435 }, - "m_categoryIDs": { - "type": "int", + "m_stackingCategories": { + "type": "std::string", "id": 4, - "offset": 208, - "flags": 31, + "offset": 160, + "flags": 7, "container": "List", "dynamic": true, "singleton": false, "pointer": false, - "hash": 2145925880 + "hash": 1774497525 }, - "m_tags": { - "type": "std::string", + "m_isPersistent": { + "type": "bool", "id": 5, - "offset": 176, - "flags": 31, + "offset": 153, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1717575210 - } - } - }, - "1996828358": { - "name": "class TextureRemap", - "bases": [ - "PropertyClass" - ], - "hash": 1996828358, - "properties": { - "m_remapIndex": { - "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 31, + "hash": 923861920 + }, + "m_bIsOnPet": { + "type": "bool", + "id": 6, + "offset": 154, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1234341146 + "hash": 522593303 }, - "m_textureTemplateID": { - "type": "unsigned int", - "id": 1, - "offset": 76, - "flags": 31, + "m_isPublic": { + "type": "bool", + "id": 7, + "offset": 152, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1730653991 - } - } - }, - "820503964": { - "name": "class AttenuatedFileList*", - "bases": [ - "PropertyClass" - ], - "hash": 820503964, - "properties": { - "m_attenuatedFileDescriptionList": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 395748088 - } - } - }, - "1198629259": { - "name": "class HideActorCinematicAction*", - "bases": [ - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 1198629259, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, + "hash": 1728439822 + }, + "m_visualEffectAddName": { + "type": "std::string", + "id": 8, + "offset": 200, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 + "hash": 3382086694 }, - "m_actor": { + "m_visualEffectRemoveName": { "type": "std::string", - "id": 1, - "offset": 80, + "id": 9, + "offset": 232, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2285866132 + "hash": 1541697323 }, - "m_bHide": { - "type": "bool", - "id": 2, - "offset": 120, + "m_onAddFunctorName": { + "type": "std::string", + "id": 10, + "offset": 280, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 790850959 + "hash": 1561843107 }, - "m_evenWhileDead": { - "type": "bool", - "id": 3, - "offset": 121, + "m_onRemoveFunctorName": { + "type": "std::string", + "id": 11, + "offset": 312, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2100875368 + "hash": 2559017864 }, - "m_bMultiRound": { - "type": "bool", - "id": 4, - "offset": 122, - "flags": 263, + "m_stackingRule": { + "type": "enum STACKING_RULE", + "id": 12, + "offset": 144, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1821746440 + "hash": 431568889, + "enum_options": { + "STACKING_ALLOWED": 0, + "STACKING_NOSTACK": 1, + "STACKING_REPLACE": 2 + } } } }, - "1196545820": { - "name": "class WizGameStats", + "1231369094": { + "name": "enum SpellEffect::kEffectTarget", + "bases": [], + "hash": 1231369094, + "properties": {} + }, + "2111361404": { + "name": "class CombatPetXPEffectInfo*", "bases": [ + "GameEffectInfo", "PropertyClass" ], - "hash": 1196545820, + "hash": 2111361404, "properties": { - "m_baseHitpoints": { - "type": "int", + "m_effectName": { + "type": "std::string", "id": 0, - "offset": 80, + "offset": 72, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 596105911 + "hash": 2029161513 }, - "m_baseMana": { - "type": "int", + "m_lootTableName": { + "type": "std::string", "id": 1, - "offset": 84, + "offset": 104, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1475495442 + "hash": 2333333378 }, - "m_baseGoldPouch": { - "type": "int", + "m_description": { + "type": "std::string", "id": 2, - "offset": 88, + "offset": 136, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 848889754 + "hash": 1649374815 + } + } + }, + "386638158": { + "name": "class SharedPointer", + "bases": [ + "ItemTemplate", + "GameObjectTemplate", + "CoreTemplate", + "PropertyClass" + ], + "hash": 386638158, + "properties": { + "m_behaviors": { + "type": "class BehaviorTemplate*", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1197808594 }, - "m_baseEventCurrency1Pouch": { - "type": "int", - "id": 3, - "offset": 92, - "flags": 31, + "m_objectName": { + "type": "std::string", + "id": 1, + "offset": 96, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1227701106 + "hash": 2154940147 }, - "m_baseEventCurrency2Pouch": { - "type": "int", - "id": 4, - "offset": 96, - "flags": 31, + "m_templateID": { + "type": "unsigned int", + "id": 2, + "offset": 128, + "flags": 16777223, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1266836499 + "hash": 1286746870 }, - "m_basePvPCurrencyPouch": { - "type": "int", + "m_visualID": { + "type": "unsigned int", + "id": 3, + "offset": 132, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1118778894 + }, + "m_adjectiveList": { + "type": "std::string", + "id": 4, + "offset": 248, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 3195213318 + }, + "m_exemptFromAOI": { + "type": "bool", "id": 5, - "offset": 100, - "flags": 31, + "offset": 240, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 250034965 + "hash": 1457879059 }, - "m_basePvPTourneyCurrencyPouch": { - "type": "int", + "m_displayName": { + "type": "std::string", "id": 6, - "offset": 104, - "flags": 31, + "offset": 168, + "flags": 8388615, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2005272907 + "hash": 2446900370 }, - "m_energyMax": { - "type": "int", + "m_description": { + "type": "std::string", "id": 7, - "offset": 108, - "flags": 31, + "offset": 136, + "flags": 8388615, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 493080970 + "hash": 1649374815 }, - "m_currentHitpoints": { - "type": "int", + "m_nObjectType": { + "type": "enum ObjectType", "id": 8, - "offset": 112, - "flags": 31, + "offset": 200, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1533788735 + "hash": 2118905880, + "enum_options": { + "OT_UNDEFINED": 0, + "OT_PLAYER": 1, + "OT_NPC": 2, + "OT_PROP": 3, + "OT_OBJECT": 4, + "OT_HOUSE": 5, + "OT_KEY": 6, + "OT_OLD_KEY": 7, + "OT_DEED": 8, + "OT_MAIL": 9, + "OT_RECIPE": 17, + "OT_EQUIP_HEAD": 10, + "OT_EQUIP_CHEST": 11, + "OT_EQUIP_LEGS": 12, + "OT_EQUIP_HANDS": 13, + "OT_EQUIP_FINGER": 14, + "OT_EQUIP_FEET": 15, + "OT_EQUIP_EAR": 16, + "OT_BUILDING_BLOCK": 18, + "OT_BUILDING_BLOCK_SOLID": 19, + "OT_GOLF": 20, + "OT_DOOR": 21, + "OT_PET": 22, + "OT_FABRIC": 23, + "OT_WINDOW": 24, + "OT_ROOF": 25, + "OT_HORSE": 26, + "OT_STRUCTURE": 27, + "OT_HOUSING_TEXTURE": 28, + "OT_PLANT": 29 + } }, - "m_currentGold": { - "type": "int", + "m_sIcon": { + "type": "std::string", "id": 9, - "offset": 116, - "flags": 31, + "offset": 208, + "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1255819683 + "hash": 2306259831 }, - "m_currentEventCurrency1": { - "type": "int", + "m_equipRequirements": { + "type": "class RequirementList*", "id": 10, - "offset": 120, - "flags": 31, + "offset": 280, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1718583419 + "pointer": true, + "hash": 2762617226 }, - "m_currentEventCurrency2": { - "type": "int", + "m_purchaseRequirements": { + "type": "class RequirementList*", "id": 11, - "offset": 124, - "flags": 31, + "offset": 288, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1718583420 + "pointer": true, + "hash": 3174641793 }, - "m_currentPvPCurrency": { - "type": "int", + "m_equipEffects": { + "type": "class GameEffectInfo*", "id": 12, - "offset": 128, - "flags": 31, - "container": "Static", - "dynamic": false, + "offset": 296, + "flags": 7, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 958495550 + "pointer": true, + "hash": 836628351 }, - "m_currentPvPTourneyCurrency": { - "type": "int", + "m_baseCost": { + "type": "float", "id": 13, - "offset": 132, - "flags": 31, + "offset": 312, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 398198452 + "hash": 1565352651 }, - "m_currentMana": { - "type": "int", + "m_creditsCost": { + "type": "float", "id": 14, - "offset": 136, - "flags": 31, + "offset": 320, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1256020122 + "hash": 805514974 }, - "m_currentArenaPoints": { - "type": "int", + "m_avatarInfo": { + "type": "class AvatarItemInfoBase*", "id": 15, - "offset": 140, - "flags": 31, + "offset": 328, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1119642753 + "pointer": true, + "hash": 2627321299 }, - "m_spellChargeBase": { - "type": "int", + "m_avatarFlags": { + "type": "std::string", "id": 16, - "offset": 144, - "flags": 31, - "container": "Vector", + "offset": 336, + "flags": 7, + "container": "List", "dynamic": true, "singleton": false, "pointer": false, - "hash": 712023615 + "hash": 2347762759 }, - "m_potionMax": { - "type": "float", + "m_itemLimit": { + "type": "int", "id": 17, - "offset": 168, - "flags": 31, + "offset": 316, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2123676470 + "hash": 1799746856 }, - "m_potionCharge": { - "type": "float", + "m_holidayFlag": { + "type": "std::string", "id": 18, - "offset": 172, - "flags": 31, + "offset": 352, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1104179290 + "hash": 2994795359 }, - "m_pArenaLadder": { - "type": "class SharedPointer", + "m_itemSetBonusTemplateID": { + "type": "unsigned int", "id": 19, - "offset": 176, - "flags": 31, + "offset": 384, + "flags": 33554439, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2717766581 + "pointer": false, + "hash": 1316835672 }, - "m_pDerbyLadder": { - "type": "class SharedPointer", + "m_numPrimaryColors": { + "type": "int", "id": 20, - "offset": 192, - "flags": 31, + "offset": 428, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2352744804 + "pointer": false, + "hash": 981103872 }, - "m_bracketLader": { - "type": "class SharedPointer", + "m_numSecondaryColors": { + "type": "int", "id": 21, - "offset": 208, - "flags": 31, + "offset": 432, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2562001526 + "pointer": false, + "hash": 1310416868 }, - "m_bonusHitpoints": { + "m_numPatterns": { "type": "int", "id": 22, - "offset": 224, - "flags": 31, + "offset": 436, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 103057475 + "hash": 953162171 }, - "m_bonusMana": { - "type": "int", + "m_school": { + "type": "std::string", "id": 23, - "offset": 228, - "flags": 31, + "offset": 392, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1757236254 + "hash": 2438566051 }, - "m_bonusEnergy": { + "m_arenaPointCost": { "type": "int", "id": 24, - "offset": 244, - "flags": 31, + "offset": 440, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1975625099 + "hash": 1819621796 }, - "m_criticalHitPercentAll": { - "type": "float", + "m_pvpCurrencyCost": { + "type": "int", "id": 25, - "offset": 248, - "flags": 31, + "offset": 444, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2085066513 + "hash": 645595444 }, - "m_blockPercentAll": { - "type": "float", + "m_pvpTourneyCurrencyCost": { + "type": "int", "id": 26, - "offset": 252, - "flags": 31, + "offset": 448, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1203386380 + "hash": 517874954 }, - "m_criticalHitRatingAll": { - "type": "float", + "m_rank": { + "type": "int", "id": 27, - "offset": 256, - "flags": 31, + "offset": 424, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 923968773 + "hash": 219803942 }, - "m_blockRatingAll": { - "type": "float", + "m_boyIconIndex": { + "type": "int", "id": 28, - "offset": 260, - "flags": 31, + "offset": 452, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1743229600 + "hash": 802140453 }, - "m_referenceLevel": { + "m_girlIconIndex": { "type": "int", "id": 29, - "offset": 324, - "flags": 31, + "offset": 456, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1436595649 + "hash": 832706793 }, - "m_highestCharacterLevelOnAccount": { - "type": "int", + "m_leashOffsetOverride": { + "type": "class SharedPointer", "id": 30, - "offset": 336, - "flags": 31, + "offset": 464, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1662017333 + "pointer": true, + "hash": 1692586788 }, - "m_petActChance": { - "type": "int", + "m_rarity": { + "type": "enum RarityType", "id": 31, - "offset": 344, + "offset": 460, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2253792108, + "enum_options": { + "RT_COMMON": 0, + "RT_UNCOMMON": 1, + "RT_RARE": 2, + "RT_ULTRARARE": 3, + "RT_EPIC": 4 + } + } + } + }, + "1230256416": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1230256416, + "properties": { + "m_itemTemplateID": { + "type": "unsigned int", + "id": 0, + "offset": 72, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 237418461 + "hash": 2190120133 }, - "m_dmgBonusPercent": { - "type": "float", - "id": 32, - "offset": 352, + "m_daysSinceItemPurchased": { + "type": "int", + "id": 1, + "offset": 76, "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 539199563 + } + } + }, + "386133565": { + "name": "class PlayDeck", + "bases": [ + "PropertyClass" + ], + "hash": 386133565, + "properties": { + "m_deckToSave": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 7, "container": "Vector", "dynamic": true, "singleton": false, - "pointer": false, - "hash": 194501159 + "pointer": true, + "hash": 1977265360 }, - "m_dmgBonusFlat": { - "type": "float", - "id": 33, - "offset": 376, - "flags": 31, + "m_graveYardToSave": { + "type": "class SharedPointer", + "id": 1, + "offset": 96, + "flags": 7, "container": "Vector", "dynamic": true, "singleton": false, + "pointer": true, + "hash": 3785577598 + } + } + }, + "1229774622": { + "name": "class GuildIslandItemBehavior", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1229774622, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, "pointer": false, - "hash": 1837769725 - }, - "m_accBonusPercent": { - "type": "float", - "id": 34, - "offset": 400, + "hash": 223437287 + } + } + }, + "2111362172": { + "name": "class CombatPetXPEffectInfo", + "bases": [ + "GameEffectInfo", + "PropertyClass" + ], + "hash": 2111362172, + "properties": { + "m_effectName": { + "type": "std::string", + "id": 0, + "offset": 72, "flags": 31, - "container": "Vector", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 331557526 + "hash": 2029161513 }, - "m_apBonusPercent": { - "type": "float", - "id": 35, - "offset": 424, + "m_lootTableName": { + "type": "std::string", + "id": 1, + "offset": 104, "flags": 31, - "container": "Vector", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 1228557984 + "hash": 2333333378 }, - "m_dmgReducePercent": { - "type": "float", - "id": 36, - "offset": 448, + "m_description": { + "type": "std::string", + "id": 2, + "offset": 136, "flags": 31, - "container": "Vector", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 1426050712 + "hash": 1649374815 + } + } + }, + "827283214": { + "name": "class SharedPointer", + "bases": [ + "HousingGameInterface", + "PropertyClass" + ], + "hash": 827283214, + "properties": {} + }, + "1678010878": { + "name": "class SG_GameAction_DetonateBlock*", + "bases": [ + "SG_GameAction", + "PropertyClass" + ], + "hash": 1678010878, + "properties": { + "m_target": { + "type": "enum SG_GameAction::SG_Target", + "id": 0, + "offset": 72, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1166870973, + "enum_options": { + "Target_Ball": 0, + "Target_Self": 1, + "Target_Connections": 2, + "__DEFAULT": "Target_Ball" + } }, - "m_dmgReduceFlat": { - "type": "float", - "id": 37, - "offset": 472, - "flags": 31, - "container": "Vector", - "dynamic": true, + "m_impactInteraction": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 1218184718 + "hash": 3623009561 }, - "m_accReducePercent": { + "m_fExplosionForceScalar": { "type": "float", - "id": 38, - "offset": 496, - "flags": 31, - "container": "Vector", - "dynamic": true, + "id": 2, + "offset": 116, + "flags": 7, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 1653943527 + "hash": 1506193859 }, - "m_healBonusPercent": { + "m_fExplosionRadiusScalar": { "type": "float", - "id": 39, - "offset": 520, + "id": 3, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 658772124 + } + } + }, + "1229675097": { + "name": "class SharedPointer", + "bases": [ + "GameEffectInfo", + "PropertyClass" + ], + "hash": 1229675097, + "properties": { + "m_effectName": { + "type": "std::string", + "id": 0, + "offset": 72, "flags": 31, - "container": "Vector", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 562313577 + "hash": 2029161513 }, - "m_healIncBonusPercent": { - "type": "float", - "id": 40, - "offset": 544, - "flags": 31, - "container": "Vector", - "dynamic": true, + "m_spellName": { + "type": "std::string", + "id": 1, + "offset": 104, + "flags": 268435463, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 2182535587 + "hash": 2688485244, + "enum_options": { + "__BASECLASS": "SpellTemplate" + } }, - "m_spellChargeBonus": { + "m_percentChance": { "type": "int", - "id": 41, - "offset": 592, + "id": 2, + "offset": 136, "flags": 31, - "container": "Vector", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 2019610507 + "hash": 385662509 }, - "m_dmgBonusPercentAll": { - "type": "float", - "id": 42, - "offset": 712, + "m_spellDescription": { + "type": "class SharedPointer", + "id": 3, + "offset": 144, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, + "pointer": true, + "hash": 790341621 + } + } + }, + "826932735": { + "name": "class QuickSellItem*", + "bases": [ + "PropertyClass" + ], + "hash": 826932735, + "properties": { + "m_sellItemGID": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, "pointer": false, - "hash": 2076945760 + "hash": 1026273003 }, - "m_dmgBonusFlatAll": { + "m_quantity": { + "type": "unsigned int", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 380617740 + }, + "m_clientRequestID": { + "type": "int", + "id": 2, + "offset": 84, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1118529839 + } + } + }, + "1676638972": { + "name": "class SharedPointer", + "bases": [ + "PetCastEffectActorCinematicAction", + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 1676638972, + "properties": { + "m_timeOffset": { "type": "float", - "id": 43, - "offset": 716, - "flags": 31, + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + } + } + }, + "386715787": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 386715787, + "properties": { + "m_mapList": { + "type": "class DoodleMapPair", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2964081080 + } + } + }, + "826932730": { + "name": "class QuickSellItem", + "bases": [ + "PropertyClass" + ], + "hash": 826932730, + "properties": { + "m_sellItemGID": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 419082102 + "hash": 1026273003 }, - "m_accBonusPercentAll": { - "type": "float", - "id": 44, - "offset": 720, - "flags": 31, + "m_quantity": { + "type": "unsigned int", + "id": 1, + "offset": 80, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1144118127 + "hash": 380617740 }, - "m_apBonusPercentAll": { - "type": "float", - "id": 45, - "offset": 724, - "flags": 31, + "m_clientRequestID": { + "type": "int", + "id": 2, + "offset": 84, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 772537145 - }, - "m_dmgReducePercentAll": { - "type": "float", - "id": 46, - "offset": 728, - "flags": 31, + "hash": 1118529839 + } + } + }, + "1676576547": { + "name": "class ContainerEffect", + "bases": [ + "GameEffectBase", + "PropertyClass" + ], + "hash": 1676576547, + "properties": { + "m_currentTickCount": { + "type": "double", + "id": 0, + "offset": 80, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 635246641 + "hash": 2533274692 }, - "m_dmgReduceFlatAll": { - "type": "float", - "id": 47, - "offset": 732, - "flags": 31, + "m_effectNameID": { + "type": "unsigned int", + "id": 1, + "offset": 96, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1650631655 + "hash": 1204067144 }, - "m_accReducePercentAll": { - "type": "float", - "id": 48, - "offset": 736, + "m_bIsOnPet": { + "type": "bool", + "id": 2, + "offset": 73, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2064189472 + "hash": 522593303 }, - "m_healBonusPercentAll": { - "type": "float", - "id": 49, - "offset": 740, - "flags": 31, + "m_originatorID": { + "type": "gid", + "id": 3, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 242474338 + "hash": 1131810019 }, - "m_healIncBonusPercentAll": { - "type": "float", - "id": 50, - "offset": 744, - "flags": 31, + "m_itemSlotID": { + "type": "unsigned int", + "id": 4, + "offset": 112, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1436699484 + "hash": 1895747595 }, - "m_spellChargeBonusAll": { + "m_internalID": { "type": "int", - "id": 51, - "offset": 752, - "flags": 31, + "id": 5, + "offset": 92, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1354189604 + "hash": 1643137924 }, - "m_powerPipBase": { - "type": "float", - "id": 52, - "offset": 756, + "m_endTime": { + "type": "unsigned int", + "id": 6, + "offset": 88, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 345261352 - }, - "m_powerPipBonusPercentAll": { - "type": "float", - "id": 53, - "offset": 792, - "flags": 31, + "hash": 716479635 + } + } + }, + "2111861838": { + "name": "class SharedPointer", + "bases": [ + "CinematicStageTemplate", + "PropertyClass" + ], + "hash": 2111861838, + "properties": { + "m_name": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1850107326 + "hash": 1717359772 }, - "m_xpPercentIncrease": { + "m_duration": { "type": "float", - "id": 54, - "offset": 800, - "flags": 31, + "id": 1, + "offset": 104, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1051081338 + "hash": 920323453 }, - "m_criticalHitPercentBySchool": { - "type": "float", - "id": 55, - "offset": 616, - "flags": 31, - "container": "Vector", + "m_actions": { + "type": "class SharedPointer", + "id": 2, + "offset": 112, + "flags": 7, + "container": "List", "dynamic": true, "singleton": false, - "pointer": false, - "hash": 1022327067 + "pointer": true, + "hash": 1380578687 }, - "m_blockPercentBySchool": { - "type": "float", - "id": 56, - "offset": 640, - "flags": 31, - "container": "Vector", + "m_stageRelationships": { + "type": "class SharedPointer", + "id": 3, + "offset": 128, + "flags": 7, + "container": "List", "dynamic": true, "singleton": false, - "pointer": false, - "hash": 2189750006 + "pointer": true, + "hash": 499983354 }, - "m_criticalHitRatingBySchool": { - "type": "float", - "id": 57, - "offset": 664, - "flags": 31, + "m_cameras": { + "type": "std::string", + "id": 4, + "offset": 152, + "flags": 131079, "container": "Vector", "dynamic": true, "singleton": false, "pointer": false, - "hash": 2060803983 + "hash": 3217341687 }, - "m_blockRatingBySchool": { - "type": "float", - "id": 58, - "offset": 688, - "flags": 31, + "m_altcameras": { + "type": "std::string", + "id": 5, + "offset": 176, + "flags": 131079, "container": "Vector", "dynamic": true, "singleton": false, "pointer": false, - "hash": 274073098 + "hash": 1882980152 }, - "m_balanceMastery": { - "type": "int", - "id": 59, - "offset": 832, - "flags": 31, + "m_actAnim": { + "type": "std::string", + "id": 6, + "offset": 200, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 149062181 + "hash": 2867163800 }, - "m_deathMastery": { - "type": "int", - "id": 60, - "offset": 836, - "flags": 31, + "m_camRel": { + "type": "enum CameraCutCinematicAction::kCameraRelative", + "id": 7, + "offset": 232, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1421218661 + "hash": 919962138, + "enum_options": { + "kSigil": 1, + "kTarget": 2, + "kSource": 3, + "kActor": 4, + "__DEFAULT": "kTarget" + } }, - "m_fireMastery": { - "type": "int", - "id": 61, - "offset": 840, - "flags": 31, + "m_sound": { + "type": "std::string", + "id": 8, + "offset": 240, + "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1431794949 + "hash": 2307644996 }, - "m_iceMastery": { - "type": "int", - "id": 62, - "offset": 844, - "flags": 31, + "m_interpDuration": { + "type": "float", + "id": 9, + "offset": 272, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 704864240 + "hash": 2237711951, + "enum_options": { + "__DEFAULT": "1.0" + } }, - "m_lifeMastery": { - "type": "int", - "id": 63, - "offset": 848, - "flags": 31, + "m_announcesSpell": { + "type": "bool", + "id": 10, + "offset": 276, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2142136447 - }, - "m_mythMastery": { - "type": "int", - "id": 64, - "offset": 852, - "flags": 31, + "hash": 652261533 + } + } + }, + "1676563122": { + "name": "class SharedPointer", + "bases": [ + "SpellEffect", + "PropertyClass" + ], + "hash": 1676563122, + "properties": { + "m_effectType": { + "type": "enum SpellEffect::kSpellEffects", + "id": 0, + "offset": 72, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1766317185 + "hash": 2578255295, + "enum_options": { + "kInvalidSpellEffect": 0, + "kDamage": 1, + "kDamageNoCrit": 2, + "kHeal": 3, + "kHealPercent": 4, + "kSetHealPercent": 113, + "kStealHealth": 5, + "kReduceOverTime": 6, + "kDetonateOverTime": 7, + "kPushCharm": 8, + "kStealCharm": 9, + "kPushWard": 10, + "kStealWard": 11, + "kPushOverTime": 12, + "kStealOverTime": 13, + "kRemoveCharm": 14, + "kRemoveWard": 15, + "kRemoveOverTime": 16, + "kRemoveAura": 17, + "kSwapAll": 18, + "kSwapCharm": 19, + "kSwapWard": 20, + "kSwapOverTime": 21, + "kModifyIncomingDamage": 22, + "kModifyIncomingDamageFlat": 119, + "kMaximumIncomingDamage": 23, + "kModifyIncomingHeal": 24, + "kModifyIncomingHealFlat": 118, + "kModifyIncomingDamageType": 25, + "kModifyIncomingArmorPiercing": 26, + "kModifyOutgoingDamage": 27, + "kModifyOutgoingDamageFlat": 121, + "kModifyOutgoingHeal": 28, + "kModifyOutgoingHealFlat": 120, + "kModifyOutgoingDamageType": 29, + "kModifyOutgoingArmorPiercing": 30, + "kModifyOutgoingStealHealth": 31, + "kModifyIncomingStealHealth": 32, + "kBounceNext": 33, + "kBouncePrevious": 34, + "kBounceBack": 35, + "kBounceAll": 36, + "kAbsorbDamage": 37, + "kAbsorbHeal": 38, + "kModifyAccuracy": 39, + "kDispel": 40, + "kConfusion": 41, + "kCloakedCharm": 42, + "kCloakedWard": 43, + "kStunResist": 44, + "kClue": 111, + "kPipConversion": 45, + "kCritBoost": 46, + "kCritBlock": 47, + "kPolymorph": 48, + "kDelayCast": 49, + "kModifyCardCloak": 50, + "kModifyCardDamage": 51, + "kModifyCardAccuracy": 53, + "kModifyCardMutation": 54, + "kModifyCardRank": 55, + "kModifyCardArmorPiercing": 56, + "kSummonCreature": 65, + "kTeleportPlayer": 66, + "kStun": 67, + "kDampen": 68, + "kReshuffle": 69, + "kMindControl": 70, + "kModifyPips": 71, + "kModifyPowerPips": 72, + "kModifyShadowPips": 73, + "kModifyHate": 74, + "kDamageOverTime": 75, + "kHealOverTime": 76, + "kModifyPowerPipChance": 77, + "kModifyRank": 78, + "kStunBlock": 79, + "kRevealCloak": 80, + "kInstantKill": 81, + "kAfterlife": 82, + "kDeferredDamage": 83, + "kDamagePerTotalPipPower": 84, + "kModifyCardHeal": 52, + "kModifyCardCharm": 57, + "kModifyCardWard": 58, + "kModifyCardOutgoingDamage": 59, + "kModifyCardOutgoingAccuracy": 60, + "kModifyCardOutgoingHeal": 61, + "kModifyCardOutgoingArmorPiercing": 62, + "kModifyCardIncomingDamage": 63, + "kModifyCardAbsorbDamage": 64, + "kCloakedWardNoRemove": 86, + "kAddCombatTriggerList": 87, + "kRemoveCombatTriggerList": 88, + "kBacklashDamage": 89, + "kModifyBacklash": 90, + "kIntercept": 91, + "kShadowSelf": 92, + "kShadowCreature": 93, + "kModifyShadowCreatureLevel": 94, + "kSelectShadowCreatureAttackTarget": 95, + "kShadowDecrementTurn": 96, + "kCritBoostSchoolSpecific": 97, + "kSpawnCreature": 98, + "kUnPolymorph": 99, + "kPowerPipConversion": 100, + "kProtectCardBeneficial": 101, + "kProtectCardHarmful": 102, + "kProtectBeneficial": 103, + "kProtectHarmful": 104, + "kDivideDamage": 105, + "kCollectEssence": 106, + "kKillCreature": 107, + "kDispelBlock": 108, + "kConfusionBlock": 109, + "kModifyPipRoundRate": 110, + "kMaxHealthDamage": 112, + "kUntargetable": 114, + "kMakeTargetable": 115, + "kForceTargetable": 116, + "kRemoveStunBlock": 117, + "kExitCombat": 122, + "kSuspendPips": 123, + "kResumePips": 124, + "kAutoPass": 125, + "kStopAutoPass": 126, + "kVanish": 127, + "kStopVanish": 128, + "kMaxHealthHeal": 129, + "kHealByWard": 130, + "kTaunt": 131, + "kPacify": 132, + "kRemoveTargetRestriction": 133, + "kConvertHangingEffect": 134, + "kAddSpellToDeck": 135, + "kAddSpellToHand": 136, + "kModifyIncomingDamageOverTime": 137, + "kModifyIncomingHealOverTime": 138, + "kModifyCardDamagebyRank": 139, + "kPushConvertedCharm": 140, + "kStealConvertedCharm": 141, + "kPushConvertedWard": 142, + "kStealConvertedWard": 143, + "kPushConvertedOverTime": 144, + "kStealConvertedOverTime": 145, + "kRemoveConvertedCharm": 146, + "kRemoveConvertedWard": 147, + "kRemoveConvertedOverTime": 148, + "kModifyOverTimeDuration": 149, + "kModifySchoolPips": 150 + } }, - "m_stormMastery": { + "m_effectParam": { "type": "int", - "id": 65, - "offset": 856, + "id": 1, + "offset": 76, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1883988244 + "hash": 357920024 }, - "m_maximumNumberOfIslands": { - "type": "int", - "id": 66, - "offset": 860, - "flags": 31, + "m_disposition": { + "type": "enum SpellEffect::kHangingDisposition", + "id": 2, + "offset": 80, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 412109412 + "hash": 1904841031, + "enum_options": { + "kBoth": 0, + "kBeneficial": 1, + "kHarmful": 2 + } }, - "m_gardeningLevel": { - "type": "unsigned char", - "id": 67, - "offset": 864, - "flags": 31, + "m_sDamageType": { + "type": "std::string", + "id": 3, + "offset": 88, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2456231799 + "hash": 2501054223 }, - "m_gardeningXP": { - "type": "int", - "id": 68, - "offset": 868, + "m_damageType": { + "type": "unsigned int", + "id": 4, + "offset": 84, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 590238801 + "hash": 737882766 }, - "m_invisibleToFriends": { - "type": "bool", - "id": 69, - "offset": 872, - "flags": 31, + "m_pipNum": { + "type": "int", + "id": 5, + "offset": 128, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 416456454 + "hash": 830827539 }, - "m_showItemLock": { - "type": "bool", - "id": 70, - "offset": 873, + "m_actNum": { + "type": "int", + "id": 6, + "offset": 132, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3575244 + "hash": 236824866 }, - "m_questFinderEnabled": { - "type": "bool", - "id": 71, - "offset": 874, - "flags": 31, + "m_effectTarget": { + "type": "enum SpellEffect::kEffectTarget", + "id": 7, + "offset": 140, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 125544072 + "hash": 2458940523, + "enum_options": { + "kInvalidTarget": 0, + "kSpell": 1, + "kSpecificSpells": 2, + "kGlobal": 3, + "kEnemyTeam": 4, + "kEnemyTeamAllAtOnce": 5, + "kFriendlyTeam": 6, + "kFriendlyTeamAllAtOnce": 7, + "kEnemySingle": 8, + "kFriendlySingle": 9, + "kMinion": 10, + "kFriendlyMinion": 17, + "kEnemyMinion": 18, + "kSelf": 11, + "kAtLeastOneEnemy": 13, + "kPreselectedEnemySingle": 12, + "kMultiTargetEnemy": 14, + "kMultiTargetFriendly": 15, + "kFriendlySingleNotMe": 16 + } }, - "m_buddyListLimit": { + "m_numRounds": { "type": "int", - "id": 72, - "offset": 876, + "id": 8, + "offset": 144, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1103577965 + "hash": 1229753829 }, - "m_dontAllowFriendFinderCodes": { - "type": "bool", - "id": 73, - "offset": 884, + "m_paramPerRound": { + "type": "int", + "id": 9, + "offset": 148, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1360721765 + "hash": 683234234 }, - "m_stunResistancePercent": { + "m_healModifier": { "type": "float", - "id": 74, - "offset": 880, - "flags": 31, + "id": 10, + "offset": 152, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1868382627 + "hash": 1317921248, + "enum_options": { + "__DEFAULT": "1.0" + } }, - "m_shadowMagicUnlocked": { - "type": "bool", - "id": 75, - "offset": 892, + "m_spellTemplateID": { + "type": "unsigned int", + "id": 11, + "offset": 120, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1642162767 + "hash": 585567702 }, - "m_shadowPipMax": { - "type": "int", - "id": 76, - "offset": 888, + "m_enchantmentSpellTemplateID": { + "type": "unsigned int", + "id": 12, + "offset": 124, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1774396431 + "hash": 246955115 }, - "m_fishingLevel": { - "type": "unsigned char", - "id": 77, - "offset": 893, - "flags": 31, + "m_act": { + "type": "bool", + "id": 13, + "offset": 136, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 682785040 + "hash": 269510283 }, - "m_fishingXP": { - "type": "int", - "id": 78, - "offset": 896, + "m_cloaked": { + "type": "bool", + "id": 14, + "offset": 157, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 319909002 - }, - "m_fishingLuckBonusPercent": { - "type": "float", - "id": 79, - "offset": 568, - "flags": 31, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1363349254 + "hash": 7349510 }, - "m_fishingLuckBonusPercentAll": { - "type": "float", - "id": 80, - "offset": 748, + "m_bypassProtection": { + "type": "bool", + "id": 15, + "offset": 159, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2190780895 + "hash": 1657138252 }, - "m_subscriberBenefitFlags": { - "type": "unsigned int", - "id": 81, - "offset": 900, + "m_armorPiercingParam": { + "type": "int", + "id": 16, + "offset": 160, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1587324747 + "hash": 2025530205 }, - "m_elixirBenefitFlags": { - "type": "unsigned int", - "id": 82, - "offset": 904, + "m_chancePerTarget": { + "type": "int", + "id": 17, + "offset": 164, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2320773252 + "hash": 845426794 }, - "m_shadowPipBonusPercent": { - "type": "float", - "id": 83, - "offset": 796, + "m_protected": { + "type": "bool", + "id": 18, + "offset": 168, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1426533310 + "hash": 1445655037 }, - "m_wispBonusPercent": { - "type": "float", - "id": 84, - "offset": 824, + "m_converted": { + "type": "bool", + "id": 19, + "offset": 169, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1304386546 + "hash": 1590428797 }, - "m_pipConversionRatingAll": { - "type": "float", - "id": 85, - "offset": 288, - "flags": 31, + "m_rank": { + "type": "int", + "id": 20, + "offset": 208, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 198602948 - }, - "m_pipConversionRatingPerSchool": { - "type": "float", - "id": 86, - "offset": 264, - "flags": 31, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 930350362 + "hash": 219803942 }, - "m_pipConversionPercentAll": { - "type": "float", - "id": 87, - "offset": 320, - "flags": 31, + "m_mode": { + "type": "enum CountBasedSpellEffect::CountBasedType", + "id": 21, + "offset": 224, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1770314416 + "hash": 2262055551, + "enum_options": { + "CBT_SpellKills": 0, + "CBT_SpellCrits": 1 + } }, - "m_pipConversionPercentPerSchool": { - "type": "float", - "id": 88, - "offset": 296, - "flags": 31, - "container": "Vector", + "m_effectList": { + "type": "class SharedPointer", + "id": 22, + "offset": 232, + "flags": 7, + "container": "List", "dynamic": true, "singleton": false, - "pointer": false, - "hash": 960311302 - }, - "m_monsterMagicLevel": { - "type": "unsigned char", - "id": 89, - "offset": 908, - "flags": 31, + "pointer": true, + "hash": 707154804 + } + } + }, + "1676544638": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1676544638, + "properties": { + "m_id": { + "type": "unsigned int", + "id": 0, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 729572689 + "hash": 2301988666 }, - "m_monsterMagicXP": { - "type": "int", - "id": 90, - "offset": 912, - "flags": 31, + "m_serializedRequirements": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 770955371 - }, - "m_playerChatChannelIsPublic": { - "type": "bool", - "id": 91, - "offset": 916, - "flags": 31, + "hash": 1527408971 + } + } + }, + "1230561054": { + "name": "class GuildIslandItemBehavior*", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1230561054, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 50035796 - }, - "m_extraInventorySpace": { - "type": "int", - "id": 92, - "offset": 920, - "flags": 31, + "hash": 223437287 + } + } + }, + "387833074": { + "name": "class SharedPointer", + "bases": [ + "ControlButton", + "Window", + "PropertyClass" + ], + "hash": 387833074, + "properties": { + "m_sName": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1757105784 + "hash": 2306437263 }, - "m_rememberLastRealm": { - "type": "bool", - "id": 93, - "offset": 924, - "flags": 31, - "container": "Static", - "dynamic": false, + "m_Children": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 746394247 + "pointer": true, + "hash": 2621225959 }, - "m_newSpellbookLayoutWarning": { - "type": "bool", - "id": 94, - "offset": 925, - "flags": 31, + "m_Style": { + "type": "unsigned int", + "id": 2, + "offset": 152, + "flags": 1048583, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1509105148 + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152, + "SHOW_HOTKEY": 16777216, + "EFFECT_SCALE": 67108864, + "LOCK_ICON_SIZE": 33554432, + "LEFT_TEXT": 536870912, + "NO_FIT_TEXT": 1073741824 + } }, - "m_pipConversionBaseAllSchools": { - "type": "int", - "id": 95, - "offset": 760, - "flags": 31, + "m_Flags": { + "type": "unsigned int", + "id": 3, + "offset": 156, + "flags": 1048583, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 307930968 + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } }, - "m_pipConversionBasePerSchool": { - "type": "int", - "id": 96, - "offset": 768, - "flags": 31, - "container": "Vector", - "dynamic": true, + "m_Window": { + "type": "class Rect", + "id": 4, + "offset": 160, + "flags": 135, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 1322493139 + "hash": 3105139380 }, - "m_purchasedCustomEmotes1": { - "type": "unsigned int", - "id": 97, - "offset": 928, - "flags": 31, + "m_fTargetAlpha": { + "type": "float", + "id": 5, + "offset": 212, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2104336133 + "hash": 1809129834 }, - "m_purchasedCustomTeleportEffects1": { - "type": "unsigned int", - "id": 98, - "offset": 932, - "flags": 31, + "m_fDisabledAlpha": { + "type": "float", + "id": 6, + "offset": 216, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 603893351 + "hash": 1389987675 }, - "m_equippedTeleportEffect": { - "type": "unsigned int", - "id": 99, - "offset": 936, - "flags": 31, + "m_fAlpha": { + "type": "float", + "id": 7, + "offset": 208, + "flags": 65671, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 918478182 + "hash": 482130755 }, - "m_highestWorld1ID": { - "type": "unsigned int", - "id": 100, - "offset": 956, - "flags": 31, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 2049405919 + "pointer": true, + "hash": 3623628394 }, - "m_highestWorld2ID": { - "type": "unsigned int", - "id": 101, - "offset": 960, - "flags": 31, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2049407008 + "hash": 2102211316 }, - "m_activeClassProjectsList": { - "type": "unsigned int", - "id": 102, - "offset": 968, - "flags": 31, - "container": "List", - "dynamic": true, + "m_sScript": { + "type": "std::string", + "id": 10, + "offset": 352, + "flags": 135, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 1952826405 + "hash": 1846695875 }, - "m_disabledItemSlotIDs": { - "type": "unsigned int", - "id": 103, - "offset": 984, - "flags": 31, - "container": "List", - "dynamic": true, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 1477574262 + "hash": 3389835433 }, - "m_adventurePowerCooldownTime": { - "type": "unsigned int", - "id": 104, - "offset": 1000, - "flags": 31, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1774753180 + "hash": 2547159940 }, - "m_purchasedCustomEmotes2": { - "type": "unsigned int", - "id": 105, - "offset": 940, - "flags": 31, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2104336134 + "hash": 1513510520 }, - "m_purchasedCustomTeleportEffects2": { - "type": "unsigned int", - "id": 106, - "offset": 944, - "flags": 31, - "container": "Static", - "dynamic": false, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 603893352 + "hash": 2587533771 }, - "m_purchasedCustomEmotes3": { - "type": "unsigned int", - "id": 107, - "offset": 948, - "flags": 31, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2104336135 + "hash": 3091503757 }, - "m_purchasedCustomTeleportEffects3": { - "type": "unsigned int", - "id": 108, - "offset": 952, - "flags": 31, + "m_bToggle": { + "type": "bool", + "id": 16, + "offset": 608, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 603893353 + "hash": 2071810903 }, - "m_shadowPipRating": { - "type": "float", - "id": 109, - "offset": 1004, - "flags": 31, + "m_bButtonDown": { + "type": "bool", + "id": 17, + "offset": 609, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 507126123 + "hash": 840041705 }, - "m_bonusShadowPipRating": { - "type": "float", - "id": 110, - "offset": 1008, - "flags": 31, + "m_sLabel": { + "type": "std::wstring", + "id": 18, + "offset": 616, + "flags": 4194439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 578452466 + "hash": 2207009163 }, - "m_shadowPipRateAccumulated": { - "type": "float", - "id": 111, - "offset": 1012, - "flags": 31, + "m_labelOffset": { + "type": "class Rect", + "id": 19, + "offset": 832, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 922051738 + "hash": 1990646723 }, - "m_shadowPipRateThreshold": { - "type": "float", - "id": 112, - "offset": 1016, - "flags": 31, + "m_pButton": { + "type": "class SharedPointer", + "id": 20, + "offset": 656, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1215959391 + "pointer": true, + "hash": 1543855875 }, - "m_shadowPipRatePercentage": { - "type": "int", - "id": 113, - "offset": 1020, - "flags": 31, + "m_HotKey": { + "type": "unsigned int", + "id": 21, + "offset": 672, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2119696723 + "hash": 1631553409 }, - "m_friendlyPlayer": { - "type": "bool", - "id": 114, - "offset": 1024, - "flags": 31, + "m_Color": { + "type": "class Color", + "id": 22, + "offset": 676, + "flags": 262279, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 990699901 + "hash": 1753714077 }, - "m_emojiSkinTone": { - "type": "int", - "id": 115, - "offset": 1028, - "flags": 31, + "m_bCursorOver": { + "type": "bool", + "id": 23, + "offset": 689, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1291044345 + "hash": 283981103 }, - "m_showPVPOption": { - "type": "unsigned int", - "id": 116, - "offset": 1032, - "flags": 31, + "m_bAbortWhenCursorNotOver": { + "type": "bool", + "id": 24, + "offset": 706, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2052204093 + "hash": 325405258 }, - "m_favoriteSlot": { - "type": "int", - "id": 117, - "offset": 1036, - "flags": 31, + "m_bHotKeyDown": { + "type": "bool", + "id": 25, + "offset": 680, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 13456252 + "hash": 616989185 }, - "m_cantripLevel": { - "type": "unsigned char", - "id": 118, - "offset": 1040, - "flags": 31, + "m_fTime": { + "type": "float", + "id": 26, + "offset": 684, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 788457241 + "hash": 883746156 }, - "m_cantripXP": { - "type": "int", - "id": 119, - "offset": 1044, - "flags": 31, + "m_bGreyed": { + "type": "bool", + "id": 27, + "offset": 688, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1867018035 + "hash": 1566556053 }, - "m_archmasteryBase": { + "m_fMaxScale": { "type": "float", - "id": 120, - "offset": 1048, - "flags": 31, + "id": 28, + "offset": 692, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2213748661 + "hash": 2070186635 }, - "m_archmasteryBonusFlat": { + "m_fScaleSpeed": { "type": "float", - "id": 121, - "offset": 1052, - "flags": 31, + "id": 29, + "offset": 696, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2047862920 + "hash": 1457135702 }, - "m_archmasteryBonusPercentage": { - "type": "float", - "id": 122, - "offset": 1056, - "flags": 31, + "m_bUseDropShadow": { + "type": "bool", + "id": 30, + "offset": 704, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2054419871 + "hash": 93063037 }, - "m_highestCharacterWorldOnAccount": { - "type": "int", - "id": 123, - "offset": 340, - "flags": 31, + "m_bUseOutline": { + "type": "bool", + "id": 31, + "offset": 705, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1240477285 + "hash": 744292994 }, - "m_schoolID": { - "type": "unsigned int", - "id": 124, - "offset": 328, - "flags": 31, + "m_pGreyedState": { + "type": "class SharedPointer", + "id": 32, + "offset": 768, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 369010242 + "pointer": true, + "hash": 2703352263 }, - "m_levelScaled": { - "type": "int", - "id": 125, - "offset": 332, - "flags": 31, + "m_pNormalState": { + "type": "class SharedPointer", + "id": 33, + "offset": 752, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1740930910 + "pointer": true, + "hash": 1887909808 }, - "m_currentZoneName": { - "type": "std::string", - "id": 126, - "offset": 1064, - "flags": 31, + "m_pHighlightedState": { + "type": "class SharedPointer", + "id": 34, + "offset": 784, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 3602481883 + "pointer": true, + "hash": 2200177608 }, - "m_mailSentToday": { - "type": "unsigned char", - "id": 127, - "offset": 1096, - "flags": 31, + "m_pSelectedState": { + "type": "class SharedPointer", + "id": 35, + "offset": 800, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 2737597102 + "pointer": true, + "hash": 2266776432 }, - "m_secondarySchool": { - "type": "unsigned int", - "id": 128, - "offset": 1100, - "flags": 31, + "m_pDepressedState": { + "type": "class SharedPointer", + "id": 36, + "offset": 816, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 479424797 + "pointer": true, + "hash": 1878185798 } } }, - "1999337645": { - "name": "class WizItemVendorData*", + "827191006": { + "name": "class SharedPointer", "bases": [ + "WinAnimSize", + "WindowAnimation", "PropertyClass" ], - "hash": 1999337645, + "hash": 827191006, "properties": { - "m_shopKeeperID": { - "type": "unsigned int", + "m_bUseDeepCopy": { + "type": "bool", "id": 0, "offset": 72, - "flags": 31, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 862026800 + "hash": 433380635 }, - "m_shopType": { - "type": "unsigned int", + "m_size": { + "type": "class Size", "id": 1, - "offset": 76, - "flags": 31, + "offset": 80, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 658077993 + "hash": 251247159 + }, + "m_fSpeed": { + "type": "float", + "id": 2, + "offset": 88, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 503609006 + }, + "m_currentSize": { + "type": "class Vector3D", + "id": 3, + "offset": 92, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2914066496 } } }, - "823759422": { - "name": "class AnimationSoundData", + "1230269470": { + "name": "class ClassProjectReward*", "bases": [ "PropertyClass" ], - "hash": 823759422, + "hash": 1230269470, "properties": { - "m_animationName": { - "type": "std::string", + "m_goalCount": { + "type": "unsigned int", "id": 0, "offset": 72, "flags": 7, @@ -564762,301 +376630,329 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 3393414044 + "hash": 985669209 }, - "m_soundFileName": { + "m_lootTable": { "type": "std::string", "id": 1, - "offset": 104, + "offset": 80, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3058120805 + "hash": 2539512673 }, - "m_introSoundFileName": { + "m_icon": { "type": "std::string", "id": 2, - "offset": 136, + "offset": 112, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 2449081745 + "hash": 1717182340 }, - "m_endSoundFileName": { - "type": "std::string", + "m_featuredTemplateID": { + "type": "unsigned int", "id": 3, - "offset": 168, + "offset": 128, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 2326794300 + "hash": 258965446 }, - "m_loop": { - "type": "bool", + "m_badgeName": { + "type": "std::string", "id": 4, - "offset": 200, + "offset": 144, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 222084781 + "hash": 3002948047 }, - "m_innerRadius": { - "type": "float", + "m_rewardType": { + "type": "enum ClassProjectRewardType", "id": 5, - "offset": 204, - "flags": 7, + "offset": 176, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 686816091 + "hash": 3545827746, + "enum_options": { + "CPRT_Everyone": 0, + "CPRT_Subscriber": 1, + "CPRT_Purchased": 2 + } }, - "m_outerRadius": { - "type": "float", + "m_overrideTitle": { + "type": "std::string", "id": 6, - "offset": 208, - "flags": 7, + "offset": 184, + "flags": 8388615, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 542169294 + "hash": 2739145597 }, - "m_volume": { - "type": "float", + "m_testLunari": { + "type": "unsigned int", "id": 7, - "offset": 212, + "offset": 216, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1162855023 + "hash": 1088922456 }, - "m_introFadeInTime": { - "type": "float", + "m_crownsCostToAdvance": { + "type": "int", "id": 8, - "offset": 216, + "offset": 220, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 677198649 - }, - "m_introFadeOutTime": { + "hash": 304642756 + } + } + }, + "2115308294": { + "name": "class SharedPointer", + "bases": [ + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 2115308294, + "properties": { + "m_timeOffset": { "type": "float", - "id": 9, - "offset": 220, + "id": 0, + "offset": 72, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1748430618 + "hash": 2237098605 }, - "m_endFadeInTime": { - "type": "float", - "id": 10, - "offset": 224, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 717770180 + "hash": 2285866132 }, - "m_endFadeOutTime": { - "type": "float", - "id": 11, - "offset": 228, + "m_bHide": { + "type": "bool", + "id": 2, + "offset": 120, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 939807493 - } - } - }, - "1194186908": { - "name": "class SharedPointer", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1194186908, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, + "hash": 790850959 + }, + "m_evenWhileDead": { + "type": "bool", + "id": 3, + "offset": 121, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 + "hash": 2100875368 }, - "m_spellData": { - "type": "std::string", - "id": 1, - "offset": 128, - "flags": 575, + "m_bMultiRound": { + "type": "bool", + "id": 4, + "offset": 122, + "flags": 263, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2688126101 + "hash": 1821746440 } } }, - "1997371059": { - "name": "class TutorialActionOption*", + "387022445": { + "name": "class SharedPointer", "bases": [ - "ServiceOptionBase", + "MatchActorResult", "PropertyClass" ], - "hash": 1997371059, + "hash": 387022445, "properties": { - "m_serviceName": { - "type": "std::string", + "m_pActor": { + "type": "class SharedPointer", "id": 0, "offset": 72, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 2206028813 + "pointer": true, + "hash": 1115051967 }, - "m_iconKey": { - "type": "std::string", + "m_place": { + "type": "int", "id": 1, - "offset": 168, + "offset": 88, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2457138637 + "hash": 806257663 }, - "m_displayKey": { - "type": "std::string", + "m_ratingGained": { + "type": "int", "id": 2, - "offset": 104, + "offset": 92, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3023276954 + "hash": 1426436071 }, - "m_serviceIndex": { - "type": "unsigned int", + "m_arenaPoints": { + "type": "int", "id": 3, - "offset": 204, + "offset": 96, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2103126710 + "hash": 511478910 }, - "m_forceInteract": { - "type": "bool", + "m_pvpCurrency": { + "type": "int", "id": 4, - "offset": 200, + "offset": 100, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1705789564 + "hash": 611304283 }, - "m_persona": { - "type": "std::string", + "m_pvpTourneyCurrency": { + "type": "int", "id": 5, - "offset": 216, + "offset": 104, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2989527539 - } - } - }, - "822894460": { - "name": "class QuickSellItemList*", - "bases": [ - "PropertyClass" - ], - "hash": 822894460, - "properties": { - "m_quickSellItemList": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, + "hash": 1184787505 + }, + "m_gold": { + "type": "int", + "id": 6, + "offset": 108, + "flags": 31, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2797277851 + "pointer": false, + "hash": 219423808 }, - "m_sellingCharacterGID": { - "type": "gid", - "id": 1, - "offset": 88, - "flags": 7, + "m_gameResult": { + "type": "unsigned char", + "id": 7, + "offset": 112, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1096175527 + "hash": 1417654793 + }, + "m_nFinishTime": { + "type": "unsigned int", + "id": 8, + "offset": 120, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1238925387 + }, + "m_nIndex": { + "type": "unsigned int", + "id": 9, + "offset": 124, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 925961299 } } }, - "1193089785": { - "name": "class GuildMuseumArtifactInfo", + "2112773830": { + "name": "class ReqClassProjectActive*", "bases": [ + "Requirement", "PropertyClass" ], - "hash": 1193089785, + "hash": 2112773830, "properties": { - "m_templateID": { - "type": "unsigned int", + "m_applyNOT": { + "type": "bool", "id": 0, "offset": 72, - "flags": 33554439, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1286746870 + "hash": 1746328074, + "enum_options": { + "__DEFAULT": 0 + } }, - "m_tier1": { - "type": "unsigned int", + "m_operator": { + "type": "enum Requirement::Operator", "id": 1, "offset": 76, - "flags": 7, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1022300786 + "hash": 2672792317, + "enum_options": { + "ROP_AND": 0, + "ROP_OR": 1, + "__DEFAULT": "ROP_AND" + } }, - "m_tier2": { - "type": "unsigned int", + "m_classProjectName": { + "type": "std::string", "id": 2, "offset": 80, "flags": 7, @@ -565064,170 +376960,227 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 1022300787 - }, - "m_tier3": { - "type": "unsigned int", - "id": 3, - "offset": 84, + "hash": 1714146665 + } + } + }, + "387006904": { + "name": "class MadlibIconDefinition", + "bases": [ + "PropertyClass" + ], + "hash": 387006904, + "properties": { + "m_madlibIconDataList": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 1022300788 - }, - "m_tier4": { - "type": "unsigned int", - "id": 4, - "offset": 88, - "flags": 7, + "pointer": true, + "hash": 3692830504 + } + } + }, + "2112773062": { + "name": "class ReqClassProjectActive", + "bases": [ + "Requirement", + "PropertyClass" + ], + "hash": 2112773062, + "properties": { + "m_applyNOT": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1022300789 + "hash": 1746328074, + "enum_options": { + "__DEFAULT": 0 + } }, - "m_overrideDisplayName": { - "type": "std::string", - "id": 5, - "offset": 96, - "flags": 8388615, + "m_operator": { + "type": "enum Requirement::Operator", + "id": 1, + "offset": 76, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3370041362 + "hash": 2672792317, + "enum_options": { + "ROP_AND": 0, + "ROP_OR": 1, + "__DEFAULT": "ROP_AND" + } }, - "m_description": { + "m_classProjectName": { "type": "std::string", - "id": 6, - "offset": 128, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1649374815 - }, - "m_foundInCantripChests": { - "type": "bool", - "id": 7, - "offset": 160, + "id": 2, + "offset": 80, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2091052609 - }, - "m_equivalentTemplateIDList": { - "type": "unsigned int", - "id": 8, - "offset": 168, - "flags": 7, + "hash": 1714146665 + } + } + }, + "827639265": { + "name": "class TournamentUpdateFriendList*", + "bases": [ + "PropertyClass" + ], + "hash": 827639265, + "properties": { + "m_friendList": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 31, "container": "List", "dynamic": true, "singleton": false, "pointer": false, - "hash": 318979600 - }, - "m_overrideLocation": { - "type": "std::string", - "id": 9, - "offset": 192, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3616295668 + "hash": 1993921452 } } }, - "1997371035": { - "name": "class TutorialActionOption", + "1676579619": { + "name": "class ContainerEffect*", "bases": [ - "ServiceOptionBase", + "GameEffectBase", "PropertyClass" ], - "hash": 1997371035, + "hash": 1676579619, "properties": { - "m_serviceName": { - "type": "std::string", + "m_currentTickCount": { + "type": "double", "id": 0, - "offset": 72, - "flags": 31, + "offset": 80, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2206028813 + "hash": 2533274692 }, - "m_iconKey": { - "type": "std::string", + "m_effectNameID": { + "type": "unsigned int", "id": 1, - "offset": 168, - "flags": 31, + "offset": 96, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2457138637 + "hash": 1204067144 }, - "m_displayKey": { - "type": "std::string", + "m_bIsOnPet": { + "type": "bool", "id": 2, - "offset": 104, + "offset": 73, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3023276954 + "hash": 522593303 }, - "m_serviceIndex": { - "type": "unsigned int", + "m_originatorID": { + "type": "gid", "id": 3, - "offset": 204, - "flags": 31, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2103126710 + "hash": 1131810019 }, - "m_forceInteract": { - "type": "bool", + "m_itemSlotID": { + "type": "unsigned int", "id": 4, - "offset": 200, - "flags": 31, + "offset": 112, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1705789564 + "hash": 1895747595 }, - "m_persona": { - "type": "std::string", + "m_internalID": { + "type": "int", "id": 5, - "offset": 216, + "offset": 92, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1643137924 + }, + "m_endTime": { + "type": "unsigned int", + "id": 6, + "offset": 88, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2989527539 + "hash": 716479635 } } }, - "822224159": { - "name": "class SharedPointer", + "2112505972": { + "name": "class ControlDraw::GesturePoint*", + "bases": [ + "PropertyClass" + ], + "hash": 2112505972, + "properties": { + "m_Point": { + "type": "class Point", + "id": 0, + "offset": 72, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2475294668 + }, + "m_Color": { + "type": "class Color", + "id": 1, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1753714077 + } + } + }, + "827572244": { + "name": "class LevelScaledEffect", "bases": [ + "StatisticEffect", "GameEffectBase", "PropertyClass" ], - "hash": 822224159, + "hash": 827572244, "properties": { "m_currentTickCount": { "type": "double", @@ -565306,8 +377259,8 @@ "pointer": false, "hash": 716479635 }, - "m_triggerName": { - "type": "std::string", + "m_lookupIndex": { + "type": "int", "id": 7, "offset": 128, "flags": 31, @@ -565315,122 +377268,82 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 3100183568 + "hash": 1626623948 } } }, - "1193058637": { - "name": "class MagicSchoolTemplate", + "1231612536": { + "name": "class AnnounceTextCinematicAction*", "bases": [ - "CoreTemplate", + "CinematicAction", "PropertyClass" ], - "hash": 1193058637, + "hash": 1231612536, "properties": { - "m_behaviors": { - "type": "class BehaviorTemplate*", + "m_timeOffset": { + "type": "float", "id": 0, "offset": 72, "flags": 7, - "container": "Vector", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1197808594 + "pointer": false, + "hash": 2237098605 }, - "m_schoolName": { + "m_text": { "type": "std::string", "id": 1, - "offset": 96, + "offset": 112, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3385349572 + "hash": 1717580128 }, - "m_minLevel": { - "type": "unsigned int", + "m_onlyForPlayer": { + "type": "bool", "id": 2, - "offset": 132, + "offset": 144, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1708220969 + "hash": 249913353 }, - "m_schoolIndex": { - "type": "int", + "m_stringTable": { + "type": "std::string", "id": 3, - "offset": 136, + "offset": 80, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 7119994 + "hash": 3386025626 }, - "m_secondarySchoolBadgeList": { - "type": "std::string", + "m_effectParamMadlib": { + "type": "bool", "id": 4, - "offset": 144, + "offset": 146, "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2758948314 - } - } - }, - "821754724": { - "name": "class HousingPetMovementCompressed", - "bases": [ - "PropertyClass" - ], - "hash": 821754724, - "properties": { - "m_compressedPetMovement": { - "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Vector", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 324140950 - } - } - }, - "1998733073": { - "name": "class FriendlyPlayerInfoList", - "bases": [ - "PropertyClass" - ], - "hash": 1998733073, - "properties": { - "m_friendlyPlayerInfoList": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2302789544 + "hash": 292989178 } } }, - "1193462644": { - "name": "class MountItemBehaviorTemplate*", + "388156276": { + "name": "class MountItemBehaviorTemplate", "bases": [ "BehaviorTemplate", "PropertyClass" ], - "hash": 1193462644, + "hash": 388156276, "properties": { "m_behaviorName": { "type": "std::string", @@ -568249,751 +380162,86001 @@ "PP_Fairy_Fire": 1847789544, "MNT_Mustang_B": 1448793691, "PP_FireElfMyth": 1933609060, - "MNT_KT-BoatRide": 1560860110 + "MNT_KT-BoatRide": 1560860110, + "MNT_ShadowMagic": 2095978357, + "MNT_MardiGrasFloat_A": 1740674432, + "PP_ChineseNYSnake": 988201940, + "MNT_AnubisDog": 1995079956, + "PP_ShadowImp_A": 1604849432, + "PP_ShadowImp_B": 1604849438, + "PP_ShadowImp_C": 1604849436, + "MNT_ShadowMagic_B": 2093870965, + "MNT_ShadowMagic_C": 2093805429, + "Guest_KT_SE_Tritops_Warrior_I_01": 97516901, + "Guest_KT_SE_DS_Draconian_Model_01": 1916095079, + "Guest_KT_SE_Beetle_Scarab_C_01_L50": 1064004307, + "Guest_KT_SE_Roach_Warrior_C_03": 1872574203, + "Guest_KT_SE_Roach_Warrior_C_04": 1871918843, + "Guest_KT_SE_Roach_Warrior_C_05": 1871787771, + "Guest_KT_SE_Beetle_Scarab_C_01": 1353410759, + "Guest_KT_SE_Mander_Citizen_B_01_L50": 2044509396, + "Guest_KT_SE_Mander_CitizenF_B_01_L50": 164327682, + "Guest_KT_SE_Treant_Tormented_A_01": 1359800879, + "Guest_KT_SE_Treant_Base_A_01": 765512948, + "Guest_KT_SE_Mander_Citizen_F_D_05": 171244620, + "Guest_KT_SE_Mander_CitizenF_D_01": 163791037, + "Guest_KT_SE_Mander_CitizenF_D_02": 298008765, + "Guest_KT_SE_Mander_CitizenF_D_03": 432226493, + "Guest_KT_SE_Mander_CitizenF_D_04": 566444221, + "Guest_KT_SE_Mander_MummyF_A_01": 964349080, + "Guest_KT_SE_Mander_MummyF_A_02": 964480152, + "Guest_KT_SE_MC_Wraith_Model_01": 1101442118, + "Guest_KT_SE_Mander_CitizenF_B_02": 298000573, + "MNT_Wheelbarrow": 614248817, + "MNT_StubbornLlama": 221089074 + } + }, + "m_eMountType": { + "type": "enum eMountType", + "id": 3, + "offset": 176, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3097765662, + "enum_options": { + "eMNT_Standard": 0, + "eMNT_Floating": 1 + } + }, + "m_adjustableAnimationRate": { + "type": "bool", + "id": 4, + "offset": 180, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 698897022 + }, + "m_primaryDyeToTexture": { + "type": "class MountDyeToTexture", + "id": 5, + "offset": 120, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2402789479 + }, + "m_secondaryDyeToTexture": { + "type": "class MountDyeToTexture", + "id": 6, + "offset": 136, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2282848843 + }, + "m_patternToTexture": { + "type": "class MountDyeToTexture", + "id": 7, + "offset": 152, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1665998015 + }, + "m_soundMountEquip": { + "type": "std::string", + "id": 8, + "offset": 184, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2862460187 + }, + "m_geometryOption": { + "type": "int", + "id": 9, + "offset": 216, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1776153279 + }, + "m_numSeats": { + "type": "int", + "id": 10, + "offset": 220, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1599962314, + "enum_options": { + "__DEFAULT": 1 + } + }, + "m_driverKFM": { + "type": "std::string", + "id": 11, + "offset": 224, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1883851493 + }, + "m_adjustedFocusHeight": { + "type": "float", + "id": 12, + "offset": 256, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 863441156 + }, + "m_animationEventList": { + "type": "class SharedPointer", + "id": 13, + "offset": 264, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2858101335 + } + } + }, + "1677116761": { + "name": "class SpellDataList*", + "bases": [ + "PropertyClass" + ], + "hash": 1677116761, + "properties": { + "m_spellDataList": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1628917702 + } + } + }, + "1676673342": { + "name": "class LunariAmountTemplate", + "bases": [ + "WizItemTemplate", + "ItemTemplate", + "GameObjectTemplate", + "CoreTemplate", + "PropertyClass" + ], + "hash": 1676673342, + "properties": { + "m_behaviors": { + "type": "class BehaviorTemplate*", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1197808594 + }, + "m_objectName": { + "type": "std::string", + "id": 1, + "offset": 96, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2154940147 + }, + "m_templateID": { + "type": "unsigned int", + "id": 2, + "offset": 128, + "flags": 16777223, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1286746870 + }, + "m_visualID": { + "type": "unsigned int", + "id": 3, + "offset": 132, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1118778894 + }, + "m_adjectiveList": { + "type": "std::string", + "id": 4, + "offset": 248, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 3195213318 + }, + "m_exemptFromAOI": { + "type": "bool", + "id": 5, + "offset": 240, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1457879059 + }, + "m_displayName": { + "type": "std::string", + "id": 6, + "offset": 168, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2446900370 + }, + "m_description": { + "type": "std::string", + "id": 7, + "offset": 136, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1649374815 + }, + "m_nObjectType": { + "type": "enum ObjectType", + "id": 8, + "offset": 200, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2118905880, + "enum_options": { + "OT_UNDEFINED": 0, + "OT_PLAYER": 1, + "OT_NPC": 2, + "OT_PROP": 3, + "OT_OBJECT": 4, + "OT_HOUSE": 5, + "OT_KEY": 6, + "OT_OLD_KEY": 7, + "OT_DEED": 8, + "OT_MAIL": 9, + "OT_RECIPE": 17, + "OT_EQUIP_HEAD": 10, + "OT_EQUIP_CHEST": 11, + "OT_EQUIP_LEGS": 12, + "OT_EQUIP_HANDS": 13, + "OT_EQUIP_FINGER": 14, + "OT_EQUIP_FEET": 15, + "OT_EQUIP_EAR": 16, + "OT_BUILDING_BLOCK": 18, + "OT_BUILDING_BLOCK_SOLID": 19, + "OT_GOLF": 20, + "OT_DOOR": 21, + "OT_PET": 22, + "OT_FABRIC": 23, + "OT_WINDOW": 24, + "OT_ROOF": 25, + "OT_HORSE": 26, + "OT_STRUCTURE": 27, + "OT_HOUSING_TEXTURE": 28, + "OT_PLANT": 29 + } + }, + "m_sIcon": { + "type": "std::string", + "id": 9, + "offset": 208, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306259831 + }, + "m_equipRequirements": { + "type": "class RequirementList*", + "id": 10, + "offset": 280, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2762617226 + }, + "m_purchaseRequirements": { + "type": "class RequirementList*", + "id": 11, + "offset": 288, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3174641793 + }, + "m_equipEffects": { + "type": "class GameEffectInfo*", + "id": 12, + "offset": 296, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 836628351 + }, + "m_baseCost": { + "type": "float", + "id": 13, + "offset": 312, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1565352651 + }, + "m_creditsCost": { + "type": "float", + "id": 14, + "offset": 320, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 805514974 + }, + "m_avatarInfo": { + "type": "class AvatarItemInfoBase*", + "id": 15, + "offset": 328, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2627321299 + }, + "m_avatarFlags": { + "type": "std::string", + "id": 16, + "offset": 336, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2347762759 + }, + "m_itemLimit": { + "type": "int", + "id": 17, + "offset": 316, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1799746856 + }, + "m_holidayFlag": { + "type": "std::string", + "id": 18, + "offset": 352, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2994795359 + }, + "m_itemSetBonusTemplateID": { + "type": "unsigned int", + "id": 19, + "offset": 384, + "flags": 33554439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1316835672 + }, + "m_numPrimaryColors": { + "type": "int", + "id": 20, + "offset": 428, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 981103872 + }, + "m_numSecondaryColors": { + "type": "int", + "id": 21, + "offset": 432, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1310416868 + }, + "m_numPatterns": { + "type": "int", + "id": 22, + "offset": 436, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 953162171 + }, + "m_school": { + "type": "std::string", + "id": 23, + "offset": 392, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2438566051 + }, + "m_arenaPointCost": { + "type": "int", + "id": 24, + "offset": 440, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1819621796 + }, + "m_pvpCurrencyCost": { + "type": "int", + "id": 25, + "offset": 444, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 645595444 + }, + "m_pvpTourneyCurrencyCost": { + "type": "int", + "id": 26, + "offset": 448, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 517874954 + }, + "m_rank": { + "type": "int", + "id": 27, + "offset": 424, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 219803942 + }, + "m_boyIconIndex": { + "type": "int", + "id": 28, + "offset": 452, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 802140453 + }, + "m_girlIconIndex": { + "type": "int", + "id": 29, + "offset": 456, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 832706793 + }, + "m_leashOffsetOverride": { + "type": "class SharedPointer", + "id": 30, + "offset": 464, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1692586788 + }, + "m_rarity": { + "type": "enum RarityType", + "id": 31, + "offset": 460, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2253792108, + "enum_options": { + "RT_COMMON": 0, + "RT_UNCOMMON": 1, + "RT_RARE": 2, + "RT_ULTRARARE": 3, + "RT_EPIC": 4 + } + }, + "m_lunariAmount": { + "type": "int", + "id": 32, + "offset": 480, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 474358393 + }, + "m_nif": { + "type": "std::string", + "id": 33, + "offset": 488, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1764743064 + } + } + }, + "1232033042": { + "name": "class DynamicSigilTeam", + "bases": [ + "PropertyClass" + ], + "hash": 1232033042, + "properties": { + "m_teamName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3629497091 + }, + "m_teamIndex": { + "type": "int", + "id": 1, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1621537177 + }, + "m_flags": { + "type": "unsigned int", + "id": 2, + "offset": 108, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1005801050, + "enum_options": { + "DTF_Players": 1 + } + }, + "m_subcircles": { + "type": "class SharedPointer", + "id": 3, + "offset": 112, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2253698236 + } + } + }, + "2114431358": { + "name": "class PvP5thAgeKioskBehavior*", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 2114431358, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + } + } + }, + "828326101": { + "name": "class PipCount", + "bases": [ + "PropertyClass" + ], + "hash": 828326101, + "properties": { + "m_genericPips": { + "type": "unsigned char", + "id": 0, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1345845385 + }, + "m_powerPips": { + "type": "unsigned char", + "id": 1, + "offset": 81, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2096480441 + }, + "m_balancePips": { + "type": "unsigned char", + "id": 2, + "offset": 82, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1232748146 + }, + "m_deathPips": { + "type": "unsigned char", + "id": 3, + "offset": 83, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1364547506 + }, + "m_firePips": { + "type": "unsigned char", + "id": 4, + "offset": 84, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2490965330 + }, + "m_icePips": { + "type": "unsigned char", + "id": 5, + "offset": 85, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1584134173 + }, + "m_lifePips": { + "type": "unsigned char", + "id": 6, + "offset": 86, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2181444364 + }, + "m_mythPips": { + "type": "unsigned char", + "id": 7, + "offset": 87, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1590318670 + }, + "m_stormPips": { + "type": "unsigned char", + "id": 8, + "offset": 88, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 769321921 + }, + "m_shadowPips": { + "type": "unsigned char", + "id": 9, + "offset": 89, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2569883346 + } + } + }, + "1676673302": { + "name": "class LunariAmountTemplate*", + "bases": [ + "WizItemTemplate", + "ItemTemplate", + "GameObjectTemplate", + "CoreTemplate", + "PropertyClass" + ], + "hash": 1676673302, + "properties": { + "m_behaviors": { + "type": "class BehaviorTemplate*", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1197808594 + }, + "m_objectName": { + "type": "std::string", + "id": 1, + "offset": 96, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2154940147 + }, + "m_templateID": { + "type": "unsigned int", + "id": 2, + "offset": 128, + "flags": 16777223, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1286746870 + }, + "m_visualID": { + "type": "unsigned int", + "id": 3, + "offset": 132, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1118778894 + }, + "m_adjectiveList": { + "type": "std::string", + "id": 4, + "offset": 248, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 3195213318 + }, + "m_exemptFromAOI": { + "type": "bool", + "id": 5, + "offset": 240, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1457879059 + }, + "m_displayName": { + "type": "std::string", + "id": 6, + "offset": 168, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2446900370 + }, + "m_description": { + "type": "std::string", + "id": 7, + "offset": 136, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1649374815 + }, + "m_nObjectType": { + "type": "enum ObjectType", + "id": 8, + "offset": 200, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2118905880, + "enum_options": { + "OT_UNDEFINED": 0, + "OT_PLAYER": 1, + "OT_NPC": 2, + "OT_PROP": 3, + "OT_OBJECT": 4, + "OT_HOUSE": 5, + "OT_KEY": 6, + "OT_OLD_KEY": 7, + "OT_DEED": 8, + "OT_MAIL": 9, + "OT_RECIPE": 17, + "OT_EQUIP_HEAD": 10, + "OT_EQUIP_CHEST": 11, + "OT_EQUIP_LEGS": 12, + "OT_EQUIP_HANDS": 13, + "OT_EQUIP_FINGER": 14, + "OT_EQUIP_FEET": 15, + "OT_EQUIP_EAR": 16, + "OT_BUILDING_BLOCK": 18, + "OT_BUILDING_BLOCK_SOLID": 19, + "OT_GOLF": 20, + "OT_DOOR": 21, + "OT_PET": 22, + "OT_FABRIC": 23, + "OT_WINDOW": 24, + "OT_ROOF": 25, + "OT_HORSE": 26, + "OT_STRUCTURE": 27, + "OT_HOUSING_TEXTURE": 28, + "OT_PLANT": 29 + } + }, + "m_sIcon": { + "type": "std::string", + "id": 9, + "offset": 208, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306259831 + }, + "m_equipRequirements": { + "type": "class RequirementList*", + "id": 10, + "offset": 280, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2762617226 + }, + "m_purchaseRequirements": { + "type": "class RequirementList*", + "id": 11, + "offset": 288, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3174641793 + }, + "m_equipEffects": { + "type": "class GameEffectInfo*", + "id": 12, + "offset": 296, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 836628351 + }, + "m_baseCost": { + "type": "float", + "id": 13, + "offset": 312, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1565352651 + }, + "m_creditsCost": { + "type": "float", + "id": 14, + "offset": 320, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 805514974 + }, + "m_avatarInfo": { + "type": "class AvatarItemInfoBase*", + "id": 15, + "offset": 328, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2627321299 + }, + "m_avatarFlags": { + "type": "std::string", + "id": 16, + "offset": 336, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2347762759 + }, + "m_itemLimit": { + "type": "int", + "id": 17, + "offset": 316, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1799746856 + }, + "m_holidayFlag": { + "type": "std::string", + "id": 18, + "offset": 352, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2994795359 + }, + "m_itemSetBonusTemplateID": { + "type": "unsigned int", + "id": 19, + "offset": 384, + "flags": 33554439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1316835672 + }, + "m_numPrimaryColors": { + "type": "int", + "id": 20, + "offset": 428, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 981103872 + }, + "m_numSecondaryColors": { + "type": "int", + "id": 21, + "offset": 432, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1310416868 + }, + "m_numPatterns": { + "type": "int", + "id": 22, + "offset": 436, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 953162171 + }, + "m_school": { + "type": "std::string", + "id": 23, + "offset": 392, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2438566051 + }, + "m_arenaPointCost": { + "type": "int", + "id": 24, + "offset": 440, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1819621796 + }, + "m_pvpCurrencyCost": { + "type": "int", + "id": 25, + "offset": 444, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 645595444 + }, + "m_pvpTourneyCurrencyCost": { + "type": "int", + "id": 26, + "offset": 448, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 517874954 + }, + "m_rank": { + "type": "int", + "id": 27, + "offset": 424, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 219803942 + }, + "m_boyIconIndex": { + "type": "int", + "id": 28, + "offset": 452, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 802140453 + }, + "m_girlIconIndex": { + "type": "int", + "id": 29, + "offset": 456, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 832706793 + }, + "m_leashOffsetOverride": { + "type": "class SharedPointer", + "id": 30, + "offset": 464, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1692586788 + }, + "m_rarity": { + "type": "enum RarityType", + "id": 31, + "offset": 460, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2253792108, + "enum_options": { + "RT_COMMON": 0, + "RT_UNCOMMON": 1, + "RT_RARE": 2, + "RT_ULTRARARE": 3, + "RT_EPIC": 4 + } + }, + "m_lunariAmount": { + "type": "int", + "id": 32, + "offset": 480, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 474358393 + }, + "m_nif": { + "type": "std::string", + "id": 33, + "offset": 488, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1764743064 + } + } + }, + "1231934738": { + "name": "class DynamicSigilTeam*", + "bases": [ + "PropertyClass" + ], + "hash": 1231934738, + "properties": { + "m_teamName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3629497091 + }, + "m_teamIndex": { + "type": "int", + "id": 1, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1621537177 + }, + "m_flags": { + "type": "unsigned int", + "id": 2, + "offset": 108, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1005801050, + "enum_options": { + "DTF_Players": 1 + } + }, + "m_subcircles": { + "type": "class SharedPointer", + "id": 3, + "offset": 112, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2253698236 + } + } + }, + "2114209312": { + "name": "class GardeningBehavior*", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 2114209312, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_gardeningData": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2329363555 + } + } + }, + "393738954": { + "name": "class SharedPointer", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 393738954, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + } + } + }, + "828315334": { + "name": "class EmojiWindow*", + "bases": [ + "Window", + "PropertyClass" + ], + "hash": 828315334, + "properties": { + "m_sName": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306437263 + }, + "m_Children": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621225959 + }, + "m_Style": { + "type": "unsigned int", + "id": 2, + "offset": 152, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "SCALE_CHILDREN": 2, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "FOCUS_LOCKED": 64, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152 + } + }, + "m_Flags": { + "type": "unsigned int", + "id": 3, + "offset": 156, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } + }, + "m_Window": { + "type": "class Rect", + "id": 4, + "offset": 160, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3105139380 + }, + "m_fTargetAlpha": { + "type": "float", + "id": 5, + "offset": 212, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1809129834 + }, + "m_fDisabledAlpha": { + "type": "float", + "id": 6, + "offset": 216, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1389987675 + }, + "m_fAlpha": { + "type": "float", + "id": 7, + "offset": 208, + "flags": 65671, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 482130755 + }, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3623628394 + }, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2102211316 + }, + "m_sScript": { + "type": "std::string", + "id": 10, + "offset": 352, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1846695875 + }, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3389835433 + }, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547159940 + }, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513510520 + }, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3091503757 + } + } + }, + "1231910195": { + "name": "class SharedPointer", + "bases": [ + "DerbyMoraleByTerrainEffect", + "DerbyEffect", + "PropertyClass" + ], + "hash": 1231910195, + "properties": { + "m_buffType": { + "type": "enum DerbyTalentBuffType", + "id": 0, + "offset": 92, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1149251982, + "enum_options": { + "Buff": 0, + "Debuff": 1, + "Neither": 2 + } + }, + "m_kTarget": { + "type": "enum DerbyTargetType", + "id": 1, + "offset": 96, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1807803351, + "enum_options": { + "kTargetInFront": 0, + "kTargetBehind": 1, + "kTargetFirst": 2, + "kTargetSelf": 3, + "kTargetAll": 4, + "kTargetLast": 5 + } + }, + "m_nDuration": { + "type": "int", + "id": 2, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1110167982 + }, + "m_effectID": { + "type": "unsigned int", + "id": 3, + "offset": 88, + "flags": 24, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2347630439 + }, + "m_imageFilename": { + "type": "std::string", + "id": 4, + "offset": 112, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2813328063 + }, + "m_iconIndex": { + "type": "unsigned int", + "id": 5, + "offset": 144, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1265133262 + }, + "m_soundOnActivate": { + "type": "std::string", + "id": 6, + "offset": 152, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1956929714 + }, + "m_soundOnTarget": { + "type": "std::string", + "id": 7, + "offset": 184, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3444214056 + }, + "m_targetParticleEffect": { + "type": "std::string", + "id": 8, + "offset": 216, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3048234723 + }, + "m_overheadMessage": { + "type": "std::string", + "id": 9, + "offset": 248, + "flags": 8388639, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1701018190 + }, + "m_requirements": { + "type": "class RequirementList", + "id": 10, + "offset": 280, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2840988582 + } + } + }, + "393204234": { + "name": "class GameEffectInfo*", + "bases": [ + "PropertyClass" + ], + "hash": 393204234, + "properties": { + "m_effectName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2029161513 + } + } + }, + "828137340": { + "name": "class QuickSellItemList", + "bases": [ + "PropertyClass" + ], + "hash": 828137340, + "properties": { + "m_quickSellItemList": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2797277851 + }, + "m_sellingCharacterGID": { + "type": "gid", + "id": 1, + "offset": 88, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1096175527 + } + } + }, + "1231848766": { + "name": "class SharedPointer", + "bases": [ + "PlayerStatueStitchBlob", + "PlayerStatueBlob", + "PropertyClass" + ], + "hash": 1231848766, + "properties": { + "m_packedName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1805208228 + }, + "m_characterBuffer": { + "type": "std::string", + "id": 1, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1972275298 + }, + "m_equipmentBuffer": { + "type": "std::string", + "id": 2, + "offset": 136, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1511030957 + }, + "m_emoteID": { + "type": "unsigned int", + "id": 3, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 691533780 + } + } + }, + "2114390398": { + "name": "class PvP5thAgeKioskBehavior", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 2114390398, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + } + } + }, + "391267251": { + "name": "class ShowcasedStoreItem", + "bases": [ + "PropertyClass" + ], + "hash": 391267251, + "properties": { + "m_iconFilename": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3103016389 + }, + "m_templateID": { + "type": "gid", + "id": 1, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1075328001 + } + } + }, + "1676682085": { + "name": "enum CoreObjectInfo::LoadingType", + "bases": [], + "hash": 1676682085, + "properties": {} + }, + "390058977": { + "name": "class AcousticAreaBehaviorTemplate*", + "bases": [ + "AreaBehaviorTemplate", + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 390058977, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + }, + "m_radius": { + "type": "float", + "id": 1, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 989410271 + }, + "m_category": { + "type": "enum AudioCategory", + "id": 2, + "offset": 124, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2951251982, + "enum_options": { + "AudioCategory_Irrelevent": 0, + "AudioCategory_Accoustic": 1, + "AudioCategory_Noise": 2, + "AudioCategory_Music": 3, + "AudioCategory_MusicAtSFXVolume": 4, + "AudioCategory_Dialog": 5, + "AudioCategory_UI": 6, + "AudioCategory_NoiseAtMusicVolume": 7 + } + }, + "m_exclusive": { + "type": "bool", + "id": 3, + "offset": 128, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 824383403 + }, + "m_active": { + "type": "bool", + "id": 4, + "offset": 129, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 239335471 + }, + "m_enableReqs": { + "type": "class SharedPointer", + "id": 5, + "offset": 136, + "flags": 263, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3158020443 + }, + "m_accousticSignature": { + "type": "enum AccousticSignature", + "id": 6, + "offset": 152, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1188263221, + "enum_options": { + "Generic": 0, + "Padded Cell": 1, + "Room": 2, + "Bath Room": 3, + "Living Room": 4, + "Stone Room": 5, + "Auditorium": 6, + "Concert Hall": 7, + "Cave": 8, + "Arena": 9, + "Hanger": 10, + "Carpeted Hallway": 11, + "Hallway": 12, + "Stone Corridor": 13, + "Alley": 14, + "Forest": 15, + "City": 16, + "Mountains": 17, + "Quarry": 18, + "Plain": 19, + "Parking Lot": 20, + "Sewer Pipe": 21, + "Underwater": 22, + "Drugged": 23, + "Dizzy": 24, + "Psychotic": 25 + } + } + } + }, + "388865230": { + "name": "class SharedPointer", + "bases": [ + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 388865230, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + }, + "m_cloaked": { + "type": "bool", + "id": 2, + "offset": 124, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 7349510 + }, + "m_type": { + "type": "enum StopHangingRotationCinematicAction::kStopHangingTypes", + "id": 3, + "offset": 120, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2339468071, + "enum_options": { + "kStopHanging_Burn": 0, + "kStopHanging_Add": 1 + } + } + } + }, + "1231933994": { + "name": "class DynamicSigilTurn*", + "bases": [ + "PropertyClass" + ], + "hash": 1231933994, + "properties": { + "m_teamNames": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 3124709014 + } + } + }, + "2115250194": { + "name": "class SharedPointer", + "bases": [ + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 2115250194, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + }, + "m_destinationActor": { + "type": "std::string", + "id": 2, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1510240374 + }, + "m_interpolationDuration": { + "type": "float", + "id": 3, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1458058437 + }, + "m_interpolateRotation": { + "type": "bool", + "id": 4, + "offset": 156, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2140337898 + }, + "m_kDestination": { + "type": "enum MoveActorCinematicAction::kMoveActorDestination", + "id": 5, + "offset": 160, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2027574244, + "enum_options": { + "kCenter": 0, + "kHome": 3, + "kActor": 1, + "kActorHangingEffect": 2 + } + }, + "m_destinationZOffset": { + "type": "float", + "id": 6, + "offset": 164, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2188240922 + } + } + }, + "828326485": { + "name": "class PipCount*", + "bases": [ + "PropertyClass" + ], + "hash": 828326485, + "properties": { + "m_genericPips": { + "type": "unsigned char", + "id": 0, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1345845385 + }, + "m_powerPips": { + "type": "unsigned char", + "id": 1, + "offset": 81, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2096480441 + }, + "m_balancePips": { + "type": "unsigned char", + "id": 2, + "offset": 82, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1232748146 + }, + "m_deathPips": { + "type": "unsigned char", + "id": 3, + "offset": 83, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1364547506 + }, + "m_firePips": { + "type": "unsigned char", + "id": 4, + "offset": 84, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2490965330 + }, + "m_icePips": { + "type": "unsigned char", + "id": 5, + "offset": 85, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1584134173 + }, + "m_lifePips": { + "type": "unsigned char", + "id": 6, + "offset": 86, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2181444364 + }, + "m_mythPips": { + "type": "unsigned char", + "id": 7, + "offset": 87, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1590318670 + }, + "m_stormPips": { + "type": "unsigned char", + "id": 8, + "offset": 88, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 769321921 + }, + "m_shadowPips": { + "type": "unsigned char", + "id": 9, + "offset": 89, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2569883346 + } + } + }, + "1677508347": { + "name": "class SharedPointer", + "bases": [ + "Requirement", + "PropertyClass" + ], + "hash": 1677508347, + "properties": { + "m_applyNOT": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1746328074, + "enum_options": { + "__DEFAULT": 0 + } + }, + "m_operator": { + "type": "enum Requirement::Operator", + "id": 1, + "offset": 76, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2672792317, + "enum_options": { + "ROP_AND": 0, + "ROP_OR": 1, + "__DEFAULT": "ROP_AND" + } + }, + "m_templateID": { + "type": "gid", + "id": 2, + "offset": 80, + "flags": 33554439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1075328001 + } + } + }, + "2114513256": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 2114513256, + "properties": { + "m_seasonName": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1895926181 + }, + "m_seasonTitle": { + "type": "std::string", + "id": 1, + "offset": 112, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1758854694 + }, + "m_startMonth": { + "type": "int", + "id": 2, + "offset": 144, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 661899790 + }, + "m_startDay": { + "type": "int", + "id": 3, + "offset": 148, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 367473766 + }, + "m_startHour": { + "type": "int", + "id": 4, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1386544390 + }, + "m_startMinute": { + "type": "int", + "id": 5, + "offset": 156, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 357912026 + }, + "m_endMonth": { + "type": "int", + "id": 6, + "offset": 160, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1624246775 + }, + "m_endDay": { + "type": "int", + "id": 7, + "offset": 164, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 405825039 + }, + "m_endHour": { + "type": "int", + "id": 8, + "offset": 168, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 504652751 + }, + "m_endMinute": { + "type": "int", + "id": 9, + "offset": 172, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2050591459 + } + } + }, + "1677116766": { + "name": "class SpellDataList", + "bases": [ + "PropertyClass" + ], + "hash": 1677116766, + "properties": { + "m_spellDataList": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1628917702 + } + } + }, + "390069217": { + "name": "class AcousticAreaBehaviorTemplate", + "bases": [ + "AreaBehaviorTemplate", + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 390069217, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + }, + "m_radius": { + "type": "float", + "id": 1, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 989410271 + }, + "m_category": { + "type": "enum AudioCategory", + "id": 2, + "offset": 124, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2951251982, + "enum_options": { + "AudioCategory_Irrelevent": 0, + "AudioCategory_Accoustic": 1, + "AudioCategory_Noise": 2, + "AudioCategory_Music": 3, + "AudioCategory_MusicAtSFXVolume": 4, + "AudioCategory_Dialog": 5, + "AudioCategory_UI": 6, + "AudioCategory_NoiseAtMusicVolume": 7 + } + }, + "m_exclusive": { + "type": "bool", + "id": 3, + "offset": 128, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 824383403 + }, + "m_active": { + "type": "bool", + "id": 4, + "offset": 129, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 239335471 + }, + "m_enableReqs": { + "type": "class SharedPointer", + "id": 5, + "offset": 136, + "flags": 263, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3158020443 + }, + "m_accousticSignature": { + "type": "enum AccousticSignature", + "id": 6, + "offset": 152, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1188263221, + "enum_options": { + "Generic": 0, + "Padded Cell": 1, + "Room": 2, + "Bath Room": 3, + "Living Room": 4, + "Stone Room": 5, + "Auditorium": 6, + "Concert Hall": 7, + "Cave": 8, + "Arena": 9, + "Hanger": 10, + "Carpeted Hallway": 11, + "Hallway": 12, + "Stone Corridor": 13, + "Alley": 14, + "Forest": 15, + "City": 16, + "Mountains": 17, + "Quarry": 18, + "Plain": 19, + "Parking Lot": 20, + "Sewer Pipe": 21, + "Underwater": 22, + "Drugged": 23, + "Dizzy": 24, + "Psychotic": 25 + } + } + } + }, + "1232032298": { + "name": "class DynamicSigilTurn", + "bases": [ + "PropertyClass" + ], + "hash": 1232032298, + "properties": { + "m_teamNames": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 3124709014 + } + } + }, + "833885600": { + "name": "class AdvancedPetsConfig", + "bases": [ + "PropertyClass" + ], + "hash": 833885600, + "properties": { + "m_energyTick": { + "type": "int", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1236715535 + }, + "m_minPetLevelForJewels": { + "type": "unsigned char", + "id": 1, + "offset": 76, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1631450758 + }, + "m_petJewelTalentIcon": { + "type": "std::string", + "id": 2, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3286601420 + } + } + }, + "391082004": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 391082004, + "properties": { + "m_auctionList": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 3624813468 + }, + "m_auctionHousePurchaseKey": { + "type": "unsigned int", + "id": 1, + "offset": 88, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 394777768 + } + } + }, + "832268763": { + "name": "class ObjectRemapBehavior*", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 832268763, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + } + } + }, + "1678010558": { + "name": "class SG_GameAction_DetonateBlock", + "bases": [ + "SG_GameAction", + "PropertyClass" + ], + "hash": 1678010558, + "properties": { + "m_target": { + "type": "enum SG_GameAction::SG_Target", + "id": 0, + "offset": 72, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1166870973, + "enum_options": { + "Target_Ball": 0, + "Target_Self": 1, + "Target_Connections": 2, + "__DEFAULT": "Target_Ball" + } + }, + "m_impactInteraction": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3623009561 + }, + "m_fExplosionForceScalar": { + "type": "float", + "id": 2, + "offset": 116, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1506193859 + }, + "m_fExplosionRadiusScalar": { + "type": "float", + "id": 3, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 658772124 + } + } + }, + "2115680534": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 2115680534, + "properties": { + "m_npcList": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2709214274 + }, + "m_zoneType": { + "type": "enum NPCDataList::ZONE_TYPE", + "id": 1, + "offset": 88, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 975028587, + "enum_options": { + "CurrentZone": 0, + "OtherZons": 1, + "None": 2 + } + } + } + }, + "829951711": { + "name": "class SharedPointer", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 829951711, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + } + } + }, + "1236928588": { + "name": "class LocaleManager*", + "bases": [ + "PropertyClass" + ], + "hash": 1236928588, + "properties": { + "m_localeMappingList": { + "type": "class LocaleMapping", + "id": 0, + "offset": 104, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 762464984 + } + } + }, + "2115504344": { + "name": "class PeriodicSubscriptionsInfo*", + "bases": [ + "PropertyClass" + ], + "hash": 2115504344, + "properties": { + "m_subscriptions": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 3595491367 + } + } + }, + "828637388": { + "name": "class DespawnInfo*", + "bases": [ + "PropertyClass" + ], + "hash": 828637388, + "properties": { + "m_killer": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 635022555 + }, + "m_despawnEffect": { + "type": "unsigned int", + "id": 1, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1477583404 + } + } + }, + "1235649256": { + "name": "class MoveCommandTeleport*", + "bases": [ + "MoveController::MoveCommand", + "PropertyClass" + ], + "hash": 1235649256, + "properties": { + "m_vTarget": { + "type": "class Vector3D", + "id": 0, + "offset": 88, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3770499167 + } + } + }, + "2115309374": { + "name": "class SharedPointer", + "bases": [ + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 2115309374, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + }, + "m_fadeDuration": { + "type": "float", + "id": 2, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1402536557 + }, + "m_alphaTarget": { + "type": "float", + "id": 3, + "offset": 124, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 197622500 + } + } + }, + "392209268": { + "name": "class CombatGardeningXPEffectInfo*", + "bases": [ + "GameEffectInfo", + "PropertyClass" + ], + "hash": 392209268, + "properties": { + "m_effectName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2029161513 + }, + "m_xpPercent": { + "type": "int", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 755316563 + } + } + }, + "1679386772": { + "name": "class PetCameraActorCinematicAction", + "bases": [ + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 1679386772, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + } + } + }, + "1233746348": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1233746348, + "properties": { + "m_fishTemplateID": { + "type": "unsigned int", + "id": 0, + "offset": 72, + "flags": 33554439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2050232416 + }, + "m_creationChance": { + "type": "float", + "id": 1, + "offset": 76, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1801275150 + }, + "m_alternateLootChance": { + "type": "float", + "id": 2, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 786325463 + }, + "m_alternateLootTableName": { + "type": "std::string", + "id": 3, + "offset": 88, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3445884130 + } + } + }, + "392208948": { + "name": "class CombatGardeningXPEffectInfo", + "bases": [ + "GameEffectInfo", + "PropertyClass" + ], + "hash": 392208948, + "properties": { + "m_effectName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2029161513 + }, + "m_xpPercent": { + "type": "int", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 755316563 + } + } + }, + "1678778163": { + "name": "class ClientMagicSchoolBehavior", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1678778163, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_schoolOfFocus": { + "type": "unsigned int", + "id": 1, + "offset": 128, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 236936682 + }, + "m_experiencePoints": { + "type": "int", + "id": 2, + "offset": 136, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2011512991 + }, + "m_level": { + "type": "int", + "id": 3, + "offset": 132, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 801285362 + }, + "m_trainingPoints": { + "type": "int", + "id": 4, + "offset": 140, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1003892499 + }, + "m_overflowXP": { + "type": "int", + "id": 5, + "offset": 148, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 315792502 + }, + "m_levelLocked": { + "type": "int", + "id": 6, + "offset": 152, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1481284996 + }, + "m_equippedTeleportEffect": { + "type": "unsigned int", + "id": 7, + "offset": 144, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 918478182 + }, + "m_secondarySchool": { + "type": "unsigned int", + "id": 8, + "offset": 156, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 479424797 + } + } + }, + "830085604": { + "name": "class MoveCommandYaw*", + "bases": [ + "MoveController::MoveCommand", + "PropertyClass" + ], + "hash": 830085604, + "properties": { + "m_fYaw": { + "type": "float", + "id": 0, + "offset": 88, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 309564718 + } + } + }, + "1678583039": { + "name": "class ServiceMementoBase*", + "bases": [ + "PropertyClass" + ], + "hash": 1678583039, + "properties": { + "m_serviceOptions": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2340755721 + }, + "m_personaMadlibs": { + "type": "class SharedPointer", + "id": 1, + "offset": 96, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2418856780 + }, + "m_npcNameKey": { + "type": "std::string", + "id": 2, + "offset": 112, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1976589766 + }, + "m_npcTextKey": { + "type": "std::string", + "id": 3, + "offset": 144, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3453072394 + }, + "m_npcIcon": { + "type": "std::string", + "id": 4, + "offset": 176, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2965253381 + }, + "m_npcGreetingSound": { + "type": "std::string", + "id": 5, + "offset": 208, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1826980602 + }, + "m_npcFarewellSound": { + "type": "std::string", + "id": 6, + "offset": 240, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3241528183 + }, + "m_bTurnPlayerToFace": { + "type": "bool", + "id": 7, + "offset": 272, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 540096893 + }, + "m_clickToInteractOnly": { + "type": "bool", + "id": 8, + "offset": 273, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1696440536 + } + } + }, + "2115526608": { + "name": "class MapData*", + "bases": [ + "PropertyClass" + ], + "hash": 2115526608, + "properties": { + "m_mapStringKey": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3476195193 + }, + "m_mapImageFile": { + "type": "std::string", + "id": 1, + "offset": 104, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2861333660 + }, + "m_playerGlyphFile": { + "type": "std::string", + "id": 2, + "offset": 136, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3606975340 + }, + "m_mapIconsFile": { + "type": "std::string", + "id": 3, + "offset": 168, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3069899221 + }, + "m_namePlateFile": { + "type": "std::string", + "id": 4, + "offset": 200, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3484945554 + }, + "m_topLeft": { + "type": "class Point", + "id": 5, + "offset": 232, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2378435386 + }, + "m_topRight": { + "type": "class Point", + "id": 6, + "offset": 240, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2345696461 + }, + "m_bottomRight": { + "type": "class Point", + "id": 7, + "offset": 248, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3584882159 + }, + "m_bottomLeft": { + "type": "class Point", + "id": 8, + "offset": 256, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2676287516 + } + } + }, + "830085444": { + "name": "class MoveCommandYaw", + "bases": [ + "MoveController::MoveCommand", + "PropertyClass" + ], + "hash": 830085444, + "properties": { + "m_fYaw": { + "type": "float", + "id": 0, + "offset": 88, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 309564718 + } + } + }, + "1236197554": { + "name": "class SharedPointer", + "bases": [ + "PathMovementBehaviorTemplate", + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 1236197554, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + }, + "m_movementSpeed": { + "type": "float", + "id": 1, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 769135219 + }, + "m_movementScale": { + "type": "float", + "id": 2, + "offset": 124, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 768663914 + }, + "m_canFly": { + "type": "bool", + "id": 3, + "offset": 128, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 314980368 + }, + "m_mountTemplateID": { + "type": "gid", + "id": 4, + "offset": 136, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 169688980 + }, + "m_pathID": { + "type": "gid", + "id": 5, + "offset": 144, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 821494322 + } + } + }, + "2115526596": { + "name": "class MapData", + "bases": [ + "PropertyClass" + ], + "hash": 2115526596, + "properties": { + "m_mapStringKey": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3476195193 + }, + "m_mapImageFile": { + "type": "std::string", + "id": 1, + "offset": 104, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2861333660 + }, + "m_playerGlyphFile": { + "type": "std::string", + "id": 2, + "offset": 136, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3606975340 + }, + "m_mapIconsFile": { + "type": "std::string", + "id": 3, + "offset": 168, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3069899221 + }, + "m_namePlateFile": { + "type": "std::string", + "id": 4, + "offset": 200, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3484945554 + }, + "m_topLeft": { + "type": "class Point", + "id": 5, + "offset": 232, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2378435386 + }, + "m_topRight": { + "type": "class Point", + "id": 6, + "offset": 240, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2345696461 + }, + "m_bottomRight": { + "type": "class Point", + "id": 7, + "offset": 248, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3584882159 + }, + "m_bottomLeft": { + "type": "class Point", + "id": 8, + "offset": 256, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2676287516 + } + } + }, + "392858099": { + "name": "class ReqSchoolOfFocus", + "bases": [ + "Requirement", + "PropertyClass" + ], + "hash": 392858099, + "properties": { + "m_applyNOT": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1746328074, + "enum_options": { + "__DEFAULT": 0 + } + }, + "m_operator": { + "type": "enum Requirement::Operator", + "id": 1, + "offset": 76, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2672792317, + "enum_options": { + "ROP_AND": 0, + "ROP_OR": 1, + "__DEFAULT": "ROP_AND" + } + }, + "m_magicSchool": { + "type": "std::string", + "id": 2, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1597012900 + } + } + }, + "1235653066": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1235653066, + "properties": { + "m_level": { + "type": "unsigned char", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1438884808 + }, + "m_xpToLevel": { + "type": "int", + "id": 1, + "offset": 76, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1972600157 + }, + "m_levelName": { + "type": "std::string", + "id": 2, + "offset": 80, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3595417396 + } + } + }, + "392694259": { + "name": "class ReqSchoolOfFocus*", + "bases": [ + "Requirement", + "PropertyClass" + ], + "hash": 392694259, + "properties": { + "m_applyNOT": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1746328074, + "enum_options": { + "__DEFAULT": 0 + } + }, + "m_operator": { + "type": "enum Requirement::Operator", + "id": 1, + "offset": 76, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2672792317, + "enum_options": { + "ROP_AND": 0, + "ROP_OR": 1, + "__DEFAULT": "ROP_AND" + } + }, + "m_magicSchool": { + "type": "std::string", + "id": 2, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1597012900 + } + } + }, + "1678798913": { + "name": "class SharedPointer", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1678798913, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + } + } + }, + "831223119": { + "name": "class SharedPointer", + "bases": [ + "ControlCheckBox", + "ControlButton", + "Window", + "PropertyClass" + ], + "hash": 831223119, + "properties": { + "m_sName": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306437263 + }, + "m_Children": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621225959 + }, + "m_Style": { + "type": "unsigned int", + "id": 2, + "offset": 152, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152, + "EFFECT_SCALE": 67108864, + "LOCK_ICON_SIZE": 33554432, + "LEFT_TEXT": 536870912, + "NO_FIT_TEXT": 1073741824, + "CHECKBOX_TEXTOVERIMAGE": 16777216 + } + }, + "m_Flags": { + "type": "unsigned int", + "id": 3, + "offset": 156, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } + }, + "m_Window": { + "type": "class Rect", + "id": 4, + "offset": 160, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3105139380 + }, + "m_fTargetAlpha": { + "type": "float", + "id": 5, + "offset": 212, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1809129834 + }, + "m_fDisabledAlpha": { + "type": "float", + "id": 6, + "offset": 216, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1389987675 + }, + "m_fAlpha": { + "type": "float", + "id": 7, + "offset": 208, + "flags": 65671, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 482130755 + }, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3623628394 + }, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2102211316 + }, + "m_sScript": { + "type": "std::string", + "id": 10, + "offset": 352, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1846695875 + }, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3389835433 + }, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547159940 + }, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513510520 + }, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3091503757 + }, + "m_bToggle": { + "type": "bool", + "id": 16, + "offset": 608, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2071810903 + }, + "m_bButtonDown": { + "type": "bool", + "id": 17, + "offset": 609, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 840041705 + }, + "m_sLabel": { + "type": "std::wstring", + "id": 18, + "offset": 616, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2207009163 + }, + "m_labelOffset": { + "type": "class Rect", + "id": 19, + "offset": 832, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1990646723 + }, + "m_pButton": { + "type": "class SharedPointer", + "id": 20, + "offset": 656, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1543855875 + }, + "m_HotKey": { + "type": "unsigned int", + "id": 21, + "offset": 672, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1631553409 + }, + "m_Color": { + "type": "class Color", + "id": 22, + "offset": 676, + "flags": 262279, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1753714077 + }, + "m_bCursorOver": { + "type": "bool", + "id": 23, + "offset": 689, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 283981103 + }, + "m_bAbortWhenCursorNotOver": { + "type": "bool", + "id": 24, + "offset": 706, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 325405258 + }, + "m_bHotKeyDown": { + "type": "bool", + "id": 25, + "offset": 680, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 616989185 + }, + "m_fTime": { + "type": "float", + "id": 26, + "offset": 684, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 883746156 + }, + "m_bGreyed": { + "type": "bool", + "id": 27, + "offset": 688, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1566556053 + }, + "m_fMaxScale": { + "type": "float", + "id": 28, + "offset": 692, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2070186635 + }, + "m_fScaleSpeed": { + "type": "float", + "id": 29, + "offset": 696, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1457135702 + }, + "m_bUseDropShadow": { + "type": "bool", + "id": 30, + "offset": 704, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 93063037 + }, + "m_bUseOutline": { + "type": "bool", + "id": 31, + "offset": 705, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 744292994 + }, + "m_pGreyedState": { + "type": "class SharedPointer", + "id": 32, + "offset": 768, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2703352263 + }, + "m_pNormalState": { + "type": "class SharedPointer", + "id": 33, + "offset": 752, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1887909808 + }, + "m_pHighlightedState": { + "type": "class SharedPointer", + "id": 34, + "offset": 784, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2200177608 + }, + "m_pSelectedState": { + "type": "class SharedPointer", + "id": 35, + "offset": 800, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2266776432 + }, + "m_pDepressedState": { + "type": "class SharedPointer", + "id": 36, + "offset": 816, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1878185798 + }, + "m_nGroupID": { + "type": "int", + "id": 37, + "offset": 880, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 403966850 + }, + "m_bChecked": { + "type": "bool", + "id": 38, + "offset": 884, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 958955100 + }, + "m_pCheckedState": { + "type": "class SharedPointer", + "id": 39, + "offset": 888, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1210539694 + }, + "m_pCheckedGreyedState": { + "type": "class SharedPointer", + "id": 40, + "offset": 904, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2702030126 + }, + "m_pCheckedHighlightedState": { + "type": "class SharedPointer", + "id": 41, + "offset": 920, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1320097679 + }, + "m_pCheckedDepressedState": { + "type": "class SharedPointer", + "id": 42, + "offset": 936, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1609188685 + } + } + }, + "1236399804": { + "name": "class BlobRequest*", + "bases": [ + "PropertyClass" + ], + "hash": 1236399804, + "properties": { + "m_type": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1717601629 + }, + "m_associatedGID": { + "type": "gid", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 148404716 + }, + "m_blobRequestObjectList": { + "type": "class SharedPointer", + "id": 2, + "offset": 112, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 883864802 + } + } + }, + "2115828228": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 2115828228, + "properties": {} + }, + "393110686": { + "name": "class CommonElementTable", + "bases": [ + "PropertyClass" + ], + "hash": 393110686, + "properties": { + "m_hairColorList": { + "type": "class CharacterElement*", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1900063063 + } + } + }, + "1679735207": { + "name": "class ObstacleCourseRevolvingDoorBehaviorClient", + "bases": [ + "ObstacleCourseRevolvingDoorBehavior", + "ObstacleCourseObstacleBehavior", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1679735207, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + } + } + }, + "2115752282": { + "name": "enum kShadow_Threshold_Type", + "bases": [], + "hash": 2115752282, + "properties": {} + }, + "832775076": { + "name": "class WinAnimSize*", + "bases": [ + "WindowAnimation", + "PropertyClass" + ], + "hash": 832775076, + "properties": { + "m_bUseDeepCopy": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 433380635 + }, + "m_size": { + "type": "class Size", + "id": 1, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 251247159 + } + } + }, + "1679583380": { + "name": "class PetCameraActorCinematicAction*", + "bases": [ + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 1679583380, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + } + } + }, + "832321529": { + "name": "class GameEffectTimerSoundTrigger", + "bases": [ + "GameEffectTimerTrigger", + "PropertyClass" + ], + "hash": 832321529, + "properties": { + "m_radius": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 989410271 + }, + "m_triggerT": { + "type": "float", + "id": 1, + "offset": 76, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2138083583 + }, + "m_soundFiles": { + "type": "std::string", + "id": 2, + "offset": 80, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 3585199735 + } + } + }, + "1237032719": { + "name": "class MonsterMagicBehaviorBase*", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1237032719, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_monsterData": { + "type": "std::string", + "id": 1, + "offset": 128, + "flags": 551, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3377737309 + } + } + }, + "393452396": { + "name": "class QuickChatEntry*", + "bases": [ + "PropertyClass" + ], + "hash": 393452396, + "properties": { + "m_chatID": { + "type": "unsigned int", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 531784794 + }, + "m_label": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2298819451 + }, + "m_text": { + "type": "std::string", + "id": 2, + "offset": 112, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1717580128 + }, + "m_charAnim": { + "type": "std::string", + "id": 3, + "offset": 144, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2402868926 + }, + "m_categoryMask": { + "type": "unsigned int", + "id": 4, + "offset": 176, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2304824567 + }, + "m_dynFolder": { + "type": "int", + "id": 5, + "offset": 180, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 510571201 + }, + "m_supportsMore": { + "type": "bool", + "id": 6, + "offset": 184, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 902487766 + }, + "m_membersOnly": { + "type": "bool", + "id": 7, + "offset": 185, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1051823616 + }, + "m_unlockKey": { + "type": "std::string", + "id": 8, + "offset": 192, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3522694864 + }, + "m_faceAnim": { + "type": "std::string", + "id": 9, + "offset": 224, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3169175247 + }, + "m_sound": { + "type": "std::string", + "id": 10, + "offset": 256, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2307644996 + }, + "m_childEntries": { + "type": "class SharedPointer", + "id": 11, + "offset": 288, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1678382163 + } + } + }, + "832321209": { + "name": "class GameEffectTimerSoundTrigger*", + "bases": [ + "GameEffectTimerTrigger", + "PropertyClass" + ], + "hash": 832321209, + "properties": { + "m_radius": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 989410271 + }, + "m_triggerT": { + "type": "float", + "id": 1, + "offset": 76, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2138083583 + }, + "m_soundFiles": { + "type": "std::string", + "id": 2, + "offset": 80, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 3585199735 + } + } + }, + "1236928591": { + "name": "class LocaleManager", + "bases": [ + "PropertyClass" + ], + "hash": 1236928591, + "properties": { + "m_localeMappingList": { + "type": "class LocaleMapping", + "id": 0, + "offset": 104, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 762464984 + } + } + }, + "2116712353": { + "name": "class RaidPortalBehaviorTemplate*", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 2116712353, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + }, + "m_activeStateName": { + "type": "std::string", + "id": 1, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3583247033 + }, + "m_inactiveStateName": { + "type": "std::string", + "id": 2, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2765382672 + }, + "m_zoneList": { + "type": "std::string", + "id": 3, + "offset": 184, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2171104787 + }, + "m_zoneTeleportLocation": { + "type": "std::string", + "id": 4, + "offset": 208, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3345769311 + }, + "m_playerCount": { + "type": "int", + "id": 5, + "offset": 240, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 732802992 + }, + "m_lockObjectTID": { + "type": "unsigned int", + "id": 6, + "offset": 244, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1458748110 + }, + "m_lockObjectOffset": { + "type": "class Vector3D", + "id": 7, + "offset": 248, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1901342601 + }, + "m_unlockedStateName": { + "type": "std::string", + "id": 8, + "offset": 264, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2407785906 + }, + "m_chargeObjectTID": { + "type": "unsigned int", + "id": 9, + "offset": 296, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 519506927 + }, + "m_chargeObjectOffset": { + "type": "class Vector3D", + "id": 10, + "offset": 300, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2538928394 + } + } + }, + "393204394": { + "name": "class GameEffectInfo", + "bases": [ + "PropertyClass" + ], + "hash": 393204394, + "properties": { + "m_effectName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2029161513 + } + } + }, + "1680132679": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1680132679, + "properties": { + "m_timeOfPurchase": { + "type": "int", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 556096185 + }, + "m_charID": { + "type": "gid", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 320363747 + }, + "m_packedName": { + "type": "std::string", + "id": 2, + "offset": 88, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1805208228 + }, + "m_itemTemplateID": { + "type": "unsigned int", + "id": 3, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2190120133 + }, + "m_tokensAmount": { + "type": "int", + "id": 4, + "offset": 124, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 440789666 + }, + "m_tokensBalance": { + "type": "int", + "id": 5, + "offset": 128, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 328409108 + } + } + }, + "2116168416": { + "name": "class SharedPointer", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 2116168416, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + }, + "m_providesFloor": { + "type": "int", + "id": 1, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1381462216 + }, + "m_placedOnFloorTemplateID": { + "type": "unsigned int", + "id": 2, + "offset": 124, + "flags": 33554439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 349311070 + }, + "m_pickedupFromFloorTemplateID": { + "type": "unsigned int", + "id": 3, + "offset": 128, + "flags": 33554439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1208761121 + }, + "m_hasFadeableCeiling": { + "type": "int", + "id": 4, + "offset": 132, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2119980373 + }, + "m_dontFadeCeiling": { + "type": "int", + "id": 5, + "offset": 136, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 373748538 + } + } + }, + "1679747495": { + "name": "class ObstacleCourseRevolvingDoorBehaviorClient*", + "bases": [ + "ObstacleCourseRevolvingDoorBehavior", + "ObstacleCourseObstacleBehavior", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1679747495, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + } + } + }, + "393300496": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 393300496, + "properties": { + "m_attenuatedFileDescriptionList": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 395748088 + } + } + }, + "832400140": { + "name": "class WhirlyBurlyAddGroup*", + "bases": [ + "PropertyClass" + ], + "hash": 832400140, + "properties": { + "m_playerList": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1909774945 + } + } + }, + "1246144203": { + "name": "class ClientStopBacklashRotationEffectCinematicAction*", + "bases": [ + "StopBacklashRotationEffectCinematicAction", + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 1246144203, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + } + } + }, + "2116712363": { + "name": "class RaidPortalBehaviorTemplate", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 2116712363, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + }, + "m_activeStateName": { + "type": "std::string", + "id": 1, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3583247033 + }, + "m_inactiveStateName": { + "type": "std::string", + "id": 2, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2765382672 + }, + "m_zoneList": { + "type": "std::string", + "id": 3, + "offset": 184, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2171104787 + }, + "m_zoneTeleportLocation": { + "type": "std::string", + "id": 4, + "offset": 208, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3345769311 + }, + "m_playerCount": { + "type": "int", + "id": 5, + "offset": 240, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 732802992 + }, + "m_lockObjectTID": { + "type": "unsigned int", + "id": 6, + "offset": 244, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1458748110 + }, + "m_lockObjectOffset": { + "type": "class Vector3D", + "id": 7, + "offset": 248, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1901342601 + }, + "m_unlockedStateName": { + "type": "std::string", + "id": 8, + "offset": 264, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2407785906 + }, + "m_chargeObjectTID": { + "type": "unsigned int", + "id": 9, + "offset": 296, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 519506927 + }, + "m_chargeObjectOffset": { + "type": "class Vector3D", + "id": 10, + "offset": 300, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2538928394 + } + } + }, + "1680383999": { + "name": "class SharedPointer", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1680383999, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + } + } + }, + "1243364079": { + "name": "class SharedPointer", + "bases": [ + "ServiceOptionBase", + "PropertyClass" + ], + "hash": 1243364079, + "properties": { + "m_serviceName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2206028813 + }, + "m_iconKey": { + "type": "std::string", + "id": 1, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2457138637 + }, + "m_displayKey": { + "type": "std::string", + "id": 2, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3023276954 + }, + "m_serviceIndex": { + "type": "unsigned int", + "id": 3, + "offset": 204, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2103126710 + }, + "m_forceInteract": { + "type": "bool", + "id": 4, + "offset": 200, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1705789564 + } + } + }, + "393606423": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 393606423, + "properties": { + "m_whitelist": { + "type": "class DynamicURLDescriptor", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2741681576 + } + } + }, + "832829043": { + "name": "class KhanDanceComponent", + "bases": [ + "HousingGameInterface", + "PropertyClass" + ], + "hash": 832829043, + "properties": {} + }, + "1241163839": { + "name": "class BreadCrumbBehaviorTemplate*", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 1241163839, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + }, + "m_visualBreadCrumb": { + "type": "bool", + "id": 1, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1118570878 + } + } + }, + "393452492": { + "name": "class QuickChatEntry", + "bases": [ + "PropertyClass" + ], + "hash": 393452492, + "properties": { + "m_chatID": { + "type": "unsigned int", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 531784794 + }, + "m_label": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2298819451 + }, + "m_text": { + "type": "std::string", + "id": 2, + "offset": 112, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1717580128 + }, + "m_charAnim": { + "type": "std::string", + "id": 3, + "offset": 144, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2402868926 + }, + "m_categoryMask": { + "type": "unsigned int", + "id": 4, + "offset": 176, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2304824567 + }, + "m_dynFolder": { + "type": "int", + "id": 5, + "offset": 180, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 510571201 + }, + "m_supportsMore": { + "type": "bool", + "id": 6, + "offset": 184, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 902487766 + }, + "m_membersOnly": { + "type": "bool", + "id": 7, + "offset": 185, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1051823616 + }, + "m_unlockKey": { + "type": "std::string", + "id": 8, + "offset": 192, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3522694864 + }, + "m_faceAnim": { + "type": "std::string", + "id": 9, + "offset": 224, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3169175247 + }, + "m_sound": { + "type": "std::string", + "id": 10, + "offset": 256, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2307644996 + }, + "m_childEntries": { + "type": "class SharedPointer", + "id": 11, + "offset": 288, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1678382163 + } + } + }, + "1240028218": { + "name": "class TallyCounterTemplate*", + "bases": [ + "PropertyClass" + ], + "hash": 1240028218, + "properties": { + "m_percentChance": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 475863658 + }, + "m_descriptor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2283284954 + }, + "m_descriptor2": { + "type": "std::string", + "id": 2, + "offset": 112, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1649381388 + }, + "m_count": { + "type": "int", + "id": 3, + "offset": 144, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 790970659 + }, + "m_tallyResults": { + "type": "class ResultList*", + "id": 4, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2143999904 + } + } + }, + "2129198563": { + "name": "class TabDisplayPriority", + "bases": [ + "PropertyClass" + ], + "hash": 2129198563, + "properties": { + "m_uTab": { + "type": "unsigned int", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 431299609 + }, + "m_uPriority": { + "type": "unsigned int", + "id": 1, + "offset": 76, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 374455588 + } + } + }, + "1703578939": { + "name": "class SharedPointer", + "bases": [ + "AdvPvPEloBehavior", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1703578939, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_loaded": { + "type": "bool", + "id": 1, + "offset": 112, + "flags": 27, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 683367036 + }, + "m_entries": { + "type": "class SharedPointer", + "id": 2, + "offset": 120, + "flags": 27, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1075986553 + }, + "m_recordCache": { + "type": "class SharedPointer", + "id": 3, + "offset": 136, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 828243474 + } + } + }, + "1239549916": { + "name": "class std::vector >", + "bases": [], + "hash": 1239549916, + "properties": {} + }, + "2121388742": { + "name": "class BasicChatChannelInfo", + "bases": [ + "PropertyClass" + ], + "hash": 2121388742, + "properties": { + "m_ownerCharacterID": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2128119645 + }, + "m_ownerNameBlob": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2446827686 + }, + "m_isPublic": { + "type": "bool", + "id": 2, + "offset": 112, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1728439822 + }, + "m_inviteAllCooldownTime": { + "type": "int", + "id": 3, + "offset": 116, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1019161494 + }, + "m_playerList": { + "type": "class SharedPointer", + "id": 4, + "offset": 120, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2882119980 + } + } + }, + "835078234": { + "name": "class DuelModifierTemplate*", + "bases": [ + "CoreTemplate", + "PropertyClass" + ], + "hash": 835078234, + "properties": { + "m_behaviors": { + "type": "class BehaviorTemplate*", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1197808594 + }, + "m_templateID": { + "type": "unsigned int", + "id": 1, + "offset": 96, + "flags": 33554463, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1286746870 + }, + "m_name": { + "type": "std::string", + "id": 2, + "offset": 104, + "flags": 134217759, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1717359772 + }, + "m_description": { + "type": "std::string", + "id": 3, + "offset": 136, + "flags": 8388639, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1649374815 + }, + "m_combatTriggers": { + "type": "std::string", + "id": 4, + "offset": 168, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 3023646200 + }, + "m_battlefieldEffects": { + "type": "class SharedPointer", + "id": 5, + "offset": 184, + "flags": 31, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1245973515 + }, + "m_gameEffects": { + "type": "class SharedPointer", + "id": 6, + "offset": 208, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1187421775 + }, + "m_combatRules": { + "type": "class SharedPointer", + "id": 7, + "offset": 240, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 3327225763 + }, + "m_noCrits": { + "type": "bool", + "id": 8, + "offset": 224, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1394430197 + }, + "m_noTreasureCards": { + "type": "bool", + "id": 9, + "offset": 225, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1653008424 + }, + "m_bannedEquipment": { + "type": "int", + "id": 10, + "offset": 256, + "flags": 33554463, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 697457018 + }, + "m_bannedEquipmentSlots": { + "type": "std::string", + "id": 11, + "offset": 288, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2291474320 + }, + "m_bannedSchools": { + "type": "std::string", + "id": 12, + "offset": 320, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2417746270 + }, + "m_requiredSpellsAdjectives": { + "type": "std::string", + "id": 13, + "offset": 352, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2759718993 + }, + "m_bannedSpellsAdjectives": { + "type": "std::string", + "id": 14, + "offset": 384, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2971738904 + }, + "m_leftDoodle": { + "type": "std::string", + "id": 15, + "offset": 712, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1523671421 + }, + "m_rightDoodle": { + "type": "std::string", + "id": 16, + "offset": 744, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2828021488 + }, + "m_onlyTreasureCards": { + "type": "bool", + "id": 17, + "offset": 226, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 752220749 + }, + "m_noShadowSpells": { + "type": "bool", + "id": 18, + "offset": 227, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2142185705 + }, + "m_noEnchantedTreasureCards": { + "type": "bool", + "id": 19, + "offset": 228, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1780948882 + }, + "m_noEnchantmentSpells": { + "type": "bool", + "id": 20, + "offset": 229, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1325982520 + }, + "m_noMaycastSpells": { + "type": "bool", + "id": 21, + "offset": 230, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1409034133 + }, + "m_enableSpellLevelRestrictions": { + "type": "bool", + "id": 22, + "offset": 231, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1272415451 + }, + "m_ignoreSpellsPvPOnlyFlag": { + "type": "bool", + "id": 23, + "offset": 232, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1714276188 + }, + "m_ignoreSpellsPvEOnlyFlag": { + "type": "bool", + "id": 24, + "offset": 233, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1691675729 + }, + "m_newRulesFlag": { + "type": "bool", + "id": 25, + "offset": 704, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2040511330 + }, + "m_ruleText": { + "type": "std::string", + "id": 26, + "offset": 448, + "flags": 8388639, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1754346744 + }, + "m_gameTypeText": { + "type": "std::string", + "id": 27, + "offset": 416, + "flags": 8388639, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1885530300 + }, + "m_combatTriggersDescText": { + "type": "std::string", + "id": 28, + "offset": 480, + "flags": 8388639, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2417600380 + }, + "m_battlefieldEffectsDescText": { + "type": "std::string", + "id": 29, + "offset": 512, + "flags": 8388639, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3278371679 + }, + "m_gameEffectsDescText": { + "type": "std::string", + "id": 30, + "offset": 544, + "flags": 8388639, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2965245049 + }, + "m_spellLevelRestrictionsDescText": { + "type": "std::string", + "id": 31, + "offset": 576, + "flags": 8388639, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3306238112 + }, + "m_combatRulesDescText": { + "type": "std::string", + "id": 32, + "offset": 608, + "flags": 8388639, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3064659424 + }, + "m_requiredSpellsDescText": { + "type": "std::string", + "id": 33, + "offset": 640, + "flags": 8388639, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2035585939 + }, + "m_bannedSpellsDescText": { + "type": "std::string", + "id": 34, + "offset": 672, + "flags": 8388639, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2010144922 + } + } + }, + "1692652096": { + "name": "class SharedPointer", + "bases": [ + "PetTomeBehaviorBase", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1692652096, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_petData": { + "type": "std::string", + "id": 1, + "offset": 144, + "flags": 551, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2990195294 + } + } + }, + "1239527339": { + "name": "class CombatGardeningXPEffectTemplate", + "bases": [ + "GameEffectTemplate", + "PropertyClass" + ], + "hash": 1239527339, + "properties": { + "m_effectName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2029161513 + }, + "m_effectCategory": { + "type": "std::string", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1852673222 + }, + "m_sortOrder": { + "type": "int", + "id": 2, + "offset": 148, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1411218206 + }, + "m_duration": { + "type": "double", + "id": 3, + "offset": 192, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2727932435 + }, + "m_stackingCategories": { + "type": "std::string", + "id": 4, + "offset": 160, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1774497525 + }, + "m_isPersistent": { + "type": "bool", + "id": 5, + "offset": 153, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 923861920 + }, + "m_bIsOnPet": { + "type": "bool", + "id": 6, + "offset": 154, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 522593303 + }, + "m_isPublic": { + "type": "bool", + "id": 7, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1728439822 + }, + "m_visualEffectAddName": { + "type": "std::string", + "id": 8, + "offset": 200, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3382086694 + }, + "m_visualEffectRemoveName": { + "type": "std::string", + "id": 9, + "offset": 232, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1541697323 + }, + "m_onAddFunctorName": { + "type": "std::string", + "id": 10, + "offset": 280, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1561843107 + }, + "m_onRemoveFunctorName": { + "type": "std::string", + "id": 11, + "offset": 312, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2559017864 + }, + "m_stackingRule": { + "type": "enum STACKING_RULE", + "id": 12, + "offset": 144, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 431568889, + "enum_options": { + "STACKING_ALLOWED": 0, + "STACKING_NOSTACK": 1, + "STACKING_REPLACE": 2 + } + }, + "m_xpPercent": { + "type": "int", + "id": 13, + "offset": 360, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 755316563 + } + } + }, + "2119452192": { + "name": "class GardeningBehavior", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 2119452192, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_gardeningData": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2329363555 + } + } + }, + "393620306": { + "name": "enum HousingNode::ConnectionType", + "bases": [], + "hash": 393620306, + "properties": {} + }, + "834401291": { + "name": "class SharedPointer", + "bases": [ + "CollisionBehaviorTemplate", + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 834401291, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + }, + "m_walkableCollisionFilename": { + "type": "std::string", + "id": 1, + "offset": 120, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2223282859 + }, + "m_solidCollisionFilename": { + "type": "std::string", + "id": 2, + "offset": 152, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3292753187 + }, + "m_clickableCollisionFilename": { + "type": "std::string", + "id": 3, + "offset": 184, + "flags": 131335, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1964485570 + }, + "m_bAutoClickBox": { + "type": "bool", + "id": 4, + "offset": 216, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 13289565 + }, + "m_bDisableCollision": { + "type": "bool", + "id": 5, + "offset": 217, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2086036629 + }, + "m_bClientOnly": { + "type": "bool", + "id": 6, + "offset": 218, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1918653686 + }, + "m_nSimulationMethod": { + "type": "enum PhysicsBehaviorTemplate::SimulationMethod", + "id": 7, + "offset": 224, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1994289470, + "enum_options": { + "SM_CLIENT": 0, + "SM_SERVER_CLIENT": 1, + "__DEFAULT": "SM_CLIENT" + } + }, + "m_bEnableGravity": { + "type": "bool", + "id": 8, + "offset": 228, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2096165250, + "enum_options": { + "__DEFAULT": 1 + } + }, + "m_bEnableDamping": { + "type": "bool", + "id": 9, + "offset": 229, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1865442172, + "enum_options": { + "__DEFAULT": 0 + } + }, + "m_bStartsEnabled": { + "type": "bool", + "id": 10, + "offset": 230, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 648666209, + "enum_options": { + "__DEFAULT": 1 + } + }, + "m_fDampingX": { + "type": "float", + "id": 11, + "offset": 232, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 360421173 + }, + "m_fDampingY": { + "type": "float", + "id": 12, + "offset": 236, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 360421174 + }, + "m_fDampingZ": { + "type": "float", + "id": 13, + "offset": 240, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 360421175 + }, + "m_fAngDampingX": { + "type": "float", + "id": 14, + "offset": 244, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 725080299 + }, + "m_fAngDampingY": { + "type": "float", + "id": 15, + "offset": 248, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 725080300 + }, + "m_fAngDampingZ": { + "type": "float", + "id": 16, + "offset": 252, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 725080301 + }, + "m_fCenterX": { + "type": "float", + "id": 17, + "offset": 256, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1763110710 + }, + "m_fCenterY": { + "type": "float", + "id": 18, + "offset": 260, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1763110711 + }, + "m_fCenterZ": { + "type": "float", + "id": 19, + "offset": 264, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1763110712 + }, + "m_massShapes": { + "type": "class MassShapeTemplate*", + "id": 20, + "offset": 272, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1089760892 + } + } + }, + "1685251492": { + "name": "class SharedPointer", + "bases": [ + "BanishBacklashEffectCinematicAction", + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 1685251492, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + } + } + }, + "2118532982": { + "name": "class std::list >", + "bases": [], + "hash": 2118532982, + "properties": {} + }, + "1682152064": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1682152064, + "properties": { + "m_pBackMaterial": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1628562023 + }, + "m_pFont": { + "type": "class SharedPointer", + "id": 1, + "offset": 88, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1067686307 + }, + "m_pLargeFont": { + "type": "class SharedPointer", + "id": 2, + "offset": 104, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1523900782 + }, + "m_pSmallFont": { + "type": "class SharedPointer", + "id": 3, + "offset": 120, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2363252956 + }, + "m_Color": { + "type": "class Color", + "id": 4, + "offset": 136, + "flags": 262279, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1753714077 + }, + "m_HighColor": { + "type": "class Color", + "id": 5, + "offset": 140, + "flags": 262279, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2310527421 + }, + "m_SelectColor": { + "type": "class Color", + "id": 6, + "offset": 144, + "flags": 262279, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2792529213 + }, + "m_BorderColor": { + "type": "class Color", + "id": 7, + "offset": 148, + "flags": 262279, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1470576795 + }, + "m_BackColor": { + "type": "class Color", + "id": 8, + "offset": 152, + "flags": 262279, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1070928782 + }, + "m_ScrollBarColor": { + "type": "class Color", + "id": 9, + "offset": 156, + "flags": 262279, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1180747361 + }, + "m_ScrollTabColor": { + "type": "class Color", + "id": 10, + "offset": 160, + "flags": 262279, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1034892323 + }, + "m_nBorderSize": { + "type": "int", + "id": 11, + "offset": 164, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2016376897 + }, + "m_nScrollSize": { + "type": "int", + "id": 12, + "offset": 168, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 632681746 + }, + "m_sHoverSound": { + "type": "std::string", + "id": 13, + "offset": 176, + "flags": 131207, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2662773595 + }, + "m_sSelectSound": { + "type": "std::string", + "id": 14, + "offset": 208, + "flags": 131207, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2596786807 + } + } + }, + "2117722166": { + "name": "class ClientRaidManagerBehavior*", + "bases": [ + "RaidManagerBehavior", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 2117722166, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + } + } + }, + "834403912": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 834403912, + "properties": { + "m_nPathID": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 214382368 + }, + "m_nNodeID": { + "type": "int", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 152152635, + "enum_options": { + "__DEFAULT": 4294967295 + } + }, + "m_nPriority": { + "type": "int", + "id": 2, + "offset": 84, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1515251530, + "enum_options": { + "__DEFAULT": 100 + } + }, + "m_nChance": { + "type": "int", + "id": 3, + "offset": 88, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1860748394, + "enum_options": { + "__DEFAULT": 50 + } + } + } + }, + "1681225868": { + "name": "class SharedPointer", + "bases": [ + "StatisticEffectTemplate", + "GameEffectTemplate", + "PropertyClass" + ], + "hash": 1681225868, + "properties": { + "m_effectName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2029161513 + }, + "m_effectCategory": { + "type": "std::string", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1852673222 + }, + "m_sortOrder": { + "type": "int", + "id": 2, + "offset": 148, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1411218206 + }, + "m_duration": { + "type": "double", + "id": 3, + "offset": 192, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2727932435 + }, + "m_stackingCategories": { + "type": "std::string", + "id": 4, + "offset": 160, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1774497525 + }, + "m_isPersistent": { + "type": "bool", + "id": 5, + "offset": 153, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 923861920 + }, + "m_bIsOnPet": { + "type": "bool", + "id": 6, + "offset": 154, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 522593303 + }, + "m_isPublic": { + "type": "bool", + "id": 7, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1728439822 + }, + "m_visualEffectAddName": { + "type": "std::string", + "id": 8, + "offset": 200, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3382086694 + }, + "m_visualEffectRemoveName": { + "type": "std::string", + "id": 9, + "offset": 232, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1541697323 + }, + "m_onAddFunctorName": { + "type": "std::string", + "id": 10, + "offset": 280, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1561843107 + }, + "m_onRemoveFunctorName": { + "type": "std::string", + "id": 11, + "offset": 312, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2559017864 + }, + "m_stackingRule": { + "type": "enum STACKING_RULE", + "id": 12, + "offset": 144, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 431568889, + "enum_options": { + "STACKING_ALLOWED": 0, + "STACKING_NOSTACK": 1, + "STACKING_REPLACE": 2 + } + }, + "m_buffAll": { + "type": "bool", + "id": 13, + "offset": 392, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1205044623 + }, + "m_school": { + "type": "std::string", + "id": 14, + "offset": 400, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2438566051 + }, + "m_damageBonusPercent": { + "type": "float", + "id": 15, + "offset": 440, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 623230606 + }, + "m_damageBonusFlat": { + "type": "float", + "id": 16, + "offset": 488, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2212039108 + }, + "m_accuracyBonusPercent": { + "type": "float", + "id": 17, + "offset": 444, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1972336538 + }, + "m_armorPiercingBonusPercent": { + "type": "float", + "id": 18, + "offset": 448, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1569912641 + }, + "m_damageReducePercent": { + "type": "float", + "id": 19, + "offset": 452, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 541736927 + }, + "m_damageReduceFlat": { + "type": "float", + "id": 20, + "offset": 456, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 684172469 + }, + "m_accuracyReducePercent": { + "type": "float", + "id": 21, + "offset": 460, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2112559723 + }, + "m_healBonusPercent": { + "type": "float", + "id": 22, + "offset": 464, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 562313577 + }, + "m_healIncBonusPercent": { + "type": "float", + "id": 23, + "offset": 468, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2182535587 + }, + "m_hitPointBonus": { + "type": "float", + "id": 24, + "offset": 496, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 880644461 + }, + "m_spellChargeBonus": { + "type": "float", + "id": 25, + "offset": 504, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2109811656 + }, + "m_powerPipBonusPercent": { + "type": "float", + "id": 26, + "offset": 472, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1671446341 + }, + "m_petActChance": { + "type": "int", + "id": 27, + "offset": 492, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 237418461 + }, + "m_manaBonus": { + "type": "float", + "id": 28, + "offset": 500, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1372708603 + }, + "m_statTableName": { + "type": "std::string", + "id": 29, + "offset": 360, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1616642912 + }, + "m_manaReducePercent": { + "type": "float", + "id": 30, + "offset": 568, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 348324221 + }, + "m_expPercent": { + "type": "float", + "id": 31, + "offset": 572, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1147850677 + }, + "m_goldPercent": { + "type": "float", + "id": 32, + "offset": 576, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1095720878 + }, + "m_energyBonus": { + "type": "float", + "id": 33, + "offset": 508, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2223158984 + }, + "m_criticalHitRating": { + "type": "float", + "id": 34, + "offset": 512, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1978690540 + }, + "m_blockRating": { + "type": "float", + "id": 35, + "offset": 516, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2088486759 + }, + "m_accuracyRating": { + "type": "float", + "id": 36, + "offset": 520, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 165525575 + }, + "m_powerPipRating": { + "type": "float", + "id": 37, + "offset": 524, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1355340722 + }, + "m_damageResistanceRating": { + "type": "float", + "id": 38, + "offset": 532, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1961377740 + }, + "m_archmastery": { + "type": "float", + "id": 39, + "offset": 536, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1963579610 + }, + "m_archmasteryBonusPercent": { + "type": "float", + "id": 40, + "offset": 588, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1908627154 + }, + "m_balanceMastery": { + "type": "int", + "id": 41, + "offset": 540, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 149062181 + }, + "m_deathMastery": { + "type": "int", + "id": 42, + "offset": 544, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1421218661 + }, + "m_fireMastery": { + "type": "int", + "id": 43, + "offset": 548, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1431794949 + }, + "m_iceMastery": { + "type": "int", + "id": 44, + "offset": 552, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 704864240 + }, + "m_lifeMastery": { + "type": "int", + "id": 45, + "offset": 556, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2142136447 + }, + "m_mythMastery": { + "type": "int", + "id": 46, + "offset": 560, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1766317185 + }, + "m_stormMastery": { + "type": "int", + "id": 47, + "offset": 564, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1883988244 + }, + "m_stunResistancePercent": { + "type": "float", + "id": 48, + "offset": 580, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1868382627 + }, + "m_fishingLuckBonusPercent": { + "type": "float", + "id": 49, + "offset": 480, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1363349254 + }, + "m_shadowPipBonusPercent": { + "type": "float", + "id": 50, + "offset": 476, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1426533310 + }, + "m_wispBonusPercent": { + "type": "float", + "id": 51, + "offset": 484, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1304386546 + }, + "m_pipConversionRating": { + "type": "float", + "id": 52, + "offset": 584, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 246855691 + }, + "m_shadowPipRating": { + "type": "float", + "id": 53, + "offset": 528, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 507126123 + } + } + }, + "1240028178": { + "name": "class TallyCounterTemplate", + "bases": [ + "PropertyClass" + ], + "hash": 1240028178, + "properties": { + "m_percentChance": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 475863658 + }, + "m_descriptor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2283284954 + }, + "m_descriptor2": { + "type": "std::string", + "id": 2, + "offset": 112, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1649381388 + }, + "m_count": { + "type": "int", + "id": 3, + "offset": 144, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 790970659 + }, + "m_tallyResults": { + "type": "class ResultList*", + "id": 4, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2143999904 + } + } + }, + "2117518908": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 2117518908, + "properties": { + "m_leagueType": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3327951024 + }, + "m_mainDoodle": { + "type": "std::string", + "id": 1, + "offset": 112, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2211594423 + }, + "m_leagueDescription": { + "type": "std::string", + "id": 2, + "offset": 144, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3204126290 + }, + "m_leagueName": { + "type": "std::string", + "id": 3, + "offset": 176, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3327709167 + }, + "m_age": { + "type": "int", + "id": 4, + "offset": 208, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 267029223 + }, + "m_retired": { + "type": "bool", + "id": 5, + "offset": 212, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1931776834 + }, + "m_gracePeriodDays": { + "type": "int", + "id": 6, + "offset": 216, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1128520496 + }, + "m_requirementsList": { + "type": "class SharedPointer", + "id": 7, + "offset": 224, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1999017945 + }, + "m_seasonList": { + "type": "std::string", + "id": 8, + "offset": 240, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1895863232 + }, + "m_duelModifiers": { + "type": "std::string", + "id": 9, + "offset": 256, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2938413959 + } + } + }, + "394313333": { + "name": "class ClientCantripsInvisibilityEffect", + "bases": [ + "CantripsInvisibilityEffect", + "GameEffectBase", + "PropertyClass" + ], + "hash": 394313333, + "properties": { + "m_currentTickCount": { + "type": "double", + "id": 0, + "offset": 80, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2533274692 + }, + "m_effectNameID": { + "type": "unsigned int", + "id": 1, + "offset": 96, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1204067144 + }, + "m_bIsOnPet": { + "type": "bool", + "id": 2, + "offset": 73, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 522593303 + }, + "m_originatorID": { + "type": "gid", + "id": 3, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1131810019 + }, + "m_itemSlotID": { + "type": "unsigned int", + "id": 4, + "offset": 112, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1895747595 + }, + "m_internalID": { + "type": "int", + "id": 5, + "offset": 92, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1643137924 + }, + "m_endTime": { + "type": "unsigned int", + "id": 6, + "offset": 88, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 716479635 + } + } + }, + "1681095358": { + "name": "class SharedPointer", + "bases": [ + "Window", + "PropertyClass" + ], + "hash": 1681095358, + "properties": { + "m_sName": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306437263 + }, + "m_Children": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 65667, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621225959 + }, + "m_Style": { + "type": "unsigned int", + "id": 2, + "offset": 152, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "SCALE_CHILDREN": 2, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "FOCUS_LOCKED": 64, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152 + } + }, + "m_Flags": { + "type": "unsigned int", + "id": 3, + "offset": 156, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } + }, + "m_Window": { + "type": "class Rect", + "id": 4, + "offset": 160, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3105139380 + }, + "m_fTargetAlpha": { + "type": "float", + "id": 5, + "offset": 212, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1809129834 + }, + "m_fDisabledAlpha": { + "type": "float", + "id": 6, + "offset": 216, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1389987675 + }, + "m_fAlpha": { + "type": "float", + "id": 7, + "offset": 208, + "flags": 65671, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 482130755 + }, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3623628394 + }, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2102211316 + }, + "m_sScript": { + "type": "std::string", + "id": 10, + "offset": 352, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1846695875 + }, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3389835433 + }, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547159940 + }, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513510520 + }, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3091503757 + } + } + }, + "394062644": { + "name": "class SharedPointer", + "bases": [ + "Material", + "PropertyClass" + ], + "hash": 394062644, + "properties": { + "m_sMaterialName": { + "type": "std::wstring", + "id": 0, + "offset": 72, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1299185467 + }, + "m_Blending": { + "type": "enum Material::Blending", + "id": 1, + "offset": 116, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3003693822, + "enum_options": { + "B_NONE": 0, + "B_ADDITIVE": 1, + "B_ALPHA": 2, + "B_ALPHA_INV": 3, + "B_ADDITIVE_INV": 4, + "__DEFAULT": "B_ALPHA" + } + }, + "m_eRepeat": { + "type": "enum Material::Repeating", + "id": 2, + "offset": 176, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3302018843, + "enum_options": { + "R_NONE": 0, + "R_REPEAT": 1 + } + }, + "m_pDiffuseMap": { + "type": "class SharedPointer", + "id": 3, + "offset": 120, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 4008975679 + }, + "m_pAlphaMask": { + "type": "class SharedPointer", + "id": 4, + "offset": 136, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3411451405 + }, + "m_fLastAlpha": { + "type": "float", + "id": 5, + "offset": 152, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 284727287 + }, + "m_Diffuse": { + "type": "class Color", + "id": 6, + "offset": 156, + "flags": 262279, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1644364836 + }, + "m_Ambient": { + "type": "class Color", + "id": 7, + "offset": 160, + "flags": 262279, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2216816350 + }, + "m_Specular": { + "type": "class Color", + "id": 8, + "offset": 168, + "flags": 262279, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2645528957 + }, + "m_fSpecularPower": { + "type": "float", + "id": 9, + "offset": 172, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 539146057 + }, + "m_Frames": { + "type": "class Rect", + "id": 10, + "offset": 192, + "flags": 65671, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 3064301836 + }, + "m_nCurrentFrame": { + "type": "int", + "id": 11, + "offset": 216, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 45308854 + }, + "m_fAnimRate": { + "type": "float", + "id": 12, + "offset": 228, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 802385934 + }, + "m_nAnimBegin": { + "type": "int", + "id": 13, + "offset": 220, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 400513266 + }, + "m_nAnimEnd": { + "type": "int", + "id": 14, + "offset": 224, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1081103460 + }, + "m_fAnimTime": { + "type": "float", + "id": 15, + "offset": 232, + "flags": 134, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 802466289 + }, + "m_fMaterialScaleX": { + "type": "float", + "id": 16, + "offset": 180, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 634638220 + }, + "m_fMaterialScaleY": { + "type": "float", + "id": 17, + "offset": 184, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 634638221 + }, + "m_TilesX": { + "type": "int", + "id": 18, + "offset": 240, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1882401395 + }, + "m_TilesY": { + "type": "int", + "id": 19, + "offset": 244, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1882401396 + } + } + }, + "835974133": { + "name": "class SharedPointer", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 835974133, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + }, + "m_autoAdd": { + "type": "bool", + "id": 1, + "offset": 121, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2077986357 + }, + "m_autoRemove": { + "type": "bool", + "id": 2, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 665701306 + }, + "m_allowedQuests": { + "type": "std::string", + "id": 3, + "offset": 128, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1695271656 + }, + "m_allowedInZones": { + "type": "bool", + "id": 4, + "offset": 160, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 195607873 + }, + "m_zoneList": { + "type": "std::string", + "id": 5, + "offset": 168, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2171104787 + }, + "m_otherNpcsToReplace": { + "type": "std::string", + "id": 6, + "offset": 184, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 3637554352 + }, + "m_dontSpawnIfNpcIsPresent": { + "type": "std::string", + "id": 7, + "offset": 200, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 3130923110 + }, + "m_questEffectTemplate": { + "type": "class SharedPointer", + "id": 8, + "offset": 216, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3397272317 + } + } + }, + "1241163829": { + "name": "class BreadCrumbBehaviorTemplate", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 1241163829, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + }, + "m_visualBreadCrumb": { + "type": "bool", + "id": 1, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1118570878 + } + } + }, + "394082966": { + "name": "class SharedPointer", + "bases": [ + "Window", + "PropertyClass" + ], + "hash": 394082966, + "properties": { + "m_sName": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306437263 + }, + "m_Children": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621225959 + }, + "m_Style": { + "type": "unsigned int", + "id": 2, + "offset": 152, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "SCALE_CHILDREN": 2, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "FOCUS_LOCKED": 64, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152 + } + }, + "m_Flags": { + "type": "unsigned int", + "id": 3, + "offset": 156, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } + }, + "m_Window": { + "type": "class Rect", + "id": 4, + "offset": 160, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3105139380 + }, + "m_fTargetAlpha": { + "type": "float", + "id": 5, + "offset": 212, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1809129834 + }, + "m_fDisabledAlpha": { + "type": "float", + "id": 6, + "offset": 216, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1389987675 + }, + "m_fAlpha": { + "type": "float", + "id": 7, + "offset": 208, + "flags": 65671, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 482130755 + }, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3623628394 + }, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2102211316 + }, + "m_sScript": { + "type": "std::string", + "id": 10, + "offset": 352, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1846695875 + }, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3389835433 + }, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547159940 + }, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513510520 + }, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3091503757 + } + } + }, + "835078258": { + "name": "class DuelModifierTemplate", + "bases": [ + "CoreTemplate", + "PropertyClass" + ], + "hash": 835078258, + "properties": { + "m_behaviors": { + "type": "class BehaviorTemplate*", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1197808594 + }, + "m_templateID": { + "type": "unsigned int", + "id": 1, + "offset": 96, + "flags": 33554463, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1286746870 + }, + "m_name": { + "type": "std::string", + "id": 2, + "offset": 104, + "flags": 134217759, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1717359772 + }, + "m_description": { + "type": "std::string", + "id": 3, + "offset": 136, + "flags": 8388639, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1649374815 + }, + "m_combatTriggers": { + "type": "std::string", + "id": 4, + "offset": 168, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 3023646200 + }, + "m_battlefieldEffects": { + "type": "class SharedPointer", + "id": 5, + "offset": 184, + "flags": 31, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1245973515 + }, + "m_gameEffects": { + "type": "class SharedPointer", + "id": 6, + "offset": 208, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1187421775 + }, + "m_combatRules": { + "type": "class SharedPointer", + "id": 7, + "offset": 240, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 3327225763 + }, + "m_noCrits": { + "type": "bool", + "id": 8, + "offset": 224, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1394430197 + }, + "m_noTreasureCards": { + "type": "bool", + "id": 9, + "offset": 225, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1653008424 + }, + "m_bannedEquipment": { + "type": "int", + "id": 10, + "offset": 256, + "flags": 33554463, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 697457018 + }, + "m_bannedEquipmentSlots": { + "type": "std::string", + "id": 11, + "offset": 288, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2291474320 + }, + "m_bannedSchools": { + "type": "std::string", + "id": 12, + "offset": 320, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2417746270 + }, + "m_requiredSpellsAdjectives": { + "type": "std::string", + "id": 13, + "offset": 352, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2759718993 + }, + "m_bannedSpellsAdjectives": { + "type": "std::string", + "id": 14, + "offset": 384, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2971738904 + }, + "m_leftDoodle": { + "type": "std::string", + "id": 15, + "offset": 712, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1523671421 + }, + "m_rightDoodle": { + "type": "std::string", + "id": 16, + "offset": 744, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2828021488 + }, + "m_onlyTreasureCards": { + "type": "bool", + "id": 17, + "offset": 226, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 752220749 + }, + "m_noShadowSpells": { + "type": "bool", + "id": 18, + "offset": 227, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2142185705 + }, + "m_noEnchantedTreasureCards": { + "type": "bool", + "id": 19, + "offset": 228, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1780948882 + }, + "m_noEnchantmentSpells": { + "type": "bool", + "id": 20, + "offset": 229, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1325982520 + }, + "m_noMaycastSpells": { + "type": "bool", + "id": 21, + "offset": 230, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1409034133 + }, + "m_enableSpellLevelRestrictions": { + "type": "bool", + "id": 22, + "offset": 231, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1272415451 + }, + "m_ignoreSpellsPvPOnlyFlag": { + "type": "bool", + "id": 23, + "offset": 232, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1714276188 + }, + "m_ignoreSpellsPvEOnlyFlag": { + "type": "bool", + "id": 24, + "offset": 233, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1691675729 + }, + "m_newRulesFlag": { + "type": "bool", + "id": 25, + "offset": 704, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2040511330 + }, + "m_ruleText": { + "type": "std::string", + "id": 26, + "offset": 448, + "flags": 8388639, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1754346744 + }, + "m_gameTypeText": { + "type": "std::string", + "id": 27, + "offset": 416, + "flags": 8388639, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1885530300 + }, + "m_combatTriggersDescText": { + "type": "std::string", + "id": 28, + "offset": 480, + "flags": 8388639, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2417600380 + }, + "m_battlefieldEffectsDescText": { + "type": "std::string", + "id": 29, + "offset": 512, + "flags": 8388639, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3278371679 + }, + "m_gameEffectsDescText": { + "type": "std::string", + "id": 30, + "offset": 544, + "flags": 8388639, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2965245049 + }, + "m_spellLevelRestrictionsDescText": { + "type": "std::string", + "id": 31, + "offset": 576, + "flags": 8388639, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3306238112 + }, + "m_combatRulesDescText": { + "type": "std::string", + "id": 32, + "offset": 608, + "flags": 8388639, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3064659424 + }, + "m_requiredSpellsDescText": { + "type": "std::string", + "id": 33, + "offset": 640, + "flags": 8388639, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2035585939 + }, + "m_bannedSpellsDescText": { + "type": "std::string", + "id": 34, + "offset": 672, + "flags": 8388639, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2010144922 + } + } + }, + "1681661245": { + "name": "class SharedPointer", + "bases": [ + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 1681661245, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + } + } + }, + "1240378629": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1240378629, + "properties": { + "m_characterGID": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 501688601 + }, + "m_packedName": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1805208228 + }, + "m_message": { + "type": "std::string", + "id": 2, + "offset": 112, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3411261376 + }, + "m_messageID": { + "type": "unsigned int", + "id": 3, + "offset": 144, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 924780703 + }, + "m_sendFilter": { + "type": "unsigned char", + "id": 4, + "offset": 148, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1518238304 + }, + "m_messageTime": { + "type": "unsigned int", + "id": 5, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1742920033 + } + } + }, + "2119237477": { + "name": "class GardeningShedBehaviorBase*", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 2119237477, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_seedList": { + "type": "unsigned int", + "id": 1, + "offset": 112, + "flags": 65567, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 672751594 + } + } + }, + "2118997174": { + "name": "class PetDerbyObstacleBehaviorClient", + "bases": [ + "PetDerbyObstacleBehavior", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 2118997174, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_laneNumber": { + "type": "int", + "id": 1, + "offset": 184, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 650028867 + }, + "m_distanceFromStart": { + "type": "int", + "id": 2, + "offset": 188, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 649349799 + } + } + }, + "1682081495": { + "name": "class WizardAutobotQuestManager*", + "bases": [ + "AutobotQuestManager", + "PropertyClass" + ], + "hash": 1682081495, + "properties": {} + }, + "396256952": { + "name": "class CameraFadeCinematicAction*", + "bases": [ + "CinematicAction", + "PropertyClass" + ], + "hash": 396256952, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_fDuration": { + "type": "float", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 598255075 + }, + "m_bCycle": { + "type": "bool", + "id": 2, + "offset": 84, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 240694213 + }, + "m_bFadeIn": { + "type": "bool", + "id": 3, + "offset": 85, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1507201372 + } + } + }, + "836827441": { + "name": "class LeaderboardEntry*", + "bases": [ + "PropertyClass" + ], + "hash": 836827441, + "properties": { + "m_characterID": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 210498386 + }, + "m_rank": { + "type": "unsigned int", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 431206393 + }, + "m_nameBlob": { + "type": "std::string", + "id": 2, + "offset": 88, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3058206907 + }, + "m_characterLevel": { + "type": "unsigned int", + "id": 3, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1018074066 + }, + "m_characterSchool": { + "type": "unsigned int", + "id": 4, + "offset": 124, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1330015234 + }, + "m_wins": { + "type": "unsigned int", + "id": 5, + "offset": 128, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 431394798 + }, + "m_losses": { + "type": "unsigned int", + "id": 6, + "offset": 132, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 892951526 + }, + "m_ties": { + "type": "unsigned int", + "id": 7, + "offset": 136, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 431286690 + }, + "m_gamesPlayed": { + "type": "unsigned int", + "id": 8, + "offset": 140, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1165998489 + }, + "m_points": { + "type": "unsigned int", + "id": 9, + "offset": 144, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1049128778 + } + } + }, + "396027674": { + "name": "class SharedPointer", + "bases": [ + "WizGameObjectTemplate", + "GameObjectTemplate", + "CoreTemplate", + "PropertyClass" + ], + "hash": 396027674, + "properties": { + "m_behaviors": { + "type": "class BehaviorTemplate*", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1197808594 + }, + "m_objectName": { + "type": "std::string", + "id": 1, + "offset": 96, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2154940147 + }, + "m_templateID": { + "type": "unsigned int", + "id": 2, + "offset": 128, + "flags": 16777223, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1286746870 + }, + "m_visualID": { + "type": "unsigned int", + "id": 3, + "offset": 132, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1118778894 + }, + "m_adjectiveList": { + "type": "std::string", + "id": 4, + "offset": 248, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 3195213318 + }, + "m_exemptFromAOI": { + "type": "bool", + "id": 5, + "offset": 240, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1457879059 + }, + "m_displayName": { + "type": "std::string", + "id": 6, + "offset": 168, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2446900370 + }, + "m_description": { + "type": "std::string", + "id": 7, + "offset": 136, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1649374815 + }, + "m_nObjectType": { + "type": "enum ObjectType", + "id": 8, + "offset": 200, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2118905880, + "enum_options": { + "OT_UNDEFINED": 0, + "OT_PLAYER": 1, + "OT_NPC": 2, + "OT_PROP": 3, + "OT_OBJECT": 4, + "OT_HOUSE": 5, + "OT_KEY": 6, + "OT_OLD_KEY": 7, + "OT_DEED": 8, + "OT_MAIL": 9, + "OT_RECIPE": 17, + "OT_EQUIP_HEAD": 10, + "OT_EQUIP_CHEST": 11, + "OT_EQUIP_LEGS": 12, + "OT_EQUIP_HANDS": 13, + "OT_EQUIP_FINGER": 14, + "OT_EQUIP_FEET": 15, + "OT_EQUIP_EAR": 16, + "OT_BUILDING_BLOCK": 18, + "OT_BUILDING_BLOCK_SOLID": 19, + "OT_GOLF": 20, + "OT_DOOR": 21, + "OT_PET": 22, + "OT_FABRIC": 23, + "OT_WINDOW": 24, + "OT_ROOF": 25, + "OT_HORSE": 26, + "OT_STRUCTURE": 27, + "OT_HOUSING_TEXTURE": 28, + "OT_PLANT": 29 + } + }, + "m_sIcon": { + "type": "std::string", + "id": 9, + "offset": 208, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306259831 + }, + "m_lootTable": { + "type": "std::string", + "id": 10, + "offset": 280, + "flags": 268435463, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2539512673, + "enum_options": { + "__BASECLASS": "LootTable" + } + }, + "m_deathParticles": { + "type": "std::string", + "id": 11, + "offset": 296, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3201049672 + }, + "m_deathSound": { + "type": "std::string", + "id": 12, + "offset": 328, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1865613610 + }, + "m_hitSound": { + "type": "std::string", + "id": 13, + "offset": 360, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2746656777 + }, + "m_castSound": { + "type": "std::string", + "id": 14, + "offset": 392, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3343064815 + }, + "m_aggroSound": { + "type": "std::string", + "id": 15, + "offset": 424, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3421949940 + }, + "m_primarySchoolName": { + "type": "std::string", + "id": 16, + "offset": 456, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3211370408 + }, + "m_locationPreference": { + "type": "std::string", + "id": 17, + "offset": 488, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2817699507 + }, + "m_leashOffsetOverride": { + "type": "class SharedPointer", + "id": 18, + "offset": 528, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1692586788 + } + } + }, + "836462749": { + "name": "class OldWizardEquippedItemInfo", + "bases": [ + "EquippedItemInfo", + "PropertyClass" + ], + "hash": 836462749, + "properties": { + "m_itemID": { + "type": "unsigned int", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 780964329 + }, + "m_baseColor": { + "type": "bui5", + "id": 1, + "offset": 88, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1433198221 + }, + "m_trimColor": { + "type": "bui5", + "id": 2, + "offset": 92, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1198446862 + }, + "m_pattern": { + "type": "bui5", + "id": 3, + "offset": 96, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1338360593 + } + } + }, + "1241634484": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1241634484, + "properties": { + "m_zoneName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2171167736 + }, + "m_location": { + "type": "class Vector3D", + "id": 1, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2239683611 + }, + "m_firstName": { + "type": "std::string", + "id": 2, + "offset": 120, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3116002948 + }, + "m_lastName": { + "type": "std::string", + "id": 3, + "offset": 152, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1826203600 + }, + "m_zoneDisplayName": { + "type": "std::string", + "id": 4, + "offset": 184, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1962339438 + } + } + }, + "1684588690": { + "name": "class BoosterPackCrownsOption*", + "bases": [ + "ServiceOptionBase", + "PropertyClass" + ], + "hash": 1684588690, + "properties": { + "m_serviceName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2206028813 + }, + "m_iconKey": { + "type": "std::string", + "id": 1, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2457138637 + }, + "m_displayKey": { + "type": "std::string", + "id": 2, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3023276954 + }, + "m_serviceIndex": { + "type": "unsigned int", + "id": 3, + "offset": 204, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2103126710 + }, + "m_forceInteract": { + "type": "bool", + "id": 4, + "offset": 200, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1705789564 + } + } + }, + "1241287639": { + "name": "class MonsterArenaBehaviorBase*", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1241287639, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_mobList": { + "type": "unsigned int", + "id": 1, + "offset": 112, + "flags": 65543, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 347281415 + }, + "m_zoneGID": { + "type": "gid", + "id": 2, + "offset": 128, + "flags": 65543, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1907651624 + } + } + }, + "2119654516": { + "name": "enum StopHangingRotationCinematicAction::kStopHangingTypes", + "bases": [], + "hash": 2119654516, + "properties": {} + }, + "1683420191": { + "name": "class PetTomeBehaviorBase", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1683420191, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_petData": { + "type": "std::string", + "id": 1, + "offset": 144, + "flags": 551, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2990195294 + } + } + }, + "2119473480": { + "name": "class SharedPointer", + "bases": [ + "RitualObjectBehaviorBase", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 2119473480, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_playerList": { + "type": "gid", + "id": 1, + "offset": 112, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1909774945 + } + } + }, + "396775930": { + "name": "class BaseZone::BaseSimulation", + "bases": [ + "PropertyClass" + ], + "hash": 396775930, + "properties": {} + }, + "836925745": { + "name": "class LeaderboardEntry", + "bases": [ + "PropertyClass" + ], + "hash": 836925745, + "properties": { + "m_characterID": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 210498386 + }, + "m_rank": { + "type": "unsigned int", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 431206393 + }, + "m_nameBlob": { + "type": "std::string", + "id": 2, + "offset": 88, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3058206907 + }, + "m_characterLevel": { + "type": "unsigned int", + "id": 3, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1018074066 + }, + "m_characterSchool": { + "type": "unsigned int", + "id": 4, + "offset": 124, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1330015234 + }, + "m_wins": { + "type": "unsigned int", + "id": 5, + "offset": 128, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 431394798 + }, + "m_losses": { + "type": "unsigned int", + "id": 6, + "offset": 132, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 892951526 + }, + "m_ties": { + "type": "unsigned int", + "id": 7, + "offset": 136, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 431286690 + }, + "m_gamesPlayed": { + "type": "unsigned int", + "id": 8, + "offset": 140, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1165998489 + }, + "m_points": { + "type": "unsigned int", + "id": 9, + "offset": 144, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1049128778 + } + } + }, + "1682532215": { + "name": "class AvatarItemInfoList*", + "bases": [ + "PropertyClass" + ], + "hash": 1682532215, + "properties": { + "m_itemInfoList": { + "type": "class AvatarItemInfoBase*", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 3137169759 + } + } + }, + "1682216425": { + "name": "class SharedPointer", + "bases": [ + "Requirement", + "PropertyClass" + ], + "hash": 1682216425, + "properties": { + "m_applyNOT": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1746328074, + "enum_options": { + "__DEFAULT": 0 + } + }, + "m_operator": { + "type": "enum Requirement::Operator", + "id": 1, + "offset": 76, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2672792317, + "enum_options": { + "ROP_AND": 0, + "ROP_OR": 1, + "__DEFAULT": "ROP_AND" + } + } + } + }, + "1242535268": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1242535268, + "properties": { + "m_radius": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 989410271 + }, + "m_triggerT": { + "type": "float", + "id": 1, + "offset": 76, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2138083583 + } + } + }, + "1242259388": { + "name": "class SharedPointer", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1242259388, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + } + } + }, + "2120397854": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 2120397854, + "properties": { + "m_type": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1717601629 + }, + "m_subType": { + "type": "std::string", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3175052615 + }, + "m_versionNumber": { + "type": "unsigned int", + "id": 2, + "offset": 136, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1265259452 + }, + "m_packageNumber": { + "type": "int", + "id": 3, + "offset": 140, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1934060719 + }, + "m_associatedGID": { + "type": "gid", + "id": 4, + "offset": 144, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 148404716 + }, + "m_epochDays": { + "type": "unsigned int", + "id": 5, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1631557837 + } + } + }, + "431425521": { + "name": "class SharedPointer", + "bases": [ + "ServiceOptionBase", + "PropertyClass" + ], + "hash": 431425521, + "properties": { + "m_serviceName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2206028813 + }, + "m_iconKey": { + "type": "std::string", + "id": 1, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2457138637 + }, + "m_displayKey": { + "type": "std::string", + "id": 2, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3023276954 + }, + "m_serviceIndex": { + "type": "unsigned int", + "id": 3, + "offset": 204, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2103126710 + }, + "m_forceInteract": { + "type": "bool", + "id": 4, + "offset": 200, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1705789564 + } + } + }, + "842804276": { + "name": "class PlanningTimerControl", + "bases": [ + "Window", + "PropertyClass" + ], + "hash": 842804276, + "properties": { + "m_sName": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306437263 + }, + "m_Children": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621225959 + }, + "m_Style": { + "type": "unsigned int", + "id": 2, + "offset": 152, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "SCALE_CHILDREN": 2, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "FOCUS_LOCKED": 64, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152 + } + }, + "m_Flags": { + "type": "unsigned int", + "id": 3, + "offset": 156, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } + }, + "m_Window": { + "type": "class Rect", + "id": 4, + "offset": 160, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3105139380 + }, + "m_fTargetAlpha": { + "type": "float", + "id": 5, + "offset": 212, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1809129834 + }, + "m_fDisabledAlpha": { + "type": "float", + "id": 6, + "offset": 216, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1389987675 + }, + "m_fAlpha": { + "type": "float", + "id": 7, + "offset": 208, + "flags": 65671, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 482130755 + }, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3623628394 + }, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2102211316 + }, + "m_sScript": { + "type": "std::string", + "id": 10, + "offset": 352, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1846695875 + }, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3389835433 + }, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547159940 + }, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513510520 + }, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3091503757 + }, + "m_alertSeconds": { + "type": "int", + "id": 16, + "offset": 588, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2008693409 + } + } + }, + "2119816296": { + "name": "class ClassProjectProgressHistoryList", + "bases": [ + "PropertyClass" + ], + "hash": 2119816296, + "properties": { + "m_progressHistoryList": { + "type": "int", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1514478333 + } + } + }, + "413605834": { + "name": "class UniverseMapOption", + "bases": [ + "ServiceOptionBase", + "PropertyClass" + ], + "hash": 413605834, + "properties": { + "m_serviceName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2206028813 + }, + "m_iconKey": { + "type": "std::string", + "id": 1, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2457138637 + }, + "m_displayKey": { + "type": "std::string", + "id": 2, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3023276954 + }, + "m_serviceIndex": { + "type": "unsigned int", + "id": 3, + "offset": 204, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2103126710 + }, + "m_forceInteract": { + "type": "bool", + "id": 4, + "offset": 200, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1705789564 + } + } + }, + "838322901": { + "name": "class PetTalentsTriggeredSpellsData*", + "bases": [ + "PropertyClass" + ], + "hash": 838322901, + "properties": { + "m_talentName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2455147588 + }, + "m_triggeredSpells": { + "type": "std::string", + "id": 1, + "offset": 104, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2939702987 + } + } + }, + "1242331770": { + "name": "class ClassProjectFinalReward*", + "bases": [ + "PropertyClass" + ], + "hash": 1242331770, + "properties": { + "m_finalPosition": { + "type": "int", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 309125241 + }, + "m_lootTable": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2539512673 + }, + "m_featuredTemplateIDList": { + "type": "unsigned int", + "id": 2, + "offset": 112, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 687120258 + } + } + }, + "400673366": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 400673366, + "properties": { + "m_infoPairs": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1168115310 + } + } + }, + "837857889": { + "name": "class IdleAuraCinematicAction*", + "bases": [ + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 837857889, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + } + } + }, + "1684006729": { + "name": "class std::list >", + "bases": [], + "hash": 1684006729, + "properties": {} + }, + "398244357": { + "name": "class GraphicalSpell", + "bases": [ + "Spell", + "PropertyClass" + ], + "hash": 398244357, + "properties": { + "m_templateID": { + "type": "unsigned int", + "id": 0, + "offset": 128, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1286746870 + }, + "m_enchantment": { + "type": "unsigned int", + "id": 1, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2217886818 + }, + "m_pipCost": { + "type": "class SharedPointer", + "id": 2, + "offset": 176, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3605704820 + }, + "m_regularAdjust": { + "type": "int", + "id": 3, + "offset": 192, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1420453335 + }, + "m_magicSchoolID": { + "type": "unsigned int", + "id": 4, + "offset": 136, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 893146499 + }, + "m_accuracy": { + "type": "unsigned char", + "id": 5, + "offset": 132, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2273914939 + }, + "m_treasureCard": { + "type": "bool", + "id": 6, + "offset": 197, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1764879128 + }, + "m_battleCard": { + "type": "bool", + "id": 7, + "offset": 198, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1332843753 + }, + "m_itemCard": { + "type": "bool", + "id": 8, + "offset": 199, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1683654300 + }, + "m_sideBoard": { + "type": "bool", + "id": 9, + "offset": 200, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1897838368 + }, + "m_spellID": { + "type": "unsigned int", + "id": 10, + "offset": 204, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1697483258 + }, + "m_leavesPlayWhenCastOverride": { + "type": "bool", + "id": 11, + "offset": 216, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 874407398 + }, + "m_cloaked": { + "type": "bool", + "id": 12, + "offset": 196, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 7349510 + }, + "m_enchantmentSpellIsItemCard": { + "type": "bool", + "id": 13, + "offset": 76, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 531590701 + }, + "m_premutationSpellID": { + "type": "unsigned int", + "id": 14, + "offset": 112, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1530256370 + }, + "m_enchantedThisCombat": { + "type": "bool", + "id": 15, + "offset": 77, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1895738923 + }, + "m_paramOverrides": { + "type": "class SharedPointer", + "id": 16, + "offset": 224, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2061635599 + }, + "m_subEffectMeta": { + "type": "class SharedPointer", + "id": 17, + "offset": 240, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1944101106 + }, + "m_delayEnchantment": { + "type": "bool", + "id": 18, + "offset": 257, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 191336919 + }, + "m_PvE": { + "type": "bool", + "id": 19, + "offset": 264, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 269492350 + }, + "m_delayEnchantmentOrder": { + "type": "enum SpellEffect::kDelayOrder", + "id": 20, + "offset": 72, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2526055263, + "enum_options": { + "SpellEffect::kAnyOrder": 0, + "SpellEffect::kFirst": 1, + "SpellEffect::kSecond": 2 + } + }, + "m_roundAddedTC": { + "type": "int", + "id": 21, + "offset": 260, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 112365451 + }, + "m_secondarySchoolID": { + "type": "unsigned int", + "id": 22, + "offset": 304, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2081206026 + }, + "m_fusionState": { + "type": "enum Spell::FusionState", + "id": 23, + "offset": 308, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 835324539, + "enum_options": { + "FS_Invalid": 0, + "FS_Partial": 1, + "FS_Valid": 2 + } + } + } + }, + "837071457": { + "name": "class IdleAuraCinematicAction", + "bases": [ + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 837071457, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + } + } + }, + "2121234652": { + "name": "class SharedPointer", + "bases": [ + "LootInfo", + "LootInfoBase", + "PropertyClass" + ], + "hash": 2121234652, + "properties": { + "m_lootType": { + "type": "enum LootInfo::LOOT_TYPE", + "id": 0, + "offset": 72, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1591891442, + "enum_options": { + "LOOT_TYPE_NONE": 0, + "LOOT_TYPE_GOLD": 1, + "LOOT_TYPE_MANA": 2, + "LOOT_TYPE_ITEM": 3, + "LOOT_TYPE_TREASURE_CARD": 4, + "LOOT_TYPE_MAGIC_XP": 5, + "LOOT_TYPE_ADD_SPELL": 6, + "LOOT_TYPE_MAX_HEALTH": 7, + "LOOT_TYPE_MAX_GOLD": 8, + "LOOT_TYPE_MAX_MANA": 9, + "LOOT_TYPE_MAX_POTION": 10, + "LOOT_TYPE_TRAINING_POINTS": 11, + "LOOT_TYPE_RECIPE": 12, + "LOOT_TYPE_CRAFTING_SLOT": 13, + "LOOT_TYPE_REAGENT": 14, + "LOOT_TYPE_PETSNACK": 15, + "LOOT_TYPE_GARDENING_XP": 16, + "LOOT_TYPE_PET_XP": 17, + "LOOT_TYPE_TREASURE_TABLE": 18, + "LOOT_TYPE_ARENA_POINTS": 19, + "LOOT_TYPE_ARENA_BONUS_POINTS": 20, + "LOOT_TYPE_GROUP": 21, + "LOOT_TYPE_FISHING_XP": 22, + "LOOT_TYPE_EVENT_CURRENCY_1": 24, + "LOOT_TYPE_EVENT_CURRENCY_2": 25, + "LOOT_TYPE_PVP_CURRENCY": 26, + "LOOT_TYPE_PVP_CURRENCY_BONUS": 27, + "LOOT_TYPE_PVP_TOURNEY_CURRENCY": 28, + "LOOT_TYPE_PVP_TOURNEY_CURRENCY_BONUS": 29, + "LOOT_TYPE_FURNITURE_ESSENCE": 30 + } + }, + "m_spellID": { + "type": "unsigned int", + "id": 1, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1697483258 + } + } + }, + "397908045": { + "name": "class BaseBadgeBehavior", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 397908045, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_badgeData": { + "type": "std::string", + "id": 1, + "offset": 160, + "flags": 575, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3002588904 + } + } + }, + "836995944": { + "name": "class ObjectBag", + "bases": [ + "PropertyClass" + ], + "hash": 836995944, + "properties": { + "m_itemList": { + "type": "class SharedPointer", + "id": 0, + "offset": 168, + "flags": 27, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1983655699 + }, + "m_maxItemStack": { + "type": "int", + "id": 1, + "offset": 184, + "flags": 27, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 673449637 + } + } + }, + "1684462284": { + "name": "class ActiveTimedAccessPassList", + "bases": [ + "PropertyClass" + ], + "hash": 1684462284, + "properties": { + "m_passList": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1599562628 + } + } + }, + "1243118202": { + "name": "class ClassProjectFinalReward", + "bases": [ + "PropertyClass" + ], + "hash": 1243118202, + "properties": { + "m_finalPosition": { + "type": "int", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 309125241 + }, + "m_lootTable": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2539512673 + }, + "m_featuredTemplateIDList": { + "type": "unsigned int", + "id": 2, + "offset": 112, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 687120258 + } + } + }, + "2120991345": { + "name": "class ReqItemIsEgg", + "bases": [ + "Requirement", + "PropertyClass" + ], + "hash": 2120991345, + "properties": { + "m_applyNOT": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1746328074, + "enum_options": { + "__DEFAULT": 0 + } + }, + "m_operator": { + "type": "enum Requirement::Operator", + "id": 1, + "offset": 76, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2672792317, + "enum_options": { + "ROP_AND": 0, + "ROP_OR": 1, + "__DEFAULT": "ROP_AND" + } + } + } + }, + "397829655": { + "name": "class CoreTemplate*", + "bases": [ + "PropertyClass" + ], + "hash": 397829655, + "properties": { + "m_behaviors": { + "type": "class BehaviorTemplate*", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1197808594 + } + } + }, + "1242970451": { + "name": "class std::list >", + "bases": [], + "hash": 1242970451, + "properties": {} + }, + "397251396": { + "name": "class EmoteStateOverrideInfo*", + "bases": [ + "ObjStateOverrideInfo", + "PropertyClass" + ], + "hash": 397251396, + "properties": { + "m_stateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2039264668 + }, + "m_emoteName": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2426164182 + }, + "m_particleAsset": { + "type": "std::string", + "id": 2, + "offset": 112, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2165004143 + }, + "m_loop": { + "type": "bool", + "id": 3, + "offset": 144, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 222084781 + }, + "m_particleNode": { + "type": "std::string", + "id": 4, + "offset": 152, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3405651669 + }, + "m_soundAsset": { + "type": "std::string", + "id": 5, + "offset": 184, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3579637124 + }, + "m_wizBangID": { + "type": "unsigned int", + "id": 6, + "offset": 216, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 496076748 + } + } + }, + "837016424": { + "name": "class ObjectBag*", + "bases": [ + "PropertyClass" + ], + "hash": 837016424, + "properties": { + "m_itemList": { + "type": "class SharedPointer", + "id": 0, + "offset": 168, + "flags": 27, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1983655699 + }, + "m_maxItemStack": { + "type": "int", + "id": 1, + "offset": 184, + "flags": 27, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 673449637 + } + } + }, + "397226820": { + "name": "class EmoteStateOverrideInfo", + "bases": [ + "ObjStateOverrideInfo", + "PropertyClass" + ], + "hash": 397226820, + "properties": { + "m_stateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2039264668 + }, + "m_emoteName": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2426164182 + }, + "m_particleAsset": { + "type": "std::string", + "id": 2, + "offset": 112, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2165004143 + }, + "m_loop": { + "type": "bool", + "id": 3, + "offset": 144, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 222084781 + }, + "m_particleNode": { + "type": "std::string", + "id": 4, + "offset": 152, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3405651669 + }, + "m_soundAsset": { + "type": "std::string", + "id": 5, + "offset": 184, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3579637124 + }, + "m_wizBangID": { + "type": "unsigned int", + "id": 6, + "offset": 216, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 496076748 + } + } + }, + "1684901319": { + "name": "class SharedPointer", + "bases": [ + "Window", + "PropertyClass" + ], + "hash": 1684901319, + "properties": { + "m_sName": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306437263 + }, + "m_Children": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 65667, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621225959 + }, + "m_Style": { + "type": "unsigned int", + "id": 2, + "offset": 152, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "SCALE_CHILDREN": 2, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "FOCUS_LOCKED": 64, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152 + } + }, + "m_Flags": { + "type": "unsigned int", + "id": 3, + "offset": 156, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } + }, + "m_Window": { + "type": "class Rect", + "id": 4, + "offset": 160, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3105139380 + }, + "m_fTargetAlpha": { + "type": "float", + "id": 5, + "offset": 212, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1809129834 + }, + "m_fDisabledAlpha": { + "type": "float", + "id": 6, + "offset": 216, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1389987675 + }, + "m_fAlpha": { + "type": "float", + "id": 7, + "offset": 208, + "flags": 65671, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 482130755 + }, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3623628394 + }, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2102211316 + }, + "m_sScript": { + "type": "std::string", + "id": 10, + "offset": 352, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1846695875 + }, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3389835433 + }, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547159940 + }, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513510520 + }, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3091503757 + } + } + }, + "1243342370": { + "name": "class SharedPointer", + "bases": [ + "GameEffectBase", + "PropertyClass" + ], + "hash": 1243342370, + "properties": { + "m_currentTickCount": { + "type": "double", + "id": 0, + "offset": 80, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2533274692 + }, + "m_effectNameID": { + "type": "unsigned int", + "id": 1, + "offset": 96, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1204067144 + }, + "m_bIsOnPet": { + "type": "bool", + "id": 2, + "offset": 73, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 522593303 + }, + "m_originatorID": { + "type": "gid", + "id": 3, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1131810019 + }, + "m_itemSlotID": { + "type": "unsigned int", + "id": 4, + "offset": 112, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1895747595 + }, + "m_internalID": { + "type": "int", + "id": 5, + "offset": 92, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1643137924 + }, + "m_endTime": { + "type": "unsigned int", + "id": 6, + "offset": 88, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 716479635 + }, + "m_lookupIndex": { + "type": "int", + "id": 7, + "offset": 128, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1626623948 + } + } + }, + "2123525366": { + "name": "class SharedPointer", + "bases": [ + "CinematicAction", + "PropertyClass" + ], + "hash": 2123525366, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_fadeDuration": { + "type": "float", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1402536557 + }, + "m_fadeToGain": { + "type": "float", + "id": 2, + "offset": 84, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1724568201 + } + } + }, + "837371622": { + "name": "class CombatRule", + "bases": [ + "PropertyClass" + ], + "hash": 837371622, + "properties": {} + }, + "2121931086": { + "name": "class MoveCommandArc", + "bases": [ + "MoveController::MoveCommand", + "PropertyClass" + ], + "hash": 2121931086, + "properties": { + "m_vVelocity": { + "type": "class Vector3D", + "id": 0, + "offset": 88, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2295460039 + }, + "m_vGravity": { + "type": "class Vector3D", + "id": 1, + "offset": 100, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3690342814 + }, + "m_fUpdateFreq": { + "type": "float", + "id": 2, + "offset": 136, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1668426734 + }, + "m_dElapsedTime": { + "type": "double", + "id": 3, + "offset": 128, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2027745342 + } + } + }, + "1689794732": { + "name": "class MatchActor*", + "bases": [ + "PropertyClass" + ], + "hash": 1689794732, + "properties": { + "m_nActorID": { + "type": "gid", + "id": 0, + "offset": 88, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 663762476 + }, + "m_nLadderContainerID": { + "type": "gid", + "id": 1, + "offset": 96, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 782107042 + }, + "m_nTournamentNameID": { + "type": "unsigned int", + "id": 2, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 471412886 + }, + "m_nTournamentID": { + "type": "gid", + "id": 3, + "offset": 112, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 105258688 + }, + "m_leagueID": { + "type": "unsigned int", + "id": 4, + "offset": 124, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 692361645 + }, + "m_seasonID": { + "type": "unsigned int", + "id": 5, + "offset": 120, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 535260643 + }, + "m_nMatchNameID": { + "type": "unsigned int", + "id": 6, + "offset": 128, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 497033398 + }, + "m_nMatchID": { + "type": "gid", + "id": 7, + "offset": 136, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1050279648 + }, + "m_nTeamID": { + "type": "gid", + "id": 8, + "offset": 144, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 374990266 + }, + "m_status": { + "type": "int", + "id": 9, + "offset": 160, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 960781182 + }, + "m_costAdj": { + "type": "class MatchCostAdjustment", + "id": 10, + "offset": 200, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 913243331 + }, + "m_pLadder": { + "type": "class SharedPointer", + "id": 11, + "offset": 304, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2484171182 + }, + "m_bracketID": { + "type": "gid", + "id": 12, + "offset": 152, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 441272961 + }, + "m_overridingELO": { + "type": "int", + "id": 13, + "offset": 284, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1428697363 + }, + "m_matchKFactor": { + "type": "int", + "id": 14, + "offset": 288, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 773340305 + }, + "m_userID": { + "type": "gid", + "id": 15, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1037989700 + }, + "m_matchMakingRangeForMatches": { + "type": "unsigned int", + "id": 16, + "offset": 320, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1193045098 + }, + "m_maxMatchMakingRangeForMatches": { + "type": "unsigned int", + "id": 17, + "offset": 324, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1279540944 + }, + "m_allowRangeToExceedMaxForMatches": { + "type": "bool", + "id": 18, + "offset": 328, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1260448226 + }, + "m_matchCrownsCost": { + "type": "int", + "id": 19, + "offset": 280, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1094489596 + }, + "m_machineID": { + "type": "gid", + "id": 20, + "offset": 336, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 281396698 + }, + "m_tier": { + "type": "int", + "id": 21, + "offset": 344, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 219884238 + }, + "m_rank": { + "type": "int", + "id": 22, + "offset": 348, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 219803942 + }, + "m_rating": { + "type": "int", + "id": 23, + "offset": 352, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 899783871 + }, + "m_levelBand": { + "type": "int", + "id": 24, + "offset": 356, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2097286567 + }, + "m_enteredQueue": { + "type": "int", + "id": 25, + "offset": 376, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 638238406 + }, + "m_isSubscriber": { + "type": "bool", + "id": 26, + "offset": 428, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 952325795 + }, + "m_meetBracketBadgeRequirnments": { + "type": "bool", + "id": 27, + "offset": 429, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 438139258 + }, + "m_1v1": { + "type": "bool", + "id": 28, + "offset": 430, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 269458571 + }, + "m_streak": { + "type": "int", + "id": 29, + "offset": 360, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 961375108 + }, + "m_matches": { + "type": "int", + "id": 30, + "offset": 364, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1757638687 + }, + "m_lastFight": { + "type": "int", + "id": 31, + "offset": 368, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 91176384 + }, + "m_PVPHistoryStr": { + "type": "std::string", + "id": 32, + "offset": 384, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1498439420 + }, + "m_maxCritHit": { + "type": "float", + "id": 33, + "offset": 416, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2225327348 + }, + "m_maxBlockCrit": { + "type": "float", + "id": 34, + "offset": 420, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 135865530 + }, + "m_shadowPipRating": { + "type": "float", + "id": 35, + "offset": 424, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 507126123 + }, + "m_optInOut": { + "type": "std::string", + "id": 36, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3013935453 + }, + "m_playerTimeDraw": { + "type": "bool", + "id": 37, + "offset": 431, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 447636221 + } + } + }, + "2121495183": { + "name": "class SharedPointer", + "bases": [ + "GoalEntry", + "ServiceOptionBase", + "PropertyClass" + ], + "hash": 2121495183, + "properties": { + "m_serviceName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2206028813 + }, + "m_iconKey": { + "type": "std::string", + "id": 1, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2457138637 + }, + "m_displayKey": { + "type": "std::string", + "id": 2, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3023276954 + }, + "m_serviceIndex": { + "type": "unsigned int", + "id": 3, + "offset": 204, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2103126710 + }, + "m_forceInteract": { + "type": "bool", + "id": 4, + "offset": 200, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1705789564 + }, + "m_questID": { + "type": "gid", + "id": 5, + "offset": 216, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1246549335 + }, + "m_goalID": { + "type": "gid", + "id": 6, + "offset": 224, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 485200232 + }, + "m_goalTitle": { + "type": "std::string", + "id": 7, + "offset": 272, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2291910240 + }, + "m_questTitle": { + "type": "std::string", + "id": 8, + "offset": 240, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1805465583 + }, + "m_goalNameID": { + "type": "unsigned int", + "id": 9, + "offset": 232, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 403158846 + } + } + }, + "397890838": { + "name": "class GoalTemplate*", + "bases": [ + "CoreTemplate", + "PropertyClass" + ], + "hash": 397890838, + "properties": { + "m_behaviors": { + "type": "class BehaviorTemplate*", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1197808594 + }, + "m_goalName": { + "type": "std::string", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1521627807 + }, + "m_goalNameID": { + "type": "unsigned int", + "id": 2, + "offset": 496, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 403158846 + }, + "m_goalTitle": { + "type": "std::string", + "id": 3, + "offset": 136, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2291910240 + }, + "m_goalUnderway": { + "type": "std::string", + "id": 4, + "offset": 168, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3153144269 + }, + "m_hyperlink": { + "type": "std::string", + "id": 5, + "offset": 200, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2887798993 + }, + "m_completeText": { + "type": "std::string", + "id": 6, + "offset": 232, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2767458393 + }, + "m_completeResults": { + "type": "class ResultList*", + "id": 7, + "offset": 440, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1964258099 + }, + "m_goalRequirements": { + "type": "class RequirementList*", + "id": 8, + "offset": 448, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2979967145 + }, + "m_tallyCounter": { + "type": "class TallyCounterTemplate*", + "id": 9, + "offset": 456, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1884546193 + }, + "m_locationName": { + "type": "std::string", + "id": 10, + "offset": 272, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1824218389 + }, + "m_displayImage1": { + "type": "std::string", + "id": 11, + "offset": 304, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1959572133 + }, + "m_displayImage2": { + "type": "std::string", + "id": 12, + "offset": 336, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1959572134 + }, + "m_clientTags": { + "type": "std::string", + "id": 13, + "offset": 368, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2319030025 + }, + "m_genericEvents": { + "type": "std::string", + "id": 14, + "offset": 384, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 3466670829 + }, + "m_autoQualify": { + "type": "bool", + "id": 15, + "offset": 400, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1878907431 + }, + "m_autoComplete": { + "type": "bool", + "id": 16, + "offset": 401, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1302545445 + }, + "m_destinationZone": { + "type": "std::string", + "id": 17, + "offset": 408, + "flags": 268435463, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2605356153, + "enum_options": { + "__BASECLASS": "ZoneData" + } + }, + "m_dialogList": { + "type": "class ActorDialogListBase*", + "id": 18, + "offset": 264, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1909154969 + }, + "m_goalType": { + "type": "enum GoalTemplate::GOAL_TYPE", + "id": 19, + "offset": 96, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1488021149, + "enum_options": { + "GOAL_TYPE_UNKNOWN": 0, + "GOAL_TYPE_BOUNTY": 1, + "GOAL_TYPE_BOUNTYCOLLECT": 2, + "GOAL_TYPE_SCAVENGE": 3, + "GOAL_TYPE_PERSONA": 4, + "GOAL_TYPE_WAYPOINT": 5, + "GOAL_TYPE_SCAVENGEFAKE": 6, + "GOAL_TYPE_ACHIEVERANK": 7, + "GOAL_TYPE_USAGE": 8, + "GOAL_TYPE_COMPLETEQUEST": 9, + "GOAL_TYPE_SOCIARANK": 10, + "GOAL_TYPE_SOCIACURRENCY": 11, + "GOAL_TYPE_SOCIAMINIGAME": 12, + "GOAL_TYPE_SOCIAGIVEITEM": 13, + "GOAL_TYPE_SOCIAGETITEM": 14, + "GOAL_TYPE_COLLECTAFTERBOUNTY": 15, + "GOAL_TYPE_ENCOUNTER_WAYPOINT_FOREACH": 16 + } + }, + "m_noQuestHelper": { + "type": "bool", + "id": 20, + "offset": 500, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 578010882, + "enum_options": { + "__DEFAULT": 0 + } + }, + "m_petOnlyQuest": { + "type": "bool", + "id": 21, + "offset": 501, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 679359344, + "enum_options": { + "__DEFAULT": 0 + } + }, + "m_activateResults": { + "type": "class ResultList*", + "id": 22, + "offset": 504, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3790153995 + }, + "m_hideGoalFloatyText": { + "type": "bool", + "id": 23, + "offset": 512, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1919383204, + "enum_options": { + "__DEFAULT": 0 + } + } + } + }, + "1685899410": { + "name": "class BoosterPackCrownsOption", + "bases": [ + "ServiceOptionBase", + "PropertyClass" + ], + "hash": 1685899410, + "properties": { + "m_serviceName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2206028813 + }, + "m_iconKey": { + "type": "std::string", + "id": 1, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2457138637 + }, + "m_displayKey": { + "type": "std::string", + "id": 2, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3023276954 + }, + "m_serviceIndex": { + "type": "unsigned int", + "id": 3, + "offset": 204, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2103126710 + }, + "m_forceInteract": { + "type": "bool", + "id": 4, + "offset": 200, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1705789564 + } + } + }, + "1244456308": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1244456308, + "properties": { + "m_sSpell": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2419867822 + }, + "m_sNif": { + "type": "std::string", + "id": 1, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1717518635 + }, + "m_sSound": { + "type": "std::string", + "id": 2, + "offset": 136, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2419849367 + }, + "m_bOverride": { + "type": "bool", + "id": 3, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 589970005 + } + } + }, + "2121388782": { + "name": "class BasicChatChannelInfo*", + "bases": [ + "PropertyClass" + ], + "hash": 2121388782, + "properties": { + "m_ownerCharacterID": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2128119645 + }, + "m_ownerNameBlob": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2446827686 + }, + "m_isPublic": { + "type": "bool", + "id": 2, + "offset": 112, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1728439822 + }, + "m_inviteAllCooldownTime": { + "type": "int", + "id": 3, + "offset": 116, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1019161494 + }, + "m_playerList": { + "type": "class SharedPointer", + "id": 4, + "offset": 120, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2882119980 + } + } + }, + "837995221": { + "name": "class PetTalentsTriggeredSpellsData", + "bases": [ + "PropertyClass" + ], + "hash": 837995221, + "properties": { + "m_talentName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2455147588 + }, + "m_triggeredSpells": { + "type": "std::string", + "id": 1, + "offset": 104, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2939702987 + } + } + }, + "1685808340": { + "name": "class ManaLootInfo", + "bases": [ + "LootInfo", + "LootInfoBase", + "PropertyClass" + ], + "hash": 1685808340, + "properties": { + "m_lootType": { + "type": "enum LootInfo::LOOT_TYPE", + "id": 0, + "offset": 72, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1591891442, + "enum_options": { + "LOOT_TYPE_NONE": 0, + "LOOT_TYPE_GOLD": 1, + "LOOT_TYPE_MANA": 2, + "LOOT_TYPE_ITEM": 3, + "LOOT_TYPE_TREASURE_CARD": 4, + "LOOT_TYPE_MAGIC_XP": 5, + "LOOT_TYPE_ADD_SPELL": 6, + "LOOT_TYPE_MAX_HEALTH": 7, + "LOOT_TYPE_MAX_GOLD": 8, + "LOOT_TYPE_MAX_MANA": 9, + "LOOT_TYPE_MAX_POTION": 10, + "LOOT_TYPE_TRAINING_POINTS": 11, + "LOOT_TYPE_RECIPE": 12, + "LOOT_TYPE_CRAFTING_SLOT": 13, + "LOOT_TYPE_REAGENT": 14, + "LOOT_TYPE_PETSNACK": 15, + "LOOT_TYPE_GARDENING_XP": 16, + "LOOT_TYPE_PET_XP": 17, + "LOOT_TYPE_TREASURE_TABLE": 18, + "LOOT_TYPE_ARENA_POINTS": 19, + "LOOT_TYPE_ARENA_BONUS_POINTS": 20, + "LOOT_TYPE_GROUP": 21, + "LOOT_TYPE_FISHING_XP": 22, + "LOOT_TYPE_EVENT_CURRENCY_1": 24, + "LOOT_TYPE_EVENT_CURRENCY_2": 25, + "LOOT_TYPE_PVP_CURRENCY": 26, + "LOOT_TYPE_PVP_CURRENCY_BONUS": 27, + "LOOT_TYPE_PVP_TOURNEY_CURRENCY": 28, + "LOOT_TYPE_PVP_TOURNEY_CURRENCY_BONUS": 29, + "LOOT_TYPE_FURNITURE_ESSENCE": 30 + } + }, + "m_manaAmount": { + "type": "int", + "id": 1, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1476254699 + } + } + }, + "1244012353": { + "name": "class PhysicsSimObject*", + "bases": [ + "PropertyClass" + ], + "hash": 1244012353, + "properties": {} + }, + "1685778299": { + "name": "class ItemLootInfo", + "bases": [ + "LootInfo", + "LootInfoBase", + "PropertyClass" + ], + "hash": 1685778299, + "properties": { + "m_lootType": { + "type": "enum LootInfo::LOOT_TYPE", + "id": 0, + "offset": 72, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1591891442, + "enum_options": { + "LOOT_TYPE_NONE": 0, + "LOOT_TYPE_GOLD": 1, + "LOOT_TYPE_MANA": 2, + "LOOT_TYPE_ITEM": 3, + "LOOT_TYPE_TREASURE_CARD": 4, + "LOOT_TYPE_MAGIC_XP": 5, + "LOOT_TYPE_ADD_SPELL": 6, + "LOOT_TYPE_MAX_HEALTH": 7, + "LOOT_TYPE_MAX_GOLD": 8, + "LOOT_TYPE_MAX_MANA": 9, + "LOOT_TYPE_MAX_POTION": 10, + "LOOT_TYPE_TRAINING_POINTS": 11, + "LOOT_TYPE_RECIPE": 12, + "LOOT_TYPE_CRAFTING_SLOT": 13, + "LOOT_TYPE_REAGENT": 14, + "LOOT_TYPE_PETSNACK": 15, + "LOOT_TYPE_GARDENING_XP": 16, + "LOOT_TYPE_PET_XP": 17, + "LOOT_TYPE_TREASURE_TABLE": 18, + "LOOT_TYPE_ARENA_POINTS": 19, + "LOOT_TYPE_ARENA_BONUS_POINTS": 20, + "LOOT_TYPE_GROUP": 21, + "LOOT_TYPE_FISHING_XP": 22, + "LOOT_TYPE_EVENT_CURRENCY_1": 24, + "LOOT_TYPE_EVENT_CURRENCY_2": 25, + "LOOT_TYPE_PVP_CURRENCY": 26, + "LOOT_TYPE_PVP_CURRENCY_BONUS": 27, + "LOOT_TYPE_PVP_TOURNEY_CURRENCY": 28, + "LOOT_TYPE_PVP_TOURNEY_CURRENCY_BONUS": 29, + "LOOT_TYPE_FURNITURE_ESSENCE": 30 + } + }, + "m_itemID": { + "type": "gid", + "id": 1, + "offset": 88, + "flags": 33554463, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 569545460 + }, + "m_numItems": { + "type": "int", + "id": 2, + "offset": 96, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1588646284 + } + } + }, + "1243914049": { + "name": "class PhysicsSimObject", + "bases": [ + "PropertyClass" + ], + "hash": 1243914049, + "properties": {} + }, + "398214428": { + "name": "class SharedPointer", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 398214428, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + } + } + }, + "838128976": { + "name": "class ClientInfractionBehavior*", + "bases": [ + "InfractionBehavior", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 838128976, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_penalties": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1696001746 + }, + "m_record": { + "type": "class SharedPointer", + "id": 2, + "offset": 128, + "flags": 16, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2129713657 + } + } + }, + "1243590083": { + "name": "class std::vector >", + "bases": [], + "hash": 1243590083, + "properties": {} + }, + "2121911691": { + "name": "class GamebryoInvisibilityEffect*", + "bases": [ + "InvisibilityEffect", + "GameEffectBase", + "PropertyClass" + ], + "hash": 2121911691, + "properties": { + "m_currentTickCount": { + "type": "double", + "id": 0, + "offset": 80, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2533274692 + }, + "m_effectNameID": { + "type": "unsigned int", + "id": 1, + "offset": 96, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1204067144 + }, + "m_bIsOnPet": { + "type": "bool", + "id": 2, + "offset": 73, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 522593303 + }, + "m_originatorID": { + "type": "gid", + "id": 3, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1131810019 + }, + "m_itemSlotID": { + "type": "unsigned int", + "id": 4, + "offset": 112, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1895747595 + }, + "m_internalID": { + "type": "int", + "id": 5, + "offset": 92, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1643137924 + }, + "m_endTime": { + "type": "unsigned int", + "id": 6, + "offset": 88, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 716479635 + } + } + }, + "2121911681": { + "name": "class GamebryoInvisibilityEffect", + "bases": [ + "InvisibilityEffect", + "GameEffectBase", + "PropertyClass" + ], + "hash": 2121911681, + "properties": { + "m_currentTickCount": { + "type": "double", + "id": 0, + "offset": 80, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2533274692 + }, + "m_effectNameID": { + "type": "unsigned int", + "id": 1, + "offset": 96, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1204067144 + }, + "m_bIsOnPet": { + "type": "bool", + "id": 2, + "offset": 73, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 522593303 + }, + "m_originatorID": { + "type": "gid", + "id": 3, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1131810019 + }, + "m_itemSlotID": { + "type": "unsigned int", + "id": 4, + "offset": 112, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1895747595 + }, + "m_internalID": { + "type": "int", + "id": 5, + "offset": 92, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1643137924 + }, + "m_endTime": { + "type": "unsigned int", + "id": 6, + "offset": 88, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 716479635 + } + } + }, + "398229815": { + "name": "class ClientReagentItem", + "bases": [ + "WizClientObjectItem", + "ClientObject", + "CoreObject", + "PropertyClass" + ], + "hash": 398229815, + "properties": { + "m_inactiveBehaviors": { + "type": "class SharedPointer", + "id": 0, + "offset": 224, + "flags": 31, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1850812559 + }, + "m_globalID.m_full": { + "type": "unsigned __int64", + "id": 1, + "offset": 72, + "flags": 16777247, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2312465444 + }, + "m_permID": { + "type": "unsigned __int64", + "id": 2, + "offset": 80, + "flags": 16777247, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1298909658 + }, + "m_location": { + "type": "class Vector3D", + "id": 3, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2239683611 + }, + "m_orientation": { + "type": "class Vector3D", + "id": 4, + "offset": 180, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2344058766 + }, + "m_fScale": { + "type": "float", + "id": 5, + "offset": 196, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 503137701 + }, + "m_templateID.m_full": { + "type": "unsigned __int64", + "id": 6, + "offset": 96, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 633907631 + }, + "m_debugName": { + "type": "std::string", + "id": 7, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3553984419 + }, + "m_displayKey": { + "type": "std::string", + "id": 8, + "offset": 136, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3023276954 + }, + "m_zoneTagID": { + "type": "unsigned int", + "id": 9, + "offset": 344, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 965291410 + }, + "m_speedMultiplier": { + "type": "short", + "id": 10, + "offset": 192, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 123130076 + }, + "m_nMobileID": { + "type": "unsigned short", + "id": 11, + "offset": 194, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1054318939 + }, + "m_characterId": { + "type": "gid", + "id": 12, + "offset": 440, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 210498418 + }, + "m_primaryColor": { + "type": "int", + "id": 13, + "offset": 568, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 900965981 + }, + "m_pattern": { + "type": "int", + "id": 14, + "offset": 572, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1337683384 + }, + "m_secondaryColor": { + "type": "int", + "id": 15, + "offset": 576, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1616550081 + }, + "m_displayID": { + "type": "gid", + "id": 16, + "offset": 584, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1022427803 + }, + "m_itemFlags": { + "type": "unsigned int", + "id": 17, + "offset": 592, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2004128457 + }, + "m_quantity": { + "type": "int", + "id": 18, + "offset": 608, + "flags": 27, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 169215289 + } + } + }, + "840668955": { + "name": "class SharedPointer", + "bases": [ + "WizItemTemplate", + "ItemTemplate", + "GameObjectTemplate", + "CoreTemplate", + "PropertyClass" + ], + "hash": 840668955, + "properties": { + "m_behaviors": { + "type": "class BehaviorTemplate*", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1197808594 + }, + "m_objectName": { + "type": "std::string", + "id": 1, + "offset": 96, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2154940147 + }, + "m_templateID": { + "type": "unsigned int", + "id": 2, + "offset": 128, + "flags": 16777223, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1286746870 + }, + "m_visualID": { + "type": "unsigned int", + "id": 3, + "offset": 132, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1118778894 + }, + "m_adjectiveList": { + "type": "std::string", + "id": 4, + "offset": 248, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 3195213318 + }, + "m_exemptFromAOI": { + "type": "bool", + "id": 5, + "offset": 240, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1457879059 + }, + "m_displayName": { + "type": "std::string", + "id": 6, + "offset": 168, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2446900370 + }, + "m_description": { + "type": "std::string", + "id": 7, + "offset": 136, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1649374815 + }, + "m_nObjectType": { + "type": "enum ObjectType", + "id": 8, + "offset": 200, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2118905880, + "enum_options": { + "OT_UNDEFINED": 0, + "OT_PLAYER": 1, + "OT_NPC": 2, + "OT_PROP": 3, + "OT_OBJECT": 4, + "OT_HOUSE": 5, + "OT_KEY": 6, + "OT_OLD_KEY": 7, + "OT_DEED": 8, + "OT_MAIL": 9, + "OT_RECIPE": 17, + "OT_EQUIP_HEAD": 10, + "OT_EQUIP_CHEST": 11, + "OT_EQUIP_LEGS": 12, + "OT_EQUIP_HANDS": 13, + "OT_EQUIP_FINGER": 14, + "OT_EQUIP_FEET": 15, + "OT_EQUIP_EAR": 16, + "OT_BUILDING_BLOCK": 18, + "OT_BUILDING_BLOCK_SOLID": 19, + "OT_GOLF": 20, + "OT_DOOR": 21, + "OT_PET": 22, + "OT_FABRIC": 23, + "OT_WINDOW": 24, + "OT_ROOF": 25, + "OT_HORSE": 26, + "OT_STRUCTURE": 27, + "OT_HOUSING_TEXTURE": 28, + "OT_PLANT": 29 + } + }, + "m_sIcon": { + "type": "std::string", + "id": 9, + "offset": 208, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306259831 + }, + "m_equipRequirements": { + "type": "class RequirementList*", + "id": 10, + "offset": 280, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2762617226 + }, + "m_purchaseRequirements": { + "type": "class RequirementList*", + "id": 11, + "offset": 288, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3174641793 + }, + "m_equipEffects": { + "type": "class GameEffectInfo*", + "id": 12, + "offset": 296, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 836628351 + }, + "m_baseCost": { + "type": "float", + "id": 13, + "offset": 312, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1565352651 + }, + "m_creditsCost": { + "type": "float", + "id": 14, + "offset": 320, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 805514974 + }, + "m_avatarInfo": { + "type": "class AvatarItemInfoBase*", + "id": 15, + "offset": 328, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2627321299 + }, + "m_avatarFlags": { + "type": "std::string", + "id": 16, + "offset": 336, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2347762759 + }, + "m_itemLimit": { + "type": "int", + "id": 17, + "offset": 316, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1799746856 + }, + "m_holidayFlag": { + "type": "std::string", + "id": 18, + "offset": 352, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2994795359 + }, + "m_itemSetBonusTemplateID": { + "type": "unsigned int", + "id": 19, + "offset": 384, + "flags": 33554439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1316835672 + }, + "m_numPrimaryColors": { + "type": "int", + "id": 20, + "offset": 428, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 981103872 + }, + "m_numSecondaryColors": { + "type": "int", + "id": 21, + "offset": 432, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1310416868 + }, + "m_numPatterns": { + "type": "int", + "id": 22, + "offset": 436, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 953162171 + }, + "m_school": { + "type": "std::string", + "id": 23, + "offset": 392, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2438566051 + }, + "m_arenaPointCost": { + "type": "int", + "id": 24, + "offset": 440, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1819621796 + }, + "m_pvpCurrencyCost": { + "type": "int", + "id": 25, + "offset": 444, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 645595444 + }, + "m_pvpTourneyCurrencyCost": { + "type": "int", + "id": 26, + "offset": 448, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 517874954 + }, + "m_rank": { + "type": "int", + "id": 27, + "offset": 424, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 219803942 + }, + "m_boyIconIndex": { + "type": "int", + "id": 28, + "offset": 452, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 802140453 + }, + "m_girlIconIndex": { + "type": "int", + "id": 29, + "offset": 456, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 832706793 + }, + "m_leashOffsetOverride": { + "type": "class SharedPointer", + "id": 30, + "offset": 464, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1692586788 + }, + "m_rarity": { + "type": "enum RarityType", + "id": 31, + "offset": 460, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2253792108, + "enum_options": { + "RT_COMMON": 0, + "RT_UNCOMMON": 1, + "RT_RARE": 2, + "RT_ULTRARARE": 3, + "RT_EPIC": 4 + } + }, + "m_currencyType": { + "type": "enum CurrencyTemplate::CurrencyTypes", + "id": 32, + "offset": 480, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 461057706, + "enum_options": { + "CURRENCY_GOLD": 0, + "CURRENCY_ARENATICKETS": 1, + "CURRENCY_CROWNS": 2, + "CURRENCY_EC1": 3, + "CURRENCY_EC2": 4, + "CURRENCY_PVPCUR": 5, + "CURRENCY_PVPTOURNEYCUR": 6, + "CURRENCY_LOYALTYTOKENS": 7 + } + } + } + }, + "1689163689": { + "name": "class GoalEntryFull*", + "bases": [ + "GoalEntry", + "ServiceOptionBase", + "PropertyClass" + ], + "hash": 1689163689, + "properties": { + "m_serviceName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2206028813 + }, + "m_iconKey": { + "type": "std::string", + "id": 1, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2457138637 + }, + "m_displayKey": { + "type": "std::string", + "id": 2, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3023276954 + }, + "m_serviceIndex": { + "type": "unsigned int", + "id": 3, + "offset": 204, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2103126710 + }, + "m_forceInteract": { + "type": "bool", + "id": 4, + "offset": 200, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1705789564 + }, + "m_questID": { + "type": "gid", + "id": 5, + "offset": 216, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1246549335 + }, + "m_goalID": { + "type": "gid", + "id": 6, + "offset": 224, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 485200232 + }, + "m_goalTitle": { + "type": "std::string", + "id": 7, + "offset": 272, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2291910240 + }, + "m_questTitle": { + "type": "std::string", + "id": 8, + "offset": 240, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1805465583 + }, + "m_goalNameID": { + "type": "unsigned int", + "id": 9, + "offset": 232, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 403158846 + }, + "m_personaName": { + "type": "std::string", + "id": 10, + "offset": 312, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2514452244 + }, + "m_goalType": { + "type": "int", + "id": 11, + "offset": 344, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 24170047 + }, + "m_goalStatus": { + "type": "int", + "id": 12, + "offset": 348, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 409552449 + }, + "m_goalCount": { + "type": "int", + "id": 13, + "offset": 352, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 774266758 + }, + "m_goalTotal": { + "type": "int", + "id": 14, + "offset": 356, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 794425889 + }, + "m_useTally": { + "type": "bool", + "id": 15, + "offset": 364, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 683835718 + }, + "m_tallyText": { + "type": "std::string", + "id": 16, + "offset": 368, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3634775014 + }, + "m_tallyText2": { + "type": "std::string", + "id": 17, + "offset": 400, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3298880408 + }, + "m_goalLocation": { + "type": "std::string", + "id": 18, + "offset": 432, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3086892791 + }, + "m_goalDestinationZone": { + "type": "std::string", + "id": 19, + "offset": 464, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2141407900 + }, + "m_goalImage1": { + "type": "std::string", + "id": 20, + "offset": 496, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1507581938 + }, + "m_goalImage2": { + "type": "std::string", + "id": 21, + "offset": 528, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1507581939 + }, + "m_clientTags": { + "type": "std::string", + "id": 22, + "offset": 560, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2319030025 + }, + "m_goalMadlibs": { + "type": "class SharedPointer", + "id": 23, + "offset": 576, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1580392183 + } + } + }, + "1243987524": { + "name": "class SharedPointer", + "bases": [ + "GameEffectInfo", + "PropertyClass" + ], + "hash": 1243987524, + "properties": { + "m_effectName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2029161513 + } + } + }, + "838936710": { + "name": "class ObstacleCourseFinishLineBehavior", + "bases": [ + "ObstacleCourseObstacleBehavior", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 838936710, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + } + } + }, + "1686808338": { + "name": "class ClientUnPolymorphCinematicAction*", + "bases": [ + "UnPolymorphCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 1686808338, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + } + } + }, + "399891816": { + "name": "class SharedPointer", + "bases": [ + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 399891816, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + }, + "m_cloaked": { + "type": "bool", + "id": 2, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 7349510 + }, + "m_newActorName": { + "type": "std::string", + "id": 3, + "offset": 128, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2029131039 + } + } + }, + "838517010": { + "name": "class BattlegroundPolymorphs", + "bases": [ + "PropertyClass" + ], + "hash": 838517010, + "properties": { + "m_polymorphTypeList": { + "type": "class SharedPointer", + "id": 0, + "offset": 80, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": true, + "pointer": true, + "hash": 1494222584 + } + } + }, + "1686796687": { + "name": "class ObstacleCoursePendulumBehaviorTemplate*", + "bases": [ + "ObstacleCourseObstacleBehaviorTemplate", + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 1686796687, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + }, + "m_rate": { + "type": "double", + "id": 1, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2117614265 + }, + "m_penaltyTime": { + "type": "double", + "id": 2, + "offset": 128, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3890998489 + }, + "m_boxAngle": { + "type": "double", + "id": 3, + "offset": 136, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2280680509 + }, + "m_nearMissBoxAngle": { + "type": "double", + "id": 4, + "offset": 144, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2597648767 + }, + "m_nearMissWidth": { + "type": "double", + "id": 5, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3819808431 + }, + "m_pendulumHeight": { + "type": "double", + "id": 6, + "offset": 160, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3283581360 + }, + "m_angleMax": { + "type": "double", + "id": 7, + "offset": 168, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2853267002 + }, + "m_pendulumWidth": { + "type": "double", + "id": 8, + "offset": 176, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2478418615 + }, + "m_collisionHeight": { + "type": "double", + "id": 9, + "offset": 184, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3980975122 + }, + "m_pendulumHitSoundList": { + "type": "class WeightedList", + "id": 10, + "offset": 192, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1356951419 + } + } + }, + "2122560174": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 2122560174, + "properties": { + "m_roundList": { + "type": "class ShadowPipRule::RoundPercent", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2566333441 + } + } + }, + "398288299": { + "name": "class PvPMatchInfo", + "bases": [ + "ArenaMatchInfo", + "PropertyClass" + ], + "hash": 398288299, + "properties": { + "m_matchID": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1757621298 + }, + "m_matchNameID": { + "type": "unsigned int", + "id": 1, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1751361288 + }, + "m_teams": { + "type": "class SharedPointer", + "id": 2, + "offset": 96, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1984373608 + }, + "m_matchName": { + "type": "std::string", + "id": 3, + "offset": 112, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2061215721 + }, + "m_matchTitle": { + "type": "std::string", + "id": 4, + "offset": 144, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2918442218 + }, + "m_matchZoneID": { + "type": "gid", + "id": 5, + "offset": 176, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2026205966 + }, + "m_creatorID": { + "type": "gid", + "id": 6, + "offset": 88, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1051766037 + }, + "m_matchZone": { + "type": "std::string", + "id": 7, + "offset": 184, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2061662244 + }, + "m_startTime": { + "type": "int", + "id": 8, + "offset": 216, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1386968823 + }, + "m_status": { + "type": "int", + "id": 9, + "offset": 220, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 960781182 + }, + "m_friendsOnly": { + "type": "bool", + "id": 10, + "offset": 236, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1420401792 + }, + "m_tournamentNameID": { + "type": "unsigned int", + "id": 11, + "offset": 224, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1799846440 + }, + "m_leagueID": { + "type": "unsigned int", + "id": 12, + "offset": 228, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 692361645 + }, + "m_seasonID": { + "type": "unsigned int", + "id": 13, + "offset": 232, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 535260643 + }, + "m_bUpdateLadder": { + "type": "bool", + "id": 14, + "offset": 248, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1937525956 + }, + "m_maxPointsPerMatch": { + "type": "unsigned int", + "id": 15, + "offset": 240, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1397040900 + }, + "m_estimatedWeight": { + "type": "float", + "id": 16, + "offset": 244, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1374360127 + }, + "m_maxELOError": { + "type": "int", + "id": 17, + "offset": 252, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 318998922 + }, + "m_uniqueMatchID": { + "type": "std::string", + "id": 18, + "offset": 264, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3291026220 + }, + "m_pvpDuelModifiersTemplates": { + "type": "class SharedPointer", + "id": 19, + "offset": 296, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1193155411 + }, + "m_teamSize": { + "type": "unsigned int", + "id": 20, + "offset": 256, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2343388751 + }, + "m_joinQueueRequirements": { + "type": "class SharedPointer", + "id": 21, + "offset": 312, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2746080983 + }, + "m_timeLimitSec": { + "type": "unsigned int", + "id": 22, + "offset": 328, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 312519798 + }, + "m_useHistoricDiego": { + "type": "bool", + "id": 23, + "offset": 352, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1688842509 + }, + "m_ignoredList": { + "type": "gid", + "id": 24, + "offset": 336, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1850924028 + }, + "m_matchTimer": { + "type": "float", + "id": 25, + "offset": 356, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1510935909 + }, + "m_bonusTime": { + "type": "int", + "id": 26, + "offset": 360, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1757496496 + }, + "m_passPenalty": { + "type": "int", + "id": 27, + "offset": 364, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 982951662 + }, + "m_yellowTime": { + "type": "int", + "id": 28, + "offset": 368, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1017028741 + }, + "m_redTime": { + "type": "int", + "id": 29, + "offset": 372, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1909556708 + }, + "m_minTurnTime": { + "type": "int", + "id": 30, + "offset": 376, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 652524886 + }, + "m_effects": { + "type": "class SharedPointer", + "id": 31, + "offset": 384, + "flags": 31, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 804962647 + }, + "m_updateBattlePassPoints": { + "type": "bool", + "id": 32, + "offset": 408, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 713306342 + }, + "m_battlePassWinPoints": { + "type": "int", + "id": 33, + "offset": 412, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1252337240 + }, + "m_battlePassLosePoints": { + "type": "int", + "id": 34, + "offset": 416, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1400839869 + } + } + }, + "838492434": { + "name": "class BattlegroundPolymorphs*", + "bases": [ + "PropertyClass" + ], + "hash": 838492434, + "properties": { + "m_polymorphTypeList": { + "type": "class SharedPointer", + "id": 0, + "offset": 80, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": true, + "pointer": true, + "hash": 1494222584 + } + } + }, + "1244315844": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1244315844, + "properties": { + "m_rank": { + "type": "unsigned char", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 857403388 + }, + "m_cost": { + "type": "unsigned char", + "id": 1, + "offset": 73, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 856879753 + } + } + }, + "2121931246": { + "name": "class MoveCommandArc*", + "bases": [ + "MoveController::MoveCommand", + "PropertyClass" + ], + "hash": 2121931246, + "properties": { + "m_vVelocity": { + "type": "class Vector3D", + "id": 0, + "offset": 88, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2295460039 + }, + "m_vGravity": { + "type": "class Vector3D", + "id": 1, + "offset": 100, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3690342814 + }, + "m_fUpdateFreq": { + "type": "float", + "id": 2, + "offset": 136, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1668426734 + }, + "m_dElapsedTime": { + "type": "double", + "id": 3, + "offset": 128, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2027745342 + } + } + }, + "398244517": { + "name": "class GraphicalSpell*", + "bases": [ + "Spell", + "PropertyClass" + ], + "hash": 398244517, + "properties": { + "m_templateID": { + "type": "unsigned int", + "id": 0, + "offset": 128, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1286746870 + }, + "m_enchantment": { + "type": "unsigned int", + "id": 1, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2217886818 + }, + "m_pipCost": { + "type": "class SharedPointer", + "id": 2, + "offset": 176, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3605704820 + }, + "m_regularAdjust": { + "type": "int", + "id": 3, + "offset": 192, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1420453335 + }, + "m_magicSchoolID": { + "type": "unsigned int", + "id": 4, + "offset": 136, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 893146499 + }, + "m_accuracy": { + "type": "unsigned char", + "id": 5, + "offset": 132, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2273914939 + }, + "m_treasureCard": { + "type": "bool", + "id": 6, + "offset": 197, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1764879128 + }, + "m_battleCard": { + "type": "bool", + "id": 7, + "offset": 198, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1332843753 + }, + "m_itemCard": { + "type": "bool", + "id": 8, + "offset": 199, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1683654300 + }, + "m_sideBoard": { + "type": "bool", + "id": 9, + "offset": 200, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1897838368 + }, + "m_spellID": { + "type": "unsigned int", + "id": 10, + "offset": 204, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1697483258 + }, + "m_leavesPlayWhenCastOverride": { + "type": "bool", + "id": 11, + "offset": 216, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 874407398 + }, + "m_cloaked": { + "type": "bool", + "id": 12, + "offset": 196, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 7349510 + }, + "m_enchantmentSpellIsItemCard": { + "type": "bool", + "id": 13, + "offset": 76, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 531590701 + }, + "m_premutationSpellID": { + "type": "unsigned int", + "id": 14, + "offset": 112, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1530256370 + }, + "m_enchantedThisCombat": { + "type": "bool", + "id": 15, + "offset": 77, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1895738923 + }, + "m_paramOverrides": { + "type": "class SharedPointer", + "id": 16, + "offset": 224, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2061635599 + }, + "m_subEffectMeta": { + "type": "class SharedPointer", + "id": 17, + "offset": 240, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1944101106 + }, + "m_delayEnchantment": { + "type": "bool", + "id": 18, + "offset": 257, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 191336919 + }, + "m_PvE": { + "type": "bool", + "id": 19, + "offset": 264, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 269492350 + }, + "m_delayEnchantmentOrder": { + "type": "enum SpellEffect::kDelayOrder", + "id": 20, + "offset": 72, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2526055263, + "enum_options": { + "SpellEffect::kAnyOrder": 0, + "SpellEffect::kFirst": 1, + "SpellEffect::kSecond": 2 + } + }, + "m_roundAddedTC": { + "type": "int", + "id": 21, + "offset": 260, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 112365451 + }, + "m_secondarySchoolID": { + "type": "unsigned int", + "id": 22, + "offset": 304, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2081206026 + }, + "m_fusionState": { + "type": "enum Spell::FusionState", + "id": 23, + "offset": 308, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 835324539, + "enum_options": { + "FS_Invalid": 0, + "FS_Partial": 1, + "FS_Valid": 2 + } + } + } + }, + "838497459": { + "name": "class FXOverrideBehaviorInfo*", + "bases": [ + "PropertyClass" + ], + "hash": 838497459, + "properties": { + "m_fxToReplace": { + "type": "std::string", + "id": 0, + "offset": 112, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2301964408 + }, + "m_fxReplaceWith": { + "type": "std::string", + "id": 1, + "offset": 144, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2445657937 + }, + "m_fxCastToReplace": { + "type": "std::string", + "id": 2, + "offset": 176, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2287885731 + }, + "m_fxCastReplaceWith": { + "type": "std::string", + "id": 3, + "offset": 208, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2146364220 + }, + "m_fxFidgetToReplace": { + "type": "std::string", + "id": 4, + "offset": 240, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3444964235 + }, + "m_fxFidgetReplaceWith": { + "type": "std::string", + "id": 5, + "offset": 272, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1631953700 + } + } + }, + "2122056318": { + "name": "class std::list >", + "bases": [], + "hash": 2122056318, + "properties": {} + }, + "398262579": { + "name": "class PetMatchInfo", + "bases": [ + "ArenaMatchInfo", + "PropertyClass" + ], + "hash": 398262579, + "properties": { + "m_matchID": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1757621298 + }, + "m_matchNameID": { + "type": "unsigned int", + "id": 1, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1751361288 + }, + "m_teams": { + "type": "class SharedPointer", + "id": 2, + "offset": 96, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1984373608 + }, + "m_matchName": { + "type": "std::string", + "id": 3, + "offset": 112, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2061215721 + }, + "m_matchTitle": { + "type": "std::string", + "id": 4, + "offset": 144, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2918442218 + }, + "m_matchZoneID": { + "type": "gid", + "id": 5, + "offset": 176, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2026205966 + }, + "m_creatorID": { + "type": "gid", + "id": 6, + "offset": 88, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1051766037 + }, + "m_matchZone": { + "type": "std::string", + "id": 7, + "offset": 184, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2061662244 + }, + "m_startTime": { + "type": "int", + "id": 8, + "offset": 216, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1386968823 + }, + "m_status": { + "type": "int", + "id": 9, + "offset": 220, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 960781182 + }, + "m_friendsOnly": { + "type": "bool", + "id": 10, + "offset": 236, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1420401792 + }, + "m_tournamentNameID": { + "type": "unsigned int", + "id": 11, + "offset": 224, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1799846440 + }, + "m_leagueID": { + "type": "unsigned int", + "id": 12, + "offset": 228, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 692361645 + }, + "m_seasonID": { + "type": "unsigned int", + "id": 13, + "offset": 232, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 535260643 + }, + "m_bUpdateLadder": { + "type": "bool", + "id": 14, + "offset": 248, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1937525956 + }, + "m_maxPointsPerMatch": { + "type": "unsigned int", + "id": 15, + "offset": 240, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1397040900 + }, + "m_estimatedWeight": { + "type": "float", + "id": 16, + "offset": 244, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1374360127 + }, + "m_maxELOError": { + "type": "int", + "id": 17, + "offset": 252, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 318998922 + }, + "m_uniqueMatchID": { + "type": "std::string", + "id": 18, + "offset": 264, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3291026220 + }, + "m_pvpDuelModifiersTemplates": { + "type": "class SharedPointer", + "id": 19, + "offset": 296, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1193155411 + }, + "m_teamSize": { + "type": "unsigned int", + "id": 20, + "offset": 256, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2343388751 + }, + "m_minRank": { + "type": "int", + "id": 21, + "offset": 312, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2062988042 + }, + "m_maxRank": { + "type": "int", + "id": 22, + "offset": 316, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1761764108 + }, + "m_trackRank": { + "type": "int", + "id": 23, + "offset": 320, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1258472859 + }, + "m_pTrackInfo": { + "type": "class SharedPointer", + "id": 24, + "offset": 336, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3026194809 + }, + "m_ratingBrackets": { + "type": "class ResultList*", + "id": 25, + "offset": 328, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2173049436 + } + } + }, + "1689401516": { + "name": "class MatchActor", + "bases": [ + "PropertyClass" + ], + "hash": 1689401516, + "properties": { + "m_nActorID": { + "type": "gid", + "id": 0, + "offset": 88, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 663762476 + }, + "m_nLadderContainerID": { + "type": "gid", + "id": 1, + "offset": 96, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 782107042 + }, + "m_nTournamentNameID": { + "type": "unsigned int", + "id": 2, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 471412886 + }, + "m_nTournamentID": { + "type": "gid", + "id": 3, + "offset": 112, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 105258688 + }, + "m_leagueID": { + "type": "unsigned int", + "id": 4, + "offset": 124, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 692361645 + }, + "m_seasonID": { + "type": "unsigned int", + "id": 5, + "offset": 120, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 535260643 + }, + "m_nMatchNameID": { + "type": "unsigned int", + "id": 6, + "offset": 128, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 497033398 + }, + "m_nMatchID": { + "type": "gid", + "id": 7, + "offset": 136, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1050279648 + }, + "m_nTeamID": { + "type": "gid", + "id": 8, + "offset": 144, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 374990266 + }, + "m_status": { + "type": "int", + "id": 9, + "offset": 160, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 960781182 + }, + "m_costAdj": { + "type": "class MatchCostAdjustment", + "id": 10, + "offset": 200, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 913243331 + }, + "m_pLadder": { + "type": "class SharedPointer", + "id": 11, + "offset": 304, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2484171182 + }, + "m_bracketID": { + "type": "gid", + "id": 12, + "offset": 152, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 441272961 + }, + "m_overridingELO": { + "type": "int", + "id": 13, + "offset": 284, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1428697363 + }, + "m_matchKFactor": { + "type": "int", + "id": 14, + "offset": 288, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 773340305 + }, + "m_userID": { + "type": "gid", + "id": 15, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1037989700 + }, + "m_matchMakingRangeForMatches": { + "type": "unsigned int", + "id": 16, + "offset": 320, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1193045098 + }, + "m_maxMatchMakingRangeForMatches": { + "type": "unsigned int", + "id": 17, + "offset": 324, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1279540944 + }, + "m_allowRangeToExceedMaxForMatches": { + "type": "bool", + "id": 18, + "offset": 328, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1260448226 + }, + "m_matchCrownsCost": { + "type": "int", + "id": 19, + "offset": 280, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1094489596 + }, + "m_machineID": { + "type": "gid", + "id": 20, + "offset": 336, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 281396698 + }, + "m_tier": { + "type": "int", + "id": 21, + "offset": 344, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 219884238 + }, + "m_rank": { + "type": "int", + "id": 22, + "offset": 348, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 219803942 + }, + "m_rating": { + "type": "int", + "id": 23, + "offset": 352, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 899783871 + }, + "m_levelBand": { + "type": "int", + "id": 24, + "offset": 356, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2097286567 + }, + "m_enteredQueue": { + "type": "int", + "id": 25, + "offset": 376, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 638238406 + }, + "m_isSubscriber": { + "type": "bool", + "id": 26, + "offset": 428, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 952325795 + }, + "m_meetBracketBadgeRequirnments": { + "type": "bool", + "id": 27, + "offset": 429, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 438139258 + }, + "m_1v1": { + "type": "bool", + "id": 28, + "offset": 430, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 269458571 + }, + "m_streak": { + "type": "int", + "id": 29, + "offset": 360, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 961375108 + }, + "m_matches": { + "type": "int", + "id": 30, + "offset": 364, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1757638687 + }, + "m_lastFight": { + "type": "int", + "id": 31, + "offset": 368, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 91176384 + }, + "m_PVPHistoryStr": { + "type": "std::string", + "id": 32, + "offset": 384, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1498439420 + }, + "m_maxCritHit": { + "type": "float", + "id": 33, + "offset": 416, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2225327348 + }, + "m_maxBlockCrit": { + "type": "float", + "id": 34, + "offset": 420, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 135865530 + }, + "m_shadowPipRating": { + "type": "float", + "id": 35, + "offset": 424, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 507126123 + }, + "m_optInOut": { + "type": "std::string", + "id": 36, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3013935453 + }, + "m_playerTimeDraw": { + "type": "bool", + "id": 37, + "offset": 431, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 447636221 + } + } + }, + "399201392": { + "name": "class SharedPointer", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 399201392, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_assignedPlayers": { + "type": "gid", + "id": 1, + "offset": 112, + "flags": 65543, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1913541510 + } + } + }, + "399825320": { + "name": "class std::list >", + "bases": [], + "hash": 399825320, + "properties": {} + }, + "400515292": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 400515292, + "properties": { + "m_id": { + "type": "int", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2090586215 + }, + "m_teamIndex": { + "type": "int", + "id": 1, + "offset": 76, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1621537177 + }, + "m_rotation": { + "type": "float", + "id": 2, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1497468551 + }, + "m_radius": { + "type": "float", + "id": 3, + "offset": 84, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 989410271 + }, + "m_locationPreference": { + "type": "std::string", + "id": 4, + "offset": 88, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2817699507 + }, + "m_symbol": { + "type": "enum DynamicSigilSymbol", + "id": 5, + "offset": 120, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1055639026, + "enum_options": { + "NotSet": 0, + "Dagger": 1, + "Key": 2, + "Gem": 3, + "Spiral": 4, + "Book": 5, + "Chalice": 6, + "Wand": 7, + "Potion": 8, + "Sun": 9, + "Eye": 10, + "Star": 11, + "Moon": 12 + } + } + } + }, + "399955952": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 399955952, + "properties": { + "m_sigilInfoList": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2125475193 + } + } + }, + "400652242": { + "name": "class InventoryPageWindow*", + "bases": [ + "Window", + "PropertyClass" + ], + "hash": 400652242, + "properties": { + "m_sName": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306437263 + }, + "m_Children": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621225959 + }, + "m_Style": { + "type": "unsigned int", + "id": 2, + "offset": 152, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "SCALE_CHILDREN": 2, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "FOCUS_LOCKED": 64, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152 + } + }, + "m_Flags": { + "type": "unsigned int", + "id": 3, + "offset": 156, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } + }, + "m_Window": { + "type": "class Rect", + "id": 4, + "offset": 160, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3105139380 + }, + "m_fTargetAlpha": { + "type": "float", + "id": 5, + "offset": 212, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1809129834 + }, + "m_fDisabledAlpha": { + "type": "float", + "id": 6, + "offset": 216, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1389987675 + }, + "m_fAlpha": { + "type": "float", + "id": 7, + "offset": 208, + "flags": 65671, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 482130755 + }, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3623628394 + }, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2102211316 + }, + "m_sScript": { + "type": "std::string", + "id": 10, + "offset": 352, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1846695875 + }, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3389835433 + }, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547159940 + }, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513510520 + }, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3091503757 + } + } + }, + "406357213": { + "name": "class SharedPointer", + "bases": [ + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 406357213, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + } + } + }, + "404151600": { + "name": "class SharedPointer", + "bases": [ + "DerbyEffect", + "PropertyClass" + ], + "hash": 404151600, + "properties": { + "m_buffType": { + "type": "enum DerbyTalentBuffType", + "id": 0, + "offset": 92, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1149251982, + "enum_options": { + "Buff": 0, + "Debuff": 1, + "Neither": 2 + } + }, + "m_kTarget": { + "type": "enum DerbyTargetType", + "id": 1, + "offset": 96, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1807803351, + "enum_options": { + "kTargetInFront": 0, + "kTargetBehind": 1, + "kTargetFirst": 2, + "kTargetSelf": 3, + "kTargetAll": 4, + "kTargetLast": 5 + } + }, + "m_nDuration": { + "type": "int", + "id": 2, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1110167982 + }, + "m_effectID": { + "type": "unsigned int", + "id": 3, + "offset": 88, + "flags": 24, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2347630439 + }, + "m_imageFilename": { + "type": "std::string", + "id": 4, + "offset": 112, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2813328063 + }, + "m_iconIndex": { + "type": "unsigned int", + "id": 5, + "offset": 144, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1265133262 + }, + "m_soundOnActivate": { + "type": "std::string", + "id": 6, + "offset": 152, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1956929714 + }, + "m_soundOnTarget": { + "type": "std::string", + "id": 7, + "offset": 184, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3444214056 + }, + "m_targetParticleEffect": { + "type": "std::string", + "id": 8, + "offset": 216, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3048234723 + }, + "m_overheadMessage": { + "type": "std::string", + "id": 9, + "offset": 248, + "flags": 8388639, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1701018190 + }, + "m_requirements": { + "type": "class RequirementList", + "id": 10, + "offset": 280, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2840988582 + }, + "m_nMoraleChange": { + "type": "int", + "id": 11, + "offset": 376, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1624723118 + } + } + }, + "403229938": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 403229938, + "properties": { + "m_savedDebugCommandList": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2197698884 + }, + "m_saveToHistory": { + "type": "bool", + "id": 1, + "offset": 88, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 762028567 + } + } + }, + "402756076": { + "name": "class MinigameConfig", + "bases": [ + "PropertyClass" + ], + "hash": 402756076, + "properties": { + "m_minigames": { + "type": "class MinigameInfo*", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2928955645 + } + } + }, + "402439329": { + "name": "class SharedPointer", + "bases": [ + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 402439329, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + }, + "m_animation": { + "type": "std::string", + "id": 2, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3431428731 + }, + "m_backupAnimation": { + "type": "std::string", + "id": 3, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1661537937 + }, + "m_default": { + "type": "bool", + "id": 4, + "offset": 184, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1014207576 + }, + "m_evenWhileDead": { + "type": "bool", + "id": 5, + "offset": 185, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2100875368 + }, + "m_fadeOutAfter": { + "type": "bool", + "id": 6, + "offset": 186, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2006083917 + }, + "m_startsImportantAnimations": { + "type": "bool", + "id": 7, + "offset": 187, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 734711685 + }, + "m_forcesStageToWait": { + "type": "bool", + "id": 8, + "offset": 188, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 74507905 + }, + "m_storeAnimForLateComers": { + "type": "bool", + "id": 9, + "offset": 190, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 634303291 + } + } + }, + "401053773": { + "name": "class BaseBadgeBehavior*", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 401053773, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_badgeData": { + "type": "std::string", + "id": 1, + "offset": 160, + "flags": 575, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3002588904 + } + } + }, + "401375543": { + "name": "class ClientReagentItem*", + "bases": [ + "WizClientObjectItem", + "ClientObject", + "CoreObject", + "PropertyClass" + ], + "hash": 401375543, + "properties": { + "m_inactiveBehaviors": { + "type": "class SharedPointer", + "id": 0, + "offset": 224, + "flags": 31, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1850812559 + }, + "m_globalID.m_full": { + "type": "unsigned __int64", + "id": 1, + "offset": 72, + "flags": 16777247, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2312465444 + }, + "m_permID": { + "type": "unsigned __int64", + "id": 2, + "offset": 80, + "flags": 16777247, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1298909658 + }, + "m_location": { + "type": "class Vector3D", + "id": 3, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2239683611 + }, + "m_orientation": { + "type": "class Vector3D", + "id": 4, + "offset": 180, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2344058766 + }, + "m_fScale": { + "type": "float", + "id": 5, + "offset": 196, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 503137701 + }, + "m_templateID.m_full": { + "type": "unsigned __int64", + "id": 6, + "offset": 96, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 633907631 + }, + "m_debugName": { + "type": "std::string", + "id": 7, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3553984419 + }, + "m_displayKey": { + "type": "std::string", + "id": 8, + "offset": 136, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3023276954 + }, + "m_zoneTagID": { + "type": "unsigned int", + "id": 9, + "offset": 344, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 965291410 + }, + "m_speedMultiplier": { + "type": "short", + "id": 10, + "offset": 192, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 123130076 + }, + "m_nMobileID": { + "type": "unsigned short", + "id": 11, + "offset": 194, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1054318939 + }, + "m_characterId": { + "type": "gid", + "id": 12, + "offset": 440, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 210498418 + }, + "m_primaryColor": { + "type": "int", + "id": 13, + "offset": 568, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 900965981 + }, + "m_pattern": { + "type": "int", + "id": 14, + "offset": 572, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1337683384 + }, + "m_secondaryColor": { + "type": "int", + "id": 15, + "offset": 576, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1616550081 + }, + "m_displayID": { + "type": "gid", + "id": 16, + "offset": 584, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1022427803 + }, + "m_itemFlags": { + "type": "unsigned int", + "id": 17, + "offset": 592, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2004128457 + }, + "m_quantity": { + "type": "int", + "id": 18, + "offset": 608, + "flags": 27, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 169215289 + } + } + }, + "402755916": { + "name": "class MinigameConfig*", + "bases": [ + "PropertyClass" + ], + "hash": 402755916, + "properties": { + "m_minigames": { + "type": "class MinigameInfo*", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2928955645 + } + } + }, + "403006079": { + "name": "class ClientRaidPortalBehavior*", + "bases": [ + "RaidPortalBehavior", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 403006079, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_active": { + "type": "bool", + "id": 1, + "offset": 112, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 239335471 + } + } + }, + "403320877": { + "name": "class UserCapabilitiesInfo", + "bases": [ + "PropertyClass" + ], + "hash": 403320877, + "properties": { + "m_macAddress": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3156887154 + }, + "m_systemMemory": { + "type": "unsigned short", + "id": 1, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 852349606 + }, + "m_freeDiskSpace": { + "type": "unsigned short", + "id": 2, + "offset": 106, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1250782497 + }, + "m_processorArchitecture": { + "type": "unsigned short", + "id": 3, + "offset": 108, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2088980971 + }, + "m_numProcessors": { + "type": "char", + "id": 4, + "offset": 110, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 706266711 + }, + "m_processorType": { + "type": "unsigned int", + "id": 5, + "offset": 112, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1199310607 + }, + "m_processorLevel": { + "type": "unsigned short", + "id": 6, + "offset": 116, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 929266784 + }, + "m_processorRevision": { + "type": "unsigned short", + "id": 7, + "offset": 118, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1573335831 + }, + "m_vendorID": { + "type": "unsigned short", + "id": 8, + "offset": 120, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2522209987 + }, + "m_deviceID": { + "type": "unsigned short", + "id": 9, + "offset": 122, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2360466085 + }, + "m_subSysID": { + "type": "unsigned int", + "id": 10, + "offset": 124, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1872946051 + }, + "m_textureMemory": { + "type": "unsigned short", + "id": 11, + "offset": 128, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1738572338 + }, + "m_hwTransformAndLight": { + "type": "bool", + "id": 12, + "offset": 130, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2100427321 + }, + "m_dynamicTextures": { + "type": "bool", + "id": 13, + "offset": 131, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2010245916 + }, + "m_renderToTexture_A8R8G8B8": { + "type": "bool", + "id": 14, + "offset": 132, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1029952834 + }, + "m_renderToTexture_A8B8G8R8": { + "type": "bool", + "id": 15, + "offset": 133, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 403787074 + }, + "m_textureFromSystemMemory": { + "type": "bool", + "id": 16, + "offset": 134, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1414058230 + }, + "m_textureFromVideoMemory": { + "type": "bool", + "id": 17, + "offset": 135, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 501373448 + }, + "m_maxTextureBlendStages": { + "type": "char", + "id": 18, + "offset": 136, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 783320407 + }, + "m_maxActiveLights": { + "type": "char", + "id": 19, + "offset": 137, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1302798081 + }, + "m_maxSimultaneousTextures": { + "type": "char", + "id": 20, + "offset": 138, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1083967879 + }, + "m_maxTextureWidth": { + "type": "unsigned short", + "id": 21, + "offset": 140, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1649109567 + }, + "m_maxTextureHeight": { + "type": "unsigned short", + "id": 22, + "offset": 142, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1751799512 + }, + "m_vertexShaderVersion": { + "type": "unsigned int", + "id": 23, + "offset": 144, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2017875080 + }, + "m_pixelShaderVersion": { + "type": "unsigned int", + "id": 24, + "offset": 148, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2108833228 + }, + "m_numMonitors": { + "type": "int", + "id": 25, + "offset": 152, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 452729285 + }, + "m_mouseButtons": { + "type": "int", + "id": 26, + "offset": 156, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 980265490 + }, + "m_screenResX": { + "type": "unsigned short", + "id": 27, + "offset": 160, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 857804618 + }, + "m_screenResY": { + "type": "unsigned short", + "id": 28, + "offset": 162, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 857804619 + }, + "m_packedOSVersion": { + "type": "unsigned int", + "id": 29, + "offset": 164, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 701472349 + }, + "m_packedOSServicePack": { + "type": "unsigned int", + "id": 30, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 888199623 + }, + "m_hostedOS": { + "type": "bool", + "id": 31, + "offset": 172, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 409932636 + }, + "m_flashPluginInstalled": { + "type": "bool", + "id": 32, + "offset": 173, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 557011344 + }, + "m_isAdministrator": { + "type": "bool", + "id": 33, + "offset": 174, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1925580112 + }, + "m_tabletPC": { + "type": "bool", + "id": 34, + "offset": 175, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1302169794 + }, + "m_touchCapabilites": { + "type": "int", + "id": 35, + "offset": 176, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 422911998 + }, + "m_hwID": { + "type": "std::string", + "id": 36, + "offset": 184, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1717166887 + }, + "m_hwSerials": { + "type": "std::string", + "id": 37, + "offset": 216, + "flags": 31, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2604793293 + } + } + }, + "403320837": { + "name": "class UserCapabilitiesInfo*", + "bases": [ + "PropertyClass" + ], + "hash": 403320837, + "properties": { + "m_macAddress": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3156887154 + }, + "m_systemMemory": { + "type": "unsigned short", + "id": 1, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 852349606 + }, + "m_freeDiskSpace": { + "type": "unsigned short", + "id": 2, + "offset": 106, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1250782497 + }, + "m_processorArchitecture": { + "type": "unsigned short", + "id": 3, + "offset": 108, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2088980971 + }, + "m_numProcessors": { + "type": "char", + "id": 4, + "offset": 110, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 706266711 + }, + "m_processorType": { + "type": "unsigned int", + "id": 5, + "offset": 112, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1199310607 + }, + "m_processorLevel": { + "type": "unsigned short", + "id": 6, + "offset": 116, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 929266784 + }, + "m_processorRevision": { + "type": "unsigned short", + "id": 7, + "offset": 118, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1573335831 + }, + "m_vendorID": { + "type": "unsigned short", + "id": 8, + "offset": 120, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2522209987 + }, + "m_deviceID": { + "type": "unsigned short", + "id": 9, + "offset": 122, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2360466085 + }, + "m_subSysID": { + "type": "unsigned int", + "id": 10, + "offset": 124, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1872946051 + }, + "m_textureMemory": { + "type": "unsigned short", + "id": 11, + "offset": 128, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1738572338 + }, + "m_hwTransformAndLight": { + "type": "bool", + "id": 12, + "offset": 130, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2100427321 + }, + "m_dynamicTextures": { + "type": "bool", + "id": 13, + "offset": 131, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2010245916 + }, + "m_renderToTexture_A8R8G8B8": { + "type": "bool", + "id": 14, + "offset": 132, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1029952834 + }, + "m_renderToTexture_A8B8G8R8": { + "type": "bool", + "id": 15, + "offset": 133, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 403787074 + }, + "m_textureFromSystemMemory": { + "type": "bool", + "id": 16, + "offset": 134, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1414058230 + }, + "m_textureFromVideoMemory": { + "type": "bool", + "id": 17, + "offset": 135, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 501373448 + }, + "m_maxTextureBlendStages": { + "type": "char", + "id": 18, + "offset": 136, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 783320407 + }, + "m_maxActiveLights": { + "type": "char", + "id": 19, + "offset": 137, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1302798081 + }, + "m_maxSimultaneousTextures": { + "type": "char", + "id": 20, + "offset": 138, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1083967879 + }, + "m_maxTextureWidth": { + "type": "unsigned short", + "id": 21, + "offset": 140, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1649109567 + }, + "m_maxTextureHeight": { + "type": "unsigned short", + "id": 22, + "offset": 142, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1751799512 + }, + "m_vertexShaderVersion": { + "type": "unsigned int", + "id": 23, + "offset": 144, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2017875080 + }, + "m_pixelShaderVersion": { + "type": "unsigned int", + "id": 24, + "offset": 148, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2108833228 + }, + "m_numMonitors": { + "type": "int", + "id": 25, + "offset": 152, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 452729285 + }, + "m_mouseButtons": { + "type": "int", + "id": 26, + "offset": 156, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 980265490 + }, + "m_screenResX": { + "type": "unsigned short", + "id": 27, + "offset": 160, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 857804618 + }, + "m_screenResY": { + "type": "unsigned short", + "id": 28, + "offset": 162, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 857804619 + }, + "m_packedOSVersion": { + "type": "unsigned int", + "id": 29, + "offset": 164, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 701472349 + }, + "m_packedOSServicePack": { + "type": "unsigned int", + "id": 30, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 888199623 + }, + "m_hostedOS": { + "type": "bool", + "id": 31, + "offset": 172, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 409932636 + }, + "m_flashPluginInstalled": { + "type": "bool", + "id": 32, + "offset": 173, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 557011344 + }, + "m_isAdministrator": { + "type": "bool", + "id": 33, + "offset": 174, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1925580112 + }, + "m_tabletPC": { + "type": "bool", + "id": 34, + "offset": 175, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1302169794 + }, + "m_touchCapabilites": { + "type": "int", + "id": 35, + "offset": 176, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 422911998 + }, + "m_hwID": { + "type": "std::string", + "id": 36, + "offset": 184, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1717166887 + }, + "m_hwSerials": { + "type": "std::string", + "id": 37, + "offset": 216, + "flags": 31, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2604793293 + } + } + }, + "403526249": { + "name": "class SharedPointer", + "bases": [ + "PathBehaviorTemplate::Action", + "PropertyClass" + ], + "hash": 403526249, + "properties": { + "m_nPathID": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 214382368 + }, + "m_nNodeID": { + "type": "int", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 152152635, + "enum_options": { + "__DEFAULT": 4294967295 + } + }, + "m_nPriority": { + "type": "int", + "id": 2, + "offset": 84, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1515251530, + "enum_options": { + "__DEFAULT": 100 + } + }, + "m_nChance": { + "type": "int", + "id": 3, + "offset": 88, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1860748394, + "enum_options": { + "__DEFAULT": 50 + } + }, + "m_sStateName": { + "type": "std::string", + "id": 4, + "offset": 96, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1788022096 + } + } + }, + "403628188": { + "name": "class SharedPointer", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 403628188, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_schoolOfFocus": { + "type": "unsigned int", + "id": 1, + "offset": 128, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 236936682 + }, + "m_experiencePoints": { + "type": "int", + "id": 2, + "offset": 136, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2011512991 + }, + "m_level": { + "type": "int", + "id": 3, + "offset": 132, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 801285362 + }, + "m_trainingPoints": { + "type": "int", + "id": 4, + "offset": 140, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1003892499 + }, + "m_overflowXP": { + "type": "int", + "id": 5, + "offset": 148, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 315792502 + }, + "m_levelLocked": { + "type": "int", + "id": 6, + "offset": 152, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1481284996 + }, + "m_equippedTeleportEffect": { + "type": "unsigned int", + "id": 7, + "offset": 144, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 918478182 + }, + "m_secondarySchool": { + "type": "unsigned int", + "id": 8, + "offset": 156, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 479424797 + } + } + }, + "405734015": { + "name": "class ClientMakeTargetableCinematicAction*", + "bases": [ + "MakeTargetableCinematicAction", + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 405734015, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + } + } + }, + "405551471": { + "name": "class WizardControlTable*", + "bases": [ + "Window", + "PropertyClass" + ], + "hash": 405551471, + "properties": { + "m_sName": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306437263 + }, + "m_Children": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 65667, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621225959 + }, + "m_Style": { + "type": "unsigned int", + "id": 2, + "offset": 152, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "SCALE_CHILDREN": 2, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "FOCUS_LOCKED": 64, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152 + } + }, + "m_Flags": { + "type": "unsigned int", + "id": 3, + "offset": 156, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } + }, + "m_Window": { + "type": "class Rect", + "id": 4, + "offset": 160, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3105139380 + }, + "m_fTargetAlpha": { + "type": "float", + "id": 5, + "offset": 212, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1809129834 + }, + "m_fDisabledAlpha": { + "type": "float", + "id": 6, + "offset": 216, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1389987675 + }, + "m_fAlpha": { + "type": "float", + "id": 7, + "offset": 208, + "flags": 65671, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 482130755 + }, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3623628394 + }, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2102211316 + }, + "m_sScript": { + "type": "std::string", + "id": 10, + "offset": 352, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1846695875 + }, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3389835433 + }, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547159940 + }, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513510520 + }, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3091503757 + } + } + }, + "404939124": { + "name": "class WizAvatarItemInfo", + "bases": [ + "AvatarItemInfo", + "AvatarItemInfoBase", + "PropertyClass" + ], + "hash": 404939124, + "properties": { + "m_partName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2609631923 + }, + "m_slotName": { + "type": "std::string", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2819781566 + }, + "m_flags": { + "type": "std::string", + "id": 2, + "offset": 144, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2292098216 + }, + "m_options": { + "type": "class SharedPointer", + "id": 3, + "offset": 160, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2499357824 + }, + "m_textureOptions": { + "type": "class SharedPointer", + "id": 4, + "offset": 176, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2667548348 + }, + "m_defaultOption": { + "type": "class SharedPointer", + "id": 5, + "offset": 192, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2436336754 + }, + "m_defaultTextureOption": { + "type": "class SharedPointer", + "id": 6, + "offset": 208, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2712636654 + } + } + }, + "405684863": { + "name": "class ClientMakeTargetableCinematicAction", + "bases": [ + "MakeTargetableCinematicAction", + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 405684863, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + } + } + }, + "405622211": { + "name": "class LinearStateSoundBehaviorTemplate*", + "bases": [ + "LinearSoundBehaviorTemplate", + "PositionalSoundBehaviorTemplate", + "SoundBehaviorTemplate", + "AreaBehaviorTemplate", + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 405622211, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + }, + "m_radius": { + "type": "float", + "id": 1, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 989410271 + }, + "m_category": { + "type": "enum AudioCategory", + "id": 2, + "offset": 124, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2951251982, + "enum_options": { + "AudioCategory_Irrelevent": 0, + "AudioCategory_Accoustic": 1, + "AudioCategory_Noise": 2, + "AudioCategory_Music": 3, + "AudioCategory_MusicAtSFXVolume": 4, + "AudioCategory_Dialog": 5, + "AudioCategory_UI": 6, + "AudioCategory_NoiseAtMusicVolume": 7 + } + }, + "m_exclusive": { + "type": "bool", + "id": 3, + "offset": 128, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 824383403 + }, + "m_active": { + "type": "bool", + "id": 4, + "offset": 129, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 239335471 + }, + "m_enableReqs": { + "type": "class SharedPointer", + "id": 5, + "offset": 136, + "flags": 263, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3158020443 + }, + "m_trackFilenameList": { + "type": "std::string", + "id": 6, + "offset": 152, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2531081709 + }, + "m_playList": { + "type": "class PlayListEntry*", + "id": 7, + "offset": 176, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 3907873161 + }, + "m_priority": { + "type": "int", + "id": 8, + "offset": 208, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1235205852 + }, + "m_volume": { + "type": "float", + "id": 9, + "offset": 200, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1162855023 + }, + "m_loopCount": { + "type": "int", + "id": 10, + "offset": 204, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 865634717 + }, + "m_progression": { + "type": "enum PlayList::Progression", + "id": 11, + "offset": 220, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3279400238, + "enum_options": { + "Sequence": 0, + "Random": 1, + "SequenceOnceOnly": 2, + "RandomNoRepeat": 3 + } + }, + "m_progressMin": { + "type": "float", + "id": 12, + "offset": 212, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1497550192 + }, + "m_progressMax": { + "type": "float", + "id": 13, + "offset": 216, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1497549938 + }, + "m_audioFilterSet": { + "type": "unsigned int", + "id": 14, + "offset": 224, + "flags": 33554439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 831339825 + }, + "m_animationNameFilter": { + "type": "std::string", + "id": 15, + "offset": 232, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2292854242 + }, + "m_functionallabel": { + "type": "std::string", + "id": 16, + "offset": 264, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3589331278 + }, + "m_innerRadius": { + "type": "float", + "id": 17, + "offset": 296, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 686816091 + }, + "m_inverted": { + "type": "bool", + "id": 18, + "offset": 300, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1034821044 + }, + "m_fRangeScale": { + "type": "float", + "id": 19, + "offset": 304, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1749294034 + }, + "m_fAttenuationFactor": { + "type": "float", + "id": 20, + "offset": 308, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 273292776 + }, + "m_eAttenuationType": { + "type": "enum PositionInfoAttenuationType", + "id": 21, + "offset": 312, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2427193304, + "enum_options": { + "Standard": 0, + "Unit Range Power": 1 + } + }, + "m_vPositions": { + "type": "class Vector3D", + "id": 22, + "offset": 320, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 3599600160 + } + } + }, + "405973516": { + "name": "class SharedPointer", + "bases": [ + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 405973516, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + } + } + }, + "412276022": { + "name": "class std::vector >", + "bases": [], + "hash": 412276022, + "properties": {} + }, + "410182004": { + "name": "class WizAvatarItemInfo*", + "bases": [ + "AvatarItemInfo", + "AvatarItemInfoBase", + "PropertyClass" + ], + "hash": 410182004, + "properties": { + "m_partName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2609631923 + }, + "m_slotName": { + "type": "std::string", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2819781566 + }, + "m_flags": { + "type": "std::string", + "id": 2, + "offset": 144, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2292098216 + }, + "m_options": { + "type": "class SharedPointer", + "id": 3, + "offset": 160, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2499357824 + }, + "m_textureOptions": { + "type": "class SharedPointer", + "id": 4, + "offset": 176, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2667548348 + }, + "m_defaultOption": { + "type": "class SharedPointer", + "id": 5, + "offset": 192, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2436336754 + }, + "m_defaultTextureOption": { + "type": "class SharedPointer", + "id": 6, + "offset": 208, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2712636654 + } + } + }, + "407794292": { + "name": "class BracketInfo*", + "bases": [ + "PropertyClass" + ], + "hash": 407794292, + "properties": { + "m_bracketGID": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1674798632 + }, + "m_creatorActorGID": { + "type": "gid", + "id": 1, + "offset": 80, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1339404213 + }, + "m_creatorBracketGID": { + "type": "gid", + "id": 2, + "offset": 88, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1005482776 + }, + "m_teams": { + "type": "class SharedPointer", + "id": 3, + "offset": 184, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 981867512 + }, + "m_teamSize": { + "type": "unsigned int", + "id": 4, + "offset": 224, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2343388751 + }, + "m_actorList": { + "type": "class SharedPointer", + "id": 5, + "offset": 168, + "flags": 6, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 885135115 + }, + "m_currentRound": { + "type": "unsigned int", + "id": 6, + "offset": 144, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 861487416 + }, + "m_bracketState": { + "type": "unsigned int", + "id": 7, + "offset": 236, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 790945386 + }, + "m_matchNameID": { + "type": "unsigned int", + "id": 8, + "offset": 240, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1751361288 + }, + "m_roundStartsInSeconds": { + "type": "unsigned int", + "id": 9, + "offset": 232, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 346233980 + }, + "m_roundTimeSeconds": { + "type": "unsigned int", + "id": 10, + "offset": 228, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1964849971 + }, + "m_scheduleID": { + "type": "gid", + "id": 11, + "offset": 248, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1439120946 + }, + "m_visibleTimeSeconds": { + "type": "unsigned int", + "id": 12, + "offset": 272, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1245818841 + }, + "m_startTimeSec": { + "type": "int", + "id": 13, + "offset": 268, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1519392434 + }, + "m_registrationOpenTimeSeconds": { + "type": "unsigned int", + "id": 14, + "offset": 276, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2064854776 + }, + "m_tournamentPreparingTimeSeconds": { + "type": "unsigned int", + "id": 15, + "offset": 280, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1121720544 + }, + "m_roundBufferTimeSeconds": { + "type": "unsigned int", + "id": 16, + "offset": 284, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 671173677 + }, + "m_numberOfRounds": { + "type": "int", + "id": 17, + "offset": 148, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2081430579 + }, + "m_overrideTourneyName": { + "type": "std::string", + "id": 18, + "offset": 296, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2611946162 + }, + "m_firstTourneyNameSTKey": { + "type": "std::string", + "id": 19, + "offset": 328, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2731391050 + }, + "m_secondTourneyNameSTKey": { + "type": "std::string", + "id": 20, + "offset": 360, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1747016318 + }, + "m_subBracketIdx": { + "type": "int", + "id": 21, + "offset": 392, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1688562149 + }, + "m_scoreMultiplier": { + "type": "float", + "id": 22, + "offset": 396, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 545011290 + }, + "m_preferredNumberOfTeams": { + "type": "int", + "id": 23, + "offset": 264, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 475550641 + }, + "m_minTeams": { + "type": "int", + "id": 24, + "offset": 256, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1506283288 + }, + "m_maxTeams": { + "type": "int", + "id": 25, + "offset": 260, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 155828058 + }, + "m_specialEvent": { + "type": "bool", + "id": 26, + "offset": 416, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1211693398 + }, + "m_pvpDuelModifiers": { + "type": "std::string", + "id": 27, + "offset": 424, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1796488605 + }, + "m_pvpDuelModifierTemplates": { + "type": "class SharedPointer", + "id": 28, + "offset": 472, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2010454400 + }, + "m_pvpDuelModifiersBlob": { + "type": "std::string", + "id": 29, + "offset": 440, + "flags": 551, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2862516796 + }, + "m_premierPrizesStoreGIDsCSV": { + "type": "std::string", + "id": 30, + "offset": 488, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2521625388 + }, + "m_tournamentStyle": { + "type": "enum BracketInfo::EnumTournamentStyle", + "id": 31, + "offset": 288, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1530265666, + "enum_options": { + "SINGLE_ELIM": 1, + "SWISS": 0 + } + }, + "m_bracketRewardsList": { + "type": "class SharedPointer", + "id": 32, + "offset": 400, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 3842983067 + }, + "m_costPvPTourneyCurrency": { + "type": "int", + "id": 33, + "offset": 216, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1611997610 + }, + "m_subCostPvPTourneyCurrency": { + "type": "int", + "id": 34, + "offset": 220, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1871398932 + }, + "m_joinQueueRequirements": { + "type": "class SharedPointer", + "id": 35, + "offset": 96, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2746080983 + }, + "m_joinQueueRequirementsBlob": { + "type": "std::string", + "id": 36, + "offset": 112, + "flags": 551, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2615447859 + } + } + }, + "407233073": { + "name": "class EmotesRadialMenuBehavior*", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 407233073, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_radialMenuData": { + "type": "std::string", + "id": 1, + "offset": 128, + "flags": 575, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3438486999 + } + } + }, + "406941336": { + "name": "class std::list >", + "bases": [], + "hash": 406941336, + "properties": {} + }, + "407652490": { + "name": "class BracketTeam*", + "bases": [ + "PropertyClass" + ], + "hash": 407652490, + "properties": { + "m_matchTeamGID": { + "type": "gid", + "id": 0, + "offset": 88, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 725139968 + }, + "m_matchTeam": { + "type": "class SharedPointer", + "id": 1, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1737359170 + }, + "m_points": { + "type": "unsigned int", + "id": 2, + "offset": 100, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1049128778 + }, + "m_matchResults": { + "type": "class SharedPointer", + "id": 3, + "offset": 112, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 615114630 + }, + "m_teamID": { + "type": "unsigned int", + "id": 4, + "offset": 128, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1193521089 + }, + "m_ranking": { + "type": "unsigned int", + "id": 5, + "offset": 132, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1977103383 + }, + "m_pendingResult": { + "type": "class SharedPointer", + "id": 6, + "offset": 176, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 599580139 + }, + "m_name": { + "type": "std::string", + "id": 7, + "offset": 144, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1717359772 + }, + "m_pointsAsOfTheLastCompletedRound": { + "type": "unsigned int", + "id": 8, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2267670253 + } + } + }, + "409574036": { + "name": "class SharedPointer", + "bases": [ + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 409574036, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + } + } + }, + "409421015": { + "name": "class SharedPointer", + "bases": [ + "ZoneTokenBase", + "PropertyClass" + ], + "hash": 409421015, + "properties": { + "m_debugName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3553984419 + }, + "m_adjectiveList": { + "type": "std::string", + "id": 1, + "offset": 104, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 3195213318 + }, + "m_icon": { + "type": "std::string", + "id": 2, + "offset": 120, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1717182340 + }, + "m_iconBW": { + "type": "std::string", + "id": 3, + "offset": 152, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2047461085 + }, + "m_description": { + "type": "std::string", + "id": 4, + "offset": 184, + "flags": 8388639, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1649374815 + }, + "m_displayMode": { + "type": "enum ZTDisplayMode", + "id": 5, + "offset": 216, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2216526410, + "enum_options": { + "ZTDM_Shown": 0, + "ZTDM_Discoverable": 1, + "ZTDM_Hidden": 2 + } + }, + "m_storage": { + "type": "enum ZTStorage", + "id": 6, + "offset": 220, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2290454852, + "enum_options": { + "ZTS_Player": 0, + "ZTS_Zone": 1 + } + }, + "m_onEnable": { + "type": "class SharedPointer", + "id": 7, + "offset": 224, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2591736864 + }, + "m_onDiscover": { + "type": "class SharedPointer", + "id": 8, + "offset": 240, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2826026872 + }, + "m_onDisable": { + "type": "class SharedPointer", + "id": 9, + "offset": 256, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1860656717 + }, + "m_sourceID": { + "type": "gid", + "id": 10, + "offset": 272, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1134700470 + }, + "m_inZone": { + "type": "bool", + "id": 11, + "offset": 280, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 564535654 + }, + "m_enabled": { + "type": "bool", + "id": 12, + "offset": 281, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 504506718 + }, + "m_discovered": { + "type": "bool", + "id": 13, + "offset": 282, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2060478331 + }, + "m_onSet": { + "type": "class SharedPointer", + "id": 14, + "offset": 288, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1964529317 + }, + "m_onClear": { + "type": "class SharedPointer", + "id": 15, + "offset": 304, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1655978208 + }, + "m_bSet": { + "type": "bool", + "id": 16, + "offset": 320, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 221694593 + } + } + }, + "411122505": { + "name": "class GameEffectContainer", + "bases": [ + "PropertyClass" + ], + "hash": 411122505, + "properties": { + "m_publicEffects": { + "type": "class SharedPointer", + "id": 0, + "offset": 88, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 3233153287 + }, + "m_myEffects": { + "type": "class SharedPointer", + "id": 1, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2650414414 + } + } + }, + "411114416": { + "name": "class SpawnPointTemplate*", + "bases": [ + "PropertyClass" + ], + "hash": 411114416, + "properties": { + "m_location": { + "type": "class Vector3D", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2239683611 + }, + "m_boxLengths": { + "type": "class Vector3D", + "id": 1, + "offset": 84, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2872763232 + }, + "m_templateID.m_full": { + "type": "unsigned __int64", + "id": 2, + "offset": 96, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 633907631 + }, + "m_respawnTime": { + "type": "float", + "id": 3, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1554573574 + }, + "m_numSpawns": { + "type": "int", + "id": 4, + "offset": 108, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1269366534 + }, + "m_zoneLevelMin": { + "type": "unsigned int", + "id": 5, + "offset": 112, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1028934149 + }, + "m_zoneLevelMax": { + "type": "unsigned int", + "id": 6, + "offset": 116, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1028933895 + }, + "m_zoneLevelUp": { + "type": "unsigned int", + "id": 7, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1342541638 + } + } + }, + "412030598": { + "name": "class ReqHighestCharacterLevelOnAccount*", + "bases": [ + "ReqNumeric", + "Requirement", + "PropertyClass" + ], + "hash": 412030598, + "properties": { + "m_applyNOT": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1746328074, + "enum_options": { + "__DEFAULT": 0 + } + }, + "m_operator": { + "type": "enum Requirement::Operator", + "id": 1, + "offset": 76, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2672792317, + "enum_options": { + "ROP_AND": 0, + "ROP_OR": 1, + "__DEFAULT": "ROP_AND" + } + }, + "m_numericValue": { + "type": "float", + "id": 2, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 521915239 + }, + "m_operatorType": { + "type": "enum ReqNumeric::OPERATOR_TYPE", + "id": 3, + "offset": 84, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2228122961, + "enum_options": { + "OPERATOR_UNKNOWN": 4294967295, + "OPERATOR_EQUALS": 0, + "OPERATOR_GREATER_THAN": 1, + "OPERATOR_LESS_THAN": 2, + "OPERATOR_GREATER_THAN_EQ": 3, + "OPERATOR_LESS_THAN_EQ": 4 + } + } + } + }, + "412030678": { + "name": "class ReqHighestCharacterLevelOnAccount", + "bases": [ + "ReqNumeric", + "Requirement", + "PropertyClass" + ], + "hash": 412030678, + "properties": { + "m_applyNOT": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1746328074, + "enum_options": { + "__DEFAULT": 0 + } + }, + "m_operator": { + "type": "enum Requirement::Operator", + "id": 1, + "offset": 76, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2672792317, + "enum_options": { + "ROP_AND": 0, + "ROP_OR": 1, + "__DEFAULT": "ROP_AND" + } + }, + "m_numericValue": { + "type": "float", + "id": 2, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 521915239 + }, + "m_operatorType": { + "type": "enum ReqNumeric::OPERATOR_TYPE", + "id": 3, + "offset": 84, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2228122961, + "enum_options": { + "OPERATOR_UNKNOWN": 4294967295, + "OPERATOR_EQUALS": 0, + "OPERATOR_GREATER_THAN": 1, + "OPERATOR_LESS_THAN": 2, + "OPERATOR_GREATER_THAN_EQ": 3, + "OPERATOR_LESS_THAN_EQ": 4 + } + } + } + }, + "412971319": { + "name": "class std::basic_string,class std::allocator >", + "bases": [], + "hash": 412971319, + "properties": {} + }, + "412563783": { + "name": "class SharedPointer", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 412563783, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_spellData": { + "type": "std::string", + "id": 1, + "offset": 128, + "flags": 575, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2688126101 + } + } + }, + "412368872": { + "name": "class GuildAchievementBehaviorTemplate*", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 412368872, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + } + } + }, + "412738632": { + "name": "class SharedPointer", + "bases": [ + "JewelSocketBehaviorBase", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 412738632, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_publicJewelInfo": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2051956582 + } + } + }, + "413013788": { + "name": "class ClientPetAnimateActorCinematicAction*", + "bases": [ + "PetAnimateActorCinematicAction", + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 413013788, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + }, + "m_animation": { + "type": "std::string", + "id": 2, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3431428731 + } + } + }, + "413184803": { + "name": "class SharedPointer", + "bases": [ + "LootInfo", + "LootInfoBase", + "PropertyClass" + ], + "hash": 413184803, + "properties": { + "m_lootType": { + "type": "enum LootInfo::LOOT_TYPE", + "id": 0, + "offset": 72, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1591891442, + "enum_options": { + "LOOT_TYPE_NONE": 0, + "LOOT_TYPE_GOLD": 1, + "LOOT_TYPE_MANA": 2, + "LOOT_TYPE_ITEM": 3, + "LOOT_TYPE_TREASURE_CARD": 4, + "LOOT_TYPE_MAGIC_XP": 5, + "LOOT_TYPE_ADD_SPELL": 6, + "LOOT_TYPE_MAX_HEALTH": 7, + "LOOT_TYPE_MAX_GOLD": 8, + "LOOT_TYPE_MAX_MANA": 9, + "LOOT_TYPE_MAX_POTION": 10, + "LOOT_TYPE_TRAINING_POINTS": 11, + "LOOT_TYPE_RECIPE": 12, + "LOOT_TYPE_CRAFTING_SLOT": 13, + "LOOT_TYPE_REAGENT": 14, + "LOOT_TYPE_PETSNACK": 15, + "LOOT_TYPE_GARDENING_XP": 16, + "LOOT_TYPE_PET_XP": 17, + "LOOT_TYPE_TREASURE_TABLE": 18, + "LOOT_TYPE_ARENA_POINTS": 19, + "LOOT_TYPE_ARENA_BONUS_POINTS": 20, + "LOOT_TYPE_GROUP": 21, + "LOOT_TYPE_FISHING_XP": 22, + "LOOT_TYPE_EVENT_CURRENCY_1": 24, + "LOOT_TYPE_EVENT_CURRENCY_2": 25, + "LOOT_TYPE_PVP_CURRENCY": 26, + "LOOT_TYPE_PVP_CURRENCY_BONUS": 27, + "LOOT_TYPE_PVP_TOURNEY_CURRENCY": 28, + "LOOT_TYPE_PVP_TOURNEY_CURRENCY_BONUS": 29, + "LOOT_TYPE_FURNITURE_ESSENCE": 30 + } + }, + "m_pvpTourneyCurrencyAmount": { + "type": "int", + "id": 1, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1148086373 + } + } + }, + "424382627": { + "name": "class std::list >", + "bases": [], + "hash": 424382627, + "properties": {} + }, + "418848714": { + "name": "class UniverseMapOption*", + "bases": [ + "ServiceOptionBase", + "PropertyClass" + ], + "hash": 418848714, + "properties": { + "m_serviceName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2206028813 + }, + "m_iconKey": { + "type": "std::string", + "id": 1, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2457138637 + }, + "m_displayKey": { + "type": "std::string", + "id": 2, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3023276954 + }, + "m_serviceIndex": { + "type": "unsigned int", + "id": 3, + "offset": 204, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2103126710 + }, + "m_forceInteract": { + "type": "bool", + "id": 4, + "offset": 200, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1705789564 + } + } + }, + "417604905": { + "name": "class SharedPointer", + "bases": [ + "EffectCinematicAction", + "BaseEffectCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 417604905, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_effectRel": { + "type": "enum BaseEffectCinematicAction::kEffectRelative", + "id": 1, + "offset": 80, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2978921287, + "enum_options": { + "kNone": 0, + "kSigil": 1, + "kTarget": 2, + "kSource": 3, + "kActor": 4 + } + }, + "m_graphic": { + "type": "std::string", + "id": 2, + "offset": 88, + "flags": 131079, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2592217913 + }, + "m_bUseOrientationOverride": { + "type": "bool", + "id": 3, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1088002894 + }, + "m_overrideOrientation": { + "type": "class Vector3D", + "id": 4, + "offset": 124, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3267199758 + }, + "m_bUseLocationOverride": { + "type": "bool", + "id": 5, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1767170875 + }, + "m_overrideLocation": { + "type": "class Vector3D", + "id": 6, + "offset": 108, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3776417691 + } + } + }, + "415913568": { + "name": "class BasePetItemBehavior*", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 415913568, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_level": { + "type": "unsigned char", + "id": 1, + "offset": 112, + "flags": 65727, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1438884808 + }, + "m_XP": { + "type": "unsigned int", + "id": 2, + "offset": 116, + "flags": 65727, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2301988085 + }, + "m_firstName": { + "type": "int", + "id": 3, + "offset": 264, + "flags": 65703, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1618303331 + }, + "m_middleName": { + "type": "int", + "id": 4, + "offset": 268, + "flags": 65703, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 199781034 + }, + "m_lastName": { + "type": "int", + "id": 5, + "offset": 272, + "flags": 65703, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 328503983 + }, + "m_currentStats": { + "type": "class PetStat", + "id": 6, + "offset": 128, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2342610661 + }, + "m_maxStats": { + "type": "class PetStat", + "id": 7, + "offset": 144, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1846363080 + }, + "m_hatchedTimeSecs": { + "type": "unsigned int", + "id": 8, + "offset": 160, + "flags": 65727, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 606051291 + }, + "m_expressedTalents": { + "type": "unsigned int", + "id": 9, + "offset": 168, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1557974043 + }, + "m_expressedDerbyTalents": { + "type": "unsigned int", + "id": 10, + "offset": 184, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 484465777 + }, + "m_talentRatings": { + "type": "std::string", + "id": 11, + "offset": 216, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2170591163 + }, + "m_powerRatings": { + "type": "std::string", + "id": 12, + "offset": 232, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1881287968 + }, + "m_overallRating": { + "type": "unsigned int", + "id": 13, + "offset": 248, + "flags": 159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 462138631 + }, + "m_activeRating": { + "type": "unsigned int", + "id": 14, + "offset": 252, + "flags": 159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 234391118 + }, + "m_costToMorph": { + "type": "unsigned int", + "id": 15, + "offset": 256, + "flags": 65567, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1866472719 + }, + "m_rarity": { + "type": "unsigned int", + "id": 16, + "offset": 260, + "flags": 65567, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1111114664 + }, + "m_requiredXP": { + "type": "unsigned int", + "id": 17, + "offset": 120, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1890811574 + }, + "m_housingPetPrimaryColor": { + "type": "int", + "id": 18, + "offset": 276, + "flags": 65664, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 525135139 + }, + "m_housingPetPattern": { + "type": "int", + "id": 19, + "offset": 280, + "flags": 65664, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 165011646 + }, + "m_housingPetSecondaryColor": { + "type": "int", + "id": 20, + "offset": 284, + "flags": 65695, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 358656263 + }, + "m_housingPetOriginalGID": { + "type": "gid", + "id": 21, + "offset": 288, + "flags": 65664, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1259075879 + }, + "m_housingPetJewelTemplateID": { + "type": "unsigned int", + "id": 22, + "offset": 296, + "flags": 65664, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1836117651 + }, + "m_happiness": { + "type": "unsigned int", + "id": 23, + "offset": 300, + "flags": 65727, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1380970552 + }, + "m_maximumHappiness": { + "type": "unsigned int", + "id": 24, + "offset": 304, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 874954582 + } + } + }, + "414586652": { + "name": "class ClientPetAnimateActorCinematicAction", + "bases": [ + "PetAnimateActorCinematicAction", + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 414586652, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + }, + "m_animation": { + "type": "std::string", + "id": 2, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3431428731 + } + } + }, + "415861216": { + "name": "class EnergyGlobe", + "bases": [ + "StatGlobe", + "ControlSprite", + "Window", + "PropertyClass" + ], + "hash": 415861216, + "properties": { + "m_sName": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306437263 + }, + "m_Children": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621225959 + }, + "m_Style": { + "type": "unsigned int", + "id": 2, + "offset": 152, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "SCALE_CHILDREN": 2, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "FOCUS_LOCKED": 64, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152 + } + }, + "m_Flags": { + "type": "unsigned int", + "id": 3, + "offset": 156, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648, + "ONE_SHOT": 8388608, + "FLIPPED_HORIZONTAL": 16777216, + "FLIPPED_VERTICAL": 33554432 + } + }, + "m_Window": { + "type": "class Rect", + "id": 4, + "offset": 160, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3105139380 + }, + "m_fTargetAlpha": { + "type": "float", + "id": 5, + "offset": 212, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1809129834 + }, + "m_fDisabledAlpha": { + "type": "float", + "id": 6, + "offset": 216, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1389987675 + }, + "m_fAlpha": { + "type": "float", + "id": 7, + "offset": 208, + "flags": 65671, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 482130755 + }, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3623628394 + }, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2102211316 + }, + "m_sScript": { + "type": "std::string", + "id": 10, + "offset": 352, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1846695875 + }, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3389835433 + }, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547159940 + }, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513510520 + }, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3091503757 + }, + "m_pMaterial": { + "type": "class SharedPointer", + "id": 16, + "offset": 592, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3479277078 + }, + "m_fRotation": { + "type": "float", + "id": 17, + "offset": 608, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1175400173 + }, + "m_Color": { + "type": "class Color", + "id": 18, + "offset": 584, + "flags": 262279, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1753714077 + }, + "m_textColor": { + "type": "class Color", + "id": 19, + "offset": 612, + "flags": 262279, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2528109250 + }, + "m_textComponent": { + "type": "class TextComponent", + "id": 20, + "offset": 616, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3491704390 + }, + "m_amount": { + "type": "int", + "id": 21, + "offset": 800, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 248546638 + } + } + }, + "417450311": { + "name": "class SpellBookPrefsWindow", + "bases": [ + "Window", + "PropertyClass" + ], + "hash": 417450311, + "properties": { + "m_sName": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306437263 + }, + "m_Children": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621225959 + }, + "m_Style": { + "type": "unsigned int", + "id": 2, + "offset": 152, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "SCALE_CHILDREN": 2, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "FOCUS_LOCKED": 64, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152 + } + }, + "m_Flags": { + "type": "unsigned int", + "id": 3, + "offset": 156, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } + }, + "m_Window": { + "type": "class Rect", + "id": 4, + "offset": 160, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3105139380 + }, + "m_fTargetAlpha": { + "type": "float", + "id": 5, + "offset": 212, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1809129834 + }, + "m_fDisabledAlpha": { + "type": "float", + "id": 6, + "offset": 216, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1389987675 + }, + "m_fAlpha": { + "type": "float", + "id": 7, + "offset": 208, + "flags": 65671, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 482130755 + }, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3623628394 + }, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2102211316 + }, + "m_sScript": { + "type": "std::string", + "id": 10, + "offset": 352, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1846695875 + }, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3389835433 + }, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547159940 + }, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513510520 + }, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3091503757 + } + } + }, + "417390188": { + "name": "class SharedPointer", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 417390188, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_time": { + "type": "float", + "id": 1, + "offset": 112, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 310085638 + } + } + }, + "417450351": { + "name": "class SpellBookPrefsWindow*", + "bases": [ + "Window", + "PropertyClass" + ], + "hash": 417450351, + "properties": { + "m_sName": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306437263 + }, + "m_Children": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621225959 + }, + "m_Style": { + "type": "unsigned int", + "id": 2, + "offset": 152, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "SCALE_CHILDREN": 2, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "FOCUS_LOCKED": 64, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152 + } + }, + "m_Flags": { + "type": "unsigned int", + "id": 3, + "offset": 156, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } + }, + "m_Window": { + "type": "class Rect", + "id": 4, + "offset": 160, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3105139380 + }, + "m_fTargetAlpha": { + "type": "float", + "id": 5, + "offset": 212, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1809129834 + }, + "m_fDisabledAlpha": { + "type": "float", + "id": 6, + "offset": 216, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1389987675 + }, + "m_fAlpha": { + "type": "float", + "id": 7, + "offset": 208, + "flags": 65671, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 482130755 + }, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3623628394 + }, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2102211316 + }, + "m_sScript": { + "type": "std::string", + "id": 10, + "offset": 352, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1846695875 + }, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3389835433 + }, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547159940 + }, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513510520 + }, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3091503757 + } + } + }, + "417955841": { + "name": "class NewFriendsListWindow*", + "bases": [ + "Window", + "PropertyClass" + ], + "hash": 417955841, + "properties": { + "m_sName": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306437263 + }, + "m_Children": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621225959 + }, + "m_Style": { + "type": "unsigned int", + "id": 2, + "offset": 152, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "SCALE_CHILDREN": 2, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "FOCUS_LOCKED": 64, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152 + } + }, + "m_Flags": { + "type": "unsigned int", + "id": 3, + "offset": 156, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } + }, + "m_Window": { + "type": "class Rect", + "id": 4, + "offset": 160, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3105139380 + }, + "m_fTargetAlpha": { + "type": "float", + "id": 5, + "offset": 212, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1809129834 + }, + "m_fDisabledAlpha": { + "type": "float", + "id": 6, + "offset": 216, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1389987675 + }, + "m_fAlpha": { + "type": "float", + "id": 7, + "offset": 208, + "flags": 65671, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 482130755 + }, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3623628394 + }, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2102211316 + }, + "m_sScript": { + "type": "std::string", + "id": 10, + "offset": 352, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1846695875 + }, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3389835433 + }, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547159940 + }, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513510520 + }, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3091503757 + } + } + }, + "417820202": { + "name": "class ArenaPointsLootInfo*", + "bases": [ + "LootInfo", + "LootInfoBase", + "PropertyClass" + ], + "hash": 417820202, + "properties": { + "m_lootType": { + "type": "enum LootInfo::LOOT_TYPE", + "id": 0, + "offset": 72, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1591891442, + "enum_options": { + "LOOT_TYPE_NONE": 0, + "LOOT_TYPE_GOLD": 1, + "LOOT_TYPE_MANA": 2, + "LOOT_TYPE_ITEM": 3, + "LOOT_TYPE_TREASURE_CARD": 4, + "LOOT_TYPE_MAGIC_XP": 5, + "LOOT_TYPE_ADD_SPELL": 6, + "LOOT_TYPE_MAX_HEALTH": 7, + "LOOT_TYPE_MAX_GOLD": 8, + "LOOT_TYPE_MAX_MANA": 9, + "LOOT_TYPE_MAX_POTION": 10, + "LOOT_TYPE_TRAINING_POINTS": 11, + "LOOT_TYPE_RECIPE": 12, + "LOOT_TYPE_CRAFTING_SLOT": 13, + "LOOT_TYPE_REAGENT": 14, + "LOOT_TYPE_PETSNACK": 15, + "LOOT_TYPE_GARDENING_XP": 16, + "LOOT_TYPE_PET_XP": 17, + "LOOT_TYPE_TREASURE_TABLE": 18, + "LOOT_TYPE_ARENA_POINTS": 19, + "LOOT_TYPE_ARENA_BONUS_POINTS": 20, + "LOOT_TYPE_GROUP": 21, + "LOOT_TYPE_FISHING_XP": 22, + "LOOT_TYPE_EVENT_CURRENCY_1": 24, + "LOOT_TYPE_EVENT_CURRENCY_2": 25, + "LOOT_TYPE_PVP_CURRENCY": 26, + "LOOT_TYPE_PVP_CURRENCY_BONUS": 27, + "LOOT_TYPE_PVP_TOURNEY_CURRENCY": 28, + "LOOT_TYPE_PVP_TOURNEY_CURRENCY_BONUS": 29, + "LOOT_TYPE_FURNITURE_ESSENCE": 30 + } + }, + "m_arenaPointsAmount": { + "type": "int", + "id": 1, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2041106034 + } + } + }, + "418089412": { + "name": "class SharedPointer", + "bases": [ + "ObstacleCourseRevolvingDoorBehavior", + "ObstacleCourseObstacleBehavior", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 418089412, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + } + } + }, + "417955881": { + "name": "class NewFriendsListWindow", + "bases": [ + "Window", + "PropertyClass" + ], + "hash": 417955881, + "properties": { + "m_sName": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306437263 + }, + "m_Children": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621225959 + }, + "m_Style": { + "type": "unsigned int", + "id": 2, + "offset": 152, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "SCALE_CHILDREN": 2, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "FOCUS_LOCKED": 64, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152 + } + }, + "m_Flags": { + "type": "unsigned int", + "id": 3, + "offset": 156, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } + }, + "m_Window": { + "type": "class Rect", + "id": 4, + "offset": 160, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3105139380 + }, + "m_fTargetAlpha": { + "type": "float", + "id": 5, + "offset": 212, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1809129834 + }, + "m_fDisabledAlpha": { + "type": "float", + "id": 6, + "offset": 216, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1389987675 + }, + "m_fAlpha": { + "type": "float", + "id": 7, + "offset": 208, + "flags": 65671, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 482130755 + }, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3623628394 + }, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2102211316 + }, + "m_sScript": { + "type": "std::string", + "id": 10, + "offset": 352, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1846695875 + }, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3389835433 + }, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547159940 + }, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513510520 + }, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3091503757 + } + } + }, + "418408050": { + "name": "class SharedPointer", + "bases": [ + "StatisticEffectTemplate", + "GameEffectTemplate", + "PropertyClass" + ], + "hash": 418408050, + "properties": { + "m_effectName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2029161513 + }, + "m_effectCategory": { + "type": "std::string", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1852673222 + }, + "m_sortOrder": { + "type": "int", + "id": 2, + "offset": 148, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1411218206 + }, + "m_duration": { + "type": "double", + "id": 3, + "offset": 192, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2727932435 + }, + "m_stackingCategories": { + "type": "std::string", + "id": 4, + "offset": 160, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1774497525 + }, + "m_isPersistent": { + "type": "bool", + "id": 5, + "offset": 153, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 923861920 + }, + "m_bIsOnPet": { + "type": "bool", + "id": 6, + "offset": 154, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 522593303 + }, + "m_isPublic": { + "type": "bool", + "id": 7, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1728439822 + }, + "m_visualEffectAddName": { + "type": "std::string", + "id": 8, + "offset": 200, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3382086694 + }, + "m_visualEffectRemoveName": { + "type": "std::string", + "id": 9, + "offset": 232, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1541697323 + }, + "m_onAddFunctorName": { + "type": "std::string", + "id": 10, + "offset": 280, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1561843107 + }, + "m_onRemoveFunctorName": { + "type": "std::string", + "id": 11, + "offset": 312, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2559017864 + }, + "m_stackingRule": { + "type": "enum STACKING_RULE", + "id": 12, + "offset": 144, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 431568889, + "enum_options": { + "STACKING_ALLOWED": 0, + "STACKING_NOSTACK": 1, + "STACKING_REPLACE": 2 + } + }, + "m_scaleToLevel": { + "type": "int", + "id": 13, + "offset": 360, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2018266685 + }, + "m_scaleUp": { + "type": "bool", + "id": 14, + "offset": 364, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 975051008 + } + } + }, + "420802697": { + "name": "class SharedPointer", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 420802697, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + }, + "m_raidPortalTemplate": { + "type": "unsigned int", + "id": 1, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1948761787 + } + } + }, + "420276161": { + "name": "class SharedPointer", + "bases": [ + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 420276161, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + }, + "m_effect": { + "type": "std::string", + "id": 2, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1894145160 + }, + "m_idleOnly": { + "type": "bool", + "id": 3, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 612425235 + } + } + }, + "418937936": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 418937936, + "properties": { + "m_actor": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + }, + "m_stageToWaitFor": { + "type": "std::string", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2133449134 + } + } + }, + "420235402": { + "name": "class BracketTeam", + "bases": [ + "PropertyClass" + ], + "hash": 420235402, + "properties": { + "m_matchTeamGID": { + "type": "gid", + "id": 0, + "offset": 88, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 725139968 + }, + "m_matchTeam": { + "type": "class SharedPointer", + "id": 1, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1737359170 + }, + "m_points": { + "type": "unsigned int", + "id": 2, + "offset": 100, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1049128778 + }, + "m_matchResults": { + "type": "class SharedPointer", + "id": 3, + "offset": 112, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 615114630 + }, + "m_teamID": { + "type": "unsigned int", + "id": 4, + "offset": 128, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1193521089 + }, + "m_ranking": { + "type": "unsigned int", + "id": 5, + "offset": 132, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1977103383 + }, + "m_pendingResult": { + "type": "class SharedPointer", + "id": 6, + "offset": 176, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 599580139 + }, + "m_name": { + "type": "std::string", + "id": 7, + "offset": 144, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1717359772 + }, + "m_pointsAsOfTheLastCompletedRound": { + "type": "unsigned int", + "id": 8, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2267670253 + } + } + }, + "420377204": { + "name": "class BracketInfo", + "bases": [ + "PropertyClass" + ], + "hash": 420377204, + "properties": { + "m_bracketGID": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1674798632 + }, + "m_creatorActorGID": { + "type": "gid", + "id": 1, + "offset": 80, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1339404213 + }, + "m_creatorBracketGID": { + "type": "gid", + "id": 2, + "offset": 88, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1005482776 + }, + "m_teams": { + "type": "class SharedPointer", + "id": 3, + "offset": 184, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 981867512 + }, + "m_teamSize": { + "type": "unsigned int", + "id": 4, + "offset": 224, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2343388751 + }, + "m_actorList": { + "type": "class SharedPointer", + "id": 5, + "offset": 168, + "flags": 6, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 885135115 + }, + "m_currentRound": { + "type": "unsigned int", + "id": 6, + "offset": 144, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 861487416 + }, + "m_bracketState": { + "type": "unsigned int", + "id": 7, + "offset": 236, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 790945386 + }, + "m_matchNameID": { + "type": "unsigned int", + "id": 8, + "offset": 240, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1751361288 + }, + "m_roundStartsInSeconds": { + "type": "unsigned int", + "id": 9, + "offset": 232, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 346233980 + }, + "m_roundTimeSeconds": { + "type": "unsigned int", + "id": 10, + "offset": 228, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1964849971 + }, + "m_scheduleID": { + "type": "gid", + "id": 11, + "offset": 248, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1439120946 + }, + "m_visibleTimeSeconds": { + "type": "unsigned int", + "id": 12, + "offset": 272, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1245818841 + }, + "m_startTimeSec": { + "type": "int", + "id": 13, + "offset": 268, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1519392434 + }, + "m_registrationOpenTimeSeconds": { + "type": "unsigned int", + "id": 14, + "offset": 276, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2064854776 + }, + "m_tournamentPreparingTimeSeconds": { + "type": "unsigned int", + "id": 15, + "offset": 280, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1121720544 + }, + "m_roundBufferTimeSeconds": { + "type": "unsigned int", + "id": 16, + "offset": 284, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 671173677 + }, + "m_numberOfRounds": { + "type": "int", + "id": 17, + "offset": 148, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2081430579 + }, + "m_overrideTourneyName": { + "type": "std::string", + "id": 18, + "offset": 296, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2611946162 + }, + "m_firstTourneyNameSTKey": { + "type": "std::string", + "id": 19, + "offset": 328, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2731391050 + }, + "m_secondTourneyNameSTKey": { + "type": "std::string", + "id": 20, + "offset": 360, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1747016318 + }, + "m_subBracketIdx": { + "type": "int", + "id": 21, + "offset": 392, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1688562149 + }, + "m_scoreMultiplier": { + "type": "float", + "id": 22, + "offset": 396, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 545011290 + }, + "m_preferredNumberOfTeams": { + "type": "int", + "id": 23, + "offset": 264, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 475550641 + }, + "m_minTeams": { + "type": "int", + "id": 24, + "offset": 256, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1506283288 + }, + "m_maxTeams": { + "type": "int", + "id": 25, + "offset": 260, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 155828058 + }, + "m_specialEvent": { + "type": "bool", + "id": 26, + "offset": 416, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1211693398 + }, + "m_pvpDuelModifiers": { + "type": "std::string", + "id": 27, + "offset": 424, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1796488605 + }, + "m_pvpDuelModifierTemplates": { + "type": "class SharedPointer", + "id": 28, + "offset": 472, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2010454400 + }, + "m_pvpDuelModifiersBlob": { + "type": "std::string", + "id": 29, + "offset": 440, + "flags": 551, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2862516796 + }, + "m_premierPrizesStoreGIDsCSV": { + "type": "std::string", + "id": 30, + "offset": 488, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2521625388 + }, + "m_tournamentStyle": { + "type": "enum BracketInfo::EnumTournamentStyle", + "id": 31, + "offset": 288, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1530265666, + "enum_options": { + "SINGLE_ELIM": 1, + "SWISS": 0 + } + }, + "m_bracketRewardsList": { + "type": "class SharedPointer", + "id": 32, + "offset": 400, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 3842983067 + }, + "m_costPvPTourneyCurrency": { + "type": "int", + "id": 33, + "offset": 216, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1611997610 + }, + "m_subCostPvPTourneyCurrency": { + "type": "int", + "id": 34, + "offset": 220, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1871398932 + }, + "m_joinQueueRequirements": { + "type": "class SharedPointer", + "id": 35, + "offset": 96, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2746080983 + }, + "m_joinQueueRequirementsBlob": { + "type": "std::string", + "id": 36, + "offset": 112, + "flags": 551, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2615447859 + } + } + }, + "420376046": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 420376046, + "properties": { + "m_clientTags": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2319030025 + } + } + }, + "423154689": { + "name": "class SG_GameAction_PlayEffect*", + "bases": [ + "SG_GameAction", + "PropertyClass" + ], + "hash": 423154689, + "properties": { + "m_target": { + "type": "enum SG_GameAction::SG_Target", + "id": 0, + "offset": 72, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1166870973, + "enum_options": { + "Target_Ball": 0, + "Target_Self": 1, + "Target_Connections": 2, + "__DEFAULT": "Target_Ball" + } + }, + "m_graphicArguments": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1656480079 + }, + "m_fMinimumTime": { + "type": "float", + "id": 2, + "offset": 144, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1516804616 + }, + "m_bDisplaysScore": { + "type": "bool", + "id": 3, + "offset": 148, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 722455866 + }, + "m_bPlaysPointsSounds": { + "type": "bool", + "id": 4, + "offset": 149, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 717919607 + } + } + }, + "421562853": { + "name": "class GameEffectTimerDisplayBehaviorTemplate", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 421562853, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + }, + "m_effectName": { + "type": "std::string", + "id": 1, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2029161513 + }, + "m_textKey": { + "type": "std::string", + "id": 2, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1720060457 + }, + "m_height": { + "type": "float", + "id": 3, + "offset": 184, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 602977104 + }, + "m_zOffset": { + "type": "float", + "id": 4, + "offset": 188, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 736134072 + }, + "m_red": { + "type": "unsigned char", + "id": 5, + "offset": 192, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 904647115 + }, + "m_green": { + "type": "unsigned char", + "id": 6, + "offset": 193, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1433403873 + }, + "m_blue": { + "type": "unsigned char", + "id": 7, + "offset": 194, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 856840600 + }, + "m_triggers": { + "type": "class SharedPointer", + "id": 8, + "offset": 200, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 3290329276 + } + } + }, + "420999562": { + "name": "class HardwareStyle*", + "bases": [ + "PropertyClass" + ], + "hash": 420999562, + "properties": { + "m_cursorFile": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2831338361 + } + } + }, + "420865728": { + "name": "class SharedPointer", + "bases": [ + "CoreTemplate", + "PropertyClass" + ], + "hash": 420865728, + "properties": { + "m_behaviors": { + "type": "class BehaviorTemplate*", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1197808594 + }, + "m_tournamentName": { + "type": "std::string", + "id": 1, + "offset": 112, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3329241865 + }, + "m_allowedMatches": { + "type": "std::string", + "id": 2, + "offset": 152, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2083366952 + }, + "m_updateLadder": { + "type": "bool", + "id": 3, + "offset": 209, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1327828834 + }, + "m_useEloBehavior": { + "type": "bool", + "id": 4, + "offset": 210, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2113224016 + }, + "m_ladderTable": { + "type": "std::string", + "id": 5, + "offset": 216, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3225825807 + }, + "m_matchActor": { + "type": "class SharedPointer", + "id": 6, + "offset": 96, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1730081852 + }, + "m_bPremium": { + "type": "bool", + "id": 7, + "offset": 208, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 959881172 + }, + "m_defaultLadder": { + "type": "class SharedPointer", + "id": 8, + "offset": 248, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2425504995 + }, + "m_isBracketTournament": { + "type": "bool", + "id": 9, + "offset": 265, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1062809176 + }, + "m_persisted": { + "type": "bool", + "id": 10, + "offset": 266, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1002297414 + }, + "m_penalizeMatchDeclines": { + "type": "bool", + "id": 11, + "offset": 267, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 623338303 + }, + "m_hidePlayerInfo": { + "type": "bool", + "id": 12, + "offset": 268, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 665001286 + }, + "m_pvpDuelModifiers": { + "type": "std::string", + "id": 13, + "offset": 272, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1796488605 + } + } + }, + "420999567": { + "name": "class HardwareStyle", + "bases": [ + "PropertyClass" + ], + "hash": 420999567, + "properties": { + "m_cursorFile": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2831338361 + } + } + }, + "421973717": { + "name": "class CastleToursBehavior", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 421973717, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + } + } + }, + "422263029": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 422263029, + "properties": { + "m_partID": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 821435516 + }, + "m_pips": { + "type": "class SharedPointer", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1511196686 + }, + "m_acq": { + "type": "unsigned int", + "id": 2, + "offset": 96, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 478431554 + }, + "m_arch": { + "type": "unsigned int", + "id": 3, + "offset": 100, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 430613611 + }, + "m_archPoints": { + "type": "float", + "id": 4, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2151979634 + } + } + }, + "423929075": { + "name": "class SharedPointer", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 423929075, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + }, + "m_movementSpeed": { + "type": "float", + "id": 1, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 769135219 + } + } + }, + "423538800": { + "name": "class SharedPointer", + "bases": [ + "CoreTemplate", + "PropertyClass" + ], + "hash": 423538800, + "properties": { + "m_behaviors": { + "type": "class BehaviorTemplate*", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1197808594 + }, + "m_name": { + "type": "std::string", + "id": 1, + "offset": 96, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1717359772 + }, + "m_uid": { + "type": "unsigned int", + "id": 2, + "offset": 128, + "flags": 16777223, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 478453519 + }, + "m_filters": { + "type": "class SharedPointer", + "id": 3, + "offset": 136, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2539658755 + } + } + }, + "423509891": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 423509891, + "properties": {} + }, + "423827455": { + "name": "class std::list >", + "bases": [], + "hash": 423827455, + "properties": {} + }, + "424256581": { + "name": "class SharedPointer", + "bases": [ + "SG_GameAction", + "PropertyClass" + ], + "hash": 424256581, + "properties": { + "m_target": { + "type": "enum SG_GameAction::SG_Target", + "id": 0, + "offset": 72, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1166870973, + "enum_options": { + "Target_Ball": 0, + "Target_Self": 1, + "Target_Connections": 2, + "__DEFAULT": "Target_Ball" + } + }, + "m_impactInteraction": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3623009561 + }, + "m_fExplosionForceScalar": { + "type": "float", + "id": 2, + "offset": 116, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1506193859 + }, + "m_fExplosionRadiusScalar": { + "type": "float", + "id": 3, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 658772124 + } + } + }, + "427447797": { + "name": "class SharedPointer", + "bases": [ + "CoreTemplate", + "PropertyClass" + ], + "hash": 427447797, + "properties": { + "m_behaviors": { + "type": "class BehaviorTemplate*", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1197808594 + }, + "m_objectName": { + "type": "std::string", + "id": 1, + "offset": 96, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2154940147 + }, + "m_templateID": { + "type": "unsigned int", + "id": 2, + "offset": 128, + "flags": 16777223, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1286746870 + }, + "m_visualID": { + "type": "unsigned int", + "id": 3, + "offset": 132, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1118778894 + }, + "m_adjectiveList": { + "type": "std::string", + "id": 4, + "offset": 248, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 3195213318 + }, + "m_exemptFromAOI": { + "type": "bool", + "id": 5, + "offset": 240, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1457879059 + }, + "m_displayName": { + "type": "std::string", + "id": 6, + "offset": 168, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2446900370 + }, + "m_description": { + "type": "std::string", + "id": 7, + "offset": 136, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1649374815 + }, + "m_nObjectType": { + "type": "enum ObjectType", + "id": 8, + "offset": 200, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2118905880, + "enum_options": { + "OT_UNDEFINED": 0, + "OT_PLAYER": 1, + "OT_NPC": 2, + "OT_PROP": 3, + "OT_OBJECT": 4, + "OT_HOUSE": 5, + "OT_KEY": 6, + "OT_OLD_KEY": 7, + "OT_DEED": 8, + "OT_MAIL": 9, + "OT_RECIPE": 17, + "OT_EQUIP_HEAD": 10, + "OT_EQUIP_CHEST": 11, + "OT_EQUIP_LEGS": 12, + "OT_EQUIP_HANDS": 13, + "OT_EQUIP_FINGER": 14, + "OT_EQUIP_FEET": 15, + "OT_EQUIP_EAR": 16, + "OT_BUILDING_BLOCK": 18, + "OT_BUILDING_BLOCK_SOLID": 19, + "OT_GOLF": 20, + "OT_DOOR": 21, + "OT_PET": 22, + "OT_FABRIC": 23, + "OT_WINDOW": 24, + "OT_ROOF": 25, + "OT_HORSE": 26, + "OT_STRUCTURE": 27, + "OT_HOUSING_TEXTURE": 28, + "OT_PLANT": 29 + } + }, + "m_sIcon": { + "type": "std::string", + "id": 9, + "offset": 208, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306259831 + } + } + }, + "425263532": { + "name": "class GardenLevelControl", + "bases": [ + "Window", + "PropertyClass" + ], + "hash": 425263532, + "properties": { + "m_sName": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306437263 + }, + "m_Children": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 65667, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621225959 + }, + "m_Style": { + "type": "unsigned int", + "id": 2, + "offset": 152, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "SCALE_CHILDREN": 2, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "FOCUS_LOCKED": 64, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152 + } + }, + "m_Flags": { + "type": "unsigned int", + "id": 3, + "offset": 156, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } + }, + "m_Window": { + "type": "class Rect", + "id": 4, + "offset": 160, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3105139380 + }, + "m_fTargetAlpha": { + "type": "float", + "id": 5, + "offset": 212, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1809129834 + }, + "m_fDisabledAlpha": { + "type": "float", + "id": 6, + "offset": 216, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1389987675 + }, + "m_fAlpha": { + "type": "float", + "id": 7, + "offset": 208, + "flags": 65671, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 482130755 + }, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3623628394 + }, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2102211316 + }, + "m_sScript": { + "type": "std::string", + "id": 10, + "offset": 352, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1846695875 + }, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3389835433 + }, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547159940 + }, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513510520 + }, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3091503757 + } + } + }, + "424565367": { + "name": "class SharedPointer", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 424565367, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + }, + "m_sigilZoneInfoList": { + "type": "class SharedPointer", + "id": 1, + "offset": 120, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 3999162041 + }, + "m_usedDisposableDungeonTemplateID": { + "type": "unsigned int", + "id": 2, + "offset": 136, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 828840861 + } + } + }, + "424717417": { + "name": "class SharedPointer", + "bases": [ + "PvPMatchInfo", + "ArenaMatchInfo", + "PropertyClass" + ], + "hash": 424717417, + "properties": { + "m_matchID": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1757621298 + }, + "m_matchNameID": { + "type": "unsigned int", + "id": 1, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1751361288 + }, + "m_teams": { + "type": "class SharedPointer", + "id": 2, + "offset": 96, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1984373608 + }, + "m_matchName": { + "type": "std::string", + "id": 3, + "offset": 112, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2061215721 + }, + "m_matchTitle": { + "type": "std::string", + "id": 4, + "offset": 144, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2918442218 + }, + "m_matchZoneID": { + "type": "gid", + "id": 5, + "offset": 176, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2026205966 + }, + "m_creatorID": { + "type": "gid", + "id": 6, + "offset": 88, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1051766037 + }, + "m_matchZone": { + "type": "std::string", + "id": 7, + "offset": 184, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2061662244 + }, + "m_startTime": { + "type": "int", + "id": 8, + "offset": 216, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1386968823 + }, + "m_status": { + "type": "int", + "id": 9, + "offset": 220, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 960781182 + }, + "m_friendsOnly": { + "type": "bool", + "id": 10, + "offset": 236, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1420401792 + }, + "m_tournamentNameID": { + "type": "unsigned int", + "id": 11, + "offset": 224, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1799846440 + }, + "m_leagueID": { + "type": "unsigned int", + "id": 12, + "offset": 228, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 692361645 + }, + "m_seasonID": { + "type": "unsigned int", + "id": 13, + "offset": 232, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 535260643 + }, + "m_bUpdateLadder": { + "type": "bool", + "id": 14, + "offset": 248, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1937525956 + }, + "m_maxPointsPerMatch": { + "type": "unsigned int", + "id": 15, + "offset": 240, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1397040900 + }, + "m_estimatedWeight": { + "type": "float", + "id": 16, + "offset": 244, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1374360127 + }, + "m_maxELOError": { + "type": "int", + "id": 17, + "offset": 252, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 318998922 + }, + "m_uniqueMatchID": { + "type": "std::string", + "id": 18, + "offset": 264, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3291026220 + }, + "m_pvpDuelModifiersTemplates": { + "type": "class SharedPointer", + "id": 19, + "offset": 296, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1193155411 + }, + "m_teamSize": { + "type": "unsigned int", + "id": 20, + "offset": 256, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2343388751 + }, + "m_joinQueueRequirements": { + "type": "class SharedPointer", + "id": 21, + "offset": 312, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2746080983 + }, + "m_timeLimitSec": { + "type": "unsigned int", + "id": 22, + "offset": 328, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 312519798 + }, + "m_useHistoricDiego": { + "type": "bool", + "id": 23, + "offset": 352, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1688842509 + }, + "m_ignoredList": { + "type": "gid", + "id": 24, + "offset": 336, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1850924028 + }, + "m_matchTimer": { + "type": "float", + "id": 25, + "offset": 356, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1510935909 + }, + "m_bonusTime": { + "type": "int", + "id": 26, + "offset": 360, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1757496496 + }, + "m_passPenalty": { + "type": "int", + "id": 27, + "offset": 364, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 982951662 + }, + "m_yellowTime": { + "type": "int", + "id": 28, + "offset": 368, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1017028741 + }, + "m_redTime": { + "type": "int", + "id": 29, + "offset": 372, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1909556708 + }, + "m_minTurnTime": { + "type": "int", + "id": 30, + "offset": 376, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 652524886 + }, + "m_effects": { + "type": "class SharedPointer", + "id": 31, + "offset": 384, + "flags": 31, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 804962647 + }, + "m_updateBattlePassPoints": { + "type": "bool", + "id": 32, + "offset": 408, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 713306342 + }, + "m_battlePassWinPoints": { + "type": "int", + "id": 33, + "offset": 412, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1252337240 + }, + "m_battlePassLosePoints": { + "type": "int", + "id": 34, + "offset": 416, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1400839869 + }, + "m_numTeams": { + "type": "int", + "id": 35, + "offset": 424, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1601148004 + }, + "m_pointsForLosingByDefeat": { + "type": "int", + "id": 36, + "offset": 432, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 394154926 + }, + "m_pointsForWinningByDefeat": { + "type": "int", + "id": 37, + "offset": 436, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1202223548 + }, + "m_pointsForWinningByJudgement": { + "type": "int", + "id": 38, + "offset": 440, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1978958934 + }, + "m_pointsForLosingByJudgement": { + "type": "int", + "id": 39, + "offset": 444, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 690778376 + }, + "m_pointsForFleeingMatch": { + "type": "int", + "id": 40, + "offset": 448, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 679642949 + }, + "m_pointsForByeGame": { + "type": "int", + "id": 41, + "offset": 452, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 729567064 + }, + "m_scoreMultiplier": { + "type": "float", + "id": 42, + "offset": 428, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 545011290 + }, + "m_teamIDToBracketTeamIDList": { + "type": "class TeamGIDToBracketID", + "id": 43, + "offset": 456, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1980997052 + } + } + }, + "425925951": { + "name": "class SharedPointer", + "bases": [ + "CinematicAction", + "PropertyClass" + ], + "hash": 425925951, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_releaseInterpolationDuration": { + "type": "float", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1807754278, + "enum_options": { + "__DEFAULT": "1.0" + } + } + } + }, + "425837993": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 425837993, + "properties": { + "m_id": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2090569797 + }, + "m_name": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1717359772 + }, + "m_nodeIDs": { + "type": "gid", + "id": 2, + "offset": 112, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1430564382 + } + } + }, + "427079144": { + "name": "MadlibArgT", + "bases": [ + "MadlibArg", + "PropertyClass" + ], + "hash": 427079144, + "properties": { + "m_madlibToken": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3058682373 + }, + "m_madlibArgument": { + "type": "std::string", + "id": 1, + "offset": 112, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2376191783 + } + } + }, + "425936665": { + "name": "class AdventurePartyList", + "bases": [ + "PropertyClass" + ], + "hash": 425936665, + "properties": { + "m_adventurePartyList": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2274288621 + } + } + }, + "427400775": { + "name": "class CharacterElement*", + "bases": [ + "PropertyClass" + ], + "hash": 427400775, + "properties": { + "m_elementName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2195875046 + }, + "m_assetFilename": { + "type": "std::string", + "id": 1, + "offset": 104, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2116426332 + }, + "m_geometryName": { + "type": "std::string", + "id": 2, + "offset": 136, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1734031816 + }, + "m_materialName": { + "type": "std::string", + "id": 3, + "offset": 168, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1878140043 + }, + "m_flags": { + "type": "unsigned int", + "id": 4, + "offset": 200, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1005801050, + "enum_options": { + "EF_AVAILABLE_AT_CREATION": 1 + } + }, + "m_color": { + "type": "class Color", + "id": 5, + "offset": 204, + "flags": 262151, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1791663549 + }, + "m_id": { + "type": "unsigned short", + "id": 6, + "offset": 208, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2644168661 + } + } + }, + "1245144734": { + "name": "class SharedPointer", + "bases": [ + "InventoryPageWindow::InventoryItem", + "ControlCheckBox", + "ControlButton", + "Window", + "PropertyClass" + ], + "hash": 1245144734, + "properties": { + "m_sName": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306437263 + }, + "m_Children": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621225959 + }, + "m_Style": { + "type": "unsigned int", + "id": 2, + "offset": 152, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152, + "EFFECT_SCALE": 67108864, + "LOCK_ICON_SIZE": 33554432, + "LEFT_TEXT": 536870912, + "NO_FIT_TEXT": 1073741824, + "CHECKBOX_TEXTOVERIMAGE": 16777216 + } + }, + "m_Flags": { + "type": "unsigned int", + "id": 3, + "offset": 156, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } + }, + "m_Window": { + "type": "class Rect", + "id": 4, + "offset": 160, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3105139380 + }, + "m_fTargetAlpha": { + "type": "float", + "id": 5, + "offset": 212, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1809129834 + }, + "m_fDisabledAlpha": { + "type": "float", + "id": 6, + "offset": 216, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1389987675 + }, + "m_fAlpha": { + "type": "float", + "id": 7, + "offset": 208, + "flags": 65671, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 482130755 + }, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3623628394 + }, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2102211316 + }, + "m_sScript": { + "type": "std::string", + "id": 10, + "offset": 352, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1846695875 + }, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3389835433 + }, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547159940 + }, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513510520 + }, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3091503757 + }, + "m_bToggle": { + "type": "bool", + "id": 16, + "offset": 608, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2071810903 + }, + "m_bButtonDown": { + "type": "bool", + "id": 17, + "offset": 609, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 840041705 + }, + "m_sLabel": { + "type": "std::wstring", + "id": 18, + "offset": 616, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2207009163 + }, + "m_labelOffset": { + "type": "class Rect", + "id": 19, + "offset": 832, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1990646723 + }, + "m_pButton": { + "type": "class SharedPointer", + "id": 20, + "offset": 656, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1543855875 + }, + "m_HotKey": { + "type": "unsigned int", + "id": 21, + "offset": 672, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1631553409 + }, + "m_Color": { + "type": "class Color", + "id": 22, + "offset": 676, + "flags": 262279, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1753714077 + }, + "m_bCursorOver": { + "type": "bool", + "id": 23, + "offset": 689, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 283981103 + }, + "m_bAbortWhenCursorNotOver": { + "type": "bool", + "id": 24, + "offset": 706, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 325405258 + }, + "m_bHotKeyDown": { + "type": "bool", + "id": 25, + "offset": 680, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 616989185 + }, + "m_fTime": { + "type": "float", + "id": 26, + "offset": 684, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 883746156 + }, + "m_bGreyed": { + "type": "bool", + "id": 27, + "offset": 688, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1566556053 + }, + "m_fMaxScale": { + "type": "float", + "id": 28, + "offset": 692, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2070186635 + }, + "m_fScaleSpeed": { + "type": "float", + "id": 29, + "offset": 696, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1457135702 + }, + "m_bUseDropShadow": { + "type": "bool", + "id": 30, + "offset": 704, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 93063037 + }, + "m_bUseOutline": { + "type": "bool", + "id": 31, + "offset": 705, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 744292994 + }, + "m_pGreyedState": { + "type": "class SharedPointer", + "id": 32, + "offset": 768, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2703352263 + }, + "m_pNormalState": { + "type": "class SharedPointer", + "id": 33, + "offset": 752, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1887909808 + }, + "m_pHighlightedState": { + "type": "class SharedPointer", + "id": 34, + "offset": 784, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2200177608 + }, + "m_pSelectedState": { + "type": "class SharedPointer", + "id": 35, + "offset": 800, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2266776432 + }, + "m_pDepressedState": { + "type": "class SharedPointer", + "id": 36, + "offset": 816, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1878185798 + }, + "m_nGroupID": { + "type": "int", + "id": 37, + "offset": 880, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 403966850 + }, + "m_bChecked": { + "type": "bool", + "id": 38, + "offset": 884, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 958955100 + }, + "m_pCheckedState": { + "type": "class SharedPointer", + "id": 39, + "offset": 888, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1210539694 + }, + "m_pCheckedGreyedState": { + "type": "class SharedPointer", + "id": 40, + "offset": 904, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2702030126 + }, + "m_pCheckedHighlightedState": { + "type": "class SharedPointer", + "id": 41, + "offset": 920, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1320097679 + }, + "m_pCheckedDepressedState": { + "type": "class SharedPointer", + "id": 42, + "offset": 936, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1609188685 + }, + "m_pEquipNormalState": { + "type": "class SharedPointer", + "id": 43, + "offset": 976, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1322058516 + }, + "m_pEquipPressState": { + "type": "class SharedPointer", + "id": 44, + "offset": 992, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3019605144 + }, + "m_pEquipHighlightState": { + "type": "class SharedPointer", + "id": 45, + "offset": 1008, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2559056739 + }, + "m_pEquipCheckState": { + "type": "class SharedPointer", + "id": 46, + "offset": 1024, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2420681417 + }, + "m_pEquipCheckPressState": { + "type": "class SharedPointer", + "id": 47, + "offset": 1040, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2063281462 + }, + "m_pEquipCheckHighlightState": { + "type": "class SharedPointer", + "id": 48, + "offset": 1056, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2990990081 + } + } + }, + "1689163694": { + "name": "class GoalEntryFull", + "bases": [ + "GoalEntry", + "ServiceOptionBase", + "PropertyClass" + ], + "hash": 1689163694, + "properties": { + "m_serviceName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2206028813 + }, + "m_iconKey": { + "type": "std::string", + "id": 1, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2457138637 + }, + "m_displayKey": { + "type": "std::string", + "id": 2, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3023276954 + }, + "m_serviceIndex": { + "type": "unsigned int", + "id": 3, + "offset": 204, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2103126710 + }, + "m_forceInteract": { + "type": "bool", + "id": 4, + "offset": 200, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1705789564 + }, + "m_questID": { + "type": "gid", + "id": 5, + "offset": 216, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1246549335 + }, + "m_goalID": { + "type": "gid", + "id": 6, + "offset": 224, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 485200232 + }, + "m_goalTitle": { + "type": "std::string", + "id": 7, + "offset": 272, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2291910240 + }, + "m_questTitle": { + "type": "std::string", + "id": 8, + "offset": 240, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1805465583 + }, + "m_goalNameID": { + "type": "unsigned int", + "id": 9, + "offset": 232, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 403158846 + }, + "m_personaName": { + "type": "std::string", + "id": 10, + "offset": 312, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2514452244 + }, + "m_goalType": { + "type": "int", + "id": 11, + "offset": 344, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 24170047 + }, + "m_goalStatus": { + "type": "int", + "id": 12, + "offset": 348, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 409552449 + }, + "m_goalCount": { + "type": "int", + "id": 13, + "offset": 352, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 774266758 + }, + "m_goalTotal": { + "type": "int", + "id": 14, + "offset": 356, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 794425889 + }, + "m_useTally": { + "type": "bool", + "id": 15, + "offset": 364, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 683835718 + }, + "m_tallyText": { + "type": "std::string", + "id": 16, + "offset": 368, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3634775014 + }, + "m_tallyText2": { + "type": "std::string", + "id": 17, + "offset": 400, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3298880408 + }, + "m_goalLocation": { + "type": "std::string", + "id": 18, + "offset": 432, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3086892791 + }, + "m_goalDestinationZone": { + "type": "std::string", + "id": 19, + "offset": 464, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2141407900 + }, + "m_goalImage1": { + "type": "std::string", + "id": 20, + "offset": 496, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1507581938 + }, + "m_goalImage2": { + "type": "std::string", + "id": 21, + "offset": 528, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1507581939 + }, + "m_clientTags": { + "type": "std::string", + "id": 22, + "offset": 560, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2319030025 + }, + "m_goalMadlibs": { + "type": "class SharedPointer", + "id": 23, + "offset": 576, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1580392183 + } + } + }, + "1245088141": { + "name": "class SharedPointer", + "bases": [ + "Window", + "PropertyClass" + ], + "hash": 1245088141, + "properties": { + "m_sName": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306437263 + }, + "m_Children": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 65667, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621225959 + }, + "m_Style": { + "type": "unsigned int", + "id": 2, + "offset": 152, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "SCALE_CHILDREN": 2, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "FOCUS_LOCKED": 64, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152 + } + }, + "m_Flags": { + "type": "unsigned int", + "id": 3, + "offset": 156, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } + }, + "m_Window": { + "type": "class Rect", + "id": 4, + "offset": 160, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3105139380 + }, + "m_fTargetAlpha": { + "type": "float", + "id": 5, + "offset": 212, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1809129834 + }, + "m_fDisabledAlpha": { + "type": "float", + "id": 6, + "offset": 216, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1389987675 + }, + "m_fAlpha": { + "type": "float", + "id": 7, + "offset": 208, + "flags": 65671, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 482130755 + }, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3623628394 + }, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2102211316 + }, + "m_sScript": { + "type": "std::string", + "id": 10, + "offset": 352, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1846695875 + }, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3389835433 + }, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547159940 + }, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513510520 + }, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3091503757 + } + } + }, + "838671754": { + "name": "class SharedPointer", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 838671754, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + } + } + }, + "2122855648": { + "name": "class HangingEffectProtectionRemovedStageTemplate*", + "bases": [ + "CinematicStageTemplate", + "PropertyClass" + ], + "hash": 2122855648, + "properties": { + "m_name": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1717359772 + }, + "m_duration": { + "type": "float", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 920323453 + }, + "m_actions": { + "type": "class SharedPointer", + "id": 2, + "offset": 112, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1380578687 + }, + "m_stageRelationships": { + "type": "class SharedPointer", + "id": 3, + "offset": 128, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 499983354 + }, + "m_stopRotating": { + "type": "bool", + "id": 4, + "offset": 153, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 13587553 + }, + "m_startRotating": { + "type": "bool", + "id": 5, + "offset": 154, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 839204969 + }, + "m_startRotationTime": { + "type": "float", + "id": 6, + "offset": 156, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1011449124 + }, + "m_camRel": { + "type": "enum CameraCutCinematicAction::kCameraRelative", + "id": 7, + "offset": 164, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 919962138, + "enum_options": { + "kSigil": 1, + "kTarget": 2, + "kSource": 3, + "kActor": 4, + "__DEFAULT": "kTarget" + } + }, + "m_bSwitchCameraToWideLong": { + "type": "bool", + "id": 8, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2136912684, + "enum_options": { + "__DEFAULT": 1 + } + }, + "m_isCloaked": { + "type": "bool", + "id": 9, + "offset": 160, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1175302050 + } + } + }, + "838522035": { + "name": "class FXOverrideBehaviorInfo", + "bases": [ + "PropertyClass" + ], + "hash": 838522035, + "properties": { + "m_fxToReplace": { + "type": "std::string", + "id": 0, + "offset": 112, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2301964408 + }, + "m_fxReplaceWith": { + "type": "std::string", + "id": 1, + "offset": 144, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2445657937 + }, + "m_fxCastToReplace": { + "type": "std::string", + "id": 2, + "offset": 176, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2287885731 + }, + "m_fxCastReplaceWith": { + "type": "std::string", + "id": 3, + "offset": 208, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2146364220 + }, + "m_fxFidgetToReplace": { + "type": "std::string", + "id": 4, + "offset": 240, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3444964235 + }, + "m_fxFidgetReplaceWith": { + "type": "std::string", + "id": 5, + "offset": 272, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1631953700 + } + } + }, + "1689511673": { + "name": "class ReqInCombat*", + "bases": [ + "Requirement", + "PropertyClass" + ], + "hash": 1689511673, + "properties": { + "m_applyNOT": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1746328074, + "enum_options": { + "__DEFAULT": 0 + } + }, + "m_operator": { + "type": "enum Requirement::Operator", + "id": 1, + "offset": 76, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2672792317, + "enum_options": { + "ROP_AND": 0, + "ROP_OR": 1, + "__DEFAULT": "ROP_AND" + } + } + } + }, + "2122887031": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 2122887031, + "properties": { + "m_id": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2090569797 + }, + "m_name": { + "type": "std::string", + "id": 1, + "offset": 88, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1717359772 + } + } + }, + "1245165879": { + "name": "class ClientToggleInterfaceControlCinematicAction*", + "bases": [ + "ToggleInterfaceControlCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 1245165879, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_maximumDurationInSeconds": { + "type": "float", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1457214913 + }, + "m_hideUI": { + "type": "bool", + "id": 2, + "offset": 84, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 519818283 + }, + "m_stopMovement": { + "type": "bool", + "id": 3, + "offset": 85, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1752496036 + } + } + }, + "16528759": { + "name": "class SharedPointer", + "bases": [ + "PlaySoundCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 16528759, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_sound": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 131079, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2307644996 + }, + "m_useClientLocation": { + "type": "bool", + "id": 2, + "offset": 100, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 98585784 + }, + "m_soundType": { + "type": "enum PlaySoundCinematicAction::SoundType", + "id": 3, + "offset": 96, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 868075053, + "enum_options": { + "kSigil": 0, + "kGotHit": 1, + "kDeath": 2, + "kChatter": 4, + "__DEFAULT": "kSigil" + } + }, + "m_streamSound": { + "type": "bool", + "id": 4, + "offset": 101, + "flags": 263, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1693179368 + }, + "m_playMusic": { + "type": "bool", + "id": 5, + "offset": 102, + "flags": 263, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 552729674 + }, + "m_fadeDuration": { + "type": "float", + "id": 6, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1402536557 + } + } + }, + "839746838": { + "name": "class ClientRemoveAuraCinematicAction", + "bases": [ + "RemoveAuraCinematicAction", + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 839746838, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + } + } + }, + "1691270134": { + "name": "class PetStat*", + "bases": [ + "PropertyClass" + ], + "hash": 1691270134, + "properties": { + "m_name": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1717359772 + }, + "m_statID": { + "type": "unsigned int", + "id": 1, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1172182134 + }, + "m_value": { + "type": "int", + "id": 2, + "offset": 108, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 812990455 + } + } + }, + "1252946711": { + "name": "class AlchemyStationOption", + "bases": [ + "ServiceOptionBase", + "PropertyClass" + ], + "hash": 1252946711, + "properties": { + "m_serviceName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2206028813 + }, + "m_iconKey": { + "type": "std::string", + "id": 1, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2457138637 + }, + "m_displayKey": { + "type": "std::string", + "id": 2, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3023276954 + }, + "m_serviceIndex": { + "type": "unsigned int", + "id": 3, + "offset": 204, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2103126710 + }, + "m_forceInteract": { + "type": "bool", + "id": 4, + "offset": 200, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1705789564 + } + } + }, + "2127884354": { + "name": "class RevealHangingCinematicStageTemplate*", + "bases": [ + "CinematicStageTemplate", + "PropertyClass" + ], + "hash": 2127884354, + "properties": { + "m_name": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1717359772 + }, + "m_duration": { + "type": "float", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 920323453 + }, + "m_actions": { + "type": "class SharedPointer", + "id": 2, + "offset": 112, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1380578687 + }, + "m_stageRelationships": { + "type": "class SharedPointer", + "id": 3, + "offset": 128, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 499983354 + }, + "m_stopRotating": { + "type": "bool", + "id": 4, + "offset": 153, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 13587553 + }, + "m_startRotating": { + "type": "bool", + "id": 5, + "offset": 154, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 839204969 + }, + "m_revealText": { + "type": "std::string", + "id": 6, + "offset": 160, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2011500383 + }, + "m_bSwitchCameraToWideLong": { + "type": "bool", + "id": 7, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2136912684, + "enum_options": { + "__DEFAULT": 1 + } + } + } + }, + "1691270114": { + "name": "class PetStat", + "bases": [ + "PropertyClass" + ], + "hash": 1691270114, + "properties": { + "m_name": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1717359772 + }, + "m_statID": { + "type": "unsigned int", + "id": 1, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1172182134 + }, + "m_value": { + "type": "int", + "id": 2, + "offset": 108, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 812990455 + } + } + }, + "2125246348": { + "name": "class ClientPlayComplexSoundCinematicAction", + "bases": [ + "PlayComplexSoundCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 2125246348, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_cinematicSoundEmitterInfo": { + "type": "class SharedPointer", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2303770088 + } + } + }, + "1247650116": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1247650116, + "properties": { + "m_name": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1717359772 + }, + "m_source": { + "type": "std::string", + "id": 1, + "offset": 104, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2453267148 + } + } + }, + "840039251": { + "name": "class SharedPointer", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 840039251, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_spellIDList": { + "type": "class SharedPointer", + "id": 1, + "offset": 128, + "flags": 27, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 3635357151 + } + } + }, + "1690400663": { + "name": "class AvatarItemInfoBase*", + "bases": [ + "PropertyClass" + ], + "hash": 1690400663, + "properties": {} + }, + "2124526016": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 2124526016, + "properties": { + "m_promoGifts": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 885904406 + } + } + }, + "1246183594": { + "name": "class LootInfoBase", + "bases": [ + "PropertyClass" + ], + "hash": 1246183594, + "properties": {} + }, + "2124030039": { + "name": "class SharedPointer", + "bases": [ + "CantripsInvisibilityEffectTemplate", + "GameEffectTemplate", + "PropertyClass" + ], + "hash": 2124030039, + "properties": { + "m_effectName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2029161513 + }, + "m_effectCategory": { + "type": "std::string", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1852673222 + }, + "m_sortOrder": { + "type": "int", + "id": 2, + "offset": 148, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1411218206 + }, + "m_duration": { + "type": "double", + "id": 3, + "offset": 192, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2727932435 + }, + "m_stackingCategories": { + "type": "std::string", + "id": 4, + "offset": 160, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1774497525 + }, + "m_isPersistent": { + "type": "bool", + "id": 5, + "offset": 153, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 923861920 + }, + "m_bIsOnPet": { + "type": "bool", + "id": 6, + "offset": 154, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 522593303 + }, + "m_isPublic": { + "type": "bool", + "id": 7, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1728439822 + }, + "m_visualEffectAddName": { + "type": "std::string", + "id": 8, + "offset": 200, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3382086694 + }, + "m_visualEffectRemoveName": { + "type": "std::string", + "id": 9, + "offset": 232, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1541697323 + }, + "m_onAddFunctorName": { + "type": "std::string", + "id": 10, + "offset": 280, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1561843107 + }, + "m_onRemoveFunctorName": { + "type": "std::string", + "id": 11, + "offset": 312, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2559017864 + }, + "m_stackingRule": { + "type": "enum STACKING_RULE", + "id": 12, + "offset": 144, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 431568889, + "enum_options": { + "STACKING_ALLOWED": 0, + "STACKING_NOSTACK": 1, + "STACKING_REPLACE": 2 + } + } + } + }, + "1246147275": { + "name": "class ClientStopBacklashRotationEffectCinematicAction", + "bases": [ + "StopBacklashRotationEffectCinematicAction", + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 1246147275, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + } + } + }, + "842258452": { + "name": "class SharedPointer", + "bases": [ + "ServiceOptionBase", + "PropertyClass" + ], + "hash": 842258452, + "properties": { + "m_serviceName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2206028813 + }, + "m_iconKey": { + "type": "std::string", + "id": 1, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2457138637 + }, + "m_displayKey": { + "type": "std::string", + "id": 2, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3023276954 + }, + "m_serviceIndex": { + "type": "unsigned int", + "id": 3, + "offset": 204, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2103126710 + }, + "m_forceInteract": { + "type": "bool", + "id": 4, + "offset": 200, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1705789564 + } + } + }, + "841980542": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 841980542, + "properties": { + "m_uTemplateID": { + "type": "unsigned int", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1943544747 + }, + "m_nFoodGroup": { + "type": "int", + "id": 1, + "offset": 76, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 63971517 + }, + "m_fFallSpeed": { + "type": "float", + "id": 2, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 701808397 + }, + "m_nFullnessPoints": { + "type": "int", + "id": 3, + "offset": 84, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1015203857 + }, + "m_nTimeBonusInSeconds": { + "type": "int", + "id": 4, + "offset": 88, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1007283620 + }, + "m_nSpeedBonusInSeconds": { + "type": "int", + "id": 5, + "offset": 92, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 429640550 + }, + "m_nFreezeTimerInSeconds": { + "type": "int", + "id": 6, + "offset": 96, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1703451440 + }, + "m_fDropWeight": { + "type": "float", + "id": 7, + "offset": 100, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1839368282 + }, + "m_fWeightChange": { + "type": "float", + "id": 8, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 122664907 + }, + "m_sCollectSound": { + "type": "std::string", + "id": 9, + "offset": 112, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2812716637 + }, + "m_sCollectFX": { + "type": "std::string", + "id": 10, + "offset": 144, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3248880594 + } + } + }, + "1692046554": { + "name": "class std::list >", + "bases": [], + "hash": 1692046554, + "properties": {} + }, + "2124567415": { + "name": "class TeamHelpWorldInfo*", + "bases": [ + "PropertyClass" + ], + "hash": 2124567415, + "properties": { + "m_buttonName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3388080120 + }, + "m_buttonStringKey": { + "type": "std::string", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3226477495 + }, + "m_displayIndex": { + "type": "int", + "id": 2, + "offset": 136, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1250551048 + }, + "m_minimumLevel": { + "type": "int", + "id": 3, + "offset": 140, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 327062478 + }, + "m_registryEntry": { + "type": "std::string", + "id": 4, + "offset": 144, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3056380390 + }, + "m_worldPath": { + "type": "std::string", + "id": 5, + "offset": 176, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1846829584 + }, + "m_spiralShowcaseStringKey": { + "type": "std::string", + "id": 6, + "offset": 208, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2723709283 + } + } + }, + "1246935116": { + "name": "enum PetDerbyLaneSwitch", + "bases": [], + "hash": 1246935116, + "properties": {} + }, + "9759260": { + "name": "class AvatarTextureOption", + "bases": [ + "AvatarOptionBase", + "PropertyClass" + ], + "hash": 9759260, + "properties": { + "m_conditionFlags": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2483653903 + }, + "m_materialName": { + "type": "std::string", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1878140043 + }, + "m_textures": { + "type": "std::string", + "id": 2, + "offset": 136, + "flags": 131079, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2391848735 + }, + "m_decals": { + "type": "std::string", + "id": 3, + "offset": 160, + "flags": 131079, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1853711975 + }, + "m_decals2": { + "type": "std::string", + "id": 4, + "offset": 184, + "flags": 131079, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2505858617 + }, + "m_tintColors": { + "type": "class Vector3D", + "id": 5, + "offset": 208, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 3059416083 + }, + "m_tintColorNames": { + "type": "std::string", + "id": 6, + "offset": 232, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1803799469 + }, + "m_useTintColor": { + "type": "bool", + "id": 7, + "offset": 256, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1646372318 + } + } + }, + "1691629752": { + "name": "class SharedPointer", + "bases": [ + "SpellEffect", + "PropertyClass" + ], + "hash": 1691629752, + "properties": { + "m_effectType": { + "type": "enum SpellEffect::kSpellEffects", + "id": 0, + "offset": 72, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2578255295, + "enum_options": { + "kInvalidSpellEffect": 0, + "kDamage": 1, + "kDamageNoCrit": 2, + "kHeal": 3, + "kHealPercent": 4, + "kSetHealPercent": 113, + "kStealHealth": 5, + "kReduceOverTime": 6, + "kDetonateOverTime": 7, + "kPushCharm": 8, + "kStealCharm": 9, + "kPushWard": 10, + "kStealWard": 11, + "kPushOverTime": 12, + "kStealOverTime": 13, + "kRemoveCharm": 14, + "kRemoveWard": 15, + "kRemoveOverTime": 16, + "kRemoveAura": 17, + "kSwapAll": 18, + "kSwapCharm": 19, + "kSwapWard": 20, + "kSwapOverTime": 21, + "kModifyIncomingDamage": 22, + "kModifyIncomingDamageFlat": 119, + "kMaximumIncomingDamage": 23, + "kModifyIncomingHeal": 24, + "kModifyIncomingHealFlat": 118, + "kModifyIncomingDamageType": 25, + "kModifyIncomingArmorPiercing": 26, + "kModifyOutgoingDamage": 27, + "kModifyOutgoingDamageFlat": 121, + "kModifyOutgoingHeal": 28, + "kModifyOutgoingHealFlat": 120, + "kModifyOutgoingDamageType": 29, + "kModifyOutgoingArmorPiercing": 30, + "kModifyOutgoingStealHealth": 31, + "kModifyIncomingStealHealth": 32, + "kBounceNext": 33, + "kBouncePrevious": 34, + "kBounceBack": 35, + "kBounceAll": 36, + "kAbsorbDamage": 37, + "kAbsorbHeal": 38, + "kModifyAccuracy": 39, + "kDispel": 40, + "kConfusion": 41, + "kCloakedCharm": 42, + "kCloakedWard": 43, + "kStunResist": 44, + "kClue": 111, + "kPipConversion": 45, + "kCritBoost": 46, + "kCritBlock": 47, + "kPolymorph": 48, + "kDelayCast": 49, + "kModifyCardCloak": 50, + "kModifyCardDamage": 51, + "kModifyCardAccuracy": 53, + "kModifyCardMutation": 54, + "kModifyCardRank": 55, + "kModifyCardArmorPiercing": 56, + "kSummonCreature": 65, + "kTeleportPlayer": 66, + "kStun": 67, + "kDampen": 68, + "kReshuffle": 69, + "kMindControl": 70, + "kModifyPips": 71, + "kModifyPowerPips": 72, + "kModifyShadowPips": 73, + "kModifyHate": 74, + "kDamageOverTime": 75, + "kHealOverTime": 76, + "kModifyPowerPipChance": 77, + "kModifyRank": 78, + "kStunBlock": 79, + "kRevealCloak": 80, + "kInstantKill": 81, + "kAfterlife": 82, + "kDeferredDamage": 83, + "kDamagePerTotalPipPower": 84, + "kModifyCardHeal": 52, + "kModifyCardCharm": 57, + "kModifyCardWard": 58, + "kModifyCardOutgoingDamage": 59, + "kModifyCardOutgoingAccuracy": 60, + "kModifyCardOutgoingHeal": 61, + "kModifyCardOutgoingArmorPiercing": 62, + "kModifyCardIncomingDamage": 63, + "kModifyCardAbsorbDamage": 64, + "kCloakedWardNoRemove": 86, + "kAddCombatTriggerList": 87, + "kRemoveCombatTriggerList": 88, + "kBacklashDamage": 89, + "kModifyBacklash": 90, + "kIntercept": 91, + "kShadowSelf": 92, + "kShadowCreature": 93, + "kModifyShadowCreatureLevel": 94, + "kSelectShadowCreatureAttackTarget": 95, + "kShadowDecrementTurn": 96, + "kCritBoostSchoolSpecific": 97, + "kSpawnCreature": 98, + "kUnPolymorph": 99, + "kPowerPipConversion": 100, + "kProtectCardBeneficial": 101, + "kProtectCardHarmful": 102, + "kProtectBeneficial": 103, + "kProtectHarmful": 104, + "kDivideDamage": 105, + "kCollectEssence": 106, + "kKillCreature": 107, + "kDispelBlock": 108, + "kConfusionBlock": 109, + "kModifyPipRoundRate": 110, + "kMaxHealthDamage": 112, + "kUntargetable": 114, + "kMakeTargetable": 115, + "kForceTargetable": 116, + "kRemoveStunBlock": 117, + "kExitCombat": 122, + "kSuspendPips": 123, + "kResumePips": 124, + "kAutoPass": 125, + "kStopAutoPass": 126, + "kVanish": 127, + "kStopVanish": 128, + "kMaxHealthHeal": 129, + "kHealByWard": 130, + "kTaunt": 131, + "kPacify": 132, + "kRemoveTargetRestriction": 133, + "kConvertHangingEffect": 134, + "kAddSpellToDeck": 135, + "kAddSpellToHand": 136, + "kModifyIncomingDamageOverTime": 137, + "kModifyIncomingHealOverTime": 138, + "kModifyCardDamagebyRank": 139, + "kPushConvertedCharm": 140, + "kStealConvertedCharm": 141, + "kPushConvertedWard": 142, + "kStealConvertedWard": 143, + "kPushConvertedOverTime": 144, + "kStealConvertedOverTime": 145, + "kRemoveConvertedCharm": 146, + "kRemoveConvertedWard": 147, + "kRemoveConvertedOverTime": 148, + "kModifyOverTimeDuration": 149, + "kModifySchoolPips": 150 + } + }, + "m_effectParam": { + "type": "int", + "id": 1, + "offset": 76, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 357920024 + }, + "m_disposition": { + "type": "enum SpellEffect::kHangingDisposition", + "id": 2, + "offset": 80, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1904841031, + "enum_options": { + "kBoth": 0, + "kBeneficial": 1, + "kHarmful": 2 + } + }, + "m_sDamageType": { + "type": "std::string", + "id": 3, + "offset": 88, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2501054223 + }, + "m_damageType": { + "type": "unsigned int", + "id": 4, + "offset": 84, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 737882766 + }, + "m_pipNum": { + "type": "int", + "id": 5, + "offset": 128, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 830827539 + }, + "m_actNum": { + "type": "int", + "id": 6, + "offset": 132, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 236824866 + }, + "m_effectTarget": { + "type": "enum SpellEffect::kEffectTarget", + "id": 7, + "offset": 140, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2458940523, + "enum_options": { + "kInvalidTarget": 0, + "kSpell": 1, + "kSpecificSpells": 2, + "kGlobal": 3, + "kEnemyTeam": 4, + "kEnemyTeamAllAtOnce": 5, + "kFriendlyTeam": 6, + "kFriendlyTeamAllAtOnce": 7, + "kEnemySingle": 8, + "kFriendlySingle": 9, + "kMinion": 10, + "kFriendlyMinion": 17, + "kEnemyMinion": 18, + "kSelf": 11, + "kAtLeastOneEnemy": 13, + "kPreselectedEnemySingle": 12, + "kMultiTargetEnemy": 14, + "kMultiTargetFriendly": 15, + "kFriendlySingleNotMe": 16 + } + }, + "m_numRounds": { + "type": "int", + "id": 8, + "offset": 144, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1229753829 + }, + "m_paramPerRound": { + "type": "int", + "id": 9, + "offset": 148, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 683234234 + }, + "m_healModifier": { + "type": "float", + "id": 10, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1317921248, + "enum_options": { + "__DEFAULT": "1.0" + } + }, + "m_spellTemplateID": { + "type": "unsigned int", + "id": 11, + "offset": 120, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 585567702 + }, + "m_enchantmentSpellTemplateID": { + "type": "unsigned int", + "id": 12, + "offset": 124, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 246955115 + }, + "m_act": { + "type": "bool", + "id": 13, + "offset": 136, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 269510283 + }, + "m_cloaked": { + "type": "bool", + "id": 14, + "offset": 157, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 7349510 + }, + "m_bypassProtection": { + "type": "bool", + "id": 15, + "offset": 159, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1657138252 + }, + "m_armorPiercingParam": { + "type": "int", + "id": 16, + "offset": 160, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2025530205 + }, + "m_chancePerTarget": { + "type": "int", + "id": 17, + "offset": 164, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 845426794 + }, + "m_protected": { + "type": "bool", + "id": 18, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1445655037 + }, + "m_converted": { + "type": "bool", + "id": 19, + "offset": 169, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1590428797 + }, + "m_rank": { + "type": "int", + "id": 20, + "offset": 208, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 219803942 + }, + "m_elements": { + "type": "class SharedPointer", + "id": 21, + "offset": 224, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2647383318 + } + } + }, + "9491829": { + "name": "class SharedPointer", + "bases": [ + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 9491829, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + }, + "m_newNamePattern": { + "type": "std::string", + "id": 2, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1519245892 + }, + "m_bActOnlyOnFirstActor": { + "type": "bool", + "id": 3, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2050856077 + } + } + }, + "1246439792": { + "name": "class WizCinematicActorTemplate", + "bases": [ + "CinematicActorTemplate", + "CinematicDefTemplate", + "CoreTemplate", + "PropertyClass" + ], + "hash": 1246439792, + "properties": { + "m_behaviors": { + "type": "class BehaviorTemplate*", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1197808594 + }, + "m_nifFile": { + "type": "std::string", + "id": 1, + "offset": 136, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2694762008 + }, + "m_delay": { + "type": "double", + "id": 2, + "offset": 168, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2689597116 + }, + "m_cinematicName": { + "type": "std::string", + "id": 3, + "offset": 96, + "flags": 134217735, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2611527497 + }, + "m_completeEvents": { + "type": "class CinematicEventInfo*", + "id": 4, + "offset": 272, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2945338320 + }, + "m_stateChangeEvents": { + "type": "class CinematicEventInfo*", + "id": 5, + "offset": 304, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1874505374 + }, + "m_stateInteractions": { + "type": "class CinematicInteractInfo*", + "id": 6, + "offset": 336, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1949887389 + }, + "m_targetGameState": { + "type": "std::string", + "id": 7, + "offset": 176, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3607550909 + }, + "m_actorStateSet": { + "type": "std::string", + "id": 8, + "offset": 208, + "flags": 268435463, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1765258049, + "enum_options": { + "__BASECLASS": "ObjStateSet" + } + }, + "m_rootAsset": { + "type": "std::string", + "id": 9, + "offset": 240, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3506101791 + }, + "m_dialogList": { + "type": "class ActorDialogList*", + "id": 10, + "offset": 368, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2035504282 + } + } + }, + "2125074400": { + "name": "class SharedPointer", + "bases": [ + "Requirement", + "PropertyClass" + ], + "hash": 2125074400, + "properties": { + "m_applyNOT": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1746328074, + "enum_options": { + "__DEFAULT": 0 + } + }, + "m_operator": { + "type": "enum Requirement::Operator", + "id": 1, + "offset": 76, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2672792317, + "enum_options": { + "ROP_AND": 0, + "ROP_OR": 1, + "__DEFAULT": "ROP_AND" + } + }, + "m_questName": { + "type": "std::string", + "id": 2, + "offset": 80, + "flags": 268435463, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1702112846, + "enum_options": { + "__BASECLASS": "QuestTemplate" + } + }, + "m_goalName": { + "type": "std::string", + "id": 3, + "offset": 112, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1521627807 + }, + "m_requiredStatus": { + "type": "enum GoalStatusRequirement", + "id": 4, + "offset": 144, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1705123608, + "enum_options": { + "DontCare": 0, + "Complete": 1, + "Incomplete": 2, + "__DEFAULT": "DontCare" + } + } + } + }, + "9764221": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 9764221, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + } + } + }, + "842804252": { + "name": "class PlanningTimerControl*", + "bases": [ + "Window", + "PropertyClass" + ], + "hash": 842804252, + "properties": { + "m_sName": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306437263 + }, + "m_Children": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621225959 + }, + "m_Style": { + "type": "unsigned int", + "id": 2, + "offset": 152, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "SCALE_CHILDREN": 2, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "FOCUS_LOCKED": 64, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152 + } + }, + "m_Flags": { + "type": "unsigned int", + "id": 3, + "offset": 156, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } + }, + "m_Window": { + "type": "class Rect", + "id": 4, + "offset": 160, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3105139380 + }, + "m_fTargetAlpha": { + "type": "float", + "id": 5, + "offset": 212, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1809129834 + }, + "m_fDisabledAlpha": { + "type": "float", + "id": 6, + "offset": 216, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1389987675 + }, + "m_fAlpha": { + "type": "float", + "id": 7, + "offset": 208, + "flags": 65671, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 482130755 + }, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3623628394 + }, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2102211316 + }, + "m_sScript": { + "type": "std::string", + "id": 10, + "offset": 352, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1846695875 + }, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3389835433 + }, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547159940 + }, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513510520 + }, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3091503757 + }, + "m_alertSeconds": { + "type": "int", + "id": 16, + "offset": 588, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2008693409 + } + } + }, + "10451313": { + "name": "class BadgeLeaderboardOption", + "bases": [ + "ServiceOptionBase", + "PropertyClass" + ], + "hash": 10451313, + "properties": { + "m_serviceName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2206028813 + }, + "m_iconKey": { + "type": "std::string", + "id": 1, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2457138637 + }, + "m_displayKey": { + "type": "std::string", + "id": 2, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3023276954 + }, + "m_serviceIndex": { + "type": "unsigned int", + "id": 3, + "offset": 204, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2103126710 + }, + "m_forceInteract": { + "type": "bool", + "id": 4, + "offset": 200, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1705789564 + } + } + }, + "1247014574": { + "name": "class SharedPointer", + "bases": [], + "hash": 1247014574, + "properties": {} + }, + "1700069593": { + "name": "class SpellCardAttachmentCinematicAction*", + "bases": [ + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 1700069593, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + }, + "m_nodeName": { + "type": "std::string", + "id": 2, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3607089954 + }, + "m_offset": { + "type": "class Vector3D", + "id": 3, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2445636425 + }, + "m_rotation": { + "type": "class Vector3D", + "id": 4, + "offset": 164, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3065089042 + } + } + }, + "2126829138": { + "name": "class HousingSigilManager*", + "bases": [ + "PropertyClass" + ], + "hash": 2126829138, + "properties": {} + }, + "848650733": { + "name": "class ClientSpawnActorCinematicAction*", + "bases": [ + "SpawnActorCinematicAction", + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 848650733, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + }, + "m_objectInfo": { + "type": "class CoreObjectInfo*", + "id": 2, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1373700953 + }, + "m_bStartHidden": { + "type": "bool", + "id": 3, + "offset": 128, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1939845615 + } + } + }, + "1696459775": { + "name": "class SharedPointer", + "bases": [ + "CameraCutCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 1696459775, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_cameras": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 131079, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 3217341687 + }, + "m_altcameras": { + "type": "std::string", + "id": 2, + "offset": 104, + "flags": 131079, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1882980152 + }, + "m_initialCameraName": { + "type": "std::string", + "id": 3, + "offset": 128, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2526319343 + }, + "m_camRel": { + "type": "enum CameraCutCinematicAction::kCameraRelative", + "id": 4, + "offset": 168, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 919962138, + "enum_options": { + "kNone": 0, + "kSigil": 1, + "kTarget": 2, + "kSource": 3, + "kActor": 4 + } + }, + "m_interpolationDuration": { + "type": "float", + "id": 5, + "offset": 160, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1458058437 + }, + "m_releaseInterpolationDuration": { + "type": "float", + "id": 6, + "offset": 164, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1807754278, + "enum_options": { + "__DEFAULT": "1.0" + } + }, + "m_bUseOrientationOverride": { + "type": "bool", + "id": 7, + "offset": 188, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1088002894 + }, + "m_overrideOrientation": { + "type": "class Vector3D", + "id": 8, + "offset": 192, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3267199758 + }, + "m_bUseLocationOverride": { + "type": "bool", + "id": 9, + "offset": 172, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1767170875 + }, + "m_overrideLocation": { + "type": "class Vector3D", + "id": 10, + "offset": 176, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3776417691 + }, + "m_namedActor": { + "type": "std::string", + "id": 11, + "offset": 208, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3413532537 + }, + "m_camScale": { + "type": "float", + "id": 12, + "offset": 240, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 979098224 + } + } + }, + "2125408961": { + "name": "class SharedPointer", + "bases": [ + "Window", + "PropertyClass" + ], + "hash": 2125408961, + "properties": { + "m_sName": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306437263 + }, + "m_Children": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621225959 + }, + "m_Style": { + "type": "unsigned int", + "id": 2, + "offset": 152, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152, + "CBF_SORTED": 16777216 + } + }, + "m_Flags": { + "type": "unsigned int", + "id": 3, + "offset": 156, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } + }, + "m_Window": { + "type": "class Rect", + "id": 4, + "offset": 160, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3105139380 + }, + "m_fTargetAlpha": { + "type": "float", + "id": 5, + "offset": 212, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1809129834 + }, + "m_fDisabledAlpha": { + "type": "float", + "id": 6, + "offset": 216, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1389987675 + }, + "m_fAlpha": { + "type": "float", + "id": 7, + "offset": 208, + "flags": 65671, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 482130755 + }, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3623628394 + }, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2102211316 + }, + "m_sScript": { + "type": "std::string", + "id": 10, + "offset": 352, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1846695875 + }, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3389835433 + }, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547159940 + }, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513510520 + }, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3091503757 + }, + "m_Items": { + "type": "class ComboItem", + "id": 16, + "offset": 584, + "flags": 135, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2627949239 + }, + "m_nSelected": { + "type": "int", + "id": 17, + "offset": 608, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1017366545 + }, + "m_nExpandedSize": { + "type": "int", + "id": 18, + "offset": 612, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1542607084 + }, + "m_nButtonSize": { + "type": "int", + "id": 19, + "offset": 616, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1917634655 + }, + "m_pButtonMaterial": { + "type": "class SharedPointer", + "id": 20, + "offset": 624, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2439977842 + }, + "m_buttonStyle": { + "type": "class SharedPointer", + "id": 21, + "offset": 736, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1791389598 + } + } + }, + "844446229": { + "name": "class PositionalSoundEmitterInfo", + "bases": [ + "SoundEmitterInfo", + "SoundInfo", + "ClientObjectInfo", + "CoreObjectInfo", + "PropertyClass" + ], + "hash": 844446229, + "properties": { + "m_templateID.m_full": { + "type": "unsigned __int64", + "id": 0, + "offset": 72, + "flags": 33554439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 633907631 + }, + "m_nObjectID": { + "type": "unsigned int", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 748496927 + }, + "m_location": { + "type": "class Vector3D", + "id": 2, + "offset": 84, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2239683611 + }, + "m_orientation": { + "type": "class Vector3D", + "id": 3, + "offset": 96, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2344058766 + }, + "m_fScale": { + "type": "float", + "id": 4, + "offset": 108, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 503137701 + }, + "m_zoneTag": { + "type": "std::string", + "id": 5, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3405382643 + }, + "m_startState": { + "type": "std::string", + "id": 6, + "offset": 184, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2166880458 + }, + "m_overrideName": { + "type": "std::string", + "id": 7, + "offset": 120, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1990707228 + }, + "m_globalDynamic": { + "type": "bool", + "id": 8, + "offset": 116, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1951691017 + }, + "m_bUndetectable": { + "type": "bool", + "id": 9, + "offset": 216, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1907454341 + }, + "m_spawnRequirements": { + "type": "class SharedPointer", + "id": 10, + "offset": 224, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2309120870 + }, + "m_loadingType": { + "type": "enum CoreObjectInfo::LoadingType", + "id": 11, + "offset": 112, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3522422550, + "enum_options": { + "STATIC_CLIENT_SERVER": 0, + "STATIC_CLIENT": 1, + "STATIC_SERVER": 2, + "DYNAMIC_SERVER": 3 + } + }, + "m_radius": { + "type": "float", + "id": 12, + "offset": 256, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 989410271 + }, + "m_exclusive": { + "type": "bool", + "id": 13, + "offset": 260, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 824383403 + }, + "m_startActive": { + "type": "bool", + "id": 14, + "offset": 261, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2031339229 + }, + "m_category": { + "type": "enum AudioCategory", + "id": 15, + "offset": 264, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2951251982, + "enum_options": { + "AudioCategory_Irrelevent": 0, + "AudioCategory_Accoustic": 1, + "AudioCategory_Noise": 2, + "AudioCategory_Music": 3 + } + }, + "m_override": { + "type": "int", + "id": 16, + "offset": 268, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 136872410, + "enum_options": { + "OVR_RADIUS": 1, + "OVR_CATEGORY": 2, + "OVR_EXCLUSIVE": 4, + "OVR_SIGNATURE": 64, + "OVR_VOLUME": 8, + "OVR_LOOPCOUNT": 16, + "OVR_ACTIVE": 32, + "OVR_PLAYPROG": 128, + "OVR_PRIORITY": 256, + "OVR_PROGTIME": 512, + "OVR_FILTERSET": 1024 + } + }, + "m_enableReqs": { + "type": "class SharedPointer", + "id": 17, + "offset": 272, + "flags": 263, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3158020443 + }, + "m_volume": { + "type": "float", + "id": 18, + "offset": 288, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1162855023 + }, + "m_loopCount": { + "type": "int", + "id": 19, + "offset": 292, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 865634717 + }, + "m_trackFilenameList": { + "type": "std::string", + "id": 20, + "offset": 312, + "flags": 131079, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2531081709 + }, + "m_playList": { + "type": "class PlayListEntry*", + "id": 21, + "offset": 336, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 3907873161 + }, + "m_priority": { + "type": "int", + "id": 22, + "offset": 296, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1235205852 + }, + "m_progression": { + "type": "enum PlayList::Progression", + "id": 23, + "offset": 300, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3279400238, + "enum_options": { + "Sequence": 0, + "Random": 1, + "SequenceOnceOnly": 2, + "RandomNoRepeat": 3 + } + }, + "m_progressMin": { + "type": "float", + "id": 24, + "offset": 304, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1497550192 + }, + "m_progressMax": { + "type": "float", + "id": 25, + "offset": 308, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1497549938 + }, + "m_audioFilterSet": { + "type": "unsigned int", + "id": 26, + "offset": 360, + "flags": 33554439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 831339825 + }, + "m_clientTag": { + "type": "std::string", + "id": 27, + "offset": 368, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3409856790 + }, + "m_innerRadius": { + "type": "float", + "id": 28, + "offset": 400, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 686816091 + }, + "m_nifObjName": { + "type": "std::string", + "id": 29, + "offset": 408, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513857812 + }, + "m_animNIFObjName": { + "type": "std::string", + "id": 30, + "offset": 440, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2245834777 + }, + "m_inverted": { + "type": "bool", + "id": 31, + "offset": 472, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1034821044 + }, + "m_initialDelay": { + "type": "float", + "id": 32, + "offset": 476, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 629858288 + } + } + }, + "1694400497": { + "name": "class SharedPointer", + "bases": [ + "Window", + "PropertyClass" + ], + "hash": 1694400497, + "properties": { + "m_sName": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306437263 + }, + "m_Children": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621225959 + }, + "m_Style": { + "type": "unsigned int", + "id": 2, + "offset": 152, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "SCALE_CHILDREN": 2, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "FOCUS_LOCKED": 64, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152 + } + }, + "m_Flags": { + "type": "unsigned int", + "id": 3, + "offset": 156, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } + }, + "m_Window": { + "type": "class Rect", + "id": 4, + "offset": 160, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3105139380 + }, + "m_fTargetAlpha": { + "type": "float", + "id": 5, + "offset": 212, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1809129834 + }, + "m_fDisabledAlpha": { + "type": "float", + "id": 6, + "offset": 216, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1389987675 + }, + "m_fAlpha": { + "type": "float", + "id": 7, + "offset": 208, + "flags": 65671, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 482130755 + }, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3623628394 + }, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2102211316 + }, + "m_sScript": { + "type": "std::string", + "id": 10, + "offset": 352, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1846695875 + }, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3389835433 + }, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547159940 + }, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513510520 + }, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3091503757 + } + } + }, + "1250521981": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1250521981, + "properties": { + "m_nVolumeType": { + "type": "enum MountRecord::VolumeTypes", + "id": 0, + "offset": 72, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2832170609, + "enum_options": { + "DISK": 1, + "DSA": 2, + "WAD": 3 + } + }, + "m_sOption": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1705643111 + }, + "m_nPriority": { + "type": "int", + "id": 2, + "offset": 112, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1515251530 + }, + "m_sMount": { + "type": "std::string", + "id": 3, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2412733857 + }, + "m_bWritable": { + "type": "bool", + "id": 4, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1522487983 + } + } + }, + "843480053": { + "name": "class WizShopOffering*", + "bases": [ + "PropertyClass" + ], + "hash": 843480053, + "properties": { + "m_shopList": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 446354318 + }, + "m_recipeList": { + "type": "std::string", + "id": 1, + "offset": 88, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 3311769839 + }, + "m_shopTitle": { + "type": "std::string", + "id": 2, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3349689687 + }, + "m_sellModifier": { + "type": "float", + "id": 3, + "offset": 136, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 360128886 + }, + "m_shopType": { + "type": "int", + "id": 4, + "offset": 140, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 446675542 + }, + "m_CSRTestShop": { + "type": "bool", + "id": 5, + "offset": 144, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1651336981 + }, + "m_furnitureShop": { + "type": "int", + "id": 6, + "offset": 148, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1321981560 + }, + "m_activeHolidayList": { + "type": "std::string", + "id": 7, + "offset": 152, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2341827453 + } + } + }, + "1692665452": { + "name": "class AuctionHouseOffering*", + "bases": [ + "PropertyClass" + ], + "hash": 1692665452, + "properties": { + "m_auctionList": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 3624813468 + }, + "m_auctionHousePurchaseKey": { + "type": "unsigned int", + "id": 1, + "offset": 88, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 394777768 + } + } + }, + "1248476783": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1248476783, + "properties": { + "m_tieredSpellGroupList": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1855207927 + } + } + }, + "843065712": { + "name": "class MadlibArgT*", + "bases": [ + "MadlibArg", + "PropertyClass" + ], + "hash": 843065712, + "properties": { + "m_madlibToken": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3058682373 + }, + "m_madlibArgument": { + "type": "float", + "id": 1, + "offset": 112, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 968693315 + } + } + }, + "1692665412": { + "name": "class AuctionHouseOffering", + "bases": [ + "PropertyClass" + ], + "hash": 1692665412, + "properties": { + "m_auctionList": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 3624813468 + }, + "m_auctionHousePurchaseKey": { + "type": "unsigned int", + "id": 1, + "offset": 88, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 394777768 + } + } + }, + "1248400337": { + "name": "class LikesDislikesEntry*", + "bases": [ + "PropertyClass" + ], + "hash": 1248400337, + "properties": { + "m_adjective": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3429518154 + }, + "m_stringTableKey": { + "type": "std::string", + "id": 1, + "offset": 104, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2902469923 + }, + "m_modifier": { + "type": "float", + "id": 2, + "offset": 136, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 388952454, + "enum_options": { + "__DEFAULT": "1.0" + } + }, + "m_hidden": { + "type": "bool", + "id": 3, + "offset": 140, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 519817759 + } + } + }, + "2127103072": { + "name": "class SharedPointer", + "bases": [ + "Window", + "PropertyClass" + ], + "hash": 2127103072, + "properties": { + "m_sName": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306437263 + }, + "m_Children": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621225959 + }, + "m_Style": { + "type": "unsigned int", + "id": 2, + "offset": 152, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "SCALE_CHILDREN": 2, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "FOCUS_LOCKED": 64, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152 + } + }, + "m_Flags": { + "type": "unsigned int", + "id": 3, + "offset": 156, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } + }, + "m_Window": { + "type": "class Rect", + "id": 4, + "offset": 160, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3105139380 + }, + "m_fTargetAlpha": { + "type": "float", + "id": 5, + "offset": 212, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1809129834 + }, + "m_fDisabledAlpha": { + "type": "float", + "id": 6, + "offset": 216, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1389987675 + }, + "m_fAlpha": { + "type": "float", + "id": 7, + "offset": 208, + "flags": 65671, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 482130755 + }, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3623628394 + }, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2102211316 + }, + "m_sScript": { + "type": "std::string", + "id": 10, + "offset": 352, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1846695875 + }, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3389835433 + }, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547159940 + }, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513510520 + }, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3091503757 + } + } + }, + "843050071": { + "name": "class SharedPointer", + "bases": [ + "SpellTemplate", + "CoreTemplate", + "PropertyClass" + ], + "hash": 843050071, + "properties": { + "m_behaviors": { + "type": "class BehaviorTemplate*", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1197808594 + }, + "m_name": { + "type": "std::string", + "id": 1, + "offset": 96, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1717359772 + }, + "m_description": { + "type": "std::string", + "id": 2, + "offset": 168, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1649374815 + }, + "m_advancedDescription": { + "type": "std::string", + "id": 3, + "offset": 200, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3465713013 + }, + "m_displayName": { + "type": "std::string", + "id": 4, + "offset": 136, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2446900370 + }, + "m_spellBase": { + "type": "std::string", + "id": 5, + "offset": 248, + "flags": 268435463, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2688054198, + "enum_options": { + "__BASECLASS": "CinematicTemplate" + } + }, + "m_effects": { + "type": "class SharedPointer", + "id": 6, + "offset": 280, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 370726379 + }, + "m_sMagicSchoolName": { + "type": "std::string", + "id": 7, + "offset": 312, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2035693400 + }, + "m_sTypeName": { + "type": "std::string", + "id": 8, + "offset": 352, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3580785905 + }, + "m_trainingCost": { + "type": "int", + "id": 9, + "offset": 384, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 982588239 + }, + "m_accuracy": { + "type": "int", + "id": 10, + "offset": 388, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1636315493 + }, + "m_baseCost": { + "type": "int", + "id": 11, + "offset": 232, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1475151502 + }, + "m_creditsCost": { + "type": "int", + "id": 12, + "offset": 236, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 715313825 + }, + "m_pvpCurrencyCost": { + "type": "int", + "id": 13, + "offset": 240, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 645595444 + }, + "m_pvpTourneyCurrencyCost": { + "type": "int", + "id": 14, + "offset": 244, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 517874954 + }, + "m_boosterPackIcon": { + "type": "std::string", + "id": 15, + "offset": 496, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3428653697 + }, + "m_validTargetSpells": { + "type": "unsigned int", + "id": 16, + "offset": 392, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2355782967 + }, + "m_PvP": { + "type": "bool", + "id": 17, + "offset": 408, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 269492361 + }, + "m_PvE": { + "type": "bool", + "id": 18, + "offset": 409, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 269492350 + }, + "m_noPvPEnchant": { + "type": "bool", + "id": 19, + "offset": 410, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 661581703 + }, + "m_noPvEEnchant": { + "type": "bool", + "id": 20, + "offset": 411, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 10144220 + }, + "m_battlegroundsOnly": { + "type": "bool", + "id": 21, + "offset": 412, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1244782419 + }, + "m_Treasure": { + "type": "bool", + "id": 22, + "offset": 413, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1749096414 + }, + "m_noDiscard": { + "type": "bool", + "id": 23, + "offset": 414, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 565749226 + }, + "m_leavesPlayWhenCast": { + "type": "bool", + "id": 24, + "offset": 532, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 698216294 + }, + "m_imageIndex": { + "type": "int", + "id": 25, + "offset": 416, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1570500405 + }, + "m_imageName": { + "type": "std::string", + "id": 26, + "offset": 424, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2391520543 + }, + "m_cloaked": { + "type": "bool", + "id": 27, + "offset": 489, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 7349510 + }, + "m_casterInvisible": { + "type": "bool", + "id": 28, + "offset": 490, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 310214650 + }, + "m_adjectives": { + "type": "std::string", + "id": 29, + "offset": 576, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2967855037 + }, + "m_spellSourceType": { + "type": "enum SpellTemplate::kSpellSourceType", + "id": 30, + "offset": 528, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 156272727, + "enum_options": { + "kCaster": 0, + "kPet": 1, + "kShadowCreature": 2, + "kWeapon": 3, + "kEquipment": 4 + } + }, + "m_cloakedName": { + "type": "std::string", + "id": 31, + "offset": 536, + "flags": 268435463, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2846679215, + "enum_options": { + "__BASECLASS": "SpellTemplate" + } + }, + "m_purchaseRequirements": { + "type": "class RequirementList*", + "id": 32, + "offset": 608, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3174641793 + }, + "m_displayRequirements": { + "type": "class RequirementList*", + "id": 33, + "offset": 840, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3646782876 + }, + "m_descriptionTrainer": { + "type": "std::string", + "id": 34, + "offset": 616, + "flags": 8388871, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1756093908 + }, + "m_descriptionCombatHUD": { + "type": "std::string", + "id": 35, + "offset": 648, + "flags": 8388871, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1631478006 + }, + "m_displayIndex": { + "type": "int", + "id": 36, + "offset": 680, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1250551048 + }, + "m_hiddenFromEffectsWindow": { + "type": "bool", + "id": 37, + "offset": 684, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1832736331 + }, + "m_ignoreCharms": { + "type": "bool", + "id": 38, + "offset": 685, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1840075893 + }, + "m_alwaysFizzle": { + "type": "bool", + "id": 39, + "offset": 686, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2030988856 + }, + "m_spellCategory": { + "type": "std::string", + "id": 40, + "offset": 688, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2472376729 + }, + "m_showPolymorphedName": { + "type": "bool", + "id": 41, + "offset": 720, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2097929096 + }, + "m_skipTruncation": { + "type": "bool", + "id": 42, + "offset": 721, + "flags": 263, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1838335249 + }, + "m_maxCopies": { + "type": "unsigned int", + "id": 43, + "offset": 724, + "flags": 263, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 403022326 + }, + "m_levelRestriction": { + "type": "int", + "id": 44, + "offset": 728, + "flags": 263, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 176502472 + }, + "m_delayEnchantment": { + "type": "bool", + "id": 45, + "offset": 732, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 191336919 + }, + "m_delayEnchantmentOrder": { + "type": "enum SpellEffect::kDelayOrder", + "id": 46, + "offset": 736, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2526055263, + "enum_options": { + "SpellEffect::kAnyOrder": 0, + "SpellEffect::kFirst": 1, + "SpellEffect::kSecond": 2 + } + }, + "m_previousSpellName": { + "type": "std::string", + "id": 47, + "offset": 744, + "flags": 268435463, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2903322585, + "enum_options": { + "__BASECLASS": "SpellTemplate" + } + }, + "m_cardFront": { + "type": "std::string", + "id": 48, + "offset": 456, + "flags": 131359, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3557598526 + }, + "m_useGloss": { + "type": "bool", + "id": 49, + "offset": 488, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 668817544 + }, + "m_ignoreDispel": { + "type": "bool", + "id": 50, + "offset": 776, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1881041624 + }, + "m_backRowFriendly": { + "type": "bool", + "id": 51, + "offset": 777, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 501584377 + }, + "m_spellRank": { + "type": "class SharedPointer", + "id": 52, + "offset": 784, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3152361374 + }, + "m_secondarySchoolName": { + "type": "std::string", + "id": 53, + "offset": 800, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1803268236 + }, + "m_spellFusion": { + "type": "unsigned int", + "id": 54, + "offset": 836, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1658928321 + }, + "m_requiredSchoolName": { + "type": "std::string", + "id": 55, + "offset": 848, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3576058981 + }, + "m_unitMovement": { + "type": "std::string", + "id": 56, + "offset": 880, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3170961702 + }, + "m_specialUnits": { + "type": "std::string", + "id": 57, + "offset": 912, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2725603631 + } + } + }, + "1248399720": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1248399720, + "properties": { + "m_sigilID": { + "type": "unsigned int", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1425799538 + }, + "m_buttonStringKey": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3226477495 + }, + "m_playerSchoolIDList": { + "type": "unsigned int", + "id": 2, + "offset": 112, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 346919403 + }, + "m_isInstance": { + "type": "bool", + "id": 3, + "offset": 128, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 822314308 + }, + "m_secondsElapsed": { + "type": "unsigned int", + "id": 4, + "offset": 132, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1701124410 + }, + "m_isFarming": { + "type": "bool", + "id": 5, + "offset": 136, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 328236467 + }, + "m_minimumTeamSize": { + "type": "unsigned char", + "id": 6, + "offset": 137, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 904550318 + }, + "m_pSigilMonthlyGauntletInfo": { + "type": "class SharedPointer", + "id": 7, + "offset": 144, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1631820172 + }, + "m_requestedSigilMode": { + "type": "enum RequestedSigilMode", + "id": 8, + "offset": 76, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1327681577, + "enum_options": { + "REQUESTED_DEFAULT_MODE_SIGIL": 0, + "REQUESTED_STANDARD_MODE_SIGIL": 1, + "REQUESTED_ADVANCED_MODE_SIGIL": 2, + "REQUESTED_MONTHLYGAUNTLET_MODE_SIGIL": 3 + } + } + } + }, + "1692773221": { + "name": "class DebugCinematicsComponent*", + "bases": [ + "PropertyClass" + ], + "hash": 1692773221, + "properties": {} + }, + "2128070170": { + "name": "class WinAnimScaleSymmetricalTime", + "bases": [ + "WinAnimScaleSymmetrical", + "WindowAnimation", + "PropertyClass" + ], + "hash": 2128070170, + "properties": { + "m_bUseDeepCopy": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 433380635 + }, + "m_scale": { + "type": "float", + "id": 1, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 899693439 + }, + "m_fTimeTotal": { + "type": "float", + "id": 2, + "offset": 88, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 661225456 + }, + "m_fTimeRemaining": { + "type": "float", + "id": 3, + "offset": 92, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1591443014 + } + } + }, + "472810120": { + "name": "unsigned __int64", + "bases": [], + "hash": 472810120, + "properties": {} + }, + "843476981": { + "name": "class WizShopOffering", + "bases": [ + "PropertyClass" + ], + "hash": 843476981, + "properties": { + "m_shopList": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 446354318 + }, + "m_recipeList": { + "type": "std::string", + "id": 1, + "offset": 88, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 3311769839 + }, + "m_shopTitle": { + "type": "std::string", + "id": 2, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3349689687 + }, + "m_sellModifier": { + "type": "float", + "id": 3, + "offset": 136, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 360128886 + }, + "m_shopType": { + "type": "int", + "id": 4, + "offset": 140, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 446675542 + }, + "m_CSRTestShop": { + "type": "bool", + "id": 5, + "offset": 144, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1651336981 + }, + "m_furnitureShop": { + "type": "int", + "id": 6, + "offset": 148, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1321981560 + }, + "m_activeHolidayList": { + "type": "std::string", + "id": 7, + "offset": 152, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2341827453 + } + } + }, + "2127933506": { + "name": "class RevealHangingCinematicStageTemplate", + "bases": [ + "CinematicStageTemplate", + "PropertyClass" + ], + "hash": 2127933506, + "properties": { + "m_name": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1717359772 + }, + "m_duration": { + "type": "float", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 920323453 + }, + "m_actions": { + "type": "class SharedPointer", + "id": 2, + "offset": 112, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1380578687 + }, + "m_stageRelationships": { + "type": "class SharedPointer", + "id": 3, + "offset": 128, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 499983354 + }, + "m_stopRotating": { + "type": "bool", + "id": 4, + "offset": 153, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 13587553 + }, + "m_startRotating": { + "type": "bool", + "id": 5, + "offset": 154, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 839204969 + }, + "m_revealText": { + "type": "std::string", + "id": 6, + "offset": 160, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2011500383 + }, + "m_bSwitchCameraToWideLong": { + "type": "bool", + "id": 7, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2136912684, + "enum_options": { + "__DEFAULT": 1 + } + } + } + }, + "1693583993": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1693583993, + "properties": { + "m_allowedTypes": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 3134367000 + }, + "m_recipeList": { + "type": "std::string", + "id": 1, + "offset": 88, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 3311769839 + }, + "m_failedRequirementsList": { + "type": "std::string", + "id": 2, + "offset": 104, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1864028544 + }, + "m_noCooldown": { + "type": "bool", + "id": 3, + "offset": 120, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 751967189 + }, + "m_noCategories": { + "type": "bool", + "id": 4, + "offset": 121, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 767850966 + } + } + }, + "1249773005": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1249773005, + "properties": { + "m_allPacks": { + "type": "class SharedPointer", + "id": 0, + "offset": 80, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": true, + "pointer": true, + "hash": 1650503223 + } + } + }, + "211490908": { + "name": "unsigned int", + "bases": [], + "hash": 211490908, + "properties": {} + }, + "90289606": { + "name": "float", + "bases": [], + "hash": 90289606, + "properties": {} + }, + "2128035660": { + "name": "class SharedPointer", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 2128035660, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_breadCrumbNumber": { + "type": "unsigned int", + "id": 1, + "offset": 112, + "flags": 65543, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2100995821 + }, + "m_equippedPetGIDList": { + "type": "gid", + "id": 2, + "offset": 120, + "flags": 65543, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1574152046 + }, + "m_equippedBreadCrumbIDList": { + "type": "unsigned short", + "id": 3, + "offset": 136, + "flags": 65543, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 592278117 + }, + "m_flags": { + "type": "unsigned int", + "id": 4, + "offset": 152, + "flags": 65543, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1005801050 + } + } + }, + "843904912": { + "name": "class LinearStateSoundBehavior", + "bases": [ + "LinearSoundBehavior", + "PositionalSoundBehavior", + "SoundBehavior", + "AreaBehavior", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 843904912, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_radius": { + "type": "float", + "id": 1, + "offset": 116, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 989410271 + }, + "m_category": { + "type": "enum AudioCategory", + "id": 2, + "offset": 124, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2951251982, + "enum_options": { + "AudioCategory_Irrelevent": 0, + "AudioCategory_Accoustic": 1, + "AudioCategory_Noise": 2, + "AudioCategory_Music": 3 + } + }, + "m_exclusive": { + "type": "bool", + "id": 3, + "offset": 128, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 824383403 + }, + "m_playList": { + "type": "class PlayList", + "id": 4, + "offset": 176, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2061221957 + }, + "m_volume": { + "type": "float", + "id": 5, + "offset": 304, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1162855023 + }, + "m_loopCount": { + "type": "int", + "id": 6, + "offset": 308, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 865634717 + }, + "m_minimumFalloff": { + "type": "float", + "id": 7, + "offset": 328, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 355697197 + }, + "m_maximumFalloff": { + "type": "float", + "id": 8, + "offset": 332, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2210192367 + }, + "m_animDriven": { + "type": "bool", + "id": 9, + "offset": 392, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 398394720 + }, + "m_inverted": { + "type": "bool", + "id": 10, + "offset": 397, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1034821044 + }, + "m_fRangeScale": { + "type": "float", + "id": 11, + "offset": 512, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1749294034 + }, + "m_fAttenuationFactor": { + "type": "float", + "id": 12, + "offset": 516, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 273292776 + }, + "m_eAttenuationType": { + "type": "enum PositionInfoAttenuationType", + "id": 13, + "offset": 520, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2427193304, + "enum_options": { + "Standard": 0, + "Unit Range Power": 1 + } + }, + "m_vPositions": { + "type": "class Vector3D", + "id": 14, + "offset": 528, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 3599600160 + }, + "m_animationName": { + "type": "std::string", + "id": 15, + "offset": 688, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3393414044 + } + } + }, + "45337787": { + "name": "class LoyaltyStoreOption*", + "bases": [ + "ServiceOptionBase", + "PropertyClass" + ], + "hash": 45337787, + "properties": { + "m_serviceName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2206028813 + }, + "m_iconKey": { + "type": "std::string", + "id": 1, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2457138637 + }, + "m_displayKey": { + "type": "std::string", + "id": 2, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3023276954 + }, + "m_serviceIndex": { + "type": "unsigned int", + "id": 3, + "offset": 204, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2103126710 + }, + "m_forceInteract": { + "type": "bool", + "id": 4, + "offset": 200, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1705789564 + } + } + }, + "1250331631": { + "name": "class SharedPointer", + "bases": [ + "GameEffectInfo", + "PropertyClass" + ], + "hash": 1250331631, + "properties": { + "m_effectName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2029161513 + }, + "m_happinessCost": { + "type": "int", + "id": 1, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1107125310 + }, + "m_cooldown": { + "type": "int", + "id": 2, + "offset": 108, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1897549823 + }, + "m_usesPerCombat": { + "type": "int", + "id": 3, + "offset": 112, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1445312791 + }, + "m_unlockedTemplate": { + "type": "std::string", + "id": 4, + "offset": 120, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1809846764 + }, + "m_lockedTemplate": { + "type": "std::string", + "id": 5, + "offset": 152, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2044999913 + }, + "m_combatTalent": { + "type": "bool", + "id": 6, + "offset": 184, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2113651857 + }, + "m_triggerName": { + "type": "std::string", + "id": 7, + "offset": 192, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3100183568 + }, + "m_unlockReagentAmount1": { + "type": "int", + "id": 8, + "offset": 224, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1546338481 + }, + "m_unlockReagentTemplate1": { + "type": "unsigned int", + "id": 9, + "offset": 228, + "flags": 33554463, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 943550188 + }, + "m_unlockReagentAmount2": { + "type": "int", + "id": 10, + "offset": 232, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1546338482 + }, + "m_unlockReagentTemplate2": { + "type": "unsigned int", + "id": 11, + "offset": 236, + "flags": 33554463, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 943550189 + }, + "m_unlockReagentAmount3": { + "type": "int", + "id": 12, + "offset": 240, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1546338483 + }, + "m_unlockReagentTemplate3": { + "type": "unsigned int", + "id": 13, + "offset": 244, + "flags": 33554463, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 943550190 + }, + "m_unlockReagentAmount4": { + "type": "int", + "id": 14, + "offset": 248, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1546338484 + }, + "m_unlockReagentTemplate4": { + "type": "unsigned int", + "id": 15, + "offset": 252, + "flags": 33554463, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 943550191 + }, + "m_extra1": { + "type": "std::string", + "id": 16, + "offset": 256, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1916008880 + }, + "m_extra2": { + "type": "std::string", + "id": 17, + "offset": 288, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1916008881 + }, + "m_lootTableName": { + "type": "std::string", + "id": 18, + "offset": 320, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2333333378 + }, + "m_powerDisplayName": { + "type": "std::string", + "id": 19, + "offset": 352, + "flags": 8388639, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2338393887 + }, + "m_requirementList": { + "type": "class SharedPointer", + "id": 20, + "offset": 384, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3783909798 + }, + "m_requirementFailedString": { + "type": "std::string", + "id": 21, + "offset": 400, + "flags": 8388639, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2051573416 + }, + "m_noPVP": { + "type": "bool", + "id": 22, + "offset": 436, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 806455846 + }, + "m_rampUp": { + "type": "int", + "id": 23, + "offset": 440, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 899539119 + }, + "m_description": { + "type": "std::string", + "id": 24, + "offset": 448, + "flags": 8388639, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1649374815 + }, + "m_myTurn": { + "type": "bool", + "id": 25, + "offset": 480, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 733913410 + } + } + }, + "23696098": { + "name": "buf16", + "bases": [], + "hash": 23696098, + "properties": {} + }, + "1694575287": { + "name": "class LogoData*", + "bases": [ + "PropertyClass" + ], + "hash": 1694575287, + "properties": { + "m_logoFile": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2251052844 + }, + "m_displayTime": { + "type": "float", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1039626236 + }, + "m_text": { + "type": "std::string", + "id": 2, + "offset": 144, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1717580128 + } + } + }, + "2624835": { + "name": "char", + "bases": [], + "hash": 2624835, + "properties": {} + }, + "700130": { + "name": "bui7", + "bases": [], + "hash": 700130, + "properties": {} + }, + "1694574647": { + "name": "class LogoData", + "bases": [ + "PropertyClass" + ], + "hash": 1694574647, + "properties": { + "m_logoFile": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2251052844 + }, + "m_displayTime": { + "type": "float", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1039626236 + }, + "m_text": { + "type": "std::string", + "id": 2, + "offset": 144, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1717580128 + } + } + }, + "88457": { + "name": "int", + "bases": [], + "hash": 88457, + "properties": {} + }, + "2128144061": { + "name": "class SharedPointer", + "bases": [ + "GameEffectInfo", + "PropertyClass" + ], + "hash": 2128144061, + "properties": { + "m_effectName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2029161513 + } + } + }, + "21858": { + "name": "bi7", + "bases": [], + "hash": 21858, + "properties": {} + }, + "844446239": { + "name": "class PositionalSoundEmitterInfo*", + "bases": [ + "SoundEmitterInfo", + "SoundInfo", + "ClientObjectInfo", + "CoreObjectInfo", + "PropertyClass" + ], + "hash": 844446239, + "properties": { + "m_templateID.m_full": { + "type": "unsigned __int64", + "id": 0, + "offset": 72, + "flags": 33554439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 633907631 + }, + "m_nObjectID": { + "type": "unsigned int", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 748496927 + }, + "m_location": { + "type": "class Vector3D", + "id": 2, + "offset": 84, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2239683611 + }, + "m_orientation": { + "type": "class Vector3D", + "id": 3, + "offset": 96, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2344058766 + }, + "m_fScale": { + "type": "float", + "id": 4, + "offset": 108, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 503137701 + }, + "m_zoneTag": { + "type": "std::string", + "id": 5, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3405382643 + }, + "m_startState": { + "type": "std::string", + "id": 6, + "offset": 184, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2166880458 + }, + "m_overrideName": { + "type": "std::string", + "id": 7, + "offset": 120, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1990707228 + }, + "m_globalDynamic": { + "type": "bool", + "id": 8, + "offset": 116, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1951691017 + }, + "m_bUndetectable": { + "type": "bool", + "id": 9, + "offset": 216, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1907454341 + }, + "m_spawnRequirements": { + "type": "class SharedPointer", + "id": 10, + "offset": 224, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2309120870 + }, + "m_loadingType": { + "type": "enum CoreObjectInfo::LoadingType", + "id": 11, + "offset": 112, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3522422550, + "enum_options": { + "STATIC_CLIENT_SERVER": 0, + "STATIC_CLIENT": 1, + "STATIC_SERVER": 2, + "DYNAMIC_SERVER": 3 + } + }, + "m_radius": { + "type": "float", + "id": 12, + "offset": 256, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 989410271 + }, + "m_exclusive": { + "type": "bool", + "id": 13, + "offset": 260, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 824383403 + }, + "m_startActive": { + "type": "bool", + "id": 14, + "offset": 261, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2031339229 + }, + "m_category": { + "type": "enum AudioCategory", + "id": 15, + "offset": 264, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2951251982, + "enum_options": { + "AudioCategory_Irrelevent": 0, + "AudioCategory_Accoustic": 1, + "AudioCategory_Noise": 2, + "AudioCategory_Music": 3 + } + }, + "m_override": { + "type": "int", + "id": 16, + "offset": 268, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 136872410, + "enum_options": { + "OVR_RADIUS": 1, + "OVR_CATEGORY": 2, + "OVR_EXCLUSIVE": 4, + "OVR_SIGNATURE": 64, + "OVR_VOLUME": 8, + "OVR_LOOPCOUNT": 16, + "OVR_ACTIVE": 32, + "OVR_PLAYPROG": 128, + "OVR_PRIORITY": 256, + "OVR_PROGTIME": 512, + "OVR_FILTERSET": 1024 + } + }, + "m_enableReqs": { + "type": "class SharedPointer", + "id": 17, + "offset": 272, + "flags": 263, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3158020443 + }, + "m_volume": { + "type": "float", + "id": 18, + "offset": 288, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1162855023 + }, + "m_loopCount": { + "type": "int", + "id": 19, + "offset": 292, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 865634717 + }, + "m_trackFilenameList": { + "type": "std::string", + "id": 20, + "offset": 312, + "flags": 131079, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2531081709 + }, + "m_playList": { + "type": "class PlayListEntry*", + "id": 21, + "offset": 336, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 3907873161 + }, + "m_priority": { + "type": "int", + "id": 22, + "offset": 296, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1235205852 + }, + "m_progression": { + "type": "enum PlayList::Progression", + "id": 23, + "offset": 300, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3279400238, + "enum_options": { + "Sequence": 0, + "Random": 1, + "SequenceOnceOnly": 2, + "RandomNoRepeat": 3 + } + }, + "m_progressMin": { + "type": "float", + "id": 24, + "offset": 304, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1497550192 + }, + "m_progressMax": { + "type": "float", + "id": 25, + "offset": 308, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1497549938 + }, + "m_audioFilterSet": { + "type": "unsigned int", + "id": 26, + "offset": 360, + "flags": 33554439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 831339825 + }, + "m_clientTag": { + "type": "std::string", + "id": 27, + "offset": 368, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3409856790 + }, + "m_innerRadius": { + "type": "float", + "id": 28, + "offset": 400, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 686816091 + }, + "m_nifObjName": { + "type": "std::string", + "id": 29, + "offset": 408, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513857812 + }, + "m_animNIFObjName": { + "type": "std::string", + "id": 30, + "offset": 440, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2245834777 + }, + "m_inverted": { + "type": "bool", + "id": 31, + "offset": 472, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1034821044 + }, + "m_initialDelay": { + "type": "float", + "id": 32, + "offset": 476, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 629858288 + } + } + }, + "17762": { + "name": "bi3", + "bases": [], + "hash": 17762, + "properties": {} + }, + "1252686745": { + "name": "class LeashedPathNodeDescriptor", + "bases": [ + "NodeDescriptor", + "PropertyClass" + ], + "hash": 1252686745, + "properties": { + "m_nodeType": { + "type": "enum LeashedPathNodeType", + "id": 0, + "offset": 72, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3706891451, + "enum_options": { + "NT_NONE": 0, + "NT_ANIM": 1, + "NT_SPEEDSCALE": 2, + "NT_TELEPORT": 3 + } + }, + "m_animationName": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3393414044 + }, + "m_teleportToZone": { + "type": "std::string", + "id": 2, + "offset": 112, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2018677929 + }, + "m_zoneLocation": { + "type": "std::string", + "id": 3, + "offset": 144, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1597011152 + }, + "m_speedScale": { + "type": "float", + "id": 4, + "offset": 176, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2118638608 + } + } + }, + "2128070490": { + "name": "class WinAnimScaleSymmetricalTime*", + "bases": [ + "WinAnimScaleSymmetrical", + "WindowAnimation", + "PropertyClass" + ], + "hash": 2128070490, + "properties": { + "m_bUseDeepCopy": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 433380635 + }, + "m_scale": { + "type": "float", + "id": 1, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 899693439 + }, + "m_fTimeTotal": { + "type": "float", + "id": 2, + "offset": 88, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 661225456 + }, + "m_fTimeRemaining": { + "type": "float", + "id": 3, + "offset": 92, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1591443014 + } + } + }, + "16738": { + "name": "bi2", + "bases": [], + "hash": 16738, + "properties": {} + }, + "1252119767": { + "name": "class SharedPointer", + "bases": [ + "ControlCheckBox", + "ControlButton", + "Window", + "PropertyClass" + ], + "hash": 1252119767, + "properties": { + "m_sName": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306437263 + }, + "m_Children": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621225959 + }, + "m_Style": { + "type": "unsigned int", + "id": 2, + "offset": 152, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152, + "EFFECT_SCALE": 67108864, + "LOCK_ICON_SIZE": 33554432, + "LEFT_TEXT": 536870912, + "NO_FIT_TEXT": 1073741824, + "CHECKBOX_TEXTOVERIMAGE": 16777216 + } + }, + "m_Flags": { + "type": "unsigned int", + "id": 3, + "offset": 156, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } + }, + "m_Window": { + "type": "class Rect", + "id": 4, + "offset": 160, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3105139380 + }, + "m_fTargetAlpha": { + "type": "float", + "id": 5, + "offset": 212, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1809129834 + }, + "m_fDisabledAlpha": { + "type": "float", + "id": 6, + "offset": 216, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1389987675 + }, + "m_fAlpha": { + "type": "float", + "id": 7, + "offset": 208, + "flags": 65671, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 482130755 + }, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3623628394 + }, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2102211316 + }, + "m_sScript": { + "type": "std::string", + "id": 10, + "offset": 352, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1846695875 + }, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3389835433 + }, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547159940 + }, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513510520 + }, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3091503757 + }, + "m_bToggle": { + "type": "bool", + "id": 16, + "offset": 608, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2071810903 + }, + "m_bButtonDown": { + "type": "bool", + "id": 17, + "offset": 609, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 840041705 + }, + "m_sLabel": { + "type": "std::wstring", + "id": 18, + "offset": 616, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2207009163 + }, + "m_labelOffset": { + "type": "class Rect", + "id": 19, + "offset": 832, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1990646723 + }, + "m_pButton": { + "type": "class SharedPointer", + "id": 20, + "offset": 656, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1543855875 + }, + "m_HotKey": { + "type": "unsigned int", + "id": 21, + "offset": 672, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1631553409 + }, + "m_Color": { + "type": "class Color", + "id": 22, + "offset": 676, + "flags": 262279, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1753714077 + }, + "m_bCursorOver": { + "type": "bool", + "id": 23, + "offset": 689, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 283981103 + }, + "m_bAbortWhenCursorNotOver": { + "type": "bool", + "id": 24, + "offset": 706, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 325405258 + }, + "m_bHotKeyDown": { + "type": "bool", + "id": 25, + "offset": 680, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 616989185 + }, + "m_fTime": { + "type": "float", + "id": 26, + "offset": 684, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 883746156 + }, + "m_bGreyed": { + "type": "bool", + "id": 27, + "offset": 688, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1566556053 + }, + "m_fMaxScale": { + "type": "float", + "id": 28, + "offset": 692, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2070186635 + }, + "m_fScaleSpeed": { + "type": "float", + "id": 29, + "offset": 696, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1457135702 + }, + "m_bUseDropShadow": { + "type": "bool", + "id": 30, + "offset": 704, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 93063037 + }, + "m_bUseOutline": { + "type": "bool", + "id": 31, + "offset": 705, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 744292994 + }, + "m_pGreyedState": { + "type": "class SharedPointer", + "id": 32, + "offset": 768, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2703352263 + }, + "m_pNormalState": { + "type": "class SharedPointer", + "id": 33, + "offset": 752, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1887909808 + }, + "m_pHighlightedState": { + "type": "class SharedPointer", + "id": 34, + "offset": 784, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2200177608 + }, + "m_pSelectedState": { + "type": "class SharedPointer", + "id": 35, + "offset": 800, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2266776432 + }, + "m_pDepressedState": { + "type": "class SharedPointer", + "id": 36, + "offset": 816, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1878185798 + }, + "m_nGroupID": { + "type": "int", + "id": 37, + "offset": 880, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 403966850 + }, + "m_bChecked": { + "type": "bool", + "id": 38, + "offset": 884, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 958955100 + }, + "m_pCheckedState": { + "type": "class SharedPointer", + "id": 39, + "offset": 888, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1210539694 + }, + "m_pCheckedGreyedState": { + "type": "class SharedPointer", + "id": 40, + "offset": 904, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2702030126 + }, + "m_pCheckedHighlightedState": { + "type": "class SharedPointer", + "id": 41, + "offset": 920, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1320097679 + }, + "m_pCheckedDepressedState": { + "type": "class SharedPointer", + "id": 42, + "offset": 936, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1609188685 + } + } + }, + "8699613": { + "name": "class CombatObserver", + "bases": [ + "PropertyClass" + ], + "hash": 8699613, + "properties": {} + }, + "848483397": { + "name": "class SharedPointer", + "bases": [ + "ObstacleCourseObstaclePathBaseTemplate", + "ObstacleCourseObstacleBehaviorTemplate", + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 848483397, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + }, + "m_rate": { + "type": "float", + "id": 1, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 310005283 + }, + "m_penaltyTime": { + "type": "float", + "id": 2, + "offset": 124, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2083389507 + }, + "m_totalObstacleSize": { + "type": "class Vector3D", + "id": 3, + "offset": 128, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2379878414 + }, + "m_bounds": { + "type": "class Vector3D", + "id": 4, + "offset": 152, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1948083181 + }, + "m_orientToPath": { + "type": "bool", + "id": 5, + "offset": 176, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 655036148 + }, + "m_heightUp": { + "type": "float", + "id": 6, + "offset": 140, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2208713013 + }, + "m_heightDown": { + "type": "float", + "id": 7, + "offset": 144, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 655333896 + }, + "m_timeModifier": { + "type": "int", + "id": 8, + "offset": 184, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 723546552 + }, + "m_effectApply": { + "type": "std::string", + "id": 9, + "offset": 192, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1838368078 + }, + "m_soundApply": { + "type": "std::string", + "id": 10, + "offset": 224, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3579526282 + }, + "m_effectDespawn": { + "type": "std::string", + "id": 11, + "offset": 256, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2174851674 + }, + "m_soundDespawn": { + "type": "std::string", + "id": 12, + "offset": 288, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2068074646 + } + } + }, + "1695480160": { + "name": "enum Requirement::Operator", + "bases": [], + "hash": 1695480160, + "properties": {} + }, + "21011": { + "name": "s24", + "bases": [], + "hash": 21011, + "properties": {} + }, + "20834": { + "name": "bi6", + "bases": [], + "hash": 20834, + "properties": {} + }, + "2128942035": { + "name": "class InitialCombatSound", + "bases": [ + "PropertyClass" + ], + "hash": 2128942035, + "properties": { + "m_worldZoneName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2739174336 + }, + "m_soundList": { + "type": "std::string", + "id": 1, + "offset": 104, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2277086720 + } + } + }, + "21013": { + "name": "u24", + "bases": [], + "hash": 21013, + "properties": {} + }, + "1252929731": { + "name": "class ReqInSameDuel*", + "bases": [ + "Requirement", + "PropertyClass" + ], + "hash": 1252929731, + "properties": { + "m_applyNOT": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1746328074, + "enum_options": { + "__DEFAULT": 0 + } + }, + "m_operator": { + "type": "enum Requirement::Operator", + "id": 1, + "offset": 76, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2672792317, + "enum_options": { + "ROP_AND": 0, + "ROP_OR": 1, + "__DEFAULT": "ROP_AND" + } + } + } + }, + "850808878": { + "name": "class InitialPackageInfo", + "bases": [ + "PropertyClass" + ], + "hash": 850808878, + "properties": { + "m_packageContents": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 268435463, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 3309777205, + "enum_options": { + "__BASECLASS": "ZoneData" + } + } + } + }, + "1698615444": { + "name": "class SharedPointer", + "bases": [ + "DerbyEffect", + "PropertyClass" + ], + "hash": 1698615444, + "properties": { + "m_buffType": { + "type": "enum DerbyTalentBuffType", + "id": 0, + "offset": 92, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1149251982, + "enum_options": { + "Buff": 0, + "Debuff": 1, + "Neither": 2 + } + }, + "m_kTarget": { + "type": "enum DerbyTargetType", + "id": 1, + "offset": 96, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1807803351, + "enum_options": { + "kTargetInFront": 0, + "kTargetBehind": 1, + "kTargetFirst": 2, + "kTargetSelf": 3, + "kTargetAll": 4, + "kTargetLast": 5 + } + }, + "m_nDuration": { + "type": "int", + "id": 2, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1110167982 + }, + "m_effectID": { + "type": "unsigned int", + "id": 3, + "offset": 88, + "flags": 24, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2347630439 + }, + "m_imageFilename": { + "type": "std::string", + "id": 4, + "offset": 112, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2813328063 + }, + "m_iconIndex": { + "type": "unsigned int", + "id": 5, + "offset": 144, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1265133262 + }, + "m_soundOnActivate": { + "type": "std::string", + "id": 6, + "offset": 152, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1956929714 + }, + "m_soundOnTarget": { + "type": "std::string", + "id": 7, + "offset": 184, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3444214056 + }, + "m_targetParticleEffect": { + "type": "std::string", + "id": 8, + "offset": 216, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3048234723 + }, + "m_overheadMessage": { + "type": "std::string", + "id": 9, + "offset": 248, + "flags": 8388639, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1701018190 + }, + "m_requirements": { + "type": "class RequirementList", + "id": 10, + "offset": 280, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2840988582 + }, + "m_nAmountToSteal": { + "type": "int", + "id": 11, + "offset": 376, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 247752792 + } + } + }, + "1252739718": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1252739718, + "properties": { + "m_housingObjectStateList": { + "type": "class SharedPointer", + "id": 0, + "offset": 80, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1251844958 + }, + "m_zoneGID": { + "type": "gid", + "id": 1, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1907651624 + } + } + }, + "23906": { + "name": "bi5", + "bases": [], + "hash": 23906, + "properties": {} + }, + "849263051": { + "name": "class ClientScaleActorCinematicAction*", + "bases": [ + "ScaleActorCinematicAction", + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 849263051, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + }, + "m_scaleDuration": { + "type": "float", + "id": 2, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1764097637 + }, + "m_scaleTarget": { + "type": "float", + "id": 3, + "offset": 124, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1502791366 + } + } + }, + "1697818653": { + "name": "class SharedPointer", + "bases": [ + "CinematicStageTemplate", + "PropertyClass" + ], + "hash": 1697818653, + "properties": { + "m_name": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1717359772 + }, + "m_duration": { + "type": "float", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 920323453 + }, + "m_actions": { + "type": "class SharedPointer", + "id": 2, + "offset": 112, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1380578687 + }, + "m_stageRelationships": { + "type": "class SharedPointer", + "id": 3, + "offset": 128, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 499983354 + }, + "m_sound": { + "type": "std::string", + "id": 4, + "offset": 152, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2307644996 + } + } + }, + "22882": { + "name": "bi4", + "bases": [], + "hash": 22882, + "properties": {} + }, + "2140375305": { + "name": "class MinigameSigilOptionMonthlyGauntletFields", + "bases": [ + "PropertyClass" + ], + "hash": 2140375305, + "properties": { + "m_classProjectID": { + "type": "unsigned int", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 996536487 + }, + "m_sigilIcon": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3177480156 + } + } + }, + "22658": { + "name": "bf4", + "bases": [], + "hash": 22658, + "properties": {} + }, + "849259092": { + "name": "class ClientCloneActorCinematicAction*", + "bases": [ + "CloneActorCinematicAction", + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 849259092, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + }, + "m_position": { + "type": "class Vector3D", + "id": 2, + "offset": 124, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3697900983 + }, + "m_yawPitchRoll": { + "type": "class Vector3D", + "id": 3, + "offset": 136, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3349460132 + }, + "m_clonePlayer": { + "type": "bool", + "id": 4, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1369917873 + } + } + }, + "1697162463": { + "name": "class AdvPvPLeaderboardEntryList*", + "bases": [ + "PropertyClass" + ], + "hash": 1697162463, + "properties": { + "m_startPosition": { + "type": "int", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1469535773 + }, + "m_totalPlayerCount": { + "type": "unsigned int", + "id": 1, + "offset": 76, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1303598439 + }, + "m_entries": { + "type": "class SharedPointer", + "id": 2, + "offset": 80, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1843584395 + } + } + }, + "2132434067": { + "name": "class LevelUpElixirBehaviorTemplate", + "bases": [ + "ElixirBehaviorTemplate", + "TimedItemBehaviorTemplate", + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 2132434067, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + }, + "m_expireTime": { + "type": "std::string", + "id": 1, + "offset": 128, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3122602039 + }, + "m_timerType": { + "type": "enum TimerType", + "id": 2, + "offset": 120, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 571744132, + "enum_options": { + "TimerType_Game": 0, + "TimerType_Calendar": 1 + } + }, + "m_typeList": { + "type": "std::string", + "id": 3, + "offset": 160, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2119049625 + }, + "m_equipParticle": { + "type": "std::string", + "id": 4, + "offset": 176, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2222557491 + }, + "m_unequipParticle": { + "type": "std::string", + "id": 5, + "offset": 208, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2215431638 + }, + "m_equipSound": { + "type": "std::string", + "id": 6, + "offset": 240, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2720016552 + }, + "m_unequipSound": { + "type": "std::string", + "id": 7, + "offset": 272, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1552545835 + }, + "m_equipActionList": { + "type": "class SharedPointer", + "id": 8, + "offset": 304, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1314016250 + }, + "m_unequipActionList": { + "type": "class SharedPointer", + "id": 9, + "offset": 320, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2143896925 + }, + "m_combatEnabled": { + "type": "bool", + "id": 10, + "offset": 336, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1399744148 + }, + "m_PvPEnabled": { + "type": "bool", + "id": 11, + "offset": 337, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1042852532 + }, + "m_setCharacterToLevel": { + "type": "int", + "id": 12, + "offset": 408, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1268456078 + }, + "m_resultingTrainingPoints": { + "type": "int", + "id": 13, + "offset": 412, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1710285808 + }, + "m_schoolSpecificData": { + "type": "class SharedPointer", + "id": 14, + "offset": 472, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2609926725 + }, + "m_allSchoolData": { + "type": "class SharedPointer", + "id": 15, + "offset": 488, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2860093528 + }, + "m_firstWarningStringKey": { + "type": "std::string", + "id": 16, + "offset": 344, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3095888729 + }, + "m_secondWarningStringKey": { + "type": "std::string", + "id": 17, + "offset": 376, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2111513997 + }, + "m_accessPasses": { + "type": "std::string", + "id": 18, + "offset": 456, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2956825884 + }, + "m_gold": { + "type": "int", + "id": 19, + "offset": 416, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 219423808 + }, + "m_tutorialEventsToTrigger": { + "type": "std::string", + "id": 20, + "offset": 424, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2795041819 + }, + "m_tipIDsToDismiss": { + "type": "gid", + "id": 21, + "offset": 440, + "flags": 33554439, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1424884996 + }, + "m_maxPotions": { + "type": "int", + "id": 22, + "offset": 504, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1639626892 + } + } + }, + "1697162453": { + "name": "class AdvPvPLeaderboardEntryList", + "bases": [ + "PropertyClass" + ], + "hash": 1697162453, + "properties": { + "m_startPosition": { + "type": "int", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1469535773 + }, + "m_totalPlayerCount": { + "type": "unsigned int", + "id": 1, + "offset": 76, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1303598439 + }, + "m_entries": { + "type": "class SharedPointer", + "id": 2, + "offset": 80, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1843584395 + } + } + }, + "1252929736": { + "name": "class ReqInSameDuel", + "bases": [ + "Requirement", + "PropertyClass" + ], + "hash": 1252929736, + "properties": { + "m_applyNOT": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1746328074, + "enum_options": { + "__DEFAULT": 0 + } + }, + "m_operator": { + "type": "enum Requirement::Operator", + "id": 1, + "offset": 76, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2672792317, + "enum_options": { + "ROP_AND": 0, + "ROP_OR": 1, + "__DEFAULT": "ROP_AND" + } + } + } + }, + "2131170360": { + "name": "class PipCinematicActor", + "bases": [ + "CinematicActor", + "PropertyClass" + ], + "hash": 2131170360, + "properties": {} + }, + "2129848281": { + "name": "class FishingLevelInfo", + "bases": [ + "PropertyClass" + ], + "hash": 2129848281, + "properties": { + "m_level": { + "type": "unsigned char", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1438884808 + }, + "m_xpToLevel": { + "type": "int", + "id": 1, + "offset": 76, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1972600157 + }, + "m_levelName": { + "type": "std::string", + "id": 2, + "offset": 80, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3595417396 + } + } + }, + "849907231": { + "name": "class ConicalSoundBehaviorTemplate*", + "bases": [ + "PositionalSoundBehaviorTemplate", + "SoundBehaviorTemplate", + "AreaBehaviorTemplate", + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 849907231, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + }, + "m_radius": { + "type": "float", + "id": 1, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 989410271 + }, + "m_category": { + "type": "enum AudioCategory", + "id": 2, + "offset": 124, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2951251982, + "enum_options": { + "AudioCategory_Irrelevent": 0, + "AudioCategory_Accoustic": 1, + "AudioCategory_Noise": 2, + "AudioCategory_Music": 3, + "AudioCategory_MusicAtSFXVolume": 4, + "AudioCategory_Dialog": 5, + "AudioCategory_UI": 6, + "AudioCategory_NoiseAtMusicVolume": 7 + } + }, + "m_exclusive": { + "type": "bool", + "id": 3, + "offset": 128, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 824383403 + }, + "m_active": { + "type": "bool", + "id": 4, + "offset": 129, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 239335471 + }, + "m_enableReqs": { + "type": "class SharedPointer", + "id": 5, + "offset": 136, + "flags": 263, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3158020443 + }, + "m_trackFilenameList": { + "type": "std::string", + "id": 6, + "offset": 152, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2531081709 + }, + "m_playList": { + "type": "class PlayListEntry*", + "id": 7, + "offset": 176, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 3907873161 + }, + "m_priority": { + "type": "int", + "id": 8, + "offset": 208, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1235205852 + }, + "m_volume": { + "type": "float", + "id": 9, + "offset": 200, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1162855023 + }, + "m_loopCount": { + "type": "int", + "id": 10, + "offset": 204, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 865634717 + }, + "m_progression": { + "type": "enum PlayList::Progression", + "id": 11, + "offset": 220, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3279400238, + "enum_options": { + "Sequence": 0, + "Random": 1, + "SequenceOnceOnly": 2, + "RandomNoRepeat": 3 + } + }, + "m_progressMin": { + "type": "float", + "id": 12, + "offset": 212, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1497550192 + }, + "m_progressMax": { + "type": "float", + "id": 13, + "offset": 216, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1497549938 + }, + "m_audioFilterSet": { + "type": "unsigned int", + "id": 14, + "offset": 224, + "flags": 33554439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 831339825 + }, + "m_animationNameFilter": { + "type": "std::string", + "id": 15, + "offset": 232, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2292854242 + }, + "m_functionallabel": { + "type": "std::string", + "id": 16, + "offset": 264, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3589331278 + }, + "m_innerRadius": { + "type": "float", + "id": 17, + "offset": 296, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 686816091 + }, + "m_inverted": { + "type": "bool", + "id": 18, + "offset": 300, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1034821044 + }, + "m_fInsideAngle": { + "type": "float", + "id": 19, + "offset": 304, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1114383840 + }, + "m_fOutsideAngle": { + "type": "float", + "id": 20, + "offset": 308, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1627152289 + }, + "m_fOutsideVolume": { + "type": "float", + "id": 21, + "offset": 312, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 90369618 + }, + "m_fRangeScale": { + "type": "float", + "id": 22, + "offset": 316, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1749294034 + }, + "m_fAttenuationFactor": { + "type": "float", + "id": 23, + "offset": 320, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 273292776 + }, + "m_eAttenuationType": { + "type": "enum PositionInfoAttenuationType", + "id": 24, + "offset": 324, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2427193304, + "enum_options": { + "Standard": 0, + "Unit Range Power": 1 + } + } + } + }, + "2129571857": { + "name": "class SharedPointer", + "bases": [ + "PhysicsSimMassCylinder", + "PhysicsSimMassSphere", + "PhysicsSimMass", + "PropertyClass" + ], + "hash": 2129571857, + "properties": {} + }, + "72039": { + "name": "gid", + "bases": [], + "hash": 72039, + "properties": {} + }, + "849287959": { + "name": "class FontGlyphis*", + "bases": [ + "Font", + "PropertyClass" + ], + "hash": 849287959, + "properties": { + "m_sFilename": { + "type": "std::string", + "id": 0, + "offset": 160, + "flags": 131207, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2431512111 + }, + "m_fScale": { + "type": "float", + "id": 1, + "offset": 192, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 503137701 + }, + "m_nKerningAdjust": { + "type": "int", + "id": 2, + "offset": 200, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 287732353 + } + } + }, + "1697787351": { + "name": "class EquipmentBehaviorTemplate*", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 1697787351, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + }, + "m_itemList": { + "type": "unsigned int", + "id": 1, + "offset": 120, + "flags": 33554439, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1892907768 + }, + "m_equipmentTemplate": { + "type": "std::string", + "id": 2, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2464606287 + }, + "m_infoList": { + "type": "class SharedPointer", + "id": 3, + "offset": 136, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1525681909 + } + } + }, + "1256009605": { + "name": "class ReqCanAddExpansion*", + "bases": [ + "Requirement", + "PropertyClass" + ], + "hash": 1256009605, + "properties": { + "m_applyNOT": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1746328074, + "enum_options": { + "__DEFAULT": 0 + } + }, + "m_operator": { + "type": "enum Requirement::Operator", + "id": 1, + "offset": 76, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2672792317, + "enum_options": { + "ROP_AND": 0, + "ROP_OR": 1, + "__DEFAULT": "ROP_AND" + } + }, + "m_category": { + "type": "enum ExpansionData::Category", + "id": 2, + "offset": 80, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2705349254, + "enum_options": { + "ExpansionData::EDC_Bank": 0, + "ExpansionData::EDC_FriendsList": 1 + } + } + } + }, + "2129482934": { + "name": "class PetDerbyObstacleBehaviorClient*", + "bases": [ + "PetDerbyObstacleBehavior", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 2129482934, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_laneNumber": { + "type": "int", + "id": 1, + "offset": 184, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 650028867 + }, + "m_distanceFromStart": { + "type": "int", + "id": 2, + "offset": 188, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 649349799 + } + } + }, + "26754": { + "name": "bf8", + "bases": [], + "hash": 26754, + "properties": {} + }, + "1253739146": { + "name": "class SharedPointer", + "bases": [ + "ConditionalSpellEffectRequirement", + "Requirement", + "PropertyClass" + ], + "hash": 1253739146, + "properties": { + "m_applyNOT": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1746328074, + "enum_options": { + "__DEFAULT": 0 + } + }, + "m_operator": { + "type": "enum Requirement::Operator", + "id": 1, + "offset": 76, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2672792317, + "enum_options": { + "ROP_AND": 0, + "ROP_OR": 1, + "__DEFAULT": "ROP_AND" + } + }, + "m_targetType": { + "type": "enum ConditionalSpellEffectRequirement::RequirementTarget", + "id": 2, + "offset": 80, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547737902, + "enum_options": { + "RT_Caster": 0, + "RT_Target": 1 + } + }, + "m_effectType": { + "type": "enum SpellEffect::kSpellEffects", + "id": 3, + "offset": 88, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2578255295, + "enum_options": { + "SpellEffect::kInvalidSpellEffect": 0, + "SpellEffect::kAbsorbDamage": 37, + "SpellEffect::kAbsorbHeal": 38, + "SpellEffect::kAddCombatTriggerList": 87, + "SpellEffect::kAfterlife": 82, + "SpellEffect::kBacklashDamage": 89, + "SpellEffect::kBounceAll": 36, + "SpellEffect::kBounceBack": 35, + "SpellEffect::kBounceNext": 33, + "SpellEffect::kBouncePrevious": 34, + "SpellEffect::kCloakedCharm": 42, + "SpellEffect::kCloakedWard": 43, + "SpellEffect::kCloakedWardNoRemove": 86, + "SpellEffect::kConfusion": 41, + "SpellEffect::kConfusionBlock": 109, + "SpellEffect::kCritBlock": 47, + "SpellEffect::kCritBoost": 46, + "SpellEffect::kCritBoostSchoolSpecific": 97, + "SpellEffect::kDamage": 1, + "SpellEffect::kDamageNoCrit": 2, + "SpellEffect::kDamageOverTime": 75, + "SpellEffect::kDamagePerTotalPipPower": 84, + "SpellEffect::kDampen": 68, + "SpellEffect::kDeferredDamage": 83, + "SpellEffect::kDelayCast": 49, + "SpellEffect::kDetonateOverTime": 7, + "SpellEffect::kDispel": 40, + "SpellEffect::kDivideDamage": 105, + "SpellEffect::kHeal": 3, + "SpellEffect::kHealOverTime": 76, + "SpellEffect::kInstantKill": 81, + "SpellEffect::kIntercept": 91, + "SpellEffect::kMaxHealthDamage": 112, + "SpellEffect::kMaximumIncomingDamage": 23, + "SpellEffect::kMindControl": 70, + "SpellEffect::kModifyAccuracy": 39, + "SpellEffect::kModifyBacklash": 90, + "SpellEffect::kModifyCardAccuracy": 53, + "SpellEffect::kModifyCardArmorPiercing": 56, + "SpellEffect::kModifyCardCloak": 50, + "SpellEffect::kModifyCardDamage": 51, + "SpellEffect::kModifyCardMutation": 54, + "SpellEffect::kModifyCardRank": 55, + "SpellEffect::kModifyHate": 74, + "SpellEffect::kModifyIncomingArmorPiercing": 26, + "SpellEffect::kModifyIncomingDamage": 22, + "SpellEffect::kModifyIncomingDamageFlat": 119, + "SpellEffect::kModifyIncomingDamageType": 25, + "SpellEffect::kModifyIncomingHeal": 24, + "SpellEffect::kModifyIncomingHealFlat": 118, + "SpellEffect::kModifyIncomingHealOverTime": 138, + "SpellEffect::kModifyOutgoingArmorPiercing": 30, + "SpellEffect::kModifyOutgoingDamage": 27, + "SpellEffect::kModifyOutgoingDamageFlat": 121, + "SpellEffect::kModifyOutgoingDamageType": 29, + "SpellEffect::kModifyOutgoingHeal": 28, + "SpellEffect::kModifyOutgoingHealFlat": 120, + "SpellEffect::kModifyOutgoingStealHealth": 31, + "SpellEffect::kModifyPipRoundRate": 110, + "SpellEffect::kModifyPips": 71, + "SpellEffect::kModifyPowerPipChance": 77, + "SpellEffect::kModifyPowerPips": 72, + "SpellEffect::kModifyRank": 78, + "SpellEffect::kModifyShadowCreatureLevel": 94, + "SpellEffect::kModifyShadowPips": 73, + "SpellEffect::kPipConversion": 45, + "SpellEffect::kPolymorph": 48, + "SpellEffect::kPowerPipConversion": 100, + "SpellEffect::kProtectBeneficial": 103, + "SpellEffect::kProtectCardBeneficial": 101, + "SpellEffect::kProtectCardHarmful": 102, + "SpellEffect::kProtectHarmful": 104, + "SpellEffect::kPushCharm": 8, + "SpellEffect::kPushOverTime": 12, + "SpellEffect::kPushWard": 10, + "SpellEffect::kReduceOverTime": 6, + "SpellEffect::kRemoveAura": 17, + "SpellEffect::kRemoveCharm": 14, + "SpellEffect::kRemoveCombatTriggerList": 88, + "SpellEffect::kRemoveOverTime": 16, + "SpellEffect::kRemoveWard": 15, + "SpellEffect::kReshuffle": 69, + "SpellEffect::kRevealCloak": 80, + "SpellEffect::kSelectShadowCreatureAttackTarget": 95, + "SpellEffect::kShadowCreature": 93, + "SpellEffect::kShadowDecrementTurn": 96, + "SpellEffect::kShadowSelf": 92, + "SpellEffect::kSpawnCreature": 98, + "SpellEffect::kStealCharm": 9, + "SpellEffect::kStealHealth": 5, + "SpellEffect::kStealOverTime": 13, + "SpellEffect::kStealWard": 11, + "SpellEffect::kStun": 67, + "SpellEffect::kStunBlock": 79, + "SpellEffect::kStunResist": 44, + "SpellEffect::kSummonCreature": 65, + "SpellEffect::kSwapCharm": 19, + "SpellEffect::kSwapOverTime": 21, + "SpellEffect::kSwapWard": 20, + "SpellEffect::kTeleportPlayer": 66, + "SpellEffect::kUnPolymorph": 99, + "SpellEffect::kMaxHealthHeal": 129, + "SpellEffect::kHealByWard": 130, + "SpellEffect::kTaunt": 131, + "SpellEffect::kPacify": 132 + } + }, + "m_param_low": { + "type": "int", + "id": 4, + "offset": 92, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1624315676 + }, + "m_param_high": { + "type": "int", + "id": 5, + "offset": 96, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2059828426 + }, + "m_min_count": { + "type": "int", + "id": 6, + "offset": 100, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 741023238 + }, + "m_max_count": { + "type": "int", + "id": 7, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1273157256 + } + } + }, + "1252946751": { + "name": "class AlchemyStationOption*", + "bases": [ + "ServiceOptionBase", + "PropertyClass" + ], + "hash": 1252946751, + "properties": { + "m_serviceName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2206028813 + }, + "m_iconKey": { + "type": "std::string", + "id": 1, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2457138637 + }, + "m_displayKey": { + "type": "std::string", + "id": 2, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3023276954 + }, + "m_serviceIndex": { + "type": "unsigned int", + "id": 3, + "offset": 204, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2103126710 + }, + "m_forceInteract": { + "type": "bool", + "id": 4, + "offset": 200, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1705789564 + } + } + }, + "849913375": { + "name": "class ConicalSoundBehaviorTemplate", + "bases": [ + "PositionalSoundBehaviorTemplate", + "SoundBehaviorTemplate", + "AreaBehaviorTemplate", + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 849913375, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + }, + "m_radius": { + "type": "float", + "id": 1, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 989410271 + }, + "m_category": { + "type": "enum AudioCategory", + "id": 2, + "offset": 124, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2951251982, + "enum_options": { + "AudioCategory_Irrelevent": 0, + "AudioCategory_Accoustic": 1, + "AudioCategory_Noise": 2, + "AudioCategory_Music": 3, + "AudioCategory_MusicAtSFXVolume": 4, + "AudioCategory_Dialog": 5, + "AudioCategory_UI": 6, + "AudioCategory_NoiseAtMusicVolume": 7 + } + }, + "m_exclusive": { + "type": "bool", + "id": 3, + "offset": 128, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 824383403 + }, + "m_active": { + "type": "bool", + "id": 4, + "offset": 129, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 239335471 + }, + "m_enableReqs": { + "type": "class SharedPointer", + "id": 5, + "offset": 136, + "flags": 263, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3158020443 + }, + "m_trackFilenameList": { + "type": "std::string", + "id": 6, + "offset": 152, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2531081709 + }, + "m_playList": { + "type": "class PlayListEntry*", + "id": 7, + "offset": 176, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 3907873161 + }, + "m_priority": { + "type": "int", + "id": 8, + "offset": 208, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1235205852 + }, + "m_volume": { + "type": "float", + "id": 9, + "offset": 200, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1162855023 + }, + "m_loopCount": { + "type": "int", + "id": 10, + "offset": 204, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 865634717 + }, + "m_progression": { + "type": "enum PlayList::Progression", + "id": 11, + "offset": 220, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3279400238, + "enum_options": { + "Sequence": 0, + "Random": 1, + "SequenceOnceOnly": 2, + "RandomNoRepeat": 3 + } + }, + "m_progressMin": { + "type": "float", + "id": 12, + "offset": 212, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1497550192 + }, + "m_progressMax": { + "type": "float", + "id": 13, + "offset": 216, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1497549938 + }, + "m_audioFilterSet": { + "type": "unsigned int", + "id": 14, + "offset": 224, + "flags": 33554439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 831339825 + }, + "m_animationNameFilter": { + "type": "std::string", + "id": 15, + "offset": 232, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2292854242 + }, + "m_functionallabel": { + "type": "std::string", + "id": 16, + "offset": 264, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3589331278 + }, + "m_innerRadius": { + "type": "float", + "id": 17, + "offset": 296, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 686816091 + }, + "m_inverted": { + "type": "bool", + "id": 18, + "offset": 300, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1034821044 + }, + "m_fInsideAngle": { + "type": "float", + "id": 19, + "offset": 304, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1114383840 + }, + "m_fOutsideAngle": { + "type": "float", + "id": 20, + "offset": 308, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1627152289 + }, + "m_fOutsideVolume": { + "type": "float", + "id": 21, + "offset": 312, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 90369618 + }, + "m_fRangeScale": { + "type": "float", + "id": 22, + "offset": 316, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1749294034 + }, + "m_fAttenuationFactor": { + "type": "float", + "id": 23, + "offset": 320, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 273292776 + }, + "m_eAttenuationType": { + "type": "enum PositionInfoAttenuationType", + "id": 24, + "offset": 324, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2427193304, + "enum_options": { + "Standard": 0, + "Unit Range Power": 1 + } + } + } + }, + "1698481325": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1698481325, + "properties": { + "m_id": { + "type": "unsigned int", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2301988666 + }, + "m_flags": { + "type": "unsigned int", + "id": 1, + "offset": 76, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1005801050 + }, + "m_movedPosition": { + "type": "class Vector3D", + "id": 2, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3719762834 + }, + "m_movedYaw": { + "type": "float", + "id": 3, + "offset": 116, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1088556419 + }, + "m_movedScale": { + "type": "float", + "id": 4, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 569059130 + } + } + }, + "2129800984": { + "name": "class NonCombatMayCastSpellGameEffect", + "bases": [ + "GameEffectBase", + "PropertyClass" + ], + "hash": 2129800984, + "properties": { + "m_currentTickCount": { + "type": "double", + "id": 0, + "offset": 80, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2533274692 + }, + "m_effectNameID": { + "type": "unsigned int", + "id": 1, + "offset": 96, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1204067144 + }, + "m_bIsOnPet": { + "type": "bool", + "id": 2, + "offset": 73, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 522593303 + }, + "m_originatorID": { + "type": "gid", + "id": 3, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1131810019 + }, + "m_itemSlotID": { + "type": "unsigned int", + "id": 4, + "offset": 112, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1895747595 + }, + "m_internalID": { + "type": "int", + "id": 5, + "offset": 92, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1643137924 + }, + "m_endTime": { + "type": "unsigned int", + "id": 6, + "offset": 88, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 716479635 + }, + "m_spellName": { + "type": "std::string", + "id": 7, + "offset": 128, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2688485244 + }, + "m_percentChance": { + "type": "int", + "id": 8, + "offset": 160, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 385662509 + } + } + }, + "2129684441": { + "name": "class FishingLevelInfo*", + "bases": [ + "PropertyClass" + ], + "hash": 2129684441, + "properties": { + "m_level": { + "type": "unsigned char", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1438884808 + }, + "m_xpToLevel": { + "type": "int", + "id": 1, + "offset": 76, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1972600157 + }, + "m_levelName": { + "type": "std::string", + "id": 2, + "offset": 80, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3595417396 + } + } + }, + "569058": { + "name": "bui3", + "bases": [], + "hash": 569058, + "properties": {} + }, + "1253935442": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1253935442, + "properties": {} + }, + "536290": { + "name": "bui2", + "bases": [], + "hash": 536290, + "properties": {} + }, + "851672926": { + "name": "class BlueArenaItemsOption", + "bases": [ + "ServiceOptionBase", + "PropertyClass" + ], + "hash": 851672926, + "properties": { + "m_serviceName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2206028813 + }, + "m_iconKey": { + "type": "std::string", + "id": 1, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2457138637 + }, + "m_displayKey": { + "type": "std::string", + "id": 2, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3023276954 + }, + "m_serviceIndex": { + "type": "unsigned int", + "id": 3, + "offset": 204, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2103126710 + }, + "m_forceInteract": { + "type": "bool", + "id": 4, + "offset": 200, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1705789564 + } + } + }, + "1698769310": { + "name": "class TournamentInfo", + "bases": [ + "PropertyClass" + ], + "hash": 1698769310, + "properties": { + "m_tournamentID": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 695889746 + }, + "m_tournamentName": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3329241865 + }, + "m_tournamentNameID": { + "type": "unsigned int", + "id": 2, + "offset": 112, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1799846440 + } + } + }, + "851464473": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 851464473, + "properties": { + "m_name": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1717359772 + }, + "m_questNameID": { + "type": "unsigned int", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1530354349 + }, + "m_title": { + "type": "std::string", + "id": 2, + "offset": 112, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2308614141 + }, + "m_id": { + "type": "gid", + "id": 3, + "offset": 232, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2090569797 + }, + "m_type": { + "type": "int", + "id": 4, + "offset": 224, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 219902012 + }, + "m_level": { + "type": "int", + "id": 5, + "offset": 228, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 801285362 + }, + "m_mainline": { + "type": "bool", + "id": 6, + "offset": 241, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1749856224 + }, + "m_readyToTurnIn": { + "type": "bool", + "id": 7, + "offset": 242, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 562395883 + }, + "m_activityType": { + "type": "enum QuestTemplate::ActivityType", + "id": 8, + "offset": 244, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 231656390, + "enum_options": { + "QuestTemplate::ACTIVITY_NotActivity": 0, + "QuestTemplate::ACTIVITY_Spell": 1, + "QuestTemplate::ACTIVITY_Crafting": 2, + "QuestTemplate::ACTIVITY_Fishing": 3, + "QuestTemplate::ACTIVITY_Gardening": 4, + "QuestTemplate::ACTIVITY_Pet": 5 + } + }, + "m_skipQHAutoSelect": { + "type": "bool", + "id": 9, + "offset": 248, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2024815836 + }, + "m_goalList": { + "type": "class SharedPointer", + "id": 10, + "offset": 256, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 748820753 + } + } + }, + "1698769214": { + "name": "class TournamentInfo*", + "bases": [ + "PropertyClass" + ], + "hash": 1698769214, + "properties": { + "m_tournamentID": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 695889746 + }, + "m_tournamentName": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3329241865 + }, + "m_tournamentNameID": { + "type": "unsigned int", + "id": 2, + "offset": 112, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1799846440 + } + } + }, + "2129810295": { + "name": "class TeamHelpWorldInfo", + "bases": [ + "PropertyClass" + ], + "hash": 2129810295, + "properties": { + "m_buttonName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3388080120 + }, + "m_buttonStringKey": { + "type": "std::string", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3226477495 + }, + "m_displayIndex": { + "type": "int", + "id": 2, + "offset": 136, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1250551048 + }, + "m_minimumLevel": { + "type": "int", + "id": 3, + "offset": 140, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 327062478 + }, + "m_registryEntry": { + "type": "std::string", + "id": 4, + "offset": 144, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3056380390 + }, + "m_worldPath": { + "type": "std::string", + "id": 5, + "offset": 176, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1846829584 + }, + "m_spiralShowcaseStringKey": { + "type": "std::string", + "id": 6, + "offset": 208, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2723709283 + } + } + }, + "536698": { + "name": "class SharedPointer", + "bases": [ + "PathBehaviorTemplate::Action", + "PropertyClass" + ], + "hash": 536698, + "properties": { + "m_nPathID": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 214382368 + }, + "m_nNodeID": { + "type": "int", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 152152635, + "enum_options": { + "__DEFAULT": 4294967295 + } + }, + "m_nPriority": { + "type": "int", + "id": 2, + "offset": 84, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1515251530, + "enum_options": { + "__DEFAULT": 100 + } + }, + "m_nChance": { + "type": "int", + "id": 3, + "offset": 88, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1860748394, + "enum_options": { + "__DEFAULT": 50 + } + } + } + }, + "1256117560": { + "name": "class RandomPerTargetSpellEffect*", + "bases": [ + "RandomSpellEffect", + "SpellEffect", + "PropertyClass" + ], + "hash": 1256117560, + "properties": { + "m_effectType": { + "type": "enum SpellEffect::kSpellEffects", + "id": 0, + "offset": 72, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2578255295, + "enum_options": { + "kInvalidSpellEffect": 0, + "kDamage": 1, + "kDamageNoCrit": 2, + "kHeal": 3, + "kHealPercent": 4, + "kSetHealPercent": 113, + "kStealHealth": 5, + "kReduceOverTime": 6, + "kDetonateOverTime": 7, + "kPushCharm": 8, + "kStealCharm": 9, + "kPushWard": 10, + "kStealWard": 11, + "kPushOverTime": 12, + "kStealOverTime": 13, + "kRemoveCharm": 14, + "kRemoveWard": 15, + "kRemoveOverTime": 16, + "kRemoveAura": 17, + "kSwapAll": 18, + "kSwapCharm": 19, + "kSwapWard": 20, + "kSwapOverTime": 21, + "kModifyIncomingDamage": 22, + "kModifyIncomingDamageFlat": 119, + "kMaximumIncomingDamage": 23, + "kModifyIncomingHeal": 24, + "kModifyIncomingHealFlat": 118, + "kModifyIncomingDamageType": 25, + "kModifyIncomingArmorPiercing": 26, + "kModifyOutgoingDamage": 27, + "kModifyOutgoingDamageFlat": 121, + "kModifyOutgoingHeal": 28, + "kModifyOutgoingHealFlat": 120, + "kModifyOutgoingDamageType": 29, + "kModifyOutgoingArmorPiercing": 30, + "kModifyOutgoingStealHealth": 31, + "kModifyIncomingStealHealth": 32, + "kBounceNext": 33, + "kBouncePrevious": 34, + "kBounceBack": 35, + "kBounceAll": 36, + "kAbsorbDamage": 37, + "kAbsorbHeal": 38, + "kModifyAccuracy": 39, + "kDispel": 40, + "kConfusion": 41, + "kCloakedCharm": 42, + "kCloakedWard": 43, + "kStunResist": 44, + "kClue": 111, + "kPipConversion": 45, + "kCritBoost": 46, + "kCritBlock": 47, + "kPolymorph": 48, + "kDelayCast": 49, + "kModifyCardCloak": 50, + "kModifyCardDamage": 51, + "kModifyCardAccuracy": 53, + "kModifyCardMutation": 54, + "kModifyCardRank": 55, + "kModifyCardArmorPiercing": 56, + "kSummonCreature": 65, + "kTeleportPlayer": 66, + "kStun": 67, + "kDampen": 68, + "kReshuffle": 69, + "kMindControl": 70, + "kModifyPips": 71, + "kModifyPowerPips": 72, + "kModifyShadowPips": 73, + "kModifyHate": 74, + "kDamageOverTime": 75, + "kHealOverTime": 76, + "kModifyPowerPipChance": 77, + "kModifyRank": 78, + "kStunBlock": 79, + "kRevealCloak": 80, + "kInstantKill": 81, + "kAfterlife": 82, + "kDeferredDamage": 83, + "kDamagePerTotalPipPower": 84, + "kModifyCardHeal": 52, + "kModifyCardCharm": 57, + "kModifyCardWard": 58, + "kModifyCardOutgoingDamage": 59, + "kModifyCardOutgoingAccuracy": 60, + "kModifyCardOutgoingHeal": 61, + "kModifyCardOutgoingArmorPiercing": 62, + "kModifyCardIncomingDamage": 63, + "kModifyCardAbsorbDamage": 64, + "kCloakedWardNoRemove": 86, + "kAddCombatTriggerList": 87, + "kRemoveCombatTriggerList": 88, + "kBacklashDamage": 89, + "kModifyBacklash": 90, + "kIntercept": 91, + "kShadowSelf": 92, + "kShadowCreature": 93, + "kModifyShadowCreatureLevel": 94, + "kSelectShadowCreatureAttackTarget": 95, + "kShadowDecrementTurn": 96, + "kCritBoostSchoolSpecific": 97, + "kSpawnCreature": 98, + "kUnPolymorph": 99, + "kPowerPipConversion": 100, + "kProtectCardBeneficial": 101, + "kProtectCardHarmful": 102, + "kProtectBeneficial": 103, + "kProtectHarmful": 104, + "kDivideDamage": 105, + "kCollectEssence": 106, + "kKillCreature": 107, + "kDispelBlock": 108, + "kConfusionBlock": 109, + "kModifyPipRoundRate": 110, + "kMaxHealthDamage": 112, + "kUntargetable": 114, + "kMakeTargetable": 115, + "kForceTargetable": 116, + "kRemoveStunBlock": 117, + "kExitCombat": 122, + "kSuspendPips": 123, + "kResumePips": 124, + "kAutoPass": 125, + "kStopAutoPass": 126, + "kVanish": 127, + "kStopVanish": 128, + "kMaxHealthHeal": 129, + "kHealByWard": 130, + "kTaunt": 131, + "kPacify": 132, + "kRemoveTargetRestriction": 133, + "kConvertHangingEffect": 134, + "kAddSpellToDeck": 135, + "kAddSpellToHand": 136, + "kModifyIncomingDamageOverTime": 137, + "kModifyIncomingHealOverTime": 138, + "kModifyCardDamagebyRank": 139, + "kPushConvertedCharm": 140, + "kStealConvertedCharm": 141, + "kPushConvertedWard": 142, + "kStealConvertedWard": 143, + "kPushConvertedOverTime": 144, + "kStealConvertedOverTime": 145, + "kRemoveConvertedCharm": 146, + "kRemoveConvertedWard": 147, + "kRemoveConvertedOverTime": 148, + "kModifyOverTimeDuration": 149, + "kModifySchoolPips": 150 + } + }, + "m_effectParam": { + "type": "int", + "id": 1, + "offset": 76, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 357920024 + }, + "m_disposition": { + "type": "enum SpellEffect::kHangingDisposition", + "id": 2, + "offset": 80, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1904841031, + "enum_options": { + "kBoth": 0, + "kBeneficial": 1, + "kHarmful": 2 + } + }, + "m_sDamageType": { + "type": "std::string", + "id": 3, + "offset": 88, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2501054223 + }, + "m_damageType": { + "type": "unsigned int", + "id": 4, + "offset": 84, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 737882766 + }, + "m_pipNum": { + "type": "int", + "id": 5, + "offset": 128, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 830827539 + }, + "m_actNum": { + "type": "int", + "id": 6, + "offset": 132, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 236824866 + }, + "m_effectTarget": { + "type": "enum SpellEffect::kEffectTarget", + "id": 7, + "offset": 140, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2458940523, + "enum_options": { + "kInvalidTarget": 0, + "kSpell": 1, + "kSpecificSpells": 2, + "kGlobal": 3, + "kEnemyTeam": 4, + "kEnemyTeamAllAtOnce": 5, + "kFriendlyTeam": 6, + "kFriendlyTeamAllAtOnce": 7, + "kEnemySingle": 8, + "kFriendlySingle": 9, + "kMinion": 10, + "kFriendlyMinion": 17, + "kEnemyMinion": 18, + "kSelf": 11, + "kAtLeastOneEnemy": 13, + "kPreselectedEnemySingle": 12, + "kMultiTargetEnemy": 14, + "kMultiTargetFriendly": 15, + "kFriendlySingleNotMe": 16 + } + }, + "m_numRounds": { + "type": "int", + "id": 8, + "offset": 144, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1229753829 + }, + "m_paramPerRound": { + "type": "int", + "id": 9, + "offset": 148, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 683234234 + }, + "m_healModifier": { + "type": "float", + "id": 10, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1317921248, + "enum_options": { + "__DEFAULT": "1.0" + } + }, + "m_spellTemplateID": { + "type": "unsigned int", + "id": 11, + "offset": 120, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 585567702 + }, + "m_enchantmentSpellTemplateID": { + "type": "unsigned int", + "id": 12, + "offset": 124, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 246955115 + }, + "m_act": { + "type": "bool", + "id": 13, + "offset": 136, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 269510283 + }, + "m_cloaked": { + "type": "bool", + "id": 14, + "offset": 157, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 7349510 + }, + "m_bypassProtection": { + "type": "bool", + "id": 15, + "offset": 159, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1657138252 + }, + "m_armorPiercingParam": { + "type": "int", + "id": 16, + "offset": 160, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2025530205 + }, + "m_chancePerTarget": { + "type": "int", + "id": 17, + "offset": 164, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 845426794 + }, + "m_protected": { + "type": "bool", + "id": 18, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1445655037 + }, + "m_converted": { + "type": "bool", + "id": 19, + "offset": 169, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1590428797 + }, + "m_rank": { + "type": "int", + "id": 20, + "offset": 208, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 219803942 + }, + "m_effectList": { + "type": "class SharedPointer", + "id": 21, + "offset": 224, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 707154804 + } + } + }, + "1256117554": { + "name": "class RandomPerTargetSpellEffect", + "bases": [ + "RandomSpellEffect", + "SpellEffect", + "PropertyClass" + ], + "hash": 1256117554, + "properties": { + "m_effectType": { + "type": "enum SpellEffect::kSpellEffects", + "id": 0, + "offset": 72, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2578255295, + "enum_options": { + "kInvalidSpellEffect": 0, + "kDamage": 1, + "kDamageNoCrit": 2, + "kHeal": 3, + "kHealPercent": 4, + "kSetHealPercent": 113, + "kStealHealth": 5, + "kReduceOverTime": 6, + "kDetonateOverTime": 7, + "kPushCharm": 8, + "kStealCharm": 9, + "kPushWard": 10, + "kStealWard": 11, + "kPushOverTime": 12, + "kStealOverTime": 13, + "kRemoveCharm": 14, + "kRemoveWard": 15, + "kRemoveOverTime": 16, + "kRemoveAura": 17, + "kSwapAll": 18, + "kSwapCharm": 19, + "kSwapWard": 20, + "kSwapOverTime": 21, + "kModifyIncomingDamage": 22, + "kModifyIncomingDamageFlat": 119, + "kMaximumIncomingDamage": 23, + "kModifyIncomingHeal": 24, + "kModifyIncomingHealFlat": 118, + "kModifyIncomingDamageType": 25, + "kModifyIncomingArmorPiercing": 26, + "kModifyOutgoingDamage": 27, + "kModifyOutgoingDamageFlat": 121, + "kModifyOutgoingHeal": 28, + "kModifyOutgoingHealFlat": 120, + "kModifyOutgoingDamageType": 29, + "kModifyOutgoingArmorPiercing": 30, + "kModifyOutgoingStealHealth": 31, + "kModifyIncomingStealHealth": 32, + "kBounceNext": 33, + "kBouncePrevious": 34, + "kBounceBack": 35, + "kBounceAll": 36, + "kAbsorbDamage": 37, + "kAbsorbHeal": 38, + "kModifyAccuracy": 39, + "kDispel": 40, + "kConfusion": 41, + "kCloakedCharm": 42, + "kCloakedWard": 43, + "kStunResist": 44, + "kClue": 111, + "kPipConversion": 45, + "kCritBoost": 46, + "kCritBlock": 47, + "kPolymorph": 48, + "kDelayCast": 49, + "kModifyCardCloak": 50, + "kModifyCardDamage": 51, + "kModifyCardAccuracy": 53, + "kModifyCardMutation": 54, + "kModifyCardRank": 55, + "kModifyCardArmorPiercing": 56, + "kSummonCreature": 65, + "kTeleportPlayer": 66, + "kStun": 67, + "kDampen": 68, + "kReshuffle": 69, + "kMindControl": 70, + "kModifyPips": 71, + "kModifyPowerPips": 72, + "kModifyShadowPips": 73, + "kModifyHate": 74, + "kDamageOverTime": 75, + "kHealOverTime": 76, + "kModifyPowerPipChance": 77, + "kModifyRank": 78, + "kStunBlock": 79, + "kRevealCloak": 80, + "kInstantKill": 81, + "kAfterlife": 82, + "kDeferredDamage": 83, + "kDamagePerTotalPipPower": 84, + "kModifyCardHeal": 52, + "kModifyCardCharm": 57, + "kModifyCardWard": 58, + "kModifyCardOutgoingDamage": 59, + "kModifyCardOutgoingAccuracy": 60, + "kModifyCardOutgoingHeal": 61, + "kModifyCardOutgoingArmorPiercing": 62, + "kModifyCardIncomingDamage": 63, + "kModifyCardAbsorbDamage": 64, + "kCloakedWardNoRemove": 86, + "kAddCombatTriggerList": 87, + "kRemoveCombatTriggerList": 88, + "kBacklashDamage": 89, + "kModifyBacklash": 90, + "kIntercept": 91, + "kShadowSelf": 92, + "kShadowCreature": 93, + "kModifyShadowCreatureLevel": 94, + "kSelectShadowCreatureAttackTarget": 95, + "kShadowDecrementTurn": 96, + "kCritBoostSchoolSpecific": 97, + "kSpawnCreature": 98, + "kUnPolymorph": 99, + "kPowerPipConversion": 100, + "kProtectCardBeneficial": 101, + "kProtectCardHarmful": 102, + "kProtectBeneficial": 103, + "kProtectHarmful": 104, + "kDivideDamage": 105, + "kCollectEssence": 106, + "kKillCreature": 107, + "kDispelBlock": 108, + "kConfusionBlock": 109, + "kModifyPipRoundRate": 110, + "kMaxHealthDamage": 112, + "kUntargetable": 114, + "kMakeTargetable": 115, + "kForceTargetable": 116, + "kRemoveStunBlock": 117, + "kExitCombat": 122, + "kSuspendPips": 123, + "kResumePips": 124, + "kAutoPass": 125, + "kStopAutoPass": 126, + "kVanish": 127, + "kStopVanish": 128, + "kMaxHealthHeal": 129, + "kHealByWard": 130, + "kTaunt": 131, + "kPacify": 132, + "kRemoveTargetRestriction": 133, + "kConvertHangingEffect": 134, + "kAddSpellToDeck": 135, + "kAddSpellToHand": 136, + "kModifyIncomingDamageOverTime": 137, + "kModifyIncomingHealOverTime": 138, + "kModifyCardDamagebyRank": 139, + "kPushConvertedCharm": 140, + "kStealConvertedCharm": 141, + "kPushConvertedWard": 142, + "kStealConvertedWard": 143, + "kPushConvertedOverTime": 144, + "kStealConvertedOverTime": 145, + "kRemoveConvertedCharm": 146, + "kRemoveConvertedWard": 147, + "kRemoveConvertedOverTime": 148, + "kModifyOverTimeDuration": 149, + "kModifySchoolPips": 150 + } + }, + "m_effectParam": { + "type": "int", + "id": 1, + "offset": 76, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 357920024 + }, + "m_disposition": { + "type": "enum SpellEffect::kHangingDisposition", + "id": 2, + "offset": 80, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1904841031, + "enum_options": { + "kBoth": 0, + "kBeneficial": 1, + "kHarmful": 2 + } + }, + "m_sDamageType": { + "type": "std::string", + "id": 3, + "offset": 88, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2501054223 + }, + "m_damageType": { + "type": "unsigned int", + "id": 4, + "offset": 84, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 737882766 + }, + "m_pipNum": { + "type": "int", + "id": 5, + "offset": 128, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 830827539 + }, + "m_actNum": { + "type": "int", + "id": 6, + "offset": 132, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 236824866 + }, + "m_effectTarget": { + "type": "enum SpellEffect::kEffectTarget", + "id": 7, + "offset": 140, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2458940523, + "enum_options": { + "kInvalidTarget": 0, + "kSpell": 1, + "kSpecificSpells": 2, + "kGlobal": 3, + "kEnemyTeam": 4, + "kEnemyTeamAllAtOnce": 5, + "kFriendlyTeam": 6, + "kFriendlyTeamAllAtOnce": 7, + "kEnemySingle": 8, + "kFriendlySingle": 9, + "kMinion": 10, + "kFriendlyMinion": 17, + "kEnemyMinion": 18, + "kSelf": 11, + "kAtLeastOneEnemy": 13, + "kPreselectedEnemySingle": 12, + "kMultiTargetEnemy": 14, + "kMultiTargetFriendly": 15, + "kFriendlySingleNotMe": 16 + } + }, + "m_numRounds": { + "type": "int", + "id": 8, + "offset": 144, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1229753829 + }, + "m_paramPerRound": { + "type": "int", + "id": 9, + "offset": 148, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 683234234 + }, + "m_healModifier": { + "type": "float", + "id": 10, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1317921248, + "enum_options": { + "__DEFAULT": "1.0" + } + }, + "m_spellTemplateID": { + "type": "unsigned int", + "id": 11, + "offset": 120, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 585567702 + }, + "m_enchantmentSpellTemplateID": { + "type": "unsigned int", + "id": 12, + "offset": 124, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 246955115 + }, + "m_act": { + "type": "bool", + "id": 13, + "offset": 136, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 269510283 + }, + "m_cloaked": { + "type": "bool", + "id": 14, + "offset": 157, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 7349510 + }, + "m_bypassProtection": { + "type": "bool", + "id": 15, + "offset": 159, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1657138252 + }, + "m_armorPiercingParam": { + "type": "int", + "id": 16, + "offset": 160, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2025530205 + }, + "m_chancePerTarget": { + "type": "int", + "id": 17, + "offset": 164, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 845426794 + }, + "m_protected": { + "type": "bool", + "id": 18, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1445655037 + }, + "m_converted": { + "type": "bool", + "id": 19, + "offset": 169, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1590428797 + }, + "m_rank": { + "type": "int", + "id": 20, + "offset": 208, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 219803942 + }, + "m_effectList": { + "type": "class SharedPointer", + "id": 21, + "offset": 224, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 707154804 + } + } + }, + "851672950": { + "name": "class BlueArenaItemsOption*", + "bases": [ + "ServiceOptionBase", + "PropertyClass" + ], + "hash": 851672950, + "properties": { + "m_serviceName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2206028813 + }, + "m_iconKey": { + "type": "std::string", + "id": 1, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2457138637 + }, + "m_displayKey": { + "type": "std::string", + "id": 2, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3023276954 + }, + "m_serviceIndex": { + "type": "unsigned int", + "id": 3, + "offset": 204, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2103126710 + }, + "m_forceInteract": { + "type": "bool", + "id": 4, + "offset": 200, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1705789564 + } + } + }, + "1699928593": { + "name": "class CantripsInvisibilityEffectTemplate*", + "bases": [ + "GameEffectTemplate", + "PropertyClass" + ], + "hash": 1699928593, + "properties": { + "m_effectName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2029161513 + }, + "m_effectCategory": { + "type": "std::string", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1852673222 + }, + "m_sortOrder": { + "type": "int", + "id": 2, + "offset": 148, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1411218206 + }, + "m_duration": { + "type": "double", + "id": 3, + "offset": 192, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2727932435 + }, + "m_stackingCategories": { + "type": "std::string", + "id": 4, + "offset": 160, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1774497525 + }, + "m_isPersistent": { + "type": "bool", + "id": 5, + "offset": 153, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 923861920 + }, + "m_bIsOnPet": { + "type": "bool", + "id": 6, + "offset": 154, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 522593303 + }, + "m_isPublic": { + "type": "bool", + "id": 7, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1728439822 + }, + "m_visualEffectAddName": { + "type": "std::string", + "id": 8, + "offset": 200, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3382086694 + }, + "m_visualEffectRemoveName": { + "type": "std::string", + "id": 9, + "offset": 232, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1541697323 + }, + "m_onAddFunctorName": { + "type": "std::string", + "id": 10, + "offset": 280, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1561843107 + }, + "m_onRemoveFunctorName": { + "type": "std::string", + "id": 11, + "offset": 312, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2559017864 + }, + "m_stackingRule": { + "type": "enum STACKING_RULE", + "id": 12, + "offset": 144, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 431568889, + "enum_options": { + "STACKING_ALLOWED": 0, + "STACKING_NOSTACK": 1, + "STACKING_REPLACE": 2 + } + } + } + }, + "2130303378": { + "name": "class ClientDerbyMoraleByTerrainEffect", + "bases": [ + "DerbyMoraleByTerrainEffect", + "DerbyEffect", + "PropertyClass" + ], + "hash": 2130303378, + "properties": { + "m_buffType": { + "type": "enum DerbyTalentBuffType", + "id": 0, + "offset": 92, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1149251982, + "enum_options": { + "Buff": 0, + "Debuff": 1, + "Neither": 2 + } + }, + "m_kTarget": { + "type": "enum DerbyTargetType", + "id": 1, + "offset": 96, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1807803351, + "enum_options": { + "kTargetInFront": 0, + "kTargetBehind": 1, + "kTargetFirst": 2, + "kTargetSelf": 3, + "kTargetAll": 4, + "kTargetLast": 5 + } + }, + "m_nDuration": { + "type": "int", + "id": 2, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1110167982 + }, + "m_effectID": { + "type": "unsigned int", + "id": 3, + "offset": 88, + "flags": 24, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2347630439 + }, + "m_imageFilename": { + "type": "std::string", + "id": 4, + "offset": 112, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2813328063 + }, + "m_iconIndex": { + "type": "unsigned int", + "id": 5, + "offset": 144, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1265133262 + }, + "m_soundOnActivate": { + "type": "std::string", + "id": 6, + "offset": 152, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1956929714 + }, + "m_soundOnTarget": { + "type": "std::string", + "id": 7, + "offset": 184, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3444214056 + }, + "m_targetParticleEffect": { + "type": "std::string", + "id": 8, + "offset": 216, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3048234723 + }, + "m_overheadMessage": { + "type": "std::string", + "id": 9, + "offset": 248, + "flags": 8388639, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1701018190 + }, + "m_requirements": { + "type": "class RequirementList", + "id": 10, + "offset": 280, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2840988582 + } + } + }, + "667362": { + "name": "bui6", + "bases": [], + "hash": 667362, + "properties": {} + }, + "1699926033": { + "name": "class CantripsInvisibilityEffectTemplate", + "bases": [ + "GameEffectTemplate", + "PropertyClass" + ], + "hash": 1699926033, + "properties": { + "m_effectName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2029161513 + }, + "m_effectCategory": { + "type": "std::string", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1852673222 + }, + "m_sortOrder": { + "type": "int", + "id": 2, + "offset": 148, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1411218206 + }, + "m_duration": { + "type": "double", + "id": 3, + "offset": 192, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2727932435 + }, + "m_stackingCategories": { + "type": "std::string", + "id": 4, + "offset": 160, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1774497525 + }, + "m_isPersistent": { + "type": "bool", + "id": 5, + "offset": 153, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 923861920 + }, + "m_bIsOnPet": { + "type": "bool", + "id": 6, + "offset": 154, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 522593303 + }, + "m_isPublic": { + "type": "bool", + "id": 7, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1728439822 + }, + "m_visualEffectAddName": { + "type": "std::string", + "id": 8, + "offset": 200, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3382086694 + }, + "m_visualEffectRemoveName": { + "type": "std::string", + "id": 9, + "offset": 232, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1541697323 + }, + "m_onAddFunctorName": { + "type": "std::string", + "id": 10, + "offset": 280, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1561843107 + }, + "m_onRemoveFunctorName": { + "type": "std::string", + "id": 11, + "offset": 312, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2559017864 + }, + "m_stackingRule": { + "type": "enum STACKING_RULE", + "id": 12, + "offset": 144, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 431568889, + "enum_options": { + "STACKING_ALLOWED": 0, + "STACKING_NOSTACK": 1, + "STACKING_REPLACE": 2 + } + } + } + }, + "2130180086": { + "name": "class FXDef*", + "bases": [ + "PropertyClass" + ], + "hash": 2130180086, + "properties": { + "m_FXFile": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2810683385 + }, + "m_stackingCategory": { + "type": "std::string", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2363740365 + }, + "m_repeatTime": { + "type": "float", + "id": 2, + "offset": 136, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 453389511 + } + } + }, + "852084037": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 852084037, + "properties": {} + }, + "1256327983": { + "name": "class ClientPvPStatueBehavior*", + "bases": [ + "PvPStatueBehavior", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1256327983, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_targetLeague": { + "type": "std::string", + "id": 1, + "offset": 112, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3312829397 + }, + "m_rank": { + "type": "int", + "id": 2, + "offset": 144, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 219803942 + }, + "m_refreshRateSec": { + "type": "int", + "id": 3, + "offset": 148, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 418402320 + }, + "m_groundOffset": { + "type": "float", + "id": 4, + "offset": 152, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 684524077 + }, + "m_yaw": { + "type": "float", + "id": 5, + "offset": 156, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 357256328 + }, + "m_showNametag": { + "type": "bool", + "id": 6, + "offset": 160, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 584664753 + }, + "m_showInGrace": { + "type": "bool", + "id": 7, + "offset": 161, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1033917517 + }, + "m_showActive": { + "type": "bool", + "id": 8, + "offset": 162, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 685431312 + }, + "m_scale": { + "type": "float", + "id": 9, + "offset": 164, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 899693439 + }, + "m_alpha": { + "type": "float", + "id": 10, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 878686493 + }, + "m_animDelaySec": { + "type": "float", + "id": 11, + "offset": 172, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2131058854 + }, + "m_animChance": { + "type": "float", + "id": 12, + "offset": 176, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 434823806 + }, + "m_animList": { + "type": "std::string", + "id": 13, + "offset": 184, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2531745852 + }, + "m_leagueID": { + "type": "unsigned int", + "id": 14, + "offset": 200, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 692361645 + }, + "m_seasonID": { + "type": "unsigned int", + "id": 15, + "offset": 204, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 535260643 + }, + "m_startTime": { + "type": "unsigned int", + "id": 16, + "offset": 208, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1598371274 + }, + "m_visualBlob": { + "type": "std::string", + "id": 17, + "offset": 216, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1691722510 + } + } + }, + "2130025093": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 2130025093, + "properties": { + "m_spellID": { + "type": "unsigned int", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1697483258 + }, + "m_isRetired": { + "type": "bool", + "id": 1, + "offset": 76, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 952245726 + }, + "m_tieredSpellGroupIndex": { + "type": "int", + "id": 2, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 859458588 + } + } + }, + "1256226534": { + "name": "class SharedPointer", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1256226534, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + } + } + }, + "765666": { + "name": "bui5", + "bases": [], + "hash": 765666, + "properties": {} + }, + "732898": { + "name": "bui4", + "bases": [], + "hash": 732898, + "properties": {} + }, + "914607657": { + "name": "class SharedPointer", + "bases": [ + "ServiceOptionBase", + "PropertyClass" + ], + "hash": 914607657, + "properties": { + "m_serviceName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2206028813 + }, + "m_iconKey": { + "type": "std::string", + "id": 1, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2457138637 + }, + "m_displayKey": { + "type": "std::string", + "id": 2, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3023276954 + }, + "m_serviceIndex": { + "type": "unsigned int", + "id": 3, + "offset": 204, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2103126710 + }, + "m_forceInteract": { + "type": "bool", + "id": 4, + "offset": 200, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1705789564 + } + } + }, + "1701548937": { + "name": "class MagicXPLootInfo*", + "bases": [ + "LootInfo", + "LootInfoBase", + "PropertyClass" + ], + "hash": 1701548937, + "properties": { + "m_lootType": { + "type": "enum LootInfo::LOOT_TYPE", + "id": 0, + "offset": 72, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1591891442, + "enum_options": { + "LOOT_TYPE_NONE": 0, + "LOOT_TYPE_GOLD": 1, + "LOOT_TYPE_MANA": 2, + "LOOT_TYPE_ITEM": 3, + "LOOT_TYPE_TREASURE_CARD": 4, + "LOOT_TYPE_MAGIC_XP": 5, + "LOOT_TYPE_ADD_SPELL": 6, + "LOOT_TYPE_MAX_HEALTH": 7, + "LOOT_TYPE_MAX_GOLD": 8, + "LOOT_TYPE_MAX_MANA": 9, + "LOOT_TYPE_MAX_POTION": 10, + "LOOT_TYPE_TRAINING_POINTS": 11, + "LOOT_TYPE_RECIPE": 12, + "LOOT_TYPE_CRAFTING_SLOT": 13, + "LOOT_TYPE_REAGENT": 14, + "LOOT_TYPE_PETSNACK": 15, + "LOOT_TYPE_GARDENING_XP": 16, + "LOOT_TYPE_PET_XP": 17, + "LOOT_TYPE_TREASURE_TABLE": 18, + "LOOT_TYPE_ARENA_POINTS": 19, + "LOOT_TYPE_ARENA_BONUS_POINTS": 20, + "LOOT_TYPE_GROUP": 21, + "LOOT_TYPE_FISHING_XP": 22, + "LOOT_TYPE_EVENT_CURRENCY_1": 24, + "LOOT_TYPE_EVENT_CURRENCY_2": 25, + "LOOT_TYPE_PVP_CURRENCY": 26, + "LOOT_TYPE_PVP_CURRENCY_BONUS": 27, + "LOOT_TYPE_PVP_TOURNEY_CURRENCY": 28, + "LOOT_TYPE_PVP_TOURNEY_CURRENCY_BONUS": 29, + "LOOT_TYPE_FURNITURE_ESSENCE": 30 + } + }, + "m_magicSchool": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1597012900 + }, + "m_experience": { + "type": "int", + "id": 2, + "offset": 112, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 759357570 + } + } + }, + "725087": { + "name": "class DerbyLockLane", + "bases": [ + "DerbyEffect", + "PropertyClass" + ], + "hash": 725087, + "properties": { + "m_buffType": { + "type": "enum DerbyTalentBuffType", + "id": 0, + "offset": 92, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1149251982, + "enum_options": { + "Buff": 0, + "Debuff": 1, + "Neither": 2 + } + }, + "m_kTarget": { + "type": "enum DerbyTargetType", + "id": 1, + "offset": 96, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1807803351, + "enum_options": { + "kTargetInFront": 0, + "kTargetBehind": 1, + "kTargetFirst": 2, + "kTargetSelf": 3, + "kTargetAll": 4, + "kTargetLast": 5 + } + }, + "m_nDuration": { + "type": "int", + "id": 2, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1110167982 + }, + "m_effectID": { + "type": "unsigned int", + "id": 3, + "offset": 88, + "flags": 24, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2347630439 + }, + "m_imageFilename": { + "type": "std::string", + "id": 4, + "offset": 112, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2813328063 + }, + "m_iconIndex": { + "type": "unsigned int", + "id": 5, + "offset": 144, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1265133262 + }, + "m_soundOnActivate": { + "type": "std::string", + "id": 6, + "offset": 152, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1956929714 + }, + "m_soundOnTarget": { + "type": "std::string", + "id": 7, + "offset": 184, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3444214056 + }, + "m_targetParticleEffect": { + "type": "std::string", + "id": 8, + "offset": 216, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3048234723 + }, + "m_overheadMessage": { + "type": "std::string", + "id": 9, + "offset": 248, + "flags": 8388639, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1701018190 + }, + "m_requirements": { + "type": "class RequirementList", + "id": 10, + "offset": 280, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2840988582 + } + } + }, + "893740735": { + "name": "class ArenaItemsOption*", + "bases": [ + "ServiceOptionBase", + "PropertyClass" + ], + "hash": 893740735, + "properties": { + "m_serviceName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2206028813 + }, + "m_iconKey": { + "type": "std::string", + "id": 1, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2457138637 + }, + "m_displayKey": { + "type": "std::string", + "id": 2, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3023276954 + }, + "m_serviceIndex": { + "type": "unsigned int", + "id": 3, + "offset": 204, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2103126710 + }, + "m_forceInteract": { + "type": "bool", + "id": 4, + "offset": 200, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1705789564 + } + } + }, + "1700989073": { + "name": "class SharedPointer", + "bases": [ + "Window", + "PropertyClass" + ], + "hash": 1700989073, + "properties": { + "m_sName": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306437263 + }, + "m_Children": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621225959 + }, + "m_Style": { + "type": "unsigned int", + "id": 2, + "offset": 152, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "SCALE_CHILDREN": 2, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "FOCUS_LOCKED": 64, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152 + } + }, + "m_Flags": { + "type": "unsigned int", + "id": 3, + "offset": 156, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } + }, + "m_Window": { + "type": "class Rect", + "id": 4, + "offset": 160, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3105139380 + }, + "m_fTargetAlpha": { + "type": "float", + "id": 5, + "offset": 212, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1809129834 + }, + "m_fDisabledAlpha": { + "type": "float", + "id": 6, + "offset": 216, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1389987675 + }, + "m_fAlpha": { + "type": "float", + "id": 7, + "offset": 208, + "flags": 65671, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 482130755 + }, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3623628394 + }, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2102211316 + }, + "m_sScript": { + "type": "std::string", + "id": 10, + "offset": 352, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1846695875 + }, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3389835433 + }, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547159940 + }, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513510520 + }, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3091503757 + }, + "m_fPosition": { + "type": "float", + "id": 16, + "offset": 584, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1808212114 + }, + "m_BaseColor": { + "type": "class Color", + "id": 17, + "offset": 588, + "flags": 262279, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2172251096 + }, + "m_BarColor": { + "type": "class Color", + "id": 18, + "offset": 592, + "flags": 262279, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2259916498 + }, + "m_bDisplayVertical": { + "type": "bool", + "id": 19, + "offset": 596, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1359621189 + }, + "m_pBarMaterial": { + "type": "class SharedPointer", + "id": 20, + "offset": 600, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2481929515 + }, + "m_pTopLeftMaterial": { + "type": "class SharedPointer", + "id": 21, + "offset": 616, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3248096916 + }, + "m_pCenterMaterial": { + "type": "class SharedPointer", + "id": 22, + "offset": 632, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1519560055 + }, + "m_pBottomRightMaterial": { + "type": "class SharedPointer", + "id": 23, + "offset": 648, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2932444745 + } + } + }, + "2130684414": { + "name": "class SharedPointer", + "bases": [ + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 2130684414, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + } + } + }, + "725084": { + "name": "class DerbyLockLane*", + "bases": [ + "DerbyEffect", + "PropertyClass" + ], + "hash": 725084, + "properties": { + "m_buffType": { + "type": "enum DerbyTalentBuffType", + "id": 0, + "offset": 92, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1149251982, + "enum_options": { + "Buff": 0, + "Debuff": 1, + "Neither": 2 + } + }, + "m_kTarget": { + "type": "enum DerbyTargetType", + "id": 1, + "offset": 96, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1807803351, + "enum_options": { + "kTargetInFront": 0, + "kTargetBehind": 1, + "kTargetFirst": 2, + "kTargetSelf": 3, + "kTargetAll": 4, + "kTargetLast": 5 + } + }, + "m_nDuration": { + "type": "int", + "id": 2, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1110167982 + }, + "m_effectID": { + "type": "unsigned int", + "id": 3, + "offset": 88, + "flags": 24, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2347630439 + }, + "m_imageFilename": { + "type": "std::string", + "id": 4, + "offset": 112, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2813328063 + }, + "m_iconIndex": { + "type": "unsigned int", + "id": 5, + "offset": 144, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1265133262 + }, + "m_soundOnActivate": { + "type": "std::string", + "id": 6, + "offset": 152, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1956929714 + }, + "m_soundOnTarget": { + "type": "std::string", + "id": 7, + "offset": 184, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3444214056 + }, + "m_targetParticleEffect": { + "type": "std::string", + "id": 8, + "offset": 216, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3048234723 + }, + "m_overheadMessage": { + "type": "std::string", + "id": 9, + "offset": 248, + "flags": 8388639, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1701018190 + }, + "m_requirements": { + "type": "class RequirementList", + "id": 10, + "offset": 280, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2840988582 + } + } + }, + "881749909": { + "name": "class PrivateSocketJewelPair*", + "bases": [ + "PropertyClass" + ], + "hash": 881749909, + "properties": { + "m_socketNumber": { + "type": "unsigned int", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 772707167 + }, + "m_jewelID": { + "type": "gid", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 190876604 + } + } + }, + "1700098374": { + "name": "class MagicMirrorShopBehaviorTemplate", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 1700098374, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + }, + "m_shopOptions": { + "type": "unsigned int", + "id": 1, + "offset": 120, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 704167667 + } + } + }, + "1272332749": { + "name": "class RaidKeyBehaviorTemplate*", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 1272332749, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + }, + "m_raidPortalTemplate": { + "type": "unsigned int", + "id": 1, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1948761787 + } + } + }, + "869586797": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 869586797, + "properties": { + "m_iconFilename": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3103016389 + }, + "m_templateID": { + "type": "gid", + "id": 1, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1075328001 + } + } + }, + "1700072153": { + "name": "class SpellCardAttachmentCinematicAction", + "bases": [ + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 1700072153, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + }, + "m_nodeName": { + "type": "std::string", + "id": 2, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3607089954 + }, + "m_offset": { + "type": "class Vector3D", + "id": 3, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2445636425 + }, + "m_rotation": { + "type": "class Vector3D", + "id": 4, + "offset": 164, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3065089042 + } + } + }, + "1265239748": { + "name": "class CombatSigilTemplate*", + "bases": [ + "SigilTemplate", + "CoreTemplate", + "PropertyClass" + ], + "hash": 1265239748, + "properties": { + "m_behaviors": { + "type": "class BehaviorTemplate*", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1197808594 + }, + "m_sigilName": { + "type": "std::string", + "id": 1, + "offset": 96, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3177657588 + }, + "m_sigilType": { + "type": "std::string", + "id": 2, + "offset": 136, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3177899445 + }, + "m_entryResults": { + "type": "class ResultList*", + "id": 3, + "offset": 184, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3262956108 + }, + "m_requirements": { + "type": "class RequirementList*", + "id": 4, + "offset": 176, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2840985510 + }, + "m_cancelResults": { + "type": "class ResultList*", + "id": 5, + "offset": 192, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3799257120 + }, + "m_completeResults": { + "type": "class ResultList*", + "id": 6, + "offset": 200, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1964258099 + }, + "m_useState": { + "type": "bool", + "id": 7, + "offset": 216, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 683320865 + }, + "m_stateOverride": { + "type": "std::string", + "id": 8, + "offset": 224, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1949715548 + }, + "m_subCircles": { + "type": "class SigilSubCircle*", + "id": 9, + "offset": 256, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2227135493 + }, + "m_engageRadius": { + "type": "float", + "id": 10, + "offset": 304, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1429683718 + }, + "m_battlefieldEffects": { + "type": "class SharedPointer", + "id": 11, + "offset": 312, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1245973515 + }, + "m_playerVictoryCinematic": { + "type": "std::string", + "id": 12, + "offset": 336, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2684536069 + }, + "m_combatMusic": { + "type": "std::string", + "id": 13, + "offset": 368, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3636593682 + }, + "m_prePlanningCinematicOverride": { + "type": "std::string", + "id": 14, + "offset": 400, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2585096390 + }, + "m_planningCinematicOverride": { + "type": "std::string", + "id": 15, + "offset": 432, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3592819999 + }, + "m_shadowThresholdType": { + "type": "enum kShadow_Threshold_Type", + "id": 16, + "offset": 464, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2847763136, + "enum_options": { + "SHADOW_THRESHOLD_MIN": 0, + "SHADOW_THRESHOLD_AVG": 1, + "SHADOW_THRESHOLD_MAX": 2 + } + }, + "m_shadowThresholdFactor": { + "type": "float", + "id": 17, + "offset": 468, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2104355177 + }, + "m_shadowPipRatingFactor": { + "type": "float", + "id": 18, + "offset": 472, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1061434314 + }, + "m_scalarDamagePvP": { + "type": "float", + "id": 19, + "offset": 476, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2195445026 + }, + "m_scalarResistPvP": { + "type": "float", + "id": 20, + "offset": 480, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1947822077 + }, + "m_scalarPiercePvP": { + "type": "float", + "id": 21, + "offset": 484, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 441266907 + }, + "m_scalarDamagePvE": { + "type": "float", + "id": 22, + "offset": 488, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2195445015 + }, + "m_scalarResistPvE": { + "type": "float", + "id": 23, + "offset": 492, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1947822066 + }, + "m_scalarPiercePvE": { + "type": "float", + "id": 24, + "offset": 496, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 441266896 + }, + "m_damageLimitPvP": { + "type": "float", + "id": 25, + "offset": 500, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1990135243 + }, + "m_dK0PvP": { + "type": "float", + "id": 26, + "offset": 504, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 413528556 + }, + "m_dN0PvP": { + "type": "float", + "id": 27, + "offset": 508, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 417086319 + }, + "m_resistLimitPvP": { + "type": "float", + "id": 28, + "offset": 512, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1174512006 + }, + "m_rK0PvP": { + "type": "float", + "id": 29, + "offset": 516, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 961424058 + }, + "m_rN0PvP": { + "type": "float", + "id": 30, + "offset": 520, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 964981821 + }, + "m_damageLimitPvE": { + "type": "float", + "id": 31, + "offset": 524, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1990135232 + }, + "m_dK0PvE": { + "type": "float", + "id": 32, + "offset": 528, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 413528545 + }, + "m_dN0PvE": { + "type": "float", + "id": 33, + "offset": 532, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 417086308 + }, + "m_resistLimitPvE": { + "type": "float", + "id": 34, + "offset": 536, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1174511995 + }, + "m_rK0PvE": { + "type": "float", + "id": 35, + "offset": 540, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 961424047 + }, + "m_rN0PvE": { + "type": "float", + "id": 36, + "offset": 544, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 964981810 + } + } + }, + "2130855726": { + "name": "class SharedPointer", + "bases": [ + "GameEffectBase", + "PropertyClass" + ], + "hash": 2130855726, + "properties": { + "m_currentTickCount": { + "type": "double", + "id": 0, + "offset": 80, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2533274692 + }, + "m_effectNameID": { + "type": "unsigned int", + "id": 1, + "offset": 96, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1204067144 + }, + "m_bIsOnPet": { + "type": "bool", + "id": 2, + "offset": 73, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 522593303 + }, + "m_originatorID": { + "type": "gid", + "id": 3, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1131810019 + }, + "m_itemSlotID": { + "type": "unsigned int", + "id": 4, + "offset": 112, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1895747595 + }, + "m_internalID": { + "type": "int", + "id": 5, + "offset": 92, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1643137924 + }, + "m_endTime": { + "type": "unsigned int", + "id": 6, + "offset": 88, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 716479635 + }, + "m_lootTableName": { + "type": "std::string", + "id": 7, + "offset": 128, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2333333378 + } + } + }, + "860092483": { + "name": "class ClientAnnounceSpellTextCinematicAction", + "bases": [ + "AnnounceSpellTextCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 860092483, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_spellText": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2688705600 + } + } + }, + "1260524569": { + "name": "class SharedPointer", + "bases": [ + "Requirement", + "PropertyClass" + ], + "hash": 1260524569, + "properties": { + "m_applyNOT": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1746328074, + "enum_options": { + "__DEFAULT": 0 + } + }, + "m_operator": { + "type": "enum Requirement::Operator", + "id": 1, + "offset": 76, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2672792317, + "enum_options": { + "ROP_AND": 0, + "ROP_OR": 1, + "__DEFAULT": "ROP_AND" + } + }, + "m_category": { + "type": "enum ExpansionData::Category", + "id": 2, + "offset": 80, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2705349254, + "enum_options": { + "ExpansionData::EDC_Bank": 0, + "ExpansionData::EDC_FriendsList": 1 + } + } + } + }, + "725730": { + "name": "buf4", + "bases": [], + "hash": 725730, + "properties": {} + }, + "856535128": { + "name": "class ClientRemoveBacklashEffectCinematicAciton*", + "bases": [ + "RemoveBacklashEffectCinematicAction", + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 856535128, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + } + } + }, + "1259241572": { + "name": "class MoveBehaviorTemplate*", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 1259241572, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + }, + "m_fAcceleration": { + "type": "float", + "id": 1, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1644159847, + "enum_options": { + "__DEFAULT": 600 + } + }, + "m_fDeceleration": { + "type": "float", + "id": 2, + "offset": 124, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2140366348, + "enum_options": { + "__DEFAULT": 600 + } + }, + "m_fVelocityDecay": { + "type": "float", + "id": 3, + "offset": 128, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 441764242, + "enum_options": { + "__DEFAULT": 0 + } + }, + "m_fWalkSpeed": { + "type": "float", + "id": 4, + "offset": 132, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1673729917, + "enum_options": { + "__DEFAULT": 125 + } + }, + "m_fRunSpeed": { + "type": "float", + "id": 5, + "offset": 136, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2230193347, + "enum_options": { + "__DEFAULT": 600 + } + }, + "m_fFlySpeed": { + "type": "float", + "id": 6, + "offset": 140, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1454681689, + "enum_options": { + "__DEFAULT": 1000 + } + }, + "m_fSwimSpeed": { + "type": "float", + "id": 7, + "offset": 144, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2100640206, + "enum_options": { + "__DEFAULT": 300 + } + }, + "m_fFallSpeed": { + "type": "float", + "id": 8, + "offset": 148, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 701808397, + "enum_options": { + "__DEFAULT": 100 + } + }, + "m_fYawRate": { + "type": "float", + "id": 9, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2111024186, + "enum_options": { + "__DEFAULT": "2.5" + } + }, + "m_fFallHeight": { + "type": "float", + "id": 10, + "offset": 156, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 499668597, + "enum_options": { + "__DEFAULT": 50 + } + }, + "m_fJumpVelocity": { + "type": "float", + "id": 11, + "offset": 160, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1243756264, + "enum_options": { + "__DEFAULT": 500 + } + }, + "m_AnimationList": { + "type": "struct MoveStateAnimation", + "id": 12, + "offset": 168, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 438791160 + } + } + }, + "854050259": { + "name": "class SharedPointer", + "bases": [ + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 854050259, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + }, + "m_effect": { + "type": "std::string", + "id": 2, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1894145160 + } + } + }, + "1700319921": { + "name": "class SharedPointer", + "bases": [ + "Window", + "PropertyClass" + ], + "hash": 1700319921, + "properties": { + "m_sName": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306437263 + }, + "m_Children": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621225959 + }, + "m_Style": { + "type": "unsigned int", + "id": 2, + "offset": 152, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "SCALE_CHILDREN": 2, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "FOCUS_LOCKED": 64, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152 + } + }, + "m_Flags": { + "type": "unsigned int", + "id": 3, + "offset": 156, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648, + "RESIZE_TO_FIT_MOVIE": 8388608 + } + }, + "m_Window": { + "type": "class Rect", + "id": 4, + "offset": 160, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3105139380 + }, + "m_fTargetAlpha": { + "type": "float", + "id": 5, + "offset": 212, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1809129834 + }, + "m_fDisabledAlpha": { + "type": "float", + "id": 6, + "offset": 216, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1389987675 + }, + "m_fAlpha": { + "type": "float", + "id": 7, + "offset": 208, + "flags": 65671, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 482130755 + }, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3623628394 + }, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2102211316 + }, + "m_sScript": { + "type": "std::string", + "id": 10, + "offset": 352, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1846695875 + }, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3389835433 + }, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547159940 + }, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513510520 + }, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3091503757 + }, + "m_sMovieFilename": { + "type": "std::string", + "id": 16, + "offset": 584, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1581619567 + } + } + }, + "1257692968": { + "name": "class std::vector >", + "bases": [], + "hash": 1257692968, + "properties": {} + }, + "2132132349": { + "name": "class PvPMatchRequest", + "bases": [ + "MatchRequest", + "PropertyClass" + ], + "hash": 2132132349, + "properties": { + "m_characterID": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 210498386 + }, + "m_tournamentNameID": { + "type": "unsigned int", + "id": 1, + "offset": 84, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1799846440 + }, + "m_matchNameID": { + "type": "unsigned int", + "id": 2, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1751361288 + }, + "m_leagueID": { + "type": "unsigned int", + "id": 3, + "offset": 88, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 692361645 + }, + "m_seasonID": { + "type": "unsigned int", + "id": 4, + "offset": 92, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 535260643 + }, + "m_teams": { + "type": "class SharedPointer", + "id": 5, + "offset": 96, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1984373608 + }, + "m_joinQueueRequirements": { + "type": "class SharedPointer", + "id": 6, + "offset": 112, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2746080983 + }, + "m_ignoredList": { + "type": "gid", + "id": 7, + "offset": 128, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1850924028 + }, + "m_matchTimer": { + "type": "float", + "id": 8, + "offset": 144, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1510935909 + }, + "m_bonusTime": { + "type": "int", + "id": 9, + "offset": 148, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1757496496 + }, + "m_passPenalty": { + "type": "int", + "id": 10, + "offset": 152, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 982951662 + }, + "m_yellowTime": { + "type": "int", + "id": 11, + "offset": 156, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1017028741 + }, + "m_redTime": { + "type": "int", + "id": 12, + "offset": 160, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1909556708 + }, + "m_minTurnTime": { + "type": "int", + "id": 13, + "offset": 164, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 652524886 + }, + "m_effects": { + "type": "class SharedPointer", + "id": 14, + "offset": 168, + "flags": 31, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 804962647 + } + } + }, + "853452777": { + "name": "class SpellRank", + "bases": [ + "PropertyClass" + ], + "hash": 853452777, + "properties": { + "m_spellRank": { + "type": "unsigned char", + "id": 0, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1828528860 + }, + "m_balancePips": { + "type": "unsigned char", + "id": 1, + "offset": 81, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1232748146 + }, + "m_deathPips": { + "type": "unsigned char", + "id": 2, + "offset": 82, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1364547506 + }, + "m_firePips": { + "type": "unsigned char", + "id": 3, + "offset": 83, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2490965330 + }, + "m_icePips": { + "type": "unsigned char", + "id": 4, + "offset": 84, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1584134173 + }, + "m_lifePips": { + "type": "unsigned char", + "id": 5, + "offset": 85, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2181444364 + }, + "m_mythPips": { + "type": "unsigned char", + "id": 6, + "offset": 86, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1590318670 + }, + "m_stormPips": { + "type": "unsigned char", + "id": 7, + "offset": 87, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 769321921 + }, + "m_shadowPips": { + "type": "unsigned char", + "id": 8, + "offset": 88, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2569883346 + }, + "m_xPipSpell": { + "type": "bool", + "id": 9, + "offset": 90, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1088376340 + } + } + }, + "1257638703": { + "name": "class ClientPvPStatueBehavior", + "bases": [ + "PvPStatueBehavior", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1257638703, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_targetLeague": { + "type": "std::string", + "id": 1, + "offset": 112, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3312829397 + }, + "m_rank": { + "type": "int", + "id": 2, + "offset": 144, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 219803942 + }, + "m_refreshRateSec": { + "type": "int", + "id": 3, + "offset": 148, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 418402320 + }, + "m_groundOffset": { + "type": "float", + "id": 4, + "offset": 152, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 684524077 + }, + "m_yaw": { + "type": "float", + "id": 5, + "offset": 156, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 357256328 + }, + "m_showNametag": { + "type": "bool", + "id": 6, + "offset": 160, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 584664753 + }, + "m_showInGrace": { + "type": "bool", + "id": 7, + "offset": 161, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1033917517 + }, + "m_showActive": { + "type": "bool", + "id": 8, + "offset": 162, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 685431312 + }, + "m_scale": { + "type": "float", + "id": 9, + "offset": 164, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 899693439 + }, + "m_alpha": { + "type": "float", + "id": 10, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 878686493 + }, + "m_animDelaySec": { + "type": "float", + "id": 11, + "offset": 172, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2131058854 + }, + "m_animChance": { + "type": "float", + "id": 12, + "offset": 176, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 434823806 + }, + "m_animList": { + "type": "std::string", + "id": 13, + "offset": 184, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2531745852 + }, + "m_leagueID": { + "type": "unsigned int", + "id": 14, + "offset": 200, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 692361645 + }, + "m_seasonID": { + "type": "unsigned int", + "id": 15, + "offset": 204, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 535260643 + }, + "m_startTime": { + "type": "unsigned int", + "id": 16, + "offset": 208, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1598371274 + }, + "m_visualBlob": { + "type": "std::string", + "id": 17, + "offset": 216, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1691722510 + } + } + }, + "2132125029": { + "name": "class PetMatchRequest", + "bases": [ + "MatchRequest", + "PropertyClass" + ], + "hash": 2132125029, + "properties": { + "m_characterID": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 210498386 + }, + "m_tournamentNameID": { + "type": "unsigned int", + "id": 1, + "offset": 84, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1799846440 + }, + "m_matchNameID": { + "type": "unsigned int", + "id": 2, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1751361288 + }, + "m_leagueID": { + "type": "unsigned int", + "id": 3, + "offset": 88, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 692361645 + }, + "m_seasonID": { + "type": "unsigned int", + "id": 4, + "offset": 92, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 535260643 + }, + "m_teams": { + "type": "class SharedPointer", + "id": 5, + "offset": 96, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1984373608 + }, + "m_minRank": { + "type": "int", + "id": 6, + "offset": 112, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2062988042 + }, + "m_maxRank": { + "type": "int", + "id": 7, + "offset": 116, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1761764108 + }, + "m_pTrackInfo": { + "type": "class SharedPointer", + "id": 8, + "offset": 120, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3026194809 + } + } + }, + "740482": { + "name": "bf16", + "bases": [], + "hash": 740482, + "properties": {} + }, + "853170524": { + "name": "class ObstacleCourseSpringboardBehaviorClient*", + "bases": [ + "ObstacleCourseSpringboardBehavior", + "ObstacleCourseObstacleBehavior", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 853170524, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + } + } + }, + "2131747694": { + "name": "class ObstacleCourseObstaclePathBaseTemplate", + "bases": [ + "ObstacleCourseObstacleBehaviorTemplate", + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 2131747694, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + }, + "m_rate": { + "type": "float", + "id": 1, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 310005283 + }, + "m_penaltyTime": { + "type": "float", + "id": 2, + "offset": 124, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2083389507 + }, + "m_totalObstacleSize": { + "type": "class Vector3D", + "id": 3, + "offset": 128, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2379878414 + }, + "m_bounds": { + "type": "class Vector3D", + "id": 4, + "offset": 152, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1948083181 + }, + "m_orientToPath": { + "type": "bool", + "id": 5, + "offset": 176, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 655036148 + }, + "m_heightUp": { + "type": "float", + "id": 6, + "offset": 140, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2208713013 + }, + "m_heightDown": { + "type": "float", + "id": 7, + "offset": 144, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 655333896 + } + } + }, + "853170504": { + "name": "class ObstacleCourseSpringboardBehaviorClient", + "bases": [ + "ObstacleCourseSpringboardBehavior", + "ObstacleCourseObstacleBehavior", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 853170504, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + } + } + }, + "1701513809": { + "name": "class SharedPointer", + "bases": [ + "Window", + "PropertyClass" + ], + "hash": 1701513809, + "properties": { + "m_sName": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306437263 + }, + "m_Children": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621225959 + }, + "m_Style": { + "type": "unsigned int", + "id": 2, + "offset": 152, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "SCALE_CHILDREN": 2, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "FOCUS_LOCKED": 64, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152 + } + }, + "m_Flags": { + "type": "unsigned int", + "id": 3, + "offset": 156, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } + }, + "m_Window": { + "type": "class Rect", + "id": 4, + "offset": 160, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3105139380 + }, + "m_fTargetAlpha": { + "type": "float", + "id": 5, + "offset": 212, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1809129834 + }, + "m_fDisabledAlpha": { + "type": "float", + "id": 6, + "offset": 216, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1389987675 + }, + "m_fAlpha": { + "type": "float", + "id": 7, + "offset": 208, + "flags": 65671, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 482130755 + }, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3623628394 + }, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2102211316 + }, + "m_sScript": { + "type": "std::string", + "id": 10, + "offset": 352, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1846695875 + }, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3389835433 + }, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547159940 + }, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513510520 + }, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3091503757 + }, + "m_bAutomaticFormatting": { + "type": "bool", + "id": 16, + "offset": 664, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 78023831 + }, + "m_tabPages": { + "type": "class ControlTab::Page", + "id": 17, + "offset": 720, + "flags": 135, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2885422823 + }, + "m_tabSize": { + "type": "class Size", + "id": 18, + "offset": 672, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 69974606 + }, + "m_tabPageRect": { + "type": "class Rect", + "id": 19, + "offset": 616, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2839803454 + }, + "m_tabButtonsRect": { + "type": "class Rect", + "id": 20, + "offset": 632, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1836144176 + }, + "m_tabAlign": { + "type": "enum ControlTab::TabAlignment", + "id": 21, + "offset": 668, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1511299133, + "enum_options": { + "Top": 0, + "Bottom": 1, + "Left": 2, + "Right": 3 + } + } + } + }, + "1701337223": { + "name": "class NPCBehaviorTemplate", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 1701337223, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + }, + "m_nStartingHealth": { + "type": "int", + "id": 1, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 317221834 + }, + "m_HideCurrentHP": { + "type": "bool", + "id": 2, + "offset": 124, + "flags": 263, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 31360456 + }, + "m_nLevel": { + "type": "int", + "id": 3, + "offset": 128, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 717812768 + }, + "m_fIntelligence": { + "type": "float", + "id": 4, + "offset": 132, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1871176720 + }, + "m_fSelfishFactor": { + "type": "float", + "id": 5, + "offset": 136, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1823445130 + }, + "m_nameColor": { + "type": "class Color", + "id": 6, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3103779710 + }, + "m_bossMob": { + "type": "bool", + "id": 7, + "offset": 144, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 986129576 + }, + "m_turnTowardsPlayer": { + "type": "bool", + "id": 8, + "offset": 145, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1881705133 + }, + "m_mobTitle": { + "type": "enum NPCBehaviorTemplate::TITLE_TYPE", + "id": 9, + "offset": 148, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2205905992, + "enum_options": { + "Easy": 0, + "Normal": 1, + "Elite": 2, + "Boss": 3, + "Minion": 4 + } + }, + "m_schoolOfFocus": { + "type": "std::string", + "id": 10, + "offset": 160, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1523233848 + }, + "m_nAggressiveFactor": { + "type": "int", + "id": 11, + "offset": 140, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 783108599 + }, + "m_triggerList": { + "type": "std::string", + "id": 12, + "offset": 232, + "flags": 268435463, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3100120619, + "enum_options": { + "__BASECLASS": "CombatTriggerList" + } + }, + "m_cylinderScaleValue": { + "type": "float", + "id": 13, + "offset": 268, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1227245334 + }, + "m_maxShadowPips": { + "type": "int", + "id": 14, + "offset": 272, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 985142882 + }, + "m_baseEffects": { + "type": "class SharedPointer", + "id": 15, + "offset": 280, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1726069264 + }, + "m_secondarySchoolOfFocus": { + "type": "std::string", + "id": 16, + "offset": 200, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3043326464 + } + } + }, + "1259213735": { + "name": "class AreaBehaviorTemplate", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 1259213735, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + }, + "m_radius": { + "type": "float", + "id": 1, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 989410271 + }, + "m_category": { + "type": "enum AudioCategory", + "id": 2, + "offset": 124, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2951251982, + "enum_options": { + "AudioCategory_Irrelevent": 0, + "AudioCategory_Accoustic": 1, + "AudioCategory_Noise": 2, + "AudioCategory_Music": 3, + "AudioCategory_MusicAtSFXVolume": 4, + "AudioCategory_Dialog": 5, + "AudioCategory_UI": 6, + "AudioCategory_NoiseAtMusicVolume": 7 + } + }, + "m_exclusive": { + "type": "bool", + "id": 3, + "offset": 128, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 824383403 + }, + "m_active": { + "type": "bool", + "id": 4, + "offset": 129, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 239335471 + }, + "m_enableReqs": { + "type": "class SharedPointer", + "id": 5, + "offset": 136, + "flags": 263, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3158020443 + } + } + }, + "1982447": { + "name": "class SharedPointer", + "bases": [ + "ItemLootInfo", + "LootInfo", + "LootInfoBase", + "PropertyClass" + ], + "hash": 1982447, + "properties": { + "m_lootType": { + "type": "enum LootInfo::LOOT_TYPE", + "id": 0, + "offset": 72, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1591891442, + "enum_options": { + "LOOT_TYPE_NONE": 0, + "LOOT_TYPE_GOLD": 1, + "LOOT_TYPE_MANA": 2, + "LOOT_TYPE_ITEM": 3, + "LOOT_TYPE_TREASURE_CARD": 4, + "LOOT_TYPE_MAGIC_XP": 5, + "LOOT_TYPE_ADD_SPELL": 6, + "LOOT_TYPE_MAX_HEALTH": 7, + "LOOT_TYPE_MAX_GOLD": 8, + "LOOT_TYPE_MAX_MANA": 9, + "LOOT_TYPE_MAX_POTION": 10, + "LOOT_TYPE_TRAINING_POINTS": 11, + "LOOT_TYPE_RECIPE": 12, + "LOOT_TYPE_CRAFTING_SLOT": 13, + "LOOT_TYPE_REAGENT": 14, + "LOOT_TYPE_PETSNACK": 15, + "LOOT_TYPE_GARDENING_XP": 16, + "LOOT_TYPE_PET_XP": 17, + "LOOT_TYPE_TREASURE_TABLE": 18, + "LOOT_TYPE_ARENA_POINTS": 19, + "LOOT_TYPE_ARENA_BONUS_POINTS": 20, + "LOOT_TYPE_GROUP": 21, + "LOOT_TYPE_FISHING_XP": 22, + "LOOT_TYPE_EVENT_CURRENCY_1": 24, + "LOOT_TYPE_EVENT_CURRENCY_2": 25, + "LOOT_TYPE_PVP_CURRENCY": 26, + "LOOT_TYPE_PVP_CURRENCY_BONUS": 27, + "LOOT_TYPE_PVP_TOURNEY_CURRENCY": 28, + "LOOT_TYPE_PVP_TOURNEY_CURRENCY_BONUS": 29, + "LOOT_TYPE_FURNITURE_ESSENCE": 30 + } + }, + "m_itemID": { + "type": "gid", + "id": 1, + "offset": 88, + "flags": 33554463, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 569545460 + }, + "m_numItems": { + "type": "int", + "id": 2, + "offset": 96, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1588646284 + } + } + }, + "1701203716": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1701203716, + "properties": { + "m_entryList": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1101912968 + } + } + }, + "1259213711": { + "name": "class AreaBehaviorTemplate*", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 1259213711, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + }, + "m_radius": { + "type": "float", + "id": 1, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 989410271 + }, + "m_category": { + "type": "enum AudioCategory", + "id": 2, + "offset": 124, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2951251982, + "enum_options": { + "AudioCategory_Irrelevent": 0, + "AudioCategory_Accoustic": 1, + "AudioCategory_Noise": 2, + "AudioCategory_Music": 3, + "AudioCategory_MusicAtSFXVolume": 4, + "AudioCategory_Dialog": 5, + "AudioCategory_UI": 6, + "AudioCategory_NoiseAtMusicVolume": 7 + } + }, + "m_exclusive": { + "type": "bool", + "id": 3, + "offset": 128, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 824383403 + }, + "m_active": { + "type": "bool", + "id": 4, + "offset": 129, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 239335471 + }, + "m_enableReqs": { + "type": "class SharedPointer", + "id": 5, + "offset": 136, + "flags": 263, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3158020443 + } + } + }, + "2132128101": { + "name": "class PetMatchRequest*", + "bases": [ + "MatchRequest", + "PropertyClass" + ], + "hash": 2132128101, + "properties": { + "m_characterID": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 210498386 + }, + "m_tournamentNameID": { + "type": "unsigned int", + "id": 1, + "offset": 84, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1799846440 + }, + "m_matchNameID": { + "type": "unsigned int", + "id": 2, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1751361288 + }, + "m_leagueID": { + "type": "unsigned int", + "id": 3, + "offset": 88, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 692361645 + }, + "m_seasonID": { + "type": "unsigned int", + "id": 4, + "offset": 92, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 535260643 + }, + "m_teams": { + "type": "class SharedPointer", + "id": 5, + "offset": 96, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1984373608 + }, + "m_minRank": { + "type": "int", + "id": 6, + "offset": 112, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2062988042 + }, + "m_maxRank": { + "type": "int", + "id": 7, + "offset": 116, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1761764108 + }, + "m_pTrackInfo": { + "type": "class SharedPointer", + "id": 8, + "offset": 120, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3026194809 + } + } + }, + "1448017": { + "name": "class PortraitWindow*", + "bases": [ + "Window", + "PropertyClass" + ], + "hash": 1448017, + "properties": { + "m_sName": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306437263 + }, + "m_Children": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621225959 + }, + "m_Style": { + "type": "unsigned int", + "id": 2, + "offset": 152, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "SCALE_CHILDREN": 2, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "FOCUS_LOCKED": 64, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152 + } + }, + "m_Flags": { + "type": "unsigned int", + "id": 3, + "offset": 156, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } + }, + "m_Window": { + "type": "class Rect", + "id": 4, + "offset": 160, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3105139380 + }, + "m_fTargetAlpha": { + "type": "float", + "id": 5, + "offset": 212, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1809129834 + }, + "m_fDisabledAlpha": { + "type": "float", + "id": 6, + "offset": 216, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1389987675 + }, + "m_fAlpha": { + "type": "float", + "id": 7, + "offset": 208, + "flags": 65671, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 482130755 + }, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3623628394 + }, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2102211316 + }, + "m_sScript": { + "type": "std::string", + "id": 10, + "offset": 352, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1846695875 + }, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3389835433 + }, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547159940 + }, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513510520 + }, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3091503757 + }, + "m_pMaterial": { + "type": "class SharedPointer", + "id": 16, + "offset": 632, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3479277078 + }, + "m_alphaMask": { + "type": "class SharedPointer", + "id": 17, + "offset": 648, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2624275869 + } + } + }, + "853278282": { + "name": "class ProvideCombatTriggerTemplate*", + "bases": [ + "GameEffectTemplate", + "PropertyClass" + ], + "hash": 853278282, + "properties": { + "m_effectName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2029161513 + }, + "m_effectCategory": { + "type": "std::string", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1852673222 + }, + "m_sortOrder": { + "type": "int", + "id": 2, + "offset": 148, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1411218206 + }, + "m_duration": { + "type": "double", + "id": 3, + "offset": 192, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2727932435 + }, + "m_stackingCategories": { + "type": "std::string", + "id": 4, + "offset": 160, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1774497525 + }, + "m_isPersistent": { + "type": "bool", + "id": 5, + "offset": 153, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 923861920 + }, + "m_bIsOnPet": { + "type": "bool", + "id": 6, + "offset": 154, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 522593303 + }, + "m_isPublic": { + "type": "bool", + "id": 7, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1728439822 + }, + "m_visualEffectAddName": { + "type": "std::string", + "id": 8, + "offset": 200, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3382086694 + }, + "m_visualEffectRemoveName": { + "type": "std::string", + "id": 9, + "offset": 232, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1541697323 + }, + "m_onAddFunctorName": { + "type": "std::string", + "id": 10, + "offset": 280, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1561843107 + }, + "m_onRemoveFunctorName": { + "type": "std::string", + "id": 11, + "offset": 312, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2559017864 + }, + "m_stackingRule": { + "type": "enum STACKING_RULE", + "id": 12, + "offset": 144, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 431568889, + "enum_options": { + "STACKING_ALLOWED": 0, + "STACKING_NOSTACK": 1, + "STACKING_REPLACE": 2 + } + }, + "m_triggerName": { + "type": "std::string", + "id": 13, + "offset": 360, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3100183568 + } + } + }, + "1258386852": { + "name": "struct CharacterChatStatsByText", + "bases": [ + "PropertyClass" + ], + "hash": 1258386852, + "properties": { + "m_text": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1717580128 + }, + "m_chatID": { + "type": "unsigned int", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 531784794 + }, + "m_usage": { + "type": "unsigned int", + "id": 2, + "offset": 108, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1023841410 + } + } + }, + "1410034": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1410034, + "properties": { + "m_locationType": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1824460246 + }, + "m_locationPreference": { + "type": "std::string", + "id": 1, + "offset": 112, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2817699507 + }, + "m_rotation": { + "type": "float", + "id": 2, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1497468551 + }, + "m_radius": { + "type": "float", + "id": 3, + "offset": 156, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 989410271 + }, + "m_color": { + "type": "class Color", + "id": 4, + "offset": 160, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1791663549 + }, + "m_cameras": { + "type": "class SigilCamera*", + "id": 5, + "offset": 168, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2715542772 + } + } + }, + "853268042": { + "name": "class ProvideCombatTriggerTemplate", + "bases": [ + "GameEffectTemplate", + "PropertyClass" + ], + "hash": 853268042, + "properties": { + "m_effectName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2029161513 + }, + "m_effectCategory": { + "type": "std::string", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1852673222 + }, + "m_sortOrder": { + "type": "int", + "id": 2, + "offset": 148, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1411218206 + }, + "m_duration": { + "type": "double", + "id": 3, + "offset": 192, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2727932435 + }, + "m_stackingCategories": { + "type": "std::string", + "id": 4, + "offset": 160, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1774497525 + }, + "m_isPersistent": { + "type": "bool", + "id": 5, + "offset": 153, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 923861920 + }, + "m_bIsOnPet": { + "type": "bool", + "id": 6, + "offset": 154, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 522593303 + }, + "m_isPublic": { + "type": "bool", + "id": 7, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1728439822 + }, + "m_visualEffectAddName": { + "type": "std::string", + "id": 8, + "offset": 200, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3382086694 + }, + "m_visualEffectRemoveName": { + "type": "std::string", + "id": 9, + "offset": 232, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1541697323 + }, + "m_onAddFunctorName": { + "type": "std::string", + "id": 10, + "offset": 280, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1561843107 + }, + "m_onRemoveFunctorName": { + "type": "std::string", + "id": 11, + "offset": 312, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2559017864 + }, + "m_stackingRule": { + "type": "enum STACKING_RULE", + "id": 12, + "offset": 144, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 431568889, + "enum_options": { + "STACKING_ALLOWED": 0, + "STACKING_NOSTACK": 1, + "STACKING_REPLACE": 2 + } + }, + "m_triggerName": { + "type": "std::string", + "id": 13, + "offset": 360, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3100183568 + } + } + }, + "856802": { + "name": "buf8", + "bases": [], + "hash": 856802, + "properties": {} + }, + "2132137469": { + "name": "class PvPMatchRequest*", + "bases": [ + "MatchRequest", + "PropertyClass" + ], + "hash": 2132137469, + "properties": { + "m_characterID": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 210498386 + }, + "m_tournamentNameID": { + "type": "unsigned int", + "id": 1, + "offset": 84, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1799846440 + }, + "m_matchNameID": { + "type": "unsigned int", + "id": 2, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1751361288 + }, + "m_leagueID": { + "type": "unsigned int", + "id": 3, + "offset": 88, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 692361645 + }, + "m_seasonID": { + "type": "unsigned int", + "id": 4, + "offset": 92, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 535260643 + }, + "m_teams": { + "type": "class SharedPointer", + "id": 5, + "offset": 96, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1984373608 + }, + "m_joinQueueRequirements": { + "type": "class SharedPointer", + "id": 6, + "offset": 112, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2746080983 + }, + "m_ignoredList": { + "type": "gid", + "id": 7, + "offset": 128, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1850924028 + }, + "m_matchTimer": { + "type": "float", + "id": 8, + "offset": 144, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1510935909 + }, + "m_bonusTime": { + "type": "int", + "id": 9, + "offset": 148, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1757496496 + }, + "m_passPenalty": { + "type": "int", + "id": 10, + "offset": 152, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 982951662 + }, + "m_yellowTime": { + "type": "int", + "id": 11, + "offset": 156, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1017028741 + }, + "m_redTime": { + "type": "int", + "id": 12, + "offset": 160, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1909556708 + }, + "m_minTurnTime": { + "type": "int", + "id": 13, + "offset": 164, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 652524886 + }, + "m_effects": { + "type": "class SharedPointer", + "id": 14, + "offset": 168, + "flags": 31, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 804962647 + } + } + }, + "1701545865": { + "name": "class MagicXPLootInfo", + "bases": [ + "LootInfo", + "LootInfoBase", + "PropertyClass" + ], + "hash": 1701545865, + "properties": { + "m_lootType": { + "type": "enum LootInfo::LOOT_TYPE", + "id": 0, + "offset": 72, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1591891442, + "enum_options": { + "LOOT_TYPE_NONE": 0, + "LOOT_TYPE_GOLD": 1, + "LOOT_TYPE_MANA": 2, + "LOOT_TYPE_ITEM": 3, + "LOOT_TYPE_TREASURE_CARD": 4, + "LOOT_TYPE_MAGIC_XP": 5, + "LOOT_TYPE_ADD_SPELL": 6, + "LOOT_TYPE_MAX_HEALTH": 7, + "LOOT_TYPE_MAX_GOLD": 8, + "LOOT_TYPE_MAX_MANA": 9, + "LOOT_TYPE_MAX_POTION": 10, + "LOOT_TYPE_TRAINING_POINTS": 11, + "LOOT_TYPE_RECIPE": 12, + "LOOT_TYPE_CRAFTING_SLOT": 13, + "LOOT_TYPE_REAGENT": 14, + "LOOT_TYPE_PETSNACK": 15, + "LOOT_TYPE_GARDENING_XP": 16, + "LOOT_TYPE_PET_XP": 17, + "LOOT_TYPE_TREASURE_TABLE": 18, + "LOOT_TYPE_ARENA_POINTS": 19, + "LOOT_TYPE_ARENA_BONUS_POINTS": 20, + "LOOT_TYPE_GROUP": 21, + "LOOT_TYPE_FISHING_XP": 22, + "LOOT_TYPE_EVENT_CURRENCY_1": 24, + "LOOT_TYPE_EVENT_CURRENCY_2": 25, + "LOOT_TYPE_PVP_CURRENCY": 26, + "LOOT_TYPE_PVP_CURRENCY_BONUS": 27, + "LOOT_TYPE_PVP_TOURNEY_CURRENCY": 28, + "LOOT_TYPE_PVP_TOURNEY_CURRENCY_BONUS": 29, + "LOOT_TYPE_FURNITURE_ESSENCE": 30 + } + }, + "m_magicSchool": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1597012900 + }, + "m_experience": { + "type": "int", + "id": 2, + "offset": 112, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 759357570 + } + } + }, + "1259241548": { + "name": "class MoveBehaviorTemplate", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 1259241548, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + }, + "m_fAcceleration": { + "type": "float", + "id": 1, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1644159847, + "enum_options": { + "__DEFAULT": 600 + } + }, + "m_fDeceleration": { + "type": "float", + "id": 2, + "offset": 124, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2140366348, + "enum_options": { + "__DEFAULT": 600 + } + }, + "m_fVelocityDecay": { + "type": "float", + "id": 3, + "offset": 128, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 441764242, + "enum_options": { + "__DEFAULT": 0 + } + }, + "m_fWalkSpeed": { + "type": "float", + "id": 4, + "offset": 132, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1673729917, + "enum_options": { + "__DEFAULT": 125 + } + }, + "m_fRunSpeed": { + "type": "float", + "id": 5, + "offset": 136, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2230193347, + "enum_options": { + "__DEFAULT": 600 + } + }, + "m_fFlySpeed": { + "type": "float", + "id": 6, + "offset": 140, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1454681689, + "enum_options": { + "__DEFAULT": 1000 + } + }, + "m_fSwimSpeed": { + "type": "float", + "id": 7, + "offset": 144, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2100640206, + "enum_options": { + "__DEFAULT": 300 + } + }, + "m_fFallSpeed": { + "type": "float", + "id": 8, + "offset": 148, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 701808397, + "enum_options": { + "__DEFAULT": 100 + } + }, + "m_fYawRate": { + "type": "float", + "id": 9, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2111024186, + "enum_options": { + "__DEFAULT": "2.5" + } + }, + "m_fFallHeight": { + "type": "float", + "id": 10, + "offset": 156, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 499668597, + "enum_options": { + "__DEFAULT": 50 + } + }, + "m_fJumpVelocity": { + "type": "float", + "id": 11, + "offset": 160, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1243756264, + "enum_options": { + "__DEFAULT": 500 + } + }, + "m_AnimationList": { + "type": "struct MoveStateAnimation", + "id": 12, + "offset": 168, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 438791160 + } + } + }, + "2132308234": { + "name": "class SharedPointer", + "bases": [ + "SoundInfo", + "ClientObjectInfo", + "CoreObjectInfo", + "PropertyClass" + ], + "hash": 2132308234, + "properties": { + "m_templateID.m_full": { + "type": "unsigned __int64", + "id": 0, + "offset": 72, + "flags": 33554439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 633907631 + }, + "m_nObjectID": { + "type": "unsigned int", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 748496927 + }, + "m_location": { + "type": "class Vector3D", + "id": 2, + "offset": 84, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2239683611 + }, + "m_orientation": { + "type": "class Vector3D", + "id": 3, + "offset": 96, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2344058766 + }, + "m_fScale": { + "type": "float", + "id": 4, + "offset": 108, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 503137701 + }, + "m_zoneTag": { + "type": "std::string", + "id": 5, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3405382643 + }, + "m_startState": { + "type": "std::string", + "id": 6, + "offset": 184, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2166880458 + }, + "m_overrideName": { + "type": "std::string", + "id": 7, + "offset": 120, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1990707228 + }, + "m_globalDynamic": { + "type": "bool", + "id": 8, + "offset": 116, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1951691017 + }, + "m_bUndetectable": { + "type": "bool", + "id": 9, + "offset": 216, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1907454341 + }, + "m_spawnRequirements": { + "type": "class SharedPointer", + "id": 10, + "offset": 224, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2309120870 + }, + "m_loadingType": { + "type": "enum CoreObjectInfo::LoadingType", + "id": 11, + "offset": 112, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3522422550, + "enum_options": { + "STATIC_CLIENT_SERVER": 0, + "STATIC_CLIENT": 1, + "STATIC_SERVER": 2, + "DYNAMIC_SERVER": 3 + } + }, + "m_radius": { + "type": "float", + "id": 12, + "offset": 256, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 989410271 + }, + "m_exclusive": { + "type": "bool", + "id": 13, + "offset": 260, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 824383403 + }, + "m_startActive": { + "type": "bool", + "id": 14, + "offset": 261, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2031339229 + }, + "m_category": { + "type": "enum AudioCategory", + "id": 15, + "offset": 264, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2951251982, + "enum_options": { + "AudioCategory_Irrelevent": 0, + "AudioCategory_Accoustic": 1, + "AudioCategory_Noise": 2, + "AudioCategory_Music": 3 + } + }, + "m_override": { + "type": "int", + "id": 16, + "offset": 268, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 136872410, + "enum_options": { + "OVR_RADIUS": 1, + "OVR_CATEGORY": 2, + "OVR_EXCLUSIVE": 4, + "OVR_SIGNATURE": 64, + "OVR_VOLUME": 8, + "OVR_LOOPCOUNT": 16, + "OVR_ACTIVE": 32, + "OVR_PLAYPROG": 128, + "OVR_PRIORITY": 256, + "OVR_PROGTIME": 512, + "OVR_FILTERSET": 1024 + } + }, + "m_enableReqs": { + "type": "class SharedPointer", + "id": 17, + "offset": 272, + "flags": 263, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3158020443 + }, + "m_effect": { + "type": "enum AccousticSignature", + "id": 18, + "offset": 288, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1284866962, + "enum_options": { + "Generic": 0, + "Padded Cell": 1, + "Room": 2, + "Bath Room": 3, + "Living Room": 4, + "Stone Room": 5, + "Auditorium": 6, + "Concert Hall": 7, + "Cave": 8, + "Arena": 9, + "Hanger": 10, + "Carpeted Hallway": 11, + "Hallway": 12, + "Stone Corridor": 13, + "Alley": 14, + "Forest": 15, + "City": 16, + "Mountains": 17, + "Quarry": 18, + "Plain": 19, + "Parking Lot": 20, + "Sewer Pipe": 21, + "Underwater": 22, + "Drugged": 23, + "Dizzy": 24, + "Psychotic": 25 + } + } + } + }, + "1410091": { + "name": "class GraphicalPvPCurrencyBonus*", + "bases": [ + "GraphicalSpell", + "Spell", + "PropertyClass" + ], + "hash": 1410091, + "properties": { + "m_templateID": { + "type": "unsigned int", + "id": 0, + "offset": 128, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1286746870 + }, + "m_enchantment": { + "type": "unsigned int", + "id": 1, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2217886818 + }, + "m_pipCost": { + "type": "class SharedPointer", + "id": 2, + "offset": 176, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3605704820 + }, + "m_regularAdjust": { + "type": "int", + "id": 3, + "offset": 192, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1420453335 + }, + "m_magicSchoolID": { + "type": "unsigned int", + "id": 4, + "offset": 136, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 893146499 + }, + "m_accuracy": { + "type": "unsigned char", + "id": 5, + "offset": 132, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2273914939 + }, + "m_treasureCard": { + "type": "bool", + "id": 6, + "offset": 197, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1764879128 + }, + "m_battleCard": { + "type": "bool", + "id": 7, + "offset": 198, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1332843753 + }, + "m_itemCard": { + "type": "bool", + "id": 8, + "offset": 199, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1683654300 + }, + "m_sideBoard": { + "type": "bool", + "id": 9, + "offset": 200, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1897838368 + }, + "m_spellID": { + "type": "unsigned int", + "id": 10, + "offset": 204, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1697483258 + }, + "m_leavesPlayWhenCastOverride": { + "type": "bool", + "id": 11, + "offset": 216, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 874407398 + }, + "m_cloaked": { + "type": "bool", + "id": 12, + "offset": 196, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 7349510 + }, + "m_enchantmentSpellIsItemCard": { + "type": "bool", + "id": 13, + "offset": 76, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 531590701 + }, + "m_premutationSpellID": { + "type": "unsigned int", + "id": 14, + "offset": 112, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1530256370 + }, + "m_enchantedThisCombat": { + "type": "bool", + "id": 15, + "offset": 77, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1895738923 + }, + "m_paramOverrides": { + "type": "class SharedPointer", + "id": 16, + "offset": 224, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2061635599 + }, + "m_subEffectMeta": { + "type": "class SharedPointer", + "id": 17, + "offset": 240, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1944101106 + }, + "m_delayEnchantment": { + "type": "bool", + "id": 18, + "offset": 257, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 191336919 + }, + "m_PvE": { + "type": "bool", + "id": 19, + "offset": 264, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 269492350 + }, + "m_delayEnchantmentOrder": { + "type": "enum SpellEffect::kDelayOrder", + "id": 20, + "offset": 72, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2526055263, + "enum_options": { + "SpellEffect::kAnyOrder": 0, + "SpellEffect::kFirst": 1, + "SpellEffect::kSecond": 2 + } + }, + "m_roundAddedTC": { + "type": "int", + "id": 21, + "offset": 260, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 112365451 + }, + "m_secondarySchoolID": { + "type": "unsigned int", + "id": 22, + "offset": 304, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2081206026 + }, + "m_fusionState": { + "type": "enum Spell::FusionState", + "id": 23, + "offset": 308, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 835324539, + "enum_options": { + "FS_Invalid": 0, + "FS_Partial": 1, + "FS_Valid": 2 + } + } + } + }, + "853473257": { + "name": "class SpellRank*", + "bases": [ + "PropertyClass" + ], + "hash": 853473257, + "properties": { + "m_spellRank": { + "type": "unsigned char", + "id": 0, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1828528860 + }, + "m_balancePips": { + "type": "unsigned char", + "id": 1, + "offset": 81, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1232748146 + }, + "m_deathPips": { + "type": "unsigned char", + "id": 2, + "offset": 82, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1364547506 + }, + "m_firePips": { + "type": "unsigned char", + "id": 3, + "offset": 83, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2490965330 + }, + "m_icePips": { + "type": "unsigned char", + "id": 4, + "offset": 84, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1584134173 + }, + "m_lifePips": { + "type": "unsigned char", + "id": 5, + "offset": 85, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2181444364 + }, + "m_mythPips": { + "type": "unsigned char", + "id": 6, + "offset": 86, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1590318670 + }, + "m_stormPips": { + "type": "unsigned char", + "id": 7, + "offset": 87, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 769321921 + }, + "m_shadowPips": { + "type": "unsigned char", + "id": 8, + "offset": 88, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2569883346 + }, + "m_xPipSpell": { + "type": "bool", + "id": 9, + "offset": 90, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1088376340 + } + } + }, + "1702238983": { + "name": "class SharedPointer", + "bases": [ + "WindowAnimation", + "PropertyClass" + ], + "hash": 1702238983, + "properties": { + "m_bUseDeepCopy": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 433380635 + }, + "m_fDelay": { + "type": "float", + "id": 1, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 485432396 + }, + "m_fElapsedTime": { + "type": "float", + "id": 2, + "offset": 84, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1862647402 + } + } + }, + "854001393": { + "name": "class WizBugReport", + "bases": [ + "BugReport", + "PropertyClass" + ], + "hash": 854001393, + "properties": { + "m_clientVersion": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2207163808 + }, + "m_type": { + "type": "enum BugType", + "id": 1, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 889643611, + "enum_options": { + "BT_CRASH": 1, + "BT_GAME_STOPPER": 2, + "BT_INTERFERENCE": 3, + "BT_ANNOYANCE": 4, + "BT_FEATURE_REQUEST": 5, + "BT_COMMENT": 6 + } + }, + "m_canReproduce": { + "type": "bool", + "id": 2, + "offset": 108, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 859813390 + }, + "m_description": { + "type": "std::wstring", + "id": 3, + "offset": 112, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1445360156 + }, + "m_systemType": { + "type": "enum WizBugReport::SystemType", + "id": 4, + "offset": 144, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1170942560, + "enum_options": { + "ST_OTHER": 0, + "ST_QUEST": 1, + "ST_SHOP": 2, + "ST_MONSTER": 3, + "ST_SPELL": 4, + "ST_ITEM": 5, + "ST_INTERFACE": 6 + } + }, + "m_ideaType": { + "type": "enum WizBugReport::IdeaType", + "id": 5, + "offset": 148, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1042875837, + "enum_options": { + "IT_ADD": 0, + "IT_CHANGE": 1, + "IT_NONE": 2 + } + }, + "m_userId": { + "type": "gid", + "id": 6, + "offset": 184, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1037989732 + }, + "m_gender": { + "type": "enum WizBugReport::UserGender", + "id": 7, + "offset": 196, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 625694774, + "enum_options": { + "UG_Unknown": 0, + "UG_Male": 1, + "UG_Female": 2 + } + }, + "m_age": { + "type": "unsigned char", + "id": 8, + "offset": 192, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 904628669 + }, + "m_userName": { + "type": "std::string", + "id": 9, + "offset": 152, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2213937019 + }, + "m_releaseUpdate": { + "type": "std::string", + "id": 10, + "offset": 208, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1780854143 + }, + "m_jiraIssue": { + "type": "std::string", + "id": 11, + "offset": 240, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1589236010 + }, + "m_osString": { + "type": "std::string", + "id": 12, + "offset": 272, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3500554164 + } + } + }, + "1702152684": { + "name": "class SavedSettingContainer", + "bases": [ + "PropertyClass" + ], + "hash": 1702152684, + "properties": { + "m_savedSettingList": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2421895488 + } + } + }, + "1259577525": { + "name": "class WizMountTemplate*", + "bases": [ + "WizGameObjectTemplate", + "GameObjectTemplate", + "CoreTemplate", + "PropertyClass" + ], + "hash": 1259577525, + "properties": { + "m_behaviors": { + "type": "class BehaviorTemplate*", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1197808594 + }, + "m_objectName": { + "type": "std::string", + "id": 1, + "offset": 96, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2154940147 + }, + "m_templateID": { + "type": "unsigned int", + "id": 2, + "offset": 128, + "flags": 16777223, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1286746870 + }, + "m_visualID": { + "type": "unsigned int", + "id": 3, + "offset": 132, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1118778894 + }, + "m_adjectiveList": { + "type": "std::string", + "id": 4, + "offset": 248, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 3195213318 + }, + "m_exemptFromAOI": { + "type": "bool", + "id": 5, + "offset": 240, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1457879059 + }, + "m_displayName": { + "type": "std::string", + "id": 6, + "offset": 168, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2446900370 + }, + "m_description": { + "type": "std::string", + "id": 7, + "offset": 136, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1649374815 + }, + "m_nObjectType": { + "type": "enum ObjectType", + "id": 8, + "offset": 200, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2118905880, + "enum_options": { + "OT_UNDEFINED": 0, + "OT_PLAYER": 1, + "OT_NPC": 2, + "OT_PROP": 3, + "OT_OBJECT": 4, + "OT_HOUSE": 5, + "OT_KEY": 6, + "OT_OLD_KEY": 7, + "OT_DEED": 8, + "OT_MAIL": 9, + "OT_RECIPE": 17, + "OT_EQUIP_HEAD": 10, + "OT_EQUIP_CHEST": 11, + "OT_EQUIP_LEGS": 12, + "OT_EQUIP_HANDS": 13, + "OT_EQUIP_FINGER": 14, + "OT_EQUIP_FEET": 15, + "OT_EQUIP_EAR": 16, + "OT_BUILDING_BLOCK": 18, + "OT_BUILDING_BLOCK_SOLID": 19, + "OT_GOLF": 20, + "OT_DOOR": 21, + "OT_PET": 22, + "OT_FABRIC": 23, + "OT_WINDOW": 24, + "OT_ROOF": 25, + "OT_HORSE": 26, + "OT_STRUCTURE": 27, + "OT_HOUSING_TEXTURE": 28, + "OT_PLANT": 29 + } + }, + "m_sIcon": { + "type": "std::string", + "id": 9, + "offset": 208, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306259831 + }, + "m_lootTable": { + "type": "std::string", + "id": 10, + "offset": 280, + "flags": 268435463, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2539512673, + "enum_options": { + "__BASECLASS": "LootTable" + } + }, + "m_deathParticles": { + "type": "std::string", + "id": 11, + "offset": 296, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3201049672 + }, + "m_deathSound": { + "type": "std::string", + "id": 12, + "offset": 328, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1865613610 + }, + "m_hitSound": { + "type": "std::string", + "id": 13, + "offset": 360, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2746656777 + }, + "m_castSound": { + "type": "std::string", + "id": 14, + "offset": 392, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3343064815 + }, + "m_aggroSound": { + "type": "std::string", + "id": 15, + "offset": 424, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3421949940 + }, + "m_primarySchoolName": { + "type": "std::string", + "id": 16, + "offset": 456, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3211370408 + }, + "m_locationPreference": { + "type": "std::string", + "id": 17, + "offset": 488, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2817699507 + }, + "m_leashOffsetOverride": { + "type": "class SharedPointer", + "id": 18, + "offset": 528, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1692586788 + } + } + }, + "2134229930": { + "name": "class ClientStageBacklashEffectCinematicAction*", + "bases": [ + "StageBacklashEffectCinematicAction", + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 2134229930, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + } + } + }, + "1924843": { + "name": "class MatchTimerControl", + "bases": [ + "ControlText", + "Window", + "PropertyClass" + ], + "hash": 1924843, + "properties": { + "m_sName": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306437263 + }, + "m_Children": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621225959 + }, + "m_Style": { + "type": "unsigned int", + "id": 2, + "offset": 152, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152, + "DO_NOT_WRAP": 134217728, + "FIT_TEXT": 268435456 + } + }, + "m_Flags": { + "type": "unsigned int", + "id": 3, + "offset": 156, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } + }, + "m_Window": { + "type": "class Rect", + "id": 4, + "offset": 160, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3105139380 + }, + "m_fTargetAlpha": { + "type": "float", + "id": 5, + "offset": 212, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1809129834 + }, + "m_fDisabledAlpha": { + "type": "float", + "id": 6, + "offset": 216, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1389987675 + }, + "m_fAlpha": { + "type": "float", + "id": 7, + "offset": 208, + "flags": 65671, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 482130755 + }, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3623628394 + }, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2102211316 + }, + "m_sScript": { + "type": "std::string", + "id": 10, + "offset": 352, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1846695875 + }, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3389835433 + }, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547159940 + }, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513510520 + }, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3091503757 + }, + "m_sText": { + "type": "std::wstring", + "id": 16, + "offset": 584, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2102642960 + }, + "m_sTooltip": { + "type": "std::wstring", + "id": 17, + "offset": 616, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1680475798 + }, + "m_bUseDropShadow": { + "type": "bool", + "id": 18, + "offset": 653, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 93063037 + }, + "m_bUseOutline": { + "type": "bool", + "id": 19, + "offset": 654, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 744292994 + }, + "m_bEnableWordWrap": { + "type": "bool", + "id": 20, + "offset": 655, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 430904562 + }, + "m_bEnableToggle": { + "type": "bool", + "id": 21, + "offset": 652, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1937994142 + }, + "m_nLeadingAdjust": { + "type": "int", + "id": 22, + "offset": 656, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1559480167 + }, + "m_alertSeconds": { + "type": "unsigned int", + "id": 23, + "offset": 700, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2220095860 + }, + "m_alertSeconds2": { + "type": "unsigned int", + "id": 24, + "offset": 704, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2070944934 + }, + "m_blinkRate": { + "type": "float", + "id": 25, + "offset": 708, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 395499571 + } + } + }, + "1701728617": { + "name": "class SharedPointer", + "bases": [ + "BattleBookBehavior", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1701728617, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_spellList": { + "type": "class SharedPointer", + "id": 1, + "offset": 120, + "flags": 27, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2181913740 + }, + "m_rating": { + "type": "class SharedPointer", + "id": 2, + "offset": 136, + "flags": 27, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2464459535 + } + } + }, + "1259413685": { + "name": "class WizMountTemplate", + "bases": [ + "WizGameObjectTemplate", + "GameObjectTemplate", + "CoreTemplate", + "PropertyClass" + ], + "hash": 1259413685, + "properties": { + "m_behaviors": { + "type": "class BehaviorTemplate*", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1197808594 + }, + "m_objectName": { + "type": "std::string", + "id": 1, + "offset": 96, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2154940147 + }, + "m_templateID": { + "type": "unsigned int", + "id": 2, + "offset": 128, + "flags": 16777223, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1286746870 + }, + "m_visualID": { + "type": "unsigned int", + "id": 3, + "offset": 132, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1118778894 + }, + "m_adjectiveList": { + "type": "std::string", + "id": 4, + "offset": 248, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 3195213318 + }, + "m_exemptFromAOI": { + "type": "bool", + "id": 5, + "offset": 240, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1457879059 + }, + "m_displayName": { + "type": "std::string", + "id": 6, + "offset": 168, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2446900370 + }, + "m_description": { + "type": "std::string", + "id": 7, + "offset": 136, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1649374815 + }, + "m_nObjectType": { + "type": "enum ObjectType", + "id": 8, + "offset": 200, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2118905880, + "enum_options": { + "OT_UNDEFINED": 0, + "OT_PLAYER": 1, + "OT_NPC": 2, + "OT_PROP": 3, + "OT_OBJECT": 4, + "OT_HOUSE": 5, + "OT_KEY": 6, + "OT_OLD_KEY": 7, + "OT_DEED": 8, + "OT_MAIL": 9, + "OT_RECIPE": 17, + "OT_EQUIP_HEAD": 10, + "OT_EQUIP_CHEST": 11, + "OT_EQUIP_LEGS": 12, + "OT_EQUIP_HANDS": 13, + "OT_EQUIP_FINGER": 14, + "OT_EQUIP_FEET": 15, + "OT_EQUIP_EAR": 16, + "OT_BUILDING_BLOCK": 18, + "OT_BUILDING_BLOCK_SOLID": 19, + "OT_GOLF": 20, + "OT_DOOR": 21, + "OT_PET": 22, + "OT_FABRIC": 23, + "OT_WINDOW": 24, + "OT_ROOF": 25, + "OT_HORSE": 26, + "OT_STRUCTURE": 27, + "OT_HOUSING_TEXTURE": 28, + "OT_PLANT": 29 + } + }, + "m_sIcon": { + "type": "std::string", + "id": 9, + "offset": 208, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306259831 + }, + "m_lootTable": { + "type": "std::string", + "id": 10, + "offset": 280, + "flags": 268435463, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2539512673, + "enum_options": { + "__BASECLASS": "LootTable" + } + }, + "m_deathParticles": { + "type": "std::string", + "id": 11, + "offset": 296, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3201049672 + }, + "m_deathSound": { + "type": "std::string", + "id": 12, + "offset": 328, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1865613610 + }, + "m_hitSound": { + "type": "std::string", + "id": 13, + "offset": 360, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2746656777 + }, + "m_castSound": { + "type": "std::string", + "id": 14, + "offset": 392, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3343064815 + }, + "m_aggroSound": { + "type": "std::string", + "id": 15, + "offset": 424, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3421949940 + }, + "m_primarySchoolName": { + "type": "std::string", + "id": 16, + "offset": 456, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3211370408 + }, + "m_locationPreference": { + "type": "std::string", + "id": 17, + "offset": 488, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2817699507 + }, + "m_leashOffsetOverride": { + "type": "class SharedPointer", + "id": 18, + "offset": 528, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1692586788 + } + } + }, + "2133912658": { + "name": "class QuestFinderNPCData", + "bases": [ + "PropertyClass" + ], + "hash": 2133912658, + "properties": { + "m_zoneName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2171167736 + }, + "m_location": { + "type": "class Vector3D", + "id": 1, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2239683611 + }, + "m_firstName": { + "type": "std::string", + "id": 2, + "offset": 120, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3116002948 + }, + "m_lastName": { + "type": "std::string", + "id": 3, + "offset": 152, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1826203600 + }, + "m_zoneDisplayName": { + "type": "std::string", + "id": 4, + "offset": 184, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1962339438 + } + } + }, + "1448177": { + "name": "class PortraitWindow", + "bases": [ + "Window", + "PropertyClass" + ], + "hash": 1448177, + "properties": { + "m_sName": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306437263 + }, + "m_Children": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621225959 + }, + "m_Style": { + "type": "unsigned int", + "id": 2, + "offset": 152, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "SCALE_CHILDREN": 2, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "FOCUS_LOCKED": 64, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152 + } + }, + "m_Flags": { + "type": "unsigned int", + "id": 3, + "offset": 156, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } + }, + "m_Window": { + "type": "class Rect", + "id": 4, + "offset": 160, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3105139380 + }, + "m_fTargetAlpha": { + "type": "float", + "id": 5, + "offset": 212, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1809129834 + }, + "m_fDisabledAlpha": { + "type": "float", + "id": 6, + "offset": 216, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1389987675 + }, + "m_fAlpha": { + "type": "float", + "id": 7, + "offset": 208, + "flags": 65671, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 482130755 + }, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3623628394 + }, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2102211316 + }, + "m_sScript": { + "type": "std::string", + "id": 10, + "offset": 352, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1846695875 + }, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3389835433 + }, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547159940 + }, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513510520 + }, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3091503757 + }, + "m_pMaterial": { + "type": "class SharedPointer", + "id": 16, + "offset": 632, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3479277078 + }, + "m_alphaMask": { + "type": "class SharedPointer", + "id": 17, + "offset": 648, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2624275869 + } + } + }, + "1701562392": { + "name": "class SharedPointer", + "bases": [ + "StatGlobe", + "ControlSprite", + "Window", + "PropertyClass" + ], + "hash": 1701562392, + "properties": { + "m_sName": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306437263 + }, + "m_Children": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621225959 + }, + "m_Style": { + "type": "unsigned int", + "id": 2, + "offset": 152, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "SCALE_CHILDREN": 2, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "FOCUS_LOCKED": 64, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152 + } + }, + "m_Flags": { + "type": "unsigned int", + "id": 3, + "offset": 156, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648, + "ONE_SHOT": 8388608, + "FLIPPED_HORIZONTAL": 16777216, + "FLIPPED_VERTICAL": 33554432 + } + }, + "m_Window": { + "type": "class Rect", + "id": 4, + "offset": 160, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3105139380 + }, + "m_fTargetAlpha": { + "type": "float", + "id": 5, + "offset": 212, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1809129834 + }, + "m_fDisabledAlpha": { + "type": "float", + "id": 6, + "offset": 216, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1389987675 + }, + "m_fAlpha": { + "type": "float", + "id": 7, + "offset": 208, + "flags": 65671, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 482130755 + }, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3623628394 + }, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2102211316 + }, + "m_sScript": { + "type": "std::string", + "id": 10, + "offset": 352, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1846695875 + }, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3389835433 + }, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547159940 + }, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513510520 + }, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3091503757 + }, + "m_pMaterial": { + "type": "class SharedPointer", + "id": 16, + "offset": 592, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3479277078 + }, + "m_fRotation": { + "type": "float", + "id": 17, + "offset": 608, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1175400173 + }, + "m_Color": { + "type": "class Color", + "id": 18, + "offset": 584, + "flags": 262279, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1753714077 + }, + "m_textColor": { + "type": "class Color", + "id": 19, + "offset": 612, + "flags": 262279, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2528109250 + }, + "m_textComponent": { + "type": "class TextComponent", + "id": 20, + "offset": 616, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3491704390 + }, + "m_amount": { + "type": "int", + "id": 21, + "offset": 800, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 248546638 + } + } + }, + "2132761747": { + "name": "class LevelUpElixirBehaviorTemplate*", + "bases": [ + "ElixirBehaviorTemplate", + "TimedItemBehaviorTemplate", + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 2132761747, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + }, + "m_expireTime": { + "type": "std::string", + "id": 1, + "offset": 128, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3122602039 + }, + "m_timerType": { + "type": "enum TimerType", + "id": 2, + "offset": 120, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 571744132, + "enum_options": { + "TimerType_Game": 0, + "TimerType_Calendar": 1 + } + }, + "m_typeList": { + "type": "std::string", + "id": 3, + "offset": 160, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2119049625 + }, + "m_equipParticle": { + "type": "std::string", + "id": 4, + "offset": 176, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2222557491 + }, + "m_unequipParticle": { + "type": "std::string", + "id": 5, + "offset": 208, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2215431638 + }, + "m_equipSound": { + "type": "std::string", + "id": 6, + "offset": 240, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2720016552 + }, + "m_unequipSound": { + "type": "std::string", + "id": 7, + "offset": 272, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1552545835 + }, + "m_equipActionList": { + "type": "class SharedPointer", + "id": 8, + "offset": 304, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1314016250 + }, + "m_unequipActionList": { + "type": "class SharedPointer", + "id": 9, + "offset": 320, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2143896925 + }, + "m_combatEnabled": { + "type": "bool", + "id": 10, + "offset": 336, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1399744148 + }, + "m_PvPEnabled": { + "type": "bool", + "id": 11, + "offset": 337, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1042852532 + }, + "m_setCharacterToLevel": { + "type": "int", + "id": 12, + "offset": 408, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1268456078 + }, + "m_resultingTrainingPoints": { + "type": "int", + "id": 13, + "offset": 412, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1710285808 + }, + "m_schoolSpecificData": { + "type": "class SharedPointer", + "id": 14, + "offset": 472, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2609926725 + }, + "m_allSchoolData": { + "type": "class SharedPointer", + "id": 15, + "offset": 488, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2860093528 + }, + "m_firstWarningStringKey": { + "type": "std::string", + "id": 16, + "offset": 344, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3095888729 + }, + "m_secondWarningStringKey": { + "type": "std::string", + "id": 17, + "offset": 376, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2111513997 + }, + "m_accessPasses": { + "type": "std::string", + "id": 18, + "offset": 456, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2956825884 + }, + "m_gold": { + "type": "int", + "id": 19, + "offset": 416, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 219423808 + }, + "m_tutorialEventsToTrigger": { + "type": "std::string", + "id": 20, + "offset": 424, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2795041819 + }, + "m_tipIDsToDismiss": { + "type": "gid", + "id": 21, + "offset": 440, + "flags": 33554439, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1424884996 + }, + "m_maxPotions": { + "type": "int", + "id": 22, + "offset": 504, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1639626892 + } + } + }, + "855187657": { + "name": "class SoccerBall", + "bases": [ + "PropertyClass" + ], + "hash": 855187657, + "properties": {} + }, + "854794441": { + "name": "class SoccerBall*", + "bases": [ + "PropertyClass" + ], + "hash": 854794441, + "properties": {} + }, + "1260064120": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1260064120, + "properties": { + "m_messages": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1129442288 + } + } + }, + "2133094766": { + "name": "class HousingMusicManager*", + "bases": [ + "PropertyClass" + ], + "hash": 2133094766, + "properties": {} + }, + "1701805816": { + "name": "class HousingTeleporterBehavior*", + "bases": [ + "HousingTeleporterBehaviorBase", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1701805816, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_lotInstanceGID": { + "type": "gid", + "id": 1, + "offset": 112, + "flags": 65567, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2010711536 + }, + "m_x": { + "type": "float", + "id": 2, + "offset": 120, + "flags": 65543, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 283788559 + }, + "m_y": { + "type": "float", + "id": 3, + "offset": 124, + "flags": 65543, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 283788560 + }, + "m_z": { + "type": "float", + "id": 4, + "offset": 128, + "flags": 65543, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 283788561 + }, + "m_yaw": { + "type": "float", + "id": 5, + "offset": 132, + "flags": 65543, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 357256328 + }, + "m_lotTemplateID": { + "type": "gid", + "id": 6, + "offset": 136, + "flags": 65543, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1344354096 + }, + "m_clusterGID": { + "type": "gid", + "id": 7, + "offset": 144, + "flags": 65543, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 112792526 + }, + "m_structureInstanceGID": { + "type": "gid", + "id": 8, + "offset": 152, + "flags": 65543, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2083588818 + }, + "m_structureTemplateID": { + "type": "gid", + "id": 9, + "offset": 160, + "flags": 65543, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 825960402 + }, + "m_isOutside": { + "type": "bool", + "id": 10, + "offset": 168, + "flags": 65543, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1999324940 + }, + "m_teleportData": { + "type": "std::string", + "id": 11, + "offset": 208, + "flags": 551, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3645160644 + } + } + }, + "1259657948": { + "name": "class GardeningXPConfig*", + "bases": [ + "PropertyClass" + ], + "hash": 1259657948, + "properties": { + "m_levelInfo": { + "type": "class GardeningLevelInfo*", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 3807245122 + }, + "m_maxLevel": { + "type": "unsigned char", + "id": 1, + "offset": 88, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 783962734 + } + } + }, + "2569634": { + "name": "bool", + "bases": [], + "hash": 2569634, + "properties": {} + }, + "854951333": { + "name": "class GuildAchievementBehavior", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 854951333, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + } + } + }, + "2134218566": { + "name": "class PlayListEntry*", + "bases": [ + "PropertyClass" + ], + "hash": 2134218566, + "properties": { + "m_trackFilename": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2957416369 + }, + "m_bIsStreamed": { + "type": "bool", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2001937222 + }, + "m_animPos": { + "type": "float", + "id": 2, + "offset": 108, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1878658286 + }, + "m_animObjName": { + "type": "std::string", + "id": 3, + "offset": 112, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2369937660 + } + } + }, + "1702153452": { + "name": "class SavedSettingContainer*", + "bases": [ + "PropertyClass" + ], + "hash": 1702153452, + "properties": { + "m_savedSettingList": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2421895488 + } + } + }, + "1260296854": { + "name": "class WeightedList", + "bases": [ + "PropertyClass" + ], + "hash": 1260296854, + "properties": { + "m_list": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1753240061 + } + } + }, + "2134218563": { + "name": "class PlayListEntry", + "bases": [ + "PropertyClass" + ], + "hash": 2134218563, + "properties": { + "m_trackFilename": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2957416369 + }, + "m_bIsStreamed": { + "type": "bool", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2001937222 + }, + "m_animPos": { + "type": "float", + "id": 2, + "offset": 108, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1878658286 + }, + "m_animObjName": { + "type": "std::string", + "id": 3, + "offset": 112, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2369937660 + } + } + }, + "10475889": { + "name": "class BadgeLeaderboardOption*", + "bases": [ + "ServiceOptionBase", + "PropertyClass" + ], + "hash": 10475889, + "properties": { + "m_serviceName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2206028813 + }, + "m_iconKey": { + "type": "std::string", + "id": 1, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2457138637 + }, + "m_displayKey": { + "type": "std::string", + "id": 2, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3023276954 + }, + "m_serviceIndex": { + "type": "unsigned int", + "id": 3, + "offset": 204, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2103126710 + }, + "m_forceInteract": { + "type": "bool", + "id": 4, + "offset": 200, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1705789564 + } + } + }, + "856128287": { + "name": "enum DerbyLaneEffect", + "bases": [], + "hash": 856128287, + "properties": {} + }, + "6632204": { + "name": "class SharedPointer", + "bases": [ + "SpellTemplate", + "CoreTemplate", + "PropertyClass" + ], + "hash": 6632204, + "properties": { + "m_behaviors": { + "type": "class BehaviorTemplate*", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1197808594 + }, + "m_name": { + "type": "std::string", + "id": 1, + "offset": 96, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1717359772 + }, + "m_description": { + "type": "std::string", + "id": 2, + "offset": 168, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1649374815 + }, + "m_advancedDescription": { + "type": "std::string", + "id": 3, + "offset": 200, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3465713013 + }, + "m_displayName": { + "type": "std::string", + "id": 4, + "offset": 136, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2446900370 + }, + "m_spellBase": { + "type": "std::string", + "id": 5, + "offset": 248, + "flags": 268435463, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2688054198, + "enum_options": { + "__BASECLASS": "CinematicTemplate" + } + }, + "m_effects": { + "type": "class SharedPointer", + "id": 6, + "offset": 280, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 370726379 + }, + "m_sMagicSchoolName": { + "type": "std::string", + "id": 7, + "offset": 312, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2035693400 + }, + "m_sTypeName": { + "type": "std::string", + "id": 8, + "offset": 352, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3580785905 + }, + "m_trainingCost": { + "type": "int", + "id": 9, + "offset": 384, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 982588239 + }, + "m_accuracy": { + "type": "int", + "id": 10, + "offset": 388, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1636315493 + }, + "m_baseCost": { + "type": "int", + "id": 11, + "offset": 232, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1475151502 + }, + "m_creditsCost": { + "type": "int", + "id": 12, + "offset": 236, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 715313825 + }, + "m_pvpCurrencyCost": { + "type": "int", + "id": 13, + "offset": 240, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 645595444 + }, + "m_pvpTourneyCurrencyCost": { + "type": "int", + "id": 14, + "offset": 244, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 517874954 + }, + "m_boosterPackIcon": { + "type": "std::string", + "id": 15, + "offset": 496, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3428653697 + }, + "m_validTargetSpells": { + "type": "unsigned int", + "id": 16, + "offset": 392, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2355782967 + }, + "m_PvP": { + "type": "bool", + "id": 17, + "offset": 408, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 269492361 + }, + "m_PvE": { + "type": "bool", + "id": 18, + "offset": 409, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 269492350 + }, + "m_noPvPEnchant": { + "type": "bool", + "id": 19, + "offset": 410, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 661581703 + }, + "m_noPvEEnchant": { + "type": "bool", + "id": 20, + "offset": 411, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 10144220 + }, + "m_battlegroundsOnly": { + "type": "bool", + "id": 21, + "offset": 412, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1244782419 + }, + "m_Treasure": { + "type": "bool", + "id": 22, + "offset": 413, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1749096414 + }, + "m_noDiscard": { + "type": "bool", + "id": 23, + "offset": 414, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 565749226 + }, + "m_leavesPlayWhenCast": { + "type": "bool", + "id": 24, + "offset": 532, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 698216294 + }, + "m_imageIndex": { + "type": "int", + "id": 25, + "offset": 416, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1570500405 + }, + "m_imageName": { + "type": "std::string", + "id": 26, + "offset": 424, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2391520543 + }, + "m_cloaked": { + "type": "bool", + "id": 27, + "offset": 489, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 7349510 + }, + "m_casterInvisible": { + "type": "bool", + "id": 28, + "offset": 490, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 310214650 + }, + "m_adjectives": { + "type": "std::string", + "id": 29, + "offset": 576, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2967855037 + }, + "m_spellSourceType": { + "type": "enum SpellTemplate::kSpellSourceType", + "id": 30, + "offset": 528, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 156272727, + "enum_options": { + "kCaster": 0, + "kPet": 1, + "kShadowCreature": 2, + "kWeapon": 3, + "kEquipment": 4 + } + }, + "m_cloakedName": { + "type": "std::string", + "id": 31, + "offset": 536, + "flags": 268435463, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2846679215, + "enum_options": { + "__BASECLASS": "SpellTemplate" + } + }, + "m_purchaseRequirements": { + "type": "class RequirementList*", + "id": 32, + "offset": 608, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3174641793 + }, + "m_displayRequirements": { + "type": "class RequirementList*", + "id": 33, + "offset": 840, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3646782876 + }, + "m_descriptionTrainer": { + "type": "std::string", + "id": 34, + "offset": 616, + "flags": 8388871, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1756093908 + }, + "m_descriptionCombatHUD": { + "type": "std::string", + "id": 35, + "offset": 648, + "flags": 8388871, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1631478006 + }, + "m_displayIndex": { + "type": "int", + "id": 36, + "offset": 680, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1250551048 + }, + "m_hiddenFromEffectsWindow": { + "type": "bool", + "id": 37, + "offset": 684, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1832736331 + }, + "m_ignoreCharms": { + "type": "bool", + "id": 38, + "offset": 685, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1840075893 + }, + "m_alwaysFizzle": { + "type": "bool", + "id": 39, + "offset": 686, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2030988856 + }, + "m_spellCategory": { + "type": "std::string", + "id": 40, + "offset": 688, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2472376729 + }, + "m_showPolymorphedName": { + "type": "bool", + "id": 41, + "offset": 720, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2097929096 + }, + "m_skipTruncation": { + "type": "bool", + "id": 42, + "offset": 721, + "flags": 263, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1838335249 + }, + "m_maxCopies": { + "type": "unsigned int", + "id": 43, + "offset": 724, + "flags": 263, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 403022326 + }, + "m_levelRestriction": { + "type": "int", + "id": 44, + "offset": 728, + "flags": 263, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 176502472 + }, + "m_delayEnchantment": { + "type": "bool", + "id": 45, + "offset": 732, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 191336919 + }, + "m_delayEnchantmentOrder": { + "type": "enum SpellEffect::kDelayOrder", + "id": 46, + "offset": 736, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2526055263, + "enum_options": { + "SpellEffect::kAnyOrder": 0, + "SpellEffect::kFirst": 1, + "SpellEffect::kSecond": 2 + } + }, + "m_previousSpellName": { + "type": "std::string", + "id": 47, + "offset": 744, + "flags": 268435463, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2903322585, + "enum_options": { + "__BASECLASS": "SpellTemplate" + } + }, + "m_cardFront": { + "type": "std::string", + "id": 48, + "offset": 456, + "flags": 131359, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3557598526 + }, + "m_useGloss": { + "type": "bool", + "id": 49, + "offset": 488, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 668817544 + }, + "m_ignoreDispel": { + "type": "bool", + "id": 50, + "offset": 776, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1881041624 + }, + "m_backRowFriendly": { + "type": "bool", + "id": 51, + "offset": 777, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 501584377 + }, + "m_spellRank": { + "type": "class SharedPointer", + "id": 52, + "offset": 784, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3152361374 + }, + "m_secondarySchoolName": { + "type": "std::string", + "id": 53, + "offset": 800, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1803268236 + }, + "m_spellFusion": { + "type": "unsigned int", + "id": 54, + "offset": 836, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1658928321 + }, + "m_requiredSchoolName": { + "type": "std::string", + "id": 55, + "offset": 848, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3576058981 + }, + "m_cantripsSpellType": { + "type": "enum CantripsSpellTemplate::CantripsSpellType", + "id": 56, + "offset": 880, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3328314982, + "enum_options": { + "CS_Teleportation": 0, + "CS_Incantation": 1, + "CS_Beneficial": 2, + "CS_Ritual": 3, + "CS_Sigil": 4 + } + }, + "m_energyCost": { + "type": "int", + "id": 57, + "offset": 884, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1236111677 + }, + "m_animationKFMs": { + "type": "std::string", + "id": 58, + "offset": 888, + "flags": 131079, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 3393275788 + }, + "m_animationNames": { + "type": "std::string", + "id": 59, + "offset": 912, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1776419407 + }, + "m_soundEffectName": { + "type": "std::string", + "id": 60, + "offset": 936, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3235436082 + }, + "m_soundEffectGain": { + "type": "float", + "id": 61, + "offset": 968, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1827685932, + "enum_options": { + "__DEFAULT": "1.0" + } + }, + "m_cantripsSpellImageIndex": { + "type": "int", + "id": 62, + "offset": 972, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1902695161 + }, + "m_cantripsSpellImageName": { + "type": "std::string", + "id": 63, + "offset": 976, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2661888099 + }, + "m_effectParameter": { + "type": "std::string", + "id": 64, + "offset": 1008, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1522601705 + }, + "m_cantripsSpellEffect": { + "type": "enum CantripsSpellTemplate::CantripsSpellEffect", + "id": 65, + "offset": 1040, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3436262155, + "enum_options": { + "CSE_None": 0, + "CSE_PlayEffect": 1, + "CSE_Mark": 2, + "CSE_Recall": 3, + "CSE_Heal": 4, + "CSE_NoAggro": 5, + "CSE_Teleport": 6, + "CSE_Invisibility": 7, + "CSE_Emote": 8, + "CSE_Ritual": 9, + "CSE_Sigil": 10, + "CSE_Beneficial": 11, + "CSE_PlaySchoolEffect": 12 + } + }, + "m_cooldownSeconds": { + "type": "int", + "id": 66, + "offset": 1044, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1459266190 + } + } + }, + "855275209": { + "name": "enum PathBehaviorTemplate::PathType", + "bases": [], + "hash": 855275209, + "properties": {} + }, + "5393471": { + "name": "class SchoolPipPanel*", + "bases": [ + "Window", + "PropertyClass" + ], + "hash": 5393471, + "properties": { + "m_sName": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306437263 + }, + "m_Children": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621225959 + }, + "m_Style": { + "type": "unsigned int", + "id": 2, + "offset": 152, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "SCALE_CHILDREN": 2, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "FOCUS_LOCKED": 64, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152 + } + }, + "m_Flags": { + "type": "unsigned int", + "id": 3, + "offset": 156, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } + }, + "m_Window": { + "type": "class Rect", + "id": 4, + "offset": 160, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3105139380 + }, + "m_fTargetAlpha": { + "type": "float", + "id": 5, + "offset": 212, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1809129834 + }, + "m_fDisabledAlpha": { + "type": "float", + "id": 6, + "offset": 216, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1389987675 + }, + "m_fAlpha": { + "type": "float", + "id": 7, + "offset": 208, + "flags": 65671, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 482130755 + }, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3623628394 + }, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2102211316 + }, + "m_sScript": { + "type": "std::string", + "id": 10, + "offset": 352, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1846695875 + }, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3389835433 + }, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547159940 + }, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513510520 + }, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3091503757 + } + } + }, + "1702734941": { + "name": "class SharedPointer", + "bases": [ + "SG_GameAction", + "PropertyClass" + ], + "hash": 1702734941, + "properties": { + "m_target": { + "type": "enum SG_GameAction::SG_Target", + "id": 0, + "offset": 72, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1166870973, + "enum_options": { + "Target_Ball": 0, + "Target_Self": 1, + "Target_Connections": 2, + "__DEFAULT": "Target_Ball" + } + }, + "m_graphicArguments": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1656480079 + }, + "m_fMinimumTime": { + "type": "float", + "id": 2, + "offset": 144, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1516804616 + }, + "m_bDisplaysScore": { + "type": "bool", + "id": 3, + "offset": 148, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 722455866 + }, + "m_bPlaysPointsSounds": { + "type": "bool", + "id": 4, + "offset": 149, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 717919607 + } + } + }, + "1262576969": { + "name": "class SavedCharacter*", + "bases": [ + "PropertyClass" + ], + "hash": 1262576969, + "properties": { + "m_hairModel": { + "type": "int", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 764326287 + }, + "m_hairColor": { + "type": "int", + "id": 1, + "offset": 76, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 752476125 + }, + "m_skinColor": { + "type": "int", + "id": 2, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1601202478 + }, + "m_face": { + "type": "int", + "id": 3, + "offset": 84, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 219372329 + }, + "m_skinDecal2": { + "type": "int", + "id": 4, + "offset": 88, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1324180954 + }, + "m_nose": { + "type": "int", + "id": 5, + "offset": 92, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 219675599 + }, + "m_eyeColor": { + "type": "int", + "id": 6, + "offset": 96, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 825282748 + }, + "m_mouth": { + "type": "int", + "id": 7, + "offset": 100, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 802830055 + }, + "m_accessory": { + "type": "int", + "id": 8, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1831652550 + }, + "m_faceDecal": { + "type": "int", + "id": 9, + "offset": 108, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1472001474 + }, + "m_mouthDecal": { + "type": "int", + "id": 10, + "offset": 112, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 993581120 + }, + "m_hatColor": { + "type": "int", + "id": 11, + "offset": 116, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1635647158 + }, + "m_hatDecal": { + "type": "int", + "id": 12, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1636463440 + }, + "m_torsoColor": { + "type": "int", + "id": 13, + "offset": 124, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1443544208 + }, + "m_torsoDecal": { + "type": "int", + "id": 14, + "offset": 128, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1444360490 + }, + "m_feetColor": { + "type": "int", + "id": 15, + "offset": 132, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1168748445 + }, + "m_feetDecal": { + "type": "int", + "id": 16, + "offset": 136, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1169564727 + } + } + }, + "2134229290": { + "name": "class ClientStageBacklashEffectCinematicAction", + "bases": [ + "StageBacklashEffectCinematicAction", + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 2134229290, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + } + } + }, + "4737210": { + "name": "class DeckTemplate", + "bases": [ + "CoreTemplate", + "PropertyClass" + ], + "hash": 4737210, + "properties": { + "m_behaviors": { + "type": "class BehaviorTemplate*", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1197808594 + }, + "m_name": { + "type": "std::string", + "id": 1, + "offset": 96, + "flags": 134217735, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1717359772 + }, + "m_spellNameList": { + "type": "std::string", + "id": 2, + "offset": 136, + "flags": 268435463, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2848889656, + "enum_options": { + "__BASECLASS": "SpellTemplate" + } + } + } + }, + "1702467246": { + "name": "class SigilZoneInfoManager", + "bases": [ + "PropertyClass" + ], + "hash": 1702467246, + "properties": {} + }, + "1260956328": { + "name": "class GardeningShedBehaviorTemplate*", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 1260956328, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + } + } + }, + "4139762": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 4139762, + "properties": { + "m_fPetMass": { + "type": "float", + "id": 0, + "offset": 76, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": true, + "pointer": false, + "hash": 1378034810 + }, + "m_fBounce": { + "type": "float", + "id": 1, + "offset": 92, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": true, + "pointer": false, + "hash": 179025177 + }, + "m_fBounceThreshold": { + "type": "float", + "id": 2, + "offset": 96, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": true, + "pointer": false, + "hash": 1371486086 + }, + "m_fMU": { + "type": "float", + "id": 3, + "offset": 100, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": true, + "pointer": false, + "hash": 357234943 + }, + "m_fERP": { + "type": "float", + "id": 4, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": true, + "pointer": false, + "hash": 309542404 + }, + "m_fCFM": { + "type": "float", + "id": 5, + "offset": 108, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": true, + "pointer": false, + "hash": 309539827 + }, + "m_fContactSurfaceDepth": { + "type": "float", + "id": 6, + "offset": 112, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": true, + "pointer": false, + "hash": 999400231 + }, + "m_bAutoDisable": { + "type": "bool", + "id": 7, + "offset": 116, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": true, + "pointer": false, + "hash": 1449036226 + }, + "m_fAutoDisableLinearThreshold": { + "type": "float", + "id": 8, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": true, + "pointer": false, + "hash": 2028120914 + }, + "m_fAutoDisableAngularThreshold": { + "type": "float", + "id": 9, + "offset": 124, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": true, + "pointer": false, + "hash": 391896705 + }, + "m_iAutoDisableSteps": { + "type": "int", + "id": 10, + "offset": 128, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": true, + "pointer": false, + "hash": 380025343 + }, + "m_fAutoDisableTime": { + "type": "float", + "id": 11, + "offset": 132, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": true, + "pointer": false, + "hash": 1114279513 + }, + "m_fContactMaxCorrectingVel": { + "type": "float", + "id": 12, + "offset": 136, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": true, + "pointer": false, + "hash": 2046803974 + }, + "m_fGravityX": { + "type": "float", + "id": 13, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": true, + "pointer": false, + "hash": 1531831803 + }, + "m_fGravityY": { + "type": "float", + "id": 14, + "offset": 84, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": true, + "pointer": false, + "hash": 1531831804 + }, + "m_fGravityZ": { + "type": "float", + "id": 15, + "offset": 88, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": true, + "pointer": false, + "hash": 1531831805 + }, + "m_perShotLeftoverScoreBonus": { + "type": "int", + "id": 16, + "offset": 140, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": true, + "pointer": false, + "hash": 1865826121 + }, + "m_iSoundCollisionThreshold": { + "type": "int", + "id": 17, + "offset": 144, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": true, + "pointer": false, + "hash": 610409093 + }, + "m_gamePowers": { + "type": "class SharedPointer", + "id": 18, + "offset": 152, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": true, + "pointer": true, + "hash": 2071626314 + }, + "m_gameInteractions": { + "type": "class SharedPointer", + "id": 19, + "offset": 168, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": true, + "pointer": true, + "hash": 3264886543 + }, + "m_gameEvents": { + "type": "class SharedPointer", + "id": 20, + "offset": 184, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": true, + "pointer": true, + "hash": 1839206463 + }, + "m_gameLevelData": { + "type": "class SharedPointer", + "id": 21, + "offset": 200, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": true, + "pointer": true, + "hash": 1151370820 + }, + "m_blockTypes": { + "type": "class SharedPointer", + "id": 22, + "offset": 216, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": true, + "pointer": true, + "hash": 811905140 + }, + "m_comboMultipliers": { + "type": "class SharedPointer", + "id": 23, + "offset": 232, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": true, + "pointer": true, + "hash": 3057704584 + } + } + }, + "1702467206": { + "name": "class SigilZoneInfoManager*", + "bases": [ + "PropertyClass" + ], + "hash": 1702467206, + "properties": {} + }, + "1260669407": { + "name": "class FriendsListWindow*", + "bases": [ + "Window", + "PropertyClass" + ], + "hash": 1260669407, + "properties": { + "m_sName": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306437263 + }, + "m_Children": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621225959 + }, + "m_Style": { + "type": "unsigned int", + "id": 2, + "offset": 152, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "SCALE_CHILDREN": 2, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "FOCUS_LOCKED": 64, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152 + } + }, + "m_Flags": { + "type": "unsigned int", + "id": 3, + "offset": 156, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } + }, + "m_Window": { + "type": "class Rect", + "id": 4, + "offset": 160, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3105139380 + }, + "m_fTargetAlpha": { + "type": "float", + "id": 5, + "offset": 212, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1809129834 + }, + "m_fDisabledAlpha": { + "type": "float", + "id": 6, + "offset": 216, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1389987675 + }, + "m_fAlpha": { + "type": "float", + "id": 7, + "offset": 208, + "flags": 65671, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 482130755 + }, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3623628394 + }, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2102211316 + }, + "m_sScript": { + "type": "std::string", + "id": 10, + "offset": 352, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1846695875 + }, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3389835433 + }, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547159940 + }, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513510520 + }, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3091503757 + } + } + }, + "4050806": { + "name": "class SharedPointer", + "bases": [ + "ItemLootInfo", + "LootInfo", + "LootInfoBase", + "PropertyClass" + ], + "hash": 4050806, + "properties": { + "m_lootType": { + "type": "enum LootInfo::LOOT_TYPE", + "id": 0, + "offset": 72, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1591891442, + "enum_options": { + "LOOT_TYPE_NONE": 0, + "LOOT_TYPE_GOLD": 1, + "LOOT_TYPE_MANA": 2, + "LOOT_TYPE_ITEM": 3, + "LOOT_TYPE_TREASURE_CARD": 4, + "LOOT_TYPE_MAGIC_XP": 5, + "LOOT_TYPE_ADD_SPELL": 6, + "LOOT_TYPE_MAX_HEALTH": 7, + "LOOT_TYPE_MAX_GOLD": 8, + "LOOT_TYPE_MAX_MANA": 9, + "LOOT_TYPE_MAX_POTION": 10, + "LOOT_TYPE_TRAINING_POINTS": 11, + "LOOT_TYPE_RECIPE": 12, + "LOOT_TYPE_CRAFTING_SLOT": 13, + "LOOT_TYPE_REAGENT": 14, + "LOOT_TYPE_PETSNACK": 15, + "LOOT_TYPE_GARDENING_XP": 16, + "LOOT_TYPE_PET_XP": 17, + "LOOT_TYPE_TREASURE_TABLE": 18, + "LOOT_TYPE_ARENA_POINTS": 19, + "LOOT_TYPE_ARENA_BONUS_POINTS": 20, + "LOOT_TYPE_GROUP": 21, + "LOOT_TYPE_FISHING_XP": 22, + "LOOT_TYPE_EVENT_CURRENCY_1": 24, + "LOOT_TYPE_EVENT_CURRENCY_2": 25, + "LOOT_TYPE_PVP_CURRENCY": 26, + "LOOT_TYPE_PVP_CURRENCY_BONUS": 27, + "LOOT_TYPE_PVP_TOURNEY_CURRENCY": 28, + "LOOT_TYPE_PVP_TOURNEY_CURRENCY_BONUS": 29, + "LOOT_TYPE_FURNITURE_ESSENCE": 30 + } + }, + "m_itemID": { + "type": "gid", + "id": 1, + "offset": 88, + "flags": 33554463, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 569545460 + }, + "m_numItems": { + "type": "int", + "id": 2, + "offset": 96, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1588646284 + } + } + }, + "859401725": { + "name": "class ReqMinion", + "bases": [ + "ConditionalSpellEffectRequirement", + "Requirement", + "PropertyClass" + ], + "hash": 859401725, + "properties": { + "m_applyNOT": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1746328074, + "enum_options": { + "__DEFAULT": 0 + } + }, + "m_operator": { + "type": "enum Requirement::Operator", + "id": 1, + "offset": 76, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2672792317, + "enum_options": { + "ROP_AND": 0, + "ROP_OR": 1, + "__DEFAULT": "ROP_AND" + } + }, + "m_targetType": { + "type": "enum ConditionalSpellEffectRequirement::RequirementTarget", + "id": 2, + "offset": 80, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547737902, + "enum_options": { + "RT_Caster": 0, + "RT_Target": 1 + } + }, + "m_minionType": { + "type": "enum ReqMinion::MinionType", + "id": 3, + "offset": 88, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2627992580, + "enum_options": { + "Is_Minion": 0, + "Has_Minion": 1, + "On_Team": 2, + "On_Other_Team": 3, + "On_Any_Team": 4 + } + } + } + }, + "2137655096": { + "name": "class ClientClearBottomTeamCinematicAction", + "bases": [ + "ClearBottomTeamCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 2137655096, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_interpDuration": { + "type": "float", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237711951 + } + } + }, + "858701303": { + "name": "class Persona*", + "bases": [ + "PropertyClass" + ], + "hash": 858701303, + "properties": { + "m_personaName": { + "type": "std::string", + "id": 0, + "offset": 144, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2514452244 + }, + "m_firstName": { + "type": "std::string", + "id": 1, + "offset": 208, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3116002948 + }, + "m_lastName": { + "type": "std::string", + "id": 2, + "offset": 240, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1826203600 + }, + "m_title": { + "type": "std::string", + "id": 3, + "offset": 272, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2308614141 + }, + "m_nickname": { + "type": "std::string", + "id": 4, + "offset": 304, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2269863201 + }, + "m_questList": { + "type": "std::string", + "id": 5, + "offset": 360, + "flags": 268435463, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1702049897, + "enum_options": { + "__BASECLASS": "QuestTemplate" + } + }, + "m_questArcList": { + "type": "std::string", + "id": 6, + "offset": 376, + "flags": 268435463, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 3113974815, + "enum_options": { + "__BASECLASS": "QuestArc" + } + }, + "m_icon": { + "type": "std::string", + "id": 7, + "offset": 176, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1717182340 + }, + "m_showTitle": { + "type": "bool", + "id": 8, + "offset": 336, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2128418998 + }, + "m_titleLast": { + "type": "bool", + "id": 9, + "offset": 337, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1207515433 + }, + "m_maintainQuestOrder": { + "type": "bool", + "id": 10, + "offset": 338, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 317861362 + }, + "m_offerArcsFirst": { + "type": "bool", + "id": 11, + "offset": 339, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1663706614 + } + } + }, + "1260829131": { + "name": "class ResistLimitOverride*", + "bases": [ + "CombatRule", + "PropertyClass" + ], + "hash": 1260829131, + "properties": { + "m_resistLimit": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1192834544 + }, + "m_rK0": { + "type": "float", + "id": 1, + "offset": 76, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 357247908 + }, + "m_rN0": { + "type": "float", + "id": 2, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 357248007 + } + } + }, + "2136413240": { + "name": "class PipCinematicActor*", + "bases": [ + "CinematicActor", + "PropertyClass" + ], + "hash": 2136413240, + "properties": {} + }, + "858590365": { + "name": "class PvPStatueBehaviorTemplate*", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 858590365, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + }, + "m_league": { + "type": "std::string", + "id": 1, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2166730062 + }, + "m_rank": { + "type": "int", + "id": 2, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 219803942 + }, + "m_refreshRateSec": { + "type": "int", + "id": 3, + "offset": 156, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 418402320 + }, + "m_groundOffset": { + "type": "float", + "id": 4, + "offset": 160, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 684524077 + }, + "m_yaw": { + "type": "float", + "id": 5, + "offset": 164, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 357256328 + }, + "m_showNametag": { + "type": "bool", + "id": 6, + "offset": 168, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 584664753 + }, + "m_showInGrace": { + "type": "bool", + "id": 7, + "offset": 169, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1033917517 + }, + "m_showActive": { + "type": "bool", + "id": 8, + "offset": 170, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 685431312 + }, + "m_scale": { + "type": "float", + "id": 9, + "offset": 172, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 899693439 + }, + "m_alpha": { + "type": "float", + "id": 10, + "offset": 176, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 878686493 + }, + "m_animDelaySec": { + "type": "float", + "id": 11, + "offset": 180, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2131058854 + }, + "m_animChance": { + "type": "float", + "id": 12, + "offset": 184, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 434823806 + }, + "m_animList": { + "type": "std::string", + "id": 13, + "offset": 192, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2531745852 + } + } + }, + "1702511141": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1702511141, + "properties": { + "m_name": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1717359772 + }, + "m_list": { + "type": "class CharacterElement*", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 646909524 + } + } + }, + "2135033656": { + "name": "class ClientClearBottomTeamCinematicAction*", + "bases": [ + "ClearBottomTeamCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 2135033656, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_interpDuration": { + "type": "float", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237711951 + } + } + }, + "4324381": { + "name": "class AlternateTurnsCombatRule*", + "bases": [ + "CombatRule", + "PropertyClass" + ], + "hash": 4324381, + "properties": { + "m_alternateTurns": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1974126767 + }, + "m_pipsForBothTeamsAtOnce": { + "type": "bool", + "id": 1, + "offset": 73, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 289530295 + } + } + }, + "858174808": { + "name": "class ReqIsQuest*", + "bases": [ + "Requirement", + "PropertyClass" + ], + "hash": 858174808, + "properties": { + "m_applyNOT": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1746328074, + "enum_options": { + "__DEFAULT": 0 + } + }, + "m_operator": { + "type": "enum Requirement::Operator", + "id": 1, + "offset": 76, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2672792317, + "enum_options": { + "ROP_AND": 0, + "ROP_OR": 1, + "__DEFAULT": "ROP_AND" + } + }, + "m_questName": { + "type": "std::string", + "id": 2, + "offset": 80, + "flags": 268435463, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1702112846, + "enum_options": { + "__BASECLASS": "QuestTemplate" + } + } + } + }, + "2134814364": { + "name": "class SharedPointer", + "bases": [ + "WinAnimSize", + "WindowAnimation", + "PropertyClass" + ], + "hash": 2134814364, + "properties": { + "m_bUseDeepCopy": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 433380635 + }, + "m_size": { + "type": "class Size", + "id": 1, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 251247159 + }, + "m_fTimeTotal": { + "type": "float", + "id": 2, + "offset": 88, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 661225456 + }, + "m_fTimeRemaining": { + "type": "float", + "id": 3, + "offset": 92, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1591443014 + }, + "m_currentSize": { + "type": "class Vector3D", + "id": 4, + "offset": 96, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2914066496 + } + } + }, + "856547416": { + "name": "class ClientRemoveBacklashEffectCinematicAciton", + "bases": [ + "RemoveBacklashEffectCinematicAction", + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 856547416, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + } + } + }, + "1261508737": { + "name": "class SharedPointer", + "bases": [ + "CoreObjectInfo", + "PropertyClass" + ], + "hash": 1261508737, + "properties": { + "m_templateID.m_full": { + "type": "unsigned __int64", + "id": 0, + "offset": 72, + "flags": 33554439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 633907631 + }, + "m_nObjectID": { + "type": "unsigned int", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 748496927 + }, + "m_location": { + "type": "class Vector3D", + "id": 2, + "offset": 84, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2239683611 + }, + "m_orientation": { + "type": "class Vector3D", + "id": 3, + "offset": 96, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2344058766 + }, + "m_fScale": { + "type": "float", + "id": 4, + "offset": 108, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 503137701 + }, + "m_zoneTag": { + "type": "std::string", + "id": 5, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3405382643 + }, + "m_startState": { + "type": "std::string", + "id": 6, + "offset": 184, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2166880458 + }, + "m_overrideName": { + "type": "std::string", + "id": 7, + "offset": 120, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1990707228 + }, + "m_globalDynamic": { + "type": "bool", + "id": 8, + "offset": 116, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1951691017 + }, + "m_bUndetectable": { + "type": "bool", + "id": 9, + "offset": 216, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1907454341 + }, + "m_spawnRequirements": { + "type": "class SharedPointer", + "id": 10, + "offset": 224, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2309120870 + }, + "m_loadingType": { + "type": "enum CoreObjectInfo::LoadingType", + "id": 11, + "offset": 112, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3522422550, + "enum_options": { + "STATIC_CLIENT_SERVER": 0, + "STATIC_CLIENT": 1, + "STATIC_SERVER": 2, + "DYNAMIC_SERVER": 3 + } + }, + "m_kStartNodeType": { + "type": "enum SpawnObjectInfo::StartNodeType", + "id": 12, + "offset": 240, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1545814623, + "enum_options": { + "SNT_RANDOM": 0, + "SNT_RANDOM_UNIQUE": 1, + "SNT_FIRST": 2, + "SNT_LAST": 3, + "SNT_SPECIFIC": 4 + } + }, + "m_startNode": { + "type": "unsigned int", + "id": 13, + "offset": 256, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1598161889, + "enum_options": { + "__DEFAULT": 0 + } + }, + "m_pathID": { + "type": "gid", + "id": 14, + "offset": 248, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 821494322 + }, + "m_uniqueLoc": { + "type": "char", + "id": 15, + "offset": 260, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 400014505 + } + } + }, + "1703228622": { + "name": "struct std::pair,class std::allocator >,class Color>", + "bases": [], + "hash": 1703228622, + "properties": {} + }, + "1261284008": { + "name": "class GardeningShedBehaviorTemplate", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 1261284008, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + } + } + }, + "4897181": { + "name": "class GuildMuseumCuratorOption", + "bases": [ + "ServiceOptionBase", + "PropertyClass" + ], + "hash": 4897181, + "properties": { + "m_serviceName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2206028813 + }, + "m_iconKey": { + "type": "std::string", + "id": 1, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2457138637 + }, + "m_displayKey": { + "type": "std::string", + "id": 2, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3023276954 + }, + "m_serviceIndex": { + "type": "unsigned int", + "id": 3, + "offset": 204, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2103126710 + }, + "m_forceInteract": { + "type": "bool", + "id": 4, + "offset": 200, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1705789564 + } + } + }, + "2135915104": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 2135915104, + "properties": {} + }, + "4781295": { + "name": "class ProvideSpellEffectInfo*", + "bases": [ + "GameEffectInfo", + "PropertyClass" + ], + "hash": 4781295, + "properties": { + "m_effectName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2029161513 + }, + "m_spellName": { + "type": "std::string", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2688485244 + }, + "m_numSpells": { + "type": "int", + "id": 2, + "offset": 136, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1269498237 + }, + "m_vFX": { + "type": "std::string", + "id": 3, + "offset": 144, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1764750607 + }, + "m_vFXOverride": { + "type": "bool", + "id": 4, + "offset": 176, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1491092359 + }, + "m_sound": { + "type": "std::string", + "id": 5, + "offset": 184, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2307644996 + } + } + }, + "858568024": { + "name": "class ReqIsQuest", + "bases": [ + "Requirement", + "PropertyClass" + ], + "hash": 858568024, + "properties": { + "m_applyNOT": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1746328074, + "enum_options": { + "__DEFAULT": 0 + } + }, + "m_operator": { + "type": "enum Requirement::Operator", + "id": 1, + "offset": 76, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2672792317, + "enum_options": { + "ROP_AND": 0, + "ROP_OR": 1, + "__DEFAULT": "ROP_AND" + } + }, + "m_questName": { + "type": "std::string", + "id": 2, + "offset": 80, + "flags": 268435463, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1702112846, + "enum_options": { + "__BASECLASS": "QuestTemplate" + } + } + } + }, + "4740335": { + "name": "class ProvideSpellEffectInfo", + "bases": [ + "GameEffectInfo", + "PropertyClass" + ], + "hash": 4740335, + "properties": { + "m_effectName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2029161513 + }, + "m_spellName": { + "type": "std::string", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2688485244 + }, + "m_numSpells": { + "type": "int", + "id": 2, + "offset": 136, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1269498237 + }, + "m_vFX": { + "type": "std::string", + "id": 3, + "offset": 144, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1764750607 + }, + "m_vFXOverride": { + "type": "bool", + "id": 4, + "offset": 176, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1491092359 + }, + "m_sound": { + "type": "std::string", + "id": 5, + "offset": 184, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2307644996 + } + } + }, + "1712236101": { + "name": "class IdleInterceptCinematicAction*", + "bases": [ + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 1712236101, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + } + } + }, + "1262198543": { + "name": "class MonsterMagicBehaviorBase", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1262198543, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_monsterData": { + "type": "std::string", + "id": 1, + "offset": 128, + "flags": 551, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3377737309 + } + } + }, + "1711483389": { + "name": "class SharedPointer", + "bases": [ + "ServiceOptionBase", + "PropertyClass" + ], + "hash": 1711483389, + "properties": { + "m_serviceName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2206028813 + }, + "m_iconKey": { + "type": "std::string", + "id": 1, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2457138637 + }, + "m_displayKey": { + "type": "std::string", + "id": 2, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3023276954 + }, + "m_serviceIndex": { + "type": "unsigned int", + "id": 3, + "offset": 204, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2103126710 + }, + "m_forceInteract": { + "type": "bool", + "id": 4, + "offset": 200, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1705789564 + } + } + }, + "1261538180": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1261538180, + "properties": { + "m_progression": { + "type": "enum PlayList::Progression", + "id": 0, + "offset": 72, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3279400238, + "enum_options": { + "Sequence": 0, + "Random": 1, + "SequenceOnceOnly": 2, + "RandomNoRepeat": 3 + } + }, + "m_currentTrack": { + "type": "int", + "id": 1, + "offset": 76, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 652542482 + }, + "m_trackFilenameList": { + "type": "class PlayListEntry*", + "id": 2, + "offset": 80, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 3167512201 + } + } + }, + "2137559660": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 2137559660, + "properties": {} + }, + "858701283": { + "name": "class Persona", + "bases": [ + "PropertyClass" + ], + "hash": 858701283, + "properties": { + "m_personaName": { + "type": "std::string", + "id": 0, + "offset": 144, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2514452244 + }, + "m_firstName": { + "type": "std::string", + "id": 1, + "offset": 208, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3116002948 + }, + "m_lastName": { + "type": "std::string", + "id": 2, + "offset": 240, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1826203600 + }, + "m_title": { + "type": "std::string", + "id": 3, + "offset": 272, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2308614141 + }, + "m_nickname": { + "type": "std::string", + "id": 4, + "offset": 304, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2269863201 + }, + "m_questList": { + "type": "std::string", + "id": 5, + "offset": 360, + "flags": 268435463, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1702049897, + "enum_options": { + "__BASECLASS": "QuestTemplate" + } + }, + "m_questArcList": { + "type": "std::string", + "id": 6, + "offset": 376, + "flags": 268435463, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 3113974815, + "enum_options": { + "__BASECLASS": "QuestArc" + } + }, + "m_icon": { + "type": "std::string", + "id": 7, + "offset": 176, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1717182340 + }, + "m_showTitle": { + "type": "bool", + "id": 8, + "offset": 336, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2128418998 + }, + "m_titleLast": { + "type": "bool", + "id": 9, + "offset": 337, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1207515433 + }, + "m_maintainQuestOrder": { + "type": "bool", + "id": 10, + "offset": 338, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 317861362 + }, + "m_offerArcsFirst": { + "type": "bool", + "id": 11, + "offset": 339, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1663706614 + } + } + }, + "1708702521": { + "name": "class SharedPointer", + "bases": [ + "CinematicAction", + "PropertyClass" + ], + "hash": 1708702521, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + } + } + }, + "2137546231": { + "name": "class TeamUpWindow*", + "bases": [ + "Window", + "PropertyClass" + ], + "hash": 2137546231, + "properties": { + "m_sName": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306437263 + }, + "m_Children": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621225959 + }, + "m_Style": { + "type": "unsigned int", + "id": 2, + "offset": 152, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "SCALE_CHILDREN": 2, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "FOCUS_LOCKED": 64, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152 + } + }, + "m_Flags": { + "type": "unsigned int", + "id": 3, + "offset": 156, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } + }, + "m_Window": { + "type": "class Rect", + "id": 4, + "offset": 160, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3105139380 + }, + "m_fTargetAlpha": { + "type": "float", + "id": 5, + "offset": 212, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1809129834 + }, + "m_fDisabledAlpha": { + "type": "float", + "id": 6, + "offset": 216, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1389987675 + }, + "m_fAlpha": { + "type": "float", + "id": 7, + "offset": 208, + "flags": 65671, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 482130755 + }, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3623628394 + }, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2102211316 + }, + "m_sScript": { + "type": "std::string", + "id": 10, + "offset": 352, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1846695875 + }, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3389835433 + }, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547159940 + }, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513510520 + }, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3091503757 + } + } + }, + "1706958033": { + "name": "class Point", + "bases": [], + "hash": 1706958033, + "properties": {} + }, + "5085046": { + "name": "class std::list >", + "bases": [], + "hash": 5085046, + "properties": {} + }, + "1704590457": { + "name": "class ActorRenameCinematicAction*", + "bases": [ + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 1704590457, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + }, + "m_newNamePattern": { + "type": "std::string", + "id": 2, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1519245892 + }, + "m_bActOnlyOnFirstActor": { + "type": "bool", + "id": 3, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2050856077 + } + } + }, + "5070571": { + "name": "class MatchTimerControl*", + "bases": [ + "ControlText", + "Window", + "PropertyClass" + ], + "hash": 5070571, + "properties": { + "m_sName": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306437263 + }, + "m_Children": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621225959 + }, + "m_Style": { + "type": "unsigned int", + "id": 2, + "offset": 152, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152, + "DO_NOT_WRAP": 134217728, + "FIT_TEXT": 268435456 + } + }, + "m_Flags": { + "type": "unsigned int", + "id": 3, + "offset": 156, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } + }, + "m_Window": { + "type": "class Rect", + "id": 4, + "offset": 160, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3105139380 + }, + "m_fTargetAlpha": { + "type": "float", + "id": 5, + "offset": 212, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1809129834 + }, + "m_fDisabledAlpha": { + "type": "float", + "id": 6, + "offset": 216, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1389987675 + }, + "m_fAlpha": { + "type": "float", + "id": 7, + "offset": 208, + "flags": 65671, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 482130755 + }, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3623628394 + }, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2102211316 + }, + "m_sScript": { + "type": "std::string", + "id": 10, + "offset": 352, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1846695875 + }, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3389835433 + }, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547159940 + }, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513510520 + }, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3091503757 + }, + "m_sText": { + "type": "std::wstring", + "id": 16, + "offset": 584, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2102642960 + }, + "m_sTooltip": { + "type": "std::wstring", + "id": 17, + "offset": 616, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1680475798 + }, + "m_bUseDropShadow": { + "type": "bool", + "id": 18, + "offset": 653, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 93063037 + }, + "m_bUseOutline": { + "type": "bool", + "id": 19, + "offset": 654, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 744292994 + }, + "m_bEnableWordWrap": { + "type": "bool", + "id": 20, + "offset": 655, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 430904562 + }, + "m_bEnableToggle": { + "type": "bool", + "id": 21, + "offset": 652, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1937994142 + }, + "m_nLeadingAdjust": { + "type": "int", + "id": 22, + "offset": 656, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1559480167 + }, + "m_alertSeconds": { + "type": "unsigned int", + "id": 23, + "offset": 700, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2220095860 + }, + "m_alertSeconds2": { + "type": "unsigned int", + "id": 24, + "offset": 704, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2070944934 + }, + "m_blinkRate": { + "type": "float", + "id": 25, + "offset": 708, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 395499571 + } + } + }, + "859389437": { + "name": "class ReqMinion*", + "bases": [ + "ConditionalSpellEffectRequirement", + "Requirement", + "PropertyClass" + ], + "hash": 859389437, + "properties": { + "m_applyNOT": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1746328074, + "enum_options": { + "__DEFAULT": 0 + } + }, + "m_operator": { + "type": "enum Requirement::Operator", + "id": 1, + "offset": 76, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2672792317, + "enum_options": { + "ROP_AND": 0, + "ROP_OR": 1, + "__DEFAULT": "ROP_AND" + } + }, + "m_targetType": { + "type": "enum ConditionalSpellEffectRequirement::RequirementTarget", + "id": 2, + "offset": 80, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547737902, + "enum_options": { + "RT_Caster": 0, + "RT_Target": 1 + } + }, + "m_minionType": { + "type": "enum ReqMinion::MinionType", + "id": 3, + "offset": 88, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2627992580, + "enum_options": { + "Is_Minion": 0, + "Has_Minion": 1, + "On_Team": 2, + "On_Other_Team": 3, + "On_Any_Team": 4 + } + } + } + }, + "1704590451": { + "name": "class ActorRenameCinematicAction", + "bases": [ + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 1704590451, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + }, + "m_newNamePattern": { + "type": "std::string", + "id": 2, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1519245892 + }, + "m_bActOnlyOnFirstActor": { + "type": "bool", + "id": 3, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2050856077 + } + } + }, + "1263731318": { + "name": "class SharedPointer", + "bases": [ + "Recipe", + "CoreObject", + "PropertyClass" + ], + "hash": 1263731318, + "properties": { + "m_inactiveBehaviors": { + "type": "class SharedPointer", + "id": 0, + "offset": 224, + "flags": 31, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1850812559 + }, + "m_globalID.m_full": { + "type": "unsigned __int64", + "id": 1, + "offset": 72, + "flags": 16777247, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2312465444 + }, + "m_permID": { + "type": "unsigned __int64", + "id": 2, + "offset": 80, + "flags": 16777247, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1298909658 + }, + "m_location": { + "type": "class Vector3D", + "id": 3, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2239683611 + }, + "m_orientation": { + "type": "class Vector3D", + "id": 4, + "offset": 180, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2344058766 + }, + "m_fScale": { + "type": "float", + "id": 5, + "offset": 196, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 503137701 + }, + "m_templateID.m_full": { + "type": "unsigned __int64", + "id": 6, + "offset": 96, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 633907631 + }, + "m_debugName": { + "type": "std::string", + "id": 7, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3553984419 + }, + "m_displayKey": { + "type": "std::string", + "id": 8, + "offset": 136, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3023276954 + }, + "m_zoneTagID": { + "type": "unsigned int", + "id": 9, + "offset": 344, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 965291410 + }, + "m_speedMultiplier": { + "type": "short", + "id": 10, + "offset": 192, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 123130076 + }, + "m_nMobileID": { + "type": "unsigned short", + "id": 11, + "offset": 194, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1054318939 + }, + "m_recipeNameID": { + "type": "unsigned int", + "id": 12, + "offset": 384, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2168714419 + } + } + }, + "859081414": { + "name": "class SharedPointer", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 859081414, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + }, + "m_polymorphCategory": { + "type": "std::string", + "id": 1, + "offset": 120, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3076206595 + } + } + }, + "1262577129": { + "name": "class SavedCharacter", + "bases": [ + "PropertyClass" + ], + "hash": 1262577129, + "properties": { + "m_hairModel": { + "type": "int", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 764326287 + }, + "m_hairColor": { + "type": "int", + "id": 1, + "offset": 76, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 752476125 + }, + "m_skinColor": { + "type": "int", + "id": 2, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1601202478 + }, + "m_face": { + "type": "int", + "id": 3, + "offset": 84, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 219372329 + }, + "m_skinDecal2": { + "type": "int", + "id": 4, + "offset": 88, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1324180954 + }, + "m_nose": { + "type": "int", + "id": 5, + "offset": 92, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 219675599 + }, + "m_eyeColor": { + "type": "int", + "id": 6, + "offset": 96, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 825282748 + }, + "m_mouth": { + "type": "int", + "id": 7, + "offset": 100, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 802830055 + }, + "m_accessory": { + "type": "int", + "id": 8, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1831652550 + }, + "m_faceDecal": { + "type": "int", + "id": 9, + "offset": 108, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1472001474 + }, + "m_mouthDecal": { + "type": "int", + "id": 10, + "offset": 112, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 993581120 + }, + "m_hatColor": { + "type": "int", + "id": 11, + "offset": 116, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1635647158 + }, + "m_hatDecal": { + "type": "int", + "id": 12, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1636463440 + }, + "m_torsoColor": { + "type": "int", + "id": 13, + "offset": 124, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1443544208 + }, + "m_torsoDecal": { + "type": "int", + "id": 14, + "offset": 128, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1444360490 + }, + "m_feetColor": { + "type": "int", + "id": 15, + "offset": 132, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1168748445 + }, + "m_feetDecal": { + "type": "int", + "id": 16, + "offset": 136, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1169564727 + } + } + }, + "2139592188": { + "name": "class HousingBlobCustomObject", + "bases": [ + "HousingBlobObject", + "PropertyClass" + ], + "hash": 2139592188, + "properties": { + "m_gameObjectTemplateID": { + "type": "unsigned int", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1154586887, + "enum_options": { + "__DEFAULT": 0 + } + }, + "m_positionXY": { + "type": "unsigned int", + "id": 1, + "offset": 76, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1263476723, + "enum_options": { + "__DEFAULT": 0 + } + }, + "m_positionZ": { + "type": "float", + "id": 2, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 837995846, + "enum_options": { + "__DEFAULT": 0 + } + }, + "m_yaw": { + "type": "unsigned char", + "id": 3, + "offset": 84, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 904654625, + "enum_options": { + "__DEFAULT": 0 + } + }, + "m_extraData1": { + "type": "unsigned int", + "id": 4, + "offset": 88, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 693220060, + "enum_options": { + "__DEFAULT": 0 + } + }, + "m_customData": { + "type": "std::string", + "id": 5, + "offset": 96, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1638082768 + } + } + }, + "2138834812": { + "name": "enum CreateActorCinematicAction::kCreateOrientation", + "bases": [], + "hash": 2138834812, + "properties": {} + }, + "5153843": { + "name": "class SharedPointer", + "bases": [ + "ZoneTokenBoolean", + "ZoneTokenBase", + "PropertyClass" + ], + "hash": 5153843, + "properties": { + "m_debugName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3553984419 + }, + "m_adjectiveList": { + "type": "std::string", + "id": 1, + "offset": 104, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 3195213318 + }, + "m_icon": { + "type": "std::string", + "id": 2, + "offset": 120, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1717182340 + }, + "m_iconBW": { + "type": "std::string", + "id": 3, + "offset": 152, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2047461085 + }, + "m_description": { + "type": "std::string", + "id": 4, + "offset": 184, + "flags": 8388639, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1649374815 + }, + "m_displayMode": { + "type": "enum ZTDisplayMode", + "id": 5, + "offset": 216, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2216526410, + "enum_options": { + "ZTDM_Shown": 0, + "ZTDM_Discoverable": 1, + "ZTDM_Hidden": 2 + } + }, + "m_storage": { + "type": "enum ZTStorage", + "id": 6, + "offset": 220, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2290454852, + "enum_options": { + "ZTS_Player": 0, + "ZTS_Zone": 1 + } + }, + "m_onEnable": { + "type": "class SharedPointer", + "id": 7, + "offset": 224, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2591736864 + }, + "m_onDiscover": { + "type": "class SharedPointer", + "id": 8, + "offset": 240, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2826026872 + }, + "m_onDisable": { + "type": "class SharedPointer", + "id": 9, + "offset": 256, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1860656717 + }, + "m_sourceID": { + "type": "gid", + "id": 10, + "offset": 272, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1134700470 + }, + "m_inZone": { + "type": "bool", + "id": 11, + "offset": 280, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 564535654 + }, + "m_enabled": { + "type": "bool", + "id": 12, + "offset": 281, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 504506718 + }, + "m_discovered": { + "type": "bool", + "id": 13, + "offset": 282, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2060478331 + }, + "m_onSet": { + "type": "class SharedPointer", + "id": 14, + "offset": 288, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1964529317 + }, + "m_onClear": { + "type": "class SharedPointer", + "id": 15, + "offset": 304, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1655978208 + }, + "m_bSet": { + "type": "bool", + "id": 16, + "offset": 320, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 221694593 + } + } + }, + "1705937941": { + "name": "class ControlButtonState*", + "bases": [ + "PropertyClass" + ], + "hash": 1705937941, + "properties": {} + }, + "1262803676": { + "name": "class GardeningXPConfig", + "bases": [ + "PropertyClass" + ], + "hash": 1262803676, + "properties": { + "m_levelInfo": { + "type": "class GardeningLevelInfo*", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 3807245122 + }, + "m_maxLevel": { + "type": "unsigned char", + "id": 1, + "offset": 88, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 783962734 + } + } + }, + "1705491853": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1705491853, + "properties": { + "m_stageMin": { + "type": "int", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 353899634 + }, + "m_stageMax": { + "type": "int", + "id": 1, + "offset": 76, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 353899380 + }, + "m_zoneEvents": { + "type": "std::string", + "id": 2, + "offset": 112, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2188728076 + }, + "m_zone": { + "type": "std::string", + "id": 3, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1717806295 + } + } + }, + "859850877": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 859850877, + "properties": { + "m_promoID": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3494513013 + }, + "m_promoTitle": { + "type": "std::string", + "id": 1, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1797811434 + }, + "m_promoDesc": { + "type": "std::string", + "id": 2, + "offset": 136, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2677655015 + }, + "m_inviterRewards": { + "type": "class PromoRewardList", + "id": 3, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1643624525 + }, + "m_inviteeRewards": { + "type": "class PromoRewardList", + "id": 4, + "offset": 256, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1654647008 + } + } + }, + "2139951695": { + "name": "class SharedPointer", + "bases": [ + "WizClientLeashedObject", + "WizClientObject", + "ClientObject", + "CoreObject", + "PropertyClass" + ], + "hash": 2139951695, + "properties": { + "m_inactiveBehaviors": { + "type": "class SharedPointer", + "id": 0, + "offset": 224, + "flags": 31, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1850812559 + }, + "m_globalID.m_full": { + "type": "unsigned __int64", + "id": 1, + "offset": 72, + "flags": 16777247, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2312465444 + }, + "m_permID": { + "type": "unsigned __int64", + "id": 2, + "offset": 80, + "flags": 16777247, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1298909658 + }, + "m_location": { + "type": "class Vector3D", + "id": 3, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2239683611 + }, + "m_orientation": { + "type": "class Vector3D", + "id": 4, + "offset": 180, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2344058766 + }, + "m_fScale": { + "type": "float", + "id": 5, + "offset": 196, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 503137701 + }, + "m_templateID.m_full": { + "type": "unsigned __int64", + "id": 6, + "offset": 96, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 633907631 + }, + "m_debugName": { + "type": "std::string", + "id": 7, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3553984419 + }, + "m_displayKey": { + "type": "std::string", + "id": 8, + "offset": 136, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3023276954 + }, + "m_zoneTagID": { + "type": "unsigned int", + "id": 9, + "offset": 344, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 965291410 + }, + "m_speedMultiplier": { + "type": "short", + "id": 10, + "offset": 192, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 123130076 + }, + "m_nMobileID": { + "type": "unsigned short", + "id": 11, + "offset": 194, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1054318939 + }, + "m_characterId": { + "type": "gid", + "id": 12, + "offset": 440, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 210498418 + }, + "m_gameStats": { + "type": "class WizGameStats*", + "id": 13, + "offset": 552, + "flags": 27, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3194480406 + }, + "m_leashed": { + "type": "bool", + "id": 14, + "offset": 584, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 603235945 + } + } + }, + "6006332": { + "name": "class ExtraHousingZoneBehaviorTemplate", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 6006332, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + }, + "m_lotWorldZone": { + "type": "std::string", + "id": 1, + "offset": 120, + "flags": 268435463, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3026711022, + "enum_options": { + "__BASECLASS": "ZoneData" + } + } + } + }, + "859645657": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 859645657, + "properties": { + "m_symbol": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2464821841 + }, + "m_face": { + "type": "std::string", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1717071946 + }, + "m_italic": { + "type": "bool", + "id": 2, + "offset": 136, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 571899305 + }, + "m_bold": { + "type": "bool", + "id": 3, + "offset": 137, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 221725300 + } + } + }, + "1265194563": { + "name": "class SharedPointer", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1265194563, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_laneNumber": { + "type": "int", + "id": 1, + "offset": 184, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 650028867 + }, + "m_distanceFromStart": { + "type": "int", + "id": 2, + "offset": 188, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 649349799 + } + } + }, + "5393567": { + "name": "class SchoolPipPanel", + "bases": [ + "Window", + "PropertyClass" + ], + "hash": 5393567, + "properties": { + "m_sName": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306437263 + }, + "m_Children": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621225959 + }, + "m_Style": { + "type": "unsigned int", + "id": 2, + "offset": 152, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "SCALE_CHILDREN": 2, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "FOCUS_LOCKED": 64, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152 + } + }, + "m_Flags": { + "type": "unsigned int", + "id": 3, + "offset": 156, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } + }, + "m_Window": { + "type": "class Rect", + "id": 4, + "offset": 160, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3105139380 + }, + "m_fTargetAlpha": { + "type": "float", + "id": 5, + "offset": 212, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1809129834 + }, + "m_fDisabledAlpha": { + "type": "float", + "id": 6, + "offset": 216, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1389987675 + }, + "m_fAlpha": { + "type": "float", + "id": 7, + "offset": 208, + "flags": 65671, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 482130755 + }, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3623628394 + }, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2102211316 + }, + "m_sScript": { + "type": "std::string", + "id": 10, + "offset": 352, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1846695875 + }, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3389835433 + }, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547159940 + }, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513510520 + }, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3091503757 + } + } + }, + "1264460949": { + "name": "class SharedPointer", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 1264460949, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + }, + "m_icon": { + "type": "std::string", + "id": 1, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1717182340 + }, + "m_title": { + "type": "std::string", + "id": 2, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2308614141 + }, + "m_promptText": { + "type": "std::string", + "id": 3, + "offset": 184, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1874125698 + }, + "m_numberOfSlots": { + "type": "int", + "id": 4, + "offset": 216, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1235585933 + }, + "m_rideType": { + "type": "int", + "id": 5, + "offset": 220, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1625839040 + }, + "m_riderKFM": { + "type": "std::string", + "id": 6, + "offset": 224, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 3124565263 + }, + "m_rideDuration": { + "type": "float", + "id": 7, + "offset": 240, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1239878913 + }, + "m_zOffset": { + "type": "float", + "id": 8, + "offset": 244, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 736134072 + }, + "m_newRideType": { + "type": "enum NewRideTypes", + "id": 9, + "offset": 248, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2665245566, + "enum_options": { + "NRT_UseRideType": 0, + "NRT_Chimney": 12 + } + } + } + }, + "1707548557": { + "name": "class SharedPointer", + "bases": [ + "ObstacleCourseModifyTimeBehavior", + "ObstacleCourseObstaclePathBase", + "ObstacleCourseObstacleBehavior", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1707548557, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + } + } + }, + "2142253013": { + "name": "class std::list >", + "bases": [], + "hash": 2142253013, + "properties": {} + }, + "859949060": { + "name": "class MoveCommandYawTime", + "bases": [ + "MoveController::MoveCommand", + "PropertyClass" + ], + "hash": 859949060, + "properties": { + "m_fYaw": { + "type": "float", + "id": 0, + "offset": 88, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 309564718 + }, + "m_fTime": { + "type": "double", + "id": 1, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2691355138 + } + } + }, + "1265119342": { + "name": "class std::list >", + "bases": [], + "hash": 1265119342, + "properties": {} + }, + "2140381725": { + "name": "class CastleBlockDoorBehaviorTemplate", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 2140381725, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + } + } + }, + "6020997": { + "name": "class SharedPointer", + "bases": [ + "UnSwapShadowMaterialActorCinematicAction", + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 6020997, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + } + } + }, + "1708638833": { + "name": "class ActiveClassProject", + "bases": [ + "PropertyClass" + ], + "hash": 1708638833, + "properties": { + "m_goalCount": { + "type": "int", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 774266758 + }, + "m_projectID": { + "type": "unsigned int", + "id": 1, + "offset": 76, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1263221425 + }, + "m_displayMultiplier": { + "type": "int", + "id": 2, + "offset": 96, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 239852119 + }, + "m_endTime": { + "type": "unsigned int", + "id": 3, + "offset": 100, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 716479635 + }, + "m_currentDay": { + "type": "unsigned int", + "id": 4, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2006571726 + }, + "m_multiplier": { + "type": "int", + "id": 5, + "offset": 108, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 759714273 + }, + "m_isEnding": { + "type": "bool", + "id": 6, + "offset": 112, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1289717828 + }, + "m_parameter": { + "type": "std::string", + "id": 7, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3122239292 + } + } + }, + "2140375945": { + "name": "class MinigameSigilOptionMonthlyGauntletFields*", + "bases": [ + "PropertyClass" + ], + "hash": 2140375945, + "properties": { + "m_classProjectID": { + "type": "unsigned int", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 996536487 + }, + "m_sigilIcon": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3177480156 + } + } + }, + "6156116": { + "name": "class SharedPointer", + "bases": [ + "WizItemTemplate", + "ItemTemplate", + "GameObjectTemplate", + "CoreTemplate", + "PropertyClass" + ], + "hash": 6156116, + "properties": { + "m_behaviors": { + "type": "class BehaviorTemplate*", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1197808594 + }, + "m_objectName": { + "type": "std::string", + "id": 1, + "offset": 96, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2154940147 + }, + "m_templateID": { + "type": "unsigned int", + "id": 2, + "offset": 128, + "flags": 16777223, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1286746870 + }, + "m_visualID": { + "type": "unsigned int", + "id": 3, + "offset": 132, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1118778894 + }, + "m_adjectiveList": { + "type": "std::string", + "id": 4, + "offset": 248, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 3195213318 + }, + "m_exemptFromAOI": { + "type": "bool", + "id": 5, + "offset": 240, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1457879059 + }, + "m_displayName": { + "type": "std::string", + "id": 6, + "offset": 168, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2446900370 + }, + "m_description": { + "type": "std::string", + "id": 7, + "offset": 136, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1649374815 + }, + "m_nObjectType": { + "type": "enum ObjectType", + "id": 8, + "offset": 200, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2118905880, + "enum_options": { + "OT_UNDEFINED": 0, + "OT_PLAYER": 1, + "OT_NPC": 2, + "OT_PROP": 3, + "OT_OBJECT": 4, + "OT_HOUSE": 5, + "OT_KEY": 6, + "OT_OLD_KEY": 7, + "OT_DEED": 8, + "OT_MAIL": 9, + "OT_RECIPE": 17, + "OT_EQUIP_HEAD": 10, + "OT_EQUIP_CHEST": 11, + "OT_EQUIP_LEGS": 12, + "OT_EQUIP_HANDS": 13, + "OT_EQUIP_FINGER": 14, + "OT_EQUIP_FEET": 15, + "OT_EQUIP_EAR": 16, + "OT_BUILDING_BLOCK": 18, + "OT_BUILDING_BLOCK_SOLID": 19, + "OT_GOLF": 20, + "OT_DOOR": 21, + "OT_PET": 22, + "OT_FABRIC": 23, + "OT_WINDOW": 24, + "OT_ROOF": 25, + "OT_HORSE": 26, + "OT_STRUCTURE": 27, + "OT_HOUSING_TEXTURE": 28, + "OT_PLANT": 29 + } + }, + "m_sIcon": { + "type": "std::string", + "id": 9, + "offset": 208, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306259831 + }, + "m_equipRequirements": { + "type": "class RequirementList*", + "id": 10, + "offset": 280, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2762617226 + }, + "m_purchaseRequirements": { + "type": "class RequirementList*", + "id": 11, + "offset": 288, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3174641793 + }, + "m_equipEffects": { + "type": "class GameEffectInfo*", + "id": 12, + "offset": 296, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 836628351 + }, + "m_baseCost": { + "type": "float", + "id": 13, + "offset": 312, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1565352651 + }, + "m_creditsCost": { + "type": "float", + "id": 14, + "offset": 320, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 805514974 + }, + "m_avatarInfo": { + "type": "class AvatarItemInfoBase*", + "id": 15, + "offset": 328, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2627321299 + }, + "m_avatarFlags": { + "type": "std::string", + "id": 16, + "offset": 336, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2347762759 + }, + "m_itemLimit": { + "type": "int", + "id": 17, + "offset": 316, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1799746856 + }, + "m_holidayFlag": { + "type": "std::string", + "id": 18, + "offset": 352, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2994795359 + }, + "m_itemSetBonusTemplateID": { + "type": "unsigned int", + "id": 19, + "offset": 384, + "flags": 33554439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1316835672 + }, + "m_numPrimaryColors": { + "type": "int", + "id": 20, + "offset": 428, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 981103872 + }, + "m_numSecondaryColors": { + "type": "int", + "id": 21, + "offset": 432, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1310416868 + }, + "m_numPatterns": { + "type": "int", + "id": 22, + "offset": 436, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 953162171 + }, + "m_school": { + "type": "std::string", + "id": 23, + "offset": 392, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2438566051 + }, + "m_arenaPointCost": { + "type": "int", + "id": 24, + "offset": 440, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1819621796 + }, + "m_pvpCurrencyCost": { + "type": "int", + "id": 25, + "offset": 444, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 645595444 + }, + "m_pvpTourneyCurrencyCost": { + "type": "int", + "id": 26, + "offset": 448, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 517874954 + }, + "m_rank": { + "type": "int", + "id": 27, + "offset": 424, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 219803942 + }, + "m_boyIconIndex": { + "type": "int", + "id": 28, + "offset": 452, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 802140453 + }, + "m_girlIconIndex": { + "type": "int", + "id": 29, + "offset": 456, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 832706793 + }, + "m_leashOffsetOverride": { + "type": "class SharedPointer", + "id": 30, + "offset": 464, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1692586788 + }, + "m_rarity": { + "type": "enum RarityType", + "id": 31, + "offset": 460, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2253792108, + "enum_options": { + "RT_COMMON": 0, + "RT_UNCOMMON": 1, + "RT_RARE": 2, + "RT_ULTRARARE": 3, + "RT_EPIC": 4 + } + }, + "m_tourneyTokensAmount": { + "type": "int", + "id": 32, + "offset": 480, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1579576120 + }, + "m_nif": { + "type": "std::string", + "id": 33, + "offset": 488, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1764743064 + } + } + }, + "864245914": { + "name": "enum ProxyType", + "bases": [], + "hash": 864245914, + "properties": {} + }, + "1265210285": { + "name": "class SG_GameActionClient_DestroyBlock", + "bases": [ + "SG_GameAction_DestroyBlock", + "SG_GameAction", + "PropertyClass" + ], + "hash": 1265210285, + "properties": { + "m_target": { + "type": "enum SG_GameAction::SG_Target", + "id": 0, + "offset": 72, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1166870973, + "enum_options": { + "Target_Ball": 0, + "Target_Self": 1, + "Target_Connections": 2, + "__DEFAULT": "Target_Ball" + } + } + } + }, + "2140378620": { + "name": "class HousingBlobCustomObject*", + "bases": [ + "HousingBlobObject", + "PropertyClass" + ], + "hash": 2140378620, + "properties": { + "m_gameObjectTemplateID": { + "type": "unsigned int", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1154586887, + "enum_options": { + "__DEFAULT": 0 + } + }, + "m_positionXY": { + "type": "unsigned int", + "id": 1, + "offset": 76, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1263476723, + "enum_options": { + "__DEFAULT": 0 + } + }, + "m_positionZ": { + "type": "float", + "id": 2, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 837995846, + "enum_options": { + "__DEFAULT": 0 + } + }, + "m_yaw": { + "type": "unsigned char", + "id": 3, + "offset": 84, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 904654625, + "enum_options": { + "__DEFAULT": 0 + } + }, + "m_extraData1": { + "type": "unsigned int", + "id": 4, + "offset": 88, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 693220060, + "enum_options": { + "__DEFAULT": 0 + } + }, + "m_customData": { + "type": "std::string", + "id": 5, + "offset": 96, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1638082768 + } + } + }, + "863212426": { + "name": "class SharedPointer", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 863212426, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + }, + "m_isPetTeleporter": { + "type": "bool", + "id": 1, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 137008766 + } + } + }, + "1710718080": { + "name": "class ClientPlayerStatuePvPBlob*", + "bases": [ + "PlayerStatuePvPBlob", + "PlayerStatueBlob", + "PropertyClass" + ], + "hash": 1710718080, + "properties": { + "m_level": { + "type": "int", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 801285362 + }, + "m_school": { + "type": "unsigned int", + "id": 1, + "offset": 76, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1152268885 + }, + "m_gender": { + "type": "int", + "id": 2, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 473816879 + }, + "m_nameKeys": { + "type": "unsigned int", + "id": 3, + "offset": 84, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1772225898 + }, + "m_badge": { + "type": "std::string", + "id": 4, + "offset": 88, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2286962478 + }, + "m_pCharacterBehavior": { + "type": "class SharedPointer", + "id": 5, + "offset": 120, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2724673923 + }, + "m_pEquipment": { + "type": "class SharedPointer", + "id": 6, + "offset": 136, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2473540161 + }, + "m_pStats": { + "type": "class SharedPointer", + "id": 7, + "offset": 152, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2212894623 + }, + "m_pGameEffects": { + "type": "class SharedPointer", + "id": 8, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1557857436 + }, + "m_petTID": { + "type": "unsigned int", + "id": 9, + "offset": 200, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1037635095 + }, + "m_pPetBehavior": { + "type": "class SharedPointer", + "id": 10, + "offset": 208, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2663493503 + }, + "m_pPetJewels": { + "type": "class SharedPointer", + "id": 11, + "offset": 224, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 733229991 + } + } + }, + "861429500": { + "name": "class DynaModBehavior*", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 861429500, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + } + } + }, + "1709435288": { + "name": "class TeleportToNode", + "bases": [ + "PathBehaviorTemplate::Action", + "PropertyClass" + ], + "hash": 1709435288, + "properties": { + "m_nPathID": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 214382368 + }, + "m_nNodeID": { + "type": "int", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 152152635, + "enum_options": { + "__DEFAULT": 4294967295 + } + }, + "m_nPriority": { + "type": "int", + "id": 2, + "offset": 84, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1515251530, + "enum_options": { + "__DEFAULT": 100 + } + }, + "m_nChance": { + "type": "int", + "id": 3, + "offset": 88, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1860748394, + "enum_options": { + "__DEFAULT": 50 + } + }, + "m_nDestinationNodeID": { + "type": "int", + "id": 4, + "offset": 96, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 44784029 + }, + "m_bContinuePathing": { + "type": "bool", + "id": 5, + "offset": 100, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2053386917 + } + } + }, + "13460654": { + "name": "class AdvPvPEloEntryListWrapper*", + "bases": [ + "PropertyClass" + ], + "hash": 13460654, + "properties": { + "m_entries": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1075986553 + } + } + }, + "861424380": { + "name": "class DynaModBehavior", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 861424380, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + } + } + }, + "1709435192": { + "name": "class TeleportToNode*", + "bases": [ + "PathBehaviorTemplate::Action", + "PropertyClass" + ], + "hash": 1709435192, + "properties": { + "m_nPathID": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 214382368 + }, + "m_nNodeID": { + "type": "int", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 152152635, + "enum_options": { + "__DEFAULT": 4294967295 + } + }, + "m_nPriority": { + "type": "int", + "id": 2, + "offset": 84, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1515251530, + "enum_options": { + "__DEFAULT": 100 + } + }, + "m_nChance": { + "type": "int", + "id": 3, + "offset": 88, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1860748394, + "enum_options": { + "__DEFAULT": 50 + } + }, + "m_nDestinationNodeID": { + "type": "int", + "id": 4, + "offset": 96, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 44784029 + }, + "m_bContinuePathing": { + "type": "bool", + "id": 5, + "offset": 100, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2053386917 + } + } + }, + "2141477314": { + "name": "class ExtraHousingZoneBehaviorTemplate*", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 2141477314, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + }, + "m_lotWorldZone": { + "type": "std::string", + "id": 1, + "offset": 120, + "flags": 268435463, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3026711022, + "enum_options": { + "__BASECLASS": "ZoneData" + } + } + } + }, + "12485992": { + "name": "class SharedPointer", + "bases": [ + "PlayerStatueBlob", + "PropertyClass" + ], + "hash": 12485992, + "properties": { + "m_level": { + "type": "int", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 801285362 + }, + "m_school": { + "type": "unsigned int", + "id": 1, + "offset": 76, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1152268885 + }, + "m_gender": { + "type": "int", + "id": 2, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 473816879 + }, + "m_nameKeys": { + "type": "unsigned int", + "id": 3, + "offset": 84, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1772225898 + }, + "m_badge": { + "type": "std::string", + "id": 4, + "offset": 88, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2286962478 + }, + "m_pCharacterBehavior": { + "type": "class SharedPointer", + "id": 5, + "offset": 120, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2724673923 + }, + "m_pEquipment": { + "type": "class SharedPointer", + "id": 6, + "offset": 136, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2473540161 + }, + "m_pStats": { + "type": "class SharedPointer", + "id": 7, + "offset": 152, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2212894623 + }, + "m_pGameEffects": { + "type": "class SharedPointer", + "id": 8, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1557857436 + }, + "m_petTID": { + "type": "unsigned int", + "id": 9, + "offset": 200, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1037635095 + }, + "m_pPetBehavior": { + "type": "class SharedPointer", + "id": 10, + "offset": 208, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2663493503 + }, + "m_pPetJewels": { + "type": "class SharedPointer", + "id": 11, + "offset": 224, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 733229991 + } + } + }, + "1269621820": { + "name": "class ClientStopComplexSoundCinematicAction*", + "bases": [ + "StopComplexSoundCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 1269621820, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_sound": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2307644996 + }, + "m_stopAllLoopingSounds": { + "type": "bool", + "id": 2, + "offset": 112, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1944220294 + }, + "m_fadeDuration": { + "type": "float", + "id": 3, + "offset": 116, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1402536557 + } + } + }, + "860262763": { + "name": "class SharedPointer", + "bases": [ + "ReqNumeric", + "Requirement", + "PropertyClass" + ], + "hash": 860262763, + "properties": { + "m_applyNOT": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1746328074, + "enum_options": { + "__DEFAULT": 0 + } + }, + "m_operator": { + "type": "enum Requirement::Operator", + "id": 1, + "offset": 76, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2672792317, + "enum_options": { + "ROP_AND": 0, + "ROP_OR": 1, + "__DEFAULT": "ROP_AND" + } + }, + "m_numericValue": { + "type": "float", + "id": 2, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 521915239 + }, + "m_operatorType": { + "type": "enum ReqNumeric::OPERATOR_TYPE", + "id": 3, + "offset": 84, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2228122961, + "enum_options": { + "OPERATOR_UNKNOWN": 4294967295, + "OPERATOR_EQUALS": 0, + "OPERATOR_GREATER_THAN": 1, + "OPERATOR_LESS_THAN": 2, + "OPERATOR_GREATER_THAN_EQ": 3, + "OPERATOR_LESS_THAN_EQ": 4 + } + }, + "m_isPercent": { + "type": "bool", + "id": 4, + "offset": 88, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 514192128 + } + } + }, + "2140553562": { + "name": "class ClientBurnHangingEffectCinematicAction", + "bases": [ + "BurnHangingEffectCinematicAction", + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 2140553562, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + }, + "m_cloaked": { + "type": "bool", + "id": 2, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 7349510 + }, + "m_detonate": { + "type": "bool", + "id": 3, + "offset": 153, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1738601959 + }, + "m_burnSound": { + "type": "std::string", + "id": 4, + "offset": 120, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1827806971 + } + } + }, + "11800387": { + "name": "class InfractionCategory", + "bases": [ + "PropertyClass" + ], + "hash": 11800387, + "properties": { + "m_category": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2682050233 + }, + "m_events": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 716105444 + }, + "m_penalties": { + "type": "class SharedPointer", + "id": 2, + "offset": 128, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1631054690 + } + } + }, + "1267611131": { + "name": "class UserAnimationEvent*", + "bases": [ + "PropertyClass" + ], + "hash": 1267611131, + "properties": { + "m_animationName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3393414044 + }, + "m_time": { + "type": "float", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 310085638 + }, + "m_actionType": { + "type": "std::string", + "id": 2, + "offset": 112, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3328872763 + }, + "m_surfaceType": { + "type": "std::string", + "id": 3, + "offset": 144, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2553995974 + } + } + }, + "11239862": { + "name": "class SharedPointer", + "bases": [ + "AnnounceRoundCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 11239862, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + } + } + }, + "1266137399": { + "name": "class ClientToggleInterfaceControlCinematicAction", + "bases": [ + "ToggleInterfaceControlCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 1266137399, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_maximumDurationInSeconds": { + "type": "float", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1457214913 + }, + "m_hideUI": { + "type": "bool", + "id": 2, + "offset": 84, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 519818283 + }, + "m_stopMovement": { + "type": "bool", + "id": 3, + "offset": 85, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1752496036 + } + } + }, + "1709781549": { + "name": "class GardeningLevelInfo*", + "bases": [ + "PropertyClass" + ], + "hash": 1709781549, + "properties": { + "m_level": { + "type": "unsigned char", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1438884808 + }, + "m_xpToLevel": { + "type": "int", + "id": 1, + "offset": 76, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1972600157 + }, + "m_levelName": { + "type": "std::string", + "id": 2, + "offset": 80, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3595417396 + } + } + }, + "2141122425": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 2141122425, + "properties": { + "m_description": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1649374815 + }, + "m_displaySpellName": { + "type": "std::string", + "id": 1, + "offset": 104, + "flags": 268435463, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3323484466, + "enum_options": { + "__BASECLASS": "SpellTemplate" + } + } + } + }, + "1265912287": { + "name": "class FriendsListWindow", + "bases": [ + "Window", + "PropertyClass" + ], + "hash": 1265912287, + "properties": { + "m_sName": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306437263 + }, + "m_Children": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621225959 + }, + "m_Style": { + "type": "unsigned int", + "id": 2, + "offset": 152, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "SCALE_CHILDREN": 2, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "FOCUS_LOCKED": 64, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152 + } + }, + "m_Flags": { + "type": "unsigned int", + "id": 3, + "offset": 156, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } + }, + "m_Window": { + "type": "class Rect", + "id": 4, + "offset": 160, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3105139380 + }, + "m_fTargetAlpha": { + "type": "float", + "id": 5, + "offset": 212, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1809129834 + }, + "m_fDisabledAlpha": { + "type": "float", + "id": 6, + "offset": 216, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1389987675 + }, + "m_fAlpha": { + "type": "float", + "id": 7, + "offset": 208, + "flags": 65671, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 482130755 + }, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3623628394 + }, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2102211316 + }, + "m_sScript": { + "type": "std::string", + "id": 10, + "offset": 352, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1846695875 + }, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3389835433 + }, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547159940 + }, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513510520 + }, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3091503757 + } + } + }, + "862759055": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 862759055, + "properties": { + "m_guildAchievementDataList": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1717126676 + } + } + }, + "1710483193": { + "name": "class ReqInCombat", + "bases": [ + "Requirement", + "PropertyClass" + ], + "hash": 1710483193, + "properties": { + "m_applyNOT": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1746328074, + "enum_options": { + "__DEFAULT": 0 + } + }, + "m_operator": { + "type": "enum Requirement::Operator", + "id": 1, + "offset": 76, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2672792317, + "enum_options": { + "ROP_AND": 0, + "ROP_OR": 1, + "__DEFAULT": "ROP_AND" + } + } + } + }, + "12243566": { + "name": "class std::vector >", + "bases": [], + "hash": 12243566, + "properties": {} + }, + "2141629391": { + "name": "class SharedPointer", + "bases": [ + "ShadowCreatureCameraCutCinematicAction", + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 2141629391, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + } + } + }, + "1267435102": { + "name": "enum ZTDisplayMode", + "bases": [], + "hash": 1267435102, + "properties": {} + }, + "1266453463": { + "name": "class MonsterArenaBehaviorBase", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1266453463, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_mobList": { + "type": "unsigned int", + "id": 1, + "offset": 112, + "flags": 65543, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 347281415 + }, + "m_zoneGID": { + "type": "gid", + "id": 2, + "offset": 128, + "flags": 65543, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1907651624 + } + } + }, + "864116180": { + "name": "class SharedPointer", + "bases": [ + "CreateAuraActorCinematicAction", + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 864116180, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + }, + "m_newActorName": { + "type": "std::string", + "id": 2, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2029131039 + } + } + }, + "1711441960": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1711441960, + "properties": { + "m_teams": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1624208548 + }, + "m_roundInfo": { + "type": "class SharedPointer", + "id": 1, + "offset": 128, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2078235549 + } + } + }, + "2142089254": { + "name": "class SchoolPipSelector*", + "bases": [ + "Window", + "PropertyClass" + ], + "hash": 2142089254, + "properties": { + "m_sName": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306437263 + }, + "m_Children": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621225959 + }, + "m_Style": { + "type": "unsigned int", + "id": 2, + "offset": 152, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "SCALE_CHILDREN": 2, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "FOCUS_LOCKED": 64, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152 + } + }, + "m_Flags": { + "type": "unsigned int", + "id": 3, + "offset": 156, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } + }, + "m_Window": { + "type": "class Rect", + "id": 4, + "offset": 160, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3105139380 + }, + "m_fTargetAlpha": { + "type": "float", + "id": 5, + "offset": 212, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1809129834 + }, + "m_fDisabledAlpha": { + "type": "float", + "id": 6, + "offset": 216, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1389987675 + }, + "m_fAlpha": { + "type": "float", + "id": 7, + "offset": 208, + "flags": 65671, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 482130755 + }, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3623628394 + }, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2102211316 + }, + "m_sScript": { + "type": "std::string", + "id": 10, + "offset": 352, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1846695875 + }, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3389835433 + }, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547159940 + }, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513510520 + }, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3091503757 + } + } + }, + "13258036": { + "name": "class std::vector >", + "bases": [], + "hash": 13258036, + "properties": {} + }, + "863294800": { + "name": "class ClientInfractionBehavior", + "bases": [ + "InfractionBehavior", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 863294800, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_penalties": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1696001746 + }, + "m_record": { + "type": "class SharedPointer", + "id": 2, + "offset": 128, + "flags": 16, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2129713657 + } + } + }, + "13229182": { + "name": "class WishlistBehavior*", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 13229182, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_wishlistData": { + "type": "std::string", + "id": 1, + "offset": 136, + "flags": 575, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2126601580 + } + } + }, + "1267511802": { + "name": "class SharedPointer", + "bases": [ + "WinAnimScaleSymmetrical", + "WindowAnimation", + "PropertyClass" + ], + "hash": 1267511802, + "properties": { + "m_bUseDeepCopy": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 433380635 + }, + "m_scale": { + "type": "float", + "id": 1, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 899693439 + }, + "m_fTimeTotal": { + "type": "float", + "id": 2, + "offset": 88, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 661225456 + }, + "m_fTimeRemaining": { + "type": "float", + "id": 3, + "offset": 92, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1591443014 + } + } + }, + "1712001863": { + "name": "class SharedPointer", + "bases": [ + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 1712001863, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + }, + "m_cloaked": { + "type": "bool", + "id": 2, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 7349510 + }, + "m_alpha": { + "type": "float", + "id": 3, + "offset": 124, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 878686493 + } + } + }, + "2146029155": { + "name": "class ControlList::ListItemState*", + "bases": [ + "PropertyClass" + ], + "hash": 2146029155, + "properties": { + "m_pMaterial": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3479277078 + }, + "m_nMaterialFrame": { + "type": "int", + "id": 1, + "offset": 88, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1641923970 + } + } + }, + "1711851568": { + "name": "class SharedPointer", + "bases": [ + "ServiceOptionBase", + "PropertyClass" + ], + "hash": 1711851568, + "properties": { + "m_serviceName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2206028813 + }, + "m_iconKey": { + "type": "std::string", + "id": 1, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2457138637 + }, + "m_displayKey": { + "type": "std::string", + "id": 2, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3023276954 + }, + "m_serviceIndex": { + "type": "unsigned int", + "id": 3, + "offset": 204, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2103126710 + }, + "m_forceInteract": { + "type": "bool", + "id": 4, + "offset": 200, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1705789564 + } + } + }, + "2143827168": { + "name": "class HangingEffectProtectionRemovedStageTemplate", + "bases": [ + "CinematicStageTemplate", + "PropertyClass" + ], + "hash": 2143827168, + "properties": { + "m_name": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1717359772 + }, + "m_duration": { + "type": "float", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 920323453 + }, + "m_actions": { + "type": "class SharedPointer", + "id": 2, + "offset": 112, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1380578687 + }, + "m_stageRelationships": { + "type": "class SharedPointer", + "id": 3, + "offset": 128, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 499983354 + }, + "m_stopRotating": { + "type": "bool", + "id": 4, + "offset": 153, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 13587553 + }, + "m_startRotating": { + "type": "bool", + "id": 5, + "offset": 154, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 839204969 + }, + "m_startRotationTime": { + "type": "float", + "id": 6, + "offset": 156, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1011449124 + }, + "m_camRel": { + "type": "enum CameraCutCinematicAction::kCameraRelative", + "id": 7, + "offset": 164, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 919962138, + "enum_options": { + "kSigil": 1, + "kTarget": 2, + "kSource": 3, + "kActor": 4, + "__DEFAULT": "kTarget" + } + }, + "m_bSwitchCameraToWideLong": { + "type": "bool", + "id": 8, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2136912684, + "enum_options": { + "__DEFAULT": 1 + } + }, + "m_isCloaked": { + "type": "bool", + "id": 9, + "offset": 160, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1175302050 + } + } + }, + "13327486": { + "name": "class WishlistBehavior", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 13327486, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_wishlistData": { + "type": "std::string", + "id": 1, + "offset": 136, + "flags": 575, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2126601580 + } + } + }, + "868205124": { + "name": "class ClientSetBottomTeamCinematicAction*", + "bases": [ + "SetBottomTeamCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 868205124, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_interpDuration": { + "type": "float", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237711951 + } + } + }, + "2143311988": { + "name": "class SharedPointer", + "bases": [ + "Window", + "PropertyClass" + ], + "hash": 2143311988, + "properties": { + "m_sName": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306437263 + }, + "m_Children": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621225959 + }, + "m_Style": { + "type": "unsigned int", + "id": 2, + "offset": 152, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152, + "SHOW_HOTKEY": 16777216, + "EFFECT_SCALE": 67108864, + "LOCK_ICON_SIZE": 33554432, + "LEFT_TEXT": 536870912, + "NO_FIT_TEXT": 1073741824 + } + }, + "m_Flags": { + "type": "unsigned int", + "id": 3, + "offset": 156, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } + }, + "m_Window": { + "type": "class Rect", + "id": 4, + "offset": 160, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3105139380 + }, + "m_fTargetAlpha": { + "type": "float", + "id": 5, + "offset": 212, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1809129834 + }, + "m_fDisabledAlpha": { + "type": "float", + "id": 6, + "offset": 216, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1389987675 + }, + "m_fAlpha": { + "type": "float", + "id": 7, + "offset": 208, + "flags": 65671, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 482130755 + }, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3623628394 + }, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2102211316 + }, + "m_sScript": { + "type": "std::string", + "id": 10, + "offset": 352, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1846695875 + }, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3389835433 + }, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547159940 + }, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513510520 + }, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3091503757 + }, + "m_bToggle": { + "type": "bool", + "id": 16, + "offset": 608, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2071810903 + }, + "m_bButtonDown": { + "type": "bool", + "id": 17, + "offset": 609, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 840041705 + }, + "m_sLabel": { + "type": "std::wstring", + "id": 18, + "offset": 616, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2207009163 + }, + "m_labelOffset": { + "type": "class Rect", + "id": 19, + "offset": 832, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1990646723 + }, + "m_pButton": { + "type": "class SharedPointer", + "id": 20, + "offset": 656, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1543855875 + }, + "m_HotKey": { + "type": "unsigned int", + "id": 21, + "offset": 672, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1631553409 + }, + "m_Color": { + "type": "class Color", + "id": 22, + "offset": 676, + "flags": 262279, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1753714077 + }, + "m_bCursorOver": { + "type": "bool", + "id": 23, + "offset": 689, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 283981103 + }, + "m_bAbortWhenCursorNotOver": { + "type": "bool", + "id": 24, + "offset": 706, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 325405258 + }, + "m_bHotKeyDown": { + "type": "bool", + "id": 25, + "offset": 680, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 616989185 + }, + "m_fTime": { + "type": "float", + "id": 26, + "offset": 684, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 883746156 + }, + "m_bGreyed": { + "type": "bool", + "id": 27, + "offset": 688, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1566556053 + }, + "m_fMaxScale": { + "type": "float", + "id": 28, + "offset": 692, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2070186635 + }, + "m_fScaleSpeed": { + "type": "float", + "id": 29, + "offset": 696, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1457135702 + }, + "m_bUseDropShadow": { + "type": "bool", + "id": 30, + "offset": 704, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 93063037 + }, + "m_bUseOutline": { + "type": "bool", + "id": 31, + "offset": 705, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 744292994 + }, + "m_pGreyedState": { + "type": "class SharedPointer", + "id": 32, + "offset": 768, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2703352263 + }, + "m_pNormalState": { + "type": "class SharedPointer", + "id": 33, + "offset": 752, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1887909808 + }, + "m_pHighlightedState": { + "type": "class SharedPointer", + "id": 34, + "offset": 784, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2200177608 + }, + "m_pSelectedState": { + "type": "class SharedPointer", + "id": 35, + "offset": 800, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2266776432 + }, + "m_pDepressedState": { + "type": "class SharedPointer", + "id": 36, + "offset": 816, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1878185798 + } + } + }, + "1268246603": { + "name": "class SharedPointer", + "bases": [ + "CinematicStageTemplate", + "PropertyClass" + ], + "hash": 1268246603, + "properties": { + "m_name": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1717359772 + }, + "m_duration": { + "type": "float", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 920323453 + }, + "m_actions": { + "type": "class SharedPointer", + "id": 2, + "offset": 112, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1380578687 + }, + "m_stageRelationships": { + "type": "class SharedPointer", + "id": 3, + "offset": 128, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 499983354 + }, + "m_stopRotating": { + "type": "bool", + "id": 4, + "offset": 153, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 13587553 + }, + "m_startRotating": { + "type": "bool", + "id": 5, + "offset": 154, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 839204969 + }, + "m_revealText": { + "type": "std::string", + "id": 6, + "offset": 160, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2011500383 + }, + "m_bSwitchCameraToWideLong": { + "type": "bool", + "id": 7, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2136912684, + "enum_options": { + "__DEFAULT": 1 + } + } + } + }, + "866489663": { + "name": "class ClientAddHangingEffectCinematicAction", + "bases": [ + "AddHangingEffectCinematicAction", + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 866489663, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + }, + "m_effect": { + "type": "std::string", + "id": 2, + "offset": 120, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1894145160 + }, + "m_revealsCloaked": { + "type": "bool", + "id": 3, + "offset": 156, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1618772408 + } + } + }, + "1711926290": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1711926290, + "properties": { + "m_displayName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2446900370 + }, + "m_achievementName": { + "type": "std::string", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1754773829 + }, + "m_displayCount": { + "type": "bool", + "id": 2, + "offset": 136, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1245971442 + } + } + }, + "2142632602": { + "name": "class HousingPetMovement", + "bases": [ + "PropertyClass" + ], + "hash": 2142632602, + "properties": {} + }, + "1267937641": { + "name": "class WorldHubZoneMapper*", + "bases": [ + "PropertyClass" + ], + "hash": 1267937641, + "properties": { + "m_hubZoneMapping": { + "type": "class HubZoneMapping*", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1402898811 + } + } + }, + "864303454": { + "name": "class GoldLootInfo*", + "bases": [ + "LootInfo", + "LootInfoBase", + "PropertyClass" + ], + "hash": 864303454, + "properties": { + "m_lootType": { + "type": "enum LootInfo::LOOT_TYPE", + "id": 0, + "offset": 72, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1591891442, + "enum_options": { + "LOOT_TYPE_NONE": 0, + "LOOT_TYPE_GOLD": 1, + "LOOT_TYPE_MANA": 2, + "LOOT_TYPE_ITEM": 3, + "LOOT_TYPE_TREASURE_CARD": 4, + "LOOT_TYPE_MAGIC_XP": 5, + "LOOT_TYPE_ADD_SPELL": 6, + "LOOT_TYPE_MAX_HEALTH": 7, + "LOOT_TYPE_MAX_GOLD": 8, + "LOOT_TYPE_MAX_MANA": 9, + "LOOT_TYPE_MAX_POTION": 10, + "LOOT_TYPE_TRAINING_POINTS": 11, + "LOOT_TYPE_RECIPE": 12, + "LOOT_TYPE_CRAFTING_SLOT": 13, + "LOOT_TYPE_REAGENT": 14, + "LOOT_TYPE_PETSNACK": 15, + "LOOT_TYPE_GARDENING_XP": 16, + "LOOT_TYPE_PET_XP": 17, + "LOOT_TYPE_TREASURE_TABLE": 18, + "LOOT_TYPE_ARENA_POINTS": 19, + "LOOT_TYPE_ARENA_BONUS_POINTS": 20, + "LOOT_TYPE_GROUP": 21, + "LOOT_TYPE_FISHING_XP": 22, + "LOOT_TYPE_EVENT_CURRENCY_1": 24, + "LOOT_TYPE_EVENT_CURRENCY_2": 25, + "LOOT_TYPE_PVP_CURRENCY": 26, + "LOOT_TYPE_PVP_CURRENCY_BONUS": 27, + "LOOT_TYPE_PVP_TOURNEY_CURRENCY": 28, + "LOOT_TYPE_PVP_TOURNEY_CURRENCY_BONUS": 29, + "LOOT_TYPE_FURNITURE_ESSENCE": 30 + } + }, + "m_goldAmount": { + "type": "int", + "id": 1, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 754429876 + } + } + }, + "14292356": { + "name": "class BrowserWindowSettings*", + "bases": [ + "PropertyClass" + ], + "hash": 14292356, + "properties": { + "m_browserWidth": { + "type": "int", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1384030174 + }, + "m_browserHeight": { + "type": "int", + "id": 1, + "offset": 76, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2128883223 + }, + "m_windowWidth": { + "type": "int", + "id": 2, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1557707410 + }, + "m_windowHeight": { + "type": "int", + "id": 3, + "offset": 84, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1417781067 + }, + "m_windowXoff": { + "type": "int", + "id": 4, + "offset": 88, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1999589413 + }, + "m_windowYoff": { + "type": "int", + "id": 5, + "offset": 92, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1999625350 + } + } + }, + "14291076": { + "name": "class BrowserWindowSettings", + "bases": [ + "PropertyClass" + ], + "hash": 14291076, + "properties": { + "m_browserWidth": { + "type": "int", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1384030174 + }, + "m_browserHeight": { + "type": "int", + "id": 1, + "offset": 76, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2128883223 + }, + "m_windowWidth": { + "type": "int", + "id": 2, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1557707410 + }, + "m_windowHeight": { + "type": "int", + "id": 3, + "offset": 84, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1417781067 + }, + "m_windowXoff": { + "type": "int", + "id": 4, + "offset": 88, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1999589413 + }, + "m_windowYoff": { + "type": "int", + "id": 5, + "offset": 92, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1999625350 + } + } + }, + "1712067014": { + "name": "class SharedPointer", + "bases": [ + "FadeMusicSoundCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 1712067014, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_fadeDuration": { + "type": "float", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1402536557 + }, + "m_fadeToGain": { + "type": "float", + "id": 2, + "offset": 84, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1724568201 + } + } + }, + "866646025": { + "name": "class SharedPointer", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 866646025, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + }, + "m_shopOptions": { + "type": "unsigned int", + "id": 1, + "offset": 120, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 704167667 + } + } + }, + "1712060701": { + "name": "class MoveCommandSteered", + "bases": [ + "MoveController::MoveCommand", + "PropertyClass" + ], + "hash": 1712060701, + "properties": { + "m_vTarget": { + "type": "class Vector3D", + "id": 0, + "offset": 88, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3770499167 + }, + "m_kState": { + "type": "enum MoveState", + "id": 1, + "offset": 100, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 677163988, + "enum_options": { + "MS_WALKING": 0, + "MS_RUNNING": 1, + "MS_SWIMMING": 2, + "MS_FLYING": 3 + } + } + } + }, + "2144314239": { + "name": "class SharedPointer", + "bases": [ + "ClientLeashBehavior", + "LeashBehavior", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 2144314239, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_ownerGid": { + "type": "gid", + "id": 1, + "offset": 128, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1765088663 + }, + "m_radius": { + "type": "float", + "id": 2, + "offset": 136, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 989410271 + }, + "m_angle": { + "type": "float", + "id": 3, + "offset": 140, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 878748702 + }, + "m_leashType": { + "type": "enum LeashType", + "id": 4, + "offset": 144, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2170708051, + "enum_options": { + "LLT_Rigid": 0, + "LLT_Elastic": 1 + } + }, + "m_alwaysDisplay": { + "type": "bool", + "id": 5, + "offset": 161, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2071781402 + } + } + }, + "1270995002": { + "name": "class SharedPointer", + "bases": [ + "PvPMatchInfo", + "ArenaMatchInfo", + "PropertyClass" + ], + "hash": 1270995002, + "properties": { + "m_matchID": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1757621298 + }, + "m_matchNameID": { + "type": "unsigned int", + "id": 1, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1751361288 + }, + "m_teams": { + "type": "class SharedPointer", + "id": 2, + "offset": 96, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1984373608 + }, + "m_matchName": { + "type": "std::string", + "id": 3, + "offset": 112, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2061215721 + }, + "m_matchTitle": { + "type": "std::string", + "id": 4, + "offset": 144, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2918442218 + }, + "m_matchZoneID": { + "type": "gid", + "id": 5, + "offset": 176, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2026205966 + }, + "m_creatorID": { + "type": "gid", + "id": 6, + "offset": 88, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1051766037 + }, + "m_matchZone": { + "type": "std::string", + "id": 7, + "offset": 184, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2061662244 + }, + "m_startTime": { + "type": "int", + "id": 8, + "offset": 216, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1386968823 + }, + "m_status": { + "type": "int", + "id": 9, + "offset": 220, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 960781182 + }, + "m_friendsOnly": { + "type": "bool", + "id": 10, + "offset": 236, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1420401792 + }, + "m_tournamentNameID": { + "type": "unsigned int", + "id": 11, + "offset": 224, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1799846440 + }, + "m_leagueID": { + "type": "unsigned int", + "id": 12, + "offset": 228, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 692361645 + }, + "m_seasonID": { + "type": "unsigned int", + "id": 13, + "offset": 232, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 535260643 + }, + "m_bUpdateLadder": { + "type": "bool", + "id": 14, + "offset": 248, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1937525956 + }, + "m_maxPointsPerMatch": { + "type": "unsigned int", + "id": 15, + "offset": 240, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1397040900 + }, + "m_estimatedWeight": { + "type": "float", + "id": 16, + "offset": 244, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1374360127 + }, + "m_maxELOError": { + "type": "int", + "id": 17, + "offset": 252, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 318998922 + }, + "m_uniqueMatchID": { + "type": "std::string", + "id": 18, + "offset": 264, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3291026220 + }, + "m_pvpDuelModifiersTemplates": { + "type": "class SharedPointer", + "id": 19, + "offset": 296, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1193155411 + }, + "m_teamSize": { + "type": "unsigned int", + "id": 20, + "offset": 256, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2343388751 + }, + "m_joinQueueRequirements": { + "type": "class SharedPointer", + "id": 21, + "offset": 312, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2746080983 + }, + "m_timeLimitSec": { + "type": "unsigned int", + "id": 22, + "offset": 328, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 312519798 + }, + "m_useHistoricDiego": { + "type": "bool", + "id": 23, + "offset": 352, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1688842509 + }, + "m_ignoredList": { + "type": "gid", + "id": 24, + "offset": 336, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1850924028 + }, + "m_matchTimer": { + "type": "float", + "id": 25, + "offset": 356, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1510935909 + }, + "m_bonusTime": { + "type": "int", + "id": 26, + "offset": 360, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1757496496 + }, + "m_passPenalty": { + "type": "int", + "id": 27, + "offset": 364, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 982951662 + }, + "m_yellowTime": { + "type": "int", + "id": 28, + "offset": 368, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1017028741 + }, + "m_redTime": { + "type": "int", + "id": 29, + "offset": 372, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1909556708 + }, + "m_minTurnTime": { + "type": "int", + "id": 30, + "offset": 376, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 652524886 + }, + "m_effects": { + "type": "class SharedPointer", + "id": 31, + "offset": 384, + "flags": 31, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 804962647 + }, + "m_updateBattlePassPoints": { + "type": "bool", + "id": 32, + "offset": 408, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 713306342 + }, + "m_battlePassWinPoints": { + "type": "int", + "id": 33, + "offset": 412, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1252337240 + }, + "m_battlePassLosePoints": { + "type": "int", + "id": 34, + "offset": 416, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1400839869 + } + } + }, + "2144212177": { + "name": "class SharedPointer", + "bases": [ + "AddCameraMappingCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 2144212177, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_camToReplace": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2286913643 + }, + "m_replaceWithCam": { + "type": "std::string", + "id": 2, + "offset": 112, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2992754084 + } + } + }, + "1270124295": { + "name": "class MonsterMagicBehavior", + "bases": [ + "MonsterMagicBehaviorBase", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1270124295, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_monsterData": { + "type": "std::string", + "id": 1, + "offset": 128, + "flags": 551, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3377737309 + } + } + }, + "18268171": { + "name": "class AdvPvPEloBehavior", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 18268171, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_loaded": { + "type": "bool", + "id": 1, + "offset": 112, + "flags": 27, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 683367036 + }, + "m_entries": { + "type": "class SharedPointer", + "id": 2, + "offset": 120, + "flags": 27, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1075986553 + }, + "m_recordCache": { + "type": "class SharedPointer", + "id": 3, + "offset": 136, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 828243474 + } + } + }, + "1269742783": { + "name": "class SharedPointer", + "bases": [ + "SG_GameAction_PlaySound", + "SG_GameAction", + "PropertyClass" + ], + "hash": 1269742783, + "properties": { + "m_target": { + "type": "enum SG_GameAction::SG_Target", + "id": 0, + "offset": 72, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1166870973, + "enum_options": { + "Target_Ball": 0, + "Target_Self": 1, + "Target_Connections": 2, + "__DEFAULT": "Target_Ball" + } + }, + "m_simpleSounds": { + "type": "std::string", + "id": 1, + "offset": 112, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 3351944033 + } + } + }, + "869186683": { + "name": "class TrainingInteractionData", + "bases": [], + "hash": 869186683, + "properties": {} + }, + "1712229957": { + "name": "class IdleInterceptCinematicAction", + "bases": [ + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 1712229957, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + } + } + }, + "17342258": { + "name": "class LeashedPathMovementBehaviorTemplate*", + "bases": [ + "PathMovementBehaviorTemplate", + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 17342258, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + }, + "m_movementSpeed": { + "type": "float", + "id": 1, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 769135219 + }, + "m_movementScale": { + "type": "float", + "id": 2, + "offset": 124, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 768663914 + }, + "m_canFly": { + "type": "bool", + "id": 3, + "offset": 128, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 314980368 + }, + "m_mountTemplateID": { + "type": "gid", + "id": 4, + "offset": 136, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 169688980 + }, + "m_pathID": { + "type": "gid", + "id": 5, + "offset": 144, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 821494322 + } + } + }, + "868206660": { + "name": "class ClientSetBottomTeamCinematicAction", + "bases": [ + "SetBottomTeamCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 868206660, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_interpDuration": { + "type": "float", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237711951 + } + } + }, + "1712205967": { + "name": "class ClassProjectLeaderboard*", + "bases": [ + "PropertyClass" + ], + "hash": 1712205967, + "properties": { + "m_leaderboardSize": { + "type": "int", + "id": 0, + "offset": 88, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 683398282 + }, + "m_leaderboardList": { + "type": "class SharedPointer", + "id": 1, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2590936732 + }, + "m_topEntry": { + "type": "int", + "id": 2, + "offset": 92, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 554856543 + } + } + }, + "2144947950": { + "name": "class ShadowCreatureLevelTransitionCinematicAction", + "bases": [ + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 2144947950, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + } + } + }, + "17180268": { + "name": "class ClientDerbyMoraleByTerrainEffect*", + "bases": [ + "DerbyMoraleByTerrainEffect", + "DerbyEffect", + "PropertyClass" + ], + "hash": 17180268, + "properties": { + "m_buffType": { + "type": "enum DerbyTalentBuffType", + "id": 0, + "offset": 92, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1149251982, + "enum_options": { + "Buff": 0, + "Debuff": 1, + "Neither": 2 + } + }, + "m_kTarget": { + "type": "enum DerbyTargetType", + "id": 1, + "offset": 96, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1807803351, + "enum_options": { + "kTargetInFront": 0, + "kTargetBehind": 1, + "kTargetFirst": 2, + "kTargetSelf": 3, + "kTargetAll": 4, + "kTargetLast": 5 + } + }, + "m_nDuration": { + "type": "int", + "id": 2, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1110167982 + }, + "m_effectID": { + "type": "unsigned int", + "id": 3, + "offset": 88, + "flags": 24, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2347630439 + }, + "m_imageFilename": { + "type": "std::string", + "id": 4, + "offset": 112, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2813328063 + }, + "m_iconIndex": { + "type": "unsigned int", + "id": 5, + "offset": 144, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1265133262 + }, + "m_soundOnActivate": { + "type": "std::string", + "id": 6, + "offset": 152, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1956929714 + }, + "m_soundOnTarget": { + "type": "std::string", + "id": 7, + "offset": 184, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3444214056 + }, + "m_targetParticleEffect": { + "type": "std::string", + "id": 8, + "offset": 216, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3048234723 + }, + "m_overheadMessage": { + "type": "std::string", + "id": 9, + "offset": 248, + "flags": 8388639, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1701018190 + }, + "m_requirements": { + "type": "class RequirementList", + "id": 10, + "offset": 280, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2840988582 + } + } + }, + "17056927": { + "name": "class NonCombatMayCastSpellInfo*", + "bases": [ + "GameEffectInfo", + "PropertyClass" + ], + "hash": 17056927, + "properties": { + "m_effectName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2029161513 + }, + "m_spellName": { + "type": "std::string", + "id": 1, + "offset": 104, + "flags": 268435463, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2688485244, + "enum_options": { + "__BASECLASS": "SpellTemplate" + } + }, + "m_percentChance": { + "type": "int", + "id": 2, + "offset": 136, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 385662509 + }, + "m_spellDescription": { + "type": "class SharedPointer", + "id": 3, + "offset": 144, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 790341621 + } + } + }, + "1270316227": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1270316227, + "properties": { + "m_matchAdjustmentType": { + "type": "enum MatchCostAdjustment::ADJUSTMENT_TYPE", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2305794521, + "enum_options": { + "SUBSCRIBER": 0, + "FREETOPLAY": 1, + "UNSET_MAX": 2 + } + } + } + }, + "2145575168": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 2145575168, + "properties": { + "m_characterGID": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 501688601 + }, + "m_packedName": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1805208228 + }, + "m_playerLevel": { + "type": "int", + "id": 2, + "offset": 112, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 743117695 + }, + "m_badgeCount": { + "type": "int", + "id": 3, + "offset": 116, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 265710774 + }, + "m_school": { + "type": "unsigned int", + "id": 4, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1152268885 + }, + "m_lastBadgeName": { + "type": "std::string", + "id": 5, + "offset": 128, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3502394755 + } + } + }, + "1270124335": { + "name": "class MonsterMagicBehavior*", + "bases": [ + "MonsterMagicBehaviorBase", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1270124335, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_monsterData": { + "type": "std::string", + "id": 1, + "offset": 128, + "flags": 551, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3377737309 + } + } + }, + "869493526": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 869493526, + "properties": { + "m_list": { + "type": "class TerrainCheerCostMap", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2021860698 + } + } + }, + "1715610338": { + "name": "class ClientDerbyModifyMorale*", + "bases": [ + "DerbyModifyMorale", + "DerbyEffect", + "PropertyClass" + ], + "hash": 1715610338, + "properties": { + "m_buffType": { + "type": "enum DerbyTalentBuffType", + "id": 0, + "offset": 92, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1149251982, + "enum_options": { + "Buff": 0, + "Debuff": 1, + "Neither": 2 + } + }, + "m_kTarget": { + "type": "enum DerbyTargetType", + "id": 1, + "offset": 96, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1807803351, + "enum_options": { + "kTargetInFront": 0, + "kTargetBehind": 1, + "kTargetFirst": 2, + "kTargetSelf": 3, + "kTargetAll": 4, + "kTargetLast": 5 + } + }, + "m_nDuration": { + "type": "int", + "id": 2, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1110167982 + }, + "m_effectID": { + "type": "unsigned int", + "id": 3, + "offset": 88, + "flags": 24, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2347630439 + }, + "m_imageFilename": { + "type": "std::string", + "id": 4, + "offset": 112, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2813328063 + }, + "m_iconIndex": { + "type": "unsigned int", + "id": 5, + "offset": 144, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1265133262 + }, + "m_soundOnActivate": { + "type": "std::string", + "id": 6, + "offset": 152, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1956929714 + }, + "m_soundOnTarget": { + "type": "std::string", + "id": 7, + "offset": 184, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3444214056 + }, + "m_targetParticleEffect": { + "type": "std::string", + "id": 8, + "offset": 216, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3048234723 + }, + "m_overheadMessage": { + "type": "std::string", + "id": 9, + "offset": 248, + "flags": 8388639, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1701018190 + }, + "m_requirements": { + "type": "class RequirementList", + "id": 10, + "offset": 280, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2840988582 + }, + "m_nMoraleChange": { + "type": "int", + "id": 11, + "offset": 376, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1624723118 + } + } + }, + "1713818816": { + "name": "class WorldElixirBehaviorTemplate", + "bases": [ + "LevelUpElixirBehaviorTemplate", + "ElixirBehaviorTemplate", + "TimedItemBehaviorTemplate", + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 1713818816, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + }, + "m_expireTime": { + "type": "std::string", + "id": 1, + "offset": 128, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3122602039 + }, + "m_timerType": { + "type": "enum TimerType", + "id": 2, + "offset": 120, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 571744132, + "enum_options": { + "TimerType_Game": 0, + "TimerType_Calendar": 1 + } + }, + "m_typeList": { + "type": "std::string", + "id": 3, + "offset": 160, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2119049625 + }, + "m_equipParticle": { + "type": "std::string", + "id": 4, + "offset": 176, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2222557491 + }, + "m_unequipParticle": { + "type": "std::string", + "id": 5, + "offset": 208, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2215431638 + }, + "m_equipSound": { + "type": "std::string", + "id": 6, + "offset": 240, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2720016552 + }, + "m_unequipSound": { + "type": "std::string", + "id": 7, + "offset": 272, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1552545835 + }, + "m_equipActionList": { + "type": "class SharedPointer", + "id": 8, + "offset": 304, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1314016250 + }, + "m_unequipActionList": { + "type": "class SharedPointer", + "id": 9, + "offset": 320, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2143896925 + }, + "m_combatEnabled": { + "type": "bool", + "id": 10, + "offset": 336, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1399744148 + }, + "m_PvPEnabled": { + "type": "bool", + "id": 11, + "offset": 337, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1042852532 + }, + "m_setCharacterToLevel": { + "type": "int", + "id": 12, + "offset": 408, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1268456078 + }, + "m_resultingTrainingPoints": { + "type": "int", + "id": 13, + "offset": 412, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1710285808 + }, + "m_schoolSpecificData": { + "type": "class SharedPointer", + "id": 14, + "offset": 472, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2609926725 + }, + "m_allSchoolData": { + "type": "class SharedPointer", + "id": 15, + "offset": 488, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2860093528 + }, + "m_firstWarningStringKey": { + "type": "std::string", + "id": 16, + "offset": 344, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3095888729 + }, + "m_secondWarningStringKey": { + "type": "std::string", + "id": 17, + "offset": 376, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2111513997 + }, + "m_accessPasses": { + "type": "std::string", + "id": 18, + "offset": 456, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2956825884 + }, + "m_gold": { + "type": "int", + "id": 19, + "offset": 416, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 219423808 + }, + "m_tutorialEventsToTrigger": { + "type": "std::string", + "id": 20, + "offset": 424, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2795041819 + }, + "m_tipIDsToDismiss": { + "type": "gid", + "id": 21, + "offset": 440, + "flags": 33554439, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1424884996 + }, + "m_maxPotions": { + "type": "int", + "id": 22, + "offset": 504, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1639626892 + }, + "m_questPrefix": { + "type": "std::string", + "id": 23, + "offset": 512, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2914797659 + } + } + }, + "2146911761": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 2146911761, + "properties": { + "m_shoppingColors": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 646294186 + }, + "m_dyeShopMods": { + "type": "class SharedPointer", + "id": 1, + "offset": 88, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2565828981 + }, + "m_sellMods": { + "type": "class SharedPointer", + "id": 2, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 789769746 + }, + "m_treasureMods": { + "type": "class SharedPointer", + "id": 3, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2392153009 + } + } + }, + "17892046": { + "name": "class SigilDynamicTriggerTemplate", + "bases": [ + "DynamicTriggerTemplate", + "GameObjectTemplate", + "CoreTemplate", + "PropertyClass" + ], + "hash": 17892046, + "properties": { + "m_behaviors": { + "type": "class BehaviorTemplate*", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1197808594 + }, + "m_objectName": { + "type": "std::string", + "id": 1, + "offset": 96, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2154940147 + }, + "m_templateID": { + "type": "unsigned int", + "id": 2, + "offset": 128, + "flags": 16777223, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1286746870 + }, + "m_visualID": { + "type": "unsigned int", + "id": 3, + "offset": 132, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1118778894 + }, + "m_adjectiveList": { + "type": "std::string", + "id": 4, + "offset": 248, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 3195213318 + }, + "m_exemptFromAOI": { + "type": "bool", + "id": 5, + "offset": 240, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1457879059 + }, + "m_displayName": { + "type": "std::string", + "id": 6, + "offset": 168, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2446900370 + }, + "m_description": { + "type": "std::string", + "id": 7, + "offset": 136, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1649374815 + }, + "m_nObjectType": { + "type": "enum ObjectType", + "id": 8, + "offset": 200, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2118905880, + "enum_options": { + "OT_UNDEFINED": 0, + "OT_PLAYER": 1, + "OT_NPC": 2, + "OT_PROP": 3, + "OT_OBJECT": 4, + "OT_HOUSE": 5, + "OT_KEY": 6, + "OT_OLD_KEY": 7, + "OT_DEED": 8, + "OT_MAIL": 9, + "OT_RECIPE": 17, + "OT_EQUIP_HEAD": 10, + "OT_EQUIP_CHEST": 11, + "OT_EQUIP_LEGS": 12, + "OT_EQUIP_HANDS": 13, + "OT_EQUIP_FINGER": 14, + "OT_EQUIP_FEET": 15, + "OT_EQUIP_EAR": 16, + "OT_BUILDING_BLOCK": 18, + "OT_BUILDING_BLOCK_SOLID": 19, + "OT_GOLF": 20, + "OT_DOOR": 21, + "OT_PET": 22, + "OT_FABRIC": 23, + "OT_WINDOW": 24, + "OT_ROOF": 25, + "OT_HORSE": 26, + "OT_STRUCTURE": 27, + "OT_HOUSING_TEXTURE": 28, + "OT_PLANT": 29 + } + }, + "m_sIcon": { + "type": "std::string", + "id": 9, + "offset": 208, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306259831 + } + } + }, + "1270625884": { + "name": "class SharedPointer", + "bases": [ + "ReqNumeric", + "Requirement", + "PropertyClass" + ], + "hash": 1270625884, + "properties": { + "m_applyNOT": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1746328074, + "enum_options": { + "__DEFAULT": 0 + } + }, + "m_operator": { + "type": "enum Requirement::Operator", + "id": 1, + "offset": 76, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2672792317, + "enum_options": { + "ROP_AND": 0, + "ROP_OR": 1, + "__DEFAULT": "ROP_AND" + } + }, + "m_numericValue": { + "type": "float", + "id": 2, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 521915239 + }, + "m_operatorType": { + "type": "enum ReqNumeric::OPERATOR_TYPE", + "id": 3, + "offset": 84, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2228122961, + "enum_options": { + "OPERATOR_UNKNOWN": 4294967295, + "OPERATOR_EQUALS": 0, + "OPERATOR_GREATER_THAN": 1, + "OPERATOR_LESS_THAN": 2, + "OPERATOR_GREATER_THAN_EQ": 3, + "OPERATOR_LESS_THAN_EQ": 4 + } + } + } + }, + "874500816": { + "name": "class GuildIslandItemBehaviorTemplate", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 874500816, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + }, + "m_islandTemplateID": { + "type": "unsigned int", + "id": 1, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1751952753 + } + } + }, + "1712871480": { + "name": "class ClientDerbyAddObstacle*", + "bases": [ + "DerbyAddObstacle", + "DerbyEffect", + "PropertyClass" + ], + "hash": 1712871480, + "properties": { + "m_buffType": { + "type": "enum DerbyTalentBuffType", + "id": 0, + "offset": 92, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1149251982, + "enum_options": { + "Buff": 0, + "Debuff": 1, + "Neither": 2 + } + }, + "m_kTarget": { + "type": "enum DerbyTargetType", + "id": 1, + "offset": 96, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1807803351, + "enum_options": { + "kTargetInFront": 0, + "kTargetBehind": 1, + "kTargetFirst": 2, + "kTargetSelf": 3, + "kTargetAll": 4, + "kTargetLast": 5 + } + }, + "m_nDuration": { + "type": "int", + "id": 2, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1110167982 + }, + "m_effectID": { + "type": "unsigned int", + "id": 3, + "offset": 88, + "flags": 24, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2347630439 + }, + "m_imageFilename": { + "type": "std::string", + "id": 4, + "offset": 112, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2813328063 + }, + "m_iconIndex": { + "type": "unsigned int", + "id": 5, + "offset": 144, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1265133262 + }, + "m_soundOnActivate": { + "type": "std::string", + "id": 6, + "offset": 152, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1956929714 + }, + "m_soundOnTarget": { + "type": "std::string", + "id": 7, + "offset": 184, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3444214056 + }, + "m_targetParticleEffect": { + "type": "std::string", + "id": 8, + "offset": 216, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3048234723 + }, + "m_overheadMessage": { + "type": "std::string", + "id": 9, + "offset": 248, + "flags": 8388639, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1701018190 + }, + "m_requirements": { + "type": "class RequirementList", + "id": 10, + "offset": 280, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2840988582 + }, + "m_lane": { + "type": "enum DerbyLaneEffect", + "id": 11, + "offset": 376, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1075628144, + "enum_options": { + "kLaneRandomONE": 0, + "kLaneAll": 1, + "kLaneMine": 2 + } + }, + "m_obstacleType": { + "type": "unsigned __int64", + "id": 12, + "offset": 384, + "flags": 33554439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2219764488 + }, + "m_nObstacleAmount": { + "type": "int", + "id": 13, + "offset": 392, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 52937033 + } + } + }, + "2146780054": { + "name": "struct ControlTileMap::Tile*", + "bases": [ + "PropertyClass" + ], + "hash": 2146780054, + "properties": { + "m_Color": { + "type": "class Color", + "id": 0, + "offset": 72, + "flags": 262279, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1753714077 + }, + "m_pMaterial": { + "type": "class SharedPointer", + "id": 1, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3479277078 + }, + "m_UV": { + "type": "class Rect", + "id": 2, + "offset": 96, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3810095225 + }, + "m_nNextTile": { + "type": "int", + "id": 3, + "offset": 112, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1012895541 + }, + "m_textComponent": { + "type": "class TextComponent", + "id": 4, + "offset": 120, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3491704390 + } + } + }, + "17424178": { + "name": "class LeashedPathMovementBehaviorTemplate", + "bases": [ + "PathMovementBehaviorTemplate", + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 17424178, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + }, + "m_movementSpeed": { + "type": "float", + "id": 1, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 769135219 + }, + "m_movementScale": { + "type": "float", + "id": 2, + "offset": 124, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 768663914 + }, + "m_canFly": { + "type": "bool", + "id": 3, + "offset": 128, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 314980368 + }, + "m_mountTemplateID": { + "type": "gid", + "id": 4, + "offset": 136, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 169688980 + }, + "m_pathID": { + "type": "gid", + "id": 5, + "offset": 144, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 821494322 + } + } + }, + "873496043": { + "name": "class SavedDebugCommandContainer", + "bases": [ + "PropertyClass" + ], + "hash": 873496043, + "properties": { + "m_savedDebugCommandList": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2197698884 + }, + "m_saveToHistory": { + "type": "bool", + "id": 1, + "offset": 88, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 762028567 + } + } + }, + "1712777120": { + "name": "enum MoveAnimation", + "bases": [], + "hash": 1712777120, + "properties": {} + }, + "2146431389": { + "name": "enum NewRideTypes", + "bases": [], + "hash": 2146431389, + "properties": {} + }, + "873360702": { + "name": "class std::vector >", + "bases": [], + "hash": 873360702, + "properties": {} + }, + "1712261108": { + "name": "class SharedPointer", + "bases": [ + "WizItemTemplate", + "ItemTemplate", + "GameObjectTemplate", + "CoreTemplate", + "PropertyClass" + ], + "hash": 1712261108, + "properties": { + "m_behaviors": { + "type": "class BehaviorTemplate*", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1197808594 + }, + "m_objectName": { + "type": "std::string", + "id": 1, + "offset": 96, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2154940147 + }, + "m_templateID": { + "type": "unsigned int", + "id": 2, + "offset": 128, + "flags": 16777223, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1286746870 + }, + "m_visualID": { + "type": "unsigned int", + "id": 3, + "offset": 132, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1118778894 + }, + "m_adjectiveList": { + "type": "std::string", + "id": 4, + "offset": 248, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 3195213318 + }, + "m_exemptFromAOI": { + "type": "bool", + "id": 5, + "offset": 240, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1457879059 + }, + "m_displayName": { + "type": "std::string", + "id": 6, + "offset": 168, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2446900370 + }, + "m_description": { + "type": "std::string", + "id": 7, + "offset": 136, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1649374815 + }, + "m_nObjectType": { + "type": "enum ObjectType", + "id": 8, + "offset": 200, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2118905880, + "enum_options": { + "OT_UNDEFINED": 0, + "OT_PLAYER": 1, + "OT_NPC": 2, + "OT_PROP": 3, + "OT_OBJECT": 4, + "OT_HOUSE": 5, + "OT_KEY": 6, + "OT_OLD_KEY": 7, + "OT_DEED": 8, + "OT_MAIL": 9, + "OT_RECIPE": 17, + "OT_EQUIP_HEAD": 10, + "OT_EQUIP_CHEST": 11, + "OT_EQUIP_LEGS": 12, + "OT_EQUIP_HANDS": 13, + "OT_EQUIP_FINGER": 14, + "OT_EQUIP_FEET": 15, + "OT_EQUIP_EAR": 16, + "OT_BUILDING_BLOCK": 18, + "OT_BUILDING_BLOCK_SOLID": 19, + "OT_GOLF": 20, + "OT_DOOR": 21, + "OT_PET": 22, + "OT_FABRIC": 23, + "OT_WINDOW": 24, + "OT_ROOF": 25, + "OT_HORSE": 26, + "OT_STRUCTURE": 27, + "OT_HOUSING_TEXTURE": 28, + "OT_PLANT": 29 + } + }, + "m_sIcon": { + "type": "std::string", + "id": 9, + "offset": 208, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306259831 + }, + "m_equipRequirements": { + "type": "class RequirementList*", + "id": 10, + "offset": 280, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2762617226 + }, + "m_purchaseRequirements": { + "type": "class RequirementList*", + "id": 11, + "offset": 288, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3174641793 + }, + "m_equipEffects": { + "type": "class GameEffectInfo*", + "id": 12, + "offset": 296, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 836628351 + }, + "m_baseCost": { + "type": "float", + "id": 13, + "offset": 312, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1565352651 + }, + "m_creditsCost": { + "type": "float", + "id": 14, + "offset": 320, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 805514974 + }, + "m_avatarInfo": { + "type": "class AvatarItemInfoBase*", + "id": 15, + "offset": 328, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2627321299 + }, + "m_avatarFlags": { + "type": "std::string", + "id": 16, + "offset": 336, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2347762759 + }, + "m_itemLimit": { + "type": "int", + "id": 17, + "offset": 316, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1799746856 + }, + "m_holidayFlag": { + "type": "std::string", + "id": 18, + "offset": 352, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2994795359 + }, + "m_itemSetBonusTemplateID": { + "type": "unsigned int", + "id": 19, + "offset": 384, + "flags": 33554439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1316835672 + }, + "m_numPrimaryColors": { + "type": "int", + "id": 20, + "offset": 428, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 981103872 + }, + "m_numSecondaryColors": { + "type": "int", + "id": 21, + "offset": 432, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1310416868 + }, + "m_numPatterns": { + "type": "int", + "id": 22, + "offset": 436, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 953162171 + }, + "m_school": { + "type": "std::string", + "id": 23, + "offset": 392, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2438566051 + }, + "m_arenaPointCost": { + "type": "int", + "id": 24, + "offset": 440, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1819621796 + }, + "m_pvpCurrencyCost": { + "type": "int", + "id": 25, + "offset": 444, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 645595444 + }, + "m_pvpTourneyCurrencyCost": { + "type": "int", + "id": 26, + "offset": 448, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 517874954 + }, + "m_rank": { + "type": "int", + "id": 27, + "offset": 424, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 219803942 + }, + "m_boyIconIndex": { + "type": "int", + "id": 28, + "offset": 452, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 802140453 + }, + "m_girlIconIndex": { + "type": "int", + "id": 29, + "offset": 456, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 832706793 + }, + "m_leashOffsetOverride": { + "type": "class SharedPointer", + "id": 30, + "offset": 464, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1692586788 + }, + "m_rarity": { + "type": "enum RarityType", + "id": 31, + "offset": 460, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2253792108, + "enum_options": { + "RT_COMMON": 0, + "RT_UNCOMMON": 1, + "RT_RARE": 2, + "RT_ULTRARARE": 3, + "RT_EPIC": 4 + } + }, + "m_lunariAmount": { + "type": "int", + "id": 32, + "offset": 480, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 474358393 + }, + "m_nif": { + "type": "std::string", + "id": 33, + "offset": 488, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1764743064 + } + } + }, + "2146029161": { + "name": "class ControlList::ListItemState", + "bases": [ + "PropertyClass" + ], + "hash": 2146029161, + "properties": { + "m_pMaterial": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3479277078 + }, + "m_nMaterialFrame": { + "type": "int", + "id": 1, + "offset": 88, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1641923970 + } + } + }, + "1271931104": { + "name": "class GameEffectTemplateList*", + "bases": [ + "PropertyClass" + ], + "hash": 1271931104, + "properties": { + "m_effectTemplates": { + "type": "class GameEffectTemplate*", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1951025928 + } + } + }, + "870288582": { + "name": "enum DailyPvPInfo::DailyPvPTypes", + "bases": [], + "hash": 870288582, + "properties": {} + }, + "17892238": { + "name": "class SigilDynamicTriggerTemplate*", + "bases": [ + "DynamicTriggerTemplate", + "GameObjectTemplate", + "CoreTemplate", + "PropertyClass" + ], + "hash": 17892238, + "properties": { + "m_behaviors": { + "type": "class BehaviorTemplate*", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1197808594 + }, + "m_objectName": { + "type": "std::string", + "id": 1, + "offset": 96, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2154940147 + }, + "m_templateID": { + "type": "unsigned int", + "id": 2, + "offset": 128, + "flags": 16777223, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1286746870 + }, + "m_visualID": { + "type": "unsigned int", + "id": 3, + "offset": 132, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1118778894 + }, + "m_adjectiveList": { + "type": "std::string", + "id": 4, + "offset": 248, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 3195213318 + }, + "m_exemptFromAOI": { + "type": "bool", + "id": 5, + "offset": 240, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1457879059 + }, + "m_displayName": { + "type": "std::string", + "id": 6, + "offset": 168, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2446900370 + }, + "m_description": { + "type": "std::string", + "id": 7, + "offset": 136, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1649374815 + }, + "m_nObjectType": { + "type": "enum ObjectType", + "id": 8, + "offset": 200, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2118905880, + "enum_options": { + "OT_UNDEFINED": 0, + "OT_PLAYER": 1, + "OT_NPC": 2, + "OT_PROP": 3, + "OT_OBJECT": 4, + "OT_HOUSE": 5, + "OT_KEY": 6, + "OT_OLD_KEY": 7, + "OT_DEED": 8, + "OT_MAIL": 9, + "OT_RECIPE": 17, + "OT_EQUIP_HEAD": 10, + "OT_EQUIP_CHEST": 11, + "OT_EQUIP_LEGS": 12, + "OT_EQUIP_HANDS": 13, + "OT_EQUIP_FINGER": 14, + "OT_EQUIP_FEET": 15, + "OT_EQUIP_EAR": 16, + "OT_BUILDING_BLOCK": 18, + "OT_BUILDING_BLOCK_SOLID": 19, + "OT_GOLF": 20, + "OT_DOOR": 21, + "OT_PET": 22, + "OT_FABRIC": 23, + "OT_WINDOW": 24, + "OT_ROOF": 25, + "OT_HORSE": 26, + "OT_STRUCTURE": 27, + "OT_HOUSING_TEXTURE": 28, + "OT_PLANT": 29 + } + }, + "m_sIcon": { + "type": "std::string", + "id": 9, + "offset": 208, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306259831 + } + } + }, + "1271009966": { + "name": "class ClassProjectLocation", + "bases": [ + "PropertyClass" + ], + "hash": 1271009966, + "properties": { + "m_checkpointLevel": { + "type": "int", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 236419514 + }, + "m_destinationZone": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2605356153 + }, + "m_destinationLoc": { + "type": "std::string", + "id": 2, + "offset": 112, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1531335483 + }, + "m_descriptionText": { + "type": "std::string", + "id": 3, + "offset": 144, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3396736580 + } + } + }, + "870259479": { + "name": "class FontGlyphis", + "bases": [ + "Font", + "PropertyClass" + ], + "hash": 870259479, + "properties": { + "m_sFilename": { + "type": "std::string", + "id": 0, + "offset": 160, + "flags": 131207, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2431512111 + }, + "m_fScale": { + "type": "float", + "id": 1, + "offset": 192, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 503137701 + }, + "m_nKerningAdjust": { + "type": "int", + "id": 2, + "offset": 200, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 287732353 + } + } + }, + "1271009926": { + "name": "class ClassProjectLocation*", + "bases": [ + "PropertyClass" + ], + "hash": 1271009926, + "properties": { + "m_checkpointLevel": { + "type": "int", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 236419514 + }, + "m_destinationZone": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2605356153 + }, + "m_destinationLoc": { + "type": "std::string", + "id": 2, + "offset": 112, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1531335483 + }, + "m_descriptionText": { + "type": "std::string", + "id": 3, + "offset": 144, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3396736580 + } + } + }, + "1712808072": { + "name": "class SharedPointer", + "bases": [ + "StartBacklashRotationEffectCinematicAction", + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 1712808072, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + } + } + }, + "2146780822": { + "name": "struct ControlTileMap::Tile", + "bases": [ + "PropertyClass" + ], + "hash": 2146780822, + "properties": { + "m_Color": { + "type": "class Color", + "id": 0, + "offset": 72, + "flags": 262279, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1753714077 + }, + "m_pMaterial": { + "type": "class SharedPointer", + "id": 1, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3479277078 + }, + "m_UV": { + "type": "class Rect", + "id": 2, + "offset": 96, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3810095225 + }, + "m_nNextTile": { + "type": "int", + "id": 3, + "offset": 112, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1012895541 + }, + "m_textComponent": { + "type": "class TextComponent", + "id": 4, + "offset": 120, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3491704390 + } + } + }, + "21413899": { + "name": "class AdvPvPEloBehavior*", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 21413899, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_loaded": { + "type": "bool", + "id": 1, + "offset": 112, + "flags": 27, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 683367036 + }, + "m_entries": { + "type": "class SharedPointer", + "id": 2, + "offset": 120, + "flags": 27, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1075986553 + }, + "m_recordCache": { + "type": "class SharedPointer", + "id": 3, + "offset": 136, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 828243474 + } + } + }, + "872701991": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 872701991, + "properties": { + "m_assetName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513131580 + }, + "m_gain": { + "type": "float", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 309609622 + }, + "m_loopCount": { + "type": "int", + "id": 2, + "offset": 108, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 865634717 + }, + "m_stream": { + "type": "bool", + "id": 3, + "offset": 112, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 963856287 + }, + "m_priority": { + "type": "int", + "id": 4, + "offset": 116, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1235205852 + }, + "m_category": { + "type": "enum AudioCategory", + "id": 5, + "offset": 120, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2951251982, + "enum_options": { + "AudioCategory_Irrelevent": 0, + "AudioCategory_Accoustic": 1, + "AudioCategory_Noise": 2, + "AudioCategory_Music": 3 + } + }, + "m_pitch": { + "type": "float", + "id": 6, + "offset": 124, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 896371695 + }, + "m_maxInstances": { + "type": "int", + "id": 7, + "offset": 128, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1704365544 + }, + "m_pan": { + "type": "float", + "id": 8, + "offset": 132, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 357246518 + } + } + }, + "20195762": { + "name": "class SharedPointer", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 20195762, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + }, + "m_battlegroundTemplateName": { + "type": "std::string", + "id": 1, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2598590755 + } + } + }, + "1271022029": { + "name": "class RaidKeyBehaviorTemplate", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 1271022029, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + }, + "m_raidPortalTemplate": { + "type": "unsigned int", + "id": 1, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1948761787 + } + } + }, + "871398205": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 871398205, + "properties": { + "m_FileTime": { + "type": "unsigned __int64", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1953360040 + }, + "m_sBinary": { + "type": "class SerializedBuffer", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3458458254 + } + } + }, + "1712992399": { + "name": "class ClassProjectLeaderboard", + "bases": [ + "PropertyClass" + ], + "hash": 1712992399, + "properties": { + "m_leaderboardSize": { + "type": "int", + "id": 0, + "offset": 88, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 683398282 + }, + "m_leaderboardList": { + "type": "class SharedPointer", + "id": 1, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2590936732 + }, + "m_topEntry": { + "type": "int", + "id": 2, + "offset": 92, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 554856543 + } + } + }, + "18831726": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 18831726, + "properties": { + "m_houseTemplateID": { + "type": "unsigned int", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2326023642 + }, + "m_structureTemplateID": { + "type": "unsigned int", + "id": 1, + "offset": 76, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1037379271 + }, + "m_lotInstanceGID": { + "type": "gid", + "id": 2, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2010711536 + }, + "m_structureInstanceGID": { + "type": "gid", + "id": 3, + "offset": 88, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2083588818 + }, + "m_owningCharacterGID": { + "type": "gid", + "id": 4, + "offset": 96, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 316234091 + } + } + }, + "1712912440": { + "name": "class ClientDerbyAddObstacle", + "bases": [ + "DerbyAddObstacle", + "DerbyEffect", + "PropertyClass" + ], + "hash": 1712912440, + "properties": { + "m_buffType": { + "type": "enum DerbyTalentBuffType", + "id": 0, + "offset": 92, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1149251982, + "enum_options": { + "Buff": 0, + "Debuff": 1, + "Neither": 2 + } + }, + "m_kTarget": { + "type": "enum DerbyTargetType", + "id": 1, + "offset": 96, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1807803351, + "enum_options": { + "kTargetInFront": 0, + "kTargetBehind": 1, + "kTargetFirst": 2, + "kTargetSelf": 3, + "kTargetAll": 4, + "kTargetLast": 5 + } + }, + "m_nDuration": { + "type": "int", + "id": 2, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1110167982 + }, + "m_effectID": { + "type": "unsigned int", + "id": 3, + "offset": 88, + "flags": 24, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2347630439 + }, + "m_imageFilename": { + "type": "std::string", + "id": 4, + "offset": 112, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2813328063 + }, + "m_iconIndex": { + "type": "unsigned int", + "id": 5, + "offset": 144, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1265133262 + }, + "m_soundOnActivate": { + "type": "std::string", + "id": 6, + "offset": 152, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1956929714 + }, + "m_soundOnTarget": { + "type": "std::string", + "id": 7, + "offset": 184, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3444214056 + }, + "m_targetParticleEffect": { + "type": "std::string", + "id": 8, + "offset": 216, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3048234723 + }, + "m_overheadMessage": { + "type": "std::string", + "id": 9, + "offset": 248, + "flags": 8388639, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1701018190 + }, + "m_requirements": { + "type": "class RequirementList", + "id": 10, + "offset": 280, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2840988582 + }, + "m_lane": { + "type": "enum DerbyLaneEffect", + "id": 11, + "offset": 376, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1075628144, + "enum_options": { + "kLaneRandomONE": 0, + "kLaneAll": 1, + "kLaneMine": 2 + } + }, + "m_obstacleType": { + "type": "unsigned __int64", + "id": 12, + "offset": 384, + "flags": 33554439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2219764488 + }, + "m_nObstacleAmount": { + "type": "int", + "id": 13, + "offset": 392, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 52937033 + } + } + }, + "2147332134": { + "name": "class SchoolPipSelector", + "bases": [ + "Window", + "PropertyClass" + ], + "hash": 2147332134, + "properties": { + "m_sName": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306437263 + }, + "m_Children": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621225959 + }, + "m_Style": { + "type": "unsigned int", + "id": 2, + "offset": 152, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "SCALE_CHILDREN": 2, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "FOCUS_LOCKED": 64, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152 + } + }, + "m_Flags": { + "type": "unsigned int", + "id": 3, + "offset": 156, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } + }, + "m_Window": { + "type": "class Rect", + "id": 4, + "offset": 160, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3105139380 + }, + "m_fTargetAlpha": { + "type": "float", + "id": 5, + "offset": 212, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1809129834 + }, + "m_fDisabledAlpha": { + "type": "float", + "id": 6, + "offset": 216, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1389987675 + }, + "m_fAlpha": { + "type": "float", + "id": 7, + "offset": 208, + "flags": 65671, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 482130755 + }, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3623628394 + }, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2102211316 + }, + "m_sScript": { + "type": "std::string", + "id": 10, + "offset": 352, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1846695875 + }, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3389835433 + }, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547159940 + }, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513510520 + }, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3091503757 + } + } + }, + "1271955680": { + "name": "class GameEffectTemplateList", + "bases": [ + "PropertyClass" + ], + "hash": 1271955680, + "properties": { + "m_effectTemplates": { + "type": "class GameEffectTemplate*", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1951025928 + } + } + }, + "873496033": { + "name": "class SavedDebugCommandContainer*", + "bases": [ + "PropertyClass" + ], + "hash": 873496033, + "properties": { + "m_savedDebugCommandList": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2197698884 + }, + "m_saveToHistory": { + "type": "bool", + "id": 1, + "offset": 88, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 762028567 + } + } + }, + "1713175518": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1713175518, + "properties": { + "m_locations": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2663343121 + }, + "m_bIsMinigameLoot": { + "type": "bool", + "id": 1, + "offset": 88, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1122496566 + }, + "m_bIsFishingLoot": { + "type": "bool", + "id": 2, + "offset": 89, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1595567415 + }, + "m_bIsMonstrologyHouseGuest": { + "type": "bool", + "id": 3, + "offset": 90, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1974190378 + }, + "m_sUrl": { + "type": "std::string", + "id": 4, + "offset": 96, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1717526561 + } + } + }, + "23359649": { + "name": "class SharedPointer", + "bases": [ + "ServiceOptionBase", + "PropertyClass" + ], + "hash": 23359649, + "properties": { + "m_serviceName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2206028813 + }, + "m_iconKey": { + "type": "std::string", + "id": 1, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2457138637 + }, + "m_displayKey": { + "type": "std::string", + "id": 2, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3023276954 + }, + "m_serviceIndex": { + "type": "unsigned int", + "id": 3, + "offset": 204, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2103126710 + }, + "m_forceInteract": { + "type": "bool", + "id": 4, + "offset": 200, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1705789564 + } + } + }, + "873471795": { + "name": "class ClientMagicSchoolBehavior*", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 873471795, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_schoolOfFocus": { + "type": "unsigned int", + "id": 1, + "offset": 128, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 236936682 + }, + "m_experiencePoints": { + "type": "int", + "id": 2, + "offset": 136, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2011512991 + }, + "m_level": { + "type": "int", + "id": 3, + "offset": 132, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 801285362 + }, + "m_trainingPoints": { + "type": "int", + "id": 4, + "offset": 140, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1003892499 + }, + "m_overflowXP": { + "type": "int", + "id": 5, + "offset": 148, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 315792502 + }, + "m_levelLocked": { + "type": "int", + "id": 6, + "offset": 152, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1481284996 + }, + "m_equippedTeleportEffect": { + "type": "unsigned int", + "id": 7, + "offset": 144, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 918478182 + }, + "m_secondarySchool": { + "type": "unsigned int", + "id": 8, + "offset": 156, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 479424797 + } + } + }, + "1284435779": { + "name": "class JewelShopOption", + "bases": [ + "ServiceOptionBase", + "PropertyClass" + ], + "hash": 1284435779, + "properties": { + "m_serviceName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2206028813 + }, + "m_iconKey": { + "type": "std::string", + "id": 1, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2457138637 + }, + "m_displayKey": { + "type": "std::string", + "id": 2, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3023276954 + }, + "m_serviceIndex": { + "type": "unsigned int", + "id": 3, + "offset": 204, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2103126710 + }, + "m_forceInteract": { + "type": "bool", + "id": 4, + "offset": 200, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1705789564 + } + } + }, + "1278379702": { + "name": "class QueuedCombatCinematicAction", + "bases": [ + "CinematicAction", + "PropertyClass" + ], + "hash": 1278379702, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + } + } + }, + "1715531072": { + "name": "class RaidKeyBehavior", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1715531072, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + } + } + }, + "38729342": { + "name": "class ActCinematicStageTemplate", + "bases": [ + "CinematicStageTemplate", + "PropertyClass" + ], + "hash": 38729342, + "properties": { + "m_name": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1717359772 + }, + "m_duration": { + "type": "float", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 920323453 + }, + "m_actions": { + "type": "class SharedPointer", + "id": 2, + "offset": 112, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1380578687 + }, + "m_stageRelationships": { + "type": "class SharedPointer", + "id": 3, + "offset": 128, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 499983354 + }, + "m_cameras": { + "type": "std::string", + "id": 4, + "offset": 152, + "flags": 131079, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 3217341687 + }, + "m_altcameras": { + "type": "std::string", + "id": 5, + "offset": 176, + "flags": 131079, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1882980152 + }, + "m_actAnim": { + "type": "std::string", + "id": 6, + "offset": 200, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2867163800 + }, + "m_camRel": { + "type": "enum CameraCutCinematicAction::kCameraRelative", + "id": 7, + "offset": 232, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 919962138, + "enum_options": { + "kSigil": 1, + "kTarget": 2, + "kSource": 3, + "kActor": 4, + "__DEFAULT": "kTarget" + } + }, + "m_sound": { + "type": "std::string", + "id": 8, + "offset": 240, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2307644996 + }, + "m_interpDuration": { + "type": "float", + "id": 9, + "offset": 272, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237711951, + "enum_options": { + "__DEFAULT": "1.0" + } + }, + "m_announcesSpell": { + "type": "bool", + "id": 10, + "offset": 276, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 652261533 + } + } + }, + "1275572278": { + "name": "class ClientTextureRemapBehavior*", + "bases": [ + "TextureRemapBehavior", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1275572278, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_textureRemapList": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 3580415920 + } + } + }, + "1713819008": { + "name": "class WorldElixirBehaviorTemplate*", + "bases": [ + "LevelUpElixirBehaviorTemplate", + "ElixirBehaviorTemplate", + "TimedItemBehaviorTemplate", + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 1713819008, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + }, + "m_expireTime": { + "type": "std::string", + "id": 1, + "offset": 128, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3122602039 + }, + "m_timerType": { + "type": "enum TimerType", + "id": 2, + "offset": 120, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 571744132, + "enum_options": { + "TimerType_Game": 0, + "TimerType_Calendar": 1 + } + }, + "m_typeList": { + "type": "std::string", + "id": 3, + "offset": 160, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2119049625 + }, + "m_equipParticle": { + "type": "std::string", + "id": 4, + "offset": 176, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2222557491 + }, + "m_unequipParticle": { + "type": "std::string", + "id": 5, + "offset": 208, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2215431638 + }, + "m_equipSound": { + "type": "std::string", + "id": 6, + "offset": 240, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2720016552 + }, + "m_unequipSound": { + "type": "std::string", + "id": 7, + "offset": 272, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1552545835 + }, + "m_equipActionList": { + "type": "class SharedPointer", + "id": 8, + "offset": 304, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1314016250 + }, + "m_unequipActionList": { + "type": "class SharedPointer", + "id": 9, + "offset": 320, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2143896925 + }, + "m_combatEnabled": { + "type": "bool", + "id": 10, + "offset": 336, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1399744148 + }, + "m_PvPEnabled": { + "type": "bool", + "id": 11, + "offset": 337, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1042852532 + }, + "m_setCharacterToLevel": { + "type": "int", + "id": 12, + "offset": 408, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1268456078 + }, + "m_resultingTrainingPoints": { + "type": "int", + "id": 13, + "offset": 412, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1710285808 + }, + "m_schoolSpecificData": { + "type": "class SharedPointer", + "id": 14, + "offset": 472, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2609926725 + }, + "m_allSchoolData": { + "type": "class SharedPointer", + "id": 15, + "offset": 488, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2860093528 + }, + "m_firstWarningStringKey": { + "type": "std::string", + "id": 16, + "offset": 344, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3095888729 + }, + "m_secondWarningStringKey": { + "type": "std::string", + "id": 17, + "offset": 376, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2111513997 + }, + "m_accessPasses": { + "type": "std::string", + "id": 18, + "offset": 456, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2956825884 + }, + "m_gold": { + "type": "int", + "id": 19, + "offset": 416, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 219423808 + }, + "m_tutorialEventsToTrigger": { + "type": "std::string", + "id": 20, + "offset": 424, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2795041819 + }, + "m_tipIDsToDismiss": { + "type": "gid", + "id": 21, + "offset": 440, + "flags": 33554439, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1424884996 + }, + "m_maxPotions": { + "type": "int", + "id": 22, + "offset": 504, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1639626892 + }, + "m_questPrefix": { + "type": "std::string", + "id": 23, + "offset": 512, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2914797659 + } + } + }, + "31486635": { + "name": "class Size", + "bases": [], + "hash": 31486635, + "properties": {} + }, + "1274256351": { + "name": "class MonsterArenaBehavior", + "bases": [ + "MonsterArenaBehaviorBase", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1274256351, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_mobList": { + "type": "unsigned int", + "id": 1, + "offset": 112, + "flags": 65543, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 347281415 + }, + "m_zoneGID": { + "type": "gid", + "id": 2, + "offset": 128, + "flags": 65543, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1907651624 + }, + "m_monsterData": { + "type": "std::string", + "id": 3, + "offset": 136, + "flags": 551, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3377737309 + } + } + }, + "873626244": { + "name": "class SharedPointer", + "bases": [ + "TimedItemBehaviorTemplate", + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 873626244, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + }, + "m_expireTime": { + "type": "std::string", + "id": 1, + "offset": 128, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3122602039 + }, + "m_timerType": { + "type": "enum TimerType", + "id": 2, + "offset": 120, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 571744132, + "enum_options": { + "TimerType_Game": 0, + "TimerType_Calendar": 1 + } + }, + "m_typeList": { + "type": "std::string", + "id": 3, + "offset": 160, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2119049625 + }, + "m_equipParticle": { + "type": "std::string", + "id": 4, + "offset": 176, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2222557491 + }, + "m_unequipParticle": { + "type": "std::string", + "id": 5, + "offset": 208, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2215431638 + }, + "m_equipSound": { + "type": "std::string", + "id": 6, + "offset": 240, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2720016552 + }, + "m_unequipSound": { + "type": "std::string", + "id": 7, + "offset": 272, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1552545835 + }, + "m_equipActionList": { + "type": "class SharedPointer", + "id": 8, + "offset": 304, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1314016250 + }, + "m_unequipActionList": { + "type": "class SharedPointer", + "id": 9, + "offset": 320, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2143896925 + }, + "m_combatEnabled": { + "type": "bool", + "id": 10, + "offset": 336, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1399744148 + }, + "m_PvPEnabled": { + "type": "bool", + "id": 11, + "offset": 337, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1042852532 + } + } + }, + "25315545": { + "name": "class MinigameSigilOption*", + "bases": [ + "ServiceOptionBase", + "PropertyClass" + ], + "hash": 25315545, + "properties": { + "m_serviceName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2206028813 + }, + "m_iconKey": { + "type": "std::string", + "id": 1, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2457138637 + }, + "m_displayKey": { + "type": "std::string", + "id": 2, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3023276954 + }, + "m_serviceIndex": { + "type": "unsigned int", + "id": 3, + "offset": 204, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2103126710 + }, + "m_forceInteract": { + "type": "bool", + "id": 4, + "offset": 200, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1705789564 + }, + "m_teamUpAllowed": { + "type": "int", + "id": 5, + "offset": 216, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1016118542 + }, + "m_successZone": { + "type": "std::string", + "id": 6, + "offset": 224, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1516681392 + }, + "m_isCluster": { + "type": "bool", + "id": 7, + "offset": 256, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1183074257 + }, + "m_requiresSkeletonKey": { + "type": "int", + "id": 8, + "offset": 220, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1735968152 + }, + "m_monthlyGauntletFields": { + "type": "class SharedPointer", + "id": 9, + "offset": 264, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2875746802 + }, + "m_advancedModeFields": { + "type": "class SharedPointer", + "id": 10, + "offset": 280, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3117836827 + } + } + }, + "1273792137": { + "name": "class ShadowCreatureCameraCutCinematicAction*", + "bases": [ + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 1273792137, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + } + } + }, + "873586119": { + "name": "class SharedPointer", + "bases": [ + "CoreObject", + "PropertyClass" + ], + "hash": 873586119, + "properties": { + "m_inactiveBehaviors": { + "type": "class SharedPointer", + "id": 0, + "offset": 224, + "flags": 31, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1850812559 + }, + "m_globalID.m_full": { + "type": "unsigned __int64", + "id": 1, + "offset": 72, + "flags": 16777247, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2312465444 + }, + "m_permID": { + "type": "unsigned __int64", + "id": 2, + "offset": 80, + "flags": 16777247, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1298909658 + }, + "m_location": { + "type": "class Vector3D", + "id": 3, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2239683611 + }, + "m_orientation": { + "type": "class Vector3D", + "id": 4, + "offset": 180, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2344058766 + }, + "m_fScale": { + "type": "float", + "id": 5, + "offset": 196, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 503137701 + }, + "m_templateID.m_full": { + "type": "unsigned __int64", + "id": 6, + "offset": 96, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 633907631 + }, + "m_debugName": { + "type": "std::string", + "id": 7, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3553984419 + }, + "m_displayKey": { + "type": "std::string", + "id": 8, + "offset": 136, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3023276954 + }, + "m_zoneTagID": { + "type": "unsigned int", + "id": 9, + "offset": 344, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 965291410 + }, + "m_speedMultiplier": { + "type": "short", + "id": 10, + "offset": 192, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 123130076 + }, + "m_nMobileID": { + "type": "unsigned short", + "id": 11, + "offset": 194, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1054318939 + }, + "m_recipeNameID": { + "type": "unsigned int", + "id": 12, + "offset": 384, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2168714419 + } + } + }, + "1714027876": { + "name": "class SharedPointer", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 1714027876, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + }, + "m_kioskName": { + "type": "std::string", + "id": 1, + "offset": 120, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2560037053 + }, + "m_leagueType": { + "type": "std::string", + "id": 2, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3327951024 + } + } + }, + "23902477": { + "name": "class FlareBacklashEffectCinematicAction*", + "bases": [ + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 23902477, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + } + } + }, + "1272617897": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1272617897, + "properties": {} + }, + "23900941": { + "name": "class FlareBacklashEffectCinematicAction", + "bases": [ + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 23900941, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + } + } + }, + "23769576": { + "name": "class SharedPointer", + "bases": [ + "CinematicAction", + "PropertyClass" + ], + "hash": 23769576, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + } + } + }, + "874273352": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 874273352, + "properties": { + "m_houseZoneList": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2061331472 + } + } + }, + "1715534144": { + "name": "class RaidKeyBehavior*", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1715534144, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + } + } + }, + "1274010547": { + "name": "class PathActionEnterState*", + "bases": [ + "PathBehaviorTemplate::Action", + "PropertyClass" + ], + "hash": 1274010547, + "properties": { + "m_nPathID": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 214382368 + }, + "m_nNodeID": { + "type": "int", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 152152635, + "enum_options": { + "__DEFAULT": 4294967295 + } + }, + "m_nPriority": { + "type": "int", + "id": 2, + "offset": 84, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1515251530, + "enum_options": { + "__DEFAULT": 100 + } + }, + "m_nChance": { + "type": "int", + "id": 3, + "offset": 88, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1860748394, + "enum_options": { + "__DEFAULT": 50 + } + }, + "m_sStateName": { + "type": "std::string", + "id": 4, + "offset": 96, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1788022096 + } + } + }, + "874014122": { + "name": "class SharedPointer", + "bases": [ + "GraphicalSpell", + "Spell", + "PropertyClass" + ], + "hash": 874014122, + "properties": { + "m_templateID": { + "type": "unsigned int", + "id": 0, + "offset": 128, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1286746870 + }, + "m_enchantment": { + "type": "unsigned int", + "id": 1, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2217886818 + }, + "m_pipCost": { + "type": "class SharedPointer", + "id": 2, + "offset": 176, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3605704820 + }, + "m_regularAdjust": { + "type": "int", + "id": 3, + "offset": 192, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1420453335 + }, + "m_magicSchoolID": { + "type": "unsigned int", + "id": 4, + "offset": 136, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 893146499 + }, + "m_accuracy": { + "type": "unsigned char", + "id": 5, + "offset": 132, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2273914939 + }, + "m_treasureCard": { + "type": "bool", + "id": 6, + "offset": 197, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1764879128 + }, + "m_battleCard": { + "type": "bool", + "id": 7, + "offset": 198, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1332843753 + }, + "m_itemCard": { + "type": "bool", + "id": 8, + "offset": 199, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1683654300 + }, + "m_sideBoard": { + "type": "bool", + "id": 9, + "offset": 200, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1897838368 + }, + "m_spellID": { + "type": "unsigned int", + "id": 10, + "offset": 204, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1697483258 + }, + "m_leavesPlayWhenCastOverride": { + "type": "bool", + "id": 11, + "offset": 216, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 874407398 + }, + "m_cloaked": { + "type": "bool", + "id": 12, + "offset": 196, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 7349510 + }, + "m_enchantmentSpellIsItemCard": { + "type": "bool", + "id": 13, + "offset": 76, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 531590701 + }, + "m_premutationSpellID": { + "type": "unsigned int", + "id": 14, + "offset": 112, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1530256370 + }, + "m_enchantedThisCombat": { + "type": "bool", + "id": 15, + "offset": 77, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1895738923 + }, + "m_paramOverrides": { + "type": "class SharedPointer", + "id": 16, + "offset": 224, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2061635599 + }, + "m_subEffectMeta": { + "type": "class SharedPointer", + "id": 17, + "offset": 240, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1944101106 + }, + "m_delayEnchantment": { + "type": "bool", + "id": 18, + "offset": 257, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 191336919 + }, + "m_PvE": { + "type": "bool", + "id": 19, + "offset": 264, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 269492350 + }, + "m_delayEnchantmentOrder": { + "type": "enum SpellEffect::kDelayOrder", + "id": 20, + "offset": 72, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2526055263, + "enum_options": { + "SpellEffect::kAnyOrder": 0, + "SpellEffect::kFirst": 1, + "SpellEffect::kSecond": 2 + } + }, + "m_roundAddedTC": { + "type": "int", + "id": 21, + "offset": 260, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 112365451 + }, + "m_secondarySchoolID": { + "type": "unsigned int", + "id": 22, + "offset": 304, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2081206026 + }, + "m_fusionState": { + "type": "enum Spell::FusionState", + "id": 23, + "offset": 308, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 835324539, + "enum_options": { + "FS_Invalid": 0, + "FS_Partial": 1, + "FS_Valid": 2 + } + } + } + }, + "1274010523": { + "name": "class PathActionEnterState", + "bases": [ + "PathBehaviorTemplate::Action", + "PropertyClass" + ], + "hash": 1274010523, + "properties": { + "m_nPathID": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 214382368 + }, + "m_nNodeID": { + "type": "int", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 152152635, + "enum_options": { + "__DEFAULT": 4294967295 + } + }, + "m_nPriority": { + "type": "int", + "id": 2, + "offset": 84, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1515251530, + "enum_options": { + "__DEFAULT": 100 + } + }, + "m_nChance": { + "type": "int", + "id": 3, + "offset": 88, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1860748394, + "enum_options": { + "__DEFAULT": 50 + } + }, + "m_sStateName": { + "type": "std::string", + "id": 4, + "offset": 96, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1788022096 + } + } + }, + "1717782148": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1717782148, + "properties": { + "m_spellDataList": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1628917702 + } + } + }, + "429218053": { + "name": "class SharedPointer", + "bases": [ + "GameEffectInfo", + "PropertyClass" + ], + "hash": 429218053, + "properties": { + "m_effectName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2029161513 + }, + "m_speedMultiplier": { + "type": "int", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 32503058 + } + } + }, + "874406534": { + "name": "class ClassProjectPlayer", + "bases": [ + "PropertyClass" + ], + "hash": 874406534, + "properties": { + "m_playerGID": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 578537369 + }, + "m_totalProgress": { + "type": "unsigned short", + "id": 1, + "offset": 88, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 770936385 + }, + "m_tokens": { + "type": "unsigned char", + "id": 2, + "offset": 90, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1631929220 + }, + "m_flags": { + "type": "unsigned short", + "id": 3, + "offset": 92, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1347981045 + }, + "m_goalProgress1": { + "type": "unsigned short", + "id": 4, + "offset": 94, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2533159345 + }, + "m_goalProgress2": { + "type": "unsigned short", + "id": 5, + "offset": 96, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2533159346 + }, + "m_goalProgress3": { + "type": "unsigned short", + "id": 6, + "offset": 98, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2533159347 + }, + "m_goalProgress4": { + "type": "unsigned short", + "id": 7, + "offset": 100, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2533159348 + }, + "m_goalProgress5": { + "type": "unsigned short", + "id": 8, + "offset": 102, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2533159349 + }, + "m_packedName": { + "type": "unsigned int", + "id": 9, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 518911062 + }, + "m_purchasedTokens": { + "type": "unsigned char", + "id": 10, + "offset": 91, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2467704067 + }, + "m_level": { + "type": "unsigned char", + "id": 11, + "offset": 108, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1438884808 + }, + "m_buddyListGID": { + "type": "gid", + "id": 12, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 50378240 + }, + "m_extendedData": { + "type": "unsigned char", + "id": 13, + "offset": 112, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2268810331 + }, + "m_usesExtraData": { + "type": "bool", + "id": 14, + "offset": 136, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1683530097 + } + } + }, + "1716924520": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1716924520, + "properties": { + "m_clientVersion": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2207163808 + }, + "m_type": { + "type": "enum BugType", + "id": 1, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 889643611, + "enum_options": { + "BT_CRASH": 1, + "BT_GAME_STOPPER": 2, + "BT_INTERFERENCE": 3, + "BT_ANNOYANCE": 4, + "BT_FEATURE_REQUEST": 5, + "BT_COMMENT": 6 + } + }, + "m_canReproduce": { + "type": "bool", + "id": 2, + "offset": 108, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 859813390 + }, + "m_description": { + "type": "std::wstring", + "id": 3, + "offset": 112, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1445360156 + } + } + }, + "428467184": { + "name": "class CastleTourLeaderboardUpdate*", + "bases": [ + "PropertyClass" + ], + "hash": 428467184, + "properties": { + "m_entryList": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 818498005 + }, + "m_leaderboardSize": { + "type": "int", + "id": 1, + "offset": 88, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 683398282 + } + } + }, + "1716786062": { + "name": "class SharedPointer", + "bases": [ + "SpellEffect", + "PropertyClass" + ], + "hash": 1716786062, + "properties": { + "m_effectType": { + "type": "enum SpellEffect::kSpellEffects", + "id": 0, + "offset": 72, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2578255295, + "enum_options": { + "kInvalidSpellEffect": 0, + "kDamage": 1, + "kDamageNoCrit": 2, + "kHeal": 3, + "kHealPercent": 4, + "kSetHealPercent": 113, + "kStealHealth": 5, + "kReduceOverTime": 6, + "kDetonateOverTime": 7, + "kPushCharm": 8, + "kStealCharm": 9, + "kPushWard": 10, + "kStealWard": 11, + "kPushOverTime": 12, + "kStealOverTime": 13, + "kRemoveCharm": 14, + "kRemoveWard": 15, + "kRemoveOverTime": 16, + "kRemoveAura": 17, + "kSwapAll": 18, + "kSwapCharm": 19, + "kSwapWard": 20, + "kSwapOverTime": 21, + "kModifyIncomingDamage": 22, + "kModifyIncomingDamageFlat": 119, + "kMaximumIncomingDamage": 23, + "kModifyIncomingHeal": 24, + "kModifyIncomingHealFlat": 118, + "kModifyIncomingDamageType": 25, + "kModifyIncomingArmorPiercing": 26, + "kModifyOutgoingDamage": 27, + "kModifyOutgoingDamageFlat": 121, + "kModifyOutgoingHeal": 28, + "kModifyOutgoingHealFlat": 120, + "kModifyOutgoingDamageType": 29, + "kModifyOutgoingArmorPiercing": 30, + "kModifyOutgoingStealHealth": 31, + "kModifyIncomingStealHealth": 32, + "kBounceNext": 33, + "kBouncePrevious": 34, + "kBounceBack": 35, + "kBounceAll": 36, + "kAbsorbDamage": 37, + "kAbsorbHeal": 38, + "kModifyAccuracy": 39, + "kDispel": 40, + "kConfusion": 41, + "kCloakedCharm": 42, + "kCloakedWard": 43, + "kStunResist": 44, + "kClue": 111, + "kPipConversion": 45, + "kCritBoost": 46, + "kCritBlock": 47, + "kPolymorph": 48, + "kDelayCast": 49, + "kModifyCardCloak": 50, + "kModifyCardDamage": 51, + "kModifyCardAccuracy": 53, + "kModifyCardMutation": 54, + "kModifyCardRank": 55, + "kModifyCardArmorPiercing": 56, + "kSummonCreature": 65, + "kTeleportPlayer": 66, + "kStun": 67, + "kDampen": 68, + "kReshuffle": 69, + "kMindControl": 70, + "kModifyPips": 71, + "kModifyPowerPips": 72, + "kModifyShadowPips": 73, + "kModifyHate": 74, + "kDamageOverTime": 75, + "kHealOverTime": 76, + "kModifyPowerPipChance": 77, + "kModifyRank": 78, + "kStunBlock": 79, + "kRevealCloak": 80, + "kInstantKill": 81, + "kAfterlife": 82, + "kDeferredDamage": 83, + "kDamagePerTotalPipPower": 84, + "kModifyCardHeal": 52, + "kModifyCardCharm": 57, + "kModifyCardWard": 58, + "kModifyCardOutgoingDamage": 59, + "kModifyCardOutgoingAccuracy": 60, + "kModifyCardOutgoingHeal": 61, + "kModifyCardOutgoingArmorPiercing": 62, + "kModifyCardIncomingDamage": 63, + "kModifyCardAbsorbDamage": 64, + "kCloakedWardNoRemove": 86, + "kAddCombatTriggerList": 87, + "kRemoveCombatTriggerList": 88, + "kBacklashDamage": 89, + "kModifyBacklash": 90, + "kIntercept": 91, + "kShadowSelf": 92, + "kShadowCreature": 93, + "kModifyShadowCreatureLevel": 94, + "kSelectShadowCreatureAttackTarget": 95, + "kShadowDecrementTurn": 96, + "kCritBoostSchoolSpecific": 97, + "kSpawnCreature": 98, + "kUnPolymorph": 99, + "kPowerPipConversion": 100, + "kProtectCardBeneficial": 101, + "kProtectCardHarmful": 102, + "kProtectBeneficial": 103, + "kProtectHarmful": 104, + "kDivideDamage": 105, + "kCollectEssence": 106, + "kKillCreature": 107, + "kDispelBlock": 108, + "kConfusionBlock": 109, + "kModifyPipRoundRate": 110, + "kMaxHealthDamage": 112, + "kUntargetable": 114, + "kMakeTargetable": 115, + "kForceTargetable": 116, + "kRemoveStunBlock": 117, + "kExitCombat": 122, + "kSuspendPips": 123, + "kResumePips": 124, + "kAutoPass": 125, + "kStopAutoPass": 126, + "kVanish": 127, + "kStopVanish": 128, + "kMaxHealthHeal": 129, + "kHealByWard": 130, + "kTaunt": 131, + "kPacify": 132, + "kRemoveTargetRestriction": 133, + "kConvertHangingEffect": 134, + "kAddSpellToDeck": 135, + "kAddSpellToHand": 136, + "kModifyIncomingDamageOverTime": 137, + "kModifyIncomingHealOverTime": 138, + "kModifyCardDamagebyRank": 139, + "kPushConvertedCharm": 140, + "kStealConvertedCharm": 141, + "kPushConvertedWard": 142, + "kStealConvertedWard": 143, + "kPushConvertedOverTime": 144, + "kStealConvertedOverTime": 145, + "kRemoveConvertedCharm": 146, + "kRemoveConvertedWard": 147, + "kRemoveConvertedOverTime": 148, + "kModifyOverTimeDuration": 149, + "kModifySchoolPips": 150 + } + }, + "m_effectParam": { + "type": "int", + "id": 1, + "offset": 76, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 357920024 + }, + "m_disposition": { + "type": "enum SpellEffect::kHangingDisposition", + "id": 2, + "offset": 80, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1904841031, + "enum_options": { + "kBoth": 0, + "kBeneficial": 1, + "kHarmful": 2 + } + }, + "m_sDamageType": { + "type": "std::string", + "id": 3, + "offset": 88, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2501054223 + }, + "m_damageType": { + "type": "unsigned int", + "id": 4, + "offset": 84, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 737882766 + }, + "m_pipNum": { + "type": "int", + "id": 5, + "offset": 128, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 830827539 + }, + "m_actNum": { + "type": "int", + "id": 6, + "offset": 132, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 236824866 + }, + "m_effectTarget": { + "type": "enum SpellEffect::kEffectTarget", + "id": 7, + "offset": 140, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2458940523, + "enum_options": { + "kInvalidTarget": 0, + "kSpell": 1, + "kSpecificSpells": 2, + "kGlobal": 3, + "kEnemyTeam": 4, + "kEnemyTeamAllAtOnce": 5, + "kFriendlyTeam": 6, + "kFriendlyTeamAllAtOnce": 7, + "kEnemySingle": 8, + "kFriendlySingle": 9, + "kMinion": 10, + "kFriendlyMinion": 17, + "kEnemyMinion": 18, + "kSelf": 11, + "kAtLeastOneEnemy": 13, + "kPreselectedEnemySingle": 12, + "kMultiTargetEnemy": 14, + "kMultiTargetFriendly": 15, + "kFriendlySingleNotMe": 16 + } + }, + "m_numRounds": { + "type": "int", + "id": 8, + "offset": 144, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1229753829 + }, + "m_paramPerRound": { + "type": "int", + "id": 9, + "offset": 148, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 683234234 + }, + "m_healModifier": { + "type": "float", + "id": 10, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1317921248, + "enum_options": { + "__DEFAULT": "1.0" + } + }, + "m_spellTemplateID": { + "type": "unsigned int", + "id": 11, + "offset": 120, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 585567702 + }, + "m_enchantmentSpellTemplateID": { + "type": "unsigned int", + "id": 12, + "offset": 124, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 246955115 + }, + "m_act": { + "type": "bool", + "id": 13, + "offset": 136, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 269510283 + }, + "m_cloaked": { + "type": "bool", + "id": 14, + "offset": 157, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 7349510 + }, + "m_bypassProtection": { + "type": "bool", + "id": 15, + "offset": 159, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1657138252 + }, + "m_armorPiercingParam": { + "type": "int", + "id": 16, + "offset": 160, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2025530205 + }, + "m_chancePerTarget": { + "type": "int", + "id": 17, + "offset": 164, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 845426794 + }, + "m_protected": { + "type": "bool", + "id": 18, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1445655037 + }, + "m_converted": { + "type": "bool", + "id": 19, + "offset": 169, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1590428797 + }, + "m_rank": { + "type": "int", + "id": 20, + "offset": 208, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 219803942 + }, + "m_effectLists": { + "type": "class SharedPointer", + "id": 21, + "offset": 224, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1054793289 + } + } + }, + "1274905603": { + "name": "class BracketMatchInfo", + "bases": [ + "PvPMatchInfo", + "ArenaMatchInfo", + "PropertyClass" + ], + "hash": 1274905603, + "properties": { + "m_matchID": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1757621298 + }, + "m_matchNameID": { + "type": "unsigned int", + "id": 1, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1751361288 + }, + "m_teams": { + "type": "class SharedPointer", + "id": 2, + "offset": 96, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1984373608 + }, + "m_matchName": { + "type": "std::string", + "id": 3, + "offset": 112, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2061215721 + }, + "m_matchTitle": { + "type": "std::string", + "id": 4, + "offset": 144, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2918442218 + }, + "m_matchZoneID": { + "type": "gid", + "id": 5, + "offset": 176, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2026205966 + }, + "m_creatorID": { + "type": "gid", + "id": 6, + "offset": 88, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1051766037 + }, + "m_matchZone": { + "type": "std::string", + "id": 7, + "offset": 184, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2061662244 + }, + "m_startTime": { + "type": "int", + "id": 8, + "offset": 216, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1386968823 + }, + "m_status": { + "type": "int", + "id": 9, + "offset": 220, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 960781182 + }, + "m_friendsOnly": { + "type": "bool", + "id": 10, + "offset": 236, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1420401792 + }, + "m_tournamentNameID": { + "type": "unsigned int", + "id": 11, + "offset": 224, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1799846440 + }, + "m_leagueID": { + "type": "unsigned int", + "id": 12, + "offset": 228, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 692361645 + }, + "m_seasonID": { + "type": "unsigned int", + "id": 13, + "offset": 232, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 535260643 + }, + "m_bUpdateLadder": { + "type": "bool", + "id": 14, + "offset": 248, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1937525956 + }, + "m_maxPointsPerMatch": { + "type": "unsigned int", + "id": 15, + "offset": 240, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1397040900 + }, + "m_estimatedWeight": { + "type": "float", + "id": 16, + "offset": 244, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1374360127 + }, + "m_maxELOError": { + "type": "int", + "id": 17, + "offset": 252, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 318998922 + }, + "m_uniqueMatchID": { + "type": "std::string", + "id": 18, + "offset": 264, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3291026220 + }, + "m_pvpDuelModifiersTemplates": { + "type": "class SharedPointer", + "id": 19, + "offset": 296, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1193155411 + }, + "m_teamSize": { + "type": "unsigned int", + "id": 20, + "offset": 256, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2343388751 + }, + "m_joinQueueRequirements": { + "type": "class SharedPointer", + "id": 21, + "offset": 312, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2746080983 + }, + "m_timeLimitSec": { + "type": "unsigned int", + "id": 22, + "offset": 328, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 312519798 + }, + "m_useHistoricDiego": { + "type": "bool", + "id": 23, + "offset": 352, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1688842509 + }, + "m_ignoredList": { + "type": "gid", + "id": 24, + "offset": 336, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1850924028 + }, + "m_matchTimer": { + "type": "float", + "id": 25, + "offset": 356, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1510935909 + }, + "m_bonusTime": { + "type": "int", + "id": 26, + "offset": 360, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1757496496 + }, + "m_passPenalty": { + "type": "int", + "id": 27, + "offset": 364, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 982951662 + }, + "m_yellowTime": { + "type": "int", + "id": 28, + "offset": 368, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1017028741 + }, + "m_redTime": { + "type": "int", + "id": 29, + "offset": 372, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1909556708 + }, + "m_minTurnTime": { + "type": "int", + "id": 30, + "offset": 376, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 652524886 + }, + "m_effects": { + "type": "class SharedPointer", + "id": 31, + "offset": 384, + "flags": 31, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 804962647 + }, + "m_updateBattlePassPoints": { + "type": "bool", + "id": 32, + "offset": 408, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 713306342 + }, + "m_battlePassWinPoints": { + "type": "int", + "id": 33, + "offset": 412, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1252337240 + }, + "m_battlePassLosePoints": { + "type": "int", + "id": 34, + "offset": 416, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1400839869 + }, + "m_numTeams": { + "type": "int", + "id": 35, + "offset": 424, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1601148004 + }, + "m_pointsForLosingByDefeat": { + "type": "int", + "id": 36, + "offset": 432, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 394154926 + }, + "m_pointsForWinningByDefeat": { + "type": "int", + "id": 37, + "offset": 436, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1202223548 + }, + "m_pointsForWinningByJudgement": { + "type": "int", + "id": 38, + "offset": 440, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1978958934 + }, + "m_pointsForLosingByJudgement": { + "type": "int", + "id": 39, + "offset": 444, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 690778376 + }, + "m_pointsForFleeingMatch": { + "type": "int", + "id": 40, + "offset": 448, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 679642949 + }, + "m_pointsForByeGame": { + "type": "int", + "id": 41, + "offset": 452, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 729567064 + }, + "m_scoreMultiplier": { + "type": "float", + "id": 42, + "offset": 428, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 545011290 + }, + "m_teamIDToBracketTeamIDList": { + "type": "class TeamGIDToBracketID", + "id": 43, + "offset": 456, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1980997052 + } + } + }, + "428196889": { + "name": "class SharedPointer", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 428196889, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + }, + "m_maxDeviation": { + "type": "float", + "id": 1, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 595695008 + } + } + }, + "874498523": { + "name": "class SharedPointer", + "bases": [ + "ObjectBag", + "PropertyClass" + ], + "hash": 874498523, + "properties": { + "m_itemList": { + "type": "class SharedPointer", + "id": 0, + "offset": 168, + "flags": 27, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1983655699 + }, + "m_maxItemStack": { + "type": "int", + "id": 1, + "offset": 184, + "flags": 27, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 673449637 + } + } + }, + "1715780371": { + "name": "struct std::pair,class std::allocator >,union gid>", + "bases": [], + "hash": 1715780371, + "properties": {} + }, + "1274565252": { + "name": "class GroundContourBehaviorTemplate", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 1274565252, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + }, + "m_maxDeviation": { + "type": "float", + "id": 1, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 595695008 + } + } + }, + "428025367": { + "name": "class CinematicActorBehavior", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 428025367, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_startLocation": { + "type": "class Vector3D", + "id": 1, + "offset": 112, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1669140041 + }, + "m_targetLocation": { + "type": "class Vector3D", + "id": 2, + "offset": 124, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2653859938 + }, + "m_rootAsset": { + "type": "std::string", + "id": 3, + "offset": 136, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3506101791 + } + } + }, + "1274256375": { + "name": "class MonsterArenaBehavior*", + "bases": [ + "MonsterArenaBehaviorBase", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1274256375, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_mobList": { + "type": "unsigned int", + "id": 1, + "offset": 112, + "flags": 65543, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 347281415 + }, + "m_zoneGID": { + "type": "gid", + "id": 2, + "offset": 128, + "flags": 65543, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1907651624 + }, + "m_monsterData": { + "type": "std::string", + "id": 3, + "offset": 136, + "flags": 551, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3377737309 + } + } + }, + "427499079": { + "name": "class CharacterElement", + "bases": [ + "PropertyClass" + ], + "hash": 427499079, + "properties": { + "m_elementName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2195875046 + }, + "m_assetFilename": { + "type": "std::string", + "id": 1, + "offset": 104, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2116426332 + }, + "m_geometryName": { + "type": "std::string", + "id": 2, + "offset": 136, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1734031816 + }, + "m_materialName": { + "type": "std::string", + "id": 3, + "offset": 168, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1878140043 + }, + "m_flags": { + "type": "unsigned int", + "id": 4, + "offset": 200, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1005801050, + "enum_options": { + "EF_AVAILABLE_AT_CREATION": 1 + } + }, + "m_color": { + "type": "class Color", + "id": 5, + "offset": 204, + "flags": 262151, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1791663549 + }, + "m_id": { + "type": "unsigned short", + "id": 6, + "offset": 208, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2644168661 + } + } + }, + "878420829": { + "name": "class ClientInventoryBehavior*", + "bases": [ + "InventoryBehaviorBase", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 878420829, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_itemList": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 27, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1983655699 + } + } + }, + "1716921058": { + "name": "class ClientDerbyModifyMorale", + "bases": [ + "DerbyModifyMorale", + "DerbyEffect", + "PropertyClass" + ], + "hash": 1716921058, + "properties": { + "m_buffType": { + "type": "enum DerbyTalentBuffType", + "id": 0, + "offset": 92, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1149251982, + "enum_options": { + "Buff": 0, + "Debuff": 1, + "Neither": 2 + } + }, + "m_kTarget": { + "type": "enum DerbyTargetType", + "id": 1, + "offset": 96, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1807803351, + "enum_options": { + "kTargetInFront": 0, + "kTargetBehind": 1, + "kTargetFirst": 2, + "kTargetSelf": 3, + "kTargetAll": 4, + "kTargetLast": 5 + } + }, + "m_nDuration": { + "type": "int", + "id": 2, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1110167982 + }, + "m_effectID": { + "type": "unsigned int", + "id": 3, + "offset": 88, + "flags": 24, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2347630439 + }, + "m_imageFilename": { + "type": "std::string", + "id": 4, + "offset": 112, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2813328063 + }, + "m_iconIndex": { + "type": "unsigned int", + "id": 5, + "offset": 144, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1265133262 + }, + "m_soundOnActivate": { + "type": "std::string", + "id": 6, + "offset": 152, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1956929714 + }, + "m_soundOnTarget": { + "type": "std::string", + "id": 7, + "offset": 184, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3444214056 + }, + "m_targetParticleEffect": { + "type": "std::string", + "id": 8, + "offset": 216, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3048234723 + }, + "m_overheadMessage": { + "type": "std::string", + "id": 9, + "offset": 248, + "flags": 8388639, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1701018190 + }, + "m_requirements": { + "type": "class RequirementList", + "id": 10, + "offset": 280, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2840988582 + }, + "m_nMoraleChange": { + "type": "int", + "id": 11, + "offset": 376, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1624723118 + } + } + }, + "876775127": { + "name": "class WizardAutobotQuestManager", + "bases": [ + "AutobotQuestManager", + "PropertyClass" + ], + "hash": 876775127, + "properties": {} + }, + "1274892932": { + "name": "class GroundContourBehaviorTemplate*", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 1274892932, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + }, + "m_maxDeviation": { + "type": "float", + "id": 1, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 595695008 + } + } + }, + "428049943": { + "name": "class CinematicActorBehavior*", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 428049943, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_startLocation": { + "type": "class Vector3D", + "id": 1, + "offset": 112, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1669140041 + }, + "m_targetLocation": { + "type": "class Vector3D", + "id": 2, + "offset": 124, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2653859938 + }, + "m_rootAsset": { + "type": "std::string", + "id": 3, + "offset": 136, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3506101791 + } + } + }, + "876265680": { + "name": "class SharedPointer", + "bases": [ + "PetGameInfo", + "PropertyClass" + ], + "hash": 876265680, + "properties": { + "m_isWebGame": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 944547943 + }, + "m_name": { + "type": "std::string", + "id": 1, + "offset": 160, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1717359772 + }, + "m_energyCosts": { + "type": "class SharedPointer", + "id": 2, + "offset": 192, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 3378376555 + }, + "m_trackChoices": { + "type": "class SharedPointer", + "id": 3, + "offset": 208, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1548152913 + }, + "m_gameIcon": { + "type": "std::string", + "id": 4, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3229574910 + }, + "m_trackIcons": { + "type": "std::string", + "id": 5, + "offset": 112, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2211683916 + }, + "m_trackToolTips": { + "type": "std::string", + "id": 6, + "offset": 136, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1898819214 + }, + "m_petWidth": { + "type": "int", + "id": 7, + "offset": 232, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2027689763 + }, + "m_petHeight": { + "type": "int", + "id": 8, + "offset": 236, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1894813180 + }, + "m_petDepth": { + "type": "int", + "id": 9, + "offset": 240, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2005026584 + }, + "m_gravity": { + "type": "float", + "id": 10, + "offset": 244, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1184936541 + }, + "m_fallingPenalty": { + "type": "int", + "id": 11, + "offset": 248, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1717924532 + }, + "m_trackTimes": { + "type": "int", + "id": 12, + "offset": 256, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 727242577 + }, + "m_collectionInterval": { + "type": "double", + "id": 13, + "offset": 280, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3052813470 + }, + "m_tolerance": { + "type": "double", + "id": 14, + "offset": 288, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3410860138 + } + } + }, + "875803313": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 875803313, + "properties": { + "m_matchSize": { + "type": "int", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 563704930 + }, + "m_secondsWaited": { + "type": "int", + "id": 1, + "offset": 76, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 606761671 + } + } + }, + "1717552648": { + "name": "class CollectedEssenceTrackingData", + "bases": [ + "PropertyClass" + ], + "hash": 1717552648, + "properties": { + "m_ownerGID": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1765087575 + }, + "m_essencesCollected": { + "type": "int", + "id": 1, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1632116450 + }, + "m_templateID": { + "type": "unsigned int", + "id": 2, + "offset": 84, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1286746870 + } + } + }, + "875556744": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 875556744, + "properties": { + "m_tag": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1764749335 + }, + "m_time": { + "type": "float", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 310085638 + } + } + }, + "1717147375": { + "name": "enum CantripsSpellTemplate::CantripsSpellType", + "bases": [], + "hash": 1717147375, + "properties": {} + }, + "1275003907": { + "name": "class BracketMatchInfo*", + "bases": [ + "PvPMatchInfo", + "ArenaMatchInfo", + "PropertyClass" + ], + "hash": 1275003907, + "properties": { + "m_matchID": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1757621298 + }, + "m_matchNameID": { + "type": "unsigned int", + "id": 1, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1751361288 + }, + "m_teams": { + "type": "class SharedPointer", + "id": 2, + "offset": 96, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1984373608 + }, + "m_matchName": { + "type": "std::string", + "id": 3, + "offset": 112, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2061215721 + }, + "m_matchTitle": { + "type": "std::string", + "id": 4, + "offset": 144, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2918442218 + }, + "m_matchZoneID": { + "type": "gid", + "id": 5, + "offset": 176, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2026205966 + }, + "m_creatorID": { + "type": "gid", + "id": 6, + "offset": 88, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1051766037 + }, + "m_matchZone": { + "type": "std::string", + "id": 7, + "offset": 184, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2061662244 + }, + "m_startTime": { + "type": "int", + "id": 8, + "offset": 216, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1386968823 + }, + "m_status": { + "type": "int", + "id": 9, + "offset": 220, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 960781182 + }, + "m_friendsOnly": { + "type": "bool", + "id": 10, + "offset": 236, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1420401792 + }, + "m_tournamentNameID": { + "type": "unsigned int", + "id": 11, + "offset": 224, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1799846440 + }, + "m_leagueID": { + "type": "unsigned int", + "id": 12, + "offset": 228, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 692361645 + }, + "m_seasonID": { + "type": "unsigned int", + "id": 13, + "offset": 232, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 535260643 + }, + "m_bUpdateLadder": { + "type": "bool", + "id": 14, + "offset": 248, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1937525956 + }, + "m_maxPointsPerMatch": { + "type": "unsigned int", + "id": 15, + "offset": 240, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1397040900 + }, + "m_estimatedWeight": { + "type": "float", + "id": 16, + "offset": 244, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1374360127 + }, + "m_maxELOError": { + "type": "int", + "id": 17, + "offset": 252, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 318998922 + }, + "m_uniqueMatchID": { + "type": "std::string", + "id": 18, + "offset": 264, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3291026220 + }, + "m_pvpDuelModifiersTemplates": { + "type": "class SharedPointer", + "id": 19, + "offset": 296, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1193155411 + }, + "m_teamSize": { + "type": "unsigned int", + "id": 20, + "offset": 256, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2343388751 + }, + "m_joinQueueRequirements": { + "type": "class SharedPointer", + "id": 21, + "offset": 312, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2746080983 + }, + "m_timeLimitSec": { + "type": "unsigned int", + "id": 22, + "offset": 328, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 312519798 + }, + "m_useHistoricDiego": { + "type": "bool", + "id": 23, + "offset": 352, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1688842509 + }, + "m_ignoredList": { + "type": "gid", + "id": 24, + "offset": 336, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1850924028 + }, + "m_matchTimer": { + "type": "float", + "id": 25, + "offset": 356, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1510935909 + }, + "m_bonusTime": { + "type": "int", + "id": 26, + "offset": 360, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1757496496 + }, + "m_passPenalty": { + "type": "int", + "id": 27, + "offset": 364, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 982951662 + }, + "m_yellowTime": { + "type": "int", + "id": 28, + "offset": 368, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1017028741 + }, + "m_redTime": { + "type": "int", + "id": 29, + "offset": 372, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1909556708 + }, + "m_minTurnTime": { + "type": "int", + "id": 30, + "offset": 376, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 652524886 + }, + "m_effects": { + "type": "class SharedPointer", + "id": 31, + "offset": 384, + "flags": 31, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 804962647 + }, + "m_updateBattlePassPoints": { + "type": "bool", + "id": 32, + "offset": 408, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 713306342 + }, + "m_battlePassWinPoints": { + "type": "int", + "id": 33, + "offset": 412, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1252337240 + }, + "m_battlePassLosePoints": { + "type": "int", + "id": 34, + "offset": 416, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1400839869 + }, + "m_numTeams": { + "type": "int", + "id": 35, + "offset": 424, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1601148004 + }, + "m_pointsForLosingByDefeat": { + "type": "int", + "id": 36, + "offset": 432, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 394154926 + }, + "m_pointsForWinningByDefeat": { + "type": "int", + "id": 37, + "offset": 436, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1202223548 + }, + "m_pointsForWinningByJudgement": { + "type": "int", + "id": 38, + "offset": 440, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1978958934 + }, + "m_pointsForLosingByJudgement": { + "type": "int", + "id": 39, + "offset": 444, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 690778376 + }, + "m_pointsForFleeingMatch": { + "type": "int", + "id": 40, + "offset": 448, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 679642949 + }, + "m_pointsForByeGame": { + "type": "int", + "id": 41, + "offset": 452, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 729567064 + }, + "m_scoreMultiplier": { + "type": "float", + "id": 42, + "offset": 428, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 545011290 + }, + "m_teamIDToBracketTeamIDList": { + "type": "class TeamGIDToBracketID", + "id": 43, + "offset": 456, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1980997052 + } + } + }, + "428444128": { + "name": "class EnergyGlobe*", + "bases": [ + "StatGlobe", + "ControlSprite", + "Window", + "PropertyClass" + ], + "hash": 428444128, + "properties": { + "m_sName": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306437263 + }, + "m_Children": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621225959 + }, + "m_Style": { + "type": "unsigned int", + "id": 2, + "offset": 152, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "SCALE_CHILDREN": 2, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "FOCUS_LOCKED": 64, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152 + } + }, + "m_Flags": { + "type": "unsigned int", + "id": 3, + "offset": 156, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648, + "ONE_SHOT": 8388608, + "FLIPPED_HORIZONTAL": 16777216, + "FLIPPED_VERTICAL": 33554432 + } + }, + "m_Window": { + "type": "class Rect", + "id": 4, + "offset": 160, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3105139380 + }, + "m_fTargetAlpha": { + "type": "float", + "id": 5, + "offset": 212, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1809129834 + }, + "m_fDisabledAlpha": { + "type": "float", + "id": 6, + "offset": 216, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1389987675 + }, + "m_fAlpha": { + "type": "float", + "id": 7, + "offset": 208, + "flags": 65671, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 482130755 + }, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3623628394 + }, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2102211316 + }, + "m_sScript": { + "type": "std::string", + "id": 10, + "offset": 352, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1846695875 + }, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3389835433 + }, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547159940 + }, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513510520 + }, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3091503757 + }, + "m_pMaterial": { + "type": "class SharedPointer", + "id": 16, + "offset": 592, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3479277078 + }, + "m_fRotation": { + "type": "float", + "id": 17, + "offset": 608, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1175400173 + }, + "m_Color": { + "type": "class Color", + "id": 18, + "offset": 584, + "flags": 262279, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1753714077 + }, + "m_textColor": { + "type": "class Color", + "id": 19, + "offset": 612, + "flags": 262279, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2528109250 + }, + "m_textComponent": { + "type": "class TextComponent", + "id": 20, + "offset": 616, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3491704390 + }, + "m_amount": { + "type": "int", + "id": 21, + "offset": 800, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 248546638 + } + } + }, + "428466864": { + "name": "class CastleTourLeaderboardUpdate", + "bases": [ + "PropertyClass" + ], + "hash": 428466864, + "properties": { + "m_entryList": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 818498005 + }, + "m_leaderboardSize": { + "type": "int", + "id": 1, + "offset": 88, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 683398282 + } + } + }, + "875836263": { + "name": "class SharedPointer", + "bases": [ + "CombatRule", + "PropertyClass" + ], + "hash": 875836263, + "properties": { + "m_scalarDamage": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1865068300 + }, + "m_scalarPierce": { + "type": "float", + "id": 1, + "offset": 76, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 196427621 + }, + "m_scalarResist": { + "type": "float", + "id": 2, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 270448583 + } + } + }, + "1717562888": { + "name": "class CollectedEssenceTrackingData*", + "bases": [ + "PropertyClass" + ], + "hash": 1717562888, + "properties": { + "m_ownerGID": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1765087575 + }, + "m_essencesCollected": { + "type": "int", + "id": 1, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1632116450 + }, + "m_templateID": { + "type": "unsigned int", + "id": 2, + "offset": 84, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1286746870 + } + } + }, + "1277362157": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1277362157, + "properties": { + "m_level": { + "type": "unsigned char", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1438884808 + }, + "m_template": { + "type": "unsigned int", + "id": 1, + "offset": 76, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 669977097 + }, + "m_requiredXP": { + "type": "unsigned int", + "id": 2, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1890811574 + }, + "m_powerCardCount": { + "type": "unsigned int", + "id": 3, + "offset": 84, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1299301661 + }, + "m_powerCardName": { + "type": "std::string", + "id": 4, + "offset": 88, + "flags": 268435463, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1856508131, + "enum_options": { + "__BASECLASS": "SpellTemplate" + } + }, + "m_powerCardName2": { + "type": "std::string", + "id": 5, + "offset": 120, + "flags": 268435463, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2598131765, + "enum_options": { + "__BASECLASS": "SpellTemplate" + } + }, + "m_powerCardName3": { + "type": "std::string", + "id": 6, + "offset": 152, + "flags": 268435463, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2598131766, + "enum_options": { + "__BASECLASS": "SpellTemplate" + } + }, + "m_lootTable": { + "type": "std::string", + "id": 7, + "offset": 184, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2539512673 + } + } + }, + "1276556399": { + "name": "class AdvPvPActor", + "bases": [ + "PvPActor", + "MatchActor", + "PropertyClass" + ], + "hash": 1276556399, + "properties": { + "m_nActorID": { + "type": "gid", + "id": 0, + "offset": 88, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 663762476 + }, + "m_nLadderContainerID": { + "type": "gid", + "id": 1, + "offset": 96, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 782107042 + }, + "m_nTournamentNameID": { + "type": "unsigned int", + "id": 2, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 471412886 + }, + "m_nTournamentID": { + "type": "gid", + "id": 3, + "offset": 112, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 105258688 + }, + "m_leagueID": { + "type": "unsigned int", + "id": 4, + "offset": 124, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 692361645 + }, + "m_seasonID": { + "type": "unsigned int", + "id": 5, + "offset": 120, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 535260643 + }, + "m_nMatchNameID": { + "type": "unsigned int", + "id": 6, + "offset": 128, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 497033398 + }, + "m_nMatchID": { + "type": "gid", + "id": 7, + "offset": 136, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1050279648 + }, + "m_nTeamID": { + "type": "gid", + "id": 8, + "offset": 144, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 374990266 + }, + "m_status": { + "type": "int", + "id": 9, + "offset": 160, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 960781182 + }, + "m_costAdj": { + "type": "class MatchCostAdjustment", + "id": 10, + "offset": 200, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 913243331 + }, + "m_pLadder": { + "type": "class SharedPointer", + "id": 11, + "offset": 304, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2484171182 + }, + "m_bracketID": { + "type": "gid", + "id": 12, + "offset": 152, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 441272961 + }, + "m_overridingELO": { + "type": "int", + "id": 13, + "offset": 284, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1428697363 + }, + "m_matchKFactor": { + "type": "int", + "id": 14, + "offset": 288, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 773340305 + }, + "m_userID": { + "type": "gid", + "id": 15, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1037989700 + }, + "m_matchMakingRangeForMatches": { + "type": "unsigned int", + "id": 16, + "offset": 320, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1193045098 + }, + "m_maxMatchMakingRangeForMatches": { + "type": "unsigned int", + "id": 17, + "offset": 324, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1279540944 + }, + "m_allowRangeToExceedMaxForMatches": { + "type": "bool", + "id": 18, + "offset": 328, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1260448226 + }, + "m_matchCrownsCost": { + "type": "int", + "id": 19, + "offset": 280, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1094489596 + }, + "m_machineID": { + "type": "gid", + "id": 20, + "offset": 336, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 281396698 + }, + "m_tier": { + "type": "int", + "id": 21, + "offset": 344, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 219884238 + }, + "m_rank": { + "type": "int", + "id": 22, + "offset": 348, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 219803942 + }, + "m_rating": { + "type": "int", + "id": 23, + "offset": 352, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 899783871 + }, + "m_levelBand": { + "type": "int", + "id": 24, + "offset": 356, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2097286567 + }, + "m_enteredQueue": { + "type": "int", + "id": 25, + "offset": 376, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 638238406 + }, + "m_isSubscriber": { + "type": "bool", + "id": 26, + "offset": 428, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 952325795 + }, + "m_meetBracketBadgeRequirnments": { + "type": "bool", + "id": 27, + "offset": 429, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 438139258 + }, + "m_1v1": { + "type": "bool", + "id": 28, + "offset": 430, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 269458571 + }, + "m_streak": { + "type": "int", + "id": 29, + "offset": 360, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 961375108 + }, + "m_matches": { + "type": "int", + "id": 30, + "offset": 364, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1757638687 + }, + "m_lastFight": { + "type": "int", + "id": 31, + "offset": 368, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 91176384 + }, + "m_PVPHistoryStr": { + "type": "std::string", + "id": 32, + "offset": 384, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1498439420 + }, + "m_maxCritHit": { + "type": "float", + "id": 33, + "offset": 416, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2225327348 + }, + "m_maxBlockCrit": { + "type": "float", + "id": 34, + "offset": 420, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 135865530 + }, + "m_shadowPipRating": { + "type": "float", + "id": 35, + "offset": 424, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 507126123 + }, + "m_optInOut": { + "type": "std::string", + "id": 36, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3013935453 + }, + "m_playerTimeDraw": { + "type": "bool", + "id": 37, + "offset": 431, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 447636221 + }, + "m_pvpStatus": { + "type": "unsigned char", + "id": 38, + "offset": 432, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 773570858 + }, + "m_gender": { + "type": "short", + "id": 39, + "offset": 434, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 564443897 + }, + "m_level": { + "type": "int", + "id": 40, + "offset": 436, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 801285362 + }, + "m_nameBlob": { + "type": "std::string", + "id": 41, + "offset": 440, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3058206907 + }, + "m_sSchool": { + "type": "std::string", + "id": 42, + "offset": 472, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1846342998 + }, + "m_timeLeft": { + "type": "int", + "id": 43, + "offset": 508, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1315288020 + }, + "m_startTime": { + "type": "unsigned int", + "id": 44, + "offset": 512, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1598371274 + }, + "m_elo": { + "type": "int", + "id": 45, + "offset": 516, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 267033754 + }, + "m_wins": { + "type": "int", + "id": 46, + "offset": 520, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 219992347 + }, + "m_losses": { + "type": "int", + "id": 47, + "offset": 524, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 681549075 + }, + "m_ties": { + "type": "int", + "id": 48, + "offset": 528, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 219884239 + } + } + }, + "1717599408": { + "name": "class SharedPointer", + "bases": [ + "Requirement", + "PropertyClass" + ], + "hash": 1717599408, + "properties": { + "m_applyNOT": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1746328074, + "enum_options": { + "__DEFAULT": 0 + } + }, + "m_operator": { + "type": "enum Requirement::Operator", + "id": 1, + "offset": 76, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2672792317, + "enum_options": { + "ROP_AND": 0, + "ROP_OR": 1, + "__DEFAULT": "ROP_AND" + } + } + } + }, + "1275572288": { + "name": "class ClientTextureRemapBehavior", + "bases": [ + "TextureRemapBehavior", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1275572288, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_textureRemapList": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 3580415920 + } + } + }, + "428691869": { + "name": "class SharedPointer", + "bases": [ + "CinematicActor", + "PropertyClass" + ], + "hash": 428691869, + "properties": {} + }, + "876537364": { + "name": "class CombatPipListObj*", + "bases": [ + "PropertyClass" + ], + "hash": 876537364, + "properties": { + "m_pipList": { + "type": "class ParticipantPipData", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 3423034348 + }, + "m_duelID.m_full": { + "type": "unsigned __int64", + "id": 1, + "offset": 88, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1024980477 + } + } + }, + "428529089": { + "name": "class SharedPointer", + "bases": [ + "GameEffectInfo", + "PropertyClass" + ], + "hash": 428529089, + "properties": { + "m_effectName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2029161513 + }, + "m_sRace": { + "type": "std::string", + "id": 1, + "offset": 104, + "flags": 268435463, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306580681, + "enum_options": { + "__BASECLASS": "CharacterRaceTable" + } + }, + "m_eGender": { + "type": "enum eGender", + "id": 2, + "offset": 136, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2776344943, + "enum_options": { + "Male": 1, + "Female": 0, + "Neutral": 2 + } + }, + "m_fScale": { + "type": "float", + "id": 3, + "offset": 140, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 503137701 + }, + "m_nPrimaryColor": { + "type": "int", + "id": 4, + "offset": 144, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 310334923 + }, + "m_nSecondaryColor": { + "type": "int", + "id": 5, + "offset": 148, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 516938671 + }, + "m_nPatternOption": { + "type": "int", + "id": 6, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 413195679 + }, + "m_nGeometryOption": { + "type": "int", + "id": 7, + "offset": 156, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 676541869 + }, + "m_sNaturalAttack": { + "type": "std::string", + "id": 8, + "offset": 160, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2131867453 + } + } + }, + "876373524": { + "name": "class CombatPipListObj", + "bases": [ + "PropertyClass" + ], + "hash": 876373524, + "properties": { + "m_pipList": { + "type": "class ParticipantPipData", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 3423034348 + }, + "m_duelID.m_full": { + "type": "unsigned __int64", + "id": 1, + "offset": 88, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1024980477 + } + } + }, + "1718635905": { + "name": "class ElasticCamController*", + "bases": [ + "CameraController", + "PropertyClass" + ], + "hash": 1718635905, + "properties": {} + }, + "1276885972": { + "name": "class PermanentCrownShopDisplayParams", + "bases": [], + "hash": 1276885972, + "properties": {} + }, + "1717939045": { + "name": "class DebugCinematicsComponent", + "bases": [ + "PropertyClass" + ], + "hash": 1717939045, + "properties": {} + }, + "429200250": { + "name": "class BountyGoalTemplate", + "bases": [ + "GoalTemplate", + "CoreTemplate", + "PropertyClass" + ], + "hash": 429200250, + "properties": { + "m_behaviors": { + "type": "class BehaviorTemplate*", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1197808594 + }, + "m_goalName": { + "type": "std::string", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1521627807 + }, + "m_goalNameID": { + "type": "unsigned int", + "id": 2, + "offset": 496, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 403158846 + }, + "m_goalTitle": { + "type": "std::string", + "id": 3, + "offset": 136, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2291910240 + }, + "m_goalUnderway": { + "type": "std::string", + "id": 4, + "offset": 168, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3153144269 + }, + "m_hyperlink": { + "type": "std::string", + "id": 5, + "offset": 200, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2887798993 + }, + "m_completeText": { + "type": "std::string", + "id": 6, + "offset": 232, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2767458393 + }, + "m_completeResults": { + "type": "class ResultList*", + "id": 7, + "offset": 440, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1964258099 + }, + "m_goalRequirements": { + "type": "class RequirementList*", + "id": 8, + "offset": 448, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2979967145 + }, + "m_tallyCounter": { + "type": "class TallyCounterTemplate*", + "id": 9, + "offset": 456, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1884546193 + }, + "m_locationName": { + "type": "std::string", + "id": 10, + "offset": 272, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1824218389 + }, + "m_displayImage1": { + "type": "std::string", + "id": 11, + "offset": 304, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1959572133 + }, + "m_displayImage2": { + "type": "std::string", + "id": 12, + "offset": 336, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1959572134 + }, + "m_clientTags": { + "type": "std::string", + "id": 13, + "offset": 368, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2319030025 + }, + "m_genericEvents": { + "type": "std::string", + "id": 14, + "offset": 384, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 3466670829 + }, + "m_autoQualify": { + "type": "bool", + "id": 15, + "offset": 400, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1878907431 + }, + "m_autoComplete": { + "type": "bool", + "id": 16, + "offset": 401, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1302545445 + }, + "m_destinationZone": { + "type": "std::string", + "id": 17, + "offset": 408, + "flags": 268435463, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2605356153, + "enum_options": { + "__BASECLASS": "ZoneData" + } + }, + "m_dialogList": { + "type": "class ActorDialogListBase*", + "id": 18, + "offset": 264, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1909154969 + }, + "m_goalType": { + "type": "enum GoalTemplate::GOAL_TYPE", + "id": 19, + "offset": 96, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1488021149, + "enum_options": { + "GOAL_TYPE_UNKNOWN": 0, + "GOAL_TYPE_BOUNTY": 1, + "GOAL_TYPE_BOUNTYCOLLECT": 2, + "GOAL_TYPE_SCAVENGE": 3, + "GOAL_TYPE_PERSONA": 4, + "GOAL_TYPE_WAYPOINT": 5, + "GOAL_TYPE_SCAVENGEFAKE": 6, + "GOAL_TYPE_ACHIEVERANK": 7, + "GOAL_TYPE_USAGE": 8, + "GOAL_TYPE_COMPLETEQUEST": 9, + "GOAL_TYPE_SOCIARANK": 10, + "GOAL_TYPE_SOCIACURRENCY": 11, + "GOAL_TYPE_SOCIAMINIGAME": 12, + "GOAL_TYPE_SOCIAGIVEITEM": 13, + "GOAL_TYPE_SOCIAGETITEM": 14, + "GOAL_TYPE_COLLECTAFTERBOUNTY": 15, + "GOAL_TYPE_ENCOUNTER_WAYPOINT_FOREACH": 16 + } + }, + "m_noQuestHelper": { + "type": "bool", + "id": 20, + "offset": 500, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 578010882, + "enum_options": { + "__DEFAULT": 0 + } + }, + "m_petOnlyQuest": { + "type": "bool", + "id": 21, + "offset": 501, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 679359344, + "enum_options": { + "__DEFAULT": 0 + } + }, + "m_activateResults": { + "type": "class ResultList*", + "id": 22, + "offset": 504, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3790153995 + }, + "m_hideGoalFloatyText": { + "type": "bool", + "id": 23, + "offset": 512, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1919383204, + "enum_options": { + "__DEFAULT": 0 + } + }, + "m_npcAdjectives": { + "type": "std::string", + "id": 24, + "offset": 520, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 3044559358 + }, + "m_bountyTotal": { + "type": "int", + "id": 25, + "offset": 536, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1943105087 + }, + "m_bountyType": { + "type": "enum BountyGoalTemplate::BOUNTY_TYPE", + "id": 26, + "offset": 540, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3703892338, + "enum_options": { + "BountyGoalTemplate::BT_MOB_KILL": 0, + "BountyGoalTemplate::BT_MOB_FLEE": 1 + } + } + } + }, + "1277275159": { + "name": "class SharedPointer", + "bases": [ + "Window", + "PropertyClass" + ], + "hash": 1277275159, + "properties": { + "m_sName": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306437263 + }, + "m_Children": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621225959 + }, + "m_Style": { + "type": "unsigned int", + "id": 2, + "offset": 152, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "SCALE_CHILDREN": 2, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "FOCUS_LOCKED": 64, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152 + } + }, + "m_Flags": { + "type": "unsigned int", + "id": 3, + "offset": 156, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } + }, + "m_Window": { + "type": "class Rect", + "id": 4, + "offset": 160, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3105139380 + }, + "m_fTargetAlpha": { + "type": "float", + "id": 5, + "offset": 212, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1809129834 + }, + "m_fDisabledAlpha": { + "type": "float", + "id": 6, + "offset": 216, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1389987675 + }, + "m_fAlpha": { + "type": "float", + "id": 7, + "offset": 208, + "flags": 65671, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 482130755 + }, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3623628394 + }, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2102211316 + }, + "m_sScript": { + "type": "std::string", + "id": 10, + "offset": 352, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1846695875 + }, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3389835433 + }, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547159940 + }, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513510520 + }, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3091503757 + } + } + }, + "877634397": { + "name": "class ClientInventoryBehavior", + "bases": [ + "InventoryBehaviorBase", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 877634397, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_itemList": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 27, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1983655699 + } + } + }, + "1718000972": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1718000972, + "properties": { + "m_level": { + "type": "int", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 801285362 + }, + "m_xpToLevel": { + "type": "int", + "id": 1, + "offset": 76, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1972600157 + }, + "m_hitpoints": { + "type": "int", + "id": 2, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1545062140 + }, + "m_mana": { + "type": "int", + "id": 3, + "offset": 84, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 219624247 + }, + "m_gold": { + "type": "int", + "id": 4, + "offset": 88, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 219423808 + }, + "m_levelName": { + "type": "std::string", + "id": 5, + "offset": 136, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3595417396 + }, + "m_pipChance": { + "type": "float", + "id": 6, + "offset": 168, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1744274210 + }, + "m_trainingPoints": { + "type": "int", + "id": 7, + "offset": 172, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1003892499 + }, + "m_craftingSlots": { + "type": "int", + "id": 8, + "offset": 92, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1998878589 + }, + "m_petEnergy": { + "type": "int", + "id": 9, + "offset": 96, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1787948493 + }, + "m_pipConversionRatingAllSchools": { + "type": "int", + "id": 10, + "offset": 100, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1570450594 + }, + "m_pipConversionRatingFire": { + "type": "int", + "id": 11, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1427121812 + }, + "m_pipConversionRatingIce": { + "type": "int", + "id": 12, + "offset": 108, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 108410207 + }, + "m_pipConversionRatingStorm": { + "type": "int", + "id": 13, + "offset": 112, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2010842115 + }, + "m_pipConversionRatingLife": { + "type": "int", + "id": 14, + "offset": 116, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1427337038 + }, + "m_pipConversionRatingMyth": { + "type": "int", + "id": 15, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1427390864 + }, + "m_pipConversionRatingDeath": { + "type": "int", + "id": 16, + "offset": 124, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1992499060 + }, + "m_pipConversionRatingBalance": { + "type": "int", + "id": 17, + "offset": 128, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 197129012 + }, + "m_shadowPipRating": { + "type": "float", + "id": 18, + "offset": 176, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 507126123 + }, + "m_archmastery": { + "type": "float", + "id": 19, + "offset": 180, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1963579610 + } + } + }, + "877438051": { + "name": "class ReqHasMorphSlot*", + "bases": [ + "Requirement", + "PropertyClass" + ], + "hash": 877438051, + "properties": { + "m_applyNOT": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1746328074, + "enum_options": { + "__DEFAULT": 0 + } + }, + "m_operator": { + "type": "enum Requirement::Operator", + "id": 1, + "offset": 76, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2672792317, + "enum_options": { + "ROP_AND": 0, + "ROP_OR": 1, + "__DEFAULT": "ROP_AND" + } + } + } + }, + "429488423": { + "name": "class QuestListPage::DialogDataCacheEntry*", + "bases": [ + "PropertyClass" + ], + "hash": 429488423, + "properties": { + "m_dialog": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 440960800 + }, + "m_goalCount": { + "type": "int", + "id": 1, + "offset": 88, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 774266758 + } + } + }, + "876966376": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 876966376, + "properties": { + "m_characterGID": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 501688601 + }, + "m_fishSize": { + "type": "float", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1986368316 + }, + "m_packedName": { + "type": "std::string", + "id": 2, + "offset": 88, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1805208228 + } + } + }, + "1278005015": { + "name": "class SwapShadowMaterialActorCinematicAction*", + "bases": [ + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 1278005015, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + } + } + }, + "429406503": { + "name": "class QuestListPage::DialogDataCacheEntry", + "bases": [ + "PropertyClass" + ], + "hash": 429406503, + "properties": { + "m_dialog": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 440960800 + }, + "m_goalCount": { + "type": "int", + "id": 1, + "offset": 88, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 774266758 + } + } + }, + "1718854234": { + "name": "class SharedPointer", + "bases": [ + "CinematicStageTemplate", + "PropertyClass" + ], + "hash": 1718854234, + "properties": { + "m_name": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1717359772 + }, + "m_duration": { + "type": "float", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 920323453 + }, + "m_actions": { + "type": "class SharedPointer", + "id": 2, + "offset": 112, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1380578687 + }, + "m_stageRelationships": { + "type": "class SharedPointer", + "id": 3, + "offset": 128, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 499983354 + }, + "m_stopRotating": { + "type": "bool", + "id": 4, + "offset": 153, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 13587553 + }, + "m_startRotating": { + "type": "bool", + "id": 5, + "offset": 154, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 839204969 + }, + "m_startRotationTime": { + "type": "float", + "id": 6, + "offset": 156, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1011449124 + }, + "m_camRel": { + "type": "enum CameraCutCinematicAction::kCameraRelative", + "id": 7, + "offset": 164, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 919962138, + "enum_options": { + "kSigil": 1, + "kTarget": 2, + "kSource": 3, + "kActor": 4, + "__DEFAULT": "kTarget" + } + }, + "m_bSwitchCameraToWideLong": { + "type": "bool", + "id": 8, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2136912684, + "enum_options": { + "__DEFAULT": 1 + } + }, + "m_isCloaked": { + "type": "bool", + "id": 9, + "offset": 160, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1175302050 + } + } + }, + "1277943989": { + "name": "class PromoReward*", + "bases": [ + "PropertyClass" + ], + "hash": 1277943989, + "properties": { + "m_desc": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1717004954 + }, + "m_type": { + "type": "std::string", + "id": 1, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1717601629 + } + } + }, + "1718635945": { + "name": "class ElasticCamController", + "bases": [ + "CameraController", + "PropertyClass" + ], + "hash": 1718635945, + "properties": {} + }, + "877441123": { + "name": "class ReqHasMorphSlot", + "bases": [ + "Requirement", + "PropertyClass" + ], + "hash": 877441123, + "properties": { + "m_applyNOT": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1746328074, + "enum_options": { + "__DEFAULT": 0 + } + }, + "m_operator": { + "type": "enum Requirement::Operator", + "id": 1, + "offset": 76, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2672792317, + "enum_options": { + "ROP_AND": 0, + "ROP_OR": 1, + "__DEFAULT": "ROP_AND" + } + } + } + }, + "1277953215": { + "name": "enum FishingSpellTemplate::FishingSpellType", + "bases": [], + "hash": 1277953215, + "properties": {} + }, + "429723869": { + "name": "class SharedPointer", + "bases": [ + "PathBehaviorTemplate::Action", + "PropertyClass" + ], + "hash": 429723869, + "properties": { + "m_nPathID": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 214382368 + }, + "m_nNodeID": { + "type": "int", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 152152635, + "enum_options": { + "__DEFAULT": 4294967295 + } + }, + "m_nPriority": { + "type": "int", + "id": 2, + "offset": 84, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1515251530, + "enum_options": { + "__DEFAULT": 100 + } + }, + "m_nChance": { + "type": "int", + "id": 3, + "offset": 88, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1860748394, + "enum_options": { + "__DEFAULT": 50 + } + } + } + }, + "429553826": { + "name": "class SharedPointer", + "bases": [ + "CinematicAction", + "PropertyClass" + ], + "hash": 429553826, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_camToReplace": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2286913643 + }, + "m_replaceWithCam": { + "type": "std::string", + "id": 2, + "offset": 112, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2992754084 + } + } + }, + "1718971766": { + "name": "class SharedPointer", + "bases": [ + "CombatRule", + "PropertyClass" + ], + "hash": 1718971766, + "properties": { + "m_damageLimit": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 271286357 + }, + "m_dK0": { + "type": "float", + "id": 1, + "offset": 76, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 357232662 + }, + "m_dN0": { + "type": "float", + "id": 2, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 357232761 + } + } + }, + "877885313": { + "name": "class ScrollButton", + "bases": [ + "ControlPopupButton", + "ControlButton", + "Window", + "PropertyClass" + ], + "hash": 877885313, + "properties": { + "m_sName": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306437263 + }, + "m_Children": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621225959 + }, + "m_Style": { + "type": "unsigned int", + "id": 2, + "offset": 152, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152, + "POPDOWN_SIBLINGS": 67108864, + "DISABLE_CHILDREN": 134217728, + "HIDE_SIBLINGS": 268435456, + "POPUP_ON_HOVER": 536870912 + } + }, + "m_Flags": { + "type": "unsigned int", + "id": 3, + "offset": 156, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } + }, + "m_Window": { + "type": "class Rect", + "id": 4, + "offset": 160, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3105139380 + }, + "m_fTargetAlpha": { + "type": "float", + "id": 5, + "offset": 212, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1809129834 + }, + "m_fDisabledAlpha": { + "type": "float", + "id": 6, + "offset": 216, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1389987675 + }, + "m_fAlpha": { + "type": "float", + "id": 7, + "offset": 208, + "flags": 65671, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 482130755 + }, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3623628394 + }, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2102211316 + }, + "m_sScript": { + "type": "std::string", + "id": 10, + "offset": 352, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1846695875 + }, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3389835433 + }, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547159940 + }, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513510520 + }, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3091503757 + }, + "m_bToggle": { + "type": "bool", + "id": 16, + "offset": 608, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2071810903 + }, + "m_bButtonDown": { + "type": "bool", + "id": 17, + "offset": 609, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 840041705 + }, + "m_sLabel": { + "type": "std::wstring", + "id": 18, + "offset": 616, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2207009163 + }, + "m_labelOffset": { + "type": "class Rect", + "id": 19, + "offset": 832, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1990646723 + }, + "m_pButton": { + "type": "class SharedPointer", + "id": 20, + "offset": 656, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1543855875 + }, + "m_HotKey": { + "type": "unsigned int", + "id": 21, + "offset": 672, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1631553409 + }, + "m_Color": { + "type": "class Color", + "id": 22, + "offset": 676, + "flags": 262279, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1753714077 + }, + "m_bCursorOver": { + "type": "bool", + "id": 23, + "offset": 689, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 283981103 + }, + "m_bAbortWhenCursorNotOver": { + "type": "bool", + "id": 24, + "offset": 706, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 325405258 + }, + "m_bHotKeyDown": { + "type": "bool", + "id": 25, + "offset": 680, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 616989185 + }, + "m_fTime": { + "type": "float", + "id": 26, + "offset": 684, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 883746156 + }, + "m_bGreyed": { + "type": "bool", + "id": 27, + "offset": 688, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1566556053 + }, + "m_fMaxScale": { + "type": "float", + "id": 28, + "offset": 692, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2070186635 + }, + "m_fScaleSpeed": { + "type": "float", + "id": 29, + "offset": 696, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1457135702 + }, + "m_bUseDropShadow": { + "type": "bool", + "id": 30, + "offset": 704, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 93063037 + }, + "m_bUseOutline": { + "type": "bool", + "id": 31, + "offset": 705, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 744292994 + }, + "m_pGreyedState": { + "type": "class SharedPointer", + "id": 32, + "offset": 768, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2703352263 + }, + "m_pNormalState": { + "type": "class SharedPointer", + "id": 33, + "offset": 752, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1887909808 + }, + "m_pHighlightedState": { + "type": "class SharedPointer", + "id": 34, + "offset": 784, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2200177608 + }, + "m_pSelectedState": { + "type": "class SharedPointer", + "id": 35, + "offset": 800, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2266776432 + }, + "m_pDepressedState": { + "type": "class SharedPointer", + "id": 36, + "offset": 816, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1878185798 + }, + "m_bUp": { + "type": "bool", + "id": 37, + "offset": 880, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 269510906 + } + } + }, + "1278311783": { + "name": "class SharedPointer", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 1278311783, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + }, + "m_stateSetName": { + "type": "std::string", + "id": 1, + "offset": 120, + "flags": 268435463, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1863712969, + "enum_options": { + "__BASECLASS": "ObjStateSet" + } + } + } + }, + "1278047383": { + "name": "enum ClassProjectActivityType", + "bases": [], + "hash": 1278047383, + "properties": {} + }, + "430933174": { + "name": "class PersonaGoalTemplate", + "bases": [ + "GoalTemplate", + "CoreTemplate", + "PropertyClass" + ], + "hash": 430933174, + "properties": { + "m_behaviors": { + "type": "class BehaviorTemplate*", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1197808594 + }, + "m_goalName": { + "type": "std::string", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1521627807 + }, + "m_goalNameID": { + "type": "unsigned int", + "id": 2, + "offset": 496, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 403158846 + }, + "m_goalTitle": { + "type": "std::string", + "id": 3, + "offset": 136, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2291910240 + }, + "m_goalUnderway": { + "type": "std::string", + "id": 4, + "offset": 168, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3153144269 + }, + "m_hyperlink": { + "type": "std::string", + "id": 5, + "offset": 200, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2887798993 + }, + "m_completeText": { + "type": "std::string", + "id": 6, + "offset": 232, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2767458393 + }, + "m_completeResults": { + "type": "class ResultList*", + "id": 7, + "offset": 440, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1964258099 + }, + "m_goalRequirements": { + "type": "class RequirementList*", + "id": 8, + "offset": 448, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2979967145 + }, + "m_tallyCounter": { + "type": "class TallyCounterTemplate*", + "id": 9, + "offset": 456, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1884546193 + }, + "m_locationName": { + "type": "std::string", + "id": 10, + "offset": 272, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1824218389 + }, + "m_displayImage1": { + "type": "std::string", + "id": 11, + "offset": 304, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1959572133 + }, + "m_displayImage2": { + "type": "std::string", + "id": 12, + "offset": 336, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1959572134 + }, + "m_clientTags": { + "type": "std::string", + "id": 13, + "offset": 368, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2319030025 + }, + "m_genericEvents": { + "type": "std::string", + "id": 14, + "offset": 384, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 3466670829 + }, + "m_autoQualify": { + "type": "bool", + "id": 15, + "offset": 400, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1878907431 + }, + "m_autoComplete": { + "type": "bool", + "id": 16, + "offset": 401, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1302545445 + }, + "m_destinationZone": { + "type": "std::string", + "id": 17, + "offset": 408, + "flags": 268435463, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2605356153, + "enum_options": { + "__BASECLASS": "ZoneData" + } + }, + "m_dialogList": { + "type": "class ActorDialogListBase*", + "id": 18, + "offset": 264, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1909154969 + }, + "m_goalType": { + "type": "enum GoalTemplate::GOAL_TYPE", + "id": 19, + "offset": 96, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1488021149, + "enum_options": { + "GOAL_TYPE_UNKNOWN": 0, + "GOAL_TYPE_BOUNTY": 1, + "GOAL_TYPE_BOUNTYCOLLECT": 2, + "GOAL_TYPE_SCAVENGE": 3, + "GOAL_TYPE_PERSONA": 4, + "GOAL_TYPE_WAYPOINT": 5, + "GOAL_TYPE_SCAVENGEFAKE": 6, + "GOAL_TYPE_ACHIEVERANK": 7, + "GOAL_TYPE_USAGE": 8, + "GOAL_TYPE_COMPLETEQUEST": 9, + "GOAL_TYPE_SOCIARANK": 10, + "GOAL_TYPE_SOCIACURRENCY": 11, + "GOAL_TYPE_SOCIAMINIGAME": 12, + "GOAL_TYPE_SOCIAGIVEITEM": 13, + "GOAL_TYPE_SOCIAGETITEM": 14, + "GOAL_TYPE_COLLECTAFTERBOUNTY": 15, + "GOAL_TYPE_ENCOUNTER_WAYPOINT_FOREACH": 16 + } + }, + "m_noQuestHelper": { + "type": "bool", + "id": 20, + "offset": 500, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 578010882, + "enum_options": { + "__DEFAULT": 0 + } + }, + "m_petOnlyQuest": { + "type": "bool", + "id": 21, + "offset": 501, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 679359344, + "enum_options": { + "__DEFAULT": 0 + } + }, + "m_activateResults": { + "type": "class ResultList*", + "id": 22, + "offset": 504, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3790153995 + }, + "m_hideGoalFloatyText": { + "type": "bool", + "id": 23, + "offset": 512, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1919383204, + "enum_options": { + "__DEFAULT": 0 + } + }, + "m_personaName": { + "type": "std::string", + "id": 24, + "offset": 520, + "flags": 268435463, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2514452244, + "enum_options": { + "__BASECLASS": "Persona" + } + }, + "m_usePatron": { + "type": "bool", + "id": 25, + "offset": 552, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 853266164 + } + } + }, + "1760725320": { + "name": "class SharedPointer", + "bases": [ + "Requirement", + "PropertyClass" + ], + "hash": 1760725320, + "properties": { + "m_applyNOT": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1746328074, + "enum_options": { + "__DEFAULT": 0 + } + }, + "m_operator": { + "type": "enum Requirement::Operator", + "id": 1, + "offset": 76, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2672792317, + "enum_options": { + "ROP_AND": 0, + "ROP_OR": 1, + "__DEFAULT": "ROP_AND" + } + }, + "m_requirements": { + "type": "class Requirement*", + "id": 2, + "offset": 80, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1347801628 + } + } + }, + "880401892": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 880401892, + "properties": { + "m_nWidth": { + "type": "int", + "id": 0, + "offset": 72, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 730982536 + }, + "m_Color": { + "type": "class Color", + "id": 1, + "offset": 76, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1753714077 + } + } + }, + "1745616230": { + "name": "class SharedPointer", + "bases": [ + "ServiceOptionBase", + "PropertyClass" + ], + "hash": 1745616230, + "properties": { + "m_serviceName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2206028813 + }, + "m_iconKey": { + "type": "std::string", + "id": 1, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2457138637 + }, + "m_displayKey": { + "type": "std::string", + "id": 2, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3023276954 + }, + "m_serviceIndex": { + "type": "unsigned int", + "id": 3, + "offset": 204, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2103126710 + }, + "m_forceInteract": { + "type": "bool", + "id": 4, + "offset": 200, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1705789564 + } + } + }, + "431077836": { + "name": "enum CurrencyTemplate::CurrencyTypes", + "bases": [], + "hash": 431077836, + "properties": {} + }, + "880203929": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 880203929, + "properties": { + "m_items": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2752134535 + } + } + }, + "1734670745": { + "name": "class SharedPointer", + "bases": [ + "GameEffectTemplate", + "PropertyClass" + ], + "hash": 1734670745, + "properties": { + "m_effectName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2029161513 + }, + "m_effectCategory": { + "type": "std::string", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1852673222 + }, + "m_sortOrder": { + "type": "int", + "id": 2, + "offset": 148, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1411218206 + }, + "m_duration": { + "type": "double", + "id": 3, + "offset": 192, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2727932435 + }, + "m_stackingCategories": { + "type": "std::string", + "id": 4, + "offset": 160, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1774497525 + }, + "m_isPersistent": { + "type": "bool", + "id": 5, + "offset": 153, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 923861920 + }, + "m_bIsOnPet": { + "type": "bool", + "id": 6, + "offset": 154, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 522593303 + }, + "m_isPublic": { + "type": "bool", + "id": 7, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1728439822 + }, + "m_visualEffectAddName": { + "type": "std::string", + "id": 8, + "offset": 200, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3382086694 + }, + "m_visualEffectRemoveName": { + "type": "std::string", + "id": 9, + "offset": 232, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1541697323 + }, + "m_onAddFunctorName": { + "type": "std::string", + "id": 10, + "offset": 280, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1561843107 + }, + "m_onRemoveFunctorName": { + "type": "std::string", + "id": 11, + "offset": 312, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2559017864 + }, + "m_stackingRule": { + "type": "enum STACKING_RULE", + "id": 12, + "offset": 144, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 431568889, + "enum_options": { + "STACKING_ALLOWED": 0, + "STACKING_NOSTACK": 1, + "STACKING_REPLACE": 2 + } + }, + "m_speedMultiplier": { + "type": "int", + "id": 13, + "offset": 360, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 32503058 + } + } + }, + "879155916": { + "name": "class ActiveTimedAccessPassList*", + "bases": [ + "PropertyClass" + ], + "hash": 879155916, + "properties": { + "m_passList": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1599562628 + } + } + }, + "1725394101": { + "name": "struct ControlList::Column*", + "bases": [ + "PropertyClass" + ], + "hash": 1725394101, + "properties": { + "m_nWidth": { + "type": "int", + "id": 0, + "offset": 72, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 730982536 + }, + "m_Color": { + "type": "class Color", + "id": 1, + "offset": 76, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1753714077 + } + } + }, + "1281691511": { + "name": "class ClientDestroyShadowCreatureCinematicAction", + "bases": [ + "DestroyShadowCreatureCinematicAction", + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 1281691511, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + } + } + }, + "1724159533": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1724159533, + "properties": { + "m_dailyPvPList": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2102460099 + } + } + }, + "1279100803": { + "name": "class SpellEffectParamOverride", + "bases": [ + "PropertyClass" + ], + "hash": 1279100803, + "properties": { + "m_effectIndex": { + "type": "int", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 350070655 + }, + "m_paramValue": { + "type": "int", + "id": 1, + "offset": 76, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2048907304 + } + } + }, + "452858476": { + "name": "class SharedPointer", + "bases": [ + "ResultSourceType", + "Result", + "PropertyClass" + ], + "hash": 452858476, + "properties": { + "m_sourceType": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2305508654 + }, + "m_zoneLevelMax": { + "type": "unsigned int", + "id": 1, + "offset": 76, + "flags": 263, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1028933895 + }, + "m_zoneLevelMin": { + "type": "unsigned int", + "id": 2, + "offset": 72, + "flags": 263, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1028934149 + } + } + }, + "1721553725": { + "name": "class SharedPointer", + "bases": [ + "WizItemLocations", + "PropertyClass" + ], + "hash": 1721553725, + "properties": { + "m_itemType": { + "type": "enum WizItemLocations::eItemType", + "id": 0, + "offset": 72, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3482173907, + "enum_options": { + "shop": 0, + "quest": 1, + "boss": 2, + "gardening": 3, + "goldChest": 4 + } + }, + "m_plants": { + "type": "unsigned int", + "id": 1, + "offset": 80, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1045283519 + } + } + }, + "1278380022": { + "name": "class QueuedCombatCinematicAction*", + "bases": [ + "CinematicAction", + "PropertyClass" + ], + "hash": 1278380022, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + } + } + }, + "439962601": { + "name": "class SharedPointer", + "bases": [ + "CantripsMajorInvisibilityEffect", + "CantripsInvisibilityEffect", + "GameEffectBase", + "PropertyClass" + ], + "hash": 439962601, + "properties": { + "m_currentTickCount": { + "type": "double", + "id": 0, + "offset": 80, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2533274692 + }, + "m_effectNameID": { + "type": "unsigned int", + "id": 1, + "offset": 96, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1204067144 + }, + "m_bIsOnPet": { + "type": "bool", + "id": 2, + "offset": 73, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 522593303 + }, + "m_originatorID": { + "type": "gid", + "id": 3, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1131810019 + }, + "m_itemSlotID": { + "type": "unsigned int", + "id": 4, + "offset": 112, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1895747595 + }, + "m_internalID": { + "type": "int", + "id": 5, + "offset": 92, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1643137924 + }, + "m_endTime": { + "type": "unsigned int", + "id": 6, + "offset": 88, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 716479635 + } + } + }, + "1720557061": { + "name": "class AccompanyNPCBehaviorTemplate*", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 1720557061, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + }, + "m_autoAdd": { + "type": "bool", + "id": 1, + "offset": 121, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2077986357 + }, + "m_autoRemove": { + "type": "bool", + "id": 2, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 665701306 + }, + "m_allowedQuests": { + "type": "std::string", + "id": 3, + "offset": 128, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1695271656 + }, + "m_allowedInZones": { + "type": "bool", + "id": 4, + "offset": 160, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 195607873 + }, + "m_zoneList": { + "type": "std::string", + "id": 5, + "offset": 168, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2171104787 + }, + "m_otherNpcsToReplace": { + "type": "std::string", + "id": 6, + "offset": 184, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 3637554352 + }, + "m_dontSpawnIfNpcIsPresent": { + "type": "std::string", + "id": 7, + "offset": 200, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 3130923110 + }, + "m_questEffectTemplate": { + "type": "class SharedPointer", + "id": 8, + "offset": 216, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3397272317 + } + } + }, + "434748407": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 434748407, + "properties": { + "m_characterId": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 210498418 + }, + "m_pets": { + "type": "class SharedPointer", + "id": 1, + "offset": 80, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 521887012 + } + } + }, + "881486794": { + "name": "enum Material::Blending", + "bases": [], + "hash": 881486794, + "properties": {} + }, + "1720243148": { + "name": "class SharedPointer", + "bases": [ + "GameEffectTimerDisplayBehavior", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1720243148, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_effectName": { + "type": "std::string", + "id": 1, + "offset": 112, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2029161513 + }, + "m_textKey": { + "type": "std::string", + "id": 2, + "offset": 144, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1720060457 + }, + "m_height": { + "type": "float", + "id": 3, + "offset": 176, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 602977104 + }, + "m_zOffset": { + "type": "float", + "id": 4, + "offset": 180, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 736134072 + }, + "m_red": { + "type": "unsigned char", + "id": 5, + "offset": 184, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 904647115 + }, + "m_green": { + "type": "unsigned char", + "id": 6, + "offset": 185, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1433403873 + }, + "m_blue": { + "type": "unsigned char", + "id": 7, + "offset": 186, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 856840600 + }, + "m_triggers": { + "type": "class SharedPointer", + "id": 8, + "offset": 192, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 3290329276 + } + } + }, + "1278443324": { + "name": "class ObstacleCourseModifyTimeBehaviorClient*", + "bases": [ + "ObstacleCourseModifyTimeBehavior", + "ObstacleCourseObstaclePathBase", + "ObstacleCourseObstacleBehavior", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1278443324, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + } + } + }, + "431503846": { + "name": "class ActorCinematicAction*", + "bases": [ + "CinematicAction", + "PropertyClass" + ], + "hash": 431503846, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + } + } + }, + "880708627": { + "name": "enum LeashType", + "bases": [], + "hash": 880708627, + "properties": {} + }, + "1719886359": { + "name": "class std::list >", + "bases": [], + "hash": 1719886359, + "properties": {} + }, + "431503822": { + "name": "class ActorCinematicAction", + "bases": [ + "CinematicAction", + "PropertyClass" + ], + "hash": 431503822, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + } + } + }, + "1719726891": { + "name": "class SharedPointer", + "bases": [ + "ReqNumeric", + "Requirement", + "PropertyClass" + ], + "hash": 1719726891, + "properties": { + "m_applyNOT": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1746328074, + "enum_options": { + "__DEFAULT": 0 + } + }, + "m_operator": { + "type": "enum Requirement::Operator", + "id": 1, + "offset": 76, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2672792317, + "enum_options": { + "ROP_AND": 0, + "ROP_OR": 1, + "__DEFAULT": "ROP_AND" + } + }, + "m_numericValue": { + "type": "float", + "id": 2, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 521915239 + }, + "m_operatorType": { + "type": "enum ReqNumeric::OPERATOR_TYPE", + "id": 3, + "offset": 84, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2228122961, + "enum_options": { + "OPERATOR_UNKNOWN": 4294967295, + "OPERATOR_EQUALS": 0, + "OPERATOR_GREATER_THAN": 1, + "OPERATOR_LESS_THAN": 2, + "OPERATOR_GREATER_THAN_EQ": 3, + "OPERATOR_LESS_THAN_EQ": 4 + } + } + } + }, + "1280239369": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1280239369, + "properties": { + "m_desc": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1717004954 + }, + "m_type": { + "type": "std::string", + "id": 1, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1717601629 + } + } + }, + "881626201": { + "name": "class SharedPointer", + "bases": [ + "WinAnimScaleTime", + "WinAnimScale", + "WindowAnimation", + "PropertyClass" + ], + "hash": 881626201, + "properties": { + "m_bUseDeepCopy": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 433380635 + }, + "m_scale": { + "type": "float", + "id": 1, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 899693439 + }, + "m_fTimeTotal": { + "type": "float", + "id": 2, + "offset": 96, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 661225456 + }, + "m_fTimeRemaining": { + "type": "float", + "id": 3, + "offset": 100, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1591443014 + } + } + }, + "1279479026": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1279479026, + "properties": { + "m_friendList": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1993921452 + } + } + }, + "432772836": { + "name": "class ClientRenamePipActorsFromResult*", + "bases": [ + "RenamePipActorsFromResult", + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 432772836, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + }, + "m_newActorName": { + "type": "std::string", + "id": 2, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2029131039 + }, + "m_newActorName2": { + "type": "std::string", + "id": 3, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1852236785 + }, + "m_oldActorName": { + "type": "std::string", + "id": 4, + "offset": 184, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2191892948 + } + } + }, + "432625193": { + "name": "class SharedPointer", + "bases": [ + "MonsterArenaBehaviorBase", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 432625193, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_mobList": { + "type": "unsigned int", + "id": 1, + "offset": 112, + "flags": 65543, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 347281415 + }, + "m_zoneGID": { + "type": "gid", + "id": 2, + "offset": 128, + "flags": 65543, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1907651624 + }, + "m_monsterData": { + "type": "std::string", + "id": 3, + "offset": 136, + "flags": 551, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3377737309 + } + } + }, + "1720446538": { + "name": "class SharedPointer", + "bases": [ + "TextureRemapBehavior", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1720446538, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_textureRemapList": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 3580415920 + } + } + }, + "1279905174": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1279905174, + "properties": { + "m_levelInfo": { + "type": "class CantripLevelInfo*", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 3391404974 + }, + "m_maxLevel": { + "type": "unsigned char", + "id": 1, + "offset": 88, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 783962734 + } + } + }, + "431884617": { + "name": "class AdventurePartyInfo", + "bases": [ + "PropertyClass" + ], + "hash": 431884617, + "properties": { + "m_adventurePartyGID": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2003479882 + }, + "m_adventurePartyName": { + "type": "unsigned int", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1899719436 + }, + "m_adventurePartyNameLocale": { + "type": "int", + "id": 2, + "offset": 84, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 695833705 + }, + "m_creationDate": { + "type": "unsigned int", + "id": 3, + "offset": 88, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2141685120 + }, + "m_ownerGID": { + "type": "gid", + "id": 4, + "offset": 96, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1765087575 + }, + "m_ownerName": { + "type": "std::string", + "id": 5, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1761521415 + }, + "m_purposeType": { + "type": "int", + "id": 6, + "offset": 136, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1148443466 + }, + "m_purposeWorldID": { + "type": "unsigned int", + "id": 7, + "offset": 140, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1790486832 + }, + "m_flags": { + "type": "unsigned int", + "id": 8, + "offset": 144, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1005801050 + }, + "m_equippedHouseInstanceGID": { + "type": "gid", + "id": 9, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 63247330 + }, + "m_equippedInteriorInstanceGID": { + "type": "gid", + "id": 10, + "offset": 160, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1578260586 + }, + "m_adventurePartyMemberList": { + "type": "class SharedPointer", + "id": 11, + "offset": 168, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2861967351 + }, + "m_messageBoardList": { + "type": "class SharedPointer", + "id": 12, + "offset": 184, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2175215327 + }, + "m_renameCooldownTime": { + "type": "unsigned int", + "id": 13, + "offset": 200, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 762261177 + }, + "m_newOwnerTime": { + "type": "unsigned int", + "id": 14, + "offset": 204, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 453769201 + } + } + }, + "888202967": { + "name": "class SharedPointer", + "bases": [ + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 888202967, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + } + } + }, + "882368756": { + "name": "class SharedPointer", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 882368756, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + } + } + }, + "882082720": { + "name": "class ElixirBenefitBehaviorTemplate", + "bases": [ + "ElixirBehaviorTemplate", + "TimedItemBehaviorTemplate", + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 882082720, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + }, + "m_expireTime": { + "type": "std::string", + "id": 1, + "offset": 128, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3122602039 + }, + "m_timerType": { + "type": "enum TimerType", + "id": 2, + "offset": 120, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 571744132, + "enum_options": { + "TimerType_Game": 0, + "TimerType_Calendar": 1 + } + }, + "m_typeList": { + "type": "std::string", + "id": 3, + "offset": 160, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2119049625 + }, + "m_equipParticle": { + "type": "std::string", + "id": 4, + "offset": 176, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2222557491 + }, + "m_unequipParticle": { + "type": "std::string", + "id": 5, + "offset": 208, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2215431638 + }, + "m_equipSound": { + "type": "std::string", + "id": 6, + "offset": 240, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2720016552 + }, + "m_unequipSound": { + "type": "std::string", + "id": 7, + "offset": 272, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1552545835 + }, + "m_equipActionList": { + "type": "class SharedPointer", + "id": 8, + "offset": 304, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1314016250 + }, + "m_unequipActionList": { + "type": "class SharedPointer", + "id": 9, + "offset": 320, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2143896925 + }, + "m_combatEnabled": { + "type": "bool", + "id": 10, + "offset": 336, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1399744148 + }, + "m_PvPEnabled": { + "type": "bool", + "id": 11, + "offset": 337, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1042852532 + }, + "m_classProjectName": { + "type": "std::string", + "id": 12, + "offset": 352, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1714146665 + } + } + }, + "1720563205": { + "name": "class AccompanyNPCBehaviorTemplate", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 1720563205, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + }, + "m_autoAdd": { + "type": "bool", + "id": 1, + "offset": 121, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2077986357 + }, + "m_autoRemove": { + "type": "bool", + "id": 2, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 665701306 + }, + "m_allowedQuests": { + "type": "std::string", + "id": 3, + "offset": 128, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1695271656 + }, + "m_allowedInZones": { + "type": "bool", + "id": 4, + "offset": 160, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 195607873 + }, + "m_zoneList": { + "type": "std::string", + "id": 5, + "offset": 168, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2171104787 + }, + "m_otherNpcsToReplace": { + "type": "std::string", + "id": 6, + "offset": 184, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 3637554352 + }, + "m_dontSpawnIfNpcIsPresent": { + "type": "std::string", + "id": 7, + "offset": 200, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 3130923110 + }, + "m_questEffectTemplate": { + "type": "class SharedPointer", + "id": 8, + "offset": 216, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3397272317 + } + } + }, + "1281339435": { + "name": "class SharedPointer", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1281339435, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_autoCapTimer": { + "type": "class BGSigilTimer", + "id": 1, + "offset": 112, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2270881950 + }, + "m_timerTeam": { + "type": "std::string", + "id": 2, + "offset": 216, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1994153155 + }, + "m_teamOwner": { + "type": "std::string", + "id": 3, + "offset": 248, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3126686637 + }, + "m_combatActive": { + "type": "bool", + "id": 4, + "offset": 280, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1372743333 + }, + "m_captureable": { + "type": "bool", + "id": 5, + "offset": 281, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1101963387 + }, + "m_allowAutoCap": { + "type": "bool", + "id": 6, + "offset": 282, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 946300927 + }, + "m_sigilAggroRange": { + "type": "float", + "id": 7, + "offset": 284, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 995063020 + }, + "m_playerAggroRange": { + "type": "float", + "id": 8, + "offset": 288, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1776075073 + }, + "m_triggerOrientation": { + "type": "class Vector3D", + "id": 9, + "offset": 292, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2671004802 + }, + "m_triggerLocation": { + "type": "class Vector3D", + "id": 10, + "offset": 304, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2573315471 + }, + "m_triggerBox": { + "type": "bool", + "id": 11, + "offset": 316, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 962168144 + }, + "m_width": { + "type": "float", + "id": 12, + "offset": 320, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 904656279 + }, + "m_length": { + "type": "float", + "id": 13, + "offset": 324, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 759698745 + }, + "m_triggerSphere": { + "type": "bool", + "id": 14, + "offset": 328, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1467830382 + }, + "m_radius": { + "type": "float", + "id": 15, + "offset": 332, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 989410271 + }, + "m_inRange": { + "type": "class SharedPointer", + "id": 16, + "offset": 336, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2259190010 + } + } + }, + "881774485": { + "name": "class PrivateSocketJewelPair", + "bases": [ + "PropertyClass" + ], + "hash": 881774485, + "properties": { + "m_socketNumber": { + "type": "unsigned int", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 772707167 + }, + "m_jewelID": { + "type": "gid", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 190876604 + } + } + }, + "434506272": { + "name": "class InstanceSigilOption*", + "bases": [ + "ServiceOptionBase", + "PropertyClass" + ], + "hash": 434506272, + "properties": { + "m_serviceName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2206028813 + }, + "m_iconKey": { + "type": "std::string", + "id": 1, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2457138637 + }, + "m_displayKey": { + "type": "std::string", + "id": 2, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3023276954 + }, + "m_serviceIndex": { + "type": "unsigned int", + "id": 3, + "offset": 204, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2103126710 + }, + "m_forceInteract": { + "type": "bool", + "id": 4, + "offset": 200, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1705789564 + } + } + }, + "1721411224": { + "name": "class SharedPointer", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1721411224, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_recipeBag": { + "type": "class RecipeBag", + "id": 1, + "offset": 112, + "flags": 27, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2218166892 + }, + "m_craftingSlotsBag": { + "type": "class ObjectBag", + "id": 2, + "offset": 320, + "flags": 27, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2324986502 + }, + "m_reagentBag": { + "type": "class ObjectBag", + "id": 3, + "offset": 512, + "flags": 27, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2459563753 + }, + "m_bonusCrafting": { + "type": "int", + "id": 4, + "offset": 704, + "flags": 59, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 943921711 + }, + "m_timerMultiplier": { + "type": "float", + "id": 5, + "offset": 708, + "flags": 27, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1373659455 + }, + "m_maxReagentStack": { + "type": "int", + "id": 6, + "offset": 712, + "flags": 27, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1121296540 + }, + "m_equippedRecipes": { + "type": "unsigned int", + "id": 7, + "offset": 720, + "flags": 27, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1981226997 + }, + "m_equippedRecipeData": { + "type": "std::string", + "id": 8, + "offset": 736, + "flags": 551, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2773803466 + } + } + }, + "433991010": { + "name": "class ObjectLocationList", + "bases": [ + "PropertyClass" + ], + "hash": 433991010, + "properties": { + "m_objectList": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 931236576 + } + } + }, + "1283125115": { + "name": "class ItemLootInfo*", + "bases": [ + "LootInfo", + "LootInfoBase", + "PropertyClass" + ], + "hash": 1283125115, + "properties": { + "m_lootType": { + "type": "enum LootInfo::LOOT_TYPE", + "id": 0, + "offset": 72, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1591891442, + "enum_options": { + "LOOT_TYPE_NONE": 0, + "LOOT_TYPE_GOLD": 1, + "LOOT_TYPE_MANA": 2, + "LOOT_TYPE_ITEM": 3, + "LOOT_TYPE_TREASURE_CARD": 4, + "LOOT_TYPE_MAGIC_XP": 5, + "LOOT_TYPE_ADD_SPELL": 6, + "LOOT_TYPE_MAX_HEALTH": 7, + "LOOT_TYPE_MAX_GOLD": 8, + "LOOT_TYPE_MAX_MANA": 9, + "LOOT_TYPE_MAX_POTION": 10, + "LOOT_TYPE_TRAINING_POINTS": 11, + "LOOT_TYPE_RECIPE": 12, + "LOOT_TYPE_CRAFTING_SLOT": 13, + "LOOT_TYPE_REAGENT": 14, + "LOOT_TYPE_PETSNACK": 15, + "LOOT_TYPE_GARDENING_XP": 16, + "LOOT_TYPE_PET_XP": 17, + "LOOT_TYPE_TREASURE_TABLE": 18, + "LOOT_TYPE_ARENA_POINTS": 19, + "LOOT_TYPE_ARENA_BONUS_POINTS": 20, + "LOOT_TYPE_GROUP": 21, + "LOOT_TYPE_FISHING_XP": 22, + "LOOT_TYPE_EVENT_CURRENCY_1": 24, + "LOOT_TYPE_EVENT_CURRENCY_2": 25, + "LOOT_TYPE_PVP_CURRENCY": 26, + "LOOT_TYPE_PVP_CURRENCY_BONUS": 27, + "LOOT_TYPE_PVP_TOURNEY_CURRENCY": 28, + "LOOT_TYPE_PVP_TOURNEY_CURRENCY_BONUS": 29, + "LOOT_TYPE_FURNITURE_ESSENCE": 30 + } + }, + "m_itemID": { + "type": "gid", + "id": 1, + "offset": 88, + "flags": 33554463, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 569545460 + }, + "m_numItems": { + "type": "int", + "id": 2, + "offset": 96, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1588646284 + } + } + }, + "882279328": { + "name": "class ElixirBenefitBehaviorTemplate*", + "bases": [ + "ElixirBehaviorTemplate", + "TimedItemBehaviorTemplate", + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 882279328, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + }, + "m_expireTime": { + "type": "std::string", + "id": 1, + "offset": 128, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3122602039 + }, + "m_timerType": { + "type": "enum TimerType", + "id": 2, + "offset": 120, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 571744132, + "enum_options": { + "TimerType_Game": 0, + "TimerType_Calendar": 1 + } + }, + "m_typeList": { + "type": "std::string", + "id": 3, + "offset": 160, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2119049625 + }, + "m_equipParticle": { + "type": "std::string", + "id": 4, + "offset": 176, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2222557491 + }, + "m_unequipParticle": { + "type": "std::string", + "id": 5, + "offset": 208, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2215431638 + }, + "m_equipSound": { + "type": "std::string", + "id": 6, + "offset": 240, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2720016552 + }, + "m_unequipSound": { + "type": "std::string", + "id": 7, + "offset": 272, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1552545835 + }, + "m_equipActionList": { + "type": "class SharedPointer", + "id": 8, + "offset": 304, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1314016250 + }, + "m_unequipActionList": { + "type": "class SharedPointer", + "id": 9, + "offset": 320, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2143896925 + }, + "m_combatEnabled": { + "type": "bool", + "id": 10, + "offset": 336, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1399744148 + }, + "m_PvPEnabled": { + "type": "bool", + "id": 11, + "offset": 337, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1042852532 + }, + "m_classProjectName": { + "type": "std::string", + "id": 12, + "offset": 352, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1714146665 + } + } + }, + "1282294898": { + "name": "class MessageBoardMessage", + "bases": [ + "PropertyClass" + ], + "hash": 1282294898, + "properties": { + "m_playerGID": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 578537369 + }, + "m_messageBoardMessageType": { + "type": "int", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1435388398 + }, + "m_playerName": { + "type": "std::string", + "id": 2, + "offset": 88, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3407553929 + }, + "m_messageBoardActivityType": { + "type": "int", + "id": 3, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1226468534 + }, + "m_worldID": { + "type": "unsigned int", + "id": 4, + "offset": 124, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 397177058 + }, + "m_partyNameLocale": { + "type": "int", + "id": 5, + "offset": 128, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 104095035 + }, + "m_centralSeconds": { + "type": "unsigned int", + "id": 6, + "offset": 132, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1225584997 + }, + "m_removalTime": { + "type": "unsigned int", + "id": 7, + "offset": 136, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1506221490 + }, + "m_creationTime": { + "type": "unsigned int", + "id": 8, + "offset": 140, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2142268593 + }, + "m_playerResponses": { + "type": "gid", + "id": 9, + "offset": 144, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1006378727 + } + } + }, + "882273361": { + "name": "class SG_GameActionClient_DestroyBlock*", + "bases": [ + "SG_GameAction_DestroyBlock", + "SG_GameAction", + "PropertyClass" + ], + "hash": 882273361, + "properties": { + "m_target": { + "type": "enum SG_GameAction::SG_Target", + "id": 0, + "offset": 72, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1166870973, + "enum_options": { + "Target_Ball": 0, + "Target_Self": 1, + "Target_Connections": 2, + "__DEFAULT": "Target_Ball" + } + } + } + }, + "1721920878": { + "name": "class DoodleDoug", + "bases": [ + "PropertyClass" + ], + "hash": 1721920878, + "properties": {} + }, + "1282168016": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1282168016, + "properties": { + "m_name": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1717359772 + }, + "m_cursorState": { + "type": "enum CursorState", + "id": 1, + "offset": 104, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2665308791, + "enum_options": { + "CS_POINTER": 1, + "CS_MOVE": 2, + "CS_HARROW": 3, + "CS_VARROW": 4, + "CS_EDIT": 5, + "CS_SELECT": 6, + "CS_USER1": 7, + "CS_USER2": 8, + "CS_USER3": 9, + "CS_USER4": 10, + "CS_USER5": 11 + } + }, + "m_moveable": { + "type": "bool", + "id": 2, + "offset": 320, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1000738782 + }, + "m_softwareStyle": { + "type": "class SoftwareStyle", + "id": 3, + "offset": 112, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2133920820 + }, + "m_hardwareStyle": { + "type": "class HardwareStyle", + "id": 4, + "offset": 216, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1521077471 + } + } + }, + "434658633": { + "name": "enum RequestedSigilMode", + "bases": [], + "hash": 434658633, + "properties": {} + }, + "1721851566": { + "name": "class SharedPointer", + "bases": [ + "Requirement", + "PropertyClass" + ], + "hash": 1721851566, + "properties": { + "m_applyNOT": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1746328074, + "enum_options": { + "__DEFAULT": 0 + } + }, + "m_operator": { + "type": "enum Requirement::Operator", + "id": 1, + "offset": 76, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2672792317, + "enum_options": { + "ROP_AND": 0, + "ROP_OR": 1, + "__DEFAULT": "ROP_AND" + } + }, + "m_secondarySchool": { + "type": "std::string", + "id": 2, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1765721963 + } + } + }, + "1721692961": { + "name": "class SharedPointer", + "bases": [ + "ReqNumeric", + "Requirement", + "PropertyClass" + ], + "hash": 1721692961, + "properties": { + "m_applyNOT": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1746328074, + "enum_options": { + "__DEFAULT": 0 + } + }, + "m_operator": { + "type": "enum Requirement::Operator", + "id": 1, + "offset": 76, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2672792317, + "enum_options": { + "ROP_AND": 0, + "ROP_OR": 1, + "__DEFAULT": "ROP_AND" + } + }, + "m_numericValue": { + "type": "float", + "id": 2, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 521915239 + }, + "m_operatorType": { + "type": "enum ReqNumeric::OPERATOR_TYPE", + "id": 3, + "offset": 84, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2228122961, + "enum_options": { + "OPERATOR_UNKNOWN": 4294967295, + "OPERATOR_EQUALS": 0, + "OPERATOR_GREATER_THAN": 1, + "OPERATOR_LESS_THAN": 2, + "OPERATOR_GREATER_THAN_EQ": 3, + "OPERATOR_LESS_THAN_EQ": 4 + } + } + } + }, + "1282346871": { + "name": "class ClientDestroyShadowCreatureCinematicAction*", + "bases": [ + "DestroyShadowCreatureCinematicAction", + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 1282346871, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + } + } + }, + "436552184": { + "name": "class SharedPointer", + "bases": [ + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 436552184, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + } + } + }, + "886031561": { + "name": "class Reco::RecoItemData", + "bases": [ + "PropertyClass" + ], + "hash": 886031561, + "properties": { + "m_templateID": { + "type": "int", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1075344419 + }, + "m_rank": { + "type": "int", + "id": 1, + "offset": 76, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 219803942 + }, + "m_secondaryRank": { + "type": "int", + "id": 2, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2066929134 + } + } + }, + "435902045": { + "name": "class CastleGamesBehaviorTemplate*", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 435902045, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + } + } + }, + "884122233": { + "name": "class CombatGardeningXPEffect", + "bases": [ + "GameEffectBase", + "PropertyClass" + ], + "hash": 884122233, + "properties": { + "m_currentTickCount": { + "type": "double", + "id": 0, + "offset": 80, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2533274692 + }, + "m_effectNameID": { + "type": "unsigned int", + "id": 1, + "offset": 96, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1204067144 + }, + "m_bIsOnPet": { + "type": "bool", + "id": 2, + "offset": 73, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 522593303 + }, + "m_originatorID": { + "type": "gid", + "id": 3, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1131810019 + }, + "m_itemSlotID": { + "type": "unsigned int", + "id": 4, + "offset": 112, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1895747595 + }, + "m_internalID": { + "type": "int", + "id": 5, + "offset": 92, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1643137924 + }, + "m_endTime": { + "type": "unsigned int", + "id": 6, + "offset": 88, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 716479635 + }, + "m_xpPercent": { + "type": "int", + "id": 7, + "offset": 128, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 755316563 + } + } + }, + "1721860637": { + "name": "class CurrentQuestCompilation", + "bases": [ + "PropertyClass" + ], + "hash": 1721860637, + "properties": { + "m_questEntries": { + "type": "class QuestEntry*", + "id": 0, + "offset": 72, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1432837330 + } + } + }, + "435795926": { + "name": "class SortedPot", + "bases": [ + "PropertyClass" + ], + "hash": 435795926, + "properties": {} + }, + "883335801": { + "name": "class CombatGardeningXPEffect*", + "bases": [ + "GameEffectBase", + "PropertyClass" + ], + "hash": 883335801, + "properties": { + "m_currentTickCount": { + "type": "double", + "id": 0, + "offset": 80, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2533274692 + }, + "m_effectNameID": { + "type": "unsigned int", + "id": 1, + "offset": 96, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1204067144 + }, + "m_bIsOnPet": { + "type": "bool", + "id": 2, + "offset": 73, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 522593303 + }, + "m_originatorID": { + "type": "gid", + "id": 3, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1131810019 + }, + "m_itemSlotID": { + "type": "unsigned int", + "id": 4, + "offset": 112, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1895747595 + }, + "m_internalID": { + "type": "int", + "id": 5, + "offset": 92, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1643137924 + }, + "m_endTime": { + "type": "unsigned int", + "id": 6, + "offset": 88, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 716479635 + }, + "m_xpPercent": { + "type": "int", + "id": 7, + "offset": 128, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 755316563 + } + } + }, + "1283155156": { + "name": "class ManaLootInfo*", + "bases": [ + "LootInfo", + "LootInfoBase", + "PropertyClass" + ], + "hash": 1283155156, + "properties": { + "m_lootType": { + "type": "enum LootInfo::LOOT_TYPE", + "id": 0, + "offset": 72, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1591891442, + "enum_options": { + "LOOT_TYPE_NONE": 0, + "LOOT_TYPE_GOLD": 1, + "LOOT_TYPE_MANA": 2, + "LOOT_TYPE_ITEM": 3, + "LOOT_TYPE_TREASURE_CARD": 4, + "LOOT_TYPE_MAGIC_XP": 5, + "LOOT_TYPE_ADD_SPELL": 6, + "LOOT_TYPE_MAX_HEALTH": 7, + "LOOT_TYPE_MAX_GOLD": 8, + "LOOT_TYPE_MAX_MANA": 9, + "LOOT_TYPE_MAX_POTION": 10, + "LOOT_TYPE_TRAINING_POINTS": 11, + "LOOT_TYPE_RECIPE": 12, + "LOOT_TYPE_CRAFTING_SLOT": 13, + "LOOT_TYPE_REAGENT": 14, + "LOOT_TYPE_PETSNACK": 15, + "LOOT_TYPE_GARDENING_XP": 16, + "LOOT_TYPE_PET_XP": 17, + "LOOT_TYPE_TREASURE_TABLE": 18, + "LOOT_TYPE_ARENA_POINTS": 19, + "LOOT_TYPE_ARENA_BONUS_POINTS": 20, + "LOOT_TYPE_GROUP": 21, + "LOOT_TYPE_FISHING_XP": 22, + "LOOT_TYPE_EVENT_CURRENCY_1": 24, + "LOOT_TYPE_EVENT_CURRENCY_2": 25, + "LOOT_TYPE_PVP_CURRENCY": 26, + "LOOT_TYPE_PVP_CURRENCY_BONUS": 27, + "LOOT_TYPE_PVP_TOURNEY_CURRENCY": 28, + "LOOT_TYPE_PVP_TOURNEY_CURRENCY_BONUS": 29, + "LOOT_TYPE_FURNITURE_ESSENCE": 30 + } + }, + "m_manaAmount": { + "type": "int", + "id": 1, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1476254699 + } + } + }, + "435605336": { + "name": "class SharedPointer", + "bases": [ + "Window", + "PropertyClass" + ], + "hash": 435605336, + "properties": { + "m_sName": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306437263 + }, + "m_Children": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621225959 + }, + "m_Style": { + "type": "unsigned int", + "id": 2, + "offset": 152, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "SCALE_CHILDREN": 2, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "FOCUS_LOCKED": 64, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152 + } + }, + "m_Flags": { + "type": "unsigned int", + "id": 3, + "offset": 156, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } + }, + "m_Window": { + "type": "class Rect", + "id": 4, + "offset": 160, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3105139380 + }, + "m_fTargetAlpha": { + "type": "float", + "id": 5, + "offset": 212, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1809129834 + }, + "m_fDisabledAlpha": { + "type": "float", + "id": 6, + "offset": 216, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1389987675 + }, + "m_fAlpha": { + "type": "float", + "id": 7, + "offset": 208, + "flags": 65671, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 482130755 + }, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3623628394 + }, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2102211316 + }, + "m_sScript": { + "type": "std::string", + "id": 10, + "offset": 352, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1846695875 + }, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3389835433 + }, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547159940 + }, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513510520 + }, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3091503757 + } + } + }, + "882639137": { + "name": "class SharedPointer", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 882639137, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + } + } + }, + "1284229429": { + "name": "class SharedPointer", + "bases": [ + "SpellEffect", + "PropertyClass" + ], + "hash": 1284229429, + "properties": { + "m_effectType": { + "type": "enum SpellEffect::kSpellEffects", + "id": 0, + "offset": 72, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2578255295, + "enum_options": { + "kInvalidSpellEffect": 0, + "kDamage": 1, + "kDamageNoCrit": 2, + "kHeal": 3, + "kHealPercent": 4, + "kSetHealPercent": 113, + "kStealHealth": 5, + "kReduceOverTime": 6, + "kDetonateOverTime": 7, + "kPushCharm": 8, + "kStealCharm": 9, + "kPushWard": 10, + "kStealWard": 11, + "kPushOverTime": 12, + "kStealOverTime": 13, + "kRemoveCharm": 14, + "kRemoveWard": 15, + "kRemoveOverTime": 16, + "kRemoveAura": 17, + "kSwapAll": 18, + "kSwapCharm": 19, + "kSwapWard": 20, + "kSwapOverTime": 21, + "kModifyIncomingDamage": 22, + "kModifyIncomingDamageFlat": 119, + "kMaximumIncomingDamage": 23, + "kModifyIncomingHeal": 24, + "kModifyIncomingHealFlat": 118, + "kModifyIncomingDamageType": 25, + "kModifyIncomingArmorPiercing": 26, + "kModifyOutgoingDamage": 27, + "kModifyOutgoingDamageFlat": 121, + "kModifyOutgoingHeal": 28, + "kModifyOutgoingHealFlat": 120, + "kModifyOutgoingDamageType": 29, + "kModifyOutgoingArmorPiercing": 30, + "kModifyOutgoingStealHealth": 31, + "kModifyIncomingStealHealth": 32, + "kBounceNext": 33, + "kBouncePrevious": 34, + "kBounceBack": 35, + "kBounceAll": 36, + "kAbsorbDamage": 37, + "kAbsorbHeal": 38, + "kModifyAccuracy": 39, + "kDispel": 40, + "kConfusion": 41, + "kCloakedCharm": 42, + "kCloakedWard": 43, + "kStunResist": 44, + "kClue": 111, + "kPipConversion": 45, + "kCritBoost": 46, + "kCritBlock": 47, + "kPolymorph": 48, + "kDelayCast": 49, + "kModifyCardCloak": 50, + "kModifyCardDamage": 51, + "kModifyCardAccuracy": 53, + "kModifyCardMutation": 54, + "kModifyCardRank": 55, + "kModifyCardArmorPiercing": 56, + "kSummonCreature": 65, + "kTeleportPlayer": 66, + "kStun": 67, + "kDampen": 68, + "kReshuffle": 69, + "kMindControl": 70, + "kModifyPips": 71, + "kModifyPowerPips": 72, + "kModifyShadowPips": 73, + "kModifyHate": 74, + "kDamageOverTime": 75, + "kHealOverTime": 76, + "kModifyPowerPipChance": 77, + "kModifyRank": 78, + "kStunBlock": 79, + "kRevealCloak": 80, + "kInstantKill": 81, + "kAfterlife": 82, + "kDeferredDamage": 83, + "kDamagePerTotalPipPower": 84, + "kModifyCardHeal": 52, + "kModifyCardCharm": 57, + "kModifyCardWard": 58, + "kModifyCardOutgoingDamage": 59, + "kModifyCardOutgoingAccuracy": 60, + "kModifyCardOutgoingHeal": 61, + "kModifyCardOutgoingArmorPiercing": 62, + "kModifyCardIncomingDamage": 63, + "kModifyCardAbsorbDamage": 64, + "kCloakedWardNoRemove": 86, + "kAddCombatTriggerList": 87, + "kRemoveCombatTriggerList": 88, + "kBacklashDamage": 89, + "kModifyBacklash": 90, + "kIntercept": 91, + "kShadowSelf": 92, + "kShadowCreature": 93, + "kModifyShadowCreatureLevel": 94, + "kSelectShadowCreatureAttackTarget": 95, + "kShadowDecrementTurn": 96, + "kCritBoostSchoolSpecific": 97, + "kSpawnCreature": 98, + "kUnPolymorph": 99, + "kPowerPipConversion": 100, + "kProtectCardBeneficial": 101, + "kProtectCardHarmful": 102, + "kProtectBeneficial": 103, + "kProtectHarmful": 104, + "kDivideDamage": 105, + "kCollectEssence": 106, + "kKillCreature": 107, + "kDispelBlock": 108, + "kConfusionBlock": 109, + "kModifyPipRoundRate": 110, + "kMaxHealthDamage": 112, + "kUntargetable": 114, + "kMakeTargetable": 115, + "kForceTargetable": 116, + "kRemoveStunBlock": 117, + "kExitCombat": 122, + "kSuspendPips": 123, + "kResumePips": 124, + "kAutoPass": 125, + "kStopAutoPass": 126, + "kVanish": 127, + "kStopVanish": 128, + "kMaxHealthHeal": 129, + "kHealByWard": 130, + "kTaunt": 131, + "kPacify": 132, + "kRemoveTargetRestriction": 133, + "kConvertHangingEffect": 134, + "kAddSpellToDeck": 135, + "kAddSpellToHand": 136, + "kModifyIncomingDamageOverTime": 137, + "kModifyIncomingHealOverTime": 138, + "kModifyCardDamagebyRank": 139, + "kPushConvertedCharm": 140, + "kStealConvertedCharm": 141, + "kPushConvertedWard": 142, + "kStealConvertedWard": 143, + "kPushConvertedOverTime": 144, + "kStealConvertedOverTime": 145, + "kRemoveConvertedCharm": 146, + "kRemoveConvertedWard": 147, + "kRemoveConvertedOverTime": 148, + "kModifyOverTimeDuration": 149, + "kModifySchoolPips": 150 + } + }, + "m_effectParam": { + "type": "int", + "id": 1, + "offset": 76, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 357920024 + }, + "m_disposition": { + "type": "enum SpellEffect::kHangingDisposition", + "id": 2, + "offset": 80, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1904841031, + "enum_options": { + "kBoth": 0, + "kBeneficial": 1, + "kHarmful": 2 + } + }, + "m_sDamageType": { + "type": "std::string", + "id": 3, + "offset": 88, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2501054223 + }, + "m_damageType": { + "type": "unsigned int", + "id": 4, + "offset": 84, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 737882766 + }, + "m_pipNum": { + "type": "int", + "id": 5, + "offset": 128, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 830827539 + }, + "m_actNum": { + "type": "int", + "id": 6, + "offset": 132, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 236824866 + }, + "m_effectTarget": { + "type": "enum SpellEffect::kEffectTarget", + "id": 7, + "offset": 140, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2458940523, + "enum_options": { + "kInvalidTarget": 0, + "kSpell": 1, + "kSpecificSpells": 2, + "kGlobal": 3, + "kEnemyTeam": 4, + "kEnemyTeamAllAtOnce": 5, + "kFriendlyTeam": 6, + "kFriendlyTeamAllAtOnce": 7, + "kEnemySingle": 8, + "kFriendlySingle": 9, + "kMinion": 10, + "kFriendlyMinion": 17, + "kEnemyMinion": 18, + "kSelf": 11, + "kAtLeastOneEnemy": 13, + "kPreselectedEnemySingle": 12, + "kMultiTargetEnemy": 14, + "kMultiTargetFriendly": 15, + "kFriendlySingleNotMe": 16 + } + }, + "m_numRounds": { + "type": "int", + "id": 8, + "offset": 144, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1229753829 + }, + "m_paramPerRound": { + "type": "int", + "id": 9, + "offset": 148, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 683234234 + }, + "m_healModifier": { + "type": "float", + "id": 10, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1317921248, + "enum_options": { + "__DEFAULT": "1.0" + } + }, + "m_spellTemplateID": { + "type": "unsigned int", + "id": 11, + "offset": 120, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 585567702 + }, + "m_enchantmentSpellTemplateID": { + "type": "unsigned int", + "id": 12, + "offset": 124, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 246955115 + }, + "m_act": { + "type": "bool", + "id": 13, + "offset": 136, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 269510283 + }, + "m_cloaked": { + "type": "bool", + "id": 14, + "offset": 157, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 7349510 + }, + "m_bypassProtection": { + "type": "bool", + "id": 15, + "offset": 159, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1657138252 + }, + "m_armorPiercingParam": { + "type": "int", + "id": 16, + "offset": 160, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2025530205 + }, + "m_chancePerTarget": { + "type": "int", + "id": 17, + "offset": 164, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 845426794 + }, + "m_protected": { + "type": "bool", + "id": 18, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1445655037 + }, + "m_converted": { + "type": "bool", + "id": 19, + "offset": 169, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1590428797 + }, + "m_rank": { + "type": "int", + "id": 20, + "offset": 208, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 219803942 + }, + "m_effectList": { + "type": "class SharedPointer", + "id": 21, + "offset": 224, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 707154804 + } + } + }, + "1723171357": { + "name": "class CurrentQuestCompilation*", + "bases": [ + "PropertyClass" + ], + "hash": 1723171357, + "properties": { + "m_questEntries": { + "type": "class QuestEntry*", + "id": 0, + "offset": 72, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1432837330 + } + } + }, + "882974635": { + "name": "class SharedPointer", + "bases": [ + "Requirement", + "PropertyClass" + ], + "hash": 882974635, + "properties": { + "m_applyNOT": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1746328074, + "enum_options": { + "__DEFAULT": 0 + } + }, + "m_operator": { + "type": "enum Requirement::Operator", + "id": 1, + "offset": 76, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2672792317, + "enum_options": { + "ROP_AND": 0, + "ROP_OR": 1, + "__DEFAULT": "ROP_AND" + } + }, + "m_zoneName": { + "type": "std::string", + "id": 2, + "offset": 80, + "flags": 268435463, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2171167736, + "enum_options": { + "__BASECLASS": "ZoneData" + } + } + } + }, + "1722314094": { + "name": "class DoodleDoug*", + "bases": [ + "PropertyClass" + ], + "hash": 1722314094, + "properties": {} + }, + "435808214": { + "name": "class SortedPot*", + "bases": [ + "PropertyClass" + ], + "hash": 435808214, + "properties": {} + }, + "1289297476": { + "name": "class GroupObserver*", + "bases": [ + "PropertyClass" + ], + "hash": 1289297476, + "properties": {} + }, + "884070033": { + "name": "class FriendSymbolWindow*", + "bases": [ + "Window", + "PropertyClass" + ], + "hash": 884070033, + "properties": { + "m_sName": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306437263 + }, + "m_Children": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621225959 + }, + "m_Style": { + "type": "unsigned int", + "id": 2, + "offset": 152, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "SCALE_CHILDREN": 2, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "FOCUS_LOCKED": 64, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152 + } + }, + "m_Flags": { + "type": "unsigned int", + "id": 3, + "offset": 156, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } + }, + "m_Window": { + "type": "class Rect", + "id": 4, + "offset": 160, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3105139380 + }, + "m_fTargetAlpha": { + "type": "float", + "id": 5, + "offset": 212, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1809129834 + }, + "m_fDisabledAlpha": { + "type": "float", + "id": 6, + "offset": 216, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1389987675 + }, + "m_fAlpha": { + "type": "float", + "id": 7, + "offset": 208, + "flags": 65671, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 482130755 + }, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3623628394 + }, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2102211316 + }, + "m_sScript": { + "type": "std::string", + "id": 10, + "offset": 352, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1846695875 + }, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3389835433 + }, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547159940 + }, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513510520 + }, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3091503757 + } + } + }, + "1286901338": { + "name": "class SharedPointer", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1286901338, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_gardeningData": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2329363555 + } + } + }, + "1723455870": { + "name": "class ObstacleCourseModifyTimeBehaviorTemplate*", + "bases": [ + "ObstacleCourseObstaclePathBaseTemplate", + "ObstacleCourseObstacleBehaviorTemplate", + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 1723455870, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + }, + "m_rate": { + "type": "float", + "id": 1, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 310005283 + }, + "m_penaltyTime": { + "type": "float", + "id": 2, + "offset": 124, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2083389507 + }, + "m_totalObstacleSize": { + "type": "class Vector3D", + "id": 3, + "offset": 128, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2379878414 + }, + "m_bounds": { + "type": "class Vector3D", + "id": 4, + "offset": 152, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1948083181 + }, + "m_orientToPath": { + "type": "bool", + "id": 5, + "offset": 176, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 655036148 + }, + "m_heightUp": { + "type": "float", + "id": 6, + "offset": 140, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2208713013 + }, + "m_heightDown": { + "type": "float", + "id": 7, + "offset": 144, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 655333896 + }, + "m_timeModifier": { + "type": "int", + "id": 8, + "offset": 184, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 723546552 + }, + "m_effectApply": { + "type": "std::string", + "id": 9, + "offset": 192, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1838368078 + }, + "m_soundApply": { + "type": "std::string", + "id": 10, + "offset": 224, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3579526282 + }, + "m_effectDespawn": { + "type": "std::string", + "id": 11, + "offset": 256, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2174851674 + }, + "m_soundDespawn": { + "type": "std::string", + "id": 12, + "offset": 288, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2068074646 + } + } + }, + "435902237": { + "name": "class CastleGamesBehaviorTemplate", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 435902237, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + } + } + }, + "1285101143": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1285101143, + "properties": { + "m_madlibBlock": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2391615468 + }, + "m_index": { + "type": "unsigned int", + "id": 1, + "offset": 88, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1009433893 + } + } + }, + "1285004035": { + "name": "class InventoryBehaviorBase", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1285004035, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_itemList": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 27, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1983655699 + } + } + }, + "1723456510": { + "name": "class ObstacleCourseModifyTimeBehaviorTemplate", + "bases": [ + "ObstacleCourseObstaclePathBaseTemplate", + "ObstacleCourseObstacleBehaviorTemplate", + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 1723456510, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + }, + "m_rate": { + "type": "float", + "id": 1, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 310005283 + }, + "m_penaltyTime": { + "type": "float", + "id": 2, + "offset": 124, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2083389507 + }, + "m_totalObstacleSize": { + "type": "class Vector3D", + "id": 3, + "offset": 128, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2379878414 + }, + "m_bounds": { + "type": "class Vector3D", + "id": 4, + "offset": 152, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1948083181 + }, + "m_orientToPath": { + "type": "bool", + "id": 5, + "offset": 176, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 655036148 + }, + "m_heightUp": { + "type": "float", + "id": 6, + "offset": 140, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2208713013 + }, + "m_heightDown": { + "type": "float", + "id": 7, + "offset": 144, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 655333896 + }, + "m_timeModifier": { + "type": "int", + "id": 8, + "offset": 184, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 723546552 + }, + "m_effectApply": { + "type": "std::string", + "id": 9, + "offset": 192, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1838368078 + }, + "m_soundApply": { + "type": "std::string", + "id": 10, + "offset": 224, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3579526282 + }, + "m_effectDespawn": { + "type": "std::string", + "id": 11, + "offset": 256, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2174851674 + }, + "m_soundDespawn": { + "type": "std::string", + "id": 12, + "offset": 288, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2068074646 + } + } + }, + "884434168": { + "name": "class FishTournamentUpdate*", + "bases": [ + "PropertyClass" + ], + "hash": 884434168, + "properties": { + "m_numberOfEntries": { + "type": "int", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 315514866 + }, + "m_fishTemplateID": { + "type": "unsigned int", + "id": 1, + "offset": 76, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2050232416 + }, + "m_entryList": { + "type": "class SharedPointer", + "id": 2, + "offset": 80, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1434386087 + } + } + }, + "1284438851": { + "name": "class JewelShopOption*", + "bases": [ + "ServiceOptionBase", + "PropertyClass" + ], + "hash": 1284438851, + "properties": { + "m_serviceName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2206028813 + }, + "m_iconKey": { + "type": "std::string", + "id": 1, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2457138637 + }, + "m_displayKey": { + "type": "std::string", + "id": 2, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3023276954 + }, + "m_serviceIndex": { + "type": "unsigned int", + "id": 3, + "offset": 204, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2103126710 + }, + "m_forceInteract": { + "type": "bool", + "id": 4, + "offset": 200, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1705789564 + } + } + }, + "438645845": { + "name": "class HousingTextureBehavior", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 438645845, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + } + } + }, + "884434128": { + "name": "class FishTournamentUpdate", + "bases": [ + "PropertyClass" + ], + "hash": 884434128, + "properties": { + "m_numberOfEntries": { + "type": "int", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 315514866 + }, + "m_fishTemplateID": { + "type": "unsigned int", + "id": 1, + "offset": 76, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2050232416 + }, + "m_entryList": { + "type": "class SharedPointer", + "id": 2, + "offset": 80, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1434386087 + } + } + }, + "438569752": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 438569752, + "properties": { + "m_slot": { + "type": "short", + "id": 0, + "offset": 72, + "flags": 33554495, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 310478918 + }, + "m_emoteID": { + "type": "gid", + "id": 1, + "offset": 80, + "flags": 33554495, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 480114911 + } + } + }, + "884398419": { + "name": "class MadlibArgT*", + "bases": [ + "MadlibArg", + "PropertyClass" + ], + "hash": 884398419, + "properties": { + "m_madlibToken": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3058682373 + }, + "m_madlibArgument": { + "type": "double", + "id": 1, + "offset": 112, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2776302297 + } + } + }, + "1724966120": { + "name": "class ClientCreateAuraActorCinematicAction", + "bases": [ + "CreateAuraActorCinematicAction", + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 1724966120, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + }, + "m_newActorName": { + "type": "std::string", + "id": 2, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2029131039 + } + } + }, + "1285004803": { + "name": "class InventoryBehaviorBase*", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1285004803, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_itemList": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 27, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1983655699 + } + } + }, + "1724906854": { + "name": "class SharedPointer", + "bases": [ + "ActorDialogEntry", + "PropertyClass" + ], + "hash": 1724906854, + "properties": { + "m_requirements": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 263, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3043523229 + }, + "m_dialog": { + "type": "std::string", + "id": 1, + "offset": 88, + "flags": 8388639, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1858395851 + }, + "m_picture": { + "type": "std::string", + "id": 2, + "offset": 120, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3128322903 + }, + "m_soundFile": { + "type": "std::string", + "id": 3, + "offset": 152, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2276870852 + }, + "m_action": { + "type": "std::string", + "id": 4, + "offset": 184, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1734553689 + }, + "m_dialogEvent": { + "type": "std::string", + "id": 5, + "offset": 216, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2707957549 + }, + "m_actorTemplateID": { + "type": "unsigned int", + "id": 6, + "offset": 248, + "flags": 33554463, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2134265679 + }, + "m_cameraName": { + "type": "std::string", + "id": 7, + "offset": 256, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3252786917 + }, + "m_interpolationDuration": { + "type": "float", + "id": 8, + "offset": 312, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1458058437, + "enum_options": { + "__DEFAULT": "1.0" + } + }, + "m_cameraOffsetX": { + "type": "float", + "id": 9, + "offset": 288, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1515912895 + }, + "m_cameraOffsetY": { + "type": "float", + "id": 10, + "offset": 292, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1515912896 + }, + "m_cameraOffsetZ": { + "type": "float", + "id": 11, + "offset": 296, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1515912897 + }, + "m_pitch": { + "type": "float", + "id": 12, + "offset": 304, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 896371695 + }, + "m_yaw": { + "type": "float", + "id": 13, + "offset": 300, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 357256328 + }, + "m_roll": { + "type": "float", + "id": 14, + "offset": 308, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 310020272 + }, + "m_cameraShakeType": { + "type": "std::string", + "id": 15, + "offset": 320, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1754128882, + "enum_options": { + "": 0, + "Constant": "Constant", + "Quake": "Quake", + "Thud": "Thud", + "End": "End", + "__DEFAULT": 0 + } + }, + "m_cameraShakeDuration": { + "type": "float", + "id": 16, + "offset": 352, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 316581010, + "enum_options": { + "__DEFAULT": "0.0" + } + }, + "m_cameraShakeAmplitude": { + "type": "float", + "id": 17, + "offset": 356, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2179718321, + "enum_options": { + "__DEFAULT": "0.0" + } + }, + "m_bypassCameraOnReview": { + "type": "bool", + "id": 18, + "offset": 360, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1412905725, + "enum_options": { + "__DEFAULT": 1 + } + }, + "m_cameraZoneName": { + "type": "std::string", + "id": 19, + "offset": 368, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3131581121 + }, + "m_duration": { + "type": "float", + "id": 20, + "offset": 400, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 920323453 + }, + "m_delay": { + "type": "float", + "id": 21, + "offset": 404, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 881988134 + }, + "m_cameraHidePlayers": { + "type": "int", + "id": 22, + "offset": 408, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 28533149 + }, + "m_walkAwayNpcTemplateID": { + "type": "gid", + "id": 23, + "offset": 416, + "flags": 33554719, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 942697507 + }, + "m_walkAwayExitDirectionInDegrees": { + "type": "float", + "id": 24, + "offset": 424, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 396419785 + }, + "m_walkAwayFadeTime": { + "type": "float", + "id": 25, + "offset": 428, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 822405687 + }, + "m_walkAwayUseCurrentFacing": { + "type": "bool", + "id": 26, + "offset": 432, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1464855436 + }, + "m_standInPlayerTag": { + "type": "std::string", + "id": 27, + "offset": 440, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1590121141 + }, + "m_fadeOutCamera": { + "type": "bool", + "id": 28, + "offset": 472, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1766121252 + }, + "m_snapCameraToPlayerAtExit": { + "type": "bool", + "id": 29, + "offset": 473, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1323369645 + }, + "m_secondaryCameraName": { + "type": "std::string", + "id": 30, + "offset": 480, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1670705581 + }, + "m_secondaryInterpolationDuration": { + "type": "float", + "id": 31, + "offset": 512, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1873822349 + }, + "m_npcStandInList": { + "type": "std::string", + "id": 32, + "offset": 520, + "flags": 287, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2076308937 + }, + "m_dialogAnimationList": { + "type": "std::string", + "id": 33, + "offset": 536, + "flags": 287, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2444806919 + }, + "m_dialogTurningList": { + "type": "std::string", + "id": 34, + "offset": 552, + "flags": 287, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2782869422 + }, + "m_npcYawOffsetInDegrees": { + "type": "float", + "id": 35, + "offset": 568, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1395075270 + }, + "m_allowPlayerToMove": { + "type": "bool", + "id": 36, + "offset": 572, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 225101337 + }, + "m_soundEffectFile": { + "type": "std::string", + "id": 37, + "offset": 576, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3235157265 + }, + "m_musicFile": { + "type": "std::string", + "id": 38, + "offset": 608, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2963686620 + }, + "m_nonStackableMusic": { + "type": "bool", + "id": 39, + "offset": 640, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1675595625 + }, + "m_nonRepeatableMusic": { + "type": "bool", + "id": 40, + "offset": 641, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2138315572 + }, + "m_playMusicAtSFXVolume": { + "type": "bool", + "id": 41, + "offset": 642, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2130871816 + }, + "m_soundEffectDelay": { + "type": "float", + "id": 42, + "offset": 644, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1586382460 + }, + "m_musicDelay": { + "type": "float", + "id": 43, + "offset": 648, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1217785767 + }, + "m_musicFadeTime": { + "type": "float", + "id": 44, + "offset": 652, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 502925015 + }, + "m_dontReleaseCameraAtExit": { + "type": "bool", + "id": 45, + "offset": 474, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1107508961 + }, + "m_disableBackButton": { + "type": "bool", + "id": 46, + "offset": 656, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 122355444 + }, + "m_enableExitButton": { + "type": "bool", + "id": 47, + "offset": 657, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1824693936 + }, + "m_cameraFadeType": { + "type": "std::string", + "id": 48, + "offset": 664, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2021935382, + "enum_options": { + "": 0, + "In Out Black": "In Out Black", + "In Out White": "In Out White", + "In Black": "In Black", + "Out Black": "Out Black", + "In White": "In White", + "Out White": "Out White", + "__DEFAULT": 0 + } + }, + "m_cameraFadeTime": { + "type": "float", + "id": 49, + "offset": 696, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 614419391, + "enum_options": { + "__DEFAULT": "0.5" + } + }, + "m_idleAnimation": { + "type": "std::string", + "id": 50, + "offset": 704, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2900487193 + }, + "m_spamTime": { + "type": "float", + "id": 51, + "offset": 736, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1727215063, + "enum_options": { + "__DEFAULT": "1.0" + } + }, + "m_playSoundIfSpamming": { + "type": "bool", + "id": 52, + "offset": 740, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 690006749, + "enum_options": { + "__DEFAULT": 1 + } + }, + "m_playMusicIfSpamming": { + "type": "bool", + "id": 53, + "offset": 741, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 538564341, + "enum_options": { + "__DEFAULT": 1 + } + }, + "m_stopMusicFadeTime": { + "type": "float", + "id": 54, + "offset": 744, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 696390845, + "enum_options": { + "__DEFAULT": "0.0" + } + }, + "m_restartMusicFadeTime": { + "type": "float", + "id": 55, + "offset": 748, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 709379292, + "enum_options": { + "__DEFAULT": "0.0" + } + }, + "m_meetsRequirements": { + "type": "bool", + "id": 56, + "offset": 752, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 296443061 + }, + "m_secondaryCameraInitalDelay": { + "type": "float", + "id": 57, + "offset": 516, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1812842232 + }, + "m_displayButtonsOnTimedDialog": { + "type": "bool", + "id": 58, + "offset": 753, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 569741400 + } + } + }, + "439181304": { + "name": "class SharedPointer", + "bases": [ + "ChaseCamController", + "CameraController", + "PropertyClass" + ], + "hash": 439181304, + "properties": {} + }, + "438670421": { + "name": "class HousingTextureBehavior*", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 438670421, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + } + } + }, + "885087842": { + "name": "class SharedPointer", + "bases": [ + "GameEffectTemplate", + "PropertyClass" + ], + "hash": 885087842, + "properties": { + "m_effectName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2029161513 + }, + "m_effectCategory": { + "type": "std::string", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1852673222 + }, + "m_sortOrder": { + "type": "int", + "id": 2, + "offset": 148, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1411218206 + }, + "m_duration": { + "type": "double", + "id": 3, + "offset": 192, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2727932435 + }, + "m_stackingCategories": { + "type": "std::string", + "id": 4, + "offset": 160, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1774497525 + }, + "m_isPersistent": { + "type": "bool", + "id": 5, + "offset": 153, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 923861920 + }, + "m_bIsOnPet": { + "type": "bool", + "id": 6, + "offset": 154, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 522593303 + }, + "m_isPublic": { + "type": "bool", + "id": 7, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1728439822 + }, + "m_visualEffectAddName": { + "type": "std::string", + "id": 8, + "offset": 200, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3382086694 + }, + "m_visualEffectRemoveName": { + "type": "std::string", + "id": 9, + "offset": 232, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1541697323 + }, + "m_onAddFunctorName": { + "type": "std::string", + "id": 10, + "offset": 280, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1561843107 + }, + "m_onRemoveFunctorName": { + "type": "std::string", + "id": 11, + "offset": 312, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2559017864 + }, + "m_stackingRule": { + "type": "enum STACKING_RULE", + "id": 12, + "offset": 144, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 431568889, + "enum_options": { + "STACKING_ALLOWED": 0, + "STACKING_NOSTACK": 1, + "STACKING_REPLACE": 2 + } + }, + "m_spellName": { + "type": "std::string", + "id": 13, + "offset": 360, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2688485244 + } + } + }, + "1285544566": { + "name": "class WizZoneData", + "bases": [ + "ZoneData", + "PropertyClass" + ], + "hash": 1285544566, + "properties": { + "m_nType": { + "type": "enum ZoneData::Type", + "id": 0, + "offset": 72, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2656861130, + "enum_options": { + "ZONETYPE_INVALID": 4294967295, + "ZONETYPE_START": 0, + "ZONETYPE_STATIC": 1, + "ZONETYPE_DYNAMIC": 2 + } + }, + "m_zoneName": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 134217735, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2171167736 + }, + "m_zoneDisplayName": { + "type": "std::string", + "id": 2, + "offset": 112, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1962339438 + }, + "m_skyDomeName": { + "type": "std::string", + "id": 3, + "offset": 144, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2339979448 + }, + "m_skyLayerName": { + "type": "std::string", + "id": 4, + "offset": 184, + "flags": 131079, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2824410256 + }, + "m_collisionFileName": { + "type": "std::string", + "id": 5, + "offset": 208, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1725365192 + }, + "m_gamebryoSceneFileName": { + "type": "std::string", + "id": 6, + "offset": 240, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3084395168 + }, + "m_musicFileName": { + "type": "std::string", + "id": 7, + "offset": 272, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1817607805 + }, + "m_spawnList": { + "type": "class SpawnPointTemplate", + "id": 8, + "offset": 304, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1063041926 + }, + "m_teleportList": { + "type": "class TeleporterTemplate", + "id": 9, + "offset": 320, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1031682046 + }, + "m_locationList": { + "type": "class LocationTemplate", + "id": 10, + "offset": 336, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2114141903 + }, + "m_objectList": { + "type": "class SharedPointer", + "id": 11, + "offset": 352, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 882782852 + }, + "m_allEffects": { + "type": "std::string", + "id": 12, + "offset": 368, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2483362772 + }, + "m_healingPerMinute": { + "type": "int", + "id": 13, + "offset": 480, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 782115659 + }, + "m_playerPopThresh": { + "type": "int", + "id": 14, + "offset": 484, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1692004900 + }, + "m_nSoftLimit": { + "type": "int", + "id": 15, + "offset": 488, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1593689635, + "enum_options": { + "__DEFAULT": 50 + } + }, + "m_nHardLimit": { + "type": "int", + "id": 16, + "offset": 492, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1752405446, + "enum_options": { + "__DEFAULT": 100 + } + }, + "m_farClip": { + "type": "float", + "id": 17, + "offset": 496, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1393981304, + "enum_options": { + "__DEFAULT": 25000 + } + }, + "m_nearClipOverride": { + "type": "float", + "id": 18, + "offset": 500, + "flags": 519, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1092806405, + "enum_options": { + "__DEFAULT": 1 + } + }, + "m_defaultBackgroundColorRed": { + "type": "float", + "id": 19, + "offset": 504, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1511995894 + }, + "m_defaultBackgroundColorGreen": { + "type": "float", + "id": 20, + "offset": 508, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2127637260 + }, + "m_defaultBackgroundColorBlue": { + "type": "float", + "id": 21, + "offset": 512, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1908873795 + }, + "m_fogColorRed": { + "type": "int", + "id": 22, + "offset": 516, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1578810896 + }, + "m_fogColorGreen": { + "type": "int", + "id": 23, + "offset": 520, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1229332710 + }, + "m_fogColorBlue": { + "type": "int", + "id": 24, + "offset": 524, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 557754685 + }, + "m_fogDensity": { + "type": "float", + "id": 25, + "offset": 528, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1170901171 + }, + "m_fogStartDensity": { + "type": "float", + "id": 26, + "offset": 532, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1642636961 + }, + "m_fogEnabled": { + "type": "bool", + "id": 27, + "offset": 536, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 563358906 + }, + "m_nObjectID": { + "type": "unsigned int", + "id": 28, + "offset": 540, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 748496927 + }, + "m_bDisableTransitionAutoHide": { + "type": "bool", + "id": 29, + "offset": 544, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 702738663 + }, + "m_encounterNames": { + "type": "std::string", + "id": 30, + "offset": 384, + "flags": 268435463, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2150841410, + "enum_options": { + "__BASECLASS": "EncounterTemplate" + } + }, + "m_encounterGroup": { + "type": "std::string", + "id": 31, + "offset": 400, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2143153595 + }, + "m_zoneAdjectives": { + "type": "std::string", + "id": 32, + "offset": 432, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 3603923993 + }, + "m_zonePermissions": { + "type": "std::string", + "id": 33, + "offset": 464, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2928923475 + }, + "m_canPlaceTeleportMarker": { + "type": "bool", + "id": 34, + "offset": 545, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 600985755 + }, + "m_filterSetUID": { + "type": "unsigned int", + "id": 35, + "offset": 548, + "flags": 33554695, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1054674497 + }, + "m_conditionalSkyboxes": { + "type": "class SkyboxInfo", + "id": 36, + "offset": 552, + "flags": 263, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2512765286 + }, + "m_musicDelay": { + "type": "float", + "id": 37, + "offset": 568, + "flags": 263, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1217785767 + }, + "m_combatMusic": { + "type": "std::string", + "id": 38, + "offset": 576, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3636593682 + }, + "m_guiFile": { + "type": "std::string", + "id": 39, + "offset": 608, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2717603296 + }, + "m_bloomBrightnessThreshold": { + "type": "float", + "id": 40, + "offset": 640, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1052055702, + "enum_options": { + "__DEFAULT": "0.044892" + } + }, + "m_bloomScale": { + "type": "float", + "id": 41, + "offset": 644, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 955880152, + "enum_options": { + "__DEFAULT": "0.970443" + } + }, + "m_bloomCount": { + "type": "int", + "id": 42, + "offset": 648, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 847157372, + "enum_options": { + "__DEFAULT": 3 + } + }, + "m_noMounts": { + "type": "bool", + "id": 43, + "offset": 652, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1225032630 + }, + "m_a2wFog": { + "type": "bool", + "id": 44, + "offset": 653, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 181294809 + }, + "m_swimZone": { + "type": "bool", + "id": 45, + "offset": 654, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 255657967 + }, + "m_altMusicFile": { + "type": "class MusicFileInfo", + "id": 46, + "offset": 656, + "flags": 263, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2140137174 + } + } + }, + "1725394077": { + "name": "struct ControlList::Column", + "bases": [ + "PropertyClass" + ], + "hash": 1725394077, + "properties": { + "m_nWidth": { + "type": "int", + "id": 0, + "offset": 72, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 730982536 + }, + "m_Color": { + "type": "class Color", + "id": 1, + "offset": 76, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1753714077 + } + } + }, + "1285295741": { + "name": "class SharedPointer", + "bases": [ + "Result", + "PropertyClass" + ], + "hash": 1285295741, + "properties": { + "m_requirements": { + "type": "class RequirementList*", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2840985510 + }, + "m_results": { + "type": "class ResultList*", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3776744154 + } + } + }, + "1725212200": { + "name": "class FishTournamentEntry", + "bases": [ + "PropertyClass" + ], + "hash": 1725212200, + "properties": { + "m_characterGID": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 501688601 + }, + "m_fishSize": { + "type": "float", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1986368316 + }, + "m_packedName": { + "type": "std::string", + "id": 2, + "offset": 88, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1805208228 + } + } + }, + "439672919": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 439672919, + "properties": { + "m_optionList": { + "type": "class PremiumContentOption", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1394856917 + } + } + }, + "886975631": { + "name": "class ClientBuffDebuffEventCinematicAction*", + "bases": [ + "BuffDebuffEventCinematicAction", + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 886975631, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + } + } + }, + "886350767": { + "name": "class QuestEffect2", + "bases": [ + "ContainerEffect", + "GameEffectBase", + "PropertyClass" + ], + "hash": 886350767, + "properties": { + "m_currentTickCount": { + "type": "double", + "id": 0, + "offset": 80, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2533274692 + }, + "m_effectNameID": { + "type": "unsigned int", + "id": 1, + "offset": 96, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1204067144 + }, + "m_bIsOnPet": { + "type": "bool", + "id": 2, + "offset": 73, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 522593303 + }, + "m_originatorID": { + "type": "gid", + "id": 3, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1131810019 + }, + "m_itemSlotID": { + "type": "unsigned int", + "id": 4, + "offset": 112, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1895747595 + }, + "m_internalID": { + "type": "int", + "id": 5, + "offset": 92, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1643137924 + }, + "m_endTime": { + "type": "unsigned int", + "id": 6, + "offset": 88, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 716479635 + }, + "m_displayInfo": { + "type": "class SharedPointer", + "id": 7, + "offset": 128, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2998612909 + } + } + }, + "1285838309": { + "name": "class std::vector >", + "bases": [], + "hash": 1285838309, + "properties": {} + }, + "1731150736": { + "name": "class AddHangingEffectCinematicAction*", + "bases": [ + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 1731150736, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + }, + "m_effect": { + "type": "std::string", + "id": 2, + "offset": 120, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1894145160 + }, + "m_revealsCloaked": { + "type": "bool", + "id": 3, + "offset": 156, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1618772408 + } + } + }, + "447545799": { + "name": "class SharedPointer", + "bases": [ + "CinematicAction", + "PropertyClass" + ], + "hash": 447545799, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_sound": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 131079, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2307644996 + }, + "m_useClientLocation": { + "type": "bool", + "id": 2, + "offset": 100, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 98585784 + }, + "m_soundType": { + "type": "enum PlaySoundCinematicAction::SoundType", + "id": 3, + "offset": 96, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 868075053, + "enum_options": { + "kSigil": 0, + "kGotHit": 1, + "kDeath": 2, + "kChatter": 4, + "__DEFAULT": "kSigil" + } + }, + "m_streamSound": { + "type": "bool", + "id": 4, + "offset": 101, + "flags": 263, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1693179368 + }, + "m_playMusic": { + "type": "bool", + "id": 5, + "offset": 102, + "flags": 263, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 552729674 + }, + "m_fadeDuration": { + "type": "float", + "id": 6, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1402536557 + } + } + }, + "1729147122": { + "name": "class ClientFaceTargetTeamActorCinematicAction*", + "bases": [ + "FaceTargetTeamActorCinematicAction", + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 1729147122, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + }, + "m_bCaster": { + "type": "bool", + "id": 2, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1390351511 + } + } + }, + "442107707": { + "name": "class InfractionPenaltyInfo", + "bases": [ + "PropertyClass" + ], + "hash": 442107707, + "properties": { + "m_addAtPointValue": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1071217084 + }, + "m_removeAtPointValue": { + "type": "float", + "id": 1, + "offset": 76, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2112196961 + }, + "m_lifespan": { + "type": "std::string", + "id": 2, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3042809453 + } + } + }, + "888093071": { + "name": "class std::list >", + "bases": [], + "hash": 888093071, + "properties": {} + }, + "1287907351": { + "name": "class ClientWizEquipmentBehavior", + "bases": [ + "ClientEquipmentBehavior", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1287907351, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_itemList": { + "type": "class SharedPointer", + "id": 1, + "offset": 120, + "flags": 27, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1983655699 + }, + "m_slotList": { + "type": "class SharedPointer", + "id": 2, + "offset": 136, + "flags": 27, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 3213026923 + }, + "m_publicItemList": { + "type": "class SharedPointer", + "id": 3, + "offset": 152, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1693467991 + }, + "m_equipmentSets": { + "type": "class SharedPointer", + "id": 4, + "offset": 232, + "flags": 27, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1904799695 + } + } + }, + "1728425731": { + "name": "class SharedPointer", + "bases": [ + "DerbyEffect", + "PropertyClass" + ], + "hash": 1728425731, + "properties": { + "m_buffType": { + "type": "enum DerbyTalentBuffType", + "id": 0, + "offset": 92, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1149251982, + "enum_options": { + "Buff": 0, + "Debuff": 1, + "Neither": 2 + } + }, + "m_kTarget": { + "type": "enum DerbyTargetType", + "id": 1, + "offset": 96, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1807803351, + "enum_options": { + "kTargetInFront": 0, + "kTargetBehind": 1, + "kTargetFirst": 2, + "kTargetSelf": 3, + "kTargetAll": 4, + "kTargetLast": 5 + } + }, + "m_nDuration": { + "type": "int", + "id": 2, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1110167982 + }, + "m_effectID": { + "type": "unsigned int", + "id": 3, + "offset": 88, + "flags": 24, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2347630439 + }, + "m_imageFilename": { + "type": "std::string", + "id": 4, + "offset": 112, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2813328063 + }, + "m_iconIndex": { + "type": "unsigned int", + "id": 5, + "offset": 144, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1265133262 + }, + "m_soundOnActivate": { + "type": "std::string", + "id": 6, + "offset": 152, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1956929714 + }, + "m_soundOnTarget": { + "type": "std::string", + "id": 7, + "offset": 184, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3444214056 + }, + "m_targetParticleEffect": { + "type": "std::string", + "id": 8, + "offset": 216, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3048234723 + }, + "m_overheadMessage": { + "type": "std::string", + "id": 9, + "offset": 248, + "flags": 8388639, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1701018190 + }, + "m_requirements": { + "type": "class RequirementList", + "id": 10, + "offset": 280, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2840988582 + }, + "m_mods": { + "type": "class PetStatModificationSet", + "id": 11, + "offset": 376, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 686212266 + } + } + }, + "441484672": { + "name": "class SharedPointer", + "bases": [ + "ServiceOptionBase", + "PropertyClass" + ], + "hash": 441484672, + "properties": { + "m_serviceName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2206028813 + }, + "m_iconKey": { + "type": "std::string", + "id": 1, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2457138637 + }, + "m_displayKey": { + "type": "std::string", + "id": 2, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3023276954 + }, + "m_serviceIndex": { + "type": "unsigned int", + "id": 3, + "offset": 204, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2103126710 + }, + "m_forceInteract": { + "type": "bool", + "id": 4, + "offset": 200, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1705789564 + } + } + }, + "887650074": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 887650074, + "properties": { + "m_questName": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1702112846 + }, + "m_questNameID": { + "type": "unsigned int", + "id": 1, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1530354349 + }, + "m_goalEntries": { + "type": "class GoalEntryFull*", + "id": 2, + "offset": 232, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 3351009655 + } + } + }, + "1286983866": { + "name": "class DdBonusWinAnim*", + "bases": [ + "WinAnimConcurrent", + "WinAnimContainer", + "WindowAnimation", + "PropertyClass" + ], + "hash": 1286983866, + "properties": { + "m_bUseDeepCopy": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 433380635 + }, + "m_winAnimList": { + "type": "class SharedPointer", + "id": 1, + "offset": 80, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1941062728 + }, + "m_bLooping": { + "type": "bool", + "id": 2, + "offset": 104, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2131020845 + }, + "m_finishedAnimList": { + "type": "class SharedPointer", + "id": 3, + "offset": 112, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 3066650884 + } + } + }, + "1727587560": { + "name": "class ClientCreateAuraActorCinematicAction*", + "bases": [ + "CreateAuraActorCinematicAction", + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 1727587560, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + }, + "m_newActorName": { + "type": "std::string", + "id": 2, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2029131039 + } + } + }, + "440455020": { + "name": "class SharedPointer", + "bases": [ + "CameraController", + "PropertyClass" + ], + "hash": 440455020, + "properties": {} + }, + "1286983706": { + "name": "class DdBonusWinAnim", + "bases": [ + "WinAnimConcurrent", + "WinAnimContainer", + "WindowAnimation", + "PropertyClass" + ], + "hash": 1286983706, + "properties": { + "m_bUseDeepCopy": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 433380635 + }, + "m_winAnimList": { + "type": "class SharedPointer", + "id": 1, + "offset": 80, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1941062728 + }, + "m_bLooping": { + "type": "bool", + "id": 2, + "offset": 104, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2131020845 + }, + "m_finishedAnimList": { + "type": "class SharedPointer", + "id": 3, + "offset": 112, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 3066650884 + } + } + }, + "1725806376": { + "name": "class SharedPointer", + "bases": [ + "Window", + "PropertyClass" + ], + "hash": 1725806376, + "properties": { + "m_sName": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306437263 + }, + "m_Children": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621225959 + }, + "m_Style": { + "type": "unsigned int", + "id": 2, + "offset": 152, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "SCALE_CHILDREN": 2, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "FOCUS_LOCKED": 64, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152 + } + }, + "m_Flags": { + "type": "unsigned int", + "id": 3, + "offset": 156, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } + }, + "m_Window": { + "type": "class Rect", + "id": 4, + "offset": 160, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3105139380 + }, + "m_fTargetAlpha": { + "type": "float", + "id": 5, + "offset": 212, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1809129834 + }, + "m_fDisabledAlpha": { + "type": "float", + "id": 6, + "offset": 216, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1389987675 + }, + "m_fAlpha": { + "type": "float", + "id": 7, + "offset": 208, + "flags": 65671, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 482130755 + }, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3623628394 + }, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2102211316 + }, + "m_sScript": { + "type": "std::string", + "id": 10, + "offset": 352, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1846695875 + }, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3389835433 + }, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547159940 + }, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513510520 + }, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3091503757 + } + } + }, + "441133424": { + "name": "class WizCinematicActorTemplate*", + "bases": [ + "CinematicActorTemplate", + "CinematicDefTemplate", + "CoreTemplate", + "PropertyClass" + ], + "hash": 441133424, + "properties": { + "m_behaviors": { + "type": "class BehaviorTemplate*", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1197808594 + }, + "m_nifFile": { + "type": "std::string", + "id": 1, + "offset": 136, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2694762008 + }, + "m_delay": { + "type": "double", + "id": 2, + "offset": 168, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2689597116 + }, + "m_cinematicName": { + "type": "std::string", + "id": 3, + "offset": 96, + "flags": 134217735, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2611527497 + }, + "m_completeEvents": { + "type": "class CinematicEventInfo*", + "id": 4, + "offset": 272, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2945338320 + }, + "m_stateChangeEvents": { + "type": "class CinematicEventInfo*", + "id": 5, + "offset": 304, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1874505374 + }, + "m_stateInteractions": { + "type": "class CinematicInteractInfo*", + "id": 6, + "offset": 336, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1949887389 + }, + "m_targetGameState": { + "type": "std::string", + "id": 7, + "offset": 176, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3607550909 + }, + "m_actorStateSet": { + "type": "std::string", + "id": 8, + "offset": 208, + "flags": 268435463, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1765258049, + "enum_options": { + "__BASECLASS": "ObjStateSet" + } + }, + "m_rootAsset": { + "type": "std::string", + "id": 9, + "offset": 240, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3506101791 + }, + "m_dialogList": { + "type": "class ActorDialogList*", + "id": 10, + "offset": 368, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2035504282 + } + } + }, + "889590999": { + "name": "class SharedPointer", + "bases": [ + "RequirementFailNotification", + "ServiceOptionBase", + "PropertyClass" + ], + "hash": 889590999, + "properties": { + "m_serviceName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2206028813 + }, + "m_iconKey": { + "type": "std::string", + "id": 1, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2457138637 + }, + "m_displayKey": { + "type": "std::string", + "id": 2, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3023276954 + }, + "m_serviceIndex": { + "type": "unsigned int", + "id": 3, + "offset": 204, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2103126710 + }, + "m_forceInteract": { + "type": "bool", + "id": 4, + "offset": 200, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1705789564 + }, + "m_failureMessage": { + "type": "std::string", + "id": 5, + "offset": 224, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1882376712 + } + } + }, + "1287104803": { + "name": "struct std::pair,class std::allocator >,int>", + "bases": [], + "hash": 1287104803, + "properties": {} + }, + "888509876": { + "name": "enum AccousticSignature", + "bases": [], + "hash": 888509876, + "properties": {} + }, + "1728604949": { + "name": "class SharedPointer", + "bases": [ + "GameEffectTemplate", + "PropertyClass" + ], + "hash": 1728604949, + "properties": { + "m_effectName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2029161513 + }, + "m_effectCategory": { + "type": "std::string", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1852673222 + }, + "m_sortOrder": { + "type": "int", + "id": 2, + "offset": 148, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1411218206 + }, + "m_duration": { + "type": "double", + "id": 3, + "offset": 192, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2727932435 + }, + "m_stackingCategories": { + "type": "std::string", + "id": 4, + "offset": 160, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1774497525 + }, + "m_isPersistent": { + "type": "bool", + "id": 5, + "offset": 153, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 923861920 + }, + "m_bIsOnPet": { + "type": "bool", + "id": 6, + "offset": 154, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 522593303 + }, + "m_isPublic": { + "type": "bool", + "id": 7, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1728439822 + }, + "m_visualEffectAddName": { + "type": "std::string", + "id": 8, + "offset": 200, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3382086694 + }, + "m_visualEffectRemoveName": { + "type": "std::string", + "id": 9, + "offset": 232, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1541697323 + }, + "m_onAddFunctorName": { + "type": "std::string", + "id": 10, + "offset": 280, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1561843107 + }, + "m_onRemoveFunctorName": { + "type": "std::string", + "id": 11, + "offset": 312, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2559017864 + }, + "m_stackingRule": { + "type": "enum STACKING_RULE", + "id": 12, + "offset": 144, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 431568889, + "enum_options": { + "STACKING_ALLOWED": 0, + "STACKING_NOSTACK": 1, + "STACKING_REPLACE": 2 + } + }, + "m_pulsePeriod": { + "type": "double", + "id": 13, + "offset": 360, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3960618585 + }, + "m_pulseEventName": { + "type": "std::string", + "id": 14, + "offset": 368, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1858926599 + } + } + }, + "442106427": { + "name": "class InfractionPenaltyInfo*", + "bases": [ + "PropertyClass" + ], + "hash": 442106427, + "properties": { + "m_addAtPointValue": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1071217084 + }, + "m_removeAtPointValue": { + "type": "float", + "id": 1, + "offset": 76, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2112196961 + }, + "m_lifespan": { + "type": "std::string", + "id": 2, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3042809453 + } + } + }, + "888229093": { + "name": "class SeedBehaviorTemplate", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 888229093, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + }, + "m_initialRandom": { + "type": "bool", + "id": 1, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1171693694, + "enum_options": { + "__DEFAULT": 1 + } + }, + "m_turnRandom": { + "type": "bool", + "id": 2, + "offset": 121, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1320199517, + "enum_options": { + "__DEFAULT": 1 + } + }, + "m_trackPlayer": { + "type": "bool", + "id": 3, + "offset": 122, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 222941845, + "enum_options": { + "__DEFAULT": 1 + } + }, + "m_shy": { + "type": "bool", + "id": 4, + "offset": 123, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 269530055 + }, + "m_speed": { + "type": "float", + "id": 5, + "offset": 124, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 900164744, + "enum_options": { + "__DEFAULT": "400.0" + } + }, + "m_nextStageTemplateID": { + "type": "unsigned int", + "id": 6, + "offset": 128, + "flags": 33554439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 953331817 + }, + "m_nextStageRate": { + "type": "std::string", + "id": 7, + "offset": 136, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2891393594 + }, + "m_needsWaterMinRate": { + "type": "std::string", + "id": 8, + "offset": 168, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2764655453 + }, + "m_needsSunMinRate": { + "type": "std::string", + "id": 9, + "offset": 232, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1962535184 + }, + "m_needsPollinationMinRate": { + "type": "std::string", + "id": 10, + "offset": 296, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1849944227 + }, + "m_needsWaterMaxRate": { + "type": "std::string", + "id": 11, + "offset": 200, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2463431519 + }, + "m_needsSunMaxRate": { + "type": "std::string", + "id": 12, + "offset": 264, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1661311250 + }, + "m_needsPollinationMaxRate": { + "type": "std::string", + "id": 13, + "offset": 328, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1548720293 + }, + "m_needsMagicMinRate": { + "type": "std::string", + "id": 14, + "offset": 360, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2161414587 + }, + "m_needsMagicMaxRate": { + "type": "std::string", + "id": 15, + "offset": 392, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1860190653 + }, + "m_needsMusicMinRate": { + "type": "std::string", + "id": 16, + "offset": 424, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2626783323 + }, + "m_needsMusicMaxRate": { + "type": "std::string", + "id": 17, + "offset": 456, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2325559389 + }, + "m_plantStage": { + "type": "enum PlantStage", + "id": 18, + "offset": 488, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2664847960, + "enum_options": { + "PS_Seedling": 0, + "PS_Young": 1, + "PS_Mature": 2, + "PS_Angel": 3, + "PS_Wilting": 4, + "PS_Dead": 5 + } + }, + "m_wiltTemplateID": { + "type": "unsigned int", + "id": 19, + "offset": 492, + "flags": 33554439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1395185014 + }, + "m_deadTemplateID": { + "type": "unsigned int", + "id": 20, + "offset": 496, + "flags": 33554439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1067979076 + }, + "m_youngTemplateID": { + "type": "unsigned int", + "id": 21, + "offset": 500, + "flags": 33554439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2019241800 + }, + "m_needsWaterWiltRate": { + "type": "std::string", + "id": 22, + "offset": 512, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3446381113 + }, + "m_needsSunWiltRate": { + "type": "std::string", + "id": 23, + "offset": 544, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2746216012 + }, + "m_needsPollinationWiltRate": { + "type": "std::string", + "id": 24, + "offset": 576, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3325681727 + }, + "m_needsMagicWiltRate": { + "type": "std::string", + "id": 25, + "offset": 608, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2866785367 + }, + "m_needsMusicWiltRate": { + "type": "std::string", + "id": 26, + "offset": 640, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3191568119 + }, + "m_harvestMinRate": { + "type": "std::string", + "id": 27, + "offset": 672, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1769440136 + }, + "m_harvestMaxRate": { + "type": "std::string", + "id": 28, + "offset": 704, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3615699850 + }, + "m_pestList": { + "type": "class PestEntry", + "id": 29, + "offset": 736, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 3674788815 + }, + "m_pestUpdateRate": { + "type": "std::string", + "id": 30, + "offset": 760, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1636194246 + }, + "m_requiresEnchantedSoil": { + "type": "bool", + "id": 31, + "offset": 792, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1443901316 + }, + "m_rewardsRating": { + "type": "int", + "id": 32, + "offset": 796, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1304655351 + }, + "m_challengeRating": { + "type": "int", + "id": 33, + "offset": 800, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 310016034 + }, + "m_harvestXP": { + "type": "int", + "id": 34, + "offset": 804, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1835284159 + }, + "m_requiresEnrichedSoil": { + "type": "bool", + "id": 35, + "offset": 793, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 69513596 + }, + "m_fidgetDuringHappy": { + "type": "bool", + "id": 36, + "offset": 808, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 302222161 + }, + "m_fidgetSoundEffectName": { + "type": "std::string", + "id": 37, + "offset": 816, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2949012741 + }, + "m_fidgetSoundEffectGain": { + "type": "float", + "id": 38, + "offset": 848, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1541262591, + "enum_options": { + "__DEFAULT": "1.0" + } + }, + "m_angelEffectTemplateID": { + "type": "unsigned int", + "id": 39, + "offset": 852, + "flags": 33554439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 907020010 + }, + "m_seedSize": { + "type": "enum SeedSize", + "id": 40, + "offset": 856, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1971854021, + "enum_options": { + "SS_Small": 0, + "SS_Medium": 1, + "SS_Large": 2, + "__DEFAULT": "SS_Medium" + } + }, + "m_seedLimit": { + "type": "int", + "id": 41, + "offset": 860, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 189298778 + }, + "m_gardeningLevelRequirement": { + "type": "int", + "id": 42, + "offset": 864, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 52309522 + }, + "m_maximumNumberOfHarvests": { + "type": "unsigned int", + "id": 43, + "offset": 896, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1889816953 + }, + "m_likesDislikesList": { + "type": "class LikesDislikesEntry", + "id": 44, + "offset": 872, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2284921934 + }, + "m_matureTemplateID": { + "type": "unsigned int", + "id": 45, + "offset": 504, + "flags": 33554439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1960067908 + }, + "m_plantRank": { + "type": "int", + "id": 46, + "offset": 900, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 164732869 + } + } + }, + "1728494489": { + "name": "class SharedPointer", + "bases": [ + "GameEffectTemplate", + "PropertyClass" + ], + "hash": 1728494489, + "properties": { + "m_effectName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2029161513 + }, + "m_effectCategory": { + "type": "std::string", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1852673222 + }, + "m_sortOrder": { + "type": "int", + "id": 2, + "offset": 148, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1411218206 + }, + "m_duration": { + "type": "double", + "id": 3, + "offset": 192, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2727932435 + }, + "m_stackingCategories": { + "type": "std::string", + "id": 4, + "offset": 160, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1774497525 + }, + "m_isPersistent": { + "type": "bool", + "id": 5, + "offset": 153, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 923861920 + }, + "m_bIsOnPet": { + "type": "bool", + "id": 6, + "offset": 154, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 522593303 + }, + "m_isPublic": { + "type": "bool", + "id": 7, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1728439822 + }, + "m_visualEffectAddName": { + "type": "std::string", + "id": 8, + "offset": 200, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3382086694 + }, + "m_visualEffectRemoveName": { + "type": "std::string", + "id": 9, + "offset": 232, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1541697323 + }, + "m_onAddFunctorName": { + "type": "std::string", + "id": 10, + "offset": 280, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1561843107 + }, + "m_onRemoveFunctorName": { + "type": "std::string", + "id": 11, + "offset": 312, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2559017864 + }, + "m_stackingRule": { + "type": "enum STACKING_RULE", + "id": 12, + "offset": 144, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 431568889, + "enum_options": { + "STACKING_ALLOWED": 0, + "STACKING_NOSTACK": 1, + "STACKING_REPLACE": 2 + } + }, + "m_state": { + "type": "std::string", + "id": 13, + "offset": 360, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2307803100 + }, + "m_animation": { + "type": "std::string", + "id": 14, + "offset": 392, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3431428731 + }, + "m_override": { + "type": "bool", + "id": 15, + "offset": 424, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 139353587 + } + } + }, + "888229069": { + "name": "class SeedBehaviorTemplate*", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 888229069, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + }, + "m_initialRandom": { + "type": "bool", + "id": 1, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1171693694, + "enum_options": { + "__DEFAULT": 1 + } + }, + "m_turnRandom": { + "type": "bool", + "id": 2, + "offset": 121, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1320199517, + "enum_options": { + "__DEFAULT": 1 + } + }, + "m_trackPlayer": { + "type": "bool", + "id": 3, + "offset": 122, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 222941845, + "enum_options": { + "__DEFAULT": 1 + } + }, + "m_shy": { + "type": "bool", + "id": 4, + "offset": 123, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 269530055 + }, + "m_speed": { + "type": "float", + "id": 5, + "offset": 124, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 900164744, + "enum_options": { + "__DEFAULT": "400.0" + } + }, + "m_nextStageTemplateID": { + "type": "unsigned int", + "id": 6, + "offset": 128, + "flags": 33554439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 953331817 + }, + "m_nextStageRate": { + "type": "std::string", + "id": 7, + "offset": 136, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2891393594 + }, + "m_needsWaterMinRate": { + "type": "std::string", + "id": 8, + "offset": 168, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2764655453 + }, + "m_needsSunMinRate": { + "type": "std::string", + "id": 9, + "offset": 232, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1962535184 + }, + "m_needsPollinationMinRate": { + "type": "std::string", + "id": 10, + "offset": 296, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1849944227 + }, + "m_needsWaterMaxRate": { + "type": "std::string", + "id": 11, + "offset": 200, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2463431519 + }, + "m_needsSunMaxRate": { + "type": "std::string", + "id": 12, + "offset": 264, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1661311250 + }, + "m_needsPollinationMaxRate": { + "type": "std::string", + "id": 13, + "offset": 328, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1548720293 + }, + "m_needsMagicMinRate": { + "type": "std::string", + "id": 14, + "offset": 360, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2161414587 + }, + "m_needsMagicMaxRate": { + "type": "std::string", + "id": 15, + "offset": 392, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1860190653 + }, + "m_needsMusicMinRate": { + "type": "std::string", + "id": 16, + "offset": 424, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2626783323 + }, + "m_needsMusicMaxRate": { + "type": "std::string", + "id": 17, + "offset": 456, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2325559389 + }, + "m_plantStage": { + "type": "enum PlantStage", + "id": 18, + "offset": 488, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2664847960, + "enum_options": { + "PS_Seedling": 0, + "PS_Young": 1, + "PS_Mature": 2, + "PS_Angel": 3, + "PS_Wilting": 4, + "PS_Dead": 5 + } + }, + "m_wiltTemplateID": { + "type": "unsigned int", + "id": 19, + "offset": 492, + "flags": 33554439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1395185014 + }, + "m_deadTemplateID": { + "type": "unsigned int", + "id": 20, + "offset": 496, + "flags": 33554439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1067979076 + }, + "m_youngTemplateID": { + "type": "unsigned int", + "id": 21, + "offset": 500, + "flags": 33554439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2019241800 + }, + "m_needsWaterWiltRate": { + "type": "std::string", + "id": 22, + "offset": 512, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3446381113 + }, + "m_needsSunWiltRate": { + "type": "std::string", + "id": 23, + "offset": 544, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2746216012 + }, + "m_needsPollinationWiltRate": { + "type": "std::string", + "id": 24, + "offset": 576, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3325681727 + }, + "m_needsMagicWiltRate": { + "type": "std::string", + "id": 25, + "offset": 608, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2866785367 + }, + "m_needsMusicWiltRate": { + "type": "std::string", + "id": 26, + "offset": 640, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3191568119 + }, + "m_harvestMinRate": { + "type": "std::string", + "id": 27, + "offset": 672, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1769440136 + }, + "m_harvestMaxRate": { + "type": "std::string", + "id": 28, + "offset": 704, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3615699850 + }, + "m_pestList": { + "type": "class PestEntry", + "id": 29, + "offset": 736, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 3674788815 + }, + "m_pestUpdateRate": { + "type": "std::string", + "id": 30, + "offset": 760, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1636194246 + }, + "m_requiresEnchantedSoil": { + "type": "bool", + "id": 31, + "offset": 792, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1443901316 + }, + "m_rewardsRating": { + "type": "int", + "id": 32, + "offset": 796, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1304655351 + }, + "m_challengeRating": { + "type": "int", + "id": 33, + "offset": 800, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 310016034 + }, + "m_harvestXP": { + "type": "int", + "id": 34, + "offset": 804, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1835284159 + }, + "m_requiresEnrichedSoil": { + "type": "bool", + "id": 35, + "offset": 793, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 69513596 + }, + "m_fidgetDuringHappy": { + "type": "bool", + "id": 36, + "offset": 808, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 302222161 + }, + "m_fidgetSoundEffectName": { + "type": "std::string", + "id": 37, + "offset": 816, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2949012741 + }, + "m_fidgetSoundEffectGain": { + "type": "float", + "id": 38, + "offset": 848, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1541262591, + "enum_options": { + "__DEFAULT": "1.0" + } + }, + "m_angelEffectTemplateID": { + "type": "unsigned int", + "id": 39, + "offset": 852, + "flags": 33554439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 907020010 + }, + "m_seedSize": { + "type": "enum SeedSize", + "id": 40, + "offset": 856, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1971854021, + "enum_options": { + "SS_Small": 0, + "SS_Medium": 1, + "SS_Large": 2, + "__DEFAULT": "SS_Medium" + } + }, + "m_seedLimit": { + "type": "int", + "id": 41, + "offset": 860, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 189298778 + }, + "m_gardeningLevelRequirement": { + "type": "int", + "id": 42, + "offset": 864, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 52309522 + }, + "m_maximumNumberOfHarvests": { + "type": "unsigned int", + "id": 43, + "offset": 896, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1889816953 + }, + "m_likesDislikesList": { + "type": "class LikesDislikesEntry", + "id": 44, + "offset": 872, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2284921934 + }, + "m_matureTemplateID": { + "type": "unsigned int", + "id": 45, + "offset": 504, + "flags": 33554439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1960067908 + }, + "m_plantRank": { + "type": "int", + "id": 46, + "offset": 900, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 164732869 + } + } + }, + "1287907357": { + "name": "class ClientWizEquipmentBehavior*", + "bases": [ + "ClientEquipmentBehavior", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1287907357, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_itemList": { + "type": "class SharedPointer", + "id": 1, + "offset": 120, + "flags": 27, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1983655699 + }, + "m_slotList": { + "type": "class SharedPointer", + "id": 2, + "offset": 136, + "flags": 27, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 3213026923 + }, + "m_publicItemList": { + "type": "class SharedPointer", + "id": 3, + "offset": 152, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1693467991 + }, + "m_equipmentSets": { + "type": "class SharedPointer", + "id": 4, + "offset": 232, + "flags": 27, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1904799695 + } + } + }, + "444757120": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 444757120, + "properties": { + "m_pSpellEffect": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3446820733 + }, + "m_remainingTurns": { + "type": "int", + "id": 1, + "offset": 88, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1100057776 + } + } + }, + "1728983951": { + "name": "class SharedPointer", + "bases": [ + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 1728983951, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + }, + "m_cloaked": { + "type": "bool", + "id": 2, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 7349510 + }, + "m_detonate": { + "type": "bool", + "id": 3, + "offset": 153, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1738601959 + }, + "m_burnSound": { + "type": "std::string", + "id": 4, + "offset": 120, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1827806971 + } + } + }, + "443111413": { + "name": "class CantripsSpellTemplate*", + "bases": [ + "SpellTemplate", + "CoreTemplate", + "PropertyClass" + ], + "hash": 443111413, + "properties": { + "m_behaviors": { + "type": "class BehaviorTemplate*", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1197808594 + }, + "m_name": { + "type": "std::string", + "id": 1, + "offset": 96, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1717359772 + }, + "m_description": { + "type": "std::string", + "id": 2, + "offset": 168, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1649374815 + }, + "m_advancedDescription": { + "type": "std::string", + "id": 3, + "offset": 200, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3465713013 + }, + "m_displayName": { + "type": "std::string", + "id": 4, + "offset": 136, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2446900370 + }, + "m_spellBase": { + "type": "std::string", + "id": 5, + "offset": 248, + "flags": 268435463, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2688054198, + "enum_options": { + "__BASECLASS": "CinematicTemplate" + } + }, + "m_effects": { + "type": "class SharedPointer", + "id": 6, + "offset": 280, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 370726379 + }, + "m_sMagicSchoolName": { + "type": "std::string", + "id": 7, + "offset": 312, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2035693400 + }, + "m_sTypeName": { + "type": "std::string", + "id": 8, + "offset": 352, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3580785905 + }, + "m_trainingCost": { + "type": "int", + "id": 9, + "offset": 384, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 982588239 + }, + "m_accuracy": { + "type": "int", + "id": 10, + "offset": 388, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1636315493 + }, + "m_baseCost": { + "type": "int", + "id": 11, + "offset": 232, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1475151502 + }, + "m_creditsCost": { + "type": "int", + "id": 12, + "offset": 236, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 715313825 + }, + "m_pvpCurrencyCost": { + "type": "int", + "id": 13, + "offset": 240, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 645595444 + }, + "m_pvpTourneyCurrencyCost": { + "type": "int", + "id": 14, + "offset": 244, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 517874954 + }, + "m_boosterPackIcon": { + "type": "std::string", + "id": 15, + "offset": 496, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3428653697 + }, + "m_validTargetSpells": { + "type": "unsigned int", + "id": 16, + "offset": 392, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2355782967 + }, + "m_PvP": { + "type": "bool", + "id": 17, + "offset": 408, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 269492361 + }, + "m_PvE": { + "type": "bool", + "id": 18, + "offset": 409, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 269492350 + }, + "m_noPvPEnchant": { + "type": "bool", + "id": 19, + "offset": 410, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 661581703 + }, + "m_noPvEEnchant": { + "type": "bool", + "id": 20, + "offset": 411, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 10144220 + }, + "m_battlegroundsOnly": { + "type": "bool", + "id": 21, + "offset": 412, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1244782419 + }, + "m_Treasure": { + "type": "bool", + "id": 22, + "offset": 413, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1749096414 + }, + "m_noDiscard": { + "type": "bool", + "id": 23, + "offset": 414, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 565749226 + }, + "m_leavesPlayWhenCast": { + "type": "bool", + "id": 24, + "offset": 532, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 698216294 + }, + "m_imageIndex": { + "type": "int", + "id": 25, + "offset": 416, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1570500405 + }, + "m_imageName": { + "type": "std::string", + "id": 26, + "offset": 424, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2391520543 + }, + "m_cloaked": { + "type": "bool", + "id": 27, + "offset": 489, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 7349510 + }, + "m_casterInvisible": { + "type": "bool", + "id": 28, + "offset": 490, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 310214650 + }, + "m_adjectives": { + "type": "std::string", + "id": 29, + "offset": 576, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2967855037 + }, + "m_spellSourceType": { + "type": "enum SpellTemplate::kSpellSourceType", + "id": 30, + "offset": 528, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 156272727, + "enum_options": { + "kCaster": 0, + "kPet": 1, + "kShadowCreature": 2, + "kWeapon": 3, + "kEquipment": 4 + } + }, + "m_cloakedName": { + "type": "std::string", + "id": 31, + "offset": 536, + "flags": 268435463, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2846679215, + "enum_options": { + "__BASECLASS": "SpellTemplate" + } + }, + "m_purchaseRequirements": { + "type": "class RequirementList*", + "id": 32, + "offset": 608, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3174641793 + }, + "m_displayRequirements": { + "type": "class RequirementList*", + "id": 33, + "offset": 840, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3646782876 + }, + "m_descriptionTrainer": { + "type": "std::string", + "id": 34, + "offset": 616, + "flags": 8388871, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1756093908 + }, + "m_descriptionCombatHUD": { + "type": "std::string", + "id": 35, + "offset": 648, + "flags": 8388871, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1631478006 + }, + "m_displayIndex": { + "type": "int", + "id": 36, + "offset": 680, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1250551048 + }, + "m_hiddenFromEffectsWindow": { + "type": "bool", + "id": 37, + "offset": 684, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1832736331 + }, + "m_ignoreCharms": { + "type": "bool", + "id": 38, + "offset": 685, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1840075893 + }, + "m_alwaysFizzle": { + "type": "bool", + "id": 39, + "offset": 686, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2030988856 + }, + "m_spellCategory": { + "type": "std::string", + "id": 40, + "offset": 688, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2472376729 + }, + "m_showPolymorphedName": { + "type": "bool", + "id": 41, + "offset": 720, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2097929096 + }, + "m_skipTruncation": { + "type": "bool", + "id": 42, + "offset": 721, + "flags": 263, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1838335249 + }, + "m_maxCopies": { + "type": "unsigned int", + "id": 43, + "offset": 724, + "flags": 263, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 403022326 + }, + "m_levelRestriction": { + "type": "int", + "id": 44, + "offset": 728, + "flags": 263, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 176502472 + }, + "m_delayEnchantment": { + "type": "bool", + "id": 45, + "offset": 732, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 191336919 + }, + "m_delayEnchantmentOrder": { + "type": "enum SpellEffect::kDelayOrder", + "id": 46, + "offset": 736, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2526055263, + "enum_options": { + "SpellEffect::kAnyOrder": 0, + "SpellEffect::kFirst": 1, + "SpellEffect::kSecond": 2 + } + }, + "m_previousSpellName": { + "type": "std::string", + "id": 47, + "offset": 744, + "flags": 268435463, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2903322585, + "enum_options": { + "__BASECLASS": "SpellTemplate" + } + }, + "m_cardFront": { + "type": "std::string", + "id": 48, + "offset": 456, + "flags": 131359, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3557598526 + }, + "m_useGloss": { + "type": "bool", + "id": 49, + "offset": 488, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 668817544 + }, + "m_ignoreDispel": { + "type": "bool", + "id": 50, + "offset": 776, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1881041624 + }, + "m_backRowFriendly": { + "type": "bool", + "id": 51, + "offset": 777, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 501584377 + }, + "m_spellRank": { + "type": "class SharedPointer", + "id": 52, + "offset": 784, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3152361374 + }, + "m_secondarySchoolName": { + "type": "std::string", + "id": 53, + "offset": 800, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1803268236 + }, + "m_spellFusion": { + "type": "unsigned int", + "id": 54, + "offset": 836, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1658928321 + }, + "m_requiredSchoolName": { + "type": "std::string", + "id": 55, + "offset": 848, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3576058981 + }, + "m_cantripsSpellType": { + "type": "enum CantripsSpellTemplate::CantripsSpellType", + "id": 56, + "offset": 880, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3328314982, + "enum_options": { + "CS_Teleportation": 0, + "CS_Incantation": 1, + "CS_Beneficial": 2, + "CS_Ritual": 3, + "CS_Sigil": 4 + } + }, + "m_energyCost": { + "type": "int", + "id": 57, + "offset": 884, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1236111677 + }, + "m_animationKFMs": { + "type": "std::string", + "id": 58, + "offset": 888, + "flags": 131079, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 3393275788 + }, + "m_animationNames": { + "type": "std::string", + "id": 59, + "offset": 912, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1776419407 + }, + "m_soundEffectName": { + "type": "std::string", + "id": 60, + "offset": 936, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3235436082 + }, + "m_soundEffectGain": { + "type": "float", + "id": 61, + "offset": 968, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1827685932, + "enum_options": { + "__DEFAULT": "1.0" + } + }, + "m_cantripsSpellImageIndex": { + "type": "int", + "id": 62, + "offset": 972, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1902695161 + }, + "m_cantripsSpellImageName": { + "type": "std::string", + "id": 63, + "offset": 976, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2661888099 + }, + "m_effectParameter": { + "type": "std::string", + "id": 64, + "offset": 1008, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1522601705 + }, + "m_cantripsSpellEffect": { + "type": "enum CantripsSpellTemplate::CantripsSpellEffect", + "id": 65, + "offset": 1040, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3436262155, + "enum_options": { + "CSE_None": 0, + "CSE_PlayEffect": 1, + "CSE_Mark": 2, + "CSE_Recall": 3, + "CSE_Heal": 4, + "CSE_NoAggro": 5, + "CSE_Teleport": 6, + "CSE_Invisibility": 7, + "CSE_Emote": 8, + "CSE_Ritual": 9, + "CSE_Sigil": 10, + "CSE_Beneficial": 11, + "CSE_PlaySchoolEffect": 12 + } + }, + "m_cooldownSeconds": { + "type": "int", + "id": 66, + "offset": 1044, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1459266190 + } + } + }, + "888256044": { + "name": "class SharedPointer", + "bases": [ + "ServiceOptionBase", + "PropertyClass" + ], + "hash": 888256044, + "properties": { + "m_serviceName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2206028813 + }, + "m_iconKey": { + "type": "std::string", + "id": 1, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2457138637 + }, + "m_displayKey": { + "type": "std::string", + "id": 2, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3023276954 + }, + "m_serviceIndex": { + "type": "unsigned int", + "id": 3, + "offset": 204, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2103126710 + }, + "m_forceInteract": { + "type": "bool", + "id": 4, + "offset": 200, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1705789564 + } + } + }, + "1291147389": { + "name": "class ClientUnShadowSelfCinematicAction*", + "bases": [ + "UnShadowSelfCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 1291147389, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + } + } + }, + "443110133": { + "name": "class CantripsSpellTemplate", + "bases": [ + "SpellTemplate", + "CoreTemplate", + "PropertyClass" + ], + "hash": 443110133, + "properties": { + "m_behaviors": { + "type": "class BehaviorTemplate*", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1197808594 + }, + "m_name": { + "type": "std::string", + "id": 1, + "offset": 96, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1717359772 + }, + "m_description": { + "type": "std::string", + "id": 2, + "offset": 168, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1649374815 + }, + "m_advancedDescription": { + "type": "std::string", + "id": 3, + "offset": 200, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3465713013 + }, + "m_displayName": { + "type": "std::string", + "id": 4, + "offset": 136, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2446900370 + }, + "m_spellBase": { + "type": "std::string", + "id": 5, + "offset": 248, + "flags": 268435463, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2688054198, + "enum_options": { + "__BASECLASS": "CinematicTemplate" + } + }, + "m_effects": { + "type": "class SharedPointer", + "id": 6, + "offset": 280, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 370726379 + }, + "m_sMagicSchoolName": { + "type": "std::string", + "id": 7, + "offset": 312, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2035693400 + }, + "m_sTypeName": { + "type": "std::string", + "id": 8, + "offset": 352, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3580785905 + }, + "m_trainingCost": { + "type": "int", + "id": 9, + "offset": 384, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 982588239 + }, + "m_accuracy": { + "type": "int", + "id": 10, + "offset": 388, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1636315493 + }, + "m_baseCost": { + "type": "int", + "id": 11, + "offset": 232, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1475151502 + }, + "m_creditsCost": { + "type": "int", + "id": 12, + "offset": 236, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 715313825 + }, + "m_pvpCurrencyCost": { + "type": "int", + "id": 13, + "offset": 240, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 645595444 + }, + "m_pvpTourneyCurrencyCost": { + "type": "int", + "id": 14, + "offset": 244, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 517874954 + }, + "m_boosterPackIcon": { + "type": "std::string", + "id": 15, + "offset": 496, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3428653697 + }, + "m_validTargetSpells": { + "type": "unsigned int", + "id": 16, + "offset": 392, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2355782967 + }, + "m_PvP": { + "type": "bool", + "id": 17, + "offset": 408, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 269492361 + }, + "m_PvE": { + "type": "bool", + "id": 18, + "offset": 409, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 269492350 + }, + "m_noPvPEnchant": { + "type": "bool", + "id": 19, + "offset": 410, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 661581703 + }, + "m_noPvEEnchant": { + "type": "bool", + "id": 20, + "offset": 411, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 10144220 + }, + "m_battlegroundsOnly": { + "type": "bool", + "id": 21, + "offset": 412, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1244782419 + }, + "m_Treasure": { + "type": "bool", + "id": 22, + "offset": 413, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1749096414 + }, + "m_noDiscard": { + "type": "bool", + "id": 23, + "offset": 414, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 565749226 + }, + "m_leavesPlayWhenCast": { + "type": "bool", + "id": 24, + "offset": 532, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 698216294 + }, + "m_imageIndex": { + "type": "int", + "id": 25, + "offset": 416, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1570500405 + }, + "m_imageName": { + "type": "std::string", + "id": 26, + "offset": 424, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2391520543 + }, + "m_cloaked": { + "type": "bool", + "id": 27, + "offset": 489, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 7349510 + }, + "m_casterInvisible": { + "type": "bool", + "id": 28, + "offset": 490, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 310214650 + }, + "m_adjectives": { + "type": "std::string", + "id": 29, + "offset": 576, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2967855037 + }, + "m_spellSourceType": { + "type": "enum SpellTemplate::kSpellSourceType", + "id": 30, + "offset": 528, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 156272727, + "enum_options": { + "kCaster": 0, + "kPet": 1, + "kShadowCreature": 2, + "kWeapon": 3, + "kEquipment": 4 + } + }, + "m_cloakedName": { + "type": "std::string", + "id": 31, + "offset": 536, + "flags": 268435463, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2846679215, + "enum_options": { + "__BASECLASS": "SpellTemplate" + } + }, + "m_purchaseRequirements": { + "type": "class RequirementList*", + "id": 32, + "offset": 608, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3174641793 + }, + "m_displayRequirements": { + "type": "class RequirementList*", + "id": 33, + "offset": 840, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3646782876 + }, + "m_descriptionTrainer": { + "type": "std::string", + "id": 34, + "offset": 616, + "flags": 8388871, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1756093908 + }, + "m_descriptionCombatHUD": { + "type": "std::string", + "id": 35, + "offset": 648, + "flags": 8388871, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1631478006 + }, + "m_displayIndex": { + "type": "int", + "id": 36, + "offset": 680, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1250551048 + }, + "m_hiddenFromEffectsWindow": { + "type": "bool", + "id": 37, + "offset": 684, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1832736331 + }, + "m_ignoreCharms": { + "type": "bool", + "id": 38, + "offset": 685, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1840075893 + }, + "m_alwaysFizzle": { + "type": "bool", + "id": 39, + "offset": 686, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2030988856 + }, + "m_spellCategory": { + "type": "std::string", + "id": 40, + "offset": 688, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2472376729 + }, + "m_showPolymorphedName": { + "type": "bool", + "id": 41, + "offset": 720, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2097929096 + }, + "m_skipTruncation": { + "type": "bool", + "id": 42, + "offset": 721, + "flags": 263, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1838335249 + }, + "m_maxCopies": { + "type": "unsigned int", + "id": 43, + "offset": 724, + "flags": 263, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 403022326 + }, + "m_levelRestriction": { + "type": "int", + "id": 44, + "offset": 728, + "flags": 263, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 176502472 + }, + "m_delayEnchantment": { + "type": "bool", + "id": 45, + "offset": 732, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 191336919 + }, + "m_delayEnchantmentOrder": { + "type": "enum SpellEffect::kDelayOrder", + "id": 46, + "offset": 736, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2526055263, + "enum_options": { + "SpellEffect::kAnyOrder": 0, + "SpellEffect::kFirst": 1, + "SpellEffect::kSecond": 2 + } + }, + "m_previousSpellName": { + "type": "std::string", + "id": 47, + "offset": 744, + "flags": 268435463, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2903322585, + "enum_options": { + "__BASECLASS": "SpellTemplate" + } + }, + "m_cardFront": { + "type": "std::string", + "id": 48, + "offset": 456, + "flags": 131359, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3557598526 + }, + "m_useGloss": { + "type": "bool", + "id": 49, + "offset": 488, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 668817544 + }, + "m_ignoreDispel": { + "type": "bool", + "id": 50, + "offset": 776, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1881041624 + }, + "m_backRowFriendly": { + "type": "bool", + "id": 51, + "offset": 777, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 501584377 + }, + "m_spellRank": { + "type": "class SharedPointer", + "id": 52, + "offset": 784, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3152361374 + }, + "m_secondarySchoolName": { + "type": "std::string", + "id": 53, + "offset": 800, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1803268236 + }, + "m_spellFusion": { + "type": "unsigned int", + "id": 54, + "offset": 836, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1658928321 + }, + "m_requiredSchoolName": { + "type": "std::string", + "id": 55, + "offset": 848, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3576058981 + }, + "m_cantripsSpellType": { + "type": "enum CantripsSpellTemplate::CantripsSpellType", + "id": 56, + "offset": 880, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3328314982, + "enum_options": { + "CS_Teleportation": 0, + "CS_Incantation": 1, + "CS_Beneficial": 2, + "CS_Ritual": 3, + "CS_Sigil": 4 + } + }, + "m_energyCost": { + "type": "int", + "id": 57, + "offset": 884, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1236111677 + }, + "m_animationKFMs": { + "type": "std::string", + "id": 58, + "offset": 888, + "flags": 131079, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 3393275788 + }, + "m_animationNames": { + "type": "std::string", + "id": 59, + "offset": 912, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1776419407 + }, + "m_soundEffectName": { + "type": "std::string", + "id": 60, + "offset": 936, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3235436082 + }, + "m_soundEffectGain": { + "type": "float", + "id": 61, + "offset": 968, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1827685932, + "enum_options": { + "__DEFAULT": "1.0" + } + }, + "m_cantripsSpellImageIndex": { + "type": "int", + "id": 62, + "offset": 972, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1902695161 + }, + "m_cantripsSpellImageName": { + "type": "std::string", + "id": 63, + "offset": 976, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2661888099 + }, + "m_effectParameter": { + "type": "std::string", + "id": 64, + "offset": 1008, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1522601705 + }, + "m_cantripsSpellEffect": { + "type": "enum CantripsSpellTemplate::CantripsSpellEffect", + "id": 65, + "offset": 1040, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3436262155, + "enum_options": { + "CSE_None": 0, + "CSE_PlayEffect": 1, + "CSE_Mark": 2, + "CSE_Recall": 3, + "CSE_Heal": 4, + "CSE_NoAggro": 5, + "CSE_Teleport": 6, + "CSE_Invisibility": 7, + "CSE_Emote": 8, + "CSE_Ritual": 9, + "CSE_Sigil": 10, + "CSE_Beneficial": 11, + "CSE_PlaySchoolEffect": 12 + } + }, + "m_cooldownSeconds": { + "type": "int", + "id": 66, + "offset": 1044, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1459266190 + } + } + }, + "1290870722": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1290870722, + "properties": { + "m_applyNOT": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1746328074, + "enum_options": { + "__DEFAULT": 0 + } + }, + "m_operator": { + "type": "enum Requirement::Operator", + "id": 1, + "offset": 76, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2672792317, + "enum_options": { + "ROP_AND": 0, + "ROP_OR": 1, + "__DEFAULT": "ROP_AND" + } + } + } + }, + "1289803641": { + "name": "class std::list,class std::allocator > >", + "bases": [], + "hash": 1289803641, + "properties": {} + }, + "1729298571": { + "name": "class SharedPointer", + "bases": [ + "DerbyModifyMoraleChance", + "DerbyEffect", + "PropertyClass" + ], + "hash": 1729298571, + "properties": { + "m_buffType": { + "type": "enum DerbyTalentBuffType", + "id": 0, + "offset": 92, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1149251982, + "enum_options": { + "Buff": 0, + "Debuff": 1, + "Neither": 2 + } + }, + "m_kTarget": { + "type": "enum DerbyTargetType", + "id": 1, + "offset": 96, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1807803351, + "enum_options": { + "kTargetInFront": 0, + "kTargetBehind": 1, + "kTargetFirst": 2, + "kTargetSelf": 3, + "kTargetAll": 4, + "kTargetLast": 5 + } + }, + "m_nDuration": { + "type": "int", + "id": 2, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1110167982 + }, + "m_effectID": { + "type": "unsigned int", + "id": 3, + "offset": 88, + "flags": 24, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2347630439 + }, + "m_imageFilename": { + "type": "std::string", + "id": 4, + "offset": 112, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2813328063 + }, + "m_iconIndex": { + "type": "unsigned int", + "id": 5, + "offset": 144, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1265133262 + }, + "m_soundOnActivate": { + "type": "std::string", + "id": 6, + "offset": 152, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1956929714 + }, + "m_soundOnTarget": { + "type": "std::string", + "id": 7, + "offset": 184, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3444214056 + }, + "m_targetParticleEffect": { + "type": "std::string", + "id": 8, + "offset": 216, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3048234723 + }, + "m_overheadMessage": { + "type": "std::string", + "id": 9, + "offset": 248, + "flags": 8388639, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1701018190 + }, + "m_requirements": { + "type": "class RequirementList", + "id": 10, + "offset": 280, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2840988582 + }, + "m_moraleChanceActionMap": { + "type": "class MoraleModificationMap", + "id": 11, + "offset": 376, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1654668404 + } + } + }, + "888977217": { + "name": "class SG_GameInteraction*", + "bases": [ + "PropertyClass" + ], + "hash": 888977217, + "properties": { + "m_interactorOneName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3615982777 + }, + "m_interactorTwoName": { + "type": "std::string", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1847465777 + }, + "m_eventsRaisedOnOne": { + "type": "std::string", + "id": 2, + "offset": 136, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2412613351 + } + } + }, + "1289297479": { + "name": "class GroupObserver", + "bases": [ + "PropertyClass" + ], + "hash": 1289297479, + "properties": {} + }, + "1729147506": { + "name": "class ClientFaceTargetTeamActorCinematicAction", + "bases": [ + "FaceTargetTeamActorCinematicAction", + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 1729147506, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + }, + "m_bCaster": { + "type": "bool", + "id": 2, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1390351511 + } + } + }, + "444584581": { + "name": "class SharedPointer", + "bases": [ + "Window", + "PropertyClass" + ], + "hash": 444584581, + "properties": { + "m_sName": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306437263 + }, + "m_Children": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621225959 + }, + "m_Style": { + "type": "unsigned int", + "id": 2, + "offset": 152, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "SCALE_CHILDREN": 2, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "FOCUS_LOCKED": 64, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152 + } + }, + "m_Flags": { + "type": "unsigned int", + "id": 3, + "offset": 156, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } + }, + "m_Window": { + "type": "class Rect", + "id": 4, + "offset": 160, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3105139380 + }, + "m_fTargetAlpha": { + "type": "float", + "id": 5, + "offset": 212, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1809129834 + }, + "m_fDisabledAlpha": { + "type": "float", + "id": 6, + "offset": 216, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1389987675 + }, + "m_fAlpha": { + "type": "float", + "id": 7, + "offset": 208, + "flags": 65671, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 482130755 + }, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3623628394 + }, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2102211316 + }, + "m_sScript": { + "type": "std::string", + "id": 10, + "offset": 352, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1846695875 + }, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3389835433 + }, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547159940 + }, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513510520 + }, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3091503757 + } + } + }, + "888697362": { + "name": "class SharedPointer", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 888697362, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + }, + "m_effectName": { + "type": "std::string", + "id": 1, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2029161513 + }, + "m_textKey": { + "type": "std::string", + "id": 2, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1720060457 + }, + "m_height": { + "type": "float", + "id": 3, + "offset": 184, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 602977104 + }, + "m_zOffset": { + "type": "float", + "id": 4, + "offset": 188, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 736134072 + }, + "m_red": { + "type": "unsigned char", + "id": 5, + "offset": 192, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 904647115 + }, + "m_green": { + "type": "unsigned char", + "id": 6, + "offset": 193, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1433403873 + }, + "m_blue": { + "type": "unsigned char", + "id": 7, + "offset": 194, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 856840600 + }, + "m_triggers": { + "type": "class SharedPointer", + "id": 8, + "offset": 200, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 3290329276 + } + } + }, + "888548495": { + "name": "class ClientBuffDebuffEventCinematicAction", + "bases": [ + "BuffDebuffEventCinematicAction", + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 888548495, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + } + } + }, + "1290424573": { + "name": "class ShadowSelfCinematicAction*", + "bases": [ + "CinematicAction", + "PropertyClass" + ], + "hash": 1290424573, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + } + } + }, + "1729608655": { + "name": "class HousingMusicPlayerBehaviorBase", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1729608655, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_playlist": { + "type": "unsigned int", + "id": 1, + "offset": 112, + "flags": 65567, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1986295487 + }, + "m_currentSelection": { + "type": "unsigned int", + "id": 2, + "offset": 128, + "flags": 65567, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 906571734 + }, + "m_playStyle": { + "type": "unsigned int", + "id": 3, + "offset": 132, + "flags": 65567, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 768737172 + } + } + }, + "444949119": { + "name": "class ClientRaidPortalBehavior", + "bases": [ + "RaidPortalBehavior", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 444949119, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_active": { + "type": "bool", + "id": 1, + "offset": 112, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 239335471 + } + } + }, + "1729595253": { + "name": "class PositionalSoundBehaviorTemplate*", + "bases": [ + "SoundBehaviorTemplate", + "AreaBehaviorTemplate", + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 1729595253, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + }, + "m_radius": { + "type": "float", + "id": 1, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 989410271 + }, + "m_category": { + "type": "enum AudioCategory", + "id": 2, + "offset": 124, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2951251982, + "enum_options": { + "AudioCategory_Irrelevent": 0, + "AudioCategory_Accoustic": 1, + "AudioCategory_Noise": 2, + "AudioCategory_Music": 3, + "AudioCategory_MusicAtSFXVolume": 4, + "AudioCategory_Dialog": 5, + "AudioCategory_UI": 6, + "AudioCategory_NoiseAtMusicVolume": 7 + } + }, + "m_exclusive": { + "type": "bool", + "id": 3, + "offset": 128, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 824383403 + }, + "m_active": { + "type": "bool", + "id": 4, + "offset": 129, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 239335471 + }, + "m_enableReqs": { + "type": "class SharedPointer", + "id": 5, + "offset": 136, + "flags": 263, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3158020443 + }, + "m_trackFilenameList": { + "type": "std::string", + "id": 6, + "offset": 152, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2531081709 + }, + "m_playList": { + "type": "class PlayListEntry*", + "id": 7, + "offset": 176, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 3907873161 + }, + "m_priority": { + "type": "int", + "id": 8, + "offset": 208, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1235205852 + }, + "m_volume": { + "type": "float", + "id": 9, + "offset": 200, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1162855023 + }, + "m_loopCount": { + "type": "int", + "id": 10, + "offset": 204, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 865634717 + }, + "m_progression": { + "type": "enum PlayList::Progression", + "id": 11, + "offset": 220, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3279400238, + "enum_options": { + "Sequence": 0, + "Random": 1, + "SequenceOnceOnly": 2, + "RandomNoRepeat": 3 + } + }, + "m_progressMin": { + "type": "float", + "id": 12, + "offset": 212, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1497550192 + }, + "m_progressMax": { + "type": "float", + "id": 13, + "offset": 216, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1497549938 + }, + "m_audioFilterSet": { + "type": "unsigned int", + "id": 14, + "offset": 224, + "flags": 33554439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 831339825 + }, + "m_animationNameFilter": { + "type": "std::string", + "id": 15, + "offset": 232, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2292854242 + }, + "m_functionallabel": { + "type": "std::string", + "id": 16, + "offset": 264, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3589331278 + }, + "m_innerRadius": { + "type": "float", + "id": 17, + "offset": 296, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 686816091 + }, + "m_inverted": { + "type": "bool", + "id": 18, + "offset": 300, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1034821044 + } + } + }, + "888864273": { + "name": "struct FriendData*", + "bases": [ + "PropertyClass" + ], + "hash": 888864273, + "properties": { + "m_gid": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 267019404 + }, + "m_schoolName": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3385349572 + }, + "m_schoolRank": { + "type": "std::wstring", + "id": 2, + "offset": 112, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3181478700 + }, + "m_schoolLevel": { + "type": "int", + "id": 3, + "offset": 144, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 10373914 + }, + "m_showPVPOption": { + "type": "unsigned int", + "id": 4, + "offset": 148, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2052204093 + }, + "m_petTemplateID": { + "type": "unsigned int", + "id": 5, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 817215071 + } + } + }, + "447380377": { + "name": "class LeashedPathNodeDescriptor*", + "bases": [ + "NodeDescriptor", + "PropertyClass" + ], + "hash": 447380377, + "properties": { + "m_nodeType": { + "type": "enum LeashedPathNodeType", + "id": 0, + "offset": 72, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3706891451, + "enum_options": { + "NT_NONE": 0, + "NT_ANIM": 1, + "NT_SPEEDSCALE": 2, + "NT_TELEPORT": 3 + } + }, + "m_animationName": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3393414044 + }, + "m_teleportToZone": { + "type": "std::string", + "id": 2, + "offset": 112, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2018677929 + }, + "m_zoneLocation": { + "type": "std::string", + "id": 3, + "offset": 144, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1597011152 + }, + "m_speedScale": { + "type": "float", + "id": 4, + "offset": 176, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2118638608 + } + } + }, + "1291147309": { + "name": "class ClientUnShadowSelfCinematicAction", + "bases": [ + "UnShadowSelfCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 1291147309, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + } + } + }, + "889356694": { + "name": "class SupportedObjectReference*", + "bases": [ + "PropertyClass" + ], + "hash": 889356694, + "properties": {} + }, + "1733038175": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1733038175, + "properties": { + "m_sQuestTitle": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2282339874 + }, + "m_sFirstGoalLocation": { + "type": "std::string", + "id": 1, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2049077170 + }, + "m_sSchoolFocus": { + "type": "std::string", + "id": 2, + "offset": 136, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2205763286 + } + } + }, + "450631439": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 450631439, + "properties": { + "m_castleMagicItemList": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 3812758310 + }, + "m_castleMagicTimerList": { + "type": "class SharedPointer", + "id": 1, + "offset": 152, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2420724439 + }, + "m_randomNumberSetBuffer": { + "type": "std::string", + "id": 2, + "offset": 360, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1824603147 + }, + "m_randomNumberSetIndexList": { + "type": "gid", + "id": 3, + "offset": 416, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 678388482 + }, + "m_defaultCameraTime": { + "type": "float", + "id": 4, + "offset": 528, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 617092724 + }, + "m_setPlayAsPet": { + "type": "bool", + "id": 5, + "offset": 533, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 124615314 + } + } + }, + "1291642721": { + "name": "class RecipeShopOption", + "bases": [ + "ServiceOptionBase", + "PropertyClass" + ], + "hash": 1291642721, + "properties": { + "m_serviceName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2206028813 + }, + "m_iconKey": { + "type": "std::string", + "id": 1, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2457138637 + }, + "m_displayKey": { + "type": "std::string", + "id": 2, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3023276954 + }, + "m_serviceIndex": { + "type": "unsigned int", + "id": 3, + "offset": 204, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2103126710 + }, + "m_forceInteract": { + "type": "bool", + "id": 4, + "offset": 200, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1705789564 + } + } + }, + "1732213806": { + "name": "enum SpellEffect::kDelayOrder", + "bases": [], + "hash": 1732213806, + "properties": {} + }, + "450457958": { + "name": "class CharMap*", + "bases": [ + "PropertyClass" + ], + "hash": 450457958, + "properties": { + "m_src": { + "type": "unsigned short", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 820631632 + }, + "m_dst": { + "type": "unsigned short", + "id": 1, + "offset": 74, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 820615347 + } + } + }, + "1291459056": { + "name": "class SharedPointer", + "bases": [ + "PhysicsSimMass", + "PropertyClass" + ], + "hash": 1291459056, + "properties": {} + }, + "1731493831": { + "name": "class HousingMusicPlayerBehavior*", + "bases": [ + "HousingMusicPlayerBehaviorBase", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1731493831, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_playlist": { + "type": "unsigned int", + "id": 1, + "offset": 112, + "flags": 65567, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1986295487 + }, + "m_currentSelection": { + "type": "unsigned int", + "id": 2, + "offset": 128, + "flags": 65567, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 906571734 + }, + "m_playStyle": { + "type": "unsigned int", + "id": 3, + "offset": 132, + "flags": 65567, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 768737172 + }, + "m_musicData": { + "type": "std::string", + "id": 4, + "offset": 136, + "flags": 551, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2963606294 + } + } + }, + "449832256": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 449832256, + "properties": { + "m_passInfo": { + "type": "class PassInfo", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2268899601 + }, + "m_expireTime": { + "type": "int", + "id": 1, + "offset": 240, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1624902422 + } + } + }, + "892371470": { + "name": "class AmbientSoundBehaviorTemplate*", + "bases": [ + "SoundBehaviorTemplate", + "AreaBehaviorTemplate", + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 892371470, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + }, + "m_radius": { + "type": "float", + "id": 1, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 989410271 + }, + "m_category": { + "type": "enum AudioCategory", + "id": 2, + "offset": 124, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2951251982, + "enum_options": { + "AudioCategory_Irrelevent": 0, + "AudioCategory_Accoustic": 1, + "AudioCategory_Noise": 2, + "AudioCategory_Music": 3, + "AudioCategory_MusicAtSFXVolume": 4, + "AudioCategory_Dialog": 5, + "AudioCategory_UI": 6, + "AudioCategory_NoiseAtMusicVolume": 7 + } + }, + "m_exclusive": { + "type": "bool", + "id": 3, + "offset": 128, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 824383403 + }, + "m_active": { + "type": "bool", + "id": 4, + "offset": 129, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 239335471 + }, + "m_enableReqs": { + "type": "class SharedPointer", + "id": 5, + "offset": 136, + "flags": 263, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3158020443 + }, + "m_trackFilenameList": { + "type": "std::string", + "id": 6, + "offset": 152, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2531081709 + }, + "m_playList": { + "type": "class PlayListEntry*", + "id": 7, + "offset": 176, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 3907873161 + }, + "m_priority": { + "type": "int", + "id": 8, + "offset": 208, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1235205852 + }, + "m_volume": { + "type": "float", + "id": 9, + "offset": 200, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1162855023 + }, + "m_loopCount": { + "type": "int", + "id": 10, + "offset": 204, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 865634717 + }, + "m_progression": { + "type": "enum PlayList::Progression", + "id": 11, + "offset": 220, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3279400238, + "enum_options": { + "Sequence": 0, + "Random": 1, + "SequenceOnceOnly": 2, + "RandomNoRepeat": 3 + } + }, + "m_progressMin": { + "type": "float", + "id": 12, + "offset": 212, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1497550192 + }, + "m_progressMax": { + "type": "float", + "id": 13, + "offset": 216, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1497549938 + }, + "m_audioFilterSet": { + "type": "unsigned int", + "id": 14, + "offset": 224, + "flags": 33554439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 831339825 + }, + "m_animationNameFilter": { + "type": "std::string", + "id": 15, + "offset": 232, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2292854242 + }, + "m_functionallabel": { + "type": "std::string", + "id": 16, + "offset": 264, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3589331278 + } + } + }, + "1291378517": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1291378517, + "properties": { + "m_itemTemplateId": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1978701296 + }, + "m_itemFlags": { + "type": "int", + "id": 1, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1792726006 + }, + "m_goldCost": { + "type": "int", + "id": 2, + "offset": 92, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 444550297 + }, + "m_crownsCost": { + "type": "int", + "id": 3, + "offset": 96, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1592212719 + }, + "m_ticketCost": { + "type": "int", + "id": 4, + "offset": 100, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1199423063 + }, + "m_displayPriority": { + "type": "std::string", + "id": 5, + "offset": 112, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2036319987 + }, + "m_strikethruCrowns": { + "type": "int", + "id": 6, + "offset": 144, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1756077003 + }, + "m_strikethruGold": { + "type": "int", + "id": 7, + "offset": 148, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 664425781 + }, + "m_description": { + "type": "std::string", + "id": 8, + "offset": 208, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1649374815 + }, + "m_saleID": { + "type": "unsigned int", + "id": 9, + "offset": 240, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1150028607 + }, + "m_recommendIfOwned": { + "type": "bool", + "id": 10, + "offset": 152, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1653579929 + }, + "m_combatOnly": { + "type": "bool", + "id": 11, + "offset": 153, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 978499627 + }, + "m_noGift": { + "type": "bool", + "id": 12, + "offset": 154, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 760708954 + }, + "m_segReqsStatement": { + "type": "std::string", + "id": 13, + "offset": 160, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3526390858 + }, + "m_segReqsPoolsStatements": { + "type": "std::string", + "id": 14, + "offset": 192, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 3225359562 + } + } + }, + "1731335353": { + "name": "enum WizardStatTable::STAT_TYPE", + "bases": [], + "hash": 1731335353, + "properties": {} + }, + "449176113": { + "name": "class EmotesRadialMenuBehavior", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 449176113, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_radialMenuData": { + "type": "std::string", + "id": 1, + "offset": 128, + "flags": 575, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3438486999 + } + } + }, + "891757480": { + "name": "class UnlockTriggerBehavior", + "bases": [ + "UnlockTriggerBehaviorBase", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 891757480, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + } + } + }, + "1731281342": { + "name": "class BattlegroundSigilTemplate", + "bases": [ + "CombatSigilTemplate", + "SigilTemplate", + "CoreTemplate", + "PropertyClass" + ], + "hash": 1731281342, + "properties": { + "m_behaviors": { + "type": "class BehaviorTemplate*", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1197808594 + }, + "m_sigilName": { + "type": "std::string", + "id": 1, + "offset": 96, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3177657588 + }, + "m_sigilType": { + "type": "std::string", + "id": 2, + "offset": 136, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3177899445 + }, + "m_entryResults": { + "type": "class ResultList*", + "id": 3, + "offset": 184, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3262956108 + }, + "m_requirements": { + "type": "class RequirementList*", + "id": 4, + "offset": 176, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2840985510 + }, + "m_cancelResults": { + "type": "class ResultList*", + "id": 5, + "offset": 192, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3799257120 + }, + "m_completeResults": { + "type": "class ResultList*", + "id": 6, + "offset": 200, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1964258099 + }, + "m_useState": { + "type": "bool", + "id": 7, + "offset": 216, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 683320865 + }, + "m_stateOverride": { + "type": "std::string", + "id": 8, + "offset": 224, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1949715548 + }, + "m_subCircles": { + "type": "class SigilSubCircle*", + "id": 9, + "offset": 256, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2227135493 + }, + "m_engageRadius": { + "type": "float", + "id": 10, + "offset": 304, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1429683718 + }, + "m_battlefieldEffects": { + "type": "class SharedPointer", + "id": 11, + "offset": 312, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1245973515 + }, + "m_playerVictoryCinematic": { + "type": "std::string", + "id": 12, + "offset": 336, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2684536069 + }, + "m_combatMusic": { + "type": "std::string", + "id": 13, + "offset": 368, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3636593682 + }, + "m_prePlanningCinematicOverride": { + "type": "std::string", + "id": 14, + "offset": 400, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2585096390 + }, + "m_planningCinematicOverride": { + "type": "std::string", + "id": 15, + "offset": 432, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3592819999 + }, + "m_shadowThresholdType": { + "type": "enum kShadow_Threshold_Type", + "id": 16, + "offset": 464, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2847763136, + "enum_options": { + "SHADOW_THRESHOLD_MIN": 0, + "SHADOW_THRESHOLD_AVG": 1, + "SHADOW_THRESHOLD_MAX": 2 + } + }, + "m_shadowThresholdFactor": { + "type": "float", + "id": 17, + "offset": 468, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2104355177 + }, + "m_shadowPipRatingFactor": { + "type": "float", + "id": 18, + "offset": 472, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1061434314 + }, + "m_scalarDamagePvP": { + "type": "float", + "id": 19, + "offset": 476, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2195445026 + }, + "m_scalarResistPvP": { + "type": "float", + "id": 20, + "offset": 480, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1947822077 + }, + "m_scalarPiercePvP": { + "type": "float", + "id": 21, + "offset": 484, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 441266907 + }, + "m_scalarDamagePvE": { + "type": "float", + "id": 22, + "offset": 488, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2195445015 + }, + "m_scalarResistPvE": { + "type": "float", + "id": 23, + "offset": 492, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1947822066 + }, + "m_scalarPiercePvE": { + "type": "float", + "id": 24, + "offset": 496, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 441266896 + }, + "m_damageLimitPvP": { + "type": "float", + "id": 25, + "offset": 500, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1990135243 + }, + "m_dK0PvP": { + "type": "float", + "id": 26, + "offset": 504, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 413528556 + }, + "m_dN0PvP": { + "type": "float", + "id": 27, + "offset": 508, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 417086319 + }, + "m_resistLimitPvP": { + "type": "float", + "id": 28, + "offset": 512, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1174512006 + }, + "m_rK0PvP": { + "type": "float", + "id": 29, + "offset": 516, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 961424058 + }, + "m_rN0PvP": { + "type": "float", + "id": 30, + "offset": 520, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 964981821 + }, + "m_damageLimitPvE": { + "type": "float", + "id": 31, + "offset": 524, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1990135232 + }, + "m_dK0PvE": { + "type": "float", + "id": 32, + "offset": 528, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 413528545 + }, + "m_dN0PvE": { + "type": "float", + "id": 33, + "offset": 532, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 417086308 + }, + "m_resistLimitPvE": { + "type": "float", + "id": 34, + "offset": 536, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1174511995 + }, + "m_rK0PvE": { + "type": "float", + "id": 35, + "offset": 540, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 961424047 + }, + "m_rN0PvE": { + "type": "float", + "id": 36, + "offset": 544, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 964981810 + }, + "m_tickRateMS": { + "type": "unsigned int", + "id": 37, + "offset": 552, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 646469284 + }, + "m_playerAggroRange": { + "type": "float", + "id": 38, + "offset": 556, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1776075073 + }, + "m_deathEffect": { + "type": "std::string", + "id": 39, + "offset": 560, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2339494958 + }, + "m_noAggroEffect": { + "type": "std::string", + "id": 40, + "offset": 592, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1645655765 + }, + "m_redTeamStart": { + "type": "std::string", + "id": 41, + "offset": 624, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2958941675 + }, + "m_blueTeamStart": { + "type": "std::string", + "id": 42, + "offset": 656, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2806152280 + }, + "m_redPlaceholdObjectID": { + "type": "unsigned int", + "id": 43, + "offset": 688, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1608575032 + }, + "m_bluePlaceholdObjectID": { + "type": "unsigned int", + "id": 44, + "offset": 692, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1635754917 + } + } + }, + "447836898": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 447836898, + "properties": { + "m_pipList": { + "type": "class ParticipantPipData", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 3423034348 + }, + "m_duelID.m_full": { + "type": "unsigned __int64", + "id": 1, + "offset": 88, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1024980477 + } + } + }, + "891569670": { + "name": "class VariableSpellEffect*", + "bases": [ + "SpellEffect", + "PropertyClass" + ], + "hash": 891569670, + "properties": { + "m_effectType": { + "type": "enum SpellEffect::kSpellEffects", + "id": 0, + "offset": 72, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2578255295, + "enum_options": { + "kInvalidSpellEffect": 0, + "kDamage": 1, + "kDamageNoCrit": 2, + "kHeal": 3, + "kHealPercent": 4, + "kSetHealPercent": 113, + "kStealHealth": 5, + "kReduceOverTime": 6, + "kDetonateOverTime": 7, + "kPushCharm": 8, + "kStealCharm": 9, + "kPushWard": 10, + "kStealWard": 11, + "kPushOverTime": 12, + "kStealOverTime": 13, + "kRemoveCharm": 14, + "kRemoveWard": 15, + "kRemoveOverTime": 16, + "kRemoveAura": 17, + "kSwapAll": 18, + "kSwapCharm": 19, + "kSwapWard": 20, + "kSwapOverTime": 21, + "kModifyIncomingDamage": 22, + "kModifyIncomingDamageFlat": 119, + "kMaximumIncomingDamage": 23, + "kModifyIncomingHeal": 24, + "kModifyIncomingHealFlat": 118, + "kModifyIncomingDamageType": 25, + "kModifyIncomingArmorPiercing": 26, + "kModifyOutgoingDamage": 27, + "kModifyOutgoingDamageFlat": 121, + "kModifyOutgoingHeal": 28, + "kModifyOutgoingHealFlat": 120, + "kModifyOutgoingDamageType": 29, + "kModifyOutgoingArmorPiercing": 30, + "kModifyOutgoingStealHealth": 31, + "kModifyIncomingStealHealth": 32, + "kBounceNext": 33, + "kBouncePrevious": 34, + "kBounceBack": 35, + "kBounceAll": 36, + "kAbsorbDamage": 37, + "kAbsorbHeal": 38, + "kModifyAccuracy": 39, + "kDispel": 40, + "kConfusion": 41, + "kCloakedCharm": 42, + "kCloakedWard": 43, + "kStunResist": 44, + "kClue": 111, + "kPipConversion": 45, + "kCritBoost": 46, + "kCritBlock": 47, + "kPolymorph": 48, + "kDelayCast": 49, + "kModifyCardCloak": 50, + "kModifyCardDamage": 51, + "kModifyCardAccuracy": 53, + "kModifyCardMutation": 54, + "kModifyCardRank": 55, + "kModifyCardArmorPiercing": 56, + "kSummonCreature": 65, + "kTeleportPlayer": 66, + "kStun": 67, + "kDampen": 68, + "kReshuffle": 69, + "kMindControl": 70, + "kModifyPips": 71, + "kModifyPowerPips": 72, + "kModifyShadowPips": 73, + "kModifyHate": 74, + "kDamageOverTime": 75, + "kHealOverTime": 76, + "kModifyPowerPipChance": 77, + "kModifyRank": 78, + "kStunBlock": 79, + "kRevealCloak": 80, + "kInstantKill": 81, + "kAfterlife": 82, + "kDeferredDamage": 83, + "kDamagePerTotalPipPower": 84, + "kModifyCardHeal": 52, + "kModifyCardCharm": 57, + "kModifyCardWard": 58, + "kModifyCardOutgoingDamage": 59, + "kModifyCardOutgoingAccuracy": 60, + "kModifyCardOutgoingHeal": 61, + "kModifyCardOutgoingArmorPiercing": 62, + "kModifyCardIncomingDamage": 63, + "kModifyCardAbsorbDamage": 64, + "kCloakedWardNoRemove": 86, + "kAddCombatTriggerList": 87, + "kRemoveCombatTriggerList": 88, + "kBacklashDamage": 89, + "kModifyBacklash": 90, + "kIntercept": 91, + "kShadowSelf": 92, + "kShadowCreature": 93, + "kModifyShadowCreatureLevel": 94, + "kSelectShadowCreatureAttackTarget": 95, + "kShadowDecrementTurn": 96, + "kCritBoostSchoolSpecific": 97, + "kSpawnCreature": 98, + "kUnPolymorph": 99, + "kPowerPipConversion": 100, + "kProtectCardBeneficial": 101, + "kProtectCardHarmful": 102, + "kProtectBeneficial": 103, + "kProtectHarmful": 104, + "kDivideDamage": 105, + "kCollectEssence": 106, + "kKillCreature": 107, + "kDispelBlock": 108, + "kConfusionBlock": 109, + "kModifyPipRoundRate": 110, + "kMaxHealthDamage": 112, + "kUntargetable": 114, + "kMakeTargetable": 115, + "kForceTargetable": 116, + "kRemoveStunBlock": 117, + "kExitCombat": 122, + "kSuspendPips": 123, + "kResumePips": 124, + "kAutoPass": 125, + "kStopAutoPass": 126, + "kVanish": 127, + "kStopVanish": 128, + "kMaxHealthHeal": 129, + "kHealByWard": 130, + "kTaunt": 131, + "kPacify": 132, + "kRemoveTargetRestriction": 133, + "kConvertHangingEffect": 134, + "kAddSpellToDeck": 135, + "kAddSpellToHand": 136, + "kModifyIncomingDamageOverTime": 137, + "kModifyIncomingHealOverTime": 138, + "kModifyCardDamagebyRank": 139, + "kPushConvertedCharm": 140, + "kStealConvertedCharm": 141, + "kPushConvertedWard": 142, + "kStealConvertedWard": 143, + "kPushConvertedOverTime": 144, + "kStealConvertedOverTime": 145, + "kRemoveConvertedCharm": 146, + "kRemoveConvertedWard": 147, + "kRemoveConvertedOverTime": 148, + "kModifyOverTimeDuration": 149, + "kModifySchoolPips": 150 + } + }, + "m_effectParam": { + "type": "int", + "id": 1, + "offset": 76, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 357920024 + }, + "m_disposition": { + "type": "enum SpellEffect::kHangingDisposition", + "id": 2, + "offset": 80, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1904841031, + "enum_options": { + "kBoth": 0, + "kBeneficial": 1, + "kHarmful": 2 + } + }, + "m_sDamageType": { + "type": "std::string", + "id": 3, + "offset": 88, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2501054223 + }, + "m_damageType": { + "type": "unsigned int", + "id": 4, + "offset": 84, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 737882766 + }, + "m_pipNum": { + "type": "int", + "id": 5, + "offset": 128, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 830827539 + }, + "m_actNum": { + "type": "int", + "id": 6, + "offset": 132, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 236824866 + }, + "m_effectTarget": { + "type": "enum SpellEffect::kEffectTarget", + "id": 7, + "offset": 140, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2458940523, + "enum_options": { + "kInvalidTarget": 0, + "kSpell": 1, + "kSpecificSpells": 2, + "kGlobal": 3, + "kEnemyTeam": 4, + "kEnemyTeamAllAtOnce": 5, + "kFriendlyTeam": 6, + "kFriendlyTeamAllAtOnce": 7, + "kEnemySingle": 8, + "kFriendlySingle": 9, + "kMinion": 10, + "kFriendlyMinion": 17, + "kEnemyMinion": 18, + "kSelf": 11, + "kAtLeastOneEnemy": 13, + "kPreselectedEnemySingle": 12, + "kMultiTargetEnemy": 14, + "kMultiTargetFriendly": 15, + "kFriendlySingleNotMe": 16 + } + }, + "m_numRounds": { + "type": "int", + "id": 8, + "offset": 144, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1229753829 + }, + "m_paramPerRound": { + "type": "int", + "id": 9, + "offset": 148, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 683234234 + }, + "m_healModifier": { + "type": "float", + "id": 10, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1317921248, + "enum_options": { + "__DEFAULT": "1.0" + } + }, + "m_spellTemplateID": { + "type": "unsigned int", + "id": 11, + "offset": 120, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 585567702 + }, + "m_enchantmentSpellTemplateID": { + "type": "unsigned int", + "id": 12, + "offset": 124, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 246955115 + }, + "m_act": { + "type": "bool", + "id": 13, + "offset": 136, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 269510283 + }, + "m_cloaked": { + "type": "bool", + "id": 14, + "offset": 157, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 7349510 + }, + "m_bypassProtection": { + "type": "bool", + "id": 15, + "offset": 159, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1657138252 + }, + "m_armorPiercingParam": { + "type": "int", + "id": 16, + "offset": 160, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2025530205 + }, + "m_chancePerTarget": { + "type": "int", + "id": 17, + "offset": 164, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 845426794 + }, + "m_protected": { + "type": "bool", + "id": 18, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1445655037 + }, + "m_converted": { + "type": "bool", + "id": 19, + "offset": 169, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1590428797 + }, + "m_rank": { + "type": "int", + "id": 20, + "offset": 208, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 219803942 + }, + "m_effectList": { + "type": "class SharedPointer", + "id": 21, + "offset": 224, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 707154804 + } + } + }, + "891106107": { + "name": "class ClientWizStorageBehavior", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 891106107, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_itemList": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 19, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1983655699 + }, + "m_bankLimit": { + "type": "int", + "id": 2, + "offset": 128, + "flags": 27, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1662903029 + }, + "m_sharedBankLimit": { + "type": "int", + "id": 3, + "offset": 132, + "flags": 27, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 566146380 + } + } + }, + "1291544289": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1291544289, + "properties": { + "m_genericPips": { + "type": "unsigned char", + "id": 0, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1345845385 + }, + "m_powerPips": { + "type": "unsigned char", + "id": 1, + "offset": 81, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2096480441 + }, + "m_balancePips": { + "type": "unsigned char", + "id": 2, + "offset": 82, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1232748146 + }, + "m_deathPips": { + "type": "unsigned char", + "id": 3, + "offset": 83, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1364547506 + }, + "m_firePips": { + "type": "unsigned char", + "id": 4, + "offset": 84, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2490965330 + }, + "m_icePips": { + "type": "unsigned char", + "id": 5, + "offset": 85, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1584134173 + }, + "m_lifePips": { + "type": "unsigned char", + "id": 6, + "offset": 86, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2181444364 + }, + "m_mythPips": { + "type": "unsigned char", + "id": 7, + "offset": 87, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1590318670 + }, + "m_stormPips": { + "type": "unsigned char", + "id": 8, + "offset": 88, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 769321921 + }, + "m_shadowPips": { + "type": "unsigned char", + "id": 9, + "offset": 89, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2569883346 + } + } + }, + "889606066": { + "name": "class MoveBehavior::Controller", + "bases": [ + "PropertyClass" + ], + "hash": 889606066, + "properties": { + "m_bCollisionDisabled": { + "type": "bool", + "id": 0, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1732895577 + }, + "m_bVehicleMode": { + "type": "bool", + "id": 1, + "offset": 121, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1597295002 + }, + "m_fForwardModifier": { + "type": "float", + "id": 2, + "offset": 124, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1173988321 + }, + "m_fBackModifier": { + "type": "float", + "id": 3, + "offset": 128, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 148042045 + }, + "m_fStrafeModifier": { + "type": "float", + "id": 4, + "offset": 132, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 226084913 + }, + "m_fTurnModifier": { + "type": "float", + "id": 5, + "offset": 136, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2134998805 + }, + "m_fAccelerationModifier": { + "type": "float", + "id": 6, + "offset": 144, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 592902742 + }, + "m_fDecelerationModifier": { + "type": "float", + "id": 7, + "offset": 148, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1770082811 + } + } + }, + "1731493837": { + "name": "class HousingMusicPlayerBehavior", + "bases": [ + "HousingMusicPlayerBehaviorBase", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1731493837, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_playlist": { + "type": "unsigned int", + "id": 1, + "offset": 112, + "flags": 65567, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1986295487 + }, + "m_currentSelection": { + "type": "unsigned int", + "id": 2, + "offset": 128, + "flags": 65567, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 906571734 + }, + "m_playStyle": { + "type": "unsigned int", + "id": 3, + "offset": 132, + "flags": 65567, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 768737172 + }, + "m_musicData": { + "type": "std::string", + "id": 4, + "offset": 136, + "flags": 551, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2963606294 + } + } + }, + "449954105": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 449954105, + "properties": { + "m_checkpointLevel": { + "type": "int", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 236419514 + }, + "m_destinationZone": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2605356153 + }, + "m_destinationLoc": { + "type": "std::string", + "id": 2, + "offset": 112, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1531335483 + }, + "m_descriptionText": { + "type": "std::string", + "id": 3, + "offset": 144, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3396736580 + } + } + }, + "1291741025": { + "name": "class RecipeShopOption*", + "bases": [ + "ServiceOptionBase", + "PropertyClass" + ], + "hash": 1291741025, + "properties": { + "m_serviceName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2206028813 + }, + "m_iconKey": { + "type": "std::string", + "id": 1, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2457138637 + }, + "m_displayKey": { + "type": "std::string", + "id": 2, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3023276954 + }, + "m_serviceIndex": { + "type": "unsigned int", + "id": 3, + "offset": 204, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2103126710 + }, + "m_forceInteract": { + "type": "bool", + "id": 4, + "offset": 200, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1705789564 + } + } + }, + "891298167": { + "name": "class std::list >", + "bases": [], + "hash": 891298167, + "properties": {} + }, + "1292305038": { + "name": "class SharedPointer", + "bases": [ + "CoreTemplate", + "PropertyClass" + ], + "hash": 1292305038, + "properties": { + "m_behaviors": { + "type": "class BehaviorTemplate*", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1197808594 + }, + "m_recipeName": { + "type": "std::string", + "id": 1, + "offset": 136, + "flags": 134217735, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3311832788 + }, + "m_ingredients": { + "type": "class Ingredient*", + "id": 2, + "offset": 272, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1061809494 + }, + "m_displayKey": { + "type": "std::string", + "id": 3, + "offset": 240, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3023276954 + }, + "m_itemID": { + "type": "gid", + "id": 4, + "offset": 96, + "flags": 33554439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 569545460 + }, + "m_spellName": { + "type": "std::string", + "id": 5, + "offset": 104, + "flags": 268435463, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2688485244, + "enum_options": { + "__BASECLASS": "SpellTemplate" + } + }, + "m_adjectives": { + "type": "std::string", + "id": 6, + "offset": 288, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2967855037 + }, + "m_cookTime": { + "type": "int", + "id": 7, + "offset": 172, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1895782037 + }, + "m_goldCost": { + "type": "int", + "id": 8, + "offset": 176, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 444550297 + }, + "m_crownsCost": { + "type": "int", + "id": 9, + "offset": 180, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1592212719 + }, + "m_arenaPointCost": { + "type": "int", + "id": 10, + "offset": 184, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1819621796 + }, + "m_pvpCurrencyCost": { + "type": "int", + "id": 11, + "offset": 188, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 645595444 + }, + "m_pvpTourneyCurrencyCost": { + "type": "int", + "id": 12, + "offset": 192, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 517874954 + }, + "m_school": { + "type": "std::string", + "id": 13, + "offset": 208, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2438566051 + }, + "m_purchaseRequirements": { + "type": "class RequirementList*", + "id": 14, + "offset": 200, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3174641793 + }, + "m_holidayFlag": { + "type": "std::string", + "id": 15, + "offset": 320, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2994795359 + }, + "m_itemLootTable": { + "type": "std::string", + "id": 16, + "offset": 352, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2176436048 + }, + "m_alternateDescription": { + "type": "std::string", + "id": 17, + "offset": 384, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2784283583 + }, + "m_displayRequirements": { + "type": "class RequirementList*", + "id": 18, + "offset": 416, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3646782876 + } + } + }, + "1732744233": { + "name": "class SharedPointer", + "bases": [ + "GameEffectBase", + "PropertyClass" + ], + "hash": 1732744233, + "properties": { + "m_currentTickCount": { + "type": "double", + "id": 0, + "offset": 80, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2533274692 + }, + "m_effectNameID": { + "type": "unsigned int", + "id": 1, + "offset": 96, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1204067144 + }, + "m_bIsOnPet": { + "type": "bool", + "id": 2, + "offset": 73, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 522593303 + }, + "m_originatorID": { + "type": "gid", + "id": 3, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1131810019 + }, + "m_itemSlotID": { + "type": "unsigned int", + "id": 4, + "offset": 112, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1895747595 + }, + "m_internalID": { + "type": "int", + "id": 5, + "offset": 92, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1643137924 + }, + "m_endTime": { + "type": "unsigned int", + "id": 6, + "offset": 88, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 716479635 + }, + "m_happinessCost": { + "type": "int", + "id": 7, + "offset": 128, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1107125310 + }, + "m_cooldown": { + "type": "int", + "id": 8, + "offset": 132, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1897549823 + }, + "m_usesPerCombat": { + "type": "int", + "id": 9, + "offset": 136, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1445312791 + }, + "m_combatTalent": { + "type": "bool", + "id": 10, + "offset": 140, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2113651857 + }, + "m_triggerName": { + "type": "std::string", + "id": 11, + "offset": 144, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3100183568 + }, + "m_extra1": { + "type": "std::string", + "id": 12, + "offset": 176, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1916008880 + }, + "m_extra2": { + "type": "std::string", + "id": 13, + "offset": 208, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1916008881 + }, + "m_lootTableName": { + "type": "std::string", + "id": 14, + "offset": 240, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2333333378 + }, + "m_powerDisplayName": { + "type": "std::string", + "id": 15, + "offset": 272, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2338393887 + }, + "m_requirementList": { + "type": "class SharedPointer", + "id": 16, + "offset": 304, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3783909798 + }, + "m_requirementFailedString": { + "type": "std::string", + "id": 17, + "offset": 320, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2051573416 + }, + "m_noPVP": { + "type": "bool", + "id": 18, + "offset": 356, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 806455846 + }, + "m_rampUp": { + "type": "int", + "id": 19, + "offset": 360, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 899539119 + }, + "m_description": { + "type": "std::string", + "id": 20, + "offset": 368, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1649374815 + }, + "m_myTurn": { + "type": "bool", + "id": 21, + "offset": 400, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 733913410 + } + } + }, + "450457970": { + "name": "class CharMap", + "bases": [ + "PropertyClass" + ], + "hash": 450457970, + "properties": { + "m_src": { + "type": "unsigned short", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 820631632 + }, + "m_dst": { + "type": "unsigned short", + "id": 1, + "offset": 74, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 820615347 + } + } + }, + "891592863": { + "name": "class AuctionHouseOption", + "bases": [ + "ServiceOptionBase", + "PropertyClass" + ], + "hash": 891592863, + "properties": { + "m_serviceName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2206028813 + }, + "m_iconKey": { + "type": "std::string", + "id": 1, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2457138637 + }, + "m_displayKey": { + "type": "std::string", + "id": 2, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3023276954 + }, + "m_serviceIndex": { + "type": "unsigned int", + "id": 3, + "offset": 204, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2103126710 + }, + "m_forceInteract": { + "type": "bool", + "id": 4, + "offset": 200, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1705789564 + }, + "m_auctionHousePurchaseKey": { + "type": "unsigned int", + "id": 5, + "offset": 216, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 394777768 + }, + "m_sellModifier": { + "type": "float", + "id": 6, + "offset": 220, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 360128886 + } + } + }, + "1440307576": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1440307576, + "properties": { + "m_entries": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1075986553 + } + } + }, + "1734454951": { + "name": "class FishingLevelControl", + "bases": [ + "Window", + "PropertyClass" + ], + "hash": 1734454951, + "properties": { + "m_sName": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306437263 + }, + "m_Children": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 65667, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621225959 + }, + "m_Style": { + "type": "unsigned int", + "id": 2, + "offset": 152, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "SCALE_CHILDREN": 2, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "FOCUS_LOCKED": 64, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152 + } + }, + "m_Flags": { + "type": "unsigned int", + "id": 3, + "offset": 156, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } + }, + "m_Window": { + "type": "class Rect", + "id": 4, + "offset": 160, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3105139380 + }, + "m_fTargetAlpha": { + "type": "float", + "id": 5, + "offset": 212, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1809129834 + }, + "m_fDisabledAlpha": { + "type": "float", + "id": 6, + "offset": 216, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1389987675 + }, + "m_fAlpha": { + "type": "float", + "id": 7, + "offset": 208, + "flags": 65671, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 482130755 + }, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3623628394 + }, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2102211316 + }, + "m_sScript": { + "type": "std::string", + "id": 10, + "offset": 352, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1846695875 + }, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3389835433 + }, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547159940 + }, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513510520 + }, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3091503757 + } + } + }, + "450773622": { + "name": "class SharedPointer", + "bases": [ + "MoveController::MoveCommand", + "PropertyClass" + ], + "hash": 450773622, + "properties": { + "m_vTarget": { + "type": "class Vector3D", + "id": 0, + "offset": 88, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3770499167 + }, + "m_fSpeed": { + "type": "float", + "id": 1, + "offset": 100, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 503609006 + } + } + }, + "1355637934": { + "name": "class AdvPvPEloEntryListWrapper", + "bases": [ + "PropertyClass" + ], + "hash": 1355637934, + "properties": { + "m_entries": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1075986553 + } + } + }, + "1733238545": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1733238545, + "properties": { + "m_killer": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 635022555 + }, + "m_despawnEffect": { + "type": "unsigned int", + "id": 1, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1477583404 + } + } + }, + "450675315": { + "name": "class SharedPointer", + "bases": [ + "MoveController::MoveCommand", + "PropertyClass" + ], + "hash": 450675315, + "properties": { + "m_fSleep": { + "type": "float", + "id": 0, + "offset": 88, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 503465270 + } + } + }, + "891758248": { + "name": "class UnlockTriggerBehavior*", + "bases": [ + "UnlockTriggerBehaviorBase", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 891758248, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + } + } + }, + "1331628709": { + "name": "class BracketRewardsPlaceMapping*", + "bases": [ + "PropertyClass" + ], + "hash": 1331628709, + "properties": { + "m_numOfTeams": { + "type": "unsigned int", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2164625196 + }, + "m_mappedPlace": { + "type": "unsigned int", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1626881929 + } + } + }, + "1733211933": { + "name": "class SharedPointer", + "bases": [ + "WizItemLocations", + "PropertyClass" + ], + "hash": 1733211933, + "properties": { + "m_itemType": { + "type": "enum WizItemLocations::eItemType", + "id": 0, + "offset": 72, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3482173907, + "enum_options": { + "shop": 0, + "quest": 1, + "boss": 2, + "gardening": 3, + "goldChest": 4 + } + }, + "m_quests": { + "type": "class SharedPointer", + "id": 1, + "offset": 80, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2616788661 + } + } + }, + "1316675974": { + "name": "class SharedPointer", + "bases": [ + "ServiceOptionBase", + "PropertyClass" + ], + "hash": 1316675974, + "properties": { + "m_serviceName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2206028813 + }, + "m_iconKey": { + "type": "std::string", + "id": 1, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2457138637 + }, + "m_displayKey": { + "type": "std::string", + "id": 2, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3023276954 + }, + "m_serviceIndex": { + "type": "unsigned int", + "id": 3, + "offset": 204, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2103126710 + }, + "m_forceInteract": { + "type": "bool", + "id": 4, + "offset": 200, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1705789564 + } + } + }, + "1307871426": { + "name": "enum SegmentationRequrinment::OPERATOR_TYPE", + "bases": [], + "hash": 1307871426, + "properties": {} + }, + "451348209": { + "name": "class WizBugReport*", + "bases": [ + "BugReport", + "PropertyClass" + ], + "hash": 451348209, + "properties": { + "m_clientVersion": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2207163808 + }, + "m_type": { + "type": "enum BugType", + "id": 1, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 889643611, + "enum_options": { + "BT_CRASH": 1, + "BT_GAME_STOPPER": 2, + "BT_INTERFERENCE": 3, + "BT_ANNOYANCE": 4, + "BT_FEATURE_REQUEST": 5, + "BT_COMMENT": 6 + } + }, + "m_canReproduce": { + "type": "bool", + "id": 2, + "offset": 108, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 859813390 + }, + "m_description": { + "type": "std::wstring", + "id": 3, + "offset": 112, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1445360156 + }, + "m_systemType": { + "type": "enum WizBugReport::SystemType", + "id": 4, + "offset": 144, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1170942560, + "enum_options": { + "ST_OTHER": 0, + "ST_QUEST": 1, + "ST_SHOP": 2, + "ST_MONSTER": 3, + "ST_SPELL": 4, + "ST_ITEM": 5, + "ST_INTERFACE": 6 + } + }, + "m_ideaType": { + "type": "enum WizBugReport::IdeaType", + "id": 5, + "offset": 148, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1042875837, + "enum_options": { + "IT_ADD": 0, + "IT_CHANGE": 1, + "IT_NONE": 2 + } + }, + "m_userId": { + "type": "gid", + "id": 6, + "offset": 184, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1037989732 + }, + "m_gender": { + "type": "enum WizBugReport::UserGender", + "id": 7, + "offset": 196, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 625694774, + "enum_options": { + "UG_Unknown": 0, + "UG_Male": 1, + "UG_Female": 2 + } + }, + "m_age": { + "type": "unsigned char", + "id": 8, + "offset": 192, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 904628669 + }, + "m_userName": { + "type": "std::string", + "id": 9, + "offset": 152, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2213937019 + }, + "m_releaseUpdate": { + "type": "std::string", + "id": 10, + "offset": 208, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1780854143 + }, + "m_jiraIssue": { + "type": "std::string", + "id": 11, + "offset": 240, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1589236010 + }, + "m_osString": { + "type": "std::string", + "id": 12, + "offset": 272, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3500554164 + } + } + }, + "893103160": { + "name": "class SharedPointer", + "bases": [ + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 893103160, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + }, + "m_sActorPrefix": { + "type": "std::string", + "id": 2, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3246317205 + }, + "m_fPerPipDelay": { + "type": "float", + "id": 3, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1466507836 + }, + "m_fRate": { + "type": "float", + "id": 4, + "offset": 156, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 883665801 + } + } + }, + "1299674782": { + "name": "class SegmentationRequrinmentsList", + "bases": [ + "PropertyClass" + ], + "hash": 1299674782, + "properties": { + "m_segRequirnments": { + "type": "class SegmentationRequrinment", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1161472684 + }, + "m_bApplyDiscount": { + "type": "bool", + "id": 1, + "offset": 96, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1270539076 + }, + "m_nDiscountPrice": { + "type": "unsigned int", + "id": 2, + "offset": 100, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1342003831 + }, + "m_nDiscountPercent": { + "type": "unsigned int", + "id": 3, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 333850677 + }, + "m_bShowStrikethruPrice": { + "type": "bool", + "id": 4, + "offset": 108, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1930806814 + } + } + }, + "1734332143": { + "name": "class SharedPointer", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 1734332143, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + }, + "m_visualAttributeType": { + "type": "enum VisualAttributeType", + "id": 1, + "offset": 120, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2701225082, + "enum_options": { + "VAT_HairStyle": 0, + "VAT_HairColor": 1, + "VAT_FaceStyle": 2, + "VAT_SkinColor": 3, + "VAT_EyeColor": 4, + "VAT_FacePaint": 5, + "VAT_NewEyeColor": 6, + "VAT_NewFaceStyle": 7, + "VAT_NoseStyle": 8, + "VAT_MouthStyle": 9, + "VAT_AccessoryStyle": 10, + "VAT_EyebrowStyle": 11, + "VAT_LipColorStyle": 12, + "VAT_BoyColor": 13, + "VAT_BoyTrimColor": 14, + "VAT_GirlColor": 15, + "VAT_GirlTrimColor": 16 + } + }, + "m_sourceFile": { + "type": "std::string", + "id": 2, + "offset": 128, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2304987980 + }, + "m_referenceFile": { + "type": "std::string", + "id": 3, + "offset": 160, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1866483306 + }, + "m_color": { + "type": "class Color", + "id": 4, + "offset": 192, + "flags": 262151, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1791663549 + }, + "m_equipmentIcon": { + "type": "std::string", + "id": 5, + "offset": 200, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1920035708 + } + } + }, + "451272660": { + "name": "class DMLTable", + "bases": [], + "hash": 451272660, + "properties": {} + }, + "892480983": { + "name": "class EquipmentBehaviorTemplate", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 892480983, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + }, + "m_itemList": { + "type": "unsigned int", + "id": 1, + "offset": 120, + "flags": 33554439, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1892907768 + }, + "m_equipmentTemplate": { + "type": "std::string", + "id": 2, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2464606287 + }, + "m_infoList": { + "type": "class SharedPointer", + "id": 3, + "offset": 136, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1525681909 + } + } + }, + "1295841521": { + "name": "class CustomEmoteBehavior*", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1295841521, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + } + } + }, + "1733903409": { + "name": "class SchoolOfFocusOption", + "bases": [ + "PropertyClass" + ], + "hash": 1733903409, + "properties": { + "m_schoolNameID": { + "type": "unsigned int", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 624113571 + } + } + }, + "892381710": { + "name": "class AmbientSoundBehaviorTemplate", + "bases": [ + "SoundBehaviorTemplate", + "AreaBehaviorTemplate", + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 892381710, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + }, + "m_radius": { + "type": "float", + "id": 1, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 989410271 + }, + "m_category": { + "type": "enum AudioCategory", + "id": 2, + "offset": 124, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2951251982, + "enum_options": { + "AudioCategory_Irrelevent": 0, + "AudioCategory_Accoustic": 1, + "AudioCategory_Noise": 2, + "AudioCategory_Music": 3, + "AudioCategory_MusicAtSFXVolume": 4, + "AudioCategory_Dialog": 5, + "AudioCategory_UI": 6, + "AudioCategory_NoiseAtMusicVolume": 7 + } + }, + "m_exclusive": { + "type": "bool", + "id": 3, + "offset": 128, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 824383403 + }, + "m_active": { + "type": "bool", + "id": 4, + "offset": 129, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 239335471 + }, + "m_enableReqs": { + "type": "class SharedPointer", + "id": 5, + "offset": 136, + "flags": 263, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3158020443 + }, + "m_trackFilenameList": { + "type": "std::string", + "id": 6, + "offset": 152, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2531081709 + }, + "m_playList": { + "type": "class PlayListEntry*", + "id": 7, + "offset": 176, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 3907873161 + }, + "m_priority": { + "type": "int", + "id": 8, + "offset": 208, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1235205852 + }, + "m_volume": { + "type": "float", + "id": 9, + "offset": 200, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1162855023 + }, + "m_loopCount": { + "type": "int", + "id": 10, + "offset": 204, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 865634717 + }, + "m_progression": { + "type": "enum PlayList::Progression", + "id": 11, + "offset": 220, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3279400238, + "enum_options": { + "Sequence": 0, + "Random": 1, + "SequenceOnceOnly": 2, + "RandomNoRepeat": 3 + } + }, + "m_progressMin": { + "type": "float", + "id": 12, + "offset": 212, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1497550192 + }, + "m_progressMax": { + "type": "float", + "id": 13, + "offset": 216, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1497549938 + }, + "m_audioFilterSet": { + "type": "unsigned int", + "id": 14, + "offset": 224, + "flags": 33554439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 831339825 + }, + "m_animationNameFilter": { + "type": "std::string", + "id": 15, + "offset": 232, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2292854242 + }, + "m_functionallabel": { + "type": "std::string", + "id": 16, + "offset": 264, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3589331278 + } + } + }, + "1294242832": { + "name": "class UnknownLootInfo", + "bases": [ + "LootInfo", + "LootInfoBase", + "PropertyClass" + ], + "hash": 1294242832, + "properties": { + "m_lootType": { + "type": "enum LootInfo::LOOT_TYPE", + "id": 0, + "offset": 72, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1591891442, + "enum_options": { + "LOOT_TYPE_NONE": 0, + "LOOT_TYPE_GOLD": 1, + "LOOT_TYPE_MANA": 2, + "LOOT_TYPE_ITEM": 3, + "LOOT_TYPE_TREASURE_CARD": 4, + "LOOT_TYPE_MAGIC_XP": 5, + "LOOT_TYPE_ADD_SPELL": 6, + "LOOT_TYPE_MAX_HEALTH": 7, + "LOOT_TYPE_MAX_GOLD": 8, + "LOOT_TYPE_MAX_MANA": 9, + "LOOT_TYPE_MAX_POTION": 10, + "LOOT_TYPE_TRAINING_POINTS": 11, + "LOOT_TYPE_RECIPE": 12, + "LOOT_TYPE_CRAFTING_SLOT": 13, + "LOOT_TYPE_REAGENT": 14, + "LOOT_TYPE_PETSNACK": 15, + "LOOT_TYPE_GARDENING_XP": 16, + "LOOT_TYPE_PET_XP": 17, + "LOOT_TYPE_TREASURE_TABLE": 18, + "LOOT_TYPE_ARENA_POINTS": 19, + "LOOT_TYPE_ARENA_BONUS_POINTS": 20, + "LOOT_TYPE_GROUP": 21, + "LOOT_TYPE_FISHING_XP": 22, + "LOOT_TYPE_EVENT_CURRENCY_1": 24, + "LOOT_TYPE_EVENT_CURRENCY_2": 25, + "LOOT_TYPE_PVP_CURRENCY": 26, + "LOOT_TYPE_PVP_CURRENCY_BONUS": 27, + "LOOT_TYPE_PVP_TOURNEY_CURRENCY": 28, + "LOOT_TYPE_PVP_TOURNEY_CURRENCY_BONUS": 29, + "LOOT_TYPE_FURNITURE_ESSENCE": 30 + } + } + } + }, + "1294168479": { + "name": "class std::list >", + "bases": [], + "hash": 1294168479, + "properties": {} + }, + "452277545": { + "name": "class SavedCharacterLists", + "bases": [ + "PropertyClass" + ], + "hash": 452277545, + "properties": { + "m_boyCharacterList": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 484937069 + }, + "m_girlCharacterList": { + "type": "class SharedPointer", + "id": 1, + "offset": 88, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2372941617 + } + } + }, + "1293777561": { + "name": "class CantripLevelInfo", + "bases": [ + "PropertyClass" + ], + "hash": 1293777561, + "properties": { + "m_level": { + "type": "unsigned char", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1438884808 + }, + "m_xpToLevel": { + "type": "int", + "id": 1, + "offset": 76, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1972600157 + }, + "m_levelName": { + "type": "std::string", + "id": 2, + "offset": 80, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3595417396 + } + } + }, + "892780504": { + "name": "class CinematicInteractInfo*", + "bases": [ + "PropertyClass" + ], + "hash": 892780504, + "properties": { + "m_actorState": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2574256277 + }, + "m_playerCinematicState": { + "type": "std::string", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3255674198 + }, + "m_playerEmote": { + "type": "std::string", + "id": 2, + "offset": 136, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2232796226 + } + } + }, + "1734635885": { + "name": "class SharedPointer", + "bases": [ + "GameEffectTemplate", + "PropertyClass" + ], + "hash": 1734635885, + "properties": { + "m_effectName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2029161513 + }, + "m_effectCategory": { + "type": "std::string", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1852673222 + }, + "m_sortOrder": { + "type": "int", + "id": 2, + "offset": 148, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1411218206 + }, + "m_duration": { + "type": "double", + "id": 3, + "offset": 192, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2727932435 + }, + "m_stackingCategories": { + "type": "std::string", + "id": 4, + "offset": 160, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1774497525 + }, + "m_isPersistent": { + "type": "bool", + "id": 5, + "offset": 153, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 923861920 + }, + "m_bIsOnPet": { + "type": "bool", + "id": 6, + "offset": 154, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 522593303 + }, + "m_isPublic": { + "type": "bool", + "id": 7, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1728439822 + }, + "m_visualEffectAddName": { + "type": "std::string", + "id": 8, + "offset": 200, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3382086694 + }, + "m_visualEffectRemoveName": { + "type": "std::string", + "id": 9, + "offset": 232, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1541697323 + }, + "m_onAddFunctorName": { + "type": "std::string", + "id": 10, + "offset": 280, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1561843107 + }, + "m_onRemoveFunctorName": { + "type": "std::string", + "id": 11, + "offset": 312, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2559017864 + }, + "m_stackingRule": { + "type": "enum STACKING_RULE", + "id": 12, + "offset": 144, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 431568889, + "enum_options": { + "STACKING_ALLOWED": 0, + "STACKING_NOSTACK": 1, + "STACKING_REPLACE": 2 + } + } + } + }, + "892779224": { + "name": "class CinematicInteractInfo", + "bases": [ + "PropertyClass" + ], + "hash": 892779224, + "properties": { + "m_actorState": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2574256277 + }, + "m_playerCinematicState": { + "type": "std::string", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3255674198 + }, + "m_playerEmote": { + "type": "std::string", + "id": 2, + "offset": 136, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2232796226 + } + } + }, + "1293941401": { + "name": "class CantripLevelInfo*", + "bases": [ + "PropertyClass" + ], + "hash": 1293941401, + "properties": { + "m_level": { + "type": "unsigned char", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1438884808 + }, + "m_xpToLevel": { + "type": "int", + "id": 1, + "offset": 76, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1972600157 + }, + "m_levelName": { + "type": "std::string", + "id": 2, + "offset": 80, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3595417396 + } + } + }, + "459464924": { + "name": "class SharedPointer", + "bases": [ + "ActivateHangingEffectCinematicAction", + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 459464924, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + }, + "m_activate": { + "type": "bool", + "id": 2, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 142527940 + }, + "m_cloaked": { + "type": "bool", + "id": 3, + "offset": 121, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 7349510 + } + } + }, + "454569814": { + "name": "class SharedPointer", + "bases": [ + "ServiceOptionBase", + "PropertyClass" + ], + "hash": 454569814, + "properties": { + "m_serviceName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2206028813 + }, + "m_iconKey": { + "type": "std::string", + "id": 1, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2457138637 + }, + "m_displayKey": { + "type": "std::string", + "id": 2, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3023276954 + }, + "m_serviceIndex": { + "type": "unsigned int", + "id": 3, + "offset": 204, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2103126710 + }, + "m_forceInteract": { + "type": "bool", + "id": 4, + "offset": 200, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1705789564 + } + } + }, + "1741772096": { + "name": "class SharedPointer", + "bases": [ + "Window", + "PropertyClass" + ], + "hash": 1741772096, + "properties": { + "m_sName": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306437263 + }, + "m_Children": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621225959 + }, + "m_Style": { + "type": "unsigned int", + "id": 2, + "offset": 152, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152, + "DLC_SPELLTIP": 16777216, + "DLC_SELECT": 33554432 } }, - "m_eMountType": { - "type": "enum eMountType", + "m_Flags": { + "type": "unsigned int", "id": 3, - "offset": 176, - "flags": 2097159, + "offset": 156, + "flags": 1048583, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3097765662, + "hash": 967851578, "enum_options": { - "eMNT_Standard": 0, - "eMNT_Floating": 1 + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 } }, - "m_adjustableAnimationRate": { - "type": "bool", + "m_Window": { + "type": "class Rect", "id": 4, - "offset": 180, - "flags": 7, + "offset": 160, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 698897022 + "hash": 3105139380 }, - "m_primaryDyeToTexture": { - "type": "class MountDyeToTexture", + "m_fTargetAlpha": { + "type": "float", "id": 5, - "offset": 120, - "flags": 7, - "container": "List", - "dynamic": true, + "offset": 212, + "flags": 135, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 2402789479 + "hash": 1809129834 }, - "m_secondaryDyeToTexture": { - "type": "class MountDyeToTexture", + "m_fDisabledAlpha": { + "type": "float", "id": 6, - "offset": 136, - "flags": 7, - "container": "List", - "dynamic": true, + "offset": 216, + "flags": 135, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 2282848843 + "hash": 1389987675 }, - "m_patternToTexture": { - "type": "class MountDyeToTexture", + "m_fAlpha": { + "type": "float", "id": 7, - "offset": 152, - "flags": 7, - "container": "List", - "dynamic": true, + "offset": 208, + "flags": 65671, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 1665998015 + "hash": 482130755 }, - "m_soundMountEquip": { - "type": "std::string", + "m_pWindowStyle": { + "type": "class SharedPointer", "id": 8, - "offset": 184, - "flags": 131079, + "offset": 232, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 2862460187 + "pointer": true, + "hash": 3623628394 }, - "m_geometryOption": { - "type": "int", + "m_sHelp": { + "type": "std::wstring", "id": 9, - "offset": 216, - "flags": 7, + "offset": 248, + "flags": 4194439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1776153279 + "hash": 2102211316 }, - "m_numSeats": { - "type": "int", + "m_sScript": { + "type": "std::string", "id": 10, - "offset": 220, - "flags": 7, + "offset": 352, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1599962314, - "enum_options": { - "__DEFAULT": 1 - } + "hash": 1846695875 }, - "m_driverKFM": { - "type": "std::string", + "m_Offset": { + "type": "class Point", "id": 11, - "offset": 224, - "flags": 131079, + "offset": 192, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1883851493 + "hash": 3389835433 }, - "m_adjustedFocusHeight": { - "type": "float", + "m_Scale": { + "type": "class Point", "id": 12, - "offset": 256, - "flags": 7, + "offset": 200, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 863441156 + "hash": 2547159940 }, - "m_animationEventList": { - "type": "class SharedPointer", + "m_sTip": { + "type": "std::wstring", "id": 13, - "offset": 264, - "flags": 7, + "offset": 392, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513510520 + }, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, "container": "List", "dynamic": true, "singleton": false, - "pointer": true, - "hash": 2858101335 - } - } - }, - "1998134429": { - "name": "class std::list >", - "bases": [], - "hash": 1998134429, - "properties": {} - }, - "822329364": { - "name": "class LevelScaledEffect*", - "bases": [ - "StatisticEffect", - "GameEffectBase", - "PropertyClass" - ], - "hash": 822329364, - "properties": { - "m_currentTickCount": { - "type": "double", - "id": 0, - "offset": 80, - "flags": 63, + "pointer": false, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2533274692 + "hash": 3091503757 }, - "m_effectNameID": { - "type": "unsigned int", - "id": 1, - "offset": 96, - "flags": 63, + "m_cardSize": { + "type": "class Size", + "id": 16, + "offset": 676, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1204067144 + "hash": 1135567057 }, - "m_bIsOnPet": { - "type": "bool", - "id": 2, - "offset": 73, - "flags": 31, + "m_spacing": { + "type": "int", + "id": 17, + "offset": 684, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 522593303 + "hash": 1481011679 }, - "m_originatorID": { - "type": "gid", - "id": 3, - "offset": 104, - "flags": 39, + "m_verticalSpacingAdjust": { + "type": "int", + "id": 18, + "offset": 688, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1131810019 + "hash": 2069000644 }, - "m_itemSlotID": { - "type": "unsigned int", - "id": 4, - "offset": 112, - "flags": 63, + "m_slotImage": { + "type": "class SharedPointer", + "id": 19, + "offset": 616, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1895747595 + "pointer": true, + "hash": 2088856988 }, - "m_internalID": { + "m_treasureFrame": { "type": "int", - "id": 5, - "offset": 92, - "flags": 63, + "id": 20, + "offset": 632, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1643137924 - }, - "m_endTime": { + "hash": 178393840 + } + } + }, + "454099747": { + "name": "class CountdownBehavior", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 454099747, + "properties": { + "m_behaviorTemplateNameID": { "type": "unsigned int", - "id": 6, - "offset": 88, - "flags": 31, + "id": 0, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 716479635 + "hash": 223437287 }, - "m_lookupIndex": { - "type": "int", - "id": 7, - "offset": 128, + "m_time": { + "type": "float", + "id": 1, + "offset": 112, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1626623948 + "hash": 310085638 } } }, - "1193253413": { - "name": "class SharedPointer", + "1294237712": { + "name": "class UnknownLootInfo*", "bases": [ - "Requirement", + "LootInfo", + "LootInfoBase", "PropertyClass" ], - "hash": 1193253413, + "hash": 1294237712, "properties": { - "m_applyNOT": { - "type": "bool", + "m_lootType": { + "type": "enum LootInfo::LOOT_TYPE", "id": 0, "offset": 72, - "flags": 31, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1746328074, + "hash": 1591891442, "enum_options": { - "__DEFAULT": 0 + "LOOT_TYPE_NONE": 0, + "LOOT_TYPE_GOLD": 1, + "LOOT_TYPE_MANA": 2, + "LOOT_TYPE_ITEM": 3, + "LOOT_TYPE_TREASURE_CARD": 4, + "LOOT_TYPE_MAGIC_XP": 5, + "LOOT_TYPE_ADD_SPELL": 6, + "LOOT_TYPE_MAX_HEALTH": 7, + "LOOT_TYPE_MAX_GOLD": 8, + "LOOT_TYPE_MAX_MANA": 9, + "LOOT_TYPE_MAX_POTION": 10, + "LOOT_TYPE_TRAINING_POINTS": 11, + "LOOT_TYPE_RECIPE": 12, + "LOOT_TYPE_CRAFTING_SLOT": 13, + "LOOT_TYPE_REAGENT": 14, + "LOOT_TYPE_PETSNACK": 15, + "LOOT_TYPE_GARDENING_XP": 16, + "LOOT_TYPE_PET_XP": 17, + "LOOT_TYPE_TREASURE_TABLE": 18, + "LOOT_TYPE_ARENA_POINTS": 19, + "LOOT_TYPE_ARENA_BONUS_POINTS": 20, + "LOOT_TYPE_GROUP": 21, + "LOOT_TYPE_FISHING_XP": 22, + "LOOT_TYPE_EVENT_CURRENCY_1": 24, + "LOOT_TYPE_EVENT_CURRENCY_2": 25, + "LOOT_TYPE_PVP_CURRENCY": 26, + "LOOT_TYPE_PVP_CURRENCY_BONUS": 27, + "LOOT_TYPE_PVP_TOURNEY_CURRENCY": 28, + "LOOT_TYPE_PVP_TOURNEY_CURRENCY_BONUS": 29, + "LOOT_TYPE_FURNITURE_ESSENCE": 30 } - }, - "m_operator": { - "type": "enum Requirement::Operator", - "id": 1, - "offset": 76, - "flags": 2097183, + } + } + }, + "1738298685": { + "name": "class ActorDialogList", + "bases": [ + "ActorDialogListBase", + "PropertyClass" + ], + "hash": 1738298685, + "properties": { + "m_dialogs": { + "type": "class ActorDialog*", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2112889951 + } + } + }, + "453225998": { + "name": "class MadlibBlockList*", + "bases": [ + "PropertyClass" + ], + "hash": 453225998, + "properties": { + "m_madlibBlocks": { + "type": "class MadlibBlock*", + "id": 0, + "offset": 72, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2554334098 + } + } + }, + "893242432": { + "name": "class HidePolymorphFloatyTextCinematicAction*", + "bases": [ + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 893242432, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2672792317, - "enum_options": { - "ROP_AND": 0, - "ROP_OR": 1, - "__DEFAULT": "ROP_AND" - } + "hash": 2237098605 }, - "m_badgeName": { + "m_actor": { "type": "std::string", - "id": 2, + "id": 1, "offset": 80, - "flags": 268435487, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3002948047, - "enum_options": { - "__BASECLASS": "BadgeTemplate" - } + "hash": 2285866132 } } }, - "1997400328": { - "name": "class ResSummonHenchman*", + "1738178676": { + "name": "class DailyQuestReward", "bases": [ - "Result", "PropertyClass" ], - "hash": 1997400328, + "hash": 1738178676, "properties": { - "m_templateID": { - "type": "gid", + "m_quantity": { + "type": "int", "id": 0, "offset": 72, - "flags": 33554439, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1075328001 + "hash": 169215289 + }, + "m_rewardType": { + "type": "enum DailyQuestReward::RewardTypes", + "id": 1, + "offset": 76, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3431311734, + "enum_options": { + "RT_Gold": 0, + "RT_Crowns": 1, + "RT_ArenaTickets": 2, + "RT_PvPCurrency": 3, + "RT_PvPTourneyCurrency": 4, + "RT_Chest": 5, + "RT_Quest": 6 + } + }, + "m_lootTable": { + "type": "std::string", + "id": 2, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2539512673 + }, + "m_doubleLootTable": { + "type": "std::string", + "id": 3, + "offset": 112, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2975549628 + }, + "m_anniversaryLootTable": { + "type": "std::string", + "id": 4, + "offset": 144, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1514594483 + }, + "m_halloweenLootTable": { + "type": "std::string", + "id": 5, + "offset": 176, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2915828832 + }, + "m_christmasLootTable": { + "type": "std::string", + "id": 6, + "offset": 208, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1878775663 } } }, - "823257584": { - "name": "class SharedPointer", + "452959950": { + "name": "class ZoneData", "bases": [ "PropertyClass" ], - "hash": 823257584, + "hash": 452959950, "properties": { - "m_sGender": { - "type": "std::string", + "m_nType": { + "type": "enum ZoneData::Type", "id": 0, "offset": 72, - "flags": 7, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3526777091 + "hash": 2656861130, + "enum_options": { + "ZONETYPE_INVALID": 4294967295, + "ZONETYPE_START": 0, + "ZONETYPE_STATIC": 1, + "ZONETYPE_DYNAMIC": 2 + } }, - "m_sBodySource": { + "m_zoneName": { "type": "std::string", "id": 1, - "offset": 104, - "flags": 131079, + "offset": 80, + "flags": 134217735, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2802913933 + "hash": 2171167736 }, - "m_sSkeletonSource": { + "m_zoneDisplayName": { "type": "std::string", "id": 2, - "offset": 136, - "flags": 131079, + "offset": 112, + "flags": 8388615, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1545150788 + "hash": 1962339438 }, - "m_idleAnimation": { - "type": "int", + "m_skyDomeName": { + "type": "std::string", "id": 3, - "offset": 168, + "offset": 144, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1402787576 + "hash": 2339979448 }, - "m_headElementList": { - "type": "class CharacterElement*", + "m_skyLayerName": { + "type": "std::string", "id": 4, - "offset": 176, - "flags": 7, + "offset": 184, + "flags": 131079, "container": "Vector", "dynamic": true, "singleton": false, - "pointer": true, - "hash": 568589744 + "pointer": false, + "hash": 2824410256 }, - "m_hatElementList": { - "type": "class CharacterElement*", + "m_collisionFileName": { + "type": "std::string", "id": 5, - "offset": 200, - "flags": 7, - "container": "Vector", - "dynamic": true, + "offset": 208, + "flags": 131079, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2416614427 + "pointer": false, + "hash": 1725365192 }, - "m_hairElementList": { - "type": "class CharacterElement*", + "m_gamebryoSceneFileName": { + "type": "std::string", "id": 6, - "offset": 224, - "flags": 7, - "container": "Vector", - "dynamic": true, + "offset": 240, + "flags": 131079, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1563065986 + "pointer": false, + "hash": 3084395168 }, - "m_torsoElementList": { - "type": "class CharacterElement*", + "m_musicFileName": { + "type": "std::string", "id": 7, - "offset": 248, - "flags": 7, - "container": "Vector", - "dynamic": true, + "offset": 272, + "flags": 131079, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2307446133 + "pointer": false, + "hash": 1817607805 }, - "m_feetElementList": { - "type": "class CharacterElement*", + "m_spawnList": { + "type": "class SpawnPointTemplate", "id": 8, - "offset": 272, + "offset": 304, "flags": 7, - "container": "Vector", + "container": "List", "dynamic": true, "singleton": false, - "pointer": true, - "hash": 671555138 + "pointer": false, + "hash": 1063041926 }, - "m_hairTextureList": { - "type": "class CharacterElement*", + "m_teleportList": { + "type": "class TeleporterTemplate", "id": 9, - "offset": 296, + "offset": 320, "flags": 7, - "container": "Vector", + "container": "List", "dynamic": true, "singleton": false, - "pointer": true, - "hash": 2218875305 + "pointer": false, + "hash": 1031682046 }, - "m_torsoTextureList": { - "type": "class CharacterElement*", + "m_locationList": { + "type": "class LocationTemplate", "id": 10, - "offset": 320, + "offset": 336, "flags": 7, - "container": "Vector", + "container": "List", "dynamic": true, "singleton": false, - "pointer": true, - "hash": 815771804 + "pointer": false, + "hash": 2114141903 }, - "m_torsoDecalList": { - "type": "class CharacterElement*", + "m_objectList": { + "type": "class SharedPointer", "id": 11, - "offset": 344, + "offset": 352, "flags": 7, - "container": "Vector", + "container": "List", "dynamic": true, "singleton": false, "pointer": true, - "hash": 808442148 + "hash": 882782852 }, - "m_skinTextureList": { - "type": "class CharacterElement*", + "m_allEffects": { + "type": "std::string", "id": 12, "offset": 368, "flags": 7, - "container": "Vector", + "container": "List", "dynamic": true, "singleton": false, - "pointer": true, - "hash": 2500320186 + "pointer": false, + "hash": 2483362772 }, - "m_skinDecalList": { - "type": "class CharacterElement*", + "m_healingPerMinute": { + "type": "int", "id": 13, - "offset": 392, + "offset": 480, "flags": 7, - "container": "Vector", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2545329346 + "pointer": false, + "hash": 782115659 }, - "m_hatTextureList": { - "type": "class CharacterElement*", + "m_playerPopThresh": { + "type": "int", "id": 14, - "offset": 416, + "offset": 484, "flags": 7, - "container": "Vector", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 924940098 + "pointer": false, + "hash": 1692004900 }, - "m_hatDecalList": { - "type": "class CharacterElement*", + "m_nSoftLimit": { + "type": "int", "id": 15, - "offset": 440, + "offset": 488, "flags": 7, - "container": "Vector", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1780727370 + "pointer": false, + "hash": 1593689635, + "enum_options": { + "__DEFAULT": 50 + } }, - "m_feetTextureList": { - "type": "class CharacterElement*", + "m_nHardLimit": { + "type": "int", "id": 16, - "offset": 464, + "offset": 492, "flags": 7, - "container": "Vector", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1327364457 + "pointer": false, + "hash": 1752405446, + "enum_options": { + "__DEFAULT": 100 + } }, - "m_feetDecalList": { - "type": "class CharacterElement*", + "m_farClip": { + "type": "float", "id": 17, - "offset": 488, + "offset": 496, "flags": 7, - "container": "Vector", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1828424369 + "pointer": false, + "hash": 1393981304, + "enum_options": { + "__DEFAULT": 25000 + } }, - "m_attachSlotList": { - "type": "class CharacterElement*", + "m_nearClipOverride": { + "type": "float", "id": 18, - "offset": 512, - "flags": 7, - "container": "Vector", - "dynamic": true, + "offset": 500, + "flags": 519, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1124990027 + "pointer": false, + "hash": 1092806405, + "enum_options": { + "__DEFAULT": 1 + } }, - "m_attachableList": { - "type": "class NamedCharacterElement", + "m_defaultBackgroundColorRed": { + "type": "float", "id": 19, - "offset": 536, + "offset": 504, "flags": 7, - "container": "Vector", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 2132808559 + "hash": 1511995894 }, - "m_skinDecalList2": { - "type": "class CharacterElement*", + "m_defaultBackgroundColorGreen": { + "type": "float", "id": 20, - "offset": 560, + "offset": 508, "flags": 7, - "container": "Vector", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1599566932 + "pointer": false, + "hash": 2127637260 }, - "m_faceElementList": { - "type": "class CharacterElement*", + "m_defaultBackgroundColorBlue": { + "type": "float", "id": 21, - "offset": 584, + "offset": 512, "flags": 7, - "container": "Vector", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1040559117 + "pointer": false, + "hash": 1908873795 }, - "m_eyeElementList": { - "type": "class CharacterElement*", + "m_fogColorRed": { + "type": "int", "id": 22, - "offset": 608, + "offset": 516, "flags": 7, - "container": "Vector", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1894800033 + "pointer": false, + "hash": 1578810896 }, - "m_mouthElementList": { - "type": "class CharacterElement*", + "m_fogColorGreen": { + "type": "int", "id": 23, - "offset": 632, + "offset": 520, "flags": 7, - "container": "Vector", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1586296075 + "pointer": false, + "hash": 1229332710 }, - "m_noseElementList": { - "type": "class CharacterElement*", + "m_fogColorBlue": { + "type": "int", "id": 24, - "offset": 656, + "offset": 524, "flags": 7, - "container": "Vector", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2343885043 + "pointer": false, + "hash": 557754685 }, - "m_accessoryElementList": { - "type": "class CharacterElement*", + "m_fogDensity": { + "type": "float", "id": 25, - "offset": 680, + "offset": 528, "flags": 7, - "container": "Vector", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 771146122 + "pointer": false, + "hash": 1170901171 }, - "m_eyeColorTextureList": { - "type": "class CharacterElement*", + "m_fogStartDensity": { + "type": "float", "id": 26, - "offset": 704, + "offset": 532, "flags": 7, - "container": "Vector", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1921350375 + "pointer": false, + "hash": 1642636961 }, - "m_faceDecalTextureList": { - "type": "class CharacterElement*", + "m_fogEnabled": { + "type": "bool", "id": 27, - "offset": 728, + "offset": 536, "flags": 7, - "container": "Vector", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1002745901 + "pointer": false, + "hash": 563358906 }, - "m_mouthDecalTextureList": { - "type": "class CharacterElement*", - "id": 28, - "offset": 752, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2358724587 - } - } - }, - "1998575840": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1998575840, - "properties": { - "m_circleNumber": { + "m_nObjectID": { "type": "unsigned int", - "id": 0, - "offset": 72, + "id": 28, + "offset": 540, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2324347272 + "hash": 748496927 }, - "m_templateID": { - "type": "unsigned int", - "id": 1, - "offset": 76, + "m_bDisableTransitionAutoHide": { + "type": "bool", + "id": 29, + "offset": 544, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1286746870 + "hash": 702738663 }, - "m_zonePath": { + "m_encounterNames": { "type": "std::string", - "id": 2, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, + "id": 30, + "offset": 384, + "flags": 268435463, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 2171239844 + "hash": 2150841410, + "enum_options": { + "__BASECLASS": "EncounterTemplate" + } }, - "m_activatorVolumeName": { + "m_encounterGroup": { "type": "std::string", - "id": 3, - "offset": 112, + "id": 31, + "offset": 400, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2802025985 + "hash": 2143153595 }, - "m_locationDisplayName": { + "m_zoneAdjectives": { "type": "std::string", - "id": 4, - "offset": 144, + "id": 32, + "offset": 432, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 2796282603 + "hash": 3603923993 }, - "m_zoneDisplayName": { + "m_zonePermissions": { "type": "std::string", - "id": 5, - "offset": 176, + "id": 33, + "offset": 464, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2928923475 + }, + "m_canPlaceTeleportMarker": { + "type": "bool", + "id": 34, + "offset": 545, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1962339438 + "hash": 600985755 }, - "m_overrideOffer": { - "type": "std::string", - "id": 6, - "offset": 208, - "flags": 7, + "m_filterSetUID": { + "type": "unsigned int", + "id": 35, + "offset": 548, + "flags": 33554695, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2733092717 + "hash": 1054674497 }, - "m_overrideCompleted": { - "type": "std::string", - "id": 7, - "offset": 240, - "flags": 7, + "m_conditionalSkyboxes": { + "type": "class SkyboxInfo", + "id": 36, + "offset": 552, + "flags": 263, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2512765286 + }, + "m_musicDelay": { + "type": "float", + "id": 37, + "offset": 568, + "flags": 263, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2887301912 + "hash": 1217785767 } } }, - "1196368601": { - "name": "class SharedPointer", + "1737415754": { + "name": "class ZoneTokenBooleanControl*", "bases": [ + "ZoneTokenBaseControl", "Window", "PropertyClass" ], - "hash": 1196368601, + "hash": 1737415754, "properties": { "m_sName": { "type": "std::string", @@ -569010,7 +466173,7 @@ "type": "class SharedPointer", "id": 1, "offset": 112, - "flags": 65667, + "flags": 65671, "container": "Vector", "dynamic": true, "singleton": false, @@ -569208,868 +466371,1135 @@ } } }, - "1195478758": { - "name": "enum MoveActorCinematicAction::kMoveActorDestination", - "bases": [], - "hash": 1195478758, - "properties": {} - }, - "824433843": { - "name": "class SpawnObjectInfo", + "452959310": { + "name": "class ZoneData*", "bases": [ - "CoreObjectInfo", "PropertyClass" ], - "hash": 824433843, + "hash": 452959310, "properties": { - "m_templateID.m_full": { - "type": "unsigned __int64", + "m_nType": { + "type": "enum ZoneData::Type", "id": 0, "offset": 72, - "flags": 33554439, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 633907631 + "hash": 2656861130, + "enum_options": { + "ZONETYPE_INVALID": 4294967295, + "ZONETYPE_START": 0, + "ZONETYPE_STATIC": 1, + "ZONETYPE_DYNAMIC": 2 + } }, - "m_nObjectID": { - "type": "unsigned int", + "m_zoneName": { + "type": "std::string", "id": 1, "offset": 80, - "flags": 7, + "flags": 134217735, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 748496927 + "hash": 2171167736 }, - "m_location": { - "type": "class Vector3D", + "m_zoneDisplayName": { + "type": "std::string", "id": 2, - "offset": 84, - "flags": 7, + "offset": 112, + "flags": 8388615, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2239683611 + "hash": 1962339438 }, - "m_orientation": { - "type": "class Vector3D", + "m_skyDomeName": { + "type": "std::string", "id": 3, - "offset": 96, + "offset": 144, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2344058766 + "hash": 2339979448 }, - "m_fScale": { - "type": "float", + "m_skyLayerName": { + "type": "std::string", "id": 4, - "offset": 108, - "flags": 7, - "container": "Static", - "dynamic": false, + "offset": 184, + "flags": 131079, + "container": "Vector", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 503137701 + "hash": 2824410256 }, - "m_zoneTag": { + "m_collisionFileName": { "type": "std::string", "id": 5, - "offset": 152, - "flags": 7, + "offset": 208, + "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3405382643 + "hash": 1725365192 }, - "m_startState": { + "m_gamebryoSceneFileName": { "type": "std::string", "id": 6, - "offset": 184, - "flags": 7, + "offset": 240, + "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2166880458 + "hash": 3084395168 }, - "m_overrideName": { + "m_musicFileName": { "type": "std::string", "id": 7, - "offset": 120, - "flags": 8388615, + "offset": 272, + "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1990707228 + "hash": 1817607805 }, - "m_globalDynamic": { - "type": "bool", + "m_spawnList": { + "type": "class SpawnPointTemplate", "id": 8, - "offset": 116, + "offset": 304, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1063041926 + }, + "m_teleportList": { + "type": "class TeleporterTemplate", + "id": 9, + "offset": 320, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1031682046 + }, + "m_locationList": { + "type": "class LocationTemplate", + "id": 10, + "offset": 336, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2114141903 + }, + "m_objectList": { + "type": "class SharedPointer", + "id": 11, + "offset": 352, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 882782852 + }, + "m_allEffects": { + "type": "std::string", + "id": 12, + "offset": 368, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2483362772 + }, + "m_healingPerMinute": { + "type": "int", + "id": 13, + "offset": 480, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1951691017 + "hash": 782115659 }, - "m_bUndetectable": { - "type": "bool", - "id": 9, - "offset": 216, + "m_playerPopThresh": { + "type": "int", + "id": 14, + "offset": 484, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1907454341 + "hash": 1692004900 }, - "m_spawnRequirements": { - "type": "class SharedPointer", - "id": 10, - "offset": 224, + "m_nSoftLimit": { + "type": "int", + "id": 15, + "offset": 488, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2309120870 + "pointer": false, + "hash": 1593689635, + "enum_options": { + "__DEFAULT": 50 + } }, - "m_loadingType": { - "type": "enum CoreObjectInfo::LoadingType", - "id": 11, - "offset": 112, - "flags": 2097159, + "m_nHardLimit": { + "type": "int", + "id": 16, + "offset": 492, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3522422550, + "hash": 1752405446, "enum_options": { - "STATIC_CLIENT_SERVER": 0, - "STATIC_CLIENT": 1, - "STATIC_SERVER": 2, - "DYNAMIC_SERVER": 3 + "__DEFAULT": 100 } }, - "m_kStartNodeType": { - "type": "enum SpawnObjectInfo::StartNodeType", - "id": 12, - "offset": 240, - "flags": 2097159, + "m_farClip": { + "type": "float", + "id": 17, + "offset": 496, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1545814623, + "hash": 1393981304, "enum_options": { - "SNT_RANDOM": 0, - "SNT_RANDOM_UNIQUE": 1, - "SNT_FIRST": 2, - "SNT_LAST": 3, - "SNT_SPECIFIC": 4 + "__DEFAULT": 25000 } }, - "m_startNode": { + "m_nearClipOverride": { + "type": "float", + "id": 18, + "offset": 500, + "flags": 519, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1092806405, + "enum_options": { + "__DEFAULT": 1 + } + }, + "m_defaultBackgroundColorRed": { + "type": "float", + "id": 19, + "offset": 504, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1511995894 + }, + "m_defaultBackgroundColorGreen": { + "type": "float", + "id": 20, + "offset": 508, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2127637260 + }, + "m_defaultBackgroundColorBlue": { + "type": "float", + "id": 21, + "offset": 512, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1908873795 + }, + "m_fogColorRed": { + "type": "int", + "id": 22, + "offset": 516, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1578810896 + }, + "m_fogColorGreen": { + "type": "int", + "id": 23, + "offset": 520, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1229332710 + }, + "m_fogColorBlue": { + "type": "int", + "id": 24, + "offset": 524, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 557754685 + }, + "m_fogDensity": { + "type": "float", + "id": 25, + "offset": 528, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1170901171 + }, + "m_fogStartDensity": { + "type": "float", + "id": 26, + "offset": 532, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1642636961 + }, + "m_fogEnabled": { + "type": "bool", + "id": 27, + "offset": 536, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 563358906 + }, + "m_nObjectID": { "type": "unsigned int", - "id": 13, - "offset": 256, + "id": 28, + "offset": 540, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1598161889, + "hash": 748496927 + }, + "m_bDisableTransitionAutoHide": { + "type": "bool", + "id": 29, + "offset": 544, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 702738663 + }, + "m_encounterNames": { + "type": "std::string", + "id": 30, + "offset": 384, + "flags": 268435463, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2150841410, "enum_options": { - "__DEFAULT": 0 + "__BASECLASS": "EncounterTemplate" } }, - "m_pathID": { - "type": "gid", - "id": 14, - "offset": 248, + "m_encounterGroup": { + "type": "std::string", + "id": 31, + "offset": 400, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 821494322 + "hash": 2143153595 }, - "m_uniqueLoc": { - "type": "char", - "id": 15, - "offset": 260, + "m_zoneAdjectives": { + "type": "std::string", + "id": 32, + "offset": 432, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 3603923993 + }, + "m_zonePermissions": { + "type": "std::string", + "id": 33, + "offset": 464, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2928923475 + }, + "m_canPlaceTeleportMarker": { + "type": "bool", + "id": 34, + "offset": 545, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 400014505 - } - } - }, - "1194894801": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1194894801, - "properties": { - "m_itemList": { - "type": "class SharedPointer", - "id": 0, - "offset": 168, - "flags": 27, + "hash": 600985755 + }, + "m_filterSetUID": { + "type": "unsigned int", + "id": 35, + "offset": 548, + "flags": 33554695, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1054674497 + }, + "m_conditionalSkyboxes": { + "type": "class SkyboxInfo", + "id": 36, + "offset": 552, + "flags": 263, "container": "List", "dynamic": true, "singleton": false, - "pointer": true, - "hash": 1983655699 + "pointer": false, + "hash": 2512765286 }, - "m_maxItemStack": { - "type": "int", - "id": 1, - "offset": 184, - "flags": 27, + "m_musicDelay": { + "type": "float", + "id": 37, + "offset": 568, + "flags": 263, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 673449637 + "hash": 1217785767 } } }, - "1998757649": { - "name": "class FriendlyPlayerInfoList*", + "893416143": { + "name": "class SharedPointer", "bases": [ + "Result", "PropertyClass" ], - "hash": 1998757649, + "hash": 893416143, "properties": { - "m_friendlyPlayerInfoList": { - "type": "class SharedPointer", + "m_sourceType": { + "type": "std::string", "id": 0, - "offset": 72, + "offset": 80, "flags": 7, - "container": "List", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2302789544 + "pointer": false, + "hash": 2305508654 + }, + "m_zoneLevelMax": { + "type": "unsigned int", + "id": 1, + "offset": 76, + "flags": 263, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1028933895 + }, + "m_zoneLevelMin": { + "type": "unsigned int", + "id": 2, + "offset": 72, + "flags": 263, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1028934149 } } }, - "824428723": { - "name": "class SpawnObjectInfo*", + "1294637035": { + "name": "class SharedPointer", "bases": [ - "CoreObjectInfo", "PropertyClass" ], - "hash": 824428723, + "hash": 1294637035, "properties": { - "m_templateID.m_full": { - "type": "unsigned __int64", + "m_GlobalID": { + "type": "gid", "id": 0, "offset": 72, - "flags": 33554439, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 633907631 + "hash": 843146230 }, - "m_nObjectID": { - "type": "unsigned int", + "m_CharacterID": { + "type": "gid", "id": 1, "offset": 80, - "flags": 7, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 748496927 + "hash": 1626688306 }, - "m_location": { - "type": "class Vector3D", + "m_sNameBlob": { + "type": "std::string", "id": 2, - "offset": 84, - "flags": 7, + "offset": 88, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2239683611 + "hash": 2372396590 }, - "m_orientation": { - "type": "class Vector3D", + "m_schoolID": { + "type": "unsigned int", "id": 3, - "offset": 96, - "flags": 7, + "offset": 120, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2344058766 + "hash": 369010242 }, - "m_fScale": { - "type": "float", + "m_level": { + "type": "unsigned int", "id": 4, - "offset": 108, - "flags": 7, + "offset": 124, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 503137701 + "hash": 1012687813 }, - "m_zoneTag": { + "m_zoneDisplayName": { "type": "std::string", "id": 5, - "offset": 152, - "flags": 7, + "offset": 128, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3405382643 + "hash": 1962339438 }, - "m_startState": { - "type": "std::string", + "m_hasFilteredChat": { + "type": "unsigned char", "id": 6, - "offset": 184, - "flags": 7, + "offset": 160, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2166880458 + "hash": 2657823291 }, - "m_overrideName": { - "type": "std::string", + "m_sigilSlot": { + "type": "unsigned int", "id": 7, - "offset": 120, - "flags": 8388615, + "offset": 164, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1990707228 + "hash": 1891552167 }, - "m_globalDynamic": { - "type": "bool", + "m_platformType": { + "type": "int", "id": 8, - "offset": 116, - "flags": 7, + "offset": 168, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1951691017 + "hash": 1300871393 + } + } + }, + "1736610199": { + "name": "class SharedPointer", + "bases": [ + "DerbyForceLaneChange", + "DerbyEffect", + "PropertyClass" + ], + "hash": 1736610199, + "properties": { + "m_buffType": { + "type": "enum DerbyTalentBuffType", + "id": 0, + "offset": 92, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1149251982, + "enum_options": { + "Buff": 0, + "Debuff": 1, + "Neither": 2 + } }, - "m_bUndetectable": { - "type": "bool", - "id": 9, - "offset": 216, - "flags": 7, + "m_kTarget": { + "type": "enum DerbyTargetType", + "id": 1, + "offset": 96, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1907454341 + "hash": 1807803351, + "enum_options": { + "kTargetInFront": 0, + "kTargetBehind": 1, + "kTargetFirst": 2, + "kTargetSelf": 3, + "kTargetAll": 4, + "kTargetLast": 5 + } }, - "m_spawnRequirements": { - "type": "class SharedPointer", - "id": 10, - "offset": 224, - "flags": 7, + "m_nDuration": { + "type": "int", + "id": 2, + "offset": 104, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2309120870 + "pointer": false, + "hash": 1110167982 }, - "m_loadingType": { - "type": "enum CoreObjectInfo::LoadingType", - "id": 11, - "offset": 112, - "flags": 2097159, + "m_effectID": { + "type": "unsigned int", + "id": 3, + "offset": 88, + "flags": 24, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3522422550, - "enum_options": { - "STATIC_CLIENT_SERVER": 0, - "STATIC_CLIENT": 1, - "STATIC_SERVER": 2, - "DYNAMIC_SERVER": 3 - } + "hash": 2347630439 }, - "m_kStartNodeType": { - "type": "enum SpawnObjectInfo::StartNodeType", - "id": 12, - "offset": 240, - "flags": 2097159, + "m_imageFilename": { + "type": "std::string", + "id": 4, + "offset": 112, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1545814623, - "enum_options": { - "SNT_RANDOM": 0, - "SNT_RANDOM_UNIQUE": 1, - "SNT_FIRST": 2, - "SNT_LAST": 3, - "SNT_SPECIFIC": 4 - } + "hash": 2813328063 }, - "m_startNode": { + "m_iconIndex": { "type": "unsigned int", - "id": 13, - "offset": 256, - "flags": 7, + "id": 5, + "offset": 144, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1598161889, - "enum_options": { - "__DEFAULT": 0 - } + "hash": 1265133262 }, - "m_pathID": { - "type": "gid", - "id": 14, - "offset": 248, - "flags": 7, + "m_soundOnActivate": { + "type": "std::string", + "id": 6, + "offset": 152, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 821494322 + "hash": 1956929714 }, - "m_uniqueLoc": { - "type": "char", - "id": 15, - "offset": 260, - "flags": 7, + "m_soundOnTarget": { + "type": "std::string", + "id": 7, + "offset": 184, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 400014505 - } - } - }, - "2004580525": { - "name": "class WizItemVendorData", - "bases": [ - "PropertyClass" - ], - "hash": 2004580525, - "properties": { - "m_shopKeeperID": { - "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 31, + "hash": 3444214056 + }, + "m_targetParticleEffect": { + "type": "std::string", + "id": 8, + "offset": 216, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 862026800 + "hash": 3048234723 }, - "m_shopType": { - "type": "unsigned int", - "id": 1, - "offset": 76, + "m_overheadMessage": { + "type": "std::string", + "id": 9, + "offset": 248, + "flags": 8388639, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1701018190 + }, + "m_requirements": { + "type": "class RequirementList", + "id": 10, + "offset": 280, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 658077993 + "hash": 2840988582 } } }, - "825163370": { - "name": "class SharedPointer", + "1294575809": { + "name": "class SharedPointer", "bases": [ - "BasePetItemBehavior", - "BehaviorInstance", "PropertyClass" ], - "hash": 825163370, + "hash": 1294575809, "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", + "m_bIsValidSegmentationData": { + "type": "bool", "id": 0, - "offset": 104, - "flags": 39, + "offset": 72, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 + "hash": 145039017 }, - "m_level": { - "type": "unsigned char", + "m_playerLevel": { + "type": "int", "id": 1, - "offset": 112, - "flags": 65727, + "offset": 76, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1438884808 + "hash": 743117695 }, - "m_XP": { - "type": "unsigned int", + "m_playerSchoolOfFocus": { + "type": "std::string", "id": 2, - "offset": 116, - "flags": 65727, + "offset": 80, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2301988085 + "hash": 2154520517 }, - "m_firstName": { + "m_accountNDaysAged": { "type": "int", "id": 3, - "offset": 264, - "flags": 65703, + "offset": 112, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1618303331 + "hash": 1683372023 }, - "m_middleName": { + "m_accountNDaysSinceLastLogin": { "type": "int", "id": 4, - "offset": 268, - "flags": 65703, + "offset": 116, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 199781034 + "hash": 1736007845 }, - "m_lastName": { + "m_accountNDaysSinceLastPurchase": { "type": "int", "id": 5, - "offset": 272, - "flags": 65703, + "offset": 120, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 328503983 + "hash": 1887348903 }, - "m_currentStats": { - "type": "class PetStat", + "m_accountNDaysLastCrownsPurchase": { + "type": "int", "id": 6, - "offset": 128, + "offset": 124, "flags": 31, - "container": "List", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 2342610661 + "hash": 1622259729 }, - "m_maxStats": { - "type": "class PetStat", + "m_accountIsMember": { + "type": "int", "id": 7, - "offset": 144, + "offset": 128, "flags": 31, - "container": "List", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 1846363080 + "hash": 1600243867 }, - "m_hatchedTimeSecs": { - "type": "unsigned int", + "m_accountIsCSR": { + "type": "int", "id": 8, - "offset": 160, - "flags": 65727, + "offset": 132, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 606051291 + "hash": 230424555 }, - "m_expressedTalents": { - "type": "unsigned int", + "m_accountNCrownsSpent": { + "type": "int", "id": 9, - "offset": 168, + "offset": 136, "flags": 31, - "container": "List", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 1557974043 + "hash": 1946996187 }, - "m_expressedDerbyTalents": { - "type": "unsigned int", + "m_accountNCrownsInWallet": { + "type": "int", "id": 10, - "offset": 184, + "offset": 140, "flags": 31, - "container": "List", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 484465777 - }, - "m_talentRatings": { - "type": "std::string", + "hash": 1171814609 + }, + "m_accountNDaysSinceItemPurchased": { + "type": "class SharedPointer", "id": 11, - "offset": 216, + "offset": 152, "flags": 31, "container": "List", "dynamic": true, "singleton": false, - "pointer": false, - "hash": 2170591163 + "pointer": true, + "hash": 2517785757 }, - "m_powerRatings": { - "type": "std::string", + "m_numOfParticularItemInInventory": { + "type": "class SharedPointer", "id": 12, - "offset": 232, + "offset": 168, "flags": 31, "container": "List", "dynamic": true, "singleton": false, - "pointer": false, - "hash": 1881287968 + "pointer": true, + "hash": 937766887 }, - "m_overallRating": { - "type": "unsigned int", + "m_numItemsOfCategoryInInventory": { + "type": "class SharedPointer", "id": 13, - "offset": 248, - "flags": 159, - "container": "Static", - "dynamic": false, + "offset": 184, + "flags": 31, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 462138631 + "pointer": true, + "hash": 1221776137 }, - "m_activeRating": { - "type": "unsigned int", + "m_playerHasBadge": { + "type": "class SharedPointer", "id": 14, - "offset": 252, - "flags": 159, - "container": "Static", - "dynamic": false, + "offset": 200, + "flags": 31, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 234391118 + "pointer": true, + "hash": 1707274667 }, - "m_costToMorph": { - "type": "unsigned int", + "m_accountNHighestWorld": { + "type": "int", "id": 15, - "offset": 256, - "flags": 65567, + "offset": 144, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1866472719 - }, - "m_rarity": { - "type": "unsigned int", - "id": 16, - "offset": 260, - "flags": 65567, + "hash": 1128631305 + } + } + }, + "1735114774": { + "name": "class GuildAchievementBehaviorTemplate", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 1735114774, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1111114664 - }, - "m_requiredXP": { - "type": "unsigned int", - "id": 17, - "offset": 120, - "flags": 31, + "hash": 3130754092 + } + } + }, + "453080484": { + "name": "struct CharacterChatStatsByText*", + "bases": [ + "PropertyClass" + ], + "hash": 453080484, + "properties": { + "m_text": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1890811574 + "hash": 1717580128 }, - "m_housingPetPrimaryColor": { - "type": "int", - "id": 18, - "offset": 276, - "flags": 65664, + "m_chatID": { + "type": "unsigned int", + "id": 1, + "offset": 104, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 525135139 + "hash": 531784794 }, - "m_housingPetPattern": { - "type": "int", - "id": 19, - "offset": 280, - "flags": 65664, + "m_usage": { + "type": "unsigned int", + "id": 2, + "offset": 108, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 165011646 - }, - "m_housingPetSecondaryColor": { - "type": "int", - "id": 20, - "offset": 284, - "flags": 65695, + "hash": 1023841410 + } + } + }, + "903514117": { + "name": "class SharedPointer", + "bases": [ + "ServiceOptionBase", + "PropertyClass" + ], + "hash": 903514117, + "properties": { + "m_serviceName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 358656263 + "hash": 2206028813 }, - "m_housingPetOriginalGID": { - "type": "gid", - "id": 21, - "offset": 288, - "flags": 65664, + "m_iconKey": { + "type": "std::string", + "id": 1, + "offset": 168, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1259075879 + "hash": 2457138637 }, - "m_housingPetJewelTemplateID": { - "type": "unsigned int", - "id": 22, - "offset": 296, - "flags": 65664, + "m_displayKey": { + "type": "std::string", + "id": 2, + "offset": 104, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1836117651 + "hash": 3023276954 }, - "m_happiness": { + "m_serviceIndex": { "type": "unsigned int", - "id": 23, - "offset": 300, - "flags": 65727, + "id": 3, + "offset": 204, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1380970552 + "hash": 2103126710 }, - "m_maximumHappiness": { - "type": "unsigned int", - "id": 24, - "offset": 304, + "m_forceInteract": { + "type": "bool", + "id": 4, + "offset": 200, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 874954582 - }, - "m_allTalents": { - "type": "unsigned int", - "id": 25, - "offset": 464, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1053182849 - }, - "m_allDerbyTalents": { - "type": "unsigned int", - "id": 26, - "offset": 480, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1165978519 - }, - "m_sSerializedMaxStats": { + "hash": 1705789564 + } + } + }, + "900642353": { + "name": "class TourneyTokenItemsOption*", + "bases": [ + "ServiceOptionBase", + "PropertyClass" + ], + "hash": 900642353, + "properties": { + "m_serviceName": { "type": "std::string", - "id": 27, - "offset": 328, - "flags": 65536, + "id": 0, + "offset": 72, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2078753551 + "hash": 2206028813 }, - "m_sSerializedStats": { + "m_iconKey": { "type": "std::string", - "id": 28, - "offset": 360, - "flags": 65536, + "id": 1, + "offset": 168, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3084176585 + "hash": 2457138637 }, - "m_sSerializedTalents": { + "m_displayKey": { "type": "std::string", - "id": 29, - "offset": 392, - "flags": 65536, + "id": 2, + "offset": 104, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3058423637 + "hash": 3023276954 }, - "m_sSerializedDerbyTalents": { - "type": "std::string", - "id": 30, - "offset": 424, - "flags": 65536, + "m_serviceIndex": { + "type": "unsigned int", + "id": 3, + "offset": 204, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1866554155 + "hash": 2103126710 }, - "m_bInitialized": { + "m_forceInteract": { "type": "bool", - "id": 31, - "offset": 456, - "flags": 65536, + "id": 4, + "offset": 200, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 233973963 + "hash": 1705789564 } } }, - "1196470535": { - "name": "class SharedPointer", + "1295470661": { + "name": "class BattlegroundMiniMapWindow", "bases": [ "Window", "PropertyClass" ], - "hash": 1196470535, + "hash": 1295470661, "properties": { "m_sName": { "type": "std::string", @@ -570284,194 +467714,222 @@ } } }, - "2003390837": { - "name": "class ReqIsHatched", + "1737361018": { + "name": "WeightedEntryT", "bases": [ - "Requirement", + "WeightedEntry", "PropertyClass" ], - "hash": 2003390837, + "hash": 1737361018, "properties": { - "m_applyNOT": { - "type": "bool", + "m_weight": { + "type": "unsigned int", "id": 0, "offset": 72, - "flags": 31, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1746328074, - "enum_options": { - "__DEFAULT": 0 - } + "hash": 1311209301 }, - "m_operator": { - "type": "enum Requirement::Operator", + "m_entry": { + "type": "std::string", "id": 1, - "offset": 76, - "flags": 2097183, + "offset": 80, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2672792317, - "enum_options": { - "ROP_AND": 0, - "ROP_OR": 1, - "__DEFAULT": "ROP_AND" - } + "hash": 2291005229 } } }, - "1196458162": { - "name": "class SharedPointer", + "897469938": { + "name": "class ClientDerbyModifyCheerCost", "bases": [ + "DerbyModifyCheerCost", + "DerbyEffect", "PropertyClass" ], - "hash": 1196458162, + "hash": 897469938, "properties": { - "m_characterID": { - "type": "gid", + "m_buffType": { + "type": "enum DerbyTalentBuffType", "id": 0, - "offset": 72, - "flags": 7, + "offset": 92, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 210498386 + "hash": 1149251982, + "enum_options": { + "Buff": 0, + "Debuff": 1, + "Neither": 2 + } }, - "m_rank": { - "type": "unsigned int", + "m_kTarget": { + "type": "enum DerbyTargetType", "id": 1, - "offset": 80, - "flags": 7, + "offset": 96, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 431206393 + "hash": 1807803351, + "enum_options": { + "kTargetInFront": 0, + "kTargetBehind": 1, + "kTargetFirst": 2, + "kTargetSelf": 3, + "kTargetAll": 4, + "kTargetLast": 5 + } }, - "m_nameBlob": { - "type": "std::string", + "m_nDuration": { + "type": "int", "id": 2, - "offset": 88, - "flags": 7, + "offset": 104, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3058206907 + "hash": 1110167982 }, - "m_characterLevel": { + "m_effectID": { "type": "unsigned int", "id": 3, - "offset": 120, - "flags": 7, + "offset": 88, + "flags": 24, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1018074066 + "hash": 2347630439 }, - "m_characterSchool": { - "type": "unsigned int", + "m_imageFilename": { + "type": "std::string", "id": 4, - "offset": 124, - "flags": 7, + "offset": 112, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1330015234 + "hash": 2813328063 }, - "m_wins": { + "m_iconIndex": { "type": "unsigned int", "id": 5, - "offset": 128, - "flags": 7, + "offset": 144, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 431394798 + "hash": 1265133262 }, - "m_losses": { - "type": "unsigned int", + "m_soundOnActivate": { + "type": "std::string", "id": 6, - "offset": 132, - "flags": 7, + "offset": 152, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 892951526 + "hash": 1956929714 }, - "m_ties": { - "type": "unsigned int", + "m_soundOnTarget": { + "type": "std::string", "id": 7, - "offset": 136, - "flags": 7, + "offset": 184, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 431286690 + "hash": 3444214056 }, - "m_gamesPlayed": { - "type": "unsigned int", + "m_targetParticleEffect": { + "type": "std::string", "id": 8, - "offset": 140, - "flags": 7, + "offset": 216, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1165998489 + "hash": 3048234723 }, - "m_points": { - "type": "unsigned int", + "m_overheadMessage": { + "type": "std::string", "id": 9, - "offset": 144, - "flags": 7, + "offset": 248, + "flags": 8388639, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1049128778 + "hash": 1701018190 + }, + "m_requirements": { + "type": "class RequirementList", + "id": 10, + "offset": 280, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2840988582 + }, + "m_costMap": { + "type": "class TerrainCheerCostMap", + "id": 11, + "offset": 376, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1929931701 } } }, - "2002643208": { - "name": "class ResSummonHenchman", + "453229070": { + "name": "class MadlibBlockList", "bases": [ - "Result", "PropertyClass" ], - "hash": 2002643208, + "hash": 453229070, "properties": { - "m_templateID": { - "type": "gid", + "m_madlibBlocks": { + "type": "class MadlibBlock*", "id": 0, "offset": 72, - "flags": 33554439, - "container": "Static", - "dynamic": false, + "flags": 31, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 1075328001 + "pointer": true, + "hash": 2554334098 } } }, - "1999431021": { - "name": "class WhirlyBurlyBehavior", + "895763997": { + "name": "class RaidGateBehavior*", "bases": [ - "WhirlyBurlyBehaviorBase", + "RaidGateBehaviorBase", "BehaviorInstance", "PropertyClass" ], - "hash": 1999431021, + "hash": 895763997, "properties": { "m_behaviorTemplateNameID": { "type": "unsigned int", @@ -570483,24 +467941,27 @@ "singleton": false, "pointer": false, "hash": 223437287 + }, + "m_raidKeyTemplateID": { + "type": "unsigned int", + "id": 1, + "offset": 112, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 884418367 } } }, - "836978406": { - "name": "class CombatRule*", - "bases": [ - "PropertyClass" - ], - "hash": 836978406, - "properties": {} - }, - "828386789": { - "name": "class WizTrainingOption", + "893904575": { + "name": "class ArenaItemsOption", "bases": [ "ServiceOptionBase", "PropertyClass" ], - "hash": 828386789, + "hash": 893904575, "properties": { "m_serviceName": { "type": "std::string", @@ -570556,115 +468017,83 @@ "singleton": false, "pointer": false, "hash": 1705789564 - }, - "m_trainingIndex": { - "type": "int", - "id": 5, - "offset": 216, - "flags": 31, + } + } + }, + "1298911046": { + "name": "class SharedPointer", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 1298911046, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 217389422 + "hash": 3130754092 }, - "m_trainingCost": { - "type": "int", - "id": 6, - "offset": 220, - "flags": 31, + "m_floorMaterialName": { + "type": "std::string", + "id": 1, + "offset": 120, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 982588239 + "hash": 1873368397 }, - "m_spellName": { + "m_wallMaterialName": { "type": "std::string", - "id": 7, - "offset": 264, - "flags": 31, + "id": 2, + "offset": 152, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2688485244 + "hash": 1499966715 }, - "m_bCanTrain": { + "m_bothFloor": { "type": "bool", - "id": 8, - "offset": 228, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1382854949 - }, - "m_requiredLevel": { - "type": "int", - "id": 9, - "offset": 224, - "flags": 31, + "id": 3, + "offset": 184, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1148041971 - }, - "m_requirements": { - "type": "class SharedPointer", - "id": 10, - "offset": 232, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3043523229 + "hash": 357593442 }, - "m_failedRequirement": { - "type": "class SharedPointer", - "id": 11, - "offset": 248, - "flags": 31, + "m_bothWall": { + "type": "bool", + "id": 4, + "offset": 185, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2322583945 - } - } - }, - "827639275": { - "name": "class TournamentUpdateFriendList", - "bases": [ - "PropertyClass" - ], - "hash": 827639275, - "properties": { - "m_friendList": { - "type": "gid", - "id": 0, - "offset": 72, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, "pointer": false, - "hash": 1993921452 + "hash": 274227824 } } }, - "1197709952": { - "name": "class LevelUpElixirSchoolSpecificData*", + "1738014836": { + "name": "class DailyQuestReward*", "bases": [ "PropertyClass" ], - "hash": 1197709952, + "hash": 1738014836, "properties": { - "m_schoolID": { - "type": "unsigned int", + "m_quantity": { + "type": "int", "id": 0, "offset": 72, "flags": 7, @@ -570672,204 +468101,129 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 369010242 + "hash": 169215289 }, - "m_spellsToGive": { - "type": "std::string", + "m_rewardType": { + "type": "enum DailyQuestReward::RewardTypes", "id": 1, - "offset": 80, - "flags": 7, - "container": "List", - "dynamic": true, + "offset": 76, + "flags": 2097159, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 3002626524 + "hash": 3431311734, + "enum_options": { + "RT_Gold": 0, + "RT_Crowns": 1, + "RT_ArenaTickets": 2, + "RT_PvPCurrency": 3, + "RT_PvPTourneyCurrency": 4, + "RT_Chest": 5, + "RT_Quest": 6 + } }, - "m_questsToComplete": { + "m_lootTable": { "type": "std::string", "id": 2, - "offset": 96, + "offset": 80, "flags": 7, - "container": "List", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 3386208316 + "hash": 2539512673 }, - "m_questsToAdd": { + "m_doubleLootTable": { "type": "std::string", "id": 3, "offset": 112, "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2101794028 - }, - "m_itemsToPlaceInInventory": { - "type": "unsigned int", - "id": 4, - "offset": 128, - "flags": 33554439, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 792703868 - }, - "m_gearToEquip": { - "type": "unsigned int", - "id": 5, - "offset": 144, - "flags": 33554439, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1383467923 - }, - "m_teleportToZoneOnComplete": { - "type": "std::string", - "id": 6, - "offset": 176, - "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2109587583 - }, - "m_badgesToComplete": { - "type": "std::string", - "id": 7, - "offset": 160, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2133622941 + "hash": 2975549628 }, - "m_schoolName": { + "m_anniversaryLootTable": { "type": "std::string", - "id": 8, - "offset": 208, + "id": 4, + "offset": 144, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3385349572 - }, - "m_propertyRegistryEntires": { - "type": "class LevelUpElixirPropertyRegistryEntry", - "id": 9, - "offset": 240, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2009387835 + "hash": 1514594483 }, - "m_addTrainingPointIfQuestNotComplete": { + "m_halloweenLootTable": { "type": "std::string", - "id": 10, - "offset": 256, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 3422771029 - } - } - }, - "2002732489": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 2002732489, - "properties": { - "m_level": { - "type": "unsigned char", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1438884808 - }, - "m_xpToLevel": { - "type": "int", - "id": 1, - "offset": 76, + "id": 5, + "offset": 176, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1972600157 + "hash": 2915828832 }, - "m_levelName": { + "m_christmasLootTable": { "type": "std::string", - "id": 2, - "offset": 80, - "flags": 8388615, + "id": 6, + "offset": 208, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3595417396 + "hash": 1878775663 } } }, - "826434743": { - "name": "class SegmentationInputData", + "1297527919": { + "name": "class AdvPvPActor*", "bases": [ + "PvPActor", + "MatchActor", "PropertyClass" ], - "hash": 826434743, + "hash": 1297527919, "properties": { - "m_bIsValidSegmentationData": { - "type": "bool", + "m_nActorID": { + "type": "gid", "id": 0, - "offset": 72, + "offset": 88, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 145039017 + "hash": 663762476 }, - "m_playerLevel": { - "type": "int", + "m_nLadderContainerID": { + "type": "gid", "id": 1, - "offset": 76, + "offset": 96, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 743117695 + "hash": 782107042 }, - "m_playerSchoolOfFocus": { - "type": "std::string", + "m_nTournamentNameID": { + "type": "unsigned int", "id": 2, - "offset": 80, + "offset": 104, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2154520517 + "hash": 471412886 }, - "m_accountNDaysAged": { - "type": "int", + "m_nTournamentID": { + "type": "gid", "id": 3, "offset": 112, "flags": 31, @@ -570877,21 +468231,21 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 1683372023 + "hash": 105258688 }, - "m_accountNDaysSinceLastLogin": { - "type": "int", + "m_leagueID": { + "type": "unsigned int", "id": 4, - "offset": 116, + "offset": 124, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1736007845 + "hash": 692361645 }, - "m_accountNDaysSinceLastPurchase": { - "type": "int", + "m_seasonID": { + "type": "unsigned int", "id": 5, "offset": 120, "flags": 31, @@ -570899,1269 +468253,989 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 1887348903 + "hash": 535260643 }, - "m_accountNDaysLastCrownsPurchase": { - "type": "int", + "m_nMatchNameID": { + "type": "unsigned int", "id": 6, - "offset": 124, + "offset": 128, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1622259729 + "hash": 497033398 }, - "m_accountIsMember": { - "type": "int", + "m_nMatchID": { + "type": "gid", "id": 7, - "offset": 128, + "offset": 136, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1600243867 + "hash": 1050279648 }, - "m_accountIsCSR": { - "type": "int", + "m_nTeamID": { + "type": "gid", "id": 8, - "offset": 132, + "offset": 144, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 230424555 + "hash": 374990266 }, - "m_accountNCrownsSpent": { + "m_status": { "type": "int", "id": 9, - "offset": 136, + "offset": 160, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1946996187 + "hash": 960781182 }, - "m_accountNCrownsInWallet": { - "type": "int", + "m_costAdj": { + "type": "class MatchCostAdjustment", "id": 10, - "offset": 140, + "offset": 200, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1171814609 + "hash": 913243331 }, - "m_accountNDaysSinceItemPurchased": { - "type": "class SharedPointer", + "m_pLadder": { + "type": "class SharedPointer", "id": 11, - "offset": 152, + "offset": 304, "flags": 31, - "container": "List", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": true, - "hash": 2517785757 + "hash": 2484171182 }, - "m_numOfParticularItemInInventory": { - "type": "class SharedPointer", + "m_bracketID": { + "type": "gid", "id": 12, - "offset": 168, + "offset": 152, "flags": 31, - "container": "List", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 937766887 + "pointer": false, + "hash": 441272961 }, - "m_numItemsOfCategoryInInventory": { - "type": "class SharedPointer", + "m_overridingELO": { + "type": "int", "id": 13, - "offset": 184, + "offset": 284, "flags": 31, - "container": "List", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1221776137 + "pointer": false, + "hash": 1428697363 }, - "m_playerHasBadge": { - "type": "class SharedPointer", + "m_matchKFactor": { + "type": "int", "id": 14, - "offset": 200, + "offset": 288, "flags": 31, - "container": "List", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1707274667 + "pointer": false, + "hash": 773340305 }, - "m_accountNHighestWorld": { - "type": "int", + "m_userID": { + "type": "gid", "id": 15, - "offset": 144, + "offset": 80, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1128631305 - } - } - }, - "1197475757": { - "name": "class SG_GamePower", - "bases": [ - "PropertyClass" - ], - "hash": 1197475757, - "properties": { - "m_name": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, + "hash": 1037989700 + }, + "m_matchMakingRangeForMatches": { + "type": "unsigned int", + "id": 16, + "offset": 320, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1717359772 + "hash": 1193045098 }, - "m_blockInteraction": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 7, + "m_maxMatchMakingRangeForMatches": { + "type": "unsigned int", + "id": 17, + "offset": 324, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1884044102 + "hash": 1279540944 }, - "m_blockTypeDestroyed": { - "type": "std::string", - "id": 2, - "offset": 136, - "flags": 7, + "m_allowRangeToExceedMaxForMatches": { + "type": "bool", + "id": 18, + "offset": 328, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3388691227 + "hash": 1260448226 }, - "m_ballGraphic": { - "type": "std::string", - "id": 3, - "offset": 200, - "flags": 131079, + "m_matchCrownsCost": { + "type": "int", + "id": 19, + "offset": 280, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2352594772 + "hash": 1094489596 }, - "m_impactGraphic": { - "type": "std::string", - "id": 4, - "offset": 232, - "flags": 131079, + "m_machineID": { + "type": "gid", + "id": 20, + "offset": 336, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3208005463 + "hash": 281396698 }, - "m_powerComboMultipliers": { - "type": "class SharedPointer", - "id": 5, - "offset": 328, - "flags": 7, - "container": "List", - "dynamic": true, + "m_tier": { + "type": "int", + "id": 21, + "offset": 344, + "flags": 31, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1957941557 + "pointer": false, + "hash": 219884238 }, - "m_impactSound": { - "type": "std::string", - "id": 6, - "offset": 264, - "flags": 131079, + "m_rank": { + "type": "int", + "id": 22, + "offset": 348, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2087348962 + "hash": 219803942 }, - "m_selectSound": { - "type": "std::string", - "id": 7, - "offset": 296, - "flags": 131079, + "m_rating": { + "type": "int", + "id": 23, + "offset": 352, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1892320740 - } - } - }, - "825324376": { - "name": "class StatisticEffect", - "bases": [ - "GameEffectBase", - "PropertyClass" - ], - "hash": 825324376, - "properties": { - "m_currentTickCount": { - "type": "double", - "id": 0, - "offset": 80, - "flags": 63, + "hash": 899783871 + }, + "m_levelBand": { + "type": "int", + "id": 24, + "offset": 356, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2533274692 + "hash": 2097286567 }, - "m_effectNameID": { - "type": "unsigned int", - "id": 1, - "offset": 96, - "flags": 63, + "m_enteredQueue": { + "type": "int", + "id": 25, + "offset": 376, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1204067144 + "hash": 638238406 }, - "m_bIsOnPet": { + "m_isSubscriber": { "type": "bool", - "id": 2, - "offset": 73, + "id": 26, + "offset": 428, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 522593303 + "hash": 952325795 }, - "m_originatorID": { - "type": "gid", - "id": 3, - "offset": 104, - "flags": 39, + "m_meetBracketBadgeRequirnments": { + "type": "bool", + "id": 27, + "offset": 429, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1131810019 + "hash": 438139258 }, - "m_itemSlotID": { - "type": "unsigned int", - "id": 4, - "offset": 112, - "flags": 63, + "m_1v1": { + "type": "bool", + "id": 28, + "offset": 430, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1895747595 + "hash": 269458571 }, - "m_internalID": { + "m_streak": { "type": "int", - "id": 5, - "offset": 92, - "flags": 63, + "id": 29, + "offset": 360, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1643137924 + "hash": 961375108 }, - "m_endTime": { - "type": "unsigned int", - "id": 6, - "offset": 88, + "m_matches": { + "type": "int", + "id": 30, + "offset": 364, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 716479635 + "hash": 1757638687 }, - "m_lookupIndex": { + "m_lastFight": { "type": "int", - "id": 7, - "offset": 128, + "id": 31, + "offset": 368, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1626623948 - } - } - }, - "1196795364": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1196795364, - "properties": {} - }, - "825321304": { - "name": "class StatisticEffect*", - "bases": [ - "GameEffectBase", - "PropertyClass" - ], - "hash": 825321304, - "properties": { - "m_currentTickCount": { - "type": "double", - "id": 0, - "offset": 80, - "flags": 63, + "hash": 91176384 + }, + "m_PVPHistoryStr": { + "type": "std::string", + "id": 32, + "offset": 384, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2533274692 + "hash": 1498439420 }, - "m_effectNameID": { - "type": "unsigned int", - "id": 1, - "offset": 96, - "flags": 63, + "m_maxCritHit": { + "type": "float", + "id": 33, + "offset": 416, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1204067144 + "hash": 2225327348 }, - "m_bIsOnPet": { - "type": "bool", - "id": 2, - "offset": 73, + "m_maxBlockCrit": { + "type": "float", + "id": 34, + "offset": 420, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 522593303 + "hash": 135865530 }, - "m_originatorID": { - "type": "gid", - "id": 3, - "offset": 104, - "flags": 39, + "m_shadowPipRating": { + "type": "float", + "id": 35, + "offset": 424, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1131810019 + "hash": 507126123 }, - "m_itemSlotID": { - "type": "unsigned int", - "id": 4, - "offset": 112, - "flags": 63, + "m_optInOut": { + "type": "std::string", + "id": 36, + "offset": 168, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1895747595 + "hash": 3013935453 }, - "m_internalID": { - "type": "int", - "id": 5, - "offset": 92, - "flags": 63, + "m_playerTimeDraw": { + "type": "bool", + "id": 37, + "offset": 431, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1643137924 + "hash": 447636221 }, - "m_endTime": { - "type": "unsigned int", - "id": 6, - "offset": 88, + "m_pvpStatus": { + "type": "unsigned char", + "id": 38, + "offset": 432, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 716479635 + "hash": 773570858 }, - "m_lookupIndex": { - "type": "int", - "id": 7, - "offset": 128, + "m_gender": { + "type": "short", + "id": 39, + "offset": 434, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1626623948 - } - } - }, - "2003418478": { - "name": "class SharedPointer", - "bases": [ - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 2003418478, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, + "hash": 564443897 + }, + "m_level": { + "type": "int", + "id": 40, + "offset": 436, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 + "hash": 801285362 }, - "m_actor": { + "m_nameBlob": { "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, + "id": 41, + "offset": 440, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2285866132 - } - } - }, - "1197675283": { - "name": "class SharedPointer", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1197675283, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, + "hash": 3058206907 + }, + "m_sSchool": { + "type": "std::string", + "id": 42, + "offset": 472, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 + "hash": 1846342998 }, - "m_loaded": { - "type": "bool", - "id": 1, - "offset": 112, - "flags": 27, + "m_timeLeft": { + "type": "int", + "id": 43, + "offset": 508, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 683367036 - }, - "m_entries": { - "type": "class SharedPointer", - "id": 2, - "offset": 120, - "flags": 27, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1075986553 + "hash": 1315288020 }, - "m_recordCache": { - "type": "class SharedPointer", - "id": 3, - "offset": 136, + "m_startTime": { + "type": "unsigned int", + "id": 44, + "offset": 512, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 828243474 - } - } - }, - "2004131766": { - "name": "class ReqArenaSeasonScore*", - "bases": [ - "ReqNumeric", - "Requirement", - "PropertyClass" - ], - "hash": 2004131766, - "properties": { - "m_applyNOT": { - "type": "bool", - "id": 0, - "offset": 72, + "pointer": false, + "hash": 1598371274 + }, + "m_elo": { + "type": "int", + "id": 45, + "offset": 516, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1746328074, - "enum_options": { - "__DEFAULT": 0 - } + "hash": 267033754 }, - "m_operator": { - "type": "enum Requirement::Operator", - "id": 1, - "offset": 76, - "flags": 2097183, + "m_wins": { + "type": "int", + "id": 46, + "offset": 520, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2672792317, - "enum_options": { - "ROP_AND": 0, - "ROP_OR": 1, - "__DEFAULT": "ROP_AND" - } + "hash": 219992347 }, - "m_numericValue": { - "type": "float", - "id": 2, - "offset": 80, + "m_losses": { + "type": "int", + "id": 47, + "offset": 524, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 521915239 + "hash": 681549075 }, - "m_operatorType": { - "type": "enum ReqNumeric::OPERATOR_TYPE", - "id": 3, - "offset": 84, - "flags": 2097183, + "m_ties": { + "type": "int", + "id": 48, + "offset": 528, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2228122961, - "enum_options": { - "OPERATOR_UNKNOWN": 4294967295, - "OPERATOR_EQUALS": 0, - "OPERATOR_GREATER_THAN": 1, - "OPERATOR_LESS_THAN": 2, - "OPERATOR_GREATER_THAN_EQ": 3, - "OPERATOR_LESS_THAN_EQ": 4 - } - }, - "m_tournament": { - "type": "std::string", - "id": 4, - "offset": 88, - "flags": 31, + "hash": 219884239 + } + } + }, + "454278017": { + "name": "class RidableBehaviorBase", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 454278017, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2799932264 + "hash": 223437287 + }, + "m_assignedPlayers": { + "type": "gid", + "id": 1, + "offset": 112, + "flags": 65543, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1913541510 } } }, - "826192241": { - "name": "class SharedPointer", + "1297522406": { + "name": "class ObstacleCourseClientSettings", "bases": [ - "GraphicalSpell", - "Spell", "PropertyClass" ], - "hash": 826192241, + "hash": 1297522406, "properties": { - "m_templateID": { - "type": "unsigned int", + "m_launchCameraAsset": { + "type": "std::string", "id": 0, - "offset": 128, - "flags": 31, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1286746870 + "hash": 1589507199 }, - "m_enchantment": { - "type": "unsigned int", + "m_launchAltCameraAsset": { + "type": "std::string", "id": 1, - "offset": 80, - "flags": 31, + "offset": 104, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2217886818 + "hash": 3431958848 }, - "m_pipCost": { - "type": "class SharedPointer", + "m_finishCameraAsset": { + "type": "std::string", "id": 2, - "offset": 176, + "offset": 136, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3605704820 + "pointer": false, + "hash": 2785496869 }, - "m_regularAdjust": { - "type": "int", + "m_powEffectAsset": { + "type": "std::string", "id": 3, - "offset": 192, - "flags": 31, + "offset": 168, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1420453335 + "hash": 2123980286 }, - "m_magicSchoolID": { - "type": "unsigned int", + "m_poofEffectAsset": { + "type": "std::string", "id": 4, - "offset": 136, + "offset": 200, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 893146499 + "hash": 1882932092 }, - "m_accuracy": { - "type": "unsigned char", + "m_startSound": { + "type": "std::string", "id": 5, - "offset": 132, + "offset": 232, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2273914939 + "hash": 2166722354 }, - "m_treasureCard": { - "type": "bool", + "m_winningSound": { + "type": "std::string", "id": 6, - "offset": 197, - "flags": 31, + "offset": 264, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1764879128 + "hash": 3277436766 }, - "m_battleCard": { - "type": "bool", + "m_numNearMisses": { + "type": "int", "id": 7, - "offset": 198, - "flags": 31, + "offset": 296, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1332843753 + "hash": 367683972 }, - "m_itemCard": { - "type": "bool", + "m_launchSpinAnim": { + "type": "std::string", "id": 8, - "offset": 199, + "offset": 304, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1683654300 + "hash": 3333397429 }, - "m_sideBoard": { - "type": "bool", + "m_springboardVelocity": { + "type": "float", "id": 9, - "offset": 200, + "offset": 336, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1897838368 + "hash": 1581485377 }, - "m_spellID": { - "type": "unsigned int", + "m_springboardHorizontalDistance": { + "type": "float", "id": 10, - "offset": 204, - "flags": 31, + "offset": 340, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1697483258 + "hash": 1273881447 }, - "m_leavesPlayWhenCastOverride": { - "type": "bool", + "m_launchFadeOutTime": { + "type": "float", "id": 11, - "offset": 216, - "flags": 31, + "offset": 344, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 874407398 + "hash": 780794089 }, - "m_cloaked": { - "type": "bool", + "m_launchFadeInTime": { + "type": "float", "id": 12, - "offset": 196, + "offset": 348, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 7349510 + "hash": 712951592 }, - "m_enchantmentSpellIsItemCard": { - "type": "bool", + "m_launchCameraType": { + "type": "enum ObstacleCourseLaunchCameraType", "id": 13, - "offset": 76, - "flags": 31, + "offset": 376, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 531590701 + "hash": 1946138855, + "enum_options": { + "ShowLaunchPoint": 0, + "ShowLaunchDestination": 1 + } }, - "m_premutationSpellID": { - "type": "unsigned int", + "m_launchDelay": { + "type": "float", "id": 14, - "offset": 112, - "flags": 31, + "offset": 380, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1530256370 + "hash": 818941409 }, - "m_enchantedThisCombat": { - "type": "bool", + "m_springboardLaunchDelay": { + "type": "float", "id": 15, - "offset": 77, - "flags": 31, + "offset": 384, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1895738923 + "hash": 358451836 }, - "m_paramOverrides": { - "type": "class SharedPointer", + "m_pendulumLaunchDelay": { + "type": "float", "id": 16, - "offset": 224, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2061635599 - }, - "m_subEffectMeta": { - "type": "class SharedPointer", - "id": 17, - "offset": 240, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1944101106 - }, - "m_delayEnchantment": { - "type": "bool", - "id": 18, - "offset": 257, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 191336919 - }, - "m_PvE": { - "type": "bool", - "id": 19, - "offset": 264, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 269492350 - }, - "m_delayEnchantmentOrder": { - "type": "enum SpellEffect::kDelayOrder", - "id": 20, - "offset": 72, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2526055263, - "enum_options": { - "SpellEffect::kAnyOrder": 0, - "SpellEffect::kFirst": 1, - "SpellEffect::kSecond": 2 - } - }, - "m_roundAddedTC": { - "type": "int", - "id": 21, - "offset": 260, - "flags": 31, + "offset": 388, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 112365451 + "hash": 813340139 }, - "m_secondarySchoolID": { - "type": "unsigned int", - "id": 22, - "offset": 304, + "m_startLaunchCamAboveWaterDistance": { + "type": "float", + "id": 17, + "offset": 392, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2081206026 - } - } - }, - "825821228": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 825821228, - "properties": { - "m_elementName": { + "hash": 1138704748 + }, + "m_floatingPenaltyStringKey": { "type": "std::string", - "id": 0, - "offset": 72, + "id": 18, + "offset": 416, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2195875046 + "hash": 3048879372 }, - "m_assetFilename": { + "m_floatingBonusStringKey": { "type": "std::string", - "id": 1, - "offset": 104, - "flags": 131079, + "id": 19, + "offset": 448, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2116426332 + "hash": 2779826934 }, - "m_geometryName": { + "m_floatingReadyStringKey": { "type": "std::string", - "id": 2, - "offset": 136, + "id": 20, + "offset": 480, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1734031816 + "hash": 2159650180 }, - "m_materialName": { + "m_floatingGoStringKey": { "type": "std::string", - "id": 3, - "offset": 168, + "id": 21, + "offset": 512, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1878140043 - }, - "m_flags": { - "type": "unsigned int", - "id": 4, - "offset": 200, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1005801050, - "enum_options": { - "EF_AVAILABLE_AT_CREATION": 1 - } - }, - "m_color": { - "type": "class Color", - "id": 5, - "offset": 204, - "flags": 262151, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1791663549 + "hash": 2635517125 }, - "m_id": { - "type": "unsigned short", - "id": 6, - "offset": 208, + "m_waitForRespawnTime": { + "type": "float", + "id": 22, + "offset": 352, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2644168661 - } - } - }, - "1198547408": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1198547408, - "properties": { - "m_subscriptions": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 3595491367 - } - } - }, - "826433975": { - "name": "class SegmentationInputData*", - "bases": [ - "PropertyClass" - ], - "hash": 826433975, - "properties": { - "m_bIsValidSegmentationData": { - "type": "bool", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 145039017 + "hash": 989830754 }, - "m_playerLevel": { - "type": "int", - "id": 1, - "offset": 76, - "flags": 31, + "m_waitForFanfareTime": { + "type": "float", + "id": 23, + "offset": 356, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 743117695 + "hash": 1563405653 }, - "m_playerSchoolOfFocus": { - "type": "std::string", - "id": 2, - "offset": 80, - "flags": 31, + "m_finishFadeOutTime": { + "type": "float", + "id": 24, + "offset": 360, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2154520517 + "hash": 1976783759 }, - "m_accountNDaysAged": { - "type": "int", - "id": 3, - "offset": 112, - "flags": 31, + "m_finishFadeInTime": { + "type": "float", + "id": 25, + "offset": 364, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1683372023 + "hash": 1595172110 }, - "m_accountNDaysSinceLastLogin": { - "type": "int", - "id": 4, - "offset": 116, - "flags": 31, + "m_waitForScoreTime": { + "type": "float", + "id": 26, + "offset": 368, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1736007845 + "hash": 662585758 }, - "m_accountNDaysSinceLastPurchase": { - "type": "int", - "id": 5, - "offset": 120, - "flags": 31, + "m_timeTextBlinkRate": { + "type": "float", + "id": 27, + "offset": 372, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1887348903 + "hash": 1421152647 }, - "m_accountNDaysLastCrownsPurchase": { - "type": "int", - "id": 6, - "offset": 124, - "flags": 31, + "m_maxLaunchVelocity": { + "type": "float", + "id": 28, + "offset": 396, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1622259729 + "hash": 187200007 }, - "m_accountIsMember": { + "m_warningSeconds": { "type": "int", - "id": 7, - "offset": 128, - "flags": 31, + "id": 29, + "offset": 400, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1600243867 + "hash": 1816542623 }, - "m_accountIsCSR": { - "type": "int", - "id": 8, - "offset": 132, - "flags": 31, + "m_simTimeDelta": { + "type": "float", + "id": 30, + "offset": 404, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 230424555 + "hash": 2151669465 }, - "m_accountNCrownsSpent": { - "type": "int", - "id": 9, - "offset": 136, - "flags": 31, + "m_pushOutVelocity": { + "type": "float", + "id": 31, + "offset": 408, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1946996187 + "hash": 586005630 }, - "m_accountNCrownsInWallet": { - "type": "int", - "id": 10, - "offset": 140, - "flags": 31, + "m_cameraCollisionRadius": { + "type": "float", + "id": 32, + "offset": 412, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1171814609 - }, - "m_accountNDaysSinceItemPurchased": { - "type": "class SharedPointer", - "id": 11, - "offset": 152, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2517785757 - }, - "m_numOfParticularItemInInventory": { - "type": "class SharedPointer", - "id": 12, - "offset": 168, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 937766887 - }, - "m_numItemsOfCategoryInInventory": { - "type": "class SharedPointer", - "id": 13, - "offset": 184, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1221776137 - }, - "m_playerHasBadge": { - "type": "class SharedPointer", - "id": 14, - "offset": 200, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1707274667 + "hash": 465605300 }, - "m_accountNHighestWorld": { - "type": "int", - "id": 15, - "offset": 144, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1128631305 - } - } - }, - "2005027782": { - "name": "class ReqArenaSeasonTitle*", - "bases": [ - "Requirement", - "PropertyClass" - ], - "hash": 2005027782, - "properties": { - "m_applyNOT": { - "type": "bool", - "id": 0, - "offset": 72, - "flags": 31, + "m_failSound": { + "type": "std::string", + "id": 33, + "offset": 544, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1746328074, - "enum_options": { - "__DEFAULT": 0 - } + "hash": 2420690272 }, - "m_operator": { - "type": "enum Requirement::Operator", - "id": 1, - "offset": 76, - "flags": 2097183, + "m_timeWarningSound": { + "type": "std::string", + "id": 34, + "offset": 576, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2672792317, - "enum_options": { - "ROP_AND": 0, - "ROP_OR": 1, - "__DEFAULT": "ROP_AND" - } + "hash": 2539048393 }, - "m_title": { - "type": "std::string", - "id": 2, - "offset": 112, - "flags": 31, + "m_splashSoundList": { + "type": "class WeightedList", + "id": 35, + "offset": 608, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2308614141 + "hash": 2522662007 }, - "m_tournament": { - "type": "std::string", - "id": 3, - "offset": 80, - "flags": 268435487, + "m_nearMissSoundList": { + "type": "class WeightedList", + "id": 36, + "offset": 712, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2799932264, - "enum_options": { - "__BASECLASS": "TournamentTemplate" - } - } - } - }, - "1202255320": { - "name": "class SoftEnumList", - "bases": [ - "PropertyClass" - ], - "hash": 1202255320, - "properties": { - "m_enums": { - "type": "std::string", - "id": 0, - "offset": 128, + "hash": 1762129774 + }, + "m_splashCinematicList": { + "type": "class WeightedList", + "id": 37, + "offset": 816, "flags": 7, - "container": "List", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 2291006147 + "hash": 3318695259 } } }, - "2018521747": { - "name": "class SharedPointer", + "895927837": { + "name": "class RaidGateBehavior", "bases": [ + "RaidGateBehaviorBase", + "BehaviorInstance", "PropertyClass" ], - "hash": 2018521747, + "hash": 895927837, "properties": { - "m_objList": { - "type": "gid", + "m_behaviorTemplateNameID": { + "type": "unsigned int", "id": 0, - "offset": 72, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_raidKeyTemplateID": { + "type": "unsigned int", + "id": 1, + "offset": 112, "flags": 31, - "container": "List", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 72042095 + "hash": 884418367 } } }, - "1199794116": { - "name": "class SharedPointer", + "1296666495": { + "name": "class PolymorphEffectTemplate*", "bases": [ - "ActorCinematicAction", - "CinematicAction", + "GameEffectTemplate", "PropertyClass" ], - "hash": 1199794116, + "hash": 1296666495, "properties": { - "m_timeOffset": { - "type": "float", + "m_effectName": { + "type": "std::string", "id": 0, "offset": 72, "flags": 7, @@ -572169,987 +469243,918 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 + "hash": 2029161513 }, - "m_actor": { + "m_effectCategory": { "type": "std::string", "id": 1, - "offset": 80, + "offset": 104, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2285866132 + "hash": 1852673222 }, - "m_animations": { - "type": "std::string", + "m_sortOrder": { + "type": "int", "id": 2, - "offset": 120, - "flags": 131079, + "offset": 148, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3030904078 + "hash": 1411218206 }, - "m_model": { - "type": "std::string", + "m_duration": { + "type": "double", "id": 3, - "offset": 152, - "flags": 131079, + "offset": 192, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2300510668 + "hash": 2727932435 }, - "m_createOrientation": { - "type": "enum CreateActorCinematicAction::kCreateOrientation", + "m_stackingCategories": { + "type": "std::string", "id": 4, - "offset": 184, - "flags": 2097159, - "container": "Static", - "dynamic": false, + "offset": 160, + "flags": 7, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 3562324429, - "enum_options": { - "kFaceTarget": 0, - "kFaceSource": 1, - "kSigil": 2, - "kTarget": 3, - "kSource": 4, - "kSigilRight": 5, - "kSigilLeft": 6, - "kFaceTargetTeam": 7 - } + "hash": 1774497525 }, - "m_hidePolymorphFloatyText": { + "m_isPersistent": { "type": "bool", "id": 5, - "offset": 188, + "offset": 153, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 942475883 + "hash": 923861920 }, - "m_forwardOffset": { - "type": "float", + "m_bIsOnPet": { + "type": "bool", "id": 6, - "offset": 192, + "offset": 154, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1749681459 + "hash": 522593303 }, - "m_absoluteTarget": { + "m_isPublic": { "type": "bool", "id": 7, - "offset": 196, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1463993657 - } - } - }, - "827283214": { - "name": "class SharedPointer", - "bases": [ - "HousingGameInterface", - "PropertyClass" - ], - "hash": 827283214, - "properties": {} - }, - "1198855130": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1198855130, - "properties": { - "m_mapStringKey": { - "type": "std::string", - "id": 0, - "offset": 72, + "offset": 152, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3476195193 - }, - "m_mapImageFile": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2861333660 + "hash": 1728439822 }, - "m_playerGlyphFile": { + "m_visualEffectAddName": { "type": "std::string", - "id": 2, - "offset": 136, - "flags": 131079, + "id": 8, + "offset": 200, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3606975340 + "hash": 3382086694 }, - "m_mapIconsFile": { + "m_visualEffectRemoveName": { "type": "std::string", - "id": 3, - "offset": 168, - "flags": 131079, + "id": 9, + "offset": 232, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3069899221 + "hash": 1541697323 }, - "m_namePlateFile": { + "m_onAddFunctorName": { "type": "std::string", - "id": 4, - "offset": 200, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3484945554 - }, - "m_topLeft": { - "type": "class Point", - "id": 5, - "offset": 232, + "id": 10, + "offset": 280, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2378435386 + "hash": 1561843107 }, - "m_topRight": { - "type": "class Point", - "id": 6, - "offset": 240, + "m_onRemoveFunctorName": { + "type": "std::string", + "id": 11, + "offset": 312, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2345696461 + "hash": 2559017864 }, - "m_bottomRight": { - "type": "class Point", - "id": 7, - "offset": 248, - "flags": 7, + "m_stackingRule": { + "type": "enum STACKING_RULE", + "id": 12, + "offset": 144, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3584882159 + "hash": 431568889, + "enum_options": { + "STACKING_ALLOWED": 0, + "STACKING_NOSTACK": 1, + "STACKING_REPLACE": 2 + } }, - "m_bottomLeft": { - "type": "class Point", - "id": 8, - "offset": 256, + "m_templateID": { + "type": "unsigned int", + "id": 13, + "offset": 360, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2676287516 + "hash": 1286746870 } } }, - "826932735": { - "name": "class QuickSellItem*", + "1738293565": { + "name": "class ActorDialogList*", "bases": [ + "ActorDialogListBase", "PropertyClass" ], - "hash": 826932735, + "hash": 1738293565, "properties": { - "m_sellItemGID": { - "type": "gid", + "m_dialogs": { + "type": "class ActorDialog*", "id": 0, "offset": 72, "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2112889951 + } + } + }, + "895846831": { + "name": "class VisibilityBehavior", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 895846831, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1026273003 + "hash": 223437287 }, - "m_quantity": { - "type": "unsigned int", + "m_showTo": { + "type": "gid", "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, + "offset": 112, + "flags": 31, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 380617740 + "hash": 947039004 }, - "m_clientRequestID": { - "type": "int", + "m_hideFrom": { + "type": "gid", "id": 2, - "offset": 84, - "flags": 7, + "offset": 128, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 642644390 + }, + "m_visible": { + "type": "bool", + "id": 3, + "offset": 144, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1118529839 + "hash": 810536225 } } }, - "1198704979": { - "name": "class std::vector >", - "bases": [], - "hash": 1198704979, - "properties": {} - }, - "2005969583": { - "name": "class PulseEffect*", + "1738202186": { + "name": "class ZoneTokenBooleanControl", "bases": [ - "GameEffectBase", + "ZoneTokenBaseControl", + "Window", "PropertyClass" ], - "hash": 2005969583, + "hash": 1738202186, "properties": { - "m_currentTickCount": { - "type": "double", + "m_sName": { + "type": "std::string", "id": 0, "offset": 80, - "flags": 63, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2533274692 + "hash": 2306437263 }, - "m_effectNameID": { - "type": "unsigned int", + "m_Children": { + "type": "class SharedPointer", "id": 1, - "offset": 96, - "flags": 63, - "container": "Static", - "dynamic": false, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 1204067144 + "pointer": true, + "hash": 2621225959 }, - "m_bIsOnPet": { - "type": "bool", + "m_Style": { + "type": "unsigned int", "id": 2, - "offset": 73, - "flags": 31, + "offset": 152, + "flags": 1048583, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 522593303 + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "SCALE_CHILDREN": 2, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "FOCUS_LOCKED": 64, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152 + } }, - "m_originatorID": { - "type": "gid", + "m_Flags": { + "type": "unsigned int", "id": 3, - "offset": 104, - "flags": 39, + "offset": 156, + "flags": 1048583, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1131810019 + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } }, - "m_itemSlotID": { - "type": "unsigned int", + "m_Window": { + "type": "class Rect", "id": 4, - "offset": 112, - "flags": 63, + "offset": 160, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1895747595 + "hash": 3105139380 }, - "m_internalID": { - "type": "int", + "m_fTargetAlpha": { + "type": "float", "id": 5, - "offset": 92, - "flags": 63, + "offset": 212, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1643137924 + "hash": 1809129834 }, - "m_endTime": { - "type": "unsigned int", + "m_fDisabledAlpha": { + "type": "float", "id": 6, - "offset": 88, - "flags": 31, + "offset": 216, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 716479635 + "hash": 1389987675 }, - "m_pulseCount": { - "type": "double", + "m_fAlpha": { + "type": "float", "id": 7, - "offset": 128, - "flags": 63, + "offset": 208, + "flags": 65671, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3507157375 - } - } - }, - "826932730": { - "name": "class QuickSellItem", - "bases": [ - "PropertyClass" - ], - "hash": 826932730, - "properties": { - "m_sellItemGID": { - "type": "gid", - "id": 0, - "offset": 72, - "flags": 7, + "hash": 482130755 + }, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3623628394 + }, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1026273003 + "hash": 2102211316 }, - "m_quantity": { - "type": "unsigned int", - "id": 1, - "offset": 80, - "flags": 7, + "m_sScript": { + "type": "std::string", + "id": 10, + "offset": 352, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 380617740 + "hash": 1846695875 }, - "m_clientRequestID": { - "type": "int", - "id": 2, - "offset": 84, - "flags": 7, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1118529839 - } - } - }, - "1199732992": { - "name": "class SharedPointer", - "bases": [ - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 1199732992, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, + "hash": 3389835433 + }, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 + "hash": 2547159940 }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2285866132 + "hash": 1513510520 }, - "m_deltaYaw": { - "type": "float", - "id": 2, - "offset": 120, - "flags": 7, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1518691890 + "hash": 3091503757 } } }, - "2019489492": { - "name": "class SharedPointer", + "458385654": { + "name": "class ShowcasedStoreItemList", "bases": [ - "ServiceOptionBase", "PropertyClass" ], - "hash": 2019489492, + "hash": 458385654, "properties": { - "m_serviceName": { - "type": "std::string", + "m_items": { + "type": "class SharedPointer", "id": 0, "offset": 72, "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2206028813 - }, - "m_iconKey": { - "type": "std::string", - "id": 1, - "offset": 168, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2457138637 - }, - "m_displayKey": { - "type": "std::string", - "id": 2, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 3023276954 - }, - "m_serviceIndex": { + "pointer": true, + "hash": 1667746752 + } + } + }, + "457245475": { + "name": "class CountdownBehavior*", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 457245475, + "properties": { + "m_behaviorTemplateNameID": { "type": "unsigned int", - "id": 3, - "offset": 204, - "flags": 31, + "id": 0, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2103126710 + "hash": 223437287 }, - "m_forceInteract": { - "type": "bool", - "id": 4, - "offset": 200, + "m_time": { + "type": "float", + "id": 1, + "offset": 112, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1705789564 + "hash": 310085638 } } }, - "827191006": { - "name": "class SharedPointer", + "1297524364": { + "name": "class GearVaultBehaviorTemplate", "bases": [ - "WinAnimSize", - "WindowAnimation", + "BehaviorTemplate", "PropertyClass" ], - "hash": 827191006, + "hash": 1297524364, "properties": { - "m_bUseDeepCopy": { - "type": "bool", + "m_behaviorName": { + "type": "std::string", "id": 0, "offset": 72, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 433380635 - }, - "m_size": { - "type": "class Size", - "id": 1, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 251247159 - }, - "m_fSpeed": { - "type": "float", - "id": 2, - "offset": 88, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 503609006 - }, - "m_currentSize": { - "type": "class Vector3D", - "id": 3, - "offset": 92, - "flags": 135, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2914066496 + "hash": 3130754092 } } }, - "1198856126": { - "name": "class SharedPointer", + "454963492": { + "name": "class PetActorResults*", "bases": [ + "MatchActorResult", "PropertyClass" ], - "hash": 1198856126, + "hash": 454963492, "properties": { - "m_id": { - "type": "gid", + "m_pActor": { + "type": "class SharedPointer", "id": 0, - "offset": 88, - "flags": 7, + "offset": 72, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 2090569797 + "pointer": true, + "hash": 1115051967 }, - "m_requirements": { - "type": "class RequirementList", + "m_place": { + "type": "int", "id": 1, - "offset": 152, - "flags": 7, + "offset": 88, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2840988582 + "hash": 806257663 }, - "m_actorImage": { - "type": "std::string", + "m_ratingGained": { + "type": "int", "id": 2, - "offset": 248, - "flags": 131079, + "offset": 92, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2562145079 + "hash": 1426436071 }, - "m_actorName": { - "type": "std::string", + "m_arenaPoints": { + "type": "int", "id": 3, - "offset": 280, - "flags": 8388615, + "offset": 96, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2050810421 + "hash": 511478910 }, - "m_dialog": { - "type": "class SharedPointer", + "m_pvpCurrency": { + "type": "int", "id": 4, - "offset": 352, - "flags": 7, + "offset": 100, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 440960800 + "pointer": false, + "hash": 611304283 }, - "m_repeatable": { - "type": "bool", + "m_pvpTourneyCurrency": { + "type": "int", "id": 5, - "offset": 368, - "flags": 7, + "offset": 104, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 366129064 + "hash": 1184787505 }, - "m_criticalTip": { - "type": "bool", + "m_gold": { + "type": "int", "id": 6, - "offset": 369, - "flags": 7, + "offset": 108, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 402676843 + "hash": 219423808 }, - "m_backgroundMusic": { - "type": "std::string", + "m_gameResult": { + "type": "unsigned char", "id": 7, - "offset": 312, - "flags": 131079, + "offset": 112, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1857091004 + "hash": 1417654793 }, - "m_musicAtSFXVolume": { - "type": "bool", + "m_nFinishTime": { + "type": "unsigned int", "id": 8, - "offset": 344, - "flags": 7, + "offset": 120, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2142315218 + "hash": 1238925387 }, - "m_eventName": { - "type": "std::string", + "m_nIndex": { + "type": "unsigned int", "id": 9, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 3493260286 - }, - "m_tutorialTipType": { - "type": "enum TutorialTipType", - "id": 10, - "offset": 372, - "flags": 2097159, + "offset": 124, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1666586963, - "enum_options": { - "TTT_Tutorial": 0, - "TTT_Warning": 1, - "TTT_Quest": 2, - "TTT_school": 3 - } + "hash": 925961299 } } }, - "2013392653": { - "name": "class WidgetBackground", + "896499448": { + "name": "class HousingTeleporterBehavior", "bases": [ + "HousingTeleporterBehaviorBase", + "BehaviorInstance", "PropertyClass" ], - "hash": 2013392653, + "hash": 896499448, "properties": { - "m_fBackgroundAlpha": { - "type": "float", + "m_behaviorTemplateNameID": { + "type": "unsigned int", "id": 0, - "offset": 72, - "flags": 7, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1164086307 + "hash": 223437287 }, - "m_pTopLeftBackgroundAlphaMask": { - "type": "class SharedPointer", + "m_lotInstanceGID": { + "type": "gid", "id": 1, - "offset": 80, - "flags": 7, + "offset": 112, + "flags": 65567, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2652729643 + "pointer": false, + "hash": 2010711536 }, - "m_pTopRightBackgroundAlphaMask": { - "type": "class SharedPointer", + "m_x": { + "type": "float", "id": 2, - "offset": 96, - "flags": 7, + "offset": 120, + "flags": 65543, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2236264926 + "pointer": false, + "hash": 283788559 }, - "m_pBottomLeftBackgroundAlphaMask": { - "type": "class SharedPointer", + "m_y": { + "type": "float", "id": 3, - "offset": 112, - "flags": 7, + "offset": 124, + "flags": 65543, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3301927117 + "pointer": false, + "hash": 283788560 }, - "m_pBottomRightBackgroundAlphaMask": { - "type": "class SharedPointer", + "m_z": { + "type": "float", "id": 4, "offset": 128, - "flags": 7, + "flags": 65543, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2184945088 + "pointer": false, + "hash": 283788561 }, - "m_pBottomBackgroundAlphaMask": { - "type": "class SharedPointer", + "m_yaw": { + "type": "float", "id": 5, - "offset": 144, - "flags": 7, + "offset": 132, + "flags": 65543, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2408122274 + "pointer": false, + "hash": 357256328 }, - "m_pTopBackgroundAlphaMask": { - "type": "class SharedPointer", + "m_lotTemplateID": { + "type": "gid", "id": 6, - "offset": 160, - "flags": 7, + "offset": 136, + "flags": 65543, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3440742656 + "pointer": false, + "hash": 1344354096 }, - "m_pLeftBackgroundAlphaMask": { - "type": "class SharedPointer", + "m_clusterGID": { + "type": "gid", "id": 7, - "offset": 176, - "flags": 7, + "offset": 144, + "flags": 65543, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2348634648 + "pointer": false, + "hash": 112792526 }, - "m_pRightBackgroundAlphaMask": { - "type": "class SharedPointer", + "m_structureInstanceGID": { + "type": "gid", "id": 8, - "offset": 192, - "flags": 7, + "offset": 152, + "flags": 65543, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2938548331 + "pointer": false, + "hash": 2083588818 }, - "m_pCenterBackgroundAlphaMask": { - "type": "class SharedPointer", + "m_structureTemplateID": { + "type": "gid", "id": 9, - "offset": 208, - "flags": 7, + "offset": 160, + "flags": 65543, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3347258414 - } - } - }, - "2006743509": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 2006743509, - "properties": { - "m_tabPriList": { - "type": "class TabDisplayPriority", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Vector", - "dynamic": true, - "singleton": false, "pointer": false, - "hash": 3043784178 - } - } - }, - "827639265": { - "name": "class TournamentUpdateFriendList*", - "bases": [ - "PropertyClass" - ], - "hash": 827639265, - "properties": { - "m_friendList": { - "type": "gid", - "id": 0, - "offset": 72, - "flags": 31, - "container": "List", - "dynamic": true, + "hash": 825960402 + }, + "m_isOutside": { + "type": "bool", + "id": 10, + "offset": 168, + "flags": 65543, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 1993921452 - } - } - }, - "2006247677": { - "name": "class JewelSocketWrenchRules", - "bases": [ - "PropertyClass" - ], - "hash": 2006247677, - "properties": { - "m_rules": { - "type": "class JewelSocketWrenchElements", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, + "hash": 1999324940 + }, + "m_teleportData": { + "type": "std::string", + "id": 11, + "offset": 208, + "flags": 551, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 2323021272 + "hash": 3645160644 } } }, - "827572244": { - "name": "class LevelScaledEffect", + "454960420": { + "name": "class PetActorResults", "bases": [ - "StatisticEffect", - "GameEffectBase", + "MatchActorResult", "PropertyClass" ], - "hash": 827572244, + "hash": 454960420, "properties": { - "m_currentTickCount": { - "type": "double", + "m_pActor": { + "type": "class SharedPointer", "id": 0, - "offset": 80, - "flags": 63, + "offset": 72, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 2533274692 + "pointer": true, + "hash": 1115051967 }, - "m_effectNameID": { - "type": "unsigned int", + "m_place": { + "type": "int", "id": 1, - "offset": 96, - "flags": 63, + "offset": 88, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1204067144 + "hash": 806257663 }, - "m_bIsOnPet": { - "type": "bool", + "m_ratingGained": { + "type": "int", "id": 2, - "offset": 73, + "offset": 92, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 522593303 + "hash": 1426436071 }, - "m_originatorID": { - "type": "gid", + "m_arenaPoints": { + "type": "int", "id": 3, - "offset": 104, - "flags": 39, + "offset": 96, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1131810019 + "hash": 511478910 }, - "m_itemSlotID": { - "type": "unsigned int", + "m_pvpCurrency": { + "type": "int", "id": 4, - "offset": 112, - "flags": 63, + "offset": 100, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1895747595 + "hash": 611304283 }, - "m_internalID": { + "m_pvpTourneyCurrency": { "type": "int", "id": 5, - "offset": 92, - "flags": 63, + "offset": 104, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1643137924 + "hash": 1184787505 }, - "m_endTime": { - "type": "unsigned int", + "m_gold": { + "type": "int", "id": 6, - "offset": 88, + "offset": 108, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 716479635 + "hash": 219423808 }, - "m_lookupIndex": { - "type": "int", + "m_gameResult": { + "type": "unsigned char", "id": 7, - "offset": 128, + "offset": 112, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1626623948 + "hash": 1417654793 + }, + "m_nFinishTime": { + "type": "unsigned int", + "id": 8, + "offset": 120, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1238925387 + }, + "m_nIndex": { + "type": "unsigned int", + "id": 9, + "offset": 124, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 925961299 } } }, - "1200595993": { - "name": "class RenderBehavior*", + "1740094415": { + "name": "class HousingMusicPlayerBehaviorBase*", "bases": [ "BehaviorInstance", "PropertyClass" ], - "hash": 1200595993, + "hash": 1740094415, "properties": { "m_behaviorTemplateNameID": { "type": "unsigned int", @@ -573161,1069 +470166,621 @@ "singleton": false, "pointer": false, "hash": 223437287 - } - } - }, - "1200205223": { - "name": "class std::list >", - "bases": [], - "hash": 1200205223, - "properties": {} - }, - "2009316924": { - "name": "class CloneActorCinematicAction*", - "bases": [ - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 2009316924, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 }, - "m_actor": { - "type": "std::string", + "m_playlist": { + "type": "unsigned int", "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, + "offset": 112, + "flags": 65567, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 2285866132 + "hash": 1986295487 }, - "m_position": { - "type": "class Vector3D", + "m_currentSelection": { + "type": "unsigned int", "id": 2, - "offset": 124, - "flags": 7, + "offset": 128, + "flags": 65567, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3697900983 + "hash": 906571734 }, - "m_yawPitchRoll": { - "type": "class Vector3D", + "m_playStyle": { + "type": "unsigned int", "id": 3, - "offset": 136, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3349460132 - }, - "m_clonePlayer": { - "type": "bool", - "id": 4, - "offset": 120, - "flags": 7, + "offset": 132, + "flags": 65567, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1369917873 + "hash": 768737172 } } }, - "1200233492": { - "name": "class SharedPointer", + "1297528550": { + "name": "class ObstacleCourseClientSettings*", "bases": [ - "Requirement", "PropertyClass" ], - "hash": 1200233492, + "hash": 1297528550, "properties": { - "m_applyNOT": { - "type": "bool", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1746328074, - "enum_options": { - "__DEFAULT": 0 - } - }, - "m_operator": { - "type": "enum Requirement::Operator", - "id": 1, - "offset": 76, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2672792317, - "enum_options": { - "ROP_AND": 0, - "ROP_OR": 1, - "__DEFAULT": "ROP_AND" - } - }, - "m_spellName": { + "m_launchCameraAsset": { "type": "std::string", - "id": 2, - "offset": 80, - "flags": 268435487, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2688485244, - "enum_options": { - "__BASECLASS": "SpellTemplate" - } - } - } - }, - "2008755125": { - "name": "class SharedPointer", - "bases": [ - "SpellEffect", - "PropertyClass" - ], - "hash": 2008755125, - "properties": { - "m_effectType": { - "type": "enum SpellEffect::kSpellEffects", "id": 0, "offset": 72, - "flags": 2097183, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2578255295, - "enum_options": { - "kInvalidSpellEffect": 0, - "kDamage": 1, - "kDamageNoCrit": 2, - "kHeal": 3, - "kHealPercent": 4, - "kSetHealPercent": 113, - "kStealHealth": 5, - "kReduceOverTime": 6, - "kDetonateOverTime": 7, - "kPushCharm": 8, - "kStealCharm": 9, - "kPushWard": 10, - "kStealWard": 11, - "kPushOverTime": 12, - "kStealOverTime": 13, - "kRemoveCharm": 14, - "kRemoveWard": 15, - "kRemoveOverTime": 16, - "kRemoveAura": 17, - "kSwapAll": 18, - "kSwapCharm": 19, - "kSwapWard": 20, - "kSwapOverTime": 21, - "kModifyIncomingDamage": 22, - "kModifyIncomingDamageFlat": 119, - "kMaximumIncomingDamage": 23, - "kModifyIncomingHeal": 24, - "kModifyIncomingHealFlat": 118, - "kModifyIncomingDamageType": 25, - "kModifyIncomingArmorPiercing": 26, - "kModifyOutgoingDamage": 27, - "kModifyOutgoingDamageFlat": 121, - "kModifyOutgoingHeal": 28, - "kModifyOutgoingHealFlat": 120, - "kModifyOutgoingDamageType": 29, - "kModifyOutgoingArmorPiercing": 30, - "kModifyOutgoingStealHealth": 31, - "kModifyIncomingStealHealth": 32, - "kBounceNext": 33, - "kBouncePrevious": 34, - "kBounceBack": 35, - "kBounceAll": 36, - "kAbsorbDamage": 37, - "kAbsorbHeal": 38, - "kModifyAccuracy": 39, - "kDispel": 40, - "kConfusion": 41, - "kCloakedCharm": 42, - "kCloakedWard": 43, - "kStunResist": 44, - "kClue": 111, - "kPipConversion": 45, - "kCritBoost": 46, - "kCritBlock": 47, - "kPolymorph": 48, - "kDelayCast": 49, - "kModifyCardCloak": 50, - "kModifyCardDamage": 51, - "kModifyCardAccuracy": 53, - "kModifyCardMutation": 54, - "kModifyCardRank": 55, - "kModifyCardArmorPiercing": 56, - "kSummonCreature": 65, - "kTeleportPlayer": 66, - "kStun": 67, - "kDampen": 68, - "kReshuffle": 69, - "kMindControl": 70, - "kModifyPips": 71, - "kModifyPowerPips": 72, - "kModifyShadowPips": 73, - "kModifyHate": 74, - "kDamageOverTime": 75, - "kHealOverTime": 76, - "kModifyPowerPipChance": 77, - "kModifyRank": 78, - "kStunBlock": 79, - "kRevealCloak": 80, - "kInstantKill": 81, - "kAfterlife": 82, - "kDeferredDamage": 83, - "kDamagePerTotalPipPower": 84, - "kModifyCardHeal": 52, - "kModifyCardCharm": 57, - "kModifyCardWard": 58, - "kModifyCardOutgoingDamage": 59, - "kModifyCardOutgoingAccuracy": 60, - "kModifyCardOutgoingHeal": 61, - "kModifyCardOutgoingArmorPiercing": 62, - "kModifyCardIncomingDamage": 63, - "kModifyCardAbsorbDamage": 64, - "kCloakedWardNoRemove": 86, - "kAddCombatTriggerList": 87, - "kRemoveCombatTriggerList": 88, - "kBacklashDamage": 89, - "kModifyBacklash": 90, - "kIntercept": 91, - "kShadowSelf": 92, - "kShadowCreature": 93, - "kModifyShadowCreatureLevel": 94, - "kSelectShadowCreatureAttackTarget": 95, - "kShadowDecrementTurn": 96, - "kCritBoostSchoolSpecific": 97, - "kSpawnCreature": 98, - "kUnPolymorph": 99, - "kPowerPipConversion": 100, - "kProtectCardBeneficial": 101, - "kProtectCardHarmful": 102, - "kProtectBeneficial": 103, - "kProtectHarmful": 104, - "kDivideDamage": 105, - "kCollectEssence": 106, - "kKillCreature": 107, - "kDispelBlock": 108, - "kConfusionBlock": 109, - "kModifyPipRoundRate": 110, - "kMaxHealthDamage": 112, - "kUntargetable": 114, - "kMakeTargetable": 115, - "kForceTargetable": 116, - "kRemoveStunBlock": 117, - "kExitCombat": 122, - "kSuspendPips": 123, - "kResumePips": 124, - "kAutoPass": 125, - "kStopAutoPass": 126, - "kVanish": 127, - "kStopVanish": 128, - "kMaxHealthHeal": 129, - "kHealByWard": 130, - "kTaunt": 131, - "kPacify": 132, - "kRemoveTargetRestriction": 133, - "kConvertHangingEffect": 134, - "kAddSpellToDeck": 135, - "kAddSpellToHand": 136, - "kModifyIncomingDamageOverTime": 137, - "kModifyIncomingHealOverTime": 138, - "kModifyCardDamagebyRank": 139, - "kPushConvertedCharm": 140, - "kStealConvertedCharm": 141, - "kPushConvertedWard": 142, - "kStealConvertedWard": 143, - "kPushConvertedOverTime": 144, - "kStealConvertedOverTime": 145, - "kRemoveConvertedCharm": 146, - "kRemoveConvertedWard": 147, - "kRemoveConvertedOverTime": 148, - "kModifyOverTimeDuration": 149, - "kModifySchoolPips": 150 - } + "hash": 1589507199 }, - "m_effectParam": { - "type": "int", + "m_launchAltCameraAsset": { + "type": "std::string", "id": 1, - "offset": 76, - "flags": 31, + "offset": 104, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 357920024 + "hash": 3431958848 }, - "m_disposition": { - "type": "enum SpellEffect::kHangingDisposition", + "m_finishCameraAsset": { + "type": "std::string", "id": 2, - "offset": 80, - "flags": 2097159, + "offset": 136, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1904841031, - "enum_options": { - "kBoth": 0, - "kBeneficial": 1, - "kHarmful": 2 - } + "hash": 2785496869 }, - "m_sDamageType": { + "m_powEffectAsset": { "type": "std::string", "id": 3, - "offset": 88, + "offset": 168, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2501054223 + "hash": 2123980286 }, - "m_damageType": { - "type": "unsigned int", + "m_poofEffectAsset": { + "type": "std::string", "id": 4, - "offset": 84, - "flags": 31, + "offset": 200, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 737882766 + "hash": 1882932092 }, - "m_pipNum": { - "type": "int", + "m_startSound": { + "type": "std::string", "id": 5, - "offset": 128, + "offset": 232, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 830827539 + "hash": 2166722354 }, - "m_actNum": { - "type": "int", + "m_winningSound": { + "type": "std::string", "id": 6, - "offset": 132, - "flags": 31, + "offset": 264, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 236824866 + "hash": 3277436766 }, - "m_effectTarget": { - "type": "enum SpellEffect::kEffectTarget", + "m_numNearMisses": { + "type": "int", "id": 7, - "offset": 140, - "flags": 2097183, + "offset": 296, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2458940523, - "enum_options": { - "kInvalidTarget": 0, - "kSpell": 1, - "kSpecificSpells": 2, - "kGlobal": 3, - "kEnemyTeam": 4, - "kEnemyTeamAllAtOnce": 5, - "kFriendlyTeam": 6, - "kFriendlyTeamAllAtOnce": 7, - "kEnemySingle": 8, - "kFriendlySingle": 9, - "kMinion": 10, - "kFriendlyMinion": 17, - "kEnemyMinion": 18, - "kSelf": 11, - "kAtLeastOneEnemy": 13, - "kPreselectedEnemySingle": 12, - "kMultiTargetEnemy": 14, - "kMultiTargetFriendly": 15, - "kFriendlySingleNotMe": 16 - } + "hash": 367683972 }, - "m_numRounds": { - "type": "int", + "m_launchSpinAnim": { + "type": "std::string", "id": 8, - "offset": 144, - "flags": 31, + "offset": 304, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1229753829 + "hash": 3333397429 }, - "m_paramPerRound": { - "type": "int", + "m_springboardVelocity": { + "type": "float", "id": 9, - "offset": 148, - "flags": 31, + "offset": 336, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 683234234 + "hash": 1581485377 }, - "m_healModifier": { + "m_springboardHorizontalDistance": { "type": "float", "id": 10, - "offset": 152, + "offset": 340, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1317921248, - "enum_options": { - "__DEFAULT": "1.0" - } + "hash": 1273881447 }, - "m_spellTemplateID": { - "type": "unsigned int", + "m_launchFadeOutTime": { + "type": "float", "id": 11, - "offset": 120, - "flags": 31, + "offset": 344, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 585567702 + "hash": 780794089 }, - "m_enchantmentSpellTemplateID": { - "type": "unsigned int", + "m_launchFadeInTime": { + "type": "float", "id": 12, - "offset": 124, - "flags": 31, + "offset": 348, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 246955115 + "hash": 712951592 }, - "m_act": { - "type": "bool", + "m_launchCameraType": { + "type": "enum ObstacleCourseLaunchCameraType", "id": 13, - "offset": 136, - "flags": 7, + "offset": 376, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 269510283 + "hash": 1946138855, + "enum_options": { + "ShowLaunchPoint": 0, + "ShowLaunchDestination": 1 + } }, - "m_cloaked": { - "type": "bool", + "m_launchDelay": { + "type": "float", "id": 14, - "offset": 157, - "flags": 31, + "offset": 380, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 7349510 + "hash": 818941409 }, - "m_bypassProtection": { - "type": "bool", + "m_springboardLaunchDelay": { + "type": "float", "id": 15, - "offset": 159, - "flags": 31, + "offset": 384, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1657138252 + "hash": 358451836 }, - "m_armorPiercingParam": { - "type": "int", + "m_pendulumLaunchDelay": { + "type": "float", "id": 16, - "offset": 160, - "flags": 31, + "offset": 388, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2025530205 + "hash": 813340139 }, - "m_chancePerTarget": { - "type": "int", + "m_startLaunchCamAboveWaterDistance": { + "type": "float", "id": 17, - "offset": 164, - "flags": 31, + "offset": 392, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 845426794 + "hash": 1138704748 }, - "m_protected": { - "type": "bool", + "m_floatingPenaltyStringKey": { + "type": "std::string", "id": 18, - "offset": 168, - "flags": 31, + "offset": 416, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1445655037 + "hash": 3048879372 }, - "m_converted": { - "type": "bool", + "m_floatingBonusStringKey": { + "type": "std::string", "id": 19, - "offset": 169, - "flags": 31, + "offset": 448, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1590428797 + "hash": 2779826934 }, - "m_rank": { - "type": "int", + "m_floatingReadyStringKey": { + "type": "std::string", "id": 20, - "offset": 208, + "offset": 480, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 219803942 + "hash": 2159650180 }, - "m_damage": { - "type": "int", + "m_floatingGoStringKey": { + "type": "std::string", "id": 21, - "offset": 236, - "flags": 31, + "offset": 512, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 351627865 + "hash": 2635517125 }, - "m_rounds": { - "type": "int", + "m_waitForRespawnTime": { + "type": "float", "id": 22, - "offset": 240, - "flags": 31, + "offset": 352, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 916427829 + "hash": 989830754 }, - "m_spellDelayedTemplateID": { - "type": "unsigned int", + "m_waitForFanfareTime": { + "type": "float", "id": 23, - "offset": 244, - "flags": 31, + "offset": 356, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2227549390 + "hash": 1563405653 }, - "m_spellDelayedTemplateDamageID": { - "type": "unsigned int", + "m_finishFadeOutTime": { + "type": "float", "id": 24, - "offset": 248, - "flags": 31, + "offset": 360, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1629569933 + "hash": 1976783759 }, - "m_spellEnchanterTemplateID": { - "type": "unsigned int", + "m_finishFadeInTime": { + "type": "float", "id": 25, - "offset": 252, - "flags": 31, + "offset": 364, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 760931950 + "hash": 1595172110 }, - "m_targetSubcircleList": { - "type": "int", + "m_waitForScoreTime": { + "type": "float", "id": 26, - "offset": 264, - "flags": 31, - "container": "List", - "dynamic": true, + "offset": 368, + "flags": 7, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 227779897 + "hash": 662585758 }, - "m_spellHits": { - "type": "char", + "m_timeTextBlinkRate": { + "type": "float", "id": 27, - "offset": 280, - "flags": 31, + "offset": 372, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1193115340 + "hash": 1421152647 }, - "m_spell": { - "type": "class SharedPointer", + "m_maxLaunchVelocity": { + "type": "float", "id": 28, - "offset": 288, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1160380498 - } - } - }, - "828326101": { - "name": "class PipCount", - "bases": [ - "PropertyClass" - ], - "hash": 828326101, - "properties": { - "m_genericPips": { - "type": "unsigned char", - "id": 0, - "offset": 80, - "flags": 31, + "offset": 396, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1345845385 + "hash": 187200007 }, - "m_powerPips": { - "type": "unsigned char", - "id": 1, - "offset": 81, - "flags": 31, + "m_warningSeconds": { + "type": "int", + "id": 29, + "offset": 400, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2096480441 + "hash": 1816542623 }, - "m_balancePips": { - "type": "unsigned char", - "id": 2, - "offset": 82, - "flags": 31, + "m_simTimeDelta": { + "type": "float", + "id": 30, + "offset": 404, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1232748146 + "hash": 2151669465 }, - "m_deathPips": { - "type": "unsigned char", - "id": 3, - "offset": 83, - "flags": 31, + "m_pushOutVelocity": { + "type": "float", + "id": 31, + "offset": 408, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1364547506 + "hash": 586005630 }, - "m_firePips": { - "type": "unsigned char", - "id": 4, - "offset": 84, - "flags": 31, + "m_cameraCollisionRadius": { + "type": "float", + "id": 32, + "offset": 412, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2490965330 + "hash": 465605300 }, - "m_icePips": { - "type": "unsigned char", - "id": 5, - "offset": 85, - "flags": 31, + "m_failSound": { + "type": "std::string", + "id": 33, + "offset": 544, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1584134173 + "hash": 2420690272 }, - "m_lifePips": { - "type": "unsigned char", - "id": 6, - "offset": 86, - "flags": 31, + "m_timeWarningSound": { + "type": "std::string", + "id": 34, + "offset": 576, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2181444364 + "hash": 2539048393 }, - "m_mythPips": { - "type": "unsigned char", - "id": 7, - "offset": 87, - "flags": 31, + "m_splashSoundList": { + "type": "class WeightedList", + "id": 35, + "offset": 608, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1590318670 + "hash": 2522662007 }, - "m_stormPips": { - "type": "unsigned char", - "id": 8, - "offset": 88, - "flags": 31, + "m_nearMissSoundList": { + "type": "class WeightedList", + "id": 36, + "offset": 712, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 769321921 + "hash": 1762129774 }, - "m_shadowPips": { - "type": "unsigned char", - "id": 9, - "offset": 89, - "flags": 31, + "m_splashCinematicList": { + "type": "class WeightedList", + "id": 37, + "offset": 816, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2569883346 + "hash": 3318695259 } } }, - "828315334": { - "name": "class EmojiWindow*", + "1738392973": { + "name": "class PVP5thAgeLeagueTotals*", "bases": [ - "Window", "PropertyClass" ], - "hash": 828315334, + "hash": 1738392973, "properties": { - "m_sName": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306437263 - }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621225959 - }, - "m_Style": { - "type": "unsigned int", - "id": 2, - "offset": 152, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "SCALE_CHILDREN": 2, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "FOCUS_LOCKED": 64, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152 - } - }, - "m_Flags": { + "m_leagueID": { "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } - }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3105139380 - }, - "m_fTargetAlpha": { - "type": "float", - "id": 5, - "offset": 212, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1809129834 - }, - "m_fDisabledAlpha": { - "type": "float", - "id": 6, - "offset": 216, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1389987675 - }, - "m_fAlpha": { - "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 482130755 - }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3623628394 - }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2102211316 - }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, + "id": 0, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1846695875 + "hash": 692361645 }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, + "m_elo": { + "type": "int", + "id": 1, + "offset": 76, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3389835433 + "hash": 267033754 }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, + "m_rank": { + "type": "int", + "id": 2, + "offset": 80, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2547159940 + "hash": 219803942 }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, + "m_wins": { + "type": "int", + "id": 3, + "offset": 84, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2587533771 + "hash": 219992347 }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, + "m_losses": { + "type": "int", + "id": 4, + "offset": 88, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3091503757 + "hash": 681549075 } } }, - "828137340": { - "name": "class QuickSellItemList", + "898738245": { + "name": "class SigilSubCircle*", "bases": [ "PropertyClass" ], - "hash": 828137340, + "hash": 898738245, "properties": { - "m_quickSellItemList": { - "type": "class SharedPointer", + "m_locationType": { + "type": "std::string", "id": 0, "offset": 72, "flags": 7, - "container": "List", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2797277851 + "pointer": false, + "hash": 1824460246 }, - "m_sellingCharacterGID": { - "type": "gid", + "m_locationPreference": { + "type": "std::string", "id": 1, - "offset": 88, + "offset": 112, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1096175527 - } - } - }, - "1201418614": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1201418614, - "properties": { - "m_level": { - "type": "unsigned char", - "id": 0, - "offset": 72, + "hash": 2817699507 + }, + "m_rotation": { + "type": "float", + "id": 2, + "offset": 152, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1438884808 + "hash": 1497468551 }, - "m_xpToLevel": { - "type": "int", - "id": 1, - "offset": 76, + "m_radius": { + "type": "float", + "id": 3, + "offset": 156, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1972600157 + "hash": 989410271 }, - "m_levelName": { - "type": "std::string", - "id": 2, - "offset": 80, - "flags": 8388615, + "m_color": { + "type": "class Color", + "id": 4, + "offset": 160, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3595417396 + "hash": 1791663549 + }, + "m_cameras": { + "type": "class SigilCamera*", + "id": 5, + "offset": 168, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2715542772 } } }, - "2009329728": { - "name": "class ScaleActorCinematicAction*", + "1738391693": { + "name": "class PVP5thAgeLeagueTotals", "bases": [ - "ActorCinematicAction", - "CinematicAction", "PropertyClass" ], - "hash": 2009329728, + "hash": 1738391693, "properties": { - "m_timeOffset": { - "type": "float", + "m_leagueID": { + "type": "unsigned int", "id": 0, "offset": 72, "flags": 7, @@ -574231,264 +470788,290 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 + "hash": 692361645 }, - "m_actor": { - "type": "std::string", + "m_elo": { + "type": "int", "id": 1, - "offset": 80, + "offset": 76, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2285866132 + "hash": 267033754 }, - "m_scaleDuration": { - "type": "float", + "m_rank": { + "type": "int", "id": 2, - "offset": 120, + "offset": 80, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1764097637 + "hash": 219803942 }, - "m_scaleTarget": { - "type": "float", + "m_wins": { + "type": "int", "id": 3, - "offset": 124, + "offset": 84, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1502791366 + "hash": 219992347 + }, + "m_losses": { + "type": "int", + "id": 4, + "offset": 88, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 681549075 } } }, - "1200596153": { - "name": "class RenderBehavior", + "455563698": { + "name": "class SharedPointer", "bases": [ - "BehaviorInstance", + "SG_GameAction", "PropertyClass" ], - "hash": 1200596153, + "hash": 455563698, "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", + "m_target": { + "type": "enum SG_GameAction::SG_Target", "id": 0, - "offset": 104, - "flags": 39, + "offset": 72, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 + "hash": 1166870973, + "enum_options": { + "Target_Ball": 0, + "Target_Self": 1, + "Target_Connections": 2, + "__DEFAULT": "Target_Ball" + } } } }, - "2011559543": { - "name": "class MoveCommandRoll*", + "897823009": { + "name": "class RaidManagerBehaviorTemplate*", "bases": [ - "MoveController::MoveCommand", + "BehaviorTemplate", "PropertyClass" ], - "hash": 2011559543, + "hash": 897823009, "properties": { - "m_fRoll": { - "type": "float", + "m_behaviorName": { + "type": "std::string", "id": 0, - "offset": 88, - "flags": 31, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 883680790 + "hash": 3130754092 + }, + "m_battlegroundTemplateName": { + "type": "std::string", + "id": 1, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2598590755 } } }, - "828326485": { - "name": "class PipCount*", + "1297977215": { + "name": "class PolymorphEffectTemplate", "bases": [ + "GameEffectTemplate", "PropertyClass" ], - "hash": 828326485, + "hash": 1297977215, "properties": { - "m_genericPips": { - "type": "unsigned char", + "m_effectName": { + "type": "std::string", "id": 0, - "offset": 80, - "flags": 31, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1345845385 + "hash": 2029161513 }, - "m_powerPips": { - "type": "unsigned char", + "m_effectCategory": { + "type": "std::string", "id": 1, - "offset": 81, - "flags": 31, + "offset": 104, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2096480441 + "hash": 1852673222 }, - "m_balancePips": { - "type": "unsigned char", + "m_sortOrder": { + "type": "int", "id": 2, - "offset": 82, - "flags": 31, + "offset": 148, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1232748146 + "hash": 1411218206 }, - "m_deathPips": { - "type": "unsigned char", + "m_duration": { + "type": "double", "id": 3, - "offset": 83, - "flags": 31, + "offset": 192, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1364547506 + "hash": 2727932435 }, - "m_firePips": { - "type": "unsigned char", + "m_stackingCategories": { + "type": "std::string", "id": 4, - "offset": 84, - "flags": 31, - "container": "Static", - "dynamic": false, + "offset": 160, + "flags": 7, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 2490965330 + "hash": 1774497525 }, - "m_icePips": { - "type": "unsigned char", + "m_isPersistent": { + "type": "bool", "id": 5, - "offset": 85, - "flags": 31, + "offset": 153, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1584134173 + "hash": 923861920 }, - "m_lifePips": { - "type": "unsigned char", + "m_bIsOnPet": { + "type": "bool", "id": 6, - "offset": 86, - "flags": 31, + "offset": 154, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2181444364 + "hash": 522593303 }, - "m_mythPips": { - "type": "unsigned char", + "m_isPublic": { + "type": "bool", "id": 7, - "offset": 87, - "flags": 31, + "offset": 152, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1590318670 + "hash": 1728439822 }, - "m_stormPips": { - "type": "unsigned char", + "m_visualEffectAddName": { + "type": "std::string", "id": 8, - "offset": 88, - "flags": 31, + "offset": 200, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 769321921 + "hash": 3382086694 }, - "m_shadowPips": { - "type": "unsigned char", + "m_visualEffectRemoveName": { + "type": "std::string", "id": 9, - "offset": 89, - "flags": 31, + "offset": 232, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2569883346 - } - } - }, - "1201563320": { - "name": "class CameraFadeCinematicAction", - "bases": [ - "CinematicAction", - "PropertyClass" - ], - "hash": 1201563320, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, + "hash": 1541697323 + }, + "m_onAddFunctorName": { + "type": "std::string", + "id": 10, + "offset": 280, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 + "hash": 1561843107 }, - "m_fDuration": { - "type": "float", - "id": 1, - "offset": 80, + "m_onRemoveFunctorName": { + "type": "std::string", + "id": 11, + "offset": 312, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 598255075 + "hash": 2559017864 }, - "m_bCycle": { - "type": "bool", - "id": 2, - "offset": 84, - "flags": 7, + "m_stackingRule": { + "type": "enum STACKING_RULE", + "id": 12, + "offset": 144, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 240694213 + "hash": 431568889, + "enum_options": { + "STACKING_ALLOWED": 0, + "STACKING_NOSTACK": 1, + "STACKING_REPLACE": 2 + } }, - "m_bFadeIn": { - "type": "bool", - "id": 3, - "offset": 85, + "m_templateID": { + "type": "unsigned int", + "id": 13, + "offset": 360, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1507201372 + "hash": 1286746870 } } }, - "2011337770": { - "name": "class DerbyEffect*", + "897469948": { + "name": "class ClientDerbyModifyCheerCost*", "bases": [ + "DerbyModifyCheerCost", + "DerbyEffect", "PropertyClass" ], - "hash": 2011337770, + "hash": 897469948, "properties": { "m_buffType": { "type": "enum DerbyTalentBuffType", @@ -574623,32 +471206,29 @@ "singleton": false, "pointer": false, "hash": 2840988582 + }, + "m_costMap": { + "type": "class TerrainCheerCostMap", + "id": 11, + "offset": 376, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1929931701 } } }, - "2010729727": { - "name": "class GardeningPatchData", - "bases": [ - "PropertyClass" - ], - "hash": 2010729727, - "properties": {} - }, - "2010298263": { - "name": "enum NPCBehaviorTemplate::TITLE_TYPE", - "bases": [], - "hash": 2010298263, - "properties": {} - }, - "833885600": { - "name": "class AdvancedPetsConfig", + "455580989": { + "name": "class Camera", "bases": [ "PropertyClass" ], - "hash": 833885600, + "hash": 455580989, "properties": { - "m_energyTick": { - "type": "int", + "m_coord": { + "type": "class Vector3D", "id": 0, "offset": 72, "flags": 7, @@ -574656,156 +471236,260 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 1236715535 + "hash": 2448785881 }, - "m_minPetLevelForJewels": { - "type": "unsigned char", + "m_quat": { + "type": "class Quaternion", "id": 1, - "offset": 76, + "offset": 84, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1631450758 + "hash": 2148807035 }, - "m_petJewelTalentIcon": { - "type": "std::string", + "m_mat": { + "type": "class Matrix3x3", "id": 2, - "offset": 80, + "offset": 100, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3286601420 + "hash": 1746928484 } } }, - "1202611019": { - "name": "class ArenaBonusPointsLootInfo*", + "1739828921": { + "name": "class SharedPointer", "bases": [ - "LootInfo", - "LootInfoBase", + "Window", "PropertyClass" ], - "hash": 1202611019, + "hash": 1739828921, "properties": { - "m_lootType": { - "type": "enum LootInfo::LOOT_TYPE", + "m_sName": { + "type": "std::string", "id": 0, - "offset": 72, - "flags": 2097183, + "offset": 80, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1591891442, - "enum_options": { - "LOOT_TYPE_NONE": 0, - "LOOT_TYPE_GOLD": 1, - "LOOT_TYPE_MANA": 2, - "LOOT_TYPE_ITEM": 3, - "LOOT_TYPE_TREASURE_CARD": 4, - "LOOT_TYPE_MAGIC_XP": 5, - "LOOT_TYPE_ADD_SPELL": 6, - "LOOT_TYPE_MAX_HEALTH": 7, - "LOOT_TYPE_MAX_GOLD": 8, - "LOOT_TYPE_MAX_MANA": 9, - "LOOT_TYPE_MAX_POTION": 10, - "LOOT_TYPE_TRAINING_POINTS": 11, - "LOOT_TYPE_RECIPE": 12, - "LOOT_TYPE_CRAFTING_SLOT": 13, - "LOOT_TYPE_REAGENT": 14, - "LOOT_TYPE_PETSNACK": 15, - "LOOT_TYPE_GARDENING_XP": 16, - "LOOT_TYPE_PET_XP": 17, - "LOOT_TYPE_TREASURE_TABLE": 18, - "LOOT_TYPE_ARENA_POINTS": 19, - "LOOT_TYPE_ARENA_BONUS_POINTS": 20, - "LOOT_TYPE_GROUP": 21, - "LOOT_TYPE_FISHING_XP": 22, - "LOOT_TYPE_EVENT_CURRENCY_1": 24, - "LOOT_TYPE_EVENT_CURRENCY_2": 25, - "LOOT_TYPE_PVP_CURRENCY": 26, - "LOOT_TYPE_PVP_CURRENCY_BONUS": 27, - "LOOT_TYPE_PVP_TOURNEY_CURRENCY": 28, - "LOOT_TYPE_PVP_TOURNEY_CURRENCY_BONUS": 29, - "LOOT_TYPE_FURNITURE_ESSENCE": 30 - } + "hash": 2306437263 }, - "m_arenaBonusPointsAmount": { - "type": "int", + "m_Children": { + "type": "class SharedPointer", "id": 1, - "offset": 80, - "flags": 31, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621225959 + }, + "m_Style": { + "type": "unsigned int", + "id": 2, + "offset": 152, + "flags": 1048583, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 774521529 - } - } - }, - "832268763": { - "name": "class ObjectRemapBehavior*", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 832268763, - "properties": { - "m_behaviorTemplateNameID": { + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "SCALE_CHILDREN": 2, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "FOCUS_LOCKED": 64, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152 + } + }, + "m_Flags": { "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, + "id": 3, + "offset": 156, + "flags": 1048583, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 - } - } - }, - "1202426311": { - "name": "class SG_GameEvent", - "bases": [ - "PropertyClass" - ], - "hash": 1202426311, - "properties": { - "m_eventName": { + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } + }, + "m_Window": { + "type": "class Rect", + "id": 4, + "offset": 160, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3105139380 + }, + "m_fTargetAlpha": { + "type": "float", + "id": 5, + "offset": 212, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1809129834 + }, + "m_fDisabledAlpha": { + "type": "float", + "id": 6, + "offset": 216, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1389987675 + }, + "m_fAlpha": { + "type": "float", + "id": 7, + "offset": 208, + "flags": 65671, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 482130755 + }, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3623628394 + }, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2102211316 + }, + "m_sScript": { "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, + "id": 10, + "offset": 352, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3493260286 + "hash": 1846695875 }, - "m_actions": { - "type": "class SharedPointer", - "id": 1, - "offset": 104, - "flags": 7, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3389835433 + }, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547159940 + }, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513510520 + }, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, "container": "List", "dynamic": true, "singleton": false, - "pointer": true, - "hash": 3152419933 + "pointer": false, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3091503757 } } }, - "829951711": { - "name": "class SharedPointer", + "897822817": { + "name": "class RaidManagerBehaviorTemplate", "bases": [ "BehaviorTemplate", "PropertyClass" ], - "hash": 829951711, + "hash": 897822817, "properties": { "m_behaviorName": { "type": "std::string", @@ -574817,18 +471501,35 @@ "singleton": false, "pointer": false, "hash": 3130754092 + }, + "m_battlegroundTemplateName": { + "type": "std::string", + "id": 1, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2598590755 } } }, - "828637388": { - "name": "class DespawnInfo*", + "1299265670": { + "name": "class std::vector >", + "bases": [], + "hash": 1299265670, + "properties": {} + }, + "1298915509": { + "name": "class PromoReward", "bases": [ "PropertyClass" ], - "hash": 828637388, + "hash": 1298915509, "properties": { - "m_killer": { - "type": "gid", + "m_desc": { + "type": "std::string", "id": 0, "offset": 72, "flags": 31, @@ -574836,395 +471537,333 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 635022555 + "hash": 1717004954 }, - "m_despawnEffect": { - "type": "unsigned int", + "m_type": { + "type": "std::string", "id": 1, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1477583404 - } - } - }, - "2011554423": { - "name": "class MoveCommandRoll", - "bases": [ - "MoveController::MoveCommand", - "PropertyClass" - ], - "hash": 2011554423, - "properties": { - "m_fRoll": { - "type": "float", - "id": 0, - "offset": 88, + "offset": 104, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 883680790 + "hash": 1717601629 } } }, - "1203497002": { - "name": "class CollisionWorld*", + "457755389": { + "name": "class SharedPointer", "bases": [ "PropertyClass" ], - "hash": 1203497002, + "hash": 457755389, "properties": { - "m_World": { - "type": "class SharedPointer", + "m_gameEffectInfoList": { + "type": "class SharedPointer", "id": 0, "offset": 72, - "flags": 7, + "flags": 31, "container": "List", "dynamic": true, "singleton": false, "pointer": true, - "hash": 1731856744 + "hash": 1747948740 } } }, - "1203072571": { - "name": "class GearVaultBehavior*", + "1740693570": { + "name": "class GraphicalEventCurrency1", "bases": [ - "GearVaultBehaviorBase", - "BehaviorInstance", + "GraphicalSpell", + "Spell", "PropertyClass" ], - "hash": 1203072571, + "hash": 1740693570, "properties": { - "m_behaviorTemplateNameID": { + "m_templateID": { "type": "unsigned int", "id": 0, - "offset": 104, - "flags": 39, + "offset": 128, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 + "hash": 1286746870 }, - "m_gearList": { - "type": "std::string", + "m_enchantment": { + "type": "unsigned int", "id": 1, - "offset": 112, - "flags": 65567, - "container": "List", - "dynamic": true, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 1498902582 + "hash": 2217886818 }, - "m_gearData": { - "type": "std::string", + "m_pipCost": { + "type": "class SharedPointer", "id": 2, - "offset": 128, - "flags": 551, + "offset": 176, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1498606388 - } - } - }, - "830085604": { - "name": "class MoveCommandYaw*", - "bases": [ - "MoveController::MoveCommand", - "PropertyClass" - ], - "hash": 830085604, - "properties": { - "m_fYaw": { - "type": "float", - "id": 0, - "offset": 88, + "pointer": true, + "hash": 3605704820 + }, + "m_regularAdjust": { + "type": "int", + "id": 3, + "offset": 192, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 309564718 - } - } - }, - "2011992280": { - "name": "class SpawnActorCinematicAction*", - "bases": [ - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 2011992280, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, + "hash": 1420453335 + }, + "m_magicSchoolID": { + "type": "unsigned int", + "id": 4, + "offset": 136, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 + "hash": 893146499 }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, + "m_accuracy": { + "type": "unsigned char", + "id": 5, + "offset": 132, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2285866132 + "hash": 2273914939 }, - "m_objectInfo": { - "type": "class CoreObjectInfo*", - "id": 2, - "offset": 120, - "flags": 7, + "m_treasureCard": { + "type": "bool", + "id": 6, + "offset": 197, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1373700953 + "pointer": false, + "hash": 1764879128 }, - "m_bStartHidden": { + "m_battleCard": { "type": "bool", - "id": 3, - "offset": 128, - "flags": 7, + "id": 7, + "offset": 198, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1939845615 - } - } - }, - "830085444": { - "name": "class MoveCommandYaw", - "bases": [ - "MoveController::MoveCommand", - "PropertyClass" - ], - "hash": 830085444, - "properties": { - "m_fYaw": { - "type": "float", - "id": 0, - "offset": 88, - "flags": 31, + "hash": 1332843753 + }, + "m_itemCard": { + "type": "bool", + "id": 8, + "offset": 199, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 309564718 - } - } - }, - "2011909800": { - "name": "class AnimatedControlButtonState*", - "bases": [ - "ControlButtonState", - "PropertyClass" - ], - "hash": 2011909800, - "properties": { - "m_nAnimBeginFrame": { - "type": "int", - "id": 0, - "offset": 72, - "flags": 135, + "hash": 1683654300 + }, + "m_sideBoard": { + "type": "bool", + "id": 9, + "offset": 200, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1469531165 + "hash": 1897838368 }, - "m_nAnimEndFrame": { - "type": "int", - "id": 1, - "offset": 76, - "flags": 135, + "m_spellID": { + "type": "unsigned int", + "id": 10, + "offset": 204, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1659451087 + "hash": 1697483258 }, - "m_fAnimRate": { - "type": "float", - "id": 2, - "offset": 80, - "flags": 135, + "m_leavesPlayWhenCastOverride": { + "type": "bool", + "id": 11, + "offset": 216, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 802385934 + "hash": 874407398 }, - "m_bAnimLoop": { + "m_cloaked": { "type": "bool", - "id": 3, - "offset": 84, - "flags": 135, + "id": 12, + "offset": 196, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1487150228 + "hash": 7349510 }, - "m_bAnimForceFinish": { + "m_enchantmentSpellIsItemCard": { "type": "bool", - "id": 4, - "offset": 85, - "flags": 135, + "id": 13, + "offset": 76, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 943660298 - } - } - }, - "1204566674": { - "name": "class SharedPointer", - "bases": [ - "TreasureCardVaultBehaviorBase", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1204566674, - "properties": { - "m_behaviorTemplateNameID": { + "hash": 531590701 + }, + "m_premutationSpellID": { "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, + "id": 14, + "offset": 112, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 + "hash": 1530256370 }, - "m_spellData": { - "type": "std::string", - "id": 1, - "offset": 128, - "flags": 575, + "m_enchantedThisCombat": { + "type": "bool", + "id": 15, + "offset": 77, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2688126101 - } - } - }, - "2011909794": { - "name": "class AnimatedControlButtonState", - "bases": [ - "ControlButtonState", - "PropertyClass" - ], - "hash": 2011909794, - "properties": { - "m_nAnimBeginFrame": { - "type": "int", - "id": 0, - "offset": 72, - "flags": 135, + "hash": 1895738923 + }, + "m_paramOverrides": { + "type": "class SharedPointer", + "id": 16, + "offset": 224, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2061635599 + }, + "m_subEffectMeta": { + "type": "class SharedPointer", + "id": 17, + "offset": 240, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1944101106 + }, + "m_delayEnchantment": { + "type": "bool", + "id": 18, + "offset": 257, + "flags": 287, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1469531165 + "hash": 191336919 }, - "m_nAnimEndFrame": { - "type": "int", - "id": 1, - "offset": 76, - "flags": 135, + "m_PvE": { + "type": "bool", + "id": 19, + "offset": 264, + "flags": 287, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1659451087 + "hash": 269492350 }, - "m_fAnimRate": { - "type": "float", - "id": 2, - "offset": 80, - "flags": 135, + "m_delayEnchantmentOrder": { + "type": "enum SpellEffect::kDelayOrder", + "id": 20, + "offset": 72, + "flags": 287, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 802385934 + "hash": 2526055263, + "enum_options": { + "SpellEffect::kAnyOrder": 0, + "SpellEffect::kFirst": 1, + "SpellEffect::kSecond": 2 + } }, - "m_bAnimLoop": { - "type": "bool", - "id": 3, - "offset": 84, - "flags": 135, + "m_roundAddedTC": { + "type": "int", + "id": 21, + "offset": 260, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1487150228 + "hash": 112365451 }, - "m_bAnimForceFinish": { - "type": "bool", - "id": 4, - "offset": 85, - "flags": 135, + "m_secondarySchoolID": { + "type": "unsigned int", + "id": 22, + "offset": 304, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 943660298 - } - } - }, - "1203497098": { - "name": "class CollisionWorld", - "bases": [ - "PropertyClass" - ], - "hash": 1203497098, - "properties": { - "m_World": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, + "hash": 2081206026 + }, + "m_fusionState": { + "type": "enum Spell::FusionState", + "id": 23, + "offset": 308, + "flags": 31, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1731856744 + "pointer": false, + "hash": 835324539, + "enum_options": { + "FS_Invalid": 0, + "FS_Partial": 1, + "FS_Valid": 2 + } } } }, - "831223119": { - "name": "class SharedPointer", + "898019150": { + "name": "class SharedPointer", "bases": [ - "ControlCheckBox", - "ControlButton", "Window", "PropertyClass" ], - "hash": 831223119, + "hash": 898019150, "properties": { "m_sName": { "type": "std::string", @@ -575260,8 +471899,11 @@ "hash": 983582334, "enum_options": { "HAS_BACK": 1, + "SCALE_CHILDREN": 2, "CAN_MOVE": 4, "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "FOCUS_LOCKED": 64, "CAN_FOCUS": 128, "CAN_DOCK": 32, "DO_NOT_CAPTURE_MOUSE": 256, @@ -575273,12 +471915,7 @@ "USE_ALPHA_BOUNDS": 8192, "AUTO_GROW": 16384, "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152, - "EFFECT_SCALE": 67108864, - "LOCK_ICON_SIZE": 33554432, - "LEFT_TEXT": 536870912, - "NO_FIT_TEXT": 1073741824, - "CHECKBOX_TEXTOVERIMAGE": 16777216 + "AUTO_RESIZE": 49152 } }, "m_Flags": { @@ -575438,765 +472075,1165 @@ "singleton": false, "pointer": false, "hash": 3091503757 + } + } + }, + "1740689474": { + "name": "class GraphicalEventCurrency2", + "bases": [ + "GraphicalSpell", + "Spell", + "PropertyClass" + ], + "hash": 1740689474, + "properties": { + "m_templateID": { + "type": "unsigned int", + "id": 0, + "offset": 128, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1286746870 }, - "m_bToggle": { - "type": "bool", - "id": 16, - "offset": 608, - "flags": 135, + "m_enchantment": { + "type": "unsigned int", + "id": 1, + "offset": 80, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2071810903 + "hash": 2217886818 }, - "m_bButtonDown": { + "m_pipCost": { + "type": "class SharedPointer", + "id": 2, + "offset": 176, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3605704820 + }, + "m_regularAdjust": { + "type": "int", + "id": 3, + "offset": 192, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1420453335 + }, + "m_magicSchoolID": { + "type": "unsigned int", + "id": 4, + "offset": 136, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 893146499 + }, + "m_accuracy": { + "type": "unsigned char", + "id": 5, + "offset": 132, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2273914939 + }, + "m_treasureCard": { "type": "bool", - "id": 17, - "offset": 609, - "flags": 135, + "id": 6, + "offset": 197, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 840041705 + "hash": 1764879128 }, - "m_sLabel": { - "type": "std::wstring", - "id": 18, - "offset": 616, - "flags": 4194439, + "m_battleCard": { + "type": "bool", + "id": 7, + "offset": 198, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2207009163 + "hash": 1332843753 }, - "m_labelOffset": { - "type": "class Rect", - "id": 19, - "offset": 832, - "flags": 135, + "m_itemCard": { + "type": "bool", + "id": 8, + "offset": 199, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1990646723 + "hash": 1683654300 }, - "m_pButton": { - "type": "class SharedPointer", - "id": 20, - "offset": 656, - "flags": 135, + "m_sideBoard": { + "type": "bool", + "id": 9, + "offset": 200, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1543855875 + "pointer": false, + "hash": 1897838368 }, - "m_HotKey": { + "m_spellID": { "type": "unsigned int", - "id": 21, - "offset": 672, - "flags": 135, + "id": 10, + "offset": 204, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1631553409 + "hash": 1697483258 }, - "m_Color": { - "type": "class Color", - "id": 22, - "offset": 676, - "flags": 262279, + "m_leavesPlayWhenCastOverride": { + "type": "bool", + "id": 11, + "offset": 216, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1753714077 + "hash": 874407398 }, - "m_bCursorOver": { + "m_cloaked": { "type": "bool", - "id": 23, - "offset": 689, - "flags": 135, + "id": 12, + "offset": 196, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 283981103 + "hash": 7349510 }, - "m_bAbortWhenCursorNotOver": { + "m_enchantmentSpellIsItemCard": { "type": "bool", - "id": 24, - "offset": 706, - "flags": 135, + "id": 13, + "offset": 76, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 325405258 + "hash": 531590701 }, - "m_bHotKeyDown": { + "m_premutationSpellID": { + "type": "unsigned int", + "id": 14, + "offset": 112, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1530256370 + }, + "m_enchantedThisCombat": { "type": "bool", - "id": 25, - "offset": 680, - "flags": 135, + "id": 15, + "offset": 77, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 616989185 + "hash": 1895738923 }, - "m_fTime": { - "type": "float", - "id": 26, - "offset": 684, - "flags": 135, + "m_paramOverrides": { + "type": "class SharedPointer", + "id": 16, + "offset": 224, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2061635599 + }, + "m_subEffectMeta": { + "type": "class SharedPointer", + "id": 17, + "offset": 240, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1944101106 + }, + "m_delayEnchantment": { + "type": "bool", + "id": 18, + "offset": 257, + "flags": 287, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 883746156 + "hash": 191336919 }, - "m_bGreyed": { + "m_PvE": { "type": "bool", - "id": 27, - "offset": 688, - "flags": 135, + "id": 19, + "offset": 264, + "flags": 287, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1566556053 + "hash": 269492350 }, - "m_fMaxScale": { - "type": "float", - "id": 28, - "offset": 692, - "flags": 135, + "m_delayEnchantmentOrder": { + "type": "enum SpellEffect::kDelayOrder", + "id": 20, + "offset": 72, + "flags": 287, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2070186635 + "hash": 2526055263, + "enum_options": { + "SpellEffect::kAnyOrder": 0, + "SpellEffect::kFirst": 1, + "SpellEffect::kSecond": 2 + } }, - "m_fScaleSpeed": { - "type": "float", - "id": 29, - "offset": 696, - "flags": 135, + "m_roundAddedTC": { + "type": "int", + "id": 21, + "offset": 260, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1457135702 + "hash": 112365451 }, - "m_bUseDropShadow": { + "m_secondarySchoolID": { + "type": "unsigned int", + "id": 22, + "offset": 304, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2081206026 + }, + "m_fusionState": { + "type": "enum Spell::FusionState", + "id": 23, + "offset": 308, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 835324539, + "enum_options": { + "FS_Invalid": 0, + "FS_Partial": 1, + "FS_Valid": 2 + } + } + } + }, + "1299668638": { + "name": "class SegmentationRequrinmentsList*", + "bases": [ + "PropertyClass" + ], + "hash": 1299668638, + "properties": { + "m_segRequirnments": { + "type": "class SegmentationRequrinment", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1161472684 + }, + "m_bApplyDiscount": { "type": "bool", - "id": 30, - "offset": 704, - "flags": 135, + "id": 1, + "offset": 96, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 93063037 + "hash": 1270539076 }, - "m_bUseOutline": { + "m_nDiscountPrice": { + "type": "unsigned int", + "id": 2, + "offset": 100, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1342003831 + }, + "m_nDiscountPercent": { + "type": "unsigned int", + "id": 3, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 333850677 + }, + "m_bShowStrikethruPrice": { "type": "bool", - "id": 31, - "offset": 705, - "flags": 135, + "id": 4, + "offset": 108, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 744292994 + "hash": 1930806814 + } + } + }, + "459407156": { + "name": "class ClientUntargetableCinematicAction", + "bases": [ + "UntargetableCinematicAction", + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 459407156, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 }, - "m_pGreyedState": { - "type": "class SharedPointer", - "id": 32, - "offset": 768, - "flags": 135, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, + "pointer": false, + "hash": 2285866132 + } + } + }, + "1299267716": { + "name": "class AutobotQuestManager", + "bases": [ + "PropertyClass" + ], + "hash": 1299267716, + "properties": {} + }, + "458410230": { + "name": "class ShowcasedStoreItemList*", + "bases": [ + "PropertyClass" + ], + "hash": 458410230, + "properties": { + "m_items": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, "pointer": true, - "hash": 2703352263 + "hash": 1667746752 + } + } + }, + "899143391": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 899143391, + "properties": { + "m_offsetType": { + "type": "enum LeashOffsetOverride::LeashOffsetType", + "id": 0, + "offset": 72, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1559902382, + "enum_options": { + "LOT_UNRESTRICTED": 0, + "LOT_RIGHTONLY": 1, + "LOT_LEFTONLY": 2 + } + } + } + }, + "1740846621": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1740846621, + "properties": {} + }, + "898746618": { + "name": "class SharedPointer", + "bases": [ + "CastleMagicBehaviorBase", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 898746618, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 }, - "m_pNormalState": { - "type": "class SharedPointer", - "id": 33, - "offset": 752, - "flags": 135, + "m_castleMagicData": { + "type": "std::string", + "id": 1, + "offset": 128, + "flags": 575, "container": "Static", "dynamic": false, "singleton": false, + "pointer": false, + "hash": 2874597138 + } + } + }, + "459328542": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 459328542, + "properties": { + "m_templates": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, "pointer": true, - "hash": 1887909808 + "hash": 1496975562 + } + } + }, + "898738405": { + "name": "class SigilSubCircle", + "bases": [ + "PropertyClass" + ], + "hash": 898738405, + "properties": { + "m_locationType": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1824460246 }, - "m_pHighlightedState": { - "type": "class SharedPointer", - "id": 34, - "offset": 784, - "flags": 135, + "m_locationPreference": { + "type": "std::string", + "id": 1, + "offset": 112, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2200177608 + "pointer": false, + "hash": 2817699507 }, - "m_pSelectedState": { - "type": "class SharedPointer", - "id": 35, - "offset": 800, - "flags": 135, + "m_rotation": { + "type": "float", + "id": 2, + "offset": 152, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2266776432 + "pointer": false, + "hash": 1497468551 }, - "m_pDepressedState": { - "type": "class SharedPointer", - "id": 36, - "offset": 816, - "flags": 135, + "m_radius": { + "type": "float", + "id": 3, + "offset": 156, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 989410271 + }, + "m_color": { + "type": "class Color", + "id": 4, + "offset": 160, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, + "pointer": false, + "hash": 1791663549 + }, + "m_cameras": { + "type": "class SigilCamera*", + "id": 5, + "offset": 168, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, "pointer": true, - "hash": 1878185798 + "hash": 2715542772 + } + } + }, + "1305521051": { + "name": "class GameEffectTemplate*", + "bases": [ + "PropertyClass" + ], + "hash": 1305521051, + "properties": { + "m_effectName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2029161513 }, - "m_nGroupID": { + "m_effectCategory": { + "type": "std::string", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1852673222 + }, + "m_sortOrder": { "type": "int", - "id": 37, - "offset": 880, - "flags": 135, + "id": 2, + "offset": 148, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 403966850 + "hash": 1411218206 }, - "m_bChecked": { + "m_duration": { + "type": "double", + "id": 3, + "offset": 192, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2727932435 + }, + "m_stackingCategories": { + "type": "std::string", + "id": 4, + "offset": 160, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1774497525 + }, + "m_isPersistent": { "type": "bool", - "id": 38, - "offset": 884, - "flags": 135, + "id": 5, + "offset": 153, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 958955100 + "hash": 923861920 }, - "m_pCheckedState": { - "type": "class SharedPointer", - "id": 39, - "offset": 888, - "flags": 135, + "m_bIsOnPet": { + "type": "bool", + "id": 6, + "offset": 154, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1210539694 + "pointer": false, + "hash": 522593303 }, - "m_pCheckedGreyedState": { - "type": "class SharedPointer", - "id": 40, - "offset": 904, - "flags": 135, + "m_isPublic": { + "type": "bool", + "id": 7, + "offset": 152, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2702030126 + "pointer": false, + "hash": 1728439822 }, - "m_pCheckedHighlightedState": { - "type": "class SharedPointer", - "id": 41, - "offset": 920, - "flags": 135, + "m_visualEffectAddName": { + "type": "std::string", + "id": 8, + "offset": 200, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1320097679 + "pointer": false, + "hash": 3382086694 }, - "m_pCheckedDepressedState": { - "type": "class SharedPointer", - "id": 42, - "offset": 936, - "flags": 135, + "m_visualEffectRemoveName": { + "type": "std::string", + "id": 9, + "offset": 232, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1609188685 + "pointer": false, + "hash": 1541697323 + }, + "m_onAddFunctorName": { + "type": "std::string", + "id": 10, + "offset": 280, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1561843107 + }, + "m_onRemoveFunctorName": { + "type": "std::string", + "id": 11, + "offset": 312, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2559017864 + }, + "m_stackingRule": { + "type": "enum STACKING_RULE", + "id": 12, + "offset": 144, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 431568889, + "enum_options": { + "STACKING_ALLOWED": 0, + "STACKING_NOSTACK": 1, + "STACKING_REPLACE": 2 + } } } }, - "2012000686": { - "name": "class SharedPointer", + "1744038418": { + "name": "class WinAnimMoveToLocationTimeEase", "bases": [ - "Window", + "WinAnimMoveToLocationTime", + "WinAnimMoveToLocation", + "WindowAnimation", "PropertyClass" ], - "hash": 2012000686, + "hash": 1744038418, "properties": { - "m_sName": { - "type": "std::string", + "m_bUseDeepCopy": { + "type": "bool", "id": 0, - "offset": 80, + "offset": 72, "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2306437263 + "hash": 433380635 }, - "m_Children": { - "type": "class SharedPointer", + "m_targetLocation": { + "type": "class Vector3D", "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2621225959 + "pointer": false, + "hash": 2653859938 }, - "m_Style": { - "type": "unsigned int", + "m_fTimeRemaining": { + "type": "float", "id": 2, - "offset": 152, - "flags": 1048583, + "offset": 100, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "SCALE_CHILDREN": 2, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "FOCUS_LOCKED": 64, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152 - } + "hash": 1591443014 }, - "m_Flags": { - "type": "unsigned int", + "m_fTimeTotal": { + "type": "float", "id": 3, - "offset": 156, - "flags": 1048583, + "offset": 96, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648, - "ONE_SHOT": 8388608, - "FLIPPED_HORIZONTAL": 16777216, - "FLIPPED_VERTICAL": 33554432 - } + "hash": 661225456 }, - "m_Window": { - "type": "class Rect", + "m_fEaseInPercent": { + "type": "float", "id": 4, - "offset": 160, + "offset": 120, "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3105139380 + "hash": 1482967843 }, - "m_fTargetAlpha": { + "m_fEaseOutPercent": { "type": "float", "id": 5, - "offset": 212, + "offset": 124, "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1809129834 + "hash": 1272154212 }, - "m_fDisabledAlpha": { + "m_fTotalDistance": { "type": "float", "id": 6, - "offset": 216, + "offset": 128, "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1389987675 - }, - "m_fAlpha": { + "hash": 1894338732 + } + } + }, + "1301456684": { + "name": "class SharedPointer", + "bases": [ + "PlayGraphicOnSigilCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 1301456684, + "properties": { + "m_timeOffset": { "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, + "id": 0, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 482130755 + "hash": 2237098605 }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, + "m_minDuration": { + "type": "float", + "id": 1, + "offset": 80, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3623628394 + "pointer": false, + "hash": 1733171553 }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, + "m_assetName": { + "type": "std::string", + "id": 2, + "offset": 88, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2102211316 - }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, + "hash": 1513131580 + } + } + }, + "1742004290": { + "name": "class GraphicalEventCurrency1*", + "bases": [ + "GraphicalSpell", + "Spell", + "PropertyClass" + ], + "hash": 1742004290, + "properties": { + "m_templateID": { + "type": "unsigned int", + "id": 0, + "offset": 128, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1846695875 + "hash": 1286746870 }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, + "m_enchantment": { + "type": "unsigned int", + "id": 1, + "offset": 80, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3389835433 + "hash": 2217886818 }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, + "m_pipCost": { + "type": "class SharedPointer", + "id": 2, + "offset": 176, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 2547159940 + "pointer": true, + "hash": 3605704820 }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, + "m_regularAdjust": { + "type": "int", + "id": 3, + "offset": 192, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1513510520 + "hash": 1420453335 }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, + "m_magicSchoolID": { + "type": "unsigned int", + "id": 4, + "offset": 136, + "flags": 7, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 2587533771 + "hash": 893146499 }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, + "m_accuracy": { + "type": "unsigned char", + "id": 5, + "offset": 132, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3091503757 + "hash": 2273914939 }, - "m_pMaterial": { - "type": "class SharedPointer", - "id": 16, - "offset": 592, - "flags": 135, + "m_treasureCard": { + "type": "bool", + "id": 6, + "offset": 197, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3479277078 + "pointer": false, + "hash": 1764879128 }, - "m_fRotation": { - "type": "float", - "id": 17, - "offset": 608, - "flags": 135, + "m_battleCard": { + "type": "bool", + "id": 7, + "offset": 198, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1175400173 + "hash": 1332843753 }, - "m_Color": { - "type": "class Color", - "id": 18, - "offset": 584, - "flags": 262279, + "m_itemCard": { + "type": "bool", + "id": 8, + "offset": 199, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1753714077 + "hash": 1683654300 }, - "m_textColor": { - "type": "class Color", - "id": 19, - "offset": 612, - "flags": 262279, + "m_sideBoard": { + "type": "bool", + "id": 9, + "offset": 200, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2528109250 + "hash": 1897838368 }, - "m_textComponent": { - "type": "class TextComponent", - "id": 20, - "offset": 616, - "flags": 135, + "m_spellID": { + "type": "unsigned int", + "id": 10, + "offset": 204, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3491704390 - } - } - }, - "832775076": { - "name": "class WinAnimSize*", - "bases": [ - "WindowAnimation", - "PropertyClass" - ], - "hash": 832775076, - "properties": { - "m_bUseDeepCopy": { + "hash": 1697483258 + }, + "m_leavesPlayWhenCastOverride": { "type": "bool", - "id": 0, - "offset": 72, - "flags": 135, + "id": 11, + "offset": 216, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 433380635 + "hash": 874407398 }, - "m_size": { - "type": "class Size", - "id": 1, - "offset": 80, - "flags": 135, + "m_cloaked": { + "type": "bool", + "id": 12, + "offset": 196, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 251247159 - } - } - }, - "1214880889": { - "name": "class SpeedEffect*", - "bases": [ - "GameEffectBase", - "PropertyClass" - ], - "hash": 1214880889, - "properties": { - "m_currentTickCount": { - "type": "double", - "id": 0, - "offset": 80, - "flags": 63, + "hash": 7349510 + }, + "m_enchantmentSpellIsItemCard": { + "type": "bool", + "id": 13, + "offset": 76, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2533274692 + "hash": 531590701 }, - "m_effectNameID": { + "m_premutationSpellID": { "type": "unsigned int", - "id": 1, - "offset": 96, - "flags": 63, + "id": 14, + "offset": 112, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1204067144 + "hash": 1530256370 }, - "m_bIsOnPet": { + "m_enchantedThisCombat": { "type": "bool", - "id": 2, - "offset": 73, + "id": 15, + "offset": 77, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 522593303 + "hash": 1895738923 }, - "m_originatorID": { - "type": "gid", - "id": 3, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, + "m_paramOverrides": { + "type": "class SharedPointer", + "id": 16, + "offset": 224, + "flags": 31, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 1131810019 + "pointer": true, + "hash": 2061635599 }, - "m_itemSlotID": { - "type": "unsigned int", - "id": 4, - "offset": 112, - "flags": 63, + "m_subEffectMeta": { + "type": "class SharedPointer", + "id": 17, + "offset": 240, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1944101106 + }, + "m_delayEnchantment": { + "type": "bool", + "id": 18, + "offset": 257, + "flags": 287, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1895747595 + "hash": 191336919 }, - "m_internalID": { - "type": "int", - "id": 5, - "offset": 92, - "flags": 63, + "m_PvE": { + "type": "bool", + "id": 19, + "offset": 264, + "flags": 287, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1643137924 + "hash": 269492350 }, - "m_endTime": { - "type": "unsigned int", - "id": 6, - "offset": 88, - "flags": 31, + "m_delayEnchantmentOrder": { + "type": "enum SpellEffect::kDelayOrder", + "id": 20, + "offset": 72, + "flags": 287, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 716479635 + "hash": 2526055263, + "enum_options": { + "SpellEffect::kAnyOrder": 0, + "SpellEffect::kFirst": 1, + "SpellEffect::kSecond": 2 + } }, - "m_speedMultiplier": { + "m_roundAddedTC": { "type": "int", - "id": 7, - "offset": 128, + "id": 21, + "offset": 260, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 32503058 - } - } - }, - "832321529": { - "name": "class GameEffectTimerSoundTrigger", - "bases": [ - "GameEffectTimerTrigger", - "PropertyClass" - ], - "hash": 832321529, - "properties": { - "m_radius": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 31, + "hash": 112365451 + }, + "m_secondarySchoolID": { + "type": "unsigned int", + "id": 22, + "offset": 304, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 989410271 + "hash": 2081206026 }, - "m_triggerT": { - "type": "float", - "id": 1, - "offset": 76, + "m_fusionState": { + "type": "enum Spell::FusionState", + "id": 23, + "offset": 308, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2138083583 - }, - "m_soundFiles": { - "type": "std::string", - "id": 2, - "offset": 80, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 3585199735 + "hash": 835324539, + "enum_options": { + "FS_Invalid": 0, + "FS_Partial": 1, + "FS_Valid": 2 + } } } }, - "1208136751": { - "name": "class HaltCinematicAction*", + "459407204": { + "name": "class ClientUntargetableCinematicAction*", "bases": [ + "UntargetableCinematicAction", + "ActorCinematicAction", "CinematicAction", "PropertyClass" ], - "hash": 1208136751, + "hash": 459407204, "properties": { "m_timeOffset": { "type": "float", @@ -576208,98 +473245,84 @@ "singleton": false, "pointer": false, "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 } } }, - "2012594057": { - "name": "class std::list >", - "bases": [], - "hash": 2012594057, - "properties": {} - }, - "832321209": { - "name": "class GameEffectTimerSoundTrigger*", + "1299977357": { + "name": "class SharedPointer", "bases": [ - "GameEffectTimerTrigger", "PropertyClass" ], - "hash": 832321209, + "hash": 1299977357, "properties": { - "m_radius": { - "type": "float", + "m_filterName": { + "type": "std::string", "id": 0, "offset": 72, - "flags": 31, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 989410271 + "hash": 1798118690 }, - "m_triggerT": { - "type": "float", + "m_filterIcon": { + "type": "std::string", "id": 1, - "offset": 76, - "flags": 31, + "offset": 104, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2138083583 + "hash": 1797941258 }, - "m_soundFiles": { + "m_displayKey": { "type": "std::string", "id": 2, - "offset": 80, - "flags": 31, - "container": "List", - "dynamic": true, + "offset": 136, + "flags": 7, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 3585199735 - } - } - }, - "1206915484": { - "name": "enum BattlegroundPlayerStats::PlayerTeamEnum", - "bases": [], - "hash": 1206915484, - "properties": {} - }, - "1205782502": { - "name": "enum BaseEffectCinematicAction::kEffectRelative", - "bases": [], - "hash": 1205782502, - "properties": {} - }, - "1205539138": { - "name": "class BadgeBehaviorTemplate*", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 1205539138, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, + "hash": 3023276954 + }, + "m_countOffset": { + "type": "unsigned int", + "id": 3, + "offset": 172, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3130754092 + "hash": 621805021 } } }, - "2018289575": { - "name": "class RaidGateBehaviorTemplate*", + "1741861439": { + "name": "class LinearStateSoundBehaviorTemplate", "bases": [ + "LinearSoundBehaviorTemplate", + "PositionalSoundBehaviorTemplate", + "SoundBehaviorTemplate", + "AreaBehaviorTemplate", "BehaviorTemplate", "PropertyClass" ], - "hash": 2018289575, + "hash": 1741861439, "properties": { "m_behaviorName": { "type": "std::string", @@ -576312,8 +473335,8 @@ "pointer": false, "hash": 3130754092 }, - "m_itemAdjective": { - "type": "std::string", + "m_radius": { + "type": "float", "id": 1, "offset": 120, "flags": 7, @@ -576321,373 +473344,374 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 3066441529 + "hash": 989410271 }, - "m_unlockCantrip": { - "type": "std::string", + "m_category": { + "type": "enum AudioCategory", "id": 2, - "offset": 152, - "flags": 7, + "offset": 124, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2731256472 + "hash": 2951251982, + "enum_options": { + "AudioCategory_Irrelevent": 0, + "AudioCategory_Accoustic": 1, + "AudioCategory_Noise": 2, + "AudioCategory_Music": 3, + "AudioCategory_MusicAtSFXVolume": 4, + "AudioCategory_Dialog": 5, + "AudioCategory_UI": 6, + "AudioCategory_NoiseAtMusicVolume": 7 + } }, - "m_numberOfUnlockPlayers": { - "type": "int", + "m_exclusive": { + "type": "bool", "id": 3, - "offset": 184, + "offset": 128, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 855609764 + "hash": 824383403 }, - "m_activateState": { - "type": "std::string", + "m_active": { + "type": "bool", "id": 4, - "offset": 192, + "offset": 129, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2508957133 + "hash": 239335471 }, - "m_enabledSeconds": { - "type": "int", + "m_enableReqs": { + "type": "class SharedPointer", "id": 5, - "offset": 224, - "flags": 7, + "offset": 136, + "flags": 263, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 2014197012 + "pointer": true, + "hash": 3158020443 }, - "m_linkedUnlockTemplateID": { - "type": "unsigned int", + "m_trackFilenameList": { + "type": "std::string", "id": 6, - "offset": 228, + "offset": 152, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "Vector", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 952577945 + "hash": 2531081709 }, - "m_cooldownSeconds": { - "type": "unsigned int", + "m_playList": { + "type": "class PlayListEntry*", "id": 7, - "offset": 232, + "offset": 176, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "Vector", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 1670668641 + "pointer": true, + "hash": 3907873161 }, - "m_overrideTitle": { - "type": "std::string", + "m_priority": { + "type": "int", "id": 8, - "offset": 240, + "offset": 208, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2739145597 + "hash": 1235205852 }, - "m_overrideDonateTitle": { - "type": "std::string", + "m_volume": { + "type": "float", "id": 9, - "offset": 272, + "offset": 200, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2976683384 + "hash": 1162855023 }, - "m_overrideChooseTitle": { - "type": "std::string", + "m_loopCount": { + "type": "int", "id": 10, - "offset": 304, + "offset": 204, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2732703966 + "hash": 865634717 }, - "m_overrideFinalStepText": { - "type": "std::string", + "m_progression": { + "type": "enum PlayList::Progression", "id": 11, - "offset": 336, - "flags": 7, + "offset": 220, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2712952390 + "hash": 3279400238, + "enum_options": { + "Sequence": 0, + "Random": 1, + "SequenceOnceOnly": 2, + "RandomNoRepeat": 3 + } }, - "m_overrideNeedKeyText": { - "type": "std::string", + "m_progressMin": { + "type": "float", "id": 12, - "offset": 368, + "offset": 212, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2575667685 + "hash": 1497550192 }, - "m_isExtractor": { - "type": "bool", + "m_progressMax": { + "type": "float", "id": 13, - "offset": 400, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2105029547 - } - } - }, - "832400140": { - "name": "class WhirlyBurlyAddGroup*", - "bases": [ - "PropertyClass" - ], - "hash": 832400140, - "properties": { - "m_playerList": { - "type": "gid", - "id": 0, - "offset": 72, + "offset": 216, "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1909774945 - } - } - }, - "1205084658": { - "name": "class SharedPointer", - "bases": [ - "DerbyRemoveAction", - "DerbyEffect", - "PropertyClass" - ], - "hash": 1205084658, - "properties": { - "m_buffType": { - "type": "enum DerbyTalentBuffType", - "id": 0, - "offset": 92, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1149251982, - "enum_options": { - "Buff": 0, - "Debuff": 1, - "Neither": 2 - } - }, - "m_kTarget": { - "type": "enum DerbyTargetType", - "id": 1, - "offset": 96, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1807803351, - "enum_options": { - "kTargetInFront": 0, - "kTargetBehind": 1, - "kTargetFirst": 2, - "kTargetSelf": 3, - "kTargetAll": 4, - "kTargetLast": 5 - } - }, - "m_nDuration": { - "type": "int", - "id": 2, - "offset": 104, - "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1110167982 + "hash": 1497549938 }, - "m_effectID": { + "m_audioFilterSet": { "type": "unsigned int", - "id": 3, - "offset": 88, - "flags": 24, + "id": 14, + "offset": 224, + "flags": 33554439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2347630439 + "hash": 831339825 }, - "m_imageFilename": { + "m_animationNameFilter": { "type": "std::string", - "id": 4, - "offset": 112, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2813328063 - }, - "m_iconIndex": { - "type": "unsigned int", - "id": 5, - "offset": 144, - "flags": 31, + "id": 15, + "offset": 232, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1265133262 + "hash": 2292854242 }, - "m_soundOnActivate": { + "m_functionallabel": { "type": "std::string", - "id": 6, - "offset": 152, - "flags": 131103, + "id": 16, + "offset": 264, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1956929714 + "hash": 3589331278 }, - "m_soundOnTarget": { - "type": "std::string", - "id": 7, - "offset": 184, - "flags": 131103, + "m_innerRadius": { + "type": "float", + "id": 17, + "offset": 296, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3444214056 + "hash": 686816091 }, - "m_targetParticleEffect": { - "type": "std::string", - "id": 8, - "offset": 216, - "flags": 131103, + "m_inverted": { + "type": "bool", + "id": 18, + "offset": 300, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3048234723 + "hash": 1034821044 }, - "m_overheadMessage": { - "type": "std::string", - "id": 9, - "offset": 248, - "flags": 8388639, + "m_fRangeScale": { + "type": "float", + "id": 19, + "offset": 304, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1701018190 + "hash": 1749294034 }, - "m_requirements": { - "type": "class RequirementList", - "id": 10, - "offset": 280, - "flags": 31, + "m_fAttenuationFactor": { + "type": "float", + "id": 20, + "offset": 308, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2840988582 + "hash": 273292776 }, - "m_nActionType": { - "type": "enum DerbyActionTargetType", - "id": 11, - "offset": 376, - "flags": 2097183, + "m_eAttenuationType": { + "type": "enum PositionInfoAttenuationType", + "id": 21, + "offset": 312, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3401355432, + "hash": 2427193304, "enum_options": { - "Jump": 0, - "Duck": 1, - "AllExceptCheer": 2, - "Cheer": 3 + "Standard": 0, + "Unit Range Power": 1 } + }, + "m_vPositions": { + "type": "class Vector3D", + "id": 22, + "offset": 320, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 3599600160 } } }, - "2016345993": { - "name": "class SkyboxInfo", + "899542053": { + "name": "class SharedPointer", "bases": [ "PropertyClass" ], - "hash": 2016345993, + "hash": 899542053, "properties": { - "m_skyLayerCount": { - "type": "int", + "m_guildAchievementList": { + "type": "class SharedPointer", "id": 0, "offset": 72, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2487751645 + } + } + }, + "1299811137": { + "name": "class MagicXPConfig*", + "bases": [ + "PropertyClass" + ], + "hash": 1299811137, + "properties": { + "m_encounterXPFactors": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Vector", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 816414615 + "hash": 1658121668 }, - "m_skyLayerName": { - "type": "std::string", + "m_levelInfo": { + "type": "class MagicLevelInfo*", "id": 1, - "offset": 80, + "offset": 96, "flags": 7, - "container": "Vector", + "container": "List", "dynamic": true, "singleton": false, - "pointer": false, - "hash": 2824410256 + "pointer": true, + "hash": 3910018919 }, - "m_clientTag": { - "type": "std::string", + "m_classInfo": { + "type": "class ClassInfo*", "id": 2, - "offset": 104, + "offset": 112, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1542484118 + }, + "m_maxSchoolLevel": { + "type": "int", + "id": 3, + "offset": 144, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3409856790 + "hash": 966975040 + }, + "m_experienceBonus": { + "type": "float", + "id": 4, + "offset": 148, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2151977766 + }, + "m_schoolOfFocusBonus": { + "type": "float", + "id": 5, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1568585435 + }, + "m_levelsConfig": { + "type": "class MobRankLevel*", + "id": 6, + "offset": 160, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1122741478 } } }, - "2014683147": { - "name": "class SharedPointer", + "1741798753": { + "name": "class ReqIsGoal*", "bases": [ "Requirement", "PropertyClass" ], - "hash": 2014683147, + "hash": 1741798753, "properties": { "m_applyNOT": { "type": "bool", @@ -576719,484 +473743,3298 @@ "__DEFAULT": "ROP_AND" } }, - "m_classProjectName": { + "m_questName": { "type": "std::string", "id": 2, "offset": 80, + "flags": 268435463, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1702112846, + "enum_options": { + "__BASECLASS": "QuestTemplate" + } + }, + "m_goalName": { + "type": "std::string", + "id": 3, + "offset": 112, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1714146665 + "hash": 1521627807 } } }, - "2013434854": { - "name": "class ControlFreeChat*", + "466034888": { + "name": "class ClientActivateHangingEffectCinematicAction", "bases": [ - "ControlRichEdit", - "ControlEdit", - "Window", + "ActivateHangingEffectCinematicAction", + "ActorCinematicAction", + "CinematicAction", "PropertyClass" ], - "hash": 2013434854, + "hash": 466034888, "properties": { - "m_sName": { - "type": "std::string", + "m_timeOffset": { + "type": "float", "id": 0, - "offset": 80, - "flags": 135, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2306437263 + "hash": 2237098605 }, - "m_Children": { - "type": "class SharedPointer", + "m_actor": { + "type": "std::string", "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621225959 - }, - "m_Style": { - "type": "unsigned int", - "id": 2, - "offset": 152, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152, - "FORCE_NUMERIC": 16777216, - "FORCE_ALPHA": 268435456, - "FORCE_ALPHANUMERIC": 536870912, - "FORCE_INTEGER": 33554432, - "FORCE_POSITIVE": 67108864, - "FORCE_RANGE": 134217728 - } - }, - "m_Flags": { - "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 1048583, + "offset": 80, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } + "hash": 2285866132 }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, - "flags": 135, + "m_activate": { + "type": "bool", + "id": 2, + "offset": 120, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3105139380 + "hash": 142527940 }, - "m_fTargetAlpha": { - "type": "float", - "id": 5, - "offset": 212, - "flags": 135, + "m_cloaked": { + "type": "bool", + "id": 3, + "offset": 121, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1809129834 - }, - "m_fDisabledAlpha": { + "hash": 7349510 + } + } + }, + "1299811140": { + "name": "class MagicXPConfig", + "bases": [ + "PropertyClass" + ], + "hash": 1299811140, + "properties": { + "m_encounterXPFactors": { "type": "float", - "id": 6, - "offset": 216, - "flags": 135, - "container": "Static", - "dynamic": false, + "id": 0, + "offset": 72, + "flags": 7, + "container": "Vector", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 1389987675 + "hash": 1658121668 }, - "m_fAlpha": { - "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, - "container": "Static", - "dynamic": false, + "m_levelInfo": { + "type": "class MagicLevelInfo*", + "id": 1, + "offset": 96, + "flags": 7, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 482130755 + "pointer": true, + "hash": 3910018919 }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, - "container": "Static", - "dynamic": false, + "m_classInfo": { + "type": "class ClassInfo*", + "id": 2, + "offset": 112, + "flags": 7, + "container": "List", + "dynamic": true, "singleton": false, "pointer": true, - "hash": 3623628394 + "hash": 1542484118 }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, + "m_maxSchoolLevel": { + "type": "int", + "id": 3, + "offset": 144, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2102211316 + "hash": 966975040 }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, + "m_experienceBonus": { + "type": "float", + "id": 4, + "offset": 148, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1846695875 + "hash": 2151977766 }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, + "m_schoolOfFocusBonus": { + "type": "float", + "id": 5, + "offset": 152, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3389835433 + "hash": 1568585435 }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, + "m_levelsConfig": { + "type": "class MobRankLevel*", + "id": 6, + "offset": 160, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1122741478 + } + } + }, + "1741811041": { + "name": "class ReqIsGoal", + "bases": [ + "Requirement", + "PropertyClass" + ], + "hash": 1741811041, + "properties": { + "m_applyNOT": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2547159940 + "hash": 1746328074, + "enum_options": { + "__DEFAULT": 0 + } }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, + "m_operator": { + "type": "enum Requirement::Operator", + "id": 1, + "offset": 76, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2587533771 + "hash": 2672792317, + "enum_options": { + "ROP_AND": 0, + "ROP_OR": 1, + "__DEFAULT": "ROP_AND" + } }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, + "m_questName": { + "type": "std::string", + "id": 2, + "offset": 80, + "flags": 268435463, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3091503757 + "hash": 1702112846, + "enum_options": { + "__BASECLASS": "QuestTemplate" + } }, - "m_sText": { - "type": "std::wstring", - "id": 16, - "offset": 584, - "flags": 135, + "m_goalName": { + "type": "std::string", + "id": 3, + "offset": 112, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2102642960 - }, - "m_nMaxLength": { - "type": "int", - "id": 17, - "offset": 620, - "flags": 135, + "hash": 1521627807 + } + } + }, + "463459163": { + "name": "class std::list >", + "bases": [], + "hash": 463459163, + "properties": {} + }, + "902021579": { + "name": "enum BattlegroundPlayerStats::PlayerStatusEnum", + "bases": [], + "hash": 902021579, + "properties": {} + }, + "461603029": { + "name": "class WizardCharacterBehaviorTemplate*", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 461603029, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1183478416 + "hash": 3130754092 }, - "m_bPassword": { - "type": "bool", - "id": 18, - "offset": 624, - "flags": 135, + "m_nHeadHandsModel": { + "type": "int", + "id": 1, + "offset": 120, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1604468200 + "hash": 998398489 }, - "m_bLog": { - "type": "bool", - "id": 19, - "offset": 625, - "flags": 135, + "m_nHairModel": { + "type": "int", + "id": 2, + "offset": 124, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 221687287 + "hash": 1415899069 }, - "m_previousNext": { - "type": "bool", - "id": 20, - "offset": 627, - "flags": 135, + "m_nHatModel": { + "type": "int", + "id": 3, + "offset": 128, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 858581071 + "hash": 1927542998 }, - "m_nMaxLogSize": { + "m_nTorsoModel": { "type": "int", - "id": 21, - "offset": 712, - "flags": 135, + "id": 4, + "offset": 132, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 779573899 + "hash": 1482459696 }, - "m_bEditing": { - "type": "bool", - "id": 22, - "offset": 616, - "flags": 135, + "m_nFeetModel": { + "type": "int", + "id": 5, + "offset": 136, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1243218553 + "hash": 1832171389 }, - "m_bAllowPaste": { - "type": "bool", - "id": 23, - "offset": 626, - "flags": 135, + "m_nWandModel": { + "type": "int", + "id": 6, + "offset": 140, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1129316721 + "hash": 132808131 }, - "m_nLogPosition": { + "m_nSkinColor": { "type": "int", - "id": 24, - "offset": 704, - "flags": 135, + "id": 7, + "offset": 144, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1120160767 + "hash": 105291612 }, - "m_nCursor": { + "m_nSkinDecal": { "type": "int", - "id": 25, - "offset": 716, - "flags": 135, + "id": 8, + "offset": 148, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1876782150 + "hash": 106107894 }, - "m_nEditBegin": { + "m_nHairColor": { "type": "int", - "id": 26, - "offset": 720, - "flags": 135, + "id": 9, + "offset": 152, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1066592403 + "hash": 1404048907 }, - "m_nEditEnd": { + "m_nHatColor": { "type": "int", - "id": 27, - "offset": 724, - "flags": 135, + "id": 10, + "offset": 156, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1560905669 + "hash": 1915692836 }, - "m_sSavedText": { - "type": "std::wstring", - "id": 28, - "offset": 728, - "flags": 135, + "m_nHatDecal": { + "type": "int", + "id": 11, + "offset": 160, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2197953283 + "hash": 1916509118 }, - "m_fCursorBlinkSpeed": { - "type": "float", - "id": 29, - "offset": 760, - "flags": 135, + "m_nTorsoColor": { + "type": "int", + "id": 12, + "offset": 164, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2232655228 + "hash": 1470609534 }, - "m_fCursorTimer": { - "type": "float", - "id": 30, - "offset": 764, - "flags": 135, + "m_nTorsoDecal": { + "type": "int", + "id": 13, + "offset": 168, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1929942748 + "hash": 1471425816 }, - "m_bCursorBlink": { - "type": "bool", - "id": 31, - "offset": 768, - "flags": 135, + "m_nTorsoDecal2": { + "type": "int", + "id": 14, + "offset": 172, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 683441507 + "hash": 1309581098 }, - "m_fMinRange": { - "type": "double", - "id": 32, - "offset": 776, - "flags": 135, + "m_nFeetColor": { + "type": "int", + "id": 15, + "offset": 176, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3079523396 + "hash": 1820321227 }, - "m_fMaxRange": { - "type": "double", - "id": 33, - "offset": 784, - "flags": 135, + "m_nFeetDecal": { + "type": "int", + "id": 16, + "offset": 180, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3876551814 + "hash": 1821137509 }, - "m_nPrecision": { - "type": "int", - "id": 34, - "offset": 792, - "flags": 135, + "m_eGender": { + "type": "enum eGender", + "id": 17, + "offset": 184, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1404974196 + "hash": 2776344943, + "enum_options": { + "Male": 1, + "Female": 0, + "Neutral": 2 + } }, - "m_bDeleteOnFirstChar": { - "type": "bool", - "id": 35, - "offset": 618, - "flags": 135, + "m_eRace": { + "type": "enum eRace", + "id": 18, + "offset": 188, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 902105643 + "hash": 963057554, + "enum_options": { + "Bat": 88066, + "BatLightning": 1472842576, + "Boar": 2624962, + "CatThug": 1855674386, + "ChristmasElf": 819908552, + "ChristmasSnowman": 1146515225, + "Colossus_Ice": 1063279538, + "Cyclops": 1691813655, + "DragonBeta": 417003588, + "DragonFriendly": 69049013, + "EvilSnowman": 1579630926, + "FireElf": 443793687, + "Firecat": 2045525741, + "Frog": 2274918, + "FrostBeetle": 7692383, + "GhostBlue": 1097396892, + "GhostGreen": 882822629, + "GhostRed": 560510742, + "GhostYellow": 909974358, + "Ghoul": 82556199, + "GoatMonk": 486215564, + "GolemBrass": 1057388325, + "GolemClockwork": 1143380031, + "GolemSteel": 1660583674, + "GolemWood": 1426849876, + "HalloweenCat": 1042869199, + "Heckhound": 626736403, + "Helephant": 719065368, + "Human": 79806088, + "Hydra": 70785800, + "Imp": 84361, + "Krokomummy": 555755242, + "Kroktut": 1352354178, + "Leprechaun": 2106466410, + "LeprechaunPattyDay": 380507781, + "LightningBat": 228257682, + "Mannequin": 428442544, + "Minotaur": 949570680, + "Mount_Broom": 94637995, + "Mount_Cat": 1150940211, + "Mount_Dragon": 1565720148, + "Mount_Horse": 2054712767, + "Mount_PlayerWings": 589829552, + "Nikkos": 1563122418, + "NinjaPig": 607400740, + "Orthus": 1552590225, + "Piggle": 1897753328, + "Piggle_Valentine": 687697592, + "Piggle_ValentinePart2": 1760391091, + "Pixie": 74836240, + "RatMagician": 885542120, + "SalamanderFire": 48480175, + "SalamanderIce": 2011152164, + "SalamanderStorm": 600331072, + "Satyr": 84793363, + "Scarab": 2143810477, + "Sheep": 86220083, + "SkeletonArmored": 1791586239, + "SnowSerpent": 138621543, + "Spider": 1603064269, + "SpiderBlack": 559353179, + "SpiderBrown": 557941675, + "SpiderCrystal": 2119625297, + "SpiderGolem": 1632616514, + "Sprite": 1889156557, + "SpriteDark": 1888685518, + "Stormzilla": 252684095, + "SunBird": 1602211198, + "Transformation_ArmoredSkeleton": 1861349834, + "Transformation_CatThug": 1175387611, + "Transformation_Cat_Bandit": 1012395694, + "Transformation_ClockworkGolem": 601121214, + "Transformation_Cyclops": 620156297, + "Transformation_DarkFairy": 1206757203, + "Transformation_DraconianSorcerer": 1212016810, + "Transformation_Draconian": 450730089, + "Transformation_EarthColossus": 140119452, + "Transformation_EvilSnowman": 1497097122, + "Transformation_FatGobbler": 634003800, + "Transformation_FireElemental": 822233230, + "Transformation_FireElf": 46585468, + "Transformation_FireSalamander": 2118418114, + "Transformation_Gobbler_Skinny": 162365207, + "Transformation_GolemSteel": 1329184184, + "Transformation_Ice_Colossus": 430406408, + "Transformation_Krokomummy": 1644615769, + "Transformation_MagmaMan": 545064542, + "Transformation_Mander": 88998828, + "Transformation_NinjaPig": 1029132174, + "Transformation_Ninja_Pig_04": 7093548, + "Transformation_RatThug": 1175352795, + "Transformation_RavenMystic": 1443197359, + "Transformation_StormElemental": 637088511, + "Transformation_Treant": 1874998327, + "Transformation_WarPig": 691088645, + "Transformation_WolfScout": 263523463, + "Transformation_WolfWarrior": 6092463, + "Transformationn_SkeletonPirate": 1821341863, + "Treant": 1396597132, + "Troll": 82261620, + "Unicorn": 550546918, + "Unknown": 718677478, + "Wolverine": 528843083, + "Wraith": 1788506505, + "Wyrmkin": 379044612, + "Transformation_CyrusDrake": 94277831, + "PetEgg": 1973167984, + "GhostLady": 493415959, + "Banshee": 827805677, + "GobblerRed": 250135875, + "Ghoul_Gravedigger": 161812468, + "SkeletonWarrior": 734585814, + "BansheeBoss": 806445565, + "Seraph": 1792950125, + "CrabKing": 277875784, + "UndeadCaster": 1680689397, + "DragonFrontier": 1829438301, + "HeckhoundGhost": 872406464, + "Mount_Unicorn": 212699468, + "Jellyfish": 910724608, + "SeaDragon": 1194541306, + "Turtle": 1897184620, + "Starfish": 1447562471, + "SpinyFish": 162948281, + "Mount_Gryphon": 2110522960, + "Mount_Shark": 1170186623, + "Mount_Manta": 979931598, + "Mount_Seahorse": 1554833818, + "Mount_Seahorse_Tough": 1245859453, + "Mount_Koi": 1150937409, + "Mount_Lobster": 2025618875, + "Mount_Turtle": 1490849128, + "VenusFlyTrap": 1612039757, + "GDN_MED_BabyCarrots": 327334743, + "GDN_SM_BoomShroom": 31324632, + "GDN_SM_Dandelion": 2058674142, + "GDN_SM_Disparagus": 1732989489, + "GDN_MED_EvilSnowPeas": 747408607, + "GDN_SM_FicklePickle": 205381955, + "GDN_SM_HappyHolidaisy": 1736236340, + "GDN_MED_HelephantEars": 1803669659, + "GDN_MED_HoneySickle": 424149132, + "GDN_LG_NinjaFig": 847338104, + "GDN_LG_SnapDragon": 1076151689, + "GDN_SM_StinkWeed": 845383431, + "GDN_MED_TrumpetVine": 1922690264, + "GDN_MED_VenusFlyTrap": 1560899638, + "GDN_SM_Laughodil": 1278979588, + "GDN_LG_BreadFruitBush": 533042934, + "GDN_MED_PricklyBearCactus": 1236846986, + "GDN_MED_KingParsley": 110148182, + "LeprechaunPatriotic": 414730890, + "SeraphYuletide": 1325846853, + "DragonGhost": 1502126893, + "UnicornNightmare": 604358256, + "EvilSnowmanSandman": 1579432150, + "Colossus_Spirit": 422514215, + "Rock": 2393554, + "GDN_MED_GivingTree": 2047236132, + "Egg": 70853, + "Mount_Carpets": 1602744888, + "Kraken": 1737191829, + "Wyvern": 1727802601, + "Phoenix": 1765559002, + "Judgement": 562901781, + "ForestLord": 1390734923, + "Humongofrog": 1272123051, + "Scarecrow": 41441599, + "Mount_Ram": 77196599, + "BasketSnake": 1835657086, + "Samoorai": 522797493, + "Transformation_RavenWarrior": 701169336, + "PhoenixStorm": 1325268802, + "PhoenixDeath": 1281634042, + "GDN_LG_CouchPotatoes": 879742725, + "GDN_MED_KeyLimes": 811516024, + "Mount_BoneDragon": 1023618313, + "Mount_BigBoneDragon": 1124383680, + "Mount_FairyWings": 1904926612, + "Mount_DragonWings": 755225925, + "Mount_Pegasus": 1621244140, + "GDN_MED_BellPepper": 1710238687, + "GDN_MED_GrapesOfWrath": 1068787103, + "GDN_SM_TigerLily": 1899057048, + "WysteriaPiggle": 49173891, + "Mount_Wyvern": 1658410744, + "Mount_2P_Rhino": 1052779475, + "NightHawk": 358964390, + "Giraffe": 935214826, + "Mount_Hawk": 2070898895, + "Mount_HalloweenNightmare": 726136378, + "GobblerHalloween": 1482399836, + "Leopard": 1606863715, + "Skink": 76950867, + "Mount_Ostrich": 466111322, + "Mount_Crocagator": 1981222087, + "Transformation_Blacktusk-01": 401543565, + "Mount_Hippogriff": 2043817624, + "Transformation_Gorilla-01": 1555853240, + "Transformation_Gorilla-02": 1606184888, + "Mount_Raven": 94983735, + "Mount_Chrismoose": 1822495199, + "Mount_CandyCane": 1148551147, + "Ivy_League": 925492799, + "GDN_MED_Ivy_League": 1630077794, + "Mount_Kirin": 1168691825, + "GDN_SM_Moonflower": 2068754330, + "GDN_MED_BoonTree": 788055729, + "Snowball": 2046118016, + "Foo_Dog": 1549710807, + "ShenlongDragon": 932676736, + "Monkey": 1233866291, + "Wolfhound": 626884686, + "Redcap": 1540319086, + "Raven": 79941650, + "HollowKnight": 1107268274, + "Book": 2405826, + "GDN_MED_AngoraBunnyEars": 1547559854, + "GDN_MED_FortuneCookieTree": 786686214, + "GDN_MED_GooseTree": 809354938, + "GDN_SM_HoneyBeePlant": 1528880373, + "GDN_MED_BambooShoots": 1096708900, + "GDN_SM_Huckleberries": 1937475840, + "Rock_Moustache": 962221287, + "Efreet_Myth": 1834555522, + "Efreet": 1401700123, + "Mammoth": 1395147745, + "Triton": 1730466188, + "Gnome": 74954215, + "BoneDragon": 429245206, + "Basilisk": 1457899086, + "Chimera": 529027789, + "Transformation_GammaTemplate": 1337834518, + "Mount_Camel": 1168198963, + "Mount_RenaissanceWings": 1049782088, + "Bull_Mount": 1713506759, + "Mount_Owl": 1150938242, + "Mount_Alphyn": 487264165, + "Mount_Stag": 1150353823, + "Mount_Auroch": 509865325, + "Mount_Warg": 1150358072, + "StrangeBeast": 511334734, + "Efreet_Ice": 1820009122, + "Efreet_Storm": 1269986674, + "GDN_LG_AlligatorPear": 1293913372, + "Mount_2P_Treant": 928450863, + "Mount_2P_Dragon": 1431637933, + "Mount_Pogo_Stick_WC": 1462849298, + "Mount_Pogo_Stick_MB": 1349603090, + "GDN_LG_MeltingCheese": 1914589015, + "GDN_SM_FishOnAVine": 1734955358, + "GDN_LG_AngelOak": 1539539424, + "GDN_LG_MeltingCheese_Angel": 1254781264, + "SnowyOwl": 1682262138, + "Mount_3P_Hydra": 1207475250, + "WeaselMinstrel": 1541234616, + "MOUNT_Rickshaw": 938282973, + "Transformation_Sherlock-Bones": 509126601, + "Mount_Phoenix": 556355452, + "Toaddle": 597488187, + "Pantera": 528797696, + "WildfireTreant": 673362041, + "StoneTiger": 746336665, + "Blowfish": 1447737334, + "Smith": 78327187, + "FlyingCat": 1254472614, + "RamWarrior": 536916302, + "Ladybug": 1846384669, + "BurlapBoy": 607590898, + "DeerKnight": 560802130, + "Gargoyle": 1227701700, + "Chameleon": 596131510, + "Scorpion": 1462253104, + "GDN_SM_BoiledPeanuts": 544885684, + "GDN_SM_ClockFlower": 676513046, + "GDN_SM_DeadBeets": 650783482, + "GDN_MED_SnowApple": 1916648180, + "Eyecaramba_Violet": 1804780775, + "Eyecaramba_Green": 750346574, + "Eyecaramba_Orange": 687614854, + "Piggle_Grandfather": 131445665, + "Velociraptor": 1042311818, + "Babydactyl": 1180982194, + "Stegosaurus": 476811765, + "Mount_Pegasus_Spectral": 948250730, + "Mount_2P_Scarydactyl": 1808983335, + "Mount_2P_TRex": 1495851852, + "Therizinosaurus": 80337863, + "Runtosaurus": 476200406, + "FrilledLizard": 420993517, + "Mount_Ankylosaurus": 669692274, + "Mount_Triceratops": 1126950204, + "Mount_2P_Glider": 1630365881, + "Transformation_Thunderhorn": 1045262037, + "Transformation_Jaguar": 1080966062, + "Transformation_Pteranadon": 273836142, + "Transformation_ShadowWeaver": 255927111, + "Transformation_EagleWarrior": 1880471875, + "Mount_Falalalallama": 389890123, + "Mount_2P_WinterTreant": 1850265056, + "GDN_LG_MissileToe": 1767792974, + "GDN_MED_PointSetta": 647257205, + "Nutcracker2012": 1598217699, + "Coal2012": 1627852119, + "Mount_Sleigh": 1636615519, + "Mount_Sabertooth": 1613031507, + "Mount_MechanicalWings": 1014917438, + "PiranhaHunter": 686271163, + "Quetzal": 2020925822, + "Mount_Sloth": 1169387359, + "HollowKnightLife": 2114081886, + "BettaFish": 138088968, + "MummyCat": 62372925, + "TrojanHorse": 1725299194, + "WC_Storm_Possessed": 186960228, + "AV_Possessed": 1106693085, + "AZ_Possessed": 1106692701, + "CL_Possessed": 1106692255, + "KT_Possessed": 1106693015, + "MS_Possessed": 1106692977, + "WC_Possessed": 1106692459, + "Mount_2P_Whale": 448824263, + "Mount_2P_Chariot": 88035298, + "Mount_WarBoar": 1159836211, + "Mount_Palanquin": 47587550, + "BearCub": 672664722, + "Transformation_Minotaur": 1454233452, + "DragonGauntlet": 797645257, + "DeathUnicorn": 924144161, + "Flamingo": 1488424911, + "Mount_Gorilla": 1939919432, + "Mount_WarUnicorn": 1361393198, + "GargoyleMyth": 1819685060, + "TikiMan": 16098567, + "Siren": 79937811, + "GoldenRam": 410220227, + "Harpy": 96026632, + "SwordShield": 1668411785, + "ClockworkKnight": 1059948980, + "Mount_MechanicalEagle": 1720948645, + "Mount_Cloud": 1166233435, + "Mount_Surfboard": 1914250039, + "Mount_BetaDragon": 1023653721, + "Mount_BeeWings": 1387988401, + "Vampire": 524731385, + "FrankenBunny": 589797989, + "BumbleBee": 249592226, + "Mount_Dragonfly": 1028843656, + "BronzeGolem": 1320867859, + "TarantulaHawk": 1983939429, + "Mount_Grasshopper": 1852850928, + "FlyingSquirrel": 847551166, + "GDN_MED_Sunion": 1652707634, + "GDN_MED_SwordFern": 548761438, + "GDN_SM_SugarKhrystal": 267539461, + "GDN_SM_SawPalmetto": 1892888046, + "GDN_LG_FacePalm": 2050814140, + "GDN_LG_QueenCrapeMyrtle": 80378450, + "Transformation_ShadowTank": 1304943609, + "Transformation_ShadowHeal": 1254024185, + "Transformation_ShadowDPS": 87276537, + "Mount_Noelephant": 1383672248, + "SaintBernard": 572932242, + "ParkaFox": 2009808189, + "Goose": 75019719, + "Mount_Coconut": 791151432, + "CreepyBeetle": 345594179, + "BabyDragonfly": 1367084335, + "FennecFox": 41315063, + "PP_Leviathan": 833901526, + "PP_SunSerpent": 1062677009, + "PP_LordOfWinter": 960214698, + "PP_Medusa": 867812931, + "PP_Dryad": 147654656, + "PP_AvengingFossil": 315904647, + "PP_Sabertooth": 1799146677, + "Mount_Butterfly": 1283940943, + "Mount_Hare": 2070851023, + "Transformation_MorganthB": 197306990, + "Transformation_MorganthC": 197831278, + "Transformation_MorganthD": 200452718, + "BabyPegasus": 1215000859, + "ArcaneHelp": 1899247549, + "Mount_Vines": 98389624, + "Mount_ArcaneMinecart": 2001270930, + "Hobgoblin": 2133668461, + "Mount_2P_Rowboat": 237071469, + "ForestSpirit": 1178454602, + "Mount_SpiritWolf": 531991076, + "Otter": 84138671, + "OrigamiBird": 550984083, + "DinoSkeletal": 233277835, + "Mount_HarrowingsGreen": 1605746772, + "Mount_HarrowingsBlue": 477152436, + "Mount_HarrowingsPurple": 2092807554, + "RedPanda": 1744233845, + "Ibis": 2665577, + "Corgi": 78823875, + "Mount_Yak": 996545739, + "Mount_FlyingBalance": 436519643, + "Transformation_ShadowMalistaire": 1043814435, + "Transformation_DragonMalistaire": 841867699, + "Mount_Scarab": 1687658791, + "Transformation_MisterHound": 1973578844, + "Mount_BahHumbug": 55114077, + "Skates": 1568993965, + "Moose": 75019725, + "Mount_Gargoyle": 1456663874, + "GDN_MED_VenusFlyTrapEpic": 1594069606, + "Mount_PlayerWingsPink": 19403046, + "GDN_LG_AlligatorPearEpic": 1326804812, + "Pet_Armadillo": 825736847, + "Mount_JoustingDestrierDyeable": 1683448768, + "GDN_MED_VampireCarrots": 871596496, + "GDN_SM_WhiteTigerLilyEpic": 1703271434, + "GDN_LG_NinjaFigEpic": 938504823, + "GDN_LG_SnapDragonEpic": 2071674466, + "GDN_MED_HelephantEarsEpic": 719166107, + "GDN_MED_TrumpetVineEpic": 225854518, + "GDN_SM_DandelionEpic": 728637442, + "GDN_SM_HuckleberriesEpic": 1903258448, + "GDN_MED_SnowAppleEpic": 1231175967, + "GDN_SM_BoomShroomEpic": 981598771, + "GDN_MED_KingParsleyEpic": 2038371004, + "Mount_Raptor": 749695031, + "Pet_Toucan": 581477475, + "Pet_Squirrel": 969881395, + "Mount_WonkyDonkey": 1481657312, + "Mount_HawkPatriotic": 509149743, + "Pet_FrogAssistant": 1945041750, + "Mount_Cat2": 1151054899, + "Mount_Cat2BW": 1603515443, + "Pet_ArmadilloBW": 825733899, + "Pet_FrankieForearms": 1100195857, + "Mount_SolarSabre": 1281093703, + "MNT_MechOstrich": 258667969, + "MNT_BootsBalance": 1799191558, + "MNT_BootsDeath": 1034912971, + "MNT_BootsFire": 606061658, + "MNT_BootsIce": 2142643294, + "MNT_BootsLife": 773751898, + "MNT_BootsMyth": 144792486, + "MNT_BootsStorm": 1525245121, + "Pet_CorgiBirthday": 1951779369, + "OrigamiBirdBDay": 1909935955, + "Pet_FlyingBlackCat": 432111988, + "Mount_Narwhal": 449637834, + "Mount_NightOwl": 1648420845, + "Pet_Penguin": 137342907, + "MNT_PowerGemUnicorn": 411234062, + "Pet_CrystalButterfly": 512136094, + "Mount_BabyMammoth": 185831059, + "MNT_BabaYaga": 564874997, + "Pet_BabySeal": 657606984, + "Pet_BabyYeti": 635847496, + "Transformation_BallerinaBear": 1525333600, + "Mount_StagYuletide": 1508680687, + "Transformation_TitanMedium": 1700742736, + "Transformation_TitanLarge": 718614967, + "Pet_SirenIce": 849851564, + "Mount_FlyingDeath": 1717725588, + "Mount_FlyingFire": 1177216332, + "Mount_FlyingIce": 1238841184, + "Mount_FlyingLife": 433397684, + "Mount_FlyingMyth": 164983572, + "Mount_FlyingStorm": 375872049, + "Dragonling": 1730534849, + "Pet_EggChicken": 952873217, + "HeckhoundGhost_MAW": 893368960, + "Mount_WinterTrain": 751515281, + "Mount_RubberDucky": 1826548479, + "Pet_BansheeSpellwrit": 917979583, + "Pet_SamooraiSpellwrit": 370057597, + "Mount_UnicornAstral": 886914505, + "Guest_Boochbeard": 1958574095, + "Pet_MouseSister": 1267930350, + "Pet_MouseFather": 2010008339, + "Pet_VampireSquirrel": 250588691, + "Mount_CoffinCar": 1387606595, + "Mount_BabyElephant": 2026559639, + "Pet_RoadHog": 601156960, + "Mount_WolfGryphonWings": 543038283, + "MNT_ClockworkSteed": 891371132, + "Mount_Chopper": 1196683136, + "Pet_ButterflyLamb": 527214392, + "Pet_MouseMother": 2012687123, + "Pet_MouseBrother": 1174380856, + "Pet_Cherub": 769208559, + "GDN_SM_Jewel": 1104045832, + "MR_Death_Duncan_Grimwater": 1850289001, + "Mount_DesertRunner": 2049036229, + "Pet_MonkeyMirage": 418612892, + "Pet_ClockworkOwl": 1038482431, + "Pet_NinjaTurtle": 2024540686, + "Mount_Vines_Halloween": 82852149, + "Mount_SwarmBat": 1151836459, + "Mount_2P_NinjaDragon": 1239694057, + "Mount_Gobler": 1820615236, + "Mount_MaryleboneCar": 2027689685, + "JackOLantern": 1016361578, + "Transformation_DjinnCommonA_Balance": 996127128, + "Transformation_MedicineMode": 25960701, + "CactusHopper": 1956293007, + "Transformation_Mimic_ChestGold_A": 414145432, + "Mount_Ghoulture": 1067671195, + "Pet_Macaw": 1087278472, + "Pet_SandWorm": 653200803, + "Transformation_DromelDancer": 1071824116, + "Pet_Bunnies": 695874547, + "Mount_Snowboard": 1914380015, + "Transformation_DrommelDancer": 226294468, + "Mount_Carpet_New": 1618650322, + "Mount_BunnySleigh": 599915427, + "Helephant_Heart": 419161272, + "Mount_Snowboard_Holiday": 876339060, + "Transformation_GhostDog": 646575420, + "Transformation_PrinceGobblestone": 693826496, + "Transformation_Mithraya": 1240010601, + "Transformation_LuskaCharmbeak": 897469730, + "Transformation_YoungCyrusDrake": 15595663, + "Kookaburra": 1069759154, + "BorealisGolemPet": 797488492, + "FlyingEyePet": 505959833, + "StormCloudPet": 548463069, + "BullPet": 1993917801, + "OpossumPet": 284003652, + "GhoulturePet": 939920734, + "StormCloudPetB": 548463001, + "StormCloudPetC": 548463003, + "Guest_LordNightshade": 1221409981, + "BullPetB": 1993917561, + "BullPetC": 1993917553, + "BullPetD": 1993917513, + "Transformation_ShadowCrit": 1392195065, + "Mount_Pennyfarthing": 1551926344, + "Mount_RowboatPirate": 2079208803, + "Mount_IceCube": 1261861595, + "Guest_LostMaiden": 883675592, + "Guest_BoatswainMcGee": 1359750850, + "Guest_ChiefMateMcGurk": 329643845, + "Guest_DoomedBones": 2015643882, + "Guest_SpectreoftheBrocken": 266357448, + "Guest_DrownedKnight": 1100966093, + "Guest_TarntheDrowned": 329540205, + "Guest_DisloyalKnight": 1853240753, + "Guest_NamelessKnight": 1065677876, + "Guest_LambentFire": 489886605, + "Guest_LordoftheBrocken": 1662003371, + "Guest_StormCaiman": 1147500291, + "Guest_GrinningDeathMoon": 737595789, + "Guest_MoonSkullWight": 1720039490, + "Guest_HuemacSpearWreath": 1522021131, + "Guest_HowlingBanshee": 1340855338, + "Guest_Sea-Booter": 1818491983, + "Guest_DeadRover": 1009273257, + "Guest_CelestianRemnant": 1312268448, + "Guest_Shadow-WebConscript": 1500529411, + "Guest_Shadow-WebMercenary": 623672171, + "Guest_Shadow-WebWraith": 810956416, + "Guest_Shadow-WebHaunt": 500586883, + "Guest_CelestianPartisan": 633346892, + "Guest_CelestianDefender": 482102727, + "Guest_ThraleBonestriker": 1172972733, + "Guest_VorgenSoulbreaker": 1935693246, + "Guest_ServusBloodsword": 1703995647, + "Guest_QueenCalypso": 845803519, + "Guest_BlueBart": 77043390, + "Guest_KarolakNightspinner": 1008737316, + "Guest_ArachtusDuskweb": 1787750209, + "Guest_ZhalarStarcloud": 1453644105, + "Guest_NarallorNightborn": 1963363700, + "Guest_SelwynSkywatcher": 1413136893, + "Guest_OsseusNightreaver": 306827003, + "Guest_IrateBanshee": 865143109, + "Guest_FuriousHowler": 1607252558, + "Guest_CryingSpirit": 1559074820, + "Guest_UndeadDraconian": 169249571, + "Guest_ReanimatedDraconian": 247067807, + "Guest_GhastlySlave": 80127661, + "Guest_BoundSpecter": 369706568, + "Guest_NecroticHaunter": 1714841563, + "Guest_LoathsomeCreeper": 1087245229, + "Guest_FleshrotRetriever": 1925148031, + "Guest_BarbarianSpirit": 2112552732, + "Guest_BeghastionCrowcaller": 586628832, + "Guest_BeghastionFieldburner": 1650751959, + "Guest_BoneWarrior": 76802026, + "Guest_FleshlessSentry": 708431820, + "Guest_PirateRavager": 945157059, + "Guest_RottenScallywag": 974666855, + "Guest_ArmoredBonewalker": 1444568072, + "Guest_UndeadWizard": 1622435563, + "Guest_SoulSearcher": 2094392941, + "Guest_DecayingBlackguard": 412324062, + "Guest_FoulReaper": 919877614, + "Guest_NightShadow": 1675932226, + "Guest_MotleyCrew": 653779218, + "Guest_OrinGrimcaster": 472649066, + "Guest_GhostofSylviaDrake": 218332449, + "Guest_VikaMarkmaker": 1145181168, + "Guest_VasekAshweaver": 1001434369, + "Guest_FireWraith": 1027720368, + "Guest_HungrySoul": 1722435576, + "Guest_FrostBones": 456145606, + "Guest_SnowSkull": 835837850, + "Guest_WinterSkull": 1556601065, + "Guest_LothinDoombringer": 860995070, + "Guest_MimirWinterbane": 1111898070, + "Guest_KulgrimSoulsunder": 278037985, + "Guest_HitojiniDeathcaster": 1144499043, + "Guest_GaikotsuSkeleton": 1113949902, + "Guest_PhantomAce": 1917639347, + "Guest_PhantomGlider": 849918336, + "Guest_Krokomummy": 857773886, + "Guest_NiriniAncientGuard": 359313880, + "Guest_NiriniFireSpirit": 1863811476, + "Guest_VaultHaunter": 197723476, + "Guest_VigilantDefender": 171276829, + "Guest_WanderingAhnicSpirit": 1702865088, + "Guest_ForgottenDjeseritSoul": 1170568256, + "Guest_KaranahnDeathfeeder": 1612857711, + "Guest_ShamblingAhnic": 1579129677, + "Guest_RisenDjeserit": 287855500, + "Guest_KaranahnMortifier": 874288111, + "Guest_DjeseritDweller": 2058423665, + "Guest_AhnicStrider": 1776992302, + "Guest_GuardianoftheFang": 1816795524, + "Guest_DefenderoftheFang": 354353604, + "Guest_ProtectoroftheFang": 1290191037, + "Guest_SouloftheCharmed": 422890577, + "Guest_KaranahnKeeper": 77581557, + "Guest_NiriniIntimidator": 677205957, + "Guest_CondemnedSoldier": 449152244, + "Guest_NimahtheWicked": 1298248873, + "Guest_AkoriNirini": 1123159753, + "Guest_SoulScavenger": 892852198, + "Guest_KeeperoftheFang": 1676773499, + "Guest_ItennuSokkwi": 699159408, + "Guest_Tempestra": 334938435, + "Guest_QueenIrisiDjeserit": 1861434100, + "Guest_TheBonekeeper": 1302503449, + "Guest_CryptScavenger": 1893795791, + "Guest_Soulsapper": 1699756010, + "Guest_KingUroAhnic": 1788825731, + "Guest_KingShemetDjeserit": 1350067043, + "Guest_UnholyWraith": 1871146013, + "Guest_PikeSpiritcrusher": 498715531, + "Guest_SpellwritScreamer": 801626733, + "Guest_SpellwritRonin": 1671439174, + "Guest_Shrieker": 805966229, + "Guest_GravePhantom": 731622936, + "Guest_NightmareSpirit": 230709057, + "Guest_VengefulCreeper": 1100197884, + "Guest_TombRoamer": 1277825068, + "Guest_ShieldSkeleton": 1634270152, + "Guest_AgonyWraith": 30384496, + "Guest_IcyGhost": 768353592, + "Guest_Half-wittedSkeleton": 647996362, + "Guest_LazyHenchman": 1329554426, + "Guest_TiredFighter": 210248632, + "Guest_Screecher": 469007005, + "Guest_SeethingWraith": 664913100, + "Guest_ColdConfusion": 1304943934, + "Guest_OssuaryConscript": 1017667150, + "Guest_Ghulture": 1330558655, + "Guest_BodyGuard": 1048581801, + "Guest_SpectralGuardian": 422805602, + "Guest_VaultConscript": 1388398065, + "Guest_FootPatrol": 1692393321, + "Guest_ArmedGuard": 2045920536, + "Guest_Chilly": 1764665905, + "Guest_Achey": 973370519, + "Guest_Sneezy": 1769440773, + "Guest_Cough": 1170200073, + "Guest_Shadowbones": 1316133167, + "Guest_ForgottenConscript": 1466348281, + "Guest_BarracksGuardian": 236603440, + "Guest_CryptConscript": 314755436, + "Guest_DurvishSeeker": 1825622267, + "Guest_MedicineMode": 167015574, + "Guest_Myriarch2": 593881680, + "Guest_Myriarch3": 593881616, + "Guest_MyriarchEphialtes": 773531895, + "Guest_MotherGhulture": 1585201915, + "Guest_CaptainCosrow": 727107332, + "Guest_VizierRafaj": 214040637, + "Guest_DarkmoorSerf": 1522169114, + "Guest_DarkmoorSquire": 1822567109, + "Guest_ScarletWampyr": 1683954247, + "Guest_DraconianRevenant": 741497298, + "Guest_DraconianEidolon": 107733297, + "Guest_AnguishedWraith": 1078602022, + "Guest_DraconianPyromancer": 729577007, + "Guest_DraconianThaumaturge": 189734361, + "Guest_DraconianDiviner": 472633746, + "Guest_DraconianConjurer": 1824962835, + "Guest_DraconianTheurgist": 1828628416, + "Guest_DraconianNecromancer": 175364324, + "Guest_DraconianSorcerer": 1262893339, + "Guest_SirBlackwater": 366308464, + "Guest_AkhtangWormCrawl": 1589032404, + "Guest_SpiritofDarkmoor": 579455915, + "Guest_ShanevonShane": 2096517522, + "Guest_YevgenyNightCreeper": 1535282881, + "Guest_MalistairetheUndying": 824508513, + "Guest_Bunferatu": 1015806005, + "Guest_CountBelaBlackSleep": 761647679, + "Guest_DeathSoldier": 1715141574, + "Guest_SorrowWhisperer": 556532003, + "Guest_GriefSpectre": 1425488559, + "Guest_HowlingShade": 631460247, + "Guest_WalkingDead": 318527090, + "Guest_Akuji": 977635799, + "Guest_TorturedKakedaSoul": 1716874833, + "Guest_KakedaSpiritSlave": 1814699344, + "Guest_DishonoredSamoorai": 320085744, + "Guest_CursedRonin": 1204095686, + "Guest_TomugawatheEvil": 166125424, + "Guest_OyotomitheDefiler": 1672714483, + "Guest_Fushiko": 801492770, + "Guest_BrokenLandGuardian": 294671991, + "Guest_ShatteredSkyGuardian": 746681463, + "Guest_SunderedSeamGuardian": 1439618652, + "Guest_BrokenLandSpirit": 860105895, + "Guest_ShatteredSkySpirit": 2104112380, + "Guest_SunderedSeamSpirit": 69572311, + "Guest_LostSoul": 204361577, + "Guest_RottingFodder": 308249734, + "Guest_HauntedMinion": 689597338, + "Guest_FieldGuard": 1175228991, + "Guest_SkeletalWarrior": 778393993, + "Guest_SkeletalPirate": 1476730220, + "Guest_WanderingSpecter": 126188449, + "Guest_LivingScarecrow": 1442943145, + "Guest_FrostPhantom": 1809776664, + "Guest_FireShrieker": 173332719, + "Guest_CryptCrawler": 2118799272, + "Guest_ViridianSpecter": 383149977, + "Guest_ArgentClatterer": 525414714, + "Guest_SwimmingSpecter": 1494025094, + "Guest_ScarletScreamer": 1689589811, + "Guest_BoneDigger": 1351421123, + "Guest_HowlingGhost": 664019391, + "Guest_SkeletalSoldier": 750463116, + "Guest_MaidenofHate": 444442868, + "Guest_SkeletalRetainer": 1409032775, + "Guest_SoulHunter": 1900267551, + "Guest_MidnightShuffler": 1991052065, + "Guest_PlaguedSoul": 419071561, + "Guest_HauntingBanshee": 345837052, + "Guest_SimontheSayer": 1352807820, + "Guest_TheHarvestLord": 1923575206, + "Guest_LadyBlackhope": 1403431623, + "Guest_SergeantSkullsplitter": 898737831, + "Guest_Foulgaze": 2063419769, + "Guest_Wormguts": 788697519, + "Guest_Rattlebones": 125602919, + "Guest_Paulson": 1112716921, + "Guest_Grubb": 1167554274, + "Guest_Norton": 581021964, + "Guest_NightStalker": 1447653309, + "Guest_AddereTimeo": 1491420030, + "Guest_TheReaper": 1526369733, + "Guest_AngrusHollowsoul": 1427862805, + "Guest_OrrickNightglider": 951078615, + "Guest_SteelSentinel": 885250894, + "Guest_Shadow-WebSoldier": 2014925398, + "Guest_LostCeleste": 1725301830, + "Guest_CapnNigelSkullcrack": 1665439970, + "Guest_HaulAwayJoe": 1075985331, + "Guest_OldMaui": 15300840, + "Guest_LordAgue": 140791419, + "Guest_MelweenaSmite": 432188189, + "Guest_HalloweenTrickster": 2043736417, + "Guest_PumpkinHead": 1098332105, + "Guest_BaronMordecai": 817370918, + "Guest_KaimaniteMummy": 1332671420, + "Guest_VeggieRevanant": 928504192, + "Guest_BloodBat": 76467389, + "Guest_DeadBeets": 157829578, + "Guest_Desparagus": 1130644076, + "Guest_MeanestFly-Trap": 1652898868, + "Guest_Nosferabbit": 1021159436, + "Guest_ThrallofSothmekhet": 330780177, + "Guest_VileApparition": 426627869, + "Guest_SoulServant": 1183110886, + "Guest_SoulKeeper": 917518313, + "Guest_AdmiralBontau": 2032168402, + "Guest_DeathWhisperer": 3814952, + "Mount_RollerBlades": 111369373, + "Guest_BaneWyrm": 147033576, + "Guest_BlackDragon": 939469656, + "Guest_DragonSpawn": 1829803517, + "Guest_Fire-SpitterSpawn": 616624489, + "Guest_CaoranachtheFire-Spitter": 323513000, + "Guest_Jabberwock": 1552492834, + "Guest_CatalantheLightningLizard": 1155778705, + "Guest_WhiteDragon": 2009449331, + "Guest_WinterWyrm": 478925069, + "Guest_WyrmStatue": 2119216210, + "Guest_AlgidWyrm": 1309546482, + "Guest_BruleeSucre": 390936202, + "Guest_HebitohoWyrmling": 1682026810, + "Guest_Shadowwock": 505539184, + "Guest_EirikurAxebreaker": 1361453552, + "Guest_WarWyrm": 1124740742, + "Guest_StrayFireflier": 610979811, + "Guest_BurningFlamewing": 2041225130, + "Guest_FeralLavaling": 371483057, + "Guest_SplinterWing": 923421333, + "Guest_ChanticoBlueAir": 1572441903, + "Guest_CopperWingGuard": 302783602, + "Guest_ObsidianBeak": 2016227452, + "Guest_CaquixNineShadows": 2070101060, + "Guest_LustrousTlalocan": 1201030473, + "Guest_SeedThief": 263211181, + "Guest_PopZotzUnluckyDay": 1416773489, + "Guest_NezathePoet": 1905861376, + "Guest_MazenStingerBee": 1642023393, + "Guest_ImperialJusticePayne": 1285679745, + "Guest_AssistantWardenPorfiry": 22099059, + "Guest_MarshalKamensky": 524669730, + "Guest_WardenVissarovich": 882556823, + "Guest_GulagGuard": 100744159, + "Guest_CaptainKravchuck": 690830770, + "Guest_ImperialGuard": 346803640, + "Guest_IronPaw": 1797329688, + "Guest_TundarianEnforcer": 134256836, + "Guest_Ivan": 996220221, + "Guest_ColonelOrlov": 1381254189, + "Guest_IronPawIntakeCaptain": 2099184835, + "Guest_SolitaryWarden": 1503529566, + "Guest_CaptainZubkov": 793725366, + "Guest_SergeantBobrik": 722182485, + "Guest_WailingWraith": 946976407, + "EggChick": 1452316301, + "BunnyMallow": 518233330, + "Guest_ThunderHornZombie": 1007920040, + "Guest_SmokingMirrorZombie": 340971759, + "Guest_ShamblingZombie": 1920485146, + "Guest_MoonSkullZombie": 809249764, + "Guest_DeathlessStormHorn": 812397213, + "Guest_MozarTurtleHunter": 561749043, + "Guest_GuillermoShatterer": 499565054, + "Guest_XiuhcoatlBarbedTooth": 1719245305, + "Guest_AzcalFireAnt": 1281366337, + "Guest_TlotzinMoonThief": 407285761, + "Guest_PocaCruelStar": 1117353085, + "Guest_ThunderHornGhoul": 597878999, + "Guest_TezomocStoneSinger": 733511940, + "Guest_EzhuaBadTaste": 632779219, + "Guest_UacalxochitlBloodEye": 1614856226, + "Guest_WanadiBlackSky": 349829749, + "Guest_ElMarrow": 483880636, + "Guest_GrimCalaca": 1534029144, + "Guest_XipeFlayedOne": 1343577398, + "Guest_MotecumaDeathMask": 1782393717, + "Guest_EkeChuah": 13416770, + "Guest_AnacaonaBlackSnake": 1543344897, + "Guest_SmokingMirrorWight": 776452983, + "Guest_Tolkemec": 217428080, + "Mount_Fox": 77199428, + "PP_OwlProtege": 268847192, + "Mount_SharkSki": 331374103, + "PP_Dolphin": 1662291612, + "Mount_CastSymbol_D": 1134428045, + "Mount_CastSymbol_E": 1136525197, + "Mount_CastSymbol_F": 1138622349, + "Mount_CastSymbol_G": 1140719501, + "Mount_CastSymbol_A": 1128136589, + "Mount_CastSymbol_B": 1130233741, + "Mount_CastSymbol_C": 1132330893, + "Guest_LionSpectralGuardian": 1791543691, + "Guest_KillmareSpiritwalker": 1818928165, + "Guest_ZebraSpectralGuardian": 815933596, + "Guest_GorillaSpectralGuardian": 1635182119, + "Guest_IklawGhostWarrior": 373465545, + "Guest_BwanaShadowriver": 1307628747, + "Guest_ElephantSpectralGuardian": 1579402208, + "Guest_ZangaZebu": 1218173119, + "Guest_GrumishGreataxe": 486953385, + "PP_GlowFairy_A": 2028856748, + "Guest_RestlessSoldier": 1142701763, + "Guest_WanderingWizard": 209518514, + "Guest_ColonelIvanenko": 399169035, + "Guest_DetollitheDestroyer": 655767295, + "Guest_Jawniak": 1791298433, + "Guest_Tajniak": 356182394, + "Guest_Ygor": 996316081, + "Guest_KyaniteLancer": 2136703656, + "Guest_VestaShadowmark": 1846747836, + "Guest_ZoraSteelwielder": 1186470644, + "Guest_AndorBristleback": 1949884743, + "Guest_GalliumPaladin": 1812340868, + "Guest_GalliumFootman": 1295203112, + "Guest_GalliumShardtrooper": 1210699836, + "Guest_GalliumJuggernaut": 3527584, + "Guest_VladimirDarkflame": 1575322237, + "Guest_KyaniteLieutenant": 561528977, + "Guest_DrusillaMorningbane": 155837810, + "Guest_KyaniteValkyrie": 53242136, + "Transformation_20Q_SherlockBones": 1112674320, + "Guest_DevoraShadowcrown": 1813459117, + "Guest_YoualaNightDrinker": 881289828, + "Guest_Pendragon": 715669945, + "Guest_CelestianRevenant": 515730327, + "Guest_SoullessServant": 1505662730, + "Guest_SpiritServant": 104517373, + "Guest_SoulSerf": 1188214406, + "Guest_ServileSoul": 871844607, + "Guest_SkeletalCorsair": 239414410, + "Guest_RottedFodder": 1301186193, + "Guest_ScarletScreecher": 600457915, + "PP_FrankBunnyBride_A": 974707030, + "Guest_BastillaGravewynd": 2100015237, + "Guest_VilaraMoonwraith": 2067986693, + "Guest_YngvarSharptooth": 1783361972, + "Guest_TroubledWarrior": 1569033392, + "Guest_VeggieRevanant2": 928503904, + "Guest_VeggieRevanant3": 928503888, + "Guest_VeggieRevanant4": 928503872, + "Guest_VeggieRevanant5": 928503856, + "Guest_AncientQhatWarrior": 1564521104, + "Guest_EmperorPaleolo": 2079384347, + "Guest_SpiritofIntolerance": 1627658048, + "Guest_SpiritofInquiry": 1320544891, + "Guest_FirstGuardian": 1982227776, + "Guest_FallenMerc": 225926286, + "Guest_NightShadow2": 1638183490, + "Guest_NightShadow3": 1636086338, + "Guest_NightShadow2-2": 1436856907, + "Guest_NightShadow3-2": 1434759755, + "Guest_NightShadow4-2": 1432662603, + "Guest_NightShadow5-2": 1430565451, + "Guest_NightShadow6-2": 1428468299, + "Guest_NightShadow7-2": 1426371147, + "Guest_FirstScythe": 738854032, + "Guest_GreyMantisCaptain": 860186057, + "Guest_GreyMantisHunter": 1239274377, + "Guest_Atlach-Leng": 836136649, + "Guest_PetrovGloomstrider": 2045783873, + "Guest_NauyotolDownIntheHole": 1134251106, + "Guest_SandorSpearcaller": 1351072377, + "Guest_MavraFlamewing": 1477685600, + "Guest_Scaldling": 208751819, + "Guest_WoebegoneWraith": 1166488705, + "Guest_BorisBlackrock": 1365399915, + "Guest_KatiaFirewinter": 521255834, + "Guest_ValerikBrightsword": 1244055782, + "Guest_RurikFlamesoul": 1962726850, + "Guest_IonaPyrelance": 722266491, + "Guest_DarkPoltergeist": 818162178, + "Guest_TheCollector": 1772287612, + "Guest_ViktorSnowcrusher": 1028387381, + "Guest_ValeskaRedwind": 19316351, + "Guest_ScarrikGallowgaunt": 105397333, + "Guest_Neberyx": 1453883041, + "Guest_AsrikWidebelt": 401936422, + "Guest_GothricHonorbound": 750072340, + "Guest_HalfangBristlecrown": 618779562, + "Guest_OsvudFleetpaw": 1023466459, + "PP_PufferFish_A": 1578606029, + "Guest_OzelUnderwaterCat": 1033669302, + "PP_BabyGreenMan_A": 910025246, + "PP_SchoolTurtle_A": 1012620678, + "PP_DarkBalloon_A": 1229308566, + "MT_JetsamCopter": 92127678, + "Mount_4P_DarkClownCar": 420246262, + "MNT_BalloonsBunch": 2000358474, + "Guest_TempleGuardian": 632574316, + "Guest_TemplePhantom": 1701097840, + "Guest_MahonStarsearcher": 1549093341, + "Guest_LostKnight": 858980994, + "Guest_AnguishedWoodman": 174606918, + "Guest_TormentedTreant": 294050331, + "Guest_WildfireTreant": 1902129818, + "Guest_BlightedYaxche": 679097088, + "Guest_Junglethorn": 1734561424, + "Guest_Tangleroot": 2027061721, + "Guest_BlightedFreerooter": 1109803061, + "Guest_Winterbranch": 1170787806, + "Guest_DecayingBogwalker": 1338670789, + "Guest_BrownwoodTormentor": 1655181754, + "Guest_Wildroot": 1839747182, + "Guest_Ironsplinter": 668295157, + "Guest_Frostbranch": 75974631, + "Guest_KyoukonteiTreant": 474446232, + "Guest_BrokenStumps": 414724364, + "Guest_WordlessWoodsmen": 1813881830, + "Guest_DesiccatedTreebeard": 1826942903, + "Guest_ShadowoftheLand": 1612385317, + "Guest_TreeRoot": 1406633546, + "Guest_BefouledWoodwalker": 1517919498, + "Guest_ConfusedForestWarrior": 750805985, + "Guest_CrazedForestSpirit": 1007960507, + "Guest_Oakheart": 1158293719, + "Guest_SnowTreant": 1028620035, + "Guest_Snowbeard": 1997921701, + "Guest_BarkskinTreant": 2143957812, + "Guest_RazorleafTreant": 2133159197, + "Guest_CarrionFlowerMan": 1120698936, + "Guest_Kurokage": 355651925, + "Guest_LacombeStrawHouse": 568809873, + "Guest_BerkshireStickHouse": 1932133405, + "Guest_TamworthBrickHouse": 894027634, + "Guest_RustyTinderSpark": 1237916230, + "Guest_CoraWinterBranch": 1901918989, + "Guest_GrambleGoldRook": 1986988546, + "Guest_PiperStormTree": 1109520133, + "Guest_Hanadzura": 124838500, + "Guest_Kuchisaki": 2084188681, + "Guest_Kaizoku": 807430784, + "Guest_JaxonLastRites": 1653711119, + "Guest_SeijunKiller": 657647155, + "Guest_ZarichiTarakata": 1129212566, + "Guest_BladelessRonin": 1577395797, + "Guest_SanzokuOutlaw": 1682888807, + "Guest_SanzokuBandit": 1766198653, + "Guest_KakedaPainbringer": 1260119278, + "Guest_KakedaStalker": 367458449, + "Guest_KakedaShadow": 1604499626, + "Guest_KakedaSoulcrusher": 1961168112, + "Guest_ImitsuPlaguemaster": 1361539025, + "Guest_ImitsuDefouler": 1299791045, + "Guest_ImitsuPunisher": 234819300, + "Guest_StudentofKhai": 249757647, + "Guest_OtomoBattlemage": 918160114, + "Guest_OtomoCourier": 1373253378, + "Guest_OtomoSupplyRunner": 1580070577, + "Guest_OtomoScout": 1814051082, + "Guest_OtomoWrestler": 1053571230, + "Guest_OtomoFury": 111319603, + "Guest_Hyottoko": 307080225, + "Guest_Usunoki": 1881339626, + "Guest_Kagemoosha": 1842766119, + "Guest_UdoJin-e": 850816224, + "Guest_TakedaKanryu": 536087422, + "Guest_Tamauji": 818613882, + "Guest_Jikiru": 794167355, + "Guest_Nomoonaga": 849534658, + "Guest_Aiuchi": 515942855, + "Guest_Kurogaso": 1426248002, + "Guest_Ideyoshi": 1814038213, + "Guest_Koto": 1151260427, + "Guest_Usegi": 977549586, + "Guest_Kanago": 1644367227, + "Guest_Kyuto": 1168225979, + "Guest_Haru": 2070048389, + "Guest_Ashikata": 1523446928, + "Guest_Katsumori": 1823914597, + "Guest_Hingen": 1567896261, + "Guest_Yakedo": 502298497, + "Guest_Do-Daga": 1239945714, + "Guest_Maito": 979260804, + "Guest_TonkatsuThug": 1758658397, + "Guest_GobbloreanGuard": 1286210991, + "Guest_BabblingMeints": 413418139, + "Guest_PrinceGobblestone": 1813171676, + "Guest_GobblerMuncher": 1517159487, + "Guest_GobblerGorger": 130736772, + "Guest_GobblerScouter": 1509427587, + "Guest_GobblerGlutton": 1912199781, + "Guest_GobblerScavenger": 136586791, + "Guest_BaronGreebly": 1028182200, + "Guest_BaronRotunda": 457132907, + "PP_DeathMimic": 1811942047, + "Guest_GreenMan": 1126663802, + "Guest_ForestGrump": 1602350320, + "Guest_ErvintheBarbarian": 1671762776, + "Guest_RazortuskWarrior": 1109994549, + "Guest_RazortuskBrawler": 732265321, + "Guest_SplithoofRager": 1922134329, + "Guest_TuskedRaider": 1920114147, + "Guest_SviniBeserker": 1146317608, + "Guest_SviniReaver": 216717251, + "Guest_Shattertusk": 1191456730, + "Guest_SplithoofBarbarian": 296671728, + "Guest_Bloodseeker": 2086598239, + "Guest_Scarsnout": 1831766077, + "Guest_MasterTonkatsu": 1783298894, + "Guest_Grisletusk": 657393295, + "Guest_SplithoofBloodguard": 488382274, + "Guest_BristlehideRaider": 237078958, + "Guest_Gullin": 1656401882, + "Guest_ForestNymph": 812055814, + "Guest_SassafrasMan": 1327049788, + "Guest_RandolfSpellshine": 108808620, + "Guest_BleysFlamerender": 434070106, + "Transformation_Khan": 1398327634, + "Transformation_TheBat": 1675113521, + "MNT_DireWolf": 845578449, + "MNT_YuleMule": 1976182058, + "MNT_LightBlades": 829118450, + "MNT_FlyingSquid": 1573132252, + "PP_Globulin": 467801224, + "PP_BeastBaby": 1807874692, + "PP_SaniBot": 670845902, + "Mount_SwarmSand": 1277669407, + "Guest_Nodnarb": 211478288, + "Guest_LordBramble": 1118781162, + "Guest_Yogash": 506264561, + "Guest_Marcio": 499428996, + "Guest_Procyon": 1115376865, + "Guest_Thunderfin": 2029218563, + "Guest_ArkynMoonblade": 1152775206, + "Guest_CreeCurdWright": 1714953095, + "Guest_DeerMouseRevenant": 315064435, + "Guest_ElanaDarksun": 837982094, + "Guest_KingAlricFateSailor": 1934591130, + "Guest_LaughingCalaca": 984492527, + "Guest_WraithKnight": 620484548, + "Guest_FieryEchoofApep": 484636593, + "Guest_FrostyEchoofApep": 171933154, + "Guest_FalseEchoofApep": 479387377, + "Guest_ChargedEchoofApep": 1229406800, + "Guest_ShrowdengersQhat": 101563303, + "Guest_Scrollkeeper": 643219293, + "Guest_TerrorHound": 753341570, + "Guest_CondemnedMander": 445370758, + "Mnt_SnowStorm": 1491572670, + "Mount_ChimneySweeper": 378571534, + "MNT_PineappleCandyCane": 1630795796, + "Guest_TyphonDustwind": 740849673, + "MNT_StickHorse": 216654744, + "MimicTemplate": 1461219184, + "MNT_Ball_N_Chain": 289720920, + "PP_PeaceDove_A": 1785119671, + "Mount_Gyrocycle": 1495008048, + "PP_BattleMageDragon_A": 1864696711, + "MNT_BattleBeast": 1304449286, + "MNT_SmokeTrails": 387873030, + "Mount_FriendshipHare": 677127330, + "MNT_ButterflySwarm": 383602683, + "PP_EggChick_B": 1959154042, + "MNT_Unicorn": 562210585, + "PP_StuffedUnicorn": 1731641773, + "MNT_ParadeTruck": 2026348978, + "MNT_ParadeTruckXmas": 1017864627, + "MNT_AutumnLeafSwarm": 1540002279, + "PP_GingerbreadMan": 1796172229, + "PP_DecadeDragon": 1819398630, + "MNT_StageShip": 829852992, + "PP_DramaLlama": 255896529, + "PP_HallMinotaur_A": 1492017563, + "Guest_MacDeath": 1526226705, + "Guest_MacDeathUnderstudy": 1731752647, + "Guest_MacLifeUnderstudy": 257466641, + "Guest_MacStormUnderstudy": 8295117, + "MNT_Pantera": 1135198, + "MNT_StagLight": 1908778048, + "MNT_GiantSpider": 1247185021, + "MNT_StagEvil": 872303931, + "PP_BaskHound": 1093866594, + "PP_Marionette": 1688299938, + "PP_Marionette_B": 1688297824, + "Guest_Izft": 996301405, + "Guest_SapotisMinion": 1625665891, + "Guest_CrazedSlave": 1473233468, + "Guest_CharmedSlave": 803043667, + "Guest_EnsorcelledSlave": 40920285, + "Guest_HallServant": 2038116460, + "Guest_SiathePerceiver": 1235571913, + "Guest_Kiwu": 1151177787, + "Guest_NightImp": 1051843424, + "Guest_EvilTrickster": 1035477123, + "Guest_DeepWoodsImp": 1502444054, + "Guest_ForestPest": 802235713, + "Guest_TaintedForestImp": 1030343985, + "Guest_Youkai": 518367729, + "Guest_CarthaginianElephantWarrior": 776293919, + "Guest_IdrisBeast-Taker": 106759521, + "Guest_MikaSkarka": 237956516, + "Guest_Belloq": 757247833, + "Guest_GurtokPiercer": 549466122, + "Guest_GurtokFirebender": 817966523, + "Guest_GurtokDemon": 544070162, + "Guest_GeneralFiretusk": 2073037770, + "Guest_GurtokBarrierDemon": 44657563, + "Guest_BlacktuskShaman": 1009070925, + "Guest_FireDemon": 158367196, + "Guest_DeathOni": 1916642000, + "Guest_JadeOni": 1289517185, + "Guest_PlagueOni": 1464586443, + "Guest_WarOni": 1630196094, + "Guest_BrokenLandMammoth": 1587008312, + "Guest_SunderedSeamMammoth": 1272698721, + "Guest_BullyMammoth": 170705927, + "Guest_Bullhemoth": 146998717, + "Guest_Kogasha": 1909654543, + "Guest_MusuthBerserker": 1741298129, + "Guest_BlackTuskCultist": 1771575961, + "Guest_AksilBlacktrunk": 1253596409, + "Guest_LongdreamerShaman": 1521283133, + "Guest_MuratGreyeyes": 1296814314, + "Guest_ElephantSoldier": 1443670145, + "Guest_DarajaniGuard": 1597288495, + "Guest_Loremaster": 1792470809, + "Guest_Pork": 2069999347, + "Guest_Beans": 97706585, + "MNT_Ox": 1292937747, + "PP_PropellerSquirrel": 1657443894, + "Guest_RasikPridefall": 97921485, + "Guest_AmedrasLightstep": 1818417025, + "MNT_SmokeTrails_Balance": 1358150715, + "MNT_SmokeTrails_Fire": 702971609, + "MNT_SmokeTrails_Ice": 190218501, + "MNT_SmokeTrails_Life": 2045542105, + "MNT_SmokeTrails_Myth": 1276281121, + "MNT_SmokeTrails_Storm": 564954622, + "Guest_Bellosh": 1407013027, + "Guest_AcampiReedfist": 2076527733, + "Guest_AgnettaBroadblade": 14864960, + "Guest_FrostheartRaider": 1574787221, + "Guest_JordaSwordbearer": 1627071850, + "Guest_KasaiBaku": 1153107369, + "Guest_ZoraimeiHelephant": 1002482606, + "Guest_ConscriptedMander": 43811125, + "Firecat_Decade": 409516955, + "MNT_BatGlider": 2086258491, + "Transformation_PlayerHomework": 673389670, + "Transformation_PlayerAttendance": 422287307, + "Transformation_PlayerLecture": 2035625874, + "Transformation_PlayerPopQuiz": 483367038, + "MNT_GingerbreadHorse": 1369242781, + "MNT_NimbariChariot": 1251740392, + "PP_NimbariDog": 1235126828, + "Transformation_PlayerGrandma": 1128332272, + "Transformation_PlayerScionA": 33862367, + "PP_Mushroom": 1568942158, + "MNT_Scooter": 1148167046, + "MNT_Scooter_B": 2079302532, + "MNT_Scooter_C": 1810867076, + "MNT_Scooter_D": 468689796, + "MNT_IceCycle": 415797788, + "Transformation_PlayerScionA02": 33921759, + "Guest_FearoftheFuture": 947210229, + "Guest_FearofGremlins": 405857384, + "Guest_RootGuardian": 922940845, + "Guest_VineThrasher": 172546427, + "Guest_BlightWalker": 1438155154, + "Guest_BriarScourge": 615681851, + "Guest_DreamJabberwock": 907754098, + "Guest_DreamBelloq": 990352002, + "Guest_Voltergeist": 1558128068, + "Guest_SpecialBranch": 1927849418, + "Guest_MutantBriar": 805892802, + "Guest_FeralBriar": 883790223, + "Guest_MaizeMonster": 688905764, + "Guest_DreamShadowwock": 1432458248, + "Mount_Heartboard": 1421972759, + "PP_ChocoBunny": 324797859, + "Mount-PogoFlower": 906659501, + "MNT_AethyrCloud": 1586061078, + "MNT_Fangle": 7846854, + "Guest_StarfallSpider": 1177620831, + "Guest_AshSpider": 1588502553, + "Guest_CorruptedWeaver": 38937211, + "Guest_CrystalCrawler": 1197980149, + "Guest_ShimmerWidow": 1300740128, + "Guest_FacetedSpikespinner": 1939719331, + "Guest_CrystallineQueen": 1999282256, + "Guest_AncientCrystalweaver": 1409608801, + "Guest_FangtoothLavaspinner": 1538042104, + "Guest_VenomousHeatseeker": 1234682482, + "Guest_FireweaveRockbiter": 300743778, + "Guest_MonkeySpider": 754090007, + "Guest_CryptSpider": 1545405304, + "Guest_CommonHouseSpider": 613486002, + "Guest_ArachnaMagnaMagus": 825817937, + "Guest_ArachnaSoldier": 270978709, + "Guest_Gnissa": 1699826178, + "Guest_WebwoodScuttler": 1728611075, + "Guest_SandSpider": 61789007, + "Guest_WebwoodCreeper": 1013382584, + "Guest_Skathi": 1631429165, + "Guest_ArchmagusLorcan": 321146960, + "Guest_CrawleroftheMist": 2076696304, + "Guest_PaintedSpider": 1482115552, + "Guest_GiantSpider": 1545526191, + "Guest_CaveCrawler": 2101587667, + "Guest_RattleCatcher": 1472707326, + "Guest_TrapdoorSpider": 1321643694, + "Guest_RockClinger": 1304266411, + "Guest_InquisitorXimenez": 1053483090, + "Guest_ElderMagus": 1017836836, + "Guest_WardenBenthamic": 18807199, + "Guest_SpiderArchmagus": 387645558, + "Guest_SpiderAdept": 2094873407, + "Guest_InterrogatorRentenius": 1245984179, + "Guest_WarpedWeaver": 495882677, + "Guest_ArachnaSkinner": 281864085, + "Guest_SkinnerConscript": 2028526453, + "Guest_ArachnaGladiator": 2492046, + "Guest_LorcanInitiate": 353311753, + "Guest_Serket": 1871335773, + "Guest_IceWeaver": 2063216026, + "Guest_SpiritSpinner": 525666327, + "Guest_MysteriousCrawler": 218352756, + "Guest_BlackWidow": 1909331619, + "Guest_BrownRecluse": 1146386275, + "Guest_Creeper": 1197442790, + "Guest_GearSpinner": 67020478, + "Guest_Clinker": 1194519062, + "Guest_Clanker": 1194517014, + "Guest_GrandfatherSpider": 1330981335, + "Guest_Spiderling": 1400274461, + "Guest_ManekiWebWalker": 888348786, + "Guest_KoganiDeathCrawler": 276010604, + "Guest_CheliceranCrawler": 1169176517, + "Guest_ArachniteCreeper": 1850534774, + "Guest_ChelicaranStalker": 2057291848, + "Guest_HornedMonkeySpider": 1301514577, + "Guest_GreyOgreSpider": 1533774471, + "Guest_StarburstSpider": 698029451, + "Guest_PaintedCaveMonster": 601315479, + "Guest_RubbleRouser": 220785666, + "Guest_EarthElemental": 435260049, + "Guest_SharpshardWarrior": 1403237237, + "Guest_Firevein": 1220046430, + "Guest_Blackblade": 458130537, + "Guest_VengefulFireheart": 563205004, + "Guest_FirerockStomper": 608552855, + "Guest_BlackrockGuardian": 1663799582, + "Guest_ConfusedSentry": 24655510, + "Guest_SilverSentinel": 1090673683, + "Guest_SilverServant": 84560693, + "Guest_GiantHomunculus": 456098557, + "Guest_PropertyMaster": 229101764, + "Guest_VaultProtector": 185568207, + "Guest_PlatedDefender": 79324363, + "Guest_Avalanche": 761613547, + "Guest_RockReaver": 919912933, + "Guest_Frostmantle": 856308090, + "Guest_GlacierWalker": 131215932, + "Guest_SandBehemoth": 272513357, + "Guest_RunedAnnihilator": 121339936, + "Guest_RunedDevestator": 1611071181, + "Guest_RunedGuardian": 1986312667, + "Guest_CanyonRager": 1123038266, + "Guest_RubbleReaver": 220774678, + "Guest_Boulderbone": 122279242, + "Guest_Nali": 77467516, + "Guest_Gnar": 1151164930, + "Guest_GlacialAvenger": 1181253632, + "Guest_SokkwiKeymaster": 190919624, + "Guest_SandsofTime": 34920273, + "Guest_BladeGolem": 435561523, + "Guest_FrostColossus": 1564686403, + "Guest_IceColossus": 335477257, + "Guest_PollutedEarthWalker": 86045387, + "Guest_CorruptedEarthSpirit": 1135891559, + "Guest_Stonebreaker": 1317905436, + "Guest_StoneElemental": 1715022018, + "Guest_VolcanisGolem": 1904918929, + "Guest_WaterElemental": 1717850987, + "Guest_AshenDeathMonkeySpider": 35356665, + "Guest_DeathMonkeySpider": 1525508507, + "Guest_MotherMonkeySpider": 110317392, + "Guest_DoomMonkey": 1135105500, + "Guest_DreamMorganthe": 907599965, + "Guest_DragonBeetle": 1974635734, + "Guest_SandWalker": 1530843985, + "MNT_PandaMama": 916371162, + "PP_BabyPandas": 778536285, + "PP_FrogPrince": 729975205, + "MNT_PumpkinCarriage": 183672737, + "Mount_Gobbler_B": 1193388729, + "PP_Hamster": 1578040708, + "Guest_Steeleton": 657429968, + "Guest_GoldenWyrm": 311022393, + "MNT_Roc": 1564431869, + "PP_BabyGriffin": 1913686406, + "Transformation_ShadowDPSMob": 936133896, + "Transformation_ShadowTankMob": 305660992, + "Transformation_ShadowHealMob": 356596800, + "Guest_SpiritofIgnorance": 1577360126, + "Guest_FecklessSoul": 519648315, + "Guest_BurnedOutSoul": 312181646, + "Guest_BenightedRevenant": 2131956962, + "Guest_TombLurker": 1901203489, + "Guest_DesertGolem": 543642682, + "Guest_KumoOni": 215822625, + "Guest_SpellwritStalker": 161772776, + "PP_Sun": 1723237840, + "Guest_Leadite": 4480416, + "Mount_FestiveFox": 2125832348, + "PP_FenrisWolf": 1601784680, + "PP_SchoolPiggle": 109782407, + "PP_FenrisWolf_Red": 1597992854, + "PP_FenrisWolf_Teal": 1455058454, + "PP_FenrisWolf_White": 1102186199, + "Transformation_NinjaPig_Fire": 984575055, + "Transformation_BG_RatThief_Myth": 1191155131, + "Transformation_BG_RatThief_Storm": 675891897, + "MNT_Umbrella": 955683437, + "Transformation_BG_Elf_Ice": 1209681129, + "Transformation_BG_Fairy_DarkMinion_Balance": 33521202, + "Transformation_BG_Cyclops_Death": 876023972, + "Transformation_BG_Minotuar_Fire": 1118476387, + "Transformation_BG_WolfWarrior_Storm": 2075594475, + "Transformation_BG_WolfWarrior_Balance": 746159992, + "Transformation_BG_Draconian_Myth": 903606820, + "Transformation_BG_Draconian_Life": 1501291044, + "Transformation_BG_Colossus_Life": 1320377666, + "MNT_DolphinChariot": 102982520, + "MNT_EvilWagon": 685457563, + "MNT_FlyingDutchman": 1176206544, + "PP_SeaHorse": 2024322494, + "PP_EvilTeddy": 1159020925, + "PP_ZombieParrot": 384805107, + "Transformation_BG_Ice_Colossus": 299613211, + "MNT_CarrierBat": 7323333, + "Transformation_BG_Minotaur_MythTempalte": 430330904, + "PP_FeatheredTabby": 452526748, + "Transformation_Detritus01": 1335763402, + "Guest_Metallossus": 335457082, + "MNT_SantaJaws": 464410203, + "MNT_BattleBadger": 532858222, + "Transformation_Shedder01": 2069145892, + "PP_NatureSpirit": 373176286, + "Transformation_Devourer01": 1004421540, + "Guest_TheDevourer": 1591187996, + "Guest_Treeminder": 1093207850, + "Guest_RenegadeDruid": 2087982292, + "Guest_FractalTreeminder": 927174548, + "Guest_UnsettledTreeminder": 486164163, + "Guest_DragonspyreCrusader": 247317280, + "Guest_YoungGreggor": 66068670, + "Guest_GeneralGreyflame": 499924835, + "Guest_OldGreggor": 391726170, + "Guest_PrinceViggor": 853556298, + "Guest_DragonspyreVanguard": 693851565, + "Guest_SilasConviction": 177362659, + "Guest_SilasWeariness": 893431021, + "Guest_SilasRage": 1288904439, + "Guest_SilasDoubt": 1479426285, + "Guest_Lorekeeper": 147779344, + "Guest_FelixPhotomongerIII": 68387506, + "Guest_WarHavox": 1634324022, + "Guest_Mis-assembledSkeleton": 221832082, + "Guest_TreeminderGhost": 200408510, + "Guest_ViggorsDrake": 340449521, + "Guest_BlueNinjaPig": 938539327, + "Guest_RedNinjaPig": 2097962021, + "Guest_OrangeNinjaPig": 625058258, + "Guest_PurpleNinjaPig": 445746449, + "Guest_RitualColossus": 844563319, + "Guest_TinyDragon": 1123127688, + "Guest_RitualSpider": 429827552, + "Guest_RitualDraconian": 837510372, + "Guest_CC_Druid_Warrior_C_01": 55314616, + "Guest_CC_Druid_Wizard_A_01": 1046261169, + "Guest_CC_Druid_Wizard_B_01": 1046244785, + "Guest_CC_Druid_Warrior_A_01": 56363192, + "MNT_Toboggan": 995356805, + "MNT_2P_WickerTreant-001": 2065440944, + "PP_Ratatoskr": 1003497600, + "PP_Trash": 1195047012, + "Guest_CC_Druid_Wizard_D_01": 1046343089, + "MNT_Sunflower": 721091531, + "MNT_Whoopee": 1383311238, + "MNT_Warthog": 8060761, + "PP_ShamRock": 943893325, + "PP_LeapingLeprechaun": 132882517, + "PP_LionCubs": 465759803, + "PP_Tanuki": 670387843, + "MNT_Crane": 433122675, + "MNT_Krokosphinx": 739938754, + "Transformation_BG_Fairy_Life": 1897480818, + "Transformation_LiceDeepSpawnA": 244795720, + "Piggle_Alien": 1761605655, + "PP_JeweledScarab": 620544607, + "Guest_KR_Nymph_DrkMage_D50": 1248526054, + "Guest_KR_Nymph_DrkMage_C50": 1246953190, + "Guest_KR_Nymph_DrkMage_B50": 1247477478, + "Guest_KR_Nymph_DrkMage_A50": 1245904614, + "Guest_EM_Spider_Ash_01": 185724938, + "UFO": 47349, + "PP_Kit10": 326796620, + "PP_Lumi_Tulip": 84119585, + "PP_Lumi_Fern": 117015078, + "PP_Lumi_Violet": 1468797578, + "PP_Lumi_Sunny": 1769236703, + "PP_Lumi_Daisy": 1743454175, + "MNT_CelestianMech": 1238076872, + "MNT_Brontosaurus": 402157167, + "Guest_HG_AKT_Krok_Cyber_A_Balance_25": 1367985604, + "Guest_HG_AKT_Krok_Cyber_A_Balance_50": 1368084932, + "Guest_HG_AKT_Krok_Cyber_A_Balance_75": 1367988676, + "Guest_HG_AKT_Krok_Cyber_A_Balance_100": 1351303620, + "Guest_HG_AKT_Krok_Cyber_A_Balance_130": 1351270852, + "Guest_HG_AKT_Krok_Cyber_A_Fire_25": 976558490, + "Guest_HG_AKT_Krok_Cyber_A_Fire_50": 37034397, + "Guest_HG_AKT_Krok_Cyber_A_Fire_75": 305469850, + "Guest_HG_AKT_Krok_Cyber_A_Fire_100": 573905821, + "Guest_HG_AKT_Krok_Cyber_A_Fire_130": 573905824, + "Guest_HG_AKT_Krok_Cyber_A_Ice_25": 159411377, + "Guest_HG_AKT_Krok_Cyber_A_Ice_50": 541093041, + "Guest_HG_AKT_Krok_Cyber_A_Ice_75": 146828465, + "Guest_HG_AKT_Krok_Cyber_A_Ice_100": 557870241, + "Guest_HG_AKT_Krok_Cyber_A_Ice_130": 960523425, + "Guest_HG_AKT_Krok_Cyber_A_Myth_25": 976187830, + "Guest_HG_AKT_Krok_Cyber_A_Myth_50": 36663729, + "Guest_HG_AKT_Krok_Cyber_A_Myth_75": 305099190, + "Guest_HG_AKT_Krok_Cyber_A_Myth_100": 573535153, + "Guest_HG_AKT_Krok_Cyber_A_Myth_130": 573535156, + "Guest_CL-GolemButler-R9": 780077559, + "Guest_CL-GolemDigger-Boss-R10": 562020288, + "Guest_CL-GolemDigger-R9": 789375095, + "Guest_CL-GolemDigger-Rank8MythBoss-R10": 930527857, + "Guest_CL-GolemWorker-R9-1": 1072815287, + "Guest_CL-FishbotBrown-R9-1": 2006155417, + "Guest_CL-FishbotBrown-R9-2": 395542681, + "Guest_CL-FishbotGold-Boss-R10": 611881707, + "Guest_CL-FishbotGold-R9": 705414492, + "Guest_CL-FishbotYellow-Boss-R10": 23145662, + "Guest_CL-Protector-Black-Boss-R10-2": 679228793, + "Guest_CL-Protector-Gold-R10": 1909636609, + "Guest_CL-Protector-Gold-R9-1": 1909634804, + "Guest_CL-Protector-Gold-R9-2": 1909634932, + "Guest_CL-Protector-Gold-R9-3": 1909635060, + "Guest_CL-Protector-Gold-R9-4": 1909634164, + "Guest_CL-Protector-Purple-R9-Boss": 1889837072, + "Guest_CL-Protector-Purple-R9": 81760161, + "Guest_CL-Protector-Tan-Boss-R10": 912663188, + "Guest_KR_Golem_Worker": 1784607296, + "Guest_Golem-Brass-R7-1": 718939445, + "Guest_Golem-Clockwork-R7": 1161173708, + "Guest_EM_Robot_Batbot_A_01": 1482867950, + "Guest_EM_Robot_Batbot_B_02": 945947886, + "Guest_EM_Robot_Batbot_B_01": 1482818798, + "Guest_EM_Robot_Batbot_B_03": 409076974, + "Guest_EM_Robot_Batbot_B_04": 127793938, + "Guest_EM_Robot_Batbot_B_05": 664664850, + "Guest_EM_Robot_Drone_A_02": 1215188569, + "Guest_EM_Robot_Drone_A_03": 1231965785, + "Guest_EM_Robot_Drone_A_01": 1265520217, + "Guest_EM_Robot_Drone_A_04": 1315851865, + "Guest_EM_Robot_Drone_A_05": 1332629081, + "Guest_EM_Robot_Drone_A_06": 1282297433, + "Guest_EM_Robot_Drone_A_07": 1299074649, + "Guest_EM_Robot_Drone_A_08": 1114525273, + "Guest_EM_Robot_Drone_A_09": 1131302489, + "Guest_EM_Robot_Drone_A_Boss_01": 1960661151, + "Guest_EM_Robot_Drone_A_Boss_02": 1960530079, + "Guest_EM_Robot_Drone_E_01": 1265518169, + "Guest_EM_Robot_Tank_A_01": 1314796420, + "Guest_EM_Robot_Tank_A_02": 1313223556, + "Guest_EM_Robot_Drone_C_02": 1215187545, + "Guest_EM_Robot_Drone_D_03": 1231963225, + "Guest_EM_Robot_Drone_D_01": 1265517657, + "Guest_EM_Robot_Drone_D_02": 1215186009, + "Guest_EM_Robot_Tank_B_01": 1314796468, + "Guest_EM_Robot_Drone_C_01": 1265519193, + "Guest_G14-BP-Golem_Steel_Boss": 2071105129, + "Guest_G14-BP-Golem_Steel_Puzzle": 715790979, + "Guest_Golem-Brass-Elite-L38": 1163662532, + "Guest_Golem-Brass-Elite-L56": 2057562884, + "Guest_Golem-Brass-MBBoss-L48": 1498830732, + "Guest_Golem-Brass-MBBoss-L71": 1498829576, + "Guest_Golem-Brass-MBBoss-L76": 1498828936, + "Guest_Golem-Clockwork-Elite-L54-Metal": 417151527, + "Guest_Golem-Clockwork-Elite-L37": 1961943722, + "Guest_Golem-Clockwork-Elite-L54": 1950147242, + "Guest_Golem-Clockwork-L28": 1561959116, + "Guest_Golem-Clockwork-MBBoss-L37": 973152783, + "Guest_Golem-Clockwork-MBBoss-L69": 1262559759, + "Guest_Golem-Steel-Elite-L39": 1430496717, + "Guest_Golem-Steel-MBBoss-L40": 1229578887, + "Guest_Golem-Steel-MBBoss-L43": 1229579015, + "Guest_Golem-Steel-MBBoss-L50-1": 1231762051, + "Guest_Golem-Steel-MBBoss-L50": 1229578883, + "Guest_Golem-Steel-MBBoss-LXX": 1229583927, + "Guest_Golem-Wood-Elite-L35": 904360756, + "Guest_Golem-Wood-Elite-L37": 1978102580, + "Guest_Golem-Wood-Elite-L50": 1813548236, + "Guest_Golem-Wood-MBBoss-L63": 1392041724, + "Guest_MB-Gauntlet-Golem-Clockwork": 854649045, + "Guest_Spider-Golem-MBBoss-L67": 253352706, + "Guest_Spider-Golem-MBBoss-L96": 253348994, + "Guest_WC-MAW-GasGolem-Minion": 1511013798, + "Guest_WC-MAW-GasGolemLife-Minion": 1306026584, + "Guest_Golem-Steel-L02": 1027229749, + "Guest_Golem-Clockwork-L01": 1409915596, + "Guest_Gauntlet-01-Golem-Steel-Ghost-R8": 402816318, + "Guest_Golem-Wood-L01": 156976035, + "Guest_HG-Clock-ClockworkSpanner-20": 1523370449, + "Guest_HG-Clock-ClockworkSpanner-40": 1523370455, + "Guest_HG-Clock-ClockworkSpanner-60": 1523370453, + "Guest_HG-Clock-ClockworkSpanner-80": 1523370459, + "Guest_HG-Clock-ClockworkSpanner-100": 1523354068, + "Guest_HG-Clock-ClockworkSpanner-120": 1523354004, + "Guest_AQ-Cyclops-Guard": 191361948, + "Guest_AQ_Cyclops_Guard_A_Boss_01": 114747100, + "Guest_CL-Cyclops-Death-R10": 611013866, + "Guest_Cyclops-Death-Boss-R7": 1192370725, + "Guest_Cyclops-Death-Boss-R9": 1192370717, + "Guest_Cyclops-Death-R7": 144593791, + "Guest_GH-Cyclops-Death-R6": 594236619, + "Guest_Cyclops-BlueHelmet-KTBoss-L03": 1720105277, + "Guest_Cyclops-Red-L12": 1816429840, + "Guest_MR_Cyclops02WHelmet_Model_01": 1483732416, + "Guest_Cyclops-Blue-L02": 1633021234, + "Guest_Cyclops-BlueHelmet-WCBoss-L03": 427378332, + "Guest_Cyclops-RedHelmet-WCBoss-L03": 2021269422, + "Guest_HG_Sinbad_Cyclops_25": 911979034, + "Guest_HG_Sinbad_Cyclops_50": 1856261606, + "Guest_HG_Sinbad_Cyclops_75": 861647386, + "Guest_HG_Sinbad_Cyclops_100": 1789152678, + "Guest_HG_Sinbad_Cyclops_130": 178539942, + "Guest_HG_Sinbad_IronSultan_25": 930031152, + "Guest_HG_Sinbad_IronSultan_50": 930051504, + "Guest_HG_Sinbad_IronSultan_75": 930030768, + "Guest_HG_Sinbad_IronSultan_100": 927954864, + "Guest_HG_Sinbad_IronSultan_130": 927942576, + "MNT_SweetRide": 1643297840, + "PP_FrilledDino": 1395342809, + "PP_Celestian": 95679303, + "PP_Sun_Angry": 1955190071, + "PP_Marshmallow": 1220667954, + "MNT_Umbrella_B": 923364822, + "MNT_Tamer": 1050737194, + "PP_BumbleBee_B": 858653433, + "MNT_PunkFlamingo": 1634690818, + "MNT_2P_WoolyRhino": 1395943031, + "PP_Retriever": 72842604, + "PP_Piggle_Caveman": 181356174, + "PP_DecennialDragon": 1396523337, + "MNT_Tiger_Rainbow": 515535412, + "MNT_CarrierGhosts": 1833039309, + "MNT_Sled": 617654308, + "Transformation_BG_RatThief_Death": 30691641, + "Transformation_BG_Elf_Storm": 44352983, + "Transformation_BG_WolfWarrior_Ice": 986304351, + "MNT_CarriorGhost_B": 1768732109, + "MNT_CarriorGhost_C": 1766634957, + "Transformation_BG_Colossus_Fire": 1318803522, + "Transformation_BG_Krok_Balance": 140952965, + "Guest_KM_Gobbler_Skinny_A_11": 773648065, + "Guest_KM_Robot_Candy_A_01": 480414124, + "Guest_KM_Robot_Candy_A_02": 530745772, + "Guest_KM_Robot_Candy_A_03": 513968556, + "Guest_KM_Robot_Candy_A_04": 430082476, + "Guest_KM_Robot_Candy_A_05": 413305260, + "Guest_KM_Gummy_Bear_A_01": 1940905059, + "Guest_KM_Gummy_Bear_D_01": 1940905011, + "Guest_KM_Gummy_Bear_E_01": 1940904995, + "Guest_KM_Gummy_Bear_A_02": 1941429347, + "Guest_KM_Gummy_Bear_D_02": 1941429299, + "Guest_KM_Gummy_Bear_E_02": 1941429283, + "Guest_KM_Gummy_Bear_B_01": 1940905043, + "Guest_KM_Gummy_Bear_B_02": 1941429331, + "Guest_KM_Gummy_Bear_B_03": 1941953619, + "Guest_KM_Gummy_BearHat_A_01": 853226448, + "Guest_KM_Gummy_BearHat_A_02": 853226460, + "Guest_KM_Gummy_Bunny_A_01": 324805042, + "Guest_KM_Gummy_Bunny_C_01": 324806066, + "Guest_KM_Gummy_Bunny_D_01": 324807602, + "Guest_KM_Gummy_Bunny_E_01": 324807090, + "Guest_KM_Gummy_Bunny_F_01": 324808626, + "Guest_KM_Gummy_BunnyUber_A_01": 525565930, + "Guest_KM_Gummy_Worm_A_01": 231044195, + "Guest_KM_Gummy_Worm_B_01": 231044179, + "Guest_KM_Gummy_Worm_C_01": 231044163, + "Guest_KM_Gummy_Worm_A_02": 232617059, + "Guest_KM_Gummy_Worm_B_02": 232617043, + "Guest_KM_Gummy_Worm_C_02": 232617027, + "Guest_KM_Gummy_Bear_F_01": 1940904979, + "Guest_KM_Gummy_Bear_F_02": 1941429267, + "Guest_KM_Gummy_Bunny_C_02": 274474418, + "Guest_KM_Robot_Candy_A_06": 463636908, + "Guest_KM_Alphoi_DarkF_A_01": 475441543, + "Guest_KM_Gobbler_Skinny_A_01": 773648069, + "Guest_KM_Gobbler_Skinny_A_02": 773648197, + "Guest_KM_Gobbler_Skinny_A_03": 773648325, + "Guest_KM_Gobbler_SkinnyF_A_01": 254411012, + "Guest_KM_Gobbler_Skinny_A_04": 773647429, + "Guest_KM_Gobbler_Skinny_A_05": 773647557, + "Guest_KM_Gobbler_Skinny_A_06": 773647685, + "Guest_KM_Gobbler_SkinnyF_A_02": 254423300, + "Guest_KM_Gobbler_Skinny_A_07": 773647813, + "Guest_KM_Gobbler_Skinny_A_08": 773646917, + "Guest_KM_Gobbler_Skinny_A_09": 773647045, + "Guest_KM_Gobbler_SkinnyF_A_03": 254419204, + "Guest_KM_Gobbler_Fat_A_01": 1440595742, + "Guest_KM_Gobbler_Fruit_B_01": 1236446660, + "Guest_KM_Gobbler_Fruit_A_01": 1235922372, + "Guest_KM_Gobbler_Guard_B_01": 1435667582, + "Guest_KM_Gobbler_Skinny_A_10": 773647937, + "Transformation_PlayerBabyCarrot": 1580787628, + "Transformation_PlayerDeadBeet": 1992261692, + "Transformation_PlayerDisparagus": 373797484, + "Transformation_PlayerSnowPeas": 634199102, + "PP_Snowflake": 2036143125, + "PP_GummyBear_Myth": 117787890, + "PP_GummyBear_Death": 236577760, + "PP_GummyBear_Balance": 2100524337, + "PP_GummyBear_Life": 118020336, + "PP_GummyBear_Fire": 117995748, + "PP_GummyBear_Storm": 247437198, + "PP_GummyBear_Ice": 122536570, + "MNT_SnowOwl": 1578473542, + "Guest_KM_Gummy_Bear_Uber_A_01": 1856208859, + "Guest_KM_Gummy_Bear_Uber_A_02": 1856196571, + "MNT_ChocolateMoose": 567538552, + "MNT_Ram_Candied": 1913603720, + "Guest_KM_Spider_Mage_A_01": 1529720120, + "Guest_KM_Spider_Mage_B_01": 1529719608, + "Guest_KM_Spider_Mage_C_01": 1529719096, + "Guest_KM_Spider_Mage_D_01": 1529718584, + "Guest_KM_Spider_Mage_E_01": 1529718072, + "PP_SpriteDark_Balance": 914900728, + "MNT_Tricycle": 991465753, + "Guest_Tri-Gauntlet-Protector-Gold": 2029952053, + "Guest_Tri-Gauntlet-FishbotGold": 130267882, + "Guest_HG-Clock-Clockworker-20": 281216243, + "Guest_HG-Clock-Clockworker-40": 281217011, + "Guest_HG-Clock-Clockworker-60": 281216755, + "Guest_HG-Clock-Clockworker-80": 281215475, + "Guest_HG-Clock-Clockworker-100": 283313523, + "Guest_HG-Clock-Clockworker-120": 283321715, + "Guest_HG-Clock-Lugs-20": 1452756928, + "Guest_HG-Clock-Lugs-40": 1452756960, + "Guest_HG-Clock-Lugs-60": 1452756992, + "Guest_HG-Clock-Lugs-80": 1452756768, + "Guest_HG-Clock-Lugs-100": 1452494736, + "Guest_HG-Clock-Lugs-120": 1452493712, + "Guest_HG-Clock-Lucia-20": 1041451626, + "Guest_HG-Clock-Lucia-40": 1041450602, + "Guest_HG-Clock-Lucia-60": 1041449578, + "Guest_HG-Clock-Lucia-80": 1041456746, + "Guest_HG-Clock-Lucia-100": 1049840746, + "Guest_HG-Clock-Lucia-120": 1049873514, + "Guest_KM_Gummy_Worm_A_03": 232092771, + "MNT_Scooter_E": 200254340, + "PP_WolfWarrior_Balance": 991302673, + "PP_PetGift": 1816280689, + "PP_RatThief": 1390866051, + "Guest_PL_Titan_Small_A": 2015819364, + "Guest_PL_Titan_Large_B": 699791264, + "Guest_PL_Titan_Medium_A": 326730424, + "PP_Draconian": 1631557208, + "MNT_Pantera_Astral": 106092538, + "PP_YearOx": 105653084, + "PP_WolfWarrior_Ice": 1043644935, + "PP_SpriteDark": 2031730054, + "PP_Brudel": 1355697143, + "MNT_Astronomers": 742732792, + "MNT_CouchPotato": 418050932, + "MNT_Flowerfarthing": 1396771051, + "MNT_Astronomers_Blue": 236532779, + "MNT_Astronomers_Rainbow": 4428274, + "PP_Astronomer": 782095961, + "Guest_KM_Gummy_Bunny_B_01": 324806578, + "Guest_KM_DeadBeets_A_01": 1396016635, + "MNT_GummyBunny": 775900704, + "MNT_GummyBunny_A": 775834080, + "MNT_GummyBunny_B": 775836128, + "MNT_GummyBunny_C": 775838176, + "Transformation_BG_Minotaur_Life": 1445109091, + "MNT_Armadillo": 825635826, + "PP_SootGremlin": 768969093, + "PP_RoadRunner": 2057802060, + "MNT_TinyTrolly": 160881792, + "PP_Frog_B": 1530124761, + "MNT_FjordDragon": 129204340, + "Transformation_BG_NinjaPig_Myth": 422914079, + "PP_CorgiPup": 1638656105, + "MNT_Skateboard": 728018224, + "PP_Krokomummy": 326396577, + "MNT_Vroom": 1736383110, + "MNT_PlayerWings_AtralRaven": 1514774167, + "PP_Blimp": 690882397, + "Guest_GH_WoodenSkeletonKey_Boar_Boss_Grey_01": 678055851, + "Guest_GH_StoneSkeletonKey_Boar_Boss_Grey_01": 571670691, + "Guest_GH_GoldSkeletonKey_Boar_Boss_Grey_01": 961728819, + "MNT_Cloud_Promo_AW_01": 2032670992, + "Guest_EM_Hornet_Burner_A_01": 1881854632, + "Guest_EM_Hornet_Burner_A_02": 1881854636, + "Guest_EM_Hornet_Zapper_A_01": 2058539689, + "Guest_EM_Hornet_Zapper_A_02": 2058539685, + "Guest_EM_Ant_Giant_D_01": 379386121, + "Guest_EM_Ant_Giant_A_02": 1768146677, + "Guest_EM_Ant_Giant_A_01": 1768097525, + "Guest_EM_Ant_Giant_B_01": 379386122, + "Guest_KR_Moth_Priest_G_Achera": 381233569, + "Guest_KR_BeeMonsterF_A": 135146211, + "Guest_KR_BeeMonsterF_A_Weak": 1824123847, + "Guest_KR_Bee_Warrior_A": 1569202664, + "Guest_KR_Bee_Warrior_B": 1569204200, + "Guest_KR_Bee_Warrior_C_BossDrones": 1217189631, + "Guest_KR_Bee_Warrior_D": 1569205224, + "Guest_KR_Bee_Warrior_E": 1569204712, + "Guest_KR_Bee_Warrior_G": 1569205736, + "Guest_KR_Bee_Warrior_G_BossFight": 1055035476, + "Guest_KR_Bee_Warrior_H": 1569207272, + "Guest_KR_Bee_Warrior_I": 1569206760, + "Guest_KR_Bee_Warrior_L": 1569209320, + "Guest_KR_Bee_Warrior_M": 1569208808, + "Guest_KR_DragonBeetle_Monster_A": 1777853782, + "Guest_KR_Hornet_Drone_A": 1161590757, + "Guest_KR_Hornet_Drone_B": 1161607141, + "Guest_KR_Hornet_Drone_C": 1161623525, + "Guest_KR_Hornet_Drone_D": 1161639909, + "Guest_KR_Hornet_Drone_E": 1161656293, + "Guest_KR_Lice_DeepSpawn_A": 761604959, + "Guest_KR_Mantis_HunterF_A": 820917199, + "Guest_KR_Mantis_HunterF_B": 871248847, + "Guest_KR_Mantis_HunterF_C": 854471631, + "Guest_KR_Mantis_HunterF_D": 904803279, + "Guest_KR_Mantis_HunterF_F": 938357711, + "Guest_KR_Mantis_HunterF_F_Driftwood": 2053608437, + "Guest_KR_Mantis_HunterF_G": 921580495, + "Guest_KR_Mantis_HunterF_H": 971912143, + "Guest_KR_Mantis_HunterF_I": 955134927, + "Guest_KR_Mantis_HunterF_I_Zuzka": 935478878, + "Guest_KR_Mantis_HunterF_J": 1005466575, + "Guest_KR_Mantis_HunterF_J_Zelda": 886910558, + "Guest_KR_Mantis_HunterF_K": 988689359, + "Guest_KR_Mantis_HunterF_K_LongShd": 1767574336, + "Guest_KR_Mantis_HunterF_L": 1039021007, + "Guest_KR_Mantis_HunterF_M": 1022243791, + "Guest_KR_Mantis_HunterF_P_Bossfight": 1731428987, + "Guest_KR_Mantis_HunterF_Q": 552481743, + "Guest_KR_Mantis_HunterF_R": 602813391, + "Guest_KR_Mantis_HunterF_S": 586036175, + "Guest_KR_Mantis_HunterF_SecondColumnCpt_A": 1354033994, + "Guest_KR_Mantis_HunterF_T": 636367823, + "Guest_KR_Mantis_HunterF_Tribute": 1946371041, + "Guest_KR_Mantis_HunterF_U": 619590607, + "Guest_KR_Mantis_HunterF_V": 669922255, + "Guest_KR_Mantis_HunterF_W": 653145039, + "Guest_KR_Mantis_HunterF_Y": 686699471, + "Guest_KR_Mantis_HunterF_Z_Officer": 206016474, + "Guest_KR_Mantis_ProphetF_B": 1791139097, + "Guest_KR_Mantis_ProphetF_C": 1254268185, + "Guest_KR_Milipede_Warrior_A": 410726278, + "Guest_KR_Milipede_Warrior_B": 410726282, + "Guest_KR_Milipede_Warrior_C": 410726286, + "Guest_KR_Milipede_Warrior_D": 410726290, + "Guest_KR_Milipede_Warrior_H": 410726306, + "Guest_KR_Milipede_Warrior_J": 410726314, + "Guest_KR_Milipede_Warrior_K": 410726318, + "Guest_KR_Moth_Priest_A": 1421532604, + "Guest_KR_Moth_Priest_B": 1421532092, + "Guest_KR_Moth_Priest_C": 1421531580, + "Guest_KR_Moth_Priest_D": 1421531068, + "Guest_KR_Moth_Priest_D_Drepa": 1483393420, + "Guest_KR_Moth_Priest_E": 1421530556, + "Guest_KR_Moth_Priest_F": 1421530044, + "Guest_KR_Mantis_HunterF_Z": 737031119, + "Guest_KR_Roach_AntLion_A": 1860517987, + "Guest_KR_Roach_AntLion_B_Bossfight": 993284625, + "Guest_KR_Roach_AntLion_C": 1861566563, + "Guest_KR_Roach_Cook_A": 259847495, + "Guest_KR_Roach_Glutton_B": 249524334, + "Guest_KR_Roach_WaterBug_A": 1795473599, + "Guest_KR_Roach_WaterBug_B": 1745141951, + "Guest_MR_Beetle_Scarab_A_01": 1789741503, + "Guest_MR_Beetle_Scarab_A_02": 1789741491, + "Guest_MR_Beetle_Scarab_B_01": 1790265791, + "Guest_ZF-Goliath-R10-Boss-01": 7034074, + "Guest_ZF-Goliath-R10-Boss-02": 7034202, + "Guest_ZF-Goliath-R10-Boss-03": 7034330, + "Guest_ZF-Goliath-R10-Boss": 1603576807, + "Guest_ZF-Goliath-R11-Boss-01": 2140449574, + "Guest_ZF-Goliath-R11-Boss-02": 2140449446, + "Guest_ZF-Goliath-R11-Boss-03": 2140449318, + "Guest_ME1_Ant_Aunt_A": 707251855, + "Guest_ME1_Ant_Aunt_B": 1440231794, + "Guest_CC_Fly_Worker_A_01": 1497784524, + "Guest_CC_Roach_Worker_A_01": 1026321602, + "Guest_CC_Roach_Lieutenant_A_01": 1081690299, + "Guest_CC_Roach_Lieutenant_B_01": 1081690295, + "Guest_CC_Roach_Don_A_01": 547836893, + "Guest_CC_Roach_BBug_A_01": 1021150157, + "Guest_CC_Roach_RoachSteady_A_01": 859409247, + "Guest_Draconian-Caster-Yellow-Boss-R8": 1016221419, + "Guest_Draconian-Zombie-R8-2-1": 1226055265, + "Guest_Draconian-Zombie-R8-2": 1226115297, + "Guest_Draconian-Caster-Green-R7": 2143342719, + "Guest_Draconian-Warrior-Gold-Boss-R8": 1044388248, + "Guest_Draconian-Caster-Gray-R7": 95878769, + "Guest_DS-Boss-MAW": 1676071241, + "Guest_Draconian-Zombie-R8-1": 1226115309, + "Guest_Draconian-Warrior-Purple-Boss-R7": 601813964, + "Guest_Draconian-Caster-Tan-Boss-R7": 1973339532, + "Guest_Draconian-Caster-Blue-R6": 1684210173, + "Guest_Draconian-Caster-Yellow-R8": 2129956646, + "Guest_Draconian-Warrior-Red-R7": 521861944, + "Guest_Draconian-Warrior-Tan-R6": 1726416112, + "Guest_Draconian-Warrior-Purple-R8": 1896270341, + "Guest_Draconian-Caster-Blue-Boss-R7": 401581134, + "Guest_Draconian-Zombie-R8": 384497496, + "Guest_GH2-Draconian-HENCH-R10": 1149202878, + "Guest_GH2-Draconian-BOSS-R10": 2114378473, + "Guest_G14-DM-Draconian_Boss": 490246211, + "Guest_G14-DM-Draconian_Storm": 2035239226, + "Guest_G14-DM-Draconian_Ice": 782200563, + "Guest_G14-DM-Draconian_Malistaire_M": 1904691727, + "Guest_G14-DM-Draconian_Malistaire_S": 1904685583, + "Guest_G14-DM-Draconian_Malistaire_D": 1904700943, + "Guest_G14-DM-Draconian_Malistaire": 1904736751, + "Guest_G14-DM-Draconian_Malistaire_B": 1904702991, + "Guest_G14-DM-Draconian_Malistaire_I": 1904695823, + "Guest_G14-DM-Draconian_Malistaire_L": 1904692751, + "Guest_G14-DM-Draconian_Malistaire_F": 1904698895, + "Guest_Draconian-PW-Gauntlet-Boss": 493080513, + "Guest_CC_Draconian_A_01": 551348115, + "Guest_AZ-Parasaur-Undead-E": 2041242846, + "Guest_AZ-Parasaur-drkPriestF-F": 898239615, + "Guest_EM_Parasaur_DrkPriestF_A_01": 1007099606, + "Guest_EM_Parasaur_DrkPriestF_A_02": 1007099605, + "Guest_AZ-Parasaur-drkPriestF-D": 898501759, + "Guest_AZ-Parasaur-drkPriestF-E": 898370687, + "Guest_AZ-Parasaur-drkPriestF-A": 897846399, + "Guest_AZ-Parasaur-Undead-B": 1716853538, + "Guest_AZ-Parasaur-Undead-A": 106240802, + "Guest_AZ-Parasaur-Undead-G": 967501022, + "Guest_AZ-Parasaur-PriestF-D": 1177445525, + "Guest_AZ-Parasaur-Undead-C": 1179982626, + "Guest_AZ-Parasaur-drkPriestF-C": 897584255, + "Guest_AZ-Parasaur-Undead-SkurkisMinion": 1414766977, + "Guest_AZ-Parasaur-drkPriestF-B": 897715327, + "Guest_AZ-Parasaur-drkPriestF-B-Script": 1414847875, + "Guest_AZ_Parasaur_Priest_A_Boss_01": 890025421, + "Guest_AZ-Parasaur-Undead-D": 1504371934, + "Guest_AZ-Pteranodon-Knight-D": 1127364049, + "Guest_AZ-StoneSkeletonKey-Ixcax-Cursedwing": 699239601, + "Guest_AZ-Pteranodon-Knight-E": 1127363921, + "Guest_AZ-Pteranodon-Knight-F": 1127363793, + "Guest_AZ-Pteranodon-Knight-A-PageEvent": 942589002, + "Guest_AZ-StoneSkeletonKey-Minion-Death": 311645584, + "Guest_AZ-Pteranodon-Knight-A": 1127364433, + "Guest_AZ-Raptor-Wraith-A": 585729247, + "Guest_AZ-Raptor-Undead-D": 893623689, + "Guest_G14-HS-Ifzt": 1914694612, + "Guest_AZ-Raptor-Warrior-A": 855749884, + "Guest_AZ-Raptor-Undead-C": 897293705, + "Guest_AZ-Raptor-Undead-B": 896769417, + "Guest_AZ-Raptor-Undead-F": 894672265, + "Guest_AZ-Raptor-Warrior-F": 872527100, + "Guest_AZ-Raptor-Warrior-H": 973190396, + "Guest_AZ-Tritops-Warrior-I": 1942669769, + "Guest_AZ-Tritops-Undead-H": 1215305911, + "Guest_AZ-Tritops-Undead-E": 1164974263, + "Guest_AZ-Tritops-SpkWarrior-A": 860850257, + "Guest_AZ-Tritops-SpkWarrior-B": 860862545, + "Guest_AZ-Tritops-Undead-F": 1181751479, + "Guest_AZ-Tritops-Warrior-K": 868927945, + "Guest_AZ-Tritops-Undead-G": 1198528695, + "Guest_AZ-Tritops-Mummy-A": 1912444877, + "Guest_AZ-Tritops-Warrior-G": 1278555704, + "Guest_AZ-Tritops-Undead-D": 1148197047, + "Guest_AZ-Tritops-Undead-A": 1097865399, + "Guest_AZ-Tritops-SpkChief-B": 2096319577, + "Guest_AZ-Tritops-Mummy-B": 1910872013, + "Guest_AZ-Tritops-Warrior-H": 1405798857, + "Guest_AZ-Dino-Undead-A": 508678670, + "Guest_AZ-Dino-Undead-B": 508679182, + "Guest_AZ-Dino-Undead-D": 508680206, + "Guest_KR_Dino_Undead_A": 1638800628, + "Guest_KR_Dino_Undead_Minion_A": 892450235, + "MNT_HayRideTruck": 75377404, + "MNT_ShadowSpiderForm": 1439860426, + "Transformation_BG_Draconian_Death": 794598804, + "PP_BabyOrca": 1056061090, + "Transformation_BG_Cyclops_Fire": 638854828, + "Transformation_BG_Fairy_Ice": 874078461, + "PP_SpriteLife": 1824998010, + "PP_Raccoon": 1107326808, + "PP_FireKitten": 593048189, + "MNT_SkeletalDuck": 1306273036, + "PP_VampireSquid": 431023109, + "PP_CottonCandy": 891201813, + "PP_ThreeHeadGoat": 1282096939, + "PP_EyeBot": 260189248, + "MNT_DeathBoat": 1444454568, + "MNT_Lemuria": 908974762, + "MNT_DeathBoat_B": 1444456538, + "MNT_DeathBoat_C": 1444456474, + "MNT_Spooky3": 1667775622, + "MNT_PresentBox": 122082000, + "MNT_Orca": 1726961653, + "Guest_LM_Golem_Steel_A_01": 19551853, + "Guest_LM_Golem_Steel_A_02": 36329069, + "Guest_LM_EyeBot_A_01_Death": 380508535, + "Guest_LM_EyeBot_A_01_Myth": 167840640, + "PP_ThreeHeadGoat_B": 1209286443, + "PP_ThreeHeadGoat_C": 1211383595, + "Guest_KR_Eel_Whirligig_A": 1062268734, + "Guest_KR_Goliath_Behemoth_A": 1231139987, + "Guest_KR_Goliath_Behemoth_C": 1231139995, + "Guest_KR_Goliath_Behemoth_D": 1231139975, + "Guest_KR_Goliath_Behemoth_E": 1231139971, + "Guest_KR_Goliath_Behemoth_H": 1231140023, + "Guest_KR_Goliath_Crusher_C": 1651720060, + "Guest_KR_Goliath_Crusher_D": 2106376324, + "Guest_KR_Goliath_Crusher_F": 1032634500, + "Guest_KR_Goliath_Crusher_G": 495763588, + "Guest_KR_Goliath_Crusher_K": 1651720059, + "Guest_AZ-Goliath-Crusher-A": 1874784966, + "Guest_AZ-Goliath-Crusher-B": 264172230, + "Guest_AZ-Goliath-Crusher-C": 801043142, + "Guest_AZ-Goliath-Crusher-D": 809569594, + "Guest_AZ-Goliath-Crusher-E": 272698682, + "Guest_HG_AKT_Butterfly_Time_A_25": 1788523059, + "Guest_HG_AKT_Butterfly_Time_A_50": 1130017331, + "Guest_HG_AKT_Butterfly_Time_A_75": 1809494579, + "Guest_HG_AKT_Butterfly_Time_A_100": 1113240099, + "Guest_HG_AKT_Butterfly_Time_A_130": 1515893283, + "MNT_DeathBoat_D": 1444456922, + "Guest_KR_RhinoBeetle_Sun_A_Bossfight": 47895417, + "Guest_KR_RhinoBeetle_Star_A": 1947510103, + "Guest_KR_RhinoBeetle_Moon_A": 1751275863, + "Guest_ME1_Clockwork_Marine_A": 1481452452, + "Guest_ME1_Clockwork_Marine_B": 1481452068, + "Guest_CC_GoldSkeletonKey_Lice_DeepSpawn_B": 1306132994, + "Guest_KR_DamdinBazar_A_Bossfight": 1333596311, + "Guest_DS-Minion-MAW2": 356796677, + "Guest_KH-Wyrmling-1": 116330513, + "Guest_KH-Wyrmling-20": 183439385, + "Guest_KH-Wyrmling-40": 317657113, + "Guest_KH-Wyrmling-60": 451874841, + "Guest_KH-Wyrmling-80": 586092569, + "Guest_PL_Polar_Bear_Solider_C": 1785662565, + "Guest_Skeleton-Silver-WCBoss-L01": 17766963, + "Guest_Banshee-Red-Elite-L24_B": 1902069117, + "Transformation_BG_WolfWarrior_Myth": 339098032, + "Transformation_BG_RatThief_Balance": 881728218, + "Transformation_BG_Colossus_Storm": 593527492, + "Transformation_BG_Elf_Life": 347405087, + "Transformation_BG_Minotaur_Ice": 1197752291, + "MNT_TRex_B": 660285500, + "PP_SpriteDark_Ice": 2036248504, + "MNT_RollingBall": 1658139390, + "Guest_LM_TRex_Base_A_03": 1378630657, + "Guest_LM_TRex_Base_A_04": 1378745345, + "Guest_LM_TRex_Base_A_05": 1378728961, + "Guest_LM_TRex_Base_A_01": 1378663425, + "Guest_LM_TRex_Base_A_02": 1378647041, + "Guest_LM_TRex_Cyborg_A_01": 151609741, + "Guest_LM_TRex_Cyborg_A_02": 168386957, + "Guest_LM_TRex_Cyborg_A_03": 185164173, + "Guest_LM_TRex_Cyborg_B_01": 151611277, + "Guest_LM_TRex_Cyborg_D_01": 151612301, + "Guest_LM_TRex_Cyborg_E_01": 151611789, + "Guest_LM_TRex_Cyborg_C_01": 151610765, + "Guest_LM_Draconian_Base_A_01": 1607373112, + "Guest_LM_EyeBot_B_01": 1085543056, + "Guest_LM_Drone_Eye_C_01": 916954037, + "Guest_LM_Drone_Eye_D_01": 1230529608, + "Guest_LM_Drone_Eye_D_02": 1230545992, + "Guest_LM_Drone_Eye_D_04": 1230578760, + "Guest_LM_Drone_Eye_D_03": 1230562376, + "Guest_LM_Drone_Eye_A_01": 916954038, + "Guest_LM_Drone_Eye_A_02": 916937654, + "Guest_LM_Drone_Eye_B_01": 1230529611, + "Guest_LM_Drone_Eye_D_05": 1230595144, + "Guest_LM_Drone_Eye_D_07": 1230627912, + "Guest_LM_Drone_Eye_D_08": 1230644296, + "Guest_LM_Drone_Eye_A_03": 916921270, + "Guest_LM_Drone_Eye_A_04": 916904886, + "Guest_LM_Drone_Eye_C_02": 916937653, + "Guest_LM_EyeBot_B_02": 1061940593, + "Guest_LM_EyeBot_B_03": 1085543055, + "Guest_LM_EyeBot_B_04": 1061940594, + "Guest_LM_Drone_Eye_C_03": 916921269, + "Guest_LM_Robot_Kit10_A_01": 199936400, + "Guest_LM_Colossus_Mander_A_01": 2107529026, + "Guest_LM_Robot_Future_A_01": 998840846, + "Guest_LM_Robot_FutureBIG_A_01": 340408568, + "Guest_LM_Robot_FutureBIG_A_02": 340396280, + "Guest_LM_Robot_FutureBIG_A_03": 340400376, + "Guest_LM_Robot_OldOne_A_01": 779070973, + "Guest_LM_Robot_OldOne_A_02": 1315941885, + "Guest_LM_Millipede_Centi_A_01": 168575797, + "Guest_LM_Millipede_Centi_A_03": 168583989, + "Guest_LM_Millipede_Centi_A_02": 168588085, + "Guest_LM_Millipede_Centi_A_04": 168563509, + "Guest_LM_Moth_Sorcerer_A_01": 228191136, + "Guest_LM_Boar_Barbarian_A_01": 1238634912, + "Guest_LM_Boar_Barbarian_A_02": 1238634528, + "Guest_LM_Boar_Barbarian_A_03": 1238634656, + "Guest_LM_Boar_Barbarian_A_04": 1238635296, + "Guest_LM_Boar_Barbarian_A_05": 1238635424, + "Guest_LM_Boar_Chief_A_01": 357051311, + "Guest_LM_Fungus_Humango_A_01": 1398460044, + "Guest_LM_Fungus_Humango_A_02": 1398460172, + "Guest_LM_Treant_Base_A_01": 1658172241, + "Guest_LM_GiantTree_EvilRoots_A_01": 282225934, + "Guest_LM_PA_GreenMan_A_01": 67705044, + "Guest_LM_Fungus_Humango_B_01": 1348128396, + "Guest_LM_Fungus_Humango_A_03": 1398460300, + "Guest_LM_Fungus_Man_C_01": 1648824156, + "Guest_LM_Fungus_Man_C_02": 1650397020, + "Guest_LM_Rhino_Zombie_A_01": 248513993, + "Guest_LM_Malughast_Base_01": 883820436, + "Guest_LM_Malughast_Base_02": 1420691348, + "Guest_LM_Lemur_HierarchF_H_04": 231562115, + "Guest_LM_Malughast_Base_03": 1957562260, + "Guest_LM_Malughast_Base_05": 1263663212, + "Guest_LM_Malughast_Base_06": 726792300, + "Guest_LM_Malughast_Base_08": 346949523, + "Guest_LM_Malughast_Base_09": 883820435, + "Guest_LM_Malughast_Base_04": 1800534124, + "Guest_LM_Minotaur_Skeleton_A_01": 1865122824, + "Guest_LM_Lemur_Wild_B_03": 1783764037, + "Guest_LM_Lemur_HierarchF_H_01": 231541635, + "Guest_LM_Lemur_HierarchF_H_02": 231553923, + "Guest_LM_Mander_Warrior_A_01": 1651245419, + "Guest_LM_Mander_Warrior_A_02": 1651245291, + "Guest_LM_Mander_Warrior_B_01": 1634468203, + "Guest_LM_Mander_Warrior_B_02": 1634468075, + "Guest_LM_Mander_Warrior_A_03": 1651245163, + "Guest_LM_Mander_Warrior_B_03": 1634467947, + "Guest_LM_Mander_Warrior_A_06": 1651245803, + "Guest_LM_Mander_Warrior_A_05": 1651245931, + "Guest_LM_Mander_Mummy_B_01": 1844111521, + "Guest_LM_Mander_Hero_B_01": 865113284, + "MNT_HolidayHippogriff": 938892112, + "MNT_Sabertooth_Ice": 1870381696, + "PP_FenrisWolf_Bantam": 776647759, + "MNT_JetPack": 1986300552, + "MNT_Scooter_F": 1005560708, + "PP_FossaKitten_A": 431748212, + "PP_Elfvis": 147991405, + "Guest_LM_Chicken_Hero_A_01": 1308728300, + "Guest_LM_Horse_Explorer_A_01": 434405482, + "Guest_LM_Duck_HeroineF_A_01": 133199186, + "Guest_LM_Crane_Hero_A_01": 204272548, + "Guest_LM_Deer_HeroineF_A_01": 1800374959, + "Guest_LM_Deer_Hero_A_01": 223109503, + "Guest_LM_Dog_Hero_A_01": 1434615064, + "PP_YearTiger": 777048708, + "MNT_Barrel": 3576425, + "MNT_Krampus": 404117611, + "PP_ChineseTigerCub": 1256032005, + "PP_Lemur": 565774155, + "PP_Robot": 1089075331, + "PP_Capybara": 451970762, + "Guest_LM_Ghoul_Base_A_01": 1822415945, + "Guest_LM_Lemur_HierarchF_H_03": 231549827, + "Guest_LM_Ghoul_Base_A_02": 1820843081, + "Guest_LM_Ghoul_Base_A_03": 1821367369, + "MNT_SpringSoF2022": 1685679511, + "MNT_WarElephant": 875015497, + "PP_Strix": 514230046, + "MNT_Beachball": 791896033, + "MNT_Blank": 633398131, + "MNT_CardboardFlier": 1646636689, + "MNT_LochMonster": 879660722, + "Transformation_BG_Krok_Death": 1395067182, + "Transformation_BG_Draconian_Fire": 1551581732, + "PP_Scotty": 1708580475, + "Guest_KR_Mice_Knight_A": 480101508, + "PP_Peacock": 1178721112, + "MNT_PoodleMoth": 975420235, + "PP_Hummingbird": 624666906, + "PP_WolfWarrior_Myth": 470737416, + "Guest_HG_UFD_Ghost_QueenF_A_100": 795323059, + "Guest_HG_UFD_Ghost_QueenF_A_50": 728230579, + "Guest_HG_UFD_Pirate_UndeadHighland_A_Balance_150": 201145133, + "Guest_HG_UFD_Pirate_UndeadHighland_A_Balance_100": 201144941, + "Guest_HG_UFD_Pirate_UndeadHighland_A_Balance_50": 201177701, + "Guest_HG_UFD_Pirate_UndeadHighland_A_Star_150": 1329885920, + "Guest_HG_UFD_Pirate_UndeadHighland_A_Star_100": 1304720096, + "Guest_HG_UFD_Pirate_UndeadHighland_A_Star_50": 1305768671, + "Guest_HG_UFD_Pirate_UndeadHighland_A_Shadow_150": 1263689971, + "Guest_HG_UFD_Pirate_UndeadHighland_A_Shadow_100": 1263689977, + "Guest_HG_UFD_Pirate_UndeadHighland_A_Shadow_50": 189949177, + "Guest_HG_UFD_Kelpie_Warrior_A_150": 54296095, + "Guest_HG_UFD_Kelpie_Warrior_A_100": 725384735, + "Guest_HG_UFD_Kelpie_Warrior_A_50": 708607503, + "Guest_HG_UFD_Pirate_UndeadHighland_B_150": 1099317831, + "Guest_HG_UFD_Pirate_UndeadHighland_B_100": 25576008, + "Guest_HG_UFD_Pirate_UndeadHighland_B_50": 159793864, + "Guest_HG_UFD_Ghost_QueenF_A_150": 795716275, + "PP_SpiderMinion": 557357331, + "MNT_Vines_Rainbow": 1587180338, + "MNT_YoungDrake": 1279496198, + "PP_Pet_Coconut": 444388490, + "DragonKI": 1490194214, + "PP_Sharkfish": 601628284, + "PP_MimicCake": 48071878, + "Guest_AQ-Bronze-Eagle": 375279744, + "Guest_Spider-Brown-L26": 2128680185, + "Guest_KR_Spider_Giant_D": 744401035, + "Guest_Wizard-Female-Band-Blue-R8": 1447486557, + "Guest_CC_Human_DSCrusaderF_A_01": 726538068, + "Guest_WC_Scarecrow_A_01": 867491011, + "Guest_WC_Banshee_A_01": 1433786463, + "Guest_WC_LostSoul_A_01": 796936146, + "PP_Fairy_Myth": 1117624344, + "PP_SpriteDark_Myth": 1884257976, + "BG_CyclopsLife_A": 944091673, + "Transformation_BG_NinjaPig_Storm": 2005137181, + "Transformation_BG_Fairy_Myth": 1880704188, + "Transformation_BG_Cyclops_Life": 638936708, + "Guest_AQ-Eagle-Praetorian": 1988013806, + "Guest_KM_BabyCarrot_A_01": 766239512, + "Guest_G14-DM-Gargoyle": 282898047, + "Guest_MR_Durvish_Sergeant_A_Boss_01": 1532609325, + "Guest_Cyclops-RedHelmet-KTBoss-L28": 2072371506, + "Guest_EM_Pig_Singer_A_01": 698597069, + "Guest_EM_Pig_Captain_A": 977505995, + "Guest_EM_Pig_Crewman_A": 465576459, + "PP_ChipmunkConductor": 1089819900, + "PP_LuckyCat": 1109326826, + "MNT_ImpCar": 1736092191, + "MNT_Book": 1547655078, + "MNT_JackoLantern": 649919658, + "MNT_Zheng": 742453108, + "MNT_Train": 413197899, + "MNT_Cerberus": 552686313, + "PP_Coconut": 1122741587, + "Transformation_Statue": 1153168084, + "Transformation_Nullity": 622504394, + "PP_Irk": 1825277392, + "Guest_Wyrmling-Fire-R8-1": 531485009, + "MNT_WolfLowPoly_A": 1947890962, + "MNT_WolfLowPoly_B": 1947825426, + "Transformation_BG_RatThief_Fire": 1169330235, + "Transformation_BG_WolfWarrior_Death": 159966683, + "Transformation_BG_Minotaur_Balance": 657855108, + "Transformation_BG_Draconian_Ice": 1907339814, + "Transformation_BG_Colossus_Myth": 1305894338, + "Transformation_NV_Penguin": 1757096851, + "Transformation_NV_Unicorn": 60447768, + "Transformation_NV_Monkey": 1379873688, + "Transformation_NV_Dog": 1961288968, + "PP_Wolf_Storm": 455227171, + "PP_WoodDuck": 1680912895, + "MNT_RockingHorse": 1205280059, + "MNT_SOF2022_Car": 219868812, + "PP_Buffaloon": 796152873, + "MNT_Steamboat": 1969530127, + "MNT_FelizNavidog": 847046394, + "PP_Mustache": 1571079379, + "Guest_DD-DS01-Skeleton-Pirate-20": 226826848, + "Guest_DD-DS01-Skeleton-Pirate-40": 201661024, + "Guest_DD-DS01-Skeleton-Pirate-60": 210049632, + "Guest_DD-DS01-Skeleton-Pirate-80": 251992672, + "Guest_DD-DS01-Skeleton-Pirate": 1994450336, + "Guest_DD-DS01-Shadow-Minion-Fire": 1074864956, + "Guest_DD-DS01-Shadow-Minion-Ice": 1841681214, + "Guest_DD-DS01-Shadow-Minion-Fire-20": 1074880881, + "Guest_DD-DS01-Shadow-Minion-Fire-40": 1074880945, + "Guest_DD-DS01-Shadow-Minion-Ice-20": 96850220, + "Guest_DD-DS01-Shadow-Minion-Ice-40": 96850218, + "Guest_DD-DS01-Shadow-Minion-Fire-60": 1074881009, + "Guest_DD-DS01-Shadow-Minion-Ice-60": 96850216, + "Guest_DD-DS01-Shadow-Minion-Fire-80": 1074880561, + "Guest_DD-DS01-Shadow-Minion-Ice-80": 96850214, + "Guest_SC-SpectreOfB-1": 1471950935, + "Guest_SC-SpectreOfB-20": 1471942759, + "Guest_SC-SpectreOfB-40": 1471942663, + "Guest_SC-SpectreOfB-60": 1471942695, + "Guest_SC-SpectreOfB-80": 1471942855, + "Guest_KH-Skeleton-Ice-60": 2108358962, + "Guest_KH-Skeleton-Ice-40": 2108391730, + "Guest_KH-Skeleton-Ice-20": 2108293426, + "Guest_KH-Skeleton-Ice-1": 2099953970, + "Guest_KH-Skeleton-Ice-80": 2108195122, + "Guest_KH-Undead-Caster-60": 1662604496, + "Guest_KH-Undead-Caster-40": 1661555920, + "Guest_KH-Undead-Caster-20": 1664701648, + "Guest_KH-Undead-Caster-1": 1931564240, + "Guest_KH-Undead-Caster-80": 1667847376, + "Guest_DD-PA01-DeadBeets": 1664999367, + "Guest_DD-PA01-DeadBeets-20": 1901453253, + "Guest_DD-PA01-DeadBeets-40": 2002116549, + "Guest_DD-PA01-DeadBeets-60": 1968562117, + "Guest_DD-PA01-DeadBeets-80": 2069225413, + "Guest_DD-PA01-Disparagus": 1865816461, + "Guest_DD-PA01-Disparagus-20": 573970895, + "Guest_DD-PA01-Disparagus-40": 499770929, + "Guest_DD-PA01-Disparagus-60": 1573512753, + "Guest_DD-PA01-Disparagus-80": 1647712718, + "Guest_DD-PA01-MeanestFlyTrap": 2001546861, + "Guest_DD-PA01-MeanestFlyTrap-20": 1936326253, + "Guest_DD-PA01-MeanestFlyTrap-40": 1936064109, + "Guest_DD-PA01-MeanestFlyTrap-60": 1935801965, + "Guest_DD-PA01-MeanestFlyTrap-80": 1937636973, + "Guest_HG-MD-MacDeath-20": 182639104, + "Guest_HG-MD-MacDeath-40": 182638080, + "Guest_HG-MD-MacDeath-60": 182637056, + "Guest_HG-MD-MacDeath-80": 182636032, + "Guest_HG-MD-MacDeath-100": 174252032, + "Guest_HG-MD-MacDeath-130": 174202880, + "Guest_HG_Sinbad_Skeleton_25": 494617874, + "Guest_HG_Sinbad_Skeleton_50": 42253050, + "Guest_HG_Sinbad_Skeleton_75": 1115994862, + "Guest_HG_Sinbad_Skeleton_100": 2105232646, + "Guest_HG_Sinbad_Skeleton_130": 2105232650, + "Guest_HG_Sinbad_Skeleton_25_02": 492722834, + "Guest_HG_Sinbad_Skeleton_50_02": 44148090, + "Guest_HG_Sinbad_Skeleton_75_02": 1117889902, + "Guest_HG_Sinbad_Skeleton_100_02": 2044247302, + "Guest_HG_Sinbad_Skeleton_130_02": 2044247306, + "Guest_DD-AV01-WyrmBoss": 1648677986, + "Guest_DD-AV01-WyrmBoss-20": 1926730850, + "Guest_DD-AV01-WyrmBoss-40": 1927779426, + "Guest_DD-AV01-WyrmBoss-60": 1928828002, + "Guest_DD-AV01-WyrmBoss-80": 1921487970, + "Guest_RH-Wyrm-Boss-01": 1027277645, + "Guest_RH-Wyrm-Boss-20": 1027277660, + "Guest_RH-Wyrm-Boss-40": 1027277663, + "Guest_RH-Wyrm-Boss-60": 1027277662, + "Guest_RH-Wyrm-Boss-80": 1027277657, + "Guest_HG_Sinbad_Wyrm_25": 1101443356, + "Guest_HG_Sinbad_Wyrm_50": 1101528860, + "Guest_HG_Sinbad_Wyrm_75": 1101445916, + "Guest_HG_Sinbad_Wyrm_100": 1093138204, + "Guest_HG_Sinbad_Wyrm_130": 1093089052, + "Guest_KH-Treant-1": 2001244331, + "Guest_KH-Treant-60": 1968148651, + "Guest_KH-Treant-40": 1968017579, + "Guest_KH-Treant-20": 1967886507, + "Guest_KH-Treant-80": 1967231147, + "Guest_DD-PA01-ForestGrump": 1969685870, + "Guest_DD-PA01-ForestGrump-20": 714666713, + "Guest_DD-PA01-ForestGrump-40": 714666689, + "Guest_DD-PA01-ForestGrump-60": 714666697, + "Guest_DD-PA01-ForestGrump-80": 714666737, + "Guest_DD-PA01-ForestNymphs": 227087348, + "Guest_DD-PA01-ForestNymphs-20": 227023552, + "Guest_DD-PA01-ForestNymphs-60": 227023040, + "Guest_DD-PA01-ForestNymphs-80": 227024832, + "Guest_SC-Pig-BalanceWizardA-1": 475456968, + "Guest_SC-Pig-BalanceWizardA-20": 477550024, + "Guest_SC-Pig-BalanceWizardA-40": 477541832, + "Guest_SC-Pig-BalanceWizardA-60": 477533640, + "Guest_SC-Pig-BalanceWizardA-80": 477525448, + "Guest_SC-Pig-BalanceWizardB-1": 475456964, + "Guest_SC-Pig-BalanceWizardB-20": 477550020, + "Guest_SC-Pig-BalanceWizardB-40": 477541828, + "Guest_SC-Pig-BalanceWizardB-60": 477533636, + "Guest_SC-Pig-BalanceWizardB-80": 477525444, + "Guest_SC-Pig-BalanceWizardC-1": 475456960, + "Guest_SC-Pig-BalanceWizardC-20": 477550016, + "Guest_SC-Pig-FireWizard-1": 2048176291, + "Guest_SC-Pig-FireWizard-20": 2031399073, + "Guest_SC-Pig-FireWizard-40": 2132062369, + "Guest_SC-Pig-FireWizard-60": 2098507937, + "Guest_SC-Pig-FireWizard-80": 1930735777, + "Guest_SC-Pig-IceWizardF-1": 1178687744, + "Guest_SC-Pig-IceWizardF-20": 1161910526, + "Guest_SC-Pig-IceWizardF-40": 1128356094, + "Guest_SC-Pig-IceWizardF-60": 1094801662, + "Guest_SC-Pig-IceWizardF-80": 1329682686, + "Guest_SC-Pig-MythWizard-1": 2048492725, + "Guest_SC-Pig-MythWizard-20": 2031715511, + "Guest_SC-Pig-MythWizard-40": 2132378807, + "Guest_SC-Pig-MythWizard-60": 2098824375, + "Guest_SC-Pig-MythWizard-80": 1931052215, + "Guest_SC-Pig-StormWizardF-1": 1743849420, + "Guest_SC-Pig-StormWizardF-20": 1743851464, + "Guest_SC-Pig-StormWizardF-40": 1743851488, + "Guest_SC-Pig-StormWizardF-60": 1743851480, + "Guest_SC-Pig-StormWizardF-80": 1743851504, + "Guest_KH-Pig-Bandit-Lord-1": 1080496628, + "Guest_KH-Pig-Bandit-Lord-20": 543625652, + "Guest_KH-Pig-Bandit-Lord-40": 530116172, + "Guest_KH-Pig-Bandit-Lord-60": 1603857996, + "Guest_KH-Pig-Bandit-Lord-80": 1617367475, + "Guest_KH-Pig-Bandit-Ninja-1": 1945100907, + "Guest_KH-Pig-Bandit-Ninja-20": 1945102951, + "Guest_KH-Pig-Bandit-Ninja-40": 1945102975, + "Guest_KH-Pig-Bandit-Ninja-60": 1945102967, + "Guest_KH-Pig-Bandit-Ninja-80": 1945102927, + "Guest_KH-Pig-War-Caster-1": 656859765, + "Guest_KH-Pig-War-Caster-20": 606528119, + "Guest_KH-Pig-War-Caster-40": 572973687, + "Guest_KH-Pig-War-Caster-60": 539419255, + "Guest_KH-Pig-War-Caster-80": 774300279, + "Guest_KH-Pig-War-Warrior-Boss-1": 16342355, + "Guest_KH-Pig-War-Warrior-Boss-20": 2143724205, + "Guest_KH-Pig-War-Warrior-Boss-40": 2118558381, + "Guest_KH-Pig-War-Warrior-Boss-60": 2126946989, + "Guest_KH-Pig-War-Warrior-Boss-80": 2101781165, + "Guest_SC-Pig-BalanceWizardC-40": 477541824, + "Guest_SC-Pig-BalanceWizardC-60": 477533632, + "Guest_SC-Pig-BalanceWizardC-80": 477525440, + "Guest_KH-Helephant-Death-20": 1109389719, + "Guest_KH-Helephant-Death-40": 2111835753, + "Guest_KH-Helephant-Death-60": 1038093929, + "Guest_KH-Helephant-Death-80": 35647896, + "Guest_KH-GreyOgre-Spider-1": 356368404, + "Guest_KH-GreyOgre-Spider-20": 1966981204, + "Guest_KH-GreyOgre-Spider-40": 1254244268, + "Guest_KH-GreyOgre-Spider-60": 180502444, + "Guest_KH-GreyOgre-Spider-80": 893239379, + "Guest_HG_Sinbad_Colossus_25": 1190802829, + "Guest_HG_Sinbad_Colossus_50": 1493551719, + "Guest_HG_Sinbad_Colossus_75": 419809907, + "Guest_HG_Sinbad_Colossus_100": 653933977, + "Guest_HG_Sinbad_Colossus_130": 653933973, + "Guest_NV_Dino_AberrantUndead_A_01": 2035087398, + "Guest_NV_Hellephant_Aberrant_A_01": 989522333, + "Guest_NV_Hellephant_Aberrant_A_02": 989522334, + "Guest_NV_BananaSpider_Base_A_01": 1585810541, + "Guest_NV_BananaSpider_Base_A_02": 1581616237, + "Guest_NV_BananaSpider_Base_A_03": 1577421933, + "Guest_NV_BananaSpider_Base_A_04": 1606782061, + "Guest_NV_BananaSpider_Base_A_05": 1602587757, + "Guest_NV_Wyrm_Aberrant_A_01": 16108415, + "Guest_NV_Monkey_Zombie_A_01": 1854775300, + "Guest_NV_Monkey_Zombie_A_02": 1854775304, + "Guest_NV_Monkey_Zombie_A_03": 1854775308, + "Guest_NV_Monkey_Zombie_A_04": 1854775312, + "MNT_Flag_Monster": 867940056, + "Guest_SKB_WY_DarkBramble_A_30": 2046798767, + "Guest_SKB_WY_DarkBramble_A_50": 2046797999, + "Guest_SKB_WY_DarkBramble_A_100": 2044701359, + "Guest_SKB_WY_DarkBramble_A_150": 2044721839, + "Guest_SKB_GH_Boar_A_30": 1547921275, + "Guest_SKB_WC_SpiritIgnorance_A_50": 1488876986, + "Guest_SKB_WC_SpiritIgnorance_A_100": 2025748410, + "Guest_SKB_WC_SpiritIgnorance_A_150": 2025748413, + "Guest_SKB_DS_Loremaster_A_50": 527751539, + "Guest_SKB_DS_Loremaster_A_100": 527817059, + "Guest_SKB_DS_Loremaster_A_150": 527817699, + "Guest_SKB_CL_Dan_A_50": 637418706, + "Guest_SKB_CL_Dan_A_60": 1510064941, + "Guest_SKB_CL_Dan_A_100": 637410512, + "Guest_SKB_CL_Dan_A_150": 637410432, + "Guest_SKB_AV_Spectre_A_50": 2104631195, + "Guest_SKB_AV_Spectre_A_100": 2102534041, + "Guest_SKB_AV_Spectre_A_150": 2018647961, + "Guest_SKB_MS_Samoorai_A_50": 2029641915, + "Guest_SKB_MS_Samoorai_A_100": 2096750843, + "Guest_SKB_MS_Samoorai_A_150": 587603717, + "Transformation_BG_Krok_StromTemplate": 1317694546, + "PP_ChineseRabbit": 382941643, + "PP_ParadeElf": 1036247808, + "MNT_HeartSwarm": 918199310, + "MNT_SpringSOF2023": 1417178519, + "Transformation_BG_Elf_Death2Template": 1606653101, + "MNT_GummyBunny_D": 775840224, + "Transformation_BG_Krok_Life2Template": 747486212, + "PP_Flame": 959186933, + "PP_YachtRock": 1500927358, + "PP_PirateYachtRock": 1227549100, + "PP_ChickenMonster": 1845706534, + "PP_SnowHoppers_B": 1496460038, + "PP_SnowHoppers_C": 1496457990, + "MNT_Oarfish": 29720265, + "PP_RingTailedCat": 993143427, + "MNT_Fanboat": 19347694, + "MNT_MiniSub": 298697910, + "PP_DumboOctopus": 966435639, + "PP_Glowbug_Balance": 1405529577, + "PP_Glowbug_Death": 405117107, + "PP_Glowbug_Fire": 651698987, + "PP_Glowbug_Ice": 2124926395, + "PP_Glowbug_Life": 601367299, + "PP_Glowbug_Myth": 592978024, + "PP_Glowbug_Storm": 61190446, + "PP_DumboOctopus_B": 968448823, + "PP_DumboOctopus_C": 968383287, + "PP_BananaSpider_01": 1074383522, + "PP_BananaSpider_02": 1080674978, + "PP_BananaSpider_03": 1078577826, + "Guest_HG_NM_BeardDragon_Base_C_01": 82913785, + "Guest_HG_NM_BeardDragon_Base_C_02": 82913786, + "Guest_HG_NM_BeardDragon_Base_C_03": 82913787, + "Guest_HG_NM_Glowbug_Base_C_01": 544959703, + "Guest_HG_NM_Glowbug_Base_C_02": 544955607, + "Guest_HG_NM_Glowbug_Base_C_03": 544951511, + "Guest_HG_NM_Glowbug_Base_C_04": 544947415, + "Guest_HG_NM_Glowbug_Base_C_05": 544943319, + "Guest_HG_NM_Glowbug_Base_C_06": 544939223, + "Guest_HG_NM_Glowbug_Base_C_07": 544935127, + "MNT_BouquetofFlowers": 1511180560, + "PP_Piggle_Rainbow": 91081383, + "MNT_Sabertooth_FlameSaber": 1949516909, + "Guest_HG_NM_BeardDragon_Base_A_01": 83175929, + "Guest_HG_NM_BeardDragon_Base_A_02": 83175930, + "Guest_HG_NM_BeardDragon_Base_A_03": 83175931, + "Guest_HG_NM_BeardDragon_Base_B_01": 83044857, + "Guest_HG_NM_BeardDragon_Base_B_02": 83044858, + "Guest_HG_NM_BeardDragon_Base_B_03": 83044859, + "Guest_HG_NM_Glowbug_Base_B_01": 8088791, + "Guest_HG_NM_Glowbug_Base_B_02": 8084695, + "Guest_HG_NM_Glowbug_Base_B_03": 8080599, + "Guest_HG_NM_Glowbug_Base_B_04": 8076503, + "Guest_HG_NM_Glowbug_Base_B_05": 8072407, + "Guest_HG_NM_Glowbug_Base_B_06": 8068311, + "Guest_HG_NM_Glowbug_Base_B_07": 8064215, + "Guest_HG_NM_Glowbug_Base_A_01": 1618701527, + "Guest_HG_NM_Glowbug_Base_A_02": 1618697431, + "Guest_HG_NM_Glowbug_Base_A_03": 1618693335, + "Guest_HG_NM_Glowbug_Base_A_04": 1618689239, + "Guest_HG_NM_Glowbug_Base_A_05": 1618685143, + "Guest_HG_NM_Glowbug_Base_A_06": 1618681047, + "Guest_HG_NM_Glowbug_Base_A_07": 1618676951, + "MNT_SummerSOF2023": 1636120912, + "PP_Cyclops_Fire": 7821755, + "PP_Death_Elf": 1535744155, + "PP_Newt": 1438123483, + "PP_Echidna": 735439358, + "MNT_Wombat": 580544786, + "Transformation_BG_NinjaPig_Balance": 1799661438, + "Transformation_BG_Cyclops_Ice": 647975824, + "Transformation_BG_Minotaur_Storm": 1005667041, + "Transformation_GR_Parasaur_Priest_Ice": 1101466351, + "Transformation_GR_Parasaur_Priest_Fire": 892193041, + "Transformation_GR_Parasaur_Priest_Storm": 1525882116, + "Transformation_GR_Parasaur_Priest_Balance": 1127637476, + "Guest_GR_AZ_Parasaur_Undead_B_01": 322587487, + "MNT_WitchCat": 1167097888, + "PP_RolyPoly": 578538330, + "PP_Capybara_B": 628131532, + "MNT_OutbackTruck": 1815527801, + "PP_PoodleSailor": 2137704795, + "MNT_PolarianCannon": 2103490826, + "PP_TazmanianDevil": 1773548765, + "Guest_SKB_AZ_Ixcax_A_100": 556560994, + "Guest_SKB_AZ_Ixcax_A_150": 556610146, + "Guest_SKB_AZ_Ixcax_A_50": 564951650, + "MNT_GhoulsShovel": 2035610946, + "PP_CrystalBdayDragon": 1897078804, + "PP_SunGobblerBall": 1522469440, + "PP_Sun_GreenGobbler": 1337690394, + "MNT_2P_AutumnTreant": 1063435527, + "PP_AutumnTreant": 561077291, + "MNT_FlyingMonkey": 490807393, + "PP_BabyPlantMonster": 2076646587, + "MNT_PlantCreature_A": 1802823265, + "Transformation_BG_Fairy_Fire": 2065252898, + "Transformation_BG_Krok_Myth": 277926564, + "Transformation_BG_RatThief_Life": 1167758651, + "Transformation_BG_Elf_Balance": 1628238937, + "Transformation_BG_Colossus_Death": 184392004, + "Transformation_FortressPod": 139738335, + "P_Wombat_POLYMORPH": 1132264953, + "PP_SharkWobbegong": 1994247222, + "PP_ChineseNYDragon": 1126999021, + "PP_JingleBellRock": 1076037919, + "PP_Krok_Mummy_Myth": 438487583, + "PP_Cyclops_Ice": 1476966187, + "MNT_OutbackTruckB": 1813299577, + "MNT_EvilSnowmanBall": 758818712, + "MNT_ThanksgivingGobbler": 1760011910, + "Guest_WL_Ghost_LostSoul_A_01": 1224111704, + "Guest_WL_Kangaroo_Drover_F_01": 2025562931, + "Guest_WL_Spider_WarriorMage_C_01": 1296557888, + "Guest_WL_Spider_WarriorMage_C_02": 1430775616, + "Guest_WL_Spider_WarriorMage_C_03": 1564993344, + "Guest_WL_Spider_WarriorMage_C_04": 1699211072, + "Guest_WL_Spider_WarriorMage_C_05": 1833428800, + "Guest_WL_Spider_WarriorMage_C_06": 1967646528, + "Guest_WL_Spider_WarriorMage_C_07": 2101864256, + "Guest_SKB_KR_Lightbane_A_100": 837930677, + "Guest_SKB_KR_Lightbane_A_160": 837930669, + "Guest_SKB_KR_Lightbane_A_50": 1309555019, + "Transformation_WL_Phantasmanian_DevilTemplate": 384891502, + "MNT_2P_LeaflessTreant": 623083386, + "PP_Minotaur_Ice": 700151737, + "MNT_Scooter_G": 737125252, + "Guest_WL_Frog_Owner_B_01": 767864686, + "MNT_SilentKnight": 646654812, + "Guest_WL_TRex_Base_A_01": 1842562033, + "Guest_WL_TRex_Base_B_01": 304921616, + "PP_Groundhog": 108643243, + "Guest_NV_Unicorn_Guard_C_04": 1845621, + "MNT_EmuPunk": 647315080, + "MNT_HeartBalloon": 798826551, + "PP_ValentineHoppers": 968693964, + "MNT_SpringSOF2024_Heckhound": 453640548, + "Guest_AQ-Centaur-Arion": 1856508139, + "Guest_AQ-Centaur-Artemis": 333294011, + "Guest_AQ-Horse-Sea": 724896200, + "Guest_KR_Horse_Warlord_A_Bossfight": 1302284326, + "Guest_KR_Horse_Warlord_A_BossfightSP": 1300726822, + "Guest_KR_Zebra_Thrall_A": 1250265667, + "Guest_KR_Zebra_Thrall_A_Boss_Minion": 345677011, + "Guest_KR_Zebra_Thrall_A_Gallery": 1520303483, + "Guest_KH-Gray-Horse-40": 1802231403, + "Guest_KH-Gray-Horse-20": 1802231307, + "Guest_G14-BP-Unicorn_Fencer_Boss": 1602044152, + "Guest_Horse-Merc-Brown-L37": 1831175255, + "Guest_Horse-Merc-Tan-L39": 1363854837, + "Guest_Horse-Merc-Tan-L39-1": 2085275127, + "Guest_Horse-Merc-Gray-MSBoss-L39": 1863452041, + "Guest_Horse-Merc-Gray-L39": 2039135564, + "Guest_Horse-Merc-Tan-L38": 1363330549, + "Guest_WC_Horse_Mercenary_Roberto": 891924774, + "Guest_ZF-Nathi-Yellowstripe-R11": 1505157721, + "Guest_ZF-TseTse-Main-R11-Boss": 114927854, + "Guest_ZF-TseTse-Elephant-R11": 894147273, + "Guest_ZF-Zebra-Impi-Raider-R11": 1378242919, + "Guest_ZF-Zebra-Warrior-Male-R10-1": 1791906265, + "Guest_ZF-Zebra-Senzan-Zebu-R10-Boss": 373712721, + "Guest_ZF-Zebra-Shaka-Zebu-R10-Boss": 662142985, + "Guest_ZF-Zebra-Warrior-Female-R10-02": 1507835670, + "Guest_ZF-Zebra-Warrior-Male-R10": 47075786, + "Guest_ZF-Zebra-Warrior-Male-R10-02": 1791906714, + "Guest_ZF-Zebra-Warrior-Male-R10-03": 1791906746, + "Guest_ZF-Zebra-Warrior-Male-R10-05": 1791906682, + "Guest_ZF-Zebra-Warrior-Male-R10-2": 1791906268, + "Guest_ZF_Zebra_Spectral_Guardian-R11": 431970996, + "Guest_CC_Horse_Apoc_A_01": 644668374, + "Guest_CC_Horse_Apoc_B_01": 644668390, + "Guest_CC_Horse_Apoc_C_01": 644668406, + "Guest_CC_Horse_Apoc_D_01": 644668294, + "Guest_CC_Horse_Apoc_D_02": 645192582, + "Guest_CC_Unicorn_CorsairF_B_01": 1378532506, + "Guest_CC_Unicorn_Duelist_B_01": 64891542, + "Guest_CC_Unicorn_Guard_B_01": 1075063242, + "Guest_CC_Unicorn_Guard_B_02": 1075063238, + "Guest_CC_Unicorn_Guard_B_03": 1075063234, + "Guest_NV_Horse_HordeSoldier_A_01": 504396960, + "Guest_NV_Horse_HordeSoldier_A_02": 101743776, + "Guest_NV_Horse_HordeOfficer_A_01": 343600992, + "Guest_NV_Horse_HordeSoldier_A_03": 235961504, + "Guest_NV_Horse_HordeOfficer_A_02": 209383264, + "Guest_NV_Horse_AberrantTungAk_A_01": 952263441, + "Guest_NV_Horse_AberrantTungAk_A_02": 952263537, + "Guest_NV_Horse_TungAk_B_01": 1194718672, + "Guest_NV_Horse_TungAk_B_02": 657847760, + "Guest_NV_Horse_HordeOfficer_B_01": 343596896, + "Guest_NV_Horse_HordeOfficer_B_02": 209379168, + "Guest_NV_Horse_TungAk_A_01": 1194669520, + "Guest_NV_Unicorn_Guard_C_01": 1845601, + "Guest_NV_Unicorn_Guard_A_01": 797025, + "Guest_NV_Unicorn_AberrantGuard_A_01": 739851573, + "Guest_NV_Unicorn_Guard_C_02": 1845613, + "Guest_NV_Unicorn_Guard_C_03": 1845609, + "Guest_NV_Unicorn_AberrantGuard_A_02": 739848501, + "Guest_NV_Unicorn_Guard_A_02": 797037, + "Guest_NV_Unicorn_AberrantGuard_A_03": 739849525, + "Guest_NV_Unicorn_AberrantGuard_A_04": 739846453, + "Guest_NV_Horse_HordeOfficer_A_03": 75165536, + "Guest_NV_Horse_HordeSoldier_A_04": 907050144, + "Guest_NV_Horse_HordeSoldier_A_05": 1041267872, + "Guest_NV_Horse_HordeSoldier_C_01": 504388768, + "Guest_HG_TRAIN_Horse_MustangFencerF_A_Balance_50": 871182987, + "Guest_HG_TRAIN_Horse_MustangFencerF_A_Balance_75": 871176715, + "Guest_HG_TRAIN_Horse_MustangFencerF_A_Life_100": 886489645, + "Guest_HG_TRAIN_Horse_MustangFencerF_A_Balance_25": 871177035, + "Guest_HG_TRAIN_Horse_MustangFencerF_A_Balance_100": 872231819, + "Guest_HG_TRAIN_Horse_MustangFencerF_A_Life_140": 1960231469, + "Guest_HG_TRAIN_Horse_MustangFencerF_B_100": 2089957067, + "Guest_HG_TRAIN_Horse_MustangFencerF_A_Life_25": 1700184589, + "Guest_HG_TRAIN_Horse_MustangFencerF_A_Life_50": 920044045, + "Guest_HG_TRAIN_Horse_MustangFencerF_A_Life_75": 1742127629, + "Guest_HG_TRAIN_Horse_MustangFencerF_A_Balance_140": 872223627, + "Guest_HG_TRAIN_Horse_MustangFencerF_B_50": 2089952970, + "Guest_HG_TRAIN_Horse_MustangFencerF_B_75": 57530654, + "Guest_HG_TRAIN_Horse_MustangFencerF_B_140": 2089957099, + "Guest_HG_TRAIN_Horse_MustangFencerF_B_25": 1131272477, + "Guest_LM_Horse_Explorer_A_01_Hard": 1711837140, + "Guest_WL_Unicorn_Guard_A_01": 1074538935, + "Guest_WL_Unicorn_CorsairF_E_01": 1378532603, + "Guest_WL_Unicorn_Warlord_A_01": 1321310496, + "Guest_KH-Gray-Horse-1": 1802239547, + "Guest_KH-Gray-Horse-60": 1802231371, + "Guest_KH-Gray-Horse-80": 1802231467, + "Transformation_BG_NinjaPig_Ice": 186026527, + "Transformation_BG_Cyclops_Storm": 897316984, + "PP_MinotaurBalance": 1344665951, + "PP_OrthusMoon": 1804503950, + "PP_CoolPineapple": 1149318906, + "PP_TwinkleStars": 766378011, + "PP_Scroll": 1613313091, + "PP_Colossus_Death": 40713075, + "PP_ColossusDeath": 530964029, + "PP_KILiveRock": 1975550570, + "MNT_Outrigger": 1417937299, + "MNT_BookWyrm": 2080129190, + "MNT_RacingSnail": 1996220963, + "MNT_UmbrellaCloud": 145762615, + "PP_PropellerCat": 2094718580, + "MNT_TRex_Shirt": 586746001, + "MNT_Swarm_Bee": 1625228695, + "MNT__CelestialMoon": 968360256, + "Guest_ME_Sinbad_IronSultan_150": 2001676223, + "Guest_ME_Sinbad_Cyclops_150": 1968943689, + "Guest_ME_Sinbad_Skeleton_150": 1031490819, + "Guest_ME_Sinbad_Colossus_150": 1727675806, + "Guest_ME_Sinbad_Skeleton_150_02": 970505475, + "Guest_ME_Sinbad_Wyrm_150": 19314443, + "Guest_ZF-Zebra-Inzinzebu-Bandit-R11": 430262550, + "Guest_ZF-Zebra-Warrior-Male-R10-04": 1791906650, + "PP_TwinkleStars_02": 805304347, + "PP_TwinkleStars_03": 803207195, + "PP_TwinkleStars_01": 799012891, + "Transformation_BodleianHarrow": 609627870, + "Guest_HG_Gryphon_OwlStatue_A_01_L170": 77756046, + "Guest_HG_Gryphon_OwlStatue_A_02_L170": 73561742, + "Guest_HG_Gryphon_OwlStatue_A_01_L100": 77752974, + "Guest_HG_Gryphon_OwlStatue_A_02_L100": 73558670, + "Guest_HG_Gryphon_OwlStatue_A_01_L50": 78277134, + "Guest_HG_Gryphon_OwlStatue_A_02_L50": 74082830, + "MNT_SummerSOF2024_JudgementWings": 1078163967, + "MNT_Pegasus_E": 131704054, + "MNT_PolarisHero": 665176426, + "PP_Duckana": 1128961578, + "PP_QueenBee": 833291695, + "Transformation_BG_Draconian_Balance": 2078940682, + "Transformation_BG_WolfWarrior_Fire": 1762248682, + "Transformation_BG_Minotaur_Death": 309090657, + "PP_WolfWarrior_Fire": 685685256, + "PP_WolfWarrior_Death": 1857202724, + "Guest_ME-GTAV01-WyrmBoss-150": 1482208618, + "Guest_ME_SpectreOfB_L150": 684104791, + "Guest_ME_MD_MacDeath_L150": 1128977615, + "Guest_ME_Pig_BalanceWizardA_L150": 959913724, + "Guest_ME_Pig_BalanceWizardB_L150": 959913712, + "Guest_ME_Pig_BalanceWizardC_L150": 959913716, + "Guest_ME_Pig_FireWizard_L150": 964392255, + "Guest_ME_Pig_IceWizardF_L150": 86941026, + "Guest_ME_Pig_MythWizard_L150": 964051241, + "Guest_ME_Pig_StormWizardF_L150": 2016383602, + "Guest_ME_Clock_Clockworker_L150": 1424569772, + "Guest_ME_Clock_ClockworkSpanner_L150": 1966824609, + "Guest_ME_Clock_Lugs_L150": 370290904, + "Guest_ME_Clock_Lucia_L150": 1857768409, + "MNT_EvilChair": 339577702, + "PP_Cyclops_Storm": 621464512, + "PP_Krokomummy_Life": 462432735, + "Transformation_CL_Rematch_Crustacean": 1686865207, + "Transformation_CL_Rematch_Protector": 1893951532, + "Transformation_CL_Rematch_Angler": 120412196, + "Transformation_CL_Rematch_Piscean": 1624106070, + "Transformation_Zebra_Template": 1900548493, + "Transformation_Zebra2_Template": 325099540, + "Transformation_Zebra3_Template": 325099524, + "Transformation_Zebra4_Template": 325099636, + "MNT_SweetSixteenBirthday": 1009398096, + "MNT_2P_TRex_Bones": 1618543266, + "MNT_SpringBumperCar": 1725007788, + "PP_WinterGoblin": 2025052443, + "PP_OnyxAnubis": 1552575189, + "PP_OttomanCat": 223541582, + "MNT_HolidayYeti": 780983974, + "MNT_IceSled": 979912604, + "MNT_TurtleDoves": 1850191638, + "MNT_KrokChariot": 559783620, + "MNT_Mustang": 1775949401, + "MNT_PumpkinBall": 382849054, + "Transformation_BG_Fairy_Storm": 836920873, + "Transformation_BG_Elf_Myth": 1506493664, + "Transformation_NinjaPig_Life": 816802847, + "Transformation_BG_Krok_Fire": 1060580712, + "Transformation_BG_Colossus_Balance": 1067963041, + "Transformation_BG_NinjaPig_Life": 441460895, + "PP_Penguin_03": 1623028104, + "Transformation_Duck_Librarian_B": 864067551, + "Transformation_Duck_Librarian_A": 859873247, + "Transformation_Duck_Adventurer": 194560769, + "Transformation_Gummy_Bunny_C": 1298087941, + "Transformation_Frog_Horned_A": 837201339, + "Transformation_Glowbug_Storm": 2096380446, + "Transformation_Marshmallow_Critter_A": 1036335317, + "Transformation_Snipe_Base_B": 232132109, + "Transformation_Snowball": 915248481, + "Transformation_Wombat_Base": 333435450, + "Transformation_Human_Malistaire": 1414887773, + "Transformation_Morganthe_E": 1745180054, + "Transformation_Spider_Grandfather": 1131773979, + "Transformation_Khrulhu_Dasein_B": 367878762, + "Transformation_Devourer_Base": 698770016, + "Transformation_Alien_Meteor": 638746168, + "Transformation_Nightmare_Malus": 704212821, + "Transformation_Daemon_Personal": 278266463, + "PP_ValentinesDay": 810003364, + "PP_BabyHippo": 422858138, + "PP_Aardwold": 1592150119, + "PP_Aardwold_C": 1902528613, + "MNT_Cobra": 472847981, + "MNT_Serpopard": 1629558909, + "MNT_Serpopard_B": 1629556867, + "MNT_Serpopard_C": 1629556931, + "PP_Fairy_Fire": 1847789544, + "MNT_Mustang_B": 1448793691, + "PP_FireElfMyth": 1933609060, + "MNT_KT-BoatRide": 1560860110, + "MNT_ShadowMagic": 2095978357, + "MNT_MardiGrasFloat_A": 1740674432, + "PP_ChineseNYSnake": 988201940, + "MNT_AnubisDog": 1995079956, + "PP_ShadowImp_A": 1604849432, + "PP_ShadowImp_B": 1604849438, + "PP_ShadowImp_C": 1604849436, + "MNT_ShadowMagic_B": 2093870965, + "MNT_ShadowMagic_C": 2093805429, + "Guest_KT_SE_Tritops_Warrior_I_01": 97516901, + "Guest_KT_SE_DS_Draconian_Model_01": 1916095079, + "Guest_KT_SE_Beetle_Scarab_C_01_L50": 1064004307, + "Guest_KT_SE_Roach_Warrior_C_03": 1872574203, + "Guest_KT_SE_Roach_Warrior_C_04": 1871918843, + "Guest_KT_SE_Roach_Warrior_C_05": 1871787771, + "Guest_KT_SE_Beetle_Scarab_C_01": 1353410759, + "Guest_KT_SE_Mander_Citizen_B_01_L50": 2044509396, + "Guest_KT_SE_Mander_CitizenF_B_01_L50": 164327682, + "Guest_KT_SE_Treant_Tormented_A_01": 1359800879, + "Guest_KT_SE_Treant_Base_A_01": 765512948, + "Guest_KT_SE_Mander_Citizen_F_D_05": 171244620, + "Guest_KT_SE_Mander_CitizenF_D_01": 163791037, + "Guest_KT_SE_Mander_CitizenF_D_02": 298008765, + "Guest_KT_SE_Mander_CitizenF_D_03": 432226493, + "Guest_KT_SE_Mander_CitizenF_D_04": 566444221, + "Guest_KT_SE_Mander_MummyF_A_01": 964349080, + "Guest_KT_SE_Mander_MummyF_A_02": 964480152, + "Guest_KT_SE_MC_Wraith_Model_01": 1101442118, + "Guest_KT_SE_Mander_CitizenF_B_02": 298000573, + "MNT_Wheelbarrow": 614248817, + "MNT_StubbornLlama": 221089074 + } } } }, - "832829043": { - "name": "class KhanDanceComponent", - "bases": [ - "HousingGameInterface", - "PropertyClass" - ], - "hash": 832829043, - "properties": {} - }, - "1205539906": { - "name": "class BadgeBehaviorTemplate", + "901447185": { + "name": "struct FriendData", "bases": [ - "BehaviorTemplate", "PropertyClass" ], - "hash": 1205539906, + "hash": 901447185, "properties": { - "m_behaviorName": { - "type": "std::string", + "m_gid": { + "type": "gid", "id": 0, "offset": 72, "flags": 7, @@ -577204,1286 +477042,594 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 3130754092 - } - } - }, - "2013431782": { - "name": "class ControlFreeChat", - "bases": [ - "ControlRichEdit", - "ControlEdit", - "Window", - "PropertyClass" - ], - "hash": 2013431782, - "properties": { - "m_sName": { + "hash": 267019404 + }, + "m_schoolName": { "type": "std::string", - "id": 0, + "id": 1, "offset": 80, - "flags": 135, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2306437263 - }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621225959 + "hash": 3385349572 }, - "m_Style": { - "type": "unsigned int", + "m_schoolRank": { + "type": "std::wstring", "id": 2, - "offset": 152, - "flags": 1048583, + "offset": 112, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152, - "FORCE_NUMERIC": 16777216, - "FORCE_ALPHA": 268435456, - "FORCE_ALPHANUMERIC": 536870912, - "FORCE_INTEGER": 33554432, - "FORCE_POSITIVE": 67108864, - "FORCE_RANGE": 134217728 - } + "hash": 3181478700 }, - "m_Flags": { - "type": "unsigned int", + "m_schoolLevel": { + "type": "int", "id": 3, - "offset": 156, - "flags": 1048583, + "offset": 144, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } + "hash": 10373914 }, - "m_Window": { - "type": "class Rect", + "m_showPVPOption": { + "type": "unsigned int", "id": 4, - "offset": 160, - "flags": 135, + "offset": 148, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3105139380 + "hash": 2052204093 }, - "m_fTargetAlpha": { - "type": "float", + "m_petTemplateID": { + "type": "unsigned int", "id": 5, - "offset": 212, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1809129834 - }, - "m_fDisabledAlpha": { - "type": "float", - "id": 6, - "offset": 216, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1389987675 - }, - "m_fAlpha": { - "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 482130755 - }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3623628394 - }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2102211316 - }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1846695875 - }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3389835433 - }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2547159940 - }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2587533771 - }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3091503757 - }, - "m_sText": { - "type": "std::wstring", - "id": 16, - "offset": 584, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2102642960 - }, - "m_nMaxLength": { - "type": "int", - "id": 17, - "offset": 620, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1183478416 - }, - "m_bPassword": { - "type": "bool", - "id": 18, - "offset": 624, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1604468200 - }, - "m_bLog": { - "type": "bool", - "id": 19, - "offset": 625, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 221687287 - }, - "m_previousNext": { - "type": "bool", - "id": 20, - "offset": 627, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 858581071 - }, - "m_nMaxLogSize": { - "type": "int", - "id": 21, - "offset": 712, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 779573899 - }, - "m_bEditing": { - "type": "bool", - "id": 22, - "offset": 616, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1243218553 - }, - "m_bAllowPaste": { - "type": "bool", - "id": 23, - "offset": 626, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1129316721 - }, - "m_nLogPosition": { - "type": "int", - "id": 24, - "offset": 704, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1120160767 - }, - "m_nCursor": { - "type": "int", - "id": 25, - "offset": 716, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1876782150 - }, - "m_nEditBegin": { - "type": "int", - "id": 26, - "offset": 720, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1066592403 - }, - "m_nEditEnd": { - "type": "int", - "id": 27, - "offset": 724, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1560905669 - }, - "m_sSavedText": { - "type": "std::wstring", - "id": 28, - "offset": 728, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2197953283 - }, - "m_fCursorBlinkSpeed": { - "type": "float", - "id": 29, - "offset": 760, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2232655228 - }, - "m_fCursorTimer": { - "type": "float", - "id": 30, - "offset": 764, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1929942748 - }, - "m_bCursorBlink": { - "type": "bool", - "id": 31, - "offset": 768, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 683441507 - }, - "m_fMinRange": { - "type": "double", - "id": 32, - "offset": 776, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3079523396 - }, - "m_fMaxRange": { - "type": "double", - "id": 33, - "offset": 784, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3876551814 - }, - "m_nPrecision": { - "type": "int", - "id": 34, - "offset": 792, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1404974196 - }, - "m_bDeleteOnFirstChar": { - "type": "bool", - "id": 35, - "offset": 618, - "flags": 135, + "offset": 152, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 902105643 + "hash": 817215071 } } }, - "835078234": { - "name": "class DuelModifierTemplate*", + "24534471": { + "name": "class Party*", "bases": [ - "CoreTemplate", + "Group", "PropertyClass" ], - "hash": 835078234, + "hash": 24534471, "properties": { - "m_behaviors": { - "type": "class BehaviorTemplate*", + "m_GroupID": { + "type": "gid", "id": 0, "offset": 72, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1197808594 - }, - "m_templateID": { - "type": "unsigned int", - "id": 1, - "offset": 96, - "flags": 33554463, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1286746870 - }, - "m_name": { - "type": "std::string", - "id": 2, - "offset": 104, - "flags": 134217759, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1717359772 - }, - "m_description": { - "type": "std::string", - "id": 3, - "offset": 136, - "flags": 8388639, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1649374815 - }, - "m_combatTriggers": { - "type": "std::string", - "id": 4, - "offset": 168, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 3023646200 - }, - "m_battlefieldEffects": { - "type": "class SharedPointer", - "id": 5, - "offset": 184, - "flags": 31, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1245973515 - }, - "m_gameEffects": { - "type": "class SharedPointer", - "id": 6, - "offset": 208, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1187421775 - }, - "m_combatRules": { - "type": "class SharedPointer", - "id": 7, - "offset": 240, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 3327225763 - }, - "m_noCrits": { - "type": "bool", - "id": 8, - "offset": 224, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1394430197 + "hash": 586506386 }, - "m_noTreasureCards": { - "type": "bool", - "id": 9, - "offset": 225, + "m_ChannelID": { + "type": "gid", + "id": 1, + "offset": 80, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1653008424 - }, - "m_bannedEquipment": { - "type": "int", - "id": 10, - "offset": 256, - "flags": 33554463, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 697457018 - }, - "m_bannedEquipmentSlots": { - "type": "std::string", - "id": 11, - "offset": 288, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2291474320 - }, - "m_bannedSchools": { - "type": "std::string", - "id": 12, - "offset": 320, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2417746270 - }, - "m_requiredSpellsAdjectives": { - "type": "std::string", - "id": 13, - "offset": 352, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2759718993 + "hash": 1585983742 }, - "m_bannedSpellsAdjectives": { - "type": "std::string", - "id": 14, - "offset": 384, + "m_MemberList": { + "type": "class SharedPointer", + "id": 2, + "offset": 88, "flags": 31, "container": "List", "dynamic": true, "singleton": false, - "pointer": false, - "hash": 2971738904 - }, - "m_leftDoodle": { - "type": "std::string", - "id": 15, - "offset": 744, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1523671421 - }, - "m_rightDoodle": { - "type": "std::string", - "id": 16, - "offset": 776, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2828021488 - }, - "m_onlyTreasureCards": { - "type": "bool", - "id": 17, - "offset": 226, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 752220749 - }, - "m_noShadowSpells": { - "type": "bool", - "id": 18, - "offset": 227, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2142185705 - }, - "m_noEnchantedTreasureCards": { - "type": "bool", - "id": 19, - "offset": 228, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1780948882 - }, - "m_noEnchantmentSpells": { - "type": "bool", - "id": 20, - "offset": 229, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1325982520 + "pointer": true, + "hash": 2864705424 }, - "m_noMaycastSpells": { - "type": "bool", - "id": 21, - "offset": 230, + "m_nMaxSize": { + "type": "unsigned int", + "id": 3, + "offset": 104, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1409034133 + "hash": 1265869948 }, - "m_enableSpellLevelRestrictions": { + "m_fromAdventureParty": { "type": "bool", - "id": 22, - "offset": 231, + "id": 4, + "offset": 128, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1272415451 + "hash": 940992997 }, - "m_ignoreSpellsPvPOnlyFlag": { - "type": "bool", - "id": 23, - "offset": 232, + "m_leaderGID": { + "type": "gid", + "id": 5, + "offset": 136, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1714276188 + "hash": 700505145 }, - "m_ignoreSpellsPvEOnlyFlag": { - "type": "bool", - "id": 24, - "offset": 233, + "m_questGID": { + "type": "gid", + "id": 6, + "offset": 144, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1691675729 + "hash": 331631550 }, - "m_newRulesFlag": { - "type": "bool", - "id": 25, - "offset": 736, + "m_goalGID": { + "type": "gid", + "id": 7, + "offset": 152, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2040511330 - }, - "m_ruleText": { - "type": "std::string", - "id": 26, - "offset": 448, - "flags": 8388639, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1754346744 - }, - "m_gameTypeText": { - "type": "std::string", - "id": 27, - "offset": 416, - "flags": 8388639, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1885530300 - }, - "m_combatTriggersDescText": { - "type": "std::string", - "id": 28, - "offset": 480, - "flags": 8388639, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2417600380 - }, - "m_battlefieldEffectsDescText": { - "type": "std::string", - "id": 29, - "offset": 512, - "flags": 8388639, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3278371679 - }, - "m_gameEffectsDescText": { - "type": "std::string", - "id": 30, - "offset": 544, - "flags": 8388639, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2965245049 - }, - "m_spellLevelRestrictionsDescText": { - "type": "std::string", - "id": 31, - "offset": 576, - "flags": 8388639, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3306238112 - }, - "m_combatRulesDescText": { - "type": "std::string", - "id": 32, - "offset": 608, - "flags": 8388639, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3064659424 - }, - "m_bannedEquipmentDescText": { - "type": "std::string", - "id": 33, - "offset": 640, - "flags": 8388639, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1681120031 - }, - "m_requiredSpellsDescText": { - "type": "std::string", - "id": 34, - "offset": 672, - "flags": 8388639, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2035585939 - }, - "m_bannedSpellsDescText": { - "type": "std::string", - "id": 35, - "offset": 704, - "flags": 8388639, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2010144922 + "hash": 976914927 } } }, - "1206218299": { - "name": "class GearVaultBehavior", + "460675308": { + "name": "class ClientUnPolymorphCinematicAction", "bases": [ - "GearVaultBehaviorBase", - "BehaviorInstance", + "UnPolymorphCinematicAction", + "CinematicAction", "PropertyClass" ], - "hash": 1206218299, + "hash": 460675308, "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", + "m_timeOffset": { + "type": "float", "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_gearList": { - "type": "std::string", - "id": 1, - "offset": 112, - "flags": 65567, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1498902582 - }, - "m_gearData": { - "type": "std::string", - "id": 2, - "offset": 128, - "flags": 551, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1498606388 + "hash": 2237098605 } } }, - "2013815018": { - "name": "class SharedPointer", + "901428785": { + "name": "class TourneyTokenItemsOption", "bases": [ - "GameEffectBase", + "ServiceOptionBase", "PropertyClass" ], - "hash": 2013815018, + "hash": 901428785, "properties": { - "m_currentTickCount": { - "type": "double", + "m_serviceName": { + "type": "std::string", "id": 0, - "offset": 80, - "flags": 63, + "offset": 72, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2533274692 + "hash": 2206028813 }, - "m_effectNameID": { - "type": "unsigned int", + "m_iconKey": { + "type": "std::string", "id": 1, - "offset": 96, - "flags": 63, + "offset": 168, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1204067144 + "hash": 2457138637 }, - "m_bIsOnPet": { - "type": "bool", + "m_displayKey": { + "type": "std::string", "id": 2, - "offset": 73, + "offset": 104, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 522593303 + "hash": 3023276954 }, - "m_originatorID": { - "type": "gid", + "m_serviceIndex": { + "type": "unsigned int", "id": 3, - "offset": 104, - "flags": 39, + "offset": 204, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1131810019 + "hash": 2103126710 }, - "m_itemSlotID": { - "type": "unsigned int", + "m_forceInteract": { + "type": "bool", "id": 4, - "offset": 112, - "flags": 63, + "offset": 200, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1895747595 - }, - "m_internalID": { - "type": "int", - "id": 5, - "offset": 92, - "flags": 63, + "hash": 1705789564 + } + } + }, + "1301335282": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1301335282, + "properties": { + "m_sellItemGID": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1643137924 + "hash": 1026273003 }, - "m_endTime": { + "m_quantity": { "type": "unsigned int", - "id": 6, - "offset": 88, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 716479635 - }, - "m_minionType": { - "type": "enum MinionType", - "id": 7, - "offset": 128, - "flags": 2097159, + "id": 1, + "offset": 80, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3186373083, - "enum_options": { - "MT_NONE": 0, - "MT_ACCOMPANY": 1, - "MT_MINION": 2, - "MT_MONSTER": 3 - } + "hash": 380617740 }, - "m_summonedTemplateID": { + "m_clientRequestID": { "type": "int", - "id": 8, - "offset": 132, - "flags": 31, + "id": 2, + "offset": 84, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1109386027 + "hash": 1118529839 } } }, - "834401291": { - "name": "class SharedPointer", + "24033763": { + "name": "class SharedPointer", "bases": [ - "CollisionBehaviorTemplate", - "BehaviorTemplate", "PropertyClass" ], - "hash": 834401291, + "hash": 24033763, + "properties": {} + }, + "1742000194": { + "name": "class GraphicalEventCurrency2*", + "bases": [ + "GraphicalSpell", + "Spell", + "PropertyClass" + ], + "hash": 1742000194, "properties": { - "m_behaviorName": { - "type": "std::string", + "m_templateID": { + "type": "unsigned int", "id": 0, - "offset": 72, - "flags": 7, + "offset": 128, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3130754092 + "hash": 1286746870 }, - "m_walkableCollisionFilename": { - "type": "std::string", + "m_enchantment": { + "type": "unsigned int", "id": 1, - "offset": 120, - "flags": 131079, + "offset": 80, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2223282859 + "hash": 2217886818 }, - "m_solidCollisionFilename": { - "type": "std::string", + "m_pipCost": { + "type": "class SharedPointer", "id": 2, - "offset": 152, - "flags": 131079, + "offset": 176, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 3292753187 + "pointer": true, + "hash": 3605704820 }, - "m_clickableCollisionFilename": { - "type": "std::string", + "m_regularAdjust": { + "type": "int", "id": 3, - "offset": 184, - "flags": 131335, + "offset": 192, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1964485570 + "hash": 1420453335 }, - "m_bAutoClickBox": { - "type": "bool", + "m_magicSchoolID": { + "type": "unsigned int", "id": 4, - "offset": 216, + "offset": 136, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 13289565 + "hash": 893146499 }, - "m_bDisableCollision": { - "type": "bool", + "m_accuracy": { + "type": "unsigned char", "id": 5, - "offset": 217, + "offset": 132, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2086036629 + "hash": 2273914939 }, - "m_bClientOnly": { + "m_treasureCard": { "type": "bool", "id": 6, - "offset": 218, - "flags": 7, + "offset": 197, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1918653686 + "hash": 1764879128 }, - "m_nSimulationMethod": { - "type": "enum PhysicsBehaviorTemplate::SimulationMethod", + "m_battleCard": { + "type": "bool", "id": 7, - "offset": 224, - "flags": 2097159, + "offset": 198, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1994289470, - "enum_options": { - "SM_CLIENT": 0, - "SM_SERVER_CLIENT": 1, - "__DEFAULT": "SM_CLIENT" - } + "hash": 1332843753 }, - "m_bEnableGravity": { + "m_itemCard": { "type": "bool", "id": 8, - "offset": 228, + "offset": 199, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2096165250, - "enum_options": { - "__DEFAULT": 1 - } + "hash": 1683654300 }, - "m_bEnableDamping": { + "m_sideBoard": { "type": "bool", "id": 9, - "offset": 229, + "offset": 200, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1865442172, - "enum_options": { - "__DEFAULT": 0 - } + "hash": 1897838368 }, - "m_bStartsEnabled": { - "type": "bool", + "m_spellID": { + "type": "unsigned int", "id": 10, - "offset": 230, - "flags": 7, + "offset": 204, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 648666209, - "enum_options": { - "__DEFAULT": 1 - } + "hash": 1697483258 }, - "m_fDampingX": { - "type": "float", + "m_leavesPlayWhenCastOverride": { + "type": "bool", "id": 11, - "offset": 232, - "flags": 7, + "offset": 216, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 360421173 + "hash": 874407398 }, - "m_fDampingY": { - "type": "float", + "m_cloaked": { + "type": "bool", "id": 12, - "offset": 236, + "offset": 196, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 360421174 + "hash": 7349510 }, - "m_fDampingZ": { - "type": "float", + "m_enchantmentSpellIsItemCard": { + "type": "bool", "id": 13, - "offset": 240, - "flags": 7, + "offset": 76, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 360421175 + "hash": 531590701 }, - "m_fAngDampingX": { - "type": "float", + "m_premutationSpellID": { + "type": "unsigned int", "id": 14, - "offset": 244, - "flags": 7, + "offset": 112, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 725080299 + "hash": 1530256370 }, - "m_fAngDampingY": { - "type": "float", + "m_enchantedThisCombat": { + "type": "bool", "id": 15, - "offset": 248, - "flags": 7, + "offset": 77, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 725080300 + "hash": 1895738923 }, - "m_fAngDampingZ": { - "type": "float", + "m_paramOverrides": { + "type": "class SharedPointer", "id": 16, - "offset": 252, - "flags": 7, + "offset": 224, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2061635599 + }, + "m_subEffectMeta": { + "type": "class SharedPointer", + "id": 17, + "offset": 240, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1944101106 + }, + "m_delayEnchantment": { + "type": "bool", + "id": 18, + "offset": 257, + "flags": 287, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 725080301 + "hash": 191336919 }, - "m_fCenterX": { - "type": "float", - "id": 17, - "offset": 256, - "flags": 7, + "m_PvE": { + "type": "bool", + "id": 19, + "offset": 264, + "flags": 287, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1763110710 + "hash": 269492350 }, - "m_fCenterY": { - "type": "float", - "id": 18, + "m_delayEnchantmentOrder": { + "type": "enum SpellEffect::kDelayOrder", + "id": 20, + "offset": 72, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2526055263, + "enum_options": { + "SpellEffect::kAnyOrder": 0, + "SpellEffect::kFirst": 1, + "SpellEffect::kSecond": 2 + } + }, + "m_roundAddedTC": { + "type": "int", + "id": 21, "offset": 260, - "flags": 7, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1763110711 + "hash": 112365451 }, - "m_fCenterZ": { - "type": "float", - "id": 19, - "offset": 264, + "m_secondarySchoolID": { + "type": "unsigned int", + "id": 22, + "offset": 304, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1763110712 + "hash": 2081206026 }, - "m_massShapes": { - "type": "class MassShapeTemplate*", - "id": 20, - "offset": 272, - "flags": 7, - "container": "List", - "dynamic": true, + "m_fusionState": { + "type": "enum Spell::FusionState", + "id": 23, + "offset": 308, + "flags": 31, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1089760892 + "pointer": false, + "hash": 835324539, + "enum_options": { + "FS_Invalid": 0, + "FS_Partial": 1, + "FS_Valid": 2 + } } } }, - "2013490957": { - "name": "class WidgetBackground*", + "459963810": { + "name": "class ObjectLocation", "bases": [ "PropertyClass" ], - "hash": 2013490957, + "hash": 459963810, "properties": { - "m_fBackgroundAlpha": { - "type": "float", + "m_templateID": { + "type": "unsigned int", "id": 0, "offset": 72, "flags": 7, @@ -578491,118 +477637,52 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 1164086307 + "hash": 1286746870 }, - "m_pTopLeftBackgroundAlphaMask": { - "type": "class SharedPointer", + "m_zoneDisplayName": { + "type": "std::string", "id": 1, "offset": 80, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2652729643 + "pointer": false, + "hash": 1962339438 }, - "m_pTopRightBackgroundAlphaMask": { - "type": "class SharedPointer", + "m_worldName": { + "type": "std::string", "id": 2, - "offset": 96, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2236264926 - }, - "m_pBottomLeftBackgroundAlphaMask": { - "type": "class SharedPointer", - "id": 3, "offset": 112, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3301927117 - }, - "m_pBottomRightBackgroundAlphaMask": { - "type": "class SharedPointer", - "id": 4, - "offset": 128, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2184945088 + "pointer": false, + "hash": 1846757476 }, - "m_pBottomBackgroundAlphaMask": { - "type": "class SharedPointer", - "id": 5, + "m_eventName": { + "type": "std::string", + "id": 3, "offset": 144, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2408122274 - }, - "m_pTopBackgroundAlphaMask": { - "type": "class SharedPointer", - "id": 6, - "offset": 160, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3440742656 - }, - "m_pLeftBackgroundAlphaMask": { - "type": "class SharedPointer", - "id": 7, - "offset": 176, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2348634648 - }, - "m_pRightBackgroundAlphaMask": { - "type": "class SharedPointer", - "id": 8, - "offset": 192, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2938548331 - }, - "m_pCenterBackgroundAlphaMask": { - "type": "class SharedPointer", - "id": 9, - "offset": 208, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3347258414 + "pointer": false, + "hash": 3493260286 } } }, - "834403912": { - "name": "class SharedPointer", + "459963650": { + "name": "class ObjectLocation*", "bases": [ "PropertyClass" ], - "hash": 834403912, + "hash": 459963650, "properties": { - "m_nPathID": { - "type": "gid", + "m_templateID": { + "type": "unsigned int", "id": 0, "offset": 72, "flags": 7, @@ -578610,10 +477690,10 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 214382368 + "hash": 1286746870 }, - "m_nNodeID": { - "type": "int", + "m_zoneDisplayName": { + "type": "std::string", "id": 1, "offset": 80, "flags": 7, @@ -578621,544 +477701,499 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 152152635, - "enum_options": { - "__DEFAULT": 4294967295 - } + "hash": 1962339438 }, - "m_nPriority": { - "type": "int", + "m_worldName": { + "type": "std::string", "id": 2, - "offset": 84, + "offset": 112, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1515251530, - "enum_options": { - "__DEFAULT": 100 - } + "hash": 1846757476 }, - "m_nChance": { - "type": "int", + "m_eventName": { + "type": "std::string", "id": 3, - "offset": 88, + "offset": 144, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1860748394, - "enum_options": { - "__DEFAULT": 50 - } + "hash": 3493260286 } } }, - "1207527840": { - "name": "class SharedPointer", + "901959605": { + "name": "class CastleMagicManager", "bases": [ - "MatchActor", "PropertyClass" ], - "hash": 1207527840, + "hash": 901959605, "properties": { - "m_nActorID": { - "type": "gid", + "m_castleMagicItemList": { + "type": "class SharedPointer", "id": 0, - "offset": 88, - "flags": 31, - "container": "Static", - "dynamic": false, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 663762476 + "pointer": true, + "hash": 3812758310 }, - "m_nLadderContainerID": { - "type": "gid", + "m_castleMagicTimerList": { + "type": "class SharedPointer", "id": 1, - "offset": 96, - "flags": 31, - "container": "Static", - "dynamic": false, + "offset": 152, + "flags": 7, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 782107042 + "pointer": true, + "hash": 2420724439 }, - "m_nTournamentNameID": { - "type": "unsigned int", + "m_randomNumberSetBuffer": { + "type": "std::string", "id": 2, - "offset": 104, - "flags": 31, + "offset": 360, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 471412886 + "hash": 1824603147 }, - "m_nTournamentID": { + "m_randomNumberSetIndexList": { "type": "gid", "id": 3, - "offset": 112, - "flags": 31, - "container": "Static", - "dynamic": false, + "offset": 416, + "flags": 7, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 105258688 + "hash": 678388482 }, - "m_leagueID": { - "type": "unsigned int", + "m_defaultCameraTime": { + "type": "float", "id": 4, - "offset": 124, - "flags": 31, + "offset": 528, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 692361645 + "hash": 617092724 }, - "m_seasonID": { - "type": "unsigned int", + "m_setPlayAsPet": { + "type": "bool", "id": 5, - "offset": 120, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 535260643 - }, - "m_nMatchNameID": { - "type": "unsigned int", - "id": 6, - "offset": 128, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 497033398 - }, - "m_nMatchID": { - "type": "gid", - "id": 7, - "offset": 136, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1050279648 - }, - "m_nTeamID": { - "type": "gid", - "id": 8, - "offset": 144, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 374990266 - }, - "m_status": { - "type": "int", - "id": 9, - "offset": 160, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 960781182 - }, - "m_costAdj": { - "type": "class MatchCostAdjustment", - "id": 10, - "offset": 200, - "flags": 31, + "offset": 533, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 913243331 - }, - "m_pLadder": { - "type": "class SharedPointer", - "id": 11, - "offset": 304, + "hash": 124615314 + } + } + }, + "1303701152": { + "name": "class PathMovementBehavior", + "bases": [], + "hash": 1303701152, + "properties": {} + }, + "24823859": { + "name": "class MatchActorUpdate*", + "bases": [ + "TournamentUpdate", + "PropertyClass" + ], + "hash": 24823859, + "properties": { + "m_pActor": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": true, - "hash": 2484171182 - }, - "m_bracketID": { - "type": "gid", - "id": 12, - "offset": 152, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 441272961 - }, - "m_overridingELO": { - "type": "int", - "id": 13, - "offset": 284, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1428697363 - }, - "m_matchKFactor": { - "type": "int", - "id": 14, - "offset": 288, + "hash": 1115051967 + } + } + }, + "1743150052": { + "name": "enum Material::Repeating", + "bases": [], + "hash": 1743150052, + "properties": {} + }, + "1302422311": { + "name": "enum ReqMinion::MinionType", + "bases": [], + "hash": 1302422311, + "properties": {} + }, + "24660019": { + "name": "class MatchActorUpdate", + "bases": [ + "TournamentUpdate", + "PropertyClass" + ], + "hash": 24660019, + "properties": { + "m_pActor": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 773340305 - }, - "m_userID": { - "type": "gid", - "id": 15, + "pointer": true, + "hash": 1115051967 + } + } + }, + "1743036804": { + "name": "class SharedPointer", + "bases": [ + "GameEffectBase", + "PropertyClass" + ], + "hash": 1743036804, + "properties": { + "m_currentTickCount": { + "type": "double", + "id": 0, "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1037989700 - }, - "m_matchMakingRangeForMatches": { - "type": "unsigned int", - "id": 16, - "offset": 320, - "flags": 31, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1193045098 + "hash": 2533274692 }, - "m_maxMatchMakingRangeForMatches": { + "m_effectNameID": { "type": "unsigned int", - "id": 17, - "offset": 324, - "flags": 31, + "id": 1, + "offset": 96, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1279540944 + "hash": 1204067144 }, - "m_allowRangeToExceedMaxForMatches": { + "m_bIsOnPet": { "type": "bool", - "id": 18, - "offset": 328, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1260448226 - }, - "m_matchCrownsCost": { - "type": "int", - "id": 19, - "offset": 280, + "id": 2, + "offset": 73, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1094489596 + "hash": 522593303 }, - "m_machineID": { + "m_originatorID": { "type": "gid", - "id": 20, - "offset": 336, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 281396698 - }, - "m_tier": { - "type": "int", - "id": 21, - "offset": 344, - "flags": 31, + "id": 3, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 219884238 + "hash": 1131810019 }, - "m_rank": { - "type": "int", - "id": 22, - "offset": 348, - "flags": 31, + "m_itemSlotID": { + "type": "unsigned int", + "id": 4, + "offset": 112, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 219803942 + "hash": 1895747595 }, - "m_rating": { + "m_internalID": { "type": "int", - "id": 23, - "offset": 352, - "flags": 31, + "id": 5, + "offset": 92, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 899783871 + "hash": 1643137924 }, - "m_levelBand": { - "type": "int", - "id": 24, - "offset": 356, + "m_endTime": { + "type": "unsigned int", + "id": 6, + "offset": 88, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2097286567 - }, - "m_enteredQueue": { - "type": "int", - "id": 25, - "offset": 376, - "flags": 31, + "hash": 716479635 + } + } + }, + "460467022": { + "name": "struct std::pair,class std::allocator >,unsigned int>", + "bases": [], + "hash": 460467022, + "properties": {} + }, + "1301969510": { + "name": "class SharedPointer", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1301969510, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 638238406 + "hash": 223437287 }, - "m_isSubscriber": { - "type": "bool", - "id": 26, - "offset": 428, + "m_publicItemList": { + "type": "class OldWizardEquippedItemInfo*", + "id": 1, + "offset": 112, "flags": 31, - "container": "Static", - "dynamic": false, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 952325795 - }, - "m_meetBracketBadgeRequirnments": { - "type": "bool", - "id": 27, - "offset": 429, + "pointer": true, + "hash": 2226122424 + } + } + }, + "1742404070": { + "name": "class SharedPointer", + "bases": [ + "GameEffectInfo", + "PropertyClass" + ], + "hash": 1742404070, + "properties": { + "m_effectName": { + "type": "std::string", + "id": 0, + "offset": 72, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 438139258 + "hash": 2029161513 }, - "m_1v1": { - "type": "bool", - "id": 28, - "offset": 430, - "flags": 31, + "m_lookupIndex": { + "type": "int", + "id": 1, + "offset": 104, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 269458571 - }, - "m_streak": { - "type": "int", - "id": 29, - "offset": 360, - "flags": 31, + "hash": 1626623948 + } + } + }, + "902660173": { + "name": "class ClientDerbyAffectEffects", + "bases": [ + "DerbyAffectEffects", + "DerbyEffect", + "PropertyClass" + ], + "hash": 902660173, + "properties": { + "m_buffType": { + "type": "enum DerbyTalentBuffType", + "id": 0, + "offset": 92, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 961375108 + "hash": 1149251982, + "enum_options": { + "Buff": 0, + "Debuff": 1, + "Neither": 2 + } }, - "m_matches": { - "type": "int", - "id": 30, - "offset": 364, - "flags": 31, + "m_kTarget": { + "type": "enum DerbyTargetType", + "id": 1, + "offset": 96, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1757638687 + "hash": 1807803351, + "enum_options": { + "kTargetInFront": 0, + "kTargetBehind": 1, + "kTargetFirst": 2, + "kTargetSelf": 3, + "kTargetAll": 4, + "kTargetLast": 5 + } }, - "m_lastFight": { + "m_nDuration": { "type": "int", - "id": 31, - "offset": 368, + "id": 2, + "offset": 104, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 91176384 + "hash": 1110167982 }, - "m_PVPHistoryStr": { - "type": "std::string", - "id": 32, - "offset": 384, - "flags": 31, + "m_effectID": { + "type": "unsigned int", + "id": 3, + "offset": 88, + "flags": 24, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1498439420 + "hash": 2347630439 }, - "m_maxCritHit": { - "type": "float", - "id": 33, - "offset": 416, - "flags": 31, + "m_imageFilename": { + "type": "std::string", + "id": 4, + "offset": 112, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2225327348 + "hash": 2813328063 }, - "m_maxBlockCrit": { - "type": "float", - "id": 34, - "offset": 420, + "m_iconIndex": { + "type": "unsigned int", + "id": 5, + "offset": 144, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 135865530 + "hash": 1265133262 }, - "m_shadowPipRating": { - "type": "float", - "id": 35, - "offset": 424, - "flags": 31, + "m_soundOnActivate": { + "type": "std::string", + "id": 6, + "offset": 152, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 507126123 + "hash": 1956929714 }, - "m_optInOut": { + "m_soundOnTarget": { "type": "std::string", - "id": 36, - "offset": 168, - "flags": 31, + "id": 7, + "offset": 184, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3013935453 + "hash": 3444214056 }, - "m_playerTimeDraw": { - "type": "bool", - "id": 37, - "offset": 431, - "flags": 31, + "m_targetParticleEffect": { + "type": "std::string", + "id": 8, + "offset": 216, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 447636221 + "hash": 3048234723 }, - "m_pvpStatus": { - "type": "unsigned char", - "id": 38, - "offset": 432, - "flags": 31, + "m_overheadMessage": { + "type": "std::string", + "id": 9, + "offset": 248, + "flags": 8388639, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 773570858 + "hash": 1701018190 }, - "m_gender": { - "type": "short", - "id": 39, - "offset": 434, + "m_requirements": { + "type": "class RequirementList", + "id": 10, + "offset": 280, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 564443897 + "hash": 2840988582 }, - "m_level": { + "m_nNumBuffs": { "type": "int", - "id": 40, - "offset": 436, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 801285362 - }, - "m_nameBlob": { - "type": "std::string", - "id": 41, - "offset": 440, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3058206907 - }, - "m_sSchool": { - "type": "std::string", - "id": 42, - "offset": 472, + "id": 11, + "offset": 376, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1846342998 + "hash": 1860427310 }, - "m_timeLeft": { + "m_nNumDebuffs": { "type": "int", - "id": 43, - "offset": 508, + "id": 12, + "offset": 380, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1315288020 + "hash": 637090007 } } }, - "1207026682": { - "name": "class WhirlyBurlyBehaviorTemplate*", + "902409505": { + "name": "class Slot_Node_FXDef", "bases": [ - "BehaviorTemplate", "PropertyClass" ], - "hash": 1207026682, + "hash": 902409505, "properties": { - "m_behaviorName": { + "m_slotName": { "type": "std::string", "id": 0, "offset": 72, @@ -579167,61 +478202,109 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 3130754092 - } - } - }, - "2014314318": { - "name": "class MapInfoRequirementsList*", - "bases": [ - "PropertyClass" - ], - "hash": 2014314318, - "properties": { - "m_mapInfoRequirementsList": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, + "hash": 2819781566 + }, + "m_nodeName": { + "type": "std::string", + "id": 1, + "offset": 104, "flags": 7, - "container": "List", - "dynamic": true, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3607089954 + }, + "m_fxDef": { + "type": "class SharedPointer", + "id": 2, + "offset": 136, + "flags": 7, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": true, - "hash": 1745192089 + "hash": 1171176403 } } }, - "1207026362": { - "name": "class WhirlyBurlyBehaviorTemplate", + "25128045": { + "name": "class SharedPointer", "bases": [ - "BehaviorTemplate", + "LootInfo", + "LootInfoBase", "PropertyClass" ], - "hash": 1207026362, + "hash": 25128045, "properties": { - "m_behaviorName": { - "type": "std::string", + "m_lootType": { + "type": "enum LootInfo::LOOT_TYPE", "id": 0, "offset": 72, - "flags": 7, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3130754092 + "hash": 1591891442, + "enum_options": { + "LOOT_TYPE_NONE": 0, + "LOOT_TYPE_GOLD": 1, + "LOOT_TYPE_MANA": 2, + "LOOT_TYPE_ITEM": 3, + "LOOT_TYPE_TREASURE_CARD": 4, + "LOOT_TYPE_MAGIC_XP": 5, + "LOOT_TYPE_ADD_SPELL": 6, + "LOOT_TYPE_MAX_HEALTH": 7, + "LOOT_TYPE_MAX_GOLD": 8, + "LOOT_TYPE_MAX_MANA": 9, + "LOOT_TYPE_MAX_POTION": 10, + "LOOT_TYPE_TRAINING_POINTS": 11, + "LOOT_TYPE_RECIPE": 12, + "LOOT_TYPE_CRAFTING_SLOT": 13, + "LOOT_TYPE_REAGENT": 14, + "LOOT_TYPE_PETSNACK": 15, + "LOOT_TYPE_GARDENING_XP": 16, + "LOOT_TYPE_PET_XP": 17, + "LOOT_TYPE_TREASURE_TABLE": 18, + "LOOT_TYPE_ARENA_POINTS": 19, + "LOOT_TYPE_ARENA_BONUS_POINTS": 20, + "LOOT_TYPE_GROUP": 21, + "LOOT_TYPE_FISHING_XP": 22, + "LOOT_TYPE_EVENT_CURRENCY_1": 24, + "LOOT_TYPE_EVENT_CURRENCY_2": 25, + "LOOT_TYPE_PVP_CURRENCY": 26, + "LOOT_TYPE_PVP_CURRENCY_BONUS": 27, + "LOOT_TYPE_PVP_TOURNEY_CURRENCY": 28, + "LOOT_TYPE_PVP_TOURNEY_CURRENCY_BONUS": 29, + "LOOT_TYPE_FURNITURE_ESSENCE": 30 + } + }, + "m_experience": { + "type": "int", + "id": 1, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 759357570 } } }, - "835974133": { - "name": "class SharedPointer", + "460684575": { + "name": "class ClientChangeActorStateCinematicAction", "bases": [ - "BehaviorTemplate", + "ChangeActorStateCinematicAction", + "ActorCinematicAction", + "CinematicAction", "PropertyClass" ], - "hash": 835974133, + "hash": 460684575, "properties": { - "m_behaviorName": { - "type": "std::string", + "m_timeOffset": { + "type": "float", "id": 0, "offset": 72, "flags": 7, @@ -579229,21 +478312,21 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 3130754092 + "hash": 2237098605 }, - "m_autoAdd": { - "type": "bool", + "m_actor": { + "type": "std::string", "id": 1, - "offset": 121, + "offset": 80, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2077986357 + "hash": 2285866132 }, - "m_autoRemove": { - "type": "bool", + "m_newState": { + "type": "std::string", "id": 2, "offset": 120, "flags": 7, @@ -579251,1198 +478334,1253 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 665701306 - }, - "m_allowedQuests": { - "type": "std::string", - "id": 3, - "offset": 128, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1695271656 - }, - "m_allowedInZones": { - "type": "bool", - "id": 4, - "offset": 160, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 195607873 - }, - "m_zoneList": { - "type": "std::string", - "id": 5, - "offset": 168, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2171104787 - }, - "m_otherNpcsToReplace": { - "type": "std::string", - "id": 6, - "offset": 184, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 3637554352 - }, - "m_dontSpawnIfNpcIsPresent": { - "type": "std::string", - "id": 7, - "offset": 200, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 3130923110 - }, - "m_questEffectTemplate": { - "type": "class SharedPointer", - "id": 8, - "offset": 216, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3397272317 + "hash": 2153420230 } } }, - "835078258": { - "name": "class DuelModifierTemplate", + "902055523": { + "name": "class BasePetMorphManager*", "bases": [ - "CoreTemplate", "PropertyClass" ], - "hash": 835078258, + "hash": 902055523, "properties": { - "m_behaviors": { - "type": "class BehaviorTemplate*", + "m_totalCostMin": { + "type": "unsigned int", "id": 0, "offset": 72, "flags": 7, - "container": "Vector", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1197808594 + "pointer": false, + "hash": 496624814 }, - "m_templateID": { + "m_totalCostMax": { "type": "unsigned int", "id": 1, - "offset": 96, - "flags": 33554463, + "offset": 76, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1286746870 + "hash": 496624560 }, - "m_name": { - "type": "std::string", + "m_totalRarityMin": { + "type": "unsigned int", "id": 2, - "offset": 104, - "flags": 134217759, + "offset": 80, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1717359772 + "hash": 1549157264 }, - "m_description": { - "type": "std::string", + "m_totalRarityMax": { + "type": "unsigned int", "id": 3, - "offset": 136, - "flags": 8388639, + "offset": 84, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1649374815 + "hash": 1549157010 }, - "m_combatTriggers": { - "type": "std::string", + "m_statDataMin": { + "type": "unsigned int", "id": 4, - "offset": 168, - "flags": 31, - "container": "List", - "dynamic": true, + "offset": 88, + "flags": 7, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 3023646200 + "hash": 988659687 }, - "m_battlefieldEffects": { - "type": "class SharedPointer", + "m_statDataMax": { + "type": "unsigned int", "id": 5, - "offset": 184, - "flags": 31, - "container": "Vector", - "dynamic": true, + "offset": 92, + "flags": 7, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1245973515 + "pointer": false, + "hash": 988659433 }, - "m_gameEffects": { - "type": "class SharedPointer", + "m_wowDataMin": { + "type": "unsigned int", "id": 6, - "offset": 208, - "flags": 31, - "container": "List", - "dynamic": true, + "offset": 96, + "flags": 7, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1187421775 + "pointer": false, + "hash": 1289909672 }, - "m_combatRules": { - "type": "class SharedPointer", + "m_wowDataMax": { + "type": "unsigned int", "id": 7, - "offset": 240, - "flags": 31, - "container": "List", - "dynamic": true, + "offset": 100, + "flags": 7, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3327225763 + "pointer": false, + "hash": 1289909418 }, - "m_noCrits": { - "type": "bool", + "m_pedigreeDataMin": { + "type": "unsigned int", "id": 8, - "offset": 224, - "flags": 31, + "offset": 104, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1394430197 + "hash": 1947586064 }, - "m_noTreasureCards": { - "type": "bool", + "m_pedigreeDataMax": { + "type": "unsigned int", "id": 9, - "offset": 225, - "flags": 31, + "offset": 108, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1653008424 + "hash": 1947585810 }, - "m_bannedEquipment": { - "type": "int", + "m_statsWeight": { + "type": "float", "id": 10, - "offset": 256, - "flags": 33554463, - "container": "List", - "dynamic": true, + "offset": 112, + "flags": 7, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 697457018 + "hash": 1028083822 }, - "m_bannedEquipmentSlots": { - "type": "std::string", + "m_wowWeight": { + "type": "float", "id": 11, - "offset": 288, - "flags": 31, - "container": "List", - "dynamic": true, + "offset": 116, + "flags": 7, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 2291474320 + "hash": 1781950908 }, - "m_bannedSchools": { - "type": "std::string", + "m_pedigreeWeight": { + "type": "float", "id": 12, - "offset": 320, - "flags": 31, - "container": "List", - "dynamic": true, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 2417746270 + "hash": 2192332068 }, - "m_requiredSpellsAdjectives": { - "type": "std::string", + "m_kioskCombatTalentCostMin": { + "type": "int", "id": 13, - "offset": 352, - "flags": 31, - "container": "List", + "offset": 128, + "flags": 7, + "container": "Vector", "dynamic": true, "singleton": false, "pointer": false, - "hash": 2759718993 + "hash": 2086730582 }, - "m_bannedSpellsAdjectives": { - "type": "std::string", + "m_kioskCombatTalentCostGrowth": { + "type": "int", "id": 14, - "offset": 384, - "flags": 31, - "container": "List", + "offset": 152, + "flags": 7, + "container": "Vector", "dynamic": true, "singleton": false, "pointer": false, - "hash": 2971738904 + "hash": 1600144109 }, - "m_leftDoodle": { - "type": "std::string", + "m_kioskDerbyTalentCostMin": { + "type": "int", "id": 15, - "offset": 744, - "flags": 131103, - "container": "Static", - "dynamic": false, + "offset": 176, + "flags": 7, + "container": "Vector", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 1523671421 + "hash": 787626614 }, - "m_rightDoodle": { - "type": "std::string", + "m_kioskDerbyTalentCostGrowth": { + "type": "int", "id": 16, - "offset": 776, - "flags": 131103, - "container": "Static", - "dynamic": false, + "offset": 200, + "flags": 7, + "container": "Vector", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 2828021488 + "hash": 1995353613 }, - "m_onlyTreasureCards": { - "type": "bool", + "m_inPersonCombatTalentCostMin": { + "type": "int", "id": 17, - "offset": 226, - "flags": 31, - "container": "Static", - "dynamic": false, + "offset": 224, + "flags": 7, + "container": "Vector", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 752220749 + "hash": 337785603 }, - "m_noShadowSpells": { - "type": "bool", + "m_inPersonCombatTalentCostGrowth": { + "type": "int", "id": 18, - "offset": 227, - "flags": 31, - "container": "Static", - "dynamic": false, + "offset": 248, + "flags": 7, + "container": "Vector", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 2142185705 + "hash": 168359802 }, - "m_noEnchantedTreasureCards": { - "type": "bool", + "m_inPersonDerbyTalentCostMin": { + "type": "int", "id": 19, - "offset": 228, - "flags": 31, - "container": "Static", - "dynamic": false, + "offset": 272, + "flags": 7, + "container": "Vector", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 1780948882 + "hash": 409251971 }, - "m_noEnchantmentSpells": { - "type": "bool", + "m_inPersonDerbyTalentCostGrowth": { + "type": "int", "id": 20, - "offset": 229, - "flags": 31, - "container": "Static", - "dynamic": false, + "offset": 296, + "flags": 7, + "container": "Vector", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 1325982520 + "hash": 64783610 }, - "m_noMaycastSpells": { - "type": "bool", + "m_kioskPedigreeMin": { + "type": "int", "id": 21, - "offset": 230, - "flags": 31, + "offset": 320, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1409034133 + "hash": 1416396228 }, - "m_enableSpellLevelRestrictions": { - "type": "bool", + "m_kioskCombatDivisor": { + "type": "int", "id": 22, - "offset": 231, - "flags": 31, + "offset": 324, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1272415451 + "hash": 1325329457 }, - "m_ignoreSpellsPvPOnlyFlag": { - "type": "bool", + "m_kioskCombatExponent": { + "type": "int", "id": 23, - "offset": 232, - "flags": 31, + "offset": 328, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1714276188 + "hash": 268917794 }, - "m_ignoreSpellsPvEOnlyFlag": { - "type": "bool", + "m_kioskDerbyDivisor": { + "type": "int", "id": 24, - "offset": 233, - "flags": 31, + "offset": 332, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1691675729 + "hash": 1909936977 }, - "m_newRulesFlag": { - "type": "bool", + "m_kioskDerbyExponent": { + "type": "int", "id": 25, - "offset": 736, - "flags": 31, + "offset": 336, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2040511330 + "hash": 233613122 }, - "m_ruleText": { - "type": "std::string", + "m_inPersonPedigreeMin": { + "type": "int", "id": 26, - "offset": 448, - "flags": 8388639, + "offset": 340, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1754346744 + "hash": 769349745 }, - "m_gameTypeText": { - "type": "std::string", + "m_inPersonCombatDivisor": { + "type": "int", "id": 27, - "offset": 416, - "flags": 8388639, + "offset": 344, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1885530300 + "hash": 1066346014 }, - "m_combatTriggersDescText": { - "type": "std::string", + "m_inPersonCombatExponent": { + "type": "int", "id": 28, - "offset": 480, - "flags": 8388639, + "offset": 348, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2417600380 + "hash": 312398767 }, - "m_battlefieldEffectsDescText": { - "type": "std::string", + "m_inPersonDerbyDivisor": { + "type": "int", "id": 29, - "offset": 512, - "flags": 8388639, + "offset": 352, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3278371679 + "hash": 2032239518 }, - "m_gameEffectsDescText": { - "type": "std::string", + "m_inPersonDerbyExponent": { + "type": "int", "id": 30, - "offset": 544, - "flags": 8388639, + "offset": 356, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2965245049 + "hash": 2122113327 }, - "m_spellLevelRestrictionsDescText": { - "type": "std::string", + "m_petLendsLevelDivisor": { + "type": "int", "id": 31, - "offset": 576, - "flags": 8388639, + "offset": 408, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3306238112 + "hash": 574571025 }, - "m_combatRulesDescText": { + "m_balancePetLendLoot": { "type": "std::string", "id": 32, - "offset": 608, - "flags": 8388639, - "container": "Static", - "dynamic": false, + "offset": 416, + "flags": 7, + "container": "Vector", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 3064659424 + "hash": 1766917643 }, - "m_bannedEquipmentDescText": { + "m_deathPetLendLoot": { "type": "std::string", "id": 33, - "offset": 640, - "flags": 8388639, - "container": "Static", - "dynamic": false, + "offset": 440, + "flags": 7, + "container": "Vector", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 1681120031 + "hash": 2869638987 }, - "m_requiredSpellsDescText": { + "m_firePetLendLoot": { "type": "std::string", "id": 34, - "offset": 672, - "flags": 8388639, - "container": "Static", - "dynamic": false, + "offset": 464, + "flags": 7, + "container": "Vector", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 2035585939 + "hash": 2059692267 }, - "m_bannedSpellsDescText": { + "m_icePetLendLoot": { "type": "std::string", "id": 35, - "offset": 704, - "flags": 8388639, - "container": "Static", - "dynamic": false, + "offset": 488, + "flags": 7, + "container": "Vector", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 2010144922 - } - } - }, - "2015100750": { - "name": "class MapInfoRequirementsList", - "bases": [ - "PropertyClass" - ], - "hash": 2015100750, - "properties": { - "m_mapInfoRequirementsList": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, + "hash": 3354513750 + }, + "m_lifePetLendLoot": { + "type": "std::string", + "id": 36, + "offset": 512, "flags": 7, - "container": "List", + "container": "Vector", "dynamic": true, "singleton": false, - "pointer": true, - "hash": 1745192089 + "pointer": false, + "hash": 2516355429 + }, + "m_mythPetLendLoot": { + "type": "std::string", + "id": 37, + "offset": 536, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 3612618343 + }, + "m_stormPetLendLoot": { + "type": "std::string", + "id": 38, + "offset": 560, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2262680698 } } }, - "1207306741": { - "name": "class SharedPointer", + "1303386237": { + "name": "class SharedPointer", "bases": [ - "Window", "PropertyClass" ], - "hash": 1207306741, + "hash": 1303386237, "properties": { - "m_sName": { + "m_category": { "type": "std::string", "id": 0, - "offset": 80, - "flags": 135, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2306437263 + "hash": 2682050233 }, - "m_Children": { - "type": "class SharedPointer", + "m_events": { + "type": "class SharedPointer", "id": 1, "offset": 112, - "flags": 65671, - "container": "Vector", + "flags": 7, + "container": "List", "dynamic": true, "singleton": false, "pointer": true, - "hash": 2621225959 + "hash": 716105444 }, - "m_Style": { - "type": "unsigned int", + "m_penalties": { + "type": "class SharedPointer", "id": 2, - "offset": 152, - "flags": 1048583, - "container": "Static", - "dynamic": false, + "offset": 128, + "flags": 7, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "SCALE_CHILDREN": 2, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "FOCUS_LOCKED": 64, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152 - } - }, - "m_Flags": { - "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 1048583, + "pointer": true, + "hash": 1631054690 + } + } + }, + "1743889188": { + "name": "class WizItemLocations", + "bases": [ + "PropertyClass" + ], + "hash": 1743889188, + "properties": { + "m_itemType": { + "type": "enum WizItemLocations::eItemType", + "id": 0, + "offset": 72, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 967851578, + "hash": 3482173907, "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 + "shop": 0, + "quest": 1, + "boss": 2, + "gardening": 3, + "goldChest": 4 } - }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, - "flags": 135, + } + } + }, + "29620807": { + "name": "class std::list >", + "bases": [], + "hash": 29620807, + "properties": {} + }, + "1743741015": { + "name": "class SharedPointer", + "bases": [ + "CameraController", + "PropertyClass" + ], + "hash": 1743741015, + "properties": {} + }, + "462211931": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 462211931, + "properties": { + "m_goalCount": { + "type": "int", + "id": 0, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3105139380 + "hash": 774266758 }, - "m_fTargetAlpha": { - "type": "float", - "id": 5, - "offset": 212, - "flags": 135, + "m_projectID": { + "type": "unsigned int", + "id": 1, + "offset": 76, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1809129834 + "hash": 1263221425 }, - "m_fDisabledAlpha": { - "type": "float", - "id": 6, - "offset": 216, - "flags": 135, + "m_displayMultiplier": { + "type": "int", + "id": 2, + "offset": 96, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1389987675 + "hash": 239852119 }, - "m_fAlpha": { - "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, + "m_endTime": { + "type": "unsigned int", + "id": 3, + "offset": 100, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 482130755 + "hash": 716479635 }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, + "m_currentDay": { + "type": "unsigned int", + "id": 4, + "offset": 104, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3623628394 + "pointer": false, + "hash": 2006571726 }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, + "m_multiplier": { + "type": "int", + "id": 5, + "offset": 108, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2102211316 + "hash": 759714273 }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, + "m_isEnding": { + "type": "bool", + "id": 6, + "offset": 112, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1846695875 + "hash": 1289717828 }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, + "m_parameter": { + "type": "std::string", + "id": 7, + "offset": 120, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3389835433 - }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, + "hash": 3122239292 + } + } + }, + "902412577": { + "name": "class Slot_Node_FXDef*", + "bases": [ + "PropertyClass" + ], + "hash": 902412577, + "properties": { + "m_slotName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2547159940 + "hash": 2819781566 }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, + "m_nodeName": { + "type": "std::string", + "id": 1, + "offset": 104, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2587533771 + "hash": 3607089954 }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, + "m_fxDef": { + "type": "class SharedPointer", + "id": 2, + "offset": 136, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 3091503757 + "pointer": true, + "hash": 1171176403 } } }, - "2015042446": { - "name": "class SharedPointer", + "1304342073": { + "name": "class std::list >", + "bases": [], + "hash": 1304342073, + "properties": {} + }, + "27477940": { + "name": "class SharedPointer", "bases": [ - "ControlButton", - "Window", + "BehaviorTemplate", "PropertyClass" ], - "hash": 2015042446, + "hash": 27477940, "properties": { - "m_sName": { + "m_behaviorName": { "type": "std::string", "id": 0, - "offset": 80, - "flags": 135, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2306437263 + "hash": 3130754092 }, - "m_Children": { - "type": "class SharedPointer", + "m_yaw": { + "type": "float", "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2621225959 + "pointer": false, + "hash": 357256328 }, - "m_Style": { - "type": "unsigned int", + "m_pitch": { + "type": "float", "id": 2, - "offset": 152, - "flags": 1048583, + "offset": 124, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152, - "POPDOWN_SIBLINGS": 67108864, - "DISABLE_CHILDREN": 134217728, - "HIDE_SIBLINGS": 268435456, - "POPUP_ON_HOVER": 536870912 - } + "hash": 896371695 }, - "m_Flags": { - "type": "unsigned int", + "m_roll": { + "type": "float", "id": 3, - "offset": 156, - "flags": 1048583, + "offset": 128, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } + "hash": 310020272 }, - "m_Window": { - "type": "class Rect", + "m_rotate": { + "type": "bool", "id": 4, - "offset": 160, - "flags": 135, + "offset": 132, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3105139380 + "hash": 918859426 }, - "m_fTargetAlpha": { - "type": "float", + "m_bounce": { + "type": "bool", "id": 5, - "offset": 212, - "flags": 135, + "offset": 133, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1809129834 + "hash": 292742671 }, - "m_fDisabledAlpha": { - "type": "float", + "m_textureIndex": { + "type": "int", "id": 6, - "offset": 216, - "flags": 135, + "offset": 136, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1389987675 + "hash": 1723520995 }, - "m_fAlpha": { - "type": "float", + "m_textureFilename": { + "type": "std::string", "id": 7, - "offset": 208, - "flags": 65671, + "offset": 144, + "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 482130755 + "hash": 2208648365 }, - "m_pWindowStyle": { - "type": "class SharedPointer", + "m_cameraOffsetX": { + "type": "float", "id": 8, - "offset": 232, - "flags": 135, + "offset": 176, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3623628394 + "pointer": false, + "hash": 1515912895 }, - "m_sHelp": { - "type": "std::wstring", + "m_cameraOffsetY": { + "type": "float", "id": 9, - "offset": 248, - "flags": 4194439, + "offset": 180, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2102211316 + "hash": 1515912896 }, - "m_sScript": { - "type": "std::string", + "m_cameraOffsetZ": { + "type": "float", "id": 10, - "offset": 352, - "flags": 135, + "offset": 184, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1846695875 - }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, + "hash": 1515912897 + } + } + }, + "461650270": { + "name": "class GoldLootInfo", + "bases": [ + "LootInfo", + "LootInfoBase", + "PropertyClass" + ], + "hash": 461650270, + "properties": { + "m_lootType": { + "type": "enum LootInfo::LOOT_TYPE", + "id": 0, + "offset": 72, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3389835433 + "hash": 1591891442, + "enum_options": { + "LOOT_TYPE_NONE": 0, + "LOOT_TYPE_GOLD": 1, + "LOOT_TYPE_MANA": 2, + "LOOT_TYPE_ITEM": 3, + "LOOT_TYPE_TREASURE_CARD": 4, + "LOOT_TYPE_MAGIC_XP": 5, + "LOOT_TYPE_ADD_SPELL": 6, + "LOOT_TYPE_MAX_HEALTH": 7, + "LOOT_TYPE_MAX_GOLD": 8, + "LOOT_TYPE_MAX_MANA": 9, + "LOOT_TYPE_MAX_POTION": 10, + "LOOT_TYPE_TRAINING_POINTS": 11, + "LOOT_TYPE_RECIPE": 12, + "LOOT_TYPE_CRAFTING_SLOT": 13, + "LOOT_TYPE_REAGENT": 14, + "LOOT_TYPE_PETSNACK": 15, + "LOOT_TYPE_GARDENING_XP": 16, + "LOOT_TYPE_PET_XP": 17, + "LOOT_TYPE_TREASURE_TABLE": 18, + "LOOT_TYPE_ARENA_POINTS": 19, + "LOOT_TYPE_ARENA_BONUS_POINTS": 20, + "LOOT_TYPE_GROUP": 21, + "LOOT_TYPE_FISHING_XP": 22, + "LOOT_TYPE_EVENT_CURRENCY_1": 24, + "LOOT_TYPE_EVENT_CURRENCY_2": 25, + "LOOT_TYPE_PVP_CURRENCY": 26, + "LOOT_TYPE_PVP_CURRENCY_BONUS": 27, + "LOOT_TYPE_PVP_TOURNEY_CURRENCY": 28, + "LOOT_TYPE_PVP_TOURNEY_CURRENCY_BONUS": 29, + "LOOT_TYPE_FURNITURE_ESSENCE": 30 + } }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, + "m_goldAmount": { + "type": "int", + "id": 1, + "offset": 80, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2547159940 - }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, + "hash": 754429876 + } + } + }, + "27322414": { + "name": "class ResAsyncScript*", + "bases": [ + "Result", + "PropertyClass" + ], + "hash": 27322414, + "properties": { + "m_script": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1513510520 + "hash": 2438918928 }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, + "m_startEvent": { + "type": "std::string", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 2587533771 + "hash": 2150353611 }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, + "m_endEvent": { + "type": "std::string", + "id": 2, + "offset": 136, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3091503757 - }, - "m_bToggle": { - "type": "bool", - "id": 16, - "offset": 608, - "flags": 135, + "hash": 3112700596 + } + } + }, + "26817632": { + "name": "class WhirlyBurlyKioskBehavior*", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 26817632, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2071810903 - }, - "m_bButtonDown": { + "hash": 223437287 + } + } + }, + "1743987492": { + "name": "class WizItemLocations*", + "bases": [ + "PropertyClass" + ], + "hash": 1743987492, + "properties": { + "m_itemType": { + "type": "enum WizItemLocations::eItemType", + "id": 0, + "offset": 72, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3482173907, + "enum_options": { + "shop": 0, + "quest": 1, + "boss": 2, + "gardening": 3, + "goldChest": 4 + } + } + } + }, + "903447185": { + "name": "class BackpackBuddyEquipmentOptions", + "bases": [ + "PropertyClass" + ], + "hash": 903447185, + "properties": { + "m_includeHats": { "type": "bool", - "id": 17, - "offset": 609, - "flags": 135, + "id": 0, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 840041705 + "hash": 692971815 }, - "m_sLabel": { - "type": "std::wstring", - "id": 18, - "offset": 616, - "flags": 4194439, + "m_includeRobes": { + "type": "bool", + "id": 1, + "offset": 73, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2207009163 + "hash": 1323347506 }, - "m_labelOffset": { - "type": "class Rect", - "id": 19, - "offset": 832, - "flags": 135, + "m_includeBoots": { + "type": "bool", + "id": 2, + "offset": 74, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1990646723 + "hash": 1304387422 }, - "m_pButton": { - "type": "class SharedPointer", - "id": 20, - "offset": 656, - "flags": 135, + "m_includeWands": { + "type": "bool", + "id": 3, + "offset": 75, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1543855875 + "pointer": false, + "hash": 1328787028 }, - "m_HotKey": { - "type": "unsigned int", - "id": 21, - "offset": 672, - "flags": 135, + "m_includeAthames": { + "type": "bool", + "id": 4, + "offset": 76, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1631553409 + "hash": 1385638394 }, - "m_Color": { - "type": "class Color", - "id": 22, - "offset": 676, - "flags": 262279, + "m_includeAmulets": { + "type": "bool", + "id": 5, + "offset": 77, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1753714077 + "hash": 1127494706 }, - "m_bCursorOver": { + "m_includeRings": { "type": "bool", - "id": 23, - "offset": 689, - "flags": 135, + "id": 6, + "offset": 78, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 283981103 + "hash": 1323145018 }, - "m_bAbortWhenCursorNotOver": { + "m_includeDecks": { "type": "bool", - "id": 24, - "offset": 706, - "flags": 135, + "id": 7, + "offset": 79, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 325405258 + "hash": 1306386529 }, - "m_bHotKeyDown": { + "m_includeElixirs": { "type": "bool", - "id": 25, - "offset": 680, - "flags": 135, + "id": 8, + "offset": 80, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 616989185 - }, - "m_fTime": { - "type": "float", - "id": 26, - "offset": 684, - "flags": 135, + "hash": 1945468375 + } + } + }, + "1306888271": { + "name": "class DerbyForceLaneChange*", + "bases": [ + "DerbyEffect", + "PropertyClass" + ], + "hash": 1306888271, + "properties": { + "m_buffType": { + "type": "enum DerbyTalentBuffType", + "id": 0, + "offset": 92, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 883746156 + "hash": 1149251982, + "enum_options": { + "Buff": 0, + "Debuff": 1, + "Neither": 2 + } }, - "m_bGreyed": { - "type": "bool", - "id": 27, - "offset": 688, - "flags": 135, + "m_kTarget": { + "type": "enum DerbyTargetType", + "id": 1, + "offset": 96, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1566556053 + "hash": 1807803351, + "enum_options": { + "kTargetInFront": 0, + "kTargetBehind": 1, + "kTargetFirst": 2, + "kTargetSelf": 3, + "kTargetAll": 4, + "kTargetLast": 5 + } }, - "m_fMaxScale": { - "type": "float", - "id": 28, - "offset": 692, - "flags": 135, + "m_nDuration": { + "type": "int", + "id": 2, + "offset": 104, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2070186635 + "hash": 1110167982 }, - "m_fScaleSpeed": { - "type": "float", - "id": 29, - "offset": 696, - "flags": 135, + "m_effectID": { + "type": "unsigned int", + "id": 3, + "offset": 88, + "flags": 24, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1457135702 + "hash": 2347630439 }, - "m_bUseDropShadow": { - "type": "bool", - "id": 30, - "offset": 704, - "flags": 135, + "m_imageFilename": { + "type": "std::string", + "id": 4, + "offset": 112, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 93063037 + "hash": 2813328063 }, - "m_bUseOutline": { - "type": "bool", - "id": 31, - "offset": 705, - "flags": 135, + "m_iconIndex": { + "type": "unsigned int", + "id": 5, + "offset": 144, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 744292994 + "hash": 1265133262 }, - "m_pGreyedState": { - "type": "class SharedPointer", - "id": 32, - "offset": 768, - "flags": 135, + "m_soundOnActivate": { + "type": "std::string", + "id": 6, + "offset": 152, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2703352263 + "pointer": false, + "hash": 1956929714 }, - "m_pNormalState": { - "type": "class SharedPointer", - "id": 33, - "offset": 752, - "flags": 135, + "m_soundOnTarget": { + "type": "std::string", + "id": 7, + "offset": 184, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1887909808 + "pointer": false, + "hash": 3444214056 }, - "m_pHighlightedState": { - "type": "class SharedPointer", - "id": 34, - "offset": 784, - "flags": 135, + "m_targetParticleEffect": { + "type": "std::string", + "id": 8, + "offset": 216, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2200177608 + "pointer": false, + "hash": 3048234723 }, - "m_pSelectedState": { - "type": "class SharedPointer", - "id": 35, - "offset": 800, - "flags": 135, + "m_overheadMessage": { + "type": "std::string", + "id": 9, + "offset": 248, + "flags": 8388639, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2266776432 + "pointer": false, + "hash": 1701018190 }, - "m_pDepressedState": { - "type": "class SharedPointer", - "id": 36, - "offset": 816, - "flags": 135, + "m_requirements": { + "type": "class RequirementList", + "id": 10, + "offset": 280, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1878185798 - }, - "m_bUp": { - "type": "bool", - "id": 37, - "offset": 880, - "flags": 135, + "pointer": false, + "hash": 2840988582 + } + } + }, + "462917554": { + "name": "class std::list >", + "bases": [], + "hash": 462917554, + "properties": {} + }, + "1306093476": { + "name": "class ResAddCharacterSlotResult", + "bases": [ + "Result", + "PropertyClass" + ], + "hash": 1306093476, + "properties": { + "m_maximumPurchasedCharacterSlots": { + "type": "int", + "id": 0, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 269510906 + "hash": 57745273 } } }, - "836827441": { - "name": "class LeaderboardEntry*", + "27322510": { + "name": "class ResAsyncScript", "bases": [ + "Result", "PropertyClass" ], - "hash": 836827441, + "hash": 27322510, "properties": { - "m_characterID": { - "type": "gid", + "m_script": { + "type": "std::string", "id": 0, "offset": 72, "flags": 7, @@ -580450,1501 +479588,1248 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 210498386 + "hash": 2438918928 }, - "m_rank": { - "type": "unsigned int", + "m_startEvent": { + "type": "std::string", "id": 1, - "offset": 80, + "offset": 104, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 431206393 + "hash": 2150353611 }, - "m_nameBlob": { + "m_endEvent": { "type": "std::string", "id": 2, - "offset": 88, + "offset": 136, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3058206907 - }, - "m_characterLevel": { + "hash": 3112700596 + } + } + }, + "1744308813": { + "name": "class SharedPointer", + "bases": [ + "PositionalSoundBehavior", + "SoundBehavior", + "AreaBehavior", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1744308813, + "properties": { + "m_behaviorTemplateNameID": { "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_radius": { + "type": "float", + "id": 1, + "offset": 116, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 989410271 + }, + "m_category": { + "type": "enum AudioCategory", + "id": 2, + "offset": 124, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2951251982, + "enum_options": { + "AudioCategory_Irrelevent": 0, + "AudioCategory_Accoustic": 1, + "AudioCategory_Noise": 2, + "AudioCategory_Music": 3 + } + }, + "m_exclusive": { + "type": "bool", "id": 3, - "offset": 120, + "offset": 128, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1018074066 + "hash": 824383403 }, - "m_characterSchool": { - "type": "unsigned int", + "m_playList": { + "type": "class PlayList", "id": 4, - "offset": 124, + "offset": 176, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1330015234 + "hash": 2061221957 }, - "m_wins": { - "type": "unsigned int", + "m_volume": { + "type": "float", "id": 5, - "offset": 128, + "offset": 304, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 431394798 + "hash": 1162855023 }, - "m_losses": { - "type": "unsigned int", + "m_loopCount": { + "type": "int", "id": 6, - "offset": 132, + "offset": 308, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 892951526 + "hash": 865634717 }, - "m_ties": { - "type": "unsigned int", + "m_minimumFalloff": { + "type": "float", "id": 7, - "offset": 136, + "offset": 328, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 431286690 + "hash": 355697197 }, - "m_gamesPlayed": { - "type": "unsigned int", + "m_maximumFalloff": { + "type": "float", "id": 8, - "offset": 140, + "offset": 332, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1165998489 + "hash": 2210192367 }, - "m_points": { - "type": "unsigned int", + "m_animDriven": { + "type": "bool", "id": 9, - "offset": 144, + "offset": 392, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1049128778 + "hash": 398394720 + }, + "m_inverted": { + "type": "bool", + "id": 10, + "offset": 397, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1034821044 } } }, - "836462749": { - "name": "class OldWizardEquippedItemInfo", + "911744610": { + "name": "class SharedPointer", "bases": [ - "EquippedItemInfo", + "BehaviorTemplate", "PropertyClass" ], - "hash": 836462749, + "hash": 911744610, "properties": { - "m_itemID": { - "type": "unsigned int", + "m_behaviorName": { + "type": "std::string", "id": 0, "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 780964329 - }, - "m_baseColor": { - "type": "bui5", - "id": 1, - "offset": 88, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1433198221 - }, - "m_trimColor": { - "type": "bui5", - "id": 2, - "offset": 92, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1198446862 - }, - "m_pattern": { - "type": "bui5", - "id": 3, - "offset": 96, - "flags": 31, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1338360593 + "hash": 3130754092 } } }, - "1207902240": { - "name": "class SharedPointer", + "1306516086": { + "name": "class WizZoneData*", "bases": [ - "MatchActor", + "ZoneData", "PropertyClass" ], - "hash": 1207902240, + "hash": 1306516086, "properties": { - "m_nActorID": { - "type": "gid", + "m_nType": { + "type": "enum ZoneData::Type", "id": 0, - "offset": 88, - "flags": 31, + "offset": 72, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 663762476 + "hash": 2656861130, + "enum_options": { + "ZONETYPE_INVALID": 4294967295, + "ZONETYPE_START": 0, + "ZONETYPE_STATIC": 1, + "ZONETYPE_DYNAMIC": 2 + } }, - "m_nLadderContainerID": { - "type": "gid", + "m_zoneName": { + "type": "std::string", "id": 1, - "offset": 96, - "flags": 31, + "offset": 80, + "flags": 134217735, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 782107042 + "hash": 2171167736 }, - "m_nTournamentNameID": { - "type": "unsigned int", + "m_zoneDisplayName": { + "type": "std::string", "id": 2, - "offset": 104, - "flags": 31, + "offset": 112, + "flags": 8388615, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 471412886 + "hash": 1962339438 }, - "m_nTournamentID": { - "type": "gid", + "m_skyDomeName": { + "type": "std::string", "id": 3, - "offset": 112, - "flags": 31, + "offset": 144, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 105258688 + "hash": 2339979448 }, - "m_leagueID": { - "type": "unsigned int", + "m_skyLayerName": { + "type": "std::string", "id": 4, - "offset": 124, - "flags": 31, - "container": "Static", - "dynamic": false, + "offset": 184, + "flags": 131079, + "container": "Vector", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 692361645 + "hash": 2824410256 }, - "m_seasonID": { - "type": "unsigned int", + "m_collisionFileName": { + "type": "std::string", "id": 5, - "offset": 120, - "flags": 31, + "offset": 208, + "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 535260643 + "hash": 1725365192 }, - "m_nMatchNameID": { - "type": "unsigned int", + "m_gamebryoSceneFileName": { + "type": "std::string", "id": 6, - "offset": 128, - "flags": 31, + "offset": 240, + "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 497033398 + "hash": 3084395168 }, - "m_nMatchID": { - "type": "gid", + "m_musicFileName": { + "type": "std::string", "id": 7, - "offset": 136, - "flags": 31, + "offset": 272, + "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1050279648 + "hash": 1817607805 }, - "m_nTeamID": { - "type": "gid", + "m_spawnList": { + "type": "class SpawnPointTemplate", "id": 8, - "offset": 144, - "flags": 31, - "container": "Static", - "dynamic": false, + "offset": 304, + "flags": 7, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 374990266 + "hash": 1063041926 }, - "m_status": { - "type": "int", + "m_teleportList": { + "type": "class TeleporterTemplate", "id": 9, - "offset": 160, - "flags": 31, - "container": "Static", - "dynamic": false, + "offset": 320, + "flags": 7, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 960781182 + "hash": 1031682046 }, - "m_costAdj": { - "type": "class MatchCostAdjustment", + "m_locationList": { + "type": "class LocationTemplate", "id": 10, - "offset": 200, - "flags": 31, - "container": "Static", - "dynamic": false, + "offset": 336, + "flags": 7, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 913243331 + "hash": 2114141903 }, - "m_pLadder": { - "type": "class SharedPointer", + "m_objectList": { + "type": "class SharedPointer", "id": 11, - "offset": 304, - "flags": 31, - "container": "Static", - "dynamic": false, + "offset": 352, + "flags": 7, + "container": "List", + "dynamic": true, "singleton": false, "pointer": true, - "hash": 2484171182 + "hash": 882782852 }, - "m_bracketID": { - "type": "gid", + "m_allEffects": { + "type": "std::string", "id": 12, - "offset": 152, - "flags": 31, - "container": "Static", - "dynamic": false, + "offset": 368, + "flags": 7, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 441272961 + "hash": 2483362772 }, - "m_overridingELO": { + "m_healingPerMinute": { "type": "int", "id": 13, - "offset": 284, - "flags": 31, + "offset": 480, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1428697363 + "hash": 782115659 }, - "m_matchKFactor": { + "m_playerPopThresh": { "type": "int", "id": 14, - "offset": 288, - "flags": 31, + "offset": 484, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 773340305 + "hash": 1692004900 }, - "m_userID": { - "type": "gid", + "m_nSoftLimit": { + "type": "int", "id": 15, - "offset": 80, - "flags": 31, + "offset": 488, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1037989700 + "hash": 1593689635, + "enum_options": { + "__DEFAULT": 50 + } }, - "m_matchMakingRangeForMatches": { - "type": "unsigned int", + "m_nHardLimit": { + "type": "int", "id": 16, - "offset": 320, - "flags": 31, + "offset": 492, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1193045098 + "hash": 1752405446, + "enum_options": { + "__DEFAULT": 100 + } }, - "m_maxMatchMakingRangeForMatches": { - "type": "unsigned int", + "m_farClip": { + "type": "float", "id": 17, - "offset": 324, - "flags": 31, + "offset": 496, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1279540944 + "hash": 1393981304, + "enum_options": { + "__DEFAULT": 25000 + } }, - "m_allowRangeToExceedMaxForMatches": { - "type": "bool", + "m_nearClipOverride": { + "type": "float", "id": 18, - "offset": 328, - "flags": 31, + "offset": 500, + "flags": 519, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1260448226 + "hash": 1092806405, + "enum_options": { + "__DEFAULT": 1 + } }, - "m_matchCrownsCost": { - "type": "int", + "m_defaultBackgroundColorRed": { + "type": "float", "id": 19, - "offset": 280, - "flags": 31, + "offset": 504, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1094489596 + "hash": 1511995894 }, - "m_machineID": { - "type": "gid", + "m_defaultBackgroundColorGreen": { + "type": "float", "id": 20, - "offset": 336, - "flags": 31, + "offset": 508, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 281396698 + "hash": 2127637260 }, - "m_tier": { - "type": "int", + "m_defaultBackgroundColorBlue": { + "type": "float", "id": 21, - "offset": 344, - "flags": 31, + "offset": 512, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 219884238 + "hash": 1908873795 }, - "m_rank": { + "m_fogColorRed": { "type": "int", "id": 22, - "offset": 348, - "flags": 31, + "offset": 516, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 219803942 + "hash": 1578810896 }, - "m_rating": { + "m_fogColorGreen": { "type": "int", "id": 23, - "offset": 352, - "flags": 31, + "offset": 520, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 899783871 + "hash": 1229332710 }, - "m_levelBand": { + "m_fogColorBlue": { "type": "int", "id": 24, - "offset": 356, - "flags": 31, + "offset": 524, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2097286567 + "hash": 557754685 }, - "m_enteredQueue": { - "type": "int", + "m_fogDensity": { + "type": "float", "id": 25, - "offset": 376, - "flags": 31, + "offset": 528, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 638238406 + "hash": 1170901171 }, - "m_isSubscriber": { - "type": "bool", + "m_fogStartDensity": { + "type": "float", "id": 26, - "offset": 428, - "flags": 31, + "offset": 532, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 952325795 + "hash": 1642636961 }, - "m_meetBracketBadgeRequirnments": { + "m_fogEnabled": { "type": "bool", "id": 27, - "offset": 429, - "flags": 31, + "offset": 536, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 438139258 + "hash": 563358906 }, - "m_1v1": { - "type": "bool", + "m_nObjectID": { + "type": "unsigned int", "id": 28, - "offset": 430, - "flags": 31, + "offset": 540, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 269458571 + "hash": 748496927 }, - "m_streak": { - "type": "int", + "m_bDisableTransitionAutoHide": { + "type": "bool", "id": 29, - "offset": 360, - "flags": 31, + "offset": 544, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 961375108 + "hash": 702738663 }, - "m_matches": { - "type": "int", + "m_encounterNames": { + "type": "std::string", "id": 30, - "offset": 364, - "flags": 31, - "container": "Static", - "dynamic": false, + "offset": 384, + "flags": 268435463, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 1757638687 + "hash": 2150841410, + "enum_options": { + "__BASECLASS": "EncounterTemplate" + } }, - "m_lastFight": { - "type": "int", + "m_encounterGroup": { + "type": "std::string", "id": 31, - "offset": 368, - "flags": 31, + "offset": 400, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 91176384 + "hash": 2143153595 }, - "m_PVPHistoryStr": { + "m_zoneAdjectives": { "type": "std::string", "id": 32, - "offset": 384, - "flags": 31, - "container": "Static", - "dynamic": false, + "offset": 432, + "flags": 7, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 1498439420 + "hash": 3603923993 }, - "m_maxCritHit": { - "type": "float", + "m_zonePermissions": { + "type": "std::string", "id": 33, - "offset": 416, - "flags": 31, - "container": "Static", - "dynamic": false, + "offset": 464, + "flags": 7, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 2225327348 + "hash": 2928923475 }, - "m_maxBlockCrit": { - "type": "float", + "m_canPlaceTeleportMarker": { + "type": "bool", "id": 34, - "offset": 420, - "flags": 31, + "offset": 545, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 135865530 + "hash": 600985755 }, - "m_shadowPipRating": { - "type": "float", + "m_filterSetUID": { + "type": "unsigned int", "id": 35, - "offset": 424, - "flags": 31, + "offset": 548, + "flags": 33554695, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 507126123 + "hash": 1054674497 }, - "m_optInOut": { - "type": "std::string", + "m_conditionalSkyboxes": { + "type": "class SkyboxInfo", "id": 36, - "offset": 168, - "flags": 31, - "container": "Static", - "dynamic": false, + "offset": 552, + "flags": 263, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 3013935453 + "hash": 2512765286 }, - "m_playerTimeDraw": { - "type": "bool", + "m_musicDelay": { + "type": "float", "id": 37, - "offset": 431, - "flags": 31, + "offset": 568, + "flags": 263, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 447636221 + "hash": 1217785767 }, - "m_nTemplateID": { - "type": "unsigned __int64", + "m_combatMusic": { + "type": "std::string", "id": 38, - "offset": 448, - "flags": 31, + "offset": 576, + "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1575131408 + "hash": 3636593682 }, - "m_nRank": { - "type": "unsigned char", + "m_guiFile": { + "type": "std::string", "id": 39, - "offset": 456, - "flags": 31, + "offset": 608, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1440551274 + "hash": 2717603296 }, - "m_petID": { - "type": "gid", + "m_bloomBrightnessThreshold": { + "type": "float", "id": 40, - "offset": 432, - "flags": 31, + "offset": 640, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 806009486 + "hash": 1052055702, + "enum_options": { + "__DEFAULT": "0.044892" + } }, - "m_petPermanentID": { - "type": "gid", + "m_bloomScale": { + "type": "float", "id": 41, - "offset": 440, - "flags": 31, + "offset": 644, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1647183032 + "hash": 955880152, + "enum_options": { + "__DEFAULT": "0.970443" + } }, - "m_nameBlob": { - "type": "std::string", + "m_bloomCount": { + "type": "int", "id": 42, - "offset": 464, - "flags": 31, + "offset": 648, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3058206907 - } - } - }, - "2015690633": { - "name": "class SkyboxInfo*", - "bases": [ - "PropertyClass" - ], - "hash": 2015690633, - "properties": { - "m_skyLayerCount": { - "type": "int", - "id": 0, - "offset": 72, + "hash": 847157372, + "enum_options": { + "__DEFAULT": 3 + } + }, + "m_noMounts": { + "type": "bool", + "id": 43, + "offset": 652, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 816414615 + "hash": 1225032630 }, - "m_skyLayerName": { - "type": "std::string", - "id": 1, - "offset": 80, + "m_a2wFog": { + "type": "bool", + "id": 44, + "offset": 653, "flags": 7, - "container": "Vector", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 2824410256 + "hash": 181294809 }, - "m_clientTag": { - "type": "std::string", - "id": 2, - "offset": 104, + "m_swimZone": { + "type": "bool", + "id": 45, + "offset": 654, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3409856790 - } - } - }, - "2015826661": { - "name": "class DiegoCombatObserver*", - "bases": [ - "CombatObserver", - "PropertyClass" - ], - "hash": 2015826661, - "properties": { - "m_playerStats": { - "type": "class SharedPointer", - "id": 0, - "offset": 88, - "flags": 7, + "hash": 255657967 + }, + "m_altMusicFile": { + "type": "class MusicFileInfo", + "id": 46, + "offset": 656, + "flags": 263, "container": "List", "dynamic": true, "singleton": false, - "pointer": true, - "hash": 873719258 + "pointer": false, + "hash": 2140137174 } } }, - "836925745": { - "name": "class LeaderboardEntry", + "1744138021": { + "name": "class GearVaultBehaviorBase", "bases": [ + "BehaviorInstance", "PropertyClass" ], - "hash": 836925745, + "hash": 1744138021, "properties": { - "m_characterID": { - "type": "gid", + "m_behaviorTemplateNameID": { + "type": "unsigned int", "id": 0, - "offset": 72, - "flags": 7, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 210498386 + "hash": 223437287 }, - "m_rank": { - "type": "unsigned int", + "m_gearList": { + "type": "std::string", "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, + "offset": 112, + "flags": 65567, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 431206393 - }, - "m_nameBlob": { + "hash": 1498902582 + } + } + }, + "465628675": { + "name": "class ResPrepaidTime", + "bases": [ + "ResultSourceType", + "Result", + "PropertyClass" + ], + "hash": 465628675, + "properties": { + "m_sourceType": { "type": "std::string", - "id": 2, - "offset": 88, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3058206907 - }, - "m_characterLevel": { - "type": "unsigned int", - "id": 3, - "offset": 120, + "id": 0, + "offset": 80, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1018074066 + "hash": 2305508654 }, - "m_characterSchool": { + "m_zoneLevelMax": { "type": "unsigned int", - "id": 4, - "offset": 124, - "flags": 7, + "id": 1, + "offset": 76, + "flags": 263, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1330015234 + "hash": 1028933895 }, - "m_wins": { + "m_zoneLevelMin": { "type": "unsigned int", - "id": 5, - "offset": 128, - "flags": 7, + "id": 2, + "offset": 72, + "flags": 263, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 431394798 - }, - "m_losses": { - "type": "unsigned int", - "id": 6, - "offset": 132, + "hash": 1028934149 + } + } + }, + "905422721": { + "name": "class SharedPointer", + "bases": [ + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 905422721, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 892951526 + "hash": 2237098605 }, - "m_ties": { - "type": "unsigned int", - "id": 7, - "offset": 136, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 431286690 + "hash": 2285866132 }, - "m_gamesPlayed": { - "type": "unsigned int", - "id": 8, - "offset": 140, + "m_effectName": { + "type": "std::string", + "id": 2, + "offset": 120, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1165998489 + "hash": 2029161513 }, - "m_points": { - "type": "unsigned int", - "id": 9, - "offset": 144, + "m_nodeName": { + "type": "std::string", + "id": 3, + "offset": 152, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1049128778 + "hash": 3607089954 } } }, - "1047027548": { - "name": "class PetFeedingRewardConfig", + "1744136741": { + "name": "class GearVaultBehaviorBase*", "bases": [ + "BehaviorInstance", "PropertyClass" ], - "hash": 1047027548, + "hash": 1744136741, "properties": { - "m_standardItemFeedingRewards": { - "type": "class PetFeedingRewardInfo*", + "m_behaviorTemplateNameID": { + "type": "unsigned int", "id": 0, - "offset": 72, - "flags": 7, - "container": "Vector", - "dynamic": true, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2366849484 + "pointer": false, + "hash": 223437287 }, - "m_crownsFeedingRewards": { - "type": "class PetFeedingRewardInfo*", + "m_gearList": { + "type": "std::string", "id": 1, - "offset": 96, - "flags": 7, - "container": "Vector", + "offset": 112, + "flags": 65567, + "container": "List", "dynamic": true, "singleton": false, - "pointer": true, - "hash": 1691121416 - }, - "m_fGoldScalingFactor": { - "type": "float", - "id": 2, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, "pointer": false, - "hash": 2001693763 + "hash": 1498902582 } } }, - "1212726393": { - "name": "class SpellEffect*", + "464509749": { + "name": "class SpellListControl", "bases": [ + "Window", "PropertyClass" ], - "hash": 1212726393, + "hash": 464509749, "properties": { - "m_effectType": { - "type": "enum SpellEffect::kSpellEffects", + "m_sName": { + "type": "std::string", "id": 0, - "offset": 72, - "flags": 2097183, + "offset": 80, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2578255295, - "enum_options": { - "kInvalidSpellEffect": 0, - "kDamage": 1, - "kDamageNoCrit": 2, - "kHeal": 3, - "kHealPercent": 4, - "kSetHealPercent": 113, - "kStealHealth": 5, - "kReduceOverTime": 6, - "kDetonateOverTime": 7, - "kPushCharm": 8, - "kStealCharm": 9, - "kPushWard": 10, - "kStealWard": 11, - "kPushOverTime": 12, - "kStealOverTime": 13, - "kRemoveCharm": 14, - "kRemoveWard": 15, - "kRemoveOverTime": 16, - "kRemoveAura": 17, - "kSwapAll": 18, - "kSwapCharm": 19, - "kSwapWard": 20, - "kSwapOverTime": 21, - "kModifyIncomingDamage": 22, - "kModifyIncomingDamageFlat": 119, - "kMaximumIncomingDamage": 23, - "kModifyIncomingHeal": 24, - "kModifyIncomingHealFlat": 118, - "kModifyIncomingDamageType": 25, - "kModifyIncomingArmorPiercing": 26, - "kModifyOutgoingDamage": 27, - "kModifyOutgoingDamageFlat": 121, - "kModifyOutgoingHeal": 28, - "kModifyOutgoingHealFlat": 120, - "kModifyOutgoingDamageType": 29, - "kModifyOutgoingArmorPiercing": 30, - "kModifyOutgoingStealHealth": 31, - "kModifyIncomingStealHealth": 32, - "kBounceNext": 33, - "kBouncePrevious": 34, - "kBounceBack": 35, - "kBounceAll": 36, - "kAbsorbDamage": 37, - "kAbsorbHeal": 38, - "kModifyAccuracy": 39, - "kDispel": 40, - "kConfusion": 41, - "kCloakedCharm": 42, - "kCloakedWard": 43, - "kStunResist": 44, - "kClue": 111, - "kPipConversion": 45, - "kCritBoost": 46, - "kCritBlock": 47, - "kPolymorph": 48, - "kDelayCast": 49, - "kModifyCardCloak": 50, - "kModifyCardDamage": 51, - "kModifyCardAccuracy": 53, - "kModifyCardMutation": 54, - "kModifyCardRank": 55, - "kModifyCardArmorPiercing": 56, - "kSummonCreature": 65, - "kTeleportPlayer": 66, - "kStun": 67, - "kDampen": 68, - "kReshuffle": 69, - "kMindControl": 70, - "kModifyPips": 71, - "kModifyPowerPips": 72, - "kModifyShadowPips": 73, - "kModifyHate": 74, - "kDamageOverTime": 75, - "kHealOverTime": 76, - "kModifyPowerPipChance": 77, - "kModifyRank": 78, - "kStunBlock": 79, - "kRevealCloak": 80, - "kInstantKill": 81, - "kAfterlife": 82, - "kDeferredDamage": 83, - "kDamagePerTotalPipPower": 84, - "kModifyCardHeal": 52, - "kModifyCardCharm": 57, - "kModifyCardWard": 58, - "kModifyCardOutgoingDamage": 59, - "kModifyCardOutgoingAccuracy": 60, - "kModifyCardOutgoingHeal": 61, - "kModifyCardOutgoingArmorPiercing": 62, - "kModifyCardIncomingDamage": 63, - "kModifyCardAbsorbDamage": 64, - "kCloakedWardNoRemove": 86, - "kAddCombatTriggerList": 87, - "kRemoveCombatTriggerList": 88, - "kBacklashDamage": 89, - "kModifyBacklash": 90, - "kIntercept": 91, - "kShadowSelf": 92, - "kShadowCreature": 93, - "kModifyShadowCreatureLevel": 94, - "kSelectShadowCreatureAttackTarget": 95, - "kShadowDecrementTurn": 96, - "kCritBoostSchoolSpecific": 97, - "kSpawnCreature": 98, - "kUnPolymorph": 99, - "kPowerPipConversion": 100, - "kProtectCardBeneficial": 101, - "kProtectCardHarmful": 102, - "kProtectBeneficial": 103, - "kProtectHarmful": 104, - "kDivideDamage": 105, - "kCollectEssence": 106, - "kKillCreature": 107, - "kDispelBlock": 108, - "kConfusionBlock": 109, - "kModifyPipRoundRate": 110, - "kMaxHealthDamage": 112, - "kUntargetable": 114, - "kMakeTargetable": 115, - "kForceTargetable": 116, - "kRemoveStunBlock": 117, - "kExitCombat": 122, - "kSuspendPips": 123, - "kResumePips": 124, - "kAutoPass": 125, - "kStopAutoPass": 126, - "kVanish": 127, - "kStopVanish": 128, - "kMaxHealthHeal": 129, - "kHealByWard": 130, - "kTaunt": 131, - "kPacify": 132, - "kRemoveTargetRestriction": 133, - "kConvertHangingEffect": 134, - "kAddSpellToDeck": 135, - "kAddSpellToHand": 136, - "kModifyIncomingDamageOverTime": 137, - "kModifyIncomingHealOverTime": 138, - "kModifyCardDamagebyRank": 139, - "kPushConvertedCharm": 140, - "kStealConvertedCharm": 141, - "kPushConvertedWard": 142, - "kStealConvertedWard": 143, - "kPushConvertedOverTime": 144, - "kStealConvertedOverTime": 145, - "kRemoveConvertedCharm": 146, - "kRemoveConvertedWard": 147, - "kRemoveConvertedOverTime": 148, - "kModifyOverTimeDuration": 149, - "kModifySchoolPips": 150 - } + "hash": 2306437263 }, - "m_effectParam": { - "type": "int", + "m_Children": { + "type": "class SharedPointer", "id": 1, - "offset": 76, - "flags": 31, - "container": "Static", - "dynamic": false, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 357920024 + "pointer": true, + "hash": 2621225959 }, - "m_disposition": { - "type": "enum SpellEffect::kHangingDisposition", + "m_Style": { + "type": "unsigned int", "id": 2, - "offset": 80, - "flags": 2097159, + "offset": 152, + "flags": 1048583, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1904841031, + "hash": 983582334, "enum_options": { - "kBoth": 0, - "kBeneficial": 1, - "kHarmful": 2 + "HAS_BACK": 1, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152, + "SLC_NUMBERS": 16777216 } }, - "m_sDamageType": { - "type": "std::string", + "m_Flags": { + "type": "unsigned int", "id": 3, - "offset": 88, - "flags": 7, + "offset": 156, + "flags": 1048583, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2501054223 + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } }, - "m_damageType": { - "type": "unsigned int", + "m_Window": { + "type": "class Rect", "id": 4, - "offset": 84, - "flags": 31, + "offset": 160, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 737882766 + "hash": 3105139380 }, - "m_pipNum": { - "type": "int", + "m_fTargetAlpha": { + "type": "float", "id": 5, - "offset": 128, - "flags": 7, + "offset": 212, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 830827539 + "hash": 1809129834 }, - "m_actNum": { - "type": "int", + "m_fDisabledAlpha": { + "type": "float", "id": 6, - "offset": 132, - "flags": 31, + "offset": 216, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 236824866 + "hash": 1389987675 }, - "m_effectTarget": { - "type": "enum SpellEffect::kEffectTarget", + "m_fAlpha": { + "type": "float", "id": 7, - "offset": 140, - "flags": 2097183, + "offset": 208, + "flags": 65671, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2458940523, - "enum_options": { - "kInvalidTarget": 0, - "kSpell": 1, - "kSpecificSpells": 2, - "kGlobal": 3, - "kEnemyTeam": 4, - "kEnemyTeamAllAtOnce": 5, - "kFriendlyTeam": 6, - "kFriendlyTeamAllAtOnce": 7, - "kEnemySingle": 8, - "kFriendlySingle": 9, - "kMinion": 10, - "kFriendlyMinion": 17, - "kEnemyMinion": 18, - "kSelf": 11, - "kAtLeastOneEnemy": 13, - "kPreselectedEnemySingle": 12, - "kMultiTargetEnemy": 14, - "kMultiTargetFriendly": 15, - "kFriendlySingleNotMe": 16 - } + "hash": 482130755 }, - "m_numRounds": { - "type": "int", + "m_pWindowStyle": { + "type": "class SharedPointer", "id": 8, - "offset": 144, - "flags": 31, + "offset": 232, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1229753829 + "pointer": true, + "hash": 3623628394 }, - "m_paramPerRound": { - "type": "int", + "m_sHelp": { + "type": "std::wstring", "id": 9, - "offset": 148, - "flags": 31, + "offset": 248, + "flags": 4194439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 683234234 + "hash": 2102211316 }, - "m_healModifier": { - "type": "float", + "m_sScript": { + "type": "std::string", "id": 10, - "offset": 152, - "flags": 7, + "offset": 352, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1317921248, - "enum_options": { - "__DEFAULT": "1.0" - } + "hash": 1846695875 }, - "m_spellTemplateID": { - "type": "unsigned int", + "m_Offset": { + "type": "class Point", "id": 11, - "offset": 120, - "flags": 31, + "offset": 192, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 585567702 + "hash": 3389835433 }, - "m_enchantmentSpellTemplateID": { - "type": "unsigned int", + "m_Scale": { + "type": "class Point", "id": 12, - "offset": 124, - "flags": 31, + "offset": 200, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 246955115 + "hash": 2547159940 }, - "m_act": { - "type": "bool", + "m_sTip": { + "type": "std::wstring", "id": 13, - "offset": 136, - "flags": 7, + "offset": 392, + "flags": 4194439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 269510283 + "hash": 1513510520 }, - "m_cloaked": { - "type": "bool", + "m_BubbleList": { + "type": "class WindowBubble", "id": 14, - "offset": 157, - "flags": 31, - "container": "Static", - "dynamic": false, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 7349510 + "hash": 2587533771 }, - "m_bypassProtection": { - "type": "bool", + "m_ParentOffset": { + "type": "class Rect", "id": 15, - "offset": 159, - "flags": 31, + "offset": 176, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1657138252 + "hash": 3091503757 }, - "m_armorPiercingParam": { - "type": "int", + "m_cardSize": { + "type": "class Size", "id": 16, - "offset": 160, - "flags": 31, + "offset": 716, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2025530205 + "hash": 1135567057 }, - "m_chancePerTarget": { - "type": "int", + "m_spacing": { + "type": "class Point", "id": 17, - "offset": 164, - "flags": 31, + "offset": 724, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 845426794 + "hash": 3187881255 }, - "m_protected": { - "type": "bool", + "m_holes": { + "type": "class Rect", "id": 18, - "offset": 168, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1445655037 - }, - "m_converted": { - "type": "bool", - "id": 19, - "offset": 169, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1590428797 - }, - "m_rank": { - "type": "int", - "id": 20, - "offset": 208, + "offset": 696, "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 219803942 - } - } - }, - "895846831": { - "name": "class VisibilityBehavior", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 895846831, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_showTo": { - "type": "gid", - "id": 1, - "offset": 112, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 947039004 - }, - "m_hideFrom": { - "type": "gid", - "id": 2, - "offset": 128, - "flags": 31, "container": "List", "dynamic": true, "singleton": false, "pointer": false, - "hash": 642644390 - }, - "m_visible": { - "type": "bool", - "id": 3, - "offset": 144, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 810536225 + "hash": 1902151287 } } }, - "1212099530": { - "name": "class DoodleMapPair*", + "904170853": { + "name": "class SharedPointer", "bases": [ "PropertyClass" ], - "hash": 1212099530, + "hash": 904170853, "properties": { - "m_mapName": { - "type": "std::string", + "m_playerID": { + "type": "gid", "id": 0, "offset": 72, - "flags": 131079, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3249832570 + "hash": 1774633426 }, - "m_zoneName": { + "m_team": { "type": "std::string", "id": 1, - "offset": 104, - "flags": 7, + "offset": 80, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2171167736 + "hash": 1717579362 } } }, - "1209754275": { - "name": "class ClientBGPenaltyMatchBan*", + "29109451": { + "name": "class ClientAtticBehavior*", "bases": [ - "BGPenaltyMatchBan", - "InfractionPenalty", + "AtticBehavior", + "BehaviorInstance", "PropertyClass" ], - "hash": 1209754275, + "hash": 29109451, "properties": { - "m_internalID": { + "m_behaviorTemplateNameID": { "type": "unsigned int", "id": 0, - "offset": 72, - "flags": 31, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1854540375 + "hash": 223437287 }, - "m_categoryID": { - "type": "unsigned int", + "m_containerGID": { + "type": "gid", "id": 1, - "offset": 76, - "flags": 31, + "offset": 112, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1382795736 + "hash": 550557519 }, - "m_removeAtPointValue": { - "type": "float", + "m_atticItemCount": { + "type": "int", "id": 2, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2112196961 - }, - "m_expireTime": { - "type": "unsigned int", - "id": 3, - "offset": 84, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1836304873 - }, - "m_duration": { - "type": "unsigned int", - "id": 4, - "offset": 88, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1041524755 - } - } - }, - "2017278742": { - "name": "class AtticBehaviorTemplate", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 2017278742, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - } - } - }, - "838322901": { - "name": "class PetTalentsTriggeredSpellsData*", - "bases": [ - "PropertyClass" - ], - "hash": 838322901, - "properties": { - "m_talentName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, + "offset": 120, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2455147588 - }, - "m_triggeredSpells": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2939702987 + "hash": 184605671 } } }, - "842804276": { - "name": "class PlanningTimerControl", + "464345909": { + "name": "class SpellListControl*", "bases": [ "Window", "PropertyClass" ], - "hash": 842804276, + "hash": 464345909, "properties": { "m_sName": { "type": "std::string", @@ -581980,11 +480865,9 @@ "hash": 983582334, "enum_options": { "HAS_BACK": 1, - "SCALE_CHILDREN": 2, "CAN_MOVE": 4, "CAN_SIZE": 8, "CAN_SCROLL": 16, - "FOCUS_LOCKED": 64, "CAN_FOCUS": 128, "CAN_DOCK": 32, "DO_NOT_CAPTURE_MOUSE": 256, @@ -581996,7 +480879,8 @@ "USE_ALPHA_BOUNDS": 8192, "AUTO_GROW": 16384, "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152 + "AUTO_RESIZE": 49152, + "SLC_NUMBERS": 16777216 } }, "m_Flags": { @@ -582157,92 +481041,90 @@ "pointer": false, "hash": 3091503757 }, - "m_alertSeconds": { - "type": "int", + "m_cardSize": { + "type": "class Size", "id": 16, - "offset": 588, + "offset": 716, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2008693409 + "hash": 1135567057 + }, + "m_spacing": { + "type": "class Point", + "id": 17, + "offset": 724, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3187881255 + }, + "m_holes": { + "type": "class Rect", + "id": 18, + "offset": 696, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1902151287 } } }, - "1208967843": { - "name": "class ClientBGPenaltyMatchBan", + "903675080": { + "name": "class SharedPointer", "bases": [ - "BGPenaltyMatchBan", - "InfractionPenalty", + "GeomParams", "PropertyClass" ], - "hash": 1208967843, + "hash": 903675080, "properties": { - "m_internalID": { - "type": "unsigned int", + "m_eType": { + "type": "enum ProxyType", "id": 0, "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1854540375 - }, - "m_categoryID": { - "type": "unsigned int", - "id": 1, - "offset": 76, - "flags": 31, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1382795736 + "hash": 1656534066, + "enum_options": { + "ProxyTypeBox": 0, + "ProxyTypeRay": 1, + "ProxyTypeSphere": 2, + "ProxyTypeCylinder": 3, + "ProxyTypeTube": 4, + "ProxyTypePlane": 5, + "ProxyTypeMesh": 6, + "ProxyTypeInvalid": 7 + } }, - "m_removeAtPointValue": { + "m_fRadius": { "type": "float", - "id": 2, + "id": 1, "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2112196961 - }, - "m_expireTime": { - "type": "unsigned int", - "id": 3, - "offset": 84, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1836304873 - }, - "m_duration": { - "type": "unsigned int", - "id": 4, - "offset": 88, - "flags": 31, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1041524755 + "hash": 787972805 } } }, - "2016817231": { - "name": "class DerbyImmunityEffect", + "1307176026": { + "name": "class DerbyModifyMoraleChance*", "bases": [ "DerbyEffect", "PropertyClass" ], - "hash": 2016817231, + "hash": 1307176026, "properties": { "m_buffType": { "type": "enum DerbyTalentBuffType", @@ -582378,8 +481260,8 @@ "pointer": false, "hash": 2840988582 }, - "m_bToDebuffs": { - "type": "bool", + "m_moraleChanceActionMap": { + "type": "class MoraleModificationMap", "id": 11, "offset": 376, "flags": 31, @@ -582387,2173 +481269,4315 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 1216111639 - } - } - }, - "838517010": { - "name": "class BattlegroundPolymorphs", - "bases": [ - "PropertyClass" - ], - "hash": 838517010, - "properties": { - "m_polymorphTypeList": { - "type": "class SharedPointer", - "id": 0, - "offset": 80, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": true, - "pointer": true, - "hash": 1494222584 + "hash": 1654668404 } } }, - "1208565693": { - "name": "class SharedPointer", + "28443790": { + "name": "class SharedPointer", "bases": [ "PropertyClass" ], - "hash": 1208565693, + "hash": 28443790, "properties": { - "m_animationName": { - "type": "std::string", + "m_badgeFilterNameID": { + "type": "unsigned int", "id": 0, "offset": 72, - "flags": 7, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3393414044 + "hash": 2064078516 }, - "m_animationPath": { - "type": "std::string", + "m_numberOfBadges": { + "type": "int", "id": 1, - "offset": 104, - "flags": 7, + "offset": 76, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3393486152 + "hash": 1438042878 }, - "m_sound": { - "type": "std::string", + "m_numberOfExtraCreditBadges": { + "type": "int", "id": 2, - "offset": 136, - "flags": 7, + "offset": 80, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2307644996 + "hash": 301196253 } } }, - "2016689933": { - "name": "class SharedPointer", + "903643793": { + "name": "class BackpackBuddyEquipmentOptions*", "bases": [ - "ConditionalSpellEffectRequirement", - "Requirement", "PropertyClass" ], - "hash": 2016689933, + "hash": 903643793, "properties": { - "m_applyNOT": { + "m_includeHats": { "type": "bool", "id": 0, "offset": 72, - "flags": 31, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1746328074, - "enum_options": { - "__DEFAULT": 0 - } + "hash": 692971815 }, - "m_operator": { - "type": "enum Requirement::Operator", + "m_includeRobes": { + "type": "bool", "id": 1, - "offset": 76, - "flags": 2097183, + "offset": 73, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2672792317, - "enum_options": { - "ROP_AND": 0, - "ROP_OR": 1, - "__DEFAULT": "ROP_AND" - } + "hash": 1323347506 }, - "m_targetType": { - "type": "enum ConditionalSpellEffectRequirement::RequirementTarget", + "m_includeBoots": { + "type": "bool", "id": 2, - "offset": 80, - "flags": 2097159, + "offset": 74, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2547737902, - "enum_options": { - "RT_Caster": 0, - "RT_Target": 1 - } + "hash": 1304387422 }, - "m_minPips": { - "type": "int", + "m_includeWands": { + "type": "bool", "id": 3, - "offset": 88, - "flags": 31, + "offset": 75, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2062924954 + "hash": 1328787028 }, - "m_maxPips": { - "type": "int", + "m_includeAthames": { + "type": "bool", "id": 4, - "offset": 92, - "flags": 31, + "offset": 76, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1761701020 - } - } - }, - "837857889": { - "name": "class IdleAuraCinematicAction*", - "bases": [ - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 837857889, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, + "hash": 1385638394 + }, + "m_includeAmulets": { + "type": "bool", + "id": 5, + "offset": 77, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 + "hash": 1127494706 }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, + "m_includeRings": { + "type": "bool", + "id": 6, + "offset": 78, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2285866132 - } - } - }, - "837071457": { - "name": "class IdleAuraCinematicAction", - "bases": [ - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 837071457, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, + "hash": 1323145018 + }, + "m_includeDecks": { + "type": "bool", + "id": 7, + "offset": 79, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 + "hash": 1306386529 }, - "m_actor": { - "type": "std::string", - "id": 1, + "m_includeElixirs": { + "type": "bool", + "id": 8, "offset": 80, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2285866132 + "hash": 1945468375 } } }, - "836995944": { - "name": "class ObjectBag", + "1306888295": { + "name": "class DerbyForceLaneChange", "bases": [ + "DerbyEffect", "PropertyClass" ], - "hash": 836995944, + "hash": 1306888295, "properties": { - "m_itemList": { - "type": "class SharedPointer", + "m_buffType": { + "type": "enum DerbyTalentBuffType", "id": 0, - "offset": 168, - "flags": 27, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1983655699 - }, - "m_maxItemStack": { - "type": "int", - "id": 1, - "offset": 184, - "flags": 27, + "offset": 92, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 673449637 - } - } - }, - "1209457190": { - "name": "class CompassMarkerWindow", - "bases": [ - "Window", - "PropertyClass" - ], - "hash": 1209457190, - "properties": { - "m_sName": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 135, + "hash": 1149251982, + "enum_options": { + "Buff": 0, + "Debuff": 1, + "Neither": 2 + } + }, + "m_kTarget": { + "type": "enum DerbyTargetType", + "id": 1, + "offset": 96, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2306437263 - }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621225959 + "hash": 1807803351, + "enum_options": { + "kTargetInFront": 0, + "kTargetBehind": 1, + "kTargetFirst": 2, + "kTargetSelf": 3, + "kTargetAll": 4, + "kTargetLast": 5 + } }, - "m_Style": { - "type": "unsigned int", + "m_nDuration": { + "type": "int", "id": 2, - "offset": 152, - "flags": 1048583, + "offset": 104, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "SCALE_CHILDREN": 2, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "FOCUS_LOCKED": 64, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152 - } + "hash": 1110167982 }, - "m_Flags": { + "m_effectID": { "type": "unsigned int", "id": 3, - "offset": 156, - "flags": 1048583, + "offset": 88, + "flags": 24, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } + "hash": 2347630439 }, - "m_Window": { - "type": "class Rect", + "m_imageFilename": { + "type": "std::string", "id": 4, - "offset": 160, - "flags": 135, + "offset": 112, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3105139380 + "hash": 2813328063 }, - "m_fTargetAlpha": { - "type": "float", + "m_iconIndex": { + "type": "unsigned int", "id": 5, - "offset": 212, - "flags": 135, + "offset": 144, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1809129834 + "hash": 1265133262 }, - "m_fDisabledAlpha": { - "type": "float", + "m_soundOnActivate": { + "type": "std::string", "id": 6, - "offset": 216, - "flags": 135, + "offset": 152, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1389987675 + "hash": 1956929714 }, - "m_fAlpha": { - "type": "float", + "m_soundOnTarget": { + "type": "std::string", "id": 7, - "offset": 208, - "flags": 65671, + "offset": 184, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 482130755 + "hash": 3444214056 }, - "m_pWindowStyle": { - "type": "class SharedPointer", + "m_targetParticleEffect": { + "type": "std::string", "id": 8, - "offset": 232, - "flags": 135, + "offset": 216, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3623628394 + "pointer": false, + "hash": 3048234723 }, - "m_sHelp": { - "type": "std::wstring", + "m_overheadMessage": { + "type": "std::string", "id": 9, "offset": 248, - "flags": 4194439, + "flags": 8388639, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2102211316 + "hash": 1701018190 }, - "m_sScript": { - "type": "std::string", + "m_requirements": { + "type": "class RequirementList", "id": 10, - "offset": 352, + "offset": 280, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2840988582 + } + } + }, + "1744235026": { + "name": "class WinAnimMoveToLocationTimeEase*", + "bases": [ + "WinAnimMoveToLocationTime", + "WinAnimMoveToLocation", + "WindowAnimation", + "PropertyClass" + ], + "hash": 1744235026, + "properties": { + "m_bUseDeepCopy": { + "type": "bool", + "id": 0, + "offset": 72, "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1846695875 + "hash": 433380635 }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, + "m_targetLocation": { + "type": "class Vector3D", + "id": 1, + "offset": 80, "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3389835433 + "hash": 2653859938 }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, + "m_fTimeRemaining": { + "type": "float", + "id": 2, + "offset": 100, "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2547159940 + "hash": 1591443014 }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, + "m_fTimeTotal": { + "type": "float", + "id": 3, + "offset": 96, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1513510520 + "hash": 661225456 }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, + "m_fEaseInPercent": { + "type": "float", + "id": 4, + "offset": 120, "flags": 135, - "container": "List", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 2587533771 + "hash": 1482967843 }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, + "m_fEaseOutPercent": { + "type": "float", + "id": 5, + "offset": 124, "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3091503757 + "hash": 1272154212 + }, + "m_fTotalDistance": { + "type": "float", + "id": 6, + "offset": 128, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1894338732 } } }, - "2018020244": { - "name": "enum PositionInfoAttenuationType", - "bases": [], - "hash": 2018020244, - "properties": {} - }, - "837016424": { - "name": "class ObjectBag*", + "903617821": { + "name": "class SharedPointer", "bases": [ "PropertyClass" ], - "hash": 837016424, + "hash": 903617821, "properties": { - "m_itemList": { - "type": "class SharedPointer", + "m_spellList": { + "type": "unsigned int", "id": 0, - "offset": 168, - "flags": 27, + "offset": 72, + "flags": 31, "container": "List", "dynamic": true, "singleton": false, - "pointer": true, - "hash": 1983655699 + "pointer": false, + "hash": 1402125129 }, - "m_maxItemStack": { - "type": "int", + "m_upgradedSpellList": { + "type": "unsigned int", "id": 1, - "offset": 184, - "flags": 27, - "container": "Static", - "dynamic": false, + "offset": 88, + "flags": 31, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 673449637 + "hash": 1475269301 } } }, - "2017279510": { - "name": "class AtticBehaviorTemplate*", + "465097729": { + "name": "class SG_GameAction_PlayEffect", "bases": [ - "BehaviorTemplate", + "SG_GameAction", "PropertyClass" ], - "hash": 2017279510, + "hash": 465097729, "properties": { - "m_behaviorName": { - "type": "std::string", + "m_target": { + "type": "enum SG_GameAction::SG_Target", "id": 0, "offset": 72, - "flags": 7, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3130754092 - } - } - }, - "1210525869": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1210525869, - "properties": { - "m_sReqName": { + "hash": 1166870973, + "enum_options": { + "Target_Ball": 0, + "Target_Self": 1, + "Target_Connections": 2, + "__DEFAULT": "Target_Ball" + } + }, + "m_graphicArguments": { "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, + "id": 1, + "offset": 80, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1656480079 + }, + "m_fMinimumTime": { + "type": "float", + "id": 2, + "offset": 144, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3206441047 + "hash": 1516804616 }, - "m_reqOperatorType": { - "type": "enum SegmentationRequrinment::OPERATOR_TYPE", - "id": 1, - "offset": 104, - "flags": 31, + "m_bDisplaysScore": { + "type": "bool", + "id": 3, + "offset": 148, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1334217449 - }, - "m_sReqValue": { - "type": "std::string", - "id": 2, - "offset": 112, - "flags": 31, + "hash": 722455866 + }, + "m_bPlaysPointsSounds": { + "type": "bool", + "id": 4, + "offset": 149, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2058248243 + "hash": 717919607 } } }, - "1209992050": { - "name": "class SharedPointer", + "30520102": { + "name": "class ClientDerbyRemoveAction", "bases": [ - "DynamicTriggerTemplate", - "GameObjectTemplate", - "CoreTemplate", + "DerbyRemoveAction", + "DerbyEffect", "PropertyClass" ], - "hash": 1209992050, + "hash": 30520102, "properties": { - "m_behaviors": { - "type": "class BehaviorTemplate*", + "m_buffType": { + "type": "enum DerbyTalentBuffType", "id": 0, - "offset": 72, - "flags": 7, - "container": "Vector", - "dynamic": true, + "offset": 92, + "flags": 2097183, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1197808594 + "pointer": false, + "hash": 1149251982, + "enum_options": { + "Buff": 0, + "Debuff": 1, + "Neither": 2 + } }, - "m_objectName": { - "type": "std::string", + "m_kTarget": { + "type": "enum DerbyTargetType", "id": 1, "offset": 96, - "flags": 7, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2154940147 + "hash": 1807803351, + "enum_options": { + "kTargetInFront": 0, + "kTargetBehind": 1, + "kTargetFirst": 2, + "kTargetSelf": 3, + "kTargetAll": 4, + "kTargetLast": 5 + } }, - "m_templateID": { - "type": "unsigned int", + "m_nDuration": { + "type": "int", "id": 2, - "offset": 128, - "flags": 16777223, + "offset": 104, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1286746870 + "hash": 1110167982 }, - "m_visualID": { + "m_effectID": { "type": "unsigned int", "id": 3, - "offset": 132, - "flags": 7, + "offset": 88, + "flags": 24, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1118778894 + "hash": 2347630439 }, - "m_adjectiveList": { + "m_imageFilename": { "type": "std::string", "id": 4, - "offset": 248, - "flags": 7, - "container": "List", - "dynamic": true, + "offset": 112, + "flags": 131103, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 3195213318 + "hash": 2813328063 }, - "m_exemptFromAOI": { - "type": "bool", + "m_iconIndex": { + "type": "unsigned int", "id": 5, - "offset": 240, - "flags": 7, + "offset": 144, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1457879059 + "hash": 1265133262 }, - "m_displayName": { + "m_soundOnActivate": { "type": "std::string", "id": 6, - "offset": 168, - "flags": 8388615, + "offset": 152, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2446900370 + "hash": 1956929714 }, - "m_description": { + "m_soundOnTarget": { "type": "std::string", "id": 7, - "offset": 136, - "flags": 8388615, + "offset": 184, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1649374815 + "hash": 3444214056 }, - "m_nObjectType": { - "type": "enum ObjectType", + "m_targetParticleEffect": { + "type": "std::string", "id": 8, - "offset": 200, - "flags": 2097159, + "offset": 216, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2118905880, - "enum_options": { - "OT_UNDEFINED": 0, - "OT_PLAYER": 1, - "OT_NPC": 2, - "OT_PROP": 3, - "OT_OBJECT": 4, - "OT_HOUSE": 5, - "OT_KEY": 6, - "OT_OLD_KEY": 7, - "OT_DEED": 8, - "OT_MAIL": 9, - "OT_RECIPE": 17, - "OT_EQUIP_HEAD": 10, - "OT_EQUIP_CHEST": 11, - "OT_EQUIP_LEGS": 12, - "OT_EQUIP_HANDS": 13, - "OT_EQUIP_FINGER": 14, - "OT_EQUIP_FEET": 15, - "OT_EQUIP_EAR": 16, - "OT_BUILDING_BLOCK": 18, - "OT_BUILDING_BLOCK_SOLID": 19, - "OT_GOLF": 20, - "OT_DOOR": 21, - "OT_PET": 22, - "OT_FABRIC": 23, - "OT_WINDOW": 24, - "OT_ROOF": 25, - "OT_HORSE": 26, - "OT_STRUCTURE": 27, - "OT_HOUSING_TEXTURE": 28, - "OT_PLANT": 29 - } + "hash": 3048234723 }, - "m_sIcon": { + "m_overheadMessage": { "type": "std::string", "id": 9, - "offset": 208, - "flags": 131079, + "offset": 248, + "flags": 8388639, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2306259831 - } - } - }, - "837371622": { - "name": "class CombatRule", - "bases": [ - "PropertyClass" - ], - "hash": 837371622, - "properties": {} - }, - "2018071983": { - "name": "class std::list >", - "bases": [], - "hash": 2018071983, - "properties": {} - }, - "837995221": { - "name": "class PetTalentsTriggeredSpellsData", - "bases": [ - "PropertyClass" - ], - "hash": 837995221, - "properties": { - "m_talentName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, + "hash": 1701018190 + }, + "m_requirements": { + "type": "class RequirementList", + "id": 10, + "offset": 280, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2455147588 + "hash": 2840988582 }, - "m_triggeredSpells": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 7, - "container": "List", - "dynamic": true, + "m_nActionType": { + "type": "enum DerbyActionTargetType", + "id": 11, + "offset": 376, + "flags": 2097183, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 2939702987 + "hash": 3401355432, + "enum_options": { + "Jump": 0, + "Duck": 1, + "AllExceptCheer": 2, + "Cheer": 3 + } } } }, - "1212099533": { - "name": "class DoodleMapPair", + "1745417124": { + "name": "class MonsterMagicWorldTotalList", "bases": [ "PropertyClass" ], - "hash": 1212099533, + "hash": 1745417124, "properties": { - "m_mapName": { - "type": "std::string", + "m_monsterMagicWorldTotalList": { + "type": "class SharedPointer", "id": 0, "offset": 72, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3249832570 - }, - "m_zoneName": { - "type": "std::string", - "id": 1, - "offset": 104, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 2171167736 + "pointer": true, + "hash": 3735585298 } } }, - "2018081055": { - "name": "class std::list >", - "bases": [], - "hash": 2018081055, - "properties": {} - }, - "838128976": { - "name": "class ClientInfractionBehavior*", + "465228426": { + "name": "class SharedPointer", "bases": [ - "InfractionBehavior", - "BehaviorInstance", + "CoreTemplate", "PropertyClass" ], - "hash": 838128976, + "hash": 465228426, "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", + "m_behaviors": { + "type": "class BehaviorTemplate*", "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, + "offset": 72, + "flags": 7, + "container": "Vector", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 223437287 + "pointer": true, + "hash": 1197808594 }, - "m_penalties": { - "type": "class SharedPointer", + "m_baseSlots": { + "type": "class EquipSlot*", "id": 1, - "offset": 112, - "flags": 31, + "offset": 136, + "flags": 7, "container": "List", "dynamic": true, "singleton": false, "pointer": true, - "hash": 1696001746 + "hash": 3098501161 }, - "m_record": { - "type": "class SharedPointer", + "m_equipmentName": { + "type": "std::string", "id": 2, - "offset": 128, - "flags": 16, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2129713657 - } - } - }, - "1214775133": { - "name": "class PassInfoList", - "bases": [ - "PropertyClass" - ], - "hash": 1214775133, - "properties": { - "m_info": { - "type": "class PassInfo", - "id": 0, - "offset": 72, + "offset": 96, "flags": 7, - "container": "List", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 1338677978 + "hash": 1920213140 } } }, - "1214168029": { - "name": "enum HangingConversionSpellEffect::OutputEffectSelector", - "bases": [], - "hash": 1214168029, - "properties": {} - }, - "2018695721": { - "name": "class PromoGift*", + "1312828205": { + "name": "class ServerSyncCinematicAction*", "bases": [ + "CinematicAction", "PropertyClass" ], - "hash": 2018695721, + "hash": 1312828205, "properties": { - "m_rewardID": { - "type": "unsigned __int64", + "m_timeOffset": { + "type": "float", "id": 0, "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1967538827 - }, - "m_rewardModifier": { - "type": "unsigned __int64", - "id": 1, - "offset": 112, - "flags": 31, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1325279053 + "hash": 2237098605 }, - "m_giftID": { + "m_eventToSend": { "type": "std::string", - "id": 2, + "id": 1, "offset": 80, - "flags": 31, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1975989138 + "hash": 1564059786 } } }, - "840668955": { - "name": "class SharedPointer", + "29733670": { + "name": "class ClientDerbyRemoveAction*", "bases": [ - "WizItemTemplate", - "ItemTemplate", - "GameObjectTemplate", - "CoreTemplate", + "DerbyRemoveAction", + "DerbyEffect", "PropertyClass" ], - "hash": 840668955, + "hash": 29733670, "properties": { - "m_behaviors": { - "type": "class BehaviorTemplate*", + "m_buffType": { + "type": "enum DerbyTalentBuffType", "id": 0, - "offset": 72, - "flags": 7, - "container": "Vector", - "dynamic": true, + "offset": 92, + "flags": 2097183, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1197808594 + "pointer": false, + "hash": 1149251982, + "enum_options": { + "Buff": 0, + "Debuff": 1, + "Neither": 2 + } }, - "m_objectName": { - "type": "std::string", + "m_kTarget": { + "type": "enum DerbyTargetType", "id": 1, "offset": 96, - "flags": 7, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2154940147 + "hash": 1807803351, + "enum_options": { + "kTargetInFront": 0, + "kTargetBehind": 1, + "kTargetFirst": 2, + "kTargetSelf": 3, + "kTargetAll": 4, + "kTargetLast": 5 + } }, - "m_templateID": { - "type": "unsigned int", + "m_nDuration": { + "type": "int", "id": 2, - "offset": 128, - "flags": 16777223, + "offset": 104, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1286746870 + "hash": 1110167982 }, - "m_visualID": { + "m_effectID": { "type": "unsigned int", "id": 3, - "offset": 132, - "flags": 7, + "offset": 88, + "flags": 24, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1118778894 + "hash": 2347630439 }, - "m_adjectiveList": { + "m_imageFilename": { "type": "std::string", "id": 4, - "offset": 248, - "flags": 7, - "container": "List", - "dynamic": true, + "offset": 112, + "flags": 131103, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 3195213318 + "hash": 2813328063 }, - "m_exemptFromAOI": { - "type": "bool", + "m_iconIndex": { + "type": "unsigned int", "id": 5, - "offset": 240, - "flags": 7, + "offset": 144, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1457879059 + "hash": 1265133262 }, - "m_displayName": { + "m_soundOnActivate": { "type": "std::string", "id": 6, - "offset": 168, - "flags": 8388615, + "offset": 152, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2446900370 + "hash": 1956929714 }, - "m_description": { + "m_soundOnTarget": { "type": "std::string", "id": 7, - "offset": 136, - "flags": 8388615, + "offset": 184, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1649374815 + "hash": 3444214056 }, - "m_nObjectType": { - "type": "enum ObjectType", + "m_targetParticleEffect": { + "type": "std::string", "id": 8, - "offset": 200, - "flags": 2097159, + "offset": 216, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2118905880, - "enum_options": { - "OT_UNDEFINED": 0, - "OT_PLAYER": 1, - "OT_NPC": 2, - "OT_PROP": 3, - "OT_OBJECT": 4, - "OT_HOUSE": 5, - "OT_KEY": 6, - "OT_OLD_KEY": 7, - "OT_DEED": 8, - "OT_MAIL": 9, - "OT_RECIPE": 17, - "OT_EQUIP_HEAD": 10, - "OT_EQUIP_CHEST": 11, - "OT_EQUIP_LEGS": 12, - "OT_EQUIP_HANDS": 13, - "OT_EQUIP_FINGER": 14, - "OT_EQUIP_FEET": 15, - "OT_EQUIP_EAR": 16, - "OT_BUILDING_BLOCK": 18, - "OT_BUILDING_BLOCK_SOLID": 19, - "OT_GOLF": 20, - "OT_DOOR": 21, - "OT_PET": 22, - "OT_FABRIC": 23, - "OT_WINDOW": 24, - "OT_ROOF": 25, - "OT_HORSE": 26, - "OT_STRUCTURE": 27, - "OT_HOUSING_TEXTURE": 28, - "OT_PLANT": 29 - } + "hash": 3048234723 }, - "m_sIcon": { + "m_overheadMessage": { "type": "std::string", "id": 9, - "offset": 208, - "flags": 131079, + "offset": 248, + "flags": 8388639, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2306259831 + "hash": 1701018190 }, - "m_equipRequirements": { - "type": "class RequirementList*", + "m_requirements": { + "type": "class RequirementList", "id": 10, "offset": 280, - "flags": 7, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2762617226 + "pointer": false, + "hash": 2840988582 }, - "m_purchaseRequirements": { - "type": "class RequirementList*", + "m_nActionType": { + "type": "enum DerbyActionTargetType", "id": 11, - "offset": 288, - "flags": 7, + "offset": 376, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3174641793 - }, - "m_equipEffects": { - "type": "class GameEffectInfo*", - "id": 12, - "offset": 296, + "pointer": false, + "hash": 3401355432, + "enum_options": { + "Jump": 0, + "Duck": 1, + "AllExceptCheer": 2, + "Cheer": 3 + } + } + } + }, + "1744590945": { + "name": "class PetGameConfig*", + "bases": [ + "PropertyClass" + ], + "hash": 1744590945, + "properties": { + "m_games": { + "type": "class SharedPointer", + "id": 0, + "offset": 80, "flags": 7, - "container": "List", + "container": "Vector", "dynamic": true, - "singleton": false, + "singleton": true, "pointer": true, - "hash": 836628351 - }, - "m_baseCost": { - "type": "float", - "id": 13, - "offset": 312, + "hash": 2009270740 + } + } + }, + "904079585": { + "name": "class SharedPointer", + "bases": [ + "Result", + "PropertyClass" + ], + "hash": 904079585, + "properties": { + "m_script": { + "type": "std::string", + "id": 0, + "offset": 72, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1565352651 + "hash": 2438918928 }, - "m_creditsCost": { - "type": "float", - "id": 14, - "offset": 320, + "m_function": { + "type": "std::string", + "id": 1, + "offset": 104, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 805514974 - }, - "m_avatarInfo": { - "type": "class AvatarItemInfoBase*", - "id": 15, - "offset": 328, - "flags": 7, + "hash": 1511192225 + } + } + }, + "1308486746": { + "name": "class DerbyModifyMoraleChance", + "bases": [ + "DerbyEffect", + "PropertyClass" + ], + "hash": 1308486746, + "properties": { + "m_buffType": { + "type": "enum DerbyTalentBuffType", + "id": 0, + "offset": 92, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2627321299 - }, - "m_avatarFlags": { - "type": "std::string", - "id": 16, - "offset": 336, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, "pointer": false, - "hash": 2347762759 + "hash": 1149251982, + "enum_options": { + "Buff": 0, + "Debuff": 1, + "Neither": 2 + } }, - "m_itemLimit": { - "type": "int", - "id": 17, - "offset": 316, - "flags": 7, + "m_kTarget": { + "type": "enum DerbyTargetType", + "id": 1, + "offset": 96, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1799746856 + "hash": 1807803351, + "enum_options": { + "kTargetInFront": 0, + "kTargetBehind": 1, + "kTargetFirst": 2, + "kTargetSelf": 3, + "kTargetAll": 4, + "kTargetLast": 5 + } }, - "m_holidayFlag": { - "type": "std::string", - "id": 18, - "offset": 352, - "flags": 7, + "m_nDuration": { + "type": "int", + "id": 2, + "offset": 104, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2994795359 + "hash": 1110167982 }, - "m_itemSetBonusTemplateID": { + "m_effectID": { "type": "unsigned int", - "id": 19, - "offset": 384, - "flags": 33554439, + "id": 3, + "offset": 88, + "flags": 24, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1316835672 + "hash": 2347630439 }, - "m_numPrimaryColors": { - "type": "int", - "id": 20, - "offset": 428, - "flags": 7, + "m_imageFilename": { + "type": "std::string", + "id": 4, + "offset": 112, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 981103872 + "hash": 2813328063 }, - "m_numSecondaryColors": { - "type": "int", - "id": 21, - "offset": 432, - "flags": 7, + "m_iconIndex": { + "type": "unsigned int", + "id": 5, + "offset": 144, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1310416868 + "hash": 1265133262 }, - "m_numPatterns": { - "type": "int", - "id": 22, - "offset": 436, - "flags": 7, + "m_soundOnActivate": { + "type": "std::string", + "id": 6, + "offset": 152, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 953162171 + "hash": 1956929714 }, - "m_school": { + "m_soundOnTarget": { "type": "std::string", - "id": 23, - "offset": 392, - "flags": 7, + "id": 7, + "offset": 184, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2438566051 + "hash": 3444214056 }, - "m_arenaPointCost": { - "type": "int", - "id": 24, - "offset": 440, - "flags": 7, + "m_targetParticleEffect": { + "type": "std::string", + "id": 8, + "offset": 216, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1819621796 + "hash": 3048234723 }, - "m_pvpCurrencyCost": { - "type": "int", - "id": 25, - "offset": 444, - "flags": 7, + "m_overheadMessage": { + "type": "std::string", + "id": 9, + "offset": 248, + "flags": 8388639, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 645595444 + "hash": 1701018190 }, - "m_pvpTourneyCurrencyCost": { - "type": "int", - "id": 26, - "offset": 448, - "flags": 7, + "m_requirements": { + "type": "class RequirementList", + "id": 10, + "offset": 280, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 517874954 + "hash": 2840988582 }, - "m_rank": { - "type": "int", - "id": 27, - "offset": 424, - "flags": 7, + "m_moraleChanceActionMap": { + "type": "class MoraleModificationMap", + "id": 11, + "offset": 376, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 219803942 - }, - "m_boyIconIndex": { - "type": "int", - "id": 28, - "offset": 452, + "hash": 1654668404 + } + } + }, + "904013117": { + "name": "class std::vector >", + "bases": [], + "hash": 904013117, + "properties": {} + }, + "1308408678": { + "name": "class std::list >", + "bases": [], + "hash": 1308408678, + "properties": {} + }, + "1744590948": { + "name": "class PetGameConfig", + "bases": [ + "PropertyClass" + ], + "hash": 1744590948, + "properties": { + "m_games": { + "type": "class SharedPointer", + "id": 0, + "offset": 80, "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 802140453 - }, - "m_girlIconIndex": { - "type": "int", - "id": 29, - "offset": 456, + "container": "Vector", + "dynamic": true, + "singleton": true, + "pointer": true, + "hash": 2009270740 + } + } + }, + "465628835": { + "name": "class ResPrepaidTime*", + "bases": [ + "ResultSourceType", + "Result", + "PropertyClass" + ], + "hash": 465628835, + "properties": { + "m_sourceType": { + "type": "std::string", + "id": 0, + "offset": 80, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 832706793 + "hash": 2305508654 }, - "m_leashOffsetOverride": { - "type": "class SharedPointer", - "id": 30, - "offset": 464, - "flags": 7, + "m_zoneLevelMax": { + "type": "unsigned int", + "id": 1, + "offset": 76, + "flags": 263, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1692586788 + "pointer": false, + "hash": 1028933895 }, - "m_rarity": { - "type": "enum RarityType", - "id": 31, - "offset": 460, - "flags": 2097159, + "m_zoneLevelMin": { + "type": "unsigned int", + "id": 2, + "offset": 72, + "flags": 263, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2253792108, - "enum_options": { - "RT_COMMON": 0, - "RT_UNCOMMON": 1, - "RT_RARE": 2, - "RT_ULTRARARE": 3, - "RT_EPIC": 4 - } - }, - "m_currencyType": { - "type": "enum CurrencyTemplate::CurrencyTypes", - "id": 32, - "offset": 480, - "flags": 2097183, + "hash": 1028934149 + } + } + }, + "30915417": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 30915417, + "properties": { + "m_eRace": { + "type": "enum eRace", + "id": 0, + "offset": 72, + "flags": 136314887, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 461057706, + "hash": 963057554, "enum_options": { - "CURRENCY_GOLD": 0, - "CURRENCY_ARENATICKETS": 1, - "CURRENCY_CROWNS": 2, - "CURRENCY_EC1": 3, - "CURRENCY_EC2": 4, - "CURRENCY_PVPCUR": 5, - "CURRENCY_PVPTOURNEYCUR": 6, - "CURRENCY_LOYALTYTOKENS": 7 + "Bat": 88066, + "BatLightning": 1472842576, + "Boar": 2624962, + "CatThug": 1855674386, + "ChristmasElf": 819908552, + "ChristmasSnowman": 1146515225, + "Colossus_Ice": 1063279538, + "Cyclops": 1691813655, + "DragonBeta": 417003588, + "DragonFriendly": 69049013, + "EvilSnowman": 1579630926, + "FireElf": 443793687, + "Firecat": 2045525741, + "Frog": 2274918, + "FrostBeetle": 7692383, + "GhostBlue": 1097396892, + "GhostGreen": 882822629, + "GhostRed": 560510742, + "GhostYellow": 909974358, + "Ghoul": 82556199, + "GoatMonk": 486215564, + "GolemBrass": 1057388325, + "GolemClockwork": 1143380031, + "GolemSteel": 1660583674, + "GolemWood": 1426849876, + "HalloweenCat": 1042869199, + "Heckhound": 626736403, + "Helephant": 719065368, + "Human": 79806088, + "Hydra": 70785800, + "Imp": 84361, + "Krokomummy": 555755242, + "Kroktut": 1352354178, + "Leprechaun": 2106466410, + "LeprechaunPattyDay": 380507781, + "LightningBat": 228257682, + "Mannequin": 428442544, + "Minotaur": 949570680, + "Mount_Broom": 94637995, + "Mount_Cat": 1150940211, + "Mount_Dragon": 1565720148, + "Mount_Horse": 2054712767, + "Mount_PlayerWings": 589829552, + "Nikkos": 1563122418, + "NinjaPig": 607400740, + "Orthus": 1552590225, + "Piggle": 1897753328, + "Piggle_Valentine": 687697592, + "Piggle_ValentinePart2": 1760391091, + "Pixie": 74836240, + "RatMagician": 885542120, + "SalamanderFire": 48480175, + "SalamanderIce": 2011152164, + "SalamanderStorm": 600331072, + "Satyr": 84793363, + "Scarab": 2143810477, + "Sheep": 86220083, + "SkeletonArmored": 1791586239, + "SnowSerpent": 138621543, + "Spider": 1603064269, + "SpiderBlack": 559353179, + "SpiderBrown": 557941675, + "SpiderCrystal": 2119625297, + "SpiderGolem": 1632616514, + "Sprite": 1889156557, + "SpriteDark": 1888685518, + "Stormzilla": 252684095, + "SunBird": 1602211198, + "Transformation_ArmoredSkeleton": 1861349834, + "Transformation_CatThug": 1175387611, + "Transformation_Cat_Bandit": 1012395694, + "Transformation_ClockworkGolem": 601121214, + "Transformation_Cyclops": 620156297, + "Transformation_DarkFairy": 1206757203, + "Transformation_DraconianSorcerer": 1212016810, + "Transformation_Draconian": 450730089, + "Transformation_EarthColossus": 140119452, + "Transformation_EvilSnowman": 1497097122, + "Transformation_FatGobbler": 634003800, + "Transformation_FireElemental": 822233230, + "Transformation_FireElf": 46585468, + "Transformation_FireSalamander": 2118418114, + "Transformation_Gobbler_Skinny": 162365207, + "Transformation_GolemSteel": 1329184184, + "Transformation_Ice_Colossus": 430406408, + "Transformation_Krokomummy": 1644615769, + "Transformation_MagmaMan": 545064542, + "Transformation_Mander": 88998828, + "Transformation_NinjaPig": 1029132174, + "Transformation_Ninja_Pig_04": 7093548, + "Transformation_RatThug": 1175352795, + "Transformation_RavenMystic": 1443197359, + "Transformation_StormElemental": 637088511, + "Transformation_Treant": 1874998327, + "Transformation_WarPig": 691088645, + "Transformation_WolfScout": 263523463, + "Transformation_WolfWarrior": 6092463, + "Transformationn_SkeletonPirate": 1821341863, + "Treant": 1396597132, + "Troll": 82261620, + "Unicorn": 550546918, + "Unknown": 718677478, + "Wolverine": 528843083, + "Wraith": 1788506505, + "Wyrmkin": 379044612, + "Transformation_CyrusDrake": 94277831, + "PetEgg": 1973167984, + "GhostLady": 493415959, + "Banshee": 827805677, + "GobblerRed": 250135875, + "Ghoul_Gravedigger": 161812468, + "SkeletonWarrior": 734585814, + "BansheeBoss": 806445565, + "Seraph": 1792950125, + "CrabKing": 277875784, + "UndeadCaster": 1680689397, + "DragonFrontier": 1829438301, + "HeckhoundGhost": 872406464, + "Mount_Unicorn": 212699468, + "Jellyfish": 910724608, + "SeaDragon": 1194541306, + "Turtle": 1897184620, + "Starfish": 1447562471, + "SpinyFish": 162948281, + "Mount_Gryphon": 2110522960, + "Mount_Shark": 1170186623, + "Mount_Manta": 979931598, + "Mount_Seahorse": 1554833818, + "Mount_Seahorse_Tough": 1245859453, + "Mount_Koi": 1150937409, + "Mount_Lobster": 2025618875, + "Mount_Turtle": 1490849128, + "VenusFlyTrap": 1612039757, + "GDN_MED_BabyCarrots": 327334743, + "GDN_SM_BoomShroom": 31324632, + "GDN_SM_Dandelion": 2058674142, + "GDN_SM_Disparagus": 1732989489, + "GDN_MED_EvilSnowPeas": 747408607, + "GDN_SM_FicklePickle": 205381955, + "GDN_SM_HappyHolidaisy": 1736236340, + "GDN_MED_HelephantEars": 1803669659, + "GDN_MED_HoneySickle": 424149132, + "GDN_LG_NinjaFig": 847338104, + "GDN_LG_SnapDragon": 1076151689, + "GDN_SM_StinkWeed": 845383431, + "GDN_MED_TrumpetVine": 1922690264, + "GDN_MED_VenusFlyTrap": 1560899638, + "GDN_SM_Laughodil": 1278979588, + "GDN_LG_BreadFruitBush": 533042934, + "GDN_MED_PricklyBearCactus": 1236846986, + "GDN_MED_KingParsley": 110148182, + "LeprechaunPatriotic": 414730890, + "SeraphYuletide": 1325846853, + "DragonGhost": 1502126893, + "UnicornNightmare": 604358256, + "EvilSnowmanSandman": 1579432150, + "Colossus_Spirit": 422514215, + "Rock": 2393554, + "GDN_MED_GivingTree": 2047236132, + "Egg": 70853, + "Mount_Carpets": 1602744888, + "Kraken": 1737191829, + "Wyvern": 1727802601, + "Phoenix": 1765559002, + "Judgement": 562901781, + "ForestLord": 1390734923, + "Humongofrog": 1272123051, + "Scarecrow": 41441599, + "Mount_Ram": 77196599, + "BasketSnake": 1835657086, + "Samoorai": 522797493, + "Transformation_RavenWarrior": 701169336, + "PhoenixStorm": 1325268802, + "PhoenixDeath": 1281634042, + "GDN_LG_CouchPotatoes": 879742725, + "GDN_MED_KeyLimes": 811516024, + "Mount_BoneDragon": 1023618313, + "Mount_BigBoneDragon": 1124383680, + "Mount_FairyWings": 1904926612, + "Mount_DragonWings": 755225925, + "Mount_Pegasus": 1621244140, + "GDN_MED_BellPepper": 1710238687, + "GDN_MED_GrapesOfWrath": 1068787103, + "GDN_SM_TigerLily": 1899057048, + "WysteriaPiggle": 49173891, + "Mount_Wyvern": 1658410744, + "Mount_2P_Rhino": 1052779475, + "NightHawk": 358964390, + "Giraffe": 935214826, + "Mount_Hawk": 2070898895, + "Mount_HalloweenNightmare": 726136378, + "GobblerHalloween": 1482399836, + "Leopard": 1606863715, + "Skink": 76950867, + "Mount_Ostrich": 466111322, + "Mount_Crocagator": 1981222087, + "Transformation_Blacktusk-01": 401543565, + "Mount_Hippogriff": 2043817624, + "Transformation_Gorilla-01": 1555853240, + "Transformation_Gorilla-02": 1606184888, + "Mount_Raven": 94983735, + "Mount_Chrismoose": 1822495199, + "Mount_CandyCane": 1148551147, + "Ivy_League": 925492799, + "GDN_MED_Ivy_League": 1630077794, + "Mount_Kirin": 1168691825, + "GDN_SM_Moonflower": 2068754330, + "GDN_MED_BoonTree": 788055729, + "Snowball": 2046118016, + "Foo_Dog": 1549710807, + "ShenlongDragon": 932676736, + "Monkey": 1233866291, + "Wolfhound": 626884686, + "Redcap": 1540319086, + "Raven": 79941650, + "HollowKnight": 1107268274, + "Book": 2405826, + "GDN_MED_AngoraBunnyEars": 1547559854, + "GDN_MED_FortuneCookieTree": 786686214, + "GDN_MED_GooseTree": 809354938, + "GDN_SM_HoneyBeePlant": 1528880373, + "GDN_MED_BambooShoots": 1096708900, + "GDN_SM_Huckleberries": 1937475840, + "Rock_Moustache": 962221287, + "Efreet_Myth": 1834555522, + "Efreet": 1401700123, + "Mammoth": 1395147745, + "Triton": 1730466188, + "Gnome": 74954215, + "BoneDragon": 429245206, + "Basilisk": 1457899086, + "Chimera": 529027789, + "Transformation_GammaTemplate": 1337834518, + "Mount_Camel": 1168198963, + "Mount_RenaissanceWings": 1049782088, + "Bull_Mount": 1713506759, + "Mount_Owl": 1150938242, + "Mount_Alphyn": 487264165, + "Mount_Stag": 1150353823, + "Mount_Auroch": 509865325, + "Mount_Warg": 1150358072, + "StrangeBeast": 511334734, + "Efreet_Ice": 1820009122, + "Efreet_Storm": 1269986674, + "GDN_LG_AlligatorPear": 1293913372, + "Mount_2P_Treant": 928450863, + "Mount_2P_Dragon": 1431637933, + "Mount_Pogo_Stick_WC": 1462849298, + "Mount_Pogo_Stick_MB": 1349603090, + "GDN_LG_MeltingCheese": 1914589015, + "GDN_SM_FishOnAVine": 1734955358, + "GDN_LG_AngelOak": 1539539424, + "GDN_LG_MeltingCheese_Angel": 1254781264, + "SnowyOwl": 1682262138, + "Mount_3P_Hydra": 1207475250, + "WeaselMinstrel": 1541234616, + "MOUNT_Rickshaw": 938282973, + "Transformation_Sherlock-Bones": 509126601, + "Mount_Phoenix": 556355452, + "Toaddle": 597488187, + "Pantera": 528797696, + "WildfireTreant": 673362041, + "StoneTiger": 746336665, + "Blowfish": 1447737334, + "Smith": 78327187, + "FlyingCat": 1254472614, + "RamWarrior": 536916302, + "Ladybug": 1846384669, + "BurlapBoy": 607590898, + "DeerKnight": 560802130, + "Gargoyle": 1227701700, + "Chameleon": 596131510, + "Scorpion": 1462253104, + "GDN_SM_BoiledPeanuts": 544885684, + "GDN_SM_ClockFlower": 676513046, + "GDN_SM_DeadBeets": 650783482, + "GDN_MED_SnowApple": 1916648180, + "Eyecaramba_Violet": 1804780775, + "Eyecaramba_Green": 750346574, + "Eyecaramba_Orange": 687614854, + "Piggle_Grandfather": 131445665, + "Velociraptor": 1042311818, + "Babydactyl": 1180982194, + "Stegosaurus": 476811765, + "Mount_Pegasus_Spectral": 948250730, + "Mount_2P_Scarydactyl": 1808983335, + "Mount_2P_TRex": 1495851852, + "Therizinosaurus": 80337863, + "Runtosaurus": 476200406, + "FrilledLizard": 420993517, + "Mount_Ankylosaurus": 669692274, + "Mount_Triceratops": 1126950204, + "Mount_2P_Glider": 1630365881, + "Transformation_Thunderhorn": 1045262037, + "Transformation_Jaguar": 1080966062, + "Transformation_Pteranadon": 273836142, + "Transformation_ShadowWeaver": 255927111, + "Transformation_EagleWarrior": 1880471875, + "Mount_Falalalallama": 389890123, + "Mount_2P_WinterTreant": 1850265056, + "GDN_LG_MissileToe": 1767792974, + "GDN_MED_PointSetta": 647257205, + "Nutcracker2012": 1598217699, + "Coal2012": 1627852119, + "Mount_Sleigh": 1636615519, + "Mount_Sabertooth": 1613031507, + "Mount_MechanicalWings": 1014917438, + "PiranhaHunter": 686271163, + "Quetzal": 2020925822, + "Mount_Sloth": 1169387359, + "HollowKnightLife": 2114081886, + "BettaFish": 138088968, + "MummyCat": 62372925, + "TrojanHorse": 1725299194, + "WC_Storm_Possessed": 186960228, + "AV_Possessed": 1106693085, + "AZ_Possessed": 1106692701, + "CL_Possessed": 1106692255, + "KT_Possessed": 1106693015, + "MS_Possessed": 1106692977, + "WC_Possessed": 1106692459, + "Mount_2P_Whale": 448824263, + "Mount_2P_Chariot": 88035298, + "Mount_WarBoar": 1159836211, + "Mount_Palanquin": 47587550, + "BearCub": 672664722, + "Transformation_Minotaur": 1454233452, + "DragonGauntlet": 797645257, + "DeathUnicorn": 924144161, + "Flamingo": 1488424911, + "Mount_Gorilla": 1939919432, + "Mount_WarUnicorn": 1361393198, + "GargoyleMyth": 1819685060, + "TikiMan": 16098567, + "Siren": 79937811, + "GoldenRam": 410220227, + "Harpy": 96026632, + "SwordShield": 1668411785, + "ClockworkKnight": 1059948980, + "Mount_MechanicalEagle": 1720948645, + "Mount_Cloud": 1166233435, + "Mount_Surfboard": 1914250039, + "Mount_BetaDragon": 1023653721, + "Mount_BeeWings": 1387988401, + "Vampire": 524731385, + "FrankenBunny": 589797989, + "BumbleBee": 249592226, + "Mount_Dragonfly": 1028843656, + "BronzeGolem": 1320867859, + "TarantulaHawk": 1983939429, + "Mount_Grasshopper": 1852850928, + "FlyingSquirrel": 847551166, + "GDN_MED_Sunion": 1652707634, + "GDN_MED_SwordFern": 548761438, + "GDN_SM_SugarKhrystal": 267539461, + "GDN_SM_SawPalmetto": 1892888046, + "GDN_LG_FacePalm": 2050814140, + "GDN_LG_QueenCrapeMyrtle": 80378450, + "Transformation_ShadowTank": 1304943609, + "Transformation_ShadowHeal": 1254024185, + "Transformation_ShadowDPS": 87276537, + "Mount_Noelephant": 1383672248, + "SaintBernard": 572932242, + "ParkaFox": 2009808189, + "Goose": 75019719, + "Mount_Coconut": 791151432, + "CreepyBeetle": 345594179, + "BabyDragonfly": 1367084335, + "FennecFox": 41315063, + "PP_Leviathan": 833901526, + "PP_SunSerpent": 1062677009, + "PP_LordOfWinter": 960214698, + "PP_Medusa": 867812931, + "PP_Dryad": 147654656, + "PP_AvengingFossil": 315904647, + "PP_Sabertooth": 1799146677, + "Mount_Butterfly": 1283940943, + "Mount_Hare": 2070851023, + "Transformation_MorganthB": 197306990, + "Transformation_MorganthC": 197831278, + "Transformation_MorganthD": 200452718, + "BabyPegasus": 1215000859, + "ArcaneHelp": 1899247549, + "Mount_Vines": 98389624, + "Mount_ArcaneMinecart": 2001270930, + "Hobgoblin": 2133668461, + "Mount_2P_Rowboat": 237071469, + "ForestSpirit": 1178454602, + "Mount_SpiritWolf": 531991076, + "Otter": 84138671, + "OrigamiBird": 550984083, + "DinoSkeletal": 233277835, + "Mount_HarrowingsGreen": 1605746772, + "Mount_HarrowingsBlue": 477152436, + "Mount_HarrowingsPurple": 2092807554, + "RedPanda": 1744233845, + "Ibis": 2665577, + "Corgi": 78823875, + "Mount_Yak": 996545739, + "Mount_FlyingBalance": 436519643, + "Transformation_ShadowMalistaire": 1043814435, + "Transformation_DragonMalistaire": 841867699, + "Mount_Scarab": 1687658791, + "Transformation_MisterHound": 1973578844, + "Mount_BahHumbug": 55114077, + "Skates": 1568993965, + "Moose": 75019725, + "Mount_Gargoyle": 1456663874, + "GDN_MED_VenusFlyTrapEpic": 1594069606, + "Mount_PlayerWingsPink": 19403046, + "GDN_LG_AlligatorPearEpic": 1326804812, + "Pet_Armadillo": 825736847, + "Mount_JoustingDestrierDyeable": 1683448768, + "GDN_MED_VampireCarrots": 871596496, + "GDN_SM_WhiteTigerLilyEpic": 1703271434, + "GDN_LG_NinjaFigEpic": 938504823, + "GDN_LG_SnapDragonEpic": 2071674466, + "GDN_MED_HelephantEarsEpic": 719166107, + "GDN_MED_TrumpetVineEpic": 225854518, + "GDN_SM_DandelionEpic": 728637442, + "GDN_SM_HuckleberriesEpic": 1903258448, + "GDN_MED_SnowAppleEpic": 1231175967, + "GDN_SM_BoomShroomEpic": 981598771, + "GDN_MED_KingParsleyEpic": 2038371004, + "Mount_Raptor": 749695031, + "Pet_Toucan": 581477475, + "Pet_Squirrel": 969881395, + "Mount_WonkyDonkey": 1481657312, + "Mount_HawkPatriotic": 509149743, + "Pet_FrogAssistant": 1945041750, + "Mount_Cat2": 1151054899, + "Mount_Cat2BW": 1603515443, + "Pet_ArmadilloBW": 825733899, + "Pet_FrankieForearms": 1100195857, + "Mount_SolarSabre": 1281093703, + "MNT_MechOstrich": 258667969, + "MNT_BootsBalance": 1799191558, + "MNT_BootsDeath": 1034912971, + "MNT_BootsFire": 606061658, + "MNT_BootsIce": 2142643294, + "MNT_BootsLife": 773751898, + "MNT_BootsMyth": 144792486, + "MNT_BootsStorm": 1525245121, + "Pet_CorgiBirthday": 1951779369, + "OrigamiBirdBDay": 1909935955, + "Pet_FlyingBlackCat": 432111988, + "Mount_Narwhal": 449637834, + "Mount_NightOwl": 1648420845, + "Pet_Penguin": 137342907, + "MNT_PowerGemUnicorn": 411234062, + "Pet_CrystalButterfly": 512136094, + "Mount_BabyMammoth": 185831059, + "MNT_BabaYaga": 564874997, + "Pet_BabySeal": 657606984, + "Pet_BabyYeti": 635847496, + "Transformation_BallerinaBear": 1525333600, + "Mount_StagYuletide": 1508680687, + "Transformation_TitanMedium": 1700742736, + "Transformation_TitanLarge": 718614967, + "Pet_SirenIce": 849851564, + "Mount_FlyingDeath": 1717725588, + "Mount_FlyingFire": 1177216332, + "Mount_FlyingIce": 1238841184, + "Mount_FlyingLife": 433397684, + "Mount_FlyingMyth": 164983572, + "Mount_FlyingStorm": 375872049, + "Dragonling": 1730534849, + "Pet_EggChicken": 952873217, + "HeckhoundGhost_MAW": 893368960, + "Mount_WinterTrain": 751515281, + "Mount_RubberDucky": 1826548479, + "Pet_BansheeSpellwrit": 917979583, + "Pet_SamooraiSpellwrit": 370057597, + "Mount_UnicornAstral": 886914505, + "Guest_Boochbeard": 1958574095, + "Pet_MouseSister": 1267930350, + "Pet_MouseFather": 2010008339, + "Pet_VampireSquirrel": 250588691, + "Mount_CoffinCar": 1387606595, + "Mount_BabyElephant": 2026559639, + "Pet_RoadHog": 601156960, + "Mount_WolfGryphonWings": 543038283, + "MNT_ClockworkSteed": 891371132, + "Mount_Chopper": 1196683136, + "Pet_ButterflyLamb": 527214392, + "Pet_MouseMother": 2012687123, + "Pet_MouseBrother": 1174380856, + "Pet_Cherub": 769208559, + "GDN_SM_Jewel": 1104045832, + "MR_Death_Duncan_Grimwater": 1850289001, + "Mount_DesertRunner": 2049036229, + "Pet_MonkeyMirage": 418612892, + "Pet_ClockworkOwl": 1038482431, + "Pet_NinjaTurtle": 2024540686, + "Mount_Vines_Halloween": 82852149, + "Mount_SwarmBat": 1151836459, + "Mount_2P_NinjaDragon": 1239694057, + "Mount_Gobler": 1820615236, + "Mount_MaryleboneCar": 2027689685, + "JackOLantern": 1016361578, + "Transformation_DjinnCommonA_Balance": 996127128, + "Transformation_MedicineMode": 25960701, + "CactusHopper": 1956293007, + "Transformation_Mimic_ChestGold_A": 414145432, + "Mount_Ghoulture": 1067671195, + "Pet_Macaw": 1087278472, + "Pet_SandWorm": 653200803, + "Transformation_DromelDancer": 1071824116, + "Pet_Bunnies": 695874547, + "Mount_Snowboard": 1914380015, + "Transformation_DrommelDancer": 226294468, + "Mount_Carpet_New": 1618650322, + "Mount_BunnySleigh": 599915427, + "Helephant_Heart": 419161272, + "Mount_Snowboard_Holiday": 876339060, + "Transformation_GhostDog": 646575420, + "Transformation_PrinceGobblestone": 693826496, + "Transformation_Mithraya": 1240010601, + "Transformation_LuskaCharmbeak": 897469730, + "Transformation_YoungCyrusDrake": 15595663, + "Kookaburra": 1069759154, + "BorealisGolemPet": 797488492, + "FlyingEyePet": 505959833, + "StormCloudPet": 548463069, + "BullPet": 1993917801, + "OpossumPet": 284003652, + "GhoulturePet": 939920734, + "StormCloudPetB": 548463001, + "StormCloudPetC": 548463003, + "Guest_LordNightshade": 1221409981, + "BullPetB": 1993917561, + "BullPetC": 1993917553, + "BullPetD": 1993917513, + "Transformation_ShadowCrit": 1392195065, + "Mount_Pennyfarthing": 1551926344, + "Mount_RowboatPirate": 2079208803, + "Mount_IceCube": 1261861595, + "Guest_LostMaiden": 883675592, + "Guest_BoatswainMcGee": 1359750850, + "Guest_ChiefMateMcGurk": 329643845, + "Guest_DoomedBones": 2015643882, + "Guest_SpectreoftheBrocken": 266357448, + "Guest_DrownedKnight": 1100966093, + "Guest_TarntheDrowned": 329540205, + "Guest_DisloyalKnight": 1853240753, + "Guest_NamelessKnight": 1065677876, + "Guest_LambentFire": 489886605, + "Guest_LordoftheBrocken": 1662003371, + "Guest_StormCaiman": 1147500291, + "Guest_GrinningDeathMoon": 737595789, + "Guest_MoonSkullWight": 1720039490, + "Guest_HuemacSpearWreath": 1522021131, + "Guest_HowlingBanshee": 1340855338, + "Guest_Sea-Booter": 1818491983, + "Guest_DeadRover": 1009273257, + "Guest_CelestianRemnant": 1312268448, + "Guest_Shadow-WebConscript": 1500529411, + "Guest_Shadow-WebMercenary": 623672171, + "Guest_Shadow-WebWraith": 810956416, + "Guest_Shadow-WebHaunt": 500586883, + "Guest_CelestianPartisan": 633346892, + "Guest_CelestianDefender": 482102727, + "Guest_ThraleBonestriker": 1172972733, + "Guest_VorgenSoulbreaker": 1935693246, + "Guest_ServusBloodsword": 1703995647, + "Guest_QueenCalypso": 845803519, + "Guest_BlueBart": 77043390, + "Guest_KarolakNightspinner": 1008737316, + "Guest_ArachtusDuskweb": 1787750209, + "Guest_ZhalarStarcloud": 1453644105, + "Guest_NarallorNightborn": 1963363700, + "Guest_SelwynSkywatcher": 1413136893, + "Guest_OsseusNightreaver": 306827003, + "Guest_IrateBanshee": 865143109, + "Guest_FuriousHowler": 1607252558, + "Guest_CryingSpirit": 1559074820, + "Guest_UndeadDraconian": 169249571, + "Guest_ReanimatedDraconian": 247067807, + "Guest_GhastlySlave": 80127661, + "Guest_BoundSpecter": 369706568, + "Guest_NecroticHaunter": 1714841563, + "Guest_LoathsomeCreeper": 1087245229, + "Guest_FleshrotRetriever": 1925148031, + "Guest_BarbarianSpirit": 2112552732, + "Guest_BeghastionCrowcaller": 586628832, + "Guest_BeghastionFieldburner": 1650751959, + "Guest_BoneWarrior": 76802026, + "Guest_FleshlessSentry": 708431820, + "Guest_PirateRavager": 945157059, + "Guest_RottenScallywag": 974666855, + "Guest_ArmoredBonewalker": 1444568072, + "Guest_UndeadWizard": 1622435563, + "Guest_SoulSearcher": 2094392941, + "Guest_DecayingBlackguard": 412324062, + "Guest_FoulReaper": 919877614, + "Guest_NightShadow": 1675932226, + "Guest_MotleyCrew": 653779218, + "Guest_OrinGrimcaster": 472649066, + "Guest_GhostofSylviaDrake": 218332449, + "Guest_VikaMarkmaker": 1145181168, + "Guest_VasekAshweaver": 1001434369, + "Guest_FireWraith": 1027720368, + "Guest_HungrySoul": 1722435576, + "Guest_FrostBones": 456145606, + "Guest_SnowSkull": 835837850, + "Guest_WinterSkull": 1556601065, + "Guest_LothinDoombringer": 860995070, + "Guest_MimirWinterbane": 1111898070, + "Guest_KulgrimSoulsunder": 278037985, + "Guest_HitojiniDeathcaster": 1144499043, + "Guest_GaikotsuSkeleton": 1113949902, + "Guest_PhantomAce": 1917639347, + "Guest_PhantomGlider": 849918336, + "Guest_Krokomummy": 857773886, + "Guest_NiriniAncientGuard": 359313880, + "Guest_NiriniFireSpirit": 1863811476, + "Guest_VaultHaunter": 197723476, + "Guest_VigilantDefender": 171276829, + "Guest_WanderingAhnicSpirit": 1702865088, + "Guest_ForgottenDjeseritSoul": 1170568256, + "Guest_KaranahnDeathfeeder": 1612857711, + "Guest_ShamblingAhnic": 1579129677, + "Guest_RisenDjeserit": 287855500, + "Guest_KaranahnMortifier": 874288111, + "Guest_DjeseritDweller": 2058423665, + "Guest_AhnicStrider": 1776992302, + "Guest_GuardianoftheFang": 1816795524, + "Guest_DefenderoftheFang": 354353604, + "Guest_ProtectoroftheFang": 1290191037, + "Guest_SouloftheCharmed": 422890577, + "Guest_KaranahnKeeper": 77581557, + "Guest_NiriniIntimidator": 677205957, + "Guest_CondemnedSoldier": 449152244, + "Guest_NimahtheWicked": 1298248873, + "Guest_AkoriNirini": 1123159753, + "Guest_SoulScavenger": 892852198, + "Guest_KeeperoftheFang": 1676773499, + "Guest_ItennuSokkwi": 699159408, + "Guest_Tempestra": 334938435, + "Guest_QueenIrisiDjeserit": 1861434100, + "Guest_TheBonekeeper": 1302503449, + "Guest_CryptScavenger": 1893795791, + "Guest_Soulsapper": 1699756010, + "Guest_KingUroAhnic": 1788825731, + "Guest_KingShemetDjeserit": 1350067043, + "Guest_UnholyWraith": 1871146013, + "Guest_PikeSpiritcrusher": 498715531, + "Guest_SpellwritScreamer": 801626733, + "Guest_SpellwritRonin": 1671439174, + "Guest_Shrieker": 805966229, + "Guest_GravePhantom": 731622936, + "Guest_NightmareSpirit": 230709057, + "Guest_VengefulCreeper": 1100197884, + "Guest_TombRoamer": 1277825068, + "Guest_ShieldSkeleton": 1634270152, + "Guest_AgonyWraith": 30384496, + "Guest_IcyGhost": 768353592, + "Guest_Half-wittedSkeleton": 647996362, + "Guest_LazyHenchman": 1329554426, + "Guest_TiredFighter": 210248632, + "Guest_Screecher": 469007005, + "Guest_SeethingWraith": 664913100, + "Guest_ColdConfusion": 1304943934, + "Guest_OssuaryConscript": 1017667150, + "Guest_Ghulture": 1330558655, + "Guest_BodyGuard": 1048581801, + "Guest_SpectralGuardian": 422805602, + "Guest_VaultConscript": 1388398065, + "Guest_FootPatrol": 1692393321, + "Guest_ArmedGuard": 2045920536, + "Guest_Chilly": 1764665905, + "Guest_Achey": 973370519, + "Guest_Sneezy": 1769440773, + "Guest_Cough": 1170200073, + "Guest_Shadowbones": 1316133167, + "Guest_ForgottenConscript": 1466348281, + "Guest_BarracksGuardian": 236603440, + "Guest_CryptConscript": 314755436, + "Guest_DurvishSeeker": 1825622267, + "Guest_MedicineMode": 167015574, + "Guest_Myriarch2": 593881680, + "Guest_Myriarch3": 593881616, + "Guest_MyriarchEphialtes": 773531895, + "Guest_MotherGhulture": 1585201915, + "Guest_CaptainCosrow": 727107332, + "Guest_VizierRafaj": 214040637, + "Guest_DarkmoorSerf": 1522169114, + "Guest_DarkmoorSquire": 1822567109, + "Guest_ScarletWampyr": 1683954247, + "Guest_DraconianRevenant": 741497298, + "Guest_DraconianEidolon": 107733297, + "Guest_AnguishedWraith": 1078602022, + "Guest_DraconianPyromancer": 729577007, + "Guest_DraconianThaumaturge": 189734361, + "Guest_DraconianDiviner": 472633746, + "Guest_DraconianConjurer": 1824962835, + "Guest_DraconianTheurgist": 1828628416, + "Guest_DraconianNecromancer": 175364324, + "Guest_DraconianSorcerer": 1262893339, + "Guest_SirBlackwater": 366308464, + "Guest_AkhtangWormCrawl": 1589032404, + "Guest_SpiritofDarkmoor": 579455915, + "Guest_ShanevonShane": 2096517522, + "Guest_YevgenyNightCreeper": 1535282881, + "Guest_MalistairetheUndying": 824508513, + "Guest_Bunferatu": 1015806005, + "Guest_CountBelaBlackSleep": 761647679, + "Guest_DeathSoldier": 1715141574, + "Guest_SorrowWhisperer": 556532003, + "Guest_GriefSpectre": 1425488559, + "Guest_HowlingShade": 631460247, + "Guest_WalkingDead": 318527090, + "Guest_Akuji": 977635799, + "Guest_TorturedKakedaSoul": 1716874833, + "Guest_KakedaSpiritSlave": 1814699344, + "Guest_DishonoredSamoorai": 320085744, + "Guest_CursedRonin": 1204095686, + "Guest_TomugawatheEvil": 166125424, + "Guest_OyotomitheDefiler": 1672714483, + "Guest_Fushiko": 801492770, + "Guest_BrokenLandGuardian": 294671991, + "Guest_ShatteredSkyGuardian": 746681463, + "Guest_SunderedSeamGuardian": 1439618652, + "Guest_BrokenLandSpirit": 860105895, + "Guest_ShatteredSkySpirit": 2104112380, + "Guest_SunderedSeamSpirit": 69572311, + "Guest_LostSoul": 204361577, + "Guest_RottingFodder": 308249734, + "Guest_HauntedMinion": 689597338, + "Guest_FieldGuard": 1175228991, + "Guest_SkeletalWarrior": 778393993, + "Guest_SkeletalPirate": 1476730220, + "Guest_WanderingSpecter": 126188449, + "Guest_LivingScarecrow": 1442943145, + "Guest_FrostPhantom": 1809776664, + "Guest_FireShrieker": 173332719, + "Guest_CryptCrawler": 2118799272, + "Guest_ViridianSpecter": 383149977, + "Guest_ArgentClatterer": 525414714, + "Guest_SwimmingSpecter": 1494025094, + "Guest_ScarletScreamer": 1689589811, + "Guest_BoneDigger": 1351421123, + "Guest_HowlingGhost": 664019391, + "Guest_SkeletalSoldier": 750463116, + "Guest_MaidenofHate": 444442868, + "Guest_SkeletalRetainer": 1409032775, + "Guest_SoulHunter": 1900267551, + "Guest_MidnightShuffler": 1991052065, + "Guest_PlaguedSoul": 419071561, + "Guest_HauntingBanshee": 345837052, + "Guest_SimontheSayer": 1352807820, + "Guest_TheHarvestLord": 1923575206, + "Guest_LadyBlackhope": 1403431623, + "Guest_SergeantSkullsplitter": 898737831, + "Guest_Foulgaze": 2063419769, + "Guest_Wormguts": 788697519, + "Guest_Rattlebones": 125602919, + "Guest_Paulson": 1112716921, + "Guest_Grubb": 1167554274, + "Guest_Norton": 581021964, + "Guest_NightStalker": 1447653309, + "Guest_AddereTimeo": 1491420030, + "Guest_TheReaper": 1526369733, + "Guest_AngrusHollowsoul": 1427862805, + "Guest_OrrickNightglider": 951078615, + "Guest_SteelSentinel": 885250894, + "Guest_Shadow-WebSoldier": 2014925398, + "Guest_LostCeleste": 1725301830, + "Guest_CapnNigelSkullcrack": 1665439970, + "Guest_HaulAwayJoe": 1075985331, + "Guest_OldMaui": 15300840, + "Guest_LordAgue": 140791419, + "Guest_MelweenaSmite": 432188189, + "Guest_HalloweenTrickster": 2043736417, + "Guest_PumpkinHead": 1098332105, + "Guest_BaronMordecai": 817370918, + "Guest_KaimaniteMummy": 1332671420, + "Guest_VeggieRevanant": 928504192, + "Guest_BloodBat": 76467389, + "Guest_DeadBeets": 157829578, + "Guest_Desparagus": 1130644076, + "Guest_MeanestFly-Trap": 1652898868, + "Guest_Nosferabbit": 1021159436, + "Guest_ThrallofSothmekhet": 330780177, + "Guest_VileApparition": 426627869, + "Guest_SoulServant": 1183110886, + "Guest_SoulKeeper": 917518313, + "Guest_AdmiralBontau": 2032168402, + "Guest_DeathWhisperer": 3814952, + "Mount_RollerBlades": 111369373, + "Guest_BaneWyrm": 147033576, + "Guest_BlackDragon": 939469656, + "Guest_DragonSpawn": 1829803517, + "Guest_Fire-SpitterSpawn": 616624489, + "Guest_CaoranachtheFire-Spitter": 323513000, + "Guest_Jabberwock": 1552492834, + "Guest_CatalantheLightningLizard": 1155778705, + "Guest_WhiteDragon": 2009449331, + "Guest_WinterWyrm": 478925069, + "Guest_WyrmStatue": 2119216210, + "Guest_AlgidWyrm": 1309546482, + "Guest_BruleeSucre": 390936202, + "Guest_HebitohoWyrmling": 1682026810, + "Guest_Shadowwock": 505539184, + "Guest_EirikurAxebreaker": 1361453552, + "Guest_WarWyrm": 1124740742, + "Guest_StrayFireflier": 610979811, + "Guest_BurningFlamewing": 2041225130, + "Guest_FeralLavaling": 371483057, + "Guest_SplinterWing": 923421333, + "Guest_ChanticoBlueAir": 1572441903, + "Guest_CopperWingGuard": 302783602, + "Guest_ObsidianBeak": 2016227452, + "Guest_CaquixNineShadows": 2070101060, + "Guest_LustrousTlalocan": 1201030473, + "Guest_SeedThief": 263211181, + "Guest_PopZotzUnluckyDay": 1416773489, + "Guest_NezathePoet": 1905861376, + "Guest_MazenStingerBee": 1642023393, + "Guest_ImperialJusticePayne": 1285679745, + "Guest_AssistantWardenPorfiry": 22099059, + "Guest_MarshalKamensky": 524669730, + "Guest_WardenVissarovich": 882556823, + "Guest_GulagGuard": 100744159, + "Guest_CaptainKravchuck": 690830770, + "Guest_ImperialGuard": 346803640, + "Guest_IronPaw": 1797329688, + "Guest_TundarianEnforcer": 134256836, + "Guest_Ivan": 996220221, + "Guest_ColonelOrlov": 1381254189, + "Guest_IronPawIntakeCaptain": 2099184835, + "Guest_SolitaryWarden": 1503529566, + "Guest_CaptainZubkov": 793725366, + "Guest_SergeantBobrik": 722182485, + "Guest_WailingWraith": 946976407, + "EggChick": 1452316301, + "BunnyMallow": 518233330, + "Guest_ThunderHornZombie": 1007920040, + "Guest_SmokingMirrorZombie": 340971759, + "Guest_ShamblingZombie": 1920485146, + "Guest_MoonSkullZombie": 809249764, + "Guest_DeathlessStormHorn": 812397213, + "Guest_MozarTurtleHunter": 561749043, + "Guest_GuillermoShatterer": 499565054, + "Guest_XiuhcoatlBarbedTooth": 1719245305, + "Guest_AzcalFireAnt": 1281366337, + "Guest_TlotzinMoonThief": 407285761, + "Guest_PocaCruelStar": 1117353085, + "Guest_ThunderHornGhoul": 597878999, + "Guest_TezomocStoneSinger": 733511940, + "Guest_EzhuaBadTaste": 632779219, + "Guest_UacalxochitlBloodEye": 1614856226, + "Guest_WanadiBlackSky": 349829749, + "Guest_ElMarrow": 483880636, + "Guest_GrimCalaca": 1534029144, + "Guest_XipeFlayedOne": 1343577398, + "Guest_MotecumaDeathMask": 1782393717, + "Guest_EkeChuah": 13416770, + "Guest_AnacaonaBlackSnake": 1543344897, + "Guest_SmokingMirrorWight": 776452983, + "Guest_Tolkemec": 217428080, + "Mount_Fox": 77199428, + "PP_OwlProtege": 268847192, + "Mount_SharkSki": 331374103, + "PP_Dolphin": 1662291612, + "Mount_CastSymbol_D": 1134428045, + "Mount_CastSymbol_E": 1136525197, + "Mount_CastSymbol_F": 1138622349, + "Mount_CastSymbol_G": 1140719501, + "Mount_CastSymbol_A": 1128136589, + "Mount_CastSymbol_B": 1130233741, + "Mount_CastSymbol_C": 1132330893, + "Guest_LionSpectralGuardian": 1791543691, + "Guest_KillmareSpiritwalker": 1818928165, + "Guest_ZebraSpectralGuardian": 815933596, + "Guest_GorillaSpectralGuardian": 1635182119, + "Guest_IklawGhostWarrior": 373465545, + "Guest_BwanaShadowriver": 1307628747, + "Guest_ElephantSpectralGuardian": 1579402208, + "Guest_ZangaZebu": 1218173119, + "Guest_GrumishGreataxe": 486953385, + "PP_GlowFairy_A": 2028856748, + "Guest_RestlessSoldier": 1142701763, + "Guest_WanderingWizard": 209518514, + "Guest_ColonelIvanenko": 399169035, + "Guest_DetollitheDestroyer": 655767295, + "Guest_Jawniak": 1791298433, + "Guest_Tajniak": 356182394, + "Guest_Ygor": 996316081, + "Guest_KyaniteLancer": 2136703656, + "Guest_VestaShadowmark": 1846747836, + "Guest_ZoraSteelwielder": 1186470644, + "Guest_AndorBristleback": 1949884743, + "Guest_GalliumPaladin": 1812340868, + "Guest_GalliumFootman": 1295203112, + "Guest_GalliumShardtrooper": 1210699836, + "Guest_GalliumJuggernaut": 3527584, + "Guest_VladimirDarkflame": 1575322237, + "Guest_KyaniteLieutenant": 561528977, + "Guest_DrusillaMorningbane": 155837810, + "Guest_KyaniteValkyrie": 53242136, + "Transformation_20Q_SherlockBones": 1112674320, + "Guest_DevoraShadowcrown": 1813459117, + "Guest_YoualaNightDrinker": 881289828, + "Guest_Pendragon": 715669945, + "Guest_CelestianRevenant": 515730327, + "Guest_SoullessServant": 1505662730, + "Guest_SpiritServant": 104517373, + "Guest_SoulSerf": 1188214406, + "Guest_ServileSoul": 871844607, + "Guest_SkeletalCorsair": 239414410, + "Guest_RottedFodder": 1301186193, + "Guest_ScarletScreecher": 600457915, + "PP_FrankBunnyBride_A": 974707030, + "Guest_BastillaGravewynd": 2100015237, + "Guest_VilaraMoonwraith": 2067986693, + "Guest_YngvarSharptooth": 1783361972, + "Guest_TroubledWarrior": 1569033392, + "Guest_VeggieRevanant2": 928503904, + "Guest_VeggieRevanant3": 928503888, + "Guest_VeggieRevanant4": 928503872, + "Guest_VeggieRevanant5": 928503856, + "Guest_AncientQhatWarrior": 1564521104, + "Guest_EmperorPaleolo": 2079384347, + "Guest_SpiritofIntolerance": 1627658048, + "Guest_SpiritofInquiry": 1320544891, + "Guest_FirstGuardian": 1982227776, + "Guest_FallenMerc": 225926286, + "Guest_NightShadow2": 1638183490, + "Guest_NightShadow3": 1636086338, + "Guest_NightShadow2-2": 1436856907, + "Guest_NightShadow3-2": 1434759755, + "Guest_NightShadow4-2": 1432662603, + "Guest_NightShadow5-2": 1430565451, + "Guest_NightShadow6-2": 1428468299, + "Guest_NightShadow7-2": 1426371147, + "Guest_FirstScythe": 738854032, + "Guest_GreyMantisCaptain": 860186057, + "Guest_GreyMantisHunter": 1239274377, + "Guest_Atlach-Leng": 836136649, + "Guest_PetrovGloomstrider": 2045783873, + "Guest_NauyotolDownIntheHole": 1134251106, + "Guest_SandorSpearcaller": 1351072377, + "Guest_MavraFlamewing": 1477685600, + "Guest_Scaldling": 208751819, + "Guest_WoebegoneWraith": 1166488705, + "Guest_BorisBlackrock": 1365399915, + "Guest_KatiaFirewinter": 521255834, + "Guest_ValerikBrightsword": 1244055782, + "Guest_RurikFlamesoul": 1962726850, + "Guest_IonaPyrelance": 722266491, + "Guest_DarkPoltergeist": 818162178, + "Guest_TheCollector": 1772287612, + "Guest_ViktorSnowcrusher": 1028387381, + "Guest_ValeskaRedwind": 19316351, + "Guest_ScarrikGallowgaunt": 105397333, + "Guest_Neberyx": 1453883041, + "Guest_AsrikWidebelt": 401936422, + "Guest_GothricHonorbound": 750072340, + "Guest_HalfangBristlecrown": 618779562, + "Guest_OsvudFleetpaw": 1023466459, + "PP_PufferFish_A": 1578606029, + "Guest_OzelUnderwaterCat": 1033669302, + "PP_BabyGreenMan_A": 910025246, + "PP_SchoolTurtle_A": 1012620678, + "PP_DarkBalloon_A": 1229308566, + "MT_JetsamCopter": 92127678, + "Mount_4P_DarkClownCar": 420246262, + "MNT_BalloonsBunch": 2000358474, + "Guest_TempleGuardian": 632574316, + "Guest_TemplePhantom": 1701097840, + "Guest_MahonStarsearcher": 1549093341, + "Guest_LostKnight": 858980994, + "Guest_AnguishedWoodman": 174606918, + "Guest_TormentedTreant": 294050331, + "Guest_WildfireTreant": 1902129818, + "Guest_BlightedYaxche": 679097088, + "Guest_Junglethorn": 1734561424, + "Guest_Tangleroot": 2027061721, + "Guest_BlightedFreerooter": 1109803061, + "Guest_Winterbranch": 1170787806, + "Guest_DecayingBogwalker": 1338670789, + "Guest_BrownwoodTormentor": 1655181754, + "Guest_Wildroot": 1839747182, + "Guest_Ironsplinter": 668295157, + "Guest_Frostbranch": 75974631, + "Guest_KyoukonteiTreant": 474446232, + "Guest_BrokenStumps": 414724364, + "Guest_WordlessWoodsmen": 1813881830, + "Guest_DesiccatedTreebeard": 1826942903, + "Guest_ShadowoftheLand": 1612385317, + "Guest_TreeRoot": 1406633546, + "Guest_BefouledWoodwalker": 1517919498, + "Guest_ConfusedForestWarrior": 750805985, + "Guest_CrazedForestSpirit": 1007960507, + "Guest_Oakheart": 1158293719, + "Guest_SnowTreant": 1028620035, + "Guest_Snowbeard": 1997921701, + "Guest_BarkskinTreant": 2143957812, + "Guest_RazorleafTreant": 2133159197, + "Guest_CarrionFlowerMan": 1120698936, + "Guest_Kurokage": 355651925, + "Guest_LacombeStrawHouse": 568809873, + "Guest_BerkshireStickHouse": 1932133405, + "Guest_TamworthBrickHouse": 894027634, + "Guest_RustyTinderSpark": 1237916230, + "Guest_CoraWinterBranch": 1901918989, + "Guest_GrambleGoldRook": 1986988546, + "Guest_PiperStormTree": 1109520133, + "Guest_Hanadzura": 124838500, + "Guest_Kuchisaki": 2084188681, + "Guest_Kaizoku": 807430784, + "Guest_JaxonLastRites": 1653711119, + "Guest_SeijunKiller": 657647155, + "Guest_ZarichiTarakata": 1129212566, + "Guest_BladelessRonin": 1577395797, + "Guest_SanzokuOutlaw": 1682888807, + "Guest_SanzokuBandit": 1766198653, + "Guest_KakedaPainbringer": 1260119278, + "Guest_KakedaStalker": 367458449, + "Guest_KakedaShadow": 1604499626, + "Guest_KakedaSoulcrusher": 1961168112, + "Guest_ImitsuPlaguemaster": 1361539025, + "Guest_ImitsuDefouler": 1299791045, + "Guest_ImitsuPunisher": 234819300, + "Guest_StudentofKhai": 249757647, + "Guest_OtomoBattlemage": 918160114, + "Guest_OtomoCourier": 1373253378, + "Guest_OtomoSupplyRunner": 1580070577, + "Guest_OtomoScout": 1814051082, + "Guest_OtomoWrestler": 1053571230, + "Guest_OtomoFury": 111319603, + "Guest_Hyottoko": 307080225, + "Guest_Usunoki": 1881339626, + "Guest_Kagemoosha": 1842766119, + "Guest_UdoJin-e": 850816224, + "Guest_TakedaKanryu": 536087422, + "Guest_Tamauji": 818613882, + "Guest_Jikiru": 794167355, + "Guest_Nomoonaga": 849534658, + "Guest_Aiuchi": 515942855, + "Guest_Kurogaso": 1426248002, + "Guest_Ideyoshi": 1814038213, + "Guest_Koto": 1151260427, + "Guest_Usegi": 977549586, + "Guest_Kanago": 1644367227, + "Guest_Kyuto": 1168225979, + "Guest_Haru": 2070048389, + "Guest_Ashikata": 1523446928, + "Guest_Katsumori": 1823914597, + "Guest_Hingen": 1567896261, + "Guest_Yakedo": 502298497, + "Guest_Do-Daga": 1239945714, + "Guest_Maito": 979260804, + "Guest_TonkatsuThug": 1758658397, + "Guest_GobbloreanGuard": 1286210991, + "Guest_BabblingMeints": 413418139, + "Guest_PrinceGobblestone": 1813171676, + "Guest_GobblerMuncher": 1517159487, + "Guest_GobblerGorger": 130736772, + "Guest_GobblerScouter": 1509427587, + "Guest_GobblerGlutton": 1912199781, + "Guest_GobblerScavenger": 136586791, + "Guest_BaronGreebly": 1028182200, + "Guest_BaronRotunda": 457132907, + "PP_DeathMimic": 1811942047, + "Guest_GreenMan": 1126663802, + "Guest_ForestGrump": 1602350320, + "Guest_ErvintheBarbarian": 1671762776, + "Guest_RazortuskWarrior": 1109994549, + "Guest_RazortuskBrawler": 732265321, + "Guest_SplithoofRager": 1922134329, + "Guest_TuskedRaider": 1920114147, + "Guest_SviniBeserker": 1146317608, + "Guest_SviniReaver": 216717251, + "Guest_Shattertusk": 1191456730, + "Guest_SplithoofBarbarian": 296671728, + "Guest_Bloodseeker": 2086598239, + "Guest_Scarsnout": 1831766077, + "Guest_MasterTonkatsu": 1783298894, + "Guest_Grisletusk": 657393295, + "Guest_SplithoofBloodguard": 488382274, + "Guest_BristlehideRaider": 237078958, + "Guest_Gullin": 1656401882, + "Guest_ForestNymph": 812055814, + "Guest_SassafrasMan": 1327049788, + "Guest_RandolfSpellshine": 108808620, + "Guest_BleysFlamerender": 434070106, + "Transformation_Khan": 1398327634, + "Transformation_TheBat": 1675113521, + "MNT_DireWolf": 845578449, + "MNT_YuleMule": 1976182058, + "MNT_LightBlades": 829118450, + "MNT_FlyingSquid": 1573132252, + "PP_Globulin": 467801224, + "PP_BeastBaby": 1807874692, + "PP_SaniBot": 670845902, + "Mount_SwarmSand": 1277669407, + "Guest_Nodnarb": 211478288, + "Guest_LordBramble": 1118781162, + "Guest_Yogash": 506264561, + "Guest_Marcio": 499428996, + "Guest_Procyon": 1115376865, + "Guest_Thunderfin": 2029218563, + "Guest_ArkynMoonblade": 1152775206, + "Guest_CreeCurdWright": 1714953095, + "Guest_DeerMouseRevenant": 315064435, + "Guest_ElanaDarksun": 837982094, + "Guest_KingAlricFateSailor": 1934591130, + "Guest_LaughingCalaca": 984492527, + "Guest_WraithKnight": 620484548, + "Guest_FieryEchoofApep": 484636593, + "Guest_FrostyEchoofApep": 171933154, + "Guest_FalseEchoofApep": 479387377, + "Guest_ChargedEchoofApep": 1229406800, + "Guest_ShrowdengersQhat": 101563303, + "Guest_Scrollkeeper": 643219293, + "Guest_TerrorHound": 753341570, + "Guest_CondemnedMander": 445370758, + "Mnt_SnowStorm": 1491572670, + "Mount_ChimneySweeper": 378571534, + "MNT_PineappleCandyCane": 1630795796, + "Guest_TyphonDustwind": 740849673, + "MNT_StickHorse": 216654744, + "MimicTemplate": 1461219184, + "MNT_Ball_N_Chain": 289720920, + "PP_PeaceDove_A": 1785119671, + "Mount_Gyrocycle": 1495008048, + "PP_BattleMageDragon_A": 1864696711, + "MNT_BattleBeast": 1304449286, + "MNT_SmokeTrails": 387873030, + "Mount_FriendshipHare": 677127330, + "MNT_ButterflySwarm": 383602683, + "PP_EggChick_B": 1959154042, + "MNT_Unicorn": 562210585, + "PP_StuffedUnicorn": 1731641773, + "MNT_ParadeTruck": 2026348978, + "MNT_ParadeTruckXmas": 1017864627, + "MNT_AutumnLeafSwarm": 1540002279, + "PP_GingerbreadMan": 1796172229, + "PP_DecadeDragon": 1819398630, + "MNT_StageShip": 829852992, + "PP_DramaLlama": 255896529, + "PP_HallMinotaur_A": 1492017563, + "Guest_MacDeath": 1526226705, + "Guest_MacDeathUnderstudy": 1731752647, + "Guest_MacLifeUnderstudy": 257466641, + "Guest_MacStormUnderstudy": 8295117, + "MNT_Pantera": 1135198, + "MNT_StagLight": 1908778048, + "MNT_GiantSpider": 1247185021, + "MNT_StagEvil": 872303931, + "PP_BaskHound": 1093866594, + "PP_Marionette": 1688299938, + "PP_Marionette_B": 1688297824, + "Guest_Izft": 996301405, + "Guest_SapotisMinion": 1625665891, + "Guest_CrazedSlave": 1473233468, + "Guest_CharmedSlave": 803043667, + "Guest_EnsorcelledSlave": 40920285, + "Guest_HallServant": 2038116460, + "Guest_SiathePerceiver": 1235571913, + "Guest_Kiwu": 1151177787, + "Guest_NightImp": 1051843424, + "Guest_EvilTrickster": 1035477123, + "Guest_DeepWoodsImp": 1502444054, + "Guest_ForestPest": 802235713, + "Guest_TaintedForestImp": 1030343985, + "Guest_Youkai": 518367729, + "Guest_CarthaginianElephantWarrior": 776293919, + "Guest_IdrisBeast-Taker": 106759521, + "Guest_MikaSkarka": 237956516, + "Guest_Belloq": 757247833, + "Guest_GurtokPiercer": 549466122, + "Guest_GurtokFirebender": 817966523, + "Guest_GurtokDemon": 544070162, + "Guest_GeneralFiretusk": 2073037770, + "Guest_GurtokBarrierDemon": 44657563, + "Guest_BlacktuskShaman": 1009070925, + "Guest_FireDemon": 158367196, + "Guest_DeathOni": 1916642000, + "Guest_JadeOni": 1289517185, + "Guest_PlagueOni": 1464586443, + "Guest_WarOni": 1630196094, + "Guest_BrokenLandMammoth": 1587008312, + "Guest_SunderedSeamMammoth": 1272698721, + "Guest_BullyMammoth": 170705927, + "Guest_Bullhemoth": 146998717, + "Guest_Kogasha": 1909654543, + "Guest_MusuthBerserker": 1741298129, + "Guest_BlackTuskCultist": 1771575961, + "Guest_AksilBlacktrunk": 1253596409, + "Guest_LongdreamerShaman": 1521283133, + "Guest_MuratGreyeyes": 1296814314, + "Guest_ElephantSoldier": 1443670145, + "Guest_DarajaniGuard": 1597288495, + "Guest_Loremaster": 1792470809, + "Guest_Pork": 2069999347, + "Guest_Beans": 97706585, + "MNT_Ox": 1292937747, + "PP_PropellerSquirrel": 1657443894, + "Guest_RasikPridefall": 97921485, + "Guest_AmedrasLightstep": 1818417025, + "MNT_SmokeTrails_Balance": 1358150715, + "MNT_SmokeTrails_Fire": 702971609, + "MNT_SmokeTrails_Ice": 190218501, + "MNT_SmokeTrails_Life": 2045542105, + "MNT_SmokeTrails_Myth": 1276281121, + "MNT_SmokeTrails_Storm": 564954622, + "Guest_Bellosh": 1407013027, + "Guest_AcampiReedfist": 2076527733, + "Guest_AgnettaBroadblade": 14864960, + "Guest_FrostheartRaider": 1574787221, + "Guest_JordaSwordbearer": 1627071850, + "Guest_KasaiBaku": 1153107369, + "Guest_ZoraimeiHelephant": 1002482606, + "Guest_ConscriptedMander": 43811125, + "Firecat_Decade": 409516955, + "MNT_BatGlider": 2086258491, + "Transformation_PlayerHomework": 673389670, + "Transformation_PlayerAttendance": 422287307, + "Transformation_PlayerLecture": 2035625874, + "Transformation_PlayerPopQuiz": 483367038, + "MNT_GingerbreadHorse": 1369242781, + "MNT_NimbariChariot": 1251740392, + "PP_NimbariDog": 1235126828, + "Transformation_PlayerGrandma": 1128332272, + "Transformation_PlayerScionA": 33862367, + "PP_Mushroom": 1568942158, + "MNT_Scooter": 1148167046, + "MNT_Scooter_B": 2079302532, + "MNT_Scooter_C": 1810867076, + "MNT_Scooter_D": 468689796, + "MNT_IceCycle": 415797788, + "Transformation_PlayerScionA02": 33921759, + "Guest_FearoftheFuture": 947210229, + "Guest_FearofGremlins": 405857384, + "Guest_RootGuardian": 922940845, + "Guest_VineThrasher": 172546427, + "Guest_BlightWalker": 1438155154, + "Guest_BriarScourge": 615681851, + "Guest_DreamJabberwock": 907754098, + "Guest_DreamBelloq": 990352002, + "Guest_Voltergeist": 1558128068, + "Guest_SpecialBranch": 1927849418, + "Guest_MutantBriar": 805892802, + "Guest_FeralBriar": 883790223, + "Guest_MaizeMonster": 688905764, + "Guest_DreamShadowwock": 1432458248, + "Mount_Heartboard": 1421972759, + "PP_ChocoBunny": 324797859, + "Mount-PogoFlower": 906659501, + "MNT_AethyrCloud": 1586061078, + "MNT_Fangle": 7846854, + "Guest_StarfallSpider": 1177620831, + "Guest_AshSpider": 1588502553, + "Guest_CorruptedWeaver": 38937211, + "Guest_CrystalCrawler": 1197980149, + "Guest_ShimmerWidow": 1300740128, + "Guest_FacetedSpikespinner": 1939719331, + "Guest_CrystallineQueen": 1999282256, + "Guest_AncientCrystalweaver": 1409608801, + "Guest_FangtoothLavaspinner": 1538042104, + "Guest_VenomousHeatseeker": 1234682482, + "Guest_FireweaveRockbiter": 300743778, + "Guest_MonkeySpider": 754090007, + "Guest_CryptSpider": 1545405304, + "Guest_CommonHouseSpider": 613486002, + "Guest_ArachnaMagnaMagus": 825817937, + "Guest_ArachnaSoldier": 270978709, + "Guest_Gnissa": 1699826178, + "Guest_WebwoodScuttler": 1728611075, + "Guest_SandSpider": 61789007, + "Guest_WebwoodCreeper": 1013382584, + "Guest_Skathi": 1631429165, + "Guest_ArchmagusLorcan": 321146960, + "Guest_CrawleroftheMist": 2076696304, + "Guest_PaintedSpider": 1482115552, + "Guest_GiantSpider": 1545526191, + "Guest_CaveCrawler": 2101587667, + "Guest_RattleCatcher": 1472707326, + "Guest_TrapdoorSpider": 1321643694, + "Guest_RockClinger": 1304266411, + "Guest_InquisitorXimenez": 1053483090, + "Guest_ElderMagus": 1017836836, + "Guest_WardenBenthamic": 18807199, + "Guest_SpiderArchmagus": 387645558, + "Guest_SpiderAdept": 2094873407, + "Guest_InterrogatorRentenius": 1245984179, + "Guest_WarpedWeaver": 495882677, + "Guest_ArachnaSkinner": 281864085, + "Guest_SkinnerConscript": 2028526453, + "Guest_ArachnaGladiator": 2492046, + "Guest_LorcanInitiate": 353311753, + "Guest_Serket": 1871335773, + "Guest_IceWeaver": 2063216026, + "Guest_SpiritSpinner": 525666327, + "Guest_MysteriousCrawler": 218352756, + "Guest_BlackWidow": 1909331619, + "Guest_BrownRecluse": 1146386275, + "Guest_Creeper": 1197442790, + "Guest_GearSpinner": 67020478, + "Guest_Clinker": 1194519062, + "Guest_Clanker": 1194517014, + "Guest_GrandfatherSpider": 1330981335, + "Guest_Spiderling": 1400274461, + "Guest_ManekiWebWalker": 888348786, + "Guest_KoganiDeathCrawler": 276010604, + "Guest_CheliceranCrawler": 1169176517, + "Guest_ArachniteCreeper": 1850534774, + "Guest_ChelicaranStalker": 2057291848, + "Guest_HornedMonkeySpider": 1301514577, + "Guest_GreyOgreSpider": 1533774471, + "Guest_StarburstSpider": 698029451, + "Guest_PaintedCaveMonster": 601315479, + "Guest_RubbleRouser": 220785666, + "Guest_EarthElemental": 435260049, + "Guest_SharpshardWarrior": 1403237237, + "Guest_Firevein": 1220046430, + "Guest_Blackblade": 458130537, + "Guest_VengefulFireheart": 563205004, + "Guest_FirerockStomper": 608552855, + "Guest_BlackrockGuardian": 1663799582, + "Guest_ConfusedSentry": 24655510, + "Guest_SilverSentinel": 1090673683, + "Guest_SilverServant": 84560693, + "Guest_GiantHomunculus": 456098557, + "Guest_PropertyMaster": 229101764, + "Guest_VaultProtector": 185568207, + "Guest_PlatedDefender": 79324363, + "Guest_Avalanche": 761613547, + "Guest_RockReaver": 919912933, + "Guest_Frostmantle": 856308090, + "Guest_GlacierWalker": 131215932, + "Guest_SandBehemoth": 272513357, + "Guest_RunedAnnihilator": 121339936, + "Guest_RunedDevestator": 1611071181, + "Guest_RunedGuardian": 1986312667, + "Guest_CanyonRager": 1123038266, + "Guest_RubbleReaver": 220774678, + "Guest_Boulderbone": 122279242, + "Guest_Nali": 77467516, + "Guest_Gnar": 1151164930, + "Guest_GlacialAvenger": 1181253632, + "Guest_SokkwiKeymaster": 190919624, + "Guest_SandsofTime": 34920273, + "Guest_BladeGolem": 435561523, + "Guest_FrostColossus": 1564686403, + "Guest_IceColossus": 335477257, + "Guest_PollutedEarthWalker": 86045387, + "Guest_CorruptedEarthSpirit": 1135891559, + "Guest_Stonebreaker": 1317905436, + "Guest_StoneElemental": 1715022018, + "Guest_VolcanisGolem": 1904918929, + "Guest_WaterElemental": 1717850987, + "Guest_AshenDeathMonkeySpider": 35356665, + "Guest_DeathMonkeySpider": 1525508507, + "Guest_MotherMonkeySpider": 110317392, + "Guest_DoomMonkey": 1135105500, + "Guest_DreamMorganthe": 907599965, + "Guest_DragonBeetle": 1974635734, + "Guest_SandWalker": 1530843985, + "MNT_PandaMama": 916371162, + "PP_BabyPandas": 778536285, + "PP_FrogPrince": 729975205, + "MNT_PumpkinCarriage": 183672737, + "Mount_Gobbler_B": 1193388729, + "PP_Hamster": 1578040708, + "Guest_Steeleton": 657429968, + "Guest_GoldenWyrm": 311022393, + "MNT_Roc": 1564431869, + "PP_BabyGriffin": 1913686406, + "Transformation_ShadowDPSMob": 936133896, + "Transformation_ShadowTankMob": 305660992, + "Transformation_ShadowHealMob": 356596800, + "Guest_SpiritofIgnorance": 1577360126, + "Guest_FecklessSoul": 519648315, + "Guest_BurnedOutSoul": 312181646, + "Guest_BenightedRevenant": 2131956962, + "Guest_TombLurker": 1901203489, + "Guest_DesertGolem": 543642682, + "Guest_KumoOni": 215822625, + "Guest_SpellwritStalker": 161772776, + "PP_Sun": 1723237840, + "Guest_Leadite": 4480416, + "Mount_FestiveFox": 2125832348, + "PP_FenrisWolf": 1601784680, + "PP_SchoolPiggle": 109782407, + "PP_FenrisWolf_Red": 1597992854, + "PP_FenrisWolf_Teal": 1455058454, + "PP_FenrisWolf_White": 1102186199, + "Transformation_NinjaPig_Fire": 984575055, + "Transformation_BG_RatThief_Myth": 1191155131, + "Transformation_BG_RatThief_Storm": 675891897, + "MNT_Umbrella": 955683437, + "Transformation_BG_Elf_Ice": 1209681129, + "Transformation_BG_Fairy_DarkMinion_Balance": 33521202, + "Transformation_BG_Cyclops_Death": 876023972, + "Transformation_BG_Minotuar_Fire": 1118476387, + "Transformation_BG_WolfWarrior_Storm": 2075594475, + "Transformation_BG_WolfWarrior_Balance": 746159992, + "Transformation_BG_Draconian_Myth": 903606820, + "Transformation_BG_Draconian_Life": 1501291044, + "Transformation_BG_Colossus_Life": 1320377666, + "MNT_DolphinChariot": 102982520, + "MNT_EvilWagon": 685457563, + "MNT_FlyingDutchman": 1176206544, + "PP_SeaHorse": 2024322494, + "PP_EvilTeddy": 1159020925, + "PP_ZombieParrot": 384805107, + "Transformation_BG_Ice_Colossus": 299613211, + "MNT_CarrierBat": 7323333, + "Transformation_BG_Minotaur_MythTempalte": 430330904, + "PP_FeatheredTabby": 452526748, + "Transformation_Detritus01": 1335763402, + "Guest_Metallossus": 335457082, + "MNT_SantaJaws": 464410203, + "MNT_BattleBadger": 532858222, + "Transformation_Shedder01": 2069145892, + "PP_NatureSpirit": 373176286, + "Transformation_Devourer01": 1004421540, + "Guest_TheDevourer": 1591187996, + "Guest_Treeminder": 1093207850, + "Guest_RenegadeDruid": 2087982292, + "Guest_FractalTreeminder": 927174548, + "Guest_UnsettledTreeminder": 486164163, + "Guest_DragonspyreCrusader": 247317280, + "Guest_YoungGreggor": 66068670, + "Guest_GeneralGreyflame": 499924835, + "Guest_OldGreggor": 391726170, + "Guest_PrinceViggor": 853556298, + "Guest_DragonspyreVanguard": 693851565, + "Guest_SilasConviction": 177362659, + "Guest_SilasWeariness": 893431021, + "Guest_SilasRage": 1288904439, + "Guest_SilasDoubt": 1479426285, + "Guest_Lorekeeper": 147779344, + "Guest_FelixPhotomongerIII": 68387506, + "Guest_WarHavox": 1634324022, + "Guest_Mis-assembledSkeleton": 221832082, + "Guest_TreeminderGhost": 200408510, + "Guest_ViggorsDrake": 340449521, + "Guest_BlueNinjaPig": 938539327, + "Guest_RedNinjaPig": 2097962021, + "Guest_OrangeNinjaPig": 625058258, + "Guest_PurpleNinjaPig": 445746449, + "Guest_RitualColossus": 844563319, + "Guest_TinyDragon": 1123127688, + "Guest_RitualSpider": 429827552, + "Guest_RitualDraconian": 837510372, + "Guest_CC_Druid_Warrior_C_01": 55314616, + "Guest_CC_Druid_Wizard_A_01": 1046261169, + "Guest_CC_Druid_Wizard_B_01": 1046244785, + "Guest_CC_Druid_Warrior_A_01": 56363192, + "MNT_Toboggan": 995356805, + "MNT_2P_WickerTreant-001": 2065440944, + "PP_Ratatoskr": 1003497600, + "PP_Trash": 1195047012, + "Guest_CC_Druid_Wizard_D_01": 1046343089, + "MNT_Sunflower": 721091531, + "MNT_Whoopee": 1383311238, + "MNT_Warthog": 8060761, + "PP_ShamRock": 943893325, + "PP_LeapingLeprechaun": 132882517, + "PP_LionCubs": 465759803, + "PP_Tanuki": 670387843, + "MNT_Crane": 433122675, + "MNT_Krokosphinx": 739938754, + "Transformation_BG_Fairy_Life": 1897480818, + "Transformation_LiceDeepSpawnA": 244795720, + "Piggle_Alien": 1761605655, + "PP_JeweledScarab": 620544607, + "Guest_KR_Nymph_DrkMage_D50": 1248526054, + "Guest_KR_Nymph_DrkMage_C50": 1246953190, + "Guest_KR_Nymph_DrkMage_B50": 1247477478, + "Guest_KR_Nymph_DrkMage_A50": 1245904614, + "Guest_EM_Spider_Ash_01": 185724938, + "UFO": 47349, + "PP_Kit10": 326796620, + "PP_Lumi_Tulip": 84119585, + "PP_Lumi_Fern": 117015078, + "PP_Lumi_Violet": 1468797578, + "PP_Lumi_Sunny": 1769236703, + "PP_Lumi_Daisy": 1743454175, + "MNT_CelestianMech": 1238076872, + "MNT_Brontosaurus": 402157167, + "Guest_HG_AKT_Krok_Cyber_A_Balance_25": 1367985604, + "Guest_HG_AKT_Krok_Cyber_A_Balance_50": 1368084932, + "Guest_HG_AKT_Krok_Cyber_A_Balance_75": 1367988676, + "Guest_HG_AKT_Krok_Cyber_A_Balance_100": 1351303620, + "Guest_HG_AKT_Krok_Cyber_A_Balance_130": 1351270852, + "Guest_HG_AKT_Krok_Cyber_A_Fire_25": 976558490, + "Guest_HG_AKT_Krok_Cyber_A_Fire_50": 37034397, + "Guest_HG_AKT_Krok_Cyber_A_Fire_75": 305469850, + "Guest_HG_AKT_Krok_Cyber_A_Fire_100": 573905821, + "Guest_HG_AKT_Krok_Cyber_A_Fire_130": 573905824, + "Guest_HG_AKT_Krok_Cyber_A_Ice_25": 159411377, + "Guest_HG_AKT_Krok_Cyber_A_Ice_50": 541093041, + "Guest_HG_AKT_Krok_Cyber_A_Ice_75": 146828465, + "Guest_HG_AKT_Krok_Cyber_A_Ice_100": 557870241, + "Guest_HG_AKT_Krok_Cyber_A_Ice_130": 960523425, + "Guest_HG_AKT_Krok_Cyber_A_Myth_25": 976187830, + "Guest_HG_AKT_Krok_Cyber_A_Myth_50": 36663729, + "Guest_HG_AKT_Krok_Cyber_A_Myth_75": 305099190, + "Guest_HG_AKT_Krok_Cyber_A_Myth_100": 573535153, + "Guest_HG_AKT_Krok_Cyber_A_Myth_130": 573535156, + "Guest_CL-GolemButler-R9": 780077559, + "Guest_CL-GolemDigger-Boss-R10": 562020288, + "Guest_CL-GolemDigger-R9": 789375095, + "Guest_CL-GolemDigger-Rank8MythBoss-R10": 930527857, + "Guest_CL-GolemWorker-R9-1": 1072815287, + "Guest_CL-FishbotBrown-R9-1": 2006155417, + "Guest_CL-FishbotBrown-R9-2": 395542681, + "Guest_CL-FishbotGold-Boss-R10": 611881707, + "Guest_CL-FishbotGold-R9": 705414492, + "Guest_CL-FishbotYellow-Boss-R10": 23145662, + "Guest_CL-Protector-Black-Boss-R10-2": 679228793, + "Guest_CL-Protector-Gold-R10": 1909636609, + "Guest_CL-Protector-Gold-R9-1": 1909634804, + "Guest_CL-Protector-Gold-R9-2": 1909634932, + "Guest_CL-Protector-Gold-R9-3": 1909635060, + "Guest_CL-Protector-Gold-R9-4": 1909634164, + "Guest_CL-Protector-Purple-R9-Boss": 1889837072, + "Guest_CL-Protector-Purple-R9": 81760161, + "Guest_CL-Protector-Tan-Boss-R10": 912663188, + "Guest_KR_Golem_Worker": 1784607296, + "Guest_Golem-Brass-R7-1": 718939445, + "Guest_Golem-Clockwork-R7": 1161173708, + "Guest_EM_Robot_Batbot_A_01": 1482867950, + "Guest_EM_Robot_Batbot_B_02": 945947886, + "Guest_EM_Robot_Batbot_B_01": 1482818798, + "Guest_EM_Robot_Batbot_B_03": 409076974, + "Guest_EM_Robot_Batbot_B_04": 127793938, + "Guest_EM_Robot_Batbot_B_05": 664664850, + "Guest_EM_Robot_Drone_A_02": 1215188569, + "Guest_EM_Robot_Drone_A_03": 1231965785, + "Guest_EM_Robot_Drone_A_01": 1265520217, + "Guest_EM_Robot_Drone_A_04": 1315851865, + "Guest_EM_Robot_Drone_A_05": 1332629081, + "Guest_EM_Robot_Drone_A_06": 1282297433, + "Guest_EM_Robot_Drone_A_07": 1299074649, + "Guest_EM_Robot_Drone_A_08": 1114525273, + "Guest_EM_Robot_Drone_A_09": 1131302489, + "Guest_EM_Robot_Drone_A_Boss_01": 1960661151, + "Guest_EM_Robot_Drone_A_Boss_02": 1960530079, + "Guest_EM_Robot_Drone_E_01": 1265518169, + "Guest_EM_Robot_Tank_A_01": 1314796420, + "Guest_EM_Robot_Tank_A_02": 1313223556, + "Guest_EM_Robot_Drone_C_02": 1215187545, + "Guest_EM_Robot_Drone_D_03": 1231963225, + "Guest_EM_Robot_Drone_D_01": 1265517657, + "Guest_EM_Robot_Drone_D_02": 1215186009, + "Guest_EM_Robot_Tank_B_01": 1314796468, + "Guest_EM_Robot_Drone_C_01": 1265519193, + "Guest_G14-BP-Golem_Steel_Boss": 2071105129, + "Guest_G14-BP-Golem_Steel_Puzzle": 715790979, + "Guest_Golem-Brass-Elite-L38": 1163662532, + "Guest_Golem-Brass-Elite-L56": 2057562884, + "Guest_Golem-Brass-MBBoss-L48": 1498830732, + "Guest_Golem-Brass-MBBoss-L71": 1498829576, + "Guest_Golem-Brass-MBBoss-L76": 1498828936, + "Guest_Golem-Clockwork-Elite-L54-Metal": 417151527, + "Guest_Golem-Clockwork-Elite-L37": 1961943722, + "Guest_Golem-Clockwork-Elite-L54": 1950147242, + "Guest_Golem-Clockwork-L28": 1561959116, + "Guest_Golem-Clockwork-MBBoss-L37": 973152783, + "Guest_Golem-Clockwork-MBBoss-L69": 1262559759, + "Guest_Golem-Steel-Elite-L39": 1430496717, + "Guest_Golem-Steel-MBBoss-L40": 1229578887, + "Guest_Golem-Steel-MBBoss-L43": 1229579015, + "Guest_Golem-Steel-MBBoss-L50-1": 1231762051, + "Guest_Golem-Steel-MBBoss-L50": 1229578883, + "Guest_Golem-Steel-MBBoss-LXX": 1229583927, + "Guest_Golem-Wood-Elite-L35": 904360756, + "Guest_Golem-Wood-Elite-L37": 1978102580, + "Guest_Golem-Wood-Elite-L50": 1813548236, + "Guest_Golem-Wood-MBBoss-L63": 1392041724, + "Guest_MB-Gauntlet-Golem-Clockwork": 854649045, + "Guest_Spider-Golem-MBBoss-L67": 253352706, + "Guest_Spider-Golem-MBBoss-L96": 253348994, + "Guest_WC-MAW-GasGolem-Minion": 1511013798, + "Guest_WC-MAW-GasGolemLife-Minion": 1306026584, + "Guest_Golem-Steel-L02": 1027229749, + "Guest_Golem-Clockwork-L01": 1409915596, + "Guest_Gauntlet-01-Golem-Steel-Ghost-R8": 402816318, + "Guest_Golem-Wood-L01": 156976035, + "Guest_HG-Clock-ClockworkSpanner-20": 1523370449, + "Guest_HG-Clock-ClockworkSpanner-40": 1523370455, + "Guest_HG-Clock-ClockworkSpanner-60": 1523370453, + "Guest_HG-Clock-ClockworkSpanner-80": 1523370459, + "Guest_HG-Clock-ClockworkSpanner-100": 1523354068, + "Guest_HG-Clock-ClockworkSpanner-120": 1523354004, + "Guest_AQ-Cyclops-Guard": 191361948, + "Guest_AQ_Cyclops_Guard_A_Boss_01": 114747100, + "Guest_CL-Cyclops-Death-R10": 611013866, + "Guest_Cyclops-Death-Boss-R7": 1192370725, + "Guest_Cyclops-Death-Boss-R9": 1192370717, + "Guest_Cyclops-Death-R7": 144593791, + "Guest_GH-Cyclops-Death-R6": 594236619, + "Guest_Cyclops-BlueHelmet-KTBoss-L03": 1720105277, + "Guest_Cyclops-Red-L12": 1816429840, + "Guest_MR_Cyclops02WHelmet_Model_01": 1483732416, + "Guest_Cyclops-Blue-L02": 1633021234, + "Guest_Cyclops-BlueHelmet-WCBoss-L03": 427378332, + "Guest_Cyclops-RedHelmet-WCBoss-L03": 2021269422, + "Guest_HG_Sinbad_Cyclops_25": 911979034, + "Guest_HG_Sinbad_Cyclops_50": 1856261606, + "Guest_HG_Sinbad_Cyclops_75": 861647386, + "Guest_HG_Sinbad_Cyclops_100": 1789152678, + "Guest_HG_Sinbad_Cyclops_130": 178539942, + "Guest_HG_Sinbad_IronSultan_25": 930031152, + "Guest_HG_Sinbad_IronSultan_50": 930051504, + "Guest_HG_Sinbad_IronSultan_75": 930030768, + "Guest_HG_Sinbad_IronSultan_100": 927954864, + "Guest_HG_Sinbad_IronSultan_130": 927942576, + "MNT_SweetRide": 1643297840, + "PP_FrilledDino": 1395342809, + "PP_Celestian": 95679303, + "PP_Sun_Angry": 1955190071, + "PP_Marshmallow": 1220667954, + "MNT_Umbrella_B": 923364822, + "MNT_Tamer": 1050737194, + "PP_BumbleBee_B": 858653433, + "MNT_PunkFlamingo": 1634690818, + "MNT_2P_WoolyRhino": 1395943031, + "PP_Retriever": 72842604, + "PP_Piggle_Caveman": 181356174, + "PP_DecennialDragon": 1396523337, + "MNT_Tiger_Rainbow": 515535412, + "MNT_CarrierGhosts": 1833039309, + "MNT_Sled": 617654308, + "Transformation_BG_RatThief_Death": 30691641, + "Transformation_BG_Elf_Storm": 44352983, + "Transformation_BG_WolfWarrior_Ice": 986304351, + "MNT_CarriorGhost_B": 1768732109, + "MNT_CarriorGhost_C": 1766634957, + "Transformation_BG_Colossus_Fire": 1318803522, + "Transformation_BG_Krok_Balance": 140952965, + "Guest_KM_Gobbler_Skinny_A_11": 773648065, + "Guest_KM_Robot_Candy_A_01": 480414124, + "Guest_KM_Robot_Candy_A_02": 530745772, + "Guest_KM_Robot_Candy_A_03": 513968556, + "Guest_KM_Robot_Candy_A_04": 430082476, + "Guest_KM_Robot_Candy_A_05": 413305260, + "Guest_KM_Gummy_Bear_A_01": 1940905059, + "Guest_KM_Gummy_Bear_D_01": 1940905011, + "Guest_KM_Gummy_Bear_E_01": 1940904995, + "Guest_KM_Gummy_Bear_A_02": 1941429347, + "Guest_KM_Gummy_Bear_D_02": 1941429299, + "Guest_KM_Gummy_Bear_E_02": 1941429283, + "Guest_KM_Gummy_Bear_B_01": 1940905043, + "Guest_KM_Gummy_Bear_B_02": 1941429331, + "Guest_KM_Gummy_Bear_B_03": 1941953619, + "Guest_KM_Gummy_BearHat_A_01": 853226448, + "Guest_KM_Gummy_BearHat_A_02": 853226460, + "Guest_KM_Gummy_Bunny_A_01": 324805042, + "Guest_KM_Gummy_Bunny_C_01": 324806066, + "Guest_KM_Gummy_Bunny_D_01": 324807602, + "Guest_KM_Gummy_Bunny_E_01": 324807090, + "Guest_KM_Gummy_Bunny_F_01": 324808626, + "Guest_KM_Gummy_BunnyUber_A_01": 525565930, + "Guest_KM_Gummy_Worm_A_01": 231044195, + "Guest_KM_Gummy_Worm_B_01": 231044179, + "Guest_KM_Gummy_Worm_C_01": 231044163, + "Guest_KM_Gummy_Worm_A_02": 232617059, + "Guest_KM_Gummy_Worm_B_02": 232617043, + "Guest_KM_Gummy_Worm_C_02": 232617027, + "Guest_KM_Gummy_Bear_F_01": 1940904979, + "Guest_KM_Gummy_Bear_F_02": 1941429267, + "Guest_KM_Gummy_Bunny_C_02": 274474418, + "Guest_KM_Robot_Candy_A_06": 463636908, + "Guest_KM_Alphoi_DarkF_A_01": 475441543, + "Guest_KM_Gobbler_Skinny_A_01": 773648069, + "Guest_KM_Gobbler_Skinny_A_02": 773648197, + "Guest_KM_Gobbler_Skinny_A_03": 773648325, + "Guest_KM_Gobbler_SkinnyF_A_01": 254411012, + "Guest_KM_Gobbler_Skinny_A_04": 773647429, + "Guest_KM_Gobbler_Skinny_A_05": 773647557, + "Guest_KM_Gobbler_Skinny_A_06": 773647685, + "Guest_KM_Gobbler_SkinnyF_A_02": 254423300, + "Guest_KM_Gobbler_Skinny_A_07": 773647813, + "Guest_KM_Gobbler_Skinny_A_08": 773646917, + "Guest_KM_Gobbler_Skinny_A_09": 773647045, + "Guest_KM_Gobbler_SkinnyF_A_03": 254419204, + "Guest_KM_Gobbler_Fat_A_01": 1440595742, + "Guest_KM_Gobbler_Fruit_B_01": 1236446660, + "Guest_KM_Gobbler_Fruit_A_01": 1235922372, + "Guest_KM_Gobbler_Guard_B_01": 1435667582, + "Guest_KM_Gobbler_Skinny_A_10": 773647937, + "Transformation_PlayerBabyCarrot": 1580787628, + "Transformation_PlayerDeadBeet": 1992261692, + "Transformation_PlayerDisparagus": 373797484, + "Transformation_PlayerSnowPeas": 634199102, + "PP_Snowflake": 2036143125, + "PP_GummyBear_Myth": 117787890, + "PP_GummyBear_Death": 236577760, + "PP_GummyBear_Balance": 2100524337, + "PP_GummyBear_Life": 118020336, + "PP_GummyBear_Fire": 117995748, + "PP_GummyBear_Storm": 247437198, + "PP_GummyBear_Ice": 122536570, + "MNT_SnowOwl": 1578473542, + "Guest_KM_Gummy_Bear_Uber_A_01": 1856208859, + "Guest_KM_Gummy_Bear_Uber_A_02": 1856196571, + "MNT_ChocolateMoose": 567538552, + "MNT_Ram_Candied": 1913603720, + "Guest_KM_Spider_Mage_A_01": 1529720120, + "Guest_KM_Spider_Mage_B_01": 1529719608, + "Guest_KM_Spider_Mage_C_01": 1529719096, + "Guest_KM_Spider_Mage_D_01": 1529718584, + "Guest_KM_Spider_Mage_E_01": 1529718072, + "PP_SpriteDark_Balance": 914900728, + "MNT_Tricycle": 991465753, + "Guest_Tri-Gauntlet-Protector-Gold": 2029952053, + "Guest_Tri-Gauntlet-FishbotGold": 130267882, + "Guest_HG-Clock-Clockworker-20": 281216243, + "Guest_HG-Clock-Clockworker-40": 281217011, + "Guest_HG-Clock-Clockworker-60": 281216755, + "Guest_HG-Clock-Clockworker-80": 281215475, + "Guest_HG-Clock-Clockworker-100": 283313523, + "Guest_HG-Clock-Clockworker-120": 283321715, + "Guest_HG-Clock-Lugs-20": 1452756928, + "Guest_HG-Clock-Lugs-40": 1452756960, + "Guest_HG-Clock-Lugs-60": 1452756992, + "Guest_HG-Clock-Lugs-80": 1452756768, + "Guest_HG-Clock-Lugs-100": 1452494736, + "Guest_HG-Clock-Lugs-120": 1452493712, + "Guest_HG-Clock-Lucia-20": 1041451626, + "Guest_HG-Clock-Lucia-40": 1041450602, + "Guest_HG-Clock-Lucia-60": 1041449578, + "Guest_HG-Clock-Lucia-80": 1041456746, + "Guest_HG-Clock-Lucia-100": 1049840746, + "Guest_HG-Clock-Lucia-120": 1049873514, + "Guest_KM_Gummy_Worm_A_03": 232092771, + "MNT_Scooter_E": 200254340, + "PP_WolfWarrior_Balance": 991302673, + "PP_PetGift": 1816280689, + "PP_RatThief": 1390866051, + "Guest_PL_Titan_Small_A": 2015819364, + "Guest_PL_Titan_Large_B": 699791264, + "Guest_PL_Titan_Medium_A": 326730424, + "PP_Draconian": 1631557208, + "MNT_Pantera_Astral": 106092538, + "PP_YearOx": 105653084, + "PP_WolfWarrior_Ice": 1043644935, + "PP_SpriteDark": 2031730054, + "PP_Brudel": 1355697143, + "MNT_Astronomers": 742732792, + "MNT_CouchPotato": 418050932, + "MNT_Flowerfarthing": 1396771051, + "MNT_Astronomers_Blue": 236532779, + "MNT_Astronomers_Rainbow": 4428274, + "PP_Astronomer": 782095961, + "Guest_KM_Gummy_Bunny_B_01": 324806578, + "Guest_KM_DeadBeets_A_01": 1396016635, + "MNT_GummyBunny": 775900704, + "MNT_GummyBunny_A": 775834080, + "MNT_GummyBunny_B": 775836128, + "MNT_GummyBunny_C": 775838176, + "Transformation_BG_Minotaur_Life": 1445109091, + "MNT_Armadillo": 825635826, + "PP_SootGremlin": 768969093, + "PP_RoadRunner": 2057802060, + "MNT_TinyTrolly": 160881792, + "PP_Frog_B": 1530124761, + "MNT_FjordDragon": 129204340, + "Transformation_BG_NinjaPig_Myth": 422914079, + "PP_CorgiPup": 1638656105, + "MNT_Skateboard": 728018224, + "PP_Krokomummy": 326396577, + "MNT_Vroom": 1736383110, + "MNT_PlayerWings_AtralRaven": 1514774167, + "PP_Blimp": 690882397, + "Guest_GH_WoodenSkeletonKey_Boar_Boss_Grey_01": 678055851, + "Guest_GH_StoneSkeletonKey_Boar_Boss_Grey_01": 571670691, + "Guest_GH_GoldSkeletonKey_Boar_Boss_Grey_01": 961728819, + "MNT_Cloud_Promo_AW_01": 2032670992, + "Guest_EM_Hornet_Burner_A_01": 1881854632, + "Guest_EM_Hornet_Burner_A_02": 1881854636, + "Guest_EM_Hornet_Zapper_A_01": 2058539689, + "Guest_EM_Hornet_Zapper_A_02": 2058539685, + "Guest_EM_Ant_Giant_D_01": 379386121, + "Guest_EM_Ant_Giant_A_02": 1768146677, + "Guest_EM_Ant_Giant_A_01": 1768097525, + "Guest_EM_Ant_Giant_B_01": 379386122, + "Guest_KR_Moth_Priest_G_Achera": 381233569, + "Guest_KR_BeeMonsterF_A": 135146211, + "Guest_KR_BeeMonsterF_A_Weak": 1824123847, + "Guest_KR_Bee_Warrior_A": 1569202664, + "Guest_KR_Bee_Warrior_B": 1569204200, + "Guest_KR_Bee_Warrior_C_BossDrones": 1217189631, + "Guest_KR_Bee_Warrior_D": 1569205224, + "Guest_KR_Bee_Warrior_E": 1569204712, + "Guest_KR_Bee_Warrior_G": 1569205736, + "Guest_KR_Bee_Warrior_G_BossFight": 1055035476, + "Guest_KR_Bee_Warrior_H": 1569207272, + "Guest_KR_Bee_Warrior_I": 1569206760, + "Guest_KR_Bee_Warrior_L": 1569209320, + "Guest_KR_Bee_Warrior_M": 1569208808, + "Guest_KR_DragonBeetle_Monster_A": 1777853782, + "Guest_KR_Hornet_Drone_A": 1161590757, + "Guest_KR_Hornet_Drone_B": 1161607141, + "Guest_KR_Hornet_Drone_C": 1161623525, + "Guest_KR_Hornet_Drone_D": 1161639909, + "Guest_KR_Hornet_Drone_E": 1161656293, + "Guest_KR_Lice_DeepSpawn_A": 761604959, + "Guest_KR_Mantis_HunterF_A": 820917199, + "Guest_KR_Mantis_HunterF_B": 871248847, + "Guest_KR_Mantis_HunterF_C": 854471631, + "Guest_KR_Mantis_HunterF_D": 904803279, + "Guest_KR_Mantis_HunterF_F": 938357711, + "Guest_KR_Mantis_HunterF_F_Driftwood": 2053608437, + "Guest_KR_Mantis_HunterF_G": 921580495, + "Guest_KR_Mantis_HunterF_H": 971912143, + "Guest_KR_Mantis_HunterF_I": 955134927, + "Guest_KR_Mantis_HunterF_I_Zuzka": 935478878, + "Guest_KR_Mantis_HunterF_J": 1005466575, + "Guest_KR_Mantis_HunterF_J_Zelda": 886910558, + "Guest_KR_Mantis_HunterF_K": 988689359, + "Guest_KR_Mantis_HunterF_K_LongShd": 1767574336, + "Guest_KR_Mantis_HunterF_L": 1039021007, + "Guest_KR_Mantis_HunterF_M": 1022243791, + "Guest_KR_Mantis_HunterF_P_Bossfight": 1731428987, + "Guest_KR_Mantis_HunterF_Q": 552481743, + "Guest_KR_Mantis_HunterF_R": 602813391, + "Guest_KR_Mantis_HunterF_S": 586036175, + "Guest_KR_Mantis_HunterF_SecondColumnCpt_A": 1354033994, + "Guest_KR_Mantis_HunterF_T": 636367823, + "Guest_KR_Mantis_HunterF_Tribute": 1946371041, + "Guest_KR_Mantis_HunterF_U": 619590607, + "Guest_KR_Mantis_HunterF_V": 669922255, + "Guest_KR_Mantis_HunterF_W": 653145039, + "Guest_KR_Mantis_HunterF_Y": 686699471, + "Guest_KR_Mantis_HunterF_Z_Officer": 206016474, + "Guest_KR_Mantis_ProphetF_B": 1791139097, + "Guest_KR_Mantis_ProphetF_C": 1254268185, + "Guest_KR_Milipede_Warrior_A": 410726278, + "Guest_KR_Milipede_Warrior_B": 410726282, + "Guest_KR_Milipede_Warrior_C": 410726286, + "Guest_KR_Milipede_Warrior_D": 410726290, + "Guest_KR_Milipede_Warrior_H": 410726306, + "Guest_KR_Milipede_Warrior_J": 410726314, + "Guest_KR_Milipede_Warrior_K": 410726318, + "Guest_KR_Moth_Priest_A": 1421532604, + "Guest_KR_Moth_Priest_B": 1421532092, + "Guest_KR_Moth_Priest_C": 1421531580, + "Guest_KR_Moth_Priest_D": 1421531068, + "Guest_KR_Moth_Priest_D_Drepa": 1483393420, + "Guest_KR_Moth_Priest_E": 1421530556, + "Guest_KR_Moth_Priest_F": 1421530044, + "Guest_KR_Mantis_HunterF_Z": 737031119, + "Guest_KR_Roach_AntLion_A": 1860517987, + "Guest_KR_Roach_AntLion_B_Bossfight": 993284625, + "Guest_KR_Roach_AntLion_C": 1861566563, + "Guest_KR_Roach_Cook_A": 259847495, + "Guest_KR_Roach_Glutton_B": 249524334, + "Guest_KR_Roach_WaterBug_A": 1795473599, + "Guest_KR_Roach_WaterBug_B": 1745141951, + "Guest_MR_Beetle_Scarab_A_01": 1789741503, + "Guest_MR_Beetle_Scarab_A_02": 1789741491, + "Guest_MR_Beetle_Scarab_B_01": 1790265791, + "Guest_ZF-Goliath-R10-Boss-01": 7034074, + "Guest_ZF-Goliath-R10-Boss-02": 7034202, + "Guest_ZF-Goliath-R10-Boss-03": 7034330, + "Guest_ZF-Goliath-R10-Boss": 1603576807, + "Guest_ZF-Goliath-R11-Boss-01": 2140449574, + "Guest_ZF-Goliath-R11-Boss-02": 2140449446, + "Guest_ZF-Goliath-R11-Boss-03": 2140449318, + "Guest_ME1_Ant_Aunt_A": 707251855, + "Guest_ME1_Ant_Aunt_B": 1440231794, + "Guest_CC_Fly_Worker_A_01": 1497784524, + "Guest_CC_Roach_Worker_A_01": 1026321602, + "Guest_CC_Roach_Lieutenant_A_01": 1081690299, + "Guest_CC_Roach_Lieutenant_B_01": 1081690295, + "Guest_CC_Roach_Don_A_01": 547836893, + "Guest_CC_Roach_BBug_A_01": 1021150157, + "Guest_CC_Roach_RoachSteady_A_01": 859409247, + "Guest_Draconian-Caster-Yellow-Boss-R8": 1016221419, + "Guest_Draconian-Zombie-R8-2-1": 1226055265, + "Guest_Draconian-Zombie-R8-2": 1226115297, + "Guest_Draconian-Caster-Green-R7": 2143342719, + "Guest_Draconian-Warrior-Gold-Boss-R8": 1044388248, + "Guest_Draconian-Caster-Gray-R7": 95878769, + "Guest_DS-Boss-MAW": 1676071241, + "Guest_Draconian-Zombie-R8-1": 1226115309, + "Guest_Draconian-Warrior-Purple-Boss-R7": 601813964, + "Guest_Draconian-Caster-Tan-Boss-R7": 1973339532, + "Guest_Draconian-Caster-Blue-R6": 1684210173, + "Guest_Draconian-Caster-Yellow-R8": 2129956646, + "Guest_Draconian-Warrior-Red-R7": 521861944, + "Guest_Draconian-Warrior-Tan-R6": 1726416112, + "Guest_Draconian-Warrior-Purple-R8": 1896270341, + "Guest_Draconian-Caster-Blue-Boss-R7": 401581134, + "Guest_Draconian-Zombie-R8": 384497496, + "Guest_GH2-Draconian-HENCH-R10": 1149202878, + "Guest_GH2-Draconian-BOSS-R10": 2114378473, + "Guest_G14-DM-Draconian_Boss": 490246211, + "Guest_G14-DM-Draconian_Storm": 2035239226, + "Guest_G14-DM-Draconian_Ice": 782200563, + "Guest_G14-DM-Draconian_Malistaire_M": 1904691727, + "Guest_G14-DM-Draconian_Malistaire_S": 1904685583, + "Guest_G14-DM-Draconian_Malistaire_D": 1904700943, + "Guest_G14-DM-Draconian_Malistaire": 1904736751, + "Guest_G14-DM-Draconian_Malistaire_B": 1904702991, + "Guest_G14-DM-Draconian_Malistaire_I": 1904695823, + "Guest_G14-DM-Draconian_Malistaire_L": 1904692751, + "Guest_G14-DM-Draconian_Malistaire_F": 1904698895, + "Guest_Draconian-PW-Gauntlet-Boss": 493080513, + "Guest_CC_Draconian_A_01": 551348115, + "Guest_AZ-Parasaur-Undead-E": 2041242846, + "Guest_AZ-Parasaur-drkPriestF-F": 898239615, + "Guest_EM_Parasaur_DrkPriestF_A_01": 1007099606, + "Guest_EM_Parasaur_DrkPriestF_A_02": 1007099605, + "Guest_AZ-Parasaur-drkPriestF-D": 898501759, + "Guest_AZ-Parasaur-drkPriestF-E": 898370687, + "Guest_AZ-Parasaur-drkPriestF-A": 897846399, + "Guest_AZ-Parasaur-Undead-B": 1716853538, + "Guest_AZ-Parasaur-Undead-A": 106240802, + "Guest_AZ-Parasaur-Undead-G": 967501022, + "Guest_AZ-Parasaur-PriestF-D": 1177445525, + "Guest_AZ-Parasaur-Undead-C": 1179982626, + "Guest_AZ-Parasaur-drkPriestF-C": 897584255, + "Guest_AZ-Parasaur-Undead-SkurkisMinion": 1414766977, + "Guest_AZ-Parasaur-drkPriestF-B": 897715327, + "Guest_AZ-Parasaur-drkPriestF-B-Script": 1414847875, + "Guest_AZ_Parasaur_Priest_A_Boss_01": 890025421, + "Guest_AZ-Parasaur-Undead-D": 1504371934, + "Guest_AZ-Pteranodon-Knight-D": 1127364049, + "Guest_AZ-StoneSkeletonKey-Ixcax-Cursedwing": 699239601, + "Guest_AZ-Pteranodon-Knight-E": 1127363921, + "Guest_AZ-Pteranodon-Knight-F": 1127363793, + "Guest_AZ-Pteranodon-Knight-A-PageEvent": 942589002, + "Guest_AZ-StoneSkeletonKey-Minion-Death": 311645584, + "Guest_AZ-Pteranodon-Knight-A": 1127364433, + "Guest_AZ-Raptor-Wraith-A": 585729247, + "Guest_AZ-Raptor-Undead-D": 893623689, + "Guest_G14-HS-Ifzt": 1914694612, + "Guest_AZ-Raptor-Warrior-A": 855749884, + "Guest_AZ-Raptor-Undead-C": 897293705, + "Guest_AZ-Raptor-Undead-B": 896769417, + "Guest_AZ-Raptor-Undead-F": 894672265, + "Guest_AZ-Raptor-Warrior-F": 872527100, + "Guest_AZ-Raptor-Warrior-H": 973190396, + "Guest_AZ-Tritops-Warrior-I": 1942669769, + "Guest_AZ-Tritops-Undead-H": 1215305911, + "Guest_AZ-Tritops-Undead-E": 1164974263, + "Guest_AZ-Tritops-SpkWarrior-A": 860850257, + "Guest_AZ-Tritops-SpkWarrior-B": 860862545, + "Guest_AZ-Tritops-Undead-F": 1181751479, + "Guest_AZ-Tritops-Warrior-K": 868927945, + "Guest_AZ-Tritops-Undead-G": 1198528695, + "Guest_AZ-Tritops-Mummy-A": 1912444877, + "Guest_AZ-Tritops-Warrior-G": 1278555704, + "Guest_AZ-Tritops-Undead-D": 1148197047, + "Guest_AZ-Tritops-Undead-A": 1097865399, + "Guest_AZ-Tritops-SpkChief-B": 2096319577, + "Guest_AZ-Tritops-Mummy-B": 1910872013, + "Guest_AZ-Tritops-Warrior-H": 1405798857, + "Guest_AZ-Dino-Undead-A": 508678670, + "Guest_AZ-Dino-Undead-B": 508679182, + "Guest_AZ-Dino-Undead-D": 508680206, + "Guest_KR_Dino_Undead_A": 1638800628, + "Guest_KR_Dino_Undead_Minion_A": 892450235, + "MNT_HayRideTruck": 75377404, + "MNT_ShadowSpiderForm": 1439860426, + "Transformation_BG_Draconian_Death": 794598804, + "PP_BabyOrca": 1056061090, + "Transformation_BG_Cyclops_Fire": 638854828, + "Transformation_BG_Fairy_Ice": 874078461, + "PP_SpriteLife": 1824998010, + "PP_Raccoon": 1107326808, + "PP_FireKitten": 593048189, + "MNT_SkeletalDuck": 1306273036, + "PP_VampireSquid": 431023109, + "PP_CottonCandy": 891201813, + "PP_ThreeHeadGoat": 1282096939, + "PP_EyeBot": 260189248, + "MNT_DeathBoat": 1444454568, + "MNT_Lemuria": 908974762, + "MNT_DeathBoat_B": 1444456538, + "MNT_DeathBoat_C": 1444456474, + "MNT_Spooky3": 1667775622, + "MNT_PresentBox": 122082000, + "MNT_Orca": 1726961653, + "Guest_LM_Golem_Steel_A_01": 19551853, + "Guest_LM_Golem_Steel_A_02": 36329069, + "Guest_LM_EyeBot_A_01_Death": 380508535, + "Guest_LM_EyeBot_A_01_Myth": 167840640, + "PP_ThreeHeadGoat_B": 1209286443, + "PP_ThreeHeadGoat_C": 1211383595, + "Guest_KR_Eel_Whirligig_A": 1062268734, + "Guest_KR_Goliath_Behemoth_A": 1231139987, + "Guest_KR_Goliath_Behemoth_C": 1231139995, + "Guest_KR_Goliath_Behemoth_D": 1231139975, + "Guest_KR_Goliath_Behemoth_E": 1231139971, + "Guest_KR_Goliath_Behemoth_H": 1231140023, + "Guest_KR_Goliath_Crusher_C": 1651720060, + "Guest_KR_Goliath_Crusher_D": 2106376324, + "Guest_KR_Goliath_Crusher_F": 1032634500, + "Guest_KR_Goliath_Crusher_G": 495763588, + "Guest_KR_Goliath_Crusher_K": 1651720059, + "Guest_AZ-Goliath-Crusher-A": 1874784966, + "Guest_AZ-Goliath-Crusher-B": 264172230, + "Guest_AZ-Goliath-Crusher-C": 801043142, + "Guest_AZ-Goliath-Crusher-D": 809569594, + "Guest_AZ-Goliath-Crusher-E": 272698682, + "Guest_HG_AKT_Butterfly_Time_A_25": 1788523059, + "Guest_HG_AKT_Butterfly_Time_A_50": 1130017331, + "Guest_HG_AKT_Butterfly_Time_A_75": 1809494579, + "Guest_HG_AKT_Butterfly_Time_A_100": 1113240099, + "Guest_HG_AKT_Butterfly_Time_A_130": 1515893283, + "MNT_DeathBoat_D": 1444456922, + "Guest_KR_RhinoBeetle_Sun_A_Bossfight": 47895417, + "Guest_KR_RhinoBeetle_Star_A": 1947510103, + "Guest_KR_RhinoBeetle_Moon_A": 1751275863, + "Guest_ME1_Clockwork_Marine_A": 1481452452, + "Guest_ME1_Clockwork_Marine_B": 1481452068, + "Guest_CC_GoldSkeletonKey_Lice_DeepSpawn_B": 1306132994, + "Guest_KR_DamdinBazar_A_Bossfight": 1333596311, + "Guest_DS-Minion-MAW2": 356796677, + "Guest_KH-Wyrmling-1": 116330513, + "Guest_KH-Wyrmling-20": 183439385, + "Guest_KH-Wyrmling-40": 317657113, + "Guest_KH-Wyrmling-60": 451874841, + "Guest_KH-Wyrmling-80": 586092569, + "Guest_PL_Polar_Bear_Solider_C": 1785662565, + "Guest_Skeleton-Silver-WCBoss-L01": 17766963, + "Guest_Banshee-Red-Elite-L24_B": 1902069117, + "Transformation_BG_WolfWarrior_Myth": 339098032, + "Transformation_BG_RatThief_Balance": 881728218, + "Transformation_BG_Colossus_Storm": 593527492, + "Transformation_BG_Elf_Life": 347405087, + "Transformation_BG_Minotaur_Ice": 1197752291, + "MNT_TRex_B": 660285500, + "PP_SpriteDark_Ice": 2036248504, + "MNT_RollingBall": 1658139390, + "Guest_LM_TRex_Base_A_03": 1378630657, + "Guest_LM_TRex_Base_A_04": 1378745345, + "Guest_LM_TRex_Base_A_05": 1378728961, + "Guest_LM_TRex_Base_A_01": 1378663425, + "Guest_LM_TRex_Base_A_02": 1378647041, + "Guest_LM_TRex_Cyborg_A_01": 151609741, + "Guest_LM_TRex_Cyborg_A_02": 168386957, + "Guest_LM_TRex_Cyborg_A_03": 185164173, + "Guest_LM_TRex_Cyborg_B_01": 151611277, + "Guest_LM_TRex_Cyborg_D_01": 151612301, + "Guest_LM_TRex_Cyborg_E_01": 151611789, + "Guest_LM_TRex_Cyborg_C_01": 151610765, + "Guest_LM_Draconian_Base_A_01": 1607373112, + "Guest_LM_EyeBot_B_01": 1085543056, + "Guest_LM_Drone_Eye_C_01": 916954037, + "Guest_LM_Drone_Eye_D_01": 1230529608, + "Guest_LM_Drone_Eye_D_02": 1230545992, + "Guest_LM_Drone_Eye_D_04": 1230578760, + "Guest_LM_Drone_Eye_D_03": 1230562376, + "Guest_LM_Drone_Eye_A_01": 916954038, + "Guest_LM_Drone_Eye_A_02": 916937654, + "Guest_LM_Drone_Eye_B_01": 1230529611, + "Guest_LM_Drone_Eye_D_05": 1230595144, + "Guest_LM_Drone_Eye_D_07": 1230627912, + "Guest_LM_Drone_Eye_D_08": 1230644296, + "Guest_LM_Drone_Eye_A_03": 916921270, + "Guest_LM_Drone_Eye_A_04": 916904886, + "Guest_LM_Drone_Eye_C_02": 916937653, + "Guest_LM_EyeBot_B_02": 1061940593, + "Guest_LM_EyeBot_B_03": 1085543055, + "Guest_LM_EyeBot_B_04": 1061940594, + "Guest_LM_Drone_Eye_C_03": 916921269, + "Guest_LM_Robot_Kit10_A_01": 199936400, + "Guest_LM_Colossus_Mander_A_01": 2107529026, + "Guest_LM_Robot_Future_A_01": 998840846, + "Guest_LM_Robot_FutureBIG_A_01": 340408568, + "Guest_LM_Robot_FutureBIG_A_02": 340396280, + "Guest_LM_Robot_FutureBIG_A_03": 340400376, + "Guest_LM_Robot_OldOne_A_01": 779070973, + "Guest_LM_Robot_OldOne_A_02": 1315941885, + "Guest_LM_Millipede_Centi_A_01": 168575797, + "Guest_LM_Millipede_Centi_A_03": 168583989, + "Guest_LM_Millipede_Centi_A_02": 168588085, + "Guest_LM_Millipede_Centi_A_04": 168563509, + "Guest_LM_Moth_Sorcerer_A_01": 228191136, + "Guest_LM_Boar_Barbarian_A_01": 1238634912, + "Guest_LM_Boar_Barbarian_A_02": 1238634528, + "Guest_LM_Boar_Barbarian_A_03": 1238634656, + "Guest_LM_Boar_Barbarian_A_04": 1238635296, + "Guest_LM_Boar_Barbarian_A_05": 1238635424, + "Guest_LM_Boar_Chief_A_01": 357051311, + "Guest_LM_Fungus_Humango_A_01": 1398460044, + "Guest_LM_Fungus_Humango_A_02": 1398460172, + "Guest_LM_Treant_Base_A_01": 1658172241, + "Guest_LM_GiantTree_EvilRoots_A_01": 282225934, + "Guest_LM_PA_GreenMan_A_01": 67705044, + "Guest_LM_Fungus_Humango_B_01": 1348128396, + "Guest_LM_Fungus_Humango_A_03": 1398460300, + "Guest_LM_Fungus_Man_C_01": 1648824156, + "Guest_LM_Fungus_Man_C_02": 1650397020, + "Guest_LM_Rhino_Zombie_A_01": 248513993, + "Guest_LM_Malughast_Base_01": 883820436, + "Guest_LM_Malughast_Base_02": 1420691348, + "Guest_LM_Lemur_HierarchF_H_04": 231562115, + "Guest_LM_Malughast_Base_03": 1957562260, + "Guest_LM_Malughast_Base_05": 1263663212, + "Guest_LM_Malughast_Base_06": 726792300, + "Guest_LM_Malughast_Base_08": 346949523, + "Guest_LM_Malughast_Base_09": 883820435, + "Guest_LM_Malughast_Base_04": 1800534124, + "Guest_LM_Minotaur_Skeleton_A_01": 1865122824, + "Guest_LM_Lemur_Wild_B_03": 1783764037, + "Guest_LM_Lemur_HierarchF_H_01": 231541635, + "Guest_LM_Lemur_HierarchF_H_02": 231553923, + "Guest_LM_Mander_Warrior_A_01": 1651245419, + "Guest_LM_Mander_Warrior_A_02": 1651245291, + "Guest_LM_Mander_Warrior_B_01": 1634468203, + "Guest_LM_Mander_Warrior_B_02": 1634468075, + "Guest_LM_Mander_Warrior_A_03": 1651245163, + "Guest_LM_Mander_Warrior_B_03": 1634467947, + "Guest_LM_Mander_Warrior_A_06": 1651245803, + "Guest_LM_Mander_Warrior_A_05": 1651245931, + "Guest_LM_Mander_Mummy_B_01": 1844111521, + "Guest_LM_Mander_Hero_B_01": 865113284, + "MNT_HolidayHippogriff": 938892112, + "MNT_Sabertooth_Ice": 1870381696, + "PP_FenrisWolf_Bantam": 776647759, + "MNT_JetPack": 1986300552, + "MNT_Scooter_F": 1005560708, + "PP_FossaKitten_A": 431748212, + "PP_Elfvis": 147991405, + "Guest_LM_Chicken_Hero_A_01": 1308728300, + "Guest_LM_Horse_Explorer_A_01": 434405482, + "Guest_LM_Duck_HeroineF_A_01": 133199186, + "Guest_LM_Crane_Hero_A_01": 204272548, + "Guest_LM_Deer_HeroineF_A_01": 1800374959, + "Guest_LM_Deer_Hero_A_01": 223109503, + "Guest_LM_Dog_Hero_A_01": 1434615064, + "PP_YearTiger": 777048708, + "MNT_Barrel": 3576425, + "MNT_Krampus": 404117611, + "PP_ChineseTigerCub": 1256032005, + "PP_Lemur": 565774155, + "PP_Robot": 1089075331, + "PP_Capybara": 451970762, + "Guest_LM_Ghoul_Base_A_01": 1822415945, + "Guest_LM_Lemur_HierarchF_H_03": 231549827, + "Guest_LM_Ghoul_Base_A_02": 1820843081, + "Guest_LM_Ghoul_Base_A_03": 1821367369, + "MNT_SpringSoF2022": 1685679511, + "MNT_WarElephant": 875015497, + "PP_Strix": 514230046, + "MNT_Beachball": 791896033, + "MNT_Blank": 633398131, + "MNT_CardboardFlier": 1646636689, + "MNT_LochMonster": 879660722, + "Transformation_BG_Krok_Death": 1395067182, + "Transformation_BG_Draconian_Fire": 1551581732, + "PP_Scotty": 1708580475, + "Guest_KR_Mice_Knight_A": 480101508, + "PP_Peacock": 1178721112, + "MNT_PoodleMoth": 975420235, + "PP_Hummingbird": 624666906, + "PP_WolfWarrior_Myth": 470737416, + "Guest_HG_UFD_Ghost_QueenF_A_100": 795323059, + "Guest_HG_UFD_Ghost_QueenF_A_50": 728230579, + "Guest_HG_UFD_Pirate_UndeadHighland_A_Balance_150": 201145133, + "Guest_HG_UFD_Pirate_UndeadHighland_A_Balance_100": 201144941, + "Guest_HG_UFD_Pirate_UndeadHighland_A_Balance_50": 201177701, + "Guest_HG_UFD_Pirate_UndeadHighland_A_Star_150": 1329885920, + "Guest_HG_UFD_Pirate_UndeadHighland_A_Star_100": 1304720096, + "Guest_HG_UFD_Pirate_UndeadHighland_A_Star_50": 1305768671, + "Guest_HG_UFD_Pirate_UndeadHighland_A_Shadow_150": 1263689971, + "Guest_HG_UFD_Pirate_UndeadHighland_A_Shadow_100": 1263689977, + "Guest_HG_UFD_Pirate_UndeadHighland_A_Shadow_50": 189949177, + "Guest_HG_UFD_Kelpie_Warrior_A_150": 54296095, + "Guest_HG_UFD_Kelpie_Warrior_A_100": 725384735, + "Guest_HG_UFD_Kelpie_Warrior_A_50": 708607503, + "Guest_HG_UFD_Pirate_UndeadHighland_B_150": 1099317831, + "Guest_HG_UFD_Pirate_UndeadHighland_B_100": 25576008, + "Guest_HG_UFD_Pirate_UndeadHighland_B_50": 159793864, + "Guest_HG_UFD_Ghost_QueenF_A_150": 795716275, + "PP_SpiderMinion": 557357331, + "MNT_Vines_Rainbow": 1587180338, + "MNT_YoungDrake": 1279496198, + "PP_Pet_Coconut": 444388490, + "DragonKI": 1490194214, + "PP_Sharkfish": 601628284, + "PP_MimicCake": 48071878, + "Guest_AQ-Bronze-Eagle": 375279744, + "Guest_Spider-Brown-L26": 2128680185, + "Guest_KR_Spider_Giant_D": 744401035, + "Guest_Wizard-Female-Band-Blue-R8": 1447486557, + "Guest_CC_Human_DSCrusaderF_A_01": 726538068, + "Guest_WC_Scarecrow_A_01": 867491011, + "Guest_WC_Banshee_A_01": 1433786463, + "Guest_WC_LostSoul_A_01": 796936146, + "PP_Fairy_Myth": 1117624344, + "PP_SpriteDark_Myth": 1884257976, + "BG_CyclopsLife_A": 944091673, + "Transformation_BG_NinjaPig_Storm": 2005137181, + "Transformation_BG_Fairy_Myth": 1880704188, + "Transformation_BG_Cyclops_Life": 638936708, + "Guest_AQ-Eagle-Praetorian": 1988013806, + "Guest_KM_BabyCarrot_A_01": 766239512, + "Guest_G14-DM-Gargoyle": 282898047, + "Guest_MR_Durvish_Sergeant_A_Boss_01": 1532609325, + "Guest_Cyclops-RedHelmet-KTBoss-L28": 2072371506, + "Guest_EM_Pig_Singer_A_01": 698597069, + "Guest_EM_Pig_Captain_A": 977505995, + "Guest_EM_Pig_Crewman_A": 465576459, + "PP_ChipmunkConductor": 1089819900, + "PP_LuckyCat": 1109326826, + "MNT_ImpCar": 1736092191, + "MNT_Book": 1547655078, + "MNT_JackoLantern": 649919658, + "MNT_Zheng": 742453108, + "MNT_Train": 413197899, + "MNT_Cerberus": 552686313, + "PP_Coconut": 1122741587, + "Transformation_Statue": 1153168084, + "Transformation_Nullity": 622504394, + "PP_Irk": 1825277392, + "Guest_Wyrmling-Fire-R8-1": 531485009, + "MNT_WolfLowPoly_A": 1947890962, + "MNT_WolfLowPoly_B": 1947825426, + "Transformation_BG_RatThief_Fire": 1169330235, + "Transformation_BG_WolfWarrior_Death": 159966683, + "Transformation_BG_Minotaur_Balance": 657855108, + "Transformation_BG_Draconian_Ice": 1907339814, + "Transformation_BG_Colossus_Myth": 1305894338, + "Transformation_NV_Penguin": 1757096851, + "Transformation_NV_Unicorn": 60447768, + "Transformation_NV_Monkey": 1379873688, + "Transformation_NV_Dog": 1961288968, + "PP_Wolf_Storm": 455227171, + "PP_WoodDuck": 1680912895, + "MNT_RockingHorse": 1205280059, + "MNT_SOF2022_Car": 219868812, + "PP_Buffaloon": 796152873, + "MNT_Steamboat": 1969530127, + "MNT_FelizNavidog": 847046394, + "PP_Mustache": 1571079379, + "Guest_DD-DS01-Skeleton-Pirate-20": 226826848, + "Guest_DD-DS01-Skeleton-Pirate-40": 201661024, + "Guest_DD-DS01-Skeleton-Pirate-60": 210049632, + "Guest_DD-DS01-Skeleton-Pirate-80": 251992672, + "Guest_DD-DS01-Skeleton-Pirate": 1994450336, + "Guest_DD-DS01-Shadow-Minion-Fire": 1074864956, + "Guest_DD-DS01-Shadow-Minion-Ice": 1841681214, + "Guest_DD-DS01-Shadow-Minion-Fire-20": 1074880881, + "Guest_DD-DS01-Shadow-Minion-Fire-40": 1074880945, + "Guest_DD-DS01-Shadow-Minion-Ice-20": 96850220, + "Guest_DD-DS01-Shadow-Minion-Ice-40": 96850218, + "Guest_DD-DS01-Shadow-Minion-Fire-60": 1074881009, + "Guest_DD-DS01-Shadow-Minion-Ice-60": 96850216, + "Guest_DD-DS01-Shadow-Minion-Fire-80": 1074880561, + "Guest_DD-DS01-Shadow-Minion-Ice-80": 96850214, + "Guest_SC-SpectreOfB-1": 1471950935, + "Guest_SC-SpectreOfB-20": 1471942759, + "Guest_SC-SpectreOfB-40": 1471942663, + "Guest_SC-SpectreOfB-60": 1471942695, + "Guest_SC-SpectreOfB-80": 1471942855, + "Guest_KH-Skeleton-Ice-60": 2108358962, + "Guest_KH-Skeleton-Ice-40": 2108391730, + "Guest_KH-Skeleton-Ice-20": 2108293426, + "Guest_KH-Skeleton-Ice-1": 2099953970, + "Guest_KH-Skeleton-Ice-80": 2108195122, + "Guest_KH-Undead-Caster-60": 1662604496, + "Guest_KH-Undead-Caster-40": 1661555920, + "Guest_KH-Undead-Caster-20": 1664701648, + "Guest_KH-Undead-Caster-1": 1931564240, + "Guest_KH-Undead-Caster-80": 1667847376, + "Guest_DD-PA01-DeadBeets": 1664999367, + "Guest_DD-PA01-DeadBeets-20": 1901453253, + "Guest_DD-PA01-DeadBeets-40": 2002116549, + "Guest_DD-PA01-DeadBeets-60": 1968562117, + "Guest_DD-PA01-DeadBeets-80": 2069225413, + "Guest_DD-PA01-Disparagus": 1865816461, + "Guest_DD-PA01-Disparagus-20": 573970895, + "Guest_DD-PA01-Disparagus-40": 499770929, + "Guest_DD-PA01-Disparagus-60": 1573512753, + "Guest_DD-PA01-Disparagus-80": 1647712718, + "Guest_DD-PA01-MeanestFlyTrap": 2001546861, + "Guest_DD-PA01-MeanestFlyTrap-20": 1936326253, + "Guest_DD-PA01-MeanestFlyTrap-40": 1936064109, + "Guest_DD-PA01-MeanestFlyTrap-60": 1935801965, + "Guest_DD-PA01-MeanestFlyTrap-80": 1937636973, + "Guest_HG-MD-MacDeath-20": 182639104, + "Guest_HG-MD-MacDeath-40": 182638080, + "Guest_HG-MD-MacDeath-60": 182637056, + "Guest_HG-MD-MacDeath-80": 182636032, + "Guest_HG-MD-MacDeath-100": 174252032, + "Guest_HG-MD-MacDeath-130": 174202880, + "Guest_HG_Sinbad_Skeleton_25": 494617874, + "Guest_HG_Sinbad_Skeleton_50": 42253050, + "Guest_HG_Sinbad_Skeleton_75": 1115994862, + "Guest_HG_Sinbad_Skeleton_100": 2105232646, + "Guest_HG_Sinbad_Skeleton_130": 2105232650, + "Guest_HG_Sinbad_Skeleton_25_02": 492722834, + "Guest_HG_Sinbad_Skeleton_50_02": 44148090, + "Guest_HG_Sinbad_Skeleton_75_02": 1117889902, + "Guest_HG_Sinbad_Skeleton_100_02": 2044247302, + "Guest_HG_Sinbad_Skeleton_130_02": 2044247306, + "Guest_DD-AV01-WyrmBoss": 1648677986, + "Guest_DD-AV01-WyrmBoss-20": 1926730850, + "Guest_DD-AV01-WyrmBoss-40": 1927779426, + "Guest_DD-AV01-WyrmBoss-60": 1928828002, + "Guest_DD-AV01-WyrmBoss-80": 1921487970, + "Guest_RH-Wyrm-Boss-01": 1027277645, + "Guest_RH-Wyrm-Boss-20": 1027277660, + "Guest_RH-Wyrm-Boss-40": 1027277663, + "Guest_RH-Wyrm-Boss-60": 1027277662, + "Guest_RH-Wyrm-Boss-80": 1027277657, + "Guest_HG_Sinbad_Wyrm_25": 1101443356, + "Guest_HG_Sinbad_Wyrm_50": 1101528860, + "Guest_HG_Sinbad_Wyrm_75": 1101445916, + "Guest_HG_Sinbad_Wyrm_100": 1093138204, + "Guest_HG_Sinbad_Wyrm_130": 1093089052, + "Guest_KH-Treant-1": 2001244331, + "Guest_KH-Treant-60": 1968148651, + "Guest_KH-Treant-40": 1968017579, + "Guest_KH-Treant-20": 1967886507, + "Guest_KH-Treant-80": 1967231147, + "Guest_DD-PA01-ForestGrump": 1969685870, + "Guest_DD-PA01-ForestGrump-20": 714666713, + "Guest_DD-PA01-ForestGrump-40": 714666689, + "Guest_DD-PA01-ForestGrump-60": 714666697, + "Guest_DD-PA01-ForestGrump-80": 714666737, + "Guest_DD-PA01-ForestNymphs": 227087348, + "Guest_DD-PA01-ForestNymphs-20": 227023552, + "Guest_DD-PA01-ForestNymphs-60": 227023040, + "Guest_DD-PA01-ForestNymphs-80": 227024832, + "Guest_SC-Pig-BalanceWizardA-1": 475456968, + "Guest_SC-Pig-BalanceWizardA-20": 477550024, + "Guest_SC-Pig-BalanceWizardA-40": 477541832, + "Guest_SC-Pig-BalanceWizardA-60": 477533640, + "Guest_SC-Pig-BalanceWizardA-80": 477525448, + "Guest_SC-Pig-BalanceWizardB-1": 475456964, + "Guest_SC-Pig-BalanceWizardB-20": 477550020, + "Guest_SC-Pig-BalanceWizardB-40": 477541828, + "Guest_SC-Pig-BalanceWizardB-60": 477533636, + "Guest_SC-Pig-BalanceWizardB-80": 477525444, + "Guest_SC-Pig-BalanceWizardC-1": 475456960, + "Guest_SC-Pig-BalanceWizardC-20": 477550016, + "Guest_SC-Pig-FireWizard-1": 2048176291, + "Guest_SC-Pig-FireWizard-20": 2031399073, + "Guest_SC-Pig-FireWizard-40": 2132062369, + "Guest_SC-Pig-FireWizard-60": 2098507937, + "Guest_SC-Pig-FireWizard-80": 1930735777, + "Guest_SC-Pig-IceWizardF-1": 1178687744, + "Guest_SC-Pig-IceWizardF-20": 1161910526, + "Guest_SC-Pig-IceWizardF-40": 1128356094, + "Guest_SC-Pig-IceWizardF-60": 1094801662, + "Guest_SC-Pig-IceWizardF-80": 1329682686, + "Guest_SC-Pig-MythWizard-1": 2048492725, + "Guest_SC-Pig-MythWizard-20": 2031715511, + "Guest_SC-Pig-MythWizard-40": 2132378807, + "Guest_SC-Pig-MythWizard-60": 2098824375, + "Guest_SC-Pig-MythWizard-80": 1931052215, + "Guest_SC-Pig-StormWizardF-1": 1743849420, + "Guest_SC-Pig-StormWizardF-20": 1743851464, + "Guest_SC-Pig-StormWizardF-40": 1743851488, + "Guest_SC-Pig-StormWizardF-60": 1743851480, + "Guest_SC-Pig-StormWizardF-80": 1743851504, + "Guest_KH-Pig-Bandit-Lord-1": 1080496628, + "Guest_KH-Pig-Bandit-Lord-20": 543625652, + "Guest_KH-Pig-Bandit-Lord-40": 530116172, + "Guest_KH-Pig-Bandit-Lord-60": 1603857996, + "Guest_KH-Pig-Bandit-Lord-80": 1617367475, + "Guest_KH-Pig-Bandit-Ninja-1": 1945100907, + "Guest_KH-Pig-Bandit-Ninja-20": 1945102951, + "Guest_KH-Pig-Bandit-Ninja-40": 1945102975, + "Guest_KH-Pig-Bandit-Ninja-60": 1945102967, + "Guest_KH-Pig-Bandit-Ninja-80": 1945102927, + "Guest_KH-Pig-War-Caster-1": 656859765, + "Guest_KH-Pig-War-Caster-20": 606528119, + "Guest_KH-Pig-War-Caster-40": 572973687, + "Guest_KH-Pig-War-Caster-60": 539419255, + "Guest_KH-Pig-War-Caster-80": 774300279, + "Guest_KH-Pig-War-Warrior-Boss-1": 16342355, + "Guest_KH-Pig-War-Warrior-Boss-20": 2143724205, + "Guest_KH-Pig-War-Warrior-Boss-40": 2118558381, + "Guest_KH-Pig-War-Warrior-Boss-60": 2126946989, + "Guest_KH-Pig-War-Warrior-Boss-80": 2101781165, + "Guest_SC-Pig-BalanceWizardC-40": 477541824, + "Guest_SC-Pig-BalanceWizardC-60": 477533632, + "Guest_SC-Pig-BalanceWizardC-80": 477525440, + "Guest_KH-Helephant-Death-20": 1109389719, + "Guest_KH-Helephant-Death-40": 2111835753, + "Guest_KH-Helephant-Death-60": 1038093929, + "Guest_KH-Helephant-Death-80": 35647896, + "Guest_KH-GreyOgre-Spider-1": 356368404, + "Guest_KH-GreyOgre-Spider-20": 1966981204, + "Guest_KH-GreyOgre-Spider-40": 1254244268, + "Guest_KH-GreyOgre-Spider-60": 180502444, + "Guest_KH-GreyOgre-Spider-80": 893239379, + "Guest_HG_Sinbad_Colossus_25": 1190802829, + "Guest_HG_Sinbad_Colossus_50": 1493551719, + "Guest_HG_Sinbad_Colossus_75": 419809907, + "Guest_HG_Sinbad_Colossus_100": 653933977, + "Guest_HG_Sinbad_Colossus_130": 653933973, + "Guest_NV_Dino_AberrantUndead_A_01": 2035087398, + "Guest_NV_Hellephant_Aberrant_A_01": 989522333, + "Guest_NV_Hellephant_Aberrant_A_02": 989522334, + "Guest_NV_BananaSpider_Base_A_01": 1585810541, + "Guest_NV_BananaSpider_Base_A_02": 1581616237, + "Guest_NV_BananaSpider_Base_A_03": 1577421933, + "Guest_NV_BananaSpider_Base_A_04": 1606782061, + "Guest_NV_BananaSpider_Base_A_05": 1602587757, + "Guest_NV_Wyrm_Aberrant_A_01": 16108415, + "Guest_NV_Monkey_Zombie_A_01": 1854775300, + "Guest_NV_Monkey_Zombie_A_02": 1854775304, + "Guest_NV_Monkey_Zombie_A_03": 1854775308, + "Guest_NV_Monkey_Zombie_A_04": 1854775312, + "MNT_Flag_Monster": 867940056, + "Guest_SKB_WY_DarkBramble_A_30": 2046798767, + "Guest_SKB_WY_DarkBramble_A_50": 2046797999, + "Guest_SKB_WY_DarkBramble_A_100": 2044701359, + "Guest_SKB_WY_DarkBramble_A_150": 2044721839, + "Guest_SKB_GH_Boar_A_30": 1547921275, + "Guest_SKB_WC_SpiritIgnorance_A_50": 1488876986, + "Guest_SKB_WC_SpiritIgnorance_A_100": 2025748410, + "Guest_SKB_WC_SpiritIgnorance_A_150": 2025748413, + "Guest_SKB_DS_Loremaster_A_50": 527751539, + "Guest_SKB_DS_Loremaster_A_100": 527817059, + "Guest_SKB_DS_Loremaster_A_150": 527817699, + "Guest_SKB_CL_Dan_A_50": 637418706, + "Guest_SKB_CL_Dan_A_60": 1510064941, + "Guest_SKB_CL_Dan_A_100": 637410512, + "Guest_SKB_CL_Dan_A_150": 637410432, + "Guest_SKB_AV_Spectre_A_50": 2104631195, + "Guest_SKB_AV_Spectre_A_100": 2102534041, + "Guest_SKB_AV_Spectre_A_150": 2018647961, + "Guest_SKB_MS_Samoorai_A_50": 2029641915, + "Guest_SKB_MS_Samoorai_A_100": 2096750843, + "Guest_SKB_MS_Samoorai_A_150": 587603717, + "Transformation_BG_Krok_StromTemplate": 1317694546, + "PP_ChineseRabbit": 382941643, + "PP_ParadeElf": 1036247808, + "MNT_HeartSwarm": 918199310, + "MNT_SpringSOF2023": 1417178519, + "Transformation_BG_Elf_Death2Template": 1606653101, + "MNT_GummyBunny_D": 775840224, + "Transformation_BG_Krok_Life2Template": 747486212, + "PP_Flame": 959186933, + "PP_YachtRock": 1500927358, + "PP_PirateYachtRock": 1227549100, + "PP_ChickenMonster": 1845706534, + "PP_SnowHoppers_B": 1496460038, + "PP_SnowHoppers_C": 1496457990, + "MNT_Oarfish": 29720265, + "PP_RingTailedCat": 993143427, + "MNT_Fanboat": 19347694, + "MNT_MiniSub": 298697910, + "PP_DumboOctopus": 966435639, + "PP_Glowbug_Balance": 1405529577, + "PP_Glowbug_Death": 405117107, + "PP_Glowbug_Fire": 651698987, + "PP_Glowbug_Ice": 2124926395, + "PP_Glowbug_Life": 601367299, + "PP_Glowbug_Myth": 592978024, + "PP_Glowbug_Storm": 61190446, + "PP_DumboOctopus_B": 968448823, + "PP_DumboOctopus_C": 968383287, + "PP_BananaSpider_01": 1074383522, + "PP_BananaSpider_02": 1080674978, + "PP_BananaSpider_03": 1078577826, + "Guest_HG_NM_BeardDragon_Base_C_01": 82913785, + "Guest_HG_NM_BeardDragon_Base_C_02": 82913786, + "Guest_HG_NM_BeardDragon_Base_C_03": 82913787, + "Guest_HG_NM_Glowbug_Base_C_01": 544959703, + "Guest_HG_NM_Glowbug_Base_C_02": 544955607, + "Guest_HG_NM_Glowbug_Base_C_03": 544951511, + "Guest_HG_NM_Glowbug_Base_C_04": 544947415, + "Guest_HG_NM_Glowbug_Base_C_05": 544943319, + "Guest_HG_NM_Glowbug_Base_C_06": 544939223, + "Guest_HG_NM_Glowbug_Base_C_07": 544935127, + "MNT_BouquetofFlowers": 1511180560, + "PP_Piggle_Rainbow": 91081383, + "MNT_Sabertooth_FlameSaber": 1949516909, + "Guest_HG_NM_BeardDragon_Base_A_01": 83175929, + "Guest_HG_NM_BeardDragon_Base_A_02": 83175930, + "Guest_HG_NM_BeardDragon_Base_A_03": 83175931, + "Guest_HG_NM_BeardDragon_Base_B_01": 83044857, + "Guest_HG_NM_BeardDragon_Base_B_02": 83044858, + "Guest_HG_NM_BeardDragon_Base_B_03": 83044859, + "Guest_HG_NM_Glowbug_Base_B_01": 8088791, + "Guest_HG_NM_Glowbug_Base_B_02": 8084695, + "Guest_HG_NM_Glowbug_Base_B_03": 8080599, + "Guest_HG_NM_Glowbug_Base_B_04": 8076503, + "Guest_HG_NM_Glowbug_Base_B_05": 8072407, + "Guest_HG_NM_Glowbug_Base_B_06": 8068311, + "Guest_HG_NM_Glowbug_Base_B_07": 8064215, + "Guest_HG_NM_Glowbug_Base_A_01": 1618701527, + "Guest_HG_NM_Glowbug_Base_A_02": 1618697431, + "Guest_HG_NM_Glowbug_Base_A_03": 1618693335, + "Guest_HG_NM_Glowbug_Base_A_04": 1618689239, + "Guest_HG_NM_Glowbug_Base_A_05": 1618685143, + "Guest_HG_NM_Glowbug_Base_A_06": 1618681047, + "Guest_HG_NM_Glowbug_Base_A_07": 1618676951, + "MNT_SummerSOF2023": 1636120912, + "PP_Cyclops_Fire": 7821755, + "PP_Death_Elf": 1535744155, + "PP_Newt": 1438123483, + "PP_Echidna": 735439358, + "MNT_Wombat": 580544786, + "Transformation_BG_NinjaPig_Balance": 1799661438, + "Transformation_BG_Cyclops_Ice": 647975824, + "Transformation_BG_Minotaur_Storm": 1005667041, + "Transformation_GR_Parasaur_Priest_Ice": 1101466351, + "Transformation_GR_Parasaur_Priest_Fire": 892193041, + "Transformation_GR_Parasaur_Priest_Storm": 1525882116, + "Transformation_GR_Parasaur_Priest_Balance": 1127637476, + "Guest_GR_AZ_Parasaur_Undead_B_01": 322587487, + "MNT_WitchCat": 1167097888, + "PP_RolyPoly": 578538330, + "PP_Capybara_B": 628131532, + "MNT_OutbackTruck": 1815527801, + "PP_PoodleSailor": 2137704795, + "MNT_PolarianCannon": 2103490826, + "PP_TazmanianDevil": 1773548765, + "Guest_SKB_AZ_Ixcax_A_100": 556560994, + "Guest_SKB_AZ_Ixcax_A_150": 556610146, + "Guest_SKB_AZ_Ixcax_A_50": 564951650, + "MNT_GhoulsShovel": 2035610946, + "PP_CrystalBdayDragon": 1897078804, + "PP_SunGobblerBall": 1522469440, + "PP_Sun_GreenGobbler": 1337690394, + "MNT_2P_AutumnTreant": 1063435527, + "PP_AutumnTreant": 561077291, + "MNT_FlyingMonkey": 490807393, + "PP_BabyPlantMonster": 2076646587, + "MNT_PlantCreature_A": 1802823265, + "Transformation_BG_Fairy_Fire": 2065252898, + "Transformation_BG_Krok_Myth": 277926564, + "Transformation_BG_RatThief_Life": 1167758651, + "Transformation_BG_Elf_Balance": 1628238937, + "Transformation_BG_Colossus_Death": 184392004, + "Transformation_FortressPod": 139738335, + "P_Wombat_POLYMORPH": 1132264953, + "PP_SharkWobbegong": 1994247222, + "PP_ChineseNYDragon": 1126999021, + "PP_JingleBellRock": 1076037919, + "PP_Krok_Mummy_Myth": 438487583, + "PP_Cyclops_Ice": 1476966187, + "MNT_OutbackTruckB": 1813299577, + "MNT_EvilSnowmanBall": 758818712, + "MNT_ThanksgivingGobbler": 1760011910, + "Guest_WL_Ghost_LostSoul_A_01": 1224111704, + "Guest_WL_Kangaroo_Drover_F_01": 2025562931, + "Guest_WL_Spider_WarriorMage_C_01": 1296557888, + "Guest_WL_Spider_WarriorMage_C_02": 1430775616, + "Guest_WL_Spider_WarriorMage_C_03": 1564993344, + "Guest_WL_Spider_WarriorMage_C_04": 1699211072, + "Guest_WL_Spider_WarriorMage_C_05": 1833428800, + "Guest_WL_Spider_WarriorMage_C_06": 1967646528, + "Guest_WL_Spider_WarriorMage_C_07": 2101864256, + "Guest_SKB_KR_Lightbane_A_100": 837930677, + "Guest_SKB_KR_Lightbane_A_160": 837930669, + "Guest_SKB_KR_Lightbane_A_50": 1309555019, + "Transformation_WL_Phantasmanian_DevilTemplate": 384891502, + "MNT_2P_LeaflessTreant": 623083386, + "PP_Minotaur_Ice": 700151737, + "MNT_Scooter_G": 737125252, + "Guest_WL_Frog_Owner_B_01": 767864686, + "MNT_SilentKnight": 646654812, + "Guest_WL_TRex_Base_A_01": 1842562033, + "Guest_WL_TRex_Base_B_01": 304921616, + "PP_Groundhog": 108643243, + "Guest_NV_Unicorn_Guard_C_04": 1845621, + "MNT_EmuPunk": 647315080, + "MNT_HeartBalloon": 798826551, + "PP_ValentineHoppers": 968693964, + "MNT_SpringSOF2024_Heckhound": 453640548, + "Guest_AQ-Centaur-Arion": 1856508139, + "Guest_AQ-Centaur-Artemis": 333294011, + "Guest_AQ-Horse-Sea": 724896200, + "Guest_KR_Horse_Warlord_A_Bossfight": 1302284326, + "Guest_KR_Horse_Warlord_A_BossfightSP": 1300726822, + "Guest_KR_Zebra_Thrall_A": 1250265667, + "Guest_KR_Zebra_Thrall_A_Boss_Minion": 345677011, + "Guest_KR_Zebra_Thrall_A_Gallery": 1520303483, + "Guest_KH-Gray-Horse-40": 1802231403, + "Guest_KH-Gray-Horse-20": 1802231307, + "Guest_G14-BP-Unicorn_Fencer_Boss": 1602044152, + "Guest_Horse-Merc-Brown-L37": 1831175255, + "Guest_Horse-Merc-Tan-L39": 1363854837, + "Guest_Horse-Merc-Tan-L39-1": 2085275127, + "Guest_Horse-Merc-Gray-MSBoss-L39": 1863452041, + "Guest_Horse-Merc-Gray-L39": 2039135564, + "Guest_Horse-Merc-Tan-L38": 1363330549, + "Guest_WC_Horse_Mercenary_Roberto": 891924774, + "Guest_ZF-Nathi-Yellowstripe-R11": 1505157721, + "Guest_ZF-TseTse-Main-R11-Boss": 114927854, + "Guest_ZF-TseTse-Elephant-R11": 894147273, + "Guest_ZF-Zebra-Impi-Raider-R11": 1378242919, + "Guest_ZF-Zebra-Warrior-Male-R10-1": 1791906265, + "Guest_ZF-Zebra-Senzan-Zebu-R10-Boss": 373712721, + "Guest_ZF-Zebra-Shaka-Zebu-R10-Boss": 662142985, + "Guest_ZF-Zebra-Warrior-Female-R10-02": 1507835670, + "Guest_ZF-Zebra-Warrior-Male-R10": 47075786, + "Guest_ZF-Zebra-Warrior-Male-R10-02": 1791906714, + "Guest_ZF-Zebra-Warrior-Male-R10-03": 1791906746, + "Guest_ZF-Zebra-Warrior-Male-R10-05": 1791906682, + "Guest_ZF-Zebra-Warrior-Male-R10-2": 1791906268, + "Guest_ZF_Zebra_Spectral_Guardian-R11": 431970996, + "Guest_CC_Horse_Apoc_A_01": 644668374, + "Guest_CC_Horse_Apoc_B_01": 644668390, + "Guest_CC_Horse_Apoc_C_01": 644668406, + "Guest_CC_Horse_Apoc_D_01": 644668294, + "Guest_CC_Horse_Apoc_D_02": 645192582, + "Guest_CC_Unicorn_CorsairF_B_01": 1378532506, + "Guest_CC_Unicorn_Duelist_B_01": 64891542, + "Guest_CC_Unicorn_Guard_B_01": 1075063242, + "Guest_CC_Unicorn_Guard_B_02": 1075063238, + "Guest_CC_Unicorn_Guard_B_03": 1075063234, + "Guest_NV_Horse_HordeSoldier_A_01": 504396960, + "Guest_NV_Horse_HordeSoldier_A_02": 101743776, + "Guest_NV_Horse_HordeOfficer_A_01": 343600992, + "Guest_NV_Horse_HordeSoldier_A_03": 235961504, + "Guest_NV_Horse_HordeOfficer_A_02": 209383264, + "Guest_NV_Horse_AberrantTungAk_A_01": 952263441, + "Guest_NV_Horse_AberrantTungAk_A_02": 952263537, + "Guest_NV_Horse_TungAk_B_01": 1194718672, + "Guest_NV_Horse_TungAk_B_02": 657847760, + "Guest_NV_Horse_HordeOfficer_B_01": 343596896, + "Guest_NV_Horse_HordeOfficer_B_02": 209379168, + "Guest_NV_Horse_TungAk_A_01": 1194669520, + "Guest_NV_Unicorn_Guard_C_01": 1845601, + "Guest_NV_Unicorn_Guard_A_01": 797025, + "Guest_NV_Unicorn_AberrantGuard_A_01": 739851573, + "Guest_NV_Unicorn_Guard_C_02": 1845613, + "Guest_NV_Unicorn_Guard_C_03": 1845609, + "Guest_NV_Unicorn_AberrantGuard_A_02": 739848501, + "Guest_NV_Unicorn_Guard_A_02": 797037, + "Guest_NV_Unicorn_AberrantGuard_A_03": 739849525, + "Guest_NV_Unicorn_AberrantGuard_A_04": 739846453, + "Guest_NV_Horse_HordeOfficer_A_03": 75165536, + "Guest_NV_Horse_HordeSoldier_A_04": 907050144, + "Guest_NV_Horse_HordeSoldier_A_05": 1041267872, + "Guest_NV_Horse_HordeSoldier_C_01": 504388768, + "Guest_HG_TRAIN_Horse_MustangFencerF_A_Balance_50": 871182987, + "Guest_HG_TRAIN_Horse_MustangFencerF_A_Balance_75": 871176715, + "Guest_HG_TRAIN_Horse_MustangFencerF_A_Life_100": 886489645, + "Guest_HG_TRAIN_Horse_MustangFencerF_A_Balance_25": 871177035, + "Guest_HG_TRAIN_Horse_MustangFencerF_A_Balance_100": 872231819, + "Guest_HG_TRAIN_Horse_MustangFencerF_A_Life_140": 1960231469, + "Guest_HG_TRAIN_Horse_MustangFencerF_B_100": 2089957067, + "Guest_HG_TRAIN_Horse_MustangFencerF_A_Life_25": 1700184589, + "Guest_HG_TRAIN_Horse_MustangFencerF_A_Life_50": 920044045, + "Guest_HG_TRAIN_Horse_MustangFencerF_A_Life_75": 1742127629, + "Guest_HG_TRAIN_Horse_MustangFencerF_A_Balance_140": 872223627, + "Guest_HG_TRAIN_Horse_MustangFencerF_B_50": 2089952970, + "Guest_HG_TRAIN_Horse_MustangFencerF_B_75": 57530654, + "Guest_HG_TRAIN_Horse_MustangFencerF_B_140": 2089957099, + "Guest_HG_TRAIN_Horse_MustangFencerF_B_25": 1131272477, + "Guest_LM_Horse_Explorer_A_01_Hard": 1711837140, + "Guest_WL_Unicorn_Guard_A_01": 1074538935, + "Guest_WL_Unicorn_CorsairF_E_01": 1378532603, + "Guest_WL_Unicorn_Warlord_A_01": 1321310496, + "Guest_KH-Gray-Horse-1": 1802239547, + "Guest_KH-Gray-Horse-60": 1802231371, + "Guest_KH-Gray-Horse-80": 1802231467, + "Transformation_BG_NinjaPig_Ice": 186026527, + "Transformation_BG_Cyclops_Storm": 897316984, + "PP_MinotaurBalance": 1344665951, + "PP_OrthusMoon": 1804503950, + "PP_CoolPineapple": 1149318906, + "PP_TwinkleStars": 766378011, + "PP_Scroll": 1613313091, + "PP_Colossus_Death": 40713075, + "PP_ColossusDeath": 530964029, + "PP_KILiveRock": 1975550570, + "MNT_Outrigger": 1417937299, + "MNT_BookWyrm": 2080129190, + "MNT_RacingSnail": 1996220963, + "MNT_UmbrellaCloud": 145762615, + "PP_PropellerCat": 2094718580, + "MNT_TRex_Shirt": 586746001, + "MNT_Swarm_Bee": 1625228695, + "MNT__CelestialMoon": 968360256, + "Guest_ME_Sinbad_IronSultan_150": 2001676223, + "Guest_ME_Sinbad_Cyclops_150": 1968943689, + "Guest_ME_Sinbad_Skeleton_150": 1031490819, + "Guest_ME_Sinbad_Colossus_150": 1727675806, + "Guest_ME_Sinbad_Skeleton_150_02": 970505475, + "Guest_ME_Sinbad_Wyrm_150": 19314443, + "Guest_ZF-Zebra-Inzinzebu-Bandit-R11": 430262550, + "Guest_ZF-Zebra-Warrior-Male-R10-04": 1791906650, + "PP_TwinkleStars_02": 805304347, + "PP_TwinkleStars_03": 803207195, + "PP_TwinkleStars_01": 799012891, + "Transformation_BodleianHarrow": 609627870, + "Guest_HG_Gryphon_OwlStatue_A_01_L170": 77756046, + "Guest_HG_Gryphon_OwlStatue_A_02_L170": 73561742, + "Guest_HG_Gryphon_OwlStatue_A_01_L100": 77752974, + "Guest_HG_Gryphon_OwlStatue_A_02_L100": 73558670, + "Guest_HG_Gryphon_OwlStatue_A_01_L50": 78277134, + "Guest_HG_Gryphon_OwlStatue_A_02_L50": 74082830, + "MNT_SummerSOF2024_JudgementWings": 1078163967, + "MNT_Pegasus_E": 131704054, + "MNT_PolarisHero": 665176426, + "PP_Duckana": 1128961578, + "PP_QueenBee": 833291695, + "Transformation_BG_Draconian_Balance": 2078940682, + "Transformation_BG_WolfWarrior_Fire": 1762248682, + "Transformation_BG_Minotaur_Death": 309090657, + "PP_WolfWarrior_Fire": 685685256, + "PP_WolfWarrior_Death": 1857202724, + "Guest_ME-GTAV01-WyrmBoss-150": 1482208618, + "Guest_ME_SpectreOfB_L150": 684104791, + "Guest_ME_MD_MacDeath_L150": 1128977615, + "Guest_ME_Pig_BalanceWizardA_L150": 959913724, + "Guest_ME_Pig_BalanceWizardB_L150": 959913712, + "Guest_ME_Pig_BalanceWizardC_L150": 959913716, + "Guest_ME_Pig_FireWizard_L150": 964392255, + "Guest_ME_Pig_IceWizardF_L150": 86941026, + "Guest_ME_Pig_MythWizard_L150": 964051241, + "Guest_ME_Pig_StormWizardF_L150": 2016383602, + "Guest_ME_Clock_Clockworker_L150": 1424569772, + "Guest_ME_Clock_ClockworkSpanner_L150": 1966824609, + "Guest_ME_Clock_Lugs_L150": 370290904, + "Guest_ME_Clock_Lucia_L150": 1857768409, + "MNT_EvilChair": 339577702, + "PP_Cyclops_Storm": 621464512, + "PP_Krokomummy_Life": 462432735, + "Transformation_CL_Rematch_Crustacean": 1686865207, + "Transformation_CL_Rematch_Protector": 1893951532, + "Transformation_CL_Rematch_Angler": 120412196, + "Transformation_CL_Rematch_Piscean": 1624106070, + "Transformation_Zebra_Template": 1900548493, + "Transformation_Zebra2_Template": 325099540, + "Transformation_Zebra3_Template": 325099524, + "Transformation_Zebra4_Template": 325099636, + "MNT_SweetSixteenBirthday": 1009398096, + "MNT_2P_TRex_Bones": 1618543266, + "MNT_SpringBumperCar": 1725007788, + "PP_WinterGoblin": 2025052443, + "PP_OnyxAnubis": 1552575189, + "PP_OttomanCat": 223541582, + "MNT_HolidayYeti": 780983974, + "MNT_IceSled": 979912604, + "MNT_TurtleDoves": 1850191638, + "MNT_KrokChariot": 559783620, + "MNT_Mustang": 1775949401, + "MNT_PumpkinBall": 382849054, + "Transformation_BG_Fairy_Storm": 836920873, + "Transformation_BG_Elf_Myth": 1506493664, + "Transformation_NinjaPig_Life": 816802847, + "Transformation_BG_Krok_Fire": 1060580712, + "Transformation_BG_Colossus_Balance": 1067963041, + "Transformation_BG_NinjaPig_Life": 441460895, + "PP_Penguin_03": 1623028104, + "Transformation_Duck_Librarian_B": 864067551, + "Transformation_Duck_Librarian_A": 859873247, + "Transformation_Duck_Adventurer": 194560769, + "Transformation_Gummy_Bunny_C": 1298087941, + "Transformation_Frog_Horned_A": 837201339, + "Transformation_Glowbug_Storm": 2096380446, + "Transformation_Marshmallow_Critter_A": 1036335317, + "Transformation_Snipe_Base_B": 232132109, + "Transformation_Snowball": 915248481, + "Transformation_Wombat_Base": 333435450, + "Transformation_Human_Malistaire": 1414887773, + "Transformation_Morganthe_E": 1745180054, + "Transformation_Spider_Grandfather": 1131773979, + "Transformation_Khrulhu_Dasein_B": 367878762, + "Transformation_Devourer_Base": 698770016, + "Transformation_Alien_Meteor": 638746168, + "Transformation_Nightmare_Malus": 704212821, + "Transformation_Daemon_Personal": 278266463, + "PP_ValentinesDay": 810003364, + "PP_BabyHippo": 422858138, + "PP_Aardwold": 1592150119, + "PP_Aardwold_C": 1902528613, + "MNT_Cobra": 472847981, + "MNT_Serpopard": 1629558909, + "MNT_Serpopard_B": 1629556867, + "MNT_Serpopard_C": 1629556931, + "PP_Fairy_Fire": 1847789544, + "MNT_Mustang_B": 1448793691, + "PP_FireElfMyth": 1933609060, + "MNT_KT-BoatRide": 1560860110, + "MNT_ShadowMagic": 2095978357, + "MNT_MardiGrasFloat_A": 1740674432, + "PP_ChineseNYSnake": 988201940, + "MNT_AnubisDog": 1995079956, + "PP_ShadowImp_A": 1604849432, + "PP_ShadowImp_B": 1604849438, + "PP_ShadowImp_C": 1604849436, + "MNT_ShadowMagic_B": 2093870965, + "MNT_ShadowMagic_C": 2093805429, + "Guest_KT_SE_Tritops_Warrior_I_01": 97516901, + "Guest_KT_SE_DS_Draconian_Model_01": 1916095079, + "Guest_KT_SE_Beetle_Scarab_C_01_L50": 1064004307, + "Guest_KT_SE_Roach_Warrior_C_03": 1872574203, + "Guest_KT_SE_Roach_Warrior_C_04": 1871918843, + "Guest_KT_SE_Roach_Warrior_C_05": 1871787771, + "Guest_KT_SE_Beetle_Scarab_C_01": 1353410759, + "Guest_KT_SE_Mander_Citizen_B_01_L50": 2044509396, + "Guest_KT_SE_Mander_CitizenF_B_01_L50": 164327682, + "Guest_KT_SE_Treant_Tormented_A_01": 1359800879, + "Guest_KT_SE_Treant_Base_A_01": 765512948, + "Guest_KT_SE_Mander_Citizen_F_D_05": 171244620, + "Guest_KT_SE_Mander_CitizenF_D_01": 163791037, + "Guest_KT_SE_Mander_CitizenF_D_02": 298008765, + "Guest_KT_SE_Mander_CitizenF_D_03": 432226493, + "Guest_KT_SE_Mander_CitizenF_D_04": 566444221, + "Guest_KT_SE_Mander_MummyF_A_01": 964349080, + "Guest_KT_SE_Mander_MummyF_A_02": 964480152, + "Guest_KT_SE_MC_Wraith_Model_01": 1101442118, + "Guest_KT_SE_Mander_CitizenF_B_02": 298000573, + "MNT_Wheelbarrow": 614248817, + "MNT_StubbornLlama": 221089074 } - } - } - }, - "1214156982": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1214156982, - "properties": { - "m_isWebGame": { - "type": "bool", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 944547943 - }, - "m_name": { - "type": "std::string", - "id": 1, - "offset": 160, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1717359772 - }, - "m_energyCosts": { - "type": "class SharedPointer", - "id": 2, - "offset": 192, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 3378376555 - }, - "m_trackChoices": { - "type": "class SharedPointer", - "id": 3, - "offset": 208, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1548152913 - }, - "m_gameIcon": { - "type": "std::string", - "id": 4, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3229574910 - }, - "m_trackIcons": { - "type": "std::string", - "id": 5, - "offset": 112, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2211683916 - }, - "m_trackToolTips": { - "type": "std::string", - "id": 6, - "offset": 136, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1898819214 - } - } - }, - "2018675241": { - "name": "class PromoGift", - "bases": [ - "PropertyClass" - ], - "hash": 2018675241, - "properties": { - "m_rewardID": { - "type": "unsigned __int64", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1967538827 - }, - "m_rewardModifier": { - "type": "unsigned __int64", - "id": 1, - "offset": 112, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1325279053 - }, - "m_giftID": { - "type": "std::string", - "id": 2, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1975989138 - } - } - }, - "838936710": { - "name": "class ObstacleCourseFinishLineBehavior", - "bases": [ - "ObstacleCourseObstacleBehavior", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 838936710, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - } - } - }, - "450675315": { - "name": "class SharedPointer", - "bases": [ - "MoveController::MoveCommand", - "PropertyClass" - ], - "hash": 450675315, - "properties": { - "m_fSleep": { - "type": "float", - "id": 0, - "offset": 88, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 503465270 - } - } - }, - "1613621996": { - "name": "class MoveController*", - "bases": [ - "MoveBehavior::Controller", - "PropertyClass" - ], - "hash": 1613621996, - "properties": { - "m_bCollisionDisabled": { - "type": "bool", - "id": 0, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1732895577 - }, - "m_bVehicleMode": { - "type": "bool", - "id": 1, - "offset": 121, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1597295002 - }, - "m_fForwardModifier": { - "type": "float", - "id": 2, - "offset": 124, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1173988321 - }, - "m_fBackModifier": { - "type": "float", - "id": 3, - "offset": 128, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 148042045 - }, - "m_fStrafeModifier": { - "type": "float", - "id": 4, - "offset": 132, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 226084913 - }, - "m_fTurnModifier": { - "type": "float", - "id": 5, - "offset": 136, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2134998805 - }, - "m_fAccelerationModifier": { - "type": "float", - "id": 6, - "offset": 144, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 592902742 - }, - "m_fDecelerationModifier": { - "type": "float", - "id": 7, - "offset": 148, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1770082811 - }, - "m_bPaused": { - "type": "bool", - "id": 8, - "offset": 160, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1899182391 - }, - "m_spCommand": { - "type": "class SharedPointer", - "id": 9, - "offset": 168, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 636010160 - }, - "m_Queue": { - "type": "class SharedPointer", - "id": 10, - "offset": 184, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1055578835 - } - } - }, - "51094143": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 51094143, - "properties": { - "m_boysPrimaryColors": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 300868202 - }, - "m_boysSecondaryColors": { - "type": "float", - "id": 1, - "offset": 96, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2061028494 - }, - "m_girlsPrimaryColors": { - "type": "float", - "id": 2, - "offset": 120, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 327992494 - }, - "m_girlsSecondaryColors": { - "type": "float", - "id": 3, - "offset": 144, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1534611410 - } - } - }, - "427079144": { - "name": "MadlibArgT", - "bases": [ - "MadlibArg", - "PropertyClass" - ], - "hash": 427079144, - "properties": { - "m_madlibToken": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3058682373 - }, - "m_madlibArgument": { - "type": "std::string", - "id": 1, - "offset": 112, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2376191783 - } - } - }, - "49783931": { - "name": "class SharedPointer", - "bases": [ - "QuestTemplate", - "CoreTemplate", - "PropertyClass" - ], - "hash": 49783931, - "properties": { - "m_behaviors": { - "type": "class BehaviorTemplate*", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1197808594 }, - "m_questName": { - "type": "std::string", + "m_characterTables": { + "type": "class CharacterElementTable", "id": 1, - "offset": 96, + "offset": 80, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 1702112846 + "hash": 1801114527 }, - "m_questNameID": { - "type": "unsigned int", + "m_defaultTable": { + "type": "class CharacterElementTable", "id": 2, - "offset": 128, + "offset": 96, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1530354349 + "hash": 1709886308 }, - "m_questTitle": { - "type": "std::string", + "m_commonTable": { + "type": "class CommonElementTable", "id": 3, - "offset": 136, - "flags": 8388615, + "offset": 888, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1805465583 + "hash": 1709304448 }, - "m_questInfo": { - "type": "std::string", + "m_raceAnimationSoundData": { + "type": "class SharedPointer", "id": 4, - "offset": 168, - "flags": 8388615, + "offset": 984, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1701947097 + "pointer": true, + "hash": 1474423978 }, - "m_questPrep": { - "type": "std::string", + "m_animationEventList": { + "type": "class SharedPointer", "id": 5, - "offset": 200, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1702202980 - }, - "m_questUnderway": { - "type": "std::string", - "id": 6, - "offset": 232, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2308400380 - }, - "m_questComplete": { - "type": "std::string", - "id": 7, - "offset": 264, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3484586150 - }, - "m_startGoals": { - "type": "std::string", - "id": 8, - "offset": 392, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2152469471 - }, - "m_goals": { - "type": "class SharedPointer", - "id": 9, - "offset": 408, + "offset": 1000, "flags": 7, "container": "List", "dynamic": true, "singleton": false, "pointer": true, - "hash": 1374041870 - }, - "m_startResults": { - "type": "class SharedPointer", - "id": 10, - "offset": 424, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2094517692 - }, - "m_endResults": { - "type": "class SharedPointer", - "id": 11, - "offset": 440, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2118364133 - }, - "m_requirements": { - "type": "class RequirementList*", - "id": 12, - "offset": 456, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2840985510 - }, - "m_prepRequirements": { - "type": "class RequirementList*", - "id": 13, - "offset": 464, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3016776541 - }, - "m_pruneRequirements": { - "type": "class RequirementList*", - "id": 14, - "offset": 472, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3211248912 - }, - "m_prepAlways": { - "type": "bool", - "id": 15, - "offset": 304, - "flags": 7, + "hash": 2858101335 + } + } + }, + "1310489832": { + "name": "class PetLevelUpWindow", + "bases": [ + "Window", + "PropertyClass" + ], + "hash": 1310489832, + "properties": { + "m_sName": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1423046331 - }, - "m_clientTags": { - "type": "std::string", - "id": 16, - "offset": 312, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2319030025 + "hash": 2306437263 }, - "m_goalLogic": { - "type": "class GoalCompleteLogic*", - "id": 17, - "offset": 520, - "flags": 7, - "container": "List", + "m_Children": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 65667, + "container": "Vector", "dynamic": true, "singleton": false, "pointer": true, - "hash": 963824003 - }, - "m_questLevel": { - "type": "int", - "id": 18, - "offset": 296, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 298136804 + "hash": 2621225959 }, - "m_questRepeat": { - "type": "int", - "id": 19, - "offset": 300, - "flags": 7, + "m_Style": { + "type": "unsigned int", + "id": 2, + "offset": 152, + "flags": 1048583, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1480345805 + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "SCALE_CHILDREN": 2, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "FOCUS_LOCKED": 64, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152 + } }, - "m_onStartQuestScript": { - "type": "std::string", - "id": 20, - "offset": 328, - "flags": 7, + "m_Flags": { + "type": "unsigned int", + "id": 3, + "offset": 156, + "flags": 1048583, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2577549709 + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } }, - "m_onEndQuestScript": { - "type": "std::string", - "id": 21, - "offset": 360, - "flags": 7, + "m_Window": { + "type": "class Rect", + "id": 4, + "offset": 160, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2285648118 + "hash": 3105139380 }, - "m_dialogList": { - "type": "class ActorDialogListBase*", - "id": 22, - "offset": 480, - "flags": 7, + "m_fTargetAlpha": { + "type": "float", + "id": 5, + "offset": 212, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1909154969 - }, - "m_missionDoors": { - "type": "std::string", - "id": 23, - "offset": 504, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, "pointer": false, - "hash": 2428103908 - }, - "m_dynaMods": { - "type": "class QuestDynaModInfo*", - "id": 24, - "offset": 488, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 3330743945 + "hash": 1809129834 }, - "m_isHidden": { - "type": "bool", - "id": 25, - "offset": 305, - "flags": 7, + "m_fDisabledAlpha": { + "type": "float", + "id": 6, + "offset": 216, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1401188667 + "hash": 1389987675 }, - "m_outdated": { - "type": "bool", - "id": 26, - "offset": 306, - "flags": 7, + "m_fAlpha": { + "type": "float", + "id": 7, + "offset": 208, + "flags": 65671, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1565198349 + "hash": 482130755 }, - "m_noQuestHelper": { - "type": "bool", - "id": 27, - "offset": 307, - "flags": 7, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 578010882 + "pointer": true, + "hash": 3623628394 }, - "m_mainline": { - "type": "bool", - "id": 28, - "offset": 552, - "flags": 7, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1749856224 + "hash": 2102211316 }, - "m_defaultDialogAnimation": { + "m_sScript": { "type": "std::string", - "id": 29, - "offset": 560, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2400834320 - }, - "m_skipQHAutoSelect": { - "type": "bool", - "id": 30, - "offset": 553, - "flags": 7, + "id": 10, + "offset": 352, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2024815836 - }, - "m_questEffectInfoList": { - "type": "class SharedPointer", - "id": 31, - "offset": 536, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2494024956 + "hash": 1846695875 }, - "m_forceInteraction": { - "type": "bool", - "id": 32, - "offset": 554, - "flags": 7, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1038376866 + "hash": 3389835433 }, - "m_checkInventoryForCrafting": { - "type": "bool", - "id": 33, - "offset": 608, - "flags": 7, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1549644020 + "hash": 2547159940 }, - "m_playAsYourPetNPC": { - "type": "bool", - "id": 34, - "offset": 609, - "flags": 7, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 827482678 + "hash": 1513510520 }, - "m_activityType": { - "type": "enum QuestTemplate::ActivityType", - "id": 35, - "offset": 612, - "flags": 2097159, - "container": "Static", - "dynamic": false, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 231656390, - "enum_options": { - "ACTIVITY_NotActivity": 0, - "ACTIVITY_Crafting": 2, - "ACTIVITY_Fishing": 3, - "ACTIVITY_Gardening": 4, - "ACTIVITY_Pet": 5, - "ACTIVITY_Spell": 1 - } - } - } - }, - "2019051106": { - "name": "class SharedPointer", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 2019051106, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 + "hash": 3091503757 } } }, - "425936665": { - "name": "class AdventurePartyList", + "1745417134": { + "name": "class MonsterMagicWorldTotalList*", "bases": [ "PropertyClass" ], - "hash": 425936665, + "hash": 1745417134, "properties": { - "m_adventurePartyList": { - "type": "class SharedPointer", + "m_monsterMagicWorldTotalList": { + "type": "class SharedPointer", "id": 0, "offset": 72, "flags": 7, @@ -584561,18 +485585,17 @@ "dynamic": true, "singleton": false, "pointer": true, - "hash": 2274288621 + "hash": 3735585298 } } }, - "1614732627": { - "name": "class SharedPointer", + "468964040": { + "name": "class SharedPointer", "bases": [ - "ActorCinematicAction", "CinematicAction", "PropertyClass" ], - "hash": 1614732627, + "hash": 468964040, "properties": { "m_timeOffset": { "type": "float", @@ -584584,197 +485607,143 @@ "singleton": false, "pointer": false, "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - }, - "m_newState": { - "type": "std::string", - "id": 2, - "offset": 120, - "flags": 7, + } + } + }, + "904889925": { + "name": "class std::list,class std::allocator > >", + "bases": [], + "hash": 904889925, + "properties": {} + }, + "1308546940": { + "name": "class ObstacleCourseFinishLineBehavior*", + "bases": [ + "ObstacleCourseObstacleBehavior", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1308546940, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2153420230 + "hash": 223437287 } } }, - "49731315": { - "name": "enum SpellTemplate::kSpellSourceType", - "bases": [], - "hash": 49731315, - "properties": {} - }, - "2018850768": { - "name": "class CastleToursFavoritesBehaviorTemplate*", + "34878813": { + "name": "class HousingPaletteBehavior*", "bases": [ - "BehaviorTemplate", + "BehaviorInstance", "PropertyClass" ], - "hash": 2018850768, + "hash": 34878813, "properties": { - "m_behaviorName": { - "type": "std::string", + "m_behaviorTemplateNameID": { + "type": "unsigned int", "id": 0, - "offset": 72, - "flags": 7, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3130754092 + "hash": 223437287 } } }, - "49339793": { - "name": "class SharedPointer", + "466661542": { + "name": "class PetStatModificationSet", "bases": [ - "ObstacleCourseObstacleBehaviorTemplate", - "BehaviorTemplate", "PropertyClass" ], - "hash": 49339793, + "hash": 466661542, "properties": { - "m_behaviorName": { + "m_name": { "type": "std::string", "id": 0, "offset": 72, - "flags": 7, + "flags": 8388639, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3130754092 + "hash": 1717359772 }, - "m_startAngle": { - "type": "float", + "m_modifications": { + "type": "class SharedPointer", "id": 1, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, + "offset": 104, + "flags": 31, + "container": "Vector", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 737826060 + "pointer": true, + "hash": 2096386993 }, - "m_angularVelocity": { - "type": "float", + "m_scene": { + "type": "std::string", "id": 2, - "offset": 124, - "flags": 7, + "offset": 152, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 412636784 + "hash": 2307196329 }, - "m_radius": { - "type": "float", + "m_gameScoreFactor": { + "type": "int", "id": 3, "offset": 128, "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 989410271 - }, - "m_innerRadius": { - "type": "float", - "id": 4, - "offset": 132, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 686816091 - }, - "m_nearMissRange": { - "type": "float", - "id": 5, - "offset": 136, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2005992806 - }, - "m_nearMissAngleOffset": { - "type": "float", - "id": 6, - "offset": 140, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2062603911 - }, - "m_walls": { - "type": "class Vector3D", - "id": 7, - "offset": 144, - "flags": 7, "container": "Vector", "dynamic": true, "singleton": false, "pointer": false, - "hash": 2471997733 + "hash": 1405761071 } } }, - "2018798352": { - "name": "class SharedPointer", + "904712878": { + "name": "class SharedPointer", "bases": [ + "ObstacleCourseFinishLineBehavior", + "ObstacleCourseObstacleBehavior", + "BehaviorInstance", "PropertyClass" ], - "hash": 2018798352, + "hash": 904712878, "properties": { - "m_Point": { - "type": "class Point", + "m_behaviorTemplateNameID": { + "type": "unsigned int", "id": 0, - "offset": 72, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2475294668 - }, - "m_Color": { - "type": "class Color", - "id": 1, - "offset": 80, - "flags": 135, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1753714077 + "hash": 223437287 } } }, - "1614961590": { - "name": "class AdventurePartyEntryInfo*", + "32764539": { + "name": "class EloRatingsTable", "bases": [ "PropertyClass" ], - "hash": 1614961590, + "hash": 32764539, "properties": { - "m_characterGID": { - "type": "gid", + "m_leagueType": { + "type": "std::string", "id": 0, "offset": 72, "flags": 7, @@ -584782,561 +485751,296 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 501688601 + "hash": 3327951024 }, - "m_lastLoginTime": { - "type": "unsigned int", + "m_startingElo": { + "type": "int", "id": 1, - "offset": 80, + "offset": 104, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1758221801 + "hash": 1459328550 }, - "m_partyJoinTime": { - "type": "unsigned int", + "m_minElo": { + "type": "int", "id": 2, - "offset": 84, + "offset": 108, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1561970012 + "hash": 713339390 }, - "m_packedName": { - "type": "std::string", + "m_ranks": { + "type": "class SharedPointer", "id": 3, - "offset": 88, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1805208228 - }, - "m_level": { - "type": "unsigned int", - "id": 4, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1012687813 - }, - "m_school": { - "type": "unsigned int", - "id": 5, - "offset": 124, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1152268885 - }, - "m_previousLoginTime": { - "type": "unsigned int", - "id": 6, - "offset": 128, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1473612434 - }, - "m_zonePath": { - "type": "std::string", - "id": 7, - "offset": 136, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2171239844 - }, - "m_flags": { - "type": "unsigned char", - "id": 8, - "offset": 168, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1431998045 - }, - "m_provisionalTime": { - "type": "unsigned int", - "id": 9, - "offset": 172, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 394820722 - }, - "m_permissions": { - "type": "unsigned int", - "id": 10, - "offset": 176, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2127187241 - }, - "m_accountGID": { - "type": "gid", - "id": 11, - "offset": 184, + "offset": 112, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "Vector", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 414395289 + "pointer": true, + "hash": 2563941952 } } }, - "427400775": { - "name": "class CharacterElement*", + "1745458179": { + "name": "class SharedPointer", "bases": [ + "PortraitWindow", + "Window", "PropertyClass" ], - "hash": 427400775, + "hash": 1745458179, "properties": { - "m_elementName": { + "m_sName": { "type": "std::string", "id": 0, - "offset": 72, - "flags": 7, + "offset": 80, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2195875046 + "hash": 2306437263 }, - "m_assetFilename": { - "type": "std::string", + "m_Children": { + "type": "class SharedPointer", "id": 1, - "offset": 104, - "flags": 131079, - "container": "Static", - "dynamic": false, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 2116426332 + "pointer": true, + "hash": 2621225959 }, - "m_geometryName": { - "type": "std::string", + "m_Style": { + "type": "unsigned int", "id": 2, - "offset": 136, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1734031816 - }, - "m_materialName": { - "type": "std::string", - "id": 3, - "offset": 168, - "flags": 7, + "offset": 152, + "flags": 1048583, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1878140043 + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "SCALE_CHILDREN": 2, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "FOCUS_LOCKED": 64, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152 + } }, - "m_flags": { + "m_Flags": { "type": "unsigned int", - "id": 4, - "offset": 200, + "id": 3, + "offset": 156, "flags": 1048583, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1005801050, + "hash": 967851578, "enum_options": { - "EF_AVAILABLE_AT_CREATION": 1 + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 } }, - "m_color": { - "type": "class Color", - "id": 5, - "offset": 204, - "flags": 262151, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1791663549 - }, - "m_id": { - "type": "unsigned short", - "id": 6, - "offset": 208, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2644168661 - } - } - }, - "1617428317": { - "name": "class PassInfoList*", - "bases": [ - "PropertyClass" - ], - "hash": 1617428317, - "properties": { - "m_info": { - "type": "class PassInfo", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1338677978 - } - } - }, - "51014812": { - "name": "class CinematicActorTemplate", - "bases": [ - "CinematicDefTemplate", - "CoreTemplate", - "PropertyClass" - ], - "hash": 51014812, - "properties": { - "m_behaviors": { - "type": "class BehaviorTemplate*", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1197808594 - }, - "m_nifFile": { - "type": "std::string", - "id": 1, - "offset": 136, - "flags": 131079, + "m_Window": { + "type": "class Rect", + "id": 4, + "offset": 160, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2694762008 + "hash": 3105139380 }, - "m_delay": { - "type": "double", - "id": 2, - "offset": 168, - "flags": 7, + "m_fTargetAlpha": { + "type": "float", + "id": 5, + "offset": 212, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2689597116 + "hash": 1809129834 }, - "m_cinematicName": { - "type": "std::string", - "id": 3, - "offset": 96, - "flags": 134217735, + "m_fDisabledAlpha": { + "type": "float", + "id": 6, + "offset": 216, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2611527497 - }, - "m_completeEvents": { - "type": "class CinematicEventInfo*", - "id": 4, - "offset": 272, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2945338320 - }, - "m_stateChangeEvents": { - "type": "class CinematicEventInfo*", - "id": 5, - "offset": 304, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1874505374 - }, - "m_stateInteractions": { - "type": "class CinematicInteractInfo*", - "id": 6, - "offset": 336, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1949887389 + "hash": 1389987675 }, - "m_targetGameState": { - "type": "std::string", + "m_fAlpha": { + "type": "float", "id": 7, - "offset": 176, - "flags": 7, + "offset": 208, + "flags": 65671, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3607550909 + "hash": 482130755 }, - "m_actorStateSet": { - "type": "std::string", + "m_pWindowStyle": { + "type": "class SharedPointer", "id": 8, - "offset": 208, - "flags": 268435463, + "offset": 232, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1765258049, - "enum_options": { - "__BASECLASS": "ObjStateSet" - } + "pointer": true, + "hash": 3623628394 }, - "m_rootAsset": { - "type": "std::string", + "m_sHelp": { + "type": "std::wstring", "id": 9, - "offset": 240, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3506101791 - } - } - }, - "2019292385": { - "name": "class ClientPetOwnerBehavior*", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 2019292385, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, + "offset": 248, + "flags": 4194439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 + "hash": 2102211316 }, - "m_maxSlots": { - "type": "unsigned char", - "id": 1, - "offset": 128, - "flags": 63, + "m_sScript": { + "type": "std::string", + "id": 10, + "offset": 352, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 792508619 - }, - "m_morphingSlots": { - "type": "class SharedPointer", - "id": 2, - "offset": 112, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2241134624 + "hash": 1846695875 }, - "m_energyTickTimeSecs": { - "type": "unsigned int", - "id": 3, - "offset": 136, - "flags": 63, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1255384991 + "hash": 3389835433 }, - "m_energy": { - "type": "int", - "id": 4, - "offset": 132, - "flags": 63, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 405911268 + "hash": 2547159940 }, - "m_playingAsPet": { - "type": "bool", - "id": 5, - "offset": 140, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1865705156 - } - } - }, - "429218053": { - "name": "class SharedPointer", - "bases": [ - "GameEffectInfo", - "PropertyClass" - ], - "hash": 429218053, - "properties": { - "m_effectName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2029161513 + "hash": 1513510520 }, - "m_speedMultiplier": { - "type": "int", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 32503058 - } - } - }, - "1616508212": { - "name": "class std::vector >", - "bases": [], - "hash": 1616508212, - "properties": {} - }, - "50936002": { - "name": "class SharedPointer", - "bases": [ - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 50936002, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 2237098605 + "hash": 2587533771 }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2285866132 + "hash": 3091503757 }, - "m_cloaked": { - "type": "bool", - "id": 2, - "offset": 120, + "m_pMaterial": { + "type": "class SharedPointer", + "id": 16, + "offset": 632, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 7349510 - } - } - }, - "428467184": { - "name": "class CastleTourLeaderboardUpdate*", - "bases": [ - "PropertyClass" - ], - "hash": 428467184, - "properties": { - "m_entryList": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, "pointer": true, - "hash": 818498005 + "hash": 3479277078 }, - "m_leaderboardSize": { - "type": "int", - "id": 1, - "offset": 88, + "m_alphaMask": { + "type": "class SharedPointer", + "id": 17, + "offset": 648, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 683398282 + "pointer": true, + "hash": 2624275869 } } }, - "1615400669": { - "name": "class ShowPipsCinematicAction*", + "466428104": { + "name": "class ClientActivateHangingEffectCinematicAction*", "bases": [ + "ActivateHangingEffectCinematicAction", "ActorCinematicAction", "CinematicAction", "PropertyClass" ], - "hash": 1615400669, + "hash": 466428104, "properties": { "m_timeOffset": { "type": "float", @@ -585360,8 +486064,8 @@ "pointer": false, "hash": 2285866132 }, - "m_newActorName": { - "type": "std::string", + "m_activate": { + "type": "bool", "id": 2, "offset": 120, "flags": 7, @@ -585369,896 +486073,440 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 2029131039 - } - } - }, - "428196889": { - "name": "class SharedPointer", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 428196889, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 + "hash": 142527940 }, - "m_maxDeviation": { - "type": "float", - "id": 1, - "offset": 120, + "m_cloaked": { + "type": "bool", + "id": 3, + "offset": 121, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 595695008 + "hash": 7349510 } } }, - "428025367": { - "name": "class CinematicActorBehavior", + "32538927": { + "name": "class SharedPointer", "bases": [ - "BehaviorInstance", + "DerbyTeleport", + "DerbyEffect", "PropertyClass" ], - "hash": 428025367, + "hash": 32538927, "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", + "m_buffType": { + "type": "enum DerbyTalentBuffType", "id": 0, - "offset": 104, - "flags": 39, + "offset": 92, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 + "hash": 1149251982, + "enum_options": { + "Buff": 0, + "Debuff": 1, + "Neither": 2 + } }, - "m_startLocation": { - "type": "class Vector3D", + "m_kTarget": { + "type": "enum DerbyTargetType", "id": 1, - "offset": 112, - "flags": 31, + "offset": 96, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1669140041 + "hash": 1807803351, + "enum_options": { + "kTargetInFront": 0, + "kTargetBehind": 1, + "kTargetFirst": 2, + "kTargetSelf": 3, + "kTargetAll": 4, + "kTargetLast": 5 + } }, - "m_targetLocation": { - "type": "class Vector3D", + "m_nDuration": { + "type": "int", "id": 2, - "offset": 124, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2653859938 - }, - "m_rootAsset": { - "type": "std::string", - "id": 3, - "offset": 136, + "offset": 104, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3506101791 - } - } - }, - "1616272310": { - "name": "class AdventurePartyEntryInfo", - "bases": [ - "PropertyClass" - ], - "hash": 1616272310, - "properties": { - "m_characterGID": { - "type": "gid", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 501688601 - }, - "m_lastLoginTime": { - "type": "unsigned int", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1758221801 + "hash": 1110167982 }, - "m_partyJoinTime": { + "m_effectID": { "type": "unsigned int", - "id": 2, - "offset": 84, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1561970012 - }, - "m_packedName": { - "type": "std::string", "id": 3, "offset": 88, - "flags": 7, + "flags": 24, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1805208228 + "hash": 2347630439 }, - "m_level": { - "type": "unsigned int", + "m_imageFilename": { + "type": "std::string", "id": 4, - "offset": 120, - "flags": 7, + "offset": 112, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1012687813 + "hash": 2813328063 }, - "m_school": { + "m_iconIndex": { "type": "unsigned int", "id": 5, - "offset": 124, - "flags": 7, + "offset": 144, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1152268885 + "hash": 1265133262 }, - "m_previousLoginTime": { - "type": "unsigned int", + "m_soundOnActivate": { + "type": "std::string", "id": 6, - "offset": 128, - "flags": 7, + "offset": 152, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1473612434 + "hash": 1956929714 }, - "m_zonePath": { + "m_soundOnTarget": { "type": "std::string", "id": 7, - "offset": 136, - "flags": 7, + "offset": 184, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2171239844 + "hash": 3444214056 }, - "m_flags": { - "type": "unsigned char", + "m_targetParticleEffect": { + "type": "std::string", "id": 8, - "offset": 168, - "flags": 7, + "offset": 216, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1431998045 + "hash": 3048234723 }, - "m_provisionalTime": { - "type": "unsigned int", + "m_overheadMessage": { + "type": "std::string", "id": 9, - "offset": 172, - "flags": 7, + "offset": 248, + "flags": 8388639, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 394820722 + "hash": 1701018190 }, - "m_permissions": { - "type": "unsigned int", + "m_requirements": { + "type": "class RequirementList", "id": 10, - "offset": 176, - "flags": 7, + "offset": 280, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2127187241 + "hash": 2840988582 }, - "m_accountGID": { - "type": "gid", + "m_kTeleportToTarget": { + "type": "enum DerbyTargetType", "id": 11, - "offset": 184, - "flags": 7, + "offset": 376, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 414395289 + "hash": 3096289769, + "enum_options": { + "kTargetInFront": 0, + "kTargetBehind": 1, + "kTargetFirst": 2, + "kTargetSelf": 3, + "kTargetAll": 4, + "kTargetLast": 5 + } } } }, - "51039388": { - "name": "class CinematicActorTemplate*", + "1310743990": { + "name": "class ClientZone*", "bases": [ - "CinematicDefTemplate", - "CoreTemplate", + "BaseZone", "PropertyClass" ], - "hash": 51039388, + "hash": 1310743990, "properties": { - "m_behaviors": { - "type": "class BehaviorTemplate*", + "m_id": { + "type": "gid", "id": 0, "offset": 72, "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1197808594 - }, - "m_nifFile": { - "type": "std::string", - "id": 1, - "offset": 136, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2694762008 - }, - "m_delay": { - "type": "double", - "id": 2, - "offset": 168, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2689597116 - }, - "m_cinematicName": { - "type": "std::string", - "id": 3, - "offset": 96, - "flags": 134217735, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2611527497 - }, - "m_completeEvents": { - "type": "class CinematicEventInfo*", - "id": 4, - "offset": 272, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2945338320 - }, - "m_stateChangeEvents": { - "type": "class CinematicEventInfo*", - "id": 5, - "offset": 304, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1874505374 - }, - "m_stateInteractions": { - "type": "class CinematicInteractInfo*", - "id": 6, - "offset": 336, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1949887389 + "hash": 2090569797 }, - "m_targetGameState": { + "m_name": { "type": "std::string", - "id": 7, - "offset": 176, + "id": 1, + "offset": 88, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3607550909 - }, - "m_actorStateSet": { - "type": "std::string", - "id": 8, - "offset": 208, - "flags": 268435463, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1765258049, - "enum_options": { - "__BASECLASS": "ObjStateSet" - } - }, - "m_rootAsset": { - "type": "std::string", - "id": 9, - "offset": 240, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3506101791 + "hash": 1717359772 } } }, - "2019293881": { - "name": "class Search::ResultList", + "32463714": { + "name": "class PromoPromotionList*", "bases": [ "PropertyClass" ], - "hash": 2019293881, + "hash": 32463714, "properties": { - "m_items": { - "type": "class SharedPointer", + "m_promoPromotions": { + "type": "class SharedPointer", "id": 0, "offset": 72, - "flags": 7, + "flags": 31, "container": "List", "dynamic": true, "singleton": false, "pointer": true, - "hash": 1610486152 - }, - "m_requestHandle": { - "type": "gid", - "id": 1, - "offset": 88, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 563564461 + "hash": 2231640821 } } }, - "427499079": { - "name": "class CharacterElement", + "466620582": { + "name": "class PetStatModificationSet*", "bases": [ "PropertyClass" ], - "hash": 427499079, + "hash": 466620582, "properties": { - "m_elementName": { + "m_name": { "type": "std::string", "id": 0, "offset": 72, - "flags": 7, + "flags": 8388639, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2195875046 + "hash": 1717359772 }, - "m_assetFilename": { - "type": "std::string", + "m_modifications": { + "type": "class SharedPointer", "id": 1, "offset": 104, - "flags": 131079, - "container": "Static", - "dynamic": false, + "flags": 31, + "container": "Vector", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 2116426332 + "pointer": true, + "hash": 2096386993 }, - "m_geometryName": { + "m_scene": { "type": "std::string", "id": 2, - "offset": 136, - "flags": 7, + "offset": 152, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1734031816 + "hash": 2307196329 }, - "m_materialName": { - "type": "std::string", + "m_gameScoreFactor": { + "type": "int", "id": 3, - "offset": 168, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1878140043 - }, - "m_flags": { - "type": "unsigned int", - "id": 4, - "offset": 200, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1005801050, - "enum_options": { - "EF_AVAILABLE_AT_CREATION": 1 - } - }, - "m_color": { - "type": "class Color", - "id": 5, - "offset": 204, - "flags": 262151, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1791663549 - }, - "m_id": { - "type": "unsigned short", - "id": 6, - "offset": 208, + "offset": 128, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "Vector", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 2644168661 + "hash": 1405761071 } } }, - "1616711389": { - "name": "class ShowPipsCinematicAction", + "905411712": { + "name": "class ClientPlayerStatuePvPBlob", "bases": [ - "ActorCinematicAction", - "CinematicAction", + "PlayerStatuePvPBlob", + "PlayerStatueBlob", "PropertyClass" ], - "hash": 1616711389, + "hash": 905411712, "properties": { - "m_timeOffset": { - "type": "float", + "m_level": { + "type": "int", "id": 0, "offset": 72, - "flags": 7, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 + "hash": 801285362 }, - "m_actor": { - "type": "std::string", + "m_school": { + "type": "unsigned int", "id": 1, - "offset": 80, - "flags": 7, + "offset": 76, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2285866132 + "hash": 1152268885 }, - "m_newActorName": { - "type": "std::string", + "m_gender": { + "type": "int", "id": 2, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2029131039 - } - } - }, - "51406965": { - "name": "class PreviewWindow", - "bases": [ - "PortraitWindow", - "Window", - "PropertyClass" - ], - "hash": 51406965, - "properties": { - "m_sName": { - "type": "std::string", - "id": 0, "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306437263 - }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621225959 - }, - "m_Style": { - "type": "unsigned int", - "id": 2, - "offset": 152, - "flags": 1048583, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "SCALE_CHILDREN": 2, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "FOCUS_LOCKED": 64, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152 - } + "hash": 473816879 }, - "m_Flags": { + "m_nameKeys": { "type": "unsigned int", "id": 3, - "offset": 156, - "flags": 1048583, + "offset": 84, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } + "hash": 1772225898 }, - "m_Window": { - "type": "class Rect", + "m_badge": { + "type": "std::string", "id": 4, - "offset": 160, - "flags": 135, + "offset": 88, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3105139380 + "hash": 2286962478 }, - "m_fTargetAlpha": { - "type": "float", + "m_pCharacterBehavior": { + "type": "class SharedPointer", "id": 5, - "offset": 212, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1809129834 - }, - "m_fDisabledAlpha": { - "type": "float", - "id": 6, - "offset": 216, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1389987675 - }, - "m_fAlpha": { - "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 482130755 - }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3623628394 - }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2102211316 - }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1846695875 - }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3389835433 - }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2547159940 - }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2587533771 - }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3091503757 - }, - "m_pMaterial": { - "type": "class SharedPointer", - "id": 16, - "offset": 632, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3479277078 - }, - "m_alphaMask": { - "type": "class SharedPointer", - "id": 17, - "offset": 648, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2624275869 - } - } - }, - "2025151985": { - "name": "class SharedPointer", - "bases": [ - "ServiceOptionBase", - "PropertyClass" - ], - "hash": 2025151985, - "properties": { - "m_serviceName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2206028813 - }, - "m_iconKey": { - "type": "std::string", - "id": 1, - "offset": 168, + "offset": 120, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 2457138637 + "pointer": true, + "hash": 2724673923 }, - "m_displayKey": { - "type": "std::string", - "id": 2, - "offset": 104, + "m_pEquipment": { + "type": "class SharedPointer", + "id": 6, + "offset": 136, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 3023276954 + "pointer": true, + "hash": 2473540161 }, - "m_serviceIndex": { - "type": "unsigned int", - "id": 3, - "offset": 204, + "m_pStats": { + "type": "class SharedPointer", + "id": 7, + "offset": 152, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 2103126710 + "pointer": true, + "hash": 2212894623 }, - "m_forceInteract": { - "type": "bool", - "id": 4, - "offset": 200, + "m_pGameEffects": { + "type": "class SharedPointer", + "id": 8, + "offset": 168, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1705789564 - } - } - }, - "428049943": { - "name": "class CinematicActorBehavior*", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 428049943, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 + "pointer": true, + "hash": 1557857436 }, - "m_startLocation": { - "type": "class Vector3D", - "id": 1, - "offset": 112, + "m_petTID": { + "type": "unsigned int", + "id": 9, + "offset": 200, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1669140041 + "hash": 1037635095 }, - "m_targetLocation": { - "type": "class Vector3D", - "id": 2, - "offset": 124, + "m_pPetBehavior": { + "type": "class SharedPointer", + "id": 10, + "offset": 208, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 2653859938 + "pointer": true, + "hash": 2663493503 }, - "m_rootAsset": { - "type": "std::string", - "id": 3, - "offset": 136, + "m_pPetJewels": { + "type": "class SharedPointer", + "id": 11, + "offset": 224, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 3506101791 + "pointer": true, + "hash": 733229991 } } }, - "51406960": { - "name": "class PreviewWindow*", + "1310653672": { + "name": "class PetLevelUpWindow*", "bases": [ - "PortraitWindow", "Window", "PropertyClass" ], - "hash": 51406960, + "hash": 1310653672, "properties": { "m_sName": { "type": "std::string", @@ -586275,7 +486523,7 @@ "type": "class SharedPointer", "id": 1, "offset": 112, - "flags": 65671, + "flags": 65667, "container": "Vector", "dynamic": true, "singleton": false, @@ -586470,40 +486718,19 @@ "singleton": false, "pointer": false, "hash": 3091503757 - }, - "m_pMaterial": { - "type": "class SharedPointer", - "id": 16, - "offset": 632, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3479277078 - }, - "m_alphaMask": { - "type": "class SharedPointer", - "id": 17, - "offset": 648, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2624275869 } } }, - "2023112937": { - "name": "class Search::ResultItem", + "1750459267": { + "name": "class SharedPointer", "bases": [ + "CinematicAction", "PropertyClass" ], - "hash": 2023112937, + "hash": 1750459267, "properties": { - "m_userID": { - "type": "gid", + "m_timeOffset": { + "type": "float", "id": 0, "offset": 72, "flags": 7, @@ -586511,513 +486738,354 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 1037989700 - }, - "m_userName": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2213937019 - }, - "m_characterID": { - "type": "gid", - "id": 2, - "offset": 112, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 210498386 - }, - "m_characterName": { - "type": "std::wstring", - "id": 3, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2815013574 - }, - "m_zoneName": { - "type": "std::string", - "id": 4, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2171167736 - }, - "m_realmName": { - "type": "std::string", - "id": 5, - "offset": 184, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3507983949 + "hash": 2237098605 } } }, - "1617363754": { - "name": "class LootInfoList*", + "1749171433": { + "name": "class RaidTeleportBehaviorBase", "bases": [ + "BehaviorInstance", "PropertyClass" ], - "hash": 1617363754, + "hash": 1749171433, "properties": { - "m_loot": { - "type": "class SharedPointer", + "m_behaviorTemplateNameID": { + "type": "unsigned int", "id": 0, - "offset": 72, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2139157014 - }, - "m_goldInfo": { - "type": "class SharedPointer", - "id": 1, - "offset": 88, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2077081000 - }, - "m_lootRarityList": { - "type": "class SharedPointer", - "id": 2, "offset": 104, - "flags": 31, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3268854573 + "pointer": false, + "hash": 223437287 } } }, - "2020189188": { - "name": "class GardeningXPLootInfo", + "32761467": { + "name": "class EloRatingsTable*", "bases": [ - "LootInfo", - "LootInfoBase", "PropertyClass" ], - "hash": 2020189188, + "hash": 32761467, "properties": { - "m_lootType": { - "type": "enum LootInfo::LOOT_TYPE", + "m_leagueType": { + "type": "std::string", "id": 0, "offset": 72, - "flags": 2097183, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1591891442, - "enum_options": { - "LOOT_TYPE_NONE": 0, - "LOOT_TYPE_GOLD": 1, - "LOOT_TYPE_MANA": 2, - "LOOT_TYPE_ITEM": 3, - "LOOT_TYPE_TREASURE_CARD": 4, - "LOOT_TYPE_MAGIC_XP": 5, - "LOOT_TYPE_ADD_SPELL": 6, - "LOOT_TYPE_MAX_HEALTH": 7, - "LOOT_TYPE_MAX_GOLD": 8, - "LOOT_TYPE_MAX_MANA": 9, - "LOOT_TYPE_MAX_POTION": 10, - "LOOT_TYPE_TRAINING_POINTS": 11, - "LOOT_TYPE_RECIPE": 12, - "LOOT_TYPE_CRAFTING_SLOT": 13, - "LOOT_TYPE_REAGENT": 14, - "LOOT_TYPE_PETSNACK": 15, - "LOOT_TYPE_GARDENING_XP": 16, - "LOOT_TYPE_PET_XP": 17, - "LOOT_TYPE_TREASURE_TABLE": 18, - "LOOT_TYPE_ARENA_POINTS": 19, - "LOOT_TYPE_ARENA_BONUS_POINTS": 20, - "LOOT_TYPE_GROUP": 21, - "LOOT_TYPE_FISHING_XP": 22, - "LOOT_TYPE_EVENT_CURRENCY_1": 24, - "LOOT_TYPE_EVENT_CURRENCY_2": 25, - "LOOT_TYPE_PVP_CURRENCY": 26, - "LOOT_TYPE_PVP_CURRENCY_BONUS": 27, - "LOOT_TYPE_PVP_TOURNEY_CURRENCY": 28, - "LOOT_TYPE_PVP_TOURNEY_CURRENCY_BONUS": 29, - "LOOT_TYPE_FURNITURE_ESSENCE": 30 - } + "hash": 3327951024 }, - "m_experience": { + "m_startingElo": { "type": "int", "id": 1, - "offset": 80, - "flags": 31, + "offset": 104, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 759357570 - } - } - }, - "2019959134": { - "name": "class WorldTeleportOptions*", - "bases": [ - "PropertyClass" - ], - "hash": 2019959134, - "properties": { - "m_worldList": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1846694527 - }, - "m_imageList": { - "type": "std::string", - "id": 1, - "offset": 88, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2391457594 + "hash": 1459328550 }, - "m_initialImage": { - "type": "std::string", + "m_minElo": { + "type": "int", "id": 2, - "offset": 104, - "flags": 31, + "offset": 108, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2043562056 + "hash": 713339390 + }, + "m_ranks": { + "type": "class SharedPointer", + "id": 3, + "offset": 112, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2563941952 } } }, - "428444128": { - "name": "class EnergyGlobe*", + "1747888129": { + "name": "class SharedPointer", "bases": [ - "StatGlobe", - "ControlSprite", - "Window", + "GameEffectBase", "PropertyClass" ], - "hash": 428444128, + "hash": 1747888129, "properties": { - "m_sName": { - "type": "std::string", + "m_currentTickCount": { + "type": "double", "id": 0, "offset": 80, - "flags": 135, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2306437263 + "hash": 2533274692 }, - "m_Children": { - "type": "class SharedPointer", + "m_effectNameID": { + "type": "unsigned int", "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, + "offset": 96, + "flags": 63, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2621225959 + "pointer": false, + "hash": 1204067144 }, - "m_Style": { - "type": "unsigned int", + "m_bIsOnPet": { + "type": "bool", "id": 2, - "offset": 152, - "flags": 1048583, + "offset": 73, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "SCALE_CHILDREN": 2, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "FOCUS_LOCKED": 64, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152 - } + "hash": 522593303 }, - "m_Flags": { - "type": "unsigned int", + "m_originatorID": { + "type": "gid", "id": 3, - "offset": 156, - "flags": 1048583, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648, - "ONE_SHOT": 8388608, - "FLIPPED_HORIZONTAL": 16777216, - "FLIPPED_VERTICAL": 33554432 - } + "hash": 1131810019 }, - "m_Window": { - "type": "class Rect", + "m_itemSlotID": { + "type": "unsigned int", "id": 4, - "offset": 160, - "flags": 135, + "offset": 112, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3105139380 + "hash": 1895747595 }, - "m_fTargetAlpha": { - "type": "float", + "m_internalID": { + "type": "int", "id": 5, - "offset": 212, - "flags": 135, + "offset": 92, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1809129834 + "hash": 1643137924 }, - "m_fDisabledAlpha": { - "type": "float", + "m_endTime": { + "type": "unsigned int", "id": 6, - "offset": 216, - "flags": 135, + "offset": 88, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1389987675 + "hash": 716479635 }, - "m_fAlpha": { - "type": "float", + "m_sRace": { + "type": "std::string", "id": 7, - "offset": 208, - "flags": 65671, + "offset": 128, + "flags": 268435487, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 482130755 + "hash": 2306580681, + "enum_options": { + "__BASECLASS": "CharacterRaceTable" + } }, - "m_pWindowStyle": { - "type": "class SharedPointer", + "m_eGender": { + "type": "enum eGender", "id": 8, - "offset": 232, - "flags": 135, + "offset": 160, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3623628394 + "pointer": false, + "hash": 2776344943 }, - "m_sHelp": { - "type": "std::wstring", + "m_fScale": { + "type": "float", "id": 9, - "offset": 248, - "flags": 4194439, + "offset": 164, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2102211316 + "hash": 503137701 }, - "m_sScript": { - "type": "std::string", + "m_nPrimaryColor": { + "type": "int", "id": 10, - "offset": 352, - "flags": 135, + "offset": 168, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1846695875 + "hash": 310334923 }, - "m_Offset": { - "type": "class Point", + "m_nSecondaryColor": { + "type": "int", "id": 11, - "offset": 192, - "flags": 135, + "offset": 172, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3389835433 + "hash": 516938671 }, - "m_Scale": { - "type": "class Point", + "m_nPatternOption": { + "type": "int", "id": 12, - "offset": 200, - "flags": 135, + "offset": 176, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2547159940 + "hash": 413195679 }, - "m_sTip": { - "type": "std::wstring", + "m_nGeometryOption": { + "type": "int", "id": 13, - "offset": 392, - "flags": 4194439, + "offset": 180, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1513510520 + "hash": 676541869 }, - "m_BubbleList": { - "type": "class WindowBubble", + "m_sNaturalAttack": { + "type": "std::string", "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2587533771 - }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, + "offset": 184, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3091503757 - }, - "m_pMaterial": { - "type": "class SharedPointer", - "id": 16, - "offset": 592, - "flags": 135, - "container": "Static", - "dynamic": false, + "hash": 2131867453 + } + } + }, + "468115882": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 468115882, + "properties": { + "m_effectTemplates": { + "type": "class GameEffectTemplate*", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, "singleton": false, "pointer": true, - "hash": 3479277078 - }, - "m_fRotation": { - "type": "float", - "id": 17, - "offset": 608, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1175400173 - }, - "m_Color": { - "type": "class Color", - "id": 18, - "offset": 584, - "flags": 262279, + "hash": 1951025928 + } + } + }, + "907428034": { + "name": "class SharedPointer", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 907428034, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1753714077 + "hash": 223437287 }, - "m_textColor": { - "type": "class Color", - "id": 19, - "offset": 612, - "flags": 262279, + "m_castleMagicData": { + "type": "std::string", + "id": 1, + "offset": 128, + "flags": 575, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2528109250 - }, - "m_textComponent": { - "type": "class TextComponent", - "id": 20, - "offset": 616, - "flags": 135, + "hash": 2874597138 + } + } + }, + "1311399350": { + "name": "class ClientZone", + "bases": [ + "BaseZone", + "PropertyClass" + ], + "hash": 1311399350, + "properties": { + "m_id": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3491704390 + "hash": 2090569797 }, - "m_amount": { - "type": "int", - "id": 21, - "offset": 800, - "flags": 135, + "m_name": { + "type": "std::string", + "id": 1, + "offset": 88, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 248546638 + "hash": 1717359772 } } }, - "51983456": { - "name": "class WhirlyBurlyKioskBehavior", + "1746342530": { + "name": "class MobAggroBehavior*", "bases": [ + "AggroBehavior", "BehaviorInstance", "PropertyClass" ], - "hash": 51983456, + "hash": 1746342530, "properties": { "m_behaviorTemplateNameID": { "type": "unsigned int", @@ -587032,180 +487100,130 @@ } } }, - "2019547573": { - "name": "class SharedPointer", + "467853257": { + "name": "class NullAction*", "bases": [ - "WindowAnimation", + "PathBehaviorTemplate::Action", "PropertyClass" ], - "hash": 2019547573, + "hash": 467853257, "properties": { - "m_bUseDeepCopy": { - "type": "bool", + "m_nPathID": { + "type": "gid", "id": 0, "offset": 72, - "flags": 135, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 433380635 + "hash": 214382368 }, - "m_fCycleTime": { - "type": "float", + "m_nNodeID": { + "type": "int", "id": 1, "offset": 80, - "flags": 135, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1056288476 + "hash": 152152635, + "enum_options": { + "__DEFAULT": 4294967295 + } }, - "m_fElapsedTime": { - "type": "float", + "m_nPriority": { + "type": "int", "id": 2, "offset": 84, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1862647402 - }, - "m_fContrastMax": { - "type": "float", - "id": 3, - "offset": 88, - "flags": 135, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 915848113 - } - } - }, - "1619572820": { - "name": "class IgnoreEntryDataList", - "bases": [ - "PropertyClass" - ], - "hash": 1619572820, - "properties": { - "m_ignoreDataList": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2636534189 - } - } - }, - "428466864": { - "name": "class CastleTourLeaderboardUpdate", - "bases": [ - "PropertyClass" - ], - "hash": 428466864, - "properties": { - "m_entryList": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 818498005 + "hash": 1515251530, + "enum_options": { + "__DEFAULT": 100 + } }, - "m_leaderboardSize": { + "m_nChance": { "type": "int", - "id": 1, + "id": 3, "offset": 88, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 683398282 + "hash": 1860748394, + "enum_options": { + "__DEFAULT": 50 + } } } }, - "1619021775": { - "name": "class ControlTab::Page*", + "906141780": { + "name": "class IgnoreEntryData", "bases": [ "PropertyClass" ], - "hash": 1619021775, + "hash": 906141780, "properties": { - "m_tabName": { + "m_ignoreName": { "type": "std::string", "id": 0, "offset": 72, - "flags": 7, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1536087219 + "hash": 2203859488 }, - "m_tabWindow": { - "type": "class SharedPointer", + "m_characterID": { + "type": "gid", "id": 1, "offset": 104, - "flags": 7, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2814298381 + "pointer": false, + "hash": 210498386 }, - "m_tabButton": { - "type": "class SharedPointer", + "m_gameObjectID": { + "type": "gid", "id": 2, + "offset": 112, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 23229750 + }, + "m_platformType": { + "type": "int", + "id": 3, "offset": 120, - "flags": 7, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 847778038 - } - } - }, - "2019662957": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 2019662957, - "properties": { - "m_worldKeys": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": true, "pointer": false, - "hash": 1846654431 + "hash": 1300871393 } } }, - "1618382704": { - "name": "class SharedPointer", + "1746244226": { + "name": "class MobAggroBehavior", "bases": [ + "AggroBehavior", "BehaviorInstance", "PropertyClass" ], - "hash": 1618382704, + "hash": 1746244226, "properties": { "m_behaviorTemplateNameID": { "type": "unsigned int", @@ -587217,543 +487235,469 @@ "singleton": false, "pointer": false, "hash": 223437287 - }, - "m_castleToursFavoritesData": { - "type": "std::string", - "id": 1, - "offset": 128, - "flags": 575, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1708015073 } } }, - "1618010027": { - "name": "class ConicalStateSoundBehavior*", + "466676189": { + "name": "class AvailableQuestEntry*", "bases": [ - "ConicalSoundBehavior", - "PositionalSoundBehavior", - "SoundBehavior", - "AreaBehavior", - "BehaviorInstance", + "ServiceOptionBase", "PropertyClass" ], - "hash": 1618010027, + "hash": 466676189, "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", + "m_serviceName": { + "type": "std::string", "id": 0, - "offset": 104, - "flags": 39, + "offset": 72, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 + "hash": 2206028813 }, - "m_radius": { - "type": "float", + "m_iconKey": { + "type": "std::string", "id": 1, - "offset": 116, - "flags": 7, + "offset": 168, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 989410271 + "hash": 2457138637 }, - "m_category": { - "type": "enum AudioCategory", + "m_displayKey": { + "type": "std::string", "id": 2, - "offset": 124, - "flags": 2097159, + "offset": 104, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2951251982, - "enum_options": { - "AudioCategory_Irrelevent": 0, - "AudioCategory_Accoustic": 1, - "AudioCategory_Noise": 2, - "AudioCategory_Music": 3 - } + "hash": 3023276954 }, - "m_exclusive": { - "type": "bool", + "m_serviceIndex": { + "type": "unsigned int", "id": 3, - "offset": 128, - "flags": 7, + "offset": 204, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 824383403 + "hash": 2103126710 }, - "m_playList": { - "type": "class PlayList", + "m_forceInteract": { + "type": "bool", "id": 4, - "offset": 176, - "flags": 7, + "offset": 200, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2061221957 + "hash": 1705789564 }, - "m_volume": { - "type": "float", + "m_questTitle": { + "type": "std::string", "id": 5, - "offset": 304, - "flags": 7, + "offset": 256, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1162855023 + "hash": 1805465583 }, - "m_loopCount": { - "type": "int", + "m_questName": { + "type": "std::string", "id": 6, - "offset": 308, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 865634717 - }, - "m_minimumFalloff": { - "type": "float", - "id": 7, - "offset": 328, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 355697197 - }, - "m_maximumFalloff": { - "type": "float", - "id": 8, - "offset": 332, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2210192367 - }, - "m_animDriven": { - "type": "bool", - "id": 9, - "offset": 392, - "flags": 7, + "offset": 224, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 398394720 + "hash": 1702112846 }, - "m_inverted": { + "m_isMainline": { "type": "bool", - "id": 10, - "offset": 397, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1034821044 - }, - "m_fInsideAngle": { - "type": "float", - "id": 11, - "offset": 528, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1114383840 - }, - "m_fOutsideAngle": { - "type": "float", - "id": 12, - "offset": 532, - "flags": 7, + "id": 7, + "offset": 344, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1627152289 - }, - "m_fOutsideVolume": { - "type": "float", - "id": 13, - "offset": 536, - "flags": 7, + "hash": 1637584380 + } + } + }, + "905789819": { + "name": "class TutorialServiceOption*", + "bases": [ + "ServiceOptionBase", + "PropertyClass" + ], + "hash": 905789819, + "properties": { + "m_serviceName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 90369618 + "hash": 2206028813 }, - "m_fRangeScale": { - "type": "float", - "id": 14, - "offset": 540, - "flags": 7, + "m_iconKey": { + "type": "std::string", + "id": 1, + "offset": 168, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1749294034 + "hash": 2457138637 }, - "m_fAttenuationFactor": { - "type": "float", - "id": 15, - "offset": 544, - "flags": 7, + "m_displayKey": { + "type": "std::string", + "id": 2, + "offset": 104, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 273292776 + "hash": 3023276954 }, - "m_eAttenuationType": { - "type": "enum PositionInfoAttenuationType", - "id": 16, - "offset": 548, - "flags": 2097159, + "m_serviceIndex": { + "type": "unsigned int", + "id": 3, + "offset": 204, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2427193304, - "enum_options": { - "Standard": 0, - "Unit Range Power": 1 - } + "hash": 2103126710 }, - "m_animationName": { - "type": "std::string", - "id": 17, - "offset": 648, - "flags": 7, + "m_forceInteract": { + "type": "bool", + "id": 4, + "offset": 200, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3393414044 + "hash": 1705789564 } } }, - "428691869": { - "name": "class SharedPointer", - "bases": [ - "CinematicActor", - "PropertyClass" - ], - "hash": 428691869, - "properties": {} - }, - "59619327": { - "name": "class SharedPointer", + "33622494": { + "name": "class PetTomePetTotalList", "bases": [ - "QueuedCombatCinematicAction", - "CinematicAction", "PropertyClass" ], - "hash": 59619327, + "hash": 33622494, "properties": { - "m_timeOffset": { - "type": "float", + "m_petTomePetTotalList": { + "type": "class SharedPointer", "id": 0, "offset": 72, "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - } - } - }, - "2019959158": { - "name": "class WorldTeleportOptions", - "bases": [ - "PropertyClass" - ], - "hash": 2019959158, - "properties": { - "m_worldList": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, "container": "List", "dynamic": true, "singleton": false, - "pointer": false, - "hash": 1846694527 + "pointer": true, + "hash": 449762511 }, - "m_imageList": { - "type": "std::string", + "m_petTemplateList": { + "type": "unsigned int", "id": 1, "offset": 88, - "flags": 31, + "flags": 7, "container": "List", "dynamic": true, "singleton": false, "pointer": false, - "hash": 2391457594 - }, - "m_initialImage": { - "type": "std::string", - "id": 2, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2043562056 + "hash": 567776494 } } }, - "428529089": { - "name": "class SharedPointer", + "905754865": { + "name": "class SharedPointer", "bases": [ - "GameEffectInfo", + "CoreObjectInfo", "PropertyClass" ], - "hash": 428529089, + "hash": 905754865, "properties": { - "m_effectName": { - "type": "std::string", + "m_templateID.m_full": { + "type": "unsigned __int64", "id": 0, "offset": 72, - "flags": 31, + "flags": 33554439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2029161513 + "hash": 633907631 }, - "m_sRace": { - "type": "std::string", + "m_nObjectID": { + "type": "unsigned int", "id": 1, - "offset": 104, - "flags": 268435463, + "offset": 80, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2306580681, - "enum_options": { - "__BASECLASS": "CharacterRaceTable" - } + "hash": 748496927 }, - "m_eGender": { - "type": "enum eGender", + "m_location": { + "type": "class Vector3D", "id": 2, - "offset": 136, - "flags": 2097159, + "offset": 84, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2776344943, - "enum_options": { - "Male": 1, - "Female": 0, - "Neutral": 2 - } + "hash": 2239683611 }, - "m_fScale": { - "type": "float", + "m_orientation": { + "type": "class Vector3D", "id": 3, - "offset": 140, + "offset": 96, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 503137701 + "hash": 2344058766 }, - "m_nPrimaryColor": { - "type": "int", + "m_fScale": { + "type": "float", "id": 4, - "offset": 144, + "offset": 108, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 310334923 + "hash": 503137701 }, - "m_nSecondaryColor": { - "type": "int", + "m_zoneTag": { + "type": "std::string", "id": 5, - "offset": 148, + "offset": 152, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 516938671 + "hash": 3405382643 }, - "m_nPatternOption": { - "type": "int", + "m_startState": { + "type": "std::string", "id": 6, - "offset": 152, + "offset": 184, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 413195679 + "hash": 2166880458 }, - "m_nGeometryOption": { - "type": "int", + "m_overrideName": { + "type": "std::string", "id": 7, - "offset": 156, - "flags": 7, + "offset": 120, + "flags": 8388615, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 676541869 + "hash": 1990707228 }, - "m_sNaturalAttack": { - "type": "std::string", + "m_globalDynamic": { + "type": "bool", "id": 8, - "offset": 160, + "offset": 116, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2131867453 - } - } - }, - "52474364": { - "name": "class EloConfig", - "bases": [ - "PropertyClass" - ], - "hash": 52474364, - "properties": { - "m_defaultRatingsTable": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, + "hash": 1951691017 + }, + "m_bUndetectable": { + "type": "bool", + "id": 9, + "offset": 216, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1907454341 + }, + "m_spawnRequirements": { + "type": "class SharedPointer", + "id": 10, + "offset": 224, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": true, - "hash": 2295782328 + "hash": 2309120870 }, - "m_perLeagueRatingsTables": { - "type": "class SharedPointer", - "id": 1, - "offset": 88, + "m_loadingType": { + "type": "enum CoreObjectInfo::LoadingType", + "id": 11, + "offset": 112, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3522422550, + "enum_options": { + "STATIC_CLIENT_SERVER": 0, + "STATIC_CLIENT": 1, + "STATIC_SERVER": 2, + "DYNAMIC_SERVER": 3 + } + }, + "m_pContainer": { + "type": "class SharedPointer", + "id": 12, + "offset": 240, "flags": 7, - "container": "List", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": true, - "hash": 2644292192 + "hash": 915185204 } } }, - "52295661": { - "name": "class TimerControlCinematicAction", + "1315903630": { + "name": "class MaxManaLootInfo", "bases": [ - "CinematicAction", + "LootInfo", + "LootInfoBase", "PropertyClass" ], - "hash": 52295661, + "hash": 1315903630, "properties": { - "m_timeOffset": { - "type": "float", + "m_lootType": { + "type": "enum LootInfo::LOOT_TYPE", "id": 0, "offset": 72, - "flags": 7, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 + "hash": 1591891442, + "enum_options": { + "LOOT_TYPE_NONE": 0, + "LOOT_TYPE_GOLD": 1, + "LOOT_TYPE_MANA": 2, + "LOOT_TYPE_ITEM": 3, + "LOOT_TYPE_TREASURE_CARD": 4, + "LOOT_TYPE_MAGIC_XP": 5, + "LOOT_TYPE_ADD_SPELL": 6, + "LOOT_TYPE_MAX_HEALTH": 7, + "LOOT_TYPE_MAX_GOLD": 8, + "LOOT_TYPE_MAX_MANA": 9, + "LOOT_TYPE_MAX_POTION": 10, + "LOOT_TYPE_TRAINING_POINTS": 11, + "LOOT_TYPE_RECIPE": 12, + "LOOT_TYPE_CRAFTING_SLOT": 13, + "LOOT_TYPE_REAGENT": 14, + "LOOT_TYPE_PETSNACK": 15, + "LOOT_TYPE_GARDENING_XP": 16, + "LOOT_TYPE_PET_XP": 17, + "LOOT_TYPE_TREASURE_TABLE": 18, + "LOOT_TYPE_ARENA_POINTS": 19, + "LOOT_TYPE_ARENA_BONUS_POINTS": 20, + "LOOT_TYPE_GROUP": 21, + "LOOT_TYPE_FISHING_XP": 22, + "LOOT_TYPE_EVENT_CURRENCY_1": 24, + "LOOT_TYPE_EVENT_CURRENCY_2": 25, + "LOOT_TYPE_PVP_CURRENCY": 26, + "LOOT_TYPE_PVP_CURRENCY_BONUS": 27, + "LOOT_TYPE_PVP_TOURNEY_CURRENCY": 28, + "LOOT_TYPE_PVP_TOURNEY_CURRENCY_BONUS": 29, + "LOOT_TYPE_FURNITURE_ESSENCE": 30 + } }, - "m_bSetVisible": { - "type": "bool", + "m_manaToAdd": { + "type": "int", "id": 1, - "offset": 88, - "flags": 7, + "offset": 80, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 471535983 - }, - "m_fTimeToSet": { + "hash": 1303804451 + } + } + }, + "33497323": { + "name": "class SharedPointer", + "bases": [ + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 33497323, + "properties": { + "m_timeOffset": { "type": "float", - "id": 2, - "offset": 84, + "id": 0, + "offset": 72, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 661189659 + "hash": 2237098605 }, - "m_timerStrKey": { + "m_actor": { "type": "std::string", - "id": 3, - "offset": 96, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3000196414 - }, - "m_timerOp": { - "type": "enum TimerControlCinematicAction::kControlOperation", - "id": 4, + "id": 1, "offset": 80, - "flags": 2097159, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1809610086, - "enum_options": { - "kNone": 0, - "kStartTimer": 1, - "kSetVisible": 2, - "kSetTimerString": 3, - "kSetTimeToShow": 4 - } + "hash": 2285866132 } } }, - "1619185615": { - "name": "class ControlTab::Page", + "1315711952": { + "name": "class ContainerEffectTemplate", "bases": [ + "GameEffectTemplate", "PropertyClass" ], - "hash": 1619185615, + "hash": 1315711952, "properties": { - "m_tabName": { + "m_effectName": { "type": "std::string", "id": 0, "offset": 72, @@ -587762,807 +487706,863 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 1536087219 + "hash": 2029161513 }, - "m_tabWindow": { - "type": "class SharedPointer", + "m_effectCategory": { + "type": "std::string", "id": 1, "offset": 104, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2814298381 + "pointer": false, + "hash": 1852673222 }, - "m_tabButton": { - "type": "class SharedPointer", + "m_sortOrder": { + "type": "int", "id": 2, - "offset": 120, + "offset": 148, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 847778038 - } - } - }, - "52295341": { - "name": "class TimerControlCinematicAction*", - "bases": [ - "CinematicAction", - "PropertyClass" - ], - "hash": 52295341, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, + "pointer": false, + "hash": 1411218206 + }, + "m_duration": { + "type": "double", + "id": 3, + "offset": 192, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 + "hash": 2727932435 }, - "m_bSetVisible": { + "m_stackingCategories": { + "type": "std::string", + "id": 4, + "offset": 160, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1774497525 + }, + "m_isPersistent": { "type": "bool", - "id": 1, - "offset": 88, + "id": 5, + "offset": 153, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 471535983 + "hash": 923861920 }, - "m_fTimeToSet": { - "type": "float", - "id": 2, - "offset": 84, + "m_bIsOnPet": { + "type": "bool", + "id": 6, + "offset": 154, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 661189659 + "hash": 522593303 }, - "m_timerStrKey": { - "type": "std::string", - "id": 3, - "offset": 96, - "flags": 8388615, + "m_isPublic": { + "type": "bool", + "id": 7, + "offset": 152, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3000196414 + "hash": 1728439822 }, - "m_timerOp": { - "type": "enum TimerControlCinematicAction::kControlOperation", - "id": 4, - "offset": 80, - "flags": 2097159, + "m_visualEffectAddName": { + "type": "std::string", + "id": 8, + "offset": 200, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1809610086, - "enum_options": { - "kNone": 0, - "kStartTimer": 1, - "kSetVisible": 2, - "kSetTimerString": 3, - "kSetTimeToShow": 4 - } - } - } - }, - "2021878608": { - "name": "class ClientHidePipsCinematicAction*", - "bases": [ - "HidePipsCinematicAction", - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 2021878608, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, + "hash": 3382086694 + }, + "m_visualEffectRemoveName": { + "type": "std::string", + "id": 9, + "offset": 232, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 + "hash": 1541697323 }, - "m_actor": { + "m_onAddFunctorName": { "type": "std::string", - "id": 1, - "offset": 80, + "id": 10, + "offset": 280, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2285866132 + "hash": 1561843107 }, - "m_newActorName": { + "m_onRemoveFunctorName": { "type": "std::string", - "id": 2, - "offset": 120, + "id": 11, + "offset": 312, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2029131039 + "hash": 2559017864 + }, + "m_stackingRule": { + "type": "enum STACKING_RULE", + "id": 12, + "offset": 144, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 431568889, + "enum_options": { + "STACKING_ALLOWED": 0, + "STACKING_NOSTACK": 1, + "STACKING_REPLACE": 2 + } + }, + "m_startReqs": { + "type": "class SharedPointer", + "id": 13, + "offset": 360, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3147529602 + }, + "m_containerEffects": { + "type": "class SharedPointer", + "id": 14, + "offset": 376, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 957354392 + }, + "m_accompanyID": { + "type": "unsigned int", + "id": 15, + "offset": 392, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1462123093 } } }, - "429200250": { - "name": "class BountyGoalTemplate", + "1747063668": { + "name": "class DuelModifier", "bases": [ - "GoalTemplate", - "CoreTemplate", "PropertyClass" ], - "hash": 429200250, + "hash": 1747063668, "properties": { - "m_behaviors": { - "type": "class BehaviorTemplate*", + "m_combatTriggers": { + "type": "std::string", "id": 0, - "offset": 72, - "flags": 7, - "container": "Vector", + "offset": 104, + "flags": 31, + "container": "List", "dynamic": true, "singleton": false, - "pointer": true, - "hash": 1197808594 + "pointer": false, + "hash": 3023646200 }, - "m_goalName": { - "type": "std::string", + "m_noTreasureCards": { + "type": "bool", "id": 1, - "offset": 104, - "flags": 7, + "offset": 137, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1521627807 + "hash": 1653008424 }, - "m_goalNameID": { - "type": "unsigned int", + "m_battlefieldEffects": { + "type": "class SharedPointer", "id": 2, - "offset": 496, - "flags": 7, - "container": "Static", - "dynamic": false, + "offset": 72, + "flags": 31, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 403158846 + "pointer": true, + "hash": 1245973515 }, - "m_goalTitle": { - "type": "std::string", + "m_gameEffects": { + "type": "class SharedPointer", "id": 3, - "offset": 136, - "flags": 8388615, - "container": "Static", - "dynamic": false, + "offset": 88, + "flags": 31, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 2291910240 + "pointer": true, + "hash": 1187421775 }, - "m_goalUnderway": { - "type": "std::string", + "m_onlyTreasureCards": { + "type": "bool", "id": 4, - "offset": 168, - "flags": 8388615, + "offset": 138, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3153144269 + "hash": 752220749 }, - "m_hyperlink": { - "type": "std::string", + "m_noShadowSpells": { + "type": "bool", "id": 5, - "offset": 200, - "flags": 8388615, + "offset": 139, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2887798993 + "hash": 2142185705 }, - "m_completeText": { - "type": "std::string", + "m_noCrits": { + "type": "bool", "id": 6, - "offset": 232, - "flags": 8388615, + "offset": 136, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2767458393 + "hash": 1394430197 }, - "m_completeResults": { - "type": "class ResultList*", + "m_noEnchantedTreasureCards": { + "type": "bool", "id": 7, - "offset": 440, - "flags": 7, + "offset": 140, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1964258099 + "pointer": false, + "hash": 1780948882 }, - "m_goalRequirements": { - "type": "class RequirementList*", + "m_noEnchantmentSpells": { + "type": "bool", "id": 8, - "offset": 448, - "flags": 7, + "offset": 141, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2979967145 + "pointer": false, + "hash": 1325982520 }, - "m_tallyCounter": { - "type": "class TallyCounterTemplate*", + "m_noMaycastSpells": { + "type": "bool", "id": 9, - "offset": 456, - "flags": 7, + "offset": 142, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1884546193 + "pointer": false, + "hash": 1409034133 }, - "m_locationName": { - "type": "std::string", + "m_enableSpellLevelRestrictions": { + "type": "bool", "id": 10, - "offset": 272, - "flags": 8388615, + "offset": 143, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1824218389 + "hash": 1272415451 }, - "m_displayImage1": { - "type": "std::string", + "m_ignoreSpellsPvPOnlyFlag": { + "type": "bool", "id": 11, - "offset": 304, - "flags": 131079, + "offset": 144, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1959572133 + "hash": 1714276188 }, - "m_displayImage2": { - "type": "std::string", + "m_ignoreSpellsPvEOnlyFlag": { + "type": "bool", "id": 12, - "offset": 336, - "flags": 131079, + "offset": 145, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1959572134 + "hash": 1691675729 }, - "m_clientTags": { - "type": "std::string", + "m_requiredSpellsAdjectives": { + "type": "int", "id": 13, - "offset": 368, - "flags": 7, + "offset": 152, + "flags": 31, "container": "List", "dynamic": true, "singleton": false, "pointer": false, - "hash": 2319030025 + "hash": 1262019376 }, - "m_genericEvents": { - "type": "std::string", + "m_bannedSpellsAdjectives": { + "type": "int", "id": 14, - "offset": 384, - "flags": 7, + "offset": 168, + "flags": 31, "container": "List", "dynamic": true, "singleton": false, "pointer": false, - "hash": 3466670829 - }, - "m_autoQualify": { - "type": "bool", - "id": 15, - "offset": 400, - "flags": 7, + "hash": 1474039287 + } + } + }, + "468051469": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 468051469, + "properties": { + "m_name": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 8388639, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1878907431 + "hash": 1717359772 }, - "m_autoComplete": { - "type": "bool", - "id": 16, - "offset": 401, - "flags": 7, - "container": "Static", - "dynamic": false, + "m_modifications": { + "type": "class SharedPointer", + "id": 1, + "offset": 104, + "flags": 31, + "container": "Vector", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 1302545445 + "pointer": true, + "hash": 2096386993 }, - "m_destinationZone": { + "m_scene": { "type": "std::string", - "id": 17, - "offset": 408, - "flags": 268435463, + "id": 2, + "offset": 152, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2605356153, - "enum_options": { - "__BASECLASS": "ZoneData" - } + "hash": 2307196329 }, - "m_dialogList": { - "type": "class ActorDialogListBase*", - "id": 18, - "offset": 264, + "m_gameScoreFactor": { + "type": "int", + "id": 3, + "offset": 128, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1405761071 + } + } + }, + "1313415472": { + "name": "class MountTable*", + "bases": [ + "PropertyClass" + ], + "hash": 1313415472, + "properties": { + "m_Mounts": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Vector", + "dynamic": true, "singleton": false, "pointer": true, - "hash": 1909154969 - }, - "m_goalType": { - "type": "enum GoalTemplate::GOAL_TYPE", - "id": 19, - "offset": 96, - "flags": 2097159, + "hash": 2866335988 + } + } + }, + "905790587": { + "name": "class TutorialServiceOption", + "bases": [ + "ServiceOptionBase", + "PropertyClass" + ], + "hash": 905790587, + "properties": { + "m_serviceName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1488021149, - "enum_options": { - "GOAL_TYPE_UNKNOWN": 0, - "GOAL_TYPE_BOUNTY": 1, - "GOAL_TYPE_BOUNTYCOLLECT": 2, - "GOAL_TYPE_SCAVENGE": 3, - "GOAL_TYPE_PERSONA": 4, - "GOAL_TYPE_WAYPOINT": 5, - "GOAL_TYPE_SCAVENGEFAKE": 6, - "GOAL_TYPE_ACHIEVERANK": 7, - "GOAL_TYPE_USAGE": 8, - "GOAL_TYPE_COMPLETEQUEST": 9, - "GOAL_TYPE_SOCIARANK": 10, - "GOAL_TYPE_SOCIACURRENCY": 11, - "GOAL_TYPE_SOCIAMINIGAME": 12, - "GOAL_TYPE_SOCIAGIVEITEM": 13, - "GOAL_TYPE_SOCIAGETITEM": 14, - "GOAL_TYPE_COLLECTAFTERBOUNTY": 15, - "GOAL_TYPE_ENCOUNTER_WAYPOINT_FOREACH": 16 - } + "hash": 2206028813 }, - "m_noQuestHelper": { - "type": "bool", - "id": 20, - "offset": 500, - "flags": 7, + "m_iconKey": { + "type": "std::string", + "id": 1, + "offset": 168, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 578010882, - "enum_options": { - "__DEFAULT": 0 - } + "hash": 2457138637 }, - "m_petOnlyQuest": { - "type": "bool", - "id": 21, - "offset": 501, - "flags": 7, + "m_displayKey": { + "type": "std::string", + "id": 2, + "offset": 104, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 679359344, - "enum_options": { - "__DEFAULT": 0 - } + "hash": 3023276954 }, - "m_activateResults": { - "type": "class ResultList*", - "id": 22, - "offset": 504, - "flags": 7, + "m_serviceIndex": { + "type": "unsigned int", + "id": 3, + "offset": 204, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3790153995 + "pointer": false, + "hash": 2103126710 }, - "m_hideGoalFloatyText": { + "m_forceInteract": { "type": "bool", - "id": 23, - "offset": 512, - "flags": 7, + "id": 4, + "offset": 200, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1919383204, - "enum_options": { - "__DEFAULT": 0 - } - }, - "m_npcAdjectives": { - "type": "std::string", - "id": 24, - "offset": 520, + "hash": 1705789564 + } + } + }, + "1313022256": { + "name": "class MountTable", + "bases": [ + "PropertyClass" + ], + "hash": 1313022256, + "properties": { + "m_Mounts": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, "flags": 7, - "container": "List", + "container": "Vector", "dynamic": true, "singleton": false, - "pointer": false, - "hash": 3044559358 - }, - "m_bountyTotal": { - "type": "int", - "id": 25, - "offset": 536, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1943105087 - }, - "m_bountyType": { - "type": "enum BountyGoalTemplate::BOUNTY_TYPE", - "id": 26, - "offset": 540, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3703892338, - "enum_options": { - "BountyGoalTemplate::BT_MOB_KILL": 0, - "BountyGoalTemplate::BT_MOB_FLEE": 1 - } + "pointer": true, + "hash": 2866335988 } } }, - "2020951153": { - "name": "class BattlegroundTemplate*", + "34048784": { + "name": "class std::list >", + "bases": [], + "hash": 34048784, + "properties": {} + }, + "33877872": { + "name": "class std::list >", + "bases": [], + "hash": 33877872, + "properties": {} + }, + "1749033089": { + "name": "class DerbyModifyCheerCost*", "bases": [ + "DerbyEffect", "PropertyClass" ], - "hash": 2020951153, + "hash": 1749033089, "properties": { - "m_battlegroundName": { - "type": "std::string", + "m_buffType": { + "type": "enum DerbyTalentBuffType", "id": 0, - "offset": 80, - "flags": 7, + "offset": 92, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1534120775 + "hash": 1149251982, + "enum_options": { + "Buff": 0, + "Debuff": 1, + "Neither": 2 + } }, - "m_countdownSeconds": { - "type": "float", + "m_kTarget": { + "type": "enum DerbyTargetType", "id": 1, - "offset": 112, - "flags": 7, + "offset": 96, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 255072071 + "hash": 1807803351, + "enum_options": { + "kTargetInFront": 0, + "kTargetBehind": 1, + "kTargetFirst": 2, + "kTargetSelf": 3, + "kTargetAll": 4, + "kTargetLast": 5 + } }, - "m_matchSize": { + "m_nDuration": { "type": "int", "id": 2, - "offset": 116, - "flags": 7, + "offset": 104, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 563704930 + "hash": 1110167982 }, - "m_teamStartA": { - "type": "std::string", + "m_effectID": { + "type": "unsigned int", "id": 3, - "offset": 152, - "flags": 7, + "offset": 88, + "flags": 24, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1716880369 + "hash": 2347630439 }, - "m_teamStartB": { + "m_imageFilename": { "type": "std::string", "id": 4, - "offset": 184, - "flags": 7, + "offset": 112, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1716880370 + "hash": 2813328063 }, - "m_battlegroundZone": { - "type": "std::string", + "m_iconIndex": { + "type": "unsigned int", "id": 5, - "offset": 120, - "flags": 7, + "offset": 144, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1534567298 + "hash": 1265133262 }, - "m_cancelCooldownSeconds": { - "type": "int", + "m_soundOnActivate": { + "type": "std::string", "id": 6, - "offset": 216, - "flags": 7, + "offset": 152, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1074662868 + "hash": 1956929714 }, - "m_maximumDisplayPoints": { - "type": "int", + "m_soundOnTarget": { + "type": "std::string", "id": 7, - "offset": 220, - "flags": 7, + "offset": 184, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 751410187 + "hash": 3444214056 }, - "m_matchTimeSeconds": { - "type": "int", + "m_targetParticleEffect": { + "type": "std::string", "id": 8, - "offset": 224, - "flags": 7, + "offset": 216, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1560908229 + "hash": 3048234723 }, - "m_revealTimeSeconds": { - "type": "int", + "m_overheadMessage": { + "type": "std::string", "id": 9, - "offset": 228, - "flags": 7, + "offset": 248, + "flags": 8388639, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 258367543 + "hash": 1701018190 }, - "m_matchmakingList": { - "type": "class SharedPointer", + "m_requirements": { + "type": "class RequirementList", "id": 10, - "offset": 232, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2069645122 - }, - "m_unlockedPolymorphTags": { - "type": "std::string", - "id": 11, - "offset": 256, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2024692009 - }, - "m_lootWinner": { - "type": "std::string", - "id": 12, - "offset": 288, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1642288556 - }, - "m_lootLoser": { - "type": "std::string", - "id": 13, - "offset": 320, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2530546718 - }, - "m_lootTie": { - "type": "std::string", - "id": 14, - "offset": 352, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2506425499 - }, - "m_pveMode": { - "type": "bool", - "id": 15, - "offset": 384, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2142827875 - }, - "m_defeatedPolyLockCount": { - "type": "int", - "id": 16, - "offset": 388, - "flags": 7, + "offset": 280, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1366197282 + "hash": 2840988582 }, - "m_lockSigilSpotOnDefeat": { - "type": "bool", - "id": 17, - "offset": 392, - "flags": 7, + "m_costMap": { + "type": "class TerrainCheerCostMap", + "id": 11, + "offset": 376, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 407313920 + "hash": 1929931701 } } }, - "1619478954": { - "name": "class SharedPointer", + "468174153": { + "name": "class SharedPointer", "bases": [ - "NameOverrideBehavior", - "BehaviorInstance", "PropertyClass" ], - "hash": 1619478954, + "hash": 468174153, "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", + "m_thousandSeparator": { + "type": "wchar_t", "id": 0, - "offset": 104, - "flags": 39, + "offset": 200, + "flags": 7, "container": "Static", "dynamic": false, - "singleton": false, + "singleton": true, "pointer": false, - "hash": 223437287 + "hash": 3735116682 }, - "m_wsNameOverride": { - "type": "std::wstring", + "m_decimalCharacter": { + "type": "wchar_t", "id": 1, - "offset": 120, - "flags": 31, + "offset": 202, + "flags": 7, "container": "Static", "dynamic": false, - "singleton": false, + "singleton": true, "pointer": false, - "hash": 2131249091 + "hash": 2802322863 }, - "m_firstName": { - "type": "std::string", + "m_defaultSpace": { + "type": "wchar_t", "id": 2, - "offset": 160, - "flags": 31, + "offset": 204, + "flags": 7, "container": "Static", "dynamic": false, - "singleton": false, + "singleton": true, "pointer": false, - "hash": 3116002948 + "hash": 3126898340 }, - "m_lastName": { - "type": "std::string", + "m_numberPrecision": { + "type": "int", "id": 3, - "offset": 192, - "flags": 31, + "offset": 208, + "flags": 7, "container": "Static", "dynamic": false, - "singleton": false, + "singleton": true, "pointer": false, - "hash": 1826203600 + "hash": 523838671 }, - "m_nickname": { - "type": "std::string", + "m_lowerToUpperList": { + "type": "class CharMap", "id": 4, - "offset": 224, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, + "offset": 216, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": true, "pointer": false, - "hash": 2269863201 + "hash": 542305079 }, - "m_title": { - "type": "std::string", + "m_upperToLowerList": { + "type": "class CharMap", "id": 5, - "offset": 256, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, + "offset": 232, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": true, "pointer": false, - "hash": 2308614141 + "hash": 686618071 }, - "m_isMonster": { - "type": "bool", + "m_sortScoreList": { + "type": "class CharMap", "id": 6, - "offset": 288, - "flags": 31, + "offset": 248, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": true, + "pointer": false, + "hash": 1662028035 + }, + "m_typeSpaces": { + "type": "unsigned short", + "id": 7, + "offset": 264, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": true, + "pointer": false, + "hash": 931738089 + }, + "m_typePunctuation": { + "type": "unsigned short", + "id": 8, + "offset": 280, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": true, + "pointer": false, + "hash": 2553388772 + }, + "m_typeAlphaNumeric": { + "type": "unsigned short", + "id": 9, + "offset": 296, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": true, + "pointer": false, + "hash": 696068547 + }, + "m_typeAlpha": { + "type": "unsigned short", + "id": 10, + "offset": 312, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": true, + "pointer": false, + "hash": 1715008368 + }, + "m_typeDigit": { + "type": "unsigned short", + "id": 11, + "offset": 328, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": true, + "pointer": false, + "hash": 1718448571 + }, + "m_typeHexDigit": { + "type": "unsigned short", + "id": 12, + "offset": 344, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": true, + "pointer": false, + "hash": 990261184 + }, + "m_minFontSizeForDropshadow": { + "type": "float", + "id": 13, + "offset": 212, + "flags": 7, "container": "Static", "dynamic": false, - "singleton": false, + "singleton": true, "pointer": false, - "hash": 1321956791 + "hash": 335078927 } } }, - "2020951129": { - "name": "class BattlegroundTemplate", + "905859247": { + "name": "class TournamentTemplate", "bases": [ + "CoreTemplate", "PropertyClass" ], - "hash": 2020951129, + "hash": 905859247, "properties": { - "m_battlegroundName": { - "type": "std::string", + "m_behaviors": { + "type": "class BehaviorTemplate*", "id": 0, - "offset": 80, + "offset": 72, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "Vector", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 1534120775 + "pointer": true, + "hash": 1197808594 }, - "m_countdownSeconds": { - "type": "float", + "m_tournamentName": { + "type": "std::string", "id": 1, "offset": 112, "flags": 7, @@ -588570,813 +488570,708 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 255072071 + "hash": 3329241865 }, - "m_matchSize": { - "type": "int", + "m_allowedMatches": { + "type": "std::string", "id": 2, - "offset": 116, + "offset": 152, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 563704930 + "hash": 2083366952 }, - "m_teamStartA": { - "type": "std::string", + "m_updateLadder": { + "type": "bool", "id": 3, - "offset": 152, + "offset": 209, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1716880369 + "hash": 1327828834 }, - "m_teamStartB": { - "type": "std::string", + "m_useEloBehavior": { + "type": "bool", "id": 4, - "offset": 184, + "offset": 210, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1716880370 + "hash": 2113224016 }, - "m_battlegroundZone": { + "m_ladderTable": { "type": "std::string", "id": 5, - "offset": 120, + "offset": 216, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1534567298 + "hash": 3225825807 }, - "m_cancelCooldownSeconds": { - "type": "int", + "m_matchActor": { + "type": "class SharedPointer", "id": 6, - "offset": 216, + "offset": 96, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1074662868 + "pointer": true, + "hash": 1730081852 }, - "m_maximumDisplayPoints": { - "type": "int", + "m_bPremium": { + "type": "bool", "id": 7, - "offset": 220, + "offset": 208, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 751410187 + "hash": 959881172 }, - "m_matchTimeSeconds": { - "type": "int", + "m_defaultLadder": { + "type": "class SharedPointer", "id": 8, - "offset": 224, + "offset": 248, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1560908229 + "pointer": true, + "hash": 2425504995 }, - "m_revealTimeSeconds": { - "type": "int", + "m_isBracketTournament": { + "type": "bool", "id": 9, - "offset": 228, + "offset": 265, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 258367543 + "hash": 1062809176 }, - "m_matchmakingList": { - "type": "class SharedPointer", + "m_persisted": { + "type": "bool", "id": 10, - "offset": 232, + "offset": 266, "flags": 7, - "container": "Vector", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2069645122 + "pointer": false, + "hash": 1002297414 }, - "m_unlockedPolymorphTags": { - "type": "std::string", + "m_penalizeMatchDeclines": { + "type": "bool", "id": 11, - "offset": 256, + "offset": 267, "flags": 7, - "container": "List", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 2024692009 + "hash": 623338303 }, - "m_lootWinner": { - "type": "std::string", + "m_hidePlayerInfo": { + "type": "bool", "id": 12, - "offset": 288, + "offset": 268, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1642288556 + "hash": 665001286 }, - "m_lootLoser": { + "m_pvpDuelModifiers": { "type": "std::string", "id": 13, - "offset": 320, + "offset": 272, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 2530546718 - }, - "m_lootTie": { + "hash": 1796488605 + } + } + }, + "1748154660": { + "name": "class ZoneTickEffectInfo", + "bases": [ + "GameEffectInfo", + "PropertyClass" + ], + "hash": 1748154660, + "properties": { + "m_effectName": { "type": "std::string", - "id": 14, - "offset": 352, - "flags": 7, + "id": 0, + "offset": 72, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2506425499 + "hash": 2029161513 }, - "m_pveMode": { + "m_tickOnAdd": { "type": "bool", - "id": 15, - "offset": 384, + "id": 1, + "offset": 104, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2142827875 + "hash": 663357284 }, - "m_defeatedPolyLockCount": { - "type": "int", - "id": 16, - "offset": 388, + "m_zoneEventName": { + "type": "std::string", + "id": 2, + "offset": 112, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1366197282 + "hash": 2601481434 }, - "m_lockSigilSpotOnDefeat": { - "type": "bool", - "id": 17, - "offset": 392, + "m_tickRateSec": { + "type": "float", + "id": 3, + "offset": 144, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 407313920 - } - } - }, - "52413390": { - "name": "class DoodleMapMap", - "bases": [ - "PropertyClass" - ], - "hash": 52413390, - "properties": { - "m_mapList": { - "type": "class DoodleMapPair", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2964081080 - } - } - }, - "429488423": { - "name": "class QuestListPage::DialogDataCacheEntry*", - "bases": [ - "PropertyClass" - ], - "hash": 429488423, - "properties": { - "m_dialog": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 440960800 + "hash": 1559681353 }, - "m_goalCount": { + "m_maxTicks": { "type": "int", - "id": 1, - "offset": 88, + "id": 4, + "offset": 148, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 774266758 + "hash": 155973918 } } }, - "429406503": { - "name": "class QuestListPage::DialogDataCacheEntry", + "1313679604": { + "name": "class ItemBundleTemplate", "bases": [ + "WizItemTemplate", + "ItemTemplate", + "GameObjectTemplate", + "CoreTemplate", "PropertyClass" ], - "hash": 429406503, + "hash": 1313679604, "properties": { - "m_dialog": { - "type": "class SharedPointer", + "m_behaviors": { + "type": "class BehaviorTemplate*", "id": 0, "offset": 72, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "Vector", + "dynamic": true, "singleton": false, "pointer": true, - "hash": 440960800 + "hash": 1197808594 }, - "m_goalCount": { - "type": "int", + "m_objectName": { + "type": "std::string", "id": 1, - "offset": 88, + "offset": 96, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 774266758 - } - } - }, - "1619757016": { - "name": "class CoreInfoTable", - "bases": [ - "PropertyClass" - ], - "hash": 1619757016, - "properties": { - "Name": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, + "hash": 2154940147 + }, + "m_templateID": { + "type": "unsigned int", + "id": 2, + "offset": 128, + "flags": 16777223, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3587174096 + "hash": 1286746870 }, - "Value": { - "type": "std::wstring", - "id": 1, - "offset": 104, + "m_visualID": { + "type": "unsigned int", + "id": 3, + "offset": 132, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1533522313 + "hash": 1118778894 }, - "Nodes": { - "type": "class SharedPointer", - "id": 2, - "offset": 136, + "m_adjectiveList": { + "type": "std::string", + "id": 4, + "offset": 248, "flags": 7, "container": "List", "dynamic": true, "singleton": false, - "pointer": true, - "hash": 1601731202 - } - } - }, - "2021472208": { - "name": "class CastleToursFavoritesBehaviorTemplate", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 2021472208, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, + "pointer": false, + "hash": 3195213318 + }, + "m_exemptFromAOI": { + "type": "bool", + "id": 5, + "offset": 240, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3130754092 - } - } - }, - "1619757011": { - "name": "class CoreInfoTable*", - "bases": [ - "PropertyClass" - ], - "hash": 1619757011, - "properties": { - "Name": { + "hash": 1457879059 + }, + "m_displayName": { "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, + "id": 6, + "offset": 168, + "flags": 8388615, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3587174096 + "hash": 2446900370 }, - "Value": { - "type": "std::wstring", - "id": 1, - "offset": 104, - "flags": 7, + "m_description": { + "type": "std::string", + "id": 7, + "offset": 136, + "flags": 8388615, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1533522313 + "hash": 1649374815 }, - "Nodes": { - "type": "class SharedPointer", - "id": 2, - "offset": 136, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1601731202 - } - } - }, - "55603180": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 55603180, - "properties": { - "m_addAtPointValue": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, + "m_nObjectType": { + "type": "enum ObjectType", + "id": 8, + "offset": 200, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1071217084 + "hash": 2118905880, + "enum_options": { + "OT_UNDEFINED": 0, + "OT_PLAYER": 1, + "OT_NPC": 2, + "OT_PROP": 3, + "OT_OBJECT": 4, + "OT_HOUSE": 5, + "OT_KEY": 6, + "OT_OLD_KEY": 7, + "OT_DEED": 8, + "OT_MAIL": 9, + "OT_RECIPE": 17, + "OT_EQUIP_HEAD": 10, + "OT_EQUIP_CHEST": 11, + "OT_EQUIP_LEGS": 12, + "OT_EQUIP_HANDS": 13, + "OT_EQUIP_FINGER": 14, + "OT_EQUIP_FEET": 15, + "OT_EQUIP_EAR": 16, + "OT_BUILDING_BLOCK": 18, + "OT_BUILDING_BLOCK_SOLID": 19, + "OT_GOLF": 20, + "OT_DOOR": 21, + "OT_PET": 22, + "OT_FABRIC": 23, + "OT_WINDOW": 24, + "OT_ROOF": 25, + "OT_HORSE": 26, + "OT_STRUCTURE": 27, + "OT_HOUSING_TEXTURE": 28, + "OT_PLANT": 29 + } }, - "m_removeAtPointValue": { - "type": "float", - "id": 1, - "offset": 76, - "flags": 7, + "m_sIcon": { + "type": "std::string", + "id": 9, + "offset": 208, + "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2112196961 + "hash": 2306259831 }, - "m_lifespan": { - "type": "std::string", - "id": 2, - "offset": 80, + "m_equipRequirements": { + "type": "class RequirementList*", + "id": 10, + "offset": 280, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 3042809453 - } - } - }, - "54937962": { - "name": "class ResourcePointerBase", - "bases": [ - "PropertyClass" - ], - "hash": 54937962, - "properties": { - "m_sAssetName": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 131103, + "pointer": true, + "hash": 2762617226 + }, + "m_purchaseRequirements": { + "type": "class RequirementList*", + "id": 11, + "offset": 288, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 2503711247 - } - } - }, - "429723869": { - "name": "class SharedPointer", - "bases": [ - "PathBehaviorTemplate::Action", - "PropertyClass" - ], - "hash": 429723869, - "properties": { - "m_nPathID": { - "type": "gid", - "id": 0, - "offset": 72, + "pointer": true, + "hash": 3174641793 + }, + "m_equipEffects": { + "type": "class GameEffectInfo*", + "id": 12, + "offset": 296, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 836628351 + }, + "m_baseCost": { + "type": "float", + "id": 13, + "offset": 312, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 214382368 + "hash": 1565352651 }, - "m_nNodeID": { - "type": "int", - "id": 1, - "offset": 80, + "m_creditsCost": { + "type": "float", + "id": 14, + "offset": 320, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 152152635, - "enum_options": { - "__DEFAULT": 4294967295 - } + "hash": 805514974 }, - "m_nPriority": { - "type": "int", - "id": 2, - "offset": 84, + "m_avatarInfo": { + "type": "class AvatarItemInfoBase*", + "id": 15, + "offset": 328, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, + "pointer": true, + "hash": 2627321299 + }, + "m_avatarFlags": { + "type": "std::string", + "id": 16, + "offset": 336, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, "pointer": false, - "hash": 1515251530, - "enum_options": { - "__DEFAULT": 100 - } + "hash": 2347762759 }, - "m_nChance": { + "m_itemLimit": { "type": "int", - "id": 3, - "offset": 88, + "id": 17, + "offset": 316, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1860748394, - "enum_options": { - "__DEFAULT": 50 - } - } - } - }, - "53745884": { - "name": "class SharedPointer", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 53745884, - "properties": { - "m_behaviorName": { + "hash": 1799746856 + }, + "m_holidayFlag": { "type": "std::string", - "id": 0, - "offset": 72, + "id": 18, + "offset": 352, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3130754092 - } - } - }, - "2022075216": { - "name": "class ClientHidePipsCinematicAction", - "bases": [ - "HidePipsCinematicAction", - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 2022075216, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, + "hash": 2994795359 + }, + "m_itemSetBonusTemplateID": { + "type": "unsigned int", + "id": 19, + "offset": 384, + "flags": 33554439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 + "hash": 1316835672 }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, + "m_numPrimaryColors": { + "type": "int", + "id": 20, + "offset": 428, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2285866132 + "hash": 981103872 }, - "m_newActorName": { - "type": "std::string", - "id": 2, - "offset": 120, + "m_numSecondaryColors": { + "type": "int", + "id": 21, + "offset": 432, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2029131039 - } - } - }, - "429553826": { - "name": "class SharedPointer", - "bases": [ - "CinematicAction", - "PropertyClass" - ], - "hash": 429553826, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, + "hash": 1310416868 + }, + "m_numPatterns": { + "type": "int", + "id": 22, + "offset": 436, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 + "hash": 953162171 }, - "m_camToReplace": { + "m_school": { "type": "std::string", - "id": 1, - "offset": 80, + "id": 23, + "offset": 392, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2286913643 + "hash": 2438566051 }, - "m_replaceWithCam": { - "type": "std::string", - "id": 2, - "offset": 112, + "m_arenaPointCost": { + "type": "int", + "id": 24, + "offset": 440, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2992754084 - } - } - }, - "1619990104": { - "name": "class DerbyAffectEffects*", - "bases": [ - "DerbyEffect", - "PropertyClass" - ], - "hash": 1619990104, - "properties": { - "m_buffType": { - "type": "enum DerbyTalentBuffType", - "id": 0, - "offset": 92, - "flags": 2097183, + "hash": 1819621796 + }, + "m_pvpCurrencyCost": { + "type": "int", + "id": 25, + "offset": 444, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1149251982, - "enum_options": { - "Buff": 0, - "Debuff": 1, - "Neither": 2 - } + "hash": 645595444 }, - "m_kTarget": { - "type": "enum DerbyTargetType", - "id": 1, - "offset": 96, - "flags": 2097159, + "m_pvpTourneyCurrencyCost": { + "type": "int", + "id": 26, + "offset": 448, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1807803351, - "enum_options": { - "kTargetInFront": 0, - "kTargetBehind": 1, - "kTargetFirst": 2, - "kTargetSelf": 3, - "kTargetAll": 4, - "kTargetLast": 5 - } + "hash": 517874954 }, - "m_nDuration": { + "m_rank": { "type": "int", - "id": 2, - "offset": 104, - "flags": 31, + "id": 27, + "offset": 424, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1110167982 + "hash": 219803942 }, - "m_effectID": { - "type": "unsigned int", - "id": 3, - "offset": 88, - "flags": 24, + "m_boyIconIndex": { + "type": "int", + "id": 28, + "offset": 452, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2347630439 + "hash": 802140453 }, - "m_imageFilename": { - "type": "std::string", - "id": 4, - "offset": 112, - "flags": 131103, + "m_girlIconIndex": { + "type": "int", + "id": 29, + "offset": 456, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2813328063 + "hash": 832706793 }, - "m_iconIndex": { - "type": "unsigned int", - "id": 5, - "offset": 144, - "flags": 31, + "m_leashOffsetOverride": { + "type": "class SharedPointer", + "id": 30, + "offset": 464, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1265133262 + "pointer": true, + "hash": 1692586788 }, - "m_soundOnActivate": { - "type": "std::string", - "id": 6, - "offset": 152, - "flags": 131103, + "m_rarity": { + "type": "enum RarityType", + "id": 31, + "offset": 460, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1956929714 + "hash": 2253792108, + "enum_options": { + "RT_COMMON": 0, + "RT_UNCOMMON": 1, + "RT_RARE": 2, + "RT_ULTRARARE": 3, + "RT_EPIC": 4 + } }, - "m_soundOnTarget": { - "type": "std::string", - "id": 7, - "offset": 184, - "flags": 131103, - "container": "Static", - "dynamic": false, + "m_bundleItems": { + "type": "gid", + "id": 32, + "offset": 480, + "flags": 33554439, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 3444214056 + "hash": 182029460 }, - "m_targetParticleEffect": { - "type": "std::string", - "id": 8, - "offset": 216, - "flags": 131103, - "container": "Static", - "dynamic": false, + "m_bundleFreeItems": { + "type": "gid", + "id": 33, + "offset": 496, + "flags": 33554439, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 3048234723 + "hash": 263220278 }, - "m_overheadMessage": { - "type": "std::string", - "id": 9, - "offset": 248, - "flags": 8388639, - "container": "Static", - "dynamic": false, + "m_bundleItemsToGrant": { + "type": "gid", + "id": 34, + "offset": 544, + "flags": 33554439, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 1701018190 + "hash": 1280974675 }, - "m_requirements": { - "type": "class RequirementList", - "id": 10, - "offset": 280, - "flags": 31, - "container": "Static", - "dynamic": false, + "m_featuredRewards": { + "type": "gid", + "id": 35, + "offset": 512, + "flags": 33554439, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 2840988582 + "hash": 1360288832 }, - "m_nNumBuffs": { - "type": "int", - "id": 11, - "offset": 376, - "flags": 31, + "m_acquireCondition": { + "type": "enum ItemBundleTemplate::AcquireConditionType", + "id": 36, + "offset": 528, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1860427310 + "hash": 2176833998, + "enum_options": { + "kReceiveAll": 0, + "kChooseOne": 1 + } }, - "m_nNumDebuffs": { - "type": "int", - "id": 12, - "offset": 380, - "flags": 31, + "m_bundleContentsType": { + "type": "enum ItemBundleTemplate::BundleContentsType", + "id": 37, + "offset": 532, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 637090007 - } - } - }, - "52486652": { - "name": "class EloConfig*", - "bases": [ - "PropertyClass" - ], - "hash": 52486652, - "properties": { - "m_defaultRatingsTable": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, + "hash": 2541051988, + "enum_options": { + "kHatRobeShoes": 0, + "kShowFirstItemInPortrait": 1, + "kHatRobeShoesWeaponMount": 2, + "kShowPortraitsConsecutively": 3 + } + }, + "m_bundleSavings": { + "type": "int", + "id": 38, + "offset": 536, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2295782328 - }, - "m_perLeagueRatingsTables": { - "type": "class SharedPointer", - "id": 1, - "offset": 88, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2644292192 + "pointer": false, + "hash": 2036928271 } } }, - "2021988860": { - "name": "class CrownShopSettings", + "468246473": { + "name": "class NullAction", "bases": [ + "PathBehaviorTemplate::Action", "PropertyClass" ], - "hash": 2021988860, + "hash": 468246473, "properties": { - "m_saleFilter": { - "type": "bool", + "m_nPathID": { + "type": "gid", "id": 0, "offset": 72, "flags": 7, @@ -589384,424 +489279,458 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 1462249118 + "hash": 214382368 }, - "m_newUsableFilter": { - "type": "bool", + "m_nNodeID": { + "type": "int", "id": 1, - "offset": 73, + "offset": 80, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1923088319 + "hash": 152152635, + "enum_options": { + "__DEFAULT": 4294967295 + } }, - "m_buttonView": { - "type": "bool", + "m_nPriority": { + "type": "int", "id": 2, - "offset": 74, + "offset": 84, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1893157642 + "hash": 1515251530, + "enum_options": { + "__DEFAULT": 100 + } }, - "m_theBattleReadyItemTemplateID": { - "type": "unsigned int", + "m_nChance": { + "type": "int", "id": 3, - "offset": 76, + "offset": 88, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 494853047 + "hash": 1860748394, + "enum_options": { + "__DEFAULT": 50 + } } } }, - "430933174": { - "name": "class PersonaGoalTemplate", + "1748894102": { + "name": "class ClientPetSnackItem", "bases": [ - "GoalTemplate", - "CoreTemplate", + "WizClientObjectItem", + "ClientObject", + "CoreObject", "PropertyClass" ], - "hash": 430933174, + "hash": 1748894102, "properties": { - "m_behaviors": { - "type": "class BehaviorTemplate*", + "m_inactiveBehaviors": { + "type": "class SharedPointer", "id": 0, - "offset": 72, - "flags": 7, + "offset": 224, + "flags": 31, "container": "Vector", "dynamic": true, "singleton": false, "pointer": true, - "hash": 1197808594 + "hash": 1850812559 }, - "m_goalName": { - "type": "std::string", + "m_globalID.m_full": { + "type": "unsigned __int64", "id": 1, - "offset": 104, - "flags": 7, + "offset": 72, + "flags": 16777247, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1521627807 + "hash": 2312465444 }, - "m_goalNameID": { - "type": "unsigned int", + "m_permID": { + "type": "unsigned __int64", "id": 2, - "offset": 496, - "flags": 7, + "offset": 80, + "flags": 16777247, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 403158846 + "hash": 1298909658 }, - "m_goalTitle": { - "type": "std::string", + "m_location": { + "type": "class Vector3D", "id": 3, - "offset": 136, - "flags": 8388615, + "offset": 168, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2291910240 + "hash": 2239683611 }, - "m_goalUnderway": { - "type": "std::string", + "m_orientation": { + "type": "class Vector3D", "id": 4, - "offset": 168, - "flags": 8388615, + "offset": 180, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3153144269 + "hash": 2344058766 }, - "m_hyperlink": { - "type": "std::string", + "m_fScale": { + "type": "float", "id": 5, - "offset": 200, - "flags": 8388615, + "offset": 196, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2887798993 + "hash": 503137701 }, - "m_completeText": { - "type": "std::string", + "m_templateID.m_full": { + "type": "unsigned __int64", "id": 6, - "offset": 232, - "flags": 8388615, + "offset": 96, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2767458393 + "hash": 633907631 }, - "m_completeResults": { - "type": "class ResultList*", + "m_debugName": { + "type": "std::string", "id": 7, - "offset": 440, - "flags": 7, + "offset": 104, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1964258099 + "pointer": false, + "hash": 3553984419 }, - "m_goalRequirements": { - "type": "class RequirementList*", + "m_displayKey": { + "type": "std::string", "id": 8, - "offset": 448, - "flags": 7, + "offset": 136, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2979967145 + "pointer": false, + "hash": 3023276954 }, - "m_tallyCounter": { - "type": "class TallyCounterTemplate*", + "m_zoneTagID": { + "type": "unsigned int", "id": 9, - "offset": 456, - "flags": 7, + "offset": 344, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1884546193 + "pointer": false, + "hash": 965291410 }, - "m_locationName": { - "type": "std::string", + "m_speedMultiplier": { + "type": "short", "id": 10, - "offset": 272, - "flags": 8388615, + "offset": 192, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1824218389 + "hash": 123130076 }, - "m_displayImage1": { - "type": "std::string", + "m_nMobileID": { + "type": "unsigned short", "id": 11, - "offset": 304, - "flags": 131079, + "offset": 194, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1959572133 + "hash": 1054318939 }, - "m_displayImage2": { - "type": "std::string", + "m_characterId": { + "type": "gid", "id": 12, - "offset": 336, - "flags": 131079, + "offset": 440, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1959572134 + "hash": 210498418 }, - "m_clientTags": { - "type": "std::string", + "m_primaryColor": { + "type": "int", "id": 13, - "offset": 368, - "flags": 7, - "container": "List", - "dynamic": true, + "offset": 568, + "flags": 31, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 2319030025 + "hash": 900965981 }, - "m_genericEvents": { - "type": "std::string", + "m_pattern": { + "type": "int", "id": 14, - "offset": 384, - "flags": 7, - "container": "List", - "dynamic": true, + "offset": 572, + "flags": 31, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 3466670829 + "hash": 1337683384 }, - "m_autoQualify": { - "type": "bool", + "m_secondaryColor": { + "type": "int", "id": 15, - "offset": 400, - "flags": 7, + "offset": 576, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1878907431 + "hash": 1616550081 }, - "m_autoComplete": { - "type": "bool", + "m_displayID": { + "type": "gid", "id": 16, - "offset": 401, - "flags": 7, + "offset": 584, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1302545445 + "hash": 1022427803 }, - "m_destinationZone": { - "type": "std::string", + "m_itemFlags": { + "type": "unsigned int", "id": 17, - "offset": 408, - "flags": 268435463, + "offset": 592, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2605356153, - "enum_options": { - "__BASECLASS": "ZoneData" - } + "hash": 2004128457 }, - "m_dialogList": { - "type": "class ActorDialogListBase*", + "m_quantity": { + "type": "int", "id": 18, - "offset": 264, - "flags": 7, + "offset": 608, + "flags": 27, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1909154969 - }, - "m_goalType": { - "type": "enum GoalTemplate::GOAL_TYPE", - "id": 19, - "offset": 96, - "flags": 2097159, + "pointer": false, + "hash": 169215289 + } + } + }, + "907166026": { + "name": "class AutobotTiming*", + "bases": [ + "PropertyClass" + ], + "hash": 907166026, + "properties": {} + }, + "1315106457": { + "name": "class WhirlyBurlyPlanningDataAI", + "bases": [ + "PropertyClass" + ], + "hash": 1315106457, + "properties": { + "m_team": { + "type": "unsigned char", + "id": 0, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1488021149, - "enum_options": { - "GOAL_TYPE_UNKNOWN": 0, - "GOAL_TYPE_BOUNTY": 1, - "GOAL_TYPE_BOUNTYCOLLECT": 2, - "GOAL_TYPE_SCAVENGE": 3, - "GOAL_TYPE_PERSONA": 4, - "GOAL_TYPE_WAYPOINT": 5, - "GOAL_TYPE_SCAVENGEFAKE": 6, - "GOAL_TYPE_ACHIEVERANK": 7, - "GOAL_TYPE_USAGE": 8, - "GOAL_TYPE_COMPLETEQUEST": 9, - "GOAL_TYPE_SOCIARANK": 10, - "GOAL_TYPE_SOCIACURRENCY": 11, - "GOAL_TYPE_SOCIAMINIGAME": 12, - "GOAL_TYPE_SOCIAGIVEITEM": 13, - "GOAL_TYPE_SOCIAGETITEM": 14, - "GOAL_TYPE_COLLECTAFTERBOUNTY": 15, - "GOAL_TYPE_ENCOUNTER_WAYPOINT_FOREACH": 16 - } + "hash": 857479191 }, - "m_noQuestHelper": { - "type": "bool", - "id": 20, - "offset": 500, + "m_passport": { + "type": "unsigned int", + "id": 1, + "offset": 76, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 578010882, - "enum_options": { - "__DEFAULT": 0 - } + "hash": 1362521513 }, - "m_petOnlyQuest": { - "type": "bool", - "id": 21, - "offset": 501, + "m_unitTypesList": { + "type": "unsigned char", + "id": 2, + "offset": 80, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 679359344, - "enum_options": { - "__DEFAULT": 0 - } + "hash": 2643134017 }, - "m_activateResults": { - "type": "class ResultList*", - "id": 22, - "offset": 504, + "m_cardsUsedList": { + "type": "unsigned int", + "id": 3, + "offset": 96, "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 711045287 + } + } + }, + "37091348": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 37091348, + "properties": { + "m_subscriberOnlyItems": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1721964880 + } + } + }, + "906146900": { + "name": "class IgnoreEntryData*", + "bases": [ + "PropertyClass" + ], + "hash": 906146900, + "properties": { + "m_ignoreName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3790153995 + "pointer": false, + "hash": 2203859488 }, - "m_hideGoalFloatyText": { - "type": "bool", - "id": 23, - "offset": 512, - "flags": 7, + "m_characterID": { + "type": "gid", + "id": 1, + "offset": 104, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1919383204, - "enum_options": { - "__DEFAULT": 0 - } + "hash": 210498386 }, - "m_personaName": { - "type": "std::string", - "id": 24, - "offset": 520, - "flags": 268435463, + "m_gameObjectID": { + "type": "gid", + "id": 2, + "offset": 112, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2514452244, - "enum_options": { - "__BASECLASS": "Persona" - } + "hash": 23229750 }, - "m_usePatron": { - "type": "bool", - "id": 25, - "offset": 552, - "flags": 7, + "m_platformType": { + "type": "int", + "id": 3, + "offset": 120, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 853266164 + "hash": 1300871393 } } }, - "1680441227": { - "name": "class std::list >", - "bases": [], - "hash": 1680441227, - "properties": {} - }, - "54438929": { - "name": "class CombatResultListObj*", + "34903389": { + "name": "class HousingPaletteBehavior", "bases": [ + "BehaviorInstance", "PropertyClass" ], - "hash": 54438929, + "hash": 34903389, "properties": { - "m_resultList": { - "type": "class CombatResult", + "m_behaviorTemplateNameID": { + "type": "unsigned int", "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 2128076658 - }, - "m_duelID.m_full": { - "type": "unsigned __int64", - "id": 1, - "offset": 88, - "flags": 7, + "hash": 223437287 + } + } + }, + "469934542": { + "name": "class SharedPointer", + "bases": [ + "ObstacleCoursePendulumBehavior", + "ObstacleCourseObstacleBehavior", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 469934542, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1024980477 + "hash": 223437287 } } }, - "1657910097": { - "name": "class Vector3D", - "bases": [], - "hash": 1657910097, - "properties": {} - }, - "2024304058": { - "name": "class SharedPointer", + "1749033129": { + "name": "class DerbyModifyCheerCost", "bases": [ "DerbyEffect", "PropertyClass" ], - "hash": 2024304058, + "hash": 1749033129, "properties": { "m_buffType": { "type": "enum DerbyTalentBuffType", @@ -589936,131 +489865,272 @@ "singleton": false, "pointer": false, "hash": 2840988582 + }, + "m_costMap": { + "type": "class TerrainCheerCostMap", + "id": 11, + "offset": 376, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1929931701 } } }, - "431077836": { - "name": "enum CurrencyTemplate::CurrencyTypes", - "bases": [], - "hash": 431077836, - "properties": {} - }, - "1640777701": { - "name": "class PolymorphBattlegroundsBehaviorTemplate*", + "469660068": { + "name": "class SharedPointer", "bases": [ - "BehaviorTemplate", + "ServiceOptionBase", "PropertyClass" ], - "hash": 1640777701, + "hash": 469660068, "properties": { - "m_behaviorName": { + "m_serviceName": { "type": "std::string", "id": 0, "offset": 72, - "flags": 7, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3130754092 + "hash": 2206028813 }, - "m_maxTempStartingPips": { - "type": "int", + "m_iconKey": { + "type": "std::string", "id": 1, - "offset": 120, - "flags": 7, + "offset": 168, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 997576222 + "hash": 2457138637 }, - "m_maxTempStartingPowerPips": { - "type": "int", + "m_displayKey": { + "type": "std::string", "id": 2, - "offset": 124, - "flags": 7, + "offset": 104, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 31848011 + "hash": 3023276954 }, - "m_maxHandSize": { - "type": "int", + "m_serviceIndex": { + "type": "unsigned int", "id": 3, - "offset": 128, - "flags": 7, + "offset": 204, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1925169782 + "hash": 2103126710 }, - "m_pointValue": { - "type": "int", + "m_forceInteract": { + "type": "bool", "id": 4, - "offset": 132, - "flags": 7, + "offset": 200, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 61258881 + "hash": 1705789564 }, - "m_battleCardsForSale": { - "type": "class SharedPointer", + "m_questTitle": { + "type": "std::string", "id": 5, - "offset": 136, - "flags": 7, - "container": "List", - "dynamic": true, + "offset": 256, + "flags": 31, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2232728892 + "pointer": false, + "hash": 1805465583 }, - "m_ratingInfo": { - "type": "class SharedPointer", + "m_questName": { + "type": "std::string", "id": 6, - "offset": 152, - "flags": 7, - "container": "Vector", - "dynamic": true, + "offset": 224, + "flags": 31, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2739486523 + "pointer": false, + "hash": 1702112846 }, - "m_levelUpIngredients": { - "type": "class Ingredient*", + "m_isMainline": { + "type": "bool", "id": 7, - "offset": 176, - "flags": 7, - "container": "List", - "dynamic": true, + "offset": 344, + "flags": 31, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 361958771 + "pointer": false, + "hash": 1637584380 + } + } + }, + "1315900558": { + "name": "class MaxManaLootInfo*", + "bases": [ + "LootInfo", + "LootInfoBase", + "PropertyClass" + ], + "hash": 1315900558, + "properties": { + "m_lootType": { + "type": "enum LootInfo::LOOT_TYPE", + "id": 0, + "offset": 72, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1591891442, + "enum_options": { + "LOOT_TYPE_NONE": 0, + "LOOT_TYPE_GOLD": 1, + "LOOT_TYPE_MANA": 2, + "LOOT_TYPE_ITEM": 3, + "LOOT_TYPE_TREASURE_CARD": 4, + "LOOT_TYPE_MAGIC_XP": 5, + "LOOT_TYPE_ADD_SPELL": 6, + "LOOT_TYPE_MAX_HEALTH": 7, + "LOOT_TYPE_MAX_GOLD": 8, + "LOOT_TYPE_MAX_MANA": 9, + "LOOT_TYPE_MAX_POTION": 10, + "LOOT_TYPE_TRAINING_POINTS": 11, + "LOOT_TYPE_RECIPE": 12, + "LOOT_TYPE_CRAFTING_SLOT": 13, + "LOOT_TYPE_REAGENT": 14, + "LOOT_TYPE_PETSNACK": 15, + "LOOT_TYPE_GARDENING_XP": 16, + "LOOT_TYPE_PET_XP": 17, + "LOOT_TYPE_TREASURE_TABLE": 18, + "LOOT_TYPE_ARENA_POINTS": 19, + "LOOT_TYPE_ARENA_BONUS_POINTS": 20, + "LOOT_TYPE_GROUP": 21, + "LOOT_TYPE_FISHING_XP": 22, + "LOOT_TYPE_EVENT_CURRENCY_1": 24, + "LOOT_TYPE_EVENT_CURRENCY_2": 25, + "LOOT_TYPE_PVP_CURRENCY": 26, + "LOOT_TYPE_PVP_CURRENCY_BONUS": 27, + "LOOT_TYPE_PVP_TOURNEY_CURRENCY": 28, + "LOOT_TYPE_PVP_TOURNEY_CURRENCY_BONUS": 29, + "LOOT_TYPE_FURNITURE_ESSENCE": 30 + } }, - "m_levelUpCost": { + "m_manaToAdd": { "type": "int", - "id": 8, - "offset": 192, + "id": 1, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1303804451 + } + } + }, + "469325591": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 469325591, + "properties": { + "m_name": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1717359772 + }, + "m_change": { + "type": "int", + "id": 1, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 320376832 + }, + "m_actualChange": { + "type": "unsigned int", + "id": 2, + "offset": 108, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 448133229 + } + } + }, + "907166031": { + "name": "class AutobotTiming", + "bases": [ + "PropertyClass" + ], + "hash": 907166031, + "properties": {} + }, + "37883294": { + "name": "class SharedPointer", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 37883294, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1833544304 + "hash": 3130754092 + }, + "m_expansions": { + "type": "class SharedPointer", + "id": 1, + "offset": 120, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 3762221063 } } }, - "2023559936": { - "name": "class ConditionalSpellEffectRequirement*", + "37594247": { + "name": "class ReqHasEntry", "bases": [ "Requirement", "PropertyClass" ], - "hash": 2023559936, + "hash": 37594247, "properties": { "m_applyNOT": { "type": "bool", @@ -590092,239 +490162,222 @@ "__DEFAULT": "ROP_AND" } }, - "m_targetType": { - "type": "enum ConditionalSpellEffectRequirement::RequirementTarget", - "id": 2, - "offset": 80, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2547737902, - "enum_options": { - "RT_Caster": 0, - "RT_Target": 1 - } - } - } - }, - "1631002337": { - "name": "class SharedPointer", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 1631002337, - "properties": { - "m_behaviorName": { + "m_entryName": { "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - }, - "m_nHeadHandsModel": { - "type": "int", - "id": 1, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 998398489 - }, - "m_nHairModel": { - "type": "int", "id": 2, - "offset": 124, + "offset": 80, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1415899069 + "hash": 2055270734 }, - "m_nHatModel": { - "type": "int", + "m_displayName": { + "type": "std::string", "id": 3, - "offset": 128, - "flags": 7, + "offset": 112, + "flags": 287, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1927542998 + "hash": 2446900370 }, - "m_nTorsoModel": { - "type": "int", + "m_isQuestRegistry": { + "type": "bool", "id": 4, - "offset": 132, + "offset": 144, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1482459696 + "hash": 1388902362 }, - "m_nFeetModel": { - "type": "int", + "m_questName": { + "type": "std::string", "id": 5, - "offset": 136, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1832171389 - }, - "m_nWandModel": { - "type": "int", - "id": 6, - "offset": 140, - "flags": 7, + "offset": 152, + "flags": 268435463, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 132808131 - }, - "m_nSkinColor": { - "type": "int", - "id": 7, - "offset": 144, + "hash": 1702112846, + "enum_options": { + "__BASECLASS": "QuestTemplate" + } + } + } + }, + "1749405138": { + "name": "class InclusiveRange*", + "bases": [ + "PropertyClass" + ], + "hash": 1749405138, + "properties": { + "m_start": { + "type": "unsigned int", + "id": 0, + "offset": 72, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 105291612 + "hash": 1021505883 }, - "m_nSkinDecal": { - "type": "int", - "id": 8, - "offset": 148, + "m_stop": { + "type": "unsigned int", + "id": 1, + "offset": 76, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 106107894 - }, - "m_nHairColor": { - "type": "int", - "id": 9, - "offset": 152, + "hash": 431263059 + } + } + }, + "1316414526": { + "name": "enum DailyQuestReward::RewardTypes", + "bases": [], + "hash": 1316414526, + "properties": {} + }, + "1749405042": { + "name": "class InclusiveRange", + "bases": [ + "PropertyClass" + ], + "hash": 1749405042, + "properties": { + "m_start": { + "type": "unsigned int", + "id": 0, + "offset": 72, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1404048907 + "hash": 1021505883 }, - "m_nHatColor": { - "type": "int", - "id": 10, - "offset": 156, + "m_stop": { + "type": "unsigned int", + "id": 1, + "offset": 76, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1915692836 - }, - "m_nHatDecal": { - "type": "int", - "id": 11, - "offset": 160, + "hash": 431263059 + } + } + }, + "469833316": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 469833316, + "properties": { + "m_categories": { + "type": "class SharedPointer", + "id": 0, + "offset": 80, "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1916509118 - }, - "m_nTorsoColor": { - "type": "int", - "id": 12, - "offset": 164, + "container": "List", + "dynamic": true, + "singleton": true, + "pointer": true, + "hash": 2474674612 + } + } + }, + "909837806": { + "name": "class ClientSpellCardAttachmentCinematicAction*", + "bases": [ + "SpellCardAttachmentCinematicAction", + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 909837806, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1470609534 + "hash": 2237098605 }, - "m_nTorsoDecal": { - "type": "int", - "id": 13, - "offset": 168, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1471425816 + "hash": 2285866132 }, - "m_nTorsoDecal2": { - "type": "int", - "id": 14, - "offset": 172, + "m_nodeName": { + "type": "std::string", + "id": 2, + "offset": 120, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1309581098 + "hash": 3607089954 }, - "m_nFeetColor": { - "type": "int", - "id": 15, - "offset": 176, + "m_offset": { + "type": "class Vector3D", + "id": 3, + "offset": 152, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1820321227 + "hash": 2445636425 }, - "m_nFeetDecal": { - "type": "int", - "id": 16, - "offset": 180, + "m_rotation": { + "type": "class Vector3D", + "id": 4, + "offset": 164, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1821137509 - }, - "m_eGender": { - "type": "enum eGender", - "id": 17, - "offset": 184, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2776344943, - "enum_options": { - "Male": 1, - "Female": 0, - "Neutral": 2 - } - }, + "hash": 3065089042 + } + } + }, + "1316124017": { + "name": "class CharacterRaceTable*", + "bases": [ + "PropertyClass" + ], + "hash": 1316124017, + "properties": { "m_eRace": { "type": "enum eRace", - "id": 18, - "offset": 188, - "flags": 2097159, + "id": 0, + "offset": 72, + "flags": 136314887, "container": "Static", "dynamic": false, "singleton": false, @@ -593110,29 +493163,45349 @@ "PP_Fairy_Fire": 1847789544, "MNT_Mustang_B": 1448793691, "PP_FireElfMyth": 1933609060, - "MNT_KT-BoatRide": 1560860110 + "MNT_KT-BoatRide": 1560860110, + "MNT_ShadowMagic": 2095978357, + "MNT_MardiGrasFloat_A": 1740674432, + "PP_ChineseNYSnake": 988201940, + "MNT_AnubisDog": 1995079956, + "PP_ShadowImp_A": 1604849432, + "PP_ShadowImp_B": 1604849438, + "PP_ShadowImp_C": 1604849436, + "MNT_ShadowMagic_B": 2093870965, + "MNT_ShadowMagic_C": 2093805429, + "Guest_KT_SE_Tritops_Warrior_I_01": 97516901, + "Guest_KT_SE_DS_Draconian_Model_01": 1916095079, + "Guest_KT_SE_Beetle_Scarab_C_01_L50": 1064004307, + "Guest_KT_SE_Roach_Warrior_C_03": 1872574203, + "Guest_KT_SE_Roach_Warrior_C_04": 1871918843, + "Guest_KT_SE_Roach_Warrior_C_05": 1871787771, + "Guest_KT_SE_Beetle_Scarab_C_01": 1353410759, + "Guest_KT_SE_Mander_Citizen_B_01_L50": 2044509396, + "Guest_KT_SE_Mander_CitizenF_B_01_L50": 164327682, + "Guest_KT_SE_Treant_Tormented_A_01": 1359800879, + "Guest_KT_SE_Treant_Base_A_01": 765512948, + "Guest_KT_SE_Mander_Citizen_F_D_05": 171244620, + "Guest_KT_SE_Mander_CitizenF_D_01": 163791037, + "Guest_KT_SE_Mander_CitizenF_D_02": 298008765, + "Guest_KT_SE_Mander_CitizenF_D_03": 432226493, + "Guest_KT_SE_Mander_CitizenF_D_04": 566444221, + "Guest_KT_SE_Mander_MummyF_A_01": 964349080, + "Guest_KT_SE_Mander_MummyF_A_02": 964480152, + "Guest_KT_SE_MC_Wraith_Model_01": 1101442118, + "Guest_KT_SE_Mander_CitizenF_B_02": 298000573, + "MNT_Wheelbarrow": 614248817, + "MNT_StubbornLlama": 221089074 + } + }, + "m_characterTables": { + "type": "class CharacterElementTable", + "id": 1, + "offset": 80, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1801114527 + }, + "m_defaultTable": { + "type": "class CharacterElementTable", + "id": 2, + "offset": 96, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1709886308 + }, + "m_commonTable": { + "type": "class CommonElementTable", + "id": 3, + "offset": 888, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1709304448 + }, + "m_raceAnimationSoundData": { + "type": "class SharedPointer", + "id": 4, + "offset": 984, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1474423978 + }, + "m_animationEventList": { + "type": "class SharedPointer", + "id": 5, + "offset": 1000, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2858101335 + } + } + }, + "908701415": { + "name": "class CastleBlocksBehavior*", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 908701415, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + } + } + }, + "37911382": { + "name": "class SharedPointer", + "bases": [ + "CinematicActorTemplate", + "CinematicDefTemplate", + "CoreTemplate", + "PropertyClass" + ], + "hash": 37911382, + "properties": { + "m_behaviors": { + "type": "class BehaviorTemplate*", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1197808594 + }, + "m_nifFile": { + "type": "std::string", + "id": 1, + "offset": 136, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2694762008 + }, + "m_delay": { + "type": "double", + "id": 2, + "offset": 168, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2689597116 + }, + "m_cinematicName": { + "type": "std::string", + "id": 3, + "offset": 96, + "flags": 134217735, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2611527497 + }, + "m_completeEvents": { + "type": "class CinematicEventInfo*", + "id": 4, + "offset": 272, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2945338320 + }, + "m_stateChangeEvents": { + "type": "class CinematicEventInfo*", + "id": 5, + "offset": 304, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1874505374 + }, + "m_stateInteractions": { + "type": "class CinematicInteractInfo*", + "id": 6, + "offset": 336, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1949887389 + }, + "m_targetGameState": { + "type": "std::string", + "id": 7, + "offset": 176, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3607550909 + }, + "m_actorStateSet": { + "type": "std::string", + "id": 8, + "offset": 208, + "flags": 268435463, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1765258049, + "enum_options": { + "__BASECLASS": "ObjStateSet" + } + }, + "m_rootAsset": { + "type": "std::string", + "id": 9, + "offset": 240, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3506101791 + }, + "m_dialogList": { + "type": "class ActorDialogList*", + "id": 10, + "offset": 368, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2035504282 + } + } + }, + "908701391": { + "name": "class CastleBlocksBehavior", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 908701391, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + } + } + }, + "1749905795": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1749905795, + "properties": { + "m_promoRewards": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 3146833727 + } + } + }, + "471828599": { + "name": "class PulseEffectTemplate*", + "bases": [ + "GameEffectTemplate", + "PropertyClass" + ], + "hash": 471828599, + "properties": { + "m_effectName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2029161513 + }, + "m_effectCategory": { + "type": "std::string", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1852673222 + }, + "m_sortOrder": { + "type": "int", + "id": 2, + "offset": 148, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1411218206 + }, + "m_duration": { + "type": "double", + "id": 3, + "offset": 192, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2727932435 + }, + "m_stackingCategories": { + "type": "std::string", + "id": 4, + "offset": 160, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1774497525 + }, + "m_isPersistent": { + "type": "bool", + "id": 5, + "offset": 153, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 923861920 + }, + "m_bIsOnPet": { + "type": "bool", + "id": 6, + "offset": 154, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 522593303 + }, + "m_isPublic": { + "type": "bool", + "id": 7, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1728439822 + }, + "m_visualEffectAddName": { + "type": "std::string", + "id": 8, + "offset": 200, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3382086694 + }, + "m_visualEffectRemoveName": { + "type": "std::string", + "id": 9, + "offset": 232, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1541697323 + }, + "m_onAddFunctorName": { + "type": "std::string", + "id": 10, + "offset": 280, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1561843107 + }, + "m_onRemoveFunctorName": { + "type": "std::string", + "id": 11, + "offset": 312, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2559017864 + }, + "m_stackingRule": { + "type": "enum STACKING_RULE", + "id": 12, + "offset": 144, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 431568889, + "enum_options": { + "STACKING_ALLOWED": 0, + "STACKING_NOSTACK": 1, + "STACKING_REPLACE": 2 + } + }, + "m_pulsePeriod": { + "type": "double", + "id": 13, + "offset": 360, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3960618585 + }, + "m_pulseEventName": { + "type": "std::string", + "id": 14, + "offset": 368, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1858926599 + } + } + }, + "1316505982": { + "name": "class EquivalentItemBehavior*", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1316505982, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + } + } + }, + "1749612496": { + "name": "class WinAnimScaleTime*", + "bases": [ + "WinAnimScale", + "WindowAnimation", + "PropertyClass" + ], + "hash": 1749612496, + "properties": { + "m_bUseDeepCopy": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 433380635 + }, + "m_scale": { + "type": "float", + "id": 1, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 899693439 + }, + "m_fTimeTotal": { + "type": "float", + "id": 2, + "offset": 96, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 661225456 + }, + "m_fTimeRemaining": { + "type": "float", + "id": 3, + "offset": 100, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1591443014 + } + } + }, + "470374064": { + "name": "class AddCameraMappingCinematicAction*", + "bases": [ + "CinematicAction", + "PropertyClass" + ], + "hash": 470374064, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_camToReplace": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2286913643 + }, + "m_replaceWithCam": { + "type": "std::string", + "id": 2, + "offset": 112, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2992754084 + } + } + }, + "1316498384": { + "name": "class ContainerEffectTemplate*", + "bases": [ + "GameEffectTemplate", + "PropertyClass" + ], + "hash": 1316498384, + "properties": { + "m_effectName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2029161513 + }, + "m_effectCategory": { + "type": "std::string", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1852673222 + }, + "m_sortOrder": { + "type": "int", + "id": 2, + "offset": 148, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1411218206 + }, + "m_duration": { + "type": "double", + "id": 3, + "offset": 192, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2727932435 + }, + "m_stackingCategories": { + "type": "std::string", + "id": 4, + "offset": 160, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1774497525 + }, + "m_isPersistent": { + "type": "bool", + "id": 5, + "offset": 153, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 923861920 + }, + "m_bIsOnPet": { + "type": "bool", + "id": 6, + "offset": 154, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 522593303 + }, + "m_isPublic": { + "type": "bool", + "id": 7, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1728439822 + }, + "m_visualEffectAddName": { + "type": "std::string", + "id": 8, + "offset": 200, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3382086694 + }, + "m_visualEffectRemoveName": { + "type": "std::string", + "id": 9, + "offset": 232, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1541697323 + }, + "m_onAddFunctorName": { + "type": "std::string", + "id": 10, + "offset": 280, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1561843107 + }, + "m_onRemoveFunctorName": { + "type": "std::string", + "id": 11, + "offset": 312, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2559017864 + }, + "m_stackingRule": { + "type": "enum STACKING_RULE", + "id": 12, + "offset": 144, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 431568889, + "enum_options": { + "STACKING_ALLOWED": 0, + "STACKING_NOSTACK": 1, + "STACKING_REPLACE": 2 + } + }, + "m_startReqs": { + "type": "class SharedPointer", + "id": 13, + "offset": 360, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3147529602 + }, + "m_containerEffects": { + "type": "class SharedPointer", + "id": 14, + "offset": 376, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 957354392 + }, + "m_accompanyID": { + "type": "unsigned int", + "id": 15, + "offset": 392, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1462123093 + } + } + }, + "43516137": { + "name": "class SharedPointer", + "bases": [ + "StopBacklashRotationEffectCinematicAction", + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 43516137, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + } + } + }, + "1749585459": { + "name": "class ItemTemplate*", + "bases": [ + "GameObjectTemplate", + "CoreTemplate", + "PropertyClass" + ], + "hash": 1749585459, + "properties": { + "m_behaviors": { + "type": "class BehaviorTemplate*", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1197808594 + }, + "m_objectName": { + "type": "std::string", + "id": 1, + "offset": 96, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2154940147 + }, + "m_templateID": { + "type": "unsigned int", + "id": 2, + "offset": 128, + "flags": 16777223, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1286746870 + }, + "m_visualID": { + "type": "unsigned int", + "id": 3, + "offset": 132, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1118778894 + }, + "m_adjectiveList": { + "type": "std::string", + "id": 4, + "offset": 248, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 3195213318 + }, + "m_exemptFromAOI": { + "type": "bool", + "id": 5, + "offset": 240, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1457879059 + }, + "m_displayName": { + "type": "std::string", + "id": 6, + "offset": 168, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2446900370 + }, + "m_description": { + "type": "std::string", + "id": 7, + "offset": 136, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1649374815 + }, + "m_nObjectType": { + "type": "enum ObjectType", + "id": 8, + "offset": 200, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2118905880, + "enum_options": { + "OT_UNDEFINED": 0, + "OT_PLAYER": 1, + "OT_NPC": 2, + "OT_PROP": 3, + "OT_OBJECT": 4, + "OT_HOUSE": 5, + "OT_KEY": 6, + "OT_OLD_KEY": 7, + "OT_DEED": 8, + "OT_MAIL": 9, + "OT_RECIPE": 17, + "OT_EQUIP_HEAD": 10, + "OT_EQUIP_CHEST": 11, + "OT_EQUIP_LEGS": 12, + "OT_EQUIP_HANDS": 13, + "OT_EQUIP_FINGER": 14, + "OT_EQUIP_FEET": 15, + "OT_EQUIP_EAR": 16, + "OT_BUILDING_BLOCK": 18, + "OT_BUILDING_BLOCK_SOLID": 19, + "OT_GOLF": 20, + "OT_DOOR": 21, + "OT_PET": 22, + "OT_FABRIC": 23, + "OT_WINDOW": 24, + "OT_ROOF": 25, + "OT_HORSE": 26, + "OT_STRUCTURE": 27, + "OT_HOUSING_TEXTURE": 28, + "OT_PLANT": 29 + } + }, + "m_sIcon": { + "type": "std::string", + "id": 9, + "offset": 208, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306259831 + }, + "m_equipRequirements": { + "type": "class RequirementList*", + "id": 10, + "offset": 280, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2762617226 + }, + "m_purchaseRequirements": { + "type": "class RequirementList*", + "id": 11, + "offset": 288, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3174641793 + }, + "m_equipEffects": { + "type": "class GameEffectInfo*", + "id": 12, + "offset": 296, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 836628351 + }, + "m_baseCost": { + "type": "float", + "id": 13, + "offset": 312, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1565352651 + }, + "m_creditsCost": { + "type": "float", + "id": 14, + "offset": 320, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 805514974 + }, + "m_avatarInfo": { + "type": "class AvatarItemInfoBase*", + "id": 15, + "offset": 328, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2627321299 + }, + "m_avatarFlags": { + "type": "std::string", + "id": 16, + "offset": 336, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2347762759 + }, + "m_itemLimit": { + "type": "int", + "id": 17, + "offset": 316, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1799746856 + }, + "m_holidayFlag": { + "type": "std::string", + "id": 18, + "offset": 352, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2994795359 + }, + "m_itemSetBonusTemplateID": { + "type": "unsigned int", + "id": 19, + "offset": 384, + "flags": 33554439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1316835672 + } + } + }, + "909451343": { + "name": "class SharedPointer", + "bases": [ + "PositionalSoundBehavior", + "SoundBehavior", + "AreaBehavior", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 909451343, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_radius": { + "type": "float", + "id": 1, + "offset": 116, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 989410271 + }, + "m_category": { + "type": "enum AudioCategory", + "id": 2, + "offset": 124, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2951251982, + "enum_options": { + "AudioCategory_Irrelevent": 0, + "AudioCategory_Accoustic": 1, + "AudioCategory_Noise": 2, + "AudioCategory_Music": 3 + } + }, + "m_exclusive": { + "type": "bool", + "id": 3, + "offset": 128, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 824383403 + }, + "m_playList": { + "type": "class PlayList", + "id": 4, + "offset": 176, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2061221957 + }, + "m_volume": { + "type": "float", + "id": 5, + "offset": 304, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1162855023 + }, + "m_loopCount": { + "type": "int", + "id": 6, + "offset": 308, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 865634717 + }, + "m_minimumFalloff": { + "type": "float", + "id": 7, + "offset": 328, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 355697197 + }, + "m_maximumFalloff": { + "type": "float", + "id": 8, + "offset": 332, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2210192367 + }, + "m_animDriven": { + "type": "bool", + "id": 9, + "offset": 392, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 398394720 + }, + "m_inverted": { + "type": "bool", + "id": 10, + "offset": 397, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1034821044 + }, + "m_fInsideAngle": { + "type": "float", + "id": 11, + "offset": 528, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1114383840 + }, + "m_fOutsideAngle": { + "type": "float", + "id": 12, + "offset": 532, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1627152289 + }, + "m_fOutsideVolume": { + "type": "float", + "id": 13, + "offset": 536, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 90369618 + }, + "m_fRangeScale": { + "type": "float", + "id": 14, + "offset": 540, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1749294034 + }, + "m_fAttenuationFactor": { + "type": "float", + "id": 15, + "offset": 544, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 273292776 + }, + "m_eAttenuationType": { + "type": "enum PositionInfoAttenuationType", + "id": 16, + "offset": 548, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2427193304, + "enum_options": { + "Standard": 0, + "Unit Range Power": 1 + } + } + } + }, + "39832719": { + "name": "class SharedPointer", + "bases": [ + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 39832719, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + }, + "m_assetName": { + "type": "std::string", + "id": 2, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513131580 + }, + "m_bDontFlipActorYaw": { + "type": "bool", + "id": 3, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 632297791 + } + } + }, + "39734275": { + "name": "class EventCurrency1LootInfo", + "bases": [ + "LootInfo", + "LootInfoBase", + "PropertyClass" + ], + "hash": 39734275, + "properties": { + "m_lootType": { + "type": "enum LootInfo::LOOT_TYPE", + "id": 0, + "offset": 72, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1591891442, + "enum_options": { + "LOOT_TYPE_NONE": 0, + "LOOT_TYPE_GOLD": 1, + "LOOT_TYPE_MANA": 2, + "LOOT_TYPE_ITEM": 3, + "LOOT_TYPE_TREASURE_CARD": 4, + "LOOT_TYPE_MAGIC_XP": 5, + "LOOT_TYPE_ADD_SPELL": 6, + "LOOT_TYPE_MAX_HEALTH": 7, + "LOOT_TYPE_MAX_GOLD": 8, + "LOOT_TYPE_MAX_MANA": 9, + "LOOT_TYPE_MAX_POTION": 10, + "LOOT_TYPE_TRAINING_POINTS": 11, + "LOOT_TYPE_RECIPE": 12, + "LOOT_TYPE_CRAFTING_SLOT": 13, + "LOOT_TYPE_REAGENT": 14, + "LOOT_TYPE_PETSNACK": 15, + "LOOT_TYPE_GARDENING_XP": 16, + "LOOT_TYPE_PET_XP": 17, + "LOOT_TYPE_TREASURE_TABLE": 18, + "LOOT_TYPE_ARENA_POINTS": 19, + "LOOT_TYPE_ARENA_BONUS_POINTS": 20, + "LOOT_TYPE_GROUP": 21, + "LOOT_TYPE_FISHING_XP": 22, + "LOOT_TYPE_EVENT_CURRENCY_1": 24, + "LOOT_TYPE_EVENT_CURRENCY_2": 25, + "LOOT_TYPE_PVP_CURRENCY": 26, + "LOOT_TYPE_PVP_CURRENCY_BONUS": 27, + "LOOT_TYPE_PVP_TOURNEY_CURRENCY": 28, + "LOOT_TYPE_PVP_TOURNEY_CURRENCY_BONUS": 29, + "LOOT_TYPE_FURNITURE_ESSENCE": 30 + } + }, + "m_eventCurrency1Amount": { + "type": "int", + "id": 1, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 945914060 + } + } + }, + "472205463": { + "name": "class StartingPipEffect", + "bases": [ + "GameEffectBase", + "PropertyClass" + ], + "hash": 472205463, + "properties": { + "m_currentTickCount": { + "type": "double", + "id": 0, + "offset": 80, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2533274692 + }, + "m_effectNameID": { + "type": "unsigned int", + "id": 1, + "offset": 96, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1204067144 + }, + "m_bIsOnPet": { + "type": "bool", + "id": 2, + "offset": 73, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 522593303 + }, + "m_originatorID": { + "type": "gid", + "id": 3, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1131810019 + }, + "m_itemSlotID": { + "type": "unsigned int", + "id": 4, + "offset": 112, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1895747595 + }, + "m_internalID": { + "type": "int", + "id": 5, + "offset": 92, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1643137924 + }, + "m_endTime": { + "type": "unsigned int", + "id": 6, + "offset": 88, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 716479635 + }, + "m_pipsGiven": { + "type": "int", + "id": 7, + "offset": 128, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1346249167 + }, + "m_powerPipsGiven": { + "type": "int", + "id": 8, + "offset": 132, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 377908508 + } + } + }, + "1316546942": { + "name": "class EquivalentItemBehavior", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1316546942, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + } + } + }, + "38735987": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 38735987, + "properties": { + "m_adventurePartyJoinList": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1532734392 + } + } + }, + "1749710800": { + "name": "class WinAnimScaleTime", + "bases": [ + "WinAnimScale", + "WindowAnimation", + "PropertyClass" + ], + "hash": 1749710800, + "properties": { + "m_bUseDeepCopy": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 433380635 + }, + "m_scale": { + "type": "float", + "id": 1, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 899693439 + }, + "m_fTimeTotal": { + "type": "float", + "id": 2, + "offset": 96, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 661225456 + }, + "m_fTimeRemaining": { + "type": "float", + "id": 3, + "offset": 100, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1591443014 + } + } + }, + "909838190": { + "name": "class ClientSpellCardAttachmentCinematicAction", + "bases": [ + "SpellCardAttachmentCinematicAction", + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 909838190, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + }, + "m_nodeName": { + "type": "std::string", + "id": 2, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3607089954 + }, + "m_offset": { + "type": "class Vector3D", + "id": 3, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2445636425 + }, + "m_rotation": { + "type": "class Vector3D", + "id": 4, + "offset": 164, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3065089042 + } + } + }, + "38881026": { + "name": "enum GoalStatusRequirement", + "bases": [], + "hash": 38881026, + "properties": {} + }, + "694559706": { + "name": "__int64", + "bases": [], + "hash": 694559706, + "properties": {} + }, + "910630495": { + "name": "class SharedPointer", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 910630495, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + } + } + }, + "1322466119": { + "name": "class AdvPvPMatchInfo*", + "bases": [ + "PvPMatchInfo", + "ArenaMatchInfo", + "PropertyClass" + ], + "hash": 1322466119, + "properties": { + "m_matchID": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1757621298 + }, + "m_matchNameID": { + "type": "unsigned int", + "id": 1, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1751361288 + }, + "m_teams": { + "type": "class SharedPointer", + "id": 2, + "offset": 96, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1984373608 + }, + "m_matchName": { + "type": "std::string", + "id": 3, + "offset": 112, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2061215721 + }, + "m_matchTitle": { + "type": "std::string", + "id": 4, + "offset": 144, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2918442218 + }, + "m_matchZoneID": { + "type": "gid", + "id": 5, + "offset": 176, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2026205966 + }, + "m_creatorID": { + "type": "gid", + "id": 6, + "offset": 88, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1051766037 + }, + "m_matchZone": { + "type": "std::string", + "id": 7, + "offset": 184, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2061662244 + }, + "m_startTime": { + "type": "int", + "id": 8, + "offset": 216, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1386968823 + }, + "m_status": { + "type": "int", + "id": 9, + "offset": 220, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 960781182 + }, + "m_friendsOnly": { + "type": "bool", + "id": 10, + "offset": 236, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1420401792 + }, + "m_tournamentNameID": { + "type": "unsigned int", + "id": 11, + "offset": 224, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1799846440 + }, + "m_leagueID": { + "type": "unsigned int", + "id": 12, + "offset": 228, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 692361645 + }, + "m_seasonID": { + "type": "unsigned int", + "id": 13, + "offset": 232, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 535260643 + }, + "m_bUpdateLadder": { + "type": "bool", + "id": 14, + "offset": 248, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1937525956 + }, + "m_maxPointsPerMatch": { + "type": "unsigned int", + "id": 15, + "offset": 240, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1397040900 + }, + "m_estimatedWeight": { + "type": "float", + "id": 16, + "offset": 244, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1374360127 + }, + "m_maxELOError": { + "type": "int", + "id": 17, + "offset": 252, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 318998922 + }, + "m_uniqueMatchID": { + "type": "std::string", + "id": 18, + "offset": 264, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3291026220 + }, + "m_pvpDuelModifiersTemplates": { + "type": "class SharedPointer", + "id": 19, + "offset": 296, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1193155411 + }, + "m_teamSize": { + "type": "unsigned int", + "id": 20, + "offset": 256, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2343388751 + }, + "m_joinQueueRequirements": { + "type": "class SharedPointer", + "id": 21, + "offset": 312, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2746080983 + }, + "m_timeLimitSec": { + "type": "unsigned int", + "id": 22, + "offset": 328, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 312519798 + }, + "m_useHistoricDiego": { + "type": "bool", + "id": 23, + "offset": 352, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1688842509 + }, + "m_ignoredList": { + "type": "gid", + "id": 24, + "offset": 336, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1850924028 + }, + "m_matchTimer": { + "type": "float", + "id": 25, + "offset": 356, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1510935909 + }, + "m_bonusTime": { + "type": "int", + "id": 26, + "offset": 360, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1757496496 + }, + "m_passPenalty": { + "type": "int", + "id": 27, + "offset": 364, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 982951662 + }, + "m_yellowTime": { + "type": "int", + "id": 28, + "offset": 368, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1017028741 + }, + "m_redTime": { + "type": "int", + "id": 29, + "offset": 372, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1909556708 + }, + "m_minTurnTime": { + "type": "int", + "id": 30, + "offset": 376, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 652524886 + }, + "m_effects": { + "type": "class SharedPointer", + "id": 31, + "offset": 384, + "flags": 31, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 804962647 + }, + "m_updateBattlePassPoints": { + "type": "bool", + "id": 32, + "offset": 408, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 713306342 + }, + "m_battlePassWinPoints": { + "type": "int", + "id": 33, + "offset": 412, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1252337240 + }, + "m_battlePassLosePoints": { + "type": "int", + "id": 34, + "offset": 416, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1400839869 + } + } + }, + "1750319716": { + "name": "class ControlTextAlert", + "bases": [ + "ControlText", + "Window", + "PropertyClass" + ], + "hash": 1750319716, + "properties": { + "m_sName": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306437263 + }, + "m_Children": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621225959 + }, + "m_Style": { + "type": "unsigned int", + "id": 2, + "offset": 152, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152, + "DO_NOT_WRAP": 134217728, + "FIT_TEXT": 268435456 + } + }, + "m_Flags": { + "type": "unsigned int", + "id": 3, + "offset": 156, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } + }, + "m_Window": { + "type": "class Rect", + "id": 4, + "offset": 160, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3105139380 + }, + "m_fTargetAlpha": { + "type": "float", + "id": 5, + "offset": 212, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1809129834 + }, + "m_fDisabledAlpha": { + "type": "float", + "id": 6, + "offset": 216, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1389987675 + }, + "m_fAlpha": { + "type": "float", + "id": 7, + "offset": 208, + "flags": 65671, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 482130755 + }, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3623628394 + }, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2102211316 + }, + "m_sScript": { + "type": "std::string", + "id": 10, + "offset": 352, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1846695875 + }, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3389835433 + }, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547159940 + }, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513510520 + }, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3091503757 + }, + "m_sText": { + "type": "std::wstring", + "id": 16, + "offset": 584, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2102642960 + }, + "m_sTooltip": { + "type": "std::wstring", + "id": 17, + "offset": 616, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1680475798 + }, + "m_bUseDropShadow": { + "type": "bool", + "id": 18, + "offset": 653, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 93063037 + }, + "m_bUseOutline": { + "type": "bool", + "id": 19, + "offset": 654, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 744292994 + }, + "m_bEnableWordWrap": { + "type": "bool", + "id": 20, + "offset": 655, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 430904562 + }, + "m_bEnableToggle": { + "type": "bool", + "id": 21, + "offset": 652, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1937994142 + }, + "m_nLeadingAdjust": { + "type": "int", + "id": 22, + "offset": 656, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1559480167 + }, + "m_fadeInDuration": { + "type": "float", + "id": 23, + "offset": 696, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 770484100 + }, + "m_idleDuration": { + "type": "float", + "id": 24, + "offset": 700, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 383632219 + }, + "m_fadeOutDuration": { + "type": "float", + "id": 25, + "offset": 704, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 666963557 + }, + "m_easeInFunction": { + "type": "unsigned int", + "id": 26, + "offset": 716, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 662405480, + "enum_options": { + "Linear": 0, + "Quadratic": 1, + "Cubic": 2, + "Quartic": 3, + "Quintic": 4, + "Trigonometric": 5, + "Exponential": 6, + "Circular": 7 + } + }, + "m_easeOutFunction": { + "type": "unsigned int", + "id": 27, + "offset": 720, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2174208521, + "enum_options": { + "Linear": 0, + "Quadratic": 1, + "Cubic": 2, + "Quartic": 3, + "Quintic": 4, + "Trigonometric": 5, + "Exponential": 6, + "Circular": 7 + } + } + } + }, + "585999433": { + "name": "class SharedPointer", + "bases": [ + "ServiceOptionBase", + "PropertyClass" + ], + "hash": 585999433, + "properties": { + "m_serviceName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2206028813 + }, + "m_iconKey": { + "type": "std::string", + "id": 1, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2457138637 + }, + "m_displayKey": { + "type": "std::string", + "id": 2, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3023276954 + }, + "m_serviceIndex": { + "type": "unsigned int", + "id": 3, + "offset": 204, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2103126710 + }, + "m_forceInteract": { + "type": "bool", + "id": 4, + "offset": 200, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1705789564 + }, + "m_leaderboardType": { + "type": "std::string", + "id": 5, + "offset": 216, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2181150930 + } + } + }, + "1319953468": { + "name": "class ClientStopComplexSoundCinematicAction", + "bases": [ + "StopComplexSoundCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 1319953468, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_sound": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2307644996 + }, + "m_stopAllLoopingSounds": { + "type": "bool", + "id": 2, + "offset": 112, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1944220294 + }, + "m_fadeDuration": { + "type": "float", + "id": 3, + "offset": 116, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1402536557 + } + } + }, + "1750155876": { + "name": "class ControlTextAlert*", + "bases": [ + "ControlText", + "Window", + "PropertyClass" + ], + "hash": 1750155876, + "properties": { + "m_sName": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306437263 + }, + "m_Children": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621225959 + }, + "m_Style": { + "type": "unsigned int", + "id": 2, + "offset": 152, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152, + "DO_NOT_WRAP": 134217728, + "FIT_TEXT": 268435456 + } + }, + "m_Flags": { + "type": "unsigned int", + "id": 3, + "offset": 156, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } + }, + "m_Window": { + "type": "class Rect", + "id": 4, + "offset": 160, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3105139380 + }, + "m_fTargetAlpha": { + "type": "float", + "id": 5, + "offset": 212, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1809129834 + }, + "m_fDisabledAlpha": { + "type": "float", + "id": 6, + "offset": 216, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1389987675 + }, + "m_fAlpha": { + "type": "float", + "id": 7, + "offset": 208, + "flags": 65671, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 482130755 + }, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3623628394 + }, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2102211316 + }, + "m_sScript": { + "type": "std::string", + "id": 10, + "offset": 352, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1846695875 + }, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3389835433 + }, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547159940 + }, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513510520 + }, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3091503757 + }, + "m_sText": { + "type": "std::wstring", + "id": 16, + "offset": 584, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2102642960 + }, + "m_sTooltip": { + "type": "std::wstring", + "id": 17, + "offset": 616, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1680475798 + }, + "m_bUseDropShadow": { + "type": "bool", + "id": 18, + "offset": 653, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 93063037 + }, + "m_bUseOutline": { + "type": "bool", + "id": 19, + "offset": 654, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 744292994 + }, + "m_bEnableWordWrap": { + "type": "bool", + "id": 20, + "offset": 655, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 430904562 + }, + "m_bEnableToggle": { + "type": "bool", + "id": 21, + "offset": 652, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1937994142 + }, + "m_nLeadingAdjust": { + "type": "int", + "id": 22, + "offset": 656, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1559480167 + }, + "m_fadeInDuration": { + "type": "float", + "id": 23, + "offset": 696, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 770484100 + }, + "m_idleDuration": { + "type": "float", + "id": 24, + "offset": 700, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 383632219 + }, + "m_fadeOutDuration": { + "type": "float", + "id": 25, + "offset": 704, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 666963557 + }, + "m_easeInFunction": { + "type": "unsigned int", + "id": 26, + "offset": 716, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 662405480, + "enum_options": { + "Linear": 0, + "Quadratic": 1, + "Cubic": 2, + "Quartic": 3, + "Quintic": 4, + "Trigonometric": 5, + "Exponential": 6, + "Circular": 7 + } + }, + "m_easeOutFunction": { + "type": "unsigned int", + "id": 27, + "offset": 720, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2174208521, + "enum_options": { + "Linear": 0, + "Quadratic": 1, + "Cubic": 2, + "Quartic": 3, + "Quintic": 4, + "Trigonometric": 5, + "Exponential": 6, + "Circular": 7 + } + } + } + }, + "519615609": { + "name": "class std::vector,class std::allocator >,class std::allocator,class std::allocator > > >", + "bases": [], + "hash": 519615609, + "properties": {} + }, + "1318543072": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1318543072, + "properties": { + "m_entryID": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 16777279, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 525129815 + }, + "m_characterID": { + "type": "gid", + "id": 1, + "offset": 80, + "flags": 33554495, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 210498386 + }, + "m_characterSchool": { + "type": "unsigned int", + "id": 2, + "offset": 88, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1330015234 + }, + "m_nameKeys": { + "type": "unsigned int", + "id": 3, + "offset": 92, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1772225898 + }, + "m_level": { + "type": "int", + "id": 4, + "offset": 96, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 801285362 + }, + "m_wins": { + "type": "int", + "id": 5, + "offset": 100, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 219992347 + }, + "m_score": { + "type": "int", + "id": 6, + "offset": 104, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 809507734 + }, + "m_rank": { + "type": "int", + "id": 7, + "offset": 108, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 219803942 + }, + "m_sequenceID": { + "type": "unsigned int", + "id": 8, + "offset": 112, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1797256403 + }, + "m_visualBlob": { + "type": "std::string", + "id": 9, + "offset": 120, + "flags": 575, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1691722510 + } + } + }, + "39775235": { + "name": "class EventCurrency1LootInfo*", + "bases": [ + "LootInfo", + "LootInfoBase", + "PropertyClass" + ], + "hash": 39775235, + "properties": { + "m_lootType": { + "type": "enum LootInfo::LOOT_TYPE", + "id": 0, + "offset": 72, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1591891442, + "enum_options": { + "LOOT_TYPE_NONE": 0, + "LOOT_TYPE_GOLD": 1, + "LOOT_TYPE_MANA": 2, + "LOOT_TYPE_ITEM": 3, + "LOOT_TYPE_TREASURE_CARD": 4, + "LOOT_TYPE_MAGIC_XP": 5, + "LOOT_TYPE_ADD_SPELL": 6, + "LOOT_TYPE_MAX_HEALTH": 7, + "LOOT_TYPE_MAX_GOLD": 8, + "LOOT_TYPE_MAX_MANA": 9, + "LOOT_TYPE_MAX_POTION": 10, + "LOOT_TYPE_TRAINING_POINTS": 11, + "LOOT_TYPE_RECIPE": 12, + "LOOT_TYPE_CRAFTING_SLOT": 13, + "LOOT_TYPE_REAGENT": 14, + "LOOT_TYPE_PETSNACK": 15, + "LOOT_TYPE_GARDENING_XP": 16, + "LOOT_TYPE_PET_XP": 17, + "LOOT_TYPE_TREASURE_TABLE": 18, + "LOOT_TYPE_ARENA_POINTS": 19, + "LOOT_TYPE_ARENA_BONUS_POINTS": 20, + "LOOT_TYPE_GROUP": 21, + "LOOT_TYPE_FISHING_XP": 22, + "LOOT_TYPE_EVENT_CURRENCY_1": 24, + "LOOT_TYPE_EVENT_CURRENCY_2": 25, + "LOOT_TYPE_PVP_CURRENCY": 26, + "LOOT_TYPE_PVP_CURRENCY_BONUS": 27, + "LOOT_TYPE_PVP_TOURNEY_CURRENCY": 28, + "LOOT_TYPE_PVP_TOURNEY_CURRENCY_BONUS": 29, + "LOOT_TYPE_FURNITURE_ESSENCE": 30 + } + }, + "m_eventCurrency1Amount": { + "type": "int", + "id": 1, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 945914060 + } + } + }, + "497734595": { + "name": "class InteractableOption", + "bases": [ + "ServiceOptionBase", + "PropertyClass" + ], + "hash": 497734595, + "properties": { + "m_serviceName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2206028813 + }, + "m_iconKey": { + "type": "std::string", + "id": 1, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2457138637 + }, + "m_displayKey": { + "type": "std::string", + "id": 2, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3023276954 + }, + "m_serviceIndex": { + "type": "unsigned int", + "id": 3, + "offset": 204, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2103126710 + }, + "m_forceInteract": { + "type": "bool", + "id": 4, + "offset": 200, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1705789564 + }, + "m_optionIndex": { + "type": "int", + "id": 5, + "offset": 216, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 276287019 + } + } + }, + "913029011": { + "name": "class BoxGeomParams*", + "bases": [ + "GeomParams", + "PropertyClass" + ], + "hash": 913029011, + "properties": { + "m_eType": { + "type": "enum ProxyType", + "id": 0, + "offset": 72, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1656534066, + "enum_options": { + "ProxyTypeBox": 0, + "ProxyTypeRay": 1, + "ProxyTypeSphere": 2, + "ProxyTypeCylinder": 3, + "ProxyTypeTube": 4, + "ProxyTypePlane": 5, + "ProxyTypeMesh": 6, + "ProxyTypeInvalid": 7 + } + }, + "m_fLength": { + "type": "float", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 558261279 + }, + "m_fWidth": { + "type": "float", + "id": 2, + "offset": 84, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 508100541 + }, + "m_fDepth": { + "type": "float", + "id": 3, + "offset": 88, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 485437362 + } + } + }, + "1317096719": { + "name": "class ClientElixirBehavior*", + "bases": [ + "ClientTimedItemBehavior", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1317096719, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_expireTime": { + "type": "unsigned int", + "id": 1, + "offset": 112, + "flags": 59, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1836304873 + }, + "m_statsApplied": { + "type": "bool", + "id": 2, + "offset": 328, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 828970945 + } + } + }, + "481246299": { + "name": "class CastleToursOption*", + "bases": [ + "ServiceOptionBase", + "PropertyClass" + ], + "hash": 481246299, + "properties": { + "m_serviceName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2206028813 + }, + "m_iconKey": { + "type": "std::string", + "id": 1, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2457138637 + }, + "m_displayKey": { + "type": "std::string", + "id": 2, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3023276954 + }, + "m_serviceIndex": { + "type": "unsigned int", + "id": 3, + "offset": 204, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2103126710 + }, + "m_forceInteract": { + "type": "bool", + "id": 4, + "offset": 200, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1705789564 + } + } + }, + "913028834": { + "name": "class RayGeomParams", + "bases": [ + "GeomParams", + "PropertyClass" + ], + "hash": 913028834, + "properties": { + "m_eType": { + "type": "enum ProxyType", + "id": 0, + "offset": 72, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1656534066, + "enum_options": { + "ProxyTypeBox": 0, + "ProxyTypeRay": 1, + "ProxyTypeSphere": 2, + "ProxyTypeCylinder": 3, + "ProxyTypeTube": 4, + "ProxyTypePlane": 5, + "ProxyTypeMesh": 6, + "ProxyTypeInvalid": 7 + } + }, + "m_vPosition": { + "type": "class Vector3D", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2432577069 + }, + "m_vDirection": { + "type": "class Vector3D", + "id": 2, + "offset": 92, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2142285753 + }, + "m_fLength": { + "type": "float", + "id": 3, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 558261279 + } + } + }, + "1316734244": { + "name": "class SharedPointer", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 1316734244, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + }, + "m_npcProximity": { + "type": "float", + "id": 1, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1306880973 + } + } + }, + "1750389220": { + "name": "class ClientShadowSelfCinematicAction", + "bases": [ + "ShadowSelfCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 1750389220, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + } + } + }, + "475785857": { + "name": "class SharedPointer", + "bases": [ + "StatisticEffect", + "GameEffectBase", + "PropertyClass" + ], + "hash": 475785857, + "properties": { + "m_currentTickCount": { + "type": "double", + "id": 0, + "offset": 80, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2533274692 + }, + "m_effectNameID": { + "type": "unsigned int", + "id": 1, + "offset": 96, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1204067144 + }, + "m_bIsOnPet": { + "type": "bool", + "id": 2, + "offset": 73, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 522593303 + }, + "m_originatorID": { + "type": "gid", + "id": 3, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1131810019 + }, + "m_itemSlotID": { + "type": "unsigned int", + "id": 4, + "offset": 112, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1895747595 + }, + "m_internalID": { + "type": "int", + "id": 5, + "offset": 92, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1643137924 + }, + "m_endTime": { + "type": "unsigned int", + "id": 6, + "offset": 88, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 716479635 + }, + "m_lookupIndex": { + "type": "int", + "id": 7, + "offset": 128, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1626623948 + }, + "m_damageBonusPercent": { + "type": "float", + "id": 8, + "offset": 136, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 623230606 + }, + "m_damageBonusFlat": { + "type": "float", + "id": 9, + "offset": 180, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2212039108 + }, + "m_accuracyBonusPercent": { + "type": "float", + "id": 10, + "offset": 140, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1972336538 + }, + "m_armorPiercingBonusPercent": { + "type": "float", + "id": 11, + "offset": 144, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1569912641 + }, + "m_damageReducePercent": { + "type": "float", + "id": 12, + "offset": 148, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 541736927 + }, + "m_damageReduceFlat": { + "type": "float", + "id": 13, + "offset": 152, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 684172469 + }, + "m_accuracyReducePercent": { + "type": "float", + "id": 14, + "offset": 156, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2112559723 + }, + "m_healBonusPercent": { + "type": "float", + "id": 15, + "offset": 160, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 562313577 + }, + "m_healIncBonusPercent": { + "type": "float", + "id": 16, + "offset": 164, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2182535587 + }, + "m_hitPointBonus": { + "type": "float", + "id": 17, + "offset": 204, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 880644461 + }, + "m_spellChargeBonus": { + "type": "int", + "id": 18, + "offset": 212, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2019610507 + }, + "m_powerPipBonusPercent": { + "type": "float", + "id": 19, + "offset": 168, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1671446341 + }, + "m_petActChance": { + "type": "int", + "id": 20, + "offset": 200, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 237418461 + }, + "m_manaBonus": { + "type": "float", + "id": 21, + "offset": 208, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1372708603 + }, + "m_expPercent": { + "type": "float", + "id": 22, + "offset": 184, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1147850677 + }, + "m_goldPercent": { + "type": "float", + "id": 23, + "offset": 188, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1095720878 + }, + "m_energyBonus": { + "type": "float", + "id": 24, + "offset": 216, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2223158984 + }, + "m_criticalHitRating": { + "type": "float", + "id": 25, + "offset": 220, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1978690540 + }, + "m_blockRating": { + "type": "float", + "id": 26, + "offset": 224, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2088486759 + }, + "m_accuracyRating": { + "type": "float", + "id": 27, + "offset": 228, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 165525575 + }, + "m_powerPipRating": { + "type": "float", + "id": 28, + "offset": 232, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1355340722 + }, + "m_damageResistanceRating": { + "type": "float", + "id": 29, + "offset": 240, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1961377740 + }, + "m_archmastery": { + "type": "float", + "id": 30, + "offset": 244, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1963579610 + }, + "m_archmasteryBonusPercent": { + "type": "float", + "id": 31, + "offset": 288, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1908627154 + }, + "m_balanceMastery": { + "type": "int", + "id": 32, + "offset": 248, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 149062181 + }, + "m_deathMastery": { + "type": "int", + "id": 33, + "offset": 252, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1421218661 + }, + "m_fireMastery": { + "type": "int", + "id": 34, + "offset": 256, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1431794949 + }, + "m_iceMastery": { + "type": "int", + "id": 35, + "offset": 260, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 704864240 + }, + "m_lifeMastery": { + "type": "int", + "id": 36, + "offset": 264, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2142136447 + }, + "m_mythMastery": { + "type": "int", + "id": 37, + "offset": 268, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1766317185 + }, + "m_stormMastery": { + "type": "int", + "id": 38, + "offset": 272, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1883988244 + }, + "m_stunResistancePercent": { + "type": "float", + "id": 39, + "offset": 276, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1868382627 + }, + "m_fishingLuckBonusPercent": { + "type": "float", + "id": 40, + "offset": 192, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1363349254 + }, + "m_shadowPipBonusPercent": { + "type": "float", + "id": 41, + "offset": 172, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1426533310 + }, + "m_wispBonusPercent": { + "type": "float", + "id": 42, + "offset": 196, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1304386546 + }, + "m_pipConversionRating": { + "type": "float", + "id": 43, + "offset": 280, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 246855691 + }, + "m_shadowPipRating": { + "type": "float", + "id": 44, + "offset": 236, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 507126123 + } + } + }, + "912025517": { + "name": "class SharedPointer", + "bases": [ + "AvatarTextureOption", + "AvatarOptionBase", + "PropertyClass" + ], + "hash": 912025517, + "properties": { + "m_conditionFlags": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2483653903 + }, + "m_materialName": { + "type": "std::string", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1878140043 + }, + "m_textures": { + "type": "std::string", + "id": 2, + "offset": 136, + "flags": 131079, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2391848735 + }, + "m_decals": { + "type": "std::string", + "id": 3, + "offset": 160, + "flags": 131079, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1853711975 + }, + "m_decals2": { + "type": "std::string", + "id": 4, + "offset": 184, + "flags": 131079, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2505858617 + }, + "m_tintColors": { + "type": "class Vector3D", + "id": 5, + "offset": 208, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 3059416083 + }, + "m_tintColorNames": { + "type": "std::string", + "id": 6, + "offset": 232, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1803799469 + }, + "m_useTintColor": { + "type": "bool", + "id": 7, + "offset": 256, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1646372318 + }, + "m_texture": { + "type": "std::string", + "id": 8, + "offset": 264, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1720106604 + }, + "m_decal": { + "type": "std::string", + "id": 9, + "offset": 296, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2289476788 + }, + "m_decal2": { + "type": "std::string", + "id": 10, + "offset": 328, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1853711910 + }, + "m_tintColor": { + "type": "class Vector3D", + "id": 11, + "offset": 360, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1830530496 + } + } + }, + "41816003": { + "name": "class SharedPointer", + "bases": [ + "FaceTargetActorCinematicAction", + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 41816003, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + }, + "m_bCaster": { + "type": "bool", + "id": 2, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1390351511 + } + } + }, + "474222926": { + "name": "class CantripsInvisibilityEffect*", + "bases": [ + "GameEffectBase", + "PropertyClass" + ], + "hash": 474222926, + "properties": { + "m_currentTickCount": { + "type": "double", + "id": 0, + "offset": 80, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2533274692 + }, + "m_effectNameID": { + "type": "unsigned int", + "id": 1, + "offset": 96, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1204067144 + }, + "m_bIsOnPet": { + "type": "bool", + "id": 2, + "offset": 73, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 522593303 + }, + "m_originatorID": { + "type": "gid", + "id": 3, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1131810019 + }, + "m_itemSlotID": { + "type": "unsigned int", + "id": 4, + "offset": 112, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1895747595 + }, + "m_internalID": { + "type": "int", + "id": 5, + "offset": 92, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1643137924 + }, + "m_endTime": { + "type": "unsigned int", + "id": 6, + "offset": 88, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 716479635 + } + } + }, + "911795008": { + "name": "class std::list >", + "bases": [], + "hash": 911795008, + "properties": {} + }, + "41012572": { + "name": "class SharedPointer", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 41012572, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + }, + "m_scriptFilename": { + "type": "std::string", + "id": 1, + "offset": 120, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1831462225 + }, + "m_bDisableAutoRestart": { + "type": "bool", + "id": 2, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 815844583, + "enum_options": { + "__DEFAULT": 0 + } + }, + "m_clientScriptFilename": { + "type": "std::string", + "id": 3, + "offset": 160, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2499494128 + } + } + }, + "473949253": { + "name": "class NaturalSummonCinematicStageTemplate", + "bases": [ + "CinematicStageTemplate", + "PropertyClass" + ], + "hash": 473949253, + "properties": { + "m_name": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1717359772 + }, + "m_duration": { + "type": "float", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 920323453 + }, + "m_actions": { + "type": "class SharedPointer", + "id": 2, + "offset": 112, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1380578687 + }, + "m_stageRelationships": { + "type": "class SharedPointer", + "id": 3, + "offset": 128, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 499983354 + }, + "m_sound": { + "type": "std::string", + "id": 4, + "offset": 152, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2307644996 + } + } + }, + "1318335534": { + "name": "class WorldWindow*", + "bases": [ + "Window", + "PropertyClass" + ], + "hash": 1318335534, + "properties": { + "m_sName": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306437263 + }, + "m_Children": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621225959 + }, + "m_Style": { + "type": "unsigned int", + "id": 2, + "offset": 152, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "SCALE_CHILDREN": 2, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "FOCUS_LOCKED": 64, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152 + } + }, + "m_Flags": { + "type": "unsigned int", + "id": 3, + "offset": 156, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } + }, + "m_Window": { + "type": "class Rect", + "id": 4, + "offset": 160, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3105139380 + }, + "m_fTargetAlpha": { + "type": "float", + "id": 5, + "offset": 212, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1809129834 + }, + "m_fDisabledAlpha": { + "type": "float", + "id": 6, + "offset": 216, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1389987675 + }, + "m_fAlpha": { + "type": "float", + "id": 7, + "offset": 208, + "flags": 65671, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 482130755 + }, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3623628394 + }, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2102211316 + }, + "m_sScript": { + "type": "std::string", + "id": 10, + "offset": 352, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1846695875 + }, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3389835433 + }, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547159940 + }, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513510520 + }, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3091503757 + } + } + }, + "40309991": { + "name": "class SharedPointer", + "bases": [ + "TournamentUpdate", + "PropertyClass" + ], + "hash": 40309991, + "properties": { + "m_team": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1393503221 + } + } + }, + "1755781776": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1755781776, + "properties": { + "m_eloRankUp": { + "type": "int", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2072991243 + }, + "m_eloRankDown": { + "type": "int", + "id": 1, + "offset": 76, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 385300382 + }, + "m_kFactor": { + "type": "int", + "id": 2, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 243011684 + }, + "m_carryoverElo": { + "type": "int", + "id": 3, + "offset": 84, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 61027127 + }, + "m_rankName": { + "type": "std::string", + "id": 4, + "offset": 88, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1779957096 + }, + "m_icon": { + "type": "std::string", + "id": 5, + "offset": 120, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1717182340 + }, + "m_badgeName": { + "type": "std::string", + "id": 6, + "offset": 152, + "flags": 268435463, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3002948047, + "enum_options": { + "__BASECLASS": "BadgeTemplate" + } + } + } + }, + "473754256": { + "name": "class CastleMagicItem*", + "bases": [ + "PropertyClass" + ], + "hash": 473754256, + "properties": { + "m_id": { + "type": "unsigned int", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2301988666 + }, + "m_flags": { + "type": "unsigned int", + "id": 1, + "offset": 76, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1005801050 + }, + "m_movedPosition": { + "type": "class Vector3D", + "id": 2, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3719762834 + }, + "m_movedYaw": { + "type": "float", + "id": 3, + "offset": 116, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1088556419 + }, + "m_movedScale": { + "type": "float", + "id": 4, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 569059130 + } + } + }, + "1753170313": { + "name": "class ClientCantripsInvisibilityEffect*", + "bases": [ + "CantripsInvisibilityEffect", + "GameEffectBase", + "PropertyClass" + ], + "hash": 1753170313, + "properties": { + "m_currentTickCount": { + "type": "double", + "id": 0, + "offset": 80, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2533274692 + }, + "m_effectNameID": { + "type": "unsigned int", + "id": 1, + "offset": 96, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1204067144 + }, + "m_bIsOnPet": { + "type": "bool", + "id": 2, + "offset": 73, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 522593303 + }, + "m_originatorID": { + "type": "gid", + "id": 3, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1131810019 + }, + "m_itemSlotID": { + "type": "unsigned int", + "id": 4, + "offset": 112, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1895747595 + }, + "m_internalID": { + "type": "int", + "id": 5, + "offset": 92, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1643137924 + }, + "m_endTime": { + "type": "unsigned int", + "id": 6, + "offset": 88, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 716479635 + } + } + }, + "473311111": { + "name": "class SharedPointer", + "bases": [ + "TournamentUpdate", + "PropertyClass" + ], + "hash": 473311111, + "properties": { + "m_teamID": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 982102220 + }, + "m_matchID": { + "type": "gid", + "id": 1, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1757621298 + } + } + }, + "912524957": { + "name": "class ParalyzeScriptLink*", + "bases": [ + "PropertyClass" + ], + "hash": 912524957, + "properties": {} + }, + "1751420527": { + "name": "class RemoveCameraMappingCinematicAction*", + "bases": [ + "CinematicAction", + "PropertyClass" + ], + "hash": 1751420527, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_camToReplace": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2286913643 + } + } + }, + "41773224": { + "name": "class SharedPointer", + "bases": [ + "VisibilityBehavior", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 41773224, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_showTo": { + "type": "gid", + "id": 1, + "offset": 112, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 947039004 + }, + "m_hideFrom": { + "type": "gid", + "id": 2, + "offset": 128, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 642644390 + }, + "m_visible": { + "type": "bool", + "id": 3, + "offset": 144, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 810536225 + } + } + }, + "1751417967": { + "name": "class RemoveCameraMappingCinematicAction", + "bases": [ + "CinematicAction", + "PropertyClass" + ], + "hash": 1751417967, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_camToReplace": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2286913643 + } + } + }, + "473555750": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 473555750, + "properties": { + "m_res": { + "type": "int", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 267047684 + }, + "m_microScale": { + "type": "float", + "id": 1, + "offset": 76, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1618708793 + }, + "m_tinyScale": { + "type": "float", + "id": 2, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 477118371 + }, + "m_smallScale": { + "type": "float", + "id": 3, + "offset": 84, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 491529176 + }, + "m_regularScale": { + "type": "float", + "id": 4, + "offset": 88, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1846588305 + }, + "m_largeScale": { + "type": "float", + "id": 5, + "offset": 92, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 710194858 + }, + "m_hugeScale": { + "type": "float", + "id": 6, + "offset": 96, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1882331208 + } + } + }, + "912539872": { + "name": "class ControlList::ListItemAnimState", + "bases": [ + "ControlList::ListItemState", + "PropertyClass" + ], + "hash": 912539872, + "properties": { + "m_pMaterial": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3479277078 + }, + "m_nMaterialFrame": { + "type": "int", + "id": 1, + "offset": 88, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1641923970 + }, + "m_nAnimBeginFrame": { + "type": "int", + "id": 2, + "offset": 96, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1469531165 + }, + "m_nAnimEndFrame": { + "type": "int", + "id": 3, + "offset": 100, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1659451087 + }, + "m_fAnimRate": { + "type": "float", + "id": 4, + "offset": 104, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 802385934 + }, + "m_bAnimLoop": { + "type": "bool", + "id": 5, + "offset": 108, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1487150228 + } + } + }, + "1319252864": { + "name": "class SharedPointer", + "bases": [ + "GuildMuseumCuratorBehaviorBase", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1319252864, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + } + } + }, + "1318862747": { + "name": "class MinigameSigilTemplate*", + "bases": [ + "SigilTemplate", + "CoreTemplate", + "PropertyClass" + ], + "hash": 1318862747, + "properties": { + "m_behaviors": { + "type": "class BehaviorTemplate*", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1197808594 + }, + "m_sigilName": { + "type": "std::string", + "id": 1, + "offset": 96, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3177657588 + }, + "m_sigilType": { + "type": "std::string", + "id": 2, + "offset": 136, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3177899445 + }, + "m_entryResults": { + "type": "class ResultList*", + "id": 3, + "offset": 184, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3262956108 + }, + "m_requirements": { + "type": "class RequirementList*", + "id": 4, + "offset": 176, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2840985510 + }, + "m_cancelResults": { + "type": "class ResultList*", + "id": 5, + "offset": 192, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3799257120 + }, + "m_completeResults": { + "type": "class ResultList*", + "id": 6, + "offset": 200, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1964258099 + }, + "m_useState": { + "type": "bool", + "id": 7, + "offset": 216, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 683320865 + }, + "m_stateOverride": { + "type": "std::string", + "id": 8, + "offset": 224, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1949715548 + }, + "m_subCircles": { + "type": "class SigilSubCircle*", + "id": 9, + "offset": 256, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2227135493 + } + } + }, + "43063088": { + "name": "class ClientHaltCinematicAction*", + "bases": [ + "HaltCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 43063088, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + } + } + }, + "1752903624": { + "name": "class ClientRecreateNPCActorCinematicAction", + "bases": [ + "RecreateNPCActorCinematicAction", + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 1752903624, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + } + } + }, + "473867333": { + "name": "class NaturalSummonCinematicStageTemplate*", + "bases": [ + "CinematicStageTemplate", + "PropertyClass" + ], + "hash": 473867333, + "properties": { + "m_name": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1717359772 + }, + "m_duration": { + "type": "float", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 920323453 + }, + "m_actions": { + "type": "class SharedPointer", + "id": 2, + "offset": 112, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1380578687 + }, + "m_stageRelationships": { + "type": "class SharedPointer", + "id": 3, + "offset": 128, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 499983354 + }, + "m_sound": { + "type": "std::string", + "id": 4, + "offset": 152, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2307644996 + } + } + }, + "913028839": { + "name": "class RayGeomParams*", + "bases": [ + "GeomParams", + "PropertyClass" + ], + "hash": 913028839, + "properties": { + "m_eType": { + "type": "enum ProxyType", + "id": 0, + "offset": 72, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1656534066, + "enum_options": { + "ProxyTypeBox": 0, + "ProxyTypeRay": 1, + "ProxyTypeSphere": 2, + "ProxyTypeCylinder": 3, + "ProxyTypeTube": 4, + "ProxyTypePlane": 5, + "ProxyTypeMesh": 6, + "ProxyTypeInvalid": 7 + } + }, + "m_vPosition": { + "type": "class Vector3D", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2432577069 + }, + "m_vDirection": { + "type": "class Vector3D", + "id": 2, + "offset": 92, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2142285753 + }, + "m_fLength": { + "type": "float", + "id": 3, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 558261279 + } + } + }, + "1318861467": { + "name": "class MinigameSigilTemplate", + "bases": [ + "SigilTemplate", + "CoreTemplate", + "PropertyClass" + ], + "hash": 1318861467, + "properties": { + "m_behaviors": { + "type": "class BehaviorTemplate*", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1197808594 + }, + "m_sigilName": { + "type": "std::string", + "id": 1, + "offset": 96, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3177657588 + }, + "m_sigilType": { + "type": "std::string", + "id": 2, + "offset": 136, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3177899445 + }, + "m_entryResults": { + "type": "class ResultList*", + "id": 3, + "offset": 184, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3262956108 + }, + "m_requirements": { + "type": "class RequirementList*", + "id": 4, + "offset": 176, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2840985510 + }, + "m_cancelResults": { + "type": "class ResultList*", + "id": 5, + "offset": 192, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3799257120 + }, + "m_completeResults": { + "type": "class ResultList*", + "id": 6, + "offset": 200, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1964258099 + }, + "m_useState": { + "type": "bool", + "id": 7, + "offset": 216, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 683320865 + }, + "m_stateOverride": { + "type": "std::string", + "id": 8, + "offset": 224, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1949715548 + }, + "m_subCircles": { + "type": "class SigilSubCircle*", + "id": 9, + "offset": 256, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2227135493 + } + } + }, + "1751459467": { + "name": "class SharedPointer", + "bases": [ + "CoreObject", + "PropertyClass" + ], + "hash": 1751459467, + "properties": { + "m_inactiveBehaviors": { + "type": "class SharedPointer", + "id": 0, + "offset": 224, + "flags": 31, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1850812559 + }, + "m_globalID.m_full": { + "type": "unsigned __int64", + "id": 1, + "offset": 72, + "flags": 16777247, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2312465444 + }, + "m_permID": { + "type": "unsigned __int64", + "id": 2, + "offset": 80, + "flags": 16777247, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1298909658 + }, + "m_location": { + "type": "class Vector3D", + "id": 3, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2239683611 + }, + "m_orientation": { + "type": "class Vector3D", + "id": 4, + "offset": 180, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2344058766 + }, + "m_fScale": { + "type": "float", + "id": 5, + "offset": 196, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 503137701 + }, + "m_templateID.m_full": { + "type": "unsigned __int64", + "id": 6, + "offset": 96, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 633907631 + }, + "m_debugName": { + "type": "std::string", + "id": 7, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3553984419 + }, + "m_displayKey": { + "type": "std::string", + "id": 8, + "offset": 136, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3023276954 + }, + "m_zoneTagID": { + "type": "unsigned int", + "id": 9, + "offset": 344, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 965291410 + }, + "m_speedMultiplier": { + "type": "short", + "id": 10, + "offset": 192, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 123130076 + }, + "m_nMobileID": { + "type": "unsigned short", + "id": 11, + "offset": 194, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1054318939 + }, + "m_characterId": { + "type": "gid", + "id": 12, + "offset": 440, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 210498418 + } + } + }, + "473759376": { + "name": "class CastleMagicItem", + "bases": [ + "PropertyClass" + ], + "hash": 473759376, + "properties": { + "m_id": { + "type": "unsigned int", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2301988666 + }, + "m_flags": { + "type": "unsigned int", + "id": 1, + "offset": 76, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1005801050 + }, + "m_movedPosition": { + "type": "class Vector3D", + "id": 2, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3719762834 + }, + "m_movedYaw": { + "type": "float", + "id": 3, + "offset": 116, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1088556419 + }, + "m_movedScale": { + "type": "float", + "id": 4, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 569059130 + } + } + }, + "45031966": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 45031966, + "properties": { + "m_sellMultiplier": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1673304590 + }, + "m_sellAdditive": { + "type": "int", + "id": 1, + "offset": 76, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 776461780 + } + } + }, + "914121085": { + "name": "class FriendSortByWindow*", + "bases": [ + "Window", + "PropertyClass" + ], + "hash": 914121085, + "properties": { + "m_sName": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306437263 + }, + "m_Children": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621225959 + }, + "m_Style": { + "type": "unsigned int", + "id": 2, + "offset": 152, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "SCALE_CHILDREN": 2, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "FOCUS_LOCKED": 64, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152 + } + }, + "m_Flags": { + "type": "unsigned int", + "id": 3, + "offset": 156, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } + }, + "m_Window": { + "type": "class Rect", + "id": 4, + "offset": 160, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3105139380 + }, + "m_fTargetAlpha": { + "type": "float", + "id": 5, + "offset": 212, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1809129834 + }, + "m_fDisabledAlpha": { + "type": "float", + "id": 6, + "offset": 216, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1389987675 + }, + "m_fAlpha": { + "type": "float", + "id": 7, + "offset": 208, + "flags": 65671, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 482130755 + }, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3623628394 + }, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2102211316 + }, + "m_sScript": { + "type": "std::string", + "id": 10, + "offset": 352, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1846695875 + }, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3389835433 + }, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547159940 + }, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513510520 + }, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3091503757 + } + } + }, + "1319121874": { + "name": "enum ReqNumeric::OPERATOR_TYPE", + "bases": [], + "hash": 1319121874, + "properties": {} + }, + "44866769": { + "name": "class TreasureBookBehavior*", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 44866769, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_spellList": { + "type": "class SharedPointer", + "id": 1, + "offset": 120, + "flags": 27, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2181913740 + } + } + }, + "1752993966": { + "name": "class SharedPointer", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1752993966, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_wsNameOverride": { + "type": "std::wstring", + "id": 1, + "offset": 120, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2131249091 + } + } + }, + "913991582": { + "name": "class PlaneGeomParams", + "bases": [ + "GeomParams", + "PropertyClass" + ], + "hash": 913991582, + "properties": { + "m_eType": { + "type": "enum ProxyType", + "id": 0, + "offset": 72, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1656534066, + "enum_options": { + "ProxyTypeBox": 0, + "ProxyTypeRay": 1, + "ProxyTypeSphere": 2, + "ProxyTypeCylinder": 3, + "ProxyTypeTube": 4, + "ProxyTypePlane": 5, + "ProxyTypeMesh": 6, + "ProxyTypeInvalid": 7 + } + }, + "m_vNormal": { + "type": "class Vector3D", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3552296097 + }, + "m_fDistance": { + "type": "float", + "id": 2, + "offset": 92, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 194015112 + } + } + }, + "44032199": { + "name": "class Requirement", + "bases": [ + "PropertyClass" + ], + "hash": 44032199, + "properties": { + "m_applyNOT": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1746328074, + "enum_options": { + "__DEFAULT": 0 + } + }, + "m_operator": { + "type": "enum Requirement::Operator", + "id": 1, + "offset": 76, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2672792317, + "enum_options": { + "ROP_AND": 0, + "ROP_OR": 1, + "__DEFAULT": "ROP_AND" + } + } + } + }, + "474222920": { + "name": "class CantripsInvisibilityEffect", + "bases": [ + "GameEffectBase", + "PropertyClass" + ], + "hash": 474222920, + "properties": { + "m_currentTickCount": { + "type": "double", + "id": 0, + "offset": 80, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2533274692 + }, + "m_effectNameID": { + "type": "unsigned int", + "id": 1, + "offset": 96, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1204067144 + }, + "m_bIsOnPet": { + "type": "bool", + "id": 2, + "offset": 73, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 522593303 + }, + "m_originatorID": { + "type": "gid", + "id": 3, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1131810019 + }, + "m_itemSlotID": { + "type": "unsigned int", + "id": 4, + "offset": 112, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1895747595 + }, + "m_internalID": { + "type": "int", + "id": 5, + "offset": 92, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1643137924 + }, + "m_endTime": { + "type": "unsigned int", + "id": 6, + "offset": 88, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 716479635 + } + } + }, + "913616708": { + "name": "class SharedPointer", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 913616708, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_playlist": { + "type": "unsigned int", + "id": 1, + "offset": 112, + "flags": 65567, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1986295487 + }, + "m_currentSelection": { + "type": "unsigned int", + "id": 2, + "offset": 128, + "flags": 65567, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 906571734 + }, + "m_playStyle": { + "type": "unsigned int", + "id": 3, + "offset": 132, + "flags": 65567, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 768737172 + } + } + }, + "43991615": { + "name": "enum TutorialTipType", + "bases": [], + "hash": 43991615, + "properties": {} + }, + "474090984": { + "name": "class SharedPointer", + "bases": [ + "ShadowSelfCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 474090984, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + } + } + }, + "913029014": { + "name": "class BoxGeomParams", + "bases": [ + "GeomParams", + "PropertyClass" + ], + "hash": 913029014, + "properties": { + "m_eType": { + "type": "enum ProxyType", + "id": 0, + "offset": 72, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1656534066, + "enum_options": { + "ProxyTypeBox": 0, + "ProxyTypeRay": 1, + "ProxyTypeSphere": 2, + "ProxyTypeCylinder": 3, + "ProxyTypeTube": 4, + "ProxyTypePlane": 5, + "ProxyTypeMesh": 6, + "ProxyTypeInvalid": 7 + } + }, + "m_fLength": { + "type": "float", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 558261279 + }, + "m_fWidth": { + "type": "float", + "id": 2, + "offset": 84, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 508100541 + }, + "m_fDepth": { + "type": "float", + "id": 3, + "offset": 88, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 485437362 + } + } + }, + "1319586638": { + "name": "class DerbyAddSpeedBoost", + "bases": [ + "DerbyEffect", + "PropertyClass" + ], + "hash": 1319586638, + "properties": { + "m_buffType": { + "type": "enum DerbyTalentBuffType", + "id": 0, + "offset": 92, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1149251982, + "enum_options": { + "Buff": 0, + "Debuff": 1, + "Neither": 2 + } + }, + "m_kTarget": { + "type": "enum DerbyTargetType", + "id": 1, + "offset": 96, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1807803351, + "enum_options": { + "kTargetInFront": 0, + "kTargetBehind": 1, + "kTargetFirst": 2, + "kTargetSelf": 3, + "kTargetAll": 4, + "kTargetLast": 5 + } + }, + "m_nDuration": { + "type": "int", + "id": 2, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1110167982 + }, + "m_effectID": { + "type": "unsigned int", + "id": 3, + "offset": 88, + "flags": 24, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2347630439 + }, + "m_imageFilename": { + "type": "std::string", + "id": 4, + "offset": 112, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2813328063 + }, + "m_iconIndex": { + "type": "unsigned int", + "id": 5, + "offset": 144, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1265133262 + }, + "m_soundOnActivate": { + "type": "std::string", + "id": 6, + "offset": 152, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1956929714 + }, + "m_soundOnTarget": { + "type": "std::string", + "id": 7, + "offset": 184, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3444214056 + }, + "m_targetParticleEffect": { + "type": "std::string", + "id": 8, + "offset": 216, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3048234723 + }, + "m_overheadMessage": { + "type": "std::string", + "id": 9, + "offset": 248, + "flags": 8388639, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1701018190 + }, + "m_requirements": { + "type": "class RequirementList", + "id": 10, + "offset": 280, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2840988582 + }, + "m_nTimesToAdd": { + "type": "int", + "id": 11, + "offset": 376, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1414275638 + } + } + }, + "1754037696": { + "name": "class SharedPointer", + "bases": [ + "BurnAuraCinematicAction", + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 1754037696, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + } + } + }, + "1753843605": { + "name": "class SharedPointer", + "bases": [ + "IdleAuraCinematicAction", + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 1753843605, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + } + } + }, + "913912071": { + "name": "class SharedPointer", + "bases": [ + "StatisticEffect", + "GameEffectBase", + "PropertyClass" + ], + "hash": 913912071, + "properties": { + "m_currentTickCount": { + "type": "double", + "id": 0, + "offset": 80, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2533274692 + }, + "m_effectNameID": { + "type": "unsigned int", + "id": 1, + "offset": 96, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1204067144 + }, + "m_bIsOnPet": { + "type": "bool", + "id": 2, + "offset": 73, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 522593303 + }, + "m_originatorID": { + "type": "gid", + "id": 3, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1131810019 + }, + "m_itemSlotID": { + "type": "unsigned int", + "id": 4, + "offset": 112, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1895747595 + }, + "m_internalID": { + "type": "int", + "id": 5, + "offset": 92, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1643137924 + }, + "m_endTime": { + "type": "unsigned int", + "id": 6, + "offset": 88, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 716479635 + }, + "m_lookupIndex": { + "type": "int", + "id": 7, + "offset": 128, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1626623948 + } + } + }, + "1321510462": { + "name": "class ReqHangingEffectType*", + "bases": [ + "ConditionalSpellEffectRequirement", + "Requirement", + "PropertyClass" + ], + "hash": 1321510462, + "properties": { + "m_applyNOT": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1746328074, + "enum_options": { + "__DEFAULT": 0 + } + }, + "m_operator": { + "type": "enum Requirement::Operator", + "id": 1, + "offset": 76, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2672792317, + "enum_options": { + "ROP_AND": 0, + "ROP_OR": 1, + "__DEFAULT": "ROP_AND" + } + }, + "m_targetType": { + "type": "enum ConditionalSpellEffectRequirement::RequirementTarget", + "id": 2, + "offset": 80, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547737902, + "enum_options": { + "RT_Caster": 0, + "RT_Target": 1 + } + }, + "m_effectType": { + "type": "enum SpellEffect::kSpellEffects", + "id": 3, + "offset": 88, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2578255295, + "enum_options": { + "SpellEffect::kInvalidSpellEffect": 0, + "SpellEffect::kAbsorbDamage": 37, + "SpellEffect::kAbsorbHeal": 38, + "SpellEffect::kAddCombatTriggerList": 87, + "SpellEffect::kAfterlife": 82, + "SpellEffect::kBacklashDamage": 89, + "SpellEffect::kBounceAll": 36, + "SpellEffect::kBounceBack": 35, + "SpellEffect::kBounceNext": 33, + "SpellEffect::kBouncePrevious": 34, + "SpellEffect::kCloakedCharm": 42, + "SpellEffect::kCloakedWard": 43, + "SpellEffect::kCloakedWardNoRemove": 86, + "SpellEffect::kConfusion": 41, + "SpellEffect::kConfusionBlock": 109, + "SpellEffect::kCritBlock": 47, + "SpellEffect::kCritBoost": 46, + "SpellEffect::kCritBoostSchoolSpecific": 97, + "SpellEffect::kDamage": 1, + "SpellEffect::kDamageNoCrit": 2, + "SpellEffect::kDamageOverTime": 75, + "SpellEffect::kDamagePerTotalPipPower": 84, + "SpellEffect::kDampen": 68, + "SpellEffect::kDeferredDamage": 83, + "SpellEffect::kDelayCast": 49, + "SpellEffect::kDetonateOverTime": 7, + "SpellEffect::kDispel": 40, + "SpellEffect::kDivideDamage": 105, + "SpellEffect::kHeal": 3, + "SpellEffect::kHealOverTime": 76, + "SpellEffect::kInstantKill": 81, + "SpellEffect::kIntercept": 91, + "SpellEffect::kMaxHealthDamage": 112, + "SpellEffect::kMaximumIncomingDamage": 23, + "SpellEffect::kMindControl": 70, + "SpellEffect::kModifyAccuracy": 39, + "SpellEffect::kModifyBacklash": 90, + "SpellEffect::kModifyCardAccuracy": 53, + "SpellEffect::kModifyCardArmorPiercing": 56, + "SpellEffect::kModifyCardCloak": 50, + "SpellEffect::kModifyCardDamage": 51, + "SpellEffect::kModifyCardMutation": 54, + "SpellEffect::kModifyCardRank": 55, + "SpellEffect::kModifyHate": 74, + "SpellEffect::kModifyIncomingArmorPiercing": 26, + "SpellEffect::kModifyIncomingDamage": 22, + "SpellEffect::kModifyIncomingDamageFlat": 119, + "SpellEffect::kModifyIncomingDamageType": 25, + "SpellEffect::kModifyIncomingHeal": 24, + "SpellEffect::kModifyIncomingHealFlat": 118, + "SpellEffect::kModifyIncomingHealOverTime": 138, + "SpellEffect::kModifyOutgoingArmorPiercing": 30, + "SpellEffect::kModifyOutgoingDamage": 27, + "SpellEffect::kModifyOutgoingDamageFlat": 121, + "SpellEffect::kModifyOutgoingDamageType": 29, + "SpellEffect::kModifyOutgoingHeal": 28, + "SpellEffect::kModifyOutgoingHealFlat": 120, + "SpellEffect::kModifyOutgoingStealHealth": 31, + "SpellEffect::kModifyPipRoundRate": 110, + "SpellEffect::kModifyPips": 71, + "SpellEffect::kModifyPowerPipChance": 77, + "SpellEffect::kModifyPowerPips": 72, + "SpellEffect::kModifyRank": 78, + "SpellEffect::kModifyShadowCreatureLevel": 94, + "SpellEffect::kModifyShadowPips": 73, + "SpellEffect::kPipConversion": 45, + "SpellEffect::kPolymorph": 48, + "SpellEffect::kPowerPipConversion": 100, + "SpellEffect::kProtectBeneficial": 103, + "SpellEffect::kProtectCardBeneficial": 101, + "SpellEffect::kProtectCardHarmful": 102, + "SpellEffect::kProtectHarmful": 104, + "SpellEffect::kPushCharm": 8, + "SpellEffect::kPushOverTime": 12, + "SpellEffect::kPushWard": 10, + "SpellEffect::kReduceOverTime": 6, + "SpellEffect::kRemoveAura": 17, + "SpellEffect::kRemoveCharm": 14, + "SpellEffect::kRemoveCombatTriggerList": 88, + "SpellEffect::kRemoveOverTime": 16, + "SpellEffect::kRemoveWard": 15, + "SpellEffect::kReshuffle": 69, + "SpellEffect::kRevealCloak": 80, + "SpellEffect::kSelectShadowCreatureAttackTarget": 95, + "SpellEffect::kShadowCreature": 93, + "SpellEffect::kShadowDecrementTurn": 96, + "SpellEffect::kShadowSelf": 92, + "SpellEffect::kSpawnCreature": 98, + "SpellEffect::kStealCharm": 9, + "SpellEffect::kStealHealth": 5, + "SpellEffect::kStealOverTime": 13, + "SpellEffect::kStealWard": 11, + "SpellEffect::kStun": 67, + "SpellEffect::kStunBlock": 79, + "SpellEffect::kStunResist": 44, + "SpellEffect::kSummonCreature": 65, + "SpellEffect::kSwapCharm": 19, + "SpellEffect::kSwapOverTime": 21, + "SpellEffect::kSwapWard": 20, + "SpellEffect::kTeleportPlayer": 66, + "SpellEffect::kUnPolymorph": 99, + "SpellEffect::kMaxHealthHeal": 129, + "SpellEffect::kHealByWard": 130, + "SpellEffect::kTaunt": 131, + "SpellEffect::kPacify": 132 + } + }, + "m_param_low": { + "type": "int", + "id": 4, + "offset": 92, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1624315676 + }, + "m_param_high": { + "type": "int", + "id": 5, + "offset": 96, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2059828426 + }, + "m_min_count": { + "type": "int", + "id": 6, + "offset": 100, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 741023238 + }, + "m_max_count": { + "type": "int", + "id": 7, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1273157256 + } + } + }, + "44866809": { + "name": "class TreasureBookBehavior", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 44866809, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_spellList": { + "type": "class SharedPointer", + "id": 1, + "offset": 120, + "flags": 27, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2181913740 + } + } + }, + "1753945993": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1753945993, + "properties": { + "m_plantList": { + "type": "class GardenPlant", + "id": 0, + "offset": 72, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 645587347 + } + } + }, + "475375693": { + "name": "class RecreateNPCActorCinematicAction", + "bases": [ + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 475375693, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + } + } + }, + "913826227": { + "name": "class SharedPointer", + "bases": [ + "Requirement", + "PropertyClass" + ], + "hash": 913826227, + "properties": { + "m_applyNOT": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1746328074, + "enum_options": { + "__DEFAULT": 0 + } + }, + "m_operator": { + "type": "enum Requirement::Operator", + "id": 1, + "offset": 76, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2672792317, + "enum_options": { + "ROP_AND": 0, + "ROP_OR": 1, + "__DEFAULT": "ROP_AND" + } + } + } + }, + "1321043843": { + "name": "class SpellEffectParamOverride*", + "bases": [ + "PropertyClass" + ], + "hash": 1321043843, + "properties": { + "m_effectIndex": { + "type": "int", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 350070655 + }, + "m_paramValue": { + "type": "int", + "id": 1, + "offset": 76, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2048907304 + } + } + }, + "474459546": { + "name": "class ClientDynaModBehavior*", + "bases": [ + "DynaModBehavior", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 474459546, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + } + } + }, + "1320065506": { + "name": "class SharedPointer", + "bases": [ + "MoveController::MoveCommand", + "PropertyClass" + ], + "hash": 1320065506, + "properties": { + "m_fYaw": { + "type": "float", + "id": 0, + "offset": 88, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 309564718 + } + } + }, + "474458266": { + "name": "class ClientDynaModBehavior", + "bases": [ + "DynaModBehavior", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 474458266, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + } + } + }, + "1319976928": { + "name": "class SharedPointer", + "bases": [ + "ConditionalSpellEffectRequirement", + "Requirement", + "PropertyClass" + ], + "hash": 1319976928, + "properties": { + "m_applyNOT": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1746328074, + "enum_options": { + "__DEFAULT": 0 + } + }, + "m_operator": { + "type": "enum Requirement::Operator", + "id": 1, + "offset": 76, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2672792317, + "enum_options": { + "ROP_AND": 0, + "ROP_OR": 1, + "__DEFAULT": "ROP_AND" + } + }, + "m_targetType": { + "type": "enum ConditionalSpellEffectRequirement::RequirementTarget", + "id": 2, + "offset": 80, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547737902, + "enum_options": { + "RT_Caster": 0, + "RT_Target": 1 + } + } + } + }, + "45152925": { + "name": "class CylinderGeomParams", + "bases": [ + "GeomParams", + "PropertyClass" + ], + "hash": 45152925, + "properties": { + "m_eType": { + "type": "enum ProxyType", + "id": 0, + "offset": 72, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1656534066, + "enum_options": { + "ProxyTypeBox": 0, + "ProxyTypeRay": 1, + "ProxyTypeSphere": 2, + "ProxyTypeCylinder": 3, + "ProxyTypeTube": 4, + "ProxyTypePlane": 5, + "ProxyTypeMesh": 6, + "ProxyTypeInvalid": 7 + } + }, + "m_fRadius": { + "type": "float", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 787972805 + }, + "m_fLength": { + "type": "float", + "id": 2, + "offset": 84, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 558261279 + } + } + }, + "1754613237": { + "name": "class SharedPointer", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 1754613237, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + }, + "m_maxReagentsPerStack": { + "type": "int", + "id": 1, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1052405942 + } + } + }, + "1754288358": { + "name": "class std::list >", + "bases": [], + "hash": 1754288358, + "properties": {} + }, + "913994654": { + "name": "class PlaneGeomParams*", + "bases": [ + "GeomParams", + "PropertyClass" + ], + "hash": 913994654, + "properties": { + "m_eType": { + "type": "enum ProxyType", + "id": 0, + "offset": 72, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1656534066, + "enum_options": { + "ProxyTypeBox": 0, + "ProxyTypeRay": 1, + "ProxyTypeSphere": 2, + "ProxyTypeCylinder": 3, + "ProxyTypeTube": 4, + "ProxyTypePlane": 5, + "ProxyTypeMesh": 6, + "ProxyTypeInvalid": 7 + } + }, + "m_vNormal": { + "type": "class Vector3D", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3552296097 + }, + "m_fDistance": { + "type": "float", + "id": 2, + "offset": 92, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 194015112 + } + } + }, + "474703847": { + "name": "class PvPTourneyCurrencyBonusLootInfo", + "bases": [ + "LootInfo", + "LootInfoBase", + "PropertyClass" + ], + "hash": 474703847, + "properties": { + "m_lootType": { + "type": "enum LootInfo::LOOT_TYPE", + "id": 0, + "offset": 72, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1591891442, + "enum_options": { + "LOOT_TYPE_NONE": 0, + "LOOT_TYPE_GOLD": 1, + "LOOT_TYPE_MANA": 2, + "LOOT_TYPE_ITEM": 3, + "LOOT_TYPE_TREASURE_CARD": 4, + "LOOT_TYPE_MAGIC_XP": 5, + "LOOT_TYPE_ADD_SPELL": 6, + "LOOT_TYPE_MAX_HEALTH": 7, + "LOOT_TYPE_MAX_GOLD": 8, + "LOOT_TYPE_MAX_MANA": 9, + "LOOT_TYPE_MAX_POTION": 10, + "LOOT_TYPE_TRAINING_POINTS": 11, + "LOOT_TYPE_RECIPE": 12, + "LOOT_TYPE_CRAFTING_SLOT": 13, + "LOOT_TYPE_REAGENT": 14, + "LOOT_TYPE_PETSNACK": 15, + "LOOT_TYPE_GARDENING_XP": 16, + "LOOT_TYPE_PET_XP": 17, + "LOOT_TYPE_TREASURE_TABLE": 18, + "LOOT_TYPE_ARENA_POINTS": 19, + "LOOT_TYPE_ARENA_BONUS_POINTS": 20, + "LOOT_TYPE_GROUP": 21, + "LOOT_TYPE_FISHING_XP": 22, + "LOOT_TYPE_EVENT_CURRENCY_1": 24, + "LOOT_TYPE_EVENT_CURRENCY_2": 25, + "LOOT_TYPE_PVP_CURRENCY": 26, + "LOOT_TYPE_PVP_CURRENCY_BONUS": 27, + "LOOT_TYPE_PVP_TOURNEY_CURRENCY": 28, + "LOOT_TYPE_PVP_TOURNEY_CURRENCY_BONUS": 29, + "LOOT_TYPE_FURNITURE_ESSENCE": 30 + } + }, + "m_pvpTourneyCurrencyBonusAmount": { + "type": "int", + "id": 1, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1691016556 + } + } + }, + "65003719": { + "name": "class Requirement*", + "bases": [ + "PropertyClass" + ], + "hash": 65003719, + "properties": { + "m_applyNOT": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1746328074, + "enum_options": { + "__DEFAULT": 0 + } + }, + "m_operator": { + "type": "enum Requirement::Operator", + "id": 1, + "offset": 76, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2672792317, + "enum_options": { + "ROP_AND": 0, + "ROP_OR": 1, + "__DEFAULT": "ROP_AND" + } + } + } + }, + "914083479": { + "name": "class ReagentItemTemplate", + "bases": [ + "WizItemTemplate", + "ItemTemplate", + "GameObjectTemplate", + "CoreTemplate", + "PropertyClass" + ], + "hash": 914083479, + "properties": { + "m_behaviors": { + "type": "class BehaviorTemplate*", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1197808594 + }, + "m_objectName": { + "type": "std::string", + "id": 1, + "offset": 96, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2154940147 + }, + "m_templateID": { + "type": "unsigned int", + "id": 2, + "offset": 128, + "flags": 16777223, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1286746870 + }, + "m_visualID": { + "type": "unsigned int", + "id": 3, + "offset": 132, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1118778894 + }, + "m_adjectiveList": { + "type": "std::string", + "id": 4, + "offset": 248, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 3195213318 + }, + "m_exemptFromAOI": { + "type": "bool", + "id": 5, + "offset": 240, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1457879059 + }, + "m_displayName": { + "type": "std::string", + "id": 6, + "offset": 168, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2446900370 + }, + "m_description": { + "type": "std::string", + "id": 7, + "offset": 136, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1649374815 + }, + "m_nObjectType": { + "type": "enum ObjectType", + "id": 8, + "offset": 200, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2118905880, + "enum_options": { + "OT_UNDEFINED": 0, + "OT_PLAYER": 1, + "OT_NPC": 2, + "OT_PROP": 3, + "OT_OBJECT": 4, + "OT_HOUSE": 5, + "OT_KEY": 6, + "OT_OLD_KEY": 7, + "OT_DEED": 8, + "OT_MAIL": 9, + "OT_RECIPE": 17, + "OT_EQUIP_HEAD": 10, + "OT_EQUIP_CHEST": 11, + "OT_EQUIP_LEGS": 12, + "OT_EQUIP_HANDS": 13, + "OT_EQUIP_FINGER": 14, + "OT_EQUIP_FEET": 15, + "OT_EQUIP_EAR": 16, + "OT_BUILDING_BLOCK": 18, + "OT_BUILDING_BLOCK_SOLID": 19, + "OT_GOLF": 20, + "OT_DOOR": 21, + "OT_PET": 22, + "OT_FABRIC": 23, + "OT_WINDOW": 24, + "OT_ROOF": 25, + "OT_HORSE": 26, + "OT_STRUCTURE": 27, + "OT_HOUSING_TEXTURE": 28, + "OT_PLANT": 29 + } + }, + "m_sIcon": { + "type": "std::string", + "id": 9, + "offset": 208, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306259831 + }, + "m_equipRequirements": { + "type": "class RequirementList*", + "id": 10, + "offset": 280, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2762617226 + }, + "m_purchaseRequirements": { + "type": "class RequirementList*", + "id": 11, + "offset": 288, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3174641793 + }, + "m_equipEffects": { + "type": "class GameEffectInfo*", + "id": 12, + "offset": 296, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 836628351 + }, + "m_baseCost": { + "type": "float", + "id": 13, + "offset": 312, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1565352651 + }, + "m_creditsCost": { + "type": "float", + "id": 14, + "offset": 320, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 805514974 + }, + "m_avatarInfo": { + "type": "class AvatarItemInfoBase*", + "id": 15, + "offset": 328, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2627321299 + }, + "m_avatarFlags": { + "type": "std::string", + "id": 16, + "offset": 336, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2347762759 + }, + "m_itemLimit": { + "type": "int", + "id": 17, + "offset": 316, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1799746856 + }, + "m_holidayFlag": { + "type": "std::string", + "id": 18, + "offset": 352, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2994795359 + }, + "m_itemSetBonusTemplateID": { + "type": "unsigned int", + "id": 19, + "offset": 384, + "flags": 33554439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1316835672 + }, + "m_numPrimaryColors": { + "type": "int", + "id": 20, + "offset": 428, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 981103872 + }, + "m_numSecondaryColors": { + "type": "int", + "id": 21, + "offset": 432, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1310416868 + }, + "m_numPatterns": { + "type": "int", + "id": 22, + "offset": 436, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 953162171 + }, + "m_school": { + "type": "std::string", + "id": 23, + "offset": 392, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2438566051 + }, + "m_arenaPointCost": { + "type": "int", + "id": 24, + "offset": 440, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1819621796 + }, + "m_pvpCurrencyCost": { + "type": "int", + "id": 25, + "offset": 444, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 645595444 + }, + "m_pvpTourneyCurrencyCost": { + "type": "int", + "id": 26, + "offset": 448, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 517874954 + }, + "m_rank": { + "type": "int", + "id": 27, + "offset": 424, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 219803942 + }, + "m_boyIconIndex": { + "type": "int", + "id": 28, + "offset": 452, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 802140453 + }, + "m_girlIconIndex": { + "type": "int", + "id": 29, + "offset": 456, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 832706793 + }, + "m_leashOffsetOverride": { + "type": "class SharedPointer", + "id": 30, + "offset": 464, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1692586788 + }, + "m_rarity": { + "type": "enum RarityType", + "id": 31, + "offset": 460, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2253792108, + "enum_options": { + "RT_COMMON": 0, + "RT_UNCOMMON": 1, + "RT_RARE": 2, + "RT_ULTRARARE": 3, + "RT_EPIC": 4 + } + }, + "m_iconIndex": { + "type": "int", + "id": 32, + "offset": 480, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1053730811 + }, + "m_imageName": { + "type": "std::string", + "id": 33, + "offset": 488, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2391520543 + } + } + }, + "1321510422": { + "name": "class ReqHangingEffectType", + "bases": [ + "ConditionalSpellEffectRequirement", + "Requirement", + "PropertyClass" + ], + "hash": 1321510422, + "properties": { + "m_applyNOT": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1746328074, + "enum_options": { + "__DEFAULT": 0 + } + }, + "m_operator": { + "type": "enum Requirement::Operator", + "id": 1, + "offset": 76, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2672792317, + "enum_options": { + "ROP_AND": 0, + "ROP_OR": 1, + "__DEFAULT": "ROP_AND" + } + }, + "m_targetType": { + "type": "enum ConditionalSpellEffectRequirement::RequirementTarget", + "id": 2, + "offset": 80, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547737902, + "enum_options": { + "RT_Caster": 0, + "RT_Target": 1 + } + }, + "m_effectType": { + "type": "enum SpellEffect::kSpellEffects", + "id": 3, + "offset": 88, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2578255295, + "enum_options": { + "SpellEffect::kInvalidSpellEffect": 0, + "SpellEffect::kAbsorbDamage": 37, + "SpellEffect::kAbsorbHeal": 38, + "SpellEffect::kAddCombatTriggerList": 87, + "SpellEffect::kAfterlife": 82, + "SpellEffect::kBacklashDamage": 89, + "SpellEffect::kBounceAll": 36, + "SpellEffect::kBounceBack": 35, + "SpellEffect::kBounceNext": 33, + "SpellEffect::kBouncePrevious": 34, + "SpellEffect::kCloakedCharm": 42, + "SpellEffect::kCloakedWard": 43, + "SpellEffect::kCloakedWardNoRemove": 86, + "SpellEffect::kConfusion": 41, + "SpellEffect::kConfusionBlock": 109, + "SpellEffect::kCritBlock": 47, + "SpellEffect::kCritBoost": 46, + "SpellEffect::kCritBoostSchoolSpecific": 97, + "SpellEffect::kDamage": 1, + "SpellEffect::kDamageNoCrit": 2, + "SpellEffect::kDamageOverTime": 75, + "SpellEffect::kDamagePerTotalPipPower": 84, + "SpellEffect::kDampen": 68, + "SpellEffect::kDeferredDamage": 83, + "SpellEffect::kDelayCast": 49, + "SpellEffect::kDetonateOverTime": 7, + "SpellEffect::kDispel": 40, + "SpellEffect::kDivideDamage": 105, + "SpellEffect::kHeal": 3, + "SpellEffect::kHealOverTime": 76, + "SpellEffect::kInstantKill": 81, + "SpellEffect::kIntercept": 91, + "SpellEffect::kMaxHealthDamage": 112, + "SpellEffect::kMaximumIncomingDamage": 23, + "SpellEffect::kMindControl": 70, + "SpellEffect::kModifyAccuracy": 39, + "SpellEffect::kModifyBacklash": 90, + "SpellEffect::kModifyCardAccuracy": 53, + "SpellEffect::kModifyCardArmorPiercing": 56, + "SpellEffect::kModifyCardCloak": 50, + "SpellEffect::kModifyCardDamage": 51, + "SpellEffect::kModifyCardMutation": 54, + "SpellEffect::kModifyCardRank": 55, + "SpellEffect::kModifyHate": 74, + "SpellEffect::kModifyIncomingArmorPiercing": 26, + "SpellEffect::kModifyIncomingDamage": 22, + "SpellEffect::kModifyIncomingDamageFlat": 119, + "SpellEffect::kModifyIncomingDamageType": 25, + "SpellEffect::kModifyIncomingHeal": 24, + "SpellEffect::kModifyIncomingHealFlat": 118, + "SpellEffect::kModifyIncomingHealOverTime": 138, + "SpellEffect::kModifyOutgoingArmorPiercing": 30, + "SpellEffect::kModifyOutgoingDamage": 27, + "SpellEffect::kModifyOutgoingDamageFlat": 121, + "SpellEffect::kModifyOutgoingDamageType": 29, + "SpellEffect::kModifyOutgoingHeal": 28, + "SpellEffect::kModifyOutgoingHealFlat": 120, + "SpellEffect::kModifyOutgoingStealHealth": 31, + "SpellEffect::kModifyPipRoundRate": 110, + "SpellEffect::kModifyPips": 71, + "SpellEffect::kModifyPowerPipChance": 77, + "SpellEffect::kModifyPowerPips": 72, + "SpellEffect::kModifyRank": 78, + "SpellEffect::kModifyShadowCreatureLevel": 94, + "SpellEffect::kModifyShadowPips": 73, + "SpellEffect::kPipConversion": 45, + "SpellEffect::kPolymorph": 48, + "SpellEffect::kPowerPipConversion": 100, + "SpellEffect::kProtectBeneficial": 103, + "SpellEffect::kProtectCardBeneficial": 101, + "SpellEffect::kProtectCardHarmful": 102, + "SpellEffect::kProtectHarmful": 104, + "SpellEffect::kPushCharm": 8, + "SpellEffect::kPushOverTime": 12, + "SpellEffect::kPushWard": 10, + "SpellEffect::kReduceOverTime": 6, + "SpellEffect::kRemoveAura": 17, + "SpellEffect::kRemoveCharm": 14, + "SpellEffect::kRemoveCombatTriggerList": 88, + "SpellEffect::kRemoveOverTime": 16, + "SpellEffect::kRemoveWard": 15, + "SpellEffect::kReshuffle": 69, + "SpellEffect::kRevealCloak": 80, + "SpellEffect::kSelectShadowCreatureAttackTarget": 95, + "SpellEffect::kShadowCreature": 93, + "SpellEffect::kShadowDecrementTurn": 96, + "SpellEffect::kShadowSelf": 92, + "SpellEffect::kSpawnCreature": 98, + "SpellEffect::kStealCharm": 9, + "SpellEffect::kStealHealth": 5, + "SpellEffect::kStealOverTime": 13, + "SpellEffect::kStealWard": 11, + "SpellEffect::kStun": 67, + "SpellEffect::kStunBlock": 79, + "SpellEffect::kStunResist": 44, + "SpellEffect::kSummonCreature": 65, + "SpellEffect::kSwapCharm": 19, + "SpellEffect::kSwapOverTime": 21, + "SpellEffect::kSwapWard": 20, + "SpellEffect::kTeleportPlayer": 66, + "SpellEffect::kUnPolymorph": 99, + "SpellEffect::kMaxHealthHeal": 129, + "SpellEffect::kHealByWard": 130, + "SpellEffect::kTaunt": 131, + "SpellEffect::kPacify": 132 + } + }, + "m_param_low": { + "type": "int", + "id": 4, + "offset": 92, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1624315676 + }, + "m_param_high": { + "type": "int", + "id": 5, + "offset": 96, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2059828426 + }, + "m_min_count": { + "type": "int", + "id": 6, + "offset": 100, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 741023238 + }, + "m_max_count": { + "type": "int", + "id": 7, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1273157256 + } + } + }, + "52230224": { + "name": "class std::list >", + "bases": [], + "hash": 52230224, + "properties": {} + }, + "1754780671": { + "name": "class HouseTransferResult*", + "bases": [ + "PropertyClass" + ], + "hash": 1754780671, + "properties": { + "m_templateID": { + "type": "unsigned int", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1286746870 + }, + "m_statusResult": { + "type": "int", + "id": 1, + "offset": 76, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1273560413 + } + } + }, + "475232129": { + "name": "class ScrollButton*", + "bases": [ + "ControlPopupButton", + "ControlButton", + "Window", + "PropertyClass" + ], + "hash": 475232129, + "properties": { + "m_sName": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306437263 + }, + "m_Children": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621225959 + }, + "m_Style": { + "type": "unsigned int", + "id": 2, + "offset": 152, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152, + "POPDOWN_SIBLINGS": 67108864, + "DISABLE_CHILDREN": 134217728, + "HIDE_SIBLINGS": 268435456, + "POPUP_ON_HOVER": 536870912 + } + }, + "m_Flags": { + "type": "unsigned int", + "id": 3, + "offset": 156, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } + }, + "m_Window": { + "type": "class Rect", + "id": 4, + "offset": 160, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3105139380 + }, + "m_fTargetAlpha": { + "type": "float", + "id": 5, + "offset": 212, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1809129834 + }, + "m_fDisabledAlpha": { + "type": "float", + "id": 6, + "offset": 216, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1389987675 + }, + "m_fAlpha": { + "type": "float", + "id": 7, + "offset": 208, + "flags": 65671, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 482130755 + }, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3623628394 + }, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2102211316 + }, + "m_sScript": { + "type": "std::string", + "id": 10, + "offset": 352, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1846695875 + }, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3389835433 + }, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547159940 + }, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513510520 + }, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3091503757 + }, + "m_bToggle": { + "type": "bool", + "id": 16, + "offset": 608, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2071810903 + }, + "m_bButtonDown": { + "type": "bool", + "id": 17, + "offset": 609, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 840041705 + }, + "m_sLabel": { + "type": "std::wstring", + "id": 18, + "offset": 616, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2207009163 + }, + "m_labelOffset": { + "type": "class Rect", + "id": 19, + "offset": 832, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1990646723 + }, + "m_pButton": { + "type": "class SharedPointer", + "id": 20, + "offset": 656, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1543855875 + }, + "m_HotKey": { + "type": "unsigned int", + "id": 21, + "offset": 672, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1631553409 + }, + "m_Color": { + "type": "class Color", + "id": 22, + "offset": 676, + "flags": 262279, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1753714077 + }, + "m_bCursorOver": { + "type": "bool", + "id": 23, + "offset": 689, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 283981103 + }, + "m_bAbortWhenCursorNotOver": { + "type": "bool", + "id": 24, + "offset": 706, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 325405258 + }, + "m_bHotKeyDown": { + "type": "bool", + "id": 25, + "offset": 680, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 616989185 + }, + "m_fTime": { + "type": "float", + "id": 26, + "offset": 684, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 883746156 + }, + "m_bGreyed": { + "type": "bool", + "id": 27, + "offset": 688, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1566556053 + }, + "m_fMaxScale": { + "type": "float", + "id": 28, + "offset": 692, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2070186635 + }, + "m_fScaleSpeed": { + "type": "float", + "id": 29, + "offset": 696, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1457135702 + }, + "m_bUseDropShadow": { + "type": "bool", + "id": 30, + "offset": 704, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 93063037 + }, + "m_bUseOutline": { + "type": "bool", + "id": 31, + "offset": 705, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 744292994 + }, + "m_pGreyedState": { + "type": "class SharedPointer", + "id": 32, + "offset": 768, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2703352263 + }, + "m_pNormalState": { + "type": "class SharedPointer", + "id": 33, + "offset": 752, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1887909808 + }, + "m_pHighlightedState": { + "type": "class SharedPointer", + "id": 34, + "offset": 784, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2200177608 + }, + "m_pSelectedState": { + "type": "class SharedPointer", + "id": 35, + "offset": 800, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2266776432 + }, + "m_pDepressedState": { + "type": "class SharedPointer", + "id": 36, + "offset": 816, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1878185798 + }, + "m_bUp": { + "type": "bool", + "id": 37, + "offset": 880, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 269510906 + } + } + }, + "49336727": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 49336727, + "properties": { + "m_socketWrenchTemplateID": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1148289553 + }, + "m_lowestEquipLevelInclusive": { + "type": "int", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1282442502 + }, + "m_hightestEquipLevelInclusive": { + "type": "int", + "id": 2, + "offset": 84, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1111256264 + } + } + }, + "46840221": { + "name": "class GuildMuseumCuratorOption*", + "bases": [ + "ServiceOptionBase", + "PropertyClass" + ], + "hash": 46840221, + "properties": { + "m_serviceName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2206028813 + }, + "m_iconKey": { + "type": "std::string", + "id": 1, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2457138637 + }, + "m_displayKey": { + "type": "std::string", + "id": 2, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3023276954 + }, + "m_serviceIndex": { + "type": "unsigned int", + "id": 3, + "offset": 204, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2103126710 + }, + "m_forceInteract": { + "type": "bool", + "id": 4, + "offset": 200, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1705789564 + } + } + }, + "914561571": { + "name": "class GraphicalGold", + "bases": [ + "GraphicalSpell", + "Spell", + "PropertyClass" + ], + "hash": 914561571, + "properties": { + "m_templateID": { + "type": "unsigned int", + "id": 0, + "offset": 128, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1286746870 + }, + "m_enchantment": { + "type": "unsigned int", + "id": 1, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2217886818 + }, + "m_pipCost": { + "type": "class SharedPointer", + "id": 2, + "offset": 176, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3605704820 + }, + "m_regularAdjust": { + "type": "int", + "id": 3, + "offset": 192, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1420453335 + }, + "m_magicSchoolID": { + "type": "unsigned int", + "id": 4, + "offset": 136, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 893146499 + }, + "m_accuracy": { + "type": "unsigned char", + "id": 5, + "offset": 132, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2273914939 + }, + "m_treasureCard": { + "type": "bool", + "id": 6, + "offset": 197, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1764879128 + }, + "m_battleCard": { + "type": "bool", + "id": 7, + "offset": 198, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1332843753 + }, + "m_itemCard": { + "type": "bool", + "id": 8, + "offset": 199, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1683654300 + }, + "m_sideBoard": { + "type": "bool", + "id": 9, + "offset": 200, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1897838368 + }, + "m_spellID": { + "type": "unsigned int", + "id": 10, + "offset": 204, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1697483258 + }, + "m_leavesPlayWhenCastOverride": { + "type": "bool", + "id": 11, + "offset": 216, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 874407398 + }, + "m_cloaked": { + "type": "bool", + "id": 12, + "offset": 196, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 7349510 + }, + "m_enchantmentSpellIsItemCard": { + "type": "bool", + "id": 13, + "offset": 76, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 531590701 + }, + "m_premutationSpellID": { + "type": "unsigned int", + "id": 14, + "offset": 112, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1530256370 + }, + "m_enchantedThisCombat": { + "type": "bool", + "id": 15, + "offset": 77, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1895738923 + }, + "m_paramOverrides": { + "type": "class SharedPointer", + "id": 16, + "offset": 224, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2061635599 + }, + "m_subEffectMeta": { + "type": "class SharedPointer", + "id": 17, + "offset": 240, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1944101106 + }, + "m_delayEnchantment": { + "type": "bool", + "id": 18, + "offset": 257, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 191336919 + }, + "m_PvE": { + "type": "bool", + "id": 19, + "offset": 264, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 269492350 + }, + "m_delayEnchantmentOrder": { + "type": "enum SpellEffect::kDelayOrder", + "id": 20, + "offset": 72, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2526055263, + "enum_options": { + "SpellEffect::kAnyOrder": 0, + "SpellEffect::kFirst": 1, + "SpellEffect::kSecond": 2 + } + }, + "m_roundAddedTC": { + "type": "int", + "id": 21, + "offset": 260, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 112365451 + }, + "m_secondarySchoolID": { + "type": "unsigned int", + "id": 22, + "offset": 304, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2081206026 + }, + "m_fusionState": { + "type": "enum Spell::FusionState", + "id": 23, + "offset": 308, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 835324539, + "enum_options": { + "FS_Invalid": 0, + "FS_Partial": 1, + "FS_Valid": 2 + } + } + } + }, + "1322428267": { + "name": "class HousingTeleporterTargeting*", + "bases": [ + "PropertyClass" + ], + "hash": 1322428267, + "properties": {} + }, + "46182351": { + "name": "class CastleBlockDoorBehavior", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 46182351, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + } + } + }, + "1758482786": { + "name": "class SharedPointer", + "bases": [ + "CinematicAction", + "PropertyClass" + ], + "hash": 1758482786, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_bSetVisible": { + "type": "bool", + "id": 1, + "offset": 88, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 471535983 + }, + "m_fTimeToSet": { + "type": "float", + "id": 2, + "offset": 84, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 661189659 + }, + "m_timerStrKey": { + "type": "std::string", + "id": 3, + "offset": 96, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3000196414 + }, + "m_timerOp": { + "type": "enum TimerControlCinematicAction::kControlOperation", + "id": 4, + "offset": 80, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1809610086, + "enum_options": { + "kNone": 0, + "kStartTimer": 1, + "kSetVisible": 2, + "kSetTimerString": 3, + "kSetTimeToShow": 4 + } + } + } + }, + "475758968": { + "name": "class QuestEffectTemplate", + "bases": [ + "ContainerEffectTemplate", + "GameEffectTemplate", + "PropertyClass" + ], + "hash": 475758968, + "properties": { + "m_effectName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2029161513 + }, + "m_effectCategory": { + "type": "std::string", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1852673222 + }, + "m_sortOrder": { + "type": "int", + "id": 2, + "offset": 148, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1411218206 + }, + "m_duration": { + "type": "double", + "id": 3, + "offset": 192, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2727932435 + }, + "m_stackingCategories": { + "type": "std::string", + "id": 4, + "offset": 160, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1774497525 + }, + "m_isPersistent": { + "type": "bool", + "id": 5, + "offset": 153, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 923861920 + }, + "m_bIsOnPet": { + "type": "bool", + "id": 6, + "offset": 154, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 522593303 + }, + "m_isPublic": { + "type": "bool", + "id": 7, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1728439822 + }, + "m_visualEffectAddName": { + "type": "std::string", + "id": 8, + "offset": 200, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3382086694 + }, + "m_visualEffectRemoveName": { + "type": "std::string", + "id": 9, + "offset": 232, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1541697323 + }, + "m_onAddFunctorName": { + "type": "std::string", + "id": 10, + "offset": 280, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1561843107 + }, + "m_onRemoveFunctorName": { + "type": "std::string", + "id": 11, + "offset": 312, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2559017864 + }, + "m_stackingRule": { + "type": "enum STACKING_RULE", + "id": 12, + "offset": 144, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 431568889, + "enum_options": { + "STACKING_ALLOWED": 0, + "STACKING_NOSTACK": 1, + "STACKING_REPLACE": 2 + } + }, + "m_startReqs": { + "type": "class SharedPointer", + "id": 13, + "offset": 360, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3147529602 + }, + "m_containerEffects": { + "type": "class SharedPointer", + "id": 14, + "offset": 376, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 957354392 + }, + "m_accompanyID": { + "type": "unsigned int", + "id": 15, + "offset": 392, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1462123093 + } + } + }, + "914342921": { + "name": "class HatchmakingPetsList*", + "bases": [ + "PropertyClass" + ], + "hash": 914342921, + "properties": { + "m_hatchmakingPetsList": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2100166473 + }, + "m_disableKiosk": { + "type": "bool", + "id": 1, + "offset": 88, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1561191592 + }, + "m_disableOffer": { + "type": "bool", + "id": 2, + "offset": 89, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1565817209 + }, + "m_premiumPetExceptionCode": { + "type": "unsigned int", + "id": 3, + "offset": 92, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2278118367 + } + } + }, + "1322428257": { + "name": "class HousingTeleporterTargeting", + "bases": [ + "PropertyClass" + ], + "hash": 1322428257, + "properties": {} + }, + "46079293": { + "name": "class AlphaMaskTextureD3D*", + "bases": [ + "TextureD3D", + "Texture", + "PropertyClass" + ], + "hash": 46079293, + "properties": { + "m_sFilename": { + "type": "std::string", + "id": 0, + "offset": 104, + "flags": 131207, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2431512111 + }, + "m_bAlphaChannel": { + "type": "bool", + "id": 1, + "offset": 137, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1780697684 + }, + "m_bDoubleSided": { + "type": "bool", + "id": 2, + "offset": 138, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1054874233 + }, + "m_bMipMap": { + "type": "bool", + "id": 3, + "offset": 139, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1791042393 + } + } + }, + "1756429664": { + "name": "struct std::pair,union gid>", + "bases": [], + "hash": 1756429664, + "properties": {} + }, + "914254483": { + "name": "class SharedPointer", + "bases": [ + "HelpChatOperator", + "PropertyClass" + ], + "hash": 914254483, + "properties": { + "m_rootElement": { + "type": "class HelpChatElement", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2242085258 + } + } + }, + "1322165141": { + "name": "class SharedPointer", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 1322165141, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + }, + "m_FXOverrideBehaviorInfo": { + "type": "class FXOverrideBehaviorInfo", + "id": 1, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1746411198 + } + } + }, + "1755995099": { + "name": "class ClientZoneTokenBehavior", + "bases": [ + "ZoneTokenBehavior", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1755995099, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_tokens": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 27, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621026866 + } + } + }, + "479740309": { + "name": "class ClientBattlegroundPlayerStatsManager", + "bases": [ + "BattlegroundPlayerStatsManager", + "PropertyClass" + ], + "hash": 479740309, + "properties": { + "m_statsList": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2999855587 + }, + "m_poi": { + "type": "class SharedPointer", + "id": 1, + "offset": 88, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1342603341 + } + } + }, + "46267421": { + "name": "class AlternateTurnsCombatRule", + "bases": [ + "CombatRule", + "PropertyClass" + ], + "hash": 46267421, + "properties": { + "m_alternateTurns": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1974126767 + }, + "m_pipsForBothTeamsAtOnce": { + "type": "bool", + "id": 1, + "offset": 73, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 289530295 + } + } + }, + "477454092": { + "name": "class SharedPointer", + "bases": [ + "Window", + "PropertyClass" + ], + "hash": 477454092, + "properties": { + "m_sName": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306437263 + }, + "m_Children": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621225959 + }, + "m_Style": { + "type": "unsigned int", + "id": 2, + "offset": 152, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152, + "SLC_NUMBERS": 16777216 + } + }, + "m_Flags": { + "type": "unsigned int", + "id": 3, + "offset": 156, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } + }, + "m_Window": { + "type": "class Rect", + "id": 4, + "offset": 160, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3105139380 + }, + "m_fTargetAlpha": { + "type": "float", + "id": 5, + "offset": 212, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1809129834 + }, + "m_fDisabledAlpha": { + "type": "float", + "id": 6, + "offset": 216, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1389987675 + }, + "m_fAlpha": { + "type": "float", + "id": 7, + "offset": 208, + "flags": 65671, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 482130755 + }, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3623628394 + }, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2102211316 + }, + "m_sScript": { + "type": "std::string", + "id": 10, + "offset": 352, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1846695875 + }, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3389835433 + }, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547159940 + }, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513510520 + }, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3091503757 + }, + "m_cardSize": { + "type": "class Size", + "id": 16, + "offset": 716, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1135567057 + }, + "m_spacing": { + "type": "class Point", + "id": 17, + "offset": 724, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3187881255 + }, + "m_holes": { + "type": "class Rect", + "id": 18, + "offset": 696, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1902151287 + } + } + }, + "914357476": { + "name": "class ObstacleCourseRevolvingDoorBehaviorTemplate", + "bases": [ + "ObstacleCourseObstacleBehaviorTemplate", + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 914357476, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + }, + "m_startAngle": { + "type": "float", + "id": 1, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 737826060 + }, + "m_angularVelocity": { + "type": "float", + "id": 2, + "offset": 124, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 412636784 + }, + "m_radius": { + "type": "float", + "id": 3, + "offset": 128, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 989410271 + }, + "m_innerRadius": { + "type": "float", + "id": 4, + "offset": 132, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 686816091 + }, + "m_nearMissRange": { + "type": "float", + "id": 5, + "offset": 136, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2005992806 + }, + "m_nearMissAngleOffset": { + "type": "float", + "id": 6, + "offset": 140, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2062603911 + }, + "m_walls": { + "type": "class Vector3D", + "id": 7, + "offset": 144, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2471997733 + } + } + }, + "1757305819": { + "name": "class ClientZoneTokenBehavior*", + "bases": [ + "ZoneTokenBehavior", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1757305819, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_tokens": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 27, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621026866 + } + } + }, + "477074275": { + "name": "class ChatSpamHelper*", + "bases": [ + "PropertyClass" + ], + "hash": 477074275, + "properties": {} + }, + "1322463047": { + "name": "class AdvPvPMatchInfo", + "bases": [ + "PvPMatchInfo", + "ArenaMatchInfo", + "PropertyClass" + ], + "hash": 1322463047, + "properties": { + "m_matchID": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1757621298 + }, + "m_matchNameID": { + "type": "unsigned int", + "id": 1, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1751361288 + }, + "m_teams": { + "type": "class SharedPointer", + "id": 2, + "offset": 96, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1984373608 + }, + "m_matchName": { + "type": "std::string", + "id": 3, + "offset": 112, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2061215721 + }, + "m_matchTitle": { + "type": "std::string", + "id": 4, + "offset": 144, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2918442218 + }, + "m_matchZoneID": { + "type": "gid", + "id": 5, + "offset": 176, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2026205966 + }, + "m_creatorID": { + "type": "gid", + "id": 6, + "offset": 88, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1051766037 + }, + "m_matchZone": { + "type": "std::string", + "id": 7, + "offset": 184, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2061662244 + }, + "m_startTime": { + "type": "int", + "id": 8, + "offset": 216, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1386968823 + }, + "m_status": { + "type": "int", + "id": 9, + "offset": 220, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 960781182 + }, + "m_friendsOnly": { + "type": "bool", + "id": 10, + "offset": 236, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1420401792 + }, + "m_tournamentNameID": { + "type": "unsigned int", + "id": 11, + "offset": 224, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1799846440 + }, + "m_leagueID": { + "type": "unsigned int", + "id": 12, + "offset": 228, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 692361645 + }, + "m_seasonID": { + "type": "unsigned int", + "id": 13, + "offset": 232, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 535260643 + }, + "m_bUpdateLadder": { + "type": "bool", + "id": 14, + "offset": 248, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1937525956 + }, + "m_maxPointsPerMatch": { + "type": "unsigned int", + "id": 15, + "offset": 240, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1397040900 + }, + "m_estimatedWeight": { + "type": "float", + "id": 16, + "offset": 244, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1374360127 + }, + "m_maxELOError": { + "type": "int", + "id": 17, + "offset": 252, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 318998922 + }, + "m_uniqueMatchID": { + "type": "std::string", + "id": 18, + "offset": 264, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3291026220 + }, + "m_pvpDuelModifiersTemplates": { + "type": "class SharedPointer", + "id": 19, + "offset": 296, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1193155411 + }, + "m_teamSize": { + "type": "unsigned int", + "id": 20, + "offset": 256, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2343388751 + }, + "m_joinQueueRequirements": { + "type": "class SharedPointer", + "id": 21, + "offset": 312, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2746080983 + }, + "m_timeLimitSec": { + "type": "unsigned int", + "id": 22, + "offset": 328, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 312519798 + }, + "m_useHistoricDiego": { + "type": "bool", + "id": 23, + "offset": 352, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1688842509 + }, + "m_ignoredList": { + "type": "gid", + "id": 24, + "offset": 336, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1850924028 + }, + "m_matchTimer": { + "type": "float", + "id": 25, + "offset": 356, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1510935909 + }, + "m_bonusTime": { + "type": "int", + "id": 26, + "offset": 360, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1757496496 + }, + "m_passPenalty": { + "type": "int", + "id": 27, + "offset": 364, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 982951662 + }, + "m_yellowTime": { + "type": "int", + "id": 28, + "offset": 368, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1017028741 + }, + "m_redTime": { + "type": "int", + "id": 29, + "offset": 372, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1909556708 + }, + "m_minTurnTime": { + "type": "int", + "id": 30, + "offset": 376, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 652524886 + }, + "m_effects": { + "type": "class SharedPointer", + "id": 31, + "offset": 384, + "flags": 31, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 804962647 + }, + "m_updateBattlePassPoints": { + "type": "bool", + "id": 32, + "offset": 408, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 713306342 + }, + "m_battlePassWinPoints": { + "type": "int", + "id": 33, + "offset": 412, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1252337240 + }, + "m_battlePassLosePoints": { + "type": "int", + "id": 34, + "offset": 416, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1400839869 + } + } + }, + "46407369": { + "name": "enum ClassProjectType", + "bases": [], + "hash": 46407369, + "properties": {} + }, + "1756484975": { + "name": "class SharedPointer", + "bases": [ + "GameEffectBase", + "PropertyClass" + ], + "hash": 1756484975, + "properties": { + "m_currentTickCount": { + "type": "double", + "id": 0, + "offset": 80, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2533274692 + }, + "m_effectNameID": { + "type": "unsigned int", + "id": 1, + "offset": 96, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1204067144 + }, + "m_bIsOnPet": { + "type": "bool", + "id": 2, + "offset": 73, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 522593303 + }, + "m_originatorID": { + "type": "gid", + "id": 3, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1131810019 + }, + "m_itemSlotID": { + "type": "unsigned int", + "id": 4, + "offset": 112, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1895747595 + }, + "m_internalID": { + "type": "int", + "id": 5, + "offset": 92, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1643137924 + }, + "m_endTime": { + "type": "unsigned int", + "id": 6, + "offset": 88, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 716479635 + } + } + }, + "476074616": { + "name": "class SharedPointer", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 476074616, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_petData": { + "type": "std::string", + "id": 1, + "offset": 144, + "flags": 551, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2990195294 + } + } + }, + "914561576": { + "name": "class GraphicalGold*", + "bases": [ + "GraphicalSpell", + "Spell", + "PropertyClass" + ], + "hash": 914561576, + "properties": { + "m_templateID": { + "type": "unsigned int", + "id": 0, + "offset": 128, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1286746870 + }, + "m_enchantment": { + "type": "unsigned int", + "id": 1, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2217886818 + }, + "m_pipCost": { + "type": "class SharedPointer", + "id": 2, + "offset": 176, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3605704820 + }, + "m_regularAdjust": { + "type": "int", + "id": 3, + "offset": 192, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1420453335 + }, + "m_magicSchoolID": { + "type": "unsigned int", + "id": 4, + "offset": 136, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 893146499 + }, + "m_accuracy": { + "type": "unsigned char", + "id": 5, + "offset": 132, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2273914939 + }, + "m_treasureCard": { + "type": "bool", + "id": 6, + "offset": 197, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1764879128 + }, + "m_battleCard": { + "type": "bool", + "id": 7, + "offset": 198, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1332843753 + }, + "m_itemCard": { + "type": "bool", + "id": 8, + "offset": 199, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1683654300 + }, + "m_sideBoard": { + "type": "bool", + "id": 9, + "offset": 200, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1897838368 + }, + "m_spellID": { + "type": "unsigned int", + "id": 10, + "offset": 204, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1697483258 + }, + "m_leavesPlayWhenCastOverride": { + "type": "bool", + "id": 11, + "offset": 216, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 874407398 + }, + "m_cloaked": { + "type": "bool", + "id": 12, + "offset": 196, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 7349510 + }, + "m_enchantmentSpellIsItemCard": { + "type": "bool", + "id": 13, + "offset": 76, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 531590701 + }, + "m_premutationSpellID": { + "type": "unsigned int", + "id": 14, + "offset": 112, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1530256370 + }, + "m_enchantedThisCombat": { + "type": "bool", + "id": 15, + "offset": 77, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1895738923 + }, + "m_paramOverrides": { + "type": "class SharedPointer", + "id": 16, + "offset": 224, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2061635599 + }, + "m_subEffectMeta": { + "type": "class SharedPointer", + "id": 17, + "offset": 240, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1944101106 + }, + "m_delayEnchantment": { + "type": "bool", + "id": 18, + "offset": 257, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 191336919 + }, + "m_PvE": { + "type": "bool", + "id": 19, + "offset": 264, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 269492350 + }, + "m_delayEnchantmentOrder": { + "type": "enum SpellEffect::kDelayOrder", + "id": 20, + "offset": 72, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2526055263, + "enum_options": { + "SpellEffect::kAnyOrder": 0, + "SpellEffect::kFirst": 1, + "SpellEffect::kSecond": 2 + } + }, + "m_roundAddedTC": { + "type": "int", + "id": 21, + "offset": 260, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 112365451 + }, + "m_secondarySchoolID": { + "type": "unsigned int", + "id": 22, + "offset": 304, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2081206026 + }, + "m_fusionState": { + "type": "enum Spell::FusionState", + "id": 23, + "offset": 308, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 835324539, + "enum_options": { + "FS_Invalid": 0, + "FS_Partial": 1, + "FS_Valid": 2 + } + } + } + }, + "1756710922": { + "name": "class SharedPointer", + "bases": [ + "GameEffectInfo", + "PropertyClass" + ], + "hash": 1756710922, + "properties": { + "m_effectName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2029161513 + }, + "m_pipsGiven": { + "type": "int", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1346249167 + }, + "m_powerPipsGiven": { + "type": "int", + "id": 2, + "offset": 108, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 377908508 + } + } + }, + "476217519": { + "name": "class CantripsInvisibilityEffectInfo", + "bases": [ + "GameEffectInfo", + "PropertyClass" + ], + "hash": 476217519, + "properties": { + "m_effectName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2029161513 + } + } + }, + "1326255751": { + "name": "class TreasureShopOption*", + "bases": [ + "ServiceOptionBase", + "PropertyClass" + ], + "hash": 1326255751, + "properties": { + "m_serviceName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2206028813 + }, + "m_iconKey": { + "type": "std::string", + "id": 1, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2457138637 + }, + "m_displayKey": { + "type": "std::string", + "id": 2, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3023276954 + }, + "m_serviceIndex": { + "type": "unsigned int", + "id": 3, + "offset": 204, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2103126710 + }, + "m_forceInteract": { + "type": "bool", + "id": 4, + "offset": 200, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1705789564 + } + } + }, + "47493071": { + "name": "class CastleBlockDoorBehavior*", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 47493071, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + } + } + }, + "1323967923": { + "name": "class SharedPointer", + "bases": [ + "WindowAnimation", + "PropertyClass" + ], + "hash": 1323967923, + "properties": { + "m_bUseDeepCopy": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 433380635 + } + } + }, + "47104000": { + "name": "class WizardClientZoneTokenBehavior*", + "bases": [ + "ClientZoneTokenBehavior", + "ZoneTokenBehavior", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 47104000, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_tokens": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 27, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621026866 + } + } + }, + "945970905": { + "name": "class AdvPvPEloRecord", + "bases": [ + "PropertyClass" + ], + "hash": 945970905, + "properties": { + "m_eloRecordID": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 16777279, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 832082468 + }, + "m_leagueID": { + "type": "unsigned int", + "id": 1, + "offset": 80, + "flags": 33554495, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 692361645 + }, + "m_seasonID": { + "type": "unsigned int", + "id": 2, + "offset": 84, + "flags": 33554495, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 535260643 + }, + "m_startTime": { + "type": "unsigned int", + "id": 3, + "offset": 88, + "flags": 33554495, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1598371274 + }, + "m_ended": { + "type": "bool", + "id": 4, + "offset": 92, + "flags": 33554495, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 795768915 + }, + "m_elo": { + "type": "int", + "id": 5, + "offset": 96, + "flags": 33554495, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 267033754 + }, + "m_rankIndex": { + "type": "int", + "id": 6, + "offset": 100, + "flags": 33554495, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 716259486 + }, + "m_wins": { + "type": "int", + "id": 7, + "offset": 104, + "flags": 33554495, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 219992347 + }, + "m_losses": { + "type": "int", + "id": 8, + "offset": 108, + "flags": 33554495, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 681549075 + }, + "m_draws": { + "type": "int", + "id": 9, + "offset": 112, + "flags": 33554495, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 792242907 + } + } + }, + "1323589008": { + "name": "class SharedPointer", + "bases": [ + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 1323589008, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + }, + "m_animation": { + "type": "std::string", + "id": 2, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3431428731 + } + } + }, + "46907392": { + "name": "class WizardClientZoneTokenBehavior", + "bases": [ + "ClientZoneTokenBehavior", + "ZoneTokenBehavior", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 46907392, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_tokens": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 27, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621026866 + } + } + }, + "1757865141": { + "name": "class SharedPointer", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 1757865141, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + }, + "m_visible": { + "type": "bool", + "id": 1, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 810536225 + }, + "m_showToPets": { + "type": "bool", + "id": 2, + "offset": 121, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1441936691 + } + } + }, + "477074371": { + "name": "class ChatSpamHelper", + "bases": [ + "PropertyClass" + ], + "hash": 477074371, + "properties": {} + }, + "933991129": { + "name": "class RatingInfo", + "bases": [ + "PropertyClass" + ], + "hash": 933991129, + "properties": { + "m_name": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1717359772 + }, + "m_minScore": { + "type": "int", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1505040890 + }, + "m_maxScore": { + "type": "int", + "id": 2, + "offset": 108, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 154585660 + }, + "m_pvpIcon": { + "type": "std::string", + "id": 3, + "offset": 112, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1503451354 + }, + "m_petIcon": { + "type": "std::string", + "id": 4, + "offset": 144, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2990377005 + } + } + }, + "1323579834": { + "name": "class SharedPointer", + "bases": [ + "ClientTimedItemBehavior", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1323579834, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_expireTime": { + "type": "unsigned int", + "id": 1, + "offset": 112, + "flags": 59, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1836304873 + }, + "m_statsApplied": { + "type": "bool", + "id": 2, + "offset": 328, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 828970945 + } + } + }, + "922685391": { + "name": "class PotionShopOption", + "bases": [ + "ServiceOptionBase", + "PropertyClass" + ], + "hash": 922685391, + "properties": { + "m_serviceName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2206028813 + }, + "m_iconKey": { + "type": "std::string", + "id": 1, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2457138637 + }, + "m_displayKey": { + "type": "std::string", + "id": 2, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3023276954 + }, + "m_serviceIndex": { + "type": "unsigned int", + "id": 3, + "offset": 204, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2103126710 + }, + "m_forceInteract": { + "type": "bool", + "id": 4, + "offset": 200, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1705789564 + } + } + }, + "1322977287": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1322977287, + "properties": { + "m_tutorialNameID": { + "type": "unsigned int", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2228828719 + }, + "m_tutorialStage": { + "type": "int", + "id": 1, + "offset": 76, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 328120386 + } + } + }, + "477448343": { + "name": "class StartingPipEffect*", + "bases": [ + "GameEffectBase", + "PropertyClass" + ], + "hash": 477448343, + "properties": { + "m_currentTickCount": { + "type": "double", + "id": 0, + "offset": 80, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2533274692 + }, + "m_effectNameID": { + "type": "unsigned int", + "id": 1, + "offset": 96, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1204067144 + }, + "m_bIsOnPet": { + "type": "bool", + "id": 2, + "offset": 73, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 522593303 + }, + "m_originatorID": { + "type": "gid", + "id": 3, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1131810019 + }, + "m_itemSlotID": { + "type": "unsigned int", + "id": 4, + "offset": 112, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1895747595 + }, + "m_internalID": { + "type": "int", + "id": 5, + "offset": 92, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1643137924 + }, + "m_endTime": { + "type": "unsigned int", + "id": 6, + "offset": 88, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 716479635 + }, + "m_pipsGiven": { + "type": "int", + "id": 7, + "offset": 128, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1346249167 + }, + "m_powerPipsGiven": { + "type": "int", + "id": 8, + "offset": 132, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 377908508 + } + } + }, + "919348809": { + "name": "class SharedPointer", + "bases": [ + "ServiceOptionBase", + "PropertyClass" + ], + "hash": 919348809, + "properties": { + "m_serviceName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2206028813 + }, + "m_iconKey": { + "type": "std::string", + "id": 1, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2457138637 + }, + "m_displayKey": { + "type": "std::string", + "id": 2, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3023276954 + }, + "m_serviceIndex": { + "type": "unsigned int", + "id": 3, + "offset": 204, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2103126710 + }, + "m_forceInteract": { + "type": "bool", + "id": 4, + "offset": 200, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1705789564 + } + } + }, + "1759866452": { + "name": "class LootDialogEntry", + "bases": [ + "ActorDialogEntry", + "PropertyClass" + ], + "hash": 1759866452, + "properties": { + "m_requirements": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 263, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3043523229 + }, + "m_dialog": { + "type": "std::string", + "id": 1, + "offset": 88, + "flags": 8388639, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1858395851 + }, + "m_picture": { + "type": "std::string", + "id": 2, + "offset": 120, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3128322903 + }, + "m_soundFile": { + "type": "std::string", + "id": 3, + "offset": 152, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2276870852 + }, + "m_action": { + "type": "std::string", + "id": 4, + "offset": 184, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1734553689 + }, + "m_dialogEvent": { + "type": "std::string", + "id": 5, + "offset": 216, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2707957549 + }, + "m_actorTemplateID": { + "type": "unsigned int", + "id": 6, + "offset": 248, + "flags": 33554463, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2134265679 + }, + "m_cameraName": { + "type": "std::string", + "id": 7, + "offset": 256, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3252786917 + }, + "m_interpolationDuration": { + "type": "float", + "id": 8, + "offset": 312, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1458058437, + "enum_options": { + "__DEFAULT": "1.0" + } + }, + "m_cameraOffsetX": { + "type": "float", + "id": 9, + "offset": 288, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1515912895 + }, + "m_cameraOffsetY": { + "type": "float", + "id": 10, + "offset": 292, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1515912896 + }, + "m_cameraOffsetZ": { + "type": "float", + "id": 11, + "offset": 296, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1515912897 + }, + "m_pitch": { + "type": "float", + "id": 12, + "offset": 304, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 896371695 + }, + "m_yaw": { + "type": "float", + "id": 13, + "offset": 300, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 357256328 + }, + "m_roll": { + "type": "float", + "id": 14, + "offset": 308, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 310020272 + }, + "m_cameraShakeType": { + "type": "std::string", + "id": 15, + "offset": 320, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1754128882, + "enum_options": { + "": 0, + "Constant": "Constant", + "Quake": "Quake", + "Thud": "Thud", + "End": "End", + "__DEFAULT": 0 + } + }, + "m_cameraShakeDuration": { + "type": "float", + "id": 16, + "offset": 352, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 316581010, + "enum_options": { + "__DEFAULT": "0.0" + } + }, + "m_cameraShakeAmplitude": { + "type": "float", + "id": 17, + "offset": 356, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2179718321, + "enum_options": { + "__DEFAULT": "0.0" + } + }, + "m_bypassCameraOnReview": { + "type": "bool", + "id": 18, + "offset": 360, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1412905725, + "enum_options": { + "__DEFAULT": 1 + } + }, + "m_cameraZoneName": { + "type": "std::string", + "id": 19, + "offset": 368, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3131581121 + }, + "m_duration": { + "type": "float", + "id": 20, + "offset": 400, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 920323453 + }, + "m_delay": { + "type": "float", + "id": 21, + "offset": 404, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 881988134 + }, + "m_cameraHidePlayers": { + "type": "int", + "id": 22, + "offset": 408, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 28533149 + }, + "m_walkAwayNpcTemplateID": { + "type": "gid", + "id": 23, + "offset": 416, + "flags": 33554719, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 942697507 + }, + "m_walkAwayExitDirectionInDegrees": { + "type": "float", + "id": 24, + "offset": 424, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 396419785 + }, + "m_walkAwayFadeTime": { + "type": "float", + "id": 25, + "offset": 428, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 822405687 + }, + "m_walkAwayUseCurrentFacing": { + "type": "bool", + "id": 26, + "offset": 432, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1464855436 + }, + "m_standInPlayerTag": { + "type": "std::string", + "id": 27, + "offset": 440, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1590121141 + }, + "m_fadeOutCamera": { + "type": "bool", + "id": 28, + "offset": 472, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1766121252 + }, + "m_snapCameraToPlayerAtExit": { + "type": "bool", + "id": 29, + "offset": 473, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1323369645 + }, + "m_secondaryCameraName": { + "type": "std::string", + "id": 30, + "offset": 480, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1670705581 + }, + "m_secondaryInterpolationDuration": { + "type": "float", + "id": 31, + "offset": 512, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1873822349 + }, + "m_npcStandInList": { + "type": "std::string", + "id": 32, + "offset": 520, + "flags": 287, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2076308937 + }, + "m_dialogAnimationList": { + "type": "std::string", + "id": 33, + "offset": 536, + "flags": 287, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2444806919 + }, + "m_dialogTurningList": { + "type": "std::string", + "id": 34, + "offset": 552, + "flags": 287, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2782869422 + }, + "m_npcYawOffsetInDegrees": { + "type": "float", + "id": 35, + "offset": 568, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1395075270 + }, + "m_allowPlayerToMove": { + "type": "bool", + "id": 36, + "offset": 572, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 225101337 + }, + "m_soundEffectFile": { + "type": "std::string", + "id": 37, + "offset": 576, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3235157265 + }, + "m_musicFile": { + "type": "std::string", + "id": 38, + "offset": 608, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2963686620 + }, + "m_nonStackableMusic": { + "type": "bool", + "id": 39, + "offset": 640, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1675595625 + }, + "m_nonRepeatableMusic": { + "type": "bool", + "id": 40, + "offset": 641, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2138315572 + }, + "m_playMusicAtSFXVolume": { + "type": "bool", + "id": 41, + "offset": 642, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2130871816 + }, + "m_soundEffectDelay": { + "type": "float", + "id": 42, + "offset": 644, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1586382460 + }, + "m_musicDelay": { + "type": "float", + "id": 43, + "offset": 648, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1217785767 + }, + "m_musicFadeTime": { + "type": "float", + "id": 44, + "offset": 652, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 502925015 + }, + "m_dontReleaseCameraAtExit": { + "type": "bool", + "id": 45, + "offset": 474, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1107508961 + }, + "m_disableBackButton": { + "type": "bool", + "id": 46, + "offset": 656, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 122355444 + }, + "m_enableExitButton": { + "type": "bool", + "id": 47, + "offset": 657, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1824693936 + }, + "m_cameraFadeType": { + "type": "std::string", + "id": 48, + "offset": 664, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2021935382, + "enum_options": { + "": 0, + "In Out Black": "In Out Black", + "In Out White": "In Out White", + "In Black": "In Black", + "Out Black": "Out Black", + "In White": "In White", + "Out White": "Out White", + "__DEFAULT": 0 + } + }, + "m_cameraFadeTime": { + "type": "float", + "id": 49, + "offset": 696, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 614419391, + "enum_options": { + "__DEFAULT": "0.5" + } + }, + "m_idleAnimation": { + "type": "std::string", + "id": 50, + "offset": 704, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2900487193 + }, + "m_spamTime": { + "type": "float", + "id": 51, + "offset": 736, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1727215063, + "enum_options": { + "__DEFAULT": "1.0" + } + }, + "m_playSoundIfSpamming": { + "type": "bool", + "id": 52, + "offset": 740, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 690006749, + "enum_options": { + "__DEFAULT": 1 + } + }, + "m_playMusicIfSpamming": { + "type": "bool", + "id": 53, + "offset": 741, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 538564341, + "enum_options": { + "__DEFAULT": 1 + } + }, + "m_stopMusicFadeTime": { + "type": "float", + "id": 54, + "offset": 744, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 696390845, + "enum_options": { + "__DEFAULT": "0.0" + } + }, + "m_restartMusicFadeTime": { + "type": "float", + "id": 55, + "offset": 748, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 709379292, + "enum_options": { + "__DEFAULT": "0.0" + } + }, + "m_meetsRequirements": { + "type": "bool", + "id": 56, + "offset": 752, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 296443061 + }, + "m_secondaryCameraInitalDelay": { + "type": "float", + "id": 57, + "offset": 516, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1812842232 + }, + "m_displayButtonsOnTimedDialog": { + "type": "bool", + "id": 58, + "offset": 753, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 569741400 + } + } + }, + "916548547": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 916548547, + "properties": {} + }, + "48724494": { + "name": "class SharedPointer", + "bases": [], + "hash": 48724494, + "properties": {} + }, + "1759744146": { + "name": "class WizItemBossList*", + "bases": [ + "WizItemLocations", + "PropertyClass" + ], + "hash": 1759744146, + "properties": { + "m_itemType": { + "type": "enum WizItemLocations::eItemType", + "id": 0, + "offset": 72, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3482173907, + "enum_options": { + "shop": 0, + "quest": 1, + "boss": 2, + "gardening": 3, + "goldChest": 4 + } + }, + "m_bosses": { + "type": "unsigned int", + "id": 1, + "offset": 80, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 501597596 + } + } + }, + "915710895": { + "name": "class QuestEffect", + "bases": [ + "NamedEffect", + "GameEffectBase", + "PropertyClass" + ], + "hash": 915710895, + "properties": { + "m_currentTickCount": { + "type": "double", + "id": 0, + "offset": 80, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2533274692 + }, + "m_effectNameID": { + "type": "unsigned int", + "id": 1, + "offset": 96, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1204067144 + }, + "m_bIsOnPet": { + "type": "bool", + "id": 2, + "offset": 73, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 522593303 + }, + "m_originatorID": { + "type": "gid", + "id": 3, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1131810019 + }, + "m_itemSlotID": { + "type": "unsigned int", + "id": 4, + "offset": 112, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1895747595 + }, + "m_internalID": { + "type": "int", + "id": 5, + "offset": 92, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1643137924 + }, + "m_endTime": { + "type": "unsigned int", + "id": 6, + "offset": 88, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 716479635 + }, + "m_overrideName": { + "type": "std::string", + "id": 7, + "offset": 128, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1990707228 + }, + "m_startReqs": { + "type": "class SharedPointer", + "id": 8, + "offset": 168, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3147529602 + }, + "m_startResults": { + "type": "class SharedPointer", + "id": 9, + "offset": 184, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2094517692 + }, + "m_endResults": { + "type": "class SharedPointer", + "id": 10, + "offset": 200, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2118364133 + } + } + }, + "1759741074": { + "name": "class WizItemBossList", + "bases": [ + "WizItemLocations", + "PropertyClass" + ], + "hash": 1759741074, + "properties": { + "m_itemType": { + "type": "enum WizItemLocations::eItemType", + "id": 0, + "offset": 72, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3482173907, + "enum_options": { + "shop": 0, + "quest": 1, + "boss": 2, + "gardening": 3, + "goldChest": 4 + } + }, + "m_bosses": { + "type": "unsigned int", + "id": 1, + "offset": 80, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 501597596 + } + } + }, + "479513236": { + "name": "class BadgeLeaderboardBehavior", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 479513236, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + } + } + }, + "914878273": { + "name": "class SharedPointer", + "bases": [ + "ServiceOptionBase", + "PropertyClass" + ], + "hash": 914878273, + "properties": { + "m_serviceName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2206028813 + }, + "m_iconKey": { + "type": "std::string", + "id": 1, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2457138637 + }, + "m_displayKey": { + "type": "std::string", + "id": 2, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3023276954 + }, + "m_serviceIndex": { + "type": "unsigned int", + "id": 3, + "offset": 204, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2103126710 + }, + "m_forceInteract": { + "type": "bool", + "id": 4, + "offset": 200, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1705789564 + } + } + }, + "1323792992": { + "name": "class NPCBehavior*", + "bases": [ + "NameOverrideBehavior", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1323792992, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_wsNameOverride": { + "type": "std::wstring", + "id": 1, + "offset": 120, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2131249091 + }, + "m_firstName": { + "type": "std::string", + "id": 2, + "offset": 160, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3116002948 + }, + "m_lastName": { + "type": "std::string", + "id": 3, + "offset": 192, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1826203600 + }, + "m_nickname": { + "type": "std::string", + "id": 4, + "offset": 224, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2269863201 + }, + "m_title": { + "type": "std::string", + "id": 5, + "offset": 256, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2308614141 + }, + "m_isMonster": { + "type": "bool", + "id": 6, + "offset": 288, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1321956791 + } + } + }, + "478804671": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 478804671, + "properties": { + "m_polymorphList": { + "type": "unsigned int", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 619826355 + }, + "m_polymorphCategory": { + "type": "std::string", + "id": 1, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3076206595 + }, + "m_polymorphRole": { + "type": "std::string", + "id": 2, + "offset": 184, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1906345431 + }, + "m_ratingBadgeInfo": { + "type": "class SharedPointer", + "id": 3, + "offset": 96, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1212938427 + } + } + }, + "51094143": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 51094143, + "properties": { + "m_boysPrimaryColors": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 300868202 + }, + "m_boysSecondaryColors": { + "type": "float", + "id": 1, + "offset": 96, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2061028494 + }, + "m_girlsPrimaryColors": { + "type": "float", + "id": 2, + "offset": 120, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 327992494 + }, + "m_girlsSecondaryColors": { + "type": "float", + "id": 3, + "offset": 144, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1534611410 + } + } + }, + "49783931": { + "name": "class SharedPointer", + "bases": [ + "QuestTemplate", + "CoreTemplate", + "PropertyClass" + ], + "hash": 49783931, + "properties": { + "m_behaviors": { + "type": "class BehaviorTemplate*", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1197808594 + }, + "m_questName": { + "type": "std::string", + "id": 1, + "offset": 96, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1702112846 + }, + "m_questNameID": { + "type": "unsigned int", + "id": 2, + "offset": 128, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1530354349 + }, + "m_questTitle": { + "type": "std::string", + "id": 3, + "offset": 136, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1805465583 + }, + "m_questInfo": { + "type": "std::string", + "id": 4, + "offset": 168, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1701947097 + }, + "m_questPrep": { + "type": "std::string", + "id": 5, + "offset": 200, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1702202980 + }, + "m_questUnderway": { + "type": "std::string", + "id": 6, + "offset": 232, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2308400380 + }, + "m_questComplete": { + "type": "std::string", + "id": 7, + "offset": 264, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3484586150 + }, + "m_startGoals": { + "type": "std::string", + "id": 8, + "offset": 392, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2152469471 + }, + "m_goals": { + "type": "class SharedPointer", + "id": 9, + "offset": 408, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1374041870 + }, + "m_startResults": { + "type": "class SharedPointer", + "id": 10, + "offset": 424, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2094517692 + }, + "m_endResults": { + "type": "class SharedPointer", + "id": 11, + "offset": 440, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2118364133 + }, + "m_requirements": { + "type": "class RequirementList*", + "id": 12, + "offset": 456, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2840985510 + }, + "m_prepRequirements": { + "type": "class RequirementList*", + "id": 13, + "offset": 464, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3016776541 + }, + "m_pruneRequirements": { + "type": "class RequirementList*", + "id": 14, + "offset": 472, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3211248912 + }, + "m_prepAlways": { + "type": "bool", + "id": 15, + "offset": 304, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1423046331 + }, + "m_clientTags": { + "type": "std::string", + "id": 16, + "offset": 312, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2319030025 + }, + "m_goalLogic": { + "type": "class GoalCompleteLogic*", + "id": 17, + "offset": 520, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 963824003 + }, + "m_questLevel": { + "type": "int", + "id": 18, + "offset": 296, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 298136804 + }, + "m_questRepeat": { + "type": "int", + "id": 19, + "offset": 300, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1480345805 + }, + "m_onStartQuestScript": { + "type": "std::string", + "id": 20, + "offset": 328, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2577549709 + }, + "m_onEndQuestScript": { + "type": "std::string", + "id": 21, + "offset": 360, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285648118 + }, + "m_dialogList": { + "type": "class ActorDialogListBase*", + "id": 22, + "offset": 480, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1909154969 + }, + "m_missionDoors": { + "type": "std::string", + "id": 23, + "offset": 504, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2428103908 + }, + "m_dynaMods": { + "type": "class QuestDynaModInfo*", + "id": 24, + "offset": 488, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 3330743945 + }, + "m_isHidden": { + "type": "bool", + "id": 25, + "offset": 305, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1401188667 + }, + "m_outdated": { + "type": "bool", + "id": 26, + "offset": 306, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1565198349 + }, + "m_noQuestHelper": { + "type": "bool", + "id": 27, + "offset": 307, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 578010882 + }, + "m_mainline": { + "type": "bool", + "id": 28, + "offset": 552, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1749856224 + }, + "m_defaultDialogAnimation": { + "type": "std::string", + "id": 29, + "offset": 560, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2400834320 + }, + "m_skipQHAutoSelect": { + "type": "bool", + "id": 30, + "offset": 553, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2024815836 + }, + "m_questEffectInfoList": { + "type": "class SharedPointer", + "id": 31, + "offset": 536, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2494024956 + }, + "m_forceInteraction": { + "type": "bool", + "id": 32, + "offset": 554, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1038376866 + }, + "m_checkInventoryForCrafting": { + "type": "bool", + "id": 33, + "offset": 608, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1549644020 + }, + "m_playAsYourPetNPC": { + "type": "bool", + "id": 34, + "offset": 609, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 827482678 + }, + "m_activityType": { + "type": "enum QuestTemplate::ActivityType", + "id": 35, + "offset": 612, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 231656390, + "enum_options": { + "ACTIVITY_NotActivity": 0, + "ACTIVITY_Crafting": 2, + "ACTIVITY_Fishing": 3, + "ACTIVITY_Gardening": 4, + "ACTIVITY_Pet": 5, + "ACTIVITY_Spell": 1 + } + } + } + }, + "915757763": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 915757763, + "properties": { + "m_displayName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2446900370 + }, + "m_zoneName": { + "type": "std::string", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2171167736 + } + } + }, + "1325051057": { + "name": "struct std::pair", + "bases": [], + "hash": 1325051057, + "properties": {} + }, + "49731315": { + "name": "enum SpellTemplate::kSpellSourceType", + "bases": [], + "hash": 49731315, + "properties": {} + }, + "1759880407": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1759880407, + "properties": { + "m_crownsCost": { + "type": "int", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1592212719 + }, + "m_msrpCost": { + "type": "int", + "id": 1, + "offset": 76, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1724602037 + }, + "m_purchaseText": { + "type": "std::string", + "id": 2, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2216277819 + }, + "m_buttonText": { + "type": "std::string", + "id": 3, + "offset": 112, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3388300476 + }, + "m_type": { + "type": "enum PremiumContentOption::ContentType", + "id": 4, + "offset": 144, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2088156959, + "enum_options": { + "PCOT_UNKNOWN": 0, + "PCOT_ACCESSPASS": 1, + "PCOT_PURCHASE": 2, + "PCOT_TIMEDACCESSPASS": 3, + "PCOT_SAMPLEACCESSPASS": 4 + } + } + } + }, + "1324022976": { + "name": "class SharedPointer", + "bases": [ + "ObstacleCourseCatapultBehavior", + "ObstacleCourseObstacleBehavior", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1324022976, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + } + } + }, + "49339793": { + "name": "class SharedPointer", + "bases": [ + "ObstacleCourseObstacleBehaviorTemplate", + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 49339793, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + }, + "m_startAngle": { + "type": "float", + "id": 1, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 737826060 + }, + "m_angularVelocity": { + "type": "float", + "id": 2, + "offset": 124, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 412636784 + }, + "m_radius": { + "type": "float", + "id": 3, + "offset": 128, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 989410271 + }, + "m_innerRadius": { + "type": "float", + "id": 4, + "offset": 132, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 686816091 + }, + "m_nearMissRange": { + "type": "float", + "id": 5, + "offset": 136, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2005992806 + }, + "m_nearMissAngleOffset": { + "type": "float", + "id": 6, + "offset": 140, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2062603911 + }, + "m_walls": { + "type": "class Vector3D", + "id": 7, + "offset": 144, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2471997733 + } + } + }, + "1759869524": { + "name": "class LootDialogEntry*", + "bases": [ + "ActorDialogEntry", + "PropertyClass" + ], + "hash": 1759869524, + "properties": { + "m_requirements": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 263, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3043523229 + }, + "m_dialog": { + "type": "std::string", + "id": 1, + "offset": 88, + "flags": 8388639, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1858395851 + }, + "m_picture": { + "type": "std::string", + "id": 2, + "offset": 120, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3128322903 + }, + "m_soundFile": { + "type": "std::string", + "id": 3, + "offset": 152, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2276870852 + }, + "m_action": { + "type": "std::string", + "id": 4, + "offset": 184, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1734553689 + }, + "m_dialogEvent": { + "type": "std::string", + "id": 5, + "offset": 216, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2707957549 + }, + "m_actorTemplateID": { + "type": "unsigned int", + "id": 6, + "offset": 248, + "flags": 33554463, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2134265679 + }, + "m_cameraName": { + "type": "std::string", + "id": 7, + "offset": 256, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3252786917 + }, + "m_interpolationDuration": { + "type": "float", + "id": 8, + "offset": 312, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1458058437, + "enum_options": { + "__DEFAULT": "1.0" + } + }, + "m_cameraOffsetX": { + "type": "float", + "id": 9, + "offset": 288, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1515912895 + }, + "m_cameraOffsetY": { + "type": "float", + "id": 10, + "offset": 292, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1515912896 + }, + "m_cameraOffsetZ": { + "type": "float", + "id": 11, + "offset": 296, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1515912897 + }, + "m_pitch": { + "type": "float", + "id": 12, + "offset": 304, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 896371695 + }, + "m_yaw": { + "type": "float", + "id": 13, + "offset": 300, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 357256328 + }, + "m_roll": { + "type": "float", + "id": 14, + "offset": 308, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 310020272 + }, + "m_cameraShakeType": { + "type": "std::string", + "id": 15, + "offset": 320, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1754128882, + "enum_options": { + "": 0, + "Constant": "Constant", + "Quake": "Quake", + "Thud": "Thud", + "End": "End", + "__DEFAULT": 0 + } + }, + "m_cameraShakeDuration": { + "type": "float", + "id": 16, + "offset": 352, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 316581010, + "enum_options": { + "__DEFAULT": "0.0" + } + }, + "m_cameraShakeAmplitude": { + "type": "float", + "id": 17, + "offset": 356, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2179718321, + "enum_options": { + "__DEFAULT": "0.0" + } + }, + "m_bypassCameraOnReview": { + "type": "bool", + "id": 18, + "offset": 360, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1412905725, + "enum_options": { + "__DEFAULT": 1 + } + }, + "m_cameraZoneName": { + "type": "std::string", + "id": 19, + "offset": 368, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3131581121 + }, + "m_duration": { + "type": "float", + "id": 20, + "offset": 400, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 920323453 + }, + "m_delay": { + "type": "float", + "id": 21, + "offset": 404, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 881988134 + }, + "m_cameraHidePlayers": { + "type": "int", + "id": 22, + "offset": 408, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 28533149 + }, + "m_walkAwayNpcTemplateID": { + "type": "gid", + "id": 23, + "offset": 416, + "flags": 33554719, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 942697507 + }, + "m_walkAwayExitDirectionInDegrees": { + "type": "float", + "id": 24, + "offset": 424, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 396419785 + }, + "m_walkAwayFadeTime": { + "type": "float", + "id": 25, + "offset": 428, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 822405687 + }, + "m_walkAwayUseCurrentFacing": { + "type": "bool", + "id": 26, + "offset": 432, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1464855436 + }, + "m_standInPlayerTag": { + "type": "std::string", + "id": 27, + "offset": 440, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1590121141 + }, + "m_fadeOutCamera": { + "type": "bool", + "id": 28, + "offset": 472, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1766121252 + }, + "m_snapCameraToPlayerAtExit": { + "type": "bool", + "id": 29, + "offset": 473, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1323369645 + }, + "m_secondaryCameraName": { + "type": "std::string", + "id": 30, + "offset": 480, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1670705581 + }, + "m_secondaryInterpolationDuration": { + "type": "float", + "id": 31, + "offset": 512, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1873822349 + }, + "m_npcStandInList": { + "type": "std::string", + "id": 32, + "offset": 520, + "flags": 287, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2076308937 + }, + "m_dialogAnimationList": { + "type": "std::string", + "id": 33, + "offset": 536, + "flags": 287, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2444806919 + }, + "m_dialogTurningList": { + "type": "std::string", + "id": 34, + "offset": 552, + "flags": 287, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2782869422 + }, + "m_npcYawOffsetInDegrees": { + "type": "float", + "id": 35, + "offset": 568, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1395075270 + }, + "m_allowPlayerToMove": { + "type": "bool", + "id": 36, + "offset": 572, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 225101337 + }, + "m_soundEffectFile": { + "type": "std::string", + "id": 37, + "offset": 576, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3235157265 + }, + "m_musicFile": { + "type": "std::string", + "id": 38, + "offset": 608, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2963686620 + }, + "m_nonStackableMusic": { + "type": "bool", + "id": 39, + "offset": 640, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1675595625 + }, + "m_nonRepeatableMusic": { + "type": "bool", + "id": 40, + "offset": 641, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2138315572 + }, + "m_playMusicAtSFXVolume": { + "type": "bool", + "id": 41, + "offset": 642, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2130871816 + }, + "m_soundEffectDelay": { + "type": "float", + "id": 42, + "offset": 644, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1586382460 + }, + "m_musicDelay": { + "type": "float", + "id": 43, + "offset": 648, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1217785767 + }, + "m_musicFadeTime": { + "type": "float", + "id": 44, + "offset": 652, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 502925015 + }, + "m_dontReleaseCameraAtExit": { + "type": "bool", + "id": 45, + "offset": 474, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1107508961 + }, + "m_disableBackButton": { + "type": "bool", + "id": 46, + "offset": 656, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 122355444 + }, + "m_enableExitButton": { + "type": "bool", + "id": 47, + "offset": 657, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1824693936 + }, + "m_cameraFadeType": { + "type": "std::string", + "id": 48, + "offset": 664, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2021935382, + "enum_options": { + "": 0, + "In Out Black": "In Out Black", + "In Out White": "In Out White", + "In Black": "In Black", + "Out Black": "Out Black", + "In White": "In White", + "Out White": "Out White", + "__DEFAULT": 0 + } + }, + "m_cameraFadeTime": { + "type": "float", + "id": 49, + "offset": 696, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 614419391, + "enum_options": { + "__DEFAULT": "0.5" + } + }, + "m_idleAnimation": { + "type": "std::string", + "id": 50, + "offset": 704, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2900487193 + }, + "m_spamTime": { + "type": "float", + "id": 51, + "offset": 736, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1727215063, + "enum_options": { + "__DEFAULT": "1.0" + } + }, + "m_playSoundIfSpamming": { + "type": "bool", + "id": 52, + "offset": 740, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 690006749, + "enum_options": { + "__DEFAULT": 1 + } + }, + "m_playMusicIfSpamming": { + "type": "bool", + "id": 53, + "offset": 741, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 538564341, + "enum_options": { + "__DEFAULT": 1 + } + }, + "m_stopMusicFadeTime": { + "type": "float", + "id": 54, + "offset": 744, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 696390845, + "enum_options": { + "__DEFAULT": "0.0" + } + }, + "m_restartMusicFadeTime": { + "type": "float", + "id": 55, + "offset": 748, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 709379292, + "enum_options": { + "__DEFAULT": "0.0" + } + }, + "m_meetsRequirements": { + "type": "bool", + "id": 56, + "offset": 752, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 296443061 + }, + "m_secondaryCameraInitalDelay": { + "type": "float", + "id": 57, + "offset": 516, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1812842232 + }, + "m_displayButtonsOnTimedDialog": { + "type": "bool", + "id": 58, + "offset": 753, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 569741400 + } + } + }, + "480763819": { + "name": "class StatisticEffectTemplate*", + "bases": [ + "GameEffectTemplate", + "PropertyClass" + ], + "hash": 480763819, + "properties": { + "m_effectName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2029161513 + }, + "m_effectCategory": { + "type": "std::string", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1852673222 + }, + "m_sortOrder": { + "type": "int", + "id": 2, + "offset": 148, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1411218206 + }, + "m_duration": { + "type": "double", + "id": 3, + "offset": 192, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2727932435 + }, + "m_stackingCategories": { + "type": "std::string", + "id": 4, + "offset": 160, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1774497525 + }, + "m_isPersistent": { + "type": "bool", + "id": 5, + "offset": 153, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 923861920 + }, + "m_bIsOnPet": { + "type": "bool", + "id": 6, + "offset": 154, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 522593303 + }, + "m_isPublic": { + "type": "bool", + "id": 7, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1728439822 + }, + "m_visualEffectAddName": { + "type": "std::string", + "id": 8, + "offset": 200, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3382086694 + }, + "m_visualEffectRemoveName": { + "type": "std::string", + "id": 9, + "offset": 232, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1541697323 + }, + "m_onAddFunctorName": { + "type": "std::string", + "id": 10, + "offset": 280, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1561843107 + }, + "m_onRemoveFunctorName": { + "type": "std::string", + "id": 11, + "offset": 312, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2559017864 + }, + "m_stackingRule": { + "type": "enum STACKING_RULE", + "id": 12, + "offset": 144, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 431568889, + "enum_options": { + "STACKING_ALLOWED": 0, + "STACKING_NOSTACK": 1, + "STACKING_REPLACE": 2 + } + } + } + }, + "916468126": { + "name": "class SharedPointer", + "bases": [ + "ClientEquipmentBehavior", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 916468126, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_itemList": { + "type": "class SharedPointer", + "id": 1, + "offset": 120, + "flags": 27, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1983655699 + }, + "m_slotList": { + "type": "class SharedPointer", + "id": 2, + "offset": 136, + "flags": 27, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 3213026923 + }, + "m_publicItemList": { + "type": "class SharedPointer", + "id": 3, + "offset": 152, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1693467991 + }, + "m_FXOverrideBehaviorInfo": { + "type": "class FXOverrideBehaviorInfo", + "id": 4, + "offset": 232, + "flags": 27, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1746411198 + } + } + }, + "480274307": { + "name": "class SharedPointer", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 480274307, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + } + } + }, + "1324585090": { + "name": "class SharedPointer", + "bases": [ + "TournamentUpdate", + "PropertyClass" + ], + "hash": 1324585090, + "properties": { + "m_pActor": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1115051967 + } + } + }, + "479894973": { + "name": "class PvPPenaltyMatchBan*", + "bases": [ + "InfractionPenalty", + "PropertyClass" + ], + "hash": 479894973, + "properties": { + "m_internalID": { + "type": "unsigned int", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1854540375 + }, + "m_categoryID": { + "type": "unsigned int", + "id": 1, + "offset": 76, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1382795736 + }, + "m_removeAtPointValue": { + "type": "float", + "id": 2, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2112196961 + }, + "m_expireTime": { + "type": "unsigned int", + "id": 3, + "offset": 84, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1836304873 + }, + "m_duration": { + "type": "unsigned int", + "id": 4, + "offset": 88, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1041524755 + } + } + }, + "1760380666": { + "name": "class std::list >", + "bases": [], + "hash": 1760380666, + "properties": {} + }, + "918553322": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 918553322, + "properties": {} + }, + "51014812": { + "name": "class CinematicActorTemplate", + "bases": [ + "CinematicDefTemplate", + "CoreTemplate", + "PropertyClass" + ], + "hash": 51014812, + "properties": { + "m_behaviors": { + "type": "class BehaviorTemplate*", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1197808594 + }, + "m_nifFile": { + "type": "std::string", + "id": 1, + "offset": 136, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2694762008 + }, + "m_delay": { + "type": "double", + "id": 2, + "offset": 168, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2689597116 + }, + "m_cinematicName": { + "type": "std::string", + "id": 3, + "offset": 96, + "flags": 134217735, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2611527497 + }, + "m_completeEvents": { + "type": "class CinematicEventInfo*", + "id": 4, + "offset": 272, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2945338320 + }, + "m_stateChangeEvents": { + "type": "class CinematicEventInfo*", + "id": 5, + "offset": 304, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1874505374 + }, + "m_stateInteractions": { + "type": "class CinematicInteractInfo*", + "id": 6, + "offset": 336, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1949887389 + }, + "m_targetGameState": { + "type": "std::string", + "id": 7, + "offset": 176, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3607550909 + }, + "m_actorStateSet": { + "type": "std::string", + "id": 8, + "offset": 208, + "flags": 268435463, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1765258049, + "enum_options": { + "__BASECLASS": "ObjStateSet" + } + }, + "m_rootAsset": { + "type": "std::string", + "id": 9, + "offset": 240, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3506101791 + } + } + }, + "1759951601": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1759951601, + "properties": { + "m_list": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1753240061 + } + } + }, + "916821311": { + "name": "class ClientAddHangingEffectCinematicAction*", + "bases": [ + "AddHangingEffectCinematicAction", + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 916821311, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + }, + "m_effect": { + "type": "std::string", + "id": 2, + "offset": 120, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1894145160 + }, + "m_revealsCloaked": { + "type": "bool", + "id": 3, + "offset": 156, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1618772408 + } + } + }, + "1326176845": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1326176845, + "properties": { + "m_markers": { + "type": "class CompassMarker", + "id": 0, + "offset": 80, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": true, + "pointer": false, + "hash": 3408067289 + } + } + }, + "50936002": { + "name": "class SharedPointer", + "bases": [ + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 50936002, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + }, + "m_cloaked": { + "type": "bool", + "id": 2, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 7349510 + } + } + }, + "481149671": { + "name": "class GardenPlant", + "bases": [ + "PropertyClass" + ], + "hash": 481149671, + "properties": { + "m_position": { + "type": "class Vector3D", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3697900983 + }, + "m_templateID": { + "type": "unsigned int", + "id": 1, + "offset": 84, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1286746870 + }, + "m_nextStageTimeSeconds": { + "type": "unsigned int", + "id": 2, + "offset": 92, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 752026046 + }, + "m_flags": { + "type": "unsigned int", + "id": 3, + "offset": 88, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1005801050 + }, + "m_needsWaterTimeSeconds": { + "type": "unsigned int", + "id": 4, + "offset": 100, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1144013149 + }, + "m_needsSunTimeSeconds": { + "type": "unsigned int", + "id": 5, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1376682128 + }, + "m_needsPollinationTimeSeconds": { + "type": "unsigned int", + "id": 6, + "offset": 108, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1487147427 + }, + "m_needsMagicTimeSeconds": { + "type": "unsigned int", + "id": 7, + "offset": 112, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 655591099 + }, + "m_needsMusicTimeSeconds": { + "type": "unsigned int", + "id": 8, + "offset": 116, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 799722843 + }, + "m_harvestTimeSeconds": { + "type": "unsigned int", + "id": 9, + "offset": 96, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 675583752 + }, + "m_pestCheckTimeSeconds": { + "type": "unsigned int", + "id": 10, + "offset": 120, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2302681477 + }, + "m_pestTemplateID": { + "type": "unsigned int", + "id": 11, + "offset": 124, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1301457330 + }, + "m_pestProtectionTemplateID": { + "type": "unsigned int", + "id": 12, + "offset": 128, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1429720889 + }, + "m_pestProtectionTimeSeconds": { + "type": "unsigned int", + "id": 13, + "offset": 132, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1440479886 + }, + "m_stageStartTimeSeconds": { + "type": "unsigned int", + "id": 14, + "offset": 136, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1075432461 + }, + "m_likesDislikesModifier": { + "type": "float", + "id": 15, + "offset": 140, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 840714742 + }, + "m_plantIdentifierForETL": { + "type": "gid", + "id": 16, + "offset": 144, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 450491014 + }, + "m_harvestCount": { + "type": "unsigned int", + "id": 17, + "offset": 152, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 245460819 + } + } + }, + "917523958": { + "name": "class ZoneTokenContainer", + "bases": [ + "PropertyClass" + ], + "hash": 917523958, + "properties": { + "m_tokens": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621026866 + } + } + }, + "1327910898": { + "name": "class CantripsItemTemplate*", + "bases": [ + "WizItemTemplate", + "ItemTemplate", + "GameObjectTemplate", + "CoreTemplate", + "PropertyClass" + ], + "hash": 1327910898, + "properties": { + "m_behaviors": { + "type": "class BehaviorTemplate*", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1197808594 + }, + "m_objectName": { + "type": "std::string", + "id": 1, + "offset": 96, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2154940147 + }, + "m_templateID": { + "type": "unsigned int", + "id": 2, + "offset": 128, + "flags": 16777223, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1286746870 + }, + "m_visualID": { + "type": "unsigned int", + "id": 3, + "offset": 132, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1118778894 + }, + "m_adjectiveList": { + "type": "std::string", + "id": 4, + "offset": 248, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 3195213318 + }, + "m_exemptFromAOI": { + "type": "bool", + "id": 5, + "offset": 240, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1457879059 + }, + "m_displayName": { + "type": "std::string", + "id": 6, + "offset": 168, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2446900370 + }, + "m_description": { + "type": "std::string", + "id": 7, + "offset": 136, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1649374815 + }, + "m_nObjectType": { + "type": "enum ObjectType", + "id": 8, + "offset": 200, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2118905880, + "enum_options": { + "OT_UNDEFINED": 0, + "OT_PLAYER": 1, + "OT_NPC": 2, + "OT_PROP": 3, + "OT_OBJECT": 4, + "OT_HOUSE": 5, + "OT_KEY": 6, + "OT_OLD_KEY": 7, + "OT_DEED": 8, + "OT_MAIL": 9, + "OT_RECIPE": 17, + "OT_EQUIP_HEAD": 10, + "OT_EQUIP_CHEST": 11, + "OT_EQUIP_LEGS": 12, + "OT_EQUIP_HANDS": 13, + "OT_EQUIP_FINGER": 14, + "OT_EQUIP_FEET": 15, + "OT_EQUIP_EAR": 16, + "OT_BUILDING_BLOCK": 18, + "OT_BUILDING_BLOCK_SOLID": 19, + "OT_GOLF": 20, + "OT_DOOR": 21, + "OT_PET": 22, + "OT_FABRIC": 23, + "OT_WINDOW": 24, + "OT_ROOF": 25, + "OT_HORSE": 26, + "OT_STRUCTURE": 27, + "OT_HOUSING_TEXTURE": 28, + "OT_PLANT": 29 + } + }, + "m_sIcon": { + "type": "std::string", + "id": 9, + "offset": 208, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306259831 + }, + "m_equipRequirements": { + "type": "class RequirementList*", + "id": 10, + "offset": 280, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2762617226 + }, + "m_purchaseRequirements": { + "type": "class RequirementList*", + "id": 11, + "offset": 288, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3174641793 + }, + "m_equipEffects": { + "type": "class GameEffectInfo*", + "id": 12, + "offset": 296, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 836628351 + }, + "m_baseCost": { + "type": "float", + "id": 13, + "offset": 312, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1565352651 + }, + "m_creditsCost": { + "type": "float", + "id": 14, + "offset": 320, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 805514974 + }, + "m_avatarInfo": { + "type": "class AvatarItemInfoBase*", + "id": 15, + "offset": 328, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2627321299 + }, + "m_avatarFlags": { + "type": "std::string", + "id": 16, + "offset": 336, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2347762759 + }, + "m_itemLimit": { + "type": "int", + "id": 17, + "offset": 316, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1799746856 + }, + "m_holidayFlag": { + "type": "std::string", + "id": 18, + "offset": 352, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2994795359 + }, + "m_itemSetBonusTemplateID": { + "type": "unsigned int", + "id": 19, + "offset": 384, + "flags": 33554439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1316835672 + }, + "m_numPrimaryColors": { + "type": "int", + "id": 20, + "offset": 428, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 981103872 + }, + "m_numSecondaryColors": { + "type": "int", + "id": 21, + "offset": 432, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1310416868 + }, + "m_numPatterns": { + "type": "int", + "id": 22, + "offset": 436, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 953162171 + }, + "m_school": { + "type": "std::string", + "id": 23, + "offset": 392, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2438566051 + }, + "m_arenaPointCost": { + "type": "int", + "id": 24, + "offset": 440, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1819621796 + }, + "m_pvpCurrencyCost": { + "type": "int", + "id": 25, + "offset": 444, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 645595444 + }, + "m_pvpTourneyCurrencyCost": { + "type": "int", + "id": 26, + "offset": 448, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 517874954 + }, + "m_rank": { + "type": "int", + "id": 27, + "offset": 424, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 219803942 + }, + "m_boyIconIndex": { + "type": "int", + "id": 28, + "offset": 452, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 802140453 + }, + "m_girlIconIndex": { + "type": "int", + "id": 29, + "offset": 456, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 832706793 + }, + "m_leashOffsetOverride": { + "type": "class SharedPointer", + "id": 30, + "offset": 464, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1692586788 + }, + "m_rarity": { + "type": "enum RarityType", + "id": 31, + "offset": 460, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2253792108, + "enum_options": { + "RT_COMMON": 0, + "RT_UNCOMMON": 1, + "RT_RARE": 2, + "RT_ULTRARARE": 3, + "RT_EPIC": 4 + } + }, + "m_cantripName": { + "type": "std::string", + "id": 32, + "offset": 480, + "flags": 33554439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3064230349 + } + } + }, + "51039388": { + "name": "class CinematicActorTemplate*", + "bases": [ + "CinematicDefTemplate", + "CoreTemplate", + "PropertyClass" + ], + "hash": 51039388, + "properties": { + "m_behaviors": { + "type": "class BehaviorTemplate*", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1197808594 + }, + "m_nifFile": { + "type": "std::string", + "id": 1, + "offset": 136, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2694762008 + }, + "m_delay": { + "type": "double", + "id": 2, + "offset": 168, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2689597116 + }, + "m_cinematicName": { + "type": "std::string", + "id": 3, + "offset": 96, + "flags": 134217735, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2611527497 + }, + "m_completeEvents": { + "type": "class CinematicEventInfo*", + "id": 4, + "offset": 272, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2945338320 + }, + "m_stateChangeEvents": { + "type": "class CinematicEventInfo*", + "id": 5, + "offset": 304, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1874505374 + }, + "m_stateInteractions": { + "type": "class CinematicInteractInfo*", + "id": 6, + "offset": 336, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1949887389 + }, + "m_targetGameState": { + "type": "std::string", + "id": 7, + "offset": 176, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3607550909 + }, + "m_actorStateSet": { + "type": "std::string", + "id": 8, + "offset": 208, + "flags": 268435463, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1765258049, + "enum_options": { + "__BASECLASS": "ObjStateSet" + } + }, + "m_rootAsset": { + "type": "std::string", + "id": 9, + "offset": 240, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3506101791 + } + } + }, + "1788781264": { + "name": "class NumItemInInventory", + "bases": [ + "PropertyClass" + ], + "hash": 1788781264, + "properties": { + "m_itemTemplateID": { + "type": "unsigned int", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2190120133 + }, + "m_numItemInInventory": { + "type": "int", + "id": 1, + "offset": 76, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1351636478 + } + } + }, + "1326856470": { + "name": "class ClientObjectInfo", + "bases": [ + "CoreObjectInfo", + "PropertyClass" + ], + "hash": 1326856470, + "properties": { + "m_templateID.m_full": { + "type": "unsigned __int64", + "id": 0, + "offset": 72, + "flags": 33554439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 633907631 + }, + "m_nObjectID": { + "type": "unsigned int", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 748496927 + }, + "m_location": { + "type": "class Vector3D", + "id": 2, + "offset": 84, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2239683611 + }, + "m_orientation": { + "type": "class Vector3D", + "id": 3, + "offset": 96, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2344058766 + }, + "m_fScale": { + "type": "float", + "id": 4, + "offset": 108, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 503137701 + }, + "m_zoneTag": { + "type": "std::string", + "id": 5, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3405382643 + }, + "m_startState": { + "type": "std::string", + "id": 6, + "offset": 184, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2166880458 + }, + "m_overrideName": { + "type": "std::string", + "id": 7, + "offset": 120, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1990707228 + }, + "m_globalDynamic": { + "type": "bool", + "id": 8, + "offset": 116, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1951691017 + }, + "m_bUndetectable": { + "type": "bool", + "id": 9, + "offset": 216, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1907454341 + }, + "m_spawnRequirements": { + "type": "class SharedPointer", + "id": 10, + "offset": 224, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2309120870 + }, + "m_loadingType": { + "type": "enum CoreObjectInfo::LoadingType", + "id": 11, + "offset": 112, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3522422550, + "enum_options": { + "STATIC_CLIENT_SERVER": 0, + "STATIC_CLIENT": 1, + "STATIC_SERVER": 2, + "DYNAMIC_SERVER": 3 + } + } + } + }, + "1775705579": { + "name": "class Point", + "bases": [], + "hash": 1775705579, + "properties": {} + }, + "486775476": { + "name": "class SharedPointer", + "bases": [ + "ServiceOptionBase", + "PropertyClass" + ], + "hash": 486775476, + "properties": { + "m_serviceName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2206028813 + }, + "m_iconKey": { + "type": "std::string", + "id": 1, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2457138637 + }, + "m_displayKey": { + "type": "std::string", + "id": 2, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3023276954 + }, + "m_serviceIndex": { + "type": "unsigned int", + "id": 3, + "offset": 204, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2103126710 + }, + "m_forceInteract": { + "type": "bool", + "id": 4, + "offset": 200, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1705789564 + } + } + }, + "919203255": { + "name": "class CastleMagicBehavior*", + "bases": [ + "CastleMagicBehaviorBase", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 919203255, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_castleMagicData": { + "type": "std::string", + "id": 1, + "offset": 128, + "flags": 575, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2874597138 + } + } + }, + "1326758166": { + "name": "class ClientObjectInfo*", + "bases": [ + "CoreObjectInfo", + "PropertyClass" + ], + "hash": 1326758166, + "properties": { + "m_templateID.m_full": { + "type": "unsigned __int64", + "id": 0, + "offset": 72, + "flags": 33554439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 633907631 + }, + "m_nObjectID": { + "type": "unsigned int", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 748496927 + }, + "m_location": { + "type": "class Vector3D", + "id": 2, + "offset": 84, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2239683611 + }, + "m_orientation": { + "type": "class Vector3D", + "id": 3, + "offset": 96, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2344058766 + }, + "m_fScale": { + "type": "float", + "id": 4, + "offset": 108, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 503137701 + }, + "m_zoneTag": { + "type": "std::string", + "id": 5, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3405382643 + }, + "m_startState": { + "type": "std::string", + "id": 6, + "offset": 184, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2166880458 + }, + "m_overrideName": { + "type": "std::string", + "id": 7, + "offset": 120, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1990707228 + }, + "m_globalDynamic": { + "type": "bool", + "id": 8, + "offset": 116, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1951691017 + }, + "m_bUndetectable": { + "type": "bool", + "id": 9, + "offset": 216, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1907454341 + }, + "m_spawnRequirements": { + "type": "class SharedPointer", + "id": 10, + "offset": 224, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2309120870 + }, + "m_loadingType": { + "type": "enum CoreObjectInfo::LoadingType", + "id": 11, + "offset": 112, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3522422550, + "enum_options": { + "STATIC_CLIENT_SERVER": 0, + "STATIC_CLIENT": 1, + "STATIC_SERVER": 2, + "DYNAMIC_SERVER": 3 + } + } + } + }, + "1764201896": { + "name": "class DailyQuestOption", + "bases": [ + "ServiceOptionBase", + "PropertyClass" + ], + "hash": 1764201896, + "properties": { + "m_serviceName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2206028813 + }, + "m_iconKey": { + "type": "std::string", + "id": 1, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2457138637 + }, + "m_displayKey": { + "type": "std::string", + "id": 2, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3023276954 + }, + "m_serviceIndex": { + "type": "unsigned int", + "id": 3, + "offset": 204, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2103126710 + }, + "m_forceInteract": { + "type": "bool", + "id": 4, + "offset": 200, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1705789564 + } + } + }, + "485118205": { + "name": "class ShadowSelfCinematicAction", + "bases": [ + "CinematicAction", + "PropertyClass" + ], + "hash": 485118205, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + } + } + }, + "919116749": { + "name": "class CrownsConfirmWindow", + "bases": [ + "Window", + "PropertyClass" + ], + "hash": 919116749, + "properties": { + "m_sName": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306437263 + }, + "m_Children": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621225959 + }, + "m_Style": { + "type": "unsigned int", + "id": 2, + "offset": 152, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "SCALE_CHILDREN": 2, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "FOCUS_LOCKED": 64, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152 + } + }, + "m_Flags": { + "type": "unsigned int", + "id": 3, + "offset": 156, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } + }, + "m_Window": { + "type": "class Rect", + "id": 4, + "offset": 160, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3105139380 + }, + "m_fTargetAlpha": { + "type": "float", + "id": 5, + "offset": 212, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1809129834 + }, + "m_fDisabledAlpha": { + "type": "float", + "id": 6, + "offset": 216, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1389987675 + }, + "m_fAlpha": { + "type": "float", + "id": 7, + "offset": 208, + "flags": 65671, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 482130755 + }, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3623628394 + }, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2102211316 + }, + "m_sScript": { + "type": "std::string", + "id": 10, + "offset": 352, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1846695875 + }, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3389835433 + }, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547159940 + }, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513510520 + }, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3091503757 + } + } + }, + "51406965": { + "name": "class PreviewWindow", + "bases": [ + "PortraitWindow", + "Window", + "PropertyClass" + ], + "hash": 51406965, + "properties": { + "m_sName": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306437263 + }, + "m_Children": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621225959 + }, + "m_Style": { + "type": "unsigned int", + "id": 2, + "offset": 152, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "SCALE_CHILDREN": 2, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "FOCUS_LOCKED": 64, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152 + } + }, + "m_Flags": { + "type": "unsigned int", + "id": 3, + "offset": 156, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } + }, + "m_Window": { + "type": "class Rect", + "id": 4, + "offset": 160, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3105139380 + }, + "m_fTargetAlpha": { + "type": "float", + "id": 5, + "offset": 212, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1809129834 + }, + "m_fDisabledAlpha": { + "type": "float", + "id": 6, + "offset": 216, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1389987675 + }, + "m_fAlpha": { + "type": "float", + "id": 7, + "offset": 208, + "flags": 65671, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 482130755 + }, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3623628394 + }, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2102211316 + }, + "m_sScript": { + "type": "std::string", + "id": 10, + "offset": 352, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1846695875 + }, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3389835433 + }, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547159940 + }, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513510520 + }, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3091503757 + }, + "m_pMaterial": { + "type": "class SharedPointer", + "id": 16, + "offset": 632, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3479277078 + }, + "m_alphaMask": { + "type": "class SharedPointer", + "id": 17, + "offset": 648, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2624275869 + } + } + }, + "1762370452": { + "name": "class SharedPointer", + "bases": [ + "ServiceOptionBase", + "PropertyClass" + ], + "hash": 1762370452, + "properties": { + "m_serviceName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2206028813 + }, + "m_iconKey": { + "type": "std::string", + "id": 1, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2457138637 + }, + "m_displayKey": { + "type": "std::string", + "id": 2, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3023276954 + }, + "m_serviceIndex": { + "type": "unsigned int", + "id": 3, + "offset": 204, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2103126710 + }, + "m_forceInteract": { + "type": "bool", + "id": 4, + "offset": 200, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1705789564 + }, + "m_failureMessage": { + "type": "std::string", + "id": 5, + "offset": 224, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1882376712 + } + } + }, + "483435122": { + "name": "class WinAnimContainer*", + "bases": [ + "WindowAnimation", + "PropertyClass" + ], + "hash": 483435122, + "properties": { + "m_bUseDeepCopy": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 433380635 + }, + "m_winAnimList": { + "type": "class SharedPointer", + "id": 1, + "offset": 80, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1941062728 + }, + "m_bLooping": { + "type": "bool", + "id": 2, + "offset": 104, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2131020845 + } + } + }, + "918831328": { + "name": "class ControlList::ListItemAnimState*", + "bases": [ + "ControlList::ListItemState", + "PropertyClass" + ], + "hash": 918831328, + "properties": { + "m_pMaterial": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3479277078 + }, + "m_nMaterialFrame": { + "type": "int", + "id": 1, + "offset": 88, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1641923970 + }, + "m_nAnimBeginFrame": { + "type": "int", + "id": 2, + "offset": 96, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1469531165 + }, + "m_nAnimEndFrame": { + "type": "int", + "id": 3, + "offset": 100, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1659451087 + }, + "m_fAnimRate": { + "type": "float", + "id": 4, + "offset": 104, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 802385934 + }, + "m_bAnimLoop": { + "type": "bool", + "id": 5, + "offset": 108, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1487150228 + } + } + }, + "51406960": { + "name": "class PreviewWindow*", + "bases": [ + "PortraitWindow", + "Window", + "PropertyClass" + ], + "hash": 51406960, + "properties": { + "m_sName": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306437263 + }, + "m_Children": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621225959 + }, + "m_Style": { + "type": "unsigned int", + "id": 2, + "offset": 152, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "SCALE_CHILDREN": 2, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "FOCUS_LOCKED": 64, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152 + } + }, + "m_Flags": { + "type": "unsigned int", + "id": 3, + "offset": 156, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } + }, + "m_Window": { + "type": "class Rect", + "id": 4, + "offset": 160, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3105139380 + }, + "m_fTargetAlpha": { + "type": "float", + "id": 5, + "offset": 212, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1809129834 + }, + "m_fDisabledAlpha": { + "type": "float", + "id": 6, + "offset": 216, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1389987675 + }, + "m_fAlpha": { + "type": "float", + "id": 7, + "offset": 208, + "flags": 65671, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 482130755 + }, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3623628394 + }, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2102211316 + }, + "m_sScript": { + "type": "std::string", + "id": 10, + "offset": 352, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1846695875 + }, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3389835433 + }, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547159940 + }, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513510520 + }, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3091503757 + }, + "m_pMaterial": { + "type": "class SharedPointer", + "id": 16, + "offset": 632, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3479277078 + }, + "m_alphaMask": { + "type": "class SharedPointer", + "id": 17, + "offset": 648, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2624275869 + } + } + }, + "1761496848": { + "name": "class ClientServerSyncCinematicAction", + "bases": [ + "ServerSyncCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 1761496848, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_eventToSend": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1564059786 + } + } + }, + "481791362": { + "name": "class ProvideSpellEffect*", + "bases": [ + "GameEffectBase", + "PropertyClass" + ], + "hash": 481791362, + "properties": { + "m_currentTickCount": { + "type": "double", + "id": 0, + "offset": 80, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2533274692 + }, + "m_effectNameID": { + "type": "unsigned int", + "id": 1, + "offset": 96, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1204067144 + }, + "m_bIsOnPet": { + "type": "bool", + "id": 2, + "offset": 73, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 522593303 + }, + "m_originatorID": { + "type": "gid", + "id": 3, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1131810019 + }, + "m_itemSlotID": { + "type": "unsigned int", + "id": 4, + "offset": 112, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1895747595 + }, + "m_internalID": { + "type": "int", + "id": 5, + "offset": 92, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1643137924 + }, + "m_endTime": { + "type": "unsigned int", + "id": 6, + "offset": 88, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 716479635 + }, + "m_spellName": { + "type": "std::string", + "id": 7, + "offset": 128, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2688485244 + }, + "m_numSpells": { + "type": "int", + "id": 8, + "offset": 160, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1269498237 + }, + "m_vFX": { + "type": "std::string", + "id": 9, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1764750607 + }, + "m_vFXOverride": { + "type": "bool", + "id": 10, + "offset": 200, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1491092359 + }, + "m_sound": { + "type": "std::string", + "id": 11, + "offset": 208, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2307644996 + } + } + }, + "1327910874": { + "name": "class CantripsItemTemplate", + "bases": [ + "WizItemTemplate", + "ItemTemplate", + "GameObjectTemplate", + "CoreTemplate", + "PropertyClass" + ], + "hash": 1327910874, + "properties": { + "m_behaviors": { + "type": "class BehaviorTemplate*", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1197808594 + }, + "m_objectName": { + "type": "std::string", + "id": 1, + "offset": 96, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2154940147 + }, + "m_templateID": { + "type": "unsigned int", + "id": 2, + "offset": 128, + "flags": 16777223, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1286746870 + }, + "m_visualID": { + "type": "unsigned int", + "id": 3, + "offset": 132, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1118778894 + }, + "m_adjectiveList": { + "type": "std::string", + "id": 4, + "offset": 248, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 3195213318 + }, + "m_exemptFromAOI": { + "type": "bool", + "id": 5, + "offset": 240, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1457879059 + }, + "m_displayName": { + "type": "std::string", + "id": 6, + "offset": 168, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2446900370 + }, + "m_description": { + "type": "std::string", + "id": 7, + "offset": 136, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1649374815 + }, + "m_nObjectType": { + "type": "enum ObjectType", + "id": 8, + "offset": 200, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2118905880, + "enum_options": { + "OT_UNDEFINED": 0, + "OT_PLAYER": 1, + "OT_NPC": 2, + "OT_PROP": 3, + "OT_OBJECT": 4, + "OT_HOUSE": 5, + "OT_KEY": 6, + "OT_OLD_KEY": 7, + "OT_DEED": 8, + "OT_MAIL": 9, + "OT_RECIPE": 17, + "OT_EQUIP_HEAD": 10, + "OT_EQUIP_CHEST": 11, + "OT_EQUIP_LEGS": 12, + "OT_EQUIP_HANDS": 13, + "OT_EQUIP_FINGER": 14, + "OT_EQUIP_FEET": 15, + "OT_EQUIP_EAR": 16, + "OT_BUILDING_BLOCK": 18, + "OT_BUILDING_BLOCK_SOLID": 19, + "OT_GOLF": 20, + "OT_DOOR": 21, + "OT_PET": 22, + "OT_FABRIC": 23, + "OT_WINDOW": 24, + "OT_ROOF": 25, + "OT_HORSE": 26, + "OT_STRUCTURE": 27, + "OT_HOUSING_TEXTURE": 28, + "OT_PLANT": 29 + } + }, + "m_sIcon": { + "type": "std::string", + "id": 9, + "offset": 208, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306259831 + }, + "m_equipRequirements": { + "type": "class RequirementList*", + "id": 10, + "offset": 280, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2762617226 + }, + "m_purchaseRequirements": { + "type": "class RequirementList*", + "id": 11, + "offset": 288, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3174641793 + }, + "m_equipEffects": { + "type": "class GameEffectInfo*", + "id": 12, + "offset": 296, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 836628351 + }, + "m_baseCost": { + "type": "float", + "id": 13, + "offset": 312, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1565352651 + }, + "m_creditsCost": { + "type": "float", + "id": 14, + "offset": 320, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 805514974 + }, + "m_avatarInfo": { + "type": "class AvatarItemInfoBase*", + "id": 15, + "offset": 328, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2627321299 + }, + "m_avatarFlags": { + "type": "std::string", + "id": 16, + "offset": 336, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2347762759 + }, + "m_itemLimit": { + "type": "int", + "id": 17, + "offset": 316, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1799746856 + }, + "m_holidayFlag": { + "type": "std::string", + "id": 18, + "offset": 352, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2994795359 + }, + "m_itemSetBonusTemplateID": { + "type": "unsigned int", + "id": 19, + "offset": 384, + "flags": 33554439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1316835672 + }, + "m_numPrimaryColors": { + "type": "int", + "id": 20, + "offset": 428, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 981103872 + }, + "m_numSecondaryColors": { + "type": "int", + "id": 21, + "offset": 432, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1310416868 + }, + "m_numPatterns": { + "type": "int", + "id": 22, + "offset": 436, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 953162171 + }, + "m_school": { + "type": "std::string", + "id": 23, + "offset": 392, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2438566051 + }, + "m_arenaPointCost": { + "type": "int", + "id": 24, + "offset": 440, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1819621796 + }, + "m_pvpCurrencyCost": { + "type": "int", + "id": 25, + "offset": 444, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 645595444 + }, + "m_pvpTourneyCurrencyCost": { + "type": "int", + "id": 26, + "offset": 448, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 517874954 + }, + "m_rank": { + "type": "int", + "id": 27, + "offset": 424, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 219803942 + }, + "m_boyIconIndex": { + "type": "int", + "id": 28, + "offset": 452, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 802140453 + }, + "m_girlIconIndex": { + "type": "int", + "id": 29, + "offset": 456, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 832706793 + }, + "m_leashOffsetOverride": { + "type": "class SharedPointer", + "id": 30, + "offset": 464, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1692586788 + }, + "m_rarity": { + "type": "enum RarityType", + "id": 31, + "offset": 460, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2253792108, + "enum_options": { + "RT_COMMON": 0, + "RT_UNCOMMON": 1, + "RT_RARE": 2, + "RT_ULTRARARE": 3, + "RT_EPIC": 4 + } + }, + "m_cantripName": { + "type": "std::string", + "id": 32, + "offset": 480, + "flags": 33554439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3064230349 + } + } + }, + "1760816619": { + "name": "class EffectListSpellEffect", + "bases": [ + "SpellEffect", + "PropertyClass" + ], + "hash": 1760816619, + "properties": { + "m_effectType": { + "type": "enum SpellEffect::kSpellEffects", + "id": 0, + "offset": 72, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2578255295, + "enum_options": { + "kInvalidSpellEffect": 0, + "kDamage": 1, + "kDamageNoCrit": 2, + "kHeal": 3, + "kHealPercent": 4, + "kSetHealPercent": 113, + "kStealHealth": 5, + "kReduceOverTime": 6, + "kDetonateOverTime": 7, + "kPushCharm": 8, + "kStealCharm": 9, + "kPushWard": 10, + "kStealWard": 11, + "kPushOverTime": 12, + "kStealOverTime": 13, + "kRemoveCharm": 14, + "kRemoveWard": 15, + "kRemoveOverTime": 16, + "kRemoveAura": 17, + "kSwapAll": 18, + "kSwapCharm": 19, + "kSwapWard": 20, + "kSwapOverTime": 21, + "kModifyIncomingDamage": 22, + "kModifyIncomingDamageFlat": 119, + "kMaximumIncomingDamage": 23, + "kModifyIncomingHeal": 24, + "kModifyIncomingHealFlat": 118, + "kModifyIncomingDamageType": 25, + "kModifyIncomingArmorPiercing": 26, + "kModifyOutgoingDamage": 27, + "kModifyOutgoingDamageFlat": 121, + "kModifyOutgoingHeal": 28, + "kModifyOutgoingHealFlat": 120, + "kModifyOutgoingDamageType": 29, + "kModifyOutgoingArmorPiercing": 30, + "kModifyOutgoingStealHealth": 31, + "kModifyIncomingStealHealth": 32, + "kBounceNext": 33, + "kBouncePrevious": 34, + "kBounceBack": 35, + "kBounceAll": 36, + "kAbsorbDamage": 37, + "kAbsorbHeal": 38, + "kModifyAccuracy": 39, + "kDispel": 40, + "kConfusion": 41, + "kCloakedCharm": 42, + "kCloakedWard": 43, + "kStunResist": 44, + "kClue": 111, + "kPipConversion": 45, + "kCritBoost": 46, + "kCritBlock": 47, + "kPolymorph": 48, + "kDelayCast": 49, + "kModifyCardCloak": 50, + "kModifyCardDamage": 51, + "kModifyCardAccuracy": 53, + "kModifyCardMutation": 54, + "kModifyCardRank": 55, + "kModifyCardArmorPiercing": 56, + "kSummonCreature": 65, + "kTeleportPlayer": 66, + "kStun": 67, + "kDampen": 68, + "kReshuffle": 69, + "kMindControl": 70, + "kModifyPips": 71, + "kModifyPowerPips": 72, + "kModifyShadowPips": 73, + "kModifyHate": 74, + "kDamageOverTime": 75, + "kHealOverTime": 76, + "kModifyPowerPipChance": 77, + "kModifyRank": 78, + "kStunBlock": 79, + "kRevealCloak": 80, + "kInstantKill": 81, + "kAfterlife": 82, + "kDeferredDamage": 83, + "kDamagePerTotalPipPower": 84, + "kModifyCardHeal": 52, + "kModifyCardCharm": 57, + "kModifyCardWard": 58, + "kModifyCardOutgoingDamage": 59, + "kModifyCardOutgoingAccuracy": 60, + "kModifyCardOutgoingHeal": 61, + "kModifyCardOutgoingArmorPiercing": 62, + "kModifyCardIncomingDamage": 63, + "kModifyCardAbsorbDamage": 64, + "kCloakedWardNoRemove": 86, + "kAddCombatTriggerList": 87, + "kRemoveCombatTriggerList": 88, + "kBacklashDamage": 89, + "kModifyBacklash": 90, + "kIntercept": 91, + "kShadowSelf": 92, + "kShadowCreature": 93, + "kModifyShadowCreatureLevel": 94, + "kSelectShadowCreatureAttackTarget": 95, + "kShadowDecrementTurn": 96, + "kCritBoostSchoolSpecific": 97, + "kSpawnCreature": 98, + "kUnPolymorph": 99, + "kPowerPipConversion": 100, + "kProtectCardBeneficial": 101, + "kProtectCardHarmful": 102, + "kProtectBeneficial": 103, + "kProtectHarmful": 104, + "kDivideDamage": 105, + "kCollectEssence": 106, + "kKillCreature": 107, + "kDispelBlock": 108, + "kConfusionBlock": 109, + "kModifyPipRoundRate": 110, + "kMaxHealthDamage": 112, + "kUntargetable": 114, + "kMakeTargetable": 115, + "kForceTargetable": 116, + "kRemoveStunBlock": 117, + "kExitCombat": 122, + "kSuspendPips": 123, + "kResumePips": 124, + "kAutoPass": 125, + "kStopAutoPass": 126, + "kVanish": 127, + "kStopVanish": 128, + "kMaxHealthHeal": 129, + "kHealByWard": 130, + "kTaunt": 131, + "kPacify": 132, + "kRemoveTargetRestriction": 133, + "kConvertHangingEffect": 134, + "kAddSpellToDeck": 135, + "kAddSpellToHand": 136, + "kModifyIncomingDamageOverTime": 137, + "kModifyIncomingHealOverTime": 138, + "kModifyCardDamagebyRank": 139, + "kPushConvertedCharm": 140, + "kStealConvertedCharm": 141, + "kPushConvertedWard": 142, + "kStealConvertedWard": 143, + "kPushConvertedOverTime": 144, + "kStealConvertedOverTime": 145, + "kRemoveConvertedCharm": 146, + "kRemoveConvertedWard": 147, + "kRemoveConvertedOverTime": 148, + "kModifyOverTimeDuration": 149, + "kModifySchoolPips": 150 + } + }, + "m_effectParam": { + "type": "int", + "id": 1, + "offset": 76, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 357920024 + }, + "m_disposition": { + "type": "enum SpellEffect::kHangingDisposition", + "id": 2, + "offset": 80, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1904841031, + "enum_options": { + "kBoth": 0, + "kBeneficial": 1, + "kHarmful": 2 + } + }, + "m_sDamageType": { + "type": "std::string", + "id": 3, + "offset": 88, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2501054223 + }, + "m_damageType": { + "type": "unsigned int", + "id": 4, + "offset": 84, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 737882766 + }, + "m_pipNum": { + "type": "int", + "id": 5, + "offset": 128, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 830827539 + }, + "m_actNum": { + "type": "int", + "id": 6, + "offset": 132, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 236824866 + }, + "m_effectTarget": { + "type": "enum SpellEffect::kEffectTarget", + "id": 7, + "offset": 140, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2458940523, + "enum_options": { + "kInvalidTarget": 0, + "kSpell": 1, + "kSpecificSpells": 2, + "kGlobal": 3, + "kEnemyTeam": 4, + "kEnemyTeamAllAtOnce": 5, + "kFriendlyTeam": 6, + "kFriendlyTeamAllAtOnce": 7, + "kEnemySingle": 8, + "kFriendlySingle": 9, + "kMinion": 10, + "kFriendlyMinion": 17, + "kEnemyMinion": 18, + "kSelf": 11, + "kAtLeastOneEnemy": 13, + "kPreselectedEnemySingle": 12, + "kMultiTargetEnemy": 14, + "kMultiTargetFriendly": 15, + "kFriendlySingleNotMe": 16 + } + }, + "m_numRounds": { + "type": "int", + "id": 8, + "offset": 144, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1229753829 + }, + "m_paramPerRound": { + "type": "int", + "id": 9, + "offset": 148, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 683234234 + }, + "m_healModifier": { + "type": "float", + "id": 10, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1317921248, + "enum_options": { + "__DEFAULT": "1.0" + } + }, + "m_spellTemplateID": { + "type": "unsigned int", + "id": 11, + "offset": 120, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 585567702 + }, + "m_enchantmentSpellTemplateID": { + "type": "unsigned int", + "id": 12, + "offset": 124, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 246955115 + }, + "m_act": { + "type": "bool", + "id": 13, + "offset": 136, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 269510283 + }, + "m_cloaked": { + "type": "bool", + "id": 14, + "offset": 157, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 7349510 + }, + "m_bypassProtection": { + "type": "bool", + "id": 15, + "offset": 159, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1657138252 + }, + "m_armorPiercingParam": { + "type": "int", + "id": 16, + "offset": 160, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2025530205 + }, + "m_chancePerTarget": { + "type": "int", + "id": 17, + "offset": 164, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 845426794 + }, + "m_protected": { + "type": "bool", + "id": 18, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1445655037 + }, + "m_converted": { + "type": "bool", + "id": 19, + "offset": 169, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1590428797 + }, + "m_rank": { + "type": "int", + "id": 20, + "offset": 208, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 219803942 + }, + "m_effectList": { + "type": "class SharedPointer", + "id": 21, + "offset": 224, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 707154804 + } + } + }, + "481550251": { + "name": "class StatisticEffectTemplate", + "bases": [ + "GameEffectTemplate", + "PropertyClass" + ], + "hash": 481550251, + "properties": { + "m_effectName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2029161513 + }, + "m_effectCategory": { + "type": "std::string", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1852673222 + }, + "m_sortOrder": { + "type": "int", + "id": 2, + "offset": 148, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1411218206 + }, + "m_duration": { + "type": "double", + "id": 3, + "offset": 192, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2727932435 + }, + "m_stackingCategories": { + "type": "std::string", + "id": 4, + "offset": 160, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1774497525 + }, + "m_isPersistent": { + "type": "bool", + "id": 5, + "offset": 153, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 923861920 + }, + "m_bIsOnPet": { + "type": "bool", + "id": 6, + "offset": 154, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 522593303 + }, + "m_isPublic": { + "type": "bool", + "id": 7, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1728439822 + }, + "m_visualEffectAddName": { + "type": "std::string", + "id": 8, + "offset": 200, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3382086694 + }, + "m_visualEffectRemoveName": { + "type": "std::string", + "id": 9, + "offset": 232, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1541697323 + }, + "m_onAddFunctorName": { + "type": "std::string", + "id": 10, + "offset": 280, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1561843107 + }, + "m_onRemoveFunctorName": { + "type": "std::string", + "id": 11, + "offset": 312, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2559017864 + }, + "m_stackingRule": { + "type": "enum STACKING_RULE", + "id": 12, + "offset": 144, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 431568889, + "enum_options": { + "STACKING_ALLOWED": 0, + "STACKING_NOSTACK": 1, + "STACKING_REPLACE": 2 + } + } + } + }, + "1760815339": { + "name": "class EffectListSpellEffect*", + "bases": [ + "SpellEffect", + "PropertyClass" + ], + "hash": 1760815339, + "properties": { + "m_effectType": { + "type": "enum SpellEffect::kSpellEffects", + "id": 0, + "offset": 72, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2578255295, + "enum_options": { + "kInvalidSpellEffect": 0, + "kDamage": 1, + "kDamageNoCrit": 2, + "kHeal": 3, + "kHealPercent": 4, + "kSetHealPercent": 113, + "kStealHealth": 5, + "kReduceOverTime": 6, + "kDetonateOverTime": 7, + "kPushCharm": 8, + "kStealCharm": 9, + "kPushWard": 10, + "kStealWard": 11, + "kPushOverTime": 12, + "kStealOverTime": 13, + "kRemoveCharm": 14, + "kRemoveWard": 15, + "kRemoveOverTime": 16, + "kRemoveAura": 17, + "kSwapAll": 18, + "kSwapCharm": 19, + "kSwapWard": 20, + "kSwapOverTime": 21, + "kModifyIncomingDamage": 22, + "kModifyIncomingDamageFlat": 119, + "kMaximumIncomingDamage": 23, + "kModifyIncomingHeal": 24, + "kModifyIncomingHealFlat": 118, + "kModifyIncomingDamageType": 25, + "kModifyIncomingArmorPiercing": 26, + "kModifyOutgoingDamage": 27, + "kModifyOutgoingDamageFlat": 121, + "kModifyOutgoingHeal": 28, + "kModifyOutgoingHealFlat": 120, + "kModifyOutgoingDamageType": 29, + "kModifyOutgoingArmorPiercing": 30, + "kModifyOutgoingStealHealth": 31, + "kModifyIncomingStealHealth": 32, + "kBounceNext": 33, + "kBouncePrevious": 34, + "kBounceBack": 35, + "kBounceAll": 36, + "kAbsorbDamage": 37, + "kAbsorbHeal": 38, + "kModifyAccuracy": 39, + "kDispel": 40, + "kConfusion": 41, + "kCloakedCharm": 42, + "kCloakedWard": 43, + "kStunResist": 44, + "kClue": 111, + "kPipConversion": 45, + "kCritBoost": 46, + "kCritBlock": 47, + "kPolymorph": 48, + "kDelayCast": 49, + "kModifyCardCloak": 50, + "kModifyCardDamage": 51, + "kModifyCardAccuracy": 53, + "kModifyCardMutation": 54, + "kModifyCardRank": 55, + "kModifyCardArmorPiercing": 56, + "kSummonCreature": 65, + "kTeleportPlayer": 66, + "kStun": 67, + "kDampen": 68, + "kReshuffle": 69, + "kMindControl": 70, + "kModifyPips": 71, + "kModifyPowerPips": 72, + "kModifyShadowPips": 73, + "kModifyHate": 74, + "kDamageOverTime": 75, + "kHealOverTime": 76, + "kModifyPowerPipChance": 77, + "kModifyRank": 78, + "kStunBlock": 79, + "kRevealCloak": 80, + "kInstantKill": 81, + "kAfterlife": 82, + "kDeferredDamage": 83, + "kDamagePerTotalPipPower": 84, + "kModifyCardHeal": 52, + "kModifyCardCharm": 57, + "kModifyCardWard": 58, + "kModifyCardOutgoingDamage": 59, + "kModifyCardOutgoingAccuracy": 60, + "kModifyCardOutgoingHeal": 61, + "kModifyCardOutgoingArmorPiercing": 62, + "kModifyCardIncomingDamage": 63, + "kModifyCardAbsorbDamage": 64, + "kCloakedWardNoRemove": 86, + "kAddCombatTriggerList": 87, + "kRemoveCombatTriggerList": 88, + "kBacklashDamage": 89, + "kModifyBacklash": 90, + "kIntercept": 91, + "kShadowSelf": 92, + "kShadowCreature": 93, + "kModifyShadowCreatureLevel": 94, + "kSelectShadowCreatureAttackTarget": 95, + "kShadowDecrementTurn": 96, + "kCritBoostSchoolSpecific": 97, + "kSpawnCreature": 98, + "kUnPolymorph": 99, + "kPowerPipConversion": 100, + "kProtectCardBeneficial": 101, + "kProtectCardHarmful": 102, + "kProtectBeneficial": 103, + "kProtectHarmful": 104, + "kDivideDamage": 105, + "kCollectEssence": 106, + "kKillCreature": 107, + "kDispelBlock": 108, + "kConfusionBlock": 109, + "kModifyPipRoundRate": 110, + "kMaxHealthDamage": 112, + "kUntargetable": 114, + "kMakeTargetable": 115, + "kForceTargetable": 116, + "kRemoveStunBlock": 117, + "kExitCombat": 122, + "kSuspendPips": 123, + "kResumePips": 124, + "kAutoPass": 125, + "kStopAutoPass": 126, + "kVanish": 127, + "kStopVanish": 128, + "kMaxHealthHeal": 129, + "kHealByWard": 130, + "kTaunt": 131, + "kPacify": 132, + "kRemoveTargetRestriction": 133, + "kConvertHangingEffect": 134, + "kAddSpellToDeck": 135, + "kAddSpellToHand": 136, + "kModifyIncomingDamageOverTime": 137, + "kModifyIncomingHealOverTime": 138, + "kModifyCardDamagebyRank": 139, + "kPushConvertedCharm": 140, + "kStealConvertedCharm": 141, + "kPushConvertedWard": 142, + "kStealConvertedWard": 143, + "kPushConvertedOverTime": 144, + "kStealConvertedOverTime": 145, + "kRemoveConvertedCharm": 146, + "kRemoveConvertedWard": 147, + "kRemoveConvertedOverTime": 148, + "kModifyOverTimeDuration": 149, + "kModifySchoolPips": 150 + } + }, + "m_effectParam": { + "type": "int", + "id": 1, + "offset": 76, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 357920024 + }, + "m_disposition": { + "type": "enum SpellEffect::kHangingDisposition", + "id": 2, + "offset": 80, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1904841031, + "enum_options": { + "kBoth": 0, + "kBeneficial": 1, + "kHarmful": 2 + } + }, + "m_sDamageType": { + "type": "std::string", + "id": 3, + "offset": 88, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2501054223 + }, + "m_damageType": { + "type": "unsigned int", + "id": 4, + "offset": 84, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 737882766 + }, + "m_pipNum": { + "type": "int", + "id": 5, + "offset": 128, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 830827539 + }, + "m_actNum": { + "type": "int", + "id": 6, + "offset": 132, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 236824866 + }, + "m_effectTarget": { + "type": "enum SpellEffect::kEffectTarget", + "id": 7, + "offset": 140, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2458940523, + "enum_options": { + "kInvalidTarget": 0, + "kSpell": 1, + "kSpecificSpells": 2, + "kGlobal": 3, + "kEnemyTeam": 4, + "kEnemyTeamAllAtOnce": 5, + "kFriendlyTeam": 6, + "kFriendlyTeamAllAtOnce": 7, + "kEnemySingle": 8, + "kFriendlySingle": 9, + "kMinion": 10, + "kFriendlyMinion": 17, + "kEnemyMinion": 18, + "kSelf": 11, + "kAtLeastOneEnemy": 13, + "kPreselectedEnemySingle": 12, + "kMultiTargetEnemy": 14, + "kMultiTargetFriendly": 15, + "kFriendlySingleNotMe": 16 + } + }, + "m_numRounds": { + "type": "int", + "id": 8, + "offset": 144, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1229753829 + }, + "m_paramPerRound": { + "type": "int", + "id": 9, + "offset": 148, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 683234234 + }, + "m_healModifier": { + "type": "float", + "id": 10, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1317921248, + "enum_options": { + "__DEFAULT": "1.0" + } + }, + "m_spellTemplateID": { + "type": "unsigned int", + "id": 11, + "offset": 120, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 585567702 + }, + "m_enchantmentSpellTemplateID": { + "type": "unsigned int", + "id": 12, + "offset": 124, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 246955115 + }, + "m_act": { + "type": "bool", + "id": 13, + "offset": 136, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 269510283 + }, + "m_cloaked": { + "type": "bool", + "id": 14, + "offset": 157, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 7349510 + }, + "m_bypassProtection": { + "type": "bool", + "id": 15, + "offset": 159, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1657138252 + }, + "m_armorPiercingParam": { + "type": "int", + "id": 16, + "offset": 160, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2025530205 + }, + "m_chancePerTarget": { + "type": "int", + "id": 17, + "offset": 164, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 845426794 + }, + "m_protected": { + "type": "bool", + "id": 18, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1445655037 + }, + "m_converted": { + "type": "bool", + "id": 19, + "offset": 169, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1590428797 + }, + "m_rank": { + "type": "int", + "id": 20, + "offset": 208, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 219803942 + }, + "m_effectList": { + "type": "class SharedPointer", + "id": 21, + "offset": 224, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 707154804 + } + } + }, + "481313173": { + "name": "class ClientBattlegroundPlayerStatsManager*", + "bases": [ + "BattlegroundPlayerStatsManager", + "PropertyClass" + ], + "hash": 481313173, + "properties": { + "m_statsList": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2999855587 + }, + "m_poi": { + "type": "class SharedPointer", + "id": 1, + "offset": 88, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1342603341 + } + } + }, + "51983456": { + "name": "class WhirlyBurlyKioskBehavior", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 51983456, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + } + } + }, + "1760739446": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1760739446, + "properties": { + "m_templateID": { + "type": "unsigned int", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1286746870 + }, + "m_enchantment": { + "type": "unsigned int", + "id": 1, + "offset": 76, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2217886818 + } + } + }, + "919271733": { + "name": "class SharedPointer", + "bases": [], + "hash": 919271733, + "properties": {} + }, + "1328823925": { + "name": "class SharedPointer", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 1328823925, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + } + } + }, + "550650537": { + "name": "class CSRPropertyEntry", + "bases": [ + "PropertyClass" + ], + "hash": 550650537, + "properties": { + "m_value": { + "type": "s24", + "id": 0, + "offset": 76, + "flags": 16, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 812923009 + }, + "m_propertyID": { + "type": "unsigned int", + "id": 1, + "offset": 72, + "flags": 16, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1883057791 + } + } + }, + "481437550": { + "name": "class HousingGameHiScores*", + "bases": [ + "PropertyClass" + ], + "hash": 481437550, + "properties": { + "m_playerName0": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2243035545 + }, + "m_score0": { + "type": "unsigned short", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1494703316 + }, + "m_playerName1": { + "type": "std::string", + "id": 2, + "offset": 112, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2243035546 + }, + "m_score1": { + "type": "unsigned short", + "id": 3, + "offset": 144, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1494703317 + }, + "m_playerName2": { + "type": "std::string", + "id": 4, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2243035547 + }, + "m_score2": { + "type": "unsigned short", + "id": 5, + "offset": 184, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1494703318 + } + } + }, + "1328779043": { + "name": "class SharedPointer", + "bases": [ + "DerbyImmunityEffect", + "DerbyEffect", + "PropertyClass" + ], + "hash": 1328779043, + "properties": { + "m_buffType": { + "type": "enum DerbyTalentBuffType", + "id": 0, + "offset": 92, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1149251982, + "enum_options": { + "Buff": 0, + "Debuff": 1, + "Neither": 2 + } + }, + "m_kTarget": { + "type": "enum DerbyTargetType", + "id": 1, + "offset": 96, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1807803351, + "enum_options": { + "kTargetInFront": 0, + "kTargetBehind": 1, + "kTargetFirst": 2, + "kTargetSelf": 3, + "kTargetAll": 4, + "kTargetLast": 5 + } + }, + "m_nDuration": { + "type": "int", + "id": 2, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1110167982 + }, + "m_effectID": { + "type": "unsigned int", + "id": 3, + "offset": 88, + "flags": 24, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2347630439 + }, + "m_imageFilename": { + "type": "std::string", + "id": 4, + "offset": 112, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2813328063 + }, + "m_iconIndex": { + "type": "unsigned int", + "id": 5, + "offset": 144, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1265133262 + }, + "m_soundOnActivate": { + "type": "std::string", + "id": 6, + "offset": 152, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1956929714 + }, + "m_soundOnTarget": { + "type": "std::string", + "id": 7, + "offset": 184, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3444214056 + }, + "m_targetParticleEffect": { + "type": "std::string", + "id": 8, + "offset": 216, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3048234723 + }, + "m_overheadMessage": { + "type": "std::string", + "id": 9, + "offset": 248, + "flags": 8388639, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1701018190 + }, + "m_requirements": { + "type": "class RequirementList", + "id": 10, + "offset": 280, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2840988582 + }, + "m_bToDebuffs": { + "type": "bool", + "id": 11, + "offset": 376, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1216111639 + } + } + }, + "919576387": { + "name": "class RemoveParticleActorCinematicAction*", + "bases": [ + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 919576387, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + }, + "m_effectName": { + "type": "std::string", + "id": 2, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2029161513 + }, + "m_nodeName": { + "type": "std::string", + "id": 3, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3607089954 + } + } + }, + "1328788969": { + "name": "class SharedPointer", + "bases": [ + "SigilTemplate", + "CoreTemplate", + "PropertyClass" + ], + "hash": 1328788969, + "properties": { + "m_behaviors": { + "type": "class BehaviorTemplate*", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1197808594 + }, + "m_sigilName": { + "type": "std::string", + "id": 1, + "offset": 96, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3177657588 + }, + "m_sigilType": { + "type": "std::string", + "id": 2, + "offset": 136, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3177899445 + }, + "m_entryResults": { + "type": "class ResultList*", + "id": 3, + "offset": 184, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3262956108 + }, + "m_requirements": { + "type": "class RequirementList*", + "id": 4, + "offset": 176, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2840985510 + }, + "m_cancelResults": { + "type": "class ResultList*", + "id": 5, + "offset": 192, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3799257120 + }, + "m_completeResults": { + "type": "class ResultList*", + "id": 6, + "offset": 200, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1964258099 + }, + "m_useState": { + "type": "bool", + "id": 7, + "offset": 216, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 683320865 + }, + "m_stateOverride": { + "type": "std::string", + "id": 8, + "offset": 224, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1949715548 + }, + "m_subCircles": { + "type": "class SigilSubCircle*", + "id": 9, + "offset": 256, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2227135493 + } + } + }, + "1760883980": { + "name": "class SharedPointer", + "bases": [ + "BattlegroundPlayerStatsManager", + "PropertyClass" + ], + "hash": 1760883980, + "properties": { + "m_statsList": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2999855587 + }, + "m_poi": { + "type": "class SharedPointer", + "id": 1, + "offset": 88, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1342603341 + } + } + }, + "481623014": { + "name": "class SharedPointer", + "bases": [ + "LeashedPathMovementBehavior", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 481623014, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + } + } + }, + "919520191": { + "name": "class ResSyncScript*", + "bases": [ + "Result", + "PropertyClass" + ], + "hash": 919520191, + "properties": { + "m_script": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2438918928 + }, + "m_function": { + "type": "std::string", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1511192225 + } + } + }, + "59619327": { + "name": "class SharedPointer", + "bases": [ + "QueuedCombatCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 59619327, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + } + } + }, + "1760864890": { + "name": "class SharedPointer", + "bases": [ + "SpellTemplate", + "CoreTemplate", + "PropertyClass" + ], + "hash": 1760864890, + "properties": { + "m_behaviors": { + "type": "class BehaviorTemplate*", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1197808594 + }, + "m_name": { + "type": "std::string", + "id": 1, + "offset": 96, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1717359772 + }, + "m_description": { + "type": "std::string", + "id": 2, + "offset": 168, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1649374815 + }, + "m_advancedDescription": { + "type": "std::string", + "id": 3, + "offset": 200, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3465713013 + }, + "m_displayName": { + "type": "std::string", + "id": 4, + "offset": 136, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2446900370 + }, + "m_spellBase": { + "type": "std::string", + "id": 5, + "offset": 248, + "flags": 268435463, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2688054198, + "enum_options": { + "__BASECLASS": "CinematicTemplate" + } + }, + "m_effects": { + "type": "class SharedPointer", + "id": 6, + "offset": 280, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 370726379 + }, + "m_sMagicSchoolName": { + "type": "std::string", + "id": 7, + "offset": 312, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2035693400 + }, + "m_sTypeName": { + "type": "std::string", + "id": 8, + "offset": 352, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3580785905 + }, + "m_trainingCost": { + "type": "int", + "id": 9, + "offset": 384, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 982588239 + }, + "m_accuracy": { + "type": "int", + "id": 10, + "offset": 388, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1636315493 + }, + "m_baseCost": { + "type": "int", + "id": 11, + "offset": 232, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1475151502 + }, + "m_creditsCost": { + "type": "int", + "id": 12, + "offset": 236, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 715313825 + }, + "m_pvpCurrencyCost": { + "type": "int", + "id": 13, + "offset": 240, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 645595444 + }, + "m_pvpTourneyCurrencyCost": { + "type": "int", + "id": 14, + "offset": 244, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 517874954 + }, + "m_boosterPackIcon": { + "type": "std::string", + "id": 15, + "offset": 496, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3428653697 + }, + "m_validTargetSpells": { + "type": "unsigned int", + "id": 16, + "offset": 392, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2355782967 + }, + "m_PvP": { + "type": "bool", + "id": 17, + "offset": 408, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 269492361 + }, + "m_PvE": { + "type": "bool", + "id": 18, + "offset": 409, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 269492350 + }, + "m_noPvPEnchant": { + "type": "bool", + "id": 19, + "offset": 410, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 661581703 + }, + "m_noPvEEnchant": { + "type": "bool", + "id": 20, + "offset": 411, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 10144220 + }, + "m_battlegroundsOnly": { + "type": "bool", + "id": 21, + "offset": 412, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1244782419 + }, + "m_Treasure": { + "type": "bool", + "id": 22, + "offset": 413, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1749096414 + }, + "m_noDiscard": { + "type": "bool", + "id": 23, + "offset": 414, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 565749226 + }, + "m_leavesPlayWhenCast": { + "type": "bool", + "id": 24, + "offset": 532, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 698216294 + }, + "m_imageIndex": { + "type": "int", + "id": 25, + "offset": 416, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1570500405 + }, + "m_imageName": { + "type": "std::string", + "id": 26, + "offset": 424, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2391520543 + }, + "m_cloaked": { + "type": "bool", + "id": 27, + "offset": 489, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 7349510 + }, + "m_casterInvisible": { + "type": "bool", + "id": 28, + "offset": 490, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 310214650 + }, + "m_adjectives": { + "type": "std::string", + "id": 29, + "offset": 576, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2967855037 + }, + "m_spellSourceType": { + "type": "enum SpellTemplate::kSpellSourceType", + "id": 30, + "offset": 528, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 156272727, + "enum_options": { + "kCaster": 0, + "kPet": 1, + "kShadowCreature": 2, + "kWeapon": 3, + "kEquipment": 4 + } + }, + "m_cloakedName": { + "type": "std::string", + "id": 31, + "offset": 536, + "flags": 268435463, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2846679215, + "enum_options": { + "__BASECLASS": "SpellTemplate" + } + }, + "m_purchaseRequirements": { + "type": "class RequirementList*", + "id": 32, + "offset": 608, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3174641793 + }, + "m_displayRequirements": { + "type": "class RequirementList*", + "id": 33, + "offset": 840, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3646782876 + }, + "m_descriptionTrainer": { + "type": "std::string", + "id": 34, + "offset": 616, + "flags": 8388871, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1756093908 + }, + "m_descriptionCombatHUD": { + "type": "std::string", + "id": 35, + "offset": 648, + "flags": 8388871, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1631478006 + }, + "m_displayIndex": { + "type": "int", + "id": 36, + "offset": 680, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1250551048 + }, + "m_hiddenFromEffectsWindow": { + "type": "bool", + "id": 37, + "offset": 684, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1832736331 + }, + "m_ignoreCharms": { + "type": "bool", + "id": 38, + "offset": 685, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1840075893 + }, + "m_alwaysFizzle": { + "type": "bool", + "id": 39, + "offset": 686, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2030988856 + }, + "m_spellCategory": { + "type": "std::string", + "id": 40, + "offset": 688, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2472376729 + }, + "m_showPolymorphedName": { + "type": "bool", + "id": 41, + "offset": 720, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2097929096 + }, + "m_skipTruncation": { + "type": "bool", + "id": 42, + "offset": 721, + "flags": 263, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1838335249 + }, + "m_maxCopies": { + "type": "unsigned int", + "id": 43, + "offset": 724, + "flags": 263, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 403022326 + }, + "m_levelRestriction": { + "type": "int", + "id": 44, + "offset": 728, + "flags": 263, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 176502472 + }, + "m_delayEnchantment": { + "type": "bool", + "id": 45, + "offset": 732, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 191336919 + }, + "m_delayEnchantmentOrder": { + "type": "enum SpellEffect::kDelayOrder", + "id": 46, + "offset": 736, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2526055263, + "enum_options": { + "SpellEffect::kAnyOrder": 0, + "SpellEffect::kFirst": 1, + "SpellEffect::kSecond": 2 + } + }, + "m_previousSpellName": { + "type": "std::string", + "id": 47, + "offset": 744, + "flags": 268435463, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2903322585, + "enum_options": { + "__BASECLASS": "SpellTemplate" + } + }, + "m_cardFront": { + "type": "std::string", + "id": 48, + "offset": 456, + "flags": 131359, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3557598526 + }, + "m_useGloss": { + "type": "bool", + "id": 49, + "offset": 488, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 668817544 + }, + "m_ignoreDispel": { + "type": "bool", + "id": 50, + "offset": 776, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1881041624 + }, + "m_backRowFriendly": { + "type": "bool", + "id": 51, + "offset": 777, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 501584377 + }, + "m_spellRank": { + "type": "class SharedPointer", + "id": 52, + "offset": 784, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3152361374 + }, + "m_secondarySchoolName": { + "type": "std::string", + "id": 53, + "offset": 800, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1803268236 + }, + "m_spellFusion": { + "type": "unsigned int", + "id": 54, + "offset": 836, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1658928321 + }, + "m_requiredSchoolName": { + "type": "std::string", + "id": 55, + "offset": 848, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3576058981 + }, + "m_fishingSpellType": { + "type": "enum FishingSpellTemplate::FishingSpellType", + "id": 56, + "offset": 880, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3230697370, + "enum_options": { + "FS_Catching": 0, + "FS_Utility": 1, + "FS_PredatorBanishment": 2 + } + }, + "m_energyCost": { + "type": "int", + "id": 57, + "offset": 884, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1236111677 + }, + "m_animationKFM": { + "type": "std::string", + "id": 58, + "offset": 888, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2466280761 + }, + "m_animationName": { + "type": "std::string", + "id": 59, + "offset": 920, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3393414044 + }, + "m_soundEffectName": { + "type": "std::string", + "id": 60, + "offset": 952, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3235436082 + }, + "m_soundEffectGain": { + "type": "float", + "id": 61, + "offset": 984, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1827685932, + "enum_options": { + "__DEFAULT": "1.0" + } + }, + "m_fishingSpellImageIndex": { + "type": "int", + "id": 62, + "offset": 988, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 757127517 + }, + "m_fishingSpellImageName": { + "type": "std::string", + "id": 63, + "offset": 992, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1585969735 + }, + "m_fishingSchoolFocus": { + "type": "std::string", + "id": 64, + "offset": 1024, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2178393483 + } + } + }, + "919442742": { + "name": "class CastleMagicBehaviorBase", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 919442742, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_castleMagicData": { + "type": "std::string", + "id": 1, + "offset": 128, + "flags": 575, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2874597138 + } + } + }, + "52474364": { + "name": "class EloConfig", + "bases": [ + "PropertyClass" + ], + "hash": 52474364, + "properties": { + "m_defaultRatingsTable": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2295782328 + }, + "m_perLeagueRatingsTables": { + "type": "class SharedPointer", + "id": 1, + "offset": 88, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2644292192 + } + } + }, + "1330519911": { + "name": "class SharedPointer", + "bases": [ + "CinematicAction", + "PropertyClass" + ], + "hash": 1330519911, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_dialog": { + "type": "class ActorDialog*", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1310859212 + }, + "m_activePersona": { + "type": "std::string", + "id": 2, + "offset": 88, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1972573231 + } + } + }, + "52295661": { + "name": "class TimerControlCinematicAction", + "bases": [ + "CinematicAction", + "PropertyClass" + ], + "hash": 52295661, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_bSetVisible": { + "type": "bool", + "id": 1, + "offset": 88, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 471535983 + }, + "m_fTimeToSet": { + "type": "float", + "id": 2, + "offset": 84, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 661189659 + }, + "m_timerStrKey": { + "type": "std::string", + "id": 3, + "offset": 96, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3000196414 + }, + "m_timerOp": { + "type": "enum TimerControlCinematicAction::kControlOperation", + "id": 4, + "offset": 80, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1809610086, + "enum_options": { + "kNone": 0, + "kStartTimer": 1, + "kSetVisible": 2, + "kSetTimerString": 3, + "kSetTimeToShow": 4 + } + } + } + }, + "482508975": { + "name": "class CantripsInvisibilityEffectInfo*", + "bases": [ + "GameEffectInfo", + "PropertyClass" + ], + "hash": 482508975, + "properties": { + "m_effectName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2029161513 + } + } + }, + "919520188": { + "name": "class ResSyncScript", + "bases": [ + "Result", + "PropertyClass" + ], + "hash": 919520188, + "properties": { + "m_script": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2438918928 + }, + "m_function": { + "type": "std::string", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1511192225 + } + } + }, + "1330192300": { + "name": "class TeleportProximityBehaviorTemplate*", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 1330192300, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + }, + "m_radius": { + "type": "float", + "id": 1, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 989410271 + }, + "m_offsetX": { + "type": "float", + "id": 2, + "offset": 124, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 315454742 + }, + "m_offsetY": { + "type": "float", + "id": 3, + "offset": 128, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 315454743 + }, + "m_offsetZ": { + "type": "float", + "id": 4, + "offset": 132, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 315454744 + }, + "m_locationName": { + "type": "std::string", + "id": 5, + "offset": 136, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1824218389 + }, + "m_housingExtraZone": { + "type": "std::string", + "id": 6, + "offset": 168, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2893855128 + }, + "m_requirementList": { + "type": "class RequirementList*", + "id": 7, + "offset": 200, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3581372079 + } + } + }, + "52295341": { + "name": "class TimerControlCinematicAction*", + "bases": [ + "CinematicAction", + "PropertyClass" + ], + "hash": 52295341, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_bSetVisible": { + "type": "bool", + "id": 1, + "offset": 88, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 471535983 + }, + "m_fTimeToSet": { + "type": "float", + "id": 2, + "offset": 84, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 661189659 + }, + "m_timerStrKey": { + "type": "std::string", + "id": 3, + "offset": 96, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3000196414 + }, + "m_timerOp": { + "type": "enum TimerControlCinematicAction::kControlOperation", + "id": 4, + "offset": 80, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1809610086, + "enum_options": { + "kNone": 0, + "kStartTimer": 1, + "kSetVisible": 2, + "kSetTimerString": 3, + "kSetTimeToShow": 4 + } + } + } + }, + "482197973": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 482197973, + "properties": { + "m_ingredientID": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1616797422 + }, + "m_quantity": { + "type": "int", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 169215289 + }, + "m_sufficient": { + "type": "bool", + "id": 2, + "offset": 96, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 92688739 + } + } + }, + "1329765184": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1329765184, + "properties": { + "m_initialStats": { + "type": "class PetStat", + "id": 0, + "offset": 72, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2249155308 + } + } + }, + "1761511214": { + "name": "class JewelSocketUnlockCostList", + "bases": [ + "PropertyClass" + ], + "hash": 1761511214, + "properties": { + "m_jewelSocketUnlockList": { + "type": "class JewelSocketUnlockCost", + "id": 0, + "offset": 72, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2753944903 + } + } + }, + "482474534": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 482474534, + "properties": { + "m_unitTypesList": { + "type": "unsigned char", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2643134017 + }, + "m_cardsUsedList": { + "type": "unsigned int", + "id": 1, + "offset": 88, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 711045287 + }, + "m_discardedCardsList": { + "type": "unsigned int", + "id": 2, + "offset": 104, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1939154233 + } + } + }, + "919573827": { + "name": "class RemoveParticleActorCinematicAction", + "bases": [ + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 919573827, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + }, + "m_effectName": { + "type": "std::string", + "id": 2, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2029161513 + }, + "m_nodeName": { + "type": "std::string", + "id": 3, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3607089954 + } + } + }, + "52413390": { + "name": "class DoodleMapMap", + "bases": [ + "PropertyClass" + ], + "hash": 52413390, + "properties": { + "m_mapList": { + "type": "class DoodleMapPair", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2964081080 + } + } + }, + "1762362701": { + "name": "class SharedPointer", + "bases": [ + "Requirement", + "PropertyClass" + ], + "hash": 1762362701, + "properties": { + "m_applyNOT": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1746328074, + "enum_options": { + "__DEFAULT": 0 + } + }, + "m_operator": { + "type": "enum Requirement::Operator", + "id": 1, + "offset": 76, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2672792317, + "enum_options": { + "ROP_AND": 0, + "ROP_OR": 1, + "__DEFAULT": "ROP_AND" + } + } + } + }, + "1330192380": { + "name": "class TeleportProximityBehaviorTemplate", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 1330192380, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + }, + "m_radius": { + "type": "float", + "id": 1, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 989410271 + }, + "m_offsetX": { + "type": "float", + "id": 2, + "offset": 124, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 315454742 + }, + "m_offsetY": { + "type": "float", + "id": 3, + "offset": 128, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 315454743 + }, + "m_offsetZ": { + "type": "float", + "id": 4, + "offset": 132, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 315454744 + }, + "m_locationName": { + "type": "std::string", + "id": 5, + "offset": 136, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1824218389 + }, + "m_housingExtraZone": { + "type": "std::string", + "id": 6, + "offset": 168, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2893855128 + }, + "m_requirementList": { + "type": "class RequirementList*", + "id": 7, + "offset": 200, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3581372079 + } + } + }, + "483122784": { + "name": "enum MassShapeTemplate::MassShape", + "bases": [], + "hash": 483122784, + "properties": {} + }, + "922054873": { + "name": "class BadgeLeaderboardBehaviorTemplate*", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 922054873, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + } + } + }, + "55603180": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 55603180, + "properties": { + "m_addAtPointValue": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1071217084 + }, + "m_removeAtPointValue": { + "type": "float", + "id": 1, + "offset": 76, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2112196961 + }, + "m_lifespan": { + "type": "std::string", + "id": 2, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3042809453 + } + } + }, + "1763936555": { + "name": "class SharedPointer", + "bases": [ + "AvatarItemInfoBase", + "PropertyClass" + ], + "hash": 1763936555, + "properties": { + "m_partName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2609631923 + }, + "m_slotName": { + "type": "std::string", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2819781566 + }, + "m_flags": { + "type": "std::string", + "id": 2, + "offset": 144, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2292098216 + }, + "m_options": { + "type": "class SharedPointer", + "id": 3, + "offset": 160, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2499357824 + }, + "m_textureOptions": { + "type": "class SharedPointer", + "id": 4, + "offset": 176, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2667548348 + }, + "m_defaultOption": { + "type": "class SharedPointer", + "id": 5, + "offset": 192, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2436336754 + }, + "m_defaultTextureOption": { + "type": "class SharedPointer", + "id": 6, + "offset": 208, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2712636654 + } + } + }, + "920296770": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 920296770, + "properties": { + "m_displayPath": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 951754038 + }, + "m_findSideQuests": { + "type": "bool", + "id": 1, + "offset": 73, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1456032030 + }, + "m_silent": { + "type": "bool", + "id": 2, + "offset": 74, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 950595970 + }, + "m_stayOnActiveQuest": { + "type": "bool", + "id": 3, + "offset": 75, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1243951391 + }, + "m_stopOnQuestComplete": { + "type": "bool", + "id": 4, + "offset": 76, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1146878209 + } + } + }, + "1330807243": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1330807243, + "properties": {} + }, + "54937962": { + "name": "class ResourcePointerBase", + "bases": [ + "PropertyClass" + ], + "hash": 54937962, + "properties": { + "m_sAssetName": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2503711247 + } + } + }, + "1763688462": { + "name": "class SharedPointer", + "bases": [ + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 1763688462, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + } + } + }, + "920052956": { + "name": "class NonCombatMayCastSpellTemplate*", + "bases": [ + "GameEffectTemplate", + "PropertyClass" + ], + "hash": 920052956, + "properties": { + "m_effectName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2029161513 + }, + "m_effectCategory": { + "type": "std::string", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1852673222 + }, + "m_sortOrder": { + "type": "int", + "id": 2, + "offset": 148, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1411218206 + }, + "m_duration": { + "type": "double", + "id": 3, + "offset": 192, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2727932435 + }, + "m_stackingCategories": { + "type": "std::string", + "id": 4, + "offset": 160, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1774497525 + }, + "m_isPersistent": { + "type": "bool", + "id": 5, + "offset": 153, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 923861920 + }, + "m_bIsOnPet": { + "type": "bool", + "id": 6, + "offset": 154, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 522593303 + }, + "m_isPublic": { + "type": "bool", + "id": 7, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1728439822 + }, + "m_visualEffectAddName": { + "type": "std::string", + "id": 8, + "offset": 200, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3382086694 + }, + "m_visualEffectRemoveName": { + "type": "std::string", + "id": 9, + "offset": 232, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1541697323 + }, + "m_onAddFunctorName": { + "type": "std::string", + "id": 10, + "offset": 280, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1561843107 + }, + "m_onRemoveFunctorName": { + "type": "std::string", + "id": 11, + "offset": 312, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2559017864 + }, + "m_stackingRule": { + "type": "enum STACKING_RULE", + "id": 12, + "offset": 144, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 431568889, + "enum_options": { + "STACKING_ALLOWED": 0, + "STACKING_NOSTACK": 1, + "STACKING_REPLACE": 2 + } + }, + "m_spellName": { + "type": "std::string", + "id": 13, + "offset": 360, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2688485244 + } + } + }, + "53745884": { + "name": "class SharedPointer", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 53745884, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + } + } + }, + "1762673847": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1762673847, + "properties": { + "m_badgeFilterInfoList": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2012631232 + } + } + }, + "483697583": { + "name": "class QuestEffect2*", + "bases": [ + "ContainerEffect", + "GameEffectBase", + "PropertyClass" + ], + "hash": 483697583, + "properties": { + "m_currentTickCount": { + "type": "double", + "id": 0, + "offset": 80, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2533274692 + }, + "m_effectNameID": { + "type": "unsigned int", + "id": 1, + "offset": 96, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1204067144 + }, + "m_bIsOnPet": { + "type": "bool", + "id": 2, + "offset": 73, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 522593303 + }, + "m_originatorID": { + "type": "gid", + "id": 3, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1131810019 + }, + "m_itemSlotID": { + "type": "unsigned int", + "id": 4, + "offset": 112, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1895747595 + }, + "m_internalID": { + "type": "int", + "id": 5, + "offset": 92, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1643137924 + }, + "m_endTime": { + "type": "unsigned int", + "id": 6, + "offset": 88, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 716479635 + }, + "m_displayInfo": { + "type": "class SharedPointer", + "id": 7, + "offset": 128, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2998612909 + } + } + }, + "919856348": { + "name": "class NonCombatMayCastSpellTemplate", + "bases": [ + "GameEffectTemplate", + "PropertyClass" + ], + "hash": 919856348, + "properties": { + "m_effectName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2029161513 + }, + "m_effectCategory": { + "type": "std::string", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1852673222 + }, + "m_sortOrder": { + "type": "int", + "id": 2, + "offset": 148, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1411218206 + }, + "m_duration": { + "type": "double", + "id": 3, + "offset": 192, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2727932435 + }, + "m_stackingCategories": { + "type": "std::string", + "id": 4, + "offset": 160, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1774497525 + }, + "m_isPersistent": { + "type": "bool", + "id": 5, + "offset": 153, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 923861920 + }, + "m_bIsOnPet": { + "type": "bool", + "id": 6, + "offset": 154, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 522593303 + }, + "m_isPublic": { + "type": "bool", + "id": 7, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1728439822 + }, + "m_visualEffectAddName": { + "type": "std::string", + "id": 8, + "offset": 200, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3382086694 + }, + "m_visualEffectRemoveName": { + "type": "std::string", + "id": 9, + "offset": 232, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1541697323 + }, + "m_onAddFunctorName": { + "type": "std::string", + "id": 10, + "offset": 280, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1561843107 + }, + "m_onRemoveFunctorName": { + "type": "std::string", + "id": 11, + "offset": 312, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2559017864 + }, + "m_stackingRule": { + "type": "enum STACKING_RULE", + "id": 12, + "offset": 144, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 431568889, + "enum_options": { + "STACKING_ALLOWED": 0, + "STACKING_NOSTACK": 1, + "STACKING_REPLACE": 2 + } + }, + "m_spellName": { + "type": "std::string", + "id": 13, + "offset": 360, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2688485244 + } + } + }, + "52486652": { + "name": "class EloConfig*", + "bases": [ + "PropertyClass" + ], + "hash": 52486652, + "properties": { + "m_defaultRatingsTable": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2295782328 + }, + "m_perLeagueRatingsTables": { + "type": "class SharedPointer", + "id": 1, + "offset": 88, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2644292192 + } + } + }, + "483592047": { + "name": "class WizClientLeashedObject*", + "bases": [ + "WizClientObject", + "ClientObject", + "CoreObject", + "PropertyClass" + ], + "hash": 483592047, + "properties": { + "m_inactiveBehaviors": { + "type": "class SharedPointer", + "id": 0, + "offset": 224, + "flags": 31, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1850812559 + }, + "m_globalID.m_full": { + "type": "unsigned __int64", + "id": 1, + "offset": 72, + "flags": 16777247, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2312465444 + }, + "m_permID": { + "type": "unsigned __int64", + "id": 2, + "offset": 80, + "flags": 16777247, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1298909658 + }, + "m_location": { + "type": "class Vector3D", + "id": 3, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2239683611 + }, + "m_orientation": { + "type": "class Vector3D", + "id": 4, + "offset": 180, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2344058766 + }, + "m_fScale": { + "type": "float", + "id": 5, + "offset": 196, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 503137701 + }, + "m_templateID.m_full": { + "type": "unsigned __int64", + "id": 6, + "offset": 96, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 633907631 + }, + "m_debugName": { + "type": "std::string", + "id": 7, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3553984419 + }, + "m_displayKey": { + "type": "std::string", + "id": 8, + "offset": 136, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3023276954 + }, + "m_zoneTagID": { + "type": "unsigned int", + "id": 9, + "offset": 344, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 965291410 + }, + "m_speedMultiplier": { + "type": "short", + "id": 10, + "offset": 192, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 123130076 + }, + "m_nMobileID": { + "type": "unsigned short", + "id": 11, + "offset": 194, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1054318939 + }, + "m_characterId": { + "type": "gid", + "id": 12, + "offset": 440, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 210498418 + }, + "m_gameStats": { + "type": "class WizGameStats*", + "id": 13, + "offset": 552, + "flags": 27, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3194480406 + }, + "m_leashed": { + "type": "bool", + "id": 14, + "offset": 584, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 603235945 + } + } + }, + "1343503713": { + "name": "class MatchTeamResult", + "bases": [ + "PropertyClass" + ], + "hash": 1343503713, + "properties": { + "m_teamID": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 982102220 + }, + "m_teamResolution": { + "type": "unsigned char", + "id": 1, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1933240587 + } + } + }, + "1762715060": { + "name": "std::string const", + "bases": [], + "hash": 1762715060, + "properties": {} + }, + "483533426": { + "name": "class WinAnimContainer", + "bases": [ + "WindowAnimation", + "PropertyClass" + ], + "hash": 483533426, + "properties": { + "m_bUseDeepCopy": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 433380635 + }, + "m_winAnimList": { + "type": "class SharedPointer", + "id": 1, + "offset": 80, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1941062728 + }, + "m_bLooping": { + "type": "bool", + "id": 2, + "offset": 104, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2131020845 + } + } + }, + "1338879513": { + "name": "class PositionalStateSoundBehavior*", + "bases": [ + "PositionalSoundBehavior", + "SoundBehavior", + "AreaBehavior", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1338879513, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_radius": { + "type": "float", + "id": 1, + "offset": 116, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 989410271 + }, + "m_category": { + "type": "enum AudioCategory", + "id": 2, + "offset": 124, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2951251982, + "enum_options": { + "AudioCategory_Irrelevent": 0, + "AudioCategory_Accoustic": 1, + "AudioCategory_Noise": 2, + "AudioCategory_Music": 3 + } + }, + "m_exclusive": { + "type": "bool", + "id": 3, + "offset": 128, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 824383403 + }, + "m_playList": { + "type": "class PlayList", + "id": 4, + "offset": 176, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2061221957 + }, + "m_volume": { + "type": "float", + "id": 5, + "offset": 304, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1162855023 + }, + "m_loopCount": { + "type": "int", + "id": 6, + "offset": 308, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 865634717 + }, + "m_minimumFalloff": { + "type": "float", + "id": 7, + "offset": 328, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 355697197 + }, + "m_maximumFalloff": { + "type": "float", + "id": 8, + "offset": 332, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2210192367 + }, + "m_animDriven": { + "type": "bool", + "id": 9, + "offset": 392, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 398394720 + }, + "m_inverted": { + "type": "bool", + "id": 10, + "offset": 397, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1034821044 + }, + "m_animationName": { + "type": "std::string", + "id": 11, + "offset": 512, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3393414044 + } + } + }, + "920229174": { + "name": "class CastleMagicBehaviorBase*", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 920229174, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_castleMagicData": { + "type": "std::string", + "id": 1, + "offset": 128, + "flags": 575, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2874597138 + } + } + }, + "1338544027": { + "name": "class CrownShopPurchasesInfo", + "bases": [ + "PropertyClass" + ], + "hash": 1338544027, + "properties": { + "m_crownShopPurchases": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 845434554 + } + } + }, + "54438929": { + "name": "class CombatResultListObj*", + "bases": [ + "PropertyClass" + ], + "hash": 54438929, + "properties": { + "m_resultList": { + "type": "class CombatResult", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2128076658 + }, + "m_duelID.m_full": { + "type": "unsigned __int64", + "id": 1, + "offset": 88, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1024980477 + } + } + }, + "1336689030": { + "name": "class Window*", + "bases": [ + "PropertyClass" + ], + "hash": 1336689030, + "properties": { + "m_sName": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306437263 + }, + "m_Children": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621225959 + }, + "m_Style": { + "type": "unsigned int", + "id": 2, + "offset": 152, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "SCALE_CHILDREN": 2, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "FOCUS_LOCKED": 64, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152 + } + }, + "m_Flags": { + "type": "unsigned int", + "id": 3, + "offset": 156, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } + }, + "m_Window": { + "type": "class Rect", + "id": 4, + "offset": 160, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3105139380 + }, + "m_fTargetAlpha": { + "type": "float", + "id": 5, + "offset": 212, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1809129834 + }, + "m_fDisabledAlpha": { + "type": "float", + "id": 6, + "offset": 216, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1389987675 + }, + "m_fAlpha": { + "type": "float", + "id": 7, + "offset": 208, + "flags": 65671, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 482130755 + }, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3623628394 + }, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2102211316 + }, + "m_sScript": { + "type": "std::string", + "id": 10, + "offset": 352, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1846695875 + }, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3389835433 + }, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547159940 + }, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513510520 + }, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3091503757 + } + } + }, + "1763889430": { + "name": "class SharedPointer", + "bases": [ + "GroupObserver", + "PropertyClass" + ], + "hash": 1763889430, + "properties": {} + }, + "483690444": { + "name": "class LocaleMapping*", + "bases": [ + "PropertyClass" + ], + "hash": 483690444, + "properties": { + "m_wadFile": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3265100503 + }, + "m_fullReplacement": { + "type": "bool", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1453969174 + } + } + }, + "1332841052": { + "name": "class SharedPointer", + "bases": [ + "ShadowCreatureLevelTransitionCinematicAction", + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 1332841052, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + } + } + }, + "483633007": { + "name": "class WizClientLeashedObject", + "bases": [ + "WizClientObject", + "ClientObject", + "CoreObject", + "PropertyClass" + ], + "hash": 483633007, + "properties": { + "m_inactiveBehaviors": { + "type": "class SharedPointer", + "id": 0, + "offset": 224, + "flags": 31, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1850812559 + }, + "m_globalID.m_full": { + "type": "unsigned __int64", + "id": 1, + "offset": 72, + "flags": 16777247, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2312465444 + }, + "m_permID": { + "type": "unsigned __int64", + "id": 2, + "offset": 80, + "flags": 16777247, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1298909658 + }, + "m_location": { + "type": "class Vector3D", + "id": 3, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2239683611 + }, + "m_orientation": { + "type": "class Vector3D", + "id": 4, + "offset": 180, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2344058766 + }, + "m_fScale": { + "type": "float", + "id": 5, + "offset": 196, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 503137701 + }, + "m_templateID.m_full": { + "type": "unsigned __int64", + "id": 6, + "offset": 96, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 633907631 + }, + "m_debugName": { + "type": "std::string", + "id": 7, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3553984419 + }, + "m_displayKey": { + "type": "std::string", + "id": 8, + "offset": 136, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3023276954 + }, + "m_zoneTagID": { + "type": "unsigned int", + "id": 9, + "offset": 344, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 965291410 + }, + "m_speedMultiplier": { + "type": "short", + "id": 10, + "offset": 192, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 123130076 + }, + "m_nMobileID": { + "type": "unsigned short", + "id": 11, + "offset": 194, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1054318939 + }, + "m_characterId": { + "type": "gid", + "id": 12, + "offset": 440, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 210498418 + }, + "m_gameStats": { + "type": "class WizGameStats*", + "id": 13, + "offset": 552, + "flags": 27, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3194480406 + }, + "m_leashed": { + "type": "bool", + "id": 14, + "offset": 584, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 603235945 + } + } + }, + "921684498": { + "name": "class BattlegroundMatchmaking", + "bases": [ + "PropertyClass" + ], + "hash": 921684498, + "properties": { + "m_matchSize": { + "type": "int", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 563704930 + }, + "m_secondsWaited": { + "type": "int", + "id": 1, + "offset": 76, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 606761671 + } + } + }, + "1331628719": { + "name": "class BracketRewardsPlaceMapping", + "bases": [ + "PropertyClass" + ], + "hash": 1331628719, + "properties": { + "m_numOfTeams": { + "type": "unsigned int", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2164625196 + }, + "m_mappedPlace": { + "type": "unsigned int", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1626881929 + } + } + }, + "55394600": { + "name": "enum BGGroupStatusEnum", + "bases": [], + "hash": 55394600, + "properties": {} + }, + "55216492": { + "name": "class SharedPointer", + "bases": [ + "GameEffectBase", + "PropertyClass" + ], + "hash": 55216492, + "properties": { + "m_currentTickCount": { + "type": "double", + "id": 0, + "offset": 80, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2533274692 + }, + "m_effectNameID": { + "type": "unsigned int", + "id": 1, + "offset": 96, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1204067144 + }, + "m_bIsOnPet": { + "type": "bool", + "id": 2, + "offset": 73, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 522593303 + }, + "m_originatorID": { + "type": "gid", + "id": 3, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1131810019 + }, + "m_itemSlotID": { + "type": "unsigned int", + "id": 4, + "offset": 112, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1895747595 + }, + "m_internalID": { + "type": "int", + "id": 5, + "offset": 92, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1643137924 + }, + "m_endTime": { + "type": "unsigned int", + "id": 6, + "offset": 88, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 716479635 + }, + "m_tickOnAdd": { + "type": "bool", + "id": 7, + "offset": 128, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 663357284 + }, + "m_zoneEventName": { + "type": "std::string", + "id": 8, + "offset": 136, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2601481434 + }, + "m_tickRateSec": { + "type": "float", + "id": 9, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1559681353 + }, + "m_maxTicks": { + "type": "int", + "id": 10, + "offset": 172, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 155973918 + } + } + }, + "1764081471": { + "name": "class ReqInZone*", + "bases": [ + "Requirement", + "PropertyClass" + ], + "hash": 1764081471, + "properties": { + "m_applyNOT": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1746328074, + "enum_options": { + "__DEFAULT": 0 + } + }, + "m_operator": { + "type": "enum Requirement::Operator", + "id": 1, + "offset": 76, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2672792317, + "enum_options": { + "ROP_AND": 0, + "ROP_OR": 1, + "__DEFAULT": "ROP_AND" + } + }, + "m_zoneName": { + "type": "std::string", + "id": 2, + "offset": 80, + "flags": 268435463, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2171167736, + "enum_options": { + "__BASECLASS": "ZoneData" + } + } + } + }, + "1764038056": { + "name": "class DailyQuestOption*", + "bases": [ + "ServiceOptionBase", + "PropertyClass" + ], + "hash": 1764038056, + "properties": { + "m_serviceName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2206028813 + }, + "m_iconKey": { + "type": "std::string", + "id": 1, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2457138637 + }, + "m_displayKey": { + "type": "std::string", + "id": 2, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3023276954 + }, + "m_serviceIndex": { + "type": "unsigned int", + "id": 3, + "offset": 204, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2103126710 + }, + "m_forceInteract": { + "type": "bool", + "id": 4, + "offset": 200, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1705789564 + } + } + }, + "483690447": { + "name": "class LocaleMapping", + "bases": [ + "PropertyClass" + ], + "hash": 483690447, + "properties": { + "m_wadFile": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3265100503 + }, + "m_fullReplacement": { + "type": "bool", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1453969174 + } + } + }, + "922573028": { + "name": "class AutobotConfig*", + "bases": [ + "PropertyClass" + ], + "hash": 922573028, + "properties": { + "m_displayPath": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 951754038 + }, + "m_findSideQuests": { + "type": "bool", + "id": 1, + "offset": 73, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1456032030 + }, + "m_silent": { + "type": "bool", + "id": 2, + "offset": 74, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 950595970 + }, + "m_stayOnActiveQuest": { + "type": "bool", + "id": 3, + "offset": 75, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1243951391 + }, + "m_stopOnQuestComplete": { + "type": "bool", + "id": 4, + "offset": 76, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1146878209 + } + } + }, + "1335955714": { + "name": "class SharedPointer", + "bases": [ + "HatchmakingKioskBehaviorBase", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1335955714, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_hatchDayPetCode": { + "type": "unsigned int", + "id": 1, + "offset": 112, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1354692695 + } + } + }, + "922573025": { + "name": "class AutobotConfig", + "bases": [ + "PropertyClass" + ], + "hash": 922573025, + "properties": { + "m_displayPath": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 951754038 + }, + "m_findSideQuests": { + "type": "bool", + "id": 1, + "offset": 73, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1456032030 + }, + "m_silent": { + "type": "bool", + "id": 2, + "offset": 74, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 950595970 + }, + "m_stayOnActiveQuest": { + "type": "bool", + "id": 3, + "offset": 75, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1243951391 + }, + "m_stopOnQuestComplete": { + "type": "bool", + "id": 4, + "offset": 76, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1146878209 + } + } + }, + "922470930": { + "name": "class BattlegroundMatchmaking*", + "bases": [ + "PropertyClass" + ], + "hash": 922470930, + "properties": { + "m_matchSize": { + "type": "int", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 563704930 + }, + "m_secondsWaited": { + "type": "int", + "id": 1, + "offset": 76, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 606761671 + } + } + }, + "1336375904": { + "name": "class NPCBehavior", + "bases": [ + "NameOverrideBehavior", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1336375904, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_wsNameOverride": { + "type": "std::wstring", + "id": 1, + "offset": 120, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2131249091 + }, + "m_firstName": { + "type": "std::string", + "id": 2, + "offset": 160, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3116002948 + }, + "m_lastName": { + "type": "std::string", + "id": 3, + "offset": 192, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1826203600 + }, + "m_nickname": { + "type": "std::string", + "id": 4, + "offset": 224, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2269863201 + }, + "m_title": { + "type": "std::string", + "id": 5, + "offset": 256, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2308614141 + }, + "m_isMonster": { + "type": "bool", + "id": 6, + "offset": 288, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1321956791 + } + } + }, + "58449372": { + "name": "class SharedPointer", + "bases": [ + "GraphicalSpell", + "Spell", + "PropertyClass" + ], + "hash": 58449372, + "properties": { + "m_templateID": { + "type": "unsigned int", + "id": 0, + "offset": 128, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1286746870 + }, + "m_enchantment": { + "type": "unsigned int", + "id": 1, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2217886818 + }, + "m_pipCost": { + "type": "class SharedPointer", + "id": 2, + "offset": 176, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3605704820 + }, + "m_regularAdjust": { + "type": "int", + "id": 3, + "offset": 192, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1420453335 + }, + "m_magicSchoolID": { + "type": "unsigned int", + "id": 4, + "offset": 136, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 893146499 + }, + "m_accuracy": { + "type": "unsigned char", + "id": 5, + "offset": 132, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2273914939 + }, + "m_treasureCard": { + "type": "bool", + "id": 6, + "offset": 197, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1764879128 + }, + "m_battleCard": { + "type": "bool", + "id": 7, + "offset": 198, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1332843753 + }, + "m_itemCard": { + "type": "bool", + "id": 8, + "offset": 199, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1683654300 + }, + "m_sideBoard": { + "type": "bool", + "id": 9, + "offset": 200, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1897838368 + }, + "m_spellID": { + "type": "unsigned int", + "id": 10, + "offset": 204, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1697483258 + }, + "m_leavesPlayWhenCastOverride": { + "type": "bool", + "id": 11, + "offset": 216, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 874407398 + }, + "m_cloaked": { + "type": "bool", + "id": 12, + "offset": 196, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 7349510 + }, + "m_enchantmentSpellIsItemCard": { + "type": "bool", + "id": 13, + "offset": 76, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 531590701 + }, + "m_premutationSpellID": { + "type": "unsigned int", + "id": 14, + "offset": 112, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1530256370 + }, + "m_enchantedThisCombat": { + "type": "bool", + "id": 15, + "offset": 77, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1895738923 + }, + "m_paramOverrides": { + "type": "class SharedPointer", + "id": 16, + "offset": 224, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2061635599 + }, + "m_subEffectMeta": { + "type": "class SharedPointer", + "id": 17, + "offset": 240, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1944101106 + }, + "m_delayEnchantment": { + "type": "bool", + "id": 18, + "offset": 257, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 191336919 + }, + "m_PvE": { + "type": "bool", + "id": 19, + "offset": 264, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 269492350 + }, + "m_delayEnchantmentOrder": { + "type": "enum SpellEffect::kDelayOrder", + "id": 20, + "offset": 72, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2526055263, + "enum_options": { + "SpellEffect::kAnyOrder": 0, + "SpellEffect::kFirst": 1, + "SpellEffect::kSecond": 2 + } + }, + "m_roundAddedTC": { + "type": "int", + "id": 21, + "offset": 260, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 112365451 + }, + "m_secondarySchoolID": { + "type": "unsigned int", + "id": 22, + "offset": 304, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2081206026 + }, + "m_fusionState": { + "type": "enum Spell::FusionState", + "id": 23, + "offset": 308, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 835324539, + "enum_options": { + "FS_Invalid": 0, + "FS_Partial": 1, + "FS_Valid": 2 + } + } + } + }, + "1764126921": { + "name": "class CastleGamesBehavior*", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1764126921, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + } + } + }, + "484023224": { + "name": "class DerbyPlayerContainer", + "bases": [ + "PropertyClass" + ], + "hash": 484023224, + "properties": { + "m_racerStates": { + "type": "class PetDerbyRacerState", + "id": 0, + "offset": 72, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1371870313 + }, + "m_racerStats": { + "type": "class PetDerbyRacerStats", + "id": 1, + "offset": 88, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2589589540 + }, + "m_numberOfLaps": { + "type": "unsigned int", + "id": 2, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1354946171 + } + } + }, + "56489836": { + "name": "class ClassProjectActiveList*", + "bases": [ + "PropertyClass" + ], + "hash": 56489836, + "properties": { + "m_activeProjectList": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 534931707 + } + } + }, + "1764093759": { + "name": "class ReqInZone", + "bases": [ + "Requirement", + "PropertyClass" + ], + "hash": 1764093759, + "properties": { + "m_applyNOT": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1746328074, + "enum_options": { + "__DEFAULT": 0 + } + }, + "m_operator": { + "type": "enum Requirement::Operator", + "id": 1, + "offset": 76, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2672792317, + "enum_options": { + "ROP_AND": 0, + "ROP_OR": 1, + "__DEFAULT": "ROP_AND" + } + }, + "m_zoneName": { + "type": "std::string", + "id": 2, + "offset": 80, + "flags": 268435463, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2171167736, + "enum_options": { + "__BASECLASS": "ZoneData" + } + } + } + }, + "484023200": { + "name": "class DerbyPlayerContainer*", + "bases": [ + "PropertyClass" + ], + "hash": 484023200, + "properties": { + "m_racerStates": { + "type": "class PetDerbyRacerState", + "id": 0, + "offset": 72, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1371870313 + }, + "m_racerStats": { + "type": "class PetDerbyRacerStats", + "id": 1, + "offset": 88, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2589589540 + }, + "m_numberOfLaps": { + "type": "unsigned int", + "id": 2, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1354946171 + } + } + }, + "56448876": { + "name": "class ClassProjectActiveList", + "bases": [ + "PropertyClass" + ], + "hash": 56448876, + "properties": { + "m_activeProjectList": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 534931707 + } + } + }, + "1338360674": { + "name": "class SharedPointer", + "bases": [ + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 1338360674, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + } + } + }, + "922587087": { + "name": "class PotionShopOption*", + "bases": [ + "ServiceOptionBase", + "PropertyClass" + ], + "hash": 922587087, + "properties": { + "m_serviceName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2206028813 + }, + "m_iconKey": { + "type": "std::string", + "id": 1, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2457138637 + }, + "m_displayKey": { + "type": "std::string", + "id": 2, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3023276954 + }, + "m_serviceIndex": { + "type": "unsigned int", + "id": 3, + "offset": 204, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2103126710 + }, + "m_forceInteract": { + "type": "bool", + "id": 4, + "offset": 200, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1705789564 + } + } + }, + "1336859898": { + "name": "class TeamHelpFailWindow", + "bases": [ + "Window", + "PropertyClass" + ], + "hash": 1336859898, + "properties": { + "m_sName": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306437263 + }, + "m_Children": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621225959 + }, + "m_Style": { + "type": "unsigned int", + "id": 2, + "offset": 152, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "SCALE_CHILDREN": 2, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "FOCUS_LOCKED": 64, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152 + } + }, + "m_Flags": { + "type": "unsigned int", + "id": 3, + "offset": 156, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } + }, + "m_Window": { + "type": "class Rect", + "id": 4, + "offset": 160, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3105139380 + }, + "m_fTargetAlpha": { + "type": "float", + "id": 5, + "offset": 212, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1809129834 + }, + "m_fDisabledAlpha": { + "type": "float", + "id": 6, + "offset": 216, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1389987675 + }, + "m_fAlpha": { + "type": "float", + "id": 7, + "offset": 208, + "flags": 65671, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 482130755 + }, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3623628394 + }, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2102211316 + }, + "m_sScript": { + "type": "std::string", + "id": 10, + "offset": 352, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1846695875 + }, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3389835433 + }, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547159940 + }, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513510520 + }, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3091503757 + } + } + }, + "484195274": { + "name": "struct ControlTree::Item*", + "bases": [ + "PropertyClass" + ], + "hash": 484195274, + "properties": { + "m_Color": { + "type": "class Color", + "id": 0, + "offset": 72, + "flags": 262279, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1753714077 + }, + "m_sLabel": { + "type": "std::wstring", + "id": 1, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2207009163 + }, + "m_Flags": { + "type": "unsigned int", + "id": 2, + "offset": 112, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 967851578, + "enum_options": { + "ControlTree::Item::EXPANDED": 2, + "ControlTree::Item::BUTTON": 1 + } + }, + "m_Children": { + "type": "struct ControlTree::Item*", + "id": 3, + "offset": 128, + "flags": 135, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1558446980 + } + } + }, + "1336810695": { + "name": "class ParticipantParameter*", + "bases": [ + "PropertyClass" + ], + "hash": 1336810695, + "properties": { + "m_partID": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 821435516 + }, + "m_data": { + "type": "unsigned int", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 430703463 + } + } + }, + "1766989823": { + "name": "enum AudioCategory", + "bases": [], + "hash": 1766989823, + "properties": {} + }, + "6746851": { + "name": "class SharedPointer", + "bases": [ + "GameEffectTemplate", + "PropertyClass" + ], + "hash": 6746851, + "properties": { + "m_effectName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2029161513 + }, + "m_effectCategory": { + "type": "std::string", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1852673222 + }, + "m_sortOrder": { + "type": "int", + "id": 2, + "offset": 148, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1411218206 + }, + "m_duration": { + "type": "double", + "id": 3, + "offset": 192, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2727932435 + }, + "m_stackingCategories": { + "type": "std::string", + "id": 4, + "offset": 160, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1774497525 + }, + "m_isPersistent": { + "type": "bool", + "id": 5, + "offset": 153, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 923861920 + }, + "m_bIsOnPet": { + "type": "bool", + "id": 6, + "offset": 154, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 522593303 + }, + "m_isPublic": { + "type": "bool", + "id": 7, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1728439822 + }, + "m_visualEffectAddName": { + "type": "std::string", + "id": 8, + "offset": 200, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3382086694 + }, + "m_visualEffectRemoveName": { + "type": "std::string", + "id": 9, + "offset": 232, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1541697323 + }, + "m_onAddFunctorName": { + "type": "std::string", + "id": 10, + "offset": 280, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1561843107 + }, + "m_onRemoveFunctorName": { + "type": "std::string", + "id": 11, + "offset": 312, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2559017864 + }, + "m_stackingRule": { + "type": "enum STACKING_RULE", + "id": 12, + "offset": 144, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 431568889, + "enum_options": { + "STACKING_ALLOWED": 0, + "STACKING_NOSTACK": 1, + "STACKING_REPLACE": 2 + } + }, + "m_minionType": { + "type": "enum MinionType", + "id": 13, + "offset": 360, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3186373083, + "enum_options": { + "MT_NONE": 0, + "MT_ACCOMPANY": 1, + "MT_MINION": 2, + "MT_MONSTER": 3 + } + }, + "m_summonedTemplateID": { + "type": "int", + "id": 14, + "offset": 364, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1109386027 + } + } + }, + "7329248": { + "name": "class SharedPointer", + "bases": [ + "GraphicalSpell", + "Spell", + "PropertyClass" + ], + "hash": 7329248, + "properties": { + "m_templateID": { + "type": "unsigned int", + "id": 0, + "offset": 128, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1286746870 + }, + "m_enchantment": { + "type": "unsigned int", + "id": 1, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2217886818 + }, + "m_pipCost": { + "type": "class SharedPointer", + "id": 2, + "offset": 176, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3605704820 + }, + "m_regularAdjust": { + "type": "int", + "id": 3, + "offset": 192, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1420453335 + }, + "m_magicSchoolID": { + "type": "unsigned int", + "id": 4, + "offset": 136, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 893146499 + }, + "m_accuracy": { + "type": "unsigned char", + "id": 5, + "offset": 132, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2273914939 + }, + "m_treasureCard": { + "type": "bool", + "id": 6, + "offset": 197, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1764879128 + }, + "m_battleCard": { + "type": "bool", + "id": 7, + "offset": 198, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1332843753 + }, + "m_itemCard": { + "type": "bool", + "id": 8, + "offset": 199, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1683654300 + }, + "m_sideBoard": { + "type": "bool", + "id": 9, + "offset": 200, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1897838368 + }, + "m_spellID": { + "type": "unsigned int", + "id": 10, + "offset": 204, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1697483258 + }, + "m_leavesPlayWhenCastOverride": { + "type": "bool", + "id": 11, + "offset": 216, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 874407398 + }, + "m_cloaked": { + "type": "bool", + "id": 12, + "offset": 196, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 7349510 + }, + "m_enchantmentSpellIsItemCard": { + "type": "bool", + "id": 13, + "offset": 76, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 531590701 + }, + "m_premutationSpellID": { + "type": "unsigned int", + "id": 14, + "offset": 112, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1530256370 + }, + "m_enchantedThisCombat": { + "type": "bool", + "id": 15, + "offset": 77, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1895738923 + }, + "m_paramOverrides": { + "type": "class SharedPointer", + "id": 16, + "offset": 224, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2061635599 + }, + "m_subEffectMeta": { + "type": "class SharedPointer", + "id": 17, + "offset": 240, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1944101106 + }, + "m_delayEnchantment": { + "type": "bool", + "id": 18, + "offset": 257, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 191336919 + }, + "m_PvE": { + "type": "bool", + "id": 19, + "offset": 264, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 269492350 + }, + "m_delayEnchantmentOrder": { + "type": "enum SpellEffect::kDelayOrder", + "id": 20, + "offset": 72, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2526055263, + "enum_options": { + "SpellEffect::kAnyOrder": 0, + "SpellEffect::kFirst": 1, + "SpellEffect::kSecond": 2 + } + }, + "m_roundAddedTC": { + "type": "int", + "id": 21, + "offset": 260, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 112365451 + }, + "m_secondarySchoolID": { + "type": "unsigned int", + "id": 22, + "offset": 304, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2081206026 + }, + "m_fusionState": { + "type": "enum Spell::FusionState", + "id": 23, + "offset": 308, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 835324539, + "enum_options": { + "FS_Invalid": 0, + "FS_Partial": 1, + "FS_Valid": 2 + } + } + } + }, + "486640643": { + "name": "class JewelSocketBehaviorTemplate*", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 486640643, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + }, + "m_jewelSockets": { + "type": "class JewelSocket", + "id": 1, + "offset": 120, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2355333159 + }, + "m_socketDeleted": { + "type": "bool", + "id": 2, + "offset": 136, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 685830803 + } + } + }, + "486427416": { + "name": "class SharedPointer", + "bases": [ + "TournamentUpdate", + "PropertyClass" + ], + "hash": 486427416, + "properties": { + "m_matchID": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1757621298 + }, + "m_status": { + "type": "int", + "id": 1, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 960781182 + } + } + }, + "6636754": { + "name": "class PvPPenaltyMatchBanInfo", + "bases": [ + "InfractionPenaltyInfo", + "PropertyClass" + ], + "hash": 6636754, + "properties": { + "m_addAtPointValue": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1071217084 + }, + "m_removeAtPointValue": { + "type": "float", + "id": 1, + "offset": 76, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2112196961 + }, + "m_lifespan": { + "type": "std::string", + "id": 2, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3042809453 + } + } + }, + "485455443": { + "name": "struct std::pair,class std::allocator >,class std::basic_string,class std::allocator > >", + "bases": [], + "hash": 485455443, + "properties": {} + }, + "6677714": { + "name": "class PvPPenaltyMatchBanInfo*", + "bases": [ + "InfractionPenaltyInfo", + "PropertyClass" + ], + "hash": 6677714, + "properties": { + "m_addAtPointValue": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1071217084 + }, + "m_removeAtPointValue": { + "type": "float", + "id": 1, + "offset": 76, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2112196961 + }, + "m_lifespan": { + "type": "std::string", + "id": 2, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3042809453 + } + } + }, + "8916291": { + "name": "char*", + "bases": [], + "hash": 8916291, + "properties": {} + }, + "485808544": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 485808544, + "properties": { + "m_essenceTrackingList": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2834468954 + }, + "m_collectedEssenceCount": { + "type": "int", + "id": 1, + "offset": 88, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 144807032 + }, + "m_failedToCollectReason": { + "type": "int", + "id": 2, + "offset": 92, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 160435248 + } + } + }, + "80353023": { + "name": "class SharedPointer", + "bases": [ + "ActorDialogBase", + "PropertyClass" + ], + "hash": 80353023, + "properties": { + "m_dialogTag": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2743232871 + }, + "m_dialogEntries": { + "type": "class ActorDialogEntry*", + "id": 1, + "offset": 104, + "flags": 31, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1260107933 + }, + "m_madlibs": { + "type": "class ActorMadlib*", + "id": 2, + "offset": 128, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2877219372 + }, + "m_dialogEvents": { + "type": "std::string", + "id": 3, + "offset": 152, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2778675200 + }, + "m_noAggroWhileDialogIsUp": { + "type": "bool", + "id": 4, + "offset": 168, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1753481610 + }, + "m_noAggroNoDelay": { + "type": "bool", + "id": 5, + "offset": 169, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1784936140 + } + } + }, + "486489179": { + "name": "class CastleToursOption", + "bases": [ + "ServiceOptionBase", + "PropertyClass" + ], + "hash": 486489179, + "properties": { + "m_serviceName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2206028813 + }, + "m_iconKey": { + "type": "std::string", + "id": 1, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2457138637 + }, + "m_displayKey": { + "type": "std::string", + "id": 2, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3023276954 + }, + "m_serviceIndex": { + "type": "unsigned int", + "id": 3, + "offset": 204, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2103126710 + }, + "m_forceInteract": { + "type": "bool", + "id": 4, + "offset": 200, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1705789564 + } + } + }, + "486624161": { + "name": "class ObstacleCoursePusherBehaviorTemplate*", + "bases": [ + "ObstacleCourseObstaclePathBaseTemplate", + "ObstacleCourseObstacleBehaviorTemplate", + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 486624161, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + }, + "m_rate": { + "type": "float", + "id": 1, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 310005283 + }, + "m_penaltyTime": { + "type": "float", + "id": 2, + "offset": 124, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2083389507 + }, + "m_totalObstacleSize": { + "type": "class Vector3D", + "id": 3, + "offset": 128, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2379878414 + }, + "m_bounds": { + "type": "class Vector3D", + "id": 4, + "offset": 152, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1948083181 + }, + "m_orientToPath": { + "type": "bool", + "id": 5, + "offset": 176, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 655036148 + }, + "m_heightUp": { + "type": "float", + "id": 6, + "offset": 140, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2208713013 + }, + "m_heightDown": { + "type": "float", + "id": 7, + "offset": 144, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 655333896 + }, + "m_changeDirectionSoundList": { + "type": "class WeightedList", + "id": 8, + "offset": 184, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1487918739 + } + } + }, + "486678366": { + "name": "class ControlList::ListWindowStyle*", + "bases": [ + "WindowStyle", + "PropertyClass" + ], + "hash": 486678366, + "properties": { + "m_pBackMaterial": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1628562023 + }, + "m_pFont": { + "type": "class SharedPointer", + "id": 1, + "offset": 88, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1067686307 + }, + "m_pLargeFont": { + "type": "class SharedPointer", + "id": 2, + "offset": 104, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1523900782 + }, + "m_pSmallFont": { + "type": "class SharedPointer", + "id": 3, + "offset": 120, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2363252956 + }, + "m_Color": { + "type": "class Color", + "id": 4, + "offset": 136, + "flags": 262279, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1753714077 + }, + "m_HighColor": { + "type": "class Color", + "id": 5, + "offset": 140, + "flags": 262279, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2310527421 + }, + "m_SelectColor": { + "type": "class Color", + "id": 6, + "offset": 144, + "flags": 262279, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2792529213 + }, + "m_BorderColor": { + "type": "class Color", + "id": 7, + "offset": 148, + "flags": 262279, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1470576795 + }, + "m_BackColor": { + "type": "class Color", + "id": 8, + "offset": 152, + "flags": 262279, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1070928782 + }, + "m_ScrollBarColor": { + "type": "class Color", + "id": 9, + "offset": 156, + "flags": 262279, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1180747361 + }, + "m_ScrollTabColor": { + "type": "class Color", + "id": 10, + "offset": 160, + "flags": 262279, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1034892323 + }, + "m_nBorderSize": { + "type": "int", + "id": 11, + "offset": 164, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2016376897 + }, + "m_nScrollSize": { + "type": "int", + "id": 12, + "offset": 168, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 632681746 + }, + "m_sHoverSound": { + "type": "std::string", + "id": 13, + "offset": 176, + "flags": 131207, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2662773595 + }, + "m_sSelectSound": { + "type": "std::string", + "id": 14, + "offset": 208, + "flags": 131207, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2596786807 + }, + "m_sHighlightSound": { + "type": "std::string", + "id": 15, + "offset": 240, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3020805615 + } + } + }, + "486640963": { + "name": "class JewelSocketBehaviorTemplate", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 486640963, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + }, + "m_jewelSockets": { + "type": "class JewelSocket", + "id": 1, + "offset": 120, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2355333159 + }, + "m_socketDeleted": { + "type": "bool", + "id": 2, + "offset": 136, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 685830803 + } + } + }, + "486684510": { + "name": "class ControlList::ListWindowStyle", + "bases": [ + "WindowStyle", + "PropertyClass" + ], + "hash": 486684510, + "properties": { + "m_pBackMaterial": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1628562023 + }, + "m_pFont": { + "type": "class SharedPointer", + "id": 1, + "offset": 88, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1067686307 + }, + "m_pLargeFont": { + "type": "class SharedPointer", + "id": 2, + "offset": 104, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1523900782 + }, + "m_pSmallFont": { + "type": "class SharedPointer", + "id": 3, + "offset": 120, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2363252956 + }, + "m_Color": { + "type": "class Color", + "id": 4, + "offset": 136, + "flags": 262279, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1753714077 + }, + "m_HighColor": { + "type": "class Color", + "id": 5, + "offset": 140, + "flags": 262279, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2310527421 + }, + "m_SelectColor": { + "type": "class Color", + "id": 6, + "offset": 144, + "flags": 262279, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2792529213 + }, + "m_BorderColor": { + "type": "class Color", + "id": 7, + "offset": 148, + "flags": 262279, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1470576795 + }, + "m_BackColor": { + "type": "class Color", + "id": 8, + "offset": 152, + "flags": 262279, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1070928782 + }, + "m_ScrollBarColor": { + "type": "class Color", + "id": 9, + "offset": 156, + "flags": 262279, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1180747361 + }, + "m_ScrollTabColor": { + "type": "class Color", + "id": 10, + "offset": 160, + "flags": 262279, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1034892323 + }, + "m_nBorderSize": { + "type": "int", + "id": 11, + "offset": 164, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2016376897 + }, + "m_nScrollSize": { + "type": "int", + "id": 12, + "offset": 168, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 632681746 + }, + "m_sHoverSound": { + "type": "std::string", + "id": 13, + "offset": 176, + "flags": 131207, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2662773595 + }, + "m_sSelectSound": { + "type": "std::string", + "id": 14, + "offset": 208, + "flags": 131207, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2596786807 + }, + "m_sHighlightSound": { + "type": "std::string", + "id": 15, + "offset": 240, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3020805615 + } + } + }, + "491930547": { + "name": "class ShowcasedStoreItem*", + "bases": [ + "PropertyClass" + ], + "hash": 491930547, + "properties": { + "m_iconFilename": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3103016389 + }, + "m_templateID": { + "type": "gid", + "id": 1, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1075328001 + } + } + }, + "489198714": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 489198714, + "properties": { + "m_effectIndex": { + "type": "int", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 350070655 + }, + "m_paramValue": { + "type": "int", + "id": 1, + "offset": 76, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2048907304 + } + } + }, + "487822819": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 487822819, + "properties": { + "m_adjective": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3429518154 + }, + "m_subTypePointPairs": { + "type": "std::string", + "id": 1, + "offset": 104, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2463625808 + }, + "m_pointsGainedList": { + "type": "std::string", + "id": 2, + "offset": 120, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1744394364 + } + } + }, + "487048935": { + "name": "class MoveCommandEuler*", + "bases": [ + "MoveController::MoveCommand", + "PropertyClass" + ], + "hash": 487048935, + "properties": { + "m_Orientation": { + "type": "class Euler", + "id": 0, + "offset": 88, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3248981887 + } + } + }, + "486885095": { + "name": "class MoveCommandEuler", + "bases": [ + "MoveController::MoveCommand", + "PropertyClass" + ], + "hash": 486885095, + "properties": { + "m_Orientation": { + "type": "class Euler", + "id": 0, + "offset": 88, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3248981887 + } + } + }, + "487394206": { + "name": "class SharedPointer", + "bases": [ + "AddBacklashEffectCinematicAction", + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 487394206, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + }, + "m_backlashEffect": { + "type": "std::string", + "id": 2, + "offset": 120, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3051687009 + } + } + }, + "487810143": { + "name": "class SharedPointer", + "bases": [ + "Requirement", + "PropertyClass" + ], + "hash": 487810143, + "properties": { + "m_applyNOT": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1746328074, + "enum_options": { + "__DEFAULT": 0 + } + }, + "m_operator": { + "type": "enum Requirement::Operator", + "id": 1, + "offset": 76, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2672792317, + "enum_options": { + "ROP_AND": 0, + "ROP_OR": 1, + "__DEFAULT": "ROP_AND" + } + }, + "m_playerGender": { + "type": "std::string", + "id": 2, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2199467133 + } + } + }, + "488726748": { + "name": "class SharedPointer", + "bases": [ + "NodeDescriptor", + "PropertyClass" + ], + "hash": 488726748, + "properties": { + "m_kAnimationState": { + "type": "enum SpringboardNodeDescriptor::AnimationState", + "id": 0, + "offset": 72, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1775415814, + "enum_options": { + "Down": 0, + "Shake": 1, + "PopUp": 2, + "Up": 3, + "Reset": 4 + } + } + } + }, + "488394038": { + "name": "class ReqShadowPipCount", + "bases": [ + "ConditionalSpellEffectRequirement", + "Requirement", + "PropertyClass" + ], + "hash": 488394038, + "properties": { + "m_applyNOT": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1746328074, + "enum_options": { + "__DEFAULT": 0 + } + }, + "m_operator": { + "type": "enum Requirement::Operator", + "id": 1, + "offset": 76, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2672792317, + "enum_options": { + "ROP_AND": 0, + "ROP_OR": 1, + "__DEFAULT": "ROP_AND" + } + }, + "m_targetType": { + "type": "enum ConditionalSpellEffectRequirement::RequirementTarget", + "id": 2, + "offset": 80, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547737902, + "enum_options": { + "RT_Caster": 0, + "RT_Target": 1 + } + }, + "m_minPips": { + "type": "int", + "id": 3, + "offset": 88, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2062924954 + }, + "m_maxPips": { + "type": "int", + "id": 4, + "offset": 92, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1761701020 + } + } + }, + "489127647": { + "name": "class SharedPointer", + "bases": [ + "AutobotQuestManager", + "PropertyClass" + ], + "hash": 489127647, + "properties": {} + }, + "490164293": { + "name": "class BattlegroundMiniMapWindow*", + "bases": [ + "Window", + "PropertyClass" + ], + "hash": 490164293, + "properties": { + "m_sName": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306437263 + }, + "m_Children": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621225959 + }, + "m_Style": { + "type": "unsigned int", + "id": 2, + "offset": 152, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "SCALE_CHILDREN": 2, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "FOCUS_LOCKED": 64, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152 + } + }, + "m_Flags": { + "type": "unsigned int", + "id": 3, + "offset": 156, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } + }, + "m_Window": { + "type": "class Rect", + "id": 4, + "offset": 160, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3105139380 + }, + "m_fTargetAlpha": { + "type": "float", + "id": 5, + "offset": 212, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1809129834 + }, + "m_fDisabledAlpha": { + "type": "float", + "id": 6, + "offset": 216, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1389987675 + }, + "m_fAlpha": { + "type": "float", + "id": 7, + "offset": 208, + "flags": 65671, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 482130755 + }, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3623628394 + }, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2102211316 + }, + "m_sScript": { + "type": "std::string", + "id": 10, + "offset": 352, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1846695875 + }, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3389835433 + }, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547159940 + }, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513510520 + }, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3091503757 + } + } + }, + "489448102": { + "name": "class PvPLeagueTemplate*", + "bases": [ + "PropertyClass" + ], + "hash": 489448102, + "properties": { + "m_leagueType": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3327951024 + }, + "m_mainDoodle": { + "type": "std::string", + "id": 1, + "offset": 112, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2211594423 + }, + "m_leagueDescription": { + "type": "std::string", + "id": 2, + "offset": 144, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3204126290 + }, + "m_leagueName": { + "type": "std::string", + "id": 3, + "offset": 176, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3327709167 + }, + "m_age": { + "type": "int", + "id": 4, + "offset": 208, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 267029223 + }, + "m_retired": { + "type": "bool", + "id": 5, + "offset": 212, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1931776834 + }, + "m_gracePeriodDays": { + "type": "int", + "id": 6, + "offset": 216, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1128520496 + }, + "m_requirementsList": { + "type": "class SharedPointer", + "id": 7, + "offset": 224, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1999017945 + }, + "m_seasonList": { + "type": "std::string", + "id": 8, + "offset": 240, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1895863232 + }, + "m_duelModifiers": { + "type": "std::string", + "id": 9, + "offset": 256, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2938413959 + } + } + }, + "489245601": { + "name": "class ObstacleCoursePusherBehaviorTemplate", + "bases": [ + "ObstacleCourseObstaclePathBaseTemplate", + "ObstacleCourseObstacleBehaviorTemplate", + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 489245601, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + }, + "m_rate": { + "type": "float", + "id": 1, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 310005283 + }, + "m_penaltyTime": { + "type": "float", + "id": 2, + "offset": 124, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2083389507 + }, + "m_totalObstacleSize": { + "type": "class Vector3D", + "id": 3, + "offset": 128, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2379878414 + }, + "m_bounds": { + "type": "class Vector3D", + "id": 4, + "offset": 152, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1948083181 + }, + "m_orientToPath": { + "type": "bool", + "id": 5, + "offset": 176, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 655036148 + }, + "m_heightUp": { + "type": "float", + "id": 6, + "offset": 140, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2208713013 + }, + "m_heightDown": { + "type": "float", + "id": 7, + "offset": 144, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 655333896 + }, + "m_changeDirectionSoundList": { + "type": "class WeightedList", + "id": 8, + "offset": 184, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1487918739 + } + } + }, + "490112364": { + "name": "class PetJewelBehaviorTemplate*", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 490112364, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + }, + "m_petTalentName": { + "type": "std::string", + "id": 1, + "offset": 120, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1985615789 + }, + "m_minPetLevel": { + "type": "unsigned char", + "id": 2, + "offset": 136, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1317483893 + } + } + }, + "491539766": { + "name": "class ReqShadowPipCount*", + "bases": [ + "ConditionalSpellEffectRequirement", + "Requirement", + "PropertyClass" + ], + "hash": 491539766, + "properties": { + "m_applyNOT": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1746328074, + "enum_options": { + "__DEFAULT": 0 + } + }, + "m_operator": { + "type": "enum Requirement::Operator", + "id": 1, + "offset": 76, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2672792317, + "enum_options": { + "ROP_AND": 0, + "ROP_OR": 1, + "__DEFAULT": "ROP_AND" + } + }, + "m_targetType": { + "type": "enum ConditionalSpellEffectRequirement::RequirementTarget", + "id": 2, + "offset": 80, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547737902, + "enum_options": { + "RT_Caster": 0, + "RT_Target": 1 + } + }, + "m_minPips": { + "type": "int", + "id": 3, + "offset": 88, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2062924954 + }, + "m_maxPips": { + "type": "int", + "id": 4, + "offset": 92, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1761701020 + } + } + }, + "493802616": { + "name": "class ClientSpellCardAttachmentBehavior*", + "bases": [ + "SpellCardAttachmentBehavior", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 493802616, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_spellNames": { + "type": "std::string", + "id": 1, + "offset": 112, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2136089135 + }, + "m_targetNode": { + "type": "std::string", + "id": 2, + "offset": 128, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2698500040 + }, + "m_offset": { + "type": "class Vector3D", + "id": 3, + "offset": 160, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2445636425 + }, + "m_rotate": { + "type": "class Vector3D", + "id": 4, + "offset": 172, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2574199889 + }, + "m_height": { + "type": "float", + "id": 5, + "offset": 184, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 602977104 + }, + "m_alpha": { + "type": "float", + "id": 6, + "offset": 188, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 878686493 + }, + "m_cycleRate": { + "type": "float", + "id": 7, + "offset": 192, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 947046355 + } + } + }, + "492944839": { + "name": "class SharedPointer", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 492944839, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + } + } + }, + "492217996": { + "name": "class GearVaultBehaviorTemplate*", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 492217996, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + } + } + }, + "492208267": { + "name": "class GradientWidgetBackground*", + "bases": [ + "WidgetBackground", + "PropertyClass" + ], + "hash": 492208267, + "properties": { + "m_fBackgroundAlpha": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1164086307 + }, + "m_pTopLeftBackgroundAlphaMask": { + "type": "class SharedPointer", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2652729643 + }, + "m_pTopRightBackgroundAlphaMask": { + "type": "class SharedPointer", + "id": 2, + "offset": 96, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2236264926 + }, + "m_pBottomLeftBackgroundAlphaMask": { + "type": "class SharedPointer", + "id": 3, + "offset": 112, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3301927117 + }, + "m_pBottomRightBackgroundAlphaMask": { + "type": "class SharedPointer", + "id": 4, + "offset": 128, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2184945088 + }, + "m_pBottomBackgroundAlphaMask": { + "type": "class SharedPointer", + "id": 5, + "offset": 144, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2408122274 + }, + "m_pTopBackgroundAlphaMask": { + "type": "class SharedPointer", + "id": 6, + "offset": 160, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3440742656 + }, + "m_pLeftBackgroundAlphaMask": { + "type": "class SharedPointer", + "id": 7, + "offset": 176, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2348634648 + }, + "m_pRightBackgroundAlphaMask": { + "type": "class SharedPointer", + "id": 8, + "offset": 192, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2938548331 + }, + "m_pCenterBackgroundAlphaMask": { + "type": "class SharedPointer", + "id": 9, + "offset": 208, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3347258414 + }, + "m_TopLeftColor": { + "type": "class Color", + "id": 10, + "offset": 224, + "flags": 262151, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2827413723 + }, + "m_TopRightColor": { + "type": "class Color", + "id": 11, + "offset": 228, + "flags": 262151, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1853016654 + }, + "m_BottomLeftColor": { + "type": "class Color", + "id": 12, + "offset": 232, + "flags": 262151, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1172117245 + }, + "m_BottomRightColor": { + "type": "class Color", + "id": 13, + "offset": 236, + "flags": 262151, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3062807728 + } + } + }, + "493773982": { + "name": "class CommonElementTable*", + "bases": [ + "PropertyClass" + ], + "hash": 493773982, + "properties": { + "m_hairColorList": { + "type": "class CharacterElement*", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1900063063 + } + } + }, + "493730381": { + "name": "class ReqOtherCharacterQuestCompleted", + "bases": [ + "Requirement", + "PropertyClass" + ], + "hash": 493730381, + "properties": { + "m_applyNOT": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1746328074, + "enum_options": { + "__DEFAULT": 0 + } + }, + "m_operator": { + "type": "enum Requirement::Operator", + "id": 1, + "offset": 76, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2672792317, + "enum_options": { + "ROP_AND": 0, + "ROP_OR": 1, + "__DEFAULT": "ROP_AND" + } + }, + "m_quest": { + "type": "std::string", + "id": 2, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2305471533 + } + } + }, + "493802536": { + "name": "class ClientSpellCardAttachmentBehavior", + "bases": [ + "SpellCardAttachmentBehavior", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 493802536, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_spellNames": { + "type": "std::string", + "id": 1, + "offset": 112, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2136089135 + }, + "m_targetNode": { + "type": "std::string", + "id": 2, + "offset": 128, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2698500040 + }, + "m_offset": { + "type": "class Vector3D", + "id": 3, + "offset": 160, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2445636425 + }, + "m_rotate": { + "type": "class Vector3D", + "id": 4, + "offset": 172, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2574199889 + }, + "m_height": { + "type": "float", + "id": 5, + "offset": 184, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 602977104 + }, + "m_alpha": { + "type": "float", + "id": 6, + "offset": 188, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 878686493 + }, + "m_cycleRate": { + "type": "float", + "id": 7, + "offset": 192, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 947046355 + } + } + }, + "495140145": { + "name": "class BreadCrumbBehaviorBase*", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 495140145, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_breadCrumbNumber": { + "type": "unsigned int", + "id": 1, + "offset": 112, + "flags": 65543, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2100995821 + }, + "m_equippedPetGIDList": { + "type": "gid", + "id": 2, + "offset": 120, + "flags": 65543, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1574152046 + }, + "m_equippedBreadCrumbIDList": { + "type": "unsigned short", + "id": 3, + "offset": 136, + "flags": 65543, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 592278117 + }, + "m_flags": { + "type": "unsigned int", + "id": 4, + "offset": 152, + "flags": 65543, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1005801050 + } + } + }, + "494464105": { + "name": "class LinearSoundBehavior*", + "bases": [ + "PositionalSoundBehavior", + "SoundBehavior", + "AreaBehavior", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 494464105, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_radius": { + "type": "float", + "id": 1, + "offset": 116, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 989410271 + }, + "m_category": { + "type": "enum AudioCategory", + "id": 2, + "offset": 124, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2951251982, + "enum_options": { + "AudioCategory_Irrelevent": 0, + "AudioCategory_Accoustic": 1, + "AudioCategory_Noise": 2, + "AudioCategory_Music": 3 + } + }, + "m_exclusive": { + "type": "bool", + "id": 3, + "offset": 128, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 824383403 + }, + "m_playList": { + "type": "class PlayList", + "id": 4, + "offset": 176, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2061221957 + }, + "m_volume": { + "type": "float", + "id": 5, + "offset": 304, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1162855023 + }, + "m_loopCount": { + "type": "int", + "id": 6, + "offset": 308, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 865634717 + }, + "m_minimumFalloff": { + "type": "float", + "id": 7, + "offset": 328, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 355697197 + }, + "m_maximumFalloff": { + "type": "float", + "id": 8, + "offset": 332, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2210192367 + }, + "m_animDriven": { + "type": "bool", + "id": 9, + "offset": 392, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 398394720 + }, + "m_inverted": { + "type": "bool", + "id": 10, + "offset": 397, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1034821044 + }, + "m_fRangeScale": { + "type": "float", + "id": 11, + "offset": 512, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1749294034 + }, + "m_fAttenuationFactor": { + "type": "float", + "id": 12, + "offset": 516, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 273292776 + }, + "m_eAttenuationType": { + "type": "enum PositionInfoAttenuationType", + "id": 13, + "offset": 520, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2427193304, + "enum_options": { + "Standard": 0, + "Unit Range Power": 1 + } + }, + "m_vPositions": { + "type": "class Vector3D", + "id": 14, + "offset": 528, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 3599600160 + } + } + }, + "494018424": { + "name": "class ReqHealthPercent", + "bases": [ + "ReqNumeric", + "Requirement", + "PropertyClass" + ], + "hash": 494018424, + "properties": { + "m_applyNOT": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1746328074, + "enum_options": { + "__DEFAULT": 0 + } + }, + "m_operator": { + "type": "enum Requirement::Operator", + "id": 1, + "offset": 76, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2672792317, + "enum_options": { + "ROP_AND": 0, + "ROP_OR": 1, + "__DEFAULT": "ROP_AND" + } + }, + "m_numericValue": { + "type": "float", + "id": 2, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 521915239 + }, + "m_operatorType": { + "type": "enum ReqNumeric::OPERATOR_TYPE", + "id": 3, + "offset": 84, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2228122961, + "enum_options": { + "OPERATOR_UNKNOWN": 4294967295, + "OPERATOR_EQUALS": 0, + "OPERATOR_GREATER_THAN": 1, + "OPERATOR_LESS_THAN": 2, + "OPERATOR_GREATER_THAN_EQ": 3, + "OPERATOR_LESS_THAN_EQ": 4 + } + } + } + }, + "493920120": { + "name": "class ReqHealthPercent*", + "bases": [ + "ReqNumeric", + "Requirement", + "PropertyClass" + ], + "hash": 493920120, + "properties": { + "m_applyNOT": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1746328074, + "enum_options": { + "__DEFAULT": 0 + } + }, + "m_operator": { + "type": "enum Requirement::Operator", + "id": 1, + "offset": 76, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2672792317, + "enum_options": { + "ROP_AND": 0, + "ROP_OR": 1, + "__DEFAULT": "ROP_AND" + } + }, + "m_numericValue": { + "type": "float", + "id": 2, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 521915239 + }, + "m_operatorType": { + "type": "enum ReqNumeric::OPERATOR_TYPE", + "id": 3, + "offset": 84, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2228122961, + "enum_options": { + "OPERATOR_UNKNOWN": 4294967295, + "OPERATOR_EQUALS": 0, + "OPERATOR_GREATER_THAN": 1, + "OPERATOR_LESS_THAN": 2, + "OPERATOR_GREATER_THAN_EQ": 3, + "OPERATOR_LESS_THAN_EQ": 4 + } + } + } + }, + "494069982": { + "name": "class SharedPointer", + "bases": [ + "AttachEffectToTurnIndicatorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 494069982, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_minDuration": { + "type": "float", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1733171553 + }, + "m_assetName": { + "type": "std::string", + "id": 2, + "offset": 88, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513131580 + } + } + }, + "494690982": { + "name": "class PvPLeagueTemplate", + "bases": [ + "PropertyClass" + ], + "hash": 494690982, + "properties": { + "m_leagueType": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3327951024 + }, + "m_mainDoodle": { + "type": "std::string", + "id": 1, + "offset": 112, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2211594423 + }, + "m_leagueDescription": { + "type": "std::string", + "id": 2, + "offset": 144, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3204126290 + }, + "m_leagueName": { + "type": "std::string", + "id": 3, + "offset": 176, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3327709167 + }, + "m_age": { + "type": "int", + "id": 4, + "offset": 208, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 267029223 + }, + "m_retired": { + "type": "bool", + "id": 5, + "offset": 212, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1931776834 + }, + "m_gracePeriodDays": { + "type": "int", + "id": 6, + "offset": 216, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1128520496 + }, + "m_requirementsList": { + "type": "class SharedPointer", + "id": 7, + "offset": 224, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1999017945 + }, + "m_seasonList": { + "type": "std::string", + "id": 8, + "offset": 240, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1895863232 + }, + "m_duelModifiers": { + "type": "std::string", + "id": 9, + "offset": 256, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2938413959 + } + } + }, + "495164721": { + "name": "class BreadCrumbBehaviorBase", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 495164721, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_breadCrumbNumber": { + "type": "unsigned int", + "id": 1, + "offset": 112, + "flags": 65543, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2100995821 + }, + "m_equippedPetGIDList": { + "type": "gid", + "id": 2, + "offset": 120, + "flags": 65543, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1574152046 + }, + "m_equippedBreadCrumbIDList": { + "type": "unsigned short", + "id": 3, + "offset": 136, + "flags": 65543, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 592278117 + }, + "m_flags": { + "type": "unsigned int", + "id": 4, + "offset": 152, + "flags": 65543, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1005801050 + } + } + }, + "496042949": { + "name": "class MountItemBehavior", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 496042949, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_housingMountOriginalGID": { + "type": "gid", + "id": 1, + "offset": 112, + "flags": 65536, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1220139473 + }, + "m_housingPetPrimaryColor": { + "type": "int", + "id": 2, + "offset": 120, + "flags": 65536, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 525135139 + }, + "m_housingPetPattern": { + "type": "int", + "id": 3, + "offset": 124, + "flags": 65536, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 165011646 + }, + "m_housingPetSecondaryColor": { + "type": "int", + "id": 4, + "offset": 128, + "flags": 65536, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 358656263 + } + } + }, + "509426782": { + "name": "class DamageEventCinematicAction*", + "bases": [ + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 509426782, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + } + } + }, + "504679060": { + "name": "class BadgeLeaderboardBehavior*", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 504679060, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + } + } + }, + "500787108": { + "name": "class ResAddCharacterSlotResult*", + "bases": [ + "Result", + "PropertyClass" + ], + "hash": 500787108, + "properties": { + "m_maximumPurchasedCharacterSlots": { + "type": "int", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 57745273 + } + } + }, + "498321199": { + "name": "class HousingGameObjectReference", + "bases": [ + "PropertyClass" + ], + "hash": 498321199, + "properties": { + "m_zoneGID": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1907651624 + }, + "m_objectGID": { + "type": "gid", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2037310403 + } + } + }, + "497987934": { + "name": "class SigilZoneInfo", + "bases": [ + "PropertyClass" + ], + "hash": 497987934, + "properties": { + "m_zoneName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2171167736 + }, + "m_maximumLevel": { + "type": "int", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 285381904 + } + } + }, + "497987931": { + "name": "class SigilZoneInfo*", + "bases": [ + "PropertyClass" + ], + "hash": 497987931, + "properties": { + "m_zoneName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2171167736 + }, + "m_maximumLevel": { + "type": "int", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 285381904 + } + } + }, + "498321189": { + "name": "class HousingGameObjectReference*", + "bases": [ + "PropertyClass" + ], + "hash": 498321189, + "properties": { + "m_zoneGID": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1907651624 + }, + "m_objectGID": { + "type": "gid", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2037310403 + } + } + }, + "499116335": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 499116335, + "properties": {} + }, + "498686861": { + "name": "class SharedPointer", + "bases": [ + "GameEffectInfo", + "PropertyClass" + ], + "hash": 498686861, + "properties": { + "m_effectName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2029161513 + }, + "m_startReqs": { + "type": "class SharedPointer", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3147529602 + }, + "m_startResults": { + "type": "class SharedPointer", + "id": 2, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2094517692 + }, + "m_endResults": { + "type": "class SharedPointer", + "id": 3, + "offset": 136, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2118364133 + } + } + }, + "498604969": { + "name": "class SharedPointer", + "bases": [ + "MonsterMagicBehaviorBase", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 498604969, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_monsterData": { + "type": "std::string", + "id": 1, + "offset": 128, + "flags": 551, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3377737309 + } + } + }, + "498942361": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 498942361, + "properties": { + "m_levelInfo": { + "type": "class GardeningLevelInfo*", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 3807245122 + }, + "m_maxLevel": { + "type": "unsigned char", + "id": 1, + "offset": 88, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 783962734 + } + } + }, + "499635585": { + "name": "class SharedPointer", + "bases": [ + "Requirement", + "PropertyClass" + ], + "hash": 499635585, + "properties": { + "m_applyNOT": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1746328074, + "enum_options": { + "__DEFAULT": 0 + } + }, + "m_operator": { + "type": "enum Requirement::Operator", + "id": 1, + "offset": 76, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2672792317, + "enum_options": { + "ROP_AND": 0, + "ROP_OR": 1, + "__DEFAULT": "ROP_AND" + } + } + } + }, + "499188677": { + "name": "class MountItemBehavior*", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 499188677, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_housingMountOriginalGID": { + "type": "gid", + "id": 1, + "offset": 112, + "flags": 65536, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1220139473 + }, + "m_housingPetPrimaryColor": { + "type": "int", + "id": 2, + "offset": 120, + "flags": 65536, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 525135139 + }, + "m_housingPetPattern": { + "type": "int", + "id": 3, + "offset": 124, + "flags": 65536, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 165011646 + }, + "m_housingPetSecondaryColor": { + "type": "int", + "id": 4, + "offset": 128, + "flags": 65536, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 358656263 + } + } + }, + "500732420": { + "name": "class ClientAuctionHouseOption", + "bases": [ + "AuctionHouseOption", + "ServiceOptionBase", + "PropertyClass" + ], + "hash": 500732420, + "properties": { + "m_serviceName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2206028813 + }, + "m_iconKey": { + "type": "std::string", + "id": 1, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2457138637 + }, + "m_displayKey": { + "type": "std::string", + "id": 2, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3023276954 + }, + "m_serviceIndex": { + "type": "unsigned int", + "id": 3, + "offset": 204, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2103126710 + }, + "m_forceInteract": { + "type": "bool", + "id": 4, + "offset": 200, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1705789564 + }, + "m_auctionHousePurchaseKey": { + "type": "unsigned int", + "id": 5, + "offset": 216, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 394777768 + }, + "m_sellModifier": { + "type": "float", + "id": 6, + "offset": 220, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 360128886 + } + } + }, + "502121191": { + "name": "class GardenPlant*", + "bases": [ + "PropertyClass" + ], + "hash": 502121191, + "properties": { + "m_position": { + "type": "class Vector3D", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3697900983 + }, + "m_templateID": { + "type": "unsigned int", + "id": 1, + "offset": 84, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1286746870 + }, + "m_nextStageTimeSeconds": { + "type": "unsigned int", + "id": 2, + "offset": 92, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 752026046 + }, + "m_flags": { + "type": "unsigned int", + "id": 3, + "offset": 88, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1005801050 + }, + "m_needsWaterTimeSeconds": { + "type": "unsigned int", + "id": 4, + "offset": 100, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1144013149 + }, + "m_needsSunTimeSeconds": { + "type": "unsigned int", + "id": 5, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1376682128 + }, + "m_needsPollinationTimeSeconds": { + "type": "unsigned int", + "id": 6, + "offset": 108, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1487147427 + }, + "m_needsMagicTimeSeconds": { + "type": "unsigned int", + "id": 7, + "offset": 112, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 655591099 + }, + "m_needsMusicTimeSeconds": { + "type": "unsigned int", + "id": 8, + "offset": 116, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 799722843 + }, + "m_harvestTimeSeconds": { + "type": "unsigned int", + "id": 9, + "offset": 96, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 675583752 + }, + "m_pestCheckTimeSeconds": { + "type": "unsigned int", + "id": 10, + "offset": 120, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2302681477 + }, + "m_pestTemplateID": { + "type": "unsigned int", + "id": 11, + "offset": 124, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1301457330 + }, + "m_pestProtectionTemplateID": { + "type": "unsigned int", + "id": 12, + "offset": 128, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1429720889 + }, + "m_pestProtectionTimeSeconds": { + "type": "unsigned int", + "id": 13, + "offset": 132, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1440479886 + }, + "m_stageStartTimeSeconds": { + "type": "unsigned int", + "id": 14, + "offset": 136, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1075432461 + }, + "m_likesDislikesModifier": { + "type": "float", + "id": 15, + "offset": 140, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 840714742 + }, + "m_plantIdentifierForETL": { + "type": "gid", + "id": 16, + "offset": 144, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 450491014 + }, + "m_harvestCount": { + "type": "unsigned int", + "id": 17, + "offset": 152, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 245460819 + } + } + }, + "501413032": { + "name": "class PhysicsSimMassCylinder*", + "bases": [ + "PhysicsSimMassSphere", + "PhysicsSimMass", + "PropertyClass" + ], + "hash": 501413032, + "properties": {} + }, + "501372072": { + "name": "class PhysicsSimMassCylinder", + "bases": [ + "PhysicsSimMassSphere", + "PhysicsSimMass", + "PropertyClass" + ], + "hash": 501372072, + "properties": {} + }, + "501815053": { + "name": "class OrderedWorlds", + "bases": [ + "PropertyClass" + ], + "hash": 501815053, + "properties": { + "m_worldKeys": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": true, + "pointer": false, + "hash": 1846654431 + } + } + }, + "501815050": { + "name": "class OrderedWorlds*", + "bases": [ + "PropertyClass" + ], + "hash": 501815050, + "properties": { + "m_worldKeys": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": true, + "pointer": false, + "hash": 1846654431 + } + } + }, + "502021134": { + "name": "class CollisionBehaviorClient*", + "bases": [ + "CollisionBehavior", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 502021134, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + } + } + }, + "503595012": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 503595012, + "properties": {} + }, + "502807566": { + "name": "class CollisionBehaviorClient", + "bases": [ + "CollisionBehavior", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 502807566, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + } + } + }, + "504140983": { + "name": "class ReqAddHousingItemSlots", + "bases": [ + "Requirement", + "PropertyClass" + ], + "hash": 504140983, + "properties": { + "m_applyNOT": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1746328074, + "enum_options": { + "__DEFAULT": 0 + } + }, + "m_operator": { + "type": "enum Requirement::Operator", + "id": 1, + "offset": 76, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2672792317, + "enum_options": { + "ROP_AND": 0, + "ROP_OR": 1, + "__DEFAULT": "ROP_AND" + } + } + } + }, + "504116407": { + "name": "class ReqAddHousingItemSlots*", + "bases": [ + "Requirement", + "PropertyClass" + ], + "hash": 504116407, + "properties": { + "m_applyNOT": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1746328074, + "enum_options": { + "__DEFAULT": 0 + } + }, + "m_operator": { + "type": "enum Requirement::Operator", + "id": 1, + "offset": 76, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2672792317, + "enum_options": { + "ROP_AND": 0, + "ROP_OR": 1, + "__DEFAULT": "ROP_AND" + } + } + } + }, + "504550220": { + "name": "class TreasureCardVaultBehaviorBase", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 504550220, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_spellData": { + "type": "std::string", + "id": 1, + "offset": 128, + "flags": 575, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2688126101 + } + } + }, + "505777966": { + "name": "class SharedPointer", + "bases": [ + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 505777966, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + } + } + }, + "505590938": { + "name": "class HousingMusicPlayerBehaviorTemplate*", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 505590938, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + }, + "m_combatMusicPlayer": { + "type": "bool", + "id": 1, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 492667575 + } + } + }, + "504877900": { + "name": "class TreasureCardVaultBehaviorBase*", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 504877900, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_spellData": { + "type": "std::string", + "id": 1, + "offset": 128, + "flags": 575, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2688126101 + } + } + }, + "505593498": { + "name": "class HousingMusicPlayerBehaviorTemplate", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 505593498, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + }, + "m_combatMusicPlayer": { + "type": "bool", + "id": 1, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 492667575 + } + } + }, + "509133396": { + "name": "class SharedPointer", + "bases": [ + "ChangeActorStateCinematicAction", + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 509133396, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + }, + "m_newState": { + "type": "std::string", + "id": 2, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2153420230 + } + } + }, + "506799713": { + "name": "class SharedPointer", + "bases": [ + "InventoryBehaviorBase", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 506799713, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_itemList": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 27, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1983655699 + } + } + }, + "506758657": { + "name": "class ClientBGPolymorphSelectBehavior", + "bases": [ + "BGPolymorphSelectBehavior", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 506758657, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_polyCategoryInactiveToRedTeamPlayers": { + "type": "gid", + "id": 1, + "offset": 112, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 757020210 + }, + "m_polyCategoryUnavailableToRedTeamPlayers": { + "type": "gid", + "id": 2, + "offset": 128, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1382977667 + }, + "m_polyCategoryInactiveToBlueTeamPlayers": { + "type": "gid", + "id": 3, + "offset": 144, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1877669599 + }, + "m_polyCategoryUnavailableToBlueTeamPlayers": { + "type": "gid", + "id": 4, + "offset": 160, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1059429200 + } + } + }, + "506226099": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 506226099, + "properties": { + "m_gamerID": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 443045745 + }, + "m_gamerName": { + "type": "std::wstring", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2656017061 + }, + "m_gamerNameCode": { + "type": "unsigned int", + "id": 2, + "offset": 112, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 267246197 + }, + "m_gameScore": { + "type": "float", + "id": 3, + "offset": 116, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1416539789 + }, + "m_gamerRace": { + "type": "std::string", + "id": 4, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2860175138 + }, + "m_gamerGender": { + "type": "std::string", + "id": 5, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2948235676 + } + } + }, + "508746293": { + "name": "class PlayerInteractiveMusicLoops*", + "bases": [ + "PropertyClass" + ], + "hash": 508746293, + "properties": { + "m_playerRecordedMusicLoopList": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 65543, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2520861630 + } + } + }, + "507521837": { + "name": "class ServerSyncCinematicAction", + "bases": [ + "CinematicAction", + "PropertyClass" + ], + "hash": 507521837, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_eventToSend": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1564059786 + } + } + }, + "508746613": { + "name": "class PlayerInteractiveMusicLoops", + "bases": [ + "PropertyClass" + ], + "hash": 508746613, + "properties": { + "m_playerRecordedMusicLoopList": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 65543, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2520861630 + } + } + }, + "509426772": { + "name": "class DamageEventCinematicAction", + "bases": [ + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 509426772, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + } + } + }, + "509281192": { + "name": "class ObstacleCourseCatapultBehaviorTemplate", + "bases": [ + "ObstacleCourseObstacleBehaviorTemplate", + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 509281192, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + }, + "m_rate": { + "type": "double", + "id": 1, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2117614265 + }, + "m_initialYaw": { + "type": "double", + "id": 2, + "offset": 128, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2566917224 + }, + "m_penaltyTime": { + "type": "double", + "id": 3, + "offset": 136, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3890998489 + }, + "m_pitch": { + "type": "double", + "id": 4, + "offset": 144, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2703980677 + }, + "m_maxYaw": { + "type": "double", + "id": 5, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2602042948 + }, + "m_platformWidth": { + "type": "double", + "id": 6, + "offset": 160, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 4024516466 + }, + "m_platformHeight": { + "type": "double", + "id": 7, + "offset": 168, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2765202891 + }, + "m_launchSpeed": { + "type": "double", + "id": 8, + "offset": 176, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2644727001 + }, + "m_launchSpeedUp": { + "type": "double", + "id": 9, + "offset": 184, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3445224318 + }, + "m_collisionHeight": { + "type": "double", + "id": 10, + "offset": 192, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3980975122 + } + } + }, + "513790116": { + "name": "class SharedPointer", + "bases": [ + "DerbyEffect", + "PropertyClass" + ], + "hash": 513790116, + "properties": { + "m_buffType": { + "type": "enum DerbyTalentBuffType", + "id": 0, + "offset": 92, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1149251982, + "enum_options": { + "Buff": 0, + "Debuff": 1, + "Neither": 2 + } + }, + "m_kTarget": { + "type": "enum DerbyTargetType", + "id": 1, + "offset": 96, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1807803351, + "enum_options": { + "kTargetInFront": 0, + "kTargetBehind": 1, + "kTargetFirst": 2, + "kTargetSelf": 3, + "kTargetAll": 4, + "kTargetLast": 5 + } + }, + "m_nDuration": { + "type": "int", + "id": 2, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1110167982 + }, + "m_effectID": { + "type": "unsigned int", + "id": 3, + "offset": 88, + "flags": 24, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2347630439 + }, + "m_imageFilename": { + "type": "std::string", + "id": 4, + "offset": 112, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2813328063 + }, + "m_iconIndex": { + "type": "unsigned int", + "id": 5, + "offset": 144, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1265133262 + }, + "m_soundOnActivate": { + "type": "std::string", + "id": 6, + "offset": 152, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1956929714 + }, + "m_soundOnTarget": { + "type": "std::string", + "id": 7, + "offset": 184, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3444214056 + }, + "m_targetParticleEffect": { + "type": "std::string", + "id": 8, + "offset": 216, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3048234723 + }, + "m_overheadMessage": { + "type": "std::string", + "id": 9, + "offset": 248, + "flags": 8388639, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1701018190 + }, + "m_requirements": { + "type": "class RequirementList", + "id": 10, + "offset": 280, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2840988582 + }, + "m_kTeleportToTarget": { + "type": "enum DerbyTargetType", + "id": 11, + "offset": 376, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3096289769, + "enum_options": { + "kTargetInFront": 0, + "kTargetBehind": 1, + "kTargetFirst": 2, + "kTargetSelf": 3, + "kTargetAll": 4, + "kTargetLast": 5 + } + } + } + }, + "513064532": { + "name": "class UnlockTriggerInfo", + "bases": [ + "PropertyClass" + ], + "hash": 513064532, + "properties": { + "m_unlockTriggerTemplateID": { + "type": "unsigned int", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1721811670 + }, + "m_state": { + "type": "unsigned int", + "id": 1, + "offset": 76, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1021505934 + }, + "m_reagentCount1": { + "type": "unsigned int", + "id": 2, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2011197517 + }, + "m_reagentCount2": { + "type": "unsigned int", + "id": 3, + "offset": 84, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2011197518 + }, + "m_reagentCount3": { + "type": "unsigned int", + "id": 4, + "offset": 88, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2011197519 + }, + "m_reagentCount4": { + "type": "unsigned int", + "id": 5, + "offset": 92, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2011197520 + }, + "m_reagentCount5": { + "type": "unsigned int", + "id": 6, + "offset": 96, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2011197521 + }, + "m_reagentCount6": { + "type": "unsigned int", + "id": 7, + "offset": 100, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2011197522 + } + } + }, + "511016223": { + "name": "class ClientChangeActorStateCinematicAction*", + "bases": [ + "ChangeActorStateCinematicAction", + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 511016223, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + }, + "m_newState": { + "type": "std::string", + "id": 2, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2153420230 + } + } + }, + "510688168": { + "name": "class CinematicTemplateAnimationData*", + "bases": [ + "PropertyClass" + ], + "hash": 510688168, + "properties": { + "m_animationPath": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3393486152 + }, + "m_sound": { + "type": "std::string", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2307644996 + }, + "m_length": { + "type": "float", + "id": 2, + "offset": 136, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 759698745 + }, + "m_textTags": { + "type": "class SharedPointer", + "id": 3, + "offset": 144, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1768413037 + } + } + }, + "509471507": { + "name": "class ClientPetSnackBehavior*", + "bases": [ + "PetSnackBehavior", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 509471507, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_snackBag": { + "type": "class ObjectBag", + "id": 1, + "offset": 112, + "flags": 27, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2027393587 + } + } + }, + "509430547": { + "name": "class ClientPetSnackBehavior", + "bases": [ + "PetSnackBehavior", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 509430547, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_snackBag": { + "type": "class ObjectBag", + "id": 1, + "offset": 112, + "flags": 27, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2027393587 + } + } + }, + "509800089": { + "name": "class WhirlyBurlyPlanningDataAI*", + "bases": [ + "PropertyClass" + ], + "hash": 509800089, + "properties": { + "m_team": { + "type": "unsigned char", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 857479191 + }, + "m_passport": { + "type": "unsigned int", + "id": 1, + "offset": 76, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1362521513 + }, + "m_unitTypesList": { + "type": "unsigned char", + "id": 2, + "offset": 80, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2643134017 + }, + "m_cardsUsedList": { + "type": "unsigned int", + "id": 3, + "offset": 96, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 711045287 + } + } + }, + "510702708": { + "name": "class SharedPointer", + "bases": [ + "ServiceOptionBase", + "PropertyClass" + ], + "hash": 510702708, + "properties": { + "m_serviceName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2206028813 + }, + "m_iconKey": { + "type": "std::string", + "id": 1, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2457138637 + }, + "m_displayKey": { + "type": "std::string", + "id": 2, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3023276954 + }, + "m_serviceIndex": { + "type": "unsigned int", + "id": 3, + "offset": 204, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2103126710 + }, + "m_forceInteract": { + "type": "bool", + "id": 4, + "offset": 200, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1705789564 + } + } + }, + "58313837": { + "name": "class SharedPointer", + "bases": [ + "AuctionHouseOption", + "ServiceOptionBase", + "PropertyClass" + ], + "hash": 58313837, + "properties": { + "m_serviceName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2206028813 + }, + "m_iconKey": { + "type": "std::string", + "id": 1, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2457138637 + }, + "m_displayKey": { + "type": "std::string", + "id": 2, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3023276954 + }, + "m_serviceIndex": { + "type": "unsigned int", + "id": 3, + "offset": 204, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2103126710 + }, + "m_forceInteract": { + "type": "bool", + "id": 4, + "offset": 200, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1705789564 + }, + "m_auctionHousePurchaseKey": { + "type": "unsigned int", + "id": 5, + "offset": 216, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 394777768 + }, + "m_sellModifier": { + "type": "float", + "id": 6, + "offset": 220, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 360128886 + } + } + }, + "1766234697": { + "name": "class SharedPointer", + "bases": [ + "ServiceOptionBase", + "PropertyClass" + ], + "hash": 1766234697, + "properties": { + "m_serviceName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2206028813 + }, + "m_iconKey": { + "type": "std::string", + "id": 1, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2457138637 + }, + "m_displayKey": { + "type": "std::string", + "id": 2, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3023276954 + }, + "m_serviceIndex": { + "type": "unsigned int", + "id": 3, + "offset": 204, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2103126710 + }, + "m_forceInteract": { + "type": "bool", + "id": 4, + "offset": 200, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1705789564 + } + } + }, + "927735810": { + "name": "class ClearTopTeamCinematicAction", + "bases": [ + "CinematicAction", + "PropertyClass" + ], + "hash": 927735810, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_interpDuration": { + "type": "float", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237711951 + } + } + }, + "1336810735": { + "name": "class ParticipantParameter", + "bases": [ + "PropertyClass" + ], + "hash": 1336810735, + "properties": { + "m_partID": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 821435516 + }, + "m_data": { + "type": "unsigned int", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 430703463 + } + } + }, + "1765298473": { + "name": "class SharedPointer", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1765298473, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_mobList": { + "type": "unsigned int", + "id": 1, + "offset": 112, + "flags": 65543, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 347281415 + }, + "m_zoneGID": { + "type": "gid", + "id": 2, + "offset": 128, + "flags": 65543, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1907651624 + } + } + }, + "924614251": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 924614251, + "properties": { + "m_matchID": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1757621298 + }, + "m_matchNameID": { + "type": "unsigned int", + "id": 1, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1751361288 + }, + "m_matchResolution": { + "type": "int", + "id": 2, + "offset": 84, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1481862043 + }, + "m_actorList": { + "type": "class SharedPointer", + "id": 3, + "offset": 88, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2087966079 + }, + "m_teamResults": { + "type": "class MatchTeamResult", + "id": 4, + "offset": 104, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2421530763 + }, + "m_timeOutDraw": { + "type": "bool", + "id": 5, + "offset": 120, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 582264616 + } + } + }, + "1764650802": { + "name": "class ObjStateTransition*", + "bases": [ + "PropertyClass" + ], + "hash": 1764650802, + "properties": { + "m_targetState": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2472683907 + }, + "m_transitionState": { + "type": "std::string", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2166469639 + } + } + }, + "58890576": { + "name": "class WizardAutobotMobAvoidance*", + "bases": [ + "AutobotMobAvoidance", + "PropertyClass" + ], + "hash": 58890576, + "properties": {} + }, + "924584657": { + "name": "class BackpackBuddyHousingOptions", + "bases": [ + "PropertyClass" + ], + "hash": 924584657, + "properties": { + "m_includeCastleBlocks": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 519951249 + }, + "m_includePlantLife": { + "type": "bool", + "id": 1, + "offset": 73, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 596498422 + }, + "m_includeWallHangings": { + "type": "bool", + "id": 2, + "offset": 74, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 720249270 + }, + "m_includeTileWallpaper": { + "type": "bool", + "id": 3, + "offset": 75, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1182210829 + }, + "m_includeOutdoor": { + "type": "bool", + "id": 4, + "offset": 76, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 192313891 + }, + "m_includeFurniture": { + "type": "bool", + "id": 5, + "offset": 77, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 15665371 + }, + "m_includeDecoration": { + "type": "bool", + "id": 6, + "offset": 78, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1389489247 + }, + "m_includeMusicalScrolls": { + "type": "bool", + "id": 7, + "offset": 79, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 623905255 + }, + "m_includeSeeds": { + "type": "bool", + "id": 8, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1324177291 + } + } + }, + "58565767": { + "name": "class ReqHasEntry*", + "bases": [ + "Requirement", + "PropertyClass" + ], + "hash": 58565767, + "properties": { + "m_applyNOT": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1746328074, + "enum_options": { + "__DEFAULT": 0 + } + }, + "m_operator": { + "type": "enum Requirement::Operator", + "id": 1, + "offset": 76, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2672792317, + "enum_options": { + "ROP_AND": 0, + "ROP_OR": 1, + "__DEFAULT": "ROP_AND" + } + }, + "m_entryName": { + "type": "std::string", + "id": 2, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2055270734 + }, + "m_displayName": { + "type": "std::string", + "id": 3, + "offset": 112, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2446900370 + }, + "m_isQuestRegistry": { + "type": "bool", + "id": 4, + "offset": 144, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1388902362 + }, + "m_questName": { + "type": "std::string", + "id": 5, + "offset": 152, + "flags": 268435463, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1702112846, + "enum_options": { + "__BASECLASS": "QuestTemplate" + } + } + } + }, + "924087310": { + "name": "class ClientCreateActorCinematicAction", + "bases": [ + "CreateActorCinematicAction", + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 924087310, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + }, + "m_animations": { + "type": "std::string", + "id": 2, + "offset": 120, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3030904078 + }, + "m_model": { + "type": "std::string", + "id": 3, + "offset": 152, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2300510668 + }, + "m_createOrientation": { + "type": "enum CreateActorCinematicAction::kCreateOrientation", + "id": 4, + "offset": 184, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3562324429, + "enum_options": { + "kFaceTarget": 0, + "kFaceSource": 1, + "kSigil": 2, + "kTarget": 3, + "kSource": 4, + "kSigilRight": 5, + "kSigilLeft": 6, + "kFaceTargetTeam": 7 + } + }, + "m_hidePolymorphFloatyText": { + "type": "bool", + "id": 5, + "offset": 188, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 942475883 + }, + "m_forwardOffset": { + "type": "float", + "id": 6, + "offset": 192, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1749681459 + }, + "m_absoluteTarget": { + "type": "bool", + "id": 7, + "offset": 196, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1463993657 + } + } + }, + "1337319775": { + "name": "class SharedPointer", + "bases": [ + "SoundBehavior", + "AreaBehavior", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1337319775, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_radius": { + "type": "float", + "id": 1, + "offset": 116, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 989410271 + }, + "m_category": { + "type": "enum AudioCategory", + "id": 2, + "offset": 124, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2951251982, + "enum_options": { + "AudioCategory_Irrelevent": 0, + "AudioCategory_Accoustic": 1, + "AudioCategory_Noise": 2, + "AudioCategory_Music": 3 + } + }, + "m_exclusive": { + "type": "bool", + "id": 3, + "offset": 128, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 824383403 + }, + "m_playList": { + "type": "class PlayList", + "id": 4, + "offset": 176, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2061221957 + }, + "m_volume": { + "type": "float", + "id": 5, + "offset": 304, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1162855023 + }, + "m_loopCount": { + "type": "int", + "id": 6, + "offset": 308, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 865634717 + } + } + }, + "922739513": { + "name": "class SharedPointer", + "bases": [ + "HousingGameInterface", + "PropertyClass" + ], + "hash": 922739513, + "properties": {} + }, + "58611215": { + "name": "class TeleportProximityBehavior", + "bases": [ + "TeleportProximityBehaviorBase", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 58611215, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + } + } + }, + "1766406068": { + "name": "class CurrencyTemplate", + "bases": [ + "WizItemTemplate", + "ItemTemplate", + "GameObjectTemplate", + "CoreTemplate", + "PropertyClass" + ], + "hash": 1766406068, + "properties": { + "m_behaviors": { + "type": "class BehaviorTemplate*", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1197808594 + }, + "m_objectName": { + "type": "std::string", + "id": 1, + "offset": 96, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2154940147 + }, + "m_templateID": { + "type": "unsigned int", + "id": 2, + "offset": 128, + "flags": 16777223, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1286746870 + }, + "m_visualID": { + "type": "unsigned int", + "id": 3, + "offset": 132, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1118778894 + }, + "m_adjectiveList": { + "type": "std::string", + "id": 4, + "offset": 248, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 3195213318 + }, + "m_exemptFromAOI": { + "type": "bool", + "id": 5, + "offset": 240, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1457879059 + }, + "m_displayName": { + "type": "std::string", + "id": 6, + "offset": 168, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2446900370 + }, + "m_description": { + "type": "std::string", + "id": 7, + "offset": 136, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1649374815 + }, + "m_nObjectType": { + "type": "enum ObjectType", + "id": 8, + "offset": 200, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2118905880, + "enum_options": { + "OT_UNDEFINED": 0, + "OT_PLAYER": 1, + "OT_NPC": 2, + "OT_PROP": 3, + "OT_OBJECT": 4, + "OT_HOUSE": 5, + "OT_KEY": 6, + "OT_OLD_KEY": 7, + "OT_DEED": 8, + "OT_MAIL": 9, + "OT_RECIPE": 17, + "OT_EQUIP_HEAD": 10, + "OT_EQUIP_CHEST": 11, + "OT_EQUIP_LEGS": 12, + "OT_EQUIP_HANDS": 13, + "OT_EQUIP_FINGER": 14, + "OT_EQUIP_FEET": 15, + "OT_EQUIP_EAR": 16, + "OT_BUILDING_BLOCK": 18, + "OT_BUILDING_BLOCK_SOLID": 19, + "OT_GOLF": 20, + "OT_DOOR": 21, + "OT_PET": 22, + "OT_FABRIC": 23, + "OT_WINDOW": 24, + "OT_ROOF": 25, + "OT_HORSE": 26, + "OT_STRUCTURE": 27, + "OT_HOUSING_TEXTURE": 28, + "OT_PLANT": 29 + } + }, + "m_sIcon": { + "type": "std::string", + "id": 9, + "offset": 208, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306259831 + }, + "m_equipRequirements": { + "type": "class RequirementList*", + "id": 10, + "offset": 280, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2762617226 + }, + "m_purchaseRequirements": { + "type": "class RequirementList*", + "id": 11, + "offset": 288, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3174641793 + }, + "m_equipEffects": { + "type": "class GameEffectInfo*", + "id": 12, + "offset": 296, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 836628351 + }, + "m_baseCost": { + "type": "float", + "id": 13, + "offset": 312, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1565352651 + }, + "m_creditsCost": { + "type": "float", + "id": 14, + "offset": 320, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 805514974 + }, + "m_avatarInfo": { + "type": "class AvatarItemInfoBase*", + "id": 15, + "offset": 328, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2627321299 + }, + "m_avatarFlags": { + "type": "std::string", + "id": 16, + "offset": 336, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2347762759 + }, + "m_itemLimit": { + "type": "int", + "id": 17, + "offset": 316, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1799746856 + }, + "m_holidayFlag": { + "type": "std::string", + "id": 18, + "offset": 352, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2994795359 + }, + "m_itemSetBonusTemplateID": { + "type": "unsigned int", + "id": 19, + "offset": 384, + "flags": 33554439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1316835672 + }, + "m_numPrimaryColors": { + "type": "int", + "id": 20, + "offset": 428, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 981103872 + }, + "m_numSecondaryColors": { + "type": "int", + "id": 21, + "offset": 432, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1310416868 + }, + "m_numPatterns": { + "type": "int", + "id": 22, + "offset": 436, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 953162171 + }, + "m_school": { + "type": "std::string", + "id": 23, + "offset": 392, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2438566051 + }, + "m_arenaPointCost": { + "type": "int", + "id": 24, + "offset": 440, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1819621796 + }, + "m_pvpCurrencyCost": { + "type": "int", + "id": 25, + "offset": 444, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 645595444 + }, + "m_pvpTourneyCurrencyCost": { + "type": "int", + "id": 26, + "offset": 448, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 517874954 + }, + "m_rank": { + "type": "int", + "id": 27, + "offset": 424, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 219803942 + }, + "m_boyIconIndex": { + "type": "int", + "id": 28, + "offset": 452, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 802140453 + }, + "m_girlIconIndex": { + "type": "int", + "id": 29, + "offset": 456, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 832706793 + }, + "m_leashOffsetOverride": { + "type": "class SharedPointer", + "id": 30, + "offset": 464, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1692586788 + }, + "m_rarity": { + "type": "enum RarityType", + "id": 31, + "offset": 460, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2253792108, + "enum_options": { + "RT_COMMON": 0, + "RT_UNCOMMON": 1, + "RT_RARE": 2, + "RT_ULTRARARE": 3, + "RT_EPIC": 4 + } + }, + "m_currencyType": { + "type": "enum CurrencyTemplate::CurrencyTypes", + "id": 32, + "offset": 480, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 461057706, + "enum_options": { + "CURRENCY_GOLD": 0, + "CURRENCY_ARENATICKETS": 1, + "CURRENCY_CROWNS": 2, + "CURRENCY_EC1": 3, + "CURRENCY_EC2": 4, + "CURRENCY_PVPCUR": 5, + "CURRENCY_PVPTOURNEYCUR": 6, + "CURRENCY_LOYALTYTOKENS": 7 + } + } + } + }, + "1338519451": { + "name": "class CrownShopPurchasesInfo*", + "bases": [ + "PropertyClass" + ], + "hash": 1338519451, + "properties": { + "m_crownShopPurchases": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 845434554 + } + } + }, + "1766371717": { + "name": "class PhysicsBehaviorTemplate", + "bases": [ + "CollisionBehaviorTemplate", + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 1766371717, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + }, + "m_walkableCollisionFilename": { + "type": "std::string", + "id": 1, + "offset": 120, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2223282859 + }, + "m_solidCollisionFilename": { + "type": "std::string", + "id": 2, + "offset": 152, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3292753187 + }, + "m_clickableCollisionFilename": { + "type": "std::string", + "id": 3, + "offset": 184, + "flags": 131335, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1964485570 + }, + "m_bAutoClickBox": { + "type": "bool", + "id": 4, + "offset": 216, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 13289565 + }, + "m_bDisableCollision": { + "type": "bool", + "id": 5, + "offset": 217, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2086036629 + }, + "m_bClientOnly": { + "type": "bool", + "id": 6, + "offset": 218, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1918653686 + }, + "m_nSimulationMethod": { + "type": "enum PhysicsBehaviorTemplate::SimulationMethod", + "id": 7, + "offset": 224, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1994289470, + "enum_options": { + "SM_CLIENT": 0, + "SM_SERVER_CLIENT": 1, + "__DEFAULT": "SM_CLIENT" + } + }, + "m_bEnableGravity": { + "type": "bool", + "id": 8, + "offset": 228, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2096165250, + "enum_options": { + "__DEFAULT": 1 + } + }, + "m_bEnableDamping": { + "type": "bool", + "id": 9, + "offset": 229, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1865442172, + "enum_options": { + "__DEFAULT": 0 + } + }, + "m_bStartsEnabled": { + "type": "bool", + "id": 10, + "offset": 230, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 648666209, + "enum_options": { + "__DEFAULT": 1 + } + }, + "m_fDampingX": { + "type": "float", + "id": 11, + "offset": 232, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 360421173 + }, + "m_fDampingY": { + "type": "float", + "id": 12, + "offset": 236, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 360421174 + }, + "m_fDampingZ": { + "type": "float", + "id": 13, + "offset": 240, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 360421175 + }, + "m_fAngDampingX": { + "type": "float", + "id": 14, + "offset": 244, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 725080299 + }, + "m_fAngDampingY": { + "type": "float", + "id": 15, + "offset": 248, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 725080300 + }, + "m_fAngDampingZ": { + "type": "float", + "id": 16, + "offset": 252, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 725080301 + }, + "m_fCenterX": { + "type": "float", + "id": 17, + "offset": 256, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1763110710 + }, + "m_fCenterY": { + "type": "float", + "id": 18, + "offset": 260, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1763110711 + }, + "m_fCenterZ": { + "type": "float", + "id": 19, + "offset": 264, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1763110712 + }, + "m_massShapes": { + "type": "class MassShapeTemplate*", + "id": 20, + "offset": 272, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1089760892 + } + } + }, + "59304277": { + "name": "struct GamebryoClient::NavPathDisplayOptions", + "bases": [], + "hash": 59304277, + "properties": {} + }, + "924584849": { + "name": "class BackpackBuddyHousingOptions*", + "bases": [ + "PropertyClass" + ], + "hash": 924584849, + "properties": { + "m_includeCastleBlocks": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 519951249 + }, + "m_includePlantLife": { + "type": "bool", + "id": 1, + "offset": 73, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 596498422 + }, + "m_includeWallHangings": { + "type": "bool", + "id": 2, + "offset": 74, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 720249270 + }, + "m_includeTileWallpaper": { + "type": "bool", + "id": 3, + "offset": 75, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1182210829 + }, + "m_includeOutdoor": { + "type": "bool", + "id": 4, + "offset": 76, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 192313891 + }, + "m_includeFurniture": { + "type": "bool", + "id": 5, + "offset": 77, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 15665371 + }, + "m_includeDecoration": { + "type": "bool", + "id": 6, + "offset": 78, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1389489247 + }, + "m_includeMusicalScrolls": { + "type": "bool", + "id": 7, + "offset": 79, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 623905255 + }, + "m_includeSeeds": { + "type": "bool", + "id": 8, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1324177291 + } + } + }, + "1338855028": { + "name": "class RadialMenuSlotInfo*", + "bases": [ + "PropertyClass" + ], + "hash": 1338855028, + "properties": { + "m_slot": { + "type": "short", + "id": 0, + "offset": 72, + "flags": 33554495, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 310478918 + }, + "m_emoteID": { + "type": "gid", + "id": 1, + "offset": 80, + "flags": 33554495, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 480114911 + } + } + }, + "1766569908": { + "name": "class CurrencyTemplate*", + "bases": [ + "WizItemTemplate", + "ItemTemplate", + "GameObjectTemplate", + "CoreTemplate", + "PropertyClass" + ], + "hash": 1766569908, + "properties": { + "m_behaviors": { + "type": "class BehaviorTemplate*", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1197808594 + }, + "m_objectName": { + "type": "std::string", + "id": 1, + "offset": 96, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2154940147 + }, + "m_templateID": { + "type": "unsigned int", + "id": 2, + "offset": 128, + "flags": 16777223, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1286746870 + }, + "m_visualID": { + "type": "unsigned int", + "id": 3, + "offset": 132, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1118778894 + }, + "m_adjectiveList": { + "type": "std::string", + "id": 4, + "offset": 248, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 3195213318 + }, + "m_exemptFromAOI": { + "type": "bool", + "id": 5, + "offset": 240, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1457879059 + }, + "m_displayName": { + "type": "std::string", + "id": 6, + "offset": 168, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2446900370 + }, + "m_description": { + "type": "std::string", + "id": 7, + "offset": 136, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1649374815 + }, + "m_nObjectType": { + "type": "enum ObjectType", + "id": 8, + "offset": 200, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2118905880, + "enum_options": { + "OT_UNDEFINED": 0, + "OT_PLAYER": 1, + "OT_NPC": 2, + "OT_PROP": 3, + "OT_OBJECT": 4, + "OT_HOUSE": 5, + "OT_KEY": 6, + "OT_OLD_KEY": 7, + "OT_DEED": 8, + "OT_MAIL": 9, + "OT_RECIPE": 17, + "OT_EQUIP_HEAD": 10, + "OT_EQUIP_CHEST": 11, + "OT_EQUIP_LEGS": 12, + "OT_EQUIP_HANDS": 13, + "OT_EQUIP_FINGER": 14, + "OT_EQUIP_FEET": 15, + "OT_EQUIP_EAR": 16, + "OT_BUILDING_BLOCK": 18, + "OT_BUILDING_BLOCK_SOLID": 19, + "OT_GOLF": 20, + "OT_DOOR": 21, + "OT_PET": 22, + "OT_FABRIC": 23, + "OT_WINDOW": 24, + "OT_ROOF": 25, + "OT_HORSE": 26, + "OT_STRUCTURE": 27, + "OT_HOUSING_TEXTURE": 28, + "OT_PLANT": 29 + } + }, + "m_sIcon": { + "type": "std::string", + "id": 9, + "offset": 208, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306259831 + }, + "m_equipRequirements": { + "type": "class RequirementList*", + "id": 10, + "offset": 280, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2762617226 + }, + "m_purchaseRequirements": { + "type": "class RequirementList*", + "id": 11, + "offset": 288, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3174641793 + }, + "m_equipEffects": { + "type": "class GameEffectInfo*", + "id": 12, + "offset": 296, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 836628351 + }, + "m_baseCost": { + "type": "float", + "id": 13, + "offset": 312, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1565352651 + }, + "m_creditsCost": { + "type": "float", + "id": 14, + "offset": 320, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 805514974 + }, + "m_avatarInfo": { + "type": "class AvatarItemInfoBase*", + "id": 15, + "offset": 328, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2627321299 + }, + "m_avatarFlags": { + "type": "std::string", + "id": 16, + "offset": 336, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2347762759 + }, + "m_itemLimit": { + "type": "int", + "id": 17, + "offset": 316, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1799746856 + }, + "m_holidayFlag": { + "type": "std::string", + "id": 18, + "offset": 352, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2994795359 + }, + "m_itemSetBonusTemplateID": { + "type": "unsigned int", + "id": 19, + "offset": 384, + "flags": 33554439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1316835672 + }, + "m_numPrimaryColors": { + "type": "int", + "id": 20, + "offset": 428, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 981103872 + }, + "m_numSecondaryColors": { + "type": "int", + "id": 21, + "offset": 432, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1310416868 + }, + "m_numPatterns": { + "type": "int", + "id": 22, + "offset": 436, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 953162171 + }, + "m_school": { + "type": "std::string", + "id": 23, + "offset": 392, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2438566051 + }, + "m_arenaPointCost": { + "type": "int", + "id": 24, + "offset": 440, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1819621796 + }, + "m_pvpCurrencyCost": { + "type": "int", + "id": 25, + "offset": 444, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 645595444 + }, + "m_pvpTourneyCurrencyCost": { + "type": "int", + "id": 26, + "offset": 448, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 517874954 + }, + "m_rank": { + "type": "int", + "id": 27, + "offset": 424, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 219803942 + }, + "m_boyIconIndex": { + "type": "int", + "id": 28, + "offset": 452, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 802140453 + }, + "m_girlIconIndex": { + "type": "int", + "id": 29, + "offset": 456, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 832706793 + }, + "m_leashOffsetOverride": { + "type": "class SharedPointer", + "id": 30, + "offset": 464, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1692586788 + }, + "m_rarity": { + "type": "enum RarityType", + "id": 31, + "offset": 460, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2253792108, + "enum_options": { + "RT_COMMON": 0, + "RT_UNCOMMON": 1, + "RT_RARE": 2, + "RT_ULTRARARE": 3, + "RT_EPIC": 4 + } + }, + "m_currencyType": { + "type": "enum CurrencyTemplate::CurrencyTypes", + "id": 32, + "offset": 480, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 461057706, + "enum_options": { + "CURRENCY_GOLD": 0, + "CURRENCY_ARENATICKETS": 1, + "CURRENCY_CROWNS": 2, + "CURRENCY_EC1": 3, + "CURRENCY_EC2": 4, + "CURRENCY_PVPCUR": 5, + "CURRENCY_PVPTOURNEYCUR": 6, + "CURRENCY_LOYALTYTOKENS": 7 + } + } + } + }, + "1338561599": { + "name": "class WizardClientTutorial", + "bases": [ + "ClientTutorial", + "PropertyClass" + ], + "hash": 1338561599, + "properties": { + "m_stage": { + "type": "unsigned short", + "id": 0, + "offset": 74, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": true, + "pointer": false, + "hash": 1363685500 + } + } + }, + "61741842": { + "name": "class CountBasedSpellEffect", + "bases": [ + "SpellEffect", + "PropertyClass" + ], + "hash": 61741842, + "properties": { + "m_effectType": { + "type": "enum SpellEffect::kSpellEffects", + "id": 0, + "offset": 72, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2578255295, + "enum_options": { + "kInvalidSpellEffect": 0, + "kDamage": 1, + "kDamageNoCrit": 2, + "kHeal": 3, + "kHealPercent": 4, + "kSetHealPercent": 113, + "kStealHealth": 5, + "kReduceOverTime": 6, + "kDetonateOverTime": 7, + "kPushCharm": 8, + "kStealCharm": 9, + "kPushWard": 10, + "kStealWard": 11, + "kPushOverTime": 12, + "kStealOverTime": 13, + "kRemoveCharm": 14, + "kRemoveWard": 15, + "kRemoveOverTime": 16, + "kRemoveAura": 17, + "kSwapAll": 18, + "kSwapCharm": 19, + "kSwapWard": 20, + "kSwapOverTime": 21, + "kModifyIncomingDamage": 22, + "kModifyIncomingDamageFlat": 119, + "kMaximumIncomingDamage": 23, + "kModifyIncomingHeal": 24, + "kModifyIncomingHealFlat": 118, + "kModifyIncomingDamageType": 25, + "kModifyIncomingArmorPiercing": 26, + "kModifyOutgoingDamage": 27, + "kModifyOutgoingDamageFlat": 121, + "kModifyOutgoingHeal": 28, + "kModifyOutgoingHealFlat": 120, + "kModifyOutgoingDamageType": 29, + "kModifyOutgoingArmorPiercing": 30, + "kModifyOutgoingStealHealth": 31, + "kModifyIncomingStealHealth": 32, + "kBounceNext": 33, + "kBouncePrevious": 34, + "kBounceBack": 35, + "kBounceAll": 36, + "kAbsorbDamage": 37, + "kAbsorbHeal": 38, + "kModifyAccuracy": 39, + "kDispel": 40, + "kConfusion": 41, + "kCloakedCharm": 42, + "kCloakedWard": 43, + "kStunResist": 44, + "kClue": 111, + "kPipConversion": 45, + "kCritBoost": 46, + "kCritBlock": 47, + "kPolymorph": 48, + "kDelayCast": 49, + "kModifyCardCloak": 50, + "kModifyCardDamage": 51, + "kModifyCardAccuracy": 53, + "kModifyCardMutation": 54, + "kModifyCardRank": 55, + "kModifyCardArmorPiercing": 56, + "kSummonCreature": 65, + "kTeleportPlayer": 66, + "kStun": 67, + "kDampen": 68, + "kReshuffle": 69, + "kMindControl": 70, + "kModifyPips": 71, + "kModifyPowerPips": 72, + "kModifyShadowPips": 73, + "kModifyHate": 74, + "kDamageOverTime": 75, + "kHealOverTime": 76, + "kModifyPowerPipChance": 77, + "kModifyRank": 78, + "kStunBlock": 79, + "kRevealCloak": 80, + "kInstantKill": 81, + "kAfterlife": 82, + "kDeferredDamage": 83, + "kDamagePerTotalPipPower": 84, + "kModifyCardHeal": 52, + "kModifyCardCharm": 57, + "kModifyCardWard": 58, + "kModifyCardOutgoingDamage": 59, + "kModifyCardOutgoingAccuracy": 60, + "kModifyCardOutgoingHeal": 61, + "kModifyCardOutgoingArmorPiercing": 62, + "kModifyCardIncomingDamage": 63, + "kModifyCardAbsorbDamage": 64, + "kCloakedWardNoRemove": 86, + "kAddCombatTriggerList": 87, + "kRemoveCombatTriggerList": 88, + "kBacklashDamage": 89, + "kModifyBacklash": 90, + "kIntercept": 91, + "kShadowSelf": 92, + "kShadowCreature": 93, + "kModifyShadowCreatureLevel": 94, + "kSelectShadowCreatureAttackTarget": 95, + "kShadowDecrementTurn": 96, + "kCritBoostSchoolSpecific": 97, + "kSpawnCreature": 98, + "kUnPolymorph": 99, + "kPowerPipConversion": 100, + "kProtectCardBeneficial": 101, + "kProtectCardHarmful": 102, + "kProtectBeneficial": 103, + "kProtectHarmful": 104, + "kDivideDamage": 105, + "kCollectEssence": 106, + "kKillCreature": 107, + "kDispelBlock": 108, + "kConfusionBlock": 109, + "kModifyPipRoundRate": 110, + "kMaxHealthDamage": 112, + "kUntargetable": 114, + "kMakeTargetable": 115, + "kForceTargetable": 116, + "kRemoveStunBlock": 117, + "kExitCombat": 122, + "kSuspendPips": 123, + "kResumePips": 124, + "kAutoPass": 125, + "kStopAutoPass": 126, + "kVanish": 127, + "kStopVanish": 128, + "kMaxHealthHeal": 129, + "kHealByWard": 130, + "kTaunt": 131, + "kPacify": 132, + "kRemoveTargetRestriction": 133, + "kConvertHangingEffect": 134, + "kAddSpellToDeck": 135, + "kAddSpellToHand": 136, + "kModifyIncomingDamageOverTime": 137, + "kModifyIncomingHealOverTime": 138, + "kModifyCardDamagebyRank": 139, + "kPushConvertedCharm": 140, + "kStealConvertedCharm": 141, + "kPushConvertedWard": 142, + "kStealConvertedWard": 143, + "kPushConvertedOverTime": 144, + "kStealConvertedOverTime": 145, + "kRemoveConvertedCharm": 146, + "kRemoveConvertedWard": 147, + "kRemoveConvertedOverTime": 148, + "kModifyOverTimeDuration": 149, + "kModifySchoolPips": 150 + } + }, + "m_effectParam": { + "type": "int", + "id": 1, + "offset": 76, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 357920024 + }, + "m_disposition": { + "type": "enum SpellEffect::kHangingDisposition", + "id": 2, + "offset": 80, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1904841031, + "enum_options": { + "kBoth": 0, + "kBeneficial": 1, + "kHarmful": 2 + } + }, + "m_sDamageType": { + "type": "std::string", + "id": 3, + "offset": 88, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2501054223 + }, + "m_damageType": { + "type": "unsigned int", + "id": 4, + "offset": 84, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 737882766 + }, + "m_pipNum": { + "type": "int", + "id": 5, + "offset": 128, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 830827539 + }, + "m_actNum": { + "type": "int", + "id": 6, + "offset": 132, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 236824866 + }, + "m_effectTarget": { + "type": "enum SpellEffect::kEffectTarget", + "id": 7, + "offset": 140, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2458940523, + "enum_options": { + "kInvalidTarget": 0, + "kSpell": 1, + "kSpecificSpells": 2, + "kGlobal": 3, + "kEnemyTeam": 4, + "kEnemyTeamAllAtOnce": 5, + "kFriendlyTeam": 6, + "kFriendlyTeamAllAtOnce": 7, + "kEnemySingle": 8, + "kFriendlySingle": 9, + "kMinion": 10, + "kFriendlyMinion": 17, + "kEnemyMinion": 18, + "kSelf": 11, + "kAtLeastOneEnemy": 13, + "kPreselectedEnemySingle": 12, + "kMultiTargetEnemy": 14, + "kMultiTargetFriendly": 15, + "kFriendlySingleNotMe": 16 + } + }, + "m_numRounds": { + "type": "int", + "id": 8, + "offset": 144, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1229753829 + }, + "m_paramPerRound": { + "type": "int", + "id": 9, + "offset": 148, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 683234234 + }, + "m_healModifier": { + "type": "float", + "id": 10, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1317921248, + "enum_options": { + "__DEFAULT": "1.0" + } + }, + "m_spellTemplateID": { + "type": "unsigned int", + "id": 11, + "offset": 120, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 585567702 + }, + "m_enchantmentSpellTemplateID": { + "type": "unsigned int", + "id": 12, + "offset": 124, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 246955115 + }, + "m_act": { + "type": "bool", + "id": 13, + "offset": 136, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 269510283 + }, + "m_cloaked": { + "type": "bool", + "id": 14, + "offset": 157, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 7349510 + }, + "m_bypassProtection": { + "type": "bool", + "id": 15, + "offset": 159, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1657138252 + }, + "m_armorPiercingParam": { + "type": "int", + "id": 16, + "offset": 160, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2025530205 + }, + "m_chancePerTarget": { + "type": "int", + "id": 17, + "offset": 164, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 845426794 + }, + "m_protected": { + "type": "bool", + "id": 18, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1445655037 + }, + "m_converted": { + "type": "bool", + "id": 19, + "offset": 169, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1590428797 + }, + "m_rank": { + "type": "int", + "id": 20, + "offset": 208, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 219803942 + }, + "m_mode": { + "type": "enum CountBasedSpellEffect::CountBasedType", + "id": 21, + "offset": 224, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2262055551, + "enum_options": { + "CBT_SpellKills": 0, + "CBT_SpellCrits": 1 + } + }, + "m_effectList": { + "type": "class SharedPointer", + "id": 22, + "offset": 232, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 707154804 + } + } + }, + "925689198": { + "name": "class WhirlyBurlyBehavior*", + "bases": [ + "WhirlyBurlyBehaviorBase", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 925689198, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + } + } + }, + "1338561559": { + "name": "class WizardClientTutorial*", + "bases": [ + "ClientTutorial", + "PropertyClass" + ], + "hash": 1338561559, + "properties": { + "m_stage": { + "type": "unsigned short", + "id": 0, + "offset": 74, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": true, + "pointer": false, + "hash": 1363685500 + } + } + }, + "60949086": { + "name": "class SharedPointer", + "bases": [ + "CreateHangingEffectActorCinematicAction", + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 60949086, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + }, + "m_cloaked": { + "type": "bool", + "id": 2, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 7349510 + }, + "m_newActorName": { + "type": "std::string", + "id": 3, + "offset": 128, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2029131039 + } + } + }, + "925408749": { + "name": "class WhirlyBurlyBehaviorBase", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 925408749, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + } + } + }, + "1771497150": { + "name": "class ColorPickerSWF*", + "bases": [ + "Window", + "PropertyClass" + ], + "hash": 1771497150, + "properties": { + "m_sName": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306437263 + }, + "m_Children": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621225959 + }, + "m_Style": { + "type": "unsigned int", + "id": 2, + "offset": 152, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "SCALE_CHILDREN": 2, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "FOCUS_LOCKED": 64, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152 + } + }, + "m_Flags": { + "type": "unsigned int", + "id": 3, + "offset": 156, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } + }, + "m_Window": { + "type": "class Rect", + "id": 4, + "offset": 160, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3105139380 + }, + "m_fTargetAlpha": { + "type": "float", + "id": 5, + "offset": 212, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1809129834 + }, + "m_fDisabledAlpha": { + "type": "float", + "id": 6, + "offset": 216, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1389987675 + }, + "m_fAlpha": { + "type": "float", + "id": 7, + "offset": 208, + "flags": 65671, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 482130755 + }, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3623628394 + }, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2102211316 + }, + "m_sScript": { + "type": "std::string", + "id": 10, + "offset": 352, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1846695875 + }, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3389835433 + }, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547159940 + }, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513510520 + }, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3091503757 + } + } + }, + "60459490": { + "name": "class ClientSwapShadowMaterialActorCinematicAction*", + "bases": [ + "SwapShadowMaterialActorCinematicAction", + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 60459490, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + } + } + }, + "924908293": { + "name": "class ControlList::Item", + "bases": [ + "PropertyClass" + ], + "hash": 924908293, + "properties": { + "m_sString": { + "type": "std::wstring", + "id": 0, + "offset": 72, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1662841794 + }, + "m_sTooltip": { + "type": "std::wstring", + "id": 1, + "offset": 104, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1680475798 + } + } + }, + "1770449266": { + "name": "class SharedPointer", + "bases": [ + "ObjectRemapBehavior", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1770449266, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + } + } + }, + "60409350": { + "name": "class SharedPointer", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 60409350, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + }, + "m_walkableCollisionFilename": { + "type": "std::string", + "id": 1, + "offset": 120, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2223282859 + }, + "m_solidCollisionFilename": { + "type": "std::string", + "id": 2, + "offset": 152, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3292753187 + }, + "m_clickableCollisionFilename": { + "type": "std::string", + "id": 3, + "offset": 184, + "flags": 131335, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1964485570 + }, + "m_bAutoClickBox": { + "type": "bool", + "id": 4, + "offset": 216, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 13289565 + }, + "m_bDisableCollision": { + "type": "bool", + "id": 5, + "offset": 217, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2086036629 + }, + "m_bClientOnly": { + "type": "bool", + "id": 6, + "offset": 218, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1918653686 + } + } + }, + "1338612690": { + "name": "class ClientPlayerAggroBehavior", + "bases": [ + "PlayerAggroBehavior", + "AggroBehavior", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1338612690, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + } + } + }, + "1768274090": { + "name": "class SharedPointer", + "bases": [ + "TournamentUpdate", + "PropertyClass" + ], + "hash": 1768274090, + "properties": { + "m_teamID": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 982102220 + } + } + }, + "925227714": { + "name": "class ClassProjectPlayerProgressList*", + "bases": [ + "PropertyClass" + ], + "hash": 925227714, + "properties": { + "m_playerProgressList": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1898798624 + } + } + }, + "1767682437": { + "name": "class PhysicsBehaviorTemplate*", + "bases": [ + "CollisionBehaviorTemplate", + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 1767682437, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + }, + "m_walkableCollisionFilename": { + "type": "std::string", + "id": 1, + "offset": 120, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2223282859 + }, + "m_solidCollisionFilename": { + "type": "std::string", + "id": 2, + "offset": 152, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3292753187 + }, + "m_clickableCollisionFilename": { + "type": "std::string", + "id": 3, + "offset": 184, + "flags": 131335, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1964485570 + }, + "m_bAutoClickBox": { + "type": "bool", + "id": 4, + "offset": 216, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 13289565 + }, + "m_bDisableCollision": { + "type": "bool", + "id": 5, + "offset": 217, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2086036629 + }, + "m_bClientOnly": { + "type": "bool", + "id": 6, + "offset": 218, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1918653686 + }, + "m_nSimulationMethod": { + "type": "enum PhysicsBehaviorTemplate::SimulationMethod", + "id": 7, + "offset": 224, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1994289470, + "enum_options": { + "SM_CLIENT": 0, + "SM_SERVER_CLIENT": 1, + "__DEFAULT": "SM_CLIENT" + } + }, + "m_bEnableGravity": { + "type": "bool", + "id": 8, + "offset": 228, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2096165250, + "enum_options": { + "__DEFAULT": 1 + } + }, + "m_bEnableDamping": { + "type": "bool", + "id": 9, + "offset": 229, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1865442172, + "enum_options": { + "__DEFAULT": 0 + } + }, + "m_bStartsEnabled": { + "type": "bool", + "id": 10, + "offset": 230, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 648666209, + "enum_options": { + "__DEFAULT": 1 + } + }, + "m_fDampingX": { + "type": "float", + "id": 11, + "offset": 232, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 360421173 + }, + "m_fDampingY": { + "type": "float", + "id": 12, + "offset": 236, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 360421174 + }, + "m_fDampingZ": { + "type": "float", + "id": 13, + "offset": 240, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 360421175 + }, + "m_fAngDampingX": { + "type": "float", + "id": 14, + "offset": 244, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 725080299 + }, + "m_fAngDampingY": { + "type": "float", + "id": 15, + "offset": 248, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 725080300 + }, + "m_fAngDampingZ": { + "type": "float", + "id": 16, + "offset": 252, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 725080301 + }, + "m_fCenterX": { + "type": "float", + "id": 17, + "offset": 256, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1763110710 + }, + "m_fCenterY": { + "type": "float", + "id": 18, + "offset": 260, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1763110711 + }, + "m_fCenterZ": { + "type": "float", + "id": 19, + "offset": 264, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1763110712 + }, + "m_massShapes": { + "type": "class MassShapeTemplate*", + "id": 20, + "offset": 272, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1089760892 + } + } + }, + "1338869273": { + "name": "class PositionalStateSoundBehavior", + "bases": [ + "PositionalSoundBehavior", + "SoundBehavior", + "AreaBehavior", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1338869273, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_radius": { + "type": "float", + "id": 1, + "offset": 116, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 989410271 + }, + "m_category": { + "type": "enum AudioCategory", + "id": 2, + "offset": 124, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2951251982, + "enum_options": { + "AudioCategory_Irrelevent": 0, + "AudioCategory_Accoustic": 1, + "AudioCategory_Noise": 2, + "AudioCategory_Music": 3 + } + }, + "m_exclusive": { + "type": "bool", + "id": 3, + "offset": 128, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 824383403 + }, + "m_playList": { + "type": "class PlayList", + "id": 4, + "offset": 176, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2061221957 + }, + "m_volume": { + "type": "float", + "id": 5, + "offset": 304, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1162855023 + }, + "m_loopCount": { + "type": "int", + "id": 6, + "offset": 308, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 865634717 + }, + "m_minimumFalloff": { + "type": "float", + "id": 7, + "offset": 328, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 355697197 + }, + "m_maximumFalloff": { + "type": "float", + "id": 8, + "offset": 332, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2210192367 + }, + "m_animDriven": { + "type": "bool", + "id": 9, + "offset": 392, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 398394720 + }, + "m_inverted": { + "type": "bool", + "id": 10, + "offset": 397, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1034821044 + }, + "m_animationName": { + "type": "std::string", + "id": 11, + "offset": 512, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3393414044 + } + } + }, + "1768017235": { + "name": "class CastleMagicPlayersInZone*", + "bases": [ + "PropertyClass" + ], + "hash": 1768017235, + "properties": { + "m_playersInZoneList": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1367168135 + } + } + }, + "61069668": { + "name": "class SharedPointer", + "bases": [ + "BaseZone::BaseSimulation", + "PropertyClass" + ], + "hash": 61069668, + "properties": {} + }, + "925503072": { + "name": "class SharedPointer", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 925503072, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + }, + "m_assetName": { + "type": "std::string", + "id": 1, + "offset": 120, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513131580 + }, + "m_proxyName": { + "type": "std::string", + "id": 2, + "offset": 152, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3120358366 + }, + "m_height": { + "type": "float", + "id": 3, + "offset": 184, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 602977104 + }, + "m_bStaticObject": { + "type": "bool", + "id": 4, + "offset": 188, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 108091444 + }, + "m_bCastsShadow": { + "type": "bool", + "id": 5, + "offset": 189, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 652868121 + }, + "m_bFadesIn": { + "type": "bool", + "id": 6, + "offset": 190, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 263337711, + "enum_options": { + "__DEFAULT": 1 + } + }, + "m_opacity": { + "type": "float", + "id": 7, + "offset": 192, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 700308464, + "enum_options": { + "__DEFAULT": 1 + } + }, + "m_bFadesOut": { + "type": "bool", + "id": 8, + "offset": 196, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 17988464, + "enum_options": { + "__DEFAULT": 1 + } + }, + "m_bPortalExcluded": { + "type": "bool", + "id": 9, + "offset": 197, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 239086293 + }, + "m_scale": { + "type": "float", + "id": 10, + "offset": 200, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 899693439, + "enum_options": { + "__DEFAULT": 1 + } + }, + "m_bCanBeHiddenByCamera": { + "type": "bool", + "id": 11, + "offset": 204, + "flags": 263, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 185252414 + }, + "m_nLightType": { + "type": "enum RenderBehaviorTemplate::LightingType", + "id": 12, + "offset": 208, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2027385184, + "enum_options": { + "None": 0, + "Char": 1, + "Env": 2 + } + }, + "m_shadowAssetName": { + "type": "std::string", + "id": 13, + "offset": 216, + "flags": 131335, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1844059970 + }, + "m_enableReqs": { + "type": "class SharedPointer", + "id": 14, + "offset": 248, + "flags": 263, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3158020443 + } + } + }, + "925543464": { + "name": "class SharedPointer", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 925543464, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + } + } + }, + "1341351257": { + "name": "class FishTournamentOption*", + "bases": [ + "ServiceOptionBase", + "PropertyClass" + ], + "hash": 1341351257, + "properties": { + "m_serviceName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2206028813 + }, + "m_iconKey": { + "type": "std::string", + "id": 1, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2457138637 + }, + "m_displayKey": { + "type": "std::string", + "id": 2, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3023276954 + }, + "m_serviceIndex": { + "type": "unsigned int", + "id": 3, + "offset": 204, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2103126710 + }, + "m_forceInteract": { + "type": "bool", + "id": 4, + "offset": 200, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1705789564 + } + } + }, + "1769926063": { + "name": "class std::list >", + "bases": [], + "hash": 1769926063, + "properties": {} + }, + "62518068": { + "name": "class std::vector >", + "bases": [], + "hash": 62518068, + "properties": {} + }, + "1341116214": { + "name": "class SharedPointer", + "bases": [ + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 1341116214, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + } + } + }, + "62254295": { + "name": "class SharedPointer", + "bases": [ + "CastleTourTeleportInfo", + "PropertyClass" + ], + "hash": 62254295, + "properties": { + "m_houseTemplateID": { + "type": "unsigned int", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2326023642 + }, + "m_structureTemplateID": { + "type": "unsigned int", + "id": 1, + "offset": 76, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1037379271 + }, + "m_lotInstanceGID": { + "type": "gid", + "id": 2, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2010711536 + }, + "m_structureInstanceGID": { + "type": "gid", + "id": 3, + "offset": 88, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2083588818 + }, + "m_owningCharacterGID": { + "type": "gid", + "id": 4, + "offset": 96, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 316234091 + }, + "m_packedName": { + "type": "std::string", + "id": 5, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1805208228 + }, + "m_gameType": { + "type": "unsigned char", + "id": 6, + "offset": 136, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2369894028 + }, + "m_subGameType": { + "type": "unsigned char", + "id": 7, + "offset": 137, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2559216502 + } + } + }, + "1339307054": { + "name": "class WorldWindow", + "bases": [ + "Window", + "PropertyClass" + ], + "hash": 1339307054, + "properties": { + "m_sName": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306437263 + }, + "m_Children": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621225959 + }, + "m_Style": { + "type": "unsigned int", + "id": 2, + "offset": 152, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "SCALE_CHILDREN": 2, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "FOCUS_LOCKED": 64, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152 + } + }, + "m_Flags": { + "type": "unsigned int", + "id": 3, + "offset": 156, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } + }, + "m_Window": { + "type": "class Rect", + "id": 4, + "offset": 160, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3105139380 + }, + "m_fTargetAlpha": { + "type": "float", + "id": 5, + "offset": 212, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1809129834 + }, + "m_fDisabledAlpha": { + "type": "float", + "id": 6, + "offset": 216, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1389987675 + }, + "m_fAlpha": { + "type": "float", + "id": 7, + "offset": 208, + "flags": 65671, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 482130755 + }, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3623628394 + }, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2102211316 + }, + "m_sScript": { + "type": "std::string", + "id": 10, + "offset": 352, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1846695875 + }, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3389835433 + }, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547159940 + }, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513510520 + }, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3091503757 + } + } + }, + "61742610": { + "name": "class CountBasedSpellEffect*", + "bases": [ + "SpellEffect", + "PropertyClass" + ], + "hash": 61742610, + "properties": { + "m_effectType": { + "type": "enum SpellEffect::kSpellEffects", + "id": 0, + "offset": 72, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2578255295, + "enum_options": { + "kInvalidSpellEffect": 0, + "kDamage": 1, + "kDamageNoCrit": 2, + "kHeal": 3, + "kHealPercent": 4, + "kSetHealPercent": 113, + "kStealHealth": 5, + "kReduceOverTime": 6, + "kDetonateOverTime": 7, + "kPushCharm": 8, + "kStealCharm": 9, + "kPushWard": 10, + "kStealWard": 11, + "kPushOverTime": 12, + "kStealOverTime": 13, + "kRemoveCharm": 14, + "kRemoveWard": 15, + "kRemoveOverTime": 16, + "kRemoveAura": 17, + "kSwapAll": 18, + "kSwapCharm": 19, + "kSwapWard": 20, + "kSwapOverTime": 21, + "kModifyIncomingDamage": 22, + "kModifyIncomingDamageFlat": 119, + "kMaximumIncomingDamage": 23, + "kModifyIncomingHeal": 24, + "kModifyIncomingHealFlat": 118, + "kModifyIncomingDamageType": 25, + "kModifyIncomingArmorPiercing": 26, + "kModifyOutgoingDamage": 27, + "kModifyOutgoingDamageFlat": 121, + "kModifyOutgoingHeal": 28, + "kModifyOutgoingHealFlat": 120, + "kModifyOutgoingDamageType": 29, + "kModifyOutgoingArmorPiercing": 30, + "kModifyOutgoingStealHealth": 31, + "kModifyIncomingStealHealth": 32, + "kBounceNext": 33, + "kBouncePrevious": 34, + "kBounceBack": 35, + "kBounceAll": 36, + "kAbsorbDamage": 37, + "kAbsorbHeal": 38, + "kModifyAccuracy": 39, + "kDispel": 40, + "kConfusion": 41, + "kCloakedCharm": 42, + "kCloakedWard": 43, + "kStunResist": 44, + "kClue": 111, + "kPipConversion": 45, + "kCritBoost": 46, + "kCritBlock": 47, + "kPolymorph": 48, + "kDelayCast": 49, + "kModifyCardCloak": 50, + "kModifyCardDamage": 51, + "kModifyCardAccuracy": 53, + "kModifyCardMutation": 54, + "kModifyCardRank": 55, + "kModifyCardArmorPiercing": 56, + "kSummonCreature": 65, + "kTeleportPlayer": 66, + "kStun": 67, + "kDampen": 68, + "kReshuffle": 69, + "kMindControl": 70, + "kModifyPips": 71, + "kModifyPowerPips": 72, + "kModifyShadowPips": 73, + "kModifyHate": 74, + "kDamageOverTime": 75, + "kHealOverTime": 76, + "kModifyPowerPipChance": 77, + "kModifyRank": 78, + "kStunBlock": 79, + "kRevealCloak": 80, + "kInstantKill": 81, + "kAfterlife": 82, + "kDeferredDamage": 83, + "kDamagePerTotalPipPower": 84, + "kModifyCardHeal": 52, + "kModifyCardCharm": 57, + "kModifyCardWard": 58, + "kModifyCardOutgoingDamage": 59, + "kModifyCardOutgoingAccuracy": 60, + "kModifyCardOutgoingHeal": 61, + "kModifyCardOutgoingArmorPiercing": 62, + "kModifyCardIncomingDamage": 63, + "kModifyCardAbsorbDamage": 64, + "kCloakedWardNoRemove": 86, + "kAddCombatTriggerList": 87, + "kRemoveCombatTriggerList": 88, + "kBacklashDamage": 89, + "kModifyBacklash": 90, + "kIntercept": 91, + "kShadowSelf": 92, + "kShadowCreature": 93, + "kModifyShadowCreatureLevel": 94, + "kSelectShadowCreatureAttackTarget": 95, + "kShadowDecrementTurn": 96, + "kCritBoostSchoolSpecific": 97, + "kSpawnCreature": 98, + "kUnPolymorph": 99, + "kPowerPipConversion": 100, + "kProtectCardBeneficial": 101, + "kProtectCardHarmful": 102, + "kProtectBeneficial": 103, + "kProtectHarmful": 104, + "kDivideDamage": 105, + "kCollectEssence": 106, + "kKillCreature": 107, + "kDispelBlock": 108, + "kConfusionBlock": 109, + "kModifyPipRoundRate": 110, + "kMaxHealthDamage": 112, + "kUntargetable": 114, + "kMakeTargetable": 115, + "kForceTargetable": 116, + "kRemoveStunBlock": 117, + "kExitCombat": 122, + "kSuspendPips": 123, + "kResumePips": 124, + "kAutoPass": 125, + "kStopAutoPass": 126, + "kVanish": 127, + "kStopVanish": 128, + "kMaxHealthHeal": 129, + "kHealByWard": 130, + "kTaunt": 131, + "kPacify": 132, + "kRemoveTargetRestriction": 133, + "kConvertHangingEffect": 134, + "kAddSpellToDeck": 135, + "kAddSpellToHand": 136, + "kModifyIncomingDamageOverTime": 137, + "kModifyIncomingHealOverTime": 138, + "kModifyCardDamagebyRank": 139, + "kPushConvertedCharm": 140, + "kStealConvertedCharm": 141, + "kPushConvertedWard": 142, + "kStealConvertedWard": 143, + "kPushConvertedOverTime": 144, + "kStealConvertedOverTime": 145, + "kRemoveConvertedCharm": 146, + "kRemoveConvertedWard": 147, + "kRemoveConvertedOverTime": 148, + "kModifyOverTimeDuration": 149, + "kModifySchoolPips": 150 + } + }, + "m_effectParam": { + "type": "int", + "id": 1, + "offset": 76, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 357920024 + }, + "m_disposition": { + "type": "enum SpellEffect::kHangingDisposition", + "id": 2, + "offset": 80, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1904841031, + "enum_options": { + "kBoth": 0, + "kBeneficial": 1, + "kHarmful": 2 + } + }, + "m_sDamageType": { + "type": "std::string", + "id": 3, + "offset": 88, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2501054223 + }, + "m_damageType": { + "type": "unsigned int", + "id": 4, + "offset": 84, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 737882766 + }, + "m_pipNum": { + "type": "int", + "id": 5, + "offset": 128, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 830827539 + }, + "m_actNum": { + "type": "int", + "id": 6, + "offset": 132, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 236824866 + }, + "m_effectTarget": { + "type": "enum SpellEffect::kEffectTarget", + "id": 7, + "offset": 140, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2458940523, + "enum_options": { + "kInvalidTarget": 0, + "kSpell": 1, + "kSpecificSpells": 2, + "kGlobal": 3, + "kEnemyTeam": 4, + "kEnemyTeamAllAtOnce": 5, + "kFriendlyTeam": 6, + "kFriendlyTeamAllAtOnce": 7, + "kEnemySingle": 8, + "kFriendlySingle": 9, + "kMinion": 10, + "kFriendlyMinion": 17, + "kEnemyMinion": 18, + "kSelf": 11, + "kAtLeastOneEnemy": 13, + "kPreselectedEnemySingle": 12, + "kMultiTargetEnemy": 14, + "kMultiTargetFriendly": 15, + "kFriendlySingleNotMe": 16 + } + }, + "m_numRounds": { + "type": "int", + "id": 8, + "offset": 144, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1229753829 + }, + "m_paramPerRound": { + "type": "int", + "id": 9, + "offset": 148, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 683234234 + }, + "m_healModifier": { + "type": "float", + "id": 10, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1317921248, + "enum_options": { + "__DEFAULT": "1.0" + } + }, + "m_spellTemplateID": { + "type": "unsigned int", + "id": 11, + "offset": 120, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 585567702 + }, + "m_enchantmentSpellTemplateID": { + "type": "unsigned int", + "id": 12, + "offset": 124, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 246955115 + }, + "m_act": { + "type": "bool", + "id": 13, + "offset": 136, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 269510283 + }, + "m_cloaked": { + "type": "bool", + "id": 14, + "offset": 157, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 7349510 + }, + "m_bypassProtection": { + "type": "bool", + "id": 15, + "offset": 159, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1657138252 + }, + "m_armorPiercingParam": { + "type": "int", + "id": 16, + "offset": 160, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2025530205 + }, + "m_chancePerTarget": { + "type": "int", + "id": 17, + "offset": 164, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 845426794 + }, + "m_protected": { + "type": "bool", + "id": 18, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1445655037 + }, + "m_converted": { + "type": "bool", + "id": 19, + "offset": 169, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1590428797 + }, + "m_rank": { + "type": "int", + "id": 20, + "offset": 208, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 219803942 + }, + "m_mode": { + "type": "enum CountBasedSpellEffect::CountBasedType", + "id": 21, + "offset": 224, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2262055551, + "enum_options": { + "CBT_SpellKills": 0, + "CBT_SpellCrits": 1 + } + }, + "m_effectList": { + "type": "class SharedPointer", + "id": 22, + "offset": 232, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 707154804 + } + } + }, + "926875057": { + "name": "class TeamHelpUpdateInfo*", + "bases": [ + "PropertyClass" + ], + "hash": 926875057, + "properties": { + "m_worldList": { + "type": "unsigned int", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 560397361 + } + } + }, + "1338891066": { + "name": "class FixedCamController*", + "bases": [ + "ChaseCamController", + "CameraController", + "PropertyClass" + ], + "hash": 1338891066, + "properties": {} + }, + "1771496990": { + "name": "class ColorPickerSWF", + "bases": [ + "Window", + "PropertyClass" + ], + "hash": 1771496990, + "properties": { + "m_sName": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306437263 + }, + "m_Children": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621225959 + }, + "m_Style": { + "type": "unsigned int", + "id": 2, + "offset": 152, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "SCALE_CHILDREN": 2, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "FOCUS_LOCKED": 64, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152 + } + }, + "m_Flags": { + "type": "unsigned int", + "id": 3, + "offset": 156, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } + }, + "m_Window": { + "type": "class Rect", + "id": 4, + "offset": 160, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3105139380 + }, + "m_fTargetAlpha": { + "type": "float", + "id": 5, + "offset": 212, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1809129834 + }, + "m_fDisabledAlpha": { + "type": "float", + "id": 6, + "offset": 216, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1389987675 + }, + "m_fAlpha": { + "type": "float", + "id": 7, + "offset": 208, + "flags": 65671, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 482130755 + }, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3623628394 + }, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2102211316 + }, + "m_sScript": { + "type": "std::string", + "id": 10, + "offset": 352, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1846695875 + }, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3389835433 + }, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547159940 + }, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513510520 + }, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3091503757 + } + } + }, + "926719469": { + "name": "class WhirlyBurlyBehaviorBase*", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 926719469, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + } + } + }, + "61815511": { + "name": "class ReqSpecificTemplate*", + "bases": [ + "Requirement", + "PropertyClass" + ], + "hash": 61815511, + "properties": { + "m_applyNOT": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1746328074, + "enum_options": { + "__DEFAULT": 0 + } + }, + "m_operator": { + "type": "enum Requirement::Operator", + "id": 1, + "offset": 76, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2672792317, + "enum_options": { + "ROP_AND": 0, + "ROP_OR": 1, + "__DEFAULT": "ROP_AND" + } + }, + "m_templateID": { + "type": "gid", + "id": 2, + "offset": 80, + "flags": 33554439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1075328001 + } + } + }, + "925974974": { + "name": "class BattlegroundSigilTemplate*", + "bases": [ + "CombatSigilTemplate", + "SigilTemplate", + "CoreTemplate", + "PropertyClass" + ], + "hash": 925974974, + "properties": { + "m_behaviors": { + "type": "class BehaviorTemplate*", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1197808594 + }, + "m_sigilName": { + "type": "std::string", + "id": 1, + "offset": 96, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3177657588 + }, + "m_sigilType": { + "type": "std::string", + "id": 2, + "offset": 136, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3177899445 + }, + "m_entryResults": { + "type": "class ResultList*", + "id": 3, + "offset": 184, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3262956108 + }, + "m_requirements": { + "type": "class RequirementList*", + "id": 4, + "offset": 176, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2840985510 + }, + "m_cancelResults": { + "type": "class ResultList*", + "id": 5, + "offset": 192, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3799257120 + }, + "m_completeResults": { + "type": "class ResultList*", + "id": 6, + "offset": 200, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1964258099 + }, + "m_useState": { + "type": "bool", + "id": 7, + "offset": 216, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 683320865 + }, + "m_stateOverride": { + "type": "std::string", + "id": 8, + "offset": 224, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1949715548 + }, + "m_subCircles": { + "type": "class SigilSubCircle*", + "id": 9, + "offset": 256, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2227135493 + }, + "m_engageRadius": { + "type": "float", + "id": 10, + "offset": 304, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1429683718 + }, + "m_battlefieldEffects": { + "type": "class SharedPointer", + "id": 11, + "offset": 312, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1245973515 + }, + "m_playerVictoryCinematic": { + "type": "std::string", + "id": 12, + "offset": 336, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2684536069 + }, + "m_combatMusic": { + "type": "std::string", + "id": 13, + "offset": 368, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3636593682 + }, + "m_prePlanningCinematicOverride": { + "type": "std::string", + "id": 14, + "offset": 400, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2585096390 + }, + "m_planningCinematicOverride": { + "type": "std::string", + "id": 15, + "offset": 432, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3592819999 + }, + "m_shadowThresholdType": { + "type": "enum kShadow_Threshold_Type", + "id": 16, + "offset": 464, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2847763136, + "enum_options": { + "SHADOW_THRESHOLD_MIN": 0, + "SHADOW_THRESHOLD_AVG": 1, + "SHADOW_THRESHOLD_MAX": 2 + } + }, + "m_shadowThresholdFactor": { + "type": "float", + "id": 17, + "offset": 468, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2104355177 + }, + "m_shadowPipRatingFactor": { + "type": "float", + "id": 18, + "offset": 472, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1061434314 + }, + "m_scalarDamagePvP": { + "type": "float", + "id": 19, + "offset": 476, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2195445026 + }, + "m_scalarResistPvP": { + "type": "float", + "id": 20, + "offset": 480, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1947822077 + }, + "m_scalarPiercePvP": { + "type": "float", + "id": 21, + "offset": 484, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 441266907 + }, + "m_scalarDamagePvE": { + "type": "float", + "id": 22, + "offset": 488, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2195445015 + }, + "m_scalarResistPvE": { + "type": "float", + "id": 23, + "offset": 492, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1947822066 + }, + "m_scalarPiercePvE": { + "type": "float", + "id": 24, + "offset": 496, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 441266896 + }, + "m_damageLimitPvP": { + "type": "float", + "id": 25, + "offset": 500, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1990135243 + }, + "m_dK0PvP": { + "type": "float", + "id": 26, + "offset": 504, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 413528556 + }, + "m_dN0PvP": { + "type": "float", + "id": 27, + "offset": 508, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 417086319 + }, + "m_resistLimitPvP": { + "type": "float", + "id": 28, + "offset": 512, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1174512006 + }, + "m_rK0PvP": { + "type": "float", + "id": 29, + "offset": 516, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 961424058 + }, + "m_rN0PvP": { + "type": "float", + "id": 30, + "offset": 520, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 964981821 + }, + "m_damageLimitPvE": { + "type": "float", + "id": 31, + "offset": 524, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1990135232 + }, + "m_dK0PvE": { + "type": "float", + "id": 32, + "offset": 528, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 413528545 + }, + "m_dN0PvE": { + "type": "float", + "id": 33, + "offset": 532, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 417086308 + }, + "m_resistLimitPvE": { + "type": "float", + "id": 34, + "offset": 536, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1174511995 + }, + "m_rK0PvE": { + "type": "float", + "id": 35, + "offset": 540, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 961424047 + }, + "m_rN0PvE": { + "type": "float", + "id": 36, + "offset": 544, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 964981810 + }, + "m_tickRateMS": { + "type": "unsigned int", + "id": 37, + "offset": 552, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 646469284 + }, + "m_playerAggroRange": { + "type": "float", + "id": 38, + "offset": 556, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1776075073 + }, + "m_deathEffect": { + "type": "std::string", + "id": 39, + "offset": 560, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2339494958 + }, + "m_noAggroEffect": { + "type": "std::string", + "id": 40, + "offset": 592, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1645655765 + }, + "m_redTeamStart": { + "type": "std::string", + "id": 41, + "offset": 624, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2958941675 + }, + "m_blueTeamStart": { + "type": "std::string", + "id": 42, + "offset": 656, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2806152280 + }, + "m_redPlaceholdObjectID": { + "type": "unsigned int", + "id": 43, + "offset": 688, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1608575032 + }, + "m_bluePlaceholdObjectID": { + "type": "unsigned int", + "id": 44, + "offset": 692, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1635754917 + } + } + }, + "1338900848": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1338900848, + "properties": { + "m_whirlyBurlyGameList": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1597138179 + } + } + }, + "1772446089": { + "name": "class SharedPointer", + "bases": [ + "UnShadowSelfCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 1772446089, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + } + } + }, + "1771997653": { + "name": "class SoundAcousticsInfo*", + "bases": [ + "SoundInfo", + "ClientObjectInfo", + "CoreObjectInfo", + "PropertyClass" + ], + "hash": 1771997653, + "properties": { + "m_templateID.m_full": { + "type": "unsigned __int64", + "id": 0, + "offset": 72, + "flags": 33554439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 633907631 + }, + "m_nObjectID": { + "type": "unsigned int", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 748496927 + }, + "m_location": { + "type": "class Vector3D", + "id": 2, + "offset": 84, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2239683611 + }, + "m_orientation": { + "type": "class Vector3D", + "id": 3, + "offset": 96, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2344058766 + }, + "m_fScale": { + "type": "float", + "id": 4, + "offset": 108, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 503137701 + }, + "m_zoneTag": { + "type": "std::string", + "id": 5, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3405382643 + }, + "m_startState": { + "type": "std::string", + "id": 6, + "offset": 184, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2166880458 + }, + "m_overrideName": { + "type": "std::string", + "id": 7, + "offset": 120, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1990707228 + }, + "m_globalDynamic": { + "type": "bool", + "id": 8, + "offset": 116, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1951691017 + }, + "m_bUndetectable": { + "type": "bool", + "id": 9, + "offset": 216, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1907454341 + }, + "m_spawnRequirements": { + "type": "class SharedPointer", + "id": 10, + "offset": 224, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2309120870 + }, + "m_loadingType": { + "type": "enum CoreObjectInfo::LoadingType", + "id": 11, + "offset": 112, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3522422550, + "enum_options": { + "STATIC_CLIENT_SERVER": 0, + "STATIC_CLIENT": 1, + "STATIC_SERVER": 2, + "DYNAMIC_SERVER": 3 + } + }, + "m_radius": { + "type": "float", + "id": 12, + "offset": 256, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 989410271 + }, + "m_exclusive": { + "type": "bool", + "id": 13, + "offset": 260, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 824383403 + }, + "m_startActive": { + "type": "bool", + "id": 14, + "offset": 261, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2031339229 + }, + "m_category": { + "type": "enum AudioCategory", + "id": 15, + "offset": 264, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2951251982, + "enum_options": { + "AudioCategory_Irrelevent": 0, + "AudioCategory_Accoustic": 1, + "AudioCategory_Noise": 2, + "AudioCategory_Music": 3 + } + }, + "m_override": { + "type": "int", + "id": 16, + "offset": 268, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 136872410, + "enum_options": { + "OVR_RADIUS": 1, + "OVR_CATEGORY": 2, + "OVR_EXCLUSIVE": 4, + "OVR_SIGNATURE": 64, + "OVR_VOLUME": 8, + "OVR_LOOPCOUNT": 16, + "OVR_ACTIVE": 32, + "OVR_PLAYPROG": 128, + "OVR_PRIORITY": 256, + "OVR_PROGTIME": 512, + "OVR_FILTERSET": 1024 + } + }, + "m_enableReqs": { + "type": "class SharedPointer", + "id": 17, + "offset": 272, + "flags": 263, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3158020443 + }, + "m_effect": { + "type": "enum AccousticSignature", + "id": 18, + "offset": 288, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1284866962, + "enum_options": { + "Generic": 0, + "Padded Cell": 1, + "Room": 2, + "Bath Room": 3, + "Living Room": 4, + "Stone Room": 5, + "Auditorium": 6, + "Concert Hall": 7, + "Cave": 8, + "Arena": 9, + "Hanger": 10, + "Carpeted Hallway": 11, + "Hallway": 12, + "Stone Corridor": 13, + "Alley": 14, + "Forest": 15, + "City": 16, + "Mountains": 17, + "Quarry": 18, + "Plain": 19, + "Parking Lot": 20, + "Sewer Pipe": 21, + "Underwater": 22, + "Drugged": 23, + "Dizzy": 24, + "Psychotic": 25 + } + } + } + }, + "62455761": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 62455761, + "properties": { + "m_teamGID": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 194811347 + }, + "m_bracketTeamID": { + "type": "unsigned int", + "id": 1, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2174957597 + } + } + }, + "1340594963": { + "name": "class SharedPointer", + "bases": [ + "CharacterCreationInfo", + "PropertyClass" + ], + "hash": 1340594963, + "properties": { + "m_templateID": { + "type": "int", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1075344419 + }, + "m_name": { + "type": "std::wstring", + "id": 1, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513345113 + }, + "m_shouldRename": { + "type": "bool", + "id": 2, + "offset": 128, + "flags": 24, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1741266202 + }, + "m_globalID": { + "type": "gid", + "id": 3, + "offset": 120, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 981205014 + }, + "m_userID": { + "type": "gid", + "id": 4, + "offset": 112, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1037989700 + }, + "m_quarantined": { + "type": "bool", + "id": 5, + "offset": 129, + "flags": 24, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 637025007 + }, + "m_avatarBehavior": { + "type": "class SharedPointer", + "id": 6, + "offset": 136, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2884063077 + }, + "m_equipmentInfoList": { + "type": "class SharedPointer", + "id": 7, + "offset": 152, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2373226440 + }, + "m_location": { + "type": "std::string", + "id": 8, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2079561588 + }, + "m_level": { + "type": "int", + "id": 9, + "offset": 200, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 801285362 + }, + "m_world": { + "type": "int", + "id": 10, + "offset": 204, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 814685730 + }, + "m_schoolOfFocus": { + "type": "unsigned int", + "id": 11, + "offset": 208, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 236936682 + }, + "m_nameIndices": { + "type": "unsigned int", + "id": 12, + "offset": 212, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 258521869 + } + } + }, + "1771806448": { + "name": "class SharedPointer", + "bases": [ + "GameEffectTimerSoundTrigger", + "GameEffectTimerTrigger", + "PropertyClass" + ], + "hash": 1771806448, + "properties": { + "m_radius": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 989410271 + }, + "m_triggerT": { + "type": "float", + "id": 1, + "offset": 76, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2138083583 + }, + "m_soundFiles": { + "type": "std::string", + "id": 2, + "offset": 80, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 3585199735 + } + } + }, + "926940388": { + "name": "class ObstacleCourseRevolvingDoorBehaviorTemplate*", + "bases": [ + "ObstacleCourseObstacleBehaviorTemplate", + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 926940388, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + }, + "m_startAngle": { + "type": "float", + "id": 1, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 737826060 + }, + "m_angularVelocity": { + "type": "float", + "id": 2, + "offset": 124, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 412636784 + }, + "m_radius": { + "type": "float", + "id": 3, + "offset": 128, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 989410271 + }, + "m_innerRadius": { + "type": "float", + "id": 4, + "offset": 132, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 686816091 + }, + "m_nearMissRange": { + "type": "float", + "id": 5, + "offset": 136, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2005992806 + }, + "m_nearMissAngleOffset": { + "type": "float", + "id": 6, + "offset": 140, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2062603911 + }, + "m_walls": { + "type": "class Vector3D", + "id": 7, + "offset": 144, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2471997733 + } + } + }, + "1339340657": { + "name": "class SharedPointer", + "bases": [ + "Requirement", + "PropertyClass" + ], + "hash": 1339340657, + "properties": { + "m_applyNOT": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1746328074, + "enum_options": { + "__DEFAULT": 0 + } + }, + "m_operator": { + "type": "enum Requirement::Operator", + "id": 1, + "offset": 76, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2672792317, + "enum_options": { + "ROP_AND": 0, + "ROP_OR": 1, + "__DEFAULT": "ROP_AND" + } + }, + "m_quest": { + "type": "std::string", + "id": 2, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2305471533 + } + } + }, + "64715997": { + "name": "class SharedPointer", + "bases": [], + "hash": 64715997, + "properties": {} + }, + "1772012586": { + "name": "class PvPStatueBehavior", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1772012586, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_targetLeague": { + "type": "std::string", + "id": 1, + "offset": 112, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3312829397 + }, + "m_rank": { + "type": "int", + "id": 2, + "offset": 144, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 219803942 + }, + "m_refreshRateSec": { + "type": "int", + "id": 3, + "offset": 148, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 418402320 + }, + "m_groundOffset": { + "type": "float", + "id": 4, + "offset": 152, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 684524077 + }, + "m_yaw": { + "type": "float", + "id": 5, + "offset": 156, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 357256328 + }, + "m_showNametag": { + "type": "bool", + "id": 6, + "offset": 160, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 584664753 + }, + "m_showInGrace": { + "type": "bool", + "id": 7, + "offset": 161, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1033917517 + }, + "m_showActive": { + "type": "bool", + "id": 8, + "offset": 162, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 685431312 + }, + "m_scale": { + "type": "float", + "id": 9, + "offset": 164, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 899693439 + }, + "m_alpha": { + "type": "float", + "id": 10, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 878686493 + }, + "m_animDelaySec": { + "type": "float", + "id": 11, + "offset": 172, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2131058854 + }, + "m_animChance": { + "type": "float", + "id": 12, + "offset": 176, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 434823806 + }, + "m_animList": { + "type": "std::string", + "id": 13, + "offset": 184, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2531745852 + }, + "m_leagueID": { + "type": "unsigned int", + "id": 14, + "offset": 200, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 692361645 + }, + "m_seasonID": { + "type": "unsigned int", + "id": 15, + "offset": 204, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 535260643 + }, + "m_startTime": { + "type": "unsigned int", + "id": 16, + "offset": 208, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1598371274 + }, + "m_visualBlob": { + "type": "std::string", + "id": 17, + "offset": 216, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1691722510 + } + } + }, + "930151173": { + "name": "class ControlList::Item*", + "bases": [ + "PropertyClass" + ], + "hash": 930151173, + "properties": { + "m_sString": { + "type": "std::wstring", + "id": 0, + "offset": 72, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1662841794 + }, + "m_sTooltip": { + "type": "std::wstring", + "id": 1, + "offset": 104, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1680475798 + } + } + }, + "927825997": { + "name": "class ClientDerbyAffectEffects*", + "bases": [ + "DerbyAffectEffects", + "DerbyEffect", + "PropertyClass" + ], + "hash": 927825997, + "properties": { + "m_buffType": { + "type": "enum DerbyTalentBuffType", + "id": 0, + "offset": 92, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1149251982, + "enum_options": { + "Buff": 0, + "Debuff": 1, + "Neither": 2 + } + }, + "m_kTarget": { + "type": "enum DerbyTargetType", + "id": 1, + "offset": 96, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1807803351, + "enum_options": { + "kTargetInFront": 0, + "kTargetBehind": 1, + "kTargetFirst": 2, + "kTargetSelf": 3, + "kTargetAll": 4, + "kTargetLast": 5 + } + }, + "m_nDuration": { + "type": "int", + "id": 2, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1110167982 + }, + "m_effectID": { + "type": "unsigned int", + "id": 3, + "offset": 88, + "flags": 24, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2347630439 + }, + "m_imageFilename": { + "type": "std::string", + "id": 4, + "offset": 112, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2813328063 + }, + "m_iconIndex": { + "type": "unsigned int", + "id": 5, + "offset": 144, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1265133262 + }, + "m_soundOnActivate": { + "type": "std::string", + "id": 6, + "offset": 152, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1956929714 + }, + "m_soundOnTarget": { + "type": "std::string", + "id": 7, + "offset": 184, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3444214056 + }, + "m_targetParticleEffect": { + "type": "std::string", + "id": 8, + "offset": 216, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3048234723 + }, + "m_overheadMessage": { + "type": "std::string", + "id": 9, + "offset": 248, + "flags": 8388639, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1701018190 + }, + "m_requirements": { + "type": "class RequirementList", + "id": 10, + "offset": 280, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2840988582 + }, + "m_nNumBuffs": { + "type": "int", + "id": 11, + "offset": 376, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1860427310 + }, + "m_nNumDebuffs": { + "type": "int", + "id": 12, + "offset": 380, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 637090007 + } + } + }, + "1341322290": { + "name": "class WinAnimMoveToLocationTime", + "bases": [ + "WinAnimMoveToLocation", + "WindowAnimation", + "PropertyClass" + ], + "hash": 1341322290, + "properties": { + "m_bUseDeepCopy": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 433380635 + }, + "m_targetLocation": { + "type": "class Vector3D", + "id": 1, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2653859938 + }, + "m_fTimeRemaining": { + "type": "float", + "id": 2, + "offset": 100, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1591443014 + }, + "m_fTimeTotal": { + "type": "float", + "id": 3, + "offset": 96, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 661225456 + } + } + }, + "84018378": { + "name": "class SharedPointer", + "bases": [ + "BaseEffectCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 84018378, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_effectRel": { + "type": "enum BaseEffectCinematicAction::kEffectRelative", + "id": 1, + "offset": 80, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2978921287, + "enum_options": { + "kNone": 0, + "kSigil": 1, + "kTarget": 2, + "kSource": 3, + "kActor": 4 + } + }, + "m_namedActor": { + "type": "std::string", + "id": 2, + "offset": 88, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3413532537 + } + } + }, + "927736130": { + "name": "class ClearTopTeamCinematicAction*", + "bases": [ + "CinematicAction", + "PropertyClass" + ], + "hash": 927736130, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_interpDuration": { + "type": "float", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237711951 + } + } + }, + "1774211212": { + "name": "class SharedPointer", + "bases": [ + "ConditionalSpellEffectRequirement", + "Requirement", + "PropertyClass" + ], + "hash": 1774211212, + "properties": { + "m_applyNOT": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1746328074, + "enum_options": { + "__DEFAULT": 0 + } + }, + "m_operator": { + "type": "enum Requirement::Operator", + "id": 1, + "offset": 76, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2672792317, + "enum_options": { + "ROP_AND": 0, + "ROP_OR": 1, + "__DEFAULT": "ROP_AND" + } + }, + "m_targetType": { + "type": "enum ConditionalSpellEffectRequirement::RequirementTarget", + "id": 2, + "offset": 80, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547737902, + "enum_options": { + "RT_Caster": 0, + "RT_Target": 1 + } + }, + "m_disposition": { + "type": "enum SpellEffect::kHangingDisposition", + "id": 3, + "offset": 88, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1904841031, + "enum_options": { + "SpellEffect::kBoth": 0, + "SpellEffect::kBeneficial": 1, + "SpellEffect::kHarmful": 2 + } + }, + "m_minCount": { + "type": "int", + "id": 4, + "offset": 92, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1486503815 + }, + "m_maxCount": { + "type": "int", + "id": 5, + "offset": 96, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 136048585 + } + } + }, + "77139504": { + "name": "class LeashBehavior*", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 77139504, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_ownerGid": { + "type": "gid", + "id": 1, + "offset": 128, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1765088663 + }, + "m_radius": { + "type": "float", + "id": 2, + "offset": 136, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 989410271 + }, + "m_angle": { + "type": "float", + "id": 3, + "offset": 140, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 878748702 + }, + "m_leashType": { + "type": "enum LeashType", + "id": 4, + "offset": 144, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2170708051, + "enum_options": { + "LLT_Rigid": 0, + "LLT_Elastic": 1 + } + }, + "m_alwaysDisplay": { + "type": "bool", + "id": 5, + "offset": 161, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2071781402 + } + } + }, + "1772497408": { + "name": "class MoveBehaviorClient*", + "bases": [ + "MoveBehavior", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1772497408, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_nFlags": { + "type": "unsigned int", + "id": 1, + "offset": 112, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 922328456 + }, + "m_nMoveState": { + "type": "enum MoveState", + "id": 2, + "offset": 116, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1430960270, + "enum_options": { + "MS_WALKING": 0, + "MS_RUNNING": 1, + "MS_SWIMMING": 2, + "MS_FLYING": 3, + "MS_JUMPING": 4, + "MS_FALLING": 5 + } + } + } + }, + "73874081": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 73874081, + "properties": { + "m_includeHats": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 692971815 + }, + "m_includeRobes": { + "type": "bool", + "id": 1, + "offset": 73, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1323347506 + }, + "m_includeBoots": { + "type": "bool", + "id": 2, + "offset": 74, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1304387422 + }, + "m_includeWands": { + "type": "bool", + "id": 3, + "offset": 75, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1328787028 + }, + "m_includeAthames": { + "type": "bool", + "id": 4, + "offset": 76, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1385638394 + }, + "m_includeAmulets": { + "type": "bool", + "id": 5, + "offset": 77, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1127494706 + }, + "m_includeRings": { + "type": "bool", + "id": 6, + "offset": 78, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1323145018 + }, + "m_includeDecks": { + "type": "bool", + "id": 7, + "offset": 79, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1306386529 + }, + "m_includeElixirs": { + "type": "bool", + "id": 8, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1945468375 + } + } + }, + "1342304869": { + "name": "class BattlegroundPlayerStats*", + "bases": [ + "PropertyClass" + ], + "hash": 1342304869, + "properties": { + "m_status": { + "type": "enum BattlegroundPlayerStats::PlayerStatusEnum", + "id": 0, + "offset": 72, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1862714304, + "enum_options": { + "ACTIVE": 0, + "IN_COMBAT": 1, + "DEAD": 2, + "MISSING": 3, + "RED_TEAM": 0, + "BLUE_TEAM": 1 + } + }, + "m_team": { + "type": "enum BattlegroundPlayerStats::PlayerTeamEnum", + "id": 1, + "offset": 76, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1426706772 + }, + "m_packedName": { + "type": "std::string", + "id": 2, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1805208228 + }, + "m_playerID": { + "type": "gid", + "id": 3, + "offset": 112, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1774633426 + }, + "m_polymorphID": { + "type": "unsigned int", + "id": 4, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 702888164 + }, + "m_rating": { + "type": "int", + "id": 5, + "offset": 124, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 899783871 + }, + "m_playerKills": { + "type": "int", + "id": 6, + "offset": 128, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 742064870 + }, + "m_mobKills": { + "type": "int", + "id": 7, + "offset": 132, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 185014199 + }, + "m_autoCaps": { + "type": "int", + "id": 8, + "offset": 136, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1916916346 + }, + "m_combatCaps": { + "type": "int", + "id": 9, + "offset": 140, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 975573175 + }, + "m_deaths": { + "type": "int", + "id": 10, + "offset": 144, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 355961043 + } + } + }, + "70296870": { + "name": "class ModifyPipsCinematicAction*", + "bases": [ + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 70296870, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + } + } + }, + "928184681": { + "name": "class SpawnManager", + "bases": [ + "PropertyClass" + ], + "hash": 928184681, + "properties": { + "m_spawners": { + "type": "class SharedPointer", + "id": 0, + "offset": 144, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 3173126402 + } + } + }, + "1341367036": { + "name": "enum CinematicSoundEmitterInfo::AudioCategory", + "bases": [], + "hash": 1341367036, + "properties": {} + }, + "1773656594": { + "name": "class SharedPointer", + "bases": [ + "CinematicDefTemplate", + "CoreTemplate", + "PropertyClass" + ], + "hash": 1773656594, + "properties": { + "m_behaviors": { + "type": "class BehaviorTemplate*", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1197808594 + }, + "m_nifFile": { + "type": "std::string", + "id": 1, + "offset": 136, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2694762008 + }, + "m_delay": { + "type": "double", + "id": 2, + "offset": 168, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2689597116 + }, + "m_cinematicName": { + "type": "std::string", + "id": 3, + "offset": 96, + "flags": 134217735, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2611527497 + }, + "m_completeEvents": { + "type": "class CinematicEventInfo*", + "id": 4, + "offset": 272, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2945338320 + }, + "m_stateChangeEvents": { + "type": "class CinematicEventInfo*", + "id": 5, + "offset": 304, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1874505374 + }, + "m_stateInteractions": { + "type": "class CinematicInteractInfo*", + "id": 6, + "offset": 336, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1949887389 + }, + "m_targetGameState": { + "type": "std::string", + "id": 7, + "offset": 176, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3607550909 + }, + "m_actorStateSet": { + "type": "std::string", + "id": 8, + "offset": 208, + "flags": 268435463, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1765258049, + "enum_options": { + "__BASECLASS": "ObjStateSet" + } + }, + "m_rootAsset": { + "type": "std::string", + "id": 9, + "offset": 240, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3506101791 + } + } + }, + "68132303": { + "name": "class CSRSpellList*", + "bases": [ + "Window", + "PropertyClass" + ], + "hash": 68132303, + "properties": { + "m_sName": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306437263 + }, + "m_Children": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621225959 + }, + "m_Style": { + "type": "unsigned int", + "id": 2, + "offset": 152, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "SCALE_CHILDREN": 2, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "FOCUS_LOCKED": 64, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152 + } + }, + "m_Flags": { + "type": "unsigned int", + "id": 3, + "offset": 156, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } + }, + "m_Window": { + "type": "class Rect", + "id": 4, + "offset": 160, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3105139380 + }, + "m_fTargetAlpha": { + "type": "float", + "id": 5, + "offset": 212, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1809129834 + }, + "m_fDisabledAlpha": { + "type": "float", + "id": 6, + "offset": 216, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1389987675 + }, + "m_fAlpha": { + "type": "float", + "id": 7, + "offset": 208, + "flags": 65671, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 482130755 + }, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3623628394 + }, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2102211316 + }, + "m_sScript": { + "type": "std::string", + "id": 10, + "offset": 352, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1846695875 + }, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3389835433 + }, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547159940 + }, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513510520 + }, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3091503757 + } + } + }, + "1341351281": { + "name": "class FishTournamentOption", + "bases": [ + "ServiceOptionBase", + "PropertyClass" + ], + "hash": 1341351281, + "properties": { + "m_serviceName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2206028813 + }, + "m_iconKey": { + "type": "std::string", + "id": 1, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2457138637 + }, + "m_displayKey": { + "type": "std::string", + "id": 2, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3023276954 + }, + "m_serviceIndex": { + "type": "unsigned int", + "id": 3, + "offset": 204, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2103126710 + }, + "m_forceInteract": { + "type": "bool", + "id": 4, + "offset": 200, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1705789564 + } + } + }, + "66088876": { + "name": "class GuildAchievementInfo*", + "bases": [ + "PropertyClass" + ], + "hash": 66088876, + "properties": { + "m_displayName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2446900370 + }, + "m_achievementName": { + "type": "std::string", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1754773829 + }, + "m_displayCount": { + "type": "bool", + "id": 2, + "offset": 136, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1245971442 + } + } + }, + "928245849": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 928245849, + "properties": { + "m_name": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1717359772 + }, + "m_params": { + "type": "class SoundFilterParam*", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1984426024 + }, + "m_needsUpdate": { + "type": "bool", + "id": 2, + "offset": 128, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1787634021 + } + } + }, + "66088836": { + "name": "class GuildAchievementInfo", + "bases": [ + "PropertyClass" + ], + "hash": 66088836, + "properties": { + "m_displayName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2446900370 + }, + "m_achievementName": { + "type": "std::string", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1754773829 + }, + "m_displayCount": { + "type": "bool", + "id": 2, + "offset": 136, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1245971442 + } + } + }, + "1775158314": { + "name": "class PvPStatueBehavior*", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1775158314, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_targetLeague": { + "type": "std::string", + "id": 1, + "offset": 112, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3312829397 + }, + "m_rank": { + "type": "int", + "id": 2, + "offset": 144, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 219803942 + }, + "m_refreshRateSec": { + "type": "int", + "id": 3, + "offset": 148, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 418402320 + }, + "m_groundOffset": { + "type": "float", + "id": 4, + "offset": 152, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 684524077 + }, + "m_yaw": { + "type": "float", + "id": 5, + "offset": 156, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 357256328 + }, + "m_showNametag": { + "type": "bool", + "id": 6, + "offset": 160, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 584664753 + }, + "m_showInGrace": { + "type": "bool", + "id": 7, + "offset": 161, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1033917517 + }, + "m_showActive": { + "type": "bool", + "id": 8, + "offset": 162, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 685431312 + }, + "m_scale": { + "type": "float", + "id": 9, + "offset": 164, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 899693439 + }, + "m_alpha": { + "type": "float", + "id": 10, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 878686493 + }, + "m_animDelaySec": { + "type": "float", + "id": 11, + "offset": 172, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2131058854 + }, + "m_animChance": { + "type": "float", + "id": 12, + "offset": 176, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 434823806 + }, + "m_animList": { + "type": "std::string", + "id": 13, + "offset": 184, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2531745852 + }, + "m_leagueID": { + "type": "unsigned int", + "id": 14, + "offset": 200, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 692361645 + }, + "m_seasonID": { + "type": "unsigned int", + "id": 15, + "offset": 204, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 535260643 + }, + "m_startTime": { + "type": "unsigned int", + "id": 16, + "offset": 208, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1598371274 + }, + "m_visualBlob": { + "type": "std::string", + "id": 17, + "offset": 216, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1691722510 + } + } + }, + "1342122568": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1342122568, + "properties": { + "m_bUseDeepCopy": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 433380635 + } + } + }, + "1774565521": { + "name": "class CinematicEventInfo", + "bases": [ + "PropertyClass" + ], + "hash": 1774565521, + "properties": { + "m_event": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2291276253 + }, + "m_newState": { + "type": "std::string", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2153420230 + }, + "m_requiredState": { + "type": "std::string", + "id": 2, + "offset": 136, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2654559709 + } + } + }, + "931419876": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 931419876, + "properties": { + "m_playerGIDList": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 534186837 + }, + "m_playerYawList": { + "type": "unsigned char", + "id": 1, + "offset": 88, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1795637418 + } + } + }, + "1341723296": { + "name": "class PathObjectTemplate*", + "bases": [ + "PropertyClass" + ], + "hash": 1341723296, + "properties": { + "m_id": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2090569797 + }, + "m_name": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1717359772 + }, + "m_nodeIDs": { + "type": "gid", + "id": 2, + "offset": 112, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1430564382 + } + } + }, + "68027735": { + "name": "enum MoveState", + "bases": [], + "hash": 68027735, + "properties": {} + }, + "930874989": { + "name": "class ClientShowPipsCinematicAction*", + "bases": [ + "ShowPipsCinematicAction", + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 930874989, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + }, + "m_newActorName": { + "type": "std::string", + "id": 2, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2029131039 + } + } + }, + "930678381": { + "name": "class ClientShowPipsCinematicAction", + "bases": [ + "ShowPipsCinematicAction", + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 930678381, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + }, + "m_newActorName": { + "type": "std::string", + "id": 2, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2029131039 + } + } + }, + "930389943": { + "name": "class ReqArenaSeasonScore", + "bases": [ + "ReqNumeric", + "Requirement", + "PropertyClass" + ], + "hash": 930389943, + "properties": { + "m_applyNOT": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1746328074, + "enum_options": { + "__DEFAULT": 0 + } + }, + "m_operator": { + "type": "enum Requirement::Operator", + "id": 1, + "offset": 76, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2672792317, + "enum_options": { + "ROP_AND": 0, + "ROP_OR": 1, + "__DEFAULT": "ROP_AND" + } + }, + "m_numericValue": { + "type": "float", + "id": 2, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 521915239 + }, + "m_operatorType": { + "type": "enum ReqNumeric::OPERATOR_TYPE", + "id": 3, + "offset": 84, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2228122961, + "enum_options": { + "OPERATOR_UNKNOWN": 4294967295, + "OPERATOR_EQUALS": 0, + "OPERATOR_GREATER_THAN": 1, + "OPERATOR_LESS_THAN": 2, + "OPERATOR_GREATER_THAN_EQ": 3, + "OPERATOR_LESS_THAN_EQ": 4 + } + }, + "m_tournament": { + "type": "std::string", + "id": 4, + "offset": 88, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2799932264 + } + } + }, + "1783795726": { + "name": "class DynaModDelta", + "bases": [ + "DynaMod", + "PropertyClass" + ], + "hash": 1783795726, + "properties": { + "m_clientTag": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3409856790 + }, + "m_zoneName": { + "type": "std::string", + "id": 1, + "offset": 112, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2171167736 + }, + "m_zoneInstance": { + "type": "gid", + "id": 2, + "offset": 152, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 449538121 + }, + "m_originator": { + "type": "gid", + "id": 3, + "offset": 72, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 709051254 + }, + "m_index": { + "type": "int", + "id": 4, + "offset": 160, + "flags": 30, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 798031442 + }, + "m_zoneID": { + "type": "unsigned int", + "id": 5, + "offset": 144, + "flags": 16, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1440651126 + }, + "m_remove": { + "type": "bool", + "id": 6, + "offset": 176, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 906763969 + }, + "m_state": { + "type": "std::string", + "id": 7, + "offset": 184, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2307803100 + }, + "m_stateID": { + "type": "unsigned int", + "id": 8, + "offset": 216, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1849561019 + } + } + }, + "69371072": { + "name": "class SG_GameAction_DestroyBlock", + "bases": [ + "SG_GameAction", + "PropertyClass" + ], + "hash": 69371072, + "properties": { + "m_target": { + "type": "enum SG_GameAction::SG_Target", + "id": 0, + "offset": 72, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1166870973, + "enum_options": { + "Target_Ball": 0, + "Target_Self": 1, + "Target_Connections": 2, + "__DEFAULT": "Target_Ball" + } + } + } + }, + "1343249825": { + "name": "class MonsterMagicBehaviorTemplate*", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 1343249825, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + } + } + }, + "1778176712": { + "name": "class TextureRemapBehaviorTemplate", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 1778176712, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + } + } + }, + "69371062": { + "name": "class SG_GameAction_DestroyBlock*", + "bases": [ + "SG_GameAction", + "PropertyClass" + ], + "hash": 69371062, + "properties": { + "m_target": { + "type": "enum SG_GameAction::SG_Target", + "id": 0, + "offset": 72, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1166870973, + "enum_options": { + "Target_Ball": 0, + "Target_Self": 1, + "Target_Connections": 2, + "__DEFAULT": "Target_Ball" + } + } + } + }, + "1342590395": { + "name": "class HealthGlobe", + "bases": [ + "StatGlobe", + "ControlSprite", + "Window", + "PropertyClass" + ], + "hash": 1342590395, + "properties": { + "m_sName": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306437263 + }, + "m_Children": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621225959 + }, + "m_Style": { + "type": "unsigned int", + "id": 2, + "offset": 152, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "SCALE_CHILDREN": 2, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "FOCUS_LOCKED": 64, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152 + } + }, + "m_Flags": { + "type": "unsigned int", + "id": 3, + "offset": 156, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648, + "ONE_SHOT": 8388608, + "FLIPPED_HORIZONTAL": 16777216, + "FLIPPED_VERTICAL": 33554432 + } + }, + "m_Window": { + "type": "class Rect", + "id": 4, + "offset": 160, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3105139380 + }, + "m_fTargetAlpha": { + "type": "float", + "id": 5, + "offset": 212, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1809129834 + }, + "m_fDisabledAlpha": { + "type": "float", + "id": 6, + "offset": 216, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1389987675 + }, + "m_fAlpha": { + "type": "float", + "id": 7, + "offset": 208, + "flags": 65671, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 482130755 + }, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3623628394 + }, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2102211316 + }, + "m_sScript": { + "type": "std::string", + "id": 10, + "offset": 352, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1846695875 + }, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3389835433 + }, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547159940 + }, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513510520 + }, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3091503757 + }, + "m_pMaterial": { + "type": "class SharedPointer", + "id": 16, + "offset": 592, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3479277078 + }, + "m_fRotation": { + "type": "float", + "id": 17, + "offset": 608, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1175400173 + }, + "m_Color": { + "type": "class Color", + "id": 18, + "offset": 584, + "flags": 262279, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1753714077 + }, + "m_textColor": { + "type": "class Color", + "id": 19, + "offset": 612, + "flags": 262279, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2528109250 + }, + "m_textComponent": { + "type": "class TextComponent", + "id": 20, + "offset": 616, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3491704390 + }, + "m_amount": { + "type": "int", + "id": 21, + "offset": 800, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 248546638 + } + } + }, + "1776162513": { + "name": "class SharedPointer", + "bases": [ + "RemoveBacklashEffectCinematicAction", + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 1776162513, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + } + } + }, + "68874795": { + "name": "class VisualAttributeBehaviorTemplate*", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 68874795, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + }, + "m_visualAttributeType": { + "type": "enum VisualAttributeType", + "id": 1, + "offset": 120, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2701225082, + "enum_options": { + "VAT_HairStyle": 0, + "VAT_HairColor": 1, + "VAT_FaceStyle": 2, + "VAT_SkinColor": 3, + "VAT_EyeColor": 4, + "VAT_FacePaint": 5, + "VAT_NewEyeColor": 6, + "VAT_NewFaceStyle": 7, + "VAT_NoseStyle": 8, + "VAT_MouthStyle": 9, + "VAT_AccessoryStyle": 10, + "VAT_EyebrowStyle": 11, + "VAT_LipColorStyle": 12, + "VAT_BoyColor": 13, + "VAT_BoyTrimColor": 14, + "VAT_GirlColor": 15, + "VAT_GirlTrimColor": 16 + } + }, + "m_sourceFile": { + "type": "std::string", + "id": 2, + "offset": 128, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2304987980 + }, + "m_referenceFile": { + "type": "std::string", + "id": 3, + "offset": 160, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1866483306 + }, + "m_color": { + "type": "class Color", + "id": 4, + "offset": 192, + "flags": 262151, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1791663549 + }, + "m_equipmentIcon": { + "type": "std::string", + "id": 5, + "offset": 200, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1920035708 + } + } + }, + "930833634": { + "name": "class TeleporterTemplate*", + "bases": [ + "PropertyClass" + ], + "hash": 930833634, + "properties": { + "m_targetZone": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2698931614 + }, + "m_targetLocation": { + "type": "std::string", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2493737915 + }, + "m_location": { + "type": "class Vector3D", + "id": 2, + "offset": 136, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2239683611 + } + } + }, + "1342532259": { + "name": "enum DerbyTerrainTargetType", + "bases": [], + "hash": 1342532259, + "properties": {} + }, + "1775891459": { + "name": "class SharedPointer", + "bases": [ + "CreatePipCinematicActorsFromResult", + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 1775891459, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + }, + "m_newActorName": { + "type": "std::string", + "id": 2, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2029131039 + } + } + }, + "1775751166": { + "name": "class ZoneTokenTrackingBehavior*", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1775751166, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + } + } + }, + "1775750257": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1775750257, + "properties": { + "m_houseTemplateList": { + "type": "unsigned int", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 835319593 + } + } + }, + "931299734": { + "name": "class SupportedObjectReference", + "bases": [ + "PropertyClass" + ], + "hash": 931299734, + "properties": {} + }, + "69943298": { + "name": "class ClientDuelBehavior", + "bases": [ + "DuelBehavior", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 69943298, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_pDuel": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1066616366 + }, + "m_sigilTemplateID": { + "type": "unsigned int", + "id": 2, + "offset": 128, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 269055310 + } + } + }, + "931285959": { + "name": "class ReqArenaSeasonTitle", + "bases": [ + "Requirement", + "PropertyClass" + ], + "hash": 931285959, + "properties": { + "m_applyNOT": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1746328074, + "enum_options": { + "__DEFAULT": 0 + } + }, + "m_operator": { + "type": "enum Requirement::Operator", + "id": 1, + "offset": 76, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2672792317, + "enum_options": { + "ROP_AND": 0, + "ROP_OR": 1, + "__DEFAULT": "ROP_AND" + } + }, + "m_title": { + "type": "std::string", + "id": 2, + "offset": 112, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2308614141 + }, + "m_tournament": { + "type": "std::string", + "id": 3, + "offset": 80, + "flags": 268435487, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2799932264, + "enum_options": { + "__BASECLASS": "TournamentTemplate" + } + } + } + }, + "1343255969": { + "name": "class MonsterMagicBehaviorTemplate", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 1343255969, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + } + } + }, + "69958050": { + "name": "class ClientDeckBehavior", + "bases": [ + "DeckBehavior", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 69958050, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_spellList": { + "type": "class SharedPointer", + "id": 1, + "offset": 120, + "flags": 27, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2181913740 + }, + "m_serializedExclusionList": { + "type": "std::string", + "id": 2, + "offset": 152, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1502583517 + }, + "m_archmasterySchool": { + "type": "unsigned int", + "id": 3, + "offset": 184, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 485805784 + } + } + }, + "1343498593": { + "name": "class MatchTeamResult*", + "bases": [ + "PropertyClass" + ], + "hash": 1343498593, + "properties": { + "m_teamID": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 982102220 + }, + "m_teamResolution": { + "type": "unsigned char", + "id": 1, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1933240587 + } + } + }, + "1776034770": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1776034770, + "properties": { + "m_platformID": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3429548237 + }, + "m_displayName": { + "type": "std::wstring", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2242885711 + } + } + }, + "931555158": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 931555158, + "properties": { + "m_name": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1717359772 + }, + "m_characterID": { + "type": "gid", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 210498386 + }, + "m_gameObjectID": { + "type": "gid", + "id": 2, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 23229750 + }, + "m_status": { + "type": "unsigned int", + "id": 3, + "offset": 112, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1172183633, + "enum_options": { + "PLAYERSTATUS_UNKNOWN": 0, + "PLAYERSTATUS_OFFLINE": 1, + "PLAYERSTATUS_LINKDEAD": 2, + "PLAYERSTATUS_TRANSITION": 3, + "PLAYERSTATUS_ONLINE": 4, + "PLAYERSTATUS_IGNORED": 5 + } + } + } + }, + "71743486": { + "name": "class SharedPointer", + "bases": [ + "FishBehavior", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 71743486, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_fishSize": { + "type": "float", + "id": 1, + "offset": 112, + "flags": 65536, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1986368316 + } + } + }, + "931549106": { + "name": "class MoveBehavior::Controller*", + "bases": [ + "PropertyClass" + ], + "hash": 931549106, + "properties": { + "m_bCollisionDisabled": { + "type": "bool", + "id": 0, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1732895577 + }, + "m_bVehicleMode": { + "type": "bool", + "id": 1, + "offset": 121, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1597295002 + }, + "m_fForwardModifier": { + "type": "float", + "id": 2, + "offset": 124, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1173988321 + }, + "m_fBackModifier": { + "type": "float", + "id": 3, + "offset": 128, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 148042045 + }, + "m_fStrafeModifier": { + "type": "float", + "id": 4, + "offset": 132, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 226084913 + }, + "m_fTurnModifier": { + "type": "float", + "id": 5, + "offset": 136, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2134998805 + }, + "m_fAccelerationModifier": { + "type": "float", + "id": 6, + "offset": 144, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 592902742 + }, + "m_fDecelerationModifier": { + "type": "float", + "id": 7, + "offset": 148, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1770082811 + } + } + }, + "1349858095": { + "name": "class SharedPointer", + "bases": [ + "Window", + "PropertyClass" + ], + "hash": 1349858095, + "properties": { + "m_sName": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306437263 + }, + "m_Children": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621225959 + }, + "m_Style": { + "type": "unsigned int", + "id": 2, + "offset": 152, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "SCALE_CHILDREN": 2, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "FOCUS_LOCKED": 64, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152 + } + }, + "m_Flags": { + "type": "unsigned int", + "id": 3, + "offset": 156, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } + }, + "m_Window": { + "type": "class Rect", + "id": 4, + "offset": 160, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3105139380 + }, + "m_fTargetAlpha": { + "type": "float", + "id": 5, + "offset": 212, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1809129834 + }, + "m_fDisabledAlpha": { + "type": "float", + "id": 6, + "offset": 216, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1389987675 + }, + "m_fAlpha": { + "type": "float", + "id": 7, + "offset": 208, + "flags": 65671, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 482130755 + }, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3623628394 + }, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2102211316 + }, + "m_sScript": { + "type": "std::string", + "id": 10, + "offset": 352, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1846695875 + }, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3389835433 + }, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547159940 + }, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513510520 + }, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3091503757 + } + } + }, + "1777498103": { + "name": "class GuildMuseumGalleryInfo*", + "bases": [ + "PropertyClass" + ], + "hash": 1777498103, + "properties": { + "m_worldName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1846757476 + }, + "m_worldDoorTemplateID": { + "type": "unsigned int", + "id": 1, + "offset": 104, + "flags": 33554439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1255097074 + }, + "m_levelScaleLevel": { + "type": "int", + "id": 2, + "offset": 132, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1013218162 + }, + "m_galleryZone": { + "type": "std::string", + "id": 3, + "offset": 136, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2919416423 + }, + "m_exhibitList": { + "type": "class SharedPointer", + "id": 4, + "offset": 112, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2401157639 + }, + "m_displayName": { + "type": "std::string", + "id": 5, + "offset": 168, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2446900370 + }, + "m_debugName": { + "type": "std::string", + "id": 6, + "offset": 200, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3553984419 + } + } + }, + "70958365": { + "name": "class MoveCommandSleep", + "bases": [ + "MoveController::MoveCommand", + "PropertyClass" + ], + "hash": 70958365, + "properties": { + "m_fSleep": { + "type": "float", + "id": 0, + "offset": 88, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 503465270 + } + } + }, + "931519170": { + "name": "class ClassProjectPlayerProgressList", + "bases": [ + "PropertyClass" + ], + "hash": 931519170, + "properties": { + "m_playerProgressList": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1898798624 + } + } + }, + "1346482734": { + "name": "class SharedPointer", + "bases": [ + "AvatarOptionBase", + "PropertyClass" + ], + "hash": 1346482734, + "properties": { + "m_conditionFlags": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2483653903 + }, + "m_materialName": { + "type": "std::string", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1878140043 + }, + "m_textures": { + "type": "std::string", + "id": 2, + "offset": 136, + "flags": 131079, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2391848735 + }, + "m_decals": { + "type": "std::string", + "id": 3, + "offset": 160, + "flags": 131079, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1853711975 + }, + "m_decals2": { + "type": "std::string", + "id": 4, + "offset": 184, + "flags": 131079, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2505858617 + }, + "m_tintColors": { + "type": "class Vector3D", + "id": 5, + "offset": 208, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 3059416083 + }, + "m_tintColorNames": { + "type": "std::string", + "id": 6, + "offset": 232, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1803799469 + }, + "m_useTintColor": { + "type": "bool", + "id": 7, + "offset": 256, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1646372318 + } + } + }, + "1776782264": { + "name": "class std::list >", + "bases": [], + "hash": 1776782264, + "properties": {} + }, + "70794525": { + "name": "class MoveCommandSleep*", + "bases": [ + "MoveController::MoveCommand", + "PropertyClass" + ], + "hash": 70794525, + "properties": { + "m_fSleep": { + "type": "float", + "id": 0, + "offset": 88, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 503465270 + } + } + }, + "70479913": { + "name": "enum SpringboardNodeDescriptor::AnimationState", + "bases": [], + "hash": 70479913, + "properties": {} + }, + "1344070866": { + "name": "class PetJewelBehavior", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1344070866, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + } + } + }, + "1343615589": { + "name": "class BattlegroundPlayerStats", + "bases": [ + "PropertyClass" + ], + "hash": 1343615589, + "properties": { + "m_status": { + "type": "enum BattlegroundPlayerStats::PlayerStatusEnum", + "id": 0, + "offset": 72, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1862714304, + "enum_options": { + "ACTIVE": 0, + "IN_COMBAT": 1, + "DEAD": 2, + "MISSING": 3, + "RED_TEAM": 0, + "BLUE_TEAM": 1 + } + }, + "m_team": { + "type": "enum BattlegroundPlayerStats::PlayerTeamEnum", + "id": 1, + "offset": 76, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1426706772 + }, + "m_packedName": { + "type": "std::string", + "id": 2, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1805208228 + }, + "m_playerID": { + "type": "gid", + "id": 3, + "offset": 112, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1774633426 + }, + "m_polymorphID": { + "type": "unsigned int", + "id": 4, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 702888164 + }, + "m_rating": { + "type": "int", + "id": 5, + "offset": 124, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 899783871 + }, + "m_playerKills": { + "type": "int", + "id": 6, + "offset": 128, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 742064870 + }, + "m_mobKills": { + "type": "int", + "id": 7, + "offset": 132, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 185014199 + }, + "m_autoCaps": { + "type": "int", + "id": 8, + "offset": 136, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1916916346 + }, + "m_combatCaps": { + "type": "int", + "id": 9, + "offset": 140, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 975573175 + }, + "m_deaths": { + "type": "int", + "id": 10, + "offset": 144, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 355961043 + } + } + }, + "1777630230": { + "name": "class SharedPointer", + "bases": [ + "SG_GameAction", + "PropertyClass" + ], + "hash": 1777630230, + "properties": { + "m_target": { + "type": "enum SG_GameAction::SG_Target", + "id": 0, + "offset": 72, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1166870973, + "enum_options": { + "Target_Ball": 0, + "Target_Self": 1, + "Target_Connections": 2, + "__DEFAULT": "Target_Ball" + } + }, + "m_interactor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3125502454 + } + } + }, + "1343587371": { + "name": "class GraphicalPvPCurrencyBonus", + "bases": [ + "GraphicalSpell", + "Spell", + "PropertyClass" + ], + "hash": 1343587371, + "properties": { + "m_templateID": { + "type": "unsigned int", + "id": 0, + "offset": 128, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1286746870 + }, + "m_enchantment": { + "type": "unsigned int", + "id": 1, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2217886818 + }, + "m_pipCost": { + "type": "class SharedPointer", + "id": 2, + "offset": 176, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3605704820 + }, + "m_regularAdjust": { + "type": "int", + "id": 3, + "offset": 192, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1420453335 + }, + "m_magicSchoolID": { + "type": "unsigned int", + "id": 4, + "offset": 136, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 893146499 + }, + "m_accuracy": { + "type": "unsigned char", + "id": 5, + "offset": 132, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2273914939 + }, + "m_treasureCard": { + "type": "bool", + "id": 6, + "offset": 197, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1764879128 + }, + "m_battleCard": { + "type": "bool", + "id": 7, + "offset": 198, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1332843753 + }, + "m_itemCard": { + "type": "bool", + "id": 8, + "offset": 199, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1683654300 + }, + "m_sideBoard": { + "type": "bool", + "id": 9, + "offset": 200, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1897838368 + }, + "m_spellID": { + "type": "unsigned int", + "id": 10, + "offset": 204, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1697483258 + }, + "m_leavesPlayWhenCastOverride": { + "type": "bool", + "id": 11, + "offset": 216, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 874407398 + }, + "m_cloaked": { + "type": "bool", + "id": 12, + "offset": 196, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 7349510 + }, + "m_enchantmentSpellIsItemCard": { + "type": "bool", + "id": 13, + "offset": 76, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 531590701 + }, + "m_premutationSpellID": { + "type": "unsigned int", + "id": 14, + "offset": 112, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1530256370 + }, + "m_enchantedThisCombat": { + "type": "bool", + "id": 15, + "offset": 77, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1895738923 + }, + "m_paramOverrides": { + "type": "class SharedPointer", + "id": 16, + "offset": 224, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2061635599 + }, + "m_subEffectMeta": { + "type": "class SharedPointer", + "id": 17, + "offset": 240, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1944101106 + }, + "m_delayEnchantment": { + "type": "bool", + "id": 18, + "offset": 257, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 191336919 + }, + "m_PvE": { + "type": "bool", + "id": 19, + "offset": 264, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 269492350 + }, + "m_delayEnchantmentOrder": { + "type": "enum SpellEffect::kDelayOrder", + "id": 20, + "offset": 72, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2526055263, + "enum_options": { + "SpellEffect::kAnyOrder": 0, + "SpellEffect::kFirst": 1, + "SpellEffect::kSecond": 2 + } + }, + "m_roundAddedTC": { + "type": "int", + "id": 21, + "offset": 260, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 112365451 + }, + "m_secondarySchoolID": { + "type": "unsigned int", + "id": 22, + "offset": 304, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2081206026 + }, + "m_fusionState": { + "type": "enum Spell::FusionState", + "id": 23, + "offset": 308, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 835324539, + "enum_options": { + "FS_Invalid": 0, + "FS_Partial": 1, + "FS_Valid": 2 + } + } + } + }, + "933049147": { + "name": "class ClientWizStorageBehavior*", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 933049147, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_itemList": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 19, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1983655699 + }, + "m_bankLimit": { + "type": "int", + "id": 2, + "offset": 128, + "flags": 27, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1662903029 + }, + "m_sharedBankLimit": { + "type": "int", + "id": 3, + "offset": 132, + "flags": 27, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 566146380 + } + } + }, + "1777522679": { + "name": "class GuildMuseumGalleryInfo", + "bases": [ + "PropertyClass" + ], + "hash": 1777522679, + "properties": { + "m_worldName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1846757476 + }, + "m_worldDoorTemplateID": { + "type": "unsigned int", + "id": 1, + "offset": 104, + "flags": 33554439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1255097074 + }, + "m_levelScaleLevel": { + "type": "int", + "id": 2, + "offset": 132, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1013218162 + }, + "m_galleryZone": { + "type": "std::string", + "id": 3, + "offset": 136, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2919416423 + }, + "m_exhibitList": { + "type": "class SharedPointer", + "id": 4, + "offset": 112, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2401157639 + }, + "m_displayName": { + "type": "std::string", + "id": 5, + "offset": 168, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2446900370 + }, + "m_debugName": { + "type": "std::string", + "id": 6, + "offset": 200, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3553984419 + } + } + }, + "932181084": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 932181084, + "properties": { + "m_cursorFile": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2831338361 + } + } + }, + "71625852": { + "name": "class SharedPointer", + "bases": [ + "DuelBehavior", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 71625852, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_pDuel": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1066616366 + }, + "m_sigilTemplateID": { + "type": "unsigned int", + "id": 2, + "offset": 128, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 269055310 + } + } + }, + "71424697": { + "name": "MadlibArgT", + "bases": [ + "MadlibArg", + "PropertyClass" + ], + "hash": 71424697, + "properties": { + "m_madlibToken": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3058682373 + }, + "m_madlibArgument": { + "type": "int", + "id": 1, + "offset": 112, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 878492166 + } + } + }, + "1344169170": { + "name": "class PetJewelBehavior*", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1344169170, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + } + } + }, + "933335769": { + "name": "class RatingInfo*", + "bases": [ + "PropertyClass" + ], + "hash": 933335769, + "properties": { + "m_name": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1717359772 + }, + "m_minScore": { + "type": "int", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1505040890 + }, + "m_maxScore": { + "type": "int", + "id": 2, + "offset": 108, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 154585660 + }, + "m_pvpIcon": { + "type": "std::string", + "id": 3, + "offset": 112, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1503451354 + }, + "m_petIcon": { + "type": "std::string", + "id": 4, + "offset": 144, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2990377005 + } + } + }, + "1781605467": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1781605467, + "properties": { + "m_target": { + "type": "enum SG_GameAction::SG_Target", + "id": 0, + "offset": 72, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1166870973, + "enum_options": { + "Target_Ball": 0, + "Target_Self": 1, + "Target_Connections": 2, + "__DEFAULT": "Target_Ball" + } + } + } + }, + "1780868059": { + "name": "class DdWinAnimMoveMob*", + "bases": [ + "WinAnimMoveToLocationSpeed", + "WinAnimMoveToLocation", + "WindowAnimation", + "PropertyClass" + ], + "hash": 1780868059, + "properties": { + "m_bUseDeepCopy": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 433380635 + }, + "m_targetLocation": { + "type": "class Vector3D", + "id": 1, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2653859938 + }, + "m_fSpeed": { + "type": "float", + "id": 2, + "offset": 96, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 503609006 + }, + "m_facing": { + "type": "enum DoodleDoug::DdDirection", + "id": 3, + "offset": 112, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 591537519 + }, + "m_cameFrom": { + "type": "enum DoodleDoug::DdDirection", + "id": 4, + "offset": 116, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1071209393 + }, + "m_nextWaypoint": { + "type": "class Point", + "id": 5, + "offset": 120, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2346187452 + }, + "m_myBoard": { + "type": "class DoodleDoug*", + "id": 6, + "offset": 136, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2212758093 + } + } + }, + "1778533046": { + "name": "class ParticipantPipData", + "bases": [ + "PropertyClass" + ], + "hash": 1778533046, + "properties": { + "m_partID": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 821435516 + }, + "m_pips": { + "type": "class SharedPointer", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1511196686 + }, + "m_acq": { + "type": "unsigned int", + "id": 2, + "offset": 96, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 478431554 + }, + "m_arch": { + "type": "unsigned int", + "id": 3, + "offset": 100, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 430613611 + }, + "m_archPoints": { + "type": "float", + "id": 4, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2151979634 + } + } + }, + "72126571": { + "name": "class std::list >", + "bases": [], + "hash": 72126571, + "properties": {} + }, + "1345594487": { + "name": "class FishingBehaviorTemplate", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 1345594487, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + } + } + }, + "1778186952": { + "name": "class TextureRemapBehaviorTemplate*", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 1778186952, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + } + } + }, + "71792252": { + "name": "class SharedPointer", + "bases": [ + "DeckBehavior", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 71792252, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_spellList": { + "type": "class SharedPointer", + "id": 1, + "offset": 120, + "flags": 27, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2181913740 + }, + "m_serializedExclusionList": { + "type": "std::string", + "id": 2, + "offset": 152, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1502583517 + }, + "m_archmasterySchool": { + "type": "unsigned int", + "id": 3, + "offset": 184, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 485805784 + } + } + }, + "935900208": { + "name": "class TreasureShopModifiers*", + "bases": [ + "PropertyClass" + ], + "hash": 935900208, + "properties": { + "m_buyPriceMultiplier": { + "type": "int", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 999902276 + } + } + }, + "1344617197": { + "name": "class SharedPointer", + "bases": [ + "ReqBaseMagicLevel", + "ReqNumeric", + "Requirement", + "PropertyClass" + ], + "hash": 1344617197, + "properties": { + "m_applyNOT": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1746328074, + "enum_options": { + "__DEFAULT": 0 + } + }, + "m_operator": { + "type": "enum Requirement::Operator", + "id": 1, + "offset": 76, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2672792317, + "enum_options": { + "ROP_AND": 0, + "ROP_OR": 1, + "__DEFAULT": "ROP_AND" + } + }, + "m_numericValue": { + "type": "float", + "id": 2, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 521915239 + }, + "m_operatorType": { + "type": "enum ReqNumeric::OPERATOR_TYPE", + "id": 3, + "offset": 84, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2228122961, + "enum_options": { + "OPERATOR_UNKNOWN": 4294967295, + "OPERATOR_EQUALS": 0, + "OPERATOR_GREATER_THAN": 1, + "OPERATOR_LESS_THAN": 2, + "OPERATOR_GREATER_THAN_EQ": 3, + "OPERATOR_LESS_THAN_EQ": 4 + } + }, + "m_magicSchool": { + "type": "std::string", + "id": 4, + "offset": 88, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1597012900 + } + } + }, + "935326015": { + "name": "class MorphingException", + "bases": [ + "PropertyClass" + ], + "hash": 935326015, + "properties": { + "m_secondPetTemplateID": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 33554439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 89171206 + }, + "m_eggTemplateID": { + "type": "gid", + "id": 1, + "offset": 80, + "flags": 33554439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1463276884 + }, + "m_probability": { + "type": "float", + "id": 2, + "offset": 88, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 396611384 + } + } + }, + "1344420981": { + "name": "class std::list >", + "bases": [], + "hash": 1344420981, + "properties": {} + }, + "934519833": { + "name": "class InteractiveMusicLoop", + "bases": [ + "PropertyClass" + ], + "hash": 934519833, + "properties": { + "m_loopNumber": { + "type": "int", + "id": 0, + "offset": 72, + "flags": 65543, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1083131517 + }, + "m_composerPackedName": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 65536, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1558621676 + }, + "m_composerGID": { + "type": "gid", + "id": 2, + "offset": 112, + "flags": 65536, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 538993812 + }, + "m_metronomeTempo": { + "type": "float", + "id": 3, + "offset": 120, + "flags": 65543, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 547183282 + }, + "m_firstNodeDelay": { + "type": "float", + "id": 4, + "offset": 124, + "flags": 65543, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 830925908 + }, + "m_musicNoteList": { + "type": "class SharedPointer", + "id": 5, + "offset": 128, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 3278314746 + }, + "m_compressedmusicNoteData": { + "type": "std::string", + "id": 6, + "offset": 144, + "flags": 65536, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2482881473 + } + } + }, + "1780762321": { + "name": "class SharedPointer", + "bases": [ + "Requirement", + "PropertyClass" + ], + "hash": 1780762321, + "properties": { + "m_applyNOT": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1746328074, + "enum_options": { + "__DEFAULT": 0 + } + }, + "m_operator": { + "type": "enum Requirement::Operator", + "id": 1, + "offset": 76, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2672792317, + "enum_options": { + "ROP_AND": 0, + "ROP_OR": 1, + "__DEFAULT": "ROP_AND" + } + }, + "m_questName": { + "type": "std::string", + "id": 2, + "offset": 80, + "flags": 268435463, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1702112846, + "enum_options": { + "__BASECLASS": "QuestTemplate" + } + } + } + }, + "934191054": { + "name": "class ClassProjectPlayerProgress", + "bases": [ + "PropertyClass" + ], + "hash": 934191054, + "properties": { + "m_projectID": { + "type": "unsigned int", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1263221425 + }, + "m_classProjectPlayer": { + "type": "class SharedPointer", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1748630410 + } + } + }, + "74866119": { + "name": "class Party", + "bases": [ + "Group", + "PropertyClass" + ], + "hash": 74866119, + "properties": { + "m_GroupID": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 586506386 + }, + "m_ChannelID": { + "type": "gid", + "id": 1, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1585983742 + }, + "m_MemberList": { + "type": "class SharedPointer", + "id": 2, + "offset": 88, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2864705424 + }, + "m_nMaxSize": { + "type": "unsigned int", + "id": 3, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1265869948 + }, + "m_fromAdventureParty": { + "type": "bool", + "id": 4, + "offset": 128, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 940992997 + }, + "m_leaderGID": { + "type": "gid", + "id": 5, + "offset": 136, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 700505145 + }, + "m_questGID": { + "type": "gid", + "id": 6, + "offset": 144, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 331631550 + }, + "m_goalGID": { + "type": "gid", + "id": 7, + "offset": 152, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 976914927 + } + } + }, + "934191048": { + "name": "class ClassProjectPlayerProgress*", + "bases": [ + "PropertyClass" + ], + "hash": 934191048, + "properties": { + "m_projectID": { + "type": "unsigned int", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1263221425 + }, + "m_classProjectPlayer": { + "type": "class SharedPointer", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1748630410 + } + } + }, + "1345110589": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1345110589, + "properties": { + "m_position": { + "type": "class Vector3D", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3697900983 + }, + "m_templateID": { + "type": "unsigned int", + "id": 1, + "offset": 84, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1286746870 + }, + "m_nextStageTimeSeconds": { + "type": "unsigned int", + "id": 2, + "offset": 92, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 752026046 + }, + "m_flags": { + "type": "unsigned int", + "id": 3, + "offset": 88, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1005801050 + }, + "m_needsWaterTimeSeconds": { + "type": "unsigned int", + "id": 4, + "offset": 100, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1144013149 + }, + "m_needsSunTimeSeconds": { + "type": "unsigned int", + "id": 5, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1376682128 + }, + "m_needsPollinationTimeSeconds": { + "type": "unsigned int", + "id": 6, + "offset": 108, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1487147427 + }, + "m_needsMagicTimeSeconds": { + "type": "unsigned int", + "id": 7, + "offset": 112, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 655591099 + }, + "m_needsMusicTimeSeconds": { + "type": "unsigned int", + "id": 8, + "offset": 116, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 799722843 + }, + "m_harvestTimeSeconds": { + "type": "unsigned int", + "id": 9, + "offset": 96, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 675583752 + }, + "m_pestCheckTimeSeconds": { + "type": "unsigned int", + "id": 10, + "offset": 120, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2302681477 + }, + "m_pestTemplateID": { + "type": "unsigned int", + "id": 11, + "offset": 124, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1301457330 + }, + "m_pestProtectionTemplateID": { + "type": "unsigned int", + "id": 12, + "offset": 128, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1429720889 + }, + "m_pestProtectionTimeSeconds": { + "type": "unsigned int", + "id": 13, + "offset": 132, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1440479886 + }, + "m_stageStartTimeSeconds": { + "type": "unsigned int", + "id": 14, + "offset": 136, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1075432461 + }, + "m_likesDislikesModifier": { + "type": "float", + "id": 15, + "offset": 140, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 840714742 + }, + "m_plantIdentifierForETL": { + "type": "gid", + "id": 16, + "offset": 144, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 450491014 + }, + "m_harvestCount": { + "type": "unsigned int", + "id": 17, + "offset": 152, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 245460819 + } + } + }, + "74189249": { + "name": "class DebugWizardComponent", + "bases": [ + "PropertyClass" + ], + "hash": 74189249, + "properties": {} + }, + "1344786591": { + "name": "class SharedPointer", + "bases": [ + "ClientElixirBehavior", + "ClientTimedItemBehavior", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1344786591, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_expireTime": { + "type": "unsigned int", + "id": 1, + "offset": 112, + "flags": 59, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1836304873 + }, + "m_statsApplied": { + "type": "bool", + "id": 2, + "offset": 328, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 828970945 + } + } + }, + "1780966363": { + "name": "class DdWinAnimMoveMob", + "bases": [ + "WinAnimMoveToLocationSpeed", + "WinAnimMoveToLocation", + "WindowAnimation", + "PropertyClass" + ], + "hash": 1780966363, + "properties": { + "m_bUseDeepCopy": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 433380635 + }, + "m_targetLocation": { + "type": "class Vector3D", + "id": 1, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2653859938 + }, + "m_fSpeed": { + "type": "float", + "id": 2, + "offset": 96, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 503609006 + }, + "m_facing": { + "type": "enum DoodleDoug::DdDirection", + "id": 3, + "offset": 112, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 591537519 + }, + "m_cameFrom": { + "type": "enum DoodleDoug::DdDirection", + "id": 4, + "offset": 116, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1071209393 + }, + "m_nextWaypoint": { + "type": "class Point", + "id": 5, + "offset": 120, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2346187452 + }, + "m_myBoard": { + "type": "class DoodleDoug*", + "id": 6, + "offset": 136, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2212758093 + } + } + }, + "74113067": { + "name": "class HatchmakingKioskBehavior*", + "bases": [ + "HatchmakingKioskBehaviorBase", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 74113067, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_hatchDayPetCode": { + "type": "unsigned int", + "id": 1, + "offset": 112, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1354692695 + } + } + }, + "934196016": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 934196016, + "properties": { + "m_material": { + "type": "class SharedPointer", + "id": 0, + "offset": 88, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1438090150 + }, + "m_size": { + "type": "class Size", + "id": 1, + "offset": 72, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 251247159 + }, + "m_hotSpot": { + "type": "class Point", + "id": 2, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1849465267 + } + } + }, + "1781100628": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1781100628, + "properties": { + "m_state": { + "type": "unsigned int", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1021505934 + }, + "m_chatID": { + "type": "unsigned int", + "id": 1, + "offset": 76, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 531784794 + }, + "m_usage": { + "type": "unsigned int", + "id": 2, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1023841410 + } + } + }, + "74189289": { + "name": "class DebugWizardComponent*", + "bases": [ + "PropertyClass" + ], + "hash": 74189289, + "properties": {} + }, + "1345908908": { + "name": "class SharedPointer", + "bases": [ + "DerbyLockLane", + "DerbyEffect", + "PropertyClass" + ], + "hash": 1345908908, + "properties": { + "m_buffType": { + "type": "enum DerbyTalentBuffType", + "id": 0, + "offset": 92, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1149251982, + "enum_options": { + "Buff": 0, + "Debuff": 1, + "Neither": 2 + } + }, + "m_kTarget": { + "type": "enum DerbyTargetType", + "id": 1, + "offset": 96, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1807803351, + "enum_options": { + "kTargetInFront": 0, + "kTargetBehind": 1, + "kTargetFirst": 2, + "kTargetSelf": 3, + "kTargetAll": 4, + "kTargetLast": 5 + } + }, + "m_nDuration": { + "type": "int", + "id": 2, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1110167982 + }, + "m_effectID": { + "type": "unsigned int", + "id": 3, + "offset": 88, + "flags": 24, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2347630439 + }, + "m_imageFilename": { + "type": "std::string", + "id": 4, + "offset": 112, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2813328063 + }, + "m_iconIndex": { + "type": "unsigned int", + "id": 5, + "offset": 144, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1265133262 + }, + "m_soundOnActivate": { + "type": "std::string", + "id": 6, + "offset": 152, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1956929714 + }, + "m_soundOnTarget": { + "type": "std::string", + "id": 7, + "offset": 184, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3444214056 + }, + "m_targetParticleEffect": { + "type": "std::string", + "id": 8, + "offset": 216, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3048234723 + }, + "m_overheadMessage": { + "type": "std::string", + "id": 9, + "offset": 248, + "flags": 8388639, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1701018190 + }, + "m_requirements": { + "type": "class RequirementList", + "id": 10, + "offset": 280, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2840988582 + } + } + }, + "934519857": { + "name": "class InteractiveMusicLoop*", + "bases": [ + "PropertyClass" + ], + "hash": 934519857, + "properties": { + "m_loopNumber": { + "type": "int", + "id": 0, + "offset": 72, + "flags": 65543, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1083131517 + }, + "m_composerPackedName": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 65536, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1558621676 + }, + "m_composerGID": { + "type": "gid", + "id": 2, + "offset": 112, + "flags": 65536, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 538993812 + }, + "m_metronomeTempo": { + "type": "float", + "id": 3, + "offset": 120, + "flags": 65543, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 547183282 + }, + "m_firstNodeDelay": { + "type": "float", + "id": 4, + "offset": 124, + "flags": 65543, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 830925908 + }, + "m_musicNoteList": { + "type": "class SharedPointer", + "id": 5, + "offset": 128, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 3278314746 + }, + "m_compressedmusicNoteData": { + "type": "std::string", + "id": 6, + "offset": 144, + "flags": 65536, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2482881473 + } + } + }, + "1783190033": { + "name": "class ScriptBehaviorTemplate*", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 1783190033, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + }, + "m_scriptFilename": { + "type": "std::string", + "id": 1, + "offset": 120, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1831462225 + }, + "m_bDisableAutoRestart": { + "type": "bool", + "id": 2, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 815844583, + "enum_options": { + "__DEFAULT": 0 + } + }, + "m_clientScriptFilename": { + "type": "std::string", + "id": 3, + "offset": 160, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2499494128 + } + } + }, + "1782150143": { + "name": "class SharedPointer", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 1782150143, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + }, + "m_materialName": { + "type": "std::string", + "id": 1, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1878140043 + }, + "m_alternateAssetName": { + "type": "std::string", + "id": 2, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2009140124 + } + } + }, + "75648654": { + "name": "class TrainBehavior*", + "bases": [ + "TrainBehaviorBase", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 75648654, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_trainData": { + "type": "std::string", + "id": 1, + "offset": 128, + "flags": 575, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2994039667 + } + } + }, + "1347645193": { + "name": "class UIScaleConfigEntry*", + "bases": [ + "PropertyClass" + ], + "hash": 1347645193, + "properties": { + "m_res": { + "type": "int", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 267047684 + }, + "m_microScale": { + "type": "float", + "id": 1, + "offset": 76, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1618708793 + }, + "m_tinyScale": { + "type": "float", + "id": 2, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 477118371 + }, + "m_smallScale": { + "type": "float", + "id": 3, + "offset": 84, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 491529176 + }, + "m_regularScale": { + "type": "float", + "id": 4, + "offset": 88, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1846588305 + }, + "m_largeScale": { + "type": "float", + "id": 5, + "offset": 92, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 710194858 + }, + "m_hugeScale": { + "type": "float", + "id": 6, + "offset": 96, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1882331208 + } + } + }, + "75356784": { + "name": "enum TimerType", + "bases": [], + "hash": 75356784, + "properties": {} + }, + "935798875": { + "name": "class std::list >", + "bases": [], + "hash": 935798875, + "properties": {} + }, + "1347422349": { + "name": "class HousingGameManager", + "bases": [ + "PropertyClass" + ], + "hash": 1347422349, + "properties": {} + }, + "935702429": { + "name": "class PermShopItemData", + "bases": [], + "hash": 935702429, + "properties": { + "m_templateID": { + "type": "gid", + "id": 0, + "offset": 88, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1075328001 + }, + "m_sortName": { + "type": "std::wstring", + "id": 1, + "offset": 352, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2312609697 + }, + "m_crownsCost": { + "type": "int", + "id": 2, + "offset": 336, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1592212719 + }, + "m_goldCost": { + "type": "int", + "id": 3, + "offset": 332, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 444550297 + }, + "m_description": { + "type": "std::wstring", + "id": 4, + "offset": 424, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1445360156 + }, + "m_category": { + "type": "unsigned int", + "id": 5, + "offset": 328, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1395753067 + }, + "m_isBundle": { + "type": "bool", + "id": 6, + "offset": 389, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1180966953 + }, + "m_sortType": { + "type": "int", + "id": 7, + "offset": 384, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1019166596 + }, + "m_itemLimitReached": { + "type": "bool", + "id": 8, + "offset": 261, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1250328557 + }, + "m_islandOwned": { + "type": "bool", + "id": 9, + "offset": 275, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 314755307 + } + } + }, + "1346799028": { + "name": "enum ConditionalSpellEffectRequirement::RequirementTarget", + "bases": [], + "hash": 1346799028, + "properties": {} + }, + "1783230993": { + "name": "class ScriptBehaviorTemplate", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 1783230993, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + }, + "m_scriptFilename": { + "type": "std::string", + "id": 1, + "offset": 120, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1831462225 + }, + "m_bDisableAutoRestart": { + "type": "bool", + "id": 2, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 815844583, + "enum_options": { + "__DEFAULT": 0 + } + }, + "m_clientScriptFilename": { + "type": "std::string", + "id": 3, + "offset": 160, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2499494128 + } + } + }, + "75648651": { + "name": "class TrainBehavior", + "bases": [ + "TrainBehaviorBase", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 75648651, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_trainData": { + "type": "std::string", + "id": 1, + "offset": 128, + "flags": 575, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2994039667 + } + } + }, + "1347111689": { + "name": "class TournamentLevelModifiers", + "bases": [ + "CoreTemplate", + "PropertyClass" + ], + "hash": 1347111689, + "properties": { + "m_behaviors": { + "type": "class BehaviorTemplate*", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1197808594 + }, + "m_levelToRankMod": { + "type": "class Point", + "id": 1, + "offset": 96, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 3747681891 + }, + "m_templateID": { + "type": "unsigned int", + "id": 2, + "offset": 136, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1286746870 + } + } + }, + "935894135": { + "name": "class CrownShopButtonNameBehaviorTemplate*", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 935894135, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + }, + "m_buttonDisplayName": { + "type": "std::string", + "id": 1, + "offset": 120, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1916274798 + } + } + }, + "1787487711": { + "name": "class BGSigilTimer", + "bases": [ + "PropertyClass" + ], + "hash": 1787487711, + "properties": { + "m_state": { + "type": "unsigned int", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1021505934 + }, + "m_startTimeMS": { + "type": "unsigned int", + "id": 1, + "offset": 76, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 843207562 + }, + "m_snapshotT": { + "type": "float", + "id": 2, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1238335003 + }, + "m_snapshotMS": { + "type": "unsigned int", + "id": 3, + "offset": 84, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1589766845 + }, + "m_endTimeMS": { + "type": "unsigned int", + "id": 4, + "offset": 88, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 388403347 + }, + "m_durationMS": { + "type": "unsigned int", + "id": 5, + "offset": 92, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2175220755 + }, + "m_timeScale": { + "type": "float", + "id": 6, + "offset": 96, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 550426190 + } + } + }, + "76786826": { + "name": "class TrainBehaviorBase", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 76786826, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_trainData": { + "type": "std::string", + "id": 1, + "offset": 128, + "flags": 575, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2994039667 + } + } + }, + "935800733": { + "name": "class PermShopItemData*", + "bases": [], + "hash": 935800733, + "properties": { + "m_templateID": { + "type": "gid", + "id": 0, + "offset": 88, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1075328001 + }, + "m_sortName": { + "type": "std::wstring", + "id": 1, + "offset": 352, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2312609697 + }, + "m_crownsCost": { + "type": "int", + "id": 2, + "offset": 336, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1592212719 + }, + "m_goldCost": { + "type": "int", + "id": 3, + "offset": 332, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 444550297 + }, + "m_description": { + "type": "std::wstring", + "id": 4, + "offset": 424, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1445360156 + }, + "m_category": { + "type": "unsigned int", + "id": 5, + "offset": 328, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1395753067 + }, + "m_isBundle": { + "type": "bool", + "id": 6, + "offset": 389, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1180966953 + }, + "m_sortType": { + "type": "int", + "id": 7, + "offset": 384, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1019166596 + }, + "m_itemLimitReached": { + "type": "bool", + "id": 8, + "offset": 261, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1250328557 + }, + "m_islandOwned": { + "type": "bool", + "id": 9, + "offset": 275, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 314755307 + } + } + }, + "1784997521": { + "name": "class PlayerStatuePvPBlob", + "bases": [ + "PlayerStatueBlob", + "PropertyClass" + ], + "hash": 1784997521, + "properties": { + "m_level": { + "type": "int", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 801285362 + }, + "m_school": { + "type": "unsigned int", + "id": 1, + "offset": 76, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1152268885 + }, + "m_gender": { + "type": "int", + "id": 2, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 473816879 + }, + "m_nameKeys": { + "type": "unsigned int", + "id": 3, + "offset": 84, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1772225898 + }, + "m_badge": { + "type": "std::string", + "id": 4, + "offset": 88, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2286962478 + }, + "m_pCharacterBehavior": { + "type": "class SharedPointer", + "id": 5, + "offset": 120, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2724673923 + }, + "m_pEquipment": { + "type": "class SharedPointer", + "id": 6, + "offset": 136, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2473540161 + }, + "m_pStats": { + "type": "class SharedPointer", + "id": 7, + "offset": 152, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2212894623 + }, + "m_pGameEffects": { + "type": "class SharedPointer", + "id": 8, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1557857436 + }, + "m_petTID": { + "type": "unsigned int", + "id": 9, + "offset": 200, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1037635095 + }, + "m_pPetBehavior": { + "type": "class SharedPointer", + "id": 10, + "offset": 208, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2663493503 + }, + "m_pPetJewels": { + "type": "class SharedPointer", + "id": 11, + "offset": 224, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 733229991 + } + } + }, + "1347638330": { + "name": "class TempStartingPipEffect*", + "bases": [ + "GameEffectBase", + "PropertyClass" + ], + "hash": 1347638330, + "properties": { + "m_currentTickCount": { + "type": "double", + "id": 0, + "offset": 80, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2533274692 + }, + "m_effectNameID": { + "type": "unsigned int", + "id": 1, + "offset": 96, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1204067144 + }, + "m_bIsOnPet": { + "type": "bool", + "id": 2, + "offset": 73, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 522593303 + }, + "m_originatorID": { + "type": "gid", + "id": 3, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1131810019 + }, + "m_itemSlotID": { + "type": "unsigned int", + "id": 4, + "offset": 112, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1895747595 + }, + "m_internalID": { + "type": "int", + "id": 5, + "offset": 92, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1643137924 + }, + "m_endTime": { + "type": "unsigned int", + "id": 6, + "offset": 88, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 716479635 + }, + "m_pipsGiven": { + "type": "int", + "id": 7, + "offset": 128, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1346249167 + }, + "m_powerPipsGiven": { + "type": "int", + "id": 8, + "offset": 132, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 377908508 + } + } + }, + "1784197918": { + "name": "class GraphicalPvPTourneyCurrencyBonus*", + "bases": [ + "GraphicalSpell", + "Spell", + "PropertyClass" + ], + "hash": 1784197918, + "properties": { + "m_templateID": { + "type": "unsigned int", + "id": 0, + "offset": 128, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1286746870 + }, + "m_enchantment": { + "type": "unsigned int", + "id": 1, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2217886818 + }, + "m_pipCost": { + "type": "class SharedPointer", + "id": 2, + "offset": 176, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3605704820 + }, + "m_regularAdjust": { + "type": "int", + "id": 3, + "offset": 192, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1420453335 + }, + "m_magicSchoolID": { + "type": "unsigned int", + "id": 4, + "offset": 136, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 893146499 + }, + "m_accuracy": { + "type": "unsigned char", + "id": 5, + "offset": 132, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2273914939 + }, + "m_treasureCard": { + "type": "bool", + "id": 6, + "offset": 197, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1764879128 + }, + "m_battleCard": { + "type": "bool", + "id": 7, + "offset": 198, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1332843753 + }, + "m_itemCard": { + "type": "bool", + "id": 8, + "offset": 199, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1683654300 + }, + "m_sideBoard": { + "type": "bool", + "id": 9, + "offset": 200, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1897838368 + }, + "m_spellID": { + "type": "unsigned int", + "id": 10, + "offset": 204, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1697483258 + }, + "m_leavesPlayWhenCastOverride": { + "type": "bool", + "id": 11, + "offset": 216, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 874407398 + }, + "m_cloaked": { + "type": "bool", + "id": 12, + "offset": 196, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 7349510 + }, + "m_enchantmentSpellIsItemCard": { + "type": "bool", + "id": 13, + "offset": 76, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 531590701 + }, + "m_premutationSpellID": { + "type": "unsigned int", + "id": 14, + "offset": 112, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1530256370 + }, + "m_enchantedThisCombat": { + "type": "bool", + "id": 15, + "offset": 77, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1895738923 + }, + "m_paramOverrides": { + "type": "class SharedPointer", + "id": 16, + "offset": 224, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2061635599 + }, + "m_subEffectMeta": { + "type": "class SharedPointer", + "id": 17, + "offset": 240, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1944101106 + }, + "m_delayEnchantment": { + "type": "bool", + "id": 18, + "offset": 257, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 191336919 + }, + "m_PvE": { + "type": "bool", + "id": 19, + "offset": 264, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 269492350 + }, + "m_delayEnchantmentOrder": { + "type": "enum SpellEffect::kDelayOrder", + "id": 20, + "offset": 72, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2526055263, + "enum_options": { + "SpellEffect::kAnyOrder": 0, + "SpellEffect::kFirst": 1, + "SpellEffect::kSecond": 2 + } + }, + "m_roundAddedTC": { + "type": "int", + "id": 21, + "offset": 260, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 112365451 + }, + "m_secondarySchoolID": { + "type": "unsigned int", + "id": 22, + "offset": 304, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2081206026 + }, + "m_fusionState": { + "type": "enum Spell::FusionState", + "id": 23, + "offset": 308, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 835324539, + "enum_options": { + "FS_Invalid": 0, + "FS_Partial": 1, + "FS_Valid": 2 + } + } + } + }, + "1347637562": { + "name": "class TempStartingPipEffect", + "bases": [ + "GameEffectBase", + "PropertyClass" + ], + "hash": 1347637562, + "properties": { + "m_currentTickCount": { + "type": "double", + "id": 0, + "offset": 80, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2533274692 + }, + "m_effectNameID": { + "type": "unsigned int", + "id": 1, + "offset": 96, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1204067144 + }, + "m_bIsOnPet": { + "type": "bool", + "id": 2, + "offset": 73, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 522593303 + }, + "m_originatorID": { + "type": "gid", + "id": 3, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1131810019 + }, + "m_itemSlotID": { + "type": "unsigned int", + "id": 4, + "offset": 112, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1895747595 + }, + "m_internalID": { + "type": "int", + "id": 5, + "offset": 92, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1643137924 + }, + "m_endTime": { + "type": "unsigned int", + "id": 6, + "offset": 88, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 716479635 + }, + "m_pipsGiven": { + "type": "int", + "id": 7, + "offset": 128, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1346249167 + }, + "m_powerPipsGiven": { + "type": "int", + "id": 8, + "offset": 132, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 377908508 + } + } + }, + "1783925270": { + "name": "class SharedPointer", + "bases": [ + "ControlRichEdit", + "ControlEdit", + "Window", + "PropertyClass" + ], + "hash": 1783925270, + "properties": { + "m_sName": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306437263 + }, + "m_Children": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621225959 + }, + "m_Style": { + "type": "unsigned int", + "id": 2, + "offset": 152, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152, + "FORCE_NUMERIC": 16777216, + "FORCE_ALPHA": 268435456, + "FORCE_ALPHANUMERIC": 536870912, + "FORCE_INTEGER": 33554432, + "FORCE_POSITIVE": 67108864, + "FORCE_RANGE": 134217728 + } + }, + "m_Flags": { + "type": "unsigned int", + "id": 3, + "offset": 156, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } + }, + "m_Window": { + "type": "class Rect", + "id": 4, + "offset": 160, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3105139380 + }, + "m_fTargetAlpha": { + "type": "float", + "id": 5, + "offset": 212, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1809129834 + }, + "m_fDisabledAlpha": { + "type": "float", + "id": 6, + "offset": 216, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1389987675 + }, + "m_fAlpha": { + "type": "float", + "id": 7, + "offset": 208, + "flags": 65671, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 482130755 + }, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3623628394 + }, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2102211316 + }, + "m_sScript": { + "type": "std::string", + "id": 10, + "offset": 352, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1846695875 + }, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3389835433 + }, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547159940 + }, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513510520 + }, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3091503757 + }, + "m_sText": { + "type": "std::wstring", + "id": 16, + "offset": 584, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2102642960 + }, + "m_nMaxLength": { + "type": "int", + "id": 17, + "offset": 620, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1183478416 + }, + "m_bPassword": { + "type": "bool", + "id": 18, + "offset": 624, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1604468200 + }, + "m_bLog": { + "type": "bool", + "id": 19, + "offset": 625, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 221687287 + }, + "m_previousNext": { + "type": "bool", + "id": 20, + "offset": 627, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 858581071 + }, + "m_nMaxLogSize": { + "type": "int", + "id": 21, + "offset": 712, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 779573899 + }, + "m_bEditing": { + "type": "bool", + "id": 22, + "offset": 616, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1243218553 + }, + "m_bAllowPaste": { + "type": "bool", + "id": 23, + "offset": 626, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1129316721 + }, + "m_nLogPosition": { + "type": "int", + "id": 24, + "offset": 704, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1120160767 + }, + "m_nCursor": { + "type": "int", + "id": 25, + "offset": 716, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1876782150 + }, + "m_nEditBegin": { + "type": "int", + "id": 26, + "offset": 720, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1066592403 + }, + "m_nEditEnd": { + "type": "int", + "id": 27, + "offset": 724, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1560905669 + }, + "m_sSavedText": { + "type": "std::wstring", + "id": 28, + "offset": 728, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2197953283 + }, + "m_fCursorBlinkSpeed": { + "type": "float", + "id": 29, + "offset": 760, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2232655228 + }, + "m_fCursorTimer": { + "type": "float", + "id": 30, + "offset": 764, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1929942748 + }, + "m_bCursorBlink": { + "type": "bool", + "id": 31, + "offset": 768, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 683441507 + }, + "m_fMinRange": { + "type": "double", + "id": 32, + "offset": 776, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3079523396 + }, + "m_fMaxRange": { + "type": "double", + "id": 33, + "offset": 784, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3876551814 + }, + "m_nPrecision": { + "type": "int", + "id": 34, + "offset": 792, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1404974196 + }, + "m_bDeleteOnFirstChar": { + "type": "bool", + "id": 35, + "offset": 618, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 902105643 + } + } + }, + "79199821": { + "name": "class WhirlyBurlyRoundData*", + "bases": [ + "PropertyClass" + ], + "hash": 79199821, + "properties": { + "m_roundNumber": { + "type": "unsigned char", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1040180705 + }, + "m_maximumRounds": { + "type": "unsigned char", + "id": 1, + "offset": 73, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1709082345 + }, + "m_planningTurnTime": { + "type": "unsigned char", + "id": 2, + "offset": 74, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1183728479 + }, + "m_blueTeamScore": { + "type": "unsigned int", + "id": 3, + "offset": 76, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1519259416 + }, + "m_orangeTeamScore": { + "type": "unsigned int", + "id": 4, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 988508012 + }, + "m_redTeamScore": { + "type": "unsigned int", + "id": 5, + "offset": 84, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1672048811 + }, + "m_passport": { + "type": "unsigned int", + "id": 6, + "offset": 88, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1362521513 + }, + "m_team1": { + "type": "unsigned char", + "id": 7, + "offset": 92, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1448349512 + }, + "m_team2": { + "type": "unsigned char", + "id": 8, + "offset": 93, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1448349513 + }, + "m_team3": { + "type": "unsigned char", + "id": 9, + "offset": 94, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1448349514 + }, + "m_handList": { + "type": "unsigned int", + "id": 10, + "offset": 96, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1650111716 + } + } + }, + "935899440": { + "name": "class TreasureShopModifiers", + "bases": [ + "PropertyClass" + ], + "hash": 935899440, + "properties": { + "m_buyPriceMultiplier": { + "type": "int", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 999902276 + } + } + }, + "78346375": { + "name": "class SharedPointer", + "bases": [ + "TreasureCardPosterBehaviorBase", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 78346375, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_spellData": { + "type": "std::string", + "id": 1, + "offset": 128, + "flags": 575, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2688126101 + } + } + }, + "77595229": { + "name": "class WizStatisticEffectConfig*", + "bases": [ + "PropertyClass" + ], + "hash": 77595229, + "properties": { + "m_accuracyScalarBase": { + "type": "float", + "id": 0, + "offset": 76, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": true, + "pointer": false, + "hash": 1121339315 + }, + "m_powerPipScalarBase": { + "type": "float", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": true, + "pointer": false, + "hash": 137046174 + }, + "m_damageResistanceScalarBase": { + "type": "float", + "id": 2, + "offset": 84, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": true, + "pointer": false, + "hash": 926091704 + }, + "m_accuracyScalingFactor": { + "type": "float", + "id": 3, + "offset": 88, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": true, + "pointer": false, + "hash": 1629583970 + }, + "m_powerPipScalingFactor": { + "type": "float", + "id": 4, + "offset": 92, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": true, + "pointer": false, + "hash": 290142061 + }, + "m_damageResistanceScalingFactor": { + "type": "float", + "id": 5, + "offset": 96, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": true, + "pointer": false, + "hash": 845265479 + }, + "m_criticalHitLevelThreshold": { + "type": "int", + "id": 6, + "offset": 100, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": true, + "pointer": false, + "hash": 278823695 + }, + "m_blockLevelThreshold": { + "type": "int", + "id": 7, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": true, + "pointer": false, + "hash": 639576458 + }, + "m_accuracyLevelThreshold": { + "type": "int", + "id": 8, + "offset": 108, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": true, + "pointer": false, + "hash": 458488426 + }, + "m_powerPipLevelThreshold": { + "type": "int", + "id": 9, + "offset": 112, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": true, + "pointer": false, + "hash": 1354062037 + }, + "m_damageResistanceLevelThreshold": { + "type": "int", + "id": 10, + "offset": 116, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": true, + "pointer": false, + "hash": 345781999 + }, + "m_critAndBlockLevelData": { + "type": "class SharedPointer", + "id": 11, + "offset": 136, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": true, + "pointer": true, + "hash": 2466687771 + }, + "m_criticalDamageAddPercent": { + "type": "float", + "id": 12, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": true, + "pointer": false, + "hash": 169683323 + }, + "m_criticalDamageAddPercentPvP": { + "type": "float", + "id": 13, + "offset": 124, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": true, + "pointer": false, + "hash": 1404103985 + }, + "m_criticalHealAddPercent": { + "type": "float", + "id": 14, + "offset": 128, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": true, + "pointer": false, + "hash": 637250262 + }, + "m_criticalHealAddPercentPvP": { + "type": "float", + "id": 15, + "offset": 132, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": true, + "pointer": false, + "hash": 297645228 + }, + "m_pipConversionLevelThreshold": { + "type": "int", + "id": 16, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": true, + "pointer": false, + "hash": 469925422 + }, + "m_pipConversionLevelData": { + "type": "class SharedPointer", + "id": 17, + "offset": 160, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": true, + "pointer": true, + "hash": 599333160 + }, + "m_baseCritDivisor": { + "type": "int", + "id": 18, + "offset": 176, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": true, + "pointer": false, + "hash": 1793948871 + }, + "m_baseBlockDivisor": { + "type": "int", + "id": 19, + "offset": 180, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": true, + "pointer": false, + "hash": 331192160 + }, + "m_critScalarDivisor": { + "type": "int", + "id": 20, + "offset": 184, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": true, + "pointer": false, + "hash": 353250050 + }, + "m_blockScalarDivisor": { + "type": "int", + "id": 21, + "offset": 188, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": true, + "pointer": false, + "hash": 778321147 + }, + "m_finalCritMedian1": { + "type": "float", + "id": 22, + "offset": 192, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": true, + "pointer": false, + "hash": 1779518738 + }, + "m_finalCritMedian2": { + "type": "float", + "id": 23, + "offset": 196, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": true, + "pointer": false, + "hash": 1779518739 + }, + "m_finalBlockMedian1": { + "type": "float", + "id": 24, + "offset": 200, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": true, + "pointer": false, + "hash": 2233508235 + }, + "m_finalBlockMedian2": { + "type": "float", + "id": 25, + "offset": 204, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": true, + "pointer": false, + "hash": 2233508236 + }, + "m_baseCritDivisorPvP": { + "type": "int", + "id": 26, + "offset": 208, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": true, + "pointer": false, + "hash": 650248157 + }, + "m_baseBlockDivisorPvP": { + "type": "int", + "id": 27, + "offset": 212, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": true, + "pointer": false, + "hash": 1814544342 + }, + "m_critScalarDivisorPvP": { + "type": "int", + "id": 28, + "offset": 216, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": true, + "pointer": false, + "hash": 2087471160 + }, + "m_blockScalarDivisorPvP": { + "type": "int", + "id": 29, + "offset": 220, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": true, + "pointer": false, + "hash": 668812177 + }, + "m_finalCritMedian1PvP": { + "type": "float", + "id": 30, + "offset": 224, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": true, + "pointer": false, + "hash": 849935720 + }, + "m_finalCritMedian2PvP": { + "type": "float", + "id": 31, + "offset": 228, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": true, + "pointer": false, + "hash": 849971657 + }, + "m_finalBlockMedian1PvP": { + "type": "float", + "id": 32, + "offset": 232, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": true, + "pointer": false, + "hash": 1437215553 + }, + "m_finalBlockMedian2PvP": { + "type": "float", + "id": 33, + "offset": 236, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": true, + "pointer": false, + "hash": 1437251490 + }, + "m_archmasteryFillRateScaler": { + "type": "float", + "id": 34, + "offset": 240, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": true, + "pointer": false, + "hash": 266116071 + }, + "m_archmasteryFillRateMax": { + "type": "float", + "id": 35, + "offset": 244, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": true, + "pointer": false, + "hash": 2006811155 + }, + "m_archmasteryFullnessMinPvE": { + "type": "float", + "id": 36, + "offset": 248, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": true, + "pointer": false, + "hash": 1196194389 + }, + "m_archmasteryFullnessMinPvP": { + "type": "float", + "id": 37, + "offset": 252, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": true, + "pointer": false, + "hash": 1196194400 + }, + "m_archmasteryConversionCost": { + "type": "float", + "id": 38, + "offset": 256, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": true, + "pointer": false, + "hash": 1687582297 + }, + "m_archmasteryPowerPipCost": { + "type": "float", + "id": 39, + "offset": 260, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": true, + "pointer": false, + "hash": 411547625 + } + } + }, + "1784391444": { + "name": "class ZoneTickEffect*", + "bases": [ + "GameEffectBase", + "PropertyClass" + ], + "hash": 1784391444, + "properties": { + "m_currentTickCount": { + "type": "double", + "id": 0, + "offset": 80, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2533274692 + }, + "m_effectNameID": { + "type": "unsigned int", + "id": 1, + "offset": 96, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1204067144 + }, + "m_bIsOnPet": { + "type": "bool", + "id": 2, + "offset": 73, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 522593303 + }, + "m_originatorID": { + "type": "gid", + "id": 3, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1131810019 + }, + "m_itemSlotID": { + "type": "unsigned int", + "id": 4, + "offset": 112, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1895747595 + }, + "m_internalID": { + "type": "int", + "id": 5, + "offset": 92, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1643137924 + }, + "m_endTime": { + "type": "unsigned int", + "id": 6, + "offset": 88, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 716479635 + }, + "m_tickOnAdd": { + "type": "bool", + "id": 7, + "offset": 128, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 663357284 + }, + "m_zoneEventName": { + "type": "std::string", + "id": 8, + "offset": 136, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2601481434 + }, + "m_tickRateSec": { + "type": "float", + "id": 9, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1559681353 + }, + "m_maxTicks": { + "type": "int", + "id": 10, + "offset": 172, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 155973918 + } + } + }, + "77139509": { + "name": "class LeashBehavior", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 77139509, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_ownerGid": { + "type": "gid", + "id": 1, + "offset": 128, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1765088663 + }, + "m_radius": { + "type": "float", + "id": 2, + "offset": 136, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 989410271 + }, + "m_angle": { + "type": "float", + "id": 3, + "offset": 140, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 878748702 + }, + "m_leashType": { + "type": "enum LeashType", + "id": 4, + "offset": 144, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2170708051, + "enum_options": { + "LLT_Rigid": 0, + "LLT_Elastic": 1 + } + }, + "m_alwaysDisplay": { + "type": "bool", + "id": 5, + "offset": 161, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2071781402 + } + } + }, + "936601892": { + "name": "class ClientRemoveHangingEffectCinematicAction*", + "bases": [ + "RemoveHangingEffectCinematicAction", + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 936601892, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + }, + "m_cloaked": { + "type": "bool", + "id": 2, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 7349510 + } + } + }, + "1347681001": { + "name": "class WindowTip*", + "bases": [ + "ControlText", + "Window", + "PropertyClass" + ], + "hash": 1347681001, + "properties": { + "m_sName": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306437263 + }, + "m_Children": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621225959 + }, + "m_Style": { + "type": "unsigned int", + "id": 2, + "offset": 152, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152, + "DO_NOT_WRAP": 134217728, + "FIT_TEXT": 268435456 + } + }, + "m_Flags": { + "type": "unsigned int", + "id": 3, + "offset": 156, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } + }, + "m_Window": { + "type": "class Rect", + "id": 4, + "offset": 160, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3105139380 + }, + "m_fTargetAlpha": { + "type": "float", + "id": 5, + "offset": 212, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1809129834 + }, + "m_fDisabledAlpha": { + "type": "float", + "id": 6, + "offset": 216, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1389987675 + }, + "m_fAlpha": { + "type": "float", + "id": 7, + "offset": 208, + "flags": 65671, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 482130755 + }, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3623628394 + }, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2102211316 + }, + "m_sScript": { + "type": "std::string", + "id": 10, + "offset": 352, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1846695875 + }, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3389835433 + }, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547159940 + }, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513510520 + }, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3091503757 + }, + "m_sText": { + "type": "std::wstring", + "id": 16, + "offset": 584, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2102642960 + }, + "m_sTooltip": { + "type": "std::wstring", + "id": 17, + "offset": 616, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1680475798 + }, + "m_bUseDropShadow": { + "type": "bool", + "id": 18, + "offset": 653, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 93063037 + }, + "m_bUseOutline": { + "type": "bool", + "id": 19, + "offset": 654, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 744292994 + }, + "m_bEnableWordWrap": { + "type": "bool", + "id": 20, + "offset": 655, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 430904562 + }, + "m_bEnableToggle": { + "type": "bool", + "id": 21, + "offset": 652, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1937994142 + }, + "m_nLeadingAdjust": { + "type": "int", + "id": 22, + "offset": 656, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1559480167 + } + } + }, + "1784271976": { + "name": "class ClassProjectProgressHistoryList*", + "bases": [ + "PropertyClass" + ], + "hash": 1784271976, + "properties": { + "m_progressHistoryList": { + "type": "int", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1514478333 + } + } + }, + "936417030": { + "name": "class SharedPointer", + "bases": [ + "IdleInterceptCinematicAction", + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 936417030, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + } + } + }, + "1347660521": { + "name": "class WindowTip", + "bases": [ + "ControlText", + "Window", + "PropertyClass" + ], + "hash": 1347660521, + "properties": { + "m_sName": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306437263 + }, + "m_Children": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621225959 + }, + "m_Style": { + "type": "unsigned int", + "id": 2, + "offset": 152, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152, + "DO_NOT_WRAP": 134217728, + "FIT_TEXT": 268435456 + } + }, + "m_Flags": { + "type": "unsigned int", + "id": 3, + "offset": 156, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 } + }, + "m_Window": { + "type": "class Rect", + "id": 4, + "offset": 160, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3105139380 + }, + "m_fTargetAlpha": { + "type": "float", + "id": 5, + "offset": 212, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1809129834 + }, + "m_fDisabledAlpha": { + "type": "float", + "id": 6, + "offset": 216, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1389987675 + }, + "m_fAlpha": { + "type": "float", + "id": 7, + "offset": 208, + "flags": 65671, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 482130755 + }, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3623628394 + }, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2102211316 + }, + "m_sScript": { + "type": "std::string", + "id": 10, + "offset": 352, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1846695875 + }, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3389835433 + }, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547159940 + }, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513510520 + }, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3091503757 + }, + "m_sText": { + "type": "std::wstring", + "id": 16, + "offset": 584, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2102642960 + }, + "m_sTooltip": { + "type": "std::wstring", + "id": 17, + "offset": 616, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1680475798 + }, + "m_bUseDropShadow": { + "type": "bool", + "id": 18, + "offset": 653, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 93063037 + }, + "m_bUseOutline": { + "type": "bool", + "id": 19, + "offset": 654, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 744292994 + }, + "m_bEnableWordWrap": { + "type": "bool", + "id": 20, + "offset": 655, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 430904562 + }, + "m_bEnableToggle": { + "type": "bool", + "id": 21, + "offset": 652, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1937994142 + }, + "m_nLeadingAdjust": { + "type": "int", + "id": 22, + "offset": 656, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1559480167 } } }, - "55394600": { - "name": "enum BGGroupStatusEnum", - "bases": [], - "hash": 55394600, - "properties": {} - }, - "1622997337": { - "name": "class ClientPlayGraphicOnActorAction*", + "935976055": { + "name": "class CrownShopButtonNameBehaviorTemplate", "bases": [ - "PlayGraphicOnActorAction", - "ActorCinematicAction", - "CinematicAction", + "BehaviorTemplate", "PropertyClass" ], - "hash": 1622997337, + "hash": 935976055, "properties": { - "m_timeOffset": { - "type": "float", + "m_behaviorName": { + "type": "std::string", "id": 0, "offset": 72, "flags": 7, @@ -593140,50 +538513,103 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 + "hash": 3130754092 }, - "m_actor": { + "m_buttonDisplayName": { "type": "std::string", "id": 1, - "offset": 80, + "offset": 120, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1916274798 + } + } + }, + "77913086": { + "name": "class NodeObject*", + "bases": [ + "PropertyClass" + ], + "hash": 77913086, + "properties": { + "m_location": { + "type": "class Vector3D", + "id": 0, + "offset": 72, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2285866132 + "hash": 2239683611 }, - "m_assetName": { - "type": "std::string", + "m_fRadius": { + "type": "float", + "id": 1, + "offset": 84, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 787972805 + }, + "m_id": { + "type": "gid", "id": 2, - "offset": 120, + "offset": 104, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1513131580 + "hash": 2090569797 }, - "m_bDontFlipActorYaw": { - "type": "bool", + "m_direction": { + "type": "float", "id": 3, - "offset": 152, + "offset": 88, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 632297791 + "hash": 1528165112 + }, + "m_roll": { + "type": "float", + "id": 4, + "offset": 92, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 310020272 + }, + "m_descriptor": { + "type": "class SharedPointer", + "id": 5, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1929260873 } } }, - "55216492": { - "name": "class SharedPointer", + "1784391604": { + "name": "class ZoneTickEffect", "bases": [ "GameEffectBase", "PropertyClass" ], - "hash": 55216492, + "hash": 1784391604, "properties": { "m_currentTickCount": { "type": "double", @@ -593308,114 +538734,475 @@ } } }, - "2023560016": { - "name": "class ConditionalSpellEffectRequirement", + "1347903865": { + "name": "class MonsterArenaBehaviorTemplate", "bases": [ - "Requirement", + "BehaviorTemplate", "PropertyClass" ], - "hash": 2023560016, + "hash": 1347903865, "properties": { - "m_applyNOT": { - "type": "bool", + "m_behaviorName": { + "type": "std::string", "id": 0, "offset": 72, - "flags": 31, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1746328074, - "enum_options": { - "__DEFAULT": 0 - } + "hash": 3130754092 + } + } + }, + "78046840": { + "name": "class std::list >", + "bases": [], + "hash": 78046840, + "properties": {} + }, + "1347897721": { + "name": "class MonsterArenaBehaviorTemplate*", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 1347897721, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + } + } + }, + "936682415": { + "name": "class QuestEffect*", + "bases": [ + "NamedEffect", + "GameEffectBase", + "PropertyClass" + ], + "hash": 936682415, + "properties": { + "m_currentTickCount": { + "type": "double", + "id": 0, + "offset": 80, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2533274692 }, - "m_operator": { - "type": "enum Requirement::Operator", + "m_effectNameID": { + "type": "unsigned int", "id": 1, - "offset": 76, - "flags": 2097183, + "offset": 96, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2672792317, - "enum_options": { - "ROP_AND": 0, - "ROP_OR": 1, - "__DEFAULT": "ROP_AND" - } + "hash": 1204067144 }, - "m_targetType": { - "type": "enum ConditionalSpellEffectRequirement::RequirementTarget", + "m_bIsOnPet": { + "type": "bool", "id": 2, - "offset": 80, - "flags": 2097159, + "offset": 73, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2547737902, - "enum_options": { - "RT_Caster": 0, - "RT_Target": 1 - } + "hash": 522593303 + }, + "m_originatorID": { + "type": "gid", + "id": 3, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1131810019 + }, + "m_itemSlotID": { + "type": "unsigned int", + "id": 4, + "offset": 112, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1895747595 + }, + "m_internalID": { + "type": "int", + "id": 5, + "offset": 92, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1643137924 + }, + "m_endTime": { + "type": "unsigned int", + "id": 6, + "offset": 88, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 716479635 + }, + "m_overrideName": { + "type": "std::string", + "id": 7, + "offset": 128, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1990707228 + }, + "m_startReqs": { + "type": "class SharedPointer", + "id": 8, + "offset": 168, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3147529602 + }, + "m_startResults": { + "type": "class SharedPointer", + "id": 9, + "offset": 184, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2094517692 + }, + "m_endResults": { + "type": "class SharedPointer", + "id": 10, + "offset": 200, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2118364133 } } }, - "452858476": { - "name": "class SharedPointer", + "1785530485": { + "name": "class SharedPointer", "bases": [ - "ResultSourceType", - "Result", + "ControlSprite", + "Window", "PropertyClass" ], - "hash": 452858476, + "hash": 1785530485, "properties": { - "m_sourceType": { + "m_sName": { "type": "std::string", "id": 0, "offset": 80, - "flags": 7, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2305508654 + "hash": 2306437263 }, - "m_zoneLevelMax": { - "type": "unsigned int", + "m_Children": { + "type": "class SharedPointer", "id": 1, - "offset": 76, - "flags": 263, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621225959 + }, + "m_Style": { + "type": "unsigned int", + "id": 2, + "offset": 152, + "flags": 1048583, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1028933895 + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "SCALE_CHILDREN": 2, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "FOCUS_LOCKED": 64, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152 + } }, - "m_zoneLevelMin": { + "m_Flags": { "type": "unsigned int", - "id": 2, - "offset": 72, - "flags": 263, + "id": 3, + "offset": 156, + "flags": 1048583, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1028934149 + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648, + "ONE_SHOT": 8388608, + "FLIPPED_HORIZONTAL": 16777216, + "FLIPPED_VERTICAL": 33554432 + } + }, + "m_Window": { + "type": "class Rect", + "id": 4, + "offset": 160, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3105139380 + }, + "m_fTargetAlpha": { + "type": "float", + "id": 5, + "offset": 212, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1809129834 + }, + "m_fDisabledAlpha": { + "type": "float", + "id": 6, + "offset": 216, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1389987675 + }, + "m_fAlpha": { + "type": "float", + "id": 7, + "offset": 208, + "flags": 65671, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 482130755 + }, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3623628394 + }, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2102211316 + }, + "m_sScript": { + "type": "std::string", + "id": 10, + "offset": 352, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1846695875 + }, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3389835433 + }, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547159940 + }, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513510520 + }, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3091503757 + }, + "m_pMaterial": { + "type": "class SharedPointer", + "id": 16, + "offset": 592, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3479277078 + }, + "m_fRotation": { + "type": "float", + "id": 17, + "offset": 608, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1175400173 + }, + "m_Color": { + "type": "class Color", + "id": 18, + "offset": 584, + "flags": 262279, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1753714077 + }, + "m_textColor": { + "type": "class Color", + "id": 19, + "offset": 612, + "flags": 262279, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2528109250 + }, + "m_textComponent": { + "type": "class TextComponent", + "id": 20, + "offset": 616, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3491704390 } } }, - "1621593527": { - "name": "class SharedPointer", + "936602532": { + "name": "class ClientRemoveHangingEffectCinematicAction", "bases": [ - "SwapShadowMaterialActorCinematicAction", + "RemoveHangingEffectCinematicAction", "ActorCinematicAction", "CinematicAction", "PropertyClass" ], - "hash": 1621593527, + "hash": 936602532, "properties": { "m_timeOffset": { "type": "float", @@ -593438,18 +539225,124 @@ "singleton": false, "pointer": false, "hash": 2285866132 + }, + "m_cloaked": { + "type": "bool", + "id": 2, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 7349510 } } }, - "439962601": { - "name": "class SharedPointer", + "1785229827": { + "name": "class ObstacleCourseObstaclePathBase", "bases": [ - "CantripsMajorInvisibilityEffect", - "CantripsInvisibilityEffect", + "ObstacleCourseObstacleBehavior", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1785229827, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + } + } + }, + "78845537": { + "name": "class RemoveTeamFromMatchUpdate*", + "bases": [ + "TournamentUpdate", + "PropertyClass" + ], + "hash": 78845537, + "properties": { + "m_teamID": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 982102220 + }, + "m_matchID": { + "type": "gid", + "id": 1, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1757621298 + } + } + }, + "1348860702": { + "name": "class SharedPointer", + "bases": [ + "Requirement", + "PropertyClass" + ], + "hash": 1348860702, + "properties": { + "m_applyNOT": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1746328074, + "enum_options": { + "__DEFAULT": 0 + } + }, + "m_operator": { + "type": "enum Requirement::Operator", + "id": 1, + "offset": 76, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2672792317, + "enum_options": { + "ROP_AND": 0, + "ROP_OR": 1, + "__DEFAULT": "ROP_AND" + } + } + } + }, + "1785100757": { + "name": "class ClientPetBoostPlayerStatEffect", + "bases": [ + "PetBoostPlayerStatEffect", + "WizStatisticEffect", + "StatisticEffect", "GameEffectBase", "PropertyClass" ], - "hash": 439962601, + "hash": 1785100757, "properties": { "m_currentTickCount": { "type": "double", @@ -593527,740 +539420,2030 @@ "singleton": false, "pointer": false, "hash": 716479635 + }, + "m_lookupIndex": { + "type": "int", + "id": 7, + "offset": 128, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1626623948 + }, + "m_damageBonusPercent": { + "type": "float", + "id": 8, + "offset": 136, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 623230606 + }, + "m_damageBonusFlat": { + "type": "float", + "id": 9, + "offset": 180, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2212039108 + }, + "m_accuracyBonusPercent": { + "type": "float", + "id": 10, + "offset": 140, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1972336538 + }, + "m_armorPiercingBonusPercent": { + "type": "float", + "id": 11, + "offset": 144, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1569912641 + }, + "m_damageReducePercent": { + "type": "float", + "id": 12, + "offset": 148, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 541736927 + }, + "m_damageReduceFlat": { + "type": "float", + "id": 13, + "offset": 152, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 684172469 + }, + "m_accuracyReducePercent": { + "type": "float", + "id": 14, + "offset": 156, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2112559723 + }, + "m_healBonusPercent": { + "type": "float", + "id": 15, + "offset": 160, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 562313577 + }, + "m_healIncBonusPercent": { + "type": "float", + "id": 16, + "offset": 164, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2182535587 + }, + "m_hitPointBonus": { + "type": "float", + "id": 17, + "offset": 204, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 880644461 + }, + "m_spellChargeBonus": { + "type": "int", + "id": 18, + "offset": 212, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2019610507 + }, + "m_powerPipBonusPercent": { + "type": "float", + "id": 19, + "offset": 168, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1671446341 + }, + "m_petActChance": { + "type": "int", + "id": 20, + "offset": 200, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 237418461 + }, + "m_manaBonus": { + "type": "float", + "id": 21, + "offset": 208, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1372708603 + }, + "m_expPercent": { + "type": "float", + "id": 22, + "offset": 184, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1147850677 + }, + "m_goldPercent": { + "type": "float", + "id": 23, + "offset": 188, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1095720878 + }, + "m_energyBonus": { + "type": "float", + "id": 24, + "offset": 216, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2223158984 + }, + "m_criticalHitRating": { + "type": "float", + "id": 25, + "offset": 220, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1978690540 + }, + "m_blockRating": { + "type": "float", + "id": 26, + "offset": 224, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2088486759 + }, + "m_accuracyRating": { + "type": "float", + "id": 27, + "offset": 228, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 165525575 + }, + "m_powerPipRating": { + "type": "float", + "id": 28, + "offset": 232, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1355340722 + }, + "m_damageResistanceRating": { + "type": "float", + "id": 29, + "offset": 240, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1961377740 + }, + "m_archmastery": { + "type": "float", + "id": 30, + "offset": 244, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1963579610 + }, + "m_archmasteryBonusPercent": { + "type": "float", + "id": 31, + "offset": 288, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1908627154 + }, + "m_balanceMastery": { + "type": "int", + "id": 32, + "offset": 248, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 149062181 + }, + "m_deathMastery": { + "type": "int", + "id": 33, + "offset": 252, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1421218661 + }, + "m_fireMastery": { + "type": "int", + "id": 34, + "offset": 256, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1431794949 + }, + "m_iceMastery": { + "type": "int", + "id": 35, + "offset": 260, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 704864240 + }, + "m_lifeMastery": { + "type": "int", + "id": 36, + "offset": 264, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2142136447 + }, + "m_mythMastery": { + "type": "int", + "id": 37, + "offset": 268, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1766317185 + }, + "m_stormMastery": { + "type": "int", + "id": 38, + "offset": 272, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1883988244 + }, + "m_stunResistancePercent": { + "type": "float", + "id": 39, + "offset": 276, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1868382627 + }, + "m_fishingLuckBonusPercent": { + "type": "float", + "id": 40, + "offset": 192, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1363349254 + }, + "m_shadowPipBonusPercent": { + "type": "float", + "id": 41, + "offset": 172, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1426533310 + }, + "m_wispBonusPercent": { + "type": "float", + "id": 42, + "offset": 196, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1304386546 + }, + "m_pipConversionRating": { + "type": "float", + "id": 43, + "offset": 280, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 246855691 + }, + "m_shadowPipRating": { + "type": "float", + "id": 44, + "offset": 236, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 507126123 + }, + "m_petID": { + "type": "gid", + "id": 45, + "offset": 304, + "flags": 24, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 806009486 + }, + "m_primaryStat1": { + "type": "std::string", + "id": 46, + "offset": 312, + "flags": 24, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2417808140 + }, + "m_primaryStat2": { + "type": "std::string", + "id": 47, + "offset": 344, + "flags": 24, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2417808141 + }, + "m_secondaryStat": { + "type": "std::string", + "id": 48, + "offset": 376, + "flags": 24, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3564684959 + }, + "m_secondaryValue": { + "type": "float", + "id": 49, + "offset": 408, + "flags": 24, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1728780796 } } }, - "1621009104": { - "name": "class NumItemInInventory*", + "78568446": { + "name": "class NodeObject", "bases": [ "PropertyClass" ], - "hash": 1621009104, + "hash": 78568446, "properties": { - "m_itemTemplateID": { - "type": "unsigned int", + "m_location": { + "type": "class Vector3D", "id": 0, "offset": 72, - "flags": 31, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2190120133 + "hash": 2239683611 }, - "m_numItemInInventory": { + "m_fRadius": { + "type": "float", + "id": 1, + "offset": 84, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 787972805 + }, + "m_id": { + "type": "gid", + "id": 2, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2090569797 + }, + "m_direction": { + "type": "float", + "id": 3, + "offset": 88, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1528165112 + }, + "m_roll": { + "type": "float", + "id": 4, + "offset": 92, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 310020272 + }, + "m_descriptor": { + "type": "class SharedPointer", + "id": 5, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1929260873 + } + } + }, + "936733999": { + "name": "class SharedPointer", + "bases": [ + "BurnInterceptCinematicAction", + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 936733999, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + } + } + }, + "1353792470": { + "name": "class PetTalentBaseTemplate*", + "bases": [ + "CoreTemplate", + "PropertyClass" + ], + "hash": 1353792470, + "properties": { + "m_behaviors": { + "type": "class BehaviorTemplate*", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1197808594 + }, + "m_talentName": { + "type": "std::string", + "id": 1, + "offset": 96, + "flags": 134217735, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2455147588 + }, + "m_displayName": { + "type": "std::string", + "id": 2, + "offset": 136, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2446900370 + }, + "m_description": { + "type": "std::string", + "id": 3, + "offset": 168, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1649374815 + }, + "m_imageIndex": { + "type": "unsigned int", + "id": 4, + "offset": 200, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1781902856 + }, + "m_imageName": { + "type": "std::string", + "id": 5, + "offset": 208, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2391520543 + }, + "m_rank": { + "type": "unsigned char", + "id": 6, + "offset": 240, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 857403388 + }, + "m_breedsAsTalentName": { + "type": "std::string", + "id": 7, + "offset": 248, + "flags": 268435463, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2143399629, + "enum_options": { + "__BASECLASS": "PetTalentBaseTemplate" + } + }, + "m_bRetired": { + "type": "bool", + "id": 8, + "offset": 280, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 904227684, + "enum_options": { + "__DEFAULT": 0 + } + }, + "m_unsearchable": { + "type": "bool", + "id": 9, + "offset": 281, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1760679968, + "enum_options": { + "__DEFAULT": 0 + } + } + } + }, + "1785326906": { + "name": "class std::list >", + "bases": [], + "hash": 1785326906, + "properties": {} + }, + "79121401": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 79121401, + "properties": { + "m_finalPosition": { "type": "int", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 309125241 + }, + "m_lootTable": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2539512673 + }, + "m_featuredTemplateIDList": { + "type": "unsigned int", + "id": 2, + "offset": 112, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 687120258 + } + } + }, + "937907618": { + "name": "class BattlegroundGroupStatus", + "bases": [ + "PropertyClass" + ], + "hash": 937907618, + "properties": { + "m_groupID": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1111292082 + }, + "m_members": { + "type": "class SharedPointer", + "id": 1, + "offset": 80, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2190987938 + } + } + }, + "1351220360": { + "name": "class WaypointGoalTemplate*", + "bases": [ + "GoalTemplate", + "CoreTemplate", + "PropertyClass" + ], + "hash": 1351220360, + "properties": { + "m_behaviors": { + "type": "class BehaviorTemplate*", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1197808594 + }, + "m_goalName": { + "type": "std::string", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1521627807 + }, + "m_goalNameID": { + "type": "unsigned int", + "id": 2, + "offset": 496, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 403158846 + }, + "m_goalTitle": { + "type": "std::string", + "id": 3, + "offset": 136, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2291910240 + }, + "m_goalUnderway": { + "type": "std::string", + "id": 4, + "offset": 168, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3153144269 + }, + "m_hyperlink": { + "type": "std::string", + "id": 5, + "offset": 200, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2887798993 + }, + "m_completeText": { + "type": "std::string", + "id": 6, + "offset": 232, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2767458393 + }, + "m_completeResults": { + "type": "class ResultList*", + "id": 7, + "offset": 440, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1964258099 + }, + "m_goalRequirements": { + "type": "class RequirementList*", + "id": 8, + "offset": 448, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2979967145 + }, + "m_tallyCounter": { + "type": "class TallyCounterTemplate*", + "id": 9, + "offset": 456, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1884546193 + }, + "m_locationName": { + "type": "std::string", + "id": 10, + "offset": 272, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1824218389 + }, + "m_displayImage1": { + "type": "std::string", + "id": 11, + "offset": 304, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1959572133 + }, + "m_displayImage2": { + "type": "std::string", + "id": 12, + "offset": 336, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1959572134 + }, + "m_clientTags": { + "type": "std::string", + "id": 13, + "offset": 368, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2319030025 + }, + "m_genericEvents": { + "type": "std::string", + "id": 14, + "offset": 384, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 3466670829 + }, + "m_autoQualify": { + "type": "bool", + "id": 15, + "offset": 400, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1878907431 + }, + "m_autoComplete": { + "type": "bool", + "id": 16, + "offset": 401, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1302545445 + }, + "m_destinationZone": { + "type": "std::string", + "id": 17, + "offset": 408, + "flags": 268435463, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2605356153, + "enum_options": { + "__BASECLASS": "ZoneData" + } + }, + "m_dialogList": { + "type": "class ActorDialogListBase*", + "id": 18, + "offset": 264, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1909154969 + }, + "m_goalType": { + "type": "enum GoalTemplate::GOAL_TYPE", + "id": 19, + "offset": 96, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1488021149, + "enum_options": { + "GOAL_TYPE_UNKNOWN": 0, + "GOAL_TYPE_BOUNTY": 1, + "GOAL_TYPE_BOUNTYCOLLECT": 2, + "GOAL_TYPE_SCAVENGE": 3, + "GOAL_TYPE_PERSONA": 4, + "GOAL_TYPE_WAYPOINT": 5, + "GOAL_TYPE_SCAVENGEFAKE": 6, + "GOAL_TYPE_ACHIEVERANK": 7, + "GOAL_TYPE_USAGE": 8, + "GOAL_TYPE_COMPLETEQUEST": 9, + "GOAL_TYPE_SOCIARANK": 10, + "GOAL_TYPE_SOCIACURRENCY": 11, + "GOAL_TYPE_SOCIAMINIGAME": 12, + "GOAL_TYPE_SOCIAGIVEITEM": 13, + "GOAL_TYPE_SOCIAGETITEM": 14, + "GOAL_TYPE_COLLECTAFTERBOUNTY": 15, + "GOAL_TYPE_ENCOUNTER_WAYPOINT_FOREACH": 16 + } + }, + "m_noQuestHelper": { + "type": "bool", + "id": 20, + "offset": 500, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 578010882, + "enum_options": { + "__DEFAULT": 0 + } + }, + "m_petOnlyQuest": { + "type": "bool", + "id": 21, + "offset": 501, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 679359344, + "enum_options": { + "__DEFAULT": 0 + } + }, + "m_activateResults": { + "type": "class ResultList*", + "id": 22, + "offset": 504, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3790153995 + }, + "m_hideGoalFloatyText": { + "type": "bool", + "id": 23, + "offset": 512, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1919383204, + "enum_options": { + "__DEFAULT": 0 + } + }, + "m_zoneEntry": { + "type": "bool", + "id": 24, + "offset": 520, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 739064065 + }, + "m_zoneTag": { + "type": "std::string", + "id": 25, + "offset": 528, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3405382643 + }, + "m_proximityTag": { + "type": "std::string", + "id": 26, + "offset": 560, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1743105804 + }, + "m_zoneExit": { + "type": "bool", + "id": 27, + "offset": 521, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 675650793 + } + } + }, + "1350596654": { + "name": "class SharedPointer", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1350596654, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + } + } + }, + "79194721": { + "name": "class WhirlyBurlyRoundDataAI", + "bases": [ + "PropertyClass" + ], + "hash": 79194721, + "properties": { + "m_team": { + "type": "unsigned char", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 857479191 + }, + "m_passport": { + "type": "unsigned int", "id": 1, "offset": 76, - "flags": 31, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1351636478 + "hash": 1362521513 + }, + "m_handList": { + "type": "unsigned int", + "id": 2, + "offset": 80, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1650111716 } } }, - "434748407": { - "name": "class SharedPointer", + "1350408327": { + "name": "class InfractionMessageBoxInfo", "bases": [ + "InfractionPenaltyInfo", "PropertyClass" ], - "hash": 434748407, + "hash": 1350408327, + "properties": { + "m_addAtPointValue": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1071217084 + }, + "m_removeAtPointValue": { + "type": "float", + "id": 1, + "offset": 76, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2112196961 + }, + "m_lifespan": { + "type": "std::string", + "id": 2, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3042809453 + }, + "m_titleKey": { + "type": "std::string", + "id": 3, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3096106918 + }, + "m_messageKey": { + "type": "std::string", + "id": 4, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3561518217 + } + } + }, + "1786373465": { + "name": "class CastleMagicTutorial*", + "bases": [ + "PropertyClass" + ], + "hash": 1786373465, + "properties": {} + }, + "941783554": { + "name": "class PetDyeToTexture", + "bases": [ + "PropertyClass" + ], + "hash": 941783554, "properties": { - "m_characterId": { - "type": "gid", + "m_dye": { + "type": "int", "id": 0, "offset": 72, - "flags": 31, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 210498418 + "hash": 267033084 }, - "m_pets": { - "type": "class SharedPointer", + "m_texture": { + "type": "int", "id": 1, - "offset": 80, - "flags": 31, - "container": "List", - "dynamic": true, + "offset": 76, + "flags": 7, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 521887012 + "pointer": false, + "hash": 222406987 } } }, - "2024668540": { - "name": "class CharacterSet*", + "940124961": { + "name": "class TrainBehaviorTemplate*", "bases": [ + "BehaviorTemplate", "PropertyClass" ], - "hash": 2024668540, + "hash": 940124961, "properties": { - "m_set": { - "type": "class SharedPointer", + "m_behaviorName": { + "type": "std::string", "id": 0, "offset": 72, "flags": 7, - "container": "List", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 848667448 + "pointer": false, + "hash": 3130754092 }, - "m_cost": { - "type": "unsigned int", + "m_introTime": { + "type": "float", "id": 1, - "offset": 88, + "offset": 120, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 430682758 + "hash": 2010936242 } } }, - "431503846": { - "name": "class ActorCinematicAction*", + "79763546": { + "name": "class SharedPointer", "bases": [ - "CinematicAction", "PropertyClass" ], - "hash": 431503846, + "hash": 79763546, + "properties": {} + }, + "939374927": { + "name": "class SpellCardAttachmentBehavior*", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 939374927, "properties": { - "m_timeOffset": { - "type": "float", + "m_behaviorTemplateNameID": { + "type": "unsigned int", "id": 0, - "offset": 72, - "flags": 7, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 + "hash": 223437287 }, - "m_actor": { + "m_spellNames": { "type": "std::string", "id": 1, - "offset": 80, - "flags": 7, + "offset": 112, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2136089135 + }, + "m_targetNode": { + "type": "std::string", + "id": 2, + "offset": 128, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2285866132 + "hash": 2698500040 + }, + "m_offset": { + "type": "class Vector3D", + "id": 3, + "offset": 160, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2445636425 + }, + "m_rotate": { + "type": "class Vector3D", + "id": 4, + "offset": 172, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2574199889 + }, + "m_height": { + "type": "float", + "id": 5, + "offset": 184, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 602977104 + }, + "m_alpha": { + "type": "float", + "id": 6, + "offset": 188, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 878686493 + }, + "m_cycleRate": { + "type": "float", + "id": 7, + "offset": 192, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 947046355 } } }, - "1621206145": { - "name": "class std::list >", - "bases": [], - "hash": 1621206145, - "properties": {} - }, - "58449372": { - "name": "class SharedPointer", + "1350840418": { + "name": "class ClassProjectTemplate*", "bases": [ - "GraphicalSpell", - "Spell", "PropertyClass" ], - "hash": 58449372, + "hash": 1350840418, "properties": { - "m_templateID": { - "type": "unsigned int", + "m_projectName": { + "type": "std::string", "id": 0, - "offset": 128, - "flags": 31, + "offset": 80, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1286746870 + "hash": 2223751667 }, - "m_enchantment": { - "type": "unsigned int", + "m_projectTitle": { + "type": "std::string", "id": 1, - "offset": 80, - "flags": 31, + "offset": 112, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2217886818 + "hash": 1839677492 }, - "m_pipCost": { - "type": "class SharedPointer", + "m_projectDescription": { + "type": "std::string", "id": 2, - "offset": 176, + "offset": 144, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3605704820 + "pointer": false, + "hash": 3174112214 }, - "m_regularAdjust": { - "type": "int", + "m_projectType": { + "type": "enum ClassProjectType", "id": 3, - "offset": 192, - "flags": 31, + "offset": 176, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1420453335 + "hash": 772612819, + "enum_options": { + "CPT_TreasureTower": 0, + "CPT_Battleground": 1, + "CPT_SideActivity": 2, + "CPT_SeasonPass": 3, + "CPT_PetActivity": 4, + "CPT_HousingSideActivity": 5, + "CPT_RateMyStitch": 6, + "CPT_MonthlyGauntlet": 7 + } }, - "m_magicSchoolID": { - "type": "unsigned int", + "m_initialHoliday": { + "type": "std::string", "id": 4, - "offset": 136, + "offset": 184, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 893146499 + "hash": 1940089679 }, - "m_accuracy": { - "type": "unsigned char", + "m_maximumLengthInDays": { + "type": "int", "id": 5, - "offset": 132, + "offset": 216, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2273914939 + "hash": 725301602 }, - "m_treasureCard": { - "type": "bool", + "m_crownsCost": { + "type": "int", "id": 6, - "offset": 197, - "flags": 31, + "offset": 220, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1764879128 + "hash": 1592212719 }, - "m_battleCard": { - "type": "bool", + "m_useRankAsProgress": { + "type": "int", "id": 7, - "offset": 198, - "flags": 31, + "offset": 224, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1332843753 + "hash": 878502460 }, - "m_itemCard": { - "type": "bool", + "m_rankProgressOffset": { + "type": "int", "id": 8, - "offset": 199, + "offset": 228, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1683654300 + "hash": 1364950050 }, - "m_sideBoard": { - "type": "bool", + "m_minimumCreditsPerDay": { + "type": "int", "id": 9, - "offset": 200, + "offset": 232, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1897838368 + "hash": 826102537 }, - "m_spellID": { + "m_leaderboardRewardItemID": { "type": "unsigned int", "id": 10, - "offset": 204, - "flags": 31, + "offset": 236, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1697483258 + "hash": 1667943971 }, - "m_leavesPlayWhenCastOverride": { - "type": "bool", + "m_leaderboardSize": { + "type": "int", "id": 11, - "offset": 216, - "flags": 31, + "offset": 240, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 874407398 + "hash": 683398282 }, - "m_cloaked": { - "type": "bool", + "m_mainDoodle": { + "type": "std::string", "id": 12, - "offset": 196, + "offset": 248, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 7349510 + "hash": 2211594423 }, - "m_enchantmentSpellIsItemCard": { - "type": "bool", + "m_purchasedCredits": { + "type": "int", "id": 13, - "offset": 76, - "flags": 31, + "offset": 280, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 531590701 + "hash": 2038693799 }, - "m_premutationSpellID": { - "type": "unsigned int", + "m_friendLootPosition": { + "type": "int", "id": 14, - "offset": 112, - "flags": 31, + "offset": 284, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1530256370 + "hash": 109123685 }, - "m_enchantedThisCombat": { - "type": "bool", + "m_friendLootTable": { + "type": "std::string", "id": 15, - "offset": 77, - "flags": 31, + "offset": 288, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1895738923 + "hash": 2327793817 }, - "m_paramOverrides": { - "type": "class SharedPointer", + "m_enterPortalText": { + "type": "std::string", "id": 16, - "offset": 224, - "flags": 31, - "container": "List", - "dynamic": true, + "offset": 320, + "flags": 7, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2061635599 + "pointer": false, + "hash": 2956016240 }, - "m_subEffectMeta": { - "type": "class SharedPointer", + "m_goldCost": { + "type": "int", "id": 17, - "offset": 240, - "flags": 31, - "container": "List", - "dynamic": true, + "offset": 352, + "flags": 7, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1944101106 + "pointer": false, + "hash": 444550297 }, - "m_delayEnchantment": { - "type": "bool", + "m_numberOfGoldCredits": { + "type": "int", "id": 18, - "offset": 257, - "flags": 287, + "offset": 356, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 191336919 + "hash": 1425904684 }, - "m_PvE": { - "type": "bool", + "m_restoreHealthAndManaAtExit": { + "type": "int", "id": 19, - "offset": 264, - "flags": 287, + "offset": 360, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 269492350 + "hash": 810519539 }, - "m_delayEnchantmentOrder": { - "type": "enum SpellEffect::kDelayOrder", + "m_endingGracePeriodInDays": { + "type": "int", "id": 20, - "offset": 72, - "flags": 287, + "offset": 364, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2526055263, - "enum_options": { - "SpellEffect::kAnyOrder": 0, - "SpellEffect::kFirst": 1, - "SpellEffect::kSecond": 2 - } + "hash": 953234780 }, - "m_roundAddedTC": { - "type": "int", + "m_eventTeleportZone": { + "type": "std::string", "id": 21, - "offset": 260, - "flags": 31, + "offset": 368, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 112365451 + "hash": 3270861128 }, - "m_secondarySchoolID": { - "type": "unsigned int", + "m_eventTeleportLocation": { + "type": "std::string", "id": 22, - "offset": 304, + "offset": 400, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2081206026 - } - } - }, - "431503822": { - "name": "class ActorCinematicAction", - "bases": [ - "CinematicAction", - "PropertyClass" - ], - "hash": 431503822, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, + "hash": 2332042341 + }, + "m_subscriberCreditsPerDay": { + "type": "int", + "id": 23, + "offset": 432, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 + "hash": 2010087361 }, - "m_actor": { + "m_extendedTemplateName": { "type": "std::string", - "id": 1, - "offset": 80, + "id": 24, + "offset": 440, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2285866132 - } - } - }, - "56489836": { - "name": "class ClassProjectActiveList*", - "bases": [ - "PropertyClass" - ], - "hash": 56489836, - "properties": { - "m_activeProjectList": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 534931707 - } - } - }, - "56448876": { - "name": "class ClassProjectActiveList", - "bases": [ - "PropertyClass" - ], - "hash": 56448876, - "properties": { - "m_activeProjectList": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 534931707 - } - } - }, - "2028806687": { - "name": "class SharedPointer", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 2028806687, - "properties": { - "m_behaviorName": { + "hash": 2221427049 + }, + "m_creditsOverrideName": { "type": "std::string", - "id": 0, - "offset": 72, + "id": 25, + "offset": 472, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3130754092 + "hash": 1508357386 }, - "m_animation1": { - "type": "std::string", - "id": 1, - "offset": 120, + "m_sortPriority": { + "type": "int", + "id": 26, + "offset": 504, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3030904012 + "hash": 967438884 }, - "m_animation2": { - "type": "std::string", - "id": 2, - "offset": 152, + "m_excludeFromSeasonPass": { + "type": "int", + "id": 27, + "offset": 508, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3030904013 + "hash": 1149583224 }, - "m_sound1": { - "type": "std::string", - "id": 3, - "offset": 184, + "m_isSeasonPass": { + "type": "int", + "id": 28, + "offset": 512, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2453262773 + "hash": 540828470 }, - "m_sound2": { - "type": "std::string", - "id": 4, - "offset": 216, + "m_autoStartYear": { + "type": "int", + "id": 29, + "offset": 516, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2453262774 + "hash": 1267259570 }, - "m_emoteText": { - "type": "std::string", - "id": 5, - "offset": 248, - "flags": 8388615, + "m_autoStartMonth": { + "type": "int", + "id": 30, + "offset": 520, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2426384538 + "hash": 1000688519 }, - "m_emoteType": { - "type": "enum CustomEmoteType", - "id": 6, - "offset": 280, - "flags": 2097159, + "m_autoStartDay": { + "type": "int", + "id": 31, + "offset": 524, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1172696222, - "enum_options": { - "CE_Emote": 0, - "CE_Teleport": 1, - "CE_Dance": 2 - } + "hash": 1990722463 }, - "m_isMemberEmote": { - "type": "bool", - "id": 7, - "offset": 284, + "m_maximumSeasonPassPoints": { + "type": "int", + "id": 32, + "offset": 528, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1406867457 + "hash": 1165009301 }, - "m_isDefaultEmote": { - "type": "bool", - "id": 8, - "offset": 285, + "m_subscriberCownsCost": { + "type": "int", + "id": 33, + "offset": 532, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1645218254 + "hash": 352653713 }, - "m_bitFieldNumber": { + "m_hideGlobalProgressBar": { "type": "int", - "id": 9, - "offset": 288, + "id": 34, + "offset": 536, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 59324198 - } - } - }, - "1622622830": { - "name": "class ClientSetTopTeamCinematicAction*", - "bases": [ - "SetTopTeamCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 1622622830, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, + "hash": 102179695 + }, + "m_seasonPassPicture": { + "type": "std::string", + "id": 35, + "offset": 552, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 + "hash": 2691396375 }, - "m_interpDuration": { - "type": "float", - "id": 1, - "offset": 80, + "m_top10LeaderboardBadgeName": { + "type": "std::string", + "id": 36, + "offset": 584, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237711951 - } - } - }, - "2028047017": { - "name": "class ClientHousingBlobStrategy", - "bases": [ - "BaseClientHousingBlobStrategy", - "BlobCacheInterface", - "PropertyClass" - ], - "hash": 2028047017, - "properties": {} - }, - "432772836": { - "name": "class ClientRenamePipActorsFromResult*", - "bases": [ - "RenamePipActorsFromResult", - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 432772836, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, + "hash": 2561324632 + }, + "m_top100LeaderboardBadgeName": { + "type": "std::string", + "id": 37, + "offset": 616, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 + "hash": 1556059944 }, - "m_actor": { + "m_top1LeaderboardBadgeName": { "type": "std::string", - "id": 1, - "offset": 80, + "id": 38, + "offset": 648, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2285866132 + "hash": 2266410888 }, - "m_newActorName": { - "type": "std::string", - "id": 2, - "offset": 120, + "m_activityList": { + "type": "class SharedPointer", + "id": 39, + "offset": 680, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 458837381 + }, + "m_rewardList": { + "type": "class SharedPointer", + "id": 40, + "offset": 696, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 4055911451 + }, + "m_tokenRewardList": { + "type": "class SharedPointer", + "id": 41, + "offset": 712, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 3225972988 + }, + "m_locationList": { + "type": "class SharedPointer", + "id": 42, + "offset": 728, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 776321471 + }, + "m_globalLootPointList": { + "type": "class SharedPointer", + "id": 43, + "offset": 744, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2460390565 + }, + "m_finalRewardList": { + "type": "class SharedPointer", + "id": 44, + "offset": 760, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 527856021 + }, + "m_featuredRewardList": { + "type": "class SharedPointer", + "id": 45, + "offset": 776, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 3028130027 + }, + "m_isBattlePass": { + "type": "int", + "id": 46, + "offset": 540, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2029131039 + "hash": 1473359625 }, - "m_newActorName2": { - "type": "std::string", - "id": 3, - "offset": 152, + "m_isEnabledProgressAdvancement": { + "type": "int", + "id": 47, + "offset": 544, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1852236785 + "hash": 1623438236 }, - "m_oldActorName": { + "m_extraDataList": { "type": "std::string", - "id": 4, - "offset": 184, + "id": 48, + "offset": 792, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2533725525 + }, + "m_isDisableActivitiesSection": { + "type": "int", + "id": 49, + "offset": 548, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2191892948 + "hash": 2093397492 } } }, - "1622169648": { - "name": "struct EquipSpellResponse", - "bases": [], - "hash": 1622169648, - "properties": {} - }, - "2026612444": { - "name": "class SharedPointer", - "bases": [ - "PhysicsSimMassSphere", - "PhysicsSimMass", - "PropertyClass" - ], - "hash": 2026612444, - "properties": {} - }, - "432625193": { - "name": "class SharedPointer", + "1788145811": { + "name": "class BGPolymorphSelectBehavior*", "bases": [ - "MonsterArenaBehaviorBase", "BehaviorInstance", "PropertyClass" ], - "hash": 432625193, + "hash": 1788145811, "properties": { "m_behaviorTemplateNameID": { "type": "unsigned int", @@ -594273,977 +541456,1127 @@ "pointer": false, "hash": 223437287 }, - "m_mobList": { - "type": "unsigned int", + "m_polyCategoryInactiveToRedTeamPlayers": { + "type": "gid", "id": 1, "offset": 112, - "flags": 65543, + "flags": 31, "container": "List", "dynamic": true, "singleton": false, "pointer": false, - "hash": 347281415 + "hash": 757020210 }, - "m_zoneGID": { + "m_polyCategoryUnavailableToRedTeamPlayers": { "type": "gid", "id": 2, "offset": 128, - "flags": 65543, - "container": "Static", - "dynamic": false, + "flags": 31, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 1907651624 + "hash": 1382977667 }, - "m_monsterData": { - "type": "std::string", + "m_polyCategoryInactiveToBlueTeamPlayers": { + "type": "gid", "id": 3, - "offset": 136, - "flags": 551, - "container": "Static", - "dynamic": false, + "offset": 144, + "flags": 31, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 3377737309 + "hash": 1877669599 + }, + "m_polyCategoryUnavailableToBlueTeamPlayers": { + "type": "gid", + "id": 4, + "offset": 160, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1059429200 } } }, - "58313837": { - "name": "class SharedPointer", + "79219297": { + "name": "class WhirlyBurlyRoundDataAI*", "bases": [ - "AuctionHouseOption", - "ServiceOptionBase", "PropertyClass" ], - "hash": 58313837, + "hash": 79219297, "properties": { - "m_serviceName": { - "type": "std::string", + "m_team": { + "type": "unsigned char", "id": 0, "offset": 72, - "flags": 31, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2206028813 + "hash": 857479191 }, - "m_iconKey": { - "type": "std::string", + "m_passport": { + "type": "unsigned int", "id": 1, - "offset": 168, - "flags": 31, + "offset": 76, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2457138637 + "hash": 1362521513 }, - "m_displayKey": { - "type": "std::string", + "m_handList": { + "type": "unsigned int", "id": 2, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, + "offset": 80, + "flags": 7, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 3023276954 - }, - "m_serviceIndex": { - "type": "unsigned int", - "id": 3, - "offset": 204, + "hash": 1650111716 + } + } + }, + "939097946": { + "name": "class PetDerbyResult*", + "bases": [ + "PropertyClass" + ], + "hash": 939097946, + "properties": { + "m_petNumber": { + "type": "int", + "id": 0, + "offset": 72, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2103126710 + "hash": 1254828 }, - "m_forceInteract": { - "type": "bool", - "id": 4, - "offset": 200, + "m_finishTime": { + "type": "float", + "id": 1, + "offset": 76, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1705789564 + "hash": 1090658759 }, - "m_auctionHousePurchaseKey": { - "type": "unsigned int", - "id": 5, - "offset": 216, + "m_tickets": { + "type": "int", + "id": 2, + "offset": 80, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 394777768 + "hash": 353703441 }, - "m_sellModifier": { - "type": "float", - "id": 6, - "offset": 220, + "m_gold": { + "type": "int", + "id": 3, + "offset": 84, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 360128886 - } - } - }, - "2025704763": { - "name": "class SharedPointer", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 2025704763, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 + "hash": 219423808 } } }, - "431884617": { - "name": "class AdventurePartyInfo", + "1350840394": { + "name": "class ClassProjectTemplate", "bases": [ "PropertyClass" ], - "hash": 431884617, + "hash": 1350840394, "properties": { - "m_adventurePartyGID": { - "type": "gid", + "m_projectName": { + "type": "std::string", "id": 0, - "offset": 72, + "offset": 80, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2003479882 + "hash": 2223751667 }, - "m_adventurePartyName": { - "type": "unsigned int", + "m_projectTitle": { + "type": "std::string", "id": 1, - "offset": 80, + "offset": 112, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1899719436 + "hash": 1839677492 }, - "m_adventurePartyNameLocale": { - "type": "int", + "m_projectDescription": { + "type": "std::string", "id": 2, - "offset": 84, + "offset": 144, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 695833705 + "hash": 3174112214 }, - "m_creationDate": { - "type": "unsigned int", + "m_projectType": { + "type": "enum ClassProjectType", "id": 3, - "offset": 88, - "flags": 7, + "offset": 176, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2141685120 + "hash": 772612819, + "enum_options": { + "CPT_TreasureTower": 0, + "CPT_Battleground": 1, + "CPT_SideActivity": 2, + "CPT_SeasonPass": 3, + "CPT_PetActivity": 4, + "CPT_HousingSideActivity": 5, + "CPT_RateMyStitch": 6, + "CPT_MonthlyGauntlet": 7 + } }, - "m_ownerGID": { - "type": "gid", + "m_initialHoliday": { + "type": "std::string", "id": 4, - "offset": 96, + "offset": 184, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1765087575 + "hash": 1940089679 }, - "m_ownerName": { - "type": "std::string", + "m_maximumLengthInDays": { + "type": "int", "id": 5, - "offset": 104, + "offset": 216, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1761521415 + "hash": 725301602 }, - "m_purposeType": { + "m_crownsCost": { "type": "int", "id": 6, - "offset": 136, + "offset": 220, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1148443466 + "hash": 1592212719 }, - "m_purposeWorldID": { - "type": "unsigned int", + "m_useRankAsProgress": { + "type": "int", "id": 7, - "offset": 140, + "offset": 224, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1790486832 + "hash": 878502460 }, - "m_flags": { - "type": "unsigned int", + "m_rankProgressOffset": { + "type": "int", "id": 8, - "offset": 144, + "offset": 228, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1005801050 + "hash": 1364950050 }, - "m_equippedHouseInstanceGID": { - "type": "gid", + "m_minimumCreditsPerDay": { + "type": "int", "id": 9, - "offset": 152, + "offset": 232, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 63247330 + "hash": 826102537 }, - "m_equippedInteriorInstanceGID": { - "type": "gid", + "m_leaderboardRewardItemID": { + "type": "unsigned int", "id": 10, - "offset": 160, + "offset": 236, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1578260586 + "hash": 1667943971 }, - "m_adventurePartyMemberList": { - "type": "class SharedPointer", + "m_leaderboardSize": { + "type": "int", "id": 11, - "offset": 168, + "offset": 240, "flags": 7, - "container": "List", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2861967351 + "pointer": false, + "hash": 683398282 }, - "m_messageBoardList": { - "type": "class SharedPointer", + "m_mainDoodle": { + "type": "std::string", "id": 12, - "offset": 184, + "offset": 248, "flags": 7, - "container": "List", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2175215327 + "pointer": false, + "hash": 2211594423 }, - "m_renameCooldownTime": { - "type": "unsigned int", + "m_purchasedCredits": { + "type": "int", "id": 13, - "offset": 200, + "offset": 280, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 762261177 + "hash": 2038693799 }, - "m_newOwnerTime": { - "type": "unsigned int", + "m_friendLootPosition": { + "type": "int", "id": 14, - "offset": 204, + "offset": 284, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 453769201 - } - } - }, - "1627590380": { - "name": "class PendingClassProjectFriendReward*", - "bases": [ - "PropertyClass" - ], - "hash": 1627590380, - "properties": {} - }, - "58890576": { - "name": "class WizardAutobotMobAvoidance*", - "bases": [ - "AutobotMobAvoidance", - "PropertyClass" - ], - "hash": 58890576, - "properties": {} - }, - "2027516117": { - "name": "class BattlegroundTemplateChat", - "bases": [ - "PropertyClass" - ], - "hash": 2027516117, - "properties": { - "m_projectID": { - "type": "unsigned int", - "id": 0, - "offset": 72, + "hash": 109123685 + }, + "m_friendLootTable": { + "type": "std::string", + "id": 15, + "offset": 288, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1263221425 + "hash": 2327793817 }, - "m_countdownSeconds": { - "type": "float", - "id": 1, - "offset": 76, + "m_enterPortalText": { + "type": "std::string", + "id": 16, + "offset": 320, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 255072071 + "hash": 2956016240 }, - "m_matchSize": { + "m_goldCost": { "type": "int", - "id": 2, - "offset": 80, + "id": 17, + "offset": 352, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 563704930 + "hash": 444550297 }, - "m_cancelCooldownSeconds": { + "m_numberOfGoldCredits": { "type": "int", - "id": 3, - "offset": 84, + "id": 18, + "offset": 356, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1074662868 + "hash": 1425904684 }, - "m_teamCount": { + "m_restoreHealthAndManaAtExit": { "type": "int", - "id": 4, - "offset": 88, + "id": 19, + "offset": 360, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1614476394 + "hash": 810519539 }, - "m_matchmakingList": { - "type": "class SharedPointer", - "id": 5, - "offset": 96, + "m_endingGracePeriodInDays": { + "type": "int", + "id": 20, + "offset": 364, "flags": 7, - "container": "List", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3012888769 - } - } - }, - "1625345198": { - "name": "class SharedPointer", - "bases": [ - "ControlCheckBox", - "ControlButton", - "Window", - "PropertyClass" - ], - "hash": 1625345198, - "properties": { - "m_sName": { + "pointer": false, + "hash": 953234780 + }, + "m_eventTeleportZone": { "type": "std::string", - "id": 0, - "offset": 80, - "flags": 135, + "id": 21, + "offset": 368, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2306437263 + "hash": 3270861128 }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, + "m_eventTeleportLocation": { + "type": "std::string", + "id": 22, + "offset": 400, + "flags": 7, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2621225959 + "pointer": false, + "hash": 2332042341 }, - "m_Style": { - "type": "unsigned int", - "id": 2, - "offset": 152, - "flags": 1048583, + "m_subscriberCreditsPerDay": { + "type": "int", + "id": 23, + "offset": 432, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152, - "EFFECT_SCALE": 67108864, - "LOCK_ICON_SIZE": 33554432, - "LEFT_TEXT": 536870912, - "NO_FIT_TEXT": 1073741824, - "CHECKBOX_TEXTOVERIMAGE": 16777216 - } + "hash": 2010087361 }, - "m_Flags": { - "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 1048583, + "m_extendedTemplateName": { + "type": "std::string", + "id": 24, + "offset": 440, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } + "hash": 2221427049 }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, - "flags": 135, + "m_creditsOverrideName": { + "type": "std::string", + "id": 25, + "offset": 472, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3105139380 + "hash": 1508357386 }, - "m_fTargetAlpha": { - "type": "float", - "id": 5, - "offset": 212, - "flags": 135, + "m_sortPriority": { + "type": "int", + "id": 26, + "offset": 504, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1809129834 + "hash": 967438884 }, - "m_fDisabledAlpha": { - "type": "float", - "id": 6, - "offset": 216, - "flags": 135, + "m_excludeFromSeasonPass": { + "type": "int", + "id": 27, + "offset": 508, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1389987675 + "hash": 1149583224 }, - "m_fAlpha": { - "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, + "m_isSeasonPass": { + "type": "int", + "id": 28, + "offset": 512, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 482130755 + "hash": 540828470 }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, + "m_autoStartYear": { + "type": "int", + "id": 29, + "offset": 516, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3623628394 + "pointer": false, + "hash": 1267259570 }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, + "m_autoStartMonth": { + "type": "int", + "id": 30, + "offset": 520, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2102211316 + "hash": 1000688519 }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, + "m_autoStartDay": { + "type": "int", + "id": 31, + "offset": 524, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1846695875 + "hash": 1990722463 }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, + "m_maximumSeasonPassPoints": { + "type": "int", + "id": 32, + "offset": 528, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3389835433 + "hash": 1165009301 }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, + "m_subscriberCownsCost": { + "type": "int", + "id": 33, + "offset": 532, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2547159940 + "hash": 352653713 }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, + "m_hideGlobalProgressBar": { + "type": "int", + "id": 34, + "offset": 536, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1513510520 + "hash": 102179695 }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, + "m_seasonPassPicture": { + "type": "std::string", + "id": 35, + "offset": 552, + "flags": 7, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 2587533771 + "hash": 2691396375 }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, + "m_top10LeaderboardBadgeName": { + "type": "std::string", + "id": 36, + "offset": 584, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3091503757 + "hash": 2561324632 }, - "m_bToggle": { - "type": "bool", - "id": 16, - "offset": 608, - "flags": 135, + "m_top100LeaderboardBadgeName": { + "type": "std::string", + "id": 37, + "offset": 616, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2071810903 + "hash": 1556059944 }, - "m_bButtonDown": { - "type": "bool", - "id": 17, - "offset": 609, - "flags": 135, + "m_top1LeaderboardBadgeName": { + "type": "std::string", + "id": 38, + "offset": 648, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 840041705 + "hash": 2266410888 }, - "m_sLabel": { - "type": "std::wstring", - "id": 18, - "offset": 616, - "flags": 4194439, + "m_activityList": { + "type": "class SharedPointer", + "id": 39, + "offset": 680, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 458837381 + }, + "m_rewardList": { + "type": "class SharedPointer", + "id": 40, + "offset": 696, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 4055911451 + }, + "m_tokenRewardList": { + "type": "class SharedPointer", + "id": 41, + "offset": 712, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 3225972988 + }, + "m_locationList": { + "type": "class SharedPointer", + "id": 42, + "offset": 728, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 776321471 + }, + "m_globalLootPointList": { + "type": "class SharedPointer", + "id": 43, + "offset": 744, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2460390565 + }, + "m_finalRewardList": { + "type": "class SharedPointer", + "id": 44, + "offset": 760, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 527856021 + }, + "m_featuredRewardList": { + "type": "class SharedPointer", + "id": 45, + "offset": 776, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 3028130027 + }, + "m_isBattlePass": { + "type": "int", + "id": 46, + "offset": 540, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2207009163 + "hash": 1473359625 }, - "m_labelOffset": { - "type": "class Rect", - "id": 19, - "offset": 832, - "flags": 135, + "m_isEnabledProgressAdvancement": { + "type": "int", + "id": 47, + "offset": 544, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1990646723 + "hash": 1623438236 }, - "m_pButton": { - "type": "class SharedPointer", - "id": 20, - "offset": 656, - "flags": 135, + "m_extraDataList": { + "type": "std::string", + "id": 48, + "offset": 792, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2533725525 + }, + "m_isDisableActivitiesSection": { + "type": "int", + "id": 49, + "offset": 548, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1543855875 + "pointer": false, + "hash": 2093397492 + } + } + }, + "1787742457": { + "name": "class QuestDynaModInfo*", + "bases": [ + "PropertyClass" + ], + "hash": 1787742457, + "properties": { + "m_hideObjects": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 487002423 }, - "m_HotKey": { - "type": "unsigned int", - "id": 21, - "offset": 672, - "flags": 135, + "m_alterState": { + "type": "bool", + "id": 1, + "offset": 73, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1631553409 + "hash": 1458202892 }, - "m_Color": { - "type": "class Color", - "id": 22, - "offset": 676, - "flags": 262279, + "m_zoneTag": { + "type": "std::string", + "id": 2, + "offset": 80, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1753714077 + "hash": 3405382643 }, - "m_bCursorOver": { - "type": "bool", - "id": 23, - "offset": 689, - "flags": 135, + "m_modState": { + "type": "std::string", + "id": 3, + "offset": 112, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 283981103 + "hash": 1770855548 }, - "m_bAbortWhenCursorNotOver": { + "m_existBeyondQuest": { "type": "bool", - "id": 24, - "offset": 706, - "flags": 135, + "id": 4, + "offset": 74, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 325405258 + "hash": 923590707 + } + } + }, + "79199845": { + "name": "class WhirlyBurlyRoundData", + "bases": [ + "PropertyClass" + ], + "hash": 79199845, + "properties": { + "m_roundNumber": { + "type": "unsigned char", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1040180705 }, - "m_bHotKeyDown": { - "type": "bool", - "id": 25, - "offset": 680, - "flags": 135, + "m_maximumRounds": { + "type": "unsigned char", + "id": 1, + "offset": 73, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 616989185 + "hash": 1709082345 }, - "m_fTime": { - "type": "float", - "id": 26, - "offset": 684, - "flags": 135, + "m_planningTurnTime": { + "type": "unsigned char", + "id": 2, + "offset": 74, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 883746156 + "hash": 1183728479 }, - "m_bGreyed": { - "type": "bool", - "id": 27, - "offset": 688, - "flags": 135, + "m_blueTeamScore": { + "type": "unsigned int", + "id": 3, + "offset": 76, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1566556053 + "hash": 1519259416 }, - "m_fMaxScale": { - "type": "float", - "id": 28, - "offset": 692, - "flags": 135, + "m_orangeTeamScore": { + "type": "unsigned int", + "id": 4, + "offset": 80, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2070186635 + "hash": 988508012 }, - "m_fScaleSpeed": { - "type": "float", - "id": 29, - "offset": 696, - "flags": 135, + "m_redTeamScore": { + "type": "unsigned int", + "id": 5, + "offset": 84, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1457135702 + "hash": 1672048811 }, - "m_bUseDropShadow": { - "type": "bool", - "id": 30, - "offset": 704, - "flags": 135, + "m_passport": { + "type": "unsigned int", + "id": 6, + "offset": 88, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 93063037 + "hash": 1362521513 }, - "m_bUseOutline": { - "type": "bool", - "id": 31, - "offset": 705, - "flags": 135, + "m_team1": { + "type": "unsigned char", + "id": 7, + "offset": 92, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 744292994 + "hash": 1448349512 }, - "m_pGreyedState": { - "type": "class SharedPointer", - "id": 32, - "offset": 768, - "flags": 135, + "m_team2": { + "type": "unsigned char", + "id": 8, + "offset": 93, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2703352263 + "pointer": false, + "hash": 1448349513 }, - "m_pNormalState": { - "type": "class SharedPointer", - "id": 33, - "offset": 752, - "flags": 135, + "m_team3": { + "type": "unsigned char", + "id": 9, + "offset": 94, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, + "pointer": false, + "hash": 1448349514 + }, + "m_handList": { + "type": "unsigned int", + "id": 10, + "offset": 96, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1650111716 + } + } + }, + "939093706": { + "name": "class PetDerbyResults*", + "bases": [ + "PropertyClass" + ], + "hash": 939093706, + "properties": { + "m_resultList": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, "pointer": true, - "hash": 1887909808 + "hash": 1783304302 + } + } + }, + "1787628863": { + "name": "class SharedPointer", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 1787628863, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 }, - "m_pHighlightedState": { - "type": "class SharedPointer", - "id": 34, - "offset": 784, - "flags": 135, + "m_actionType": { + "type": "enum PetDerbyActions", + "id": 1, + "offset": 120, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2200177608 + "pointer": false, + "hash": 2398162476, + "enum_options": { + "PDA_None": 0, + "PDA_Duck": 2, + "PDA_Jump": 1 + } }, - "m_pSelectedState": { - "type": "class SharedPointer", - "id": 35, - "offset": 800, - "flags": 135, + "m_canDestroy": { + "type": "bool", + "id": 2, + "offset": 124, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2266776432 + "pointer": false, + "hash": 1271539151 }, - "m_pDepressedState": { - "type": "class SharedPointer", - "id": 36, - "offset": 816, - "flags": 135, + "m_decisionRadius": { + "type": "float", + "id": 3, + "offset": 128, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1878185798 + "pointer": false, + "hash": 104770413 }, - "m_nGroupID": { + "m_moraleIncrease": { "type": "int", - "id": 37, - "offset": 880, - "flags": 135, + "id": 4, + "offset": 132, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 403966850 + "hash": 202238852 }, - "m_bChecked": { - "type": "bool", - "id": 38, - "offset": 884, - "flags": 135, + "m_spinEffect": { + "type": "std::string", + "id": 5, + "offset": 184, + "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 958955100 + "hash": 1896457826 }, - "m_pCheckedState": { - "type": "class SharedPointer", - "id": 39, - "offset": 888, - "flags": 135, + "m_impactSound": { + "type": "std::string", + "id": 6, + "offset": 216, + "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1210539694 + "pointer": false, + "hash": 2087348962 }, - "m_pCheckedGreyedState": { - "type": "class SharedPointer", - "id": 40, - "offset": 904, - "flags": 135, + "m_addToWorldSound": { + "type": "std::string", + "id": 7, + "offset": 248, + "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, + "pointer": false, + "hash": 3324219384 + }, + "m_derbyEffectList": { + "type": "class SharedPointer", + "id": 8, + "offset": 136, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, "pointer": true, - "hash": 2702030126 + "hash": 1276867926 }, - "m_pCheckedHighlightedState": { - "type": "class SharedPointer", - "id": 41, - "offset": 920, - "flags": 135, - "container": "Static", - "dynamic": false, + "m_onActionSuccessEffectList": { + "type": "class SharedPointer", + "id": 9, + "offset": 152, + "flags": 7, + "container": "List", + "dynamic": true, "singleton": false, "pointer": true, - "hash": 1320097679 + "hash": 1046745620 }, - "m_pCheckedDepressedState": { - "type": "class SharedPointer", - "id": 42, - "offset": 936, - "flags": 135, + "m_onActionFailEffectList": { + "type": "class SharedPointer", + "id": 10, + "offset": 168, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 901707255 + } + } + }, + "938694050": { + "name": "class BattlegroundGroupStatus*", + "bases": [ + "PropertyClass" + ], + "hash": 938694050, + "properties": { + "m_groupID": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, + "pointer": false, + "hash": 1111292082 + }, + "m_members": { + "type": "class SharedPointer", + "id": 1, + "offset": 80, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, "pointer": true, - "hash": 1609188685 + "hash": 2190987938 } } }, - "58565767": { - "name": "class ReqHasEntry*", + "1787578617": { + "name": "class QuestDynaModInfo", "bases": [ - "Requirement", "PropertyClass" ], - "hash": 58565767, + "hash": 1787578617, "properties": { - "m_applyNOT": { + "m_hideObjects": { "type": "bool", "id": 0, "offset": 72, - "flags": 31, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1746328074, - "enum_options": { - "__DEFAULT": 0 - } + "hash": 487002423 }, - "m_operator": { - "type": "enum Requirement::Operator", + "m_alterState": { + "type": "bool", "id": 1, - "offset": 76, - "flags": 2097183, + "offset": 73, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2672792317, - "enum_options": { - "ROP_AND": 0, - "ROP_OR": 1, - "__DEFAULT": "ROP_AND" - } + "hash": 1458202892 }, - "m_entryName": { + "m_zoneTag": { "type": "std::string", "id": 2, "offset": 80, @@ -595252,55 +542585,63 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 2055270734 + "hash": 3405382643 }, - "m_displayName": { + "m_modState": { "type": "std::string", "id": 3, "offset": 112, - "flags": 287, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2446900370 + "hash": 1770855548 }, - "m_isQuestRegistry": { + "m_existBeyondQuest": { "type": "bool", "id": 4, - "offset": 144, + "offset": 74, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1388902362 - }, - "m_questName": { - "type": "std::string", - "id": 5, - "offset": 152, - "flags": 268435463, + "hash": 923590707 + } + } + }, + "79538461": { + "name": "class SharedPointer", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 79538461, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1702112846, - "enum_options": { - "__BASECLASS": "QuestTemplate" - } + "hash": 223437287 } } }, - "2027231740": { - "name": "class CrownShopSettings*", + "1351604036": { + "name": "class SharedPointer", "bases": [ + "CinematicAction", "PropertyClass" ], - "hash": 2027231740, + "hash": 1351604036, "properties": { - "m_saleFilter": { - "type": "bool", + "m_timeOffset": { + "type": "float", "id": 0, "offset": 72, "flags": 7, @@ -595308,1100 +542649,1297 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 1462249118 + "hash": 2237098605 }, - "m_newUsableFilter": { - "type": "bool", + "m_maximumDurationInSeconds": { + "type": "float", "id": 1, - "offset": 73, + "offset": 80, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1923088319 + "hash": 1457214913 }, - "m_buttonView": { + "m_hideUI": { "type": "bool", "id": 2, - "offset": 74, + "offset": 84, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1893157642 + "hash": 519818283 }, - "m_theBattleReadyItemTemplateID": { - "type": "unsigned int", + "m_stopMovement": { + "type": "bool", "id": 3, - "offset": 76, + "offset": 85, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 494853047 + "hash": 1752496036 } } }, - "434506272": { - "name": "class InstanceSigilOption*", + "939096778": { + "name": "class PetDerbyResults", "bases": [ - "ServiceOptionBase", "PropertyClass" ], - "hash": 434506272, + "hash": 939096778, "properties": { - "m_serviceName": { - "type": "std::string", + "m_resultList": { + "type": "class SharedPointer", "id": 0, "offset": 72, "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2206028813 - }, - "m_iconKey": { - "type": "std::string", - "id": 1, - "offset": 168, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2457138637 - }, - "m_displayKey": { - "type": "std::string", - "id": 2, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3023276954 - }, - "m_serviceIndex": { - "type": "unsigned int", - "id": 3, - "offset": 204, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2103126710 - }, - "m_forceInteract": { - "type": "bool", - "id": 4, - "offset": 200, - "flags": 31, - "container": "Static", - "dynamic": false, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 1705789564 + "pointer": true, + "hash": 1783304302 } } }, - "1624948453": { - "name": "class DdSprite*", + "1351220400": { + "name": "class WaypointGoalTemplate", "bases": [ - "ControlSprite", - "Window", + "GoalTemplate", + "CoreTemplate", "PropertyClass" ], - "hash": 1624948453, + "hash": 1351220400, "properties": { - "m_sName": { - "type": "std::string", + "m_behaviors": { + "type": "class BehaviorTemplate*", "id": 0, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306437263 - }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 65671, + "offset": 72, + "flags": 7, "container": "Vector", "dynamic": true, "singleton": false, "pointer": true, - "hash": 2621225959 + "hash": 1197808594 }, - "m_Style": { + "m_goalName": { + "type": "std::string", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1521627807 + }, + "m_goalNameID": { "type": "unsigned int", "id": 2, - "offset": 152, - "flags": 1048583, + "offset": 496, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "SCALE_CHILDREN": 2, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "FOCUS_LOCKED": 64, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152 - } + "hash": 403158846 }, - "m_Flags": { - "type": "unsigned int", + "m_goalTitle": { + "type": "std::string", "id": 3, - "offset": 156, - "flags": 1048583, + "offset": 136, + "flags": 8388615, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648, - "ONE_SHOT": 8388608, - "FLIPPED_HORIZONTAL": 16777216, - "FLIPPED_VERTICAL": 33554432 - } + "hash": 2291910240 }, - "m_Window": { - "type": "class Rect", + "m_goalUnderway": { + "type": "std::string", "id": 4, - "offset": 160, - "flags": 135, + "offset": 168, + "flags": 8388615, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3105139380 + "hash": 3153144269 }, - "m_fTargetAlpha": { - "type": "float", + "m_hyperlink": { + "type": "std::string", "id": 5, - "offset": 212, - "flags": 135, + "offset": 200, + "flags": 8388615, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1809129834 + "hash": 2887798993 }, - "m_fDisabledAlpha": { - "type": "float", + "m_completeText": { + "type": "std::string", "id": 6, - "offset": 216, - "flags": 135, + "offset": 232, + "flags": 8388615, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1389987675 + "hash": 2767458393 }, - "m_fAlpha": { - "type": "float", + "m_completeResults": { + "type": "class ResultList*", "id": 7, - "offset": 208, - "flags": 65671, + "offset": 440, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 482130755 + "pointer": true, + "hash": 1964258099 }, - "m_pWindowStyle": { - "type": "class SharedPointer", + "m_goalRequirements": { + "type": "class RequirementList*", "id": 8, - "offset": 232, - "flags": 135, + "offset": 448, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": true, - "hash": 3623628394 + "hash": 2979967145 }, - "m_sHelp": { - "type": "std::wstring", + "m_tallyCounter": { + "type": "class TallyCounterTemplate*", "id": 9, - "offset": 248, - "flags": 4194439, + "offset": 456, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 2102211316 + "pointer": true, + "hash": 1884546193 }, - "m_sScript": { + "m_locationName": { "type": "std::string", "id": 10, - "offset": 352, - "flags": 135, + "offset": 272, + "flags": 8388615, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1846695875 + "hash": 1824218389 }, - "m_Offset": { - "type": "class Point", + "m_displayImage1": { + "type": "std::string", "id": 11, - "offset": 192, - "flags": 135, + "offset": 304, + "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3389835433 + "hash": 1959572133 }, - "m_Scale": { - "type": "class Point", + "m_displayImage2": { + "type": "std::string", "id": 12, - "offset": 200, - "flags": 135, + "offset": 336, + "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2547159940 + "hash": 1959572134 }, - "m_sTip": { - "type": "std::wstring", + "m_clientTags": { + "type": "std::string", "id": 13, - "offset": 392, - "flags": 4194439, - "container": "Static", - "dynamic": false, + "offset": 368, + "flags": 7, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 1513510520 + "hash": 2319030025 }, - "m_BubbleList": { - "type": "class WindowBubble", + "m_genericEvents": { + "type": "std::string", "id": 14, - "offset": 424, - "flags": 135, + "offset": 384, + "flags": 7, "container": "List", "dynamic": true, "singleton": false, "pointer": false, - "hash": 2587533771 + "hash": 3466670829 }, - "m_ParentOffset": { - "type": "class Rect", + "m_autoQualify": { + "type": "bool", "id": 15, - "offset": 176, - "flags": 135, + "offset": 400, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3091503757 + "hash": 1878907431 }, - "m_pMaterial": { - "type": "class SharedPointer", + "m_autoComplete": { + "type": "bool", "id": 16, - "offset": 592, - "flags": 135, + "offset": 401, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3479277078 + "pointer": false, + "hash": 1302545445 }, - "m_fRotation": { - "type": "float", + "m_destinationZone": { + "type": "std::string", "id": 17, - "offset": 608, - "flags": 135, + "offset": 408, + "flags": 268435463, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1175400173 + "hash": 2605356153, + "enum_options": { + "__BASECLASS": "ZoneData" + } }, - "m_Color": { - "type": "class Color", + "m_dialogList": { + "type": "class ActorDialogListBase*", "id": 18, - "offset": 584, - "flags": 262279, + "offset": 264, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1753714077 + "pointer": true, + "hash": 1909154969 }, - "m_textColor": { - "type": "class Color", + "m_goalType": { + "type": "enum GoalTemplate::GOAL_TYPE", "id": 19, - "offset": 612, - "flags": 262279, + "offset": 96, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2528109250 + "hash": 1488021149, + "enum_options": { + "GOAL_TYPE_UNKNOWN": 0, + "GOAL_TYPE_BOUNTY": 1, + "GOAL_TYPE_BOUNTYCOLLECT": 2, + "GOAL_TYPE_SCAVENGE": 3, + "GOAL_TYPE_PERSONA": 4, + "GOAL_TYPE_WAYPOINT": 5, + "GOAL_TYPE_SCAVENGEFAKE": 6, + "GOAL_TYPE_ACHIEVERANK": 7, + "GOAL_TYPE_USAGE": 8, + "GOAL_TYPE_COMPLETEQUEST": 9, + "GOAL_TYPE_SOCIARANK": 10, + "GOAL_TYPE_SOCIACURRENCY": 11, + "GOAL_TYPE_SOCIAMINIGAME": 12, + "GOAL_TYPE_SOCIAGIVEITEM": 13, + "GOAL_TYPE_SOCIAGETITEM": 14, + "GOAL_TYPE_COLLECTAFTERBOUNTY": 15, + "GOAL_TYPE_ENCOUNTER_WAYPOINT_FOREACH": 16 + } }, - "m_textComponent": { - "type": "class TextComponent", + "m_noQuestHelper": { + "type": "bool", "id": 20, - "offset": 616, - "flags": 135, + "offset": 500, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3491704390 + "hash": 578010882, + "enum_options": { + "__DEFAULT": 0 + } + }, + "m_petOnlyQuest": { + "type": "bool", + "id": 21, + "offset": 501, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 679359344, + "enum_options": { + "__DEFAULT": 0 + } + }, + "m_activateResults": { + "type": "class ResultList*", + "id": 22, + "offset": 504, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3790153995 + }, + "m_hideGoalFloatyText": { + "type": "bool", + "id": 23, + "offset": 512, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1919383204, + "enum_options": { + "__DEFAULT": 0 + } + }, + "m_zoneEntry": { + "type": "bool", + "id": 24, + "offset": 520, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 739064065 + }, + "m_zoneTag": { + "type": "std::string", + "id": 25, + "offset": 528, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3405382643 + }, + "m_proximityTag": { + "type": "std::string", + "id": 26, + "offset": 560, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1743105804 + }, + "m_zoneExit": { + "type": "bool", + "id": 27, + "offset": 521, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 675650793 } } }, - "433991010": { - "name": "class ObjectLocationList", + "1787676233": { + "name": "class LocationTemplate*", "bases": [ "PropertyClass" ], - "hash": 433991010, + "hash": 1787676233, "properties": { - "m_objectList": { - "type": "class SharedPointer", + "m_locName": { + "type": "std::string", "id": 0, "offset": 72, "flags": 7, - "container": "List", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 931236576 + "pointer": false, + "hash": 2490843130 + }, + "m_location": { + "type": "class Vector3D", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2239683611 + }, + "m_direction": { + "type": "float", + "id": 2, + "offset": 116, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1528165112 } } }, - "1624947813": { - "name": "class DdSprite", + "80235820": { + "name": "class ZoneTickEffectTemplate", "bases": [ - "ControlSprite", - "Window", + "GameEffectTemplate", "PropertyClass" ], - "hash": 1624947813, + "hash": 80235820, "properties": { - "m_sName": { + "m_effectName": { "type": "std::string", "id": 0, - "offset": 80, - "flags": 135, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2306437263 + "hash": 2029161513 }, - "m_Children": { - "type": "class SharedPointer", + "m_effectCategory": { + "type": "std::string", "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2621225959 + "pointer": false, + "hash": 1852673222 }, - "m_Style": { - "type": "unsigned int", + "m_sortOrder": { + "type": "int", "id": 2, - "offset": 152, - "flags": 1048583, + "offset": 148, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "SCALE_CHILDREN": 2, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "FOCUS_LOCKED": 64, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152 - } + "hash": 1411218206 }, - "m_Flags": { - "type": "unsigned int", + "m_duration": { + "type": "double", "id": 3, - "offset": 156, - "flags": 1048583, + "offset": 192, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648, - "ONE_SHOT": 8388608, - "FLIPPED_HORIZONTAL": 16777216, - "FLIPPED_VERTICAL": 33554432 - } + "hash": 2727932435 }, - "m_Window": { - "type": "class Rect", + "m_stackingCategories": { + "type": "std::string", "id": 4, "offset": 160, - "flags": 135, - "container": "Static", - "dynamic": false, + "flags": 7, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 3105139380 + "hash": 1774497525 }, - "m_fTargetAlpha": { - "type": "float", + "m_isPersistent": { + "type": "bool", "id": 5, - "offset": 212, - "flags": 135, + "offset": 153, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1809129834 + "hash": 923861920 }, - "m_fDisabledAlpha": { - "type": "float", + "m_bIsOnPet": { + "type": "bool", "id": 6, - "offset": 216, - "flags": 135, + "offset": 154, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1389987675 + "hash": 522593303 }, - "m_fAlpha": { - "type": "float", + "m_isPublic": { + "type": "bool", "id": 7, - "offset": 208, - "flags": 65671, + "offset": 152, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 482130755 + "hash": 1728439822 }, - "m_pWindowStyle": { - "type": "class SharedPointer", + "m_visualEffectAddName": { + "type": "std::string", "id": 8, - "offset": 232, - "flags": 135, + "offset": 200, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3623628394 + "pointer": false, + "hash": 3382086694 }, - "m_sHelp": { - "type": "std::wstring", + "m_visualEffectRemoveName": { + "type": "std::string", "id": 9, - "offset": 248, - "flags": 4194439, + "offset": 232, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2102211316 + "hash": 1541697323 }, - "m_sScript": { + "m_onAddFunctorName": { "type": "std::string", "id": 10, - "offset": 352, - "flags": 135, + "offset": 280, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1846695875 + "hash": 1561843107 }, - "m_Offset": { - "type": "class Point", + "m_onRemoveFunctorName": { + "type": "std::string", "id": 11, - "offset": 192, - "flags": 135, + "offset": 312, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3389835433 + "hash": 2559017864 }, - "m_Scale": { - "type": "class Point", + "m_stackingRule": { + "type": "enum STACKING_RULE", "id": 12, - "offset": 200, - "flags": 135, + "offset": 144, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2547159940 + "hash": 431568889, + "enum_options": { + "STACKING_ALLOWED": 0, + "STACKING_NOSTACK": 1, + "STACKING_REPLACE": 2 + } }, - "m_sTip": { - "type": "std::wstring", + "m_tickOnAdd": { + "type": "bool", "id": 13, - "offset": 392, - "flags": 4194439, + "offset": 360, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1513510520 + "hash": 663357284 }, - "m_BubbleList": { - "type": "class WindowBubble", + "m_zoneEventName": { + "type": "std::string", "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, + "offset": 368, + "flags": 7, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 2587533771 + "hash": 2601481434 }, - "m_ParentOffset": { - "type": "class Rect", + "m_tickRateSec": { + "type": "float", "id": 15, - "offset": 176, - "flags": 135, + "offset": 400, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3091503757 + "hash": 1559681353 }, - "m_pMaterial": { - "type": "class SharedPointer", + "m_maxTicks": { + "type": "int", "id": 16, - "offset": 592, - "flags": 135, + "offset": 404, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3479277078 + "pointer": false, + "hash": 155973918 + } + } + }, + "79932554": { + "name": "class TrainBehaviorBase*", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 79932554, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 }, - "m_fRotation": { - "type": "float", - "id": 17, - "offset": 608, - "flags": 135, + "m_trainData": { + "type": "std::string", + "id": 1, + "offset": 128, + "flags": 575, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1175400173 + "hash": 2994039667 + } + } + }, + "939374607": { + "name": "class SpellCardAttachmentBehavior", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 939374607, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 }, - "m_Color": { - "type": "class Color", - "id": 18, - "offset": 584, - "flags": 262279, + "m_spellNames": { + "type": "std::string", + "id": 1, + "offset": 112, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2136089135 + }, + "m_targetNode": { + "type": "std::string", + "id": 2, + "offset": 128, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1753714077 + "hash": 2698500040 }, - "m_textColor": { - "type": "class Color", - "id": 19, - "offset": 612, - "flags": 262279, + "m_offset": { + "type": "class Vector3D", + "id": 3, + "offset": 160, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2528109250 + "hash": 2445636425 }, - "m_textComponent": { - "type": "class TextComponent", - "id": 20, - "offset": 616, - "flags": 135, + "m_rotate": { + "type": "class Vector3D", + "id": 4, + "offset": 172, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3491704390 + "hash": 2574199889 + }, + "m_height": { + "type": "float", + "id": 5, + "offset": 184, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 602977104 + }, + "m_alpha": { + "type": "float", + "id": 6, + "offset": 188, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 878686493 + }, + "m_cycleRate": { + "type": "float", + "id": 7, + "offset": 192, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 947046355 } } }, - "58611215": { - "name": "class TeleportProximityBehavior", + "1353579900": { + "name": "class CharacterSet", "bases": [ - "TeleportProximityBehaviorBase", - "BehaviorInstance", "PropertyClass" ], - "hash": 58611215, + "hash": 1353579900, "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", + "m_set": { + "type": "class SharedPointer", "id": 0, - "offset": 104, - "flags": 39, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 848667448 + }, + "m_cost": { + "type": "unsigned int", + "id": 1, + "offset": 88, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 + "hash": 430682758 } } }, - "1624781959": { - "name": "class PetDropGameSettings", + "1787762264": { + "name": "class DerbyAffectEffects", "bases": [ + "DerbyEffect", "PropertyClass" ], - "hash": 1624781959, + "hash": 1787762264, "properties": { - "m_uPathID": { - "type": "unsigned int", + "m_buffType": { + "type": "enum DerbyTalentBuffType", "id": 0, - "offset": 72, - "flags": 7, + "offset": 92, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 876142428 + "hash": 1149251982, + "enum_options": { + "Buff": 0, + "Debuff": 1, + "Neither": 2 + } }, - "m_nFullnessScoreTarget": { - "type": "int", + "m_kTarget": { + "type": "enum DerbyTargetType", "id": 1, - "offset": 76, - "flags": 7, + "offset": 96, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 293633463 + "hash": 1807803351, + "enum_options": { + "kTargetInFront": 0, + "kTargetBehind": 1, + "kTargetFirst": 2, + "kTargetSelf": 3, + "kTargetAll": 4, + "kTargetLast": 5 + } }, - "m_nTimeLimitInSeconds": { + "m_nDuration": { "type": "int", "id": 2, - "offset": 80, - "flags": 7, + "offset": 104, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1125165468 + "hash": 1110167982 }, - "m_nWeightChangeInSeconds": { - "type": "int", + "m_effectID": { + "type": "unsigned int", "id": 3, - "offset": 84, - "flags": 7, + "offset": 88, + "flags": 24, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1881631612 + "hash": 2347630439 }, - "m_fDropsPerSecondAtStart": { - "type": "float", + "m_imageFilename": { + "type": "std::string", "id": 4, - "offset": 88, - "flags": 7, + "offset": 112, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 752496235 + "hash": 2813328063 }, - "m_fDropsPerSecondAtEnd": { - "type": "float", + "m_iconIndex": { + "type": "unsigned int", "id": 5, - "offset": 92, - "flags": 7, + "offset": 144, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1684240180 + "hash": 1265133262 }, - "m_fCatchDistance": { - "type": "float", + "m_soundOnActivate": { + "type": "std::string", "id": 6, - "offset": 96, - "flags": 7, + "offset": 152, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 879620619 + "hash": 1956929714 }, - "m_fFreezeSpeed": { - "type": "float", + "m_soundOnTarget": { + "type": "std::string", "id": 7, - "offset": 100, - "flags": 7, + "offset": 184, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1366477327 + "hash": 3444214056 }, - "m_fSpeedNormal": { - "type": "float", + "m_targetParticleEffect": { + "type": "std::string", "id": 8, - "offset": 104, - "flags": 7, + "offset": 216, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1038542199 + "hash": 3048234723 }, - "m_fSpeedBonus": { - "type": "float", + "m_overheadMessage": { + "type": "std::string", "id": 9, - "offset": 108, - "flags": 7, + "offset": 248, + "flags": 8388639, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1406294645 + "hash": 1701018190 }, - "m_fSpeedPenalty": { - "type": "float", + "m_requirements": { + "type": "class RequirementList", "id": 10, - "offset": 112, - "flags": 7, + "offset": 280, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1356789899 + "hash": 2840988582 }, - "m_fInitialItemHeight": { - "type": "float", + "m_nNumBuffs": { + "type": "int", "id": 11, - "offset": 116, - "flags": 7, + "offset": 376, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2124739791 + "hash": 1860427310 }, - "m_fGroundHeight": { - "type": "float", + "m_nNumDebuffs": { + "type": "int", "id": 12, - "offset": 120, - "flags": 7, + "offset": 380, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2050728741 - }, - "m_fPetHeight": { + "hash": 637090007 + } + } + }, + "79772677": { + "name": "class CritAndBlockValues*", + "bases": [ + "PropertyClass" + ], + "hash": 79772677, + "properties": { + "m_capValue": { "type": "float", - "id": 13, - "offset": 124, + "id": 0, + "offset": 88, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2094176095 + "hash": 1100002568 }, - "m_fJumpHeight": { + "m_criticalHitScalarBase": { "type": "float", - "id": 14, - "offset": 128, + "id": 1, + "offset": 72, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1742092018 + "hash": 448021976 }, - "m_fMaxScaleIncrease": { + "m_criticalHitScalingFactor": { "type": "float", - "id": 15, - "offset": 132, + "id": 2, + "offset": 76, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1883110517 + "hash": 322634343 }, - "m_sItemHitGroundSound": { - "type": "std::string", - "id": 16, - "offset": 136, - "flags": 131079, + "m_blockScalarBase": { + "type": "float", + "id": 3, + "offset": 80, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1678384346 + "hash": 1713825491 }, - "m_sItemHitGroundFX": { - "type": "std::string", - "id": 17, - "offset": 168, + "m_blockScalingFactor": { + "type": "float", + "id": 4, + "offset": 84, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1855437679 - }, - "m_foodItems": { - "type": "class SharedPointer", - "id": 18, - "offset": 200, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2404207033 + "hash": 1504920962 } } }, - "2028473291": { - "name": "class SharedPointer", + "939098106": { + "name": "class PetDerbyResult", "bases": [ - "CastEffectCinematicAction", - "BaseEffectCinematicAction", - "CinematicAction", "PropertyClass" ], - "hash": 2028473291, + "hash": 939098106, "properties": { - "m_timeOffset": { - "type": "float", + "m_petNumber": { + "type": "int", "id": 0, "offset": 72, - "flags": 7, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 + "hash": 1254828 }, - "m_effectRel": { - "type": "enum BaseEffectCinematicAction::kEffectRelative", + "m_finishTime": { + "type": "float", "id": 1, - "offset": 80, - "flags": 2097159, + "offset": 76, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2978921287, - "enum_options": { - "kNone": 0, - "kSigil": 1, - "kTarget": 2, - "kSource": 3, - "kActor": 4 - } + "hash": 1090658759 }, - "m_namedActor": { - "type": "std::string", + "m_tickets": { + "type": "int", "id": 2, - "offset": 88, - "flags": 7, + "offset": 80, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3413532537 + "hash": 353703441 + }, + "m_gold": { + "type": "int", + "id": 3, + "offset": 84, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 219423808 } } }, - "434658633": { - "name": "enum RequestedSigilMode", - "bases": [], - "hash": 434658633, - "properties": {} - }, - "59304277": { - "name": "struct GamebryoClient::NavPathDisplayOptions", - "bases": [], - "hash": 59304277, - "properties": {} + "1352786064": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1352786064, + "properties": { + "m_bGlobalEffect": { + "type": "bool", + "id": 0, + "offset": 112, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1403478355 + }, + "m_globalEffect": { + "type": "class SharedPointer", + "id": 1, + "offset": 120, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 967055913 + }, + "m_battlefieldEffects": { + "type": "class SharedPointer", + "id": 2, + "offset": 136, + "flags": 31, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1245973515 + } + } }, - "1625241486": { - "name": "class PolymorphEffect*", + "1351843379": { + "name": "class ClientDerbyLockLane", "bases": [ - "GameEffectBase", + "DerbyLockLane", + "DerbyEffect", "PropertyClass" ], - "hash": 1625241486, + "hash": 1351843379, "properties": { - "m_currentTickCount": { - "type": "double", + "m_buffType": { + "type": "enum DerbyTalentBuffType", "id": 0, - "offset": 80, - "flags": 63, + "offset": 92, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2533274692 + "hash": 1149251982, + "enum_options": { + "Buff": 0, + "Debuff": 1, + "Neither": 2 + } }, - "m_effectNameID": { - "type": "unsigned int", + "m_kTarget": { + "type": "enum DerbyTargetType", "id": 1, "offset": 96, - "flags": 63, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1204067144 + "hash": 1807803351, + "enum_options": { + "kTargetInFront": 0, + "kTargetBehind": 1, + "kTargetFirst": 2, + "kTargetSelf": 3, + "kTargetAll": 4, + "kTargetLast": 5 + } }, - "m_bIsOnPet": { - "type": "bool", + "m_nDuration": { + "type": "int", "id": 2, - "offset": 73, + "offset": 104, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 522593303 + "hash": 1110167982 }, - "m_originatorID": { - "type": "gid", + "m_effectID": { + "type": "unsigned int", "id": 3, - "offset": 104, - "flags": 39, + "offset": 88, + "flags": 24, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1131810019 + "hash": 2347630439 }, - "m_itemSlotID": { - "type": "unsigned int", + "m_imageFilename": { + "type": "std::string", "id": 4, "offset": 112, - "flags": 63, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1895747595 + "hash": 2813328063 }, - "m_internalID": { - "type": "int", + "m_iconIndex": { + "type": "unsigned int", "id": 5, - "offset": 92, - "flags": 63, + "offset": 144, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1643137924 + "hash": 1265133262 }, - "m_endTime": { - "type": "unsigned int", + "m_soundOnActivate": { + "type": "std::string", "id": 6, - "offset": 88, - "flags": 31, + "offset": 152, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 716479635 + "hash": 1956929714 }, - "m_templateID": { - "type": "unsigned int", + "m_soundOnTarget": { + "type": "std::string", "id": 7, - "offset": 128, + "offset": 184, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3444214056 + }, + "m_targetParticleEffect": { + "type": "std::string", + "id": 8, + "offset": 216, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3048234723 + }, + "m_overheadMessage": { + "type": "std::string", + "id": 9, + "offset": 248, + "flags": 8388639, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1701018190 + }, + "m_requirements": { + "type": "class RequirementList", + "id": 10, + "offset": 280, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1286746870 + "hash": 2840988582 } } }, - "2030626927": { - "name": "class HousingSignOperator*", + "1787774537": { + "name": "class LocationTemplate", "bases": [ - "HelpChatOperator", "PropertyClass" ], - "hash": 2030626927, + "hash": 1787774537, "properties": { - "m_rootElement": { - "type": "class HelpChatElement", + "m_locName": { + "type": "std::string", "id": 0, "offset": 72, "flags": 7, @@ -596409,21 +543947,42 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 2242085258 + "hash": 2490843130 + }, + "m_location": { + "type": "class Vector3D", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2239683611 + }, + "m_direction": { + "type": "float", + "id": 2, + "offset": 116, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1528165112 } } }, - "436552184": { - "name": "class SharedPointer", + "80276780": { + "name": "class ZoneTickEffectTemplate*", "bases": [ - "ActorCinematicAction", - "CinematicAction", + "GameEffectTemplate", "PropertyClass" ], - "hash": 436552184, + "hash": 80276780, "properties": { - "m_timeOffset": { - "type": "float", + "m_effectName": { + "type": "std::string", "id": 0, "offset": 72, "flags": 7, @@ -596431,770 +543990,650 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 + "hash": 2029161513 }, - "m_actor": { + "m_effectCategory": { "type": "std::string", "id": 1, - "offset": 80, + "offset": 104, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2285866132 - } - } - }, - "1625236366": { - "name": "class PolymorphEffect", - "bases": [ - "GameEffectBase", - "PropertyClass" - ], - "hash": 1625236366, - "properties": { - "m_currentTickCount": { + "hash": 1852673222 + }, + "m_sortOrder": { + "type": "int", + "id": 2, + "offset": 148, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1411218206 + }, + "m_duration": { "type": "double", - "id": 0, - "offset": 80, - "flags": 63, + "id": 3, + "offset": 192, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2533274692 + "hash": 2727932435 }, - "m_effectNameID": { - "type": "unsigned int", - "id": 1, - "offset": 96, - "flags": 63, + "m_stackingCategories": { + "type": "std::string", + "id": 4, + "offset": 160, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1774497525 + }, + "m_isPersistent": { + "type": "bool", + "id": 5, + "offset": 153, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1204067144 + "hash": 923861920 }, "m_bIsOnPet": { "type": "bool", - "id": 2, - "offset": 73, - "flags": 31, + "id": 6, + "offset": 154, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, "hash": 522593303 }, - "m_originatorID": { - "type": "gid", - "id": 3, - "offset": 104, - "flags": 39, + "m_isPublic": { + "type": "bool", + "id": 7, + "offset": 152, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1131810019 + "hash": 1728439822 }, - "m_itemSlotID": { - "type": "unsigned int", - "id": 4, - "offset": 112, - "flags": 63, + "m_visualEffectAddName": { + "type": "std::string", + "id": 8, + "offset": 200, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1895747595 + "hash": 3382086694 }, - "m_internalID": { - "type": "int", - "id": 5, - "offset": 92, - "flags": 63, + "m_visualEffectRemoveName": { + "type": "std::string", + "id": 9, + "offset": 232, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1643137924 + "hash": 1541697323 }, - "m_endTime": { - "type": "unsigned int", - "id": 6, - "offset": 88, - "flags": 31, + "m_onAddFunctorName": { + "type": "std::string", + "id": 10, + "offset": 280, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 716479635 + "hash": 1561843107 }, - "m_templateID": { - "type": "unsigned int", - "id": 7, - "offset": 128, - "flags": 31, + "m_onRemoveFunctorName": { + "type": "std::string", + "id": 11, + "offset": 312, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1286746870 + "hash": 2559017864 + }, + "m_stackingRule": { + "type": "enum STACKING_RULE", + "id": 12, + "offset": 144, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 431568889, + "enum_options": { + "STACKING_ALLOWED": 0, + "STACKING_NOSTACK": 1, + "STACKING_REPLACE": 2 + } + }, + "m_tickOnAdd": { + "type": "bool", + "id": 13, + "offset": 360, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 663357284 + }, + "m_zoneEventName": { + "type": "std::string", + "id": 14, + "offset": 368, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2601481434 + }, + "m_tickRateSec": { + "type": "float", + "id": 15, + "offset": 400, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1559681353 + }, + "m_maxTicks": { + "type": "int", + "id": 16, + "offset": 404, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 155973918 } } }, - "61741842": { - "name": "class CountBasedSpellEffect", + "939602914": { + "name": "class std::list >", + "bases": [], + "hash": 939602914, + "properties": {} + }, + "1353357255": { + "name": "class SharedPointer", "bases": [ - "SpellEffect", + "CombatSigilTemplate", + "SigilTemplate", + "CoreTemplate", "PropertyClass" ], - "hash": 61741842, + "hash": 1353357255, "properties": { - "m_effectType": { - "type": "enum SpellEffect::kSpellEffects", + "m_behaviors": { + "type": "class BehaviorTemplate*", "id": 0, "offset": 72, - "flags": 2097183, - "container": "Static", - "dynamic": false, + "flags": 7, + "container": "Vector", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 2578255295, - "enum_options": { - "kInvalidSpellEffect": 0, - "kDamage": 1, - "kDamageNoCrit": 2, - "kHeal": 3, - "kHealPercent": 4, - "kSetHealPercent": 113, - "kStealHealth": 5, - "kReduceOverTime": 6, - "kDetonateOverTime": 7, - "kPushCharm": 8, - "kStealCharm": 9, - "kPushWard": 10, - "kStealWard": 11, - "kPushOverTime": 12, - "kStealOverTime": 13, - "kRemoveCharm": 14, - "kRemoveWard": 15, - "kRemoveOverTime": 16, - "kRemoveAura": 17, - "kSwapAll": 18, - "kSwapCharm": 19, - "kSwapWard": 20, - "kSwapOverTime": 21, - "kModifyIncomingDamage": 22, - "kModifyIncomingDamageFlat": 119, - "kMaximumIncomingDamage": 23, - "kModifyIncomingHeal": 24, - "kModifyIncomingHealFlat": 118, - "kModifyIncomingDamageType": 25, - "kModifyIncomingArmorPiercing": 26, - "kModifyOutgoingDamage": 27, - "kModifyOutgoingDamageFlat": 121, - "kModifyOutgoingHeal": 28, - "kModifyOutgoingHealFlat": 120, - "kModifyOutgoingDamageType": 29, - "kModifyOutgoingArmorPiercing": 30, - "kModifyOutgoingStealHealth": 31, - "kModifyIncomingStealHealth": 32, - "kBounceNext": 33, - "kBouncePrevious": 34, - "kBounceBack": 35, - "kBounceAll": 36, - "kAbsorbDamage": 37, - "kAbsorbHeal": 38, - "kModifyAccuracy": 39, - "kDispel": 40, - "kConfusion": 41, - "kCloakedCharm": 42, - "kCloakedWard": 43, - "kStunResist": 44, - "kClue": 111, - "kPipConversion": 45, - "kCritBoost": 46, - "kCritBlock": 47, - "kPolymorph": 48, - "kDelayCast": 49, - "kModifyCardCloak": 50, - "kModifyCardDamage": 51, - "kModifyCardAccuracy": 53, - "kModifyCardMutation": 54, - "kModifyCardRank": 55, - "kModifyCardArmorPiercing": 56, - "kSummonCreature": 65, - "kTeleportPlayer": 66, - "kStun": 67, - "kDampen": 68, - "kReshuffle": 69, - "kMindControl": 70, - "kModifyPips": 71, - "kModifyPowerPips": 72, - "kModifyShadowPips": 73, - "kModifyHate": 74, - "kDamageOverTime": 75, - "kHealOverTime": 76, - "kModifyPowerPipChance": 77, - "kModifyRank": 78, - "kStunBlock": 79, - "kRevealCloak": 80, - "kInstantKill": 81, - "kAfterlife": 82, - "kDeferredDamage": 83, - "kDamagePerTotalPipPower": 84, - "kModifyCardHeal": 52, - "kModifyCardCharm": 57, - "kModifyCardWard": 58, - "kModifyCardOutgoingDamage": 59, - "kModifyCardOutgoingAccuracy": 60, - "kModifyCardOutgoingHeal": 61, - "kModifyCardOutgoingArmorPiercing": 62, - "kModifyCardIncomingDamage": 63, - "kModifyCardAbsorbDamage": 64, - "kCloakedWardNoRemove": 86, - "kAddCombatTriggerList": 87, - "kRemoveCombatTriggerList": 88, - "kBacklashDamage": 89, - "kModifyBacklash": 90, - "kIntercept": 91, - "kShadowSelf": 92, - "kShadowCreature": 93, - "kModifyShadowCreatureLevel": 94, - "kSelectShadowCreatureAttackTarget": 95, - "kShadowDecrementTurn": 96, - "kCritBoostSchoolSpecific": 97, - "kSpawnCreature": 98, - "kUnPolymorph": 99, - "kPowerPipConversion": 100, - "kProtectCardBeneficial": 101, - "kProtectCardHarmful": 102, - "kProtectBeneficial": 103, - "kProtectHarmful": 104, - "kDivideDamage": 105, - "kCollectEssence": 106, - "kKillCreature": 107, - "kDispelBlock": 108, - "kConfusionBlock": 109, - "kModifyPipRoundRate": 110, - "kMaxHealthDamage": 112, - "kUntargetable": 114, - "kMakeTargetable": 115, - "kForceTargetable": 116, - "kRemoveStunBlock": 117, - "kExitCombat": 122, - "kSuspendPips": 123, - "kResumePips": 124, - "kAutoPass": 125, - "kStopAutoPass": 126, - "kVanish": 127, - "kStopVanish": 128, - "kMaxHealthHeal": 129, - "kHealByWard": 130, - "kTaunt": 131, - "kPacify": 132, - "kRemoveTargetRestriction": 133, - "kConvertHangingEffect": 134, - "kAddSpellToDeck": 135, - "kAddSpellToHand": 136, - "kModifyIncomingDamageOverTime": 137, - "kModifyIncomingHealOverTime": 138, - "kModifyCardDamagebyRank": 139, - "kPushConvertedCharm": 140, - "kStealConvertedCharm": 141, - "kPushConvertedWard": 142, - "kStealConvertedWard": 143, - "kPushConvertedOverTime": 144, - "kStealConvertedOverTime": 145, - "kRemoveConvertedCharm": 146, - "kRemoveConvertedWard": 147, - "kRemoveConvertedOverTime": 148, - "kModifyOverTimeDuration": 149, - "kModifySchoolPips": 150 - } + "pointer": true, + "hash": 1197808594 }, - "m_effectParam": { - "type": "int", + "m_sigilName": { + "type": "std::string", "id": 1, - "offset": 76, - "flags": 31, + "offset": 96, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 357920024 + "hash": 3177657588 }, - "m_disposition": { - "type": "enum SpellEffect::kHangingDisposition", + "m_sigilType": { + "type": "std::string", "id": 2, - "offset": 80, - "flags": 2097159, + "offset": 136, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1904841031, - "enum_options": { - "kBoth": 0, - "kBeneficial": 1, - "kHarmful": 2 - } + "hash": 3177899445 }, - "m_sDamageType": { - "type": "std::string", + "m_entryResults": { + "type": "class ResultList*", "id": 3, - "offset": 88, + "offset": 184, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 2501054223 + "pointer": true, + "hash": 3262956108 }, - "m_damageType": { - "type": "unsigned int", + "m_requirements": { + "type": "class RequirementList*", "id": 4, - "offset": 84, - "flags": 31, + "offset": 176, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 737882766 + "pointer": true, + "hash": 2840985510 }, - "m_pipNum": { - "type": "int", + "m_cancelResults": { + "type": "class ResultList*", "id": 5, - "offset": 128, + "offset": 192, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 830827539 + "pointer": true, + "hash": 3799257120 }, - "m_actNum": { - "type": "int", + "m_completeResults": { + "type": "class ResultList*", "id": 6, - "offset": 132, - "flags": 31, + "offset": 200, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 236824866 + "pointer": true, + "hash": 1964258099 }, - "m_effectTarget": { - "type": "enum SpellEffect::kEffectTarget", + "m_useState": { + "type": "bool", "id": 7, - "offset": 140, - "flags": 2097183, + "offset": 216, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2458940523, - "enum_options": { - "kInvalidTarget": 0, - "kSpell": 1, - "kSpecificSpells": 2, - "kGlobal": 3, - "kEnemyTeam": 4, - "kEnemyTeamAllAtOnce": 5, - "kFriendlyTeam": 6, - "kFriendlyTeamAllAtOnce": 7, - "kEnemySingle": 8, - "kFriendlySingle": 9, - "kMinion": 10, - "kFriendlyMinion": 17, - "kEnemyMinion": 18, - "kSelf": 11, - "kAtLeastOneEnemy": 13, - "kPreselectedEnemySingle": 12, - "kMultiTargetEnemy": 14, - "kMultiTargetFriendly": 15, - "kFriendlySingleNotMe": 16 - } + "hash": 683320865 }, - "m_numRounds": { - "type": "int", + "m_stateOverride": { + "type": "std::string", "id": 8, - "offset": 144, - "flags": 31, + "offset": 224, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1229753829 + "hash": 1949715548 }, - "m_paramPerRound": { - "type": "int", + "m_subCircles": { + "type": "class SigilSubCircle*", "id": 9, - "offset": 148, - "flags": 31, - "container": "Static", - "dynamic": false, + "offset": 256, + "flags": 7, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 683234234 + "pointer": true, + "hash": 2227135493 }, - "m_healModifier": { + "m_engageRadius": { "type": "float", "id": 10, - "offset": 152, + "offset": 304, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1317921248, - "enum_options": { - "__DEFAULT": "1.0" - } + "hash": 1429683718 }, - "m_spellTemplateID": { - "type": "unsigned int", + "m_battlefieldEffects": { + "type": "class SharedPointer", "id": 11, - "offset": 120, - "flags": 31, + "offset": 312, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1245973515 + }, + "m_playerVictoryCinematic": { + "type": "std::string", + "id": 12, + "offset": 336, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 585567702 + "hash": 2684536069 }, - "m_enchantmentSpellTemplateID": { - "type": "unsigned int", - "id": 12, - "offset": 124, - "flags": 31, + "m_combatMusic": { + "type": "std::string", + "id": 13, + "offset": 368, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3636593682 + }, + "m_prePlanningCinematicOverride": { + "type": "std::string", + "id": 14, + "offset": 400, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2585096390 + }, + "m_planningCinematicOverride": { + "type": "std::string", + "id": 15, + "offset": 432, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3592819999 + }, + "m_shadowThresholdType": { + "type": "enum kShadow_Threshold_Type", + "id": 16, + "offset": 464, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2847763136, + "enum_options": { + "SHADOW_THRESHOLD_MIN": 0, + "SHADOW_THRESHOLD_AVG": 1, + "SHADOW_THRESHOLD_MAX": 2 + } + }, + "m_shadowThresholdFactor": { + "type": "float", + "id": 17, + "offset": 468, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 246955115 + "hash": 2104355177 }, - "m_act": { - "type": "bool", - "id": 13, - "offset": 136, + "m_shadowPipRatingFactor": { + "type": "float", + "id": 18, + "offset": 472, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 269510283 + "hash": 1061434314 }, - "m_cloaked": { - "type": "bool", - "id": 14, - "offset": 157, - "flags": 31, + "m_scalarDamagePvP": { + "type": "float", + "id": 19, + "offset": 476, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 7349510 + "hash": 2195445026 }, - "m_bypassProtection": { - "type": "bool", - "id": 15, - "offset": 159, - "flags": 31, + "m_scalarResistPvP": { + "type": "float", + "id": 20, + "offset": 480, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1657138252 + "hash": 1947822077 }, - "m_armorPiercingParam": { - "type": "int", - "id": 16, - "offset": 160, - "flags": 31, + "m_scalarPiercePvP": { + "type": "float", + "id": 21, + "offset": 484, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2025530205 + "hash": 441266907 }, - "m_chancePerTarget": { - "type": "int", - "id": 17, - "offset": 164, - "flags": 31, + "m_scalarDamagePvE": { + "type": "float", + "id": 22, + "offset": 488, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 845426794 + "hash": 2195445015 }, - "m_protected": { - "type": "bool", - "id": 18, - "offset": 168, - "flags": 31, + "m_scalarResistPvE": { + "type": "float", + "id": 23, + "offset": 492, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1445655037 + "hash": 1947822066 }, - "m_converted": { - "type": "bool", - "id": 19, - "offset": 169, - "flags": 31, + "m_scalarPiercePvE": { + "type": "float", + "id": 24, + "offset": 496, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1590428797 + "hash": 441266896 }, - "m_rank": { - "type": "int", - "id": 20, - "offset": 208, + "m_damageLimitPvP": { + "type": "float", + "id": 25, + "offset": 500, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 219803942 + "hash": 1990135243 }, - "m_mode": { - "type": "enum CountBasedSpellEffect::CountBasedType", - "id": 21, - "offset": 224, - "flags": 2097159, + "m_dK0PvP": { + "type": "float", + "id": 26, + "offset": 504, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2262055551, - "enum_options": { - "CBT_SpellKills": 0, - "CBT_SpellCrits": 1 - } + "hash": 413528556 }, - "m_effectList": { - "type": "class SharedPointer", - "id": 22, - "offset": 232, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 707154804 - } - } - }, - "2029353086": { - "name": "class StopComplexSoundCinematicAction", - "bases": [ - "CinematicAction", - "PropertyClass" - ], - "hash": 2029353086, - "properties": { - "m_timeOffset": { + "m_dN0PvP": { "type": "float", - "id": 0, - "offset": 72, + "id": 27, + "offset": 508, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 + "hash": 417086319 }, - "m_sound": { - "type": "std::string", - "id": 1, - "offset": 80, + "m_resistLimitPvP": { + "type": "float", + "id": 28, + "offset": 512, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2307644996 + "hash": 1174512006 }, - "m_stopAllLoopingSounds": { - "type": "bool", - "id": 2, - "offset": 112, + "m_rK0PvP": { + "type": "float", + "id": 29, + "offset": 516, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1944220294 + "hash": 961424058 }, - "m_fadeDuration": { + "m_rN0PvP": { "type": "float", - "id": 3, - "offset": 116, + "id": 30, + "offset": 520, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1402536557 - } - } - }, - "435902045": { - "name": "class CastleGamesBehaviorTemplate*", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 435902045, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, + "hash": 964981821 + }, + "m_damageLimitPvE": { + "type": "float", + "id": 31, + "offset": 524, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3130754092 - } - } - }, - "60949086": { - "name": "class SharedPointer", - "bases": [ - "CreateHangingEffectActorCinematicAction", - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 60949086, - "properties": { - "m_timeOffset": { + "hash": 1990135232 + }, + "m_dK0PvE": { "type": "float", - "id": 0, - "offset": 72, + "id": 32, + "offset": 528, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 + "hash": 413528545 }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, + "m_dN0PvE": { + "type": "float", + "id": 33, + "offset": 532, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2285866132 + "hash": 417086308 }, - "m_cloaked": { - "type": "bool", - "id": 2, - "offset": 120, + "m_resistLimitPvE": { + "type": "float", + "id": 34, + "offset": 536, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 7349510 + "hash": 1174511995 }, - "m_newActorName": { - "type": "std::string", - "id": 3, - "offset": 128, + "m_rK0PvE": { + "type": "float", + "id": 35, + "offset": 540, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2029131039 - } - } - }, - "435795926": { - "name": "class SortedPot", - "bases": [ - "PropertyClass" - ], - "hash": 435795926, - "properties": {} - }, - "60459490": { - "name": "class ClientSwapShadowMaterialActorCinematicAction*", - "bases": [ - "SwapShadowMaterialActorCinematicAction", - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 60459490, - "properties": { - "m_timeOffset": { + "hash": 961424047 + }, + "m_rN0PvE": { "type": "float", - "id": 0, - "offset": 72, + "id": 36, + "offset": 544, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 + "hash": 964981810 }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, + "m_minimumOnSide": { + "type": "int", + "id": 37, + "offset": 552, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2285866132 - } - } - }, - "2029808554": { - "name": "class ObstacleCourseModifyTimeBehavior*", - "bases": [ - "ObstacleCourseObstaclePathBase", - "ObstacleCourseObstacleBehavior", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 2029808554, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, + "hash": 179638776 + }, + "m_minimumError": { + "type": "std::string", + "id": 38, + "offset": 560, + "flags": 8388615, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 + "hash": 1816923809 } } }, - "435605336": { - "name": "class SharedPointer", + "1788341696": { + "name": "class ThumbnailControl", "bases": [ "Window", "PropertyClass" ], - "hash": 435605336, + "hash": 1788341696, "properties": { "m_sName": { "type": "std::string", @@ -597406,547 +544845,437 @@ "singleton": false, "pointer": false, "hash": 3091503757 + }, + "m_frameImage": { + "type": "class SharedPointer", + "id": 16, + "offset": 584, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3125725509 } } }, - "1625317695": { - "name": "class std::list >", - "bases": [], - "hash": 1625317695, - "properties": {} - }, - "60409350": { - "name": "class SharedPointer", + "1788177856": { + "name": "class ThumbnailControl*", "bases": [ - "BehaviorTemplate", + "Window", "PropertyClass" ], - "hash": 60409350, + "hash": 1788177856, "properties": { - "m_behaviorName": { + "m_sName": { "type": "std::string", "id": 0, - "offset": 72, - "flags": 7, + "offset": 80, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3130754092 + "hash": 2306437263 }, - "m_walkableCollisionFilename": { - "type": "std::string", + "m_Children": { + "type": "class SharedPointer", "id": 1, - "offset": 120, - "flags": 131079, - "container": "Static", - "dynamic": false, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 2223282859 + "pointer": true, + "hash": 2621225959 }, - "m_solidCollisionFilename": { - "type": "std::string", + "m_Style": { + "type": "unsigned int", "id": 2, "offset": 152, - "flags": 131079, + "flags": 1048583, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3292753187 + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "SCALE_CHILDREN": 2, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "FOCUS_LOCKED": 64, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152 + } }, - "m_clickableCollisionFilename": { - "type": "std::string", + "m_Flags": { + "type": "unsigned int", "id": 3, - "offset": 184, - "flags": 131335, + "offset": 156, + "flags": 1048583, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1964485570 + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } }, - "m_bAutoClickBox": { - "type": "bool", + "m_Window": { + "type": "class Rect", "id": 4, - "offset": 216, - "flags": 7, + "offset": 160, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 13289565 + "hash": 3105139380 }, - "m_bDisableCollision": { - "type": "bool", + "m_fTargetAlpha": { + "type": "float", "id": 5, - "offset": 217, - "flags": 7, + "offset": 212, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2086036629 + "hash": 1809129834 }, - "m_bClientOnly": { - "type": "bool", + "m_fDisabledAlpha": { + "type": "float", "id": 6, - "offset": 218, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1918653686 - } - } - }, - "2031983546": { - "name": "class SharedPointer", - "bases": [ - "ObstacleCourseObstacleBehavior", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 2031983546, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, + "offset": 216, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 - } - } - }, - "435808214": { - "name": "class SortedPot*", - "bases": [ - "PropertyClass" - ], - "hash": 435808214, - "properties": {} - }, - "1626785549": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1626785549, - "properties": { - "m_debugName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, + "hash": 1389987675 + }, + "m_fAlpha": { + "type": "float", + "id": 7, + "offset": 208, + "flags": 65671, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3553984419 - }, - "m_adjectiveList": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 3195213318 + "hash": 482130755 }, - "m_icon": { - "type": "std::string", - "id": 2, - "offset": 120, - "flags": 131103, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1717182340 + "pointer": true, + "hash": 3623628394 }, - "m_iconBW": { - "type": "std::string", - "id": 3, - "offset": 152, - "flags": 131103, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2047461085 + "hash": 2102211316 }, - "m_description": { + "m_sScript": { "type": "std::string", - "id": 4, - "offset": 184, - "flags": 8388639, + "id": 10, + "offset": 352, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1649374815 + "hash": 1846695875 }, - "m_displayMode": { - "type": "enum ZTDisplayMode", - "id": 5, - "offset": 216, - "flags": 2097183, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2216526410, - "enum_options": { - "ZTDM_Shown": 0, - "ZTDM_Discoverable": 1, - "ZTDM_Hidden": 2 - } + "hash": 3389835433 }, - "m_storage": { - "type": "enum ZTStorage", - "id": 6, - "offset": 220, - "flags": 2097183, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2290454852, - "enum_options": { - "ZTS_Player": 0, - "ZTS_Zone": 1 - } - }, - "m_onEnable": { - "type": "class SharedPointer", - "id": 7, - "offset": 224, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2591736864 - }, - "m_onDiscover": { - "type": "class SharedPointer", - "id": 8, - "offset": 240, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2826026872 - }, - "m_onDisable": { - "type": "class SharedPointer", - "id": 9, - "offset": 256, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1860656717 + "hash": 2547159940 }, - "m_sourceID": { - "type": "gid", - "id": 10, - "offset": 272, - "flags": 31, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1134700470 + "hash": 1513510520 }, - "m_inZone": { - "type": "bool", - "id": 11, - "offset": 280, - "flags": 31, - "container": "Static", - "dynamic": false, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 564535654 + "hash": 2587533771 }, - "m_enabled": { - "type": "bool", - "id": 12, - "offset": 281, - "flags": 31, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 504506718 + "hash": 3091503757 }, - "m_discovered": { - "type": "bool", - "id": 13, - "offset": 282, - "flags": 31, + "m_frameImage": { + "type": "class SharedPointer", + "id": 16, + "offset": 584, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 2060478331 + "pointer": true, + "hash": 3125725509 } } }, - "2031691118": { - "name": "class SharedPointer", + "939825038": { + "name": "class SharedPointer", "bases": [ - "CinematicAction", + "Requirement", "PropertyClass" ], - "hash": 2031691118, + "hash": 939825038, "properties": { - "m_timeOffset": { - "type": "float", + "m_applyNOT": { + "type": "bool", "id": 0, "offset": 72, - "flags": 7, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 - } - } - }, - "1626093931": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1626093931, - "properties": { - "m_playersInZoneList": { - "type": "gid", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, + "hash": 1746328074, + "enum_options": { + "__DEFAULT": 0 + } + }, + "m_operator": { + "type": "enum Requirement::Operator", + "id": 1, + "offset": 76, + "flags": 2097183, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 1367168135 + "hash": 2672792317, + "enum_options": { + "ROP_AND": 0, + "ROP_OR": 1, + "__DEFAULT": "ROP_AND" + } } } }, - "61069668": { - "name": "class SharedPointer", - "bases": [ - "BaseZone::BaseSimulation", - "PropertyClass" - ], - "hash": 61069668, - "properties": {} - }, - "435902237": { - "name": "class CastleGamesBehaviorTemplate", + "82560605": { + "name": "class WinAnimScaleSymmetrical*", "bases": [ - "BehaviorTemplate", + "WindowAnimation", "PropertyClass" ], - "hash": 435902237, + "hash": 82560605, "properties": { - "m_behaviorName": { - "type": "std::string", + "m_bUseDeepCopy": { + "type": "bool", "id": 0, "offset": 72, - "flags": 7, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3130754092 + "hash": 433380635 + }, + "m_scale": { + "type": "float", + "id": 1, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 899693439 } } }, - "2032111182": { - "name": "class SharedPointer", + "1353777412": { + "name": "class SharedPointer", "bases": [ + "CinematicAction", "PropertyClass" ], - "hash": 2032111182, + "hash": 1353777412, "properties": { - "m_petTomePetTotalList": { - "type": "class SharedPointer", + "m_timeOffset": { + "type": "float", "id": 0, "offset": 72, "flags": 7, - "container": "List", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 449762511 + "pointer": false, + "hash": 2237098605 }, - "m_petTemplateList": { - "type": "unsigned int", + "m_interpDuration": { + "type": "float", "id": 1, - "offset": 88, + "offset": 80, "flags": 7, - "container": "List", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 567776494 + "hash": 2237711951 } } }, - "62518068": { - "name": "class std::vector >", - "bases": [], - "hash": 62518068, - "properties": {} - }, - "1629914793": { - "name": "class SharedPointer", - "bases": [ - "AutobotMobAvoidance", - "PropertyClass" - ], - "hash": 1629914793, - "properties": {} - }, - "62254295": { - "name": "class SharedPointer", + "1788267634": { + "name": "class SharedPointer", "bases": [ - "CastleTourTeleportInfo", + "ConditionalSpellEffectRequirement", + "Requirement", "PropertyClass" ], - "hash": 62254295, + "hash": 1788267634, "properties": { - "m_houseTemplateID": { - "type": "unsigned int", + "m_applyNOT": { + "type": "bool", "id": 0, "offset": 72, - "flags": 7, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2326023642 + "hash": 1746328074, + "enum_options": { + "__DEFAULT": 0 + } }, - "m_structureTemplateID": { - "type": "unsigned int", + "m_operator": { + "type": "enum Requirement::Operator", "id": 1, "offset": 76, - "flags": 7, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1037379271 + "hash": 2672792317, + "enum_options": { + "ROP_AND": 0, + "ROP_OR": 1, + "__DEFAULT": "ROP_AND" + } }, - "m_lotInstanceGID": { - "type": "gid", + "m_targetType": { + "type": "enum ConditionalSpellEffectRequirement::RequirementTarget", "id": 2, "offset": 80, - "flags": 7, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2010711536 + "hash": 2547737902, + "enum_options": { + "RT_Caster": 0, + "RT_Target": 1 + } }, - "m_structureInstanceGID": { - "type": "gid", + "m_minionType": { + "type": "enum ReqMinion::MinionType", "id": 3, "offset": 88, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2083588818 - }, - "m_owningCharacterGID": { - "type": "gid", - "id": 4, - "offset": 96, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 316234091 - }, - "m_packedName": { - "type": "std::string", - "id": 5, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1805208228 - }, - "m_gameType": { - "type": "unsigned char", - "id": 6, - "offset": 136, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2369894028 - }, - "m_subGameType": { - "type": "unsigned char", - "id": 7, - "offset": 137, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2559216502 - } - } - }, - "438645845": { - "name": "class HousingTextureBehavior", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 438645845, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 + "hash": 2627992580, + "enum_options": { + "Is_Minion": 0, + "Has_Minion": 1, + "On_Team": 2, + "On_Other_Team": 3, + "On_Any_Team": 4 + } } } }, - "1629131138": { - "name": "class FurnitureInfoBehavior", + "81401897": { + "name": "class ScriptBehavior*", "bases": [ "BehaviorInstance", "PropertyClass" ], - "hash": 1629131138, + "hash": 81401897, "properties": { "m_behaviorTemplateNameID": { "type": "unsigned int", @@ -597961,559 +545290,289 @@ } } }, - "61742610": { - "name": "class CountBasedSpellEffect*", + "81291440": { + "name": "class SharedPointer", "bases": [ - "SpellEffect", + "DerbyEffect", "PropertyClass" ], - "hash": 61742610, + "hash": 81291440, "properties": { - "m_effectType": { - "type": "enum SpellEffect::kSpellEffects", + "m_buffType": { + "type": "enum DerbyTalentBuffType", "id": 0, - "offset": 72, + "offset": 92, "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2578255295, + "hash": 1149251982, "enum_options": { - "kInvalidSpellEffect": 0, - "kDamage": 1, - "kDamageNoCrit": 2, - "kHeal": 3, - "kHealPercent": 4, - "kSetHealPercent": 113, - "kStealHealth": 5, - "kReduceOverTime": 6, - "kDetonateOverTime": 7, - "kPushCharm": 8, - "kStealCharm": 9, - "kPushWard": 10, - "kStealWard": 11, - "kPushOverTime": 12, - "kStealOverTime": 13, - "kRemoveCharm": 14, - "kRemoveWard": 15, - "kRemoveOverTime": 16, - "kRemoveAura": 17, - "kSwapAll": 18, - "kSwapCharm": 19, - "kSwapWard": 20, - "kSwapOverTime": 21, - "kModifyIncomingDamage": 22, - "kModifyIncomingDamageFlat": 119, - "kMaximumIncomingDamage": 23, - "kModifyIncomingHeal": 24, - "kModifyIncomingHealFlat": 118, - "kModifyIncomingDamageType": 25, - "kModifyIncomingArmorPiercing": 26, - "kModifyOutgoingDamage": 27, - "kModifyOutgoingDamageFlat": 121, - "kModifyOutgoingHeal": 28, - "kModifyOutgoingHealFlat": 120, - "kModifyOutgoingDamageType": 29, - "kModifyOutgoingArmorPiercing": 30, - "kModifyOutgoingStealHealth": 31, - "kModifyIncomingStealHealth": 32, - "kBounceNext": 33, - "kBouncePrevious": 34, - "kBounceBack": 35, - "kBounceAll": 36, - "kAbsorbDamage": 37, - "kAbsorbHeal": 38, - "kModifyAccuracy": 39, - "kDispel": 40, - "kConfusion": 41, - "kCloakedCharm": 42, - "kCloakedWard": 43, - "kStunResist": 44, - "kClue": 111, - "kPipConversion": 45, - "kCritBoost": 46, - "kCritBlock": 47, - "kPolymorph": 48, - "kDelayCast": 49, - "kModifyCardCloak": 50, - "kModifyCardDamage": 51, - "kModifyCardAccuracy": 53, - "kModifyCardMutation": 54, - "kModifyCardRank": 55, - "kModifyCardArmorPiercing": 56, - "kSummonCreature": 65, - "kTeleportPlayer": 66, - "kStun": 67, - "kDampen": 68, - "kReshuffle": 69, - "kMindControl": 70, - "kModifyPips": 71, - "kModifyPowerPips": 72, - "kModifyShadowPips": 73, - "kModifyHate": 74, - "kDamageOverTime": 75, - "kHealOverTime": 76, - "kModifyPowerPipChance": 77, - "kModifyRank": 78, - "kStunBlock": 79, - "kRevealCloak": 80, - "kInstantKill": 81, - "kAfterlife": 82, - "kDeferredDamage": 83, - "kDamagePerTotalPipPower": 84, - "kModifyCardHeal": 52, - "kModifyCardCharm": 57, - "kModifyCardWard": 58, - "kModifyCardOutgoingDamage": 59, - "kModifyCardOutgoingAccuracy": 60, - "kModifyCardOutgoingHeal": 61, - "kModifyCardOutgoingArmorPiercing": 62, - "kModifyCardIncomingDamage": 63, - "kModifyCardAbsorbDamage": 64, - "kCloakedWardNoRemove": 86, - "kAddCombatTriggerList": 87, - "kRemoveCombatTriggerList": 88, - "kBacklashDamage": 89, - "kModifyBacklash": 90, - "kIntercept": 91, - "kShadowSelf": 92, - "kShadowCreature": 93, - "kModifyShadowCreatureLevel": 94, - "kSelectShadowCreatureAttackTarget": 95, - "kShadowDecrementTurn": 96, - "kCritBoostSchoolSpecific": 97, - "kSpawnCreature": 98, - "kUnPolymorph": 99, - "kPowerPipConversion": 100, - "kProtectCardBeneficial": 101, - "kProtectCardHarmful": 102, - "kProtectBeneficial": 103, - "kProtectHarmful": 104, - "kDivideDamage": 105, - "kCollectEssence": 106, - "kKillCreature": 107, - "kDispelBlock": 108, - "kConfusionBlock": 109, - "kModifyPipRoundRate": 110, - "kMaxHealthDamage": 112, - "kUntargetable": 114, - "kMakeTargetable": 115, - "kForceTargetable": 116, - "kRemoveStunBlock": 117, - "kExitCombat": 122, - "kSuspendPips": 123, - "kResumePips": 124, - "kAutoPass": 125, - "kStopAutoPass": 126, - "kVanish": 127, - "kStopVanish": 128, - "kMaxHealthHeal": 129, - "kHealByWard": 130, - "kTaunt": 131, - "kPacify": 132, - "kRemoveTargetRestriction": 133, - "kConvertHangingEffect": 134, - "kAddSpellToDeck": 135, - "kAddSpellToHand": 136, - "kModifyIncomingDamageOverTime": 137, - "kModifyIncomingHealOverTime": 138, - "kModifyCardDamagebyRank": 139, - "kPushConvertedCharm": 140, - "kStealConvertedCharm": 141, - "kPushConvertedWard": 142, - "kStealConvertedWard": 143, - "kPushConvertedOverTime": 144, - "kStealConvertedOverTime": 145, - "kRemoveConvertedCharm": 146, - "kRemoveConvertedWard": 147, - "kRemoveConvertedOverTime": 148, - "kModifyOverTimeDuration": 149, - "kModifySchoolPips": 150 + "Buff": 0, + "Debuff": 1, + "Neither": 2 } }, - "m_effectParam": { - "type": "int", + "m_kTarget": { + "type": "enum DerbyTargetType", "id": 1, - "offset": 76, - "flags": 31, + "offset": 96, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 357920024 + "hash": 1807803351, + "enum_options": { + "kTargetInFront": 0, + "kTargetBehind": 1, + "kTargetFirst": 2, + "kTargetSelf": 3, + "kTargetAll": 4, + "kTargetLast": 5 + } }, - "m_disposition": { - "type": "enum SpellEffect::kHangingDisposition", + "m_nDuration": { + "type": "int", "id": 2, - "offset": 80, - "flags": 2097159, + "offset": 104, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1904841031, - "enum_options": { - "kBoth": 0, - "kBeneficial": 1, - "kHarmful": 2 - } + "hash": 1110167982 }, - "m_sDamageType": { - "type": "std::string", + "m_effectID": { + "type": "unsigned int", "id": 3, "offset": 88, - "flags": 7, + "flags": 24, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2501054223 + "hash": 2347630439 }, - "m_damageType": { - "type": "unsigned int", + "m_imageFilename": { + "type": "std::string", "id": 4, - "offset": 84, - "flags": 31, + "offset": 112, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 737882766 + "hash": 2813328063 }, - "m_pipNum": { - "type": "int", + "m_iconIndex": { + "type": "unsigned int", "id": 5, - "offset": 128, - "flags": 7, + "offset": 144, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 830827539 + "hash": 1265133262 }, - "m_actNum": { - "type": "int", + "m_soundOnActivate": { + "type": "std::string", "id": 6, - "offset": 132, - "flags": 31, + "offset": 152, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 236824866 + "hash": 1956929714 }, - "m_effectTarget": { - "type": "enum SpellEffect::kEffectTarget", + "m_soundOnTarget": { + "type": "std::string", "id": 7, - "offset": 140, - "flags": 2097183, + "offset": 184, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2458940523, - "enum_options": { - "kInvalidTarget": 0, - "kSpell": 1, - "kSpecificSpells": 2, - "kGlobal": 3, - "kEnemyTeam": 4, - "kEnemyTeamAllAtOnce": 5, - "kFriendlyTeam": 6, - "kFriendlyTeamAllAtOnce": 7, - "kEnemySingle": 8, - "kFriendlySingle": 9, - "kMinion": 10, - "kFriendlyMinion": 17, - "kEnemyMinion": 18, - "kSelf": 11, - "kAtLeastOneEnemy": 13, - "kPreselectedEnemySingle": 12, - "kMultiTargetEnemy": 14, - "kMultiTargetFriendly": 15, - "kFriendlySingleNotMe": 16 - } + "hash": 3444214056 }, - "m_numRounds": { - "type": "int", + "m_targetParticleEffect": { + "type": "std::string", "id": 8, - "offset": 144, - "flags": 31, + "offset": 216, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1229753829 + "hash": 3048234723 }, - "m_paramPerRound": { - "type": "int", + "m_overheadMessage": { + "type": "std::string", "id": 9, - "offset": 148, - "flags": 31, + "offset": 248, + "flags": 8388639, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 683234234 + "hash": 1701018190 }, - "m_healModifier": { - "type": "float", + "m_requirements": { + "type": "class RequirementList", "id": 10, - "offset": 152, - "flags": 7, + "offset": 280, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1317921248, - "enum_options": { - "__DEFAULT": "1.0" - } + "hash": 2840988582 }, - "m_spellTemplateID": { - "type": "unsigned int", + "m_lane": { + "type": "enum DerbyLaneEffect", "id": 11, - "offset": 120, - "flags": 31, + "offset": 376, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 585567702 + "hash": 1075628144, + "enum_options": { + "kLaneRandomONE": 0, + "kLaneAll": 1, + "kLaneMine": 2 + } }, - "m_enchantmentSpellTemplateID": { - "type": "unsigned int", + "m_obstacleType": { + "type": "unsigned __int64", "id": 12, - "offset": 124, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 246955115 - }, - "m_act": { - "type": "bool", - "id": 13, - "offset": 136, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 269510283 - }, - "m_cloaked": { - "type": "bool", - "id": 14, - "offset": 157, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 7349510 - }, - "m_bypassProtection": { - "type": "bool", - "id": 15, - "offset": 159, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1657138252 - }, - "m_armorPiercingParam": { - "type": "int", - "id": 16, - "offset": 160, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2025530205 - }, - "m_chancePerTarget": { - "type": "int", - "id": 17, - "offset": 164, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 845426794 - }, - "m_protected": { - "type": "bool", - "id": 18, - "offset": 168, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1445655037 - }, - "m_converted": { - "type": "bool", - "id": 19, - "offset": 169, - "flags": 31, + "offset": 384, + "flags": 33554439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1590428797 + "hash": 2219764488 }, - "m_rank": { + "m_nObstacleAmount": { "type": "int", - "id": 20, - "offset": 208, + "id": 13, + "offset": 392, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 219803942 - }, - "m_mode": { - "type": "enum CountBasedSpellEffect::CountBasedType", - "id": 21, - "offset": 224, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2262055551, - "enum_options": { - "CBT_SpellKills": 0, - "CBT_SpellCrits": 1 - } - }, - "m_effectList": { - "type": "class SharedPointer", - "id": 22, - "offset": 232, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 707154804 + "hash": 52937033 } } }, - "2103213764": { - "name": "class EnergyShopOption", + "940931034": { + "name": "class EquipmentSet", "bases": [ - "ServiceOptionBase", "PropertyClass" ], - "hash": 2103213764, + "hash": 940931034, "properties": { - "m_serviceName": { + "m_serializedItems": { "type": "std::string", "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2206028813 - }, - "m_iconKey": { - "type": "std::string", - "id": 1, - "offset": 168, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2457138637 - }, - "m_displayKey": { - "type": "std::string", - "id": 2, - "offset": 104, - "flags": 31, + "offset": 96, + "flags": 575, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3023276954 + "hash": 1828227529 }, - "m_serviceIndex": { + "m_equipmentSetName": { "type": "unsigned int", - "id": 3, - "offset": 204, - "flags": 31, + "id": 1, + "offset": 88, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2103126710 + "hash": 518194738 }, - "m_forceInteract": { + "m_isEquipped": { "type": "bool", - "id": 4, - "offset": 200, - "flags": 31, + "id": 2, + "offset": 128, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1705789564 + "hash": 1792437804 } } }, - "438569752": { - "name": "class SharedPointer", + "940135368": { + "name": "class SharedPointer", "bases": [ + "BehaviorTemplate", "PropertyClass" ], - "hash": 438569752, + "hash": 940135368, "properties": { - "m_slot": { - "type": "short", + "m_behaviorName": { + "type": "std::string", "id": 0, "offset": 72, - "flags": 33554495, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 310478918 + "hash": 3130754092 }, - "m_emoteID": { - "type": "gid", + "m_movementSpeed": { + "type": "float", "id": 1, - "offset": 80, - "flags": 33554495, + "offset": 120, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 480114911 + "hash": 769135219 + }, + "m_movementScale": { + "type": "float", + "id": 2, + "offset": 124, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 768663914 } } }, - "1628314592": { - "name": "class GuildChatInfo*", + "1354168352": { + "name": "enum RarityType", + "bases": [], + "hash": 1354168352, + "properties": {} + }, + "1788349519": { + "name": "class ToggleInterfaceControlCinematicAction*", "bases": [ + "CinematicAction", "PropertyClass" ], - "hash": 1628314592, + "hash": 1788349519, "properties": { - "m_characterGID": { - "type": "gid", + "m_timeOffset": { + "type": "float", "id": 0, "offset": 72, "flags": 7, @@ -598521,10 +545580,10 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 501688601 + "hash": 2237098605 }, - "m_packedName": { - "type": "std::string", + "m_maximumDurationInSeconds": { + "type": "float", "id": 1, "offset": 80, "flags": 7, @@ -598532,318 +545591,329 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 1805208228 + "hash": 1457214913 }, - "m_message": { - "type": "std::string", + "m_hideUI": { + "type": "bool", "id": 2, - "offset": 112, + "offset": 84, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3411261376 + "hash": 519818283 }, - "m_messageID": { - "type": "unsigned int", + "m_stopMovement": { + "type": "bool", "id": 3, - "offset": 144, + "offset": 85, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 924780703 - }, - "m_sendFilter": { - "type": "unsigned char", - "id": 4, - "offset": 148, + "hash": 1752496036 + } + } + }, + "940125729": { + "name": "class TrainBehaviorTemplate", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 940125729, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1518238304 + "hash": 3130754092 }, - "m_messageTime": { - "type": "unsigned int", - "id": 5, - "offset": 152, + "m_introTime": { + "type": "float", + "id": 1, + "offset": 120, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1742920033 + "hash": 2010936242 } } }, - "2079956026": { - "name": "class Value", - "bases": [], - "hash": 2079956026, - "properties": {} - }, - "61815511": { - "name": "class ReqSpecificTemplate*", + "1353797290": { + "name": "class BracketMatchResult*", "bases": [ - "Requirement", "PropertyClass" ], - "hash": 61815511, + "hash": 1353797290, "properties": { - "m_applyNOT": { - "type": "bool", + "m_opponents": { + "type": "gid", "id": 0, "offset": 72, "flags": 31, - "container": "Static", - "dynamic": false, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 1746328074, - "enum_options": { - "__DEFAULT": 0 - } + "hash": 1257835102 }, - "m_operator": { - "type": "enum Requirement::Operator", + "m_points": { + "type": "unsigned int", "id": 1, - "offset": 76, - "flags": 2097183, + "offset": 88, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2672792317, - "enum_options": { - "ROP_AND": 0, - "ROP_OR": 1, - "__DEFAULT": "ROP_AND" - } + "hash": 1049128778 }, - "m_templateID": { - "type": "gid", + "m_matchResult": { + "type": "unsigned int", "id": 2, - "offset": 80, - "flags": 33554439, + "offset": 92, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1075328001 + "hash": 1912880793 + }, + "m_competingForPlace": { + "type": "unsigned int", + "id": 3, + "offset": 100, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1156208831 } } }, - "2059670605": { - "name": "class Body*", + "82072831": { + "name": "class SharedPointer", "bases": [ + "BehaviorTemplate", "PropertyClass" ], - "hash": 2059670605, + "hash": 82072831, "properties": { - "m_position": { - "type": "class Vector3D", + "m_behaviorName": { + "type": "std::string", "id": 0, - "offset": 88, + "offset": 72, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3697900983 + "hash": 3130754092 }, - "m_pitch": { - "type": "float", + "m_titleText": { + "type": "std::string", "id": 1, - "offset": 100, + "offset": 120, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 896371695 + "hash": 2703025890 }, - "m_roll": { - "type": "float", + "m_instrumentGUI": { + "type": "std::string", "id": 2, - "offset": 104, + "offset": 152, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 310020272 + "hash": 1548997465 }, - "m_yaw": { - "type": "float", + "m_useAlternateHighlighting": { + "type": "int", "id": 3, - "offset": 108, + "offset": 184, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 357256328 + "hash": 275839645 }, - "m_fHeight": { - "type": "float", + "m_buttonSampleList": { + "type": "class SharedPointer", "id": 4, - "offset": 132, + "offset": 192, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 401539638 + "pointer": true, + "hash": 2024362058 }, - "m_scale": { - "type": "float", + "m_musicLoopList": { + "type": "class SharedPointer", "id": 5, - "offset": 112, + "offset": 208, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 899693439 + "pointer": true, + "hash": 2490589385 } } }, - "1628314597": { - "name": "class GuildChatInfo", + "1353793238": { + "name": "class PetTalentBaseTemplate", "bases": [ + "CoreTemplate", "PropertyClass" ], - "hash": 1628314597, + "hash": 1353793238, "properties": { - "m_characterGID": { - "type": "gid", + "m_behaviors": { + "type": "class BehaviorTemplate*", "id": 0, "offset": 72, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "Vector", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 501688601 + "pointer": true, + "hash": 1197808594 }, - "m_packedName": { + "m_talentName": { "type": "std::string", "id": 1, - "offset": 80, - "flags": 7, + "offset": 96, + "flags": 134217735, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1805208228 + "hash": 2455147588 }, - "m_message": { + "m_displayName": { "type": "std::string", "id": 2, - "offset": 112, - "flags": 7, + "offset": 136, + "flags": 8388615, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3411261376 + "hash": 2446900370 }, - "m_messageID": { - "type": "unsigned int", + "m_description": { + "type": "std::string", "id": 3, - "offset": 144, - "flags": 7, + "offset": 168, + "flags": 8388615, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 924780703 + "hash": 1649374815 }, - "m_sendFilter": { - "type": "unsigned char", + "m_imageIndex": { + "type": "unsigned int", "id": 4, - "offset": 148, + "offset": 200, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1518238304 + "hash": 1781902856 }, - "m_messageTime": { - "type": "unsigned int", + "m_imageName": { + "type": "std::string", "id": 5, - "offset": 152, - "flags": 7, + "offset": 208, + "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1742920033 - } - } - }, - "2046639999": { - "name": "enum SpellEffect::kSpellEffects", - "bases": [], - "hash": 2046639999, - "properties": {} - }, - "439181304": { - "name": "class SharedPointer", - "bases": [ - "ChaseCamController", - "CameraController", - "PropertyClass" - ], - "hash": 439181304, - "properties": {} - }, - "2042186825": { - "name": "class ClientShadowCreatureIdleCinematicAction*", - "bases": [ - "ShadowCreatureIdleCinematicAction", - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 2042186825, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, + "hash": 2391520543 + }, + "m_rank": { + "type": "unsigned char", + "id": 6, + "offset": 240, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 + "hash": 857403388 }, - "m_actor": { + "m_breedsAsTalentName": { "type": "std::string", - "id": 1, - "offset": 80, + "id": 7, + "offset": 248, + "flags": 268435463, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2143399629, + "enum_options": { + "__BASECLASS": "PetTalentBaseTemplate" + } + }, + "m_bRetired": { + "type": "bool", + "id": 8, + "offset": 280, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2285866132 + "hash": 904227684, + "enum_options": { + "__DEFAULT": 0 + } + }, + "m_unsearchable": { + "type": "bool", + "id": 9, + "offset": 281, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1760679968, + "enum_options": { + "__DEFAULT": 0 + } } } }, - "438670421": { - "name": "class HousingTextureBehavior*", + "81401993": { + "name": "class ScriptBehavior", "bases": [ "BehaviorInstance", "PropertyClass" ], - "hash": 438670421, + "hash": 81401993, "properties": { "m_behaviorTemplateNameID": { "type": "unsigned int", @@ -598858,15 +545928,16 @@ } } }, - "62455761": { - "name": "class SharedPointer", + "1799411660": { + "name": "class UnstitchOption", "bases": [ + "ServiceOptionBase", "PropertyClass" ], - "hash": 62455761, + "hash": 1799411660, "properties": { - "m_teamGID": { - "type": "gid", + "m_serviceName": { + "type": "std::string", "id": 0, "offset": 72, "flags": 31, @@ -598874,415 +545945,319 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 194811347 + "hash": 2206028813 }, - "m_bracketTeamID": { - "type": "unsigned int", + "m_iconKey": { + "type": "std::string", "id": 1, - "offset": 80, + "offset": 168, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2174957597 - } - } - }, - "2038295331": { - "name": "class ClientPetItemBehavior*", - "bases": [ - "BasePetItemBehavior", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 2038295331, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_level": { - "type": "unsigned char", - "id": 1, - "offset": 112, - "flags": 65727, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1438884808 + "hash": 2457138637 }, - "m_XP": { - "type": "unsigned int", + "m_displayKey": { + "type": "std::string", "id": 2, - "offset": 116, - "flags": 65727, + "offset": 104, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2301988085 + "hash": 3023276954 }, - "m_firstName": { - "type": "int", + "m_serviceIndex": { + "type": "unsigned int", "id": 3, - "offset": 264, - "flags": 65703, + "offset": 204, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1618303331 + "hash": 2103126710 }, - "m_middleName": { - "type": "int", + "m_forceInteract": { + "type": "bool", "id": 4, - "offset": 268, - "flags": 65703, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 199781034 - }, - "m_lastName": { - "type": "int", - "id": 5, - "offset": 272, - "flags": 65703, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 328503983 - }, - "m_currentStats": { - "type": "class PetStat", - "id": 6, - "offset": 128, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2342610661 - }, - "m_maxStats": { - "type": "class PetStat", - "id": 7, - "offset": 144, + "offset": 200, "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1846363080 - }, - "m_hatchedTimeSecs": { - "type": "unsigned int", - "id": 8, - "offset": 160, - "flags": 65727, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 606051291 - }, - "m_expressedTalents": { - "type": "unsigned int", - "id": 9, - "offset": 168, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1557974043 - }, - "m_expressedDerbyTalents": { - "type": "unsigned int", - "id": 10, - "offset": 184, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 484465777 - }, - "m_talentRatings": { - "type": "std::string", - "id": 11, - "offset": 216, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2170591163 - }, - "m_powerRatings": { + "hash": 1705789564 + } + } + }, + "940731295": { + "name": "class LeashBehaviorTemplate*", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 940731295, + "properties": { + "m_behaviorName": { "type": "std::string", - "id": 12, - "offset": 232, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1881287968 - }, - "m_overallRating": { - "type": "unsigned int", - "id": 13, - "offset": 248, - "flags": 159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 462138631 - }, - "m_activeRating": { - "type": "unsigned int", - "id": 14, - "offset": 252, - "flags": 159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 234391118 - }, - "m_costToMorph": { - "type": "unsigned int", - "id": 15, - "offset": 256, - "flags": 65567, + "id": 0, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1866472719 + "hash": 3130754092 }, - "m_rarity": { - "type": "unsigned int", - "id": 16, - "offset": 260, - "flags": 65567, + "m_radius": { + "type": "float", + "id": 1, + "offset": 120, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1111114664 + "hash": 989410271 }, - "m_requiredXP": { - "type": "unsigned int", - "id": 17, - "offset": 120, - "flags": 31, + "m_angle": { + "type": "float", + "id": 2, + "offset": 124, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1890811574 + "hash": 878748702 }, - "m_housingPetPrimaryColor": { - "type": "int", - "id": 18, - "offset": 276, - "flags": 65664, + "m_leashType": { + "type": "enum LeashType", + "id": 3, + "offset": 128, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 525135139 + "hash": 2170708051, + "enum_options": { + "LLT_Rigid": 0, + "LLT_Elastic": 1 + } }, - "m_housingPetPattern": { - "type": "int", - "id": 19, - "offset": 280, - "flags": 65664, + "m_alwaysDisplay": { + "type": "bool", + "id": 4, + "offset": 132, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 165011646 + "hash": 2071781402 }, - "m_housingPetSecondaryColor": { - "type": "int", - "id": 20, - "offset": 284, - "flags": 65695, + "m_despawnOnUnleash": { + "type": "bool", + "id": 5, + "offset": 133, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 358656263 - }, - "m_housingPetOriginalGID": { - "type": "gid", - "id": 21, - "offset": 288, - "flags": 65664, + "hash": 428306962 + } + } + }, + "1793109074": { + "name": "class ActorDeathCinematicAction*", + "bases": [ + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 1793109074, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1259075879 + "hash": 2237098605 }, - "m_housingPetJewelTemplateID": { - "type": "unsigned int", - "id": 22, - "offset": 296, - "flags": 65664, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1836117651 - }, - "m_happiness": { - "type": "unsigned int", - "id": 23, - "offset": 300, - "flags": 65727, + "hash": 2285866132 + } + } + }, + "1353954794": { + "name": "class HousingPetBehaviorTemplate", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 1353954794, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1380970552 - }, - "m_maximumHappiness": { + "hash": 3130754092 + } + } + }, + "1791114473": { + "name": "class RaidTeleportBehaviorBase*", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1791114473, + "properties": { + "m_behaviorTemplateNameID": { "type": "unsigned int", - "id": 24, - "offset": 304, - "flags": 31, + "id": 0, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 874954582 - }, - "m_allTalents": { - "type": "unsigned int", - "id": 25, - "offset": 464, + "hash": 223437287 + } + } + }, + "940732063": { + "name": "class LeashBehaviorTemplate", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 940732063, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, "flags": 7, - "container": "List", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 1053182849 + "hash": 3130754092 }, - "m_allDerbyTalents": { - "type": "unsigned int", - "id": 26, - "offset": 480, + "m_radius": { + "type": "float", + "id": 1, + "offset": 120, "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1165978519 - }, - "m_sSerializedMaxStats": { - "type": "std::string", - "id": 27, - "offset": 328, - "flags": 65536, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2078753551 + "hash": 989410271 }, - "m_sSerializedStats": { - "type": "std::string", - "id": 28, - "offset": 360, - "flags": 65536, + "m_angle": { + "type": "float", + "id": 2, + "offset": 124, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3084176585 + "hash": 878748702 }, - "m_sSerializedTalents": { - "type": "std::string", - "id": 29, - "offset": 392, - "flags": 65536, + "m_leashType": { + "type": "enum LeashType", + "id": 3, + "offset": 128, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3058423637 + "hash": 2170708051, + "enum_options": { + "LLT_Rigid": 0, + "LLT_Elastic": 1 + } }, - "m_sSerializedDerbyTalents": { - "type": "std::string", - "id": 30, - "offset": 424, - "flags": 65536, + "m_alwaysDisplay": { + "type": "bool", + "id": 4, + "offset": 132, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1866554155 + "hash": 2071781402 }, - "m_bInitialized": { + "m_despawnOnUnleash": { "type": "bool", - "id": 31, - "offset": 456, - "flags": 65536, + "id": 5, + "offset": 133, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 233973963 + "hash": 428306962 } } }, - "1629131906": { - "name": "class FurnitureInfoBehavior*", + "1353954784": { + "name": "class HousingPetBehaviorTemplate*", "bases": [ - "BehaviorInstance", + "BehaviorTemplate", "PropertyClass" ], - "hash": 1629131906, + "hash": 1353954784, "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", + "m_behaviorName": { + "type": "std::string", "id": 0, - "offset": 104, - "flags": 39, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 + "hash": 3130754092 } } }, - "2034234548": { - "name": "class SharedPointer", + "1790835185": { + "name": "class InfractionPenalty*", "bases": [ - "GameEffectInfo", "PropertyClass" ], - "hash": 2034234548, + "hash": 1790835185, "properties": { - "m_effectName": { - "type": "std::string", + "m_internalID": { + "type": "unsigned int", "id": 0, "offset": 72, "flags": 31, @@ -599290,68 +546265,165 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 2029161513 + "hash": 1854540375 }, - "m_templateID": { + "m_categoryID": { "type": "unsigned int", "id": 1, - "offset": 104, - "flags": 7, + "offset": 76, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1286746870 + "hash": 1382795736 + }, + "m_removeAtPointValue": { + "type": "float", + "id": 2, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2112196961 + }, + "m_expireTime": { + "type": "unsigned int", + "id": 3, + "offset": 84, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1836304873 } } }, - "2033462600": { - "name": "class SharedPointer", + "83808747": { + "name": "class SharedPointer", "bases": [ + "WinAnimMoveToLocationSpeed", + "WinAnimMoveToLocation", + "WindowAnimation", "PropertyClass" ], - "hash": 2033462600, + "hash": 83808747, "properties": { - "m_playerList": { - "type": "gid", + "m_bUseDeepCopy": { + "type": "bool", "id": 0, "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, + "flags": 135, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 1909774945 + "hash": 433380635 + }, + "m_targetLocation": { + "type": "class Vector3D", + "id": 1, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2653859938 + }, + "m_fSpeed": { + "type": "float", + "id": 2, + "offset": 96, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 503609006 + }, + "m_facing": { + "type": "enum DoodleDoug::DdDirection", + "id": 3, + "offset": 112, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 591537519 + }, + "m_cameFrom": { + "type": "enum DoodleDoug::DdDirection", + "id": 4, + "offset": 116, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1071209393 + }, + "m_nextWaypoint": { + "type": "class Point", + "id": 5, + "offset": 120, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2346187452 + }, + "m_myBoard": { + "type": "class DoodleDoug*", + "id": 6, + "offset": 136, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2212758093 } } }, - "439672919": { - "name": "class SharedPointer", + "1789922147": { + "name": "class InstanceInfoList*", "bases": [ "PropertyClass" ], - "hash": 439672919, + "hash": 1789922147, "properties": { - "m_optionList": { - "type": "class PremiumContentOption", + "m_instanceList": { + "type": "class SharedPointer", "id": 0, "offset": 72, - "flags": 7, + "flags": 31, "container": "List", "dynamic": true, "singleton": false, - "pointer": false, - "hash": 1394856917 + "pointer": true, + "hash": 2930750483 } } }, - "1629458853": { - "name": "class BalloonBaseWindow", + "82673991": { + "name": "class ItemAndInventory", + "bases": [], + "hash": 82673991, + "properties": {} + }, + "1789247509": { + "name": "class SharedPointer", "bases": [ "Window", "PropertyClass" ], - "hash": 1629458853, + "hash": 1789247509, "properties": { "m_sName": { "type": "std::string", @@ -599566,502 +546638,314 @@ } } }, - "64715997": { - "name": "class SharedPointer", - "bases": [], - "hash": 64715997, - "properties": {} - }, - "2033078873": { - "name": "class RecipeBag*", + "941780482": { + "name": "class PetDyeToTexture*", "bases": [ - "ObjectBag", "PropertyClass" ], - "hash": 2033078873, + "hash": 941780482, "properties": { - "m_itemList": { - "type": "class SharedPointer", - "id": 0, - "offset": 168, - "flags": 27, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1983655699 - }, - "m_maxItemStack": { + "m_dye": { "type": "int", - "id": 1, - "offset": 184, - "flags": 27, + "id": 0, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 673449637 - } - } - }, - "2033058393": { - "name": "class RecipeBag", - "bases": [ - "ObjectBag", - "PropertyClass" - ], - "hash": 2033058393, - "properties": { - "m_itemList": { - "type": "class SharedPointer", - "id": 0, - "offset": 168, - "flags": 27, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1983655699 + "hash": 267033084 }, - "m_maxItemStack": { + "m_texture": { "type": "int", "id": 1, - "offset": 184, - "flags": 27, + "offset": 76, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 673449637 + "hash": 222406987 } } }, - "447545799": { - "name": "class SharedPointer", + "1354043738": { + "name": "class ShadowPipOverride", "bases": [ - "CinematicAction", + "CombatRule", "PropertyClass" ], - "hash": 447545799, + "hash": 1354043738, "properties": { - "m_timeOffset": { - "type": "float", + "m_shadowThresholdType": { + "type": "enum kShadow_Threshold_Type", "id": 0, "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_sound": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 131079, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2307644996 - }, - "m_useClientLocation": { - "type": "bool", - "id": 2, - "offset": 100, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 98585784 - }, - "m_soundType": { - "type": "enum PlaySoundCinematicAction::SoundType", - "id": 3, - "offset": 96, "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 868075053, + "hash": 2847763136, "enum_options": { - "kSigil": 0, - "kGotHit": 1, - "kDeath": 2, - "kChatter": 4, - "__DEFAULT": "kSigil" + "SHADOW_THRESHOLD_MIN": 0, + "SHADOW_THRESHOLD_AVG": 1, + "SHADOW_THRESHOLD_MAX": 2 } }, - "m_streamSound": { - "type": "bool", - "id": 4, - "offset": 101, - "flags": 263, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1693179368 - }, - "m_playMusic": { - "type": "bool", - "id": 5, - "offset": 102, - "flags": 263, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 552729674 - }, - "m_fadeDuration": { - "type": "float", - "id": 6, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1402536557 - } - } - }, - "1630660717": { - "name": "class GameEffectTimerTrigger", - "bases": [ - "PropertyClass" - ], - "hash": 1630660717, - "properties": { - "m_radius": { + "m_shadowThresholdFactor": { "type": "float", - "id": 0, - "offset": 72, + "id": 1, + "offset": 76, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 989410271 + "hash": 2104355177 }, - "m_triggerT": { + "m_shadowPipRatingFactor": { "type": "float", - "id": 1, - "offset": 76, + "id": 2, + "offset": 80, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2138083583 + "hash": 1061434314 } } }, - "84018378": { - "name": "class SharedPointer", + "83664723": { + "name": "class SharedPointer", "bases": [ - "BaseEffectCinematicAction", - "CinematicAction", + "WinAnimMoveToLocationSpeed", + "WinAnimMoveToLocation", + "WindowAnimation", "PropertyClass" ], - "hash": 84018378, + "hash": 83664723, "properties": { - "m_timeOffset": { - "type": "float", + "m_bUseDeepCopy": { + "type": "bool", "id": 0, "offset": 72, - "flags": 7, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 + "hash": 433380635 }, - "m_effectRel": { - "type": "enum BaseEffectCinematicAction::kEffectRelative", + "m_targetLocation": { + "type": "class Vector3D", "id": 1, "offset": 80, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2978921287, - "enum_options": { - "kNone": 0, - "kSigil": 1, - "kTarget": 2, - "kSource": 3, - "kActor": 4 - } - }, - "m_namedActor": { - "type": "std::string", - "id": 2, - "offset": 88, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3413532537 - } - } - }, - "442107707": { - "name": "class InfractionPenaltyInfo", - "bases": [ - "PropertyClass" - ], - "hash": 442107707, - "properties": { - "m_addAtPointValue": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1071217084 + "hash": 2653859938 }, - "m_removeAtPointValue": { + "m_fSpeed": { "type": "float", - "id": 1, - "offset": 76, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2112196961 - }, - "m_lifespan": { - "type": "std::string", "id": 2, - "offset": 80, - "flags": 7, + "offset": 96, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3042809453 + "hash": 503609006 } } }, - "1630619757": { - "name": "class GameEffectTimerTrigger*", + "1790085987": { + "name": "class InstanceInfoList", "bases": [ "PropertyClass" ], - "hash": 1630619757, + "hash": 1790085987, "properties": { - "m_radius": { - "type": "float", + "m_instanceList": { + "type": "class SharedPointer", "id": 0, "offset": 72, "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 989410271 - }, - "m_triggerT": { - "type": "float", - "id": 1, - "offset": 76, - "flags": 31, - "container": "Static", - "dynamic": false, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 2138083583 + "pointer": true, + "hash": 2930750483 } } }, - "77139504": { - "name": "class LeashBehavior*", + "943075406": { + "name": "class DerbyImmunityEffect*", "bases": [ - "BehaviorInstance", + "DerbyEffect", "PropertyClass" ], - "hash": 77139504, + "hash": 943075406, "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", + "m_buffType": { + "type": "enum DerbyTalentBuffType", "id": 0, - "offset": 104, - "flags": 39, + "offset": 92, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 + "hash": 1149251982, + "enum_options": { + "Buff": 0, + "Debuff": 1, + "Neither": 2 + } }, - "m_ownerGid": { - "type": "gid", + "m_kTarget": { + "type": "enum DerbyTargetType", "id": 1, - "offset": 128, - "flags": 31, + "offset": 96, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1765088663 + "hash": 1807803351, + "enum_options": { + "kTargetInFront": 0, + "kTargetBehind": 1, + "kTargetFirst": 2, + "kTargetSelf": 3, + "kTargetAll": 4, + "kTargetLast": 5 + } }, - "m_radius": { - "type": "float", + "m_nDuration": { + "type": "int", "id": 2, - "offset": 136, + "offset": 104, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 989410271 + "hash": 1110167982 }, - "m_angle": { - "type": "float", + "m_effectID": { + "type": "unsigned int", "id": 3, - "offset": 140, - "flags": 31, + "offset": 88, + "flags": 24, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 878748702 + "hash": 2347630439 }, - "m_leashType": { - "type": "enum LeashType", + "m_imageFilename": { + "type": "std::string", "id": 4, - "offset": 144, - "flags": 31, + "offset": 112, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2170708051, - "enum_options": { - "LLT_Rigid": 0, - "LLT_Elastic": 1 - } + "hash": 2813328063 }, - "m_alwaysDisplay": { - "type": "bool", + "m_iconIndex": { + "type": "unsigned int", "id": 5, - "offset": 161, + "offset": 144, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2071781402 - } - } - }, - "2033304558": { - "name": "class ObstacleCourseFinishLineBehaviorClient*", - "bases": [ - "ObstacleCourseFinishLineBehavior", - "ObstacleCourseObstacleBehavior", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 2033304558, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, + "hash": 1265133262 + }, + "m_soundOnActivate": { + "type": "std::string", + "id": 6, + "offset": 152, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 - } - } - }, - "441484672": { - "name": "class SharedPointer", - "bases": [ - "ServiceOptionBase", - "PropertyClass" - ], - "hash": 441484672, - "properties": { - "m_serviceName": { + "hash": 1956929714 + }, + "m_soundOnTarget": { "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, + "id": 7, + "offset": 184, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2206028813 + "hash": 3444214056 }, - "m_iconKey": { + "m_targetParticleEffect": { "type": "std::string", - "id": 1, - "offset": 168, - "flags": 31, + "id": 8, + "offset": 216, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2457138637 + "hash": 3048234723 }, - "m_displayKey": { + "m_overheadMessage": { "type": "std::string", - "id": 2, - "offset": 104, - "flags": 31, + "id": 9, + "offset": 248, + "flags": 8388639, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3023276954 + "hash": 1701018190 }, - "m_serviceIndex": { - "type": "unsigned int", - "id": 3, - "offset": 204, + "m_requirements": { + "type": "class RequirementList", + "id": 10, + "offset": 280, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2103126710 + "hash": 2840988582 }, - "m_forceInteract": { + "m_bToDebuffs": { "type": "bool", - "id": 4, - "offset": 200, + "id": 11, + "offset": 376, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1705789564 + "hash": 1216111639 } } }, - "73874081": { - "name": "class SharedPointer", + "1354781601": { + "name": "struct LockData*", "bases": [ "PropertyClass" ], - "hash": 73874081, + "hash": 1354781601, "properties": { - "m_includeHats": { - "type": "bool", + "m_tag": { + "type": "std::string", "id": 0, "offset": 72, "flags": 7, @@ -600069,680 +546953,543 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 692971815 + "hash": 1764749335 }, - "m_includeRobes": { + "m_unlocked": { "type": "bool", "id": 1, - "offset": 73, + "offset": 104, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1323347506 + "hash": 974984968 + } + } + }, + "1789949058": { + "name": "class EncounterTemplate", + "bases": [ + "QuestTemplate", + "CoreTemplate", + "PropertyClass" + ], + "hash": 1789949058, + "properties": { + "m_behaviors": { + "type": "class BehaviorTemplate*", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1197808594 }, - "m_includeBoots": { - "type": "bool", + "m_questName": { + "type": "std::string", + "id": 1, + "offset": 96, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1702112846 + }, + "m_questNameID": { + "type": "unsigned int", "id": 2, - "offset": 74, + "offset": 128, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1304387422 + "hash": 1530354349 }, - "m_includeWands": { - "type": "bool", + "m_questTitle": { + "type": "std::string", "id": 3, - "offset": 75, - "flags": 7, + "offset": 136, + "flags": 8388615, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1328787028 + "hash": 1805465583 }, - "m_includeAthames": { - "type": "bool", + "m_questInfo": { + "type": "std::string", "id": 4, - "offset": 76, - "flags": 7, + "offset": 168, + "flags": 8388615, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1385638394 + "hash": 1701947097 }, - "m_includeAmulets": { - "type": "bool", + "m_questPrep": { + "type": "std::string", "id": 5, - "offset": 77, - "flags": 7, + "offset": 200, + "flags": 8388615, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1127494706 + "hash": 1702202980 }, - "m_includeRings": { - "type": "bool", + "m_questUnderway": { + "type": "std::string", "id": 6, - "offset": 78, - "flags": 7, + "offset": 232, + "flags": 8388615, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1323145018 + "hash": 2308400380 }, - "m_includeDecks": { - "type": "bool", + "m_questComplete": { + "type": "std::string", "id": 7, - "offset": 79, - "flags": 7, + "offset": 264, + "flags": 8388615, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1306386529 + "hash": 3484586150 }, - "m_includeElixirs": { - "type": "bool", + "m_startGoals": { + "type": "std::string", "id": 8, - "offset": 80, + "offset": 392, "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1945468375 - } - } - }, - "440455020": { - "name": "class SharedPointer", - "bases": [ - "CameraController", - "PropertyClass" - ], - "hash": 440455020, - "properties": {} - }, - "1680383999": { - "name": "class SharedPointer", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1680383999, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 223437287 - } - } - }, - "70296870": { - "name": "class ModifyPipsCinematicAction*", - "bases": [ - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 70296870, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, + "hash": 2152469471 + }, + "m_goals": { + "type": "class SharedPointer", + "id": 9, + "offset": 408, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 2237098605 + "pointer": true, + "hash": 1374041870 }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, + "m_startResults": { + "type": "class SharedPointer", + "id": 10, + "offset": 424, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 2285866132 - } - } - }, - "68132303": { - "name": "class CSRSpellList*", - "bases": [ - "Window", - "PropertyClass" - ], - "hash": 68132303, - "properties": { - "m_sName": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306437263 - }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, - "singleton": false, "pointer": true, - "hash": 2621225959 + "hash": 2094517692 }, - "m_Style": { - "type": "unsigned int", - "id": 2, - "offset": 152, - "flags": 1048583, + "m_endResults": { + "type": "class SharedPointer", + "id": 11, + "offset": 440, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "SCALE_CHILDREN": 2, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "FOCUS_LOCKED": 64, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152 - } + "pointer": true, + "hash": 2118364133 }, - "m_Flags": { - "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 1048583, + "m_requirements": { + "type": "class RequirementList*", + "id": 12, + "offset": 456, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } + "pointer": true, + "hash": 2840985510 }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, - "flags": 135, + "m_prepRequirements": { + "type": "class RequirementList*", + "id": 13, + "offset": 464, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 3105139380 + "pointer": true, + "hash": 3016776541 }, - "m_fTargetAlpha": { - "type": "float", - "id": 5, - "offset": 212, - "flags": 135, + "m_pruneRequirements": { + "type": "class RequirementList*", + "id": 14, + "offset": 472, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1809129834 + "pointer": true, + "hash": 3211248912 }, - "m_fDisabledAlpha": { - "type": "float", - "id": 6, - "offset": 216, - "flags": 135, + "m_prepAlways": { + "type": "bool", + "id": 15, + "offset": 304, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1389987675 + "hash": 1423046331 }, - "m_fAlpha": { - "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, - "container": "Static", - "dynamic": false, + "m_clientTags": { + "type": "std::string", + "id": 16, + "offset": 312, + "flags": 7, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 482130755 + "hash": 2319030025 }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, - "container": "Static", - "dynamic": false, + "m_goalLogic": { + "type": "class GoalCompleteLogic*", + "id": 17, + "offset": 520, + "flags": 7, + "container": "List", + "dynamic": true, "singleton": false, "pointer": true, - "hash": 3623628394 + "hash": 963824003 }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, + "m_questLevel": { + "type": "int", + "id": 18, + "offset": 296, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2102211316 + "hash": 298136804 }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, + "m_questRepeat": { + "type": "int", + "id": 19, + "offset": 300, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1846695875 + "hash": 1480345805 }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, + "m_onStartQuestScript": { + "type": "std::string", + "id": 20, + "offset": 328, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3389835433 + "hash": 2577549709 }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, + "m_onEndQuestScript": { + "type": "std::string", + "id": 21, + "offset": 360, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2547159940 + "hash": 2285648118 }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, + "m_dialogList": { + "type": "class ActorDialogListBase*", + "id": 22, + "offset": 480, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1513510520 + "pointer": true, + "hash": 1909154969 }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, + "m_missionDoors": { + "type": "std::string", + "id": 23, + "offset": 504, + "flags": 7, "container": "List", "dynamic": true, "singleton": false, "pointer": false, - "hash": 2587533771 + "hash": 2428103908 }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3091503757 - } - } - }, - "2033470371": { - "name": "class std::vector >", - "bases": [], - "hash": 2033470371, - "properties": {} - }, - "441133424": { - "name": "class WizCinematicActorTemplate*", - "bases": [ - "CinematicActorTemplate", - "CinematicDefTemplate", - "CoreTemplate", - "PropertyClass" - ], - "hash": 441133424, - "properties": { - "m_behaviors": { - "type": "class BehaviorTemplate*", - "id": 0, - "offset": 72, + "m_dynaMods": { + "type": "class QuestDynaModInfo*", + "id": 24, + "offset": 488, "flags": 7, - "container": "Vector", + "container": "List", "dynamic": true, "singleton": false, "pointer": true, - "hash": 1197808594 + "hash": 3330743945 }, - "m_nifFile": { - "type": "std::string", - "id": 1, - "offset": 136, - "flags": 131079, + "m_isHidden": { + "type": "bool", + "id": 25, + "offset": 305, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2694762008 + "hash": 1401188667 }, - "m_delay": { - "type": "double", - "id": 2, - "offset": 168, + "m_outdated": { + "type": "bool", + "id": 26, + "offset": 306, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2689597116 + "hash": 1565198349 }, - "m_cinematicName": { - "type": "std::string", - "id": 3, - "offset": 96, - "flags": 134217735, + "m_noQuestHelper": { + "type": "bool", + "id": 27, + "offset": 307, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2611527497 + "hash": 578010882 }, - "m_completeEvents": { - "type": "class CinematicEventInfo*", - "id": 4, - "offset": 272, + "m_mainline": { + "type": "bool", + "id": 28, + "offset": 552, "flags": 7, - "container": "List", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2945338320 + "pointer": false, + "hash": 1749856224 }, - "m_stateChangeEvents": { - "type": "class CinematicEventInfo*", - "id": 5, - "offset": 304, + "m_defaultDialogAnimation": { + "type": "std::string", + "id": 29, + "offset": 560, "flags": 7, "container": "List", "dynamic": true, "singleton": false, - "pointer": true, - "hash": 1874505374 + "pointer": false, + "hash": 2400834320 }, - "m_stateInteractions": { - "type": "class CinematicInteractInfo*", - "id": 6, - "offset": 336, + "m_skipQHAutoSelect": { + "type": "bool", + "id": 30, + "offset": 553, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2024815836 + }, + "m_questEffectInfoList": { + "type": "class SharedPointer", + "id": 31, + "offset": 536, "flags": 7, "container": "List", "dynamic": true, "singleton": false, "pointer": true, - "hash": 1949887389 + "hash": 2494024956 }, - "m_targetGameState": { - "type": "std::string", - "id": 7, - "offset": 176, + "m_forceInteraction": { + "type": "bool", + "id": 32, + "offset": 554, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3607550909 + "hash": 1038376866 }, - "m_actorStateSet": { - "type": "std::string", - "id": 8, - "offset": 208, - "flags": 268435463, + "m_checkInventoryForCrafting": { + "type": "bool", + "id": 33, + "offset": 608, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1765258049, - "enum_options": { - "__BASECLASS": "ObjStateSet" - } + "hash": 1549644020 }, - "m_rootAsset": { - "type": "std::string", - "id": 9, - "offset": 240, - "flags": 131079, + "m_playAsYourPetNPC": { + "type": "bool", + "id": 34, + "offset": 609, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3506101791 + "hash": 827482678 }, - "m_dialogList": { - "type": "class ActorDialogList*", - "id": 10, - "offset": 368, - "flags": 7, + "m_activityType": { + "type": "enum QuestTemplate::ActivityType", + "id": 35, + "offset": 612, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2035504282 + "pointer": false, + "hash": 231656390, + "enum_options": { + "ACTIVITY_NotActivity": 0, + "ACTIVITY_Crafting": 2, + "ACTIVITY_Fishing": 3, + "ACTIVITY_Gardening": 4, + "ACTIVITY_Pet": 5, + "ACTIVITY_Spell": 1 + } } } }, - "1630869295": { - "name": "class WizBangTemplate", + "83871325": { + "name": "class WinAnimScaleSymmetrical", "bases": [ + "WindowAnimation", "PropertyClass" ], - "hash": 1630869295, + "hash": 83871325, "properties": { - "m_name": { - "type": "std::string", + "m_bUseDeepCopy": { + "type": "bool", "id": 0, "offset": 72, - "flags": 7, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1717359772 + "hash": 433380635 }, - "m_source": { - "type": "std::string", + "m_scale": { + "type": "float", "id": 1, - "offset": 104, - "flags": 131079, + "offset": 80, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2453267148 + "hash": 899693439 } } }, - "66088876": { - "name": "class GuildAchievementInfo*", + "942649820": { + "name": "class ClaimedPeriodicOffers*", "bases": [ "PropertyClass" ], - "hash": 66088876, + "hash": 942649820, "properties": { - "m_displayName": { - "type": "std::string", + "m_crownsAdded": { + "type": "int", "id": 0, "offset": 72, - "flags": 8388615, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2446900370 + "hash": 997797672 }, - "m_achievementName": { - "type": "std::string", + "m_itemsAdded": { + "type": "int", "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1754773829 - }, - "m_displayCount": { - "type": "bool", - "id": 2, - "offset": 136, - "flags": 7, + "offset": 76, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1245971442 + "hash": 737787694 } } }, - "66088836": { - "name": "class GuildAchievementInfo", + "1354196102": { + "name": "class std::list >", + "bases": [], + "hash": 1354196102, + "properties": {} + }, + "942344098": { + "name": "class SharedPointer", "bases": [ "PropertyClass" ], - "hash": 66088836, - "properties": { - "m_displayName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2446900370 - }, - "m_achievementName": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1754773829 - }, - "m_displayCount": { - "type": "bool", - "id": 2, - "offset": 136, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1245971442 - } - } + "hash": 942344098, + "properties": {} }, - "2035824477": { - "name": "class HousingTeleporterBehaviorTemplate*", + "942114168": { + "name": "class BeneficialProximityBehaviorBase*", "bases": [ - "BehaviorTemplate", + "BehaviorInstance", "PropertyClass" ], - "hash": 2035824477, + "hash": 942114168, "properties": { - "m_behaviorName": { - "type": "std::string", + "m_behaviorTemplateNameID": { + "type": "unsigned int", "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - }, - "m_isPetTeleporter": { - "type": "bool", - "id": 1, - "offset": 120, - "flags": 7, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 137008766 + "hash": 223437287 } } }, - "442106427": { - "name": "class InfractionPenaltyInfo*", + "1354761121": { + "name": "struct LockData", "bases": [ "PropertyClass" ], - "hash": 442106427, + "hash": 1354761121, "properties": { - "m_addAtPointValue": { - "type": "float", + "m_tag": { + "type": "std::string", "id": 0, "offset": 72, "flags": 7, @@ -600750,41 +547497,29 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 1071217084 + "hash": 1764749335 }, - "m_removeAtPointValue": { - "type": "float", + "m_unlocked": { + "type": "bool", "id": 1, - "offset": 76, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2112196961 - }, - "m_lifespan": { - "type": "std::string", - "id": 2, - "offset": 80, + "offset": 104, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3042809453 + "hash": 974984968 } } }, - "2035824397": { - "name": "class HousingTeleporterBehaviorTemplate", + "1790605206": { + "name": "class SharedPointer", "bases": [ - "BehaviorTemplate", "PropertyClass" ], - "hash": 2035824397, + "hash": 1790605206, "properties": { - "m_behaviorName": { + "m_filename": { "type": "std::string", "id": 0, "offset": 72, @@ -600793,2344 +547528,2561 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 3130754092 + "hash": 3117322428 }, - "m_isPetTeleporter": { - "type": "bool", + "m_id": { + "type": "unsigned int", "id": 1, - "offset": 120, + "offset": 104, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 137008766 + "hash": 2301988666 } } }, - "1633647808": { - "name": "class CrownShopItem", + "88283298": { + "name": "class ActorDialogEntry", "bases": [ "PropertyClass" ], - "hash": 1633647808, + "hash": 88283298, "properties": { - "m_itemTemplateId": { - "type": "gid", + "m_requirements": { + "type": "class SharedPointer", "id": 0, "offset": 72, - "flags": 31, + "flags": 263, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1978701296 + "pointer": true, + "hash": 3043523229 }, - "m_itemFlags": { - "type": "int", + "m_dialog": { + "type": "std::string", "id": 1, - "offset": 104, - "flags": 31, + "offset": 88, + "flags": 8388639, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1792726006 + "hash": 1858395851 }, - "m_goldCost": { - "type": "int", + "m_picture": { + "type": "std::string", "id": 2, - "offset": 92, - "flags": 31, + "offset": 120, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 444550297 + "hash": 3128322903 }, - "m_crownsCost": { - "type": "int", + "m_soundFile": { + "type": "std::string", "id": 3, - "offset": 96, - "flags": 31, + "offset": 152, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1592212719 + "hash": 2276870852 }, - "m_ticketCost": { - "type": "int", + "m_action": { + "type": "std::string", "id": 4, - "offset": 100, + "offset": 184, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1199423063 + "hash": 1734553689 }, - "m_displayPriority": { + "m_dialogEvent": { "type": "std::string", "id": 5, - "offset": 112, + "offset": 216, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2036319987 + "hash": 2707957549 }, - "m_strikethruCrowns": { - "type": "int", + "m_actorTemplateID": { + "type": "unsigned int", "id": 6, - "offset": 144, - "flags": 31, + "offset": 248, + "flags": 33554463, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1756077003 + "hash": 2134265679 }, - "m_strikethruGold": { - "type": "int", + "m_cameraName": { + "type": "std::string", "id": 7, - "offset": 148, + "offset": 256, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 664425781 + "hash": 3252786917 }, - "m_description": { - "type": "std::string", + "m_interpolationDuration": { + "type": "float", "id": 8, - "offset": 208, + "offset": 312, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1649374815 + "hash": 1458058437, + "enum_options": { + "__DEFAULT": "1.0" + } }, - "m_saleID": { - "type": "unsigned int", + "m_cameraOffsetX": { + "type": "float", "id": 9, - "offset": 240, + "offset": 288, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1150028607 + "hash": 1515912895 }, - "m_recommendIfOwned": { - "type": "bool", + "m_cameraOffsetY": { + "type": "float", "id": 10, - "offset": 152, + "offset": 292, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1653579929 + "hash": 1515912896 }, - "m_combatOnly": { - "type": "bool", + "m_cameraOffsetZ": { + "type": "float", "id": 11, - "offset": 153, + "offset": 296, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 978499627 + "hash": 1515912897 }, - "m_noGift": { - "type": "bool", + "m_pitch": { + "type": "float", "id": 12, - "offset": 154, + "offset": 304, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 760708954 + "hash": 896371695 }, - "m_segReqsStatement": { - "type": "std::string", + "m_yaw": { + "type": "float", "id": 13, - "offset": 160, + "offset": 300, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3526390858 + "hash": 357256328 }, - "m_segReqsPoolsStatements": { - "type": "std::string", + "m_roll": { + "type": "float", "id": 14, - "offset": 192, + "offset": 308, "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 3225359562 - } - } - }, - "68027735": { - "name": "enum MoveState", - "bases": [], - "hash": 68027735, - "properties": {} - }, - "2035431543": { - "name": "class ToSendCheerModsList", - "bases": [ - "PropertyClass" - ], - "hash": 2035431543, - "properties": { - "m_list": { - "type": "class TerrainCheerCostMap", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2021860698 - } - } - }, - "1632018797": { - "name": "class SharedPointer", - "bases": [ - "LootInfo", - "LootInfoBase", - "PropertyClass" - ], - "hash": 1632018797, - "properties": { - "m_lootType": { - "type": "enum LootInfo::LOOT_TYPE", - "id": 0, - "offset": 72, - "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1591891442, - "enum_options": { - "LOOT_TYPE_NONE": 0, - "LOOT_TYPE_GOLD": 1, - "LOOT_TYPE_MANA": 2, - "LOOT_TYPE_ITEM": 3, - "LOOT_TYPE_TREASURE_CARD": 4, - "LOOT_TYPE_MAGIC_XP": 5, - "LOOT_TYPE_ADD_SPELL": 6, - "LOOT_TYPE_MAX_HEALTH": 7, - "LOOT_TYPE_MAX_GOLD": 8, - "LOOT_TYPE_MAX_MANA": 9, - "LOOT_TYPE_MAX_POTION": 10, - "LOOT_TYPE_TRAINING_POINTS": 11, - "LOOT_TYPE_RECIPE": 12, - "LOOT_TYPE_CRAFTING_SLOT": 13, - "LOOT_TYPE_REAGENT": 14, - "LOOT_TYPE_PETSNACK": 15, - "LOOT_TYPE_GARDENING_XP": 16, - "LOOT_TYPE_PET_XP": 17, - "LOOT_TYPE_TREASURE_TABLE": 18, - "LOOT_TYPE_ARENA_POINTS": 19, - "LOOT_TYPE_ARENA_BONUS_POINTS": 20, - "LOOT_TYPE_GROUP": 21, - "LOOT_TYPE_FISHING_XP": 22, - "LOOT_TYPE_EVENT_CURRENCY_1": 24, - "LOOT_TYPE_EVENT_CURRENCY_2": 25, - "LOOT_TYPE_PVP_CURRENCY": 26, - "LOOT_TYPE_PVP_CURRENCY_BONUS": 27, - "LOOT_TYPE_PVP_TOURNEY_CURRENCY": 28, - "LOOT_TYPE_PVP_TOURNEY_CURRENCY_BONUS": 29, - "LOOT_TYPE_FURNITURE_ESSENCE": 30 - } + "hash": 310020272 }, - "m_manaAmount": { - "type": "int", - "id": 1, - "offset": 80, + "m_cameraShakeType": { + "type": "std::string", + "id": 15, + "offset": 320, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1476254699 - } - } - }, - "444757120": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 444757120, - "properties": { - "m_pSpellEffect": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, + "hash": 1754128882, + "enum_options": { + "": 0, + "Constant": "Constant", + "Quake": "Quake", + "Thud": "Thud", + "End": "End", + "__DEFAULT": 0 + } + }, + "m_cameraShakeDuration": { + "type": "float", + "id": 16, + "offset": 352, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3446820733 + "pointer": false, + "hash": 316581010, + "enum_options": { + "__DEFAULT": "0.0" + } }, - "m_remainingTurns": { - "type": "int", - "id": 1, - "offset": 88, + "m_cameraShakeAmplitude": { + "type": "float", + "id": 17, + "offset": 356, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1100057776 - } - } - }, - "1631591209": { - "name": "class SharedPointer", - "bases": [ - "DestroyShadowCreatureCinematicAction", - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 1631591209, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, + "hash": 2179718321, + "enum_options": { + "__DEFAULT": "0.0" + } + }, + "m_bypassCameraOnReview": { + "type": "bool", + "id": 18, + "offset": 360, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 + "hash": 1412905725, + "enum_options": { + "__DEFAULT": 1 + } }, - "m_actor": { + "m_cameraZoneName": { "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, + "id": 19, + "offset": 368, + "flags": 287, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2285866132 - } - } - }, - "443111413": { - "name": "class CantripsSpellTemplate*", - "bases": [ - "SpellTemplate", - "CoreTemplate", - "PropertyClass" - ], - "hash": 443111413, - "properties": { - "m_behaviors": { - "type": "class BehaviorTemplate*", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1197808594 + "hash": 3131581121 }, - "m_name": { - "type": "std::string", - "id": 1, - "offset": 96, - "flags": 7, + "m_duration": { + "type": "float", + "id": 20, + "offset": 400, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1717359772 + "hash": 920323453 }, - "m_description": { - "type": "std::string", - "id": 2, - "offset": 168, - "flags": 8388615, + "m_delay": { + "type": "float", + "id": 21, + "offset": 404, + "flags": 287, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1649374815 + "hash": 881988134 }, - "m_advancedDescription": { - "type": "std::string", - "id": 3, - "offset": 200, - "flags": 8388615, + "m_cameraHidePlayers": { + "type": "int", + "id": 22, + "offset": 408, + "flags": 287, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3465713013 + "hash": 28533149 }, - "m_displayName": { - "type": "std::string", - "id": 4, - "offset": 136, - "flags": 8388615, + "m_walkAwayNpcTemplateID": { + "type": "gid", + "id": 23, + "offset": 416, + "flags": 33554719, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2446900370 + "hash": 942697507 }, - "m_spellBase": { - "type": "std::string", - "id": 5, - "offset": 248, - "flags": 268435463, + "m_walkAwayExitDirectionInDegrees": { + "type": "float", + "id": 24, + "offset": 424, + "flags": 287, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2688054198, - "enum_options": { - "__BASECLASS": "CinematicTemplate" - } - }, - "m_effects": { - "type": "class SharedPointer", - "id": 6, - "offset": 280, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 370726379 + "hash": 396419785 }, - "m_sMagicSchoolName": { - "type": "std::string", - "id": 7, - "offset": 312, - "flags": 7, + "m_walkAwayFadeTime": { + "type": "float", + "id": 25, + "offset": 428, + "flags": 287, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2035693400 + "hash": 822405687 }, - "m_sTypeName": { - "type": "std::string", - "id": 8, - "offset": 352, - "flags": 7, + "m_walkAwayUseCurrentFacing": { + "type": "bool", + "id": 26, + "offset": 432, + "flags": 287, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3580785905 + "hash": 1464855436 }, - "m_trainingCost": { - "type": "int", - "id": 9, - "offset": 384, - "flags": 7, + "m_standInPlayerTag": { + "type": "std::string", + "id": 27, + "offset": 440, + "flags": 287, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 982588239 + "hash": 1590121141 }, - "m_accuracy": { - "type": "int", - "id": 10, - "offset": 388, - "flags": 7, + "m_fadeOutCamera": { + "type": "bool", + "id": 28, + "offset": 472, + "flags": 287, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1636315493 + "hash": 1766121252 }, - "m_baseCost": { - "type": "int", - "id": 11, - "offset": 232, - "flags": 7, + "m_snapCameraToPlayerAtExit": { + "type": "bool", + "id": 29, + "offset": 473, + "flags": 287, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1475151502 + "hash": 1323369645 }, - "m_creditsCost": { - "type": "int", - "id": 12, - "offset": 236, - "flags": 7, + "m_secondaryCameraName": { + "type": "std::string", + "id": 30, + "offset": 480, + "flags": 287, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 715313825 + "hash": 1670705581 }, - "m_pvpCurrencyCost": { - "type": "int", - "id": 13, - "offset": 240, - "flags": 7, + "m_secondaryInterpolationDuration": { + "type": "float", + "id": 31, + "offset": 512, + "flags": 287, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 645595444 + "hash": 1873822349 }, - "m_pvpTourneyCurrencyCost": { - "type": "int", - "id": 14, - "offset": 244, - "flags": 7, - "container": "Static", - "dynamic": false, + "m_npcStandInList": { + "type": "std::string", + "id": 32, + "offset": 520, + "flags": 287, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 517874954 + "hash": 2076308937 }, - "m_boosterPackIcon": { + "m_dialogAnimationList": { "type": "std::string", - "id": 15, - "offset": 496, - "flags": 131079, - "container": "Static", - "dynamic": false, + "id": 33, + "offset": 536, + "flags": 287, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 3428653697 + "hash": 2444806919 }, - "m_validTargetSpells": { - "type": "unsigned int", - "id": 16, - "offset": 392, - "flags": 7, + "m_dialogTurningList": { + "type": "std::string", + "id": 34, + "offset": 552, + "flags": 287, "container": "List", "dynamic": true, "singleton": false, "pointer": false, - "hash": 2355782967 + "hash": 2782869422 }, - "m_PvP": { - "type": "bool", - "id": 17, - "offset": 408, - "flags": 7, + "m_npcYawOffsetInDegrees": { + "type": "float", + "id": 35, + "offset": 568, + "flags": 287, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 269492361 + "hash": 1395075270 }, - "m_PvE": { + "m_allowPlayerToMove": { "type": "bool", - "id": 18, - "offset": 409, - "flags": 7, + "id": 36, + "offset": 572, + "flags": 287, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 269492350 + "hash": 225101337 }, - "m_noPvPEnchant": { - "type": "bool", - "id": 19, - "offset": 410, - "flags": 7, + "m_soundEffectFile": { + "type": "std::string", + "id": 37, + "offset": 576, + "flags": 287, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 661581703 + "hash": 3235157265 }, - "m_noPvEEnchant": { - "type": "bool", - "id": 20, - "offset": 411, - "flags": 7, + "m_musicFile": { + "type": "std::string", + "id": 38, + "offset": 608, + "flags": 287, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 10144220 + "hash": 2963686620 }, - "m_battlegroundsOnly": { + "m_nonStackableMusic": { "type": "bool", - "id": 21, - "offset": 412, - "flags": 7, + "id": 39, + "offset": 640, + "flags": 287, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1244782419 + "hash": 1675595625 }, - "m_Treasure": { + "m_nonRepeatableMusic": { "type": "bool", - "id": 22, - "offset": 413, - "flags": 7, + "id": 40, + "offset": 641, + "flags": 287, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1749096414 + "hash": 2138315572 }, - "m_noDiscard": { + "m_playMusicAtSFXVolume": { "type": "bool", - "id": 23, - "offset": 414, - "flags": 7, + "id": 41, + "offset": 642, + "flags": 287, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 565749226 + "hash": 2130871816 }, - "m_leavesPlayWhenCast": { - "type": "bool", - "id": 24, - "offset": 532, - "flags": 7, + "m_soundEffectDelay": { + "type": "float", + "id": 42, + "offset": 644, + "flags": 287, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 698216294 + "hash": 1586382460 }, - "m_imageIndex": { - "type": "int", - "id": 25, - "offset": 416, - "flags": 7, + "m_musicDelay": { + "type": "float", + "id": 43, + "offset": 648, + "flags": 287, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1570500405 + "hash": 1217785767 }, - "m_imageName": { - "type": "std::string", - "id": 26, - "offset": 424, - "flags": 131079, + "m_musicFadeTime": { + "type": "float", + "id": 44, + "offset": 652, + "flags": 287, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2391520543 + "hash": 502925015 }, - "m_cloaked": { + "m_dontReleaseCameraAtExit": { "type": "bool", - "id": 27, - "offset": 489, - "flags": 7, + "id": 45, + "offset": 474, + "flags": 287, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 7349510 + "hash": 1107508961 }, - "m_casterInvisible": { + "m_disableBackButton": { "type": "bool", - "id": 28, - "offset": 490, - "flags": 7, + "id": 46, + "offset": 656, + "flags": 287, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 310214650 + "hash": 122355444 }, - "m_adjectives": { - "type": "std::string", - "id": 29, - "offset": 576, - "flags": 7, - "container": "List", - "dynamic": true, + "m_enableExitButton": { + "type": "bool", + "id": 47, + "offset": 657, + "flags": 287, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 2967855037 + "hash": 1824693936 }, - "m_spellSourceType": { - "type": "enum SpellTemplate::kSpellSourceType", - "id": 30, - "offset": 528, - "flags": 2097159, + "m_cameraFadeType": { + "type": "std::string", + "id": 48, + "offset": 664, + "flags": 287, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 156272727, + "hash": 2021935382, "enum_options": { - "kCaster": 0, - "kPet": 1, - "kShadowCreature": 2, - "kWeapon": 3, - "kEquipment": 4 + "": 0, + "In Out Black": "In Out Black", + "In Out White": "In Out White", + "In Black": "In Black", + "Out Black": "Out Black", + "In White": "In White", + "Out White": "Out White", + "__DEFAULT": 0 } }, - "m_cloakedName": { - "type": "std::string", - "id": 31, - "offset": 536, - "flags": 268435463, + "m_cameraFadeTime": { + "type": "float", + "id": 49, + "offset": 696, + "flags": 287, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2846679215, + "hash": 614419391, "enum_options": { - "__BASECLASS": "SpellTemplate" + "__DEFAULT": "0.5" } }, - "m_purchaseRequirements": { - "type": "class RequirementList*", - "id": 32, - "offset": 608, - "flags": 7, + "m_idleAnimation": { + "type": "std::string", + "id": 50, + "offset": 704, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3174641793 + "pointer": false, + "hash": 2900487193 }, - "m_displayRequirements": { - "type": "class RequirementList*", - "id": 33, - "offset": 840, - "flags": 7, + "m_spamTime": { + "type": "float", + "id": 51, + "offset": 736, + "flags": 287, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3646782876 + "pointer": false, + "hash": 1727215063, + "enum_options": { + "__DEFAULT": "1.0" + } }, - "m_descriptionTrainer": { - "type": "std::string", - "id": 34, - "offset": 616, - "flags": 8388871, + "m_playSoundIfSpamming": { + "type": "bool", + "id": 52, + "offset": 740, + "flags": 287, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1756093908 + "hash": 690006749, + "enum_options": { + "__DEFAULT": 1 + } }, - "m_descriptionCombatHUD": { - "type": "std::string", - "id": 35, - "offset": 648, - "flags": 8388871, + "m_playMusicIfSpamming": { + "type": "bool", + "id": 53, + "offset": 741, + "flags": 287, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1631478006 + "hash": 538564341, + "enum_options": { + "__DEFAULT": 1 + } }, - "m_displayIndex": { - "type": "int", - "id": 36, - "offset": 680, - "flags": 7, + "m_stopMusicFadeTime": { + "type": "float", + "id": 54, + "offset": 744, + "flags": 287, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1250551048 + "hash": 696390845, + "enum_options": { + "__DEFAULT": "0.0" + } }, - "m_hiddenFromEffectsWindow": { - "type": "bool", - "id": 37, - "offset": 684, - "flags": 7, + "m_restartMusicFadeTime": { + "type": "float", + "id": 55, + "offset": 748, + "flags": 287, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1832736331 + "hash": 709379292, + "enum_options": { + "__DEFAULT": "0.0" + } }, - "m_ignoreCharms": { + "m_meetsRequirements": { "type": "bool", - "id": 38, - "offset": 685, - "flags": 7, + "id": 56, + "offset": 752, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1840075893 + "hash": 296443061 }, - "m_alwaysFizzle": { - "type": "bool", - "id": 39, - "offset": 686, - "flags": 7, + "m_secondaryCameraInitalDelay": { + "type": "float", + "id": 57, + "offset": 516, + "flags": 287, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2030988856 + "hash": 1812842232 }, - "m_spellCategory": { - "type": "std::string", - "id": 40, - "offset": 688, - "flags": 7, + "m_displayButtonsOnTimedDialog": { + "type": "bool", + "id": 58, + "offset": 753, + "flags": 287, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2472376729 - }, - "m_showPolymorphedName": { - "type": "bool", - "id": 41, - "offset": 720, + "hash": 569741400 + } + } + }, + "942084836": { + "name": "class DiegoCombatObserver", + "bases": [ + "CombatObserver", + "PropertyClass" + ], + "hash": 942084836, + "properties": { + "m_playerStats": { + "type": "class SharedPointer", + "id": 0, + "offset": 88, "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 873719258 + } + } + }, + "86085741": { + "name": "class CrownServicesOption", + "bases": [ + "ServiceOptionBase", + "PropertyClass" + ], + "hash": 86085741, + "properties": { + "m_serviceName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2097929096 + "hash": 2206028813 }, - "m_skipTruncation": { - "type": "bool", - "id": 42, - "offset": 721, - "flags": 263, + "m_iconKey": { + "type": "std::string", + "id": 1, + "offset": 168, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1838335249 + "hash": 2457138637 }, - "m_maxCopies": { - "type": "unsigned int", - "id": 43, - "offset": 724, - "flags": 263, + "m_displayKey": { + "type": "std::string", + "id": 2, + "offset": 104, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 403022326 + "hash": 3023276954 }, - "m_levelRestriction": { - "type": "int", - "id": 44, - "offset": 728, - "flags": 263, + "m_serviceIndex": { + "type": "unsigned int", + "id": 3, + "offset": 204, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 176502472 + "hash": 2103126710 }, - "m_delayEnchantment": { + "m_forceInteract": { "type": "bool", - "id": 45, - "offset": 732, - "flags": 287, + "id": 4, + "offset": 200, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 191336919 - }, - "m_delayEnchantmentOrder": { - "type": "enum SpellEffect::kDelayOrder", - "id": 46, - "offset": 736, - "flags": 287, + "hash": 1705789564 + } + } + }, + "85328645": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 85328645, + "properties": { + "m_id": { + "type": "int", + "id": 0, + "offset": 72, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2526055263, - "enum_options": { - "SpellEffect::kAnyOrder": 0, - "SpellEffect::kFirst": 1, - "SpellEffect::kSecond": 2 - } + "hash": 2090586215 }, - "m_previousSpellName": { - "type": "std::string", - "id": 47, - "offset": 744, - "flags": 268435463, + "m_items": { + "type": "class SharedPointer", + "id": 1, + "offset": 80, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 966759714 + } + } + }, + "1355369388": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1355369388, + "properties": { + "m_schoolID": { + "type": "unsigned int", + "id": 0, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2903322585, - "enum_options": { - "__BASECLASS": "SpellTemplate" - } + "hash": 369010242 }, - "m_cardFront": { + "m_spellsToGive": { "type": "std::string", - "id": 48, - "offset": 456, - "flags": 131359, - "container": "Static", - "dynamic": false, + "id": 1, + "offset": 80, + "flags": 7, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 3557598526 + "hash": 3002626524 }, - "m_useGloss": { - "type": "bool", - "id": 49, - "offset": 488, - "flags": 287, - "container": "Static", - "dynamic": false, + "m_questsToComplete": { + "type": "std::string", + "id": 2, + "offset": 96, + "flags": 7, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 668817544 + "hash": 3386208316 }, - "m_ignoreDispel": { - "type": "bool", - "id": 50, - "offset": 776, - "flags": 287, - "container": "Static", - "dynamic": false, + "m_questsToAdd": { + "type": "std::string", + "id": 3, + "offset": 112, + "flags": 7, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 1881041624 + "hash": 2101794028 }, - "m_backRowFriendly": { - "type": "bool", - "id": 51, - "offset": 777, - "flags": 287, + "m_itemsToPlaceInInventory": { + "type": "unsigned int", + "id": 4, + "offset": 128, + "flags": 33554439, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 792703868 + }, + "m_gearToEquip": { + "type": "unsigned int", + "id": 5, + "offset": 144, + "flags": 33554439, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1383467923 + }, + "m_teleportToZoneOnComplete": { + "type": "std::string", + "id": 6, + "offset": 176, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 501584377 + "hash": 2109587583 }, - "m_spellRank": { - "type": "class SharedPointer", - "id": 52, - "offset": 784, + "m_badgesToComplete": { + "type": "std::string", + "id": 7, + "offset": 160, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2133622941 + }, + "m_schoolName": { + "type": "std::string", + "id": 8, + "offset": 208, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3152361374 + "pointer": false, + "hash": 3385349572 }, - "m_secondarySchoolName": { + "m_propertyRegistryEntires": { + "type": "class LevelUpElixirPropertyRegistryEntry", + "id": 9, + "offset": 240, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2009387835 + }, + "m_addTrainingPointIfQuestNotComplete": { "type": "std::string", - "id": 53, - "offset": 800, + "id": 10, + "offset": 256, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 3422771029 + } + } + }, + "1791112128": { + "name": "class HidePolymorphFloatyTextCinematicAction", + "bases": [ + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 1791112128, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1803268236 + "hash": 2237098605 }, - "m_spellFusion": { - "type": "unsigned int", - "id": 54, - "offset": 836, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1658928321 - }, - "m_requiredSchoolName": { + "hash": 2285866132 + } + } + }, + "84938315": { + "name": "class SplashCinematicInfo*", + "bases": [ + "PropertyClass" + ], + "hash": 84938315, + "properties": { + "m_assetName": { "type": "std::string", - "id": 55, - "offset": 848, + "id": 0, + "offset": 72, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3576058981 + "hash": 1513131580 }, - "m_cantripsSpellType": { - "type": "enum CantripsSpellTemplate::CantripsSpellType", - "id": 56, - "offset": 880, - "flags": 2097159, + "m_assetPlaybackTime": { + "type": "float", + "id": 1, + "offset": 104, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3328314982, - "enum_options": { - "CS_Teleportation": 0, - "CS_Incantation": 1, - "CS_Beneficial": 2, - "CS_Ritual": 3, - "CS_Sigil": 4 - } - }, - "m_energyCost": { - "type": "int", - "id": 57, - "offset": 884, + "hash": 1640179405 + } + } + }, + "84622204": { + "name": "enum STACKING_RULE", + "bases": [], + "hash": 84622204, + "properties": {} + }, + "942399763": { + "name": "class MassShapeTemplate", + "bases": [ + "PropertyClass" + ], + "hash": 942399763, + "properties": { + "m_fCenterOfMassX": { + "type": "float", + "id": 0, + "offset": 72, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1236111677 + "hash": 1084414079 }, - "m_animationKFMs": { - "type": "std::string", - "id": 58, - "offset": 888, - "flags": 131079, - "container": "Vector", - "dynamic": true, + "m_fCenterOfMassY": { + "type": "float", + "id": 1, + "offset": 76, + "flags": 7, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 3393275788 + "hash": 1084414080 }, - "m_animationNames": { - "type": "std::string", - "id": 59, - "offset": 912, + "m_fCenterOfMassZ": { + "type": "float", + "id": 2, + "offset": 80, "flags": 7, - "container": "Vector", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 1776419407 + "hash": 1084414081 }, - "m_soundEffectName": { - "type": "std::string", - "id": 60, - "offset": 936, - "flags": 131079, + "m_MassShape": { + "type": "enum MassShapeTemplate::MassShape", + "id": 3, + "offset": 84, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3235436082 + "hash": 2243789942, + "enum_options": { + "__DEFAULT": "MS_SPHERE", + "MS_SPHERE": 0, + "MS_CYLINDER": 1, + "MS_TUBE": 2, + "MS_BOX": 3, + "MS_MESH": 4 + } }, - "m_soundEffectGain": { + "m_fRadiusMeters": { "type": "float", - "id": 61, - "offset": 968, + "id": 4, + "offset": 88, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1827685932, + "hash": 459620885, "enum_options": { "__DEFAULT": "1.0" } }, - "m_cantripsSpellImageIndex": { + "m_CylinderDirection": { "type": "int", - "id": 62, - "offset": 972, + "id": 5, + "offset": 92, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1902695161 + "hash": 1961650261, + "enum_options": { + "__DEFAULT": 1, + "CD_X": 1, + "CD_Y": 2, + "CD_Z": 3 + } }, - "m_cantripsSpellImageName": { - "type": "std::string", - "id": 63, - "offset": 976, - "flags": 131079, + "m_fLength": { + "type": "float", + "id": 6, + "offset": 96, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2661888099 + "hash": 558261279, + "enum_options": { + "__DEFAULT": "1.0" + } }, - "m_effectParameter": { - "type": "std::string", - "id": 64, - "offset": 1008, + "m_fWidth": { + "type": "float", + "id": 7, + "offset": 100, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1522601705 + "hash": 508100541, + "enum_options": { + "__DEFAULT": "1.0" + } }, - "m_cantripsSpellEffect": { - "type": "enum CantripsSpellTemplate::CantripsSpellEffect", - "id": 65, - "offset": 1040, - "flags": 2097159, + "m_fHeight": { + "type": "float", + "id": 8, + "offset": 104, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3436262155, + "hash": 401539638, "enum_options": { - "CSE_None": 0, - "CSE_PlayEffect": 1, - "CSE_Mark": 2, - "CSE_Recall": 3, - "CSE_Heal": 4, - "CSE_NoAggro": 5, - "CSE_Teleport": 6, - "CSE_Invisibility": 7, - "CSE_Emote": 8, - "CSE_Ritual": 9, - "CSE_Sigil": 10, - "CSE_Beneficial": 11, - "CSE_PlaySchoolEffect": 12 + "__DEFAULT": "1.0" } }, - "m_cooldownSeconds": { - "type": "int", - "id": 66, - "offset": 1044, + "m_fMassKilograms": { + "type": "float", + "id": 9, + "offset": 108, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1459266190 + "hash": 1502844666, + "enum_options": { + "__DEFAULT": "1.0" + } } } }, - "1631431646": { - "name": "class UnlockTriggerList*", + "1392527194": { + "name": "class SharedPointer", "bases": [ "PropertyClass" ], - "hash": 1631431646, + "hash": 1392527194, "properties": { - "m_unlockTriggerList": { - "type": "class SharedPointer", + "m_numOfTeams": { + "type": "unsigned int", "id": 0, "offset": 72, "flags": 7, - "container": "List", + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2164625196 + }, + "m_mappedPlace": { + "type": "unsigned int", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Vector", "dynamic": true, "singleton": false, - "pointer": true, - "hash": 2206769498 + "pointer": false, + "hash": 1626881929 } } }, - "69371072": { - "name": "class SG_GameAction_DestroyBlock", + "1791521283": { + "name": "class ObstacleCourseObstaclePathBase*", "bases": [ - "SG_GameAction", + "ObstacleCourseObstacleBehavior", + "BehaviorInstance", "PropertyClass" ], - "hash": 69371072, + "hash": 1791521283, "properties": { - "m_target": { - "type": "enum SG_GameAction::SG_Target", + "m_behaviorTemplateNameID": { + "type": "unsigned int", "id": 0, - "offset": 72, - "flags": 2097159, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1166870973, - "enum_options": { - "Target_Ball": 0, - "Target_Self": 1, - "Target_Connections": 2, - "__DEFAULT": "Target_Ball" - } + "hash": 223437287 } } }, - "443110133": { - "name": "class CantripsSpellTemplate", + "942445695": { + "name": "class HatchmakingCrownsPetList*", "bases": [ - "SpellTemplate", - "CoreTemplate", "PropertyClass" ], - "hash": 443110133, + "hash": 942445695, "properties": { - "m_behaviors": { - "type": "class BehaviorTemplate*", + "m_petTemplateList": { + "type": "unsigned int", "id": 0, "offset": 72, "flags": 7, - "container": "Vector", + "container": "List", "dynamic": true, "singleton": false, - "pointer": true, - "hash": 1197808594 + "pointer": false, + "hash": 567776494 + } + } + }, + "1365661780": { + "name": "class std::vector >", + "bases": [], + "hash": 1365661780, + "properties": {} + }, + "1791392213": { + "name": "class ClientPetBoostPlayerStatEffect*", + "bases": [ + "PetBoostPlayerStatEffect", + "WizStatisticEffect", + "StatisticEffect", + "GameEffectBase", + "PropertyClass" + ], + "hash": 1791392213, + "properties": { + "m_currentTickCount": { + "type": "double", + "id": 0, + "offset": 80, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2533274692 }, - "m_name": { - "type": "std::string", + "m_effectNameID": { + "type": "unsigned int", "id": 1, "offset": 96, - "flags": 7, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1717359772 + "hash": 1204067144 }, - "m_description": { - "type": "std::string", + "m_bIsOnPet": { + "type": "bool", "id": 2, - "offset": 168, - "flags": 8388615, + "offset": 73, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1649374815 + "hash": 522593303 }, - "m_advancedDescription": { - "type": "std::string", + "m_originatorID": { + "type": "gid", "id": 3, - "offset": 200, - "flags": 8388615, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3465713013 + "hash": 1131810019 }, - "m_displayName": { - "type": "std::string", + "m_itemSlotID": { + "type": "unsigned int", "id": 4, - "offset": 136, - "flags": 8388615, + "offset": 112, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2446900370 + "hash": 1895747595 }, - "m_spellBase": { - "type": "std::string", + "m_internalID": { + "type": "int", "id": 5, - "offset": 248, - "flags": 268435463, + "offset": 92, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2688054198, - "enum_options": { - "__BASECLASS": "CinematicTemplate" - } + "hash": 1643137924 }, - "m_effects": { - "type": "class SharedPointer", + "m_endTime": { + "type": "unsigned int", "id": 6, - "offset": 280, - "flags": 7, - "container": "Vector", - "dynamic": true, + "offset": 88, + "flags": 31, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 370726379 + "pointer": false, + "hash": 716479635 }, - "m_sMagicSchoolName": { - "type": "std::string", + "m_lookupIndex": { + "type": "int", "id": 7, - "offset": 312, - "flags": 7, + "offset": 128, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2035693400 + "hash": 1626623948 }, - "m_sTypeName": { - "type": "std::string", + "m_damageBonusPercent": { + "type": "float", "id": 8, - "offset": 352, - "flags": 7, + "offset": 136, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3580785905 + "hash": 623230606 }, - "m_trainingCost": { - "type": "int", + "m_damageBonusFlat": { + "type": "float", "id": 9, - "offset": 384, - "flags": 7, + "offset": 180, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 982588239 + "hash": 2212039108 }, - "m_accuracy": { - "type": "int", + "m_accuracyBonusPercent": { + "type": "float", "id": 10, - "offset": 388, - "flags": 7, + "offset": 140, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1636315493 + "hash": 1972336538 }, - "m_baseCost": { - "type": "int", + "m_armorPiercingBonusPercent": { + "type": "float", "id": 11, - "offset": 232, - "flags": 7, + "offset": 144, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1475151502 + "hash": 1569912641 }, - "m_creditsCost": { - "type": "int", + "m_damageReducePercent": { + "type": "float", "id": 12, - "offset": 236, - "flags": 7, + "offset": 148, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 715313825 + "hash": 541736927 }, - "m_pvpCurrencyCost": { - "type": "int", + "m_damageReduceFlat": { + "type": "float", "id": 13, - "offset": 240, - "flags": 7, + "offset": 152, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 645595444 + "hash": 684172469 }, - "m_pvpTourneyCurrencyCost": { - "type": "int", + "m_accuracyReducePercent": { + "type": "float", "id": 14, - "offset": 244, - "flags": 7, + "offset": 156, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 517874954 + "hash": 2112559723 }, - "m_boosterPackIcon": { - "type": "std::string", + "m_healBonusPercent": { + "type": "float", "id": 15, - "offset": 496, - "flags": 131079, + "offset": 160, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3428653697 + "hash": 562313577 }, - "m_validTargetSpells": { - "type": "unsigned int", + "m_healIncBonusPercent": { + "type": "float", "id": 16, - "offset": 392, - "flags": 7, - "container": "List", - "dynamic": true, + "offset": 164, + "flags": 63, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 2355782967 + "hash": 2182535587 }, - "m_PvP": { - "type": "bool", + "m_hitPointBonus": { + "type": "float", "id": 17, - "offset": 408, - "flags": 7, + "offset": 204, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 269492361 + "hash": 880644461 }, - "m_PvE": { - "type": "bool", + "m_spellChargeBonus": { + "type": "int", "id": 18, - "offset": 409, - "flags": 7, + "offset": 212, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 269492350 + "hash": 2019610507 }, - "m_noPvPEnchant": { - "type": "bool", + "m_powerPipBonusPercent": { + "type": "float", "id": 19, - "offset": 410, - "flags": 7, + "offset": 168, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 661581703 + "hash": 1671446341 }, - "m_noPvEEnchant": { - "type": "bool", + "m_petActChance": { + "type": "int", "id": 20, - "offset": 411, - "flags": 7, + "offset": 200, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 10144220 + "hash": 237418461 }, - "m_battlegroundsOnly": { - "type": "bool", + "m_manaBonus": { + "type": "float", "id": 21, - "offset": 412, - "flags": 7, + "offset": 208, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1244782419 + "hash": 1372708603 }, - "m_Treasure": { - "type": "bool", + "m_expPercent": { + "type": "float", "id": 22, - "offset": 413, - "flags": 7, + "offset": 184, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1749096414 + "hash": 1147850677 }, - "m_noDiscard": { - "type": "bool", + "m_goldPercent": { + "type": "float", "id": 23, - "offset": 414, - "flags": 7, + "offset": 188, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 565749226 + "hash": 1095720878 }, - "m_leavesPlayWhenCast": { - "type": "bool", + "m_energyBonus": { + "type": "float", "id": 24, - "offset": 532, - "flags": 7, + "offset": 216, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 698216294 + "hash": 2223158984 }, - "m_imageIndex": { - "type": "int", + "m_criticalHitRating": { + "type": "float", "id": 25, - "offset": 416, - "flags": 7, + "offset": 220, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1570500405 + "hash": 1978690540 }, - "m_imageName": { - "type": "std::string", + "m_blockRating": { + "type": "float", "id": 26, - "offset": 424, - "flags": 131079, + "offset": 224, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2391520543 + "hash": 2088486759 }, - "m_cloaked": { - "type": "bool", + "m_accuracyRating": { + "type": "float", "id": 27, - "offset": 489, - "flags": 7, + "offset": 228, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 7349510 + "hash": 165525575 }, - "m_casterInvisible": { - "type": "bool", + "m_powerPipRating": { + "type": "float", "id": 28, - "offset": 490, - "flags": 7, + "offset": 232, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 310214650 + "hash": 1355340722 }, - "m_adjectives": { - "type": "std::string", + "m_damageResistanceRating": { + "type": "float", "id": 29, - "offset": 576, - "flags": 7, - "container": "List", - "dynamic": true, + "offset": 240, + "flags": 63, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 2967855037 + "hash": 1961377740 }, - "m_spellSourceType": { - "type": "enum SpellTemplate::kSpellSourceType", + "m_archmastery": { + "type": "float", "id": 30, - "offset": 528, - "flags": 2097159, + "offset": 244, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 156272727, - "enum_options": { - "kCaster": 0, - "kPet": 1, - "kShadowCreature": 2, - "kWeapon": 3, - "kEquipment": 4 - } + "hash": 1963579610 }, - "m_cloakedName": { - "type": "std::string", + "m_archmasteryBonusPercent": { + "type": "float", "id": 31, - "offset": 536, - "flags": 268435463, + "offset": 288, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2846679215, - "enum_options": { - "__BASECLASS": "SpellTemplate" - } + "hash": 1908627154 }, - "m_purchaseRequirements": { - "type": "class RequirementList*", + "m_balanceMastery": { + "type": "int", "id": 32, - "offset": 608, - "flags": 7, + "offset": 248, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3174641793 + "pointer": false, + "hash": 149062181 }, - "m_displayRequirements": { - "type": "class RequirementList*", + "m_deathMastery": { + "type": "int", "id": 33, - "offset": 840, - "flags": 7, + "offset": 252, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3646782876 + "pointer": false, + "hash": 1421218661 }, - "m_descriptionTrainer": { - "type": "std::string", + "m_fireMastery": { + "type": "int", "id": 34, - "offset": 616, - "flags": 8388871, + "offset": 256, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1756093908 + "hash": 1431794949 }, - "m_descriptionCombatHUD": { - "type": "std::string", + "m_iceMastery": { + "type": "int", "id": 35, - "offset": 648, - "flags": 8388871, + "offset": 260, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1631478006 + "hash": 704864240 }, - "m_displayIndex": { + "m_lifeMastery": { "type": "int", "id": 36, - "offset": 680, - "flags": 7, + "offset": 264, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1250551048 + "hash": 2142136447 }, - "m_hiddenFromEffectsWindow": { - "type": "bool", + "m_mythMastery": { + "type": "int", "id": 37, - "offset": 684, - "flags": 7, + "offset": 268, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1832736331 + "hash": 1766317185 }, - "m_ignoreCharms": { - "type": "bool", + "m_stormMastery": { + "type": "int", "id": 38, - "offset": 685, - "flags": 7, + "offset": 272, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1840075893 + "hash": 1883988244 }, - "m_alwaysFizzle": { - "type": "bool", + "m_stunResistancePercent": { + "type": "float", "id": 39, - "offset": 686, - "flags": 7, + "offset": 276, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2030988856 + "hash": 1868382627 }, - "m_spellCategory": { - "type": "std::string", + "m_fishingLuckBonusPercent": { + "type": "float", "id": 40, - "offset": 688, - "flags": 7, + "offset": 192, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2472376729 + "hash": 1363349254 }, - "m_showPolymorphedName": { - "type": "bool", + "m_shadowPipBonusPercent": { + "type": "float", "id": 41, - "offset": 720, - "flags": 7, + "offset": 172, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2097929096 + "hash": 1426533310 }, - "m_skipTruncation": { - "type": "bool", + "m_wispBonusPercent": { + "type": "float", "id": 42, - "offset": 721, - "flags": 263, + "offset": 196, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1838335249 + "hash": 1304386546 }, - "m_maxCopies": { - "type": "unsigned int", + "m_pipConversionRating": { + "type": "float", "id": 43, - "offset": 724, - "flags": 263, + "offset": 280, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 403022326 + "hash": 246855691 }, - "m_levelRestriction": { - "type": "int", + "m_shadowPipRating": { + "type": "float", "id": 44, - "offset": 728, - "flags": 263, + "offset": 236, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 176502472 + "hash": 507126123 }, - "m_delayEnchantment": { - "type": "bool", + "m_petID": { + "type": "gid", "id": 45, - "offset": 732, - "flags": 287, + "offset": 304, + "flags": 24, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 191336919 + "hash": 806009486 }, - "m_delayEnchantmentOrder": { - "type": "enum SpellEffect::kDelayOrder", + "m_primaryStat1": { + "type": "std::string", "id": 46, - "offset": 736, - "flags": 287, + "offset": 312, + "flags": 24, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2526055263, - "enum_options": { - "SpellEffect::kAnyOrder": 0, - "SpellEffect::kFirst": 1, - "SpellEffect::kSecond": 2 - } + "hash": 2417808140 }, - "m_previousSpellName": { + "m_primaryStat2": { "type": "std::string", "id": 47, - "offset": 744, - "flags": 268435463, + "offset": 344, + "flags": 24, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2903322585, - "enum_options": { - "__BASECLASS": "SpellTemplate" - } + "hash": 2417808141 }, - "m_cardFront": { + "m_secondaryStat": { "type": "std::string", "id": 48, - "offset": 456, - "flags": 131359, + "offset": 376, + "flags": 24, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3557598526 + "hash": 3564684959 }, - "m_useGloss": { - "type": "bool", + "m_secondaryValue": { + "type": "float", "id": 49, - "offset": 488, - "flags": 287, + "offset": 408, + "flags": 24, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 668817544 + "hash": 1728780796 + } + } + }, + "85019234": { + "name": "class Duel", + "bases": [ + "PropertyClass" + ], + "hash": 85019234, + "properties": { + "m_flatParticipantList": { + "type": "class SharedPointer", + "id": 0, + "offset": 80, + "flags": 31, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 3375244498 }, - "m_ignoreDispel": { + "m_dynamicTeams": { + "type": "class SharedPointer", + "id": 1, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3227206264 + }, + "m_dynamicTurn": { + "type": "unsigned int", + "id": 2, + "offset": 120, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1168494811 + }, + "m_dynamicTurnSubcircles": { + "type": "unsigned int", + "id": 3, + "offset": 124, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 618930538 + }, + "m_dynamicTurnCounter": { + "type": "int", + "id": 4, + "offset": 128, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 543404296 + }, + "m_duelID.m_full": { + "type": "unsigned __int64", + "id": 5, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1024980477 + }, + "m_planningTimer": { + "type": "float", + "id": 6, + "offset": 144, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1142844143 + }, + "m_position": { + "type": "class Vector3D", + "id": 7, + "offset": 148, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3697900983 + }, + "m_yaw": { + "type": "float", + "id": 8, + "offset": 160, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 357256328 + }, + "m_disableTimer": { "type": "bool", - "id": 50, - "offset": 776, - "flags": 287, + "id": 9, + "offset": 179, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1881041624 + "hash": 1571862248 }, - "m_backRowFriendly": { + "m_tutorialMode": { "type": "bool", - "id": 51, - "offset": 777, - "flags": 287, + "id": 10, + "offset": 180, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 501584377 + "hash": 1704245836 }, - "m_spellRank": { - "type": "class SharedPointer", - "id": 52, - "offset": 784, - "flags": 7, + "m_firstTeamToAct": { + "type": "int", + "id": 11, + "offset": 184, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1499447620 + }, + "m_combatResolver": { + "type": "class CombatResolver*", + "id": 12, + "offset": 136, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": true, - "hash": 3152361374 + "hash": 1627811879 }, - "m_secondarySchoolName": { - "type": "std::string", - "id": 53, - "offset": 800, - "flags": 7, + "m_bPVP": { + "type": "bool", + "id": 13, + "offset": 176, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1803268236 + "hash": 221690795 }, - "m_spellFusion": { - "type": "unsigned int", - "id": 54, - "offset": 836, - "flags": 7, + "m_bBattleground": { + "type": "bool", + "id": 14, + "offset": 177, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1658928321 + "hash": 1158269184 }, - "m_requiredSchoolName": { - "type": "std::string", - "id": 55, - "offset": 848, + "m_bRaid": { + "type": "bool", + "id": 15, + "offset": 178, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 791201781 + }, + "m_roundNum": { + "type": "int", + "id": 16, + "offset": 192, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1461215570 + }, + "m_executionPhaseTimer": { + "type": "float", + "id": 17, + "offset": 200, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1645062877 + }, + "m_executionPhaseCombatActions": { + "type": "class CombatAction", + "id": 18, + "offset": 208, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 270648678 + }, + "m_sigilActions": { + "type": "class CombatAction", + "id": 19, + "offset": 224, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2176432675 + }, + "m_shadowPipRule": { + "type": "class SharedPointer", + "id": 20, + "offset": 280, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, + "pointer": true, + "hash": 2692865990 + }, + "m_gameObjectAnimStateTracker": { + "type": "class GameObjectAnimStateTracker", + "id": 21, + "offset": 296, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, "pointer": false, - "hash": 3576058981 + "hash": 3120084989 }, - "m_cantripsSpellType": { - "type": "enum CantripsSpellTemplate::CantripsSpellType", - "id": 56, - "offset": 880, - "flags": 2097159, + "m_duelPhase": { + "type": "enum kDuelPhase", + "id": 22, + "offset": 196, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3328314982, + "hash": 1813818086, "enum_options": { - "CS_Teleportation": 0, - "CS_Incantation": 1, - "CS_Beneficial": 2, - "CS_Ritual": 3, - "CS_Sigil": 4 + "kPhase_Starting": 0, + "kPhase_PrePlanning": 1, + "kPhase_Planning": 2, + "kPhase_PreExecution": 3, + "kPhase_Execution": 4, + "kPhase_Resolution": 5, + "kPhase_Victory": 6, + "kPhase_Ended": 7, + "kPhase_MAX": 10 } }, - "m_energyCost": { + "m_duelModifier": { + "type": "class SharedPointer", + "id": 23, + "offset": 264, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3330438158 + }, + "m_initiativeSwitchMode": { + "type": "enum Duel::SigilInitiativeSwitchMode", + "id": 24, + "offset": 384, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1258091520, + "enum_options": { + "InitiativeSwitchMode_None": 0, + "InitiativeSwitchMode_Reroll": 1, + "InitiativeSwitchMode_Switch": 2 + } + }, + "m_initiativeSwitchRounds": { "type": "int", - "id": 57, - "offset": 884, - "flags": 7, + "id": 25, + "offset": 388, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1236111677 + "hash": 540229885 }, - "m_animationKFMs": { - "type": "std::string", - "id": 58, - "offset": 888, - "flags": 131079, - "container": "Vector", + "m_combatRules": { + "type": "class SharedPointer", + "id": 26, + "offset": 464, + "flags": 31, + "container": "List", "dynamic": true, "singleton": false, - "pointer": false, - "hash": 3393275788 + "pointer": true, + "hash": 3327225763 }, - "m_animationNames": { - "type": "std::string", - "id": 59, - "offset": 912, - "flags": 7, - "container": "Vector", + "m_gameEffectInfo": { + "type": "class SharedPointer", + "id": 27, + "offset": 496, + "flags": 31, + "container": "List", "dynamic": true, "singleton": false, + "pointer": true, + "hash": 2275096584 + }, + "m_pStatEffects": { + "type": "class SharedPointer", + "id": 28, + "offset": 512, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1275229758 + }, + "m_alternateTurnCombatRule": { + "type": "class SharedPointer", + "id": 29, + "offset": 480, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1715882395 + }, + "m_altTurnCounter": { + "type": "int", + "id": 30, + "offset": 456, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, "pointer": false, - "hash": 1776419407 + "hash": 1434810564 }, - "m_soundEffectName": { - "type": "std::string", - "id": 60, - "offset": 936, - "flags": 131079, + "m_originalFirstTeamToAct": { + "type": "int", + "id": 31, + "offset": 188, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3235436082 + "hash": 560350457 }, - "m_soundEffectGain": { - "type": "float", - "id": 61, - "offset": 968, - "flags": 7, + "m_executionOrder": { + "type": "enum kDuelExecutionOrder", + "id": 32, + "offset": 528, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1827685932, + "hash": 3362082097, "enum_options": { - "__DEFAULT": "1.0" + "kDEO_Sequential": 0, + "kDEO_Alternating": 1 } }, - "m_cantripsSpellImageIndex": { - "type": "int", - "id": 62, - "offset": 972, - "flags": 7, + "m_noHenchmen": { + "type": "bool", + "id": 33, + "offset": 532, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1163855414 + }, + "m_SpellTruncation": { + "type": "bool", + "id": 34, + "offset": 540, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1257440762 + }, + "m_shadowThresholdFactor": { + "type": "float", + "id": 35, + "offset": 548, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2104355177 + }, + "m_shadowPipRatingFactor": { + "type": "float", + "id": 36, + "offset": 552, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1061434314 + }, + "m_defaultShadowPipRating": { + "type": "float", + "id": 37, + "offset": 556, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1544572080 + }, + "m_shadowPipThresholdTeam0": { + "type": "float", + "id": 38, + "offset": 560, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1902695161 + "hash": 447039594 }, - "m_cantripsSpellImageName": { - "type": "std::string", - "id": 63, - "offset": 976, - "flags": 131079, + "m_shadowPipThresholdTeam1": { + "type": "float", + "id": 39, + "offset": 564, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2661888099 + "hash": 447039595 }, - "m_effectParameter": { - "type": "std::string", - "id": 64, - "offset": 1008, - "flags": 7, + "m_maxArchmasteryTeam0": { + "type": "float", + "id": 40, + "offset": 568, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1522601705 + "hash": 300185527 }, - "m_cantripsSpellEffect": { - "type": "enum CantripsSpellTemplate::CantripsSpellEffect", - "id": 65, - "offset": 1040, - "flags": 2097159, + "m_maxArchmasteryTeam1": { + "type": "float", + "id": 41, + "offset": 572, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3436262155, - "enum_options": { - "CSE_None": 0, - "CSE_PlayEffect": 1, - "CSE_Mark": 2, - "CSE_Recall": 3, - "CSE_Heal": 4, - "CSE_NoAggro": 5, - "CSE_Teleport": 6, - "CSE_Invisibility": 7, - "CSE_Emote": 8, - "CSE_Ritual": 9, - "CSE_Sigil": 10, - "CSE_Beneficial": 11, - "CSE_PlaySchoolEffect": 12 - } + "hash": 300185528 }, - "m_cooldownSeconds": { - "type": "int", - "id": 66, - "offset": 1044, - "flags": 7, + "m_scalarDamage": { + "type": "float", + "id": 42, + "offset": 600, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1459266190 - } - } - }, - "69371062": { - "name": "class SG_GameAction_DestroyBlock*", - "bases": [ - "SG_GameAction", - "PropertyClass" - ], - "hash": 69371062, - "properties": { - "m_target": { - "type": "enum SG_GameAction::SG_Target", - "id": 0, - "offset": 72, - "flags": 2097159, + "hash": 1865068300 + }, + "m_scalarResist": { + "type": "float", + "id": 43, + "offset": 604, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1166870973, - "enum_options": { - "Target_Ball": 0, - "Target_Self": 1, - "Target_Connections": 2, - "__DEFAULT": "Target_Ball" - } - } - } - }, - "2036231557": { - "name": "class SharedPointer", - "bases": [ - "ServiceOptionBase", - "PropertyClass" - ], - "hash": 2036231557, - "properties": { - "m_serviceName": { - "type": "std::string", - "id": 0, - "offset": 72, + "hash": 270448583 + }, + "m_scalarPierce": { + "type": "float", + "id": 44, + "offset": 608, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2206028813 + "hash": 196427621 }, - "m_iconKey": { - "type": "std::string", - "id": 1, - "offset": 168, + "m_damageLimit": { + "type": "float", + "id": 45, + "offset": 612, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2457138637 + "hash": 271286357 }, - "m_displayKey": { - "type": "std::string", - "id": 2, - "offset": 104, + "m_dK0": { + "type": "float", + "id": 46, + "offset": 616, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3023276954 + "hash": 357232662 }, - "m_serviceIndex": { - "type": "unsigned int", - "id": 3, - "offset": 204, + "m_dN0": { + "type": "float", + "id": 47, + "offset": 620, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2103126710 + "hash": 357232761 }, - "m_forceInteract": { - "type": "bool", - "id": 4, - "offset": 200, + "m_resistLimit": { + "type": "float", + "id": 48, + "offset": 624, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1705789564 - } - } - }, - "68874795": { - "name": "class VisualAttributeBehaviorTemplate*", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 68874795, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, + "hash": 1192834544 + }, + "m_rK0": { + "type": "float", + "id": 49, + "offset": 628, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3130754092 + "hash": 357247908 }, - "m_visualAttributeType": { - "type": "enum VisualAttributeType", - "id": 1, - "offset": 120, - "flags": 2097159, + "m_rN0": { + "type": "float", + "id": 50, + "offset": 632, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2701225082, - "enum_options": { - "VAT_HairStyle": 0, - "VAT_HairColor": 1, - "VAT_FaceStyle": 2, - "VAT_SkinColor": 3, - "VAT_EyeColor": 4, - "VAT_FacePaint": 5, - "VAT_NewEyeColor": 6, - "VAT_NewFaceStyle": 7, - "VAT_NoseStyle": 8, - "VAT_MouthStyle": 9, - "VAT_AccessoryStyle": 10, - "VAT_EyebrowStyle": 11, - "VAT_LipColorStyle": 12, - "VAT_BoyColor": 13, - "VAT_BoyTrimColor": 14, - "VAT_GirlColor": 15, - "VAT_GirlTrimColor": 16 - } + "hash": 357248007 }, - "m_sourceFile": { - "type": "std::string", - "id": 2, - "offset": 128, - "flags": 131079, + "m_fullPartyGroup": { + "type": "bool", + "id": 51, + "offset": 636, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2304987980 + "hash": 1888593059 }, - "m_referenceFile": { - "type": "std::string", - "id": 3, - "offset": 160, - "flags": 131079, + "m_matchTimer": { + "type": "float", + "id": 52, + "offset": 656, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1866483306 + "hash": 1510935909 }, - "m_color": { - "type": "class Color", - "id": 4, - "offset": 192, - "flags": 262151, + "m_bonusTime": { + "type": "int", + "id": 53, + "offset": 660, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1791663549 + "hash": 1757496496 }, - "m_equipmentIcon": { - "type": "std::string", - "id": 5, - "offset": 200, - "flags": 131079, + "m_passPenalty": { + "type": "int", + "id": 54, + "offset": 664, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1920035708 - } - } - }, - "2036058068": { - "name": "class ReqEnergy*", - "bases": [ - "ReqNumeric", - "Requirement", - "PropertyClass" - ], - "hash": 2036058068, - "properties": { - "m_applyNOT": { - "type": "bool", - "id": 0, - "offset": 72, + "hash": 982951662 + }, + "m_yellowTime": { + "type": "int", + "id": 55, + "offset": 668, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1746328074, - "enum_options": { - "__DEFAULT": 0 - } + "hash": 1017028741 }, - "m_operator": { - "type": "enum Requirement::Operator", - "id": 1, - "offset": 76, - "flags": 2097183, + "m_redTime": { + "type": "int", + "id": 56, + "offset": 672, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2672792317, - "enum_options": { - "ROP_AND": 0, - "ROP_OR": 1, - "__DEFAULT": "ROP_AND" - } + "hash": 1909556708 }, - "m_numericValue": { - "type": "float", - "id": 2, - "offset": 80, + "m_minTurnTime": { + "type": "int", + "id": 57, + "offset": 676, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 521915239 + "hash": 652524886 }, - "m_operatorType": { - "type": "enum ReqNumeric::OPERATOR_TYPE", - "id": 3, - "offset": 84, - "flags": 2097183, + "m_bIsPlayerTimedDuel": { + "type": "bool", + "id": 58, + "offset": 637, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2228122961, - "enum_options": { - "OPERATOR_UNKNOWN": 4294967295, - "OPERATOR_EQUALS": 0, - "OPERATOR_GREATER_THAN": 1, - "OPERATOR_LESS_THAN": 2, - "OPERATOR_GREATER_THAN_EQ": 3, - "OPERATOR_LESS_THAN_EQ": 4 - } + "hash": 857311611 }, - "m_isPercent": { - "type": "bool", - "id": 4, - "offset": 88, + "m_hideNoncombatantDistance": { + "type": "float", + "id": 59, + "offset": 536, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 514192128 + "hash": 1733017888 } } }, - "2036045780": { - "name": "class ReqEnergy", + "1362719164": { + "name": "class MountDyeToTexture", "bases": [ - "ReqNumeric", - "Requirement", "PropertyClass" ], - "hash": 2036045780, + "hash": 1362719164, "properties": { - "m_applyNOT": { - "type": "bool", + "m_dye": { + "type": "int", "id": 0, "offset": 72, - "flags": 31, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1746328074, - "enum_options": { - "__DEFAULT": 0 - } + "hash": 267033084 }, - "m_operator": { - "type": "enum Requirement::Operator", + "m_texture": { + "type": "int", "id": 1, "offset": 76, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2672792317, - "enum_options": { - "ROP_AND": 0, - "ROP_OR": 1, - "__DEFAULT": "ROP_AND" - } - }, - "m_numericValue": { - "type": "float", - "id": 2, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 521915239 - }, - "m_operatorType": { - "type": "enum ReqNumeric::OPERATOR_TYPE", - "id": 3, - "offset": 84, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2228122961, - "enum_options": { - "OPERATOR_UNKNOWN": 4294967295, - "OPERATOR_EQUALS": 0, - "OPERATOR_GREATER_THAN": 1, - "OPERATOR_LESS_THAN": 2, - "OPERATOR_GREATER_THAN_EQ": 3, - "OPERATOR_LESS_THAN_EQ": 4 - } - }, - "m_isPercent": { - "type": "bool", - "id": 4, - "offset": 88, - "flags": 31, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 514192128 + "hash": 222406987 } } }, - "444584581": { - "name": "class SharedPointer", + "1791221189": { + "name": "class SharedPointer", "bases": [ "Window", "PropertyClass" ], - "hash": 444584581, + "hash": 1791221189, "properties": { "m_sName": { "type": "std::string", @@ -603345,331 +550297,279 @@ } } }, - "1632604581": { - "name": "class BalloonBaseWindow*", + "84951489": { + "name": "class Hand", "bases": [ - "Window", "PropertyClass" ], - "hash": 1632604581, + "hash": 84951489, "properties": { - "m_sName": { + "m_spellList": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1541139342 + }, + "m_spellFusionIDList": { + "type": "unsigned int", + "id": 1, + "offset": 104, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1038665578 + } + } + }, + "1357743376": { + "name": "class MinigameSigilOptionAdvancedModeFields", + "bases": [ + "PropertyClass" + ], + "hash": 1357743376, + "properties": { + "m_sigilNameKey": { "type": "std::string", "id": 0, - "offset": 80, - "flags": 135, + "offset": 72, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2306437263 + "hash": 3055768893 }, - "m_Children": { - "type": "class SharedPointer", + "m_sigilTextKey": { + "type": "std::string", "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2621225959 + "pointer": false, + "hash": 2384767873 }, - "m_Style": { - "type": "unsigned int", + "m_sigilEncounterInfoTextKey": { + "type": "std::string", "id": 2, - "offset": 152, - "flags": 1048583, + "offset": 168, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "SCALE_CHILDREN": 2, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "FOCUS_LOCKED": 64, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152 - } + "hash": 3121233376 }, - "m_Flags": { - "type": "unsigned int", + "m_successZone": { + "type": "std::string", "id": 3, - "offset": 156, - "flags": 1048583, + "offset": 200, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } + "hash": 1516681392 }, - "m_Window": { - "type": "class Rect", + "m_sigilIcon": { + "type": "std::string", "id": 4, - "offset": 160, - "flags": 135, + "offset": 136, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3105139380 + "hash": 3177480156 }, - "m_fTargetAlpha": { - "type": "float", + "m_teamUpAllowed": { + "type": "int", "id": 5, - "offset": 212, - "flags": 135, + "offset": 232, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1809129834 + "hash": 1016118542 }, - "m_fDisabledAlpha": { - "type": "float", + "m_isCluster": { + "type": "bool", "id": 6, - "offset": 216, - "flags": 135, + "offset": 236, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1389987675 + "hash": 1183074257 }, - "m_fAlpha": { - "type": "float", + "m_passedReqs": { + "type": "bool", "id": 7, - "offset": 208, - "flags": 65671, + "offset": 237, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 482130755 + "hash": 1047234766 }, - "m_pWindowStyle": { - "type": "class SharedPointer", + "m_failedRequirement": { + "type": "class SharedPointer", "id": 8, - "offset": 232, - "flags": 135, + "offset": 240, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": true, - "hash": 3623628394 - }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, + "hash": 2322583945 + } + } + }, + "942650588": { + "name": "class ClaimedPeriodicOffers", + "bases": [ + "PropertyClass" + ], + "hash": 942650588, + "properties": { + "m_crownsAdded": { + "type": "int", + "id": 0, + "offset": 72, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2102211316 + "hash": 997797672 }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, + "m_itemsAdded": { + "type": "int", + "id": 1, + "offset": 76, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1846695875 - }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, + "hash": 737787694 + } + } + }, + "1357373195": { + "name": "class InfractionMessageBox*", + "bases": [ + "InfractionPenalty", + "PropertyClass" + ], + "hash": 1357373195, + "properties": { + "m_internalID": { + "type": "unsigned int", + "id": 0, + "offset": 72, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3389835433 + "hash": 1854540375 }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, + "m_categoryID": { + "type": "unsigned int", + "id": 1, + "offset": 76, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2547159940 + "hash": 1382795736 }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, + "m_removeAtPointValue": { + "type": "float", + "id": 2, + "offset": 80, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2587533771 + "hash": 2112196961 }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, + "m_expireTime": { + "type": "unsigned int", + "id": 3, + "offset": 84, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3091503757 - } - } - }, - "1632405061": { - "name": "class SharedPointer", - "bases": [ - "LootInfo", - "LootInfoBase", - "PropertyClass" - ], - "hash": 1632405061, - "properties": { - "m_lootType": { - "type": "enum LootInfo::LOOT_TYPE", - "id": 0, - "offset": 72, - "flags": 2097183, + "hash": 1836304873 + }, + "m_titleKey": { + "type": "std::string", + "id": 4, + "offset": 88, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1591891442, - "enum_options": { - "LOOT_TYPE_NONE": 0, - "LOOT_TYPE_GOLD": 1, - "LOOT_TYPE_MANA": 2, - "LOOT_TYPE_ITEM": 3, - "LOOT_TYPE_TREASURE_CARD": 4, - "LOOT_TYPE_MAGIC_XP": 5, - "LOOT_TYPE_ADD_SPELL": 6, - "LOOT_TYPE_MAX_HEALTH": 7, - "LOOT_TYPE_MAX_GOLD": 8, - "LOOT_TYPE_MAX_MANA": 9, - "LOOT_TYPE_MAX_POTION": 10, - "LOOT_TYPE_TRAINING_POINTS": 11, - "LOOT_TYPE_RECIPE": 12, - "LOOT_TYPE_CRAFTING_SLOT": 13, - "LOOT_TYPE_REAGENT": 14, - "LOOT_TYPE_PETSNACK": 15, - "LOOT_TYPE_GARDENING_XP": 16, - "LOOT_TYPE_PET_XP": 17, - "LOOT_TYPE_TREASURE_TABLE": 18, - "LOOT_TYPE_ARENA_POINTS": 19, - "LOOT_TYPE_ARENA_BONUS_POINTS": 20, - "LOOT_TYPE_GROUP": 21, - "LOOT_TYPE_FISHING_XP": 22, - "LOOT_TYPE_EVENT_CURRENCY_1": 24, - "LOOT_TYPE_EVENT_CURRENCY_2": 25, - "LOOT_TYPE_PVP_CURRENCY": 26, - "LOOT_TYPE_PVP_CURRENCY_BONUS": 27, - "LOOT_TYPE_PVP_TOURNEY_CURRENCY": 28, - "LOOT_TYPE_PVP_TOURNEY_CURRENCY_BONUS": 29, - "LOOT_TYPE_FURNITURE_ESSENCE": 30 - } + "hash": 3096106918 }, - "m_goldAmount": { - "type": "int", - "id": 1, - "offset": 80, + "m_messageKey": { + "type": "std::string", + "id": 5, + "offset": 120, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 754429876 + "hash": 3561518217 } } }, - "1632187140": { - "name": "class SharedPointer", + "1355995049": { + "name": "class GameObjectAnimStateTracker", "bases": [ "PropertyClass" ], - "hash": 1632187140, + "hash": 1355995049, "properties": { - "m_timeList": { - "type": "class ParticipantParameter", + "m_animDataList": { + "type": "class SharedPointer", "id": 0, "offset": 72, - "flags": 7, + "flags": 31, "container": "List", "dynamic": true, "singleton": false, - "pointer": false, - "hash": 2652015083 - }, - "m_duelID.m_full": { - "type": "unsigned __int64", - "id": 1, - "offset": 88, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1024980477 + "pointer": true, + "hash": 1685449834 } } }, - "69943298": { - "name": "class ClientDuelBehavior", + "1791438932": { + "name": "class RateMyStitchBehavior*", "bases": [ - "DuelBehavior", "BehaviorInstance", "PropertyClass" ], - "hash": 69943298, + "hash": 1791438932, "properties": { "m_behaviorTemplateNameID": { "type": "unsigned int", @@ -603681,39 +550581,16 @@ "singleton": false, "pointer": false, "hash": 223437287 - }, - "m_pDuel": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1066616366 - }, - "m_sigilTemplateID": { - "type": "unsigned int", - "id": 2, - "offset": 128, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 269055310 } } }, - "444949119": { - "name": "class ClientRaidPortalBehavior", + "85229956": { + "name": "class FishBehavior*", "bases": [ - "RaidPortalBehavior", "BehaviorInstance", "PropertyClass" ], - "hash": 444949119, + "hash": 85229956, "properties": { "m_behaviorTemplateNameID": { "type": "unsigned int", @@ -603726,659 +550603,741 @@ "pointer": false, "hash": 223437287 }, - "m_active": { - "type": "bool", + "m_fishSize": { + "type": "float", "id": 1, "offset": 112, - "flags": 31, + "flags": 65536, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 239335471 + "hash": 1986368316 } } }, - "2037410175": { - "name": "class WizDisableItemStatEffect*", + "1355995043": { + "name": "class GameObjectAnimStateTracker*", "bases": [ - "StatisticEffect", - "GameEffectBase", "PropertyClass" ], - "hash": 2037410175, + "hash": 1355995043, "properties": { - "m_currentTickCount": { - "type": "double", + "m_animDataList": { + "type": "class SharedPointer", "id": 0, - "offset": 80, - "flags": 63, - "container": "Static", - "dynamic": false, + "offset": 72, + "flags": 31, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 2533274692 - }, - "m_effectNameID": { - "type": "unsigned int", - "id": 1, - "offset": 96, - "flags": 63, + "pointer": true, + "hash": 1685449834 + } + } + }, + "944437540": { + "name": "class WinAnimScale", + "bases": [ + "WindowAnimation", + "PropertyClass" + ], + "hash": 944437540, + "properties": { + "m_bUseDeepCopy": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1204067144 + "hash": 433380635 }, - "m_bIsOnPet": { - "type": "bool", - "id": 2, - "offset": 73, - "flags": 31, + "m_scale": { + "type": "float", + "id": 1, + "offset": 80, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 522593303 - }, - "m_originatorID": { - "type": "gid", - "id": 3, + "hash": 899693439 + } + } + }, + "1791438972": { + "name": "class RateMyStitchBehavior", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1791438972, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, "offset": 104, "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1131810019 - }, - "m_itemSlotID": { - "type": "unsigned int", - "id": 4, - "offset": 112, - "flags": 63, + "hash": 223437287 + } + } + }, + "943950231": { + "name": "class SharedPointer", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 943950231, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1895747595 + "hash": 3130754092 }, - "m_internalID": { - "type": "int", - "id": 5, - "offset": 92, - "flags": 63, + "m_castleMagicItemType": { + "type": "enum CastleMagicItemType", + "id": 1, + "offset": 120, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1643137924 + "hash": 3772531839, + "enum_options": { + "CM_Lever": 0, + "CM_PlayerDetector": 1, + "CM_PressurePlate": 2, + "CM_StartDetector": 3, + "CM_Brazier": 4, + "CM_TextDetector": 5, + "CM_JumpDetector": 6, + "CM_MagicReflector": 7, + "CM_Timer": 8, + "CM_RandomReflector": 9, + "CM_MagicButton": 10, + "CM_Computer": 11, + "CM_FireOrbCreator": 12, + "CM_IceOrbCreator": 13, + "CM_StormOrbCreator": 14, + "CM_FireOrbDetector": 15, + "CM_IceOrbDetector": 16, + "CM_StormOrbDetector": 17, + "CM_Help": 18, + "CM_RoomDetector": 19, + "CM_Counter": 20, + "CM_ItemDetector": 21, + "CM_AnyItemPlayerDetector": 22, + "CM_SequenceReflector": 23, + "CM_FastTimer": 24, + "CM_CantripDetector": 25 + } }, - "m_endTime": { - "type": "unsigned int", - "id": 6, - "offset": 88, - "flags": 31, + "m_numberOfActions": { + "type": "int", + "id": 2, + "offset": 124, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 716479635 + "hash": 1161288009 }, - "m_lookupIndex": { - "type": "int", - "id": 7, + "m_actionStringKeys": { + "type": "std::string", + "id": 3, "offset": 128, - "flags": 31, - "container": "Static", - "dynamic": false, + "flags": 7, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 1626623948 + "hash": 2973138892 } } }, - "69958050": { - "name": "class ClientDeckBehavior", + "85984462": { + "name": "class SharedPointer", "bases": [ - "DeckBehavior", - "BehaviorInstance", + "CinematicAction", "PropertyClass" ], - "hash": 69958050, + "hash": 85984462, "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", + "m_timeOffset": { + "type": "float", "id": 0, - "offset": 104, - "flags": 39, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 + "hash": 2237098605 }, - "m_spellList": { - "type": "class SharedPointer", + "m_effectRel": { + "type": "enum BaseEffectCinematicAction::kEffectRelative", "id": 1, - "offset": 120, - "flags": 27, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2181913740 - }, - "m_serializedExclusionList": { - "type": "std::string", - "id": 2, - "offset": 152, - "flags": 63, + "offset": 80, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1502583517 - }, - "m_archmasterySchool": { - "type": "unsigned int", - "id": 3, - "offset": 184, - "flags": 63, + "hash": 2978921287, + "enum_options": { + "kNone": 0, + "kSigil": 1, + "kTarget": 2, + "kSource": 3, + "kActor": 4 + } + } + } + }, + "943348561": { + "name": "class SharedPointer", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 943348561, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 485805784 + "hash": 3130754092 } } }, - "447380377": { - "name": "class LeashedPathNodeDescriptor*", + "1357284531": { + "name": "class SharedPointer", "bases": [ - "NodeDescriptor", + "ServiceOptionBase", "PropertyClass" ], - "hash": 447380377, + "hash": 1357284531, "properties": { - "m_nodeType": { - "type": "enum LeashedPathNodeType", + "m_serviceName": { + "type": "std::string", "id": 0, "offset": 72, - "flags": 2097159, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3706891451, - "enum_options": { - "NT_NONE": 0, - "NT_ANIM": 1, - "NT_SPEEDSCALE": 2, - "NT_TELEPORT": 3 - } + "hash": 2206028813 }, - "m_animationName": { + "m_iconKey": { "type": "std::string", "id": 1, - "offset": 80, - "flags": 7, + "offset": 168, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3393414044 + "hash": 2457138637 }, - "m_teleportToZone": { + "m_displayKey": { "type": "std::string", "id": 2, - "offset": 112, - "flags": 7, + "offset": 104, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2018677929 + "hash": 3023276954 }, - "m_zoneLocation": { - "type": "std::string", + "m_serviceIndex": { + "type": "unsigned int", "id": 3, - "offset": 144, - "flags": 7, + "offset": 204, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1597011152 + "hash": 2103126710 }, - "m_speedScale": { - "type": "float", + "m_forceInteract": { + "type": "bool", "id": 4, - "offset": 176, - "flags": 7, + "offset": 200, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2118638608 + "hash": 1705789564 } } }, - "1633557501": { - "name": "class SharedPointer", + "85468194": { + "name": "class SharedPointer", "bases": [ - "LootInfo", - "LootInfoBase", + "BehaviorInstance", "PropertyClass" ], - "hash": 1633557501, + "hash": 85468194, "properties": { - "m_lootType": { - "type": "enum LootInfo::LOOT_TYPE", + "m_behaviorTemplateNameID": { + "type": "unsigned int", "id": 0, - "offset": 72, - "flags": 2097183, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1591891442, - "enum_options": { - "LOOT_TYPE_NONE": 0, - "LOOT_TYPE_GOLD": 1, - "LOOT_TYPE_MANA": 2, - "LOOT_TYPE_ITEM": 3, - "LOOT_TYPE_TREASURE_CARD": 4, - "LOOT_TYPE_MAGIC_XP": 5, - "LOOT_TYPE_ADD_SPELL": 6, - "LOOT_TYPE_MAX_HEALTH": 7, - "LOOT_TYPE_MAX_GOLD": 8, - "LOOT_TYPE_MAX_MANA": 9, - "LOOT_TYPE_MAX_POTION": 10, - "LOOT_TYPE_TRAINING_POINTS": 11, - "LOOT_TYPE_RECIPE": 12, - "LOOT_TYPE_CRAFTING_SLOT": 13, - "LOOT_TYPE_REAGENT": 14, - "LOOT_TYPE_PETSNACK": 15, - "LOOT_TYPE_GARDENING_XP": 16, - "LOOT_TYPE_PET_XP": 17, - "LOOT_TYPE_TREASURE_TABLE": 18, - "LOOT_TYPE_ARENA_POINTS": 19, - "LOOT_TYPE_ARENA_BONUS_POINTS": 20, - "LOOT_TYPE_GROUP": 21, - "LOOT_TYPE_FISHING_XP": 22, - "LOOT_TYPE_EVENT_CURRENCY_1": 24, - "LOOT_TYPE_EVENT_CURRENCY_2": 25, - "LOOT_TYPE_PVP_CURRENCY": 26, - "LOOT_TYPE_PVP_CURRENCY_BONUS": 27, - "LOOT_TYPE_PVP_TOURNEY_CURRENCY": 28, - "LOOT_TYPE_PVP_TOURNEY_CURRENCY_BONUS": 29, - "LOOT_TYPE_FURNITURE_ESSENCE": 30 - } + "hash": 223437287 }, - "m_itemID": { - "type": "gid", + "m_caughtFishList": { + "type": "class SharedPointer", "id": 1, - "offset": 88, - "flags": 33554463, - "container": "Static", - "dynamic": false, + "offset": 112, + "flags": 1, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 569545460 + "pointer": true, + "hash": 2107365240 }, - "m_numItems": { - "type": "int", + "m_fishHistoryList": { + "type": "class SharedPointer", "id": 2, - "offset": 96, - "flags": 31, - "container": "Static", - "dynamic": false, + "offset": 128, + "flags": 1, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 1588646284 + "pointer": true, + "hash": 3741999493 } } }, - "2038760820": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 2038760820, - "properties": {} - }, - "71743486": { - "name": "class SharedPointer", + "1357189466": { + "name": "class ShadowPipOverride*", "bases": [ - "FishBehavior", - "BehaviorInstance", + "CombatRule", "PropertyClass" ], - "hash": 71743486, + "hash": 1357189466, "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", + "m_shadowThresholdType": { + "type": "enum kShadow_Threshold_Type", "id": 0, - "offset": 104, - "flags": 39, + "offset": 72, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 + "hash": 2847763136, + "enum_options": { + "SHADOW_THRESHOLD_MIN": 0, + "SHADOW_THRESHOLD_AVG": 1, + "SHADOW_THRESHOLD_MAX": 2 + } }, - "m_fishSize": { + "m_shadowThresholdFactor": { "type": "float", "id": 1, - "offset": 112, - "flags": 65536, + "offset": 76, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1986368316 - } - } - }, - "2038438212": { - "name": "class AddMatchUpdate*", - "bases": [ - "TournamentUpdate", - "PropertyClass" - ], - "hash": 2038438212, - "properties": { - "m_matchInfo": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, + "hash": 2104355177 + }, + "m_shadowPipRatingFactor": { + "type": "float", + "id": 2, + "offset": 80, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2424135306 + "pointer": false, + "hash": 1061434314 } } }, - "450631439": { - "name": "class SharedPointer", + "1791934037": { + "name": "class SharedPointer", "bases": [ + "ControlBar", + "Window", "PropertyClass" ], - "hash": 450631439, + "hash": 1791934037, "properties": { - "m_castleMagicItemList": { - "type": "class SharedPointer", + "m_sName": { + "type": "std::string", "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3812758310 + "pointer": false, + "hash": 2306437263 }, - "m_castleMagicTimerList": { - "type": "class SharedPointer", + "m_Children": { + "type": "class SharedPointer", "id": 1, - "offset": 152, - "flags": 7, - "container": "List", + "offset": 112, + "flags": 65671, + "container": "Vector", "dynamic": true, "singleton": false, "pointer": true, - "hash": 2420724439 + "hash": 2621225959 }, - "m_randomNumberSetBuffer": { - "type": "std::string", + "m_Style": { + "type": "unsigned int", "id": 2, - "offset": 360, - "flags": 7, + "offset": 152, + "flags": 1048583, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1824603147 + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "SCALE_CHILDREN": 2, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "FOCUS_LOCKED": 64, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152 + } }, - "m_randomNumberSetIndexList": { - "type": "gid", + "m_Flags": { + "type": "unsigned int", "id": 3, - "offset": 416, - "flags": 7, - "container": "List", - "dynamic": true, + "offset": 156, + "flags": 1048583, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 678388482 + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } }, - "m_defaultCameraTime": { - "type": "float", + "m_Window": { + "type": "class Rect", "id": 4, - "offset": 528, - "flags": 7, + "offset": 160, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 617092724 + "hash": 3105139380 }, - "m_setPlayAsPet": { - "type": "bool", + "m_fTargetAlpha": { + "type": "float", "id": 5, - "offset": 533, - "flags": 7, + "offset": 212, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 124615314 - } - } - }, - "70958365": { - "name": "class MoveCommandSleep", - "bases": [ - "MoveController::MoveCommand", - "PropertyClass" - ], - "hash": 70958365, - "properties": { - "m_fSleep": { + "hash": 1809129834 + }, + "m_fDisabledAlpha": { "type": "float", - "id": 0, - "offset": 88, - "flags": 31, + "id": 6, + "offset": 216, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 503465270 - } - } - }, - "450457958": { - "name": "class CharMap*", - "bases": [ - "PropertyClass" - ], - "hash": 450457958, - "properties": { - "m_src": { - "type": "unsigned short", - "id": 0, - "offset": 72, - "flags": 7, + "hash": 1389987675 + }, + "m_fAlpha": { + "type": "float", + "id": 7, + "offset": 208, + "flags": 65671, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 820631632 + "hash": 482130755 }, - "m_dst": { - "type": "unsigned short", - "id": 1, - "offset": 74, - "flags": 7, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3623628394 + }, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 820615347 - } - } - }, - "1636895196": { - "name": "class BattlegroundPOI*", - "bases": [ - "PropertyClass" - ], - "hash": 1636895196, - "properties": { - "m_poiList": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 7, + "hash": 2102211316 + }, + "m_sScript": { + "type": "std::string", + "id": 10, + "offset": 352, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1846695875 + }, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3389835433 + }, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547159940 + }, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513510520 + }, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, "container": "List", "dynamic": true, "singleton": false, - "pointer": true, - "hash": 3936595873 - } - } - }, - "70794525": { - "name": "class MoveCommandSleep*", - "bases": [ - "MoveController::MoveCommand", - "PropertyClass" - ], - "hash": 70794525, - "properties": { - "m_fSleep": { + "pointer": false, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3091503757 + }, + "m_fPosition": { "type": "float", - "id": 0, - "offset": 88, - "flags": 31, + "id": 16, + "offset": 584, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 503465270 - } - } - }, - "449832256": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 449832256, - "properties": { - "m_passInfo": { - "type": "class PassInfo", - "id": 0, - "offset": 72, - "flags": 31, + "hash": 1808212114 + }, + "m_BaseColor": { + "type": "class Color", + "id": 17, + "offset": 588, + "flags": 262279, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2268899601 + "hash": 2172251096 }, - "m_expireTime": { - "type": "int", - "id": 1, - "offset": 240, - "flags": 31, + "m_BarColor": { + "type": "class Color", + "id": 18, + "offset": 592, + "flags": 262279, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1624902422 - } - } - }, - "1636331801": { - "name": "class CraftingSlotLootInfo*", - "bases": [ - "LootInfo", - "LootInfoBase", - "PropertyClass" - ], - "hash": 1636331801, - "properties": { - "m_lootType": { - "type": "enum LootInfo::LOOT_TYPE", - "id": 0, - "offset": 72, - "flags": 2097183, + "hash": 2259916498 + }, + "m_bDisplayVertical": { + "type": "bool", + "id": 19, + "offset": 596, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1591891442, - "enum_options": { - "LOOT_TYPE_NONE": 0, - "LOOT_TYPE_GOLD": 1, - "LOOT_TYPE_MANA": 2, - "LOOT_TYPE_ITEM": 3, - "LOOT_TYPE_TREASURE_CARD": 4, - "LOOT_TYPE_MAGIC_XP": 5, - "LOOT_TYPE_ADD_SPELL": 6, - "LOOT_TYPE_MAX_HEALTH": 7, - "LOOT_TYPE_MAX_GOLD": 8, - "LOOT_TYPE_MAX_MANA": 9, - "LOOT_TYPE_MAX_POTION": 10, - "LOOT_TYPE_TRAINING_POINTS": 11, - "LOOT_TYPE_RECIPE": 12, - "LOOT_TYPE_CRAFTING_SLOT": 13, - "LOOT_TYPE_REAGENT": 14, - "LOOT_TYPE_PETSNACK": 15, - "LOOT_TYPE_GARDENING_XP": 16, - "LOOT_TYPE_PET_XP": 17, - "LOOT_TYPE_TREASURE_TABLE": 18, - "LOOT_TYPE_ARENA_POINTS": 19, - "LOOT_TYPE_ARENA_BONUS_POINTS": 20, - "LOOT_TYPE_GROUP": 21, - "LOOT_TYPE_FISHING_XP": 22, - "LOOT_TYPE_EVENT_CURRENCY_1": 24, - "LOOT_TYPE_EVENT_CURRENCY_2": 25, - "LOOT_TYPE_PVP_CURRENCY": 26, - "LOOT_TYPE_PVP_CURRENCY_BONUS": 27, - "LOOT_TYPE_PVP_TOURNEY_CURRENCY": 28, - "LOOT_TYPE_PVP_TOURNEY_CURRENCY_BONUS": 29, - "LOOT_TYPE_FURNITURE_ESSENCE": 30 - } + "hash": 1359621189 }, - "m_delta": { + "m_pBarMaterial": { + "type": "class SharedPointer", + "id": 20, + "offset": 600, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2481929515 + }, + "m_pTopLeftMaterial": { + "type": "class SharedPointer", + "id": 21, + "offset": 616, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3248096916 + }, + "m_pCenterMaterial": { + "type": "class SharedPointer", + "id": 22, + "offset": 632, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1519560055 + }, + "m_pBottomRightMaterial": { + "type": "class SharedPointer", + "id": 23, + "offset": 648, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2932444745 + }, + "m_fMin": { + "type": "float", + "id": 24, + "offset": 700, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 309551905 + }, + "m_fMax": { + "type": "float", + "id": 25, + "offset": 704, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 309551651 + }, + "m_nTabWidth": { "type": "int", - "id": 1, - "offset": 80, - "flags": 31, + "id": 26, + "offset": 708, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 791787588 + "hash": 1554957503 } } }, - "70479913": { - "name": "enum SpringboardNodeDescriptor::AnimationState", - "bases": [], - "hash": 70479913, - "properties": {} - }, - "449176113": { - "name": "class EmotesRadialMenuBehavior", + "1791913178": { + "name": "class SharedPointer", "bases": [ + "ClientEquipmentBehavior", "BehaviorInstance", "PropertyClass" ], - "hash": 449176113, + "hash": 1791913178, "properties": { "m_behaviorTemplateNameID": { "type": "unsigned int", @@ -604391,760 +551350,938 @@ "pointer": false, "hash": 223437287 }, - "m_radialMenuData": { - "type": "std::string", + "m_itemList": { + "type": "class SharedPointer", "id": 1, - "offset": 128, - "flags": 575, - "container": "Static", - "dynamic": false, + "offset": 120, + "flags": 27, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 3438486999 + "pointer": true, + "hash": 1983655699 + }, + "m_slotList": { + "type": "class SharedPointer", + "id": 2, + "offset": 136, + "flags": 27, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 3213026923 + }, + "m_publicItemList": { + "type": "class SharedPointer", + "id": 3, + "offset": 152, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1693467991 + }, + "m_equipmentSets": { + "type": "class SharedPointer", + "id": 4, + "offset": 232, + "flags": 27, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1904799695 } } }, - "1634327279": { - "name": "class SharedPointer", + "86075614": { + "name": "class ClientAnimatePipsCinematicAction", "bases": [ + "AnimatePipsCinematicAction", + "ActorCinematicAction", + "CinematicAction", "PropertyClass" ], - "hash": 1634327279, + "hash": 86075614, "properties": { - "m_labelKey": { - "type": "std::string", + "m_timeOffset": { + "type": "float", "id": 0, "offset": 72, - "flags": 8388615, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3291650660 + "hash": 2237098605 }, - "m_tipID": { - "type": "gid", + "m_actor": { + "type": "std::string", "id": 1, - "offset": 104, - "flags": 33554439, + "offset": 80, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 810892562 + "hash": 2285866132 }, - "m_children": { - "type": "class HelpChatElement*", + "m_sActorPrefix": { + "type": "std::string", "id": 2, - "offset": 112, + "offset": 120, "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1958485829 - } - } - }, - "2038438372": { - "name": "class AddMatchUpdate", - "bases": [ - "TournamentUpdate", - "PropertyClass" - ], - "hash": 2038438372, - "properties": { - "m_matchInfo": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2424135306 - } - } - }, - "447836898": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 447836898, - "properties": { - "m_pipList": { - "type": "class ParticipantPipData", - "id": 0, - "offset": 72, + "pointer": false, + "hash": 3246317205 + }, + "m_fPerPipDelay": { + "type": "float", + "id": 3, + "offset": 152, "flags": 7, - "container": "List", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 3423034348 + "hash": 1466507836 }, - "m_duelID.m_full": { - "type": "unsigned __int64", - "id": 1, - "offset": 88, + "m_fRate": { + "type": "float", + "id": 4, + "offset": 156, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1024980477 + "hash": 883665801 } } }, - "1633647813": { - "name": "class CrownShopItem*", + "945965785": { + "name": "class AdvPvPEloRecord*", "bases": [ "PropertyClass" ], - "hash": 1633647813, + "hash": 945965785, "properties": { - "m_itemTemplateId": { + "m_eloRecordID": { "type": "gid", "id": 0, "offset": 72, - "flags": 31, + "flags": 16777279, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1978701296 + "hash": 832082468 }, - "m_itemFlags": { - "type": "int", + "m_leagueID": { + "type": "unsigned int", "id": 1, - "offset": 104, - "flags": 31, + "offset": 80, + "flags": 33554495, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1792726006 + "hash": 692361645 }, - "m_goldCost": { - "type": "int", + "m_seasonID": { + "type": "unsigned int", "id": 2, + "offset": 84, + "flags": 33554495, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 535260643 + }, + "m_startTime": { + "type": "unsigned int", + "id": 3, + "offset": 88, + "flags": 33554495, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1598371274 + }, + "m_ended": { + "type": "bool", + "id": 4, "offset": 92, - "flags": 31, + "flags": 33554495, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 444550297 + "hash": 795768915 }, - "m_crownsCost": { + "m_elo": { "type": "int", - "id": 3, + "id": 5, "offset": 96, - "flags": 31, + "flags": 33554495, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1592212719 + "hash": 267033754 }, - "m_ticketCost": { + "m_rankIndex": { "type": "int", - "id": 4, + "id": 6, "offset": 100, - "flags": 31, + "flags": 33554495, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1199423063 + "hash": 716259486 }, - "m_displayPriority": { - "type": "std::string", - "id": 5, + "m_wins": { + "type": "int", + "id": 7, + "offset": 104, + "flags": 33554495, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 219992347 + }, + "m_losses": { + "type": "int", + "id": 8, + "offset": 108, + "flags": 33554495, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 681549075 + }, + "m_draws": { + "type": "int", + "id": 9, "offset": 112, + "flags": 33554495, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 792242907 + } + } + }, + "945578664": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 945578664, + "properties": { + "m_versionNumber": { + "type": "unsigned int", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1265259452 + }, + "m_favoriteTemplateIDList": { + "type": "unsigned int", + "id": 1, + "offset": 80, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 372036018 + }, + "m_playerAddedTemplateIDList": { + "type": "unsigned int", + "id": 2, + "offset": 96, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2042557329 + } + } + }, + "1357373219": { + "name": "class InfractionMessageBox", + "bases": [ + "InfractionPenalty", + "PropertyClass" + ], + "hash": 1357373219, + "properties": { + "m_internalID": { + "type": "unsigned int", + "id": 0, + "offset": 72, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2036319987 + "hash": 1854540375 }, - "m_strikethruCrowns": { - "type": "int", - "id": 6, - "offset": 144, + "m_categoryID": { + "type": "unsigned int", + "id": 1, + "offset": 76, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1756077003 + "hash": 1382795736 }, - "m_strikethruGold": { - "type": "int", - "id": 7, - "offset": 148, + "m_removeAtPointValue": { + "type": "float", + "id": 2, + "offset": 80, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 664425781 + "hash": 2112196961 }, - "m_description": { - "type": "std::string", - "id": 8, - "offset": 208, + "m_expireTime": { + "type": "unsigned int", + "id": 3, + "offset": 84, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1649374815 + "hash": 1836304873 }, - "m_saleID": { - "type": "unsigned int", - "id": 9, - "offset": 240, + "m_titleKey": { + "type": "std::string", + "id": 4, + "offset": 88, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1150028607 + "hash": 3096106918 }, - "m_recommendIfOwned": { - "type": "bool", - "id": 10, - "offset": 152, + "m_messageKey": { + "type": "std::string", + "id": 5, + "offset": 120, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1653579929 - }, - "m_combatOnly": { - "type": "bool", - "id": 11, - "offset": 153, - "flags": 31, + "hash": 3561518217 + } + } + }, + "1792435378": { + "name": "class MinigameInfo*", + "bases": [ + "PropertyClass" + ], + "hash": 1792435378, + "properties": { + "m_name": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 978499627 + "hash": 1717359772 }, - "m_noGift": { - "type": "bool", - "id": 12, - "offset": 154, - "flags": 31, + "m_zone": { + "type": "std::string", + "id": 1, + "offset": 104, + "flags": 268435463, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 760708954 + "hash": 1717806295, + "enum_options": { + "__BASECLASS": "ZoneData" + } }, - "m_segReqsStatement": { + "m_iconArt": { "type": "std::string", - "id": 13, - "offset": 160, - "flags": 31, + "id": 2, + "offset": 136, + "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3526390858 + "hash": 2457128171 }, - "m_segReqsPoolsStatements": { + "m_scoreThresholds": { + "type": "int", + "id": 3, + "offset": 168, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1790576374 + }, + "m_rewardTable": { "type": "std::string", - "id": 14, + "id": 4, "offset": 192, - "flags": 31, - "container": "List", + "flags": 268435463, + "container": "Vector", "dynamic": true, "singleton": false, "pointer": false, - "hash": 3225359562 + "hash": 2569041800, + "enum_options": { + "__BASECLASS": "LootTable" + } } } }, - "1633876473": { - "name": "enum ReqCombatStatus::kStatusEffect", - "bases": [], - "hash": 1633876473, - "properties": {} - }, - "71625852": { - "name": "class SharedPointer", + "87572929": { + "name": "class Hand*", "bases": [ - "DuelBehavior", - "BehaviorInstance", "PropertyClass" ], - "hash": 71625852, + "hash": 87572929, "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", + "m_spellList": { + "type": "class SharedPointer", "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_pDuel": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 31, - "container": "Static", - "dynamic": false, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, "singleton": false, "pointer": true, - "hash": 1066616366 + "hash": 1541139342 }, - "m_sigilTemplateID": { + "m_spellFusionIDList": { "type": "unsigned int", - "id": 2, - "offset": 128, - "flags": 31, - "container": "Static", - "dynamic": false, + "id": 1, + "offset": 104, + "flags": 7, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 269055310 + "hash": 1038665578 } } }, - "2040574667": { - "name": "class PlayerStatueStitchBlob*", + "1357374669": { + "name": "class AquariumBehaviorTemplate", "bases": [ - "PlayerStatueBlob", + "BehaviorTemplate", "PropertyClass" ], - "hash": 2040574667, + "hash": 1357374669, "properties": { - "m_packedName": { + "m_behaviorName": { "type": "std::string", "id": 0, "offset": 72, - "flags": 31, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1805208228 + "hash": 3130754092 }, - "m_characterBuffer": { - "type": "std::string", + "m_fishtankSize": { + "type": "int", "id": 1, - "offset": 104, - "flags": 31, + "offset": 120, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1972275298 + "hash": 1397459629 }, - "m_equipmentBuffer": { - "type": "std::string", + "m_fishtankType": { + "type": "int", "id": 2, - "offset": 136, - "flags": 31, + "offset": 124, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1511030957 + "hash": 1397512660 }, - "m_emoteID": { - "type": "unsigned int", + "m_numberOfFish": { + "type": "int", "id": 3, - "offset": 168, - "flags": 31, + "offset": 128, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 691533780 + "hash": 1143336898 } } }, - "71424697": { - "name": "MadlibArgT", + "1793094786": { + "name": "class EncounterTemplate*", "bases": [ - "MadlibArg", + "QuestTemplate", + "CoreTemplate", "PropertyClass" ], - "hash": 71424697, + "hash": 1793094786, "properties": { - "m_madlibToken": { - "type": "std::string", + "m_behaviors": { + "type": "class BehaviorTemplate*", "id": 0, - "offset": 80, - "flags": 31, + "offset": 72, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1197808594 + }, + "m_questName": { + "type": "std::string", + "id": 1, + "offset": 96, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3058682373 + "hash": 1702112846 }, - "m_madlibArgument": { - "type": "int", - "id": 1, - "offset": 112, - "flags": 31, + "m_questNameID": { + "type": "unsigned int", + "id": 2, + "offset": 128, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 878492166 - } - } - }, - "2040533707": { - "name": "class PlayerStatueStitchBlob", - "bases": [ - "PlayerStatueBlob", - "PropertyClass" - ], - "hash": 2040533707, - "properties": { - "m_packedName": { + "hash": 1530354349 + }, + "m_questTitle": { "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, + "id": 3, + "offset": 136, + "flags": 8388615, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1805208228 + "hash": 1805465583 }, - "m_characterBuffer": { + "m_questInfo": { "type": "std::string", - "id": 1, - "offset": 104, - "flags": 31, + "id": 4, + "offset": 168, + "flags": 8388615, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1972275298 + "hash": 1701947097 }, - "m_equipmentBuffer": { + "m_questPrep": { "type": "std::string", - "id": 2, - "offset": 136, - "flags": 31, + "id": 5, + "offset": 200, + "flags": 8388615, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1511030957 + "hash": 1702202980 }, - "m_emoteID": { - "type": "unsigned int", - "id": 3, - "offset": 168, - "flags": 31, + "m_questUnderway": { + "type": "std::string", + "id": 6, + "offset": 232, + "flags": 8388615, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 691533780 - } - } - }, - "449954105": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 449954105, - "properties": { - "m_checkpointLevel": { - "type": "int", - "id": 0, - "offset": 72, - "flags": 7, + "hash": 2308400380 + }, + "m_questComplete": { + "type": "std::string", + "id": 7, + "offset": 264, + "flags": 8388615, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 236419514 + "hash": 3484586150 }, - "m_destinationZone": { + "m_startGoals": { "type": "std::string", - "id": 1, - "offset": 80, + "id": 8, + "offset": 392, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2152469471 + }, + "m_goals": { + "type": "class SharedPointer", + "id": 9, + "offset": 408, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1374041870 + }, + "m_startResults": { + "type": "class SharedPointer", + "id": 10, + "offset": 424, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2094517692 + }, + "m_endResults": { + "type": "class SharedPointer", + "id": 11, + "offset": 440, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2118364133 + }, + "m_requirements": { + "type": "class RequirementList*", + "id": 12, + "offset": 456, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2840985510 + }, + "m_prepRequirements": { + "type": "class RequirementList*", + "id": 13, + "offset": 464, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3016776541 + }, + "m_pruneRequirements": { + "type": "class RequirementList*", + "id": 14, + "offset": 472, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3211248912 + }, + "m_prepAlways": { + "type": "bool", + "id": 15, + "offset": 304, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2605356153 + "hash": 1423046331 }, - "m_destinationLoc": { + "m_clientTags": { "type": "std::string", - "id": 2, - "offset": 112, + "id": 16, + "offset": 312, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2319030025 + }, + "m_goalLogic": { + "type": "class GoalCompleteLogic*", + "id": 17, + "offset": 520, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 963824003 + }, + "m_questLevel": { + "type": "int", + "id": 18, + "offset": 296, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1531335483 + "hash": 298136804 }, - "m_descriptionText": { - "type": "std::string", - "id": 3, - "offset": 144, + "m_questRepeat": { + "type": "int", + "id": 19, + "offset": 300, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3396736580 - } - } - }, - "2038880726": { - "name": "class SharedPointer", - "bases": [ - "Camera", - "PropertyClass" - ], - "hash": 2038880726, - "properties": { - "m_coord": { - "type": "class Vector3D", - "id": 0, - "offset": 72, + "hash": 1480345805 + }, + "m_onStartQuestScript": { + "type": "std::string", + "id": 20, + "offset": 328, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2448785881 + "hash": 2577549709 }, - "m_quat": { - "type": "class Quaternion", - "id": 1, - "offset": 84, + "m_onEndQuestScript": { + "type": "std::string", + "id": 21, + "offset": 360, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2148807035 + "hash": 2285648118 }, - "m_mat": { - "type": "class Matrix3x3", - "id": 2, - "offset": 100, + "m_dialogList": { + "type": "class ActorDialogListBase*", + "id": 22, + "offset": 480, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, + "pointer": true, + "hash": 1909154969 + }, + "m_missionDoors": { + "type": "std::string", + "id": 23, + "offset": 504, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, "pointer": false, - "hash": 1746928484 - } - } - }, - "1634577374": { - "name": "class UnlockTriggerList", - "bases": [ - "PropertyClass" - ], - "hash": 1634577374, - "properties": { - "m_unlockTriggerList": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, + "hash": 2428103908 + }, + "m_dynaMods": { + "type": "class QuestDynaModInfo*", + "id": 24, + "offset": 488, "flags": 7, "container": "List", "dynamic": true, "singleton": false, "pointer": true, - "hash": 2206769498 - } - } - }, - "450457970": { - "name": "class CharMap", - "bases": [ - "PropertyClass" - ], - "hash": 450457970, - "properties": { - "m_src": { - "type": "unsigned short", - "id": 0, - "offset": 72, + "hash": 3330743945 + }, + "m_isHidden": { + "type": "bool", + "id": 25, + "offset": 305, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 820631632 + "hash": 1401188667 }, - "m_dst": { - "type": "unsigned short", - "id": 1, - "offset": 74, + "m_outdated": { + "type": "bool", + "id": 26, + "offset": 306, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 820615347 - } - } - }, - "72126571": { - "name": "class std::list >", - "bases": [], - "hash": 72126571, - "properties": {} - }, - "1636331825": { - "name": "class CraftingSlotLootInfo", - "bases": [ - "LootInfo", - "LootInfoBase", - "PropertyClass" - ], - "hash": 1636331825, - "properties": { - "m_lootType": { - "type": "enum LootInfo::LOOT_TYPE", - "id": 0, - "offset": 72, - "flags": 2097183, + "hash": 1565198349 + }, + "m_noQuestHelper": { + "type": "bool", + "id": 27, + "offset": 307, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1591891442, - "enum_options": { - "LOOT_TYPE_NONE": 0, - "LOOT_TYPE_GOLD": 1, - "LOOT_TYPE_MANA": 2, - "LOOT_TYPE_ITEM": 3, - "LOOT_TYPE_TREASURE_CARD": 4, - "LOOT_TYPE_MAGIC_XP": 5, - "LOOT_TYPE_ADD_SPELL": 6, - "LOOT_TYPE_MAX_HEALTH": 7, - "LOOT_TYPE_MAX_GOLD": 8, - "LOOT_TYPE_MAX_MANA": 9, - "LOOT_TYPE_MAX_POTION": 10, - "LOOT_TYPE_TRAINING_POINTS": 11, - "LOOT_TYPE_RECIPE": 12, - "LOOT_TYPE_CRAFTING_SLOT": 13, - "LOOT_TYPE_REAGENT": 14, - "LOOT_TYPE_PETSNACK": 15, - "LOOT_TYPE_GARDENING_XP": 16, - "LOOT_TYPE_PET_XP": 17, - "LOOT_TYPE_TREASURE_TABLE": 18, - "LOOT_TYPE_ARENA_POINTS": 19, - "LOOT_TYPE_ARENA_BONUS_POINTS": 20, - "LOOT_TYPE_GROUP": 21, - "LOOT_TYPE_FISHING_XP": 22, - "LOOT_TYPE_EVENT_CURRENCY_1": 24, - "LOOT_TYPE_EVENT_CURRENCY_2": 25, - "LOOT_TYPE_PVP_CURRENCY": 26, - "LOOT_TYPE_PVP_CURRENCY_BONUS": 27, - "LOOT_TYPE_PVP_TOURNEY_CURRENCY": 28, - "LOOT_TYPE_PVP_TOURNEY_CURRENCY_BONUS": 29, - "LOOT_TYPE_FURNITURE_ESSENCE": 30 - } + "hash": 578010882 }, - "m_delta": { - "type": "int", - "id": 1, - "offset": 80, - "flags": 31, + "m_mainline": { + "type": "bool", + "id": 28, + "offset": 552, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 791787588 - } - } - }, - "71792252": { - "name": "class SharedPointer", - "bases": [ - "DeckBehavior", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 71792252, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, + "hash": 1749856224 + }, + "m_defaultDialogAnimation": { + "type": "std::string", + "id": 29, + "offset": 560, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2400834320 + }, + "m_skipQHAutoSelect": { + "type": "bool", + "id": 30, + "offset": 553, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 + "hash": 2024815836 }, - "m_spellList": { - "type": "class SharedPointer", - "id": 1, - "offset": 120, - "flags": 27, + "m_questEffectInfoList": { + "type": "class SharedPointer", + "id": 31, + "offset": 536, + "flags": 7, "container": "List", "dynamic": true, "singleton": false, "pointer": true, - "hash": 2181913740 + "hash": 2494024956 }, - "m_serializedExclusionList": { - "type": "std::string", - "id": 2, - "offset": 152, - "flags": 63, + "m_forceInteraction": { + "type": "bool", + "id": 32, + "offset": 554, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1502583517 + "hash": 1038376866 }, - "m_archmasterySchool": { - "type": "unsigned int", - "id": 3, - "offset": 184, - "flags": 63, + "m_checkInventoryForCrafting": { + "type": "bool", + "id": 33, + "offset": 608, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 485805784 + "hash": 1549644020 + }, + "m_playAsYourPetNPC": { + "type": "bool", + "id": 34, + "offset": 609, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 827482678 + }, + "m_activityType": { + "type": "enum QuestTemplate::ActivityType", + "id": 35, + "offset": 612, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 231656390, + "enum_options": { + "ACTIVITY_NotActivity": 0, + "ACTIVITY_Crafting": 2, + "ACTIVITY_Fishing": 3, + "ACTIVITY_Gardening": 4, + "ACTIVITY_Pet": 5, + "ACTIVITY_Spell": 1 + } } } }, - "2041281165": { - "name": "class GuildMuseumCuratorTemplate*", + "86394193": { + "name": "class ClientDestroyActorCinematicAction*", "bases": [ - "BehaviorTemplate", + "DestroyActorCinematicAction", + "ActorCinematicAction", + "CinematicAction", "PropertyClass" ], - "hash": 2041281165, + "hash": 86394193, "properties": { - "m_behaviorName": { - "type": "std::string", + "m_timeOffset": { + "type": "float", "id": 0, "offset": 72, "flags": 7, @@ -605152,42 +552289,33 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 3130754092 + "hash": 2237098605 }, - "m_galleryWorld": { + "m_actor": { "type": "std::string", "id": 1, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3310813907 - }, - "m_exhibit": { - "type": "std::string", - "id": 2, - "offset": 152, + "offset": 80, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2399621352 + "hash": 2285866132 } } }, - "2041281159": { - "name": "class GuildMuseumCuratorTemplate", + "86394113": { + "name": "class ClientDestroyActorCinematicAction", "bases": [ - "BehaviorTemplate", + "DestroyActorCinematicAction", + "ActorCinematicAction", + "CinematicAction", "PropertyClass" ], - "hash": 2041281159, + "hash": 86394113, "properties": { - "m_behaviorName": { - "type": "std::string", + "m_timeOffset": { + "type": "float", "id": 0, "offset": 72, "flags": 7, @@ -605195,1894 +552323,1575 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 3130754092 + "hash": 2237098605 }, - "m_galleryWorld": { + "m_actor": { "type": "std::string", "id": 1, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3310813907 - }, - "m_exhibit": { - "type": "std::string", - "id": 2, - "offset": 152, + "offset": 80, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2399621352 + "hash": 2285866132 } } }, - "450773622": { - "name": "class SharedPointer", + "86893440": { + "name": "class SharedPointer", "bases": [ - "MoveController::MoveCommand", + "CinematicAction", "PropertyClass" ], - "hash": 450773622, + "hash": 86893440, "properties": { - "m_vTarget": { - "type": "class Vector3D", - "id": 0, - "offset": 88, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3770499167 - }, - "m_fSpeed": { + "m_timeOffset": { "type": "float", - "id": 1, - "offset": 100, - "flags": 31, + "id": 0, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 503609006 + "hash": 2237098605 } } }, - "1636745978": { - "name": "class ObjectStateBehavior", + "87787258": { + "name": "class SharedPointer", "bases": [ - "BehaviorInstance", + "GameEffectTimerPopupTrigger", + "GameEffectTimerTrigger", "PropertyClass" ], - "hash": 1636745978, + "hash": 87787258, "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", + "m_radius": { + "type": "float", "id": 0, - "offset": 104, - "flags": 39, + "offset": 72, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 + "hash": 989410271 }, - "m_stateList": { - "type": "unsigned int", + "m_triggerT": { + "type": "float", "id": 1, - "offset": 136, + "offset": 76, "flags": 31, - "container": "List", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 1658565962 + "hash": 2138083583 }, - "m_stateSetOverride": { + "m_popupKey": { "type": "std::string", "id": 2, - "offset": 168, + "offset": 80, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3188396456 + "hash": 3434427096 } } }, - "838492434": { - "name": "class BattlegroundPolymorphs*", + "87640674": { + "name": "class Duel*", "bases": [ "PropertyClass" ], - "hash": 838492434, + "hash": 87640674, "properties": { - "m_polymorphTypeList": { - "type": "class SharedPointer", + "m_flatParticipantList": { + "type": "class SharedPointer", "id": 0, "offset": 80, - "flags": 7, + "flags": 31, "container": "Vector", "dynamic": true, - "singleton": true, - "pointer": true, - "hash": 1494222584 - } - } - }, - "451348209": { - "name": "class WizBugReport*", - "bases": [ - "BugReport", - "PropertyClass" - ], - "hash": 451348209, - "properties": { - "m_clientVersion": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, "singleton": false, - "pointer": false, - "hash": 2207163808 + "pointer": true, + "hash": 3375244498 }, - "m_type": { - "type": "enum BugType", + "m_dynamicTeams": { + "type": "class SharedPointer", "id": 1, "offset": 104, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 889643611, - "enum_options": { - "BT_CRASH": 1, - "BT_GAME_STOPPER": 2, - "BT_INTERFERENCE": 3, - "BT_ANNOYANCE": 4, - "BT_FEATURE_REQUEST": 5, - "BT_COMMENT": 6 - } + "pointer": true, + "hash": 3227206264 }, - "m_canReproduce": { - "type": "bool", + "m_dynamicTurn": { + "type": "unsigned int", "id": 2, - "offset": 108, + "offset": 120, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 859813390 + "hash": 1168494811 }, - "m_description": { - "type": "std::wstring", + "m_dynamicTurnSubcircles": { + "type": "unsigned int", "id": 3, - "offset": 112, + "offset": 124, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1445360156 + "hash": 618930538 }, - "m_systemType": { - "type": "enum WizBugReport::SystemType", + "m_dynamicTurnCounter": { + "type": "int", "id": 4, - "offset": 144, + "offset": 128, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1170942560, - "enum_options": { - "ST_OTHER": 0, - "ST_QUEST": 1, - "ST_SHOP": 2, - "ST_MONSTER": 3, - "ST_SPELL": 4, - "ST_ITEM": 5, - "ST_INTERFACE": 6 - } + "hash": 543404296 }, - "m_ideaType": { - "type": "enum WizBugReport::IdeaType", + "m_duelID.m_full": { + "type": "unsigned __int64", "id": 5, - "offset": 148, + "offset": 72, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1042875837, - "enum_options": { - "IT_ADD": 0, - "IT_CHANGE": 1, - "IT_NONE": 2 - } + "hash": 1024980477 }, - "m_userId": { - "type": "gid", + "m_planningTimer": { + "type": "float", "id": 6, - "offset": 184, + "offset": 144, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1037989732 + "hash": 1142844143 }, - "m_gender": { - "type": "enum WizBugReport::UserGender", + "m_position": { + "type": "class Vector3D", "id": 7, - "offset": 196, + "offset": 148, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 625694774, - "enum_options": { - "UG_Unknown": 0, - "UG_Male": 1, - "UG_Female": 2 - } + "hash": 3697900983 }, - "m_age": { - "type": "unsigned char", + "m_yaw": { + "type": "float", "id": 8, - "offset": 192, + "offset": 160, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 904628669 + "hash": 357256328 }, - "m_userName": { - "type": "std::string", + "m_disableTimer": { + "type": "bool", "id": 9, - "offset": 152, + "offset": 179, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2213937019 + "hash": 1571862248 }, - "m_releaseUpdate": { - "type": "std::string", + "m_tutorialMode": { + "type": "bool", "id": 10, - "offset": 208, + "offset": 180, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1780854143 + "hash": 1704245836 }, - "m_jiraIssue": { - "type": "std::string", + "m_firstTeamToAct": { + "type": "int", "id": 11, - "offset": 240, + "offset": 184, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1589236010 + "hash": 1499447620 }, - "m_osString": { - "type": "std::string", + "m_combatResolver": { + "type": "class CombatResolver*", "id": 12, - "offset": 272, + "offset": 136, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 3500554164 - } - } - }, - "838497459": { - "name": "class FXOverrideBehaviorInfo*", - "bases": [ - "PropertyClass" - ], - "hash": 838497459, - "properties": { - "m_fxToReplace": { - "type": "std::string", - "id": 0, - "offset": 112, + "pointer": true, + "hash": 1627811879 + }, + "m_bPVP": { + "type": "bool", + "id": 13, + "offset": 176, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2301964408 + "hash": 221690795 }, - "m_fxReplaceWith": { - "type": "std::string", - "id": 1, - "offset": 144, + "m_bBattleground": { + "type": "bool", + "id": 14, + "offset": 177, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2445657937 + "hash": 1158269184 }, - "m_fxCastToReplace": { - "type": "std::string", - "id": 2, - "offset": 176, + "m_bRaid": { + "type": "bool", + "id": 15, + "offset": 178, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2287885731 + "hash": 791201781 }, - "m_fxCastReplaceWith": { - "type": "std::string", - "id": 3, - "offset": 208, + "m_roundNum": { + "type": "int", + "id": 16, + "offset": 192, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2146364220 + "hash": 1461215570 }, - "m_fxFidgetToReplace": { - "type": "std::string", - "id": 4, - "offset": 240, + "m_executionPhaseTimer": { + "type": "float", + "id": 17, + "offset": 200, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3444964235 + "hash": 1645062877 }, - "m_fxFidgetReplaceWith": { - "type": "std::string", - "id": 5, - "offset": 272, + "m_executionPhaseCombatActions": { + "type": "class CombatAction", + "id": 18, + "offset": 208, "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1631953700 - } - } - }, - "451272660": { - "name": "class DMLTable", - "bases": [], - "hash": 451272660, - "properties": {} - }, - "838671754": { - "name": "class SharedPointer", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 838671754, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - } - } - }, - "452277545": { - "name": "class SavedCharacterLists", - "bases": [ - "PropertyClass" - ], - "hash": 452277545, - "properties": { - "m_boyCharacterList": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 7, "container": "List", "dynamic": true, "singleton": false, - "pointer": true, - "hash": 484937069 + "pointer": false, + "hash": 270648678 }, - "m_girlCharacterList": { - "type": "class SharedPointer", - "id": 1, - "offset": 88, - "flags": 7, + "m_sigilActions": { + "type": "class CombatAction", + "id": 19, + "offset": 224, + "flags": 31, "container": "List", "dynamic": true, "singleton": false, - "pointer": true, - "hash": 2372941617 - } - } - }, - "838522035": { - "name": "class FXOverrideBehaviorInfo", - "bases": [ - "PropertyClass" - ], - "hash": 838522035, - "properties": { - "m_fxToReplace": { - "type": "std::string", - "id": 0, - "offset": 112, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, "pointer": false, - "hash": 2301964408 + "hash": 2176432675 }, - "m_fxReplaceWith": { - "type": "std::string", - "id": 1, - "offset": 144, - "flags": 31, + "m_shadowPipRule": { + "type": "class SharedPointer", + "id": 20, + "offset": 280, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 2445657937 + "pointer": true, + "hash": 2692865990 }, - "m_fxCastToReplace": { - "type": "std::string", - "id": 2, - "offset": 176, + "m_gameObjectAnimStateTracker": { + "type": "class GameObjectAnimStateTracker", + "id": 21, + "offset": 296, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2287885731 + "hash": 3120084989 }, - "m_fxCastReplaceWith": { - "type": "std::string", - "id": 3, - "offset": 208, - "flags": 31, + "m_duelPhase": { + "type": "enum kDuelPhase", + "id": 22, + "offset": 196, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2146364220 + "hash": 1813818086, + "enum_options": { + "kPhase_Starting": 0, + "kPhase_PrePlanning": 1, + "kPhase_Planning": 2, + "kPhase_PreExecution": 3, + "kPhase_Execution": 4, + "kPhase_Resolution": 5, + "kPhase_Victory": 6, + "kPhase_Ended": 7, + "kPhase_MAX": 10 + } }, - "m_fxFidgetToReplace": { - "type": "std::string", - "id": 4, - "offset": 240, + "m_duelModifier": { + "type": "class SharedPointer", + "id": 23, + "offset": 264, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 3444964235 + "pointer": true, + "hash": 3330438158 }, - "m_fxFidgetReplaceWith": { - "type": "std::string", - "id": 5, - "offset": 272, - "flags": 31, + "m_initiativeSwitchMode": { + "type": "enum Duel::SigilInitiativeSwitchMode", + "id": 24, + "offset": 384, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1631953700 - } - } - }, - "459464924": { - "name": "class SharedPointer", - "bases": [ - "ActivateHangingEffectCinematicAction", - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 459464924, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, + "hash": 1258091520, + "enum_options": { + "InitiativeSwitchMode_None": 0, + "InitiativeSwitchMode_Reroll": 1, + "InitiativeSwitchMode_Switch": 2 + } + }, + "m_initiativeSwitchRounds": { + "type": "int", + "id": 25, + "offset": 388, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 + "hash": 540229885 }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, + "m_combatRules": { + "type": "class SharedPointer", + "id": 26, + "offset": 464, + "flags": 31, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 2285866132 + "pointer": true, + "hash": 3327225763 }, - "m_activate": { - "type": "bool", - "id": 2, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, + "m_gameEffectInfo": { + "type": "class SharedPointer", + "id": 27, + "offset": 496, + "flags": 31, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 142527940 + "pointer": true, + "hash": 2275096584 }, - "m_cloaked": { - "type": "bool", - "id": 3, - "offset": 121, - "flags": 7, + "m_pStatEffects": { + "type": "class SharedPointer", + "id": 28, + "offset": 512, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 7349510 - } - } - }, - "454569814": { - "name": "class SharedPointer", - "bases": [ - "ServiceOptionBase", - "PropertyClass" - ], - "hash": 454569814, - "properties": { - "m_serviceName": { - "type": "std::string", - "id": 0, - "offset": 72, + "pointer": true, + "hash": 1275229758 + }, + "m_alternateTurnCombatRule": { + "type": "class SharedPointer", + "id": 29, + "offset": 480, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 2206028813 + "pointer": true, + "hash": 1715882395 }, - "m_iconKey": { - "type": "std::string", - "id": 1, - "offset": 168, + "m_altTurnCounter": { + "type": "int", + "id": 30, + "offset": 456, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2457138637 + "hash": 1434810564 }, - "m_displayKey": { - "type": "std::string", - "id": 2, - "offset": 104, + "m_originalFirstTeamToAct": { + "type": "int", + "id": 31, + "offset": 188, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3023276954 + "hash": 560350457 }, - "m_serviceIndex": { - "type": "unsigned int", - "id": 3, - "offset": 204, - "flags": 31, + "m_executionOrder": { + "type": "enum kDuelExecutionOrder", + "id": 32, + "offset": 528, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2103126710 + "hash": 3362082097, + "enum_options": { + "kDEO_Sequential": 0, + "kDEO_Alternating": 1 + } }, - "m_forceInteract": { + "m_noHenchmen": { "type": "bool", - "id": 4, - "offset": 200, + "id": 33, + "offset": 532, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1705789564 - } - } - }, - "839746838": { - "name": "class ClientRemoveAuraCinematicAction", - "bases": [ - "RemoveAuraCinematicAction", - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 839746838, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 + "hash": 1163855414 }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, + "m_SpellTruncation": { + "type": "bool", + "id": 34, + "offset": 540, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2285866132 - } - } - }, - "454099747": { - "name": "class CountdownBehavior", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 454099747, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, + "hash": 1257440762 + }, + "m_shadowThresholdFactor": { + "type": "float", + "id": 35, + "offset": 548, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 + "hash": 2104355177 }, - "m_time": { + "m_shadowPipRatingFactor": { "type": "float", - "id": 1, - "offset": 112, + "id": 36, + "offset": 552, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 310085638 - } - } - }, - "453225998": { - "name": "class MadlibBlockList*", - "bases": [ - "PropertyClass" - ], - "hash": 453225998, - "properties": { - "m_madlibBlocks": { - "type": "class MadlibBlock*", - "id": 0, - "offset": 72, + "hash": 1061434314 + }, + "m_defaultShadowPipRating": { + "type": "float", + "id": 37, + "offset": 556, "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2554334098 - } - } - }, - "840039251": { - "name": "class SharedPointer", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 840039251, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 + "hash": 1544572080 }, - "m_spellIDList": { - "type": "class SharedPointer", - "id": 1, - "offset": 128, - "flags": 27, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 3635357151 - } - } - }, - "452959950": { - "name": "class ZoneData", - "bases": [ - "PropertyClass" - ], - "hash": 452959950, - "properties": { - "m_nType": { - "type": "enum ZoneData::Type", - "id": 0, - "offset": 72, - "flags": 2097159, + "m_shadowPipThresholdTeam0": { + "type": "float", + "id": 38, + "offset": 560, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2656861130, - "enum_options": { - "ZONETYPE_INVALID": 4294967295, - "ZONETYPE_START": 0, - "ZONETYPE_STATIC": 1, - "ZONETYPE_DYNAMIC": 2 - } + "hash": 447039594 }, - "m_zoneName": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 134217735, + "m_shadowPipThresholdTeam1": { + "type": "float", + "id": 39, + "offset": 564, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2171167736 + "hash": 447039595 }, - "m_zoneDisplayName": { - "type": "std::string", - "id": 2, - "offset": 112, - "flags": 8388615, + "m_maxArchmasteryTeam0": { + "type": "float", + "id": 40, + "offset": 568, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1962339438 + "hash": 300185527 }, - "m_skyDomeName": { - "type": "std::string", - "id": 3, - "offset": 144, - "flags": 7, + "m_maxArchmasteryTeam1": { + "type": "float", + "id": 41, + "offset": 572, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2339979448 - }, - "m_skyLayerName": { - "type": "std::string", - "id": 4, - "offset": 184, - "flags": 131079, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2824410256 + "hash": 300185528 }, - "m_collisionFileName": { - "type": "std::string", - "id": 5, - "offset": 208, - "flags": 131079, + "m_scalarDamage": { + "type": "float", + "id": 42, + "offset": 600, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1725365192 + "hash": 1865068300 }, - "m_gamebryoSceneFileName": { - "type": "std::string", - "id": 6, - "offset": 240, - "flags": 131079, + "m_scalarResist": { + "type": "float", + "id": 43, + "offset": 604, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3084395168 + "hash": 270448583 }, - "m_musicFileName": { - "type": "std::string", - "id": 7, - "offset": 272, - "flags": 131079, + "m_scalarPierce": { + "type": "float", + "id": 44, + "offset": 608, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1817607805 - }, - "m_spawnList": { - "type": "class SpawnPointTemplate", - "id": 8, - "offset": 304, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1063041926 - }, - "m_teleportList": { - "type": "class TeleporterTemplate", - "id": 9, - "offset": 320, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1031682046 - }, - "m_locationList": { - "type": "class LocationTemplate", - "id": 10, - "offset": 336, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2114141903 - }, - "m_objectList": { - "type": "class SharedPointer", - "id": 11, - "offset": 352, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 882782852 - }, - "m_allEffects": { - "type": "std::string", - "id": 12, - "offset": 368, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2483362772 + "hash": 196427621 }, - "m_healingPerMinute": { - "type": "int", - "id": 13, - "offset": 480, - "flags": 7, + "m_damageLimit": { + "type": "float", + "id": 45, + "offset": 612, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 782115659 + "hash": 271286357 }, - "m_playerPopThresh": { - "type": "int", - "id": 14, - "offset": 484, - "flags": 7, + "m_dK0": { + "type": "float", + "id": 46, + "offset": 616, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1692004900 + "hash": 357232662 }, - "m_nSoftLimit": { - "type": "int", - "id": 15, - "offset": 488, - "flags": 7, + "m_dN0": { + "type": "float", + "id": 47, + "offset": 620, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1593689635, - "enum_options": { - "__DEFAULT": 50 - } + "hash": 357232761 }, - "m_nHardLimit": { - "type": "int", - "id": 16, - "offset": 492, - "flags": 7, + "m_resistLimit": { + "type": "float", + "id": 48, + "offset": 624, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1752405446, - "enum_options": { - "__DEFAULT": 100 - } + "hash": 1192834544 }, - "m_farClip": { + "m_rK0": { "type": "float", - "id": 17, - "offset": 496, - "flags": 7, + "id": 49, + "offset": 628, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1393981304, - "enum_options": { - "__DEFAULT": 25000 - } + "hash": 357247908 }, - "m_nearClipOverride": { + "m_rN0": { "type": "float", - "id": 18, - "offset": 500, - "flags": 519, + "id": 50, + "offset": 632, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1092806405, - "enum_options": { - "__DEFAULT": 1 - } + "hash": 357248007 }, - "m_defaultBackgroundColorRed": { - "type": "float", - "id": 19, - "offset": 504, - "flags": 7, + "m_fullPartyGroup": { + "type": "bool", + "id": 51, + "offset": 636, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1511995894 + "hash": 1888593059 }, - "m_defaultBackgroundColorGreen": { + "m_matchTimer": { "type": "float", - "id": 20, - "offset": 508, - "flags": 7, + "id": 52, + "offset": 656, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2127637260 + "hash": 1510935909 }, - "m_defaultBackgroundColorBlue": { - "type": "float", - "id": 21, - "offset": 512, - "flags": 7, + "m_bonusTime": { + "type": "int", + "id": 53, + "offset": 660, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1908873795 + "hash": 1757496496 }, - "m_fogColorRed": { + "m_passPenalty": { "type": "int", - "id": 22, - "offset": 516, - "flags": 7, + "id": 54, + "offset": 664, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1578810896 + "hash": 982951662 }, - "m_fogColorGreen": { + "m_yellowTime": { "type": "int", - "id": 23, - "offset": 520, - "flags": 7, + "id": 55, + "offset": 668, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1229332710 + "hash": 1017028741 }, - "m_fogColorBlue": { + "m_redTime": { "type": "int", - "id": 24, - "offset": 524, - "flags": 7, + "id": 56, + "offset": 672, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 557754685 + "hash": 1909556708 }, - "m_fogDensity": { - "type": "float", - "id": 25, - "offset": 528, - "flags": 7, + "m_minTurnTime": { + "type": "int", + "id": 57, + "offset": 676, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1170901171 + "hash": 652524886 }, - "m_fogStartDensity": { - "type": "float", - "id": 26, - "offset": 532, - "flags": 7, + "m_bIsPlayerTimedDuel": { + "type": "bool", + "id": 58, + "offset": 637, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1642636961 + "hash": 857311611 }, - "m_fogEnabled": { - "type": "bool", - "id": 27, + "m_hideNoncombatantDistance": { + "type": "float", + "id": 59, "offset": 536, - "flags": 7, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 563358906 - }, - "m_nObjectID": { + "hash": 1733017888 + } + } + }, + "87696593": { + "name": "class WhirlyBurlyGameInfo", + "bases": [ + "PropertyClass" + ], + "hash": 87696593, + "properties": { + "m_gameID": { "type": "unsigned int", - "id": 28, - "offset": 540, + "id": 0, + "offset": 72, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 748496927 + "hash": 680439828 }, - "m_bDisableTransitionAutoHide": { - "type": "bool", - "id": 29, - "offset": 544, + "m_bluePlayerGID": { + "type": "gid", + "id": 1, + "offset": 80, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 702738663 - }, - "m_encounterNames": { - "type": "std::string", - "id": 30, - "offset": 384, - "flags": 268435463, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2150841410, - "enum_options": { - "__BASECLASS": "EncounterTemplate" - } + "hash": 253380865 }, - "m_encounterGroup": { + "m_bluePackedName": { "type": "std::string", - "id": 31, - "offset": 400, + "id": 2, + "offset": 88, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2143153595 + "hash": 1812461836 }, - "m_zoneAdjectives": { - "type": "std::string", - "id": 32, - "offset": 432, + "m_orangePlayerGID": { + "type": "gid", + "id": 3, + "offset": 120, "flags": 7, - "container": "List", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 3603923993 + "hash": 1870113109 }, - "m_zonePermissions": { + "m_orangePackedName": { "type": "std::string", - "id": 33, - "offset": 464, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2928923475 - }, - "m_canPlaceTeleportMarker": { - "type": "bool", - "id": 34, - "offset": 545, + "id": 4, + "offset": 128, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 600985755 + "hash": 3625018336 }, - "m_filterSetUID": { - "type": "unsigned int", - "id": 35, - "offset": 548, - "flags": 33554695, + "m_redPlayerGID": { + "type": "gid", + "id": 5, + "offset": 160, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1054674497 - }, - "m_conditionalSkyboxes": { - "type": "class SkyboxInfo", - "id": 36, - "offset": 552, - "flags": 263, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2512765286 + "hash": 406170260 }, - "m_musicDelay": { - "type": "float", - "id": 37, - "offset": 568, - "flags": 263, + "m_redPackedName": { + "type": "std::string", + "id": 6, + "offset": 168, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1217785767 + "hash": 2559544575 } } }, - "452959310": { - "name": "class ZoneData*", + "88184994": { + "name": "class ActorDialogEntry*", "bases": [ "PropertyClass" ], - "hash": 452959310, + "hash": 88184994, "properties": { - "m_nType": { - "type": "enum ZoneData::Type", + "m_requirements": { + "type": "class SharedPointer", "id": 0, "offset": 72, - "flags": 2097159, + "flags": 263, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 2656861130, - "enum_options": { - "ZONETYPE_INVALID": 4294967295, - "ZONETYPE_START": 0, - "ZONETYPE_STATIC": 1, - "ZONETYPE_DYNAMIC": 2 - } + "pointer": true, + "hash": 3043523229 }, - "m_zoneName": { + "m_dialog": { "type": "std::string", "id": 1, - "offset": 80, - "flags": 134217735, + "offset": 88, + "flags": 8388639, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2171167736 + "hash": 1858395851 }, - "m_zoneDisplayName": { + "m_picture": { "type": "std::string", "id": 2, - "offset": 112, - "flags": 8388615, + "offset": 120, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1962339438 + "hash": 3128322903 }, - "m_skyDomeName": { + "m_soundFile": { "type": "std::string", "id": 3, - "offset": 144, - "flags": 7, + "offset": 152, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2339979448 + "hash": 2276870852 }, - "m_skyLayerName": { + "m_action": { "type": "std::string", - "id": 4, - "offset": 184, - "flags": 131079, - "container": "Vector", - "dynamic": true, + "id": 4, + "offset": 184, + "flags": 31, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 2824410256 + "hash": 1734553689 }, - "m_collisionFileName": { + "m_dialogEvent": { "type": "std::string", "id": 5, - "offset": 208, - "flags": 131079, + "offset": 216, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1725365192 + "hash": 2707957549 }, - "m_gamebryoSceneFileName": { - "type": "std::string", + "m_actorTemplateID": { + "type": "unsigned int", "id": 6, - "offset": 240, - "flags": 131079, + "offset": 248, + "flags": 33554463, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3084395168 + "hash": 2134265679 }, - "m_musicFileName": { + "m_cameraName": { "type": "std::string", "id": 7, - "offset": 272, - "flags": 131079, + "offset": 256, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1817607805 + "hash": 3252786917 }, - "m_spawnList": { - "type": "class SpawnPointTemplate", + "m_interpolationDuration": { + "type": "float", "id": 8, - "offset": 304, - "flags": 7, - "container": "List", - "dynamic": true, + "offset": 312, + "flags": 31, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 1063041926 + "hash": 1458058437, + "enum_options": { + "__DEFAULT": "1.0" + } }, - "m_teleportList": { - "type": "class TeleporterTemplate", + "m_cameraOffsetX": { + "type": "float", "id": 9, - "offset": 320, - "flags": 7, - "container": "List", - "dynamic": true, + "offset": 288, + "flags": 31, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 1031682046 + "hash": 1515912895 }, - "m_locationList": { - "type": "class LocationTemplate", + "m_cameraOffsetY": { + "type": "float", "id": 10, - "offset": 336, - "flags": 7, - "container": "List", - "dynamic": true, + "offset": 292, + "flags": 31, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 2114141903 + "hash": 1515912896 }, - "m_objectList": { - "type": "class SharedPointer", + "m_cameraOffsetZ": { + "type": "float", "id": 11, - "offset": 352, - "flags": 7, - "container": "List", - "dynamic": true, + "offset": 296, + "flags": 31, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 882782852 + "pointer": false, + "hash": 1515912897 }, - "m_allEffects": { - "type": "std::string", + "m_pitch": { + "type": "float", "id": 12, - "offset": 368, - "flags": 7, - "container": "List", - "dynamic": true, + "offset": 304, + "flags": 31, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 2483362772 + "hash": 896371695 }, - "m_healingPerMinute": { - "type": "int", + "m_yaw": { + "type": "float", "id": 13, - "offset": 480, - "flags": 7, + "offset": 300, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 782115659 + "hash": 357256328 }, - "m_playerPopThresh": { - "type": "int", + "m_roll": { + "type": "float", "id": 14, - "offset": 484, - "flags": 7, + "offset": 308, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1692004900 + "hash": 310020272 }, - "m_nSoftLimit": { - "type": "int", + "m_cameraShakeType": { + "type": "std::string", "id": 15, - "offset": 488, - "flags": 7, + "offset": 320, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1593689635, + "hash": 1754128882, "enum_options": { - "__DEFAULT": 50 + "": 0, + "Constant": "Constant", + "Quake": "Quake", + "Thud": "Thud", + "End": "End", + "__DEFAULT": 0 } }, - "m_nHardLimit": { - "type": "int", + "m_cameraShakeDuration": { + "type": "float", "id": 16, - "offset": 492, - "flags": 7, + "offset": 352, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1752405446, + "hash": 316581010, "enum_options": { - "__DEFAULT": 100 + "__DEFAULT": "0.0" } }, - "m_farClip": { + "m_cameraShakeAmplitude": { "type": "float", "id": 17, - "offset": 496, - "flags": 7, + "offset": 356, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1393981304, + "hash": 2179718321, "enum_options": { - "__DEFAULT": 25000 + "__DEFAULT": "0.0" } }, - "m_nearClipOverride": { - "type": "float", + "m_bypassCameraOnReview": { + "type": "bool", "id": 18, - "offset": 500, - "flags": 519, + "offset": 360, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1092806405, + "hash": 1412905725, "enum_options": { "__DEFAULT": 1 } }, - "m_defaultBackgroundColorRed": { - "type": "float", + "m_cameraZoneName": { + "type": "std::string", "id": 19, - "offset": 504, - "flags": 7, + "offset": 368, + "flags": 287, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1511995894 + "hash": 3131581121 }, - "m_defaultBackgroundColorGreen": { + "m_duration": { "type": "float", "id": 20, - "offset": 508, - "flags": 7, + "offset": 400, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2127637260 + "hash": 920323453 }, - "m_defaultBackgroundColorBlue": { + "m_delay": { "type": "float", "id": 21, - "offset": 512, - "flags": 7, + "offset": 404, + "flags": 287, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1908873795 + "hash": 881988134 }, - "m_fogColorRed": { + "m_cameraHidePlayers": { "type": "int", "id": 22, - "offset": 516, - "flags": 7, + "offset": 408, + "flags": 287, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1578810896 + "hash": 28533149 }, - "m_fogColorGreen": { - "type": "int", + "m_walkAwayNpcTemplateID": { + "type": "gid", "id": 23, - "offset": 520, - "flags": 7, + "offset": 416, + "flags": 33554719, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1229332710 + "hash": 942697507 }, - "m_fogColorBlue": { - "type": "int", + "m_walkAwayExitDirectionInDegrees": { + "type": "float", "id": 24, - "offset": 524, - "flags": 7, + "offset": 424, + "flags": 287, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 557754685 + "hash": 396419785 }, - "m_fogDensity": { + "m_walkAwayFadeTime": { "type": "float", "id": 25, - "offset": 528, - "flags": 7, + "offset": 428, + "flags": 287, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1170901171 + "hash": 822405687 }, - "m_fogStartDensity": { - "type": "float", + "m_walkAwayUseCurrentFacing": { + "type": "bool", "id": 26, - "offset": 532, - "flags": 7, + "offset": 432, + "flags": 287, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1642636961 + "hash": 1464855436 }, - "m_fogEnabled": { - "type": "bool", + "m_standInPlayerTag": { + "type": "std::string", "id": 27, - "offset": 536, - "flags": 7, + "offset": 440, + "flags": 287, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 563358906 + "hash": 1590121141 }, - "m_nObjectID": { - "type": "unsigned int", + "m_fadeOutCamera": { + "type": "bool", "id": 28, - "offset": 540, - "flags": 7, + "offset": 472, + "flags": 287, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 748496927 + "hash": 1766121252 }, - "m_bDisableTransitionAutoHide": { + "m_snapCameraToPlayerAtExit": { "type": "bool", "id": 29, - "offset": 544, - "flags": 7, + "offset": 473, + "flags": 287, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 702738663 + "hash": 1323369645 }, - "m_encounterNames": { + "m_secondaryCameraName": { "type": "std::string", "id": 30, - "offset": 384, - "flags": 268435463, - "container": "List", - "dynamic": true, + "offset": 480, + "flags": 287, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 2150841410, - "enum_options": { - "__BASECLASS": "EncounterTemplate" - } + "hash": 1670705581 }, - "m_encounterGroup": { - "type": "std::string", + "m_secondaryInterpolationDuration": { + "type": "float", "id": 31, - "offset": 400, - "flags": 7, + "offset": 512, + "flags": 287, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2143153595 + "hash": 1873822349 }, - "m_zoneAdjectives": { + "m_npcStandInList": { "type": "std::string", "id": 32, - "offset": 432, - "flags": 7, + "offset": 520, + "flags": 287, "container": "List", "dynamic": true, "singleton": false, "pointer": false, - "hash": 3603923993 + "hash": 2076308937 }, - "m_zonePermissions": { + "m_dialogAnimationList": { "type": "std::string", "id": 33, - "offset": 464, - "flags": 7, + "offset": 536, + "flags": 287, "container": "List", "dynamic": true, "singleton": false, "pointer": false, - "hash": 2928923475 + "hash": 2444806919 }, - "m_canPlaceTeleportMarker": { - "type": "bool", + "m_dialogTurningList": { + "type": "std::string", "id": 34, - "offset": 545, - "flags": 7, - "container": "Static", - "dynamic": false, + "offset": 552, + "flags": 287, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 600985755 + "hash": 2782869422 }, - "m_filterSetUID": { - "type": "unsigned int", + "m_npcYawOffsetInDegrees": { + "type": "float", "id": 35, - "offset": 548, - "flags": 33554695, + "offset": 568, + "flags": 287, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1054674497 + "hash": 1395075270 }, - "m_conditionalSkyboxes": { - "type": "class SkyboxInfo", + "m_allowPlayerToMove": { + "type": "bool", "id": 36, - "offset": 552, - "flags": 263, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2512765286 - }, - "m_musicDelay": { - "type": "float", - "id": 37, - "offset": 568, - "flags": 263, + "offset": 572, + "flags": 287, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1217785767 - } - } - }, - "842258452": { - "name": "class SharedPointer", - "bases": [ - "ServiceOptionBase", - "PropertyClass" - ], - "hash": 842258452, - "properties": { - "m_serviceName": { + "hash": 225101337 + }, + "m_soundEffectFile": { "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, + "id": 37, + "offset": 576, + "flags": 287, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2206028813 + "hash": 3235157265 }, - "m_iconKey": { + "m_musicFile": { "type": "std::string", - "id": 1, - "offset": 168, - "flags": 31, + "id": 38, + "offset": 608, + "flags": 287, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2457138637 + "hash": 2963686620 }, - "m_displayKey": { - "type": "std::string", - "id": 2, - "offset": 104, - "flags": 31, + "m_nonStackableMusic": { + "type": "bool", + "id": 39, + "offset": 640, + "flags": 287, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3023276954 + "hash": 1675595625 }, - "m_serviceIndex": { - "type": "unsigned int", - "id": 3, - "offset": 204, - "flags": 31, + "m_nonRepeatableMusic": { + "type": "bool", + "id": 40, + "offset": 641, + "flags": 287, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2103126710 + "hash": 2138315572 }, - "m_forceInteract": { + "m_playMusicAtSFXVolume": { "type": "bool", - "id": 4, - "offset": 200, - "flags": 31, + "id": 41, + "offset": 642, + "flags": 287, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1705789564 - } - } - }, - "841980542": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 841980542, - "properties": { - "m_uTemplateID": { - "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 7, + "hash": 2130871816 + }, + "m_soundEffectDelay": { + "type": "float", + "id": 42, + "offset": 644, + "flags": 287, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1943544747 + "hash": 1586382460 }, - "m_nFoodGroup": { - "type": "int", - "id": 1, - "offset": 76, - "flags": 7, + "m_musicDelay": { + "type": "float", + "id": 43, + "offset": 648, + "flags": 287, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 63971517 + "hash": 1217785767 }, - "m_fFallSpeed": { + "m_musicFadeTime": { "type": "float", - "id": 2, - "offset": 80, - "flags": 7, + "id": 44, + "offset": 652, + "flags": 287, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 701808397 + "hash": 502925015 }, - "m_nFullnessPoints": { - "type": "int", - "id": 3, - "offset": 84, - "flags": 7, + "m_dontReleaseCameraAtExit": { + "type": "bool", + "id": 45, + "offset": 474, + "flags": 287, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1015203857 + "hash": 1107508961 }, - "m_nTimeBonusInSeconds": { - "type": "int", - "id": 4, - "offset": 88, - "flags": 7, + "m_disableBackButton": { + "type": "bool", + "id": 46, + "offset": 656, + "flags": 287, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1007283620 + "hash": 122355444 }, - "m_nSpeedBonusInSeconds": { - "type": "int", - "id": 5, - "offset": 92, - "flags": 7, + "m_enableExitButton": { + "type": "bool", + "id": 47, + "offset": 657, + "flags": 287, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 429640550 + "hash": 1824693936 }, - "m_nFreezeTimerInSeconds": { - "type": "int", - "id": 6, - "offset": 96, - "flags": 7, + "m_cameraFadeType": { + "type": "std::string", + "id": 48, + "offset": 664, + "flags": 287, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1703451440 + "hash": 2021935382, + "enum_options": { + "": 0, + "In Out Black": "In Out Black", + "In Out White": "In Out White", + "In Black": "In Black", + "Out Black": "Out Black", + "In White": "In White", + "Out White": "Out White", + "__DEFAULT": 0 + } }, - "m_fDropWeight": { + "m_cameraFadeTime": { "type": "float", - "id": 7, - "offset": 100, - "flags": 7, + "id": 49, + "offset": 696, + "flags": 287, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1839368282 + "hash": 614419391, + "enum_options": { + "__DEFAULT": "0.5" + } }, - "m_fWeightChange": { + "m_idleAnimation": { + "type": "std::string", + "id": 50, + "offset": 704, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2900487193 + }, + "m_spamTime": { "type": "float", - "id": 8, - "offset": 104, - "flags": 7, + "id": 51, + "offset": 736, + "flags": 287, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 122664907 + "hash": 1727215063, + "enum_options": { + "__DEFAULT": "1.0" + } }, - "m_sCollectSound": { - "type": "std::string", - "id": 9, - "offset": 112, - "flags": 131079, + "m_playSoundIfSpamming": { + "type": "bool", + "id": 52, + "offset": 740, + "flags": 287, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2812716637 + "hash": 690006749, + "enum_options": { + "__DEFAULT": 1 + } }, - "m_sCollectFX": { - "type": "std::string", - "id": 10, - "offset": 144, - "flags": 131079, + "m_playMusicIfSpamming": { + "type": "bool", + "id": 53, + "offset": 741, + "flags": 287, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3248880594 - } - } - }, - "453080484": { - "name": "struct CharacterChatStatsByText*", - "bases": [ - "PropertyClass" - ], - "hash": 453080484, - "properties": { - "m_text": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, + "hash": 538564341, + "enum_options": { + "__DEFAULT": 1 + } + }, + "m_stopMusicFadeTime": { + "type": "float", + "id": 54, + "offset": 744, + "flags": 287, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1717580128 + "hash": 696390845, + "enum_options": { + "__DEFAULT": "0.0" + } }, - "m_chatID": { - "type": "unsigned int", - "id": 1, - "offset": 104, - "flags": 7, + "m_restartMusicFadeTime": { + "type": "float", + "id": 55, + "offset": 748, + "flags": 287, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 531784794 + "hash": 709379292, + "enum_options": { + "__DEFAULT": "0.0" + } }, - "m_usage": { - "type": "unsigned int", - "id": 2, - "offset": 108, - "flags": 7, + "m_meetsRequirements": { + "type": "bool", + "id": 56, + "offset": 752, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1023841410 + "hash": 296443061 + }, + "m_secondaryCameraInitalDelay": { + "type": "float", + "id": 57, + "offset": 516, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1812842232 + }, + "m_displayButtonsOnTimedDialog": { + "type": "bool", + "id": 58, + "offset": 753, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 569741400 } } }, - "842804252": { - "name": "class PlanningTimerControl*", + "89282005": { + "name": "class CritPanel", "bases": [ + "ControlSprite", "Window", "PropertyClass" ], - "hash": 842804252, + "hash": 89282005, "properties": { "m_sName": { "type": "std::string", @@ -607160,7 +553969,10 @@ "PARENT_HEIGHT": 524288, "HCENTER": 32768, "VCENTER": 65536, - "DISABLED": 2147483648 + "DISABLED": 2147483648, + "ONE_SHOT": 8388608, + "FLIPPED_HORIZONTAL": 16777216, + "FLIPPED_VERTICAL": 33554432 } }, "m_Window": { @@ -607295,1392 +554107,1365 @@ "pointer": false, "hash": 3091503757 }, - "m_alertSeconds": { - "type": "int", + "m_pMaterial": { + "type": "class SharedPointer", "id": 16, - "offset": 588, - "flags": 7, + "offset": 592, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 2008693409 - } - } - }, - "453229070": { - "name": "class MadlibBlockList", - "bases": [ - "PropertyClass" - ], - "hash": 453229070, - "properties": { - "m_madlibBlocks": { - "type": "class MadlibBlock*", - "id": 0, - "offset": 72, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, "pointer": true, - "hash": 2554334098 - } - } - }, - "848650733": { - "name": "class ClientSpawnActorCinematicAction*", - "bases": [ - "SpawnActorCinematicAction", - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 848650733, - "properties": { - "m_timeOffset": { + "hash": 3479277078 + }, + "m_fRotation": { "type": "float", - "id": 0, - "offset": 72, - "flags": 7, + "id": 17, + "offset": 608, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 + "hash": 1175400173 }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, + "m_Color": { + "type": "class Color", + "id": 18, + "offset": 584, + "flags": 262279, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2285866132 + "hash": 1753714077 }, - "m_objectInfo": { - "type": "class CoreObjectInfo*", - "id": 2, - "offset": 120, - "flags": 7, + "m_textColor": { + "type": "class Color", + "id": 19, + "offset": 612, + "flags": 262279, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1373700953 + "pointer": false, + "hash": 2528109250 }, - "m_bStartHidden": { - "type": "bool", - "id": 3, - "offset": 128, - "flags": 7, + "m_textComponent": { + "type": "class TextComponent", + "id": 20, + "offset": 616, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1939845615 + "hash": 3491704390 } } }, - "454278017": { - "name": "class RidableBehaviorBase", + "88605259": { + "name": "enum DynamicSigilSymbol", + "bases": [], + "hash": 88605259, + "properties": {} + }, + "88471601": { + "name": "enum PlaySoundCinematicAction::SoundType", + "bases": [], + "hash": 88471601, + "properties": {} + }, + "88401496": { + "name": "struct PendingBuddy", + "bases": [], + "hash": 88401496, + "properties": {} + }, + "89110845": { + "name": "class SharedPointer", "bases": [ - "BehaviorInstance", + "CoreTemplate", "PropertyClass" ], - "hash": 454278017, + "hash": 89110845, "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", + "m_behaviors": { + "type": "class BehaviorTemplate*", "id": 0, - "offset": 104, - "flags": 39, + "offset": 72, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1197808594 + }, + "m_nifFile": { + "type": "std::string", + "id": 1, + "offset": 136, + "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 + "hash": 2694762008 }, - "m_assignedPlayers": { - "type": "gid", - "id": 1, - "offset": 112, - "flags": 65543, - "container": "Vector", - "dynamic": true, + "m_delay": { + "type": "double", + "id": 2, + "offset": 168, + "flags": 7, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 1913541510 + "hash": 2689597116 + }, + "m_cinematicName": { + "type": "std::string", + "id": 3, + "offset": 96, + "flags": 134217735, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2611527497 } } }, - "844446229": { - "name": "class PositionalSoundEmitterInfo", + "88831401": { + "name": "class SharedPointer", "bases": [ - "SoundEmitterInfo", - "SoundInfo", - "ClientObjectInfo", - "CoreObjectInfo", "PropertyClass" ], - "hash": 844446229, + "hash": 88831401, "properties": { - "m_templateID.m_full": { - "type": "unsigned __int64", + "m_totalCostMin": { + "type": "unsigned int", "id": 0, "offset": 72, - "flags": 33554439, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 633907631 + "hash": 496624814 }, - "m_nObjectID": { + "m_totalCostMax": { "type": "unsigned int", "id": 1, - "offset": 80, + "offset": 76, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 748496927 + "hash": 496624560 }, - "m_location": { - "type": "class Vector3D", + "m_totalRarityMin": { + "type": "unsigned int", "id": 2, - "offset": 84, + "offset": 80, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2239683611 + "hash": 1549157264 }, - "m_orientation": { - "type": "class Vector3D", + "m_totalRarityMax": { + "type": "unsigned int", "id": 3, - "offset": 96, + "offset": 84, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2344058766 + "hash": 1549157010 }, - "m_fScale": { - "type": "float", + "m_statDataMin": { + "type": "unsigned int", "id": 4, - "offset": 108, + "offset": 88, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 503137701 + "hash": 988659687 }, - "m_zoneTag": { - "type": "std::string", + "m_statDataMax": { + "type": "unsigned int", "id": 5, - "offset": 152, + "offset": 92, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3405382643 + "hash": 988659433 }, - "m_startState": { - "type": "std::string", + "m_wowDataMin": { + "type": "unsigned int", "id": 6, - "offset": 184, + "offset": 96, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2166880458 + "hash": 1289909672 }, - "m_overrideName": { - "type": "std::string", + "m_wowDataMax": { + "type": "unsigned int", "id": 7, - "offset": 120, - "flags": 8388615, + "offset": 100, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1990707228 + "hash": 1289909418 }, - "m_globalDynamic": { - "type": "bool", + "m_pedigreeDataMin": { + "type": "unsigned int", "id": 8, - "offset": 116, + "offset": 104, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1951691017 + "hash": 1947586064 }, - "m_bUndetectable": { - "type": "bool", + "m_pedigreeDataMax": { + "type": "unsigned int", "id": 9, - "offset": 216, + "offset": 108, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1907454341 + "hash": 1947585810 }, - "m_spawnRequirements": { - "type": "class SharedPointer", + "m_statsWeight": { + "type": "float", "id": 10, - "offset": 224, + "offset": 112, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2309120870 + "pointer": false, + "hash": 1028083822 }, - "m_loadingType": { - "type": "enum CoreObjectInfo::LoadingType", + "m_wowWeight": { + "type": "float", "id": 11, - "offset": 112, - "flags": 2097159, + "offset": 116, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3522422550, - "enum_options": { - "STATIC_CLIENT_SERVER": 0, - "STATIC_CLIENT": 1, - "STATIC_SERVER": 2, - "DYNAMIC_SERVER": 3 - } + "hash": 1781950908 }, - "m_radius": { + "m_pedigreeWeight": { "type": "float", "id": 12, - "offset": 256, + "offset": 120, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 989410271 + "hash": 2192332068 }, - "m_exclusive": { - "type": "bool", + "m_kioskCombatTalentCostMin": { + "type": "int", "id": 13, - "offset": 260, + "offset": 128, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "Vector", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 824383403 + "hash": 2086730582 }, - "m_startActive": { - "type": "bool", + "m_kioskCombatTalentCostGrowth": { + "type": "int", "id": 14, - "offset": 261, + "offset": 152, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "Vector", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 2031339229 + "hash": 1600144109 }, - "m_category": { - "type": "enum AudioCategory", + "m_kioskDerbyTalentCostMin": { + "type": "int", "id": 15, - "offset": 264, - "flags": 2097159, - "container": "Static", - "dynamic": false, + "offset": 176, + "flags": 7, + "container": "Vector", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 2951251982, - "enum_options": { - "AudioCategory_Irrelevent": 0, - "AudioCategory_Accoustic": 1, - "AudioCategory_Noise": 2, - "AudioCategory_Music": 3 - } + "hash": 787626614 }, - "m_override": { + "m_kioskDerbyTalentCostGrowth": { "type": "int", "id": 16, - "offset": 268, - "flags": 1048583, - "container": "Static", - "dynamic": false, + "offset": 200, + "flags": 7, + "container": "Vector", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 136872410, - "enum_options": { - "OVR_RADIUS": 1, - "OVR_CATEGORY": 2, - "OVR_EXCLUSIVE": 4, - "OVR_SIGNATURE": 64, - "OVR_VOLUME": 8, - "OVR_LOOPCOUNT": 16, - "OVR_ACTIVE": 32, - "OVR_PLAYPROG": 128, - "OVR_PRIORITY": 256, - "OVR_PROGTIME": 512, - "OVR_FILTERSET": 1024 - } + "hash": 1995353613 }, - "m_enableReqs": { - "type": "class SharedPointer", + "m_inPersonCombatTalentCostMin": { + "type": "int", "id": 17, - "offset": 272, - "flags": 263, - "container": "Static", - "dynamic": false, + "offset": 224, + "flags": 7, + "container": "Vector", + "dynamic": true, "singleton": false, - "pointer": true, - "hash": 3158020443 + "pointer": false, + "hash": 337785603 }, - "m_volume": { - "type": "float", + "m_inPersonCombatTalentCostGrowth": { + "type": "int", "id": 18, - "offset": 288, + "offset": 248, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "Vector", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 1162855023 + "hash": 168359802 }, - "m_loopCount": { + "m_inPersonDerbyTalentCostMin": { "type": "int", "id": 19, - "offset": 292, + "offset": 272, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "Vector", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 865634717 + "hash": 409251971 }, - "m_trackFilenameList": { - "type": "std::string", + "m_inPersonDerbyTalentCostGrowth": { + "type": "int", "id": 20, - "offset": 312, - "flags": 131079, + "offset": 296, + "flags": 7, "container": "Vector", "dynamic": true, "singleton": false, "pointer": false, - "hash": 2531081709 + "hash": 64783610 }, - "m_playList": { - "type": "class PlayListEntry*", + "m_kioskPedigreeMin": { + "type": "int", "id": 21, - "offset": 336, + "offset": 320, "flags": 7, - "container": "Vector", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3907873161 + "pointer": false, + "hash": 1416396228 }, - "m_priority": { + "m_kioskCombatDivisor": { "type": "int", "id": 22, - "offset": 296, + "offset": 324, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1235205852 + "hash": 1325329457 }, - "m_progression": { - "type": "enum PlayList::Progression", + "m_kioskCombatExponent": { + "type": "int", "id": 23, - "offset": 300, - "flags": 2097159, + "offset": 328, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3279400238, - "enum_options": { - "Sequence": 0, - "Random": 1, - "SequenceOnceOnly": 2, - "RandomNoRepeat": 3 - } + "hash": 268917794 }, - "m_progressMin": { - "type": "float", + "m_kioskDerbyDivisor": { + "type": "int", "id": 24, - "offset": 304, + "offset": 332, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1497550192 + "hash": 1909936977 }, - "m_progressMax": { - "type": "float", + "m_kioskDerbyExponent": { + "type": "int", "id": 25, - "offset": 308, + "offset": 336, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1497549938 + "hash": 233613122 }, - "m_audioFilterSet": { - "type": "unsigned int", + "m_inPersonPedigreeMin": { + "type": "int", "id": 26, - "offset": 360, - "flags": 33554439, + "offset": 340, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 831339825 + "hash": 769349745 }, - "m_clientTag": { - "type": "std::string", + "m_inPersonCombatDivisor": { + "type": "int", "id": 27, - "offset": 368, + "offset": 344, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3409856790 + "hash": 1066346014 }, - "m_innerRadius": { - "type": "float", + "m_inPersonCombatExponent": { + "type": "int", "id": 28, - "offset": 400, + "offset": 348, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 686816091 + "hash": 312398767 }, - "m_nifObjName": { - "type": "std::string", + "m_inPersonDerbyDivisor": { + "type": "int", "id": 29, - "offset": 408, + "offset": 352, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1513857812 + "hash": 2032239518 }, - "m_animNIFObjName": { - "type": "std::string", + "m_inPersonDerbyExponent": { + "type": "int", "id": 30, - "offset": 440, + "offset": 356, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2245834777 + "hash": 2122113327 }, - "m_inverted": { - "type": "bool", + "m_petLendsLevelDivisor": { + "type": "int", "id": 31, - "offset": 472, + "offset": 408, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1034821044 + "hash": 574571025 }, - "m_initialDelay": { - "type": "float", + "m_balancePetLendLoot": { + "type": "std::string", "id": 32, - "offset": 476, + "offset": 416, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "Vector", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 629858288 + "hash": 1766917643 + }, + "m_deathPetLendLoot": { + "type": "std::string", + "id": 33, + "offset": 440, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2869638987 + }, + "m_firePetLendLoot": { + "type": "std::string", + "id": 34, + "offset": 464, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2059692267 + }, + "m_icePetLendLoot": { + "type": "std::string", + "id": 35, + "offset": 488, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 3354513750 + }, + "m_lifePetLendLoot": { + "type": "std::string", + "id": 36, + "offset": 512, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2516355429 + }, + "m_mythPetLendLoot": { + "type": "std::string", + "id": 37, + "offset": 536, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 3612618343 + }, + "m_stormPetLendLoot": { + "type": "std::string", + "id": 38, + "offset": 560, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2262680698 } } }, - "843480053": { - "name": "class WizShopOffering*", + "88657520": { + "name": "class WizStatisticScalerEffect*", "bases": [ + "StatisticEffect", + "GameEffectBase", "PropertyClass" ], - "hash": 843480053, + "hash": 88657520, "properties": { - "m_shopList": { - "type": "gid", + "m_currentTickCount": { + "type": "double", "id": 0, - "offset": 72, - "flags": 31, - "container": "List", - "dynamic": true, + "offset": 80, + "flags": 63, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 446354318 + "hash": 2533274692 }, - "m_recipeList": { - "type": "std::string", + "m_effectNameID": { + "type": "unsigned int", "id": 1, - "offset": 88, - "flags": 31, - "container": "List", - "dynamic": true, + "offset": 96, + "flags": 63, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 3311769839 + "hash": 1204067144 }, - "m_shopTitle": { - "type": "std::string", + "m_bIsOnPet": { + "type": "bool", "id": 2, - "offset": 104, + "offset": 73, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3349689687 + "hash": 522593303 }, - "m_sellModifier": { - "type": "float", + "m_originatorID": { + "type": "gid", "id": 3, - "offset": 136, - "flags": 31, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 360128886 + "hash": 1131810019 }, - "m_shopType": { - "type": "int", + "m_itemSlotID": { + "type": "unsigned int", "id": 4, - "offset": 140, - "flags": 31, + "offset": 112, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 446675542 + "hash": 1895747595 }, - "m_CSRTestShop": { - "type": "bool", + "m_internalID": { + "type": "int", "id": 5, - "offset": 144, - "flags": 31, + "offset": 92, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1651336981 + "hash": 1643137924 }, - "m_furnitureShop": { - "type": "int", + "m_endTime": { + "type": "unsigned int", "id": 6, - "offset": 148, + "offset": 88, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1321981560 + "hash": 716479635 }, - "m_activeHolidayList": { - "type": "std::string", + "m_lookupIndex": { + "type": "int", "id": 7, - "offset": 152, + "offset": 128, "flags": 31, - "container": "List", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 2341827453 + "hash": 1626623948 } } }, - "843065712": { - "name": "class MadlibArgT*", + "89261525": { + "name": "class CritPanel*", "bases": [ - "MadlibArg", + "ControlSprite", + "Window", "PropertyClass" ], - "hash": 843065712, + "hash": 89261525, "properties": { - "m_madlibToken": { + "m_sName": { "type": "std::string", "id": 0, "offset": 80, - "flags": 31, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3058682373 + "hash": 2306437263 }, - "m_madlibArgument": { - "type": "float", + "m_Children": { + "type": "class SharedPointer", "id": 1, "offset": 112, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 968693315 - } - } - }, - "458385654": { - "name": "class ShowcasedStoreItemList", - "bases": [ - "PropertyClass" - ], - "hash": 458385654, - "properties": { - "m_items": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1667746752 - } - } - }, - "843050071": { - "name": "class SharedPointer", - "bases": [ - "SpellTemplate", - "CoreTemplate", - "PropertyClass" - ], - "hash": 843050071, - "properties": { - "m_behaviors": { - "type": "class BehaviorTemplate*", - "id": 0, - "offset": 72, - "flags": 7, + "flags": 65671, "container": "Vector", "dynamic": true, "singleton": false, "pointer": true, - "hash": 1197808594 - }, - "m_name": { - "type": "std::string", - "id": 1, - "offset": 96, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1717359772 + "hash": 2621225959 }, - "m_description": { - "type": "std::string", + "m_Style": { + "type": "unsigned int", "id": 2, - "offset": 168, - "flags": 8388615, + "offset": 152, + "flags": 1048583, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1649374815 + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "SCALE_CHILDREN": 2, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "FOCUS_LOCKED": 64, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152 + } }, - "m_advancedDescription": { - "type": "std::string", + "m_Flags": { + "type": "unsigned int", "id": 3, - "offset": 200, - "flags": 8388615, + "offset": 156, + "flags": 1048583, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3465713013 + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648, + "ONE_SHOT": 8388608, + "FLIPPED_HORIZONTAL": 16777216, + "FLIPPED_VERTICAL": 33554432 + } }, - "m_displayName": { - "type": "std::string", + "m_Window": { + "type": "class Rect", "id": 4, - "offset": 136, - "flags": 8388615, + "offset": 160, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2446900370 + "hash": 3105139380 }, - "m_spellBase": { - "type": "std::string", + "m_fTargetAlpha": { + "type": "float", "id": 5, - "offset": 248, - "flags": 268435463, + "offset": 212, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2688054198, - "enum_options": { - "__BASECLASS": "CinematicTemplate" - } + "hash": 1809129834 }, - "m_effects": { - "type": "class SharedPointer", + "m_fDisabledAlpha": { + "type": "float", "id": 6, - "offset": 280, - "flags": 7, - "container": "Vector", - "dynamic": true, + "offset": 216, + "flags": 135, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 370726379 + "pointer": false, + "hash": 1389987675 }, - "m_sMagicSchoolName": { - "type": "std::string", + "m_fAlpha": { + "type": "float", "id": 7, - "offset": 312, - "flags": 7, + "offset": 208, + "flags": 65671, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2035693400 + "hash": 482130755 }, - "m_sTypeName": { - "type": "std::string", + "m_pWindowStyle": { + "type": "class SharedPointer", "id": 8, - "offset": 352, - "flags": 7, + "offset": 232, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 3580785905 + "pointer": true, + "hash": 3623628394 }, - "m_trainingCost": { - "type": "int", + "m_sHelp": { + "type": "std::wstring", "id": 9, - "offset": 384, - "flags": 7, + "offset": 248, + "flags": 4194439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 982588239 + "hash": 2102211316 }, - "m_accuracy": { - "type": "int", + "m_sScript": { + "type": "std::string", "id": 10, - "offset": 388, - "flags": 7, + "offset": 352, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1636315493 + "hash": 1846695875 }, - "m_baseCost": { - "type": "int", + "m_Offset": { + "type": "class Point", "id": 11, - "offset": 232, - "flags": 7, + "offset": 192, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1475151502 + "hash": 3389835433 }, - "m_creditsCost": { - "type": "int", + "m_Scale": { + "type": "class Point", "id": 12, - "offset": 236, - "flags": 7, + "offset": 200, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 715313825 + "hash": 2547159940 }, - "m_pvpCurrencyCost": { - "type": "int", + "m_sTip": { + "type": "std::wstring", "id": 13, - "offset": 240, - "flags": 7, + "offset": 392, + "flags": 4194439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 645595444 + "hash": 1513510520 }, - "m_pvpTourneyCurrencyCost": { - "type": "int", + "m_BubbleList": { + "type": "class WindowBubble", "id": 14, - "offset": 244, - "flags": 7, - "container": "Static", - "dynamic": false, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 517874954 + "hash": 2587533771 }, - "m_boosterPackIcon": { - "type": "std::string", + "m_ParentOffset": { + "type": "class Rect", "id": 15, - "offset": 496, - "flags": 131079, + "offset": 176, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3428653697 + "hash": 3091503757 }, - "m_validTargetSpells": { - "type": "unsigned int", + "m_pMaterial": { + "type": "class SharedPointer", "id": 16, - "offset": 392, - "flags": 7, - "container": "List", - "dynamic": true, + "offset": 592, + "flags": 135, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": false, - "hash": 2355782967 + "pointer": true, + "hash": 3479277078 }, - "m_PvP": { - "type": "bool", + "m_fRotation": { + "type": "float", "id": 17, - "offset": 408, - "flags": 7, + "offset": 608, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 269492361 + "hash": 1175400173 }, - "m_PvE": { - "type": "bool", + "m_Color": { + "type": "class Color", "id": 18, - "offset": 409, - "flags": 7, + "offset": 584, + "flags": 262279, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 269492350 + "hash": 1753714077 }, - "m_noPvPEnchant": { - "type": "bool", + "m_textColor": { + "type": "class Color", "id": 19, - "offset": 410, - "flags": 7, + "offset": 612, + "flags": 262279, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 661581703 + "hash": 2528109250 }, - "m_noPvEEnchant": { - "type": "bool", + "m_textComponent": { + "type": "class TextComponent", "id": 20, - "offset": 411, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 10144220 - }, - "m_battlegroundsOnly": { - "type": "bool", - "id": 21, - "offset": 412, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1244782419 - }, - "m_Treasure": { - "type": "bool", - "id": 22, - "offset": 413, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1749096414 - }, - "m_noDiscard": { - "type": "bool", - "id": 23, - "offset": 414, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 565749226 - }, - "m_leavesPlayWhenCast": { - "type": "bool", - "id": 24, - "offset": 532, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 698216294 - }, - "m_imageIndex": { - "type": "int", - "id": 25, - "offset": 416, - "flags": 7, + "offset": 616, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1570500405 - }, - "m_imageName": { - "type": "std::string", - "id": 26, - "offset": 424, - "flags": 131079, + "hash": 3491704390 + } + } + }, + "89693479": { + "name": "class LootRarity", + "bases": [ + "PropertyClass" + ], + "hash": 89693479, + "properties": { + "m_rarity": { + "type": "enum RarityType", + "id": 0, + "offset": 80, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2391520543 + "hash": 2253792108, + "enum_options": { + "RT_COMMON": 0, + "RT_UNCOMMON": 1, + "RT_RARE": 2, + "RT_ULTRARARE": 3, + "RT_EPIC": 4 + } }, - "m_cloaked": { - "type": "bool", - "id": 27, - "offset": 489, - "flags": 7, + "m_lootGid": { + "type": "gid", + "id": 1, + "offset": 72, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 7349510 + "hash": 1008695306 }, - "m_casterInvisible": { - "type": "bool", - "id": 28, - "offset": 490, - "flags": 7, + "m_expectedValue": { + "type": "float", + "id": 2, + "offset": 104, + "flags": 23, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 310214650 - }, - "m_adjectives": { - "type": "std::string", - "id": 29, - "offset": 576, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2967855037 + "hash": 1011900742 }, - "m_spellSourceType": { - "type": "enum SpellTemplate::kSpellSourceType", - "id": 30, - "offset": 528, - "flags": 2097159, + "m_expectedChance": { + "type": "float", + "id": 3, + "offset": 108, + "flags": 23, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 156272727, - "enum_options": { - "kCaster": 0, - "kPet": 1, - "kShadowCreature": 2, - "kWeapon": 3, - "kEquipment": 4 - } - }, - "m_cloakedName": { - "type": "std::string", - "id": 31, - "offset": 536, - "flags": 268435463, + "hash": 1850495755 + } + } + }, + "89300263": { + "name": "class LootRarity*", + "bases": [ + "PropertyClass" + ], + "hash": 89300263, + "properties": { + "m_rarity": { + "type": "enum RarityType", + "id": 0, + "offset": 80, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2846679215, + "hash": 2253792108, "enum_options": { - "__BASECLASS": "SpellTemplate" + "RT_COMMON": 0, + "RT_UNCOMMON": 1, + "RT_RARE": 2, + "RT_ULTRARARE": 3, + "RT_EPIC": 4 } }, - "m_purchaseRequirements": { - "type": "class RequirementList*", - "id": 32, - "offset": 608, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3174641793 - }, - "m_displayRequirements": { - "type": "class RequirementList*", - "id": 33, - "offset": 840, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3646782876 - }, - "m_descriptionTrainer": { - "type": "std::string", - "id": 34, - "offset": 616, - "flags": 8388871, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1756093908 - }, - "m_descriptionCombatHUD": { - "type": "std::string", - "id": 35, - "offset": 648, - "flags": 8388871, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1631478006 - }, - "m_displayIndex": { - "type": "int", - "id": 36, - "offset": 680, - "flags": 7, + "m_lootGid": { + "type": "gid", + "id": 1, + "offset": 72, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1250551048 + "hash": 1008695306 }, - "m_hiddenFromEffectsWindow": { - "type": "bool", - "id": 37, - "offset": 684, - "flags": 7, + "m_expectedValue": { + "type": "float", + "id": 2, + "offset": 104, + "flags": 23, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1832736331 + "hash": 1011900742 }, - "m_ignoreCharms": { - "type": "bool", - "id": 38, - "offset": 685, - "flags": 7, + "m_expectedChance": { + "type": "float", + "id": 3, + "offset": 108, + "flags": 23, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1840075893 - }, - "m_alwaysFizzle": { - "type": "bool", - "id": 39, - "offset": 686, - "flags": 7, + "hash": 1850495755 + } + } + }, + "90085300": { + "name": "class RaidManagerBehavior", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 90085300, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2030988856 - }, - "m_spellCategory": { + "hash": 223437287 + } + } + }, + "146001083": { + "name": "class LoyaltyStoreOption", + "bases": [ + "ServiceOptionBase", + "PropertyClass" + ], + "hash": 146001083, + "properties": { + "m_serviceName": { "type": "std::string", - "id": 40, - "offset": 688, - "flags": 7, + "id": 0, + "offset": 72, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2472376729 + "hash": 2206028813 }, - "m_showPolymorphedName": { - "type": "bool", - "id": 41, - "offset": 720, - "flags": 7, + "m_iconKey": { + "type": "std::string", + "id": 1, + "offset": 168, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2097929096 + "hash": 2457138637 }, - "m_skipTruncation": { - "type": "bool", - "id": 42, - "offset": 721, - "flags": 263, + "m_displayKey": { + "type": "std::string", + "id": 2, + "offset": 104, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1838335249 + "hash": 3023276954 }, - "m_maxCopies": { + "m_serviceIndex": { "type": "unsigned int", - "id": 43, - "offset": 724, - "flags": 263, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 403022326 - }, - "m_levelRestriction": { - "type": "int", - "id": 44, - "offset": 728, - "flags": 263, + "id": 3, + "offset": 204, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 176502472 + "hash": 2103126710 }, - "m_delayEnchantment": { + "m_forceInteract": { "type": "bool", - "id": 45, - "offset": 732, - "flags": 287, + "id": 4, + "offset": 200, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 191336919 - }, - "m_delayEnchantmentOrder": { - "type": "enum SpellEffect::kDelayOrder", - "id": 46, - "offset": 736, - "flags": 287, + "hash": 1705789564 + } + } + }, + "123837036": { + "name": "class PaidLootRollStationOption*", + "bases": [ + "ServiceOptionBase", + "PropertyClass" + ], + "hash": 123837036, + "properties": { + "m_serviceName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2526055263, - "enum_options": { - "SpellEffect::kAnyOrder": 0, - "SpellEffect::kFirst": 1, - "SpellEffect::kSecond": 2 - } + "hash": 2206028813 }, - "m_previousSpellName": { + "m_iconKey": { "type": "std::string", - "id": 47, - "offset": 744, - "flags": 268435463, + "id": 1, + "offset": 168, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2903322585, - "enum_options": { - "__BASECLASS": "SpellTemplate" - } + "hash": 2457138637 }, - "m_cardFront": { + "m_displayKey": { "type": "std::string", - "id": 48, - "offset": 456, - "flags": 131359, + "id": 2, + "offset": 104, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3557598526 + "hash": 3023276954 }, - "m_useGloss": { - "type": "bool", - "id": 49, - "offset": 488, - "flags": 287, + "m_serviceIndex": { + "type": "unsigned int", + "id": 3, + "offset": 204, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 668817544 + "hash": 2103126710 }, - "m_ignoreDispel": { + "m_forceInteract": { "type": "bool", - "id": 50, - "offset": 776, - "flags": 287, + "id": 4, + "offset": 200, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1881041624 - }, - "m_backRowFriendly": { - "type": "bool", - "id": 51, - "offset": 777, - "flags": 287, + "hash": 1705789564 + } + } + }, + "105339310": { + "name": "class ClientCinematic", + "bases": [ + "Cinematic", + "PropertyClass" + ], + "hash": 105339310, + "properties": {} + }, + "99726268": { + "name": "class MoveActorCinematicAction", + "bases": [ + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 99726268, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 501584377 + "hash": 2237098605 }, - "m_spellRank": { - "type": "class SharedPointer", - "id": 52, - "offset": 784, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3152361374 + "pointer": false, + "hash": 2285866132 }, - "m_secondarySchoolName": { + "m_destinationActor": { "type": "std::string", - "id": 53, - "offset": 800, + "id": 2, + "offset": 120, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1803268236 + "hash": 1510240374 }, - "m_spellFusion": { - "type": "unsigned int", - "id": 54, - "offset": 836, + "m_interpolationDuration": { + "type": "float", + "id": 3, + "offset": 152, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1658928321 + "hash": 1458058437 }, - "m_requiredSchoolName": { - "type": "std::string", - "id": 55, - "offset": 848, + "m_interpolateRotation": { + "type": "bool", + "id": 4, + "offset": 156, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3576058981 + "hash": 2140337898 }, - "m_unitMovement": { - "type": "std::string", - "id": 56, - "offset": 880, - "flags": 7, + "m_kDestination": { + "type": "enum MoveActorCinematicAction::kMoveActorDestination", + "id": 5, + "offset": 160, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3170961702 + "hash": 2027574244, + "enum_options": { + "kCenter": 0, + "kHome": 3, + "kActor": 1, + "kActorHangingEffect": 2 + } }, - "m_specialUnits": { - "type": "std::string", - "id": 57, - "offset": 912, + "m_destinationZOffset": { + "type": "float", + "id": 6, + "offset": 164, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2725603631 + "hash": 2188240922 } } }, - "457245475": { - "name": "class CountdownBehavior*", + "97159737": { + "name": "class PublicEquippedJewelInfo*", "bases": [ - "BehaviorInstance", "PropertyClass" ], - "hash": 457245475, + "hash": 97159737, "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", + "m_infoPairs": { + "type": "class SharedPointer", "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, + "offset": 72, + "flags": 31, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 223437287 + "pointer": true, + "hash": 1522101428 }, - "m_time": { - "type": "float", + "m_bSocketsLocked": { + "type": "bool", "id": 1, - "offset": 112, + "offset": 88, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 310085638 + "hash": 1073026659 } } }, - "507521837": { - "name": "class ServerSyncCinematicAction", + "94610103": { + "name": "class StartHangingRotationCinematicAction", "bases": [ + "ActorCinematicAction", "CinematicAction", "PropertyClass" ], - "hash": 507521837, + "hash": 94610103, "properties": { "m_timeOffset": { "type": "float", @@ -608693,7 +555478,7 @@ "pointer": false, "hash": 2237098605 }, - "m_eventToSend": { + "m_actor": { "type": "std::string", "id": 1, "offset": 80, @@ -608702,375 +555487,459 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 1564059786 + "hash": 2285866132 + }, + "m_cloaked": { + "type": "bool", + "id": 2, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 7349510 } } }, - "843476981": { - "name": "class WizShopOffering", + "93674361": { + "name": "class ClientZoneTokenBoolean*", "bases": [ + "ZoneTokenBoolean", + "ZoneTokenBase", "PropertyClass" ], - "hash": 843476981, + "hash": 93674361, "properties": { - "m_shopList": { - "type": "gid", + "m_debugName": { + "type": "std::string", "id": 0, "offset": 72, "flags": 31, - "container": "List", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 446354318 + "hash": 3553984419 }, - "m_recipeList": { + "m_adjectiveList": { "type": "std::string", "id": 1, - "offset": 88, + "offset": 104, "flags": 31, "container": "List", "dynamic": true, "singleton": false, "pointer": false, - "hash": 3311769839 + "hash": 3195213318 }, - "m_shopTitle": { + "m_icon": { "type": "std::string", "id": 2, - "offset": 104, - "flags": 31, + "offset": 120, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3349689687 + "hash": 1717182340 }, - "m_sellModifier": { - "type": "float", + "m_iconBW": { + "type": "std::string", "id": 3, - "offset": 136, - "flags": 31, + "offset": 152, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 360128886 + "hash": 2047461085 }, - "m_shopType": { - "type": "int", + "m_description": { + "type": "std::string", "id": 4, - "offset": 140, - "flags": 31, + "offset": 184, + "flags": 8388639, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 446675542 + "hash": 1649374815 }, - "m_CSRTestShop": { - "type": "bool", + "m_displayMode": { + "type": "enum ZTDisplayMode", "id": 5, - "offset": 144, - "flags": 31, + "offset": 216, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1651336981 + "hash": 2216526410, + "enum_options": { + "ZTDM_Shown": 0, + "ZTDM_Discoverable": 1, + "ZTDM_Hidden": 2 + } }, - "m_furnitureShop": { - "type": "int", + "m_storage": { + "type": "enum ZTStorage", "id": 6, - "offset": 148, - "flags": 31, + "offset": 220, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1321981560 + "hash": 2290454852, + "enum_options": { + "ZTS_Player": 0, + "ZTS_Zone": 1 + } }, - "m_activeHolidayList": { - "type": "std::string", + "m_onEnable": { + "type": "class SharedPointer", "id": 7, - "offset": 152, + "offset": 224, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2591736864 + }, + "m_onDiscover": { + "type": "class SharedPointer", + "id": 8, + "offset": 240, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2826026872 + }, + "m_onDisable": { + "type": "class SharedPointer", + "id": 9, + "offset": 256, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1860656717 + }, + "m_sourceID": { + "type": "gid", + "id": 10, + "offset": 272, "flags": 31, - "container": "List", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 2341827453 - } - } - }, - "473311111": { - "name": "class SharedPointer", - "bases": [ - "TournamentUpdate", - "PropertyClass" - ], - "hash": 473311111, - "properties": { - "m_teamID": { - "type": "gid", - "id": 0, - "offset": 72, + "hash": 1134700470 + }, + "m_inZone": { + "type": "bool", + "id": 11, + "offset": 280, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 982102220 + "hash": 564535654 }, - "m_matchID": { - "type": "gid", - "id": 1, - "offset": 80, + "m_enabled": { + "type": "bool", + "id": 12, + "offset": 281, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1757621298 - } - } - }, - "455563698": { - "name": "class SharedPointer", - "bases": [ - "SG_GameAction", - "PropertyClass" - ], - "hash": 455563698, - "properties": { - "m_target": { - "type": "enum SG_GameAction::SG_Target", - "id": 0, - "offset": 72, - "flags": 2097159, + "hash": 504506718 + }, + "m_discovered": { + "type": "bool", + "id": 13, + "offset": 282, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1166870973, - "enum_options": { - "Target_Ball": 0, - "Target_Self": 1, - "Target_Connections": 2, - "__DEFAULT": "Target_Ball" - } + "hash": 2060478331 + }, + "m_onSet": { + "type": "class SharedPointer", + "id": 14, + "offset": 288, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1964529317 + }, + "m_onClear": { + "type": "class SharedPointer", + "id": 15, + "offset": 304, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1655978208 + }, + "m_bSet": { + "type": "bool", + "id": 16, + "offset": 320, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 221694593 } } }, - "843904912": { - "name": "class LinearStateSoundBehavior", + "91521406": { + "name": "class CantripsMajorInvisibilityEffect*", "bases": [ - "LinearSoundBehavior", - "PositionalSoundBehavior", - "SoundBehavior", - "AreaBehavior", - "BehaviorInstance", + "CantripsInvisibilityEffect", + "GameEffectBase", "PropertyClass" ], - "hash": 843904912, + "hash": 91521406, "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", + "m_currentTickCount": { + "type": "double", "id": 0, - "offset": 104, - "flags": 39, + "offset": 80, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 + "hash": 2533274692 }, - "m_radius": { - "type": "float", + "m_effectNameID": { + "type": "unsigned int", "id": 1, - "offset": 116, - "flags": 7, + "offset": 96, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 989410271 + "hash": 1204067144 }, - "m_category": { - "type": "enum AudioCategory", + "m_bIsOnPet": { + "type": "bool", "id": 2, - "offset": 124, - "flags": 2097159, + "offset": 73, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2951251982, - "enum_options": { - "AudioCategory_Irrelevent": 0, - "AudioCategory_Accoustic": 1, - "AudioCategory_Noise": 2, - "AudioCategory_Music": 3 - } + "hash": 522593303 }, - "m_exclusive": { - "type": "bool", + "m_originatorID": { + "type": "gid", "id": 3, - "offset": 128, - "flags": 7, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 824383403 + "hash": 1131810019 }, - "m_playList": { - "type": "class PlayList", + "m_itemSlotID": { + "type": "unsigned int", "id": 4, - "offset": 176, - "flags": 7, + "offset": 112, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2061221957 + "hash": 1895747595 }, - "m_volume": { - "type": "float", + "m_internalID": { + "type": "int", "id": 5, - "offset": 304, - "flags": 7, + "offset": 92, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1162855023 + "hash": 1643137924 }, - "m_loopCount": { - "type": "int", + "m_endTime": { + "type": "unsigned int", "id": 6, - "offset": 308, - "flags": 7, + "offset": 88, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 865634717 - }, - "m_minimumFalloff": { - "type": "float", - "id": 7, - "offset": 328, + "hash": 716479635 + } + } + }, + "90715475": { + "name": "short", + "bases": [], + "hash": 90715475, + "properties": {} + }, + "92056648": { + "name": "class UntargetableCinematicStageTemplate", + "bases": [ + "CinematicStageTemplate", + "PropertyClass" + ], + "hash": 92056648, + "properties": { + "m_name": { + "type": "std::string", + "id": 0, + "offset": 72, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 355697197 + "hash": 1717359772 }, - "m_maximumFalloff": { + "m_duration": { "type": "float", - "id": 8, - "offset": 332, + "id": 1, + "offset": 104, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2210192367 + "hash": 920323453 }, - "m_animDriven": { - "type": "bool", - "id": 9, - "offset": 392, + "m_actions": { + "type": "class SharedPointer", + "id": 2, + "offset": 112, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 398394720 + "pointer": true, + "hash": 1380578687 }, - "m_inverted": { - "type": "bool", - "id": 10, - "offset": 397, + "m_stageRelationships": { + "type": "class SharedPointer", + "id": 3, + "offset": 128, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 1034821044 - }, - "m_fRangeScale": { - "type": "float", - "id": 11, - "offset": 512, + "pointer": true, + "hash": 499983354 + } + } + }, + "92055112": { + "name": "class UntargetableCinematicStageTemplate*", + "bases": [ + "CinematicStageTemplate", + "PropertyClass" + ], + "hash": 92055112, + "properties": { + "m_name": { + "type": "std::string", + "id": 0, + "offset": 72, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1749294034 + "hash": 1717359772 }, - "m_fAttenuationFactor": { + "m_duration": { "type": "float", - "id": 12, - "offset": 516, + "id": 1, + "offset": 104, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 273292776 + "hash": 920323453 }, - "m_eAttenuationType": { - "type": "enum PositionInfoAttenuationType", - "id": 13, - "offset": 520, - "flags": 2097159, - "container": "Static", - "dynamic": false, + "m_actions": { + "type": "class SharedPointer", + "id": 2, + "offset": 112, + "flags": 7, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 2427193304, - "enum_options": { - "Standard": 0, - "Unit Range Power": 1 - } + "pointer": true, + "hash": 1380578687 }, - "m_vPositions": { - "type": "class Vector3D", - "id": 14, - "offset": 528, + "m_stageRelationships": { + "type": "class SharedPointer", + "id": 3, + "offset": 128, "flags": 7, - "container": "Vector", + "container": "List", "dynamic": true, "singleton": false, - "pointer": false, - "hash": 3599600160 - }, - "m_animationName": { - "type": "std::string", - "id": 15, - "offset": 688, + "pointer": true, + "hash": 499983354 + } + } + }, + "93442062": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 93442062, + "properties": { + "m_serializedTemplates": { + "type": "class TemplateLocation", + "id": 0, + "offset": 72, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "Vector", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 3393414044 + "hash": 1656531664 } } }, - "455580989": { - "name": "class Camera", + "93716914": { + "name": "class SharedPointer", "bases": [ "PropertyClass" ], - "hash": 455580989, + "hash": 93716914, "properties": { - "m_coord": { - "type": "class Vector3D", + "m_slotName": { + "type": "std::string", "id": 0, "offset": 72, "flags": 7, @@ -609078,470 +555947,434 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 2448785881 + "hash": 2819781566 }, - "m_quat": { - "type": "class Quaternion", + "m_nodeName": { + "type": "std::string", "id": 1, - "offset": 84, + "offset": 104, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2148807035 + "hash": 3607089954 }, - "m_mat": { - "type": "class Matrix3x3", + "m_fxDef": { + "type": "class SharedPointer", "id": 2, - "offset": 100, + "offset": 136, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1746928484 + "pointer": true, + "hash": 1171176403 } } }, - "844446239": { - "name": "class PositionalSoundEmitterInfo*", + "93715321": { + "name": "class ClientZoneTokenBoolean", "bases": [ - "SoundEmitterInfo", - "SoundInfo", - "ClientObjectInfo", - "CoreObjectInfo", + "ZoneTokenBoolean", + "ZoneTokenBase", "PropertyClass" ], - "hash": 844446239, + "hash": 93715321, "properties": { - "m_templateID.m_full": { - "type": "unsigned __int64", + "m_debugName": { + "type": "std::string", "id": 0, "offset": 72, - "flags": 33554439, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 633907631 + "hash": 3553984419 }, - "m_nObjectID": { - "type": "unsigned int", + "m_adjectiveList": { + "type": "std::string", "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, + "offset": 104, + "flags": 31, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 748496927 + "hash": 3195213318 }, - "m_location": { - "type": "class Vector3D", + "m_icon": { + "type": "std::string", "id": 2, - "offset": 84, - "flags": 7, + "offset": 120, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2239683611 + "hash": 1717182340 }, - "m_orientation": { - "type": "class Vector3D", + "m_iconBW": { + "type": "std::string", "id": 3, - "offset": 96, - "flags": 7, + "offset": 152, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2344058766 + "hash": 2047461085 }, - "m_fScale": { - "type": "float", + "m_description": { + "type": "std::string", "id": 4, - "offset": 108, - "flags": 7, + "offset": 184, + "flags": 8388639, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 503137701 + "hash": 1649374815 }, - "m_zoneTag": { - "type": "std::string", + "m_displayMode": { + "type": "enum ZTDisplayMode", "id": 5, - "offset": 152, - "flags": 7, + "offset": 216, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3405382643 + "hash": 2216526410, + "enum_options": { + "ZTDM_Shown": 0, + "ZTDM_Discoverable": 1, + "ZTDM_Hidden": 2 + } }, - "m_startState": { - "type": "std::string", + "m_storage": { + "type": "enum ZTStorage", "id": 6, - "offset": 184, - "flags": 7, + "offset": 220, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2166880458 + "hash": 2290454852, + "enum_options": { + "ZTS_Player": 0, + "ZTS_Zone": 1 + } }, - "m_overrideName": { - "type": "std::string", + "m_onEnable": { + "type": "class SharedPointer", "id": 7, - "offset": 120, - "flags": 8388615, + "offset": 224, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1990707228 + "pointer": true, + "hash": 2591736864 }, - "m_globalDynamic": { - "type": "bool", + "m_onDiscover": { + "type": "class SharedPointer", "id": 8, - "offset": 116, + "offset": 240, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1951691017 + "pointer": true, + "hash": 2826026872 }, - "m_bUndetectable": { - "type": "bool", + "m_onDisable": { + "type": "class SharedPointer", "id": 9, - "offset": 216, + "offset": 256, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1907454341 + "pointer": true, + "hash": 1860656717 }, - "m_spawnRequirements": { - "type": "class SharedPointer", + "m_sourceID": { + "type": "gid", "id": 10, - "offset": 224, - "flags": 7, + "offset": 272, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2309120870 + "pointer": false, + "hash": 1134700470 }, - "m_loadingType": { - "type": "enum CoreObjectInfo::LoadingType", + "m_inZone": { + "type": "bool", "id": 11, - "offset": 112, - "flags": 2097159, + "offset": 280, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3522422550, - "enum_options": { - "STATIC_CLIENT_SERVER": 0, - "STATIC_CLIENT": 1, - "STATIC_SERVER": 2, - "DYNAMIC_SERVER": 3 - } + "hash": 564535654 }, - "m_radius": { - "type": "float", + "m_enabled": { + "type": "bool", "id": 12, - "offset": 256, - "flags": 7, + "offset": 281, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 989410271 + "hash": 504506718 }, - "m_exclusive": { + "m_discovered": { "type": "bool", "id": 13, - "offset": 260, - "flags": 7, + "offset": 282, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 824383403 + "hash": 2060478331 }, - "m_startActive": { - "type": "bool", + "m_onSet": { + "type": "class SharedPointer", "id": 14, - "offset": 261, + "offset": 288, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 2031339229 + "pointer": true, + "hash": 1964529317 }, - "m_category": { - "type": "enum AudioCategory", + "m_onClear": { + "type": "class SharedPointer", "id": 15, - "offset": 264, - "flags": 2097159, + "offset": 304, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 2951251982, - "enum_options": { - "AudioCategory_Irrelevent": 0, - "AudioCategory_Accoustic": 1, - "AudioCategory_Noise": 2, - "AudioCategory_Music": 3 - } + "pointer": true, + "hash": 1655978208 }, - "m_override": { - "type": "int", + "m_bSet": { + "type": "bool", "id": 16, - "offset": 268, - "flags": 1048583, + "offset": 320, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 136872410, - "enum_options": { - "OVR_RADIUS": 1, - "OVR_CATEGORY": 2, - "OVR_EXCLUSIVE": 4, - "OVR_SIGNATURE": 64, - "OVR_VOLUME": 8, - "OVR_LOOPCOUNT": 16, - "OVR_ACTIVE": 32, - "OVR_PLAYPROG": 128, - "OVR_PRIORITY": 256, - "OVR_PROGTIME": 512, - "OVR_FILTERSET": 1024 - } - }, - "m_enableReqs": { - "type": "class SharedPointer", - "id": 17, - "offset": 272, - "flags": 263, + "hash": 221694593 + } + } + }, + "93756938": { + "name": "class SummonMinionEffectTemplate", + "bases": [ + "GameEffectTemplate", + "PropertyClass" + ], + "hash": 93756938, + "properties": { + "m_effectName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3158020443 + "pointer": false, + "hash": 2029161513 }, - "m_volume": { - "type": "float", - "id": 18, - "offset": 288, + "m_effectCategory": { + "type": "std::string", + "id": 1, + "offset": 104, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1162855023 + "hash": 1852673222 }, - "m_loopCount": { + "m_sortOrder": { "type": "int", - "id": 19, - "offset": 292, + "id": 2, + "offset": 148, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 865634717 + "hash": 1411218206 }, - "m_trackFilenameList": { - "type": "std::string", - "id": 20, - "offset": 312, - "flags": 131079, - "container": "Vector", - "dynamic": true, + "m_duration": { + "type": "double", + "id": 3, + "offset": 192, + "flags": 7, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 2531081709 + "hash": 2727932435 }, - "m_playList": { - "type": "class PlayListEntry*", - "id": 21, - "offset": 336, + "m_stackingCategories": { + "type": "std::string", + "id": 4, + "offset": 160, "flags": 7, - "container": "Vector", + "container": "List", "dynamic": true, "singleton": false, - "pointer": true, - "hash": 3907873161 - }, - "m_priority": { - "type": "int", - "id": 22, - "offset": 296, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, "pointer": false, - "hash": 1235205852 + "hash": 1774497525 }, - "m_progression": { - "type": "enum PlayList::Progression", - "id": 23, - "offset": 300, - "flags": 2097159, + "m_isPersistent": { + "type": "bool", + "id": 5, + "offset": 153, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3279400238, - "enum_options": { - "Sequence": 0, - "Random": 1, - "SequenceOnceOnly": 2, - "RandomNoRepeat": 3 - } + "hash": 923861920 }, - "m_progressMin": { - "type": "float", - "id": 24, - "offset": 304, + "m_bIsOnPet": { + "type": "bool", + "id": 6, + "offset": 154, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1497550192 + "hash": 522593303 }, - "m_progressMax": { - "type": "float", - "id": 25, - "offset": 308, + "m_isPublic": { + "type": "bool", + "id": 7, + "offset": 152, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1497549938 + "hash": 1728439822 }, - "m_audioFilterSet": { - "type": "unsigned int", - "id": 26, - "offset": 360, - "flags": 33554439, + "m_visualEffectAddName": { + "type": "std::string", + "id": 8, + "offset": 200, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 831339825 + "hash": 3382086694 }, - "m_clientTag": { + "m_visualEffectRemoveName": { "type": "std::string", - "id": 27, - "offset": 368, + "id": 9, + "offset": 232, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3409856790 + "hash": 1541697323 }, - "m_innerRadius": { - "type": "float", - "id": 28, - "offset": 400, + "m_onAddFunctorName": { + "type": "std::string", + "id": 10, + "offset": 280, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 686816091 + "hash": 1561843107 }, - "m_nifObjName": { + "m_onRemoveFunctorName": { "type": "std::string", - "id": 29, - "offset": 408, + "id": 11, + "offset": 312, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1513857812 + "hash": 2559017864 }, - "m_animNIFObjName": { - "type": "std::string", - "id": 30, - "offset": 440, - "flags": 7, + "m_stackingRule": { + "type": "enum STACKING_RULE", + "id": 12, + "offset": 144, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2245834777 + "hash": 431568889, + "enum_options": { + "STACKING_ALLOWED": 0, + "STACKING_NOSTACK": 1, + "STACKING_REPLACE": 2 + } }, - "m_inverted": { - "type": "bool", - "id": 31, - "offset": 472, - "flags": 7, + "m_minionType": { + "type": "enum MinionType", + "id": 13, + "offset": 360, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1034821044 + "hash": 3186373083, + "enum_options": { + "MT_NONE": 0, + "MT_ACCOMPANY": 1, + "MT_MINION": 2, + "MT_MONSTER": 3 + } }, - "m_initialDelay": { - "type": "float", - "id": 32, - "offset": 476, + "m_summonedTemplateID": { + "type": "int", + "id": 14, + "offset": 364, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 629858288 - } - } - }, - "457755389": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 457755389, - "properties": { - "m_gameEffectInfoList": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1747948740 + "hash": 1109386027 } } }, - "848483397": { - "name": "class SharedPointer", + "93756928": { + "name": "class SummonMinionEffectTemplate*", "bases": [ - "ObstacleCourseObstaclePathBaseTemplate", - "ObstacleCourseObstacleBehaviorTemplate", - "BehaviorTemplate", + "GameEffectTemplate", "PropertyClass" ], - "hash": 848483397, + "hash": 93756928, "properties": { - "m_behaviorName": { + "m_effectName": { "type": "std::string", "id": 0, "offset": 72, @@ -609550,228 +556383,183 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 3130754092 + "hash": 2029161513 }, - "m_rate": { - "type": "float", + "m_effectCategory": { + "type": "std::string", "id": 1, - "offset": 120, + "offset": 104, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 310005283 + "hash": 1852673222 }, - "m_penaltyTime": { - "type": "float", + "m_sortOrder": { + "type": "int", "id": 2, - "offset": 124, + "offset": 148, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2083389507 + "hash": 1411218206 }, - "m_totalObstacleSize": { - "type": "class Vector3D", + "m_duration": { + "type": "double", "id": 3, - "offset": 128, + "offset": 192, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2379878414 + "hash": 2727932435 }, - "m_bounds": { - "type": "class Vector3D", + "m_stackingCategories": { + "type": "std::string", "id": 4, - "offset": 152, + "offset": 160, "flags": 7, - "container": "Vector", + "container": "List", "dynamic": true, "singleton": false, "pointer": false, - "hash": 1948083181 + "hash": 1774497525 }, - "m_orientToPath": { + "m_isPersistent": { "type": "bool", "id": 5, - "offset": 176, + "offset": 153, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 655036148 + "hash": 923861920 }, - "m_heightUp": { - "type": "float", + "m_bIsOnPet": { + "type": "bool", "id": 6, - "offset": 140, + "offset": 154, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2208713013 + "hash": 522593303 }, - "m_heightDown": { - "type": "float", + "m_isPublic": { + "type": "bool", "id": 7, - "offset": 144, + "offset": 152, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 655333896 + "hash": 1728439822 }, - "m_timeModifier": { - "type": "int", + "m_visualEffectAddName": { + "type": "std::string", "id": 8, - "offset": 184, + "offset": 200, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 723546552 + "hash": 3382086694 }, - "m_effectApply": { + "m_visualEffectRemoveName": { "type": "std::string", "id": 9, - "offset": 192, + "offset": 232, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1838368078 + "hash": 1541697323 }, - "m_soundApply": { + "m_onAddFunctorName": { "type": "std::string", "id": 10, - "offset": 224, + "offset": 280, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3579526282 + "hash": 1561843107 }, - "m_effectDespawn": { + "m_onRemoveFunctorName": { "type": "std::string", "id": 11, - "offset": 256, + "offset": 312, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2174851674 + "hash": 2559017864 }, - "m_soundDespawn": { - "type": "std::string", + "m_stackingRule": { + "type": "enum STACKING_RULE", "id": 12, - "offset": 288, - "flags": 7, + "offset": 144, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2068074646 - } - } - }, - "459407156": { - "name": "class ClientUntargetableCinematicAction", - "bases": [ - "UntargetableCinematicAction", - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 459407156, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, + "hash": 431568889, + "enum_options": { + "STACKING_ALLOWED": 0, + "STACKING_NOSTACK": 1, + "STACKING_REPLACE": 2 + } + }, + "m_minionType": { + "type": "enum MinionType", + "id": 13, + "offset": 360, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 + "hash": 3186373083, + "enum_options": { + "MT_NONE": 0, + "MT_ACCOMPANY": 1, + "MT_MINION": 2, + "MT_MONSTER": 3 + } }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, + "m_summonedTemplateID": { + "type": "int", + "id": 14, + "offset": 364, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2285866132 - } - } - }, - "850808878": { - "name": "class InitialPackageInfo", - "bases": [ - "PropertyClass" - ], - "hash": 850808878, - "properties": { - "m_packageContents": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 268435463, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 3309777205, - "enum_options": { - "__BASECLASS": "ZoneData" - } - } - } - }, - "458410230": { - "name": "class ShowcasedStoreItemList*", - "bases": [ - "PropertyClass" - ], - "hash": 458410230, - "properties": { - "m_items": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1667746752 + "hash": 1109386027 } } }, - "849263051": { - "name": "class ClientScaleActorCinematicAction*", + "94560951": { + "name": "class StartHangingRotationCinematicAction*", "bases": [ - "ScaleActorCinematicAction", "ActorCinematicAction", "CinematicAction", "PropertyClass" ], - "hash": 849263051, + "hash": 94560951, "properties": { "m_timeOffset": { "type": "float", @@ -609795,8 +556583,8 @@ "pointer": false, "hash": 2285866132 }, - "m_scaleDuration": { - "type": "float", + "m_cloaked": { + "type": "bool", "id": 2, "offset": 120, "flags": 7, @@ -609804,30 +556592,17 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 1764097637 - }, - "m_scaleTarget": { - "type": "float", - "id": 3, - "offset": 124, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1502791366 + "hash": 7349510 } } }, - "849259092": { - "name": "class ClientCloneActorCinematicAction*", + "96661878": { + "name": "class BaseEffectCinematicAction", "bases": [ - "CloneActorCinematicAction", - "ActorCinematicAction", "CinematicAction", "PropertyClass" ], - "hash": 849259092, + "hash": 96661878, "properties": { "m_timeOffset": { "type": "float", @@ -609840,61 +556615,73 @@ "pointer": false, "hash": 2237098605 }, - "m_actor": { - "type": "std::string", + "m_effectRel": { + "type": "enum BaseEffectCinematicAction::kEffectRelative", "id": 1, "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - }, - "m_position": { - "type": "class Vector3D", - "id": 2, - "offset": 124, - "flags": 7, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3697900983 - }, - "m_yawPitchRoll": { - "type": "class Vector3D", - "id": 3, - "offset": 136, + "hash": 2978921287, + "enum_options": { + "kNone": 0, + "kSigil": 1, + "kTarget": 2, + "kSource": 3, + "kActor": 4 + } + } + } + }, + "95842449": { + "name": "struct std::pair,class SharedPointer >", + "bases": [], + "hash": 95842449, + "properties": {} + }, + "95736291": { + "name": "class ExpansionBehaviorTemplate", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 95736291, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3349460132 + "hash": 3130754092 }, - "m_clonePlayer": { - "type": "bool", - "id": 4, + "m_expansions": { + "type": "class SharedPointer", + "id": 1, "offset": 120, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 1369917873 + "pointer": true, + "hash": 3762221063 } } }, - "459328542": { - "name": "class SharedPointer", + "94784723": { + "name": "class SharedPointer", "bases": [ "PropertyClass" ], - "hash": 459328542, + "hash": 94784723, "properties": { - "m_templates": { - "type": "class SharedPointer", + "m_levelInfo": { + "type": "class MonsterMagicLevelInfo*", "id": 0, "offset": 72, "flags": 7, @@ -609902,36 +556689,48 @@ "dynamic": true, "singleton": false, "pointer": true, - "hash": 1496975562 + "hash": 2337455676 + }, + "m_maxLevel": { + "type": "unsigned char", + "id": 1, + "offset": 88, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 783962734 } } }, - "849907231": { - "name": "class ConicalSoundBehaviorTemplate*", + "96496465": { + "name": "class SharedPointer", "bases": [ - "PositionalSoundBehaviorTemplate", - "SoundBehaviorTemplate", - "AreaBehaviorTemplate", - "BehaviorTemplate", + "LinearSoundBehavior", + "PositionalSoundBehavior", + "SoundBehavior", + "AreaBehavior", + "BehaviorInstance", "PropertyClass" ], - "hash": 849907231, + "hash": 96496465, "properties": { - "m_behaviorName": { - "type": "std::string", + "m_behaviorTemplateNameID": { + "type": "unsigned int", "id": 0, - "offset": 72, - "flags": 7, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3130754092 + "hash": 223437287 }, "m_radius": { "type": "float", "id": 1, - "offset": 120, + "offset": 116, "flags": 7, "container": "Static", "dynamic": false, @@ -609953,11 +556752,7 @@ "AudioCategory_Irrelevent": 0, "AudioCategory_Accoustic": 1, "AudioCategory_Noise": 2, - "AudioCategory_Music": 3, - "AudioCategory_MusicAtSFXVolume": 4, - "AudioCategory_Dialog": 5, - "AudioCategory_UI": 6, - "AudioCategory_NoiseAtMusicVolume": 7 + "AudioCategory_Music": 3 } }, "m_exclusive": { @@ -609971,65 +556766,21 @@ "pointer": false, "hash": 824383403 }, - "m_active": { - "type": "bool", - "id": 4, - "offset": 129, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 239335471 - }, - "m_enableReqs": { - "type": "class SharedPointer", - "id": 5, - "offset": 136, - "flags": 263, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3158020443 - }, - "m_trackFilenameList": { - "type": "std::string", - "id": 6, - "offset": 152, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2531081709 - }, "m_playList": { - "type": "class PlayListEntry*", - "id": 7, + "type": "class PlayList", + "id": 4, "offset": 176, "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 3907873161 - }, - "m_priority": { - "type": "int", - "id": 8, - "offset": 208, - "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1235205852 + "hash": 2061221957 }, "m_volume": { "type": "float", - "id": 9, - "offset": 200, + "id": 5, + "offset": 304, "flags": 7, "container": "Static", "dynamic": false, @@ -610039,8 +556790,8 @@ }, "m_loopCount": { "type": "int", - "id": 10, - "offset": 204, + "id": 6, + "offset": 308, "flags": 7, "container": "Static", "dynamic": false, @@ -610048,93 +556799,43 @@ "pointer": false, "hash": 865634717 }, - "m_progression": { - "type": "enum PlayList::Progression", - "id": 11, - "offset": 220, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3279400238, - "enum_options": { - "Sequence": 0, - "Random": 1, - "SequenceOnceOnly": 2, - "RandomNoRepeat": 3 - } - }, - "m_progressMin": { + "m_minimumFalloff": { "type": "float", - "id": 12, - "offset": 212, + "id": 7, + "offset": 328, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1497550192 + "hash": 355697197 }, - "m_progressMax": { + "m_maximumFalloff": { "type": "float", - "id": 13, - "offset": 216, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1497549938 - }, - "m_audioFilterSet": { - "type": "unsigned int", - "id": 14, - "offset": 224, - "flags": 33554439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 831339825 - }, - "m_animationNameFilter": { - "type": "std::string", - "id": 15, - "offset": 232, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2292854242 - }, - "m_functionallabel": { - "type": "std::string", - "id": 16, - "offset": 264, + "id": 8, + "offset": 332, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3589331278 + "hash": 2210192367 }, - "m_innerRadius": { - "type": "float", - "id": 17, - "offset": 296, + "m_animDriven": { + "type": "bool", + "id": 9, + "offset": 392, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 686816091 + "hash": 398394720 }, "m_inverted": { "type": "bool", - "id": 18, - "offset": 300, + "id": 10, + "offset": 397, "flags": 7, "container": "Static", "dynamic": false, @@ -610142,43 +556843,10 @@ "pointer": false, "hash": 1034821044 }, - "m_fInsideAngle": { - "type": "float", - "id": 19, - "offset": 304, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1114383840 - }, - "m_fOutsideAngle": { - "type": "float", - "id": 20, - "offset": 308, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1627152289 - }, - "m_fOutsideVolume": { - "type": "float", - "id": 21, - "offset": 312, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 90369618 - }, "m_fRangeScale": { "type": "float", - "id": 22, - "offset": 316, + "id": 11, + "offset": 512, "flags": 7, "container": "Static", "dynamic": false, @@ -610188,8 +556856,8 @@ }, "m_fAttenuationFactor": { "type": "float", - "id": 23, - "offset": 320, + "id": 12, + "offset": 516, "flags": 7, "container": "Static", "dynamic": false, @@ -610199,8 +556867,8 @@ }, "m_eAttenuationType": { "type": "enum PositionInfoAttenuationType", - "id": 24, - "offset": 324, + "id": 13, + "offset": 520, "flags": 2097159, "container": "Static", "dynamic": false, @@ -610211,655 +556879,453 @@ "Standard": 0, "Unit Range Power": 1 } - } - } - }, - "459407204": { - "name": "class ClientUntargetableCinematicAction*", - "bases": [ - "UntargetableCinematicAction", - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 459407204, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, + }, + "m_vPositions": { + "type": "class Vector3D", + "id": 14, + "offset": 528, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "Vector", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 2237098605 + "hash": 3599600160 }, - "m_actor": { + "m_animationName": { "type": "std::string", - "id": 1, - "offset": 80, + "id": 15, + "offset": 688, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2285866132 - } - } - }, - "849287959": { - "name": "class FontGlyphis*", - "bases": [ - "Font", - "PropertyClass" - ], - "hash": 849287959, - "properties": { - "m_sFilename": { - "type": "std::string", - "id": 0, - "offset": 160, - "flags": 131207, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2431512111 - }, - "m_fScale": { - "type": "float", - "id": 1, - "offset": 192, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 503137701 - }, - "m_nKerningAdjust": { - "type": "int", - "id": 2, - "offset": 200, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 287732353 + "hash": 3393414044 } } }, - "466034888": { - "name": "class ClientActivateHangingEffectCinematicAction", + "96849752": { + "name": "class PvPCurrencyBonusLootInfo*", "bases": [ - "ActivateHangingEffectCinematicAction", - "ActorCinematicAction", - "CinematicAction", + "LootInfo", + "LootInfoBase", "PropertyClass" ], - "hash": 466034888, + "hash": 96849752, "properties": { - "m_timeOffset": { - "type": "float", + "m_lootType": { + "type": "enum LootInfo::LOOT_TYPE", "id": 0, "offset": 72, - "flags": 7, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 + "hash": 1591891442, + "enum_options": { + "LOOT_TYPE_NONE": 0, + "LOOT_TYPE_GOLD": 1, + "LOOT_TYPE_MANA": 2, + "LOOT_TYPE_ITEM": 3, + "LOOT_TYPE_TREASURE_CARD": 4, + "LOOT_TYPE_MAGIC_XP": 5, + "LOOT_TYPE_ADD_SPELL": 6, + "LOOT_TYPE_MAX_HEALTH": 7, + "LOOT_TYPE_MAX_GOLD": 8, + "LOOT_TYPE_MAX_MANA": 9, + "LOOT_TYPE_MAX_POTION": 10, + "LOOT_TYPE_TRAINING_POINTS": 11, + "LOOT_TYPE_RECIPE": 12, + "LOOT_TYPE_CRAFTING_SLOT": 13, + "LOOT_TYPE_REAGENT": 14, + "LOOT_TYPE_PETSNACK": 15, + "LOOT_TYPE_GARDENING_XP": 16, + "LOOT_TYPE_PET_XP": 17, + "LOOT_TYPE_TREASURE_TABLE": 18, + "LOOT_TYPE_ARENA_POINTS": 19, + "LOOT_TYPE_ARENA_BONUS_POINTS": 20, + "LOOT_TYPE_GROUP": 21, + "LOOT_TYPE_FISHING_XP": 22, + "LOOT_TYPE_EVENT_CURRENCY_1": 24, + "LOOT_TYPE_EVENT_CURRENCY_2": 25, + "LOOT_TYPE_PVP_CURRENCY": 26, + "LOOT_TYPE_PVP_CURRENCY_BONUS": 27, + "LOOT_TYPE_PVP_TOURNEY_CURRENCY": 28, + "LOOT_TYPE_PVP_TOURNEY_CURRENCY_BONUS": 29, + "LOOT_TYPE_FURNITURE_ESSENCE": 30 + } }, - "m_actor": { - "type": "std::string", + "m_pvpCurrencyBonusAmount": { + "type": "int", "id": 1, "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - }, - "m_activate": { - "type": "bool", - "id": 2, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 142527940 - }, - "m_cloaked": { - "type": "bool", - "id": 3, - "offset": 121, - "flags": 7, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 7349510 + "hash": 447030870 } } }, - "849913375": { - "name": "class ConicalSoundBehaviorTemplate", + "98470457": { + "name": "class PublicEquippedJewelInfo", "bases": [ - "PositionalSoundBehaviorTemplate", - "SoundBehaviorTemplate", - "AreaBehaviorTemplate", - "BehaviorTemplate", "PropertyClass" ], - "hash": 849913375, + "hash": 98470457, "properties": { - "m_behaviorName": { - "type": "std::string", + "m_infoPairs": { + "type": "class SharedPointer", "id": 0, "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - }, - "m_radius": { - "type": "float", - "id": 1, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 989410271 - }, - "m_category": { - "type": "enum AudioCategory", - "id": 2, - "offset": 124, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2951251982, - "enum_options": { - "AudioCategory_Irrelevent": 0, - "AudioCategory_Accoustic": 1, - "AudioCategory_Noise": 2, - "AudioCategory_Music": 3, - "AudioCategory_MusicAtSFXVolume": 4, - "AudioCategory_Dialog": 5, - "AudioCategory_UI": 6, - "AudioCategory_NoiseAtMusicVolume": 7 - } - }, - "m_exclusive": { - "type": "bool", - "id": 3, - "offset": 128, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 824383403 - }, - "m_active": { - "type": "bool", - "id": 4, - "offset": 129, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 239335471 - }, - "m_enableReqs": { - "type": "class SharedPointer", - "id": 5, - "offset": 136, - "flags": 263, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3158020443 - }, - "m_trackFilenameList": { - "type": "std::string", - "id": 6, - "offset": 152, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2531081709 - }, - "m_playList": { - "type": "class PlayListEntry*", - "id": 7, - "offset": 176, - "flags": 7, - "container": "Vector", + "flags": 31, + "container": "List", "dynamic": true, "singleton": false, "pointer": true, - "hash": 3907873161 - }, - "m_priority": { - "type": "int", - "id": 8, - "offset": 208, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1235205852 - }, - "m_volume": { - "type": "float", - "id": 9, - "offset": 200, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1162855023 - }, - "m_loopCount": { - "type": "int", - "id": 10, - "offset": 204, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 865634717 - }, - "m_progression": { - "type": "enum PlayList::Progression", - "id": 11, - "offset": 220, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3279400238, - "enum_options": { - "Sequence": 0, - "Random": 1, - "SequenceOnceOnly": 2, - "RandomNoRepeat": 3 - } - }, - "m_progressMin": { - "type": "float", - "id": 12, - "offset": 212, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1497550192 - }, - "m_progressMax": { - "type": "float", - "id": 13, - "offset": 216, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1497549938 + "hash": 1522101428 }, - "m_audioFilterSet": { - "type": "unsigned int", - "id": 14, - "offset": 224, - "flags": 33554439, + "m_bSocketsLocked": { + "type": "bool", + "id": 1, + "offset": 88, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 831339825 - }, - "m_animationNameFilter": { - "type": "std::string", - "id": 15, - "offset": 232, + "hash": 1073026659 + } + } + }, + "97190451": { + "name": "class ChaseCamController", + "bases": [ + "CameraController", + "PropertyClass" + ], + "hash": 97190451, + "properties": {} + }, + "97162663": { + "name": "class MonsterMagicXPConfig*", + "bases": [ + "PropertyClass" + ], + "hash": 97162663, + "properties": { + "m_levelInfo": { + "type": "class MonsterMagicLevelInfo*", + "id": 0, + "offset": 72, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 2292854242 + "pointer": true, + "hash": 2337455676 }, - "m_functionallabel": { - "type": "std::string", - "id": 16, - "offset": 264, + "m_maxLevel": { + "type": "unsigned char", + "id": 1, + "offset": 88, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3589331278 - }, - "m_innerRadius": { - "type": "float", - "id": 17, - "offset": 296, + "hash": 783962734 + } + } + }, + "97162639": { + "name": "class MonsterMagicXPConfig", + "bases": [ + "PropertyClass" + ], + "hash": 97162639, + "properties": { + "m_levelInfo": { + "type": "class MonsterMagicLevelInfo*", + "id": 0, + "offset": 72, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 686816091 + "pointer": true, + "hash": 2337455676 }, - "m_inverted": { - "type": "bool", - "id": 18, - "offset": 300, + "m_maxLevel": { + "type": "unsigned char", + "id": 1, + "offset": 88, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1034821044 - }, - "m_fInsideAngle": { + "hash": 783962734 + } + } + }, + "97456582": { + "name": "class ClientFaceTargetActorCinematicAction", + "bases": [ + "FaceTargetActorCinematicAction", + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 97456582, + "properties": { + "m_timeOffset": { "type": "float", - "id": 19, - "offset": 304, + "id": 0, + "offset": 72, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1114383840 + "hash": 2237098605 }, - "m_fOutsideAngle": { - "type": "float", - "id": 20, - "offset": 308, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1627152289 + "hash": 2285866132 }, - "m_fOutsideVolume": { - "type": "float", - "id": 21, - "offset": 312, + "m_bCaster": { + "type": "bool", + "id": 2, + "offset": 120, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 90369618 - }, - "m_fRangeScale": { + "hash": 1390351511 + } + } + }, + "99029446": { + "name": "class ClientFaceTargetActorCinematicAction*", + "bases": [ + "FaceTargetActorCinematicAction", + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 99029446, + "properties": { + "m_timeOffset": { "type": "float", - "id": 22, - "offset": 316, + "id": 0, + "offset": 72, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1749294034 + "hash": 2237098605 }, - "m_fAttenuationFactor": { - "type": "float", - "id": 23, - "offset": 320, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 273292776 + "hash": 2285866132 }, - "m_eAttenuationType": { - "type": "enum PositionInfoAttenuationType", - "id": 24, - "offset": 324, - "flags": 2097159, + "m_bCaster": { + "type": "bool", + "id": 2, + "offset": 120, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2427193304, - "enum_options": { - "Standard": 0, - "Unit Range Power": 1 - } + "hash": 1390351511 } } }, - "463459163": { - "name": "class std::list >", - "bases": [], - "hash": 463459163, - "properties": {} - }, - "461603029": { - "name": "class WizardCharacterBehaviorTemplate*", + "99015196": { + "name": "class DdWinAnimMovePlayer*", "bases": [ - "BehaviorTemplate", + "WindowAnimation", "PropertyClass" ], - "hash": 461603029, + "hash": 99015196, "properties": { - "m_behaviorName": { - "type": "std::string", + "m_bUseDeepCopy": { + "type": "bool", "id": 0, "offset": 72, - "flags": 7, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3130754092 + "hash": 433380635 }, - "m_nHeadHandsModel": { - "type": "int", + "m_facing": { + "type": "enum DoodleDoug::DdDirection", "id": 1, - "offset": 120, - "flags": 7, + "offset": 80, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 998398489 + "hash": 591537519 }, - "m_nHairModel": { - "type": "int", + "m_direction": { + "type": "enum DoodleDoug::DdDirection", "id": 2, - "offset": 124, - "flags": 7, + "offset": 84, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1415899069 + "hash": 1599953256 }, - "m_nHatModel": { - "type": "int", + "m_fSpeed": { + "type": "float", "id": 3, - "offset": 128, - "flags": 7, + "offset": 88, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1927542998 + "hash": 503609006 }, - "m_nTorsoModel": { - "type": "int", + "m_currentLocation": { + "type": "class Vector3D", "id": 4, - "offset": 132, - "flags": 7, + "offset": 92, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1482459696 + "hash": 3670997758 }, - "m_nFeetModel": { - "type": "int", + "m_targetLocation": { + "type": "class Vector3D", "id": 5, - "offset": 136, - "flags": 7, + "offset": 104, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1832171389 + "hash": 2653859938 }, - "m_nWandModel": { - "type": "int", + "m_myBoard": { + "type": "class DoodleDoug*", "id": 6, - "offset": 140, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 132808131 - }, - "m_nSkinColor": { - "type": "int", - "id": 7, - "offset": 144, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 105291612 - }, - "m_nSkinDecal": { - "type": "int", - "id": 8, - "offset": 148, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 106107894 - }, - "m_nHairColor": { - "type": "int", - "id": 9, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1404048907 - }, - "m_nHatColor": { - "type": "int", - "id": 10, - "offset": 156, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1915692836 - }, - "m_nHatDecal": { - "type": "int", - "id": 11, - "offset": 160, - "flags": 7, + "offset": 120, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1916509118 - }, - "m_nTorsoColor": { - "type": "int", - "id": 12, - "offset": 164, + "pointer": true, + "hash": 2212758093 + } + } + }, + "101700434": { + "name": "class ClientUpdatePipsCinematicAction", + "bases": [ + "UpdatePipsCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 101700434, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1470609534 - }, - "m_nTorsoDecal": { - "type": "int", - "id": 13, - "offset": 168, + "hash": 2237098605 + } + } + }, + "101655189": { + "name": "class SharedPointer", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 101655189, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1471425816 + "hash": 3130754092 }, - "m_nTorsoDecal2": { - "type": "int", - "id": 14, - "offset": 172, + "m_primaryDyeToTexture": { + "type": "class PetDyeToTexture", + "id": 1, + "offset": 120, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 1309581098 + "hash": 1981853869 }, - "m_nFeetColor": { - "type": "int", - "id": 15, - "offset": 176, + "m_secondaryDyeToTexture": { + "type": "class PetDyeToTexture", + "id": 2, + "offset": 136, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 1820321227 + "hash": 1861913233 }, - "m_nFeetDecal": { - "type": "int", - "id": 16, - "offset": 180, + "m_patternToTexture": { + "type": "class PetDyeToTexture", + "id": 3, + "offset": 152, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 1821137509 + "hash": 1245062405 }, "m_eGender": { "type": "enum eGender", - "id": 17, - "offset": 184, + "id": 4, + "offset": 168, "flags": 2097159, "container": "Static", "dynamic": false, @@ -610874,8 +557340,8 @@ }, "m_eRace": { "type": "enum eRace", - "id": 18, - "offset": 188, + "id": 5, + "offset": 172, "flags": 2097159, "container": "Static", "dynamic": false, @@ -613662,19 +560128,1815 @@ "PP_Fairy_Fire": 1847789544, "MNT_Mustang_B": 1448793691, "PP_FireElfMyth": 1933609060, - "MNT_KT-BoatRide": 1560860110 + "MNT_KT-BoatRide": 1560860110, + "MNT_ShadowMagic": 2095978357, + "MNT_MardiGrasFloat_A": 1740674432, + "PP_ChineseNYSnake": 988201940, + "MNT_AnubisDog": 1995079956, + "PP_ShadowImp_A": 1604849432, + "PP_ShadowImp_B": 1604849438, + "PP_ShadowImp_C": 1604849436, + "MNT_ShadowMagic_B": 2093870965, + "MNT_ShadowMagic_C": 2093805429, + "Guest_KT_SE_Tritops_Warrior_I_01": 97516901, + "Guest_KT_SE_DS_Draconian_Model_01": 1916095079, + "Guest_KT_SE_Beetle_Scarab_C_01_L50": 1064004307, + "Guest_KT_SE_Roach_Warrior_C_03": 1872574203, + "Guest_KT_SE_Roach_Warrior_C_04": 1871918843, + "Guest_KT_SE_Roach_Warrior_C_05": 1871787771, + "Guest_KT_SE_Beetle_Scarab_C_01": 1353410759, + "Guest_KT_SE_Mander_Citizen_B_01_L50": 2044509396, + "Guest_KT_SE_Mander_CitizenF_B_01_L50": 164327682, + "Guest_KT_SE_Treant_Tormented_A_01": 1359800879, + "Guest_KT_SE_Treant_Base_A_01": 765512948, + "Guest_KT_SE_Mander_Citizen_F_D_05": 171244620, + "Guest_KT_SE_Mander_CitizenF_D_01": 163791037, + "Guest_KT_SE_Mander_CitizenF_D_02": 298008765, + "Guest_KT_SE_Mander_CitizenF_D_03": 432226493, + "Guest_KT_SE_Mander_CitizenF_D_04": 566444221, + "Guest_KT_SE_Mander_MummyF_A_01": 964349080, + "Guest_KT_SE_Mander_MummyF_A_02": 964480152, + "Guest_KT_SE_MC_Wraith_Model_01": 1101442118, + "Guest_KT_SE_Mander_CitizenF_B_02": 298000573, + "MNT_Wheelbarrow": 614248817, + "MNT_StubbornLlama": 221089074 + } + }, + "m_eggName": { + "type": "std::string", + "id": 6, + "offset": 176, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1732162479 + }, + "m_eggColor": { + "type": "int", + "id": 7, + "offset": 208, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1279450220 + }, + "m_fScale": { + "type": "float", + "id": 8, + "offset": 212, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 503137701, + "enum_options": { + "__DEFAULT": "1.0" + } + }, + "m_sHatchRate": { + "type": "std::string", + "id": 9, + "offset": 216, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1870311714 + }, + "m_wowFactor": { + "type": "unsigned int", + "id": 10, + "offset": 248, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1232905609 + }, + "m_flyingOffset": { + "type": "float", + "id": 11, + "offset": 252, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1899002567 + }, + "m_maxStats": { + "type": "class PetStat", + "id": 12, + "offset": 256, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1846363080 + }, + "m_startStats": { + "type": "class PetStat", + "id": 13, + "offset": 272, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2360362512 + }, + "m_talents": { + "type": "std::string", + "id": 14, + "offset": 288, + "flags": 268435463, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1548787382, + "enum_options": { + "__BASECLASS": "PetTalentTemplate" + } + }, + "m_derbyTalents": { + "type": "std::string", + "id": 15, + "offset": 320, + "flags": 268435463, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2359224108, + "enum_options": { + "__BASECLASS": "PetDerbyTalentTemplate" + } + }, + "m_Levels": { + "type": "class PetLevelInfo", + "id": 16, + "offset": 304, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 3555902999 + }, + "m_conversionStats": { + "type": "class PetStat", + "id": 17, + "offset": 336, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2003448008 + }, + "m_conversionTalents": { + "type": "std::string", + "id": 18, + "offset": 352, + "flags": 268435463, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2717498332, + "enum_options": { + "__BASECLASS": "PetTalentTemplate" + } + }, + "m_conversionLevel": { + "type": "unsigned char", + "id": 19, + "offset": 368, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 941047662 + }, + "m_conversionXP": { + "type": "unsigned int", + "id": 20, + "offset": 372, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2284347003 + }, + "m_favoriteSnackCategories": { + "type": "std::string", + "id": 21, + "offset": 376, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 3317721809 + }, + "m_jumpSound": { + "type": "std::string", + "id": 22, + "offset": 392, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2493302912 + }, + "m_duckSound": { + "type": "std::string", + "id": 23, + "offset": 424, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3426875339 + }, + "m_morphingExceptions": { + "type": "class MorphingException", + "id": 24, + "offset": 456, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2719456886 + }, + "m_hatchesAsID": { + "type": "gid", + "id": 25, + "offset": 472, + "flags": 33554439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2010028089 + }, + "m_guaranteedTalents": { + "type": "std::string", + "id": 26, + "offset": 480, + "flags": 268435463, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2876819510, + "enum_options": { + "__BASECLASS": "PetTalentTemplate" + } + }, + "m_guaranteedDerbyTalents": { + "type": "std::string", + "id": 27, + "offset": 496, + "flags": 268435463, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1658650796, + "enum_options": { + "__BASECLASS": "PetDerbyTalentTemplate" + } + }, + "m_hideName": { + "type": "bool", + "id": 28, + "offset": 516, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 645410894 + }, + "m_houseGuestOpacity": { + "type": "float", + "id": 29, + "offset": 520, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 805760636, + "enum_options": { + "__DEFAULT": "1.0" + } + }, + "m_hatchmakingInitalCooldownTime": { + "type": "unsigned int", + "id": 30, + "offset": 524, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 724960897, + "enum_options": { + "__DEFAULT": 0 + } + }, + "m_hatchmakingMaximumHatches": { + "type": "unsigned int", + "id": 31, + "offset": 528, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1142581578, + "enum_options": { + "__DEFAULT": 0 + } + }, + "m_excludeFromHatchOfTheDay": { + "type": "bool", + "id": 32, + "offset": 532, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1127631469, + "enum_options": { + "__DEFAULT": 0 + } + }, + "m_exclusivePet": { + "type": "bool", + "id": 33, + "offset": 533, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1328949460, + "enum_options": { + "__DEFAULT": 0 + } + }, + "m_animationEventList": { + "type": "class SharedPointer", + "id": 34, + "offset": 536, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2858101335 + } + } + }, + "101536727": { + "name": "class SharedPointer", + "bases": [ + "DerbyEffect", + "PropertyClass" + ], + "hash": 101536727, + "properties": { + "m_buffType": { + "type": "enum DerbyTalentBuffType", + "id": 0, + "offset": 92, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1149251982, + "enum_options": { + "Buff": 0, + "Debuff": 1, + "Neither": 2 + } + }, + "m_kTarget": { + "type": "enum DerbyTargetType", + "id": 1, + "offset": 96, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1807803351, + "enum_options": { + "kTargetInFront": 0, + "kTargetBehind": 1, + "kTargetFirst": 2, + "kTargetSelf": 3, + "kTargetAll": 4, + "kTargetLast": 5 + } + }, + "m_nDuration": { + "type": "int", + "id": 2, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1110167982 + }, + "m_effectID": { + "type": "unsigned int", + "id": 3, + "offset": 88, + "flags": 24, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2347630439 + }, + "m_imageFilename": { + "type": "std::string", + "id": 4, + "offset": 112, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2813328063 + }, + "m_iconIndex": { + "type": "unsigned int", + "id": 5, + "offset": 144, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1265133262 + }, + "m_soundOnActivate": { + "type": "std::string", + "id": 6, + "offset": 152, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1956929714 + }, + "m_soundOnTarget": { + "type": "std::string", + "id": 7, + "offset": 184, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3444214056 + }, + "m_targetParticleEffect": { + "type": "std::string", + "id": 8, + "offset": 216, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3048234723 + }, + "m_overheadMessage": { + "type": "std::string", + "id": 9, + "offset": 248, + "flags": 8388639, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1701018190 + }, + "m_requirements": { + "type": "class RequirementList", + "id": 10, + "offset": 280, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2840988582 + }, + "m_nActionType": { + "type": "enum DerbyActionTargetType", + "id": 11, + "offset": 376, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3401355432, + "enum_options": { + "Jump": 0, + "Duck": 1, + "AllExceptCheer": 2, + "Cheer": 3 + } + } + } + }, + "99804467": { + "name": "class BaseGameEffectBehavior", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 99804467, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_gameEffects": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1169674284 + } + } + }, + "99763507": { + "name": "class BaseGameEffectBehavior*", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 99763507, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_gameEffects": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1169674284 + } + } + }, + "101271634": { + "name": "class AnimationBehaviorTemplate", + "bases": [ + "RenderBehaviorTemplate", + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 101271634, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + }, + "m_assetName": { + "type": "std::string", + "id": 1, + "offset": 120, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513131580 + }, + "m_proxyName": { + "type": "std::string", + "id": 2, + "offset": 152, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3120358366 + }, + "m_height": { + "type": "float", + "id": 3, + "offset": 184, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 602977104 + }, + "m_bStaticObject": { + "type": "bool", + "id": 4, + "offset": 188, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 108091444 + }, + "m_bCastsShadow": { + "type": "bool", + "id": 5, + "offset": 189, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 652868121 + }, + "m_bFadesIn": { + "type": "bool", + "id": 6, + "offset": 190, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 263337711, + "enum_options": { + "__DEFAULT": 1 + } + }, + "m_opacity": { + "type": "float", + "id": 7, + "offset": 192, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 700308464, + "enum_options": { + "__DEFAULT": 1 + } + }, + "m_bFadesOut": { + "type": "bool", + "id": 8, + "offset": 196, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 17988464, + "enum_options": { + "__DEFAULT": 1 + } + }, + "m_bPortalExcluded": { + "type": "bool", + "id": 9, + "offset": 197, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 239086293 + }, + "m_scale": { + "type": "float", + "id": 10, + "offset": 200, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 899693439, + "enum_options": { + "__DEFAULT": 1 + } + }, + "m_bCanBeHiddenByCamera": { + "type": "bool", + "id": 11, + "offset": 204, + "flags": 263, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 185252414 + }, + "m_nLightType": { + "type": "enum RenderBehaviorTemplate::LightingType", + "id": 12, + "offset": 208, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2027385184, + "enum_options": { + "None": 0, + "Char": 1, + "Env": 2 + } + }, + "m_shadowAssetName": { + "type": "std::string", + "id": 13, + "offset": 216, + "flags": 131335, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1844059970 + }, + "m_enableReqs": { + "type": "class SharedPointer", + "id": 14, + "offset": 248, + "flags": 263, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3158020443 + }, + "m_skeletonID": { + "type": "int", + "id": 15, + "offset": 264, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1375865996 + }, + "m_dataLookupAssetName": { + "type": "std::string", + "id": 16, + "offset": 272, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1944770480 + }, + "m_animationAssetName": { + "type": "std::string", + "id": 17, + "offset": 304, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2944957756 + }, + "m_movementScale": { + "type": "float", + "id": 18, + "offset": 336, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 768663914 + }, + "m_idleAnimationName": { + "type": "std::string", + "id": 19, + "offset": 344, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1616739386 + }, + "m_animationEventList": { + "type": "class SharedPointer", + "id": 20, + "offset": 376, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2858101335 + } + } + }, + "101570942": { + "name": "class SharedPointer", + "bases": [ + "UpdatePipsCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 101570942, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + } + } + }, + "101681082": { + "name": "class BasicChatPlayer*", + "bases": [ + "PropertyClass" + ], + "hash": 101681082, + "properties": { + "m_characterID": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 210498386 + }, + "m_nameBlob": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3058206907 + }, + "m_schoolLevel": { + "type": "unsigned int", + "id": 2, + "offset": 112, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 221776365 + }, + "m_objectID": { + "type": "gid", + "id": 3, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 257032380 + }, + "m_platformType": { + "type": "char", + "id": 4, + "offset": 128, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1303407771 + } + } + }, + "101684154": { + "name": "class BasicChatPlayer", + "bases": [ + "PropertyClass" + ], + "hash": 101684154, + "properties": { + "m_characterID": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 210498386 + }, + "m_nameBlob": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3058206907 + }, + "m_schoolLevel": { + "type": "unsigned int", + "id": 2, + "offset": 112, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 221776365 + }, + "m_objectID": { + "type": "gid", + "id": 3, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 257032380 + }, + "m_platformType": { + "type": "char", + "id": 4, + "offset": 128, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1303407771 + } + } + }, + "105011275": { + "name": "class SharedPointer", + "bases": [ + "CinematicStageTemplate", + "PropertyClass" + ], + "hash": 105011275, + "properties": { + "m_name": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1717359772 + }, + "m_duration": { + "type": "float", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 920323453 + }, + "m_actions": { + "type": "class SharedPointer", + "id": 2, + "offset": 112, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1380578687 + }, + "m_stageRelationships": { + "type": "class SharedPointer", + "id": 3, + "offset": 128, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 499983354 + }, + "m_burnHangingTime": { + "type": "float", + "id": 4, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1114462681 + }, + "m_stopRotating": { + "type": "bool", + "id": 5, + "offset": 158, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 13587553 + }, + "m_startRotating": { + "type": "bool", + "id": 6, + "offset": 159, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 839204969 + }, + "m_startRotationTime": { + "type": "float", + "id": 7, + "offset": 160, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1011449124 + }, + "m_revealText": { + "type": "std::string", + "id": 8, + "offset": 168, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2011500383 + }, + "m_revealsHanging": { + "type": "bool", + "id": 9, + "offset": 200, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1202199809 + }, + "m_camRel": { + "type": "enum CameraCutCinematicAction::kCameraRelative", + "id": 10, + "offset": 204, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 919962138, + "enum_options": { + "kSigil": 1, + "kTarget": 2, + "kSource": 3, + "kActor": 4, + "__DEFAULT": "kTarget" + } + }, + "m_bSwitchCameraToWideLong": { + "type": "bool", + "id": 11, + "offset": 156, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2136912684, + "enum_options": { + "__DEFAULT": 1 + } + }, + "m_announcesSpell": { + "type": "bool", + "id": 12, + "offset": 157, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 652261533, + "enum_options": { + "__DEFAULT": 1 } + }, + "m_detonate": { + "type": "bool", + "id": 13, + "offset": 208, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1738601959 + } + } + }, + "104405982": { + "name": "class TieredSpellRetired", + "bases": [ + "PropertyClass" + ], + "hash": 104405982, + "properties": { + "m_tieredSpellRetiredList": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 955625460 + } + } + }, + "102101524": { + "name": "class CriticalObjectList*", + "bases": [ + "PropertyClass" + ], + "hash": 102101524, + "properties": { + "m_objList": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 72042095 + } + } + }, + "101979743": { + "name": "class BadgeFilter*", + "bases": [ + "PropertyClass" + ], + "hash": 101979743, + "properties": {} + }, + "102761053": { + "name": "class WizStatisticEffectConfig", + "bases": [ + "PropertyClass" + ], + "hash": 102761053, + "properties": { + "m_accuracyScalarBase": { + "type": "float", + "id": 0, + "offset": 76, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": true, + "pointer": false, + "hash": 1121339315 + }, + "m_powerPipScalarBase": { + "type": "float", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": true, + "pointer": false, + "hash": 137046174 + }, + "m_damageResistanceScalarBase": { + "type": "float", + "id": 2, + "offset": 84, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": true, + "pointer": false, + "hash": 926091704 + }, + "m_accuracyScalingFactor": { + "type": "float", + "id": 3, + "offset": 88, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": true, + "pointer": false, + "hash": 1629583970 + }, + "m_powerPipScalingFactor": { + "type": "float", + "id": 4, + "offset": 92, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": true, + "pointer": false, + "hash": 290142061 + }, + "m_damageResistanceScalingFactor": { + "type": "float", + "id": 5, + "offset": 96, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": true, + "pointer": false, + "hash": 845265479 + }, + "m_criticalHitLevelThreshold": { + "type": "int", + "id": 6, + "offset": 100, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": true, + "pointer": false, + "hash": 278823695 + }, + "m_blockLevelThreshold": { + "type": "int", + "id": 7, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": true, + "pointer": false, + "hash": 639576458 + }, + "m_accuracyLevelThreshold": { + "type": "int", + "id": 8, + "offset": 108, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": true, + "pointer": false, + "hash": 458488426 + }, + "m_powerPipLevelThreshold": { + "type": "int", + "id": 9, + "offset": 112, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": true, + "pointer": false, + "hash": 1354062037 + }, + "m_damageResistanceLevelThreshold": { + "type": "int", + "id": 10, + "offset": 116, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": true, + "pointer": false, + "hash": 345781999 + }, + "m_critAndBlockLevelData": { + "type": "class SharedPointer", + "id": 11, + "offset": 136, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": true, + "pointer": true, + "hash": 2466687771 + }, + "m_criticalDamageAddPercent": { + "type": "float", + "id": 12, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": true, + "pointer": false, + "hash": 169683323 + }, + "m_criticalDamageAddPercentPvP": { + "type": "float", + "id": 13, + "offset": 124, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": true, + "pointer": false, + "hash": 1404103985 + }, + "m_criticalHealAddPercent": { + "type": "float", + "id": 14, + "offset": 128, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": true, + "pointer": false, + "hash": 637250262 + }, + "m_criticalHealAddPercentPvP": { + "type": "float", + "id": 15, + "offset": 132, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": true, + "pointer": false, + "hash": 297645228 + }, + "m_pipConversionLevelThreshold": { + "type": "int", + "id": 16, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": true, + "pointer": false, + "hash": 469925422 + }, + "m_pipConversionLevelData": { + "type": "class SharedPointer", + "id": 17, + "offset": 160, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": true, + "pointer": true, + "hash": 599333160 + }, + "m_baseCritDivisor": { + "type": "int", + "id": 18, + "offset": 176, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": true, + "pointer": false, + "hash": 1793948871 + }, + "m_baseBlockDivisor": { + "type": "int", + "id": 19, + "offset": 180, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": true, + "pointer": false, + "hash": 331192160 + }, + "m_critScalarDivisor": { + "type": "int", + "id": 20, + "offset": 184, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": true, + "pointer": false, + "hash": 353250050 + }, + "m_blockScalarDivisor": { + "type": "int", + "id": 21, + "offset": 188, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": true, + "pointer": false, + "hash": 778321147 + }, + "m_finalCritMedian1": { + "type": "float", + "id": 22, + "offset": 192, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": true, + "pointer": false, + "hash": 1779518738 + }, + "m_finalCritMedian2": { + "type": "float", + "id": 23, + "offset": 196, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": true, + "pointer": false, + "hash": 1779518739 + }, + "m_finalBlockMedian1": { + "type": "float", + "id": 24, + "offset": 200, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": true, + "pointer": false, + "hash": 2233508235 + }, + "m_finalBlockMedian2": { + "type": "float", + "id": 25, + "offset": 204, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": true, + "pointer": false, + "hash": 2233508236 + }, + "m_baseCritDivisorPvP": { + "type": "int", + "id": 26, + "offset": 208, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": true, + "pointer": false, + "hash": 650248157 + }, + "m_baseBlockDivisorPvP": { + "type": "int", + "id": 27, + "offset": 212, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": true, + "pointer": false, + "hash": 1814544342 + }, + "m_critScalarDivisorPvP": { + "type": "int", + "id": 28, + "offset": 216, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": true, + "pointer": false, + "hash": 2087471160 + }, + "m_blockScalarDivisorPvP": { + "type": "int", + "id": 29, + "offset": 220, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": true, + "pointer": false, + "hash": 668812177 + }, + "m_finalCritMedian1PvP": { + "type": "float", + "id": 30, + "offset": 224, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": true, + "pointer": false, + "hash": 849935720 + }, + "m_finalCritMedian2PvP": { + "type": "float", + "id": 31, + "offset": 228, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": true, + "pointer": false, + "hash": 849971657 + }, + "m_finalBlockMedian1PvP": { + "type": "float", + "id": 32, + "offset": 232, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": true, + "pointer": false, + "hash": 1437215553 + }, + "m_finalBlockMedian2PvP": { + "type": "float", + "id": 33, + "offset": 236, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": true, + "pointer": false, + "hash": 1437251490 + }, + "m_archmasteryFillRateScaler": { + "type": "float", + "id": 34, + "offset": 240, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": true, + "pointer": false, + "hash": 266116071 + }, + "m_archmasteryFillRateMax": { + "type": "float", + "id": 35, + "offset": 244, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": true, + "pointer": false, + "hash": 2006811155 + }, + "m_archmasteryFullnessMinPvE": { + "type": "float", + "id": 36, + "offset": 248, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": true, + "pointer": false, + "hash": 1196194389 + }, + "m_archmasteryFullnessMinPvP": { + "type": "float", + "id": 37, + "offset": 252, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": true, + "pointer": false, + "hash": 1196194400 + }, + "m_archmasteryConversionCost": { + "type": "float", + "id": 38, + "offset": 256, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": true, + "pointer": false, + "hash": 1687582297 + }, + "m_archmasteryPowerPipCost": { + "type": "float", + "id": 39, + "offset": 260, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": true, + "pointer": false, + "hash": 411547625 } } }, - "460675308": { - "name": "class ClientUnPolymorphCinematicAction", + "104808595": { + "name": "class SharedPointer", "bases": [ - "UnPolymorphCinematicAction", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 104808595, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_gameEffects": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1169674284 + } + } + }, + "105336238": { + "name": "class ClientCinematic*", + "bases": [ + "Cinematic", + "PropertyClass" + ], + "hash": 105336238, + "properties": {} + }, + "105044045": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 105044045, + "properties": { + "m_goalsAND": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1522921572 + }, + "m_goalsOR": { + "type": "std::string", + "id": 1, + "offset": 88, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2474679090 + }, + "m_goalsToAdd": { + "type": "std::string", + "id": 2, + "offset": 104, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 3122082173 + }, + "m_completeQuest": { + "type": "bool", + "id": 3, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1096497470 + }, + "m_requiredORCount": { + "type": "int", + "id": 4, + "offset": 124, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1209220805 + } + } + }, + "113233255": { + "name": "class AddAuraCinematicAction*", + "bases": [ + "ActorCinematicAction", "CinematicAction", "PropertyClass" ], - "hash": 460675308, + "hash": 113233255, "properties": { "m_timeOffset": { "type": "float", @@ -613686,19 +561948,42 @@ "singleton": false, "pointer": false, "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + }, + "m_effect": { + "type": "std::string", + "id": 2, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1894145160 } } }, - "851672926": { - "name": "class BlueArenaItemsOption", + "108581982": { + "name": "class SharedPointer", "bases": [ - "ServiceOptionBase", + "PlayerStatuePvPBlob", + "PlayerStatueBlob", "PropertyClass" ], - "hash": 851672926, + "hash": 108581982, "properties": { - "m_serviceName": { - "type": "std::string", + "m_level": { + "type": "int", "id": 0, "offset": 72, "flags": 31, @@ -613706,63 +561991,361 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 2206028813 + "hash": 801285362 }, - "m_iconKey": { - "type": "std::string", + "m_school": { + "type": "unsigned int", "id": 1, - "offset": 168, + "offset": 76, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2457138637 + "hash": 1152268885 }, - "m_displayKey": { - "type": "std::string", + "m_gender": { + "type": "int", "id": 2, - "offset": 104, + "offset": 80, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3023276954 + "hash": 473816879 }, - "m_serviceIndex": { + "m_nameKeys": { "type": "unsigned int", "id": 3, - "offset": 204, + "offset": 84, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2103126710 + "hash": 1772225898 }, - "m_forceInteract": { - "type": "bool", + "m_badge": { + "type": "std::string", "id": 4, + "offset": 88, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2286962478 + }, + "m_pCharacterBehavior": { + "type": "class SharedPointer", + "id": 5, + "offset": 120, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2724673923 + }, + "m_pEquipment": { + "type": "class SharedPointer", + "id": 6, + "offset": 136, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2473540161 + }, + "m_pStats": { + "type": "class SharedPointer", + "id": 7, + "offset": 152, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2212894623 + }, + "m_pGameEffects": { + "type": "class SharedPointer", + "id": 8, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1557857436 + }, + "m_petTID": { + "type": "unsigned int", + "id": 9, "offset": 200, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1705789564 + "hash": 1037635095 + }, + "m_pPetBehavior": { + "type": "class SharedPointer", + "id": 10, + "offset": 208, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2663493503 + }, + "m_pPetJewels": { + "type": "class SharedPointer", + "id": 11, + "offset": 224, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 733229991 } } }, - "459963810": { - "name": "class ObjectLocation", + "106456286": { + "name": "class SharedPointer", "bases": [ + "Window", "PropertyClass" ], - "hash": 459963810, + "hash": 106456286, "properties": { - "m_templateID": { + "m_sName": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306437263 + }, + "m_Children": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621225959 + }, + "m_Style": { + "type": "unsigned int", + "id": 2, + "offset": 152, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "SCALE_CHILDREN": 2, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "FOCUS_LOCKED": 64, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152 + } + }, + "m_Flags": { "type": "unsigned int", + "id": 3, + "offset": 156, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } + }, + "m_Window": { + "type": "class Rect", + "id": 4, + "offset": 160, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3105139380 + }, + "m_fTargetAlpha": { + "type": "float", + "id": 5, + "offset": 212, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1809129834 + }, + "m_fDisabledAlpha": { + "type": "float", + "id": 6, + "offset": 216, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1389987675 + }, + "m_fAlpha": { + "type": "float", + "id": 7, + "offset": 208, + "flags": 65671, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 482130755 + }, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3623628394 + }, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2102211316 + }, + "m_sScript": { + "type": "std::string", + "id": 10, + "offset": 352, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1846695875 + }, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3389835433 + }, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547159940 + }, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513510520 + }, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3091503757 + } + } + }, + "105406294": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 105406294, + "properties": { + "m_subType": { + "type": "std::string", "id": 0, "offset": 72, "flags": 7, @@ -613770,49 +562353,610 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 1286746870 + "hash": 3175052615 }, - "m_zoneDisplayName": { + "m_versionNumber": { + "type": "unsigned int", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1265259452 + }, + "m_packageNumber": { + "type": "int", + "id": 2, + "offset": 108, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1934060719 + }, + "m_userData": { + "type": "unsigned int", + "id": 3, + "offset": 112, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 927280710 + }, + "m_objectCount": { + "type": "unsigned int", + "id": 4, + "offset": 116, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 410139949 + } + } + }, + "105382129": { + "name": "class ItemDynamicBehaviorTemplate*", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 105382129, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + }, + "m_behaviorList": { + "type": "class BehaviorTemplate*", + "id": 1, + "offset": 120, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1993233019 + } + } + }, + "105382321": { + "name": "class ItemDynamicBehaviorTemplate", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 105382321, + "properties": { + "m_behaviorName": { "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + }, + "m_behaviorList": { + "type": "class BehaviorTemplate*", + "id": 1, + "offset": 120, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1993233019 + } + } + }, + "105905386": { + "name": "class PvPCurrencyLootInfo", + "bases": [ + "LootInfo", + "LootInfoBase", + "PropertyClass" + ], + "hash": 105905386, + "properties": { + "m_lootType": { + "type": "enum LootInfo::LOOT_TYPE", + "id": 0, + "offset": 72, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1591891442, + "enum_options": { + "LOOT_TYPE_NONE": 0, + "LOOT_TYPE_GOLD": 1, + "LOOT_TYPE_MANA": 2, + "LOOT_TYPE_ITEM": 3, + "LOOT_TYPE_TREASURE_CARD": 4, + "LOOT_TYPE_MAGIC_XP": 5, + "LOOT_TYPE_ADD_SPELL": 6, + "LOOT_TYPE_MAX_HEALTH": 7, + "LOOT_TYPE_MAX_GOLD": 8, + "LOOT_TYPE_MAX_MANA": 9, + "LOOT_TYPE_MAX_POTION": 10, + "LOOT_TYPE_TRAINING_POINTS": 11, + "LOOT_TYPE_RECIPE": 12, + "LOOT_TYPE_CRAFTING_SLOT": 13, + "LOOT_TYPE_REAGENT": 14, + "LOOT_TYPE_PETSNACK": 15, + "LOOT_TYPE_GARDENING_XP": 16, + "LOOT_TYPE_PET_XP": 17, + "LOOT_TYPE_TREASURE_TABLE": 18, + "LOOT_TYPE_ARENA_POINTS": 19, + "LOOT_TYPE_ARENA_BONUS_POINTS": 20, + "LOOT_TYPE_GROUP": 21, + "LOOT_TYPE_FISHING_XP": 22, + "LOOT_TYPE_EVENT_CURRENCY_1": 24, + "LOOT_TYPE_EVENT_CURRENCY_2": 25, + "LOOT_TYPE_PVP_CURRENCY": 26, + "LOOT_TYPE_PVP_CURRENCY_BONUS": 27, + "LOOT_TYPE_PVP_TOURNEY_CURRENCY": 28, + "LOOT_TYPE_PVP_TOURNEY_CURRENCY_BONUS": 29, + "LOOT_TYPE_FURNITURE_ESSENCE": 30 + } + }, + "m_pvpCurrencyAmount": { + "type": "int", "id": 1, "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 649262863 + } + } + }, + "107442785": { + "name": "class PartnerLogoData", + "bases": [ + "PropertyClass" + ], + "hash": 107442785, + "properties": { + "m_logoList": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 906435731 + } + } + }, + "107439713": { + "name": "class PartnerLogoData*", + "bases": [ + "PropertyClass" + ], + "hash": 107439713, + "properties": { + "m_logoList": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 906435731 + } + } + }, + "107661205": { + "name": "class MapInfoManager::MapInfo*", + "bases": [ + "PropertyClass" + ], + "hash": 107661205, + "properties": { + "m_zoneName": { + "type": "std::string", + "id": 0, + "offset": 96, + "flags": 8388615, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1962339438 + "hash": 2171167736 }, - "m_worldName": { + "m_mapImage": { + "type": "std::string", + "id": 1, + "offset": 128, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3475170332 + }, + "m_imageSize": { + "type": "class Size", + "id": 2, + "offset": 160, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 925407930 + }, + "m_doodleData": { + "type": "class SharedPointer", + "id": 3, + "offset": 168, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 3059121346 + }, + "m_mapRotation": { + "type": "int", + "id": 4, + "offset": 184, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1291362088 + } + } + }, + "107659484": { + "name": "class HatchmakingKioskBehaviorBase*", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 107659484, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_hatchDayPetCode": { + "type": "unsigned int", + "id": 1, + "offset": 112, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1354692695 + } + } + }, + "107669724": { + "name": "class HatchmakingKioskBehaviorBase", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 107669724, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_hatchDayPetCode": { + "type": "unsigned int", + "id": 1, + "offset": 112, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1354692695 + } + } + }, + "112496494": { + "name": "class SharedPointer", + "bases": [ + "CinematicStageTemplate", + "PropertyClass" + ], + "hash": 112496494, + "properties": { + "m_name": { "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1717359772 + }, + "m_duration": { + "type": "float", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 920323453 + }, + "m_actions": { + "type": "class SharedPointer", "id": 2, "offset": 112, "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1380578687 + }, + "m_stageRelationships": { + "type": "class SharedPointer", + "id": 3, + "offset": 128, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 499983354 + }, + "m_summon": { + "type": "std::string", + "id": 4, + "offset": 152, + "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1846757476 + "hash": 2460090138 }, - "m_eventName": { + "m_cameras": { + "type": "std::string", + "id": 5, + "offset": 184, + "flags": 131079, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 3217341687 + }, + "m_altcameras": { + "type": "std::string", + "id": 6, + "offset": 208, + "flags": 131079, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1882980152 + }, + "m_camRel": { + "type": "enum CameraCutCinematicAction::kCameraRelative", + "id": 7, + "offset": 232, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 919962138, + "enum_options": { + "kSigil": 1, + "kTarget": 2, + "kSource": 3, + "kActor": 4, + "__DEFAULT": "kTarget" + } + }, + "m_sound": { + "type": "std::string", + "id": 8, + "offset": 280, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2307644996 + }, + "m_interpDuration": { + "type": "float", + "id": 9, + "offset": 312, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237711951, + "enum_options": { + "__DEFAULT": "0.0" + } + }, + "m_summonAnim": { + "type": "std::string", + "id": 10, + "offset": 240, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2113551775, + "enum_options": { + "__DEFAULT": "Summon" + } + }, + "m_returnToIdle": { + "type": "bool", + "id": 11, + "offset": 272, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1267817300 + }, + "m_createOrientation": { + "type": "enum CreateActorCinematicAction::kCreateOrientation", + "id": 12, + "offset": 316, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3562324429, + "enum_options": { + "kFaceTarget": 0, + "kFaceSource": 1, + "kSigil": 2, + "kTarget": 3, + "kSource": 4, + "kSigilRight": 5, + "kSigilLeft": 6, + "kFaceTargetTeam": 7, + "__DEFAULT": "kFaceTarget" + } + }, + "m_hidePolymorphFloatyText": { + "type": "bool", + "id": 13, + "offset": 320, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 942475883 + } + } + }, + "108971925": { + "name": "class MapInfoManager::MapInfo", + "bases": [ + "PropertyClass" + ], + "hash": 108971925, + "properties": { + "m_zoneName": { + "type": "std::string", + "id": 0, + "offset": 96, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2171167736 + }, + "m_mapImage": { "type": "std::string", + "id": 1, + "offset": 128, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3475170332 + }, + "m_imageSize": { + "type": "class Size", + "id": 2, + "offset": 160, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 925407930 + }, + "m_doodleData": { + "type": "class SharedPointer", "id": 3, - "offset": 144, + "offset": 168, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 3059121346 + }, + "m_mapRotation": { + "type": "int", + "id": 4, + "offset": 184, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3493260286 + "hash": 1291362088 } } }, - "851464473": { - "name": "class SharedPointer", + "108638982": { + "name": "class AddGlobalCinematicStageTemplate*", "bases": [ + "CinematicStageTemplate", "PropertyClass" ], - "hash": 851464473, + "hash": 108638982, "properties": { "m_name": { "type": "std::string", @@ -613825,8 +562969,8 @@ "pointer": false, "hash": 1717359772 }, - "m_questNameID": { - "type": "unsigned int", + "m_duration": { + "type": "float", "id": 1, "offset": 104, "flags": 7, @@ -613834,126 +562978,1015 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 1530354349 + "hash": 920323453 }, - "m_title": { - "type": "std::string", + "m_actions": { + "type": "class SharedPointer", "id": 2, "offset": 112, "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1380578687 + }, + "m_stageRelationships": { + "type": "class SharedPointer", + "id": 3, + "offset": 128, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 499983354 + }, + "m_global": { + "type": "std::string", + "id": 4, + "offset": 152, + "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2308614141 + "hash": 1979851564 }, - "m_id": { - "type": "gid", + "m_sound": { + "type": "std::string", + "id": 5, + "offset": 184, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2307644996 + } + } + }, + "108720390": { + "name": "class GardenSpellTemplate", + "bases": [ + "SpellTemplate", + "CoreTemplate", + "PropertyClass" + ], + "hash": 108720390, + "properties": { + "m_behaviors": { + "type": "class BehaviorTemplate*", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1197808594 + }, + "m_name": { + "type": "std::string", + "id": 1, + "offset": 96, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1717359772 + }, + "m_description": { + "type": "std::string", + "id": 2, + "offset": 168, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1649374815 + }, + "m_advancedDescription": { + "type": "std::string", "id": 3, + "offset": 200, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3465713013 + }, + "m_displayName": { + "type": "std::string", + "id": 4, + "offset": 136, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2446900370 + }, + "m_spellBase": { + "type": "std::string", + "id": 5, + "offset": 248, + "flags": 268435463, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2688054198, + "enum_options": { + "__BASECLASS": "CinematicTemplate" + } + }, + "m_effects": { + "type": "class SharedPointer", + "id": 6, + "offset": 280, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 370726379 + }, + "m_sMagicSchoolName": { + "type": "std::string", + "id": 7, + "offset": 312, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2035693400 + }, + "m_sTypeName": { + "type": "std::string", + "id": 8, + "offset": 352, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3580785905 + }, + "m_trainingCost": { + "type": "int", + "id": 9, + "offset": 384, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 982588239 + }, + "m_accuracy": { + "type": "int", + "id": 10, + "offset": 388, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1636315493 + }, + "m_baseCost": { + "type": "int", + "id": 11, "offset": 232, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2090569797 + "hash": 1475151502 }, - "m_type": { + "m_creditsCost": { "type": "int", - "id": 4, - "offset": 224, + "id": 12, + "offset": 236, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 219902012 + "hash": 715313825 }, - "m_level": { + "m_pvpCurrencyCost": { "type": "int", - "id": 5, - "offset": 228, + "id": 13, + "offset": 240, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 801285362 + "hash": 645595444 }, - "m_mainline": { + "m_pvpTourneyCurrencyCost": { + "type": "int", + "id": 14, + "offset": 244, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 517874954 + }, + "m_boosterPackIcon": { + "type": "std::string", + "id": 15, + "offset": 496, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3428653697 + }, + "m_validTargetSpells": { + "type": "unsigned int", + "id": 16, + "offset": 392, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2355782967 + }, + "m_PvP": { "type": "bool", - "id": 6, - "offset": 241, + "id": 17, + "offset": 408, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1749856224 + "hash": 269492361 }, - "m_readyToTurnIn": { + "m_PvE": { "type": "bool", - "id": 7, - "offset": 242, + "id": 18, + "offset": 409, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 562395883 + "hash": 269492350 }, - "m_activityType": { - "type": "enum QuestTemplate::ActivityType", - "id": 8, - "offset": 244, + "m_noPvPEnchant": { + "type": "bool", + "id": 19, + "offset": 410, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 661581703 + }, + "m_noPvEEnchant": { + "type": "bool", + "id": 20, + "offset": 411, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 10144220 + }, + "m_battlegroundsOnly": { + "type": "bool", + "id": 21, + "offset": 412, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1244782419 + }, + "m_Treasure": { + "type": "bool", + "id": 22, + "offset": 413, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1749096414 + }, + "m_noDiscard": { + "type": "bool", + "id": 23, + "offset": 414, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 565749226 + }, + "m_leavesPlayWhenCast": { + "type": "bool", + "id": 24, + "offset": 532, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 698216294 + }, + "m_imageIndex": { + "type": "int", + "id": 25, + "offset": 416, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1570500405 + }, + "m_imageName": { + "type": "std::string", + "id": 26, + "offset": 424, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2391520543 + }, + "m_cloaked": { + "type": "bool", + "id": 27, + "offset": 489, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 7349510 + }, + "m_casterInvisible": { + "type": "bool", + "id": 28, + "offset": 490, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 310214650 + }, + "m_adjectives": { + "type": "std::string", + "id": 29, + "offset": 576, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2967855037 + }, + "m_spellSourceType": { + "type": "enum SpellTemplate::kSpellSourceType", + "id": 30, + "offset": 528, "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 231656390, + "hash": 156272727, "enum_options": { - "QuestTemplate::ACTIVITY_NotActivity": 0, - "QuestTemplate::ACTIVITY_Spell": 1, - "QuestTemplate::ACTIVITY_Crafting": 2, - "QuestTemplate::ACTIVITY_Fishing": 3, - "QuestTemplate::ACTIVITY_Gardening": 4, - "QuestTemplate::ACTIVITY_Pet": 5 + "kCaster": 0, + "kPet": 1, + "kShadowCreature": 2, + "kWeapon": 3, + "kEquipment": 4 } }, - "m_skipQHAutoSelect": { + "m_cloakedName": { + "type": "std::string", + "id": 31, + "offset": 536, + "flags": 268435463, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2846679215, + "enum_options": { + "__BASECLASS": "SpellTemplate" + } + }, + "m_purchaseRequirements": { + "type": "class RequirementList*", + "id": 32, + "offset": 608, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3174641793 + }, + "m_displayRequirements": { + "type": "class RequirementList*", + "id": 33, + "offset": 840, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3646782876 + }, + "m_descriptionTrainer": { + "type": "std::string", + "id": 34, + "offset": 616, + "flags": 8388871, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1756093908 + }, + "m_descriptionCombatHUD": { + "type": "std::string", + "id": 35, + "offset": 648, + "flags": 8388871, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1631478006 + }, + "m_displayIndex": { + "type": "int", + "id": 36, + "offset": 680, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1250551048 + }, + "m_hiddenFromEffectsWindow": { "type": "bool", - "id": 9, - "offset": 248, + "id": 37, + "offset": 684, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1832736331 + }, + "m_ignoreCharms": { + "type": "bool", + "id": 38, + "offset": 685, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1840075893 + }, + "m_alwaysFizzle": { + "type": "bool", + "id": 39, + "offset": 686, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2030988856 + }, + "m_spellCategory": { + "type": "std::string", + "id": 40, + "offset": 688, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2472376729 + }, + "m_showPolymorphedName": { + "type": "bool", + "id": 41, + "offset": 720, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2097929096 + }, + "m_skipTruncation": { + "type": "bool", + "id": 42, + "offset": 721, + "flags": 263, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1838335249 + }, + "m_maxCopies": { + "type": "unsigned int", + "id": 43, + "offset": 724, + "flags": 263, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 403022326 + }, + "m_levelRestriction": { + "type": "int", + "id": 44, + "offset": 728, + "flags": 263, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 176502472 + }, + "m_delayEnchantment": { + "type": "bool", + "id": 45, + "offset": 732, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 191336919 + }, + "m_delayEnchantmentOrder": { + "type": "enum SpellEffect::kDelayOrder", + "id": 46, + "offset": 736, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2526055263, + "enum_options": { + "SpellEffect::kAnyOrder": 0, + "SpellEffect::kFirst": 1, + "SpellEffect::kSecond": 2 + } + }, + "m_previousSpellName": { + "type": "std::string", + "id": 47, + "offset": 744, + "flags": 268435463, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2903322585, + "enum_options": { + "__BASECLASS": "SpellTemplate" + } + }, + "m_cardFront": { + "type": "std::string", + "id": 48, + "offset": 456, + "flags": 131359, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3557598526 + }, + "m_useGloss": { + "type": "bool", + "id": 49, + "offset": 488, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 668817544 + }, + "m_ignoreDispel": { + "type": "bool", + "id": 50, + "offset": 776, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1881041624 + }, + "m_backRowFriendly": { + "type": "bool", + "id": 51, + "offset": 777, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 501584377 + }, + "m_spellRank": { + "type": "class SharedPointer", + "id": 52, + "offset": 784, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3152361374 + }, + "m_secondarySchoolName": { + "type": "std::string", + "id": 53, + "offset": 800, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1803268236 + }, + "m_spellFusion": { + "type": "unsigned int", + "id": 54, + "offset": 836, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1658928321 + }, + "m_requiredSchoolName": { + "type": "std::string", + "id": 55, + "offset": 848, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3576058981 + }, + "m_gardenSpellType": { + "type": "enum GardenSpellTemplate::GardenSpellType", + "id": 56, + "offset": 880, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3204656351, + "enum_options": { + "GS_SoilPreparation": 0, + "GS_Growing": 1, + "GS_InsectFighting": 2, + "GS_PlantProtection": 3, + "GS_PlantUtility": 4 + } + }, + "m_animationKFM": { + "type": "std::string", + "id": 57, + "offset": 888, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2466280761 + }, + "m_animationName": { + "type": "std::string", + "id": 58, + "offset": 920, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3393414044 + }, + "m_soundEffectName": { + "type": "std::string", + "id": 59, + "offset": 1016, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3235436082 + }, + "m_soilTemplateID": { + "type": "unsigned int", + "id": 60, + "offset": 1048, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2225235405 + }, + "m_providesWater": { + "type": "bool", + "id": 61, + "offset": 1052, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1403713858 + }, + "m_providesSun": { + "type": "bool", + "id": 62, + "offset": 1053, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1942306581 + }, + "m_providesPollination": { + "type": "bool", + "id": 63, + "offset": 1054, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 443775752 + }, + "m_providesMagic": { + "type": "bool", + "id": 64, + "offset": 1055, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1391840608 + }, + "m_providesMusic": { + "type": "bool", + "id": 65, + "offset": 1056, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1392572416 + }, + "m_bugZapLevel": { + "type": "int", + "id": 66, + "offset": 1060, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1811340955 + }, + "m_protectionTemplateID": { + "type": "unsigned int", + "id": 67, + "offset": 1064, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 280411517 + }, + "m_soundEffectGain": { + "type": "float", + "id": 68, + "offset": 1068, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1827685932, + "enum_options": { + "__DEFAULT": "1.0" + } + }, + "m_utilitySpellType": { + "type": "enum GardenSpellTemplate::UtilitySpellType", + "id": 69, + "offset": 1072, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1635978289, + "enum_options": { + "US_None": 0, + "US_Zap": 1, + "US_Revive": 2, + "US_Inspect": 3, + "US_Stasis": 4, + "US_PlowAll": 5, + "US_PlantAll": 6, + "US_HarvestNow": 7 + } + }, + "m_affectedRadius": { + "type": "int", + "id": 70, + "offset": 1076, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 540739476 + }, + "m_yOffset": { + "type": "float", + "id": 71, + "offset": 1080, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1592149751 + }, + "m_energyCost": { + "type": "int", + "id": 72, + "offset": 1084, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1236111677 + }, + "m_gardenSpellImageIndex": { + "type": "int", + "id": 73, + "offset": 1088, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 721561158 + }, + "m_gardenSpellImageName": { + "type": "std::string", + "id": 74, + "offset": 1096, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3146698256 + }, + "m_animationNameSmall": { + "type": "std::string", + "id": 75, + "offset": 952, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2904009973 + }, + "m_animationNameLarge": { + "type": "std::string", + "id": 76, + "offset": 984, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2895295623 + } + } + }, + "110620563": { + "name": "enum ClosePermanentShopReason", + "bases": [], + "hash": 110620563, + "properties": {} + }, + "113208679": { + "name": "class AddAuraCinematicAction", + "bases": [ + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 113208679, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2024815836 + "hash": 2285866132 }, - "m_goalList": { - "type": "class SharedPointer", - "id": 10, - "offset": 256, + "m_effect": { + "type": "std::string", + "id": 2, + "offset": 120, "flags": 7, - "container": "List", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 748820753 + "pointer": false, + "hash": 1894145160 } } }, - "459963650": { - "name": "class ObjectLocation*", + "120308658": { + "name": "class ClientRegisterActorCinematicAction", "bases": [ + "RegisterActorCinematicAction", + "ActorCinematicAction", + "CinematicAction", "PropertyClass" ], - "hash": 459963650, + "hash": 120308658, "properties": { - "m_templateID": { - "type": "unsigned int", + "m_timeOffset": { + "type": "float", "id": 0, "offset": 72, "flags": 7, @@ -613961,9 +563994,9 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 1286746870 + "hash": 2237098605 }, - "m_zoneDisplayName": { + "m_actor": { "type": "std::string", "id": 1, "offset": 80, @@ -613972,39 +564005,62 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 1962339438 + "hash": 2285866132 }, - "m_worldName": { + "m_zoneTag": { "type": "std::string", "id": 2, - "offset": 112, + "offset": 120, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1846757476 + "hash": 3405382643 }, - "m_eventName": { - "type": "std::string", + "m_bStartHidden": { + "type": "bool", "id": 3, - "offset": 144, + "offset": 152, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3493260286 + "hash": 1939845615 } } }, - "851672950": { - "name": "class BlueArenaItemsOption*", + "117675092": { + "name": "class ObstacleCourseModifyTimeBehavior", + "bases": [ + "ObstacleCourseObstaclePathBase", + "ObstacleCourseObstacleBehavior", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 117675092, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + } + } + }, + "115057682": { + "name": "class SharedPointer", "bases": [ "ServiceOptionBase", "PropertyClass" ], - "hash": 851672950, + "hash": 115057682, "properties": { "m_serviceName": { "type": "std::string", @@ -614063,31 +564119,14 @@ } } }, - "460467022": { - "name": "struct std::pair,class std::allocator >,unsigned int>", - "bases": [], - "hash": 460467022, - "properties": {} - }, - "852084037": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 852084037, - "properties": {} - }, - "460684575": { - "name": "class ClientChangeActorStateCinematicAction", + "977662948": { + "name": "class ShoppingSellModifiers", "bases": [ - "ChangeActorStateCinematicAction", - "ActorCinematicAction", - "CinematicAction", "PropertyClass" ], - "hash": 460684575, + "hash": 977662948, "properties": { - "m_timeOffset": { + "m_sellMultiplier": { "type": "float", "id": 0, "offset": 72, @@ -614096,42 +564135,92 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 + "hash": 1673304590 }, - "m_actor": { - "type": "std::string", + "m_sellAdditive": { + "type": "int", "id": 1, - "offset": 80, + "offset": 76, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2285866132 - }, - "m_newState": { - "type": "std::string", - "id": 2, - "offset": 120, - "flags": 7, + "hash": 776461780 + } + } + }, + "956204846": { + "name": "class JewelSocketUnlockCostList*", + "bases": [ + "PropertyClass" + ], + "hash": 956204846, + "properties": { + "m_jewelSocketUnlockList": { + "type": "class JewelSocketUnlockCost", + "id": 0, + "offset": 72, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2753944903 + } + } + }, + "1361134829": { + "name": "class MailList*", + "bases": [ + "PropertyClass" + ], + "hash": 1361134829, + "properties": { + "m_messages": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1129442288 + } + } + }, + "511167612": { + "name": "class SharedPointer", + "bases": [ + "ObstacleCourseObstacleBehavior", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 511167612, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2153420230 + "hash": 223437287 } } }, - "914607657": { - "name": "class SharedPointer", + "1796403913": { + "name": "class DynamicSigilSubcircle*", "bases": [ - "ServiceOptionBase", "PropertyClass" ], - "hash": 914607657, + "hash": 1796403913, "properties": { - "m_serviceName": { - "type": "std::string", + "m_id": { + "type": "int", "id": 0, "offset": 72, "flags": 31, @@ -614139,128 +564228,300 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 2206028813 + "hash": 2090586215 }, - "m_iconKey": { - "type": "std::string", + "m_teamIndex": { + "type": "int", "id": 1, - "offset": 168, + "offset": 76, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2457138637 + "hash": 1621537177 }, - "m_displayKey": { - "type": "std::string", + "m_rotation": { + "type": "float", "id": 2, - "offset": 104, + "offset": 80, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3023276954 + "hash": 1497468551 }, - "m_serviceIndex": { - "type": "unsigned int", + "m_radius": { + "type": "float", "id": 3, - "offset": 204, + "offset": 84, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2103126710 + "hash": 989410271 }, - "m_forceInteract": { - "type": "bool", + "m_locationPreference": { + "type": "std::string", "id": 4, - "offset": 200, + "offset": 88, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1705789564 + "hash": 2817699507 + }, + "m_symbol": { + "type": "enum DynamicSigilSymbol", + "id": 5, + "offset": 120, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1055639026, + "enum_options": { + "NotSet": 0, + "Dagger": 1, + "Key": 2, + "Gem": 3, + "Spiral": 4, + "Book": 5, + "Chalice": 6, + "Wand": 7, + "Potion": 8, + "Sun": 9, + "Eye": 10, + "Star": 11, + "Moon": 12 + } } } }, - "893740735": { - "name": "class ArenaItemsOption*", + "950515264": { + "name": "class SharedPointer", "bases": [ - "ServiceOptionBase", + "ActorCinematicAction", + "CinematicAction", "PropertyClass" ], - "hash": 893740735, + "hash": 950515264, "properties": { - "m_serviceName": { - "type": "std::string", + "m_timeOffset": { + "type": "float", "id": 0, "offset": 72, - "flags": 31, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2206028813 + "hash": 2237098605 }, - "m_iconKey": { + "m_actor": { "type": "std::string", "id": 1, - "offset": 168, - "flags": 31, + "offset": 80, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2457138637 + "hash": 2285866132 + } + } + }, + "1358892158": { + "name": "class SharedPointer", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1358892158, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + } + } + }, + "1795886179": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1795886179, + "properties": { + "m_defaultRatingsTable": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2295782328 }, - "m_displayKey": { + "m_perLeagueRatingsTables": { + "type": "class SharedPointer", + "id": 1, + "offset": 88, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2644292192 + } + } + }, + "948854326": { + "name": "class FadeActorCinematicAction*", + "bases": [ + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 948854326, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + }, + "m_fadeDuration": { + "type": "float", "id": 2, - "offset": 104, - "flags": 31, + "offset": 120, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3023276954 + "hash": 1402536557 }, - "m_serviceIndex": { - "type": "unsigned int", + "m_alphaTarget": { + "type": "float", "id": 3, - "offset": 204, + "offset": 124, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 197622500 + } + } + }, + "1358137158": { + "name": "class MagicSchoolInfo", + "bases": [ + "PropertyClass" + ], + "hash": 1358137158, + "properties": { + "m_schoolName": { + "type": "std::string", + "id": 0, + "offset": 72, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2103126710 + "hash": 3385349572 + } + } + }, + "513011409": { + "name": "class WhirlyBurlyGameList", + "bases": [ + "PropertyClass" + ], + "hash": 513011409, + "properties": { + "m_whirlyBurlyGameList": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1597138179 + } + } + }, + "1793446538": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1793446538, + "properties": { + "m_resultList": { + "type": "class CombatResult", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2128076658 }, - "m_forceInteract": { - "type": "bool", - "id": 4, - "offset": 200, - "flags": 31, + "m_duelID.m_full": { + "type": "unsigned __int64", + "id": 1, + "offset": 88, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1705789564 + "hash": 1024980477 } } }, - "462211931": { - "name": "class SharedPointer", + "947642643": { + "name": "class MassShapeTemplate*", "bases": [ "PropertyClass" ], - "hash": 462211931, + "hash": 947642643, "properties": { - "m_goalCount": { - "type": "int", + "m_fCenterOfMassX": { + "type": "float", "id": 0, "offset": 72, "flags": 7, @@ -614268,10 +564529,10 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 774266758 + "hash": 1084414079 }, - "m_projectID": { - "type": "unsigned int", + "m_fCenterOfMassY": { + "type": "float", "id": 1, "offset": 76, "flags": 7, @@ -614279,85 +564540,136 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 1263221425 + "hash": 1084414080 }, - "m_displayMultiplier": { - "type": "int", + "m_fCenterOfMassZ": { + "type": "float", "id": 2, - "offset": 96, + "offset": 80, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 239852119 + "hash": 1084414081 }, - "m_endTime": { - "type": "unsigned int", + "m_MassShape": { + "type": "enum MassShapeTemplate::MassShape", "id": 3, - "offset": 100, - "flags": 7, + "offset": 84, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 716479635 + "hash": 2243789942, + "enum_options": { + "__DEFAULT": "MS_SPHERE", + "MS_SPHERE": 0, + "MS_CYLINDER": 1, + "MS_TUBE": 2, + "MS_BOX": 3, + "MS_MESH": 4 + } }, - "m_currentDay": { - "type": "unsigned int", + "m_fRadiusMeters": { + "type": "float", "id": 4, - "offset": 104, + "offset": 88, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2006571726 + "hash": 459620885, + "enum_options": { + "__DEFAULT": "1.0" + } }, - "m_multiplier": { + "m_CylinderDirection": { "type": "int", "id": 5, - "offset": 108, + "offset": 92, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 759714273 + "hash": 1961650261, + "enum_options": { + "__DEFAULT": 1, + "CD_X": 1, + "CD_Y": 2, + "CD_Z": 3 + } }, - "m_isEnding": { - "type": "bool", + "m_fLength": { + "type": "float", "id": 6, - "offset": 112, + "offset": 96, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1289717828 + "hash": 558261279, + "enum_options": { + "__DEFAULT": "1.0" + } }, - "m_parameter": { - "type": "std::string", + "m_fWidth": { + "type": "float", "id": 7, - "offset": 120, + "offset": 100, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3122239292 + "hash": 508100541, + "enum_options": { + "__DEFAULT": "1.0" + } + }, + "m_fHeight": { + "type": "float", + "id": 8, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 401539638, + "enum_options": { + "__DEFAULT": "1.0" + } + }, + "m_fMassKilograms": { + "type": "float", + "id": 9, + "offset": 108, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1502844666, + "enum_options": { + "__DEFAULT": "1.0" + } } } }, - "881749909": { - "name": "class PrivateSocketJewelPair*", + "1357944479": { + "name": "class SharedPointer", "bases": [ "PropertyClass" ], - "hash": 881749909, + "hash": 1357944479, "properties": { - "m_socketNumber": { - "type": "unsigned int", + "m_name": { + "type": "std::string", "id": 0, "offset": 72, "flags": 7, @@ -614365,29 +564677,115 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 772707167 + "hash": 1717359772 }, - "m_jewelID": { - "type": "gid", + "m_blockInteraction": { + "type": "std::string", "id": 1, - "offset": 80, + "offset": 104, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 190876604 + "hash": 1884044102 + }, + "m_blockTypeDestroyed": { + "type": "std::string", + "id": 2, + "offset": 136, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3388691227 + }, + "m_ballGraphic": { + "type": "std::string", + "id": 3, + "offset": 200, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2352594772 + }, + "m_impactGraphic": { + "type": "std::string", + "id": 4, + "offset": 232, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3208005463 + }, + "m_powerComboMultipliers": { + "type": "class SharedPointer", + "id": 5, + "offset": 328, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1957941557 + }, + "m_impactSound": { + "type": "std::string", + "id": 6, + "offset": 264, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2087348962 + }, + "m_selectSound": { + "type": "std::string", + "id": 7, + "offset": 296, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1892320740 } } }, - "461650270": { - "name": "class GoldLootInfo", + "1793116337": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1793116337, + "properties": { + "m_worldList": { + "type": "unsigned int", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 560397361 + } + } + }, + "946447363": { + "name": "class GardeningXPLootInfo*", "bases": [ "LootInfo", "LootInfoBase", "PropertyClass" ], - "hash": 461650270, + "hash": 946447363, "properties": { "m_lootType": { "type": "enum LootInfo::LOOT_TYPE", @@ -614432,7 +564830,7 @@ "LOOT_TYPE_FURNITURE_ESSENCE": 30 } }, - "m_goldAmount": { + "m_experience": { "type": "int", "id": 1, "offset": 80, @@ -614441,1821 +564839,1722 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 754429876 + "hash": 759357570 } } }, - "869586797": { - "name": "class SharedPointer", + "946187001": { + "name": "class SharedPointer", "bases": [ "PropertyClass" ], - "hash": 869586797, + "hash": 946187001, "properties": { - "m_iconFilename": { - "type": "std::string", + "m_percentChance": { + "type": "float", "id": 0, "offset": 72, - "flags": 31, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3103016389 + "hash": 475863658 }, - "m_templateID": { - "type": "gid", + "m_descriptor": { + "type": "std::string", "id": 1, - "offset": 104, - "flags": 31, + "offset": 80, + "flags": 8388615, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1075328001 - } - } - }, - "860092483": { - "name": "class ClientAnnounceSpellTextCinematicAction", - "bases": [ - "AnnounceSpellTextCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 860092483, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, + "hash": 2283284954 + }, + "m_descriptor2": { + "type": "std::string", + "id": 2, + "offset": 112, + "flags": 8388615, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 + "hash": 1649381388 }, - "m_spellText": { - "type": "std::string", - "id": 1, - "offset": 80, + "m_count": { + "type": "int", + "id": 3, + "offset": 144, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2688705600 + "hash": 790970659 + }, + "m_tallyResults": { + "type": "class ResultList*", + "id": 4, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2143999904 } } }, - "856535128": { - "name": "class ClientRemoveBacklashEffectCinematicAciton*", + "513782636": { + "name": "class CompassSystem*", "bases": [ - "RemoveBacklashEffectCinematicAction", - "ActorCinematicAction", - "CinematicAction", "PropertyClass" ], - "hash": 856535128, + "hash": 513782636, "properties": { - "m_timeOffset": { - "type": "float", + "m_markers": { + "type": "class CompassMarker", "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, "offset": 80, "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, + "container": "List", + "dynamic": true, + "singleton": true, "pointer": false, - "hash": 2285866132 + "hash": 3408067289 } } }, - "462917554": { - "name": "class std::list >", - "bases": [], - "hash": 462917554, - "properties": {} - }, - "854050259": { - "name": "class SharedPointer", + "1358140230": { + "name": "class MagicSchoolInfo*", "bases": [ - "ActorCinematicAction", - "CinematicAction", "PropertyClass" ], - "hash": 854050259, + "hash": 1358140230, "properties": { - "m_timeOffset": { - "type": "float", + "m_schoolName": { + "type": "std::string", "id": 0, "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - }, - "m_effect": { - "type": "std::string", - "id": 2, - "offset": 120, - "flags": 7, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1894145160 + "hash": 3385349572 } } }, - "853452777": { - "name": "class SpellRank", + "513241372": { + "name": "class SharedPointer", "bases": [ + "PetBoostPlayerStatEffect", + "WizStatisticEffect", + "StatisticEffect", + "GameEffectBase", "PropertyClass" ], - "hash": 853452777, + "hash": 513241372, "properties": { - "m_spellRank": { - "type": "unsigned char", + "m_currentTickCount": { + "type": "double", "id": 0, "offset": 80, - "flags": 7, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1828528860 + "hash": 2533274692 }, - "m_balancePips": { - "type": "unsigned char", + "m_effectNameID": { + "type": "unsigned int", "id": 1, - "offset": 81, - "flags": 7, + "offset": 96, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1232748146 + "hash": 1204067144 }, - "m_deathPips": { - "type": "unsigned char", + "m_bIsOnPet": { + "type": "bool", "id": 2, - "offset": 82, - "flags": 7, + "offset": 73, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1364547506 + "hash": 522593303 }, - "m_firePips": { - "type": "unsigned char", + "m_originatorID": { + "type": "gid", "id": 3, - "offset": 83, - "flags": 7, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2490965330 + "hash": 1131810019 }, - "m_icePips": { - "type": "unsigned char", + "m_itemSlotID": { + "type": "unsigned int", "id": 4, - "offset": 84, - "flags": 7, + "offset": 112, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1584134173 + "hash": 1895747595 }, - "m_lifePips": { - "type": "unsigned char", + "m_internalID": { + "type": "int", "id": 5, - "offset": 85, - "flags": 7, + "offset": 92, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2181444364 + "hash": 1643137924 }, - "m_mythPips": { - "type": "unsigned char", + "m_endTime": { + "type": "unsigned int", "id": 6, - "offset": 86, - "flags": 7, + "offset": 88, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1590318670 + "hash": 716479635 }, - "m_stormPips": { - "type": "unsigned char", + "m_lookupIndex": { + "type": "int", "id": 7, - "offset": 87, - "flags": 7, + "offset": 128, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 769321921 + "hash": 1626623948 }, - "m_shadowPips": { - "type": "unsigned char", + "m_damageBonusPercent": { + "type": "float", "id": 8, - "offset": 88, - "flags": 7, + "offset": 136, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2569883346 + "hash": 623230606 }, - "m_xPipSpell": { - "type": "bool", + "m_damageBonusFlat": { + "type": "float", "id": 9, - "offset": 90, - "flags": 7, + "offset": 180, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1088376340 - } - } - }, - "853170524": { - "name": "class ObstacleCourseSpringboardBehaviorClient*", - "bases": [ - "ObstacleCourseSpringboardBehavior", - "ObstacleCourseObstacleBehavior", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 853170524, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, + "hash": 2212039108 + }, + "m_accuracyBonusPercent": { + "type": "float", + "id": 10, + "offset": 140, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 - } - } - }, - "465628675": { - "name": "class ResPrepaidTime", - "bases": [ - "ResultSourceType", - "Result", - "PropertyClass" - ], - "hash": 465628675, - "properties": { - "m_sourceType": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 7, + "hash": 1972336538 + }, + "m_armorPiercingBonusPercent": { + "type": "float", + "id": 11, + "offset": 144, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2305508654 + "hash": 1569912641 }, - "m_zoneLevelMax": { - "type": "unsigned int", - "id": 1, - "offset": 76, - "flags": 263, + "m_damageReducePercent": { + "type": "float", + "id": 12, + "offset": 148, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1028933895 + "hash": 541736927 }, - "m_zoneLevelMin": { - "type": "unsigned int", - "id": 2, - "offset": 72, - "flags": 263, + "m_damageReduceFlat": { + "type": "float", + "id": 13, + "offset": 152, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1028934149 - } - } - }, - "853170504": { - "name": "class ObstacleCourseSpringboardBehaviorClient", - "bases": [ - "ObstacleCourseSpringboardBehavior", - "ObstacleCourseObstacleBehavior", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 853170504, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, + "hash": 684172469 + }, + "m_accuracyReducePercent": { + "type": "float", + "id": 14, + "offset": 156, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 - } - } - }, - "464509749": { - "name": "class SpellListControl", - "bases": [ - "Window", - "PropertyClass" - ], - "hash": 464509749, - "properties": { - "m_sName": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 135, + "hash": 2112559723 + }, + "m_healBonusPercent": { + "type": "float", + "id": 15, + "offset": 160, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2306437263 + "hash": 562313577 }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, + "m_healIncBonusPercent": { + "type": "float", + "id": 16, + "offset": 164, + "flags": 63, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2621225959 + "pointer": false, + "hash": 2182535587 }, - "m_Style": { - "type": "unsigned int", - "id": 2, - "offset": 152, - "flags": 1048583, + "m_hitPointBonus": { + "type": "float", + "id": 17, + "offset": 204, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152, - "SLC_NUMBERS": 16777216 - } + "hash": 880644461 }, - "m_Flags": { - "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 1048583, + "m_spellChargeBonus": { + "type": "int", + "id": 18, + "offset": 212, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } + "hash": 2019610507 }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, - "flags": 135, + "m_powerPipBonusPercent": { + "type": "float", + "id": 19, + "offset": 168, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3105139380 + "hash": 1671446341 }, - "m_fTargetAlpha": { + "m_petActChance": { + "type": "int", + "id": 20, + "offset": 200, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 237418461 + }, + "m_manaBonus": { "type": "float", - "id": 5, - "offset": 212, - "flags": 135, + "id": 21, + "offset": 208, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1809129834 + "hash": 1372708603 }, - "m_fDisabledAlpha": { + "m_expPercent": { "type": "float", - "id": 6, + "id": 22, + "offset": 184, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1147850677 + }, + "m_goldPercent": { + "type": "float", + "id": 23, + "offset": 188, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1095720878 + }, + "m_energyBonus": { + "type": "float", + "id": 24, "offset": 216, - "flags": 135, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1389987675 + "hash": 2223158984 }, - "m_fAlpha": { + "m_criticalHitRating": { "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, + "id": 25, + "offset": 220, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 482130755 + "hash": 1978690540 }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, + "m_blockRating": { + "type": "float", + "id": 26, + "offset": 224, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2088486759 + }, + "m_accuracyRating": { + "type": "float", + "id": 27, + "offset": 228, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 165525575 + }, + "m_powerPipRating": { + "type": "float", + "id": 28, "offset": 232, - "flags": 135, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3623628394 + "pointer": false, + "hash": 1355340722 }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, + "m_damageResistanceRating": { + "type": "float", + "id": 29, + "offset": 240, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1961377740 + }, + "m_archmastery": { + "type": "float", + "id": 30, + "offset": 244, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1963579610 + }, + "m_archmasteryBonusPercent": { + "type": "float", + "id": 31, + "offset": 288, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1908627154 + }, + "m_balanceMastery": { + "type": "int", + "id": 32, "offset": 248, - "flags": 4194439, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2102211316 + "hash": 149062181 }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, + "m_deathMastery": { + "type": "int", + "id": 33, + "offset": 252, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1846695875 + "hash": 1421218661 }, - "m_Offset": { - "type": "class Point", - "id": 11, + "m_fireMastery": { + "type": "int", + "id": 34, + "offset": 256, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1431794949 + }, + "m_iceMastery": { + "type": "int", + "id": 35, + "offset": 260, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 704864240 + }, + "m_lifeMastery": { + "type": "int", + "id": 36, + "offset": 264, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2142136447 + }, + "m_mythMastery": { + "type": "int", + "id": 37, + "offset": 268, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1766317185 + }, + "m_stormMastery": { + "type": "int", + "id": 38, + "offset": 272, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1883988244 + }, + "m_stunResistancePercent": { + "type": "float", + "id": 39, + "offset": 276, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1868382627 + }, + "m_fishingLuckBonusPercent": { + "type": "float", + "id": 40, "offset": 192, - "flags": 135, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3389835433 + "hash": 1363349254 }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, + "m_shadowPipBonusPercent": { + "type": "float", + "id": 41, + "offset": 172, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2547159940 + "hash": 1426533310 }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, + "m_wispBonusPercent": { + "type": "float", + "id": 42, + "offset": 196, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1513510520 + "hash": 1304386546 }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, + "m_pipConversionRating": { + "type": "float", + "id": 43, + "offset": 280, + "flags": 63, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 2587533771 + "hash": 246855691 }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, + "m_shadowPipRating": { + "type": "float", + "id": 44, + "offset": 236, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3091503757 + "hash": 507126123 }, - "m_cardSize": { - "type": "class Size", - "id": 16, - "offset": 716, - "flags": 7, + "m_petID": { + "type": "gid", + "id": 45, + "offset": 304, + "flags": 24, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1135567057 + "hash": 806009486 }, - "m_spacing": { - "type": "class Point", - "id": 17, - "offset": 724, - "flags": 7, + "m_primaryStat1": { + "type": "std::string", + "id": 46, + "offset": 312, + "flags": 24, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3187881255 + "hash": 2417808140 }, - "m_holes": { - "type": "class Rect", - "id": 18, - "offset": 696, - "flags": 7, - "container": "List", - "dynamic": true, + "m_primaryStat2": { + "type": "std::string", + "id": 47, + "offset": 344, + "flags": 24, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 1902151287 + "hash": 2417808141 + }, + "m_secondaryStat": { + "type": "std::string", + "id": 48, + "offset": 376, + "flags": 24, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3564684959 + }, + "m_secondaryValue": { + "type": "float", + "id": 49, + "offset": 408, + "flags": 24, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1728780796 } } }, - "464345909": { - "name": "class SpellListControl*", + "1793980913": { + "name": "class InfractionPenalty", "bases": [ - "Window", "PropertyClass" ], - "hash": 464345909, + "hash": 1793980913, "properties": { - "m_sName": { - "type": "std::string", + "m_internalID": { + "type": "unsigned int", "id": 0, - "offset": 80, - "flags": 135, + "offset": 72, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2306437263 + "hash": 1854540375 }, - "m_Children": { - "type": "class SharedPointer", + "m_categoryID": { + "type": "unsigned int", "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, + "offset": 76, + "flags": 31, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2621225959 + "pointer": false, + "hash": 1382795736 }, - "m_Style": { - "type": "unsigned int", + "m_removeAtPointValue": { + "type": "float", "id": 2, - "offset": 152, - "flags": 1048583, + "offset": 80, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152, - "SLC_NUMBERS": 16777216 - } + "hash": 2112196961 }, - "m_Flags": { + "m_expireTime": { "type": "unsigned int", "id": 3, - "offset": 156, - "flags": 1048583, + "offset": 84, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 967851578, + "hash": 1836304873 + } + } + }, + "1793816502": { + "name": "class SharedPointer", + "bases": [ + "Requirement", + "PropertyClass" + ], + "hash": 1793816502, + "properties": { + "m_applyNOT": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1746328074, "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 + "__DEFAULT": 0 } }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, - "flags": 135, + "m_operator": { + "type": "enum Requirement::Operator", + "id": 1, + "offset": 76, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3105139380 + "hash": 2672792317, + "enum_options": { + "ROP_AND": 0, + "ROP_OR": 1, + "__DEFAULT": "ROP_AND" + } }, - "m_fTargetAlpha": { - "type": "float", - "id": 5, - "offset": 212, - "flags": 135, + "m_magicSchool": { + "type": "std::string", + "id": 2, + "offset": 80, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1809129834 + "hash": 1597012900 + } + } + }, + "946857712": { + "name": "class ClientAlchemyBehavior*", + "bases": [ + "AlchemyBehavior", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 946857712, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 }, - "m_fDisabledAlpha": { - "type": "float", - "id": 6, - "offset": 216, - "flags": 135, + "m_recipeBag": { + "type": "class RecipeBag", + "id": 1, + "offset": 112, + "flags": 27, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1389987675 + "hash": 2218166892 }, - "m_fAlpha": { - "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, + "m_craftingSlotsBag": { + "type": "class ObjectBag", + "id": 2, + "offset": 320, + "flags": 27, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 482130755 + "hash": 2324986502 }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, + "m_reagentBag": { + "type": "class ObjectBag", + "id": 3, + "offset": 512, + "flags": 27, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3623628394 + "pointer": false, + "hash": 2459563753 }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, + "m_bonusCrafting": { + "type": "int", + "id": 4, + "offset": 704, + "flags": 59, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2102211316 + "hash": 943921711 }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, + "m_timerMultiplier": { + "type": "float", + "id": 5, + "offset": 708, + "flags": 27, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1846695875 + "hash": 1373659455 }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, + "m_maxReagentStack": { + "type": "int", + "id": 6, + "offset": 712, + "flags": 27, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3389835433 + "hash": 1121296540 }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, + "m_equippedRecipes": { + "type": "unsigned int", + "id": 7, + "offset": 720, + "flags": 27, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1981226997 + }, + "m_equippedRecipeData": { + "type": "std::string", + "id": 8, + "offset": 736, + "flags": 551, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2547159940 + "hash": 2773803466 + } + } + }, + "946856944": { + "name": "class ClientAlchemyBehavior", + "bases": [ + "AlchemyBehavior", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 946856944, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, + "m_recipeBag": { + "type": "class RecipeBag", + "id": 1, + "offset": 112, + "flags": 27, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1513510520 + "hash": 2218166892 }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, + "m_craftingSlotsBag": { + "type": "class ObjectBag", + "id": 2, + "offset": 320, + "flags": 27, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 2587533771 + "hash": 2324986502 }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, + "m_reagentBag": { + "type": "class ObjectBag", + "id": 3, + "offset": 512, + "flags": 27, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3091503757 + "hash": 2459563753 }, - "m_cardSize": { - "type": "class Size", - "id": 16, - "offset": 716, - "flags": 7, + "m_bonusCrafting": { + "type": "int", + "id": 4, + "offset": 704, + "flags": 59, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1135567057 + "hash": 943921711 }, - "m_spacing": { - "type": "class Point", - "id": 17, - "offset": 724, - "flags": 7, + "m_timerMultiplier": { + "type": "float", + "id": 5, + "offset": 708, + "flags": 27, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3187881255 + "hash": 1373659455 }, - "m_holes": { - "type": "class Rect", - "id": 18, - "offset": 696, - "flags": 7, + "m_maxReagentStack": { + "type": "int", + "id": 6, + "offset": 712, + "flags": 27, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1121296540 + }, + "m_equippedRecipes": { + "type": "unsigned int", + "id": 7, + "offset": 720, + "flags": 27, "container": "List", "dynamic": true, "singleton": false, "pointer": false, - "hash": 1902151287 + "hash": 1981226997 + }, + "m_equippedRecipeData": { + "type": "std::string", + "id": 8, + "offset": 736, + "flags": 551, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2773803466 } } }, - "853278282": { - "name": "class ProvideCombatTriggerTemplate*", + "1360198868": { + "name": "class SharedPointer", "bases": [ - "GameEffectTemplate", + "CoreTemplate", "PropertyClass" ], - "hash": 853278282, + "hash": 1360198868, "properties": { - "m_effectName": { - "type": "std::string", + "m_behaviors": { + "type": "class BehaviorTemplate*", "id": 0, "offset": 72, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "Vector", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 2029161513 + "pointer": true, + "hash": 1197808594 }, - "m_effectCategory": { + "m_questName": { "type": "std::string", "id": 1, - "offset": 104, + "offset": 96, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1852673222 + "hash": 1702112846 }, - "m_sortOrder": { - "type": "int", + "m_questNameID": { + "type": "unsigned int", "id": 2, - "offset": 148, + "offset": 128, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1411218206 + "hash": 1530354349 }, - "m_duration": { - "type": "double", + "m_questTitle": { + "type": "std::string", "id": 3, - "offset": 192, - "flags": 7, + "offset": 136, + "flags": 8388615, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2727932435 + "hash": 1805465583 }, - "m_stackingCategories": { + "m_questInfo": { "type": "std::string", "id": 4, - "offset": 160, - "flags": 7, - "container": "List", - "dynamic": true, + "offset": 168, + "flags": 8388615, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 1774497525 + "hash": 1701947097 }, - "m_isPersistent": { - "type": "bool", + "m_questPrep": { + "type": "std::string", "id": 5, - "offset": 153, - "flags": 7, + "offset": 200, + "flags": 8388615, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 923861920 + "hash": 1702202980 }, - "m_bIsOnPet": { - "type": "bool", + "m_questUnderway": { + "type": "std::string", "id": 6, - "offset": 154, - "flags": 7, + "offset": 232, + "flags": 8388615, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 522593303 + "hash": 2308400380 }, - "m_isPublic": { - "type": "bool", + "m_questComplete": { + "type": "std::string", "id": 7, - "offset": 152, - "flags": 7, + "offset": 264, + "flags": 8388615, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1728439822 + "hash": 3484586150 }, - "m_visualEffectAddName": { + "m_startGoals": { "type": "std::string", "id": 8, - "offset": 200, + "offset": 392, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 3382086694 + "hash": 2152469471 }, - "m_visualEffectRemoveName": { - "type": "std::string", + "m_goals": { + "type": "class SharedPointer", "id": 9, - "offset": 232, + "offset": 408, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 1541697323 + "pointer": true, + "hash": 1374041870 }, - "m_onAddFunctorName": { - "type": "std::string", + "m_startResults": { + "type": "class SharedPointer", "id": 10, - "offset": 280, + "offset": 424, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1561843107 + "pointer": true, + "hash": 2094517692 }, - "m_onRemoveFunctorName": { - "type": "std::string", + "m_endResults": { + "type": "class SharedPointer", "id": 11, - "offset": 312, + "offset": 440, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 2559017864 + "pointer": true, + "hash": 2118364133 }, - "m_stackingRule": { - "type": "enum STACKING_RULE", + "m_requirements": { + "type": "class RequirementList*", "id": 12, - "offset": 144, - "flags": 2097159, + "offset": 456, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 431568889, - "enum_options": { - "STACKING_ALLOWED": 0, - "STACKING_NOSTACK": 1, - "STACKING_REPLACE": 2 - } + "pointer": true, + "hash": 2840985510 }, - "m_triggerName": { - "type": "std::string", + "m_prepRequirements": { + "type": "class RequirementList*", "id": 13, - "offset": 360, + "offset": 464, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 3100183568 - } - } - }, - "853268042": { - "name": "class ProvideCombatTriggerTemplate", - "bases": [ - "GameEffectTemplate", - "PropertyClass" - ], - "hash": 853268042, - "properties": { - "m_effectName": { - "type": "std::string", - "id": 0, - "offset": 72, + "pointer": true, + "hash": 3016776541 + }, + "m_pruneRequirements": { + "type": "class RequirementList*", + "id": 14, + "offset": 472, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3211248912 + }, + "m_prepAlways": { + "type": "bool", + "id": 15, + "offset": 304, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2029161513 + "hash": 1423046331 }, - "m_effectCategory": { + "m_clientTags": { "type": "std::string", - "id": 1, - "offset": 104, + "id": 16, + "offset": 312, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 1852673222 + "hash": 2319030025 }, - "m_sortOrder": { + "m_goalLogic": { + "type": "class GoalCompleteLogic*", + "id": 17, + "offset": 520, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 963824003 + }, + "m_questLevel": { "type": "int", - "id": 2, - "offset": 148, + "id": 18, + "offset": 296, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1411218206 + "hash": 298136804 }, - "m_duration": { - "type": "double", - "id": 3, - "offset": 192, + "m_questRepeat": { + "type": "int", + "id": 19, + "offset": 300, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2727932435 + "hash": 1480345805 }, - "m_stackingCategories": { + "m_onStartQuestScript": { "type": "std::string", - "id": 4, - "offset": 160, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1774497525 - }, - "m_isPersistent": { - "type": "bool", - "id": 5, - "offset": 153, + "id": 20, + "offset": 328, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 923861920 + "hash": 2577549709 }, - "m_bIsOnPet": { - "type": "bool", - "id": 6, - "offset": 154, + "m_onEndQuestScript": { + "type": "std::string", + "id": 21, + "offset": 360, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 522593303 + "hash": 2285648118 }, - "m_isPublic": { - "type": "bool", - "id": 7, - "offset": 152, + "m_dialogList": { + "type": "class ActorDialogListBase*", + "id": 22, + "offset": 480, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1728439822 + "pointer": true, + "hash": 1909154969 }, - "m_visualEffectAddName": { + "m_missionDoors": { "type": "std::string", - "id": 8, - "offset": 200, + "id": 23, + "offset": 504, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 3382086694 + "hash": 2428103908 }, - "m_visualEffectRemoveName": { - "type": "std::string", - "id": 9, - "offset": 232, + "m_dynaMods": { + "type": "class QuestDynaModInfo*", + "id": 24, + "offset": 488, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 3330743945 + }, + "m_isHidden": { + "type": "bool", + "id": 25, + "offset": 305, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1541697323 + "hash": 1401188667 }, - "m_onAddFunctorName": { - "type": "std::string", - "id": 10, - "offset": 280, + "m_outdated": { + "type": "bool", + "id": 26, + "offset": 306, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1561843107 + "hash": 1565198349 }, - "m_onRemoveFunctorName": { - "type": "std::string", - "id": 11, - "offset": 312, + "m_noQuestHelper": { + "type": "bool", + "id": 27, + "offset": 307, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2559017864 + "hash": 578010882 }, - "m_stackingRule": { - "type": "enum STACKING_RULE", - "id": 12, - "offset": 144, - "flags": 2097159, + "m_mainline": { + "type": "bool", + "id": 28, + "offset": 552, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 431568889, - "enum_options": { - "STACKING_ALLOWED": 0, - "STACKING_NOSTACK": 1, - "STACKING_REPLACE": 2 - } + "hash": 1749856224 }, - "m_triggerName": { + "m_defaultDialogAnimation": { "type": "std::string", - "id": 13, - "offset": 360, + "id": 29, + "offset": 560, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 3100183568 - } - } - }, - "465097729": { - "name": "class SG_GameAction_PlayEffect", - "bases": [ - "SG_GameAction", - "PropertyClass" - ], - "hash": 465097729, - "properties": { - "m_target": { - "type": "enum SG_GameAction::SG_Target", - "id": 0, - "offset": 72, - "flags": 2097159, + "hash": 2400834320 + }, + "m_skipQHAutoSelect": { + "type": "bool", + "id": 30, + "offset": 553, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1166870973, - "enum_options": { - "Target_Ball": 0, - "Target_Self": 1, - "Target_Connections": 2, - "__DEFAULT": "Target_Ball" - } + "hash": 2024815836 }, - "m_graphicArguments": { - "type": "std::string", - "id": 1, - "offset": 80, + "m_questEffectInfoList": { + "type": "class SharedPointer", + "id": 31, + "offset": 536, "flags": 7, "container": "List", "dynamic": true, "singleton": false, - "pointer": false, - "hash": 1656480079 + "pointer": true, + "hash": 2494024956 }, - "m_fMinimumTime": { - "type": "float", - "id": 2, - "offset": 144, + "m_forceInteraction": { + "type": "bool", + "id": 32, + "offset": 554, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1516804616 + "hash": 1038376866 }, - "m_bDisplaysScore": { + "m_checkInventoryForCrafting": { "type": "bool", - "id": 3, - "offset": 148, + "id": 33, + "offset": 608, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 722455866 + "hash": 1549644020 }, - "m_bPlaysPointsSounds": { + "m_playAsYourPetNPC": { "type": "bool", - "id": 4, - "offset": 149, + "id": 34, + "offset": 609, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 717919607 + "hash": 827482678 + }, + "m_activityType": { + "type": "enum QuestTemplate::ActivityType", + "id": 35, + "offset": 612, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 231656390, + "enum_options": { + "ACTIVITY_NotActivity": 0, + "ACTIVITY_Crafting": 2, + "ACTIVITY_Fishing": 3, + "ACTIVITY_Gardening": 4, + "ACTIVITY_Pet": 5, + "ACTIVITY_Spell": 1 + } } } }, - "465228426": { - "name": "class SharedPointer", + "513782639": { + "name": "class CompassSystem", "bases": [ - "CoreTemplate", "PropertyClass" ], - "hash": 465228426, + "hash": 513782639, "properties": { - "m_behaviors": { - "type": "class BehaviorTemplate*", + "m_markers": { + "type": "class CompassMarker", "id": 0, - "offset": 72, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1197808594 - }, - "m_baseSlots": { - "type": "class EquipSlot*", - "id": 1, - "offset": 136, + "offset": 80, "flags": 7, "container": "List", "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 3098501161 - }, - "m_equipmentName": { - "type": "std::string", - "id": 2, - "offset": 96, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, + "singleton": true, "pointer": false, - "hash": 1920213140 + "hash": 3408067289 } } }, - "853473257": { - "name": "class SpellRank*", + "1359634476": { + "name": "class TeamHelpUpdateSigilInfo", "bases": [ "PropertyClass" ], - "hash": 853473257, + "hash": 1359634476, "properties": { - "m_spellRank": { - "type": "unsigned char", + "m_sigilID": { + "type": "unsigned int", "id": 0, - "offset": 80, + "offset": 72, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1828528860 + "hash": 1425799538 }, - "m_balancePips": { - "type": "unsigned char", + "m_buttonStringKey": { + "type": "std::string", "id": 1, - "offset": 81, + "offset": 80, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1232748146 + "hash": 3226477495 }, - "m_deathPips": { - "type": "unsigned char", + "m_playerSchoolIDList": { + "type": "unsigned int", "id": 2, - "offset": 82, + "offset": 112, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 1364547506 + "hash": 346919403 }, - "m_firePips": { - "type": "unsigned char", + "m_isInstance": { + "type": "bool", "id": 3, - "offset": 83, + "offset": 128, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2490965330 + "hash": 822314308 }, - "m_icePips": { - "type": "unsigned char", + "m_secondsElapsed": { + "type": "unsigned int", "id": 4, - "offset": 84, + "offset": 132, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1584134173 + "hash": 1701124410 }, - "m_lifePips": { - "type": "unsigned char", + "m_isFarming": { + "type": "bool", "id": 5, - "offset": 85, + "offset": 136, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2181444364 + "hash": 328236467 }, - "m_mythPips": { + "m_minimumTeamSize": { "type": "unsigned char", "id": 6, - "offset": 86, + "offset": 137, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1590318670 + "hash": 904550318 }, - "m_stormPips": { - "type": "unsigned char", + "m_pSigilMonthlyGauntletInfo": { + "type": "class SharedPointer", "id": 7, - "offset": 87, + "offset": 144, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 769321921 + "pointer": true, + "hash": 1631820172 }, - "m_shadowPips": { - "type": "unsigned char", + "m_requestedSigilMode": { + "type": "enum RequestedSigilMode", "id": 8, - "offset": 88, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2569883346 - }, - "m_xPipSpell": { - "type": "bool", - "id": 9, - "offset": 90, - "flags": 7, + "offset": 76, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1088376340 + "hash": 1327681577, + "enum_options": { + "REQUESTED_DEFAULT_MODE_SIGIL": 0, + "REQUESTED_STANDARD_MODE_SIGIL": 1, + "REQUESTED_ADVANCED_MODE_SIGIL": 2, + "REQUESTED_MONTHLYGAUNTLET_MODE_SIGIL": 3 + } } } }, - "465628835": { - "name": "class ResPrepaidTime*", + "1794256664": { + "name": "class NonCombatMayCastSpellGameEffect*", "bases": [ - "ResultSourceType", - "Result", + "GameEffectBase", "PropertyClass" ], - "hash": 465628835, + "hash": 1794256664, "properties": { - "m_sourceType": { - "type": "std::string", + "m_currentTickCount": { + "type": "double", "id": 0, "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2305508654 - }, - "m_zoneLevelMax": { - "type": "unsigned int", - "id": 1, - "offset": 76, - "flags": 263, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1028933895 + "hash": 2533274692 }, - "m_zoneLevelMin": { + "m_effectNameID": { "type": "unsigned int", - "id": 2, - "offset": 72, - "flags": 263, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1028934149 - } - } - }, - "854001393": { - "name": "class WizBugReport", - "bases": [ - "BugReport", - "PropertyClass" - ], - "hash": 854001393, - "properties": { - "m_clientVersion": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2207163808 - }, - "m_type": { - "type": "enum BugType", "id": 1, - "offset": 104, - "flags": 31, + "offset": 96, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 889643611, - "enum_options": { - "BT_CRASH": 1, - "BT_GAME_STOPPER": 2, - "BT_INTERFERENCE": 3, - "BT_ANNOYANCE": 4, - "BT_FEATURE_REQUEST": 5, - "BT_COMMENT": 6 - } + "hash": 1204067144 }, - "m_canReproduce": { + "m_bIsOnPet": { "type": "bool", "id": 2, - "offset": 108, + "offset": 73, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 859813390 + "hash": 522593303 }, - "m_description": { - "type": "std::wstring", + "m_originatorID": { + "type": "gid", "id": 3, - "offset": 112, - "flags": 31, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1445360156 + "hash": 1131810019 }, - "m_systemType": { - "type": "enum WizBugReport::SystemType", + "m_itemSlotID": { + "type": "unsigned int", "id": 4, - "offset": 144, - "flags": 31, + "offset": 112, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1170942560, - "enum_options": { - "ST_OTHER": 0, - "ST_QUEST": 1, - "ST_SHOP": 2, - "ST_MONSTER": 3, - "ST_SPELL": 4, - "ST_ITEM": 5, - "ST_INTERFACE": 6 - } + "hash": 1895747595 }, - "m_ideaType": { - "type": "enum WizBugReport::IdeaType", + "m_internalID": { + "type": "int", "id": 5, - "offset": 148, - "flags": 31, + "offset": 92, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1042875837, - "enum_options": { - "IT_ADD": 0, - "IT_CHANGE": 1, - "IT_NONE": 2 - } + "hash": 1643137924 }, - "m_userId": { - "type": "gid", + "m_endTime": { + "type": "unsigned int", "id": 6, - "offset": 184, + "offset": 88, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1037989732 + "hash": 716479635 }, - "m_gender": { - "type": "enum WizBugReport::UserGender", + "m_spellName": { + "type": "std::string", "id": 7, - "offset": 196, + "offset": 128, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 625694774, - "enum_options": { - "UG_Unknown": 0, - "UG_Male": 1, - "UG_Female": 2 - } + "hash": 2688485244 }, - "m_age": { - "type": "unsigned char", + "m_percentChance": { + "type": "int", "id": 8, - "offset": 192, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 904628669 - }, - "m_userName": { - "type": "std::string", - "id": 9, - "offset": 152, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2213937019 - }, - "m_releaseUpdate": { - "type": "std::string", - "id": 10, - "offset": 208, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1780854143 - }, - "m_jiraIssue": { - "type": "std::string", - "id": 11, - "offset": 240, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1589236010 - }, - "m_osString": { - "type": "std::string", - "id": 12, - "offset": 272, + "offset": 160, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3500554164 - } - } - }, - "468964040": { - "name": "class SharedPointer", - "bases": [ - "CinematicAction", - "PropertyClass" - ], - "hash": 468964040, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 + "hash": 385662509 } } }, - "855187657": { - "name": "class SoccerBall", - "bases": [ - "PropertyClass" - ], - "hash": 855187657, - "properties": {} - }, - "466661542": { - "name": "class PetStatModificationSet", + "1359234207": { + "name": "class NonCombatMayCastSpellInfo", "bases": [ + "GameEffectInfo", "PropertyClass" ], - "hash": 466661542, + "hash": 1359234207, "properties": { - "m_name": { + "m_effectName": { "type": "std::string", "id": 0, "offset": 72, - "flags": 8388639, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1717359772 - }, - "m_modifications": { - "type": "class SharedPointer", - "id": 1, - "offset": 104, "flags": 31, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2096386993 - }, - "m_scene": { - "type": "std::string", - "id": 2, - "offset": 152, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2307196329 - }, - "m_gameScoreFactor": { - "type": "int", - "id": 3, - "offset": 128, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1405761071 - } - } - }, - "854794441": { - "name": "class SoccerBall*", - "bases": [ - "PropertyClass" - ], - "hash": 854794441, - "properties": {} - }, - "466428104": { - "name": "class ClientActivateHangingEffectCinematicAction*", - "bases": [ - "ActivateHangingEffectCinematicAction", - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 466428104, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 + "hash": 2029161513 }, - "m_actor": { + "m_spellName": { "type": "std::string", "id": 1, - "offset": 80, - "flags": 7, + "offset": 104, + "flags": 268435463, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2285866132 + "hash": 2688485244, + "enum_options": { + "__BASECLASS": "SpellTemplate" + } }, - "m_activate": { - "type": "bool", + "m_percentChance": { + "type": "int", "id": 2, - "offset": 120, - "flags": 7, + "offset": 136, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 142527940 + "hash": 385662509 }, - "m_cloaked": { - "type": "bool", + "m_spellDescription": { + "type": "class SharedPointer", "id": 3, - "offset": 121, - "flags": 7, + "offset": 144, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 7349510 + "pointer": true, + "hash": 790341621 } } }, - "854951333": { - "name": "class GuildAchievementBehavior", + "946885056": { + "name": "class LadderBehavior*", "bases": [ "BehaviorInstance", "PropertyClass" ], - "hash": 854951333, + "hash": 946885056, "properties": { "m_behaviorTemplateNameID": { "type": "unsigned int", @@ -616267,1382 +566566,1106 @@ "singleton": false, "pointer": false, "hash": 223437287 - } - } - }, - "466620582": { - "name": "class PetStatModificationSet*", - "bases": [ - "PropertyClass" - ], - "hash": 466620582, - "properties": { - "m_name": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 8388639, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1717359772 }, - "m_modifications": { - "type": "class SharedPointer", + "m_nLadderContainerID": { + "type": "gid", "id": 1, - "offset": 104, - "flags": 31, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2096386993 - }, - "m_scene": { - "type": "std::string", - "id": 2, - "offset": 152, - "flags": 131103, + "offset": 112, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2307196329 - }, - "m_gameScoreFactor": { - "type": "int", - "id": 3, - "offset": 128, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1405761071 - } - } - }, - "856128287": { - "name": "enum DerbyLaneEffect", - "bases": [], - "hash": 856128287, - "properties": {} - }, - "468115882": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 468115882, - "properties": { - "m_effectTemplates": { - "type": "class GameEffectTemplate*", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1951025928 + "hash": 782107042 } } }, - "855275209": { - "name": "enum PathBehaviorTemplate::PathType", - "bases": [], - "hash": 855275209, - "properties": {} - }, - "467853257": { - "name": "class NullAction*", + "516712222": { + "name": "class PetInfoControl*", "bases": [ - "PathBehaviorTemplate::Action", + "Window", "PropertyClass" ], - "hash": 467853257, + "hash": 516712222, "properties": { - "m_nPathID": { - "type": "gid", + "m_sName": { + "type": "std::string", "id": 0, - "offset": 72, - "flags": 7, + "offset": 80, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 214382368 + "hash": 2306437263 }, - "m_nNodeID": { - "type": "int", + "m_Children": { + "type": "class SharedPointer", "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, + "offset": 112, + "flags": 65667, + "container": "Vector", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 152152635, - "enum_options": { - "__DEFAULT": 4294967295 - } + "pointer": true, + "hash": 2621225959 }, - "m_nPriority": { - "type": "int", + "m_Style": { + "type": "unsigned int", "id": 2, - "offset": 84, - "flags": 7, + "offset": 152, + "flags": 1048583, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1515251530, + "hash": 983582334, "enum_options": { - "__DEFAULT": 100 + "HAS_BACK": 1, + "SCALE_CHILDREN": 2, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "FOCUS_LOCKED": 64, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152 } }, - "m_nChance": { - "type": "int", + "m_Flags": { + "type": "unsigned int", "id": 3, - "offset": 88, - "flags": 7, + "offset": 156, + "flags": 1048583, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1860748394, + "hash": 967851578, "enum_options": { - "__DEFAULT": 50 + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 } - } - } - }, - "466676189": { - "name": "class AvailableQuestEntry*", - "bases": [ - "ServiceOptionBase", - "PropertyClass" - ], - "hash": 466676189, - "properties": { - "m_serviceName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, + }, + "m_Window": { + "type": "class Rect", + "id": 4, + "offset": 160, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2206028813 + "hash": 3105139380 }, - "m_iconKey": { - "type": "std::string", - "id": 1, - "offset": 168, - "flags": 31, + "m_fTargetAlpha": { + "type": "float", + "id": 5, + "offset": 212, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2457138637 + "hash": 1809129834 }, - "m_displayKey": { - "type": "std::string", - "id": 2, - "offset": 104, - "flags": 31, + "m_fDisabledAlpha": { + "type": "float", + "id": 6, + "offset": 216, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3023276954 + "hash": 1389987675 }, - "m_serviceIndex": { - "type": "unsigned int", - "id": 3, - "offset": 204, - "flags": 31, + "m_fAlpha": { + "type": "float", + "id": 7, + "offset": 208, + "flags": 65671, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2103126710 + "hash": 482130755 }, - "m_forceInteract": { - "type": "bool", - "id": 4, - "offset": 200, - "flags": 31, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1705789564 + "pointer": true, + "hash": 3623628394 }, - "m_questTitle": { - "type": "std::string", - "id": 5, - "offset": 256, - "flags": 31, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1805465583 + "hash": 2102211316 }, - "m_questName": { + "m_sScript": { "type": "std::string", - "id": 6, - "offset": 224, - "flags": 31, + "id": 10, + "offset": 352, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1702112846 + "hash": 1846695875 }, - "m_isMainline": { - "type": "bool", - "id": 7, - "offset": 344, - "flags": 31, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1637584380 - } - } - }, - "859401725": { - "name": "class ReqMinion", - "bases": [ - "ConditionalSpellEffectRequirement", - "Requirement", - "PropertyClass" - ], - "hash": 859401725, - "properties": { - "m_applyNOT": { - "type": "bool", - "id": 0, - "offset": 72, - "flags": 31, + "hash": 3389835433 + }, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1746328074, - "enum_options": { - "__DEFAULT": 0 - } + "hash": 2547159940 }, - "m_operator": { - "type": "enum Requirement::Operator", - "id": 1, - "offset": 76, - "flags": 2097183, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2672792317, - "enum_options": { - "ROP_AND": 0, - "ROP_OR": 1, - "__DEFAULT": "ROP_AND" - } + "hash": 1513510520 }, - "m_targetType": { - "type": "enum ConditionalSpellEffectRequirement::RequirementTarget", - "id": 2, - "offset": 80, - "flags": 2097159, - "container": "Static", - "dynamic": false, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 2547737902, - "enum_options": { - "RT_Caster": 0, - "RT_Target": 1 - } + "hash": 2587533771 }, - "m_minionType": { - "type": "enum ReqMinion::MinionType", - "id": 3, - "offset": 88, - "flags": 2097159, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2627992580, - "enum_options": { - "Is_Minion": 0, - "Has_Minion": 1, - "On_Team": 2, - "On_Other_Team": 3, - "On_Any_Team": 4 - } + "hash": 3091503757 } } }, - "468051469": { - "name": "class SharedPointer", + "946884960": { + "name": "class LadderBehavior", "bases": [ + "BehaviorInstance", "PropertyClass" ], - "hash": 468051469, + "hash": 946884960, "properties": { - "m_name": { - "type": "std::string", + "m_behaviorTemplateNameID": { + "type": "unsigned int", "id": 0, - "offset": 72, - "flags": 8388639, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1717359772 + "hash": 223437287 }, - "m_modifications": { - "type": "class SharedPointer", + "m_nLadderContainerID": { + "type": "gid", "id": 1, - "offset": 104, - "flags": 31, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2096386993 - }, - "m_scene": { - "type": "std::string", - "id": 2, - "offset": 152, - "flags": 131103, + "offset": 112, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2307196329 - }, - "m_gameScoreFactor": { - "type": "int", - "id": 3, - "offset": 128, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1405761071 + "hash": 782107042 } } }, - "858701303": { - "name": "class Persona*", + "515581446": { + "name": "class SharedPointer", "bases": [ + "GraphicalSpell", + "Spell", "PropertyClass" ], - "hash": 858701303, + "hash": 515581446, "properties": { - "m_personaName": { - "type": "std::string", + "m_templateID": { + "type": "unsigned int", "id": 0, - "offset": 144, - "flags": 7, + "offset": 128, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2514452244 + "hash": 1286746870 }, - "m_firstName": { - "type": "std::string", + "m_enchantment": { + "type": "unsigned int", "id": 1, - "offset": 208, - "flags": 8388615, + "offset": 80, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3116002948 + "hash": 2217886818 }, - "m_lastName": { - "type": "std::string", + "m_pipCost": { + "type": "class SharedPointer", "id": 2, - "offset": 240, - "flags": 8388615, + "offset": 176, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1826203600 + "pointer": true, + "hash": 3605704820 }, - "m_title": { - "type": "std::string", + "m_regularAdjust": { + "type": "int", "id": 3, - "offset": 272, - "flags": 8388615, + "offset": 192, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2308614141 + "hash": 1420453335 }, - "m_nickname": { - "type": "std::string", + "m_magicSchoolID": { + "type": "unsigned int", "id": 4, - "offset": 304, - "flags": 8388615, + "offset": 136, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2269863201 + "hash": 893146499 }, - "m_questList": { - "type": "std::string", + "m_accuracy": { + "type": "unsigned char", "id": 5, - "offset": 360, - "flags": 268435463, - "container": "List", - "dynamic": true, + "offset": 132, + "flags": 7, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 1702049897, - "enum_options": { - "__BASECLASS": "QuestTemplate" - } + "hash": 2273914939 }, - "m_questArcList": { - "type": "std::string", + "m_treasureCard": { + "type": "bool", "id": 6, - "offset": 376, - "flags": 268435463, - "container": "List", - "dynamic": true, + "offset": 197, + "flags": 31, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 3113974815, - "enum_options": { - "__BASECLASS": "QuestArc" - } + "hash": 1764879128 }, - "m_icon": { - "type": "std::string", + "m_battleCard": { + "type": "bool", "id": 7, - "offset": 176, - "flags": 131079, + "offset": 198, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1717182340 + "hash": 1332843753 }, - "m_showTitle": { + "m_itemCard": { "type": "bool", "id": 8, - "offset": 336, + "offset": 199, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2128418998 + "hash": 1683654300 }, - "m_titleLast": { + "m_sideBoard": { "type": "bool", "id": 9, - "offset": 337, + "offset": 200, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1207515433 + "hash": 1897838368 }, - "m_maintainQuestOrder": { - "type": "bool", + "m_spellID": { + "type": "unsigned int", "id": 10, - "offset": 338, - "flags": 7, + "offset": 204, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 317861362 + "hash": 1697483258 }, - "m_offerArcsFirst": { + "m_leavesPlayWhenCastOverride": { "type": "bool", "id": 11, - "offset": 339, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1663706614 - } - } - }, - "858590365": { - "name": "class PvPStatueBehaviorTemplate*", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 858590365, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, + "offset": 216, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3130754092 + "hash": 874407398 }, - "m_league": { - "type": "std::string", - "id": 1, - "offset": 120, + "m_cloaked": { + "type": "bool", + "id": 12, + "offset": 196, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2166730062 + "hash": 7349510 }, - "m_rank": { - "type": "int", - "id": 2, - "offset": 152, - "flags": 7, + "m_enchantmentSpellIsItemCard": { + "type": "bool", + "id": 13, + "offset": 76, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 219803942 + "hash": 531590701 }, - "m_refreshRateSec": { - "type": "int", - "id": 3, - "offset": 156, - "flags": 7, + "m_premutationSpellID": { + "type": "unsigned int", + "id": 14, + "offset": 112, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 418402320 + "hash": 1530256370 }, - "m_groundOffset": { - "type": "float", - "id": 4, - "offset": 160, - "flags": 7, + "m_enchantedThisCombat": { + "type": "bool", + "id": 15, + "offset": 77, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 684524077 + "hash": 1895738923 }, - "m_yaw": { - "type": "float", - "id": 5, - "offset": 164, - "flags": 7, - "container": "Static", - "dynamic": false, + "m_paramOverrides": { + "type": "class SharedPointer", + "id": 16, + "offset": 224, + "flags": 31, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 357256328 + "pointer": true, + "hash": 2061635599 }, - "m_showNametag": { - "type": "bool", - "id": 6, - "offset": 168, - "flags": 7, - "container": "Static", - "dynamic": false, + "m_subEffectMeta": { + "type": "class SharedPointer", + "id": 17, + "offset": 240, + "flags": 31, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 584664753 + "pointer": true, + "hash": 1944101106 }, - "m_showInGrace": { + "m_delayEnchantment": { "type": "bool", - "id": 7, - "offset": 169, - "flags": 7, + "id": 18, + "offset": 257, + "flags": 287, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1033917517 + "hash": 191336919 }, - "m_showActive": { + "m_PvE": { "type": "bool", - "id": 8, - "offset": 170, - "flags": 7, + "id": 19, + "offset": 264, + "flags": 287, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 685431312 + "hash": 269492350 }, - "m_scale": { - "type": "float", - "id": 9, - "offset": 172, - "flags": 7, + "m_delayEnchantmentOrder": { + "type": "enum SpellEffect::kDelayOrder", + "id": 20, + "offset": 72, + "flags": 287, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 899693439 + "hash": 2526055263, + "enum_options": { + "SpellEffect::kAnyOrder": 0, + "SpellEffect::kFirst": 1, + "SpellEffect::kSecond": 2 + } }, - "m_alpha": { - "type": "float", - "id": 10, - "offset": 176, - "flags": 7, + "m_roundAddedTC": { + "type": "int", + "id": 21, + "offset": 260, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 878686493 + "hash": 112365451 }, - "m_animDelaySec": { - "type": "float", - "id": 11, - "offset": 180, + "m_secondarySchoolID": { + "type": "unsigned int", + "id": 22, + "offset": 304, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2131058854 + "hash": 2081206026 }, - "m_animChance": { - "type": "float", - "id": 12, - "offset": 184, - "flags": 7, + "m_fusionState": { + "type": "enum Spell::FusionState", + "id": 23, + "offset": 308, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 434823806 - }, - "m_animList": { - "type": "std::string", - "id": 13, - "offset": 192, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2531745852 + "hash": 835324539, + "enum_options": { + "FS_Invalid": 0, + "FS_Partial": 1, + "FS_Valid": 2 + } } } }, - "858174808": { - "name": "class ReqIsQuest*", + "1795952116": { + "name": "class DailyQuestData*", "bases": [ - "Requirement", "PropertyClass" ], - "hash": 858174808, + "hash": 1795952116, "properties": { - "m_applyNOT": { - "type": "bool", + "m_dailyQuestList": { + "type": "class SharedPointer", "id": 0, "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1746328074, - "enum_options": { - "__DEFAULT": 0 - } - }, - "m_operator": { - "type": "enum Requirement::Operator", - "id": 1, - "offset": 76, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2672792317, - "enum_options": { - "ROP_AND": 0, - "ROP_OR": 1, - "__DEFAULT": "ROP_AND" - } - }, - "m_questName": { - "type": "std::string", - "id": 2, - "offset": 80, - "flags": 268435463, - "container": "Static", - "dynamic": false, + "flags": 7, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 1702112846, - "enum_options": { - "__BASECLASS": "QuestTemplate" - } + "pointer": true, + "hash": 3219359410 } } }, - "468174153": { - "name": "class SharedPointer", + "1360038994": { + "name": "class SharedPointer", "bases": [ + "ClientObjectInfo", + "CoreObjectInfo", "PropertyClass" ], - "hash": 468174153, + "hash": 1360038994, "properties": { - "m_thousandSeparator": { - "type": "wchar_t", + "m_templateID.m_full": { + "type": "unsigned __int64", "id": 0, - "offset": 200, - "flags": 7, + "offset": 72, + "flags": 33554439, "container": "Static", "dynamic": false, - "singleton": true, + "singleton": false, "pointer": false, - "hash": 3735116682 + "hash": 633907631 }, - "m_decimalCharacter": { - "type": "wchar_t", + "m_nObjectID": { + "type": "unsigned int", "id": 1, - "offset": 202, + "offset": 80, "flags": 7, "container": "Static", "dynamic": false, - "singleton": true, + "singleton": false, "pointer": false, - "hash": 2802322863 + "hash": 748496927 }, - "m_defaultSpace": { - "type": "wchar_t", + "m_location": { + "type": "class Vector3D", "id": 2, - "offset": 204, + "offset": 84, "flags": 7, "container": "Static", "dynamic": false, - "singleton": true, + "singleton": false, "pointer": false, - "hash": 3126898340 + "hash": 2239683611 }, - "m_numberPrecision": { - "type": "int", + "m_orientation": { + "type": "class Vector3D", "id": 3, - "offset": 208, + "offset": 96, "flags": 7, "container": "Static", "dynamic": false, - "singleton": true, + "singleton": false, "pointer": false, - "hash": 523838671 + "hash": 2344058766 }, - "m_lowerToUpperList": { - "type": "class CharMap", + "m_fScale": { + "type": "float", "id": 4, - "offset": 216, + "offset": 108, "flags": 7, - "container": "List", - "dynamic": true, - "singleton": true, + "container": "Static", + "dynamic": false, + "singleton": false, "pointer": false, - "hash": 542305079 + "hash": 503137701 }, - "m_upperToLowerList": { - "type": "class CharMap", + "m_zoneTag": { + "type": "std::string", "id": 5, - "offset": 232, + "offset": 152, "flags": 7, - "container": "List", - "dynamic": true, - "singleton": true, + "container": "Static", + "dynamic": false, + "singleton": false, "pointer": false, - "hash": 686618071 + "hash": 3405382643 }, - "m_sortScoreList": { - "type": "class CharMap", + "m_startState": { + "type": "std::string", "id": 6, - "offset": 248, + "offset": 184, "flags": 7, - "container": "List", - "dynamic": true, - "singleton": true, + "container": "Static", + "dynamic": false, + "singleton": false, "pointer": false, - "hash": 1662028035 + "hash": 2166880458 }, - "m_typeSpaces": { - "type": "unsigned short", + "m_overrideName": { + "type": "std::string", "id": 7, - "offset": 264, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": true, + "offset": 120, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, "pointer": false, - "hash": 931738089 + "hash": 1990707228 }, - "m_typePunctuation": { - "type": "unsigned short", + "m_globalDynamic": { + "type": "bool", "id": 8, - "offset": 280, + "offset": 116, "flags": 7, - "container": "List", - "dynamic": true, - "singleton": true, + "container": "Static", + "dynamic": false, + "singleton": false, "pointer": false, - "hash": 2553388772 + "hash": 1951691017 }, - "m_typeAlphaNumeric": { - "type": "unsigned short", + "m_bUndetectable": { + "type": "bool", "id": 9, - "offset": 296, + "offset": 216, "flags": 7, - "container": "List", - "dynamic": true, - "singleton": true, + "container": "Static", + "dynamic": false, + "singleton": false, "pointer": false, - "hash": 696068547 + "hash": 1907454341 }, - "m_typeAlpha": { - "type": "unsigned short", + "m_spawnRequirements": { + "type": "class SharedPointer", "id": 10, - "offset": 312, + "offset": 224, "flags": 7, - "container": "List", - "dynamic": true, - "singleton": true, - "pointer": false, - "hash": 1715008368 + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2309120870 }, - "m_typeDigit": { - "type": "unsigned short", + "m_loadingType": { + "type": "enum CoreObjectInfo::LoadingType", "id": 11, - "offset": 328, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": true, - "pointer": false, - "hash": 1718448571 - }, - "m_typeHexDigit": { - "type": "unsigned short", - "id": 12, - "offset": 344, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": true, - "pointer": false, - "hash": 990261184 - }, - "m_minFontSizeForDropshadow": { - "type": "float", - "id": 13, - "offset": 212, - "flags": 7, + "offset": 112, + "flags": 2097159, "container": "Static", "dynamic": false, - "singleton": true, + "singleton": false, "pointer": false, - "hash": 335078927 - } - } - }, - "856547416": { - "name": "class ClientRemoveBacklashEffectCinematicAciton", - "bases": [ - "RemoveBacklashEffectCinematicAction", - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 856547416, - "properties": { - "m_timeOffset": { + "hash": 3522422550, + "enum_options": { + "STATIC_CLIENT_SERVER": 0, + "STATIC_CLIENT": 1, + "STATIC_SERVER": 2, + "DYNAMIC_SERVER": 3 + } + }, + "m_radius": { "type": "float", - "id": 0, - "offset": 72, + "id": 12, + "offset": 256, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 + "hash": 989410271 }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, + "m_exclusive": { + "type": "bool", + "id": 13, + "offset": 260, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2285866132 - } - } - }, - "468246473": { - "name": "class NullAction", - "bases": [ - "PathBehaviorTemplate::Action", - "PropertyClass" - ], - "hash": 468246473, - "properties": { - "m_nPathID": { - "type": "gid", - "id": 0, - "offset": 72, + "hash": 824383403 + }, + "m_startActive": { + "type": "bool", + "id": 14, + "offset": 261, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 214382368 + "hash": 2031339229 }, - "m_nNodeID": { - "type": "int", - "id": 1, - "offset": 80, - "flags": 7, + "m_category": { + "type": "enum AudioCategory", + "id": 15, + "offset": 264, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 152152635, + "hash": 2951251982, "enum_options": { - "__DEFAULT": 4294967295 + "AudioCategory_Irrelevent": 0, + "AudioCategory_Accoustic": 1, + "AudioCategory_Noise": 2, + "AudioCategory_Music": 3 } }, - "m_nPriority": { + "m_override": { "type": "int", - "id": 2, - "offset": 84, - "flags": 7, + "id": 16, + "offset": 268, + "flags": 1048583, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1515251530, + "hash": 136872410, "enum_options": { - "__DEFAULT": 100 + "OVR_RADIUS": 1, + "OVR_CATEGORY": 2, + "OVR_EXCLUSIVE": 4, + "OVR_SIGNATURE": 64, + "OVR_VOLUME": 8, + "OVR_LOOPCOUNT": 16, + "OVR_ACTIVE": 32, + "OVR_PLAYPROG": 128, + "OVR_PRIORITY": 256, + "OVR_PROGTIME": 512, + "OVR_FILTERSET": 1024 } }, - "m_nChance": { - "type": "int", - "id": 3, - "offset": 88, - "flags": 7, + "m_enableReqs": { + "type": "class SharedPointer", + "id": 17, + "offset": 272, + "flags": 263, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1860748394, - "enum_options": { - "__DEFAULT": 50 - } + "pointer": true, + "hash": 3158020443 } } }, - "858568024": { - "name": "class ReqIsQuest", + "515253407": { + "name": "class ClientPlayGraphicOnSigilCinematicAction*", "bases": [ - "Requirement", + "PlayGraphicOnSigilCinematicAction", + "CinematicAction", "PropertyClass" ], - "hash": 858568024, + "hash": 515253407, "properties": { - "m_applyNOT": { - "type": "bool", + "m_timeOffset": { + "type": "float", "id": 0, "offset": 72, - "flags": 31, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1746328074, - "enum_options": { - "__DEFAULT": 0 - } + "hash": 2237098605 }, - "m_operator": { - "type": "enum Requirement::Operator", + "m_minDuration": { + "type": "float", "id": 1, - "offset": 76, - "flags": 2097183, + "offset": 80, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2672792317, - "enum_options": { - "ROP_AND": 0, - "ROP_OR": 1, - "__DEFAULT": "ROP_AND" - } + "hash": 1733171553 }, - "m_questName": { + "m_assetName": { "type": "std::string", "id": 2, - "offset": 80, - "flags": 268435463, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1702112846, - "enum_options": { - "__BASECLASS": "QuestTemplate" - } - } - } - }, - "469934542": { - "name": "class SharedPointer", - "bases": [ - "ObstacleCoursePendulumBehavior", - "ObstacleCourseObstacleBehavior", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 469934542, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, + "offset": 88, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 + "hash": 1513131580 } } }, - "469660068": { - "name": "class SharedPointer", + "1795951956": { + "name": "class DailyQuestData", "bases": [ - "ServiceOptionBase", "PropertyClass" ], - "hash": 469660068, + "hash": 1795951956, "properties": { - "m_serviceName": { - "type": "std::string", + "m_dailyQuestList": { + "type": "class SharedPointer", "id": 0, "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2206028813 - }, - "m_iconKey": { - "type": "std::string", - "id": 1, - "offset": 168, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2457138637 - }, - "m_displayKey": { - "type": "std::string", - "id": 2, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3023276954 - }, - "m_serviceIndex": { - "type": "unsigned int", - "id": 3, - "offset": 204, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2103126710 - }, - "m_forceInteract": { - "type": "bool", - "id": 4, - "offset": 200, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1705789564 - }, - "m_questTitle": { - "type": "std::string", - "id": 5, - "offset": 256, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1805465583 - }, - "m_questName": { - "type": "std::string", - "id": 6, - "offset": 224, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1702112846 - }, - "m_isMainline": { - "type": "bool", - "id": 7, - "offset": 344, - "flags": 31, - "container": "Static", - "dynamic": false, + "flags": 7, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 1637584380 + "pointer": true, + "hash": 3219359410 } } }, - "858701283": { - "name": "class Persona", + "515142074": { + "name": "class SharedPointer", "bases": [ + "Window", "PropertyClass" ], - "hash": 858701283, + "hash": 515142074, "properties": { - "m_personaName": { + "m_sName": { "type": "std::string", "id": 0, - "offset": 144, - "flags": 7, + "offset": 80, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2514452244 + "hash": 2306437263 }, - "m_firstName": { - "type": "std::string", + "m_Children": { + "type": "class SharedPointer", "id": 1, - "offset": 208, - "flags": 8388615, - "container": "Static", - "dynamic": false, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 3116002948 + "pointer": true, + "hash": 2621225959 }, - "m_lastName": { - "type": "std::string", + "m_Style": { + "type": "unsigned int", "id": 2, - "offset": 240, - "flags": 8388615, + "offset": 152, + "flags": 1048583, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1826203600 + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "SCALE_CHILDREN": 2, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "FOCUS_LOCKED": 64, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152 + } }, - "m_title": { - "type": "std::string", + "m_Flags": { + "type": "unsigned int", "id": 3, - "offset": 272, - "flags": 8388615, + "offset": 156, + "flags": 1048583, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2308614141 + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } }, - "m_nickname": { - "type": "std::string", + "m_Window": { + "type": "class Rect", "id": 4, - "offset": 304, - "flags": 8388615, + "offset": 160, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2269863201 + "hash": 3105139380 }, - "m_questList": { - "type": "std::string", + "m_fTargetAlpha": { + "type": "float", "id": 5, - "offset": 360, - "flags": 268435463, - "container": "List", - "dynamic": true, + "offset": 212, + "flags": 135, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 1702049897, - "enum_options": { - "__BASECLASS": "QuestTemplate" - } + "hash": 1809129834 }, - "m_questArcList": { - "type": "std::string", + "m_fDisabledAlpha": { + "type": "float", "id": 6, - "offset": 376, - "flags": 268435463, - "container": "List", - "dynamic": true, + "offset": 216, + "flags": 135, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 3113974815, - "enum_options": { - "__BASECLASS": "QuestArc" - } + "hash": 1389987675 }, - "m_icon": { - "type": "std::string", + "m_fAlpha": { + "type": "float", "id": 7, - "offset": 176, - "flags": 131079, + "offset": 208, + "flags": 65671, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1717182340 + "hash": 482130755 }, - "m_showTitle": { - "type": "bool", + "m_pWindowStyle": { + "type": "class SharedPointer", "id": 8, - "offset": 336, - "flags": 7, + "offset": 232, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 2128418998 + "pointer": true, + "hash": 3623628394 }, - "m_titleLast": { - "type": "bool", + "m_sHelp": { + "type": "std::wstring", "id": 9, - "offset": 337, - "flags": 7, + "offset": 248, + "flags": 4194439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1207515433 + "hash": 2102211316 }, - "m_maintainQuestOrder": { - "type": "bool", + "m_sScript": { + "type": "std::string", "id": 10, - "offset": 338, - "flags": 7, + "offset": 352, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 317861362 + "hash": 1846695875 }, - "m_offerArcsFirst": { - "type": "bool", + "m_Offset": { + "type": "class Point", "id": 11, - "offset": 339, - "flags": 7, + "offset": 192, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1663706614 - } - } - }, - "469325591": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 469325591, - "properties": { - "m_name": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, + "hash": 3389835433 + }, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1717359772 + "hash": 2547159940 }, - "m_change": { - "type": "int", - "id": 1, - "offset": 104, - "flags": 31, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 320376832 + "hash": 1513510520 }, - "m_actualChange": { - "type": "unsigned int", - "id": 2, - "offset": 108, - "flags": 31, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 448133229 + "hash": 3091503757 } } }, - "859389437": { - "name": "class ReqMinion*", + "514698517": { + "name": "class GameObjectAnimData*", "bases": [ - "ConditionalSpellEffectRequirement", - "Requirement", "PropertyClass" ], - "hash": 859389437, + "hash": 514698517, "properties": { - "m_applyNOT": { - "type": "bool", + "m_zoneTag": { + "type": "std::string", "id": 0, "offset": 72, "flags": 31, @@ -617650,731 +567673,677 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 1746328074, - "enum_options": { - "__DEFAULT": 0 - } + "hash": 3405382643 }, - "m_operator": { - "type": "enum Requirement::Operator", + "m_zoneTagID": { + "type": "unsigned int", "id": 1, - "offset": 76, - "flags": 2097183, + "offset": 104, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2672792317, - "enum_options": { - "ROP_AND": 0, - "ROP_OR": 1, - "__DEFAULT": "ROP_AND" - } + "hash": 965291410 }, - "m_targetType": { - "type": "enum ConditionalSpellEffectRequirement::RequirementTarget", + "m_animation": { + "type": "std::string", "id": 2, - "offset": 80, - "flags": 2097159, + "offset": 112, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2547737902, - "enum_options": { - "RT_Caster": 0, - "RT_Target": 1 - } + "hash": 3431428731 }, - "m_minionType": { - "type": "enum ReqMinion::MinionType", + "m_backupAnimation": { + "type": "std::string", "id": 3, - "offset": 88, - "flags": 2097159, + "offset": 144, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2627992580, - "enum_options": { - "Is_Minion": 0, - "Has_Minion": 1, - "On_Team": 2, - "On_Other_Team": 3, - "On_Any_Team": 4 - } - } - } - }, - "469833316": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 469833316, - "properties": { - "m_categories": { - "type": "class SharedPointer", - "id": 0, - "offset": 80, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": true, - "pointer": true, - "hash": 2474674612 - } - } - }, - "859081414": { - "name": "class SharedPointer", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 859081414, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, + "hash": 1661537937 + }, + "m_default": { + "type": "bool", + "id": 4, + "offset": 176, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3130754092 + "hash": 1014207576 }, - "m_polymorphCategory": { - "type": "std::string", - "id": 1, - "offset": 120, + "m_evenWhileDead": { + "type": "bool", + "id": 5, + "offset": 177, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3076206595 + "hash": 2100875368 } } }, - "471828599": { - "name": "class PulseEffectTemplate*", + "948326114": { + "name": "class ChatPopupButton", "bases": [ - "GameEffectTemplate", + "ScrollablePopupButton", + "ControlPopupButton", + "ControlButton", + "Window", "PropertyClass" ], - "hash": 471828599, + "hash": 948326114, "properties": { - "m_effectName": { + "m_sName": { "type": "std::string", "id": 0, - "offset": 72, - "flags": 7, + "offset": 80, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2029161513 + "hash": 2306437263 }, - "m_effectCategory": { - "type": "std::string", + "m_Children": { + "type": "class SharedPointer", "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 1852673222 + "pointer": true, + "hash": 2621225959 }, - "m_sortOrder": { - "type": "int", + "m_Style": { + "type": "unsigned int", "id": 2, - "offset": 148, - "flags": 7, + "offset": 152, + "flags": 1048583, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1411218206 + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152, + "POPDOWN_SIBLINGS": 67108864, + "DISABLE_CHILDREN": 134217728, + "HIDE_SIBLINGS": 268435456, + "POPUP_ON_HOVER": 536870912 + } }, - "m_duration": { - "type": "double", + "m_Flags": { + "type": "unsigned int", "id": 3, - "offset": 192, - "flags": 7, + "offset": 156, + "flags": 1048583, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2727932435 + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } }, - "m_stackingCategories": { - "type": "std::string", + "m_Window": { + "type": "class Rect", "id": 4, "offset": 160, - "flags": 7, - "container": "List", - "dynamic": true, + "flags": 135, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 1774497525 + "hash": 3105139380 }, - "m_isPersistent": { - "type": "bool", + "m_fTargetAlpha": { + "type": "float", "id": 5, - "offset": 153, - "flags": 7, + "offset": 212, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 923861920 + "hash": 1809129834 }, - "m_bIsOnPet": { - "type": "bool", + "m_fDisabledAlpha": { + "type": "float", "id": 6, - "offset": 154, - "flags": 7, + "offset": 216, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 522593303 + "hash": 1389987675 }, - "m_isPublic": { - "type": "bool", + "m_fAlpha": { + "type": "float", "id": 7, - "offset": 152, - "flags": 7, + "offset": 208, + "flags": 65671, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1728439822 + "hash": 482130755 }, - "m_visualEffectAddName": { - "type": "std::string", + "m_pWindowStyle": { + "type": "class SharedPointer", "id": 8, - "offset": 200, - "flags": 7, + "offset": 232, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 3382086694 + "pointer": true, + "hash": 3623628394 }, - "m_visualEffectRemoveName": { - "type": "std::string", + "m_sHelp": { + "type": "std::wstring", "id": 9, - "offset": 232, - "flags": 7, + "offset": 248, + "flags": 4194439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1541697323 + "hash": 2102211316 }, - "m_onAddFunctorName": { + "m_sScript": { "type": "std::string", "id": 10, - "offset": 280, - "flags": 7, + "offset": 352, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1561843107 + "hash": 1846695875 }, - "m_onRemoveFunctorName": { - "type": "std::string", + "m_Offset": { + "type": "class Point", "id": 11, - "offset": 312, - "flags": 7, + "offset": 192, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2559017864 + "hash": 3389835433 }, - "m_stackingRule": { - "type": "enum STACKING_RULE", + "m_Scale": { + "type": "class Point", "id": 12, - "offset": 144, - "flags": 2097159, + "offset": 200, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 431568889, - "enum_options": { - "STACKING_ALLOWED": 0, - "STACKING_NOSTACK": 1, - "STACKING_REPLACE": 2 - } + "hash": 2547159940 }, - "m_pulsePeriod": { - "type": "double", + "m_sTip": { + "type": "std::wstring", "id": 13, - "offset": 360, - "flags": 7, + "offset": 392, + "flags": 4194439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3960618585 + "hash": 1513510520 }, - "m_pulseEventName": { - "type": "std::string", + "m_BubbleList": { + "type": "class WindowBubble", "id": 14, - "offset": 368, - "flags": 7, - "container": "Static", - "dynamic": false, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 1858926599 - } - } - }, - "470374064": { - "name": "class AddCameraMappingCinematicAction*", - "bases": [ - "CinematicAction", - "PropertyClass" - ], - "hash": 470374064, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 + "hash": 3091503757 }, - "m_camToReplace": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, + "m_bToggle": { + "type": "bool", + "id": 16, + "offset": 608, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2286913643 + "hash": 2071810903 }, - "m_replaceWithCam": { - "type": "std::string", - "id": 2, - "offset": 112, - "flags": 7, + "m_bButtonDown": { + "type": "bool", + "id": 17, + "offset": 609, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2992754084 - } - } - }, - "859850877": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 859850877, - "properties": { - "m_promoID": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, + "hash": 840041705 + }, + "m_sLabel": { + "type": "std::wstring", + "id": 18, + "offset": 616, + "flags": 4194439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3494513013 + "hash": 2207009163 }, - "m_promoTitle": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 31, + "m_labelOffset": { + "type": "class Rect", + "id": 19, + "offset": 832, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1797811434 + "hash": 1990646723 }, - "m_promoDesc": { - "type": "std::string", - "id": 2, - "offset": 136, - "flags": 31, + "m_pButton": { + "type": "class SharedPointer", + "id": 20, + "offset": 656, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 2677655015 + "pointer": true, + "hash": 1543855875 }, - "m_inviterRewards": { - "type": "class PromoRewardList", - "id": 3, - "offset": 168, - "flags": 31, + "m_HotKey": { + "type": "unsigned int", + "id": 21, + "offset": 672, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1643624525 + "hash": 1631553409 }, - "m_inviteeRewards": { - "type": "class PromoRewardList", - "id": 4, - "offset": 256, - "flags": 31, + "m_Color": { + "type": "class Color", + "id": 22, + "offset": 676, + "flags": 262279, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1654647008 - } - } - }, - "859645657": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 859645657, - "properties": { - "m_symbol": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, + "hash": 1753714077 + }, + "m_bCursorOver": { + "type": "bool", + "id": 23, + "offset": 689, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2464821841 + "hash": 283981103 }, - "m_face": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 7, + "m_bAbortWhenCursorNotOver": { + "type": "bool", + "id": 24, + "offset": 706, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1717071946 + "hash": 325405258 }, - "m_italic": { + "m_bHotKeyDown": { "type": "bool", - "id": 2, - "offset": 136, - "flags": 7, + "id": 25, + "offset": 680, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 571899305 + "hash": 616989185 }, - "m_bold": { - "type": "bool", - "id": 3, - "offset": 137, - "flags": 7, + "m_fTime": { + "type": "float", + "id": 26, + "offset": 684, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 221725300 - } - } - }, - "472205463": { - "name": "class StartingPipEffect", - "bases": [ - "GameEffectBase", - "PropertyClass" - ], - "hash": 472205463, - "properties": { - "m_currentTickCount": { - "type": "double", - "id": 0, - "offset": 80, - "flags": 63, + "hash": 883746156 + }, + "m_bGreyed": { + "type": "bool", + "id": 27, + "offset": 688, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2533274692 + "hash": 1566556053 }, - "m_effectNameID": { - "type": "unsigned int", - "id": 1, - "offset": 96, - "flags": 63, + "m_fMaxScale": { + "type": "float", + "id": 28, + "offset": 692, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1204067144 + "hash": 2070186635 }, - "m_bIsOnPet": { - "type": "bool", - "id": 2, - "offset": 73, - "flags": 31, + "m_fScaleSpeed": { + "type": "float", + "id": 29, + "offset": 696, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 522593303 + "hash": 1457135702 }, - "m_originatorID": { - "type": "gid", - "id": 3, - "offset": 104, - "flags": 39, + "m_bUseDropShadow": { + "type": "bool", + "id": 30, + "offset": 704, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1131810019 + "hash": 93063037 }, - "m_itemSlotID": { - "type": "unsigned int", - "id": 4, - "offset": 112, - "flags": 63, + "m_bUseOutline": { + "type": "bool", + "id": 31, + "offset": 705, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1895747595 + "hash": 744292994 }, - "m_internalID": { - "type": "int", - "id": 5, - "offset": 92, - "flags": 63, + "m_pGreyedState": { + "type": "class SharedPointer", + "id": 32, + "offset": 768, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1643137924 + "pointer": true, + "hash": 2703352263 }, - "m_endTime": { - "type": "unsigned int", - "id": 6, - "offset": 88, - "flags": 31, + "m_pNormalState": { + "type": "class SharedPointer", + "id": 33, + "offset": 752, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 716479635 + "pointer": true, + "hash": 1887909808 }, - "m_pipsGiven": { - "type": "int", - "id": 7, - "offset": 128, - "flags": 31, + "m_pHighlightedState": { + "type": "class SharedPointer", + "id": 34, + "offset": 784, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1346249167 + "pointer": true, + "hash": 2200177608 }, - "m_powerPipsGiven": { - "type": "int", - "id": 8, - "offset": 132, - "flags": 31, + "m_pSelectedState": { + "type": "class SharedPointer", + "id": 35, + "offset": 800, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 377908508 - } - } - }, - "859949060": { - "name": "class MoveCommandYawTime", - "bases": [ - "MoveController::MoveCommand", - "PropertyClass" - ], - "hash": 859949060, - "properties": { - "m_fYaw": { - "type": "float", - "id": 0, - "offset": 88, - "flags": 31, + "pointer": true, + "hash": 2266776432 + }, + "m_pDepressedState": { + "type": "class SharedPointer", + "id": 36, + "offset": 816, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 309564718 + "pointer": true, + "hash": 1878185798 }, - "m_fTime": { - "type": "double", - "id": 1, - "offset": 104, - "flags": 31, + "m_bUp": { + "type": "bool", + "id": 37, + "offset": 880, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2691355138 + "hash": 269510906 } } }, - "694559706": { - "name": "__int64", - "bases": [], - "hash": 694559706, - "properties": {} - }, - "585999433": { - "name": "class SharedPointer", + "1360945196": { + "name": "class TeamHelpUpdateSigilInfo*", "bases": [ - "ServiceOptionBase", "PropertyClass" ], - "hash": 585999433, + "hash": 1360945196, "properties": { - "m_serviceName": { - "type": "std::string", + "m_sigilID": { + "type": "unsigned int", "id": 0, "offset": 72, - "flags": 31, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2206028813 + "hash": 1425799538 }, - "m_iconKey": { + "m_buttonStringKey": { "type": "std::string", "id": 1, - "offset": 168, - "flags": 31, + "offset": 80, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2457138637 + "hash": 3226477495 }, - "m_displayKey": { - "type": "std::string", + "m_playerSchoolIDList": { + "type": "unsigned int", "id": 2, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, + "offset": 112, + "flags": 7, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 3023276954 + "hash": 346919403 }, - "m_serviceIndex": { - "type": "unsigned int", + "m_isInstance": { + "type": "bool", "id": 3, - "offset": 204, - "flags": 31, + "offset": 128, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2103126710 + "hash": 822314308 }, - "m_forceInteract": { - "type": "bool", + "m_secondsElapsed": { + "type": "unsigned int", "id": 4, - "offset": 200, - "flags": 31, + "offset": 132, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1705789564 + "hash": 1701124410 }, - "m_leaderboardType": { - "type": "std::string", + "m_isFarming": { + "type": "bool", "id": 5, - "offset": 216, - "flags": 31, + "offset": 136, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2181150930 - } - } - }, - "864245914": { - "name": "enum ProxyType", - "bases": [], - "hash": 864245914, - "properties": {} - }, - "519615609": { - "name": "class std::vector,class std::allocator >,class std::allocator,class std::allocator > > >", - "bases": [], - "hash": 519615609, - "properties": {} - }, - "863212426": { - "name": "class SharedPointer", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 863212426, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, + "hash": 328236467 + }, + "m_minimumTeamSize": { + "type": "unsigned char", + "id": 6, + "offset": 137, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3130754092 + "hash": 904550318 }, - "m_isPetTeleporter": { - "type": "bool", - "id": 1, - "offset": 120, + "m_pSigilMonthlyGauntletInfo": { + "type": "class SharedPointer", + "id": 7, + "offset": 144, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, + "pointer": true, + "hash": 1631820172 + }, + "m_requestedSigilMode": { + "type": "enum RequestedSigilMode", + "id": 8, + "offset": 76, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, "pointer": false, - "hash": 137008766 + "hash": 1327681577, + "enum_options": { + "REQUESTED_DEFAULT_MODE_SIGIL": 0, + "REQUESTED_STANDARD_MODE_SIGIL": 1, + "REQUESTED_ADVANCED_MODE_SIGIL": 2, + "REQUESTED_MONTHLYGAUNTLET_MODE_SIGIL": 3 + } } } }, - "497734595": { - "name": "class InteractableOption", + "1796253012": { + "name": "class SharedPointer", "bases": [ - "ServiceOptionBase", "PropertyClass" ], - "hash": 497734595, + "hash": 1796253012, "properties": { - "m_serviceName": { - "type": "std::string", + "m_goals": { + "type": "class GoalEntryFull*", + "id": 0, + "offset": 72, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2484767728 + } + } + }, + "947796097": { + "name": "class ReqIsGender", + "bases": [ + "Requirement", + "PropertyClass" + ], + "hash": 947796097, + "properties": { + "m_applyNOT": { + "type": "bool", "id": 0, "offset": 72, "flags": 31, @@ -618382,689 +568351,680 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 2206028813 + "hash": 1746328074, + "enum_options": { + "__DEFAULT": 0 + } }, - "m_iconKey": { - "type": "std::string", + "m_operator": { + "type": "enum Requirement::Operator", "id": 1, - "offset": 168, - "flags": 31, + "offset": 76, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2457138637 + "hash": 2672792317, + "enum_options": { + "ROP_AND": 0, + "ROP_OR": 1, + "__DEFAULT": "ROP_AND" + } }, - "m_displayKey": { + "m_playerGender": { "type": "std::string", "id": 2, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3023276954 - }, - "m_serviceIndex": { - "type": "unsigned int", - "id": 3, - "offset": 204, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2103126710 - }, - "m_forceInteract": { - "type": "bool", - "id": 4, - "offset": 200, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1705789564 - }, - "m_optionIndex": { - "type": "int", - "id": 5, - "offset": 216, + "offset": 80, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 276287019 - } - } - }, - "861429500": { - "name": "class DynaModBehavior*", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 861429500, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 + "hash": 2199467133 } } }, - "481246299": { - "name": "class CastleToursOption*", + "515253387": { + "name": "class ClientPlayGraphicOnSigilCinematicAction", "bases": [ - "ServiceOptionBase", + "PlayGraphicOnSigilCinematicAction", + "CinematicAction", "PropertyClass" ], - "hash": 481246299, + "hash": 515253387, "properties": { - "m_serviceName": { - "type": "std::string", + "m_timeOffset": { + "type": "float", "id": 0, "offset": 72, - "flags": 31, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2206028813 + "hash": 2237098605 }, - "m_iconKey": { - "type": "std::string", + "m_minDuration": { + "type": "float", "id": 1, - "offset": 168, - "flags": 31, + "offset": 80, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2457138637 + "hash": 1733171553 }, - "m_displayKey": { + "m_assetName": { "type": "std::string", "id": 2, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3023276954 - }, - "m_serviceIndex": { - "type": "unsigned int", - "id": 3, - "offset": 204, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2103126710 - }, - "m_forceInteract": { - "type": "bool", - "id": 4, - "offset": 200, - "flags": 31, + "offset": 88, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1705789564 + "hash": 1513131580 } } }, - "861424380": { - "name": "class DynaModBehavior", + "1361990231": { + "name": "class DynamicSigilRound*", "bases": [ - "BehaviorInstance", "PropertyClass" ], - "hash": 861424380, + "hash": 1361990231, "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", + "m_turns": { + "type": "class SharedPointer", "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, + "offset": 72, + "flags": 31, + "container": "Vector", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 223437287 + "pointer": true, + "hash": 1624806566 } } }, - "475785857": { - "name": "class SharedPointer", + "1797670612": { + "name": "class std::vector >", + "bases": [], + "hash": 1797670612, + "properties": {} + }, + "948329186": { + "name": "class ChatPopupButton*", "bases": [ - "StatisticEffect", - "GameEffectBase", + "ScrollablePopupButton", + "ControlPopupButton", + "ControlButton", + "Window", "PropertyClass" ], - "hash": 475785857, + "hash": 948329186, "properties": { - "m_currentTickCount": { - "type": "double", + "m_sName": { + "type": "std::string", "id": 0, "offset": 80, - "flags": 63, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2533274692 + "hash": 2306437263 }, - "m_effectNameID": { - "type": "unsigned int", + "m_Children": { + "type": "class SharedPointer", "id": 1, - "offset": 96, - "flags": 63, - "container": "Static", - "dynamic": false, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 1204067144 + "pointer": true, + "hash": 2621225959 }, - "m_bIsOnPet": { - "type": "bool", + "m_Style": { + "type": "unsigned int", "id": 2, - "offset": 73, - "flags": 31, + "offset": 152, + "flags": 1048583, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 522593303 + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152, + "POPDOWN_SIBLINGS": 67108864, + "DISABLE_CHILDREN": 134217728, + "HIDE_SIBLINGS": 268435456, + "POPUP_ON_HOVER": 536870912 + } }, - "m_originatorID": { - "type": "gid", + "m_Flags": { + "type": "unsigned int", "id": 3, - "offset": 104, - "flags": 39, + "offset": 156, + "flags": 1048583, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1131810019 + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } }, - "m_itemSlotID": { - "type": "unsigned int", + "m_Window": { + "type": "class Rect", "id": 4, - "offset": 112, - "flags": 63, + "offset": 160, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1895747595 + "hash": 3105139380 }, - "m_internalID": { - "type": "int", + "m_fTargetAlpha": { + "type": "float", "id": 5, - "offset": 92, - "flags": 63, + "offset": 212, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1643137924 + "hash": 1809129834 }, - "m_endTime": { - "type": "unsigned int", + "m_fDisabledAlpha": { + "type": "float", "id": 6, - "offset": 88, - "flags": 31, + "offset": 216, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 716479635 + "hash": 1389987675 }, - "m_lookupIndex": { - "type": "int", + "m_fAlpha": { + "type": "float", "id": 7, - "offset": 128, - "flags": 31, + "offset": 208, + "flags": 65671, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1626623948 + "hash": 482130755 }, - "m_damageBonusPercent": { - "type": "float", + "m_pWindowStyle": { + "type": "class SharedPointer", "id": 8, - "offset": 136, - "flags": 63, + "offset": 232, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 623230606 + "pointer": true, + "hash": 3623628394 }, - "m_damageBonusFlat": { - "type": "float", + "m_sHelp": { + "type": "std::wstring", "id": 9, - "offset": 180, - "flags": 63, + "offset": 248, + "flags": 4194439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2212039108 + "hash": 2102211316 }, - "m_accuracyBonusPercent": { - "type": "float", + "m_sScript": { + "type": "std::string", "id": 10, - "offset": 140, - "flags": 63, + "offset": 352, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1972336538 + "hash": 1846695875 }, - "m_armorPiercingBonusPercent": { - "type": "float", + "m_Offset": { + "type": "class Point", "id": 11, - "offset": 144, - "flags": 63, + "offset": 192, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1569912641 + "hash": 3389835433 }, - "m_damageReducePercent": { - "type": "float", + "m_Scale": { + "type": "class Point", "id": 12, - "offset": 148, - "flags": 63, + "offset": 200, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 541736927 + "hash": 2547159940 }, - "m_damageReduceFlat": { - "type": "float", + "m_sTip": { + "type": "std::wstring", "id": 13, - "offset": 152, - "flags": 63, + "offset": 392, + "flags": 4194439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 684172469 + "hash": 1513510520 }, - "m_accuracyReducePercent": { - "type": "float", + "m_BubbleList": { + "type": "class WindowBubble", "id": 14, - "offset": 156, - "flags": 63, - "container": "Static", - "dynamic": false, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 2112559723 + "hash": 2587533771 }, - "m_healBonusPercent": { - "type": "float", + "m_ParentOffset": { + "type": "class Rect", "id": 15, - "offset": 160, - "flags": 63, + "offset": 176, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 562313577 + "hash": 3091503757 }, - "m_healIncBonusPercent": { - "type": "float", + "m_bToggle": { + "type": "bool", "id": 16, - "offset": 164, - "flags": 63, + "offset": 608, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2182535587 + "hash": 2071810903 }, - "m_hitPointBonus": { - "type": "float", + "m_bButtonDown": { + "type": "bool", "id": 17, - "offset": 204, - "flags": 63, + "offset": 609, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 880644461 + "hash": 840041705 }, - "m_spellChargeBonus": { - "type": "int", + "m_sLabel": { + "type": "std::wstring", "id": 18, - "offset": 212, - "flags": 63, + "offset": 616, + "flags": 4194439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2019610507 + "hash": 2207009163 }, - "m_powerPipBonusPercent": { - "type": "float", + "m_labelOffset": { + "type": "class Rect", "id": 19, - "offset": 168, - "flags": 63, + "offset": 832, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1671446341 + "hash": 1990646723 }, - "m_petActChance": { - "type": "int", + "m_pButton": { + "type": "class SharedPointer", "id": 20, - "offset": 200, - "flags": 63, + "offset": 656, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 237418461 + "pointer": true, + "hash": 1543855875 }, - "m_manaBonus": { - "type": "float", + "m_HotKey": { + "type": "unsigned int", "id": 21, - "offset": 208, - "flags": 63, + "offset": 672, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1372708603 + "hash": 1631553409 }, - "m_expPercent": { - "type": "float", + "m_Color": { + "type": "class Color", "id": 22, - "offset": 184, - "flags": 63, + "offset": 676, + "flags": 262279, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1147850677 + "hash": 1753714077 }, - "m_goldPercent": { - "type": "float", + "m_bCursorOver": { + "type": "bool", "id": 23, - "offset": 188, - "flags": 63, + "offset": 689, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1095720878 + "hash": 283981103 }, - "m_energyBonus": { - "type": "float", + "m_bAbortWhenCursorNotOver": { + "type": "bool", "id": 24, - "offset": 216, - "flags": 63, + "offset": 706, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2223158984 + "hash": 325405258 }, - "m_criticalHitRating": { - "type": "float", + "m_bHotKeyDown": { + "type": "bool", "id": 25, - "offset": 220, - "flags": 63, + "offset": 680, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1978690540 + "hash": 616989185 }, - "m_blockRating": { + "m_fTime": { "type": "float", "id": 26, - "offset": 224, - "flags": 63, + "offset": 684, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2088486759 + "hash": 883746156 }, - "m_accuracyRating": { - "type": "float", + "m_bGreyed": { + "type": "bool", "id": 27, - "offset": 228, - "flags": 63, + "offset": 688, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 165525575 + "hash": 1566556053 }, - "m_powerPipRating": { + "m_fMaxScale": { "type": "float", "id": 28, - "offset": 232, - "flags": 63, + "offset": 692, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1355340722 + "hash": 2070186635 }, - "m_damageResistanceRating": { + "m_fScaleSpeed": { "type": "float", "id": 29, - "offset": 240, - "flags": 63, + "offset": 696, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1961377740 + "hash": 1457135702 }, - "m_archmastery": { - "type": "float", + "m_bUseDropShadow": { + "type": "bool", "id": 30, - "offset": 244, - "flags": 63, + "offset": 704, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1963579610 + "hash": 93063037 }, - "m_archmasteryBonusPercent": { - "type": "float", + "m_bUseOutline": { + "type": "bool", "id": 31, - "offset": 288, - "flags": 63, + "offset": 705, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1908627154 + "hash": 744292994 }, - "m_balanceMastery": { - "type": "int", + "m_pGreyedState": { + "type": "class SharedPointer", "id": 32, - "offset": 248, - "flags": 63, + "offset": 768, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 149062181 + "pointer": true, + "hash": 2703352263 }, - "m_deathMastery": { - "type": "int", + "m_pNormalState": { + "type": "class SharedPointer", "id": 33, - "offset": 252, - "flags": 63, + "offset": 752, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1421218661 + "pointer": true, + "hash": 1887909808 }, - "m_fireMastery": { - "type": "int", + "m_pHighlightedState": { + "type": "class SharedPointer", "id": 34, - "offset": 256, - "flags": 63, + "offset": 784, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1431794949 + "pointer": true, + "hash": 2200177608 }, - "m_iceMastery": { - "type": "int", + "m_pSelectedState": { + "type": "class SharedPointer", "id": 35, - "offset": 260, - "flags": 63, + "offset": 800, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 704864240 + "pointer": true, + "hash": 2266776432 }, - "m_lifeMastery": { - "type": "int", + "m_pDepressedState": { + "type": "class SharedPointer", "id": 36, - "offset": 264, - "flags": 63, + "offset": 816, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 2142136447 + "pointer": true, + "hash": 1878185798 }, - "m_mythMastery": { - "type": "int", + "m_bUp": { + "type": "bool", "id": 37, - "offset": 268, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1766317185 - }, - "m_stormMastery": { - "type": "int", - "id": 38, - "offset": 272, - "flags": 63, + "offset": 880, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1883988244 - }, - "m_stunResistancePercent": { - "type": "float", - "id": 39, - "offset": 276, - "flags": 63, - "container": "Static", - "dynamic": false, + "hash": 269510906 + } + } + }, + "1361135213": { + "name": "class MailList", + "bases": [ + "PropertyClass" + ], + "hash": 1361135213, + "properties": { + "m_messages": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 31, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 1868382627 - }, - "m_fishingLuckBonusPercent": { - "type": "float", - "id": 40, - "offset": 192, - "flags": 63, - "container": "Static", - "dynamic": false, + "pointer": true, + "hash": 1129442288 + } + } + }, + "1796755863": { + "name": "class DynamicURLWhitelist", + "bases": [ + "PropertyClass" + ], + "hash": 1796755863, + "properties": { + "m_whitelist": { + "type": "class DynamicURLDescriptor", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Vector", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 1363349254 - }, - "m_shadowPipBonusPercent": { - "type": "float", - "id": 41, - "offset": 172, - "flags": 63, + "hash": 2741681576 + } + } + }, + "515477390": { + "name": "class BadgeFilterDescription*", + "bases": [ + "PropertyClass" + ], + "hash": 515477390, + "properties": { + "m_filterName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1426533310 + "hash": 1798118690 }, - "m_wispBonusPercent": { - "type": "float", - "id": 42, - "offset": 196, - "flags": 63, + "m_filterIcon": { + "type": "std::string", + "id": 1, + "offset": 104, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1304386546 + "hash": 1797941258 }, - "m_pipConversionRating": { - "type": "float", - "id": 43, - "offset": 280, - "flags": 63, + "m_displayKey": { + "type": "std::string", + "id": 2, + "offset": 136, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 246855691 + "hash": 3023276954 }, - "m_shadowPipRating": { - "type": "float", - "id": 44, - "offset": 236, - "flags": 63, + "m_countOffset": { + "type": "unsigned int", + "id": 3, + "offset": 172, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 507126123 + "hash": 621805021 } } }, - "860262763": { - "name": "class SharedPointer", + "1796405193": { + "name": "class DynamicSigilSubcircle", "bases": [ - "ReqNumeric", - "Requirement", "PropertyClass" ], - "hash": 860262763, + "hash": 1796405193, "properties": { - "m_applyNOT": { - "type": "bool", + "m_id": { + "type": "int", "id": 0, "offset": 72, "flags": 31, @@ -619072,28 +569032,20 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 1746328074, - "enum_options": { - "__DEFAULT": 0 - } + "hash": 2090586215 }, - "m_operator": { - "type": "enum Requirement::Operator", + "m_teamIndex": { + "type": "int", "id": 1, "offset": 76, - "flags": 2097183, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2672792317, - "enum_options": { - "ROP_AND": 0, - "ROP_OR": 1, - "__DEFAULT": "ROP_AND" - } + "hash": 1621537177 }, - "m_numericValue": { + "m_rotation": { "type": "float", "id": 2, "offset": 80, @@ -619102,29 +569054,21 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 521915239 + "hash": 1497468551 }, - "m_operatorType": { - "type": "enum ReqNumeric::OPERATOR_TYPE", + "m_radius": { + "type": "float", "id": 3, "offset": 84, - "flags": 2097183, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2228122961, - "enum_options": { - "OPERATOR_UNKNOWN": 4294967295, - "OPERATOR_EQUALS": 0, - "OPERATOR_GREATER_THAN": 1, - "OPERATOR_LESS_THAN": 2, - "OPERATOR_GREATER_THAN_EQ": 3, - "OPERATOR_LESS_THAN_EQ": 4 - } + "hash": 989410271 }, - "m_isPercent": { - "type": "bool", + "m_locationPreference": { + "type": "std::string", "id": 4, "offset": 88, "flags": 31, @@ -619132,1443 +569076,1554 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 514192128 + "hash": 2817699507 + }, + "m_symbol": { + "type": "enum DynamicSigilSymbol", + "id": 5, + "offset": 120, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1055639026, + "enum_options": { + "NotSet": 0, + "Dagger": 1, + "Key": 2, + "Gem": 3, + "Spiral": 4, + "Book": 5, + "Chalice": 6, + "Wand": 7, + "Potion": 8, + "Sun": 9, + "Eye": 10, + "Star": 11, + "Moon": 12 + } } } }, - "474222926": { - "name": "class CantripsInvisibilityEffect*", + "515452814": { + "name": "class BadgeFilterDescription", "bases": [ - "GameEffectBase", "PropertyClass" ], - "hash": 474222926, + "hash": 515452814, "properties": { - "m_currentTickCount": { - "type": "double", + "m_filterName": { + "type": "std::string", "id": 0, - "offset": 80, - "flags": 63, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2533274692 + "hash": 1798118690 }, - "m_effectNameID": { - "type": "unsigned int", + "m_filterIcon": { + "type": "std::string", "id": 1, - "offset": 96, - "flags": 63, + "offset": 104, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1204067144 + "hash": 1797941258 }, - "m_bIsOnPet": { - "type": "bool", + "m_displayKey": { + "type": "std::string", "id": 2, - "offset": 73, - "flags": 31, + "offset": 136, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 522593303 + "hash": 3023276954 }, - "m_originatorID": { - "type": "gid", + "m_countOffset": { + "type": "unsigned int", "id": 3, - "offset": 104, - "flags": 39, + "offset": 172, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1131810019 - }, - "m_itemSlotID": { - "type": "unsigned int", - "id": 4, - "offset": 112, - "flags": 63, + "hash": 621805021 + } + } + }, + "949910256": { + "name": "class PlayGraphicOnSigilCinematicAction*", + "bases": [ + "CinematicAction", + "PropertyClass" + ], + "hash": 949910256, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1895747595 + "hash": 2237098605 }, - "m_internalID": { - "type": "int", - "id": 5, - "offset": 92, - "flags": 63, + "m_minDuration": { + "type": "float", + "id": 1, + "offset": 80, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1643137924 + "hash": 1733171553 }, - "m_endTime": { - "type": "unsigned int", - "id": 6, + "m_assetName": { + "type": "std::string", + "id": 2, "offset": 88, - "flags": 31, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 716479635 + "hash": 1513131580 } } }, - "473949253": { - "name": "class NaturalSummonCinematicStageTemplate", + "1362569714": { + "name": "class SharedPointer", "bases": [ - "CinematicStageTemplate", + "Window", "PropertyClass" ], - "hash": 473949253, + "hash": 1362569714, "properties": { - "m_name": { + "m_sName": { "type": "std::string", "id": 0, - "offset": 72, - "flags": 7, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306437263 + }, + "m_Children": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621225959 + }, + "m_Style": { + "type": "unsigned int", + "id": 2, + "offset": 152, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "SCALE_CHILDREN": 2, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "FOCUS_LOCKED": 64, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152 + } + }, + "m_Flags": { + "type": "unsigned int", + "id": 3, + "offset": 156, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } + }, + "m_Window": { + "type": "class Rect", + "id": 4, + "offset": 160, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3105139380 + }, + "m_fTargetAlpha": { + "type": "float", + "id": 5, + "offset": 212, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1809129834 + }, + "m_fDisabledAlpha": { + "type": "float", + "id": 6, + "offset": 216, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1717359772 + "hash": 1389987675 }, - "m_duration": { + "m_fAlpha": { "type": "float", - "id": 1, - "offset": 104, - "flags": 7, + "id": 7, + "offset": 208, + "flags": 65671, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 920323453 + "hash": 482130755 }, - "m_actions": { - "type": "class SharedPointer", - "id": 2, - "offset": 112, - "flags": 7, - "container": "List", - "dynamic": true, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": true, - "hash": 1380578687 + "hash": 3623628394 }, - "m_stageRelationships": { - "type": "class SharedPointer", - "id": 3, - "offset": 128, - "flags": 7, - "container": "List", - "dynamic": true, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 499983354 + "pointer": false, + "hash": 2102211316 }, - "m_sound": { + "m_sScript": { "type": "std::string", - "id": 4, - "offset": 152, - "flags": 131079, + "id": 10, + "offset": 352, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2307644996 - } - } - }, - "473754256": { - "name": "class CastleMagicItem*", - "bases": [ - "PropertyClass" - ], - "hash": 473754256, - "properties": { - "m_id": { - "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 7, + "hash": 1846695875 + }, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2301988666 + "hash": 3389835433 }, - "m_flags": { - "type": "unsigned int", - "id": 1, - "offset": 76, - "flags": 7, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1005801050 + "hash": 2547159940 }, - "m_movedPosition": { - "type": "class Vector3D", - "id": 2, - "offset": 104, - "flags": 7, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3719762834 + "hash": 1513510520 }, - "m_movedYaw": { - "type": "float", - "id": 3, - "offset": 116, - "flags": 7, - "container": "Static", - "dynamic": false, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 1088556419 + "hash": 2587533771 }, - "m_movedScale": { - "type": "float", - "id": 4, - "offset": 120, - "flags": 7, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 569059130 + "hash": 3091503757 } } }, - "888093071": { - "name": "class std::list >", - "bases": [], - "hash": 888093071, - "properties": {} - }, - "1667523383": { - "name": "class AvatarOptionBase", + "949610138": { + "name": "class WinAnimScaleSymmetricalSpeed*", "bases": [ + "WinAnimScaleSymmetrical", + "WindowAnimation", "PropertyClass" ], - "hash": 1667523383, + "hash": 949610138, "properties": { - "m_conditionFlags": { - "type": "std::string", + "m_bUseDeepCopy": { + "type": "bool", "id": 0, "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, + "flags": 135, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 2483653903 - } - } - }, - "488726748": { - "name": "class SharedPointer", - "bases": [ - "NodeDescriptor", - "PropertyClass" - ], - "hash": 488726748, - "properties": { - "m_kAnimationState": { - "type": "enum SpringboardNodeDescriptor::AnimationState", - "id": 0, - "offset": 72, - "flags": 2097159, + "hash": 433380635 + }, + "m_scale": { + "type": "float", + "id": 1, + "offset": 80, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1775415814, - "enum_options": { - "Down": 0, - "Shake": 1, - "PopUp": 2, - "Up": 3, - "Reset": 4 - } + "hash": 899693439 + }, + "m_fSpeed": { + "type": "float", + "id": 2, + "offset": 88, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 503609006 } } }, - "862759055": { - "name": "class SharedPointer", + "1797086702": { + "name": "class SharedPointer", "bases": [ + "GoalTemplate", + "CoreTemplate", "PropertyClass" ], - "hash": 862759055, + "hash": 1797086702, "properties": { - "m_guildAchievementDataList": { - "type": "class SharedPointer", + "m_behaviors": { + "type": "class BehaviorTemplate*", "id": 0, "offset": 72, "flags": 7, - "container": "List", + "container": "Vector", "dynamic": true, "singleton": false, "pointer": true, - "hash": 1717126676 - } - } - }, - "74866119": { - "name": "class Party", - "bases": [ - "Group", - "PropertyClass" - ], - "hash": 74866119, - "properties": { - "m_GroupID": { - "type": "gid", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 586506386 + "hash": 1197808594 }, - "m_ChannelID": { - "type": "gid", + "m_goalName": { + "type": "std::string", "id": 1, - "offset": 80, - "flags": 31, + "offset": 104, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1585983742 + "hash": 1521627807 }, - "m_MemberList": { - "type": "class SharedPointer", + "m_goalNameID": { + "type": "unsigned int", "id": 2, - "offset": 88, - "flags": 31, - "container": "List", - "dynamic": true, + "offset": 496, + "flags": 7, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2864705424 + "pointer": false, + "hash": 403158846 }, - "m_nMaxSize": { - "type": "unsigned int", + "m_goalTitle": { + "type": "std::string", "id": 3, - "offset": 104, - "flags": 31, + "offset": 136, + "flags": 8388615, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1265869948 + "hash": 2291910240 }, - "m_fromAdventureParty": { - "type": "bool", + "m_goalUnderway": { + "type": "std::string", "id": 4, - "offset": 128, - "flags": 31, + "offset": 168, + "flags": 8388615, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 940992997 + "hash": 3153144269 }, - "m_leaderGID": { - "type": "gid", + "m_hyperlink": { + "type": "std::string", "id": 5, - "offset": 136, - "flags": 31, + "offset": 200, + "flags": 8388615, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 700505145 + "hash": 2887798993 }, - "m_questGID": { - "type": "gid", + "m_completeText": { + "type": "std::string", "id": 6, - "offset": 144, - "flags": 31, + "offset": 232, + "flags": 8388615, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 331631550 + "hash": 2767458393 }, - "m_goalGID": { - "type": "gid", + "m_completeResults": { + "type": "class ResultList*", "id": 7, - "offset": 152, - "flags": 31, + "offset": 440, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 976914927 - } - } - }, - "1214710570": { - "name": "class LootInfoList", - "bases": [ - "PropertyClass" - ], - "hash": 1214710570, - "properties": { - "m_loot": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, "pointer": true, - "hash": 2139157014 + "hash": 1964258099 }, - "m_goldInfo": { - "type": "class SharedPointer", - "id": 1, - "offset": 88, - "flags": 31, + "m_goalRequirements": { + "type": "class RequirementList*", + "id": 8, + "offset": 448, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": true, - "hash": 2077081000 + "hash": 2979967145 }, - "m_lootRarityList": { - "type": "class SharedPointer", - "id": 2, - "offset": 104, - "flags": 31, + "m_tallyCounter": { + "type": "class TallyCounterTemplate*", + "id": 9, + "offset": 456, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": true, - "hash": 3268854573 - } - } - }, - "1636982071": { - "name": "class PetGameEnergyCost*", - "bases": [ - "PropertyClass" - ], - "hash": 1636982071, - "properties": { - "m_rank": { - "type": "unsigned char", - "id": 0, - "offset": 72, - "flags": 7, + "hash": 1884546193 + }, + "m_locationName": { + "type": "std::string", + "id": 10, + "offset": 272, + "flags": 8388615, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 857403388 + "hash": 1824218389 }, - "m_cost": { - "type": "unsigned char", - "id": 1, - "offset": 73, - "flags": 7, + "m_displayImage1": { + "type": "std::string", + "id": 11, + "offset": 304, + "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 856879753 - } - } - }, - "74189249": { - "name": "class DebugWizardComponent", - "bases": [ - "PropertyClass" - ], - "hash": 74189249, - "properties": {} - }, - "473555750": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 473555750, - "properties": { - "m_res": { - "type": "int", - "id": 0, - "offset": 72, - "flags": 7, + "hash": 1959572133 + }, + "m_displayImage2": { + "type": "std::string", + "id": 12, + "offset": 336, + "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 267047684 + "hash": 1959572134 }, - "m_microScale": { - "type": "float", - "id": 1, - "offset": 76, + "m_clientTags": { + "type": "std::string", + "id": 13, + "offset": 368, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 1618708793 + "hash": 2319030025 }, - "m_tinyScale": { - "type": "float", - "id": 2, - "offset": 80, + "m_genericEvents": { + "type": "std::string", + "id": 14, + "offset": 384, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 3466670829 + }, + "m_autoQualify": { + "type": "bool", + "id": 15, + "offset": 400, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 477118371 + "hash": 1878907431 }, - "m_smallScale": { - "type": "float", - "id": 3, - "offset": 84, + "m_autoComplete": { + "type": "bool", + "id": 16, + "offset": 401, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 491529176 + "hash": 1302545445 }, - "m_regularScale": { - "type": "float", - "id": 4, - "offset": 88, - "flags": 7, + "m_destinationZone": { + "type": "std::string", + "id": 17, + "offset": 408, + "flags": 268435463, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1846588305 + "hash": 2605356153, + "enum_options": { + "__BASECLASS": "ZoneData" + } }, - "m_largeScale": { - "type": "float", - "id": 5, - "offset": 92, + "m_dialogList": { + "type": "class ActorDialogListBase*", + "id": 18, + "offset": 264, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 710194858 + "pointer": true, + "hash": 1909154969 }, - "m_hugeScale": { - "type": "float", - "id": 6, + "m_goalType": { + "type": "enum GoalTemplate::GOAL_TYPE", + "id": 19, "offset": 96, - "flags": 7, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1882331208 - } - } - }, - "1636900316": { - "name": "class BattlegroundPOI", - "bases": [ - "PropertyClass" - ], - "hash": 1636900316, - "properties": { - "m_poiList": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, + "hash": 1488021149, + "enum_options": { + "GOAL_TYPE_UNKNOWN": 0, + "GOAL_TYPE_BOUNTY": 1, + "GOAL_TYPE_BOUNTYCOLLECT": 2, + "GOAL_TYPE_SCAVENGE": 3, + "GOAL_TYPE_PERSONA": 4, + "GOAL_TYPE_WAYPOINT": 5, + "GOAL_TYPE_SCAVENGEFAKE": 6, + "GOAL_TYPE_ACHIEVERANK": 7, + "GOAL_TYPE_USAGE": 8, + "GOAL_TYPE_COMPLETEQUEST": 9, + "GOAL_TYPE_SOCIARANK": 10, + "GOAL_TYPE_SOCIACURRENCY": 11, + "GOAL_TYPE_SOCIAMINIGAME": 12, + "GOAL_TYPE_SOCIAGIVEITEM": 13, + "GOAL_TYPE_SOCIAGETITEM": 14, + "GOAL_TYPE_COLLECTAFTERBOUNTY": 15, + "GOAL_TYPE_ENCOUNTER_WAYPOINT_FOREACH": 16 + } + }, + "m_noQuestHelper": { + "type": "bool", + "id": 20, + "offset": 500, "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 3936595873 - } - } - }, - "74113067": { - "name": "class HatchmakingKioskBehavior*", - "bases": [ - "HatchmakingKioskBehaviorBase", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 74113067, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 + "hash": 578010882, + "enum_options": { + "__DEFAULT": 0 + } }, - "m_hatchDayPetCode": { - "type": "unsigned int", - "id": 1, - "offset": 112, - "flags": 31, + "m_petOnlyQuest": { + "type": "bool", + "id": 21, + "offset": 501, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1354692695 - } - } - }, - "864116180": { - "name": "class SharedPointer", - "bases": [ - "CreateAuraActorCinematicAction", - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 864116180, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, + "hash": 679359344, + "enum_options": { + "__DEFAULT": 0 + } + }, + "m_activateResults": { + "type": "class ResultList*", + "id": 22, + "offset": 504, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 2237098605 + "pointer": true, + "hash": 3790153995 }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, + "m_hideGoalFloatyText": { + "type": "bool", + "id": 23, + "offset": 512, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2285866132 + "hash": 1919383204, + "enum_options": { + "__DEFAULT": 0 + } }, - "m_newActorName": { + "m_itemAdjectives": { "type": "std::string", - "id": 2, - "offset": 120, + "id": 24, + "offset": 528, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1723744652 + }, + "m_itemTotal": { + "type": "int", + "id": 25, + "offset": 520, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2029131039 + "hash": 1809457197 } } }, - "863294800": { - "name": "class ClientInfractionBehavior", + "949603994": { + "name": "class WinAnimScaleSymmetricalSpeed", "bases": [ - "InfractionBehavior", - "BehaviorInstance", + "WinAnimScaleSymmetrical", + "WindowAnimation", "PropertyClass" ], - "hash": 863294800, + "hash": 949603994, "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", + "m_bUseDeepCopy": { + "type": "bool", "id": 0, - "offset": 104, - "flags": 39, + "offset": 72, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 + "hash": 433380635 }, - "m_penalties": { - "type": "class SharedPointer", + "m_scale": { + "type": "float", "id": 1, - "offset": 112, - "flags": 31, - "container": "List", - "dynamic": true, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1696001746 + "pointer": false, + "hash": 899693439 }, - "m_record": { - "type": "class SharedPointer", + "m_fSpeed": { + "type": "float", "id": 2, - "offset": 128, - "flags": 16, - "container": "List", - "dynamic": true, + "offset": 88, + "flags": 135, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2129713657 + "pointer": false, + "hash": 503609006 } } }, - "1214784666": { - "name": "class ConicalSoundEmitterInfo", + "1362663815": { + "name": "class ProvidePetPowerInfo*", "bases": [ - "PositionalSoundEmitterInfo", - "SoundEmitterInfo", - "SoundInfo", - "ClientObjectInfo", - "CoreObjectInfo", + "GameEffectInfo", "PropertyClass" ], - "hash": 1214784666, + "hash": 1362663815, "properties": { - "m_templateID.m_full": { - "type": "unsigned __int64", + "m_effectName": { + "type": "std::string", "id": 0, "offset": 72, - "flags": 33554439, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 633907631 + "hash": 2029161513 }, - "m_nObjectID": { - "type": "unsigned int", + "m_happinessCost": { + "type": "int", "id": 1, - "offset": 80, - "flags": 7, + "offset": 104, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 748496927 + "hash": 1107125310 }, - "m_location": { - "type": "class Vector3D", + "m_cooldown": { + "type": "int", "id": 2, - "offset": 84, - "flags": 7, + "offset": 108, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2239683611 + "hash": 1897549823 }, - "m_orientation": { - "type": "class Vector3D", + "m_usesPerCombat": { + "type": "int", "id": 3, - "offset": 96, - "flags": 7, + "offset": 112, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2344058766 + "hash": 1445312791 }, - "m_fScale": { - "type": "float", + "m_unlockedTemplate": { + "type": "std::string", "id": 4, - "offset": 108, - "flags": 7, + "offset": 120, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 503137701 + "hash": 1809846764 }, - "m_zoneTag": { + "m_lockedTemplate": { "type": "std::string", "id": 5, "offset": 152, - "flags": 7, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3405382643 + "hash": 2044999913 }, - "m_startState": { - "type": "std::string", + "m_combatTalent": { + "type": "bool", "id": 6, "offset": 184, - "flags": 7, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2166880458 + "hash": 2113651857 }, - "m_overrideName": { + "m_triggerName": { "type": "std::string", "id": 7, - "offset": 120, - "flags": 8388615, + "offset": 192, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1990707228 + "hash": 3100183568 }, - "m_globalDynamic": { - "type": "bool", + "m_unlockReagentAmount1": { + "type": "int", "id": 8, - "offset": 116, - "flags": 7, + "offset": 224, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1951691017 + "hash": 1546338481 }, - "m_bUndetectable": { - "type": "bool", + "m_unlockReagentTemplate1": { + "type": "unsigned int", "id": 9, - "offset": 216, - "flags": 7, + "offset": 228, + "flags": 33554463, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1907454341 + "hash": 943550188 }, - "m_spawnRequirements": { - "type": "class SharedPointer", + "m_unlockReagentAmount2": { + "type": "int", "id": 10, - "offset": 224, - "flags": 7, + "offset": 232, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2309120870 + "pointer": false, + "hash": 1546338482 }, - "m_loadingType": { - "type": "enum CoreObjectInfo::LoadingType", + "m_unlockReagentTemplate2": { + "type": "unsigned int", "id": 11, - "offset": 112, - "flags": 2097159, + "offset": 236, + "flags": 33554463, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3522422550, - "enum_options": { - "STATIC_CLIENT_SERVER": 0, - "STATIC_CLIENT": 1, - "STATIC_SERVER": 2, - "DYNAMIC_SERVER": 3 - } + "hash": 943550189 }, - "m_radius": { - "type": "float", + "m_unlockReagentAmount3": { + "type": "int", "id": 12, - "offset": 256, - "flags": 7, + "offset": 240, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 989410271 + "hash": 1546338483 }, - "m_exclusive": { - "type": "bool", + "m_unlockReagentTemplate3": { + "type": "unsigned int", "id": 13, - "offset": 260, - "flags": 7, + "offset": 244, + "flags": 33554463, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 824383403 + "hash": 943550190 }, - "m_startActive": { - "type": "bool", + "m_unlockReagentAmount4": { + "type": "int", "id": 14, - "offset": 261, - "flags": 7, + "offset": 248, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2031339229 + "hash": 1546338484 }, - "m_category": { - "type": "enum AudioCategory", + "m_unlockReagentTemplate4": { + "type": "unsigned int", "id": 15, - "offset": 264, - "flags": 2097159, + "offset": 252, + "flags": 33554463, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2951251982, - "enum_options": { - "AudioCategory_Irrelevent": 0, - "AudioCategory_Accoustic": 1, - "AudioCategory_Noise": 2, - "AudioCategory_Music": 3 - } + "hash": 943550191 }, - "m_override": { - "type": "int", + "m_extra1": { + "type": "std::string", "id": 16, - "offset": 268, - "flags": 1048583, + "offset": 256, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 136872410, - "enum_options": { - "OVR_RADIUS": 1, - "OVR_CATEGORY": 2, - "OVR_EXCLUSIVE": 4, - "OVR_SIGNATURE": 64, - "OVR_VOLUME": 8, - "OVR_LOOPCOUNT": 16, - "OVR_ACTIVE": 32, - "OVR_PLAYPROG": 128, - "OVR_PRIORITY": 256, - "OVR_PROGTIME": 512, - "OVR_FILTERSET": 1024 - } + "hash": 1916008880 }, - "m_enableReqs": { - "type": "class SharedPointer", + "m_extra2": { + "type": "std::string", "id": 17, - "offset": 272, - "flags": 263, + "offset": 288, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3158020443 + "pointer": false, + "hash": 1916008881 }, - "m_volume": { - "type": "float", + "m_lootTableName": { + "type": "std::string", "id": 18, - "offset": 288, - "flags": 7, + "offset": 320, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1162855023 + "hash": 2333333378 }, - "m_loopCount": { - "type": "int", + "m_powerDisplayName": { + "type": "std::string", "id": 19, - "offset": 292, - "flags": 7, + "offset": 352, + "flags": 8388639, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 865634717 + "hash": 2338393887 }, - "m_trackFilenameList": { - "type": "std::string", + "m_requirementList": { + "type": "class SharedPointer", "id": 20, - "offset": 312, - "flags": 131079, - "container": "Vector", - "dynamic": true, + "offset": 384, + "flags": 31, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": false, - "hash": 2531081709 + "pointer": true, + "hash": 3783909798 }, - "m_playList": { - "type": "class PlayListEntry*", + "m_requirementFailedString": { + "type": "std::string", "id": 21, - "offset": 336, - "flags": 7, - "container": "Vector", - "dynamic": true, + "offset": 400, + "flags": 8388639, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3907873161 + "pointer": false, + "hash": 2051573416 }, - "m_priority": { - "type": "int", + "m_noPVP": { + "type": "bool", "id": 22, - "offset": 296, - "flags": 7, + "offset": 436, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1235205852 + "hash": 806455846 }, - "m_progression": { - "type": "enum PlayList::Progression", + "m_rampUp": { + "type": "int", "id": 23, - "offset": 300, - "flags": 2097159, + "offset": 440, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3279400238, - "enum_options": { - "Sequence": 0, - "Random": 1, - "SequenceOnceOnly": 2, - "RandomNoRepeat": 3 - } + "hash": 899539119 }, - "m_progressMin": { - "type": "float", + "m_description": { + "type": "std::string", "id": 24, - "offset": 304, - "flags": 7, + "offset": 448, + "flags": 8388639, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1497550192 + "hash": 1649374815 }, - "m_progressMax": { - "type": "float", + "m_myTurn": { + "type": "bool", "id": 25, - "offset": 308, - "flags": 7, + "offset": 480, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1497549938 - }, - "m_audioFilterSet": { - "type": "unsigned int", - "id": 26, - "offset": 360, - "flags": 33554439, + "hash": 733913410 + } + } + }, + "515516712": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 515516712, + "properties": { + "m_minLevel": { + "type": "int", + "id": 0, + "offset": 88, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 831339825 + "hash": 1496818518 }, - "m_clientTag": { - "type": "std::string", - "id": 27, - "offset": 368, + "m_critAndBlockValues": { + "type": "class SharedPointer", + "id": 1, + "offset": 72, "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 3047956180 + } + } + }, + "948981125": { + "name": "class SharedPointer", + "bases": [ + "ServiceOptionBase", + "PropertyClass" + ], + "hash": 948981125, + "properties": { + "m_serviceName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3409856790 + "hash": 2206028813 }, - "m_innerRadius": { - "type": "float", - "id": 28, - "offset": 400, - "flags": 7, + "m_iconKey": { + "type": "std::string", + "id": 1, + "offset": 168, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 686816091 + "hash": 2457138637 }, - "m_nifObjName": { + "m_displayKey": { "type": "std::string", - "id": 29, - "offset": 408, - "flags": 7, + "id": 2, + "offset": 104, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1513857812 + "hash": 3023276954 }, - "m_animNIFObjName": { - "type": "std::string", - "id": 30, - "offset": 440, - "flags": 7, + "m_serviceIndex": { + "type": "unsigned int", + "id": 3, + "offset": 204, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2245834777 + "hash": 2103126710 }, - "m_inverted": { + "m_forceInteract": { "type": "bool", - "id": 31, - "offset": 472, - "flags": 7, + "id": 4, + "offset": 200, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1034821044 - }, - "m_initialDelay": { - "type": "float", - "id": 32, - "offset": 476, + "hash": 1705789564 + } + } + }, + "1798409544": { + "name": "class EmbeddedBrowserConfig*", + "bases": [ + "PropertyClass" + ], + "hash": 1798409544, + "properties": { + "m_sFallbackPage": { + "type": "std::string", + "id": 0, + "offset": 80, "flags": 7, "container": "Static", "dynamic": false, - "singleton": false, + "singleton": true, "pointer": false, - "hash": 629858288 + "hash": 1789796475 }, - "m_fInsideAngle": { - "type": "float", - "id": 33, - "offset": 480, + "m_entries": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, "flags": 7, + "container": "List", + "dynamic": true, + "singleton": true, + "pointer": true, + "hash": 1210334404 + } + } + }, + "1365023945": { + "name": "class SharedPointer", + "bases": [ + "HousingGameInterface", + "PropertyClass" + ], + "hash": 1365023945, + "properties": {} + }, + "516438846": { + "name": "class PetSoundBehavior", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 516438846, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1114383840 - }, - "m_fOutsideAngle": { - "type": "float", - "id": 34, - "offset": 484, + "hash": 223437287 + } + } + }, + "1798408264": { + "name": "class EmbeddedBrowserConfig", + "bases": [ + "PropertyClass" + ], + "hash": 1798408264, + "properties": { + "m_sFallbackPage": { + "type": "std::string", + "id": 0, + "offset": 80, "flags": 7, "container": "Static", "dynamic": false, - "singleton": false, + "singleton": true, "pointer": false, - "hash": 1627152289 + "hash": 1789796475 }, - "m_fOutsideVolume": { - "type": "float", - "id": 35, - "offset": 488, + "m_entries": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, "flags": 7, + "container": "List", + "dynamic": true, + "singleton": true, + "pointer": true, + "hash": 1210334404 + } + } + }, + "1363561915": { + "name": "class HealthGlobe*", + "bases": [ + "StatGlobe", + "ControlSprite", + "Window", + "PropertyClass" + ], + "hash": 1363561915, + "properties": { + "m_sName": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 90369618 + "hash": 2306437263 }, - "m_fRangeScale": { - "type": "float", - "id": 36, - "offset": 492, - "flags": 7, + "m_Children": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621225959 + }, + "m_Style": { + "type": "unsigned int", + "id": 2, + "offset": 152, + "flags": 1048583, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1749294034 + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "SCALE_CHILDREN": 2, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "FOCUS_LOCKED": 64, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152 + } }, - "m_fAttenuationFactor": { - "type": "float", - "id": 37, - "offset": 496, - "flags": 7, + "m_Flags": { + "type": "unsigned int", + "id": 3, + "offset": 156, + "flags": 1048583, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 273292776 + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648, + "ONE_SHOT": 8388608, + "FLIPPED_HORIZONTAL": 16777216, + "FLIPPED_VERTICAL": 33554432 + } }, - "m_eAttenuationType": { - "type": "enum PositionInfoAttenuationType", - "id": 38, - "offset": 500, - "flags": 2097159, + "m_Window": { + "type": "class Rect", + "id": 4, + "offset": 160, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2427193304, - "enum_options": { - "Standard": 0, - "Unit Range Power": 1 - } - } - } - }, - "473867333": { - "name": "class NaturalSummonCinematicStageTemplate*", - "bases": [ - "CinematicStageTemplate", - "PropertyClass" - ], - "hash": 473867333, - "properties": { - "m_name": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, + "hash": 3105139380 + }, + "m_fTargetAlpha": { + "type": "float", + "id": 5, + "offset": 212, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1717359772 + "hash": 1809129834 }, - "m_duration": { + "m_fDisabledAlpha": { "type": "float", - "id": 1, - "offset": 104, - "flags": 7, + "id": 6, + "offset": 216, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 920323453 + "hash": 1389987675 }, - "m_actions": { - "type": "class SharedPointer", - "id": 2, - "offset": 112, - "flags": 7, - "container": "List", - "dynamic": true, + "m_fAlpha": { + "type": "float", + "id": 7, + "offset": 208, + "flags": 65671, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1380578687 + "pointer": false, + "hash": 482130755 }, - "m_stageRelationships": { - "type": "class SharedPointer", - "id": 3, - "offset": 128, - "flags": 7, - "container": "List", - "dynamic": true, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": true, - "hash": 499983354 + "hash": 3623628394 }, - "m_sound": { - "type": "std::string", - "id": 4, - "offset": 152, - "flags": 131079, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2307644996 - } - } - }, - "1214778953": { - "name": "struct std::pair", - "bases": [], - "hash": 1214778953, - "properties": {} - }, - "1640127799": { - "name": "class PetGameEnergyCost", - "bases": [ - "PropertyClass" - ], - "hash": 1640127799, - "properties": { - "m_rank": { - "type": "unsigned char", - "id": 0, - "offset": 72, - "flags": 7, + "hash": 2102211316 + }, + "m_sScript": { + "type": "std::string", + "id": 10, + "offset": 352, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 857403388 + "hash": 1846695875 }, - "m_cost": { - "type": "unsigned char", - "id": 1, - "offset": 73, - "flags": 7, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 856879753 - } - } - }, - "74189289": { - "name": "class DebugWizardComponent*", - "bases": [ - "PropertyClass" - ], - "hash": 74189289, - "properties": {} - }, - "473759376": { - "name": "class CastleMagicItem", - "bases": [ - "PropertyClass" - ], - "hash": 473759376, - "properties": { - "m_id": { - "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 7, + "hash": 3389835433 + }, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2301988666 + "hash": 2547159940 }, - "m_flags": { - "type": "unsigned int", - "id": 1, - "offset": 76, - "flags": 7, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1005801050 + "hash": 1513510520 }, - "m_movedPosition": { - "type": "class Vector3D", - "id": 2, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 3719762834 + "hash": 2587533771 }, - "m_movedYaw": { - "type": "float", - "id": 3, - "offset": 116, - "flags": 7, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1088556419 + "hash": 3091503757 }, - "m_movedScale": { - "type": "float", - "id": 4, - "offset": 120, - "flags": 7, + "m_pMaterial": { + "type": "class SharedPointer", + "id": 16, + "offset": 592, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 569059130 - } - } - }, - "1639918656": { - "name": "struct std::pair", - "bases": [], - "hash": 1639918656, - "properties": {} - }, - "1639159474": { - "name": "class WinAnimConcurrentBounded*", - "bases": [ - "WinAnimConcurrent", - "WinAnimContainer", - "WindowAnimation", - "PropertyClass" - ], - "hash": 1639159474, - "properties": { - "m_bUseDeepCopy": { - "type": "bool", - "id": 0, - "offset": 72, + "pointer": true, + "hash": 3479277078 + }, + "m_fRotation": { + "type": "float", + "id": 17, + "offset": 608, "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 433380635 + "hash": 1175400173 }, - "m_winAnimList": { - "type": "class SharedPointer", - "id": 1, - "offset": 80, - "flags": 135, - "container": "List", - "dynamic": true, + "m_Color": { + "type": "class Color", + "id": 18, + "offset": 584, + "flags": 262279, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1941062728 + "pointer": false, + "hash": 1753714077 }, - "m_bLooping": { - "type": "bool", - "id": 2, - "offset": 104, - "flags": 135, + "m_textColor": { + "type": "class Color", + "id": 19, + "offset": 612, + "flags": 262279, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2131020845 + "hash": 2528109250 }, - "m_finishedAnimList": { - "type": "class SharedPointer", - "id": 3, - "offset": 112, + "m_textComponent": { + "type": "class TextComponent", + "id": 20, + "offset": 616, "flags": 135, - "container": "List", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3066650884 + "pointer": false, + "hash": 3491704390 }, - "m_boundary": { - "type": "class Rect", - "id": 4, - "offset": 128, + "m_amount": { + "type": "int", + "id": 21, + "offset": 800, "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1423726080 + "hash": 248546638 } } }, - "868205124": { - "name": "class ClientSetBottomTeamCinematicAction*", + "516210260": { + "name": "class UnlockTriggerInfo*", "bases": [ - "SetBottomTeamCinematicAction", - "CinematicAction", "PropertyClass" ], - "hash": 868205124, + "hash": 516210260, "properties": { - "m_timeOffset": { - "type": "float", + "m_unlockTriggerTemplateID": { + "type": "unsigned int", "id": 0, "offset": 72, "flags": 7, @@ -620576,118 +570631,94 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 + "hash": 1721811670 }, - "m_interpDuration": { - "type": "float", + "m_state": { + "type": "unsigned int", "id": 1, - "offset": 80, + "offset": 76, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237711951 - } - } - }, - "1214843369": { - "name": "class SharedPointer", - "bases": [ - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 1214843369, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, + "hash": 1021505934 + }, + "m_reagentCount1": { + "type": "unsigned int", + "id": 2, + "offset": 80, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 + "hash": 2011197517 }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, + "m_reagentCount2": { + "type": "unsigned int", + "id": 3, + "offset": 84, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2285866132 + "hash": 2011197518 }, - "m_zoneTag": { - "type": "std::string", - "id": 2, - "offset": 120, + "m_reagentCount3": { + "type": "unsigned int", + "id": 4, + "offset": 88, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3405382643 + "hash": 2011197519 }, - "m_bStartHidden": { - "type": "bool", - "id": 3, - "offset": 152, + "m_reagentCount4": { + "type": "unsigned int", + "id": 5, + "offset": 92, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1939845615 - } - } - }, - "75648654": { - "name": "class TrainBehavior*", - "bases": [ - "TrainBehaviorBase", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 75648654, - "properties": { - "m_behaviorTemplateNameID": { + "hash": 2011197520 + }, + "m_reagentCount5": { "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, + "id": 6, + "offset": 96, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 + "hash": 2011197521 }, - "m_trainData": { - "type": "std::string", - "id": 1, - "offset": 128, - "flags": 575, + "m_reagentCount6": { + "type": "unsigned int", + "id": 7, + "offset": 100, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2994039667 + "hash": 2011197522 } } }, - "866489663": { - "name": "class ClientAddHangingEffectCinematicAction", + "949910208": { + "name": "class PlayGraphicOnSigilCinematicAction", "bases": [ - "AddHangingEffectCinematicAction", - "ActorCinematicAction", "CinematicAction", "PropertyClass" ], - "hash": 866489663, + "hash": 949910208, "properties": { "m_timeOffset": { "type": "float", @@ -620700,8 +570731,8 @@ "pointer": false, "hash": 2237098605 }, - "m_actor": { - "type": "std::string", + "m_minDuration": { + "type": "float", "id": 1, "offset": 80, "flags": 7, @@ -620709,296 +570740,257 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 2285866132 + "hash": 1733171553 }, - "m_effect": { + "m_assetName": { "type": "std::string", "id": 2, - "offset": 120, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1894145160 - }, - "m_revealsCloaked": { - "type": "bool", - "id": 3, - "offset": 156, + "offset": 88, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1618772408 + "hash": 1513131580 } } }, - "75356784": { - "name": "enum TimerType", - "bases": [], - "hash": 75356784, - "properties": {} - }, - "474222920": { - "name": "class CantripsInvisibilityEffect", + "1363385110": { + "name": "class SharedPointer", "bases": [ - "GameEffectBase", "PropertyClass" ], - "hash": 474222920, + "hash": 1363385110, "properties": { - "m_currentTickCount": { - "type": "double", + "m_badgeNameID": { + "type": "unsigned int", "id": 0, - "offset": 80, - "flags": 63, + "offset": 72, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2533274692 + "hash": 800680558 }, - "m_effectNameID": { - "type": "unsigned int", + "m_badgeTitle": { + "type": "std::string", "id": 1, - "offset": 96, - "flags": 63, + "offset": 80, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1204067144 + "hash": 1783354256 }, - "m_bIsOnPet": { - "type": "bool", + "m_badgeInfo": { + "type": "std::string", "id": 2, - "offset": 73, + "offset": 112, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 522593303 + "hash": 3002782298 }, - "m_originatorID": { - "type": "gid", + "m_badgeProgressInfo": { + "type": "std::string", "id": 3, - "offset": 104, - "flags": 39, + "offset": 144, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1131810019 + "hash": 1902667503 }, - "m_itemSlotID": { - "type": "unsigned int", + "m_badgeProgress": { + "type": "int", "id": 4, - "offset": 112, - "flags": 63, + "offset": 176, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1895747595 + "hash": 1577305122 }, - "m_internalID": { + "m_badgeMax": { "type": "int", "id": 5, - "offset": 92, - "flags": 63, + "offset": 180, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1643137924 + "hash": 891676691 }, - "m_endTime": { - "type": "unsigned int", + "m_badgeComplete": { + "type": "bool", "id": 6, - "offset": 88, + "offset": 184, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 716479635 - } - } - }, - "864303454": { - "name": "class GoldLootInfo*", - "bases": [ - "LootInfo", - "LootInfoBase", - "PropertyClass" - ], - "hash": 864303454, - "properties": { - "m_lootType": { - "type": "enum LootInfo::LOOT_TYPE", - "id": 0, - "offset": 72, - "flags": 2097183, + "hash": 1943559071 + }, + "m_index": { + "type": "unsigned int", + "id": 7, + "offset": 188, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1591891442, - "enum_options": { - "LOOT_TYPE_NONE": 0, - "LOOT_TYPE_GOLD": 1, - "LOOT_TYPE_MANA": 2, - "LOOT_TYPE_ITEM": 3, - "LOOT_TYPE_TREASURE_CARD": 4, - "LOOT_TYPE_MAGIC_XP": 5, - "LOOT_TYPE_ADD_SPELL": 6, - "LOOT_TYPE_MAX_HEALTH": 7, - "LOOT_TYPE_MAX_GOLD": 8, - "LOOT_TYPE_MAX_MANA": 9, - "LOOT_TYPE_MAX_POTION": 10, - "LOOT_TYPE_TRAINING_POINTS": 11, - "LOOT_TYPE_RECIPE": 12, - "LOOT_TYPE_CRAFTING_SLOT": 13, - "LOOT_TYPE_REAGENT": 14, - "LOOT_TYPE_PETSNACK": 15, - "LOOT_TYPE_GARDENING_XP": 16, - "LOOT_TYPE_PET_XP": 17, - "LOOT_TYPE_TREASURE_TABLE": 18, - "LOOT_TYPE_ARENA_POINTS": 19, - "LOOT_TYPE_ARENA_BONUS_POINTS": 20, - "LOOT_TYPE_GROUP": 21, - "LOOT_TYPE_FISHING_XP": 22, - "LOOT_TYPE_EVENT_CURRENCY_1": 24, - "LOOT_TYPE_EVENT_CURRENCY_2": 25, - "LOOT_TYPE_PVP_CURRENCY": 26, - "LOOT_TYPE_PVP_CURRENCY_BONUS": 27, - "LOOT_TYPE_PVP_TOURNEY_CURRENCY": 28, - "LOOT_TYPE_PVP_TOURNEY_CURRENCY_BONUS": 29, - "LOOT_TYPE_FURNITURE_ESSENCE": 30 - } + "hash": 1009433893 }, - "m_goldAmount": { - "type": "int", - "id": 1, - "offset": 80, + "m_badgeOutline": { + "type": "std::string", + "id": 8, + "offset": 192, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 754429876 - } - } - }, - "1640044984": { - "name": "class SharedPointer", - "bases": [ - "CombatRule", - "PropertyClass" - ], - "hash": 1640044984, - "properties": { - "m_baseCritDivisor": { - "type": "int", - "id": 0, - "offset": 72, + "hash": 1548975214 + }, + "m_badgeImage": { + "type": "std::string", + "id": 9, + "offset": 224, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1793948871 + "hash": 1770432017 }, - "m_baseBlockDivisor": { - "type": "int", - "id": 1, - "offset": 76, + "m_dynamicBadge": { + "type": "bool", + "id": 10, + "offset": 256, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 331192160 + "hash": 1496846667 }, - "m_critScalarDivisor": { - "type": "int", - "id": 2, - "offset": 80, + "m_badgeFilterID": { + "type": "unsigned int", + "id": 11, + "offset": 260, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 353250050 + "hash": 1965286611 }, - "m_blockScalarDivisor": { - "type": "int", - "id": 3, - "offset": 84, + "m_filterIndex": { + "type": "unsigned int", + "id": 12, + "offset": 264, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 778321147 + "hash": 1526994539 }, - "m_finalCritMedian1": { - "type": "float", - "id": 4, - "offset": 88, + "m_overcount": { + "type": "bool", + "id": 13, + "offset": 268, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1779518738 + "hash": 203918520 }, - "m_finalCritMedian2": { - "type": "float", - "id": 5, - "offset": 92, + "m_hasLoot": { + "type": "bool", + "id": 14, + "offset": 269, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1779518739 + "hash": 1743226445 }, - "m_finalBlockMedian1": { - "type": "float", - "id": 6, - "offset": 96, + "m_badgeLoot": { + "type": "std::string", + "id": 15, + "offset": 272, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2233508235 + "hash": 3002891500 }, - "m_finalBlockMedian2": { - "type": "float", - "id": 7, - "offset": 100, + "m_extraCredit": { + "type": "bool", + "id": 16, + "offset": 304, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2233508236 + "hash": 847737554 + }, + "m_overcountInterval": { + "type": "unsigned int", + "id": 17, + "offset": 308, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1845137015 + }, + "m_recurringRewardsDescription": { + "type": "std::string", + "id": 18, + "offset": 312, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1668915496 + }, + "m_overcountLoot": { + "type": "std::string", + "id": 19, + "offset": 344, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2371089534 } } }, - "474090984": { - "name": "class SharedPointer", + "1362764071": { + "name": "class PlaySoundCinematicAction*", "bases": [ - "ShadowSelfCinematicAction", "CinematicAction", "PropertyClass" ], - "hash": 474090984, + "hash": 1362764071, "properties": { "m_timeOffset": { "type": "float", @@ -621010,495 +571002,396 @@ "singleton": false, "pointer": false, "hash": 2237098605 - } - } - }, - "1222056337": { - "name": "class BattlegroundPolymorphImprovementOption*", - "bases": [ - "ServiceOptionBase", - "PropertyClass" - ], - "hash": 1222056337, - "properties": { - "m_serviceName": { + }, + "m_sound": { "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, + "id": 1, + "offset": 80, + "flags": 131079, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2307644996 + }, + "m_useClientLocation": { + "type": "bool", + "id": 2, + "offset": 100, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2206028813 + "hash": 98585784 }, - "m_iconKey": { - "type": "std::string", - "id": 1, - "offset": 168, - "flags": 31, + "m_soundType": { + "type": "enum PlaySoundCinematicAction::SoundType", + "id": 3, + "offset": 96, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2457138637 + "hash": 868075053, + "enum_options": { + "kSigil": 0, + "kGotHit": 1, + "kDeath": 2, + "kChatter": 4, + "__DEFAULT": "kSigil" + } }, - "m_displayKey": { - "type": "std::string", - "id": 2, - "offset": 104, - "flags": 31, + "m_streamSound": { + "type": "bool", + "id": 4, + "offset": 101, + "flags": 263, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3023276954 + "hash": 1693179368 }, - "m_serviceIndex": { - "type": "unsigned int", - "id": 3, - "offset": 204, - "flags": 31, + "m_playMusic": { + "type": "bool", + "id": 5, + "offset": 102, + "flags": 263, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2103126710 + "hash": 552729674 }, - "m_forceInteract": { - "type": "bool", - "id": 4, - "offset": 200, - "flags": 31, + "m_fadeDuration": { + "type": "float", + "id": 6, + "offset": 104, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1705789564 + "hash": 1402536557 } } }, - "75648651": { - "name": "class TrainBehavior", + "1799170530": { + "name": "class SharedPointer", "bases": [ - "TrainBehaviorBase", - "BehaviorInstance", + "WindowAnimation", "PropertyClass" ], - "hash": 75648651, + "hash": 1799170530, "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", + "m_bUseDeepCopy": { + "type": "bool", "id": 0, - "offset": 104, - "flags": 39, + "offset": 72, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 + "hash": 433380635 }, - "m_trainData": { - "type": "std::string", + "m_size": { + "type": "class Size", "id": 1, - "offset": 128, - "flags": 575, + "offset": 80, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2994039667 + "hash": 251247159 } } }, - "1219953108": { - "name": "class Reco::LevelData*", + "516602686": { + "name": "class PetSoundBehavior*", "bases": [ + "BehaviorInstance", "PropertyClass" ], - "hash": 1219953108, + "hash": 516602686, "properties": { - "m_level": { - "type": "int", + "m_behaviorTemplateNameID": { + "type": "unsigned int", "id": 0, - "offset": 72, - "flags": 31, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 801285362 - }, - "m_categoryData": { - "type": "class SharedPointer", - "id": 1, - "offset": 96, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2178338894 + "hash": 223437287 } } }, - "866646025": { - "name": "class SharedPointer", + "1799035973": { + "name": "class GuildMuseumDataList*", "bases": [ - "BehaviorTemplate", "PropertyClass" ], - "hash": 866646025, + "hash": 1799035973, "properties": { - "m_behaviorName": { - "type": "std::string", + "m_worldIDList": { + "type": "unsigned int", "id": 0, "offset": 72, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 3130754092 + "hash": 2050801310 }, - "m_shopOptions": { + "m_exhibitIDList": { "type": "unsigned int", "id": 1, + "offset": 88, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1339737091 + }, + "m_stateList": { + "type": "unsigned int", + "id": 2, + "offset": 104, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1658565962 + }, + "m_doorList": { + "type": "unsigned int", + "id": 3, "offset": 120, "flags": 7, "container": "List", "dynamic": true, "singleton": false, "pointer": false, - "hash": 704167667 + "hash": 1783968669 } } }, - "1218902917": { - "name": "class SharedPointer", + "950110681": { + "name": "class SharedPointer", "bases": [ - "BehaviorInstance", "PropertyClass" ], - "hash": 1218902917, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - } - } + "hash": 950110681, + "properties": {} }, - "1640223391": { - "name": "class SharedPointer", + "949915860": { + "name": "class SharedPointer", "bases": [ + "DerbyAddObstacle", + "DerbyEffect", "PropertyClass" ], - "hash": 1640223391, + "hash": 949915860, "properties": { - "m_name": { - "type": "std::string", + "m_buffType": { + "type": "enum DerbyTalentBuffType", "id": 0, - "offset": 72, - "flags": 31, + "offset": 92, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1717359772 + "hash": 1149251982, + "enum_options": { + "Buff": 0, + "Debuff": 1, + "Neither": 2 + } }, - "m_ID": { - "type": "int", + "m_kTarget": { + "type": "enum DerbyTargetType", "id": 1, - "offset": 104, - "flags": 31, + "offset": 96, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2090585127 + "hash": 1807803351, + "enum_options": { + "kTargetInFront": 0, + "kTargetBehind": 1, + "kTargetFirst": 2, + "kTargetSelf": 3, + "kTargetAll": 4, + "kTargetLast": 5 + } }, - "m_parentTabID": { + "m_nDuration": { "type": "int", "id": 2, - "offset": 108, + "offset": 104, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 16409672 + "hash": 1110167982 }, - "m_description": { - "type": "std::string", + "m_effectID": { + "type": "unsigned int", "id": 3, - "offset": 112, - "flags": 31, + "offset": 88, + "flags": 24, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1649374815 + "hash": 2347630439 }, - "m_iconResource": { + "m_imageFilename": { "type": "std::string", "id": 4, - "offset": 144, - "flags": 31, + "offset": 112, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2838396012 + "hash": 2813328063 }, - "m_tags": { - "type": "std::string", + "m_iconIndex": { + "type": "unsigned int", "id": 5, - "offset": 184, + "offset": 144, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1717575210 + "hash": 1265133262 }, - "m_dontFilterOwnedRecoItems": { - "type": "bool", + "m_soundOnActivate": { + "type": "std::string", "id": 6, - "offset": 216, - "flags": 31, + "offset": 152, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2079281430 + "hash": 1956929714 }, - "m_allowMultipleBuy": { - "type": "bool", + "m_soundOnTarget": { + "type": "std::string", "id": 7, - "offset": 217, - "flags": 31, + "offset": 184, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 831782030 + "hash": 3444214056 }, - "m_forceDisallowMultipleBuy": { - "type": "bool", + "m_targetParticleEffect": { + "type": "std::string", "id": 8, - "offset": 218, - "flags": 31, + "offset": 216, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 19425277 + "hash": 3048234723 }, - "m_isHousesCategory": { - "type": "bool", + "m_overheadMessage": { + "type": "std::string", "id": 9, - "offset": 220, - "flags": 31, + "offset": 248, + "flags": 8388639, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1982819524 + "hash": 1701018190 }, - "m_isEverythingCategory": { - "type": "bool", + "m_requirements": { + "type": "class RequirementList", "id": 10, - "offset": 219, + "offset": 280, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 111927122 + "hash": 2840988582 }, - "m_isGroupElixirsCategory": { - "type": "bool", + "m_lane": { + "type": "enum DerbyLaneEffect", "id": 11, - "offset": 221, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 768811642 - } - } - }, - "1217299961": { - "name": "class ControlDraw::Line*", - "bases": [ - "PropertyClass" - ], - "hash": 1217299961, - "properties": { - "m_PointData": { - "type": "class Point", - "id": 0, - "offset": 72, - "flags": 135, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2358246150 - }, - "m_Color": { - "type": "class Color", - "id": 1, - "offset": 96, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1753714077 - } - } - }, - "76786826": { - "name": "class TrainBehaviorBase", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 76786826, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, + "offset": 376, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 + "hash": 1075628144, + "enum_options": { + "kLaneRandomONE": 0, + "kLaneAll": 1, + "kLaneMine": 2 + } }, - "m_trainData": { - "type": "std::string", - "id": 1, - "offset": 128, - "flags": 575, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2994039667 - } - } - }, - "475375693": { - "name": "class RecreateNPCActorCinematicAction", - "bases": [ - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 475375693, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, + "m_obstacleType": { + "type": "unsigned __int64", + "id": 12, + "offset": 384, + "flags": 33554439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 + "hash": 2219764488 }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, + "m_nObstacleAmount": { + "type": "int", + "id": 13, + "offset": 392, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2285866132 + "hash": 52937033 } } }, - "1215206899": { - "name": "enum BracketInfo::EnumTournamentStyle", - "bases": [], - "hash": 1215206899, - "properties": {} - }, - "474459546": { - "name": "class ClientDynaModBehavior*", + "1363468403": { + "name": "class SharedPointer", "bases": [ - "DynaModBehavior", - "BehaviorInstance", "PropertyClass" ], - "hash": 474459546, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - } - } - }, - "869186683": { - "name": "class TrainingInteractionData", - "bases": [], - "hash": 869186683, + "hash": 1363468403, "properties": {} }, - "474458266": { - "name": "class ClientDynaModBehavior", - "bases": [ - "DynaModBehavior", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 474458266, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - } - } - }, - "868206660": { - "name": "class ClientSetBottomTeamCinematicAction", + "517015800": { + "name": "class SharedPointer", "bases": [ - "SetBottomTeamCinematicAction", - "CinematicAction", "PropertyClass" ], - "hash": 868206660, + "hash": 517015800, "properties": { - "m_timeOffset": { - "type": "float", + "m_sellCrownsItems": { + "type": "bool", "id": 0, "offset": 72, "flags": 7, @@ -621506,696 +571399,754 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 - }, - "m_interpDuration": { - "type": "float", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237711951 - } - } - }, - "1216095386": { - "name": "class ConicalSoundEmitterInfo*", - "bases": [ - "PositionalSoundEmitterInfo", - "SoundEmitterInfo", - "SoundInfo", - "ClientObjectInfo", - "CoreObjectInfo", - "PropertyClass" - ], - "hash": 1216095386, - "properties": { - "m_templateID.m_full": { - "type": "unsigned __int64", - "id": 0, - "offset": 72, - "flags": 33554439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 633907631 + "hash": 264897697 }, - "m_nObjectID": { - "type": "unsigned int", + "m_sellNoAuctionItems": { + "type": "bool", "id": 1, - "offset": 80, + "offset": 73, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 748496927 + "hash": 521218229 }, - "m_location": { - "type": "class Vector3D", + "m_sellStitchedItems": { + "type": "bool", "id": 2, - "offset": 84, + "offset": 74, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2239683611 + "hash": 1261254173 }, - "m_orientation": { - "type": "class Vector3D", + "m_sellCosmeticItems": { + "type": "bool", "id": 3, - "offset": 96, + "offset": 75, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2344058766 + "hash": 661884604 }, - "m_fScale": { - "type": "float", + "m_sellItemsWithJewels": { + "type": "bool", "id": 4, - "offset": 108, + "offset": 76, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 503137701 + "hash": 1195509291 }, - "m_zoneTag": { - "type": "std::string", + "m_equipmentRequirementSchools": { + "type": "class SharedPointer", "id": 5, - "offset": 152, + "offset": 80, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 3405382643 + "pointer": true, + "hash": 1963747469 }, - "m_startState": { - "type": "std::string", + "m_equipmentLevelDifference": { + "type": "int", "id": 6, - "offset": 184, + "offset": 96, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2166880458 + "hash": 882949685 }, - "m_overrideName": { - "type": "std::string", + "m_equipmentLevelCategories": { + "type": "class SharedPointer", "id": 7, - "offset": 120, - "flags": 8388615, + "offset": 104, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1990707228 + "pointer": true, + "hash": 875757928 }, - "m_globalDynamic": { - "type": "bool", + "m_equipmentDuplicateCount": { + "type": "int", "id": 8, - "offset": 116, + "offset": 120, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1951691017 + "hash": 1546271990 }, - "m_bUndetectable": { - "type": "bool", + "m_equipmentDuplicateCategories": { + "type": "class SharedPointer", "id": 9, - "offset": 216, + "offset": 128, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1907454341 + "pointer": true, + "hash": 616694667 }, - "m_spawnRequirements": { - "type": "class SharedPointer", + "m_sellEmptyDecks": { + "type": "bool", "id": 10, - "offset": 224, + "offset": 144, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2309120870 + "pointer": false, + "hash": 1837351132 }, - "m_loadingType": { - "type": "enum CoreObjectInfo::LoadingType", + "m_sellTemporaryMounts": { + "type": "bool", "id": 11, - "offset": 112, - "flags": 2097159, + "offset": 145, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3522422550, - "enum_options": { - "STATIC_CLIENT_SERVER": 0, - "STATIC_CLIENT": 1, - "STATIC_SERVER": 2, - "DYNAMIC_SERVER": 3 - } + "hash": 1610059564 }, - "m_radius": { - "type": "float", + "m_sellAllHousingCategories": { + "type": "class SharedPointer", "id": 12, - "offset": 256, + "offset": 152, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 989410271 + "pointer": true, + "hash": 2030133551 }, - "m_exclusive": { + "m_keepSkeletonKeys": { "type": "bool", "id": 13, - "offset": 260, + "offset": 168, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 824383403 + "hash": 1475507737 }, - "m_startActive": { + "m_keepGuildGateKeys": { "type": "bool", "id": 14, - "offset": 261, + "offset": 169, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2031339229 + "hash": 1977825738 }, - "m_category": { - "type": "enum AudioCategory", + "m_keepSocketWrenches": { + "type": "bool", "id": 15, - "offset": 264, - "flags": 2097159, + "offset": 170, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2951251982, - "enum_options": { - "AudioCategory_Irrelevent": 0, - "AudioCategory_Accoustic": 1, - "AudioCategory_Noise": 2, - "AudioCategory_Music": 3 - } + "hash": 418836224 }, - "m_override": { - "type": "int", + "m_keepGauntletsOneShotDungeons": { + "type": "bool", "id": 16, - "offset": 268, - "flags": 1048583, + "offset": 171, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 136872410, - "enum_options": { - "OVR_RADIUS": 1, - "OVR_CATEGORY": 2, - "OVR_EXCLUSIVE": 4, - "OVR_SIGNATURE": 64, - "OVR_VOLUME": 8, - "OVR_LOOPCOUNT": 16, - "OVR_ACTIVE": 32, - "OVR_PLAYPROG": 128, - "OVR_PRIORITY": 256, - "OVR_PROGTIME": 512, - "OVR_FILTERSET": 1024 - } + "hash": 1849469010 }, - "m_enableReqs": { - "type": "class SharedPointer", + "m_keepQuintecentCores": { + "type": "bool", "id": 17, - "offset": 272, - "flags": 263, + "offset": 172, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3158020443 + "pointer": false, + "hash": 164534196 }, - "m_volume": { - "type": "float", + "m_keepCrownSeeds": { + "type": "bool", "id": 18, - "offset": 288, + "offset": 173, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1162855023 + "hash": 1924786069 }, - "m_loopCount": { + "m_housingDuplicateCount": { "type": "int", "id": 19, - "offset": 292, + "offset": 176, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 865634717 + "hash": 545140859 }, - "m_trackFilenameList": { - "type": "std::string", + "m_sellHousingDuplicateCategories": { + "type": "class SharedPointer", "id": 20, - "offset": 312, - "flags": 131079, - "container": "Vector", - "dynamic": true, + "offset": 184, + "flags": 7, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": false, - "hash": 2531081709 + "pointer": true, + "hash": 1794770481 }, - "m_playList": { - "type": "class PlayListEntry*", + "m_libraryTreasureCardSchools": { + "type": "class SharedPointer", "id": 21, - "offset": 336, + "offset": 200, "flags": 7, - "container": "Vector", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": true, - "hash": 3907873161 + "hash": 3468556638 }, - "m_priority": { + "m_treasureCardDuplicateCount": { "type": "int", "id": 22, - "offset": 296, + "offset": 216, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1235205852 + "hash": 1921259619 }, - "m_progression": { - "type": "enum PlayList::Progression", + "m_treasureCardDuplicateSchools": { + "type": "class SharedPointer", "id": 23, - "offset": 300, - "flags": 2097159, + "offset": 224, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 3279400238, - "enum_options": { - "Sequence": 0, - "Random": 1, - "SequenceOnceOnly": 2, - "RandomNoRepeat": 3 - } + "pointer": true, + "hash": 3246907172 }, - "m_progressMin": { - "type": "float", + "m_sellAllGardeningTC": { + "type": "bool", "id": 24, - "offset": 304, + "offset": 240, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1497550192 + "hash": 1661696866 }, - "m_progressMax": { - "type": "float", + "m_sellAllCastleMagicTC": { + "type": "bool", "id": 25, - "offset": 308, + "offset": 241, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1497549938 + "hash": 221153712 }, - "m_audioFilterSet": { - "type": "unsigned int", + "m_sellAllCantripTC": { + "type": "bool", "id": 26, - "offset": 360, - "flags": 33554439, + "offset": 242, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 831339825 + "hash": 815472644 }, - "m_clientTag": { - "type": "std::string", + "m_sellAllJewelSchools": { + "type": "class SharedPointer", "id": 27, - "offset": 368, + "offset": 248, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 3409856790 + "pointer": true, + "hash": 2852898436 }, - "m_innerRadius": { - "type": "float", + "m_jewelDuplicateCount": { + "type": "int", "id": 28, - "offset": 400, + "offset": 264, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 686816091 + "hash": 9285909 }, - "m_nifObjName": { - "type": "std::string", + "m_sellAllPinSchools": { + "type": "class SharedPointer", "id": 29, - "offset": 408, + "offset": 272, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1513857812 + "pointer": true, + "hash": 2024509716 }, - "m_animNIFObjName": { - "type": "std::string", + "m_pinDuplicateCount": { + "type": "int", "id": 30, - "offset": 440, + "offset": 288, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2245834777 + "hash": 17477605 }, - "m_inverted": { + "m_sellBlockJewels": { "type": "bool", "id": 31, - "offset": 472, + "offset": 292, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1034821044 + "hash": 947085848 }, - "m_initialDelay": { - "type": "float", + "m_sellCriticalJewels": { + "type": "bool", "id": 32, - "offset": 476, + "offset": 293, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 629858288 + "hash": 1662439960 }, - "m_fInsideAngle": { - "type": "float", + "m_sellAccuracyJewels": { + "type": "bool", "id": 33, - "offset": 480, + "offset": 294, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1114383840 + "hash": 575425784 }, - "m_fOutsideAngle": { - "type": "float", + "m_sellFlatResistJewels": { + "type": "bool", "id": 34, - "offset": 484, + "offset": 295, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1627152289 + "hash": 1422401486 }, - "m_fOutsideVolume": { - "type": "float", + "m_sellFlatDamageJewels": { + "type": "bool", "id": 35, - "offset": 488, + "offset": 296, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 90369618 + "hash": 1076082387 }, - "m_fRangeScale": { - "type": "float", + "m_sellIncomingHealingJewels": { + "type": "bool", "id": 36, - "offset": 492, + "offset": 297, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1749294034 + "hash": 1056576185 }, - "m_fAttenuationFactor": { - "type": "float", + "m_sellOutgoingHealingJewels": { + "type": "bool", "id": 37, - "offset": 496, + "offset": 298, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 273292776 + "hash": 769504177 }, - "m_eAttenuationType": { - "type": "enum PositionInfoAttenuationType", + "m_sellHealthJewels": { + "type": "bool", "id": 38, - "offset": 500, - "flags": 2097159, + "offset": 299, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2427193304, - "enum_options": { - "Standard": 0, - "Unit Range Power": 1 - } + "hash": 895258275 + }, + "m_sellManaJewels": { + "type": "bool", + "id": 39, + "offset": 300, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 497642570 + }, + "m_sellGivesSpellJewels": { + "type": "bool", + "id": 40, + "offset": 301, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1610892139 + }, + "m_sellDerbyJewels": { + "type": "bool", + "id": 41, + "offset": 302, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1304798563 } } }, - "1644385755": { - "name": "class SharedPointer", + "1799411564": { + "name": "class UnstitchOption*", "bases": [ + "ServiceOptionBase", "PropertyClass" ], - "hash": 1644385755, + "hash": 1799411564, "properties": { - "m_volume": { - "type": "float", + "m_serviceName": { + "type": "std::string", "id": 0, "offset": 72, - "flags": 7, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1162855023 + "hash": 2206028813 }, - "m_loopCount": { - "type": "int", + "m_iconKey": { + "type": "std::string", "id": 1, - "offset": 76, - "flags": 7, + "offset": 168, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 865634717 + "hash": 2457138637 }, - "m_priority": { - "type": "int", + "m_displayKey": { + "type": "std::string", "id": 2, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3023276954 + }, + "m_serviceIndex": { + "type": "unsigned int", + "id": 3, + "offset": 204, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2103126710 + }, + "m_forceInteract": { + "type": "bool", + "id": 4, + "offset": 200, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1705789564 + } + } + }, + "516712382": { + "name": "class PetInfoControl", + "bases": [ + "Window", + "PropertyClass" + ], + "hash": 516712382, + "properties": { + "m_sName": { + "type": "std::string", + "id": 0, "offset": 80, - "flags": 7, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1235205852 + "hash": 2306437263 }, - "m_progression": { - "type": "enum CinematicSoundEmitterInfo::Progression", + "m_Children": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 65667, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621225959 + }, + "m_Style": { + "type": "unsigned int", + "id": 2, + "offset": 152, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "SCALE_CHILDREN": 2, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "FOCUS_LOCKED": 64, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152 + } + }, + "m_Flags": { + "type": "unsigned int", "id": 3, - "offset": 84, - "flags": 2097159, + "offset": 156, + "flags": 1048583, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2562723160, + "hash": 967851578, "enum_options": { - "Sequence": 0, - "Random": 1, - "SequenceOnceOnly": 2, - "RandomNoRepeat": 3 + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 } }, - "m_progressMin": { - "type": "float", + "m_Window": { + "type": "class Rect", "id": 4, - "offset": 88, - "flags": 7, + "offset": 160, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1497550192 + "hash": 3105139380 }, - "m_progressMax": { + "m_fTargetAlpha": { "type": "float", "id": 5, - "offset": 92, - "flags": 7, + "offset": 212, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1497549938 + "hash": 1809129834 }, - "m_trackFilenameList": { - "type": "std::string", + "m_fDisabledAlpha": { + "type": "float", "id": 6, - "offset": 96, - "flags": 7, - "container": "Vector", - "dynamic": true, + "offset": 216, + "flags": 135, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 2531081709 + "hash": 1389987675 }, - "m_category": { - "type": "enum CinematicSoundEmitterInfo::AudioCategory", + "m_fAlpha": { + "type": "float", "id": 7, - "offset": 120, - "flags": 2097159, + "offset": 208, + "flags": 65671, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2525629195, - "enum_options": { - "AudioCategory_Irrelevent": 0, - "AudioCategory_Accoustic": 1, - "AudioCategory_Noise": 2, - "AudioCategory_Music": 3, - "AudioCategory_MusicAtSFXVolume": 4, - "AudioCategory_Dialog": 5, - "AudioCategory_UI": 6, - "AudioCategory_NoiseAtMusicVolume": 7 - } + "hash": 482130755 }, - "m_name": { - "type": "std::string", + "m_pWindowStyle": { + "type": "class SharedPointer", "id": 8, - "offset": 144, - "flags": 7, + "offset": 232, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1717359772 + "pointer": true, + "hash": 3623628394 }, - "m_useClientLocation": { - "type": "bool", + "m_sHelp": { + "type": "std::wstring", "id": 9, - "offset": 176, - "flags": 7, + "offset": 248, + "flags": 4194439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 98585784 + "hash": 2102211316 }, - "m_fadeInDuration": { - "type": "float", + "m_sScript": { + "type": "std::string", "id": 10, - "offset": 124, - "flags": 7, + "offset": 352, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 770484100 + "hash": 1846695875 }, - "m_fadeOutDuration": { - "type": "float", + "m_Offset": { + "type": "class Point", "id": 11, - "offset": 128, - "flags": 7, + "offset": 192, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 666963557 + "hash": 3389835433 }, - "m_wetReverb": { - "type": "float", + "m_Scale": { + "type": "class Point", "id": 12, - "offset": 136, - "flags": 7, + "offset": 200, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1024635181 + "hash": 2547159940 }, - "m_dryReverb": { - "type": "float", + "m_sTip": { + "type": "std::wstring", "id": 13, - "offset": 132, - "flags": 7, + "offset": 392, + "flags": 4194439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 403787084 + "hash": 1513510520 }, - "m_isStreamed": { - "type": "bool", + "m_BubbleList": { + "type": "class WindowBubble", "id": 14, - "offset": 140, - "flags": 7, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 906929764 + "hash": 3091503757 } } }, - "80353023": { - "name": "class SharedPointer", + "950251435": { + "name": "class ActorDialog*", "bases": [ "ActorDialogBase", "PropertyClass" ], - "hash": 80353023, + "hash": 950251435, "properties": { "m_dialogTag": { "type": "std::string", @@ -622265,21 +572216,51 @@ } } }, - "1642187547": { - "name": "class std::vector >", - "bases": [], - "hash": 1642187547, - "properties": {} + "1364452653": { + "name": "class ObjectStateBehaviorTemplate", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 1364452653, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + }, + "m_stateSetName": { + "type": "std::string", + "id": 1, + "offset": 120, + "flags": 268435463, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1863712969, + "enum_options": { + "__BASECLASS": "ObjStateSet" + } + } + } }, - "79199821": { - "name": "class WhirlyBurlyRoundData*", + "1364452461": { + "name": "class ObjectStateBehaviorTemplate*", "bases": [ + "BehaviorTemplate", "PropertyClass" ], - "hash": 79199821, + "hash": 1364452461, "properties": { - "m_roundNumber": { - "type": "unsigned char", + "m_behaviorName": { + "type": "std::string", "id": 0, "offset": 72, "flags": 7, @@ -622287,305 +572268,814 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 1040180705 + "hash": 3130754092 }, - "m_maximumRounds": { - "type": "unsigned char", + "m_stateSetName": { + "type": "std::string", "id": 1, - "offset": 73, + "offset": 120, + "flags": 268435463, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1863712969, + "enum_options": { + "__BASECLASS": "ObjStateSet" + } + } + } + }, + "516979624": { + "name": "class CinematicTemplateAnimationData", + "bases": [ + "PropertyClass" + ], + "hash": 516979624, + "properties": { + "m_animationPath": { + "type": "std::string", + "id": 0, + "offset": 72, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1709082345 + "hash": 3393486152 }, - "m_planningTurnTime": { - "type": "unsigned char", + "m_sound": { + "type": "std::string", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2307644996 + }, + "m_length": { + "type": "float", "id": 2, - "offset": 74, + "offset": 136, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1183728479 + "hash": 759698745 }, - "m_blueTeamScore": { - "type": "unsigned int", + "m_textTags": { + "type": "class SharedPointer", "id": 3, - "offset": 76, + "offset": 144, "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1768413037 + } + } + }, + "1807406761": { + "name": "class SharedPointer", + "bases": [ + "ContainerEffect", + "GameEffectBase", + "PropertyClass" + ], + "hash": 1807406761, + "properties": { + "m_currentTickCount": { + "type": "double", + "id": 0, + "offset": 80, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1519259416 + "hash": 2533274692 }, - "m_orangeTeamScore": { + "m_effectNameID": { + "type": "unsigned int", + "id": 1, + "offset": 96, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1204067144 + }, + "m_bIsOnPet": { + "type": "bool", + "id": 2, + "offset": 73, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 522593303 + }, + "m_originatorID": { + "type": "gid", + "id": 3, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1131810019 + }, + "m_itemSlotID": { "type": "unsigned int", "id": 4, + "offset": 112, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1895747595 + }, + "m_internalID": { + "type": "int", + "id": 5, + "offset": 92, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1643137924 + }, + "m_endTime": { + "type": "unsigned int", + "id": 6, + "offset": 88, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 716479635 + }, + "m_displayInfo": { + "type": "class SharedPointer", + "id": 7, + "offset": 128, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2998612909 + } + } + }, + "1363939464": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1363939464, + "properties": { + "m_projectName": { + "type": "std::string", + "id": 0, "offset": 80, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 988508012 + "hash": 2223751667 }, - "m_redTeamScore": { - "type": "unsigned int", + "m_projectTitle": { + "type": "std::string", + "id": 1, + "offset": 112, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1839677492 + }, + "m_projectDescription": { + "type": "std::string", + "id": 2, + "offset": 144, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3174112214 + }, + "m_projectType": { + "type": "enum ClassProjectType", + "id": 3, + "offset": 176, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 772612819, + "enum_options": { + "CPT_TreasureTower": 0, + "CPT_Battleground": 1, + "CPT_SideActivity": 2, + "CPT_SeasonPass": 3, + "CPT_PetActivity": 4, + "CPT_HousingSideActivity": 5, + "CPT_RateMyStitch": 6, + "CPT_MonthlyGauntlet": 7 + } + }, + "m_initialHoliday": { + "type": "std::string", + "id": 4, + "offset": 184, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1940089679 + }, + "m_maximumLengthInDays": { + "type": "int", "id": 5, - "offset": 84, + "offset": 216, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1672048811 + "hash": 725301602 }, - "m_passport": { - "type": "unsigned int", + "m_crownsCost": { + "type": "int", "id": 6, - "offset": 88, + "offset": 220, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1362521513 + "hash": 1592212719 }, - "m_team1": { - "type": "unsigned char", + "m_useRankAsProgress": { + "type": "int", "id": 7, - "offset": 92, + "offset": 224, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1448349512 + "hash": 878502460 }, - "m_team2": { - "type": "unsigned char", + "m_rankProgressOffset": { + "type": "int", "id": 8, - "offset": 93, + "offset": 228, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1448349513 + "hash": 1364950050 }, - "m_team3": { - "type": "unsigned char", + "m_minimumCreditsPerDay": { + "type": "int", "id": 9, - "offset": 94, + "offset": 232, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1448349514 + "hash": 826102537 }, - "m_handList": { + "m_leaderboardRewardItemID": { "type": "unsigned int", "id": 10, - "offset": 96, + "offset": 236, "flags": 7, - "container": "List", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 1650111716 - } - } - }, - "1641443024": { - "name": "class ClientActorDeathCinematicAction", - "bases": [ - "ActorDeathCinematicAction", - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 1641443024, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, + "hash": 1667943971 + }, + "m_leaderboardSize": { + "type": "int", + "id": 11, + "offset": 240, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 + "hash": 683398282 }, - "m_actor": { + "m_mainDoodle": { "type": "std::string", - "id": 1, - "offset": 80, + "id": 12, + "offset": 248, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2285866132 - } - } - }, - "78346375": { - "name": "class SharedPointer", - "bases": [ - "TreasureCardPosterBehaviorBase", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 78346375, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, + "hash": 2211594423 + }, + "m_purchasedCredits": { + "type": "int", + "id": 13, + "offset": 280, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 + "hash": 2038693799 }, - "m_spellData": { + "m_friendLootPosition": { + "type": "int", + "id": 14, + "offset": 284, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 109123685 + }, + "m_friendLootTable": { "type": "std::string", - "id": 1, - "offset": 128, - "flags": 575, + "id": 15, + "offset": 288, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2688126101 - } - } - }, - "474703847": { - "name": "class PvPTourneyCurrencyBonusLootInfo", - "bases": [ - "LootInfo", - "LootInfoBase", - "PropertyClass" - ], - "hash": 474703847, - "properties": { - "m_lootType": { - "type": "enum LootInfo::LOOT_TYPE", - "id": 0, - "offset": 72, - "flags": 2097183, + "hash": 2327793817 + }, + "m_enterPortalText": { + "type": "std::string", + "id": 16, + "offset": 320, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1591891442, - "enum_options": { - "LOOT_TYPE_NONE": 0, - "LOOT_TYPE_GOLD": 1, - "LOOT_TYPE_MANA": 2, - "LOOT_TYPE_ITEM": 3, - "LOOT_TYPE_TREASURE_CARD": 4, - "LOOT_TYPE_MAGIC_XP": 5, - "LOOT_TYPE_ADD_SPELL": 6, - "LOOT_TYPE_MAX_HEALTH": 7, - "LOOT_TYPE_MAX_GOLD": 8, - "LOOT_TYPE_MAX_MANA": 9, - "LOOT_TYPE_MAX_POTION": 10, - "LOOT_TYPE_TRAINING_POINTS": 11, - "LOOT_TYPE_RECIPE": 12, - "LOOT_TYPE_CRAFTING_SLOT": 13, - "LOOT_TYPE_REAGENT": 14, - "LOOT_TYPE_PETSNACK": 15, - "LOOT_TYPE_GARDENING_XP": 16, - "LOOT_TYPE_PET_XP": 17, - "LOOT_TYPE_TREASURE_TABLE": 18, - "LOOT_TYPE_ARENA_POINTS": 19, - "LOOT_TYPE_ARENA_BONUS_POINTS": 20, - "LOOT_TYPE_GROUP": 21, - "LOOT_TYPE_FISHING_XP": 22, - "LOOT_TYPE_EVENT_CURRENCY_1": 24, - "LOOT_TYPE_EVENT_CURRENCY_2": 25, - "LOOT_TYPE_PVP_CURRENCY": 26, - "LOOT_TYPE_PVP_CURRENCY_BONUS": 27, - "LOOT_TYPE_PVP_TOURNEY_CURRENCY": 28, - "LOOT_TYPE_PVP_TOURNEY_CURRENCY_BONUS": 29, - "LOOT_TYPE_FURNITURE_ESSENCE": 30 - } + "hash": 2956016240 }, - "m_pvpTourneyCurrencyBonusAmount": { + "m_goldCost": { "type": "int", - "id": 1, - "offset": 80, - "flags": 31, + "id": 17, + "offset": 352, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1691016556 + "hash": 444550297 + }, + "m_numberOfGoldCredits": { + "type": "int", + "id": 18, + "offset": 356, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1425904684 + }, + "m_restoreHealthAndManaAtExit": { + "type": "int", + "id": 19, + "offset": 360, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 810519539 + }, + "m_endingGracePeriodInDays": { + "type": "int", + "id": 20, + "offset": 364, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 953234780 + }, + "m_eventTeleportZone": { + "type": "std::string", + "id": 21, + "offset": 368, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3270861128 + }, + "m_eventTeleportLocation": { + "type": "std::string", + "id": 22, + "offset": 400, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2332042341 + }, + "m_subscriberCreditsPerDay": { + "type": "int", + "id": 23, + "offset": 432, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2010087361 + }, + "m_extendedTemplateName": { + "type": "std::string", + "id": 24, + "offset": 440, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2221427049 + }, + "m_creditsOverrideName": { + "type": "std::string", + "id": 25, + "offset": 472, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1508357386 + }, + "m_sortPriority": { + "type": "int", + "id": 26, + "offset": 504, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 967438884 + }, + "m_excludeFromSeasonPass": { + "type": "int", + "id": 27, + "offset": 508, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1149583224 + }, + "m_isSeasonPass": { + "type": "int", + "id": 28, + "offset": 512, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 540828470 + }, + "m_autoStartYear": { + "type": "int", + "id": 29, + "offset": 516, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1267259570 + }, + "m_autoStartMonth": { + "type": "int", + "id": 30, + "offset": 520, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1000688519 + }, + "m_autoStartDay": { + "type": "int", + "id": 31, + "offset": 524, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1990722463 + }, + "m_maximumSeasonPassPoints": { + "type": "int", + "id": 32, + "offset": 528, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1165009301 + }, + "m_subscriberCownsCost": { + "type": "int", + "id": 33, + "offset": 532, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 352653713 + }, + "m_hideGlobalProgressBar": { + "type": "int", + "id": 34, + "offset": 536, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 102179695 + }, + "m_seasonPassPicture": { + "type": "std::string", + "id": 35, + "offset": 552, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2691396375 + }, + "m_top10LeaderboardBadgeName": { + "type": "std::string", + "id": 36, + "offset": 584, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2561324632 + }, + "m_top100LeaderboardBadgeName": { + "type": "std::string", + "id": 37, + "offset": 616, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1556059944 + }, + "m_top1LeaderboardBadgeName": { + "type": "std::string", + "id": 38, + "offset": 648, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2266410888 + }, + "m_activityList": { + "type": "class SharedPointer", + "id": 39, + "offset": 680, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 458837381 + }, + "m_rewardList": { + "type": "class SharedPointer", + "id": 40, + "offset": 696, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 4055911451 + }, + "m_tokenRewardList": { + "type": "class SharedPointer", + "id": 41, + "offset": 712, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 3225972988 + }, + "m_locationList": { + "type": "class SharedPointer", + "id": 42, + "offset": 728, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 776321471 + }, + "m_globalLootPointList": { + "type": "class SharedPointer", + "id": 43, + "offset": 744, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2460390565 + }, + "m_finalRewardList": { + "type": "class SharedPointer", + "id": 44, + "offset": 760, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 527856021 + }, + "m_featuredRewardList": { + "type": "class SharedPointer", + "id": 45, + "offset": 776, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 3028130027 + }, + "m_isBattlePass": { + "type": "int", + "id": 46, + "offset": 540, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1473359625 + }, + "m_isEnabledProgressAdvancement": { + "type": "int", + "id": 47, + "offset": 544, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1623438236 + }, + "m_extraDataList": { + "type": "std::string", + "id": 48, + "offset": 792, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2533725525 + }, + "m_isDisableActivitiesSection": { + "type": "int", + "id": 49, + "offset": 548, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2093397492 } } }, - "869493526": { - "name": "class SharedPointer", + "1804837405": { + "name": "class CastleBlockDoorBehaviorTemplate*", "bases": [ + "BehaviorTemplate", "PropertyClass" ], - "hash": 869493526, + "hash": 1804837405, "properties": { - "m_list": { - "type": "class TerrainCheerCostMap", + "m_behaviorName": { + "type": "std::string", "id": 0, "offset": 72, "flags": 7, - "container": "List", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 2021860698 + "hash": 3130754092 } } }, - "1218092279": { - "name": "class ObstacleCoursePusherBehaviorClient", + "952300735": { + "name": "class SharedPointer", "bases": [ - "ObstacleCoursePusherBehavior", - "ObstacleCourseObstaclePathBase", - "ObstacleCourseObstacleBehavior", - "BehaviorInstance", + "ActorCinematicAction", + "CinematicAction", "PropertyClass" ], - "hash": 1218092279, + "hash": 952300735, "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", + "m_timeOffset": { + "type": "float", "id": 0, - "offset": 104, - "flags": 39, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 } } }, - "1640960940": { - "name": "class SharedPointer", + "1801521354": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1801521354, + "properties": {} + }, + "951863121": { + "name": "class SharedPointer", "bases": [ - "StatGlobe", - "ControlSprite", "Window", "PropertyClass" ], - "hash": 1640960940, + "hash": 951863121, "properties": { "m_sName": { "type": "std::string", @@ -622663,10 +573153,7 @@ "PARENT_HEIGHT": 524288, "HCENTER": 32768, "VCENTER": 65536, - "DISABLED": 2147483648, - "ONE_SHOT": 8388608, - "FLIPPED_HORIZONTAL": 16777216, - "FLIPPED_VERTICAL": 33554432 + "DISABLED": 2147483648 } }, "m_Window": { @@ -622800,637 +573287,694 @@ "singleton": false, "pointer": false, "hash": 3091503757 - }, - "m_pMaterial": { - "type": "class SharedPointer", - "id": 16, - "offset": 592, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3479277078 - }, - "m_fRotation": { + } + } + }, + "519093249": { + "name": "enum LootInfo::LOOT_TYPE", + "bases": [], + "hash": 519093249, + "properties": {} + }, + "1801200575": { + "name": "class StopBacklashRotationEffectCinematicAction", + "bases": [ + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 1801200575, + "properties": { + "m_timeOffset": { "type": "float", - "id": 17, - "offset": 608, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1175400173 - }, - "m_Color": { - "type": "class Color", - "id": 18, - "offset": 584, - "flags": 262279, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1753714077 - }, - "m_textColor": { - "type": "class Color", - "id": 19, - "offset": 612, - "flags": 262279, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2528109250 - }, - "m_textComponent": { - "type": "class TextComponent", - "id": 20, - "offset": 616, - "flags": 135, + "id": 0, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3491704390 + "hash": 2237098605 }, - "m_amount": { - "type": "int", - "id": 21, - "offset": 800, - "flags": 135, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 248546638 + "hash": 2285866132 } } }, - "77595229": { - "name": "class WizStatisticEffectConfig*", + "951503204": { + "name": "class TransformationEffectTemplate*", "bases": [ + "GameEffectTemplate", "PropertyClass" ], - "hash": 77595229, + "hash": 951503204, "properties": { - "m_accuracyScalarBase": { - "type": "float", + "m_effectName": { + "type": "std::string", "id": 0, - "offset": 76, + "offset": 72, "flags": 7, "container": "Static", "dynamic": false, - "singleton": true, + "singleton": false, "pointer": false, - "hash": 1121339315 + "hash": 2029161513 }, - "m_powerPipScalarBase": { - "type": "float", + "m_effectCategory": { + "type": "std::string", "id": 1, - "offset": 80, + "offset": 104, "flags": 7, "container": "Static", "dynamic": false, - "singleton": true, + "singleton": false, "pointer": false, - "hash": 137046174 + "hash": 1852673222 }, - "m_damageResistanceScalarBase": { - "type": "float", + "m_sortOrder": { + "type": "int", "id": 2, - "offset": 84, + "offset": 148, "flags": 7, "container": "Static", "dynamic": false, - "singleton": true, + "singleton": false, "pointer": false, - "hash": 926091704 + "hash": 1411218206 }, - "m_accuracyScalingFactor": { - "type": "float", + "m_duration": { + "type": "double", "id": 3, - "offset": 88, + "offset": 192, "flags": 7, "container": "Static", "dynamic": false, - "singleton": true, + "singleton": false, "pointer": false, - "hash": 1629583970 + "hash": 2727932435 }, - "m_powerPipScalingFactor": { - "type": "float", + "m_stackingCategories": { + "type": "std::string", "id": 4, - "offset": 92, + "offset": 160, "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": true, + "container": "List", + "dynamic": true, + "singleton": false, "pointer": false, - "hash": 290142061 + "hash": 1774497525 }, - "m_damageResistanceScalingFactor": { - "type": "float", + "m_isPersistent": { + "type": "bool", "id": 5, - "offset": 96, + "offset": 153, "flags": 7, "container": "Static", "dynamic": false, - "singleton": true, + "singleton": false, "pointer": false, - "hash": 845265479 + "hash": 923861920 }, - "m_criticalHitLevelThreshold": { - "type": "int", + "m_bIsOnPet": { + "type": "bool", "id": 6, - "offset": 100, + "offset": 154, "flags": 7, "container": "Static", "dynamic": false, - "singleton": true, + "singleton": false, "pointer": false, - "hash": 278823695 + "hash": 522593303 }, - "m_blockLevelThreshold": { - "type": "int", + "m_isPublic": { + "type": "bool", "id": 7, - "offset": 104, + "offset": 152, "flags": 7, "container": "Static", "dynamic": false, - "singleton": true, + "singleton": false, "pointer": false, - "hash": 639576458 + "hash": 1728439822 }, - "m_accuracyLevelThreshold": { - "type": "int", + "m_visualEffectAddName": { + "type": "std::string", "id": 8, - "offset": 108, + "offset": 200, "flags": 7, "container": "Static", "dynamic": false, - "singleton": true, + "singleton": false, "pointer": false, - "hash": 458488426 + "hash": 3382086694 }, - "m_powerPipLevelThreshold": { - "type": "int", + "m_visualEffectRemoveName": { + "type": "std::string", "id": 9, - "offset": 112, + "offset": 232, "flags": 7, "container": "Static", "dynamic": false, - "singleton": true, + "singleton": false, "pointer": false, - "hash": 1354062037 + "hash": 1541697323 }, - "m_damageResistanceLevelThreshold": { - "type": "int", + "m_onAddFunctorName": { + "type": "std::string", "id": 10, - "offset": 116, + "offset": 280, "flags": 7, "container": "Static", "dynamic": false, - "singleton": true, + "singleton": false, "pointer": false, - "hash": 345781999 + "hash": 1561843107 }, - "m_critAndBlockLevelData": { - "type": "class SharedPointer", + "m_onRemoveFunctorName": { + "type": "std::string", "id": 11, - "offset": 136, + "offset": 312, "flags": 7, - "container": "List", - "dynamic": true, - "singleton": true, - "pointer": true, - "hash": 2466687771 + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2559017864 }, - "m_criticalDamageAddPercent": { - "type": "float", + "m_stackingRule": { + "type": "enum STACKING_RULE", "id": 12, - "offset": 120, - "flags": 7, + "offset": 144, + "flags": 2097159, "container": "Static", "dynamic": false, - "singleton": true, + "singleton": false, "pointer": false, - "hash": 169683323 + "hash": 431568889, + "enum_options": { + "STACKING_ALLOWED": 0, + "STACKING_NOSTACK": 1, + "STACKING_REPLACE": 2 + } }, - "m_criticalDamageAddPercentPvP": { - "type": "float", + "m_sRace": { + "type": "std::string", "id": 13, - "offset": 124, + "offset": 360, "flags": 7, "container": "Static", "dynamic": false, - "singleton": true, + "singleton": false, "pointer": false, - "hash": 1404103985 + "hash": 2306580681 }, - "m_criticalHealAddPercent": { + "m_fScale": { "type": "float", "id": 14, - "offset": 128, + "offset": 392, "flags": 7, "container": "Static", "dynamic": false, - "singleton": true, + "singleton": false, "pointer": false, - "hash": 637250262 + "hash": 503137701 }, - "m_criticalHealAddPercentPvP": { - "type": "float", + "m_nPrimaryColor": { + "type": "int", "id": 15, - "offset": 132, + "offset": 396, "flags": 7, "container": "Static", "dynamic": false, - "singleton": true, + "singleton": false, "pointer": false, - "hash": 297645228 + "hash": 310334923 }, - "m_pipConversionLevelThreshold": { + "m_nSecondaryColor": { "type": "int", "id": 16, - "offset": 152, + "offset": 400, "flags": 7, "container": "Static", "dynamic": false, - "singleton": true, + "singleton": false, "pointer": false, - "hash": 469925422 + "hash": 516938671 }, - "m_pipConversionLevelData": { - "type": "class SharedPointer", + "m_nPatternOption": { + "type": "int", "id": 17, - "offset": 160, + "offset": 404, "flags": 7, - "container": "List", - "dynamic": true, - "singleton": true, - "pointer": true, - "hash": 599333160 + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 413195679 }, - "m_baseCritDivisor": { + "m_nGeometryOption": { "type": "int", "id": 18, - "offset": 176, + "offset": 408, "flags": 7, "container": "Static", "dynamic": false, - "singleton": true, + "singleton": false, "pointer": false, - "hash": 1793948871 + "hash": 676541869 }, - "m_baseBlockDivisor": { - "type": "int", + "m_sNaturalAttack": { + "type": "std::string", "id": 19, - "offset": 180, + "offset": 416, "flags": 7, "container": "Static", "dynamic": false, - "singleton": true, + "singleton": false, "pointer": false, - "hash": 331192160 - }, - "m_critScalarDivisor": { - "type": "int", - "id": 20, - "offset": 184, + "hash": 2131867453 + } + } + }, + "519020479": { + "name": "class CinematicActorAnimationData*", + "bases": [ + "PropertyClass" + ], + "hash": 519020479, + "properties": { + "m_animationName": { + "type": "std::string", + "id": 0, + "offset": 72, "flags": 7, "container": "Static", "dynamic": false, - "singleton": true, + "singleton": false, "pointer": false, - "hash": 353250050 + "hash": 3393414044 }, - "m_blockScalarDivisor": { - "type": "int", - "id": 21, - "offset": 188, + "m_animationPath": { + "type": "std::string", + "id": 1, + "offset": 104, "flags": 7, "container": "Static", "dynamic": false, - "singleton": true, + "singleton": false, "pointer": false, - "hash": 778321147 + "hash": 3393486152 }, - "m_finalCritMedian1": { - "type": "float", - "id": 22, - "offset": 192, + "m_sound": { + "type": "std::string", + "id": 2, + "offset": 136, "flags": 7, "container": "Static", "dynamic": false, - "singleton": true, + "singleton": false, "pointer": false, - "hash": 1779518738 - }, - "m_finalCritMedian2": { - "type": "float", - "id": 23, - "offset": 196, - "flags": 7, + "hash": 2307644996 + } + } + }, + "1800347048": { + "name": "class WinAnimFillGlobeTime*", + "bases": [ + "WindowAnimation", + "PropertyClass" + ], + "hash": 1800347048, + "properties": { + "m_bUseDeepCopy": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 135, "container": "Static", "dynamic": false, - "singleton": true, + "singleton": false, "pointer": false, - "hash": 1779518739 + "hash": 433380635 }, - "m_finalBlockMedian1": { - "type": "float", - "id": 24, - "offset": 200, - "flags": 7, + "m_nAmount": { + "type": "int", + "id": 1, + "offset": 80, + "flags": 135, "container": "Static", "dynamic": false, - "singleton": true, + "singleton": false, "pointer": false, - "hash": 2233508235 + "hash": 1788918332 }, - "m_finalBlockMedian2": { + "m_fTime": { "type": "float", - "id": 25, - "offset": 204, - "flags": 7, + "id": 2, + "offset": 84, + "flags": 135, "container": "Static", "dynamic": false, - "singleton": true, + "singleton": false, "pointer": false, - "hash": 2233508236 + "hash": 883746156 }, - "m_baseCritDivisorPvP": { - "type": "int", - "id": 26, - "offset": 208, - "flags": 7, + "m_fTimeRemaining": { + "type": "float", + "id": 3, + "offset": 88, + "flags": 135, "container": "Static", "dynamic": false, - "singleton": true, + "singleton": false, "pointer": false, - "hash": 650248157 + "hash": 1591443014 }, - "m_baseBlockDivisorPvP": { - "type": "int", - "id": 27, - "offset": 212, - "flags": 7, + "m_bEndTutorialOnFinish": { + "type": "bool", + "id": 4, + "offset": 92, + "flags": 135, "container": "Static", "dynamic": false, - "singleton": true, + "singleton": false, "pointer": false, - "hash": 1814544342 - }, - "m_critScalarDivisorPvP": { - "type": "int", - "id": 28, - "offset": 216, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": true, + "hash": 1777836702 + } + } + }, + "951472174": { + "name": "class InitialPackageInfo*", + "bases": [ + "PropertyClass" + ], + "hash": 951472174, + "properties": { + "m_packageContents": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 268435463, + "container": "Vector", + "dynamic": true, + "singleton": false, "pointer": false, - "hash": 2087471160 - }, - "m_blockScalarDivisorPvP": { - "type": "int", - "id": 29, - "offset": 220, + "hash": 3309777205, + "enum_options": { + "__BASECLASS": "ZoneData" + } + } + } + }, + "1364979541": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1364979541, + "properties": { + "m_tabName": { + "type": "std::string", + "id": 0, + "offset": 72, "flags": 7, "container": "Static", "dynamic": false, - "singleton": true, + "singleton": false, "pointer": false, - "hash": 668812177 + "hash": 1536087219 }, - "m_finalCritMedian1PvP": { - "type": "float", - "id": 30, - "offset": 224, + "m_tabWindow": { + "type": "class SharedPointer", + "id": 1, + "offset": 104, "flags": 7, "container": "Static", "dynamic": false, - "singleton": true, - "pointer": false, - "hash": 849935720 + "singleton": false, + "pointer": true, + "hash": 2814298381 }, - "m_finalCritMedian2PvP": { - "type": "float", - "id": 31, - "offset": 228, + "m_tabButton": { + "type": "class SharedPointer", + "id": 2, + "offset": 120, "flags": 7, "container": "Static", "dynamic": false, - "singleton": true, - "pointer": false, - "hash": 849971657 - }, - "m_finalBlockMedian1PvP": { - "type": "float", - "id": 32, - "offset": 232, + "singleton": false, + "pointer": true, + "hash": 847778038 + } + } + }, + "519020287": { + "name": "class CinematicActorAnimationData", + "bases": [ + "PropertyClass" + ], + "hash": 519020287, + "properties": { + "m_animationName": { + "type": "std::string", + "id": 0, + "offset": 72, "flags": 7, "container": "Static", "dynamic": false, - "singleton": true, + "singleton": false, "pointer": false, - "hash": 1437215553 + "hash": 3393414044 }, - "m_finalBlockMedian2PvP": { - "type": "float", - "id": 33, - "offset": 236, + "m_animationPath": { + "type": "std::string", + "id": 1, + "offset": 104, "flags": 7, "container": "Static", "dynamic": false, - "singleton": true, + "singleton": false, "pointer": false, - "hash": 1437251490 + "hash": 3393486152 }, - "m_archmasteryFillRateScaler": { - "type": "float", - "id": 34, - "offset": 240, + "m_sound": { + "type": "std::string", + "id": 2, + "offset": 136, "flags": 7, "container": "Static", "dynamic": false, - "singleton": true, + "singleton": false, "pointer": false, - "hash": 266116071 - }, - "m_archmasteryFillRateMax": { - "type": "float", - "id": 35, - "offset": 244, - "flags": 7, + "hash": 2307644996 + } + } + }, + "1800347008": { + "name": "class WinAnimFillGlobeTime", + "bases": [ + "WindowAnimation", + "PropertyClass" + ], + "hash": 1800347008, + "properties": { + "m_bUseDeepCopy": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 135, "container": "Static", "dynamic": false, - "singleton": true, + "singleton": false, "pointer": false, - "hash": 2006811155 + "hash": 433380635 }, - "m_archmasteryFullnessMinPvE": { - "type": "float", - "id": 36, - "offset": 248, - "flags": 7, + "m_nAmount": { + "type": "int", + "id": 1, + "offset": 80, + "flags": 135, "container": "Static", "dynamic": false, - "singleton": true, + "singleton": false, "pointer": false, - "hash": 1196194389 + "hash": 1788918332 }, - "m_archmasteryFullnessMinPvP": { + "m_fTime": { "type": "float", - "id": 37, - "offset": 252, - "flags": 7, + "id": 2, + "offset": 84, + "flags": 135, "container": "Static", "dynamic": false, - "singleton": true, + "singleton": false, "pointer": false, - "hash": 1196194400 + "hash": 883746156 }, - "m_archmasteryConversionCost": { + "m_fTimeRemaining": { "type": "float", - "id": 38, - "offset": 256, - "flags": 7, + "id": 3, + "offset": 88, + "flags": 135, "container": "Static", "dynamic": false, - "singleton": true, + "singleton": false, "pointer": false, - "hash": 1687582297 + "hash": 1591443014 }, - "m_archmasteryPowerPipCost": { - "type": "float", - "id": 39, - "offset": 260, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": true, - "pointer": false, - "hash": 411547625 - } - } - }, - "1218090743": { - "name": "class ObstacleCoursePusherBehaviorClient*", - "bases": [ - "ObstacleCoursePusherBehavior", - "ObstacleCourseObstaclePathBase", - "ObstacleCourseObstacleBehavior", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1218090743, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, + "m_bEndTutorialOnFinish": { + "type": "bool", + "id": 4, + "offset": 92, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 + "hash": 1777836702 } } }, - "77139509": { - "name": "class LeashBehavior", + "950839518": { + "name": "class SharedPointer", "bases": [ - "BehaviorInstance", "PropertyClass" ], - "hash": 77139509, + "hash": 950839518, "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", + "m_itemID": { + "type": "gid", "id": 0, - "offset": 104, - "flags": 39, + "offset": 80, + "flags": 33554439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 + "hash": 569545460 }, - "m_ownerGid": { - "type": "gid", + "m_adjective": { + "type": "std::string", "id": 1, - "offset": 128, - "flags": 31, + "offset": 88, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1765088663 + "hash": 3429518154 }, - "m_radius": { - "type": "float", + "m_quantity": { + "type": "int", "id": 2, - "offset": 136, - "flags": 31, + "offset": 120, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 989410271 + "hash": 169215289 }, - "m_angle": { - "type": "float", + "m_spellTemplate": { + "type": "std::string", "id": 3, - "offset": 140, - "flags": 31, + "offset": 128, + "flags": 268435463, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 878748702 + "hash": 1746600759, + "enum_options": { + "__BASECLASS": "SpellTemplate" + } }, - "m_leashType": { - "type": "enum LeashType", + "m_ingredientType": { + "type": "enum Ingredient::INGREDIENT_TYPE", "id": 4, - "offset": 144, - "flags": 31, + "offset": 72, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2170708051, + "hash": 3347167757, "enum_options": { - "LLT_Rigid": 0, - "LLT_Elastic": 1 + "INGREDIENT_REAGENT": 0, + "INGREDIENT_TREASURE": 1, + "INGREDIENT_ITEM": 2, + "INGREDIENT_FISH": 3, + "INGREDIENT_PET_SNACK": 4 } + } + } + }, + "1365512403": { + "name": "class ActorDialogCinematicAction", + "bases": [ + "CinematicAction", + "PropertyClass" + ], + "hash": 1365512403, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 }, - "m_alwaysDisplay": { - "type": "bool", - "id": 5, - "offset": 161, - "flags": 31, + "m_dialog": { + "type": "class ActorDialog*", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1310859212 + }, + "m_activePersona": { + "type": "std::string", + "id": 2, + "offset": 88, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2071781402 + "hash": 1972573231 } } }, - "475232129": { - "name": "class ScrollButton*", + "1800452241": { + "name": "enum WizItemLocations::eItemType", + "bases": [], + "hash": 1800452241, + "properties": {} + }, + "1365468914": { + "name": "class SharedPointer", "bases": [ - "ControlPopupButton", + "ControlCheckBox", "ControlButton", "Window", "PropertyClass" ], - "hash": 475232129, + "hash": 1365468914, "properties": { "m_sName": { "type": "std::string", @@ -623468,7 +574012,6 @@ "HAS_BACK": 1, "CAN_MOVE": 4, "CAN_SIZE": 8, - "CAN_SCROLL": 16, "CAN_FOCUS": 128, "CAN_DOCK": 32, "DO_NOT_CAPTURE_MOUSE": 256, @@ -623481,10 +574024,11 @@ "AUTO_GROW": 16384, "AUTO_SHRINK": 32768, "AUTO_RESIZE": 49152, - "POPDOWN_SIBLINGS": 67108864, - "DISABLE_CHILDREN": 134217728, - "HIDE_SIBLINGS": 268435456, - "POPUP_ON_HOVER": 536870912 + "EFFECT_SCALE": 67108864, + "LOCK_ICON_SIZE": 33554432, + "LEFT_TEXT": 536870912, + "NO_FIT_TEXT": 1073741824, + "CHECKBOX_TEXTOVERIMAGE": 16777216 } }, "m_Flags": { @@ -623876,8 +574420,8 @@ "pointer": true, "hash": 1878185798 }, - "m_bUp": { - "type": "bool", + "m_nGroupID": { + "type": "int", "id": 37, "offset": 880, "flags": 135, @@ -623885,51 +574429,106 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 269510906 + "hash": 403966850 + }, + "m_bChecked": { + "type": "bool", + "id": 38, + "offset": 884, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 958955100 + }, + "m_pCheckedState": { + "type": "class SharedPointer", + "id": 39, + "offset": 888, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1210539694 + }, + "m_pCheckedGreyedState": { + "type": "class SharedPointer", + "id": 40, + "offset": 904, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2702030126 + }, + "m_pCheckedHighlightedState": { + "type": "class SharedPointer", + "id": 41, + "offset": 920, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1320097679 + }, + "m_pCheckedDepressedState": { + "type": "class SharedPointer", + "id": 42, + "offset": 936, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1609188685 } } }, - "874500816": { - "name": "class GuildIslandItemBehaviorTemplate", + "519320684": { + "name": "class SharedPointer", "bases": [ - "BehaviorTemplate", + "HousingObjectWandContainer", "PropertyClass" ], - "hash": 874500816, + "hash": 519320684, "properties": { - "m_behaviorName": { - "type": "std::string", + "m_displayID": { + "type": "gid", "id": 0, "offset": 72, - "flags": 7, + "flags": 65543, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3130754092 + "hash": 1022427803 }, - "m_islandTemplateID": { - "type": "unsigned int", + "m_jewelBuffer": { + "type": "std::string", "id": 1, - "offset": 120, - "flags": 7, + "offset": 80, + "flags": 65543, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1751952753 + "hash": 2221753804 } } }, - "1641732241": { - "name": "class SharedPointer", + "951509348": { + "name": "class TransformationEffectTemplate", "bases": [ - "BehaviorTemplate", + "GameEffectTemplate", "PropertyClass" ], - "hash": 1641732241, + "hash": 951509348, "properties": { - "m_behaviorName": { + "m_effectName": { "type": "std::string", "id": 0, "offset": 72, @@ -623938,158 +574537,801 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 3130754092 + "hash": 2029161513 }, - "m_materialName": { + "m_effectCategory": { "type": "std::string", "id": 1, - "offset": 120, + "offset": 104, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1878140043 + "hash": 1852673222 }, - "m_red": { - "type": "float", + "m_sortOrder": { + "type": "int", "id": 2, - "offset": 152, + "offset": 148, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 357248818 + "hash": 1411218206 }, - "m_green": { - "type": "float", + "m_duration": { + "type": "double", "id": 3, - "offset": 156, + "offset": 192, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 886005576 + "hash": 2727932435 }, - "m_blue": { - "type": "float", + "m_stackingCategories": { + "type": "std::string", "id": 4, "offset": 160, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 309442303 + "hash": 1774497525 }, - "m_hasShadow": { + "m_isPersistent": { "type": "bool", "id": 5, - "offset": 164, + "offset": 153, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1762388821 + "hash": 923861920 }, - "m_animate": { + "m_bIsOnPet": { "type": "bool", "id": 6, - "offset": 165, + "offset": 154, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1790956978 + "hash": 522593303 }, - "m_defaultSignText": { - "type": "std::string", + "m_isPublic": { + "type": "bool", "id": 7, - "offset": 168, + "offset": 152, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3351101718 + "hash": 1728439822 + }, + "m_visualEffectAddName": { + "type": "std::string", + "id": 8, + "offset": 200, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3382086694 + }, + "m_visualEffectRemoveName": { + "type": "std::string", + "id": 9, + "offset": 232, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1541697323 + }, + "m_onAddFunctorName": { + "type": "std::string", + "id": 10, + "offset": 280, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1561843107 + }, + "m_onRemoveFunctorName": { + "type": "std::string", + "id": 11, + "offset": 312, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2559017864 + }, + "m_stackingRule": { + "type": "enum STACKING_RULE", + "id": 12, + "offset": 144, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 431568889, + "enum_options": { + "STACKING_ALLOWED": 0, + "STACKING_NOSTACK": 1, + "STACKING_REPLACE": 2 + } + }, + "m_sRace": { + "type": "std::string", + "id": 13, + "offset": 360, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306580681 + }, + "m_fScale": { + "type": "float", + "id": 14, + "offset": 392, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 503137701 + }, + "m_nPrimaryColor": { + "type": "int", + "id": 15, + "offset": 396, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 310334923 + }, + "m_nSecondaryColor": { + "type": "int", + "id": 16, + "offset": 400, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 516938671 + }, + "m_nPatternOption": { + "type": "int", + "id": 17, + "offset": 404, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 413195679 + }, + "m_nGeometryOption": { + "type": "int", + "id": 18, + "offset": 408, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 676541869 + }, + "m_sNaturalAttack": { + "type": "std::string", + "id": 19, + "offset": 416, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2131867453 } } }, - "873496043": { - "name": "class SavedDebugCommandContainer", + "1800602614": { + "name": "class SharedPointer", "bases": [ "PropertyClass" ], - "hash": 873496043, + "hash": 1800602614, "properties": { - "m_savedDebugCommandList": { - "type": "class SharedPointer", + "m_resultType": { + "type": "enum CombatResult::kResultType", "id": 0, "offset": 72, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1482430415, + "enum_options": { + "kResult_StartSpellCast": 0, + "kResult_StartSpellNoCast": 1, + "kResult_Focus": 2, + "kResult_Discard": 3, + "kResult_Flee": 4, + "kResult_HangingEffectAdded": 5, + "kResult_ProtectedHangingEffectAdded": 6, + "kResult_RemovingHangingEffect": 7, + "kResult_HangingEffectRemovedIncoming": 8, + "kResult_HangingEffectRemovedIncomingFast": 9, + "kResult_HangingEffectRemovedIncomingDetonated": 10, + "kResult_HangingEffectRemovedOutgoing": 11, + "kResult_HangingEffectRemovedOutgoingFast": 12, + "kResult_HangingEffectProcessed": 13, + "kResult_HangingEffectRoundsModified": 14, + "kResult_Bounce": 15, + "kResult_TakeDamage": 16, + "kResult_HealDamage": 17, + "kResult_TakeDamageOverTime": 18, + "kResult_HealDamageOverTime": 19, + "kResult_StealTake": 20, + "kResult_StealGive": 21, + "kResult_AbsorbDamage": 22, + "kResult_AbsorbHeal": 110, + "kResult_Miss": 23, + "kResult_Hit": 24, + "kResult_CriticalBlocked": 25, + "kResult_CriticalHit": 26, + "kResult_GlobalEffectProcessed": 27, + "kResult_GlobalEffectAdded": 28, + "kResult_GlobalEffectRemoved": 29, + "kResult_PlayerDied": 30, + "kResult_CreatureSummoned": 31, + "kResult_TeleportPlayer": 32, + "kResult_PipsModified": 33, + "kResult_PowerPipsModified": 34, + "kResult_ShadowPipsModified": 35, + "kResult_Stunned": 36, + "kResult_Unstunned": 37, + "kResult_Polymorphed": 38, + "kResult_UnPolymorphed": 39, + "kResult_Reshuffle": 40, + "kResult_SpellDone": 41, + "kResult_ModifyHate": 42, + "kResult_MindControlled": 43, + "kResult_UnMindControlled": 44, + "kResult_MindControlImmune": 45, + "kResult_AddAura": 46, + "kResult_RemoveAura": 47, + "kResult_BuffDebuff": 48, + "kResult_Resurrected": 49, + "kResult_DamageTypeChanged": 50, + "kResult_CloakedEffectAdded": 51, + "kResult_RevealCloakedEffect": 52, + "kResult_StunResist": 53, + "kResult_StunResistFailed": 54, + "kResult_StunImmune": 55, + "kResult_ArmorPierced": 56, + "kResult_AfterlifeEffectsProcessed": 57, + "kResult_AfterlifeEffectsAdded": 58, + "kResult_AfterlifeEffectsRemoved": 59, + "kResult_EffectFailed": 60, + "kResult_StartAOE": 61, + "kResult_StopAOE": 62, + "kResult_StartAOEAct": 63, + "kResult_StopAOEAct": 64, + "kResult_CombatTriggerListAdded": 65, + "kResult_CombatTriggerListRemoved": 66, + "kResult_AddBacklashResult": 72, + "kResult_RemoveBacklashResult": 73, + "kResult_AddShadowSpellEffect": 67, + "kResult_ChangeShadowSelfEffect": 71, + "kResult_RemoveShadowSpellEffect": 68, + "kResult_ShadowSelfEffect": 69, + "kResult_UnShadowSelfEffect": 70, + "kResult_ModifyBacklash": 74, + "kResult_AddIntercept": 75, + "kResult_RemoveIntercept": 76, + "kResult_TakeInterceptDamage": 77, + "kResult_InterceptedDamage": 78, + "kResult_InterceptedDamageThisRound": 79, + "kResult_IncreaseShadowCreatureLevel": 81, + "kResult_DecreaseShadowCreatureLevel": 82, + "kResult_SetShadowCreatureLevel": 83, + "kResult_RemoveShadowCreature": 84, + "kResult_ShadowCreatureAttack": 85, + "kResult_PostActionProcess": 86, + "kResult_CreatureSpawned": 88, + "kResult_HangingEffectRemovedProtection": 90, + "kResult_planningPhasePipSync": 97, + "kResult_pipConversionRefund": 96, + "kResult_FirstPlayerSwitched": 98, + "kResult_Confused": 99, + "kResult_Unconfused": 100, + "kResult_Clued": 102, + "kResult_ClueImmune": 103, + "kResult_PetCasted": 112, + "kResult_CastSigilSpell": 113, + "kResult_AddSpellToDeck": 114, + "kResult_SetTopTeam": 115, + "kResult_SetBottomTeam": 116, + "kResult_ClearTopTeam": 117, + "kResult_ClearBottomTeam": 118, + "kResult_StartBackRowCast": 119, + "kResult_StopBackRowCast": 120, + "kResult_SchoolPipsModified": 121, + "kResult_None": 122 + } + }, + "m_participantSubCircle": { + "type": "int", + "id": 1, + "offset": 76, "flags": 7, - "container": "List", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2197698884 + "pointer": false, + "hash": 1360563125 }, - "m_saveToHistory": { + "m_effectType": { + "type": "int", + "id": 2, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 531703753 + }, + "m_effectAmount": { + "type": "int", + "id": 3, + "offset": 84, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 498226203 + }, + "m_spellTemplateID": { + "type": "unsigned int", + "id": 4, + "offset": 88, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 585567702 + }, + "m_spellBaseOverrideTemplateID": { + "type": "unsigned int", + "id": 5, + "offset": 92, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2024236913 + }, + "m_targetSubCircle": { + "type": "int", + "id": 6, + "offset": 96, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1278786653 + }, + "m_durationModifier": { + "type": "float", + "id": 7, + "offset": 192, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 753259116 + }, + "m_petCasted": { + "type": "bool", + "id": 8, + "offset": 196, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1697247120 + }, + "m_petCastedTarget": { + "type": "int", + "id": 9, + "offset": 200, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1344025214 + }, + "m_cloaked": { "type": "bool", + "id": 10, + "offset": 204, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 7349510 + } + } + }, + "1365512409": { + "name": "class ActorDialogCinematicAction*", + "bases": [ + "CinematicAction", + "PropertyClass" + ], + "hash": 1365512409, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_dialog": { + "type": "class ActorDialog*", "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1310859212 + }, + "m_activePersona": { + "type": "std::string", + "id": 2, "offset": 88, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 762028567 + "hash": 1972573231 } } }, - "1641545040": { - "name": "class SharedPointer", + "538202429": { + "name": "class ActorDialogListBase", "bases": [ - "BehaviorTemplate", "PropertyClass" ], - "hash": 1641545040, + "hash": 538202429, + "properties": {} + }, + "951959122": { + "name": "class WindowBubble", + "bases": [ + "PropertyClass" + ], + "hash": 951959122, "properties": { - "m_behaviorName": { + "m_sFilename": { "type": "std::string", "id": 0, "offset": 72, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2431512111 + }, + "m_Flags": { + "type": "unsigned int", + "id": 1, + "offset": 104, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 967851578, + "enum_options": { + "DOCK_BL_OF_BUBBLE": 1, + "DOCK_BR_OF_BUBBLE": 2, + "DOCK_TL_OF_BUBBLE": 4, + "DOCK_TR_OF_BUBBLE": 8 + } + }, + "m_DockToPoint": { + "type": "class Point", + "id": 2, + "offset": 144, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3130754092 + "hash": 2353513904 + } + } + }, + "534098391": { + "name": "class SharedPointer", + "bases": [ + "SetHangingEffectAlphaCinematicAction", + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 534098391, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 }, - "m_equivalentItemTemplateID": { - "type": "gid", + "m_actor": { + "type": "std::string", "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + }, + "m_cloaked": { + "type": "bool", + "id": 2, "offset": 120, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 657877294 + "hash": 7349510 + }, + "m_alpha": { + "type": "float", + "id": 3, + "offset": 124, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 878686493 } } }, - "77913086": { - "name": "class NodeObject*", + "1801221055": { + "name": "class StopBacklashRotationEffectCinematicAction*", "bases": [ + "ActorCinematicAction", + "CinematicAction", "PropertyClass" ], - "hash": 77913086, + "hash": 1801221055, "properties": { - "m_location": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + } + } + }, + "525749390": { + "name": "class MaxGoldLootInfo*", + "bases": [ + "LootInfo", + "LootInfoBase", + "PropertyClass" + ], + "hash": 525749390, + "properties": { + "m_lootType": { + "type": "enum LootInfo::LOOT_TYPE", + "id": 0, + "offset": 72, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1591891442, + "enum_options": { + "LOOT_TYPE_NONE": 0, + "LOOT_TYPE_GOLD": 1, + "LOOT_TYPE_MANA": 2, + "LOOT_TYPE_ITEM": 3, + "LOOT_TYPE_TREASURE_CARD": 4, + "LOOT_TYPE_MAGIC_XP": 5, + "LOOT_TYPE_ADD_SPELL": 6, + "LOOT_TYPE_MAX_HEALTH": 7, + "LOOT_TYPE_MAX_GOLD": 8, + "LOOT_TYPE_MAX_MANA": 9, + "LOOT_TYPE_MAX_POTION": 10, + "LOOT_TYPE_TRAINING_POINTS": 11, + "LOOT_TYPE_RECIPE": 12, + "LOOT_TYPE_CRAFTING_SLOT": 13, + "LOOT_TYPE_REAGENT": 14, + "LOOT_TYPE_PETSNACK": 15, + "LOOT_TYPE_GARDENING_XP": 16, + "LOOT_TYPE_PET_XP": 17, + "LOOT_TYPE_TREASURE_TABLE": 18, + "LOOT_TYPE_ARENA_POINTS": 19, + "LOOT_TYPE_ARENA_BONUS_POINTS": 20, + "LOOT_TYPE_GROUP": 21, + "LOOT_TYPE_FISHING_XP": 22, + "LOOT_TYPE_EVENT_CURRENCY_1": 24, + "LOOT_TYPE_EVENT_CURRENCY_2": 25, + "LOOT_TYPE_PVP_CURRENCY": 26, + "LOOT_TYPE_PVP_CURRENCY_BONUS": 27, + "LOOT_TYPE_PVP_TOURNEY_CURRENCY": 28, + "LOOT_TYPE_PVP_TOURNEY_CURRENCY_BONUS": 29, + "LOOT_TYPE_FURNITURE_ESSENCE": 30 + } + }, + "m_maxGoldToAdd": { + "type": "int", + "id": 1, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 667552370 + } + } + }, + "1375294089": { + "name": "class ClientStartHangingRotationCinematicAction", + "bases": [ + "StartHangingRotationCinematicAction", + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 1375294089, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + }, + "m_cloaked": { + "type": "bool", + "id": 2, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 7349510 + } + } + }, + "523623171": { + "name": "class SharedPointer", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 523623171, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_trainData": { + "type": "std::string", + "id": 1, + "offset": 128, + "flags": 575, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2994039667 + } + } + }, + "954027565": { + "name": "struct PointData*", + "bases": [ + "PropertyClass" + ], + "hash": 954027565, + "properties": { + "m_position": { "type": "class Vector3D", "id": 0, "offset": 72, @@ -624098,9 +575340,9 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 2239683611 + "hash": 3697900983 }, - "m_fRadius": { + "m_pitch": { "type": "float", "id": 1, "offset": 84, @@ -624109,770 +575351,971 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 787972805 + "hash": 896371695 }, - "m_id": { - "type": "gid", + "m_yaw": { + "type": "float", "id": 2, - "offset": 104, + "offset": 88, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2090569797 + "hash": 357256328 }, - "m_direction": { + "m_roll": { "type": "float", "id": 3, - "offset": 88, + "offset": 92, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 310020272, + "enum_options": { + "__DEFAULT": 0 + } + } + } + }, + "1368448727": { + "name": "class SharedPointer", + "bases": [ + "GoalTemplate", + "CoreTemplate", + "PropertyClass" + ], + "hash": 1368448727, + "properties": { + "m_behaviors": { + "type": "class BehaviorTemplate*", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1197808594 + }, + "m_goalName": { + "type": "std::string", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1521627807 + }, + "m_goalNameID": { + "type": "unsigned int", + "id": 2, + "offset": 496, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 403158846 + }, + "m_goalTitle": { + "type": "std::string", + "id": 3, + "offset": 136, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2291910240 + }, + "m_goalUnderway": { + "type": "std::string", + "id": 4, + "offset": 168, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3153144269 + }, + "m_hyperlink": { + "type": "std::string", + "id": 5, + "offset": 200, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2887798993 + }, + "m_completeText": { + "type": "std::string", + "id": 6, + "offset": 232, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2767458393 + }, + "m_completeResults": { + "type": "class ResultList*", + "id": 7, + "offset": 440, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1964258099 + }, + "m_goalRequirements": { + "type": "class RequirementList*", + "id": 8, + "offset": 448, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2979967145 + }, + "m_tallyCounter": { + "type": "class TallyCounterTemplate*", + "id": 9, + "offset": 456, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1884546193 + }, + "m_locationName": { + "type": "std::string", + "id": 10, + "offset": 272, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1824218389 + }, + "m_displayImage1": { + "type": "std::string", + "id": 11, + "offset": 304, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1959572133 + }, + "m_displayImage2": { + "type": "std::string", + "id": 12, + "offset": 336, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1959572134 + }, + "m_clientTags": { + "type": "std::string", + "id": 13, + "offset": 368, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2319030025 + }, + "m_genericEvents": { + "type": "std::string", + "id": 14, + "offset": 384, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 3466670829 + }, + "m_autoQualify": { + "type": "bool", + "id": 15, + "offset": 400, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1878907431 + }, + "m_autoComplete": { + "type": "bool", + "id": 16, + "offset": 401, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1302545445 + }, + "m_destinationZone": { + "type": "std::string", + "id": 17, + "offset": 408, + "flags": 268435463, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2605356153, + "enum_options": { + "__BASECLASS": "ZoneData" + } + }, + "m_dialogList": { + "type": "class ActorDialogListBase*", + "id": 18, + "offset": 264, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1909154969 + }, + "m_goalType": { + "type": "enum GoalTemplate::GOAL_TYPE", + "id": 19, + "offset": 96, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1488021149, + "enum_options": { + "GOAL_TYPE_UNKNOWN": 0, + "GOAL_TYPE_BOUNTY": 1, + "GOAL_TYPE_BOUNTYCOLLECT": 2, + "GOAL_TYPE_SCAVENGE": 3, + "GOAL_TYPE_PERSONA": 4, + "GOAL_TYPE_WAYPOINT": 5, + "GOAL_TYPE_SCAVENGEFAKE": 6, + "GOAL_TYPE_ACHIEVERANK": 7, + "GOAL_TYPE_USAGE": 8, + "GOAL_TYPE_COMPLETEQUEST": 9, + "GOAL_TYPE_SOCIARANK": 10, + "GOAL_TYPE_SOCIACURRENCY": 11, + "GOAL_TYPE_SOCIAMINIGAME": 12, + "GOAL_TYPE_SOCIAGIVEITEM": 13, + "GOAL_TYPE_SOCIAGETITEM": 14, + "GOAL_TYPE_COLLECTAFTERBOUNTY": 15, + "GOAL_TYPE_ENCOUNTER_WAYPOINT_FOREACH": 16 + } + }, + "m_noQuestHelper": { + "type": "bool", + "id": 20, + "offset": 500, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 578010882, + "enum_options": { + "__DEFAULT": 0 + } + }, + "m_petOnlyQuest": { + "type": "bool", + "id": 21, + "offset": 501, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 679359344, + "enum_options": { + "__DEFAULT": 0 + } + }, + "m_activateResults": { + "type": "class ResultList*", + "id": 22, + "offset": 504, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3790153995 + }, + "m_hideGoalFloatyText": { + "type": "bool", + "id": 23, + "offset": 512, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1919383204, + "enum_options": { + "__DEFAULT": 0 + } + }, + "m_zoneEntry": { + "type": "bool", + "id": 24, + "offset": 520, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 739064065 + }, + "m_zoneTag": { + "type": "std::string", + "id": 25, + "offset": 528, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1528165112 + "hash": 3405382643 }, - "m_roll": { - "type": "float", - "id": 4, - "offset": 92, + "m_proximityTag": { + "type": "std::string", + "id": 26, + "offset": 560, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 310020272 + "hash": 1743105804 }, - "m_descriptor": { - "type": "class SharedPointer", - "id": 5, - "offset": 120, + "m_zoneExit": { + "type": "bool", + "id": 27, + "offset": 521, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1929260873 + "pointer": false, + "hash": 675650793 } } }, - "475758968": { - "name": "class QuestEffectTemplate", + "521162923": { + "name": "class DerbyModifyRate*", "bases": [ - "ContainerEffectTemplate", - "GameEffectTemplate", + "DerbyEffect", "PropertyClass" ], - "hash": 475758968, + "hash": 521162923, "properties": { - "m_effectName": { - "type": "std::string", + "m_buffType": { + "type": "enum DerbyTalentBuffType", "id": 0, - "offset": 72, - "flags": 7, + "offset": 92, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2029161513 + "hash": 1149251982, + "enum_options": { + "Buff": 0, + "Debuff": 1, + "Neither": 2 + } }, - "m_effectCategory": { - "type": "std::string", + "m_kTarget": { + "type": "enum DerbyTargetType", "id": 1, - "offset": 104, - "flags": 7, + "offset": 96, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1852673222 + "hash": 1807803351, + "enum_options": { + "kTargetInFront": 0, + "kTargetBehind": 1, + "kTargetFirst": 2, + "kTargetSelf": 3, + "kTargetAll": 4, + "kTargetLast": 5 + } }, - "m_sortOrder": { + "m_nDuration": { "type": "int", "id": 2, - "offset": 148, - "flags": 7, + "offset": 104, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1411218206 + "hash": 1110167982 }, - "m_duration": { - "type": "double", + "m_effectID": { + "type": "unsigned int", "id": 3, - "offset": 192, - "flags": 7, + "offset": 88, + "flags": 24, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2727932435 + "hash": 2347630439 }, - "m_stackingCategories": { + "m_imageFilename": { "type": "std::string", "id": 4, - "offset": 160, - "flags": 7, - "container": "List", - "dynamic": true, + "offset": 112, + "flags": 131103, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 1774497525 + "hash": 2813328063 }, - "m_isPersistent": { - "type": "bool", + "m_iconIndex": { + "type": "unsigned int", "id": 5, - "offset": 153, - "flags": 7, + "offset": 144, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 923861920 + "hash": 1265133262 }, - "m_bIsOnPet": { - "type": "bool", + "m_soundOnActivate": { + "type": "std::string", "id": 6, - "offset": 154, - "flags": 7, + "offset": 152, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 522593303 + "hash": 1956929714 }, - "m_isPublic": { - "type": "bool", + "m_soundOnTarget": { + "type": "std::string", "id": 7, - "offset": 152, - "flags": 7, + "offset": 184, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1728439822 + "hash": 3444214056 }, - "m_visualEffectAddName": { + "m_targetParticleEffect": { "type": "std::string", "id": 8, - "offset": 200, - "flags": 7, + "offset": 216, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3382086694 + "hash": 3048234723 }, - "m_visualEffectRemoveName": { + "m_overheadMessage": { "type": "std::string", "id": 9, - "offset": 232, - "flags": 7, + "offset": 248, + "flags": 8388639, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1541697323 + "hash": 1701018190 }, - "m_onAddFunctorName": { - "type": "std::string", + "m_requirements": { + "type": "class RequirementList", "id": 10, "offset": 280, - "flags": 7, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1561843107 + "hash": 2840988582 }, - "m_onRemoveFunctorName": { - "type": "std::string", + "m_nRateChange": { + "type": "int", "id": 11, - "offset": 312, - "flags": 7, + "offset": 376, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2559017864 - }, - "m_stackingRule": { - "type": "enum STACKING_RULE", - "id": 12, - "offset": 144, + "hash": 797681786 + } + } + }, + "1803315568": { + "name": "class TubeGeomParams*", + "bases": [ + "GeomParams", + "PropertyClass" + ], + "hash": 1803315568, + "properties": { + "m_eType": { + "type": "enum ProxyType", + "id": 0, + "offset": 72, "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 431568889, + "hash": 1656534066, "enum_options": { - "STACKING_ALLOWED": 0, - "STACKING_NOSTACK": 1, - "STACKING_REPLACE": 2 + "ProxyTypeBox": 0, + "ProxyTypeRay": 1, + "ProxyTypeSphere": 2, + "ProxyTypeCylinder": 3, + "ProxyTypeTube": 4, + "ProxyTypePlane": 5, + "ProxyTypeMesh": 6, + "ProxyTypeInvalid": 7 } }, - "m_startReqs": { - "type": "class SharedPointer", - "id": 13, - "offset": 360, + "m_fRadius": { + "type": "float", + "id": 1, + "offset": 80, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3147529602 - }, - "m_containerEffects": { - "type": "class SharedPointer", - "id": 14, - "offset": 376, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 957354392 + "pointer": false, + "hash": 787972805 }, - "m_accompanyID": { - "type": "unsigned int", - "id": 15, - "offset": 392, + "m_fLength": { + "type": "float", + "id": 2, + "offset": 84, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1462123093 + "hash": 558261279 } } }, - "873360702": { - "name": "class std::vector >", - "bases": [], - "hash": 873360702, - "properties": {} - }, - "870288582": { - "name": "enum DailyPvPInfo::DailyPvPTypes", - "bases": [], - "hash": 870288582, - "properties": {} - }, - "78046840": { - "name": "class std::list >", - "bases": [], - "hash": 78046840, - "properties": {} - }, - "870259479": { - "name": "class FontGlyphis", + "953634349": { + "name": "struct PointData", "bases": [ - "Font", "PropertyClass" ], - "hash": 870259479, + "hash": 953634349, "properties": { - "m_sFilename": { - "type": "std::string", + "m_position": { + "type": "class Vector3D", "id": 0, - "offset": 160, - "flags": 131207, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2431512111 + "hash": 3697900983 }, - "m_fScale": { + "m_pitch": { "type": "float", "id": 1, - "offset": 192, - "flags": 135, + "offset": 84, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 503137701 + "hash": 896371695 }, - "m_nKerningAdjust": { - "type": "int", + "m_yaw": { + "type": "float", "id": 2, - "offset": 200, - "flags": 135, + "offset": 88, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 287732353 + "hash": 357256328 + }, + "m_roll": { + "type": "float", + "id": 3, + "offset": 92, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 310020272, + "enum_options": { + "__DEFAULT": 0 + } } } }, - "1219613825": { - "name": "class LeaderboardOption", + "1367233111": { + "name": "class DynamicSigilRound", "bases": [ - "ServiceOptionBase", "PropertyClass" ], - "hash": 1219613825, + "hash": 1367233111, "properties": { - "m_serviceName": { - "type": "std::string", + "m_turns": { + "type": "class SharedPointer", "id": 0, "offset": 72, "flags": 31, - "container": "Static", - "dynamic": false, + "container": "Vector", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 2206028813 - }, - "m_iconKey": { + "pointer": true, + "hash": 1624806566 + } + } + }, + "520462430": { + "name": "class SG_GameScoreMultiplier*", + "bases": [ + "PropertyClass" + ], + "hash": 520462430, + "properties": { + "m_displayName": { "type": "std::string", - "id": 1, - "offset": 168, - "flags": 31, + "id": 0, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2457138637 + "hash": 2446900370 }, - "m_displayKey": { - "type": "std::string", - "id": 2, + "m_fMultiplier": { + "type": "float", + "id": 1, "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3023276954 - }, - "m_serviceIndex": { - "type": "unsigned int", - "id": 3, - "offset": 204, - "flags": 31, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2103126710 + "hash": 157286404 }, - "m_forceInteract": { - "type": "bool", - "id": 4, - "offset": 200, - "flags": 31, + "m_category": { + "type": "int", + "id": 2, + "offset": 108, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1705789564 + "hash": 1184350616 }, - "m_leaderboardType": { - "type": "std::string", - "id": 5, - "offset": 216, - "flags": 31, + "m_minimumToActivate": { + "type": "int", + "id": 3, + "offset": 112, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2181150930 + "hash": 2042224778 } } }, - "1641769117": { - "name": "class OldWizardEquippedItemInfo*", + "1801776167": { + "name": "class AvatarOption", "bases": [ - "EquippedItemInfo", + "AvatarOptionBase", "PropertyClass" ], - "hash": 1641769117, + "hash": 1801776167, "properties": { - "m_itemID": { - "type": "unsigned int", + "m_conditionFlags": { + "type": "std::string", "id": 0, "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, + "flags": 7, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 780964329 + "hash": 2483653903 }, - "m_baseColor": { - "type": "bui5", + "m_mesh": { + "type": "std::string", "id": 1, - "offset": 88, - "flags": 31, + "offset": 104, + "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1433198221 + "hash": 1717328392 }, - "m_trimColor": { - "type": "bui5", + "m_noMesh": { + "type": "bool", "id": 2, - "offset": 92, - "flags": 31, + "offset": 168, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1198446862 + "hash": 760920637 }, - "m_pattern": { - "type": "bui5", + "m_geometry": { + "type": "std::string", "id": 3, - "offset": 96, - "flags": 31, + "offset": 136, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1338360593 + "hash": 2041778855 } } }, - "479740309": { - "name": "class ClientBattlegroundPlayerStatsManager", + "952944170": { + "name": "class SharedPointer", "bases": [ - "BattlegroundPlayerStatsManager", "PropertyClass" ], - "hash": 479740309, + "hash": 952944170, "properties": { - "m_statsList": { - "type": "class SharedPointer", + "m_nVersion": { + "type": "unsigned int", "id": 0, "offset": 72, "flags": 7, - "container": "List", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2999855587 + "pointer": false, + "hash": 2302239105 }, - "m_poi": { - "type": "class SharedPointer", + "m_sSerializedCache": { + "type": "class SerializedBuffer", "id": 1, - "offset": 88, + "offset": 96, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1342603341 + "pointer": false, + "hash": 3187138089 } } }, - "477454092": { - "name": "class SharedPointer", + "1365872854": { + "name": "class ClientDerbyModifyPetStat*", "bases": [ - "Window", + "DerbyModifyPetStat", + "DerbyEffect", "PropertyClass" ], - "hash": 477454092, + "hash": 1365872854, "properties": { - "m_sName": { - "type": "std::string", + "m_buffType": { + "type": "enum DerbyTalentBuffType", "id": 0, - "offset": 80, - "flags": 135, + "offset": 92, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2306437263 + "hash": 1149251982, + "enum_options": { + "Buff": 0, + "Debuff": 1, + "Neither": 2 + } }, - "m_Children": { - "type": "class SharedPointer", + "m_kTarget": { + "type": "enum DerbyTargetType", "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, + "offset": 96, + "flags": 2097159, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2621225959 + "pointer": false, + "hash": 1807803351, + "enum_options": { + "kTargetInFront": 0, + "kTargetBehind": 1, + "kTargetFirst": 2, + "kTargetSelf": 3, + "kTargetAll": 4, + "kTargetLast": 5 + } }, - "m_Style": { - "type": "unsigned int", + "m_nDuration": { + "type": "int", "id": 2, - "offset": 152, - "flags": 1048583, + "offset": 104, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152, - "SLC_NUMBERS": 16777216 - } + "hash": 1110167982 }, - "m_Flags": { + "m_effectID": { "type": "unsigned int", "id": 3, - "offset": 156, - "flags": 1048583, + "offset": 88, + "flags": 24, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } + "hash": 2347630439 }, - "m_Window": { - "type": "class Rect", + "m_imageFilename": { + "type": "std::string", "id": 4, - "offset": 160, - "flags": 135, + "offset": 112, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3105139380 + "hash": 2813328063 }, - "m_fTargetAlpha": { - "type": "float", + "m_iconIndex": { + "type": "unsigned int", "id": 5, - "offset": 212, - "flags": 135, + "offset": 144, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1809129834 + "hash": 1265133262 }, - "m_fDisabledAlpha": { - "type": "float", + "m_soundOnActivate": { + "type": "std::string", "id": 6, - "offset": 216, - "flags": 135, + "offset": 152, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1389987675 + "hash": 1956929714 }, - "m_fAlpha": { - "type": "float", + "m_soundOnTarget": { + "type": "std::string", "id": 7, - "offset": 208, - "flags": 65671, + "offset": 184, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 482130755 + "hash": 3444214056 }, - "m_pWindowStyle": { - "type": "class SharedPointer", + "m_targetParticleEffect": { + "type": "std::string", "id": 8, - "offset": 232, - "flags": 135, + "offset": 216, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3623628394 + "pointer": false, + "hash": 3048234723 }, - "m_sHelp": { - "type": "std::wstring", + "m_overheadMessage": { + "type": "std::string", "id": 9, "offset": 248, - "flags": 4194439, + "flags": 8388639, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2102211316 + "hash": 1701018190 }, - "m_sScript": { - "type": "std::string", + "m_requirements": { + "type": "class RequirementList", "id": 10, - "offset": 352, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1846695875 - }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3389835433 - }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2547159940 - }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2587533771 - }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3091503757 - }, - "m_cardSize": { - "type": "class Size", - "id": 16, - "offset": 716, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1135567057 - }, - "m_spacing": { - "type": "class Point", - "id": 17, - "offset": 724, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3187881255 - }, - "m_holes": { - "type": "class Rect", - "id": 18, - "offset": 696, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1902151287 - } - } - }, - "78845537": { - "name": "class RemoveTeamFromMatchUpdate*", - "bases": [ - "TournamentUpdate", - "PropertyClass" - ], - "hash": 78845537, - "properties": { - "m_teamID": { - "type": "gid", - "id": 0, - "offset": 72, + "offset": 280, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 982102220 + "hash": 2840988582 }, - "m_matchID": { - "type": "gid", - "id": 1, - "offset": 80, + "m_mods": { + "type": "class PetStatModificationSet", + "id": 11, + "offset": 376, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1757621298 + "hash": 686212266 } } }, - "477074275": { - "name": "class ChatSpamHelper*", - "bases": [ - "PropertyClass" - ], - "hash": 477074275, - "properties": {} - }, - "872701991": { - "name": "class SharedPointer", + "520421470": { + "name": "class SG_GameScoreMultiplier", "bases": [ "PropertyClass" ], - "hash": 872701991, + "hash": 520421470, "properties": { - "m_assetName": { + "m_displayName": { "type": "std::string", "id": 0, "offset": 72, @@ -624881,9 +576324,9 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 1513131580 + "hash": 2446900370 }, - "m_gain": { + "m_fMultiplier": { "type": "float", "id": 1, "offset": 104, @@ -624892,9 +576335,9 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 309609622 + "hash": 157286404 }, - "m_loopCount": { + "m_category": { "type": "int", "id": 2, "offset": 108, @@ -624903,10 +576346,10 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 865634717 + "hash": 1184350616 }, - "m_stream": { - "type": "bool", + "m_minimumToActivate": { + "type": "int", "id": 3, "offset": 112, "flags": 7, @@ -624914,524 +576357,479 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 963856287 - }, - "m_priority": { - "type": "int", - "id": 4, - "offset": 116, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1235205852 - }, - "m_category": { - "type": "enum AudioCategory", - "id": 5, - "offset": 120, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2951251982, - "enum_options": { - "AudioCategory_Irrelevent": 0, - "AudioCategory_Accoustic": 1, - "AudioCategory_Noise": 2, - "AudioCategory_Music": 3 - } - }, - "m_pitch": { - "type": "float", - "id": 6, - "offset": 124, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 896371695 - }, - "m_maxInstances": { - "type": "int", - "id": 7, - "offset": 128, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1704365544 - }, - "m_pan": { - "type": "float", - "id": 8, - "offset": 132, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 357246518 + "hash": 2042224778 } } }, - "1221567754": { - "name": "class ControlRichEdit*", + "1801768152": { + "name": "class SharedPointer", "bases": [ - "ControlEdit", - "Window", + "SpawnObjectInfo", + "CoreObjectInfo", "PropertyClass" ], - "hash": 1221567754, + "hash": 1801768152, "properties": { - "m_sName": { - "type": "std::string", + "m_templateID.m_full": { + "type": "unsigned __int64", "id": 0, - "offset": 80, - "flags": 135, + "offset": 72, + "flags": 33554439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2306437263 + "hash": 633907631 }, - "m_Children": { - "type": "class SharedPointer", + "m_nObjectID": { + "type": "unsigned int", "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2621225959 + "pointer": false, + "hash": 748496927 }, - "m_Style": { - "type": "unsigned int", + "m_location": { + "type": "class Vector3D", "id": 2, - "offset": 152, - "flags": 1048583, + "offset": 84, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152, - "FORCE_NUMERIC": 16777216, - "FORCE_ALPHA": 268435456, - "FORCE_ALPHANUMERIC": 536870912, - "FORCE_INTEGER": 33554432, - "FORCE_POSITIVE": 67108864, - "FORCE_RANGE": 134217728 - } + "hash": 2239683611 }, - "m_Flags": { - "type": "unsigned int", + "m_orientation": { + "type": "class Vector3D", "id": 3, - "offset": 156, - "flags": 1048583, + "offset": 96, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } + "hash": 2344058766 }, - "m_Window": { - "type": "class Rect", + "m_fScale": { + "type": "float", "id": 4, - "offset": 160, - "flags": 135, + "offset": 108, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3105139380 + "hash": 503137701 }, - "m_fTargetAlpha": { - "type": "float", + "m_zoneTag": { + "type": "std::string", "id": 5, - "offset": 212, - "flags": 135, + "offset": 152, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1809129834 + "hash": 3405382643 }, - "m_fDisabledAlpha": { - "type": "float", + "m_startState": { + "type": "std::string", "id": 6, - "offset": 216, - "flags": 135, + "offset": 184, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1389987675 + "hash": 2166880458 }, - "m_fAlpha": { - "type": "float", + "m_overrideName": { + "type": "std::string", "id": 7, - "offset": 208, - "flags": 65671, + "offset": 120, + "flags": 8388615, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 482130755 + "hash": 1990707228 }, - "m_pWindowStyle": { - "type": "class SharedPointer", + "m_globalDynamic": { + "type": "bool", "id": 8, - "offset": 232, - "flags": 135, + "offset": 116, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3623628394 + "pointer": false, + "hash": 1951691017 }, - "m_sHelp": { - "type": "std::wstring", + "m_bUndetectable": { + "type": "bool", "id": 9, - "offset": 248, - "flags": 4194439, + "offset": 216, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2102211316 + "hash": 1907454341 }, - "m_sScript": { - "type": "std::string", + "m_spawnRequirements": { + "type": "class SharedPointer", "id": 10, - "offset": 352, - "flags": 135, + "offset": 224, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1846695875 + "pointer": true, + "hash": 2309120870 }, - "m_Offset": { - "type": "class Point", + "m_loadingType": { + "type": "enum CoreObjectInfo::LoadingType", "id": 11, - "offset": 192, - "flags": 135, + "offset": 112, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3389835433 + "hash": 3522422550, + "enum_options": { + "STATIC_CLIENT_SERVER": 0, + "STATIC_CLIENT": 1, + "STATIC_SERVER": 2, + "DYNAMIC_SERVER": 3 + } }, - "m_Scale": { - "type": "class Point", + "m_kStartNodeType": { + "type": "enum SpawnObjectInfo::StartNodeType", "id": 12, - "offset": 200, - "flags": 135, + "offset": 240, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2547159940 + "hash": 1545814623, + "enum_options": { + "SNT_RANDOM": 0, + "SNT_RANDOM_UNIQUE": 1, + "SNT_FIRST": 2, + "SNT_LAST": 3, + "SNT_SPECIFIC": 4 + } }, - "m_sTip": { - "type": "std::wstring", + "m_startNode": { + "type": "unsigned int", "id": 13, - "offset": 392, - "flags": 4194439, + "offset": 256, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1513510520 + "hash": 1598161889, + "enum_options": { + "__DEFAULT": 0 + } }, - "m_BubbleList": { - "type": "class WindowBubble", + "m_pathID": { + "type": "gid", "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2587533771 - }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, + "offset": 248, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3091503757 + "hash": 821494322 }, - "m_sText": { - "type": "std::wstring", - "id": 16, - "offset": 584, - "flags": 135, + "m_uniqueLoc": { + "type": "char", + "id": 15, + "offset": 260, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2102642960 - }, - "m_nMaxLength": { + "hash": 400014505 + } + } + }, + "1365864892": { + "name": "class MountDyeToTexture*", + "bases": [ + "PropertyClass" + ], + "hash": 1365864892, + "properties": { + "m_dye": { "type": "int", - "id": 17, - "offset": 620, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1183478416 - }, - "m_bPassword": { - "type": "bool", - "id": 18, - "offset": 624, - "flags": 135, + "id": 0, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1604468200 + "hash": 267033084 }, - "m_bLog": { - "type": "bool", - "id": 19, - "offset": 625, - "flags": 135, + "m_texture": { + "type": "int", + "id": 1, + "offset": 76, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 221687287 - }, - "m_previousNext": { - "type": "bool", - "id": 20, - "offset": 627, - "flags": 135, + "hash": 222406987 + } + } + }, + "520165008": { + "name": "class AuctionHouseEntry*", + "bases": [ + "PropertyClass" + ], + "hash": 520165008, + "properties": { + "m_templateID": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 858581071 + "hash": 1075328001 }, - "m_nMaxLogSize": { + "m_numForSale": { "type": "int", - "id": 21, - "offset": 712, - "flags": 135, + "id": 1, + "offset": 80, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 779573899 + "hash": 1454578518 }, - "m_bEditing": { - "type": "bool", - "id": 22, - "offset": 616, - "flags": 135, + "m_buyPrice": { + "type": "int", + "id": 2, + "offset": 84, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1243218553 + "hash": 1746297085 }, - "m_bAllowPaste": { - "type": "bool", - "id": 23, - "offset": 626, - "flags": 135, + "m_sellPrice": { + "type": "int", + "id": 3, + "offset": 88, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1129316721 - }, - "m_nLogPosition": { + "hash": 957785661 + } + } + }, + "1802351949": { + "name": "class TerrainCheerCostMap", + "bases": [ + "PropertyClass" + ], + "hash": 1802351949, + "properties": { + "m_nCostChangeAmt": { "type": "int", - "id": 24, - "offset": 704, - "flags": 135, + "id": 0, + "offset": 72, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1120160767 + "hash": 1687521865 }, - "m_nCursor": { - "type": "int", - "id": 25, - "offset": 716, - "flags": 135, + "m_kTerrainType": { + "type": "enum DerbyTerrainTargetType", + "id": 1, + "offset": 76, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1876782150 - }, - "m_nEditBegin": { - "type": "int", - "id": 26, - "offset": 720, - "flags": 135, + "hash": 2546445910, + "enum_options": { + "Grass": 0, + "Dirt": 1, + "Clay": 2, + "AllObstacleTerrain": 4 + } + } + } + }, + "955208943": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 955208943, + "properties": { + "m_sName": { + "type": "std::string", + "id": 0, + "offset": 88, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1066592403 + "hash": 2306437263 }, - "m_nEditEnd": { - "type": "int", - "id": 27, - "offset": 724, - "flags": 135, + "m_baseOrientation": { + "type": "class Matrix3x3", + "id": 1, + "offset": 176, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1560905669 + "hash": 1692424809 }, - "m_sSavedText": { - "type": "std::wstring", - "id": 28, - "offset": 728, - "flags": 135, + "m_basePosition": { + "type": "class Vector3D", + "id": 2, + "offset": 224, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2197953283 + "hash": 1912112658 }, - "m_fCursorBlinkSpeed": { + "m_fCurrentScale": { "type": "float", - "id": 29, - "offset": 760, - "flags": 135, + "id": 3, + "offset": 236, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2232655228 + "hash": 234778792 }, - "m_fCursorTimer": { - "type": "float", - "id": 30, - "offset": 764, - "flags": 135, + "m_surfaceType": { + "type": "std::string", + "id": 4, + "offset": 280, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1929942748 + "hash": 2553995974 }, - "m_bCursorBlink": { - "type": "bool", - "id": 31, - "offset": 768, - "flags": 135, + "m_pInitialParams": { + "type": "class SharedPointer", + "id": 5, + "offset": 240, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 683441507 - }, - "m_fMinRange": { - "type": "double", - "id": 32, - "offset": 776, + "pointer": true, + "hash": 1000009870 + } + } + }, + "1366240158": { + "name": "class WindowAnimation*", + "bases": [ + "PropertyClass" + ], + "hash": 1366240158, + "properties": { + "m_bUseDeepCopy": { + "type": "bool", + "id": 0, + "offset": 72, "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3079523396 - }, - "m_fMaxRange": { - "type": "double", - "id": 33, - "offset": 784, - "flags": 135, - "container": "Static", - "dynamic": false, + "hash": 433380635 + } + } + }, + "1802064045": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1802064045, + "properties": { + "m_racerStates": { + "type": "class PetDerbyRacerState", + "id": 0, + "offset": 72, + "flags": 31, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 3876551814 + "hash": 1371870313 }, - "m_nPrecision": { - "type": "int", - "id": 34, - "offset": 792, - "flags": 135, - "container": "Static", - "dynamic": false, + "m_racerStats": { + "type": "class PetDerbyRacerStats", + "id": 1, + "offset": 88, + "flags": 31, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 1404974196 + "hash": 2589589540 }, - "m_bDeleteOnFirstChar": { - "type": "bool", - "id": 35, - "offset": 618, - "flags": 135, + "m_numberOfLaps": { + "type": "unsigned int", + "id": 2, + "offset": 104, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 902105643 + "hash": 1354946171 } } }, - "1642645331": { - "name": "class CreateActorCinematicAction*", + "954462744": { + "name": "class SharedPointer", "bases": [ - "ActorCinematicAction", + "PolymorphCinematicAction", "CinematicAction", "PropertyClass" ], - "hash": 1642645331, + "hash": 954462744, "properties": { "m_timeOffset": { "type": "float", @@ -625443,105 +576841,103 @@ "singleton": false, "pointer": false, "hash": 2237098605 + } + } + }, + "521099028": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 521099028, + "properties": { + "m_partList": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 3068815683 }, - "m_actor": { - "type": "std::string", + "m_deckSize": { + "type": "unsigned int", "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, + "offset": 88, + "flags": 31, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 2285866132 + "hash": 1276516479 }, - "m_animations": { - "type": "std::string", + "m_totalDeckSize": { + "type": "unsigned int", "id": 2, - "offset": 120, - "flags": 131079, - "container": "Static", - "dynamic": false, + "offset": 104, + "flags": 31, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 3030904078 + "hash": 2180827619 }, - "m_model": { - "type": "std::string", + "m_treasureCardAmount": { + "type": "unsigned int", "id": 3, - "offset": 152, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2300510668 - }, - "m_createOrientation": { - "type": "enum CreateActorCinematicAction::kCreateOrientation", - "id": 4, - "offset": 184, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3562324429, - "enum_options": { - "kFaceTarget": 0, - "kFaceSource": 1, - "kSigil": 2, - "kTarget": 3, - "kSource": 4, - "kSigilRight": 5, - "kSigilLeft": 6, - "kFaceTargetTeam": 7 - } - }, - "m_hidePolymorphFloatyText": { - "type": "bool", - "id": 5, - "offset": 188, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 942475883 - }, - "m_forwardOffset": { - "type": "float", - "id": 6, - "offset": 192, - "flags": 7, - "container": "Static", - "dynamic": false, + "offset": 120, + "flags": 31, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 1749681459 - }, - "m_absoluteTarget": { + "hash": 486812806 + } + } + }, + "1366245278": { + "name": "class WindowAnimation", + "bases": [ + "PropertyClass" + ], + "hash": 1366245278, + "properties": { + "m_bUseDeepCopy": { "type": "bool", - "id": 7, - "offset": 196, - "flags": 7, + "id": 0, + "offset": 72, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1463993657 + "hash": 433380635 } } }, - "78568446": { - "name": "class NodeObject", + "520634311": { + "name": "enum RenderBehaviorTemplate::LightingType", + "bases": [], + "hash": 520634311, + "properties": {} + }, + "1802769031": { + "name": "class std::list >", + "bases": [], + "hash": 1802769031, + "properties": {} + }, + "956054874": { + "name": "class LoyaltyInfoUpdateData*", "bases": [ "PropertyClass" ], - "hash": 78568446, + "hash": 956054874, "properties": { - "m_location": { - "type": "class Vector3D", + "m_loyaltyNumTokens": { + "type": "int", "id": 0, "offset": 72, "flags": 7, @@ -625549,932 +576945,995 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 2239683611 + "hash": 1274122412 }, - "m_fRadius": { - "type": "float", + "m_loyaltyTier": { + "type": "int", "id": 1, - "offset": 84, + "offset": 76, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 787972805 + "hash": 186471516 }, - "m_id": { - "type": "gid", + "m_loyaltyLastTier": { + "type": "int", "id": 2, - "offset": 104, + "offset": 80, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2090569797 + "hash": 848314000 }, - "m_direction": { - "type": "float", + "m_loyaltyNumTokensCanClaim": { + "type": "int", "id": 3, - "offset": 88, + "offset": 84, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1528165112 + "hash": 1792573988 }, - "m_roll": { - "type": "float", + "m_loyaltyPurchaseHistoryLimit": { + "type": "unsigned int", "id": 4, - "offset": 92, + "offset": 88, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 310020272 + "hash": 2121059751 }, - "m_descriptor": { - "type": "class SharedPointer", + "m_loyaltyPurchaseHistoryData": { + "type": "class SharedPointer", "id": 5, - "offset": 120, + "offset": 96, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "List", + "dynamic": true, "singleton": false, "pointer": true, - "hash": 1929260873 + "hash": 1737702413 + }, + "m_loyaltyPurchaseLimitCountersData": { + "type": "class SharedPointer", + "id": 6, + "offset": 112, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2330097972 } } }, - "476074616": { - "name": "class SharedPointer", + "956053594": { + "name": "class LoyaltyInfoUpdateData", "bases": [ - "BehaviorInstance", "PropertyClass" ], - "hash": 476074616, + "hash": 956053594, "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", + "m_loyaltyNumTokens": { + "type": "int", "id": 0, - "offset": 104, - "flags": 39, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 + "hash": 1274122412 }, - "m_petData": { - "type": "std::string", + "m_loyaltyTier": { + "type": "int", "id": 1, - "offset": 144, - "flags": 551, + "offset": 76, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2990195294 - } - } - }, - "871398205": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 871398205, - "properties": { - "m_FileTime": { - "type": "unsigned __int64", - "id": 0, - "offset": 72, + "hash": 186471516 + }, + "m_loyaltyLastTier": { + "type": "int", + "id": 2, + "offset": 80, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1953360040 + "hash": 848314000 }, - "m_sBinary": { - "type": "class SerializedBuffer", - "id": 1, - "offset": 80, + "m_loyaltyNumTokensCanClaim": { + "type": "int", + "id": 3, + "offset": 84, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3458458254 + "hash": 1792573988 + }, + "m_loyaltyPurchaseHistoryLimit": { + "type": "unsigned int", + "id": 4, + "offset": 88, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2121059751 + }, + "m_loyaltyPurchaseHistoryData": { + "type": "class SharedPointer", + "id": 5, + "offset": 96, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1737702413 + }, + "m_loyaltyPurchaseLimitCountersData": { + "type": "class SharedPointer", + "id": 6, + "offset": 112, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2330097972 } } }, - "1221321528": { - "name": "class ControlMailEdit", + "1368264426": { + "name": "class BasicChatChannelInvite", "bases": [ - "ControlRichEdit", - "ControlEdit", - "Window", "PropertyClass" ], - "hash": 1221321528, + "hash": 1368264426, + "properties": {} + }, + "521159851": { + "name": "class DerbyModifyRate", + "bases": [ + "DerbyEffect", + "PropertyClass" + ], + "hash": 521159851, "properties": { - "m_sName": { - "type": "std::string", + "m_buffType": { + "type": "enum DerbyTalentBuffType", "id": 0, - "offset": 80, - "flags": 135, + "offset": 92, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2306437263 + "hash": 1149251982, + "enum_options": { + "Buff": 0, + "Debuff": 1, + "Neither": 2 + } }, - "m_Children": { - "type": "class SharedPointer", + "m_kTarget": { + "type": "enum DerbyTargetType", "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, + "offset": 96, + "flags": 2097159, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2621225959 + "pointer": false, + "hash": 1807803351, + "enum_options": { + "kTargetInFront": 0, + "kTargetBehind": 1, + "kTargetFirst": 2, + "kTargetSelf": 3, + "kTargetAll": 4, + "kTargetLast": 5 + } }, - "m_Style": { - "type": "unsigned int", + "m_nDuration": { + "type": "int", "id": 2, - "offset": 152, - "flags": 1048583, + "offset": 104, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152, - "FORCE_NUMERIC": 16777216, - "FORCE_ALPHA": 268435456, - "FORCE_ALPHANUMERIC": 536870912, - "FORCE_INTEGER": 33554432, - "FORCE_POSITIVE": 67108864, - "FORCE_RANGE": 134217728 - } + "hash": 1110167982 }, - "m_Flags": { + "m_effectID": { "type": "unsigned int", "id": 3, - "offset": 156, - "flags": 1048583, + "offset": 88, + "flags": 24, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } + "hash": 2347630439 }, - "m_Window": { - "type": "class Rect", + "m_imageFilename": { + "type": "std::string", "id": 4, - "offset": 160, - "flags": 135, + "offset": 112, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3105139380 + "hash": 2813328063 }, - "m_fTargetAlpha": { - "type": "float", + "m_iconIndex": { + "type": "unsigned int", "id": 5, - "offset": 212, - "flags": 135, + "offset": 144, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1809129834 + "hash": 1265133262 }, - "m_fDisabledAlpha": { - "type": "float", + "m_soundOnActivate": { + "type": "std::string", "id": 6, - "offset": 216, - "flags": 135, + "offset": 152, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1389987675 + "hash": 1956929714 }, - "m_fAlpha": { - "type": "float", + "m_soundOnTarget": { + "type": "std::string", "id": 7, - "offset": 208, - "flags": 65671, + "offset": 184, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 482130755 + "hash": 3444214056 }, - "m_pWindowStyle": { - "type": "class SharedPointer", + "m_targetParticleEffect": { + "type": "std::string", "id": 8, - "offset": 232, - "flags": 135, + "offset": 216, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3623628394 + "pointer": false, + "hash": 3048234723 }, - "m_sHelp": { - "type": "std::wstring", + "m_overheadMessage": { + "type": "std::string", "id": 9, "offset": 248, - "flags": 4194439, + "flags": 8388639, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2102211316 + "hash": 1701018190 }, - "m_sScript": { - "type": "std::string", + "m_requirements": { + "type": "class RequirementList", "id": 10, - "offset": 352, - "flags": 135, + "offset": 280, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1846695875 + "hash": 2840988582 }, - "m_Offset": { - "type": "class Point", + "m_nRateChange": { + "type": "int", "id": 11, - "offset": 192, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3389835433 - }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2547159940 - }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, + "offset": 376, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, + "hash": 797681786 + } + } + }, + "1367643865": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1367643865, + "properties": { + "m_ignoreDataList": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 31, "container": "List", "dynamic": true, "singleton": false, - "pointer": false, - "hash": 2587533771 - }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, + "pointer": true, + "hash": 2636534189 + } + } + }, + "1803315664": { + "name": "class TubeGeomParams", + "bases": [ + "GeomParams", + "PropertyClass" + ], + "hash": 1803315664, + "properties": { + "m_eType": { + "type": "enum ProxyType", + "id": 0, + "offset": 72, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3091503757 + "hash": 1656534066, + "enum_options": { + "ProxyTypeBox": 0, + "ProxyTypeRay": 1, + "ProxyTypeSphere": 2, + "ProxyTypeCylinder": 3, + "ProxyTypeTube": 4, + "ProxyTypePlane": 5, + "ProxyTypeMesh": 6, + "ProxyTypeInvalid": 7 + } }, - "m_sText": { - "type": "std::wstring", - "id": 16, - "offset": 584, - "flags": 135, + "m_fRadius": { + "type": "float", + "id": 1, + "offset": 80, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2102642960 + "hash": 787972805 }, - "m_nMaxLength": { - "type": "int", - "id": 17, - "offset": 620, - "flags": 135, + "m_fLength": { + "type": "float", + "id": 2, + "offset": 84, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1183478416 - }, - "m_bPassword": { - "type": "bool", - "id": 18, - "offset": 624, - "flags": 135, + "hash": 558261279 + } + } + }, + "522151029": { + "name": "class LoginHistoryEntry*", + "bases": [ + "PropertyClass" + ], + "hash": 522151029, + "properties": { + "m_characterID": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1604468200 + "hash": 210498386 }, - "m_bLog": { - "type": "bool", - "id": 19, - "offset": 625, - "flags": 135, + "m_localTime": { + "type": "int", + "id": 1, + "offset": 80, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 221687287 - }, - "m_previousNext": { - "type": "bool", - "id": 20, - "offset": 627, - "flags": 135, + "hash": 2008496724 + } + } + }, + "965525414": { + "name": "class SharedPointer", + "bases": [ + "ActorRenameCinematicAction", + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 965525414, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 858581071 + "hash": 2237098605 }, - "m_nMaxLogSize": { - "type": "int", - "id": 21, - "offset": 712, - "flags": 135, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 779573899 + "hash": 2285866132 }, - "m_bEditing": { - "type": "bool", - "id": 22, - "offset": 616, - "flags": 135, + "m_newNamePattern": { + "type": "std::string", + "id": 2, + "offset": 120, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1243218553 + "hash": 1519245892 }, - "m_bAllowPaste": { + "m_bActOnlyOnFirstActor": { "type": "bool", - "id": 23, - "offset": 626, - "flags": 135, + "id": 3, + "offset": 152, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1129316721 - }, - "m_nLogPosition": { - "type": "int", - "id": 24, - "offset": 704, - "flags": 135, + "hash": 2050856077 + } + } + }, + "1368305386": { + "name": "class BasicChatChannelInvite*", + "bases": [ + "PropertyClass" + ], + "hash": 1368305386, + "properties": {} + }, + "521172993": { + "name": "class ZoneTokenBehavior", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 521172993, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1120160767 + "hash": 223437287 }, - "m_nCursor": { - "type": "int", - "id": 25, - "offset": 716, - "flags": 135, + "m_tokens": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 27, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621026866 + } + } + }, + "1805572620": { + "name": "class CastleMagicTimer*", + "bases": [ + "PropertyClass" + ], + "hash": 1805572620, + "properties": { + "m_timerGID": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1876782150 + "hash": 1316603533 }, - "m_nEditBegin": { - "type": "int", - "id": 26, - "offset": 720, - "flags": 135, + "m_onSeconds": { + "type": "unsigned int", + "id": 1, + "offset": 80, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1066592403 + "hash": 782324633 }, - "m_nEditEnd": { - "type": "int", - "id": 27, - "offset": 724, - "flags": 135, + "m_offSeconds": { + "type": "unsigned int", + "id": 2, + "offset": 84, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1560905669 + "hash": 1856084727 }, - "m_sSavedText": { - "type": "std::wstring", - "id": 28, - "offset": 728, - "flags": 135, + "m_timerRunsContinuously": { + "type": "bool", + "id": 3, + "offset": 88, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2197953283 + "hash": 1984044184 }, - "m_fCursorBlinkSpeed": { - "type": "float", - "id": 29, - "offset": 760, - "flags": 135, + "m_isOnTimer": { + "type": "bool", + "id": 4, + "offset": 90, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2232655228 + "hash": 1687072749 }, - "m_fCursorTimer": { + "m_timeLeft": { "type": "float", - "id": 30, - "offset": 764, - "flags": 135, + "id": 5, + "offset": 92, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1929942748 + "hash": 1405489169 }, - "m_bCursorBlink": { + "m_displayOnScreen": { "type": "bool", - "id": 31, - "offset": 768, - "flags": 135, + "id": 6, + "offset": 89, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 683441507 + "hash": 1273696038 }, - "m_fMinRange": { - "type": "double", - "id": 32, - "offset": 776, - "flags": 135, + "m_fastTimer": { + "type": "bool", + "id": 7, + "offset": 97, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3079523396 - }, - "m_fMaxRange": { - "type": "double", - "id": 33, - "offset": 784, - "flags": 135, + "hash": 1269294082 + } + } + }, + "960367082": { + "name": "class ResultSourceType*", + "bases": [ + "Result", + "PropertyClass" + ], + "hash": 960367082, + "properties": { + "m_sourceType": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3876551814 + "hash": 2305508654 }, - "m_nPrecision": { - "type": "int", - "id": 34, - "offset": 792, - "flags": 135, + "m_zoneLevelMax": { + "type": "unsigned int", + "id": 1, + "offset": 76, + "flags": 263, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1404974196 + "hash": 1028933895 }, - "m_bDeleteOnFirstChar": { - "type": "bool", - "id": 35, - "offset": 618, - "flags": 135, + "m_zoneLevelMin": { + "type": "unsigned int", + "id": 2, + "offset": 72, + "flags": 263, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 902105643 + "hash": 1028934149 } } }, - "1642476635": { - "name": "enum PassInfo::ZoneAccessMode", - "bases": [], - "hash": 1642476635, - "properties": {} - }, - "1219958228": { - "name": "class Reco::LevelData", + "1805408780": { + "name": "class CastleMagicTimer", "bases": [ "PropertyClass" ], - "hash": 1219958228, + "hash": 1805408780, "properties": { - "m_level": { - "type": "int", + "m_timerGID": { + "type": "gid", "id": 0, "offset": 72, - "flags": 31, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 801285362 + "hash": 1316603533 }, - "m_categoryData": { - "type": "class SharedPointer", + "m_onSeconds": { + "type": "unsigned int", "id": 1, - "offset": 96, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2178338894 - } - } - }, - "1642457428": { - "name": "class SharedPointer", - "bases": [ - "ControlSprite", - "Window", - "PropertyClass" - ], - "hash": 1642457428, - "properties": { - "m_sName": { - "type": "std::string", - "id": 0, "offset": 80, - "flags": 135, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2306437263 - }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621225959 + "hash": 782324633 }, - "m_Style": { + "m_offSeconds": { "type": "unsigned int", "id": 2, - "offset": 152, - "flags": 1048583, + "offset": 84, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "SCALE_CHILDREN": 2, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "FOCUS_LOCKED": 64, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152 - } + "hash": 1856084727 }, - "m_Flags": { - "type": "unsigned int", + "m_timerRunsContinuously": { + "type": "bool", "id": 3, - "offset": 156, - "flags": 1048583, + "offset": 88, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648, - "ONE_SHOT": 8388608, - "FLIPPED_HORIZONTAL": 16777216, - "FLIPPED_VERTICAL": 33554432 - } + "hash": 1984044184 }, - "m_Window": { - "type": "class Rect", + "m_isOnTimer": { + "type": "bool", "id": 4, - "offset": 160, - "flags": 135, + "offset": 90, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3105139380 + "hash": 1687072749 }, - "m_fTargetAlpha": { + "m_timeLeft": { "type": "float", "id": 5, - "offset": 212, - "flags": 135, + "offset": 92, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1809129834 + "hash": 1405489169 }, - "m_fDisabledAlpha": { - "type": "float", + "m_displayOnScreen": { + "type": "bool", "id": 6, - "offset": 216, - "flags": 135, + "offset": 89, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1389987675 + "hash": 1273696038 }, - "m_fAlpha": { - "type": "float", + "m_fastTimer": { + "type": "bool", "id": 7, - "offset": 208, - "flags": 65671, + "offset": 97, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 482130755 - }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, + "hash": 1269294082 + } + } + }, + "958846690": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 958846690, + "properties": { + "m_ignoreName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3623628394 + "pointer": false, + "hash": 2203859488 }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, + "m_characterID": { + "type": "gid", + "id": 1, + "offset": 104, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2102211316 + "hash": 210498386 }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, + "m_gameObjectID": { + "type": "gid", + "id": 2, + "offset": 112, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1846695875 + "hash": 23229750 }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, + "m_platformType": { + "type": "int", + "id": 3, + "offset": 120, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3389835433 - }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, + "hash": 1300871393 + } + } + }, + "1804927325": { + "name": "MadlibArgT", + "bases": [ + "MadlibArg", + "PropertyClass" + ], + "hash": 1804927325, + "properties": { + "m_madlibToken": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2547159940 + "hash": 3058682373 }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, + "m_madlibArgument": { + "type": "std::string", + "id": 1, + "offset": 112, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2587533771 - }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, + "hash": 2376191783 + } + } + }, + "957500440": { + "name": "class ClientBurnInterceptCinematicAction*", + "bases": [ + "BurnInterceptCinematicAction", + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 957500440, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3091503757 + "hash": 2237098605 }, - "m_pMaterial": { - "type": "class SharedPointer", - "id": 16, - "offset": 592, - "flags": 135, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3479277078 - }, - "m_fRotation": { - "type": "float", - "id": 17, - "offset": 608, - "flags": 135, + "pointer": false, + "hash": 2285866132 + } + } + }, + "1371853249": { + "name": "class SharedPointer", + "bases": [ + "ServiceOptionBase", + "PropertyClass" + ], + "hash": 1371853249, + "properties": { + "m_serviceName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1175400173 + "hash": 2206028813 }, - "m_Color": { - "type": "class Color", - "id": 18, - "offset": 584, - "flags": 262279, + "m_iconKey": { + "type": "std::string", + "id": 1, + "offset": 168, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1753714077 + "hash": 2457138637 }, - "m_textColor": { - "type": "class Color", - "id": 19, - "offset": 612, - "flags": 262279, + "m_displayKey": { + "type": "std::string", + "id": 2, + "offset": 104, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2528109250 + "hash": 3023276954 }, - "m_textComponent": { - "type": "class TextComponent", - "id": 20, - "offset": 616, - "flags": 135, + "m_serviceIndex": { + "type": "unsigned int", + "id": 3, + "offset": 204, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3491704390 + "hash": 2103126710 }, - "m_amount": { - "type": "int", - "id": 21, - "offset": 800, - "flags": 135, + "m_forceInteract": { + "type": "bool", + "id": 4, + "offset": 200, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 248546638 + "hash": 1705789564 } } }, - "476217519": { - "name": "class CantripsInvisibilityEffectInfo", + "522273255": { + "name": "class std::list >", + "bases": [], + "hash": 522273255, + "properties": {} + }, + "957498904": { + "name": "class ClientBurnInterceptCinematicAction", "bases": [ - "GameEffectInfo", + "BurnInterceptCinematicAction", + "ActorCinematicAction", + "CinematicAction", "PropertyClass" ], - "hash": 476217519, + "hash": 957498904, "properties": { - "m_effectName": { - "type": "std::string", + "m_timeOffset": { + "type": "float", "id": 0, "offset": 72, - "flags": 31, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2029161513 + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 } } }, - "79121401": { - "name": "class SharedPointer", + "1370470054": { + "name": "class SharedPointer", "bases": [ "PropertyClass" ], - "hash": 79121401, + "hash": 1370470054, "properties": { - "m_finalPosition": { - "type": "int", + "m_oldAnim": { + "type": "std::string", "id": 0, "offset": 72, "flags": 7, @@ -626482,982 +577941,885 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 309125241 + "hash": 1953606335 }, - "m_lootTable": { + "m_newAnim": { "type": "std::string", "id": 1, - "offset": 80, + "offset": 104, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2539512673 - }, - "m_featuredTemplateIDList": { - "type": "unsigned int", - "id": 2, - "offset": 112, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 687120258 + "hash": 2558206762 } } }, - "873496033": { - "name": "class SavedDebugCommandContainer*", + "956885104": { + "name": "class HousingSignOperator", "bases": [ + "HelpChatOperator", "PropertyClass" ], - "hash": 873496033, + "hash": 956885104, "properties": { - "m_savedDebugCommandList": { - "type": "class SharedPointer", + "m_rootElement": { + "type": "class HelpChatElement", "id": 0, "offset": 72, "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2197698884 - }, - "m_saveToHistory": { - "type": "bool", - "id": 1, - "offset": 88, - "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 762028567 + "hash": 2242085258 } } }, - "1221326648": { - "name": "class ControlMailEdit*", + "1368565995": { + "name": "class PathActionEmote*", "bases": [ - "ControlRichEdit", - "ControlEdit", - "Window", + "PathBehaviorTemplate::Action", "PropertyClass" ], - "hash": 1221326648, + "hash": 1368565995, "properties": { - "m_sName": { - "type": "std::string", + "m_nPathID": { + "type": "gid", "id": 0, - "offset": 80, - "flags": 135, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2306437263 + "hash": 214382368 }, - "m_Children": { - "type": "class SharedPointer", + "m_nNodeID": { + "type": "int", "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2621225959 + "pointer": false, + "hash": 152152635, + "enum_options": { + "__DEFAULT": 4294967295 + } }, - "m_Style": { - "type": "unsigned int", + "m_nPriority": { + "type": "int", "id": 2, - "offset": 152, - "flags": 1048583, + "offset": 84, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 983582334, + "hash": 1515251530, "enum_options": { - "HAS_BACK": 1, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152, - "FORCE_NUMERIC": 16777216, - "FORCE_ALPHA": 268435456, - "FORCE_ALPHANUMERIC": 536870912, - "FORCE_INTEGER": 33554432, - "FORCE_POSITIVE": 67108864, - "FORCE_RANGE": 134217728 + "__DEFAULT": 100 } }, - "m_Flags": { - "type": "unsigned int", + "m_nChance": { + "type": "int", "id": 3, - "offset": 156, - "flags": 1048583, + "offset": 88, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 967851578, + "hash": 1860748394, "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 + "__DEFAULT": 50 } }, - "m_Window": { - "type": "class Rect", + "m_sEmoteName": { + "type": "std::string", "id": 4, - "offset": 160, - "flags": 135, + "offset": 96, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3105139380 + "hash": 3416743849 }, - "m_fTargetAlpha": { + "m_fMinTime": { "type": "float", "id": 5, - "offset": 212, - "flags": 135, + "offset": 128, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1809129834 + "hash": 1948284304 }, - "m_fDisabledAlpha": { + "m_fMaxTime": { "type": "float", "id": 6, - "offset": 216, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1389987675 - }, - "m_fAlpha": { - "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 482130755 - }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3623628394 - }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, + "offset": 132, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2102211316 - }, - "m_sScript": { + "hash": 1647060370 + } + } + }, + "1368511284": { + "name": "class WizDisableItemStatEffectTemplate*", + "bases": [ + "StatisticEffectTemplate", + "GameEffectTemplate", + "PropertyClass" + ], + "hash": 1368511284, + "properties": { + "m_effectName": { "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, + "id": 0, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1846695875 + "hash": 2029161513 }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, + "m_effectCategory": { + "type": "std::string", + "id": 1, + "offset": 104, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3389835433 + "hash": 1852673222 }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, + "m_sortOrder": { + "type": "int", + "id": 2, + "offset": 148, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2547159940 + "hash": 1411218206 }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, + "m_duration": { + "type": "double", + "id": 3, + "offset": 192, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1513510520 + "hash": 2727932435 }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, + "m_stackingCategories": { + "type": "std::string", + "id": 4, + "offset": 160, + "flags": 7, "container": "List", "dynamic": true, "singleton": false, "pointer": false, - "hash": 2587533771 + "hash": 1774497525 }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, + "m_isPersistent": { + "type": "bool", + "id": 5, + "offset": 153, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3091503757 + "hash": 923861920 }, - "m_sText": { - "type": "std::wstring", - "id": 16, - "offset": 584, - "flags": 135, + "m_bIsOnPet": { + "type": "bool", + "id": 6, + "offset": 154, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2102642960 + "hash": 522593303 }, - "m_nMaxLength": { - "type": "int", - "id": 17, - "offset": 620, - "flags": 135, + "m_isPublic": { + "type": "bool", + "id": 7, + "offset": 152, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1183478416 + "hash": 1728439822 }, - "m_bPassword": { - "type": "bool", - "id": 18, - "offset": 624, - "flags": 135, + "m_visualEffectAddName": { + "type": "std::string", + "id": 8, + "offset": 200, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1604468200 + "hash": 3382086694 }, - "m_bLog": { - "type": "bool", - "id": 19, - "offset": 625, - "flags": 135, + "m_visualEffectRemoveName": { + "type": "std::string", + "id": 9, + "offset": 232, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 221687287 + "hash": 1541697323 }, - "m_previousNext": { - "type": "bool", - "id": 20, - "offset": 627, - "flags": 135, + "m_onAddFunctorName": { + "type": "std::string", + "id": 10, + "offset": 280, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 858581071 + "hash": 1561843107 }, - "m_nMaxLogSize": { - "type": "int", - "id": 21, - "offset": 712, - "flags": 135, + "m_onRemoveFunctorName": { + "type": "std::string", + "id": 11, + "offset": 312, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 779573899 + "hash": 2559017864 }, - "m_bEditing": { - "type": "bool", - "id": 22, - "offset": 616, - "flags": 135, + "m_stackingRule": { + "type": "enum STACKING_RULE", + "id": 12, + "offset": 144, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1243218553 + "hash": 431568889, + "enum_options": { + "STACKING_ALLOWED": 0, + "STACKING_NOSTACK": 1, + "STACKING_REPLACE": 2 + } }, - "m_bAllowPaste": { - "type": "bool", - "id": 23, - "offset": 626, - "flags": 135, + "m_itemSlots": { + "type": "std::string", + "id": 13, + "offset": 360, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 3305858271 + } + } + }, + "525174135": { + "name": "class AquariumBehavior", + "bases": [ + "AquariumBehaviorBase", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 525174135, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1129316721 + "hash": 223437287 }, - "m_nLogPosition": { - "type": "int", - "id": 24, - "offset": 704, - "flags": 135, + "m_fishData": { + "type": "std::string", + "id": 1, + "offset": 128, + "flags": 575, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1120160767 - }, - "m_nCursor": { - "type": "int", - "id": 25, - "offset": 716, - "flags": 135, + "hash": 3393318815 + } + } + }, + "1806521907": { + "name": "class std::list >", + "bases": [], + "hash": 1806521907, + "properties": {} + }, + "525159660": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 525159660, + "properties": { + "m_timerGID": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1876782150 + "hash": 1316603533 }, - "m_nEditBegin": { - "type": "int", - "id": 26, - "offset": 720, - "flags": 135, + "m_onSeconds": { + "type": "unsigned int", + "id": 1, + "offset": 80, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1066592403 + "hash": 782324633 }, - "m_nEditEnd": { - "type": "int", - "id": 27, - "offset": 724, - "flags": 135, + "m_offSeconds": { + "type": "unsigned int", + "id": 2, + "offset": 84, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1560905669 + "hash": 1856084727 }, - "m_sSavedText": { - "type": "std::wstring", - "id": 28, - "offset": 728, - "flags": 135, + "m_timerRunsContinuously": { + "type": "bool", + "id": 3, + "offset": 88, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2197953283 + "hash": 1984044184 }, - "m_fCursorBlinkSpeed": { - "type": "float", - "id": 29, - "offset": 760, - "flags": 135, + "m_isOnTimer": { + "type": "bool", + "id": 4, + "offset": 90, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2232655228 + "hash": 1687072749 }, - "m_fCursorTimer": { + "m_timeLeft": { "type": "float", - "id": 30, - "offset": 764, - "flags": 135, + "id": 5, + "offset": 92, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1929942748 + "hash": 1405489169 }, - "m_bCursorBlink": { + "m_displayOnScreen": { "type": "bool", - "id": 31, - "offset": 768, - "flags": 135, + "id": 6, + "offset": 89, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 683441507 + "hash": 1273696038 }, - "m_fMinRange": { - "type": "double", - "id": 32, - "offset": 776, - "flags": 135, + "m_fastTimer": { + "type": "bool", + "id": 7, + "offset": 97, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3079523396 - }, - "m_fMaxRange": { - "type": "double", - "id": 33, - "offset": 784, + "hash": 1269294082 + } + } + }, + "1806355324": { + "name": "class SharedPointer", + "bases": [ + "WindowAnimation", + "PropertyClass" + ], + "hash": 1806355324, + "properties": { + "m_bUseDeepCopy": { + "type": "bool", + "id": 0, + "offset": 72, "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3876551814 + "hash": 433380635 }, - "m_nPrecision": { - "type": "int", - "id": 34, - "offset": 792, + "m_winAnimList": { + "type": "class SharedPointer", + "id": 1, + "offset": 80, "flags": 135, - "container": "Static", - "dynamic": false, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 1404974196 + "pointer": true, + "hash": 1941062728 }, - "m_bDeleteOnFirstChar": { + "m_bLooping": { "type": "bool", - "id": 35, - "offset": 618, + "id": 2, + "offset": 104, "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 902105643 + "hash": 2131020845 } } }, - "79194721": { - "name": "class WhirlyBurlyRoundDataAI", + "524318721": { + "name": "class ZoneTokenBehavior*", "bases": [ + "BehaviorInstance", "PropertyClass" ], - "hash": 79194721, + "hash": 524318721, "properties": { - "m_team": { - "type": "unsigned char", + "m_behaviorTemplateNameID": { + "type": "unsigned int", "id": 0, - "offset": 72, - "flags": 7, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 857479191 + "hash": 223437287 }, - "m_passport": { - "type": "unsigned int", + "m_tokens": { + "type": "class SharedPointer", "id": 1, - "offset": 76, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1362521513 - }, - "m_handList": { - "type": "unsigned int", - "id": 2, - "offset": 80, - "flags": 7, + "offset": 112, + "flags": 27, "container": "List", "dynamic": true, "singleton": false, - "pointer": false, - "hash": 1650111716 + "pointer": true, + "hash": 2621026866 } } }, - "477074371": { - "name": "class ChatSpamHelper", - "bases": [ - "PropertyClass" - ], - "hash": 477074371, - "properties": {} - }, - "873471795": { - "name": "class ClientMagicSchoolBehavior*", + "1805935916": { + "name": "class SharedPointer", "bases": [ - "BehaviorInstance", + "GameEffectBase", "PropertyClass" ], - "hash": 873471795, + "hash": 1805935916, "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", + "m_currentTickCount": { + "type": "double", "id": 0, - "offset": 104, - "flags": 39, + "offset": 80, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 + "hash": 2533274692 }, - "m_schoolOfFocus": { + "m_effectNameID": { "type": "unsigned int", "id": 1, - "offset": 128, - "flags": 31, + "offset": 96, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 236936682 + "hash": 1204067144 }, - "m_experiencePoints": { - "type": "int", + "m_bIsOnPet": { + "type": "bool", "id": 2, - "offset": 136, + "offset": 73, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2011512991 + "hash": 522593303 }, - "m_level": { - "type": "int", + "m_originatorID": { + "type": "gid", "id": 3, - "offset": 132, - "flags": 31, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 801285362 + "hash": 1131810019 }, - "m_trainingPoints": { - "type": "int", + "m_itemSlotID": { + "type": "unsigned int", "id": 4, - "offset": 140, - "flags": 31, + "offset": 112, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1003892499 + "hash": 1895747595 }, - "m_overflowXP": { + "m_internalID": { "type": "int", "id": 5, - "offset": 148, - "flags": 31, + "offset": 92, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 315792502 + "hash": 1643137924 }, - "m_levelLocked": { - "type": "int", + "m_endTime": { + "type": "unsigned int", "id": 6, - "offset": 152, + "offset": 88, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1481284996 + "hash": 716479635 }, - "m_equippedTeleportEffect": { - "type": "unsigned int", + "m_pipsGiven": { + "type": "int", "id": 7, - "offset": 144, + "offset": 128, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 918478182 + "hash": 1346249167 }, - "m_secondarySchool": { - "type": "unsigned int", + "m_powerPipsGiven": { + "type": "int", "id": 8, - "offset": 156, + "offset": 132, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 479424797 + "hash": 377908508 } } }, - "1642857013": { - "name": "class SharedPointer", + "958775582": { + "name": "class ClientRecipe", "bases": [ - "ObstacleCourseObstacleBehaviorTemplate", - "BehaviorTemplate", + "Recipe", + "CoreObject", "PropertyClass" ], - "hash": 1642857013, + "hash": 958775582, "properties": { - "m_behaviorName": { - "type": "std::string", + "m_inactiveBehaviors": { + "type": "class SharedPointer", "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, + "offset": 224, + "flags": 31, + "container": "Vector", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 3130754092 + "pointer": true, + "hash": 1850812559 }, - "m_penaltyTime": { - "type": "float", + "m_globalID.m_full": { + "type": "unsigned __int64", "id": 1, - "offset": 120, - "flags": 7, + "offset": 72, + "flags": 16777247, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2083389507 + "hash": 2312465444 }, - "m_rate": { - "type": "float", + "m_permID": { + "type": "unsigned __int64", "id": 2, - "offset": 124, - "flags": 7, + "offset": 80, + "flags": 16777247, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 310005283 + "hash": 1298909658 }, - "m_springboardLength": { - "type": "float", + "m_location": { + "type": "class Vector3D", "id": 3, - "offset": 128, - "flags": 7, + "offset": 168, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1881375988 + "hash": 2239683611 }, - "m_springboardWidth": { - "type": "float", + "m_orientation": { + "type": "class Vector3D", "id": 4, - "offset": 132, - "flags": 7, + "offset": 180, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 418044402 + "hash": 2344058766 }, - "m_collisionHeight": { + "m_fScale": { "type": "float", "id": 5, - "offset": 136, - "flags": 7, + "offset": 196, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2173366140 + "hash": 503137701 }, - "m_springboardHitSoundList": { - "type": "class WeightedList", + "m_templateID.m_full": { + "type": "unsigned __int64", "id": 6, - "offset": 144, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1378022956 - } - } - }, - "1642645337": { - "name": "class CreateActorCinematicAction", - "bases": [ - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 1642645337, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, + "offset": 96, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2285866132 + "hash": 633907631 }, - "m_animations": { + "m_debugName": { "type": "std::string", - "id": 2, - "offset": 120, - "flags": 131079, + "id": 7, + "offset": 104, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3030904078 + "hash": 3553984419 }, - "m_model": { + "m_displayKey": { "type": "std::string", - "id": 3, - "offset": 152, - "flags": 131079, + "id": 8, + "offset": 136, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2300510668 + "hash": 3023276954 }, - "m_createOrientation": { - "type": "enum CreateActorCinematicAction::kCreateOrientation", - "id": 4, - "offset": 184, - "flags": 2097159, + "m_zoneTagID": { + "type": "unsigned int", + "id": 9, + "offset": 344, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3562324429, - "enum_options": { - "kFaceTarget": 0, - "kFaceSource": 1, - "kSigil": 2, - "kTarget": 3, - "kSource": 4, - "kSigilRight": 5, - "kSigilLeft": 6, - "kFaceTargetTeam": 7 - } + "hash": 965291410 }, - "m_hidePolymorphFloatyText": { - "type": "bool", - "id": 5, - "offset": 188, - "flags": 7, + "m_speedMultiplier": { + "type": "short", + "id": 10, + "offset": 192, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 942475883 + "hash": 123130076 }, - "m_forwardOffset": { - "type": "float", - "id": 6, - "offset": 192, - "flags": 7, + "m_nMobileID": { + "type": "unsigned short", + "id": 11, + "offset": 194, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1749681459 + "hash": 1054318939 }, - "m_absoluteTarget": { - "type": "bool", - "id": 7, - "offset": 196, - "flags": 7, + "m_recipeNameID": { + "type": "unsigned int", + "id": 12, + "offset": 384, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1463993657 + "hash": 2168714419 } } }, - "477448343": { - "name": "class StartingPipEffect*", + "1368571115": { + "name": "class PathActionEmote", "bases": [ - "GameEffectBase", + "PathBehaviorTemplate::Action", "PropertyClass" ], - "hash": 477448343, + "hash": 1368571115, "properties": { - "m_currentTickCount": { - "type": "double", + "m_nPathID": { + "type": "gid", "id": 0, - "offset": 80, - "flags": 63, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2533274692 + "hash": 214382368 }, - "m_effectNameID": { - "type": "unsigned int", + "m_nNodeID": { + "type": "int", "id": 1, - "offset": 96, - "flags": 63, + "offset": 80, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1204067144 + "hash": 152152635, + "enum_options": { + "__DEFAULT": 4294967295 + } }, - "m_bIsOnPet": { - "type": "bool", + "m_nPriority": { + "type": "int", "id": 2, - "offset": 73, - "flags": 31, + "offset": 84, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 522593303 + "hash": 1515251530, + "enum_options": { + "__DEFAULT": 100 + } }, - "m_originatorID": { - "type": "gid", + "m_nChance": { + "type": "int", "id": 3, - "offset": 104, - "flags": 39, + "offset": 88, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1131810019 + "hash": 1860748394, + "enum_options": { + "__DEFAULT": 50 + } }, - "m_itemSlotID": { - "type": "unsigned int", + "m_sEmoteName": { + "type": "std::string", "id": 4, - "offset": 112, - "flags": 63, + "offset": 96, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1895747595 + "hash": 3416743849 }, - "m_internalID": { - "type": "int", + "m_fMinTime": { + "type": "float", "id": 5, - "offset": 92, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1643137924 - }, - "m_endTime": { - "type": "unsigned int", - "id": 6, - "offset": 88, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 716479635 - }, - "m_pipsGiven": { - "type": "int", - "id": 7, "offset": 128, - "flags": 31, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1346249167 + "hash": 1948284304 }, - "m_powerPipsGiven": { - "type": "int", - "id": 8, + "m_fMaxTime": { + "type": "float", + "id": 6, "offset": 132, - "flags": 31, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 377908508 + "hash": 1647060370 } } }, - "1221570826": { - "name": "class ControlRichEdit", + "958408073": { + "name": "class SharedPointer", "bases": [ - "ControlEdit", "Window", "PropertyClass" ], - "hash": 1221570826, + "hash": 958408073, "properties": { "m_sName": { "type": "std::string", @@ -627474,7 +578836,7 @@ "type": "class SharedPointer", "id": 1, "offset": 112, - "flags": 65671, + "flags": 65667, "container": "Vector", "dynamic": true, "singleton": false, @@ -627493,8 +578855,11 @@ "hash": 983582334, "enum_options": { "HAS_BACK": 1, + "SCALE_CHILDREN": 2, "CAN_MOVE": 4, "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "FOCUS_LOCKED": 64, "CAN_FOCUS": 128, "CAN_DOCK": 32, "DO_NOT_CAPTURE_MOUSE": 256, @@ -627506,13 +578871,7 @@ "USE_ALPHA_BOUNDS": 8192, "AUTO_GROW": 16384, "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152, - "FORCE_NUMERIC": 16777216, - "FORCE_ALPHA": 268435456, - "FORCE_ALPHANUMERIC": 536870912, - "FORCE_INTEGER": 33554432, - "FORCE_POSITIVE": 67108864, - "FORCE_RANGE": 134217728 + "AUTO_RESIZE": 49152 } }, "m_Flags": { @@ -627672,287 +579031,654 @@ "singleton": false, "pointer": false, "hash": 3091503757 + } + } + }, + "1370887798": { + "name": "class SharedPointer", + "bases": [ + "CombatSigilTemplate", + "SigilTemplate", + "CoreTemplate", + "PropertyClass" + ], + "hash": 1370887798, + "properties": { + "m_behaviors": { + "type": "class BehaviorTemplate*", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1197808594 }, - "m_sText": { - "type": "std::wstring", + "m_sigilName": { + "type": "std::string", + "id": 1, + "offset": 96, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3177657588 + }, + "m_sigilType": { + "type": "std::string", + "id": 2, + "offset": 136, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3177899445 + }, + "m_entryResults": { + "type": "class ResultList*", + "id": 3, + "offset": 184, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3262956108 + }, + "m_requirements": { + "type": "class RequirementList*", + "id": 4, + "offset": 176, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2840985510 + }, + "m_cancelResults": { + "type": "class ResultList*", + "id": 5, + "offset": 192, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3799257120 + }, + "m_completeResults": { + "type": "class ResultList*", + "id": 6, + "offset": 200, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1964258099 + }, + "m_useState": { + "type": "bool", + "id": 7, + "offset": 216, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 683320865 + }, + "m_stateOverride": { + "type": "std::string", + "id": 8, + "offset": 224, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1949715548 + }, + "m_subCircles": { + "type": "class SigilSubCircle*", + "id": 9, + "offset": 256, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2227135493 + }, + "m_engageRadius": { + "type": "float", + "id": 10, + "offset": 304, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1429683718 + }, + "m_battlefieldEffects": { + "type": "class SharedPointer", + "id": 11, + "offset": 312, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1245973515 + }, + "m_playerVictoryCinematic": { + "type": "std::string", + "id": 12, + "offset": 336, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2684536069 + }, + "m_combatMusic": { + "type": "std::string", + "id": 13, + "offset": 368, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3636593682 + }, + "m_prePlanningCinematicOverride": { + "type": "std::string", + "id": 14, + "offset": 400, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2585096390 + }, + "m_planningCinematicOverride": { + "type": "std::string", + "id": 15, + "offset": 432, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3592819999 + }, + "m_shadowThresholdType": { + "type": "enum kShadow_Threshold_Type", "id": 16, - "offset": 584, - "flags": 135, + "offset": 464, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2102642960 + "hash": 2847763136, + "enum_options": { + "SHADOW_THRESHOLD_MIN": 0, + "SHADOW_THRESHOLD_AVG": 1, + "SHADOW_THRESHOLD_MAX": 2 + } }, - "m_nMaxLength": { - "type": "int", + "m_shadowThresholdFactor": { + "type": "float", "id": 17, - "offset": 620, - "flags": 135, + "offset": 468, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1183478416 + "hash": 2104355177 }, - "m_bPassword": { - "type": "bool", + "m_shadowPipRatingFactor": { + "type": "float", "id": 18, - "offset": 624, - "flags": 135, + "offset": 472, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1604468200 + "hash": 1061434314 }, - "m_bLog": { - "type": "bool", + "m_scalarDamagePvP": { + "type": "float", "id": 19, - "offset": 625, - "flags": 135, + "offset": 476, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 221687287 + "hash": 2195445026 }, - "m_previousNext": { - "type": "bool", + "m_scalarResistPvP": { + "type": "float", "id": 20, - "offset": 627, - "flags": 135, + "offset": 480, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1947822077 + }, + "m_scalarPiercePvP": { + "type": "float", + "id": 21, + "offset": 484, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 441266907 + }, + "m_scalarDamagePvE": { + "type": "float", + "id": 22, + "offset": 488, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2195445015 + }, + "m_scalarResistPvE": { + "type": "float", + "id": 23, + "offset": 492, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1947822066 + }, + "m_scalarPiercePvE": { + "type": "float", + "id": 24, + "offset": 496, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 441266896 + }, + "m_damageLimitPvP": { + "type": "float", + "id": 25, + "offset": 500, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1990135243 + }, + "m_dK0PvP": { + "type": "float", + "id": 26, + "offset": 504, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 413528556 + }, + "m_dN0PvP": { + "type": "float", + "id": 27, + "offset": 508, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 417086319 + }, + "m_resistLimitPvP": { + "type": "float", + "id": 28, + "offset": 512, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1174512006 + }, + "m_rK0PvP": { + "type": "float", + "id": 29, + "offset": 516, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 961424058 + }, + "m_rN0PvP": { + "type": "float", + "id": 30, + "offset": 520, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 964981821 + }, + "m_damageLimitPvE": { + "type": "float", + "id": 31, + "offset": 524, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1990135232 + }, + "m_dK0PvE": { + "type": "float", + "id": 32, + "offset": 528, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 413528545 + }, + "m_dN0PvE": { + "type": "float", + "id": 33, + "offset": 532, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 858581071 + "hash": 417086308 }, - "m_nMaxLogSize": { - "type": "int", - "id": 21, - "offset": 712, - "flags": 135, + "m_resistLimitPvE": { + "type": "float", + "id": 34, + "offset": 536, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 779573899 + "hash": 1174511995 }, - "m_bEditing": { - "type": "bool", - "id": 22, - "offset": 616, - "flags": 135, + "m_rK0PvE": { + "type": "float", + "id": 35, + "offset": 540, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1243218553 + "hash": 961424047 }, - "m_bAllowPaste": { - "type": "bool", - "id": 23, - "offset": 626, - "flags": 135, + "m_rN0PvE": { + "type": "float", + "id": 36, + "offset": 544, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1129316721 - }, - "m_nLogPosition": { - "type": "int", - "id": 24, - "offset": 704, - "flags": 135, + "hash": 964981810 + } + } + }, + "525407888": { + "name": "class AuctionHouseEntry", + "bases": [ + "PropertyClass" + ], + "hash": 525407888, + "properties": { + "m_templateID": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1120160767 + "hash": 1075328001 }, - "m_nCursor": { + "m_numForSale": { "type": "int", - "id": 25, - "offset": 716, - "flags": 135, + "id": 1, + "offset": 80, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1876782150 + "hash": 1454578518 }, - "m_nEditBegin": { + "m_buyPrice": { "type": "int", - "id": 26, - "offset": 720, - "flags": 135, + "id": 2, + "offset": 84, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1066592403 + "hash": 1746297085 }, - "m_nEditEnd": { + "m_sellPrice": { "type": "int", - "id": 27, - "offset": 724, - "flags": 135, + "id": 3, + "offset": 88, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1560905669 - }, - "m_sSavedText": { - "type": "std::wstring", - "id": 28, - "offset": 728, - "flags": 135, + "hash": 957785661 + } + } + }, + "1807257677": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1807257677, + "properties": { + "m_wadFile": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2197953283 + "hash": 3265100503 }, - "m_fCursorBlinkSpeed": { - "type": "float", - "id": 29, - "offset": 760, - "flags": 135, + "m_fullReplacement": { + "type": "bool", + "id": 1, + "offset": 104, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2232655228 - }, - "m_fCursorTimer": { - "type": "float", - "id": 30, - "offset": 764, - "flags": 135, + "hash": 1453969174 + } + } + }, + "1370520859": { + "name": "class SharedPointer", + "bases": [ + "DynaMod", + "PropertyClass" + ], + "hash": 1370520859, + "properties": { + "m_clientTag": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1929942748 + "hash": 3409856790 }, - "m_bCursorBlink": { - "type": "bool", - "id": 31, - "offset": 768, - "flags": 135, + "m_zoneName": { + "type": "std::string", + "id": 1, + "offset": 112, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 683441507 + "hash": 2171167736 }, - "m_fMinRange": { - "type": "double", - "id": 32, - "offset": 776, - "flags": 135, + "m_zoneInstance": { + "type": "gid", + "id": 2, + "offset": 152, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3079523396 + "hash": 449538121 }, - "m_fMaxRange": { - "type": "double", - "id": 33, - "offset": 784, - "flags": 135, + "m_originator": { + "type": "gid", + "id": 3, + "offset": 72, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3876551814 + "hash": 709051254 }, - "m_nPrecision": { + "m_index": { "type": "int", - "id": 34, - "offset": 792, - "flags": 135, + "id": 4, + "offset": 160, + "flags": 30, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1404974196 + "hash": 798031442 }, - "m_bDeleteOnFirstChar": { - "type": "bool", - "id": 35, - "offset": 618, - "flags": 135, + "m_zoneID": { + "type": "unsigned int", + "id": 5, + "offset": 144, + "flags": 16, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 902105643 + "hash": 1440651126 } } }, - "79763546": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 79763546, - "properties": {} - }, - "79219297": { - "name": "class WhirlyBurlyRoundDataAI*", + "525272439": { + "name": "class AquariumBehavior*", "bases": [ + "AquariumBehaviorBase", + "BehaviorInstance", "PropertyClass" ], - "hash": 79219297, + "hash": 525272439, "properties": { - "m_team": { - "type": "unsigned char", + "m_behaviorTemplateNameID": { + "type": "unsigned int", "id": 0, - "offset": 72, - "flags": 7, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 857479191 + "hash": 223437287 }, - "m_passport": { - "type": "unsigned int", + "m_fishData": { + "type": "std::string", "id": 1, - "offset": 76, - "flags": 7, + "offset": 128, + "flags": 575, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1362521513 - }, - "m_handList": { - "type": "unsigned int", - "id": 2, - "offset": 80, + "hash": 3393318815 + } + } + }, + "960119003": { + "name": "class SharedPointer", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 960119003, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, "flags": 7, - "container": "List", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 1650111716 + "hash": 3130754092 } } }, - "873626244": { - "name": "class SharedPointer", + "959047476": { + "name": "class MobMonsterMagicBehaviorTemplate", "bases": [ - "TimedItemBehaviorTemplate", "BehaviorTemplate", "PropertyClass" ], - "hash": 873626244, + "hash": 959047476, "properties": { "m_behaviorName": { "type": "std::string", @@ -627965,390 +579691,536 @@ "pointer": false, "hash": 3130754092 }, - "m_expireTime": { + "m_worldName": { "type": "std::string", "id": 1, - "offset": 128, + "offset": 120, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3122602039 + "hash": 1846757476 }, - "m_timerType": { - "type": "enum TimerType", + "m_collectionResistance": { + "type": "int", "id": 2, - "offset": 120, - "flags": 2097159, + "offset": 152, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 571744132, - "enum_options": { - "TimerType_Game": 0, - "TimerType_Calendar": 1 - } + "hash": 717150423 }, - "m_typeList": { - "type": "std::string", + "m_isBoss": { + "type": "bool", "id": 3, - "offset": 160, + "offset": 156, "flags": 7, - "container": "List", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 2119049625 + "hash": 569602950 }, - "m_equipParticle": { - "type": "std::string", + "m_essencesPerSummonTC": { + "type": "int", "id": 4, - "offset": 176, - "flags": 131079, + "offset": 160, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2222557491 + "hash": 2052433520 }, - "m_unequipParticle": { - "type": "std::string", + "m_goldPerSummonTC": { + "type": "int", "id": 5, - "offset": 208, - "flags": 131079, + "offset": 164, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2215431638 + "hash": 1978867293 }, - "m_equipSound": { - "type": "std::string", + "m_essencesPerHouseGuest": { + "type": "int", "id": 6, - "offset": 240, - "flags": 131079, + "offset": 168, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2720016552 + "hash": 254219206 }, - "m_unequipSound": { - "type": "std::string", + "m_goldPerHouseGuest": { + "type": "int", "id": 7, - "offset": 272, - "flags": 131079, + "offset": 172, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1552545835 + "hash": 1744976627 }, - "m_equipActionList": { - "type": "class SharedPointer", + "m_essencesPerKillTC": { + "type": "int", "id": 8, - "offset": 304, + "offset": 176, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1314016250 + "pointer": false, + "hash": 305653757 }, - "m_unequipActionList": { - "type": "class SharedPointer", + "m_goldPerKillTC": { + "type": "int", "id": 9, - "offset": 320, + "offset": 180, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2143896925 + "pointer": false, + "hash": 910983338 }, - "m_combatEnabled": { - "type": "bool", + "m_houseGuestTemplateID": { + "type": "unsigned int", "id": 10, - "offset": 336, + "offset": 184, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1399744148 + "hash": 612813314 }, - "m_PvPEnabled": { - "type": "bool", + "m_alternateMobTemplateID": { + "type": "unsigned int", "id": 11, - "offset": 337, + "offset": 188, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1042852532 + "hash": 233156212 + }, + "m_collectedAsTemplateID": { + "type": "unsigned int", + "id": 12, + "offset": 232, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1661926425 } } }, - "1643543483": { - "name": "class SharedPointer", + "1370845633": { + "name": "class SharedPointer", "bases": [ - "StatisticEffect", - "GameEffectBase", "PropertyClass" ], - "hash": 1643543483, + "hash": 1370845633, "properties": { - "m_currentTickCount": { - "type": "double", + "m_focusOptions": { + "type": "class SchoolOfFocusOption*", "id": 0, - "offset": 80, - "flags": 63, - "container": "Static", - "dynamic": false, + "offset": 72, + "flags": 31, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 2533274692 + "pointer": true, + "hash": 1945607055 }, - "m_effectNameID": { - "type": "unsigned int", + "m_titleOptions": { + "type": "class TitleOption*", "id": 1, - "offset": 96, - "flags": 63, - "container": "Static", - "dynamic": false, + "offset": 88, + "flags": 31, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 1204067144 + "pointer": true, + "hash": 755264106 }, - "m_bIsOnPet": { - "type": "bool", + "m_currentSchoolID": { + "type": "unsigned int", "id": 2, - "offset": 73, + "offset": 104, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 522593303 + "hash": 1800324389 }, - "m_originatorID": { - "type": "gid", + "m_currentTitleKey": { + "type": "std::string", "id": 3, - "offset": 104, - "flags": 39, + "offset": 112, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1131810019 - }, - "m_itemSlotID": { - "type": "unsigned int", - "id": 4, - "offset": 112, - "flags": 63, + "hash": 2379937417 + } + } + }, + "525296757": { + "name": "class LoginHistoryEntry", + "bases": [ + "PropertyClass" + ], + "hash": 525296757, + "properties": { + "m_characterID": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1895747595 + "hash": 210498386 }, - "m_internalID": { + "m_localTime": { "type": "int", - "id": 5, - "offset": 92, - "flags": 63, + "id": 1, + "offset": 80, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1643137924 - }, - "m_endTime": { - "type": "unsigned int", - "id": 6, - "offset": 88, - "flags": 31, + "hash": 2008496724 + } + } + }, + "1810637158": { + "name": "class UnSwapShadowMaterialActorCinematicAction*", + "bases": [ + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 1810637158, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 716479635 + "hash": 2237098605 }, - "m_lookupIndex": { - "type": "int", - "id": 7, - "offset": 128, - "flags": 31, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1626623948 + "hash": 2285866132 } } }, - "79199845": { - "name": "class WhirlyBurlyRoundData", + "1809378271": { + "name": "class SharedPointer", "bases": [ + "HousingGameInterface", "PropertyClass" ], - "hash": 79199845, + "hash": 1809378271, + "properties": {} + }, + "1808348459": { + "name": "class SharedPointer", + "bases": [ + "ClientInventoryBehavior", + "InventoryBehaviorBase", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1808348459, "properties": { - "m_roundNumber": { - "type": "unsigned char", + "m_behaviorTemplateNameID": { + "type": "unsigned int", "id": 0, - "offset": 72, - "flags": 7, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1040180705 + "hash": 223437287 }, - "m_maximumRounds": { - "type": "unsigned char", + "m_itemList": { + "type": "class SharedPointer", "id": 1, - "offset": 73, - "flags": 7, - "container": "Static", - "dynamic": false, + "offset": 112, + "flags": 27, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 1709082345 + "pointer": true, + "hash": 1983655699 }, - "m_planningTurnTime": { - "type": "unsigned char", + "m_numItemsAllowed": { + "type": "int", "id": 2, - "offset": 74, - "flags": 7, + "offset": 160, + "flags": 27, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1183728479 + "hash": 1404509492 }, - "m_blueTeamScore": { - "type": "unsigned int", + "m_numJewelsAllowed": { + "type": "int", "id": 3, - "offset": 76, - "flags": 7, + "offset": 164, + "flags": 27, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1519259416 + "hash": 49168892 }, - "m_orangeTeamScore": { - "type": "unsigned int", + "m_numCEEmotesAllowed": { + "type": "int", "id": 4, - "offset": 80, - "flags": 7, + "offset": 168, + "flags": 27, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 988508012 + "hash": 259951495 }, - "m_redTeamScore": { - "type": "unsigned int", + "m_numCETeleportsAllowed": { + "type": "int", "id": 5, - "offset": 84, + "offset": 172, + "flags": 27, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 284631772 + } + } + }, + "960268778": { + "name": "class ResultSourceType", + "bases": [ + "Result", + "PropertyClass" + ], + "hash": 960268778, + "properties": { + "m_sourceType": { + "type": "std::string", + "id": 0, + "offset": 80, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1672048811 + "hash": 2305508654 }, - "m_passport": { + "m_zoneLevelMax": { "type": "unsigned int", - "id": 6, - "offset": 88, - "flags": 7, + "id": 1, + "offset": 76, + "flags": 263, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1362521513 + "hash": 1028933895 }, - "m_team1": { - "type": "unsigned char", - "id": 7, - "offset": 92, - "flags": 7, + "m_zoneLevelMin": { + "type": "unsigned int", + "id": 2, + "offset": 72, + "flags": 263, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1448349512 - }, - "m_team2": { - "type": "unsigned char", - "id": 8, - "offset": 93, + "hash": 1028934149 + } + } + }, + "1370975780": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1370975780, + "properties": { + "Name": { + "type": "std::string", + "id": 0, + "offset": 72, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1448349513 + "hash": 3587174096 }, - "m_team3": { - "type": "unsigned char", - "id": 9, - "offset": 94, + "Value": { + "type": "std::wstring", + "id": 1, + "offset": 104, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1448349514 + "hash": 1533522313 }, - "m_handList": { - "type": "unsigned int", - "id": 10, - "offset": 96, + "Nodes": { + "type": "class SharedPointer", + "id": 2, + "offset": 136, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1601731202 + } + } + }, + "525531497": { + "name": "class SpawnManager*", + "bases": [ + "PropertyClass" + ], + "hash": 525531497, + "properties": { + "m_spawners": { + "type": "class SharedPointer", + "id": 0, + "offset": 144, "flags": 7, "container": "List", "dynamic": true, "singleton": false, + "pointer": true, + "hash": 3173126402 + } + } + }, + "1808035674": { + "name": "enum MatchCostAdjustment::ADJUSTMENT_TYPE", + "bases": [], + "hash": 1808035674, + "properties": {} + }, + "961429584": { + "name": "class SharedPointer", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 961429584, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, "pointer": false, - "hash": 1650111716 + "hash": 3130754092 } } }, - "479513236": { - "name": "class BadgeLeaderboardBehavior", + "1373471513": { + "name": "class Result", "bases": [ - "BehaviorInstance", "PropertyClass" ], - "hash": 479513236, + "hash": 1373471513, + "properties": {} + }, + "532055404": { + "name": "class PetJewelBehaviorTemplate", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 532055404, "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", + "m_behaviorName": { + "type": "std::string", "id": 0, - "offset": 104, - "flags": 39, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 + "hash": 3130754092 + }, + "m_petTalentName": { + "type": "std::string", + "id": 1, + "offset": 120, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1985615789 + }, + "m_minPetLevel": { + "type": "unsigned char", + "id": 2, + "offset": 136, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1317483893 } } }, - "873586119": { - "name": "class SharedPointer", + "1809095340": { + "name": "class SharedPointer", "bases": [ + "WizClientObject", + "ClientObject", "CoreObject", "PropertyClass" ], - "hash": 873586119, + "hash": 1809095340, "properties": { "m_inactiveBehaviors": { "type": "class SharedPointer", @@ -628482,816 +580354,1037 @@ "pointer": false, "hash": 1054318939 }, - "m_recipeNameID": { - "type": "unsigned int", + "m_characterId": { + "type": "gid", "id": 12, - "offset": 384, - "flags": 63, + "offset": 440, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2168714419 + "hash": 210498418 + }, + "m_gameStats": { + "type": "class WizGameStats*", + "id": 13, + "offset": 552, + "flags": 27, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3194480406 + }, + "m_leashed": { + "type": "bool", + "id": 14, + "offset": 584, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 603235945 } } }, - "1222804784": { - "name": "class EmbeddedBrowserConfigEntry*", + "960612356": { + "name": "class MoveCommandYawTime*", "bases": [ + "MoveController::MoveCommand", "PropertyClass" ], - "hash": 1222804784, + "hash": 960612356, "properties": { - "m_sName": { - "type": "std::string", + "m_fYaw": { + "type": "float", "id": 0, - "offset": 72, - "flags": 7, + "offset": 88, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2306437263 + "hash": 309564718 }, - "m_sEmbeddedPage": { - "type": "std::string", + "m_fTime": { + "type": "double", "id": 1, - "offset": 112, - "flags": 7, + "offset": 104, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1709213077 + "hash": 2691355138 + } + } + }, + "1372363388": { + "name": "class ClientCantripsMajorInvisibilityEffect*", + "bases": [ + "CantripsMajorInvisibilityEffect", + "CantripsInvisibilityEffect", + "GameEffectBase", + "PropertyClass" + ], + "hash": 1372363388, + "properties": { + "m_currentTickCount": { + "type": "double", + "id": 0, + "offset": 80, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2533274692 }, - "m_sExternalPage": { - "type": "std::string", + "m_effectNameID": { + "type": "unsigned int", + "id": 1, + "offset": 96, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1204067144 + }, + "m_bIsOnPet": { + "type": "bool", "id": 2, - "offset": 144, - "flags": 7, + "offset": 73, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3459688718 + "hash": 522593303 }, - "m_sSteamPage": { - "type": "std::string", + "m_originatorID": { + "type": "gid", "id": 3, - "offset": 176, - "flags": 7, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1924913253 + "hash": 1131810019 }, - "m_nFlags": { + "m_itemSlotID": { "type": "unsigned int", "id": 4, - "offset": 208, - "flags": 1048583, + "offset": 112, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 922328456, - "enum_options": { - "CheckSubscription": 1, - "UpdateCrownsBalance": 2, - "QuietAudio": 4 - } + "hash": 1895747595 + }, + "m_internalID": { + "type": "int", + "id": 5, + "offset": 92, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1643137924 + }, + "m_endTime": { + "type": "unsigned int", + "id": 6, + "offset": 88, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 716479635 } } }, - "478804671": { - "name": "class SharedPointer", + "526623895": { + "name": "class SharedPointer", "bases": [ "PropertyClass" ], - "hash": 478804671, + "hash": 526623895, "properties": { - "m_polymorphList": { - "type": "unsigned int", + "m_useDropShadow": { + "type": "bool", + "id": 0, + "offset": 96, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1447894491 + }, + "m_useOutline": { + "type": "bool", + "id": 1, + "offset": 97, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1796769184 + } + } + }, + "960379009": { + "name": "class ReqIsGender*", + "bases": [ + "Requirement", + "PropertyClass" + ], + "hash": 960379009, + "properties": { + "m_applyNOT": { + "type": "bool", "id": 0, "offset": 72, - "flags": 7, - "container": "Vector", - "dynamic": true, + "flags": 31, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 619826355 + "hash": 1746328074, + "enum_options": { + "__DEFAULT": 0 + } }, - "m_polymorphCategory": { - "type": "std::string", + "m_operator": { + "type": "enum Requirement::Operator", "id": 1, - "offset": 120, - "flags": 7, + "offset": 76, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3076206595 + "hash": 2672792317, + "enum_options": { + "ROP_AND": 0, + "ROP_OR": 1, + "__DEFAULT": "ROP_AND" + } }, - "m_polymorphRole": { + "m_playerGender": { "type": "std::string", "id": 2, - "offset": 184, - "flags": 7, + "offset": 80, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1906345431 - }, - "m_ratingBadgeInfo": { - "type": "class SharedPointer", - "id": 3, - "offset": 96, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1212938427 + "hash": 2199467133 } } }, - "1222759553": { - "name": "class LeaderboardOption*", + "526005188": { + "name": "class std::list >", + "bases": [], + "hash": 526005188, + "properties": {} + }, + "1372973245": { + "name": "class ClientDuel", "bases": [ - "ServiceOptionBase", + "Duel", "PropertyClass" ], - "hash": 1222759553, + "hash": 1372973245, "properties": { - "m_serviceName": { - "type": "std::string", + "m_flatParticipantList": { + "type": "class SharedPointer", "id": 0, - "offset": 72, + "offset": 80, "flags": 31, - "container": "Static", - "dynamic": false, + "container": "Vector", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 2206028813 + "pointer": true, + "hash": 3375244498 }, - "m_iconKey": { - "type": "std::string", + "m_dynamicTeams": { + "type": "class SharedPointer", "id": 1, - "offset": 168, + "offset": 104, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 2457138637 + "pointer": true, + "hash": 3227206264 }, - "m_displayKey": { - "type": "std::string", + "m_dynamicTurn": { + "type": "unsigned int", "id": 2, - "offset": 104, + "offset": 120, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3023276954 + "hash": 1168494811 }, - "m_serviceIndex": { + "m_dynamicTurnSubcircles": { "type": "unsigned int", "id": 3, - "offset": 204, + "offset": 124, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2103126710 + "hash": 618930538 }, - "m_forceInteract": { - "type": "bool", + "m_dynamicTurnCounter": { + "type": "int", "id": 4, - "offset": 200, + "offset": 128, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1705789564 + "hash": 543404296 }, - "m_leaderboardType": { - "type": "std::string", + "m_duelID.m_full": { + "type": "unsigned __int64", "id": 5, - "offset": 216, + "offset": 72, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2181150930 - } - } - }, - "1222542841": { - "name": "class ControlDraw::Line", - "bases": [ - "PropertyClass" - ], - "hash": 1222542841, - "properties": { - "m_PointData": { - "type": "class Point", - "id": 0, - "offset": 72, - "flags": 135, - "container": "Vector", - "dynamic": true, + "hash": 1024980477 + }, + "m_planningTimer": { + "type": "float", + "id": 6, + "offset": 144, + "flags": 31, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 2358246150 + "hash": 1142844143 }, - "m_Color": { - "type": "class Color", - "id": 1, - "offset": 96, - "flags": 135, + "m_position": { + "type": "class Vector3D", + "id": 7, + "offset": 148, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1753714077 - } - } - }, - "1646584070": { - "name": "class DynaMod", - "bases": [ - "PropertyClass" - ], - "hash": 1646584070, - "properties": { - "m_clientTag": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 63, + "hash": 3697900983 + }, + "m_yaw": { + "type": "float", + "id": 8, + "offset": 160, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3409856790 + "hash": 357256328 }, - "m_zoneName": { - "type": "std::string", - "id": 1, - "offset": 112, - "flags": 39, + "m_disableTimer": { + "type": "bool", + "id": 9, + "offset": 179, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2171167736 + "hash": 1571862248 }, - "m_zoneInstance": { - "type": "gid", - "id": 2, - "offset": 152, - "flags": 39, + "m_tutorialMode": { + "type": "bool", + "id": 10, + "offset": 180, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 449538121 + "hash": 1704245836 }, - "m_originator": { - "type": "gid", - "id": 3, - "offset": 72, - "flags": 63, + "m_firstTeamToAct": { + "type": "int", + "id": 11, + "offset": 184, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 709051254 + "hash": 1499447620 }, - "m_index": { - "type": "int", - "id": 4, - "offset": 160, - "flags": 30, + "m_combatResolver": { + "type": "class CombatResolver*", + "id": 12, + "offset": 136, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1627811879 + }, + "m_bPVP": { + "type": "bool", + "id": 13, + "offset": 176, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 798031442 + "hash": 221690795 }, - "m_zoneID": { - "type": "unsigned int", - "id": 5, - "offset": 144, - "flags": 16, + "m_bBattleground": { + "type": "bool", + "id": 14, + "offset": 177, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1440651126 - } - } - }, - "79538461": { - "name": "class SharedPointer", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 79538461, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, + "hash": 1158269184 + }, + "m_bRaid": { + "type": "bool", + "id": 15, + "offset": 178, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 - } - } - }, - "874273352": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 874273352, - "properties": { - "m_houseZoneList": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 7, + "hash": 791201781 + }, + "m_roundNum": { + "type": "int", + "id": 16, + "offset": 192, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1461215570 + }, + "m_executionPhaseTimer": { + "type": "float", + "id": 17, + "offset": 200, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1645062877 + }, + "m_executionPhaseCombatActions": { + "type": "class CombatAction", + "id": 18, + "offset": 208, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 270648678 + }, + "m_sigilActions": { + "type": "class CombatAction", + "id": 19, + "offset": 224, + "flags": 31, "container": "List", "dynamic": true, "singleton": false, + "pointer": false, + "hash": 2176432675 + }, + "m_shadowPipRule": { + "type": "class SharedPointer", + "id": 20, + "offset": 280, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, "pointer": true, - "hash": 2061331472 - } - } - }, - "1645158766": { - "name": "class PlayerStatueBlob", - "bases": [ - "PropertyClass" - ], - "hash": 1645158766, - "properties": {} - }, - "874014122": { - "name": "class SharedPointer", - "bases": [ - "GraphicalSpell", - "Spell", - "PropertyClass" - ], - "hash": 874014122, - "properties": { - "m_templateID": { - "type": "unsigned int", - "id": 0, - "offset": 128, + "hash": 2692865990 + }, + "m_gameObjectAnimStateTracker": { + "type": "class GameObjectAnimStateTracker", + "id": 21, + "offset": 296, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1286746870 + "hash": 3120084989 }, - "m_enchantment": { - "type": "unsigned int", - "id": 1, - "offset": 80, + "m_duelPhase": { + "type": "enum kDuelPhase", + "id": 22, + "offset": 196, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1813818086, + "enum_options": { + "kPhase_Starting": 0, + "kPhase_PrePlanning": 1, + "kPhase_Planning": 2, + "kPhase_PreExecution": 3, + "kPhase_Execution": 4, + "kPhase_Resolution": 5, + "kPhase_Victory": 6, + "kPhase_Ended": 7, + "kPhase_MAX": 10 + } + }, + "m_duelModifier": { + "type": "class SharedPointer", + "id": 23, + "offset": 264, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, + "pointer": true, + "hash": 3330438158 + }, + "m_initiativeSwitchMode": { + "type": "enum Duel::SigilInitiativeSwitchMode", + "id": 24, + "offset": 384, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, "pointer": false, - "hash": 2217886818 + "hash": 1258091520, + "enum_options": { + "InitiativeSwitchMode_None": 0, + "InitiativeSwitchMode_Reroll": 1, + "InitiativeSwitchMode_Switch": 2 + } }, - "m_pipCost": { - "type": "class SharedPointer", - "id": 2, - "offset": 176, - "flags": 7, + "m_initiativeSwitchRounds": { + "type": "int", + "id": 25, + "offset": 388, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, + "pointer": false, + "hash": 540229885 + }, + "m_combatRules": { + "type": "class SharedPointer", + "id": 26, + "offset": 464, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, "pointer": true, - "hash": 3605704820 + "hash": 3327225763 }, - "m_regularAdjust": { + "m_gameEffectInfo": { + "type": "class SharedPointer", + "id": 27, + "offset": 496, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2275096584 + }, + "m_pStatEffects": { + "type": "class SharedPointer", + "id": 28, + "offset": 512, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1275229758 + }, + "m_alternateTurnCombatRule": { + "type": "class SharedPointer", + "id": 29, + "offset": 480, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1715882395 + }, + "m_altTurnCounter": { "type": "int", - "id": 3, - "offset": 192, + "id": 30, + "offset": 456, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1420453335 + "hash": 1434810564 }, - "m_magicSchoolID": { - "type": "unsigned int", - "id": 4, - "offset": 136, - "flags": 7, + "m_originalFirstTeamToAct": { + "type": "int", + "id": 31, + "offset": 188, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 893146499 + "hash": 560350457 }, - "m_accuracy": { - "type": "unsigned char", - "id": 5, - "offset": 132, - "flags": 7, + "m_executionOrder": { + "type": "enum kDuelExecutionOrder", + "id": 32, + "offset": 528, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2273914939 + "hash": 3362082097, + "enum_options": { + "kDEO_Sequential": 0, + "kDEO_Alternating": 1 + } }, - "m_treasureCard": { + "m_noHenchmen": { "type": "bool", - "id": 6, - "offset": 197, + "id": 33, + "offset": 532, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1764879128 + "hash": 1163855414 }, - "m_battleCard": { + "m_SpellTruncation": { "type": "bool", - "id": 7, - "offset": 198, + "id": 34, + "offset": 540, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1332843753 + "hash": 1257440762 }, - "m_itemCard": { - "type": "bool", - "id": 8, - "offset": 199, - "flags": 7, + "m_shadowThresholdFactor": { + "type": "float", + "id": 35, + "offset": 548, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1683654300 + "hash": 2104355177 }, - "m_sideBoard": { - "type": "bool", - "id": 9, - "offset": 200, - "flags": 7, + "m_shadowPipRatingFactor": { + "type": "float", + "id": 36, + "offset": 552, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1897838368 + "hash": 1061434314 }, - "m_spellID": { - "type": "unsigned int", - "id": 10, - "offset": 204, + "m_defaultShadowPipRating": { + "type": "float", + "id": 37, + "offset": 556, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1697483258 + "hash": 1544572080 }, - "m_leavesPlayWhenCastOverride": { - "type": "bool", - "id": 11, - "offset": 216, + "m_shadowPipThresholdTeam0": { + "type": "float", + "id": 38, + "offset": 560, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 874407398 + "hash": 447039594 }, - "m_cloaked": { - "type": "bool", - "id": 12, - "offset": 196, - "flags": 7, + "m_shadowPipThresholdTeam1": { + "type": "float", + "id": 39, + "offset": 564, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 7349510 + "hash": 447039595 }, - "m_enchantmentSpellIsItemCard": { - "type": "bool", - "id": 13, - "offset": 76, + "m_maxArchmasteryTeam0": { + "type": "float", + "id": 40, + "offset": 568, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 531590701 + "hash": 300185527 }, - "m_premutationSpellID": { - "type": "unsigned int", - "id": 14, - "offset": 112, + "m_maxArchmasteryTeam1": { + "type": "float", + "id": 41, + "offset": 572, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1530256370 + "hash": 300185528 }, - "m_enchantedThisCombat": { - "type": "bool", - "id": 15, - "offset": 77, + "m_scalarDamage": { + "type": "float", + "id": 42, + "offset": 600, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1895738923 + "hash": 1865068300 }, - "m_paramOverrides": { - "type": "class SharedPointer", - "id": 16, - "offset": 224, + "m_scalarResist": { + "type": "float", + "id": 43, + "offset": 604, "flags": 31, - "container": "List", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2061635599 + "pointer": false, + "hash": 270448583 }, - "m_subEffectMeta": { - "type": "class SharedPointer", - "id": 17, - "offset": 240, + "m_scalarPierce": { + "type": "float", + "id": 44, + "offset": 608, "flags": 31, - "container": "List", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1944101106 + "pointer": false, + "hash": 196427621 }, - "m_delayEnchantment": { - "type": "bool", - "id": 18, - "offset": 257, - "flags": 287, + "m_damageLimit": { + "type": "float", + "id": 45, + "offset": 612, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 191336919 + "hash": 271286357 }, - "m_PvE": { - "type": "bool", - "id": 19, - "offset": 264, - "flags": 287, + "m_dK0": { + "type": "float", + "id": 46, + "offset": 616, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 269492350 + "hash": 357232662 }, - "m_delayEnchantmentOrder": { - "type": "enum SpellEffect::kDelayOrder", - "id": 20, - "offset": 72, - "flags": 287, + "m_dN0": { + "type": "float", + "id": 47, + "offset": 620, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2526055263, - "enum_options": { - "SpellEffect::kAnyOrder": 0, - "SpellEffect::kFirst": 1, - "SpellEffect::kSecond": 2 - } + "hash": 357232761 }, - "m_roundAddedTC": { - "type": "int", - "id": 21, - "offset": 260, + "m_resistLimit": { + "type": "float", + "id": 48, + "offset": 624, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 112365451 + "hash": 1192834544 }, - "m_secondarySchoolID": { - "type": "unsigned int", - "id": 22, - "offset": 304, - "flags": 7, + "m_rK0": { + "type": "float", + "id": 49, + "offset": 628, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2081206026 - } - } - }, - "1645060462": { - "name": "class PlayerStatueBlob*", - "bases": [ - "PropertyClass" - ], - "hash": 1645060462, - "properties": {} - }, - "480763819": { - "name": "class StatisticEffectTemplate*", - "bases": [ - "GameEffectTemplate", - "PropertyClass" - ], - "hash": 480763819, - "properties": { - "m_effectName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, + "hash": 357247908 + }, + "m_rN0": { + "type": "float", + "id": 50, + "offset": 632, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2029161513 + "hash": 357248007 }, - "m_effectCategory": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 7, + "m_fullPartyGroup": { + "type": "bool", + "id": 51, + "offset": 636, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1852673222 + "hash": 1888593059 }, - "m_sortOrder": { + "m_matchTimer": { + "type": "float", + "id": 52, + "offset": 656, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1510935909 + }, + "m_bonusTime": { "type": "int", - "id": 2, - "offset": 148, - "flags": 7, + "id": 53, + "offset": 660, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1411218206 + "hash": 1757496496 }, - "m_duration": { - "type": "double", - "id": 3, - "offset": 192, - "flags": 7, + "m_passPenalty": { + "type": "int", + "id": 54, + "offset": 664, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2727932435 + "hash": 982951662 }, - "m_stackingCategories": { - "type": "std::string", - "id": 4, - "offset": 160, - "flags": 7, - "container": "List", - "dynamic": true, + "m_yellowTime": { + "type": "int", + "id": 55, + "offset": 668, + "flags": 31, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 1774497525 + "hash": 1017028741 }, - "m_isPersistent": { - "type": "bool", - "id": 5, - "offset": 153, - "flags": 7, + "m_redTime": { + "type": "int", + "id": 56, + "offset": 672, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 923861920 + "hash": 1909556708 }, - "m_bIsOnPet": { - "type": "bool", - "id": 6, - "offset": 154, - "flags": 7, + "m_minTurnTime": { + "type": "int", + "id": 57, + "offset": 676, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 522593303 + "hash": 652524886 }, - "m_isPublic": { + "m_bIsPlayerTimedDuel": { "type": "bool", - "id": 7, - "offset": 152, - "flags": 7, + "id": 58, + "offset": 637, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1728439822 + "hash": 857311611 }, - "m_visualEffectAddName": { + "m_hideNoncombatantDistance": { + "type": "float", + "id": 59, + "offset": 536, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1733017888 + } + } + }, + "525898244": { + "name": "class ClientAuctionHouseOption*", + "bases": [ + "AuctionHouseOption", + "ServiceOptionBase", + "PropertyClass" + ], + "hash": 525898244, + "properties": { + "m_serviceName": { "type": "std::string", - "id": 8, - "offset": 200, - "flags": 7, + "id": 0, + "offset": 72, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3382086694 + "hash": 2206028813 }, - "m_visualEffectRemoveName": { + "m_iconKey": { "type": "std::string", - "id": 9, - "offset": 232, - "flags": 7, + "id": 1, + "offset": 168, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1541697323 + "hash": 2457138637 }, - "m_onAddFunctorName": { + "m_displayKey": { "type": "std::string", - "id": 10, - "offset": 280, - "flags": 7, + "id": 2, + "offset": 104, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1561843107 + "hash": 3023276954 }, - "m_onRemoveFunctorName": { - "type": "std::string", - "id": 11, - "offset": 312, - "flags": 7, + "m_serviceIndex": { + "type": "unsigned int", + "id": 3, + "offset": 204, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2559017864 + "hash": 2103126710 }, - "m_stackingRule": { - "type": "enum STACKING_RULE", - "id": 12, - "offset": 144, - "flags": 2097159, + "m_forceInteract": { + "type": "bool", + "id": 4, + "offset": 200, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 431568889, - "enum_options": { - "STACKING_ALLOWED": 0, - "STACKING_NOSTACK": 1, - "STACKING_REPLACE": 2 - } + "hash": 1705789564 + }, + "m_auctionHousePurchaseKey": { + "type": "unsigned int", + "id": 5, + "offset": 216, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 394777768 + }, + "m_sellModifier": { + "type": "float", + "id": 6, + "offset": 220, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 360128886 } } }, - "80235820": { - "name": "class ZoneTickEffectTemplate", + "1809832555": { + "name": "class SharedPointer", "bases": [ - "GameEffectTemplate", + "BehaviorTemplate", "PropertyClass" ], - "hash": 80235820, + "hash": 1809832555, "properties": { - "m_effectName": { + "m_behaviorName": { "type": "std::string", "id": 0, "offset": 72, @@ -629300,329 +581393,376 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 2029161513 + "hash": 3130754092 }, - "m_effectCategory": { + "m_league": { "type": "std::string", "id": 1, - "offset": 104, + "offset": 120, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1852673222 + "hash": 2166730062 }, - "m_sortOrder": { + "m_rank": { "type": "int", "id": 2, - "offset": 148, + "offset": 152, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1411218206 + "hash": 219803942 }, - "m_duration": { - "type": "double", + "m_refreshRateSec": { + "type": "int", "id": 3, - "offset": 192, + "offset": 156, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2727932435 + "hash": 418402320 }, - "m_stackingCategories": { - "type": "std::string", + "m_groundOffset": { + "type": "float", "id": 4, "offset": 160, "flags": 7, - "container": "List", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 1774497525 + "hash": 684524077 }, - "m_isPersistent": { - "type": "bool", + "m_yaw": { + "type": "float", "id": 5, - "offset": 153, + "offset": 164, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 923861920 + "hash": 357256328 }, - "m_bIsOnPet": { + "m_showNametag": { "type": "bool", "id": 6, - "offset": 154, + "offset": 168, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 522593303 + "hash": 584664753 }, - "m_isPublic": { + "m_showInGrace": { "type": "bool", "id": 7, - "offset": 152, + "offset": 169, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1728439822 + "hash": 1033917517 }, - "m_visualEffectAddName": { - "type": "std::string", + "m_showActive": { + "type": "bool", "id": 8, - "offset": 200, + "offset": 170, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3382086694 + "hash": 685431312 }, - "m_visualEffectRemoveName": { - "type": "std::string", + "m_scale": { + "type": "float", "id": 9, - "offset": 232, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1541697323 - }, - "m_onAddFunctorName": { - "type": "std::string", - "id": 10, - "offset": 280, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1561843107 - }, - "m_onRemoveFunctorName": { - "type": "std::string", - "id": 11, - "offset": 312, + "offset": 172, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2559017864 - }, - "m_stackingRule": { - "type": "enum STACKING_RULE", - "id": 12, - "offset": 144, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 431568889, - "enum_options": { - "STACKING_ALLOWED": 0, - "STACKING_NOSTACK": 1, - "STACKING_REPLACE": 2 - } + "hash": 899693439 }, - "m_tickOnAdd": { - "type": "bool", - "id": 13, - "offset": 360, + "m_alpha": { + "type": "float", + "id": 10, + "offset": 176, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 663357284 + "hash": 878686493 }, - "m_zoneEventName": { - "type": "std::string", - "id": 14, - "offset": 368, + "m_animDelaySec": { + "type": "float", + "id": 11, + "offset": 180, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2601481434 + "hash": 2131058854 }, - "m_tickRateSec": { + "m_animChance": { "type": "float", - "id": 15, - "offset": 400, + "id": 12, + "offset": 184, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1559681353 + "hash": 434823806 }, - "m_maxTicks": { - "type": "int", - "id": 16, - "offset": 404, + "m_animList": { + "type": "std::string", + "id": 13, + "offset": 192, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 155973918 + "hash": 2531745852 } } }, - "480274307": { - "name": "class SharedPointer", + "525752462": { + "name": "class MaxGoldLootInfo", "bases": [ - "BehaviorTemplate", + "LootInfo", + "LootInfoBase", "PropertyClass" ], - "hash": 480274307, + "hash": 525752462, "properties": { - "m_behaviorName": { - "type": "std::string", + "m_lootType": { + "type": "enum LootInfo::LOOT_TYPE", "id": 0, "offset": 72, - "flags": 7, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3130754092 + "hash": 1591891442, + "enum_options": { + "LOOT_TYPE_NONE": 0, + "LOOT_TYPE_GOLD": 1, + "LOOT_TYPE_MANA": 2, + "LOOT_TYPE_ITEM": 3, + "LOOT_TYPE_TREASURE_CARD": 4, + "LOOT_TYPE_MAGIC_XP": 5, + "LOOT_TYPE_ADD_SPELL": 6, + "LOOT_TYPE_MAX_HEALTH": 7, + "LOOT_TYPE_MAX_GOLD": 8, + "LOOT_TYPE_MAX_MANA": 9, + "LOOT_TYPE_MAX_POTION": 10, + "LOOT_TYPE_TRAINING_POINTS": 11, + "LOOT_TYPE_RECIPE": 12, + "LOOT_TYPE_CRAFTING_SLOT": 13, + "LOOT_TYPE_REAGENT": 14, + "LOOT_TYPE_PETSNACK": 15, + "LOOT_TYPE_GARDENING_XP": 16, + "LOOT_TYPE_PET_XP": 17, + "LOOT_TYPE_TREASURE_TABLE": 18, + "LOOT_TYPE_ARENA_POINTS": 19, + "LOOT_TYPE_ARENA_BONUS_POINTS": 20, + "LOOT_TYPE_GROUP": 21, + "LOOT_TYPE_FISHING_XP": 22, + "LOOT_TYPE_EVENT_CURRENCY_1": 24, + "LOOT_TYPE_EVENT_CURRENCY_2": 25, + "LOOT_TYPE_PVP_CURRENCY": 26, + "LOOT_TYPE_PVP_CURRENCY_BONUS": 27, + "LOOT_TYPE_PVP_TOURNEY_CURRENCY": 28, + "LOOT_TYPE_PVP_TOURNEY_CURRENCY_BONUS": 29, + "LOOT_TYPE_FURNITURE_ESSENCE": 30 + } + }, + "m_maxGoldToAdd": { + "type": "int", + "id": 1, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 667552370 } } }, - "1223396336": { - "name": "class ClientCreateActorCinematicAction*", + "1809640557": { + "name": "class SharedPointer", "bases": [ - "CreateActorCinematicAction", - "ActorCinematicAction", - "CinematicAction", "PropertyClass" ], - "hash": 1223396336, + "hash": 1809640557, "properties": { - "m_timeOffset": { - "type": "float", + "m_minLevel": { + "type": "int", "id": 0, "offset": 72, - "flags": 7, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 + "hash": 1496818518 }, - "m_actor": { - "type": "std::string", + "m_maxLevel": { + "type": "int", "id": 1, - "offset": 80, - "flags": 7, + "offset": 76, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2285866132 + "hash": 146363288 }, - "m_animations": { - "type": "std::string", + "m_minEloRating": { + "type": "int", "id": 2, - "offset": 120, - "flags": 131079, + "offset": 80, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3030904078 + "hash": 979905379 }, - "m_model": { - "type": "std::string", + "m_maxEloRating": { + "type": "int", "id": 3, - "offset": 152, - "flags": 131079, + "offset": 84, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2300510668 + "hash": 938224805 }, - "m_createOrientation": { - "type": "enum CreateActorCinematicAction::kCreateOrientation", + "m_minEloRank": { + "type": "int", "id": 4, - "offset": 184, - "flags": 2097159, + "offset": 88, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3562324429, - "enum_options": { - "kFaceTarget": 0, - "kFaceSource": 1, - "kSigil": 2, - "kTarget": 3, - "kSource": 4, - "kSigilRight": 5, - "kSigilLeft": 6, - "kFaceTargetTeam": 7 - } + "hash": 1961133770 }, - "m_hidePolymorphFloatyText": { - "type": "bool", + "m_maxEloRank": { + "type": "int", "id": 5, - "offset": 188, - "flags": 7, + "offset": 92, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 942475883 + "hash": 194203532 }, - "m_forwardOffset": { - "type": "float", + "m_minMatchesPlayed": { + "type": "int", "id": 6, - "offset": 192, - "flags": 7, + "offset": 96, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1749681459 + "hash": 650179746 }, - "m_absoluteTarget": { - "type": "bool", + "m_maxMatchesPlayed": { + "type": "int", "id": 7, - "offset": 196, + "offset": 100, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1560790756 + }, + "m_requiredBadge": { + "type": "std::string", + "id": 8, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2633719087 + }, + "m_membersOnly": { + "type": "bool", + "id": 9, + "offset": 136, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1051823616 + }, + "m_friendsOnly": { + "type": "bool", + "id": 10, + "offset": 137, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1420401792 + } + } + }, + "960864669": { + "name": "class SharedPointer", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 960864669, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1463993657 + "hash": 3130754092 } } }, - "79932554": { - "name": "class TrainBehaviorBase*", + "1373804370": { + "name": "class SharedPointer", "bases": [ "BehaviorInstance", "PropertyClass" ], - "hash": 79932554, + "hash": 1373804370, "properties": { "m_behaviorTemplateNameID": { "type": "unsigned int", @@ -629635,886 +581775,776 @@ "pointer": false, "hash": 223437287 }, - "m_trainData": { + "m_tutorialTipData": { "type": "std::string", "id": 1, "offset": 128, - "flags": 575, + "flags": 551, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2994039667 + "hash": 3119782422 } } }, - "479894973": { - "name": "class PvPPenaltyMatchBan*", + "1373628605": { + "name": "class ClientDuel*", "bases": [ - "InfractionPenalty", + "Duel", "PropertyClass" ], - "hash": 479894973, + "hash": 1373628605, "properties": { - "m_internalID": { - "type": "unsigned int", + "m_flatParticipantList": { + "type": "class SharedPointer", "id": 0, - "offset": 72, + "offset": 80, "flags": 31, - "container": "Static", - "dynamic": false, + "container": "Vector", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 1854540375 + "pointer": true, + "hash": 3375244498 }, - "m_categoryID": { - "type": "unsigned int", + "m_dynamicTeams": { + "type": "class SharedPointer", "id": 1, - "offset": 76, + "offset": 104, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1382795736 + "pointer": true, + "hash": 3227206264 }, - "m_removeAtPointValue": { - "type": "float", + "m_dynamicTurn": { + "type": "unsigned int", "id": 2, - "offset": 80, + "offset": 120, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2112196961 + "hash": 1168494811 }, - "m_expireTime": { + "m_dynamicTurnSubcircles": { "type": "unsigned int", "id": 3, - "offset": 84, + "offset": 124, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1836304873 + "hash": 618930538 }, - "m_duration": { - "type": "unsigned int", + "m_dynamicTurnCounter": { + "type": "int", "id": 4, - "offset": 88, + "offset": 128, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1041524755 - } - } - }, - "874406534": { - "name": "class ClassProjectPlayer", - "bases": [ - "PropertyClass" - ], - "hash": 874406534, - "properties": { - "m_playerGID": { - "type": "gid", - "id": 0, + "hash": 543404296 + }, + "m_duelID.m_full": { + "type": "unsigned __int64", + "id": 5, "offset": 72, - "flags": 7, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 578537369 + "hash": 1024980477 }, - "m_totalProgress": { - "type": "unsigned short", - "id": 1, - "offset": 88, - "flags": 7, + "m_planningTimer": { + "type": "float", + "id": 6, + "offset": 144, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 770936385 + "hash": 1142844143 }, - "m_tokens": { - "type": "unsigned char", - "id": 2, - "offset": 90, - "flags": 7, + "m_position": { + "type": "class Vector3D", + "id": 7, + "offset": 148, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1631929220 + "hash": 3697900983 }, - "m_flags": { - "type": "unsigned short", - "id": 3, - "offset": 92, - "flags": 7, + "m_yaw": { + "type": "float", + "id": 8, + "offset": 160, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1347981045 + "hash": 357256328 }, - "m_goalProgress1": { - "type": "unsigned short", - "id": 4, - "offset": 94, - "flags": 7, + "m_disableTimer": { + "type": "bool", + "id": 9, + "offset": 179, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2533159345 + "hash": 1571862248 }, - "m_goalProgress2": { - "type": "unsigned short", - "id": 5, - "offset": 96, - "flags": 7, + "m_tutorialMode": { + "type": "bool", + "id": 10, + "offset": 180, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2533159346 + "hash": 1704245836 }, - "m_goalProgress3": { - "type": "unsigned short", - "id": 6, - "offset": 98, - "flags": 7, + "m_firstTeamToAct": { + "type": "int", + "id": 11, + "offset": 184, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2533159347 + "hash": 1499447620 }, - "m_goalProgress4": { - "type": "unsigned short", - "id": 7, - "offset": 100, - "flags": 7, + "m_combatResolver": { + "type": "class CombatResolver*", + "id": 12, + "offset": 136, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 2533159348 + "pointer": true, + "hash": 1627811879 }, - "m_goalProgress5": { - "type": "unsigned short", - "id": 8, - "offset": 102, - "flags": 7, + "m_bPVP": { + "type": "bool", + "id": 13, + "offset": 176, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2533159349 + "hash": 221690795 }, - "m_packedName": { - "type": "unsigned int", - "id": 9, - "offset": 104, - "flags": 7, + "m_bBattleground": { + "type": "bool", + "id": 14, + "offset": 177, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 518911062 + "hash": 1158269184 }, - "m_purchasedTokens": { - "type": "unsigned char", - "id": 10, - "offset": 91, - "flags": 7, + "m_bRaid": { + "type": "bool", + "id": 15, + "offset": 178, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2467704067 + "hash": 791201781 }, - "m_level": { - "type": "unsigned char", - "id": 11, - "offset": 108, - "flags": 7, + "m_roundNum": { + "type": "int", + "id": 16, + "offset": 192, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1438884808 + "hash": 1461215570 }, - "m_buddyListGID": { - "type": "gid", - "id": 12, - "offset": 80, - "flags": 7, + "m_executionPhaseTimer": { + "type": "float", + "id": 17, + "offset": 200, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 50378240 + "hash": 1645062877 }, - "m_extendedData": { - "type": "unsigned char", - "id": 13, - "offset": 112, - "flags": 7, - "container": "Vector", + "m_executionPhaseCombatActions": { + "type": "class CombatAction", + "id": 18, + "offset": 208, + "flags": 31, + "container": "List", "dynamic": true, "singleton": false, "pointer": false, - "hash": 2268810331 + "hash": 270648678 }, - "m_usesExtraData": { - "type": "bool", - "id": 14, - "offset": 136, - "flags": 7, - "container": "Static", - "dynamic": false, + "m_sigilActions": { + "type": "class CombatAction", + "id": 19, + "offset": 224, + "flags": 31, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 1683530097 - } - } - }, - "1222804794": { - "name": "class EmbeddedBrowserConfigEntry", - "bases": [ - "PropertyClass" - ], - "hash": 1222804794, - "properties": { - "m_sName": { - "type": "std::string", - "id": 0, - "offset": 72, + "hash": 2176432675 + }, + "m_shadowPipRule": { + "type": "class SharedPointer", + "id": 20, + "offset": 280, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 2306437263 + "pointer": true, + "hash": 2692865990 }, - "m_sEmbeddedPage": { - "type": "std::string", - "id": 1, - "offset": 112, - "flags": 7, + "m_gameObjectAnimStateTracker": { + "type": "class GameObjectAnimStateTracker", + "id": 21, + "offset": 296, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1709213077 + "hash": 3120084989 }, - "m_sExternalPage": { - "type": "std::string", - "id": 2, - "offset": 144, - "flags": 7, + "m_duelPhase": { + "type": "enum kDuelPhase", + "id": 22, + "offset": 196, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3459688718 + "hash": 1813818086, + "enum_options": { + "kPhase_Starting": 0, + "kPhase_PrePlanning": 1, + "kPhase_Planning": 2, + "kPhase_PreExecution": 3, + "kPhase_Execution": 4, + "kPhase_Resolution": 5, + "kPhase_Victory": 6, + "kPhase_Ended": 7, + "kPhase_MAX": 10 + } }, - "m_sSteamPage": { - "type": "std::string", - "id": 3, - "offset": 176, - "flags": 7, + "m_duelModifier": { + "type": "class SharedPointer", + "id": 23, + "offset": 264, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1924913253 + "pointer": true, + "hash": 3330438158 }, - "m_nFlags": { - "type": "unsigned int", - "id": 4, - "offset": 208, - "flags": 1048583, + "m_initiativeSwitchMode": { + "type": "enum Duel::SigilInitiativeSwitchMode", + "id": 24, + "offset": 384, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 922328456, + "hash": 1258091520, "enum_options": { - "CheckSubscription": 1, - "UpdateCrownsBalance": 2, - "QuietAudio": 4 + "InitiativeSwitchMode_None": 0, + "InitiativeSwitchMode_Reroll": 1, + "InitiativeSwitchMode_Switch": 2 } - } - } - }, - "1646335451": { - "name": "class BattlegroundPOIData*", - "bases": [ - "PropertyClass" - ], - "hash": 1646335451, - "properties": { - "m_poiType": { - "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 7, + }, + "m_initiativeSwitchRounds": { + "type": "int", + "id": 25, + "offset": 388, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2082807927 + "hash": 540229885 }, - "m_icon": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, + "m_combatRules": { + "type": "class SharedPointer", + "id": 26, + "offset": 464, + "flags": 31, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 1717182340 + "pointer": true, + "hash": 3327225763 }, - "m_objectID": { - "type": "gid", - "id": 2, - "offset": 112, - "flags": 7, + "m_gameEffectInfo": { + "type": "class SharedPointer", + "id": 27, + "offset": 496, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2275096584 + }, + "m_pStatEffects": { + "type": "class SharedPointer", + "id": 28, + "offset": 512, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 257032380 + "pointer": true, + "hash": 1275229758 }, - "m_position": { - "type": "class Vector3D", - "id": 3, - "offset": 120, - "flags": 7, + "m_alternateTurnCombatRule": { + "type": "class SharedPointer", + "id": 29, + "offset": 480, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 3697900983 + "pointer": true, + "hash": 1715882395 }, - "m_yaw": { - "type": "float", - "id": 4, - "offset": 132, - "flags": 7, + "m_altTurnCounter": { + "type": "int", + "id": 30, + "offset": 456, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 357256328 - } - } - }, - "79772677": { - "name": "class CritAndBlockValues*", - "bases": [ - "PropertyClass" - ], - "hash": 79772677, - "properties": { - "m_capValue": { - "type": "float", - "id": 0, - "offset": 88, - "flags": 7, + "hash": 1434810564 + }, + "m_originalFirstTeamToAct": { + "type": "int", + "id": 31, + "offset": 188, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1100002568 + "hash": 560350457 }, - "m_criticalHitScalarBase": { - "type": "float", - "id": 1, - "offset": 72, - "flags": 7, + "m_executionOrder": { + "type": "enum kDuelExecutionOrder", + "id": 32, + "offset": 528, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 448021976 + "hash": 3362082097, + "enum_options": { + "kDEO_Sequential": 0, + "kDEO_Alternating": 1 + } }, - "m_criticalHitScalingFactor": { - "type": "float", - "id": 2, - "offset": 76, - "flags": 7, + "m_noHenchmen": { + "type": "bool", + "id": 33, + "offset": 532, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 322634343 + "hash": 1163855414 }, - "m_blockScalarBase": { - "type": "float", - "id": 3, - "offset": 80, - "flags": 7, + "m_SpellTruncation": { + "type": "bool", + "id": 34, + "offset": 540, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1713825491 + "hash": 1257440762 }, - "m_blockScalingFactor": { + "m_shadowThresholdFactor": { "type": "float", - "id": 4, - "offset": 84, - "flags": 7, + "id": 35, + "offset": 548, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1504920962 - } - } - }, - "874498523": { - "name": "class SharedPointer", - "bases": [ - "ObjectBag", - "PropertyClass" - ], - "hash": 874498523, - "properties": { - "m_itemList": { - "type": "class SharedPointer", - "id": 0, - "offset": 168, - "flags": 27, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1983655699 + "hash": 2104355177 }, - "m_maxItemStack": { - "type": "int", - "id": 1, - "offset": 184, - "flags": 27, + "m_shadowPipRatingFactor": { + "type": "float", + "id": 36, + "offset": 552, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 673449637 - } - } - }, - "1647010330": { - "name": "class BGPenaltyMatchBan*", - "bases": [ - "InfractionPenalty", - "PropertyClass" - ], - "hash": 1647010330, - "properties": { - "m_internalID": { - "type": "unsigned int", - "id": 0, - "offset": 72, + "hash": 1061434314 + }, + "m_defaultShadowPipRating": { + "type": "float", + "id": 37, + "offset": 556, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1854540375 + "hash": 1544572080 }, - "m_categoryID": { - "type": "unsigned int", - "id": 1, - "offset": 76, + "m_shadowPipThresholdTeam0": { + "type": "float", + "id": 38, + "offset": 560, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1382795736 + "hash": 447039594 }, - "m_removeAtPointValue": { + "m_shadowPipThresholdTeam1": { "type": "float", - "id": 2, - "offset": 80, + "id": 39, + "offset": 564, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2112196961 + "hash": 447039595 }, - "m_expireTime": { - "type": "unsigned int", - "id": 3, - "offset": 84, + "m_maxArchmasteryTeam0": { + "type": "float", + "id": 40, + "offset": 568, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1836304873 + "hash": 300185527 }, - "m_duration": { - "type": "unsigned int", - "id": 4, - "offset": 88, + "m_maxArchmasteryTeam1": { + "type": "float", + "id": 41, + "offset": 572, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1041524755 - } - } - }, - "481149671": { - "name": "class GardenPlant", - "bases": [ - "PropertyClass" - ], - "hash": 481149671, - "properties": { - "m_position": { - "type": "class Vector3D", - "id": 0, - "offset": 72, + "hash": 300185528 + }, + "m_scalarDamage": { + "type": "float", + "id": 42, + "offset": 600, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3697900983 + "hash": 1865068300 }, - "m_templateID": { - "type": "unsigned int", - "id": 1, - "offset": 84, + "m_scalarResist": { + "type": "float", + "id": 43, + "offset": 604, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1286746870 + "hash": 270448583 }, - "m_nextStageTimeSeconds": { - "type": "unsigned int", - "id": 2, - "offset": 92, + "m_scalarPierce": { + "type": "float", + "id": 44, + "offset": 608, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 752026046 + "hash": 196427621 }, - "m_flags": { - "type": "unsigned int", - "id": 3, - "offset": 88, + "m_damageLimit": { + "type": "float", + "id": 45, + "offset": 612, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1005801050 + "hash": 271286357 }, - "m_needsWaterTimeSeconds": { - "type": "unsigned int", - "id": 4, - "offset": 100, + "m_dK0": { + "type": "float", + "id": 46, + "offset": 616, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1144013149 + "hash": 357232662 }, - "m_needsSunTimeSeconds": { - "type": "unsigned int", - "id": 5, - "offset": 104, + "m_dN0": { + "type": "float", + "id": 47, + "offset": 620, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1376682128 + "hash": 357232761 }, - "m_needsPollinationTimeSeconds": { - "type": "unsigned int", - "id": 6, - "offset": 108, + "m_resistLimit": { + "type": "float", + "id": 48, + "offset": 624, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1487147427 + "hash": 1192834544 }, - "m_needsMagicTimeSeconds": { - "type": "unsigned int", - "id": 7, - "offset": 112, + "m_rK0": { + "type": "float", + "id": 49, + "offset": 628, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 655591099 + "hash": 357247908 }, - "m_needsMusicTimeSeconds": { - "type": "unsigned int", - "id": 8, - "offset": 116, + "m_rN0": { + "type": "float", + "id": 50, + "offset": 632, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 799722843 + "hash": 357248007 }, - "m_harvestTimeSeconds": { - "type": "unsigned int", - "id": 9, - "offset": 96, + "m_fullPartyGroup": { + "type": "bool", + "id": 51, + "offset": 636, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 675583752 + "hash": 1888593059 }, - "m_pestCheckTimeSeconds": { - "type": "unsigned int", - "id": 10, - "offset": 120, + "m_matchTimer": { + "type": "float", + "id": 52, + "offset": 656, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2302681477 + "hash": 1510935909 }, - "m_pestTemplateID": { - "type": "unsigned int", - "id": 11, - "offset": 124, + "m_bonusTime": { + "type": "int", + "id": 53, + "offset": 660, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1301457330 + "hash": 1757496496 }, - "m_pestProtectionTemplateID": { - "type": "unsigned int", - "id": 12, - "offset": 128, + "m_passPenalty": { + "type": "int", + "id": 54, + "offset": 664, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1429720889 + "hash": 982951662 }, - "m_pestProtectionTimeSeconds": { - "type": "unsigned int", - "id": 13, - "offset": 132, + "m_yellowTime": { + "type": "int", + "id": 55, + "offset": 668, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1440479886 + "hash": 1017028741 }, - "m_stageStartTimeSeconds": { - "type": "unsigned int", - "id": 14, - "offset": 136, + "m_redTime": { + "type": "int", + "id": 56, + "offset": 672, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1075432461 + "hash": 1909556708 }, - "m_likesDislikesModifier": { - "type": "float", - "id": 15, - "offset": 140, + "m_minTurnTime": { + "type": "int", + "id": 57, + "offset": 676, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 840714742 + "hash": 652524886 }, - "m_plantIdentifierForETL": { - "type": "gid", - "id": 16, - "offset": 144, + "m_bIsPlayerTimedDuel": { + "type": "bool", + "id": 58, + "offset": 637, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 450491014 + "hash": 857311611 }, - "m_harvestCount": { - "type": "unsigned int", - "id": 17, - "offset": 152, + "m_hideNoncombatantDistance": { + "type": "float", + "id": 59, + "offset": 536, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 245460819 + "hash": 1733017888 } } }, - "1257145459": { - "name": "class SharedPointer", + "525967215": { + "name": "class CombatHealthListObj", "bases": [ - "AddAuraCinematicAction", - "ActorCinematicAction", - "CinematicAction", "PropertyClass" ], - "hash": 1257145459, + "hash": 525967215, "properties": { - "m_timeOffset": { - "type": "float", + "m_healthList": { + "type": "class ParticipantParameter", "id": 0, "offset": 72, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 2237098605 + "hash": 2874774642 }, - "m_actor": { - "type": "std::string", + "m_duelID.m_full": { + "type": "unsigned __int64", "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - }, - "m_effect": { - "type": "std::string", - "id": 2, - "offset": 120, + "offset": 88, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1894145160 + "hash": 1024980477 } } }, - "1646584082": { - "name": "class DynaMod*", + "1809960275": { + "name": "class CastleMagicPlayersInZone", "bases": [ "PropertyClass" ], - "hash": 1646584082, + "hash": 1809960275, "properties": { - "m_clientTag": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3409856790 - }, - "m_zoneName": { - "type": "std::string", - "id": 1, - "offset": 112, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2171167736 - }, - "m_zoneInstance": { - "type": "gid", - "id": 2, - "offset": 152, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 449538121 - }, - "m_originator": { + "m_playersInZoneList": { "type": "gid", - "id": 3, + "id": 0, "offset": 72, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 709051254 - }, - "m_index": { - "type": "int", - "id": 4, - "offset": 160, - "flags": 30, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 798031442 - }, - "m_zoneID": { - "type": "unsigned int", - "id": 5, - "offset": 144, - "flags": 16, - "container": "Static", - "dynamic": false, + "flags": 7, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 1440651126 + "hash": 1367168135 } } }, - "80276780": { - "name": "class ZoneTickEffectTemplate*", + "962892045": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 962892045, + "properties": {} + }, + "1809844387": { + "name": "class LevelScaledEffectTemplate*", "bases": [ + "StatisticEffectTemplate", "GameEffectTemplate", "PropertyClass" ], - "hash": 80276780, + "hash": 1809844387, "properties": { "m_effectName": { "type": "std::string", @@ -630664,8 +582694,8 @@ "STACKING_REPLACE": 2 } }, - "m_tickOnAdd": { - "type": "bool", + "m_scaleToLevel": { + "type": "int", "id": 13, "offset": 360, "flags": 7, @@ -630673,1050 +582703,590 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 663357284 + "hash": 2018266685 }, - "m_zoneEventName": { - "type": "std::string", + "m_scaleUp": { + "type": "bool", "id": 14, - "offset": 368, + "offset": 364, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2601481434 - }, - "m_tickRateSec": { - "type": "float", - "id": 15, - "offset": 400, + "hash": 975051008 + } + } + }, + "962227962": { + "name": "class SharedPointer", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 962227962, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1559681353 + "hash": 3130754092 }, - "m_maxTicks": { - "type": "int", - "id": 16, - "offset": 404, + "m_visualBreadCrumb": { + "type": "bool", + "id": 1, + "offset": 120, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 155973918 + "hash": 1118570878 } } }, - "878420829": { - "name": "class ClientInventoryBehavior*", + "961689718": { + "name": "class ToSendCheerModsList*", "bases": [ - "InventoryBehaviorBase", - "BehaviorInstance", "PropertyClass" ], - "hash": 878420829, + "hash": 961689718, "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", + "m_list": { + "type": "class TerrainCheerCostMap", "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_itemList": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 27, + "offset": 72, + "flags": 7, "container": "List", "dynamic": true, "singleton": false, - "pointer": true, - "hash": 1983655699 + "pointer": false, + "hash": 2021860698 } } }, - "1238540803": { - "name": "class std::list >", - "bases": [], - "hash": 1238540803, - "properties": {} - }, - "876775127": { - "name": "class WizardAutobotQuestManager", - "bases": [ - "AutobotQuestManager", - "PropertyClass" - ], - "hash": 876775127, - "properties": {} - }, - "1229607021": { - "name": "class PetGeneticsControl", + "1375273609": { + "name": "class ClientStartHangingRotationCinematicAction*", "bases": [ - "Window", + "StartHangingRotationCinematicAction", + "ActorCinematicAction", + "CinematicAction", "PropertyClass" ], - "hash": 1229607021, + "hash": 1375273609, "properties": { - "m_sName": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306437263 - }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 65667, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621225959 - }, - "m_Style": { - "type": "unsigned int", - "id": 2, - "offset": 152, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "SCALE_CHILDREN": 2, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "FOCUS_LOCKED": 64, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152 - } - }, - "m_Flags": { - "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } - }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3105139380 - }, - "m_fTargetAlpha": { - "type": "float", - "id": 5, - "offset": 212, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1809129834 - }, - "m_fDisabledAlpha": { - "type": "float", - "id": 6, - "offset": 216, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1389987675 - }, - "m_fAlpha": { + "m_timeOffset": { "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 482130755 - }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3623628394 - }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, + "id": 0, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2102211316 + "hash": 2237098605 }, - "m_sScript": { + "m_actor": { "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1846695875 - }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3389835433 - }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2547159940 - }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, + "id": 1, + "offset": 80, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2587533771 + "hash": 2285866132 }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, + "m_cloaked": { + "type": "bool", + "id": 2, + "offset": 120, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3091503757 + "hash": 7349510 } } }, - "1646809340": { - "name": "class ReqHasSpell", + "526288621": { + "name": "class LeaderboardEntryList*", "bases": [ - "Requirement", "PropertyClass" ], - "hash": 1646809340, + "hash": 526288621, "properties": { - "m_applyNOT": { - "type": "bool", + "m_entryList": { + "type": "class SharedPointer", "id": 0, "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1746328074, - "enum_options": { - "__DEFAULT": 0 - } - }, - "m_operator": { - "type": "enum Requirement::Operator", - "id": 1, - "offset": 76, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2672792317, - "enum_options": { - "ROP_AND": 0, - "ROP_OR": 1, - "__DEFAULT": "ROP_AND" - } - }, - "m_spellName": { - "type": "std::string", - "id": 2, - "offset": 80, - "flags": 268435487, - "container": "Static", - "dynamic": false, + "flags": 7, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 2688485244, - "enum_options": { - "__BASECLASS": "SpellTemplate" - } + "pointer": true, + "hash": 1753877873 } } }, - "486775476": { - "name": "class SharedPointer", + "526185189": { + "name": "class SharedPointer", "bases": [ - "ServiceOptionBase", + "WinAnimContainer", + "WindowAnimation", "PropertyClass" ], - "hash": 486775476, + "hash": 526185189, "properties": { - "m_serviceName": { - "type": "std::string", + "m_bUseDeepCopy": { + "type": "bool", "id": 0, "offset": 72, - "flags": 31, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2206028813 + "hash": 433380635 }, - "m_iconKey": { - "type": "std::string", + "m_winAnimList": { + "type": "class SharedPointer", "id": 1, - "offset": 168, - "flags": 31, - "container": "Static", - "dynamic": false, + "offset": 80, + "flags": 135, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 2457138637 + "pointer": true, + "hash": 1941062728 }, - "m_displayKey": { - "type": "std::string", + "m_bLooping": { + "type": "bool", "id": 2, "offset": 104, - "flags": 31, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3023276954 + "hash": 2131020845 }, - "m_serviceIndex": { - "type": "unsigned int", + "m_boundary": { + "type": "class Rect", "id": 3, - "offset": 204, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2103126710 - }, - "m_forceInteract": { - "type": "bool", - "id": 4, - "offset": 200, - "flags": 31, + "offset": 112, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1705789564 + "hash": 1423726080 } } }, - "876265680": { - "name": "class SharedPointer", + "1810157138": { + "name": "class SharedPointer", "bases": [ - "PetGameInfo", "PropertyClass" ], - "hash": 876265680, + "hash": 1810157138, "properties": { - "m_isWebGame": { - "type": "bool", + "m_personaName": { + "type": "std::string", "id": 0, - "offset": 72, + "offset": 144, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 944547943 + "hash": 2514452244 }, - "m_name": { + "m_firstName": { "type": "std::string", "id": 1, - "offset": 160, - "flags": 7, + "offset": 208, + "flags": 8388615, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1717359772 + "hash": 3116002948 }, - "m_energyCosts": { - "type": "class SharedPointer", + "m_lastName": { + "type": "std::string", "id": 2, - "offset": 192, - "flags": 7, - "container": "List", - "dynamic": true, + "offset": 240, + "flags": 8388615, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3378376555 + "pointer": false, + "hash": 1826203600 }, - "m_trackChoices": { - "type": "class SharedPointer", + "m_title": { + "type": "std::string", "id": 3, - "offset": 208, - "flags": 7, - "container": "Vector", - "dynamic": true, + "offset": 272, + "flags": 8388615, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1548152913 + "pointer": false, + "hash": 2308614141 }, - "m_gameIcon": { + "m_nickname": { "type": "std::string", "id": 4, - "offset": 80, - "flags": 7, + "offset": 304, + "flags": 8388615, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3229574910 + "hash": 2269863201 }, - "m_trackIcons": { + "m_questList": { "type": "std::string", "id": 5, - "offset": 112, - "flags": 7, - "container": "Vector", + "offset": 360, + "flags": 268435463, + "container": "List", "dynamic": true, "singleton": false, "pointer": false, - "hash": 2211683916 + "hash": 1702049897, + "enum_options": { + "__BASECLASS": "QuestTemplate" + } }, - "m_trackToolTips": { + "m_questArcList": { "type": "std::string", "id": 6, - "offset": 136, - "flags": 7, - "container": "Vector", + "offset": 376, + "flags": 268435463, + "container": "List", "dynamic": true, "singleton": false, "pointer": false, - "hash": 1898819214 + "hash": 3113974815, + "enum_options": { + "__BASECLASS": "QuestArc" + } }, - "m_petWidth": { - "type": "int", + "m_icon": { + "type": "std::string", "id": 7, - "offset": 232, - "flags": 7, + "offset": 176, + "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2027689763 + "hash": 1717182340 }, - "m_petHeight": { - "type": "int", + "m_showTitle": { + "type": "bool", "id": 8, - "offset": 236, + "offset": 336, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1894813180 + "hash": 2128418998 }, - "m_petDepth": { - "type": "int", + "m_titleLast": { + "type": "bool", "id": 9, - "offset": 240, + "offset": 337, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2005026584 + "hash": 1207515433 }, - "m_gravity": { - "type": "float", + "m_maintainQuestOrder": { + "type": "bool", "id": 10, - "offset": 244, + "offset": 338, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1184936541 + "hash": 317861362 }, - "m_fallingPenalty": { - "type": "int", + "m_offerArcsFirst": { + "type": "bool", "id": 11, - "offset": 248, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1717924532 - }, - "m_trackTimes": { - "type": "int", - "id": 12, - "offset": 256, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 727242577 - }, - "m_collectionInterval": { - "type": "double", - "id": 13, - "offset": 280, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3052813470 - }, - "m_tolerance": { - "type": "double", - "id": 14, - "offset": 288, + "offset": 339, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3410860138 + "hash": 1663706614 } } }, - "1225623647": { - "name": "class SharedPointer", + "1382053342": { + "name": "class SharedPointer", "bases": [ - "ServiceOptionBase", + "CinematicAction", "PropertyClass" ], - "hash": 1225623647, + "hash": 1382053342, "properties": { - "m_serviceName": { - "type": "std::string", + "m_timeOffset": { + "type": "float", "id": 0, "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2206028813 - }, - "m_iconKey": { - "type": "std::string", - "id": 1, - "offset": 168, - "flags": 31, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2457138637 + "hash": 2237098605 }, - "m_displayKey": { + "m_spellText": { "type": "std::string", - "id": 2, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3023276954 - }, - "m_serviceIndex": { - "type": "unsigned int", - "id": 3, - "offset": 204, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2103126710 - }, - "m_forceInteract": { - "type": "bool", - "id": 4, - "offset": 200, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1705789564 - } - } - }, - "82560605": { - "name": "class WinAnimScaleSymmetrical*", - "bases": [ - "WindowAnimation", - "PropertyClass" - ], - "hash": 82560605, - "properties": { - "m_bUseDeepCopy": { - "type": "bool", - "id": 0, - "offset": 72, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 433380635 - }, - "m_scale": { - "type": "float", "id": 1, "offset": 80, - "flags": 135, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 899693439 + "hash": 2688705600 } } }, - "485118205": { - "name": "class ShadowSelfCinematicAction", + "526288581": { + "name": "class LeaderboardEntryList", "bases": [ - "CinematicAction", "PropertyClass" ], - "hash": 485118205, + "hash": 526288581, "properties": { - "m_timeOffset": { - "type": "float", + "m_entryList": { + "type": "class SharedPointer", "id": 0, "offset": 72, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 2237098605 + "pointer": true, + "hash": 1753877873 } } }, - "875803313": { - "name": "class SharedPointer", + "964426667": { + "name": "class MagicalSoccerGameComponent", "bases": [ + "HousingGameInterface", "PropertyClass" ], - "hash": 875803313, - "properties": { - "m_matchSize": { - "type": "int", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 563704930 - }, - "m_secondsWaited": { - "type": "int", - "id": 1, - "offset": 76, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 606761671 - } - } + "hash": 964426667, + "properties": {} }, - "1224986081": { - "name": "class DailyPvPOption*", + "1377570551": { + "name": "class SharedPointer", "bases": [ - "ServiceOptionBase", + "CoreTemplate", "PropertyClass" ], - "hash": 1224986081, + "hash": 1377570551, "properties": { - "m_serviceName": { - "type": "std::string", + "m_behaviors": { + "type": "class BehaviorTemplate*", "id": 0, "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, + "flags": 7, + "container": "Vector", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 2206028813 + "pointer": true, + "hash": 1197808594 }, - "m_iconKey": { + "m_talentName": { "type": "std::string", "id": 1, - "offset": 168, - "flags": 31, + "offset": 96, + "flags": 134217735, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2457138637 + "hash": 2455147588 }, - "m_displayKey": { + "m_displayName": { "type": "std::string", "id": 2, - "offset": 104, - "flags": 31, + "offset": 136, + "flags": 8388615, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3023276954 + "hash": 2446900370 }, - "m_serviceIndex": { - "type": "unsigned int", + "m_description": { + "type": "std::string", "id": 3, - "offset": 204, - "flags": 31, + "offset": 168, + "flags": 8388615, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2103126710 + "hash": 1649374815 }, - "m_forceInteract": { - "type": "bool", + "m_imageIndex": { + "type": "unsigned int", "id": 4, "offset": 200, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1705789564 - } - } - }, - "81401897": { - "name": "class ScriptBehavior*", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 81401897, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - } - } - }, - "483435122": { - "name": "class WinAnimContainer*", - "bases": [ - "WindowAnimation", - "PropertyClass" - ], - "hash": 483435122, - "properties": { - "m_bUseDeepCopy": { - "type": "bool", - "id": 0, - "offset": 72, - "flags": 135, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 433380635 - }, - "m_winAnimList": { - "type": "class SharedPointer", - "id": 1, - "offset": 80, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1941062728 + "hash": 1781902856 }, - "m_bLooping": { - "type": "bool", - "id": 2, - "offset": 104, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2131020845 - } - } - }, - "875556744": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 875556744, - "properties": { - "m_tag": { + "m_imageName": { "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, + "id": 5, + "offset": 208, + "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1764749335 + "hash": 2391520543 }, - "m_time": { - "type": "float", - "id": 1, - "offset": 104, + "m_rank": { + "type": "unsigned char", + "id": 6, + "offset": 240, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 310085638 - } - } - }, - "1223816892": { - "name": "class BlobRequest", - "bases": [ - "PropertyClass" - ], - "hash": 1223816892, - "properties": { - "m_type": { + "hash": 857403388 + }, + "m_breedsAsTalentName": { "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, + "id": 7, + "offset": 248, + "flags": 268435463, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1717601629 + "hash": 2143399629, + "enum_options": { + "__BASECLASS": "PetTalentBaseTemplate" + } }, - "m_associatedGID": { - "type": "gid", - "id": 1, - "offset": 104, + "m_bRetired": { + "type": "bool", + "id": 8, + "offset": 280, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 148404716 + "hash": 904227684, + "enum_options": { + "__DEFAULT": 0 + } }, - "m_blobRequestObjectList": { - "type": "class SharedPointer", - "id": 2, - "offset": 112, + "m_unsearchable": { + "type": "bool", + "id": 9, + "offset": 281, "flags": 7, - "container": "List", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 883864802 + "pointer": false, + "hash": 1760679968, + "enum_options": { + "__DEFAULT": 0 + } } } }, - "1647198248": { - "name": "class EquipSlot*", + "1812503040": { + "name": "class SharedPointer", "bases": [ + "HousingSignBehaviorBase", + "BehaviorInstance", "PropertyClass" ], - "hash": 1647198248, + "hash": 1812503040, "properties": { - "m_slotRequirements": { - "type": "class RequirementList*", + "m_behaviorTemplateNameID": { + "type": "unsigned int", "id": 0, - "offset": 152, - "flags": 7, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2462163144 - }, - "m_adjectivesAND": { - "type": "std::string", - "id": 1, - "offset": 160, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 3196570032 - }, - "m_adjectivesOR": { - "type": "std::string", - "id": 2, - "offset": 176, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2525395710 - }, - "m_adjectivesNOT": { - "type": "std::string", - "id": 3, - "offset": 192, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, "pointer": false, - "hash": 3196584238 + "hash": 223437287 }, - "m_slotName": { + "m_packedName": { "type": "std::string", - "id": 4, - "offset": 72, - "flags": 7, + "id": 1, + "offset": 112, + "flags": 65543, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2819781566 + "hash": 1805208228 }, - "m_slotCategory": { + "m_signText": { "type": "std::string", - "id": 5, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1940993755 - }, - "m_maxItemCount": { - "type": "unsigned int", - "id": 6, + "id": 2, "offset": 144, - "flags": 7, + "flags": 65543, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 865719819 + "hash": 2920366641 } } }, - "81291440": { - "name": "class SharedPointer", + "964426657": { + "name": "class MagicalSoccerGameComponent*", + "bases": [ + "HousingGameInterface", + "PropertyClass" + ], + "hash": 964426657, + "properties": {} + }, + "1376523329": { + "name": "class SharedPointer", "bases": [ "DerbyEffect", "PropertyClass" ], - "hash": 81291440, + "hash": 1376523329, "properties": { "m_buffType": { "type": "enum DerbyTalentBuffType", @@ -631852,480 +583422,837 @@ "pointer": false, "hash": 2840988582 }, - "m_lane": { - "type": "enum DerbyLaneEffect", + "m_terrainType": { + "type": "enum PetDerbyTrackTerrain", "id": 11, "offset": 376, - "flags": 2097159, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1075628144, + "hash": 2688629581, "enum_options": { - "kLaneRandomONE": 0, - "kLaneAll": 1, - "kLaneMine": 2 + "Cobblestone": 0, + "Water": 1, + "Grass": 2, + "Clay": 3, + "Dirt": 4, + "Mud": 5 } }, - "m_obstacleType": { - "type": "unsigned __int64", + "m_fEffectReapplyTime": { + "type": "float", "id": 12, - "offset": 384, - "flags": 33554439, + "offset": 380, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2219764488 + "hash": 1483497206 }, - "m_nObstacleAmount": { - "type": "int", + "m_effectsToApply": { + "type": "class SharedPointer", "id": 13, - "offset": 392, + "offset": 384, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2042624288 + }, + "m_permanentEffects": { + "type": "class SharedPointer", + "id": 14, + "offset": 400, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2129171809 + } + } + }, + "1810773573": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1810773573, + "properties": { + "m_setName": { + "type": "std::string", + "id": 0, + "offset": 72, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 52937033 + "hash": 2569991048 + }, + "m_pairs": { + "type": "class AnimationPair*", + "id": 1, + "offset": 112, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1888571563 } } }, - "481791362": { - "name": "class ProvideSpellEffect*", + "1375974384": { + "name": "class InteractiveMusicPlayerList", "bases": [ - "GameEffectBase", "PropertyClass" ], - "hash": 481791362, + "hash": 1375974384, "properties": { - "m_currentTickCount": { - "type": "double", + "m_playerList": { + "type": "gid", "id": 0, - "offset": 80, - "flags": 63, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1909774945 + } + } + }, + "526565147": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 526565147, + "properties": { + "m_passList": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1599562628 + } + } + }, + "1810637798": { + "name": "class UnSwapShadowMaterialActorCinematicAction", + "bases": [ + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 1810637798, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2533274692 + "hash": 2237098605 }, - "m_effectNameID": { - "type": "unsigned int", + "m_actor": { + "type": "std::string", "id": 1, - "offset": 96, - "flags": 63, + "offset": 80, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1204067144 + "hash": 2285866132 + } + } + }, + "1375527308": { + "name": "class PetDerbyTrackManager*", + "bases": [ + "PropertyClass" + ], + "hash": 1375527308, + "properties": { + "m_moraleBase": { + "type": "int", + "id": 0, + "offset": 76, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": true, + "pointer": false, + "hash": 1266117365 }, - "m_bIsOnPet": { - "type": "bool", + "m_rateBase": { + "type": "int", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": true, + "pointer": false, + "hash": 509523265 + }, + "m_speedBoostBase": { + "type": "int", "id": 2, - "offset": 73, - "flags": 31, + "offset": 84, + "flags": 7, "container": "Static", "dynamic": false, - "singleton": false, + "singleton": true, "pointer": false, - "hash": 522593303 + "hash": 1322305965 }, - "m_originatorID": { - "type": "gid", + "m_speedometerMin": { + "type": "unsigned int", "id": 3, - "offset": 104, - "flags": 39, + "offset": 88, + "flags": 7, "container": "Static", "dynamic": false, - "singleton": false, + "singleton": true, "pointer": false, - "hash": 1131810019 + "hash": 2086670670 }, - "m_itemSlotID": { + "m_speedometerMax": { "type": "unsigned int", "id": 4, - "offset": 112, - "flags": 63, + "offset": 92, + "flags": 7, "container": "Static", "dynamic": false, - "singleton": false, + "singleton": true, "pointer": false, - "hash": 1895747595 + "hash": 2086670416 }, - "m_internalID": { - "type": "int", + "m_willTerrainFactor": { + "type": "float", "id": 5, - "offset": 92, - "flags": 63, + "offset": 96, + "flags": 7, "container": "Static", "dynamic": false, - "singleton": false, + "singleton": true, "pointer": false, - "hash": 1643137924 + "hash": 1504784419 }, - "m_endTime": { - "type": "unsigned int", + "m_intelligenceTerrainFactor": { + "type": "float", "id": 6, - "offset": 88, - "flags": 31, + "offset": 100, + "flags": 7, "container": "Static", "dynamic": false, - "singleton": false, + "singleton": true, "pointer": false, - "hash": 716479635 + "hash": 1222264734 }, - "m_spellName": { - "type": "std::string", + "m_agilityTerrainFactor": { + "type": "float", "id": 7, - "offset": 128, - "flags": 31, + "offset": 104, + "flags": 7, "container": "Static", "dynamic": false, - "singleton": false, + "singleton": true, "pointer": false, - "hash": 2688485244 + "hash": 739714590 }, - "m_numSpells": { - "type": "int", + "m_strengthTerrainFactor": { + "type": "float", "id": 8, - "offset": 160, - "flags": 31, + "offset": 108, + "flags": 7, "container": "Static", "dynamic": false, - "singleton": false, + "singleton": true, "pointer": false, - "hash": 1269498237 + "hash": 2193163834 }, - "m_vFX": { - "type": "std::string", + "m_moraleBaseChance": { + "type": "int", "id": 9, - "offset": 168, - "flags": 31, + "offset": 112, + "flags": 7, "container": "Static", "dynamic": false, - "singleton": false, + "singleton": true, "pointer": false, - "hash": 1764750607 + "hash": 1198290007 }, - "m_vFXOverride": { - "type": "bool", + "m_startingSpeed": { + "type": "int", "id": 10, - "offset": 200, - "flags": 31, + "offset": 116, + "flags": 7, "container": "Static", "dynamic": false, - "singleton": false, + "singleton": true, "pointer": false, - "hash": 1491092359 + "hash": 2138873047 }, - "m_sound": { - "type": "std::string", + "m_cheerCostBase": { + "type": "int", "id": 11, - "offset": 208, - "flags": 31, + "offset": 120, + "flags": 7, "container": "Static", "dynamic": false, - "singleton": false, + "singleton": true, "pointer": false, - "hash": 2307644996 - } - } - }, - "1223737542": { - "name": "class std::list >", - "bases": [], - "hash": 1223737542, - "properties": {} - }, - "1647185960": { - "name": "class EquipSlot", - "bases": [ - "PropertyClass" - ], - "hash": 1647185960, - "properties": { - "m_slotRequirements": { - "type": "class RequirementList*", - "id": 0, - "offset": 152, + "hash": 260219765 + }, + "m_fMoraleFactor": { + "type": "float", + "id": 12, + "offset": 124, "flags": 7, "container": "Static", "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2462163144 - }, - "m_adjectivesAND": { - "type": "std::string", - "id": 1, - "offset": 160, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, + "singleton": true, "pointer": false, - "hash": 3196570032 + "hash": 1908498588 }, - "m_adjectivesOR": { - "type": "std::string", - "id": 2, - "offset": 176, + "m_fTerrainCostFactor": { + "type": "float", + "id": 13, + "offset": 128, "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, + "container": "Static", + "dynamic": false, + "singleton": true, "pointer": false, - "hash": 2525395710 + "hash": 1632613482 }, - "m_adjectivesNOT": { - "type": "std::string", - "id": 3, - "offset": 192, + "m_fSpeedBoostFactor": { + "type": "float", + "id": 14, + "offset": 132, "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, + "container": "Static", + "dynamic": false, + "singleton": true, "pointer": false, - "hash": 3196584238 + "hash": 1763479636 }, - "m_slotName": { - "type": "std::string", - "id": 4, - "offset": 72, + "m_cheerTimerInMS": { + "type": "int", + "id": 15, + "offset": 136, "flags": 7, "container": "Static", "dynamic": false, - "singleton": false, + "singleton": true, "pointer": false, - "hash": 2819781566 + "hash": 1155591641 }, - "m_slotCategory": { - "type": "std::string", - "id": 5, - "offset": 104, + "m_slowTimerInMS": { + "type": "int", + "id": 16, + "offset": 140, "flags": 7, "container": "Static", "dynamic": false, - "singleton": false, + "singleton": true, "pointer": false, - "hash": 1940993755 + "hash": 2014411479 }, - "m_maxItemCount": { - "type": "unsigned int", - "id": 6, + "m_cobblestoneCost": { + "type": "int", + "id": 17, "offset": 144, "flags": 7, "container": "Static", "dynamic": false, - "singleton": false, + "singleton": true, "pointer": false, - "hash": 865719819 + "hash": 539222659 + }, + "m_terrainEffects": { + "type": "class SharedPointer", + "id": 18, + "offset": 208, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": true, + "pointer": true, + "hash": 3143618983 + }, + "m_cheerEffects": { + "type": "class SharedPointer", + "id": 19, + "offset": 224, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": true, + "pointer": true, + "hash": 1565796382 + }, + "m_slowEffects": { + "type": "class SharedPointer", + "id": 20, + "offset": 240, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": true, + "pointer": true, + "hash": 409034140 + }, + "m_tracks": { + "type": "class SharedPointer", + "id": 21, + "offset": 152, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": true, + "pointer": true, + "hash": 1978381840 } } }, - "481550251": { - "name": "class StatisticEffectTemplate", + "964510138": { + "name": "class TutorialInfo", "bases": [ - "GameEffectTemplate", "PropertyClass" ], - "hash": 481550251, + "hash": 964510138, "properties": { - "m_effectName": { - "type": "std::string", + "m_tutorialNameID": { + "type": "unsigned int", "id": 0, "offset": 72, - "flags": 7, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2029161513 + "hash": 2228828719 }, - "m_effectCategory": { - "type": "std::string", + "m_tutorialStage": { + "type": "int", "id": 1, - "offset": 104, - "flags": 7, + "offset": 76, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1852673222 + "hash": 328120386 + } + } + }, + "1375296642": { + "name": "class SharedPointer", + "bases": [ + "SpellListControl", + "Window", + "PropertyClass" + ], + "hash": 1375296642, + "properties": { + "m_sName": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306437263 }, - "m_sortOrder": { - "type": "int", + "m_Children": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621225959 + }, + "m_Style": { + "type": "unsigned int", "id": 2, - "offset": 148, - "flags": 7, + "offset": 152, + "flags": 1048583, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1411218206 + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152, + "SLC_NUMBERS": 16777216 + } }, - "m_duration": { - "type": "double", + "m_Flags": { + "type": "unsigned int", "id": 3, - "offset": 192, - "flags": 7, + "offset": 156, + "flags": 1048583, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2727932435 + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } }, - "m_stackingCategories": { - "type": "std::string", + "m_Window": { + "type": "class Rect", "id": 4, "offset": 160, - "flags": 7, - "container": "List", - "dynamic": true, + "flags": 135, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 1774497525 + "hash": 3105139380 }, - "m_isPersistent": { - "type": "bool", + "m_fTargetAlpha": { + "type": "float", "id": 5, - "offset": 153, - "flags": 7, + "offset": 212, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 923861920 + "hash": 1809129834 }, - "m_bIsOnPet": { - "type": "bool", + "m_fDisabledAlpha": { + "type": "float", "id": 6, - "offset": 154, - "flags": 7, + "offset": 216, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 522593303 + "hash": 1389987675 }, - "m_isPublic": { - "type": "bool", + "m_fAlpha": { + "type": "float", "id": 7, - "offset": 152, - "flags": 7, + "offset": 208, + "flags": 65671, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1728439822 + "hash": 482130755 }, - "m_visualEffectAddName": { - "type": "std::string", + "m_pWindowStyle": { + "type": "class SharedPointer", "id": 8, - "offset": 200, - "flags": 7, + "offset": 232, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 3382086694 + "pointer": true, + "hash": 3623628394 }, - "m_visualEffectRemoveName": { - "type": "std::string", + "m_sHelp": { + "type": "std::wstring", "id": 9, - "offset": 232, - "flags": 7, + "offset": 248, + "flags": 4194439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1541697323 + "hash": 2102211316 }, - "m_onAddFunctorName": { + "m_sScript": { "type": "std::string", "id": 10, - "offset": 280, - "flags": 7, + "offset": 352, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1561843107 + "hash": 1846695875 }, - "m_onRemoveFunctorName": { - "type": "std::string", + "m_Offset": { + "type": "class Point", "id": 11, - "offset": 312, - "flags": 7, + "offset": 192, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2559017864 + "hash": 3389835433 }, - "m_stackingRule": { - "type": "enum STACKING_RULE", + "m_Scale": { + "type": "class Point", "id": 12, - "offset": 144, - "flags": 2097159, + "offset": 200, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 431568889, - "enum_options": { - "STACKING_ALLOWED": 0, - "STACKING_NOSTACK": 1, - "STACKING_REPLACE": 2 - } + "hash": 2547159940 + }, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513510520 + }, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3091503757 + }, + "m_cardSize": { + "type": "class Size", + "id": 16, + "offset": 716, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1135567057 + }, + "m_spacing": { + "type": "class Point", + "id": 17, + "offset": 724, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3187881255 + }, + "m_holes": { + "type": "class Rect", + "id": 18, + "offset": 696, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1902151287 + }, + "m_ingredientSize": { + "type": "class Size", + "id": 19, + "offset": 760, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1856724800 + }, + "m_ingredientSpacing": { + "type": "class Point", + "id": 20, + "offset": 768, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2794695056 } } }, - "481313173": { - "name": "class ClientBattlegroundPlayerStatsManager*", + "528727797": { + "name": "class BreadCrumbBehavior", "bases": [ - "BattlegroundPlayerStatsManager", + "BreadCrumbBehaviorBase", + "BehaviorInstance", "PropertyClass" ], - "hash": 481313173, + "hash": 528727797, "properties": { - "m_statsList": { - "type": "class SharedPointer", + "m_behaviorTemplateNameID": { + "type": "unsigned int", "id": 0, - "offset": 72, - "flags": 7, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_breadCrumbNumber": { + "type": "unsigned int", + "id": 1, + "offset": 112, + "flags": 65543, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2100995821 + }, + "m_equippedPetGIDList": { + "type": "gid", + "id": 2, + "offset": 120, + "flags": 65543, "container": "List", "dynamic": true, "singleton": false, - "pointer": true, - "hash": 2999855587 + "pointer": false, + "hash": 1574152046 }, - "m_poi": { - "type": "class SharedPointer", + "m_equippedBreadCrumbIDList": { + "type": "unsigned short", + "id": 3, + "offset": 136, + "flags": 65543, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 592278117 + }, + "m_flags": { + "type": "unsigned int", + "id": 4, + "offset": 152, + "flags": 65543, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1005801050 + } + } + }, + "1811737919": { + "name": "class WizMinigameOffering*", + "bases": [ + "PropertyClass" + ], + "hash": 1811737919, + "properties": {} + }, + "527136127": { + "name": "class SharedPointer", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 527136127, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_raidKeyTemplateID": { + "type": "unsigned int", "id": 1, - "offset": 88, - "flags": 7, + "offset": 112, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1342603341 + "pointer": false, + "hash": 884418367 } } }, - "875836263": { - "name": "class SharedPointer", + "1810994553": { + "name": "class PetGameMorphPartner", "bases": [ - "CombatRule", "PropertyClass" ], - "hash": 875836263, + "hash": 1810994553, "properties": { - "m_scalarDamage": { - "type": "float", + "m_characterId": { + "type": "gid", "id": 0, "offset": 72, "flags": 31, @@ -632333,267 +584260,375 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 1865068300 + "hash": 210498418 }, - "m_scalarPierce": { - "type": "float", + "m_pets": { + "type": "class SharedPointer", "id": 1, - "offset": 76, + "offset": 80, "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 521887012 + } + } + }, + "970892637": { + "name": "class SpellData", + "bases": [ + "PropertyClass" + ], + "hash": 970892637, + "properties": { + "m_templateID": { + "type": "unsigned int", + "id": 0, + "offset": 72, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 196427621 + "hash": 1286746870 }, - "m_scalarResist": { - "type": "float", + "m_enchantment": { + "type": "unsigned int", + "id": 1, + "offset": 76, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2217886818 + }, + "m_quantity": { + "type": "unsigned int", "id": 2, "offset": 80, - "flags": 31, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 270448583 + "hash": 380617740 } } }, - "82072831": { - "name": "class SharedPointer", + "1375527332": { + "name": "class PetDerbyTrackManager", "bases": [ - "BehaviorTemplate", "PropertyClass" ], - "hash": 82072831, + "hash": 1375527332, "properties": { - "m_behaviorName": { - "type": "std::string", + "m_moraleBase": { + "type": "int", "id": 0, - "offset": 72, + "offset": 76, "flags": 7, "container": "Static", "dynamic": false, - "singleton": false, + "singleton": true, "pointer": false, - "hash": 3130754092 + "hash": 1266117365 }, - "m_titleText": { - "type": "std::string", + "m_rateBase": { + "type": "int", "id": 1, - "offset": 120, + "offset": 80, "flags": 7, "container": "Static", "dynamic": false, - "singleton": false, + "singleton": true, "pointer": false, - "hash": 2703025890 + "hash": 509523265 }, - "m_instrumentGUI": { - "type": "std::string", + "m_speedBoostBase": { + "type": "int", "id": 2, - "offset": 152, + "offset": 84, "flags": 7, "container": "Static", "dynamic": false, - "singleton": false, + "singleton": true, "pointer": false, - "hash": 1548997465 + "hash": 1322305965 }, - "m_useAlternateHighlighting": { - "type": "int", + "m_speedometerMin": { + "type": "unsigned int", "id": 3, - "offset": 184, + "offset": 88, "flags": 7, "container": "Static", "dynamic": false, - "singleton": false, + "singleton": true, "pointer": false, - "hash": 275839645 + "hash": 2086670670 }, - "m_buttonSampleList": { - "type": "class SharedPointer", + "m_speedometerMax": { + "type": "unsigned int", "id": 4, - "offset": 192, + "offset": 92, "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2024362058 + "container": "Static", + "dynamic": false, + "singleton": true, + "pointer": false, + "hash": 2086670416 }, - "m_musicLoopList": { - "type": "class SharedPointer", + "m_willTerrainFactor": { + "type": "float", "id": 5, - "offset": 208, + "offset": 96, "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2490589385 - } - } - }, - "1224985921": { - "name": "class DailyPvPOption", - "bases": [ - "ServiceOptionBase", - "PropertyClass" - ], - "hash": 1224985921, - "properties": { - "m_serviceName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, "container": "Static", "dynamic": false, - "singleton": false, + "singleton": true, "pointer": false, - "hash": 2206028813 + "hash": 1504784419 }, - "m_iconKey": { - "type": "std::string", - "id": 1, - "offset": 168, - "flags": 31, + "m_intelligenceTerrainFactor": { + "type": "float", + "id": 6, + "offset": 100, + "flags": 7, "container": "Static", "dynamic": false, - "singleton": false, + "singleton": true, "pointer": false, - "hash": 2457138637 + "hash": 1222264734 }, - "m_displayKey": { - "type": "std::string", - "id": 2, + "m_agilityTerrainFactor": { + "type": "float", + "id": 7, "offset": 104, - "flags": 31, + "flags": 7, "container": "Static", "dynamic": false, - "singleton": false, + "singleton": true, "pointer": false, - "hash": 3023276954 + "hash": 739714590 }, - "m_serviceIndex": { - "type": "unsigned int", - "id": 3, - "offset": 204, - "flags": 31, + "m_strengthTerrainFactor": { + "type": "float", + "id": 8, + "offset": 108, + "flags": 7, "container": "Static", "dynamic": false, - "singleton": false, + "singleton": true, "pointer": false, - "hash": 2103126710 + "hash": 2193163834 }, - "m_forceInteract": { - "type": "bool", - "id": 4, - "offset": 200, - "flags": 31, + "m_moraleBaseChance": { + "type": "int", + "id": 9, + "offset": 112, + "flags": 7, "container": "Static", "dynamic": false, - "singleton": false, + "singleton": true, "pointer": false, - "hash": 1705789564 - } - } - }, - "1647491364": { - "name": "class ZoneTickEffectInfo*", - "bases": [ - "GameEffectInfo", - "PropertyClass" - ], - "hash": 1647491364, - "properties": { - "m_effectName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, + "hash": 1198290007 + }, + "m_startingSpeed": { + "type": "int", + "id": 10, + "offset": 116, + "flags": 7, "container": "Static", "dynamic": false, - "singleton": false, + "singleton": true, "pointer": false, - "hash": 2029161513 + "hash": 2138873047 }, - "m_tickOnAdd": { - "type": "bool", - "id": 1, - "offset": 104, + "m_cheerCostBase": { + "type": "int", + "id": 11, + "offset": 120, "flags": 7, "container": "Static", "dynamic": false, - "singleton": false, + "singleton": true, "pointer": false, - "hash": 663357284 + "hash": 260219765 }, - "m_zoneEventName": { - "type": "std::string", - "id": 2, - "offset": 112, + "m_fMoraleFactor": { + "type": "float", + "id": 12, + "offset": 124, "flags": 7, "container": "Static", "dynamic": false, - "singleton": false, + "singleton": true, "pointer": false, - "hash": 2601481434 + "hash": 1908498588 }, - "m_tickRateSec": { + "m_fTerrainCostFactor": { "type": "float", - "id": 3, - "offset": 144, + "id": 13, + "offset": 128, "flags": 7, "container": "Static", "dynamic": false, - "singleton": false, + "singleton": true, "pointer": false, - "hash": 1559681353 + "hash": 1632613482 }, - "m_maxTicks": { + "m_fSpeedBoostFactor": { + "type": "float", + "id": 14, + "offset": 132, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": true, + "pointer": false, + "hash": 1763479636 + }, + "m_cheerTimerInMS": { "type": "int", - "id": 4, - "offset": 148, + "id": 15, + "offset": 136, "flags": 7, "container": "Static", "dynamic": false, - "singleton": false, + "singleton": true, "pointer": false, - "hash": 155973918 + "hash": 1155591641 + }, + "m_slowTimerInMS": { + "type": "int", + "id": 16, + "offset": 140, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": true, + "pointer": false, + "hash": 2014411479 + }, + "m_cobblestoneCost": { + "type": "int", + "id": 17, + "offset": 144, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": true, + "pointer": false, + "hash": 539222659 + }, + "m_terrainEffects": { + "type": "class SharedPointer", + "id": 18, + "offset": 208, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": true, + "pointer": true, + "hash": 3143618983 + }, + "m_cheerEffects": { + "type": "class SharedPointer", + "id": 19, + "offset": 224, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": true, + "pointer": true, + "hash": 1565796382 + }, + "m_slowEffects": { + "type": "class SharedPointer", + "id": 20, + "offset": 240, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": true, + "pointer": true, + "hash": 409034140 + }, + "m_tracks": { + "type": "class SharedPointer", + "id": 21, + "offset": 152, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": true, + "pointer": true, + "hash": 1978381840 } } }, - "81401993": { - "name": "class ScriptBehavior", + "526987603": { + "name": "class TieredSpellManager*", "bases": [ - "BehaviorInstance", "PropertyClass" ], - "hash": 81401993, + "hash": 526987603, "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", + "m_tieredSpellConfig": { + "type": "class SharedPointer", + "id": 0, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": true, + "pointer": true, + "hash": 2945256819 + } + } + }, + "969402988": { + "name": "class PlayerHasBadge*", + "bases": [ + "PropertyClass" + ], + "hash": 969402988, + "properties": { + "m_sBadgeName": { + "type": "std::string", "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1846044066 + }, + "m_hasBadge": { + "type": "bool", + "id": 1, "offset": 104, - "flags": 39, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 + "hash": 1597294914 } } }, - "481437550": { - "name": "class HousingGameHiScores*", + "966497934": { + "name": "class SharedPointer", "bases": [ + "RenderBehaviorTemplate", + "BehaviorTemplate", "PropertyClass" ], - "hash": 481437550, + "hash": 966497934, "properties": { - "m_playerName0": { + "m_behaviorName": { "type": "std::string", "id": 0, "offset": 72, @@ -632602,1580 +584637,1650 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 2243035545 + "hash": 3130754092 }, - "m_score0": { - "type": "unsigned short", + "m_assetName": { + "type": "std::string", "id": 1, - "offset": 104, - "flags": 7, + "offset": 120, + "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1494703316 + "hash": 1513131580 }, - "m_playerName1": { + "m_proxyName": { "type": "std::string", "id": 2, - "offset": 112, - "flags": 7, + "offset": 152, + "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2243035546 + "hash": 3120358366 }, - "m_score1": { - "type": "unsigned short", + "m_height": { + "type": "float", "id": 3, - "offset": 144, + "offset": 184, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1494703317 + "hash": 602977104 }, - "m_playerName2": { - "type": "std::string", + "m_bStaticObject": { + "type": "bool", "id": 4, - "offset": 152, + "offset": 188, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2243035547 + "hash": 108091444 }, - "m_score2": { - "type": "unsigned short", + "m_bCastsShadow": { + "type": "bool", "id": 5, - "offset": 184, + "offset": 189, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1494703318 - } - } - }, - "876537364": { - "name": "class CombatPipListObj*", - "bases": [ - "PropertyClass" - ], - "hash": 876537364, - "properties": { - "m_pipList": { - "type": "class ParticipantPipData", - "id": 0, - "offset": 72, + "hash": 652868121 + }, + "m_bFadesIn": { + "type": "bool", + "id": 6, + "offset": 190, "flags": 7, - "container": "List", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 3423034348 + "hash": 263337711, + "enum_options": { + "__DEFAULT": 1 + } }, - "m_duelID.m_full": { - "type": "unsigned __int64", - "id": 1, - "offset": 88, + "m_opacity": { + "type": "float", + "id": 7, + "offset": 192, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1024980477 - } - } - }, - "876373524": { - "name": "class CombatPipListObj", - "bases": [ - "PropertyClass" - ], - "hash": 876373524, - "properties": { - "m_pipList": { - "type": "class ParticipantPipData", - "id": 0, - "offset": 72, + "hash": 700308464, + "enum_options": { + "__DEFAULT": 1 + } + }, + "m_bFadesOut": { + "type": "bool", + "id": 8, + "offset": 196, "flags": 7, - "container": "List", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 3423034348 + "hash": 17988464, + "enum_options": { + "__DEFAULT": 1 + } }, - "m_duelID.m_full": { - "type": "unsigned __int64", - "id": 1, - "offset": 88, + "m_bPortalExcluded": { + "type": "bool", + "id": 9, + "offset": 197, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1024980477 + "hash": 239086293 + }, + "m_scale": { + "type": "float", + "id": 10, + "offset": 200, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 899693439, + "enum_options": { + "__DEFAULT": 1 + } + }, + "m_bCanBeHiddenByCamera": { + "type": "bool", + "id": 11, + "offset": 204, + "flags": 263, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 185252414 + }, + "m_nLightType": { + "type": "enum RenderBehaviorTemplate::LightingType", + "id": 12, + "offset": 208, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2027385184, + "enum_options": { + "None": 0, + "Char": 1, + "Env": 2 + } + }, + "m_shadowAssetName": { + "type": "std::string", + "id": 13, + "offset": 216, + "flags": 131335, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1844059970 + }, + "m_enableReqs": { + "type": "class SharedPointer", + "id": 14, + "offset": 248, + "flags": 263, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3158020443 + }, + "m_skeletonID": { + "type": "int", + "id": 15, + "offset": 264, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1375865996 + }, + "m_dataLookupAssetName": { + "type": "std::string", + "id": 16, + "offset": 272, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1944770480 + }, + "m_animationAssetName": { + "type": "std::string", + "id": 17, + "offset": 304, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2944957756 + }, + "m_movementScale": { + "type": "float", + "id": 18, + "offset": 336, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 768663914 + }, + "m_idleAnimationName": { + "type": "std::string", + "id": 19, + "offset": 344, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1616739386 + }, + "m_animationEventList": { + "type": "class SharedPointer", + "id": 20, + "offset": 376, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2858101335 } } }, - "1225309305": { - "name": "class SpellEffect", + "1812346332": { + "name": "class GraphicalItemCard*", "bases": [ + "GraphicalSpell", + "Spell", "PropertyClass" ], - "hash": 1225309305, + "hash": 1812346332, "properties": { - "m_effectType": { - "type": "enum SpellEffect::kSpellEffects", + "m_templateID": { + "type": "unsigned int", "id": 0, - "offset": 72, - "flags": 2097183, + "offset": 128, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2578255295, - "enum_options": { - "kInvalidSpellEffect": 0, - "kDamage": 1, - "kDamageNoCrit": 2, - "kHeal": 3, - "kHealPercent": 4, - "kSetHealPercent": 113, - "kStealHealth": 5, - "kReduceOverTime": 6, - "kDetonateOverTime": 7, - "kPushCharm": 8, - "kStealCharm": 9, - "kPushWard": 10, - "kStealWard": 11, - "kPushOverTime": 12, - "kStealOverTime": 13, - "kRemoveCharm": 14, - "kRemoveWard": 15, - "kRemoveOverTime": 16, - "kRemoveAura": 17, - "kSwapAll": 18, - "kSwapCharm": 19, - "kSwapWard": 20, - "kSwapOverTime": 21, - "kModifyIncomingDamage": 22, - "kModifyIncomingDamageFlat": 119, - "kMaximumIncomingDamage": 23, - "kModifyIncomingHeal": 24, - "kModifyIncomingHealFlat": 118, - "kModifyIncomingDamageType": 25, - "kModifyIncomingArmorPiercing": 26, - "kModifyOutgoingDamage": 27, - "kModifyOutgoingDamageFlat": 121, - "kModifyOutgoingHeal": 28, - "kModifyOutgoingHealFlat": 120, - "kModifyOutgoingDamageType": 29, - "kModifyOutgoingArmorPiercing": 30, - "kModifyOutgoingStealHealth": 31, - "kModifyIncomingStealHealth": 32, - "kBounceNext": 33, - "kBouncePrevious": 34, - "kBounceBack": 35, - "kBounceAll": 36, - "kAbsorbDamage": 37, - "kAbsorbHeal": 38, - "kModifyAccuracy": 39, - "kDispel": 40, - "kConfusion": 41, - "kCloakedCharm": 42, - "kCloakedWard": 43, - "kStunResist": 44, - "kClue": 111, - "kPipConversion": 45, - "kCritBoost": 46, - "kCritBlock": 47, - "kPolymorph": 48, - "kDelayCast": 49, - "kModifyCardCloak": 50, - "kModifyCardDamage": 51, - "kModifyCardAccuracy": 53, - "kModifyCardMutation": 54, - "kModifyCardRank": 55, - "kModifyCardArmorPiercing": 56, - "kSummonCreature": 65, - "kTeleportPlayer": 66, - "kStun": 67, - "kDampen": 68, - "kReshuffle": 69, - "kMindControl": 70, - "kModifyPips": 71, - "kModifyPowerPips": 72, - "kModifyShadowPips": 73, - "kModifyHate": 74, - "kDamageOverTime": 75, - "kHealOverTime": 76, - "kModifyPowerPipChance": 77, - "kModifyRank": 78, - "kStunBlock": 79, - "kRevealCloak": 80, - "kInstantKill": 81, - "kAfterlife": 82, - "kDeferredDamage": 83, - "kDamagePerTotalPipPower": 84, - "kModifyCardHeal": 52, - "kModifyCardCharm": 57, - "kModifyCardWard": 58, - "kModifyCardOutgoingDamage": 59, - "kModifyCardOutgoingAccuracy": 60, - "kModifyCardOutgoingHeal": 61, - "kModifyCardOutgoingArmorPiercing": 62, - "kModifyCardIncomingDamage": 63, - "kModifyCardAbsorbDamage": 64, - "kCloakedWardNoRemove": 86, - "kAddCombatTriggerList": 87, - "kRemoveCombatTriggerList": 88, - "kBacklashDamage": 89, - "kModifyBacklash": 90, - "kIntercept": 91, - "kShadowSelf": 92, - "kShadowCreature": 93, - "kModifyShadowCreatureLevel": 94, - "kSelectShadowCreatureAttackTarget": 95, - "kShadowDecrementTurn": 96, - "kCritBoostSchoolSpecific": 97, - "kSpawnCreature": 98, - "kUnPolymorph": 99, - "kPowerPipConversion": 100, - "kProtectCardBeneficial": 101, - "kProtectCardHarmful": 102, - "kProtectBeneficial": 103, - "kProtectHarmful": 104, - "kDivideDamage": 105, - "kCollectEssence": 106, - "kKillCreature": 107, - "kDispelBlock": 108, - "kConfusionBlock": 109, - "kModifyPipRoundRate": 110, - "kMaxHealthDamage": 112, - "kUntargetable": 114, - "kMakeTargetable": 115, - "kForceTargetable": 116, - "kRemoveStunBlock": 117, - "kExitCombat": 122, - "kSuspendPips": 123, - "kResumePips": 124, - "kAutoPass": 125, - "kStopAutoPass": 126, - "kVanish": 127, - "kStopVanish": 128, - "kMaxHealthHeal": 129, - "kHealByWard": 130, - "kTaunt": 131, - "kPacify": 132, - "kRemoveTargetRestriction": 133, - "kConvertHangingEffect": 134, - "kAddSpellToDeck": 135, - "kAddSpellToHand": 136, - "kModifyIncomingDamageOverTime": 137, - "kModifyIncomingHealOverTime": 138, - "kModifyCardDamagebyRank": 139, - "kPushConvertedCharm": 140, - "kStealConvertedCharm": 141, - "kPushConvertedWard": 142, - "kStealConvertedWard": 143, - "kPushConvertedOverTime": 144, - "kStealConvertedOverTime": 145, - "kRemoveConvertedCharm": 146, - "kRemoveConvertedWard": 147, - "kRemoveConvertedOverTime": 148, - "kModifyOverTimeDuration": 149, - "kModifySchoolPips": 150 - } + "hash": 1286746870 }, - "m_effectParam": { - "type": "int", + "m_enchantment": { + "type": "unsigned int", "id": 1, - "offset": 76, + "offset": 80, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 357920024 + "hash": 2217886818 }, - "m_disposition": { - "type": "enum SpellEffect::kHangingDisposition", + "m_pipCost": { + "type": "class SharedPointer", "id": 2, - "offset": 80, - "flags": 2097159, + "offset": 176, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1904841031, - "enum_options": { - "kBoth": 0, - "kBeneficial": 1, - "kHarmful": 2 - } + "pointer": true, + "hash": 3605704820 }, - "m_sDamageType": { - "type": "std::string", + "m_regularAdjust": { + "type": "int", "id": 3, - "offset": 88, - "flags": 7, + "offset": 192, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2501054223 + "hash": 1420453335 }, - "m_damageType": { + "m_magicSchoolID": { "type": "unsigned int", "id": 4, - "offset": 84, - "flags": 31, + "offset": 136, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 737882766 + "hash": 893146499 }, - "m_pipNum": { - "type": "int", + "m_accuracy": { + "type": "unsigned char", "id": 5, - "offset": 128, + "offset": 132, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 830827539 + "hash": 2273914939 }, - "m_actNum": { - "type": "int", + "m_treasureCard": { + "type": "bool", "id": 6, - "offset": 132, + "offset": 197, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 236824866 + "hash": 1764879128 }, - "m_effectTarget": { - "type": "enum SpellEffect::kEffectTarget", + "m_battleCard": { + "type": "bool", "id": 7, - "offset": 140, - "flags": 2097183, + "offset": 198, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2458940523, - "enum_options": { - "kInvalidTarget": 0, - "kSpell": 1, - "kSpecificSpells": 2, - "kGlobal": 3, - "kEnemyTeam": 4, - "kEnemyTeamAllAtOnce": 5, - "kFriendlyTeam": 6, - "kFriendlyTeamAllAtOnce": 7, - "kEnemySingle": 8, - "kFriendlySingle": 9, - "kMinion": 10, - "kFriendlyMinion": 17, - "kEnemyMinion": 18, - "kSelf": 11, - "kAtLeastOneEnemy": 13, - "kPreselectedEnemySingle": 12, - "kMultiTargetEnemy": 14, - "kMultiTargetFriendly": 15, - "kFriendlySingleNotMe": 16 - } + "hash": 1332843753 }, - "m_numRounds": { - "type": "int", + "m_itemCard": { + "type": "bool", "id": 8, - "offset": 144, - "flags": 31, + "offset": 199, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1229753829 + "hash": 1683654300 }, - "m_paramPerRound": { - "type": "int", + "m_sideBoard": { + "type": "bool", "id": 9, - "offset": 148, - "flags": 31, + "offset": 200, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 683234234 + "hash": 1897838368 }, - "m_healModifier": { - "type": "float", + "m_spellID": { + "type": "unsigned int", "id": 10, - "offset": 152, - "flags": 7, + "offset": 204, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1317921248, - "enum_options": { - "__DEFAULT": "1.0" - } + "hash": 1697483258 }, - "m_spellTemplateID": { - "type": "unsigned int", + "m_leavesPlayWhenCastOverride": { + "type": "bool", "id": 11, - "offset": 120, + "offset": 216, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 585567702 + "hash": 874407398 }, - "m_enchantmentSpellTemplateID": { - "type": "unsigned int", + "m_cloaked": { + "type": "bool", "id": 12, - "offset": 124, - "flags": 31, + "offset": 196, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 246955115 + "hash": 7349510 }, - "m_act": { + "m_enchantmentSpellIsItemCard": { "type": "bool", "id": 13, - "offset": 136, - "flags": 7, + "offset": 76, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 269510283 + "hash": 531590701 }, - "m_cloaked": { - "type": "bool", + "m_premutationSpellID": { + "type": "unsigned int", "id": 14, - "offset": 157, + "offset": 112, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 7349510 + "hash": 1530256370 }, - "m_bypassProtection": { + "m_enchantedThisCombat": { "type": "bool", "id": 15, - "offset": 159, + "offset": 77, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1657138252 + "hash": 1895738923 }, - "m_armorPiercingParam": { - "type": "int", + "m_paramOverrides": { + "type": "class SharedPointer", "id": 16, - "offset": 160, + "offset": 224, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2061635599 + }, + "m_subEffectMeta": { + "type": "class SharedPointer", + "id": 17, + "offset": 240, "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1944101106 + }, + "m_delayEnchantment": { + "type": "bool", + "id": 18, + "offset": 257, + "flags": 287, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2025530205 + "hash": 191336919 }, - "m_chancePerTarget": { - "type": "int", - "id": 17, - "offset": 164, - "flags": 31, + "m_PvE": { + "type": "bool", + "id": 19, + "offset": 264, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 269492350 + }, + "m_delayEnchantmentOrder": { + "type": "enum SpellEffect::kDelayOrder", + "id": 20, + "offset": 72, + "flags": 287, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 845426794 + "hash": 2526055263, + "enum_options": { + "SpellEffect::kAnyOrder": 0, + "SpellEffect::kFirst": 1, + "SpellEffect::kSecond": 2 + } }, - "m_protected": { - "type": "bool", - "id": 18, - "offset": 168, + "m_roundAddedTC": { + "type": "int", + "id": 21, + "offset": 260, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1445655037 + "hash": 112365451 }, - "m_converted": { - "type": "bool", - "id": 19, - "offset": 169, - "flags": 31, + "m_secondarySchoolID": { + "type": "unsigned int", + "id": 22, + "offset": 304, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1590428797 + "hash": 2081206026 }, - "m_rank": { - "type": "int", - "id": 20, - "offset": 208, - "flags": 7, + "m_fusionState": { + "type": "enum Spell::FusionState", + "id": 23, + "offset": 308, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 219803942 + "hash": 835324539, + "enum_options": { + "FS_Invalid": 0, + "FS_Partial": 1, + "FS_Valid": 2 + } } } }, - "1652604248": { - "name": "class CompassMarker*", + "966024816": { + "name": "class WhirlyBurlyScoreUpdateData*", "bases": [ "PropertyClass" ], - "hash": 1652604248, + "hash": 966024816, "properties": { - "m_textKey": { - "type": "std::string", + "m_blueTeamScore": { + "type": "unsigned int", "id": 0, "offset": 72, - "flags": 8388615, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1720060457 + "hash": 1519259416 }, - "m_location": { - "type": "class Vector3D", + "m_orangeTeamScore": { + "type": "unsigned int", "id": 1, - "offset": 104, + "offset": 76, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2239683611 + "hash": 988508012 }, - "m_mapLocation": { - "type": "class Point", + "m_redTeamScore": { + "type": "unsigned int", "id": 2, - "offset": 116, + "offset": 80, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2172826233 + "hash": 1672048811 }, - "m_nObjectID": { - "type": "gid", + "m_passport": { + "type": "unsigned int", "id": 3, - "offset": 128, + "offset": 84, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 537078058 + "hash": 1362521513 }, - "m_visible": { - "type": "bool", + "m_gameState": { + "type": "std::string", "id": 4, - "offset": 136, + "offset": 88, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 810536225 + "hash": 2824634006 } } }, - "481623014": { - "name": "class SharedPointer", + "1375974394": { + "name": "class InteractiveMusicPlayerList*", "bases": [ - "LeashedPathMovementBehavior", - "BehaviorInstance", "PropertyClass" ], - "hash": 481623014, + "hash": 1375974394, "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", + "m_playerList": { + "type": "gid", "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 223437287 + "hash": 1909774945 } } }, - "1650715070": { - "name": "class SharedPointer", + "527896511": { + "name": "class SharedPointer", "bases": [ - "CoreTemplate", + "CinematicStageTemplate", "PropertyClass" ], - "hash": 1650715070, + "hash": 527896511, "properties": { - "m_behaviors": { - "type": "class BehaviorTemplate*", + "m_name": { + "type": "std::string", "id": 0, "offset": 72, "flags": 7, - "container": "Vector", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1197808594 + "pointer": false, + "hash": 1717359772 }, - "m_soundName": { - "type": "std::string", + "m_duration": { + "type": "float", "id": 1, - "offset": 96, + "offset": 104, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2277149669 + "hash": 920323453 }, - "m_soundFile": { - "type": "std::string", + "m_actions": { + "type": "class SharedPointer", "id": 2, - "offset": 136, - "flags": 131079, - "container": "Static", - "dynamic": false, + "offset": 112, + "flags": 7, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 2276870852 + "pointer": true, + "hash": 1380578687 }, - "m_delay": { - "type": "double", + "m_stageRelationships": { + "type": "class SharedPointer", "id": 3, - "offset": 168, + "offset": 128, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 2689597116 + "pointer": true, + "hash": 499983354 } } }, - "83808747": { - "name": "class SharedPointer", + "965649875": { + "name": "class AdvPvpLeaderboardFields*", "bases": [ - "WinAnimMoveToLocationSpeed", - "WinAnimMoveToLocation", - "WindowAnimation", "PropertyClass" ], - "hash": 83808747, + "hash": 965649875, "properties": { - "m_bUseDeepCopy": { - "type": "bool", + "m_leagueID": { + "type": "unsigned int", "id": 0, "offset": 72, - "flags": 135, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 433380635 + "hash": 692361645 }, - "m_targetLocation": { - "type": "class Vector3D", + "m_seasonID": { + "type": "unsigned int", "id": 1, - "offset": 80, - "flags": 135, + "offset": 76, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2653859938 + "hash": 535260643 }, - "m_fSpeed": { - "type": "float", + "m_startTime": { + "type": "unsigned int", "id": 2, - "offset": 96, - "flags": 135, + "offset": 80, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 503609006 + "hash": 1598371274 }, - "m_facing": { - "type": "enum DoodleDoug::DdDirection", + "m_characterID": { + "type": "gid", "id": 3, - "offset": 112, - "flags": 135, + "offset": 88, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 591537519 + "hash": 210498386 }, - "m_cameFrom": { - "type": "enum DoodleDoug::DdDirection", + "m_characterSchool": { + "type": "unsigned int", "id": 4, - "offset": 116, - "flags": 135, + "offset": 96, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1071209393 + "hash": 1330015234 }, - "m_nextWaypoint": { - "type": "class Point", + "m_nameKeys": { + "type": "unsigned int", "id": 5, - "offset": 120, - "flags": 135, + "offset": 100, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2346187452 + "hash": 1772225898 }, - "m_myBoard": { - "type": "class DoodleDoug*", + "m_level": { + "type": "int", "id": 6, - "offset": 136, - "flags": 135, + "offset": 104, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2212758093 + "pointer": false, + "hash": 801285362 + }, + "m_wins": { + "type": "int", + "id": 7, + "offset": 108, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 219992347 + }, + "m_score": { + "type": "int", + "id": 8, + "offset": 112, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 809507734 + }, + "m_rank": { + "type": "int", + "id": 9, + "offset": 116, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 219803942 + }, + "m_visualBlob": { + "type": "std::string", + "id": 10, + "offset": 120, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1691722510 + }, + "m_oldScore": { + "type": "int", + "id": 11, + "offset": 152, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 30663605 } } }, - "1225428773": { - "name": "class BadgeLeaderboardBehaviorTemplate", + "1376486542": { + "name": "class InitialCombatSoundsList*", "bases": [ - "BehaviorTemplate", "PropertyClass" ], - "hash": 1225428773, + "hash": 1376486542, "properties": { - "m_behaviorName": { - "type": "std::string", + "m_initialCombatSoundsList": { + "type": "class SharedPointer", "id": 0, "offset": 72, "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1746599966 + } + } + }, + "1812702742": { + "name": "class AdvPvPEloBehaviorClient", + "bases": [ + "AdvPvPEloBehavior", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1812702742, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3130754092 + "hash": 223437287 + }, + "m_loaded": { + "type": "bool", + "id": 1, + "offset": 112, + "flags": 27, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 683367036 + }, + "m_entries": { + "type": "class SharedPointer", + "id": 2, + "offset": 120, + "flags": 27, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1075986553 + }, + "m_recordCache": { + "type": "class SharedPointer", + "id": 3, + "offset": 136, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 828243474 } } }, - "1649312569": { - "name": "class AvatarAppearanceRule", + "529931976": { + "name": "class SharedPointer", "bases": [ - "AvatarItemInfo", - "AvatarItemInfoBase", + "DerbyModifyPetStat", + "DerbyEffect", "PropertyClass" ], - "hash": 1649312569, + "hash": 529931976, "properties": { - "m_partName": { - "type": "std::string", + "m_buffType": { + "type": "enum DerbyTalentBuffType", "id": 0, - "offset": 72, - "flags": 7, + "offset": 92, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2609631923 + "hash": 1149251982, + "enum_options": { + "Buff": 0, + "Debuff": 1, + "Neither": 2 + } }, - "m_slotName": { - "type": "std::string", + "m_kTarget": { + "type": "enum DerbyTargetType", "id": 1, - "offset": 104, - "flags": 7, + "offset": 96, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2819781566 + "hash": 1807803351, + "enum_options": { + "kTargetInFront": 0, + "kTargetBehind": 1, + "kTargetFirst": 2, + "kTargetSelf": 3, + "kTargetAll": 4, + "kTargetLast": 5 + } }, - "m_flags": { - "type": "std::string", + "m_nDuration": { + "type": "int", "id": 2, - "offset": 144, - "flags": 7, - "container": "List", - "dynamic": true, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 2292098216 + "hash": 1110167982 }, - "m_options": { - "type": "class SharedPointer", + "m_effectID": { + "type": "unsigned int", "id": 3, - "offset": 160, - "flags": 7, - "container": "List", - "dynamic": true, + "offset": 88, + "flags": 24, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2499357824 + "pointer": false, + "hash": 2347630439 }, - "m_textureOptions": { - "type": "class SharedPointer", + "m_imageFilename": { + "type": "std::string", "id": 4, - "offset": 176, - "flags": 7, - "container": "List", - "dynamic": true, + "offset": 112, + "flags": 131103, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2667548348 + "pointer": false, + "hash": 2813328063 }, - "m_defaultOption": { - "type": "class SharedPointer", + "m_iconIndex": { + "type": "unsigned int", "id": 5, - "offset": 192, - "flags": 7, + "offset": 144, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2436336754 + "pointer": false, + "hash": 1265133262 }, - "m_defaultTextureOption": { - "type": "class SharedPointer", + "m_soundOnActivate": { + "type": "std::string", "id": 6, - "offset": 208, - "flags": 7, + "offset": 152, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2712636654 - } - } - }, - "82673991": { - "name": "class ItemAndInventory", - "bases": [], - "hash": 82673991, - "properties": {} - }, - "1648836778": { - "name": "class LootInfoBase*", - "bases": [ - "PropertyClass" - ], - "hash": 1648836778, - "properties": {} - }, - "482508975": { - "name": "class CantripsInvisibilityEffectInfo*", - "bases": [ - "GameEffectInfo", - "PropertyClass" - ], - "hash": 482508975, - "properties": { - "m_effectName": { + "pointer": false, + "hash": 1956929714 + }, + "m_soundOnTarget": { "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, + "id": 7, + "offset": 184, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2029161513 - } - } - }, - "877634397": { - "name": "class ClientInventoryBehavior", - "bases": [ - "InventoryBehaviorBase", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 877634397, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, + "hash": 3444214056 + }, + "m_targetParticleEffect": { + "type": "std::string", + "id": 8, + "offset": 216, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 + "hash": 3048234723 }, - "m_itemList": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 27, - "container": "List", - "dynamic": true, + "m_overheadMessage": { + "type": "std::string", + "id": 9, + "offset": 248, + "flags": 8388639, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1983655699 + "pointer": false, + "hash": 1701018190 + }, + "m_requirements": { + "type": "class RequirementList", + "id": 10, + "offset": 280, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2840988582 + }, + "m_mods": { + "type": "class PetStatModificationSet", + "id": 11, + "offset": 376, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 686212266 } } }, - "1648230806": { - "name": "class ClientPetSnackItem*", + "1812555506": { + "name": "class MagicLevelInfo", "bases": [ - "WizClientObjectItem", - "ClientObject", - "CoreObject", "PropertyClass" ], - "hash": 1648230806, + "hash": 1812555506, "properties": { - "m_inactiveBehaviors": { - "type": "class SharedPointer", + "m_level": { + "type": "int", "id": 0, - "offset": 224, - "flags": 31, - "container": "Vector", - "dynamic": true, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1850812559 + "pointer": false, + "hash": 801285362 }, - "m_globalID.m_full": { - "type": "unsigned __int64", + "m_xpToLevel": { + "type": "int", "id": 1, - "offset": 72, - "flags": 16777247, + "offset": 76, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2312465444 + "hash": 1972600157 }, - "m_permID": { - "type": "unsigned __int64", + "m_hitpoints": { + "type": "int", "id": 2, "offset": 80, - "flags": 16777247, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1298909658 + "hash": 1545062140 }, - "m_location": { - "type": "class Vector3D", + "m_mana": { + "type": "int", "id": 3, - "offset": 168, - "flags": 31, + "offset": 84, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2239683611 + "hash": 219624247 }, - "m_orientation": { - "type": "class Vector3D", + "m_gold": { + "type": "int", "id": 4, - "offset": 180, - "flags": 31, + "offset": 88, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2344058766 + "hash": 219423808 }, - "m_fScale": { - "type": "float", + "m_levelName": { + "type": "std::string", "id": 5, - "offset": 196, - "flags": 31, + "offset": 136, + "flags": 8388615, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 503137701 + "hash": 3595417396 }, - "m_templateID.m_full": { - "type": "unsigned __int64", + "m_pipChance": { + "type": "float", "id": 6, - "offset": 96, - "flags": 31, + "offset": 168, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 633907631 + "hash": 1744274210 }, - "m_debugName": { - "type": "std::string", + "m_trainingPoints": { + "type": "int", "id": 7, - "offset": 104, - "flags": 31, + "offset": 172, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3553984419 + "hash": 1003892499 }, - "m_displayKey": { - "type": "std::string", + "m_craftingSlots": { + "type": "int", "id": 8, - "offset": 136, - "flags": 31, + "offset": 92, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3023276954 + "hash": 1998878589 }, - "m_zoneTagID": { - "type": "unsigned int", + "m_petEnergy": { + "type": "int", "id": 9, - "offset": 344, - "flags": 31, + "offset": 96, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 965291410 + "hash": 1787948493 }, - "m_speedMultiplier": { - "type": "short", + "m_pipConversionRatingAllSchools": { + "type": "int", "id": 10, - "offset": 192, - "flags": 31, + "offset": 100, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 123130076 + "hash": 1570450594 }, - "m_nMobileID": { - "type": "unsigned short", + "m_pipConversionRatingFire": { + "type": "int", "id": 11, - "offset": 194, - "flags": 31, + "offset": 104, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1054318939 + "hash": 1427121812 }, - "m_characterId": { - "type": "gid", + "m_pipConversionRatingIce": { + "type": "int", "id": 12, - "offset": 440, - "flags": 31, + "offset": 108, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 210498418 + "hash": 108410207 }, - "m_primaryColor": { + "m_pipConversionRatingStorm": { "type": "int", "id": 13, - "offset": 560, - "flags": 31, + "offset": 112, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 900965981 + "hash": 2010842115 }, - "m_pattern": { + "m_pipConversionRatingLife": { "type": "int", "id": 14, - "offset": 564, - "flags": 31, + "offset": 116, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1337683384 + "hash": 1427337038 }, - "m_secondaryColor": { + "m_pipConversionRatingMyth": { "type": "int", "id": 15, - "offset": 568, - "flags": 63, + "offset": 120, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1616550081 + "hash": 1427390864 }, - "m_displayID": { - "type": "gid", + "m_pipConversionRatingDeath": { + "type": "int", "id": 16, - "offset": 576, - "flags": 63, + "offset": 124, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1022427803 + "hash": 1992499060 }, - "m_itemFlags": { - "type": "unsigned int", + "m_pipConversionRatingBalance": { + "type": "int", "id": 17, - "offset": 584, - "flags": 31, + "offset": 128, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2004128457 + "hash": 197129012 }, - "m_quantity": { - "type": "int", + "m_shadowPipRating": { + "type": "float", "id": 18, - "offset": 600, - "flags": 27, + "offset": 176, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 169215289 + "hash": 507126123 + }, + "m_archmastery": { + "type": "float", + "id": 19, + "offset": 180, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1963579610 } } }, - "83664723": { - "name": "class SharedPointer", + "966436307": { + "name": "class AdvPvpLeaderboardFields", "bases": [ - "WinAnimMoveToLocationSpeed", - "WinAnimMoveToLocation", - "WindowAnimation", "PropertyClass" ], - "hash": 83664723, + "hash": 966436307, "properties": { - "m_bUseDeepCopy": { - "type": "bool", + "m_leagueID": { + "type": "unsigned int", "id": 0, "offset": 72, - "flags": 135, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 433380635 + "hash": 692361645 }, - "m_targetLocation": { - "type": "class Vector3D", + "m_seasonID": { + "type": "unsigned int", "id": 1, - "offset": 80, - "flags": 135, + "offset": 76, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2653859938 + "hash": 535260643 }, - "m_fSpeed": { - "type": "float", + "m_startTime": { + "type": "unsigned int", "id": 2, - "offset": 96, - "flags": 135, + "offset": 80, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 503609006 - } - } - }, - "482197973": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 482197973, - "properties": { - "m_ingredientID": { + "hash": 1598371274 + }, + "m_characterID": { "type": "gid", - "id": 0, - "offset": 72, - "flags": 7, + "id": 3, + "offset": 88, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1616797422 + "hash": 210498386 }, - "m_quantity": { + "m_characterSchool": { + "type": "unsigned int", + "id": 4, + "offset": 96, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1330015234 + }, + "m_nameKeys": { + "type": "unsigned int", + "id": 5, + "offset": 100, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1772225898 + }, + "m_level": { "type": "int", - "id": 1, - "offset": 80, - "flags": 7, + "id": 6, + "offset": 104, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 169215289 + "hash": 801285362 }, - "m_sufficient": { - "type": "bool", - "id": 2, - "offset": 96, - "flags": 7, + "m_wins": { + "type": "int", + "id": 7, + "offset": 108, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 92688739 - } - } - }, - "877438051": { - "name": "class ReqHasMorphSlot*", - "bases": [ - "Requirement", - "PropertyClass" - ], - "hash": 877438051, - "properties": { - "m_applyNOT": { - "type": "bool", - "id": 0, - "offset": 72, + "hash": 219992347 + }, + "m_score": { + "type": "int", + "id": 8, + "offset": 112, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1746328074, - "enum_options": { - "__DEFAULT": 0 - } + "hash": 809507734 }, - "m_operator": { - "type": "enum Requirement::Operator", - "id": 1, - "offset": 76, - "flags": 2097183, + "m_rank": { + "type": "int", + "id": 9, + "offset": 116, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2672792317, - "enum_options": { - "ROP_AND": 0, - "ROP_OR": 1, - "__DEFAULT": "ROP_AND" - } + "hash": 219803942 + }, + "m_visualBlob": { + "type": "std::string", + "id": 10, + "offset": 120, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1691722510 + }, + "m_oldScore": { + "type": "int", + "id": 11, + "offset": 152, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 30663605 } } }, - "1227786784": { - "name": "class GraphicalPvPTourneyCurrency*", + "1812555346": { + "name": "class MagicLevelInfo*", "bases": [ - "GraphicalSpell", - "Spell", "PropertyClass" ], - "hash": 1227786784, + "hash": 1812555346, "properties": { - "m_templateID": { - "type": "unsigned int", + "m_level": { + "type": "int", "id": 0, - "offset": 128, - "flags": 31, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1286746870 + "hash": 801285362 }, - "m_enchantment": { - "type": "unsigned int", + "m_xpToLevel": { + "type": "int", "id": 1, - "offset": 80, - "flags": 31, + "offset": 76, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2217886818 + "hash": 1972600157 }, - "m_pipCost": { - "type": "class SharedPointer", + "m_hitpoints": { + "type": "int", "id": 2, - "offset": 176, + "offset": 80, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3605704820 + "pointer": false, + "hash": 1545062140 }, - "m_regularAdjust": { + "m_mana": { "type": "int", "id": 3, - "offset": 192, - "flags": 31, + "offset": 84, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1420453335 + "hash": 219624247 }, - "m_magicSchoolID": { - "type": "unsigned int", + "m_gold": { + "type": "int", "id": 4, - "offset": 136, + "offset": 88, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 893146499 + "hash": 219423808 }, - "m_accuracy": { - "type": "unsigned char", + "m_levelName": { + "type": "std::string", "id": 5, - "offset": 132, - "flags": 7, + "offset": 136, + "flags": 8388615, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2273914939 + "hash": 3595417396 }, - "m_treasureCard": { - "type": "bool", + "m_pipChance": { + "type": "float", "id": 6, - "offset": 197, - "flags": 31, + "offset": 168, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1764879128 + "hash": 1744274210 }, - "m_battleCard": { - "type": "bool", + "m_trainingPoints": { + "type": "int", "id": 7, - "offset": 198, - "flags": 31, + "offset": 172, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1332843753 + "hash": 1003892499 }, - "m_itemCard": { - "type": "bool", + "m_craftingSlots": { + "type": "int", "id": 8, - "offset": 199, + "offset": 92, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1683654300 + "hash": 1998878589 }, - "m_sideBoard": { - "type": "bool", + "m_petEnergy": { + "type": "int", "id": 9, - "offset": 200, + "offset": 96, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1897838368 + "hash": 1787948493 }, - "m_spellID": { - "type": "unsigned int", + "m_pipConversionRatingAllSchools": { + "type": "int", "id": 10, - "offset": 204, - "flags": 31, + "offset": 100, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1697483258 + "hash": 1570450594 }, - "m_leavesPlayWhenCastOverride": { - "type": "bool", + "m_pipConversionRatingFire": { + "type": "int", "id": 11, - "offset": 216, - "flags": 31, + "offset": 104, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 874407398 + "hash": 1427121812 }, - "m_cloaked": { - "type": "bool", + "m_pipConversionRatingIce": { + "type": "int", "id": 12, - "offset": 196, + "offset": 108, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 7349510 + "hash": 108410207 }, - "m_enchantmentSpellIsItemCard": { - "type": "bool", + "m_pipConversionRatingStorm": { + "type": "int", "id": 13, - "offset": 76, - "flags": 31, + "offset": 112, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 531590701 + "hash": 2010842115 }, - "m_premutationSpellID": { - "type": "unsigned int", + "m_pipConversionRatingLife": { + "type": "int", "id": 14, - "offset": 112, - "flags": 31, + "offset": 116, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1530256370 + "hash": 1427337038 }, - "m_enchantedThisCombat": { - "type": "bool", + "m_pipConversionRatingMyth": { + "type": "int", "id": 15, - "offset": 77, - "flags": 31, + "offset": 120, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1895738923 + "hash": 1427390864 }, - "m_paramOverrides": { - "type": "class SharedPointer", + "m_pipConversionRatingDeath": { + "type": "int", "id": 16, - "offset": 224, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2061635599 - }, - "m_subEffectMeta": { - "type": "class SharedPointer", - "id": 17, - "offset": 240, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1944101106 - }, - "m_delayEnchantment": { - "type": "bool", - "id": 18, - "offset": 257, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 191336919 - }, - "m_PvE": { - "type": "bool", - "id": 19, - "offset": 264, - "flags": 287, + "offset": 124, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 269492350 + "hash": 1992499060 }, - "m_delayEnchantmentOrder": { - "type": "enum SpellEffect::kDelayOrder", - "id": 20, - "offset": 72, - "flags": 287, + "m_pipConversionRatingBalance": { + "type": "int", + "id": 17, + "offset": 128, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2526055263, - "enum_options": { - "SpellEffect::kAnyOrder": 0, - "SpellEffect::kFirst": 1, - "SpellEffect::kSecond": 2 - } + "hash": 197129012 }, - "m_roundAddedTC": { - "type": "int", - "id": 21, - "offset": 260, - "flags": 31, + "m_shadowPipRating": { + "type": "float", + "id": 18, + "offset": 176, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 112365451 + "hash": 507126123 }, - "m_secondarySchoolID": { - "type": "unsigned int", - "id": 22, - "offset": 304, + "m_archmastery": { + "type": "float", + "id": 19, + "offset": 180, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2081206026 + "hash": 1963579610 } } }, - "876966376": { - "name": "class SharedPointer", + "966024826": { + "name": "class WhirlyBurlyScoreUpdateData", "bases": [ "PropertyClass" ], - "hash": 876966376, + "hash": 966024826, "properties": { - "m_characterGID": { - "type": "gid", + "m_blueTeamScore": { + "type": "unsigned int", "id": 0, "offset": 72, "flags": 7, @@ -634183,1293 +586288,1574 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 501688601 + "hash": 1519259416 }, - "m_fishSize": { - "type": "float", + "m_orangeTeamScore": { + "type": "unsigned int", "id": 1, + "offset": 76, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 988508012 + }, + "m_redTeamScore": { + "type": "unsigned int", + "id": 2, "offset": 80, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1986368316 + "hash": 1672048811 }, - "m_packedName": { + "m_passport": { + "type": "unsigned int", + "id": 3, + "offset": 84, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1362521513 + }, + "m_gameState": { "type": "std::string", - "id": 2, + "id": 4, "offset": 88, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1805208228 + "hash": 2824634006 } } }, - "1227180511": { - "name": "class SharedPointer", + "1376942752": { + "name": "class SharedPointer", "bases": [ - "MountInteractableOption", - "InteractableOption", - "ServiceOptionBase", + "Window", "PropertyClass" ], - "hash": 1227180511, + "hash": 1376942752, "properties": { - "m_serviceName": { + "m_sName": { "type": "std::string", "id": 0, - "offset": 72, - "flags": 31, + "offset": 80, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2206028813 + "hash": 2306437263 }, - "m_iconKey": { - "type": "std::string", + "m_Children": { + "type": "class SharedPointer", "id": 1, - "offset": 168, - "flags": 31, - "container": "Static", - "dynamic": false, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 2457138637 + "pointer": true, + "hash": 2621225959 }, - "m_displayKey": { - "type": "std::string", + "m_Style": { + "type": "unsigned int", "id": 2, - "offset": 104, - "flags": 31, + "offset": 152, + "flags": 1048583, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3023276954 + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "SCALE_CHILDREN": 2, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "FOCUS_LOCKED": 64, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152 + } }, - "m_serviceIndex": { + "m_Flags": { "type": "unsigned int", "id": 3, - "offset": 204, - "flags": 31, + "offset": 156, + "flags": 1048583, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2103126710 + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } }, - "m_forceInteract": { - "type": "bool", + "m_Window": { + "type": "class Rect", "id": 4, - "offset": 200, - "flags": 31, + "offset": 160, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1705789564 + "hash": 3105139380 }, - "m_optionIndex": { - "type": "int", + "m_fTargetAlpha": { + "type": "float", "id": 5, + "offset": 212, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1809129834 + }, + "m_fDisabledAlpha": { + "type": "float", + "id": 6, "offset": 216, - "flags": 31, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 276287019 - } - } - }, - "482474534": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 482474534, - "properties": { - "m_unitTypesList": { - "type": "unsigned char", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, + "hash": 1389987675 + }, + "m_fAlpha": { + "type": "float", + "id": 7, + "offset": 208, + "flags": 65671, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 2643134017 + "hash": 482130755 }, - "m_cardsUsedList": { - "type": "unsigned int", - "id": 1, - "offset": 88, - "flags": 7, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3623628394 + }, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2102211316 + }, + "m_sScript": { + "type": "std::string", + "id": 10, + "offset": 352, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1846695875 + }, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3389835433 + }, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547159940 + }, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513510520 + }, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, "container": "List", "dynamic": true, "singleton": false, "pointer": false, - "hash": 711045287 + "hash": 2587533771 }, - "m_discardedCardsList": { + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3091503757 + } + } + }, + "533306322": { + "name": "class ClientPlayerAggroBehavior*", + "bases": [ + "PlayerAggroBehavior", + "AggroBehavior", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 533306322, + "properties": { + "m_behaviorTemplateNameID": { "type": "unsigned int", - "id": 2, + "id": 0, "offset": 104, - "flags": 7, - "container": "List", - "dynamic": true, + "flags": 39, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 1939154233 + "hash": 223437287 } } }, - "1225878825": { - "name": "class SharedPointer", + "1377272120": { + "name": "class SharedPointer", "bases": [ "PropertyClass" ], - "hash": 1225878825, + "hash": 1377272120, "properties": { - "m_categoryID": { - "type": "unsigned int", + "m_connectionType": { + "type": "enum HousingNode::ConnectionType", "id": 0, "offset": 72, - "flags": 55, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1382795736 + "hash": 427658421, + "enum_options": { + "MALE": 0, + "FEMALE": 1, + "__DEFAULT": "MALE" + } }, - "m_eventID": { + "m_locationType": { "type": "unsigned int", "id": 1, "offset": 76, - "flags": 55, + "flags": 1048583, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1031693820 + "hash": 538163080, + "enum_options": { + "INSIDE": 1, + "OUTSIDE": 2, + "INACCESSIBLE": 4, + "__DEFAULT": "INSIDE" + } }, - "m_eventCount": { - "type": "unsigned int", + "m_exclusiveRestrictions": { + "type": "enum HousingNode::ExclusiveRestrictions", "id": 2, "offset": 80, - "flags": 55, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1625031576 + "hash": 3137090195, + "enum_options": { + "NO_RESTRICTIONS": 0, + "WALL_ONLY": 1, + "DOOR_ONLY": 2, + "WINDOW_ONLY": 3, + "STAIR_ONLY": 4, + "EDGE_ONLY": 5, + "CEILING_ONLY": 6, + "INSIDE_VASE_ONLY": 7, + "RECTANGLE_ONLY": 8, + "WINDOW_SMALLROUNDTOP": 9, + "WINDOW_TALLROUNDTOP": 10, + "WINDOW_TALLSQUARETOP": 11, + "WINDOW_STANDARD": 12, + "WINDOW_LARGE": 13, + "DOOR_SINGLEROUNDTOP": 14, + "DOOR_SINGLESQUARETOP": 15, + "DOOR_DOUBLEROUNDTOP": 16, + "DOOR_DOUBLESQUARETOP": 17, + "GARDEN_ONLY": 18, + "ENCHANTED_GARDEN_ONLY": 19, + "ENRICHED_GARDEN_ONLY": 20, + "WALL_EDGE": 21, + "__DEFAULT": "NO_RESTRICTIONS" + } }, - "m_expireTime": { - "type": "unsigned int", + "m_supportSurface": { + "type": "bool", "id": 3, "offset": 84, - "flags": 55, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1836304873 + "hash": 1804627449, + "enum_options": { + "__DEFAULT": 0 + } }, - "m_points": { - "type": "float", + "m_position": { + "type": "class Vector3D", "id": 4, "offset": 88, - "flags": 55, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 927927476 - }, - "m_metadata": { - "type": "std::string", - "id": 5, - "offset": 96, - "flags": 55, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2383271932 + "hash": 3697900983 } } }, - "1649312529": { - "name": "class AvatarAppearanceRule*", + "532956719": { + "name": "class SharedPointer", "bases": [ - "AvatarItemInfo", - "AvatarItemInfoBase", + "PetTalentControlBase", + "Window", "PropertyClass" ], - "hash": 1649312529, + "hash": 532956719, "properties": { - "m_partName": { + "m_sName": { "type": "std::string", "id": 0, - "offset": 72, - "flags": 7, + "offset": 80, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2609631923 + "hash": 2306437263 }, - "m_slotName": { - "type": "std::string", + "m_Children": { + "type": "class SharedPointer", "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, + "offset": 112, + "flags": 65667, + "container": "Vector", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 2819781566 + "pointer": true, + "hash": 2621225959 }, - "m_flags": { - "type": "std::string", + "m_Style": { + "type": "unsigned int", "id": 2, - "offset": 144, - "flags": 7, - "container": "List", - "dynamic": true, + "offset": 152, + "flags": 1048583, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 2292098216 + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "SCALE_CHILDREN": 2, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "FOCUS_LOCKED": 64, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152 + } }, - "m_options": { - "type": "class SharedPointer", + "m_Flags": { + "type": "unsigned int", "id": 3, - "offset": 160, - "flags": 7, - "container": "List", - "dynamic": true, + "offset": 156, + "flags": 1048583, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2499357824 + "pointer": false, + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } }, - "m_textureOptions": { - "type": "class SharedPointer", + "m_Window": { + "type": "class Rect", "id": 4, - "offset": 176, - "flags": 7, - "container": "List", - "dynamic": true, + "offset": 160, + "flags": 135, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2667548348 + "pointer": false, + "hash": 3105139380 }, - "m_defaultOption": { - "type": "class SharedPointer", + "m_fTargetAlpha": { + "type": "float", "id": 5, - "offset": 192, - "flags": 7, + "offset": 212, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2436336754 + "pointer": false, + "hash": 1809129834 }, - "m_defaultTextureOption": { - "type": "class SharedPointer", + "m_fDisabledAlpha": { + "type": "float", "id": 6, + "offset": 216, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1389987675 + }, + "m_fAlpha": { + "type": "float", + "id": 7, "offset": 208, - "flags": 7, + "flags": 65671, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 482130755 + }, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": true, - "hash": 2712636654 - } - } - }, - "83871325": { - "name": "class WinAnimScaleSymmetrical", - "bases": [ - "WindowAnimation", - "PropertyClass" - ], - "hash": 83871325, - "properties": { - "m_bUseDeepCopy": { - "type": "bool", - "id": 0, - "offset": 72, + "hash": 3623628394 + }, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2102211316 + }, + "m_sScript": { + "type": "std::string", + "id": 10, + "offset": 352, "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 433380635 + "hash": 1846695875 }, - "m_scale": { - "type": "float", - "id": 1, - "offset": 80, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 899693439 + "hash": 3389835433 + }, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547159940 + }, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513510520 + }, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3091503757 } } }, - "877441123": { - "name": "class ReqHasMorphSlot", + "1812723997": { + "name": "class MoveCommandSteered*", "bases": [ - "Requirement", + "MoveController::MoveCommand", "PropertyClass" ], - "hash": 877441123, + "hash": 1812723997, "properties": { - "m_applyNOT": { - "type": "bool", + "m_vTarget": { + "type": "class Vector3D", "id": 0, - "offset": 72, + "offset": 88, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1746328074, - "enum_options": { - "__DEFAULT": 0 - } + "hash": 3770499167 }, - "m_operator": { - "type": "enum Requirement::Operator", + "m_kState": { + "type": "enum MoveState", "id": 1, - "offset": 76, + "offset": 100, "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2672792317, + "hash": 677163988, "enum_options": { - "ROP_AND": 0, - "ROP_OR": 1, - "__DEFAULT": "ROP_AND" + "MS_WALKING": 0, + "MS_RUNNING": 1, + "MS_SWIMMING": 2, + "MS_FLYING": 3 } } } }, - "483122784": { - "name": "enum MassShapeTemplate::MassShape", - "bases": [], - "hash": 483122784, - "properties": {} - }, - "1227463801": { - "name": "class SpeedEffect", + "967376213": { + "name": "class FXBySlotEffectTemplate*", "bases": [ - "GameEffectBase", + "GameEffectTemplate", "PropertyClass" ], - "hash": 1227463801, + "hash": 967376213, "properties": { - "m_currentTickCount": { - "type": "double", + "m_effectName": { + "type": "std::string", "id": 0, - "offset": 80, - "flags": 63, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2533274692 + "hash": 2029161513 }, - "m_effectNameID": { - "type": "unsigned int", + "m_effectCategory": { + "type": "std::string", "id": 1, - "offset": 96, - "flags": 63, + "offset": 104, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1204067144 + "hash": 1852673222 }, - "m_bIsOnPet": { - "type": "bool", + "m_sortOrder": { + "type": "int", "id": 2, - "offset": 73, - "flags": 31, + "offset": 148, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 522593303 + "hash": 1411218206 }, - "m_originatorID": { - "type": "gid", + "m_duration": { + "type": "double", "id": 3, - "offset": 104, - "flags": 39, + "offset": 192, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1131810019 + "hash": 2727932435 }, - "m_itemSlotID": { - "type": "unsigned int", + "m_stackingCategories": { + "type": "std::string", "id": 4, - "offset": 112, - "flags": 63, - "container": "Static", - "dynamic": false, + "offset": 160, + "flags": 7, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 1895747595 + "hash": 1774497525 }, - "m_internalID": { - "type": "int", + "m_isPersistent": { + "type": "bool", "id": 5, - "offset": 92, - "flags": 63, + "offset": 153, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1643137924 + "hash": 923861920 }, - "m_endTime": { - "type": "unsigned int", + "m_bIsOnPet": { + "type": "bool", "id": 6, - "offset": 88, - "flags": 31, + "offset": 154, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 716479635 + "hash": 522593303 }, - "m_speedMultiplier": { - "type": "int", + "m_isPublic": { + "type": "bool", "id": 7, - "offset": 128, - "flags": 31, + "offset": 152, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 32503058 - } - } - }, - "1649992222": { - "name": "class SharedPointer", - "bases": [ - "RenderBehavior", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1649992222, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, + "hash": 1728439822 + }, + "m_visualEffectAddName": { + "type": "std::string", + "id": 8, + "offset": 200, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3382086694 + }, + "m_visualEffectRemoveName": { + "type": "std::string", + "id": 9, + "offset": 232, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1541697323 + }, + "m_onAddFunctorName": { + "type": "std::string", + "id": 10, + "offset": 280, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1561843107 + }, + "m_onRemoveFunctorName": { + "type": "std::string", + "id": 11, + "offset": 312, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2559017864 + }, + "m_stackingRule": { + "type": "enum STACKING_RULE", + "id": 12, + "offset": 144, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 223437287 + "pointer": false, + "hash": 431568889, + "enum_options": { + "STACKING_ALLOWED": 0, + "STACKING_NOSTACK": 1, + "STACKING_REPLACE": 2 + } + }, + "m_fxList": { + "type": "class SharedPointer", + "id": 13, + "offset": 360, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 549626493 } } }, - "88283298": { - "name": "class ActorDialogEntry", + "967335253": { + "name": "class FXBySlotEffectTemplate", "bases": [ + "GameEffectTemplate", "PropertyClass" ], - "hash": 88283298, + "hash": 967335253, "properties": { - "m_requirements": { - "type": "class SharedPointer", + "m_effectName": { + "type": "std::string", "id": 0, "offset": 72, - "flags": 263, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3043523229 + "pointer": false, + "hash": 2029161513 }, - "m_dialog": { + "m_effectCategory": { "type": "std::string", "id": 1, - "offset": 88, - "flags": 8388639, + "offset": 104, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1858395851 + "hash": 1852673222 }, - "m_picture": { - "type": "std::string", + "m_sortOrder": { + "type": "int", "id": 2, - "offset": 120, - "flags": 131103, + "offset": 148, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3128322903 + "hash": 1411218206 }, - "m_soundFile": { - "type": "std::string", + "m_duration": { + "type": "double", "id": 3, - "offset": 152, - "flags": 131103, + "offset": 192, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2276870852 + "hash": 2727932435 }, - "m_action": { + "m_stackingCategories": { "type": "std::string", "id": 4, - "offset": 184, - "flags": 31, - "container": "Static", - "dynamic": false, + "offset": 160, + "flags": 7, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 1734553689 + "hash": 1774497525 }, - "m_dialogEvent": { - "type": "std::string", + "m_isPersistent": { + "type": "bool", "id": 5, - "offset": 216, - "flags": 31, + "offset": 153, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2707957549 + "hash": 923861920 }, - "m_actorTemplateID": { - "type": "unsigned int", + "m_bIsOnPet": { + "type": "bool", "id": 6, - "offset": 248, - "flags": 33554463, + "offset": 154, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2134265679 + "hash": 522593303 }, - "m_cameraName": { - "type": "std::string", + "m_isPublic": { + "type": "bool", "id": 7, - "offset": 256, - "flags": 31, + "offset": 152, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3252786917 + "hash": 1728439822 }, - "m_interpolationDuration": { - "type": "float", + "m_visualEffectAddName": { + "type": "std::string", "id": 8, - "offset": 312, - "flags": 31, + "offset": 200, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1458058437, - "enum_options": { - "__DEFAULT": "1.0" - } + "hash": 3382086694 }, - "m_cameraOffsetX": { - "type": "float", + "m_visualEffectRemoveName": { + "type": "std::string", "id": 9, - "offset": 288, - "flags": 31, + "offset": 232, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1515912895 + "hash": 1541697323 }, - "m_cameraOffsetY": { - "type": "float", + "m_onAddFunctorName": { + "type": "std::string", "id": 10, - "offset": 292, - "flags": 31, + "offset": 280, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1515912896 + "hash": 1561843107 }, - "m_cameraOffsetZ": { - "type": "float", + "m_onRemoveFunctorName": { + "type": "std::string", "id": 11, - "offset": 296, - "flags": 31, + "offset": 312, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1515912897 + "hash": 2559017864 }, - "m_pitch": { - "type": "float", + "m_stackingRule": { + "type": "enum STACKING_RULE", "id": 12, - "offset": 304, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 896371695 - }, - "m_yaw": { - "type": "float", - "id": 13, - "offset": 300, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 357256328 - }, - "m_roll": { - "type": "float", - "id": 14, - "offset": 308, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 310020272 - }, - "m_cameraShakeType": { - "type": "std::string", - "id": 15, - "offset": 320, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1754128882, - "enum_options": { - "": 0, - "Constant": "Constant", - "Quake": "Quake", - "Thud": "Thud", - "End": "End", - "__DEFAULT": 0 - } - }, - "m_cameraShakeDuration": { - "type": "float", - "id": 16, - "offset": 352, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 316581010, - "enum_options": { - "__DEFAULT": "0.0" - } - }, - "m_cameraShakeAmplitude": { - "type": "float", - "id": 17, - "offset": 356, - "flags": 31, + "offset": 144, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2179718321, + "hash": 431568889, "enum_options": { - "__DEFAULT": "0.0" + "STACKING_ALLOWED": 0, + "STACKING_NOSTACK": 1, + "STACKING_REPLACE": 2 } }, - "m_bypassCameraOnReview": { - "type": "bool", - "id": 18, + "m_fxList": { + "type": "class SharedPointer", + "id": 13, "offset": 360, - "flags": 31, - "container": "Static", - "dynamic": false, + "flags": 7, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 1412905725, - "enum_options": { - "__DEFAULT": 1 - } - }, - "m_cameraZoneName": { + "pointer": true, + "hash": 549626493 + } + } + }, + "1380906622": { + "name": "class ActCinematicStageTemplate*", + "bases": [ + "CinematicStageTemplate", + "PropertyClass" + ], + "hash": 1380906622, + "properties": { + "m_name": { "type": "std::string", - "id": 19, - "offset": 368, - "flags": 287, + "id": 0, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3131581121 + "hash": 1717359772 }, "m_duration": { "type": "float", - "id": 20, - "offset": 400, - "flags": 31, + "id": 1, + "offset": 104, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, "hash": 920323453 }, - "m_delay": { - "type": "float", - "id": 21, - "offset": 404, - "flags": 287, - "container": "Static", - "dynamic": false, + "m_actions": { + "type": "class SharedPointer", + "id": 2, + "offset": 112, + "flags": 7, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 881988134 + "pointer": true, + "hash": 1380578687 }, - "m_cameraHidePlayers": { - "type": "int", - "id": 22, - "offset": 408, - "flags": 287, - "container": "Static", - "dynamic": false, + "m_stageRelationships": { + "type": "class SharedPointer", + "id": 3, + "offset": 128, + "flags": 7, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 28533149 + "pointer": true, + "hash": 499983354 }, - "m_walkAwayNpcTemplateID": { - "type": "gid", - "id": 23, - "offset": 416, - "flags": 33554719, - "container": "Static", - "dynamic": false, + "m_cameras": { + "type": "std::string", + "id": 4, + "offset": 152, + "flags": 131079, + "container": "Vector", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 942697507 + "hash": 3217341687 }, - "m_walkAwayExitDirectionInDegrees": { - "type": "float", - "id": 24, - "offset": 424, - "flags": 287, - "container": "Static", - "dynamic": false, + "m_altcameras": { + "type": "std::string", + "id": 5, + "offset": 176, + "flags": 131079, + "container": "Vector", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 396419785 + "hash": 1882980152 }, - "m_walkAwayFadeTime": { - "type": "float", - "id": 25, - "offset": 428, - "flags": 287, + "m_actAnim": { + "type": "std::string", + "id": 6, + "offset": 200, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 822405687 + "hash": 2867163800 }, - "m_walkAwayUseCurrentFacing": { - "type": "bool", - "id": 26, - "offset": 432, - "flags": 287, + "m_camRel": { + "type": "enum CameraCutCinematicAction::kCameraRelative", + "id": 7, + "offset": 232, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1464855436 + "hash": 919962138, + "enum_options": { + "kSigil": 1, + "kTarget": 2, + "kSource": 3, + "kActor": 4, + "__DEFAULT": "kTarget" + } }, - "m_standInPlayerTag": { + "m_sound": { "type": "std::string", - "id": 27, - "offset": 440, - "flags": 287, + "id": 8, + "offset": 240, + "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1590121141 + "hash": 2307644996 }, - "m_fadeOutCamera": { - "type": "bool", - "id": 28, - "offset": 472, - "flags": 287, + "m_interpDuration": { + "type": "float", + "id": 9, + "offset": 272, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1766121252 + "hash": 2237711951, + "enum_options": { + "__DEFAULT": "1.0" + } }, - "m_snapCameraToPlayerAtExit": { + "m_announcesSpell": { "type": "bool", - "id": 29, - "offset": 473, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1323369645 - }, - "m_secondaryCameraName": { - "type": "std::string", - "id": 30, - "offset": 480, - "flags": 287, + "id": 10, + "offset": 276, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1670705581 - }, - "m_secondaryInterpolationDuration": { - "type": "float", - "id": 31, - "offset": 512, - "flags": 287, + "hash": 652261533 + } + } + }, + "533694498": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 533694498, + "properties": {} + }, + "1378671505": { + "name": "class SharedPointer", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1378671505, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1873822349 + "hash": 223437287 }, - "m_npcStandInList": { - "type": "std::string", - "id": 32, - "offset": 520, - "flags": 287, + "m_itemList": { + "type": "class SharedPointer", + "id": 1, + "offset": 120, + "flags": 27, "container": "List", "dynamic": true, "singleton": false, - "pointer": false, - "hash": 2076308937 + "pointer": true, + "hash": 1983655699 }, - "m_dialogAnimationList": { - "type": "std::string", - "id": 33, - "offset": 536, - "flags": 287, + "m_slotList": { + "type": "class SharedPointer", + "id": 2, + "offset": 136, + "flags": 27, "container": "List", "dynamic": true, "singleton": false, - "pointer": false, - "hash": 2444806919 + "pointer": true, + "hash": 3213026923 }, - "m_dialogTurningList": { - "type": "std::string", - "id": 34, - "offset": 552, - "flags": 287, + "m_publicItemList": { + "type": "class SharedPointer", + "id": 3, + "offset": 152, + "flags": 31, "container": "List", "dynamic": true, "singleton": false, - "pointer": false, - "hash": 2782869422 - }, - "m_npcYawOffsetInDegrees": { - "type": "float", - "id": 35, - "offset": 568, - "flags": 287, + "pointer": true, + "hash": 1693467991 + } + } + }, + "1966410406": { + "name": "class MadlibArg*", + "bases": [ + "PropertyClass" + ], + "hash": 1966410406, + "properties": { + "m_madlibToken": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1395075270 - }, - "m_allowPlayerToMove": { - "type": "bool", - "id": 36, - "offset": 572, - "flags": 287, + "hash": 3058682373 + } + } + }, + "1377797262": { + "name": "class InitialCombatSoundsList", + "bases": [ + "PropertyClass" + ], + "hash": 1377797262, + "properties": { + "m_initialCombatSoundsList": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1746599966 + } + } + }, + "533865576": { + "name": "class SharedPointer", + "bases": [ + "WindowStyle", + "PropertyClass" + ], + "hash": 533865576, + "properties": { + "m_pBackMaterial": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 225101337 + "pointer": true, + "hash": 1628562023 }, - "m_soundEffectFile": { - "type": "std::string", - "id": 37, - "offset": 576, - "flags": 287, + "m_pFont": { + "type": "class SharedPointer", + "id": 1, + "offset": 88, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 3235157265 + "pointer": true, + "hash": 1067686307 }, - "m_musicFile": { - "type": "std::string", - "id": 38, - "offset": 608, - "flags": 287, + "m_pLargeFont": { + "type": "class SharedPointer", + "id": 2, + "offset": 104, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 2963686620 + "pointer": true, + "hash": 1523900782 }, - "m_nonStackableMusic": { - "type": "bool", - "id": 39, - "offset": 640, - "flags": 287, + "m_pSmallFont": { + "type": "class SharedPointer", + "id": 3, + "offset": 120, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1675595625 + "pointer": true, + "hash": 2363252956 }, - "m_nonRepeatableMusic": { - "type": "bool", - "id": 40, - "offset": 641, - "flags": 287, + "m_Color": { + "type": "class Color", + "id": 4, + "offset": 136, + "flags": 262279, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2138315572 + "hash": 1753714077 }, - "m_playMusicAtSFXVolume": { - "type": "bool", - "id": 41, - "offset": 642, - "flags": 287, + "m_HighColor": { + "type": "class Color", + "id": 5, + "offset": 140, + "flags": 262279, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2130871816 + "hash": 2310527421 }, - "m_soundEffectDelay": { - "type": "float", - "id": 42, - "offset": 644, - "flags": 287, + "m_SelectColor": { + "type": "class Color", + "id": 6, + "offset": 144, + "flags": 262279, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1586382460 + "hash": 2792529213 }, - "m_musicDelay": { - "type": "float", - "id": 43, - "offset": 648, - "flags": 287, + "m_BorderColor": { + "type": "class Color", + "id": 7, + "offset": 148, + "flags": 262279, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1217785767 + "hash": 1470576795 }, - "m_musicFadeTime": { - "type": "float", - "id": 44, - "offset": 652, - "flags": 287, + "m_BackColor": { + "type": "class Color", + "id": 8, + "offset": 152, + "flags": 262279, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 502925015 + "hash": 1070928782 }, - "m_dontReleaseCameraAtExit": { - "type": "bool", - "id": 45, - "offset": 474, - "flags": 287, + "m_ScrollBarColor": { + "type": "class Color", + "id": 9, + "offset": 156, + "flags": 262279, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1107508961 + "hash": 1180747361 }, - "m_disableBackButton": { - "type": "bool", - "id": 46, - "offset": 656, - "flags": 287, + "m_ScrollTabColor": { + "type": "class Color", + "id": 10, + "offset": 160, + "flags": 262279, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 122355444 + "hash": 1034892323 }, - "m_enableExitButton": { - "type": "bool", - "id": 47, - "offset": 657, - "flags": 287, + "m_nBorderSize": { + "type": "int", + "id": 11, + "offset": 164, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1824693936 + "hash": 2016376897 }, - "m_cameraFadeType": { - "type": "std::string", - "id": 48, - "offset": 664, - "flags": 287, + "m_nScrollSize": { + "type": "int", + "id": 12, + "offset": 168, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2021935382, - "enum_options": { - "": 0, - "In Out Black": "In Out Black", - "In Out White": "In Out White", - "In Black": "In Black", - "Out Black": "Out Black", - "In White": "In White", - "Out White": "Out White", - "__DEFAULT": 0 - } + "hash": 632681746 }, - "m_cameraFadeTime": { - "type": "float", - "id": 49, - "offset": 696, - "flags": 287, + "m_sHoverSound": { + "type": "std::string", + "id": 13, + "offset": 176, + "flags": 131207, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 614419391, - "enum_options": { - "__DEFAULT": "0.5" - } + "hash": 2662773595 }, - "m_idleAnimation": { + "m_sSelectSound": { "type": "std::string", - "id": 50, - "offset": 704, - "flags": 31, + "id": 14, + "offset": 208, + "flags": 131207, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2900487193 + "hash": 2596786807 }, - "m_spamTime": { - "type": "float", - "id": 51, - "offset": 736, - "flags": 287, + "m_pVMiddle": { + "type": "class SharedPointer", + "id": 15, + "offset": 248, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1727215063, - "enum_options": { - "__DEFAULT": "1.0" - } + "pointer": true, + "hash": 1896076876 }, - "m_playSoundIfSpamming": { - "type": "bool", - "id": 52, - "offset": 740, - "flags": 287, + "m_pVSliderTop": { + "type": "class SharedPointer", + "id": 16, + "offset": 264, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 690006749, - "enum_options": { - "__DEFAULT": 1 - } + "pointer": true, + "hash": 1590678131 }, - "m_playMusicIfSpamming": { - "type": "bool", - "id": 53, - "offset": 741, - "flags": 287, + "m_pVSliderMiddle": { + "type": "class SharedPointer", + "id": 17, + "offset": 280, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 538564341, - "enum_options": { - "__DEFAULT": 1 - } + "pointer": true, + "hash": 1981605647 }, - "m_stopMusicFadeTime": { - "type": "float", - "id": 54, - "offset": 744, - "flags": 287, + "m_pVSliderBottom": { + "type": "class SharedPointer", + "id": 18, + "offset": 296, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 696390845, - "enum_options": { - "__DEFAULT": "0.0" - } + "pointer": true, + "hash": 1558824373 }, - "m_restartMusicFadeTime": { - "type": "float", - "id": 55, - "offset": 748, - "flags": 287, + "m_pVUpButton": { + "type": "class SharedPointer", + "id": 19, + "offset": 312, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 709379292, - "enum_options": { - "__DEFAULT": "0.0" - } + "pointer": true, + "hash": 3584564972 }, - "m_meetsRequirements": { - "type": "bool", - "id": 56, - "offset": 752, - "flags": 31, + "m_pVDownButton": { + "type": "class SharedPointer", + "id": 20, + "offset": 328, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 296443061 + "pointer": true, + "hash": 2411725119 }, - "m_secondaryCameraInitalDelay": { - "type": "float", - "id": 57, - "offset": 516, - "flags": 287, + "m_pHLeftArrow": { + "type": "class SharedPointer", + "id": 21, + "offset": 344, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1812842232 + "pointer": true, + "hash": 3168852677 }, - "m_displayButtonsOnTimedDialog": { - "type": "bool", - "id": 58, - "offset": 753, - "flags": 287, + "m_pHRightArrow": { + "type": "class SharedPointer", + "id": 22, + "offset": 360, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 569741400 - } - } - }, - "86085741": { - "name": "class CrownServicesOption", - "bases": [ - "ServiceOptionBase", - "PropertyClass" - ], - "hash": 86085741, - "properties": { - "m_serviceName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, + "pointer": true, + "hash": 1981350104 + }, + "m_pHMiddle": { + "type": "class SharedPointer", + "id": 23, + "offset": 376, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 2206028813 + "pointer": true, + "hash": 3142878142 }, - "m_iconKey": { - "type": "std::string", - "id": 1, - "offset": 168, - "flags": 31, + "m_pHSliderLeft": { + "type": "class SharedPointer", + "id": 24, + "offset": 392, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 2457138637 + "pointer": true, + "hash": 1553456157 }, - "m_displayKey": { - "type": "std::string", - "id": 2, - "offset": 104, - "flags": 31, + "m_pHSliderMiddle": { + "type": "class SharedPointer", + "id": 25, + "offset": 408, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 3023276954 + "pointer": true, + "hash": 2666160641 }, - "m_serviceIndex": { - "type": "unsigned int", - "id": 3, - "offset": 204, - "flags": 31, + "m_pHSliderRight": { + "type": "class SharedPointer", + "id": 26, + "offset": 424, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 2103126710 + "pointer": true, + "hash": 1592154800 }, - "m_forceInteract": { - "type": "bool", - "id": 4, - "offset": 200, - "flags": 31, + "m_nScrollButtonDelta": { + "type": "int", + "id": 27, + "offset": 240, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1705789564 + "hash": 1455137917 } } }, - "877885313": { - "name": "class ScrollButton", + "1897898588": { + "name": "double", + "bases": [], + "hash": 1897898588, + "properties": {} + }, + "968691156": { + "name": "class SharedPointer", "bases": [ - "ControlPopupButton", - "ControlButton", + "WindowLayout", "Window", "PropertyClass" ], - "hash": 877885313, + "hash": 968691156, "properties": { "m_sName": { "type": "std::string", @@ -635520,10 +587906,14 @@ "AUTO_GROW": 16384, "AUTO_SHRINK": 32768, "AUTO_RESIZE": 49152, - "POPDOWN_SIBLINGS": 67108864, - "DISABLE_CHILDREN": 134217728, - "HIDE_SIBLINGS": 268435456, - "POPUP_ON_HOVER": 536870912 + "H_CENTER": 16777216, + "H_RIGHT": 33554432, + "V_CENTER": 2147483648, + "V_BOTTOM": 67108864, + "SORT": 536870912, + "LAYOUT_VERT": 1073741824, + "LAYOUT_REVERSE": 2147483648, + "DO_NOT_WRAP": 134217728 } }, "m_Flags": { @@ -635618,2074 +588008,6510 @@ "pointer": false, "hash": 2102211316 }, - "m_sScript": { + "m_sScript": { + "type": "std::string", + "id": 10, + "offset": 352, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1846695875 + }, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3389835433 + }, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547159940 + }, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513510520 + }, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3091503757 + }, + "m_nHSpacing": { + "type": "int", + "id": 16, + "offset": 584, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 893611957 + }, + "m_nVSpacing": { + "type": "int", + "id": 17, + "offset": 588, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 551359491 + } + } + }, + "1849063507": { + "name": "class std::basic_string,class std::allocator >", + "bases": [], + "hash": 1849063507, + "properties": {} + }, + "968235387": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 968235387, + "properties": { + "m_lootTypeMaxes": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 3636229967 + }, + "m_templateID": { + "type": "unsigned int", + "id": 1, + "offset": 88, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1286746870 + } + } + }, + "1378328752": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1378328752, + "properties": { + "m_entryList": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 619674006 + }, + "m_numberOfGames": { + "type": "int", + "id": 1, + "offset": 88, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1220956901 + } + } + }, + "1835661928": { + "name": "class SharedPointer", + "bases": [ + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 1835661928, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + }, + "m_backlashEffect": { + "type": "std::string", + "id": 2, + "offset": 120, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3051687009 + } + } + }, + "535318572": { + "name": "class AdvPvPLeagueAwardInfo", + "bases": [ + "PropertyClass" + ], + "hash": 535318572, + "properties": { + "m_leagueType": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3327951024 + }, + "m_awardInfo": { + "type": "class SharedPointer", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2862912855 + } + } + }, + "1823883939": { + "name": "class JewelSocket*", + "bases": [ + "PropertyClass" + ], + "hash": 1823883939, + "properties": { + "m_socketType": { + "type": "enum JewelSocket::JewelSocketType", + "id": 0, + "offset": 72, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3989417709, + "enum_options": { + "SOCKETTYPE_SQUARE": 0, + "SOCKETTYPE_CIRCLE": 1, + "SOCKETTYPE_TRIANGLE": 2, + "SOCKETTYPE_TEAR": 3, + "SOCKETTYPE_PET": 4, + "SOCKETTYPE_PINSQUAREPIP": 5, + "SOCKETTYPE_PINSQUARESHIELD": 6, + "SOCKETTYPE_PINSQUARESWORD": 7 + } + }, + "m_bLockable": { + "type": "bool", + "id": 1, + "offset": 76, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1046128242 + } + } + }, + "534109625": { + "name": "class ClientWizPlayerNameBehavior*", + "bases": [ + "NameOverrideBehavior", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 534109625, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_wsNameOverride": { + "type": "std::wstring", + "id": 1, + "offset": 120, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2131249091 + }, + "m_nameKeys": { + "type": "unsigned int", + "id": 2, + "offset": 352, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1772225898 + }, + "m_useRank": { + "type": "bool", + "id": 3, + "offset": 356, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2040475372 + }, + "m_eGender": { + "type": "enum eGender", + "id": 4, + "offset": 432, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2776344943, + "enum_options": { + "Male": 1, + "Female": 0, + "Neutral": 2 + } + }, + "m_eRace": { + "type": "enum eRace", + "id": 5, + "offset": 436, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 963057554, + "enum_options": { + "Bat": 88066, + "BatLightning": 1472842576, + "Boar": 2624962, + "CatThug": 1855674386, + "ChristmasElf": 819908552, + "ChristmasSnowman": 1146515225, + "Colossus_Ice": 1063279538, + "Cyclops": 1691813655, + "DragonBeta": 417003588, + "DragonFriendly": 69049013, + "EvilSnowman": 1579630926, + "FireElf": 443793687, + "Firecat": 2045525741, + "Frog": 2274918, + "FrostBeetle": 7692383, + "GhostBlue": 1097396892, + "GhostGreen": 882822629, + "GhostRed": 560510742, + "GhostYellow": 909974358, + "Ghoul": 82556199, + "GoatMonk": 486215564, + "GolemBrass": 1057388325, + "GolemClockwork": 1143380031, + "GolemSteel": 1660583674, + "GolemWood": 1426849876, + "HalloweenCat": 1042869199, + "Heckhound": 626736403, + "Helephant": 719065368, + "Human": 79806088, + "Hydra": 70785800, + "Imp": 84361, + "Krokomummy": 555755242, + "Kroktut": 1352354178, + "Leprechaun": 2106466410, + "LeprechaunPattyDay": 380507781, + "LightningBat": 228257682, + "Mannequin": 428442544, + "Minotaur": 949570680, + "Mount_Broom": 94637995, + "Mount_Cat": 1150940211, + "Mount_Dragon": 1565720148, + "Mount_Horse": 2054712767, + "Mount_PlayerWings": 589829552, + "Nikkos": 1563122418, + "NinjaPig": 607400740, + "Orthus": 1552590225, + "Piggle": 1897753328, + "Piggle_Valentine": 687697592, + "Piggle_ValentinePart2": 1760391091, + "Pixie": 74836240, + "RatMagician": 885542120, + "SalamanderFire": 48480175, + "SalamanderIce": 2011152164, + "SalamanderStorm": 600331072, + "Satyr": 84793363, + "Scarab": 2143810477, + "Sheep": 86220083, + "SkeletonArmored": 1791586239, + "SnowSerpent": 138621543, + "Spider": 1603064269, + "SpiderBlack": 559353179, + "SpiderBrown": 557941675, + "SpiderCrystal": 2119625297, + "SpiderGolem": 1632616514, + "Sprite": 1889156557, + "SpriteDark": 1888685518, + "Stormzilla": 252684095, + "SunBird": 1602211198, + "Transformation_ArmoredSkeleton": 1861349834, + "Transformation_CatThug": 1175387611, + "Transformation_Cat_Bandit": 1012395694, + "Transformation_ClockworkGolem": 601121214, + "Transformation_Cyclops": 620156297, + "Transformation_DarkFairy": 1206757203, + "Transformation_DraconianSorcerer": 1212016810, + "Transformation_Draconian": 450730089, + "Transformation_EarthColossus": 140119452, + "Transformation_EvilSnowman": 1497097122, + "Transformation_FatGobbler": 634003800, + "Transformation_FireElemental": 822233230, + "Transformation_FireElf": 46585468, + "Transformation_FireSalamander": 2118418114, + "Transformation_Gobbler_Skinny": 162365207, + "Transformation_GolemSteel": 1329184184, + "Transformation_Ice_Colossus": 430406408, + "Transformation_Krokomummy": 1644615769, + "Transformation_MagmaMan": 545064542, + "Transformation_Mander": 88998828, + "Transformation_NinjaPig": 1029132174, + "Transformation_Ninja_Pig_04": 7093548, + "Transformation_RatThug": 1175352795, + "Transformation_RavenMystic": 1443197359, + "Transformation_StormElemental": 637088511, + "Transformation_Treant": 1874998327, + "Transformation_WarPig": 691088645, + "Transformation_WolfScout": 263523463, + "Transformation_WolfWarrior": 6092463, + "Transformationn_SkeletonPirate": 1821341863, + "Treant": 1396597132, + "Troll": 82261620, + "Unicorn": 550546918, + "Unknown": 718677478, + "Wolverine": 528843083, + "Wraith": 1788506505, + "Wyrmkin": 379044612, + "Transformation_CyrusDrake": 94277831, + "PetEgg": 1973167984, + "GhostLady": 493415959, + "Banshee": 827805677, + "GobblerRed": 250135875, + "Ghoul_Gravedigger": 161812468, + "SkeletonWarrior": 734585814, + "BansheeBoss": 806445565, + "Seraph": 1792950125, + "CrabKing": 277875784, + "UndeadCaster": 1680689397, + "DragonFrontier": 1829438301, + "HeckhoundGhost": 872406464, + "Mount_Unicorn": 212699468, + "Jellyfish": 910724608, + "SeaDragon": 1194541306, + "Turtle": 1897184620, + "Starfish": 1447562471, + "SpinyFish": 162948281, + "Mount_Gryphon": 2110522960, + "Mount_Shark": 1170186623, + "Mount_Manta": 979931598, + "Mount_Seahorse": 1554833818, + "Mount_Seahorse_Tough": 1245859453, + "Mount_Koi": 1150937409, + "Mount_Lobster": 2025618875, + "Mount_Turtle": 1490849128, + "VenusFlyTrap": 1612039757, + "GDN_MED_BabyCarrots": 327334743, + "GDN_SM_BoomShroom": 31324632, + "GDN_SM_Dandelion": 2058674142, + "GDN_SM_Disparagus": 1732989489, + "GDN_MED_EvilSnowPeas": 747408607, + "GDN_SM_FicklePickle": 205381955, + "GDN_SM_HappyHolidaisy": 1736236340, + "GDN_MED_HelephantEars": 1803669659, + "GDN_MED_HoneySickle": 424149132, + "GDN_LG_NinjaFig": 847338104, + "GDN_LG_SnapDragon": 1076151689, + "GDN_SM_StinkWeed": 845383431, + "GDN_MED_TrumpetVine": 1922690264, + "GDN_MED_VenusFlyTrap": 1560899638, + "GDN_SM_Laughodil": 1278979588, + "GDN_LG_BreadFruitBush": 533042934, + "GDN_MED_PricklyBearCactus": 1236846986, + "GDN_MED_KingParsley": 110148182, + "LeprechaunPatriotic": 414730890, + "SeraphYuletide": 1325846853, + "DragonGhost": 1502126893, + "UnicornNightmare": 604358256, + "EvilSnowmanSandman": 1579432150, + "Colossus_Spirit": 422514215, + "Rock": 2393554, + "GDN_MED_GivingTree": 2047236132, + "Egg": 70853, + "Mount_Carpets": 1602744888, + "Kraken": 1737191829, + "Wyvern": 1727802601, + "Phoenix": 1765559002, + "Judgement": 562901781, + "ForestLord": 1390734923, + "Humongofrog": 1272123051, + "Scarecrow": 41441599, + "Mount_Ram": 77196599, + "BasketSnake": 1835657086, + "Samoorai": 522797493, + "Transformation_RavenWarrior": 701169336, + "PhoenixStorm": 1325268802, + "PhoenixDeath": 1281634042, + "GDN_LG_CouchPotatoes": 879742725, + "GDN_MED_KeyLimes": 811516024, + "Mount_BoneDragon": 1023618313, + "Mount_BigBoneDragon": 1124383680, + "Mount_FairyWings": 1904926612, + "Mount_DragonWings": 755225925, + "Mount_Pegasus": 1621244140, + "GDN_MED_BellPepper": 1710238687, + "GDN_MED_GrapesOfWrath": 1068787103, + "GDN_SM_TigerLily": 1899057048, + "WysteriaPiggle": 49173891, + "Mount_Wyvern": 1658410744, + "Mount_2P_Rhino": 1052779475, + "NightHawk": 358964390, + "Giraffe": 935214826, + "Mount_Hawk": 2070898895, + "Mount_HalloweenNightmare": 726136378, + "GobblerHalloween": 1482399836, + "Leopard": 1606863715, + "Skink": 76950867, + "Mount_Ostrich": 466111322, + "Mount_Crocagator": 1981222087, + "Transformation_Blacktusk-01": 401543565, + "Mount_Hippogriff": 2043817624, + "Transformation_Gorilla-01": 1555853240, + "Transformation_Gorilla-02": 1606184888, + "Mount_Raven": 94983735, + "Mount_Chrismoose": 1822495199, + "Mount_CandyCane": 1148551147, + "Ivy_League": 925492799, + "GDN_MED_Ivy_League": 1630077794, + "Mount_Kirin": 1168691825, + "GDN_SM_Moonflower": 2068754330, + "GDN_MED_BoonTree": 788055729, + "Snowball": 2046118016, + "Foo_Dog": 1549710807, + "ShenlongDragon": 932676736, + "Monkey": 1233866291, + "Wolfhound": 626884686, + "Redcap": 1540319086, + "Raven": 79941650, + "HollowKnight": 1107268274, + "Book": 2405826, + "GDN_MED_AngoraBunnyEars": 1547559854, + "GDN_MED_FortuneCookieTree": 786686214, + "GDN_MED_GooseTree": 809354938, + "GDN_SM_HoneyBeePlant": 1528880373, + "GDN_MED_BambooShoots": 1096708900, + "GDN_SM_Huckleberries": 1937475840, + "Rock_Moustache": 962221287, + "Efreet_Myth": 1834555522, + "Efreet": 1401700123, + "Mammoth": 1395147745, + "Triton": 1730466188, + "Gnome": 74954215, + "BoneDragon": 429245206, + "Basilisk": 1457899086, + "Chimera": 529027789, + "Transformation_GammaTemplate": 1337834518, + "Mount_Camel": 1168198963, + "Mount_RenaissanceWings": 1049782088, + "Bull_Mount": 1713506759, + "Mount_Owl": 1150938242, + "Mount_Alphyn": 487264165, + "Mount_Stag": 1150353823, + "Mount_Auroch": 509865325, + "Mount_Warg": 1150358072, + "StrangeBeast": 511334734, + "Efreet_Ice": 1820009122, + "Efreet_Storm": 1269986674, + "GDN_LG_AlligatorPear": 1293913372, + "Mount_2P_Treant": 928450863, + "Mount_2P_Dragon": 1431637933, + "Mount_Pogo_Stick_WC": 1462849298, + "Mount_Pogo_Stick_MB": 1349603090, + "GDN_LG_MeltingCheese": 1914589015, + "GDN_SM_FishOnAVine": 1734955358, + "GDN_LG_AngelOak": 1539539424, + "GDN_LG_MeltingCheese_Angel": 1254781264, + "SnowyOwl": 1682262138, + "Mount_3P_Hydra": 1207475250, + "WeaselMinstrel": 1541234616, + "MOUNT_Rickshaw": 938282973, + "Transformation_Sherlock-Bones": 509126601, + "Mount_Phoenix": 556355452, + "Toaddle": 597488187, + "Pantera": 528797696, + "WildfireTreant": 673362041, + "StoneTiger": 746336665, + "Blowfish": 1447737334, + "Smith": 78327187, + "FlyingCat": 1254472614, + "RamWarrior": 536916302, + "Ladybug": 1846384669, + "BurlapBoy": 607590898, + "DeerKnight": 560802130, + "Gargoyle": 1227701700, + "Chameleon": 596131510, + "Scorpion": 1462253104, + "GDN_SM_BoiledPeanuts": 544885684, + "GDN_SM_ClockFlower": 676513046, + "GDN_SM_DeadBeets": 650783482, + "GDN_MED_SnowApple": 1916648180, + "Eyecaramba_Violet": 1804780775, + "Eyecaramba_Green": 750346574, + "Eyecaramba_Orange": 687614854, + "Piggle_Grandfather": 131445665, + "Velociraptor": 1042311818, + "Babydactyl": 1180982194, + "Stegosaurus": 476811765, + "Mount_Pegasus_Spectral": 948250730, + "Mount_2P_Scarydactyl": 1808983335, + "Mount_2P_TRex": 1495851852, + "Therizinosaurus": 80337863, + "Runtosaurus": 476200406, + "FrilledLizard": 420993517, + "Mount_Ankylosaurus": 669692274, + "Mount_Triceratops": 1126950204, + "Mount_2P_Glider": 1630365881, + "Transformation_Thunderhorn": 1045262037, + "Transformation_Jaguar": 1080966062, + "Transformation_Pteranadon": 273836142, + "Transformation_ShadowWeaver": 255927111, + "Transformation_EagleWarrior": 1880471875, + "Mount_Falalalallama": 389890123, + "Mount_2P_WinterTreant": 1850265056, + "GDN_LG_MissileToe": 1767792974, + "GDN_MED_PointSetta": 647257205, + "Nutcracker2012": 1598217699, + "Coal2012": 1627852119, + "Mount_Sleigh": 1636615519, + "Mount_Sabertooth": 1613031507, + "Mount_MechanicalWings": 1014917438, + "PiranhaHunter": 686271163, + "Quetzal": 2020925822, + "Mount_Sloth": 1169387359, + "HollowKnightLife": 2114081886, + "BettaFish": 138088968, + "MummyCat": 62372925, + "TrojanHorse": 1725299194, + "WC_Storm_Possessed": 186960228, + "AV_Possessed": 1106693085, + "AZ_Possessed": 1106692701, + "CL_Possessed": 1106692255, + "KT_Possessed": 1106693015, + "MS_Possessed": 1106692977, + "WC_Possessed": 1106692459, + "Mount_2P_Whale": 448824263, + "Mount_2P_Chariot": 88035298, + "Mount_WarBoar": 1159836211, + "Mount_Palanquin": 47587550, + "BearCub": 672664722, + "Transformation_Minotaur": 1454233452, + "DragonGauntlet": 797645257, + "DeathUnicorn": 924144161, + "Flamingo": 1488424911, + "Mount_Gorilla": 1939919432, + "Mount_WarUnicorn": 1361393198, + "GargoyleMyth": 1819685060, + "TikiMan": 16098567, + "Siren": 79937811, + "GoldenRam": 410220227, + "Harpy": 96026632, + "SwordShield": 1668411785, + "ClockworkKnight": 1059948980, + "Mount_MechanicalEagle": 1720948645, + "Mount_Cloud": 1166233435, + "Mount_Surfboard": 1914250039, + "Mount_BetaDragon": 1023653721, + "Mount_BeeWings": 1387988401, + "Vampire": 524731385, + "FrankenBunny": 589797989, + "BumbleBee": 249592226, + "Mount_Dragonfly": 1028843656, + "BronzeGolem": 1320867859, + "TarantulaHawk": 1983939429, + "Mount_Grasshopper": 1852850928, + "FlyingSquirrel": 847551166, + "GDN_MED_Sunion": 1652707634, + "GDN_MED_SwordFern": 548761438, + "GDN_SM_SugarKhrystal": 267539461, + "GDN_SM_SawPalmetto": 1892888046, + "GDN_LG_FacePalm": 2050814140, + "GDN_LG_QueenCrapeMyrtle": 80378450, + "Transformation_ShadowTank": 1304943609, + "Transformation_ShadowHeal": 1254024185, + "Transformation_ShadowDPS": 87276537, + "Mount_Noelephant": 1383672248, + "SaintBernard": 572932242, + "ParkaFox": 2009808189, + "Goose": 75019719, + "Mount_Coconut": 791151432, + "CreepyBeetle": 345594179, + "BabyDragonfly": 1367084335, + "FennecFox": 41315063, + "PP_Leviathan": 833901526, + "PP_SunSerpent": 1062677009, + "PP_LordOfWinter": 960214698, + "PP_Medusa": 867812931, + "PP_Dryad": 147654656, + "PP_AvengingFossil": 315904647, + "PP_Sabertooth": 1799146677, + "Mount_Butterfly": 1283940943, + "Mount_Hare": 2070851023, + "Transformation_MorganthB": 197306990, + "Transformation_MorganthC": 197831278, + "Transformation_MorganthD": 200452718, + "BabyPegasus": 1215000859, + "ArcaneHelp": 1899247549, + "Mount_Vines": 98389624, + "Mount_ArcaneMinecart": 2001270930, + "Hobgoblin": 2133668461, + "Mount_2P_Rowboat": 237071469, + "ForestSpirit": 1178454602, + "Mount_SpiritWolf": 531991076, + "Otter": 84138671, + "OrigamiBird": 550984083, + "DinoSkeletal": 233277835, + "Mount_HarrowingsGreen": 1605746772, + "Mount_HarrowingsBlue": 477152436, + "Mount_HarrowingsPurple": 2092807554, + "RedPanda": 1744233845, + "Ibis": 2665577, + "Corgi": 78823875, + "Mount_Yak": 996545739, + "Mount_FlyingBalance": 436519643, + "Transformation_ShadowMalistaire": 1043814435, + "Transformation_DragonMalistaire": 841867699, + "Mount_Scarab": 1687658791, + "Transformation_MisterHound": 1973578844, + "Mount_BahHumbug": 55114077, + "Skates": 1568993965, + "Moose": 75019725, + "Mount_Gargoyle": 1456663874, + "GDN_MED_VenusFlyTrapEpic": 1594069606, + "Mount_PlayerWingsPink": 19403046, + "GDN_LG_AlligatorPearEpic": 1326804812, + "Pet_Armadillo": 825736847, + "Mount_JoustingDestrierDyeable": 1683448768, + "GDN_MED_VampireCarrots": 871596496, + "GDN_SM_WhiteTigerLilyEpic": 1703271434, + "GDN_LG_NinjaFigEpic": 938504823, + "GDN_LG_SnapDragonEpic": 2071674466, + "GDN_MED_HelephantEarsEpic": 719166107, + "GDN_MED_TrumpetVineEpic": 225854518, + "GDN_SM_DandelionEpic": 728637442, + "GDN_SM_HuckleberriesEpic": 1903258448, + "GDN_MED_SnowAppleEpic": 1231175967, + "GDN_SM_BoomShroomEpic": 981598771, + "GDN_MED_KingParsleyEpic": 2038371004, + "Mount_Raptor": 749695031, + "Pet_Toucan": 581477475, + "Pet_Squirrel": 969881395, + "Mount_WonkyDonkey": 1481657312, + "Mount_HawkPatriotic": 509149743, + "Pet_FrogAssistant": 1945041750, + "Mount_Cat2": 1151054899, + "Mount_Cat2BW": 1603515443, + "Pet_ArmadilloBW": 825733899, + "Pet_FrankieForearms": 1100195857, + "Mount_SolarSabre": 1281093703, + "MNT_MechOstrich": 258667969, + "MNT_BootsBalance": 1799191558, + "MNT_BootsDeath": 1034912971, + "MNT_BootsFire": 606061658, + "MNT_BootsIce": 2142643294, + "MNT_BootsLife": 773751898, + "MNT_BootsMyth": 144792486, + "MNT_BootsStorm": 1525245121, + "Pet_CorgiBirthday": 1951779369, + "OrigamiBirdBDay": 1909935955, + "Pet_FlyingBlackCat": 432111988, + "Mount_Narwhal": 449637834, + "Mount_NightOwl": 1648420845, + "Pet_Penguin": 137342907, + "MNT_PowerGemUnicorn": 411234062, + "Pet_CrystalButterfly": 512136094, + "Mount_BabyMammoth": 185831059, + "MNT_BabaYaga": 564874997, + "Pet_BabySeal": 657606984, + "Pet_BabyYeti": 635847496, + "Transformation_BallerinaBear": 1525333600, + "Mount_StagYuletide": 1508680687, + "Transformation_TitanMedium": 1700742736, + "Transformation_TitanLarge": 718614967, + "Pet_SirenIce": 849851564, + "Mount_FlyingDeath": 1717725588, + "Mount_FlyingFire": 1177216332, + "Mount_FlyingIce": 1238841184, + "Mount_FlyingLife": 433397684, + "Mount_FlyingMyth": 164983572, + "Mount_FlyingStorm": 375872049, + "Dragonling": 1730534849, + "Pet_EggChicken": 952873217, + "HeckhoundGhost_MAW": 893368960, + "Mount_WinterTrain": 751515281, + "Mount_RubberDucky": 1826548479, + "Pet_BansheeSpellwrit": 917979583, + "Pet_SamooraiSpellwrit": 370057597, + "Mount_UnicornAstral": 886914505, + "Guest_Boochbeard": 1958574095, + "Pet_MouseSister": 1267930350, + "Pet_MouseFather": 2010008339, + "Pet_VampireSquirrel": 250588691, + "Mount_CoffinCar": 1387606595, + "Mount_BabyElephant": 2026559639, + "Pet_RoadHog": 601156960, + "Mount_WolfGryphonWings": 543038283, + "MNT_ClockworkSteed": 891371132, + "Mount_Chopper": 1196683136, + "Pet_ButterflyLamb": 527214392, + "Pet_MouseMother": 2012687123, + "Pet_MouseBrother": 1174380856, + "Pet_Cherub": 769208559, + "GDN_SM_Jewel": 1104045832, + "MR_Death_Duncan_Grimwater": 1850289001, + "Mount_DesertRunner": 2049036229, + "Pet_MonkeyMirage": 418612892, + "Pet_ClockworkOwl": 1038482431, + "Pet_NinjaTurtle": 2024540686, + "Mount_Vines_Halloween": 82852149, + "Mount_SwarmBat": 1151836459, + "Mount_2P_NinjaDragon": 1239694057, + "Mount_Gobler": 1820615236, + "Mount_MaryleboneCar": 2027689685, + "JackOLantern": 1016361578, + "Transformation_DjinnCommonA_Balance": 996127128, + "Transformation_MedicineMode": 25960701, + "CactusHopper": 1956293007, + "Transformation_Mimic_ChestGold_A": 414145432, + "Mount_Ghoulture": 1067671195, + "Pet_Macaw": 1087278472, + "Pet_SandWorm": 653200803, + "Transformation_DromelDancer": 1071824116, + "Pet_Bunnies": 695874547, + "Mount_Snowboard": 1914380015, + "Transformation_DrommelDancer": 226294468, + "Mount_Carpet_New": 1618650322, + "Mount_BunnySleigh": 599915427, + "Helephant_Heart": 419161272, + "Mount_Snowboard_Holiday": 876339060, + "Transformation_GhostDog": 646575420, + "Transformation_PrinceGobblestone": 693826496, + "Transformation_Mithraya": 1240010601, + "Transformation_LuskaCharmbeak": 897469730, + "Transformation_YoungCyrusDrake": 15595663, + "Kookaburra": 1069759154, + "BorealisGolemPet": 797488492, + "FlyingEyePet": 505959833, + "StormCloudPet": 548463069, + "BullPet": 1993917801, + "OpossumPet": 284003652, + "GhoulturePet": 939920734, + "StormCloudPetB": 548463001, + "StormCloudPetC": 548463003, + "Guest_LordNightshade": 1221409981, + "BullPetB": 1993917561, + "BullPetC": 1993917553, + "BullPetD": 1993917513, + "Transformation_ShadowCrit": 1392195065, + "Mount_Pennyfarthing": 1551926344, + "Mount_RowboatPirate": 2079208803, + "Mount_IceCube": 1261861595, + "Guest_LostMaiden": 883675592, + "Guest_BoatswainMcGee": 1359750850, + "Guest_ChiefMateMcGurk": 329643845, + "Guest_DoomedBones": 2015643882, + "Guest_SpectreoftheBrocken": 266357448, + "Guest_DrownedKnight": 1100966093, + "Guest_TarntheDrowned": 329540205, + "Guest_DisloyalKnight": 1853240753, + "Guest_NamelessKnight": 1065677876, + "Guest_LambentFire": 489886605, + "Guest_LordoftheBrocken": 1662003371, + "Guest_StormCaiman": 1147500291, + "Guest_GrinningDeathMoon": 737595789, + "Guest_MoonSkullWight": 1720039490, + "Guest_HuemacSpearWreath": 1522021131, + "Guest_HowlingBanshee": 1340855338, + "Guest_Sea-Booter": 1818491983, + "Guest_DeadRover": 1009273257, + "Guest_CelestianRemnant": 1312268448, + "Guest_Shadow-WebConscript": 1500529411, + "Guest_Shadow-WebMercenary": 623672171, + "Guest_Shadow-WebWraith": 810956416, + "Guest_Shadow-WebHaunt": 500586883, + "Guest_CelestianPartisan": 633346892, + "Guest_CelestianDefender": 482102727, + "Guest_ThraleBonestriker": 1172972733, + "Guest_VorgenSoulbreaker": 1935693246, + "Guest_ServusBloodsword": 1703995647, + "Guest_QueenCalypso": 845803519, + "Guest_BlueBart": 77043390, + "Guest_KarolakNightspinner": 1008737316, + "Guest_ArachtusDuskweb": 1787750209, + "Guest_ZhalarStarcloud": 1453644105, + "Guest_NarallorNightborn": 1963363700, + "Guest_SelwynSkywatcher": 1413136893, + "Guest_OsseusNightreaver": 306827003, + "Guest_IrateBanshee": 865143109, + "Guest_FuriousHowler": 1607252558, + "Guest_CryingSpirit": 1559074820, + "Guest_UndeadDraconian": 169249571, + "Guest_ReanimatedDraconian": 247067807, + "Guest_GhastlySlave": 80127661, + "Guest_BoundSpecter": 369706568, + "Guest_NecroticHaunter": 1714841563, + "Guest_LoathsomeCreeper": 1087245229, + "Guest_FleshrotRetriever": 1925148031, + "Guest_BarbarianSpirit": 2112552732, + "Guest_BeghastionCrowcaller": 586628832, + "Guest_BeghastionFieldburner": 1650751959, + "Guest_BoneWarrior": 76802026, + "Guest_FleshlessSentry": 708431820, + "Guest_PirateRavager": 945157059, + "Guest_RottenScallywag": 974666855, + "Guest_ArmoredBonewalker": 1444568072, + "Guest_UndeadWizard": 1622435563, + "Guest_SoulSearcher": 2094392941, + "Guest_DecayingBlackguard": 412324062, + "Guest_FoulReaper": 919877614, + "Guest_NightShadow": 1675932226, + "Guest_MotleyCrew": 653779218, + "Guest_OrinGrimcaster": 472649066, + "Guest_GhostofSylviaDrake": 218332449, + "Guest_VikaMarkmaker": 1145181168, + "Guest_VasekAshweaver": 1001434369, + "Guest_FireWraith": 1027720368, + "Guest_HungrySoul": 1722435576, + "Guest_FrostBones": 456145606, + "Guest_SnowSkull": 835837850, + "Guest_WinterSkull": 1556601065, + "Guest_LothinDoombringer": 860995070, + "Guest_MimirWinterbane": 1111898070, + "Guest_KulgrimSoulsunder": 278037985, + "Guest_HitojiniDeathcaster": 1144499043, + "Guest_GaikotsuSkeleton": 1113949902, + "Guest_PhantomAce": 1917639347, + "Guest_PhantomGlider": 849918336, + "Guest_Krokomummy": 857773886, + "Guest_NiriniAncientGuard": 359313880, + "Guest_NiriniFireSpirit": 1863811476, + "Guest_VaultHaunter": 197723476, + "Guest_VigilantDefender": 171276829, + "Guest_WanderingAhnicSpirit": 1702865088, + "Guest_ForgottenDjeseritSoul": 1170568256, + "Guest_KaranahnDeathfeeder": 1612857711, + "Guest_ShamblingAhnic": 1579129677, + "Guest_RisenDjeserit": 287855500, + "Guest_KaranahnMortifier": 874288111, + "Guest_DjeseritDweller": 2058423665, + "Guest_AhnicStrider": 1776992302, + "Guest_GuardianoftheFang": 1816795524, + "Guest_DefenderoftheFang": 354353604, + "Guest_ProtectoroftheFang": 1290191037, + "Guest_SouloftheCharmed": 422890577, + "Guest_KaranahnKeeper": 77581557, + "Guest_NiriniIntimidator": 677205957, + "Guest_CondemnedSoldier": 449152244, + "Guest_NimahtheWicked": 1298248873, + "Guest_AkoriNirini": 1123159753, + "Guest_SoulScavenger": 892852198, + "Guest_KeeperoftheFang": 1676773499, + "Guest_ItennuSokkwi": 699159408, + "Guest_Tempestra": 334938435, + "Guest_QueenIrisiDjeserit": 1861434100, + "Guest_TheBonekeeper": 1302503449, + "Guest_CryptScavenger": 1893795791, + "Guest_Soulsapper": 1699756010, + "Guest_KingUroAhnic": 1788825731, + "Guest_KingShemetDjeserit": 1350067043, + "Guest_UnholyWraith": 1871146013, + "Guest_PikeSpiritcrusher": 498715531, + "Guest_SpellwritScreamer": 801626733, + "Guest_SpellwritRonin": 1671439174, + "Guest_Shrieker": 805966229, + "Guest_GravePhantom": 731622936, + "Guest_NightmareSpirit": 230709057, + "Guest_VengefulCreeper": 1100197884, + "Guest_TombRoamer": 1277825068, + "Guest_ShieldSkeleton": 1634270152, + "Guest_AgonyWraith": 30384496, + "Guest_IcyGhost": 768353592, + "Guest_Half-wittedSkeleton": 647996362, + "Guest_LazyHenchman": 1329554426, + "Guest_TiredFighter": 210248632, + "Guest_Screecher": 469007005, + "Guest_SeethingWraith": 664913100, + "Guest_ColdConfusion": 1304943934, + "Guest_OssuaryConscript": 1017667150, + "Guest_Ghulture": 1330558655, + "Guest_BodyGuard": 1048581801, + "Guest_SpectralGuardian": 422805602, + "Guest_VaultConscript": 1388398065, + "Guest_FootPatrol": 1692393321, + "Guest_ArmedGuard": 2045920536, + "Guest_Chilly": 1764665905, + "Guest_Achey": 973370519, + "Guest_Sneezy": 1769440773, + "Guest_Cough": 1170200073, + "Guest_Shadowbones": 1316133167, + "Guest_ForgottenConscript": 1466348281, + "Guest_BarracksGuardian": 236603440, + "Guest_CryptConscript": 314755436, + "Guest_DurvishSeeker": 1825622267, + "Guest_MedicineMode": 167015574, + "Guest_Myriarch2": 593881680, + "Guest_Myriarch3": 593881616, + "Guest_MyriarchEphialtes": 773531895, + "Guest_MotherGhulture": 1585201915, + "Guest_CaptainCosrow": 727107332, + "Guest_VizierRafaj": 214040637, + "Guest_DarkmoorSerf": 1522169114, + "Guest_DarkmoorSquire": 1822567109, + "Guest_ScarletWampyr": 1683954247, + "Guest_DraconianRevenant": 741497298, + "Guest_DraconianEidolon": 107733297, + "Guest_AnguishedWraith": 1078602022, + "Guest_DraconianPyromancer": 729577007, + "Guest_DraconianThaumaturge": 189734361, + "Guest_DraconianDiviner": 472633746, + "Guest_DraconianConjurer": 1824962835, + "Guest_DraconianTheurgist": 1828628416, + "Guest_DraconianNecromancer": 175364324, + "Guest_DraconianSorcerer": 1262893339, + "Guest_SirBlackwater": 366308464, + "Guest_AkhtangWormCrawl": 1589032404, + "Guest_SpiritofDarkmoor": 579455915, + "Guest_ShanevonShane": 2096517522, + "Guest_YevgenyNightCreeper": 1535282881, + "Guest_MalistairetheUndying": 824508513, + "Guest_Bunferatu": 1015806005, + "Guest_CountBelaBlackSleep": 761647679, + "Guest_DeathSoldier": 1715141574, + "Guest_SorrowWhisperer": 556532003, + "Guest_GriefSpectre": 1425488559, + "Guest_HowlingShade": 631460247, + "Guest_WalkingDead": 318527090, + "Guest_Akuji": 977635799, + "Guest_TorturedKakedaSoul": 1716874833, + "Guest_KakedaSpiritSlave": 1814699344, + "Guest_DishonoredSamoorai": 320085744, + "Guest_CursedRonin": 1204095686, + "Guest_TomugawatheEvil": 166125424, + "Guest_OyotomitheDefiler": 1672714483, + "Guest_Fushiko": 801492770, + "Guest_BrokenLandGuardian": 294671991, + "Guest_ShatteredSkyGuardian": 746681463, + "Guest_SunderedSeamGuardian": 1439618652, + "Guest_BrokenLandSpirit": 860105895, + "Guest_ShatteredSkySpirit": 2104112380, + "Guest_SunderedSeamSpirit": 69572311, + "Guest_LostSoul": 204361577, + "Guest_RottingFodder": 308249734, + "Guest_HauntedMinion": 689597338, + "Guest_FieldGuard": 1175228991, + "Guest_SkeletalWarrior": 778393993, + "Guest_SkeletalPirate": 1476730220, + "Guest_WanderingSpecter": 126188449, + "Guest_LivingScarecrow": 1442943145, + "Guest_FrostPhantom": 1809776664, + "Guest_FireShrieker": 173332719, + "Guest_CryptCrawler": 2118799272, + "Guest_ViridianSpecter": 383149977, + "Guest_ArgentClatterer": 525414714, + "Guest_SwimmingSpecter": 1494025094, + "Guest_ScarletScreamer": 1689589811, + "Guest_BoneDigger": 1351421123, + "Guest_HowlingGhost": 664019391, + "Guest_SkeletalSoldier": 750463116, + "Guest_MaidenofHate": 444442868, + "Guest_SkeletalRetainer": 1409032775, + "Guest_SoulHunter": 1900267551, + "Guest_MidnightShuffler": 1991052065, + "Guest_PlaguedSoul": 419071561, + "Guest_HauntingBanshee": 345837052, + "Guest_SimontheSayer": 1352807820, + "Guest_TheHarvestLord": 1923575206, + "Guest_LadyBlackhope": 1403431623, + "Guest_SergeantSkullsplitter": 898737831, + "Guest_Foulgaze": 2063419769, + "Guest_Wormguts": 788697519, + "Guest_Rattlebones": 125602919, + "Guest_Paulson": 1112716921, + "Guest_Grubb": 1167554274, + "Guest_Norton": 581021964, + "Guest_NightStalker": 1447653309, + "Guest_AddereTimeo": 1491420030, + "Guest_TheReaper": 1526369733, + "Guest_AngrusHollowsoul": 1427862805, + "Guest_OrrickNightglider": 951078615, + "Guest_SteelSentinel": 885250894, + "Guest_Shadow-WebSoldier": 2014925398, + "Guest_LostCeleste": 1725301830, + "Guest_CapnNigelSkullcrack": 1665439970, + "Guest_HaulAwayJoe": 1075985331, + "Guest_OldMaui": 15300840, + "Guest_LordAgue": 140791419, + "Guest_MelweenaSmite": 432188189, + "Guest_HalloweenTrickster": 2043736417, + "Guest_PumpkinHead": 1098332105, + "Guest_BaronMordecai": 817370918, + "Guest_KaimaniteMummy": 1332671420, + "Guest_VeggieRevanant": 928504192, + "Guest_BloodBat": 76467389, + "Guest_DeadBeets": 157829578, + "Guest_Desparagus": 1130644076, + "Guest_MeanestFly-Trap": 1652898868, + "Guest_Nosferabbit": 1021159436, + "Guest_ThrallofSothmekhet": 330780177, + "Guest_VileApparition": 426627869, + "Guest_SoulServant": 1183110886, + "Guest_SoulKeeper": 917518313, + "Guest_AdmiralBontau": 2032168402, + "Guest_DeathWhisperer": 3814952, + "Mount_RollerBlades": 111369373, + "Guest_BaneWyrm": 147033576, + "Guest_BlackDragon": 939469656, + "Guest_DragonSpawn": 1829803517, + "Guest_Fire-SpitterSpawn": 616624489, + "Guest_CaoranachtheFire-Spitter": 323513000, + "Guest_Jabberwock": 1552492834, + "Guest_CatalantheLightningLizard": 1155778705, + "Guest_WhiteDragon": 2009449331, + "Guest_WinterWyrm": 478925069, + "Guest_WyrmStatue": 2119216210, + "Guest_AlgidWyrm": 1309546482, + "Guest_BruleeSucre": 390936202, + "Guest_HebitohoWyrmling": 1682026810, + "Guest_Shadowwock": 505539184, + "Guest_EirikurAxebreaker": 1361453552, + "Guest_WarWyrm": 1124740742, + "Guest_StrayFireflier": 610979811, + "Guest_BurningFlamewing": 2041225130, + "Guest_FeralLavaling": 371483057, + "Guest_SplinterWing": 923421333, + "Guest_ChanticoBlueAir": 1572441903, + "Guest_CopperWingGuard": 302783602, + "Guest_ObsidianBeak": 2016227452, + "Guest_CaquixNineShadows": 2070101060, + "Guest_LustrousTlalocan": 1201030473, + "Guest_SeedThief": 263211181, + "Guest_PopZotzUnluckyDay": 1416773489, + "Guest_NezathePoet": 1905861376, + "Guest_MazenStingerBee": 1642023393, + "Guest_ImperialJusticePayne": 1285679745, + "Guest_AssistantWardenPorfiry": 22099059, + "Guest_MarshalKamensky": 524669730, + "Guest_WardenVissarovich": 882556823, + "Guest_GulagGuard": 100744159, + "Guest_CaptainKravchuck": 690830770, + "Guest_ImperialGuard": 346803640, + "Guest_IronPaw": 1797329688, + "Guest_TundarianEnforcer": 134256836, + "Guest_Ivan": 996220221, + "Guest_ColonelOrlov": 1381254189, + "Guest_IronPawIntakeCaptain": 2099184835, + "Guest_SolitaryWarden": 1503529566, + "Guest_CaptainZubkov": 793725366, + "Guest_SergeantBobrik": 722182485, + "Guest_WailingWraith": 946976407, + "EggChick": 1452316301, + "BunnyMallow": 518233330, + "Guest_ThunderHornZombie": 1007920040, + "Guest_SmokingMirrorZombie": 340971759, + "Guest_ShamblingZombie": 1920485146, + "Guest_MoonSkullZombie": 809249764, + "Guest_DeathlessStormHorn": 812397213, + "Guest_MozarTurtleHunter": 561749043, + "Guest_GuillermoShatterer": 499565054, + "Guest_XiuhcoatlBarbedTooth": 1719245305, + "Guest_AzcalFireAnt": 1281366337, + "Guest_TlotzinMoonThief": 407285761, + "Guest_PocaCruelStar": 1117353085, + "Guest_ThunderHornGhoul": 597878999, + "Guest_TezomocStoneSinger": 733511940, + "Guest_EzhuaBadTaste": 632779219, + "Guest_UacalxochitlBloodEye": 1614856226, + "Guest_WanadiBlackSky": 349829749, + "Guest_ElMarrow": 483880636, + "Guest_GrimCalaca": 1534029144, + "Guest_XipeFlayedOne": 1343577398, + "Guest_MotecumaDeathMask": 1782393717, + "Guest_EkeChuah": 13416770, + "Guest_AnacaonaBlackSnake": 1543344897, + "Guest_SmokingMirrorWight": 776452983, + "Guest_Tolkemec": 217428080, + "Mount_Fox": 77199428, + "PP_OwlProtege": 268847192, + "Mount_SharkSki": 331374103, + "PP_Dolphin": 1662291612, + "Mount_CastSymbol_D": 1134428045, + "Mount_CastSymbol_E": 1136525197, + "Mount_CastSymbol_F": 1138622349, + "Mount_CastSymbol_G": 1140719501, + "Mount_CastSymbol_A": 1128136589, + "Mount_CastSymbol_B": 1130233741, + "Mount_CastSymbol_C": 1132330893, + "Guest_LionSpectralGuardian": 1791543691, + "Guest_KillmareSpiritwalker": 1818928165, + "Guest_ZebraSpectralGuardian": 815933596, + "Guest_GorillaSpectralGuardian": 1635182119, + "Guest_IklawGhostWarrior": 373465545, + "Guest_BwanaShadowriver": 1307628747, + "Guest_ElephantSpectralGuardian": 1579402208, + "Guest_ZangaZebu": 1218173119, + "Guest_GrumishGreataxe": 486953385, + "PP_GlowFairy_A": 2028856748, + "Guest_RestlessSoldier": 1142701763, + "Guest_WanderingWizard": 209518514, + "Guest_ColonelIvanenko": 399169035, + "Guest_DetollitheDestroyer": 655767295, + "Guest_Jawniak": 1791298433, + "Guest_Tajniak": 356182394, + "Guest_Ygor": 996316081, + "Guest_KyaniteLancer": 2136703656, + "Guest_VestaShadowmark": 1846747836, + "Guest_ZoraSteelwielder": 1186470644, + "Guest_AndorBristleback": 1949884743, + "Guest_GalliumPaladin": 1812340868, + "Guest_GalliumFootman": 1295203112, + "Guest_GalliumShardtrooper": 1210699836, + "Guest_GalliumJuggernaut": 3527584, + "Guest_VladimirDarkflame": 1575322237, + "Guest_KyaniteLieutenant": 561528977, + "Guest_DrusillaMorningbane": 155837810, + "Guest_KyaniteValkyrie": 53242136, + "Transformation_20Q_SherlockBones": 1112674320, + "Guest_DevoraShadowcrown": 1813459117, + "Guest_YoualaNightDrinker": 881289828, + "Guest_Pendragon": 715669945, + "Guest_CelestianRevenant": 515730327, + "Guest_SoullessServant": 1505662730, + "Guest_SpiritServant": 104517373, + "Guest_SoulSerf": 1188214406, + "Guest_ServileSoul": 871844607, + "Guest_SkeletalCorsair": 239414410, + "Guest_RottedFodder": 1301186193, + "Guest_ScarletScreecher": 600457915, + "PP_FrankBunnyBride_A": 974707030, + "Guest_BastillaGravewynd": 2100015237, + "Guest_VilaraMoonwraith": 2067986693, + "Guest_YngvarSharptooth": 1783361972, + "Guest_TroubledWarrior": 1569033392, + "Guest_VeggieRevanant2": 928503904, + "Guest_VeggieRevanant3": 928503888, + "Guest_VeggieRevanant4": 928503872, + "Guest_VeggieRevanant5": 928503856, + "Guest_AncientQhatWarrior": 1564521104, + "Guest_EmperorPaleolo": 2079384347, + "Guest_SpiritofIntolerance": 1627658048, + "Guest_SpiritofInquiry": 1320544891, + "Guest_FirstGuardian": 1982227776, + "Guest_FallenMerc": 225926286, + "Guest_NightShadow2": 1638183490, + "Guest_NightShadow3": 1636086338, + "Guest_NightShadow2-2": 1436856907, + "Guest_NightShadow3-2": 1434759755, + "Guest_NightShadow4-2": 1432662603, + "Guest_NightShadow5-2": 1430565451, + "Guest_NightShadow6-2": 1428468299, + "Guest_NightShadow7-2": 1426371147, + "Guest_FirstScythe": 738854032, + "Guest_GreyMantisCaptain": 860186057, + "Guest_GreyMantisHunter": 1239274377, + "Guest_Atlach-Leng": 836136649, + "Guest_PetrovGloomstrider": 2045783873, + "Guest_NauyotolDownIntheHole": 1134251106, + "Guest_SandorSpearcaller": 1351072377, + "Guest_MavraFlamewing": 1477685600, + "Guest_Scaldling": 208751819, + "Guest_WoebegoneWraith": 1166488705, + "Guest_BorisBlackrock": 1365399915, + "Guest_KatiaFirewinter": 521255834, + "Guest_ValerikBrightsword": 1244055782, + "Guest_RurikFlamesoul": 1962726850, + "Guest_IonaPyrelance": 722266491, + "Guest_DarkPoltergeist": 818162178, + "Guest_TheCollector": 1772287612, + "Guest_ViktorSnowcrusher": 1028387381, + "Guest_ValeskaRedwind": 19316351, + "Guest_ScarrikGallowgaunt": 105397333, + "Guest_Neberyx": 1453883041, + "Guest_AsrikWidebelt": 401936422, + "Guest_GothricHonorbound": 750072340, + "Guest_HalfangBristlecrown": 618779562, + "Guest_OsvudFleetpaw": 1023466459, + "PP_PufferFish_A": 1578606029, + "Guest_OzelUnderwaterCat": 1033669302, + "PP_BabyGreenMan_A": 910025246, + "PP_SchoolTurtle_A": 1012620678, + "PP_DarkBalloon_A": 1229308566, + "MT_JetsamCopter": 92127678, + "Mount_4P_DarkClownCar": 420246262, + "MNT_BalloonsBunch": 2000358474, + "Guest_TempleGuardian": 632574316, + "Guest_TemplePhantom": 1701097840, + "Guest_MahonStarsearcher": 1549093341, + "Guest_LostKnight": 858980994, + "Guest_AnguishedWoodman": 174606918, + "Guest_TormentedTreant": 294050331, + "Guest_WildfireTreant": 1902129818, + "Guest_BlightedYaxche": 679097088, + "Guest_Junglethorn": 1734561424, + "Guest_Tangleroot": 2027061721, + "Guest_BlightedFreerooter": 1109803061, + "Guest_Winterbranch": 1170787806, + "Guest_DecayingBogwalker": 1338670789, + "Guest_BrownwoodTormentor": 1655181754, + "Guest_Wildroot": 1839747182, + "Guest_Ironsplinter": 668295157, + "Guest_Frostbranch": 75974631, + "Guest_KyoukonteiTreant": 474446232, + "Guest_BrokenStumps": 414724364, + "Guest_WordlessWoodsmen": 1813881830, + "Guest_DesiccatedTreebeard": 1826942903, + "Guest_ShadowoftheLand": 1612385317, + "Guest_TreeRoot": 1406633546, + "Guest_BefouledWoodwalker": 1517919498, + "Guest_ConfusedForestWarrior": 750805985, + "Guest_CrazedForestSpirit": 1007960507, + "Guest_Oakheart": 1158293719, + "Guest_SnowTreant": 1028620035, + "Guest_Snowbeard": 1997921701, + "Guest_BarkskinTreant": 2143957812, + "Guest_RazorleafTreant": 2133159197, + "Guest_CarrionFlowerMan": 1120698936, + "Guest_Kurokage": 355651925, + "Guest_LacombeStrawHouse": 568809873, + "Guest_BerkshireStickHouse": 1932133405, + "Guest_TamworthBrickHouse": 894027634, + "Guest_RustyTinderSpark": 1237916230, + "Guest_CoraWinterBranch": 1901918989, + "Guest_GrambleGoldRook": 1986988546, + "Guest_PiperStormTree": 1109520133, + "Guest_Hanadzura": 124838500, + "Guest_Kuchisaki": 2084188681, + "Guest_Kaizoku": 807430784, + "Guest_JaxonLastRites": 1653711119, + "Guest_SeijunKiller": 657647155, + "Guest_ZarichiTarakata": 1129212566, + "Guest_BladelessRonin": 1577395797, + "Guest_SanzokuOutlaw": 1682888807, + "Guest_SanzokuBandit": 1766198653, + "Guest_KakedaPainbringer": 1260119278, + "Guest_KakedaStalker": 367458449, + "Guest_KakedaShadow": 1604499626, + "Guest_KakedaSoulcrusher": 1961168112, + "Guest_ImitsuPlaguemaster": 1361539025, + "Guest_ImitsuDefouler": 1299791045, + "Guest_ImitsuPunisher": 234819300, + "Guest_StudentofKhai": 249757647, + "Guest_OtomoBattlemage": 918160114, + "Guest_OtomoCourier": 1373253378, + "Guest_OtomoSupplyRunner": 1580070577, + "Guest_OtomoScout": 1814051082, + "Guest_OtomoWrestler": 1053571230, + "Guest_OtomoFury": 111319603, + "Guest_Hyottoko": 307080225, + "Guest_Usunoki": 1881339626, + "Guest_Kagemoosha": 1842766119, + "Guest_UdoJin-e": 850816224, + "Guest_TakedaKanryu": 536087422, + "Guest_Tamauji": 818613882, + "Guest_Jikiru": 794167355, + "Guest_Nomoonaga": 849534658, + "Guest_Aiuchi": 515942855, + "Guest_Kurogaso": 1426248002, + "Guest_Ideyoshi": 1814038213, + "Guest_Koto": 1151260427, + "Guest_Usegi": 977549586, + "Guest_Kanago": 1644367227, + "Guest_Kyuto": 1168225979, + "Guest_Haru": 2070048389, + "Guest_Ashikata": 1523446928, + "Guest_Katsumori": 1823914597, + "Guest_Hingen": 1567896261, + "Guest_Yakedo": 502298497, + "Guest_Do-Daga": 1239945714, + "Guest_Maito": 979260804, + "Guest_TonkatsuThug": 1758658397, + "Guest_GobbloreanGuard": 1286210991, + "Guest_BabblingMeints": 413418139, + "Guest_PrinceGobblestone": 1813171676, + "Guest_GobblerMuncher": 1517159487, + "Guest_GobblerGorger": 130736772, + "Guest_GobblerScouter": 1509427587, + "Guest_GobblerGlutton": 1912199781, + "Guest_GobblerScavenger": 136586791, + "Guest_BaronGreebly": 1028182200, + "Guest_BaronRotunda": 457132907, + "PP_DeathMimic": 1811942047, + "Guest_GreenMan": 1126663802, + "Guest_ForestGrump": 1602350320, + "Guest_ErvintheBarbarian": 1671762776, + "Guest_RazortuskWarrior": 1109994549, + "Guest_RazortuskBrawler": 732265321, + "Guest_SplithoofRager": 1922134329, + "Guest_TuskedRaider": 1920114147, + "Guest_SviniBeserker": 1146317608, + "Guest_SviniReaver": 216717251, + "Guest_Shattertusk": 1191456730, + "Guest_SplithoofBarbarian": 296671728, + "Guest_Bloodseeker": 2086598239, + "Guest_Scarsnout": 1831766077, + "Guest_MasterTonkatsu": 1783298894, + "Guest_Grisletusk": 657393295, + "Guest_SplithoofBloodguard": 488382274, + "Guest_BristlehideRaider": 237078958, + "Guest_Gullin": 1656401882, + "Guest_ForestNymph": 812055814, + "Guest_SassafrasMan": 1327049788, + "Guest_RandolfSpellshine": 108808620, + "Guest_BleysFlamerender": 434070106, + "Transformation_Khan": 1398327634, + "Transformation_TheBat": 1675113521, + "MNT_DireWolf": 845578449, + "MNT_YuleMule": 1976182058, + "MNT_LightBlades": 829118450, + "MNT_FlyingSquid": 1573132252, + "PP_Globulin": 467801224, + "PP_BeastBaby": 1807874692, + "PP_SaniBot": 670845902, + "Mount_SwarmSand": 1277669407, + "Guest_Nodnarb": 211478288, + "Guest_LordBramble": 1118781162, + "Guest_Yogash": 506264561, + "Guest_Marcio": 499428996, + "Guest_Procyon": 1115376865, + "Guest_Thunderfin": 2029218563, + "Guest_ArkynMoonblade": 1152775206, + "Guest_CreeCurdWright": 1714953095, + "Guest_DeerMouseRevenant": 315064435, + "Guest_ElanaDarksun": 837982094, + "Guest_KingAlricFateSailor": 1934591130, + "Guest_LaughingCalaca": 984492527, + "Guest_WraithKnight": 620484548, + "Guest_FieryEchoofApep": 484636593, + "Guest_FrostyEchoofApep": 171933154, + "Guest_FalseEchoofApep": 479387377, + "Guest_ChargedEchoofApep": 1229406800, + "Guest_ShrowdengersQhat": 101563303, + "Guest_Scrollkeeper": 643219293, + "Guest_TerrorHound": 753341570, + "Guest_CondemnedMander": 445370758, + "Mnt_SnowStorm": 1491572670, + "Mount_ChimneySweeper": 378571534, + "MNT_PineappleCandyCane": 1630795796, + "Guest_TyphonDustwind": 740849673, + "MNT_StickHorse": 216654744, + "MimicTemplate": 1461219184, + "MNT_Ball_N_Chain": 289720920, + "PP_PeaceDove_A": 1785119671, + "Mount_Gyrocycle": 1495008048, + "PP_BattleMageDragon_A": 1864696711, + "MNT_BattleBeast": 1304449286, + "MNT_SmokeTrails": 387873030, + "Mount_FriendshipHare": 677127330, + "MNT_ButterflySwarm": 383602683, + "PP_EggChick_B": 1959154042, + "MNT_Unicorn": 562210585, + "PP_StuffedUnicorn": 1731641773, + "MNT_ParadeTruck": 2026348978, + "MNT_ParadeTruckXmas": 1017864627, + "MNT_AutumnLeafSwarm": 1540002279, + "PP_GingerbreadMan": 1796172229, + "PP_DecadeDragon": 1819398630, + "MNT_StageShip": 829852992, + "PP_DramaLlama": 255896529, + "PP_HallMinotaur_A": 1492017563, + "Guest_MacDeath": 1526226705, + "Guest_MacDeathUnderstudy": 1731752647, + "Guest_MacLifeUnderstudy": 257466641, + "Guest_MacStormUnderstudy": 8295117, + "MNT_Pantera": 1135198, + "MNT_StagLight": 1908778048, + "MNT_GiantSpider": 1247185021, + "MNT_StagEvil": 872303931, + "PP_BaskHound": 1093866594, + "PP_Marionette": 1688299938, + "PP_Marionette_B": 1688297824, + "Guest_Izft": 996301405, + "Guest_SapotisMinion": 1625665891, + "Guest_CrazedSlave": 1473233468, + "Guest_CharmedSlave": 803043667, + "Guest_EnsorcelledSlave": 40920285, + "Guest_HallServant": 2038116460, + "Guest_SiathePerceiver": 1235571913, + "Guest_Kiwu": 1151177787, + "Guest_NightImp": 1051843424, + "Guest_EvilTrickster": 1035477123, + "Guest_DeepWoodsImp": 1502444054, + "Guest_ForestPest": 802235713, + "Guest_TaintedForestImp": 1030343985, + "Guest_Youkai": 518367729, + "Guest_CarthaginianElephantWarrior": 776293919, + "Guest_IdrisBeast-Taker": 106759521, + "Guest_MikaSkarka": 237956516, + "Guest_Belloq": 757247833, + "Guest_GurtokPiercer": 549466122, + "Guest_GurtokFirebender": 817966523, + "Guest_GurtokDemon": 544070162, + "Guest_GeneralFiretusk": 2073037770, + "Guest_GurtokBarrierDemon": 44657563, + "Guest_BlacktuskShaman": 1009070925, + "Guest_FireDemon": 158367196, + "Guest_DeathOni": 1916642000, + "Guest_JadeOni": 1289517185, + "Guest_PlagueOni": 1464586443, + "Guest_WarOni": 1630196094, + "Guest_BrokenLandMammoth": 1587008312, + "Guest_SunderedSeamMammoth": 1272698721, + "Guest_BullyMammoth": 170705927, + "Guest_Bullhemoth": 146998717, + "Guest_Kogasha": 1909654543, + "Guest_MusuthBerserker": 1741298129, + "Guest_BlackTuskCultist": 1771575961, + "Guest_AksilBlacktrunk": 1253596409, + "Guest_LongdreamerShaman": 1521283133, + "Guest_MuratGreyeyes": 1296814314, + "Guest_ElephantSoldier": 1443670145, + "Guest_DarajaniGuard": 1597288495, + "Guest_Loremaster": 1792470809, + "Guest_Pork": 2069999347, + "Guest_Beans": 97706585, + "MNT_Ox": 1292937747, + "PP_PropellerSquirrel": 1657443894, + "Guest_RasikPridefall": 97921485, + "Guest_AmedrasLightstep": 1818417025, + "MNT_SmokeTrails_Balance": 1358150715, + "MNT_SmokeTrails_Fire": 702971609, + "MNT_SmokeTrails_Ice": 190218501, + "MNT_SmokeTrails_Life": 2045542105, + "MNT_SmokeTrails_Myth": 1276281121, + "MNT_SmokeTrails_Storm": 564954622, + "Guest_Bellosh": 1407013027, + "Guest_AcampiReedfist": 2076527733, + "Guest_AgnettaBroadblade": 14864960, + "Guest_FrostheartRaider": 1574787221, + "Guest_JordaSwordbearer": 1627071850, + "Guest_KasaiBaku": 1153107369, + "Guest_ZoraimeiHelephant": 1002482606, + "Guest_ConscriptedMander": 43811125, + "Firecat_Decade": 409516955, + "MNT_BatGlider": 2086258491, + "Transformation_PlayerHomework": 673389670, + "Transformation_PlayerAttendance": 422287307, + "Transformation_PlayerLecture": 2035625874, + "Transformation_PlayerPopQuiz": 483367038, + "MNT_GingerbreadHorse": 1369242781, + "MNT_NimbariChariot": 1251740392, + "PP_NimbariDog": 1235126828, + "Transformation_PlayerGrandma": 1128332272, + "Transformation_PlayerScionA": 33862367, + "PP_Mushroom": 1568942158, + "MNT_Scooter": 1148167046, + "MNT_Scooter_B": 2079302532, + "MNT_Scooter_C": 1810867076, + "MNT_Scooter_D": 468689796, + "MNT_IceCycle": 415797788, + "Transformation_PlayerScionA02": 33921759, + "Guest_FearoftheFuture": 947210229, + "Guest_FearofGremlins": 405857384, + "Guest_RootGuardian": 922940845, + "Guest_VineThrasher": 172546427, + "Guest_BlightWalker": 1438155154, + "Guest_BriarScourge": 615681851, + "Guest_DreamJabberwock": 907754098, + "Guest_DreamBelloq": 990352002, + "Guest_Voltergeist": 1558128068, + "Guest_SpecialBranch": 1927849418, + "Guest_MutantBriar": 805892802, + "Guest_FeralBriar": 883790223, + "Guest_MaizeMonster": 688905764, + "Guest_DreamShadowwock": 1432458248, + "Mount_Heartboard": 1421972759, + "PP_ChocoBunny": 324797859, + "Mount-PogoFlower": 906659501, + "MNT_AethyrCloud": 1586061078, + "MNT_Fangle": 7846854, + "Guest_StarfallSpider": 1177620831, + "Guest_AshSpider": 1588502553, + "Guest_CorruptedWeaver": 38937211, + "Guest_CrystalCrawler": 1197980149, + "Guest_ShimmerWidow": 1300740128, + "Guest_FacetedSpikespinner": 1939719331, + "Guest_CrystallineQueen": 1999282256, + "Guest_AncientCrystalweaver": 1409608801, + "Guest_FangtoothLavaspinner": 1538042104, + "Guest_VenomousHeatseeker": 1234682482, + "Guest_FireweaveRockbiter": 300743778, + "Guest_MonkeySpider": 754090007, + "Guest_CryptSpider": 1545405304, + "Guest_CommonHouseSpider": 613486002, + "Guest_ArachnaMagnaMagus": 825817937, + "Guest_ArachnaSoldier": 270978709, + "Guest_Gnissa": 1699826178, + "Guest_WebwoodScuttler": 1728611075, + "Guest_SandSpider": 61789007, + "Guest_WebwoodCreeper": 1013382584, + "Guest_Skathi": 1631429165, + "Guest_ArchmagusLorcan": 321146960, + "Guest_CrawleroftheMist": 2076696304, + "Guest_PaintedSpider": 1482115552, + "Guest_GiantSpider": 1545526191, + "Guest_CaveCrawler": 2101587667, + "Guest_RattleCatcher": 1472707326, + "Guest_TrapdoorSpider": 1321643694, + "Guest_RockClinger": 1304266411, + "Guest_InquisitorXimenez": 1053483090, + "Guest_ElderMagus": 1017836836, + "Guest_WardenBenthamic": 18807199, + "Guest_SpiderArchmagus": 387645558, + "Guest_SpiderAdept": 2094873407, + "Guest_InterrogatorRentenius": 1245984179, + "Guest_WarpedWeaver": 495882677, + "Guest_ArachnaSkinner": 281864085, + "Guest_SkinnerConscript": 2028526453, + "Guest_ArachnaGladiator": 2492046, + "Guest_LorcanInitiate": 353311753, + "Guest_Serket": 1871335773, + "Guest_IceWeaver": 2063216026, + "Guest_SpiritSpinner": 525666327, + "Guest_MysteriousCrawler": 218352756, + "Guest_BlackWidow": 1909331619, + "Guest_BrownRecluse": 1146386275, + "Guest_Creeper": 1197442790, + "Guest_GearSpinner": 67020478, + "Guest_Clinker": 1194519062, + "Guest_Clanker": 1194517014, + "Guest_GrandfatherSpider": 1330981335, + "Guest_Spiderling": 1400274461, + "Guest_ManekiWebWalker": 888348786, + "Guest_KoganiDeathCrawler": 276010604, + "Guest_CheliceranCrawler": 1169176517, + "Guest_ArachniteCreeper": 1850534774, + "Guest_ChelicaranStalker": 2057291848, + "Guest_HornedMonkeySpider": 1301514577, + "Guest_GreyOgreSpider": 1533774471, + "Guest_StarburstSpider": 698029451, + "Guest_PaintedCaveMonster": 601315479, + "Guest_RubbleRouser": 220785666, + "Guest_EarthElemental": 435260049, + "Guest_SharpshardWarrior": 1403237237, + "Guest_Firevein": 1220046430, + "Guest_Blackblade": 458130537, + "Guest_VengefulFireheart": 563205004, + "Guest_FirerockStomper": 608552855, + "Guest_BlackrockGuardian": 1663799582, + "Guest_ConfusedSentry": 24655510, + "Guest_SilverSentinel": 1090673683, + "Guest_SilverServant": 84560693, + "Guest_GiantHomunculus": 456098557, + "Guest_PropertyMaster": 229101764, + "Guest_VaultProtector": 185568207, + "Guest_PlatedDefender": 79324363, + "Guest_Avalanche": 761613547, + "Guest_RockReaver": 919912933, + "Guest_Frostmantle": 856308090, + "Guest_GlacierWalker": 131215932, + "Guest_SandBehemoth": 272513357, + "Guest_RunedAnnihilator": 121339936, + "Guest_RunedDevestator": 1611071181, + "Guest_RunedGuardian": 1986312667, + "Guest_CanyonRager": 1123038266, + "Guest_RubbleReaver": 220774678, + "Guest_Boulderbone": 122279242, + "Guest_Nali": 77467516, + "Guest_Gnar": 1151164930, + "Guest_GlacialAvenger": 1181253632, + "Guest_SokkwiKeymaster": 190919624, + "Guest_SandsofTime": 34920273, + "Guest_BladeGolem": 435561523, + "Guest_FrostColossus": 1564686403, + "Guest_IceColossus": 335477257, + "Guest_PollutedEarthWalker": 86045387, + "Guest_CorruptedEarthSpirit": 1135891559, + "Guest_Stonebreaker": 1317905436, + "Guest_StoneElemental": 1715022018, + "Guest_VolcanisGolem": 1904918929, + "Guest_WaterElemental": 1717850987, + "Guest_AshenDeathMonkeySpider": 35356665, + "Guest_DeathMonkeySpider": 1525508507, + "Guest_MotherMonkeySpider": 110317392, + "Guest_DoomMonkey": 1135105500, + "Guest_DreamMorganthe": 907599965, + "Guest_DragonBeetle": 1974635734, + "Guest_SandWalker": 1530843985, + "MNT_PandaMama": 916371162, + "PP_BabyPandas": 778536285, + "PP_FrogPrince": 729975205, + "MNT_PumpkinCarriage": 183672737, + "Mount_Gobbler_B": 1193388729, + "PP_Hamster": 1578040708, + "Guest_Steeleton": 657429968, + "Guest_GoldenWyrm": 311022393, + "MNT_Roc": 1564431869, + "PP_BabyGriffin": 1913686406, + "Transformation_ShadowDPSMob": 936133896, + "Transformation_ShadowTankMob": 305660992, + "Transformation_ShadowHealMob": 356596800, + "Guest_SpiritofIgnorance": 1577360126, + "Guest_FecklessSoul": 519648315, + "Guest_BurnedOutSoul": 312181646, + "Guest_BenightedRevenant": 2131956962, + "Guest_TombLurker": 1901203489, + "Guest_DesertGolem": 543642682, + "Guest_KumoOni": 215822625, + "Guest_SpellwritStalker": 161772776, + "PP_Sun": 1723237840, + "Guest_Leadite": 4480416, + "Mount_FestiveFox": 2125832348, + "PP_FenrisWolf": 1601784680, + "PP_SchoolPiggle": 109782407, + "PP_FenrisWolf_Red": 1597992854, + "PP_FenrisWolf_Teal": 1455058454, + "PP_FenrisWolf_White": 1102186199, + "Transformation_NinjaPig_Fire": 984575055, + "Transformation_BG_RatThief_Myth": 1191155131, + "Transformation_BG_RatThief_Storm": 675891897, + "MNT_Umbrella": 955683437, + "Transformation_BG_Elf_Ice": 1209681129, + "Transformation_BG_Fairy_DarkMinion_Balance": 33521202, + "Transformation_BG_Cyclops_Death": 876023972, + "Transformation_BG_Minotuar_Fire": 1118476387, + "Transformation_BG_WolfWarrior_Storm": 2075594475, + "Transformation_BG_WolfWarrior_Balance": 746159992, + "Transformation_BG_Draconian_Myth": 903606820, + "Transformation_BG_Draconian_Life": 1501291044, + "Transformation_BG_Colossus_Life": 1320377666, + "MNT_DolphinChariot": 102982520, + "MNT_EvilWagon": 685457563, + "MNT_FlyingDutchman": 1176206544, + "PP_SeaHorse": 2024322494, + "PP_EvilTeddy": 1159020925, + "PP_ZombieParrot": 384805107, + "Transformation_BG_Ice_Colossus": 299613211, + "MNT_CarrierBat": 7323333, + "Transformation_BG_Minotaur_MythTempalte": 430330904, + "PP_FeatheredTabby": 452526748, + "Transformation_Detritus01": 1335763402, + "Guest_Metallossus": 335457082, + "MNT_SantaJaws": 464410203, + "MNT_BattleBadger": 532858222, + "Transformation_Shedder01": 2069145892, + "PP_NatureSpirit": 373176286, + "Transformation_Devourer01": 1004421540, + "Guest_TheDevourer": 1591187996, + "Guest_Treeminder": 1093207850, + "Guest_RenegadeDruid": 2087982292, + "Guest_FractalTreeminder": 927174548, + "Guest_UnsettledTreeminder": 486164163, + "Guest_DragonspyreCrusader": 247317280, + "Guest_YoungGreggor": 66068670, + "Guest_GeneralGreyflame": 499924835, + "Guest_OldGreggor": 391726170, + "Guest_PrinceViggor": 853556298, + "Guest_DragonspyreVanguard": 693851565, + "Guest_SilasConviction": 177362659, + "Guest_SilasWeariness": 893431021, + "Guest_SilasRage": 1288904439, + "Guest_SilasDoubt": 1479426285, + "Guest_Lorekeeper": 147779344, + "Guest_FelixPhotomongerIII": 68387506, + "Guest_WarHavox": 1634324022, + "Guest_Mis-assembledSkeleton": 221832082, + "Guest_TreeminderGhost": 200408510, + "Guest_ViggorsDrake": 340449521, + "Guest_BlueNinjaPig": 938539327, + "Guest_RedNinjaPig": 2097962021, + "Guest_OrangeNinjaPig": 625058258, + "Guest_PurpleNinjaPig": 445746449, + "Guest_RitualColossus": 844563319, + "Guest_TinyDragon": 1123127688, + "Guest_RitualSpider": 429827552, + "Guest_RitualDraconian": 837510372, + "Guest_CC_Druid_Warrior_C_01": 55314616, + "Guest_CC_Druid_Wizard_A_01": 1046261169, + "Guest_CC_Druid_Wizard_B_01": 1046244785, + "Guest_CC_Druid_Warrior_A_01": 56363192, + "MNT_Toboggan": 995356805, + "MNT_2P_WickerTreant-001": 2065440944, + "PP_Ratatoskr": 1003497600, + "PP_Trash": 1195047012, + "Guest_CC_Druid_Wizard_D_01": 1046343089, + "MNT_Sunflower": 721091531, + "MNT_Whoopee": 1383311238, + "MNT_Warthog": 8060761, + "PP_ShamRock": 943893325, + "PP_LeapingLeprechaun": 132882517, + "PP_LionCubs": 465759803, + "PP_Tanuki": 670387843, + "MNT_Crane": 433122675, + "MNT_Krokosphinx": 739938754, + "Transformation_BG_Fairy_Life": 1897480818, + "Transformation_LiceDeepSpawnA": 244795720, + "Piggle_Alien": 1761605655, + "PP_JeweledScarab": 620544607, + "Guest_KR_Nymph_DrkMage_D50": 1248526054, + "Guest_KR_Nymph_DrkMage_C50": 1246953190, + "Guest_KR_Nymph_DrkMage_B50": 1247477478, + "Guest_KR_Nymph_DrkMage_A50": 1245904614, + "Guest_EM_Spider_Ash_01": 185724938, + "UFO": 47349, + "PP_Kit10": 326796620, + "PP_Lumi_Tulip": 84119585, + "PP_Lumi_Fern": 117015078, + "PP_Lumi_Violet": 1468797578, + "PP_Lumi_Sunny": 1769236703, + "PP_Lumi_Daisy": 1743454175, + "MNT_CelestianMech": 1238076872, + "MNT_Brontosaurus": 402157167, + "Guest_HG_AKT_Krok_Cyber_A_Balance_25": 1367985604, + "Guest_HG_AKT_Krok_Cyber_A_Balance_50": 1368084932, + "Guest_HG_AKT_Krok_Cyber_A_Balance_75": 1367988676, + "Guest_HG_AKT_Krok_Cyber_A_Balance_100": 1351303620, + "Guest_HG_AKT_Krok_Cyber_A_Balance_130": 1351270852, + "Guest_HG_AKT_Krok_Cyber_A_Fire_25": 976558490, + "Guest_HG_AKT_Krok_Cyber_A_Fire_50": 37034397, + "Guest_HG_AKT_Krok_Cyber_A_Fire_75": 305469850, + "Guest_HG_AKT_Krok_Cyber_A_Fire_100": 573905821, + "Guest_HG_AKT_Krok_Cyber_A_Fire_130": 573905824, + "Guest_HG_AKT_Krok_Cyber_A_Ice_25": 159411377, + "Guest_HG_AKT_Krok_Cyber_A_Ice_50": 541093041, + "Guest_HG_AKT_Krok_Cyber_A_Ice_75": 146828465, + "Guest_HG_AKT_Krok_Cyber_A_Ice_100": 557870241, + "Guest_HG_AKT_Krok_Cyber_A_Ice_130": 960523425, + "Guest_HG_AKT_Krok_Cyber_A_Myth_25": 976187830, + "Guest_HG_AKT_Krok_Cyber_A_Myth_50": 36663729, + "Guest_HG_AKT_Krok_Cyber_A_Myth_75": 305099190, + "Guest_HG_AKT_Krok_Cyber_A_Myth_100": 573535153, + "Guest_HG_AKT_Krok_Cyber_A_Myth_130": 573535156, + "Guest_CL-GolemButler-R9": 780077559, + "Guest_CL-GolemDigger-Boss-R10": 562020288, + "Guest_CL-GolemDigger-R9": 789375095, + "Guest_CL-GolemDigger-Rank8MythBoss-R10": 930527857, + "Guest_CL-GolemWorker-R9-1": 1072815287, + "Guest_CL-FishbotBrown-R9-1": 2006155417, + "Guest_CL-FishbotBrown-R9-2": 395542681, + "Guest_CL-FishbotGold-Boss-R10": 611881707, + "Guest_CL-FishbotGold-R9": 705414492, + "Guest_CL-FishbotYellow-Boss-R10": 23145662, + "Guest_CL-Protector-Black-Boss-R10-2": 679228793, + "Guest_CL-Protector-Gold-R10": 1909636609, + "Guest_CL-Protector-Gold-R9-1": 1909634804, + "Guest_CL-Protector-Gold-R9-2": 1909634932, + "Guest_CL-Protector-Gold-R9-3": 1909635060, + "Guest_CL-Protector-Gold-R9-4": 1909634164, + "Guest_CL-Protector-Purple-R9-Boss": 1889837072, + "Guest_CL-Protector-Purple-R9": 81760161, + "Guest_CL-Protector-Tan-Boss-R10": 912663188, + "Guest_KR_Golem_Worker": 1784607296, + "Guest_Golem-Brass-R7-1": 718939445, + "Guest_Golem-Clockwork-R7": 1161173708, + "Guest_EM_Robot_Batbot_A_01": 1482867950, + "Guest_EM_Robot_Batbot_B_02": 945947886, + "Guest_EM_Robot_Batbot_B_01": 1482818798, + "Guest_EM_Robot_Batbot_B_03": 409076974, + "Guest_EM_Robot_Batbot_B_04": 127793938, + "Guest_EM_Robot_Batbot_B_05": 664664850, + "Guest_EM_Robot_Drone_A_02": 1215188569, + "Guest_EM_Robot_Drone_A_03": 1231965785, + "Guest_EM_Robot_Drone_A_01": 1265520217, + "Guest_EM_Robot_Drone_A_04": 1315851865, + "Guest_EM_Robot_Drone_A_05": 1332629081, + "Guest_EM_Robot_Drone_A_06": 1282297433, + "Guest_EM_Robot_Drone_A_07": 1299074649, + "Guest_EM_Robot_Drone_A_08": 1114525273, + "Guest_EM_Robot_Drone_A_09": 1131302489, + "Guest_EM_Robot_Drone_A_Boss_01": 1960661151, + "Guest_EM_Robot_Drone_A_Boss_02": 1960530079, + "Guest_EM_Robot_Drone_E_01": 1265518169, + "Guest_EM_Robot_Tank_A_01": 1314796420, + "Guest_EM_Robot_Tank_A_02": 1313223556, + "Guest_EM_Robot_Drone_C_02": 1215187545, + "Guest_EM_Robot_Drone_D_03": 1231963225, + "Guest_EM_Robot_Drone_D_01": 1265517657, + "Guest_EM_Robot_Drone_D_02": 1215186009, + "Guest_EM_Robot_Tank_B_01": 1314796468, + "Guest_EM_Robot_Drone_C_01": 1265519193, + "Guest_G14-BP-Golem_Steel_Boss": 2071105129, + "Guest_G14-BP-Golem_Steel_Puzzle": 715790979, + "Guest_Golem-Brass-Elite-L38": 1163662532, + "Guest_Golem-Brass-Elite-L56": 2057562884, + "Guest_Golem-Brass-MBBoss-L48": 1498830732, + "Guest_Golem-Brass-MBBoss-L71": 1498829576, + "Guest_Golem-Brass-MBBoss-L76": 1498828936, + "Guest_Golem-Clockwork-Elite-L54-Metal": 417151527, + "Guest_Golem-Clockwork-Elite-L37": 1961943722, + "Guest_Golem-Clockwork-Elite-L54": 1950147242, + "Guest_Golem-Clockwork-L28": 1561959116, + "Guest_Golem-Clockwork-MBBoss-L37": 973152783, + "Guest_Golem-Clockwork-MBBoss-L69": 1262559759, + "Guest_Golem-Steel-Elite-L39": 1430496717, + "Guest_Golem-Steel-MBBoss-L40": 1229578887, + "Guest_Golem-Steel-MBBoss-L43": 1229579015, + "Guest_Golem-Steel-MBBoss-L50-1": 1231762051, + "Guest_Golem-Steel-MBBoss-L50": 1229578883, + "Guest_Golem-Steel-MBBoss-LXX": 1229583927, + "Guest_Golem-Wood-Elite-L35": 904360756, + "Guest_Golem-Wood-Elite-L37": 1978102580, + "Guest_Golem-Wood-Elite-L50": 1813548236, + "Guest_Golem-Wood-MBBoss-L63": 1392041724, + "Guest_MB-Gauntlet-Golem-Clockwork": 854649045, + "Guest_Spider-Golem-MBBoss-L67": 253352706, + "Guest_Spider-Golem-MBBoss-L96": 253348994, + "Guest_WC-MAW-GasGolem-Minion": 1511013798, + "Guest_WC-MAW-GasGolemLife-Minion": 1306026584, + "Guest_Golem-Steel-L02": 1027229749, + "Guest_Golem-Clockwork-L01": 1409915596, + "Guest_Gauntlet-01-Golem-Steel-Ghost-R8": 402816318, + "Guest_Golem-Wood-L01": 156976035, + "Guest_HG-Clock-ClockworkSpanner-20": 1523370449, + "Guest_HG-Clock-ClockworkSpanner-40": 1523370455, + "Guest_HG-Clock-ClockworkSpanner-60": 1523370453, + "Guest_HG-Clock-ClockworkSpanner-80": 1523370459, + "Guest_HG-Clock-ClockworkSpanner-100": 1523354068, + "Guest_HG-Clock-ClockworkSpanner-120": 1523354004, + "Guest_AQ-Cyclops-Guard": 191361948, + "Guest_AQ_Cyclops_Guard_A_Boss_01": 114747100, + "Guest_CL-Cyclops-Death-R10": 611013866, + "Guest_Cyclops-Death-Boss-R7": 1192370725, + "Guest_Cyclops-Death-Boss-R9": 1192370717, + "Guest_Cyclops-Death-R7": 144593791, + "Guest_GH-Cyclops-Death-R6": 594236619, + "Guest_Cyclops-BlueHelmet-KTBoss-L03": 1720105277, + "Guest_Cyclops-Red-L12": 1816429840, + "Guest_MR_Cyclops02WHelmet_Model_01": 1483732416, + "Guest_Cyclops-Blue-L02": 1633021234, + "Guest_Cyclops-BlueHelmet-WCBoss-L03": 427378332, + "Guest_Cyclops-RedHelmet-WCBoss-L03": 2021269422, + "Guest_HG_Sinbad_Cyclops_25": 911979034, + "Guest_HG_Sinbad_Cyclops_50": 1856261606, + "Guest_HG_Sinbad_Cyclops_75": 861647386, + "Guest_HG_Sinbad_Cyclops_100": 1789152678, + "Guest_HG_Sinbad_Cyclops_130": 178539942, + "Guest_HG_Sinbad_IronSultan_25": 930031152, + "Guest_HG_Sinbad_IronSultan_50": 930051504, + "Guest_HG_Sinbad_IronSultan_75": 930030768, + "Guest_HG_Sinbad_IronSultan_100": 927954864, + "Guest_HG_Sinbad_IronSultan_130": 927942576, + "MNT_SweetRide": 1643297840, + "PP_FrilledDino": 1395342809, + "PP_Celestian": 95679303, + "PP_Sun_Angry": 1955190071, + "PP_Marshmallow": 1220667954, + "MNT_Umbrella_B": 923364822, + "MNT_Tamer": 1050737194, + "PP_BumbleBee_B": 858653433, + "MNT_PunkFlamingo": 1634690818, + "MNT_2P_WoolyRhino": 1395943031, + "PP_Retriever": 72842604, + "PP_Piggle_Caveman": 181356174, + "PP_DecennialDragon": 1396523337, + "MNT_Tiger_Rainbow": 515535412, + "MNT_CarrierGhosts": 1833039309, + "MNT_Sled": 617654308, + "Transformation_BG_RatThief_Death": 30691641, + "Transformation_BG_Elf_Storm": 44352983, + "Transformation_BG_WolfWarrior_Ice": 986304351, + "MNT_CarriorGhost_B": 1768732109, + "MNT_CarriorGhost_C": 1766634957, + "Transformation_BG_Colossus_Fire": 1318803522, + "Transformation_BG_Krok_Balance": 140952965, + "Guest_KM_Gobbler_Skinny_A_11": 773648065, + "Guest_KM_Robot_Candy_A_01": 480414124, + "Guest_KM_Robot_Candy_A_02": 530745772, + "Guest_KM_Robot_Candy_A_03": 513968556, + "Guest_KM_Robot_Candy_A_04": 430082476, + "Guest_KM_Robot_Candy_A_05": 413305260, + "Guest_KM_Gummy_Bear_A_01": 1940905059, + "Guest_KM_Gummy_Bear_D_01": 1940905011, + "Guest_KM_Gummy_Bear_E_01": 1940904995, + "Guest_KM_Gummy_Bear_A_02": 1941429347, + "Guest_KM_Gummy_Bear_D_02": 1941429299, + "Guest_KM_Gummy_Bear_E_02": 1941429283, + "Guest_KM_Gummy_Bear_B_01": 1940905043, + "Guest_KM_Gummy_Bear_B_02": 1941429331, + "Guest_KM_Gummy_Bear_B_03": 1941953619, + "Guest_KM_Gummy_BearHat_A_01": 853226448, + "Guest_KM_Gummy_BearHat_A_02": 853226460, + "Guest_KM_Gummy_Bunny_A_01": 324805042, + "Guest_KM_Gummy_Bunny_C_01": 324806066, + "Guest_KM_Gummy_Bunny_D_01": 324807602, + "Guest_KM_Gummy_Bunny_E_01": 324807090, + "Guest_KM_Gummy_Bunny_F_01": 324808626, + "Guest_KM_Gummy_BunnyUber_A_01": 525565930, + "Guest_KM_Gummy_Worm_A_01": 231044195, + "Guest_KM_Gummy_Worm_B_01": 231044179, + "Guest_KM_Gummy_Worm_C_01": 231044163, + "Guest_KM_Gummy_Worm_A_02": 232617059, + "Guest_KM_Gummy_Worm_B_02": 232617043, + "Guest_KM_Gummy_Worm_C_02": 232617027, + "Guest_KM_Gummy_Bear_F_01": 1940904979, + "Guest_KM_Gummy_Bear_F_02": 1941429267, + "Guest_KM_Gummy_Bunny_C_02": 274474418, + "Guest_KM_Robot_Candy_A_06": 463636908, + "Guest_KM_Alphoi_DarkF_A_01": 475441543, + "Guest_KM_Gobbler_Skinny_A_01": 773648069, + "Guest_KM_Gobbler_Skinny_A_02": 773648197, + "Guest_KM_Gobbler_Skinny_A_03": 773648325, + "Guest_KM_Gobbler_SkinnyF_A_01": 254411012, + "Guest_KM_Gobbler_Skinny_A_04": 773647429, + "Guest_KM_Gobbler_Skinny_A_05": 773647557, + "Guest_KM_Gobbler_Skinny_A_06": 773647685, + "Guest_KM_Gobbler_SkinnyF_A_02": 254423300, + "Guest_KM_Gobbler_Skinny_A_07": 773647813, + "Guest_KM_Gobbler_Skinny_A_08": 773646917, + "Guest_KM_Gobbler_Skinny_A_09": 773647045, + "Guest_KM_Gobbler_SkinnyF_A_03": 254419204, + "Guest_KM_Gobbler_Fat_A_01": 1440595742, + "Guest_KM_Gobbler_Fruit_B_01": 1236446660, + "Guest_KM_Gobbler_Fruit_A_01": 1235922372, + "Guest_KM_Gobbler_Guard_B_01": 1435667582, + "Guest_KM_Gobbler_Skinny_A_10": 773647937, + "Transformation_PlayerBabyCarrot": 1580787628, + "Transformation_PlayerDeadBeet": 1992261692, + "Transformation_PlayerDisparagus": 373797484, + "Transformation_PlayerSnowPeas": 634199102, + "PP_Snowflake": 2036143125, + "PP_GummyBear_Myth": 117787890, + "PP_GummyBear_Death": 236577760, + "PP_GummyBear_Balance": 2100524337, + "PP_GummyBear_Life": 118020336, + "PP_GummyBear_Fire": 117995748, + "PP_GummyBear_Storm": 247437198, + "PP_GummyBear_Ice": 122536570, + "MNT_SnowOwl": 1578473542, + "Guest_KM_Gummy_Bear_Uber_A_01": 1856208859, + "Guest_KM_Gummy_Bear_Uber_A_02": 1856196571, + "MNT_ChocolateMoose": 567538552, + "MNT_Ram_Candied": 1913603720, + "Guest_KM_Spider_Mage_A_01": 1529720120, + "Guest_KM_Spider_Mage_B_01": 1529719608, + "Guest_KM_Spider_Mage_C_01": 1529719096, + "Guest_KM_Spider_Mage_D_01": 1529718584, + "Guest_KM_Spider_Mage_E_01": 1529718072, + "PP_SpriteDark_Balance": 914900728, + "MNT_Tricycle": 991465753, + "Guest_Tri-Gauntlet-Protector-Gold": 2029952053, + "Guest_Tri-Gauntlet-FishbotGold": 130267882, + "Guest_HG-Clock-Clockworker-20": 281216243, + "Guest_HG-Clock-Clockworker-40": 281217011, + "Guest_HG-Clock-Clockworker-60": 281216755, + "Guest_HG-Clock-Clockworker-80": 281215475, + "Guest_HG-Clock-Clockworker-100": 283313523, + "Guest_HG-Clock-Clockworker-120": 283321715, + "Guest_HG-Clock-Lugs-20": 1452756928, + "Guest_HG-Clock-Lugs-40": 1452756960, + "Guest_HG-Clock-Lugs-60": 1452756992, + "Guest_HG-Clock-Lugs-80": 1452756768, + "Guest_HG-Clock-Lugs-100": 1452494736, + "Guest_HG-Clock-Lugs-120": 1452493712, + "Guest_HG-Clock-Lucia-20": 1041451626, + "Guest_HG-Clock-Lucia-40": 1041450602, + "Guest_HG-Clock-Lucia-60": 1041449578, + "Guest_HG-Clock-Lucia-80": 1041456746, + "Guest_HG-Clock-Lucia-100": 1049840746, + "Guest_HG-Clock-Lucia-120": 1049873514, + "Guest_KM_Gummy_Worm_A_03": 232092771, + "MNT_Scooter_E": 200254340, + "PP_WolfWarrior_Balance": 991302673, + "PP_PetGift": 1816280689, + "PP_RatThief": 1390866051, + "Guest_PL_Titan_Small_A": 2015819364, + "Guest_PL_Titan_Large_B": 699791264, + "Guest_PL_Titan_Medium_A": 326730424, + "PP_Draconian": 1631557208, + "MNT_Pantera_Astral": 106092538, + "PP_YearOx": 105653084, + "PP_WolfWarrior_Ice": 1043644935, + "PP_SpriteDark": 2031730054, + "PP_Brudel": 1355697143, + "MNT_Astronomers": 742732792, + "MNT_CouchPotato": 418050932, + "MNT_Flowerfarthing": 1396771051, + "MNT_Astronomers_Blue": 236532779, + "MNT_Astronomers_Rainbow": 4428274, + "PP_Astronomer": 782095961, + "Guest_KM_Gummy_Bunny_B_01": 324806578, + "Guest_KM_DeadBeets_A_01": 1396016635, + "MNT_GummyBunny": 775900704, + "MNT_GummyBunny_A": 775834080, + "MNT_GummyBunny_B": 775836128, + "MNT_GummyBunny_C": 775838176, + "Transformation_BG_Minotaur_Life": 1445109091, + "MNT_Armadillo": 825635826, + "PP_SootGremlin": 768969093, + "PP_RoadRunner": 2057802060, + "MNT_TinyTrolly": 160881792, + "PP_Frog_B": 1530124761, + "MNT_FjordDragon": 129204340, + "Transformation_BG_NinjaPig_Myth": 422914079, + "PP_CorgiPup": 1638656105, + "MNT_Skateboard": 728018224, + "PP_Krokomummy": 326396577, + "MNT_Vroom": 1736383110, + "MNT_PlayerWings_AtralRaven": 1514774167, + "PP_Blimp": 690882397, + "Guest_GH_WoodenSkeletonKey_Boar_Boss_Grey_01": 678055851, + "Guest_GH_StoneSkeletonKey_Boar_Boss_Grey_01": 571670691, + "Guest_GH_GoldSkeletonKey_Boar_Boss_Grey_01": 961728819, + "MNT_Cloud_Promo_AW_01": 2032670992, + "Guest_EM_Hornet_Burner_A_01": 1881854632, + "Guest_EM_Hornet_Burner_A_02": 1881854636, + "Guest_EM_Hornet_Zapper_A_01": 2058539689, + "Guest_EM_Hornet_Zapper_A_02": 2058539685, + "Guest_EM_Ant_Giant_D_01": 379386121, + "Guest_EM_Ant_Giant_A_02": 1768146677, + "Guest_EM_Ant_Giant_A_01": 1768097525, + "Guest_EM_Ant_Giant_B_01": 379386122, + "Guest_KR_Moth_Priest_G_Achera": 381233569, + "Guest_KR_BeeMonsterF_A": 135146211, + "Guest_KR_BeeMonsterF_A_Weak": 1824123847, + "Guest_KR_Bee_Warrior_A": 1569202664, + "Guest_KR_Bee_Warrior_B": 1569204200, + "Guest_KR_Bee_Warrior_C_BossDrones": 1217189631, + "Guest_KR_Bee_Warrior_D": 1569205224, + "Guest_KR_Bee_Warrior_E": 1569204712, + "Guest_KR_Bee_Warrior_G": 1569205736, + "Guest_KR_Bee_Warrior_G_BossFight": 1055035476, + "Guest_KR_Bee_Warrior_H": 1569207272, + "Guest_KR_Bee_Warrior_I": 1569206760, + "Guest_KR_Bee_Warrior_L": 1569209320, + "Guest_KR_Bee_Warrior_M": 1569208808, + "Guest_KR_DragonBeetle_Monster_A": 1777853782, + "Guest_KR_Hornet_Drone_A": 1161590757, + "Guest_KR_Hornet_Drone_B": 1161607141, + "Guest_KR_Hornet_Drone_C": 1161623525, + "Guest_KR_Hornet_Drone_D": 1161639909, + "Guest_KR_Hornet_Drone_E": 1161656293, + "Guest_KR_Lice_DeepSpawn_A": 761604959, + "Guest_KR_Mantis_HunterF_A": 820917199, + "Guest_KR_Mantis_HunterF_B": 871248847, + "Guest_KR_Mantis_HunterF_C": 854471631, + "Guest_KR_Mantis_HunterF_D": 904803279, + "Guest_KR_Mantis_HunterF_F": 938357711, + "Guest_KR_Mantis_HunterF_F_Driftwood": 2053608437, + "Guest_KR_Mantis_HunterF_G": 921580495, + "Guest_KR_Mantis_HunterF_H": 971912143, + "Guest_KR_Mantis_HunterF_I": 955134927, + "Guest_KR_Mantis_HunterF_I_Zuzka": 935478878, + "Guest_KR_Mantis_HunterF_J": 1005466575, + "Guest_KR_Mantis_HunterF_J_Zelda": 886910558, + "Guest_KR_Mantis_HunterF_K": 988689359, + "Guest_KR_Mantis_HunterF_K_LongShd": 1767574336, + "Guest_KR_Mantis_HunterF_L": 1039021007, + "Guest_KR_Mantis_HunterF_M": 1022243791, + "Guest_KR_Mantis_HunterF_P_Bossfight": 1731428987, + "Guest_KR_Mantis_HunterF_Q": 552481743, + "Guest_KR_Mantis_HunterF_R": 602813391, + "Guest_KR_Mantis_HunterF_S": 586036175, + "Guest_KR_Mantis_HunterF_SecondColumnCpt_A": 1354033994, + "Guest_KR_Mantis_HunterF_T": 636367823, + "Guest_KR_Mantis_HunterF_Tribute": 1946371041, + "Guest_KR_Mantis_HunterF_U": 619590607, + "Guest_KR_Mantis_HunterF_V": 669922255, + "Guest_KR_Mantis_HunterF_W": 653145039, + "Guest_KR_Mantis_HunterF_Y": 686699471, + "Guest_KR_Mantis_HunterF_Z_Officer": 206016474, + "Guest_KR_Mantis_ProphetF_B": 1791139097, + "Guest_KR_Mantis_ProphetF_C": 1254268185, + "Guest_KR_Milipede_Warrior_A": 410726278, + "Guest_KR_Milipede_Warrior_B": 410726282, + "Guest_KR_Milipede_Warrior_C": 410726286, + "Guest_KR_Milipede_Warrior_D": 410726290, + "Guest_KR_Milipede_Warrior_H": 410726306, + "Guest_KR_Milipede_Warrior_J": 410726314, + "Guest_KR_Milipede_Warrior_K": 410726318, + "Guest_KR_Moth_Priest_A": 1421532604, + "Guest_KR_Moth_Priest_B": 1421532092, + "Guest_KR_Moth_Priest_C": 1421531580, + "Guest_KR_Moth_Priest_D": 1421531068, + "Guest_KR_Moth_Priest_D_Drepa": 1483393420, + "Guest_KR_Moth_Priest_E": 1421530556, + "Guest_KR_Moth_Priest_F": 1421530044, + "Guest_KR_Mantis_HunterF_Z": 737031119, + "Guest_KR_Roach_AntLion_A": 1860517987, + "Guest_KR_Roach_AntLion_B_Bossfight": 993284625, + "Guest_KR_Roach_AntLion_C": 1861566563, + "Guest_KR_Roach_Cook_A": 259847495, + "Guest_KR_Roach_Glutton_B": 249524334, + "Guest_KR_Roach_WaterBug_A": 1795473599, + "Guest_KR_Roach_WaterBug_B": 1745141951, + "Guest_MR_Beetle_Scarab_A_01": 1789741503, + "Guest_MR_Beetle_Scarab_A_02": 1789741491, + "Guest_MR_Beetle_Scarab_B_01": 1790265791, + "Guest_ZF-Goliath-R10-Boss-01": 7034074, + "Guest_ZF-Goliath-R10-Boss-02": 7034202, + "Guest_ZF-Goliath-R10-Boss-03": 7034330, + "Guest_ZF-Goliath-R10-Boss": 1603576807, + "Guest_ZF-Goliath-R11-Boss-01": 2140449574, + "Guest_ZF-Goliath-R11-Boss-02": 2140449446, + "Guest_ZF-Goliath-R11-Boss-03": 2140449318, + "Guest_ME1_Ant_Aunt_A": 707251855, + "Guest_ME1_Ant_Aunt_B": 1440231794, + "Guest_CC_Fly_Worker_A_01": 1497784524, + "Guest_CC_Roach_Worker_A_01": 1026321602, + "Guest_CC_Roach_Lieutenant_A_01": 1081690299, + "Guest_CC_Roach_Lieutenant_B_01": 1081690295, + "Guest_CC_Roach_Don_A_01": 547836893, + "Guest_CC_Roach_BBug_A_01": 1021150157, + "Guest_CC_Roach_RoachSteady_A_01": 859409247, + "Guest_Draconian-Caster-Yellow-Boss-R8": 1016221419, + "Guest_Draconian-Zombie-R8-2-1": 1226055265, + "Guest_Draconian-Zombie-R8-2": 1226115297, + "Guest_Draconian-Caster-Green-R7": 2143342719, + "Guest_Draconian-Warrior-Gold-Boss-R8": 1044388248, + "Guest_Draconian-Caster-Gray-R7": 95878769, + "Guest_DS-Boss-MAW": 1676071241, + "Guest_Draconian-Zombie-R8-1": 1226115309, + "Guest_Draconian-Warrior-Purple-Boss-R7": 601813964, + "Guest_Draconian-Caster-Tan-Boss-R7": 1973339532, + "Guest_Draconian-Caster-Blue-R6": 1684210173, + "Guest_Draconian-Caster-Yellow-R8": 2129956646, + "Guest_Draconian-Warrior-Red-R7": 521861944, + "Guest_Draconian-Warrior-Tan-R6": 1726416112, + "Guest_Draconian-Warrior-Purple-R8": 1896270341, + "Guest_Draconian-Caster-Blue-Boss-R7": 401581134, + "Guest_Draconian-Zombie-R8": 384497496, + "Guest_GH2-Draconian-HENCH-R10": 1149202878, + "Guest_GH2-Draconian-BOSS-R10": 2114378473, + "Guest_G14-DM-Draconian_Boss": 490246211, + "Guest_G14-DM-Draconian_Storm": 2035239226, + "Guest_G14-DM-Draconian_Ice": 782200563, + "Guest_G14-DM-Draconian_Malistaire_M": 1904691727, + "Guest_G14-DM-Draconian_Malistaire_S": 1904685583, + "Guest_G14-DM-Draconian_Malistaire_D": 1904700943, + "Guest_G14-DM-Draconian_Malistaire": 1904736751, + "Guest_G14-DM-Draconian_Malistaire_B": 1904702991, + "Guest_G14-DM-Draconian_Malistaire_I": 1904695823, + "Guest_G14-DM-Draconian_Malistaire_L": 1904692751, + "Guest_G14-DM-Draconian_Malistaire_F": 1904698895, + "Guest_Draconian-PW-Gauntlet-Boss": 493080513, + "Guest_CC_Draconian_A_01": 551348115, + "Guest_AZ-Parasaur-Undead-E": 2041242846, + "Guest_AZ-Parasaur-drkPriestF-F": 898239615, + "Guest_EM_Parasaur_DrkPriestF_A_01": 1007099606, + "Guest_EM_Parasaur_DrkPriestF_A_02": 1007099605, + "Guest_AZ-Parasaur-drkPriestF-D": 898501759, + "Guest_AZ-Parasaur-drkPriestF-E": 898370687, + "Guest_AZ-Parasaur-drkPriestF-A": 897846399, + "Guest_AZ-Parasaur-Undead-B": 1716853538, + "Guest_AZ-Parasaur-Undead-A": 106240802, + "Guest_AZ-Parasaur-Undead-G": 967501022, + "Guest_AZ-Parasaur-PriestF-D": 1177445525, + "Guest_AZ-Parasaur-Undead-C": 1179982626, + "Guest_AZ-Parasaur-drkPriestF-C": 897584255, + "Guest_AZ-Parasaur-Undead-SkurkisMinion": 1414766977, + "Guest_AZ-Parasaur-drkPriestF-B": 897715327, + "Guest_AZ-Parasaur-drkPriestF-B-Script": 1414847875, + "Guest_AZ_Parasaur_Priest_A_Boss_01": 890025421, + "Guest_AZ-Parasaur-Undead-D": 1504371934, + "Guest_AZ-Pteranodon-Knight-D": 1127364049, + "Guest_AZ-StoneSkeletonKey-Ixcax-Cursedwing": 699239601, + "Guest_AZ-Pteranodon-Knight-E": 1127363921, + "Guest_AZ-Pteranodon-Knight-F": 1127363793, + "Guest_AZ-Pteranodon-Knight-A-PageEvent": 942589002, + "Guest_AZ-StoneSkeletonKey-Minion-Death": 311645584, + "Guest_AZ-Pteranodon-Knight-A": 1127364433, + "Guest_AZ-Raptor-Wraith-A": 585729247, + "Guest_AZ-Raptor-Undead-D": 893623689, + "Guest_G14-HS-Ifzt": 1914694612, + "Guest_AZ-Raptor-Warrior-A": 855749884, + "Guest_AZ-Raptor-Undead-C": 897293705, + "Guest_AZ-Raptor-Undead-B": 896769417, + "Guest_AZ-Raptor-Undead-F": 894672265, + "Guest_AZ-Raptor-Warrior-F": 872527100, + "Guest_AZ-Raptor-Warrior-H": 973190396, + "Guest_AZ-Tritops-Warrior-I": 1942669769, + "Guest_AZ-Tritops-Undead-H": 1215305911, + "Guest_AZ-Tritops-Undead-E": 1164974263, + "Guest_AZ-Tritops-SpkWarrior-A": 860850257, + "Guest_AZ-Tritops-SpkWarrior-B": 860862545, + "Guest_AZ-Tritops-Undead-F": 1181751479, + "Guest_AZ-Tritops-Warrior-K": 868927945, + "Guest_AZ-Tritops-Undead-G": 1198528695, + "Guest_AZ-Tritops-Mummy-A": 1912444877, + "Guest_AZ-Tritops-Warrior-G": 1278555704, + "Guest_AZ-Tritops-Undead-D": 1148197047, + "Guest_AZ-Tritops-Undead-A": 1097865399, + "Guest_AZ-Tritops-SpkChief-B": 2096319577, + "Guest_AZ-Tritops-Mummy-B": 1910872013, + "Guest_AZ-Tritops-Warrior-H": 1405798857, + "Guest_AZ-Dino-Undead-A": 508678670, + "Guest_AZ-Dino-Undead-B": 508679182, + "Guest_AZ-Dino-Undead-D": 508680206, + "Guest_KR_Dino_Undead_A": 1638800628, + "Guest_KR_Dino_Undead_Minion_A": 892450235, + "MNT_HayRideTruck": 75377404, + "MNT_ShadowSpiderForm": 1439860426, + "Transformation_BG_Draconian_Death": 794598804, + "PP_BabyOrca": 1056061090, + "Transformation_BG_Cyclops_Fire": 638854828, + "Transformation_BG_Fairy_Ice": 874078461, + "PP_SpriteLife": 1824998010, + "PP_Raccoon": 1107326808, + "PP_FireKitten": 593048189, + "MNT_SkeletalDuck": 1306273036, + "PP_VampireSquid": 431023109, + "PP_CottonCandy": 891201813, + "PP_ThreeHeadGoat": 1282096939, + "PP_EyeBot": 260189248, + "MNT_DeathBoat": 1444454568, + "MNT_Lemuria": 908974762, + "MNT_DeathBoat_B": 1444456538, + "MNT_DeathBoat_C": 1444456474, + "MNT_Spooky3": 1667775622, + "MNT_PresentBox": 122082000, + "MNT_Orca": 1726961653, + "Guest_LM_Golem_Steel_A_01": 19551853, + "Guest_LM_Golem_Steel_A_02": 36329069, + "Guest_LM_EyeBot_A_01_Death": 380508535, + "Guest_LM_EyeBot_A_01_Myth": 167840640, + "PP_ThreeHeadGoat_B": 1209286443, + "PP_ThreeHeadGoat_C": 1211383595, + "Guest_KR_Eel_Whirligig_A": 1062268734, + "Guest_KR_Goliath_Behemoth_A": 1231139987, + "Guest_KR_Goliath_Behemoth_C": 1231139995, + "Guest_KR_Goliath_Behemoth_D": 1231139975, + "Guest_KR_Goliath_Behemoth_E": 1231139971, + "Guest_KR_Goliath_Behemoth_H": 1231140023, + "Guest_KR_Goliath_Crusher_C": 1651720060, + "Guest_KR_Goliath_Crusher_D": 2106376324, + "Guest_KR_Goliath_Crusher_F": 1032634500, + "Guest_KR_Goliath_Crusher_G": 495763588, + "Guest_KR_Goliath_Crusher_K": 1651720059, + "Guest_AZ-Goliath-Crusher-A": 1874784966, + "Guest_AZ-Goliath-Crusher-B": 264172230, + "Guest_AZ-Goliath-Crusher-C": 801043142, + "Guest_AZ-Goliath-Crusher-D": 809569594, + "Guest_AZ-Goliath-Crusher-E": 272698682, + "Guest_HG_AKT_Butterfly_Time_A_25": 1788523059, + "Guest_HG_AKT_Butterfly_Time_A_50": 1130017331, + "Guest_HG_AKT_Butterfly_Time_A_75": 1809494579, + "Guest_HG_AKT_Butterfly_Time_A_100": 1113240099, + "Guest_HG_AKT_Butterfly_Time_A_130": 1515893283, + "MNT_DeathBoat_D": 1444456922, + "Guest_KR_RhinoBeetle_Sun_A_Bossfight": 47895417, + "Guest_KR_RhinoBeetle_Star_A": 1947510103, + "Guest_KR_RhinoBeetle_Moon_A": 1751275863, + "Guest_ME1_Clockwork_Marine_A": 1481452452, + "Guest_ME1_Clockwork_Marine_B": 1481452068, + "Guest_CC_GoldSkeletonKey_Lice_DeepSpawn_B": 1306132994, + "Guest_KR_DamdinBazar_A_Bossfight": 1333596311, + "Guest_DS-Minion-MAW2": 356796677, + "Guest_KH-Wyrmling-1": 116330513, + "Guest_KH-Wyrmling-20": 183439385, + "Guest_KH-Wyrmling-40": 317657113, + "Guest_KH-Wyrmling-60": 451874841, + "Guest_KH-Wyrmling-80": 586092569, + "Guest_PL_Polar_Bear_Solider_C": 1785662565, + "Guest_Skeleton-Silver-WCBoss-L01": 17766963, + "Guest_Banshee-Red-Elite-L24_B": 1902069117, + "Transformation_BG_WolfWarrior_Myth": 339098032, + "Transformation_BG_RatThief_Balance": 881728218, + "Transformation_BG_Colossus_Storm": 593527492, + "Transformation_BG_Elf_Life": 347405087, + "Transformation_BG_Minotaur_Ice": 1197752291, + "MNT_TRex_B": 660285500, + "PP_SpriteDark_Ice": 2036248504, + "MNT_RollingBall": 1658139390, + "Guest_LM_TRex_Base_A_03": 1378630657, + "Guest_LM_TRex_Base_A_04": 1378745345, + "Guest_LM_TRex_Base_A_05": 1378728961, + "Guest_LM_TRex_Base_A_01": 1378663425, + "Guest_LM_TRex_Base_A_02": 1378647041, + "Guest_LM_TRex_Cyborg_A_01": 151609741, + "Guest_LM_TRex_Cyborg_A_02": 168386957, + "Guest_LM_TRex_Cyborg_A_03": 185164173, + "Guest_LM_TRex_Cyborg_B_01": 151611277, + "Guest_LM_TRex_Cyborg_D_01": 151612301, + "Guest_LM_TRex_Cyborg_E_01": 151611789, + "Guest_LM_TRex_Cyborg_C_01": 151610765, + "Guest_LM_Draconian_Base_A_01": 1607373112, + "Guest_LM_EyeBot_B_01": 1085543056, + "Guest_LM_Drone_Eye_C_01": 916954037, + "Guest_LM_Drone_Eye_D_01": 1230529608, + "Guest_LM_Drone_Eye_D_02": 1230545992, + "Guest_LM_Drone_Eye_D_04": 1230578760, + "Guest_LM_Drone_Eye_D_03": 1230562376, + "Guest_LM_Drone_Eye_A_01": 916954038, + "Guest_LM_Drone_Eye_A_02": 916937654, + "Guest_LM_Drone_Eye_B_01": 1230529611, + "Guest_LM_Drone_Eye_D_05": 1230595144, + "Guest_LM_Drone_Eye_D_07": 1230627912, + "Guest_LM_Drone_Eye_D_08": 1230644296, + "Guest_LM_Drone_Eye_A_03": 916921270, + "Guest_LM_Drone_Eye_A_04": 916904886, + "Guest_LM_Drone_Eye_C_02": 916937653, + "Guest_LM_EyeBot_B_02": 1061940593, + "Guest_LM_EyeBot_B_03": 1085543055, + "Guest_LM_EyeBot_B_04": 1061940594, + "Guest_LM_Drone_Eye_C_03": 916921269, + "Guest_LM_Robot_Kit10_A_01": 199936400, + "Guest_LM_Colossus_Mander_A_01": 2107529026, + "Guest_LM_Robot_Future_A_01": 998840846, + "Guest_LM_Robot_FutureBIG_A_01": 340408568, + "Guest_LM_Robot_FutureBIG_A_02": 340396280, + "Guest_LM_Robot_FutureBIG_A_03": 340400376, + "Guest_LM_Robot_OldOne_A_01": 779070973, + "Guest_LM_Robot_OldOne_A_02": 1315941885, + "Guest_LM_Millipede_Centi_A_01": 168575797, + "Guest_LM_Millipede_Centi_A_03": 168583989, + "Guest_LM_Millipede_Centi_A_02": 168588085, + "Guest_LM_Millipede_Centi_A_04": 168563509, + "Guest_LM_Moth_Sorcerer_A_01": 228191136, + "Guest_LM_Boar_Barbarian_A_01": 1238634912, + "Guest_LM_Boar_Barbarian_A_02": 1238634528, + "Guest_LM_Boar_Barbarian_A_03": 1238634656, + "Guest_LM_Boar_Barbarian_A_04": 1238635296, + "Guest_LM_Boar_Barbarian_A_05": 1238635424, + "Guest_LM_Boar_Chief_A_01": 357051311, + "Guest_LM_Fungus_Humango_A_01": 1398460044, + "Guest_LM_Fungus_Humango_A_02": 1398460172, + "Guest_LM_Treant_Base_A_01": 1658172241, + "Guest_LM_GiantTree_EvilRoots_A_01": 282225934, + "Guest_LM_PA_GreenMan_A_01": 67705044, + "Guest_LM_Fungus_Humango_B_01": 1348128396, + "Guest_LM_Fungus_Humango_A_03": 1398460300, + "Guest_LM_Fungus_Man_C_01": 1648824156, + "Guest_LM_Fungus_Man_C_02": 1650397020, + "Guest_LM_Rhino_Zombie_A_01": 248513993, + "Guest_LM_Malughast_Base_01": 883820436, + "Guest_LM_Malughast_Base_02": 1420691348, + "Guest_LM_Lemur_HierarchF_H_04": 231562115, + "Guest_LM_Malughast_Base_03": 1957562260, + "Guest_LM_Malughast_Base_05": 1263663212, + "Guest_LM_Malughast_Base_06": 726792300, + "Guest_LM_Malughast_Base_08": 346949523, + "Guest_LM_Malughast_Base_09": 883820435, + "Guest_LM_Malughast_Base_04": 1800534124, + "Guest_LM_Minotaur_Skeleton_A_01": 1865122824, + "Guest_LM_Lemur_Wild_B_03": 1783764037, + "Guest_LM_Lemur_HierarchF_H_01": 231541635, + "Guest_LM_Lemur_HierarchF_H_02": 231553923, + "Guest_LM_Mander_Warrior_A_01": 1651245419, + "Guest_LM_Mander_Warrior_A_02": 1651245291, + "Guest_LM_Mander_Warrior_B_01": 1634468203, + "Guest_LM_Mander_Warrior_B_02": 1634468075, + "Guest_LM_Mander_Warrior_A_03": 1651245163, + "Guest_LM_Mander_Warrior_B_03": 1634467947, + "Guest_LM_Mander_Warrior_A_06": 1651245803, + "Guest_LM_Mander_Warrior_A_05": 1651245931, + "Guest_LM_Mander_Mummy_B_01": 1844111521, + "Guest_LM_Mander_Hero_B_01": 865113284, + "MNT_HolidayHippogriff": 938892112, + "MNT_Sabertooth_Ice": 1870381696, + "PP_FenrisWolf_Bantam": 776647759, + "MNT_JetPack": 1986300552, + "MNT_Scooter_F": 1005560708, + "PP_FossaKitten_A": 431748212, + "PP_Elfvis": 147991405, + "Guest_LM_Chicken_Hero_A_01": 1308728300, + "Guest_LM_Horse_Explorer_A_01": 434405482, + "Guest_LM_Duck_HeroineF_A_01": 133199186, + "Guest_LM_Crane_Hero_A_01": 204272548, + "Guest_LM_Deer_HeroineF_A_01": 1800374959, + "Guest_LM_Deer_Hero_A_01": 223109503, + "Guest_LM_Dog_Hero_A_01": 1434615064, + "PP_YearTiger": 777048708, + "MNT_Barrel": 3576425, + "MNT_Krampus": 404117611, + "PP_ChineseTigerCub": 1256032005, + "PP_Lemur": 565774155, + "PP_Robot": 1089075331, + "PP_Capybara": 451970762, + "Guest_LM_Ghoul_Base_A_01": 1822415945, + "Guest_LM_Lemur_HierarchF_H_03": 231549827, + "Guest_LM_Ghoul_Base_A_02": 1820843081, + "Guest_LM_Ghoul_Base_A_03": 1821367369, + "MNT_SpringSoF2022": 1685679511, + "MNT_WarElephant": 875015497, + "PP_Strix": 514230046, + "MNT_Beachball": 791896033, + "MNT_Blank": 633398131, + "MNT_CardboardFlier": 1646636689, + "MNT_LochMonster": 879660722, + "Transformation_BG_Krok_Death": 1395067182, + "Transformation_BG_Draconian_Fire": 1551581732, + "PP_Scotty": 1708580475, + "Guest_KR_Mice_Knight_A": 480101508, + "PP_Peacock": 1178721112, + "MNT_PoodleMoth": 975420235, + "PP_Hummingbird": 624666906, + "PP_WolfWarrior_Myth": 470737416, + "Guest_HG_UFD_Ghost_QueenF_A_100": 795323059, + "Guest_HG_UFD_Ghost_QueenF_A_50": 728230579, + "Guest_HG_UFD_Pirate_UndeadHighland_A_Balance_150": 201145133, + "Guest_HG_UFD_Pirate_UndeadHighland_A_Balance_100": 201144941, + "Guest_HG_UFD_Pirate_UndeadHighland_A_Balance_50": 201177701, + "Guest_HG_UFD_Pirate_UndeadHighland_A_Star_150": 1329885920, + "Guest_HG_UFD_Pirate_UndeadHighland_A_Star_100": 1304720096, + "Guest_HG_UFD_Pirate_UndeadHighland_A_Star_50": 1305768671, + "Guest_HG_UFD_Pirate_UndeadHighland_A_Shadow_150": 1263689971, + "Guest_HG_UFD_Pirate_UndeadHighland_A_Shadow_100": 1263689977, + "Guest_HG_UFD_Pirate_UndeadHighland_A_Shadow_50": 189949177, + "Guest_HG_UFD_Kelpie_Warrior_A_150": 54296095, + "Guest_HG_UFD_Kelpie_Warrior_A_100": 725384735, + "Guest_HG_UFD_Kelpie_Warrior_A_50": 708607503, + "Guest_HG_UFD_Pirate_UndeadHighland_B_150": 1099317831, + "Guest_HG_UFD_Pirate_UndeadHighland_B_100": 25576008, + "Guest_HG_UFD_Pirate_UndeadHighland_B_50": 159793864, + "Guest_HG_UFD_Ghost_QueenF_A_150": 795716275, + "PP_SpiderMinion": 557357331, + "MNT_Vines_Rainbow": 1587180338, + "MNT_YoungDrake": 1279496198, + "PP_Pet_Coconut": 444388490, + "DragonKI": 1490194214, + "PP_Sharkfish": 601628284, + "PP_MimicCake": 48071878, + "Guest_AQ-Bronze-Eagle": 375279744, + "Guest_Spider-Brown-L26": 2128680185, + "Guest_KR_Spider_Giant_D": 744401035, + "Guest_Wizard-Female-Band-Blue-R8": 1447486557, + "Guest_CC_Human_DSCrusaderF_A_01": 726538068, + "Guest_WC_Scarecrow_A_01": 867491011, + "Guest_WC_Banshee_A_01": 1433786463, + "Guest_WC_LostSoul_A_01": 796936146, + "PP_Fairy_Myth": 1117624344, + "PP_SpriteDark_Myth": 1884257976, + "BG_CyclopsLife_A": 944091673, + "Transformation_BG_NinjaPig_Storm": 2005137181, + "Transformation_BG_Fairy_Myth": 1880704188, + "Transformation_BG_Cyclops_Life": 638936708, + "Guest_AQ-Eagle-Praetorian": 1988013806, + "Guest_KM_BabyCarrot_A_01": 766239512, + "Guest_G14-DM-Gargoyle": 282898047, + "Guest_MR_Durvish_Sergeant_A_Boss_01": 1532609325, + "Guest_Cyclops-RedHelmet-KTBoss-L28": 2072371506, + "Guest_EM_Pig_Singer_A_01": 698597069, + "Guest_EM_Pig_Captain_A": 977505995, + "Guest_EM_Pig_Crewman_A": 465576459, + "PP_ChipmunkConductor": 1089819900, + "PP_LuckyCat": 1109326826, + "MNT_ImpCar": 1736092191, + "MNT_Book": 1547655078, + "MNT_JackoLantern": 649919658, + "MNT_Zheng": 742453108, + "MNT_Train": 413197899, + "MNT_Cerberus": 552686313, + "PP_Coconut": 1122741587, + "Transformation_Statue": 1153168084, + "Transformation_Nullity": 622504394, + "PP_Irk": 1825277392, + "Guest_Wyrmling-Fire-R8-1": 531485009, + "MNT_WolfLowPoly_A": 1947890962, + "MNT_WolfLowPoly_B": 1947825426, + "Transformation_BG_RatThief_Fire": 1169330235, + "Transformation_BG_WolfWarrior_Death": 159966683, + "Transformation_BG_Minotaur_Balance": 657855108, + "Transformation_BG_Draconian_Ice": 1907339814, + "Transformation_BG_Colossus_Myth": 1305894338, + "Transformation_NV_Penguin": 1757096851, + "Transformation_NV_Unicorn": 60447768, + "Transformation_NV_Monkey": 1379873688, + "Transformation_NV_Dog": 1961288968, + "PP_Wolf_Storm": 455227171, + "PP_WoodDuck": 1680912895, + "MNT_RockingHorse": 1205280059, + "MNT_SOF2022_Car": 219868812, + "PP_Buffaloon": 796152873, + "MNT_Steamboat": 1969530127, + "MNT_FelizNavidog": 847046394, + "PP_Mustache": 1571079379, + "Guest_DD-DS01-Skeleton-Pirate-20": 226826848, + "Guest_DD-DS01-Skeleton-Pirate-40": 201661024, + "Guest_DD-DS01-Skeleton-Pirate-60": 210049632, + "Guest_DD-DS01-Skeleton-Pirate-80": 251992672, + "Guest_DD-DS01-Skeleton-Pirate": 1994450336, + "Guest_DD-DS01-Shadow-Minion-Fire": 1074864956, + "Guest_DD-DS01-Shadow-Minion-Ice": 1841681214, + "Guest_DD-DS01-Shadow-Minion-Fire-20": 1074880881, + "Guest_DD-DS01-Shadow-Minion-Fire-40": 1074880945, + "Guest_DD-DS01-Shadow-Minion-Ice-20": 96850220, + "Guest_DD-DS01-Shadow-Minion-Ice-40": 96850218, + "Guest_DD-DS01-Shadow-Minion-Fire-60": 1074881009, + "Guest_DD-DS01-Shadow-Minion-Ice-60": 96850216, + "Guest_DD-DS01-Shadow-Minion-Fire-80": 1074880561, + "Guest_DD-DS01-Shadow-Minion-Ice-80": 96850214, + "Guest_SC-SpectreOfB-1": 1471950935, + "Guest_SC-SpectreOfB-20": 1471942759, + "Guest_SC-SpectreOfB-40": 1471942663, + "Guest_SC-SpectreOfB-60": 1471942695, + "Guest_SC-SpectreOfB-80": 1471942855, + "Guest_KH-Skeleton-Ice-60": 2108358962, + "Guest_KH-Skeleton-Ice-40": 2108391730, + "Guest_KH-Skeleton-Ice-20": 2108293426, + "Guest_KH-Skeleton-Ice-1": 2099953970, + "Guest_KH-Skeleton-Ice-80": 2108195122, + "Guest_KH-Undead-Caster-60": 1662604496, + "Guest_KH-Undead-Caster-40": 1661555920, + "Guest_KH-Undead-Caster-20": 1664701648, + "Guest_KH-Undead-Caster-1": 1931564240, + "Guest_KH-Undead-Caster-80": 1667847376, + "Guest_DD-PA01-DeadBeets": 1664999367, + "Guest_DD-PA01-DeadBeets-20": 1901453253, + "Guest_DD-PA01-DeadBeets-40": 2002116549, + "Guest_DD-PA01-DeadBeets-60": 1968562117, + "Guest_DD-PA01-DeadBeets-80": 2069225413, + "Guest_DD-PA01-Disparagus": 1865816461, + "Guest_DD-PA01-Disparagus-20": 573970895, + "Guest_DD-PA01-Disparagus-40": 499770929, + "Guest_DD-PA01-Disparagus-60": 1573512753, + "Guest_DD-PA01-Disparagus-80": 1647712718, + "Guest_DD-PA01-MeanestFlyTrap": 2001546861, + "Guest_DD-PA01-MeanestFlyTrap-20": 1936326253, + "Guest_DD-PA01-MeanestFlyTrap-40": 1936064109, + "Guest_DD-PA01-MeanestFlyTrap-60": 1935801965, + "Guest_DD-PA01-MeanestFlyTrap-80": 1937636973, + "Guest_HG-MD-MacDeath-20": 182639104, + "Guest_HG-MD-MacDeath-40": 182638080, + "Guest_HG-MD-MacDeath-60": 182637056, + "Guest_HG-MD-MacDeath-80": 182636032, + "Guest_HG-MD-MacDeath-100": 174252032, + "Guest_HG-MD-MacDeath-130": 174202880, + "Guest_HG_Sinbad_Skeleton_25": 494617874, + "Guest_HG_Sinbad_Skeleton_50": 42253050, + "Guest_HG_Sinbad_Skeleton_75": 1115994862, + "Guest_HG_Sinbad_Skeleton_100": 2105232646, + "Guest_HG_Sinbad_Skeleton_130": 2105232650, + "Guest_HG_Sinbad_Skeleton_25_02": 492722834, + "Guest_HG_Sinbad_Skeleton_50_02": 44148090, + "Guest_HG_Sinbad_Skeleton_75_02": 1117889902, + "Guest_HG_Sinbad_Skeleton_100_02": 2044247302, + "Guest_HG_Sinbad_Skeleton_130_02": 2044247306, + "Guest_DD-AV01-WyrmBoss": 1648677986, + "Guest_DD-AV01-WyrmBoss-20": 1926730850, + "Guest_DD-AV01-WyrmBoss-40": 1927779426, + "Guest_DD-AV01-WyrmBoss-60": 1928828002, + "Guest_DD-AV01-WyrmBoss-80": 1921487970, + "Guest_RH-Wyrm-Boss-01": 1027277645, + "Guest_RH-Wyrm-Boss-20": 1027277660, + "Guest_RH-Wyrm-Boss-40": 1027277663, + "Guest_RH-Wyrm-Boss-60": 1027277662, + "Guest_RH-Wyrm-Boss-80": 1027277657, + "Guest_HG_Sinbad_Wyrm_25": 1101443356, + "Guest_HG_Sinbad_Wyrm_50": 1101528860, + "Guest_HG_Sinbad_Wyrm_75": 1101445916, + "Guest_HG_Sinbad_Wyrm_100": 1093138204, + "Guest_HG_Sinbad_Wyrm_130": 1093089052, + "Guest_KH-Treant-1": 2001244331, + "Guest_KH-Treant-60": 1968148651, + "Guest_KH-Treant-40": 1968017579, + "Guest_KH-Treant-20": 1967886507, + "Guest_KH-Treant-80": 1967231147, + "Guest_DD-PA01-ForestGrump": 1969685870, + "Guest_DD-PA01-ForestGrump-20": 714666713, + "Guest_DD-PA01-ForestGrump-40": 714666689, + "Guest_DD-PA01-ForestGrump-60": 714666697, + "Guest_DD-PA01-ForestGrump-80": 714666737, + "Guest_DD-PA01-ForestNymphs": 227087348, + "Guest_DD-PA01-ForestNymphs-20": 227023552, + "Guest_DD-PA01-ForestNymphs-60": 227023040, + "Guest_DD-PA01-ForestNymphs-80": 227024832, + "Guest_SC-Pig-BalanceWizardA-1": 475456968, + "Guest_SC-Pig-BalanceWizardA-20": 477550024, + "Guest_SC-Pig-BalanceWizardA-40": 477541832, + "Guest_SC-Pig-BalanceWizardA-60": 477533640, + "Guest_SC-Pig-BalanceWizardA-80": 477525448, + "Guest_SC-Pig-BalanceWizardB-1": 475456964, + "Guest_SC-Pig-BalanceWizardB-20": 477550020, + "Guest_SC-Pig-BalanceWizardB-40": 477541828, + "Guest_SC-Pig-BalanceWizardB-60": 477533636, + "Guest_SC-Pig-BalanceWizardB-80": 477525444, + "Guest_SC-Pig-BalanceWizardC-1": 475456960, + "Guest_SC-Pig-BalanceWizardC-20": 477550016, + "Guest_SC-Pig-FireWizard-1": 2048176291, + "Guest_SC-Pig-FireWizard-20": 2031399073, + "Guest_SC-Pig-FireWizard-40": 2132062369, + "Guest_SC-Pig-FireWizard-60": 2098507937, + "Guest_SC-Pig-FireWizard-80": 1930735777, + "Guest_SC-Pig-IceWizardF-1": 1178687744, + "Guest_SC-Pig-IceWizardF-20": 1161910526, + "Guest_SC-Pig-IceWizardF-40": 1128356094, + "Guest_SC-Pig-IceWizardF-60": 1094801662, + "Guest_SC-Pig-IceWizardF-80": 1329682686, + "Guest_SC-Pig-MythWizard-1": 2048492725, + "Guest_SC-Pig-MythWizard-20": 2031715511, + "Guest_SC-Pig-MythWizard-40": 2132378807, + "Guest_SC-Pig-MythWizard-60": 2098824375, + "Guest_SC-Pig-MythWizard-80": 1931052215, + "Guest_SC-Pig-StormWizardF-1": 1743849420, + "Guest_SC-Pig-StormWizardF-20": 1743851464, + "Guest_SC-Pig-StormWizardF-40": 1743851488, + "Guest_SC-Pig-StormWizardF-60": 1743851480, + "Guest_SC-Pig-StormWizardF-80": 1743851504, + "Guest_KH-Pig-Bandit-Lord-1": 1080496628, + "Guest_KH-Pig-Bandit-Lord-20": 543625652, + "Guest_KH-Pig-Bandit-Lord-40": 530116172, + "Guest_KH-Pig-Bandit-Lord-60": 1603857996, + "Guest_KH-Pig-Bandit-Lord-80": 1617367475, + "Guest_KH-Pig-Bandit-Ninja-1": 1945100907, + "Guest_KH-Pig-Bandit-Ninja-20": 1945102951, + "Guest_KH-Pig-Bandit-Ninja-40": 1945102975, + "Guest_KH-Pig-Bandit-Ninja-60": 1945102967, + "Guest_KH-Pig-Bandit-Ninja-80": 1945102927, + "Guest_KH-Pig-War-Caster-1": 656859765, + "Guest_KH-Pig-War-Caster-20": 606528119, + "Guest_KH-Pig-War-Caster-40": 572973687, + "Guest_KH-Pig-War-Caster-60": 539419255, + "Guest_KH-Pig-War-Caster-80": 774300279, + "Guest_KH-Pig-War-Warrior-Boss-1": 16342355, + "Guest_KH-Pig-War-Warrior-Boss-20": 2143724205, + "Guest_KH-Pig-War-Warrior-Boss-40": 2118558381, + "Guest_KH-Pig-War-Warrior-Boss-60": 2126946989, + "Guest_KH-Pig-War-Warrior-Boss-80": 2101781165, + "Guest_SC-Pig-BalanceWizardC-40": 477541824, + "Guest_SC-Pig-BalanceWizardC-60": 477533632, + "Guest_SC-Pig-BalanceWizardC-80": 477525440, + "Guest_KH-Helephant-Death-20": 1109389719, + "Guest_KH-Helephant-Death-40": 2111835753, + "Guest_KH-Helephant-Death-60": 1038093929, + "Guest_KH-Helephant-Death-80": 35647896, + "Guest_KH-GreyOgre-Spider-1": 356368404, + "Guest_KH-GreyOgre-Spider-20": 1966981204, + "Guest_KH-GreyOgre-Spider-40": 1254244268, + "Guest_KH-GreyOgre-Spider-60": 180502444, + "Guest_KH-GreyOgre-Spider-80": 893239379, + "Guest_HG_Sinbad_Colossus_25": 1190802829, + "Guest_HG_Sinbad_Colossus_50": 1493551719, + "Guest_HG_Sinbad_Colossus_75": 419809907, + "Guest_HG_Sinbad_Colossus_100": 653933977, + "Guest_HG_Sinbad_Colossus_130": 653933973, + "Guest_NV_Dino_AberrantUndead_A_01": 2035087398, + "Guest_NV_Hellephant_Aberrant_A_01": 989522333, + "Guest_NV_Hellephant_Aberrant_A_02": 989522334, + "Guest_NV_BananaSpider_Base_A_01": 1585810541, + "Guest_NV_BananaSpider_Base_A_02": 1581616237, + "Guest_NV_BananaSpider_Base_A_03": 1577421933, + "Guest_NV_BananaSpider_Base_A_04": 1606782061, + "Guest_NV_BananaSpider_Base_A_05": 1602587757, + "Guest_NV_Wyrm_Aberrant_A_01": 16108415, + "Guest_NV_Monkey_Zombie_A_01": 1854775300, + "Guest_NV_Monkey_Zombie_A_02": 1854775304, + "Guest_NV_Monkey_Zombie_A_03": 1854775308, + "Guest_NV_Monkey_Zombie_A_04": 1854775312, + "MNT_Flag_Monster": 867940056, + "Guest_SKB_WY_DarkBramble_A_30": 2046798767, + "Guest_SKB_WY_DarkBramble_A_50": 2046797999, + "Guest_SKB_WY_DarkBramble_A_100": 2044701359, + "Guest_SKB_WY_DarkBramble_A_150": 2044721839, + "Guest_SKB_GH_Boar_A_30": 1547921275, + "Guest_SKB_WC_SpiritIgnorance_A_50": 1488876986, + "Guest_SKB_WC_SpiritIgnorance_A_100": 2025748410, + "Guest_SKB_WC_SpiritIgnorance_A_150": 2025748413, + "Guest_SKB_DS_Loremaster_A_50": 527751539, + "Guest_SKB_DS_Loremaster_A_100": 527817059, + "Guest_SKB_DS_Loremaster_A_150": 527817699, + "Guest_SKB_CL_Dan_A_50": 637418706, + "Guest_SKB_CL_Dan_A_60": 1510064941, + "Guest_SKB_CL_Dan_A_100": 637410512, + "Guest_SKB_CL_Dan_A_150": 637410432, + "Guest_SKB_AV_Spectre_A_50": 2104631195, + "Guest_SKB_AV_Spectre_A_100": 2102534041, + "Guest_SKB_AV_Spectre_A_150": 2018647961, + "Guest_SKB_MS_Samoorai_A_50": 2029641915, + "Guest_SKB_MS_Samoorai_A_100": 2096750843, + "Guest_SKB_MS_Samoorai_A_150": 587603717, + "Transformation_BG_Krok_StromTemplate": 1317694546, + "PP_ChineseRabbit": 382941643, + "PP_ParadeElf": 1036247808, + "MNT_HeartSwarm": 918199310, + "MNT_SpringSOF2023": 1417178519, + "Transformation_BG_Elf_Death2Template": 1606653101, + "MNT_GummyBunny_D": 775840224, + "Transformation_BG_Krok_Life2Template": 747486212, + "PP_Flame": 959186933, + "PP_YachtRock": 1500927358, + "PP_PirateYachtRock": 1227549100, + "PP_ChickenMonster": 1845706534, + "PP_SnowHoppers_B": 1496460038, + "PP_SnowHoppers_C": 1496457990, + "MNT_Oarfish": 29720265, + "PP_RingTailedCat": 993143427, + "MNT_Fanboat": 19347694, + "MNT_MiniSub": 298697910, + "PP_DumboOctopus": 966435639, + "PP_Glowbug_Balance": 1405529577, + "PP_Glowbug_Death": 405117107, + "PP_Glowbug_Fire": 651698987, + "PP_Glowbug_Ice": 2124926395, + "PP_Glowbug_Life": 601367299, + "PP_Glowbug_Myth": 592978024, + "PP_Glowbug_Storm": 61190446, + "PP_DumboOctopus_B": 968448823, + "PP_DumboOctopus_C": 968383287, + "PP_BananaSpider_01": 1074383522, + "PP_BananaSpider_02": 1080674978, + "PP_BananaSpider_03": 1078577826, + "Guest_HG_NM_BeardDragon_Base_C_01": 82913785, + "Guest_HG_NM_BeardDragon_Base_C_02": 82913786, + "Guest_HG_NM_BeardDragon_Base_C_03": 82913787, + "Guest_HG_NM_Glowbug_Base_C_01": 544959703, + "Guest_HG_NM_Glowbug_Base_C_02": 544955607, + "Guest_HG_NM_Glowbug_Base_C_03": 544951511, + "Guest_HG_NM_Glowbug_Base_C_04": 544947415, + "Guest_HG_NM_Glowbug_Base_C_05": 544943319, + "Guest_HG_NM_Glowbug_Base_C_06": 544939223, + "Guest_HG_NM_Glowbug_Base_C_07": 544935127, + "MNT_BouquetofFlowers": 1511180560, + "PP_Piggle_Rainbow": 91081383, + "MNT_Sabertooth_FlameSaber": 1949516909, + "Guest_HG_NM_BeardDragon_Base_A_01": 83175929, + "Guest_HG_NM_BeardDragon_Base_A_02": 83175930, + "Guest_HG_NM_BeardDragon_Base_A_03": 83175931, + "Guest_HG_NM_BeardDragon_Base_B_01": 83044857, + "Guest_HG_NM_BeardDragon_Base_B_02": 83044858, + "Guest_HG_NM_BeardDragon_Base_B_03": 83044859, + "Guest_HG_NM_Glowbug_Base_B_01": 8088791, + "Guest_HG_NM_Glowbug_Base_B_02": 8084695, + "Guest_HG_NM_Glowbug_Base_B_03": 8080599, + "Guest_HG_NM_Glowbug_Base_B_04": 8076503, + "Guest_HG_NM_Glowbug_Base_B_05": 8072407, + "Guest_HG_NM_Glowbug_Base_B_06": 8068311, + "Guest_HG_NM_Glowbug_Base_B_07": 8064215, + "Guest_HG_NM_Glowbug_Base_A_01": 1618701527, + "Guest_HG_NM_Glowbug_Base_A_02": 1618697431, + "Guest_HG_NM_Glowbug_Base_A_03": 1618693335, + "Guest_HG_NM_Glowbug_Base_A_04": 1618689239, + "Guest_HG_NM_Glowbug_Base_A_05": 1618685143, + "Guest_HG_NM_Glowbug_Base_A_06": 1618681047, + "Guest_HG_NM_Glowbug_Base_A_07": 1618676951, + "MNT_SummerSOF2023": 1636120912, + "PP_Cyclops_Fire": 7821755, + "PP_Death_Elf": 1535744155, + "PP_Newt": 1438123483, + "PP_Echidna": 735439358, + "MNT_Wombat": 580544786, + "Transformation_BG_NinjaPig_Balance": 1799661438, + "Transformation_BG_Cyclops_Ice": 647975824, + "Transformation_BG_Minotaur_Storm": 1005667041, + "Transformation_GR_Parasaur_Priest_Ice": 1101466351, + "Transformation_GR_Parasaur_Priest_Fire": 892193041, + "Transformation_GR_Parasaur_Priest_Storm": 1525882116, + "Transformation_GR_Parasaur_Priest_Balance": 1127637476, + "Guest_GR_AZ_Parasaur_Undead_B_01": 322587487, + "MNT_WitchCat": 1167097888, + "PP_RolyPoly": 578538330, + "PP_Capybara_B": 628131532, + "MNT_OutbackTruck": 1815527801, + "PP_PoodleSailor": 2137704795, + "MNT_PolarianCannon": 2103490826, + "PP_TazmanianDevil": 1773548765, + "Guest_SKB_AZ_Ixcax_A_100": 556560994, + "Guest_SKB_AZ_Ixcax_A_150": 556610146, + "Guest_SKB_AZ_Ixcax_A_50": 564951650, + "MNT_GhoulsShovel": 2035610946, + "PP_CrystalBdayDragon": 1897078804, + "PP_SunGobblerBall": 1522469440, + "PP_Sun_GreenGobbler": 1337690394, + "MNT_2P_AutumnTreant": 1063435527, + "PP_AutumnTreant": 561077291, + "MNT_FlyingMonkey": 490807393, + "PP_BabyPlantMonster": 2076646587, + "MNT_PlantCreature_A": 1802823265, + "Transformation_BG_Fairy_Fire": 2065252898, + "Transformation_BG_Krok_Myth": 277926564, + "Transformation_BG_RatThief_Life": 1167758651, + "Transformation_BG_Elf_Balance": 1628238937, + "Transformation_BG_Colossus_Death": 184392004, + "Transformation_FortressPod": 139738335, + "P_Wombat_POLYMORPH": 1132264953, + "PP_SharkWobbegong": 1994247222, + "PP_ChineseNYDragon": 1126999021, + "PP_JingleBellRock": 1076037919, + "PP_Krok_Mummy_Myth": 438487583, + "PP_Cyclops_Ice": 1476966187, + "MNT_OutbackTruckB": 1813299577, + "MNT_EvilSnowmanBall": 758818712, + "MNT_ThanksgivingGobbler": 1760011910, + "Guest_WL_Ghost_LostSoul_A_01": 1224111704, + "Guest_WL_Kangaroo_Drover_F_01": 2025562931, + "Guest_WL_Spider_WarriorMage_C_01": 1296557888, + "Guest_WL_Spider_WarriorMage_C_02": 1430775616, + "Guest_WL_Spider_WarriorMage_C_03": 1564993344, + "Guest_WL_Spider_WarriorMage_C_04": 1699211072, + "Guest_WL_Spider_WarriorMage_C_05": 1833428800, + "Guest_WL_Spider_WarriorMage_C_06": 1967646528, + "Guest_WL_Spider_WarriorMage_C_07": 2101864256, + "Guest_SKB_KR_Lightbane_A_100": 837930677, + "Guest_SKB_KR_Lightbane_A_160": 837930669, + "Guest_SKB_KR_Lightbane_A_50": 1309555019, + "Transformation_WL_Phantasmanian_DevilTemplate": 384891502, + "MNT_2P_LeaflessTreant": 623083386, + "PP_Minotaur_Ice": 700151737, + "MNT_Scooter_G": 737125252, + "Guest_WL_Frog_Owner_B_01": 767864686, + "MNT_SilentKnight": 646654812, + "Guest_WL_TRex_Base_A_01": 1842562033, + "Guest_WL_TRex_Base_B_01": 304921616, + "PP_Groundhog": 108643243, + "Guest_NV_Unicorn_Guard_C_04": 1845621, + "MNT_EmuPunk": 647315080, + "MNT_HeartBalloon": 798826551, + "PP_ValentineHoppers": 968693964, + "MNT_SpringSOF2024_Heckhound": 453640548, + "Guest_AQ-Centaur-Arion": 1856508139, + "Guest_AQ-Centaur-Artemis": 333294011, + "Guest_AQ-Horse-Sea": 724896200, + "Guest_KR_Horse_Warlord_A_Bossfight": 1302284326, + "Guest_KR_Horse_Warlord_A_BossfightSP": 1300726822, + "Guest_KR_Zebra_Thrall_A": 1250265667, + "Guest_KR_Zebra_Thrall_A_Boss_Minion": 345677011, + "Guest_KR_Zebra_Thrall_A_Gallery": 1520303483, + "Guest_KH-Gray-Horse-40": 1802231403, + "Guest_KH-Gray-Horse-20": 1802231307, + "Guest_G14-BP-Unicorn_Fencer_Boss": 1602044152, + "Guest_Horse-Merc-Brown-L37": 1831175255, + "Guest_Horse-Merc-Tan-L39": 1363854837, + "Guest_Horse-Merc-Tan-L39-1": 2085275127, + "Guest_Horse-Merc-Gray-MSBoss-L39": 1863452041, + "Guest_Horse-Merc-Gray-L39": 2039135564, + "Guest_Horse-Merc-Tan-L38": 1363330549, + "Guest_WC_Horse_Mercenary_Roberto": 891924774, + "Guest_ZF-Nathi-Yellowstripe-R11": 1505157721, + "Guest_ZF-TseTse-Main-R11-Boss": 114927854, + "Guest_ZF-TseTse-Elephant-R11": 894147273, + "Guest_ZF-Zebra-Impi-Raider-R11": 1378242919, + "Guest_ZF-Zebra-Warrior-Male-R10-1": 1791906265, + "Guest_ZF-Zebra-Senzan-Zebu-R10-Boss": 373712721, + "Guest_ZF-Zebra-Shaka-Zebu-R10-Boss": 662142985, + "Guest_ZF-Zebra-Warrior-Female-R10-02": 1507835670, + "Guest_ZF-Zebra-Warrior-Male-R10": 47075786, + "Guest_ZF-Zebra-Warrior-Male-R10-02": 1791906714, + "Guest_ZF-Zebra-Warrior-Male-R10-03": 1791906746, + "Guest_ZF-Zebra-Warrior-Male-R10-05": 1791906682, + "Guest_ZF-Zebra-Warrior-Male-R10-2": 1791906268, + "Guest_ZF_Zebra_Spectral_Guardian-R11": 431970996, + "Guest_CC_Horse_Apoc_A_01": 644668374, + "Guest_CC_Horse_Apoc_B_01": 644668390, + "Guest_CC_Horse_Apoc_C_01": 644668406, + "Guest_CC_Horse_Apoc_D_01": 644668294, + "Guest_CC_Horse_Apoc_D_02": 645192582, + "Guest_CC_Unicorn_CorsairF_B_01": 1378532506, + "Guest_CC_Unicorn_Duelist_B_01": 64891542, + "Guest_CC_Unicorn_Guard_B_01": 1075063242, + "Guest_CC_Unicorn_Guard_B_02": 1075063238, + "Guest_CC_Unicorn_Guard_B_03": 1075063234, + "Guest_NV_Horse_HordeSoldier_A_01": 504396960, + "Guest_NV_Horse_HordeSoldier_A_02": 101743776, + "Guest_NV_Horse_HordeOfficer_A_01": 343600992, + "Guest_NV_Horse_HordeSoldier_A_03": 235961504, + "Guest_NV_Horse_HordeOfficer_A_02": 209383264, + "Guest_NV_Horse_AberrantTungAk_A_01": 952263441, + "Guest_NV_Horse_AberrantTungAk_A_02": 952263537, + "Guest_NV_Horse_TungAk_B_01": 1194718672, + "Guest_NV_Horse_TungAk_B_02": 657847760, + "Guest_NV_Horse_HordeOfficer_B_01": 343596896, + "Guest_NV_Horse_HordeOfficer_B_02": 209379168, + "Guest_NV_Horse_TungAk_A_01": 1194669520, + "Guest_NV_Unicorn_Guard_C_01": 1845601, + "Guest_NV_Unicorn_Guard_A_01": 797025, + "Guest_NV_Unicorn_AberrantGuard_A_01": 739851573, + "Guest_NV_Unicorn_Guard_C_02": 1845613, + "Guest_NV_Unicorn_Guard_C_03": 1845609, + "Guest_NV_Unicorn_AberrantGuard_A_02": 739848501, + "Guest_NV_Unicorn_Guard_A_02": 797037, + "Guest_NV_Unicorn_AberrantGuard_A_03": 739849525, + "Guest_NV_Unicorn_AberrantGuard_A_04": 739846453, + "Guest_NV_Horse_HordeOfficer_A_03": 75165536, + "Guest_NV_Horse_HordeSoldier_A_04": 907050144, + "Guest_NV_Horse_HordeSoldier_A_05": 1041267872, + "Guest_NV_Horse_HordeSoldier_C_01": 504388768, + "Guest_HG_TRAIN_Horse_MustangFencerF_A_Balance_50": 871182987, + "Guest_HG_TRAIN_Horse_MustangFencerF_A_Balance_75": 871176715, + "Guest_HG_TRAIN_Horse_MustangFencerF_A_Life_100": 886489645, + "Guest_HG_TRAIN_Horse_MustangFencerF_A_Balance_25": 871177035, + "Guest_HG_TRAIN_Horse_MustangFencerF_A_Balance_100": 872231819, + "Guest_HG_TRAIN_Horse_MustangFencerF_A_Life_140": 1960231469, + "Guest_HG_TRAIN_Horse_MustangFencerF_B_100": 2089957067, + "Guest_HG_TRAIN_Horse_MustangFencerF_A_Life_25": 1700184589, + "Guest_HG_TRAIN_Horse_MustangFencerF_A_Life_50": 920044045, + "Guest_HG_TRAIN_Horse_MustangFencerF_A_Life_75": 1742127629, + "Guest_HG_TRAIN_Horse_MustangFencerF_A_Balance_140": 872223627, + "Guest_HG_TRAIN_Horse_MustangFencerF_B_50": 2089952970, + "Guest_HG_TRAIN_Horse_MustangFencerF_B_75": 57530654, + "Guest_HG_TRAIN_Horse_MustangFencerF_B_140": 2089957099, + "Guest_HG_TRAIN_Horse_MustangFencerF_B_25": 1131272477, + "Guest_LM_Horse_Explorer_A_01_Hard": 1711837140, + "Guest_WL_Unicorn_Guard_A_01": 1074538935, + "Guest_WL_Unicorn_CorsairF_E_01": 1378532603, + "Guest_WL_Unicorn_Warlord_A_01": 1321310496, + "Guest_KH-Gray-Horse-1": 1802239547, + "Guest_KH-Gray-Horse-60": 1802231371, + "Guest_KH-Gray-Horse-80": 1802231467, + "Transformation_BG_NinjaPig_Ice": 186026527, + "Transformation_BG_Cyclops_Storm": 897316984, + "PP_MinotaurBalance": 1344665951, + "PP_OrthusMoon": 1804503950, + "PP_CoolPineapple": 1149318906, + "PP_TwinkleStars": 766378011, + "PP_Scroll": 1613313091, + "PP_Colossus_Death": 40713075, + "PP_ColossusDeath": 530964029, + "PP_KILiveRock": 1975550570, + "MNT_Outrigger": 1417937299, + "MNT_BookWyrm": 2080129190, + "MNT_RacingSnail": 1996220963, + "MNT_UmbrellaCloud": 145762615, + "PP_PropellerCat": 2094718580, + "MNT_TRex_Shirt": 586746001, + "MNT_Swarm_Bee": 1625228695, + "MNT__CelestialMoon": 968360256, + "Guest_ME_Sinbad_IronSultan_150": 2001676223, + "Guest_ME_Sinbad_Cyclops_150": 1968943689, + "Guest_ME_Sinbad_Skeleton_150": 1031490819, + "Guest_ME_Sinbad_Colossus_150": 1727675806, + "Guest_ME_Sinbad_Skeleton_150_02": 970505475, + "Guest_ME_Sinbad_Wyrm_150": 19314443, + "Guest_ZF-Zebra-Inzinzebu-Bandit-R11": 430262550, + "Guest_ZF-Zebra-Warrior-Male-R10-04": 1791906650, + "PP_TwinkleStars_02": 805304347, + "PP_TwinkleStars_03": 803207195, + "PP_TwinkleStars_01": 799012891, + "Transformation_BodleianHarrow": 609627870, + "Guest_HG_Gryphon_OwlStatue_A_01_L170": 77756046, + "Guest_HG_Gryphon_OwlStatue_A_02_L170": 73561742, + "Guest_HG_Gryphon_OwlStatue_A_01_L100": 77752974, + "Guest_HG_Gryphon_OwlStatue_A_02_L100": 73558670, + "Guest_HG_Gryphon_OwlStatue_A_01_L50": 78277134, + "Guest_HG_Gryphon_OwlStatue_A_02_L50": 74082830, + "MNT_SummerSOF2024_JudgementWings": 1078163967, + "MNT_Pegasus_E": 131704054, + "MNT_PolarisHero": 665176426, + "PP_Duckana": 1128961578, + "PP_QueenBee": 833291695, + "Transformation_BG_Draconian_Balance": 2078940682, + "Transformation_BG_WolfWarrior_Fire": 1762248682, + "Transformation_BG_Minotaur_Death": 309090657, + "PP_WolfWarrior_Fire": 685685256, + "PP_WolfWarrior_Death": 1857202724, + "Guest_ME-GTAV01-WyrmBoss-150": 1482208618, + "Guest_ME_SpectreOfB_L150": 684104791, + "Guest_ME_MD_MacDeath_L150": 1128977615, + "Guest_ME_Pig_BalanceWizardA_L150": 959913724, + "Guest_ME_Pig_BalanceWizardB_L150": 959913712, + "Guest_ME_Pig_BalanceWizardC_L150": 959913716, + "Guest_ME_Pig_FireWizard_L150": 964392255, + "Guest_ME_Pig_IceWizardF_L150": 86941026, + "Guest_ME_Pig_MythWizard_L150": 964051241, + "Guest_ME_Pig_StormWizardF_L150": 2016383602, + "Guest_ME_Clock_Clockworker_L150": 1424569772, + "Guest_ME_Clock_ClockworkSpanner_L150": 1966824609, + "Guest_ME_Clock_Lugs_L150": 370290904, + "Guest_ME_Clock_Lucia_L150": 1857768409, + "MNT_EvilChair": 339577702, + "PP_Cyclops_Storm": 621464512, + "PP_Krokomummy_Life": 462432735, + "Transformation_CL_Rematch_Crustacean": 1686865207, + "Transformation_CL_Rematch_Protector": 1893951532, + "Transformation_CL_Rematch_Angler": 120412196, + "Transformation_CL_Rematch_Piscean": 1624106070, + "Transformation_Zebra_Template": 1900548493, + "Transformation_Zebra2_Template": 325099540, + "Transformation_Zebra3_Template": 325099524, + "Transformation_Zebra4_Template": 325099636, + "MNT_SweetSixteenBirthday": 1009398096, + "MNT_2P_TRex_Bones": 1618543266, + "MNT_SpringBumperCar": 1725007788, + "PP_WinterGoblin": 2025052443, + "PP_OnyxAnubis": 1552575189, + "PP_OttomanCat": 223541582, + "MNT_HolidayYeti": 780983974, + "MNT_IceSled": 979912604, + "MNT_TurtleDoves": 1850191638, + "MNT_KrokChariot": 559783620, + "MNT_Mustang": 1775949401, + "MNT_PumpkinBall": 382849054, + "Transformation_BG_Fairy_Storm": 836920873, + "Transformation_BG_Elf_Myth": 1506493664, + "Transformation_NinjaPig_Life": 816802847, + "Transformation_BG_Krok_Fire": 1060580712, + "Transformation_BG_Colossus_Balance": 1067963041, + "Transformation_BG_NinjaPig_Life": 441460895, + "PP_Penguin_03": 1623028104, + "Transformation_Duck_Librarian_B": 864067551, + "Transformation_Duck_Librarian_A": 859873247, + "Transformation_Duck_Adventurer": 194560769, + "Transformation_Gummy_Bunny_C": 1298087941, + "Transformation_Frog_Horned_A": 837201339, + "Transformation_Glowbug_Storm": 2096380446, + "Transformation_Marshmallow_Critter_A": 1036335317, + "Transformation_Snipe_Base_B": 232132109, + "Transformation_Snowball": 915248481, + "Transformation_Wombat_Base": 333435450, + "Transformation_Human_Malistaire": 1414887773, + "Transformation_Morganthe_E": 1745180054, + "Transformation_Spider_Grandfather": 1131773979, + "Transformation_Khrulhu_Dasein_B": 367878762, + "Transformation_Devourer_Base": 698770016, + "Transformation_Alien_Meteor": 638746168, + "Transformation_Nightmare_Malus": 704212821, + "Transformation_Daemon_Personal": 278266463, + "PP_ValentinesDay": 810003364, + "PP_BabyHippo": 422858138, + "PP_Aardwold": 1592150119, + "PP_Aardwold_C": 1902528613, + "MNT_Cobra": 472847981, + "MNT_Serpopard": 1629558909, + "MNT_Serpopard_B": 1629556867, + "MNT_Serpopard_C": 1629556931, + "PP_Fairy_Fire": 1847789544, + "MNT_Mustang_B": 1448793691, + "PP_FireElfMyth": 1933609060, + "MNT_KT-BoatRide": 1560860110, + "MNT_ShadowMagic": 2095978357, + "MNT_MardiGrasFloat_A": 1740674432, + "PP_ChineseNYSnake": 988201940, + "MNT_AnubisDog": 1995079956, + "PP_ShadowImp_A": 1604849432, + "PP_ShadowImp_B": 1604849438, + "PP_ShadowImp_C": 1604849436, + "MNT_ShadowMagic_B": 2093870965, + "MNT_ShadowMagic_C": 2093805429, + "Guest_KT_SE_Tritops_Warrior_I_01": 97516901, + "Guest_KT_SE_DS_Draconian_Model_01": 1916095079, + "Guest_KT_SE_Beetle_Scarab_C_01_L50": 1064004307, + "Guest_KT_SE_Roach_Warrior_C_03": 1872574203, + "Guest_KT_SE_Roach_Warrior_C_04": 1871918843, + "Guest_KT_SE_Roach_Warrior_C_05": 1871787771, + "Guest_KT_SE_Beetle_Scarab_C_01": 1353410759, + "Guest_KT_SE_Mander_Citizen_B_01_L50": 2044509396, + "Guest_KT_SE_Mander_CitizenF_B_01_L50": 164327682, + "Guest_KT_SE_Treant_Tormented_A_01": 1359800879, + "Guest_KT_SE_Treant_Base_A_01": 765512948, + "Guest_KT_SE_Mander_Citizen_F_D_05": 171244620, + "Guest_KT_SE_Mander_CitizenF_D_01": 163791037, + "Guest_KT_SE_Mander_CitizenF_D_02": 298008765, + "Guest_KT_SE_Mander_CitizenF_D_03": 432226493, + "Guest_KT_SE_Mander_CitizenF_D_04": 566444221, + "Guest_KT_SE_Mander_MummyF_A_01": 964349080, + "Guest_KT_SE_Mander_MummyF_A_02": 964480152, + "Guest_KT_SE_MC_Wraith_Model_01": 1101442118, + "Guest_KT_SE_Mander_CitizenF_B_02": 298000573, + "MNT_Wheelbarrow": 614248817, + "MNT_StubbornLlama": 221089074 + } + }, + "m_badgeTitle": { "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1846695875 - }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3389835433 - }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2547159940 - }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2587533771 - }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3091503757 - }, - "m_bToggle": { - "type": "bool", - "id": 16, - "offset": 608, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2071810903 - }, - "m_bButtonDown": { - "type": "bool", - "id": 17, - "offset": 609, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 840041705 - }, - "m_sLabel": { - "type": "std::wstring", - "id": 18, - "offset": 616, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2207009163 - }, - "m_labelOffset": { - "type": "class Rect", - "id": 19, - "offset": 832, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1990646723 - }, - "m_pButton": { - "type": "class SharedPointer", - "id": 20, - "offset": 656, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1543855875 - }, - "m_HotKey": { - "type": "unsigned int", - "id": 21, - "offset": 672, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1631553409 - }, - "m_Color": { - "type": "class Color", - "id": 22, - "offset": 676, - "flags": 262279, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1753714077 - }, - "m_bCursorOver": { - "type": "bool", - "id": 23, - "offset": 689, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 283981103 - }, - "m_bAbortWhenCursorNotOver": { - "type": "bool", - "id": 24, - "offset": 706, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 325405258 - }, - "m_bHotKeyDown": { - "type": "bool", - "id": 25, - "offset": 680, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 616989185 - }, - "m_fTime": { - "type": "float", - "id": 26, - "offset": 684, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 883746156 - }, - "m_bGreyed": { - "type": "bool", - "id": 27, - "offset": 688, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1566556053 - }, - "m_fMaxScale": { - "type": "float", - "id": 28, - "offset": 692, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2070186635 - }, - "m_fScaleSpeed": { - "type": "float", - "id": 29, - "offset": 696, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1457135702 - }, - "m_bUseDropShadow": { - "type": "bool", - "id": 30, - "offset": 704, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 93063037 - }, - "m_bUseOutline": { - "type": "bool", - "id": 31, - "offset": 705, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 744292994 - }, - "m_pGreyedState": { - "type": "class SharedPointer", - "id": 32, - "offset": 768, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2703352263 - }, - "m_pNormalState": { - "type": "class SharedPointer", - "id": 33, - "offset": 752, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1887909808 - }, - "m_pHighlightedState": { - "type": "class SharedPointer", - "id": 34, - "offset": 784, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2200177608 - }, - "m_pSelectedState": { - "type": "class SharedPointer", - "id": 35, - "offset": 800, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2266776432 - }, - "m_pDepressedState": { - "type": "class SharedPointer", - "id": 36, - "offset": 816, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1878185798 - }, - "m_bUp": { - "type": "bool", - "id": 37, - "offset": 880, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 269510906 - } - } - }, - "1650584509": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1650584509, - "properties": { - "m_capValue": { - "type": "float", - "id": 0, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1100002568 - }, - "m_scalarBase": { - "type": "float", - "id": 1, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2028329704 - }, - "m_scalingFactor": { - "type": "float", - "id": 2, - "offset": 76, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1636384119 - } - } - }, - "85328645": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 85328645, - "properties": { - "m_id": { - "type": "int", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2090586215 - }, - "m_items": { - "type": "class SharedPointer", - "id": 1, - "offset": 80, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 966759714 - } - } - }, - "483697583": { - "name": "class QuestEffect2*", - "bases": [ - "ContainerEffect", - "GameEffectBase", - "PropertyClass" - ], - "hash": 483697583, - "properties": { - "m_currentTickCount": { - "type": "double", - "id": 0, - "offset": 80, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2533274692 - }, - "m_effectNameID": { - "type": "unsigned int", - "id": 1, - "offset": 96, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1204067144 - }, - "m_bIsOnPet": { - "type": "bool", - "id": 2, - "offset": 73, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 522593303 - }, - "m_originatorID": { - "type": "gid", - "id": 3, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1131810019 - }, - "m_itemSlotID": { - "type": "unsigned int", - "id": 4, - "offset": 112, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1895747595 - }, - "m_internalID": { - "type": "int", - "id": 5, - "offset": 92, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1643137924 - }, - "m_endTime": { - "type": "unsigned int", "id": 6, - "offset": 88, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 716479635 - }, - "m_displayInfo": { - "type": "class SharedPointer", - "id": 7, - "offset": 128, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2998612909 - } - } - }, - "1228245429": { - "name": "class QuestEntry*", - "bases": [ - "PropertyClass" - ], - "hash": 1228245429, - "properties": { - "m_questName": { - "type": "std::string", - "id": 0, - "offset": 80, + "offset": 440, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1702112846 + "hash": 1783354256 }, - "m_questNameID": { + "m_chatPermissions": { "type": "unsigned int", - "id": 1, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1530354349 - }, - "m_goalEntries": { - "type": "class GoalEntryFull*", - "id": 2, - "offset": 232, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 3351009655 - } - } - }, - "84938315": { - "name": "class SplashCinematicInfo*", - "bases": [ - "PropertyClass" - ], - "hash": 84938315, - "properties": { - "m_assetName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513131580 - }, - "m_assetPlaybackTime": { - "type": "float", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1640179405 - } - } - }, - "483592047": { - "name": "class WizClientLeashedObject*", - "bases": [ - "WizClientObject", - "ClientObject", - "CoreObject", - "PropertyClass" - ], - "hash": 483592047, - "properties": { - "m_inactiveBehaviors": { - "type": "class SharedPointer", - "id": 0, - "offset": 224, - "flags": 31, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1850812559 - }, - "m_globalID.m_full": { - "type": "unsigned __int64", - "id": 1, - "offset": 72, - "flags": 16777247, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2312465444 - }, - "m_permID": { - "type": "unsigned __int64", - "id": 2, - "offset": 80, - "flags": 16777247, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1298909658 - }, - "m_location": { - "type": "class Vector3D", - "id": 3, - "offset": 168, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2239683611 - }, - "m_orientation": { - "type": "class Vector3D", - "id": 4, - "offset": 180, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2344058766 - }, - "m_fScale": { - "type": "float", - "id": 5, - "offset": 196, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 503137701 - }, - "m_templateID.m_full": { - "type": "unsigned __int64", - "id": 6, - "offset": 96, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 633907631 - }, - "m_debugName": { - "type": "std::string", "id": 7, - "offset": 104, + "offset": 360, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3553984419 + "hash": 1848314473 }, - "m_displayKey": { - "type": "std::string", + "m_pvpIconID": { + "type": "unsigned int", "id": 8, - "offset": 136, + "offset": 472, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3023276954 + "hash": 2083838009 }, - "m_zoneTagID": { + "m_localeID": { "type": "unsigned int", "id": 9, - "offset": 344, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 965291410 - }, - "m_speedMultiplier": { - "type": "short", - "id": 10, - "offset": 192, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 123130076 - }, - "m_nMobileID": { - "type": "unsigned short", - "id": 11, - "offset": 194, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1054318939 - }, - "m_characterId": { - "type": "gid", - "id": 12, - "offset": 440, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 210498418 - }, - "m_gameStats": { - "type": "class WizGameStats*", - "id": 13, - "offset": 544, - "flags": 27, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3194480406 - }, - "m_leashed": { - "type": "bool", - "id": 14, - "offset": 576, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 603235945 - } - } - }, - "1227787104": { - "name": "class GraphicalPvPTourneyCurrency", - "bases": [ - "GraphicalSpell", - "Spell", - "PropertyClass" - ], - "hash": 1227787104, - "properties": { - "m_templateID": { - "type": "unsigned int", - "id": 0, - "offset": 128, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1286746870 - }, - "m_enchantment": { - "type": "unsigned int", - "id": 1, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2217886818 - }, - "m_pipCost": { - "type": "class SharedPointer", - "id": 2, - "offset": 176, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3605704820 - }, - "m_regularAdjust": { - "type": "int", - "id": 3, - "offset": 192, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1420453335 - }, - "m_magicSchoolID": { - "type": "unsigned int", - "id": 4, - "offset": 136, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 893146499 - }, - "m_accuracy": { - "type": "unsigned char", - "id": 5, - "offset": 132, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2273914939 - }, - "m_treasureCard": { - "type": "bool", - "id": 6, - "offset": 197, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1764879128 - }, - "m_battleCard": { - "type": "bool", - "id": 7, - "offset": 198, + "offset": 484, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1332843753 - }, - "m_itemCard": { - "type": "bool", - "id": 8, - "offset": 199, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1683654300 + "hash": 792971274 }, - "m_sideBoard": { + "m_friendlyPlayer": { "type": "bool", - "id": 9, - "offset": 200, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1897838368 - }, - "m_spellID": { - "type": "unsigned int", "id": 10, - "offset": 204, + "offset": 490, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1697483258 + "hash": 990699901 }, - "m_leavesPlayWhenCastOverride": { + "m_volunteer": { "type": "bool", "id": 11, - "offset": 216, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 874407398 - }, - "m_cloaked": { - "type": "bool", - "id": 12, - "offset": 196, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 7349510 - }, - "m_enchantmentSpellIsItemCard": { - "type": "bool", - "id": 13, - "offset": 76, + "offset": 491, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 531590701 + "hash": 1751284471 }, - "m_premutationSpellID": { + "m_guildName": { "type": "unsigned int", - "id": 14, - "offset": 112, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1530256370 - }, - "m_enchantedThisCombat": { - "type": "bool", - "id": 15, - "offset": 77, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1895738923 - }, - "m_paramOverrides": { - "type": "class SharedPointer", - "id": 16, - "offset": 224, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2061635599 - }, - "m_subEffectMeta": { - "type": "class SharedPointer", - "id": 17, - "offset": 240, + "id": 12, + "offset": 492, "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1944101106 - }, - "m_delayEnchantment": { - "type": "bool", - "id": 18, - "offset": 257, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 191336919 - }, - "m_PvE": { - "type": "bool", - "id": 19, - "offset": 264, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 269492350 - }, - "m_delayEnchantmentOrder": { - "type": "enum SpellEffect::kDelayOrder", - "id": 20, - "offset": 72, - "flags": 287, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2526055263, - "enum_options": { - "SpellEffect::kAnyOrder": 0, - "SpellEffect::kFirst": 1, - "SpellEffect::kSecond": 2 - } + "hash": 778026115 }, - "m_roundAddedTC": { + "m_guildNameLocale": { "type": "int", - "id": 21, - "offset": 260, + "id": 13, + "offset": 496, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 112365451 - }, - "m_secondarySchoolID": { - "type": "unsigned int", - "id": 22, - "offset": 304, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2081206026 - } - } - }, - "84622204": { - "name": "enum STACKING_RULE", - "bases": [], - "hash": 84622204, - "properties": {} - }, - "483533426": { - "name": "class WinAnimContainer", - "bases": [ - "WindowAnimation", - "PropertyClass" - ], - "hash": 483533426, - "properties": { - "m_bUseDeepCopy": { - "type": "bool", - "id": 0, - "offset": 72, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 433380635 - }, - "m_winAnimList": { - "type": "class SharedPointer", - "id": 1, - "offset": 80, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1941062728 - }, - "m_bLooping": { - "type": "bool", - "id": 2, - "offset": 104, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2131020845 - } - } - }, - "880401892": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 880401892, - "properties": { - "m_nWidth": { - "type": "int", - "id": 0, - "offset": 72, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 730982536 - }, - "m_Color": { - "type": "class Color", - "id": 1, - "offset": 76, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1753714077 - } - } - }, - "1651665694": { - "name": "class DynaModList", - "bases": [ - "PropertyClass" - ], - "hash": 1651665694, - "properties": { - "m_allMods": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 27, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 3780396482 + "hash": 656991008 } } }, - "880203929": { - "name": "class SharedPointer", + "1819325754": { + "name": "class TrackedPlant", "bases": [ "PropertyClass" ], - "hash": 880203929, - "properties": { - "m_items": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2752134535 - } - } + "hash": 1819325754, + "properties": {} }, - "1651140211": { - "name": "class SharedPointer", + "969118507": { + "name": "class SharedPointer", "bases": [ - "ConfirmOption", - "ServiceOptionBase", "PropertyClass" ], - "hash": 1651140211, + "hash": 969118507, "properties": { - "m_serviceName": { + "m_worldName": { "type": "std::string", "id": 0, "offset": 72, - "flags": 31, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2206028813 + "hash": 1846757476 }, - "m_iconKey": { - "type": "std::string", + "m_worldDoorTemplateID": { + "type": "unsigned int", "id": 1, - "offset": 168, - "flags": 31, + "offset": 104, + "flags": 33554439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2457138637 + "hash": 1255097074 }, - "m_displayKey": { - "type": "std::string", + "m_levelScaleLevel": { + "type": "int", "id": 2, - "offset": 104, - "flags": 31, + "offset": 132, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3023276954 + "hash": 1013218162 }, - "m_serviceIndex": { - "type": "unsigned int", + "m_galleryZone": { + "type": "std::string", "id": 3, - "offset": 204, - "flags": 31, + "offset": 136, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2103126710 + "hash": 2919416423 }, - "m_forceInteract": { - "type": "bool", + "m_exhibitList": { + "type": "class SharedPointer", "id": 4, - "offset": 200, - "flags": 31, - "container": "Static", - "dynamic": false, + "offset": 112, + "flags": 7, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 1705789564 + "pointer": true, + "hash": 2401157639 }, - "m_confirmMessageTitleKey": { + "m_displayName": { "type": "std::string", "id": 5, - "offset": 216, - "flags": 31, + "offset": 168, + "flags": 8388615, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1941136953 + "hash": 2446900370 }, - "m_confirmMessageTitleKeyAdvancedMode": { + "m_debugName": { "type": "std::string", "id": 6, - "offset": 248, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3219201588 - }, - "m_confirmMessageKey": { - "type": "std::string", - "id": 7, - "offset": 280, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2088579351 - }, - "m_confirmMessageKeyAdvancedMode": { - "type": "std::string", - "id": 8, - "offset": 312, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2417239570 - }, - "m_promptSound": { - "type": "std::string", - "id": 9, - "offset": 344, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3178681510 - }, - "m_promptSoundAdvancedMode": { - "type": "std::string", - "id": 10, - "offset": 376, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1739626529 - }, - "m_acceptKey": { - "type": "std::string", - "id": 11, - "offset": 472, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3325790708 - }, - "m_declineKey": { - "type": "std::string", - "id": 12, - "offset": 504, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1679578008 - }, - "m_optionToConfirm": { - "type": "class SharedPointer", - "id": 13, - "offset": 536, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1224791766 - }, - "m_ignoreOption": { - "type": "std::string", - "id": 14, - "offset": 408, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1667595832 - }, - "m_ignoreAdvancedModeOption": { - "type": "std::string", - "id": 15, - "offset": 440, - "flags": 31, + "offset": 200, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2665095027 - } - } - }, - "879155916": { - "name": "class ActiveTimedAccessPassList*", - "bases": [ - "PropertyClass" - ], - "hash": 879155916, - "properties": { - "m_passList": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1599562628 + "hash": 3553984419 } } }, - "1228900789": { - "name": "class QuestEntry", + "1379159272": { + "name": "class SharedPointer", "bases": [ + "BehaviorTemplate", "PropertyClass" ], - "hash": 1228900789, + "hash": 1379159272, "properties": { - "m_questName": { + "m_behaviorName": { "type": "std::string", "id": 0, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1702112846 - }, - "m_questNameID": { - "type": "unsigned int", - "id": 1, "offset": 72, - "flags": 31, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1530354349 - }, - "m_goalEntries": { - "type": "class GoalEntryFull*", - "id": 2, - "offset": 232, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 3351009655 + "hash": 3130754092 } } }, - "85019234": { - "name": "class Duel", + "534109433": { + "name": "class ClientWizPlayerNameBehavior", "bases": [ + "NameOverrideBehavior", + "BehaviorInstance", "PropertyClass" ], - "hash": 85019234, + "hash": 534109433, "properties": { - "m_flatParticipantList": { - "type": "class SharedPointer", + "m_behaviorTemplateNameID": { + "type": "unsigned int", "id": 0, - "offset": 80, - "flags": 31, - "container": "Vector", - "dynamic": true, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3375244498 + "pointer": false, + "hash": 223437287 }, - "m_dynamicTeams": { - "type": "class SharedPointer", + "m_wsNameOverride": { + "type": "std::wstring", "id": 1, - "offset": 104, + "offset": 120, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3227206264 + "pointer": false, + "hash": 2131249091 }, - "m_dynamicTurn": { + "m_nameKeys": { "type": "unsigned int", "id": 2, - "offset": 120, + "offset": 352, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1168494811 + "hash": 1772225898 }, - "m_dynamicTurnSubcircles": { - "type": "unsigned int", + "m_useRank": { + "type": "bool", "id": 3, - "offset": 124, + "offset": 356, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 618930538 + "hash": 2040475372 }, - "m_dynamicTurnCounter": { - "type": "int", + "m_eGender": { + "type": "enum eGender", "id": 4, - "offset": 128, - "flags": 31, + "offset": 432, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 543404296 + "hash": 2776344943, + "enum_options": { + "Male": 1, + "Female": 0, + "Neutral": 2 + } }, - "m_duelID.m_full": { - "type": "unsigned __int64", + "m_eRace": { + "type": "enum eRace", "id": 5, - "offset": 72, - "flags": 31, + "offset": 436, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1024980477 + "hash": 963057554, + "enum_options": { + "Bat": 88066, + "BatLightning": 1472842576, + "Boar": 2624962, + "CatThug": 1855674386, + "ChristmasElf": 819908552, + "ChristmasSnowman": 1146515225, + "Colossus_Ice": 1063279538, + "Cyclops": 1691813655, + "DragonBeta": 417003588, + "DragonFriendly": 69049013, + "EvilSnowman": 1579630926, + "FireElf": 443793687, + "Firecat": 2045525741, + "Frog": 2274918, + "FrostBeetle": 7692383, + "GhostBlue": 1097396892, + "GhostGreen": 882822629, + "GhostRed": 560510742, + "GhostYellow": 909974358, + "Ghoul": 82556199, + "GoatMonk": 486215564, + "GolemBrass": 1057388325, + "GolemClockwork": 1143380031, + "GolemSteel": 1660583674, + "GolemWood": 1426849876, + "HalloweenCat": 1042869199, + "Heckhound": 626736403, + "Helephant": 719065368, + "Human": 79806088, + "Hydra": 70785800, + "Imp": 84361, + "Krokomummy": 555755242, + "Kroktut": 1352354178, + "Leprechaun": 2106466410, + "LeprechaunPattyDay": 380507781, + "LightningBat": 228257682, + "Mannequin": 428442544, + "Minotaur": 949570680, + "Mount_Broom": 94637995, + "Mount_Cat": 1150940211, + "Mount_Dragon": 1565720148, + "Mount_Horse": 2054712767, + "Mount_PlayerWings": 589829552, + "Nikkos": 1563122418, + "NinjaPig": 607400740, + "Orthus": 1552590225, + "Piggle": 1897753328, + "Piggle_Valentine": 687697592, + "Piggle_ValentinePart2": 1760391091, + "Pixie": 74836240, + "RatMagician": 885542120, + "SalamanderFire": 48480175, + "SalamanderIce": 2011152164, + "SalamanderStorm": 600331072, + "Satyr": 84793363, + "Scarab": 2143810477, + "Sheep": 86220083, + "SkeletonArmored": 1791586239, + "SnowSerpent": 138621543, + "Spider": 1603064269, + "SpiderBlack": 559353179, + "SpiderBrown": 557941675, + "SpiderCrystal": 2119625297, + "SpiderGolem": 1632616514, + "Sprite": 1889156557, + "SpriteDark": 1888685518, + "Stormzilla": 252684095, + "SunBird": 1602211198, + "Transformation_ArmoredSkeleton": 1861349834, + "Transformation_CatThug": 1175387611, + "Transformation_Cat_Bandit": 1012395694, + "Transformation_ClockworkGolem": 601121214, + "Transformation_Cyclops": 620156297, + "Transformation_DarkFairy": 1206757203, + "Transformation_DraconianSorcerer": 1212016810, + "Transformation_Draconian": 450730089, + "Transformation_EarthColossus": 140119452, + "Transformation_EvilSnowman": 1497097122, + "Transformation_FatGobbler": 634003800, + "Transformation_FireElemental": 822233230, + "Transformation_FireElf": 46585468, + "Transformation_FireSalamander": 2118418114, + "Transformation_Gobbler_Skinny": 162365207, + "Transformation_GolemSteel": 1329184184, + "Transformation_Ice_Colossus": 430406408, + "Transformation_Krokomummy": 1644615769, + "Transformation_MagmaMan": 545064542, + "Transformation_Mander": 88998828, + "Transformation_NinjaPig": 1029132174, + "Transformation_Ninja_Pig_04": 7093548, + "Transformation_RatThug": 1175352795, + "Transformation_RavenMystic": 1443197359, + "Transformation_StormElemental": 637088511, + "Transformation_Treant": 1874998327, + "Transformation_WarPig": 691088645, + "Transformation_WolfScout": 263523463, + "Transformation_WolfWarrior": 6092463, + "Transformationn_SkeletonPirate": 1821341863, + "Treant": 1396597132, + "Troll": 82261620, + "Unicorn": 550546918, + "Unknown": 718677478, + "Wolverine": 528843083, + "Wraith": 1788506505, + "Wyrmkin": 379044612, + "Transformation_CyrusDrake": 94277831, + "PetEgg": 1973167984, + "GhostLady": 493415959, + "Banshee": 827805677, + "GobblerRed": 250135875, + "Ghoul_Gravedigger": 161812468, + "SkeletonWarrior": 734585814, + "BansheeBoss": 806445565, + "Seraph": 1792950125, + "CrabKing": 277875784, + "UndeadCaster": 1680689397, + "DragonFrontier": 1829438301, + "HeckhoundGhost": 872406464, + "Mount_Unicorn": 212699468, + "Jellyfish": 910724608, + "SeaDragon": 1194541306, + "Turtle": 1897184620, + "Starfish": 1447562471, + "SpinyFish": 162948281, + "Mount_Gryphon": 2110522960, + "Mount_Shark": 1170186623, + "Mount_Manta": 979931598, + "Mount_Seahorse": 1554833818, + "Mount_Seahorse_Tough": 1245859453, + "Mount_Koi": 1150937409, + "Mount_Lobster": 2025618875, + "Mount_Turtle": 1490849128, + "VenusFlyTrap": 1612039757, + "GDN_MED_BabyCarrots": 327334743, + "GDN_SM_BoomShroom": 31324632, + "GDN_SM_Dandelion": 2058674142, + "GDN_SM_Disparagus": 1732989489, + "GDN_MED_EvilSnowPeas": 747408607, + "GDN_SM_FicklePickle": 205381955, + "GDN_SM_HappyHolidaisy": 1736236340, + "GDN_MED_HelephantEars": 1803669659, + "GDN_MED_HoneySickle": 424149132, + "GDN_LG_NinjaFig": 847338104, + "GDN_LG_SnapDragon": 1076151689, + "GDN_SM_StinkWeed": 845383431, + "GDN_MED_TrumpetVine": 1922690264, + "GDN_MED_VenusFlyTrap": 1560899638, + "GDN_SM_Laughodil": 1278979588, + "GDN_LG_BreadFruitBush": 533042934, + "GDN_MED_PricklyBearCactus": 1236846986, + "GDN_MED_KingParsley": 110148182, + "LeprechaunPatriotic": 414730890, + "SeraphYuletide": 1325846853, + "DragonGhost": 1502126893, + "UnicornNightmare": 604358256, + "EvilSnowmanSandman": 1579432150, + "Colossus_Spirit": 422514215, + "Rock": 2393554, + "GDN_MED_GivingTree": 2047236132, + "Egg": 70853, + "Mount_Carpets": 1602744888, + "Kraken": 1737191829, + "Wyvern": 1727802601, + "Phoenix": 1765559002, + "Judgement": 562901781, + "ForestLord": 1390734923, + "Humongofrog": 1272123051, + "Scarecrow": 41441599, + "Mount_Ram": 77196599, + "BasketSnake": 1835657086, + "Samoorai": 522797493, + "Transformation_RavenWarrior": 701169336, + "PhoenixStorm": 1325268802, + "PhoenixDeath": 1281634042, + "GDN_LG_CouchPotatoes": 879742725, + "GDN_MED_KeyLimes": 811516024, + "Mount_BoneDragon": 1023618313, + "Mount_BigBoneDragon": 1124383680, + "Mount_FairyWings": 1904926612, + "Mount_DragonWings": 755225925, + "Mount_Pegasus": 1621244140, + "GDN_MED_BellPepper": 1710238687, + "GDN_MED_GrapesOfWrath": 1068787103, + "GDN_SM_TigerLily": 1899057048, + "WysteriaPiggle": 49173891, + "Mount_Wyvern": 1658410744, + "Mount_2P_Rhino": 1052779475, + "NightHawk": 358964390, + "Giraffe": 935214826, + "Mount_Hawk": 2070898895, + "Mount_HalloweenNightmare": 726136378, + "GobblerHalloween": 1482399836, + "Leopard": 1606863715, + "Skink": 76950867, + "Mount_Ostrich": 466111322, + "Mount_Crocagator": 1981222087, + "Transformation_Blacktusk-01": 401543565, + "Mount_Hippogriff": 2043817624, + "Transformation_Gorilla-01": 1555853240, + "Transformation_Gorilla-02": 1606184888, + "Mount_Raven": 94983735, + "Mount_Chrismoose": 1822495199, + "Mount_CandyCane": 1148551147, + "Ivy_League": 925492799, + "GDN_MED_Ivy_League": 1630077794, + "Mount_Kirin": 1168691825, + "GDN_SM_Moonflower": 2068754330, + "GDN_MED_BoonTree": 788055729, + "Snowball": 2046118016, + "Foo_Dog": 1549710807, + "ShenlongDragon": 932676736, + "Monkey": 1233866291, + "Wolfhound": 626884686, + "Redcap": 1540319086, + "Raven": 79941650, + "HollowKnight": 1107268274, + "Book": 2405826, + "GDN_MED_AngoraBunnyEars": 1547559854, + "GDN_MED_FortuneCookieTree": 786686214, + "GDN_MED_GooseTree": 809354938, + "GDN_SM_HoneyBeePlant": 1528880373, + "GDN_MED_BambooShoots": 1096708900, + "GDN_SM_Huckleberries": 1937475840, + "Rock_Moustache": 962221287, + "Efreet_Myth": 1834555522, + "Efreet": 1401700123, + "Mammoth": 1395147745, + "Triton": 1730466188, + "Gnome": 74954215, + "BoneDragon": 429245206, + "Basilisk": 1457899086, + "Chimera": 529027789, + "Transformation_GammaTemplate": 1337834518, + "Mount_Camel": 1168198963, + "Mount_RenaissanceWings": 1049782088, + "Bull_Mount": 1713506759, + "Mount_Owl": 1150938242, + "Mount_Alphyn": 487264165, + "Mount_Stag": 1150353823, + "Mount_Auroch": 509865325, + "Mount_Warg": 1150358072, + "StrangeBeast": 511334734, + "Efreet_Ice": 1820009122, + "Efreet_Storm": 1269986674, + "GDN_LG_AlligatorPear": 1293913372, + "Mount_2P_Treant": 928450863, + "Mount_2P_Dragon": 1431637933, + "Mount_Pogo_Stick_WC": 1462849298, + "Mount_Pogo_Stick_MB": 1349603090, + "GDN_LG_MeltingCheese": 1914589015, + "GDN_SM_FishOnAVine": 1734955358, + "GDN_LG_AngelOak": 1539539424, + "GDN_LG_MeltingCheese_Angel": 1254781264, + "SnowyOwl": 1682262138, + "Mount_3P_Hydra": 1207475250, + "WeaselMinstrel": 1541234616, + "MOUNT_Rickshaw": 938282973, + "Transformation_Sherlock-Bones": 509126601, + "Mount_Phoenix": 556355452, + "Toaddle": 597488187, + "Pantera": 528797696, + "WildfireTreant": 673362041, + "StoneTiger": 746336665, + "Blowfish": 1447737334, + "Smith": 78327187, + "FlyingCat": 1254472614, + "RamWarrior": 536916302, + "Ladybug": 1846384669, + "BurlapBoy": 607590898, + "DeerKnight": 560802130, + "Gargoyle": 1227701700, + "Chameleon": 596131510, + "Scorpion": 1462253104, + "GDN_SM_BoiledPeanuts": 544885684, + "GDN_SM_ClockFlower": 676513046, + "GDN_SM_DeadBeets": 650783482, + "GDN_MED_SnowApple": 1916648180, + "Eyecaramba_Violet": 1804780775, + "Eyecaramba_Green": 750346574, + "Eyecaramba_Orange": 687614854, + "Piggle_Grandfather": 131445665, + "Velociraptor": 1042311818, + "Babydactyl": 1180982194, + "Stegosaurus": 476811765, + "Mount_Pegasus_Spectral": 948250730, + "Mount_2P_Scarydactyl": 1808983335, + "Mount_2P_TRex": 1495851852, + "Therizinosaurus": 80337863, + "Runtosaurus": 476200406, + "FrilledLizard": 420993517, + "Mount_Ankylosaurus": 669692274, + "Mount_Triceratops": 1126950204, + "Mount_2P_Glider": 1630365881, + "Transformation_Thunderhorn": 1045262037, + "Transformation_Jaguar": 1080966062, + "Transformation_Pteranadon": 273836142, + "Transformation_ShadowWeaver": 255927111, + "Transformation_EagleWarrior": 1880471875, + "Mount_Falalalallama": 389890123, + "Mount_2P_WinterTreant": 1850265056, + "GDN_LG_MissileToe": 1767792974, + "GDN_MED_PointSetta": 647257205, + "Nutcracker2012": 1598217699, + "Coal2012": 1627852119, + "Mount_Sleigh": 1636615519, + "Mount_Sabertooth": 1613031507, + "Mount_MechanicalWings": 1014917438, + "PiranhaHunter": 686271163, + "Quetzal": 2020925822, + "Mount_Sloth": 1169387359, + "HollowKnightLife": 2114081886, + "BettaFish": 138088968, + "MummyCat": 62372925, + "TrojanHorse": 1725299194, + "WC_Storm_Possessed": 186960228, + "AV_Possessed": 1106693085, + "AZ_Possessed": 1106692701, + "CL_Possessed": 1106692255, + "KT_Possessed": 1106693015, + "MS_Possessed": 1106692977, + "WC_Possessed": 1106692459, + "Mount_2P_Whale": 448824263, + "Mount_2P_Chariot": 88035298, + "Mount_WarBoar": 1159836211, + "Mount_Palanquin": 47587550, + "BearCub": 672664722, + "Transformation_Minotaur": 1454233452, + "DragonGauntlet": 797645257, + "DeathUnicorn": 924144161, + "Flamingo": 1488424911, + "Mount_Gorilla": 1939919432, + "Mount_WarUnicorn": 1361393198, + "GargoyleMyth": 1819685060, + "TikiMan": 16098567, + "Siren": 79937811, + "GoldenRam": 410220227, + "Harpy": 96026632, + "SwordShield": 1668411785, + "ClockworkKnight": 1059948980, + "Mount_MechanicalEagle": 1720948645, + "Mount_Cloud": 1166233435, + "Mount_Surfboard": 1914250039, + "Mount_BetaDragon": 1023653721, + "Mount_BeeWings": 1387988401, + "Vampire": 524731385, + "FrankenBunny": 589797989, + "BumbleBee": 249592226, + "Mount_Dragonfly": 1028843656, + "BronzeGolem": 1320867859, + "TarantulaHawk": 1983939429, + "Mount_Grasshopper": 1852850928, + "FlyingSquirrel": 847551166, + "GDN_MED_Sunion": 1652707634, + "GDN_MED_SwordFern": 548761438, + "GDN_SM_SugarKhrystal": 267539461, + "GDN_SM_SawPalmetto": 1892888046, + "GDN_LG_FacePalm": 2050814140, + "GDN_LG_QueenCrapeMyrtle": 80378450, + "Transformation_ShadowTank": 1304943609, + "Transformation_ShadowHeal": 1254024185, + "Transformation_ShadowDPS": 87276537, + "Mount_Noelephant": 1383672248, + "SaintBernard": 572932242, + "ParkaFox": 2009808189, + "Goose": 75019719, + "Mount_Coconut": 791151432, + "CreepyBeetle": 345594179, + "BabyDragonfly": 1367084335, + "FennecFox": 41315063, + "PP_Leviathan": 833901526, + "PP_SunSerpent": 1062677009, + "PP_LordOfWinter": 960214698, + "PP_Medusa": 867812931, + "PP_Dryad": 147654656, + "PP_AvengingFossil": 315904647, + "PP_Sabertooth": 1799146677, + "Mount_Butterfly": 1283940943, + "Mount_Hare": 2070851023, + "Transformation_MorganthB": 197306990, + "Transformation_MorganthC": 197831278, + "Transformation_MorganthD": 200452718, + "BabyPegasus": 1215000859, + "ArcaneHelp": 1899247549, + "Mount_Vines": 98389624, + "Mount_ArcaneMinecart": 2001270930, + "Hobgoblin": 2133668461, + "Mount_2P_Rowboat": 237071469, + "ForestSpirit": 1178454602, + "Mount_SpiritWolf": 531991076, + "Otter": 84138671, + "OrigamiBird": 550984083, + "DinoSkeletal": 233277835, + "Mount_HarrowingsGreen": 1605746772, + "Mount_HarrowingsBlue": 477152436, + "Mount_HarrowingsPurple": 2092807554, + "RedPanda": 1744233845, + "Ibis": 2665577, + "Corgi": 78823875, + "Mount_Yak": 996545739, + "Mount_FlyingBalance": 436519643, + "Transformation_ShadowMalistaire": 1043814435, + "Transformation_DragonMalistaire": 841867699, + "Mount_Scarab": 1687658791, + "Transformation_MisterHound": 1973578844, + "Mount_BahHumbug": 55114077, + "Skates": 1568993965, + "Moose": 75019725, + "Mount_Gargoyle": 1456663874, + "GDN_MED_VenusFlyTrapEpic": 1594069606, + "Mount_PlayerWingsPink": 19403046, + "GDN_LG_AlligatorPearEpic": 1326804812, + "Pet_Armadillo": 825736847, + "Mount_JoustingDestrierDyeable": 1683448768, + "GDN_MED_VampireCarrots": 871596496, + "GDN_SM_WhiteTigerLilyEpic": 1703271434, + "GDN_LG_NinjaFigEpic": 938504823, + "GDN_LG_SnapDragonEpic": 2071674466, + "GDN_MED_HelephantEarsEpic": 719166107, + "GDN_MED_TrumpetVineEpic": 225854518, + "GDN_SM_DandelionEpic": 728637442, + "GDN_SM_HuckleberriesEpic": 1903258448, + "GDN_MED_SnowAppleEpic": 1231175967, + "GDN_SM_BoomShroomEpic": 981598771, + "GDN_MED_KingParsleyEpic": 2038371004, + "Mount_Raptor": 749695031, + "Pet_Toucan": 581477475, + "Pet_Squirrel": 969881395, + "Mount_WonkyDonkey": 1481657312, + "Mount_HawkPatriotic": 509149743, + "Pet_FrogAssistant": 1945041750, + "Mount_Cat2": 1151054899, + "Mount_Cat2BW": 1603515443, + "Pet_ArmadilloBW": 825733899, + "Pet_FrankieForearms": 1100195857, + "Mount_SolarSabre": 1281093703, + "MNT_MechOstrich": 258667969, + "MNT_BootsBalance": 1799191558, + "MNT_BootsDeath": 1034912971, + "MNT_BootsFire": 606061658, + "MNT_BootsIce": 2142643294, + "MNT_BootsLife": 773751898, + "MNT_BootsMyth": 144792486, + "MNT_BootsStorm": 1525245121, + "Pet_CorgiBirthday": 1951779369, + "OrigamiBirdBDay": 1909935955, + "Pet_FlyingBlackCat": 432111988, + "Mount_Narwhal": 449637834, + "Mount_NightOwl": 1648420845, + "Pet_Penguin": 137342907, + "MNT_PowerGemUnicorn": 411234062, + "Pet_CrystalButterfly": 512136094, + "Mount_BabyMammoth": 185831059, + "MNT_BabaYaga": 564874997, + "Pet_BabySeal": 657606984, + "Pet_BabyYeti": 635847496, + "Transformation_BallerinaBear": 1525333600, + "Mount_StagYuletide": 1508680687, + "Transformation_TitanMedium": 1700742736, + "Transformation_TitanLarge": 718614967, + "Pet_SirenIce": 849851564, + "Mount_FlyingDeath": 1717725588, + "Mount_FlyingFire": 1177216332, + "Mount_FlyingIce": 1238841184, + "Mount_FlyingLife": 433397684, + "Mount_FlyingMyth": 164983572, + "Mount_FlyingStorm": 375872049, + "Dragonling": 1730534849, + "Pet_EggChicken": 952873217, + "HeckhoundGhost_MAW": 893368960, + "Mount_WinterTrain": 751515281, + "Mount_RubberDucky": 1826548479, + "Pet_BansheeSpellwrit": 917979583, + "Pet_SamooraiSpellwrit": 370057597, + "Mount_UnicornAstral": 886914505, + "Guest_Boochbeard": 1958574095, + "Pet_MouseSister": 1267930350, + "Pet_MouseFather": 2010008339, + "Pet_VampireSquirrel": 250588691, + "Mount_CoffinCar": 1387606595, + "Mount_BabyElephant": 2026559639, + "Pet_RoadHog": 601156960, + "Mount_WolfGryphonWings": 543038283, + "MNT_ClockworkSteed": 891371132, + "Mount_Chopper": 1196683136, + "Pet_ButterflyLamb": 527214392, + "Pet_MouseMother": 2012687123, + "Pet_MouseBrother": 1174380856, + "Pet_Cherub": 769208559, + "GDN_SM_Jewel": 1104045832, + "MR_Death_Duncan_Grimwater": 1850289001, + "Mount_DesertRunner": 2049036229, + "Pet_MonkeyMirage": 418612892, + "Pet_ClockworkOwl": 1038482431, + "Pet_NinjaTurtle": 2024540686, + "Mount_Vines_Halloween": 82852149, + "Mount_SwarmBat": 1151836459, + "Mount_2P_NinjaDragon": 1239694057, + "Mount_Gobler": 1820615236, + "Mount_MaryleboneCar": 2027689685, + "JackOLantern": 1016361578, + "Transformation_DjinnCommonA_Balance": 996127128, + "Transformation_MedicineMode": 25960701, + "CactusHopper": 1956293007, + "Transformation_Mimic_ChestGold_A": 414145432, + "Mount_Ghoulture": 1067671195, + "Pet_Macaw": 1087278472, + "Pet_SandWorm": 653200803, + "Transformation_DromelDancer": 1071824116, + "Pet_Bunnies": 695874547, + "Mount_Snowboard": 1914380015, + "Transformation_DrommelDancer": 226294468, + "Mount_Carpet_New": 1618650322, + "Mount_BunnySleigh": 599915427, + "Helephant_Heart": 419161272, + "Mount_Snowboard_Holiday": 876339060, + "Transformation_GhostDog": 646575420, + "Transformation_PrinceGobblestone": 693826496, + "Transformation_Mithraya": 1240010601, + "Transformation_LuskaCharmbeak": 897469730, + "Transformation_YoungCyrusDrake": 15595663, + "Kookaburra": 1069759154, + "BorealisGolemPet": 797488492, + "FlyingEyePet": 505959833, + "StormCloudPet": 548463069, + "BullPet": 1993917801, + "OpossumPet": 284003652, + "GhoulturePet": 939920734, + "StormCloudPetB": 548463001, + "StormCloudPetC": 548463003, + "Guest_LordNightshade": 1221409981, + "BullPetB": 1993917561, + "BullPetC": 1993917553, + "BullPetD": 1993917513, + "Transformation_ShadowCrit": 1392195065, + "Mount_Pennyfarthing": 1551926344, + "Mount_RowboatPirate": 2079208803, + "Mount_IceCube": 1261861595, + "Guest_LostMaiden": 883675592, + "Guest_BoatswainMcGee": 1359750850, + "Guest_ChiefMateMcGurk": 329643845, + "Guest_DoomedBones": 2015643882, + "Guest_SpectreoftheBrocken": 266357448, + "Guest_DrownedKnight": 1100966093, + "Guest_TarntheDrowned": 329540205, + "Guest_DisloyalKnight": 1853240753, + "Guest_NamelessKnight": 1065677876, + "Guest_LambentFire": 489886605, + "Guest_LordoftheBrocken": 1662003371, + "Guest_StormCaiman": 1147500291, + "Guest_GrinningDeathMoon": 737595789, + "Guest_MoonSkullWight": 1720039490, + "Guest_HuemacSpearWreath": 1522021131, + "Guest_HowlingBanshee": 1340855338, + "Guest_Sea-Booter": 1818491983, + "Guest_DeadRover": 1009273257, + "Guest_CelestianRemnant": 1312268448, + "Guest_Shadow-WebConscript": 1500529411, + "Guest_Shadow-WebMercenary": 623672171, + "Guest_Shadow-WebWraith": 810956416, + "Guest_Shadow-WebHaunt": 500586883, + "Guest_CelestianPartisan": 633346892, + "Guest_CelestianDefender": 482102727, + "Guest_ThraleBonestriker": 1172972733, + "Guest_VorgenSoulbreaker": 1935693246, + "Guest_ServusBloodsword": 1703995647, + "Guest_QueenCalypso": 845803519, + "Guest_BlueBart": 77043390, + "Guest_KarolakNightspinner": 1008737316, + "Guest_ArachtusDuskweb": 1787750209, + "Guest_ZhalarStarcloud": 1453644105, + "Guest_NarallorNightborn": 1963363700, + "Guest_SelwynSkywatcher": 1413136893, + "Guest_OsseusNightreaver": 306827003, + "Guest_IrateBanshee": 865143109, + "Guest_FuriousHowler": 1607252558, + "Guest_CryingSpirit": 1559074820, + "Guest_UndeadDraconian": 169249571, + "Guest_ReanimatedDraconian": 247067807, + "Guest_GhastlySlave": 80127661, + "Guest_BoundSpecter": 369706568, + "Guest_NecroticHaunter": 1714841563, + "Guest_LoathsomeCreeper": 1087245229, + "Guest_FleshrotRetriever": 1925148031, + "Guest_BarbarianSpirit": 2112552732, + "Guest_BeghastionCrowcaller": 586628832, + "Guest_BeghastionFieldburner": 1650751959, + "Guest_BoneWarrior": 76802026, + "Guest_FleshlessSentry": 708431820, + "Guest_PirateRavager": 945157059, + "Guest_RottenScallywag": 974666855, + "Guest_ArmoredBonewalker": 1444568072, + "Guest_UndeadWizard": 1622435563, + "Guest_SoulSearcher": 2094392941, + "Guest_DecayingBlackguard": 412324062, + "Guest_FoulReaper": 919877614, + "Guest_NightShadow": 1675932226, + "Guest_MotleyCrew": 653779218, + "Guest_OrinGrimcaster": 472649066, + "Guest_GhostofSylviaDrake": 218332449, + "Guest_VikaMarkmaker": 1145181168, + "Guest_VasekAshweaver": 1001434369, + "Guest_FireWraith": 1027720368, + "Guest_HungrySoul": 1722435576, + "Guest_FrostBones": 456145606, + "Guest_SnowSkull": 835837850, + "Guest_WinterSkull": 1556601065, + "Guest_LothinDoombringer": 860995070, + "Guest_MimirWinterbane": 1111898070, + "Guest_KulgrimSoulsunder": 278037985, + "Guest_HitojiniDeathcaster": 1144499043, + "Guest_GaikotsuSkeleton": 1113949902, + "Guest_PhantomAce": 1917639347, + "Guest_PhantomGlider": 849918336, + "Guest_Krokomummy": 857773886, + "Guest_NiriniAncientGuard": 359313880, + "Guest_NiriniFireSpirit": 1863811476, + "Guest_VaultHaunter": 197723476, + "Guest_VigilantDefender": 171276829, + "Guest_WanderingAhnicSpirit": 1702865088, + "Guest_ForgottenDjeseritSoul": 1170568256, + "Guest_KaranahnDeathfeeder": 1612857711, + "Guest_ShamblingAhnic": 1579129677, + "Guest_RisenDjeserit": 287855500, + "Guest_KaranahnMortifier": 874288111, + "Guest_DjeseritDweller": 2058423665, + "Guest_AhnicStrider": 1776992302, + "Guest_GuardianoftheFang": 1816795524, + "Guest_DefenderoftheFang": 354353604, + "Guest_ProtectoroftheFang": 1290191037, + "Guest_SouloftheCharmed": 422890577, + "Guest_KaranahnKeeper": 77581557, + "Guest_NiriniIntimidator": 677205957, + "Guest_CondemnedSoldier": 449152244, + "Guest_NimahtheWicked": 1298248873, + "Guest_AkoriNirini": 1123159753, + "Guest_SoulScavenger": 892852198, + "Guest_KeeperoftheFang": 1676773499, + "Guest_ItennuSokkwi": 699159408, + "Guest_Tempestra": 334938435, + "Guest_QueenIrisiDjeserit": 1861434100, + "Guest_TheBonekeeper": 1302503449, + "Guest_CryptScavenger": 1893795791, + "Guest_Soulsapper": 1699756010, + "Guest_KingUroAhnic": 1788825731, + "Guest_KingShemetDjeserit": 1350067043, + "Guest_UnholyWraith": 1871146013, + "Guest_PikeSpiritcrusher": 498715531, + "Guest_SpellwritScreamer": 801626733, + "Guest_SpellwritRonin": 1671439174, + "Guest_Shrieker": 805966229, + "Guest_GravePhantom": 731622936, + "Guest_NightmareSpirit": 230709057, + "Guest_VengefulCreeper": 1100197884, + "Guest_TombRoamer": 1277825068, + "Guest_ShieldSkeleton": 1634270152, + "Guest_AgonyWraith": 30384496, + "Guest_IcyGhost": 768353592, + "Guest_Half-wittedSkeleton": 647996362, + "Guest_LazyHenchman": 1329554426, + "Guest_TiredFighter": 210248632, + "Guest_Screecher": 469007005, + "Guest_SeethingWraith": 664913100, + "Guest_ColdConfusion": 1304943934, + "Guest_OssuaryConscript": 1017667150, + "Guest_Ghulture": 1330558655, + "Guest_BodyGuard": 1048581801, + "Guest_SpectralGuardian": 422805602, + "Guest_VaultConscript": 1388398065, + "Guest_FootPatrol": 1692393321, + "Guest_ArmedGuard": 2045920536, + "Guest_Chilly": 1764665905, + "Guest_Achey": 973370519, + "Guest_Sneezy": 1769440773, + "Guest_Cough": 1170200073, + "Guest_Shadowbones": 1316133167, + "Guest_ForgottenConscript": 1466348281, + "Guest_BarracksGuardian": 236603440, + "Guest_CryptConscript": 314755436, + "Guest_DurvishSeeker": 1825622267, + "Guest_MedicineMode": 167015574, + "Guest_Myriarch2": 593881680, + "Guest_Myriarch3": 593881616, + "Guest_MyriarchEphialtes": 773531895, + "Guest_MotherGhulture": 1585201915, + "Guest_CaptainCosrow": 727107332, + "Guest_VizierRafaj": 214040637, + "Guest_DarkmoorSerf": 1522169114, + "Guest_DarkmoorSquire": 1822567109, + "Guest_ScarletWampyr": 1683954247, + "Guest_DraconianRevenant": 741497298, + "Guest_DraconianEidolon": 107733297, + "Guest_AnguishedWraith": 1078602022, + "Guest_DraconianPyromancer": 729577007, + "Guest_DraconianThaumaturge": 189734361, + "Guest_DraconianDiviner": 472633746, + "Guest_DraconianConjurer": 1824962835, + "Guest_DraconianTheurgist": 1828628416, + "Guest_DraconianNecromancer": 175364324, + "Guest_DraconianSorcerer": 1262893339, + "Guest_SirBlackwater": 366308464, + "Guest_AkhtangWormCrawl": 1589032404, + "Guest_SpiritofDarkmoor": 579455915, + "Guest_ShanevonShane": 2096517522, + "Guest_YevgenyNightCreeper": 1535282881, + "Guest_MalistairetheUndying": 824508513, + "Guest_Bunferatu": 1015806005, + "Guest_CountBelaBlackSleep": 761647679, + "Guest_DeathSoldier": 1715141574, + "Guest_SorrowWhisperer": 556532003, + "Guest_GriefSpectre": 1425488559, + "Guest_HowlingShade": 631460247, + "Guest_WalkingDead": 318527090, + "Guest_Akuji": 977635799, + "Guest_TorturedKakedaSoul": 1716874833, + "Guest_KakedaSpiritSlave": 1814699344, + "Guest_DishonoredSamoorai": 320085744, + "Guest_CursedRonin": 1204095686, + "Guest_TomugawatheEvil": 166125424, + "Guest_OyotomitheDefiler": 1672714483, + "Guest_Fushiko": 801492770, + "Guest_BrokenLandGuardian": 294671991, + "Guest_ShatteredSkyGuardian": 746681463, + "Guest_SunderedSeamGuardian": 1439618652, + "Guest_BrokenLandSpirit": 860105895, + "Guest_ShatteredSkySpirit": 2104112380, + "Guest_SunderedSeamSpirit": 69572311, + "Guest_LostSoul": 204361577, + "Guest_RottingFodder": 308249734, + "Guest_HauntedMinion": 689597338, + "Guest_FieldGuard": 1175228991, + "Guest_SkeletalWarrior": 778393993, + "Guest_SkeletalPirate": 1476730220, + "Guest_WanderingSpecter": 126188449, + "Guest_LivingScarecrow": 1442943145, + "Guest_FrostPhantom": 1809776664, + "Guest_FireShrieker": 173332719, + "Guest_CryptCrawler": 2118799272, + "Guest_ViridianSpecter": 383149977, + "Guest_ArgentClatterer": 525414714, + "Guest_SwimmingSpecter": 1494025094, + "Guest_ScarletScreamer": 1689589811, + "Guest_BoneDigger": 1351421123, + "Guest_HowlingGhost": 664019391, + "Guest_SkeletalSoldier": 750463116, + "Guest_MaidenofHate": 444442868, + "Guest_SkeletalRetainer": 1409032775, + "Guest_SoulHunter": 1900267551, + "Guest_MidnightShuffler": 1991052065, + "Guest_PlaguedSoul": 419071561, + "Guest_HauntingBanshee": 345837052, + "Guest_SimontheSayer": 1352807820, + "Guest_TheHarvestLord": 1923575206, + "Guest_LadyBlackhope": 1403431623, + "Guest_SergeantSkullsplitter": 898737831, + "Guest_Foulgaze": 2063419769, + "Guest_Wormguts": 788697519, + "Guest_Rattlebones": 125602919, + "Guest_Paulson": 1112716921, + "Guest_Grubb": 1167554274, + "Guest_Norton": 581021964, + "Guest_NightStalker": 1447653309, + "Guest_AddereTimeo": 1491420030, + "Guest_TheReaper": 1526369733, + "Guest_AngrusHollowsoul": 1427862805, + "Guest_OrrickNightglider": 951078615, + "Guest_SteelSentinel": 885250894, + "Guest_Shadow-WebSoldier": 2014925398, + "Guest_LostCeleste": 1725301830, + "Guest_CapnNigelSkullcrack": 1665439970, + "Guest_HaulAwayJoe": 1075985331, + "Guest_OldMaui": 15300840, + "Guest_LordAgue": 140791419, + "Guest_MelweenaSmite": 432188189, + "Guest_HalloweenTrickster": 2043736417, + "Guest_PumpkinHead": 1098332105, + "Guest_BaronMordecai": 817370918, + "Guest_KaimaniteMummy": 1332671420, + "Guest_VeggieRevanant": 928504192, + "Guest_BloodBat": 76467389, + "Guest_DeadBeets": 157829578, + "Guest_Desparagus": 1130644076, + "Guest_MeanestFly-Trap": 1652898868, + "Guest_Nosferabbit": 1021159436, + "Guest_ThrallofSothmekhet": 330780177, + "Guest_VileApparition": 426627869, + "Guest_SoulServant": 1183110886, + "Guest_SoulKeeper": 917518313, + "Guest_AdmiralBontau": 2032168402, + "Guest_DeathWhisperer": 3814952, + "Mount_RollerBlades": 111369373, + "Guest_BaneWyrm": 147033576, + "Guest_BlackDragon": 939469656, + "Guest_DragonSpawn": 1829803517, + "Guest_Fire-SpitterSpawn": 616624489, + "Guest_CaoranachtheFire-Spitter": 323513000, + "Guest_Jabberwock": 1552492834, + "Guest_CatalantheLightningLizard": 1155778705, + "Guest_WhiteDragon": 2009449331, + "Guest_WinterWyrm": 478925069, + "Guest_WyrmStatue": 2119216210, + "Guest_AlgidWyrm": 1309546482, + "Guest_BruleeSucre": 390936202, + "Guest_HebitohoWyrmling": 1682026810, + "Guest_Shadowwock": 505539184, + "Guest_EirikurAxebreaker": 1361453552, + "Guest_WarWyrm": 1124740742, + "Guest_StrayFireflier": 610979811, + "Guest_BurningFlamewing": 2041225130, + "Guest_FeralLavaling": 371483057, + "Guest_SplinterWing": 923421333, + "Guest_ChanticoBlueAir": 1572441903, + "Guest_CopperWingGuard": 302783602, + "Guest_ObsidianBeak": 2016227452, + "Guest_CaquixNineShadows": 2070101060, + "Guest_LustrousTlalocan": 1201030473, + "Guest_SeedThief": 263211181, + "Guest_PopZotzUnluckyDay": 1416773489, + "Guest_NezathePoet": 1905861376, + "Guest_MazenStingerBee": 1642023393, + "Guest_ImperialJusticePayne": 1285679745, + "Guest_AssistantWardenPorfiry": 22099059, + "Guest_MarshalKamensky": 524669730, + "Guest_WardenVissarovich": 882556823, + "Guest_GulagGuard": 100744159, + "Guest_CaptainKravchuck": 690830770, + "Guest_ImperialGuard": 346803640, + "Guest_IronPaw": 1797329688, + "Guest_TundarianEnforcer": 134256836, + "Guest_Ivan": 996220221, + "Guest_ColonelOrlov": 1381254189, + "Guest_IronPawIntakeCaptain": 2099184835, + "Guest_SolitaryWarden": 1503529566, + "Guest_CaptainZubkov": 793725366, + "Guest_SergeantBobrik": 722182485, + "Guest_WailingWraith": 946976407, + "EggChick": 1452316301, + "BunnyMallow": 518233330, + "Guest_ThunderHornZombie": 1007920040, + "Guest_SmokingMirrorZombie": 340971759, + "Guest_ShamblingZombie": 1920485146, + "Guest_MoonSkullZombie": 809249764, + "Guest_DeathlessStormHorn": 812397213, + "Guest_MozarTurtleHunter": 561749043, + "Guest_GuillermoShatterer": 499565054, + "Guest_XiuhcoatlBarbedTooth": 1719245305, + "Guest_AzcalFireAnt": 1281366337, + "Guest_TlotzinMoonThief": 407285761, + "Guest_PocaCruelStar": 1117353085, + "Guest_ThunderHornGhoul": 597878999, + "Guest_TezomocStoneSinger": 733511940, + "Guest_EzhuaBadTaste": 632779219, + "Guest_UacalxochitlBloodEye": 1614856226, + "Guest_WanadiBlackSky": 349829749, + "Guest_ElMarrow": 483880636, + "Guest_GrimCalaca": 1534029144, + "Guest_XipeFlayedOne": 1343577398, + "Guest_MotecumaDeathMask": 1782393717, + "Guest_EkeChuah": 13416770, + "Guest_AnacaonaBlackSnake": 1543344897, + "Guest_SmokingMirrorWight": 776452983, + "Guest_Tolkemec": 217428080, + "Mount_Fox": 77199428, + "PP_OwlProtege": 268847192, + "Mount_SharkSki": 331374103, + "PP_Dolphin": 1662291612, + "Mount_CastSymbol_D": 1134428045, + "Mount_CastSymbol_E": 1136525197, + "Mount_CastSymbol_F": 1138622349, + "Mount_CastSymbol_G": 1140719501, + "Mount_CastSymbol_A": 1128136589, + "Mount_CastSymbol_B": 1130233741, + "Mount_CastSymbol_C": 1132330893, + "Guest_LionSpectralGuardian": 1791543691, + "Guest_KillmareSpiritwalker": 1818928165, + "Guest_ZebraSpectralGuardian": 815933596, + "Guest_GorillaSpectralGuardian": 1635182119, + "Guest_IklawGhostWarrior": 373465545, + "Guest_BwanaShadowriver": 1307628747, + "Guest_ElephantSpectralGuardian": 1579402208, + "Guest_ZangaZebu": 1218173119, + "Guest_GrumishGreataxe": 486953385, + "PP_GlowFairy_A": 2028856748, + "Guest_RestlessSoldier": 1142701763, + "Guest_WanderingWizard": 209518514, + "Guest_ColonelIvanenko": 399169035, + "Guest_DetollitheDestroyer": 655767295, + "Guest_Jawniak": 1791298433, + "Guest_Tajniak": 356182394, + "Guest_Ygor": 996316081, + "Guest_KyaniteLancer": 2136703656, + "Guest_VestaShadowmark": 1846747836, + "Guest_ZoraSteelwielder": 1186470644, + "Guest_AndorBristleback": 1949884743, + "Guest_GalliumPaladin": 1812340868, + "Guest_GalliumFootman": 1295203112, + "Guest_GalliumShardtrooper": 1210699836, + "Guest_GalliumJuggernaut": 3527584, + "Guest_VladimirDarkflame": 1575322237, + "Guest_KyaniteLieutenant": 561528977, + "Guest_DrusillaMorningbane": 155837810, + "Guest_KyaniteValkyrie": 53242136, + "Transformation_20Q_SherlockBones": 1112674320, + "Guest_DevoraShadowcrown": 1813459117, + "Guest_YoualaNightDrinker": 881289828, + "Guest_Pendragon": 715669945, + "Guest_CelestianRevenant": 515730327, + "Guest_SoullessServant": 1505662730, + "Guest_SpiritServant": 104517373, + "Guest_SoulSerf": 1188214406, + "Guest_ServileSoul": 871844607, + "Guest_SkeletalCorsair": 239414410, + "Guest_RottedFodder": 1301186193, + "Guest_ScarletScreecher": 600457915, + "PP_FrankBunnyBride_A": 974707030, + "Guest_BastillaGravewynd": 2100015237, + "Guest_VilaraMoonwraith": 2067986693, + "Guest_YngvarSharptooth": 1783361972, + "Guest_TroubledWarrior": 1569033392, + "Guest_VeggieRevanant2": 928503904, + "Guest_VeggieRevanant3": 928503888, + "Guest_VeggieRevanant4": 928503872, + "Guest_VeggieRevanant5": 928503856, + "Guest_AncientQhatWarrior": 1564521104, + "Guest_EmperorPaleolo": 2079384347, + "Guest_SpiritofIntolerance": 1627658048, + "Guest_SpiritofInquiry": 1320544891, + "Guest_FirstGuardian": 1982227776, + "Guest_FallenMerc": 225926286, + "Guest_NightShadow2": 1638183490, + "Guest_NightShadow3": 1636086338, + "Guest_NightShadow2-2": 1436856907, + "Guest_NightShadow3-2": 1434759755, + "Guest_NightShadow4-2": 1432662603, + "Guest_NightShadow5-2": 1430565451, + "Guest_NightShadow6-2": 1428468299, + "Guest_NightShadow7-2": 1426371147, + "Guest_FirstScythe": 738854032, + "Guest_GreyMantisCaptain": 860186057, + "Guest_GreyMantisHunter": 1239274377, + "Guest_Atlach-Leng": 836136649, + "Guest_PetrovGloomstrider": 2045783873, + "Guest_NauyotolDownIntheHole": 1134251106, + "Guest_SandorSpearcaller": 1351072377, + "Guest_MavraFlamewing": 1477685600, + "Guest_Scaldling": 208751819, + "Guest_WoebegoneWraith": 1166488705, + "Guest_BorisBlackrock": 1365399915, + "Guest_KatiaFirewinter": 521255834, + "Guest_ValerikBrightsword": 1244055782, + "Guest_RurikFlamesoul": 1962726850, + "Guest_IonaPyrelance": 722266491, + "Guest_DarkPoltergeist": 818162178, + "Guest_TheCollector": 1772287612, + "Guest_ViktorSnowcrusher": 1028387381, + "Guest_ValeskaRedwind": 19316351, + "Guest_ScarrikGallowgaunt": 105397333, + "Guest_Neberyx": 1453883041, + "Guest_AsrikWidebelt": 401936422, + "Guest_GothricHonorbound": 750072340, + "Guest_HalfangBristlecrown": 618779562, + "Guest_OsvudFleetpaw": 1023466459, + "PP_PufferFish_A": 1578606029, + "Guest_OzelUnderwaterCat": 1033669302, + "PP_BabyGreenMan_A": 910025246, + "PP_SchoolTurtle_A": 1012620678, + "PP_DarkBalloon_A": 1229308566, + "MT_JetsamCopter": 92127678, + "Mount_4P_DarkClownCar": 420246262, + "MNT_BalloonsBunch": 2000358474, + "Guest_TempleGuardian": 632574316, + "Guest_TemplePhantom": 1701097840, + "Guest_MahonStarsearcher": 1549093341, + "Guest_LostKnight": 858980994, + "Guest_AnguishedWoodman": 174606918, + "Guest_TormentedTreant": 294050331, + "Guest_WildfireTreant": 1902129818, + "Guest_BlightedYaxche": 679097088, + "Guest_Junglethorn": 1734561424, + "Guest_Tangleroot": 2027061721, + "Guest_BlightedFreerooter": 1109803061, + "Guest_Winterbranch": 1170787806, + "Guest_DecayingBogwalker": 1338670789, + "Guest_BrownwoodTormentor": 1655181754, + "Guest_Wildroot": 1839747182, + "Guest_Ironsplinter": 668295157, + "Guest_Frostbranch": 75974631, + "Guest_KyoukonteiTreant": 474446232, + "Guest_BrokenStumps": 414724364, + "Guest_WordlessWoodsmen": 1813881830, + "Guest_DesiccatedTreebeard": 1826942903, + "Guest_ShadowoftheLand": 1612385317, + "Guest_TreeRoot": 1406633546, + "Guest_BefouledWoodwalker": 1517919498, + "Guest_ConfusedForestWarrior": 750805985, + "Guest_CrazedForestSpirit": 1007960507, + "Guest_Oakheart": 1158293719, + "Guest_SnowTreant": 1028620035, + "Guest_Snowbeard": 1997921701, + "Guest_BarkskinTreant": 2143957812, + "Guest_RazorleafTreant": 2133159197, + "Guest_CarrionFlowerMan": 1120698936, + "Guest_Kurokage": 355651925, + "Guest_LacombeStrawHouse": 568809873, + "Guest_BerkshireStickHouse": 1932133405, + "Guest_TamworthBrickHouse": 894027634, + "Guest_RustyTinderSpark": 1237916230, + "Guest_CoraWinterBranch": 1901918989, + "Guest_GrambleGoldRook": 1986988546, + "Guest_PiperStormTree": 1109520133, + "Guest_Hanadzura": 124838500, + "Guest_Kuchisaki": 2084188681, + "Guest_Kaizoku": 807430784, + "Guest_JaxonLastRites": 1653711119, + "Guest_SeijunKiller": 657647155, + "Guest_ZarichiTarakata": 1129212566, + "Guest_BladelessRonin": 1577395797, + "Guest_SanzokuOutlaw": 1682888807, + "Guest_SanzokuBandit": 1766198653, + "Guest_KakedaPainbringer": 1260119278, + "Guest_KakedaStalker": 367458449, + "Guest_KakedaShadow": 1604499626, + "Guest_KakedaSoulcrusher": 1961168112, + "Guest_ImitsuPlaguemaster": 1361539025, + "Guest_ImitsuDefouler": 1299791045, + "Guest_ImitsuPunisher": 234819300, + "Guest_StudentofKhai": 249757647, + "Guest_OtomoBattlemage": 918160114, + "Guest_OtomoCourier": 1373253378, + "Guest_OtomoSupplyRunner": 1580070577, + "Guest_OtomoScout": 1814051082, + "Guest_OtomoWrestler": 1053571230, + "Guest_OtomoFury": 111319603, + "Guest_Hyottoko": 307080225, + "Guest_Usunoki": 1881339626, + "Guest_Kagemoosha": 1842766119, + "Guest_UdoJin-e": 850816224, + "Guest_TakedaKanryu": 536087422, + "Guest_Tamauji": 818613882, + "Guest_Jikiru": 794167355, + "Guest_Nomoonaga": 849534658, + "Guest_Aiuchi": 515942855, + "Guest_Kurogaso": 1426248002, + "Guest_Ideyoshi": 1814038213, + "Guest_Koto": 1151260427, + "Guest_Usegi": 977549586, + "Guest_Kanago": 1644367227, + "Guest_Kyuto": 1168225979, + "Guest_Haru": 2070048389, + "Guest_Ashikata": 1523446928, + "Guest_Katsumori": 1823914597, + "Guest_Hingen": 1567896261, + "Guest_Yakedo": 502298497, + "Guest_Do-Daga": 1239945714, + "Guest_Maito": 979260804, + "Guest_TonkatsuThug": 1758658397, + "Guest_GobbloreanGuard": 1286210991, + "Guest_BabblingMeints": 413418139, + "Guest_PrinceGobblestone": 1813171676, + "Guest_GobblerMuncher": 1517159487, + "Guest_GobblerGorger": 130736772, + "Guest_GobblerScouter": 1509427587, + "Guest_GobblerGlutton": 1912199781, + "Guest_GobblerScavenger": 136586791, + "Guest_BaronGreebly": 1028182200, + "Guest_BaronRotunda": 457132907, + "PP_DeathMimic": 1811942047, + "Guest_GreenMan": 1126663802, + "Guest_ForestGrump": 1602350320, + "Guest_ErvintheBarbarian": 1671762776, + "Guest_RazortuskWarrior": 1109994549, + "Guest_RazortuskBrawler": 732265321, + "Guest_SplithoofRager": 1922134329, + "Guest_TuskedRaider": 1920114147, + "Guest_SviniBeserker": 1146317608, + "Guest_SviniReaver": 216717251, + "Guest_Shattertusk": 1191456730, + "Guest_SplithoofBarbarian": 296671728, + "Guest_Bloodseeker": 2086598239, + "Guest_Scarsnout": 1831766077, + "Guest_MasterTonkatsu": 1783298894, + "Guest_Grisletusk": 657393295, + "Guest_SplithoofBloodguard": 488382274, + "Guest_BristlehideRaider": 237078958, + "Guest_Gullin": 1656401882, + "Guest_ForestNymph": 812055814, + "Guest_SassafrasMan": 1327049788, + "Guest_RandolfSpellshine": 108808620, + "Guest_BleysFlamerender": 434070106, + "Transformation_Khan": 1398327634, + "Transformation_TheBat": 1675113521, + "MNT_DireWolf": 845578449, + "MNT_YuleMule": 1976182058, + "MNT_LightBlades": 829118450, + "MNT_FlyingSquid": 1573132252, + "PP_Globulin": 467801224, + "PP_BeastBaby": 1807874692, + "PP_SaniBot": 670845902, + "Mount_SwarmSand": 1277669407, + "Guest_Nodnarb": 211478288, + "Guest_LordBramble": 1118781162, + "Guest_Yogash": 506264561, + "Guest_Marcio": 499428996, + "Guest_Procyon": 1115376865, + "Guest_Thunderfin": 2029218563, + "Guest_ArkynMoonblade": 1152775206, + "Guest_CreeCurdWright": 1714953095, + "Guest_DeerMouseRevenant": 315064435, + "Guest_ElanaDarksun": 837982094, + "Guest_KingAlricFateSailor": 1934591130, + "Guest_LaughingCalaca": 984492527, + "Guest_WraithKnight": 620484548, + "Guest_FieryEchoofApep": 484636593, + "Guest_FrostyEchoofApep": 171933154, + "Guest_FalseEchoofApep": 479387377, + "Guest_ChargedEchoofApep": 1229406800, + "Guest_ShrowdengersQhat": 101563303, + "Guest_Scrollkeeper": 643219293, + "Guest_TerrorHound": 753341570, + "Guest_CondemnedMander": 445370758, + "Mnt_SnowStorm": 1491572670, + "Mount_ChimneySweeper": 378571534, + "MNT_PineappleCandyCane": 1630795796, + "Guest_TyphonDustwind": 740849673, + "MNT_StickHorse": 216654744, + "MimicTemplate": 1461219184, + "MNT_Ball_N_Chain": 289720920, + "PP_PeaceDove_A": 1785119671, + "Mount_Gyrocycle": 1495008048, + "PP_BattleMageDragon_A": 1864696711, + "MNT_BattleBeast": 1304449286, + "MNT_SmokeTrails": 387873030, + "Mount_FriendshipHare": 677127330, + "MNT_ButterflySwarm": 383602683, + "PP_EggChick_B": 1959154042, + "MNT_Unicorn": 562210585, + "PP_StuffedUnicorn": 1731641773, + "MNT_ParadeTruck": 2026348978, + "MNT_ParadeTruckXmas": 1017864627, + "MNT_AutumnLeafSwarm": 1540002279, + "PP_GingerbreadMan": 1796172229, + "PP_DecadeDragon": 1819398630, + "MNT_StageShip": 829852992, + "PP_DramaLlama": 255896529, + "PP_HallMinotaur_A": 1492017563, + "Guest_MacDeath": 1526226705, + "Guest_MacDeathUnderstudy": 1731752647, + "Guest_MacLifeUnderstudy": 257466641, + "Guest_MacStormUnderstudy": 8295117, + "MNT_Pantera": 1135198, + "MNT_StagLight": 1908778048, + "MNT_GiantSpider": 1247185021, + "MNT_StagEvil": 872303931, + "PP_BaskHound": 1093866594, + "PP_Marionette": 1688299938, + "PP_Marionette_B": 1688297824, + "Guest_Izft": 996301405, + "Guest_SapotisMinion": 1625665891, + "Guest_CrazedSlave": 1473233468, + "Guest_CharmedSlave": 803043667, + "Guest_EnsorcelledSlave": 40920285, + "Guest_HallServant": 2038116460, + "Guest_SiathePerceiver": 1235571913, + "Guest_Kiwu": 1151177787, + "Guest_NightImp": 1051843424, + "Guest_EvilTrickster": 1035477123, + "Guest_DeepWoodsImp": 1502444054, + "Guest_ForestPest": 802235713, + "Guest_TaintedForestImp": 1030343985, + "Guest_Youkai": 518367729, + "Guest_CarthaginianElephantWarrior": 776293919, + "Guest_IdrisBeast-Taker": 106759521, + "Guest_MikaSkarka": 237956516, + "Guest_Belloq": 757247833, + "Guest_GurtokPiercer": 549466122, + "Guest_GurtokFirebender": 817966523, + "Guest_GurtokDemon": 544070162, + "Guest_GeneralFiretusk": 2073037770, + "Guest_GurtokBarrierDemon": 44657563, + "Guest_BlacktuskShaman": 1009070925, + "Guest_FireDemon": 158367196, + "Guest_DeathOni": 1916642000, + "Guest_JadeOni": 1289517185, + "Guest_PlagueOni": 1464586443, + "Guest_WarOni": 1630196094, + "Guest_BrokenLandMammoth": 1587008312, + "Guest_SunderedSeamMammoth": 1272698721, + "Guest_BullyMammoth": 170705927, + "Guest_Bullhemoth": 146998717, + "Guest_Kogasha": 1909654543, + "Guest_MusuthBerserker": 1741298129, + "Guest_BlackTuskCultist": 1771575961, + "Guest_AksilBlacktrunk": 1253596409, + "Guest_LongdreamerShaman": 1521283133, + "Guest_MuratGreyeyes": 1296814314, + "Guest_ElephantSoldier": 1443670145, + "Guest_DarajaniGuard": 1597288495, + "Guest_Loremaster": 1792470809, + "Guest_Pork": 2069999347, + "Guest_Beans": 97706585, + "MNT_Ox": 1292937747, + "PP_PropellerSquirrel": 1657443894, + "Guest_RasikPridefall": 97921485, + "Guest_AmedrasLightstep": 1818417025, + "MNT_SmokeTrails_Balance": 1358150715, + "MNT_SmokeTrails_Fire": 702971609, + "MNT_SmokeTrails_Ice": 190218501, + "MNT_SmokeTrails_Life": 2045542105, + "MNT_SmokeTrails_Myth": 1276281121, + "MNT_SmokeTrails_Storm": 564954622, + "Guest_Bellosh": 1407013027, + "Guest_AcampiReedfist": 2076527733, + "Guest_AgnettaBroadblade": 14864960, + "Guest_FrostheartRaider": 1574787221, + "Guest_JordaSwordbearer": 1627071850, + "Guest_KasaiBaku": 1153107369, + "Guest_ZoraimeiHelephant": 1002482606, + "Guest_ConscriptedMander": 43811125, + "Firecat_Decade": 409516955, + "MNT_BatGlider": 2086258491, + "Transformation_PlayerHomework": 673389670, + "Transformation_PlayerAttendance": 422287307, + "Transformation_PlayerLecture": 2035625874, + "Transformation_PlayerPopQuiz": 483367038, + "MNT_GingerbreadHorse": 1369242781, + "MNT_NimbariChariot": 1251740392, + "PP_NimbariDog": 1235126828, + "Transformation_PlayerGrandma": 1128332272, + "Transformation_PlayerScionA": 33862367, + "PP_Mushroom": 1568942158, + "MNT_Scooter": 1148167046, + "MNT_Scooter_B": 2079302532, + "MNT_Scooter_C": 1810867076, + "MNT_Scooter_D": 468689796, + "MNT_IceCycle": 415797788, + "Transformation_PlayerScionA02": 33921759, + "Guest_FearoftheFuture": 947210229, + "Guest_FearofGremlins": 405857384, + "Guest_RootGuardian": 922940845, + "Guest_VineThrasher": 172546427, + "Guest_BlightWalker": 1438155154, + "Guest_BriarScourge": 615681851, + "Guest_DreamJabberwock": 907754098, + "Guest_DreamBelloq": 990352002, + "Guest_Voltergeist": 1558128068, + "Guest_SpecialBranch": 1927849418, + "Guest_MutantBriar": 805892802, + "Guest_FeralBriar": 883790223, + "Guest_MaizeMonster": 688905764, + "Guest_DreamShadowwock": 1432458248, + "Mount_Heartboard": 1421972759, + "PP_ChocoBunny": 324797859, + "Mount-PogoFlower": 906659501, + "MNT_AethyrCloud": 1586061078, + "MNT_Fangle": 7846854, + "Guest_StarfallSpider": 1177620831, + "Guest_AshSpider": 1588502553, + "Guest_CorruptedWeaver": 38937211, + "Guest_CrystalCrawler": 1197980149, + "Guest_ShimmerWidow": 1300740128, + "Guest_FacetedSpikespinner": 1939719331, + "Guest_CrystallineQueen": 1999282256, + "Guest_AncientCrystalweaver": 1409608801, + "Guest_FangtoothLavaspinner": 1538042104, + "Guest_VenomousHeatseeker": 1234682482, + "Guest_FireweaveRockbiter": 300743778, + "Guest_MonkeySpider": 754090007, + "Guest_CryptSpider": 1545405304, + "Guest_CommonHouseSpider": 613486002, + "Guest_ArachnaMagnaMagus": 825817937, + "Guest_ArachnaSoldier": 270978709, + "Guest_Gnissa": 1699826178, + "Guest_WebwoodScuttler": 1728611075, + "Guest_SandSpider": 61789007, + "Guest_WebwoodCreeper": 1013382584, + "Guest_Skathi": 1631429165, + "Guest_ArchmagusLorcan": 321146960, + "Guest_CrawleroftheMist": 2076696304, + "Guest_PaintedSpider": 1482115552, + "Guest_GiantSpider": 1545526191, + "Guest_CaveCrawler": 2101587667, + "Guest_RattleCatcher": 1472707326, + "Guest_TrapdoorSpider": 1321643694, + "Guest_RockClinger": 1304266411, + "Guest_InquisitorXimenez": 1053483090, + "Guest_ElderMagus": 1017836836, + "Guest_WardenBenthamic": 18807199, + "Guest_SpiderArchmagus": 387645558, + "Guest_SpiderAdept": 2094873407, + "Guest_InterrogatorRentenius": 1245984179, + "Guest_WarpedWeaver": 495882677, + "Guest_ArachnaSkinner": 281864085, + "Guest_SkinnerConscript": 2028526453, + "Guest_ArachnaGladiator": 2492046, + "Guest_LorcanInitiate": 353311753, + "Guest_Serket": 1871335773, + "Guest_IceWeaver": 2063216026, + "Guest_SpiritSpinner": 525666327, + "Guest_MysteriousCrawler": 218352756, + "Guest_BlackWidow": 1909331619, + "Guest_BrownRecluse": 1146386275, + "Guest_Creeper": 1197442790, + "Guest_GearSpinner": 67020478, + "Guest_Clinker": 1194519062, + "Guest_Clanker": 1194517014, + "Guest_GrandfatherSpider": 1330981335, + "Guest_Spiderling": 1400274461, + "Guest_ManekiWebWalker": 888348786, + "Guest_KoganiDeathCrawler": 276010604, + "Guest_CheliceranCrawler": 1169176517, + "Guest_ArachniteCreeper": 1850534774, + "Guest_ChelicaranStalker": 2057291848, + "Guest_HornedMonkeySpider": 1301514577, + "Guest_GreyOgreSpider": 1533774471, + "Guest_StarburstSpider": 698029451, + "Guest_PaintedCaveMonster": 601315479, + "Guest_RubbleRouser": 220785666, + "Guest_EarthElemental": 435260049, + "Guest_SharpshardWarrior": 1403237237, + "Guest_Firevein": 1220046430, + "Guest_Blackblade": 458130537, + "Guest_VengefulFireheart": 563205004, + "Guest_FirerockStomper": 608552855, + "Guest_BlackrockGuardian": 1663799582, + "Guest_ConfusedSentry": 24655510, + "Guest_SilverSentinel": 1090673683, + "Guest_SilverServant": 84560693, + "Guest_GiantHomunculus": 456098557, + "Guest_PropertyMaster": 229101764, + "Guest_VaultProtector": 185568207, + "Guest_PlatedDefender": 79324363, + "Guest_Avalanche": 761613547, + "Guest_RockReaver": 919912933, + "Guest_Frostmantle": 856308090, + "Guest_GlacierWalker": 131215932, + "Guest_SandBehemoth": 272513357, + "Guest_RunedAnnihilator": 121339936, + "Guest_RunedDevestator": 1611071181, + "Guest_RunedGuardian": 1986312667, + "Guest_CanyonRager": 1123038266, + "Guest_RubbleReaver": 220774678, + "Guest_Boulderbone": 122279242, + "Guest_Nali": 77467516, + "Guest_Gnar": 1151164930, + "Guest_GlacialAvenger": 1181253632, + "Guest_SokkwiKeymaster": 190919624, + "Guest_SandsofTime": 34920273, + "Guest_BladeGolem": 435561523, + "Guest_FrostColossus": 1564686403, + "Guest_IceColossus": 335477257, + "Guest_PollutedEarthWalker": 86045387, + "Guest_CorruptedEarthSpirit": 1135891559, + "Guest_Stonebreaker": 1317905436, + "Guest_StoneElemental": 1715022018, + "Guest_VolcanisGolem": 1904918929, + "Guest_WaterElemental": 1717850987, + "Guest_AshenDeathMonkeySpider": 35356665, + "Guest_DeathMonkeySpider": 1525508507, + "Guest_MotherMonkeySpider": 110317392, + "Guest_DoomMonkey": 1135105500, + "Guest_DreamMorganthe": 907599965, + "Guest_DragonBeetle": 1974635734, + "Guest_SandWalker": 1530843985, + "MNT_PandaMama": 916371162, + "PP_BabyPandas": 778536285, + "PP_FrogPrince": 729975205, + "MNT_PumpkinCarriage": 183672737, + "Mount_Gobbler_B": 1193388729, + "PP_Hamster": 1578040708, + "Guest_Steeleton": 657429968, + "Guest_GoldenWyrm": 311022393, + "MNT_Roc": 1564431869, + "PP_BabyGriffin": 1913686406, + "Transformation_ShadowDPSMob": 936133896, + "Transformation_ShadowTankMob": 305660992, + "Transformation_ShadowHealMob": 356596800, + "Guest_SpiritofIgnorance": 1577360126, + "Guest_FecklessSoul": 519648315, + "Guest_BurnedOutSoul": 312181646, + "Guest_BenightedRevenant": 2131956962, + "Guest_TombLurker": 1901203489, + "Guest_DesertGolem": 543642682, + "Guest_KumoOni": 215822625, + "Guest_SpellwritStalker": 161772776, + "PP_Sun": 1723237840, + "Guest_Leadite": 4480416, + "Mount_FestiveFox": 2125832348, + "PP_FenrisWolf": 1601784680, + "PP_SchoolPiggle": 109782407, + "PP_FenrisWolf_Red": 1597992854, + "PP_FenrisWolf_Teal": 1455058454, + "PP_FenrisWolf_White": 1102186199, + "Transformation_NinjaPig_Fire": 984575055, + "Transformation_BG_RatThief_Myth": 1191155131, + "Transformation_BG_RatThief_Storm": 675891897, + "MNT_Umbrella": 955683437, + "Transformation_BG_Elf_Ice": 1209681129, + "Transformation_BG_Fairy_DarkMinion_Balance": 33521202, + "Transformation_BG_Cyclops_Death": 876023972, + "Transformation_BG_Minotuar_Fire": 1118476387, + "Transformation_BG_WolfWarrior_Storm": 2075594475, + "Transformation_BG_WolfWarrior_Balance": 746159992, + "Transformation_BG_Draconian_Myth": 903606820, + "Transformation_BG_Draconian_Life": 1501291044, + "Transformation_BG_Colossus_Life": 1320377666, + "MNT_DolphinChariot": 102982520, + "MNT_EvilWagon": 685457563, + "MNT_FlyingDutchman": 1176206544, + "PP_SeaHorse": 2024322494, + "PP_EvilTeddy": 1159020925, + "PP_ZombieParrot": 384805107, + "Transformation_BG_Ice_Colossus": 299613211, + "MNT_CarrierBat": 7323333, + "Transformation_BG_Minotaur_MythTempalte": 430330904, + "PP_FeatheredTabby": 452526748, + "Transformation_Detritus01": 1335763402, + "Guest_Metallossus": 335457082, + "MNT_SantaJaws": 464410203, + "MNT_BattleBadger": 532858222, + "Transformation_Shedder01": 2069145892, + "PP_NatureSpirit": 373176286, + "Transformation_Devourer01": 1004421540, + "Guest_TheDevourer": 1591187996, + "Guest_Treeminder": 1093207850, + "Guest_RenegadeDruid": 2087982292, + "Guest_FractalTreeminder": 927174548, + "Guest_UnsettledTreeminder": 486164163, + "Guest_DragonspyreCrusader": 247317280, + "Guest_YoungGreggor": 66068670, + "Guest_GeneralGreyflame": 499924835, + "Guest_OldGreggor": 391726170, + "Guest_PrinceViggor": 853556298, + "Guest_DragonspyreVanguard": 693851565, + "Guest_SilasConviction": 177362659, + "Guest_SilasWeariness": 893431021, + "Guest_SilasRage": 1288904439, + "Guest_SilasDoubt": 1479426285, + "Guest_Lorekeeper": 147779344, + "Guest_FelixPhotomongerIII": 68387506, + "Guest_WarHavox": 1634324022, + "Guest_Mis-assembledSkeleton": 221832082, + "Guest_TreeminderGhost": 200408510, + "Guest_ViggorsDrake": 340449521, + "Guest_BlueNinjaPig": 938539327, + "Guest_RedNinjaPig": 2097962021, + "Guest_OrangeNinjaPig": 625058258, + "Guest_PurpleNinjaPig": 445746449, + "Guest_RitualColossus": 844563319, + "Guest_TinyDragon": 1123127688, + "Guest_RitualSpider": 429827552, + "Guest_RitualDraconian": 837510372, + "Guest_CC_Druid_Warrior_C_01": 55314616, + "Guest_CC_Druid_Wizard_A_01": 1046261169, + "Guest_CC_Druid_Wizard_B_01": 1046244785, + "Guest_CC_Druid_Warrior_A_01": 56363192, + "MNT_Toboggan": 995356805, + "MNT_2P_WickerTreant-001": 2065440944, + "PP_Ratatoskr": 1003497600, + "PP_Trash": 1195047012, + "Guest_CC_Druid_Wizard_D_01": 1046343089, + "MNT_Sunflower": 721091531, + "MNT_Whoopee": 1383311238, + "MNT_Warthog": 8060761, + "PP_ShamRock": 943893325, + "PP_LeapingLeprechaun": 132882517, + "PP_LionCubs": 465759803, + "PP_Tanuki": 670387843, + "MNT_Crane": 433122675, + "MNT_Krokosphinx": 739938754, + "Transformation_BG_Fairy_Life": 1897480818, + "Transformation_LiceDeepSpawnA": 244795720, + "Piggle_Alien": 1761605655, + "PP_JeweledScarab": 620544607, + "Guest_KR_Nymph_DrkMage_D50": 1248526054, + "Guest_KR_Nymph_DrkMage_C50": 1246953190, + "Guest_KR_Nymph_DrkMage_B50": 1247477478, + "Guest_KR_Nymph_DrkMage_A50": 1245904614, + "Guest_EM_Spider_Ash_01": 185724938, + "UFO": 47349, + "PP_Kit10": 326796620, + "PP_Lumi_Tulip": 84119585, + "PP_Lumi_Fern": 117015078, + "PP_Lumi_Violet": 1468797578, + "PP_Lumi_Sunny": 1769236703, + "PP_Lumi_Daisy": 1743454175, + "MNT_CelestianMech": 1238076872, + "MNT_Brontosaurus": 402157167, + "Guest_HG_AKT_Krok_Cyber_A_Balance_25": 1367985604, + "Guest_HG_AKT_Krok_Cyber_A_Balance_50": 1368084932, + "Guest_HG_AKT_Krok_Cyber_A_Balance_75": 1367988676, + "Guest_HG_AKT_Krok_Cyber_A_Balance_100": 1351303620, + "Guest_HG_AKT_Krok_Cyber_A_Balance_130": 1351270852, + "Guest_HG_AKT_Krok_Cyber_A_Fire_25": 976558490, + "Guest_HG_AKT_Krok_Cyber_A_Fire_50": 37034397, + "Guest_HG_AKT_Krok_Cyber_A_Fire_75": 305469850, + "Guest_HG_AKT_Krok_Cyber_A_Fire_100": 573905821, + "Guest_HG_AKT_Krok_Cyber_A_Fire_130": 573905824, + "Guest_HG_AKT_Krok_Cyber_A_Ice_25": 159411377, + "Guest_HG_AKT_Krok_Cyber_A_Ice_50": 541093041, + "Guest_HG_AKT_Krok_Cyber_A_Ice_75": 146828465, + "Guest_HG_AKT_Krok_Cyber_A_Ice_100": 557870241, + "Guest_HG_AKT_Krok_Cyber_A_Ice_130": 960523425, + "Guest_HG_AKT_Krok_Cyber_A_Myth_25": 976187830, + "Guest_HG_AKT_Krok_Cyber_A_Myth_50": 36663729, + "Guest_HG_AKT_Krok_Cyber_A_Myth_75": 305099190, + "Guest_HG_AKT_Krok_Cyber_A_Myth_100": 573535153, + "Guest_HG_AKT_Krok_Cyber_A_Myth_130": 573535156, + "Guest_CL-GolemButler-R9": 780077559, + "Guest_CL-GolemDigger-Boss-R10": 562020288, + "Guest_CL-GolemDigger-R9": 789375095, + "Guest_CL-GolemDigger-Rank8MythBoss-R10": 930527857, + "Guest_CL-GolemWorker-R9-1": 1072815287, + "Guest_CL-FishbotBrown-R9-1": 2006155417, + "Guest_CL-FishbotBrown-R9-2": 395542681, + "Guest_CL-FishbotGold-Boss-R10": 611881707, + "Guest_CL-FishbotGold-R9": 705414492, + "Guest_CL-FishbotYellow-Boss-R10": 23145662, + "Guest_CL-Protector-Black-Boss-R10-2": 679228793, + "Guest_CL-Protector-Gold-R10": 1909636609, + "Guest_CL-Protector-Gold-R9-1": 1909634804, + "Guest_CL-Protector-Gold-R9-2": 1909634932, + "Guest_CL-Protector-Gold-R9-3": 1909635060, + "Guest_CL-Protector-Gold-R9-4": 1909634164, + "Guest_CL-Protector-Purple-R9-Boss": 1889837072, + "Guest_CL-Protector-Purple-R9": 81760161, + "Guest_CL-Protector-Tan-Boss-R10": 912663188, + "Guest_KR_Golem_Worker": 1784607296, + "Guest_Golem-Brass-R7-1": 718939445, + "Guest_Golem-Clockwork-R7": 1161173708, + "Guest_EM_Robot_Batbot_A_01": 1482867950, + "Guest_EM_Robot_Batbot_B_02": 945947886, + "Guest_EM_Robot_Batbot_B_01": 1482818798, + "Guest_EM_Robot_Batbot_B_03": 409076974, + "Guest_EM_Robot_Batbot_B_04": 127793938, + "Guest_EM_Robot_Batbot_B_05": 664664850, + "Guest_EM_Robot_Drone_A_02": 1215188569, + "Guest_EM_Robot_Drone_A_03": 1231965785, + "Guest_EM_Robot_Drone_A_01": 1265520217, + "Guest_EM_Robot_Drone_A_04": 1315851865, + "Guest_EM_Robot_Drone_A_05": 1332629081, + "Guest_EM_Robot_Drone_A_06": 1282297433, + "Guest_EM_Robot_Drone_A_07": 1299074649, + "Guest_EM_Robot_Drone_A_08": 1114525273, + "Guest_EM_Robot_Drone_A_09": 1131302489, + "Guest_EM_Robot_Drone_A_Boss_01": 1960661151, + "Guest_EM_Robot_Drone_A_Boss_02": 1960530079, + "Guest_EM_Robot_Drone_E_01": 1265518169, + "Guest_EM_Robot_Tank_A_01": 1314796420, + "Guest_EM_Robot_Tank_A_02": 1313223556, + "Guest_EM_Robot_Drone_C_02": 1215187545, + "Guest_EM_Robot_Drone_D_03": 1231963225, + "Guest_EM_Robot_Drone_D_01": 1265517657, + "Guest_EM_Robot_Drone_D_02": 1215186009, + "Guest_EM_Robot_Tank_B_01": 1314796468, + "Guest_EM_Robot_Drone_C_01": 1265519193, + "Guest_G14-BP-Golem_Steel_Boss": 2071105129, + "Guest_G14-BP-Golem_Steel_Puzzle": 715790979, + "Guest_Golem-Brass-Elite-L38": 1163662532, + "Guest_Golem-Brass-Elite-L56": 2057562884, + "Guest_Golem-Brass-MBBoss-L48": 1498830732, + "Guest_Golem-Brass-MBBoss-L71": 1498829576, + "Guest_Golem-Brass-MBBoss-L76": 1498828936, + "Guest_Golem-Clockwork-Elite-L54-Metal": 417151527, + "Guest_Golem-Clockwork-Elite-L37": 1961943722, + "Guest_Golem-Clockwork-Elite-L54": 1950147242, + "Guest_Golem-Clockwork-L28": 1561959116, + "Guest_Golem-Clockwork-MBBoss-L37": 973152783, + "Guest_Golem-Clockwork-MBBoss-L69": 1262559759, + "Guest_Golem-Steel-Elite-L39": 1430496717, + "Guest_Golem-Steel-MBBoss-L40": 1229578887, + "Guest_Golem-Steel-MBBoss-L43": 1229579015, + "Guest_Golem-Steel-MBBoss-L50-1": 1231762051, + "Guest_Golem-Steel-MBBoss-L50": 1229578883, + "Guest_Golem-Steel-MBBoss-LXX": 1229583927, + "Guest_Golem-Wood-Elite-L35": 904360756, + "Guest_Golem-Wood-Elite-L37": 1978102580, + "Guest_Golem-Wood-Elite-L50": 1813548236, + "Guest_Golem-Wood-MBBoss-L63": 1392041724, + "Guest_MB-Gauntlet-Golem-Clockwork": 854649045, + "Guest_Spider-Golem-MBBoss-L67": 253352706, + "Guest_Spider-Golem-MBBoss-L96": 253348994, + "Guest_WC-MAW-GasGolem-Minion": 1511013798, + "Guest_WC-MAW-GasGolemLife-Minion": 1306026584, + "Guest_Golem-Steel-L02": 1027229749, + "Guest_Golem-Clockwork-L01": 1409915596, + "Guest_Gauntlet-01-Golem-Steel-Ghost-R8": 402816318, + "Guest_Golem-Wood-L01": 156976035, + "Guest_HG-Clock-ClockworkSpanner-20": 1523370449, + "Guest_HG-Clock-ClockworkSpanner-40": 1523370455, + "Guest_HG-Clock-ClockworkSpanner-60": 1523370453, + "Guest_HG-Clock-ClockworkSpanner-80": 1523370459, + "Guest_HG-Clock-ClockworkSpanner-100": 1523354068, + "Guest_HG-Clock-ClockworkSpanner-120": 1523354004, + "Guest_AQ-Cyclops-Guard": 191361948, + "Guest_AQ_Cyclops_Guard_A_Boss_01": 114747100, + "Guest_CL-Cyclops-Death-R10": 611013866, + "Guest_Cyclops-Death-Boss-R7": 1192370725, + "Guest_Cyclops-Death-Boss-R9": 1192370717, + "Guest_Cyclops-Death-R7": 144593791, + "Guest_GH-Cyclops-Death-R6": 594236619, + "Guest_Cyclops-BlueHelmet-KTBoss-L03": 1720105277, + "Guest_Cyclops-Red-L12": 1816429840, + "Guest_MR_Cyclops02WHelmet_Model_01": 1483732416, + "Guest_Cyclops-Blue-L02": 1633021234, + "Guest_Cyclops-BlueHelmet-WCBoss-L03": 427378332, + "Guest_Cyclops-RedHelmet-WCBoss-L03": 2021269422, + "Guest_HG_Sinbad_Cyclops_25": 911979034, + "Guest_HG_Sinbad_Cyclops_50": 1856261606, + "Guest_HG_Sinbad_Cyclops_75": 861647386, + "Guest_HG_Sinbad_Cyclops_100": 1789152678, + "Guest_HG_Sinbad_Cyclops_130": 178539942, + "Guest_HG_Sinbad_IronSultan_25": 930031152, + "Guest_HG_Sinbad_IronSultan_50": 930051504, + "Guest_HG_Sinbad_IronSultan_75": 930030768, + "Guest_HG_Sinbad_IronSultan_100": 927954864, + "Guest_HG_Sinbad_IronSultan_130": 927942576, + "MNT_SweetRide": 1643297840, + "PP_FrilledDino": 1395342809, + "PP_Celestian": 95679303, + "PP_Sun_Angry": 1955190071, + "PP_Marshmallow": 1220667954, + "MNT_Umbrella_B": 923364822, + "MNT_Tamer": 1050737194, + "PP_BumbleBee_B": 858653433, + "MNT_PunkFlamingo": 1634690818, + "MNT_2P_WoolyRhino": 1395943031, + "PP_Retriever": 72842604, + "PP_Piggle_Caveman": 181356174, + "PP_DecennialDragon": 1396523337, + "MNT_Tiger_Rainbow": 515535412, + "MNT_CarrierGhosts": 1833039309, + "MNT_Sled": 617654308, + "Transformation_BG_RatThief_Death": 30691641, + "Transformation_BG_Elf_Storm": 44352983, + "Transformation_BG_WolfWarrior_Ice": 986304351, + "MNT_CarriorGhost_B": 1768732109, + "MNT_CarriorGhost_C": 1766634957, + "Transformation_BG_Colossus_Fire": 1318803522, + "Transformation_BG_Krok_Balance": 140952965, + "Guest_KM_Gobbler_Skinny_A_11": 773648065, + "Guest_KM_Robot_Candy_A_01": 480414124, + "Guest_KM_Robot_Candy_A_02": 530745772, + "Guest_KM_Robot_Candy_A_03": 513968556, + "Guest_KM_Robot_Candy_A_04": 430082476, + "Guest_KM_Robot_Candy_A_05": 413305260, + "Guest_KM_Gummy_Bear_A_01": 1940905059, + "Guest_KM_Gummy_Bear_D_01": 1940905011, + "Guest_KM_Gummy_Bear_E_01": 1940904995, + "Guest_KM_Gummy_Bear_A_02": 1941429347, + "Guest_KM_Gummy_Bear_D_02": 1941429299, + "Guest_KM_Gummy_Bear_E_02": 1941429283, + "Guest_KM_Gummy_Bear_B_01": 1940905043, + "Guest_KM_Gummy_Bear_B_02": 1941429331, + "Guest_KM_Gummy_Bear_B_03": 1941953619, + "Guest_KM_Gummy_BearHat_A_01": 853226448, + "Guest_KM_Gummy_BearHat_A_02": 853226460, + "Guest_KM_Gummy_Bunny_A_01": 324805042, + "Guest_KM_Gummy_Bunny_C_01": 324806066, + "Guest_KM_Gummy_Bunny_D_01": 324807602, + "Guest_KM_Gummy_Bunny_E_01": 324807090, + "Guest_KM_Gummy_Bunny_F_01": 324808626, + "Guest_KM_Gummy_BunnyUber_A_01": 525565930, + "Guest_KM_Gummy_Worm_A_01": 231044195, + "Guest_KM_Gummy_Worm_B_01": 231044179, + "Guest_KM_Gummy_Worm_C_01": 231044163, + "Guest_KM_Gummy_Worm_A_02": 232617059, + "Guest_KM_Gummy_Worm_B_02": 232617043, + "Guest_KM_Gummy_Worm_C_02": 232617027, + "Guest_KM_Gummy_Bear_F_01": 1940904979, + "Guest_KM_Gummy_Bear_F_02": 1941429267, + "Guest_KM_Gummy_Bunny_C_02": 274474418, + "Guest_KM_Robot_Candy_A_06": 463636908, + "Guest_KM_Alphoi_DarkF_A_01": 475441543, + "Guest_KM_Gobbler_Skinny_A_01": 773648069, + "Guest_KM_Gobbler_Skinny_A_02": 773648197, + "Guest_KM_Gobbler_Skinny_A_03": 773648325, + "Guest_KM_Gobbler_SkinnyF_A_01": 254411012, + "Guest_KM_Gobbler_Skinny_A_04": 773647429, + "Guest_KM_Gobbler_Skinny_A_05": 773647557, + "Guest_KM_Gobbler_Skinny_A_06": 773647685, + "Guest_KM_Gobbler_SkinnyF_A_02": 254423300, + "Guest_KM_Gobbler_Skinny_A_07": 773647813, + "Guest_KM_Gobbler_Skinny_A_08": 773646917, + "Guest_KM_Gobbler_Skinny_A_09": 773647045, + "Guest_KM_Gobbler_SkinnyF_A_03": 254419204, + "Guest_KM_Gobbler_Fat_A_01": 1440595742, + "Guest_KM_Gobbler_Fruit_B_01": 1236446660, + "Guest_KM_Gobbler_Fruit_A_01": 1235922372, + "Guest_KM_Gobbler_Guard_B_01": 1435667582, + "Guest_KM_Gobbler_Skinny_A_10": 773647937, + "Transformation_PlayerBabyCarrot": 1580787628, + "Transformation_PlayerDeadBeet": 1992261692, + "Transformation_PlayerDisparagus": 373797484, + "Transformation_PlayerSnowPeas": 634199102, + "PP_Snowflake": 2036143125, + "PP_GummyBear_Myth": 117787890, + "PP_GummyBear_Death": 236577760, + "PP_GummyBear_Balance": 2100524337, + "PP_GummyBear_Life": 118020336, + "PP_GummyBear_Fire": 117995748, + "PP_GummyBear_Storm": 247437198, + "PP_GummyBear_Ice": 122536570, + "MNT_SnowOwl": 1578473542, + "Guest_KM_Gummy_Bear_Uber_A_01": 1856208859, + "Guest_KM_Gummy_Bear_Uber_A_02": 1856196571, + "MNT_ChocolateMoose": 567538552, + "MNT_Ram_Candied": 1913603720, + "Guest_KM_Spider_Mage_A_01": 1529720120, + "Guest_KM_Spider_Mage_B_01": 1529719608, + "Guest_KM_Spider_Mage_C_01": 1529719096, + "Guest_KM_Spider_Mage_D_01": 1529718584, + "Guest_KM_Spider_Mage_E_01": 1529718072, + "PP_SpriteDark_Balance": 914900728, + "MNT_Tricycle": 991465753, + "Guest_Tri-Gauntlet-Protector-Gold": 2029952053, + "Guest_Tri-Gauntlet-FishbotGold": 130267882, + "Guest_HG-Clock-Clockworker-20": 281216243, + "Guest_HG-Clock-Clockworker-40": 281217011, + "Guest_HG-Clock-Clockworker-60": 281216755, + "Guest_HG-Clock-Clockworker-80": 281215475, + "Guest_HG-Clock-Clockworker-100": 283313523, + "Guest_HG-Clock-Clockworker-120": 283321715, + "Guest_HG-Clock-Lugs-20": 1452756928, + "Guest_HG-Clock-Lugs-40": 1452756960, + "Guest_HG-Clock-Lugs-60": 1452756992, + "Guest_HG-Clock-Lugs-80": 1452756768, + "Guest_HG-Clock-Lugs-100": 1452494736, + "Guest_HG-Clock-Lugs-120": 1452493712, + "Guest_HG-Clock-Lucia-20": 1041451626, + "Guest_HG-Clock-Lucia-40": 1041450602, + "Guest_HG-Clock-Lucia-60": 1041449578, + "Guest_HG-Clock-Lucia-80": 1041456746, + "Guest_HG-Clock-Lucia-100": 1049840746, + "Guest_HG-Clock-Lucia-120": 1049873514, + "Guest_KM_Gummy_Worm_A_03": 232092771, + "MNT_Scooter_E": 200254340, + "PP_WolfWarrior_Balance": 991302673, + "PP_PetGift": 1816280689, + "PP_RatThief": 1390866051, + "Guest_PL_Titan_Small_A": 2015819364, + "Guest_PL_Titan_Large_B": 699791264, + "Guest_PL_Titan_Medium_A": 326730424, + "PP_Draconian": 1631557208, + "MNT_Pantera_Astral": 106092538, + "PP_YearOx": 105653084, + "PP_WolfWarrior_Ice": 1043644935, + "PP_SpriteDark": 2031730054, + "PP_Brudel": 1355697143, + "MNT_Astronomers": 742732792, + "MNT_CouchPotato": 418050932, + "MNT_Flowerfarthing": 1396771051, + "MNT_Astronomers_Blue": 236532779, + "MNT_Astronomers_Rainbow": 4428274, + "PP_Astronomer": 782095961, + "Guest_KM_Gummy_Bunny_B_01": 324806578, + "Guest_KM_DeadBeets_A_01": 1396016635, + "MNT_GummyBunny": 775900704, + "MNT_GummyBunny_A": 775834080, + "MNT_GummyBunny_B": 775836128, + "MNT_GummyBunny_C": 775838176, + "Transformation_BG_Minotaur_Life": 1445109091, + "MNT_Armadillo": 825635826, + "PP_SootGremlin": 768969093, + "PP_RoadRunner": 2057802060, + "MNT_TinyTrolly": 160881792, + "PP_Frog_B": 1530124761, + "MNT_FjordDragon": 129204340, + "Transformation_BG_NinjaPig_Myth": 422914079, + "PP_CorgiPup": 1638656105, + "MNT_Skateboard": 728018224, + "PP_Krokomummy": 326396577, + "MNT_Vroom": 1736383110, + "MNT_PlayerWings_AtralRaven": 1514774167, + "PP_Blimp": 690882397, + "Guest_GH_WoodenSkeletonKey_Boar_Boss_Grey_01": 678055851, + "Guest_GH_StoneSkeletonKey_Boar_Boss_Grey_01": 571670691, + "Guest_GH_GoldSkeletonKey_Boar_Boss_Grey_01": 961728819, + "MNT_Cloud_Promo_AW_01": 2032670992, + "Guest_EM_Hornet_Burner_A_01": 1881854632, + "Guest_EM_Hornet_Burner_A_02": 1881854636, + "Guest_EM_Hornet_Zapper_A_01": 2058539689, + "Guest_EM_Hornet_Zapper_A_02": 2058539685, + "Guest_EM_Ant_Giant_D_01": 379386121, + "Guest_EM_Ant_Giant_A_02": 1768146677, + "Guest_EM_Ant_Giant_A_01": 1768097525, + "Guest_EM_Ant_Giant_B_01": 379386122, + "Guest_KR_Moth_Priest_G_Achera": 381233569, + "Guest_KR_BeeMonsterF_A": 135146211, + "Guest_KR_BeeMonsterF_A_Weak": 1824123847, + "Guest_KR_Bee_Warrior_A": 1569202664, + "Guest_KR_Bee_Warrior_B": 1569204200, + "Guest_KR_Bee_Warrior_C_BossDrones": 1217189631, + "Guest_KR_Bee_Warrior_D": 1569205224, + "Guest_KR_Bee_Warrior_E": 1569204712, + "Guest_KR_Bee_Warrior_G": 1569205736, + "Guest_KR_Bee_Warrior_G_BossFight": 1055035476, + "Guest_KR_Bee_Warrior_H": 1569207272, + "Guest_KR_Bee_Warrior_I": 1569206760, + "Guest_KR_Bee_Warrior_L": 1569209320, + "Guest_KR_Bee_Warrior_M": 1569208808, + "Guest_KR_DragonBeetle_Monster_A": 1777853782, + "Guest_KR_Hornet_Drone_A": 1161590757, + "Guest_KR_Hornet_Drone_B": 1161607141, + "Guest_KR_Hornet_Drone_C": 1161623525, + "Guest_KR_Hornet_Drone_D": 1161639909, + "Guest_KR_Hornet_Drone_E": 1161656293, + "Guest_KR_Lice_DeepSpawn_A": 761604959, + "Guest_KR_Mantis_HunterF_A": 820917199, + "Guest_KR_Mantis_HunterF_B": 871248847, + "Guest_KR_Mantis_HunterF_C": 854471631, + "Guest_KR_Mantis_HunterF_D": 904803279, + "Guest_KR_Mantis_HunterF_F": 938357711, + "Guest_KR_Mantis_HunterF_F_Driftwood": 2053608437, + "Guest_KR_Mantis_HunterF_G": 921580495, + "Guest_KR_Mantis_HunterF_H": 971912143, + "Guest_KR_Mantis_HunterF_I": 955134927, + "Guest_KR_Mantis_HunterF_I_Zuzka": 935478878, + "Guest_KR_Mantis_HunterF_J": 1005466575, + "Guest_KR_Mantis_HunterF_J_Zelda": 886910558, + "Guest_KR_Mantis_HunterF_K": 988689359, + "Guest_KR_Mantis_HunterF_K_LongShd": 1767574336, + "Guest_KR_Mantis_HunterF_L": 1039021007, + "Guest_KR_Mantis_HunterF_M": 1022243791, + "Guest_KR_Mantis_HunterF_P_Bossfight": 1731428987, + "Guest_KR_Mantis_HunterF_Q": 552481743, + "Guest_KR_Mantis_HunterF_R": 602813391, + "Guest_KR_Mantis_HunterF_S": 586036175, + "Guest_KR_Mantis_HunterF_SecondColumnCpt_A": 1354033994, + "Guest_KR_Mantis_HunterF_T": 636367823, + "Guest_KR_Mantis_HunterF_Tribute": 1946371041, + "Guest_KR_Mantis_HunterF_U": 619590607, + "Guest_KR_Mantis_HunterF_V": 669922255, + "Guest_KR_Mantis_HunterF_W": 653145039, + "Guest_KR_Mantis_HunterF_Y": 686699471, + "Guest_KR_Mantis_HunterF_Z_Officer": 206016474, + "Guest_KR_Mantis_ProphetF_B": 1791139097, + "Guest_KR_Mantis_ProphetF_C": 1254268185, + "Guest_KR_Milipede_Warrior_A": 410726278, + "Guest_KR_Milipede_Warrior_B": 410726282, + "Guest_KR_Milipede_Warrior_C": 410726286, + "Guest_KR_Milipede_Warrior_D": 410726290, + "Guest_KR_Milipede_Warrior_H": 410726306, + "Guest_KR_Milipede_Warrior_J": 410726314, + "Guest_KR_Milipede_Warrior_K": 410726318, + "Guest_KR_Moth_Priest_A": 1421532604, + "Guest_KR_Moth_Priest_B": 1421532092, + "Guest_KR_Moth_Priest_C": 1421531580, + "Guest_KR_Moth_Priest_D": 1421531068, + "Guest_KR_Moth_Priest_D_Drepa": 1483393420, + "Guest_KR_Moth_Priest_E": 1421530556, + "Guest_KR_Moth_Priest_F": 1421530044, + "Guest_KR_Mantis_HunterF_Z": 737031119, + "Guest_KR_Roach_AntLion_A": 1860517987, + "Guest_KR_Roach_AntLion_B_Bossfight": 993284625, + "Guest_KR_Roach_AntLion_C": 1861566563, + "Guest_KR_Roach_Cook_A": 259847495, + "Guest_KR_Roach_Glutton_B": 249524334, + "Guest_KR_Roach_WaterBug_A": 1795473599, + "Guest_KR_Roach_WaterBug_B": 1745141951, + "Guest_MR_Beetle_Scarab_A_01": 1789741503, + "Guest_MR_Beetle_Scarab_A_02": 1789741491, + "Guest_MR_Beetle_Scarab_B_01": 1790265791, + "Guest_ZF-Goliath-R10-Boss-01": 7034074, + "Guest_ZF-Goliath-R10-Boss-02": 7034202, + "Guest_ZF-Goliath-R10-Boss-03": 7034330, + "Guest_ZF-Goliath-R10-Boss": 1603576807, + "Guest_ZF-Goliath-R11-Boss-01": 2140449574, + "Guest_ZF-Goliath-R11-Boss-02": 2140449446, + "Guest_ZF-Goliath-R11-Boss-03": 2140449318, + "Guest_ME1_Ant_Aunt_A": 707251855, + "Guest_ME1_Ant_Aunt_B": 1440231794, + "Guest_CC_Fly_Worker_A_01": 1497784524, + "Guest_CC_Roach_Worker_A_01": 1026321602, + "Guest_CC_Roach_Lieutenant_A_01": 1081690299, + "Guest_CC_Roach_Lieutenant_B_01": 1081690295, + "Guest_CC_Roach_Don_A_01": 547836893, + "Guest_CC_Roach_BBug_A_01": 1021150157, + "Guest_CC_Roach_RoachSteady_A_01": 859409247, + "Guest_Draconian-Caster-Yellow-Boss-R8": 1016221419, + "Guest_Draconian-Zombie-R8-2-1": 1226055265, + "Guest_Draconian-Zombie-R8-2": 1226115297, + "Guest_Draconian-Caster-Green-R7": 2143342719, + "Guest_Draconian-Warrior-Gold-Boss-R8": 1044388248, + "Guest_Draconian-Caster-Gray-R7": 95878769, + "Guest_DS-Boss-MAW": 1676071241, + "Guest_Draconian-Zombie-R8-1": 1226115309, + "Guest_Draconian-Warrior-Purple-Boss-R7": 601813964, + "Guest_Draconian-Caster-Tan-Boss-R7": 1973339532, + "Guest_Draconian-Caster-Blue-R6": 1684210173, + "Guest_Draconian-Caster-Yellow-R8": 2129956646, + "Guest_Draconian-Warrior-Red-R7": 521861944, + "Guest_Draconian-Warrior-Tan-R6": 1726416112, + "Guest_Draconian-Warrior-Purple-R8": 1896270341, + "Guest_Draconian-Caster-Blue-Boss-R7": 401581134, + "Guest_Draconian-Zombie-R8": 384497496, + "Guest_GH2-Draconian-HENCH-R10": 1149202878, + "Guest_GH2-Draconian-BOSS-R10": 2114378473, + "Guest_G14-DM-Draconian_Boss": 490246211, + "Guest_G14-DM-Draconian_Storm": 2035239226, + "Guest_G14-DM-Draconian_Ice": 782200563, + "Guest_G14-DM-Draconian_Malistaire_M": 1904691727, + "Guest_G14-DM-Draconian_Malistaire_S": 1904685583, + "Guest_G14-DM-Draconian_Malistaire_D": 1904700943, + "Guest_G14-DM-Draconian_Malistaire": 1904736751, + "Guest_G14-DM-Draconian_Malistaire_B": 1904702991, + "Guest_G14-DM-Draconian_Malistaire_I": 1904695823, + "Guest_G14-DM-Draconian_Malistaire_L": 1904692751, + "Guest_G14-DM-Draconian_Malistaire_F": 1904698895, + "Guest_Draconian-PW-Gauntlet-Boss": 493080513, + "Guest_CC_Draconian_A_01": 551348115, + "Guest_AZ-Parasaur-Undead-E": 2041242846, + "Guest_AZ-Parasaur-drkPriestF-F": 898239615, + "Guest_EM_Parasaur_DrkPriestF_A_01": 1007099606, + "Guest_EM_Parasaur_DrkPriestF_A_02": 1007099605, + "Guest_AZ-Parasaur-drkPriestF-D": 898501759, + "Guest_AZ-Parasaur-drkPriestF-E": 898370687, + "Guest_AZ-Parasaur-drkPriestF-A": 897846399, + "Guest_AZ-Parasaur-Undead-B": 1716853538, + "Guest_AZ-Parasaur-Undead-A": 106240802, + "Guest_AZ-Parasaur-Undead-G": 967501022, + "Guest_AZ-Parasaur-PriestF-D": 1177445525, + "Guest_AZ-Parasaur-Undead-C": 1179982626, + "Guest_AZ-Parasaur-drkPriestF-C": 897584255, + "Guest_AZ-Parasaur-Undead-SkurkisMinion": 1414766977, + "Guest_AZ-Parasaur-drkPriestF-B": 897715327, + "Guest_AZ-Parasaur-drkPriestF-B-Script": 1414847875, + "Guest_AZ_Parasaur_Priest_A_Boss_01": 890025421, + "Guest_AZ-Parasaur-Undead-D": 1504371934, + "Guest_AZ-Pteranodon-Knight-D": 1127364049, + "Guest_AZ-StoneSkeletonKey-Ixcax-Cursedwing": 699239601, + "Guest_AZ-Pteranodon-Knight-E": 1127363921, + "Guest_AZ-Pteranodon-Knight-F": 1127363793, + "Guest_AZ-Pteranodon-Knight-A-PageEvent": 942589002, + "Guest_AZ-StoneSkeletonKey-Minion-Death": 311645584, + "Guest_AZ-Pteranodon-Knight-A": 1127364433, + "Guest_AZ-Raptor-Wraith-A": 585729247, + "Guest_AZ-Raptor-Undead-D": 893623689, + "Guest_G14-HS-Ifzt": 1914694612, + "Guest_AZ-Raptor-Warrior-A": 855749884, + "Guest_AZ-Raptor-Undead-C": 897293705, + "Guest_AZ-Raptor-Undead-B": 896769417, + "Guest_AZ-Raptor-Undead-F": 894672265, + "Guest_AZ-Raptor-Warrior-F": 872527100, + "Guest_AZ-Raptor-Warrior-H": 973190396, + "Guest_AZ-Tritops-Warrior-I": 1942669769, + "Guest_AZ-Tritops-Undead-H": 1215305911, + "Guest_AZ-Tritops-Undead-E": 1164974263, + "Guest_AZ-Tritops-SpkWarrior-A": 860850257, + "Guest_AZ-Tritops-SpkWarrior-B": 860862545, + "Guest_AZ-Tritops-Undead-F": 1181751479, + "Guest_AZ-Tritops-Warrior-K": 868927945, + "Guest_AZ-Tritops-Undead-G": 1198528695, + "Guest_AZ-Tritops-Mummy-A": 1912444877, + "Guest_AZ-Tritops-Warrior-G": 1278555704, + "Guest_AZ-Tritops-Undead-D": 1148197047, + "Guest_AZ-Tritops-Undead-A": 1097865399, + "Guest_AZ-Tritops-SpkChief-B": 2096319577, + "Guest_AZ-Tritops-Mummy-B": 1910872013, + "Guest_AZ-Tritops-Warrior-H": 1405798857, + "Guest_AZ-Dino-Undead-A": 508678670, + "Guest_AZ-Dino-Undead-B": 508679182, + "Guest_AZ-Dino-Undead-D": 508680206, + "Guest_KR_Dino_Undead_A": 1638800628, + "Guest_KR_Dino_Undead_Minion_A": 892450235, + "MNT_HayRideTruck": 75377404, + "MNT_ShadowSpiderForm": 1439860426, + "Transformation_BG_Draconian_Death": 794598804, + "PP_BabyOrca": 1056061090, + "Transformation_BG_Cyclops_Fire": 638854828, + "Transformation_BG_Fairy_Ice": 874078461, + "PP_SpriteLife": 1824998010, + "PP_Raccoon": 1107326808, + "PP_FireKitten": 593048189, + "MNT_SkeletalDuck": 1306273036, + "PP_VampireSquid": 431023109, + "PP_CottonCandy": 891201813, + "PP_ThreeHeadGoat": 1282096939, + "PP_EyeBot": 260189248, + "MNT_DeathBoat": 1444454568, + "MNT_Lemuria": 908974762, + "MNT_DeathBoat_B": 1444456538, + "MNT_DeathBoat_C": 1444456474, + "MNT_Spooky3": 1667775622, + "MNT_PresentBox": 122082000, + "MNT_Orca": 1726961653, + "Guest_LM_Golem_Steel_A_01": 19551853, + "Guest_LM_Golem_Steel_A_02": 36329069, + "Guest_LM_EyeBot_A_01_Death": 380508535, + "Guest_LM_EyeBot_A_01_Myth": 167840640, + "PP_ThreeHeadGoat_B": 1209286443, + "PP_ThreeHeadGoat_C": 1211383595, + "Guest_KR_Eel_Whirligig_A": 1062268734, + "Guest_KR_Goliath_Behemoth_A": 1231139987, + "Guest_KR_Goliath_Behemoth_C": 1231139995, + "Guest_KR_Goliath_Behemoth_D": 1231139975, + "Guest_KR_Goliath_Behemoth_E": 1231139971, + "Guest_KR_Goliath_Behemoth_H": 1231140023, + "Guest_KR_Goliath_Crusher_C": 1651720060, + "Guest_KR_Goliath_Crusher_D": 2106376324, + "Guest_KR_Goliath_Crusher_F": 1032634500, + "Guest_KR_Goliath_Crusher_G": 495763588, + "Guest_KR_Goliath_Crusher_K": 1651720059, + "Guest_AZ-Goliath-Crusher-A": 1874784966, + "Guest_AZ-Goliath-Crusher-B": 264172230, + "Guest_AZ-Goliath-Crusher-C": 801043142, + "Guest_AZ-Goliath-Crusher-D": 809569594, + "Guest_AZ-Goliath-Crusher-E": 272698682, + "Guest_HG_AKT_Butterfly_Time_A_25": 1788523059, + "Guest_HG_AKT_Butterfly_Time_A_50": 1130017331, + "Guest_HG_AKT_Butterfly_Time_A_75": 1809494579, + "Guest_HG_AKT_Butterfly_Time_A_100": 1113240099, + "Guest_HG_AKT_Butterfly_Time_A_130": 1515893283, + "MNT_DeathBoat_D": 1444456922, + "Guest_KR_RhinoBeetle_Sun_A_Bossfight": 47895417, + "Guest_KR_RhinoBeetle_Star_A": 1947510103, + "Guest_KR_RhinoBeetle_Moon_A": 1751275863, + "Guest_ME1_Clockwork_Marine_A": 1481452452, + "Guest_ME1_Clockwork_Marine_B": 1481452068, + "Guest_CC_GoldSkeletonKey_Lice_DeepSpawn_B": 1306132994, + "Guest_KR_DamdinBazar_A_Bossfight": 1333596311, + "Guest_DS-Minion-MAW2": 356796677, + "Guest_KH-Wyrmling-1": 116330513, + "Guest_KH-Wyrmling-20": 183439385, + "Guest_KH-Wyrmling-40": 317657113, + "Guest_KH-Wyrmling-60": 451874841, + "Guest_KH-Wyrmling-80": 586092569, + "Guest_PL_Polar_Bear_Solider_C": 1785662565, + "Guest_Skeleton-Silver-WCBoss-L01": 17766963, + "Guest_Banshee-Red-Elite-L24_B": 1902069117, + "Transformation_BG_WolfWarrior_Myth": 339098032, + "Transformation_BG_RatThief_Balance": 881728218, + "Transformation_BG_Colossus_Storm": 593527492, + "Transformation_BG_Elf_Life": 347405087, + "Transformation_BG_Minotaur_Ice": 1197752291, + "MNT_TRex_B": 660285500, + "PP_SpriteDark_Ice": 2036248504, + "MNT_RollingBall": 1658139390, + "Guest_LM_TRex_Base_A_03": 1378630657, + "Guest_LM_TRex_Base_A_04": 1378745345, + "Guest_LM_TRex_Base_A_05": 1378728961, + "Guest_LM_TRex_Base_A_01": 1378663425, + "Guest_LM_TRex_Base_A_02": 1378647041, + "Guest_LM_TRex_Cyborg_A_01": 151609741, + "Guest_LM_TRex_Cyborg_A_02": 168386957, + "Guest_LM_TRex_Cyborg_A_03": 185164173, + "Guest_LM_TRex_Cyborg_B_01": 151611277, + "Guest_LM_TRex_Cyborg_D_01": 151612301, + "Guest_LM_TRex_Cyborg_E_01": 151611789, + "Guest_LM_TRex_Cyborg_C_01": 151610765, + "Guest_LM_Draconian_Base_A_01": 1607373112, + "Guest_LM_EyeBot_B_01": 1085543056, + "Guest_LM_Drone_Eye_C_01": 916954037, + "Guest_LM_Drone_Eye_D_01": 1230529608, + "Guest_LM_Drone_Eye_D_02": 1230545992, + "Guest_LM_Drone_Eye_D_04": 1230578760, + "Guest_LM_Drone_Eye_D_03": 1230562376, + "Guest_LM_Drone_Eye_A_01": 916954038, + "Guest_LM_Drone_Eye_A_02": 916937654, + "Guest_LM_Drone_Eye_B_01": 1230529611, + "Guest_LM_Drone_Eye_D_05": 1230595144, + "Guest_LM_Drone_Eye_D_07": 1230627912, + "Guest_LM_Drone_Eye_D_08": 1230644296, + "Guest_LM_Drone_Eye_A_03": 916921270, + "Guest_LM_Drone_Eye_A_04": 916904886, + "Guest_LM_Drone_Eye_C_02": 916937653, + "Guest_LM_EyeBot_B_02": 1061940593, + "Guest_LM_EyeBot_B_03": 1085543055, + "Guest_LM_EyeBot_B_04": 1061940594, + "Guest_LM_Drone_Eye_C_03": 916921269, + "Guest_LM_Robot_Kit10_A_01": 199936400, + "Guest_LM_Colossus_Mander_A_01": 2107529026, + "Guest_LM_Robot_Future_A_01": 998840846, + "Guest_LM_Robot_FutureBIG_A_01": 340408568, + "Guest_LM_Robot_FutureBIG_A_02": 340396280, + "Guest_LM_Robot_FutureBIG_A_03": 340400376, + "Guest_LM_Robot_OldOne_A_01": 779070973, + "Guest_LM_Robot_OldOne_A_02": 1315941885, + "Guest_LM_Millipede_Centi_A_01": 168575797, + "Guest_LM_Millipede_Centi_A_03": 168583989, + "Guest_LM_Millipede_Centi_A_02": 168588085, + "Guest_LM_Millipede_Centi_A_04": 168563509, + "Guest_LM_Moth_Sorcerer_A_01": 228191136, + "Guest_LM_Boar_Barbarian_A_01": 1238634912, + "Guest_LM_Boar_Barbarian_A_02": 1238634528, + "Guest_LM_Boar_Barbarian_A_03": 1238634656, + "Guest_LM_Boar_Barbarian_A_04": 1238635296, + "Guest_LM_Boar_Barbarian_A_05": 1238635424, + "Guest_LM_Boar_Chief_A_01": 357051311, + "Guest_LM_Fungus_Humango_A_01": 1398460044, + "Guest_LM_Fungus_Humango_A_02": 1398460172, + "Guest_LM_Treant_Base_A_01": 1658172241, + "Guest_LM_GiantTree_EvilRoots_A_01": 282225934, + "Guest_LM_PA_GreenMan_A_01": 67705044, + "Guest_LM_Fungus_Humango_B_01": 1348128396, + "Guest_LM_Fungus_Humango_A_03": 1398460300, + "Guest_LM_Fungus_Man_C_01": 1648824156, + "Guest_LM_Fungus_Man_C_02": 1650397020, + "Guest_LM_Rhino_Zombie_A_01": 248513993, + "Guest_LM_Malughast_Base_01": 883820436, + "Guest_LM_Malughast_Base_02": 1420691348, + "Guest_LM_Lemur_HierarchF_H_04": 231562115, + "Guest_LM_Malughast_Base_03": 1957562260, + "Guest_LM_Malughast_Base_05": 1263663212, + "Guest_LM_Malughast_Base_06": 726792300, + "Guest_LM_Malughast_Base_08": 346949523, + "Guest_LM_Malughast_Base_09": 883820435, + "Guest_LM_Malughast_Base_04": 1800534124, + "Guest_LM_Minotaur_Skeleton_A_01": 1865122824, + "Guest_LM_Lemur_Wild_B_03": 1783764037, + "Guest_LM_Lemur_HierarchF_H_01": 231541635, + "Guest_LM_Lemur_HierarchF_H_02": 231553923, + "Guest_LM_Mander_Warrior_A_01": 1651245419, + "Guest_LM_Mander_Warrior_A_02": 1651245291, + "Guest_LM_Mander_Warrior_B_01": 1634468203, + "Guest_LM_Mander_Warrior_B_02": 1634468075, + "Guest_LM_Mander_Warrior_A_03": 1651245163, + "Guest_LM_Mander_Warrior_B_03": 1634467947, + "Guest_LM_Mander_Warrior_A_06": 1651245803, + "Guest_LM_Mander_Warrior_A_05": 1651245931, + "Guest_LM_Mander_Mummy_B_01": 1844111521, + "Guest_LM_Mander_Hero_B_01": 865113284, + "MNT_HolidayHippogriff": 938892112, + "MNT_Sabertooth_Ice": 1870381696, + "PP_FenrisWolf_Bantam": 776647759, + "MNT_JetPack": 1986300552, + "MNT_Scooter_F": 1005560708, + "PP_FossaKitten_A": 431748212, + "PP_Elfvis": 147991405, + "Guest_LM_Chicken_Hero_A_01": 1308728300, + "Guest_LM_Horse_Explorer_A_01": 434405482, + "Guest_LM_Duck_HeroineF_A_01": 133199186, + "Guest_LM_Crane_Hero_A_01": 204272548, + "Guest_LM_Deer_HeroineF_A_01": 1800374959, + "Guest_LM_Deer_Hero_A_01": 223109503, + "Guest_LM_Dog_Hero_A_01": 1434615064, + "PP_YearTiger": 777048708, + "MNT_Barrel": 3576425, + "MNT_Krampus": 404117611, + "PP_ChineseTigerCub": 1256032005, + "PP_Lemur": 565774155, + "PP_Robot": 1089075331, + "PP_Capybara": 451970762, + "Guest_LM_Ghoul_Base_A_01": 1822415945, + "Guest_LM_Lemur_HierarchF_H_03": 231549827, + "Guest_LM_Ghoul_Base_A_02": 1820843081, + "Guest_LM_Ghoul_Base_A_03": 1821367369, + "MNT_SpringSoF2022": 1685679511, + "MNT_WarElephant": 875015497, + "PP_Strix": 514230046, + "MNT_Beachball": 791896033, + "MNT_Blank": 633398131, + "MNT_CardboardFlier": 1646636689, + "MNT_LochMonster": 879660722, + "Transformation_BG_Krok_Death": 1395067182, + "Transformation_BG_Draconian_Fire": 1551581732, + "PP_Scotty": 1708580475, + "Guest_KR_Mice_Knight_A": 480101508, + "PP_Peacock": 1178721112, + "MNT_PoodleMoth": 975420235, + "PP_Hummingbird": 624666906, + "PP_WolfWarrior_Myth": 470737416, + "Guest_HG_UFD_Ghost_QueenF_A_100": 795323059, + "Guest_HG_UFD_Ghost_QueenF_A_50": 728230579, + "Guest_HG_UFD_Pirate_UndeadHighland_A_Balance_150": 201145133, + "Guest_HG_UFD_Pirate_UndeadHighland_A_Balance_100": 201144941, + "Guest_HG_UFD_Pirate_UndeadHighland_A_Balance_50": 201177701, + "Guest_HG_UFD_Pirate_UndeadHighland_A_Star_150": 1329885920, + "Guest_HG_UFD_Pirate_UndeadHighland_A_Star_100": 1304720096, + "Guest_HG_UFD_Pirate_UndeadHighland_A_Star_50": 1305768671, + "Guest_HG_UFD_Pirate_UndeadHighland_A_Shadow_150": 1263689971, + "Guest_HG_UFD_Pirate_UndeadHighland_A_Shadow_100": 1263689977, + "Guest_HG_UFD_Pirate_UndeadHighland_A_Shadow_50": 189949177, + "Guest_HG_UFD_Kelpie_Warrior_A_150": 54296095, + "Guest_HG_UFD_Kelpie_Warrior_A_100": 725384735, + "Guest_HG_UFD_Kelpie_Warrior_A_50": 708607503, + "Guest_HG_UFD_Pirate_UndeadHighland_B_150": 1099317831, + "Guest_HG_UFD_Pirate_UndeadHighland_B_100": 25576008, + "Guest_HG_UFD_Pirate_UndeadHighland_B_50": 159793864, + "Guest_HG_UFD_Ghost_QueenF_A_150": 795716275, + "PP_SpiderMinion": 557357331, + "MNT_Vines_Rainbow": 1587180338, + "MNT_YoungDrake": 1279496198, + "PP_Pet_Coconut": 444388490, + "DragonKI": 1490194214, + "PP_Sharkfish": 601628284, + "PP_MimicCake": 48071878, + "Guest_AQ-Bronze-Eagle": 375279744, + "Guest_Spider-Brown-L26": 2128680185, + "Guest_KR_Spider_Giant_D": 744401035, + "Guest_Wizard-Female-Band-Blue-R8": 1447486557, + "Guest_CC_Human_DSCrusaderF_A_01": 726538068, + "Guest_WC_Scarecrow_A_01": 867491011, + "Guest_WC_Banshee_A_01": 1433786463, + "Guest_WC_LostSoul_A_01": 796936146, + "PP_Fairy_Myth": 1117624344, + "PP_SpriteDark_Myth": 1884257976, + "BG_CyclopsLife_A": 944091673, + "Transformation_BG_NinjaPig_Storm": 2005137181, + "Transformation_BG_Fairy_Myth": 1880704188, + "Transformation_BG_Cyclops_Life": 638936708, + "Guest_AQ-Eagle-Praetorian": 1988013806, + "Guest_KM_BabyCarrot_A_01": 766239512, + "Guest_G14-DM-Gargoyle": 282898047, + "Guest_MR_Durvish_Sergeant_A_Boss_01": 1532609325, + "Guest_Cyclops-RedHelmet-KTBoss-L28": 2072371506, + "Guest_EM_Pig_Singer_A_01": 698597069, + "Guest_EM_Pig_Captain_A": 977505995, + "Guest_EM_Pig_Crewman_A": 465576459, + "PP_ChipmunkConductor": 1089819900, + "PP_LuckyCat": 1109326826, + "MNT_ImpCar": 1736092191, + "MNT_Book": 1547655078, + "MNT_JackoLantern": 649919658, + "MNT_Zheng": 742453108, + "MNT_Train": 413197899, + "MNT_Cerberus": 552686313, + "PP_Coconut": 1122741587, + "Transformation_Statue": 1153168084, + "Transformation_Nullity": 622504394, + "PP_Irk": 1825277392, + "Guest_Wyrmling-Fire-R8-1": 531485009, + "MNT_WolfLowPoly_A": 1947890962, + "MNT_WolfLowPoly_B": 1947825426, + "Transformation_BG_RatThief_Fire": 1169330235, + "Transformation_BG_WolfWarrior_Death": 159966683, + "Transformation_BG_Minotaur_Balance": 657855108, + "Transformation_BG_Draconian_Ice": 1907339814, + "Transformation_BG_Colossus_Myth": 1305894338, + "Transformation_NV_Penguin": 1757096851, + "Transformation_NV_Unicorn": 60447768, + "Transformation_NV_Monkey": 1379873688, + "Transformation_NV_Dog": 1961288968, + "PP_Wolf_Storm": 455227171, + "PP_WoodDuck": 1680912895, + "MNT_RockingHorse": 1205280059, + "MNT_SOF2022_Car": 219868812, + "PP_Buffaloon": 796152873, + "MNT_Steamboat": 1969530127, + "MNT_FelizNavidog": 847046394, + "PP_Mustache": 1571079379, + "Guest_DD-DS01-Skeleton-Pirate-20": 226826848, + "Guest_DD-DS01-Skeleton-Pirate-40": 201661024, + "Guest_DD-DS01-Skeleton-Pirate-60": 210049632, + "Guest_DD-DS01-Skeleton-Pirate-80": 251992672, + "Guest_DD-DS01-Skeleton-Pirate": 1994450336, + "Guest_DD-DS01-Shadow-Minion-Fire": 1074864956, + "Guest_DD-DS01-Shadow-Minion-Ice": 1841681214, + "Guest_DD-DS01-Shadow-Minion-Fire-20": 1074880881, + "Guest_DD-DS01-Shadow-Minion-Fire-40": 1074880945, + "Guest_DD-DS01-Shadow-Minion-Ice-20": 96850220, + "Guest_DD-DS01-Shadow-Minion-Ice-40": 96850218, + "Guest_DD-DS01-Shadow-Minion-Fire-60": 1074881009, + "Guest_DD-DS01-Shadow-Minion-Ice-60": 96850216, + "Guest_DD-DS01-Shadow-Minion-Fire-80": 1074880561, + "Guest_DD-DS01-Shadow-Minion-Ice-80": 96850214, + "Guest_SC-SpectreOfB-1": 1471950935, + "Guest_SC-SpectreOfB-20": 1471942759, + "Guest_SC-SpectreOfB-40": 1471942663, + "Guest_SC-SpectreOfB-60": 1471942695, + "Guest_SC-SpectreOfB-80": 1471942855, + "Guest_KH-Skeleton-Ice-60": 2108358962, + "Guest_KH-Skeleton-Ice-40": 2108391730, + "Guest_KH-Skeleton-Ice-20": 2108293426, + "Guest_KH-Skeleton-Ice-1": 2099953970, + "Guest_KH-Skeleton-Ice-80": 2108195122, + "Guest_KH-Undead-Caster-60": 1662604496, + "Guest_KH-Undead-Caster-40": 1661555920, + "Guest_KH-Undead-Caster-20": 1664701648, + "Guest_KH-Undead-Caster-1": 1931564240, + "Guest_KH-Undead-Caster-80": 1667847376, + "Guest_DD-PA01-DeadBeets": 1664999367, + "Guest_DD-PA01-DeadBeets-20": 1901453253, + "Guest_DD-PA01-DeadBeets-40": 2002116549, + "Guest_DD-PA01-DeadBeets-60": 1968562117, + "Guest_DD-PA01-DeadBeets-80": 2069225413, + "Guest_DD-PA01-Disparagus": 1865816461, + "Guest_DD-PA01-Disparagus-20": 573970895, + "Guest_DD-PA01-Disparagus-40": 499770929, + "Guest_DD-PA01-Disparagus-60": 1573512753, + "Guest_DD-PA01-Disparagus-80": 1647712718, + "Guest_DD-PA01-MeanestFlyTrap": 2001546861, + "Guest_DD-PA01-MeanestFlyTrap-20": 1936326253, + "Guest_DD-PA01-MeanestFlyTrap-40": 1936064109, + "Guest_DD-PA01-MeanestFlyTrap-60": 1935801965, + "Guest_DD-PA01-MeanestFlyTrap-80": 1937636973, + "Guest_HG-MD-MacDeath-20": 182639104, + "Guest_HG-MD-MacDeath-40": 182638080, + "Guest_HG-MD-MacDeath-60": 182637056, + "Guest_HG-MD-MacDeath-80": 182636032, + "Guest_HG-MD-MacDeath-100": 174252032, + "Guest_HG-MD-MacDeath-130": 174202880, + "Guest_HG_Sinbad_Skeleton_25": 494617874, + "Guest_HG_Sinbad_Skeleton_50": 42253050, + "Guest_HG_Sinbad_Skeleton_75": 1115994862, + "Guest_HG_Sinbad_Skeleton_100": 2105232646, + "Guest_HG_Sinbad_Skeleton_130": 2105232650, + "Guest_HG_Sinbad_Skeleton_25_02": 492722834, + "Guest_HG_Sinbad_Skeleton_50_02": 44148090, + "Guest_HG_Sinbad_Skeleton_75_02": 1117889902, + "Guest_HG_Sinbad_Skeleton_100_02": 2044247302, + "Guest_HG_Sinbad_Skeleton_130_02": 2044247306, + "Guest_DD-AV01-WyrmBoss": 1648677986, + "Guest_DD-AV01-WyrmBoss-20": 1926730850, + "Guest_DD-AV01-WyrmBoss-40": 1927779426, + "Guest_DD-AV01-WyrmBoss-60": 1928828002, + "Guest_DD-AV01-WyrmBoss-80": 1921487970, + "Guest_RH-Wyrm-Boss-01": 1027277645, + "Guest_RH-Wyrm-Boss-20": 1027277660, + "Guest_RH-Wyrm-Boss-40": 1027277663, + "Guest_RH-Wyrm-Boss-60": 1027277662, + "Guest_RH-Wyrm-Boss-80": 1027277657, + "Guest_HG_Sinbad_Wyrm_25": 1101443356, + "Guest_HG_Sinbad_Wyrm_50": 1101528860, + "Guest_HG_Sinbad_Wyrm_75": 1101445916, + "Guest_HG_Sinbad_Wyrm_100": 1093138204, + "Guest_HG_Sinbad_Wyrm_130": 1093089052, + "Guest_KH-Treant-1": 2001244331, + "Guest_KH-Treant-60": 1968148651, + "Guest_KH-Treant-40": 1968017579, + "Guest_KH-Treant-20": 1967886507, + "Guest_KH-Treant-80": 1967231147, + "Guest_DD-PA01-ForestGrump": 1969685870, + "Guest_DD-PA01-ForestGrump-20": 714666713, + "Guest_DD-PA01-ForestGrump-40": 714666689, + "Guest_DD-PA01-ForestGrump-60": 714666697, + "Guest_DD-PA01-ForestGrump-80": 714666737, + "Guest_DD-PA01-ForestNymphs": 227087348, + "Guest_DD-PA01-ForestNymphs-20": 227023552, + "Guest_DD-PA01-ForestNymphs-60": 227023040, + "Guest_DD-PA01-ForestNymphs-80": 227024832, + "Guest_SC-Pig-BalanceWizardA-1": 475456968, + "Guest_SC-Pig-BalanceWizardA-20": 477550024, + "Guest_SC-Pig-BalanceWizardA-40": 477541832, + "Guest_SC-Pig-BalanceWizardA-60": 477533640, + "Guest_SC-Pig-BalanceWizardA-80": 477525448, + "Guest_SC-Pig-BalanceWizardB-1": 475456964, + "Guest_SC-Pig-BalanceWizardB-20": 477550020, + "Guest_SC-Pig-BalanceWizardB-40": 477541828, + "Guest_SC-Pig-BalanceWizardB-60": 477533636, + "Guest_SC-Pig-BalanceWizardB-80": 477525444, + "Guest_SC-Pig-BalanceWizardC-1": 475456960, + "Guest_SC-Pig-BalanceWizardC-20": 477550016, + "Guest_SC-Pig-FireWizard-1": 2048176291, + "Guest_SC-Pig-FireWizard-20": 2031399073, + "Guest_SC-Pig-FireWizard-40": 2132062369, + "Guest_SC-Pig-FireWizard-60": 2098507937, + "Guest_SC-Pig-FireWizard-80": 1930735777, + "Guest_SC-Pig-IceWizardF-1": 1178687744, + "Guest_SC-Pig-IceWizardF-20": 1161910526, + "Guest_SC-Pig-IceWizardF-40": 1128356094, + "Guest_SC-Pig-IceWizardF-60": 1094801662, + "Guest_SC-Pig-IceWizardF-80": 1329682686, + "Guest_SC-Pig-MythWizard-1": 2048492725, + "Guest_SC-Pig-MythWizard-20": 2031715511, + "Guest_SC-Pig-MythWizard-40": 2132378807, + "Guest_SC-Pig-MythWizard-60": 2098824375, + "Guest_SC-Pig-MythWizard-80": 1931052215, + "Guest_SC-Pig-StormWizardF-1": 1743849420, + "Guest_SC-Pig-StormWizardF-20": 1743851464, + "Guest_SC-Pig-StormWizardF-40": 1743851488, + "Guest_SC-Pig-StormWizardF-60": 1743851480, + "Guest_SC-Pig-StormWizardF-80": 1743851504, + "Guest_KH-Pig-Bandit-Lord-1": 1080496628, + "Guest_KH-Pig-Bandit-Lord-20": 543625652, + "Guest_KH-Pig-Bandit-Lord-40": 530116172, + "Guest_KH-Pig-Bandit-Lord-60": 1603857996, + "Guest_KH-Pig-Bandit-Lord-80": 1617367475, + "Guest_KH-Pig-Bandit-Ninja-1": 1945100907, + "Guest_KH-Pig-Bandit-Ninja-20": 1945102951, + "Guest_KH-Pig-Bandit-Ninja-40": 1945102975, + "Guest_KH-Pig-Bandit-Ninja-60": 1945102967, + "Guest_KH-Pig-Bandit-Ninja-80": 1945102927, + "Guest_KH-Pig-War-Caster-1": 656859765, + "Guest_KH-Pig-War-Caster-20": 606528119, + "Guest_KH-Pig-War-Caster-40": 572973687, + "Guest_KH-Pig-War-Caster-60": 539419255, + "Guest_KH-Pig-War-Caster-80": 774300279, + "Guest_KH-Pig-War-Warrior-Boss-1": 16342355, + "Guest_KH-Pig-War-Warrior-Boss-20": 2143724205, + "Guest_KH-Pig-War-Warrior-Boss-40": 2118558381, + "Guest_KH-Pig-War-Warrior-Boss-60": 2126946989, + "Guest_KH-Pig-War-Warrior-Boss-80": 2101781165, + "Guest_SC-Pig-BalanceWizardC-40": 477541824, + "Guest_SC-Pig-BalanceWizardC-60": 477533632, + "Guest_SC-Pig-BalanceWizardC-80": 477525440, + "Guest_KH-Helephant-Death-20": 1109389719, + "Guest_KH-Helephant-Death-40": 2111835753, + "Guest_KH-Helephant-Death-60": 1038093929, + "Guest_KH-Helephant-Death-80": 35647896, + "Guest_KH-GreyOgre-Spider-1": 356368404, + "Guest_KH-GreyOgre-Spider-20": 1966981204, + "Guest_KH-GreyOgre-Spider-40": 1254244268, + "Guest_KH-GreyOgre-Spider-60": 180502444, + "Guest_KH-GreyOgre-Spider-80": 893239379, + "Guest_HG_Sinbad_Colossus_25": 1190802829, + "Guest_HG_Sinbad_Colossus_50": 1493551719, + "Guest_HG_Sinbad_Colossus_75": 419809907, + "Guest_HG_Sinbad_Colossus_100": 653933977, + "Guest_HG_Sinbad_Colossus_130": 653933973, + "Guest_NV_Dino_AberrantUndead_A_01": 2035087398, + "Guest_NV_Hellephant_Aberrant_A_01": 989522333, + "Guest_NV_Hellephant_Aberrant_A_02": 989522334, + "Guest_NV_BananaSpider_Base_A_01": 1585810541, + "Guest_NV_BananaSpider_Base_A_02": 1581616237, + "Guest_NV_BananaSpider_Base_A_03": 1577421933, + "Guest_NV_BananaSpider_Base_A_04": 1606782061, + "Guest_NV_BananaSpider_Base_A_05": 1602587757, + "Guest_NV_Wyrm_Aberrant_A_01": 16108415, + "Guest_NV_Monkey_Zombie_A_01": 1854775300, + "Guest_NV_Monkey_Zombie_A_02": 1854775304, + "Guest_NV_Monkey_Zombie_A_03": 1854775308, + "Guest_NV_Monkey_Zombie_A_04": 1854775312, + "MNT_Flag_Monster": 867940056, + "Guest_SKB_WY_DarkBramble_A_30": 2046798767, + "Guest_SKB_WY_DarkBramble_A_50": 2046797999, + "Guest_SKB_WY_DarkBramble_A_100": 2044701359, + "Guest_SKB_WY_DarkBramble_A_150": 2044721839, + "Guest_SKB_GH_Boar_A_30": 1547921275, + "Guest_SKB_WC_SpiritIgnorance_A_50": 1488876986, + "Guest_SKB_WC_SpiritIgnorance_A_100": 2025748410, + "Guest_SKB_WC_SpiritIgnorance_A_150": 2025748413, + "Guest_SKB_DS_Loremaster_A_50": 527751539, + "Guest_SKB_DS_Loremaster_A_100": 527817059, + "Guest_SKB_DS_Loremaster_A_150": 527817699, + "Guest_SKB_CL_Dan_A_50": 637418706, + "Guest_SKB_CL_Dan_A_60": 1510064941, + "Guest_SKB_CL_Dan_A_100": 637410512, + "Guest_SKB_CL_Dan_A_150": 637410432, + "Guest_SKB_AV_Spectre_A_50": 2104631195, + "Guest_SKB_AV_Spectre_A_100": 2102534041, + "Guest_SKB_AV_Spectre_A_150": 2018647961, + "Guest_SKB_MS_Samoorai_A_50": 2029641915, + "Guest_SKB_MS_Samoorai_A_100": 2096750843, + "Guest_SKB_MS_Samoorai_A_150": 587603717, + "Transformation_BG_Krok_StromTemplate": 1317694546, + "PP_ChineseRabbit": 382941643, + "PP_ParadeElf": 1036247808, + "MNT_HeartSwarm": 918199310, + "MNT_SpringSOF2023": 1417178519, + "Transformation_BG_Elf_Death2Template": 1606653101, + "MNT_GummyBunny_D": 775840224, + "Transformation_BG_Krok_Life2Template": 747486212, + "PP_Flame": 959186933, + "PP_YachtRock": 1500927358, + "PP_PirateYachtRock": 1227549100, + "PP_ChickenMonster": 1845706534, + "PP_SnowHoppers_B": 1496460038, + "PP_SnowHoppers_C": 1496457990, + "MNT_Oarfish": 29720265, + "PP_RingTailedCat": 993143427, + "MNT_Fanboat": 19347694, + "MNT_MiniSub": 298697910, + "PP_DumboOctopus": 966435639, + "PP_Glowbug_Balance": 1405529577, + "PP_Glowbug_Death": 405117107, + "PP_Glowbug_Fire": 651698987, + "PP_Glowbug_Ice": 2124926395, + "PP_Glowbug_Life": 601367299, + "PP_Glowbug_Myth": 592978024, + "PP_Glowbug_Storm": 61190446, + "PP_DumboOctopus_B": 968448823, + "PP_DumboOctopus_C": 968383287, + "PP_BananaSpider_01": 1074383522, + "PP_BananaSpider_02": 1080674978, + "PP_BananaSpider_03": 1078577826, + "Guest_HG_NM_BeardDragon_Base_C_01": 82913785, + "Guest_HG_NM_BeardDragon_Base_C_02": 82913786, + "Guest_HG_NM_BeardDragon_Base_C_03": 82913787, + "Guest_HG_NM_Glowbug_Base_C_01": 544959703, + "Guest_HG_NM_Glowbug_Base_C_02": 544955607, + "Guest_HG_NM_Glowbug_Base_C_03": 544951511, + "Guest_HG_NM_Glowbug_Base_C_04": 544947415, + "Guest_HG_NM_Glowbug_Base_C_05": 544943319, + "Guest_HG_NM_Glowbug_Base_C_06": 544939223, + "Guest_HG_NM_Glowbug_Base_C_07": 544935127, + "MNT_BouquetofFlowers": 1511180560, + "PP_Piggle_Rainbow": 91081383, + "MNT_Sabertooth_FlameSaber": 1949516909, + "Guest_HG_NM_BeardDragon_Base_A_01": 83175929, + "Guest_HG_NM_BeardDragon_Base_A_02": 83175930, + "Guest_HG_NM_BeardDragon_Base_A_03": 83175931, + "Guest_HG_NM_BeardDragon_Base_B_01": 83044857, + "Guest_HG_NM_BeardDragon_Base_B_02": 83044858, + "Guest_HG_NM_BeardDragon_Base_B_03": 83044859, + "Guest_HG_NM_Glowbug_Base_B_01": 8088791, + "Guest_HG_NM_Glowbug_Base_B_02": 8084695, + "Guest_HG_NM_Glowbug_Base_B_03": 8080599, + "Guest_HG_NM_Glowbug_Base_B_04": 8076503, + "Guest_HG_NM_Glowbug_Base_B_05": 8072407, + "Guest_HG_NM_Glowbug_Base_B_06": 8068311, + "Guest_HG_NM_Glowbug_Base_B_07": 8064215, + "Guest_HG_NM_Glowbug_Base_A_01": 1618701527, + "Guest_HG_NM_Glowbug_Base_A_02": 1618697431, + "Guest_HG_NM_Glowbug_Base_A_03": 1618693335, + "Guest_HG_NM_Glowbug_Base_A_04": 1618689239, + "Guest_HG_NM_Glowbug_Base_A_05": 1618685143, + "Guest_HG_NM_Glowbug_Base_A_06": 1618681047, + "Guest_HG_NM_Glowbug_Base_A_07": 1618676951, + "MNT_SummerSOF2023": 1636120912, + "PP_Cyclops_Fire": 7821755, + "PP_Death_Elf": 1535744155, + "PP_Newt": 1438123483, + "PP_Echidna": 735439358, + "MNT_Wombat": 580544786, + "Transformation_BG_NinjaPig_Balance": 1799661438, + "Transformation_BG_Cyclops_Ice": 647975824, + "Transformation_BG_Minotaur_Storm": 1005667041, + "Transformation_GR_Parasaur_Priest_Ice": 1101466351, + "Transformation_GR_Parasaur_Priest_Fire": 892193041, + "Transformation_GR_Parasaur_Priest_Storm": 1525882116, + "Transformation_GR_Parasaur_Priest_Balance": 1127637476, + "Guest_GR_AZ_Parasaur_Undead_B_01": 322587487, + "MNT_WitchCat": 1167097888, + "PP_RolyPoly": 578538330, + "PP_Capybara_B": 628131532, + "MNT_OutbackTruck": 1815527801, + "PP_PoodleSailor": 2137704795, + "MNT_PolarianCannon": 2103490826, + "PP_TazmanianDevil": 1773548765, + "Guest_SKB_AZ_Ixcax_A_100": 556560994, + "Guest_SKB_AZ_Ixcax_A_150": 556610146, + "Guest_SKB_AZ_Ixcax_A_50": 564951650, + "MNT_GhoulsShovel": 2035610946, + "PP_CrystalBdayDragon": 1897078804, + "PP_SunGobblerBall": 1522469440, + "PP_Sun_GreenGobbler": 1337690394, + "MNT_2P_AutumnTreant": 1063435527, + "PP_AutumnTreant": 561077291, + "MNT_FlyingMonkey": 490807393, + "PP_BabyPlantMonster": 2076646587, + "MNT_PlantCreature_A": 1802823265, + "Transformation_BG_Fairy_Fire": 2065252898, + "Transformation_BG_Krok_Myth": 277926564, + "Transformation_BG_RatThief_Life": 1167758651, + "Transformation_BG_Elf_Balance": 1628238937, + "Transformation_BG_Colossus_Death": 184392004, + "Transformation_FortressPod": 139738335, + "P_Wombat_POLYMORPH": 1132264953, + "PP_SharkWobbegong": 1994247222, + "PP_ChineseNYDragon": 1126999021, + "PP_JingleBellRock": 1076037919, + "PP_Krok_Mummy_Myth": 438487583, + "PP_Cyclops_Ice": 1476966187, + "MNT_OutbackTruckB": 1813299577, + "MNT_EvilSnowmanBall": 758818712, + "MNT_ThanksgivingGobbler": 1760011910, + "Guest_WL_Ghost_LostSoul_A_01": 1224111704, + "Guest_WL_Kangaroo_Drover_F_01": 2025562931, + "Guest_WL_Spider_WarriorMage_C_01": 1296557888, + "Guest_WL_Spider_WarriorMage_C_02": 1430775616, + "Guest_WL_Spider_WarriorMage_C_03": 1564993344, + "Guest_WL_Spider_WarriorMage_C_04": 1699211072, + "Guest_WL_Spider_WarriorMage_C_05": 1833428800, + "Guest_WL_Spider_WarriorMage_C_06": 1967646528, + "Guest_WL_Spider_WarriorMage_C_07": 2101864256, + "Guest_SKB_KR_Lightbane_A_100": 837930677, + "Guest_SKB_KR_Lightbane_A_160": 837930669, + "Guest_SKB_KR_Lightbane_A_50": 1309555019, + "Transformation_WL_Phantasmanian_DevilTemplate": 384891502, + "MNT_2P_LeaflessTreant": 623083386, + "PP_Minotaur_Ice": 700151737, + "MNT_Scooter_G": 737125252, + "Guest_WL_Frog_Owner_B_01": 767864686, + "MNT_SilentKnight": 646654812, + "Guest_WL_TRex_Base_A_01": 1842562033, + "Guest_WL_TRex_Base_B_01": 304921616, + "PP_Groundhog": 108643243, + "Guest_NV_Unicorn_Guard_C_04": 1845621, + "MNT_EmuPunk": 647315080, + "MNT_HeartBalloon": 798826551, + "PP_ValentineHoppers": 968693964, + "MNT_SpringSOF2024_Heckhound": 453640548, + "Guest_AQ-Centaur-Arion": 1856508139, + "Guest_AQ-Centaur-Artemis": 333294011, + "Guest_AQ-Horse-Sea": 724896200, + "Guest_KR_Horse_Warlord_A_Bossfight": 1302284326, + "Guest_KR_Horse_Warlord_A_BossfightSP": 1300726822, + "Guest_KR_Zebra_Thrall_A": 1250265667, + "Guest_KR_Zebra_Thrall_A_Boss_Minion": 345677011, + "Guest_KR_Zebra_Thrall_A_Gallery": 1520303483, + "Guest_KH-Gray-Horse-40": 1802231403, + "Guest_KH-Gray-Horse-20": 1802231307, + "Guest_G14-BP-Unicorn_Fencer_Boss": 1602044152, + "Guest_Horse-Merc-Brown-L37": 1831175255, + "Guest_Horse-Merc-Tan-L39": 1363854837, + "Guest_Horse-Merc-Tan-L39-1": 2085275127, + "Guest_Horse-Merc-Gray-MSBoss-L39": 1863452041, + "Guest_Horse-Merc-Gray-L39": 2039135564, + "Guest_Horse-Merc-Tan-L38": 1363330549, + "Guest_WC_Horse_Mercenary_Roberto": 891924774, + "Guest_ZF-Nathi-Yellowstripe-R11": 1505157721, + "Guest_ZF-TseTse-Main-R11-Boss": 114927854, + "Guest_ZF-TseTse-Elephant-R11": 894147273, + "Guest_ZF-Zebra-Impi-Raider-R11": 1378242919, + "Guest_ZF-Zebra-Warrior-Male-R10-1": 1791906265, + "Guest_ZF-Zebra-Senzan-Zebu-R10-Boss": 373712721, + "Guest_ZF-Zebra-Shaka-Zebu-R10-Boss": 662142985, + "Guest_ZF-Zebra-Warrior-Female-R10-02": 1507835670, + "Guest_ZF-Zebra-Warrior-Male-R10": 47075786, + "Guest_ZF-Zebra-Warrior-Male-R10-02": 1791906714, + "Guest_ZF-Zebra-Warrior-Male-R10-03": 1791906746, + "Guest_ZF-Zebra-Warrior-Male-R10-05": 1791906682, + "Guest_ZF-Zebra-Warrior-Male-R10-2": 1791906268, + "Guest_ZF_Zebra_Spectral_Guardian-R11": 431970996, + "Guest_CC_Horse_Apoc_A_01": 644668374, + "Guest_CC_Horse_Apoc_B_01": 644668390, + "Guest_CC_Horse_Apoc_C_01": 644668406, + "Guest_CC_Horse_Apoc_D_01": 644668294, + "Guest_CC_Horse_Apoc_D_02": 645192582, + "Guest_CC_Unicorn_CorsairF_B_01": 1378532506, + "Guest_CC_Unicorn_Duelist_B_01": 64891542, + "Guest_CC_Unicorn_Guard_B_01": 1075063242, + "Guest_CC_Unicorn_Guard_B_02": 1075063238, + "Guest_CC_Unicorn_Guard_B_03": 1075063234, + "Guest_NV_Horse_HordeSoldier_A_01": 504396960, + "Guest_NV_Horse_HordeSoldier_A_02": 101743776, + "Guest_NV_Horse_HordeOfficer_A_01": 343600992, + "Guest_NV_Horse_HordeSoldier_A_03": 235961504, + "Guest_NV_Horse_HordeOfficer_A_02": 209383264, + "Guest_NV_Horse_AberrantTungAk_A_01": 952263441, + "Guest_NV_Horse_AberrantTungAk_A_02": 952263537, + "Guest_NV_Horse_TungAk_B_01": 1194718672, + "Guest_NV_Horse_TungAk_B_02": 657847760, + "Guest_NV_Horse_HordeOfficer_B_01": 343596896, + "Guest_NV_Horse_HordeOfficer_B_02": 209379168, + "Guest_NV_Horse_TungAk_A_01": 1194669520, + "Guest_NV_Unicorn_Guard_C_01": 1845601, + "Guest_NV_Unicorn_Guard_A_01": 797025, + "Guest_NV_Unicorn_AberrantGuard_A_01": 739851573, + "Guest_NV_Unicorn_Guard_C_02": 1845613, + "Guest_NV_Unicorn_Guard_C_03": 1845609, + "Guest_NV_Unicorn_AberrantGuard_A_02": 739848501, + "Guest_NV_Unicorn_Guard_A_02": 797037, + "Guest_NV_Unicorn_AberrantGuard_A_03": 739849525, + "Guest_NV_Unicorn_AberrantGuard_A_04": 739846453, + "Guest_NV_Horse_HordeOfficer_A_03": 75165536, + "Guest_NV_Horse_HordeSoldier_A_04": 907050144, + "Guest_NV_Horse_HordeSoldier_A_05": 1041267872, + "Guest_NV_Horse_HordeSoldier_C_01": 504388768, + "Guest_HG_TRAIN_Horse_MustangFencerF_A_Balance_50": 871182987, + "Guest_HG_TRAIN_Horse_MustangFencerF_A_Balance_75": 871176715, + "Guest_HG_TRAIN_Horse_MustangFencerF_A_Life_100": 886489645, + "Guest_HG_TRAIN_Horse_MustangFencerF_A_Balance_25": 871177035, + "Guest_HG_TRAIN_Horse_MustangFencerF_A_Balance_100": 872231819, + "Guest_HG_TRAIN_Horse_MustangFencerF_A_Life_140": 1960231469, + "Guest_HG_TRAIN_Horse_MustangFencerF_B_100": 2089957067, + "Guest_HG_TRAIN_Horse_MustangFencerF_A_Life_25": 1700184589, + "Guest_HG_TRAIN_Horse_MustangFencerF_A_Life_50": 920044045, + "Guest_HG_TRAIN_Horse_MustangFencerF_A_Life_75": 1742127629, + "Guest_HG_TRAIN_Horse_MustangFencerF_A_Balance_140": 872223627, + "Guest_HG_TRAIN_Horse_MustangFencerF_B_50": 2089952970, + "Guest_HG_TRAIN_Horse_MustangFencerF_B_75": 57530654, + "Guest_HG_TRAIN_Horse_MustangFencerF_B_140": 2089957099, + "Guest_HG_TRAIN_Horse_MustangFencerF_B_25": 1131272477, + "Guest_LM_Horse_Explorer_A_01_Hard": 1711837140, + "Guest_WL_Unicorn_Guard_A_01": 1074538935, + "Guest_WL_Unicorn_CorsairF_E_01": 1378532603, + "Guest_WL_Unicorn_Warlord_A_01": 1321310496, + "Guest_KH-Gray-Horse-1": 1802239547, + "Guest_KH-Gray-Horse-60": 1802231371, + "Guest_KH-Gray-Horse-80": 1802231467, + "Transformation_BG_NinjaPig_Ice": 186026527, + "Transformation_BG_Cyclops_Storm": 897316984, + "PP_MinotaurBalance": 1344665951, + "PP_OrthusMoon": 1804503950, + "PP_CoolPineapple": 1149318906, + "PP_TwinkleStars": 766378011, + "PP_Scroll": 1613313091, + "PP_Colossus_Death": 40713075, + "PP_ColossusDeath": 530964029, + "PP_KILiveRock": 1975550570, + "MNT_Outrigger": 1417937299, + "MNT_BookWyrm": 2080129190, + "MNT_RacingSnail": 1996220963, + "MNT_UmbrellaCloud": 145762615, + "PP_PropellerCat": 2094718580, + "MNT_TRex_Shirt": 586746001, + "MNT_Swarm_Bee": 1625228695, + "MNT__CelestialMoon": 968360256, + "Guest_ME_Sinbad_IronSultan_150": 2001676223, + "Guest_ME_Sinbad_Cyclops_150": 1968943689, + "Guest_ME_Sinbad_Skeleton_150": 1031490819, + "Guest_ME_Sinbad_Colossus_150": 1727675806, + "Guest_ME_Sinbad_Skeleton_150_02": 970505475, + "Guest_ME_Sinbad_Wyrm_150": 19314443, + "Guest_ZF-Zebra-Inzinzebu-Bandit-R11": 430262550, + "Guest_ZF-Zebra-Warrior-Male-R10-04": 1791906650, + "PP_TwinkleStars_02": 805304347, + "PP_TwinkleStars_03": 803207195, + "PP_TwinkleStars_01": 799012891, + "Transformation_BodleianHarrow": 609627870, + "Guest_HG_Gryphon_OwlStatue_A_01_L170": 77756046, + "Guest_HG_Gryphon_OwlStatue_A_02_L170": 73561742, + "Guest_HG_Gryphon_OwlStatue_A_01_L100": 77752974, + "Guest_HG_Gryphon_OwlStatue_A_02_L100": 73558670, + "Guest_HG_Gryphon_OwlStatue_A_01_L50": 78277134, + "Guest_HG_Gryphon_OwlStatue_A_02_L50": 74082830, + "MNT_SummerSOF2024_JudgementWings": 1078163967, + "MNT_Pegasus_E": 131704054, + "MNT_PolarisHero": 665176426, + "PP_Duckana": 1128961578, + "PP_QueenBee": 833291695, + "Transformation_BG_Draconian_Balance": 2078940682, + "Transformation_BG_WolfWarrior_Fire": 1762248682, + "Transformation_BG_Minotaur_Death": 309090657, + "PP_WolfWarrior_Fire": 685685256, + "PP_WolfWarrior_Death": 1857202724, + "Guest_ME-GTAV01-WyrmBoss-150": 1482208618, + "Guest_ME_SpectreOfB_L150": 684104791, + "Guest_ME_MD_MacDeath_L150": 1128977615, + "Guest_ME_Pig_BalanceWizardA_L150": 959913724, + "Guest_ME_Pig_BalanceWizardB_L150": 959913712, + "Guest_ME_Pig_BalanceWizardC_L150": 959913716, + "Guest_ME_Pig_FireWizard_L150": 964392255, + "Guest_ME_Pig_IceWizardF_L150": 86941026, + "Guest_ME_Pig_MythWizard_L150": 964051241, + "Guest_ME_Pig_StormWizardF_L150": 2016383602, + "Guest_ME_Clock_Clockworker_L150": 1424569772, + "Guest_ME_Clock_ClockworkSpanner_L150": 1966824609, + "Guest_ME_Clock_Lugs_L150": 370290904, + "Guest_ME_Clock_Lucia_L150": 1857768409, + "MNT_EvilChair": 339577702, + "PP_Cyclops_Storm": 621464512, + "PP_Krokomummy_Life": 462432735, + "Transformation_CL_Rematch_Crustacean": 1686865207, + "Transformation_CL_Rematch_Protector": 1893951532, + "Transformation_CL_Rematch_Angler": 120412196, + "Transformation_CL_Rematch_Piscean": 1624106070, + "Transformation_Zebra_Template": 1900548493, + "Transformation_Zebra2_Template": 325099540, + "Transformation_Zebra3_Template": 325099524, + "Transformation_Zebra4_Template": 325099636, + "MNT_SweetSixteenBirthday": 1009398096, + "MNT_2P_TRex_Bones": 1618543266, + "MNT_SpringBumperCar": 1725007788, + "PP_WinterGoblin": 2025052443, + "PP_OnyxAnubis": 1552575189, + "PP_OttomanCat": 223541582, + "MNT_HolidayYeti": 780983974, + "MNT_IceSled": 979912604, + "MNT_TurtleDoves": 1850191638, + "MNT_KrokChariot": 559783620, + "MNT_Mustang": 1775949401, + "MNT_PumpkinBall": 382849054, + "Transformation_BG_Fairy_Storm": 836920873, + "Transformation_BG_Elf_Myth": 1506493664, + "Transformation_NinjaPig_Life": 816802847, + "Transformation_BG_Krok_Fire": 1060580712, + "Transformation_BG_Colossus_Balance": 1067963041, + "Transformation_BG_NinjaPig_Life": 441460895, + "PP_Penguin_03": 1623028104, + "Transformation_Duck_Librarian_B": 864067551, + "Transformation_Duck_Librarian_A": 859873247, + "Transformation_Duck_Adventurer": 194560769, + "Transformation_Gummy_Bunny_C": 1298087941, + "Transformation_Frog_Horned_A": 837201339, + "Transformation_Glowbug_Storm": 2096380446, + "Transformation_Marshmallow_Critter_A": 1036335317, + "Transformation_Snipe_Base_B": 232132109, + "Transformation_Snowball": 915248481, + "Transformation_Wombat_Base": 333435450, + "Transformation_Human_Malistaire": 1414887773, + "Transformation_Morganthe_E": 1745180054, + "Transformation_Spider_Grandfather": 1131773979, + "Transformation_Khrulhu_Dasein_B": 367878762, + "Transformation_Devourer_Base": 698770016, + "Transformation_Alien_Meteor": 638746168, + "Transformation_Nightmare_Malus": 704212821, + "Transformation_Daemon_Personal": 278266463, + "PP_ValentinesDay": 810003364, + "PP_BabyHippo": 422858138, + "PP_Aardwold": 1592150119, + "PP_Aardwold_C": 1902528613, + "MNT_Cobra": 472847981, + "MNT_Serpopard": 1629558909, + "MNT_Serpopard_B": 1629556867, + "MNT_Serpopard_C": 1629556931, + "PP_Fairy_Fire": 1847789544, + "MNT_Mustang_B": 1448793691, + "PP_FireElfMyth": 1933609060, + "MNT_KT-BoatRide": 1560860110, + "MNT_ShadowMagic": 2095978357, + "MNT_MardiGrasFloat_A": 1740674432, + "PP_ChineseNYSnake": 988201940, + "MNT_AnubisDog": 1995079956, + "PP_ShadowImp_A": 1604849432, + "PP_ShadowImp_B": 1604849438, + "PP_ShadowImp_C": 1604849436, + "MNT_ShadowMagic_B": 2093870965, + "MNT_ShadowMagic_C": 2093805429, + "Guest_KT_SE_Tritops_Warrior_I_01": 97516901, + "Guest_KT_SE_DS_Draconian_Model_01": 1916095079, + "Guest_KT_SE_Beetle_Scarab_C_01_L50": 1064004307, + "Guest_KT_SE_Roach_Warrior_C_03": 1872574203, + "Guest_KT_SE_Roach_Warrior_C_04": 1871918843, + "Guest_KT_SE_Roach_Warrior_C_05": 1871787771, + "Guest_KT_SE_Beetle_Scarab_C_01": 1353410759, + "Guest_KT_SE_Mander_Citizen_B_01_L50": 2044509396, + "Guest_KT_SE_Mander_CitizenF_B_01_L50": 164327682, + "Guest_KT_SE_Treant_Tormented_A_01": 1359800879, + "Guest_KT_SE_Treant_Base_A_01": 765512948, + "Guest_KT_SE_Mander_Citizen_F_D_05": 171244620, + "Guest_KT_SE_Mander_CitizenF_D_01": 163791037, + "Guest_KT_SE_Mander_CitizenF_D_02": 298008765, + "Guest_KT_SE_Mander_CitizenF_D_03": 432226493, + "Guest_KT_SE_Mander_CitizenF_D_04": 566444221, + "Guest_KT_SE_Mander_MummyF_A_01": 964349080, + "Guest_KT_SE_Mander_MummyF_A_02": 964480152, + "Guest_KT_SE_MC_Wraith_Model_01": 1101442118, + "Guest_KT_SE_Mander_CitizenF_B_02": 298000573, + "MNT_Wheelbarrow": 614248817, + "MNT_StubbornLlama": 221089074 + } }, - "m_planningTimer": { - "type": "float", + "m_badgeTitle": { + "type": "std::string", "id": 6, - "offset": 144, + "offset": 440, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1142844143 + "hash": 1783354256 }, - "m_position": { - "type": "class Vector3D", + "m_chatPermissions": { + "type": "unsigned int", "id": 7, - "offset": 148, + "offset": 360, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3697900983 + "hash": 1848314473 }, - "m_yaw": { - "type": "float", + "m_pvpIconID": { + "type": "unsigned int", "id": 8, - "offset": 160, + "offset": 472, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 357256328 + "hash": 2083838009 }, - "m_disableTimer": { - "type": "bool", + "m_localeID": { + "type": "unsigned int", "id": 9, - "offset": 179, + "offset": 484, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1571862248 + "hash": 792971274 }, - "m_tutorialMode": { + "m_friendlyPlayer": { "type": "bool", "id": 10, - "offset": 180, + "offset": 490, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1704245836 + "hash": 990699901 }, - "m_firstTeamToAct": { - "type": "int", + "m_volunteer": { + "type": "bool", "id": 11, - "offset": 184, + "offset": 491, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1499447620 + "hash": 1751284471 }, - "m_combatResolver": { - "type": "class CombatResolver*", + "m_guildName": { + "type": "unsigned int", "id": 12, - "offset": 136, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1627811879 - }, - "m_bPVP": { - "type": "bool", - "id": 13, - "offset": 176, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 221690795 - }, - "m_bBattleground": { - "type": "bool", - "id": 14, - "offset": 177, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1158269184 - }, - "m_bRaid": { - "type": "bool", - "id": 15, - "offset": 178, + "offset": 492, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 791201781 + "hash": 778026115 }, - "m_roundNum": { + "m_guildNameLocale": { "type": "int", - "id": 16, - "offset": 192, + "id": 13, + "offset": 496, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1461215570 - }, - "m_executionPhaseTimer": { + "hash": 656991008 + } + } + }, + "1817311555": { + "name": "class ClientPetCastEffectActorCinematicAction*", + "bases": [ + "PetCastEffectActorCinematicAction", + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 1817311555, + "properties": { + "m_timeOffset": { "type": "float", - "id": 17, - "offset": 200, - "flags": 31, + "id": 0, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1645062877 - }, - "m_executionPhaseCombatActions": { - "type": "class CombatAction", - "id": 18, - "offset": 208, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 270648678 - }, - "m_sigilActions": { - "type": "class CombatAction", - "id": 19, - "offset": 224, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2176432675 + "hash": 2237098605 }, - "m_shadowPipRule": { - "type": "class SharedPointer", - "id": 20, - "offset": 280, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2692865990 - }, - "m_gameObjectAnimStateTracker": { - "type": "class GameObjectAnimStateTracker", - "id": 21, - "offset": 296, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, "pointer": false, - "hash": 3120084989 - }, - "m_duelPhase": { - "type": "enum kDuelPhase", - "id": 22, - "offset": 196, - "flags": 2097183, + "hash": 2285866132 + } + } + }, + "1378978089": { + "name": "class HousingNode*", + "bases": [ + "PropertyClass" + ], + "hash": 1378978089, + "properties": { + "m_connectionType": { + "type": "enum HousingNode::ConnectionType", + "id": 0, + "offset": 72, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1813818086, + "hash": 427658421, "enum_options": { - "kPhase_Starting": 0, - "kPhase_PrePlanning": 1, - "kPhase_Planning": 2, - "kPhase_PreExecution": 3, - "kPhase_Execution": 4, - "kPhase_Resolution": 5, - "kPhase_Victory": 6, - "kPhase_Ended": 7, - "kPhase_MAX": 10 + "MALE": 0, + "FEMALE": 1, + "__DEFAULT": "MALE" } }, - "m_duelModifier": { - "type": "class SharedPointer", - "id": 23, - "offset": 264, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3330438158 - }, - "m_initiativeSwitchMode": { - "type": "enum Duel::SigilInitiativeSwitchMode", - "id": 24, - "offset": 384, - "flags": 2097183, + "m_locationType": { + "type": "unsigned int", + "id": 1, + "offset": 76, + "flags": 1048583, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1258091520, + "hash": 538163080, "enum_options": { - "InitiativeSwitchMode_None": 0, - "InitiativeSwitchMode_Reroll": 1, - "InitiativeSwitchMode_Switch": 2 + "INSIDE": 1, + "OUTSIDE": 2, + "INACCESSIBLE": 4, + "__DEFAULT": "INSIDE" } }, - "m_initiativeSwitchRounds": { - "type": "int", - "id": 25, - "offset": 388, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 540229885 - }, - "m_combatRules": { - "type": "class SharedPointer", - "id": 26, - "offset": 464, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 3327225763 - }, - "m_gameEffectInfo": { - "type": "class SharedPointer", - "id": 27, - "offset": 496, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2275096584 - }, - "m_pStatEffects": { - "type": "class SharedPointer", - "id": 28, - "offset": 512, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1275229758 - }, - "m_alternateTurnCombatRule": { - "type": "class SharedPointer", - "id": 29, - "offset": 480, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1715882395 - }, - "m_altTurnCounter": { - "type": "int", - "id": 30, - "offset": 456, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1434810564 - }, - "m_originalFirstTeamToAct": { - "type": "int", - "id": 31, - "offset": 188, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 560350457 - }, - "m_executionOrder": { - "type": "enum kDuelExecutionOrder", - "id": 32, - "offset": 528, - "flags": 2097183, + "m_exclusiveRestrictions": { + "type": "enum HousingNode::ExclusiveRestrictions", + "id": 2, + "offset": 80, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3362082097, + "hash": 3137090195, "enum_options": { - "kDEO_Sequential": 0, - "kDEO_Alternating": 1 + "NO_RESTRICTIONS": 0, + "WALL_ONLY": 1, + "DOOR_ONLY": 2, + "WINDOW_ONLY": 3, + "STAIR_ONLY": 4, + "EDGE_ONLY": 5, + "CEILING_ONLY": 6, + "INSIDE_VASE_ONLY": 7, + "RECTANGLE_ONLY": 8, + "WINDOW_SMALLROUNDTOP": 9, + "WINDOW_TALLROUNDTOP": 10, + "WINDOW_TALLSQUARETOP": 11, + "WINDOW_STANDARD": 12, + "WINDOW_LARGE": 13, + "DOOR_SINGLEROUNDTOP": 14, + "DOOR_SINGLESQUARETOP": 15, + "DOOR_DOUBLEROUNDTOP": 16, + "DOOR_DOUBLESQUARETOP": 17, + "GARDEN_ONLY": 18, + "ENCHANTED_GARDEN_ONLY": 19, + "ENRICHED_GARDEN_ONLY": 20, + "WALL_EDGE": 21, + "__DEFAULT": "NO_RESTRICTIONS" } }, - "m_noHenchmen": { - "type": "bool", - "id": 33, - "offset": 532, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1163855414 - }, - "m_SpellTruncation": { - "type": "bool", - "id": 34, - "offset": 540, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1257440762 - }, - "m_shadowThresholdFactor": { - "type": "float", - "id": 35, - "offset": 548, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2104355177 - }, - "m_shadowPipRatingFactor": { - "type": "float", - "id": 36, - "offset": 552, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1061434314 - }, - "m_defaultShadowPipRating": { - "type": "float", - "id": 37, - "offset": 556, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1544572080 - }, - "m_shadowPipThresholdTeam0": { - "type": "float", - "id": 38, - "offset": 560, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 447039594 - }, - "m_shadowPipThresholdTeam1": { - "type": "float", - "id": 39, - "offset": 564, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 447039595 - }, - "m_maxArchmasteryTeam0": { - "type": "float", - "id": 40, - "offset": 568, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 300185527 - }, - "m_maxArchmasteryTeam1": { - "type": "float", - "id": 41, - "offset": 572, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 300185528 - }, - "m_scalarDamage": { - "type": "float", - "id": 42, - "offset": 600, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1865068300 - }, - "m_scalarResist": { - "type": "float", - "id": 43, - "offset": 604, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 270448583 - }, - "m_scalarPierce": { - "type": "float", - "id": 44, - "offset": 608, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 196427621 - }, - "m_damageLimit": { - "type": "float", - "id": 45, - "offset": 612, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 271286357 - }, - "m_dK0": { - "type": "float", - "id": 46, - "offset": 616, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 357232662 - }, - "m_dN0": { - "type": "float", - "id": 47, - "offset": 620, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 357232761 - }, - "m_resistLimit": { - "type": "float", - "id": 48, - "offset": 624, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1192834544 - }, - "m_rK0": { - "type": "float", - "id": 49, - "offset": 628, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 357247908 - }, - "m_rN0": { - "type": "float", - "id": 50, - "offset": 632, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 357248007 - }, - "m_fullPartyGroup": { - "type": "bool", - "id": 51, - "offset": 636, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1888593059 - }, - "m_matchTimer": { - "type": "float", - "id": 52, - "offset": 656, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1510935909 - }, - "m_bonusTime": { - "type": "int", - "id": 53, - "offset": 660, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1757496496 - }, - "m_passPenalty": { - "type": "int", - "id": 54, - "offset": 664, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 982951662 - }, - "m_yellowTime": { - "type": "int", - "id": 55, - "offset": 668, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1017028741 - }, - "m_redTime": { - "type": "int", - "id": 56, - "offset": 672, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1909556708 - }, - "m_minTurnTime": { - "type": "int", - "id": 57, - "offset": 676, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 652524886 - }, - "m_bIsPlayerTimedDuel": { + "m_supportSurface": { "type": "bool", - "id": 58, - "offset": 637, - "flags": 31, + "id": 3, + "offset": 84, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 857311611 + "hash": 1804627449, + "enum_options": { + "__DEFAULT": 0 + } }, - "m_hideNoncombatantDistance": { - "type": "float", - "id": 59, - "offset": 536, - "flags": 31, + "m_position": { + "type": "class Vector3D", + "id": 4, + "offset": 88, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1733017888 + "hash": 3697900983 } } }, - "483690444": { - "name": "class LocaleMapping*", + "1814993515": { + "name": "class SharedPointer", "bases": [ + "DeathParticleCinematicAction", + "ActorCinematicAction", + "CinematicAction", "PropertyClass" ], - "hash": 483690444, + "hash": 1814993515, "properties": { - "m_wadFile": { - "type": "std::string", + "m_timeOffset": { + "type": "float", "id": 0, "offset": 72, "flags": 7, @@ -637693,1149 +594519,670 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 3265100503 + "hash": 2237098605 }, - "m_fullReplacement": { - "type": "bool", + "m_actor": { + "type": "std::string", "id": 1, - "offset": 104, + "offset": 80, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1453969174 + "hash": 2285866132 } } }, - "483633007": { - "name": "class WizClientLeashedObject", + "1814845786": { + "name": "class WizStatisticEffectTemplate*", "bases": [ - "WizClientObject", - "ClientObject", - "CoreObject", + "StatisticEffectTemplate", + "GameEffectTemplate", "PropertyClass" ], - "hash": 483633007, + "hash": 1814845786, "properties": { - "m_inactiveBehaviors": { - "type": "class SharedPointer", + "m_effectName": { + "type": "std::string", "id": 0, - "offset": 224, - "flags": 31, - "container": "Vector", - "dynamic": true, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1850812559 + "pointer": false, + "hash": 2029161513 }, - "m_globalID.m_full": { - "type": "unsigned __int64", + "m_effectCategory": { + "type": "std::string", "id": 1, - "offset": 72, - "flags": 16777247, + "offset": 104, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2312465444 + "hash": 1852673222 }, - "m_permID": { - "type": "unsigned __int64", + "m_sortOrder": { + "type": "int", "id": 2, - "offset": 80, - "flags": 16777247, + "offset": 148, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1298909658 + "hash": 1411218206 }, - "m_location": { - "type": "class Vector3D", + "m_duration": { + "type": "double", "id": 3, - "offset": 168, - "flags": 31, + "offset": 192, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2239683611 + "hash": 2727932435 }, - "m_orientation": { - "type": "class Vector3D", + "m_stackingCategories": { + "type": "std::string", "id": 4, - "offset": 180, - "flags": 31, - "container": "Static", - "dynamic": false, + "offset": 160, + "flags": 7, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 2344058766 + "hash": 1774497525 }, - "m_fScale": { - "type": "float", + "m_isPersistent": { + "type": "bool", "id": 5, - "offset": 196, - "flags": 31, + "offset": 153, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 503137701 + "hash": 923861920 }, - "m_templateID.m_full": { - "type": "unsigned __int64", + "m_bIsOnPet": { + "type": "bool", "id": 6, - "offset": 96, - "flags": 31, + "offset": 154, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 633907631 + "hash": 522593303 }, - "m_debugName": { - "type": "std::string", + "m_isPublic": { + "type": "bool", "id": 7, - "offset": 104, - "flags": 31, + "offset": 152, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3553984419 + "hash": 1728439822 }, - "m_displayKey": { + "m_visualEffectAddName": { "type": "std::string", "id": 8, - "offset": 136, - "flags": 31, + "offset": 200, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3023276954 + "hash": 3382086694 }, - "m_zoneTagID": { - "type": "unsigned int", + "m_visualEffectRemoveName": { + "type": "std::string", "id": 9, - "offset": 344, - "flags": 31, + "offset": 232, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 965291410 + "hash": 1541697323 }, - "m_speedMultiplier": { - "type": "short", + "m_onAddFunctorName": { + "type": "std::string", "id": 10, - "offset": 192, - "flags": 31, + "offset": 280, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 123130076 + "hash": 1561843107 }, - "m_nMobileID": { - "type": "unsigned short", + "m_onRemoveFunctorName": { + "type": "std::string", "id": 11, - "offset": 194, - "flags": 31, + "offset": 312, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1054318939 + "hash": 2559017864 }, - "m_characterId": { - "type": "gid", + "m_stackingRule": { + "type": "enum STACKING_RULE", "id": 12, - "offset": 440, - "flags": 31, + "offset": 144, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 210498418 - }, - "m_gameStats": { - "type": "class WizGameStats*", - "id": 13, - "offset": 544, - "flags": 27, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3194480406 + "hash": 431568889, + "enum_options": { + "STACKING_ALLOWED": 0, + "STACKING_NOSTACK": 1, + "STACKING_REPLACE": 2 + } }, - "m_leashed": { + "m_buffAll": { "type": "bool", - "id": 14, - "offset": 576, - "flags": 31, + "id": 13, + "offset": 392, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 603235945 - } - } - }, - "1652604243": { - "name": "class CompassMarker", - "bases": [ - "PropertyClass" - ], - "hash": 1652604243, - "properties": { - "m_textKey": { + "hash": 1205044623 + }, + "m_school": { "type": "std::string", - "id": 0, - "offset": 72, - "flags": 8388615, + "id": 14, + "offset": 400, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1720060457 + "hash": 2438566051 }, - "m_location": { - "type": "class Vector3D", - "id": 1, - "offset": 104, + "m_damageBonusPercent": { + "type": "float", + "id": 15, + "offset": 440, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2239683611 + "hash": 623230606 }, - "m_mapLocation": { - "type": "class Point", - "id": 2, - "offset": 116, + "m_damageBonusFlat": { + "type": "float", + "id": 16, + "offset": 488, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2172826233 + "hash": 2212039108 }, - "m_nObjectID": { - "type": "gid", - "id": 3, - "offset": 128, + "m_accuracyBonusPercent": { + "type": "float", + "id": 17, + "offset": 444, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 537078058 + "hash": 1972336538 }, - "m_visible": { - "type": "bool", - "id": 4, - "offset": 136, + "m_armorPiercingBonusPercent": { + "type": "float", + "id": 18, + "offset": 448, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 810536225 - } - } - }, - "1231612728": { - "name": "class AnnounceTextCinematicAction", - "bases": [ - "CinematicAction", - "PropertyClass" - ], - "hash": 1231612728, - "properties": { - "m_timeOffset": { + "hash": 1569912641 + }, + "m_damageReducePercent": { "type": "float", - "id": 0, - "offset": 72, + "id": 19, + "offset": 452, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 + "hash": 541736927 }, - "m_text": { - "type": "std::string", - "id": 1, - "offset": 112, + "m_damageReduceFlat": { + "type": "float", + "id": 20, + "offset": 456, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1717580128 + "hash": 684172469 }, - "m_onlyForPlayer": { - "type": "bool", - "id": 2, - "offset": 144, + "m_accuracyReducePercent": { + "type": "float", + "id": 21, + "offset": 460, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 249913353 + "hash": 2112559723 }, - "m_stringTable": { - "type": "std::string", - "id": 3, - "offset": 80, + "m_healBonusPercent": { + "type": "float", + "id": 22, + "offset": 464, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3386025626 + "hash": 562313577 }, - "m_effectParamMadlib": { - "type": "bool", - "id": 4, - "offset": 146, + "m_healIncBonusPercent": { + "type": "float", + "id": 23, + "offset": 468, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 292989178 - } - } - }, - "1652253210": { - "name": "class BGPenaltyMatchBan", - "bases": [ - "InfractionPenalty", - "PropertyClass" - ], - "hash": 1652253210, - "properties": { - "m_internalID": { - "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1854540375 + "hash": 2182535587 }, - "m_categoryID": { - "type": "unsigned int", - "id": 1, - "offset": 76, - "flags": 31, + "m_hitPointBonus": { + "type": "float", + "id": 24, + "offset": 496, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1382795736 + "hash": 880644461 }, - "m_removeAtPointValue": { + "m_spellChargeBonus": { "type": "float", - "id": 2, - "offset": 80, - "flags": 31, + "id": 25, + "offset": 504, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2112196961 + "hash": 2109811656 }, - "m_expireTime": { - "type": "unsigned int", - "id": 3, - "offset": 84, - "flags": 31, + "m_powerPipBonusPercent": { + "type": "float", + "id": 26, + "offset": 472, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1836304873 + "hash": 1671446341 }, - "m_duration": { - "type": "unsigned int", - "id": 4, - "offset": 88, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1041524755 - } - } - }, - "85229956": { - "name": "class FishBehavior*", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 85229956, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, + "m_petActChance": { + "type": "int", + "id": 27, + "offset": 492, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 + "hash": 237418461 }, - "m_fishSize": { + "m_manaBonus": { "type": "float", - "id": 1, - "offset": 112, - "flags": 65536, + "id": 28, + "offset": 500, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1986368316 - } - } - }, - "881486794": { - "name": "enum Material::Blending", - "bases": [], - "hash": 881486794, - "properties": {} - }, - "1231369094": { - "name": "enum SpellEffect::kEffectTarget", - "bases": [], - "hash": 1231369094, - "properties": {} - }, - "483690447": { - "name": "class LocaleMapping", - "bases": [ - "PropertyClass" - ], - "hash": 483690447, - "properties": { - "m_wadFile": { + "hash": 1372708603 + }, + "m_statTableName": { "type": "std::string", - "id": 0, - "offset": 72, + "id": 29, + "offset": 360, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3265100503 + "hash": 1616642912 }, - "m_fullReplacement": { - "type": "bool", - "id": 1, - "offset": 104, + "m_manaReducePercent": { + "type": "float", + "id": 30, + "offset": 568, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1453969174 - } - } - }, - "880708627": { - "name": "enum LeashType", - "bases": [], - "hash": 880708627, - "properties": {} - }, - "1230256416": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1230256416, - "properties": { - "m_itemTemplateID": { - "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2190120133 + "hash": 348324221 }, - "m_daysSinceItemPurchased": { - "type": "int", - "id": 1, - "offset": 76, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 539199563 - } - } - }, - "1229774622": { - "name": "class GuildIslandItemBehavior", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1229774622, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - } - } - }, - "1229675097": { - "name": "class SharedPointer", - "bases": [ - "GameEffectInfo", - "PropertyClass" - ], - "hash": 1229675097, - "properties": { - "m_effectName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, + "m_expPercent": { + "type": "float", + "id": 31, + "offset": 572, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2029161513 + "hash": 1147850677 }, - "m_spellName": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 268435463, + "m_goldPercent": { + "type": "float", + "id": 32, + "offset": 576, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2688485244, - "enum_options": { - "__BASECLASS": "SpellTemplate" - } + "hash": 1095720878 }, - "m_percentChance": { - "type": "int", - "id": 2, - "offset": 136, - "flags": 31, + "m_energyBonus": { + "type": "float", + "id": 33, + "offset": 508, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 385662509 + "hash": 2223158984 }, - "m_spellDescription": { - "type": "class SharedPointer", - "id": 3, - "offset": 144, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 790341621 - } - } - }, - "1654392709": { - "name": "class BracketUpdateMessage", - "bases": [ - "PvPUpdateMessage", - "PropertyClass" - ], - "hash": 1654392709, - "properties": { - "m_messageType": { - "type": "int", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1531535105 - } - } - }, - "85984462": { - "name": "class SharedPointer", - "bases": [ - "CinematicAction", - "PropertyClass" - ], - "hash": 85984462, - "properties": { - "m_timeOffset": { + "m_criticalHitRating": { "type": "float", - "id": 0, - "offset": 72, + "id": 34, + "offset": 512, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 + "hash": 1978690540 }, - "m_effectRel": { - "type": "enum BaseEffectCinematicAction::kEffectRelative", - "id": 1, - "offset": 80, - "flags": 2097159, + "m_blockRating": { + "type": "float", + "id": 35, + "offset": 516, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2978921287, - "enum_options": { - "kNone": 0, - "kSigil": 1, - "kTarget": 2, - "kSource": 3, - "kActor": 4 - } - } - } - }, - "484023224": { - "name": "class DerbyPlayerContainer", - "bases": [ - "PropertyClass" - ], - "hash": 484023224, - "properties": { - "m_racerStates": { - "type": "class PetDerbyRacerState", - "id": 0, - "offset": 72, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1371870313 - }, - "m_racerStats": { - "type": "class PetDerbyRacerStats", - "id": 1, - "offset": 88, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2589589540 + "hash": 2088486759 }, - "m_numberOfLaps": { - "type": "unsigned int", - "id": 2, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1354946171 - } - } - }, - "881626201": { - "name": "class SharedPointer", - "bases": [ - "WinAnimScaleTime", - "WinAnimScale", - "WindowAnimation", - "PropertyClass" - ], - "hash": 881626201, - "properties": { - "m_bUseDeepCopy": { - "type": "bool", - "id": 0, - "offset": 72, - "flags": 135, + "m_accuracyRating": { + "type": "float", + "id": 36, + "offset": 520, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 433380635 + "hash": 165525575 }, - "m_scale": { + "m_powerPipRating": { "type": "float", - "id": 1, - "offset": 80, - "flags": 135, + "id": 37, + "offset": 524, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 899693439 + "hash": 1355340722 }, - "m_fTimeTotal": { + "m_damageResistanceRating": { "type": "float", - "id": 2, - "offset": 96, - "flags": 135, + "id": 38, + "offset": 532, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 661225456 + "hash": 1961377740 }, - "m_fTimeRemaining": { + "m_archmastery": { "type": "float", - "id": 3, - "offset": 100, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1591443014 - } - } - }, - "1653005502": { - "name": "class PrepEntry", - "bases": [ - "ServiceOptionBase", - "PropertyClass" - ], - "hash": 1653005502, - "properties": { - "m_serviceName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, + "id": 39, + "offset": 536, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2206028813 + "hash": 1963579610 }, - "m_iconKey": { - "type": "std::string", - "id": 1, - "offset": 168, - "flags": 31, + "m_archmasteryBonusPercent": { + "type": "float", + "id": 40, + "offset": 588, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2457138637 + "hash": 1908627154 }, - "m_displayKey": { - "type": "std::string", - "id": 2, - "offset": 104, - "flags": 31, + "m_balanceMastery": { + "type": "int", + "id": 41, + "offset": 540, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3023276954 + "hash": 149062181 }, - "m_serviceIndex": { - "type": "unsigned int", - "id": 3, - "offset": 204, - "flags": 31, + "m_deathMastery": { + "type": "int", + "id": 42, + "offset": 544, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2103126710 + "hash": 1421218661 }, - "m_forceInteract": { - "type": "bool", - "id": 4, - "offset": 200, - "flags": 31, + "m_fireMastery": { + "type": "int", + "id": 43, + "offset": 548, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1705789564 + "hash": 1431794949 }, - "m_prepText": { - "type": "std::string", - "id": 5, - "offset": 248, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2576467479 - } - } - }, - "85468194": { - "name": "class SharedPointer", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 85468194, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, + "m_iceMastery": { + "type": "int", + "id": 44, + "offset": 552, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 - }, - "m_caughtFishList": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 1, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2107365240 - }, - "m_fishHistoryList": { - "type": "class SharedPointer", - "id": 2, - "offset": 128, - "flags": 1, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 3741999493 - } - } - }, - "484023200": { - "name": "class DerbyPlayerContainer*", - "bases": [ - "PropertyClass" - ], - "hash": 484023200, - "properties": { - "m_racerStates": { - "type": "class PetDerbyRacerState", - "id": 0, - "offset": 72, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1371870313 - }, - "m_racerStats": { - "type": "class PetDerbyRacerStats", - "id": 1, - "offset": 88, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2589589540 + "hash": 704864240 }, - "m_numberOfLaps": { - "type": "unsigned int", - "id": 2, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1354946171 - } - } - }, - "1652967942": { - "name": "class PestEntry", - "bases": [ - "PropertyClass" - ], - "hash": 1652967942, - "properties": { - "m_percentPerHour": { - "type": "float", - "id": 0, - "offset": 72, + "m_lifeMastery": { + "type": "int", + "id": 45, + "offset": 556, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1587432077 + "hash": 2142136447 }, - "m_pestTemplateID": { - "type": "unsigned int", - "id": 1, - "offset": 76, - "flags": 33554439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1301457330 - } - } - }, - "1652893342": { - "name": "class SharedPointer", - "bases": [ - "BlobCacheInterface", - "PropertyClass" - ], - "hash": 1652893342, - "properties": {} - }, - "888202967": { - "name": "class SharedPointer", - "bases": [ - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 888202967, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, + "m_mythMastery": { + "type": "int", + "id": 46, + "offset": 560, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 + "hash": 1766317185 }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, + "m_stormMastery": { + "type": "int", + "id": 47, + "offset": 564, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2285866132 - } - } - }, - "1230561054": { - "name": "class GuildIslandItemBehavior*", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1230561054, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, + "hash": 1883988244 + }, + "m_stunResistancePercent": { + "type": "float", + "id": 48, + "offset": 580, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 - } - } - }, - "86075614": { - "name": "class ClientAnimatePipsCinematicAction", - "bases": [ - "AnimatePipsCinematicAction", - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 86075614, - "properties": { - "m_timeOffset": { + "hash": 1868382627 + }, + "m_fishingLuckBonusPercent": { "type": "float", - "id": 0, - "offset": 72, + "id": 49, + "offset": 480, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 + "hash": 1363349254 }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, + "m_shadowPipBonusPercent": { + "type": "float", + "id": 50, + "offset": 476, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2285866132 + "hash": 1426533310 }, - "m_sActorPrefix": { - "type": "std::string", - "id": 2, - "offset": 120, + "m_wispBonusPercent": { + "type": "float", + "id": 51, + "offset": 484, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3246317205 + "hash": 1304386546 }, - "m_fPerPipDelay": { + "m_pipConversionRating": { "type": "float", - "id": 3, - "offset": 152, + "id": 52, + "offset": 584, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1466507836 + "hash": 246855691 }, - "m_fRate": { + "m_shadowPipRating": { "type": "float", - "id": 4, - "offset": 156, + "id": 53, + "offset": 528, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 883665801 + "hash": 507126123 } } }, - "484195274": { - "name": "struct ControlTree::Item*", + "970711488": { + "name": "class CastleMagicCameraInfo*", "bases": [ "PropertyClass" ], - "hash": 484195274, - "properties": { - "m_Color": { - "type": "class Color", - "id": 0, - "offset": 72, - "flags": 262279, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1753714077 - }, - "m_sLabel": { - "type": "std::wstring", - "id": 1, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2207009163 - }, - "m_Flags": { - "type": "unsigned int", - "id": 2, - "offset": 112, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 967851578, - "enum_options": { - "ControlTree::Item::EXPANDED": 2, - "ControlTree::Item::BUTTON": 1 - } - }, - "m_Children": { - "type": "struct ControlTree::Item*", - "id": 3, - "offset": 128, - "flags": 135, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1558446980 - } - } + "hash": 970711488, + "properties": {} }, - "882368756": { - "name": "class SharedPointer", + "534479466": { + "name": "class GameEffectInfoList*", "bases": [ - "BehaviorInstance", "PropertyClass" ], - "hash": 882368756, + "hash": 534479466, "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", + "m_gameEffectInfoList": { + "type": "class SharedPointer", "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, + "offset": 72, + "flags": 31, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 223437287 + "pointer": true, + "hash": 1747948740 } } }, - "1230269470": { - "name": "class ClassProjectReward*", + "1814845780": { + "name": "class WizStatisticEffectTemplate", "bases": [ + "StatisticEffectTemplate", + "GameEffectTemplate", "PropertyClass" ], - "hash": 1230269470, + "hash": 1814845780, "properties": { - "m_goalCount": { - "type": "unsigned int", + "m_effectName": { + "type": "std::string", "id": 0, "offset": 72, "flags": 7, @@ -638843,1196 +595190,972 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 985669209 + "hash": 2029161513 }, - "m_lootTable": { + "m_effectCategory": { "type": "std::string", "id": 1, - "offset": 80, + "offset": 104, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2539512673 + "hash": 1852673222 }, - "m_icon": { - "type": "std::string", + "m_sortOrder": { + "type": "int", "id": 2, - "offset": 112, + "offset": 148, "flags": 7, - "container": "List", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 1717182340 + "hash": 1411218206 }, - "m_featuredTemplateID": { - "type": "unsigned int", + "m_duration": { + "type": "double", "id": 3, - "offset": 128, + "offset": 192, "flags": 7, - "container": "List", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 258965446 + "hash": 2727932435 }, - "m_badgeName": { + "m_stackingCategories": { "type": "std::string", "id": 4, - "offset": 144, + "offset": 160, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 3002948047 + "hash": 1774497525 }, - "m_rewardType": { - "type": "enum ClassProjectRewardType", + "m_isPersistent": { + "type": "bool", "id": 5, - "offset": 176, - "flags": 2097159, + "offset": 153, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3545827746, - "enum_options": { - "CPRT_Everyone": 0, - "CPRT_Subscriber": 1, - "CPRT_Purchased": 2 - } + "hash": 923861920 }, - "m_overrideTitle": { - "type": "std::string", + "m_bIsOnPet": { + "type": "bool", "id": 6, - "offset": 184, - "flags": 8388615, + "offset": 154, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2739145597 + "hash": 522593303 }, - "m_testLunari": { - "type": "unsigned int", + "m_isPublic": { + "type": "bool", "id": 7, - "offset": 216, + "offset": 152, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1088922456 + "hash": 1728439822 }, - "m_crownsCostToAdvance": { - "type": "int", + "m_visualEffectAddName": { + "type": "std::string", "id": 8, - "offset": 220, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 304642756 - } - } - }, - "1652955654": { - "name": "class PestEntry*", - "bases": [ - "PropertyClass" - ], - "hash": 1652955654, - "properties": { - "m_percentPerHour": { - "type": "float", - "id": 0, - "offset": 72, + "offset": 200, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1587432077 + "hash": 3382086694 }, - "m_pestTemplateID": { - "type": "unsigned int", - "id": 1, - "offset": 76, - "flags": 33554439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1301457330 - } - } - }, - "882082720": { - "name": "class ElixirBenefitBehaviorTemplate", - "bases": [ - "ElixirBehaviorTemplate", - "TimedItemBehaviorTemplate", - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 882082720, - "properties": { - "m_behaviorName": { + "m_visualEffectRemoveName": { "type": "std::string", - "id": 0, - "offset": 72, + "id": 9, + "offset": 232, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3130754092 + "hash": 1541697323 }, - "m_expireTime": { + "m_onAddFunctorName": { "type": "std::string", - "id": 1, - "offset": 128, + "id": 10, + "offset": 280, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3122602039 - }, - "m_timerType": { - "type": "enum TimerType", - "id": 2, - "offset": 120, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 571744132, - "enum_options": { - "TimerType_Game": 0, - "TimerType_Calendar": 1 - } + "hash": 1561843107 }, - "m_typeList": { + "m_onRemoveFunctorName": { "type": "std::string", - "id": 3, - "offset": 160, + "id": 11, + "offset": 312, "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2119049625 - }, - "m_equipParticle": { - "type": "std::string", - "id": 4, - "offset": 176, - "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2222557491 - }, - "m_unequipParticle": { - "type": "std::string", - "id": 5, - "offset": 208, - "flags": 131079, + "hash": 2559017864 + }, + "m_stackingRule": { + "type": "enum STACKING_RULE", + "id": 12, + "offset": 144, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2215431638 + "hash": 431568889, + "enum_options": { + "STACKING_ALLOWED": 0, + "STACKING_NOSTACK": 1, + "STACKING_REPLACE": 2 + } }, - "m_equipSound": { - "type": "std::string", - "id": 6, - "offset": 240, - "flags": 131079, + "m_buffAll": { + "type": "bool", + "id": 13, + "offset": 392, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2720016552 + "hash": 1205044623 }, - "m_unequipSound": { + "m_school": { "type": "std::string", - "id": 7, - "offset": 272, - "flags": 131079, + "id": 14, + "offset": 400, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1552545835 + "hash": 2438566051 }, - "m_equipActionList": { - "type": "class SharedPointer", - "id": 8, - "offset": 304, + "m_damageBonusPercent": { + "type": "float", + "id": 15, + "offset": 440, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1314016250 + "pointer": false, + "hash": 623230606 }, - "m_unequipActionList": { - "type": "class SharedPointer", - "id": 9, - "offset": 320, + "m_damageBonusFlat": { + "type": "float", + "id": 16, + "offset": 488, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2143896925 + "pointer": false, + "hash": 2212039108 }, - "m_combatEnabled": { - "type": "bool", - "id": 10, - "offset": 336, + "m_accuracyBonusPercent": { + "type": "float", + "id": 17, + "offset": 444, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1399744148 + "hash": 1972336538 }, - "m_PvPEnabled": { - "type": "bool", - "id": 11, - "offset": 337, + "m_armorPiercingBonusPercent": { + "type": "float", + "id": 18, + "offset": 448, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1042852532 + "hash": 1569912641 }, - "m_classProjectName": { - "type": "std::string", - "id": 12, - "offset": 352, + "m_damageReducePercent": { + "type": "float", + "id": 19, + "offset": 452, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1714146665 - } - } - }, - "881774485": { - "name": "class PrivateSocketJewelPair", - "bases": [ - "PropertyClass" - ], - "hash": 881774485, - "properties": { - "m_socketNumber": { - "type": "unsigned int", - "id": 0, - "offset": 72, + "hash": 541736927 + }, + "m_damageReduceFlat": { + "type": "float", + "id": 20, + "offset": 456, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 772707167 + "hash": 684172469 }, - "m_jewelID": { - "type": "gid", - "id": 1, - "offset": 80, + "m_accuracyReducePercent": { + "type": "float", + "id": 21, + "offset": 460, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 190876604 - } - } - }, - "87572929": { - "name": "class Hand*", - "bases": [ - "PropertyClass" - ], - "hash": 87572929, - "properties": { - "m_spellList": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1541139342 + "hash": 2112559723 }, - "m_spellFusionList": { - "type": "class SpellTemplate*", - "id": 1, - "offset": 88, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2334460620 - } - } - }, - "486640643": { - "name": "class JewelSocketBehaviorTemplate*", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 486640643, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, + "m_healBonusPercent": { + "type": "float", + "id": 22, + "offset": 464, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3130754092 - }, - "m_jewelSockets": { - "type": "class JewelSocket", - "id": 1, - "offset": 120, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2355333159 + "hash": 562313577 }, - "m_socketDeleted": { - "type": "bool", - "id": 2, - "offset": 136, - "flags": 31, + "m_healIncBonusPercent": { + "type": "float", + "id": 23, + "offset": 468, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 685830803 - } - } - }, - "1652985022": { - "name": "class PrepEntry*", - "bases": [ - "ServiceOptionBase", - "PropertyClass" - ], - "hash": 1652985022, - "properties": { - "m_serviceName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, + "hash": 2182535587 + }, + "m_hitPointBonus": { + "type": "float", + "id": 24, + "offset": 496, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2206028813 + "hash": 880644461 }, - "m_iconKey": { - "type": "std::string", - "id": 1, - "offset": 168, - "flags": 31, + "m_spellChargeBonus": { + "type": "float", + "id": 25, + "offset": 504, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2457138637 + "hash": 2109811656 }, - "m_displayKey": { - "type": "std::string", - "id": 2, - "offset": 104, - "flags": 31, + "m_powerPipBonusPercent": { + "type": "float", + "id": 26, + "offset": 472, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3023276954 + "hash": 1671446341 }, - "m_serviceIndex": { - "type": "unsigned int", - "id": 3, - "offset": 204, - "flags": 31, + "m_petActChance": { + "type": "int", + "id": 27, + "offset": 492, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2103126710 + "hash": 237418461 }, - "m_forceInteract": { - "type": "bool", - "id": 4, - "offset": 200, - "flags": 31, + "m_manaBonus": { + "type": "float", + "id": 28, + "offset": 500, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1705789564 + "hash": 1372708603 }, - "m_prepText": { + "m_statTableName": { "type": "std::string", - "id": 5, - "offset": 248, - "flags": 31, + "id": 29, + "offset": 360, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2576467479 - } - } - }, - "86394193": { - "name": "class ClientDestroyActorCinematicAction*", - "bases": [ - "DestroyActorCinematicAction", - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 86394193, - "properties": { - "m_timeOffset": { + "hash": 1616642912 + }, + "m_manaReducePercent": { "type": "float", - "id": 0, - "offset": 72, + "id": 30, + "offset": 568, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 + "hash": 348324221 }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, + "m_expPercent": { + "type": "float", + "id": 31, + "offset": 572, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2285866132 - } - } - }, - "486427416": { - "name": "class SharedPointer", - "bases": [ - "TournamentUpdate", - "PropertyClass" - ], - "hash": 486427416, - "properties": { - "m_matchID": { - "type": "gid", - "id": 0, - "offset": 72, - "flags": 31, + "hash": 1147850677 + }, + "m_goldPercent": { + "type": "float", + "id": 32, + "offset": 576, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1757621298 + "hash": 1095720878 }, - "m_status": { - "type": "int", - "id": 1, - "offset": 80, - "flags": 31, + "m_energyBonus": { + "type": "float", + "id": 33, + "offset": 508, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 960781182 - } - } - }, - "1231612536": { - "name": "class AnnounceTextCinematicAction*", - "bases": [ - "CinematicAction", - "PropertyClass" - ], - "hash": 1231612536, - "properties": { - "m_timeOffset": { + "hash": 2223158984 + }, + "m_criticalHitRating": { "type": "float", - "id": 0, - "offset": 72, + "id": 34, + "offset": 512, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 + "hash": 1978690540 }, - "m_text": { - "type": "std::string", - "id": 1, - "offset": 112, + "m_blockRating": { + "type": "float", + "id": 35, + "offset": 516, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1717580128 + "hash": 2088486759 }, - "m_onlyForPlayer": { - "type": "bool", - "id": 2, - "offset": 144, + "m_accuracyRating": { + "type": "float", + "id": 36, + "offset": 520, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 249913353 + "hash": 165525575 }, - "m_stringTable": { - "type": "std::string", - "id": 3, - "offset": 80, + "m_powerPipRating": { + "type": "float", + "id": 37, + "offset": 524, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3386025626 + "hash": 1355340722 }, - "m_effectParamMadlib": { - "type": "bool", - "id": 4, - "offset": 146, + "m_damageResistanceRating": { + "type": "float", + "id": 38, + "offset": 532, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 292989178 - } - } - }, - "86394113": { - "name": "class ClientDestroyActorCinematicAction", - "bases": [ - "DestroyActorCinematicAction", - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 86394113, - "properties": { - "m_timeOffset": { + "hash": 1961377740 + }, + "m_archmastery": { "type": "float", - "id": 0, - "offset": 72, + "id": 39, + "offset": 536, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 + "hash": 1963579610 }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, + "m_archmasteryBonusPercent": { + "type": "float", + "id": 40, + "offset": 588, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2285866132 - } - } - }, - "485455443": { - "name": "struct std::pair,class std::allocator >,class std::basic_string,class std::allocator > >", - "bases": [], - "hash": 485455443, - "properties": {} - }, - "882279328": { - "name": "class ElixirBenefitBehaviorTemplate*", - "bases": [ - "ElixirBehaviorTemplate", - "TimedItemBehaviorTemplate", - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 882279328, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, + "hash": 1908627154 + }, + "m_balanceMastery": { + "type": "int", + "id": 41, + "offset": 540, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3130754092 + "hash": 149062181 }, - "m_expireTime": { - "type": "std::string", - "id": 1, - "offset": 128, + "m_deathMastery": { + "type": "int", + "id": 42, + "offset": 544, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3122602039 + "hash": 1421218661 }, - "m_timerType": { - "type": "enum TimerType", - "id": 2, - "offset": 120, - "flags": 2097159, + "m_fireMastery": { + "type": "int", + "id": 43, + "offset": 548, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 571744132, - "enum_options": { - "TimerType_Game": 0, - "TimerType_Calendar": 1 - } + "hash": 1431794949 }, - "m_typeList": { - "type": "std::string", - "id": 3, - "offset": 160, + "m_iceMastery": { + "type": "int", + "id": 44, + "offset": 552, "flags": 7, - "container": "List", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 2119049625 + "hash": 704864240 }, - "m_equipParticle": { - "type": "std::string", - "id": 4, - "offset": 176, - "flags": 131079, + "m_lifeMastery": { + "type": "int", + "id": 45, + "offset": 556, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2222557491 + "hash": 2142136447 }, - "m_unequipParticle": { - "type": "std::string", - "id": 5, - "offset": 208, - "flags": 131079, + "m_mythMastery": { + "type": "int", + "id": 46, + "offset": 560, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2215431638 + "hash": 1766317185 }, - "m_equipSound": { - "type": "std::string", - "id": 6, - "offset": 240, - "flags": 131079, + "m_stormMastery": { + "type": "int", + "id": 47, + "offset": 564, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2720016552 + "hash": 1883988244 }, - "m_unequipSound": { - "type": "std::string", - "id": 7, - "offset": 272, - "flags": 131079, + "m_stunResistancePercent": { + "type": "float", + "id": 48, + "offset": 580, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1552545835 + "hash": 1868382627 }, - "m_equipActionList": { - "type": "class SharedPointer", - "id": 8, - "offset": 304, + "m_fishingLuckBonusPercent": { + "type": "float", + "id": 49, + "offset": 480, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1314016250 + "pointer": false, + "hash": 1363349254 }, - "m_unequipActionList": { - "type": "class SharedPointer", - "id": 9, - "offset": 320, + "m_shadowPipBonusPercent": { + "type": "float", + "id": 50, + "offset": 476, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2143896925 + "pointer": false, + "hash": 1426533310 }, - "m_combatEnabled": { - "type": "bool", - "id": 10, - "offset": 336, + "m_wispBonusPercent": { + "type": "float", + "id": 51, + "offset": 484, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1399744148 + "hash": 1304386546 }, - "m_PvPEnabled": { - "type": "bool", - "id": 11, - "offset": 337, + "m_pipConversionRating": { + "type": "float", + "id": 52, + "offset": 584, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1042852532 + "hash": 246855691 }, - "m_classProjectName": { - "type": "std::string", - "id": 12, - "offset": 352, + "m_shadowPipRating": { + "type": "float", + "id": 53, + "offset": 528, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1714146665 + "hash": 507126123 } } }, - "882273361": { - "name": "class SG_GameActionClient_DestroyBlock*", + "970444798": { + "name": "class ZoneTokenTrackingBehavior", "bases": [ - "SG_GameAction_DestroyBlock", - "SG_GameAction", + "BehaviorInstance", "PropertyClass" ], - "hash": 882273361, + "hash": 970444798, "properties": { - "m_target": { - "type": "enum SG_GameAction::SG_Target", + "m_behaviorTemplateNameID": { + "type": "unsigned int", "id": 0, - "offset": 72, - "flags": 2097159, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1166870973, - "enum_options": { - "Target_Ball": 0, - "Target_Self": 1, - "Target_Connections": 2, - "__DEFAULT": "Target_Ball" - } + "hash": 223437287 } } }, - "1653757790": { - "name": "class DynamicTriggerTemplate", + "1379324401": { + "name": "class HousingBlob*", "bases": [ - "GameObjectTemplate", - "CoreTemplate", "PropertyClass" ], - "hash": 1653757790, + "hash": 1379324401, "properties": { - "m_behaviors": { - "type": "class BehaviorTemplate*", + "m_housingBlobObjectList": { + "type": "class SharedPointer", "id": 0, - "offset": 72, + "offset": 80, "flags": 7, "container": "Vector", "dynamic": true, "singleton": false, "pointer": true, - "hash": 1197808594 + "hash": 2812881480 + } + } + }, + "534151307": { + "name": "class GradientWidgetBackground", + "bases": [ + "WidgetBackground", + "PropertyClass" + ], + "hash": 534151307, + "properties": { + "m_fBackgroundAlpha": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1164086307 }, - "m_objectName": { - "type": "std::string", + "m_pTopLeftBackgroundAlphaMask": { + "type": "class SharedPointer", "id": 1, - "offset": 96, + "offset": 80, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 2154940147 + "pointer": true, + "hash": 2652729643 }, - "m_templateID": { - "type": "unsigned int", + "m_pTopRightBackgroundAlphaMask": { + "type": "class SharedPointer", "id": 2, - "offset": 128, - "flags": 16777223, + "offset": 96, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1286746870 + "pointer": true, + "hash": 2236264926 }, - "m_visualID": { - "type": "unsigned int", + "m_pBottomLeftBackgroundAlphaMask": { + "type": "class SharedPointer", "id": 3, - "offset": 132, + "offset": 112, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1118778894 + "pointer": true, + "hash": 3301927117 }, - "m_adjectiveList": { - "type": "std::string", + "m_pBottomRightBackgroundAlphaMask": { + "type": "class SharedPointer", "id": 4, - "offset": 248, + "offset": 128, "flags": 7, - "container": "List", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": false, - "hash": 3195213318 + "pointer": true, + "hash": 2184945088 }, - "m_exemptFromAOI": { - "type": "bool", + "m_pBottomBackgroundAlphaMask": { + "type": "class SharedPointer", "id": 5, - "offset": 240, + "offset": 144, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1457879059 + "pointer": true, + "hash": 2408122274 }, - "m_displayName": { - "type": "std::string", + "m_pTopBackgroundAlphaMask": { + "type": "class SharedPointer", "id": 6, - "offset": 168, - "flags": 8388615, + "offset": 160, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 2446900370 + "pointer": true, + "hash": 3440742656 }, - "m_description": { - "type": "std::string", + "m_pLeftBackgroundAlphaMask": { + "type": "class SharedPointer", "id": 7, - "offset": 136, - "flags": 8388615, + "offset": 176, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1649374815 + "pointer": true, + "hash": 2348634648 }, - "m_nObjectType": { - "type": "enum ObjectType", + "m_pRightBackgroundAlphaMask": { + "type": "class SharedPointer", "id": 8, - "offset": 200, - "flags": 2097159, + "offset": 192, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 2118905880, - "enum_options": { - "OT_UNDEFINED": 0, - "OT_PLAYER": 1, - "OT_NPC": 2, - "OT_PROP": 3, - "OT_OBJECT": 4, - "OT_HOUSE": 5, - "OT_KEY": 6, - "OT_OLD_KEY": 7, - "OT_DEED": 8, - "OT_MAIL": 9, - "OT_RECIPE": 17, - "OT_EQUIP_HEAD": 10, - "OT_EQUIP_CHEST": 11, - "OT_EQUIP_LEGS": 12, - "OT_EQUIP_HANDS": 13, - "OT_EQUIP_FINGER": 14, - "OT_EQUIP_FEET": 15, - "OT_EQUIP_EAR": 16, - "OT_BUILDING_BLOCK": 18, - "OT_BUILDING_BLOCK_SOLID": 19, - "OT_GOLF": 20, - "OT_DOOR": 21, - "OT_PET": 22, - "OT_FABRIC": 23, - "OT_WINDOW": 24, - "OT_ROOF": 25, - "OT_HORSE": 26, - "OT_STRUCTURE": 27, - "OT_HOUSING_TEXTURE": 28, - "OT_PLANT": 29 - } + "pointer": true, + "hash": 2938548331 }, - "m_sIcon": { - "type": "std::string", + "m_pCenterBackgroundAlphaMask": { + "type": "class SharedPointer", "id": 9, "offset": 208, - "flags": 131079, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3347258414 + }, + "m_TopLeftColor": { + "type": "class Color", + "id": 10, + "offset": 224, + "flags": 262151, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2306259831 - } - } - }, - "485808544": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 485808544, - "properties": { - "m_essenceTrackingList": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 31, - "container": "List", - "dynamic": true, + "hash": 2827413723 + }, + "m_TopRightColor": { + "type": "class Color", + "id": 11, + "offset": 228, + "flags": 262151, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2834468954 + "pointer": false, + "hash": 1853016654 }, - "m_collectedEssenceCount": { - "type": "int", - "id": 1, - "offset": 88, - "flags": 31, + "m_BottomLeftColor": { + "type": "class Color", + "id": 12, + "offset": 232, + "flags": 262151, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 144807032 + "hash": 1172117245 }, - "m_failedToCollectReason": { - "type": "int", - "id": 2, - "offset": 92, - "flags": 31, + "m_BottomRightColor": { + "type": "class Color", + "id": 13, + "offset": 236, + "flags": 262151, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 160435248 + "hash": 3062807728 } } }, - "1232033042": { - "name": "class DynamicSigilTeam", + "969769211": { + "name": "class ClassProjectGlobalLootPoint", "bases": [ "PropertyClass" ], - "hash": 1232033042, + "hash": 969769211, "properties": { - "m_teamName": { - "type": "std::string", + "m_globalPointLevel": { + "type": "int", "id": 0, "offset": 72, - "flags": 31, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3629497091 + "hash": 1056567917 }, - "m_teamIndex": { - "type": "int", + "m_descriptionText": { + "type": "std::string", "id": 1, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1621537177 - }, - "m_flags": { - "type": "unsigned int", - "id": 2, - "offset": 108, - "flags": 31, + "offset": 80, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1005801050, - "enum_options": { - "DTF_Players": 1 - } - }, - "m_subcircles": { - "type": "class SharedPointer", - "id": 3, - "offset": 112, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2253698236 + "hash": 3396736580 } } }, - "1653249532": { - "name": "class SharedPointer", + "969403084": { + "name": "class PlayerHasBadge", "bases": [ - "DynaModBehavior", - "BehaviorInstance", "PropertyClass" ], - "hash": 1653249532, + "hash": 969403084, "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", + "m_sBadgeName": { + "type": "std::string", "id": 0, - "offset": 104, - "flags": 39, + "offset": 72, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 - } - } - }, - "86893440": { - "name": "class SharedPointer", - "bases": [ - "CinematicAction", - "PropertyClass" - ], - "hash": 86893440, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, + "hash": 1846044066 + }, + "m_hasBadge": { + "type": "bool", + "id": 1, + "offset": 104, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 + "hash": 1597294914 } } }, - "1231934738": { - "name": "class DynamicSigilTeam*", + "1814984572": { + "name": "class SharedPointer", "bases": [ + "CinematicStageTemplate", "PropertyClass" ], - "hash": 1231934738, + "hash": 1814984572, "properties": { - "m_teamName": { + "m_name": { "type": "std::string", "id": 0, "offset": 72, - "flags": 31, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3629497091 + "hash": 1717359772 }, - "m_teamIndex": { - "type": "int", + "m_duration": { + "type": "float", "id": 1, "offset": 104, - "flags": 31, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1621537177 + "hash": 920323453 }, - "m_flags": { - "type": "unsigned int", + "m_actions": { + "type": "class SharedPointer", "id": 2, - "offset": 108, - "flags": 31, - "container": "Static", - "dynamic": false, + "offset": 112, + "flags": 7, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 1005801050, - "enum_options": { - "DTF_Players": 1 - } + "pointer": true, + "hash": 1380578687 }, - "m_subcircles": { - "type": "class SharedPointer", + "m_stageRelationships": { + "type": "class SharedPointer", "id": 3, - "offset": 112, - "flags": 31, + "offset": 128, + "flags": 7, "container": "List", "dynamic": true, "singleton": false, "pointer": true, - "hash": 2253698236 + "hash": 499983354 + }, + "m_sound": { + "type": "std::string", + "id": 4, + "offset": 152, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2307644996 } } }, - "1653180090": { - "name": "class SharedPointer", + "1381022525": { + "name": "class SharedPointer", "bases": [ - "ConicalSoundBehaviorTemplate", - "PositionalSoundBehaviorTemplate", - "SoundBehaviorTemplate", - "AreaBehaviorTemplate", - "BehaviorTemplate", + "AquariumBehaviorBase", + "BehaviorInstance", "PropertyClass" ], - "hash": 1653180090, + "hash": 1381022525, "properties": { - "m_behaviorName": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_fishData": { "type": "std::string", + "id": 1, + "offset": 128, + "flags": 575, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3393318815 + } + } + }, + "1380961597": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1380961597, + "properties": { + "m_adventurePartyGID": { + "type": "gid", "id": 0, "offset": 72, "flags": 7, @@ -640040,4086 +596163,4780 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 3130754092 + "hash": 2003479882 }, - "m_radius": { - "type": "float", + "m_adventurePartyName": { + "type": "unsigned int", "id": 1, - "offset": 120, + "offset": 80, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 989410271 + "hash": 1899719436 }, - "m_category": { - "type": "enum AudioCategory", + "m_adventurePartyNameLocale": { + "type": "int", "id": 2, - "offset": 124, - "flags": 2097159, + "offset": 84, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2951251982, - "enum_options": { - "AudioCategory_Irrelevent": 0, - "AudioCategory_Accoustic": 1, - "AudioCategory_Noise": 2, - "AudioCategory_Music": 3, - "AudioCategory_MusicAtSFXVolume": 4, - "AudioCategory_Dialog": 5, - "AudioCategory_UI": 6, - "AudioCategory_NoiseAtMusicVolume": 7 - } + "hash": 695833705 }, - "m_exclusive": { - "type": "bool", + "m_purposeType": { + "type": "int", "id": 3, - "offset": 128, + "offset": 88, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 824383403 + "hash": 1148443466 }, - "m_active": { - "type": "bool", + "m_purposeWorldID": { + "type": "unsigned int", "id": 4, - "offset": 129, + "offset": 92, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 239335471 + "hash": 1790486832 }, - "m_enableReqs": { - "type": "class SharedPointer", + "m_partySize": { + "type": "int", "id": 5, - "offset": 136, - "flags": 263, + "offset": 96, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3158020443 - }, - "m_trackFilenameList": { - "type": "std::string", - "id": 6, - "offset": 152, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, "pointer": false, - "hash": 2531081709 - }, - "m_playList": { - "type": "class PlayListEntry*", - "id": 7, - "offset": 176, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 3907873161 + "hash": 234201381 }, - "m_priority": { + "m_onlineCount": { "type": "int", - "id": 8, - "offset": 208, + "id": 6, + "offset": 100, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1235205852 - }, - "m_volume": { - "type": "float", - "id": 9, - "offset": 200, - "flags": 7, + "hash": 35306568 + } + } + }, + "536015922": { + "name": "class WinAnimMoveToLocationTime*", + "bases": [ + "WinAnimMoveToLocation", + "WindowAnimation", + "PropertyClass" + ], + "hash": 536015922, + "properties": { + "m_bUseDeepCopy": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1162855023 + "hash": 433380635 }, - "m_loopCount": { - "type": "int", - "id": 10, - "offset": 204, - "flags": 7, + "m_targetLocation": { + "type": "class Vector3D", + "id": 1, + "offset": 80, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 865634717 + "hash": 2653859938 }, - "m_progression": { - "type": "enum PlayList::Progression", - "id": 11, - "offset": 220, - "flags": 2097159, + "m_fTimeRemaining": { + "type": "float", + "id": 2, + "offset": 100, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3279400238, - "enum_options": { - "Sequence": 0, - "Random": 1, - "SequenceOnceOnly": 2, - "RandomNoRepeat": 3 - } + "hash": 1591443014 }, - "m_progressMin": { + "m_fTimeTotal": { "type": "float", - "id": 12, - "offset": 212, - "flags": 7, + "id": 3, + "offset": 96, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1497550192 - }, - "m_progressMax": { - "type": "float", - "id": 13, - "offset": 216, + "hash": 661225456 + } + } + }, + "969769403": { + "name": "class ClassProjectGlobalLootPoint*", + "bases": [ + "PropertyClass" + ], + "hash": 969769403, + "properties": { + "m_globalPointLevel": { + "type": "int", + "id": 0, + "offset": 72, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1497549938 + "hash": 1056567917 }, - "m_audioFilterSet": { - "type": "unsigned int", - "id": 14, - "offset": 224, - "flags": 33554439, + "m_descriptionText": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 831339825 - }, - "m_animationNameFilter": { - "type": "std::string", - "id": 15, - "offset": 232, + "hash": 3396736580 + } + } + }, + "535692033": { + "name": "class ClientTurnIndicatorCinematicAction", + "bases": [ + "TurnIndicatorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 535692033, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2292854242 - }, - "m_functionallabel": { - "type": "std::string", - "id": 16, - "offset": 264, + "hash": 2237098605 + } + } + }, + "1816211566": { + "name": "class SharedPointer", + "bases": [ + "Search::ResultItem", + "PropertyClass" + ], + "hash": 1816211566, + "properties": { + "m_userID": { + "type": "gid", + "id": 0, + "offset": 72, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3589331278 + "hash": 1037989700 }, - "m_innerRadius": { - "type": "float", - "id": 17, - "offset": 296, + "m_userName": { + "type": "std::string", + "id": 1, + "offset": 80, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 686816091 + "hash": 2213937019 }, - "m_inverted": { - "type": "bool", - "id": 18, - "offset": 300, + "m_characterID": { + "type": "gid", + "id": 2, + "offset": 112, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1034821044 + "hash": 210498386 }, - "m_fInsideAngle": { - "type": "float", - "id": 19, - "offset": 304, + "m_characterName": { + "type": "std::wstring", + "id": 3, + "offset": 120, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1114383840 + "hash": 2815013574 }, - "m_fOutsideAngle": { - "type": "float", - "id": 20, - "offset": 308, + "m_zoneName": { + "type": "std::string", + "id": 4, + "offset": 152, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1627152289 + "hash": 2171167736 }, - "m_fOutsideVolume": { - "type": "float", - "id": 21, - "offset": 312, + "m_realmName": { + "type": "std::string", + "id": 5, + "offset": 184, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 90369618 + "hash": 3507983949 }, - "m_fRangeScale": { - "type": "float", - "id": 22, - "offset": 316, - "flags": 7, + "m_level": { + "type": "int", + "id": 6, + "offset": 216, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1749294034 + "hash": 801285362 }, - "m_fAttenuationFactor": { - "type": "float", - "id": 23, - "offset": 320, - "flags": 7, + "m_world": { + "type": "int", + "id": 7, + "offset": 232, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 273292776 + "hash": 814685730 }, - "m_eAttenuationType": { - "type": "enum PositionInfoAttenuationType", - "id": 24, - "offset": 324, - "flags": 2097159, + "m_nameKey": { + "type": "unsigned int", + "id": 8, + "offset": 220, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2427193304, - "enum_options": { - "Standard": 0, - "Unit Range Power": 1 - } - } - } - }, - "1231910195": { - "name": "class SharedPointer", - "bases": [ - "DerbyMoraleByTerrainEffect", - "DerbyEffect", - "PropertyClass" - ], - "hash": 1231910195, - "properties": { - "m_buffType": { - "type": "enum DerbyTalentBuffType", - "id": 0, - "offset": 92, + "hash": 1104764311 + }, + "m_gender": { + "type": "enum eGender", + "id": 9, + "offset": 224, "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1149251982, + "hash": 2121766730, "enum_options": { - "Buff": 0, - "Debuff": 1, - "Neither": 2 + "Male": 1, + "Female": 0, + "Neutral": 2 } }, - "m_kTarget": { - "type": "enum DerbyTargetType", - "id": 1, - "offset": 96, - "flags": 2097159, + "m_race": { + "type": "enum eRace", + "id": 10, + "offset": 228, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1807803351, + "hash": 390582957, "enum_options": { - "kTargetInFront": 0, - "kTargetBehind": 1, - "kTargetFirst": 2, - "kTargetSelf": 3, - "kTargetAll": 4, - "kTargetLast": 5 + "Bat": 88066, + "BatLightning": 1472842576, + "Boar": 2624962, + "CatThug": 1855674386, + "ChristmasElf": 819908552, + "ChristmasSnowman": 1146515225, + "Colossus_Ice": 1063279538, + "Cyclops": 1691813655, + "DragonBeta": 417003588, + "DragonFriendly": 69049013, + "EvilSnowman": 1579630926, + "FireElf": 443793687, + "Firecat": 2045525741, + "Frog": 2274918, + "FrostBeetle": 7692383, + "GhostBlue": 1097396892, + "GhostGreen": 882822629, + "GhostRed": 560510742, + "GhostYellow": 909974358, + "Ghoul": 82556199, + "GoatMonk": 486215564, + "GolemBrass": 1057388325, + "GolemClockwork": 1143380031, + "GolemSteel": 1660583674, + "GolemWood": 1426849876, + "HalloweenCat": 1042869199, + "Heckhound": 626736403, + "Helephant": 719065368, + "Human": 79806088, + "Hydra": 70785800, + "Imp": 84361, + "Krokomummy": 555755242, + "Kroktut": 1352354178, + "Leprechaun": 2106466410, + "LeprechaunPattyDay": 380507781, + "LightningBat": 228257682, + "Mannequin": 428442544, + "Minotaur": 949570680, + "Mount_Broom": 94637995, + "Mount_Cat": 1150940211, + "Mount_Dragon": 1565720148, + "Mount_Horse": 2054712767, + "Mount_PlayerWings": 589829552, + "Nikkos": 1563122418, + "NinjaPig": 607400740, + "Orthus": 1552590225, + "Piggle": 1897753328, + "Piggle_Valentine": 687697592, + "Piggle_ValentinePart2": 1760391091, + "Pixie": 74836240, + "RatMagician": 885542120, + "SalamanderFire": 48480175, + "SalamanderIce": 2011152164, + "SalamanderStorm": 600331072, + "Satyr": 84793363, + "Scarab": 2143810477, + "Sheep": 86220083, + "SkeletonArmored": 1791586239, + "SnowSerpent": 138621543, + "Spider": 1603064269, + "SpiderBlack": 559353179, + "SpiderBrown": 557941675, + "SpiderCrystal": 2119625297, + "SpiderGolem": 1632616514, + "Sprite": 1889156557, + "SpriteDark": 1888685518, + "Stormzilla": 252684095, + "SunBird": 1602211198, + "Transformation_ArmoredSkeleton": 1861349834, + "Transformation_CatThug": 1175387611, + "Transformation_Cat_Bandit": 1012395694, + "Transformation_ClockworkGolem": 601121214, + "Transformation_Cyclops": 620156297, + "Transformation_DarkFairy": 1206757203, + "Transformation_DraconianSorcerer": 1212016810, + "Transformation_Draconian": 450730089, + "Transformation_EarthColossus": 140119452, + "Transformation_EvilSnowman": 1497097122, + "Transformation_FatGobbler": 634003800, + "Transformation_FireElemental": 822233230, + "Transformation_FireElf": 46585468, + "Transformation_FireSalamander": 2118418114, + "Transformation_Gobbler_Skinny": 162365207, + "Transformation_GolemSteel": 1329184184, + "Transformation_Ice_Colossus": 430406408, + "Transformation_Krokomummy": 1644615769, + "Transformation_MagmaMan": 545064542, + "Transformation_Mander": 88998828, + "Transformation_NinjaPig": 1029132174, + "Transformation_Ninja_Pig_04": 7093548, + "Transformation_RatThug": 1175352795, + "Transformation_RavenMystic": 1443197359, + "Transformation_StormElemental": 637088511, + "Transformation_Treant": 1874998327, + "Transformation_WarPig": 691088645, + "Transformation_WolfScout": 263523463, + "Transformation_WolfWarrior": 6092463, + "Transformationn_SkeletonPirate": 1821341863, + "Treant": 1396597132, + "Troll": 82261620, + "Unicorn": 550546918, + "Unknown": 718677478, + "Wolverine": 528843083, + "Wraith": 1788506505, + "Wyrmkin": 379044612, + "Transformation_CyrusDrake": 94277831, + "PetEgg": 1973167984, + "GhostLady": 493415959, + "Banshee": 827805677, + "GobblerRed": 250135875, + "Ghoul_Gravedigger": 161812468, + "SkeletonWarrior": 734585814, + "BansheeBoss": 806445565, + "Seraph": 1792950125, + "CrabKing": 277875784, + "UndeadCaster": 1680689397, + "DragonFrontier": 1829438301, + "HeckhoundGhost": 872406464, + "Mount_Unicorn": 212699468, + "Jellyfish": 910724608, + "SeaDragon": 1194541306, + "Turtle": 1897184620, + "Starfish": 1447562471, + "SpinyFish": 162948281, + "Mount_Gryphon": 2110522960, + "Mount_Shark": 1170186623, + "Mount_Manta": 979931598, + "Mount_Seahorse": 1554833818, + "Mount_Seahorse_Tough": 1245859453, + "Mount_Koi": 1150937409, + "Mount_Lobster": 2025618875, + "Mount_Turtle": 1490849128, + "VenusFlyTrap": 1612039757, + "GDN_MED_BabyCarrots": 327334743, + "GDN_SM_BoomShroom": 31324632, + "GDN_SM_Dandelion": 2058674142, + "GDN_SM_Disparagus": 1732989489, + "GDN_MED_EvilSnowPeas": 747408607, + "GDN_SM_FicklePickle": 205381955, + "GDN_SM_HappyHolidaisy": 1736236340, + "GDN_MED_HelephantEars": 1803669659, + "GDN_MED_HoneySickle": 424149132, + "GDN_LG_NinjaFig": 847338104, + "GDN_LG_SnapDragon": 1076151689, + "GDN_SM_StinkWeed": 845383431, + "GDN_MED_TrumpetVine": 1922690264, + "GDN_MED_VenusFlyTrap": 1560899638, + "GDN_SM_Laughodil": 1278979588, + "GDN_LG_BreadFruitBush": 533042934, + "GDN_MED_PricklyBearCactus": 1236846986, + "GDN_MED_KingParsley": 110148182, + "LeprechaunPatriotic": 414730890, + "SeraphYuletide": 1325846853, + "DragonGhost": 1502126893, + "UnicornNightmare": 604358256, + "EvilSnowmanSandman": 1579432150, + "Colossus_Spirit": 422514215, + "Rock": 2393554, + "GDN_MED_GivingTree": 2047236132, + "Egg": 70853, + "Mount_Carpets": 1602744888, + "Kraken": 1737191829, + "Wyvern": 1727802601, + "Phoenix": 1765559002, + "Judgement": 562901781, + "ForestLord": 1390734923, + "Humongofrog": 1272123051, + "Scarecrow": 41441599, + "Mount_Ram": 77196599, + "BasketSnake": 1835657086, + "Samoorai": 522797493, + "Transformation_RavenWarrior": 701169336, + "PhoenixStorm": 1325268802, + "PhoenixDeath": 1281634042, + "GDN_LG_CouchPotatoes": 879742725, + "GDN_MED_KeyLimes": 811516024, + "Mount_BoneDragon": 1023618313, + "Mount_BigBoneDragon": 1124383680, + "Mount_FairyWings": 1904926612, + "Mount_DragonWings": 755225925, + "Mount_Pegasus": 1621244140, + "GDN_MED_BellPepper": 1710238687, + "GDN_MED_GrapesOfWrath": 1068787103, + "GDN_SM_TigerLily": 1899057048, + "WysteriaPiggle": 49173891, + "Mount_Wyvern": 1658410744, + "Mount_2P_Rhino": 1052779475, + "NightHawk": 358964390, + "Giraffe": 935214826, + "Mount_Hawk": 2070898895, + "Mount_HalloweenNightmare": 726136378, + "GobblerHalloween": 1482399836, + "Leopard": 1606863715, + "Skink": 76950867, + "Mount_Ostrich": 466111322, + "Mount_Crocagator": 1981222087, + "Transformation_Blacktusk-01": 401543565, + "Mount_Hippogriff": 2043817624, + "Transformation_Gorilla-01": 1555853240, + "Transformation_Gorilla-02": 1606184888, + "Mount_Raven": 94983735, + "Mount_Chrismoose": 1822495199, + "Mount_CandyCane": 1148551147, + "Ivy_League": 925492799, + "GDN_MED_Ivy_League": 1630077794, + "Mount_Kirin": 1168691825, + "GDN_SM_Moonflower": 2068754330, + "GDN_MED_BoonTree": 788055729, + "Snowball": 2046118016, + "Foo_Dog": 1549710807, + "ShenlongDragon": 932676736, + "Monkey": 1233866291, + "Wolfhound": 626884686, + "Redcap": 1540319086, + "Raven": 79941650, + "HollowKnight": 1107268274, + "Book": 2405826, + "GDN_MED_AngoraBunnyEars": 1547559854, + "GDN_MED_FortuneCookieTree": 786686214, + "GDN_MED_GooseTree": 809354938, + "GDN_SM_HoneyBeePlant": 1528880373, + "GDN_MED_BambooShoots": 1096708900, + "GDN_SM_Huckleberries": 1937475840, + "Rock_Moustache": 962221287, + "Efreet_Myth": 1834555522, + "Efreet": 1401700123, + "Mammoth": 1395147745, + "Triton": 1730466188, + "Gnome": 74954215, + "BoneDragon": 429245206, + "Basilisk": 1457899086, + "Chimera": 529027789, + "Transformation_GammaTemplate": 1337834518, + "Mount_Camel": 1168198963, + "Mount_RenaissanceWings": 1049782088, + "Bull_Mount": 1713506759, + "Mount_Owl": 1150938242, + "Mount_Alphyn": 487264165, + "Mount_Stag": 1150353823, + "Mount_Auroch": 509865325, + "Mount_Warg": 1150358072, + "StrangeBeast": 511334734, + "Efreet_Ice": 1820009122, + "Efreet_Storm": 1269986674, + "GDN_LG_AlligatorPear": 1293913372, + "Mount_2P_Treant": 928450863, + "Mount_2P_Dragon": 1431637933, + "Mount_Pogo_Stick_WC": 1462849298, + "Mount_Pogo_Stick_MB": 1349603090, + "GDN_LG_MeltingCheese": 1914589015, + "GDN_SM_FishOnAVine": 1734955358, + "GDN_LG_AngelOak": 1539539424, + "GDN_LG_MeltingCheese_Angel": 1254781264, + "SnowyOwl": 1682262138, + "Mount_3P_Hydra": 1207475250, + "WeaselMinstrel": 1541234616, + "MOUNT_Rickshaw": 938282973, + "Transformation_Sherlock-Bones": 509126601, + "Mount_Phoenix": 556355452, + "Toaddle": 597488187, + "Pantera": 528797696, + "WildfireTreant": 673362041, + "StoneTiger": 746336665, + "Blowfish": 1447737334, + "Smith": 78327187, + "FlyingCat": 1254472614, + "RamWarrior": 536916302, + "Ladybug": 1846384669, + "BurlapBoy": 607590898, + "DeerKnight": 560802130, + "Gargoyle": 1227701700, + "Chameleon": 596131510, + "Scorpion": 1462253104, + "GDN_SM_BoiledPeanuts": 544885684, + "GDN_SM_ClockFlower": 676513046, + "GDN_SM_DeadBeets": 650783482, + "GDN_MED_SnowApple": 1916648180, + "Eyecaramba_Violet": 1804780775, + "Eyecaramba_Green": 750346574, + "Eyecaramba_Orange": 687614854, + "Piggle_Grandfather": 131445665, + "Velociraptor": 1042311818, + "Babydactyl": 1180982194, + "Stegosaurus": 476811765, + "Mount_Pegasus_Spectral": 948250730, + "Mount_2P_Scarydactyl": 1808983335, + "Mount_2P_TRex": 1495851852, + "Therizinosaurus": 80337863, + "Runtosaurus": 476200406, + "FrilledLizard": 420993517, + "Mount_Ankylosaurus": 669692274, + "Mount_Triceratops": 1126950204, + "Mount_2P_Glider": 1630365881, + "Transformation_Thunderhorn": 1045262037, + "Transformation_Jaguar": 1080966062, + "Transformation_Pteranadon": 273836142, + "Transformation_ShadowWeaver": 255927111, + "Transformation_EagleWarrior": 1880471875, + "Mount_Falalalallama": 389890123, + "Mount_2P_WinterTreant": 1850265056, + "GDN_LG_MissileToe": 1767792974, + "GDN_MED_PointSetta": 647257205, + "Nutcracker2012": 1598217699, + "Coal2012": 1627852119, + "Mount_Sleigh": 1636615519, + "Mount_Sabertooth": 1613031507, + "Mount_MechanicalWings": 1014917438, + "PiranhaHunter": 686271163, + "Quetzal": 2020925822, + "Mount_Sloth": 1169387359, + "HollowKnightLife": 2114081886, + "BettaFish": 138088968, + "MummyCat": 62372925, + "TrojanHorse": 1725299194, + "WC_Storm_Possessed": 186960228, + "AV_Possessed": 1106693085, + "AZ_Possessed": 1106692701, + "CL_Possessed": 1106692255, + "KT_Possessed": 1106693015, + "MS_Possessed": 1106692977, + "WC_Possessed": 1106692459, + "Mount_2P_Whale": 448824263, + "Mount_2P_Chariot": 88035298, + "Mount_WarBoar": 1159836211, + "Mount_Palanquin": 47587550, + "BearCub": 672664722, + "Transformation_Minotaur": 1454233452, + "DragonGauntlet": 797645257, + "DeathUnicorn": 924144161, + "Flamingo": 1488424911, + "Mount_Gorilla": 1939919432, + "Mount_WarUnicorn": 1361393198, + "GargoyleMyth": 1819685060, + "TikiMan": 16098567, + "Siren": 79937811, + "GoldenRam": 410220227, + "Harpy": 96026632, + "SwordShield": 1668411785, + "ClockworkKnight": 1059948980, + "Mount_MechanicalEagle": 1720948645, + "Mount_Cloud": 1166233435, + "Mount_Surfboard": 1914250039, + "Mount_BetaDragon": 1023653721, + "Mount_BeeWings": 1387988401, + "Vampire": 524731385, + "FrankenBunny": 589797989, + "BumbleBee": 249592226, + "Mount_Dragonfly": 1028843656, + "BronzeGolem": 1320867859, + "TarantulaHawk": 1983939429, + "Mount_Grasshopper": 1852850928, + "FlyingSquirrel": 847551166, + "GDN_MED_Sunion": 1652707634, + "GDN_MED_SwordFern": 548761438, + "GDN_SM_SugarKhrystal": 267539461, + "GDN_SM_SawPalmetto": 1892888046, + "GDN_LG_FacePalm": 2050814140, + "GDN_LG_QueenCrapeMyrtle": 80378450, + "Transformation_ShadowTank": 1304943609, + "Transformation_ShadowHeal": 1254024185, + "Transformation_ShadowDPS": 87276537, + "Mount_Noelephant": 1383672248, + "SaintBernard": 572932242, + "ParkaFox": 2009808189, + "Goose": 75019719, + "Mount_Coconut": 791151432, + "CreepyBeetle": 345594179, + "BabyDragonfly": 1367084335, + "FennecFox": 41315063, + "PP_Leviathan": 833901526, + "PP_SunSerpent": 1062677009, + "PP_LordOfWinter": 960214698, + "PP_Medusa": 867812931, + "PP_Dryad": 147654656, + "PP_AvengingFossil": 315904647, + "PP_Sabertooth": 1799146677, + "Mount_Butterfly": 1283940943, + "Mount_Hare": 2070851023, + "Transformation_MorganthB": 197306990, + "Transformation_MorganthC": 197831278, + "Transformation_MorganthD": 200452718, + "BabyPegasus": 1215000859, + "ArcaneHelp": 1899247549, + "Mount_Vines": 98389624, + "Mount_ArcaneMinecart": 2001270930, + "Hobgoblin": 2133668461, + "Mount_2P_Rowboat": 237071469, + "ForestSpirit": 1178454602, + "Mount_SpiritWolf": 531991076, + "Otter": 84138671, + "OrigamiBird": 550984083, + "DinoSkeletal": 233277835, + "Mount_HarrowingsGreen": 1605746772, + "Mount_HarrowingsBlue": 477152436, + "Mount_HarrowingsPurple": 2092807554, + "RedPanda": 1744233845, + "Ibis": 2665577, + "Corgi": 78823875, + "Mount_Yak": 996545739, + "Mount_FlyingBalance": 436519643, + "Transformation_ShadowMalistaire": 1043814435, + "Transformation_DragonMalistaire": 841867699, + "Mount_Scarab": 1687658791, + "Transformation_MisterHound": 1973578844, + "Mount_BahHumbug": 55114077, + "Skates": 1568993965, + "Moose": 75019725, + "Mount_Gargoyle": 1456663874, + "GDN_MED_VenusFlyTrapEpic": 1594069606, + "Mount_PlayerWingsPink": 19403046, + "GDN_LG_AlligatorPearEpic": 1326804812, + "Pet_Armadillo": 825736847, + "Mount_JoustingDestrierDyeable": 1683448768, + "GDN_MED_VampireCarrots": 871596496, + "GDN_SM_WhiteTigerLilyEpic": 1703271434, + "GDN_LG_NinjaFigEpic": 938504823, + "GDN_LG_SnapDragonEpic": 2071674466, + "GDN_MED_HelephantEarsEpic": 719166107, + "GDN_MED_TrumpetVineEpic": 225854518, + "GDN_SM_DandelionEpic": 728637442, + "GDN_SM_HuckleberriesEpic": 1903258448, + "GDN_MED_SnowAppleEpic": 1231175967, + "GDN_SM_BoomShroomEpic": 981598771, + "GDN_MED_KingParsleyEpic": 2038371004, + "Mount_Raptor": 749695031, + "Pet_Toucan": 581477475, + "Pet_Squirrel": 969881395, + "Mount_WonkyDonkey": 1481657312, + "Mount_HawkPatriotic": 509149743, + "Pet_FrogAssistant": 1945041750, + "Mount_Cat2": 1151054899, + "Mount_Cat2BW": 1603515443, + "Pet_ArmadilloBW": 825733899, + "Pet_FrankieForearms": 1100195857, + "Mount_SolarSabre": 1281093703, + "MNT_MechOstrich": 258667969, + "MNT_BootsBalance": 1799191558, + "MNT_BootsDeath": 1034912971, + "MNT_BootsFire": 606061658, + "MNT_BootsIce": 2142643294, + "MNT_BootsLife": 773751898, + "MNT_BootsMyth": 144792486, + "MNT_BootsStorm": 1525245121, + "Pet_CorgiBirthday": 1951779369, + "OrigamiBirdBDay": 1909935955, + "Pet_FlyingBlackCat": 432111988, + "Mount_Narwhal": 449637834, + "Mount_NightOwl": 1648420845, + "Pet_Penguin": 137342907, + "MNT_PowerGemUnicorn": 411234062, + "Pet_CrystalButterfly": 512136094, + "Mount_BabyMammoth": 185831059, + "MNT_BabaYaga": 564874997, + "Pet_BabySeal": 657606984, + "Pet_BabyYeti": 635847496, + "Transformation_BallerinaBear": 1525333600, + "Mount_StagYuletide": 1508680687, + "Transformation_TitanMedium": 1700742736, + "Transformation_TitanLarge": 718614967, + "Pet_SirenIce": 849851564, + "Mount_FlyingDeath": 1717725588, + "Mount_FlyingFire": 1177216332, + "Mount_FlyingIce": 1238841184, + "Mount_FlyingLife": 433397684, + "Mount_FlyingMyth": 164983572, + "Mount_FlyingStorm": 375872049, + "Dragonling": 1730534849, + "Pet_EggChicken": 952873217, + "HeckhoundGhost_MAW": 893368960, + "Mount_WinterTrain": 751515281, + "Mount_RubberDucky": 1826548479, + "Pet_BansheeSpellwrit": 917979583, + "Pet_SamooraiSpellwrit": 370057597, + "Mount_UnicornAstral": 886914505, + "Guest_Boochbeard": 1958574095, + "Pet_MouseSister": 1267930350, + "Pet_MouseFather": 2010008339, + "Pet_VampireSquirrel": 250588691, + "Mount_CoffinCar": 1387606595, + "Mount_BabyElephant": 2026559639, + "Pet_RoadHog": 601156960, + "Mount_WolfGryphonWings": 543038283, + "MNT_ClockworkSteed": 891371132, + "Mount_Chopper": 1196683136, + "Pet_ButterflyLamb": 527214392, + "Pet_MouseMother": 2012687123, + "Pet_MouseBrother": 1174380856, + "Pet_Cherub": 769208559, + "GDN_SM_Jewel": 1104045832, + "MR_Death_Duncan_Grimwater": 1850289001, + "Mount_DesertRunner": 2049036229, + "Pet_MonkeyMirage": 418612892, + "Pet_ClockworkOwl": 1038482431, + "Pet_NinjaTurtle": 2024540686, + "Mount_Vines_Halloween": 82852149, + "Mount_SwarmBat": 1151836459, + "Mount_2P_NinjaDragon": 1239694057, + "Mount_Gobler": 1820615236, + "Mount_MaryleboneCar": 2027689685, + "JackOLantern": 1016361578, + "Transformation_DjinnCommonA_Balance": 996127128, + "Transformation_MedicineMode": 25960701, + "CactusHopper": 1956293007, + "Transformation_Mimic_ChestGold_A": 414145432, + "Mount_Ghoulture": 1067671195, + "Pet_Macaw": 1087278472, + "Pet_SandWorm": 653200803, + "Transformation_DromelDancer": 1071824116, + "Pet_Bunnies": 695874547, + "Mount_Snowboard": 1914380015, + "Transformation_DrommelDancer": 226294468, + "Mount_Carpet_New": 1618650322, + "Mount_BunnySleigh": 599915427, + "Helephant_Heart": 419161272, + "Mount_Snowboard_Holiday": 876339060, + "Transformation_GhostDog": 646575420, + "Transformation_PrinceGobblestone": 693826496, + "Transformation_Mithraya": 1240010601, + "Transformation_LuskaCharmbeak": 897469730, + "Transformation_YoungCyrusDrake": 15595663, + "Kookaburra": 1069759154, + "BorealisGolemPet": 797488492, + "FlyingEyePet": 505959833, + "StormCloudPet": 548463069, + "BullPet": 1993917801, + "OpossumPet": 284003652, + "GhoulturePet": 939920734, + "StormCloudPetB": 548463001, + "StormCloudPetC": 548463003, + "Guest_LordNightshade": 1221409981, + "BullPetB": 1993917561, + "BullPetC": 1993917553, + "BullPetD": 1993917513, + "Transformation_ShadowCrit": 1392195065, + "Mount_Pennyfarthing": 1551926344, + "Mount_RowboatPirate": 2079208803, + "Mount_IceCube": 1261861595, + "Guest_LostMaiden": 883675592, + "Guest_BoatswainMcGee": 1359750850, + "Guest_ChiefMateMcGurk": 329643845, + "Guest_DoomedBones": 2015643882, + "Guest_SpectreoftheBrocken": 266357448, + "Guest_DrownedKnight": 1100966093, + "Guest_TarntheDrowned": 329540205, + "Guest_DisloyalKnight": 1853240753, + "Guest_NamelessKnight": 1065677876, + "Guest_LambentFire": 489886605, + "Guest_LordoftheBrocken": 1662003371, + "Guest_StormCaiman": 1147500291, + "Guest_GrinningDeathMoon": 737595789, + "Guest_MoonSkullWight": 1720039490, + "Guest_HuemacSpearWreath": 1522021131, + "Guest_HowlingBanshee": 1340855338, + "Guest_Sea-Booter": 1818491983, + "Guest_DeadRover": 1009273257, + "Guest_CelestianRemnant": 1312268448, + "Guest_Shadow-WebConscript": 1500529411, + "Guest_Shadow-WebMercenary": 623672171, + "Guest_Shadow-WebWraith": 810956416, + "Guest_Shadow-WebHaunt": 500586883, + "Guest_CelestianPartisan": 633346892, + "Guest_CelestianDefender": 482102727, + "Guest_ThraleBonestriker": 1172972733, + "Guest_VorgenSoulbreaker": 1935693246, + "Guest_ServusBloodsword": 1703995647, + "Guest_QueenCalypso": 845803519, + "Guest_BlueBart": 77043390, + "Guest_KarolakNightspinner": 1008737316, + "Guest_ArachtusDuskweb": 1787750209, + "Guest_ZhalarStarcloud": 1453644105, + "Guest_NarallorNightborn": 1963363700, + "Guest_SelwynSkywatcher": 1413136893, + "Guest_OsseusNightreaver": 306827003, + "Guest_IrateBanshee": 865143109, + "Guest_FuriousHowler": 1607252558, + "Guest_CryingSpirit": 1559074820, + "Guest_UndeadDraconian": 169249571, + "Guest_ReanimatedDraconian": 247067807, + "Guest_GhastlySlave": 80127661, + "Guest_BoundSpecter": 369706568, + "Guest_NecroticHaunter": 1714841563, + "Guest_LoathsomeCreeper": 1087245229, + "Guest_FleshrotRetriever": 1925148031, + "Guest_BarbarianSpirit": 2112552732, + "Guest_BeghastionCrowcaller": 586628832, + "Guest_BeghastionFieldburner": 1650751959, + "Guest_BoneWarrior": 76802026, + "Guest_FleshlessSentry": 708431820, + "Guest_PirateRavager": 945157059, + "Guest_RottenScallywag": 974666855, + "Guest_ArmoredBonewalker": 1444568072, + "Guest_UndeadWizard": 1622435563, + "Guest_SoulSearcher": 2094392941, + "Guest_DecayingBlackguard": 412324062, + "Guest_FoulReaper": 919877614, + "Guest_NightShadow": 1675932226, + "Guest_MotleyCrew": 653779218, + "Guest_OrinGrimcaster": 472649066, + "Guest_GhostofSylviaDrake": 218332449, + "Guest_VikaMarkmaker": 1145181168, + "Guest_VasekAshweaver": 1001434369, + "Guest_FireWraith": 1027720368, + "Guest_HungrySoul": 1722435576, + "Guest_FrostBones": 456145606, + "Guest_SnowSkull": 835837850, + "Guest_WinterSkull": 1556601065, + "Guest_LothinDoombringer": 860995070, + "Guest_MimirWinterbane": 1111898070, + "Guest_KulgrimSoulsunder": 278037985, + "Guest_HitojiniDeathcaster": 1144499043, + "Guest_GaikotsuSkeleton": 1113949902, + "Guest_PhantomAce": 1917639347, + "Guest_PhantomGlider": 849918336, + "Guest_Krokomummy": 857773886, + "Guest_NiriniAncientGuard": 359313880, + "Guest_NiriniFireSpirit": 1863811476, + "Guest_VaultHaunter": 197723476, + "Guest_VigilantDefender": 171276829, + "Guest_WanderingAhnicSpirit": 1702865088, + "Guest_ForgottenDjeseritSoul": 1170568256, + "Guest_KaranahnDeathfeeder": 1612857711, + "Guest_ShamblingAhnic": 1579129677, + "Guest_RisenDjeserit": 287855500, + "Guest_KaranahnMortifier": 874288111, + "Guest_DjeseritDweller": 2058423665, + "Guest_AhnicStrider": 1776992302, + "Guest_GuardianoftheFang": 1816795524, + "Guest_DefenderoftheFang": 354353604, + "Guest_ProtectoroftheFang": 1290191037, + "Guest_SouloftheCharmed": 422890577, + "Guest_KaranahnKeeper": 77581557, + "Guest_NiriniIntimidator": 677205957, + "Guest_CondemnedSoldier": 449152244, + "Guest_NimahtheWicked": 1298248873, + "Guest_AkoriNirini": 1123159753, + "Guest_SoulScavenger": 892852198, + "Guest_KeeperoftheFang": 1676773499, + "Guest_ItennuSokkwi": 699159408, + "Guest_Tempestra": 334938435, + "Guest_QueenIrisiDjeserit": 1861434100, + "Guest_TheBonekeeper": 1302503449, + "Guest_CryptScavenger": 1893795791, + "Guest_Soulsapper": 1699756010, + "Guest_KingUroAhnic": 1788825731, + "Guest_KingShemetDjeserit": 1350067043, + "Guest_UnholyWraith": 1871146013, + "Guest_PikeSpiritcrusher": 498715531, + "Guest_SpellwritScreamer": 801626733, + "Guest_SpellwritRonin": 1671439174, + "Guest_Shrieker": 805966229, + "Guest_GravePhantom": 731622936, + "Guest_NightmareSpirit": 230709057, + "Guest_VengefulCreeper": 1100197884, + "Guest_TombRoamer": 1277825068, + "Guest_ShieldSkeleton": 1634270152, + "Guest_AgonyWraith": 30384496, + "Guest_IcyGhost": 768353592, + "Guest_Half-wittedSkeleton": 647996362, + "Guest_LazyHenchman": 1329554426, + "Guest_TiredFighter": 210248632, + "Guest_Screecher": 469007005, + "Guest_SeethingWraith": 664913100, + "Guest_ColdConfusion": 1304943934, + "Guest_OssuaryConscript": 1017667150, + "Guest_Ghulture": 1330558655, + "Guest_BodyGuard": 1048581801, + "Guest_SpectralGuardian": 422805602, + "Guest_VaultConscript": 1388398065, + "Guest_FootPatrol": 1692393321, + "Guest_ArmedGuard": 2045920536, + "Guest_Chilly": 1764665905, + "Guest_Achey": 973370519, + "Guest_Sneezy": 1769440773, + "Guest_Cough": 1170200073, + "Guest_Shadowbones": 1316133167, + "Guest_ForgottenConscript": 1466348281, + "Guest_BarracksGuardian": 236603440, + "Guest_CryptConscript": 314755436, + "Guest_DurvishSeeker": 1825622267, + "Guest_MedicineMode": 167015574, + "Guest_Myriarch2": 593881680, + "Guest_Myriarch3": 593881616, + "Guest_MyriarchEphialtes": 773531895, + "Guest_MotherGhulture": 1585201915, + "Guest_CaptainCosrow": 727107332, + "Guest_VizierRafaj": 214040637, + "Guest_DarkmoorSerf": 1522169114, + "Guest_DarkmoorSquire": 1822567109, + "Guest_ScarletWampyr": 1683954247, + "Guest_DraconianRevenant": 741497298, + "Guest_DraconianEidolon": 107733297, + "Guest_AnguishedWraith": 1078602022, + "Guest_DraconianPyromancer": 729577007, + "Guest_DraconianThaumaturge": 189734361, + "Guest_DraconianDiviner": 472633746, + "Guest_DraconianConjurer": 1824962835, + "Guest_DraconianTheurgist": 1828628416, + "Guest_DraconianNecromancer": 175364324, + "Guest_DraconianSorcerer": 1262893339, + "Guest_SirBlackwater": 366308464, + "Guest_AkhtangWormCrawl": 1589032404, + "Guest_SpiritofDarkmoor": 579455915, + "Guest_ShanevonShane": 2096517522, + "Guest_YevgenyNightCreeper": 1535282881, + "Guest_MalistairetheUndying": 824508513, + "Guest_Bunferatu": 1015806005, + "Guest_CountBelaBlackSleep": 761647679, + "Guest_DeathSoldier": 1715141574, + "Guest_SorrowWhisperer": 556532003, + "Guest_GriefSpectre": 1425488559, + "Guest_HowlingShade": 631460247, + "Guest_WalkingDead": 318527090, + "Guest_Akuji": 977635799, + "Guest_TorturedKakedaSoul": 1716874833, + "Guest_KakedaSpiritSlave": 1814699344, + "Guest_DishonoredSamoorai": 320085744, + "Guest_CursedRonin": 1204095686, + "Guest_TomugawatheEvil": 166125424, + "Guest_OyotomitheDefiler": 1672714483, + "Guest_Fushiko": 801492770, + "Guest_BrokenLandGuardian": 294671991, + "Guest_ShatteredSkyGuardian": 746681463, + "Guest_SunderedSeamGuardian": 1439618652, + "Guest_BrokenLandSpirit": 860105895, + "Guest_ShatteredSkySpirit": 2104112380, + "Guest_SunderedSeamSpirit": 69572311, + "Guest_LostSoul": 204361577, + "Guest_RottingFodder": 308249734, + "Guest_HauntedMinion": 689597338, + "Guest_FieldGuard": 1175228991, + "Guest_SkeletalWarrior": 778393993, + "Guest_SkeletalPirate": 1476730220, + "Guest_WanderingSpecter": 126188449, + "Guest_LivingScarecrow": 1442943145, + "Guest_FrostPhantom": 1809776664, + "Guest_FireShrieker": 173332719, + "Guest_CryptCrawler": 2118799272, + "Guest_ViridianSpecter": 383149977, + "Guest_ArgentClatterer": 525414714, + "Guest_SwimmingSpecter": 1494025094, + "Guest_ScarletScreamer": 1689589811, + "Guest_BoneDigger": 1351421123, + "Guest_HowlingGhost": 664019391, + "Guest_SkeletalSoldier": 750463116, + "Guest_MaidenofHate": 444442868, + "Guest_SkeletalRetainer": 1409032775, + "Guest_SoulHunter": 1900267551, + "Guest_MidnightShuffler": 1991052065, + "Guest_PlaguedSoul": 419071561, + "Guest_HauntingBanshee": 345837052, + "Guest_SimontheSayer": 1352807820, + "Guest_TheHarvestLord": 1923575206, + "Guest_LadyBlackhope": 1403431623, + "Guest_SergeantSkullsplitter": 898737831, + "Guest_Foulgaze": 2063419769, + "Guest_Wormguts": 788697519, + "Guest_Rattlebones": 125602919, + "Guest_Paulson": 1112716921, + "Guest_Grubb": 1167554274, + "Guest_Norton": 581021964, + "Guest_NightStalker": 1447653309, + "Guest_AddereTimeo": 1491420030, + "Guest_TheReaper": 1526369733, + "Guest_AngrusHollowsoul": 1427862805, + "Guest_OrrickNightglider": 951078615, + "Guest_SteelSentinel": 885250894, + "Guest_Shadow-WebSoldier": 2014925398, + "Guest_LostCeleste": 1725301830, + "Guest_CapnNigelSkullcrack": 1665439970, + "Guest_HaulAwayJoe": 1075985331, + "Guest_OldMaui": 15300840, + "Guest_LordAgue": 140791419, + "Guest_MelweenaSmite": 432188189, + "Guest_HalloweenTrickster": 2043736417, + "Guest_PumpkinHead": 1098332105, + "Guest_BaronMordecai": 817370918, + "Guest_KaimaniteMummy": 1332671420, + "Guest_VeggieRevanant": 928504192, + "Guest_BloodBat": 76467389, + "Guest_DeadBeets": 157829578, + "Guest_Desparagus": 1130644076, + "Guest_MeanestFly-Trap": 1652898868, + "Guest_Nosferabbit": 1021159436, + "Guest_ThrallofSothmekhet": 330780177, + "Guest_VileApparition": 426627869, + "Guest_SoulServant": 1183110886, + "Guest_SoulKeeper": 917518313, + "Guest_AdmiralBontau": 2032168402, + "Guest_DeathWhisperer": 3814952, + "Mount_RollerBlades": 111369373, + "Guest_BaneWyrm": 147033576, + "Guest_BlackDragon": 939469656, + "Guest_DragonSpawn": 1829803517, + "Guest_Fire-SpitterSpawn": 616624489, + "Guest_CaoranachtheFire-Spitter": 323513000, + "Guest_Jabberwock": 1552492834, + "Guest_CatalantheLightningLizard": 1155778705, + "Guest_WhiteDragon": 2009449331, + "Guest_WinterWyrm": 478925069, + "Guest_WyrmStatue": 2119216210, + "Guest_AlgidWyrm": 1309546482, + "Guest_BruleeSucre": 390936202, + "Guest_HebitohoWyrmling": 1682026810, + "Guest_Shadowwock": 505539184, + "Guest_EirikurAxebreaker": 1361453552, + "Guest_WarWyrm": 1124740742, + "Guest_StrayFireflier": 610979811, + "Guest_BurningFlamewing": 2041225130, + "Guest_FeralLavaling": 371483057, + "Guest_SplinterWing": 923421333, + "Guest_ChanticoBlueAir": 1572441903, + "Guest_CopperWingGuard": 302783602, + "Guest_ObsidianBeak": 2016227452, + "Guest_CaquixNineShadows": 2070101060, + "Guest_LustrousTlalocan": 1201030473, + "Guest_SeedThief": 263211181, + "Guest_PopZotzUnluckyDay": 1416773489, + "Guest_NezathePoet": 1905861376, + "Guest_MazenStingerBee": 1642023393, + "Guest_ImperialJusticePayne": 1285679745, + "Guest_AssistantWardenPorfiry": 22099059, + "Guest_MarshalKamensky": 524669730, + "Guest_WardenVissarovich": 882556823, + "Guest_GulagGuard": 100744159, + "Guest_CaptainKravchuck": 690830770, + "Guest_ImperialGuard": 346803640, + "Guest_IronPaw": 1797329688, + "Guest_TundarianEnforcer": 134256836, + "Guest_Ivan": 996220221, + "Guest_ColonelOrlov": 1381254189, + "Guest_IronPawIntakeCaptain": 2099184835, + "Guest_SolitaryWarden": 1503529566, + "Guest_CaptainZubkov": 793725366, + "Guest_SergeantBobrik": 722182485, + "Guest_WailingWraith": 946976407, + "EggChick": 1452316301, + "BunnyMallow": 518233330, + "Guest_ThunderHornZombie": 1007920040, + "Guest_SmokingMirrorZombie": 340971759, + "Guest_ShamblingZombie": 1920485146, + "Guest_MoonSkullZombie": 809249764, + "Guest_DeathlessStormHorn": 812397213, + "Guest_MozarTurtleHunter": 561749043, + "Guest_GuillermoShatterer": 499565054, + "Guest_XiuhcoatlBarbedTooth": 1719245305, + "Guest_AzcalFireAnt": 1281366337, + "Guest_TlotzinMoonThief": 407285761, + "Guest_PocaCruelStar": 1117353085, + "Guest_ThunderHornGhoul": 597878999, + "Guest_TezomocStoneSinger": 733511940, + "Guest_EzhuaBadTaste": 632779219, + "Guest_UacalxochitlBloodEye": 1614856226, + "Guest_WanadiBlackSky": 349829749, + "Guest_ElMarrow": 483880636, + "Guest_GrimCalaca": 1534029144, + "Guest_XipeFlayedOne": 1343577398, + "Guest_MotecumaDeathMask": 1782393717, + "Guest_EkeChuah": 13416770, + "Guest_AnacaonaBlackSnake": 1543344897, + "Guest_SmokingMirrorWight": 776452983, + "Guest_Tolkemec": 217428080, + "Mount_Fox": 77199428, + "PP_OwlProtege": 268847192, + "Mount_SharkSki": 331374103, + "PP_Dolphin": 1662291612, + "Mount_CastSymbol_D": 1134428045, + "Mount_CastSymbol_E": 1136525197, + "Mount_CastSymbol_F": 1138622349, + "Mount_CastSymbol_G": 1140719501, + "Mount_CastSymbol_A": 1128136589, + "Mount_CastSymbol_B": 1130233741, + "Mount_CastSymbol_C": 1132330893, + "Guest_LionSpectralGuardian": 1791543691, + "Guest_KillmareSpiritwalker": 1818928165, + "Guest_ZebraSpectralGuardian": 815933596, + "Guest_GorillaSpectralGuardian": 1635182119, + "Guest_IklawGhostWarrior": 373465545, + "Guest_BwanaShadowriver": 1307628747, + "Guest_ElephantSpectralGuardian": 1579402208, + "Guest_ZangaZebu": 1218173119, + "Guest_GrumishGreataxe": 486953385, + "PP_GlowFairy_A": 2028856748, + "Guest_RestlessSoldier": 1142701763, + "Guest_WanderingWizard": 209518514, + "Guest_ColonelIvanenko": 399169035, + "Guest_DetollitheDestroyer": 655767295, + "Guest_Jawniak": 1791298433, + "Guest_Tajniak": 356182394, + "Guest_Ygor": 996316081, + "Guest_KyaniteLancer": 2136703656, + "Guest_VestaShadowmark": 1846747836, + "Guest_ZoraSteelwielder": 1186470644, + "Guest_AndorBristleback": 1949884743, + "Guest_GalliumPaladin": 1812340868, + "Guest_GalliumFootman": 1295203112, + "Guest_GalliumShardtrooper": 1210699836, + "Guest_GalliumJuggernaut": 3527584, + "Guest_VladimirDarkflame": 1575322237, + "Guest_KyaniteLieutenant": 561528977, + "Guest_DrusillaMorningbane": 155837810, + "Guest_KyaniteValkyrie": 53242136, + "Transformation_20Q_SherlockBones": 1112674320, + "Guest_DevoraShadowcrown": 1813459117, + "Guest_YoualaNightDrinker": 881289828, + "Guest_Pendragon": 715669945, + "Guest_CelestianRevenant": 515730327, + "Guest_SoullessServant": 1505662730, + "Guest_SpiritServant": 104517373, + "Guest_SoulSerf": 1188214406, + "Guest_ServileSoul": 871844607, + "Guest_SkeletalCorsair": 239414410, + "Guest_RottedFodder": 1301186193, + "Guest_ScarletScreecher": 600457915, + "PP_FrankBunnyBride_A": 974707030, + "Guest_BastillaGravewynd": 2100015237, + "Guest_VilaraMoonwraith": 2067986693, + "Guest_YngvarSharptooth": 1783361972, + "Guest_TroubledWarrior": 1569033392, + "Guest_VeggieRevanant2": 928503904, + "Guest_VeggieRevanant3": 928503888, + "Guest_VeggieRevanant4": 928503872, + "Guest_VeggieRevanant5": 928503856, + "Guest_AncientQhatWarrior": 1564521104, + "Guest_EmperorPaleolo": 2079384347, + "Guest_SpiritofIntolerance": 1627658048, + "Guest_SpiritofInquiry": 1320544891, + "Guest_FirstGuardian": 1982227776, + "Guest_FallenMerc": 225926286, + "Guest_NightShadow2": 1638183490, + "Guest_NightShadow3": 1636086338, + "Guest_NightShadow2-2": 1436856907, + "Guest_NightShadow3-2": 1434759755, + "Guest_NightShadow4-2": 1432662603, + "Guest_NightShadow5-2": 1430565451, + "Guest_NightShadow6-2": 1428468299, + "Guest_NightShadow7-2": 1426371147, + "Guest_FirstScythe": 738854032, + "Guest_GreyMantisCaptain": 860186057, + "Guest_GreyMantisHunter": 1239274377, + "Guest_Atlach-Leng": 836136649, + "Guest_PetrovGloomstrider": 2045783873, + "Guest_NauyotolDownIntheHole": 1134251106, + "Guest_SandorSpearcaller": 1351072377, + "Guest_MavraFlamewing": 1477685600, + "Guest_Scaldling": 208751819, + "Guest_WoebegoneWraith": 1166488705, + "Guest_BorisBlackrock": 1365399915, + "Guest_KatiaFirewinter": 521255834, + "Guest_ValerikBrightsword": 1244055782, + "Guest_RurikFlamesoul": 1962726850, + "Guest_IonaPyrelance": 722266491, + "Guest_DarkPoltergeist": 818162178, + "Guest_TheCollector": 1772287612, + "Guest_ViktorSnowcrusher": 1028387381, + "Guest_ValeskaRedwind": 19316351, + "Guest_ScarrikGallowgaunt": 105397333, + "Guest_Neberyx": 1453883041, + "Guest_AsrikWidebelt": 401936422, + "Guest_GothricHonorbound": 750072340, + "Guest_HalfangBristlecrown": 618779562, + "Guest_OsvudFleetpaw": 1023466459, + "PP_PufferFish_A": 1578606029, + "Guest_OzelUnderwaterCat": 1033669302, + "PP_BabyGreenMan_A": 910025246, + "PP_SchoolTurtle_A": 1012620678, + "PP_DarkBalloon_A": 1229308566, + "MT_JetsamCopter": 92127678, + "Mount_4P_DarkClownCar": 420246262, + "MNT_BalloonsBunch": 2000358474, + "Guest_TempleGuardian": 632574316, + "Guest_TemplePhantom": 1701097840, + "Guest_MahonStarsearcher": 1549093341, + "Guest_LostKnight": 858980994, + "Guest_AnguishedWoodman": 174606918, + "Guest_TormentedTreant": 294050331, + "Guest_WildfireTreant": 1902129818, + "Guest_BlightedYaxche": 679097088, + "Guest_Junglethorn": 1734561424, + "Guest_Tangleroot": 2027061721, + "Guest_BlightedFreerooter": 1109803061, + "Guest_Winterbranch": 1170787806, + "Guest_DecayingBogwalker": 1338670789, + "Guest_BrownwoodTormentor": 1655181754, + "Guest_Wildroot": 1839747182, + "Guest_Ironsplinter": 668295157, + "Guest_Frostbranch": 75974631, + "Guest_KyoukonteiTreant": 474446232, + "Guest_BrokenStumps": 414724364, + "Guest_WordlessWoodsmen": 1813881830, + "Guest_DesiccatedTreebeard": 1826942903, + "Guest_ShadowoftheLand": 1612385317, + "Guest_TreeRoot": 1406633546, + "Guest_BefouledWoodwalker": 1517919498, + "Guest_ConfusedForestWarrior": 750805985, + "Guest_CrazedForestSpirit": 1007960507, + "Guest_Oakheart": 1158293719, + "Guest_SnowTreant": 1028620035, + "Guest_Snowbeard": 1997921701, + "Guest_BarkskinTreant": 2143957812, + "Guest_RazorleafTreant": 2133159197, + "Guest_CarrionFlowerMan": 1120698936, + "Guest_Kurokage": 355651925, + "Guest_LacombeStrawHouse": 568809873, + "Guest_BerkshireStickHouse": 1932133405, + "Guest_TamworthBrickHouse": 894027634, + "Guest_RustyTinderSpark": 1237916230, + "Guest_CoraWinterBranch": 1901918989, + "Guest_GrambleGoldRook": 1986988546, + "Guest_PiperStormTree": 1109520133, + "Guest_Hanadzura": 124838500, + "Guest_Kuchisaki": 2084188681, + "Guest_Kaizoku": 807430784, + "Guest_JaxonLastRites": 1653711119, + "Guest_SeijunKiller": 657647155, + "Guest_ZarichiTarakata": 1129212566, + "Guest_BladelessRonin": 1577395797, + "Guest_SanzokuOutlaw": 1682888807, + "Guest_SanzokuBandit": 1766198653, + "Guest_KakedaPainbringer": 1260119278, + "Guest_KakedaStalker": 367458449, + "Guest_KakedaShadow": 1604499626, + "Guest_KakedaSoulcrusher": 1961168112, + "Guest_ImitsuPlaguemaster": 1361539025, + "Guest_ImitsuDefouler": 1299791045, + "Guest_ImitsuPunisher": 234819300, + "Guest_StudentofKhai": 249757647, + "Guest_OtomoBattlemage": 918160114, + "Guest_OtomoCourier": 1373253378, + "Guest_OtomoSupplyRunner": 1580070577, + "Guest_OtomoScout": 1814051082, + "Guest_OtomoWrestler": 1053571230, + "Guest_OtomoFury": 111319603, + "Guest_Hyottoko": 307080225, + "Guest_Usunoki": 1881339626, + "Guest_Kagemoosha": 1842766119, + "Guest_UdoJin-e": 850816224, + "Guest_TakedaKanryu": 536087422, + "Guest_Tamauji": 818613882, + "Guest_Jikiru": 794167355, + "Guest_Nomoonaga": 849534658, + "Guest_Aiuchi": 515942855, + "Guest_Kurogaso": 1426248002, + "Guest_Ideyoshi": 1814038213, + "Guest_Koto": 1151260427, + "Guest_Usegi": 977549586, + "Guest_Kanago": 1644367227, + "Guest_Kyuto": 1168225979, + "Guest_Haru": 2070048389, + "Guest_Ashikata": 1523446928, + "Guest_Katsumori": 1823914597, + "Guest_Hingen": 1567896261, + "Guest_Yakedo": 502298497, + "Guest_Do-Daga": 1239945714, + "Guest_Maito": 979260804, + "Guest_TonkatsuThug": 1758658397, + "Guest_GobbloreanGuard": 1286210991, + "Guest_BabblingMeints": 413418139, + "Guest_PrinceGobblestone": 1813171676, + "Guest_GobblerMuncher": 1517159487, + "Guest_GobblerGorger": 130736772, + "Guest_GobblerScouter": 1509427587, + "Guest_GobblerGlutton": 1912199781, + "Guest_GobblerScavenger": 136586791, + "Guest_BaronGreebly": 1028182200, + "Guest_BaronRotunda": 457132907, + "PP_DeathMimic": 1811942047, + "Guest_GreenMan": 1126663802, + "Guest_ForestGrump": 1602350320, + "Guest_ErvintheBarbarian": 1671762776, + "Guest_RazortuskWarrior": 1109994549, + "Guest_RazortuskBrawler": 732265321, + "Guest_SplithoofRager": 1922134329, + "Guest_TuskedRaider": 1920114147, + "Guest_SviniBeserker": 1146317608, + "Guest_SviniReaver": 216717251, + "Guest_Shattertusk": 1191456730, + "Guest_SplithoofBarbarian": 296671728, + "Guest_Bloodseeker": 2086598239, + "Guest_Scarsnout": 1831766077, + "Guest_MasterTonkatsu": 1783298894, + "Guest_Grisletusk": 657393295, + "Guest_SplithoofBloodguard": 488382274, + "Guest_BristlehideRaider": 237078958, + "Guest_Gullin": 1656401882, + "Guest_ForestNymph": 812055814, + "Guest_SassafrasMan": 1327049788, + "Guest_RandolfSpellshine": 108808620, + "Guest_BleysFlamerender": 434070106, + "Transformation_Khan": 1398327634, + "Transformation_TheBat": 1675113521, + "MNT_DireWolf": 845578449, + "MNT_YuleMule": 1976182058, + "MNT_LightBlades": 829118450, + "MNT_FlyingSquid": 1573132252, + "PP_Globulin": 467801224, + "PP_BeastBaby": 1807874692, + "PP_SaniBot": 670845902, + "Mount_SwarmSand": 1277669407, + "Guest_Nodnarb": 211478288, + "Guest_LordBramble": 1118781162, + "Guest_Yogash": 506264561, + "Guest_Marcio": 499428996, + "Guest_Procyon": 1115376865, + "Guest_Thunderfin": 2029218563, + "Guest_ArkynMoonblade": 1152775206, + "Guest_CreeCurdWright": 1714953095, + "Guest_DeerMouseRevenant": 315064435, + "Guest_ElanaDarksun": 837982094, + "Guest_KingAlricFateSailor": 1934591130, + "Guest_LaughingCalaca": 984492527, + "Guest_WraithKnight": 620484548, + "Guest_FieryEchoofApep": 484636593, + "Guest_FrostyEchoofApep": 171933154, + "Guest_FalseEchoofApep": 479387377, + "Guest_ChargedEchoofApep": 1229406800, + "Guest_ShrowdengersQhat": 101563303, + "Guest_Scrollkeeper": 643219293, + "Guest_TerrorHound": 753341570, + "Guest_CondemnedMander": 445370758, + "Mnt_SnowStorm": 1491572670, + "Mount_ChimneySweeper": 378571534, + "MNT_PineappleCandyCane": 1630795796, + "Guest_TyphonDustwind": 740849673, + "MNT_StickHorse": 216654744, + "MimicTemplate": 1461219184, + "MNT_Ball_N_Chain": 289720920, + "PP_PeaceDove_A": 1785119671, + "Mount_Gyrocycle": 1495008048, + "PP_BattleMageDragon_A": 1864696711, + "MNT_BattleBeast": 1304449286, + "MNT_SmokeTrails": 387873030, + "Mount_FriendshipHare": 677127330, + "MNT_ButterflySwarm": 383602683, + "PP_EggChick_B": 1959154042, + "MNT_Unicorn": 562210585, + "PP_StuffedUnicorn": 1731641773, + "MNT_ParadeTruck": 2026348978, + "MNT_ParadeTruckXmas": 1017864627, + "MNT_AutumnLeafSwarm": 1540002279, + "PP_GingerbreadMan": 1796172229, + "PP_DecadeDragon": 1819398630, + "MNT_StageShip": 829852992, + "PP_DramaLlama": 255896529, + "PP_HallMinotaur_A": 1492017563, + "Guest_MacDeath": 1526226705, + "Guest_MacDeathUnderstudy": 1731752647, + "Guest_MacLifeUnderstudy": 257466641, + "Guest_MacStormUnderstudy": 8295117, + "MNT_Pantera": 1135198, + "MNT_StagLight": 1908778048, + "MNT_GiantSpider": 1247185021, + "MNT_StagEvil": 872303931, + "PP_BaskHound": 1093866594, + "PP_Marionette": 1688299938, + "PP_Marionette_B": 1688297824, + "Guest_Izft": 996301405, + "Guest_SapotisMinion": 1625665891, + "Guest_CrazedSlave": 1473233468, + "Guest_CharmedSlave": 803043667, + "Guest_EnsorcelledSlave": 40920285, + "Guest_HallServant": 2038116460, + "Guest_SiathePerceiver": 1235571913, + "Guest_Kiwu": 1151177787, + "Guest_NightImp": 1051843424, + "Guest_EvilTrickster": 1035477123, + "Guest_DeepWoodsImp": 1502444054, + "Guest_ForestPest": 802235713, + "Guest_TaintedForestImp": 1030343985, + "Guest_Youkai": 518367729, + "Guest_CarthaginianElephantWarrior": 776293919, + "Guest_IdrisBeast-Taker": 106759521, + "Guest_MikaSkarka": 237956516, + "Guest_Belloq": 757247833, + "Guest_GurtokPiercer": 549466122, + "Guest_GurtokFirebender": 817966523, + "Guest_GurtokDemon": 544070162, + "Guest_GeneralFiretusk": 2073037770, + "Guest_GurtokBarrierDemon": 44657563, + "Guest_BlacktuskShaman": 1009070925, + "Guest_FireDemon": 158367196, + "Guest_DeathOni": 1916642000, + "Guest_JadeOni": 1289517185, + "Guest_PlagueOni": 1464586443, + "Guest_WarOni": 1630196094, + "Guest_BrokenLandMammoth": 1587008312, + "Guest_SunderedSeamMammoth": 1272698721, + "Guest_BullyMammoth": 170705927, + "Guest_Bullhemoth": 146998717, + "Guest_Kogasha": 1909654543, + "Guest_MusuthBerserker": 1741298129, + "Guest_BlackTuskCultist": 1771575961, + "Guest_AksilBlacktrunk": 1253596409, + "Guest_LongdreamerShaman": 1521283133, + "Guest_MuratGreyeyes": 1296814314, + "Guest_ElephantSoldier": 1443670145, + "Guest_DarajaniGuard": 1597288495, + "Guest_Loremaster": 1792470809, + "Guest_Pork": 2069999347, + "Guest_Beans": 97706585, + "MNT_Ox": 1292937747, + "PP_PropellerSquirrel": 1657443894, + "Guest_RasikPridefall": 97921485, + "Guest_AmedrasLightstep": 1818417025, + "MNT_SmokeTrails_Balance": 1358150715, + "MNT_SmokeTrails_Fire": 702971609, + "MNT_SmokeTrails_Ice": 190218501, + "MNT_SmokeTrails_Life": 2045542105, + "MNT_SmokeTrails_Myth": 1276281121, + "MNT_SmokeTrails_Storm": 564954622, + "Guest_Bellosh": 1407013027, + "Guest_AcampiReedfist": 2076527733, + "Guest_AgnettaBroadblade": 14864960, + "Guest_FrostheartRaider": 1574787221, + "Guest_JordaSwordbearer": 1627071850, + "Guest_KasaiBaku": 1153107369, + "Guest_ZoraimeiHelephant": 1002482606, + "Guest_ConscriptedMander": 43811125, + "Firecat_Decade": 409516955, + "MNT_BatGlider": 2086258491, + "Transformation_PlayerHomework": 673389670, + "Transformation_PlayerAttendance": 422287307, + "Transformation_PlayerLecture": 2035625874, + "Transformation_PlayerPopQuiz": 483367038, + "MNT_GingerbreadHorse": 1369242781, + "MNT_NimbariChariot": 1251740392, + "PP_NimbariDog": 1235126828, + "Transformation_PlayerGrandma": 1128332272, + "Transformation_PlayerScionA": 33862367, + "PP_Mushroom": 1568942158, + "MNT_Scooter": 1148167046, + "MNT_Scooter_B": 2079302532, + "MNT_Scooter_C": 1810867076, + "MNT_Scooter_D": 468689796, + "MNT_IceCycle": 415797788, + "Transformation_PlayerScionA02": 33921759, + "Guest_FearoftheFuture": 947210229, + "Guest_FearofGremlins": 405857384, + "Guest_RootGuardian": 922940845, + "Guest_VineThrasher": 172546427, + "Guest_BlightWalker": 1438155154, + "Guest_BriarScourge": 615681851, + "Guest_DreamJabberwock": 907754098, + "Guest_DreamBelloq": 990352002, + "Guest_Voltergeist": 1558128068, + "Guest_SpecialBranch": 1927849418, + "Guest_MutantBriar": 805892802, + "Guest_FeralBriar": 883790223, + "Guest_MaizeMonster": 688905764, + "Guest_DreamShadowwock": 1432458248, + "Mount_Heartboard": 1421972759, + "PP_ChocoBunny": 324797859, + "Mount-PogoFlower": 906659501, + "MNT_AethyrCloud": 1586061078, + "MNT_Fangle": 7846854, + "Guest_StarfallSpider": 1177620831, + "Guest_AshSpider": 1588502553, + "Guest_CorruptedWeaver": 38937211, + "Guest_CrystalCrawler": 1197980149, + "Guest_ShimmerWidow": 1300740128, + "Guest_FacetedSpikespinner": 1939719331, + "Guest_CrystallineQueen": 1999282256, + "Guest_AncientCrystalweaver": 1409608801, + "Guest_FangtoothLavaspinner": 1538042104, + "Guest_VenomousHeatseeker": 1234682482, + "Guest_FireweaveRockbiter": 300743778, + "Guest_MonkeySpider": 754090007, + "Guest_CryptSpider": 1545405304, + "Guest_CommonHouseSpider": 613486002, + "Guest_ArachnaMagnaMagus": 825817937, + "Guest_ArachnaSoldier": 270978709, + "Guest_Gnissa": 1699826178, + "Guest_WebwoodScuttler": 1728611075, + "Guest_SandSpider": 61789007, + "Guest_WebwoodCreeper": 1013382584, + "Guest_Skathi": 1631429165, + "Guest_ArchmagusLorcan": 321146960, + "Guest_CrawleroftheMist": 2076696304, + "Guest_PaintedSpider": 1482115552, + "Guest_GiantSpider": 1545526191, + "Guest_CaveCrawler": 2101587667, + "Guest_RattleCatcher": 1472707326, + "Guest_TrapdoorSpider": 1321643694, + "Guest_RockClinger": 1304266411, + "Guest_InquisitorXimenez": 1053483090, + "Guest_ElderMagus": 1017836836, + "Guest_WardenBenthamic": 18807199, + "Guest_SpiderArchmagus": 387645558, + "Guest_SpiderAdept": 2094873407, + "Guest_InterrogatorRentenius": 1245984179, + "Guest_WarpedWeaver": 495882677, + "Guest_ArachnaSkinner": 281864085, + "Guest_SkinnerConscript": 2028526453, + "Guest_ArachnaGladiator": 2492046, + "Guest_LorcanInitiate": 353311753, + "Guest_Serket": 1871335773, + "Guest_IceWeaver": 2063216026, + "Guest_SpiritSpinner": 525666327, + "Guest_MysteriousCrawler": 218352756, + "Guest_BlackWidow": 1909331619, + "Guest_BrownRecluse": 1146386275, + "Guest_Creeper": 1197442790, + "Guest_GearSpinner": 67020478, + "Guest_Clinker": 1194519062, + "Guest_Clanker": 1194517014, + "Guest_GrandfatherSpider": 1330981335, + "Guest_Spiderling": 1400274461, + "Guest_ManekiWebWalker": 888348786, + "Guest_KoganiDeathCrawler": 276010604, + "Guest_CheliceranCrawler": 1169176517, + "Guest_ArachniteCreeper": 1850534774, + "Guest_ChelicaranStalker": 2057291848, + "Guest_HornedMonkeySpider": 1301514577, + "Guest_GreyOgreSpider": 1533774471, + "Guest_StarburstSpider": 698029451, + "Guest_PaintedCaveMonster": 601315479, + "Guest_RubbleRouser": 220785666, + "Guest_EarthElemental": 435260049, + "Guest_SharpshardWarrior": 1403237237, + "Guest_Firevein": 1220046430, + "Guest_Blackblade": 458130537, + "Guest_VengefulFireheart": 563205004, + "Guest_FirerockStomper": 608552855, + "Guest_BlackrockGuardian": 1663799582, + "Guest_ConfusedSentry": 24655510, + "Guest_SilverSentinel": 1090673683, + "Guest_SilverServant": 84560693, + "Guest_GiantHomunculus": 456098557, + "Guest_PropertyMaster": 229101764, + "Guest_VaultProtector": 185568207, + "Guest_PlatedDefender": 79324363, + "Guest_Avalanche": 761613547, + "Guest_RockReaver": 919912933, + "Guest_Frostmantle": 856308090, + "Guest_GlacierWalker": 131215932, + "Guest_SandBehemoth": 272513357, + "Guest_RunedAnnihilator": 121339936, + "Guest_RunedDevestator": 1611071181, + "Guest_RunedGuardian": 1986312667, + "Guest_CanyonRager": 1123038266, + "Guest_RubbleReaver": 220774678, + "Guest_Boulderbone": 122279242, + "Guest_Nali": 77467516, + "Guest_Gnar": 1151164930, + "Guest_GlacialAvenger": 1181253632, + "Guest_SokkwiKeymaster": 190919624, + "Guest_SandsofTime": 34920273, + "Guest_BladeGolem": 435561523, + "Guest_FrostColossus": 1564686403, + "Guest_IceColossus": 335477257, + "Guest_PollutedEarthWalker": 86045387, + "Guest_CorruptedEarthSpirit": 1135891559, + "Guest_Stonebreaker": 1317905436, + "Guest_StoneElemental": 1715022018, + "Guest_VolcanisGolem": 1904918929, + "Guest_WaterElemental": 1717850987, + "Guest_AshenDeathMonkeySpider": 35356665, + "Guest_DeathMonkeySpider": 1525508507, + "Guest_MotherMonkeySpider": 110317392, + "Guest_DoomMonkey": 1135105500, + "Guest_DreamMorganthe": 907599965, + "Guest_DragonBeetle": 1974635734, + "Guest_SandWalker": 1530843985, + "MNT_PandaMama": 916371162, + "PP_BabyPandas": 778536285, + "PP_FrogPrince": 729975205, + "MNT_PumpkinCarriage": 183672737, + "Mount_Gobbler_B": 1193388729, + "PP_Hamster": 1578040708, + "Guest_Steeleton": 657429968, + "Guest_GoldenWyrm": 311022393, + "MNT_Roc": 1564431869, + "PP_BabyGriffin": 1913686406, + "Transformation_ShadowDPSMob": 936133896, + "Transformation_ShadowTankMob": 305660992, + "Transformation_ShadowHealMob": 356596800, + "Guest_SpiritofIgnorance": 1577360126, + "Guest_FecklessSoul": 519648315, + "Guest_BurnedOutSoul": 312181646, + "Guest_BenightedRevenant": 2131956962, + "Guest_TombLurker": 1901203489, + "Guest_DesertGolem": 543642682, + "Guest_KumoOni": 215822625, + "Guest_SpellwritStalker": 161772776, + "PP_Sun": 1723237840, + "Guest_Leadite": 4480416, + "Mount_FestiveFox": 2125832348, + "PP_FenrisWolf": 1601784680, + "PP_SchoolPiggle": 109782407, + "PP_FenrisWolf_Red": 1597992854, + "PP_FenrisWolf_Teal": 1455058454, + "PP_FenrisWolf_White": 1102186199, + "Transformation_NinjaPig_Fire": 984575055, + "Transformation_BG_RatThief_Myth": 1191155131, + "Transformation_BG_RatThief_Storm": 675891897, + "MNT_Umbrella": 955683437, + "Transformation_BG_Elf_Ice": 1209681129, + "Transformation_BG_Fairy_DarkMinion_Balance": 33521202, + "Transformation_BG_Cyclops_Death": 876023972, + "Transformation_BG_Minotuar_Fire": 1118476387, + "Transformation_BG_WolfWarrior_Storm": 2075594475, + "Transformation_BG_WolfWarrior_Balance": 746159992, + "Transformation_BG_Draconian_Myth": 903606820, + "Transformation_BG_Draconian_Life": 1501291044, + "Transformation_BG_Colossus_Life": 1320377666, + "MNT_DolphinChariot": 102982520, + "MNT_EvilWagon": 685457563, + "MNT_FlyingDutchman": 1176206544, + "PP_SeaHorse": 2024322494, + "PP_EvilTeddy": 1159020925, + "PP_ZombieParrot": 384805107, + "Transformation_BG_Ice_Colossus": 299613211, + "MNT_CarrierBat": 7323333, + "Transformation_BG_Minotaur_MythTempalte": 430330904, + "PP_FeatheredTabby": 452526748, + "Transformation_Detritus01": 1335763402, + "Guest_Metallossus": 335457082, + "MNT_SantaJaws": 464410203, + "MNT_BattleBadger": 532858222, + "Transformation_Shedder01": 2069145892, + "PP_NatureSpirit": 373176286, + "Transformation_Devourer01": 1004421540, + "Guest_TheDevourer": 1591187996, + "Guest_Treeminder": 1093207850, + "Guest_RenegadeDruid": 2087982292, + "Guest_FractalTreeminder": 927174548, + "Guest_UnsettledTreeminder": 486164163, + "Guest_DragonspyreCrusader": 247317280, + "Guest_YoungGreggor": 66068670, + "Guest_GeneralGreyflame": 499924835, + "Guest_OldGreggor": 391726170, + "Guest_PrinceViggor": 853556298, + "Guest_DragonspyreVanguard": 693851565, + "Guest_SilasConviction": 177362659, + "Guest_SilasWeariness": 893431021, + "Guest_SilasRage": 1288904439, + "Guest_SilasDoubt": 1479426285, + "Guest_Lorekeeper": 147779344, + "Guest_FelixPhotomongerIII": 68387506, + "Guest_WarHavox": 1634324022, + "Guest_Mis-assembledSkeleton": 221832082, + "Guest_TreeminderGhost": 200408510, + "Guest_ViggorsDrake": 340449521, + "Guest_BlueNinjaPig": 938539327, + "Guest_RedNinjaPig": 2097962021, + "Guest_OrangeNinjaPig": 625058258, + "Guest_PurpleNinjaPig": 445746449, + "Guest_RitualColossus": 844563319, + "Guest_TinyDragon": 1123127688, + "Guest_RitualSpider": 429827552, + "Guest_RitualDraconian": 837510372, + "Guest_CC_Druid_Warrior_C_01": 55314616, + "Guest_CC_Druid_Wizard_A_01": 1046261169, + "Guest_CC_Druid_Wizard_B_01": 1046244785, + "Guest_CC_Druid_Warrior_A_01": 56363192, + "MNT_Toboggan": 995356805, + "MNT_2P_WickerTreant-001": 2065440944, + "PP_Ratatoskr": 1003497600, + "PP_Trash": 1195047012, + "Guest_CC_Druid_Wizard_D_01": 1046343089, + "MNT_Sunflower": 721091531, + "MNT_Whoopee": 1383311238, + "MNT_Warthog": 8060761, + "PP_ShamRock": 943893325, + "PP_LeapingLeprechaun": 132882517, + "PP_LionCubs": 465759803, + "PP_Tanuki": 670387843, + "MNT_Crane": 433122675, + "MNT_Krokosphinx": 739938754, + "Transformation_BG_Fairy_Life": 1897480818, + "Transformation_LiceDeepSpawnA": 244795720, + "Piggle_Alien": 1761605655, + "PP_JeweledScarab": 620544607, + "Guest_KR_Nymph_DrkMage_D50": 1248526054, + "Guest_KR_Nymph_DrkMage_C50": 1246953190, + "Guest_KR_Nymph_DrkMage_B50": 1247477478, + "Guest_KR_Nymph_DrkMage_A50": 1245904614, + "Guest_EM_Spider_Ash_01": 185724938, + "UFO": 47349, + "PP_Kit10": 326796620, + "PP_Lumi_Tulip": 84119585, + "PP_Lumi_Fern": 117015078, + "PP_Lumi_Violet": 1468797578, + "PP_Lumi_Sunny": 1769236703, + "PP_Lumi_Daisy": 1743454175, + "MNT_CelestianMech": 1238076872, + "MNT_Brontosaurus": 402157167, + "Guest_HG_AKT_Krok_Cyber_A_Balance_25": 1367985604, + "Guest_HG_AKT_Krok_Cyber_A_Balance_50": 1368084932, + "Guest_HG_AKT_Krok_Cyber_A_Balance_75": 1367988676, + "Guest_HG_AKT_Krok_Cyber_A_Balance_100": 1351303620, + "Guest_HG_AKT_Krok_Cyber_A_Balance_130": 1351270852, + "Guest_HG_AKT_Krok_Cyber_A_Fire_25": 976558490, + "Guest_HG_AKT_Krok_Cyber_A_Fire_50": 37034397, + "Guest_HG_AKT_Krok_Cyber_A_Fire_75": 305469850, + "Guest_HG_AKT_Krok_Cyber_A_Fire_100": 573905821, + "Guest_HG_AKT_Krok_Cyber_A_Fire_130": 573905824, + "Guest_HG_AKT_Krok_Cyber_A_Ice_25": 159411377, + "Guest_HG_AKT_Krok_Cyber_A_Ice_50": 541093041, + "Guest_HG_AKT_Krok_Cyber_A_Ice_75": 146828465, + "Guest_HG_AKT_Krok_Cyber_A_Ice_100": 557870241, + "Guest_HG_AKT_Krok_Cyber_A_Ice_130": 960523425, + "Guest_HG_AKT_Krok_Cyber_A_Myth_25": 976187830, + "Guest_HG_AKT_Krok_Cyber_A_Myth_50": 36663729, + "Guest_HG_AKT_Krok_Cyber_A_Myth_75": 305099190, + "Guest_HG_AKT_Krok_Cyber_A_Myth_100": 573535153, + "Guest_HG_AKT_Krok_Cyber_A_Myth_130": 573535156, + "Guest_CL-GolemButler-R9": 780077559, + "Guest_CL-GolemDigger-Boss-R10": 562020288, + "Guest_CL-GolemDigger-R9": 789375095, + "Guest_CL-GolemDigger-Rank8MythBoss-R10": 930527857, + "Guest_CL-GolemWorker-R9-1": 1072815287, + "Guest_CL-FishbotBrown-R9-1": 2006155417, + "Guest_CL-FishbotBrown-R9-2": 395542681, + "Guest_CL-FishbotGold-Boss-R10": 611881707, + "Guest_CL-FishbotGold-R9": 705414492, + "Guest_CL-FishbotYellow-Boss-R10": 23145662, + "Guest_CL-Protector-Black-Boss-R10-2": 679228793, + "Guest_CL-Protector-Gold-R10": 1909636609, + "Guest_CL-Protector-Gold-R9-1": 1909634804, + "Guest_CL-Protector-Gold-R9-2": 1909634932, + "Guest_CL-Protector-Gold-R9-3": 1909635060, + "Guest_CL-Protector-Gold-R9-4": 1909634164, + "Guest_CL-Protector-Purple-R9-Boss": 1889837072, + "Guest_CL-Protector-Purple-R9": 81760161, + "Guest_CL-Protector-Tan-Boss-R10": 912663188, + "Guest_KR_Golem_Worker": 1784607296, + "Guest_Golem-Brass-R7-1": 718939445, + "Guest_Golem-Clockwork-R7": 1161173708, + "Guest_EM_Robot_Batbot_A_01": 1482867950, + "Guest_EM_Robot_Batbot_B_02": 945947886, + "Guest_EM_Robot_Batbot_B_01": 1482818798, + "Guest_EM_Robot_Batbot_B_03": 409076974, + "Guest_EM_Robot_Batbot_B_04": 127793938, + "Guest_EM_Robot_Batbot_B_05": 664664850, + "Guest_EM_Robot_Drone_A_02": 1215188569, + "Guest_EM_Robot_Drone_A_03": 1231965785, + "Guest_EM_Robot_Drone_A_01": 1265520217, + "Guest_EM_Robot_Drone_A_04": 1315851865, + "Guest_EM_Robot_Drone_A_05": 1332629081, + "Guest_EM_Robot_Drone_A_06": 1282297433, + "Guest_EM_Robot_Drone_A_07": 1299074649, + "Guest_EM_Robot_Drone_A_08": 1114525273, + "Guest_EM_Robot_Drone_A_09": 1131302489, + "Guest_EM_Robot_Drone_A_Boss_01": 1960661151, + "Guest_EM_Robot_Drone_A_Boss_02": 1960530079, + "Guest_EM_Robot_Drone_E_01": 1265518169, + "Guest_EM_Robot_Tank_A_01": 1314796420, + "Guest_EM_Robot_Tank_A_02": 1313223556, + "Guest_EM_Robot_Drone_C_02": 1215187545, + "Guest_EM_Robot_Drone_D_03": 1231963225, + "Guest_EM_Robot_Drone_D_01": 1265517657, + "Guest_EM_Robot_Drone_D_02": 1215186009, + "Guest_EM_Robot_Tank_B_01": 1314796468, + "Guest_EM_Robot_Drone_C_01": 1265519193, + "Guest_G14-BP-Golem_Steel_Boss": 2071105129, + "Guest_G14-BP-Golem_Steel_Puzzle": 715790979, + "Guest_Golem-Brass-Elite-L38": 1163662532, + "Guest_Golem-Brass-Elite-L56": 2057562884, + "Guest_Golem-Brass-MBBoss-L48": 1498830732, + "Guest_Golem-Brass-MBBoss-L71": 1498829576, + "Guest_Golem-Brass-MBBoss-L76": 1498828936, + "Guest_Golem-Clockwork-Elite-L54-Metal": 417151527, + "Guest_Golem-Clockwork-Elite-L37": 1961943722, + "Guest_Golem-Clockwork-Elite-L54": 1950147242, + "Guest_Golem-Clockwork-L28": 1561959116, + "Guest_Golem-Clockwork-MBBoss-L37": 973152783, + "Guest_Golem-Clockwork-MBBoss-L69": 1262559759, + "Guest_Golem-Steel-Elite-L39": 1430496717, + "Guest_Golem-Steel-MBBoss-L40": 1229578887, + "Guest_Golem-Steel-MBBoss-L43": 1229579015, + "Guest_Golem-Steel-MBBoss-L50-1": 1231762051, + "Guest_Golem-Steel-MBBoss-L50": 1229578883, + "Guest_Golem-Steel-MBBoss-LXX": 1229583927, + "Guest_Golem-Wood-Elite-L35": 904360756, + "Guest_Golem-Wood-Elite-L37": 1978102580, + "Guest_Golem-Wood-Elite-L50": 1813548236, + "Guest_Golem-Wood-MBBoss-L63": 1392041724, + "Guest_MB-Gauntlet-Golem-Clockwork": 854649045, + "Guest_Spider-Golem-MBBoss-L67": 253352706, + "Guest_Spider-Golem-MBBoss-L96": 253348994, + "Guest_WC-MAW-GasGolem-Minion": 1511013798, + "Guest_WC-MAW-GasGolemLife-Minion": 1306026584, + "Guest_Golem-Steel-L02": 1027229749, + "Guest_Golem-Clockwork-L01": 1409915596, + "Guest_Gauntlet-01-Golem-Steel-Ghost-R8": 402816318, + "Guest_Golem-Wood-L01": 156976035, + "Guest_HG-Clock-ClockworkSpanner-20": 1523370449, + "Guest_HG-Clock-ClockworkSpanner-40": 1523370455, + "Guest_HG-Clock-ClockworkSpanner-60": 1523370453, + "Guest_HG-Clock-ClockworkSpanner-80": 1523370459, + "Guest_HG-Clock-ClockworkSpanner-100": 1523354068, + "Guest_HG-Clock-ClockworkSpanner-120": 1523354004, + "Guest_AQ-Cyclops-Guard": 191361948, + "Guest_AQ_Cyclops_Guard_A_Boss_01": 114747100, + "Guest_CL-Cyclops-Death-R10": 611013866, + "Guest_Cyclops-Death-Boss-R7": 1192370725, + "Guest_Cyclops-Death-Boss-R9": 1192370717, + "Guest_Cyclops-Death-R7": 144593791, + "Guest_GH-Cyclops-Death-R6": 594236619, + "Guest_Cyclops-BlueHelmet-KTBoss-L03": 1720105277, + "Guest_Cyclops-Red-L12": 1816429840, + "Guest_MR_Cyclops02WHelmet_Model_01": 1483732416, + "Guest_Cyclops-Blue-L02": 1633021234, + "Guest_Cyclops-BlueHelmet-WCBoss-L03": 427378332, + "Guest_Cyclops-RedHelmet-WCBoss-L03": 2021269422, + "Guest_HG_Sinbad_Cyclops_25": 911979034, + "Guest_HG_Sinbad_Cyclops_50": 1856261606, + "Guest_HG_Sinbad_Cyclops_75": 861647386, + "Guest_HG_Sinbad_Cyclops_100": 1789152678, + "Guest_HG_Sinbad_Cyclops_130": 178539942, + "Guest_HG_Sinbad_IronSultan_25": 930031152, + "Guest_HG_Sinbad_IronSultan_50": 930051504, + "Guest_HG_Sinbad_IronSultan_75": 930030768, + "Guest_HG_Sinbad_IronSultan_100": 927954864, + "Guest_HG_Sinbad_IronSultan_130": 927942576, + "MNT_SweetRide": 1643297840, + "PP_FrilledDino": 1395342809, + "PP_Celestian": 95679303, + "PP_Sun_Angry": 1955190071, + "PP_Marshmallow": 1220667954, + "MNT_Umbrella_B": 923364822, + "MNT_Tamer": 1050737194, + "PP_BumbleBee_B": 858653433, + "MNT_PunkFlamingo": 1634690818, + "MNT_2P_WoolyRhino": 1395943031, + "PP_Retriever": 72842604, + "PP_Piggle_Caveman": 181356174, + "PP_DecennialDragon": 1396523337, + "MNT_Tiger_Rainbow": 515535412, + "MNT_CarrierGhosts": 1833039309, + "MNT_Sled": 617654308, + "Transformation_BG_RatThief_Death": 30691641, + "Transformation_BG_Elf_Storm": 44352983, + "Transformation_BG_WolfWarrior_Ice": 986304351, + "MNT_CarriorGhost_B": 1768732109, + "MNT_CarriorGhost_C": 1766634957, + "Transformation_BG_Colossus_Fire": 1318803522, + "Transformation_BG_Krok_Balance": 140952965, + "Guest_KM_Gobbler_Skinny_A_11": 773648065, + "Guest_KM_Robot_Candy_A_01": 480414124, + "Guest_KM_Robot_Candy_A_02": 530745772, + "Guest_KM_Robot_Candy_A_03": 513968556, + "Guest_KM_Robot_Candy_A_04": 430082476, + "Guest_KM_Robot_Candy_A_05": 413305260, + "Guest_KM_Gummy_Bear_A_01": 1940905059, + "Guest_KM_Gummy_Bear_D_01": 1940905011, + "Guest_KM_Gummy_Bear_E_01": 1940904995, + "Guest_KM_Gummy_Bear_A_02": 1941429347, + "Guest_KM_Gummy_Bear_D_02": 1941429299, + "Guest_KM_Gummy_Bear_E_02": 1941429283, + "Guest_KM_Gummy_Bear_B_01": 1940905043, + "Guest_KM_Gummy_Bear_B_02": 1941429331, + "Guest_KM_Gummy_Bear_B_03": 1941953619, + "Guest_KM_Gummy_BearHat_A_01": 853226448, + "Guest_KM_Gummy_BearHat_A_02": 853226460, + "Guest_KM_Gummy_Bunny_A_01": 324805042, + "Guest_KM_Gummy_Bunny_C_01": 324806066, + "Guest_KM_Gummy_Bunny_D_01": 324807602, + "Guest_KM_Gummy_Bunny_E_01": 324807090, + "Guest_KM_Gummy_Bunny_F_01": 324808626, + "Guest_KM_Gummy_BunnyUber_A_01": 525565930, + "Guest_KM_Gummy_Worm_A_01": 231044195, + "Guest_KM_Gummy_Worm_B_01": 231044179, + "Guest_KM_Gummy_Worm_C_01": 231044163, + "Guest_KM_Gummy_Worm_A_02": 232617059, + "Guest_KM_Gummy_Worm_B_02": 232617043, + "Guest_KM_Gummy_Worm_C_02": 232617027, + "Guest_KM_Gummy_Bear_F_01": 1940904979, + "Guest_KM_Gummy_Bear_F_02": 1941429267, + "Guest_KM_Gummy_Bunny_C_02": 274474418, + "Guest_KM_Robot_Candy_A_06": 463636908, + "Guest_KM_Alphoi_DarkF_A_01": 475441543, + "Guest_KM_Gobbler_Skinny_A_01": 773648069, + "Guest_KM_Gobbler_Skinny_A_02": 773648197, + "Guest_KM_Gobbler_Skinny_A_03": 773648325, + "Guest_KM_Gobbler_SkinnyF_A_01": 254411012, + "Guest_KM_Gobbler_Skinny_A_04": 773647429, + "Guest_KM_Gobbler_Skinny_A_05": 773647557, + "Guest_KM_Gobbler_Skinny_A_06": 773647685, + "Guest_KM_Gobbler_SkinnyF_A_02": 254423300, + "Guest_KM_Gobbler_Skinny_A_07": 773647813, + "Guest_KM_Gobbler_Skinny_A_08": 773646917, + "Guest_KM_Gobbler_Skinny_A_09": 773647045, + "Guest_KM_Gobbler_SkinnyF_A_03": 254419204, + "Guest_KM_Gobbler_Fat_A_01": 1440595742, + "Guest_KM_Gobbler_Fruit_B_01": 1236446660, + "Guest_KM_Gobbler_Fruit_A_01": 1235922372, + "Guest_KM_Gobbler_Guard_B_01": 1435667582, + "Guest_KM_Gobbler_Skinny_A_10": 773647937, + "Transformation_PlayerBabyCarrot": 1580787628, + "Transformation_PlayerDeadBeet": 1992261692, + "Transformation_PlayerDisparagus": 373797484, + "Transformation_PlayerSnowPeas": 634199102, + "PP_Snowflake": 2036143125, + "PP_GummyBear_Myth": 117787890, + "PP_GummyBear_Death": 236577760, + "PP_GummyBear_Balance": 2100524337, + "PP_GummyBear_Life": 118020336, + "PP_GummyBear_Fire": 117995748, + "PP_GummyBear_Storm": 247437198, + "PP_GummyBear_Ice": 122536570, + "MNT_SnowOwl": 1578473542, + "Guest_KM_Gummy_Bear_Uber_A_01": 1856208859, + "Guest_KM_Gummy_Bear_Uber_A_02": 1856196571, + "MNT_ChocolateMoose": 567538552, + "MNT_Ram_Candied": 1913603720, + "Guest_KM_Spider_Mage_A_01": 1529720120, + "Guest_KM_Spider_Mage_B_01": 1529719608, + "Guest_KM_Spider_Mage_C_01": 1529719096, + "Guest_KM_Spider_Mage_D_01": 1529718584, + "Guest_KM_Spider_Mage_E_01": 1529718072, + "PP_SpriteDark_Balance": 914900728, + "MNT_Tricycle": 991465753, + "Guest_Tri-Gauntlet-Protector-Gold": 2029952053, + "Guest_Tri-Gauntlet-FishbotGold": 130267882, + "Guest_HG-Clock-Clockworker-20": 281216243, + "Guest_HG-Clock-Clockworker-40": 281217011, + "Guest_HG-Clock-Clockworker-60": 281216755, + "Guest_HG-Clock-Clockworker-80": 281215475, + "Guest_HG-Clock-Clockworker-100": 283313523, + "Guest_HG-Clock-Clockworker-120": 283321715, + "Guest_HG-Clock-Lugs-20": 1452756928, + "Guest_HG-Clock-Lugs-40": 1452756960, + "Guest_HG-Clock-Lugs-60": 1452756992, + "Guest_HG-Clock-Lugs-80": 1452756768, + "Guest_HG-Clock-Lugs-100": 1452494736, + "Guest_HG-Clock-Lugs-120": 1452493712, + "Guest_HG-Clock-Lucia-20": 1041451626, + "Guest_HG-Clock-Lucia-40": 1041450602, + "Guest_HG-Clock-Lucia-60": 1041449578, + "Guest_HG-Clock-Lucia-80": 1041456746, + "Guest_HG-Clock-Lucia-100": 1049840746, + "Guest_HG-Clock-Lucia-120": 1049873514, + "Guest_KM_Gummy_Worm_A_03": 232092771, + "MNT_Scooter_E": 200254340, + "PP_WolfWarrior_Balance": 991302673, + "PP_PetGift": 1816280689, + "PP_RatThief": 1390866051, + "Guest_PL_Titan_Small_A": 2015819364, + "Guest_PL_Titan_Large_B": 699791264, + "Guest_PL_Titan_Medium_A": 326730424, + "PP_Draconian": 1631557208, + "MNT_Pantera_Astral": 106092538, + "PP_YearOx": 105653084, + "PP_WolfWarrior_Ice": 1043644935, + "PP_SpriteDark": 2031730054, + "PP_Brudel": 1355697143, + "MNT_Astronomers": 742732792, + "MNT_CouchPotato": 418050932, + "MNT_Flowerfarthing": 1396771051, + "MNT_Astronomers_Blue": 236532779, + "MNT_Astronomers_Rainbow": 4428274, + "PP_Astronomer": 782095961, + "Guest_KM_Gummy_Bunny_B_01": 324806578, + "Guest_KM_DeadBeets_A_01": 1396016635, + "MNT_GummyBunny": 775900704, + "MNT_GummyBunny_A": 775834080, + "MNT_GummyBunny_B": 775836128, + "MNT_GummyBunny_C": 775838176, + "Transformation_BG_Minotaur_Life": 1445109091, + "MNT_Armadillo": 825635826, + "PP_SootGremlin": 768969093, + "PP_RoadRunner": 2057802060, + "MNT_TinyTrolly": 160881792, + "PP_Frog_B": 1530124761, + "MNT_FjordDragon": 129204340, + "Transformation_BG_NinjaPig_Myth": 422914079, + "PP_CorgiPup": 1638656105, + "MNT_Skateboard": 728018224, + "PP_Krokomummy": 326396577, + "MNT_Vroom": 1736383110, + "MNT_PlayerWings_AtralRaven": 1514774167, + "PP_Blimp": 690882397, + "Guest_GH_WoodenSkeletonKey_Boar_Boss_Grey_01": 678055851, + "Guest_GH_StoneSkeletonKey_Boar_Boss_Grey_01": 571670691, + "Guest_GH_GoldSkeletonKey_Boar_Boss_Grey_01": 961728819, + "MNT_Cloud_Promo_AW_01": 2032670992, + "Guest_EM_Hornet_Burner_A_01": 1881854632, + "Guest_EM_Hornet_Burner_A_02": 1881854636, + "Guest_EM_Hornet_Zapper_A_01": 2058539689, + "Guest_EM_Hornet_Zapper_A_02": 2058539685, + "Guest_EM_Ant_Giant_D_01": 379386121, + "Guest_EM_Ant_Giant_A_02": 1768146677, + "Guest_EM_Ant_Giant_A_01": 1768097525, + "Guest_EM_Ant_Giant_B_01": 379386122, + "Guest_KR_Moth_Priest_G_Achera": 381233569, + "Guest_KR_BeeMonsterF_A": 135146211, + "Guest_KR_BeeMonsterF_A_Weak": 1824123847, + "Guest_KR_Bee_Warrior_A": 1569202664, + "Guest_KR_Bee_Warrior_B": 1569204200, + "Guest_KR_Bee_Warrior_C_BossDrones": 1217189631, + "Guest_KR_Bee_Warrior_D": 1569205224, + "Guest_KR_Bee_Warrior_E": 1569204712, + "Guest_KR_Bee_Warrior_G": 1569205736, + "Guest_KR_Bee_Warrior_G_BossFight": 1055035476, + "Guest_KR_Bee_Warrior_H": 1569207272, + "Guest_KR_Bee_Warrior_I": 1569206760, + "Guest_KR_Bee_Warrior_L": 1569209320, + "Guest_KR_Bee_Warrior_M": 1569208808, + "Guest_KR_DragonBeetle_Monster_A": 1777853782, + "Guest_KR_Hornet_Drone_A": 1161590757, + "Guest_KR_Hornet_Drone_B": 1161607141, + "Guest_KR_Hornet_Drone_C": 1161623525, + "Guest_KR_Hornet_Drone_D": 1161639909, + "Guest_KR_Hornet_Drone_E": 1161656293, + "Guest_KR_Lice_DeepSpawn_A": 761604959, + "Guest_KR_Mantis_HunterF_A": 820917199, + "Guest_KR_Mantis_HunterF_B": 871248847, + "Guest_KR_Mantis_HunterF_C": 854471631, + "Guest_KR_Mantis_HunterF_D": 904803279, + "Guest_KR_Mantis_HunterF_F": 938357711, + "Guest_KR_Mantis_HunterF_F_Driftwood": 2053608437, + "Guest_KR_Mantis_HunterF_G": 921580495, + "Guest_KR_Mantis_HunterF_H": 971912143, + "Guest_KR_Mantis_HunterF_I": 955134927, + "Guest_KR_Mantis_HunterF_I_Zuzka": 935478878, + "Guest_KR_Mantis_HunterF_J": 1005466575, + "Guest_KR_Mantis_HunterF_J_Zelda": 886910558, + "Guest_KR_Mantis_HunterF_K": 988689359, + "Guest_KR_Mantis_HunterF_K_LongShd": 1767574336, + "Guest_KR_Mantis_HunterF_L": 1039021007, + "Guest_KR_Mantis_HunterF_M": 1022243791, + "Guest_KR_Mantis_HunterF_P_Bossfight": 1731428987, + "Guest_KR_Mantis_HunterF_Q": 552481743, + "Guest_KR_Mantis_HunterF_R": 602813391, + "Guest_KR_Mantis_HunterF_S": 586036175, + "Guest_KR_Mantis_HunterF_SecondColumnCpt_A": 1354033994, + "Guest_KR_Mantis_HunterF_T": 636367823, + "Guest_KR_Mantis_HunterF_Tribute": 1946371041, + "Guest_KR_Mantis_HunterF_U": 619590607, + "Guest_KR_Mantis_HunterF_V": 669922255, + "Guest_KR_Mantis_HunterF_W": 653145039, + "Guest_KR_Mantis_HunterF_Y": 686699471, + "Guest_KR_Mantis_HunterF_Z_Officer": 206016474, + "Guest_KR_Mantis_ProphetF_B": 1791139097, + "Guest_KR_Mantis_ProphetF_C": 1254268185, + "Guest_KR_Milipede_Warrior_A": 410726278, + "Guest_KR_Milipede_Warrior_B": 410726282, + "Guest_KR_Milipede_Warrior_C": 410726286, + "Guest_KR_Milipede_Warrior_D": 410726290, + "Guest_KR_Milipede_Warrior_H": 410726306, + "Guest_KR_Milipede_Warrior_J": 410726314, + "Guest_KR_Milipede_Warrior_K": 410726318, + "Guest_KR_Moth_Priest_A": 1421532604, + "Guest_KR_Moth_Priest_B": 1421532092, + "Guest_KR_Moth_Priest_C": 1421531580, + "Guest_KR_Moth_Priest_D": 1421531068, + "Guest_KR_Moth_Priest_D_Drepa": 1483393420, + "Guest_KR_Moth_Priest_E": 1421530556, + "Guest_KR_Moth_Priest_F": 1421530044, + "Guest_KR_Mantis_HunterF_Z": 737031119, + "Guest_KR_Roach_AntLion_A": 1860517987, + "Guest_KR_Roach_AntLion_B_Bossfight": 993284625, + "Guest_KR_Roach_AntLion_C": 1861566563, + "Guest_KR_Roach_Cook_A": 259847495, + "Guest_KR_Roach_Glutton_B": 249524334, + "Guest_KR_Roach_WaterBug_A": 1795473599, + "Guest_KR_Roach_WaterBug_B": 1745141951, + "Guest_MR_Beetle_Scarab_A_01": 1789741503, + "Guest_MR_Beetle_Scarab_A_02": 1789741491, + "Guest_MR_Beetle_Scarab_B_01": 1790265791, + "Guest_ZF-Goliath-R10-Boss-01": 7034074, + "Guest_ZF-Goliath-R10-Boss-02": 7034202, + "Guest_ZF-Goliath-R10-Boss-03": 7034330, + "Guest_ZF-Goliath-R10-Boss": 1603576807, + "Guest_ZF-Goliath-R11-Boss-01": 2140449574, + "Guest_ZF-Goliath-R11-Boss-02": 2140449446, + "Guest_ZF-Goliath-R11-Boss-03": 2140449318, + "Guest_ME1_Ant_Aunt_A": 707251855, + "Guest_ME1_Ant_Aunt_B": 1440231794, + "Guest_CC_Fly_Worker_A_01": 1497784524, + "Guest_CC_Roach_Worker_A_01": 1026321602, + "Guest_CC_Roach_Lieutenant_A_01": 1081690299, + "Guest_CC_Roach_Lieutenant_B_01": 1081690295, + "Guest_CC_Roach_Don_A_01": 547836893, + "Guest_CC_Roach_BBug_A_01": 1021150157, + "Guest_CC_Roach_RoachSteady_A_01": 859409247, + "Guest_Draconian-Caster-Yellow-Boss-R8": 1016221419, + "Guest_Draconian-Zombie-R8-2-1": 1226055265, + "Guest_Draconian-Zombie-R8-2": 1226115297, + "Guest_Draconian-Caster-Green-R7": 2143342719, + "Guest_Draconian-Warrior-Gold-Boss-R8": 1044388248, + "Guest_Draconian-Caster-Gray-R7": 95878769, + "Guest_DS-Boss-MAW": 1676071241, + "Guest_Draconian-Zombie-R8-1": 1226115309, + "Guest_Draconian-Warrior-Purple-Boss-R7": 601813964, + "Guest_Draconian-Caster-Tan-Boss-R7": 1973339532, + "Guest_Draconian-Caster-Blue-R6": 1684210173, + "Guest_Draconian-Caster-Yellow-R8": 2129956646, + "Guest_Draconian-Warrior-Red-R7": 521861944, + "Guest_Draconian-Warrior-Tan-R6": 1726416112, + "Guest_Draconian-Warrior-Purple-R8": 1896270341, + "Guest_Draconian-Caster-Blue-Boss-R7": 401581134, + "Guest_Draconian-Zombie-R8": 384497496, + "Guest_GH2-Draconian-HENCH-R10": 1149202878, + "Guest_GH2-Draconian-BOSS-R10": 2114378473, + "Guest_G14-DM-Draconian_Boss": 490246211, + "Guest_G14-DM-Draconian_Storm": 2035239226, + "Guest_G14-DM-Draconian_Ice": 782200563, + "Guest_G14-DM-Draconian_Malistaire_M": 1904691727, + "Guest_G14-DM-Draconian_Malistaire_S": 1904685583, + "Guest_G14-DM-Draconian_Malistaire_D": 1904700943, + "Guest_G14-DM-Draconian_Malistaire": 1904736751, + "Guest_G14-DM-Draconian_Malistaire_B": 1904702991, + "Guest_G14-DM-Draconian_Malistaire_I": 1904695823, + "Guest_G14-DM-Draconian_Malistaire_L": 1904692751, + "Guest_G14-DM-Draconian_Malistaire_F": 1904698895, + "Guest_Draconian-PW-Gauntlet-Boss": 493080513, + "Guest_CC_Draconian_A_01": 551348115, + "Guest_AZ-Parasaur-Undead-E": 2041242846, + "Guest_AZ-Parasaur-drkPriestF-F": 898239615, + "Guest_EM_Parasaur_DrkPriestF_A_01": 1007099606, + "Guest_EM_Parasaur_DrkPriestF_A_02": 1007099605, + "Guest_AZ-Parasaur-drkPriestF-D": 898501759, + "Guest_AZ-Parasaur-drkPriestF-E": 898370687, + "Guest_AZ-Parasaur-drkPriestF-A": 897846399, + "Guest_AZ-Parasaur-Undead-B": 1716853538, + "Guest_AZ-Parasaur-Undead-A": 106240802, + "Guest_AZ-Parasaur-Undead-G": 967501022, + "Guest_AZ-Parasaur-PriestF-D": 1177445525, + "Guest_AZ-Parasaur-Undead-C": 1179982626, + "Guest_AZ-Parasaur-drkPriestF-C": 897584255, + "Guest_AZ-Parasaur-Undead-SkurkisMinion": 1414766977, + "Guest_AZ-Parasaur-drkPriestF-B": 897715327, + "Guest_AZ-Parasaur-drkPriestF-B-Script": 1414847875, + "Guest_AZ_Parasaur_Priest_A_Boss_01": 890025421, + "Guest_AZ-Parasaur-Undead-D": 1504371934, + "Guest_AZ-Pteranodon-Knight-D": 1127364049, + "Guest_AZ-StoneSkeletonKey-Ixcax-Cursedwing": 699239601, + "Guest_AZ-Pteranodon-Knight-E": 1127363921, + "Guest_AZ-Pteranodon-Knight-F": 1127363793, + "Guest_AZ-Pteranodon-Knight-A-PageEvent": 942589002, + "Guest_AZ-StoneSkeletonKey-Minion-Death": 311645584, + "Guest_AZ-Pteranodon-Knight-A": 1127364433, + "Guest_AZ-Raptor-Wraith-A": 585729247, + "Guest_AZ-Raptor-Undead-D": 893623689, + "Guest_G14-HS-Ifzt": 1914694612, + "Guest_AZ-Raptor-Warrior-A": 855749884, + "Guest_AZ-Raptor-Undead-C": 897293705, + "Guest_AZ-Raptor-Undead-B": 896769417, + "Guest_AZ-Raptor-Undead-F": 894672265, + "Guest_AZ-Raptor-Warrior-F": 872527100, + "Guest_AZ-Raptor-Warrior-H": 973190396, + "Guest_AZ-Tritops-Warrior-I": 1942669769, + "Guest_AZ-Tritops-Undead-H": 1215305911, + "Guest_AZ-Tritops-Undead-E": 1164974263, + "Guest_AZ-Tritops-SpkWarrior-A": 860850257, + "Guest_AZ-Tritops-SpkWarrior-B": 860862545, + "Guest_AZ-Tritops-Undead-F": 1181751479, + "Guest_AZ-Tritops-Warrior-K": 868927945, + "Guest_AZ-Tritops-Undead-G": 1198528695, + "Guest_AZ-Tritops-Mummy-A": 1912444877, + "Guest_AZ-Tritops-Warrior-G": 1278555704, + "Guest_AZ-Tritops-Undead-D": 1148197047, + "Guest_AZ-Tritops-Undead-A": 1097865399, + "Guest_AZ-Tritops-SpkChief-B": 2096319577, + "Guest_AZ-Tritops-Mummy-B": 1910872013, + "Guest_AZ-Tritops-Warrior-H": 1405798857, + "Guest_AZ-Dino-Undead-A": 508678670, + "Guest_AZ-Dino-Undead-B": 508679182, + "Guest_AZ-Dino-Undead-D": 508680206, + "Guest_KR_Dino_Undead_A": 1638800628, + "Guest_KR_Dino_Undead_Minion_A": 892450235, + "MNT_HayRideTruck": 75377404, + "MNT_ShadowSpiderForm": 1439860426, + "Transformation_BG_Draconian_Death": 794598804, + "PP_BabyOrca": 1056061090, + "Transformation_BG_Cyclops_Fire": 638854828, + "Transformation_BG_Fairy_Ice": 874078461, + "PP_SpriteLife": 1824998010, + "PP_Raccoon": 1107326808, + "PP_FireKitten": 593048189, + "MNT_SkeletalDuck": 1306273036, + "PP_VampireSquid": 431023109, + "PP_CottonCandy": 891201813, + "PP_ThreeHeadGoat": 1282096939, + "PP_EyeBot": 260189248, + "MNT_DeathBoat": 1444454568, + "MNT_Lemuria": 908974762, + "MNT_DeathBoat_B": 1444456538, + "MNT_DeathBoat_C": 1444456474, + "MNT_Spooky3": 1667775622, + "MNT_PresentBox": 122082000, + "MNT_Orca": 1726961653, + "Guest_LM_Golem_Steel_A_01": 19551853, + "Guest_LM_Golem_Steel_A_02": 36329069, + "Guest_LM_EyeBot_A_01_Death": 380508535, + "Guest_LM_EyeBot_A_01_Myth": 167840640, + "PP_ThreeHeadGoat_B": 1209286443, + "PP_ThreeHeadGoat_C": 1211383595, + "Guest_KR_Eel_Whirligig_A": 1062268734, + "Guest_KR_Goliath_Behemoth_A": 1231139987, + "Guest_KR_Goliath_Behemoth_C": 1231139995, + "Guest_KR_Goliath_Behemoth_D": 1231139975, + "Guest_KR_Goliath_Behemoth_E": 1231139971, + "Guest_KR_Goliath_Behemoth_H": 1231140023, + "Guest_KR_Goliath_Crusher_C": 1651720060, + "Guest_KR_Goliath_Crusher_D": 2106376324, + "Guest_KR_Goliath_Crusher_F": 1032634500, + "Guest_KR_Goliath_Crusher_G": 495763588, + "Guest_KR_Goliath_Crusher_K": 1651720059, + "Guest_AZ-Goliath-Crusher-A": 1874784966, + "Guest_AZ-Goliath-Crusher-B": 264172230, + "Guest_AZ-Goliath-Crusher-C": 801043142, + "Guest_AZ-Goliath-Crusher-D": 809569594, + "Guest_AZ-Goliath-Crusher-E": 272698682, + "Guest_HG_AKT_Butterfly_Time_A_25": 1788523059, + "Guest_HG_AKT_Butterfly_Time_A_50": 1130017331, + "Guest_HG_AKT_Butterfly_Time_A_75": 1809494579, + "Guest_HG_AKT_Butterfly_Time_A_100": 1113240099, + "Guest_HG_AKT_Butterfly_Time_A_130": 1515893283, + "MNT_DeathBoat_D": 1444456922, + "Guest_KR_RhinoBeetle_Sun_A_Bossfight": 47895417, + "Guest_KR_RhinoBeetle_Star_A": 1947510103, + "Guest_KR_RhinoBeetle_Moon_A": 1751275863, + "Guest_ME1_Clockwork_Marine_A": 1481452452, + "Guest_ME1_Clockwork_Marine_B": 1481452068, + "Guest_CC_GoldSkeletonKey_Lice_DeepSpawn_B": 1306132994, + "Guest_KR_DamdinBazar_A_Bossfight": 1333596311, + "Guest_DS-Minion-MAW2": 356796677, + "Guest_KH-Wyrmling-1": 116330513, + "Guest_KH-Wyrmling-20": 183439385, + "Guest_KH-Wyrmling-40": 317657113, + "Guest_KH-Wyrmling-60": 451874841, + "Guest_KH-Wyrmling-80": 586092569, + "Guest_PL_Polar_Bear_Solider_C": 1785662565, + "Guest_Skeleton-Silver-WCBoss-L01": 17766963, + "Guest_Banshee-Red-Elite-L24_B": 1902069117, + "Transformation_BG_WolfWarrior_Myth": 339098032, + "Transformation_BG_RatThief_Balance": 881728218, + "Transformation_BG_Colossus_Storm": 593527492, + "Transformation_BG_Elf_Life": 347405087, + "Transformation_BG_Minotaur_Ice": 1197752291, + "MNT_TRex_B": 660285500, + "PP_SpriteDark_Ice": 2036248504, + "MNT_RollingBall": 1658139390, + "Guest_LM_TRex_Base_A_03": 1378630657, + "Guest_LM_TRex_Base_A_04": 1378745345, + "Guest_LM_TRex_Base_A_05": 1378728961, + "Guest_LM_TRex_Base_A_01": 1378663425, + "Guest_LM_TRex_Base_A_02": 1378647041, + "Guest_LM_TRex_Cyborg_A_01": 151609741, + "Guest_LM_TRex_Cyborg_A_02": 168386957, + "Guest_LM_TRex_Cyborg_A_03": 185164173, + "Guest_LM_TRex_Cyborg_B_01": 151611277, + "Guest_LM_TRex_Cyborg_D_01": 151612301, + "Guest_LM_TRex_Cyborg_E_01": 151611789, + "Guest_LM_TRex_Cyborg_C_01": 151610765, + "Guest_LM_Draconian_Base_A_01": 1607373112, + "Guest_LM_EyeBot_B_01": 1085543056, + "Guest_LM_Drone_Eye_C_01": 916954037, + "Guest_LM_Drone_Eye_D_01": 1230529608, + "Guest_LM_Drone_Eye_D_02": 1230545992, + "Guest_LM_Drone_Eye_D_04": 1230578760, + "Guest_LM_Drone_Eye_D_03": 1230562376, + "Guest_LM_Drone_Eye_A_01": 916954038, + "Guest_LM_Drone_Eye_A_02": 916937654, + "Guest_LM_Drone_Eye_B_01": 1230529611, + "Guest_LM_Drone_Eye_D_05": 1230595144, + "Guest_LM_Drone_Eye_D_07": 1230627912, + "Guest_LM_Drone_Eye_D_08": 1230644296, + "Guest_LM_Drone_Eye_A_03": 916921270, + "Guest_LM_Drone_Eye_A_04": 916904886, + "Guest_LM_Drone_Eye_C_02": 916937653, + "Guest_LM_EyeBot_B_02": 1061940593, + "Guest_LM_EyeBot_B_03": 1085543055, + "Guest_LM_EyeBot_B_04": 1061940594, + "Guest_LM_Drone_Eye_C_03": 916921269, + "Guest_LM_Robot_Kit10_A_01": 199936400, + "Guest_LM_Colossus_Mander_A_01": 2107529026, + "Guest_LM_Robot_Future_A_01": 998840846, + "Guest_LM_Robot_FutureBIG_A_01": 340408568, + "Guest_LM_Robot_FutureBIG_A_02": 340396280, + "Guest_LM_Robot_FutureBIG_A_03": 340400376, + "Guest_LM_Robot_OldOne_A_01": 779070973, + "Guest_LM_Robot_OldOne_A_02": 1315941885, + "Guest_LM_Millipede_Centi_A_01": 168575797, + "Guest_LM_Millipede_Centi_A_03": 168583989, + "Guest_LM_Millipede_Centi_A_02": 168588085, + "Guest_LM_Millipede_Centi_A_04": 168563509, + "Guest_LM_Moth_Sorcerer_A_01": 228191136, + "Guest_LM_Boar_Barbarian_A_01": 1238634912, + "Guest_LM_Boar_Barbarian_A_02": 1238634528, + "Guest_LM_Boar_Barbarian_A_03": 1238634656, + "Guest_LM_Boar_Barbarian_A_04": 1238635296, + "Guest_LM_Boar_Barbarian_A_05": 1238635424, + "Guest_LM_Boar_Chief_A_01": 357051311, + "Guest_LM_Fungus_Humango_A_01": 1398460044, + "Guest_LM_Fungus_Humango_A_02": 1398460172, + "Guest_LM_Treant_Base_A_01": 1658172241, + "Guest_LM_GiantTree_EvilRoots_A_01": 282225934, + "Guest_LM_PA_GreenMan_A_01": 67705044, + "Guest_LM_Fungus_Humango_B_01": 1348128396, + "Guest_LM_Fungus_Humango_A_03": 1398460300, + "Guest_LM_Fungus_Man_C_01": 1648824156, + "Guest_LM_Fungus_Man_C_02": 1650397020, + "Guest_LM_Rhino_Zombie_A_01": 248513993, + "Guest_LM_Malughast_Base_01": 883820436, + "Guest_LM_Malughast_Base_02": 1420691348, + "Guest_LM_Lemur_HierarchF_H_04": 231562115, + "Guest_LM_Malughast_Base_03": 1957562260, + "Guest_LM_Malughast_Base_05": 1263663212, + "Guest_LM_Malughast_Base_06": 726792300, + "Guest_LM_Malughast_Base_08": 346949523, + "Guest_LM_Malughast_Base_09": 883820435, + "Guest_LM_Malughast_Base_04": 1800534124, + "Guest_LM_Minotaur_Skeleton_A_01": 1865122824, + "Guest_LM_Lemur_Wild_B_03": 1783764037, + "Guest_LM_Lemur_HierarchF_H_01": 231541635, + "Guest_LM_Lemur_HierarchF_H_02": 231553923, + "Guest_LM_Mander_Warrior_A_01": 1651245419, + "Guest_LM_Mander_Warrior_A_02": 1651245291, + "Guest_LM_Mander_Warrior_B_01": 1634468203, + "Guest_LM_Mander_Warrior_B_02": 1634468075, + "Guest_LM_Mander_Warrior_A_03": 1651245163, + "Guest_LM_Mander_Warrior_B_03": 1634467947, + "Guest_LM_Mander_Warrior_A_06": 1651245803, + "Guest_LM_Mander_Warrior_A_05": 1651245931, + "Guest_LM_Mander_Mummy_B_01": 1844111521, + "Guest_LM_Mander_Hero_B_01": 865113284, + "MNT_HolidayHippogriff": 938892112, + "MNT_Sabertooth_Ice": 1870381696, + "PP_FenrisWolf_Bantam": 776647759, + "MNT_JetPack": 1986300552, + "MNT_Scooter_F": 1005560708, + "PP_FossaKitten_A": 431748212, + "PP_Elfvis": 147991405, + "Guest_LM_Chicken_Hero_A_01": 1308728300, + "Guest_LM_Horse_Explorer_A_01": 434405482, + "Guest_LM_Duck_HeroineF_A_01": 133199186, + "Guest_LM_Crane_Hero_A_01": 204272548, + "Guest_LM_Deer_HeroineF_A_01": 1800374959, + "Guest_LM_Deer_Hero_A_01": 223109503, + "Guest_LM_Dog_Hero_A_01": 1434615064, + "PP_YearTiger": 777048708, + "MNT_Barrel": 3576425, + "MNT_Krampus": 404117611, + "PP_ChineseTigerCub": 1256032005, + "PP_Lemur": 565774155, + "PP_Robot": 1089075331, + "PP_Capybara": 451970762, + "Guest_LM_Ghoul_Base_A_01": 1822415945, + "Guest_LM_Lemur_HierarchF_H_03": 231549827, + "Guest_LM_Ghoul_Base_A_02": 1820843081, + "Guest_LM_Ghoul_Base_A_03": 1821367369, + "MNT_SpringSoF2022": 1685679511, + "MNT_WarElephant": 875015497, + "PP_Strix": 514230046, + "MNT_Beachball": 791896033, + "MNT_Blank": 633398131, + "MNT_CardboardFlier": 1646636689, + "MNT_LochMonster": 879660722, + "Transformation_BG_Krok_Death": 1395067182, + "Transformation_BG_Draconian_Fire": 1551581732, + "PP_Scotty": 1708580475, + "Guest_KR_Mice_Knight_A": 480101508, + "PP_Peacock": 1178721112, + "MNT_PoodleMoth": 975420235, + "PP_Hummingbird": 624666906, + "PP_WolfWarrior_Myth": 470737416, + "Guest_HG_UFD_Ghost_QueenF_A_100": 795323059, + "Guest_HG_UFD_Ghost_QueenF_A_50": 728230579, + "Guest_HG_UFD_Pirate_UndeadHighland_A_Balance_150": 201145133, + "Guest_HG_UFD_Pirate_UndeadHighland_A_Balance_100": 201144941, + "Guest_HG_UFD_Pirate_UndeadHighland_A_Balance_50": 201177701, + "Guest_HG_UFD_Pirate_UndeadHighland_A_Star_150": 1329885920, + "Guest_HG_UFD_Pirate_UndeadHighland_A_Star_100": 1304720096, + "Guest_HG_UFD_Pirate_UndeadHighland_A_Star_50": 1305768671, + "Guest_HG_UFD_Pirate_UndeadHighland_A_Shadow_150": 1263689971, + "Guest_HG_UFD_Pirate_UndeadHighland_A_Shadow_100": 1263689977, + "Guest_HG_UFD_Pirate_UndeadHighland_A_Shadow_50": 189949177, + "Guest_HG_UFD_Kelpie_Warrior_A_150": 54296095, + "Guest_HG_UFD_Kelpie_Warrior_A_100": 725384735, + "Guest_HG_UFD_Kelpie_Warrior_A_50": 708607503, + "Guest_HG_UFD_Pirate_UndeadHighland_B_150": 1099317831, + "Guest_HG_UFD_Pirate_UndeadHighland_B_100": 25576008, + "Guest_HG_UFD_Pirate_UndeadHighland_B_50": 159793864, + "Guest_HG_UFD_Ghost_QueenF_A_150": 795716275, + "PP_SpiderMinion": 557357331, + "MNT_Vines_Rainbow": 1587180338, + "MNT_YoungDrake": 1279496198, + "PP_Pet_Coconut": 444388490, + "DragonKI": 1490194214, + "PP_Sharkfish": 601628284, + "PP_MimicCake": 48071878, + "Guest_AQ-Bronze-Eagle": 375279744, + "Guest_Spider-Brown-L26": 2128680185, + "Guest_KR_Spider_Giant_D": 744401035, + "Guest_Wizard-Female-Band-Blue-R8": 1447486557, + "Guest_CC_Human_DSCrusaderF_A_01": 726538068, + "Guest_WC_Scarecrow_A_01": 867491011, + "Guest_WC_Banshee_A_01": 1433786463, + "Guest_WC_LostSoul_A_01": 796936146, + "PP_Fairy_Myth": 1117624344, + "PP_SpriteDark_Myth": 1884257976, + "BG_CyclopsLife_A": 944091673, + "Transformation_BG_NinjaPig_Storm": 2005137181, + "Transformation_BG_Fairy_Myth": 1880704188, + "Transformation_BG_Cyclops_Life": 638936708, + "Guest_AQ-Eagle-Praetorian": 1988013806, + "Guest_KM_BabyCarrot_A_01": 766239512, + "Guest_G14-DM-Gargoyle": 282898047, + "Guest_MR_Durvish_Sergeant_A_Boss_01": 1532609325, + "Guest_Cyclops-RedHelmet-KTBoss-L28": 2072371506, + "Guest_EM_Pig_Singer_A_01": 698597069, + "Guest_EM_Pig_Captain_A": 977505995, + "Guest_EM_Pig_Crewman_A": 465576459, + "PP_ChipmunkConductor": 1089819900, + "PP_LuckyCat": 1109326826, + "MNT_ImpCar": 1736092191, + "MNT_Book": 1547655078, + "MNT_JackoLantern": 649919658, + "MNT_Zheng": 742453108, + "MNT_Train": 413197899, + "MNT_Cerberus": 552686313, + "PP_Coconut": 1122741587, + "Transformation_Statue": 1153168084, + "Transformation_Nullity": 622504394, + "PP_Irk": 1825277392, + "Guest_Wyrmling-Fire-R8-1": 531485009, + "MNT_WolfLowPoly_A": 1947890962, + "MNT_WolfLowPoly_B": 1947825426, + "Transformation_BG_RatThief_Fire": 1169330235, + "Transformation_BG_WolfWarrior_Death": 159966683, + "Transformation_BG_Minotaur_Balance": 657855108, + "Transformation_BG_Draconian_Ice": 1907339814, + "Transformation_BG_Colossus_Myth": 1305894338, + "Transformation_NV_Penguin": 1757096851, + "Transformation_NV_Unicorn": 60447768, + "Transformation_NV_Monkey": 1379873688, + "Transformation_NV_Dog": 1961288968, + "PP_Wolf_Storm": 455227171, + "PP_WoodDuck": 1680912895, + "MNT_RockingHorse": 1205280059, + "MNT_SOF2022_Car": 219868812, + "PP_Buffaloon": 796152873, + "MNT_Steamboat": 1969530127, + "MNT_FelizNavidog": 847046394, + "PP_Mustache": 1571079379, + "Guest_DD-DS01-Skeleton-Pirate-20": 226826848, + "Guest_DD-DS01-Skeleton-Pirate-40": 201661024, + "Guest_DD-DS01-Skeleton-Pirate-60": 210049632, + "Guest_DD-DS01-Skeleton-Pirate-80": 251992672, + "Guest_DD-DS01-Skeleton-Pirate": 1994450336, + "Guest_DD-DS01-Shadow-Minion-Fire": 1074864956, + "Guest_DD-DS01-Shadow-Minion-Ice": 1841681214, + "Guest_DD-DS01-Shadow-Minion-Fire-20": 1074880881, + "Guest_DD-DS01-Shadow-Minion-Fire-40": 1074880945, + "Guest_DD-DS01-Shadow-Minion-Ice-20": 96850220, + "Guest_DD-DS01-Shadow-Minion-Ice-40": 96850218, + "Guest_DD-DS01-Shadow-Minion-Fire-60": 1074881009, + "Guest_DD-DS01-Shadow-Minion-Ice-60": 96850216, + "Guest_DD-DS01-Shadow-Minion-Fire-80": 1074880561, + "Guest_DD-DS01-Shadow-Minion-Ice-80": 96850214, + "Guest_SC-SpectreOfB-1": 1471950935, + "Guest_SC-SpectreOfB-20": 1471942759, + "Guest_SC-SpectreOfB-40": 1471942663, + "Guest_SC-SpectreOfB-60": 1471942695, + "Guest_SC-SpectreOfB-80": 1471942855, + "Guest_KH-Skeleton-Ice-60": 2108358962, + "Guest_KH-Skeleton-Ice-40": 2108391730, + "Guest_KH-Skeleton-Ice-20": 2108293426, + "Guest_KH-Skeleton-Ice-1": 2099953970, + "Guest_KH-Skeleton-Ice-80": 2108195122, + "Guest_KH-Undead-Caster-60": 1662604496, + "Guest_KH-Undead-Caster-40": 1661555920, + "Guest_KH-Undead-Caster-20": 1664701648, + "Guest_KH-Undead-Caster-1": 1931564240, + "Guest_KH-Undead-Caster-80": 1667847376, + "Guest_DD-PA01-DeadBeets": 1664999367, + "Guest_DD-PA01-DeadBeets-20": 1901453253, + "Guest_DD-PA01-DeadBeets-40": 2002116549, + "Guest_DD-PA01-DeadBeets-60": 1968562117, + "Guest_DD-PA01-DeadBeets-80": 2069225413, + "Guest_DD-PA01-Disparagus": 1865816461, + "Guest_DD-PA01-Disparagus-20": 573970895, + "Guest_DD-PA01-Disparagus-40": 499770929, + "Guest_DD-PA01-Disparagus-60": 1573512753, + "Guest_DD-PA01-Disparagus-80": 1647712718, + "Guest_DD-PA01-MeanestFlyTrap": 2001546861, + "Guest_DD-PA01-MeanestFlyTrap-20": 1936326253, + "Guest_DD-PA01-MeanestFlyTrap-40": 1936064109, + "Guest_DD-PA01-MeanestFlyTrap-60": 1935801965, + "Guest_DD-PA01-MeanestFlyTrap-80": 1937636973, + "Guest_HG-MD-MacDeath-20": 182639104, + "Guest_HG-MD-MacDeath-40": 182638080, + "Guest_HG-MD-MacDeath-60": 182637056, + "Guest_HG-MD-MacDeath-80": 182636032, + "Guest_HG-MD-MacDeath-100": 174252032, + "Guest_HG-MD-MacDeath-130": 174202880, + "Guest_HG_Sinbad_Skeleton_25": 494617874, + "Guest_HG_Sinbad_Skeleton_50": 42253050, + "Guest_HG_Sinbad_Skeleton_75": 1115994862, + "Guest_HG_Sinbad_Skeleton_100": 2105232646, + "Guest_HG_Sinbad_Skeleton_130": 2105232650, + "Guest_HG_Sinbad_Skeleton_25_02": 492722834, + "Guest_HG_Sinbad_Skeleton_50_02": 44148090, + "Guest_HG_Sinbad_Skeleton_75_02": 1117889902, + "Guest_HG_Sinbad_Skeleton_100_02": 2044247302, + "Guest_HG_Sinbad_Skeleton_130_02": 2044247306, + "Guest_DD-AV01-WyrmBoss": 1648677986, + "Guest_DD-AV01-WyrmBoss-20": 1926730850, + "Guest_DD-AV01-WyrmBoss-40": 1927779426, + "Guest_DD-AV01-WyrmBoss-60": 1928828002, + "Guest_DD-AV01-WyrmBoss-80": 1921487970, + "Guest_RH-Wyrm-Boss-01": 1027277645, + "Guest_RH-Wyrm-Boss-20": 1027277660, + "Guest_RH-Wyrm-Boss-40": 1027277663, + "Guest_RH-Wyrm-Boss-60": 1027277662, + "Guest_RH-Wyrm-Boss-80": 1027277657, + "Guest_HG_Sinbad_Wyrm_25": 1101443356, + "Guest_HG_Sinbad_Wyrm_50": 1101528860, + "Guest_HG_Sinbad_Wyrm_75": 1101445916, + "Guest_HG_Sinbad_Wyrm_100": 1093138204, + "Guest_HG_Sinbad_Wyrm_130": 1093089052, + "Guest_KH-Treant-1": 2001244331, + "Guest_KH-Treant-60": 1968148651, + "Guest_KH-Treant-40": 1968017579, + "Guest_KH-Treant-20": 1967886507, + "Guest_KH-Treant-80": 1967231147, + "Guest_DD-PA01-ForestGrump": 1969685870, + "Guest_DD-PA01-ForestGrump-20": 714666713, + "Guest_DD-PA01-ForestGrump-40": 714666689, + "Guest_DD-PA01-ForestGrump-60": 714666697, + "Guest_DD-PA01-ForestGrump-80": 714666737, + "Guest_DD-PA01-ForestNymphs": 227087348, + "Guest_DD-PA01-ForestNymphs-20": 227023552, + "Guest_DD-PA01-ForestNymphs-60": 227023040, + "Guest_DD-PA01-ForestNymphs-80": 227024832, + "Guest_SC-Pig-BalanceWizardA-1": 475456968, + "Guest_SC-Pig-BalanceWizardA-20": 477550024, + "Guest_SC-Pig-BalanceWizardA-40": 477541832, + "Guest_SC-Pig-BalanceWizardA-60": 477533640, + "Guest_SC-Pig-BalanceWizardA-80": 477525448, + "Guest_SC-Pig-BalanceWizardB-1": 475456964, + "Guest_SC-Pig-BalanceWizardB-20": 477550020, + "Guest_SC-Pig-BalanceWizardB-40": 477541828, + "Guest_SC-Pig-BalanceWizardB-60": 477533636, + "Guest_SC-Pig-BalanceWizardB-80": 477525444, + "Guest_SC-Pig-BalanceWizardC-1": 475456960, + "Guest_SC-Pig-BalanceWizardC-20": 477550016, + "Guest_SC-Pig-FireWizard-1": 2048176291, + "Guest_SC-Pig-FireWizard-20": 2031399073, + "Guest_SC-Pig-FireWizard-40": 2132062369, + "Guest_SC-Pig-FireWizard-60": 2098507937, + "Guest_SC-Pig-FireWizard-80": 1930735777, + "Guest_SC-Pig-IceWizardF-1": 1178687744, + "Guest_SC-Pig-IceWizardF-20": 1161910526, + "Guest_SC-Pig-IceWizardF-40": 1128356094, + "Guest_SC-Pig-IceWizardF-60": 1094801662, + "Guest_SC-Pig-IceWizardF-80": 1329682686, + "Guest_SC-Pig-MythWizard-1": 2048492725, + "Guest_SC-Pig-MythWizard-20": 2031715511, + "Guest_SC-Pig-MythWizard-40": 2132378807, + "Guest_SC-Pig-MythWizard-60": 2098824375, + "Guest_SC-Pig-MythWizard-80": 1931052215, + "Guest_SC-Pig-StormWizardF-1": 1743849420, + "Guest_SC-Pig-StormWizardF-20": 1743851464, + "Guest_SC-Pig-StormWizardF-40": 1743851488, + "Guest_SC-Pig-StormWizardF-60": 1743851480, + "Guest_SC-Pig-StormWizardF-80": 1743851504, + "Guest_KH-Pig-Bandit-Lord-1": 1080496628, + "Guest_KH-Pig-Bandit-Lord-20": 543625652, + "Guest_KH-Pig-Bandit-Lord-40": 530116172, + "Guest_KH-Pig-Bandit-Lord-60": 1603857996, + "Guest_KH-Pig-Bandit-Lord-80": 1617367475, + "Guest_KH-Pig-Bandit-Ninja-1": 1945100907, + "Guest_KH-Pig-Bandit-Ninja-20": 1945102951, + "Guest_KH-Pig-Bandit-Ninja-40": 1945102975, + "Guest_KH-Pig-Bandit-Ninja-60": 1945102967, + "Guest_KH-Pig-Bandit-Ninja-80": 1945102927, + "Guest_KH-Pig-War-Caster-1": 656859765, + "Guest_KH-Pig-War-Caster-20": 606528119, + "Guest_KH-Pig-War-Caster-40": 572973687, + "Guest_KH-Pig-War-Caster-60": 539419255, + "Guest_KH-Pig-War-Caster-80": 774300279, + "Guest_KH-Pig-War-Warrior-Boss-1": 16342355, + "Guest_KH-Pig-War-Warrior-Boss-20": 2143724205, + "Guest_KH-Pig-War-Warrior-Boss-40": 2118558381, + "Guest_KH-Pig-War-Warrior-Boss-60": 2126946989, + "Guest_KH-Pig-War-Warrior-Boss-80": 2101781165, + "Guest_SC-Pig-BalanceWizardC-40": 477541824, + "Guest_SC-Pig-BalanceWizardC-60": 477533632, + "Guest_SC-Pig-BalanceWizardC-80": 477525440, + "Guest_KH-Helephant-Death-20": 1109389719, + "Guest_KH-Helephant-Death-40": 2111835753, + "Guest_KH-Helephant-Death-60": 1038093929, + "Guest_KH-Helephant-Death-80": 35647896, + "Guest_KH-GreyOgre-Spider-1": 356368404, + "Guest_KH-GreyOgre-Spider-20": 1966981204, + "Guest_KH-GreyOgre-Spider-40": 1254244268, + "Guest_KH-GreyOgre-Spider-60": 180502444, + "Guest_KH-GreyOgre-Spider-80": 893239379, + "Guest_HG_Sinbad_Colossus_25": 1190802829, + "Guest_HG_Sinbad_Colossus_50": 1493551719, + "Guest_HG_Sinbad_Colossus_75": 419809907, + "Guest_HG_Sinbad_Colossus_100": 653933977, + "Guest_HG_Sinbad_Colossus_130": 653933973, + "Guest_NV_Dino_AberrantUndead_A_01": 2035087398, + "Guest_NV_Hellephant_Aberrant_A_01": 989522333, + "Guest_NV_Hellephant_Aberrant_A_02": 989522334, + "Guest_NV_BananaSpider_Base_A_01": 1585810541, + "Guest_NV_BananaSpider_Base_A_02": 1581616237, + "Guest_NV_BananaSpider_Base_A_03": 1577421933, + "Guest_NV_BananaSpider_Base_A_04": 1606782061, + "Guest_NV_BananaSpider_Base_A_05": 1602587757, + "Guest_NV_Wyrm_Aberrant_A_01": 16108415, + "Guest_NV_Monkey_Zombie_A_01": 1854775300, + "Guest_NV_Monkey_Zombie_A_02": 1854775304, + "Guest_NV_Monkey_Zombie_A_03": 1854775308, + "Guest_NV_Monkey_Zombie_A_04": 1854775312, + "MNT_Flag_Monster": 867940056, + "Guest_SKB_WY_DarkBramble_A_30": 2046798767, + "Guest_SKB_WY_DarkBramble_A_50": 2046797999, + "Guest_SKB_WY_DarkBramble_A_100": 2044701359, + "Guest_SKB_WY_DarkBramble_A_150": 2044721839, + "Guest_SKB_GH_Boar_A_30": 1547921275, + "Guest_SKB_WC_SpiritIgnorance_A_50": 1488876986, + "Guest_SKB_WC_SpiritIgnorance_A_100": 2025748410, + "Guest_SKB_WC_SpiritIgnorance_A_150": 2025748413, + "Guest_SKB_DS_Loremaster_A_50": 527751539, + "Guest_SKB_DS_Loremaster_A_100": 527817059, + "Guest_SKB_DS_Loremaster_A_150": 527817699, + "Guest_SKB_CL_Dan_A_50": 637418706, + "Guest_SKB_CL_Dan_A_60": 1510064941, + "Guest_SKB_CL_Dan_A_100": 637410512, + "Guest_SKB_CL_Dan_A_150": 637410432, + "Guest_SKB_AV_Spectre_A_50": 2104631195, + "Guest_SKB_AV_Spectre_A_100": 2102534041, + "Guest_SKB_AV_Spectre_A_150": 2018647961, + "Guest_SKB_MS_Samoorai_A_50": 2029641915, + "Guest_SKB_MS_Samoorai_A_100": 2096750843, + "Guest_SKB_MS_Samoorai_A_150": 587603717, + "Transformation_BG_Krok_StromTemplate": 1317694546, + "PP_ChineseRabbit": 382941643, + "PP_ParadeElf": 1036247808, + "MNT_HeartSwarm": 918199310, + "MNT_SpringSOF2023": 1417178519, + "Transformation_BG_Elf_Death2Template": 1606653101, + "MNT_GummyBunny_D": 775840224, + "Transformation_BG_Krok_Life2Template": 747486212, + "PP_Flame": 959186933, + "PP_YachtRock": 1500927358, + "PP_PirateYachtRock": 1227549100, + "PP_ChickenMonster": 1845706534, + "PP_SnowHoppers_B": 1496460038, + "PP_SnowHoppers_C": 1496457990, + "MNT_Oarfish": 29720265, + "PP_RingTailedCat": 993143427, + "MNT_Fanboat": 19347694, + "MNT_MiniSub": 298697910, + "PP_DumboOctopus": 966435639, + "PP_Glowbug_Balance": 1405529577, + "PP_Glowbug_Death": 405117107, + "PP_Glowbug_Fire": 651698987, + "PP_Glowbug_Ice": 2124926395, + "PP_Glowbug_Life": 601367299, + "PP_Glowbug_Myth": 592978024, + "PP_Glowbug_Storm": 61190446, + "PP_DumboOctopus_B": 968448823, + "PP_DumboOctopus_C": 968383287, + "PP_BananaSpider_01": 1074383522, + "PP_BananaSpider_02": 1080674978, + "PP_BananaSpider_03": 1078577826, + "Guest_HG_NM_BeardDragon_Base_C_01": 82913785, + "Guest_HG_NM_BeardDragon_Base_C_02": 82913786, + "Guest_HG_NM_BeardDragon_Base_C_03": 82913787, + "Guest_HG_NM_Glowbug_Base_C_01": 544959703, + "Guest_HG_NM_Glowbug_Base_C_02": 544955607, + "Guest_HG_NM_Glowbug_Base_C_03": 544951511, + "Guest_HG_NM_Glowbug_Base_C_04": 544947415, + "Guest_HG_NM_Glowbug_Base_C_05": 544943319, + "Guest_HG_NM_Glowbug_Base_C_06": 544939223, + "Guest_HG_NM_Glowbug_Base_C_07": 544935127, + "MNT_BouquetofFlowers": 1511180560, + "PP_Piggle_Rainbow": 91081383, + "MNT_Sabertooth_FlameSaber": 1949516909, + "Guest_HG_NM_BeardDragon_Base_A_01": 83175929, + "Guest_HG_NM_BeardDragon_Base_A_02": 83175930, + "Guest_HG_NM_BeardDragon_Base_A_03": 83175931, + "Guest_HG_NM_BeardDragon_Base_B_01": 83044857, + "Guest_HG_NM_BeardDragon_Base_B_02": 83044858, + "Guest_HG_NM_BeardDragon_Base_B_03": 83044859, + "Guest_HG_NM_Glowbug_Base_B_01": 8088791, + "Guest_HG_NM_Glowbug_Base_B_02": 8084695, + "Guest_HG_NM_Glowbug_Base_B_03": 8080599, + "Guest_HG_NM_Glowbug_Base_B_04": 8076503, + "Guest_HG_NM_Glowbug_Base_B_05": 8072407, + "Guest_HG_NM_Glowbug_Base_B_06": 8068311, + "Guest_HG_NM_Glowbug_Base_B_07": 8064215, + "Guest_HG_NM_Glowbug_Base_A_01": 1618701527, + "Guest_HG_NM_Glowbug_Base_A_02": 1618697431, + "Guest_HG_NM_Glowbug_Base_A_03": 1618693335, + "Guest_HG_NM_Glowbug_Base_A_04": 1618689239, + "Guest_HG_NM_Glowbug_Base_A_05": 1618685143, + "Guest_HG_NM_Glowbug_Base_A_06": 1618681047, + "Guest_HG_NM_Glowbug_Base_A_07": 1618676951, + "MNT_SummerSOF2023": 1636120912, + "PP_Cyclops_Fire": 7821755, + "PP_Death_Elf": 1535744155, + "PP_Newt": 1438123483, + "PP_Echidna": 735439358, + "MNT_Wombat": 580544786, + "Transformation_BG_NinjaPig_Balance": 1799661438, + "Transformation_BG_Cyclops_Ice": 647975824, + "Transformation_BG_Minotaur_Storm": 1005667041, + "Transformation_GR_Parasaur_Priest_Ice": 1101466351, + "Transformation_GR_Parasaur_Priest_Fire": 892193041, + "Transformation_GR_Parasaur_Priest_Storm": 1525882116, + "Transformation_GR_Parasaur_Priest_Balance": 1127637476, + "Guest_GR_AZ_Parasaur_Undead_B_01": 322587487, + "MNT_WitchCat": 1167097888, + "PP_RolyPoly": 578538330, + "PP_Capybara_B": 628131532, + "MNT_OutbackTruck": 1815527801, + "PP_PoodleSailor": 2137704795, + "MNT_PolarianCannon": 2103490826, + "PP_TazmanianDevil": 1773548765, + "Guest_SKB_AZ_Ixcax_A_100": 556560994, + "Guest_SKB_AZ_Ixcax_A_150": 556610146, + "Guest_SKB_AZ_Ixcax_A_50": 564951650, + "MNT_GhoulsShovel": 2035610946, + "PP_CrystalBdayDragon": 1897078804, + "PP_SunGobblerBall": 1522469440, + "PP_Sun_GreenGobbler": 1337690394, + "MNT_2P_AutumnTreant": 1063435527, + "PP_AutumnTreant": 561077291, + "MNT_FlyingMonkey": 490807393, + "PP_BabyPlantMonster": 2076646587, + "MNT_PlantCreature_A": 1802823265, + "Transformation_BG_Fairy_Fire": 2065252898, + "Transformation_BG_Krok_Myth": 277926564, + "Transformation_BG_RatThief_Life": 1167758651, + "Transformation_BG_Elf_Balance": 1628238937, + "Transformation_BG_Colossus_Death": 184392004, + "Transformation_FortressPod": 139738335, + "P_Wombat_POLYMORPH": 1132264953, + "PP_SharkWobbegong": 1994247222, + "PP_ChineseNYDragon": 1126999021, + "PP_JingleBellRock": 1076037919, + "PP_Krok_Mummy_Myth": 438487583, + "PP_Cyclops_Ice": 1476966187, + "MNT_OutbackTruckB": 1813299577, + "MNT_EvilSnowmanBall": 758818712, + "MNT_ThanksgivingGobbler": 1760011910, + "Guest_WL_Ghost_LostSoul_A_01": 1224111704, + "Guest_WL_Kangaroo_Drover_F_01": 2025562931, + "Guest_WL_Spider_WarriorMage_C_01": 1296557888, + "Guest_WL_Spider_WarriorMage_C_02": 1430775616, + "Guest_WL_Spider_WarriorMage_C_03": 1564993344, + "Guest_WL_Spider_WarriorMage_C_04": 1699211072, + "Guest_WL_Spider_WarriorMage_C_05": 1833428800, + "Guest_WL_Spider_WarriorMage_C_06": 1967646528, + "Guest_WL_Spider_WarriorMage_C_07": 2101864256, + "Guest_SKB_KR_Lightbane_A_100": 837930677, + "Guest_SKB_KR_Lightbane_A_160": 837930669, + "Guest_SKB_KR_Lightbane_A_50": 1309555019, + "Transformation_WL_Phantasmanian_DevilTemplate": 384891502, + "MNT_2P_LeaflessTreant": 623083386, + "PP_Minotaur_Ice": 700151737, + "MNT_Scooter_G": 737125252, + "Guest_WL_Frog_Owner_B_01": 767864686, + "MNT_SilentKnight": 646654812, + "Guest_WL_TRex_Base_A_01": 1842562033, + "Guest_WL_TRex_Base_B_01": 304921616, + "PP_Groundhog": 108643243, + "Guest_NV_Unicorn_Guard_C_04": 1845621, + "MNT_EmuPunk": 647315080, + "MNT_HeartBalloon": 798826551, + "PP_ValentineHoppers": 968693964, + "MNT_SpringSOF2024_Heckhound": 453640548, + "Guest_AQ-Centaur-Arion": 1856508139, + "Guest_AQ-Centaur-Artemis": 333294011, + "Guest_AQ-Horse-Sea": 724896200, + "Guest_KR_Horse_Warlord_A_Bossfight": 1302284326, + "Guest_KR_Horse_Warlord_A_BossfightSP": 1300726822, + "Guest_KR_Zebra_Thrall_A": 1250265667, + "Guest_KR_Zebra_Thrall_A_Boss_Minion": 345677011, + "Guest_KR_Zebra_Thrall_A_Gallery": 1520303483, + "Guest_KH-Gray-Horse-40": 1802231403, + "Guest_KH-Gray-Horse-20": 1802231307, + "Guest_G14-BP-Unicorn_Fencer_Boss": 1602044152, + "Guest_Horse-Merc-Brown-L37": 1831175255, + "Guest_Horse-Merc-Tan-L39": 1363854837, + "Guest_Horse-Merc-Tan-L39-1": 2085275127, + "Guest_Horse-Merc-Gray-MSBoss-L39": 1863452041, + "Guest_Horse-Merc-Gray-L39": 2039135564, + "Guest_Horse-Merc-Tan-L38": 1363330549, + "Guest_WC_Horse_Mercenary_Roberto": 891924774, + "Guest_ZF-Nathi-Yellowstripe-R11": 1505157721, + "Guest_ZF-TseTse-Main-R11-Boss": 114927854, + "Guest_ZF-TseTse-Elephant-R11": 894147273, + "Guest_ZF-Zebra-Impi-Raider-R11": 1378242919, + "Guest_ZF-Zebra-Warrior-Male-R10-1": 1791906265, + "Guest_ZF-Zebra-Senzan-Zebu-R10-Boss": 373712721, + "Guest_ZF-Zebra-Shaka-Zebu-R10-Boss": 662142985, + "Guest_ZF-Zebra-Warrior-Female-R10-02": 1507835670, + "Guest_ZF-Zebra-Warrior-Male-R10": 47075786, + "Guest_ZF-Zebra-Warrior-Male-R10-02": 1791906714, + "Guest_ZF-Zebra-Warrior-Male-R10-03": 1791906746, + "Guest_ZF-Zebra-Warrior-Male-R10-05": 1791906682, + "Guest_ZF-Zebra-Warrior-Male-R10-2": 1791906268, + "Guest_ZF_Zebra_Spectral_Guardian-R11": 431970996, + "Guest_CC_Horse_Apoc_A_01": 644668374, + "Guest_CC_Horse_Apoc_B_01": 644668390, + "Guest_CC_Horse_Apoc_C_01": 644668406, + "Guest_CC_Horse_Apoc_D_01": 644668294, + "Guest_CC_Horse_Apoc_D_02": 645192582, + "Guest_CC_Unicorn_CorsairF_B_01": 1378532506, + "Guest_CC_Unicorn_Duelist_B_01": 64891542, + "Guest_CC_Unicorn_Guard_B_01": 1075063242, + "Guest_CC_Unicorn_Guard_B_02": 1075063238, + "Guest_CC_Unicorn_Guard_B_03": 1075063234, + "Guest_NV_Horse_HordeSoldier_A_01": 504396960, + "Guest_NV_Horse_HordeSoldier_A_02": 101743776, + "Guest_NV_Horse_HordeOfficer_A_01": 343600992, + "Guest_NV_Horse_HordeSoldier_A_03": 235961504, + "Guest_NV_Horse_HordeOfficer_A_02": 209383264, + "Guest_NV_Horse_AberrantTungAk_A_01": 952263441, + "Guest_NV_Horse_AberrantTungAk_A_02": 952263537, + "Guest_NV_Horse_TungAk_B_01": 1194718672, + "Guest_NV_Horse_TungAk_B_02": 657847760, + "Guest_NV_Horse_HordeOfficer_B_01": 343596896, + "Guest_NV_Horse_HordeOfficer_B_02": 209379168, + "Guest_NV_Horse_TungAk_A_01": 1194669520, + "Guest_NV_Unicorn_Guard_C_01": 1845601, + "Guest_NV_Unicorn_Guard_A_01": 797025, + "Guest_NV_Unicorn_AberrantGuard_A_01": 739851573, + "Guest_NV_Unicorn_Guard_C_02": 1845613, + "Guest_NV_Unicorn_Guard_C_03": 1845609, + "Guest_NV_Unicorn_AberrantGuard_A_02": 739848501, + "Guest_NV_Unicorn_Guard_A_02": 797037, + "Guest_NV_Unicorn_AberrantGuard_A_03": 739849525, + "Guest_NV_Unicorn_AberrantGuard_A_04": 739846453, + "Guest_NV_Horse_HordeOfficer_A_03": 75165536, + "Guest_NV_Horse_HordeSoldier_A_04": 907050144, + "Guest_NV_Horse_HordeSoldier_A_05": 1041267872, + "Guest_NV_Horse_HordeSoldier_C_01": 504388768, + "Guest_HG_TRAIN_Horse_MustangFencerF_A_Balance_50": 871182987, + "Guest_HG_TRAIN_Horse_MustangFencerF_A_Balance_75": 871176715, + "Guest_HG_TRAIN_Horse_MustangFencerF_A_Life_100": 886489645, + "Guest_HG_TRAIN_Horse_MustangFencerF_A_Balance_25": 871177035, + "Guest_HG_TRAIN_Horse_MustangFencerF_A_Balance_100": 872231819, + "Guest_HG_TRAIN_Horse_MustangFencerF_A_Life_140": 1960231469, + "Guest_HG_TRAIN_Horse_MustangFencerF_B_100": 2089957067, + "Guest_HG_TRAIN_Horse_MustangFencerF_A_Life_25": 1700184589, + "Guest_HG_TRAIN_Horse_MustangFencerF_A_Life_50": 920044045, + "Guest_HG_TRAIN_Horse_MustangFencerF_A_Life_75": 1742127629, + "Guest_HG_TRAIN_Horse_MustangFencerF_A_Balance_140": 872223627, + "Guest_HG_TRAIN_Horse_MustangFencerF_B_50": 2089952970, + "Guest_HG_TRAIN_Horse_MustangFencerF_B_75": 57530654, + "Guest_HG_TRAIN_Horse_MustangFencerF_B_140": 2089957099, + "Guest_HG_TRAIN_Horse_MustangFencerF_B_25": 1131272477, + "Guest_LM_Horse_Explorer_A_01_Hard": 1711837140, + "Guest_WL_Unicorn_Guard_A_01": 1074538935, + "Guest_WL_Unicorn_CorsairF_E_01": 1378532603, + "Guest_WL_Unicorn_Warlord_A_01": 1321310496, + "Guest_KH-Gray-Horse-1": 1802239547, + "Guest_KH-Gray-Horse-60": 1802231371, + "Guest_KH-Gray-Horse-80": 1802231467, + "Transformation_BG_NinjaPig_Ice": 186026527, + "Transformation_BG_Cyclops_Storm": 897316984, + "PP_MinotaurBalance": 1344665951, + "PP_OrthusMoon": 1804503950, + "PP_CoolPineapple": 1149318906, + "PP_TwinkleStars": 766378011, + "PP_Scroll": 1613313091, + "PP_Colossus_Death": 40713075, + "PP_ColossusDeath": 530964029, + "PP_KILiveRock": 1975550570, + "MNT_Outrigger": 1417937299, + "MNT_BookWyrm": 2080129190, + "MNT_RacingSnail": 1996220963, + "MNT_UmbrellaCloud": 145762615, + "PP_PropellerCat": 2094718580, + "MNT_TRex_Shirt": 586746001, + "MNT_Swarm_Bee": 1625228695, + "MNT__CelestialMoon": 968360256, + "Guest_ME_Sinbad_IronSultan_150": 2001676223, + "Guest_ME_Sinbad_Cyclops_150": 1968943689, + "Guest_ME_Sinbad_Skeleton_150": 1031490819, + "Guest_ME_Sinbad_Colossus_150": 1727675806, + "Guest_ME_Sinbad_Skeleton_150_02": 970505475, + "Guest_ME_Sinbad_Wyrm_150": 19314443, + "Guest_ZF-Zebra-Inzinzebu-Bandit-R11": 430262550, + "Guest_ZF-Zebra-Warrior-Male-R10-04": 1791906650, + "PP_TwinkleStars_02": 805304347, + "PP_TwinkleStars_03": 803207195, + "PP_TwinkleStars_01": 799012891, + "Transformation_BodleianHarrow": 609627870, + "Guest_HG_Gryphon_OwlStatue_A_01_L170": 77756046, + "Guest_HG_Gryphon_OwlStatue_A_02_L170": 73561742, + "Guest_HG_Gryphon_OwlStatue_A_01_L100": 77752974, + "Guest_HG_Gryphon_OwlStatue_A_02_L100": 73558670, + "Guest_HG_Gryphon_OwlStatue_A_01_L50": 78277134, + "Guest_HG_Gryphon_OwlStatue_A_02_L50": 74082830, + "MNT_SummerSOF2024_JudgementWings": 1078163967, + "MNT_Pegasus_E": 131704054, + "MNT_PolarisHero": 665176426, + "PP_Duckana": 1128961578, + "PP_QueenBee": 833291695, + "Transformation_BG_Draconian_Balance": 2078940682, + "Transformation_BG_WolfWarrior_Fire": 1762248682, + "Transformation_BG_Minotaur_Death": 309090657, + "PP_WolfWarrior_Fire": 685685256, + "PP_WolfWarrior_Death": 1857202724, + "Guest_ME-GTAV01-WyrmBoss-150": 1482208618, + "Guest_ME_SpectreOfB_L150": 684104791, + "Guest_ME_MD_MacDeath_L150": 1128977615, + "Guest_ME_Pig_BalanceWizardA_L150": 959913724, + "Guest_ME_Pig_BalanceWizardB_L150": 959913712, + "Guest_ME_Pig_BalanceWizardC_L150": 959913716, + "Guest_ME_Pig_FireWizard_L150": 964392255, + "Guest_ME_Pig_IceWizardF_L150": 86941026, + "Guest_ME_Pig_MythWizard_L150": 964051241, + "Guest_ME_Pig_StormWizardF_L150": 2016383602, + "Guest_ME_Clock_Clockworker_L150": 1424569772, + "Guest_ME_Clock_ClockworkSpanner_L150": 1966824609, + "Guest_ME_Clock_Lugs_L150": 370290904, + "Guest_ME_Clock_Lucia_L150": 1857768409, + "MNT_EvilChair": 339577702, + "PP_Cyclops_Storm": 621464512, + "PP_Krokomummy_Life": 462432735, + "Transformation_CL_Rematch_Crustacean": 1686865207, + "Transformation_CL_Rematch_Protector": 1893951532, + "Transformation_CL_Rematch_Angler": 120412196, + "Transformation_CL_Rematch_Piscean": 1624106070, + "Transformation_Zebra_Template": 1900548493, + "Transformation_Zebra2_Template": 325099540, + "Transformation_Zebra3_Template": 325099524, + "Transformation_Zebra4_Template": 325099636, + "MNT_SweetSixteenBirthday": 1009398096, + "MNT_2P_TRex_Bones": 1618543266, + "MNT_SpringBumperCar": 1725007788, + "PP_WinterGoblin": 2025052443, + "PP_OnyxAnubis": 1552575189, + "PP_OttomanCat": 223541582, + "MNT_HolidayYeti": 780983974, + "MNT_IceSled": 979912604, + "MNT_TurtleDoves": 1850191638, + "MNT_KrokChariot": 559783620, + "MNT_Mustang": 1775949401, + "MNT_PumpkinBall": 382849054, + "Transformation_BG_Fairy_Storm": 836920873, + "Transformation_BG_Elf_Myth": 1506493664, + "Transformation_NinjaPig_Life": 816802847, + "Transformation_BG_Krok_Fire": 1060580712, + "Transformation_BG_Colossus_Balance": 1067963041, + "Transformation_BG_NinjaPig_Life": 441460895, + "PP_Penguin_03": 1623028104, + "Transformation_Duck_Librarian_B": 864067551, + "Transformation_Duck_Librarian_A": 859873247, + "Transformation_Duck_Adventurer": 194560769, + "Transformation_Gummy_Bunny_C": 1298087941, + "Transformation_Frog_Horned_A": 837201339, + "Transformation_Glowbug_Storm": 2096380446, + "Transformation_Marshmallow_Critter_A": 1036335317, + "Transformation_Snipe_Base_B": 232132109, + "Transformation_Snowball": 915248481, + "Transformation_Wombat_Base": 333435450, + "Transformation_Human_Malistaire": 1414887773, + "Transformation_Morganthe_E": 1745180054, + "Transformation_Spider_Grandfather": 1131773979, + "Transformation_Khrulhu_Dasein_B": 367878762, + "Transformation_Devourer_Base": 698770016, + "Transformation_Alien_Meteor": 638746168, + "Transformation_Nightmare_Malus": 704212821, + "Transformation_Daemon_Personal": 278266463, + "PP_ValentinesDay": 810003364, + "PP_BabyHippo": 422858138, + "PP_Aardwold": 1592150119, + "PP_Aardwold_C": 1902528613, + "MNT_Cobra": 472847981, + "MNT_Serpopard": 1629558909, + "MNT_Serpopard_B": 1629556867, + "MNT_Serpopard_C": 1629556931, + "PP_Fairy_Fire": 1847789544, + "MNT_Mustang_B": 1448793691, + "PP_FireElfMyth": 1933609060, + "MNT_KT-BoatRide": 1560860110, + "MNT_ShadowMagic": 2095978357, + "MNT_MardiGrasFloat_A": 1740674432, + "PP_ChineseNYSnake": 988201940, + "MNT_AnubisDog": 1995079956, + "PP_ShadowImp_A": 1604849432, + "PP_ShadowImp_B": 1604849438, + "PP_ShadowImp_C": 1604849436, + "MNT_ShadowMagic_B": 2093870965, + "MNT_ShadowMagic_C": 2093805429, + "Guest_KT_SE_Tritops_Warrior_I_01": 97516901, + "Guest_KT_SE_DS_Draconian_Model_01": 1916095079, + "Guest_KT_SE_Beetle_Scarab_C_01_L50": 1064004307, + "Guest_KT_SE_Roach_Warrior_C_03": 1872574203, + "Guest_KT_SE_Roach_Warrior_C_04": 1871918843, + "Guest_KT_SE_Roach_Warrior_C_05": 1871787771, + "Guest_KT_SE_Beetle_Scarab_C_01": 1353410759, + "Guest_KT_SE_Mander_Citizen_B_01_L50": 2044509396, + "Guest_KT_SE_Mander_CitizenF_B_01_L50": 164327682, + "Guest_KT_SE_Treant_Tormented_A_01": 1359800879, + "Guest_KT_SE_Treant_Base_A_01": 765512948, + "Guest_KT_SE_Mander_Citizen_F_D_05": 171244620, + "Guest_KT_SE_Mander_CitizenF_D_01": 163791037, + "Guest_KT_SE_Mander_CitizenF_D_02": 298008765, + "Guest_KT_SE_Mander_CitizenF_D_03": 432226493, + "Guest_KT_SE_Mander_CitizenF_D_04": 566444221, + "Guest_KT_SE_Mander_MummyF_A_01": 964349080, + "Guest_KT_SE_Mander_MummyF_A_02": 964480152, + "Guest_KT_SE_MC_Wraith_Model_01": 1101442118, + "Guest_KT_SE_Mander_CitizenF_B_02": 298000573, + "MNT_Wheelbarrow": 614248817, + "MNT_StubbornLlama": 221089074 } - }, - "m_nDuration": { - "type": "int", - "id": 2, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1110167982 - }, - "m_effectID": { - "type": "unsigned int", - "id": 3, - "offset": 88, - "flags": 24, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2347630439 - }, - "m_imageFilename": { - "type": "std::string", - "id": 4, - "offset": 112, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2813328063 - }, - "m_iconIndex": { - "type": "unsigned int", - "id": 5, - "offset": 144, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1265133262 - }, - "m_soundOnActivate": { - "type": "std::string", - "id": 6, - "offset": 152, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1956929714 - }, - "m_soundOnTarget": { - "type": "std::string", - "id": 7, - "offset": 184, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3444214056 - }, - "m_targetParticleEffect": { - "type": "std::string", - "id": 8, - "offset": 216, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3048234723 - }, - "m_overheadMessage": { - "type": "std::string", - "id": 9, - "offset": 248, - "flags": 8388639, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1701018190 - }, - "m_requirements": { - "type": "class RequirementList", - "id": 10, - "offset": 280, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2840988582 } } }, - "486489179": { - "name": "class CastleToursOption", + "535319852": { + "name": "class AdvPvPLeagueAwardInfo*", "bases": [ - "ServiceOptionBase", "PropertyClass" ], - "hash": 486489179, + "hash": 535319852, "properties": { - "m_serviceName": { + "m_leagueType": { "type": "std::string", "id": 0, "offset": 72, - "flags": 31, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2206028813 + "hash": 3327951024 }, - "m_iconKey": { - "type": "std::string", + "m_awardInfo": { + "type": "class SharedPointer", "id": 1, - "offset": 168, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2457138637 - }, - "m_displayKey": { - "type": "std::string", - "id": 2, "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3023276954 - }, - "m_serviceIndex": { - "type": "unsigned int", - "id": 3, - "offset": 204, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2103126710 - }, - "m_forceInteract": { - "type": "bool", - "id": 4, - "offset": 200, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1705789564 - } - } - }, - "886031561": { - "name": "class Reco::RecoItemData", - "bases": [ - "PropertyClass" - ], - "hash": 886031561, - "properties": { - "m_templateID": { - "type": "int", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1075344419 - }, - "m_rank": { - "type": "int", - "id": 1, - "offset": 76, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 219803942 - }, - "m_secondaryRank": { - "type": "int", - "id": 2, - "offset": 80, - "flags": 31, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 2066929134 + "pointer": true, + "hash": 2862912855 } } }, - "1231848766": { - "name": "class SharedPointer", + "1815822310": { + "name": "class SharedPointer", "bases": [ - "PlayerStatueStitchBlob", - "PlayerStatueBlob", "PropertyClass" ], - "hash": 1231848766, + "hash": 1815822310, "properties": { - "m_packedName": { + "m_passName": { "type": "std::string", "id": 0, "offset": 72, - "flags": 31, + "flags": 23, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1805208228 + "hash": 2647581395 }, - "m_characterBuffer": { - "type": "std::string", + "m_hasPass": { + "type": "bool", "id": 1, "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1972275298 - }, - "m_equipmentBuffer": { - "type": "std::string", - "id": 2, - "offset": 136, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1511030957 - }, - "m_emoteID": { - "type": "unsigned int", - "id": 3, - "offset": 168, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 691533780 - } - } - }, - "87787258": { - "name": "class SharedPointer", - "bases": [ - "GameEffectTimerPopupTrigger", - "GameEffectTimerTrigger", - "PropertyClass" - ], - "hash": 87787258, - "properties": { - "m_radius": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 989410271 - }, - "m_triggerT": { - "type": "float", - "id": 1, - "offset": 76, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2138083583 - }, - "m_popupKey": { - "type": "std::string", - "id": 2, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3434427096 - } - } - }, - "884122233": { - "name": "class CombatGardeningXPEffect", - "bases": [ - "GameEffectBase", - "PropertyClass" - ], - "hash": 884122233, - "properties": { - "m_currentTickCount": { - "type": "double", - "id": 0, - "offset": 80, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2533274692 - }, - "m_effectNameID": { - "type": "unsigned int", - "id": 1, - "offset": 96, - "flags": 63, + "flags": 23, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1204067144 + "hash": 1743355078 }, - "m_bIsOnPet": { + "m_grantedByRight": { "type": "bool", "id": 2, - "offset": 73, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 522593303 - }, - "m_originatorID": { - "type": "gid", - "id": 3, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1131810019 - }, - "m_itemSlotID": { - "type": "unsigned int", - "id": 4, - "offset": 112, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1895747595 - }, - "m_internalID": { - "type": "int", - "id": 5, - "offset": 92, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1643137924 - }, - "m_endTime": { - "type": "unsigned int", - "id": 6, - "offset": 88, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 716479635 - }, - "m_xpPercent": { - "type": "int", - "id": 7, - "offset": 128, - "flags": 31, + "offset": 105, + "flags": 23, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 755316563 + "hash": 498060849 } } }, - "87640674": { - "name": "class Duel*", + "1381951784": { + "name": "class SharedPointer", "bases": [ "PropertyClass" ], - "hash": 87640674, + "hash": 1381951784, "properties": { - "m_flatParticipantList": { - "type": "class SharedPointer", + "m_pReqs": { + "type": "class SharedPointer", "id": 0, - "offset": 80, - "flags": 31, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 3375244498 - }, - "m_dynamicTeams": { - "type": "class SharedPointer", - "id": 1, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3227206264 - }, - "m_dynamicTurn": { - "type": "unsigned int", - "id": 2, - "offset": 120, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1168494811 - }, - "m_dynamicTurnSubcircles": { - "type": "unsigned int", - "id": 3, - "offset": 124, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 618930538 - }, - "m_dynamicTurnCounter": { - "type": "int", - "id": 4, - "offset": 128, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 543404296 - }, - "m_duelID.m_full": { - "type": "unsigned __int64", - "id": 5, "offset": 72, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1024980477 - }, - "m_planningTimer": { - "type": "float", - "id": 6, - "offset": 144, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1142844143 - }, - "m_position": { - "type": "class Vector3D", - "id": 7, - "offset": 148, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3697900983 - }, - "m_yaw": { - "type": "float", - "id": 8, - "offset": 160, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 357256328 - }, - "m_disableTimer": { - "type": "bool", - "id": 9, - "offset": 179, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1571862248 - }, - "m_tutorialMode": { - "type": "bool", - "id": 10, - "offset": 180, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1704245836 - }, - "m_firstTeamToAct": { - "type": "int", - "id": 11, - "offset": 184, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1499447620 - }, - "m_combatResolver": { - "type": "class CombatResolver*", - "id": 12, - "offset": 136, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1627811879 - }, - "m_bPVP": { - "type": "bool", - "id": 13, - "offset": 176, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 221690795 - }, - "m_bBattleground": { - "type": "bool", - "id": 14, - "offset": 177, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1158269184 - }, - "m_bRaid": { - "type": "bool", - "id": 15, - "offset": 178, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 791201781 - }, - "m_roundNum": { - "type": "int", - "id": 16, - "offset": 192, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1461215570 - }, - "m_executionPhaseTimer": { - "type": "float", - "id": 17, - "offset": 200, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1645062877 - }, - "m_executionPhaseCombatActions": { - "type": "class CombatAction", - "id": 18, - "offset": 208, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 270648678 - }, - "m_sigilActions": { - "type": "class CombatAction", - "id": 19, - "offset": 224, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2176432675 - }, - "m_shadowPipRule": { - "type": "class SharedPointer", - "id": 20, - "offset": 280, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2692865990 - }, - "m_gameObjectAnimStateTracker": { - "type": "class GameObjectAnimStateTracker", - "id": 21, - "offset": 296, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3120084989 - }, - "m_duelPhase": { - "type": "enum kDuelPhase", - "id": 22, - "offset": 196, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1813818086, - "enum_options": { - "kPhase_Starting": 0, - "kPhase_PrePlanning": 1, - "kPhase_Planning": 2, - "kPhase_PreExecution": 3, - "kPhase_Execution": 4, - "kPhase_Resolution": 5, - "kPhase_Victory": 6, - "kPhase_Ended": 7, - "kPhase_MAX": 10 - } - }, - "m_duelModifier": { - "type": "class SharedPointer", - "id": 23, - "offset": 264, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3330438158 - }, - "m_initiativeSwitchMode": { - "type": "enum Duel::SigilInitiativeSwitchMode", - "id": 24, - "offset": 384, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1258091520, - "enum_options": { - "InitiativeSwitchMode_None": 0, - "InitiativeSwitchMode_Reroll": 1, - "InitiativeSwitchMode_Switch": 2 - } - }, - "m_initiativeSwitchRounds": { - "type": "int", - "id": 25, - "offset": 388, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 540229885 - }, - "m_combatRules": { - "type": "class SharedPointer", - "id": 26, - "offset": 464, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 3327225763 - }, - "m_gameEffectInfo": { - "type": "class SharedPointer", - "id": 27, - "offset": 496, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2275096584 - }, - "m_pStatEffects": { - "type": "class SharedPointer", - "id": 28, - "offset": 512, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1275229758 - }, - "m_alternateTurnCombatRule": { - "type": "class SharedPointer", - "id": 29, - "offset": 480, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, "pointer": true, - "hash": 1715882395 - }, - "m_altTurnCounter": { - "type": "int", - "id": 30, - "offset": 456, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1434810564 - }, - "m_originalFirstTeamToAct": { - "type": "int", - "id": 31, - "offset": 188, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 560350457 - }, - "m_executionOrder": { - "type": "enum kDuelExecutionOrder", - "id": 32, - "offset": 528, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3362082097, - "enum_options": { - "kDEO_Sequential": 0, - "kDEO_Alternating": 1 - } - }, - "m_noHenchmen": { - "type": "bool", - "id": 33, - "offset": 532, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1163855414 - }, - "m_SpellTruncation": { - "type": "bool", - "id": 34, - "offset": 540, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1257440762 - }, - "m_shadowThresholdFactor": { - "type": "float", - "id": 35, - "offset": 548, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2104355177 - }, - "m_shadowPipRatingFactor": { - "type": "float", - "id": 36, - "offset": 552, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1061434314 - }, - "m_defaultShadowPipRating": { - "type": "float", - "id": 37, - "offset": 556, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1544572080 - }, - "m_shadowPipThresholdTeam0": { - "type": "float", - "id": 38, - "offset": 560, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 447039594 - }, - "m_shadowPipThresholdTeam1": { - "type": "float", - "id": 39, - "offset": 564, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 447039595 - }, - "m_maxArchmasteryTeam0": { - "type": "float", - "id": 40, - "offset": 568, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 300185527 - }, - "m_maxArchmasteryTeam1": { - "type": "float", - "id": 41, - "offset": 572, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 300185528 - }, - "m_scalarDamage": { - "type": "float", - "id": 42, - "offset": 600, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1865068300 - }, - "m_scalarResist": { - "type": "float", - "id": 43, - "offset": 604, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 270448583 - }, - "m_scalarPierce": { - "type": "float", - "id": 44, - "offset": 608, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 196427621 - }, - "m_damageLimit": { - "type": "float", - "id": 45, - "offset": 612, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 271286357 - }, - "m_dK0": { - "type": "float", - "id": 46, - "offset": 616, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 357232662 - }, - "m_dN0": { - "type": "float", - "id": 47, - "offset": 620, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 357232761 - }, - "m_resistLimit": { - "type": "float", - "id": 48, - "offset": 624, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1192834544 - }, - "m_rK0": { - "type": "float", - "id": 49, - "offset": 628, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 357247908 - }, - "m_rN0": { - "type": "float", - "id": 50, - "offset": 632, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 357248007 - }, - "m_fullPartyGroup": { - "type": "bool", - "id": 51, - "offset": 636, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1888593059 - }, - "m_matchTimer": { - "type": "float", - "id": 52, - "offset": 656, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1510935909 - }, - "m_bonusTime": { - "type": "int", - "id": 53, - "offset": 660, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1757496496 - }, - "m_passPenalty": { - "type": "int", - "id": 54, - "offset": 664, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 982951662 - }, - "m_yellowTime": { - "type": "int", - "id": 55, - "offset": 668, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1017028741 - }, - "m_redTime": { - "type": "int", - "id": 56, - "offset": 672, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1909556708 - }, - "m_minTurnTime": { - "type": "int", - "id": 57, - "offset": 676, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 652524886 - }, - "m_bIsPlayerTimedDuel": { - "type": "bool", - "id": 58, - "offset": 637, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 857311611 - }, - "m_hideNoncombatantDistance": { - "type": "float", - "id": 59, - "offset": 536, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1733017888 - } - } - }, - "486624161": { - "name": "class ObstacleCoursePusherBehaviorTemplate*", - "bases": [ - "ObstacleCourseObstaclePathBaseTemplate", - "ObstacleCourseObstacleBehaviorTemplate", - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 486624161, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - }, - "m_rate": { - "type": "float", - "id": 1, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 310005283 - }, - "m_penaltyTime": { - "type": "float", - "id": 2, - "offset": 124, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2083389507 - }, - "m_totalObstacleSize": { - "type": "class Vector3D", - "id": 3, - "offset": 128, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2379878414 - }, - "m_bounds": { - "type": "class Vector3D", - "id": 4, - "offset": 152, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1948083181 - }, - "m_orientToPath": { - "type": "bool", - "id": 5, - "offset": 176, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 655036148 - }, - "m_heightUp": { - "type": "float", - "id": 6, - "offset": 140, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2208713013 - }, - "m_heightDown": { - "type": "float", - "id": 7, - "offset": 144, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 655333896 - }, - "m_changeDirectionSoundList": { - "type": "class WeightedList", - "id": 8, - "offset": 184, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1487918739 - } - } - }, - "883335801": { - "name": "class CombatGardeningXPEffect*", - "bases": [ - "GameEffectBase", - "PropertyClass" - ], - "hash": 883335801, - "properties": { - "m_currentTickCount": { - "type": "double", - "id": 0, - "offset": 80, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2533274692 + "hash": 2565964996 }, - "m_effectNameID": { - "type": "unsigned int", + "m_pEffect": { + "type": "class SharedPointer", "id": 1, - "offset": 96, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1204067144 - }, - "m_bIsOnPet": { - "type": "bool", - "id": 2, - "offset": 73, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 522593303 - }, - "m_originatorID": { - "type": "gid", - "id": 3, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1131810019 - }, - "m_itemSlotID": { - "type": "unsigned int", - "id": 4, - "offset": 112, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1895747595 - }, - "m_internalID": { - "type": "int", - "id": 5, - "offset": 92, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1643137924 - }, - "m_endTime": { - "type": "unsigned int", - "id": 6, "offset": 88, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 716479635 - }, - "m_xpPercent": { - "type": "int", - "id": 7, - "offset": 128, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 755316563 - } - } - }, - "1653798750": { - "name": "class DynamicTriggerTemplate*", - "bases": [ - "GameObjectTemplate", - "CoreTemplate", - "PropertyClass" - ], - "hash": 1653798750, - "properties": { - "m_behaviors": { - "type": "class BehaviorTemplate*", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, "pointer": true, - "hash": 1197808594 - }, - "m_objectName": { - "type": "std::string", - "id": 1, - "offset": 96, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2154940147 - }, - "m_templateID": { - "type": "unsigned int", - "id": 2, - "offset": 128, - "flags": 16777223, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1286746870 - }, - "m_visualID": { - "type": "unsigned int", - "id": 3, - "offset": 132, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1118778894 - }, - "m_adjectiveList": { - "type": "std::string", - "id": 4, - "offset": 248, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 3195213318 - }, - "m_exemptFromAOI": { - "type": "bool", - "id": 5, - "offset": 240, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1457879059 - }, - "m_displayName": { - "type": "std::string", - "id": 6, - "offset": 168, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2446900370 - }, - "m_description": { - "type": "std::string", - "id": 7, - "offset": 136, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1649374815 - }, - "m_nObjectType": { - "type": "enum ObjectType", - "id": 8, - "offset": 200, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2118905880, - "enum_options": { - "OT_UNDEFINED": 0, - "OT_PLAYER": 1, - "OT_NPC": 2, - "OT_PROP": 3, - "OT_OBJECT": 4, - "OT_HOUSE": 5, - "OT_KEY": 6, - "OT_OLD_KEY": 7, - "OT_DEED": 8, - "OT_MAIL": 9, - "OT_RECIPE": 17, - "OT_EQUIP_HEAD": 10, - "OT_EQUIP_CHEST": 11, - "OT_EQUIP_LEGS": 12, - "OT_EQUIP_HANDS": 13, - "OT_EQUIP_FINGER": 14, - "OT_EQUIP_FEET": 15, - "OT_EQUIP_EAR": 16, - "OT_BUILDING_BLOCK": 18, - "OT_BUILDING_BLOCK_SOLID": 19, - "OT_GOLF": 20, - "OT_DOOR": 21, - "OT_PET": 22, - "OT_FABRIC": 23, - "OT_WINDOW": 24, - "OT_ROOF": 25, - "OT_HORSE": 26, - "OT_STRUCTURE": 27, - "OT_HOUSING_TEXTURE": 28, - "OT_PLANT": 29 - } - }, - "m_sIcon": { - "type": "std::string", - "id": 9, - "offset": 208, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306259831 - } - } - }, - "882639137": { - "name": "class SharedPointer", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 882639137, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 + "hash": 400541736 } } }, - "1231933994": { - "name": "class DynamicSigilTurn*", + "970573129": { + "name": "class SharedPointer", "bases": [ "PropertyClass" ], - "hash": 1231933994, + "hash": 970573129, "properties": { - "m_teamNames": { - "type": "std::string", + "m_templateIdList": { + "type": "gid", "id": 0, "offset": 72, "flags": 31, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 3124709014 - } - } - }, - "1653772158": { - "name": "class WizClientObjectItem", - "bases": [ - "ClientObject", - "CoreObject", - "PropertyClass" - ], - "hash": 1653772158, - "properties": { - "m_inactiveBehaviors": { - "type": "class SharedPointer", - "id": 0, - "offset": 224, - "flags": 31, - "container": "Vector", + "container": "List", "dynamic": true, "singleton": false, - "pointer": true, - "hash": 1850812559 - }, - "m_globalID.m_full": { - "type": "unsigned __int64", - "id": 1, - "offset": 72, - "flags": 16777247, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2312465444 - }, - "m_permID": { - "type": "unsigned __int64", - "id": 2, - "offset": 80, - "flags": 16777247, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1298909658 - }, - "m_location": { - "type": "class Vector3D", - "id": 3, - "offset": 168, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2239683611 - }, - "m_orientation": { - "type": "class Vector3D", - "id": 4, - "offset": 180, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2344058766 - }, - "m_fScale": { - "type": "float", - "id": 5, - "offset": 196, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 503137701 - }, - "m_templateID.m_full": { - "type": "unsigned __int64", - "id": 6, - "offset": 96, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 633907631 - }, - "m_debugName": { - "type": "std::string", - "id": 7, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3553984419 - }, - "m_displayKey": { - "type": "std::string", - "id": 8, - "offset": 136, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3023276954 - }, - "m_zoneTagID": { - "type": "unsigned int", - "id": 9, - "offset": 344, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 965291410 - }, - "m_speedMultiplier": { - "type": "short", - "id": 10, - "offset": 192, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 123130076 - }, - "m_nMobileID": { - "type": "unsigned short", - "id": 11, - "offset": 194, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1054318939 - }, - "m_characterId": { - "type": "gid", - "id": 12, - "offset": 440, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 210498418 - }, - "m_primaryColor": { - "type": "int", - "id": 13, - "offset": 560, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 900965981 - }, - "m_pattern": { - "type": "int", - "id": 14, - "offset": 564, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1337683384 - }, - "m_secondaryColor": { - "type": "int", - "id": 15, - "offset": 568, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1616550081 - }, - "m_displayID": { - "type": "gid", - "id": 16, - "offset": 576, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1022427803 - }, - "m_itemFlags": { - "type": "unsigned int", - "id": 17, - "offset": 584, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2004128457 - } - } - }, - "87696593": { - "name": "class WhirlyBurlyGameInfo", - "bases": [ - "PropertyClass" - ], - "hash": 87696593, - "properties": { - "m_gameID": { - "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 680439828 - }, - "m_bluePlayerGID": { - "type": "gid", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 253380865 - }, - "m_bluePackedName": { - "type": "std::string", - "id": 2, - "offset": 88, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1812461836 - }, - "m_orangePlayerGID": { - "type": "gid", - "id": 3, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1870113109 - }, - "m_orangePackedName": { - "type": "std::string", - "id": 4, - "offset": 128, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3625018336 - }, - "m_redPlayerGID": { - "type": "gid", - "id": 5, - "offset": 160, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 406170260 - }, - "m_redPackedName": { - "type": "std::string", - "id": 6, - "offset": 168, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2559544575 - } - } - }, - "486678366": { - "name": "class ControlList::ListWindowStyle*", - "bases": [ - "WindowStyle", - "PropertyClass" - ], - "hash": 486678366, - "properties": { - "m_pBackMaterial": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1628562023 - }, - "m_pFont": { - "type": "class SharedPointer", - "id": 1, - "offset": 88, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1067686307 - }, - "m_pLargeFont": { - "type": "class SharedPointer", - "id": 2, - "offset": 104, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1523900782 - }, - "m_pSmallFont": { - "type": "class SharedPointer", - "id": 3, - "offset": 120, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2363252956 - }, - "m_Color": { - "type": "class Color", - "id": 4, - "offset": 136, - "flags": 262279, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1753714077 - }, - "m_HighColor": { - "type": "class Color", - "id": 5, - "offset": 140, - "flags": 262279, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2310527421 - }, - "m_SelectColor": { - "type": "class Color", - "id": 6, - "offset": 144, - "flags": 262279, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2792529213 - }, - "m_BorderColor": { - "type": "class Color", - "id": 7, - "offset": 148, - "flags": 262279, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1470576795 - }, - "m_BackColor": { - "type": "class Color", - "id": 8, - "offset": 152, - "flags": 262279, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1070928782 - }, - "m_ScrollBarColor": { - "type": "class Color", - "id": 9, - "offset": 156, - "flags": 262279, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1180747361 - }, - "m_ScrollTabColor": { - "type": "class Color", - "id": 10, - "offset": 160, - "flags": 262279, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1034892323 - }, - "m_nBorderSize": { - "type": "int", - "id": 11, - "offset": 164, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2016376897 - }, - "m_nScrollSize": { - "type": "int", - "id": 12, - "offset": 168, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 632681746 - }, - "m_sHoverSound": { - "type": "std::string", - "id": 13, - "offset": 176, - "flags": 131207, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2662773595 - }, - "m_sSelectSound": { - "type": "std::string", - "id": 14, - "offset": 208, - "flags": 131207, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2596786807 - }, - "m_sHighlightSound": { - "type": "std::string", - "id": 15, - "offset": 240, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, "pointer": false, - "hash": 3020805615 + "hash": 1466334173 } } }, - "882974635": { - "name": "class SharedPointer", + "1381891467": { + "name": "class SpellFusionTemplate", "bases": [ - "Requirement", + "CoreTemplate", "PropertyClass" ], - "hash": 882974635, + "hash": 1381891467, "properties": { - "m_applyNOT": { - "type": "bool", + "m_behaviors": { + "type": "class BehaviorTemplate*", "id": 0, "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, + "flags": 7, + "container": "Vector", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 1746328074, - "enum_options": { - "__DEFAULT": 0 - } + "pointer": true, + "hash": 1197808594 }, - "m_operator": { - "type": "enum Requirement::Operator", + "m_templateID": { + "type": "unsigned int", "id": 1, - "offset": 76, - "flags": 2097183, + "offset": 96, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2672792317, - "enum_options": { - "ROP_AND": 0, - "ROP_OR": 1, - "__DEFAULT": "ROP_AND" - } + "hash": 1286746870 }, - "m_zoneName": { + "m_debugName": { "type": "std::string", "id": 2, - "offset": 80, - "flags": 268435463, + "offset": 104, + "flags": 134217735, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2171167736, - "enum_options": { - "__BASECLASS": "ZoneData" - } - } - } - }, - "486640963": { - "name": "class JewelSocketBehaviorTemplate", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 486640963, - "properties": { - "m_behaviorName": { + "hash": 3553984419 + }, + "m_displayKey": { "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, + "id": 3, + "offset": 136, + "flags": 8388615, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3130754092 + "hash": 3023276954 }, - "m_jewelSockets": { - "type": "class JewelSocket", - "id": 1, - "offset": 120, - "flags": 31, + "m_adjectives": { + "type": "std::string", + "id": 4, + "offset": 168, + "flags": 7, "container": "List", "dynamic": true, "singleton": false, "pointer": false, - "hash": 2355333159 + "hash": 2967855037 }, - "m_socketDeleted": { - "type": "bool", - "id": 2, - "offset": 136, - "flags": 31, + "m_primaryIngredient": { + "type": "class SpellIngredient*", + "id": 5, + "offset": 184, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 685830803 + "pointer": true, + "hash": 1337011809 + }, + "m_secondaryIngredient": { + "type": "class SpellIngredient*", + "id": 6, + "offset": 192, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2076393285 } } }, - "1232032298": { - "name": "class DynamicSigilTurn", + "535501382": { + "name": "class GuildGalleryEssenceList*", "bases": [ "PropertyClass" ], - "hash": 1232032298, + "hash": 535501382, "properties": { - "m_teamNames": { - "type": "std::string", + "m_templateList": { + "type": "unsigned int", "id": 0, "offset": 72, - "flags": 31, - "container": "Vector", + "flags": 7, + "container": "List", "dynamic": true, "singleton": false, "pointer": false, - "hash": 3124709014 + "hash": 786797381 + }, + "m_essenceList": { + "type": "int", + "id": 1, + "offset": 88, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1555680540 } } }, - "88184994": { - "name": "class ActorDialogEntry*", + "1381403585": { + "name": "class WizStatisticScalerEffectTemplate", "bases": [ + "StatisticEffectTemplate", + "GameEffectTemplate", "PropertyClass" ], - "hash": 88184994, + "hash": 1381403585, "properties": { - "m_requirements": { - "type": "class SharedPointer", + "m_effectName": { + "type": "std::string", "id": 0, "offset": 72, - "flags": 263, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3043523229 + "pointer": false, + "hash": 2029161513 }, - "m_dialog": { + "m_effectCategory": { "type": "std::string", "id": 1, - "offset": 88, - "flags": 8388639, + "offset": 104, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1858395851 + "hash": 1852673222 }, - "m_picture": { - "type": "std::string", + "m_sortOrder": { + "type": "int", "id": 2, - "offset": 120, - "flags": 131103, + "offset": 148, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3128322903 + "hash": 1411218206 }, - "m_soundFile": { - "type": "std::string", + "m_duration": { + "type": "double", "id": 3, - "offset": 152, - "flags": 131103, + "offset": 192, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2276870852 + "hash": 2727932435 }, - "m_action": { + "m_stackingCategories": { "type": "std::string", "id": 4, - "offset": 184, - "flags": 31, - "container": "Static", - "dynamic": false, + "offset": 160, + "flags": 7, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 1734553689 + "hash": 1774497525 }, - "m_dialogEvent": { - "type": "std::string", + "m_isPersistent": { + "type": "bool", "id": 5, - "offset": 216, - "flags": 31, + "offset": 153, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2707957549 + "hash": 923861920 }, - "m_actorTemplateID": { - "type": "unsigned int", + "m_bIsOnPet": { + "type": "bool", "id": 6, - "offset": 248, - "flags": 33554463, + "offset": 154, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2134265679 + "hash": 522593303 }, - "m_cameraName": { - "type": "std::string", + "m_isPublic": { + "type": "bool", "id": 7, - "offset": 256, - "flags": 31, + "offset": 152, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3252786917 + "hash": 1728439822 }, - "m_interpolationDuration": { - "type": "float", + "m_visualEffectAddName": { + "type": "std::string", "id": 8, - "offset": 312, - "flags": 31, + "offset": 200, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1458058437, - "enum_options": { - "__DEFAULT": "1.0" - } + "hash": 3382086694 }, - "m_cameraOffsetX": { - "type": "float", + "m_visualEffectRemoveName": { + "type": "std::string", "id": 9, - "offset": 288, - "flags": 31, + "offset": 232, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1515912895 + "hash": 1541697323 }, - "m_cameraOffsetY": { - "type": "float", + "m_onAddFunctorName": { + "type": "std::string", "id": 10, - "offset": 292, - "flags": 31, + "offset": 280, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1515912896 + "hash": 1561843107 }, - "m_cameraOffsetZ": { - "type": "float", + "m_onRemoveFunctorName": { + "type": "std::string", "id": 11, - "offset": 296, - "flags": 31, + "offset": 312, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1515912897 + "hash": 2559017864 }, - "m_pitch": { - "type": "float", + "m_stackingRule": { + "type": "enum STACKING_RULE", "id": 12, - "offset": 304, - "flags": 31, + "offset": 144, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 896371695 + "hash": 431568889, + "enum_options": { + "STACKING_ALLOWED": 0, + "STACKING_NOSTACK": 1, + "STACKING_REPLACE": 2 + } }, - "m_yaw": { + "m_baseHitpoints": { "type": "float", "id": 13, - "offset": 300, - "flags": 31, + "offset": 360, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 357256328 + "hash": 686307060 }, - "m_roll": { + "m_baseMana": { "type": "float", "id": 14, - "offset": 308, - "flags": 31, + "offset": 364, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 310020272 + "hash": 1565696591 }, - "m_cameraShakeType": { - "type": "std::string", + "m_xpPercentIncrease": { + "type": "float", "id": 15, - "offset": 320, - "flags": 31, + "offset": 368, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1754128882, - "enum_options": { - "": 0, - "Constant": "Constant", - "Quake": "Quake", - "Thud": "Thud", - "End": "End", - "__DEFAULT": 0 - } + "hash": 1051081338 }, - "m_cameraShakeDuration": { + "m_goldPercent": { "type": "float", "id": 16, - "offset": 352, - "flags": 31, + "offset": 372, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 316581010, - "enum_options": { - "__DEFAULT": "0.0" - } + "hash": 1095720878 }, - "m_cameraShakeAmplitude": { + "m_wispBonusPercent": { "type": "float", "id": 17, - "offset": 356, - "flags": 31, + "offset": 376, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2179718321, - "enum_options": { - "__DEFAULT": "0.0" - } + "hash": 1304386546 }, - "m_bypassCameraOnReview": { - "type": "bool", + "m_powerPipBonusPercent": { + "type": "float", "id": 18, - "offset": 360, - "flags": 31, + "offset": 380, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1412905725, - "enum_options": { - "__DEFAULT": 1 - } + "hash": 1671446341 }, - "m_cameraZoneName": { - "type": "std::string", + "m_shadowPipBonusPercent": { + "type": "float", "id": 19, - "offset": 368, - "flags": 287, + "offset": 384, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3131581121 + "hash": 1426533310 }, - "m_duration": { + "m_shadowPipRating": { "type": "float", "id": 20, - "offset": 400, - "flags": 31, + "offset": 388, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 920323453 + "hash": 507126123 }, - "m_delay": { + "m_archmasteryBonus": { "type": "float", "id": 21, - "offset": 404, - "flags": 287, + "offset": 392, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 881988134 + "hash": 1445460001 }, - "m_cameraHidePlayers": { - "type": "int", + "m_stunResistancePercent": { + "type": "float", "id": 22, - "offset": 408, - "flags": 287, + "offset": 396, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 28533149 + "hash": 1868382627 }, - "m_walkAwayNpcTemplateID": { - "type": "gid", + "m_school": { + "type": "std::string", "id": 23, - "offset": 416, - "flags": 33554719, + "offset": 400, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 942697507 + "hash": 2438566051 }, - "m_walkAwayExitDirectionInDegrees": { + "m_pipConversionRating": { "type": "float", "id": 24, - "offset": 424, - "flags": 287, + "offset": 432, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 396419785 + "hash": 246855691 }, - "m_walkAwayFadeTime": { + "m_criticalHitRating": { "type": "float", "id": 25, - "offset": 428, - "flags": 287, + "offset": 436, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 822405687 + "hash": 1978690540 }, - "m_walkAwayUseCurrentFacing": { - "type": "bool", + "m_blockRating": { + "type": "float", "id": 26, - "offset": 432, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1464855436 - }, - "m_standInPlayerTag": { - "type": "std::string", - "id": 27, "offset": 440, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1590121141 - }, - "m_fadeOutCamera": { - "type": "bool", - "id": 28, - "offset": 472, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1766121252 - }, - "m_snapCameraToPlayerAtExit": { - "type": "bool", - "id": 29, - "offset": 473, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1323369645 - }, - "m_secondaryCameraName": { - "type": "std::string", - "id": 30, - "offset": 480, - "flags": 287, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1670705581 + "hash": 2088486759 }, - "m_secondaryInterpolationDuration": { + "m_dmgBonusPercent": { "type": "float", - "id": 31, - "offset": 512, - "flags": 287, + "id": 27, + "offset": 444, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1873822349 - }, - "m_npcStandInList": { - "type": "std::string", - "id": 32, - "offset": 520, - "flags": 287, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2076308937 - }, - "m_dialogAnimationList": { - "type": "std::string", - "id": 33, - "offset": 536, - "flags": 287, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2444806919 - }, - "m_dialogTurningList": { - "type": "std::string", - "id": 34, - "offset": 552, - "flags": 287, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2782869422 + "hash": 194501159 }, - "m_npcYawOffsetInDegrees": { + "m_dmgBonusFlat": { "type": "float", - "id": 35, - "offset": 568, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1395075270 - }, - "m_allowPlayerToMove": { - "type": "bool", - "id": 36, - "offset": 572, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 225101337 - }, - "m_soundEffectFile": { - "type": "std::string", - "id": 37, - "offset": 576, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3235157265 - }, - "m_musicFile": { - "type": "std::string", - "id": 38, - "offset": 608, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2963686620 - }, - "m_nonStackableMusic": { - "type": "bool", - "id": 39, - "offset": 640, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1675595625 - }, - "m_nonRepeatableMusic": { - "type": "bool", - "id": 40, - "offset": 641, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2138315572 - }, - "m_playMusicAtSFXVolume": { - "type": "bool", - "id": 41, - "offset": 642, - "flags": 287, + "id": 28, + "offset": 448, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2130871816 + "hash": 1837769725 }, - "m_soundEffectDelay": { + "m_accBonusPercent": { "type": "float", - "id": 42, - "offset": 644, - "flags": 287, + "id": 29, + "offset": 452, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1586382460 + "hash": 331557526 }, - "m_musicDelay": { + "m_apBonusPercent": { "type": "float", - "id": 43, - "offset": 648, - "flags": 287, + "id": 30, + "offset": 456, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1217785767 + "hash": 1228557984 }, - "m_musicFadeTime": { + "m_dmgReducePercent": { "type": "float", - "id": 44, - "offset": 652, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 502925015 - }, - "m_dontReleaseCameraAtExit": { - "type": "bool", - "id": 45, - "offset": 474, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1107508961 - }, - "m_disableBackButton": { - "type": "bool", - "id": 46, - "offset": 656, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 122355444 - }, - "m_enableExitButton": { - "type": "bool", - "id": 47, - "offset": 657, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1824693936 - }, - "m_cameraFadeType": { - "type": "std::string", - "id": 48, - "offset": 664, - "flags": 287, + "id": 31, + "offset": 460, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2021935382, - "enum_options": { - "": 0, - "In Out Black": "In Out Black", - "In Out White": "In Out White", - "In Black": "In Black", - "Out Black": "Out Black", - "In White": "In White", - "Out White": "Out White", - "__DEFAULT": 0 - } + "hash": 1426050712 }, - "m_cameraFadeTime": { + "m_dmgReduceFlat": { "type": "float", - "id": 49, - "offset": 696, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 614419391, - "enum_options": { - "__DEFAULT": "0.5" - } - }, - "m_idleAnimation": { - "type": "std::string", - "id": 50, - "offset": 704, - "flags": 31, + "id": 32, + "offset": 464, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2900487193 + "hash": 1218184718 }, - "m_spamTime": { + "m_accReducePercent": { "type": "float", - "id": 51, - "offset": 736, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1727215063, - "enum_options": { - "__DEFAULT": "1.0" - } - }, - "m_playSoundIfSpamming": { - "type": "bool", - "id": 52, - "offset": 740, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 690006749, - "enum_options": { - "__DEFAULT": 1 - } - }, - "m_playMusicIfSpamming": { - "type": "bool", - "id": 53, - "offset": 741, - "flags": 287, + "id": 33, + "offset": 468, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 538564341, - "enum_options": { - "__DEFAULT": 1 - } + "hash": 1653943527 }, - "m_stopMusicFadeTime": { + "m_healBonusPercent": { "type": "float", - "id": 54, - "offset": 744, - "flags": 287, + "id": 34, + "offset": 472, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 696390845, - "enum_options": { - "__DEFAULT": "0.0" - } + "hash": 562313577 }, - "m_restartMusicFadeTime": { + "m_healIncBonusPercent": { "type": "float", - "id": 55, - "offset": 748, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 709379292, - "enum_options": { - "__DEFAULT": "0.0" - } - }, - "m_meetsRequirements": { - "type": "bool", - "id": 56, - "offset": 752, - "flags": 31, + "id": 35, + "offset": 476, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 296443061 + "hash": 2182535587 }, - "m_secondaryCameraInitalDelay": { + "m_fishingLuckBonusPercent": { "type": "float", - "id": 57, - "offset": 516, - "flags": 287, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1812842232 - }, - "m_displayButtonsOnTimedDialog": { - "type": "bool", - "id": 58, - "offset": 753, - "flags": 287, + "id": 36, + "offset": 480, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 569741400 + "hash": 1363349254 } } }, - "1655827220": { - "name": "class std::list >", - "bases": [], - "hash": 1655827220, - "properties": {} - }, - "884070033": { - "name": "class FriendSymbolWindow*", + "1816766624": { + "name": "class ClientConfirmOption*", "bases": [ - "Window", + "ConfirmOption", + "ServiceOptionBase", "PropertyClass" ], - "hash": 884070033, + "hash": 1816766624, "properties": { - "m_sName": { + "m_serviceName": { "type": "std::string", "id": 0, - "offset": 80, - "flags": 135, + "offset": 72, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2306437263 + "hash": 2206028813 }, - "m_Children": { - "type": "class SharedPointer", + "m_iconKey": { + "type": "std::string", "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2621225959 + "pointer": false, + "hash": 2457138637 }, - "m_Style": { - "type": "unsigned int", + "m_displayKey": { + "type": "std::string", "id": 2, - "offset": 152, - "flags": 1048583, + "offset": 104, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "SCALE_CHILDREN": 2, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "FOCUS_LOCKED": 64, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152 - } + "hash": 3023276954 }, - "m_Flags": { + "m_serviceIndex": { "type": "unsigned int", "id": 3, - "offset": 156, - "flags": 1048583, + "offset": 204, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } + "hash": 2103126710 }, - "m_Window": { - "type": "class Rect", + "m_forceInteract": { + "type": "bool", "id": 4, - "offset": 160, - "flags": 135, + "offset": 200, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3105139380 + "hash": 1705789564 }, - "m_fTargetAlpha": { - "type": "float", + "m_confirmMessageTitleKey": { + "type": "std::string", "id": 5, - "offset": 212, - "flags": 135, + "offset": 216, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1809129834 + "hash": 1941136953 }, - "m_fDisabledAlpha": { - "type": "float", + "m_confirmMessageTitleKeyAdvancedMode": { + "type": "std::string", "id": 6, - "offset": 216, - "flags": 135, + "offset": 248, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1389987675 + "hash": 3219201588 }, - "m_fAlpha": { - "type": "float", + "m_confirmMessageKey": { + "type": "std::string", "id": 7, - "offset": 208, - "flags": 65671, + "offset": 280, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 482130755 + "hash": 2088579351 }, - "m_pWindowStyle": { - "type": "class SharedPointer", + "m_confirmMessageKeyAdvancedMode": { + "type": "std::string", "id": 8, - "offset": 232, - "flags": 135, + "offset": 312, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3623628394 + "pointer": false, + "hash": 2417239570 }, - "m_sHelp": { - "type": "std::wstring", + "m_promptSound": { + "type": "std::string", "id": 9, - "offset": 248, - "flags": 4194439, + "offset": 344, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2102211316 + "hash": 3178681510 }, - "m_sScript": { + "m_promptSoundAdvancedMode": { "type": "std::string", "id": 10, - "offset": 352, - "flags": 135, + "offset": 376, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1846695875 + "hash": 1739626529 }, - "m_Offset": { - "type": "class Point", + "m_acceptKey": { + "type": "std::string", "id": 11, - "offset": 192, - "flags": 135, + "offset": 472, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3389835433 + "hash": 3325790708 }, - "m_Scale": { - "type": "class Point", + "m_declineKey": { + "type": "std::string", "id": 12, - "offset": 200, - "flags": 135, + "offset": 504, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2547159940 + "hash": 1679578008 }, - "m_sTip": { - "type": "std::wstring", + "m_optionToConfirm": { + "type": "class SharedPointer", "id": 13, - "offset": 392, - "flags": 4194439, + "offset": 536, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1513510520 + "pointer": true, + "hash": 1224791766 }, - "m_BubbleList": { - "type": "class WindowBubble", + "m_ignoreOption": { + "type": "std::string", "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, + "offset": 408, + "flags": 31, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 2587533771 + "hash": 1667595832 }, - "m_ParentOffset": { - "type": "class Rect", + "m_ignoreAdvancedModeOption": { + "type": "std::string", "id": 15, - "offset": 176, - "flags": 135, + "offset": 440, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3091503757 + "hash": 2665095027 } } }, - "1655612104": { - "name": "class PetDerbyTrackDescriptor", + "970712256": { + "name": "class CastleMagicCameraInfo", "bases": [ - "NodeDescriptor", "PropertyClass" ], - "hash": 1655612104, + "hash": 970712256, + "properties": {} + }, + "535693569": { + "name": "class ClientTurnIndicatorCinematicAction*", + "bases": [ + "TurnIndicatorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 535693569, "properties": { - "m_terrainType": { - "type": "enum PetDerbyTrackTerrain", + "m_timeOffset": { + "type": "float", "id": 0, "offset": 72, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2688629581, - "enum_options": { - "PDTT_Water": 1, - "PDTT_Grass": 2, - "PDTT_Clay": 3, - "PDTT_Dirt": 4, - "PDTT_Cobblestone": 0, - "PDTT_Mud": 5 - } - }, - "m_laneSwitch": { - "type": "enum PetDerbyLaneSwitch", - "id": 1, - "offset": 76, - "flags": 2097159, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2094800111, - "enum_options": { - "PDLS_None": 0, - "PDLS_Left": 1, - "PDLS_Right": 2, - "PDLS_Both": 3 - } + "hash": 2237098605 } } }, - "486684510": { - "name": "class ControlList::ListWindowStyle", + "1817589212": { + "name": "class GraphicalItemCard", "bases": [ - "WindowStyle", + "GraphicalSpell", + "Spell", "PropertyClass" ], - "hash": 486684510, + "hash": 1817589212, "properties": { - "m_pBackMaterial": { - "type": "class SharedPointer", + "m_templateID": { + "type": "unsigned int", "id": 0, - "offset": 72, - "flags": 135, + "offset": 128, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1628562023 + "pointer": false, + "hash": 1286746870 }, - "m_pFont": { - "type": "class SharedPointer", + "m_enchantment": { + "type": "unsigned int", "id": 1, - "offset": 88, - "flags": 135, + "offset": 80, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1067686307 + "pointer": false, + "hash": 2217886818 }, - "m_pLargeFont": { - "type": "class SharedPointer", + "m_pipCost": { + "type": "class SharedPointer", "id": 2, - "offset": 104, - "flags": 135, + "offset": 176, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": true, - "hash": 1523900782 + "hash": 3605704820 }, - "m_pSmallFont": { - "type": "class SharedPointer", + "m_regularAdjust": { + "type": "int", "id": 3, - "offset": 120, - "flags": 135, + "offset": 192, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2363252956 + "pointer": false, + "hash": 1420453335 }, - "m_Color": { - "type": "class Color", + "m_magicSchoolID": { + "type": "unsigned int", "id": 4, "offset": 136, - "flags": 262279, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1753714077 + "hash": 893146499 }, - "m_HighColor": { - "type": "class Color", + "m_accuracy": { + "type": "unsigned char", "id": 5, - "offset": 140, - "flags": 262279, + "offset": 132, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2310527421 + "hash": 2273914939 }, - "m_SelectColor": { - "type": "class Color", + "m_treasureCard": { + "type": "bool", "id": 6, - "offset": 144, - "flags": 262279, + "offset": 197, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2792529213 + "hash": 1764879128 }, - "m_BorderColor": { - "type": "class Color", + "m_battleCard": { + "type": "bool", "id": 7, - "offset": 148, - "flags": 262279, + "offset": 198, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1470576795 + "hash": 1332843753 }, - "m_BackColor": { - "type": "class Color", + "m_itemCard": { + "type": "bool", "id": 8, - "offset": 152, - "flags": 262279, + "offset": 199, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1070928782 + "hash": 1683654300 }, - "m_ScrollBarColor": { - "type": "class Color", + "m_sideBoard": { + "type": "bool", "id": 9, - "offset": 156, - "flags": 262279, + "offset": 200, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1180747361 + "hash": 1897838368 }, - "m_ScrollTabColor": { - "type": "class Color", + "m_spellID": { + "type": "unsigned int", "id": 10, - "offset": 160, - "flags": 262279, + "offset": 204, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1034892323 + "hash": 1697483258 }, - "m_nBorderSize": { - "type": "int", + "m_leavesPlayWhenCastOverride": { + "type": "bool", "id": 11, - "offset": 164, - "flags": 135, + "offset": 216, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2016376897 + "hash": 874407398 }, - "m_nScrollSize": { - "type": "int", + "m_cloaked": { + "type": "bool", "id": 12, - "offset": 168, - "flags": 135, + "offset": 196, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 632681746 + "hash": 7349510 }, - "m_sHoverSound": { - "type": "std::string", + "m_enchantmentSpellIsItemCard": { + "type": "bool", "id": 13, - "offset": 176, - "flags": 131207, + "offset": 76, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2662773595 + "hash": 531590701 }, - "m_sSelectSound": { - "type": "std::string", + "m_premutationSpellID": { + "type": "unsigned int", "id": 14, - "offset": 208, - "flags": 131207, + "offset": 112, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2596786807 + "hash": 1530256370 }, - "m_sHighlightSound": { - "type": "std::string", + "m_enchantedThisCombat": { + "type": "bool", "id": 15, - "offset": 240, - "flags": 135, + "offset": 77, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3020805615 - } - } - }, - "1236928588": { - "name": "class LocaleManager*", - "bases": [ - "PropertyClass" - ], - "hash": 1236928588, - "properties": { - "m_localeMappingList": { - "type": "class LocaleMapping", - "id": 0, - "offset": 104, - "flags": 7, + "hash": 1895738923 + }, + "m_paramOverrides": { + "type": "class SharedPointer", + "id": 16, + "offset": 224, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2061635599 + }, + "m_subEffectMeta": { + "type": "class SharedPointer", + "id": 17, + "offset": 240, + "flags": 31, "container": "List", "dynamic": true, "singleton": false, + "pointer": true, + "hash": 1944101106 + }, + "m_delayEnchantment": { + "type": "bool", + "id": 18, + "offset": 257, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, "pointer": false, - "hash": 762464984 - } - } - }, - "1654392749": { - "name": "class BracketUpdateMessage*", - "bases": [ - "PvPUpdateMessage", - "PropertyClass" - ], - "hash": 1654392749, - "properties": { - "m_messageType": { - "type": "int", - "id": 0, + "hash": 191336919 + }, + "m_PvE": { + "type": "bool", + "id": 19, + "offset": 264, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 269492350 + }, + "m_delayEnchantmentOrder": { + "type": "enum SpellEffect::kDelayOrder", + "id": 20, "offset": 72, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2526055263, + "enum_options": { + "SpellEffect::kAnyOrder": 0, + "SpellEffect::kFirst": 1, + "SpellEffect::kSecond": 2 + } + }, + "m_roundAddedTC": { + "type": "int", + "id": 21, + "offset": 260, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1531535105 + "hash": 112365451 + }, + "m_secondarySchoolID": { + "type": "unsigned int", + "id": 22, + "offset": 304, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2081206026 + }, + "m_fusionState": { + "type": "enum Spell::FusionState", + "id": 23, + "offset": 308, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 835324539, + "enum_options": { + "FS_Invalid": 0, + "FS_Partial": 1, + "FS_Valid": 2 + } } } }, - "89282005": { - "name": "class CritPanel", + "1382050381": { + "name": "class ReqIsSchool", "bases": [ - "ControlSprite", - "Window", + "ConditionalSpellEffectRequirement", + "Requirement", "PropertyClass" ], - "hash": 89282005, + "hash": 1382050381, "properties": { - "m_sName": { - "type": "std::string", + "m_applyNOT": { + "type": "bool", "id": 0, - "offset": 80, - "flags": 135, + "offset": 72, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2306437263 + "hash": 1746328074, + "enum_options": { + "__DEFAULT": 0 + } }, - "m_Children": { - "type": "class SharedPointer", + "m_operator": { + "type": "enum Requirement::Operator", "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621225959 - }, - "m_Style": { - "type": "unsigned int", - "id": 2, - "offset": 152, - "flags": 1048583, + "offset": 76, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 983582334, + "hash": 2672792317, "enum_options": { - "HAS_BACK": 1, - "SCALE_CHILDREN": 2, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "FOCUS_LOCKED": 64, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152 + "ROP_AND": 0, + "ROP_OR": 1, + "__DEFAULT": "ROP_AND" } }, - "m_Flags": { - "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 1048583, + "m_targetType": { + "type": "enum ConditionalSpellEffectRequirement::RequirementTarget", + "id": 2, + "offset": 80, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 967851578, + "hash": 2547737902, "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648, - "ONE_SHOT": 8388608, - "FLIPPED_HORIZONTAL": 16777216, - "FLIPPED_VERTICAL": 33554432 + "RT_Caster": 0, + "RT_Target": 1 } }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, - "flags": 135, + "m_magicSchoolName": { + "type": "std::string", + "id": 3, + "offset": 88, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3105139380 - }, - "m_fTargetAlpha": { + "hash": 2939083077 + } + } + }, + "1817311575": { + "name": "class ClientPetCastEffectActorCinematicAction", + "bases": [ + "PetCastEffectActorCinematicAction", + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 1817311575, + "properties": { + "m_timeOffset": { "type": "float", - "id": 5, - "offset": 212, - "flags": 135, + "id": 0, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1809129834 + "hash": 2237098605 }, - "m_fDisabledAlpha": { - "type": "float", - "id": 6, - "offset": 216, - "flags": 135, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1389987675 - }, - "m_fAlpha": { + "hash": 2285866132 + } + } + }, + "974020150": { + "name": "class FadeActorCinematicAction", + "bases": [ + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 974020150, + "properties": { + "m_timeOffset": { "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, + "id": 0, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 482130755 - }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3623628394 + "hash": 2237098605 }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2102211316 + "hash": 2285866132 }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, + "m_fadeDuration": { + "type": "float", + "id": 2, + "offset": 120, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1846695875 + "hash": 1402536557 }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, + "m_alphaTarget": { + "type": "float", + "id": 3, + "offset": 124, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3389835433 - }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, + "hash": 197622500 + } + } + }, + "537330242": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 537330242, + "properties": { + "m_projectID": { + "type": "unsigned int", + "id": 0, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2547159940 + "hash": 1263221425 }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, - "container": "Static", - "dynamic": false, + "m_teamListA": { + "type": "gid", + "id": 1, + "offset": 80, + "flags": 7, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 1513510520 + "hash": 1624915612 }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, + "m_teamListB": { + "type": "gid", + "id": 2, + "offset": 96, + "flags": 7, "container": "List", "dynamic": true, "singleton": false, "pointer": false, - "hash": 2587533771 - }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, + "hash": 1624915613 + } + } + }, + "971222955": { + "name": "class ActorDialog", + "bases": [ + "ActorDialogBase", + "PropertyClass" + ], + "hash": 971222955, + "properties": { + "m_dialogTag": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3091503757 + "hash": 2743232871 }, - "m_pMaterial": { - "type": "class SharedPointer", - "id": 16, - "offset": 592, - "flags": 135, - "container": "Static", - "dynamic": false, + "m_dialogEntries": { + "type": "class ActorDialogEntry*", + "id": 1, + "offset": 104, + "flags": 31, + "container": "Vector", + "dynamic": true, "singleton": false, "pointer": true, - "hash": 3479277078 + "hash": 1260107933 }, - "m_fRotation": { - "type": "float", - "id": 17, - "offset": 608, - "flags": 135, - "container": "Static", - "dynamic": false, + "m_madlibs": { + "type": "class ActorMadlib*", + "id": 2, + "offset": 128, + "flags": 31, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 1175400173 + "pointer": true, + "hash": 2877219372 }, - "m_Color": { - "type": "class Color", - "id": 18, - "offset": 584, - "flags": 262279, - "container": "Static", - "dynamic": false, + "m_dialogEvents": { + "type": "std::string", + "id": 3, + "offset": 152, + "flags": 7, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 1753714077 + "hash": 2778675200 }, - "m_textColor": { - "type": "class Color", - "id": 19, - "offset": 612, - "flags": 262279, + "m_noAggroWhileDialogIsUp": { + "type": "bool", + "id": 4, + "offset": 168, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2528109250 + "hash": 1753481610 }, - "m_textComponent": { - "type": "class TextComponent", - "id": 20, - "offset": 616, - "flags": 135, + "m_noAggroNoDelay": { + "type": "bool", + "id": 5, + "offset": 169, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3491704390 + "hash": 1784936140 } } }, - "1235649256": { - "name": "class MoveCommandTeleport*", + "536105006": { + "name": "class AssociatedWorldsList", "bases": [ - "MoveController::MoveCommand", "PropertyClass" ], - "hash": 1235649256, + "hash": 536105006, "properties": { - "m_vTarget": { - "type": "class Vector3D", + "m_associatedWorlds": { + "type": "std::string", "id": 0, - "offset": 88, + "offset": 72, "flags": 31, - "container": "Static", - "dynamic": false, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 3770499167 + "hash": 2747792502 } } }, - "88605259": { - "name": "enum DynamicSigilSymbol", - "bases": [], - "hash": 88605259, - "properties": {} + "1817549006": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1817549006, + "properties": { + "m_passList": { + "type": "class CSRAccessPassInfo", + "id": 0, + "offset": 72, + "flags": 23, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 3089809672 + } + } }, - "884434168": { - "name": "class FishTournamentUpdate*", + "970913117": { + "name": "class SpellData*", "bases": [ "PropertyClass" ], - "hash": 884434168, + "hash": 970913117, "properties": { - "m_numberOfEntries": { - "type": "int", + "m_templateID": { + "type": "unsigned int", "id": 0, "offset": 72, - "flags": 7, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 315514866 + "hash": 1286746870 }, - "m_fishTemplateID": { + "m_enchantment": { "type": "unsigned int", "id": 1, "offset": 76, - "flags": 7, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2050232416 + "hash": 2217886818 }, - "m_entryList": { - "type": "class SharedPointer", + "m_quantity": { + "type": "unsigned int", "id": 2, "offset": 80, - "flags": 7, - "container": "List", - "dynamic": true, + "flags": 63, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1434386087 + "pointer": false, + "hash": 380617740 } } }, - "1233746348": { - "name": "class SharedPointer", + "1385240368": { + "name": "class ClientHaltCinematicAction", "bases": [ + "HaltCinematicAction", + "CinematicAction", "PropertyClass" ], - "hash": 1233746348, + "hash": 1385240368, "properties": { - "m_fishTemplateID": { - "type": "unsigned int", + "m_timeOffset": { + "type": "float", "id": 0, "offset": 72, - "flags": 33554439, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2050232416 - }, - "m_creationChance": { - "type": "float", - "id": 1, - "offset": 76, - "flags": 7, - "container": "Static", - "dynamic": false, + "hash": 2237098605 + } + } + }, + "536104966": { + "name": "class AssociatedWorldsList*", + "bases": [ + "PropertyClass" + ], + "hash": 536104966, + "properties": { + "m_associatedWorlds": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 1801275150 - }, - "m_alternateLootChance": { + "hash": 2747792502 + } + } + }, + "1384040277": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1384040277, + "properties": {} + }, + "971012085": { + "name": "class SharedPointer", + "bases": [ + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 971012085, + "properties": { + "m_timeOffset": { "type": "float", - "id": 2, - "offset": 80, + "id": 0, + "offset": 72, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 786325463 + "hash": 2237098605 }, - "m_alternateLootTableName": { + "m_actor": { "type": "std::string", - "id": 3, - "offset": 88, + "id": 1, + "offset": 80, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3445884130 + "hash": 2285866132 } } }, - "88471601": { - "name": "enum PlaySoundCinematicAction::SoundType", - "bases": [], - "hash": 88471601, - "properties": {} - }, - "491930547": { - "name": "class ShowcasedStoreItem*", + "1382358890": { + "name": "class SharedPointer", "bases": [ + "TutorialLogBehaviorBase", + "BehaviorInstance", "PropertyClass" ], - "hash": 491930547, + "hash": 1382358890, "properties": { - "m_iconFilename": { - "type": "std::string", + "m_behaviorTemplateNameID": { + "type": "unsigned int", "id": 0, - "offset": 72, - "flags": 31, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3103016389 + "hash": 223437287 }, - "m_templateID": { - "type": "gid", + "m_tutorialTipData": { + "type": "std::string", "id": 1, - "offset": 104, - "flags": 31, + "offset": 128, + "flags": 551, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1075328001 + "hash": 3119782422 } } }, - "884434128": { - "name": "class FishTournamentUpdate", + "1819046960": { + "name": "class SharedPointer", "bases": [ "PropertyClass" ], - "hash": 884434128, + "hash": 1819046960, "properties": { - "m_numberOfEntries": { + "m_matchSize": { "type": "int", "id": 0, "offset": 72, @@ -644128,10 +600945,10 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 315514866 + "hash": 563704930 }, - "m_fishTemplateID": { - "type": "unsigned int", + "m_secondsWaited": { + "type": "int", "id": 1, "offset": 76, "flags": 7, @@ -644139,99 +600956,83 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 2050232416 - }, - "m_entryList": { - "type": "class SharedPointer", - "id": 2, - "offset": 80, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1434386087 + "hash": 606761671 } } }, - "1655807897": { - "name": "class SharedPointer", + "1382157496": { + "name": "class SharedPointer", "bases": [ "PropertyClass" ], - "hash": 1655807897, + "hash": 1382157496, "properties": { - "m_recentWizardInfoList": { - "type": "class SharedPointer", + "m_housingBlobObjectList": { + "type": "class SharedPointer", "id": 0, - "offset": 72, + "offset": 80, "flags": 7, - "container": "List", + "container": "Vector", "dynamic": true, "singleton": false, "pointer": true, - "hash": 3708234369 + "hash": 2812881480 } } }, - "88401496": { - "name": "struct PendingBuddy", - "bases": [], - "hash": 88401496, - "properties": {} - }, - "489198714": { - "name": "class SharedPointer", + "536812102": { + "name": "class GuildGalleryEssenceList", "bases": [ "PropertyClass" ], - "hash": 489198714, + "hash": 536812102, "properties": { - "m_effectIndex": { - "type": "int", + "m_templateList": { + "type": "unsigned int", "id": 0, "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, + "flags": 7, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 350070655 + "hash": 786797381 }, - "m_paramValue": { + "m_essenceList": { "type": "int", "id": 1, - "offset": 76, - "flags": 31, - "container": "Static", - "dynamic": false, + "offset": 88, + "flags": 7, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 2048907304 + "hash": 1555680540 } } }, - "884398419": { - "name": "class MadlibArgT*", + "1817674746": { + "name": "class ClientGameEffectTimerDisplayBehavior*", "bases": [ - "MadlibArg", + "GameEffectTimerDisplayBehavior", + "BehaviorInstance", "PropertyClass" ], - "hash": 884398419, + "hash": 1817674746, "properties": { - "m_madlibToken": { - "type": "std::string", + "m_behaviorTemplateNameID": { + "type": "unsigned int", "id": 0, - "offset": 80, - "flags": 31, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3058682373 + "hash": 223437287 }, - "m_madlibArgument": { - "type": "double", + "m_effectName": { + "type": "std::string", "id": 1, "offset": 112, "flags": 31, @@ -644239,60 +601040,94 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 2776302297 - } - } - }, - "487822819": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 487822819, - "properties": { - "m_adjective": { + "hash": 2029161513 + }, + "m_textKey": { "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, + "id": 2, + "offset": 144, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1720060457 + }, + "m_height": { + "type": "float", + "id": 3, + "offset": 176, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 602977104 + }, + "m_zOffset": { + "type": "float", + "id": 4, + "offset": 180, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 736134072 + }, + "m_red": { + "type": "unsigned char", + "id": 5, + "offset": 184, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3429518154 + "hash": 904647115 }, - "m_subTypePointPairs": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 7, - "container": "List", - "dynamic": true, + "m_green": { + "type": "unsigned char", + "id": 6, + "offset": 185, + "flags": 31, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 2463625808 + "hash": 1433403873 }, - "m_pointsGainedList": { - "type": "std::string", - "id": 2, - "offset": 120, - "flags": 7, + "m_blue": { + "type": "unsigned char", + "id": 7, + "offset": 186, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 856840600 + }, + "m_triggers": { + "type": "class SharedPointer", + "id": 8, + "offset": 192, + "flags": 31, "container": "List", "dynamic": true, "singleton": false, - "pointer": false, - "hash": 1744394364 + "pointer": true, + "hash": 3290329276 } } }, - "1236197554": { - "name": "class SharedPointer", + "1382096106": { + "name": "class SharedPointer", "bases": [ - "PathMovementBehaviorTemplate", "BehaviorTemplate", "PropertyClass" ], - "hash": 1236197554, + "hash": 1382096106, "properties": { "m_behaviorName": { "type": "std::string", @@ -644305,7 +601140,7 @@ "pointer": false, "hash": 3130754092 }, - "m_movementSpeed": { + "m_radius": { "type": "float", "id": 1, "offset": 120, @@ -644314,9 +601149,9 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 769135219 + "hash": 989410271 }, - "m_movementScale": { + "m_offsetX": { "type": "float", "id": 2, "offset": 124, @@ -644325,10 +601160,10 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 768663914 + "hash": 315454742 }, - "m_canFly": { - "type": "bool", + "m_offsetY": { + "type": "float", "id": 3, "offset": 128, "flags": 7, @@ -644336,62 +601171,63 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 314980368 + "hash": 315454743 }, - "m_mountTemplateID": { - "type": "gid", + "m_offsetZ": { + "type": "float", "id": 4, - "offset": 136, + "offset": 132, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 169688980 + "hash": 315454744 }, - "m_pathID": { - "type": "gid", + "m_locationName": { + "type": "std::string", "id": 5, - "offset": 144, + "offset": 136, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 821494322 - } - } - }, - "487048935": { - "name": "class MoveCommandEuler*", - "bases": [ - "MoveController::MoveCommand", - "PropertyClass" - ], - "hash": 487048935, - "properties": { - "m_Orientation": { - "type": "class Euler", - "id": 0, - "offset": 88, - "flags": 31, + "hash": 1824218389 + }, + "m_housingExtraZone": { + "type": "std::string", + "id": 6, + "offset": 168, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3248981887 + "hash": 2893855128 + }, + "m_requirementList": { + "type": "class RequirementList*", + "id": 7, + "offset": 200, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3581372079 } } }, - "1235653066": { - "name": "class SharedPointer", + "972417074": { + "name": "class SharedPointer", "bases": [ "PropertyClass" ], - "hash": 1235653066, + "hash": 972417074, "properties": { - "m_level": { - "type": "unsigned char", + "m_characterID": { + "type": "gid", "id": 0, "offset": 72, "flags": 7, @@ -644399,1413 +601235,1315 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 1438884808 + "hash": 210498386 }, - "m_xpToLevel": { - "type": "int", + "m_nameBlob": { + "type": "std::string", "id": 1, - "offset": 76, + "offset": 80, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1972600157 + "hash": 3058206907 }, - "m_levelName": { - "type": "std::string", + "m_schoolLevel": { + "type": "unsigned int", "id": 2, - "offset": 80, - "flags": 8388615, + "offset": 112, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3595417396 + "hash": 221776365 + }, + "m_objectID": { + "type": "gid", + "id": 3, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 257032380 + }, + "m_platformType": { + "type": "char", + "id": 4, + "offset": 128, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1303407771 } } }, - "1656244364": { - "name": "class SharedPointer", + "971982829": { + "name": "class ReqCanSummonHenchman*", "bases": [ - "WizItemTemplate", - "ItemTemplate", - "GameObjectTemplate", - "CoreTemplate", + "Requirement", "PropertyClass" ], - "hash": 1656244364, + "hash": 971982829, "properties": { - "m_behaviors": { - "type": "class BehaviorTemplate*", + "m_applyNOT": { + "type": "bool", "id": 0, "offset": 72, - "flags": 7, - "container": "Vector", - "dynamic": true, + "flags": 31, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1197808594 + "pointer": false, + "hash": 1746328074, + "enum_options": { + "__DEFAULT": 0 + } }, - "m_objectName": { - "type": "std::string", + "m_operator": { + "type": "enum Requirement::Operator", "id": 1, - "offset": 96, - "flags": 7, + "offset": 76, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2154940147 + "hash": 2672792317, + "enum_options": { + "ROP_AND": 0, + "ROP_OR": 1, + "__DEFAULT": "ROP_AND" + } + } + } + }, + "537858439": { + "name": "class ClientCombatParticipant*", + "bases": [ + "CombatParticipant", + "PropertyClass" + ], + "hash": 537858439, + "properties": { + "m_ownerID.m_full": { + "type": "unsigned __int64", + "id": 0, + "offset": 112, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2149616286 }, - "m_templateID": { - "type": "unsigned int", + "m_templateID.m_full": { + "type": "unsigned __int64", + "id": 1, + "offset": 120, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 633907631 + }, + "m_isPlayer": { + "type": "bool", "id": 2, "offset": 128, - "flags": 16777223, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1286746870 + "hash": 1717744636 }, - "m_visualID": { - "type": "unsigned int", + "m_zoneID.m_full": { + "type": "unsigned __int64", "id": 3, - "offset": 132, - "flags": 7, + "offset": 136, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1118778894 + "hash": 2105998895 }, - "m_adjectiveList": { - "type": "std::string", + "m_teamID": { + "type": "int", "id": 4, - "offset": 248, - "flags": 7, - "container": "List", - "dynamic": true, + "offset": 144, + "flags": 31, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 3195213318 + "hash": 982118638 }, - "m_exemptFromAOI": { - "type": "bool", + "m_primaryMagicSchoolID": { + "type": "int", "id": 5, - "offset": 240, - "flags": 7, + "offset": 148, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1457879059 + "hash": 1864910356 }, - "m_displayName": { - "type": "std::string", + "m_pipCount": { + "type": "class SharedPointer", "id": 6, - "offset": 168, - "flags": 8388615, + "offset": 152, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 2446900370 + "pointer": true, + "hash": 1862540484 }, - "m_description": { - "type": "std::string", + "m_pipRoundRates": { + "type": "class SharedPointer", "id": 7, - "offset": 136, - "flags": 8388615, - "container": "Static", - "dynamic": false, + "offset": 168, + "flags": 31, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 1649374815 + "pointer": true, + "hash": 1859513241 }, - "m_nObjectType": { - "type": "enum ObjectType", + "m_PipsSuspended": { + "type": "bool", "id": 8, - "offset": 200, - "flags": 2097159, + "offset": 184, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2118905880, - "enum_options": { - "OT_UNDEFINED": 0, - "OT_PLAYER": 1, - "OT_NPC": 2, - "OT_PROP": 3, - "OT_OBJECT": 4, - "OT_HOUSE": 5, - "OT_KEY": 6, - "OT_OLD_KEY": 7, - "OT_DEED": 8, - "OT_MAIL": 9, - "OT_RECIPE": 17, - "OT_EQUIP_HEAD": 10, - "OT_EQUIP_CHEST": 11, - "OT_EQUIP_LEGS": 12, - "OT_EQUIP_HANDS": 13, - "OT_EQUIP_FINGER": 14, - "OT_EQUIP_FEET": 15, - "OT_EQUIP_EAR": 16, - "OT_BUILDING_BLOCK": 18, - "OT_BUILDING_BLOCK_SOLID": 19, - "OT_GOLF": 20, - "OT_DOOR": 21, - "OT_PET": 22, - "OT_FABRIC": 23, - "OT_WINDOW": 24, - "OT_ROOF": 25, - "OT_HORSE": 26, - "OT_STRUCTURE": 27, - "OT_HOUSING_TEXTURE": 28, - "OT_PLANT": 29 - } + "hash": 98171898 }, - "m_sIcon": { - "type": "std::string", + "m_stunned": { + "type": "int", "id": 9, - "offset": 208, - "flags": 131079, + "offset": 188, + "flags": 25, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2306259831 + "hash": 1661672123 }, - "m_equipRequirements": { - "type": "class RequirementList*", + "m_mindcontrolled": { + "type": "int", "id": 10, - "offset": 280, - "flags": 7, + "offset": 216, + "flags": 25, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2762617226 + "pointer": false, + "hash": 2059794744 }, - "m_purchaseRequirements": { - "type": "class RequirementList*", + "m_originalTeam": { + "type": "int", "id": 11, - "offset": 288, - "flags": 7, + "offset": 224, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3174641793 + "pointer": false, + "hash": 1121355446 }, - "m_equipEffects": { - "type": "class GameEffectInfo*", + "m_nAuraTurnLength": { + "type": "int", "id": 12, - "offset": 296, - "flags": 7, - "container": "List", - "dynamic": true, + "offset": 236, + "flags": 31, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 836628351 + "pointer": false, + "hash": 1719821564 }, - "m_baseCost": { - "type": "float", + "m_clue": { + "type": "int", "id": 13, - "offset": 312, - "flags": 7, + "offset": 228, + "flags": 25, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1565352651 + "hash": 219277091 }, - "m_creditsCost": { - "type": "float", + "m_roundsDead": { + "type": "int", "id": 14, - "offset": 320, - "flags": 7, + "offset": 232, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 805514974 + "hash": 2071727747 }, - "m_avatarInfo": { - "type": "class AvatarItemInfoBase*", + "m_nPolymorphTurnLength": { + "type": "int", "id": 15, - "offset": 328, - "flags": 7, + "offset": 240, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2627321299 + "pointer": false, + "hash": 1619550301 }, - "m_avatarFlags": { - "type": "std::string", + "m_playerHealth": { + "type": "int", "id": 16, - "offset": 336, - "flags": 7, - "container": "List", - "dynamic": true, + "offset": 244, + "flags": 31, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 2347762759 + "hash": 740444925 }, - "m_itemLimit": { + "m_maxPlayerHealth": { "type": "int", "id": 17, - "offset": 316, - "flags": 7, + "offset": 248, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1799746856 + "hash": 96027363 }, - "m_holidayFlag": { - "type": "std::string", + "m_HideCurrentHP": { + "type": "bool", "id": 18, - "offset": 352, - "flags": 7, + "offset": 252, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2994795359 + "hash": 31360456 }, - "m_itemSetBonusTemplateID": { - "type": "unsigned int", + "m_maxHandSize": { + "type": "int", "id": 19, - "offset": 384, - "flags": 33554439, + "offset": 256, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1316835672 + "hash": 1925169782 }, - "m_numPrimaryColors": { - "type": "int", + "m_pHand": { + "type": "class Hand*", "id": 20, - "offset": 428, - "flags": 7, + "offset": 264, + "flags": 1, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 981103872 + "pointer": true, + "hash": 892448765 }, - "m_numSecondaryColors": { - "type": "int", + "m_pSavedHand": { + "type": "class Hand*", "id": 21, - "offset": 432, - "flags": 7, + "offset": 272, + "flags": 1, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1310416868 + "pointer": true, + "hash": 787912720 }, - "m_numPatterns": { - "type": "int", + "m_pPlayDeck": { + "type": "class PlayDeck*", "id": 22, - "offset": 436, - "flags": 7, + "offset": 280, + "flags": 1, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 953162171 + "pointer": true, + "hash": 2053198667 }, - "m_school": { - "type": "std::string", + "m_pSavedPlayDeck": { + "type": "class PlayDeck*", "id": 23, - "offset": 392, - "flags": 7, + "offset": 288, + "flags": 1, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 2438566051 + "pointer": true, + "hash": 498207966 }, - "m_arenaPointCost": { - "type": "int", + "m_pSavedGameStats": { + "type": "class SharedPointer", "id": 24, - "offset": 440, - "flags": 7, + "offset": 296, + "flags": 1, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1819621796 + "pointer": true, + "hash": 1599533644 }, - "m_pvpCurrencyCost": { + "m_savedPrimaryMagicSchoolID": { "type": "int", "id": 25, - "offset": 444, - "flags": 7, + "offset": 312, + "flags": 1, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 645595444 + "hash": 983035431 }, - "m_pvpTourneyCurrencyCost": { - "type": "int", + "m_pGameStats": { + "type": "class SharedPointer", "id": 26, - "offset": 448, - "flags": 7, + "offset": 320, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 517874954 + "pointer": true, + "hash": 3522102873 }, - "m_rank": { - "type": "int", + "m_color": { + "type": "class Color", "id": 27, - "offset": 424, - "flags": 7, + "offset": 336, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 219803942 + "hash": 1791663549 }, - "m_boyIconIndex": { - "type": "int", + "m_rotation": { + "type": "float", "id": 28, - "offset": 452, - "flags": 7, + "offset": 340, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 802140453 + "hash": 1497468551 }, - "m_girlIconIndex": { - "type": "int", + "m_radius": { + "type": "float", "id": 29, - "offset": 456, - "flags": 7, + "offset": 344, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 832706793 + "hash": 989410271 }, - "m_leashOffsetOverride": { - "type": "class SharedPointer", + "m_subcircle": { + "type": "int", "id": 30, - "offset": 464, - "flags": 7, + "offset": 348, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1692586788 + "pointer": false, + "hash": 1748202326 }, - "m_rarity": { - "type": "enum RarityType", + "m_pvp": { + "type": "bool", "id": 31, - "offset": 460, - "flags": 2097159, + "offset": 352, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2253792108, - "enum_options": { - "RT_COMMON": 0, - "RT_UNCOMMON": 1, - "RT_RARE": 2, - "RT_ULTRARARE": 3, - "RT_EPIC": 4 - } + "hash": 269527241 }, - "m_lootTables": { - "type": "std::string", + "m_raid": { + "type": "bool", "id": 32, - "offset": 488, - "flags": 268435463, - "container": "List", - "dynamic": true, + "offset": 353, + "flags": 31, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 1514961588, - "enum_options": { - "__BASECLASS": "LootTable" - } + "hash": 222284947 }, - "m_featuredRewards": { - "type": "gid", + "m_dynamicSymbol": { + "type": "enum DynamicSigilSymbol", "id": 33, - "offset": 504, - "flags": 33554439, - "container": "List", - "dynamic": true, + "offset": 356, + "flags": 31, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 1360288832 + "hash": 701705655 }, - "m_nif": { - "type": "std::string", + "m_accuracyBonus": { + "type": "float", "id": 34, - "offset": 520, - "flags": 131079, + "offset": 396, + "flags": 1, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1764743064 + "hash": 1440672233 }, - "m_boosterPackType": { - "type": "enum BoosterPackTemplate::BoosterPackType", + "m_minionSubCircle": { + "type": "int", "id": 35, - "offset": 480, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2575057189, - "enum_options": { - "TreasureCards": 0, - "Reagents": 1, - "Snacks": 2, - "GardenTreasureCards": 3, - "Items": 4, - "MixOfVarious": 5, - "RockhammerJewelPack": 6, - "PurreauPack": 7, - "SchoolJewelPack": 8 - } - } - } - }, - "486885095": { - "name": "class MoveCommandEuler", - "bases": [ - "MoveController::MoveCommand", - "PropertyClass" - ], - "hash": 486885095, - "properties": { - "m_Orientation": { - "type": "class Euler", - "id": 0, - "offset": 88, + "offset": 400, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3248981887 - } - } - }, - "1655830989": { - "name": "class SharedPointer", - "bases": [ - "GameEffectBase", - "PropertyClass" - ], - "hash": 1655830989, - "properties": { - "m_currentTickCount": { - "type": "double", - "id": 0, - "offset": 80, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2533274692 + "hash": 1896926112 }, - "m_effectNameID": { - "type": "unsigned int", - "id": 1, - "offset": 96, - "flags": 63, + "m_isMinion": { + "type": "bool", + "id": 36, + "offset": 404, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1204067144 + "hash": 1597230777 }, - "m_bIsOnPet": { + "m_isAccompanyNPC": { "type": "bool", - "id": 2, - "offset": 73, + "id": 37, + "offset": 412, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 522593303 + "hash": 1067399659 }, - "m_originatorID": { - "type": "gid", - "id": 3, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, + "m_hangingEffects": { + "type": "class SpellEffect", + "id": 38, + "offset": 416, + "flags": 27, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 1131810019 + "hash": 2685029606 }, - "m_itemSlotID": { - "type": "unsigned int", - "id": 4, - "offset": 112, - "flags": 63, - "container": "Static", - "dynamic": false, + "m_publicHangingEffects": { + "type": "class SpellEffect", + "id": 39, + "offset": 432, + "flags": 31, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 1895747595 + "hash": 1243141029 }, - "m_internalID": { - "type": "int", - "id": 5, - "offset": 92, - "flags": 63, - "container": "Static", - "dynamic": false, + "m_auraEffects": { + "type": "class SpellEffect", + "id": 40, + "offset": 448, + "flags": 31, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 1643137924 + "hash": 2783652947 }, - "m_endTime": { - "type": "unsigned int", - "id": 6, - "offset": 88, + "m_shadowEffects": { + "type": "class SharedPointer", + "id": 41, + "offset": 464, "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 716479635 - } - } - }, - "89110845": { - "name": "class SharedPointer", - "bases": [ - "CoreTemplate", - "PropertyClass" - ], - "hash": 89110845, - "properties": { - "m_behaviors": { - "type": "class BehaviorTemplate*", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Vector", + "container": "List", "dynamic": true, "singleton": false, "pointer": true, - "hash": 1197808594 + "hash": 1712698903 }, - "m_nifFile": { - "type": "std::string", - "id": 1, - "offset": 136, - "flags": 131079, - "container": "Static", - "dynamic": false, + "m_shadowSpellEffects": { + "type": "class SpellEffect", + "id": 42, + "offset": 480, + "flags": 31, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 2694762008 + "hash": 1808623792 }, - "m_delay": { - "type": "double", - "id": 2, - "offset": 168, - "flags": 7, - "container": "Static", - "dynamic": false, + "m_deathActivatedEffects": { + "type": "class SharedPointer", + "id": 43, + "offset": 512, + "flags": 31, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 2689597116 + "pointer": true, + "hash": 1347166054 }, - "m_cinematicName": { - "type": "std::string", - "id": 3, - "offset": 96, - "flags": 134217735, - "container": "Static", - "dynamic": false, + "m_delayCastEffects": { + "type": "class DelaySpellEffect", + "id": 44, + "offset": 528, + "flags": 31, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 2611527497 - } - } - }, - "885087842": { - "name": "class SharedPointer", - "bases": [ - "GameEffectTemplate", - "PropertyClass" - ], - "hash": 885087842, - "properties": { - "m_effectName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, + "hash": 2596123949 + }, + "m_polymorphSpellTemplateID": { + "type": "unsigned int", + "id": 45, + "offset": 576, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2029161513 + "hash": 1320079328 }, - "m_effectCategory": { + "m_side": { "type": "std::string", - "id": 1, - "offset": 104, - "flags": 7, + "id": 46, + "offset": 600, + "flags": 1, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1852673222 + "hash": 1717547872 }, - "m_sortOrder": { - "type": "int", - "id": 2, - "offset": 148, - "flags": 7, + "m_shadowSpellsDisabled": { + "type": "bool", + "id": 47, + "offset": 672, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1411218206 + "hash": 2077139652 }, - "m_duration": { - "type": "double", - "id": 3, - "offset": 192, - "flags": 7, + "m_ignoreSpellsPvPOnlyFlag": { + "type": "bool", + "id": 48, + "offset": 673, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2727932435 - }, - "m_stackingCategories": { - "type": "std::string", - "id": 4, - "offset": 160, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1774497525 + "hash": 1714276188 }, - "m_isPersistent": { + "m_ignoreSpellsPvEOnlyFlag": { "type": "bool", - "id": 5, - "offset": 153, - "flags": 7, + "id": 49, + "offset": 674, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 923861920 + "hash": 1691675729 }, - "m_bIsOnPet": { + "m_bossMob": { "type": "bool", - "id": 6, - "offset": 154, - "flags": 7, + "id": 50, + "offset": 675, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 522593303 + "hash": 986129576 }, - "m_isPublic": { + "m_hidePVPEnemyChat": { "type": "bool", - "id": 7, - "offset": 152, - "flags": 7, + "id": 51, + "offset": 676, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1728439822 + "hash": 1284658049 }, - "m_visualEffectAddName": { - "type": "std::string", - "id": 8, - "offset": 200, - "flags": 7, - "container": "Static", - "dynamic": false, + "m_combatTriggerIDs": { + "type": "int", + "id": 52, + "offset": 696, + "flags": 1, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 3382086694 + "hash": 1654684388 }, - "m_visualEffectRemoveName": { - "type": "std::string", - "id": 9, - "offset": 232, - "flags": 7, + "m_backlash": { + "type": "int", + "id": 53, + "offset": 724, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1541697323 + "hash": 857558899 }, - "m_onAddFunctorName": { - "type": "std::string", - "id": 10, - "offset": 280, - "flags": 7, + "m_pastBacklash": { + "type": "int", + "id": 54, + "offset": 728, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1561843107 + "hash": 1229328939 }, - "m_onRemoveFunctorName": { - "type": "std::string", - "id": 11, - "offset": 312, - "flags": 7, + "m_shadowCreatureLevel": { + "type": "int", + "id": 55, + "offset": 732, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2559017864 + "hash": 1119572179 }, - "m_stackingRule": { - "type": "enum STACKING_RULE", - "id": 12, - "offset": 144, - "flags": 2097159, + "m_pastShadowCreatureLevel": { + "type": "int", + "id": 56, + "offset": 736, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 431568889, - "enum_options": { - "STACKING_ALLOWED": 0, - "STACKING_NOSTACK": 1, - "STACKING_REPLACE": 2 - } + "hash": 1267855499 }, - "m_spellName": { - "type": "std::string", - "id": 13, - "offset": 360, - "flags": 7, - "container": "Static", - "dynamic": false, + "m_shadowCreatureLevelCount": { + "type": "int", + "id": 57, + "offset": 744, + "flags": 31, + "container": "Vector", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 2688485244 - } - } - }, - "88831401": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 88831401, - "properties": { - "m_totalCostMin": { - "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 7, + "hash": 975615804 + }, + "m_interceptEffect": { + "type": "class SharedPointer", + "id": 58, + "offset": 768, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 496624814 + "pointer": true, + "hash": 339294150 }, - "m_totalCostMax": { - "type": "unsigned int", - "id": 1, - "offset": 76, - "flags": 7, + "m_roundsSinceShadowPip": { + "type": "int", + "id": 59, + "offset": 800, + "flags": 1, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 496624560 + "hash": 682042934 }, - "m_totalRarityMin": { - "type": "unsigned int", - "id": 2, - "offset": 80, - "flags": 7, + "m_polymorphEffect": { + "type": "class SharedPointer", + "id": 60, + "offset": 824, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1549157264 + "pointer": true, + "hash": 2193528962 }, - "m_totalRarityMax": { - "type": "unsigned int", - "id": 3, - "offset": 84, - "flags": 7, + "m_confused": { + "type": "int", + "id": 61, + "offset": 196, + "flags": 25, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1549157010 + "hash": 1851913585 }, - "m_statDataMin": { - "type": "unsigned int", - "id": 4, - "offset": 88, - "flags": 7, + "m_confusionTrigger": { + "type": "int", + "id": 62, + "offset": 200, + "flags": 25, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 988659687 + "hash": 554584130 }, - "m_statDataMax": { - "type": "unsigned int", - "id": 5, - "offset": 92, - "flags": 7, + "m_confusionDisplay": { + "type": "bool", + "id": 63, + "offset": 204, + "flags": 25, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 988659433 + "hash": 1028383709 }, - "m_wowDataMin": { - "type": "unsigned int", - "id": 6, - "offset": 96, - "flags": 7, + "m_confusedTarget": { + "type": "bool", + "id": 64, + "offset": 205, + "flags": 25, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1289909672 + "hash": 1193542673 }, - "m_wowDataMax": { - "type": "unsigned int", - "id": 7, - "offset": 100, - "flags": 7, + "m_untargetable": { + "type": "bool", + "id": 65, + "offset": 206, + "flags": 25, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1289909418 + "hash": 36479793 }, - "m_pedigreeDataMin": { - "type": "unsigned int", - "id": 8, - "offset": 104, - "flags": 7, + "m_untargetableRounds": { + "type": "int", + "id": 66, + "offset": 208, + "flags": 25, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1947586064 + "hash": 80618355 }, - "m_pedigreeDataMax": { - "type": "unsigned int", - "id": 9, - "offset": 108, - "flags": 7, + "m_restrictedTarget": { + "type": "bool", + "id": 67, + "offset": 212, + "flags": 25, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1947585810 + "hash": 394144563 }, - "m_statsWeight": { - "type": "float", - "id": 10, - "offset": 112, - "flags": 7, + "m_exitCombat": { + "type": "bool", + "id": 68, + "offset": 213, + "flags": 25, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1028083822 + "hash": 1293141763 }, - "m_wowWeight": { - "type": "float", - "id": 11, - "offset": 116, - "flags": 7, + "m_stunnedDisplay": { + "type": "bool", + "id": 69, + "offset": 192, + "flags": 25, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1781950908 + "hash": 892304554 }, - "m_pedigreeWeight": { - "type": "float", - "id": 12, - "offset": 120, - "flags": 7, + "m_mindcontrolledDisplay": { + "type": "bool", + "id": 70, + "offset": 220, + "flags": 25, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2192332068 + "hash": 174689415 }, - "m_kioskCombatTalentCostMin": { - "type": "int", - "id": 13, - "offset": 128, - "flags": 7, - "container": "Vector", - "dynamic": true, + "m_autoPass": { + "type": "bool", + "id": 71, + "offset": 720, + "flags": 25, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 2086730582 + "hash": 1919864803 }, - "m_kioskCombatTalentCostGrowth": { - "type": "int", - "id": 14, - "offset": 152, - "flags": 7, - "container": "Vector", - "dynamic": true, + "m_vanish": { + "type": "bool", + "id": 72, + "offset": 721, + "flags": 25, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 1600144109 + "hash": 1058591164 }, - "m_kioskDerbyTalentCostMin": { - "type": "int", - "id": 15, - "offset": 176, - "flags": 7, - "container": "Vector", - "dynamic": true, + "m_myTeamTurn": { + "type": "bool", + "id": 73, + "offset": 722, + "flags": 25, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 787626614 + "hash": 1134422697 }, - "m_kioskDerbyTalentCostGrowth": { - "type": "int", - "id": 16, - "offset": 200, - "flags": 7, - "container": "Vector", - "dynamic": true, + "m_needToCleanAuras": { + "type": "bool", + "id": 74, + "offset": 888, + "flags": 25, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 1995353613 + "hash": 1159570481 }, - "m_inPersonCombatTalentCostMin": { - "type": "int", - "id": 17, - "offset": 224, - "flags": 7, - "container": "Vector", - "dynamic": true, + "m_planningPhasePipAquiredType": { + "type": "enum CombatParticipant::PipAquiredByEnum", + "id": 75, + "offset": 816, + "flags": 2097159, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 337785603 + "hash": 1435933659, + "enum_options": { + "CombatParticipant::AQUIRED_PIP_UNKNOWN": 0, + "CombatParticipant::AQUIRED_PIP_NORMAL": 1, + "CombatParticipant::AQUIRED_PIP_POWER": 2, + "CombatParticipant::AQUIRED_NORMAL_TO_POWER_PIP_CONVERSION": 4, + "CombatParticipant::IMPEDE_PIPS": 5 + } }, - "m_inPersonCombatTalentCostGrowth": { - "type": "int", - "id": 18, - "offset": 248, - "flags": 7, - "container": "Vector", - "dynamic": true, + "m_cheatSettings": { + "type": "class SharedPointer", + "id": 76, + "offset": 96, + "flags": 31, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": false, - "hash": 168359802 + "pointer": true, + "hash": 2742666223 }, - "m_inPersonDerbyTalentCostMin": { - "type": "int", - "id": 19, - "offset": 272, - "flags": 7, - "container": "Vector", - "dynamic": true, + "m_isMonster": { + "type": "unsigned int", + "id": 77, + "offset": 408, + "flags": 31, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 409251971 + "hash": 1530878065 }, - "m_inPersonDerbyTalentCostGrowth": { - "type": "int", - "id": 20, - "offset": 296, - "flags": 7, - "container": "Vector", + "m_weaponNifSoundList": { + "type": "class SharedPointer", + "id": 78, + "offset": 80, + "flags": 31, + "container": "List", "dynamic": true, "singleton": false, - "pointer": false, - "hash": 64783610 + "pointer": true, + "hash": 2575326929 }, - "m_kioskPedigreeMin": { + "m_petCombatTrigger": { "type": "int", - "id": 21, - "offset": 320, - "flags": 7, + "id": 79, + "offset": 712, + "flags": 1, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1416396228 + "hash": 822894541 }, - "m_kioskCombatDivisor": { + "m_petCombatTriggerTarget": { "type": "int", - "id": 22, - "offset": 324, - "flags": 7, + "id": 80, + "offset": 716, + "flags": 1, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1325329457 + "hash": 675145556 }, - "m_kioskCombatExponent": { - "type": "int", - "id": 23, - "offset": 328, - "flags": 7, + "m_shadowPipRateThreshold": { + "type": "float", + "id": 81, + "offset": 840, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 268917794 + "hash": 1215959391 }, - "m_kioskDerbyDivisor": { + "m_baseSpellDamage": { "type": "int", - "id": 24, - "offset": 332, - "flags": 7, + "id": 82, + "offset": 844, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1909936977 + "hash": 871613364 }, - "m_kioskDerbyExponent": { - "type": "int", - "id": 25, - "offset": 336, - "flags": 7, + "m_statDamage": { + "type": "float", + "id": 83, + "offset": 848, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 233613122 + "hash": 1480169970 }, - "m_inPersonPedigreeMin": { - "type": "int", - "id": 26, - "offset": 340, - "flags": 7, + "m_statResist": { + "type": "float", + "id": 84, + "offset": 852, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 769349745 + "hash": 2033033901 }, - "m_inPersonCombatDivisor": { - "type": "int", - "id": 27, - "offset": 344, - "flags": 7, + "m_statPierce": { + "type": "float", + "id": 85, + "offset": 856, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1066346014 + "hash": 1959012939 }, - "m_inPersonCombatExponent": { + "m_mobLevel": { "type": "int", - "id": 28, - "offset": 348, - "flags": 7, + "id": 86, + "offset": 860, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 312398767 + "hash": 186067024 }, - "m_inPersonDerbyDivisor": { - "type": "int", - "id": 29, - "offset": 352, - "flags": 7, + "m_bPlayerTimeUpdated": { + "type": "bool", + "id": 87, + "offset": 864, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2032239518 + "hash": 877395800 }, - "m_inPersonDerbyExponent": { - "type": "int", - "id": 30, - "offset": 356, - "flags": 7, + "m_bPlayerTimeEliminated": { + "type": "bool", + "id": 88, + "offset": 865, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2122113327 + "hash": 1842006605 }, - "m_petLendsLevelDivisor": { - "type": "int", - "id": 31, - "offset": 408, - "flags": 7, + "m_bPlayerTimeWarning": { + "type": "bool", + "id": 89, + "offset": 866, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 574571025 - }, - "m_balancePetLendLoot": { - "type": "std::string", - "id": 32, - "offset": 416, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1766917643 - }, - "m_deathPetLendLoot": { - "type": "std::string", - "id": 33, - "offset": 440, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2869638987 + "hash": 742875591 }, - "m_firePetLendLoot": { - "type": "std::string", - "id": 34, - "offset": 464, - "flags": 7, - "container": "Vector", - "dynamic": true, + "m_deckFullness": { + "type": "float", + "id": 90, + "offset": 868, + "flags": 31, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 2059692267 + "hash": 156080730 }, - "m_icePetLendLoot": { - "type": "std::string", - "id": 35, - "offset": 488, - "flags": 7, - "container": "Vector", - "dynamic": true, + "m_archmasteryPoints": { + "type": "float", + "id": 91, + "offset": 872, + "flags": 31, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 3354513750 + "hash": 261464375 }, - "m_lifePetLendLoot": { - "type": "std::string", - "id": 36, - "offset": 512, - "flags": 7, - "container": "Vector", - "dynamic": true, + "m_maxArchmasteryPoints": { + "type": "float", + "id": 92, + "offset": 876, + "flags": 31, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 2516355429 + "hash": 430012637 }, - "m_mythPetLendLoot": { - "type": "std::string", - "id": 37, - "offset": 536, - "flags": 7, - "container": "Vector", - "dynamic": true, + "m_archmasterySchool": { + "type": "unsigned int", + "id": 93, + "offset": 880, + "flags": 31, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 3612618343 + "hash": 485805784 }, - "m_stormPetLendLoot": { - "type": "std::string", - "id": 38, - "offset": 560, - "flags": 7, - "container": "Vector", - "dynamic": true, + "m_archmasteryFlags": { + "type": "unsigned int", + "id": 94, + "offset": 884, + "flags": 31, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 2262680698 + "hash": 1571282557 } } }, - "1236399804": { - "name": "class BlobRequest*", + "971982789": { + "name": "class ReqCanSummonHenchman", "bases": [ + "Requirement", "PropertyClass" ], - "hash": 1236399804, + "hash": 971982789, "properties": { - "m_type": { - "type": "std::string", + "m_applyNOT": { + "type": "bool", "id": 0, "offset": 72, - "flags": 7, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1717601629 + "hash": 1746328074, + "enum_options": { + "__DEFAULT": 0 + } }, - "m_associatedGID": { - "type": "gid", + "m_operator": { + "type": "enum Requirement::Operator", "id": 1, - "offset": 104, - "flags": 7, + "offset": 76, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 148404716 - }, - "m_blobRequestObjectList": { - "type": "class SharedPointer", - "id": 2, - "offset": 112, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 883864802 + "hash": 2672792317, + "enum_options": { + "ROP_AND": 0, + "ROP_OR": 1, + "__DEFAULT": "ROP_AND" + } } } }, - "88657520": { - "name": "class WizStatisticScalerEffect*", + "537797470": { + "name": "class SharedPointer", "bases": [ - "StatisticEffect", - "GameEffectBase", + "AlchemyBehavior", + "BehaviorInstance", "PropertyClass" ], - "hash": 88657520, + "hash": 537797470, "properties": { - "m_currentTickCount": { - "type": "double", + "m_behaviorTemplateNameID": { + "type": "unsigned int", "id": 0, - "offset": 80, - "flags": 63, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2533274692 + "hash": 223437287 }, - "m_effectNameID": { - "type": "unsigned int", + "m_recipeBag": { + "type": "class RecipeBag", "id": 1, - "offset": 96, - "flags": 63, + "offset": 112, + "flags": 27, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1204067144 + "hash": 2218166892 }, - "m_bIsOnPet": { - "type": "bool", + "m_craftingSlotsBag": { + "type": "class ObjectBag", "id": 2, - "offset": 73, - "flags": 31, + "offset": 320, + "flags": 27, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 522593303 + "hash": 2324986502 }, - "m_originatorID": { - "type": "gid", + "m_reagentBag": { + "type": "class ObjectBag", "id": 3, - "offset": 104, - "flags": 39, + "offset": 512, + "flags": 27, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1131810019 + "hash": 2459563753 }, - "m_itemSlotID": { - "type": "unsigned int", + "m_bonusCrafting": { + "type": "int", "id": 4, - "offset": 112, - "flags": 63, + "offset": 704, + "flags": 59, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1895747595 + "hash": 943921711 }, - "m_internalID": { - "type": "int", + "m_timerMultiplier": { + "type": "float", "id": 5, - "offset": 92, - "flags": 63, + "offset": 708, + "flags": 27, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1643137924 + "hash": 1373659455 }, - "m_endTime": { - "type": "unsigned int", + "m_maxReagentStack": { + "type": "int", "id": 6, - "offset": 88, - "flags": 31, + "offset": 712, + "flags": 27, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 716479635 + "hash": 1121296540 }, - "m_lookupIndex": { - "type": "int", + "m_equippedRecipes": { + "type": "unsigned int", "id": 7, - "offset": 128, - "flags": 31, + "offset": 720, + "flags": 27, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1981226997 + }, + "m_equippedRecipeData": { + "type": "std::string", + "id": 8, + "offset": 736, + "flags": 551, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1626623948 + "hash": 2773803466 } } }, - "487394206": { - "name": "class SharedPointer", + "1821845783": { + "name": "class ClientAttachParticleActorCinematicAction", "bases": [ - "AddBacklashEffectCinematicAction", + "AttachParticleActorCinematicAction", "ActorCinematicAction", "CinematicAction", "PropertyClass" ], - "hash": 487394206, + "hash": 1821845783, "properties": { "m_timeOffset": { "type": "float", @@ -645829,75 +602567,51 @@ "pointer": false, "hash": 2285866132 }, - "m_backlashEffect": { + "m_effectName": { "type": "std::string", "id": 2, "offset": 120, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3051687009 - } - } - }, - "1656297832": { - "name": "class SharedPointer", - "bases": [ - "ObstacleCourseObstacleBehaviorTemplate", - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 1656297832, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3130754092 + "hash": 2029161513 }, - "m_width": { - "type": "double", - "id": 1, - "offset": 120, + "m_nodeName": { + "type": "std::string", + "id": 3, + "offset": 152, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2712265261 + "hash": 3607089954 }, - "m_height": { - "type": "double", - "id": 2, - "offset": 128, - "flags": 7, + "m_assetName": { + "type": "std::string", + "id": 4, + "offset": 184, + "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2410586086 + "hash": 1513131580 } } }, - "886975631": { - "name": "class ClientBuffDebuffEventCinematicAction*", + "1382540493": { + "name": "class AquariumBehaviorTemplate*", "bases": [ - "BuffDebuffEventCinematicAction", - "ActorCinematicAction", - "CinematicAction", + "BehaviorTemplate", "PropertyClass" ], - "hash": 886975631, + "hash": 1382540493, "properties": { - "m_timeOffset": { - "type": "float", + "m_behaviorName": { + "type": "std::string", "id": 0, "offset": 72, "flags": 7, @@ -645905,178 +602619,50 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 + "hash": 3130754092 }, - "m_actor": { - "type": "std::string", + "m_fishtankSize": { + "type": "int", "id": 1, - "offset": 80, + "offset": 120, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2285866132 - } - } - }, - "487810143": { - "name": "class SharedPointer", - "bases": [ - "Requirement", - "PropertyClass" - ], - "hash": 487810143, - "properties": { - "m_applyNOT": { - "type": "bool", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1746328074, - "enum_options": { - "__DEFAULT": 0 - } - }, - "m_operator": { - "type": "enum Requirement::Operator", - "id": 1, - "offset": 76, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2672792317, - "enum_options": { - "ROP_AND": 0, - "ROP_OR": 1, - "__DEFAULT": "ROP_AND" - } - }, - "m_playerGender": { - "type": "std::string", - "id": 2, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2199467133 - } - } - }, - "886350767": { - "name": "class QuestEffect2", - "bases": [ - "ContainerEffect", - "GameEffectBase", - "PropertyClass" - ], - "hash": 886350767, - "properties": { - "m_currentTickCount": { - "type": "double", - "id": 0, - "offset": 80, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2533274692 - }, - "m_effectNameID": { - "type": "unsigned int", - "id": 1, - "offset": 96, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1204067144 + "hash": 1397459629 }, - "m_bIsOnPet": { - "type": "bool", + "m_fishtankType": { + "type": "int", "id": 2, - "offset": 73, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 522593303 - }, - "m_originatorID": { - "type": "gid", - "id": 3, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1131810019 - }, - "m_itemSlotID": { - "type": "unsigned int", - "id": 4, - "offset": 112, - "flags": 63, + "offset": 124, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1895747595 + "hash": 1397512660 }, - "m_internalID": { + "m_numberOfFish": { "type": "int", - "id": 5, - "offset": 92, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1643137924 - }, - "m_endTime": { - "type": "unsigned int", - "id": 6, - "offset": 88, - "flags": 31, + "id": 3, + "offset": 128, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 716479635 - }, - "m_displayInfo": { - "type": "class SharedPointer", - "id": 7, - "offset": 128, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2998612909 + "hash": 1143336898 } } }, - "1237032719": { - "name": "class MonsterMagicBehaviorBase*", + "1820883985": { + "name": "class SharedPointer", "bases": [ "BehaviorInstance", "PropertyClass" ], - "hash": 1237032719, + "hash": 1820883985, "properties": { "m_behaviorTemplateNameID": { "type": "unsigned int", @@ -646088,94 +602674,18 @@ "singleton": false, "pointer": false, "hash": 223437287 - }, - "m_monsterData": { - "type": "std::string", - "id": 1, - "offset": 128, - "flags": 551, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3377737309 - } - } - }, - "1656398536": { - "name": "class PetDerbyTrackDescriptor*", - "bases": [ - "NodeDescriptor", - "PropertyClass" - ], - "hash": 1656398536, - "properties": { - "m_terrainType": { - "type": "enum PetDerbyTrackTerrain", - "id": 0, - "offset": 72, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2688629581, - "enum_options": { - "PDTT_Water": 1, - "PDTT_Grass": 2, - "PDTT_Clay": 3, - "PDTT_Dirt": 4, - "PDTT_Cobblestone": 0, - "PDTT_Mud": 5 - } - }, - "m_laneSwitch": { - "type": "enum PetDerbyLaneSwitch", - "id": 1, - "offset": 76, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2094800111, - "enum_options": { - "PDLS_None": 0, - "PDLS_Left": 1, - "PDLS_Right": 2, - "PDLS_Both": 3 - } - } - } - }, - "1236928591": { - "name": "class LocaleManager", - "bases": [ - "PropertyClass" - ], - "hash": 1236928591, - "properties": { - "m_localeMappingList": { - "type": "class LocaleMapping", - "id": 0, - "offset": 104, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 762464984 } } }, - "89261525": { - "name": "class CritPanel*", + "1819500544": { + "name": "class ManaGlobe*", "bases": [ + "StatGlobe", "ControlSprite", "Window", "PropertyClass" ], - "hash": 89261525, + "hash": 1819500544, "properties": { "m_sName": { "type": "std::string", @@ -646445,2592 +602955,2209 @@ "singleton": false, "pointer": false, "hash": 3491704390 + }, + "m_amount": { + "type": "int", + "id": 21, + "offset": 800, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 248546638 } } }, - "108720390": { - "name": "class GardenSpellTemplate", + "972235290": { + "name": "class SharedPointer", "bases": [ - "SpellTemplate", - "CoreTemplate", + "BehaviorInstance", "PropertyClass" ], - "hash": 108720390, + "hash": 972235290, "properties": { - "m_behaviors": { - "type": "class BehaviorTemplate*", + "m_behaviorTemplateNameID": { + "type": "unsigned int", "id": 0, - "offset": 72, - "flags": 7, - "container": "Vector", - "dynamic": true, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1197808594 - }, - "m_name": { + "pointer": false, + "hash": 223437287 + } + } + }, + "1819480064": { + "name": "class ManaGlobe", + "bases": [ + "StatGlobe", + "ControlSprite", + "Window", + "PropertyClass" + ], + "hash": 1819480064, + "properties": { + "m_sName": { "type": "std::string", - "id": 1, - "offset": 96, - "flags": 7, + "id": 0, + "offset": 80, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1717359772 + "hash": 2306437263 }, - "m_description": { - "type": "std::string", + "m_Children": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621225959 + }, + "m_Style": { + "type": "unsigned int", "id": 2, - "offset": 168, - "flags": 8388615, + "offset": 152, + "flags": 1048583, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1649374815 + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "SCALE_CHILDREN": 2, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "FOCUS_LOCKED": 64, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152 + } }, - "m_advancedDescription": { - "type": "std::string", + "m_Flags": { + "type": "unsigned int", "id": 3, - "offset": 200, - "flags": 8388615, + "offset": 156, + "flags": 1048583, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3465713013 + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648, + "ONE_SHOT": 8388608, + "FLIPPED_HORIZONTAL": 16777216, + "FLIPPED_VERTICAL": 33554432 + } }, - "m_displayName": { - "type": "std::string", + "m_Window": { + "type": "class Rect", "id": 4, - "offset": 136, - "flags": 8388615, + "offset": 160, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2446900370 + "hash": 3105139380 }, - "m_spellBase": { - "type": "std::string", + "m_fTargetAlpha": { + "type": "float", "id": 5, - "offset": 248, - "flags": 268435463, + "offset": 212, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2688054198, - "enum_options": { - "__BASECLASS": "CinematicTemplate" - } + "hash": 1809129834 }, - "m_effects": { - "type": "class SharedPointer", + "m_fDisabledAlpha": { + "type": "float", "id": 6, - "offset": 280, - "flags": 7, - "container": "Vector", - "dynamic": true, + "offset": 216, + "flags": 135, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 370726379 + "pointer": false, + "hash": 1389987675 }, - "m_sMagicSchoolName": { - "type": "std::string", + "m_fAlpha": { + "type": "float", "id": 7, - "offset": 312, - "flags": 7, + "offset": 208, + "flags": 65671, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2035693400 + "hash": 482130755 }, - "m_sTypeName": { - "type": "std::string", + "m_pWindowStyle": { + "type": "class SharedPointer", "id": 8, - "offset": 352, - "flags": 7, + "offset": 232, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 3580785905 + "pointer": true, + "hash": 3623628394 }, - "m_trainingCost": { - "type": "int", + "m_sHelp": { + "type": "std::wstring", "id": 9, - "offset": 384, - "flags": 7, + "offset": 248, + "flags": 4194439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 982588239 + "hash": 2102211316 }, - "m_accuracy": { - "type": "int", + "m_sScript": { + "type": "std::string", "id": 10, - "offset": 388, - "flags": 7, + "offset": 352, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1636315493 + "hash": 1846695875 }, - "m_baseCost": { - "type": "int", + "m_Offset": { + "type": "class Point", "id": 11, - "offset": 232, - "flags": 7, + "offset": 192, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1475151502 + "hash": 3389835433 }, - "m_creditsCost": { - "type": "int", + "m_Scale": { + "type": "class Point", "id": 12, - "offset": 236, - "flags": 7, + "offset": 200, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 715313825 + "hash": 2547159940 }, - "m_pvpCurrencyCost": { - "type": "int", + "m_sTip": { + "type": "std::wstring", "id": 13, - "offset": 240, - "flags": 7, + "offset": 392, + "flags": 4194439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 645595444 + "hash": 1513510520 }, - "m_pvpTourneyCurrencyCost": { - "type": "int", + "m_BubbleList": { + "type": "class WindowBubble", "id": 14, - "offset": 244, - "flags": 7, - "container": "Static", - "dynamic": false, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 517874954 + "hash": 2587533771 }, - "m_boosterPackIcon": { - "type": "std::string", + "m_ParentOffset": { + "type": "class Rect", "id": 15, - "offset": 496, - "flags": 131079, + "offset": 176, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3428653697 + "hash": 3091503757 }, - "m_validTargetSpells": { - "type": "unsigned int", + "m_pMaterial": { + "type": "class SharedPointer", "id": 16, - "offset": 392, - "flags": 7, - "container": "List", - "dynamic": true, + "offset": 592, + "flags": 135, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": false, - "hash": 2355782967 + "pointer": true, + "hash": 3479277078 }, - "m_PvP": { - "type": "bool", + "m_fRotation": { + "type": "float", "id": 17, - "offset": 408, - "flags": 7, + "offset": 608, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 269492361 + "hash": 1175400173 }, - "m_PvE": { - "type": "bool", + "m_Color": { + "type": "class Color", "id": 18, - "offset": 409, - "flags": 7, + "offset": 584, + "flags": 262279, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 269492350 + "hash": 1753714077 }, - "m_noPvPEnchant": { - "type": "bool", + "m_textColor": { + "type": "class Color", "id": 19, - "offset": 410, - "flags": 7, + "offset": 612, + "flags": 262279, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 661581703 + "hash": 2528109250 }, - "m_noPvEEnchant": { - "type": "bool", + "m_textComponent": { + "type": "class TextComponent", "id": 20, - "offset": 411, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 10144220 - }, - "m_battlegroundsOnly": { - "type": "bool", - "id": 21, - "offset": 412, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1244782419 - }, - "m_Treasure": { - "type": "bool", - "id": 22, - "offset": 413, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1749096414 - }, - "m_noDiscard": { - "type": "bool", - "id": 23, - "offset": 414, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 565749226 - }, - "m_leavesPlayWhenCast": { - "type": "bool", - "id": 24, - "offset": 532, - "flags": 7, + "offset": 616, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 698216294 + "hash": 3491704390 }, - "m_imageIndex": { + "m_amount": { "type": "int", - "id": 25, - "offset": 416, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1570500405 - }, - "m_imageName": { - "type": "std::string", - "id": 26, - "offset": 424, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2391520543 - }, - "m_cloaked": { - "type": "bool", - "id": 27, - "offset": 489, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 7349510 - }, - "m_casterInvisible": { - "type": "bool", - "id": 28, - "offset": 490, - "flags": 7, + "id": 21, + "offset": 800, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 310214650 - }, - "m_adjectives": { - "type": "std::string", - "id": 29, - "offset": 576, + "hash": 248546638 + } + } + }, + "1384179440": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1384179440, + "properties": { + "m_bodyOfWaterList": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, "flags": 7, "container": "List", "dynamic": true, "singleton": false, - "pointer": false, - "hash": 2967855037 - }, - "m_spellSourceType": { - "type": "enum SpellTemplate::kSpellSourceType", - "id": 30, - "offset": 528, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 156272727, - "enum_options": { - "kCaster": 0, - "kPet": 1, - "kShadowCreature": 2, - "kWeapon": 3, - "kEquipment": 4 - } - }, - "m_cloakedName": { - "type": "std::string", - "id": 31, - "offset": 536, - "flags": 268435463, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2846679215, - "enum_options": { - "__BASECLASS": "SpellTemplate" - } - }, - "m_purchaseRequirements": { - "type": "class RequirementList*", - "id": 32, - "offset": 608, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, "pointer": true, - "hash": 3174641793 - }, - "m_displayRequirements": { - "type": "class RequirementList*", - "id": 33, - "offset": 840, - "flags": 7, - "container": "Static", - "dynamic": false, + "hash": 457750787 + } + } + }, + "566114343": { + "name": "class MatchActorList*", + "bases": [ + "PropertyClass" + ], + "hash": 566114343, + "properties": { + "m_list": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 31, + "container": "List", + "dynamic": true, "singleton": false, "pointer": true, - "hash": 3646782876 - }, - "m_descriptionTrainer": { - "type": "std::string", - "id": 34, - "offset": 616, - "flags": 8388871, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1756093908 - }, - "m_descriptionCombatHUD": { - "type": "std::string", - "id": 35, - "offset": 648, - "flags": 8388871, + "hash": 551684466 + } + } + }, + "1819344950": { + "name": "class std::list >", + "bases": [], + "hash": 1819344950, + "properties": {} + }, + "550945230": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 550945230, + "properties": { + "m_eloRecordID": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 16777279, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1631478006 + "hash": 832082468 }, - "m_displayIndex": { - "type": "int", - "id": 36, - "offset": 680, - "flags": 7, + "m_leagueID": { + "type": "unsigned int", + "id": 1, + "offset": 80, + "flags": 33554495, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1250551048 + "hash": 692361645 }, - "m_hiddenFromEffectsWindow": { - "type": "bool", - "id": 37, - "offset": 684, - "flags": 7, + "m_seasonID": { + "type": "unsigned int", + "id": 2, + "offset": 84, + "flags": 33554495, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1832736331 + "hash": 535260643 }, - "m_ignoreCharms": { - "type": "bool", - "id": 38, - "offset": 685, - "flags": 7, + "m_startTime": { + "type": "unsigned int", + "id": 3, + "offset": 88, + "flags": 33554495, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1840075893 + "hash": 1598371274 }, - "m_alwaysFizzle": { + "m_ended": { "type": "bool", - "id": 39, - "offset": 686, - "flags": 7, + "id": 4, + "offset": 92, + "flags": 33554495, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2030988856 + "hash": 795768915 }, - "m_spellCategory": { - "type": "std::string", - "id": 40, - "offset": 688, - "flags": 7, + "m_elo": { + "type": "int", + "id": 5, + "offset": 96, + "flags": 33554495, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2472376729 + "hash": 267033754 }, - "m_showPolymorphedName": { - "type": "bool", - "id": 41, - "offset": 720, - "flags": 7, + "m_rankIndex": { + "type": "int", + "id": 6, + "offset": 100, + "flags": 33554495, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2097929096 + "hash": 716259486 }, - "m_skipTruncation": { - "type": "bool", - "id": 42, - "offset": 721, - "flags": 263, + "m_wins": { + "type": "int", + "id": 7, + "offset": 104, + "flags": 33554495, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1838335249 + "hash": 219992347 }, - "m_maxCopies": { - "type": "unsigned int", - "id": 43, - "offset": 724, - "flags": 263, + "m_losses": { + "type": "int", + "id": 8, + "offset": 108, + "flags": 33554495, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 403022326 + "hash": 681549075 }, - "m_levelRestriction": { + "m_draws": { "type": "int", - "id": 44, - "offset": 728, - "flags": 263, + "id": 9, + "offset": 112, + "flags": 33554495, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 176502472 - }, - "m_delayEnchantment": { - "type": "bool", - "id": 45, - "offset": 732, - "flags": 287, + "hash": 792242907 + } + } + }, + "972529497": { + "name": "class SharedPointer", + "bases": [ + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 972529497, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 191336919 + "hash": 2237098605 }, - "m_delayEnchantmentOrder": { - "type": "enum SpellEffect::kDelayOrder", - "id": 46, - "offset": 736, - "flags": 287, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2526055263, - "enum_options": { - "SpellEffect::kAnyOrder": 0, - "SpellEffect::kFirst": 1, - "SpellEffect::kSecond": 2 - } - }, - "m_previousSpellName": { + "hash": 2285866132 + } + } + }, + "546078758": { + "name": "class RegistrarOption", + "bases": [ + "ServiceOptionBase", + "PropertyClass" + ], + "hash": 546078758, + "properties": { + "m_serviceName": { "type": "std::string", - "id": 47, - "offset": 744, - "flags": 268435463, + "id": 0, + "offset": 72, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2903322585, - "enum_options": { - "__BASECLASS": "SpellTemplate" - } + "hash": 2206028813 }, - "m_cardFront": { + "m_iconKey": { "type": "std::string", - "id": 48, - "offset": 456, - "flags": 131359, + "id": 1, + "offset": 168, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3557598526 + "hash": 2457138637 }, - "m_useGloss": { - "type": "bool", - "id": 49, - "offset": 488, - "flags": 287, + "m_displayKey": { + "type": "std::string", + "id": 2, + "offset": 104, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 668817544 + "hash": 3023276954 }, - "m_ignoreDispel": { - "type": "bool", - "id": 50, - "offset": 776, - "flags": 287, + "m_serviceIndex": { + "type": "unsigned int", + "id": 3, + "offset": 204, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1881041624 + "hash": 2103126710 }, - "m_backRowFriendly": { + "m_forceInteract": { "type": "bool", - "id": 51, - "offset": 777, - "flags": 287, + "id": 4, + "offset": 200, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 501584377 - }, - "m_spellRank": { - "type": "class SharedPointer", - "id": 52, - "offset": 784, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3152361374 - }, - "m_secondarySchoolName": { + "hash": 1705789564 + } + } + }, + "972419488": { + "name": "class SharedPointer", + "bases": [ + "TimedItemBehaviorTemplate", + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 972419488, + "properties": { + "m_behaviorName": { "type": "std::string", - "id": 53, - "offset": 800, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1803268236 - }, - "m_spellFusion": { - "type": "unsigned int", - "id": 54, - "offset": 836, + "id": 0, + "offset": 72, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1658928321 + "hash": 3130754092 }, - "m_requiredSchoolName": { + "m_expireTime": { "type": "std::string", - "id": 55, - "offset": 848, + "id": 1, + "offset": 128, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3576058981 + "hash": 3122602039 }, - "m_gardenSpellType": { - "type": "enum GardenSpellTemplate::GardenSpellType", - "id": 56, - "offset": 880, + "m_timerType": { + "type": "enum TimerType", + "id": 2, + "offset": 120, "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3204656351, + "hash": 571744132, "enum_options": { - "GS_SoilPreparation": 0, - "GS_Growing": 1, - "GS_InsectFighting": 2, - "GS_PlantProtection": 3, - "GS_PlantUtility": 4 + "TimerType_Game": 0, + "TimerType_Calendar": 1 } }, - "m_animationKFM": { + "m_typeList": { "type": "std::string", - "id": 57, - "offset": 888, - "flags": 131079, + "id": 3, + "offset": 160, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2119049625 + } + } + }, + "1391126556": { + "name": "class DeedBehavior", + "bases": [ + "DeedBehaviorBase", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1391126556, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2466280761 + "hash": 223437287 }, - "m_animationName": { - "type": "std::string", - "id": 58, - "offset": 920, - "flags": 7, + "m_lotInstanceGID": { + "type": "gid", + "id": 1, + "offset": 120, + "flags": 33554495, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3393414044 + "hash": 2010711536 }, - "m_soundEffectName": { - "type": "std::string", - "id": 59, - "offset": 1016, - "flags": 131079, + "m_streetAddress": { + "type": "int", + "id": 2, + "offset": 112, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3235436082 + "hash": 1809670519 }, - "m_soilTemplateID": { + "m_transferCoolDownTime": { "type": "unsigned int", - "id": 60, - "offset": 1048, - "flags": 7, + "id": 3, + "offset": 128, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2225235405 - }, - "m_providesWater": { - "type": "bool", - "id": 61, - "offset": 1052, + "hash": 1616830022 + } + } + }, + "543800998": { + "name": "class ClientBurnHangingEffectCinematicAction*", + "bases": [ + "BurnHangingEffectCinematicAction", + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 543800998, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1403713858 + "hash": 2237098605 }, - "m_providesSun": { - "type": "bool", - "id": 62, - "offset": 1053, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1942306581 + "hash": 2285866132 }, - "m_providesPollination": { + "m_cloaked": { "type": "bool", - "id": 63, - "offset": 1054, + "id": 2, + "offset": 152, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 443775752 + "hash": 7349510 }, - "m_providesMagic": { + "m_detonate": { "type": "bool", - "id": 64, - "offset": 1055, + "id": 3, + "offset": 153, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1391840608 + "hash": 1738601959 }, - "m_providesMusic": { - "type": "bool", - "id": 65, - "offset": 1056, - "flags": 7, + "m_burnSound": { + "type": "std::string", + "id": 4, + "offset": 120, + "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1392572416 - }, - "m_bugZapLevel": { - "type": "int", - "id": 66, - "offset": 1060, + "hash": 1827806971 + } + } + }, + "1389616021": { + "name": "class SavedSetting*", + "bases": [ + "PropertyClass" + ], + "hash": 1389616021, + "properties": { + "m_settingName": { + "type": "std::string", + "id": 0, + "offset": 72, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1811340955 + "hash": 2915007546 }, - "m_protectionTemplateID": { - "type": "unsigned int", - "id": 67, - "offset": 1064, + "m_settingValue": { + "type": "std::string", + "id": 1, + "offset": 104, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 280411517 - }, - "m_soundEffectGain": { - "type": "float", - "id": 68, - "offset": 1068, - "flags": 7, + "hash": 3178360950 + } + } + }, + "539899167": { + "name": "struct std::pair", + "bases": [], + "hash": 539899167, + "properties": {} + }, + "1820296186": { + "name": "class ClientGameEffectTimerDisplayBehavior", + "bases": [ + "GameEffectTimerDisplayBehavior", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1820296186, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1827685932, - "enum_options": { - "__DEFAULT": "1.0" - } + "hash": 223437287 }, - "m_utilitySpellType": { - "type": "enum GardenSpellTemplate::UtilitySpellType", - "id": 69, - "offset": 1072, - "flags": 2097159, + "m_effectName": { + "type": "std::string", + "id": 1, + "offset": 112, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1635978289, - "enum_options": { - "US_None": 0, - "US_Zap": 1, - "US_Revive": 2, - "US_Inspect": 3, - "US_Stasis": 4, - "US_PlowAll": 5, - "US_PlantAll": 6, - "US_HarvestNow": 7 - } + "hash": 2029161513 }, - "m_affectedRadius": { - "type": "int", - "id": 70, - "offset": 1076, - "flags": 7, + "m_textKey": { + "type": "std::string", + "id": 2, + "offset": 144, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 540739476 + "hash": 1720060457 }, - "m_yOffset": { + "m_height": { "type": "float", - "id": 71, - "offset": 1080, - "flags": 7, + "id": 3, + "offset": 176, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1592149751 + "hash": 602977104 }, - "m_energyCost": { - "type": "int", - "id": 72, - "offset": 1084, - "flags": 7, + "m_zOffset": { + "type": "float", + "id": 4, + "offset": 180, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1236111677 + "hash": 736134072 }, - "m_gardenSpellImageIndex": { - "type": "int", - "id": 73, - "offset": 1088, - "flags": 7, + "m_red": { + "type": "unsigned char", + "id": 5, + "offset": 184, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 721561158 + "hash": 904647115 }, - "m_gardenSpellImageName": { - "type": "std::string", - "id": 74, - "offset": 1096, - "flags": 131079, + "m_green": { + "type": "unsigned char", + "id": 6, + "offset": 185, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3146698256 + "hash": 1433403873 }, - "m_animationNameSmall": { - "type": "std::string", - "id": 75, - "offset": 952, - "flags": 7, + "m_blue": { + "type": "unsigned char", + "id": 7, + "offset": 186, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2904009973 + "hash": 856840600 }, - "m_animationNameLarge": { - "type": "std::string", - "id": 76, - "offset": 984, - "flags": 7, - "container": "Static", - "dynamic": false, + "m_triggers": { + "type": "class SharedPointer", + "id": 8, + "offset": 192, + "flags": 31, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 2895295623 + "pointer": true, + "hash": 3290329276 } } }, - "1663618278": { - "name": "class PipControl*", + "114420967": { + "name": "class Recipe*", "bases": [ - "Window", + "CoreObject", "PropertyClass" ], - "hash": 1663618278, + "hash": 114420967, "properties": { - "m_sName": { - "type": "std::string", + "m_inactiveBehaviors": { + "type": "class SharedPointer", "id": 0, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306437263 - }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 65671, + "offset": 224, + "flags": 31, "container": "Vector", "dynamic": true, "singleton": false, "pointer": true, - "hash": 2621225959 + "hash": 1850812559 }, - "m_Style": { - "type": "unsigned int", + "m_globalID.m_full": { + "type": "unsigned __int64", + "id": 1, + "offset": 72, + "flags": 16777247, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2312465444 + }, + "m_permID": { + "type": "unsigned __int64", "id": 2, - "offset": 152, - "flags": 1048583, + "offset": 80, + "flags": 16777247, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "SCALE_CHILDREN": 2, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "FOCUS_LOCKED": 64, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152 - } + "hash": 1298909658 }, - "m_Flags": { - "type": "unsigned int", + "m_location": { + "type": "class Vector3D", "id": 3, - "offset": 156, - "flags": 1048583, + "offset": 168, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } + "hash": 2239683611 }, - "m_Window": { - "type": "class Rect", + "m_orientation": { + "type": "class Vector3D", "id": 4, - "offset": 160, - "flags": 135, + "offset": 180, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3105139380 + "hash": 2344058766 }, - "m_fTargetAlpha": { + "m_fScale": { "type": "float", "id": 5, - "offset": 212, - "flags": 135, + "offset": 196, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1809129834 + "hash": 503137701 }, - "m_fDisabledAlpha": { - "type": "float", + "m_templateID.m_full": { + "type": "unsigned __int64", "id": 6, - "offset": 216, - "flags": 135, + "offset": 96, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1389987675 + "hash": 633907631 }, - "m_fAlpha": { - "type": "float", + "m_debugName": { + "type": "std::string", "id": 7, - "offset": 208, - "flags": 65671, + "offset": 104, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 482130755 + "hash": 3553984419 }, - "m_pWindowStyle": { - "type": "class SharedPointer", + "m_displayKey": { + "type": "std::string", "id": 8, - "offset": 232, - "flags": 135, + "offset": 136, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3623628394 + "pointer": false, + "hash": 3023276954 }, - "m_sHelp": { - "type": "std::wstring", + "m_zoneTagID": { + "type": "unsigned int", "id": 9, - "offset": 248, - "flags": 4194439, + "offset": 344, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2102211316 + "hash": 965291410 }, - "m_sScript": { - "type": "std::string", + "m_speedMultiplier": { + "type": "short", "id": 10, - "offset": 352, - "flags": 135, + "offset": 192, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1846695875 + "hash": 123130076 }, - "m_Offset": { - "type": "class Point", + "m_nMobileID": { + "type": "unsigned short", "id": 11, - "offset": 192, - "flags": 135, + "offset": 194, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3389835433 + "hash": 1054318939 }, - "m_Scale": { - "type": "class Point", + "m_recipeNameID": { + "type": "unsigned int", "id": 12, - "offset": 200, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2547159940 - }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2587533771 - }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, + "offset": 384, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3091503757 + "hash": 2168714419 } } }, - "89693479": { - "name": "class LootRarity", + "1386526745": { + "name": "class PathActionStop*", "bases": [ + "PathBehaviorTemplate::Action", "PropertyClass" ], - "hash": 89693479, + "hash": 1386526745, "properties": { - "m_rarity": { - "type": "enum RarityType", + "m_nPathID": { + "type": "gid", "id": 0, - "offset": 80, - "flags": 2097183, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2253792108, - "enum_options": { - "RT_COMMON": 0, - "RT_UNCOMMON": 1, - "RT_RARE": 2, - "RT_ULTRARARE": 3, - "RT_EPIC": 4 - } + "hash": 214382368 }, - "m_lootGid": { - "type": "gid", + "m_nNodeID": { + "type": "int", "id": 1, - "offset": 72, - "flags": 31, + "offset": 80, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1008695306 + "hash": 152152635, + "enum_options": { + "__DEFAULT": 4294967295 + } }, - "m_expectedValue": { - "type": "float", + "m_nPriority": { + "type": "int", "id": 2, - "offset": 104, - "flags": 23, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1011900742 - }, - "m_expectedChance": { - "type": "float", - "id": 3, - "offset": 108, - "flags": 23, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1850495755 - } - } - }, - "1246144203": { - "name": "class ClientStopBacklashRotationEffectCinematicAction*", - "bases": [ - "StopBacklashRotationEffectCinematicAction", - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 1246144203, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, + "offset": 84, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 + "hash": 1515251530, + "enum_options": { + "__DEFAULT": 100 + } }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, + "m_nChance": { + "type": "int", + "id": 3, + "offset": 88, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2285866132 + "hash": 1860748394, + "enum_options": { + "__DEFAULT": 50 + } } } }, - "1660963204": { - "name": "class RequirementFailNotification*", + "538644871": { + "name": "class ClientCombatParticipant", "bases": [ - "ServiceOptionBase", + "CombatParticipant", "PropertyClass" ], - "hash": 1660963204, + "hash": 538644871, "properties": { - "m_serviceName": { - "type": "std::string", + "m_ownerID.m_full": { + "type": "unsigned __int64", "id": 0, - "offset": 72, + "offset": 112, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2206028813 + "hash": 2149616286 }, - "m_iconKey": { - "type": "std::string", + "m_templateID.m_full": { + "type": "unsigned __int64", "id": 1, - "offset": 168, + "offset": 120, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2457138637 + "hash": 633907631 }, - "m_displayKey": { - "type": "std::string", + "m_isPlayer": { + "type": "bool", "id": 2, - "offset": 104, + "offset": 128, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3023276954 + "hash": 1717744636 }, - "m_serviceIndex": { - "type": "unsigned int", + "m_zoneID.m_full": { + "type": "unsigned __int64", "id": 3, - "offset": 204, + "offset": 136, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2103126710 + "hash": 2105998895 }, - "m_forceInteract": { - "type": "bool", + "m_teamID": { + "type": "int", "id": 4, - "offset": 200, + "offset": 144, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1705789564 + "hash": 982118638 }, - "m_failureMessage": { - "type": "std::string", + "m_primaryMagicSchoolID": { + "type": "int", "id": 5, - "offset": 224, + "offset": 148, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1882376712 - } - } - }, - "2044006224": { - "name": "class ClientFloatingTextCinematicAction", - "bases": [ - "FloatingTextCinematicAction", - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 2044006224, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 + "hash": 1864910356 }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, + "m_pipCount": { + "type": "class SharedPointer", + "id": 6, + "offset": 152, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 2285866132 + "pointer": true, + "hash": 1862540484 }, - "m_stringTableEntry": { - "type": "std::string", - "id": 2, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2181170604 - } - } - }, - "89300263": { - "name": "class LootRarity*", - "bases": [ - "PropertyClass" - ], - "hash": 89300263, - "properties": { - "m_rarity": { - "type": "enum RarityType", - "id": 0, - "offset": 80, - "flags": 2097183, - "container": "Static", - "dynamic": false, + "m_pipRoundRates": { + "type": "class SharedPointer", + "id": 7, + "offset": 168, + "flags": 31, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 2253792108, - "enum_options": { - "RT_COMMON": 0, - "RT_UNCOMMON": 1, - "RT_RARE": 2, - "RT_ULTRARARE": 3, - "RT_EPIC": 4 - } + "pointer": true, + "hash": 1859513241 }, - "m_lootGid": { - "type": "gid", - "id": 1, - "offset": 72, + "m_PipsSuspended": { + "type": "bool", + "id": 8, + "offset": 184, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1008695306 + "hash": 98171898 }, - "m_expectedValue": { - "type": "float", - "id": 2, - "offset": 104, - "flags": 23, + "m_stunned": { + "type": "int", + "id": 9, + "offset": 188, + "flags": 25, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1011900742 + "hash": 1661672123 }, - "m_expectedChance": { - "type": "float", - "id": 3, - "offset": 108, - "flags": 23, + "m_mindcontrolled": { + "type": "int", + "id": 10, + "offset": 216, + "flags": 25, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1850495755 - } - } - }, - "1243364079": { - "name": "class SharedPointer", - "bases": [ - "ServiceOptionBase", - "PropertyClass" - ], - "hash": 1243364079, - "properties": { - "m_serviceName": { - "type": "std::string", - "id": 0, - "offset": 72, + "hash": 2059794744 + }, + "m_originalTeam": { + "type": "int", + "id": 11, + "offset": 224, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2206028813 + "hash": 1121355446 }, - "m_iconKey": { - "type": "std::string", - "id": 1, - "offset": 168, + "m_nAuraTurnLength": { + "type": "int", + "id": 12, + "offset": 236, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2457138637 + "hash": 1719821564 }, - "m_displayKey": { - "type": "std::string", - "id": 2, - "offset": 104, - "flags": 31, + "m_clue": { + "type": "int", + "id": 13, + "offset": 228, + "flags": 25, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3023276954 + "hash": 219277091 }, - "m_serviceIndex": { - "type": "unsigned int", - "id": 3, - "offset": 204, + "m_roundsDead": { + "type": "int", + "id": 14, + "offset": 232, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2103126710 + "hash": 2071727747 }, - "m_forceInteract": { - "type": "bool", - "id": 4, - "offset": 200, + "m_nPolymorphTurnLength": { + "type": "int", + "id": 15, + "offset": 240, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1705789564 - } - } - }, - "1660205564": { - "name": "class RemoveHangingEffectCinematicAction", - "bases": [ - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 1660205564, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 + "hash": 1619550301 }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, + "m_playerHealth": { + "type": "int", + "id": 16, + "offset": 244, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2285866132 + "hash": 740444925 }, - "m_cloaked": { - "type": "bool", - "id": 2, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 7349510 - } - } - }, - "2042546468": { - "name": "class ArenaMatchResults*", - "bases": [ - "PropertyClass" - ], - "hash": 2042546468, - "properties": { - "m_matchID": { - "type": "gid", - "id": 0, - "offset": 72, + "m_maxPlayerHealth": { + "type": "int", + "id": 17, + "offset": 248, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1757621298 + "hash": 96027363 }, - "m_matchNameID": { - "type": "unsigned int", - "id": 1, - "offset": 80, + "m_HideCurrentHP": { + "type": "bool", + "id": 18, + "offset": 252, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1751361288 + "hash": 31360456 }, - "m_matchResolution": { + "m_maxHandSize": { "type": "int", - "id": 2, - "offset": 84, + "id": 19, + "offset": 256, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1481862043 + "hash": 1925169782 }, - "m_actorList": { - "type": "class SharedPointer", - "id": 3, - "offset": 88, - "flags": 31, - "container": "List", - "dynamic": true, + "m_pHand": { + "type": "class Hand*", + "id": 20, + "offset": 264, + "flags": 1, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": true, - "hash": 2087966079 - }, - "m_teamResults": { - "type": "class MatchTeamResult", - "id": 4, - "offset": 104, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2421530763 + "hash": 892448765 }, - "m_timeOutDraw": { - "type": "bool", - "id": 5, - "offset": 120, - "flags": 31, + "m_pSavedHand": { + "type": "class Hand*", + "id": 21, + "offset": 272, + "flags": 1, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 582264616 - } - } - }, - "1241163839": { - "name": "class BreadCrumbBehaviorTemplate*", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 1241163839, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, + "pointer": true, + "hash": 787912720 + }, + "m_pPlayDeck": { + "type": "class PlayDeck*", + "id": 22, + "offset": 280, + "flags": 1, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 3130754092 + "pointer": true, + "hash": 2053198667 }, - "m_visualBreadCrumb": { - "type": "bool", - "id": 1, - "offset": 120, - "flags": 7, + "m_pSavedPlayDeck": { + "type": "class PlayDeck*", + "id": 23, + "offset": 288, + "flags": 1, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1118570878 - } - } - }, - "1660057489": { - "name": "class SharedPointer", - "bases": [ - "SetBottomTeamCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 1660057489, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, + "pointer": true, + "hash": 498207966 + }, + "m_pSavedGameStats": { + "type": "class SharedPointer", + "id": 24, + "offset": 296, + "flags": 1, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 2237098605 + "pointer": true, + "hash": 1599533644 }, - "m_interpDuration": { - "type": "float", - "id": 1, - "offset": 80, - "flags": 7, + "m_savedPrimaryMagicSchoolID": { + "type": "int", + "id": 25, + "offset": 312, + "flags": 1, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237711951 - } - } - }, - "2042186845": { - "name": "class ClientShadowCreatureIdleCinematicAction", - "bases": [ - "ShadowCreatureIdleCinematicAction", - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 2042186845, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, + "hash": 983035431 + }, + "m_pGameStats": { + "type": "class SharedPointer", + "id": 26, + "offset": 320, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 2237098605 + "pointer": true, + "hash": 3522102873 }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, + "m_color": { + "type": "class Color", + "id": 27, + "offset": 336, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2285866132 - } - } - }, - "1240028218": { - "name": "class TallyCounterTemplate*", - "bases": [ - "PropertyClass" - ], - "hash": 1240028218, - "properties": { - "m_percentChance": { + "hash": 1791663549 + }, + "m_rotation": { "type": "float", - "id": 0, - "offset": 72, - "flags": 7, + "id": 28, + "offset": 340, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 475863658 + "hash": 1497468551 }, - "m_descriptor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 8388615, + "m_radius": { + "type": "float", + "id": 29, + "offset": 344, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2283284954 + "hash": 989410271 }, - "m_descriptor2": { - "type": "std::string", - "id": 2, - "offset": 112, - "flags": 8388615, + "m_subcircle": { + "type": "int", + "id": 30, + "offset": 348, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1649381388 + "hash": 1748202326 }, - "m_count": { - "type": "int", - "id": 3, - "offset": 144, - "flags": 7, + "m_pvp": { + "type": "bool", + "id": 31, + "offset": 352, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 790970659 + "hash": 269527241 }, - "m_tallyResults": { - "type": "class ResultList*", - "id": 4, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2143999904 - } - } - }, - "1658012869": { - "name": "class ReqPipCount*", - "bases": [ - "ConditionalSpellEffectRequirement", - "Requirement", - "PropertyClass" - ], - "hash": 1658012869, - "properties": { - "m_applyNOT": { + "m_raid": { "type": "bool", - "id": 0, - "offset": 72, + "id": 32, + "offset": 353, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1746328074, - "enum_options": { - "__DEFAULT": 0 - } + "hash": 222284947 }, - "m_operator": { - "type": "enum Requirement::Operator", - "id": 1, - "offset": 76, - "flags": 2097183, + "m_dynamicSymbol": { + "type": "enum DynamicSigilSymbol", + "id": 33, + "offset": 356, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2672792317, - "enum_options": { - "ROP_AND": 0, - "ROP_OR": 1, - "__DEFAULT": "ROP_AND" - } + "hash": 701705655 }, - "m_targetType": { - "type": "enum ConditionalSpellEffectRequirement::RequirementTarget", - "id": 2, - "offset": 80, - "flags": 2097159, + "m_accuracyBonus": { + "type": "float", + "id": 34, + "offset": 396, + "flags": 1, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2547737902, - "enum_options": { - "RT_Caster": 0, - "RT_Target": 1 - } + "hash": 1440672233 }, - "m_minPips": { + "m_minionSubCircle": { "type": "int", - "id": 3, - "offset": 88, + "id": 35, + "offset": 400, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2062924954 + "hash": 1896926112 }, - "m_maxPips": { - "type": "int", - "id": 4, - "offset": 92, + "m_isMinion": { + "type": "bool", + "id": 36, + "offset": 404, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1761701020 - } - } - }, - "90085300": { - "name": "class RaidManagerBehavior", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 90085300, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, + "hash": 1597230777 + }, + "m_isAccompanyNPC": { + "type": "bool", + "id": 37, + "offset": 412, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 - } - } - }, - "1239549916": { - "name": "class std::vector >", - "bases": [], - "hash": 1239549916, - "properties": {} - }, - "1657950048": { - "name": "enum CastleMagicItemType", - "bases": [], - "hash": 1657950048, - "properties": {} - }, - "2042504841": { - "name": "enum CountBasedSpellEffect::CountBasedType", - "bases": [], - "hash": 2042504841, - "properties": {} - }, - "1239527339": { - "name": "class CombatGardeningXPEffectTemplate", - "bases": [ - "GameEffectTemplate", - "PropertyClass" - ], - "hash": 1239527339, - "properties": { - "m_effectName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, + "hash": 1067399659 + }, + "m_hangingEffects": { + "type": "class SpellEffect", + "id": 38, + "offset": 416, + "flags": 27, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 2029161513 + "hash": 2685029606 }, - "m_effectCategory": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, + "m_publicHangingEffects": { + "type": "class SpellEffect", + "id": 39, + "offset": 432, + "flags": 31, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 1852673222 + "hash": 1243141029 }, - "m_sortOrder": { - "type": "int", - "id": 2, - "offset": 148, - "flags": 7, - "container": "Static", - "dynamic": false, + "m_auraEffects": { + "type": "class SpellEffect", + "id": 40, + "offset": 448, + "flags": 31, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 1411218206 + "hash": 2783652947 }, - "m_duration": { - "type": "double", - "id": 3, - "offset": 192, - "flags": 7, - "container": "Static", - "dynamic": false, + "m_shadowEffects": { + "type": "class SharedPointer", + "id": 41, + "offset": 464, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1712698903 + }, + "m_shadowSpellEffects": { + "type": "class SpellEffect", + "id": 42, + "offset": 480, + "flags": 31, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 2727932435 + "hash": 1808623792 }, - "m_stackingCategories": { - "type": "std::string", - "id": 4, - "offset": 160, - "flags": 7, + "m_deathActivatedEffects": { + "type": "class SharedPointer", + "id": 43, + "offset": 512, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1347166054 + }, + "m_delayCastEffects": { + "type": "class DelaySpellEffect", + "id": 44, + "offset": 528, + "flags": 31, "container": "List", "dynamic": true, "singleton": false, "pointer": false, - "hash": 1774497525 + "hash": 2596123949 }, - "m_isPersistent": { - "type": "bool", - "id": 5, - "offset": 153, - "flags": 7, + "m_polymorphSpellTemplateID": { + "type": "unsigned int", + "id": 45, + "offset": 576, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 923861920 + "hash": 1320079328 }, - "m_bIsOnPet": { - "type": "bool", - "id": 6, - "offset": 154, - "flags": 7, + "m_side": { + "type": "std::string", + "id": 46, + "offset": 600, + "flags": 1, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 522593303 + "hash": 1717547872 }, - "m_isPublic": { + "m_shadowSpellsDisabled": { "type": "bool", - "id": 7, - "offset": 152, - "flags": 7, + "id": 47, + "offset": 672, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1728439822 + "hash": 2077139652 }, - "m_visualEffectAddName": { - "type": "std::string", - "id": 8, - "offset": 200, - "flags": 7, + "m_ignoreSpellsPvPOnlyFlag": { + "type": "bool", + "id": 48, + "offset": 673, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3382086694 + "hash": 1714276188 }, - "m_visualEffectRemoveName": { - "type": "std::string", - "id": 9, - "offset": 232, - "flags": 7, + "m_ignoreSpellsPvEOnlyFlag": { + "type": "bool", + "id": 49, + "offset": 674, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1541697323 + "hash": 1691675729 }, - "m_onAddFunctorName": { - "type": "std::string", - "id": 10, - "offset": 280, - "flags": 7, + "m_bossMob": { + "type": "bool", + "id": 50, + "offset": 675, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1561843107 + "hash": 986129576 }, - "m_onRemoveFunctorName": { - "type": "std::string", - "id": 11, - "offset": 312, - "flags": 7, + "m_hidePVPEnemyChat": { + "type": "bool", + "id": 51, + "offset": 676, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2559017864 + "hash": 1284658049 }, - "m_stackingRule": { - "type": "enum STACKING_RULE", - "id": 12, - "offset": 144, - "flags": 2097159, + "m_combatTriggerIDs": { + "type": "int", + "id": 52, + "offset": 696, + "flags": 1, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1654684388 + }, + "m_backlash": { + "type": "int", + "id": 53, + "offset": 724, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 431568889, - "enum_options": { - "STACKING_ALLOWED": 0, - "STACKING_NOSTACK": 1, - "STACKING_REPLACE": 2 - } + "hash": 857558899 }, - "m_xpPercent": { + "m_pastBacklash": { "type": "int", - "id": 13, - "offset": 360, - "flags": 7, + "id": 54, + "offset": 728, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 755316563 - } - } - }, - "146001083": { - "name": "class LoyaltyStoreOption", - "bases": [ - "ServiceOptionBase", - "PropertyClass" - ], - "hash": 146001083, - "properties": { - "m_serviceName": { - "type": "std::string", - "id": 0, - "offset": 72, + "hash": 1229328939 + }, + "m_shadowCreatureLevel": { + "type": "int", + "id": 55, + "offset": 732, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2206028813 + "hash": 1119572179 }, - "m_iconKey": { - "type": "std::string", - "id": 1, - "offset": 168, + "m_pastShadowCreatureLevel": { + "type": "int", + "id": 56, + "offset": 736, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2457138637 + "hash": 1267855499 }, - "m_displayKey": { - "type": "std::string", - "id": 2, - "offset": 104, + "m_shadowCreatureLevelCount": { + "type": "int", + "id": 57, + "offset": 744, + "flags": 31, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 975615804 + }, + "m_interceptEffect": { + "type": "class SharedPointer", + "id": 58, + "offset": 768, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, + "pointer": true, + "hash": 339294150 + }, + "m_roundsSinceShadowPip": { + "type": "int", + "id": 59, + "offset": 800, + "flags": 1, + "container": "Static", + "dynamic": false, + "singleton": false, "pointer": false, - "hash": 3023276954 + "hash": 682042934 }, - "m_serviceIndex": { - "type": "unsigned int", - "id": 3, - "offset": 204, + "m_polymorphEffect": { + "type": "class SharedPointer", + "id": 60, + "offset": 824, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, + "pointer": true, + "hash": 2193528962 + }, + "m_confused": { + "type": "int", + "id": 61, + "offset": 196, + "flags": 25, + "container": "Static", + "dynamic": false, + "singleton": false, "pointer": false, - "hash": 2103126710 + "hash": 1851913585 }, - "m_forceInteract": { - "type": "bool", - "id": 4, + "m_confusionTrigger": { + "type": "int", + "id": 62, "offset": 200, - "flags": 31, + "flags": 25, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1705789564 - } - } - }, - "1659329652": { - "name": "class SharedPointer", - "bases": [ - "LootInfo", - "LootInfoBase", - "PropertyClass" - ], - "hash": 1659329652, - "properties": { - "m_lootType": { - "type": "enum LootInfo::LOOT_TYPE", - "id": 0, - "offset": 72, - "flags": 2097183, + "hash": 554584130 + }, + "m_confusionDisplay": { + "type": "bool", + "id": 63, + "offset": 204, + "flags": 25, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1591891442, - "enum_options": { - "LOOT_TYPE_NONE": 0, - "LOOT_TYPE_GOLD": 1, - "LOOT_TYPE_MANA": 2, - "LOOT_TYPE_ITEM": 3, - "LOOT_TYPE_TREASURE_CARD": 4, - "LOOT_TYPE_MAGIC_XP": 5, - "LOOT_TYPE_ADD_SPELL": 6, - "LOOT_TYPE_MAX_HEALTH": 7, - "LOOT_TYPE_MAX_GOLD": 8, - "LOOT_TYPE_MAX_MANA": 9, - "LOOT_TYPE_MAX_POTION": 10, - "LOOT_TYPE_TRAINING_POINTS": 11, - "LOOT_TYPE_RECIPE": 12, - "LOOT_TYPE_CRAFTING_SLOT": 13, - "LOOT_TYPE_REAGENT": 14, - "LOOT_TYPE_PETSNACK": 15, - "LOOT_TYPE_GARDENING_XP": 16, - "LOOT_TYPE_PET_XP": 17, - "LOOT_TYPE_TREASURE_TABLE": 18, - "LOOT_TYPE_ARENA_POINTS": 19, - "LOOT_TYPE_ARENA_BONUS_POINTS": 20, - "LOOT_TYPE_GROUP": 21, - "LOOT_TYPE_FISHING_XP": 22, - "LOOT_TYPE_EVENT_CURRENCY_1": 24, - "LOOT_TYPE_EVENT_CURRENCY_2": 25, - "LOOT_TYPE_PVP_CURRENCY": 26, - "LOOT_TYPE_PVP_CURRENCY_BONUS": 27, - "LOOT_TYPE_PVP_TOURNEY_CURRENCY": 28, - "LOOT_TYPE_PVP_TOURNEY_CURRENCY_BONUS": 29, - "LOOT_TYPE_FURNITURE_ESSENCE": 30 - } - } - } - }, - "2044006144": { - "name": "class ClientFloatingTextCinematicAction*", - "bases": [ - "FloatingTextCinematicAction", - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 2044006144, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, + "hash": 1028383709 + }, + "m_confusedTarget": { + "type": "bool", + "id": 64, + "offset": 205, + "flags": 25, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 + "hash": 1193542673 }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, + "m_untargetable": { + "type": "bool", + "id": 65, + "offset": 206, + "flags": 25, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2285866132 + "hash": 36479793 }, - "m_stringTableEntry": { - "type": "std::string", - "id": 2, - "offset": 120, - "flags": 7, + "m_untargetableRounds": { + "type": "int", + "id": 66, + "offset": 208, + "flags": 25, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2181170604 - } - } - }, - "123837036": { - "name": "class PaidLootRollStationOption*", - "bases": [ - "ServiceOptionBase", - "PropertyClass" - ], - "hash": 123837036, - "properties": { - "m_serviceName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, + "hash": 80618355 + }, + "m_restrictedTarget": { + "type": "bool", + "id": 67, + "offset": 212, + "flags": 25, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2206028813 + "hash": 394144563 }, - "m_iconKey": { - "type": "std::string", - "id": 1, - "offset": 168, - "flags": 31, + "m_exitCombat": { + "type": "bool", + "id": 68, + "offset": 213, + "flags": 25, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2457138637 + "hash": 1293141763 }, - "m_displayKey": { - "type": "std::string", - "id": 2, - "offset": 104, - "flags": 31, + "m_stunnedDisplay": { + "type": "bool", + "id": 69, + "offset": 192, + "flags": 25, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3023276954 + "hash": 892304554 }, - "m_serviceIndex": { - "type": "unsigned int", - "id": 3, - "offset": 204, - "flags": 31, + "m_mindcontrolledDisplay": { + "type": "bool", + "id": 70, + "offset": 220, + "flags": 25, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2103126710 + "hash": 174689415 }, - "m_forceInteract": { + "m_autoPass": { "type": "bool", - "id": 4, - "offset": 200, - "flags": 31, + "id": 71, + "offset": 720, + "flags": 25, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1705789564 - } - } - }, - "1240028178": { - "name": "class TallyCounterTemplate", - "bases": [ - "PropertyClass" - ], - "hash": 1240028178, - "properties": { - "m_percentChance": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, + "hash": 1919864803 + }, + "m_vanish": { + "type": "bool", + "id": 72, + "offset": 721, + "flags": 25, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 475863658 + "hash": 1058591164 }, - "m_descriptor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 8388615, + "m_myTeamTurn": { + "type": "bool", + "id": 73, + "offset": 722, + "flags": 25, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2283284954 + "hash": 1134422697 }, - "m_descriptor2": { - "type": "std::string", - "id": 2, - "offset": 112, - "flags": 8388615, + "m_needToCleanAuras": { + "type": "bool", + "id": 74, + "offset": 888, + "flags": 25, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1649381388 + "hash": 1159570481 }, - "m_count": { - "type": "int", - "id": 3, - "offset": 144, - "flags": 7, + "m_planningPhasePipAquiredType": { + "type": "enum CombatParticipant::PipAquiredByEnum", + "id": 75, + "offset": 816, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 790970659 + "hash": 1435933659, + "enum_options": { + "CombatParticipant::AQUIRED_PIP_UNKNOWN": 0, + "CombatParticipant::AQUIRED_PIP_NORMAL": 1, + "CombatParticipant::AQUIRED_PIP_POWER": 2, + "CombatParticipant::AQUIRED_NORMAL_TO_POWER_PIP_CONVERSION": 4, + "CombatParticipant::IMPEDE_PIPS": 5 + } }, - "m_tallyResults": { - "type": "class ResultList*", - "id": 4, - "offset": 152, - "flags": 7, + "m_cheatSettings": { + "type": "class SharedPointer", + "id": 76, + "offset": 96, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": true, - "hash": 2143999904 - } - } - }, - "2042958415": { - "name": "class SharedPointer", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 2042958415, - "properties": { - "m_behaviorTemplateNameID": { + "hash": 2742666223 + }, + "m_isMonster": { "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - } - } - }, - "105339310": { - "name": "class ClientCinematic", - "bases": [ - "Cinematic", - "PropertyClass" - ], - "hash": 105339310, - "properties": {} - }, - "99726268": { - "name": "class MoveActorCinematicAction", - "bases": [ - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 99726268, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, + "id": 77, + "offset": 408, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 + "hash": 1530878065 }, - "m_actor": { - "type": "std::string", - "id": 1, + "m_weaponNifSoundList": { + "type": "class SharedPointer", + "id": 78, "offset": 80, - "flags": 7, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2575326929 + }, + "m_petCombatTrigger": { + "type": "int", + "id": 79, + "offset": 712, + "flags": 1, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2285866132 + "hash": 822894541 }, - "m_destinationActor": { - "type": "std::string", - "id": 2, - "offset": 120, - "flags": 7, + "m_petCombatTriggerTarget": { + "type": "int", + "id": 80, + "offset": 716, + "flags": 1, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1510240374 + "hash": 675145556 }, - "m_interpolationDuration": { + "m_shadowPipRateThreshold": { "type": "float", - "id": 3, - "offset": 152, - "flags": 7, + "id": 81, + "offset": 840, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1458058437 + "hash": 1215959391 }, - "m_interpolateRotation": { - "type": "bool", - "id": 4, - "offset": 156, - "flags": 7, + "m_baseSpellDamage": { + "type": "int", + "id": 82, + "offset": 844, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2140337898 + "hash": 871613364 }, - "m_kDestination": { - "type": "enum MoveActorCinematicAction::kMoveActorDestination", - "id": 5, - "offset": 160, - "flags": 2097159, + "m_statDamage": { + "type": "float", + "id": 83, + "offset": 848, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2027574244, - "enum_options": { - "kCenter": 0, - "kHome": 3, - "kActor": 1, - "kActorHangingEffect": 2 - } + "hash": 1480169970 }, - "m_destinationZOffset": { + "m_statResist": { "type": "float", - "id": 6, - "offset": 164, - "flags": 7, + "id": 84, + "offset": 852, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2188240922 - } - } - }, - "1660204028": { - "name": "class RemoveHangingEffectCinematicAction*", - "bases": [ - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 1660204028, - "properties": { - "m_timeOffset": { + "hash": 2033033901 + }, + "m_statPierce": { "type": "float", - "id": 0, - "offset": 72, - "flags": 7, + "id": 85, + "offset": 856, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 + "hash": 1959012939 }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, + "m_mobLevel": { + "type": "int", + "id": 86, + "offset": 860, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2285866132 + "hash": 186067024 }, - "m_cloaked": { + "m_bPlayerTimeUpdated": { "type": "bool", - "id": 2, - "offset": 120, - "flags": 7, + "id": 87, + "offset": 864, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 7349510 - } - } - }, - "97159737": { - "name": "class PublicEquippedJewelInfo*", - "bases": [ - "PropertyClass" - ], - "hash": 97159737, - "properties": { - "m_infoPairs": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, + "hash": 877395800 + }, + "m_bPlayerTimeEliminated": { + "type": "bool", + "id": 88, + "offset": 865, "flags": 31, - "container": "List", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1522101428 + "pointer": false, + "hash": 1842006605 }, - "m_bSocketsLocked": { + "m_bPlayerTimeWarning": { "type": "bool", - "id": 1, - "offset": 88, + "id": 89, + "offset": 866, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1073026659 - } - } - }, - "1353797290": { - "name": "class BracketMatchResult*", - "bases": [ - "PropertyClass" - ], - "hash": 1353797290, - "properties": { - "m_opponents": { - "type": "gid", - "id": 0, - "offset": 72, + "hash": 742875591 + }, + "m_deckFullness": { + "type": "float", + "id": 90, + "offset": 868, "flags": 31, - "container": "List", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 1257835102 + "hash": 156080730 }, - "m_points": { - "type": "unsigned int", - "id": 1, - "offset": 88, + "m_archmasteryPoints": { + "type": "float", + "id": 91, + "offset": 872, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1049128778 + "hash": 261464375 }, - "m_matchResult": { + "m_maxArchmasteryPoints": { + "type": "float", + "id": 92, + "offset": 876, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 430012637 + }, + "m_archmasterySchool": { "type": "unsigned int", - "id": 2, - "offset": 92, + "id": 93, + "offset": 880, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1912880793 + "hash": 485805784 }, - "m_competingForPlace": { + "m_archmasteryFlags": { "type": "unsigned int", - "id": 3, - "offset": 100, + "id": 94, + "offset": 884, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1156208831 + "hash": 1571282557 } } }, - "1660064566": { - "name": "class SharedPointer", + "113943340": { + "name": "class HousingPetBehavior", "bases": [ - "ObstacleCourseSpeedUpBehavior", - "ObstacleCourseObstaclePathBase", - "ObstacleCourseObstacleBehavior", "BehaviorInstance", "PropertyClass" ], - "hash": 1660064566, + "hash": 113943340, "properties": { "m_behaviorTemplateNameID": { "type": "unsigned int", @@ -649045,341 +605172,210 @@ } } }, - "94610103": { - "name": "class StartHangingRotationCinematicAction", + "1386115776": { + "name": "class SharedPointer", "bases": [ - "ActorCinematicAction", - "CinematicAction", + "BehaviorInstance", "PropertyClass" ], - "hash": 94610103, + "hash": 1386115776, "properties": { - "m_timeOffset": { - "type": "float", + "m_behaviorTemplateNameID": { + "type": "unsigned int", "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - }, - "m_cloaked": { - "type": "bool", - "id": 2, - "offset": 120, - "flags": 7, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 7349510 + "hash": 223437287 } } }, - "2045692196": { - "name": "class ArenaMatchResults", + "538232979": { + "name": "class WindowStyle", "bases": [ "PropertyClass" ], - "hash": 2045692196, + "hash": 538232979, "properties": { - "m_matchID": { - "type": "gid", + "m_pBackMaterial": { + "type": "class SharedPointer", "id": 0, "offset": 72, - "flags": 31, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1757621298 + "pointer": true, + "hash": 1628562023 }, - "m_matchNameID": { - "type": "unsigned int", + "m_pFont": { + "type": "class SharedPointer", "id": 1, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1751361288 - }, - "m_matchResolution": { - "type": "int", - "id": 2, - "offset": 84, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1481862043 - }, - "m_actorList": { - "type": "class SharedPointer", - "id": 3, "offset": 88, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2087966079 - }, - "m_teamResults": { - "type": "class MatchTeamResult", - "id": 4, - "offset": 104, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2421530763 - }, - "m_timeOutDraw": { - "type": "bool", - "id": 5, - "offset": 120, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 582264616 - } - } - }, - "93674361": { - "name": "class ClientZoneTokenBoolean*", - "bases": [ - "ZoneTokenBoolean", - "ZoneTokenBase", - "PropertyClass" - ], - "hash": 93674361, - "properties": { - "m_debugName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 3553984419 - }, - "m_adjectiveList": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 3195213318 + "pointer": true, + "hash": 1067686307 }, - "m_icon": { - "type": "std::string", + "m_pLargeFont": { + "type": "class SharedPointer", "id": 2, - "offset": 120, - "flags": 131103, + "offset": 104, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1717182340 + "pointer": true, + "hash": 1523900782 }, - "m_iconBW": { - "type": "std::string", + "m_pSmallFont": { + "type": "class SharedPointer", "id": 3, - "offset": 152, - "flags": 131103, + "offset": 120, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 2047461085 + "pointer": true, + "hash": 2363252956 }, - "m_description": { - "type": "std::string", + "m_Color": { + "type": "class Color", "id": 4, - "offset": 184, - "flags": 8388639, + "offset": 136, + "flags": 262279, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1649374815 + "hash": 1753714077 }, - "m_displayMode": { - "type": "enum ZTDisplayMode", + "m_HighColor": { + "type": "class Color", "id": 5, - "offset": 216, - "flags": 2097183, + "offset": 140, + "flags": 262279, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2216526410, - "enum_options": { - "ZTDM_Shown": 0, - "ZTDM_Discoverable": 1, - "ZTDM_Hidden": 2 - } + "hash": 2310527421 }, - "m_storage": { - "type": "enum ZTStorage", + "m_SelectColor": { + "type": "class Color", "id": 6, - "offset": 220, - "flags": 2097183, + "offset": 144, + "flags": 262279, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2290454852, - "enum_options": { - "ZTS_Player": 0, - "ZTS_Zone": 1 - } + "hash": 2792529213 }, - "m_onEnable": { - "type": "class SharedPointer", + "m_BorderColor": { + "type": "class Color", "id": 7, - "offset": 224, - "flags": 7, + "offset": 148, + "flags": 262279, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2591736864 + "pointer": false, + "hash": 1470576795 }, - "m_onDiscover": { - "type": "class SharedPointer", + "m_BackColor": { + "type": "class Color", "id": 8, - "offset": 240, - "flags": 7, + "offset": 152, + "flags": 262279, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2826026872 + "pointer": false, + "hash": 1070928782 }, - "m_onDisable": { - "type": "class SharedPointer", + "m_ScrollBarColor": { + "type": "class Color", "id": 9, - "offset": 256, - "flags": 7, + "offset": 156, + "flags": 262279, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1860656717 + "pointer": false, + "hash": 1180747361 }, - "m_sourceID": { - "type": "gid", + "m_ScrollTabColor": { + "type": "class Color", "id": 10, - "offset": 272, - "flags": 31, + "offset": 160, + "flags": 262279, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1134700470 + "hash": 1034892323 }, - "m_inZone": { - "type": "bool", + "m_nBorderSize": { + "type": "int", "id": 11, - "offset": 280, - "flags": 31, + "offset": 164, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 564535654 + "hash": 2016376897 }, - "m_enabled": { - "type": "bool", + "m_nScrollSize": { + "type": "int", "id": 12, - "offset": 281, - "flags": 31, + "offset": 168, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 504506718 + "hash": 632681746 }, - "m_discovered": { - "type": "bool", + "m_sHoverSound": { + "type": "std::string", "id": 13, - "offset": 282, - "flags": 31, + "offset": 176, + "flags": 131207, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2060478331 + "hash": 2662773595 }, - "m_onSet": { - "type": "class SharedPointer", + "m_sSelectSound": { + "type": "std::string", "id": 14, - "offset": 288, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1964529317 - }, - "m_onClear": { - "type": "class SharedPointer", - "id": 15, - "offset": 304, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1655978208 - }, - "m_bSet": { - "type": "bool", - "id": 16, - "offset": 320, - "flags": 31, + "offset": 208, + "flags": 131207, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 221694593 + "hash": 2596786807 } } }, - "2044969640": { - "name": "class TemplateCache", + "975757311": { + "name": "class SharedPointer", "bases": [ "PropertyClass" ], - "hash": 2044969640, + "hash": 975757311, "properties": { - "m_nVersion": { - "type": "unsigned int", + "m_globalPointLevel": { + "type": "int", "id": 0, "offset": 72, "flags": 7, @@ -649387,849 +605383,975 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 2302239105 + "hash": 1056567917 }, - "m_sSerializedCache": { - "type": "class SerializedBuffer", + "m_descriptionText": { + "type": "std::string", "id": 1, - "offset": 96, + "offset": 80, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3187138089 + "hash": 3396736580 } } }, - "91521406": { - "name": "class CantripsMajorInvisibilityEffect*", + "1821618587": { + "name": "class SharedPointer", "bases": [ - "CantripsInvisibilityEffect", - "GameEffectBase", + "GraphicalSpell", + "Spell", "PropertyClass" ], - "hash": 91521406, + "hash": 1821618587, "properties": { - "m_currentTickCount": { - "type": "double", + "m_templateID": { + "type": "unsigned int", "id": 0, - "offset": 80, - "flags": 63, + "offset": 128, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2533274692 + "hash": 1286746870 }, - "m_effectNameID": { + "m_enchantment": { "type": "unsigned int", "id": 1, - "offset": 96, - "flags": 63, + "offset": 80, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1204067144 + "hash": 2217886818 }, - "m_bIsOnPet": { - "type": "bool", + "m_pipCost": { + "type": "class SharedPointer", "id": 2, - "offset": 73, - "flags": 31, + "offset": 176, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 522593303 + "pointer": true, + "hash": 3605704820 }, - "m_originatorID": { - "type": "gid", + "m_regularAdjust": { + "type": "int", "id": 3, - "offset": 104, - "flags": 39, + "offset": 192, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1131810019 + "hash": 1420453335 }, - "m_itemSlotID": { + "m_magicSchoolID": { "type": "unsigned int", "id": 4, - "offset": 112, - "flags": 63, + "offset": 136, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1895747595 + "hash": 893146499 }, - "m_internalID": { - "type": "int", + "m_accuracy": { + "type": "unsigned char", "id": 5, - "offset": 92, - "flags": 63, + "offset": 132, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1643137924 + "hash": 2273914939 }, - "m_endTime": { - "type": "unsigned int", + "m_treasureCard": { + "type": "bool", "id": 6, - "offset": 88, + "offset": 197, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 716479635 - } - } - }, - "2044277430": { - "name": "class SharedPointer", - "bases": [ - "CoreObject", - "PropertyClass" - ], - "hash": 2044277430, - "properties": { - "m_inactiveBehaviors": { - "type": "class SharedPointer", - "id": 0, - "offset": 224, + "hash": 1764879128 + }, + "m_battleCard": { + "type": "bool", + "id": 7, + "offset": 198, "flags": 31, - "container": "Vector", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1850812559 + "pointer": false, + "hash": 1332843753 }, - "m_globalID.m_full": { - "type": "unsigned __int64", - "id": 1, - "offset": 72, - "flags": 16777247, + "m_itemCard": { + "type": "bool", + "id": 8, + "offset": 199, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2312465444 + "hash": 1683654300 }, - "m_permID": { - "type": "unsigned __int64", - "id": 2, - "offset": 80, - "flags": 16777247, + "m_sideBoard": { + "type": "bool", + "id": 9, + "offset": 200, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1298909658 + "hash": 1897838368 }, - "m_location": { - "type": "class Vector3D", - "id": 3, - "offset": 168, + "m_spellID": { + "type": "unsigned int", + "id": 10, + "offset": 204, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2239683611 + "hash": 1697483258 }, - "m_orientation": { - "type": "class Vector3D", - "id": 4, - "offset": 180, + "m_leavesPlayWhenCastOverride": { + "type": "bool", + "id": 11, + "offset": 216, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2344058766 + "hash": 874407398 }, - "m_fScale": { - "type": "float", - "id": 5, + "m_cloaked": { + "type": "bool", + "id": 12, "offset": 196, - "flags": 31, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 503137701 + "hash": 7349510 }, - "m_templateID.m_full": { - "type": "unsigned __int64", - "id": 6, - "offset": 96, + "m_enchantmentSpellIsItemCard": { + "type": "bool", + "id": 13, + "offset": 76, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 633907631 + "hash": 531590701 }, - "m_debugName": { - "type": "std::string", - "id": 7, - "offset": 104, + "m_premutationSpellID": { + "type": "unsigned int", + "id": 14, + "offset": 112, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3553984419 + "hash": 1530256370 }, - "m_displayKey": { - "type": "std::string", - "id": 8, - "offset": 136, + "m_enchantedThisCombat": { + "type": "bool", + "id": 15, + "offset": 77, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3023276954 + "hash": 1895738923 }, - "m_zoneTagID": { - "type": "unsigned int", - "id": 9, - "offset": 344, + "m_paramOverrides": { + "type": "class SharedPointer", + "id": 16, + "offset": 224, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2061635599 + }, + "m_subEffectMeta": { + "type": "class SharedPointer", + "id": 17, + "offset": 240, "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1944101106 + }, + "m_delayEnchantment": { + "type": "bool", + "id": 18, + "offset": 257, + "flags": 287, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 965291410 + "hash": 191336919 }, - "m_speedMultiplier": { - "type": "short", - "id": 10, - "offset": 192, - "flags": 31, + "m_PvE": { + "type": "bool", + "id": 19, + "offset": 264, + "flags": 287, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 123130076 + "hash": 269492350 }, - "m_nMobileID": { - "type": "unsigned short", - "id": 11, - "offset": 194, + "m_delayEnchantmentOrder": { + "type": "enum SpellEffect::kDelayOrder", + "id": 20, + "offset": 72, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2526055263, + "enum_options": { + "SpellEffect::kAnyOrder": 0, + "SpellEffect::kFirst": 1, + "SpellEffect::kSecond": 2 + } + }, + "m_roundAddedTC": { + "type": "int", + "id": 21, + "offset": 260, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1054318939 + "hash": 112365451 }, - "m_recipeName": { - "type": "std::string", - "id": 12, - "offset": 392, - "flags": 39, + "m_secondarySchoolID": { + "type": "unsigned int", + "id": 22, + "offset": 304, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3311832788 + "hash": 2081206026 }, - "m_timeFinished": { - "type": "int", - "id": 13, - "offset": 388, - "flags": 63, + "m_fusionState": { + "type": "enum Spell::FusionState", + "id": 23, + "offset": 308, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2127619571 + "hash": 835324539, + "enum_options": { + "FS_Invalid": 0, + "FS_Partial": 1, + "FS_Valid": 2 + } } } }, - "90715475": { - "name": "short", - "bases": [], - "hash": 90715475, - "properties": {} - }, - "1660948595": { - "name": "class SharedPointer", + "975017639": { + "name": "class SigilCamera", "bases": [ - "WizStatisticEffect", - "StatisticEffect", - "GameEffectBase", "PropertyClass" ], - "hash": 1660948595, + "hash": 975017639, "properties": { - "m_currentTickCount": { - "type": "double", + "m_cameraName": { + "type": "std::string", "id": 0, - "offset": 80, - "flags": 63, + "offset": 72, + "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2533274692 + "hash": 3252786917 }, - "m_effectNameID": { - "type": "unsigned int", + "m_overrideName": { + "type": "std::string", "id": 1, - "offset": 96, - "flags": 63, + "offset": 104, + "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1204067144 + "hash": 1990707228 }, - "m_bIsOnPet": { - "type": "bool", + "m_fMinHeight": { + "type": "float", "id": 2, - "offset": 73, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 522593303 - }, - "m_originatorID": { - "type": "gid", - "id": 3, - "offset": 104, - "flags": 39, + "offset": 136, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1131810019 - }, - "m_itemSlotID": { - "type": "unsigned int", - "id": 4, - "offset": 112, - "flags": 63, + "hash": 2189896538 + } + } + }, + "1821553501": { + "name": "class StartingPipEffectInfo*", + "bases": [ + "GameEffectInfo", + "PropertyClass" + ], + "hash": 1821553501, + "properties": { + "m_effectName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1895747595 + "hash": 2029161513 }, - "m_internalID": { + "m_pipsGiven": { "type": "int", - "id": 5, - "offset": 92, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1643137924 - }, - "m_endTime": { - "type": "unsigned int", - "id": 6, - "offset": 88, - "flags": 31, + "id": 1, + "offset": 104, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 716479635 + "hash": 1346249167 }, - "m_lookupIndex": { + "m_powerPipsGiven": { "type": "int", - "id": 7, - "offset": 128, - "flags": 31, + "id": 2, + "offset": 108, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1626623948 - }, - "m_damageBonusPercent": { - "type": "float", - "id": 8, - "offset": 136, - "flags": 63, + "hash": 377908508 + } + } + }, + "114833919": { + "name": "class WinAnimStatGlobeScaleTime*", + "bases": [ + "WinAnimScaleTime", + "WinAnimScale", + "WindowAnimation", + "PropertyClass" + ], + "hash": 114833919, + "properties": { + "m_bUseDeepCopy": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 623230606 + "hash": 433380635 }, - "m_damageBonusFlat": { + "m_scale": { "type": "float", - "id": 9, - "offset": 180, - "flags": 63, + "id": 1, + "offset": 80, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2212039108 + "hash": 899693439 }, - "m_accuracyBonusPercent": { + "m_fTimeTotal": { "type": "float", - "id": 10, - "offset": 140, - "flags": 63, + "id": 2, + "offset": 96, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1972336538 + "hash": 661225456 }, - "m_armorPiercingBonusPercent": { + "m_fTimeRemaining": { "type": "float", - "id": 11, - "offset": 144, - "flags": 63, + "id": 3, + "offset": 100, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1569912641 - }, - "m_damageReducePercent": { - "type": "float", - "id": 12, - "offset": 148, - "flags": 63, + "hash": 1591443014 + } + } + }, + "974112325": { + "name": "class ReqBaseMagicLevel*", + "bases": [ + "ReqNumeric", + "Requirement", + "PropertyClass" + ], + "hash": 974112325, + "properties": { + "m_applyNOT": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 541736927 + "hash": 1746328074, + "enum_options": { + "__DEFAULT": 0 + } }, - "m_damageReduceFlat": { - "type": "float", - "id": 13, - "offset": 152, - "flags": 63, + "m_operator": { + "type": "enum Requirement::Operator", + "id": 1, + "offset": 76, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 684172469 + "hash": 2672792317, + "enum_options": { + "ROP_AND": 0, + "ROP_OR": 1, + "__DEFAULT": "ROP_AND" + } }, - "m_accuracyReducePercent": { + "m_numericValue": { "type": "float", - "id": 14, - "offset": 156, - "flags": 63, + "id": 2, + "offset": 80, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2112559723 + "hash": 521915239 }, - "m_healBonusPercent": { - "type": "float", - "id": 15, - "offset": 160, - "flags": 63, + "m_operatorType": { + "type": "enum ReqNumeric::OPERATOR_TYPE", + "id": 3, + "offset": 84, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 562313577 + "hash": 2228122961, + "enum_options": { + "OPERATOR_UNKNOWN": 4294967295, + "OPERATOR_EQUALS": 0, + "OPERATOR_GREATER_THAN": 1, + "OPERATOR_LESS_THAN": 2, + "OPERATOR_GREATER_THAN_EQ": 3, + "OPERATOR_LESS_THAN_EQ": 4 + } }, - "m_healIncBonusPercent": { - "type": "float", - "id": 16, - "offset": 164, - "flags": 63, + "m_magicSchool": { + "type": "std::string", + "id": 4, + "offset": 88, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2182535587 - }, - "m_hitPointBonus": { - "type": "float", - "id": 17, - "offset": 204, - "flags": 63, + "hash": 1597012900 + } + } + }, + "1386526905": { + "name": "class PathActionStop", + "bases": [ + "PathBehaviorTemplate::Action", + "PropertyClass" + ], + "hash": 1386526905, + "properties": { + "m_nPathID": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 880644461 + "hash": 214382368 }, - "m_spellChargeBonus": { + "m_nNodeID": { "type": "int", - "id": 18, - "offset": 212, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2019610507 - }, - "m_powerPipBonusPercent": { - "type": "float", - "id": 19, - "offset": 168, - "flags": 63, + "id": 1, + "offset": 80, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1671446341 + "hash": 152152635, + "enum_options": { + "__DEFAULT": 4294967295 + } }, - "m_petActChance": { + "m_nPriority": { "type": "int", - "id": 20, - "offset": 200, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 237418461 - }, - "m_manaBonus": { - "type": "float", - "id": 21, - "offset": 208, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1372708603 - }, - "m_expPercent": { - "type": "float", - "id": 22, - "offset": 184, - "flags": 63, + "id": 2, + "offset": 84, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1147850677 + "hash": 1515251530, + "enum_options": { + "__DEFAULT": 100 + } }, - "m_goldPercent": { - "type": "float", - "id": 23, - "offset": 188, - "flags": 63, + "m_nChance": { + "type": "int", + "id": 3, + "offset": 88, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1095720878 - }, - "m_energyBonus": { - "type": "float", - "id": 24, - "offset": 216, - "flags": 63, + "hash": 1860748394, + "enum_options": { + "__DEFAULT": 50 + } + } + } + }, + "539005771": { + "name": "class TeamHelpSigilMonthlyGauntletInfo", + "bases": [ + "PropertyClass" + ], + "hash": 539005771, + "properties": { + "m_monthlyGauntletClassProjectID": { + "type": "unsigned int", + "id": 0, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2223158984 + "hash": 2317452086 }, - "m_criticalHitRating": { - "type": "float", - "id": 25, - "offset": 220, - "flags": 63, + "m_monthlyGauntletCanTeamUp": { + "type": "int", + "id": 1, + "offset": 76, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1978690540 - }, - "m_blockRating": { - "type": "float", - "id": 26, - "offset": 224, - "flags": 63, + "hash": 476490151 + } + } + }, + "1821360121": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1821360121, + "properties": { + "m_stage": { + "type": "unsigned short", + "id": 0, + "offset": 74, + "flags": 7, "container": "Static", "dynamic": false, - "singleton": false, + "singleton": true, "pointer": false, - "hash": 2088486759 - }, - "m_accuracyRating": { - "type": "float", - "id": 27, - "offset": 228, - "flags": 63, + "hash": 1363685500 + } + } + }, + "538956496": { + "name": "class GuildIslandItemBehaviorTemplate*", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 538956496, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 165525575 + "hash": 3130754092 }, - "m_powerPipRating": { - "type": "float", - "id": 28, - "offset": 232, - "flags": 63, + "m_islandTemplateID": { + "type": "unsigned int", + "id": 1, + "offset": 120, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1355340722 - }, - "m_damageResistanceRating": { - "type": "float", - "id": 29, - "offset": 240, - "flags": 63, + "hash": 1751952753 + } + } + }, + "1821326350": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1821326350, + "properties": { + "m_nMoraleChanceAmt": { + "type": "int", + "id": 0, + "offset": 72, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1961377740 + "hash": 853293452 }, - "m_archmastery": { - "type": "float", - "id": 30, - "offset": 244, - "flags": 63, + "m_kActionType": { + "type": "enum DerbyActionTargetType", + "id": 1, + "offset": 76, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1963579610 - }, - "m_archmasteryBonusPercent": { - "type": "float", - "id": 31, - "offset": 288, - "flags": 63, - "container": "Static", - "dynamic": false, + "hash": 3131470053, + "enum_options": { + "Jump": 0, + "Duck": 1 + } + } + } + }, + "1389054729": { + "name": "class TournamentLevelModifiers*", + "bases": [ + "CoreTemplate", + "PropertyClass" + ], + "hash": 1389054729, + "properties": { + "m_behaviors": { + "type": "class BehaviorTemplate*", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Vector", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 1908627154 + "pointer": true, + "hash": 1197808594 }, - "m_balanceMastery": { - "type": "int", - "id": 32, - "offset": 248, - "flags": 63, - "container": "Static", - "dynamic": false, + "m_levelToRankMod": { + "type": "class Point", + "id": 1, + "offset": 96, + "flags": 7, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 149062181 + "hash": 3747681891 }, - "m_deathMastery": { - "type": "int", - "id": 33, - "offset": 252, - "flags": 63, + "m_templateID": { + "type": "unsigned int", + "id": 2, + "offset": 136, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1421218661 - }, - "m_fireMastery": { - "type": "int", - "id": 34, - "offset": 256, - "flags": 63, + "hash": 1286746870 + } + } + }, + "116893473": { + "name": "class ReqHatchAllEggs*", + "bases": [ + "Requirement", + "PropertyClass" + ], + "hash": 116893473, + "properties": { + "m_applyNOT": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1431794949 + "hash": 1746328074, + "enum_options": { + "__DEFAULT": 0 + } }, - "m_iceMastery": { - "type": "int", - "id": 35, - "offset": 260, - "flags": 63, + "m_operator": { + "type": "enum Requirement::Operator", + "id": 1, + "offset": 76, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 704864240 - }, - "m_lifeMastery": { - "type": "int", - "id": 36, - "offset": 264, - "flags": 63, + "hash": 2672792317, + "enum_options": { + "ROP_AND": 0, + "ROP_OR": 1, + "__DEFAULT": "ROP_AND" + } + } + } + }, + "975260560": { + "name": "class InteractiveMusicBehaviorTemplate*", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 975260560, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2142136447 + "hash": 3130754092 }, - "m_mythMastery": { - "type": "int", - "id": 37, - "offset": 268, - "flags": 63, + "m_titleText": { + "type": "std::string", + "id": 1, + "offset": 120, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1766317185 + "hash": 2703025890 }, - "m_stormMastery": { - "type": "int", - "id": 38, - "offset": 272, - "flags": 63, + "m_instrumentGUI": { + "type": "std::string", + "id": 2, + "offset": 152, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1883988244 + "hash": 1548997465 }, - "m_stunResistancePercent": { - "type": "float", - "id": 39, - "offset": 276, - "flags": 63, + "m_useAlternateHighlighting": { + "type": "int", + "id": 3, + "offset": 184, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1868382627 + "hash": 275839645 }, - "m_fishingLuckBonusPercent": { - "type": "float", - "id": 40, + "m_buttonSampleList": { + "type": "class SharedPointer", + "id": 4, "offset": 192, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1363349254 - }, - "m_shadowPipBonusPercent": { - "type": "float", - "id": 41, - "offset": 172, - "flags": 63, - "container": "Static", - "dynamic": false, + "flags": 7, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 1426533310 + "pointer": true, + "hash": 2024362058 }, - "m_wispBonusPercent": { - "type": "float", - "id": 42, - "offset": 196, - "flags": 63, - "container": "Static", - "dynamic": false, + "m_musicLoopList": { + "type": "class SharedPointer", + "id": 5, + "offset": 208, + "flags": 7, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 1304386546 - }, - "m_pipConversionRating": { - "type": "float", - "id": 43, - "offset": 280, - "flags": 63, + "pointer": true, + "hash": 2490589385 + } + } + }, + "116056107": { + "name": "class HatchmakingKioskBehavior", + "bases": [ + "HatchmakingKioskBehaviorBase", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 116056107, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 246855691 + "hash": 223437287 }, - "m_shadowPipRating": { - "type": "float", - "id": 44, - "offset": 236, - "flags": 63, + "m_hatchDayPetCode": { + "type": "unsigned int", + "id": 1, + "offset": 112, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 507126123 - }, - "m_petID": { - "type": "gid", - "id": 45, - "offset": 304, - "flags": 24, + "hash": 1354692695 + } + } + }, + "539839845": { + "name": "class HousingLayoutObject", + "bases": [ + "PropertyClass" + ], + "hash": 539839845, + "properties": { + "m_templateID": { + "type": "unsigned int", + "id": 0, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 806009486 + "hash": 1286746870 }, - "m_primaryStat1": { - "type": "std::string", - "id": 46, - "offset": 312, - "flags": 24, + "m_positionX": { + "type": "float", + "id": 1, + "offset": 76, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2417808140 + "hash": 837995844 }, - "m_primaryStat2": { - "type": "std::string", - "id": 47, - "offset": 344, - "flags": 24, + "m_positionY": { + "type": "float", + "id": 2, + "offset": 80, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2417808141 + "hash": 837995845 }, - "m_secondaryStat": { - "type": "std::string", - "id": 48, - "offset": 376, - "flags": 24, + "m_positionZ": { + "type": "float", + "id": 3, + "offset": 84, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3564684959 + "hash": 837995846 }, - "m_secondaryValue": { + "m_yaw": { "type": "float", - "id": 49, - "offset": 408, - "flags": 24, + "id": 4, + "offset": 88, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1728780796 + "hash": 357256328 } } }, - "1241634484": { - "name": "class SharedPointer", + "975470997": { + "name": "class SharedPointer", "bases": [ + "GameEffectInfo", "PropertyClass" ], - "hash": 1241634484, + "hash": 975470997, "properties": { - "m_zoneName": { + "m_effectName": { "type": "std::string", "id": 0, "offset": 72, @@ -650238,63 +606360,84 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 2171167736 + "hash": 2029161513 }, - "m_location": { - "type": "class Vector3D", + "m_tickOnAdd": { + "type": "bool", "id": 1, "offset": 104, - "flags": 31, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2239683611 + "hash": 663357284 }, - "m_firstName": { + "m_zoneEventName": { "type": "std::string", "id": 2, - "offset": 120, - "flags": 31, + "offset": 112, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3116002948 + "hash": 2601481434 }, - "m_lastName": { - "type": "std::string", + "m_tickRateSec": { + "type": "float", "id": 3, - "offset": 152, - "flags": 31, + "offset": 144, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1826203600 + "hash": 1559681353 }, - "m_zoneDisplayName": { - "type": "std::string", + "m_maxTicks": { + "type": "int", "id": 4, - "offset": 184, - "flags": 31, + "offset": 148, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1962339438 + "hash": 155973918 } } }, - "1660318710": { - "name": "class CombatCheatSettings", + "1390955293": { + "name": "class SharedPointer", "bases": [ "PropertyClass" ], - "hash": 1660318710, + "hash": 1390955293, "properties": { - "m_settings": { - "type": "unsigned int", + "m_messageBoardList": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2175215327 + } + } + }, + "1821554269": { + "name": "class StartingPipEffectInfo", + "bases": [ + "GameEffectInfo", + "PropertyClass" + ], + "hash": 1821554269, + "properties": { + "m_effectName": { + "type": "std::string", "id": 0, "offset": 72, "flags": 31, @@ -650302,582 +606445,685 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 1279804446 + "hash": 2029161513 }, - "m_maycastChance": { - "type": "float", + "m_pipsGiven": { + "type": "int", "id": 1, - "offset": 76, - "flags": 31, + "offset": 104, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1532158347 + "hash": 1346249167 + }, + "m_powerPipsGiven": { + "type": "int", + "id": 2, + "offset": 108, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 377908508 } } }, - "1241287639": { - "name": "class MonsterArenaBehaviorBase*", + "1389688502": { + "name": "class SharedPointer", "bases": [ - "BehaviorInstance", "PropertyClass" ], - "hash": 1241287639, + "hash": 1389688502, "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", + "m_sFilename": { + "type": "std::string", "id": 0, - "offset": 104, - "flags": 39, + "offset": 72, + "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 + "hash": 2431512111 }, - "m_mobList": { + "m_Flags": { "type": "unsigned int", "id": 1, - "offset": 112, - "flags": 65543, - "container": "List", - "dynamic": true, + "offset": 104, + "flags": 1048583, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 347281415 + "hash": 967851578, + "enum_options": { + "DOCK_BL_OF_BUBBLE": 1, + "DOCK_BR_OF_BUBBLE": 2, + "DOCK_TL_OF_BUBBLE": 4, + "DOCK_TR_OF_BUBBLE": 8 + } }, - "m_zoneGID": { - "type": "gid", + "m_DockToPoint": { + "type": "class Point", "id": 2, - "offset": 128, - "flags": 65543, + "offset": 144, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1907651624 + "hash": 2353513904 } } }, - "2044969645": { - "name": "class TemplateCache*", + "116896545": { + "name": "class ReqHatchAllEggs", "bases": [ + "Requirement", "PropertyClass" ], - "hash": 2044969645, + "hash": 116896545, "properties": { - "m_nVersion": { - "type": "unsigned int", + "m_applyNOT": { + "type": "bool", "id": 0, "offset": 72, - "flags": 7, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2302239105 + "hash": 1746328074, + "enum_options": { + "__DEFAULT": 0 + } }, - "m_sSerializedCache": { - "type": "class SerializedBuffer", + "m_operator": { + "type": "enum Requirement::Operator", "id": 1, - "offset": 96, - "flags": 7, + "offset": 76, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3187138089 + "hash": 2672792317, + "enum_options": { + "ROP_AND": 0, + "ROP_OR": 1, + "__DEFAULT": "ROP_AND" + } } } }, - "92056648": { - "name": "class UntargetableCinematicStageTemplate", + "541374277": { + "name": "class PolymorphRatingInfo*", "bases": [ - "CinematicStageTemplate", "PropertyClass" ], - "hash": 92056648, + "hash": 541374277, "properties": { - "m_name": { + "m_maxBattleCards": { + "type": "int", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1906062665 + } + } + }, + "976615779": { + "name": "class PetGameKioskOption", + "bases": [ + "ServiceOptionBase", + "PropertyClass" + ], + "hash": 976615779, + "properties": { + "m_serviceName": { "type": "std::string", "id": 0, "offset": 72, - "flags": 7, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1717359772 + "hash": 2206028813 }, - "m_duration": { - "type": "float", + "m_iconKey": { + "type": "std::string", "id": 1, - "offset": 104, - "flags": 7, + "offset": 168, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 920323453 + "hash": 2457138637 }, - "m_actions": { - "type": "class SharedPointer", + "m_displayKey": { + "type": "std::string", "id": 2, - "offset": 112, - "flags": 7, - "container": "List", - "dynamic": true, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1380578687 + "pointer": false, + "hash": 3023276954 }, - "m_stageRelationships": { - "type": "class SharedPointer", + "m_serviceIndex": { + "type": "unsigned int", "id": 3, - "offset": 128, - "flags": 7, - "container": "List", - "dynamic": true, + "offset": 204, + "flags": 31, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 499983354 + "pointer": false, + "hash": 2103126710 + }, + "m_forceInteract": { + "type": "bool", + "id": 4, + "offset": 200, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1705789564 } } }, - "1660450034": { - "name": "class SharedPointer", + "540980452": { + "name": "class PetAnimateActorCinematicAction*", "bases": [ - "WizItemTemplate", - "ItemTemplate", - "GameObjectTemplate", - "CoreTemplate", + "ActorCinematicAction", + "CinematicAction", "PropertyClass" ], - "hash": 1660450034, + "hash": 540980452, "properties": { - "m_behaviors": { - "type": "class BehaviorTemplate*", + "m_timeOffset": { + "type": "float", "id": 0, "offset": 72, "flags": 7, - "container": "Vector", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1197808594 + "pointer": false, + "hash": 2237098605 }, - "m_objectName": { + "m_actor": { "type": "std::string", "id": 1, - "offset": 96, + "offset": 80, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2154940147 + "hash": 2285866132 }, - "m_templateID": { - "type": "unsigned int", + "m_animation": { + "type": "std::string", "id": 2, - "offset": 128, - "flags": 16777223, + "offset": 120, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1286746870 - }, - "m_visualID": { - "type": "unsigned int", - "id": 3, - "offset": 132, + "hash": 3431428731 + } + } + }, + "1821800296": { + "name": "class SharedPointer", + "bases": [ + "CinematicAction", + "PropertyClass" + ], + "hash": 1821800296, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1118778894 + "hash": 2237098605 }, - "m_adjectiveList": { - "type": "std::string", - "id": 4, - "offset": 248, + "m_minDuration": { + "type": "float", + "id": 1, + "offset": 80, "flags": 7, - "container": "List", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 3195213318 + "hash": 1733171553 }, - "m_exemptFromAOI": { - "type": "bool", - "id": 5, - "offset": 240, + "m_assetName": { + "type": "std::string", + "id": 2, + "offset": 88, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1457879059 - }, - "m_displayName": { - "type": "std::string", - "id": 6, - "offset": 168, - "flags": 8388615, + "hash": 1513131580 + } + } + }, + "976280423": { + "name": "class ReqHangingOverTime*", + "bases": [ + "ConditionalSpellEffectRequirement", + "Requirement", + "PropertyClass" + ], + "hash": 976280423, + "properties": { + "m_applyNOT": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2446900370 + "hash": 1746328074, + "enum_options": { + "__DEFAULT": 0 + } }, - "m_description": { - "type": "std::string", - "id": 7, - "offset": 136, - "flags": 8388615, + "m_operator": { + "type": "enum Requirement::Operator", + "id": 1, + "offset": 76, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1649374815 + "hash": 2672792317, + "enum_options": { + "ROP_AND": 0, + "ROP_OR": 1, + "__DEFAULT": "ROP_AND" + } }, - "m_nObjectType": { - "type": "enum ObjectType", - "id": 8, - "offset": 200, + "m_targetType": { + "type": "enum ConditionalSpellEffectRequirement::RequirementTarget", + "id": 2, + "offset": 80, "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2118905880, + "hash": 2547737902, "enum_options": { - "OT_UNDEFINED": 0, - "OT_PLAYER": 1, - "OT_NPC": 2, - "OT_PROP": 3, - "OT_OBJECT": 4, - "OT_HOUSE": 5, - "OT_KEY": 6, - "OT_OLD_KEY": 7, - "OT_DEED": 8, - "OT_MAIL": 9, - "OT_RECIPE": 17, - "OT_EQUIP_HEAD": 10, - "OT_EQUIP_CHEST": 11, - "OT_EQUIP_LEGS": 12, - "OT_EQUIP_HANDS": 13, - "OT_EQUIP_FINGER": 14, - "OT_EQUIP_FEET": 15, - "OT_EQUIP_EAR": 16, - "OT_BUILDING_BLOCK": 18, - "OT_BUILDING_BLOCK_SOLID": 19, - "OT_GOLF": 20, - "OT_DOOR": 21, - "OT_PET": 22, - "OT_FABRIC": 23, - "OT_WINDOW": 24, - "OT_ROOF": 25, - "OT_HORSE": 26, - "OT_STRUCTURE": 27, - "OT_HOUSING_TEXTURE": 28, - "OT_PLANT": 29 + "RT_Caster": 0, + "RT_Target": 1 } }, - "m_sIcon": { - "type": "std::string", - "id": 9, - "offset": 208, - "flags": 131079, + "m_disposition": { + "type": "enum SpellEffect::kHangingDisposition", + "id": 3, + "offset": 88, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2306259831 + "hash": 1904841031, + "enum_options": { + "SpellEffect::kBoth": 0, + "SpellEffect::kBeneficial": 1, + "SpellEffect::kHarmful": 2 + } }, - "m_equipRequirements": { - "type": "class RequirementList*", - "id": 10, - "offset": 280, - "flags": 7, + "m_minCount": { + "type": "int", + "id": 4, + "offset": 92, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2762617226 + "pointer": false, + "hash": 1486503815 }, - "m_purchaseRequirements": { - "type": "class RequirementList*", - "id": 11, - "offset": 288, - "flags": 7, + "m_maxCount": { + "type": "int", + "id": 5, + "offset": 96, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3174641793 - }, - "m_equipEffects": { - "type": "class GameEffectInfo*", - "id": 12, - "offset": 296, - "flags": 7, - "container": "List", - "dynamic": true, + "pointer": false, + "hash": 136048585 + } + } + }, + "1391001119": { + "name": "class PestBehavior", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1391001119, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 836628351 - }, - "m_baseCost": { - "type": "float", - "id": 13, - "offset": 312, + "pointer": false, + "hash": 223437287 + } + } + }, + "540474233": { + "name": "class SharedPointer", + "bases": [ + "CinematicStageTemplate", + "PropertyClass" + ], + "hash": 540474233, + "properties": { + "m_name": { + "type": "std::string", + "id": 0, + "offset": 72, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1565352651 + "hash": 1717359772 }, - "m_creditsCost": { + "m_duration": { "type": "float", - "id": 14, - "offset": 320, + "id": 1, + "offset": 104, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 805514974 + "hash": 920323453 }, - "m_avatarInfo": { - "type": "class AvatarItemInfoBase*", - "id": 15, - "offset": 328, + "m_actions": { + "type": "class SharedPointer", + "id": 2, + "offset": 112, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "List", + "dynamic": true, "singleton": false, "pointer": true, - "hash": 2627321299 + "hash": 1380578687 }, - "m_avatarFlags": { - "type": "std::string", - "id": 16, - "offset": 336, + "m_stageRelationships": { + "type": "class SharedPointer", + "id": 3, + "offset": 128, "flags": 7, "container": "List", "dynamic": true, "singleton": false, - "pointer": false, - "hash": 2347762759 + "pointer": true, + "hash": 499983354 }, - "m_itemLimit": { - "type": "int", - "id": 17, - "offset": 316, - "flags": 7, + "m_sound": { + "type": "std::string", + "id": 4, + "offset": 160, + "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1799746856 + "hash": 2307644996 }, - "m_holidayFlag": { + "m_effect": { "type": "std::string", - "id": 18, - "offset": 352, - "flags": 7, + "id": 5, + "offset": 192, + "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2994795359 + "hash": 1894145160 }, - "m_itemSetBonusTemplateID": { - "type": "unsigned int", - "id": 19, - "offset": 384, - "flags": 33554439, + "m_spellText": { + "type": "std::string", + "id": 6, + "offset": 224, + "flags": 8388615, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1316835672 + "hash": 2688705600 }, - "m_numPrimaryColors": { - "type": "int", - "id": 20, - "offset": 428, + "m_bSwitchCameraToWideLong": { + "type": "bool", + "id": 7, + "offset": 152, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 981103872 - }, - "m_numSecondaryColors": { - "type": "int", - "id": 21, - "offset": 432, + "hash": 2136912684, + "enum_options": { + "__DEFAULT": 1 + } + } + } + }, + "118534071": { + "name": "class GetHitCinematicStageTemplate*", + "bases": [ + "CinematicStageTemplate", + "PropertyClass" + ], + "hash": 118534071, + "properties": { + "m_name": { + "type": "std::string", + "id": 0, + "offset": 72, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1310416868 + "hash": 1717359772 }, - "m_numPatterns": { - "type": "int", - "id": 22, - "offset": 436, + "m_duration": { + "type": "float", + "id": 1, + "offset": 104, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 953162171 + "hash": 920323453 }, - "m_school": { - "type": "std::string", - "id": 23, - "offset": 392, + "m_actions": { + "type": "class SharedPointer", + "id": 2, + "offset": 112, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 2438566051 + "pointer": true, + "hash": 1380578687 }, - "m_arenaPointCost": { - "type": "int", - "id": 24, - "offset": 440, + "m_stageRelationships": { + "type": "class SharedPointer", + "id": 3, + "offset": 128, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 1819621796 + "pointer": true, + "hash": 499983354 }, - "m_pvpCurrencyCost": { - "type": "int", - "id": 25, - "offset": 444, - "flags": 7, - "container": "Static", - "dynamic": false, + "m_cameras": { + "type": "std::string", + "id": 4, + "offset": 152, + "flags": 131079, + "container": "Vector", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 645595444 + "hash": 3217341687 }, - "m_pvpTourneyCurrencyCost": { - "type": "int", - "id": 26, - "offset": 448, - "flags": 7, - "container": "Static", - "dynamic": false, + "m_altcameras": { + "type": "std::string", + "id": 5, + "offset": 176, + "flags": 131079, + "container": "Vector", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 517874954 + "hash": 1882980152 }, - "m_rank": { - "type": "int", - "id": 27, - "offset": 424, + "m_animation": { + "type": "std::string", + "id": 6, + "offset": 200, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 219803942 + "hash": 3431428731 }, - "m_boyIconIndex": { - "type": "int", - "id": 28, - "offset": 452, + "m_bUsesGetHitSound": { + "type": "bool", + "id": 7, + "offset": 232, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 802140453 - }, - "m_girlIconIndex": { - "type": "int", - "id": 29, - "offset": 456, - "flags": 7, + "hash": 49296995 + } + } + }, + "975906679": { + "name": "class PetDerbyRacerState*", + "bases": [ + "PropertyClass" + ], + "hash": 975906679, + "properties": { + "m_playerOID": { + "type": "gid", + "id": 0, + "offset": 88, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 832706793 + "hash": 578546081 }, - "m_leashOffsetOverride": { - "type": "class SharedPointer", - "id": 30, - "offset": 464, - "flags": 7, + "m_currentTerrain": { + "type": "enum PetDerbyTrackTerrain", + "id": 1, + "offset": 100, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1692586788 + "pointer": false, + "hash": 3426350446, + "enum_options": { + "PDTT_Cobblestone": 0, + "PDTT_Water": 1, + "PDTT_Grass": 2, + "PDTT_Clay": 3, + "PDTT_Dirt": 4, + "PDTT_Mud": 5 + } }, - "m_rarity": { - "type": "enum RarityType", - "id": 31, - "offset": 460, - "flags": 2097159, + "m_currentLane": { + "type": "int", + "id": 2, + "offset": 104, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2253792108, - "enum_options": { - "RT_COMMON": 0, - "RT_UNCOMMON": 1, - "RT_RARE": 2, - "RT_ULTRARARE": 3, - "RT_EPIC": 4 - } + "hash": 1255984189 }, - "m_goldAmount": { - "type": "int", - "id": 32, - "offset": 480, - "flags": 7, + "m_currentLap": { + "type": "unsigned int", + "id": 3, + "offset": 120, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 754429876 + "hash": 2006580429 }, - "m_nif": { - "type": "std::string", - "id": 33, - "offset": 488, - "flags": 131079, + "m_indexIntoArray": { + "type": "unsigned char", + "id": 4, + "offset": 96, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1764743064 + "hash": 1554314337 } } }, - "92055112": { - "name": "class UntargetableCinematicStageTemplate*", + "118523831": { + "name": "class GetHitCinematicStageTemplate", "bases": [ "CinematicStageTemplate", "PropertyClass" ], - "hash": 92055112, + "hash": 118523831, "properties": { "m_name": { "type": "std::string", @@ -650922,68 +607168,115 @@ "singleton": false, "pointer": true, "hash": 499983354 + }, + "m_cameras": { + "type": "std::string", + "id": 4, + "offset": 152, + "flags": 131079, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 3217341687 + }, + "m_altcameras": { + "type": "std::string", + "id": 5, + "offset": 176, + "flags": 131079, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1882980152 + }, + "m_animation": { + "type": "std::string", + "id": 6, + "offset": 200, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3431428731 + }, + "m_bUsesGetHitSound": { + "type": "bool", + "id": 7, + "offset": 232, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 49296995 } } }, - "1242535268": { - "name": "class SharedPointer", + "1823339363": { + "name": "class ClientDeathParticleCinematicAction*", "bases": [ + "DeathParticleCinematicAction", + "ActorCinematicAction", + "CinematicAction", "PropertyClass" ], - "hash": 1242535268, + "hash": 1823339363, "properties": { - "m_radius": { + "m_timeOffset": { "type": "float", "id": 0, "offset": 72, - "flags": 31, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 989410271 + "hash": 2237098605 }, - "m_triggerT": { - "type": "float", + "m_actor": { + "type": "std::string", "id": 1, - "offset": 76, - "flags": 31, + "offset": 80, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2138083583 + "hash": 2285866132 } } }, - "2045893860": { - "name": "class WanderMovementBehavior", + "117931045": { + "name": "class SharedPointer", "bases": [ - "BehaviorInstance", + "BehaviorTemplate", "PropertyClass" ], - "hash": 2045893860, + "hash": 117931045, "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", + "m_behaviorName": { + "type": "std::string", "id": 0, - "offset": 104, - "flags": 39, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 + "hash": 3130754092 } } }, - "1242259388": { - "name": "class SharedPointer", + "1391192220": { + "name": "class DuelBehavior", "bases": [ "BehaviorInstance", "PropertyClass" ], - "hash": 1242259388, + "hash": 1391192220, "properties": { "m_behaviorTemplateNameID": { "type": "unsigned int", @@ -650995,251 +607288,178 @@ "singleton": false, "pointer": false, "hash": 223437287 - } - } - }, - "1660963012": { - "name": "class RequirementFailNotification", - "bases": [ - "ServiceOptionBase", - "PropertyClass" - ], - "hash": 1660963012, - "properties": { - "m_serviceName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2206028813 }, - "m_iconKey": { - "type": "std::string", + "m_pDuel": { + "type": "class SharedPointer", "id": 1, - "offset": 168, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2457138637 - }, - "m_displayKey": { - "type": "std::string", - "id": 2, - "offset": 104, + "offset": 112, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 3023276954 + "pointer": true, + "hash": 1066616366 }, - "m_serviceIndex": { + "m_sigilTemplateID": { "type": "unsigned int", - "id": 3, - "offset": 204, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2103126710 - }, - "m_forceInteract": { - "type": "bool", - "id": 4, - "offset": 200, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1705789564 - }, - "m_failureMessage": { - "type": "std::string", - "id": 5, - "offset": 224, + "id": 2, + "offset": 128, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1882376712 - } - } - }, - "2045869284": { - "name": "class WanderMovementBehavior*", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 2045869284, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 + "hash": 269055310 } } }, - "93442062": { - "name": "class SharedPointer", + "1822932661": { + "name": "class SharedPointer", "bases": [ + "BehaviorTemplate", "PropertyClass" ], - "hash": 93442062, + "hash": 1822932661, "properties": { - "m_serializedTemplates": { - "type": "class TemplateLocation", + "m_behaviorName": { + "type": "std::string", "id": 0, "offset": 72, "flags": 7, - "container": "Vector", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 1656531664 + "hash": 3130754092 } } }, - "1242331770": { - "name": "class ClassProjectFinalReward*", + "976321589": { + "name": "class SharedPointer", "bases": [ + "Requirement", "PropertyClass" ], - "hash": 1242331770, + "hash": 976321589, "properties": { - "m_finalPosition": { - "type": "int", + "m_applyNOT": { + "type": "bool", "id": 0, "offset": 72, - "flags": 7, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 309125241 + "hash": 1746328074, + "enum_options": { + "__DEFAULT": 0 + } }, - "m_lootTable": { - "type": "std::string", + "m_operator": { + "type": "enum Requirement::Operator", "id": 1, - "offset": 80, - "flags": 7, + "offset": 76, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2539512673 - }, - "m_featuredTemplateIDList": { - "type": "unsigned int", - "id": 2, - "offset": 112, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 687120258 + "hash": 2672792317, + "enum_options": { + "ROP_AND": 0, + "ROP_OR": 1, + "__DEFAULT": "ROP_AND" + } } } }, - "1662820207": { - "name": "class VisibilityBehaviorTemplate", + "1391136284": { + "name": "class DeckBehavior", "bases": [ - "BehaviorTemplate", + "BehaviorInstance", "PropertyClass" ], - "hash": 1662820207, + "hash": 1391136284, "properties": { - "m_behaviorName": { - "type": "std::string", + "m_behaviorTemplateNameID": { + "type": "unsigned int", "id": 0, - "offset": 72, - "flags": 7, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3130754092 + "hash": 223437287 }, - "m_visible": { - "type": "bool", + "m_spellList": { + "type": "class SharedPointer", "id": 1, "offset": 120, - "flags": 7, + "flags": 27, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2181913740 + }, + "m_serializedExclusionList": { + "type": "std::string", + "id": 2, + "offset": 152, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 810536225 + "hash": 1502583517 }, - "m_showToPets": { - "type": "bool", - "id": 2, - "offset": 121, - "flags": 7, + "m_archmasterySchool": { + "type": "unsigned int", + "id": 3, + "offset": 184, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1441936691 + "hash": 485805784 } } }, - "2046055251": { - "name": "class BoosterPackData", + "543136886": { + "name": "class SharedPointer", "bases": [ "PropertyClass" ], - "hash": 2046055251, + "hash": 543136886, "properties": { - "m_lootTypeMaxes": { - "type": "class SharedPointer", + "m_rules": { + "type": "class JewelSocketWrenchElements", "id": 0, "offset": 72, "flags": 7, "container": "List", "dynamic": true, "singleton": false, - "pointer": true, - "hash": 3636229967 - }, - "m_templateID": { - "type": "unsigned int", - "id": 1, - "offset": 88, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, "pointer": false, - "hash": 1286746870 + "hash": 2323021272 } } }, - "93716914": { - "name": "class SharedPointer", + "1821846423": { + "name": "class ClientAttachParticleActorCinematicAction*", "bases": [ + "AttachParticleActorCinematicAction", + "ActorCinematicAction", + "CinematicAction", "PropertyClass" ], - "hash": 93716914, + "hash": 1821846423, "properties": { - "m_slotName": { - "type": "std::string", + "m_timeOffset": { + "type": "float", "id": 0, "offset": 72, "flags": 7, @@ -651247,402 +607467,412 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 2819781566 + "hash": 2237098605 }, - "m_nodeName": { + "m_actor": { "type": "std::string", "id": 1, - "offset": 104, + "offset": 80, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3607089954 + "hash": 2285866132 }, - "m_fxDef": { - "type": "class SharedPointer", + "m_effectName": { + "type": "std::string", "id": 2, - "offset": 136, + "offset": 120, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1171176403 - } - } - }, - "1662478659": { - "name": "class ClientIdleAuraCinematicAction", - "bases": [ - "IdleAuraCinematicAction", - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 1662478659, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, + "pointer": false, + "hash": 2029161513 + }, + "m_nodeName": { + "type": "std::string", + "id": 3, + "offset": 152, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 + "hash": 3607089954 }, - "m_actor": { + "m_assetName": { "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, + "id": 4, + "offset": 184, + "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2285866132 + "hash": 1513131580 } } }, - "2046052179": { - "name": "class BoosterPackData*", + "543040562": { + "name": "class SharedPointer", "bases": [ + "GoalTemplate", + "CoreTemplate", "PropertyClass" ], - "hash": 2046052179, + "hash": 543040562, "properties": { - "m_lootTypeMaxes": { - "type": "class SharedPointer", + "m_behaviors": { + "type": "class BehaviorTemplate*", "id": 0, "offset": 72, "flags": 7, - "container": "List", + "container": "Vector", "dynamic": true, "singleton": false, "pointer": true, - "hash": 3636229967 + "hash": 1197808594 }, - "m_templateID": { - "type": "unsigned int", + "m_goalName": { + "type": "std::string", "id": 1, - "offset": 88, + "offset": 104, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1286746870 - } - } - }, - "93715321": { - "name": "class ClientZoneTokenBoolean", - "bases": [ - "ZoneTokenBoolean", - "ZoneTokenBase", - "PropertyClass" - ], - "hash": 93715321, - "properties": { - "m_debugName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3553984419 - }, - "m_adjectiveList": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 3195213318 + "hash": 1521627807 }, - "m_icon": { - "type": "std::string", + "m_goalNameID": { + "type": "unsigned int", "id": 2, - "offset": 120, - "flags": 131103, + "offset": 496, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1717182340 + "hash": 403158846 }, - "m_iconBW": { + "m_goalTitle": { "type": "std::string", "id": 3, - "offset": 152, - "flags": 131103, + "offset": 136, + "flags": 8388615, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2047461085 + "hash": 2291910240 }, - "m_description": { + "m_goalUnderway": { "type": "std::string", "id": 4, - "offset": 184, - "flags": 8388639, + "offset": 168, + "flags": 8388615, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1649374815 + "hash": 3153144269 }, - "m_displayMode": { - "type": "enum ZTDisplayMode", + "m_hyperlink": { + "type": "std::string", "id": 5, - "offset": 216, - "flags": 2097183, + "offset": 200, + "flags": 8388615, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2216526410, - "enum_options": { - "ZTDM_Shown": 0, - "ZTDM_Discoverable": 1, - "ZTDM_Hidden": 2 - } + "hash": 2887798993 }, - "m_storage": { - "type": "enum ZTStorage", + "m_completeText": { + "type": "std::string", "id": 6, - "offset": 220, - "flags": 2097183, + "offset": 232, + "flags": 8388615, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2290454852, - "enum_options": { - "ZTS_Player": 0, - "ZTS_Zone": 1 - } + "hash": 2767458393 }, - "m_onEnable": { - "type": "class SharedPointer", + "m_completeResults": { + "type": "class ResultList*", "id": 7, - "offset": 224, + "offset": 440, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": true, - "hash": 2591736864 + "hash": 1964258099 }, - "m_onDiscover": { - "type": "class SharedPointer", + "m_goalRequirements": { + "type": "class RequirementList*", "id": 8, - "offset": 240, + "offset": 448, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": true, - "hash": 2826026872 + "hash": 2979967145 }, - "m_onDisable": { - "type": "class SharedPointer", + "m_tallyCounter": { + "type": "class TallyCounterTemplate*", "id": 9, - "offset": 256, + "offset": 456, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": true, - "hash": 1860656717 + "hash": 1884546193 }, - "m_sourceID": { - "type": "gid", + "m_locationName": { + "type": "std::string", "id": 10, "offset": 272, - "flags": 31, + "flags": 8388615, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1134700470 + "hash": 1824218389 }, - "m_inZone": { - "type": "bool", + "m_displayImage1": { + "type": "std::string", "id": 11, - "offset": 280, - "flags": 31, + "offset": 304, + "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 564535654 + "hash": 1959572133 }, - "m_enabled": { - "type": "bool", + "m_displayImage2": { + "type": "std::string", "id": 12, - "offset": 281, - "flags": 31, + "offset": 336, + "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 504506718 + "hash": 1959572134 }, - "m_discovered": { - "type": "bool", + "m_clientTags": { + "type": "std::string", "id": 13, - "offset": 282, - "flags": 31, + "offset": 368, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2319030025 + }, + "m_genericEvents": { + "type": "std::string", + "id": 14, + "offset": 384, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 3466670829 + }, + "m_autoQualify": { + "type": "bool", + "id": 15, + "offset": 400, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2060478331 + "hash": 1878907431 }, - "m_onSet": { - "type": "class SharedPointer", - "id": 14, - "offset": 288, + "m_autoComplete": { + "type": "bool", + "id": 16, + "offset": 401, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1964529317 + "pointer": false, + "hash": 1302545445 }, - "m_onClear": { - "type": "class SharedPointer", - "id": 15, - "offset": 304, + "m_destinationZone": { + "type": "std::string", + "id": 17, + "offset": 408, + "flags": 268435463, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2605356153, + "enum_options": { + "__BASECLASS": "ZoneData" + } + }, + "m_dialogList": { + "type": "class ActorDialogListBase*", + "id": 18, + "offset": 264, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": true, - "hash": 1655978208 + "hash": 1909154969 }, - "m_bSet": { + "m_goalType": { + "type": "enum GoalTemplate::GOAL_TYPE", + "id": 19, + "offset": 96, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1488021149, + "enum_options": { + "GOAL_TYPE_UNKNOWN": 0, + "GOAL_TYPE_BOUNTY": 1, + "GOAL_TYPE_BOUNTYCOLLECT": 2, + "GOAL_TYPE_SCAVENGE": 3, + "GOAL_TYPE_PERSONA": 4, + "GOAL_TYPE_WAYPOINT": 5, + "GOAL_TYPE_SCAVENGEFAKE": 6, + "GOAL_TYPE_ACHIEVERANK": 7, + "GOAL_TYPE_USAGE": 8, + "GOAL_TYPE_COMPLETEQUEST": 9, + "GOAL_TYPE_SOCIARANK": 10, + "GOAL_TYPE_SOCIACURRENCY": 11, + "GOAL_TYPE_SOCIAMINIGAME": 12, + "GOAL_TYPE_SOCIAGIVEITEM": 13, + "GOAL_TYPE_SOCIAGETITEM": 14, + "GOAL_TYPE_COLLECTAFTERBOUNTY": 15, + "GOAL_TYPE_ENCOUNTER_WAYPOINT_FOREACH": 16 + } + }, + "m_noQuestHelper": { "type": "bool", - "id": 16, - "offset": 320, - "flags": 31, + "id": 20, + "offset": 500, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 221694593 - } - } - }, - "1243118202": { - "name": "class ClassProjectFinalReward", - "bases": [ - "PropertyClass" - ], - "hash": 1243118202, - "properties": { - "m_finalPosition": { - "type": "int", - "id": 0, - "offset": 72, + "hash": 578010882, + "enum_options": { + "__DEFAULT": 0 + } + }, + "m_petOnlyQuest": { + "type": "bool", + "id": 21, + "offset": 501, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 309125241 + "hash": 679359344, + "enum_options": { + "__DEFAULT": 0 + } }, - "m_lootTable": { - "type": "std::string", - "id": 1, - "offset": 80, + "m_activateResults": { + "type": "class ResultList*", + "id": 22, + "offset": 504, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3790153995 + }, + "m_hideGoalFloatyText": { + "type": "bool", + "id": 23, + "offset": 512, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2539512673 + "hash": 1919383204, + "enum_options": { + "__DEFAULT": 0 + } }, - "m_featuredTemplateIDList": { - "type": "unsigned int", - "id": 2, - "offset": 112, + "m_npcAdjectives": { + "type": "std::string", + "id": 24, + "offset": 520, "flags": 7, "container": "List", "dynamic": true, "singleton": false, "pointer": false, - "hash": 687120258 - } - } - }, - "1662150979": { - "name": "class ClientIdleAuraCinematicAction*", - "bases": [ - "IdleAuraCinematicAction", - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 1662150979, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, + "hash": 3044559358 + }, + "m_bountyTotal": { + "type": "int", + "id": 25, + "offset": 536, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 + "hash": 1943105087 }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, + "m_bountyType": { + "type": "enum BountyGoalTemplate::BOUNTY_TYPE", + "id": 26, + "offset": 540, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2285866132 + "hash": 3703892338, + "enum_options": { + "BountyGoalTemplate::BT_MOB_KILL": 0, + "BountyGoalTemplate::BT_MOB_FLEE": 1 + } } } }, - "1242970451": { - "name": "class std::list >", - "bases": [], - "hash": 1242970451, - "properties": {} - }, - "2046639585": { - "name": "class std::vector >", + "1391163711": { + "name": "class PathBehavior", "bases": [], - "hash": 2046639585, + "hash": 1391163711, "properties": {} }, - "93756938": { - "name": "class SummonMinionEffectTemplate", + "118932543": { + "name": "class SharedPointer", "bases": [ - "GameEffectTemplate", "PropertyClass" ], - "hash": 93756938, + "hash": 118932543, "properties": { - "m_effectName": { - "type": "std::string", + "m_playerGID": { + "type": "gid", "id": 0, "offset": 72, "flags": 7, @@ -651650,185 +607880,219 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 2029161513 + "hash": 578537369 }, - "m_effectCategory": { - "type": "std::string", + "m_totalProgress": { + "type": "unsigned short", "id": 1, - "offset": 104, + "offset": 88, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1852673222 + "hash": 770936385 }, - "m_sortOrder": { - "type": "int", + "m_tokens": { + "type": "unsigned char", "id": 2, - "offset": 148, + "offset": 90, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1411218206 + "hash": 1631929220 }, - "m_duration": { - "type": "double", + "m_flags": { + "type": "unsigned short", "id": 3, - "offset": 192, + "offset": 92, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2727932435 + "hash": 1347981045 }, - "m_stackingCategories": { - "type": "std::string", + "m_goalProgress1": { + "type": "unsigned short", "id": 4, - "offset": 160, + "offset": 94, "flags": 7, - "container": "List", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 1774497525 + "hash": 2533159345 }, - "m_isPersistent": { - "type": "bool", + "m_goalProgress2": { + "type": "unsigned short", "id": 5, - "offset": 153, + "offset": 96, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 923861920 + "hash": 2533159346 }, - "m_bIsOnPet": { - "type": "bool", + "m_goalProgress3": { + "type": "unsigned short", "id": 6, - "offset": 154, + "offset": 98, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 522593303 + "hash": 2533159347 }, - "m_isPublic": { - "type": "bool", + "m_goalProgress4": { + "type": "unsigned short", "id": 7, - "offset": 152, + "offset": 100, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1728439822 + "hash": 2533159348 }, - "m_visualEffectAddName": { - "type": "std::string", + "m_goalProgress5": { + "type": "unsigned short", "id": 8, - "offset": 200, + "offset": 102, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3382086694 + "hash": 2533159349 }, - "m_visualEffectRemoveName": { - "type": "std::string", + "m_packedName": { + "type": "unsigned int", "id": 9, - "offset": 232, + "offset": 104, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1541697323 + "hash": 518911062 }, - "m_onAddFunctorName": { - "type": "std::string", + "m_purchasedTokens": { + "type": "unsigned char", "id": 10, - "offset": 280, + "offset": 91, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1561843107 + "hash": 2467704067 }, - "m_onRemoveFunctorName": { - "type": "std::string", + "m_level": { + "type": "unsigned char", "id": 11, - "offset": 312, + "offset": 108, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2559017864 + "hash": 1438884808 }, - "m_stackingRule": { - "type": "enum STACKING_RULE", + "m_buddyListGID": { + "type": "gid", "id": 12, - "offset": 144, - "flags": 2097159, + "offset": 80, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 431568889, - "enum_options": { - "STACKING_ALLOWED": 0, - "STACKING_NOSTACK": 1, - "STACKING_REPLACE": 2 - } + "hash": 50378240 }, - "m_minionType": { - "type": "enum MinionType", + "m_extendedData": { + "type": "unsigned char", "id": 13, - "offset": 360, - "flags": 2097159, - "container": "Static", - "dynamic": false, + "offset": 112, + "flags": 7, + "container": "Vector", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 3186373083, - "enum_options": { - "MT_NONE": 0, - "MT_ACCOMPANY": 1, - "MT_MINION": 2, - "MT_MONSTER": 3 - } + "hash": 2268810331 }, - "m_summonedTemplateID": { - "type": "int", + "m_usesExtraData": { + "type": "bool", "id": 14, - "offset": 364, + "offset": 136, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1109386027 + "hash": 1683530097 + } + } + }, + "977177732": { + "name": "class FishingBehaviorBase", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 977177732, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_caughtFishList": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 1, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2107365240 + }, + "m_fishHistoryList": { + "type": "class SharedPointer", + "id": 2, + "offset": 128, + "flags": 1, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 3741999493 } } }, - "1662820197": { - "name": "class VisibilityBehaviorTemplate*", + "1823063982": { + "name": "class SharedPointer", "bases": [ - "BehaviorTemplate", + "AddHangingEffectCinematicAction", + "ActorCinematicAction", + "CinematicAction", "PropertyClass" ], - "hash": 1662820197, + "hash": 1823063982, "properties": { - "m_behaviorName": { - "type": "std::string", + "m_timeOffset": { + "type": "float", "id": 0, "offset": 72, "flags": 7, @@ -651836,39 +608100,50 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 3130754092 + "hash": 2237098605 }, - "m_visible": { - "type": "bool", + "m_actor": { + "type": "std::string", "id": 1, - "offset": 120, + "offset": 80, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 810536225 + "hash": 2285866132 }, - "m_showToPets": { - "type": "bool", + "m_effect": { + "type": "std::string", "id": 2, - "offset": 121, + "offset": 120, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1894145160 + }, + "m_revealsCloaked": { + "type": "bool", + "id": 3, + "offset": 156, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1441936691 + "hash": 1618772408 } } }, - "93756928": { - "name": "class SummonMinionEffectTemplate*", + "118876438": { + "name": "class SharedPointer", "bases": [ "GameEffectTemplate", "PropertyClass" ], - "hash": 93756928, + "hash": 118876438, "properties": { "m_effectName": { "type": "std::string", @@ -652018,346 +608293,260 @@ "STACKING_REPLACE": 2 } }, - "m_minionType": { - "type": "enum MinionType", + "m_xpPercent": { + "type": "int", "id": 13, "offset": 360, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3186373083, - "enum_options": { - "MT_NONE": 0, - "MT_ACCOMPANY": 1, - "MT_MINION": 2, - "MT_MONSTER": 3 - } - }, - "m_summonedTemplateID": { - "type": "int", - "id": 14, - "offset": 364, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1109386027 + "hash": 755316563 } } }, - "1243342370": { - "name": "class SharedPointer", + "976817436": { + "name": "class ObstacleCourseSpeedUpBehaviorTemplate", "bases": [ - "GameEffectBase", + "ObstacleCourseObstaclePathBaseTemplate", + "ObstacleCourseObstacleBehaviorTemplate", + "BehaviorTemplate", "PropertyClass" ], - "hash": 1243342370, + "hash": 976817436, "properties": { - "m_currentTickCount": { - "type": "double", + "m_behaviorName": { + "type": "std::string", "id": 0, - "offset": 80, - "flags": 63, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2533274692 + "hash": 3130754092 }, - "m_effectNameID": { - "type": "unsigned int", + "m_rate": { + "type": "float", "id": 1, - "offset": 96, - "flags": 63, + "offset": 120, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1204067144 + "hash": 310005283 }, - "m_bIsOnPet": { - "type": "bool", + "m_penaltyTime": { + "type": "float", "id": 2, - "offset": 73, - "flags": 31, + "offset": 124, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 522593303 + "hash": 2083389507 }, - "m_originatorID": { - "type": "gid", + "m_totalObstacleSize": { + "type": "class Vector3D", "id": 3, - "offset": 104, - "flags": 39, + "offset": 128, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1131810019 + "hash": 2379878414 }, - "m_itemSlotID": { - "type": "unsigned int", + "m_bounds": { + "type": "class Vector3D", "id": 4, - "offset": 112, - "flags": 63, - "container": "Static", - "dynamic": false, + "offset": 152, + "flags": 7, + "container": "Vector", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 1895747595 + "hash": 1948083181 }, - "m_internalID": { - "type": "int", + "m_orientToPath": { + "type": "bool", "id": 5, - "offset": 92, - "flags": 63, + "offset": 176, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1643137924 + "hash": 655036148 }, - "m_endTime": { - "type": "unsigned int", + "m_heightUp": { + "type": "float", "id": 6, - "offset": 88, - "flags": 31, + "offset": 140, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 716479635 + "hash": 2208713013 }, - "m_lookupIndex": { - "type": "int", + "m_heightDown": { + "type": "float", "id": 7, - "offset": 128, - "flags": 31, + "offset": 144, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1626623948 - } - } - }, - "2053270675": { - "name": "class ClientModifyPipsCinematicAction", - "bases": [ - "ModifyPipsCinematicAction", - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 2053270675, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, + "hash": 655333896 + }, + "m_speedAmount": { + "type": "double", + "id": 8, + "offset": 184, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 + "hash": 3716841682 }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, + "m_buffTime": { + "type": "double", + "id": 9, + "offset": 192, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2285866132 - } - } - }, - "1663161200": { - "name": "class GoalCompilation*", - "bases": [ - "PropertyClass" - ], - "hash": 1663161200, - "properties": { - "m_goals": { - "type": "class GoalEntryFull*", - "id": 0, - "offset": 72, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2484767728 - } - } - }, - "2049666362": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 2049666362, - "properties": { - "m_companionID": { - "type": "int", - "id": 0, - "offset": 72, - "flags": 31, + "hash": 2925547231 + }, + "m_effectWearingOff": { + "type": "std::string", + "id": 10, + "offset": 200, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1594812875 + "hash": 1540780784 }, - "m_serializedEffects": { + "m_soundWearingOff": { "type": "std::string", - "id": 1, - "offset": 96, - "flags": 31, + "id": 11, + "offset": 232, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3446153863 - } - } - }, - "94560951": { - "name": "class StartHangingRotationCinematicAction*", - "bases": [ - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 94560951, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, + "hash": 1848004524 + }, + "m_effectApply": { + "type": "std::string", + "id": 12, + "offset": 264, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 + "hash": 1838368078 }, - "m_actor": { + "m_soundApply": { "type": "std::string", - "id": 1, - "offset": 80, + "id": 13, + "offset": 296, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2285866132 + "hash": 3579526282 }, - "m_cloaked": { - "type": "bool", - "id": 2, - "offset": 120, + "m_effectDespawn": { + "type": "std::string", + "id": 14, + "offset": 328, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 7349510 - } - } - }, - "1244456308": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1244456308, - "properties": { - "m_sSpell": { + "hash": 2174851674 + }, + "m_soundDespawn": { "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, + "id": 15, + "offset": 360, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2419867822 + "hash": 2068074646 }, - "m_sNif": { + "m_effectWhileActive": { "type": "std::string", - "id": 1, - "offset": 104, - "flags": 31, + "id": 16, + "offset": 392, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1717518635 + "hash": 3074038205 }, - "m_sSound": { + "m_soundWhileActive": { "type": "std::string", - "id": 2, - "offset": 136, - "flags": 31, + "id": 17, + "offset": 424, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2419849367 + "hash": 2475003385 }, - "m_bOverride": { - "type": "bool", - "id": 3, - "offset": 168, - "flags": 31, + "m_effectRespawning": { + "type": "std::string", + "id": 18, + "offset": 456, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 589970005 - } - } - }, - "1663158128": { - "name": "class GoalCompilation", - "bases": [ - "PropertyClass" - ], - "hash": 1663158128, - "properties": { - "m_goals": { - "type": "class GoalEntryFull*", - "id": 0, - "offset": 72, - "flags": 31, - "container": "List", - "dynamic": true, + "hash": 3091986790 + }, + "m_soundRespawning": { + "type": "std::string", + "id": 19, + "offset": 488, + "flags": 7, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2484767728 + "pointer": false, + "hash": 3399210530 } } }, - "2047404866": { - "name": "class RemoveHangingCinematicStageTemplate", + "543563977": { + "name": "class CombatAction*", "bases": [ - "CinematicStageTemplate", "PropertyClass" ], - "hash": 2047404866, + "hash": 543563977, "properties": { - "m_name": { - "type": "std::string", + "m_spellCaster": { + "type": "int", "id": 0, "offset": 72, "flags": 7, @@ -652365,415 +608554,328 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 1717359772 + "hash": 1306412924 }, - "m_duration": { - "type": "float", + "m_spell": { + "type": "class SharedPointer", "id": 1, - "offset": 104, + "offset": 96, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 920323453 + "pointer": true, + "hash": 1160380498 }, - "m_actions": { - "type": "class SharedPointer", + "m_spellHits": { + "type": "char", "id": 2, "offset": 112, "flags": 7, - "container": "List", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1380578687 + "pointer": false, + "hash": 1193115340 }, - "m_stageRelationships": { - "type": "class SharedPointer", + "m_effectChosen": { + "type": "unsigned int", "id": 3, - "offset": 128, + "offset": 212, "flags": 7, - "container": "List", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 499983354 + "pointer": false, + "hash": 781967354 }, - "m_burnHangingTime": { - "type": "float", + "m_interrupt": { + "type": "bool", "id": 4, - "offset": 152, + "offset": 113, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1114462681 + "hash": 1419105216 }, - "m_stopRotating": { + "m_sigilSpell": { "type": "bool", "id": 5, - "offset": 158, + "offset": 114, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 13587553 + "hash": 1757632683 }, - "m_startRotating": { + "m_showCast": { "type": "bool", "id": 6, - "offset": 159, + "offset": 115, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 839204969 + "hash": 456821215 }, - "m_startRotationTime": { - "type": "float", + "m_criticalHitRoll": { + "type": "unsigned char", "id": 7, - "offset": 160, + "offset": 116, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1011449124 + "hash": 2767200825 }, - "m_revealText": { - "type": "std::string", + "m_stunResistRoll": { + "type": "unsigned char", "id": 8, - "offset": 168, + "offset": 117, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2011500383 + "hash": 2034125421 }, - "m_revealsHanging": { + "m_blocksCalculated": { "type": "bool", "id": 9, - "offset": 200, + "offset": 152, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1202199809 + "hash": 1203964291 }, - "m_camRel": { - "type": "enum CameraCutCinematicAction::kCameraRelative", + "m_serializedBlocks": { + "type": "std::string", "id": 10, - "offset": 204, - "flags": 2097159, + "offset": 160, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 919962138, - "enum_options": { - "kSigil": 1, - "kTarget": 2, - "kSource": 3, - "kActor": 4, - "__DEFAULT": "kTarget" - } + "hash": 3529268709 }, - "m_bSwitchCameraToWideLong": { - "type": "bool", + "m_stringKeyMessage": { + "type": "std::string", "id": 11, - "offset": 156, + "offset": 216, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2136912684, - "enum_options": { - "__DEFAULT": 1 - } + "hash": 2591311648 }, - "m_announcesSpell": { - "type": "bool", + "m_soundFileName": { + "type": "std::string", "id": 12, - "offset": 157, + "offset": 248, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 652261533, - "enum_options": { - "__DEFAULT": 1 - } + "hash": 3058120805 }, - "m_detonate": { - "type": "bool", + "m_durationModifier": { + "type": "float", "id": 13, - "offset": 208, + "offset": 280, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1738601959 - } - } - }, - "1244012353": { - "name": "class PhysicsSimObject*", - "bases": [ - "PropertyClass" - ], - "hash": 1244012353, - "properties": {} - }, - "1662950038": { - "name": "class WeightedList*", - "bases": [ - "PropertyClass" - ], - "hash": 1662950038, - "properties": { - "m_list": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, + "hash": 753259116 + }, + "m_serializedTargetsAffected": { + "type": "std::string", + "id": 14, + "offset": 288, "flags": 7, - "container": "Vector", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1753240061 - } - } - }, - "2047300709": { - "name": "class GameObjectTemplate", - "bases": [ - "CoreTemplate", - "PropertyClass" - ], - "hash": 2047300709, - "properties": { - "m_behaviors": { - "type": "class BehaviorTemplate*", - "id": 0, - "offset": 72, + "pointer": false, + "hash": 2626745971 + }, + "m_targetSubcircleList": { + "type": "int", + "id": 15, + "offset": 80, "flags": 7, - "container": "Vector", + "container": "List", "dynamic": true, "singleton": false, - "pointer": true, - "hash": 1197808594 + "pointer": false, + "hash": 227779897 }, - "m_objectName": { - "type": "std::string", - "id": 1, - "offset": 96, + "m_pipConversionRoll": { + "type": "int", + "id": 16, + "offset": 120, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2154940147 + "hash": 791010242 }, - "m_templateID": { - "type": "unsigned int", - "id": 2, + "m_randomSpellEffectPerTargetRolls": { + "type": "int", + "id": 17, "offset": 128, - "flags": 16777223, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 430465634 + }, + "m_handledRandomSpellPerTarget": { + "type": "bool", + "id": 18, + "offset": 124, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1286746870 + "hash": 1741636882 }, - "m_visualID": { - "type": "unsigned int", - "id": 3, - "offset": 132, + "m_confusedTarget": { + "type": "bool", + "id": 19, + "offset": 208, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1118778894 + "hash": 1193542673 }, - "m_adjectiveList": { - "type": "std::string", - "id": 4, - "offset": 248, + "m_forceSpell": { + "type": "bool", + "id": 20, + "offset": 336, "flags": 7, - "container": "List", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 3195213318 + "hash": 935804098 }, - "m_exemptFromAOI": { + "m_afterDied": { "type": "bool", - "id": 5, - "offset": 240, + "id": 21, + "offset": 209, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1457879059 + "hash": 1317680827 }, - "m_displayName": { - "type": "std::string", - "id": 6, - "offset": 168, - "flags": 8388615, + "m_delayed": { + "type": "bool", + "id": 22, + "offset": 337, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2446900370 + "hash": 1021327211 }, - "m_description": { - "type": "std::string", - "id": 7, - "offset": 136, - "flags": 8388615, + "m_delayedEnchanted": { + "type": "bool", + "id": 23, + "offset": 338, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1649374815 + "hash": 2083048693 }, - "m_nObjectType": { - "type": "enum ObjectType", - "id": 8, - "offset": 200, - "flags": 2097159, + "m_petCast": { + "type": "bool", + "id": 24, + "offset": 339, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2118905880, - "enum_options": { - "OT_UNDEFINED": 0, - "OT_PLAYER": 1, - "OT_NPC": 2, - "OT_PROP": 3, - "OT_OBJECT": 4, - "OT_HOUSE": 5, - "OT_KEY": 6, - "OT_OLD_KEY": 7, - "OT_DEED": 8, - "OT_MAIL": 9, - "OT_RECIPE": 17, - "OT_EQUIP_HEAD": 10, - "OT_EQUIP_CHEST": 11, - "OT_EQUIP_LEGS": 12, - "OT_EQUIP_HANDS": 13, - "OT_EQUIP_FINGER": 14, - "OT_EQUIP_FEET": 15, - "OT_EQUIP_EAR": 16, - "OT_BUILDING_BLOCK": 18, - "OT_BUILDING_BLOCK_SOLID": 19, - "OT_GOLF": 20, - "OT_DOOR": 21, - "OT_PET": 22, - "OT_FABRIC": 23, - "OT_WINDOW": 24, - "OT_ROOF": 25, - "OT_HORSE": 26, - "OT_STRUCTURE": 27, - "OT_HOUSING_TEXTURE": 28, - "OT_PLANT": 29 - } + "hash": 1494940903 }, - "m_sIcon": { - "type": "std::string", - "id": 9, - "offset": 208, - "flags": 131079, + "m_petCasted": { + "type": "bool", + "id": 25, + "offset": 340, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2306259831 - } - } - }, - "1243914049": { - "name": "class PhysicsSimObject", - "bases": [ - "PropertyClass" - ], - "hash": 1243914049, - "properties": {} - }, - "96661878": { - "name": "class BaseEffectCinematicAction", - "bases": [ - "CinematicAction", - "PropertyClass" - ], - "hash": 96661878, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, + "hash": 1697247120 + }, + "m_petCastTarget": { + "type": "int", + "id": 26, + "offset": 344, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 + "hash": 317564181 }, - "m_effectRel": { - "type": "enum BaseEffectCinematicAction::kEffectRelative", - "id": 1, - "offset": 80, - "flags": 2097159, + "m_CritHitList": { + "type": "class TargetCritHit", + "id": 27, + "offset": 368, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1448398021 + }, + "m_xPipCost": { + "type": "unsigned char", + "id": 28, + "offset": 348, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2978921287, - "enum_options": { - "kNone": 0, - "kSigil": 1, - "kTarget": 2, - "kSource": 3, - "kActor": 4 - } + "hash": 2557198122 } } }, - "1243590083": { - "name": "class std::vector >", - "bases": [], - "hash": 1243590083, - "properties": {} - }, - "95842449": { - "name": "struct std::pair,class SharedPointer >", - "bases": [], - "hash": 95842449, - "properties": {} - }, - "2047454018": { - "name": "class RemoveHangingCinematicStageTemplate*", + "1392351367": { + "name": "class InfractionMessageBoxInfo*", "bases": [ - "CinematicStageTemplate", + "InfractionPenaltyInfo", "PropertyClass" ], - "hash": 2047454018, + "hash": 1392351367, "properties": { - "m_name": { - "type": "std::string", + "m_addAtPointValue": { + "type": "float", "id": 0, "offset": 72, "flags": 7, @@ -652781,175 +608883,161 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 1717359772 + "hash": 1071217084 }, - "m_duration": { + "m_removeAtPointValue": { "type": "float", "id": 1, - "offset": 104, + "offset": 76, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 920323453 + "hash": 2112196961 }, - "m_actions": { - "type": "class SharedPointer", + "m_lifespan": { + "type": "std::string", "id": 2, - "offset": 112, + "offset": 80, "flags": 7, - "container": "List", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1380578687 + "pointer": false, + "hash": 3042809453 }, - "m_stageRelationships": { - "type": "class SharedPointer", + "m_titleKey": { + "type": "std::string", "id": 3, - "offset": 128, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 499983354 - }, - "m_burnHangingTime": { - "type": "float", - "id": 4, - "offset": 152, + "offset": 120, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1114462681 + "hash": 3096106918 }, - "m_stopRotating": { - "type": "bool", - "id": 5, - "offset": 158, + "m_messageKey": { + "type": "std::string", + "id": 4, + "offset": 152, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 13587553 - }, - "m_startRotating": { - "type": "bool", - "id": 6, - "offset": 159, - "flags": 7, + "hash": 3561518217 + } + } + }, + "1391905761": { + "name": "class SharedPointer", + "bases": [ + "MatchActorResult", + "PropertyClass" + ], + "hash": 1391905761, + "properties": { + "m_pActor": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 839204969 + "pointer": true, + "hash": 1115051967 }, - "m_startRotationTime": { - "type": "float", - "id": 7, - "offset": 160, - "flags": 7, + "m_place": { + "type": "int", + "id": 1, + "offset": 88, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1011449124 + "hash": 806257663 }, - "m_revealText": { - "type": "std::string", - "id": 8, - "offset": 168, - "flags": 7, + "m_ratingGained": { + "type": "int", + "id": 2, + "offset": 92, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2011500383 + "hash": 1426436071 }, - "m_revealsHanging": { - "type": "bool", - "id": 9, - "offset": 200, - "flags": 7, + "m_arenaPoints": { + "type": "int", + "id": 3, + "offset": 96, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1202199809 + "hash": 511478910 }, - "m_camRel": { - "type": "enum CameraCutCinematicAction::kCameraRelative", - "id": 10, - "offset": 204, - "flags": 2097159, + "m_pvpCurrency": { + "type": "int", + "id": 4, + "offset": 100, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 919962138, - "enum_options": { - "kSigil": 1, - "kTarget": 2, - "kSource": 3, - "kActor": 4, - "__DEFAULT": "kTarget" - } + "hash": 611304283 }, - "m_bSwitchCameraToWideLong": { - "type": "bool", - "id": 11, - "offset": 156, - "flags": 7, + "m_pvpTourneyCurrency": { + "type": "int", + "id": 5, + "offset": 104, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2136912684, - "enum_options": { - "__DEFAULT": 1 - } + "hash": 1184787505 }, - "m_announcesSpell": { - "type": "bool", - "id": 12, - "offset": 157, - "flags": 7, + "m_gold": { + "type": "int", + "id": 6, + "offset": 108, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 652261533, - "enum_options": { - "__DEFAULT": 1 - } + "hash": 219423808 }, - "m_detonate": { - "type": "bool", - "id": 13, - "offset": 208, - "flags": 7, + "m_gameResult": { + "type": "unsigned char", + "id": 7, + "offset": 112, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1738601959 + "hash": 1417654793 } } }, - "95736291": { - "name": "class ExpansionBehaviorTemplate", + "1823353267": { + "name": "class ProcessGlobalCinematicStageTemplate", "bases": [ - "BehaviorTemplate", + "CinematicStageTemplate", "PropertyClass" ], - "hash": 95736291, + "hash": 1823353267, "properties": { - "m_behaviorName": { + "m_name": { "type": "std::string", "id": 0, "offset": 72, @@ -652958,28 +609046,93 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 3130754092 + "hash": 1717359772 }, - "m_expansions": { - "type": "class SharedPointer", + "m_duration": { + "type": "float", "id": 1, - "offset": 120, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 920323453 + }, + "m_actions": { + "type": "class SharedPointer", + "id": 2, + "offset": 112, "flags": 7, "container": "List", "dynamic": true, "singleton": false, "pointer": true, - "hash": 3762221063 + "hash": 1380578687 + }, + "m_stageRelationships": { + "type": "class SharedPointer", + "id": 3, + "offset": 128, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 499983354 + }, + "m_sound": { + "type": "std::string", + "id": 4, + "offset": 152, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2307644996 } } }, - "1663225062": { - "name": "class PipControl", + "120041523": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 120041523, + "properties": { + "m_infoPairs": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1522101428 + }, + "m_bSocketsLocked": { + "type": "bool", + "id": 1, + "offset": 88, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1073026659 + } + } + }, + "544875989": { + "name": "class ControlDecalButton", "bases": [ + "ControlButton", "Window", "PropertyClass" ], - "hash": 1663225062, + "hash": 544875989, "properties": { "m_sName": { "type": "std::string", @@ -653015,11 +609168,8 @@ "hash": 983582334, "enum_options": { "HAS_BACK": 1, - "SCALE_CHILDREN": 2, "CAN_MOVE": 4, "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "FOCUS_LOCKED": 64, "CAN_FOCUS": 128, "CAN_DOCK": 32, "DO_NOT_CAPTURE_MOUSE": 256, @@ -653031,7 +609181,12 @@ "USE_ALPHA_BOUNDS": 8192, "AUTO_GROW": 16384, "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152 + "AUTO_RESIZE": 49152, + "SHOW_HOTKEY": 16777216, + "EFFECT_SCALE": 67108864, + "LOCK_ICON_SIZE": 33554432, + "LEFT_TEXT": 536870912, + "NO_FIT_TEXT": 1073741824 } }, "m_Flags": { @@ -653191,1061 +609346,905 @@ "singleton": false, "pointer": false, "hash": 3091503757 - } - } - }, - "94784723": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 94784723, - "properties": { - "m_levelInfo": { - "type": "class MonsterMagicLevelInfo*", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2337455676 }, - "m_maxLevel": { - "type": "unsigned char", - "id": 1, - "offset": 88, - "flags": 7, + "m_bToggle": { + "type": "bool", + "id": 16, + "offset": 608, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 783962734 - } - } - }, - "1243987524": { - "name": "class SharedPointer", - "bases": [ - "GameEffectInfo", - "PropertyClass" - ], - "hash": 1243987524, - "properties": { - "m_effectName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, + "hash": 2071810903 + }, + "m_bButtonDown": { + "type": "bool", + "id": 17, + "offset": 609, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2029161513 - } - } - }, - "2051503008": { - "name": "class SharedPointer", - "bases": [ - "BGPolymorphSelectBehavior", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 2051503008, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, + "hash": 840041705 + }, + "m_sLabel": { + "type": "std::wstring", + "id": 18, + "offset": 616, + "flags": 4194439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 - }, - "m_polyCategoryInactiveToRedTeamPlayers": { - "type": "gid", - "id": 1, - "offset": 112, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 757020210 - }, - "m_polyCategoryUnavailableToRedTeamPlayers": { - "type": "gid", - "id": 2, - "offset": 128, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1382977667 - }, - "m_polyCategoryInactiveToBlueTeamPlayers": { - "type": "gid", - "id": 3, - "offset": 144, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1877669599 + "hash": 2207009163 }, - "m_polyCategoryUnavailableToBlueTeamPlayers": { - "type": "gid", - "id": 4, - "offset": 160, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1059429200 - } - } - }, - "1664883408": { - "name": "class ControlSlider", - "bases": [ - "ControlBar", - "Window", - "PropertyClass" - ], - "hash": 1664883408, - "properties": { - "m_sName": { - "type": "std::string", - "id": 0, - "offset": 80, + "m_labelOffset": { + "type": "class Rect", + "id": 19, + "offset": 832, "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2306437263 + "hash": 1990646723 }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, + "m_pButton": { + "type": "class SharedPointer", + "id": 20, + "offset": 656, + "flags": 135, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": true, - "hash": 2621225959 + "hash": 1543855875 }, - "m_Style": { + "m_HotKey": { "type": "unsigned int", - "id": 2, - "offset": 152, - "flags": 1048583, + "id": 21, + "offset": 672, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "SCALE_CHILDREN": 2, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "FOCUS_LOCKED": 64, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152 - } + "hash": 1631553409 }, - "m_Flags": { - "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 1048583, + "m_Color": { + "type": "class Color", + "id": 22, + "offset": 676, + "flags": 262279, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } + "hash": 1753714077 }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, + "m_bCursorOver": { + "type": "bool", + "id": 23, + "offset": 689, "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3105139380 + "hash": 283981103 }, - "m_fTargetAlpha": { - "type": "float", - "id": 5, - "offset": 212, + "m_bAbortWhenCursorNotOver": { + "type": "bool", + "id": 24, + "offset": 706, "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1809129834 + "hash": 325405258 }, - "m_fDisabledAlpha": { - "type": "float", - "id": 6, - "offset": 216, + "m_bHotKeyDown": { + "type": "bool", + "id": 25, + "offset": 680, "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1389987675 + "hash": 616989185 }, - "m_fAlpha": { + "m_fTime": { "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, + "id": 26, + "offset": 684, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 482130755 + "hash": 883746156 }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, + "m_bGreyed": { + "type": "bool", + "id": 27, + "offset": 688, "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3623628394 - }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, "pointer": false, - "hash": 2102211316 + "hash": 1566556053 }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, + "m_fMaxScale": { + "type": "float", + "id": 28, + "offset": 692, "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1846695875 + "hash": 2070186635 }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, + "m_fScaleSpeed": { + "type": "float", + "id": 29, + "offset": 696, "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3389835433 + "hash": 1457135702 }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, + "m_bUseDropShadow": { + "type": "bool", + "id": 30, + "offset": 704, "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2547159940 + "hash": 93063037 }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, + "m_bUseOutline": { + "type": "bool", + "id": 31, + "offset": 705, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2587533771 + "hash": 744292994 }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, + "m_pGreyedState": { + "type": "class SharedPointer", + "id": 32, + "offset": 768, "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 3091503757 + "pointer": true, + "hash": 2703352263 }, - "m_fPosition": { - "type": "float", - "id": 16, - "offset": 584, + "m_pNormalState": { + "type": "class SharedPointer", + "id": 33, + "offset": 752, "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1808212114 + "pointer": true, + "hash": 1887909808 }, - "m_BaseColor": { - "type": "class Color", - "id": 17, - "offset": 588, - "flags": 262279, + "m_pHighlightedState": { + "type": "class SharedPointer", + "id": 34, + "offset": 784, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 2172251096 + "pointer": true, + "hash": 2200177608 }, - "m_BarColor": { - "type": "class Color", - "id": 18, - "offset": 592, - "flags": 262279, + "m_pSelectedState": { + "type": "class SharedPointer", + "id": 35, + "offset": 800, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 2259916498 + "pointer": true, + "hash": 2266776432 }, - "m_bDisplayVertical": { - "type": "bool", - "id": 19, - "offset": 596, + "m_pDepressedState": { + "type": "class SharedPointer", + "id": 36, + "offset": 816, "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1359621189 + "pointer": true, + "hash": 1878185798 }, - "m_pBarMaterial": { + "m_pDecal": { "type": "class SharedPointer", - "id": 20, - "offset": 600, + "id": 37, + "offset": 880, "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": true, - "hash": 2481929515 + "hash": 2204742880 }, - "m_pTopLeftMaterial": { - "type": "class SharedPointer", - "id": 21, - "offset": 616, + "m_DecalColor": { + "type": "class Color", + "id": 38, + "offset": 896, + "flags": 262279, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2053465718 + }, + "m_DecalOffset": { + "type": "class Rect", + "id": 39, + "offset": 900, "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3248096916 + "pointer": false, + "hash": 1942612892 }, - "m_pCenterMaterial": { - "type": "class SharedPointer", - "id": 22, - "offset": 632, + "m_pGreyedDecalState": { + "type": "class SharedPointer", + "id": 40, + "offset": 936, "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": true, - "hash": 1519560055 + "hash": 1430510752 }, - "m_pBottomRightMaterial": { - "type": "class SharedPointer", - "id": 23, - "offset": 648, + "m_pNormalDecalState": { + "type": "class SharedPointer", + "id": 41, + "offset": 920, "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": true, - "hash": 2932444745 + "hash": 1908952105 }, - "m_fMin": { - "type": "float", - "id": 24, - "offset": 700, + "m_pHighlightedDecalState": { + "type": "class SharedPointer", + "id": 42, + "offset": 952, "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 309551905 + "pointer": true, + "hash": 3280301889 }, - "m_fMax": { - "type": "float", - "id": 25, - "offset": 704, + "m_pSelectedDecalState": { + "type": "class SharedPointer", + "id": 43, + "offset": 968, "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 309551651 + "pointer": true, + "hash": 1444589545 }, - "m_nTabWidth": { - "type": "int", - "id": 26, - "offset": 708, + "m_pDepressedDecalState": { + "type": "class SharedPointer", + "id": 44, + "offset": 984, "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1554957503 + "pointer": true, + "hash": 2385844607 } } }, - "2050799194": { - "name": "class ClientGameEffectTimerPopupTrigger", + "1823340899": { + "name": "class ClientDeathParticleCinematicAction", "bases": [ - "GameEffectTimerPopupTrigger", - "GameEffectTimerTrigger", + "DeathParticleCinematicAction", + "ActorCinematicAction", + "CinematicAction", "PropertyClass" ], - "hash": 2050799194, + "hash": 1823340899, "properties": { - "m_radius": { + "m_timeOffset": { "type": "float", "id": 0, "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 989410271 - }, - "m_triggerT": { - "type": "float", - "id": 1, - "offset": 76, - "flags": 31, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2138083583 + "hash": 2237098605 }, - "m_popupKey": { + "m_actor": { "type": "std::string", - "id": 2, + "id": 1, "offset": 80, - "flags": 31, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3434427096 + "hash": 2285866132 } } }, - "1244315844": { - "name": "class SharedPointer", + "119316814": { + "name": "class MagicSchoolTemplate*", "bases": [ + "CoreTemplate", "PropertyClass" ], - "hash": 1244315844, + "hash": 119316814, "properties": { - "m_rank": { - "type": "unsigned char", + "m_behaviors": { + "type": "class BehaviorTemplate*", "id": 0, "offset": 72, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "Vector", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 857403388 + "pointer": true, + "hash": 1197808594 }, - "m_cost": { - "type": "unsigned char", + "m_schoolName": { + "type": "std::string", "id": 1, - "offset": 73, + "offset": 96, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 856879753 - } - } - }, - "1664325298": { - "name": "class WinAnimConcurrentBounded", - "bases": [ - "WinAnimConcurrent", - "WinAnimContainer", - "WindowAnimation", - "PropertyClass" - ], - "hash": 1664325298, - "properties": { - "m_bUseDeepCopy": { - "type": "bool", - "id": 0, - "offset": 72, - "flags": 135, + "hash": 3385349572 + }, + "m_minLevel": { + "type": "unsigned int", + "id": 2, + "offset": 132, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 433380635 - }, - "m_winAnimList": { - "type": "class SharedPointer", - "id": 1, - "offset": 80, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1941062728 + "hash": 1708220969 }, - "m_bLooping": { - "type": "bool", - "id": 2, - "offset": 104, - "flags": 135, + "m_schoolIndex": { + "type": "int", + "id": 3, + "offset": 136, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2131020845 + "hash": 7119994 }, - "m_finishedAnimList": { - "type": "class SharedPointer", - "id": 3, - "offset": 112, - "flags": 135, + "m_secondarySchoolBadgeList": { + "type": "std::string", + "id": 4, + "offset": 144, + "flags": 7, "container": "List", "dynamic": true, "singleton": false, - "pointer": true, - "hash": 3066650884 - }, - "m_boundary": { - "type": "class Rect", - "id": 4, - "offset": 128, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, "pointer": false, - "hash": 1423726080 + "hash": 2758948314 } } }, - "2050799114": { - "name": "class ClientGameEffectTimerPopupTrigger*", + "991927505": { + "name": "class WizItemTemplate*", "bases": [ - "GameEffectTimerPopupTrigger", - "GameEffectTimerTrigger", + "ItemTemplate", + "GameObjectTemplate", + "CoreTemplate", "PropertyClass" ], - "hash": 2050799114, + "hash": 991927505, "properties": { - "m_radius": { - "type": "float", + "m_behaviors": { + "type": "class BehaviorTemplate*", "id": 0, "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, + "flags": 7, + "container": "Vector", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 989410271 + "pointer": true, + "hash": 1197808594 }, - "m_triggerT": { - "type": "float", + "m_objectName": { + "type": "std::string", "id": 1, - "offset": 76, - "flags": 31, + "offset": 96, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2138083583 + "hash": 2154940147 }, - "m_popupKey": { - "type": "std::string", + "m_templateID": { + "type": "unsigned int", "id": 2, - "offset": 80, - "flags": 31, + "offset": 128, + "flags": 16777223, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3434427096 - } - } - }, - "96496465": { - "name": "class SharedPointer", - "bases": [ - "LinearSoundBehavior", - "PositionalSoundBehavior", - "SoundBehavior", - "AreaBehavior", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 96496465, - "properties": { - "m_behaviorTemplateNameID": { + "hash": 1286746870 + }, + "m_visualID": { "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, + "id": 3, + "offset": 132, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 + "hash": 1118778894 }, - "m_radius": { - "type": "float", - "id": 1, - "offset": 116, + "m_adjectiveList": { + "type": "std::string", + "id": 4, + "offset": 248, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 3195213318 + }, + "m_exemptFromAOI": { + "type": "bool", + "id": 5, + "offset": 240, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 989410271 + "hash": 1457879059 }, - "m_category": { - "type": "enum AudioCategory", - "id": 2, - "offset": 124, - "flags": 2097159, + "m_displayName": { + "type": "std::string", + "id": 6, + "offset": 168, + "flags": 8388615, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2951251982, - "enum_options": { - "AudioCategory_Irrelevent": 0, - "AudioCategory_Accoustic": 1, - "AudioCategory_Noise": 2, - "AudioCategory_Music": 3 - } + "hash": 2446900370 }, - "m_exclusive": { - "type": "bool", - "id": 3, - "offset": 128, - "flags": 7, + "m_description": { + "type": "std::string", + "id": 7, + "offset": 136, + "flags": 8388615, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 824383403 + "hash": 1649374815 }, - "m_playList": { - "type": "class PlayList", - "id": 4, - "offset": 176, - "flags": 7, + "m_nObjectType": { + "type": "enum ObjectType", + "id": 8, + "offset": 200, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2061221957 + "hash": 2118905880, + "enum_options": { + "OT_UNDEFINED": 0, + "OT_PLAYER": 1, + "OT_NPC": 2, + "OT_PROP": 3, + "OT_OBJECT": 4, + "OT_HOUSE": 5, + "OT_KEY": 6, + "OT_OLD_KEY": 7, + "OT_DEED": 8, + "OT_MAIL": 9, + "OT_RECIPE": 17, + "OT_EQUIP_HEAD": 10, + "OT_EQUIP_CHEST": 11, + "OT_EQUIP_LEGS": 12, + "OT_EQUIP_HANDS": 13, + "OT_EQUIP_FINGER": 14, + "OT_EQUIP_FEET": 15, + "OT_EQUIP_EAR": 16, + "OT_BUILDING_BLOCK": 18, + "OT_BUILDING_BLOCK_SOLID": 19, + "OT_GOLF": 20, + "OT_DOOR": 21, + "OT_PET": 22, + "OT_FABRIC": 23, + "OT_WINDOW": 24, + "OT_ROOF": 25, + "OT_HORSE": 26, + "OT_STRUCTURE": 27, + "OT_HOUSING_TEXTURE": 28, + "OT_PLANT": 29 + } }, - "m_volume": { - "type": "float", - "id": 5, - "offset": 304, - "flags": 7, + "m_sIcon": { + "type": "std::string", + "id": 9, + "offset": 208, + "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1162855023 + "hash": 2306259831 }, - "m_loopCount": { - "type": "int", - "id": 6, - "offset": 308, + "m_equipRequirements": { + "type": "class RequirementList*", + "id": 10, + "offset": 280, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 865634717 + "pointer": true, + "hash": 2762617226 }, - "m_minimumFalloff": { - "type": "float", - "id": 7, - "offset": 328, + "m_purchaseRequirements": { + "type": "class RequirementList*", + "id": 11, + "offset": 288, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 355697197 + "pointer": true, + "hash": 3174641793 }, - "m_maximumFalloff": { + "m_equipEffects": { + "type": "class GameEffectInfo*", + "id": 12, + "offset": 296, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 836628351 + }, + "m_baseCost": { "type": "float", - "id": 8, - "offset": 332, + "id": 13, + "offset": 312, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2210192367 + "hash": 1565352651 }, - "m_animDriven": { - "type": "bool", - "id": 9, - "offset": 392, + "m_creditsCost": { + "type": "float", + "id": 14, + "offset": 320, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 398394720 + "hash": 805514974 }, - "m_inverted": { - "type": "bool", - "id": 10, - "offset": 397, + "m_avatarInfo": { + "type": "class AvatarItemInfoBase*", + "id": 15, + "offset": 328, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1034821044 + "pointer": true, + "hash": 2627321299 }, - "m_fRangeScale": { - "type": "float", - "id": 11, - "offset": 512, + "m_avatarFlags": { + "type": "std::string", + "id": 16, + "offset": 336, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 1749294034 + "hash": 2347762759 }, - "m_fAttenuationFactor": { - "type": "float", - "id": 12, - "offset": 516, + "m_itemLimit": { + "type": "int", + "id": 17, + "offset": 316, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 273292776 + "hash": 1799746856 }, - "m_eAttenuationType": { - "type": "enum PositionInfoAttenuationType", - "id": 13, - "offset": 520, - "flags": 2097159, + "m_holidayFlag": { + "type": "std::string", + "id": 18, + "offset": 352, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2427193304, - "enum_options": { - "Standard": 0, - "Unit Range Power": 1 - } + "hash": 2994795359 }, - "m_vPositions": { - "type": "class Vector3D", - "id": 14, - "offset": 528, - "flags": 7, - "container": "Vector", - "dynamic": true, + "m_itemSetBonusTemplateID": { + "type": "unsigned int", + "id": 19, + "offset": 384, + "flags": 33554439, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 3599600160 + "hash": 1316835672 }, - "m_animationName": { - "type": "std::string", - "id": 15, - "offset": 688, + "m_numPrimaryColors": { + "type": "int", + "id": 20, + "offset": 428, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3393414044 - } - } - }, - "1663987506": { - "name": "class ObjStateTransition", - "bases": [ - "PropertyClass" - ], - "hash": 1663987506, - "properties": { - "m_targetState": { - "type": "std::string", - "id": 0, - "offset": 72, + "hash": 981103872 + }, + "m_numSecondaryColors": { + "type": "int", + "id": 21, + "offset": 432, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2472683907 + "hash": 1310416868 }, - "m_transitionState": { - "type": "std::string", - "id": 1, - "offset": 104, + "m_numPatterns": { + "type": "int", + "id": 22, + "offset": 436, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2166469639 - } - } - }, - "1663896733": { - "name": "class PvPStatueBehaviorTemplate", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 1663896733, - "properties": { - "m_behaviorName": { + "hash": 953162171 + }, + "m_school": { "type": "std::string", - "id": 0, - "offset": 72, + "id": 23, + "offset": 392, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3130754092 + "hash": 2438566051 }, - "m_league": { - "type": "std::string", - "id": 1, - "offset": 120, + "m_arenaPointCost": { + "type": "int", + "id": 24, + "offset": 440, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2166730062 + "hash": 1819621796 }, - "m_rank": { + "m_pvpCurrencyCost": { "type": "int", - "id": 2, - "offset": 152, + "id": 25, + "offset": 444, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 219803942 + "hash": 645595444 }, - "m_refreshRateSec": { + "m_pvpTourneyCurrencyCost": { "type": "int", - "id": 3, - "offset": 156, + "id": 26, + "offset": 448, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 418402320 + "hash": 517874954 }, - "m_groundOffset": { - "type": "float", - "id": 4, - "offset": 160, + "m_rank": { + "type": "int", + "id": 27, + "offset": 424, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 684524077 + "hash": 219803942 }, - "m_yaw": { - "type": "float", - "id": 5, - "offset": 164, + "m_boyIconIndex": { + "type": "int", + "id": 28, + "offset": 452, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 357256328 + "hash": 802140453 }, - "m_showNametag": { - "type": "bool", - "id": 6, - "offset": 168, + "m_girlIconIndex": { + "type": "int", + "id": 29, + "offset": 456, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 584664753 + "hash": 832706793 }, - "m_showInGrace": { - "type": "bool", - "id": 7, - "offset": 169, + "m_leashOffsetOverride": { + "type": "class SharedPointer", + "id": 30, + "offset": 464, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1033917517 + "pointer": true, + "hash": 1692586788 }, - "m_showActive": { - "type": "bool", - "id": 8, - "offset": 170, - "flags": 7, + "m_rarity": { + "type": "enum RarityType", + "id": 31, + "offset": 460, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 685431312 - }, - "m_scale": { - "type": "float", - "id": 9, - "offset": 172, + "hash": 2253792108, + "enum_options": { + "RT_COMMON": 0, + "RT_UNCOMMON": 1, + "RT_RARE": 2, + "RT_ULTRARARE": 3, + "RT_EPIC": 4 + } + } + } + }, + "544484310": { + "name": "class ResAddReagent*", + "bases": [ + "ResultSourceType", + "Result", + "PropertyClass" + ], + "hash": 544484310, + "properties": { + "m_sourceType": { + "type": "std::string", + "id": 0, + "offset": 80, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 899693439 + "hash": 2305508654 }, - "m_alpha": { - "type": "float", - "id": 10, - "offset": 176, - "flags": 7, + "m_zoneLevelMax": { + "type": "unsigned int", + "id": 1, + "offset": 76, + "flags": 263, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 878686493 + "hash": 1028933895 }, - "m_animDelaySec": { - "type": "float", - "id": 11, - "offset": 180, - "flags": 7, + "m_zoneLevelMin": { + "type": "unsigned int", + "id": 2, + "offset": 72, + "flags": 263, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2131058854 + "hash": 1028934149 }, - "m_animChance": { - "type": "float", - "id": 12, - "offset": 184, - "flags": 7, + "m_templateID": { + "type": "gid", + "id": 3, + "offset": 112, + "flags": 33554439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 434823806 + "hash": 1075328001 }, - "m_animList": { - "type": "std::string", - "id": 13, - "offset": 192, + "m_quantity": { + "type": "int", + "id": 4, + "offset": 120, "flags": 7, - "container": "List", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 2531745852 + "hash": 169215289 } } }, - "1245144734": { - "name": "class SharedPointer", + "985119122": { + "name": "class BadgeButton", "bases": [ - "InventoryPageWindow::InventoryItem", "ControlCheckBox", "ControlButton", "Window", "PropertyClass" ], - "hash": 1245144734, + "hash": 985119122, "properties": { "m_sName": { "type": "std::string", @@ -654756,126 +610755,17 @@ "singleton": false, "pointer": true, "hash": 1609188685 - }, - "m_pEquipNormalState": { - "type": "class SharedPointer", - "id": 43, - "offset": 976, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1322058516 - }, - "m_pEquipPressState": { - "type": "class SharedPointer", - "id": 44, - "offset": 992, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3019605144 - }, - "m_pEquipHighlightState": { - "type": "class SharedPointer", - "id": 45, - "offset": 1008, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2559056739 - }, - "m_pEquipCheckState": { - "type": "class SharedPointer", - "id": 46, - "offset": 1024, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2420681417 - }, - "m_pEquipCheckPressState": { - "type": "class SharedPointer", - "id": 47, - "offset": 1040, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2063281462 - }, - "m_pEquipCheckHighlightState": { - "type": "class SharedPointer", - "id": 48, - "offset": 1056, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2990990081 - } - } - }, - "2050919557": { - "name": "class FishingBehaviorBase*", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 2050919557, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_caughtFishList": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 1, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2107365240 - }, - "m_fishHistoryList": { - "type": "class SharedPointer", - "id": 2, - "offset": 128, - "flags": 1, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 3741999493 } } }, - "96849752": { - "name": "class PvPCurrencyBonusLootInfo*", + "543861847": { + "name": "class SharedPointer", "bases": [ "LootInfo", "LootInfoBase", "PropertyClass" ], - "hash": 96849752, + "hash": 543861847, "properties": { "m_lootType": { "type": "enum LootInfo::LOOT_TYPE", @@ -654920,7 +610810,7 @@ "LOOT_TYPE_FURNITURE_ESSENCE": 30 } }, - "m_pvpCurrencyBonusAmount": { + "m_experience": { "type": "int", "id": 1, "offset": 80, @@ -654929,240 +610819,244 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 447030870 + "hash": 759357570 } } }, - "1245088141": { - "name": "class SharedPointer", + "982801654": { + "name": "class TournamentConfig", "bases": [ - "Window", "PropertyClass" ], - "hash": 1245088141, + "hash": 982801654, "properties": { - "m_sName": { + "m_principalTournamentNames": { "type": "std::string", "id": 0, "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, + "flags": 268435463, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 2306437263 + "hash": 3082525214, + "enum_options": { + "__BASECLASS": "TournamentTemplate" + } }, - "m_Children": { - "type": "class SharedPointer", + "m_temporaryTournamentNames": { + "type": "std::string", "id": 1, - "offset": 112, - "flags": 65667, - "container": "Vector", + "offset": 96, + "flags": 268435463, + "container": "List", "dynamic": true, "singleton": false, - "pointer": true, - "hash": 2621225959 + "pointer": false, + "hash": 1792424127, + "enum_options": { + "__BASECLASS": "TournamentTemplate" + } }, - "m_Style": { - "type": "unsigned int", + "m_observerTimeout": { + "type": "int", "id": 2, - "offset": 152, - "flags": 1048583, + "offset": 76, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "SCALE_CHILDREN": 2, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "FOCUS_LOCKED": 64, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152 - } + "hash": 562500777 }, - "m_Flags": { - "type": "unsigned int", + "m_forfeitTimeout": { + "type": "int", "id": 3, - "offset": 156, - "flags": 1048583, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } + "hash": 688716240 }, - "m_Window": { - "type": "class Rect", + "m_activeSeason": { + "type": "unsigned int", "id": 4, - "offset": 160, - "flags": 135, + "offset": 112, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3105139380 + "hash": 277598322 }, - "m_fTargetAlpha": { - "type": "float", + "m_maxUpdateTime": { + "type": "unsigned int", "id": 5, - "offset": 212, - "flags": 135, + "offset": 116, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1809129834 + "hash": 1535609605 }, - "m_fDisabledAlpha": { - "type": "float", + "m_maxUpdateCount": { + "type": "unsigned int", "id": 6, - "offset": 216, - "flags": 135, + "offset": 120, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1389987675 + "hash": 937799039 }, - "m_fAlpha": { - "type": "float", + "m_cacheUpdateTime": { + "type": "unsigned int", "id": 7, - "offset": 208, - "flags": 65671, + "offset": 124, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 482130755 + "hash": 887219635 }, - "m_pWindowStyle": { - "type": "class SharedPointer", + "m_bracketScheduleFilename": { + "type": "std::string", "id": 8, - "offset": 232, - "flags": 135, + "offset": 128, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3623628394 + "pointer": false, + "hash": 3625222117 }, - "m_sHelp": { - "type": "std::wstring", + "m_bracketStringTableFilename": { + "type": "std::string", "id": 9, - "offset": 248, - "flags": 4194439, + "offset": 160, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2102211316 + "hash": 2974204087 }, - "m_sScript": { - "type": "std::string", + "m_bracketRewardsPlaceMappingList": { + "type": "class SharedPointer", "id": 10, - "offset": 352, - "flags": 135, + "offset": 192, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 3271398156 + } + } + }, + "1421568713": { + "name": "class LoyaltyConfig*", + "bases": [ + "PropertyClass" + ], + "hash": 1421568713, + "properties": { + "m_loyaltyTierCount": { + "type": "int", + "id": 0, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1846695875 + "hash": 1322604645 }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, + "m_loyaltyTierDemotionTrigger": { + "type": "int", + "id": 1, + "offset": 76, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3389835433 + "hash": 1427712879 }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, + "m_loyaltyTierLevelDuration": { + "type": "int", + "id": 2, + "offset": 80, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2547159940 - }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, + "hash": 599216410 + } + } + }, + "1823441807": { + "name": "class ClientExpansionBehavior", + "bases": [ + "ExpansionBehavior", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1823441807, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1513510520 + "hash": 223437287 }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, + "m_bankExpansions": { + "type": "int", + "id": 1, + "offset": 112, + "flags": 63, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 2587533771 + "hash": 1369075454 }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, + "m_friendListExpansions": { + "type": "int", + "id": 2, + "offset": 116, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3091503757 + "hash": 1057398198 } } }, - "1664247340": { - "name": "struct CharacterChatStatsByState*", + "978661103": { + "name": "class ClientCreateHangingEffectActorCinematicAction", "bases": [ + "CreateHangingEffectActorCinematicAction", + "ActorCinematicAction", + "CinematicAction", "PropertyClass" ], - "hash": 1664247340, + "hash": 978661103, "properties": { - "m_state": { - "type": "unsigned int", + "m_timeOffset": { + "type": "float", "id": 0, "offset": 72, "flags": 7, @@ -655170,41 +611064,52 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 1021505934 + "hash": 2237098605 }, - "m_chatID": { - "type": "unsigned int", + "m_actor": { + "type": "std::string", "id": 1, - "offset": 76, + "offset": 80, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 531784794 + "hash": 2285866132 }, - "m_usage": { - "type": "unsigned int", + "m_cloaked": { + "type": "bool", "id": 2, - "offset": 80, + "offset": 120, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1023841410 + "hash": 7349510 + }, + "m_newActorName": { + "type": "std::string", + "id": 3, + "offset": 128, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2029131039 } } }, - "1664247330": { - "name": "struct CharacterChatStatsByState", + "1408483926": { + "name": "class SharedPointer", "bases": [ "PropertyClass" ], - "hash": 1664247330, + "hash": 1408483926, "properties": { - "m_state": { - "type": "unsigned int", + "m_numTemplates": { + "type": "int", "id": 0, "offset": 72, "flags": 7, @@ -655212,10 +611117,10 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 1021505934 + "hash": 837442809 }, - "m_chatID": { - "type": "unsigned int", + "m_sellMod": { + "type": "float", "id": 1, "offset": 76, "flags": 7, @@ -655223,10 +611128,10 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 531784794 + "hash": 1154061607 }, - "m_usage": { - "type": "unsigned int", + "m_buyMod": { + "type": "float", "id": 2, "offset": 80, "flags": 7, @@ -655234,1042 +611139,955 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 1023841410 + "hash": 387686375 } } }, - "2052681941": { - "name": "class BattlegroundTemplateChat*", + "544484305": { + "name": "class ResAddReagent", "bases": [ + "ResultSourceType", + "Result", "PropertyClass" ], - "hash": 2052681941, + "hash": 544484305, "properties": { - "m_projectID": { - "type": "unsigned int", + "m_sourceType": { + "type": "std::string", "id": 0, - "offset": 72, + "offset": 80, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1263221425 + "hash": 2305508654 }, - "m_countdownSeconds": { - "type": "float", + "m_zoneLevelMax": { + "type": "unsigned int", "id": 1, "offset": 76, - "flags": 7, + "flags": 263, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 255072071 + "hash": 1028933895 }, - "m_matchSize": { - "type": "int", + "m_zoneLevelMin": { + "type": "unsigned int", "id": 2, - "offset": 80, - "flags": 7, + "offset": 72, + "flags": 263, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 563704930 + "hash": 1028934149 }, - "m_cancelCooldownSeconds": { - "type": "int", + "m_templateID": { + "type": "gid", "id": 3, - "offset": 84, - "flags": 7, + "offset": 112, + "flags": 33554439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1074662868 + "hash": 1075328001 }, - "m_teamCount": { + "m_quantity": { "type": "int", "id": 4, - "offset": 88, + "offset": 120, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1614476394 - }, - "m_matchmakingList": { - "type": "class SharedPointer", - "id": 5, - "offset": 96, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 3012888769 + "hash": 169215289 } } }, - "98470457": { - "name": "class PublicEquippedJewelInfo", + "1823435187": { + "name": "class ProcessGlobalCinematicStageTemplate*", "bases": [ + "CinematicStageTemplate", "PropertyClass" ], - "hash": 98470457, + "hash": 1823435187, "properties": { - "m_infoPairs": { - "type": "class SharedPointer", + "m_name": { + "type": "std::string", "id": 0, "offset": 72, - "flags": 31, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1717359772 + }, + "m_duration": { + "type": "float", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 920323453 + }, + "m_actions": { + "type": "class SharedPointer", + "id": 2, + "offset": 112, + "flags": 7, "container": "List", "dynamic": true, "singleton": false, "pointer": true, - "hash": 1522101428 + "hash": 1380578687 }, - "m_bSocketsLocked": { - "type": "bool", - "id": 1, - "offset": 88, - "flags": 31, + "m_stageRelationships": { + "type": "class SharedPointer", + "id": 3, + "offset": 128, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 499983354 + }, + "m_sound": { + "type": "std::string", + "id": 4, + "offset": 152, + "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1073026659 + "hash": 2307644996 } } }, - "1245165879": { - "name": "class ClientToggleInterfaceControlCinematicAction*", + "120550236": { + "name": "class SharedPointer", "bases": [ - "ToggleInterfaceControlCinematicAction", - "CinematicAction", "PropertyClass" ], - "hash": 1245165879, + "hash": 120550236, "properties": { - "m_timeOffset": { - "type": "float", + "m_internalID": { + "type": "unsigned int", "id": 0, "offset": 72, - "flags": 7, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 + "hash": 1854540375 }, - "m_maximumDurationInSeconds": { - "type": "float", + "m_categoryID": { + "type": "unsigned int", "id": 1, - "offset": 80, - "flags": 7, + "offset": 76, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1457214913 + "hash": 1382795736 }, - "m_hideUI": { - "type": "bool", + "m_removeAtPointValue": { + "type": "float", "id": 2, - "offset": 84, - "flags": 7, + "offset": 80, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 519818283 + "hash": 2112196961 }, - "m_stopMovement": { - "type": "bool", + "m_expireTime": { + "type": "unsigned int", "id": 3, - "offset": 85, - "flags": 7, + "offset": 84, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1752496036 + "hash": 1836304873 } } }, - "2052493990": { - "name": "class CollisionBehaviorTemplate", + "978238671": { + "name": "class SharedPointer", "bases": [ - "BehaviorTemplate", + "GameObjectTemplate", + "CoreTemplate", "PropertyClass" ], - "hash": 2052493990, + "hash": 978238671, "properties": { - "m_behaviorName": { - "type": "std::string", + "m_behaviors": { + "type": "class BehaviorTemplate*", "id": 0, "offset": 72, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "Vector", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 3130754092 + "pointer": true, + "hash": 1197808594 }, - "m_walkableCollisionFilename": { + "m_objectName": { "type": "std::string", "id": 1, - "offset": 120, - "flags": 131079, + "offset": 96, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2223282859 + "hash": 2154940147 }, - "m_solidCollisionFilename": { - "type": "std::string", + "m_templateID": { + "type": "unsigned int", "id": 2, - "offset": 152, - "flags": 131079, + "offset": 128, + "flags": 16777223, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3292753187 + "hash": 1286746870 }, - "m_clickableCollisionFilename": { - "type": "std::string", + "m_visualID": { + "type": "unsigned int", "id": 3, - "offset": 184, - "flags": 131335, + "offset": 132, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1964485570 + "hash": 1118778894 }, - "m_bAutoClickBox": { - "type": "bool", + "m_adjectiveList": { + "type": "std::string", "id": 4, - "offset": 216, + "offset": 248, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 13289565 + "hash": 3195213318 }, - "m_bDisableCollision": { + "m_exemptFromAOI": { "type": "bool", "id": 5, - "offset": 217, + "offset": 240, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2086036629 + "hash": 1457879059 }, - "m_bClientOnly": { - "type": "bool", + "m_displayName": { + "type": "std::string", "id": 6, - "offset": 218, - "flags": 7, + "offset": 168, + "flags": 8388615, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1918653686 - } - } - }, - "97190451": { - "name": "class ChaseCamController", - "bases": [ - "CameraController", - "PropertyClass" - ], - "hash": 97190451, - "properties": {} - }, - "97162663": { - "name": "class MonsterMagicXPConfig*", - "bases": [ - "PropertyClass" - ], - "hash": 97162663, - "properties": { - "m_levelInfo": { - "type": "class MonsterMagicLevelInfo*", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2337455676 + "hash": 2446900370 }, - "m_maxLevel": { - "type": "unsigned char", - "id": 1, - "offset": 88, - "flags": 7, + "m_description": { + "type": "std::string", + "id": 7, + "offset": 136, + "flags": 8388615, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 783962734 - } - } - }, - "1664248606": { - "name": "class DynaModList*", - "bases": [ - "PropertyClass" - ], - "hash": 1664248606, - "properties": { - "m_allMods": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 27, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 3780396482 - } - } - }, - "97162639": { - "name": "class MonsterMagicXPConfig", - "bases": [ - "PropertyClass" - ], - "hash": 97162639, - "properties": { - "m_levelInfo": { - "type": "class MonsterMagicLevelInfo*", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2337455676 + "hash": 1649374815 }, - "m_maxLevel": { - "type": "unsigned char", - "id": 1, - "offset": 88, - "flags": 7, + "m_nObjectType": { + "type": "enum ObjectType", + "id": 8, + "offset": 200, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 783962734 - } - } - }, - "1252946711": { - "name": "class AlchemyStationOption", - "bases": [ - "ServiceOptionBase", - "PropertyClass" - ], - "hash": 1252946711, - "properties": { - "m_serviceName": { + "hash": 2118905880, + "enum_options": { + "OT_UNDEFINED": 0, + "OT_PLAYER": 1, + "OT_NPC": 2, + "OT_PROP": 3, + "OT_OBJECT": 4, + "OT_HOUSE": 5, + "OT_KEY": 6, + "OT_OLD_KEY": 7, + "OT_DEED": 8, + "OT_MAIL": 9, + "OT_RECIPE": 17, + "OT_EQUIP_HEAD": 10, + "OT_EQUIP_CHEST": 11, + "OT_EQUIP_LEGS": 12, + "OT_EQUIP_HANDS": 13, + "OT_EQUIP_FINGER": 14, + "OT_EQUIP_FEET": 15, + "OT_EQUIP_EAR": 16, + "OT_BUILDING_BLOCK": 18, + "OT_BUILDING_BLOCK_SOLID": 19, + "OT_GOLF": 20, + "OT_DOOR": 21, + "OT_PET": 22, + "OT_FABRIC": 23, + "OT_WINDOW": 24, + "OT_ROOF": 25, + "OT_HORSE": 26, + "OT_STRUCTURE": 27, + "OT_HOUSING_TEXTURE": 28, + "OT_PLANT": 29 + } + }, + "m_sIcon": { "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, + "id": 9, + "offset": 208, + "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2206028813 + "hash": 2306259831 }, - "m_iconKey": { + "m_lootTable": { "type": "std::string", - "id": 1, - "offset": 168, - "flags": 31, - "container": "Static", - "dynamic": false, + "id": 10, + "offset": 280, + "flags": 268435463, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 2457138637 + "hash": 2539512673, + "enum_options": { + "__BASECLASS": "LootTable" + } }, - "m_displayKey": { + "m_deathParticles": { "type": "std::string", - "id": 2, - "offset": 104, - "flags": 31, + "id": 11, + "offset": 296, + "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3023276954 + "hash": 3201049672 }, - "m_serviceIndex": { - "type": "unsigned int", - "id": 3, - "offset": 204, - "flags": 31, + "m_deathSound": { + "type": "std::string", + "id": 12, + "offset": 328, + "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2103126710 + "hash": 1865613610 }, - "m_forceInteract": { - "type": "bool", - "id": 4, - "offset": 200, - "flags": 31, + "m_hitSound": { + "type": "std::string", + "id": 13, + "offset": 360, + "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1705789564 - } - } - }, - "2052795687": { - "name": "class IngredientTracking", - "bases": [ - "PropertyClass" - ], - "hash": 2052795687, - "properties": { - "m_ingredientID": { - "type": "gid", - "id": 0, - "offset": 72, - "flags": 7, + "hash": 2746656777 + }, + "m_castSound": { + "type": "std::string", + "id": 14, + "offset": 392, + "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1616797422 + "hash": 3343064815 }, - "m_quantity": { - "type": "int", - "id": 1, - "offset": 80, - "flags": 7, + "m_aggroSound": { + "type": "std::string", + "id": 15, + "offset": 424, + "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 169215289 + "hash": 3421949940 }, - "m_sufficient": { - "type": "bool", - "id": 2, - "offset": 96, + "m_primarySchoolName": { + "type": "std::string", + "id": 16, + "offset": 456, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 92688739 - } - } - }, - "1247650116": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1247650116, - "properties": { - "m_name": { + "hash": 3211370408 + }, + "m_locationPreference": { "type": "std::string", - "id": 0, - "offset": 72, + "id": 17, + "offset": 488, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1717359772 + "hash": 2817699507 }, - "m_source": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 131079, + "m_leashOffsetOverride": { + "type": "class SharedPointer", + "id": 18, + "offset": 528, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 2453267148 + "pointer": true, + "hash": 1692586788 } } }, - "1246183594": { - "name": "class LootInfoBase", - "bases": [ - "PropertyClass" - ], - "hash": 1246183594, - "properties": {} - }, - "1664748859": { - "name": "class HUDWindow*", + "1399461061": { + "name": "class CrownShopData*", "bases": [ - "Window", "PropertyClass" ], - "hash": 1664748859, + "hash": 1399461061, "properties": { - "m_sName": { - "type": "std::string", + "m_items": { + "type": "class SharedPointer", "id": 0, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, + "offset": 72, + "flags": 31, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 2306437263 + "pointer": true, + "hash": 2089538472 }, - "m_Children": { - "type": "class SharedPointer", + "m_crownShopLayout": { + "type": "class SharedPointer", "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, + "offset": 88, + "flags": 31, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": true, - "hash": 2621225959 + "hash": 2296174117 }, - "m_Style": { - "type": "unsigned int", + "m_recomendedItems": { + "type": "class SharedPointer", "id": 2, - "offset": 152, - "flags": 1048583, + "offset": 104, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "SCALE_CHILDREN": 2, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "FOCUS_LOCKED": 64, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152 - } + "pointer": true, + "hash": 971256066 }, - "m_Flags": { - "type": "unsigned int", + "m_crownShopSegReqsSummary": { + "type": "class SharedPointer", "id": 3, - "offset": 156, - "flags": 1048583, + "offset": 120, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } + "pointer": true, + "hash": 2152734186 }, - "m_Window": { - "type": "class Rect", + "m_wishlistMaxSize": { + "type": "int", "id": 4, - "offset": 160, - "flags": 135, + "offset": 136, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3105139380 + "hash": 590778194 }, - "m_fTargetAlpha": { - "type": "float", + "m_wishlistSBExpansionSize": { + "type": "int", "id": 5, - "offset": 212, - "flags": 135, + "offset": 140, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1809129834 - }, - "m_fDisabledAlpha": { + "hash": 1131167734 + } + } + }, + "120310194": { + "name": "class ClientRegisterActorCinematicAction*", + "bases": [ + "RegisterActorCinematicAction", + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 120310194, + "properties": { + "m_timeOffset": { "type": "float", - "id": 6, - "offset": 216, - "flags": 135, + "id": 0, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1389987675 + "hash": 2237098605 }, - "m_fAlpha": { - "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 482130755 + "hash": 2285866132 }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, + "m_zoneTag": { + "type": "std::string", + "id": 2, + "offset": 120, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3623628394 + "pointer": false, + "hash": 3405382643 }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, + "m_bStartHidden": { + "type": "bool", + "id": 3, + "offset": 152, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2102211316 - }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, + "hash": 1939845615 + } + } + }, + "977663716": { + "name": "class ShoppingSellModifiers*", + "bases": [ + "PropertyClass" + ], + "hash": 977663716, + "properties": { + "m_sellMultiplier": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1846695875 + "hash": 1673304590 }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, + "m_sellAdditive": { + "type": "int", + "id": 1, + "offset": 76, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3389835433 - }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, + "hash": 776461780 + } + } + }, + "1397593676": { + "name": "class AttachEffectToTurnIndicatorCinematicAction*", + "bases": [ + "CinematicAction", + "PropertyClass" + ], + "hash": 1397593676, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2547159940 + "hash": 2237098605 }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, + "m_minDuration": { + "type": "float", + "id": 1, + "offset": 80, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2587533771 + "hash": 1733171553 }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, + "m_assetName": { + "type": "std::string", + "id": 2, + "offset": 88, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3091503757 + "hash": 1513131580 } } }, - "1246147275": { - "name": "class ClientStopBacklashRotationEffectCinematicAction", + "1396967034": { + "name": "class ClientQuantityBehavior*", "bases": [ - "StopBacklashRotationEffectCinematicAction", - "ActorCinematicAction", - "CinematicAction", + "BehaviorInstance", "PropertyClass" ], - "hash": 1246147275, + "hash": 1396967034, "properties": { - "m_timeOffset": { - "type": "float", + "m_behaviorTemplateNameID": { + "type": "unsigned int", "id": 0, - "offset": 72, - "flags": 7, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 + "hash": 223437287 }, - "m_actor": { - "type": "std::string", + "m_quantity": { + "type": "int", "id": 1, - "offset": 80, - "flags": 7, + "offset": 112, + "flags": 27, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2285866132 + "hash": 169215289 } } }, - "1664491959": { - "name": "class ControlBanner*", + "544829427": { + "name": "class SharedPointer", "bases": [ - "ControlSprite", - "Window", + "ProvidePetPower", + "GameEffectBase", "PropertyClass" ], - "hash": 1664491959, + "hash": 544829427, "properties": { - "m_sName": { - "type": "std::string", + "m_currentTickCount": { + "type": "double", "id": 0, "offset": 80, - "flags": 135, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2306437263 + "hash": 2533274692 }, - "m_Children": { - "type": "class SharedPointer", + "m_effectNameID": { + "type": "unsigned int", "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, + "offset": 96, + "flags": 63, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2621225959 + "pointer": false, + "hash": 1204067144 }, - "m_Style": { - "type": "unsigned int", + "m_bIsOnPet": { + "type": "bool", "id": 2, - "offset": 152, - "flags": 1048583, + "offset": 73, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "SCALE_CHILDREN": 2, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "FOCUS_LOCKED": 64, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152 - } + "hash": 522593303 }, - "m_Flags": { - "type": "unsigned int", + "m_originatorID": { + "type": "gid", "id": 3, - "offset": 156, - "flags": 1048583, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648, - "ONE_SHOT": 8388608, - "FLIPPED_HORIZONTAL": 16777216, - "FLIPPED_VERTICAL": 33554432 - } + "hash": 1131810019 }, - "m_Window": { - "type": "class Rect", + "m_itemSlotID": { + "type": "unsigned int", "id": 4, - "offset": 160, - "flags": 135, + "offset": 112, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3105139380 + "hash": 1895747595 }, - "m_fTargetAlpha": { - "type": "float", + "m_internalID": { + "type": "int", "id": 5, - "offset": 212, - "flags": 135, + "offset": 92, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1809129834 + "hash": 1643137924 }, - "m_fDisabledAlpha": { - "type": "float", + "m_endTime": { + "type": "unsigned int", "id": 6, - "offset": 216, - "flags": 135, + "offset": 88, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1389987675 + "hash": 716479635 }, - "m_fAlpha": { - "type": "float", + "m_happinessCost": { + "type": "int", "id": 7, - "offset": 208, - "flags": 65671, + "offset": 128, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 482130755 + "hash": 1107125310 }, - "m_pWindowStyle": { - "type": "class SharedPointer", + "m_cooldown": { + "type": "int", "id": 8, - "offset": 232, - "flags": 135, + "offset": 132, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3623628394 + "pointer": false, + "hash": 1897549823 }, - "m_sHelp": { - "type": "std::wstring", + "m_usesPerCombat": { + "type": "int", "id": 9, - "offset": 248, - "flags": 4194439, + "offset": 136, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2102211316 + "hash": 1445312791 }, - "m_sScript": { - "type": "std::string", + "m_combatTalent": { + "type": "bool", "id": 10, - "offset": 352, - "flags": 135, + "offset": 140, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1846695875 + "hash": 2113651857 }, - "m_Offset": { - "type": "class Point", + "m_triggerName": { + "type": "std::string", "id": 11, - "offset": 192, - "flags": 135, + "offset": 144, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3389835433 + "hash": 3100183568 }, - "m_Scale": { - "type": "class Point", + "m_extra1": { + "type": "std::string", "id": 12, - "offset": 200, - "flags": 135, + "offset": 176, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2547159940 + "hash": 1916008880 }, - "m_sTip": { - "type": "std::wstring", + "m_extra2": { + "type": "std::string", "id": 13, - "offset": 392, - "flags": 4194439, + "offset": 208, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1513510520 + "hash": 1916008881 }, - "m_BubbleList": { - "type": "class WindowBubble", + "m_lootTableName": { + "type": "std::string", "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, + "offset": 240, + "flags": 31, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 2587533771 + "hash": 2333333378 }, - "m_ParentOffset": { - "type": "class Rect", + "m_powerDisplayName": { + "type": "std::string", "id": 15, - "offset": 176, - "flags": 135, + "offset": 272, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3091503757 + "hash": 2338393887 }, - "m_pMaterial": { - "type": "class SharedPointer", + "m_requirementList": { + "type": "class SharedPointer", "id": 16, - "offset": 592, - "flags": 135, + "offset": 304, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": true, - "hash": 3479277078 + "hash": 3783909798 }, - "m_fRotation": { - "type": "float", + "m_requirementFailedString": { + "type": "std::string", "id": 17, - "offset": 608, - "flags": 135, + "offset": 320, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1175400173 + "hash": 2051573416 }, - "m_Color": { - "type": "class Color", + "m_noPVP": { + "type": "bool", "id": 18, - "offset": 584, - "flags": 262279, + "offset": 356, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1753714077 + "hash": 806455846 }, - "m_textColor": { - "type": "class Color", + "m_rampUp": { + "type": "int", "id": 19, - "offset": 612, - "flags": 262279, + "offset": 360, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2528109250 + "hash": 899539119 }, - "m_textComponent": { - "type": "class TextComponent", + "m_description": { + "type": "std::string", "id": 20, - "offset": 616, - "flags": 135, + "offset": 368, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3491704390 + "hash": 1649374815 + }, + "m_myTurn": { + "type": "bool", + "id": 21, + "offset": 400, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 733913410 } } }, - "2056787553": { - "name": "class ClientShadowCreatureLevelTransitionCinematicAction*", + "1823552898": { + "name": "class std::vector >", + "bases": [], + "hash": 1823552898, + "properties": {} + }, + "120367120": { + "name": "class SharedPointer", "bases": [ - "ShadowCreatureLevelTransitionCinematicAction", - "ActorCinematicAction", - "CinematicAction", + "BehaviorTemplate", "PropertyClass" ], - "hash": 2056787553, + "hash": 120367120, "properties": { - "m_timeOffset": { - "type": "float", + "m_behaviorName": { + "type": "std::string", "id": 0, "offset": 72, "flags": 7, @@ -656277,30 +612095,150 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 + "hash": 3130754092 }, - "m_actor": { + "m_fidgetStateInfo": { + "type": "class FidgetStateInfo", + "id": 1, + "offset": 120, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1986859062 + } + } + }, + "1394633293": { + "name": "class ReqIsSchool*", + "bases": [ + "ConditionalSpellEffectRequirement", + "Requirement", + "PropertyClass" + ], + "hash": 1394633293, + "properties": { + "m_applyNOT": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1746328074, + "enum_options": { + "__DEFAULT": 0 + } + }, + "m_operator": { + "type": "enum Requirement::Operator", + "id": 1, + "offset": 76, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2672792317, + "enum_options": { + "ROP_AND": 0, + "ROP_OR": 1, + "__DEFAULT": "ROP_AND" + } + }, + "m_targetType": { + "type": "enum ConditionalSpellEffectRequirement::RequirementTarget", + "id": 2, + "offset": 80, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547737902, + "enum_options": { + "RT_Caster": 0, + "RT_Target": 1 + } + }, + "m_magicSchoolName": { "type": "std::string", + "id": 3, + "offset": 88, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2939083077 + } + } + }, + "544493257": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 544493257, + "properties": { + "m_houseTemplateID": { + "type": "unsigned int", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2326023642 + }, + "m_rank": { + "type": "unsigned short", "id": 1, + "offset": 76, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 773386388 + }, + "m_visitCount": { + "type": "unsigned short", + "id": 2, + "offset": 78, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 978951904 + }, + "m_timeRemaining": { + "type": "unsigned int", + "id": 3, "offset": 80, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2285866132 + "hash": 1238700214 } } }, - "97456582": { - "name": "class ClientFaceTargetActorCinematicAction", + "978661098": { + "name": "class ClientCreateHangingEffectActorCinematicAction*", "bases": [ - "FaceTargetActorCinematicAction", + "CreateHangingEffectActorCinematicAction", "ActorCinematicAction", "CinematicAction", "PropertyClass" ], - "hash": 97456582, + "hash": 978661098, "properties": { "m_timeOffset": { "type": "float", @@ -656324,7 +612262,7 @@ "pointer": false, "hash": 2285866132 }, - "m_bCaster": { + "m_cloaked": { "type": "bool", "id": 2, "offset": 120, @@ -656333,677 +612271,618 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 1390351511 + "hash": 7349510 + }, + "m_newActorName": { + "type": "std::string", + "id": 3, + "offset": 128, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2029131039 } } }, - "1664491954": { - "name": "class ControlBanner", + "1393380106": { + "name": "class SharedPointer", "bases": [ - "ControlSprite", - "Window", + "ZoneData", "PropertyClass" ], - "hash": 1664491954, + "hash": 1393380106, "properties": { - "m_sName": { - "type": "std::string", + "m_nType": { + "type": "enum ZoneData::Type", "id": 0, - "offset": 80, - "flags": 135, + "offset": 72, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2306437263 + "hash": 2656861130, + "enum_options": { + "ZONETYPE_INVALID": 4294967295, + "ZONETYPE_START": 0, + "ZONETYPE_STATIC": 1, + "ZONETYPE_DYNAMIC": 2 + } }, - "m_Children": { - "type": "class SharedPointer", + "m_zoneName": { + "type": "std::string", "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, + "offset": 80, + "flags": 134217735, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2621225959 + "pointer": false, + "hash": 2171167736 }, - "m_Style": { - "type": "unsigned int", + "m_zoneDisplayName": { + "type": "std::string", "id": 2, - "offset": 152, - "flags": 1048583, + "offset": 112, + "flags": 8388615, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "SCALE_CHILDREN": 2, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "FOCUS_LOCKED": 64, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152 - } + "hash": 1962339438 }, - "m_Flags": { - "type": "unsigned int", + "m_skyDomeName": { + "type": "std::string", "id": 3, - "offset": 156, - "flags": 1048583, + "offset": 144, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648, - "ONE_SHOT": 8388608, - "FLIPPED_HORIZONTAL": 16777216, - "FLIPPED_VERTICAL": 33554432 - } + "hash": 2339979448 }, - "m_Window": { - "type": "class Rect", + "m_skyLayerName": { + "type": "std::string", "id": 4, - "offset": 160, - "flags": 135, - "container": "Static", - "dynamic": false, + "offset": 184, + "flags": 131079, + "container": "Vector", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 3105139380 + "hash": 2824410256 }, - "m_fTargetAlpha": { - "type": "float", + "m_collisionFileName": { + "type": "std::string", "id": 5, - "offset": 212, - "flags": 135, + "offset": 208, + "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1809129834 + "hash": 1725365192 }, - "m_fDisabledAlpha": { - "type": "float", + "m_gamebryoSceneFileName": { + "type": "std::string", "id": 6, - "offset": 216, - "flags": 135, + "offset": 240, + "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1389987675 + "hash": 3084395168 }, - "m_fAlpha": { - "type": "float", + "m_musicFileName": { + "type": "std::string", "id": 7, - "offset": 208, - "flags": 65671, + "offset": 272, + "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 482130755 + "hash": 1817607805 }, - "m_pWindowStyle": { - "type": "class SharedPointer", + "m_spawnList": { + "type": "class SpawnPointTemplate", "id": 8, - "offset": 232, - "flags": 135, - "container": "Static", - "dynamic": false, + "offset": 304, + "flags": 7, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": true, - "hash": 3623628394 + "pointer": false, + "hash": 1063041926 }, - "m_sHelp": { - "type": "std::wstring", + "m_teleportList": { + "type": "class TeleporterTemplate", "id": 9, - "offset": 248, - "flags": 4194439, - "container": "Static", - "dynamic": false, + "offset": 320, + "flags": 7, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 2102211316 + "hash": 1031682046 }, - "m_sScript": { - "type": "std::string", + "m_locationList": { + "type": "class LocationTemplate", "id": 10, - "offset": 352, - "flags": 135, - "container": "Static", - "dynamic": false, + "offset": 336, + "flags": 7, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 1846695875 + "hash": 2114141903 }, - "m_Offset": { - "type": "class Point", + "m_objectList": { + "type": "class SharedPointer", "id": 11, - "offset": 192, - "flags": 135, - "container": "Static", - "dynamic": false, + "offset": 352, + "flags": 7, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 3389835433 + "pointer": true, + "hash": 882782852 }, - "m_Scale": { - "type": "class Point", + "m_allEffects": { + "type": "std::string", "id": 12, - "offset": 200, - "flags": 135, - "container": "Static", - "dynamic": false, + "offset": 368, + "flags": 7, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 2547159940 + "hash": 2483362772 }, - "m_sTip": { - "type": "std::wstring", + "m_healingPerMinute": { + "type": "int", "id": 13, - "offset": 392, - "flags": 4194439, + "offset": 480, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1513510520 + "hash": 782115659 }, - "m_BubbleList": { - "type": "class WindowBubble", + "m_playerPopThresh": { + "type": "int", "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, + "offset": 484, + "flags": 7, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 2587533771 + "hash": 1692004900 }, - "m_ParentOffset": { - "type": "class Rect", + "m_nSoftLimit": { + "type": "int", "id": 15, - "offset": 176, - "flags": 135, + "offset": 488, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3091503757 + "hash": 1593689635, + "enum_options": { + "__DEFAULT": 50 + } }, - "m_pMaterial": { - "type": "class SharedPointer", + "m_nHardLimit": { + "type": "int", "id": 16, - "offset": 592, - "flags": 135, + "offset": 492, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3479277078 + "pointer": false, + "hash": 1752405446, + "enum_options": { + "__DEFAULT": 100 + } }, - "m_fRotation": { + "m_farClip": { "type": "float", "id": 17, - "offset": 608, - "flags": 135, + "offset": 496, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1175400173 + "hash": 1393981304, + "enum_options": { + "__DEFAULT": 25000 + } }, - "m_Color": { - "type": "class Color", + "m_nearClipOverride": { + "type": "float", "id": 18, - "offset": 584, - "flags": 262279, + "offset": 500, + "flags": 519, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1753714077 + "hash": 1092806405, + "enum_options": { + "__DEFAULT": 1 + } }, - "m_textColor": { - "type": "class Color", + "m_defaultBackgroundColorRed": { + "type": "float", "id": 19, - "offset": 612, - "flags": 262279, + "offset": 504, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2528109250 + "hash": 1511995894 }, - "m_textComponent": { - "type": "class TextComponent", + "m_defaultBackgroundColorGreen": { + "type": "float", "id": 20, - "offset": 616, - "flags": 135, + "offset": 508, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3491704390 - } - } - }, - "2055972232": { - "name": "class SharedPointer", - "bases": [ - "ClientVisibilityBehavior", - "VisibilityBehavior", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 2055972232, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, + "hash": 2127637260 + }, + "m_defaultBackgroundColorBlue": { + "type": "float", + "id": 21, + "offset": 512, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 + "hash": 1908873795 }, - "m_showTo": { - "type": "gid", - "id": 1, - "offset": 112, - "flags": 31, - "container": "List", - "dynamic": true, + "m_fogColorRed": { + "type": "int", + "id": 22, + "offset": 516, + "flags": 7, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 947039004 + "hash": 1578810896 }, - "m_hideFrom": { - "type": "gid", - "id": 2, - "offset": 128, - "flags": 31, - "container": "List", - "dynamic": true, + "m_fogColorGreen": { + "type": "int", + "id": 23, + "offset": 520, + "flags": 7, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 642644390 + "hash": 1229332710 }, - "m_visible": { - "type": "bool", - "id": 3, - "offset": 144, - "flags": 31, + "m_fogColorBlue": { + "type": "int", + "id": 24, + "offset": 524, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 810536225 - } - } - }, - "2053962856": { - "name": "class PetSiegeGameManager*", - "bases": [ - "PropertyClass" - ], - "hash": 2053962856, - "properties": { - "m_fPetMass": { + "hash": 557754685 + }, + "m_fogDensity": { "type": "float", - "id": 0, - "offset": 76, + "id": 25, + "offset": 528, "flags": 7, "container": "Static", "dynamic": false, - "singleton": true, + "singleton": false, "pointer": false, - "hash": 1378034810 + "hash": 1170901171 }, - "m_fBounce": { + "m_fogStartDensity": { "type": "float", - "id": 1, - "offset": 92, + "id": 26, + "offset": 532, "flags": 7, "container": "Static", "dynamic": false, - "singleton": true, + "singleton": false, "pointer": false, - "hash": 179025177 + "hash": 1642636961 }, - "m_fBounceThreshold": { - "type": "float", - "id": 2, - "offset": 96, + "m_fogEnabled": { + "type": "bool", + "id": 27, + "offset": 536, "flags": 7, "container": "Static", "dynamic": false, - "singleton": true, + "singleton": false, "pointer": false, - "hash": 1371486086 + "hash": 563358906 }, - "m_fMU": { - "type": "float", - "id": 3, - "offset": 100, + "m_nObjectID": { + "type": "unsigned int", + "id": 28, + "offset": 540, "flags": 7, "container": "Static", "dynamic": false, - "singleton": true, + "singleton": false, "pointer": false, - "hash": 357234943 + "hash": 748496927 }, - "m_fERP": { - "type": "float", - "id": 4, - "offset": 104, + "m_bDisableTransitionAutoHide": { + "type": "bool", + "id": 29, + "offset": 544, "flags": 7, "container": "Static", "dynamic": false, - "singleton": true, + "singleton": false, "pointer": false, - "hash": 309542404 + "hash": 702738663 }, - "m_fCFM": { - "type": "float", - "id": 5, - "offset": 108, + "m_encounterNames": { + "type": "std::string", + "id": 30, + "offset": 384, + "flags": 268435463, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2150841410, + "enum_options": { + "__BASECLASS": "EncounterTemplate" + } + }, + "m_encounterGroup": { + "type": "std::string", + "id": 31, + "offset": 400, "flags": 7, "container": "Static", "dynamic": false, - "singleton": true, + "singleton": false, "pointer": false, - "hash": 309539827 + "hash": 2143153595 }, - "m_fContactSurfaceDepth": { - "type": "float", - "id": 6, - "offset": 112, + "m_zoneAdjectives": { + "type": "std::string", + "id": 32, + "offset": 432, "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": true, + "container": "List", + "dynamic": true, + "singleton": false, "pointer": false, - "hash": 999400231 + "hash": 3603923993 }, - "m_bAutoDisable": { + "m_zonePermissions": { + "type": "std::string", + "id": 33, + "offset": 464, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2928923475 + }, + "m_canPlaceTeleportMarker": { "type": "bool", - "id": 7, - "offset": 116, + "id": 34, + "offset": 545, "flags": 7, "container": "Static", "dynamic": false, - "singleton": true, + "singleton": false, "pointer": false, - "hash": 1449036226 + "hash": 600985755 }, - "m_fAutoDisableLinearThreshold": { - "type": "float", - "id": 8, - "offset": 120, - "flags": 7, + "m_filterSetUID": { + "type": "unsigned int", + "id": 35, + "offset": 548, + "flags": 33554695, "container": "Static", "dynamic": false, - "singleton": true, + "singleton": false, "pointer": false, - "hash": 2028120914 + "hash": 1054674497 }, - "m_fAutoDisableAngularThreshold": { + "m_conditionalSkyboxes": { + "type": "class SkyboxInfo", + "id": 36, + "offset": 552, + "flags": 263, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2512765286 + }, + "m_musicDelay": { "type": "float", - "id": 9, - "offset": 124, - "flags": 7, + "id": 37, + "offset": 568, + "flags": 263, "container": "Static", "dynamic": false, - "singleton": true, + "singleton": false, "pointer": false, - "hash": 391896705 + "hash": 1217785767 }, - "m_iAutoDisableSteps": { - "type": "int", - "id": 10, - "offset": 128, - "flags": 7, + "m_combatMusic": { + "type": "std::string", + "id": 38, + "offset": 576, + "flags": 131079, "container": "Static", "dynamic": false, - "singleton": true, + "singleton": false, "pointer": false, - "hash": 380025343 + "hash": 3636593682 }, - "m_fAutoDisableTime": { - "type": "float", - "id": 11, - "offset": 132, + "m_guiFile": { + "type": "std::string", + "id": 39, + "offset": 608, "flags": 7, "container": "Static", "dynamic": false, - "singleton": true, + "singleton": false, "pointer": false, - "hash": 1114279513 + "hash": 2717603296 }, - "m_fContactMaxCorrectingVel": { + "m_bloomBrightnessThreshold": { "type": "float", - "id": 12, - "offset": 136, + "id": 40, + "offset": 640, "flags": 7, "container": "Static", "dynamic": false, - "singleton": true, + "singleton": false, "pointer": false, - "hash": 2046803974 + "hash": 1052055702, + "enum_options": { + "__DEFAULT": "0.044892" + } }, - "m_fGravityX": { + "m_bloomScale": { "type": "float", - "id": 13, - "offset": 80, + "id": 41, + "offset": 644, "flags": 7, "container": "Static", "dynamic": false, - "singleton": true, + "singleton": false, "pointer": false, - "hash": 1531831803 + "hash": 955880152, + "enum_options": { + "__DEFAULT": "0.970443" + } }, - "m_fGravityY": { - "type": "float", - "id": 14, - "offset": 84, + "m_bloomCount": { + "type": "int", + "id": 42, + "offset": 648, "flags": 7, "container": "Static", "dynamic": false, - "singleton": true, + "singleton": false, "pointer": false, - "hash": 1531831804 + "hash": 847157372, + "enum_options": { + "__DEFAULT": 3 + } }, - "m_fGravityZ": { - "type": "float", - "id": 15, - "offset": 88, + "m_noMounts": { + "type": "bool", + "id": 43, + "offset": 652, "flags": 7, "container": "Static", "dynamic": false, - "singleton": true, + "singleton": false, "pointer": false, - "hash": 1531831805 + "hash": 1225032630 }, - "m_perShotLeftoverScoreBonus": { - "type": "int", - "id": 16, - "offset": 140, + "m_a2wFog": { + "type": "bool", + "id": 44, + "offset": 653, "flags": 7, "container": "Static", "dynamic": false, - "singleton": true, + "singleton": false, "pointer": false, - "hash": 1865826121 + "hash": 181294809 }, - "m_iSoundCollisionThreshold": { - "type": "int", - "id": 17, - "offset": 144, + "m_swimZone": { + "type": "bool", + "id": 45, + "offset": 654, "flags": 7, "container": "Static", "dynamic": false, - "singleton": true, + "singleton": false, "pointer": false, - "hash": 610409093 - }, - "m_gamePowers": { - "type": "class SharedPointer", - "id": 18, - "offset": 152, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": true, - "pointer": true, - "hash": 2071626314 - }, - "m_gameInteractions": { - "type": "class SharedPointer", - "id": 19, - "offset": 168, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": true, - "pointer": true, - "hash": 3264886543 - }, - "m_gameEvents": { - "type": "class SharedPointer", - "id": 20, - "offset": 184, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": true, - "pointer": true, - "hash": 1839206463 - }, - "m_gameLevelData": { - "type": "class SharedPointer", - "id": 21, - "offset": 200, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": true, - "pointer": true, - "hash": 1151370820 - }, - "m_blockTypes": { - "type": "class SharedPointer", - "id": 22, - "offset": 216, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": true, - "pointer": true, - "hash": 811905140 + "hash": 255657967 }, - "m_comboMultipliers": { - "type": "class SharedPointer", - "id": 23, - "offset": 232, - "flags": 7, + "m_altMusicFile": { + "type": "class MusicFileInfo", + "id": 46, + "offset": 656, + "flags": 263, "container": "List", "dynamic": true, - "singleton": true, - "pointer": true, - "hash": 3057704584 + "singleton": false, + "pointer": false, + "hash": 2140137174 } } }, - "1246935116": { - "name": "enum PetDerbyLaneSwitch", - "bases": [], - "hash": 1246935116, - "properties": {} - }, - "2053784145": { - "name": "class InfractionBehavior*", + "1393273154": { + "name": "class PlayComplexSoundCinematicAction*", "bases": [ - "BehaviorInstance", + "CinematicAction", "PropertyClass" ], - "hash": 2053784145, + "hash": 1393273154, "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", + "m_timeOffset": { + "type": "float", "id": 0, - "offset": 104, - "flags": 39, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 + "hash": 2237098605 }, - "m_penalties": { - "type": "class SharedPointer", + "m_cinematicSoundEmitterInfo": { + "type": "class SharedPointer", "id": 1, - "offset": 112, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1696001746 - }, - "m_record": { - "type": "class SharedPointer", - "id": 2, - "offset": 128, - "flags": 16, - "container": "List", - "dynamic": true, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": true, - "hash": 2129713657 + "hash": 2303770088 } } }, - "99029446": { - "name": "class ClientFaceTargetActorCinematicAction*", + "1831901072": { + "name": "class SharedPointer", "bases": [ - "FaceTargetActorCinematicAction", - "ActorCinematicAction", + "AnnounceSpellTextCinematicAction", "CinematicAction", "PropertyClass" ], - "hash": 99029446, + "hash": 1831901072, "properties": { "m_timeOffset": { "type": "float", @@ -657016,7 +612895,7 @@ "pointer": false, "hash": 2237098605 }, - "m_actor": { + "m_spellText": { "type": "std::string", "id": 1, "offset": 80, @@ -657025,167 +612904,219 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 2285866132 - }, - "m_bCaster": { - "type": "bool", - "id": 2, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1390351511 + "hash": 2688705600 } } }, - "1246439792": { - "name": "class WizCinematicActorTemplate", + "121907639": { + "name": "class SharedPointer", "bases": [ - "CinematicActorTemplate", - "CinematicDefTemplate", - "CoreTemplate", + "BehaviorTemplate", "PropertyClass" ], - "hash": 1246439792, + "hash": 121907639, "properties": { - "m_behaviors": { - "type": "class BehaviorTemplate*", + "m_behaviorName": { + "type": "std::string", "id": 0, "offset": 72, "flags": 7, - "container": "Vector", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1197808594 + "pointer": false, + "hash": 3130754092 }, - "m_nifFile": { + "m_staticMusicFile": { "type": "std::string", "id": 1, - "offset": 136, + "offset": 120, "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2694762008 + "hash": 2845362532 }, - "m_delay": { - "type": "double", + "m_dynamicMusicFile": { + "type": "std::string", "id": 2, - "offset": 168, + "offset": 152, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3205780097 + } + } + }, + "544865896": { + "name": "class SharedPointer", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 544865896, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + } + } + }, + "1828534039": { + "name": "class AvatarItemInfo*", + "bases": [ + "AvatarItemInfoBase", + "PropertyClass" + ], + "hash": 1828534039, + "properties": { + "m_partName": { + "type": "std::string", + "id": 0, + "offset": 72, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2689597116 + "hash": 2609631923 }, - "m_cinematicName": { + "m_slotName": { "type": "std::string", - "id": 3, - "offset": 96, - "flags": 134217735, + "id": 1, + "offset": 104, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2611527497 + "hash": 2819781566 }, - "m_completeEvents": { - "type": "class CinematicEventInfo*", - "id": 4, - "offset": 272, + "m_flags": { + "type": "std::string", + "id": 2, + "offset": 144, "flags": 7, "container": "List", "dynamic": true, "singleton": false, - "pointer": true, - "hash": 2945338320 + "pointer": false, + "hash": 2292098216 }, - "m_stateChangeEvents": { - "type": "class CinematicEventInfo*", - "id": 5, - "offset": 304, + "m_options": { + "type": "class SharedPointer", + "id": 3, + "offset": 160, "flags": 7, "container": "List", "dynamic": true, "singleton": false, "pointer": true, - "hash": 1874505374 + "hash": 2499357824 }, - "m_stateInteractions": { - "type": "class CinematicInteractInfo*", - "id": 6, - "offset": 336, + "m_textureOptions": { + "type": "class SharedPointer", + "id": 4, + "offset": 176, "flags": 7, "container": "List", "dynamic": true, "singleton": false, "pointer": true, - "hash": 1949887389 + "hash": 2667548348 }, - "m_targetGameState": { - "type": "std::string", - "id": 7, - "offset": 176, + "m_defaultOption": { + "type": "class SharedPointer", + "id": 5, + "offset": 192, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 3607550909 + "pointer": true, + "hash": 2436336754 }, - "m_actorStateSet": { - "type": "std::string", - "id": 8, + "m_defaultTextureOption": { + "type": "class SharedPointer", + "id": 6, "offset": 208, - "flags": 268435463, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2712636654 + } + } + }, + "121585816": { + "name": "enum DerbyTalentBuffType", + "bases": [], + "hash": 121585816, + "properties": {} + }, + "980682381": { + "name": "class BadgeFilterInfo*", + "bases": [ + "PropertyClass" + ], + "hash": 980682381, + "properties": { + "m_badgeFilterNameID": { + "type": "unsigned int", + "id": 0, + "offset": 72, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1765258049, - "enum_options": { - "__BASECLASS": "ObjStateSet" - } + "hash": 2064078516 }, - "m_rootAsset": { - "type": "std::string", - "id": 9, - "offset": 240, - "flags": 131079, + "m_numberOfBadges": { + "type": "int", + "id": 1, + "offset": 76, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3506101791 + "hash": 1438042878 }, - "m_dialogList": { - "type": "class ActorDialogList*", - "id": 10, - "offset": 368, - "flags": 7, + "m_numberOfExtraCreditBadges": { + "type": "int", + "id": 2, + "offset": 80, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2035504282 + "pointer": false, + "hash": 301196253 } } }, - "99015196": { - "name": "class DdWinAnimMovePlayer*", + "1827094409": { + "name": "class TileMaterial", "bases": [ - "WindowAnimation", + "Material", "PropertyClass" ], - "hash": 99015196, + "hash": 1827094409, "properties": { - "m_bUseDeepCopy": { - "type": "bool", + "m_sMaterialName": { + "type": "std::wstring", "id": 0, "offset": 72, "flags": 135, @@ -657193,305 +613124,324 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 433380635 + "hash": 1299185467 }, - "m_facing": { - "type": "enum DoodleDoug::DdDirection", + "m_Blending": { + "type": "enum Material::Blending", "id": 1, - "offset": 80, - "flags": 135, + "offset": 116, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 591537519 + "hash": 3003693822, + "enum_options": { + "B_NONE": 0, + "B_ADDITIVE": 1, + "B_ALPHA": 2, + "B_ALPHA_INV": 3, + "B_ADDITIVE_INV": 4, + "__DEFAULT": "B_ALPHA" + } }, - "m_direction": { - "type": "enum DoodleDoug::DdDirection", + "m_eRepeat": { + "type": "enum Material::Repeating", "id": 2, - "offset": 84, - "flags": 135, + "offset": 176, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1599953256 + "hash": 3302018843, + "enum_options": { + "R_NONE": 0, + "R_REPEAT": 1 + } }, - "m_fSpeed": { - "type": "float", + "m_pDiffuseMap": { + "type": "class SharedPointer", "id": 3, - "offset": 88, + "offset": 120, "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 503609006 + "pointer": true, + "hash": 4008975679 }, - "m_currentLocation": { - "type": "class Vector3D", + "m_pAlphaMask": { + "type": "class SharedPointer", "id": 4, - "offset": 92, + "offset": 136, "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 3670997758 + "pointer": true, + "hash": 3411451405 }, - "m_targetLocation": { - "type": "class Vector3D", + "m_fLastAlpha": { + "type": "float", "id": 5, - "offset": 104, + "offset": 152, "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2653859938 + "hash": 284727287 }, - "m_myBoard": { - "type": "class DoodleDoug*", + "m_Diffuse": { + "type": "class Color", "id": 6, - "offset": 120, - "flags": 135, + "offset": 156, + "flags": 262279, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2212758093 - } - } - }, - "1664769339": { - "name": "class HUDWindow", - "bases": [ - "Window", - "PropertyClass" - ], - "hash": 1664769339, - "properties": { - "m_sName": { - "type": "std::string", - "id": 0, - "offset": 80, + "pointer": false, + "hash": 1644364836 + }, + "m_Ambient": { + "type": "class Color", + "id": 7, + "offset": 160, + "flags": 262279, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2216816350 + }, + "m_Specular": { + "type": "class Color", + "id": 8, + "offset": 168, + "flags": 262279, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2645528957 + }, + "m_fSpecularPower": { + "type": "float", + "id": 9, + "offset": 172, "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2306437263 + "hash": 539146057 }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, + "m_Frames": { + "type": "class Rect", + "id": 10, + "offset": 192, "flags": 65671, "container": "Vector", "dynamic": true, "singleton": false, - "pointer": true, - "hash": 2621225959 + "pointer": false, + "hash": 3064301836 }, - "m_Style": { - "type": "unsigned int", - "id": 2, - "offset": 152, - "flags": 1048583, + "m_nCurrentFrame": { + "type": "int", + "id": 11, + "offset": 216, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "SCALE_CHILDREN": 2, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "FOCUS_LOCKED": 64, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152 - } + "hash": 45308854 }, - "m_Flags": { - "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 1048583, + "m_fAnimRate": { + "type": "float", + "id": 12, + "offset": 228, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } + "hash": 802385934 }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, + "m_nAnimBegin": { + "type": "int", + "id": 13, + "offset": 220, "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3105139380 + "hash": 400513266 }, - "m_fTargetAlpha": { - "type": "float", - "id": 5, - "offset": 212, + "m_nAnimEnd": { + "type": "int", + "id": 14, + "offset": 224, "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1809129834 + "hash": 1081103460 }, - "m_fDisabledAlpha": { + "m_fAnimTime": { "type": "float", - "id": 6, - "offset": 216, - "flags": 135, + "id": 15, + "offset": 232, + "flags": 134, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1389987675 + "hash": 802466289 }, - "m_fAlpha": { + "m_fMaterialScaleX": { "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, + "id": 16, + "offset": 180, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 482130755 + "hash": 634638220 }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, + "m_fMaterialScaleY": { + "type": "float", + "id": 17, + "offset": 184, "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3623628394 + "pointer": false, + "hash": 634638221 }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, + "m_TilesX": { + "type": "int", + "id": 18, + "offset": 240, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2102211316 + "hash": 1882401395 }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, + "m_TilesY": { + "type": "int", + "id": 19, + "offset": 244, "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1846695875 + "hash": 1882401396 + } + } + }, + "120689876": { + "name": "class SharedPointer", + "bases": [ + "PathBehaviorTemplate::Action", + "PropertyClass" + ], + "hash": 120689876, + "properties": { + "m_nPathID": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 214382368 }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, + "m_nNodeID": { + "type": "int", + "id": 1, + "offset": 80, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3389835433 + "hash": 152152635, + "enum_options": { + "__DEFAULT": 4294967295 + } }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, + "m_nPriority": { + "type": "int", + "id": 2, + "offset": 84, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2547159940 + "hash": 1515251530, + "enum_options": { + "__DEFAULT": 100 + } }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, + "m_nChance": { + "type": "int", + "id": 3, + "offset": 88, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1513510520 + "hash": 1860748394, + "enum_options": { + "__DEFAULT": 50 + } }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, + "m_nDestinationNodeID": { + "type": "int", + "id": 4, + "offset": 96, + "flags": 7, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 2587533771 + "hash": 44784029 }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, + "m_bContinuePathing": { + "type": "bool", + "id": 5, + "offset": 100, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3091503757 + "hash": 2053386917 } } }, - "2055478895": { - "name": "class SharedPointer", + "978917191": { + "name": "class SharedPointer", "bases": [ "PropertyClass" ], - "hash": 2055478895, + "hash": 978917191, "properties": { - "m_adjective": { + "m_name": { "type": "std::string", "id": 0, "offset": 72, @@ -657500,55 +613450,71 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 3429518154 + "hash": 1717359772 + }, + "m_icon": { + "type": "std::string", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1717182340 + }, + "m_shortcutList": { + "type": "std::string", + "id": 2, + "offset": 136, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 3408488691 + }, + "m_skinTone": { + "type": "unsigned int", + "id": 3, + "offset": 172, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2147803096 } } }, - "1247014574": { - "name": "class SharedPointer", - "bases": [], - "hash": 1247014574, - "properties": {} - }, - "1665274872": { - "name": "class SharedPointer", + "1394116509": { + "name": "class SharedPointer", "bases": [ "PropertyClass" ], - "hash": 1665274872, + "hash": 1394116509, "properties": { - "m_delta": { - "type": "int", + "m_entryList": { + "type": "class SharedPointer", "id": 0, "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 791787588 - }, - "m_rounds": { - "type": "int", - "id": 1, - "offset": 76, - "flags": 31, - "container": "Static", - "dynamic": false, + "flags": 7, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 916427829 + "pointer": true, + "hash": 1753877873 } } }, - "101700434": { - "name": "class ClientUpdatePipsCinematicAction", + "1824262077": { + "name": "class ClientAnnounceSpellTextCinematicAction*", "bases": [ - "UpdatePipsCinematicAction", + "AnnounceSpellTextCinematicAction", "CinematicAction", "PropertyClass" ], - "hash": 101700434, + "hash": 1824262077, "properties": { "m_timeOffset": { "type": "float", @@ -657560,361 +613526,535 @@ "singleton": false, "pointer": false, "hash": 2237098605 + }, + "m_spellText": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2688705600 } } }, - "1664883413": { - "name": "class ControlSlider*", + "978669458": { + "name": "class WizStatisticEffect", "bases": [ - "ControlBar", - "Window", + "StatisticEffect", + "GameEffectBase", "PropertyClass" ], - "hash": 1664883413, + "hash": 978669458, "properties": { - "m_sName": { - "type": "std::string", + "m_currentTickCount": { + "type": "double", "id": 0, "offset": 80, - "flags": 135, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2306437263 + "hash": 2533274692 }, - "m_Children": { - "type": "class SharedPointer", + "m_effectNameID": { + "type": "unsigned int", "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, + "offset": 96, + "flags": 63, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2621225959 + "pointer": false, + "hash": 1204067144 }, - "m_Style": { - "type": "unsigned int", + "m_bIsOnPet": { + "type": "bool", "id": 2, - "offset": 152, - "flags": 1048583, + "offset": 73, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "SCALE_CHILDREN": 2, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "FOCUS_LOCKED": 64, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152 - } + "hash": 522593303 }, - "m_Flags": { - "type": "unsigned int", + "m_originatorID": { + "type": "gid", "id": 3, - "offset": 156, - "flags": 1048583, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } + "hash": 1131810019 }, - "m_Window": { - "type": "class Rect", + "m_itemSlotID": { + "type": "unsigned int", "id": 4, - "offset": 160, - "flags": 135, + "offset": 112, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3105139380 + "hash": 1895747595 }, - "m_fTargetAlpha": { - "type": "float", + "m_internalID": { + "type": "int", "id": 5, - "offset": 212, - "flags": 135, + "offset": 92, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1809129834 + "hash": 1643137924 }, - "m_fDisabledAlpha": { - "type": "float", + "m_endTime": { + "type": "unsigned int", "id": 6, - "offset": 216, - "flags": 135, + "offset": 88, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1389987675 + "hash": 716479635 }, - "m_fAlpha": { - "type": "float", + "m_lookupIndex": { + "type": "int", "id": 7, - "offset": 208, - "flags": 65671, + "offset": 128, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 482130755 + "hash": 1626623948 }, - "m_pWindowStyle": { - "type": "class SharedPointer", + "m_damageBonusPercent": { + "type": "float", "id": 8, - "offset": 232, - "flags": 135, + "offset": 136, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3623628394 + "pointer": false, + "hash": 623230606 }, - "m_sHelp": { - "type": "std::wstring", + "m_damageBonusFlat": { + "type": "float", "id": 9, - "offset": 248, - "flags": 4194439, + "offset": 180, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2102211316 + "hash": 2212039108 }, - "m_sScript": { - "type": "std::string", + "m_accuracyBonusPercent": { + "type": "float", "id": 10, - "offset": 352, - "flags": 135, + "offset": 140, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1846695875 + "hash": 1972336538 }, - "m_Offset": { - "type": "class Point", + "m_armorPiercingBonusPercent": { + "type": "float", "id": 11, - "offset": 192, - "flags": 135, + "offset": 144, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3389835433 + "hash": 1569912641 }, - "m_Scale": { - "type": "class Point", + "m_damageReducePercent": { + "type": "float", "id": 12, - "offset": 200, - "flags": 135, + "offset": 148, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2547159940 + "hash": 541736927 }, - "m_sTip": { - "type": "std::wstring", + "m_damageReduceFlat": { + "type": "float", "id": 13, - "offset": 392, - "flags": 4194439, + "offset": 152, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1513510520 + "hash": 684172469 }, - "m_BubbleList": { - "type": "class WindowBubble", + "m_accuracyReducePercent": { + "type": "float", "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, + "offset": 156, + "flags": 63, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 2587533771 + "hash": 2112559723 }, - "m_ParentOffset": { - "type": "class Rect", + "m_healBonusPercent": { + "type": "float", "id": 15, - "offset": 176, - "flags": 135, + "offset": 160, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3091503757 + "hash": 562313577 }, - "m_fPosition": { + "m_healIncBonusPercent": { "type": "float", "id": 16, - "offset": 584, - "flags": 135, + "offset": 164, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1808212114 + "hash": 2182535587 }, - "m_BaseColor": { - "type": "class Color", + "m_hitPointBonus": { + "type": "float", "id": 17, - "offset": 588, - "flags": 262279, + "offset": 204, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2172251096 + "hash": 880644461 }, - "m_BarColor": { - "type": "class Color", + "m_spellChargeBonus": { + "type": "int", "id": 18, - "offset": 592, - "flags": 262279, + "offset": 212, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2259916498 + "hash": 2019610507 }, - "m_bDisplayVertical": { - "type": "bool", + "m_powerPipBonusPercent": { + "type": "float", "id": 19, - "offset": 596, - "flags": 135, + "offset": 168, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1359621189 + "hash": 1671446341 }, - "m_pBarMaterial": { - "type": "class SharedPointer", + "m_petActChance": { + "type": "int", "id": 20, - "offset": 600, - "flags": 135, + "offset": 200, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2481929515 + "pointer": false, + "hash": 237418461 }, - "m_pTopLeftMaterial": { - "type": "class SharedPointer", + "m_manaBonus": { + "type": "float", "id": 21, - "offset": 616, - "flags": 135, + "offset": 208, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3248096916 + "pointer": false, + "hash": 1372708603 }, - "m_pCenterMaterial": { - "type": "class SharedPointer", + "m_expPercent": { + "type": "float", "id": 22, - "offset": 632, - "flags": 135, + "offset": 184, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1519560055 + "pointer": false, + "hash": 1147850677 }, - "m_pBottomRightMaterial": { - "type": "class SharedPointer", + "m_goldPercent": { + "type": "float", "id": 23, - "offset": 648, - "flags": 135, + "offset": 188, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2932444745 + "pointer": false, + "hash": 1095720878 }, - "m_fMin": { + "m_energyBonus": { "type": "float", "id": 24, - "offset": 700, - "flags": 135, + "offset": 216, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 309551905 + "hash": 2223158984 }, - "m_fMax": { + "m_criticalHitRating": { "type": "float", "id": 25, - "offset": 704, - "flags": 135, + "offset": 220, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 309551651 + "hash": 1978690540 }, - "m_nTabWidth": { - "type": "int", + "m_blockRating": { + "type": "float", "id": 26, - "offset": 708, - "flags": 135, + "offset": 224, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1554957503 + "hash": 2088486759 + }, + "m_accuracyRating": { + "type": "float", + "id": 27, + "offset": 228, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 165525575 + }, + "m_powerPipRating": { + "type": "float", + "id": 28, + "offset": 232, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1355340722 + }, + "m_damageResistanceRating": { + "type": "float", + "id": 29, + "offset": 240, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1961377740 + }, + "m_archmastery": { + "type": "float", + "id": 30, + "offset": 244, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1963579610 + }, + "m_archmasteryBonusPercent": { + "type": "float", + "id": 31, + "offset": 288, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1908627154 + }, + "m_balanceMastery": { + "type": "int", + "id": 32, + "offset": 248, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 149062181 + }, + "m_deathMastery": { + "type": "int", + "id": 33, + "offset": 252, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1421218661 + }, + "m_fireMastery": { + "type": "int", + "id": 34, + "offset": 256, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1431794949 + }, + "m_iceMastery": { + "type": "int", + "id": 35, + "offset": 260, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 704864240 + }, + "m_lifeMastery": { + "type": "int", + "id": 36, + "offset": 264, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2142136447 + }, + "m_mythMastery": { + "type": "int", + "id": 37, + "offset": 268, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1766317185 + }, + "m_stormMastery": { + "type": "int", + "id": 38, + "offset": 272, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1883988244 + }, + "m_stunResistancePercent": { + "type": "float", + "id": 39, + "offset": 276, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1868382627 + }, + "m_fishingLuckBonusPercent": { + "type": "float", + "id": 40, + "offset": 192, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1363349254 + }, + "m_shadowPipBonusPercent": { + "type": "float", + "id": 41, + "offset": 172, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1426533310 + }, + "m_wispBonusPercent": { + "type": "float", + "id": 42, + "offset": 196, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1304386546 + }, + "m_pipConversionRating": { + "type": "float", + "id": 43, + "offset": 280, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 246855691 + }, + "m_shadowPipRating": { + "type": "float", + "id": 44, + "offset": 236, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 507126123 } } }, - "2056437968": { - "name": "class AuctionHouseConfig", + "545463088": { + "name": "class SharedPointer", "bases": [ "PropertyClass" ], - "hash": 2056437968, + "hash": 545463088, "properties": { - "m_maxCopiesEachTemplate": { - "type": "int", + "m_customNameMaxLength": { + "type": "unsigned int", "id": 0, "offset": 72, "flags": 7, @@ -657922,144 +614062,168 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 482850544 + "hash": 1680359153 }, - "m_itemDegradationTime": { - "type": "float", + "m_customNameMinLength": { + "type": "unsigned int", "id": 1, - "offset": 80, + "offset": 76, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 500224183 + "hash": 1148225135 }, - "m_priceMods": { - "type": "class AuctionPriceMods*", + "m_subStringNameExceptions": { + "type": "std::wstring", "id": 2, "offset": 88, "flags": 7, "container": "Vector", "dynamic": true, "singleton": false, - "pointer": true, - "hash": 2703049879 + "pointer": false, + "hash": 2526168028 }, - "m_craftedPriceMods": { - "type": "class AuctionPriceMods*", + "m_singleCharExceptions": { + "type": "std::wstring", "id": 3, "offset": 112, "flags": 7, - "container": "Vector", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2084157488 + "pointer": false, + "hash": 1648919482 }, - "m_observerTimeout": { - "type": "int", + "m_caseInsensitive": { + "type": "bool", "id": 4, - "offset": 160, + "offset": 80, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 562500777 + "hash": 182050912 }, - "m_maxReagentTemplateCopies": { - "type": "int", + "m_charSetCosts": { + "type": "class SharedPointer", "id": 5, - "offset": 76, + "offset": 184, "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1980234615 + } + } + }, + "1824228239": { + "name": "class ClientExpansionBehavior*", + "bases": [ + "ExpansionBehavior", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1824228239, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1246482213 + "hash": 223437287 }, - "m_reagentPriceMods": { - "type": "class AuctionPriceMods*", - "id": 6, - "offset": 136, - "flags": 7, - "container": "Vector", - "dynamic": true, + "m_bankExpansions": { + "type": "int", + "id": 1, + "offset": 112, + "flags": 63, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1253990333 + "pointer": false, + "hash": 1369075454 }, - "m_templatesInStockList": { - "type": "unsigned int", - "id": 7, - "offset": 184, - "flags": 7, - "container": "List", - "dynamic": true, + "m_friendListExpansions": { + "type": "int", + "id": 2, + "offset": 116, + "flags": 63, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 977195955 + "hash": 1057398198 } } }, - "101655189": { - "name": "class SharedPointer", + "545095272": { + "name": "class SharedPointer", "bases": [ - "BehaviorTemplate", + "ClientWizPlayerNameBehavior", + "NameOverrideBehavior", + "BehaviorInstance", "PropertyClass" ], - "hash": 101655189, + "hash": 545095272, "properties": { - "m_behaviorName": { - "type": "std::string", + "m_behaviorTemplateNameID": { + "type": "unsigned int", "id": 0, - "offset": 72, - "flags": 7, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3130754092 + "hash": 223437287 }, - "m_primaryDyeToTexture": { - "type": "class PetDyeToTexture", + "m_wsNameOverride": { + "type": "std::wstring", "id": 1, "offset": 120, - "flags": 7, - "container": "List", - "dynamic": true, + "flags": 31, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 1981853869 + "hash": 2131249091 }, - "m_secondaryDyeToTexture": { - "type": "class PetDyeToTexture", + "m_nameKeys": { + "type": "unsigned int", "id": 2, - "offset": 136, - "flags": 7, - "container": "List", - "dynamic": true, + "offset": 352, + "flags": 31, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 1861913233 + "hash": 1772225898 }, - "m_patternToTexture": { - "type": "class PetDyeToTexture", + "m_useRank": { + "type": "bool", "id": 3, - "offset": 152, - "flags": 7, - "container": "List", - "dynamic": true, + "offset": 356, + "flags": 31, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 1245062405 + "hash": 2040475372 }, "m_eGender": { "type": "enum eGender", "id": 4, - "offset": 168, - "flags": 2097159, + "offset": 432, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, @@ -658074,8 +614238,8 @@ "m_eRace": { "type": "enum eRace", "id": 5, - "offset": 172, - "flags": 2097159, + "offset": 436, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, @@ -660861,477 +617025,45420 @@ "PP_Fairy_Fire": 1847789544, "MNT_Mustang_B": 1448793691, "PP_FireElfMyth": 1933609060, - "MNT_KT-BoatRide": 1560860110 + "MNT_KT-BoatRide": 1560860110, + "MNT_ShadowMagic": 2095978357, + "MNT_MardiGrasFloat_A": 1740674432, + "PP_ChineseNYSnake": 988201940, + "MNT_AnubisDog": 1995079956, + "PP_ShadowImp_A": 1604849432, + "PP_ShadowImp_B": 1604849438, + "PP_ShadowImp_C": 1604849436, + "MNT_ShadowMagic_B": 2093870965, + "MNT_ShadowMagic_C": 2093805429, + "Guest_KT_SE_Tritops_Warrior_I_01": 97516901, + "Guest_KT_SE_DS_Draconian_Model_01": 1916095079, + "Guest_KT_SE_Beetle_Scarab_C_01_L50": 1064004307, + "Guest_KT_SE_Roach_Warrior_C_03": 1872574203, + "Guest_KT_SE_Roach_Warrior_C_04": 1871918843, + "Guest_KT_SE_Roach_Warrior_C_05": 1871787771, + "Guest_KT_SE_Beetle_Scarab_C_01": 1353410759, + "Guest_KT_SE_Mander_Citizen_B_01_L50": 2044509396, + "Guest_KT_SE_Mander_CitizenF_B_01_L50": 164327682, + "Guest_KT_SE_Treant_Tormented_A_01": 1359800879, + "Guest_KT_SE_Treant_Base_A_01": 765512948, + "Guest_KT_SE_Mander_Citizen_F_D_05": 171244620, + "Guest_KT_SE_Mander_CitizenF_D_01": 163791037, + "Guest_KT_SE_Mander_CitizenF_D_02": 298008765, + "Guest_KT_SE_Mander_CitizenF_D_03": 432226493, + "Guest_KT_SE_Mander_CitizenF_D_04": 566444221, + "Guest_KT_SE_Mander_MummyF_A_01": 964349080, + "Guest_KT_SE_Mander_MummyF_A_02": 964480152, + "Guest_KT_SE_MC_Wraith_Model_01": 1101442118, + "Guest_KT_SE_Mander_CitizenF_B_02": 298000573, + "MNT_Wheelbarrow": 614248817, + "MNT_StubbornLlama": 221089074 + } + }, + "m_badgeTitle": { + "type": "std::string", + "id": 6, + "offset": 440, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1783354256 + }, + "m_chatPermissions": { + "type": "unsigned int", + "id": 7, + "offset": 360, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1848314473 + }, + "m_pvpIconID": { + "type": "unsigned int", + "id": 8, + "offset": 472, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2083838009 + }, + "m_localeID": { + "type": "unsigned int", + "id": 9, + "offset": 484, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 792971274 + }, + "m_friendlyPlayer": { + "type": "bool", + "id": 10, + "offset": 490, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 990699901 + }, + "m_volunteer": { + "type": "bool", + "id": 11, + "offset": 491, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1751284471 + }, + "m_guildName": { + "type": "unsigned int", + "id": 12, + "offset": 492, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 778026115 + }, + "m_guildNameLocale": { + "type": "int", + "id": 13, + "offset": 496, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 656991008 + }, + "m_overallRating": { + "type": "unsigned int", + "id": 14, + "offset": 544, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 462138631 + }, + "m_activeRating": { + "type": "unsigned int", + "id": 15, + "offset": 548, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 234391118 + }, + "m_petLevel": { + "type": "unsigned int", + "id": 16, + "offset": 552, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2225922446 + }, + "m_bHasSocketedJewel": { + "type": "bool", + "id": 17, + "offset": 556, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 103587834 + }, + "m_hideName": { + "type": "bool", + "id": 18, + "offset": 557, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 645410894 + }, + "m_templateID": { + "type": "unsigned int", + "id": 19, + "offset": 564, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1286746870 + } + } + }, + "121871885": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 121871885, + "properties": { + "m_participantID": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1556110724 + }, + "m_teamID": { + "type": "int", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 982118638 + }, + "m_maxHealth": { + "type": "int", + "id": 2, + "offset": 84, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 374902326 + }, + "m_pipsSpent": { + "type": "int", + "id": 3, + "offset": 88, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1360713568 + }, + "m_shadowPipsSpent": { + "type": "int", + "id": 4, + "offset": 92, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1691641958 + }, + "m_damageOutgoing": { + "type": "float", + "id": 5, + "offset": 96, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1733098594 + }, + "m_damageIncoming": { + "type": "float", + "id": 6, + "offset": 100, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 466767466 + }, + "m_healingOutgoing": { + "type": "float", + "id": 7, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1955741979 + }, + "m_healingIncoming": { + "type": "float", + "id": 8, + "offset": 108, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 689410851 + }, + "m_killCount": { + "type": "int", + "id": 9, + "offset": 112, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1162723983 + }, + "m_spellsCast": { + "type": "int", + "id": 10, + "offset": 116, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 681177880 + }, + "m_fizzles": { + "type": "int", + "id": 11, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1628327073 + }, + "m_offenseSpells": { + "type": "int", + "id": 12, + "offset": 124, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 422756275 + }, + "m_offenseNormal": { + "type": "int", + "id": 13, + "offset": 128, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 226361289 + }, + "m_offenseShadow": { + "type": "int", + "id": 14, + "offset": 132, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 413116550 + } + } + }, + "1396703270": { + "name": "class HousingSignBehaviorBase*", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1396703270, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_packedName": { + "type": "std::string", + "id": 1, + "offset": 112, + "flags": 65543, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1805208228 + }, + "m_signText": { + "type": "std::string", + "id": 2, + "offset": 144, + "flags": 65543, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2920366641 + } + } + }, + "980221033": { + "name": "class PetSiegeGameManager", + "bases": [ + "PropertyClass" + ], + "hash": 980221033, + "properties": { + "m_fPetMass": { + "type": "float", + "id": 0, + "offset": 76, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": true, + "pointer": false, + "hash": 1378034810 + }, + "m_fBounce": { + "type": "float", + "id": 1, + "offset": 92, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": true, + "pointer": false, + "hash": 179025177 + }, + "m_fBounceThreshold": { + "type": "float", + "id": 2, + "offset": 96, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": true, + "pointer": false, + "hash": 1371486086 + }, + "m_fMU": { + "type": "float", + "id": 3, + "offset": 100, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": true, + "pointer": false, + "hash": 357234943 + }, + "m_fERP": { + "type": "float", + "id": 4, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": true, + "pointer": false, + "hash": 309542404 + }, + "m_fCFM": { + "type": "float", + "id": 5, + "offset": 108, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": true, + "pointer": false, + "hash": 309539827 + }, + "m_fContactSurfaceDepth": { + "type": "float", + "id": 6, + "offset": 112, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": true, + "pointer": false, + "hash": 999400231 + }, + "m_bAutoDisable": { + "type": "bool", + "id": 7, + "offset": 116, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": true, + "pointer": false, + "hash": 1449036226 + }, + "m_fAutoDisableLinearThreshold": { + "type": "float", + "id": 8, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": true, + "pointer": false, + "hash": 2028120914 + }, + "m_fAutoDisableAngularThreshold": { + "type": "float", + "id": 9, + "offset": 124, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": true, + "pointer": false, + "hash": 391896705 + }, + "m_iAutoDisableSteps": { + "type": "int", + "id": 10, + "offset": 128, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": true, + "pointer": false, + "hash": 380025343 + }, + "m_fAutoDisableTime": { + "type": "float", + "id": 11, + "offset": 132, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": true, + "pointer": false, + "hash": 1114279513 + }, + "m_fContactMaxCorrectingVel": { + "type": "float", + "id": 12, + "offset": 136, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": true, + "pointer": false, + "hash": 2046803974 + }, + "m_fGravityX": { + "type": "float", + "id": 13, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": true, + "pointer": false, + "hash": 1531831803 + }, + "m_fGravityY": { + "type": "float", + "id": 14, + "offset": 84, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": true, + "pointer": false, + "hash": 1531831804 + }, + "m_fGravityZ": { + "type": "float", + "id": 15, + "offset": 88, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": true, + "pointer": false, + "hash": 1531831805 + }, + "m_perShotLeftoverScoreBonus": { + "type": "int", + "id": 16, + "offset": 140, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": true, + "pointer": false, + "hash": 1865826121 + }, + "m_iSoundCollisionThreshold": { + "type": "int", + "id": 17, + "offset": 144, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": true, + "pointer": false, + "hash": 610409093 + }, + "m_gamePowers": { + "type": "class SharedPointer", + "id": 18, + "offset": 152, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": true, + "pointer": true, + "hash": 2071626314 + }, + "m_gameInteractions": { + "type": "class SharedPointer", + "id": 19, + "offset": 168, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": true, + "pointer": true, + "hash": 3264886543 + }, + "m_gameEvents": { + "type": "class SharedPointer", + "id": 20, + "offset": 184, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": true, + "pointer": true, + "hash": 1839206463 + }, + "m_gameLevelData": { + "type": "class SharedPointer", + "id": 21, + "offset": 200, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": true, + "pointer": true, + "hash": 1151370820 + }, + "m_blockTypes": { + "type": "class SharedPointer", + "id": 22, + "offset": 216, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": true, + "pointer": true, + "hash": 811905140 + }, + "m_comboMultipliers": { + "type": "class SharedPointer", + "id": 23, + "offset": 232, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": true, + "pointer": true, + "hash": 3057704584 + } + } + }, + "1395450017": { + "name": "class CritBlockOverride*", + "bases": [ + "CombatRule", + "PropertyClass" + ], + "hash": 1395450017, + "properties": { + "m_baseCritDivisor": { + "type": "int", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1793948871 + }, + "m_baseBlockDivisor": { + "type": "int", + "id": 1, + "offset": 76, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 331192160 + }, + "m_critScalarDivisor": { + "type": "int", + "id": 2, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 353250050 + }, + "m_blockScalarDivisor": { + "type": "int", + "id": 3, + "offset": 84, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 778321147 + }, + "m_finalCritMedian1": { + "type": "float", + "id": 4, + "offset": 88, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1779518738 + }, + "m_finalCritMedian2": { + "type": "float", + "id": 5, + "offset": 92, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1779518739 + }, + "m_finalBlockMedian1": { + "type": "float", + "id": 6, + "offset": 96, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2233508235 + }, + "m_finalBlockMedian2": { + "type": "float", + "id": 7, + "offset": 100, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2233508236 + } + } + }, + "545297065": { + "name": "class PathActionDespawn", + "bases": [ + "PathBehaviorTemplate::Action", + "PropertyClass" + ], + "hash": 545297065, + "properties": { + "m_nPathID": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 214382368 + }, + "m_nNodeID": { + "type": "int", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 152152635, + "enum_options": { + "__DEFAULT": 4294967295 + } + }, + "m_nPriority": { + "type": "int", + "id": 2, + "offset": 84, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1515251530, + "enum_options": { + "__DEFAULT": 100 + } + }, + "m_nChance": { + "type": "int", + "id": 3, + "offset": 88, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1860748394, + "enum_options": { + "__DEFAULT": 50 + } + } + } + }, + "1825252961": { + "name": "enum HousingNode::ExclusiveRestrictions", + "bases": [], + "hash": 1825252961, + "properties": {} + }, + "979355205": { + "name": "class ReqBaseMagicLevel", + "bases": [ + "ReqNumeric", + "Requirement", + "PropertyClass" + ], + "hash": 979355205, + "properties": { + "m_applyNOT": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1746328074, + "enum_options": { + "__DEFAULT": 0 + } + }, + "m_operator": { + "type": "enum Requirement::Operator", + "id": 1, + "offset": 76, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2672792317, + "enum_options": { + "ROP_AND": 0, + "ROP_OR": 1, + "__DEFAULT": "ROP_AND" + } + }, + "m_numericValue": { + "type": "float", + "id": 2, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 521915239 + }, + "m_operatorType": { + "type": "enum ReqNumeric::OPERATOR_TYPE", + "id": 3, + "offset": 84, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2228122961, + "enum_options": { + "OPERATOR_UNKNOWN": 4294967295, + "OPERATOR_EQUALS": 0, + "OPERATOR_GREATER_THAN": 1, + "OPERATOR_LESS_THAN": 2, + "OPERATOR_GREATER_THAN_EQ": 3, + "OPERATOR_LESS_THAN_EQ": 4 + } + }, + "m_magicSchool": { + "type": "std::string", + "id": 4, + "offset": 88, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1597012900 + } + } + }, + "1824810258": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1824810258, + "properties": { + "m_activeProjectList": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 534931707 + } + } + }, + "122304724": { + "name": "class SharedPointer", + "bases": [ + "Window", + "PropertyClass" + ], + "hash": 122304724, + "properties": { + "m_sName": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306437263 + }, + "m_Children": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621225959 + }, + "m_Style": { + "type": "unsigned int", + "id": 2, + "offset": 152, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "SCALE_CHILDREN": 2, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "FOCUS_LOCKED": 64, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152 + } + }, + "m_Flags": { + "type": "unsigned int", + "id": 3, + "offset": 156, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } + }, + "m_Window": { + "type": "class Rect", + "id": 4, + "offset": 160, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3105139380 + }, + "m_fTargetAlpha": { + "type": "float", + "id": 5, + "offset": 212, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1809129834 + }, + "m_fDisabledAlpha": { + "type": "float", + "id": 6, + "offset": 216, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1389987675 + }, + "m_fAlpha": { + "type": "float", + "id": 7, + "offset": 208, + "flags": 65671, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 482130755 + }, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3623628394 + }, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2102211316 + }, + "m_sScript": { + "type": "std::string", + "id": 10, + "offset": 352, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1846695875 + }, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3389835433 + }, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547159940 + }, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513510520 + }, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3091503757 + } + } + }, + "122015576": { + "name": "class PvPCurrencyBonusLootInfo", + "bases": [ + "LootInfo", + "LootInfoBase", + "PropertyClass" + ], + "hash": 122015576, + "properties": { + "m_lootType": { + "type": "enum LootInfo::LOOT_TYPE", + "id": 0, + "offset": 72, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1591891442, + "enum_options": { + "LOOT_TYPE_NONE": 0, + "LOOT_TYPE_GOLD": 1, + "LOOT_TYPE_MANA": 2, + "LOOT_TYPE_ITEM": 3, + "LOOT_TYPE_TREASURE_CARD": 4, + "LOOT_TYPE_MAGIC_XP": 5, + "LOOT_TYPE_ADD_SPELL": 6, + "LOOT_TYPE_MAX_HEALTH": 7, + "LOOT_TYPE_MAX_GOLD": 8, + "LOOT_TYPE_MAX_MANA": 9, + "LOOT_TYPE_MAX_POTION": 10, + "LOOT_TYPE_TRAINING_POINTS": 11, + "LOOT_TYPE_RECIPE": 12, + "LOOT_TYPE_CRAFTING_SLOT": 13, + "LOOT_TYPE_REAGENT": 14, + "LOOT_TYPE_PETSNACK": 15, + "LOOT_TYPE_GARDENING_XP": 16, + "LOOT_TYPE_PET_XP": 17, + "LOOT_TYPE_TREASURE_TABLE": 18, + "LOOT_TYPE_ARENA_POINTS": 19, + "LOOT_TYPE_ARENA_BONUS_POINTS": 20, + "LOOT_TYPE_GROUP": 21, + "LOOT_TYPE_FISHING_XP": 22, + "LOOT_TYPE_EVENT_CURRENCY_1": 24, + "LOOT_TYPE_EVENT_CURRENCY_2": 25, + "LOOT_TYPE_PVP_CURRENCY": 26, + "LOOT_TYPE_PVP_CURRENCY_BONUS": 27, + "LOOT_TYPE_PVP_TOURNEY_CURRENCY": 28, + "LOOT_TYPE_PVP_TOURNEY_CURRENCY_BONUS": 29, + "LOOT_TYPE_FURNITURE_ESSENCE": 30 + } + }, + "m_pvpCurrencyBonusAmount": { + "type": "int", + "id": 1, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 447030870 + } + } + }, + "545830997": { + "name": "class IgnoreEntryDataList*", + "bases": [ + "PropertyClass" + ], + "hash": 545830997, + "properties": { + "m_ignoreDataList": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2636534189 + } + } + }, + "1397124761": { + "name": "class AddBacklashEffectCinematicAction*", + "bases": [ + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 1397124761, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + }, + "m_backlashEffect": { + "type": "std::string", + "id": 2, + "offset": 120, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3051687009 + } + } + }, + "1825404303": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1825404303, + "properties": { + "m_activeProjectList": { + "type": "unsigned int", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 284210684 + } + } + }, + "980944407": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 980944407, + "properties": { + "m_trackID": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 703251290 + }, + "m_zone": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1717806295 + }, + "m_key": { + "type": "std::string", + "id": 2, + "offset": 112, + "flags": 8388639, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1764739684 + }, + "m_rank": { + "type": "unsigned char", + "id": 3, + "offset": 144, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 857403388 + }, + "m_lapCount": { + "type": "unsigned char", + "id": 4, + "offset": 145, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 791794870 + } + } + }, + "1397007994": { + "name": "class ClientQuantityBehavior", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1397007994, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_quantity": { + "type": "int", + "id": 1, + "offset": 112, + "flags": 27, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 169215289 + } + } + }, + "546055718": { + "name": "class RegistrarOptions", + "bases": [ + "PropertyClass" + ], + "hash": 546055718, + "properties": { + "m_focusOptions": { + "type": "class SchoolOfFocusOption*", + "id": 0, + "offset": 72, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1945607055 + }, + "m_titleOptions": { + "type": "class TitleOption*", + "id": 1, + "offset": 88, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 755264106 + }, + "m_currentSchoolID": { + "type": "unsigned int", + "id": 2, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1800324389 + }, + "m_currentTitleKey": { + "type": "std::string", + "id": 3, + "offset": 112, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2379937417 + } + } + }, + "122951263": { + "name": "class BadgeFilter", + "bases": [ + "PropertyClass" + ], + "hash": 122951263, + "properties": {} + }, + "980685453": { + "name": "class BadgeFilterInfo", + "bases": [ + "PropertyClass" + ], + "hash": 980685453, + "properties": { + "m_badgeFilterNameID": { + "type": "unsigned int", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2064078516 + }, + "m_numberOfBadges": { + "type": "int", + "id": 1, + "offset": 76, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1438042878 + }, + "m_numberOfExtraCreditBadges": { + "type": "int", + "id": 2, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 301196253 + } + } + }, + "1397024285": { + "name": "class std::list >", + "bases": [], + "hash": 1397024285, + "properties": {} + }, + "1827867278": { + "name": "class ReqHangingWard*", + "bases": [ + "ConditionalSpellEffectRequirement", + "Requirement", + "PropertyClass" + ], + "hash": 1827867278, + "properties": { + "m_applyNOT": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1746328074, + "enum_options": { + "__DEFAULT": 0 + } + }, + "m_operator": { + "type": "enum Requirement::Operator", + "id": 1, + "offset": 76, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2672792317, + "enum_options": { + "ROP_AND": 0, + "ROP_OR": 1, + "__DEFAULT": "ROP_AND" + } + }, + "m_targetType": { + "type": "enum ConditionalSpellEffectRequirement::RequirementTarget", + "id": 2, + "offset": 80, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547737902, + "enum_options": { + "RT_Caster": 0, + "RT_Target": 1 + } + }, + "m_disposition": { + "type": "enum SpellEffect::kHangingDisposition", + "id": 3, + "offset": 88, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1904841031, + "enum_options": { + "SpellEffect::kBoth": 0, + "SpellEffect::kBeneficial": 1, + "SpellEffect::kHarmful": 2 + } + }, + "m_minCount": { + "type": "int", + "id": 4, + "offset": 92, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1486503815 + }, + "m_maxCount": { + "type": "int", + "id": 5, + "offset": 96, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 136048585 + } + } + }, + "549596931": { + "name": "class PolymorphCinematicAction*", + "bases": [ + "CinematicAction", + "PropertyClass" + ], + "hash": 549596931, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + } + } + }, + "1827867182": { + "name": "class ReqHangingWard", + "bases": [ + "ConditionalSpellEffectRequirement", + "Requirement", + "PropertyClass" + ], + "hash": 1827867182, + "properties": { + "m_applyNOT": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1746328074, + "enum_options": { + "__DEFAULT": 0 + } + }, + "m_operator": { + "type": "enum Requirement::Operator", + "id": 1, + "offset": 76, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2672792317, + "enum_options": { + "ROP_AND": 0, + "ROP_OR": 1, + "__DEFAULT": "ROP_AND" + } + }, + "m_targetType": { + "type": "enum ConditionalSpellEffectRequirement::RequirementTarget", + "id": 2, + "offset": 80, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547737902, + "enum_options": { + "RT_Caster": 0, + "RT_Target": 1 + } + }, + "m_disposition": { + "type": "enum SpellEffect::kHangingDisposition", + "id": 3, + "offset": 88, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1904841031, + "enum_options": { + "SpellEffect::kBoth": 0, + "SpellEffect::kBeneficial": 1, + "SpellEffect::kHarmful": 2 + } + }, + "m_minCount": { + "type": "int", + "id": 4, + "offset": 92, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1486503815 + }, + "m_maxCount": { + "type": "int", + "id": 5, + "offset": 96, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 136048585 + } + } + }, + "138219082": { + "name": "class std::vector,class std::allocator > >", + "bases": [], + "hash": 138219082, + "properties": {} + }, + "982408862": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 982408862, + "properties": { + "m_sBadgeName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1846044066 + }, + "m_hasBadge": { + "type": "bool", + "id": 1, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1597294914 + } + } + }, + "547271908": { + "name": "class PetAnimateActorCinematicAction", + "bases": [ + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 547271908, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + }, + "m_animation": { + "type": "std::string", + "id": 2, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3431428731 + } + } + }, + "132220454": { + "name": "class MatchRequest", + "bases": [ + "PropertyClass" + ], + "hash": 132220454, + "properties": { + "m_characterID": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 210498386 + }, + "m_tournamentNameID": { + "type": "unsigned int", + "id": 1, + "offset": 84, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1799846440 + }, + "m_matchNameID": { + "type": "unsigned int", + "id": 2, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1751361288 + }, + "m_leagueID": { + "type": "unsigned int", + "id": 3, + "offset": 88, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 692361645 + }, + "m_seasonID": { + "type": "unsigned int", + "id": 4, + "offset": 92, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 535260643 + }, + "m_teams": { + "type": "class SharedPointer", + "id": 5, + "offset": 96, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1984373608 + } + } + }, + "1397200460": { + "name": "class AttachEffectToTurnIndicatorCinematicAction", + "bases": [ + "CinematicAction", + "PropertyClass" + ], + "hash": 1397200460, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_minDuration": { + "type": "float", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1733171553 + }, + "m_assetName": { + "type": "std::string", + "id": 2, + "offset": 88, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513131580 + } + } + }, + "130186975": { + "name": "class MountSoundBehavior", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 130186975, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + } + } + }, + "546083878": { + "name": "class RegistrarOption*", + "bases": [ + "ServiceOptionBase", + "PropertyClass" + ], + "hash": 546083878, + "properties": { + "m_serviceName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2206028813 + }, + "m_iconKey": { + "type": "std::string", + "id": 1, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2457138637 + }, + "m_displayKey": { + "type": "std::string", + "id": 2, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3023276954 + }, + "m_serviceIndex": { + "type": "unsigned int", + "id": 3, + "offset": 204, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2103126710 + }, + "m_forceInteract": { + "type": "bool", + "id": 4, + "offset": 200, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1705789564 + } + } + }, + "1828026494": { + "name": "class StopComplexSoundCinematicAction*", + "bases": [ + "CinematicAction", + "PropertyClass" + ], + "hash": 1828026494, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_sound": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2307644996 + }, + "m_stopAllLoopingSounds": { + "type": "bool", + "id": 2, + "offset": 112, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1944220294 + }, + "m_fadeDuration": { + "type": "float", + "id": 3, + "offset": 116, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1402536557 + } + } + }, + "126910823": { + "name": "class BattlegroundTeamData", + "bases": [ + "PropertyClass" + ], + "hash": 126910823, + "properties": { + "m_projectID": { + "type": "unsigned int", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1263221425 + }, + "m_teamListA": { + "type": "gid", + "id": 1, + "offset": 80, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1624915612 + }, + "m_teamListB": { + "type": "gid", + "id": 2, + "offset": 96, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1624915613 + } + } + }, + "983962843": { + "name": "class GeomParams*", + "bases": [ + "PropertyClass" + ], + "hash": 983962843, + "properties": { + "m_eType": { + "type": "enum ProxyType", + "id": 0, + "offset": 72, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1656534066, + "enum_options": { + "ProxyTypeBox": 0, + "ProxyTypeRay": 1, + "ProxyTypeSphere": 2, + "ProxyTypeCylinder": 3, + "ProxyTypeTube": 4, + "ProxyTypePlane": 5, + "ProxyTypeMesh": 6, + "ProxyTypeInvalid": 7 + } + } + } + }, + "124892092": { + "name": "class MoveActorCinematicAction*", + "bases": [ + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 124892092, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + }, + "m_destinationActor": { + "type": "std::string", + "id": 2, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1510240374 + }, + "m_interpolationDuration": { + "type": "float", + "id": 3, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1458058437 + }, + "m_interpolateRotation": { + "type": "bool", + "id": 4, + "offset": 156, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2140337898 + }, + "m_kDestination": { + "type": "enum MoveActorCinematicAction::kMoveActorDestination", + "id": 5, + "offset": 160, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2027574244, + "enum_options": { + "kCenter": 0, + "kHome": 3, + "kActor": 1, + "kActorHangingEffect": 2 + } + }, + "m_destinationZOffset": { + "type": "float", + "id": 6, + "offset": 164, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2188240922 + } + } + }, + "982965494": { + "name": "class TournamentConfig*", + "bases": [ + "PropertyClass" + ], + "hash": 982965494, + "properties": { + "m_principalTournamentNames": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 268435463, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 3082525214, + "enum_options": { + "__BASECLASS": "TournamentTemplate" + } + }, + "m_temporaryTournamentNames": { + "type": "std::string", + "id": 1, + "offset": 96, + "flags": 268435463, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1792424127, + "enum_options": { + "__BASECLASS": "TournamentTemplate" + } + }, + "m_observerTimeout": { + "type": "int", + "id": 2, + "offset": 76, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 562500777 + }, + "m_forfeitTimeout": { + "type": "int", + "id": 3, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 688716240 + }, + "m_activeSeason": { + "type": "unsigned int", + "id": 4, + "offset": 112, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 277598322 + }, + "m_maxUpdateTime": { + "type": "unsigned int", + "id": 5, + "offset": 116, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1535609605 + }, + "m_maxUpdateCount": { + "type": "unsigned int", + "id": 6, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 937799039 + }, + "m_cacheUpdateTime": { + "type": "unsigned int", + "id": 7, + "offset": 124, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 887219635 + }, + "m_bracketScheduleFilename": { + "type": "std::string", + "id": 8, + "offset": 128, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3625222117 + }, + "m_bracketStringTableFilename": { + "type": "std::string", + "id": 9, + "offset": 160, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2974204087 + }, + "m_bracketRewardsPlaceMappingList": { + "type": "class SharedPointer", + "id": 10, + "offset": 192, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 3271398156 + } + } + }, + "1399036544": { + "name": "class LevelUpElixirSchoolSpecificData", + "bases": [ + "PropertyClass" + ], + "hash": 1399036544, + "properties": { + "m_schoolID": { + "type": "unsigned int", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 369010242 + }, + "m_spellsToGive": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 3002626524 + }, + "m_questsToComplete": { + "type": "std::string", + "id": 2, + "offset": 96, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 3386208316 + }, + "m_questsToAdd": { + "type": "std::string", + "id": 3, + "offset": 112, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2101794028 + }, + "m_itemsToPlaceInInventory": { + "type": "unsigned int", + "id": 4, + "offset": 128, + "flags": 33554439, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 792703868 + }, + "m_gearToEquip": { + "type": "unsigned int", + "id": 5, + "offset": 144, + "flags": 33554439, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1383467923 + }, + "m_teleportToZoneOnComplete": { + "type": "std::string", + "id": 6, + "offset": 176, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2109587583 + }, + "m_badgesToComplete": { + "type": "std::string", + "id": 7, + "offset": 160, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2133622941 + }, + "m_schoolName": { + "type": "std::string", + "id": 8, + "offset": 208, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3385349572 + }, + "m_propertyRegistryEntires": { + "type": "class LevelUpElixirPropertyRegistryEntry", + "id": 9, + "offset": 240, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2009387835 + }, + "m_addTrainingPointIfQuestNotComplete": { + "type": "std::string", + "id": 10, + "offset": 256, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 3422771029 + } + } + }, + "123974470": { + "name": "class TimedItemBehaviorTemplate*", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 123974470, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + }, + "m_expireTime": { + "type": "std::string", + "id": 1, + "offset": 128, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3122602039 + }, + "m_timerType": { + "type": "enum TimerType", + "id": 2, + "offset": 120, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 571744132, + "enum_options": { + "TimerType_Game": 0, + "TimerType_Calendar": 1 + } + } + } + }, + "982839443": { + "name": "class BGPolymorphSelectBehavior", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 982839443, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_polyCategoryInactiveToRedTeamPlayers": { + "type": "gid", + "id": 1, + "offset": 112, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 757020210 + }, + "m_polyCategoryUnavailableToRedTeamPlayers": { + "type": "gid", + "id": 2, + "offset": 128, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1382977667 + }, + "m_polyCategoryInactiveToBlueTeamPlayers": { + "type": "gid", + "id": 3, + "offset": 144, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1877669599 + }, + "m_polyCategoryUnavailableToBlueTeamPlayers": { + "type": "gid", + "id": 4, + "offset": 160, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1059429200 + } + } + }, + "1398131030": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1398131030, + "properties": { + "m_realmName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3507983949 + }, + "m_displayName": { + "type": "std::wstring", + "id": 1, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2242885711 + }, + "m_realmPopulation": { + "type": "int", + "id": 2, + "offset": 136, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1904140438 + } + } + }, + "546503866": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 546503866, + "properties": { + "m_worldList": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1846694527 + }, + "m_imageList": { + "type": "std::string", + "id": 1, + "offset": 88, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2391457594 + }, + "m_initialImage": { + "type": "std::string", + "id": 2, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2043562056 + } + } + }, + "1828751226": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1828751226, + "properties": { + "m_place": { + "type": "int", + "id": 0, + "offset": 72, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 806257663 + }, + "m_lootTableNameList": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2465726014 + }, + "m_lootTableNameBlob": { + "type": "std::string", + "id": 2, + "offset": 96, + "flags": 551, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2465369761 + }, + "m_templateIDList": { + "type": "unsigned int", + "id": 3, + "offset": 128, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1639803570 + }, + "m_templateIDListBlob": { + "type": "std::string", + "id": 4, + "offset": 144, + "flags": 551, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3246130975 + }, + "m_rewardDescriptor": { + "type": "std::string", + "id": 5, + "offset": 176, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1935206431 + } + } + }, + "123908666": { + "name": "class SharedPointer", + "bases": [ + "WindowAnimation", + "PropertyClass" + ], + "hash": 123908666, + "properties": { + "m_bUseDeepCopy": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 433380635 + }, + "m_facing": { + "type": "enum DoodleDoug::DdDirection", + "id": 1, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 591537519 + }, + "m_direction": { + "type": "enum DoodleDoug::DdDirection", + "id": 2, + "offset": 84, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1599953256 + }, + "m_fSpeed": { + "type": "float", + "id": 3, + "offset": 88, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 503609006 + }, + "m_currentLocation": { + "type": "class Vector3D", + "id": 4, + "offset": 92, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3670997758 + }, + "m_targetLocation": { + "type": "class Vector3D", + "id": 5, + "offset": 104, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2653859938 + }, + "m_myBoard": { + "type": "class DoodleDoug*", + "id": 6, + "offset": 120, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2212758093 + } + } + }, + "1398013990": { + "name": "class HousingSignBehaviorBase", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1398013990, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_packedName": { + "type": "std::string", + "id": 1, + "offset": 112, + "flags": 65543, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1805208228 + }, + "m_signText": { + "type": "std::string", + "id": 2, + "offset": 144, + "flags": 65543, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2920366641 + } + } + }, + "546219558": { + "name": "class RegistrarOptions*", + "bases": [ + "PropertyClass" + ], + "hash": 546219558, + "properties": { + "m_focusOptions": { + "type": "class SchoolOfFocusOption*", + "id": 0, + "offset": 72, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1945607055 + }, + "m_titleOptions": { + "type": "class TitleOption*", + "id": 1, + "offset": 88, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 755264106 + }, + "m_currentSchoolID": { + "type": "unsigned int", + "id": 2, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1800324389 + }, + "m_currentTitleKey": { + "type": "std::string", + "id": 3, + "offset": 112, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2379937417 + } + } + }, + "1828534199": { + "name": "class AvatarItemInfo", + "bases": [ + "AvatarItemInfoBase", + "PropertyClass" + ], + "hash": 1828534199, + "properties": { + "m_partName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2609631923 + }, + "m_slotName": { + "type": "std::string", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2819781566 + }, + "m_flags": { + "type": "std::string", + "id": 2, + "offset": 144, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2292098216 + }, + "m_options": { + "type": "class SharedPointer", + "id": 3, + "offset": 160, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2499357824 + }, + "m_textureOptions": { + "type": "class SharedPointer", + "id": 4, + "offset": 176, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2667548348 + }, + "m_defaultOption": { + "type": "class SharedPointer", + "id": 5, + "offset": 192, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2436336754 + }, + "m_defaultTextureOption": { + "type": "class SharedPointer", + "id": 6, + "offset": 208, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2712636654 + } + } + }, + "1397782695": { + "name": "class HousingSignBehavior*", + "bases": [ + "HousingSignBehaviorBase", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1397782695, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_packedName": { + "type": "std::string", + "id": 1, + "offset": 112, + "flags": 65543, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1805208228 + }, + "m_signText": { + "type": "std::string", + "id": 2, + "offset": 144, + "flags": 65543, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2920366641 + } + } + }, + "983246711": { + "name": "class PetDerbyRacerStats*", + "bases": [ + "PropertyClass" + ], + "hash": 983246711, + "properties": { + "m_initialStats": { + "type": "class PetStat", + "id": 0, + "offset": 72, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2249155308 + } + } + }, + "1828588173": { + "name": "class BadgeFilterInfoList", + "bases": [ + "PropertyClass" + ], + "hash": 1828588173, + "properties": { + "m_badgeFilterInfoList": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2012631232 + } + } + }, + "124075117": { + "name": "class MadlibArgT,class std::allocator > >*", + "bases": [ + "MadlibArg", + "PropertyClass" + ], + "hash": 124075117, + "properties": { + "m_madlibToken": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3058682373 + }, + "m_madlibArgument": { + "type": "std::wstring", + "id": 1, + "offset": 112, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2172177124 + } + } + }, + "546978947": { + "name": "class ClientEquipmentBehavior*", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 546978947, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_itemList": { + "type": "class SharedPointer", + "id": 1, + "offset": 120, + "flags": 27, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1983655699 + }, + "m_slotList": { + "type": "class SharedPointer", + "id": 2, + "offset": 136, + "flags": 27, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 3213026923 + }, + "m_publicItemList": { + "type": "class SharedPointer", + "id": 3, + "offset": 152, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1693467991 + } + } + }, + "984356059": { + "name": "class GeomParams", + "bases": [ + "PropertyClass" + ], + "hash": 984356059, + "properties": { + "m_eType": { + "type": "enum ProxyType", + "id": 0, + "offset": 72, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1656534066, + "enum_options": { + "ProxyTypeBox": 0, + "ProxyTypeRay": 1, + "ProxyTypeSphere": 2, + "ProxyTypeCylinder": 3, + "ProxyTypeTube": 4, + "ProxyTypePlane": 5, + "ProxyTypeMesh": 6, + "ProxyTypeInvalid": 7 + } + } + } + }, + "1399015043": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1399015043, + "properties": { + "m_effectIndex": { + "type": "int", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 350070655 + }, + "m_chosenSubEffect": { + "type": "int", + "id": 1, + "offset": 76, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1555389905 + } + } + }, + "1830106368": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1830106368, + "properties": { + "m_image": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2295691902 + }, + "m_rect": { + "type": "class Rect", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1325069066 + }, + "m_onTags": { + "type": "std::string", + "id": 2, + "offset": 136, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2294335367 + }, + "m_label": { + "type": "std::string", + "id": 3, + "offset": 216, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2298819451 + }, + "m_displayText": { + "type": "std::string", + "id": 4, + "offset": 248, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2447120726 + }, + "m_margins": { + "type": "class Rect", + "id": 5, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2860673101 + }, + "m_childIds": { + "type": "unsigned int", + "id": 6, + "offset": 168, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1423756721 + }, + "m_id": { + "type": "unsigned int", + "id": 7, + "offset": 160, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2301988666 + }, + "m_bIgnoresMouse": { + "type": "bool", + "id": 8, + "offset": 292, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2149274933 + }, + "m_templateID": { + "type": "unsigned int", + "id": 9, + "offset": 312, + "flags": 33554439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1286746870 + }, + "m_childDisplayText": { + "type": "std::string", + "id": 10, + "offset": 320, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3062136730 + }, + "m_childImage": { + "type": "std::string", + "id": 11, + "offset": 352, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3100605890 + }, + "m_childRect": { + "type": "class Rect", + "id": 12, + "offset": 384, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2455739854 + }, + "m_childMargins": { + "type": "class Rect", + "id": 13, + "offset": 400, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3238677649 + }, + "m_displayRequirements": { + "type": "class RequirementList*", + "id": 14, + "offset": 424, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3646782876 + } + } + }, + "126910799": { + "name": "class BattlegroundTeamData*", + "bases": [ + "PropertyClass" + ], + "hash": 126910799, + "properties": { + "m_projectID": { + "type": "unsigned int", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1263221425 + }, + "m_teamListA": { + "type": "gid", + "id": 1, + "offset": 80, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1624915612 + }, + "m_teamListB": { + "type": "gid", + "id": 2, + "offset": 96, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1624915613 + } + } + }, + "548301456": { + "name": "class ZoneTokenCount", + "bases": [ + "ZoneTokenBase", + "PropertyClass" + ], + "hash": 548301456, + "properties": { + "m_debugName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3553984419 + }, + "m_adjectiveList": { + "type": "std::string", + "id": 1, + "offset": 104, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 3195213318 + }, + "m_icon": { + "type": "std::string", + "id": 2, + "offset": 120, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1717182340 + }, + "m_iconBW": { + "type": "std::string", + "id": 3, + "offset": 152, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2047461085 + }, + "m_description": { + "type": "std::string", + "id": 4, + "offset": 184, + "flags": 8388639, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1649374815 + }, + "m_displayMode": { + "type": "enum ZTDisplayMode", + "id": 5, + "offset": 216, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2216526410, + "enum_options": { + "ZTDM_Shown": 0, + "ZTDM_Discoverable": 1, + "ZTDM_Hidden": 2 + } + }, + "m_storage": { + "type": "enum ZTStorage", + "id": 6, + "offset": 220, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2290454852, + "enum_options": { + "ZTS_Player": 0, + "ZTS_Zone": 1 + } + }, + "m_onEnable": { + "type": "class SharedPointer", + "id": 7, + "offset": 224, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2591736864 + }, + "m_onDiscover": { + "type": "class SharedPointer", + "id": 8, + "offset": 240, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2826026872 + }, + "m_onDisable": { + "type": "class SharedPointer", + "id": 9, + "offset": 256, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1860656717 + }, + "m_sourceID": { + "type": "gid", + "id": 10, + "offset": 272, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1134700470 + }, + "m_inZone": { + "type": "bool", + "id": 11, + "offset": 280, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 564535654 + }, + "m_enabled": { + "type": "bool", + "id": 12, + "offset": 281, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 504506718 + }, + "m_discovered": { + "type": "bool", + "id": 13, + "offset": 282, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2060478331 + }, + "m_minValue": { + "type": "int", + "id": 14, + "offset": 288, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1508523611 + }, + "m_startValue": { + "type": "int", + "id": 15, + "offset": 292, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 672067813 + }, + "m_maxValue": { + "type": "int", + "id": 16, + "offset": 296, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 158068381 + }, + "m_curValue": { + "type": "int", + "id": 17, + "offset": 300, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1147627809 + }, + "m_counterType": { + "type": "enum ZTCounterType", + "id": 18, + "offset": 304, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1417526179, + "enum_options": { + "ZTCT_Full": 0, + "ZTCT_Count": 1, + "ZTCT_Meter": 2, + "ZTCT_Hidden": 3 + } + }, + "m_onIncrease": { + "type": "class SharedPointer", + "id": 19, + "offset": 312, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2723490243 + }, + "m_onDecrease": { + "type": "class SharedPointer", + "id": 20, + "offset": 328, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1346363029 + }, + "m_onEmpty": { + "type": "class SharedPointer", + "id": 21, + "offset": 344, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1658398600 + }, + "m_onFull": { + "type": "class SharedPointer", + "id": 22, + "offset": 360, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1955555436 + } + } + }, + "1830098913": { + "name": "class SeedBehavior", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1830098913, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + } + } + }, + "126116362": { + "name": "class CombatTimerListObj*", + "bases": [ + "PropertyClass" + ], + "hash": 126116362, + "properties": { + "m_timeList": { + "type": "class ParticipantParameter", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2652015083 + }, + "m_duelID.m_full": { + "type": "unsigned __int64", + "id": 1, + "offset": 88, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1024980477 + } + } + }, + "984388735": { + "name": "class HatchmakingCrownsPetList", + "bases": [ + "PropertyClass" + ], + "hash": 984388735, + "properties": { + "m_petTemplateList": { + "type": "unsigned int", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 567776494 + } + } + }, + "548301360": { + "name": "class ZoneTokenCount*", + "bases": [ + "ZoneTokenBase", + "PropertyClass" + ], + "hash": 548301360, + "properties": { + "m_debugName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3553984419 + }, + "m_adjectiveList": { + "type": "std::string", + "id": 1, + "offset": 104, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 3195213318 + }, + "m_icon": { + "type": "std::string", + "id": 2, + "offset": 120, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1717182340 + }, + "m_iconBW": { + "type": "std::string", + "id": 3, + "offset": 152, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2047461085 + }, + "m_description": { + "type": "std::string", + "id": 4, + "offset": 184, + "flags": 8388639, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1649374815 + }, + "m_displayMode": { + "type": "enum ZTDisplayMode", + "id": 5, + "offset": 216, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2216526410, + "enum_options": { + "ZTDM_Shown": 0, + "ZTDM_Discoverable": 1, + "ZTDM_Hidden": 2 + } + }, + "m_storage": { + "type": "enum ZTStorage", + "id": 6, + "offset": 220, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2290454852, + "enum_options": { + "ZTS_Player": 0, + "ZTS_Zone": 1 + } + }, + "m_onEnable": { + "type": "class SharedPointer", + "id": 7, + "offset": 224, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2591736864 + }, + "m_onDiscover": { + "type": "class SharedPointer", + "id": 8, + "offset": 240, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2826026872 + }, + "m_onDisable": { + "type": "class SharedPointer", + "id": 9, + "offset": 256, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1860656717 + }, + "m_sourceID": { + "type": "gid", + "id": 10, + "offset": 272, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1134700470 + }, + "m_inZone": { + "type": "bool", + "id": 11, + "offset": 280, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 564535654 + }, + "m_enabled": { + "type": "bool", + "id": 12, + "offset": 281, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 504506718 + }, + "m_discovered": { + "type": "bool", + "id": 13, + "offset": 282, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2060478331 + }, + "m_minValue": { + "type": "int", + "id": 14, + "offset": 288, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1508523611 + }, + "m_startValue": { + "type": "int", + "id": 15, + "offset": 292, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 672067813 + }, + "m_maxValue": { + "type": "int", + "id": 16, + "offset": 296, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 158068381 + }, + "m_curValue": { + "type": "int", + "id": 17, + "offset": 300, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1147627809 + }, + "m_counterType": { + "type": "enum ZTCounterType", + "id": 18, + "offset": 304, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1417526179, + "enum_options": { + "ZTCT_Full": 0, + "ZTCT_Count": 1, + "ZTCT_Meter": 2, + "ZTCT_Hidden": 3 + } + }, + "m_onIncrease": { + "type": "class SharedPointer", + "id": 19, + "offset": 312, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2723490243 + }, + "m_onDecrease": { + "type": "class SharedPointer", + "id": 20, + "offset": 328, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1346363029 + }, + "m_onEmpty": { + "type": "class SharedPointer", + "id": 21, + "offset": 344, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1658398600 + }, + "m_onFull": { + "type": "class SharedPointer", + "id": 22, + "offset": 360, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1955555436 + } + } + }, + "1399397008": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1399397008, + "properties": { + "m_healthList": { + "type": "class ParticipantParameter", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2874774642 + }, + "m_duelID.m_full": { + "type": "unsigned __int64", + "id": 1, + "offset": 88, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1024980477 + } + } + }, + "1399316746": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1399316746, + "properties": { + "m_projectID": { + "type": "unsigned int", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1263221425 + }, + "m_countdownSeconds": { + "type": "float", + "id": 1, + "offset": 76, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 255072071 + }, + "m_matchSize": { + "type": "int", + "id": 2, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 563704930 + }, + "m_cancelCooldownSeconds": { + "type": "int", + "id": 3, + "offset": 84, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1074662868 + }, + "m_teamCount": { + "type": "int", + "id": 4, + "offset": 88, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1614476394 + }, + "m_matchmakingList": { + "type": "class SharedPointer", + "id": 5, + "offset": 96, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 3012888769 + } + } + }, + "1831314281": { + "name": "enum CantripsSpellTemplate::CantripsSpellEffect", + "bases": [], + "hash": 1831314281, + "properties": {} + }, + "991279519": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 991279519, + "properties": { + "m_templateID": { + "type": "unsigned int", + "id": 0, + "offset": 72, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1286746870 + }, + "m_enchantment": { + "type": "unsigned int", + "id": 1, + "offset": 76, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2217886818 + }, + "m_quantity": { + "type": "unsigned int", + "id": 2, + "offset": 80, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 380617740 + } + } + }, + "549014187": { + "name": "class SharedPointer", + "bases": [ + "CinematicAction", + "PropertyClass" + ], + "hash": 549014187, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_camToReplace": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2286913643 + } + } + }, + "1830269644": { + "name": "class CinematicActorAnimationContainer", + "bases": [ + "PropertyClass" + ], + "hash": 1830269644, + "properties": { + "m_templateID": { + "type": "unsigned int", + "id": 0, + "offset": 72, + "flags": 71, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1286746870 + }, + "m_actorName": { + "type": "std::string", + "id": 1, + "offset": 96, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2050810421 + }, + "m_animations": { + "type": "class SharedPointer", + "id": 2, + "offset": 128, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2741681697 + }, + "m_templateIDs": { + "type": "unsigned int", + "id": 3, + "offset": 80, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1335199401 + } + } + }, + "127364549": { + "name": "class ClientProvidePetPower*", + "bases": [ + "ProvidePetPower", + "GameEffectBase", + "PropertyClass" + ], + "hash": 127364549, + "properties": { + "m_currentTickCount": { + "type": "double", + "id": 0, + "offset": 80, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2533274692 + }, + "m_effectNameID": { + "type": "unsigned int", + "id": 1, + "offset": 96, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1204067144 + }, + "m_bIsOnPet": { + "type": "bool", + "id": 2, + "offset": 73, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 522593303 + }, + "m_originatorID": { + "type": "gid", + "id": 3, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1131810019 + }, + "m_itemSlotID": { + "type": "unsigned int", + "id": 4, + "offset": 112, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1895747595 + }, + "m_internalID": { + "type": "int", + "id": 5, + "offset": 92, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1643137924 + }, + "m_endTime": { + "type": "unsigned int", + "id": 6, + "offset": 88, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 716479635 + }, + "m_happinessCost": { + "type": "int", + "id": 7, + "offset": 128, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1107125310 + }, + "m_cooldown": { + "type": "int", + "id": 8, + "offset": 132, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1897549823 + }, + "m_usesPerCombat": { + "type": "int", + "id": 9, + "offset": 136, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1445312791 + }, + "m_combatTalent": { + "type": "bool", + "id": 10, + "offset": 140, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2113651857 + }, + "m_triggerName": { + "type": "std::string", + "id": 11, + "offset": 144, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3100183568 + }, + "m_extra1": { + "type": "std::string", + "id": 12, + "offset": 176, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1916008880 + }, + "m_extra2": { + "type": "std::string", + "id": 13, + "offset": 208, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1916008881 + }, + "m_lootTableName": { + "type": "std::string", + "id": 14, + "offset": 240, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2333333378 + }, + "m_powerDisplayName": { + "type": "std::string", + "id": 15, + "offset": 272, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2338393887 + }, + "m_requirementList": { + "type": "class SharedPointer", + "id": 16, + "offset": 304, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3783909798 + }, + "m_requirementFailedString": { + "type": "std::string", + "id": 17, + "offset": 320, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2051573416 + }, + "m_noPVP": { + "type": "bool", + "id": 18, + "offset": 356, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 806455846 + }, + "m_rampUp": { + "type": "int", + "id": 19, + "offset": 360, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 899539119 + }, + "m_description": { + "type": "std::string", + "id": 20, + "offset": 368, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1649374815 + }, + "m_myTurn": { + "type": "bool", + "id": 21, + "offset": 400, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 733913410 + } + } + }, + "987802706": { + "name": "class ActorDeathCinematicAction", + "bases": [ + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 987802706, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + } + } + }, + "127363269": { + "name": "class ClientProvidePetPower", + "bases": [ + "ProvidePetPower", + "GameEffectBase", + "PropertyClass" + ], + "hash": 127363269, + "properties": { + "m_currentTickCount": { + "type": "double", + "id": 0, + "offset": 80, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2533274692 + }, + "m_effectNameID": { + "type": "unsigned int", + "id": 1, + "offset": 96, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1204067144 + }, + "m_bIsOnPet": { + "type": "bool", + "id": 2, + "offset": 73, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 522593303 + }, + "m_originatorID": { + "type": "gid", + "id": 3, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1131810019 + }, + "m_itemSlotID": { + "type": "unsigned int", + "id": 4, + "offset": 112, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1895747595 + }, + "m_internalID": { + "type": "int", + "id": 5, + "offset": 92, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1643137924 + }, + "m_endTime": { + "type": "unsigned int", + "id": 6, + "offset": 88, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 716479635 + }, + "m_happinessCost": { + "type": "int", + "id": 7, + "offset": 128, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1107125310 + }, + "m_cooldown": { + "type": "int", + "id": 8, + "offset": 132, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1897549823 + }, + "m_usesPerCombat": { + "type": "int", + "id": 9, + "offset": 136, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1445312791 + }, + "m_combatTalent": { + "type": "bool", + "id": 10, + "offset": 140, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2113651857 + }, + "m_triggerName": { + "type": "std::string", + "id": 11, + "offset": 144, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3100183568 + }, + "m_extra1": { + "type": "std::string", + "id": 12, + "offset": 176, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1916008880 + }, + "m_extra2": { + "type": "std::string", + "id": 13, + "offset": 208, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1916008881 + }, + "m_lootTableName": { + "type": "std::string", + "id": 14, + "offset": 240, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2333333378 + }, + "m_powerDisplayName": { + "type": "std::string", + "id": 15, + "offset": 272, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2338393887 + }, + "m_requirementList": { + "type": "class SharedPointer", + "id": 16, + "offset": 304, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3783909798 + }, + "m_requirementFailedString": { + "type": "std::string", + "id": 17, + "offset": 320, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2051573416 + }, + "m_noPVP": { + "type": "bool", + "id": 18, + "offset": 356, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 806455846 + }, + "m_rampUp": { + "type": "int", + "id": 19, + "offset": 360, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 899539119 + }, + "m_description": { + "type": "std::string", + "id": 20, + "offset": 368, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1649374815 + }, + "m_myTurn": { + "type": "bool", + "id": 21, + "offset": 400, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 733913410 + } + } + }, + "985603441": { + "name": "class SharedPointer", + "bases": [ + "SpellCardAttachmentCinematicAction", + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 985603441, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + }, + "m_nodeName": { + "type": "std::string", + "id": 2, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3607089954 + }, + "m_offset": { + "type": "class Vector3D", + "id": 3, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2445636425 + }, + "m_rotation": { + "type": "class Vector3D", + "id": 4, + "offset": 164, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3065089042 + } + } + }, + "1399461056": { + "name": "class CrownShopData", + "bases": [ + "PropertyClass" + ], + "hash": 1399461056, + "properties": { + "m_items": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2089538472 + }, + "m_crownShopLayout": { + "type": "class SharedPointer", + "id": 1, + "offset": 88, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2296174117 + }, + "m_recomendedItems": { + "type": "class SharedPointer", + "id": 2, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 971256066 + }, + "m_crownShopSegReqsSummary": { + "type": "class SharedPointer", + "id": 3, + "offset": 120, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2152734186 + }, + "m_wishlistMaxSize": { + "type": "int", + "id": 4, + "offset": 136, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 590778194 + }, + "m_wishlistSBExpansionSize": { + "type": "int", + "id": 5, + "offset": 140, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1131167734 + } + } + }, + "985460862": { + "name": "class PermanentShop", + "bases": [ + "Window", + "PropertyClass" + ], + "hash": 985460862, + "properties": { + "m_sName": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306437263 + }, + "m_Children": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621225959 + }, + "m_Style": { + "type": "unsigned int", + "id": 2, + "offset": 152, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "SCALE_CHILDREN": 2, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "FOCUS_LOCKED": 64, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152 + } + }, + "m_Flags": { + "type": "unsigned int", + "id": 3, + "offset": 156, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } + }, + "m_Window": { + "type": "class Rect", + "id": 4, + "offset": 160, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3105139380 + }, + "m_fTargetAlpha": { + "type": "float", + "id": 5, + "offset": 212, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1809129834 + }, + "m_fDisabledAlpha": { + "type": "float", + "id": 6, + "offset": 216, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1389987675 + }, + "m_fAlpha": { + "type": "float", + "id": 7, + "offset": 208, + "flags": 65671, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 482130755 + }, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3623628394 + }, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2102211316 + }, + "m_sScript": { + "type": "std::string", + "id": 10, + "offset": 352, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1846695875 + }, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3389835433 + }, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547159940 + }, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513510520 + }, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3091503757 + }, + "m_currentTab": { + "type": "int", + "id": 16, + "offset": 944, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1795186676 + }, + "m_totalCrowns": { + "type": "int", + "id": 17, + "offset": 768, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2094555642 + }, + "m_pInventory": { + "type": "class SharedPointer", + "id": 18, + "offset": 1448, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2295349946 + }, + "m_pEquipment": { + "type": "class SharedPointer", + "id": 19, + "offset": 1464, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3072576019 + }, + "m_buyBtnDisableReason": { + "type": "std::string", + "id": 20, + "offset": 1416, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2225989675 + } + } + }, + "550539945": { + "name": "class PathActionDespawn*", + "bases": [ + "PathBehaviorTemplate::Action", + "PropertyClass" + ], + "hash": 550539945, + "properties": { + "m_nPathID": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 214382368 + }, + "m_nNodeID": { + "type": "int", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 152152635, + "enum_options": { + "__DEFAULT": 4294967295 + } + }, + "m_nPriority": { + "type": "int", + "id": 2, + "offset": 84, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1515251530, + "enum_options": { + "__DEFAULT": 100 + } + }, + "m_nChance": { + "type": "int", + "id": 3, + "offset": 88, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1860748394, + "enum_options": { + "__DEFAULT": 50 + } + } + } + }, + "1831571432": { + "name": "class SharedPointer", + "bases": [ + "DerbyTerrainEffect", + "DerbyEffect", + "PropertyClass" + ], + "hash": 1831571432, + "properties": { + "m_buffType": { + "type": "enum DerbyTalentBuffType", + "id": 0, + "offset": 92, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1149251982, + "enum_options": { + "Buff": 0, + "Debuff": 1, + "Neither": 2 + } + }, + "m_kTarget": { + "type": "enum DerbyTargetType", + "id": 1, + "offset": 96, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1807803351, + "enum_options": { + "kTargetInFront": 0, + "kTargetBehind": 1, + "kTargetFirst": 2, + "kTargetSelf": 3, + "kTargetAll": 4, + "kTargetLast": 5 + } + }, + "m_nDuration": { + "type": "int", + "id": 2, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1110167982 + }, + "m_effectID": { + "type": "unsigned int", + "id": 3, + "offset": 88, + "flags": 24, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2347630439 + }, + "m_imageFilename": { + "type": "std::string", + "id": 4, + "offset": 112, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2813328063 + }, + "m_iconIndex": { + "type": "unsigned int", + "id": 5, + "offset": 144, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1265133262 + }, + "m_soundOnActivate": { + "type": "std::string", + "id": 6, + "offset": 152, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1956929714 + }, + "m_soundOnTarget": { + "type": "std::string", + "id": 7, + "offset": 184, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3444214056 + }, + "m_targetParticleEffect": { + "type": "std::string", + "id": 8, + "offset": 216, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3048234723 + }, + "m_overheadMessage": { + "type": "std::string", + "id": 9, + "offset": 248, + "flags": 8388639, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1701018190 + }, + "m_requirements": { + "type": "class RequirementList", + "id": 10, + "offset": 280, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2840988582 + }, + "m_terrainType": { + "type": "enum PetDerbyTrackTerrain", + "id": 11, + "offset": 376, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2688629581, + "enum_options": { + "Cobblestone": 0, + "Water": 1, + "Grass": 2, + "Clay": 3, + "Dirt": 4, + "Mud": 5 + } + }, + "m_fEffectReapplyTime": { + "type": "float", + "id": 12, + "offset": 380, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1483497206 + }, + "m_effectsToApply": { + "type": "class SharedPointer", + "id": 13, + "offset": 384, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2042624288 + }, + "m_permanentEffects": { + "type": "class SharedPointer", + "id": 14, + "offset": 400, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2129171809 + } + } + }, + "985460859": { + "name": "class PermanentShop*", + "bases": [ + "Window", + "PropertyClass" + ], + "hash": 985460859, + "properties": { + "m_sName": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306437263 + }, + "m_Children": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621225959 + }, + "m_Style": { + "type": "unsigned int", + "id": 2, + "offset": 152, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "SCALE_CHILDREN": 2, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "FOCUS_LOCKED": 64, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152 + } + }, + "m_Flags": { + "type": "unsigned int", + "id": 3, + "offset": 156, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } + }, + "m_Window": { + "type": "class Rect", + "id": 4, + "offset": 160, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3105139380 + }, + "m_fTargetAlpha": { + "type": "float", + "id": 5, + "offset": 212, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1809129834 + }, + "m_fDisabledAlpha": { + "type": "float", + "id": 6, + "offset": 216, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1389987675 + }, + "m_fAlpha": { + "type": "float", + "id": 7, + "offset": 208, + "flags": 65671, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 482130755 + }, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3623628394 + }, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2102211316 + }, + "m_sScript": { + "type": "std::string", + "id": 10, + "offset": 352, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1846695875 + }, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3389835433 + }, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547159940 + }, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513510520 + }, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3091503757 + }, + "m_currentTab": { + "type": "int", + "id": 16, + "offset": 944, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1795186676 + }, + "m_totalCrowns": { + "type": "int", + "id": 17, + "offset": 768, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2094555642 + }, + "m_pInventory": { + "type": "class SharedPointer", + "id": 18, + "offset": 1448, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2295349946 + }, + "m_pEquipment": { + "type": "class SharedPointer", + "id": 19, + "offset": 1464, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3072576019 + }, + "m_buyBtnDisableReason": { + "type": "std::string", + "id": 20, + "offset": 1416, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2225989675 + } + } + }, + "550272160": { + "name": "class WinAnimAlphaFade*", + "bases": [ + "WindowAnimation", + "PropertyClass" + ], + "hash": 550272160, + "properties": { + "m_bUseDeepCopy": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 433380635 + }, + "m_fCycleTime": { + "type": "float", + "id": 1, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1056288476 + }, + "m_fElapsedTime": { + "type": "float", + "id": 2, + "offset": 84, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1862647402 + }, + "m_cycle": { + "type": "bool", + "id": 3, + "offset": 92, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 793791523 + }, + "m_allowAlphaCycle": { + "type": "bool", + "id": 4, + "offset": 93, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1269348264 + } + } + }, + "127506552": { + "name": "class std::vector >", + "bases": [], + "hash": 127506552, + "properties": {} + }, + "1403011087": { + "name": "class SetHangingEffectAlphaCinematicAction*", + "bases": [ + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 1403011087, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + }, + "m_cloaked": { + "type": "bool", + "id": 2, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 7349510 + }, + "m_alpha": { + "type": "float", + "id": 3, + "offset": 124, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 878686493 + } + } + }, + "550076533": { + "name": "class SharedPointer", + "bases": [ + "ActorDialogListBase", + "PropertyClass" + ], + "hash": 550076533, + "properties": { + "m_dialogs": { + "type": "class ActorDialog*", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2112889951 + } + } + }, + "127402278": { + "name": "enum QuestTemplate::ActivityType", + "bases": [], + "hash": 127402278, + "properties": {} + }, + "1400612680": { + "name": "class SharedPointer", + "bases": [ + "DerbyEffect", + "PropertyClass" + ], + "hash": 1400612680, + "properties": { + "m_buffType": { + "type": "enum DerbyTalentBuffType", + "id": 0, + "offset": 92, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1149251982, + "enum_options": { + "Buff": 0, + "Debuff": 1, + "Neither": 2 + } + }, + "m_kTarget": { + "type": "enum DerbyTargetType", + "id": 1, + "offset": 96, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1807803351, + "enum_options": { + "kTargetInFront": 0, + "kTargetBehind": 1, + "kTargetFirst": 2, + "kTargetSelf": 3, + "kTargetAll": 4, + "kTargetLast": 5 + } + }, + "m_nDuration": { + "type": "int", + "id": 2, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1110167982 + }, + "m_effectID": { + "type": "unsigned int", + "id": 3, + "offset": 88, + "flags": 24, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2347630439 + }, + "m_imageFilename": { + "type": "std::string", + "id": 4, + "offset": 112, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2813328063 + }, + "m_iconIndex": { + "type": "unsigned int", + "id": 5, + "offset": 144, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1265133262 + }, + "m_soundOnActivate": { + "type": "std::string", + "id": 6, + "offset": 152, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1956929714 + }, + "m_soundOnTarget": { + "type": "std::string", + "id": 7, + "offset": 184, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3444214056 + }, + "m_targetParticleEffect": { + "type": "std::string", + "id": 8, + "offset": 216, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3048234723 + }, + "m_overheadMessage": { + "type": "std::string", + "id": 9, + "offset": 248, + "flags": 8388639, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1701018190 + }, + "m_requirements": { + "type": "class RequirementList", + "id": 10, + "offset": 280, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2840988582 + }, + "m_nTimesToAdd": { + "type": "int", + "id": 11, + "offset": 376, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1414275638 + } + } + }, + "1833914164": { + "name": "class FishCatchOfTheDayOption", + "bases": [ + "ServiceOptionBase", + "PropertyClass" + ], + "hash": 1833914164, + "properties": { + "m_serviceName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2206028813 + }, + "m_iconKey": { + "type": "std::string", + "id": 1, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2457138637 + }, + "m_displayKey": { + "type": "std::string", + "id": 2, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3023276954 + }, + "m_serviceIndex": { + "type": "unsigned int", + "id": 3, + "offset": 204, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2103126710 + }, + "m_forceInteract": { + "type": "bool", + "id": 4, + "offset": 200, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1705789564 + } + } + }, + "985487403": { + "name": "class ComplexRotationInfo*", + "bases": [ + "PropertyClass" + ], + "hash": 985487403, + "properties": { + "m_startWeight": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 834528109 + }, + "m_middleWeight": { + "type": "float", + "id": 1, + "offset": 76, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1016481710 + }, + "m_endWeight": { + "type": "float", + "id": 2, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 379723894 + }, + "m_desiredSpeed": { + "type": "float", + "id": 3, + "offset": 84, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 406717000 + }, + "m_durationSeconds": { + "type": "float", + "id": 4, + "offset": 88, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1349797100 + } + } + }, + "1400222946": { + "name": "class PetDerbyTalentTemplate", + "bases": [ + "PetTalentBaseTemplate", + "CoreTemplate", + "PropertyClass" + ], + "hash": 1400222946, + "properties": { + "m_behaviors": { + "type": "class BehaviorTemplate*", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1197808594 + }, + "m_talentName": { + "type": "std::string", + "id": 1, + "offset": 96, + "flags": 134217735, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2455147588 + }, + "m_displayName": { + "type": "std::string", + "id": 2, + "offset": 136, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2446900370 + }, + "m_description": { + "type": "std::string", + "id": 3, + "offset": 168, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1649374815 + }, + "m_imageIndex": { + "type": "unsigned int", + "id": 4, + "offset": 200, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1781902856 + }, + "m_imageName": { + "type": "std::string", + "id": 5, + "offset": 208, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2391520543 + }, + "m_rank": { + "type": "unsigned char", + "id": 6, + "offset": 240, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 857403388 + }, + "m_breedsAsTalentName": { + "type": "std::string", + "id": 7, + "offset": 248, + "flags": 268435463, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2143399629, + "enum_options": { + "__BASECLASS": "PetTalentBaseTemplate" + } + }, + "m_bRetired": { + "type": "bool", + "id": 8, + "offset": 280, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 904227684, + "enum_options": { + "__DEFAULT": 0 + } + }, + "m_unsearchable": { + "type": "bool", + "id": 9, + "offset": 281, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1760679968, + "enum_options": { + "__DEFAULT": 0 + } + }, + "m_isBuff": { + "type": "enum DerbyTalentBuffType", + "id": 10, + "offset": 288, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 688625224, + "enum_options": { + "Buff": 0, + "Debuff": 1, + "Neither": 2 + } + }, + "m_fCooldown": { + "type": "float", + "id": 11, + "offset": 292, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1665682594 + }, + "m_derbyEffects": { + "type": "class SharedPointer", + "id": 12, + "offset": 296, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1259488141 + } + } + }, + "1833508009": { + "name": "class SharedPointer", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1833508009, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_monsterData": { + "type": "std::string", + "id": 1, + "offset": 128, + "flags": 551, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3377737309 + } + } + }, + "1400153498": { + "name": "class HatchmakingKioskBehaviorTemplate", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 1400153498, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + }, + "m_isKiosk": { + "type": "bool", + "id": 1, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1545253296 + } + } + }, + "550436000": { + "name": "class WinAnimAlphaFade", + "bases": [ + "WindowAnimation", + "PropertyClass" + ], + "hash": 550436000, + "properties": { + "m_bUseDeepCopy": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 433380635 + }, + "m_fCycleTime": { + "type": "float", + "id": 1, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1056288476 + }, + "m_fElapsedTime": { + "type": "float", + "id": 2, + "offset": 84, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1862647402 + }, + "m_cycle": { + "type": "bool", + "id": 3, + "offset": 92, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 793791523 + }, + "m_allowAlphaCycle": { + "type": "bool", + "id": 4, + "offset": 93, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1269348264 + } + } + }, + "1832465385": { + "name": "class SharedPointer", + "bases": [ + "Requirement", + "PropertyClass" + ], + "hash": 1832465385, + "properties": { + "m_applyNOT": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1746328074, + "enum_options": { + "__DEFAULT": 0 + } + }, + "m_operator": { + "type": "enum Requirement::Operator", + "id": 1, + "offset": 76, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2672792317, + "enum_options": { + "ROP_AND": 0, + "ROP_OR": 1, + "__DEFAULT": "ROP_AND" + } + } + } + }, + "128262085": { + "name": "struct GoalEventData", + "bases": [], + "hash": 128262085, + "properties": {} + }, + "1399949609": { + "name": "class HousingNode", + "bases": [ + "PropertyClass" + ], + "hash": 1399949609, + "properties": { + "m_connectionType": { + "type": "enum HousingNode::ConnectionType", + "id": 0, + "offset": 72, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 427658421, + "enum_options": { + "MALE": 0, + "FEMALE": 1, + "__DEFAULT": "MALE" + } + }, + "m_locationType": { + "type": "unsigned int", + "id": 1, + "offset": 76, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 538163080, + "enum_options": { + "INSIDE": 1, + "OUTSIDE": 2, + "INACCESSIBLE": 4, + "__DEFAULT": "INSIDE" + } + }, + "m_exclusiveRestrictions": { + "type": "enum HousingNode::ExclusiveRestrictions", + "id": 2, + "offset": 80, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3137090195, + "enum_options": { + "NO_RESTRICTIONS": 0, + "WALL_ONLY": 1, + "DOOR_ONLY": 2, + "WINDOW_ONLY": 3, + "STAIR_ONLY": 4, + "EDGE_ONLY": 5, + "CEILING_ONLY": 6, + "INSIDE_VASE_ONLY": 7, + "RECTANGLE_ONLY": 8, + "WINDOW_SMALLROUNDTOP": 9, + "WINDOW_TALLROUNDTOP": 10, + "WINDOW_TALLSQUARETOP": 11, + "WINDOW_STANDARD": 12, + "WINDOW_LARGE": 13, + "DOOR_SINGLEROUNDTOP": 14, + "DOOR_SINGLESQUARETOP": 15, + "DOOR_DOUBLEROUNDTOP": 16, + "DOOR_DOUBLESQUARETOP": 17, + "GARDEN_ONLY": 18, + "ENCHANTED_GARDEN_ONLY": 19, + "ENRICHED_GARDEN_ONLY": 20, + "WALL_EDGE": 21, + "__DEFAULT": "NO_RESTRICTIONS" + } + }, + "m_supportSurface": { + "type": "bool", + "id": 3, + "offset": 84, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1804627449, + "enum_options": { + "__DEFAULT": 0 + } + }, + "m_position": { + "type": "class Vector3D", + "id": 4, + "offset": 88, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3697900983 + } + } + }, + "987169196": { + "name": "class SharedPointer", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 987169196, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + } + } + }, + "131916289": { + "name": "class CombatPetXPEffectTemplate", + "bases": [ + "GameEffectTemplate", + "PropertyClass" + ], + "hash": 131916289, + "properties": { + "m_effectName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2029161513 + }, + "m_effectCategory": { + "type": "std::string", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1852673222 + }, + "m_sortOrder": { + "type": "int", + "id": 2, + "offset": 148, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1411218206 + }, + "m_duration": { + "type": "double", + "id": 3, + "offset": 192, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2727932435 + }, + "m_stackingCategories": { + "type": "std::string", + "id": 4, + "offset": 160, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1774497525 + }, + "m_isPersistent": { + "type": "bool", + "id": 5, + "offset": 153, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 923861920 + }, + "m_bIsOnPet": { + "type": "bool", + "id": 6, + "offset": 154, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 522593303 + }, + "m_isPublic": { + "type": "bool", + "id": 7, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1728439822 + }, + "m_visualEffectAddName": { + "type": "std::string", + "id": 8, + "offset": 200, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3382086694 + }, + "m_visualEffectRemoveName": { + "type": "std::string", + "id": 9, + "offset": 232, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1541697323 + }, + "m_onAddFunctorName": { + "type": "std::string", + "id": 10, + "offset": 280, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1561843107 + }, + "m_onRemoveFunctorName": { + "type": "std::string", + "id": 11, + "offset": 312, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2559017864 + }, + "m_stackingRule": { + "type": "enum STACKING_RULE", + "id": 12, + "offset": 144, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 431568889, + "enum_options": { + "STACKING_ALLOWED": 0, + "STACKING_NOSTACK": 1, + "STACKING_REPLACE": 2 + } + }, + "m_lootTableName": { + "type": "std::string", + "id": 13, + "offset": 360, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2333333378 + } + } + }, + "1400181986": { + "name": "class PetDerbyTalentTemplate*", + "bases": [ + "PetTalentBaseTemplate", + "CoreTemplate", + "PropertyClass" + ], + "hash": 1400181986, + "properties": { + "m_behaviors": { + "type": "class BehaviorTemplate*", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1197808594 + }, + "m_talentName": { + "type": "std::string", + "id": 1, + "offset": 96, + "flags": 134217735, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2455147588 + }, + "m_displayName": { + "type": "std::string", + "id": 2, + "offset": 136, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2446900370 + }, + "m_description": { + "type": "std::string", + "id": 3, + "offset": 168, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1649374815 + }, + "m_imageIndex": { + "type": "unsigned int", + "id": 4, + "offset": 200, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1781902856 + }, + "m_imageName": { + "type": "std::string", + "id": 5, + "offset": 208, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2391520543 + }, + "m_rank": { + "type": "unsigned char", + "id": 6, + "offset": 240, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 857403388 + }, + "m_breedsAsTalentName": { + "type": "std::string", + "id": 7, + "offset": 248, + "flags": 268435463, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2143399629, + "enum_options": { + "__BASECLASS": "PetTalentBaseTemplate" + } + }, + "m_bRetired": { + "type": "bool", + "id": 8, + "offset": 280, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 904227684, + "enum_options": { + "__DEFAULT": 0 + } + }, + "m_unsearchable": { + "type": "bool", + "id": 9, + "offset": 281, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1760679968, + "enum_options": { + "__DEFAULT": 0 + } + }, + "m_isBuff": { + "type": "enum DerbyTalentBuffType", + "id": 10, + "offset": 288, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 688625224, + "enum_options": { + "Buff": 0, + "Debuff": 1, + "Neither": 2 + } + }, + "m_fCooldown": { + "type": "float", + "id": 11, + "offset": 292, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1665682594 + }, + "m_derbyEffects": { + "type": "class SharedPointer", + "id": 12, + "offset": 296, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1259488141 + } + } + }, + "550552233": { + "name": "class CSRPropertyEntry*", + "bases": [ + "PropertyClass" + ], + "hash": 550552233, + "properties": { + "m_value": { + "type": "s24", + "id": 0, + "offset": 76, + "flags": 16, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 812923009 + }, + "m_propertyID": { + "type": "unsigned int", + "id": 1, + "offset": 72, + "flags": 16, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1883057791 + } + } + }, + "1834710024": { + "name": "class SharedPointer", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1834710024, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_quantity": { + "type": "int", + "id": 1, + "offset": 112, + "flags": 27, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 169215289 + } + } + }, + "130600560": { + "name": "class WizStatisticScalerEffect", + "bases": [ + "StatisticEffect", + "GameEffectBase", + "PropertyClass" + ], + "hash": 130600560, + "properties": { + "m_currentTickCount": { + "type": "double", + "id": 0, + "offset": 80, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2533274692 + }, + "m_effectNameID": { + "type": "unsigned int", + "id": 1, + "offset": 96, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1204067144 + }, + "m_bIsOnPet": { + "type": "bool", + "id": 2, + "offset": 73, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 522593303 + }, + "m_originatorID": { + "type": "gid", + "id": 3, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1131810019 + }, + "m_itemSlotID": { + "type": "unsigned int", + "id": 4, + "offset": 112, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1895747595 + }, + "m_internalID": { + "type": "int", + "id": 5, + "offset": 92, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1643137924 + }, + "m_endTime": { + "type": "unsigned int", + "id": 6, + "offset": 88, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 716479635 + }, + "m_lookupIndex": { + "type": "int", + "id": 7, + "offset": 128, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1626623948 + } + } + }, + "988432547": { + "name": "class AreaBehavior*", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 988432547, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_radius": { + "type": "float", + "id": 1, + "offset": 116, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 989410271 + }, + "m_category": { + "type": "enum AudioCategory", + "id": 2, + "offset": 124, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2951251982, + "enum_options": { + "AudioCategory_Irrelevent": 0, + "AudioCategory_Accoustic": 1, + "AudioCategory_Noise": 2, + "AudioCategory_Music": 3 + } + }, + "m_exclusive": { + "type": "bool", + "id": 3, + "offset": 128, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 824383403 + } + } + }, + "1834700596": { + "name": "class FishCatchOfTheDayOption*", + "bases": [ + "ServiceOptionBase", + "PropertyClass" + ], + "hash": 1834700596, + "properties": { + "m_serviceName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2206028813 + }, + "m_iconKey": { + "type": "std::string", + "id": 1, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2457138637 + }, + "m_displayKey": { + "type": "std::string", + "id": 2, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3023276954 + }, + "m_serviceIndex": { + "type": "unsigned int", + "id": 3, + "offset": 204, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2103126710 + }, + "m_forceInteract": { + "type": "bool", + "id": 4, + "offset": 200, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1705789564 + } + } + }, + "130304315": { + "name": "class StringListObj*", + "bases": [ + "PropertyClass" + ], + "hash": 130304315, + "properties": { + "m_stringList": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1880105486 + } + } + }, + "988181265": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 988181265, + "properties": { + "m_templateID": { + "type": "int", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1075344419 + }, + "m_name": { + "type": "std::wstring", + "id": 1, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513345113 + }, + "m_shouldRename": { + "type": "bool", + "id": 2, + "offset": 128, + "flags": 24, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1741266202 + }, + "m_globalID": { + "type": "gid", + "id": 3, + "offset": 120, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 981205014 + }, + "m_userID": { + "type": "gid", + "id": 4, + "offset": 112, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1037989700 + }, + "m_quarantined": { + "type": "bool", + "id": 5, + "offset": 129, + "flags": 24, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 637025007 + } + } + }, + "550759285": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 550759285, + "properties": { + "m_leagueID": { + "type": "unsigned int", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 692361645 + }, + "m_elo": { + "type": "int", + "id": 1, + "offset": 76, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 267033754 + }, + "m_rank": { + "type": "int", + "id": 2, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 219803942 + }, + "m_wins": { + "type": "int", + "id": 3, + "offset": 84, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 219992347 + }, + "m_losses": { + "type": "int", + "id": 4, + "offset": 88, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 681549075 + } + } + }, + "1400295921": { + "name": "class HousingBlob", + "bases": [ + "PropertyClass" + ], + "hash": 1400295921, + "properties": { + "m_housingBlobObjectList": { + "type": "class SharedPointer", + "id": 0, + "offset": 80, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2812881480 + } + } + }, + "130304318": { + "name": "class StringListObj", + "bases": [ + "PropertyClass" + ], + "hash": 130304318, + "properties": { + "m_stringList": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1880105486 + } + } + }, + "988276124": { + "name": "class AttenuatedFileList", + "bases": [ + "PropertyClass" + ], + "hash": 988276124, + "properties": { + "m_attenuatedFileDescriptionList": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 395748088 + } + } + }, + "1835103159": { + "name": "class EquippedSlotInfo*", + "bases": [ + "PropertyClass" + ], + "hash": 1835103159, + "properties": { + "m_itemID": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 569545460 + }, + "m_itemSlotNameID": { + "type": "unsigned int", + "id": 1, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1951735276 + } + } + }, + "1834780127": { + "name": "class std::list >", + "bases": [], + "hash": 1834780127, + "properties": {} + }, + "553670903": { + "name": "unsigned short", + "bases": [], + "hash": 553670903, + "properties": {} + }, + "1401438223": { + "name": "class SetHangingEffectAlphaCinematicAction", + "bases": [ + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 1401438223, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + }, + "m_cloaked": { + "type": "bool", + "id": 2, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 7349510 + }, + "m_alpha": { + "type": "float", + "id": 3, + "offset": 124, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 878686493 + } + } + }, + "131207768": { + "name": "class SharedPointer", + "bases": [ + "GoalTemplate", + "CoreTemplate", + "PropertyClass" + ], + "hash": 131207768, + "properties": { + "m_behaviors": { + "type": "class BehaviorTemplate*", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1197808594 + }, + "m_goalName": { + "type": "std::string", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1521627807 + }, + "m_goalNameID": { + "type": "unsigned int", + "id": 2, + "offset": 496, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 403158846 + }, + "m_goalTitle": { + "type": "std::string", + "id": 3, + "offset": 136, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2291910240 + }, + "m_goalUnderway": { + "type": "std::string", + "id": 4, + "offset": 168, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3153144269 + }, + "m_hyperlink": { + "type": "std::string", + "id": 5, + "offset": 200, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2887798993 + }, + "m_completeText": { + "type": "std::string", + "id": 6, + "offset": 232, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2767458393 + }, + "m_completeResults": { + "type": "class ResultList*", + "id": 7, + "offset": 440, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1964258099 + }, + "m_goalRequirements": { + "type": "class RequirementList*", + "id": 8, + "offset": 448, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2979967145 + }, + "m_tallyCounter": { + "type": "class TallyCounterTemplate*", + "id": 9, + "offset": 456, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1884546193 + }, + "m_locationName": { + "type": "std::string", + "id": 10, + "offset": 272, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1824218389 + }, + "m_displayImage1": { + "type": "std::string", + "id": 11, + "offset": 304, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1959572133 + }, + "m_displayImage2": { + "type": "std::string", + "id": 12, + "offset": 336, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1959572134 + }, + "m_clientTags": { + "type": "std::string", + "id": 13, + "offset": 368, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2319030025 + }, + "m_genericEvents": { + "type": "std::string", + "id": 14, + "offset": 384, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 3466670829 + }, + "m_autoQualify": { + "type": "bool", + "id": 15, + "offset": 400, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1878907431 + }, + "m_autoComplete": { + "type": "bool", + "id": 16, + "offset": 401, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1302545445 + }, + "m_destinationZone": { + "type": "std::string", + "id": 17, + "offset": 408, + "flags": 268435463, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2605356153, + "enum_options": { + "__BASECLASS": "ZoneData" + } + }, + "m_dialogList": { + "type": "class ActorDialogListBase*", + "id": 18, + "offset": 264, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1909154969 + }, + "m_goalType": { + "type": "enum GoalTemplate::GOAL_TYPE", + "id": 19, + "offset": 96, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1488021149, + "enum_options": { + "GOAL_TYPE_UNKNOWN": 0, + "GOAL_TYPE_BOUNTY": 1, + "GOAL_TYPE_BOUNTYCOLLECT": 2, + "GOAL_TYPE_SCAVENGE": 3, + "GOAL_TYPE_PERSONA": 4, + "GOAL_TYPE_WAYPOINT": 5, + "GOAL_TYPE_SCAVENGEFAKE": 6, + "GOAL_TYPE_ACHIEVERANK": 7, + "GOAL_TYPE_USAGE": 8, + "GOAL_TYPE_COMPLETEQUEST": 9, + "GOAL_TYPE_SOCIARANK": 10, + "GOAL_TYPE_SOCIACURRENCY": 11, + "GOAL_TYPE_SOCIAMINIGAME": 12, + "GOAL_TYPE_SOCIAGIVEITEM": 13, + "GOAL_TYPE_SOCIAGETITEM": 14, + "GOAL_TYPE_COLLECTAFTERBOUNTY": 15, + "GOAL_TYPE_ENCOUNTER_WAYPOINT_FOREACH": 16 + } + }, + "m_noQuestHelper": { + "type": "bool", + "id": 20, + "offset": 500, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 578010882, + "enum_options": { + "__DEFAULT": 0 + } + }, + "m_petOnlyQuest": { + "type": "bool", + "id": 21, + "offset": 501, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 679359344, + "enum_options": { + "__DEFAULT": 0 + } + }, + "m_activateResults": { + "type": "class ResultList*", + "id": 22, + "offset": 504, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3790153995 + }, + "m_hideGoalFloatyText": { + "type": "bool", + "id": 23, + "offset": 512, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1919383204, + "enum_options": { + "__DEFAULT": 0 + } + }, + "m_rank": { + "type": "int", + "id": 24, + "offset": 520, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 219803942 + } + } + }, + "551628021": { + "name": "class ControlTab::Button*", + "bases": [ + "ControlButton", + "Window", + "PropertyClass" + ], + "hash": 551628021, + "properties": { + "m_sName": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306437263 + }, + "m_Children": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621225959 + }, + "m_Style": { + "type": "unsigned int", + "id": 2, + "offset": 152, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152, + "SHOW_HOTKEY": 16777216, + "EFFECT_SCALE": 67108864, + "LOCK_ICON_SIZE": 33554432, + "LEFT_TEXT": 536870912, + "NO_FIT_TEXT": 1073741824 + } + }, + "m_Flags": { + "type": "unsigned int", + "id": 3, + "offset": 156, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } + }, + "m_Window": { + "type": "class Rect", + "id": 4, + "offset": 160, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3105139380 + }, + "m_fTargetAlpha": { + "type": "float", + "id": 5, + "offset": 212, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1809129834 + }, + "m_fDisabledAlpha": { + "type": "float", + "id": 6, + "offset": 216, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1389987675 + }, + "m_fAlpha": { + "type": "float", + "id": 7, + "offset": 208, + "flags": 65671, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 482130755 + }, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3623628394 + }, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2102211316 + }, + "m_sScript": { + "type": "std::string", + "id": 10, + "offset": 352, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1846695875 + }, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3389835433 + }, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547159940 + }, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513510520 + }, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3091503757 + }, + "m_bToggle": { + "type": "bool", + "id": 16, + "offset": 608, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2071810903 + }, + "m_bButtonDown": { + "type": "bool", + "id": 17, + "offset": 609, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 840041705 + }, + "m_sLabel": { + "type": "std::wstring", + "id": 18, + "offset": 616, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2207009163 + }, + "m_labelOffset": { + "type": "class Rect", + "id": 19, + "offset": 832, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1990646723 + }, + "m_pButton": { + "type": "class SharedPointer", + "id": 20, + "offset": 656, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1543855875 + }, + "m_HotKey": { + "type": "unsigned int", + "id": 21, + "offset": 672, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1631553409 + }, + "m_Color": { + "type": "class Color", + "id": 22, + "offset": 676, + "flags": 262279, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1753714077 + }, + "m_bCursorOver": { + "type": "bool", + "id": 23, + "offset": 689, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 283981103 + }, + "m_bAbortWhenCursorNotOver": { + "type": "bool", + "id": 24, + "offset": 706, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 325405258 + }, + "m_bHotKeyDown": { + "type": "bool", + "id": 25, + "offset": 680, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 616989185 + }, + "m_fTime": { + "type": "float", + "id": 26, + "offset": 684, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 883746156 + }, + "m_bGreyed": { + "type": "bool", + "id": 27, + "offset": 688, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1566556053 + }, + "m_fMaxScale": { + "type": "float", + "id": 28, + "offset": 692, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2070186635 + }, + "m_fScaleSpeed": { + "type": "float", + "id": 29, + "offset": 696, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1457135702 + }, + "m_bUseDropShadow": { + "type": "bool", + "id": 30, + "offset": 704, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 93063037 + }, + "m_bUseOutline": { + "type": "bool", + "id": 31, + "offset": 705, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 744292994 + }, + "m_pGreyedState": { + "type": "class SharedPointer", + "id": 32, + "offset": 768, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2703352263 + }, + "m_pNormalState": { + "type": "class SharedPointer", + "id": 33, + "offset": 752, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1887909808 + }, + "m_pHighlightedState": { + "type": "class SharedPointer", + "id": 34, + "offset": 784, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2200177608 + }, + "m_pSelectedState": { + "type": "class SharedPointer", + "id": 35, + "offset": 800, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2266776432 + }, + "m_pDepressedState": { + "type": "class SharedPointer", + "id": 36, + "offset": 816, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1878185798 + } + } + }, + "989603832": { + "name": "enum MountRecord::VolumeTypes", + "bases": [], + "hash": 989603832, + "properties": {} + }, + "1400788495": { + "name": "class TeleportProximityBehavior*", + "bases": [ + "TeleportProximityBehaviorBase", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1400788495, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + } + } + }, + "551320710": { + "name": "class CastleMagicTutorialWindow", + "bases": [ + "PropertyClass" + ], + "hash": 551320710, + "properties": {} + }, + "988470090": { + "name": "class MoveBehavior*", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 988470090, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_nFlags": { + "type": "unsigned int", + "id": 1, + "offset": 112, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 922328456 + }, + "m_nMoveState": { + "type": "enum MoveState", + "id": 2, + "offset": 116, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1430960270, + "enum_options": { + "MS_WALKING": 0, + "MS_RUNNING": 1, + "MS_SWIMMING": 2, + "MS_FLYING": 3, + "MS_JUMPING": 4, + "MS_FALLING": 5 + } + } + } + }, + "1400692897": { + "name": "class CritBlockOverride", + "bases": [ + "CombatRule", + "PropertyClass" + ], + "hash": 1400692897, + "properties": { + "m_baseCritDivisor": { + "type": "int", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1793948871 + }, + "m_baseBlockDivisor": { + "type": "int", + "id": 1, + "offset": 76, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 331192160 + }, + "m_critScalarDivisor": { + "type": "int", + "id": 2, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 353250050 + }, + "m_blockScalarDivisor": { + "type": "int", + "id": 3, + "offset": 84, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 778321147 + }, + "m_finalCritMedian1": { + "type": "float", + "id": 4, + "offset": 88, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1779518738 + }, + "m_finalCritMedian2": { + "type": "float", + "id": 5, + "offset": 92, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1779518739 + }, + "m_finalBlockMedian1": { + "type": "float", + "id": 6, + "offset": 96, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2233508235 + }, + "m_finalBlockMedian2": { + "type": "float", + "id": 7, + "offset": 100, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2233508236 + } + } + }, + "1835266999": { + "name": "class EquippedSlotInfo", + "bases": [ + "PropertyClass" + ], + "hash": 1835266999, + "properties": { + "m_itemID": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 569545460 + }, + "m_itemSlotNameID": { + "type": "unsigned int", + "id": 1, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1951735276 + } + } + }, + "551193865": { + "name": "class std::list >", + "bases": [], + "hash": 551193865, + "properties": {} + }, + "131999030": { + "name": "class SoundBehaviorTemplate", + "bases": [ + "AreaBehaviorTemplate", + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 131999030, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + }, + "m_radius": { + "type": "float", + "id": 1, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 989410271 + }, + "m_category": { + "type": "enum AudioCategory", + "id": 2, + "offset": 124, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2951251982, + "enum_options": { + "AudioCategory_Irrelevent": 0, + "AudioCategory_Accoustic": 1, + "AudioCategory_Noise": 2, + "AudioCategory_Music": 3, + "AudioCategory_MusicAtSFXVolume": 4, + "AudioCategory_Dialog": 5, + "AudioCategory_UI": 6, + "AudioCategory_NoiseAtMusicVolume": 7 + } + }, + "m_exclusive": { + "type": "bool", + "id": 3, + "offset": 128, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 824383403 + }, + "m_active": { + "type": "bool", + "id": 4, + "offset": 129, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 239335471 + }, + "m_enableReqs": { + "type": "class SharedPointer", + "id": 5, + "offset": 136, + "flags": 263, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3158020443 + }, + "m_trackFilenameList": { + "type": "std::string", + "id": 6, + "offset": 152, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2531081709 + }, + "m_playList": { + "type": "class PlayListEntry*", + "id": 7, + "offset": 176, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 3907873161 + }, + "m_priority": { + "type": "int", + "id": 8, + "offset": 208, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1235205852 + }, + "m_volume": { + "type": "float", + "id": 9, + "offset": 200, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1162855023 + }, + "m_loopCount": { + "type": "int", + "id": 10, + "offset": 204, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 865634717 + }, + "m_progression": { + "type": "enum PlayList::Progression", + "id": 11, + "offset": 220, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3279400238, + "enum_options": { + "Sequence": 0, + "Random": 1, + "SequenceOnceOnly": 2, + "RandomNoRepeat": 3 + } + }, + "m_progressMin": { + "type": "float", + "id": 12, + "offset": 212, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1497550192 + }, + "m_progressMax": { + "type": "float", + "id": 13, + "offset": 216, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1497549938 + }, + "m_audioFilterSet": { + "type": "unsigned int", + "id": 14, + "offset": 224, + "flags": 33554439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 831339825 + }, + "m_animationNameFilter": { + "type": "std::string", + "id": 15, + "offset": 232, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2292854242 + }, + "m_functionallabel": { + "type": "std::string", + "id": 16, + "offset": 264, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3589331278 + } + } + }, + "551040134": { + "name": "class PetDropGameSettings*", + "bases": [ + "PropertyClass" + ], + "hash": 551040134, + "properties": { + "m_uPathID": { + "type": "unsigned int", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 876142428 + }, + "m_nFullnessScoreTarget": { + "type": "int", + "id": 1, + "offset": 76, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 293633463 + }, + "m_nTimeLimitInSeconds": { + "type": "int", + "id": 2, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1125165468 + }, + "m_nWeightChangeInSeconds": { + "type": "int", + "id": 3, + "offset": 84, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1881631612 + }, + "m_fDropsPerSecondAtStart": { + "type": "float", + "id": 4, + "offset": 88, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 752496235 + }, + "m_fDropsPerSecondAtEnd": { + "type": "float", + "id": 5, + "offset": 92, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1684240180 + }, + "m_fCatchDistance": { + "type": "float", + "id": 6, + "offset": 96, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 879620619 + }, + "m_fFreezeSpeed": { + "type": "float", + "id": 7, + "offset": 100, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1366477327 + }, + "m_fSpeedNormal": { + "type": "float", + "id": 8, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1038542199 + }, + "m_fSpeedBonus": { + "type": "float", + "id": 9, + "offset": 108, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1406294645 + }, + "m_fSpeedPenalty": { + "type": "float", + "id": 10, + "offset": 112, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1356789899 + }, + "m_fInitialItemHeight": { + "type": "float", + "id": 11, + "offset": 116, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2124739791 + }, + "m_fGroundHeight": { + "type": "float", + "id": 12, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2050728741 + }, + "m_fPetHeight": { + "type": "float", + "id": 13, + "offset": 124, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2094176095 + }, + "m_fJumpHeight": { + "type": "float", + "id": 14, + "offset": 128, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1742092018 + }, + "m_fMaxScaleIncrease": { + "type": "float", + "id": 15, + "offset": 132, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1883110517 + }, + "m_sItemHitGroundSound": { + "type": "std::string", + "id": 16, + "offset": 136, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1678384346 + }, + "m_sItemHitGroundFX": { + "type": "std::string", + "id": 17, + "offset": 168, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1855437679 + }, + "m_foodItems": { + "type": "class SharedPointer", + "id": 18, + "offset": 200, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2404207033 + } + } + }, + "988744390": { + "name": "class SharedPointer", + "bases": [ + "WizClientObjectItem", + "ClientObject", + "CoreObject", + "PropertyClass" + ], + "hash": 988744390, + "properties": { + "m_inactiveBehaviors": { + "type": "class SharedPointer", + "id": 0, + "offset": 224, + "flags": 31, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1850812559 + }, + "m_globalID.m_full": { + "type": "unsigned __int64", + "id": 1, + "offset": 72, + "flags": 16777247, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2312465444 + }, + "m_permID": { + "type": "unsigned __int64", + "id": 2, + "offset": 80, + "flags": 16777247, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1298909658 + }, + "m_location": { + "type": "class Vector3D", + "id": 3, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2239683611 + }, + "m_orientation": { + "type": "class Vector3D", + "id": 4, + "offset": 180, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2344058766 + }, + "m_fScale": { + "type": "float", + "id": 5, + "offset": 196, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 503137701 + }, + "m_templateID.m_full": { + "type": "unsigned __int64", + "id": 6, + "offset": 96, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 633907631 + }, + "m_debugName": { + "type": "std::string", + "id": 7, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3553984419 + }, + "m_displayKey": { + "type": "std::string", + "id": 8, + "offset": 136, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3023276954 + }, + "m_zoneTagID": { + "type": "unsigned int", + "id": 9, + "offset": 344, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 965291410 + }, + "m_speedMultiplier": { + "type": "short", + "id": 10, + "offset": 192, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 123130076 + }, + "m_nMobileID": { + "type": "unsigned short", + "id": 11, + "offset": 194, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1054318939 + }, + "m_characterId": { + "type": "gid", + "id": 12, + "offset": 440, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 210498418 + }, + "m_primaryColor": { + "type": "int", + "id": 13, + "offset": 568, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 900965981 + }, + "m_pattern": { + "type": "int", + "id": 14, + "offset": 572, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1337683384 + }, + "m_secondaryColor": { + "type": "int", + "id": 15, + "offset": 576, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1616550081 + }, + "m_displayID": { + "type": "gid", + "id": 16, + "offset": 584, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1022427803 + }, + "m_itemFlags": { + "type": "unsigned int", + "id": 17, + "offset": 592, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2004128457 + }, + "m_quantity": { + "type": "int", + "id": 18, + "offset": 608, + "flags": 27, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 169215289 + } + } + }, + "131997750": { + "name": "class SoundBehaviorTemplate*", + "bases": [ + "AreaBehaviorTemplate", + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 131997750, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + }, + "m_radius": { + "type": "float", + "id": 1, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 989410271 + }, + "m_category": { + "type": "enum AudioCategory", + "id": 2, + "offset": 124, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2951251982, + "enum_options": { + "AudioCategory_Irrelevent": 0, + "AudioCategory_Accoustic": 1, + "AudioCategory_Noise": 2, + "AudioCategory_Music": 3, + "AudioCategory_MusicAtSFXVolume": 4, + "AudioCategory_Dialog": 5, + "AudioCategory_UI": 6, + "AudioCategory_NoiseAtMusicVolume": 7 + } + }, + "m_exclusive": { + "type": "bool", + "id": 3, + "offset": 128, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 824383403 + }, + "m_active": { + "type": "bool", + "id": 4, + "offset": 129, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 239335471 + }, + "m_enableReqs": { + "type": "class SharedPointer", + "id": 5, + "offset": 136, + "flags": 263, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3158020443 + }, + "m_trackFilenameList": { + "type": "std::string", + "id": 6, + "offset": 152, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2531081709 + }, + "m_playList": { + "type": "class PlayListEntry*", + "id": 7, + "offset": 176, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 3907873161 + }, + "m_priority": { + "type": "int", + "id": 8, + "offset": 208, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1235205852 + }, + "m_volume": { + "type": "float", + "id": 9, + "offset": 200, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1162855023 + }, + "m_loopCount": { + "type": "int", + "id": 10, + "offset": 204, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 865634717 + }, + "m_progression": { + "type": "enum PlayList::Progression", + "id": 11, + "offset": 220, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3279400238, + "enum_options": { + "Sequence": 0, + "Random": 1, + "SequenceOnceOnly": 2, + "RandomNoRepeat": 3 + } + }, + "m_progressMin": { + "type": "float", + "id": 12, + "offset": 212, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1497550192 + }, + "m_progressMax": { + "type": "float", + "id": 13, + "offset": 216, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1497549938 + }, + "m_audioFilterSet": { + "type": "unsigned int", + "id": 14, + "offset": 224, + "flags": 33554439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 831339825 + }, + "m_animationNameFilter": { + "type": "std::string", + "id": 15, + "offset": 232, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2292854242 + }, + "m_functionallabel": { + "type": "std::string", + "id": 16, + "offset": 264, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3589331278 + } + } + }, + "1401067856": { + "name": "class WizardAutobotMobAvoidance", + "bases": [ + "AutobotMobAvoidance", + "PropertyClass" + ], + "hash": 1401067856, + "properties": {} + }, + "1840579364": { + "name": "class SharedPointer", + "bases": [ + "ControlCheckBox", + "ControlButton", + "Window", + "PropertyClass" + ], + "hash": 1840579364, + "properties": { + "m_sName": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306437263 + }, + "m_Children": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621225959 + }, + "m_Style": { + "type": "unsigned int", + "id": 2, + "offset": 152, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152, + "EFFECT_SCALE": 67108864, + "LOCK_ICON_SIZE": 33554432, + "LEFT_TEXT": 536870912, + "NO_FIT_TEXT": 1073741824, + "CHECKBOX_TEXTOVERIMAGE": 16777216 + } + }, + "m_Flags": { + "type": "unsigned int", + "id": 3, + "offset": 156, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } + }, + "m_Window": { + "type": "class Rect", + "id": 4, + "offset": 160, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3105139380 + }, + "m_fTargetAlpha": { + "type": "float", + "id": 5, + "offset": 212, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1809129834 + }, + "m_fDisabledAlpha": { + "type": "float", + "id": 6, + "offset": 216, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1389987675 + }, + "m_fAlpha": { + "type": "float", + "id": 7, + "offset": 208, + "flags": 65671, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 482130755 + }, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3623628394 + }, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2102211316 + }, + "m_sScript": { + "type": "std::string", + "id": 10, + "offset": 352, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1846695875 + }, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3389835433 + }, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547159940 + }, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513510520 + }, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3091503757 + }, + "m_bToggle": { + "type": "bool", + "id": 16, + "offset": 608, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2071810903 + }, + "m_bButtonDown": { + "type": "bool", + "id": 17, + "offset": 609, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 840041705 + }, + "m_sLabel": { + "type": "std::wstring", + "id": 18, + "offset": 616, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2207009163 + }, + "m_labelOffset": { + "type": "class Rect", + "id": 19, + "offset": 832, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1990646723 + }, + "m_pButton": { + "type": "class SharedPointer", + "id": 20, + "offset": 656, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1543855875 + }, + "m_HotKey": { + "type": "unsigned int", + "id": 21, + "offset": 672, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1631553409 + }, + "m_Color": { + "type": "class Color", + "id": 22, + "offset": 676, + "flags": 262279, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1753714077 + }, + "m_bCursorOver": { + "type": "bool", + "id": 23, + "offset": 689, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 283981103 + }, + "m_bAbortWhenCursorNotOver": { + "type": "bool", + "id": 24, + "offset": 706, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 325405258 + }, + "m_bHotKeyDown": { + "type": "bool", + "id": 25, + "offset": 680, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 616989185 + }, + "m_fTime": { + "type": "float", + "id": 26, + "offset": 684, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 883746156 + }, + "m_bGreyed": { + "type": "bool", + "id": 27, + "offset": 688, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1566556053 + }, + "m_fMaxScale": { + "type": "float", + "id": 28, + "offset": 692, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2070186635 + }, + "m_fScaleSpeed": { + "type": "float", + "id": 29, + "offset": 696, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1457135702 + }, + "m_bUseDropShadow": { + "type": "bool", + "id": 30, + "offset": 704, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 93063037 + }, + "m_bUseOutline": { + "type": "bool", + "id": 31, + "offset": 705, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 744292994 + }, + "m_pGreyedState": { + "type": "class SharedPointer", + "id": 32, + "offset": 768, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2703352263 + }, + "m_pNormalState": { + "type": "class SharedPointer", + "id": 33, + "offset": 752, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1887909808 + }, + "m_pHighlightedState": { + "type": "class SharedPointer", + "id": 34, + "offset": 784, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2200177608 + }, + "m_pSelectedState": { + "type": "class SharedPointer", + "id": 35, + "offset": 800, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2266776432 + }, + "m_pDepressedState": { + "type": "class SharedPointer", + "id": 36, + "offset": 816, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1878185798 + }, + "m_nGroupID": { + "type": "int", + "id": 37, + "offset": 880, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 403966850 + }, + "m_bChecked": { + "type": "bool", + "id": 38, + "offset": 884, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 958955100 + }, + "m_pCheckedState": { + "type": "class SharedPointer", + "id": 39, + "offset": 888, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1210539694 + }, + "m_pCheckedGreyedState": { + "type": "class SharedPointer", + "id": 40, + "offset": 904, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2702030126 + }, + "m_pCheckedHighlightedState": { + "type": "class SharedPointer", + "id": 41, + "offset": 920, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1320097679 + }, + "m_pCheckedDepressedState": { + "type": "class SharedPointer", + "id": 42, + "offset": 936, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1609188685 + }, + "m_pEquipNormalState": { + "type": "class SharedPointer", + "id": 43, + "offset": 976, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1322058516 + }, + "m_pEquipPressState": { + "type": "class SharedPointer", + "id": 44, + "offset": 992, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3019605144 + }, + "m_pEquipHighlightState": { + "type": "class SharedPointer", + "id": 45, + "offset": 1008, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2559056739 + }, + "m_pEquipCheckState": { + "type": "class SharedPointer", + "id": 46, + "offset": 1024, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2420681417 + }, + "m_pEquipCheckPressState": { + "type": "class SharedPointer", + "id": 47, + "offset": 1040, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2063281462 + }, + "m_pEquipCheckHighlightState": { + "type": "class SharedPointer", + "id": 48, + "offset": 1056, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2990990081 + } + } + }, + "1838777860": { + "name": "class CinematicActor", + "bases": [ + "PropertyClass" + ], + "hash": 1838777860, + "properties": {} + }, + "989912959": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 989912959, + "properties": { + "m_registryEntryName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1765562503 + }, + "m_value": { + "type": "int", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 812990455 + }, + "m_questRegistry": { + "type": "bool", + "id": 2, + "offset": 108, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1043261502 + }, + "m_questName": { + "type": "std::string", + "id": 3, + "offset": 112, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1702112846 + } + } + }, + "132164555": { + "name": "class DerbyModifyPetStat*", + "bases": [ + "DerbyEffect", + "PropertyClass" + ], + "hash": 132164555, + "properties": { + "m_buffType": { + "type": "enum DerbyTalentBuffType", + "id": 0, + "offset": 92, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1149251982, + "enum_options": { + "Buff": 0, + "Debuff": 1, + "Neither": 2 + } + }, + "m_kTarget": { + "type": "enum DerbyTargetType", + "id": 1, + "offset": 96, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1807803351, + "enum_options": { + "kTargetInFront": 0, + "kTargetBehind": 1, + "kTargetFirst": 2, + "kTargetSelf": 3, + "kTargetAll": 4, + "kTargetLast": 5 + } + }, + "m_nDuration": { + "type": "int", + "id": 2, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1110167982 + }, + "m_effectID": { + "type": "unsigned int", + "id": 3, + "offset": 88, + "flags": 24, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2347630439 + }, + "m_imageFilename": { + "type": "std::string", + "id": 4, + "offset": 112, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2813328063 + }, + "m_iconIndex": { + "type": "unsigned int", + "id": 5, + "offset": 144, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1265133262 + }, + "m_soundOnActivate": { + "type": "std::string", + "id": 6, + "offset": 152, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1956929714 + }, + "m_soundOnTarget": { + "type": "std::string", + "id": 7, + "offset": 184, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3444214056 + }, + "m_targetParticleEffect": { + "type": "std::string", + "id": 8, + "offset": 216, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3048234723 + }, + "m_overheadMessage": { + "type": "std::string", + "id": 9, + "offset": 248, + "flags": 8388639, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1701018190 + }, + "m_requirements": { + "type": "class RequirementList", + "id": 10, + "offset": 280, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2840988582 + }, + "m_mods": { + "type": "class PetStatModificationSet", + "id": 11, + "offset": 376, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 686212266 + } + } + }, + "1836789704": { + "name": "class ClientRecreateNPCActorCinematicAction*", + "bases": [ + "RecreateNPCActorCinematicAction", + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 1836789704, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + } + } + }, + "551490708": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 551490708, + "properties": { + "m_quantity": { + "type": "int", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 169215289 + }, + "m_rewardType": { + "type": "enum DailyQuestReward::RewardTypes", + "id": 1, + "offset": 76, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3431311734, + "enum_options": { + "RT_Gold": 0, + "RT_Crowns": 1, + "RT_ArenaTickets": 2, + "RT_PvPCurrency": 3, + "RT_PvPTourneyCurrency": 4, + "RT_Chest": 5, + "RT_Quest": 6 + } + }, + "m_lootTable": { + "type": "std::string", + "id": 2, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2539512673 + }, + "m_doubleLootTable": { + "type": "std::string", + "id": 3, + "offset": 112, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2975549628 + }, + "m_anniversaryLootTable": { + "type": "std::string", + "id": 4, + "offset": 144, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1514594483 + }, + "m_halloweenLootTable": { + "type": "std::string", + "id": 5, + "offset": 176, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2915828832 + }, + "m_christmasLootTable": { + "type": "std::string", + "id": 6, + "offset": 208, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1878775663 + } + } + }, + "1402381500": { + "name": "class SharedPointer", + "bases": [ + "LootInfo", + "LootInfoBase", + "PropertyClass" + ], + "hash": 1402381500, + "properties": { + "m_lootType": { + "type": "enum LootInfo::LOOT_TYPE", + "id": 0, + "offset": 72, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1591891442, + "enum_options": { + "LOOT_TYPE_NONE": 0, + "LOOT_TYPE_GOLD": 1, + "LOOT_TYPE_MANA": 2, + "LOOT_TYPE_ITEM": 3, + "LOOT_TYPE_TREASURE_CARD": 4, + "LOOT_TYPE_MAGIC_XP": 5, + "LOOT_TYPE_ADD_SPELL": 6, + "LOOT_TYPE_MAX_HEALTH": 7, + "LOOT_TYPE_MAX_GOLD": 8, + "LOOT_TYPE_MAX_MANA": 9, + "LOOT_TYPE_MAX_POTION": 10, + "LOOT_TYPE_TRAINING_POINTS": 11, + "LOOT_TYPE_RECIPE": 12, + "LOOT_TYPE_CRAFTING_SLOT": 13, + "LOOT_TYPE_REAGENT": 14, + "LOOT_TYPE_PETSNACK": 15, + "LOOT_TYPE_GARDENING_XP": 16, + "LOOT_TYPE_PET_XP": 17, + "LOOT_TYPE_TREASURE_TABLE": 18, + "LOOT_TYPE_ARENA_POINTS": 19, + "LOOT_TYPE_ARENA_BONUS_POINTS": 20, + "LOOT_TYPE_GROUP": 21, + "LOOT_TYPE_FISHING_XP": 22, + "LOOT_TYPE_EVENT_CURRENCY_1": 24, + "LOOT_TYPE_EVENT_CURRENCY_2": 25, + "LOOT_TYPE_PVP_CURRENCY": 26, + "LOOT_TYPE_PVP_CURRENCY_BONUS": 27, + "LOOT_TYPE_PVP_TOURNEY_CURRENCY": 28, + "LOOT_TYPE_PVP_TOURNEY_CURRENCY_BONUS": 29, + "LOOT_TYPE_FURNITURE_ESSENCE": 30 + } + }, + "m_maxGoldToAdd": { + "type": "int", + "id": 1, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 667552370 + } + } + }, + "1835791781": { + "name": "class SharedPointer", + "bases": [ + "CinematicAction", + "PropertyClass" + ], + "hash": 1835791781, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_interpDuration": { + "type": "float", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237711951 + } + } + }, + "1835763007": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1835763007, + "properties": { + "m_sAssetName": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2503711247 + } + } + }, + "991531582": { + "name": "class AnimationSoundData*", + "bases": [ + "PropertyClass" + ], + "hash": 991531582, + "properties": { + "m_animationName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3393414044 + }, + "m_soundFileName": { + "type": "std::string", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3058120805 + }, + "m_introSoundFileName": { + "type": "std::string", + "id": 2, + "offset": 136, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2449081745 + }, + "m_endSoundFileName": { + "type": "std::string", + "id": 3, + "offset": 168, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2326794300 + }, + "m_loop": { + "type": "bool", + "id": 4, + "offset": 200, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 222084781 + }, + "m_innerRadius": { + "type": "float", + "id": 5, + "offset": 204, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 686816091 + }, + "m_outerRadius": { + "type": "float", + "id": 6, + "offset": 208, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 542169294 + }, + "m_volume": { + "type": "float", + "id": 7, + "offset": 212, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1162855023 + }, + "m_introFadeInTime": { + "type": "float", + "id": 8, + "offset": 216, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 677198649 + }, + "m_introFadeOutTime": { + "type": "float", + "id": 9, + "offset": 220, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1748430618 + }, + "m_endFadeInTime": { + "type": "float", + "id": 10, + "offset": 224, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 717770180 + }, + "m_endFadeOutTime": { + "type": "float", + "id": 11, + "offset": 228, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 939807493 + } + } + }, + "1402444235": { + "name": "class CastleToursFavoritesBehaviorBase", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1402444235, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_castleToursFavoritesData": { + "type": "std::string", + "id": 1, + "offset": 128, + "flags": 575, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1708015073 + } + } + }, + "134829744": { + "name": "class AddCameraMappingCinematicAction", + "bases": [ + "CinematicAction", + "PropertyClass" + ], + "hash": 134829744, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_camToReplace": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2286913643 + }, + "m_replaceWithCam": { + "type": "std::string", + "id": 2, + "offset": 112, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2992754084 + } + } + }, + "552982840": { + "name": "class HatchmakingPet", + "bases": [ + "PropertyClass" + ], + "hash": 552982840, + "properties": { + "m_petGID": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 826202069 + }, + "m_ageOutTime": { + "type": "unsigned int", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 819371137 + }, + "m_cooldownTime": { + "type": "unsigned int", + "id": 2, + "offset": 84, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 902182593 + }, + "m_petTemplateID": { + "type": "unsigned int", + "id": 3, + "offset": 88, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 817215071 + }, + "m_hatchCount": { + "type": "unsigned int", + "id": 4, + "offset": 92, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1273194302 + }, + "m_nameKey": { + "type": "unsigned int", + "id": 5, + "offset": 96, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1104764311 + }, + "m_petItemGID": { + "type": "gid", + "id": 6, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2122895620 + } + } + }, + "991340342": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 991340342, + "properties": { + "m_list": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 908909694 + } + } + }, + "133866884": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 133866884, + "properties": { + "m_promoPromotions": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2231640821 + } + } + }, + "552171562": { + "name": "class SharedPointer", + "bases": [ + "CinematicAction", + "PropertyClass" + ], + "hash": 552171562, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_fDuration": { + "type": "float", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 598255075 + }, + "m_bCycle": { + "type": "bool", + "id": 2, + "offset": 84, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 240694213 + }, + "m_bFadeIn": { + "type": "bool", + "id": 3, + "offset": 85, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1507201372 + } + } + }, + "132642352": { + "name": "enum ZTCounterType", + "bases": [], + "hash": 132642352, + "properties": {} + }, + "552025821": { + "name": "class SharedPointer", + "bases": [ + "DerbyStealMorale", + "DerbyEffect", + "PropertyClass" + ], + "hash": 552025821, + "properties": { + "m_buffType": { + "type": "enum DerbyTalentBuffType", + "id": 0, + "offset": 92, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1149251982, + "enum_options": { + "Buff": 0, + "Debuff": 1, + "Neither": 2 + } + }, + "m_kTarget": { + "type": "enum DerbyTargetType", + "id": 1, + "offset": 96, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1807803351, + "enum_options": { + "kTargetInFront": 0, + "kTargetBehind": 1, + "kTargetFirst": 2, + "kTargetSelf": 3, + "kTargetAll": 4, + "kTargetLast": 5 + } + }, + "m_nDuration": { + "type": "int", + "id": 2, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1110167982 + }, + "m_effectID": { + "type": "unsigned int", + "id": 3, + "offset": 88, + "flags": 24, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2347630439 + }, + "m_imageFilename": { + "type": "std::string", + "id": 4, + "offset": 112, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2813328063 + }, + "m_iconIndex": { + "type": "unsigned int", + "id": 5, + "offset": 144, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1265133262 + }, + "m_soundOnActivate": { + "type": "std::string", + "id": 6, + "offset": 152, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1956929714 + }, + "m_soundOnTarget": { + "type": "std::string", + "id": 7, + "offset": 184, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3444214056 + }, + "m_targetParticleEffect": { + "type": "std::string", + "id": 8, + "offset": 216, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3048234723 + }, + "m_overheadMessage": { + "type": "std::string", + "id": 9, + "offset": 248, + "flags": 8388639, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1701018190 + }, + "m_requirements": { + "type": "class RequirementList", + "id": 10, + "offset": 280, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2840988582 + }, + "m_nAmountToSteal": { + "type": "int", + "id": 11, + "offset": 376, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 247752792 + } + } + }, + "1406476367": { + "name": "class SpellEffectPenalty*", + "bases": [ + "PropertyClass" + ], + "hash": 1406476367, + "properties": { + "m_effectType": { + "type": "enum SpellEffect::kSpellEffects", + "id": 0, + "offset": 72, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2578255295, + "enum_options": { + "SpellEffect::kInvalidSpellEffect": 0, + "SpellEffect::kDamage": 1, + "SpellEffect::kDamageNoCrit": 2, + "SpellEffect::kHeal": 3, + "SpellEffect::kStealHealth": 5, + "SpellEffect::kReduceOverTime": 6, + "SpellEffect::kDetonateOverTime": 7, + "SpellEffect::kPushCharm": 8, + "SpellEffect::kStealCharm": 9, + "SpellEffect::kPushWard": 10, + "SpellEffect::kStealWard": 11, + "SpellEffect::kPushOverTime": 12, + "SpellEffect::kStealOverTime": 13, + "SpellEffect::kRemoveCharm": 14, + "SpellEffect::kRemoveWard": 15, + "SpellEffect::kRemoveStunBlock": 117, + "SpellEffect::kRemoveOverTime": 16, + "SpellEffect::kRemoveAura": 17, + "SpellEffect::kSwapCharm": 19, + "SpellEffect::kSwapWard": 20, + "SpellEffect::kSwapOverTime": 21, + "SpellEffect::kModifyIncomingDamage": 22, + "SpellEffect::kModifyIncomingDamageFlat": 119, + "SpellEffect::kModifyIncomingDamageOverTime": 137, + "SpellEffect::kMaximumIncomingDamage": 23, + "SpellEffect::kModifyIncomingHeal": 24, + "SpellEffect::kModifyIncomingHealFlat": 118, + "SpellEffect::kModifyIncomingHealOverTime": 138, + "SpellEffect::kModifyIncomingDamageType": 25, + "SpellEffect::kModifyIncomingArmorPiercing": 26, + "SpellEffect::kModifyOutgoingDamage": 27, + "SpellEffect::kModifyOutgoingDamageFlat": 121, + "SpellEffect::kModifyOutgoingHeal": 28, + "SpellEffect::kModifyOutgoingHealFlat": 120, + "SpellEffect::kModifyOutgoingDamageType": 29, + "SpellEffect::kModifyOutgoingArmorPiercing": 30, + "SpellEffect::kBounceNext": 33, + "SpellEffect::kBouncePrevious": 34, + "SpellEffect::kBounceBack": 35, + "SpellEffect::kBounceAll": 36, + "SpellEffect::kAbsorbDamage": 37, + "SpellEffect::kAbsorbHeal": 38, + "SpellEffect::kModifyAccuracy": 39, + "SpellEffect::kDispel": 40, + "SpellEffect::kConfusion": 41, + "SpellEffect::kCloakedCharm": 42, + "SpellEffect::kCloakedWard": 43, + "SpellEffect::kStunResist": 44, + "SpellEffect::kPipConversion": 45, + "SpellEffect::kCritBoost": 46, + "SpellEffect::kCritBlock": 47, + "SpellEffect::kPolymorph": 48, + "SpellEffect::kModifyCardCloak": 50, + "SpellEffect::kModifyCardDamage": 51, + "SpellEffect::kModifyCardAccuracy": 53, + "SpellEffect::kModifyCardMutation": 54, + "SpellEffect::kModifyCardRank": 55, + "SpellEffect::kModifyCardArmorPiercing": 56, + "SpellEffect::kSummonCreature": 65, + "SpellEffect::kTeleportPlayer": 66, + "SpellEffect::kStun": 67, + "SpellEffect::kDampen": 68, + "SpellEffect::kReshuffle": 69, + "SpellEffect::kMindControl": 70, + "SpellEffect::kModifyPips": 71, + "SpellEffect::kModifyPowerPips": 72, + "SpellEffect::kModifyShadowPips": 73, + "SpellEffect::kModifyHate": 74, + "SpellEffect::kDamageOverTime": 75, + "SpellEffect::kHealOverTime": 76, + "SpellEffect::kModifyPowerPipChance": 77, + "SpellEffect::kModifyRank": 78, + "SpellEffect::kStunBlock": 79, + "SpellEffect::kRevealCloak": 80, + "SpellEffect::kInstantKill": 81, + "SpellEffect::kAfterlife": 82, + "SpellEffect::kDeferredDamage": 83, + "SpellEffect::kDamagePerTotalPipPower": 84, + "SpellEffect::kCloakedWardNoRemove": 86, + "SpellEffect::kAddCombatTriggerList": 87, + "SpellEffect::kRemoveCombatTriggerList": 88, + "SpellEffect::kBacklashDamage": 89, + "SpellEffect::kMaxHealthDamage": 112, + "SpellEffect::kModifyBacklash": 90, + "SpellEffect::kIntercept": 91, + "SpellEffect::kShadowSelf": 92, + "SpellEffect::kShadowCreature": 93, + "SpellEffect::kModifyShadowCreatureLevel": 94, + "SpellEffect::kSelectShadowCreatureAttackTarget": 95, + "SpellEffect::kShadowDecrementTurn": 96, + "SpellEffect::kCritBoostSchoolSpecific": 97, + "SpellEffect::kSpawnCreature": 98, + "SpellEffect::kUnPolymorph": 99, + "SpellEffect::kPowerPipConversion": 100, + "SpellEffect::kProtectBeneficial": 103, + "SpellEffect::kProtectHarmful": 104, + "SpellEffect::kProtectCardBeneficial": 101, + "SpellEffect::kProtectCardHarmful": 102, + "SpellEffect::kDivideDamage": 105, + "SpellEffect::kConfusionBlock": 109, + "SpellEffect::kModifyPipRoundRate": 110, + "SpellEffect::kMaxHealthHeal": 129, + "SpellEffect::kHealByWard": 130, + "SpellEffect::kTaunt": 131, + "SpellEffect::kPacify": 132, + "SpellEffect::kModifySchoolPips": 150 + } + }, + "m_disposition": { + "type": "enum SpellEffect::kHangingDisposition", + "id": 1, + "offset": 76, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1904841031, + "enum_options": { + "SpellEffect::kBoth": 0, + "SpellEffect::kBeneficial": 1, + "SpellEffect::kHarmful": 2 + } + }, + "m_penaltyTime": { + "type": "int", + "id": 2, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1993188358 + } + } + }, + "1837758769": { + "name": "class TreasureCardLootInfo", + "bases": [ + "LootInfo", + "LootInfoBase", + "PropertyClass" + ], + "hash": 1837758769, + "properties": { + "m_lootType": { + "type": "enum LootInfo::LOOT_TYPE", + "id": 0, + "offset": 72, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1591891442, + "enum_options": { + "LOOT_TYPE_NONE": 0, + "LOOT_TYPE_GOLD": 1, + "LOOT_TYPE_MANA": 2, + "LOOT_TYPE_ITEM": 3, + "LOOT_TYPE_TREASURE_CARD": 4, + "LOOT_TYPE_MAGIC_XP": 5, + "LOOT_TYPE_ADD_SPELL": 6, + "LOOT_TYPE_MAX_HEALTH": 7, + "LOOT_TYPE_MAX_GOLD": 8, + "LOOT_TYPE_MAX_MANA": 9, + "LOOT_TYPE_MAX_POTION": 10, + "LOOT_TYPE_TRAINING_POINTS": 11, + "LOOT_TYPE_RECIPE": 12, + "LOOT_TYPE_CRAFTING_SLOT": 13, + "LOOT_TYPE_REAGENT": 14, + "LOOT_TYPE_PETSNACK": 15, + "LOOT_TYPE_GARDENING_XP": 16, + "LOOT_TYPE_PET_XP": 17, + "LOOT_TYPE_TREASURE_TABLE": 18, + "LOOT_TYPE_ARENA_POINTS": 19, + "LOOT_TYPE_ARENA_BONUS_POINTS": 20, + "LOOT_TYPE_GROUP": 21, + "LOOT_TYPE_FISHING_XP": 22, + "LOOT_TYPE_EVENT_CURRENCY_1": 24, + "LOOT_TYPE_EVENT_CURRENCY_2": 25, + "LOOT_TYPE_PVP_CURRENCY": 26, + "LOOT_TYPE_PVP_CURRENCY_BONUS": 27, + "LOOT_TYPE_PVP_TOURNEY_CURRENCY": 28, + "LOOT_TYPE_PVP_TOURNEY_CURRENCY_BONUS": 29, + "LOOT_TYPE_FURNITURE_ESSENCE": 30 + } + }, + "m_spellID": { + "type": "unsigned int", + "id": 1, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1697483258 + } + } + }, + "991922385": { + "name": "class WizItemTemplate", + "bases": [ + "ItemTemplate", + "GameObjectTemplate", + "CoreTemplate", + "PropertyClass" + ], + "hash": 991922385, + "properties": { + "m_behaviors": { + "type": "class BehaviorTemplate*", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1197808594 + }, + "m_objectName": { + "type": "std::string", + "id": 1, + "offset": 96, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2154940147 + }, + "m_templateID": { + "type": "unsigned int", + "id": 2, + "offset": 128, + "flags": 16777223, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1286746870 + }, + "m_visualID": { + "type": "unsigned int", + "id": 3, + "offset": 132, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1118778894 + }, + "m_adjectiveList": { + "type": "std::string", + "id": 4, + "offset": 248, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 3195213318 + }, + "m_exemptFromAOI": { + "type": "bool", + "id": 5, + "offset": 240, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1457879059 + }, + "m_displayName": { + "type": "std::string", + "id": 6, + "offset": 168, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2446900370 + }, + "m_description": { + "type": "std::string", + "id": 7, + "offset": 136, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1649374815 + }, + "m_nObjectType": { + "type": "enum ObjectType", + "id": 8, + "offset": 200, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2118905880, + "enum_options": { + "OT_UNDEFINED": 0, + "OT_PLAYER": 1, + "OT_NPC": 2, + "OT_PROP": 3, + "OT_OBJECT": 4, + "OT_HOUSE": 5, + "OT_KEY": 6, + "OT_OLD_KEY": 7, + "OT_DEED": 8, + "OT_MAIL": 9, + "OT_RECIPE": 17, + "OT_EQUIP_HEAD": 10, + "OT_EQUIP_CHEST": 11, + "OT_EQUIP_LEGS": 12, + "OT_EQUIP_HANDS": 13, + "OT_EQUIP_FINGER": 14, + "OT_EQUIP_FEET": 15, + "OT_EQUIP_EAR": 16, + "OT_BUILDING_BLOCK": 18, + "OT_BUILDING_BLOCK_SOLID": 19, + "OT_GOLF": 20, + "OT_DOOR": 21, + "OT_PET": 22, + "OT_FABRIC": 23, + "OT_WINDOW": 24, + "OT_ROOF": 25, + "OT_HORSE": 26, + "OT_STRUCTURE": 27, + "OT_HOUSING_TEXTURE": 28, + "OT_PLANT": 29 + } + }, + "m_sIcon": { + "type": "std::string", + "id": 9, + "offset": 208, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306259831 + }, + "m_equipRequirements": { + "type": "class RequirementList*", + "id": 10, + "offset": 280, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2762617226 + }, + "m_purchaseRequirements": { + "type": "class RequirementList*", + "id": 11, + "offset": 288, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3174641793 + }, + "m_equipEffects": { + "type": "class GameEffectInfo*", + "id": 12, + "offset": 296, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 836628351 + }, + "m_baseCost": { + "type": "float", + "id": 13, + "offset": 312, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1565352651 + }, + "m_creditsCost": { + "type": "float", + "id": 14, + "offset": 320, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 805514974 + }, + "m_avatarInfo": { + "type": "class AvatarItemInfoBase*", + "id": 15, + "offset": 328, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2627321299 + }, + "m_avatarFlags": { + "type": "std::string", + "id": 16, + "offset": 336, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2347762759 + }, + "m_itemLimit": { + "type": "int", + "id": 17, + "offset": 316, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1799746856 + }, + "m_holidayFlag": { + "type": "std::string", + "id": 18, + "offset": 352, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2994795359 + }, + "m_itemSetBonusTemplateID": { + "type": "unsigned int", + "id": 19, + "offset": 384, + "flags": 33554439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1316835672 + }, + "m_numPrimaryColors": { + "type": "int", + "id": 20, + "offset": 428, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 981103872 + }, + "m_numSecondaryColors": { + "type": "int", + "id": 21, + "offset": 432, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1310416868 + }, + "m_numPatterns": { + "type": "int", + "id": 22, + "offset": 436, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 953162171 + }, + "m_school": { + "type": "std::string", + "id": 23, + "offset": 392, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2438566051 + }, + "m_arenaPointCost": { + "type": "int", + "id": 24, + "offset": 440, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1819621796 + }, + "m_pvpCurrencyCost": { + "type": "int", + "id": 25, + "offset": 444, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 645595444 + }, + "m_pvpTourneyCurrencyCost": { + "type": "int", + "id": 26, + "offset": 448, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 517874954 + }, + "m_rank": { + "type": "int", + "id": 27, + "offset": 424, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 219803942 + }, + "m_boyIconIndex": { + "type": "int", + "id": 28, + "offset": 452, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 802140453 + }, + "m_girlIconIndex": { + "type": "int", + "id": 29, + "offset": 456, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 832706793 + }, + "m_leashOffsetOverride": { + "type": "class SharedPointer", + "id": 30, + "offset": 464, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1692586788 + }, + "m_rarity": { + "type": "enum RarityType", + "id": 31, + "offset": 460, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2253792108, + "enum_options": { + "RT_COMMON": 0, + "RT_UNCOMMON": 1, + "RT_RARE": 2, + "RT_ULTRARARE": 3, + "RT_EPIC": 4 + } + } + } + }, + "1404707111": { + "name": "class PlaySoundCinematicAction", + "bases": [ + "CinematicAction", + "PropertyClass" + ], + "hash": 1404707111, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_sound": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 131079, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2307644996 + }, + "m_useClientLocation": { + "type": "bool", + "id": 2, + "offset": 100, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 98585784 + }, + "m_soundType": { + "type": "enum PlaySoundCinematicAction::SoundType", + "id": 3, + "offset": 96, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 868075053, + "enum_options": { + "kSigil": 0, + "kGotHit": 1, + "kDeath": 2, + "kChatter": 4, + "__DEFAULT": "kSigil" + } + }, + "m_streamSound": { + "type": "bool", + "id": 4, + "offset": 101, + "flags": 263, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1693179368 + }, + "m_playMusic": { + "type": "bool", + "id": 5, + "offset": 102, + "flags": 263, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 552729674 + }, + "m_fadeDuration": { + "type": "float", + "id": 6, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1402536557 + } + } + }, + "1837758745": { + "name": "class TreasureCardLootInfo*", + "bases": [ + "LootInfo", + "LootInfoBase", + "PropertyClass" + ], + "hash": 1837758745, + "properties": { + "m_lootType": { + "type": "enum LootInfo::LOOT_TYPE", + "id": 0, + "offset": 72, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1591891442, + "enum_options": { + "LOOT_TYPE_NONE": 0, + "LOOT_TYPE_GOLD": 1, + "LOOT_TYPE_MANA": 2, + "LOOT_TYPE_ITEM": 3, + "LOOT_TYPE_TREASURE_CARD": 4, + "LOOT_TYPE_MAGIC_XP": 5, + "LOOT_TYPE_ADD_SPELL": 6, + "LOOT_TYPE_MAX_HEALTH": 7, + "LOOT_TYPE_MAX_GOLD": 8, + "LOOT_TYPE_MAX_MANA": 9, + "LOOT_TYPE_MAX_POTION": 10, + "LOOT_TYPE_TRAINING_POINTS": 11, + "LOOT_TYPE_RECIPE": 12, + "LOOT_TYPE_CRAFTING_SLOT": 13, + "LOOT_TYPE_REAGENT": 14, + "LOOT_TYPE_PETSNACK": 15, + "LOOT_TYPE_GARDENING_XP": 16, + "LOOT_TYPE_PET_XP": 17, + "LOOT_TYPE_TREASURE_TABLE": 18, + "LOOT_TYPE_ARENA_POINTS": 19, + "LOOT_TYPE_ARENA_BONUS_POINTS": 20, + "LOOT_TYPE_GROUP": 21, + "LOOT_TYPE_FISHING_XP": 22, + "LOOT_TYPE_EVENT_CURRENCY_1": 24, + "LOOT_TYPE_EVENT_CURRENCY_2": 25, + "LOOT_TYPE_PVP_CURRENCY": 26, + "LOOT_TYPE_PVP_CURRENCY_BONUS": 27, + "LOOT_TYPE_PVP_TOURNEY_CURRENCY": 28, + "LOOT_TYPE_PVP_TOURNEY_CURRENCY_BONUS": 29, + "LOOT_TYPE_FURNITURE_ESSENCE": 30 + } + }, + "m_spellID": { + "type": "unsigned int", + "id": 1, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1697483258 + } + } + }, + "1403243436": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1403243436, + "properties": { + "m_percentChance": { + "type": "unsigned char", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1023261955 + }, + "m_objectInfo": { + "type": "class SpawnObjectInfo*", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1481415047 + } + } + }, + "552944636": { + "name": "struct std::pair", + "bases": [], + "hash": 552944636, + "properties": {} + }, + "133276889": { + "name": "class ClientTimedItemBehavior*", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 133276889, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_expireTime": { + "type": "unsigned int", + "id": 1, + "offset": 112, + "flags": 59, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1836304873 + } + } + }, + "552606866": { + "name": "class ObstacleCourseObstaclePathBaseTemplate*", + "bases": [ + "ObstacleCourseObstacleBehaviorTemplate", + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 552606866, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + }, + "m_rate": { + "type": "float", + "id": 1, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 310005283 + }, + "m_penaltyTime": { + "type": "float", + "id": 2, + "offset": 124, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2083389507 + }, + "m_totalObstacleSize": { + "type": "class Vector3D", + "id": 3, + "offset": 128, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2379878414 + }, + "m_bounds": { + "type": "class Vector3D", + "id": 4, + "offset": 152, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1948083181 + }, + "m_orientToPath": { + "type": "bool", + "id": 5, + "offset": 176, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 655036148 + }, + "m_heightUp": { + "type": "float", + "id": 6, + "offset": 140, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2208713013 + }, + "m_heightDown": { + "type": "float", + "id": 7, + "offset": 144, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 655333896 + } + } + }, + "995444126": { + "name": "class SoundBehavior", + "bases": [ + "AreaBehavior", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 995444126, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_radius": { + "type": "float", + "id": 1, + "offset": 116, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 989410271 + }, + "m_category": { + "type": "enum AudioCategory", + "id": 2, + "offset": 124, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2951251982, + "enum_options": { + "AudioCategory_Irrelevent": 0, + "AudioCategory_Accoustic": 1, + "AudioCategory_Noise": 2, + "AudioCategory_Music": 3 + } + }, + "m_exclusive": { + "type": "bool", + "id": 3, + "offset": 128, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 824383403 + }, + "m_playList": { + "type": "class PlayList", + "id": 4, + "offset": 176, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2061221957 + }, + "m_volume": { + "type": "float", + "id": 5, + "offset": 304, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1162855023 + }, + "m_loopCount": { + "type": "int", + "id": 6, + "offset": 308, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 865634717 + } + } + }, + "1838542527": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1838542527, + "properties": { + "m_packageContents": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 268435463, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 3309777205, + "enum_options": { + "__BASECLASS": "ZoneData" + } + } + } + }, + "993477102": { + "name": "class ClientActorDialogCinematicAction*", + "bases": [ + "ActorDialogCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 993477102, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_dialog": { + "type": "class ActorDialog*", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1310859212 + }, + "m_activePersona": { + "type": "std::string", + "id": 2, + "offset": 88, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1972573231 + } + } + }, + "1404794289": { + "name": "class BoosterPackTemplate", + "bases": [ + "WizItemTemplate", + "ItemTemplate", + "GameObjectTemplate", + "CoreTemplate", + "PropertyClass" + ], + "hash": 1404794289, + "properties": { + "m_behaviors": { + "type": "class BehaviorTemplate*", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1197808594 + }, + "m_objectName": { + "type": "std::string", + "id": 1, + "offset": 96, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2154940147 + }, + "m_templateID": { + "type": "unsigned int", + "id": 2, + "offset": 128, + "flags": 16777223, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1286746870 + }, + "m_visualID": { + "type": "unsigned int", + "id": 3, + "offset": 132, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1118778894 + }, + "m_adjectiveList": { + "type": "std::string", + "id": 4, + "offset": 248, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 3195213318 + }, + "m_exemptFromAOI": { + "type": "bool", + "id": 5, + "offset": 240, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1457879059 + }, + "m_displayName": { + "type": "std::string", + "id": 6, + "offset": 168, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2446900370 + }, + "m_description": { + "type": "std::string", + "id": 7, + "offset": 136, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1649374815 + }, + "m_nObjectType": { + "type": "enum ObjectType", + "id": 8, + "offset": 200, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2118905880, + "enum_options": { + "OT_UNDEFINED": 0, + "OT_PLAYER": 1, + "OT_NPC": 2, + "OT_PROP": 3, + "OT_OBJECT": 4, + "OT_HOUSE": 5, + "OT_KEY": 6, + "OT_OLD_KEY": 7, + "OT_DEED": 8, + "OT_MAIL": 9, + "OT_RECIPE": 17, + "OT_EQUIP_HEAD": 10, + "OT_EQUIP_CHEST": 11, + "OT_EQUIP_LEGS": 12, + "OT_EQUIP_HANDS": 13, + "OT_EQUIP_FINGER": 14, + "OT_EQUIP_FEET": 15, + "OT_EQUIP_EAR": 16, + "OT_BUILDING_BLOCK": 18, + "OT_BUILDING_BLOCK_SOLID": 19, + "OT_GOLF": 20, + "OT_DOOR": 21, + "OT_PET": 22, + "OT_FABRIC": 23, + "OT_WINDOW": 24, + "OT_ROOF": 25, + "OT_HORSE": 26, + "OT_STRUCTURE": 27, + "OT_HOUSING_TEXTURE": 28, + "OT_PLANT": 29 + } + }, + "m_sIcon": { + "type": "std::string", + "id": 9, + "offset": 208, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306259831 + }, + "m_equipRequirements": { + "type": "class RequirementList*", + "id": 10, + "offset": 280, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2762617226 + }, + "m_purchaseRequirements": { + "type": "class RequirementList*", + "id": 11, + "offset": 288, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3174641793 + }, + "m_equipEffects": { + "type": "class GameEffectInfo*", + "id": 12, + "offset": 296, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 836628351 + }, + "m_baseCost": { + "type": "float", + "id": 13, + "offset": 312, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1565352651 + }, + "m_creditsCost": { + "type": "float", + "id": 14, + "offset": 320, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 805514974 + }, + "m_avatarInfo": { + "type": "class AvatarItemInfoBase*", + "id": 15, + "offset": 328, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2627321299 + }, + "m_avatarFlags": { + "type": "std::string", + "id": 16, + "offset": 336, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2347762759 + }, + "m_itemLimit": { + "type": "int", + "id": 17, + "offset": 316, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1799746856 + }, + "m_holidayFlag": { + "type": "std::string", + "id": 18, + "offset": 352, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2994795359 + }, + "m_itemSetBonusTemplateID": { + "type": "unsigned int", + "id": 19, + "offset": 384, + "flags": 33554439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1316835672 + }, + "m_numPrimaryColors": { + "type": "int", + "id": 20, + "offset": 428, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 981103872 + }, + "m_numSecondaryColors": { + "type": "int", + "id": 21, + "offset": 432, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1310416868 + }, + "m_numPatterns": { + "type": "int", + "id": 22, + "offset": 436, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 953162171 + }, + "m_school": { + "type": "std::string", + "id": 23, + "offset": 392, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2438566051 + }, + "m_arenaPointCost": { + "type": "int", + "id": 24, + "offset": 440, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1819621796 + }, + "m_pvpCurrencyCost": { + "type": "int", + "id": 25, + "offset": 444, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 645595444 + }, + "m_pvpTourneyCurrencyCost": { + "type": "int", + "id": 26, + "offset": 448, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 517874954 + }, + "m_rank": { + "type": "int", + "id": 27, + "offset": 424, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 219803942 + }, + "m_boyIconIndex": { + "type": "int", + "id": 28, + "offset": 452, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 802140453 + }, + "m_girlIconIndex": { + "type": "int", + "id": 29, + "offset": 456, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 832706793 + }, + "m_leashOffsetOverride": { + "type": "class SharedPointer", + "id": 30, + "offset": 464, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1692586788 + }, + "m_rarity": { + "type": "enum RarityType", + "id": 31, + "offset": 460, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2253792108, + "enum_options": { + "RT_COMMON": 0, + "RT_UNCOMMON": 1, + "RT_RARE": 2, + "RT_ULTRARARE": 3, + "RT_EPIC": 4 + } + }, + "m_lootTables": { + "type": "std::string", + "id": 32, + "offset": 488, + "flags": 268435463, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1514961588, + "enum_options": { + "__BASECLASS": "LootTable" + } + }, + "m_featuredRewards": { + "type": "gid", + "id": 33, + "offset": 504, + "flags": 33554439, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1360288832 + }, + "m_nif": { + "type": "std::string", + "id": 34, + "offset": 520, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1764743064 + }, + "m_boosterPackType": { + "type": "enum BoosterPackTemplate::BoosterPackType", + "id": 35, + "offset": 480, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2575057189, + "enum_options": { + "TreasureCards": 0, + "Reagents": 1, + "Snacks": 2, + "GardenTreasureCards": 3, + "Items": 4, + "MixOfVarious": 5, + "RockhammerJewelPack": 6, + "PurreauPack": 7, + "SchoolJewelPack": 8 + } + } + } + }, + "1838072168": { + "name": "class AutobotMobAvoidance*", + "bases": [ + "PropertyClass" + ], + "hash": 1838072168, + "properties": {} + }, + "993106589": { + "name": "class SortedCaughtFish*", + "bases": [ + "PropertyClass" + ], + "hash": 993106589, + "properties": {} + }, + "1404790188": { + "name": "class ObstacleCourseFinishLineBehaviorTemplate*", + "bases": [ + "ObstacleCourseObstacleBehaviorTemplate", + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 1404790188, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + }, + "m_width": { + "type": "double", + "id": 1, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2712265261 + }, + "m_height": { + "type": "double", + "id": 2, + "offset": 128, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2410586086 + } + } + }, + "134394926": { + "name": "class HaltCinematicAction", + "bases": [ + "CinematicAction", + "PropertyClass" + ], + "hash": 134394926, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + } + } + }, + "992651530": { + "name": "class std::list >", + "bases": [], + "hash": 992651530, + "properties": {} + }, + "553226975": { + "name": "class PlacementDisplayItem*", + "bases": [ + "PropertyClass" + ], + "hash": 553226975, + "properties": {} + }, + "992577087": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 992577087, + "properties": { + "m_cameraName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3252786917 + }, + "m_overrideName": { + "type": "std::string", + "id": 1, + "offset": 104, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1990707228 + }, + "m_fMinHeight": { + "type": "float", + "id": 2, + "offset": 136, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2189896538 + } + } + }, + "1404790572": { + "name": "class ObstacleCourseFinishLineBehaviorTemplate", + "bases": [ + "ObstacleCourseObstacleBehaviorTemplate", + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 1404790572, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + }, + "m_width": { + "type": "double", + "id": 1, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2712265261 + }, + "m_height": { + "type": "double", + "id": 2, + "offset": 128, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2410586086 + } + } + }, + "134592854": { + "name": "class SharedPointer", + "bases": [ + "GameEffectBase", + "PropertyClass" + ], + "hash": 134592854, + "properties": { + "m_currentTickCount": { + "type": "double", + "id": 0, + "offset": 80, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2533274692 + }, + "m_effectNameID": { + "type": "unsigned int", + "id": 1, + "offset": 96, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1204067144 + }, + "m_bIsOnPet": { + "type": "bool", + "id": 2, + "offset": 73, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 522593303 + }, + "m_originatorID": { + "type": "gid", + "id": 3, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1131810019 + }, + "m_itemSlotID": { + "type": "unsigned int", + "id": 4, + "offset": 112, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1895747595 + }, + "m_internalID": { + "type": "int", + "id": 5, + "offset": 92, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1643137924 + }, + "m_endTime": { + "type": "unsigned int", + "id": 6, + "offset": 88, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 716479635 + }, + "m_pulseCount": { + "type": "double", + "id": 7, + "offset": 128, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3507157375 + } + } + }, + "1838669794": { + "name": "class WizClientPet*", + "bases": [ + "WizClientLeashedObject", + "WizClientObject", + "ClientObject", + "CoreObject", + "PropertyClass" + ], + "hash": 1838669794, + "properties": { + "m_inactiveBehaviors": { + "type": "class SharedPointer", + "id": 0, + "offset": 224, + "flags": 31, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1850812559 + }, + "m_globalID.m_full": { + "type": "unsigned __int64", + "id": 1, + "offset": 72, + "flags": 16777247, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2312465444 + }, + "m_permID": { + "type": "unsigned __int64", + "id": 2, + "offset": 80, + "flags": 16777247, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1298909658 + }, + "m_location": { + "type": "class Vector3D", + "id": 3, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2239683611 + }, + "m_orientation": { + "type": "class Vector3D", + "id": 4, + "offset": 180, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2344058766 + }, + "m_fScale": { + "type": "float", + "id": 5, + "offset": 196, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 503137701 + }, + "m_templateID.m_full": { + "type": "unsigned __int64", + "id": 6, + "offset": 96, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 633907631 + }, + "m_debugName": { + "type": "std::string", + "id": 7, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3553984419 + }, + "m_displayKey": { + "type": "std::string", + "id": 8, + "offset": 136, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3023276954 + }, + "m_zoneTagID": { + "type": "unsigned int", + "id": 9, + "offset": 344, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 965291410 + }, + "m_speedMultiplier": { + "type": "short", + "id": 10, + "offset": 192, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 123130076 + }, + "m_nMobileID": { + "type": "unsigned short", + "id": 11, + "offset": 194, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1054318939 + }, + "m_characterId": { + "type": "gid", + "id": 12, + "offset": 440, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 210498418 + }, + "m_gameStats": { + "type": "class WizGameStats*", + "id": 13, + "offset": 552, + "flags": 27, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3194480406 + }, + "m_leashed": { + "type": "bool", + "id": 14, + "offset": 584, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 603235945 + } + } + }, + "552982936": { + "name": "class HatchmakingPet*", + "bases": [ + "PropertyClass" + ], + "hash": 552982936, + "properties": { + "m_petGID": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 826202069 + }, + "m_ageOutTime": { + "type": "unsigned int", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 819371137 + }, + "m_cooldownTime": { + "type": "unsigned int", + "id": 2, + "offset": 84, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 902182593 + }, + "m_petTemplateID": { + "type": "unsigned int", + "id": 3, + "offset": 88, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 817215071 + }, + "m_hatchCount": { + "type": "unsigned int", + "id": 4, + "offset": 92, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1273194302 + }, + "m_nameKey": { + "type": "unsigned int", + "id": 5, + "offset": 96, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1104764311 + }, + "m_petItemGID": { + "type": "gid", + "id": 6, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2122895620 + } + } + }, + "992329990": { + "name": "class CombatResult", + "bases": [ + "PropertyClass" + ], + "hash": 992329990, + "properties": { + "m_resultType": { + "type": "enum CombatResult::kResultType", + "id": 0, + "offset": 72, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1482430415, + "enum_options": { + "kResult_StartSpellCast": 0, + "kResult_StartSpellNoCast": 1, + "kResult_Focus": 2, + "kResult_Discard": 3, + "kResult_Flee": 4, + "kResult_HangingEffectAdded": 5, + "kResult_ProtectedHangingEffectAdded": 6, + "kResult_RemovingHangingEffect": 7, + "kResult_HangingEffectRemovedIncoming": 8, + "kResult_HangingEffectRemovedIncomingFast": 9, + "kResult_HangingEffectRemovedIncomingDetonated": 10, + "kResult_HangingEffectRemovedOutgoing": 11, + "kResult_HangingEffectRemovedOutgoingFast": 12, + "kResult_HangingEffectProcessed": 13, + "kResult_HangingEffectRoundsModified": 14, + "kResult_Bounce": 15, + "kResult_TakeDamage": 16, + "kResult_HealDamage": 17, + "kResult_TakeDamageOverTime": 18, + "kResult_HealDamageOverTime": 19, + "kResult_StealTake": 20, + "kResult_StealGive": 21, + "kResult_AbsorbDamage": 22, + "kResult_AbsorbHeal": 110, + "kResult_Miss": 23, + "kResult_Hit": 24, + "kResult_CriticalBlocked": 25, + "kResult_CriticalHit": 26, + "kResult_GlobalEffectProcessed": 27, + "kResult_GlobalEffectAdded": 28, + "kResult_GlobalEffectRemoved": 29, + "kResult_PlayerDied": 30, + "kResult_CreatureSummoned": 31, + "kResult_TeleportPlayer": 32, + "kResult_PipsModified": 33, + "kResult_PowerPipsModified": 34, + "kResult_ShadowPipsModified": 35, + "kResult_Stunned": 36, + "kResult_Unstunned": 37, + "kResult_Polymorphed": 38, + "kResult_UnPolymorphed": 39, + "kResult_Reshuffle": 40, + "kResult_SpellDone": 41, + "kResult_ModifyHate": 42, + "kResult_MindControlled": 43, + "kResult_UnMindControlled": 44, + "kResult_MindControlImmune": 45, + "kResult_AddAura": 46, + "kResult_RemoveAura": 47, + "kResult_BuffDebuff": 48, + "kResult_Resurrected": 49, + "kResult_DamageTypeChanged": 50, + "kResult_CloakedEffectAdded": 51, + "kResult_RevealCloakedEffect": 52, + "kResult_StunResist": 53, + "kResult_StunResistFailed": 54, + "kResult_StunImmune": 55, + "kResult_ArmorPierced": 56, + "kResult_AfterlifeEffectsProcessed": 57, + "kResult_AfterlifeEffectsAdded": 58, + "kResult_AfterlifeEffectsRemoved": 59, + "kResult_EffectFailed": 60, + "kResult_StartAOE": 61, + "kResult_StopAOE": 62, + "kResult_StartAOEAct": 63, + "kResult_StopAOEAct": 64, + "kResult_CombatTriggerListAdded": 65, + "kResult_CombatTriggerListRemoved": 66, + "kResult_AddBacklashResult": 72, + "kResult_RemoveBacklashResult": 73, + "kResult_AddShadowSpellEffect": 67, + "kResult_ChangeShadowSelfEffect": 71, + "kResult_RemoveShadowSpellEffect": 68, + "kResult_ShadowSelfEffect": 69, + "kResult_UnShadowSelfEffect": 70, + "kResult_ModifyBacklash": 74, + "kResult_AddIntercept": 75, + "kResult_RemoveIntercept": 76, + "kResult_TakeInterceptDamage": 77, + "kResult_InterceptedDamage": 78, + "kResult_InterceptedDamageThisRound": 79, + "kResult_IncreaseShadowCreatureLevel": 81, + "kResult_DecreaseShadowCreatureLevel": 82, + "kResult_SetShadowCreatureLevel": 83, + "kResult_RemoveShadowCreature": 84, + "kResult_ShadowCreatureAttack": 85, + "kResult_PostActionProcess": 86, + "kResult_CreatureSpawned": 88, + "kResult_HangingEffectRemovedProtection": 90, + "kResult_planningPhasePipSync": 97, + "kResult_pipConversionRefund": 96, + "kResult_FirstPlayerSwitched": 98, + "kResult_Confused": 99, + "kResult_Unconfused": 100, + "kResult_Clued": 102, + "kResult_ClueImmune": 103, + "kResult_PetCasted": 112, + "kResult_CastSigilSpell": 113, + "kResult_AddSpellToDeck": 114, + "kResult_SetTopTeam": 115, + "kResult_SetBottomTeam": 116, + "kResult_ClearTopTeam": 117, + "kResult_ClearBottomTeam": 118, + "kResult_StartBackRowCast": 119, + "kResult_StopBackRowCast": 120, + "kResult_SchoolPipsModified": 121, + "kResult_None": 122 + } + }, + "m_participantSubCircle": { + "type": "int", + "id": 1, + "offset": 76, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1360563125 + }, + "m_effectType": { + "type": "int", + "id": 2, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 531703753 + }, + "m_effectAmount": { + "type": "int", + "id": 3, + "offset": 84, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 498226203 + }, + "m_spellTemplateID": { + "type": "unsigned int", + "id": 4, + "offset": 88, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 585567702 + }, + "m_spellBaseOverrideTemplateID": { + "type": "unsigned int", + "id": 5, + "offset": 92, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2024236913 + }, + "m_targetSubCircle": { + "type": "int", + "id": 6, + "offset": 96, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1278786653 + }, + "m_durationModifier": { + "type": "float", + "id": 7, + "offset": 192, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 753259116 + }, + "m_petCasted": { + "type": "bool", + "id": 8, + "offset": 196, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1697247120 + }, + "m_petCastedTarget": { + "type": "int", + "id": 9, + "offset": 200, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1344025214 + }, + "m_cloaked": { + "type": "bool", + "id": 10, + "offset": 204, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 7349510 + } + } + }, + "1405682796": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1405682796, + "properties": { + "sText": { + "type": "std::wstring", + "id": 0, + "offset": 72, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1567439332 + }, + "dwFlags": { + "type": "unsigned int", + "id": 1, + "offset": 104, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1021307529 + } + } + }, + "135715367": { + "name": "class CompassMarkerWindow*", + "bases": [ + "Window", + "PropertyClass" + ], + "hash": 135715367, + "properties": { + "m_sName": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306437263 + }, + "m_Children": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621225959 + }, + "m_Style": { + "type": "unsigned int", + "id": 2, + "offset": 152, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "SCALE_CHILDREN": 2, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "FOCUS_LOCKED": 64, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152 + } + }, + "m_Flags": { + "type": "unsigned int", + "id": 3, + "offset": 156, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } + }, + "m_Window": { + "type": "class Rect", + "id": 4, + "offset": 160, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3105139380 + }, + "m_fTargetAlpha": { + "type": "float", + "id": 5, + "offset": 212, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1809129834 + }, + "m_fDisabledAlpha": { + "type": "float", + "id": 6, + "offset": 216, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1389987675 + }, + "m_fAlpha": { + "type": "float", + "id": 7, + "offset": 208, + "flags": 65671, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 482130755 + }, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3623628394 + }, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2102211316 + }, + "m_sScript": { + "type": "std::string", + "id": 10, + "offset": 352, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1846695875 + }, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3389835433 + }, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547159940 + }, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513510520 + }, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3091503757 + } + } + }, + "1839805722": { + "name": "class ClientStopHangingRotationCinematicAction*", + "bases": [ + "StopHangingRotationCinematicAction", + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 1839805722, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + }, + "m_cloaked": { + "type": "bool", + "id": 2, + "offset": 124, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 7349510 + }, + "m_type": { + "type": "enum StopHangingRotationCinematicAction::kStopHangingTypes", + "id": 3, + "offset": 120, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2339468071, + "enum_options": { + "kStopHanging_Burn": 0, + "kStopHanging_Add": 1 + } + } + } + }, + "553226999": { + "name": "class PlacementDisplayItem", + "bases": [ + "PropertyClass" + ], + "hash": 553226999, + "properties": {} + }, + "135479856": { + "name": "class AddSpellLootInfo", + "bases": [ + "LootInfo", + "LootInfoBase", + "PropertyClass" + ], + "hash": 135479856, + "properties": { + "m_lootType": { + "type": "enum LootInfo::LOOT_TYPE", + "id": 0, + "offset": 72, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1591891442, + "enum_options": { + "LOOT_TYPE_NONE": 0, + "LOOT_TYPE_GOLD": 1, + "LOOT_TYPE_MANA": 2, + "LOOT_TYPE_ITEM": 3, + "LOOT_TYPE_TREASURE_CARD": 4, + "LOOT_TYPE_MAGIC_XP": 5, + "LOOT_TYPE_ADD_SPELL": 6, + "LOOT_TYPE_MAX_HEALTH": 7, + "LOOT_TYPE_MAX_GOLD": 8, + "LOOT_TYPE_MAX_MANA": 9, + "LOOT_TYPE_MAX_POTION": 10, + "LOOT_TYPE_TRAINING_POINTS": 11, + "LOOT_TYPE_RECIPE": 12, + "LOOT_TYPE_CRAFTING_SLOT": 13, + "LOOT_TYPE_REAGENT": 14, + "LOOT_TYPE_PETSNACK": 15, + "LOOT_TYPE_GARDENING_XP": 16, + "LOOT_TYPE_PET_XP": 17, + "LOOT_TYPE_TREASURE_TABLE": 18, + "LOOT_TYPE_ARENA_POINTS": 19, + "LOOT_TYPE_ARENA_BONUS_POINTS": 20, + "LOOT_TYPE_GROUP": 21, + "LOOT_TYPE_FISHING_XP": 22, + "LOOT_TYPE_EVENT_CURRENCY_1": 24, + "LOOT_TYPE_EVENT_CURRENCY_2": 25, + "LOOT_TYPE_PVP_CURRENCY": 26, + "LOOT_TYPE_PVP_CURRENCY_BONUS": 27, + "LOOT_TYPE_PVP_TOURNEY_CURRENCY": 28, + "LOOT_TYPE_PVP_TOURNEY_CURRENCY_BONUS": 29, + "LOOT_TYPE_FURNITURE_ESSENCE": 30 + } + }, + "m_spellName": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 268435487, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2688485244, + "enum_options": { + "__BASECLASS": "SpellTemplate" + } + }, + "m_internalName": { + "type": "std::string", + "id": 2, + "offset": 112, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1924993817 + }, + "m_spellID": { + "type": "unsigned int", + "id": 3, + "offset": 144, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1697483258 + } + } + }, + "1838992429": { + "name": "class WinAnimSizeTime*", + "bases": [ + "WinAnimSize", + "WindowAnimation", + "PropertyClass" + ], + "hash": 1838992429, + "properties": { + "m_bUseDeepCopy": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 433380635 + }, + "m_size": { + "type": "class Size", + "id": 1, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 251247159 + }, + "m_fTimeTotal": { + "type": "float", + "id": 2, + "offset": 88, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 661225456 + }, + "m_fTimeRemaining": { + "type": "float", + "id": 3, + "offset": 92, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1591443014 + }, + "m_currentSize": { + "type": "class Vector3D", + "id": 4, + "offset": 96, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2914066496 + } + } + }, + "993084640": { + "name": "class PetSnackBehavior*", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 993084640, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_snackBag": { + "type": "class ObjectBag", + "id": 1, + "offset": 112, + "flags": 27, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2027393587 + } + } + }, + "135381552": { + "name": "class AddSpellLootInfo*", + "bases": [ + "LootInfo", + "LootInfoBase", + "PropertyClass" + ], + "hash": 135381552, + "properties": { + "m_lootType": { + "type": "enum LootInfo::LOOT_TYPE", + "id": 0, + "offset": 72, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1591891442, + "enum_options": { + "LOOT_TYPE_NONE": 0, + "LOOT_TYPE_GOLD": 1, + "LOOT_TYPE_MANA": 2, + "LOOT_TYPE_ITEM": 3, + "LOOT_TYPE_TREASURE_CARD": 4, + "LOOT_TYPE_MAGIC_XP": 5, + "LOOT_TYPE_ADD_SPELL": 6, + "LOOT_TYPE_MAX_HEALTH": 7, + "LOOT_TYPE_MAX_GOLD": 8, + "LOOT_TYPE_MAX_MANA": 9, + "LOOT_TYPE_MAX_POTION": 10, + "LOOT_TYPE_TRAINING_POINTS": 11, + "LOOT_TYPE_RECIPE": 12, + "LOOT_TYPE_CRAFTING_SLOT": 13, + "LOOT_TYPE_REAGENT": 14, + "LOOT_TYPE_PETSNACK": 15, + "LOOT_TYPE_GARDENING_XP": 16, + "LOOT_TYPE_PET_XP": 17, + "LOOT_TYPE_TREASURE_TABLE": 18, + "LOOT_TYPE_ARENA_POINTS": 19, + "LOOT_TYPE_ARENA_BONUS_POINTS": 20, + "LOOT_TYPE_GROUP": 21, + "LOOT_TYPE_FISHING_XP": 22, + "LOOT_TYPE_EVENT_CURRENCY_1": 24, + "LOOT_TYPE_EVENT_CURRENCY_2": 25, + "LOOT_TYPE_PVP_CURRENCY": 26, + "LOOT_TYPE_PVP_CURRENCY_BONUS": 27, + "LOOT_TYPE_PVP_TOURNEY_CURRENCY": 28, + "LOOT_TYPE_PVP_TOURNEY_CURRENCY_BONUS": 29, + "LOOT_TYPE_FURNITURE_ESSENCE": 30 + } + }, + "m_spellName": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 268435487, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2688485244, + "enum_options": { + "__BASECLASS": "SpellTemplate" + } + }, + "m_internalName": { + "type": "std::string", + "id": 2, + "offset": 112, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1924993817 + }, + "m_spellID": { + "type": "unsigned int", + "id": 3, + "offset": 144, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1697483258 + } + } + }, + "1838778020": { + "name": "class CinematicActor*", + "bases": [ + "PropertyClass" + ], + "hash": 1838778020, + "properties": {} + }, + "1407815894": { + "name": "class ClientDerbyModifyPetStat", + "bases": [ + "DerbyModifyPetStat", + "DerbyEffect", + "PropertyClass" + ], + "hash": 1407815894, + "properties": { + "m_buffType": { + "type": "enum DerbyTalentBuffType", + "id": 0, + "offset": 92, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1149251982, + "enum_options": { + "Buff": 0, + "Debuff": 1, + "Neither": 2 + } + }, + "m_kTarget": { + "type": "enum DerbyTargetType", + "id": 1, + "offset": 96, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1807803351, + "enum_options": { + "kTargetInFront": 0, + "kTargetBehind": 1, + "kTargetFirst": 2, + "kTargetSelf": 3, + "kTargetAll": 4, + "kTargetLast": 5 + } + }, + "m_nDuration": { + "type": "int", + "id": 2, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1110167982 + }, + "m_effectID": { + "type": "unsigned int", + "id": 3, + "offset": 88, + "flags": 24, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2347630439 + }, + "m_imageFilename": { + "type": "std::string", + "id": 4, + "offset": 112, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2813328063 + }, + "m_iconIndex": { + "type": "unsigned int", + "id": 5, + "offset": 144, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1265133262 + }, + "m_soundOnActivate": { + "type": "std::string", + "id": 6, + "offset": 152, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1956929714 + }, + "m_soundOnTarget": { + "type": "std::string", + "id": 7, + "offset": 184, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3444214056 + }, + "m_targetParticleEffect": { + "type": "std::string", + "id": 8, + "offset": 216, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3048234723 + }, + "m_overheadMessage": { + "type": "std::string", + "id": 9, + "offset": 248, + "flags": 8388639, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1701018190 + }, + "m_requirements": { + "type": "class RequirementList", + "id": 10, + "offset": 280, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2840988582 + }, + "m_mods": { + "type": "class PetStatModificationSet", + "id": 11, + "offset": 376, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 686212266 + } + } + }, + "135264059": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 135264059, + "properties": { + "m_assetName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513131580 + }, + "m_assetPlaybackTime": { + "type": "float", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1640179405 + } + } + }, + "559204499": { + "name": "class WindowStyle*", + "bases": [ + "PropertyClass" + ], + "hash": 559204499, + "properties": { + "m_pBackMaterial": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1628562023 + }, + "m_pFont": { + "type": "class SharedPointer", + "id": 1, + "offset": 88, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1067686307 + }, + "m_pLargeFont": { + "type": "class SharedPointer", + "id": 2, + "offset": 104, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1523900782 + }, + "m_pSmallFont": { + "type": "class SharedPointer", + "id": 3, + "offset": 120, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2363252956 + }, + "m_Color": { + "type": "class Color", + "id": 4, + "offset": 136, + "flags": 262279, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1753714077 + }, + "m_HighColor": { + "type": "class Color", + "id": 5, + "offset": 140, + "flags": 262279, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2310527421 + }, + "m_SelectColor": { + "type": "class Color", + "id": 6, + "offset": 144, + "flags": 262279, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2792529213 + }, + "m_BorderColor": { + "type": "class Color", + "id": 7, + "offset": 148, + "flags": 262279, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1470576795 + }, + "m_BackColor": { + "type": "class Color", + "id": 8, + "offset": 152, + "flags": 262279, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1070928782 + }, + "m_ScrollBarColor": { + "type": "class Color", + "id": 9, + "offset": 156, + "flags": 262279, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1180747361 + }, + "m_ScrollTabColor": { + "type": "class Color", + "id": 10, + "offset": 160, + "flags": 262279, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1034892323 + }, + "m_nBorderSize": { + "type": "int", + "id": 11, + "offset": 164, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2016376897 + }, + "m_nScrollSize": { + "type": "int", + "id": 12, + "offset": 168, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 632681746 + }, + "m_sHoverSound": { + "type": "std::string", + "id": 13, + "offset": 176, + "flags": 131207, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2662773595 + }, + "m_sSelectSound": { + "type": "std::string", + "id": 14, + "offset": 208, + "flags": 131207, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2596786807 + } + } + }, + "1407154906": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1407154906, + "properties": { + "m_spawners": { + "type": "class SharedPointer", + "id": 0, + "offset": 144, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 3173126402 + } + } + }, + "554351844": { + "name": "class ItemFinderBehavior*", + "bases": [ + "ItemFinderBehaviorBase", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 554351844, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + } + } + }, + "993204893": { + "name": "class SortedCaughtFish", + "bases": [ + "PropertyClass" + ], + "hash": 993204893, + "properties": {} + }, + "1406835428": { + "name": "class SharedPointer", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1406835428, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_visualBlobs": { + "type": "std::string", + "id": 1, + "offset": 176, + "flags": 31, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 3602657281 + } + } + }, + "1839581949": { + "name": "class LinearSoundBehaviorTemplate*", + "bases": [ + "PositionalSoundBehaviorTemplate", + "SoundBehaviorTemplate", + "AreaBehaviorTemplate", + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 1839581949, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + }, + "m_radius": { + "type": "float", + "id": 1, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 989410271 + }, + "m_category": { + "type": "enum AudioCategory", + "id": 2, + "offset": 124, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2951251982, + "enum_options": { + "AudioCategory_Irrelevent": 0, + "AudioCategory_Accoustic": 1, + "AudioCategory_Noise": 2, + "AudioCategory_Music": 3, + "AudioCategory_MusicAtSFXVolume": 4, + "AudioCategory_Dialog": 5, + "AudioCategory_UI": 6, + "AudioCategory_NoiseAtMusicVolume": 7 + } + }, + "m_exclusive": { + "type": "bool", + "id": 3, + "offset": 128, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 824383403 + }, + "m_active": { + "type": "bool", + "id": 4, + "offset": 129, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 239335471 + }, + "m_enableReqs": { + "type": "class SharedPointer", + "id": 5, + "offset": 136, + "flags": 263, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3158020443 + }, + "m_trackFilenameList": { + "type": "std::string", + "id": 6, + "offset": 152, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2531081709 + }, + "m_playList": { + "type": "class PlayListEntry*", + "id": 7, + "offset": 176, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 3907873161 + }, + "m_priority": { + "type": "int", + "id": 8, + "offset": 208, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1235205852 + }, + "m_volume": { + "type": "float", + "id": 9, + "offset": 200, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1162855023 + }, + "m_loopCount": { + "type": "int", + "id": 10, + "offset": 204, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 865634717 + }, + "m_progression": { + "type": "enum PlayList::Progression", + "id": 11, + "offset": 220, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3279400238, + "enum_options": { + "Sequence": 0, + "Random": 1, + "SequenceOnceOnly": 2, + "RandomNoRepeat": 3 + } + }, + "m_progressMin": { + "type": "float", + "id": 12, + "offset": 212, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1497550192 + }, + "m_progressMax": { + "type": "float", + "id": 13, + "offset": 216, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1497549938 + }, + "m_audioFilterSet": { + "type": "unsigned int", + "id": 14, + "offset": 224, + "flags": 33554439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 831339825 + }, + "m_animationNameFilter": { + "type": "std::string", + "id": 15, + "offset": 232, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2292854242 + }, + "m_functionallabel": { + "type": "std::string", + "id": 16, + "offset": 264, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3589331278 + }, + "m_innerRadius": { + "type": "float", + "id": 17, + "offset": 296, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 686816091 + }, + "m_inverted": { + "type": "bool", + "id": 18, + "offset": 300, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1034821044 + }, + "m_fRangeScale": { + "type": "float", + "id": 19, + "offset": 304, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1749294034 + }, + "m_fAttenuationFactor": { + "type": "float", + "id": 20, + "offset": 308, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 273292776 + }, + "m_eAttenuationType": { + "type": "enum PositionInfoAttenuationType", + "id": 21, + "offset": 312, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2427193304, + "enum_options": { + "Standard": 0, + "Unit Range Power": 1 + } + }, + "m_vPositions": { + "type": "class Vector3D", + "id": 22, + "offset": 320, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 3599600160 + } + } + }, + "553972393": { + "name": "class DaysSinceItemPurchased*", + "bases": [ + "PropertyClass" + ], + "hash": 553972393, + "properties": { + "m_itemTemplateID": { + "type": "unsigned int", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2190120133 + }, + "m_daysSinceItemPurchased": { + "type": "int", + "id": 1, + "offset": 76, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 539199563 + } + } + }, + "1838995501": { + "name": "class WinAnimSizeTime", + "bases": [ + "WinAnimSize", + "WindowAnimation", + "PropertyClass" + ], + "hash": 1838995501, + "properties": { + "m_bUseDeepCopy": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 433380635 + }, + "m_size": { + "type": "class Size", + "id": 1, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 251247159 + }, + "m_fTimeTotal": { + "type": "float", + "id": 2, + "offset": 88, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 661225456 + }, + "m_fTimeRemaining": { + "type": "float", + "id": 3, + "offset": 92, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1591443014 + }, + "m_currentSize": { + "type": "class Vector3D", + "id": 4, + "offset": 96, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2914066496 + } + } + }, + "553931433": { + "name": "class DaysSinceItemPurchased", + "bases": [ + "PropertyClass" + ], + "hash": 553931433, + "properties": { + "m_itemTemplateID": { + "type": "unsigned int", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2190120133 + }, + "m_daysSinceItemPurchased": { + "type": "int", + "id": 1, + "offset": 76, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 539199563 + } + } + }, + "993248480": { + "name": "class PetSnackBehavior", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 993248480, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_snackBag": { + "type": "class ObjectBag", + "id": 1, + "offset": 112, + "flags": 27, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2027393587 + } + } + }, + "135649998": { + "name": "class EquipmentSetList", + "bases": [ + "PropertyClass" + ], + "hash": 135649998, + "properties": { + "m_equipmentSetList": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1788831224 + } + } + }, + "1407199496": { + "name": "class MadlibArgT,class std::allocator > >*", + "bases": [ + "MadlibArg", + "PropertyClass" + ], + "hash": 1407199496, + "properties": { + "m_madlibToken": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3058682373 + }, + "m_madlibArgument": { + "type": "std::string", + "id": 1, + "offset": 112, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2376191783 + } + } + }, + "135530999": { + "name": "class SharedPointer", + "bases": [ + "GameEffectInfo", + "PropertyClass" + ], + "hash": 135530999, + "properties": { + "m_effectName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2029161513 + }, + "m_minionType": { + "type": "enum MinionType", + "id": 1, + "offset": 104, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3186373083, + "enum_options": { + "MT_NONE": 0, + "MT_ACCOMPANY": 1, + "MT_MINION": 2, + "MT_MONSTER": 3 + } + }, + "m_summonedTemplateID": { + "type": "int", + "id": 2, + "offset": 108, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1109386027 + } + } + }, + "1839582141": { + "name": "class LinearSoundBehaviorTemplate", + "bases": [ + "PositionalSoundBehaviorTemplate", + "SoundBehaviorTemplate", + "AreaBehaviorTemplate", + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 1839582141, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + }, + "m_radius": { + "type": "float", + "id": 1, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 989410271 + }, + "m_category": { + "type": "enum AudioCategory", + "id": 2, + "offset": 124, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2951251982, + "enum_options": { + "AudioCategory_Irrelevent": 0, + "AudioCategory_Accoustic": 1, + "AudioCategory_Noise": 2, + "AudioCategory_Music": 3, + "AudioCategory_MusicAtSFXVolume": 4, + "AudioCategory_Dialog": 5, + "AudioCategory_UI": 6, + "AudioCategory_NoiseAtMusicVolume": 7 + } + }, + "m_exclusive": { + "type": "bool", + "id": 3, + "offset": 128, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 824383403 + }, + "m_active": { + "type": "bool", + "id": 4, + "offset": 129, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 239335471 + }, + "m_enableReqs": { + "type": "class SharedPointer", + "id": 5, + "offset": 136, + "flags": 263, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3158020443 + }, + "m_trackFilenameList": { + "type": "std::string", + "id": 6, + "offset": 152, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2531081709 + }, + "m_playList": { + "type": "class PlayListEntry*", + "id": 7, + "offset": 176, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 3907873161 + }, + "m_priority": { + "type": "int", + "id": 8, + "offset": 208, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1235205852 + }, + "m_volume": { + "type": "float", + "id": 9, + "offset": 200, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1162855023 + }, + "m_loopCount": { + "type": "int", + "id": 10, + "offset": 204, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 865634717 + }, + "m_progression": { + "type": "enum PlayList::Progression", + "id": 11, + "offset": 220, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3279400238, + "enum_options": { + "Sequence": 0, + "Random": 1, + "SequenceOnceOnly": 2, + "RandomNoRepeat": 3 + } + }, + "m_progressMin": { + "type": "float", + "id": 12, + "offset": 212, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1497550192 + }, + "m_progressMax": { + "type": "float", + "id": 13, + "offset": 216, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1497549938 + }, + "m_audioFilterSet": { + "type": "unsigned int", + "id": 14, + "offset": 224, + "flags": 33554439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 831339825 + }, + "m_animationNameFilter": { + "type": "std::string", + "id": 15, + "offset": 232, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2292854242 + }, + "m_functionallabel": { + "type": "std::string", + "id": 16, + "offset": 264, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3589331278 + }, + "m_innerRadius": { + "type": "float", + "id": 17, + "offset": 296, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 686816091 + }, + "m_inverted": { + "type": "bool", + "id": 18, + "offset": 300, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1034821044 + }, + "m_fRangeScale": { + "type": "float", + "id": 19, + "offset": 304, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1749294034 + }, + "m_fAttenuationFactor": { + "type": "float", + "id": 20, + "offset": 308, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 273292776 + }, + "m_eAttenuationType": { + "type": "enum PositionInfoAttenuationType", + "id": 21, + "offset": 312, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2427193304, + "enum_options": { + "Standard": 0, + "Unit Range Power": 1 + } + }, + "m_vPositions": { + "type": "class Vector3D", + "id": 22, + "offset": 320, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 3599600160 + } + } + }, + "553972876": { + "name": "class SharedPointer", + "bases": [ + "CantripsInvisibilityEffect", + "GameEffectBase", + "PropertyClass" + ], + "hash": 553972876, + "properties": { + "m_currentTickCount": { + "type": "double", + "id": 0, + "offset": 80, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2533274692 + }, + "m_effectNameID": { + "type": "unsigned int", + "id": 1, + "offset": 96, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1204067144 + }, + "m_bIsOnPet": { + "type": "bool", + "id": 2, + "offset": 73, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 522593303 + }, + "m_originatorID": { + "type": "gid", + "id": 3, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1131810019 + }, + "m_itemSlotID": { + "type": "unsigned int", + "id": 4, + "offset": 112, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1895747595 + }, + "m_internalID": { + "type": "int", + "id": 5, + "offset": 92, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1643137924 + }, + "m_endTime": { + "type": "unsigned int", + "id": 6, + "offset": 88, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 716479635 + } + } + }, + "995395519": { + "name": "enum MadlibIconUseCase", + "bases": [], + "hash": 995395519, + "properties": {} + }, + "994024280": { + "name": "class SharedPointer", + "bases": [ + "GraphicalSpell", + "Spell", + "PropertyClass" + ], + "hash": 994024280, + "properties": { + "m_templateID": { + "type": "unsigned int", + "id": 0, + "offset": 128, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1286746870 + }, + "m_enchantment": { + "type": "unsigned int", + "id": 1, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2217886818 + }, + "m_pipCost": { + "type": "class SharedPointer", + "id": 2, + "offset": 176, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3605704820 + }, + "m_regularAdjust": { + "type": "int", + "id": 3, + "offset": 192, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1420453335 + }, + "m_magicSchoolID": { + "type": "unsigned int", + "id": 4, + "offset": 136, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 893146499 + }, + "m_accuracy": { + "type": "unsigned char", + "id": 5, + "offset": 132, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2273914939 + }, + "m_treasureCard": { + "type": "bool", + "id": 6, + "offset": 197, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1764879128 + }, + "m_battleCard": { + "type": "bool", + "id": 7, + "offset": 198, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1332843753 + }, + "m_itemCard": { + "type": "bool", + "id": 8, + "offset": 199, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1683654300 + }, + "m_sideBoard": { + "type": "bool", + "id": 9, + "offset": 200, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1897838368 + }, + "m_spellID": { + "type": "unsigned int", + "id": 10, + "offset": 204, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1697483258 + }, + "m_leavesPlayWhenCastOverride": { + "type": "bool", + "id": 11, + "offset": 216, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 874407398 + }, + "m_cloaked": { + "type": "bool", + "id": 12, + "offset": 196, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 7349510 + }, + "m_enchantmentSpellIsItemCard": { + "type": "bool", + "id": 13, + "offset": 76, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 531590701 + }, + "m_premutationSpellID": { + "type": "unsigned int", + "id": 14, + "offset": 112, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1530256370 + }, + "m_enchantedThisCombat": { + "type": "bool", + "id": 15, + "offset": 77, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1895738923 + }, + "m_paramOverrides": { + "type": "class SharedPointer", + "id": 16, + "offset": 224, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2061635599 + }, + "m_subEffectMeta": { + "type": "class SharedPointer", + "id": 17, + "offset": 240, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1944101106 + }, + "m_delayEnchantment": { + "type": "bool", + "id": 18, + "offset": 257, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 191336919 + }, + "m_PvE": { + "type": "bool", + "id": 19, + "offset": 264, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 269492350 + }, + "m_delayEnchantmentOrder": { + "type": "enum SpellEffect::kDelayOrder", + "id": 20, + "offset": 72, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2526055263, + "enum_options": { + "SpellEffect::kAnyOrder": 0, + "SpellEffect::kFirst": 1, + "SpellEffect::kSecond": 2 + } + }, + "m_roundAddedTC": { + "type": "int", + "id": 21, + "offset": 260, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 112365451 + }, + "m_secondarySchoolID": { + "type": "unsigned int", + "id": 22, + "offset": 304, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2081206026 + }, + "m_fusionState": { + "type": "enum Spell::FusionState", + "id": 23, + "offset": 308, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 835324539, + "enum_options": { + "FS_Invalid": 0, + "FS_Partial": 1, + "FS_Valid": 2 + } + } + } + }, + "1408081391": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1408081391, + "properties": { + "m_baseHitpoints": { + "type": "int", + "id": 0, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 596105911 + }, + "m_baseMana": { + "type": "int", + "id": 1, + "offset": 84, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1475495442 + }, + "m_baseGoldPouch": { + "type": "int", + "id": 2, + "offset": 88, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 848889754 + }, + "m_baseEventCurrency1Pouch": { + "type": "int", + "id": 3, + "offset": 92, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1227701106 + }, + "m_baseEventCurrency2Pouch": { + "type": "int", + "id": 4, + "offset": 96, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1266836499 + }, + "m_basePvPCurrencyPouch": { + "type": "int", + "id": 5, + "offset": 100, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 250034965 + }, + "m_basePvPTourneyCurrencyPouch": { + "type": "int", + "id": 6, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2005272907 + }, + "m_energyMax": { + "type": "int", + "id": 7, + "offset": 108, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 493080970 + }, + "m_currentHitpoints": { + "type": "int", + "id": 8, + "offset": 112, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1533788735 + }, + "m_currentGold": { + "type": "int", + "id": 9, + "offset": 116, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1255819683 + }, + "m_currentEventCurrency1": { + "type": "int", + "id": 10, + "offset": 120, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1718583419 + }, + "m_currentEventCurrency2": { + "type": "int", + "id": 11, + "offset": 124, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1718583420 + }, + "m_currentPvPCurrency": { + "type": "int", + "id": 12, + "offset": 128, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 958495550 + }, + "m_currentPvPTourneyCurrency": { + "type": "int", + "id": 13, + "offset": 132, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 398198452 + }, + "m_currentMana": { + "type": "int", + "id": 14, + "offset": 136, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1256020122 + }, + "m_currentArenaPoints": { + "type": "int", + "id": 15, + "offset": 140, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1119642753 + }, + "m_spellChargeBase": { + "type": "int", + "id": 16, + "offset": 144, + "flags": 31, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 712023615 + }, + "m_potionMax": { + "type": "float", + "id": 17, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2123676470 + }, + "m_potionCharge": { + "type": "float", + "id": 18, + "offset": 172, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1104179290 + }, + "m_pArenaLadder": { + "type": "class SharedPointer", + "id": 19, + "offset": 176, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2717766581 + }, + "m_pDerbyLadder": { + "type": "class SharedPointer", + "id": 20, + "offset": 192, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2352744804 + }, + "m_bracketLader": { + "type": "class SharedPointer", + "id": 21, + "offset": 208, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2562001526 + }, + "m_bonusHitpoints": { + "type": "int", + "id": 22, + "offset": 224, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 103057475 + }, + "m_bonusMana": { + "type": "int", + "id": 23, + "offset": 228, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1757236254 + }, + "m_bonusEnergy": { + "type": "int", + "id": 24, + "offset": 244, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1975625099 + }, + "m_criticalHitPercentAll": { + "type": "float", + "id": 25, + "offset": 248, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2085066513 + }, + "m_blockPercentAll": { + "type": "float", + "id": 26, + "offset": 252, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1203386380 + }, + "m_criticalHitRatingAll": { + "type": "float", + "id": 27, + "offset": 256, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 923968773 + }, + "m_blockRatingAll": { + "type": "float", + "id": 28, + "offset": 260, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1743229600 + }, + "m_referenceLevel": { + "type": "int", + "id": 29, + "offset": 324, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1436595649 + }, + "m_highestCharacterLevelOnAccount": { + "type": "int", + "id": 30, + "offset": 336, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1662017333 + }, + "m_petActChance": { + "type": "int", + "id": 31, + "offset": 344, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 237418461 + }, + "m_dmgBonusPercent": { + "type": "float", + "id": 32, + "offset": 352, + "flags": 31, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 194501159 + }, + "m_dmgBonusFlat": { + "type": "float", + "id": 33, + "offset": 376, + "flags": 31, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1837769725 + }, + "m_accBonusPercent": { + "type": "float", + "id": 34, + "offset": 400, + "flags": 31, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 331557526 + }, + "m_apBonusPercent": { + "type": "float", + "id": 35, + "offset": 424, + "flags": 31, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1228557984 + }, + "m_dmgReducePercent": { + "type": "float", + "id": 36, + "offset": 448, + "flags": 31, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1426050712 + }, + "m_dmgReduceFlat": { + "type": "float", + "id": 37, + "offset": 472, + "flags": 31, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1218184718 + }, + "m_accReducePercent": { + "type": "float", + "id": 38, + "offset": 496, + "flags": 31, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1653943527 + }, + "m_healBonusPercent": { + "type": "float", + "id": 39, + "offset": 520, + "flags": 31, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 562313577 + }, + "m_healIncBonusPercent": { + "type": "float", + "id": 40, + "offset": 544, + "flags": 31, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2182535587 + }, + "m_spellChargeBonus": { + "type": "int", + "id": 41, + "offset": 592, + "flags": 31, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2019610507 + }, + "m_dmgBonusPercentAll": { + "type": "float", + "id": 42, + "offset": 712, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2076945760 + }, + "m_dmgBonusFlatAll": { + "type": "float", + "id": 43, + "offset": 716, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 419082102 + }, + "m_accBonusPercentAll": { + "type": "float", + "id": 44, + "offset": 720, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1144118127 + }, + "m_apBonusPercentAll": { + "type": "float", + "id": 45, + "offset": 724, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 772537145 + }, + "m_dmgReducePercentAll": { + "type": "float", + "id": 46, + "offset": 728, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 635246641 + }, + "m_dmgReduceFlatAll": { + "type": "float", + "id": 47, + "offset": 732, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1650631655 + }, + "m_accReducePercentAll": { + "type": "float", + "id": 48, + "offset": 736, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2064189472 + }, + "m_healBonusPercentAll": { + "type": "float", + "id": 49, + "offset": 740, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 242474338 + }, + "m_healIncBonusPercentAll": { + "type": "float", + "id": 50, + "offset": 744, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1436699484 + }, + "m_spellChargeBonusAll": { + "type": "int", + "id": 51, + "offset": 752, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1354189604 + }, + "m_powerPipBase": { + "type": "float", + "id": 52, + "offset": 756, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 345261352 + }, + "m_powerPipBonusPercentAll": { + "type": "float", + "id": 53, + "offset": 792, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1850107326 + }, + "m_xpPercentIncrease": { + "type": "float", + "id": 54, + "offset": 800, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1051081338 + }, + "m_criticalHitPercentBySchool": { + "type": "float", + "id": 55, + "offset": 616, + "flags": 31, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1022327067 + }, + "m_blockPercentBySchool": { + "type": "float", + "id": 56, + "offset": 640, + "flags": 31, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2189750006 + }, + "m_criticalHitRatingBySchool": { + "type": "float", + "id": 57, + "offset": 664, + "flags": 31, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2060803983 + }, + "m_blockRatingBySchool": { + "type": "float", + "id": 58, + "offset": 688, + "flags": 31, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 274073098 + }, + "m_balanceMastery": { + "type": "int", + "id": 59, + "offset": 832, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 149062181 + }, + "m_deathMastery": { + "type": "int", + "id": 60, + "offset": 836, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1421218661 + }, + "m_fireMastery": { + "type": "int", + "id": 61, + "offset": 840, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1431794949 + }, + "m_iceMastery": { + "type": "int", + "id": 62, + "offset": 844, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 704864240 + }, + "m_lifeMastery": { + "type": "int", + "id": 63, + "offset": 848, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2142136447 + }, + "m_mythMastery": { + "type": "int", + "id": 64, + "offset": 852, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1766317185 + }, + "m_stormMastery": { + "type": "int", + "id": 65, + "offset": 856, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1883988244 + }, + "m_maximumNumberOfIslands": { + "type": "int", + "id": 66, + "offset": 860, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 412109412 + }, + "m_gardeningLevel": { + "type": "unsigned char", + "id": 67, + "offset": 864, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2456231799 + }, + "m_gardeningXP": { + "type": "int", + "id": 68, + "offset": 868, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 590238801 + }, + "m_invisibleToFriends": { + "type": "bool", + "id": 69, + "offset": 872, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 416456454 + }, + "m_showItemLock": { + "type": "bool", + "id": 70, + "offset": 873, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3575244 + }, + "m_questFinderEnabled": { + "type": "bool", + "id": 71, + "offset": 874, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 125544072 + }, + "m_buddyListLimit": { + "type": "int", + "id": 72, + "offset": 876, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1103577965 + }, + "m_dontAllowFriendFinderCodes": { + "type": "bool", + "id": 73, + "offset": 884, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1360721765 + }, + "m_stunResistancePercent": { + "type": "float", + "id": 74, + "offset": 880, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1868382627 + }, + "m_shadowMagicUnlocked": { + "type": "bool", + "id": 75, + "offset": 892, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1642162767 + }, + "m_shadowPipMax": { + "type": "int", + "id": 76, + "offset": 888, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1774396431 + }, + "m_fishingLevel": { + "type": "unsigned char", + "id": 77, + "offset": 893, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 682785040 + }, + "m_fishingXP": { + "type": "int", + "id": 78, + "offset": 896, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 319909002 + }, + "m_fishingLuckBonusPercent": { + "type": "float", + "id": 79, + "offset": 568, + "flags": 31, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1363349254 + }, + "m_fishingLuckBonusPercentAll": { + "type": "float", + "id": 80, + "offset": 748, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2190780895 + }, + "m_subscriberBenefitFlags": { + "type": "unsigned int", + "id": 81, + "offset": 900, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1587324747 + }, + "m_elixirBenefitFlags": { + "type": "unsigned int", + "id": 82, + "offset": 904, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2320773252 + }, + "m_shadowPipBonusPercent": { + "type": "float", + "id": 83, + "offset": 796, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1426533310 + }, + "m_wispBonusPercent": { + "type": "float", + "id": 84, + "offset": 824, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1304386546 + }, + "m_pipConversionRatingAll": { + "type": "float", + "id": 85, + "offset": 288, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 198602948 + }, + "m_pipConversionRatingPerSchool": { + "type": "float", + "id": 86, + "offset": 264, + "flags": 31, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 930350362 + }, + "m_pipConversionPercentAll": { + "type": "float", + "id": 87, + "offset": 320, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1770314416 + }, + "m_pipConversionPercentPerSchool": { + "type": "float", + "id": 88, + "offset": 296, + "flags": 31, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 960311302 + }, + "m_monsterMagicLevel": { + "type": "unsigned char", + "id": 89, + "offset": 908, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 729572689 + }, + "m_monsterMagicXP": { + "type": "int", + "id": 90, + "offset": 912, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 770955371 + }, + "m_playerChatChannelIsPublic": { + "type": "bool", + "id": 91, + "offset": 916, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 50035796 + }, + "m_extraInventorySpace": { + "type": "int", + "id": 92, + "offset": 920, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1757105784 + }, + "m_rememberLastRealm": { + "type": "bool", + "id": 93, + "offset": 924, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 746394247 + }, + "m_newSpellbookLayoutWarning": { + "type": "bool", + "id": 94, + "offset": 925, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1509105148 + }, + "m_pipConversionBaseAllSchools": { + "type": "int", + "id": 95, + "offset": 760, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 307930968 + }, + "m_pipConversionBasePerSchool": { + "type": "int", + "id": 96, + "offset": 768, + "flags": 31, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1322493139 + }, + "m_purchasedCustomEmotes1": { + "type": "unsigned int", + "id": 97, + "offset": 928, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2104336133 + }, + "m_purchasedCustomTeleportEffects1": { + "type": "unsigned int", + "id": 98, + "offset": 932, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 603893351 + }, + "m_equippedTeleportEffect": { + "type": "unsigned int", + "id": 99, + "offset": 936, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 918478182 + }, + "m_highestWorld1ID": { + "type": "unsigned int", + "id": 100, + "offset": 956, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2049405919 + }, + "m_highestWorld2ID": { + "type": "unsigned int", + "id": 101, + "offset": 960, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2049407008 + }, + "m_activeClassProjectsList": { + "type": "unsigned int", + "id": 102, + "offset": 968, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1952826405 + }, + "m_disabledItemSlotIDs": { + "type": "unsigned int", + "id": 103, + "offset": 984, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1477574262 + }, + "m_adventurePowerCooldownTime": { + "type": "unsigned int", + "id": 104, + "offset": 1000, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1774753180 + }, + "m_purchasedCustomEmotes2": { + "type": "unsigned int", + "id": 105, + "offset": 940, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2104336134 + }, + "m_purchasedCustomTeleportEffects2": { + "type": "unsigned int", + "id": 106, + "offset": 944, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 603893352 + }, + "m_purchasedCustomEmotes3": { + "type": "unsigned int", + "id": 107, + "offset": 948, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2104336135 + }, + "m_purchasedCustomTeleportEffects3": { + "type": "unsigned int", + "id": 108, + "offset": 952, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 603893353 + }, + "m_shadowPipRating": { + "type": "float", + "id": 109, + "offset": 1004, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 507126123 + }, + "m_bonusShadowPipRating": { + "type": "float", + "id": 110, + "offset": 1008, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 578452466 + }, + "m_shadowPipRateAccumulated": { + "type": "float", + "id": 111, + "offset": 1012, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 922051738 + }, + "m_shadowPipRateThreshold": { + "type": "float", + "id": 112, + "offset": 1016, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1215959391 + }, + "m_shadowPipRatePercentage": { + "type": "int", + "id": 113, + "offset": 1020, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2119696723 + }, + "m_friendlyPlayer": { + "type": "bool", + "id": 114, + "offset": 1024, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 990699901 + }, + "m_emojiSkinTone": { + "type": "int", + "id": 115, + "offset": 1028, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1291044345 + }, + "m_showPVPOption": { + "type": "unsigned int", + "id": 116, + "offset": 1032, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2052204093 + }, + "m_favoriteSlot": { + "type": "int", + "id": 117, + "offset": 1036, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 13456252 + }, + "m_cantripLevel": { + "type": "unsigned char", + "id": 118, + "offset": 1040, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 788457241 + }, + "m_cantripXP": { + "type": "int", + "id": 119, + "offset": 1044, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1867018035 + }, + "m_archmasteryBase": { + "type": "float", + "id": 120, + "offset": 1048, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2213748661 + }, + "m_archmasteryBonusFlat": { + "type": "float", + "id": 121, + "offset": 1052, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2047862920 + }, + "m_archmasteryBonusPercentage": { + "type": "float", + "id": 122, + "offset": 1056, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2054419871 + }, + "m_highestCharacterWorldOnAccount": { + "type": "int", + "id": 123, + "offset": 340, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1240477285 + }, + "m_schoolID": { + "type": "unsigned int", + "id": 124, + "offset": 328, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 369010242 + }, + "m_levelScaled": { + "type": "int", + "id": 125, + "offset": 332, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1740930910 + }, + "m_currentZoneName": { + "type": "std::string", + "id": 126, + "offset": 1064, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3602481883 + }, + "m_mailSentToday": { + "type": "unsigned char", + "id": 127, + "offset": 1096, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2737597102 + }, + "m_secondarySchool": { + "type": "unsigned int", + "id": 128, + "offset": 1100, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 479424797 + } + } + }, + "554196070": { + "name": "class TransformationEffectInfo*", + "bases": [ + "GameEffectInfo", + "PropertyClass" + ], + "hash": 554196070, + "properties": { + "m_effectName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2029161513 + }, + "m_sRace": { + "type": "std::string", + "id": 1, + "offset": 104, + "flags": 268435463, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306580681, + "enum_options": { + "__BASECLASS": "CharacterRaceTable" + } + }, + "m_eGender": { + "type": "enum eGender", + "id": 2, + "offset": 136, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2776344943, + "enum_options": { + "Male": 1, + "Female": 0, + "Neutral": 2 + } + }, + "m_fScale": { + "type": "float", + "id": 3, + "offset": 140, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 503137701 + }, + "m_nPrimaryColor": { + "type": "int", + "id": 4, + "offset": 144, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 310334923 + }, + "m_nSecondaryColor": { + "type": "int", + "id": 5, + "offset": 148, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 516938671 + }, + "m_nPatternOption": { + "type": "int", + "id": 6, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 413195679 + }, + "m_nGeometryOption": { + "type": "int", + "id": 7, + "offset": 156, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 676541869 + }, + "m_sNaturalAttack": { + "type": "std::string", + "id": 8, + "offset": 160, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2131867453 + } + } + }, + "993546017": { + "name": "class ReqBaseHasMagicSchool*", + "bases": [ + "Requirement", + "PropertyClass" + ], + "hash": 993546017, + "properties": { + "m_applyNOT": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1746328074, + "enum_options": { + "__DEFAULT": 0 + } + }, + "m_operator": { + "type": "enum Requirement::Operator", + "id": 1, + "offset": 76, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2672792317, + "enum_options": { + "ROP_AND": 0, + "ROP_OR": 1, + "__DEFAULT": "ROP_AND" + } + }, + "m_magicSchool": { + "type": "std::string", + "id": 2, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1597012900 + } + } + }, + "1407820961": { + "name": "class SharedPointer", + "bases": [ + "ZoneTokenBase", + "PropertyClass" + ], + "hash": 1407820961, + "properties": { + "m_debugName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3553984419 + }, + "m_adjectiveList": { + "type": "std::string", + "id": 1, + "offset": 104, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 3195213318 + }, + "m_icon": { + "type": "std::string", + "id": 2, + "offset": 120, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1717182340 + }, + "m_iconBW": { + "type": "std::string", + "id": 3, + "offset": 152, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2047461085 + }, + "m_description": { + "type": "std::string", + "id": 4, + "offset": 184, + "flags": 8388639, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1649374815 + }, + "m_displayMode": { + "type": "enum ZTDisplayMode", + "id": 5, + "offset": 216, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2216526410, + "enum_options": { + "ZTDM_Shown": 0, + "ZTDM_Discoverable": 1, + "ZTDM_Hidden": 2 + } + }, + "m_storage": { + "type": "enum ZTStorage", + "id": 6, + "offset": 220, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2290454852, + "enum_options": { + "ZTS_Player": 0, + "ZTS_Zone": 1 + } + }, + "m_onEnable": { + "type": "class SharedPointer", + "id": 7, + "offset": 224, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2591736864 + }, + "m_onDiscover": { + "type": "class SharedPointer", + "id": 8, + "offset": 240, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2826026872 + }, + "m_onDisable": { + "type": "class SharedPointer", + "id": 9, + "offset": 256, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1860656717 + }, + "m_sourceID": { + "type": "gid", + "id": 10, + "offset": 272, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1134700470 + }, + "m_inZone": { + "type": "bool", + "id": 11, + "offset": 280, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 564535654 + }, + "m_enabled": { + "type": "bool", + "id": 12, + "offset": 281, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 504506718 + }, + "m_discovered": { + "type": "bool", + "id": 13, + "offset": 282, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2060478331 + }, + "m_minValue": { + "type": "int", + "id": 14, + "offset": 288, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1508523611 + }, + "m_startValue": { + "type": "int", + "id": 15, + "offset": 292, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 672067813 + }, + "m_maxValue": { + "type": "int", + "id": 16, + "offset": 296, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 158068381 + }, + "m_curValue": { + "type": "int", + "id": 17, + "offset": 300, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1147627809 + }, + "m_counterType": { + "type": "enum ZTCounterType", + "id": 18, + "offset": 304, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1417526179, + "enum_options": { + "ZTCT_Full": 0, + "ZTCT_Count": 1, + "ZTCT_Meter": 2, + "ZTCT_Hidden": 3 + } + }, + "m_onIncrease": { + "type": "class SharedPointer", + "id": 19, + "offset": 312, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2723490243 + }, + "m_onDecrease": { + "type": "class SharedPointer", + "id": 20, + "offset": 328, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1346363029 + }, + "m_onEmpty": { + "type": "class SharedPointer", + "id": 21, + "offset": 344, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1658398600 + }, + "m_onFull": { + "type": "class SharedPointer", + "id": 22, + "offset": 360, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1955555436 + } + } + }, + "136475272": { + "name": "class SharedPointer", + "bases": [ + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 136475272, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + }, + "m_stringTableEntry": { + "type": "std::string", + "id": 2, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2181170604 + } + } + }, + "1839806362": { + "name": "class ClientStopHangingRotationCinematicAction", + "bases": [ + "StopHangingRotationCinematicAction", + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 1839806362, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + }, + "m_cloaked": { + "type": "bool", + "id": 2, + "offset": 124, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 7349510 + }, + "m_type": { + "type": "enum StopHangingRotationCinematicAction::kStopHangingTypes", + "id": 3, + "offset": 120, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2339468071, + "enum_options": { + "kStopHanging_Burn": 0, + "kStopHanging_Add": 1 + } + } + } + }, + "993544737": { + "name": "class ReqBaseHasMagicSchool", + "bases": [ + "Requirement", + "PropertyClass" + ], + "hash": 993544737, + "properties": { + "m_applyNOT": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1746328074, + "enum_options": { + "__DEFAULT": 0 + } + }, + "m_operator": { + "type": "enum Requirement::Operator", + "id": 1, + "offset": 76, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2672792317, + "enum_options": { + "ROP_AND": 0, + "ROP_OR": 1, + "__DEFAULT": "ROP_AND" + } + }, + "m_magicSchool": { + "type": "std::string", + "id": 2, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1597012900 + } + } + }, + "135748302": { + "name": "class EquipmentSetList*", + "bases": [ + "PropertyClass" + ], + "hash": 135748302, + "properties": { + "m_equipmentSetList": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1788831224 + } + } + }, + "1840116682": { + "name": "class SharedPointer", + "bases": [ + "WinAnimConcurrent", + "WinAnimContainer", + "WindowAnimation", + "PropertyClass" + ], + "hash": 1840116682, + "properties": { + "m_bUseDeepCopy": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 433380635 + }, + "m_winAnimList": { + "type": "class SharedPointer", + "id": 1, + "offset": 80, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1941062728 + }, + "m_bLooping": { + "type": "bool", + "id": 2, + "offset": 104, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2131020845 + }, + "m_finishedAnimList": { + "type": "class SharedPointer", + "id": 3, + "offset": 112, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 3066650884 + } + } + }, + "558042069": { + "name": "class WizQuestData", + "bases": [ + "PropertyClass" + ], + "hash": 558042069, + "properties": { + "m_name": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1717359772 + }, + "m_questNameID": { + "type": "unsigned int", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1530354349 + }, + "m_title": { + "type": "std::string", + "id": 2, + "offset": 112, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2308614141 + }, + "m_id": { + "type": "gid", + "id": 3, + "offset": 232, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2090569797 + }, + "m_type": { + "type": "int", + "id": 4, + "offset": 224, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 219902012 + }, + "m_level": { + "type": "int", + "id": 5, + "offset": 228, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 801285362 + }, + "m_mainline": { + "type": "bool", + "id": 6, + "offset": 241, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1749856224 + }, + "m_readyToTurnIn": { + "type": "bool", + "id": 7, + "offset": 242, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 562395883 + }, + "m_activityType": { + "type": "enum QuestTemplate::ActivityType", + "id": 8, + "offset": 244, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 231656390, + "enum_options": { + "QuestTemplate::ACTIVITY_NotActivity": 0, + "QuestTemplate::ACTIVITY_Spell": 1, + "QuestTemplate::ACTIVITY_Crafting": 2, + "QuestTemplate::ACTIVITY_Fishing": 3, + "QuestTemplate::ACTIVITY_Gardening": 4, + "QuestTemplate::ACTIVITY_Pet": 5 + } + }, + "m_skipQHAutoSelect": { + "type": "bool", + "id": 9, + "offset": 248, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2024815836 + }, + "m_goalList": { + "type": "class SharedPointer", + "id": 10, + "offset": 256, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 748820753 + } + } + }, + "1408207052": { + "name": "class SummonMinionEffect", + "bases": [ + "GameEffectBase", + "PropertyClass" + ], + "hash": 1408207052, + "properties": { + "m_currentTickCount": { + "type": "double", + "id": 0, + "offset": 80, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2533274692 + }, + "m_effectNameID": { + "type": "unsigned int", + "id": 1, + "offset": 96, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1204067144 + }, + "m_bIsOnPet": { + "type": "bool", + "id": 2, + "offset": 73, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 522593303 + }, + "m_originatorID": { + "type": "gid", + "id": 3, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1131810019 + }, + "m_itemSlotID": { + "type": "unsigned int", + "id": 4, + "offset": 112, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1895747595 + }, + "m_internalID": { + "type": "int", + "id": 5, + "offset": 92, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1643137924 + }, + "m_endTime": { + "type": "unsigned int", + "id": 6, + "offset": 88, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 716479635 + }, + "m_minionType": { + "type": "enum MinionType", + "id": 7, + "offset": 128, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3186373083, + "enum_options": { + "MT_NONE": 0, + "MT_ACCOMPANY": 1, + "MT_MINION": 2, + "MT_MONSTER": 3 + } + }, + "m_summonedTemplateID": { + "type": "int", + "id": 8, + "offset": 132, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1109386027 + } + } + }, + "555873041": { + "name": "class std::list >", + "bases": [], + "hash": 555873041, + "properties": {} + }, + "993596468": { + "name": "union gid", + "bases": [], + "hash": 993596468, + "properties": {} + }, + "137272553": { + "name": "class SharedPointer", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 137272553, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_lotInstanceGID": { + "type": "gid", + "id": 1, + "offset": 120, + "flags": 33554495, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2010711536 + }, + "m_streetAddress": { + "type": "int", + "id": 2, + "offset": 112, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1809670519 + }, + "m_transferCoolDownTime": { + "type": "unsigned int", + "id": 3, + "offset": 128, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1616830022 + } + } + }, + "1842139670": { + "name": "class JewelSocketBehaviorBase*", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1842139670, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + } + } + }, + "556511214": { + "name": "class SharedPointer", + "bases": [ + "Requirement", + "PropertyClass" + ], + "hash": 556511214, + "properties": { + "m_applyNOT": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1746328074, + "enum_options": { + "__DEFAULT": 0 + } + }, + "m_operator": { + "type": "enum Requirement::Operator", + "id": 1, + "offset": 76, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2672792317, + "enum_options": { + "ROP_AND": 0, + "ROP_OR": 1, + "__DEFAULT": "ROP_AND" + } + }, + "m_title": { + "type": "std::string", + "id": 2, + "offset": 112, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2308614141 + }, + "m_tournament": { + "type": "std::string", + "id": 3, + "offset": 80, + "flags": 268435487, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2799932264, + "enum_options": { + "__BASECLASS": "TournamentTemplate" + } + } + } + }, + "1418217115": { + "name": "class SharedPointer", + "bases": [ + "TournamentUpdate", + "PropertyClass" + ], + "hash": 1418217115, + "properties": { + "m_actor": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1120253775 + } + } + }, + "137692482": { + "name": "enum Duel::SigilInitiativeSwitchMode", + "bases": [], + "hash": 137692482, + "properties": {} + }, + "1840804192": { + "name": "class PermanentShopWindowPassThru*", + "bases": [ + "Window", + "PropertyClass" + ], + "hash": 1840804192, + "properties": { + "m_sName": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306437263 + }, + "m_Children": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621225959 + }, + "m_Style": { + "type": "unsigned int", + "id": 2, + "offset": 152, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "SCALE_CHILDREN": 2, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "FOCUS_LOCKED": 64, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152 + } + }, + "m_Flags": { + "type": "unsigned int", + "id": 3, + "offset": 156, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } + }, + "m_Window": { + "type": "class Rect", + "id": 4, + "offset": 160, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3105139380 + }, + "m_fTargetAlpha": { + "type": "float", + "id": 5, + "offset": 212, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1809129834 + }, + "m_fDisabledAlpha": { + "type": "float", + "id": 6, + "offset": 216, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1389987675 + }, + "m_fAlpha": { + "type": "float", + "id": 7, + "offset": 208, + "flags": 65671, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 482130755 + }, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3623628394 + }, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2102211316 + }, + "m_sScript": { + "type": "std::string", + "id": 10, + "offset": 352, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1846695875 + }, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3389835433 + }, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547159940 + }, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513510520 + }, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3091503757 + } + } + }, + "994988126": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 994988126, + "properties": {} + }, + "1415260764": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1415260764, + "properties": { + "m_tagName": { + "type": "unsigned int", + "id": 0, + "offset": 72, + "flags": 27, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 255719658 + }, + "m_textureFilename": { + "type": "unsigned int", + "id": 1, + "offset": 76, + "flags": 27, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 922351199 + } + } + }, + "1840660506": { + "name": "class TeleportTransitionTemplate*", + "bases": [ + "PropertyClass" + ], + "hash": 1840660506, + "properties": { + "m_name": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1717359772 + }, + "m_loadScreenOverride": { + "type": "std::string", + "id": 1, + "offset": 104, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1633906299 + }, + "m_transInSoundOverride": { + "type": "std::string", + "id": 2, + "offset": 120, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2697765027 + }, + "m_transOutSoundOverride": { + "type": "std::string", + "id": 3, + "offset": 152, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2103733028 + }, + "m_id": { + "type": "unsigned int", + "id": 4, + "offset": 184, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2301988666 + } + } + }, + "994494061": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 994494061, + "properties": { + "m_housingLayoutObjectList": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2580715899 + } + } + }, + "1409602905": { + "name": "class SharedPointer", + "bases": [ + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 1409602905, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + }, + "m_effect": { + "type": "std::string", + "id": 2, + "offset": 120, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1894145160 + }, + "m_revealsCloaked": { + "type": "bool", + "id": 3, + "offset": 156, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1618772408 + } + } + }, + "1840660496": { + "name": "class TeleportTransitionTemplate", + "bases": [ + "PropertyClass" + ], + "hash": 1840660496, + "properties": { + "m_name": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1717359772 + }, + "m_loadScreenOverride": { + "type": "std::string", + "id": 1, + "offset": 104, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1633906299 + }, + "m_transInSoundOverride": { + "type": "std::string", + "id": 2, + "offset": 120, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2697765027 + }, + "m_transOutSoundOverride": { + "type": "std::string", + "id": 3, + "offset": 152, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2103733028 + }, + "m_id": { + "type": "unsigned int", + "id": 4, + "offset": 184, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2301988666 + } + } + }, + "558570914": { + "name": "class SharedPointer", + "bases": [ + "ControlList::ListItemState", + "PropertyClass" + ], + "hash": 558570914, + "properties": { + "m_pMaterial": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3479277078 + }, + "m_nMaterialFrame": { + "type": "int", + "id": 1, + "offset": 88, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1641923970 + }, + "m_nAnimBeginFrame": { + "type": "int", + "id": 2, + "offset": 96, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1469531165 + }, + "m_nAnimEndFrame": { + "type": "int", + "id": 3, + "offset": 100, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1659451087 + }, + "m_fAnimRate": { + "type": "float", + "id": 4, + "offset": 104, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 802385934 + }, + "m_bAnimLoop": { + "type": "bool", + "id": 5, + "offset": 108, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1487150228 + } + } + }, + "1408632626": { + "name": "class ClientStartBacklashRotationEffectCinematicAction", + "bases": [ + "StartBacklashRotationEffectCinematicAction", + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 1408632626, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + } + } + }, + "139831373": { + "name": "class RecreateNPCActorCinematicAction*", + "bases": [ + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 139831373, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + } + } + }, + "1408534322": { + "name": "class ClientStartBacklashRotationEffectCinematicAction*", + "bases": [ + "StartBacklashRotationEffectCinematicAction", + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 1408534322, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + } + } + }, + "138565252": { + "name": "class CameraCutCinematicAction*", + "bases": [ + "CinematicAction", + "PropertyClass" + ], + "hash": 138565252, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_cameras": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 131079, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 3217341687 + }, + "m_altcameras": { + "type": "std::string", + "id": 2, + "offset": 104, + "flags": 131079, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1882980152 + }, + "m_initialCameraName": { + "type": "std::string", + "id": 3, + "offset": 128, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2526319343 + }, + "m_camRel": { + "type": "enum CameraCutCinematicAction::kCameraRelative", + "id": 4, + "offset": 168, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 919962138, + "enum_options": { + "kNone": 0, + "kSigil": 1, + "kTarget": 2, + "kSource": 3, + "kActor": 4 + } + }, + "m_interpolationDuration": { + "type": "float", + "id": 5, + "offset": 160, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1458058437 + }, + "m_releaseInterpolationDuration": { + "type": "float", + "id": 6, + "offset": 164, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1807754278, + "enum_options": { + "__DEFAULT": "1.0" + } + }, + "m_bUseOrientationOverride": { + "type": "bool", + "id": 7, + "offset": 188, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1088002894 + }, + "m_overrideOrientation": { + "type": "class Vector3D", + "id": 8, + "offset": 192, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3267199758 + }, + "m_bUseLocationOverride": { + "type": "bool", + "id": 9, + "offset": 172, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1767170875 + }, + "m_overrideLocation": { + "type": "class Vector3D", + "id": 10, + "offset": 176, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3776417691 + }, + "m_namedActor": { + "type": "std::string", + "id": 11, + "offset": 208, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3413532537 + }, + "m_camScale": { + "type": "float", + "id": 12, + "offset": 240, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 979098224 + } + } + }, + "138415600": { + "name": "class SharedPointer", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 138415600, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_spellList": { + "type": "class SharedPointer", + "id": 1, + "offset": 120, + "flags": 27, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2181913740 + }, + "m_serializedExclusionList": { + "type": "std::string", + "id": 2, + "offset": 152, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1502583517 + }, + "m_archmasterySchool": { + "type": "unsigned int", + "id": 3, + "offset": 184, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 485805784 + } + } + }, + "1840803872": { + "name": "class PermanentShopWindowPassThru", + "bases": [ + "Window", + "PropertyClass" + ], + "hash": 1840803872, + "properties": { + "m_sName": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306437263 + }, + "m_Children": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621225959 + }, + "m_Style": { + "type": "unsigned int", + "id": 2, + "offset": 152, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "SCALE_CHILDREN": 2, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "FOCUS_LOCKED": 64, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152 + } + }, + "m_Flags": { + "type": "unsigned int", + "id": 3, + "offset": 156, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } + }, + "m_Window": { + "type": "class Rect", + "id": 4, + "offset": 160, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3105139380 + }, + "m_fTargetAlpha": { + "type": "float", + "id": 5, + "offset": 212, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1809129834 + }, + "m_fDisabledAlpha": { + "type": "float", + "id": 6, + "offset": 216, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1389987675 + }, + "m_fAlpha": { + "type": "float", + "id": 7, + "offset": 208, + "flags": 65671, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 482130755 + }, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3623628394 + }, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2102211316 + }, + "m_sScript": { + "type": "std::string", + "id": 10, + "offset": 352, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1846695875 + }, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3389835433 + }, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547159940 + }, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513510520 + }, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3091503757 + } + } + }, + "563501522": { + "name": "class NaturalActCinematicStageTemplate*", + "bases": [ + "CinematicStageTemplate", + "PropertyClass" + ], + "hash": 563501522, + "properties": { + "m_name": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1717359772 + }, + "m_duration": { + "type": "float", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 920323453 + }, + "m_actions": { + "type": "class SharedPointer", + "id": 2, + "offset": 112, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1380578687 + }, + "m_stageRelationships": { + "type": "class SharedPointer", + "id": 3, + "offset": 128, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 499983354 + }, + "m_sound": { + "type": "std::string", + "id": 4, + "offset": 152, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2307644996 + }, + "m_animation": { + "type": "std::string", + "id": 5, + "offset": 184, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3431428731 + } + } + }, + "995444121": { + "name": "class SoundBehavior*", + "bases": [ + "AreaBehavior", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 995444121, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_radius": { + "type": "float", + "id": 1, + "offset": 116, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 989410271 + }, + "m_category": { + "type": "enum AudioCategory", + "id": 2, + "offset": 124, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2951251982, + "enum_options": { + "AudioCategory_Irrelevent": 0, + "AudioCategory_Accoustic": 1, + "AudioCategory_Noise": 2, + "AudioCategory_Music": 3 + } + }, + "m_exclusive": { + "type": "bool", + "id": 3, + "offset": 128, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 824383403 + }, + "m_playList": { + "type": "class PlayList", + "id": 4, + "offset": 176, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2061221957 + }, + "m_volume": { + "type": "float", + "id": 5, + "offset": 304, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1162855023 + }, + "m_loopCount": { + "type": "int", + "id": 6, + "offset": 308, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 865634717 + } + } + }, + "562937432": { + "name": "class ReagentLootInfo", + "bases": [ + "ItemLootInfo", + "LootInfo", + "LootInfoBase", + "PropertyClass" + ], + "hash": 562937432, + "properties": { + "m_lootType": { + "type": "enum LootInfo::LOOT_TYPE", + "id": 0, + "offset": 72, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1591891442, + "enum_options": { + "LOOT_TYPE_NONE": 0, + "LOOT_TYPE_GOLD": 1, + "LOOT_TYPE_MANA": 2, + "LOOT_TYPE_ITEM": 3, + "LOOT_TYPE_TREASURE_CARD": 4, + "LOOT_TYPE_MAGIC_XP": 5, + "LOOT_TYPE_ADD_SPELL": 6, + "LOOT_TYPE_MAX_HEALTH": 7, + "LOOT_TYPE_MAX_GOLD": 8, + "LOOT_TYPE_MAX_MANA": 9, + "LOOT_TYPE_MAX_POTION": 10, + "LOOT_TYPE_TRAINING_POINTS": 11, + "LOOT_TYPE_RECIPE": 12, + "LOOT_TYPE_CRAFTING_SLOT": 13, + "LOOT_TYPE_REAGENT": 14, + "LOOT_TYPE_PETSNACK": 15, + "LOOT_TYPE_GARDENING_XP": 16, + "LOOT_TYPE_PET_XP": 17, + "LOOT_TYPE_TREASURE_TABLE": 18, + "LOOT_TYPE_ARENA_POINTS": 19, + "LOOT_TYPE_ARENA_BONUS_POINTS": 20, + "LOOT_TYPE_GROUP": 21, + "LOOT_TYPE_FISHING_XP": 22, + "LOOT_TYPE_EVENT_CURRENCY_1": 24, + "LOOT_TYPE_EVENT_CURRENCY_2": 25, + "LOOT_TYPE_PVP_CURRENCY": 26, + "LOOT_TYPE_PVP_CURRENCY_BONUS": 27, + "LOOT_TYPE_PVP_TOURNEY_CURRENCY": 28, + "LOOT_TYPE_PVP_TOURNEY_CURRENCY_BONUS": 29, + "LOOT_TYPE_FURNITURE_ESSENCE": 30 + } + }, + "m_itemID": { + "type": "gid", + "id": 1, + "offset": 88, + "flags": 33554463, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 569545460 + }, + "m_numItems": { + "type": "int", + "id": 2, + "offset": 96, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1588646284 + } + } + }, + "1409100552": { + "name": "class TeamHelpWindow*", + "bases": [ + "Window", + "PropertyClass" + ], + "hash": 1409100552, + "properties": { + "m_sName": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306437263 + }, + "m_Children": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621225959 + }, + "m_Style": { + "type": "unsigned int", + "id": 2, + "offset": 152, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "SCALE_CHILDREN": 2, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "FOCUS_LOCKED": 64, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152 + } + }, + "m_Flags": { + "type": "unsigned int", + "id": 3, + "offset": 156, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } + }, + "m_Window": { + "type": "class Rect", + "id": 4, + "offset": 160, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3105139380 + }, + "m_fTargetAlpha": { + "type": "float", + "id": 5, + "offset": 212, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1809129834 + }, + "m_fDisabledAlpha": { + "type": "float", + "id": 6, + "offset": 216, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1389987675 + }, + "m_fAlpha": { + "type": "float", + "id": 7, + "offset": 208, + "flags": 65671, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 482130755 + }, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3623628394 + }, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2102211316 + }, + "m_sScript": { + "type": "std::string", + "id": 10, + "offset": 352, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1846695875 + }, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3389835433 + }, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547159940 + }, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513510520 + }, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3091503757 + } + } + }, + "562261948": { + "name": "class PhysicsSimMassSphere", + "bases": [ + "PhysicsSimMass", + "PropertyClass" + ], + "hash": 562261948, + "properties": {} + }, + "139159527": { + "name": "class PvPTourneyCurrencyBonusLootInfo*", + "bases": [ + "LootInfo", + "LootInfoBase", + "PropertyClass" + ], + "hash": 139159527, + "properties": { + "m_lootType": { + "type": "enum LootInfo::LOOT_TYPE", + "id": 0, + "offset": 72, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1591891442, + "enum_options": { + "LOOT_TYPE_NONE": 0, + "LOOT_TYPE_GOLD": 1, + "LOOT_TYPE_MANA": 2, + "LOOT_TYPE_ITEM": 3, + "LOOT_TYPE_TREASURE_CARD": 4, + "LOOT_TYPE_MAGIC_XP": 5, + "LOOT_TYPE_ADD_SPELL": 6, + "LOOT_TYPE_MAX_HEALTH": 7, + "LOOT_TYPE_MAX_GOLD": 8, + "LOOT_TYPE_MAX_MANA": 9, + "LOOT_TYPE_MAX_POTION": 10, + "LOOT_TYPE_TRAINING_POINTS": 11, + "LOOT_TYPE_RECIPE": 12, + "LOOT_TYPE_CRAFTING_SLOT": 13, + "LOOT_TYPE_REAGENT": 14, + "LOOT_TYPE_PETSNACK": 15, + "LOOT_TYPE_GARDENING_XP": 16, + "LOOT_TYPE_PET_XP": 17, + "LOOT_TYPE_TREASURE_TABLE": 18, + "LOOT_TYPE_ARENA_POINTS": 19, + "LOOT_TYPE_ARENA_BONUS_POINTS": 20, + "LOOT_TYPE_GROUP": 21, + "LOOT_TYPE_FISHING_XP": 22, + "LOOT_TYPE_EVENT_CURRENCY_1": 24, + "LOOT_TYPE_EVENT_CURRENCY_2": 25, + "LOOT_TYPE_PVP_CURRENCY": 26, + "LOOT_TYPE_PVP_CURRENCY_BONUS": 27, + "LOOT_TYPE_PVP_TOURNEY_CURRENCY": 28, + "LOOT_TYPE_PVP_TOURNEY_CURRENCY_BONUS": 29, + "LOOT_TYPE_FURNITURE_ESSENCE": 30 + } + }, + "m_pvpTourneyCurrencyBonusAmount": { + "type": "int", + "id": 1, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1691016556 + } + } + }, + "1841474166": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1841474166, + "properties": { + "m_noteName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 65543, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2085772594 + }, + "m_duration": { + "type": "float", + "id": 1, + "offset": 104, + "flags": 65543, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 920323453 + } + } + }, + "562261908": { + "name": "class PhysicsSimMassSphere*", + "bases": [ + "PhysicsSimMass", + "PropertyClass" + ], + "hash": 562261908, + "properties": {} + }, + "998296624": { + "name": "class SavedDebugCommand*", + "bases": [ + "PropertyClass" + ], + "hash": 998296624, + "properties": { + "m_commandName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1931590331 + }, + "m_command": { + "type": "std::string", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1618022938 + } + } + }, + "1409100712": { + "name": "class TeamHelpWindow", + "bases": [ + "Window", + "PropertyClass" + ], + "hash": 1409100712, + "properties": { + "m_sName": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306437263 + }, + "m_Children": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621225959 + }, + "m_Style": { + "type": "unsigned int", + "id": 2, + "offset": 152, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "SCALE_CHILDREN": 2, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "FOCUS_LOCKED": 64, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152 + } + }, + "m_Flags": { + "type": "unsigned int", + "id": 3, + "offset": 156, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } + }, + "m_Window": { + "type": "class Rect", + "id": 4, + "offset": 160, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3105139380 + }, + "m_fTargetAlpha": { + "type": "float", + "id": 5, + "offset": 212, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1809129834 + }, + "m_fDisabledAlpha": { + "type": "float", + "id": 6, + "offset": 216, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1389987675 + }, + "m_fAlpha": { + "type": "float", + "id": 7, + "offset": 208, + "flags": 65671, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 482130755 + }, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3623628394 + }, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2102211316 + }, + "m_sScript": { + "type": "std::string", + "id": 10, + "offset": 352, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1846695875 + }, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3389835433 + }, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547159940 + }, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513510520 + }, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3091503757 + } + } + }, + "138873832": { + "name": "class SharedPointer", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 138873832, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_fishSize": { + "type": "float", + "id": 1, + "offset": 112, + "flags": 65536, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1986368316 + } + } + }, + "996754183": { + "name": "class PathManager::NodeTemplateList", + "bases": [ + "PropertyClass" + ], + "hash": 996754183, + "properties": { + "m_nodeList": { + "type": "class NodeObject*", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2187152017 + } + } + }, + "996418475": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 996418475, + "properties": {} + }, + "1846355199": { + "name": "class ServiceMementoBase", + "bases": [ + "PropertyClass" + ], + "hash": 1846355199, + "properties": { + "m_serviceOptions": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2340755721 + }, + "m_personaMadlibs": { + "type": "class SharedPointer", + "id": 1, + "offset": 96, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2418856780 + }, + "m_npcNameKey": { + "type": "std::string", + "id": 2, + "offset": 112, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1976589766 + }, + "m_npcTextKey": { + "type": "std::string", + "id": 3, + "offset": 144, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3453072394 + }, + "m_npcIcon": { + "type": "std::string", + "id": 4, + "offset": 176, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2965253381 + }, + "m_npcGreetingSound": { + "type": "std::string", + "id": 5, + "offset": 208, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1826980602 + }, + "m_npcFarewellSound": { + "type": "std::string", + "id": 6, + "offset": 240, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3241528183 + }, + "m_bTurnPlayerToFace": { + "type": "bool", + "id": 7, + "offset": 272, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 540096893 + }, + "m_clickToInteractOnly": { + "type": "bool", + "id": 8, + "offset": 273, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1696440536 + } + } + }, + "562932312": { + "name": "class ReagentLootInfo*", + "bases": [ + "ItemLootInfo", + "LootInfo", + "LootInfoBase", + "PropertyClass" + ], + "hash": 562932312, + "properties": { + "m_lootType": { + "type": "enum LootInfo::LOOT_TYPE", + "id": 0, + "offset": 72, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1591891442, + "enum_options": { + "LOOT_TYPE_NONE": 0, + "LOOT_TYPE_GOLD": 1, + "LOOT_TYPE_MANA": 2, + "LOOT_TYPE_ITEM": 3, + "LOOT_TYPE_TREASURE_CARD": 4, + "LOOT_TYPE_MAGIC_XP": 5, + "LOOT_TYPE_ADD_SPELL": 6, + "LOOT_TYPE_MAX_HEALTH": 7, + "LOOT_TYPE_MAX_GOLD": 8, + "LOOT_TYPE_MAX_MANA": 9, + "LOOT_TYPE_MAX_POTION": 10, + "LOOT_TYPE_TRAINING_POINTS": 11, + "LOOT_TYPE_RECIPE": 12, + "LOOT_TYPE_CRAFTING_SLOT": 13, + "LOOT_TYPE_REAGENT": 14, + "LOOT_TYPE_PETSNACK": 15, + "LOOT_TYPE_GARDENING_XP": 16, + "LOOT_TYPE_PET_XP": 17, + "LOOT_TYPE_TREASURE_TABLE": 18, + "LOOT_TYPE_ARENA_POINTS": 19, + "LOOT_TYPE_ARENA_BONUS_POINTS": 20, + "LOOT_TYPE_GROUP": 21, + "LOOT_TYPE_FISHING_XP": 22, + "LOOT_TYPE_EVENT_CURRENCY_1": 24, + "LOOT_TYPE_EVENT_CURRENCY_2": 25, + "LOOT_TYPE_PVP_CURRENCY": 26, + "LOOT_TYPE_PVP_CURRENCY_BONUS": 27, + "LOOT_TYPE_PVP_TOURNEY_CURRENCY": 28, + "LOOT_TYPE_PVP_TOURNEY_CURRENCY_BONUS": 29, + "LOOT_TYPE_FURNITURE_ESSENCE": 30 + } + }, + "m_itemID": { + "type": "gid", + "id": 1, + "offset": 88, + "flags": 33554463, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 569545460 + }, + "m_numItems": { + "type": "int", + "id": 2, + "offset": 96, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1588646284 + } + } + }, + "996397320": { + "name": "class SharedPointer", + "bases": [ + "TeleportToNode", + "PathBehaviorTemplate::Action", + "PropertyClass" + ], + "hash": 996397320, + "properties": { + "m_nPathID": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 214382368 + }, + "m_nNodeID": { + "type": "int", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 152152635, + "enum_options": { + "__DEFAULT": 4294967295 + } + }, + "m_nPriority": { + "type": "int", + "id": 2, + "offset": 84, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1515251530, + "enum_options": { + "__DEFAULT": 100 + } + }, + "m_nChance": { + "type": "int", + "id": 3, + "offset": 88, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1860748394, + "enum_options": { + "__DEFAULT": 50 + } + }, + "m_nDestinationNodeID": { + "type": "int", + "id": 4, + "offset": 96, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 44784029 + }, + "m_bContinuePathing": { + "type": "bool", + "id": 5, + "offset": 100, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2053386917 + } + } + }, + "1412412438": { + "name": "class AnnounceRoundCinematicAction", + "bases": [ + "CinematicAction", + "PropertyClass" + ], + "hash": 1412412438, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + } + } + }, + "139748988": { + "name": "class SharedPointer", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 139748988, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_radius": { + "type": "float", + "id": 1, + "offset": 116, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 989410271 + }, + "m_category": { + "type": "enum AudioCategory", + "id": 2, + "offset": 124, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2951251982, + "enum_options": { + "AudioCategory_Irrelevent": 0, + "AudioCategory_Accoustic": 1, + "AudioCategory_Noise": 2, + "AudioCategory_Music": 3 + } + }, + "m_exclusive": { + "type": "bool", + "id": 3, + "offset": 128, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 824383403 + } + } + }, + "1844855459": { + "name": "class JewelSocket", + "bases": [ + "PropertyClass" + ], + "hash": 1844855459, + "properties": { + "m_socketType": { + "type": "enum JewelSocket::JewelSocketType", + "id": 0, + "offset": 72, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3989417709, + "enum_options": { + "SOCKETTYPE_SQUARE": 0, + "SOCKETTYPE_CIRCLE": 1, + "SOCKETTYPE_TRIANGLE": 2, + "SOCKETTYPE_TEAR": 3, + "SOCKETTYPE_PET": 4, + "SOCKETTYPE_PINSQUAREPIP": 5, + "SOCKETTYPE_PINSQUARESHIELD": 6, + "SOCKETTYPE_PINSQUARESWORD": 7 + } + }, + "m_bLockable": { + "type": "bool", + "id": 1, + "offset": 76, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1046128242 + } + } + }, + "995989159": { + "name": "class SigilCamera*", + "bases": [ + "PropertyClass" + ], + "hash": 995989159, + "properties": { + "m_cameraName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3252786917 + }, + "m_overrideName": { + "type": "std::string", + "id": 1, + "offset": 104, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1990707228 + }, + "m_fMinHeight": { + "type": "float", + "id": 2, + "offset": 136, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2189896538 + } + } + }, + "1410565496": { + "name": "class ZoneTokenBoolean*", + "bases": [ + "ZoneTokenBase", + "PropertyClass" + ], + "hash": 1410565496, + "properties": { + "m_debugName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3553984419 + }, + "m_adjectiveList": { + "type": "std::string", + "id": 1, + "offset": 104, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 3195213318 + }, + "m_icon": { + "type": "std::string", + "id": 2, + "offset": 120, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1717182340 + }, + "m_iconBW": { + "type": "std::string", + "id": 3, + "offset": 152, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2047461085 + }, + "m_description": { + "type": "std::string", + "id": 4, + "offset": 184, + "flags": 8388639, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1649374815 + }, + "m_displayMode": { + "type": "enum ZTDisplayMode", + "id": 5, + "offset": 216, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2216526410, + "enum_options": { + "ZTDM_Shown": 0, + "ZTDM_Discoverable": 1, + "ZTDM_Hidden": 2 + } + }, + "m_storage": { + "type": "enum ZTStorage", + "id": 6, + "offset": 220, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2290454852, + "enum_options": { + "ZTS_Player": 0, + "ZTS_Zone": 1 + } + }, + "m_onEnable": { + "type": "class SharedPointer", + "id": 7, + "offset": 224, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2591736864 + }, + "m_onDiscover": { + "type": "class SharedPointer", + "id": 8, + "offset": 240, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2826026872 + }, + "m_onDisable": { + "type": "class SharedPointer", + "id": 9, + "offset": 256, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1860656717 + }, + "m_sourceID": { + "type": "gid", + "id": 10, + "offset": 272, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1134700470 + }, + "m_inZone": { + "type": "bool", + "id": 11, + "offset": 280, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 564535654 + }, + "m_enabled": { + "type": "bool", + "id": 12, + "offset": 281, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 504506718 + }, + "m_discovered": { + "type": "bool", + "id": 13, + "offset": 282, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2060478331 + }, + "m_onSet": { + "type": "class SharedPointer", + "id": 14, + "offset": 288, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1964529317 + }, + "m_onClear": { + "type": "class SharedPointer", + "id": 15, + "offset": 304, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1655978208 + }, + "m_bSet": { + "type": "bool", + "id": 16, + "offset": 320, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 221694593 + } + } + }, + "139355632": { + "name": "class SharedPointer", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 139355632, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_pDuel": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1066616366 + }, + "m_sigilTemplateID": { + "type": "unsigned int", + "id": 2, + "offset": 128, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 269055310 + } + } + }, + "1842926102": { + "name": "class JewelSocketBehaviorBase", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1842926102, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + } + } + }, + "1410401656": { + "name": "class ZoneTokenBoolean", + "bases": [ + "ZoneTokenBase", + "PropertyClass" + ], + "hash": 1410401656, + "properties": { + "m_debugName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3553984419 + }, + "m_adjectiveList": { + "type": "std::string", + "id": 1, + "offset": 104, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 3195213318 + }, + "m_icon": { + "type": "std::string", + "id": 2, + "offset": 120, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1717182340 + }, + "m_iconBW": { + "type": "std::string", + "id": 3, + "offset": 152, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2047461085 + }, + "m_description": { + "type": "std::string", + "id": 4, + "offset": 184, + "flags": 8388639, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1649374815 + }, + "m_displayMode": { + "type": "enum ZTDisplayMode", + "id": 5, + "offset": 216, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2216526410, + "enum_options": { + "ZTDM_Shown": 0, + "ZTDM_Discoverable": 1, + "ZTDM_Hidden": 2 + } + }, + "m_storage": { + "type": "enum ZTStorage", + "id": 6, + "offset": 220, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2290454852, + "enum_options": { + "ZTS_Player": 0, + "ZTS_Zone": 1 + } + }, + "m_onEnable": { + "type": "class SharedPointer", + "id": 7, + "offset": 224, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2591736864 + }, + "m_onDiscover": { + "type": "class SharedPointer", + "id": 8, + "offset": 240, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2826026872 + }, + "m_onDisable": { + "type": "class SharedPointer", + "id": 9, + "offset": 256, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1860656717 + }, + "m_sourceID": { + "type": "gid", + "id": 10, + "offset": 272, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1134700470 + }, + "m_inZone": { + "type": "bool", + "id": 11, + "offset": 280, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 564535654 + }, + "m_enabled": { + "type": "bool", + "id": 12, + "offset": 281, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 504506718 + }, + "m_discovered": { + "type": "bool", + "id": 13, + "offset": 282, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2060478331 + }, + "m_onSet": { + "type": "class SharedPointer", + "id": 14, + "offset": 288, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1964529317 + }, + "m_onClear": { + "type": "class SharedPointer", + "id": 15, + "offset": 304, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1655978208 + }, + "m_bSet": { + "type": "bool", + "id": 16, + "offset": 320, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 221694593 + } + } + }, + "1842518693": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1842518693, + "properties": { + "m_playerName0": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2243035545 + }, + "m_score0": { + "type": "unsigned short", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1494703316 + }, + "m_playerName1": { + "type": "std::string", + "id": 2, + "offset": 112, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2243035546 + }, + "m_score1": { + "type": "unsigned short", + "id": 3, + "offset": 144, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1494703317 + }, + "m_playerName2": { + "type": "std::string", + "id": 4, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2243035547 + }, + "m_score2": { + "type": "unsigned short", + "id": 5, + "offset": 184, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1494703318 + } + } + }, + "563004153": { + "name": "class ObjectStateBehavior*", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 563004153, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_stateList": { + "type": "unsigned int", + "id": 1, + "offset": 136, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1658565962 + }, + "m_stateSetOverride": { + "type": "std::string", + "id": 2, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3188396456 + } + } + }, + "996402085": { + "name": "class SharedPointer", + "bases": [ + "LevelUpElixirBehaviorTemplate", + "ElixirBehaviorTemplate", + "TimedItemBehaviorTemplate", + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 996402085, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + }, + "m_expireTime": { + "type": "std::string", + "id": 1, + "offset": 128, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3122602039 + }, + "m_timerType": { + "type": "enum TimerType", + "id": 2, + "offset": 120, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 571744132, + "enum_options": { + "TimerType_Game": 0, + "TimerType_Calendar": 1 + } + }, + "m_typeList": { + "type": "std::string", + "id": 3, + "offset": 160, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2119049625 + }, + "m_equipParticle": { + "type": "std::string", + "id": 4, + "offset": 176, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2222557491 + }, + "m_unequipParticle": { + "type": "std::string", + "id": 5, + "offset": 208, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2215431638 + }, + "m_equipSound": { + "type": "std::string", + "id": 6, + "offset": 240, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2720016552 + }, + "m_unequipSound": { + "type": "std::string", + "id": 7, + "offset": 272, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1552545835 + }, + "m_equipActionList": { + "type": "class SharedPointer", + "id": 8, + "offset": 304, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1314016250 + }, + "m_unequipActionList": { + "type": "class SharedPointer", + "id": 9, + "offset": 320, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2143896925 + }, + "m_combatEnabled": { + "type": "bool", + "id": 10, + "offset": 336, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1399744148 + }, + "m_PvPEnabled": { + "type": "bool", + "id": 11, + "offset": 337, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1042852532 + }, + "m_setCharacterToLevel": { + "type": "int", + "id": 12, + "offset": 408, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1268456078 + }, + "m_resultingTrainingPoints": { + "type": "int", + "id": 13, + "offset": 412, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1710285808 + }, + "m_schoolSpecificData": { + "type": "class SharedPointer", + "id": 14, + "offset": 472, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2609926725 + }, + "m_allSchoolData": { + "type": "class SharedPointer", + "id": 15, + "offset": 488, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2860093528 + }, + "m_firstWarningStringKey": { + "type": "std::string", + "id": 16, + "offset": 344, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3095888729 + }, + "m_secondWarningStringKey": { + "type": "std::string", + "id": 17, + "offset": 376, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2111513997 + }, + "m_accessPasses": { + "type": "std::string", + "id": 18, + "offset": 456, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2956825884 + }, + "m_gold": { + "type": "int", + "id": 19, + "offset": 416, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 219423808 + }, + "m_tutorialEventsToTrigger": { + "type": "std::string", + "id": 20, + "offset": 424, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2795041819 + }, + "m_tipIDsToDismiss": { + "type": "gid", + "id": 21, + "offset": 440, + "flags": 33554439, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1424884996 + }, + "m_maxPotions": { + "type": "int", + "id": 22, + "offset": 504, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1639626892 + }, + "m_questPrefix": { + "type": "std::string", + "id": 23, + "offset": 512, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2914797659 + } + } + }, + "563177106": { + "name": "class NewBadgeData", + "bases": [ + "PropertyClass" + ], + "hash": 563177106, + "properties": { + "m_badgeID": { + "type": "unsigned int", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 628960141 + }, + "m_badgeTime": { + "type": "unsigned int", + "id": 1, + "offset": 76, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1716875215 + } + } + }, + "1412406294": { + "name": "class AnnounceRoundCinematicAction*", + "bases": [ + "CinematicAction", + "PropertyClass" + ], + "hash": 1412406294, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + } + } + }, + "141110234": { + "name": "class SharedPointer", + "bases": [ + "GameEffectBase", + "PropertyClass" + ], + "hash": 141110234, + "properties": { + "m_currentTickCount": { + "type": "double", + "id": 0, + "offset": 80, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2533274692 + }, + "m_effectNameID": { + "type": "unsigned int", + "id": 1, + "offset": 96, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1204067144 + }, + "m_bIsOnPet": { + "type": "bool", + "id": 2, + "offset": 73, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 522593303 + }, + "m_originatorID": { + "type": "gid", + "id": 3, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1131810019 + }, + "m_itemSlotID": { + "type": "unsigned int", + "id": 4, + "offset": 112, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1895747595 + }, + "m_internalID": { + "type": "int", + "id": 5, + "offset": 92, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1643137924 + }, + "m_endTime": { + "type": "unsigned int", + "id": 6, + "offset": 88, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 716479635 + }, + "m_speedMultiplier": { + "type": "int", + "id": 7, + "offset": 128, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 32503058 + } + } + }, + "1843600150": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1843600150, + "properties": { + "m_report": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2579374715 + } + } + }, + "1411541191": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1411541191, + "properties": { + "m_animDataList": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1685449834 + } + } + }, + "140524840": { + "name": "class ClientDerbyStealMorale*", + "bases": [ + "DerbyStealMorale", + "DerbyEffect", + "PropertyClass" + ], + "hash": 140524840, + "properties": { + "m_buffType": { + "type": "enum DerbyTalentBuffType", + "id": 0, + "offset": 92, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1149251982, + "enum_options": { + "Buff": 0, + "Debuff": 1, + "Neither": 2 + } + }, + "m_kTarget": { + "type": "enum DerbyTargetType", + "id": 1, + "offset": 96, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1807803351, + "enum_options": { + "kTargetInFront": 0, + "kTargetBehind": 1, + "kTargetFirst": 2, + "kTargetSelf": 3, + "kTargetAll": 4, + "kTargetLast": 5 + } + }, + "m_nDuration": { + "type": "int", + "id": 2, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1110167982 + }, + "m_effectID": { + "type": "unsigned int", + "id": 3, + "offset": 88, + "flags": 24, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2347630439 + }, + "m_imageFilename": { + "type": "std::string", + "id": 4, + "offset": 112, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2813328063 + }, + "m_iconIndex": { + "type": "unsigned int", + "id": 5, + "offset": 144, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1265133262 + }, + "m_soundOnActivate": { + "type": "std::string", + "id": 6, + "offset": 152, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1956929714 + }, + "m_soundOnTarget": { + "type": "std::string", + "id": 7, + "offset": 184, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3444214056 + }, + "m_targetParticleEffect": { + "type": "std::string", + "id": 8, + "offset": 216, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3048234723 + }, + "m_overheadMessage": { + "type": "std::string", + "id": 9, + "offset": 248, + "flags": 8388639, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1701018190 + }, + "m_requirements": { + "type": "class RequirementList", + "id": 10, + "offset": 280, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2840988582 + }, + "m_nAmountToSteal": { + "type": "int", + "id": 11, + "offset": 376, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 247752792 + } + } + }, + "996663137": { + "name": "struct std::pair", + "bases": [], + "hash": 996663137, + "properties": {} + }, + "140406196": { + "name": "class SharedPointer", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 140406196, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + } + } + }, + "565449433": { + "name": "class CrownsRewardsSchedule*", + "bases": [ + "PropertyClass" + ], + "hash": 565449433, + "properties": {} + }, + "140335308": { + "name": "class SharedPointer", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 140335308, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_nFlags": { + "type": "unsigned int", + "id": 1, + "offset": 112, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 922328456 + }, + "m_nMoveState": { + "type": "enum MoveState", + "id": 2, + "offset": 116, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1430960270, + "enum_options": { + "MS_WALKING": 0, + "MS_RUNNING": 1, + "MS_SWIMMING": 2, + "MS_FLYING": 3, + "MS_JUMPING": 4, + "MS_FALLING": 5 + } + } + } + }, + "1845621453": { + "name": "class HousingPaletteBehaviorTemplate", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 1845621453, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + }, + "m_housingPaletteType": { + "type": "int", + "id": 1, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 658067464 + }, + "m_primaryTintColors": { + "type": "class Vector3D", + "id": 2, + "offset": 128, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2885436919 + }, + "m_secondaryTintColors": { + "type": "class Vector3D", + "id": 3, + "offset": 152, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 3624818395 + } + } + }, + "564440650": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 564440650, + "properties": { + "m_battlegroundName": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1534120775 + }, + "m_countdownSeconds": { + "type": "float", + "id": 1, + "offset": 112, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 255072071 + }, + "m_matchSize": { + "type": "int", + "id": 2, + "offset": 116, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 563704930 + }, + "m_teamStartA": { + "type": "std::string", + "id": 3, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1716880369 + }, + "m_teamStartB": { + "type": "std::string", + "id": 4, + "offset": 184, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1716880370 + }, + "m_battlegroundZone": { + "type": "std::string", + "id": 5, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1534567298 + }, + "m_cancelCooldownSeconds": { + "type": "int", + "id": 6, + "offset": 216, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1074662868 + }, + "m_maximumDisplayPoints": { + "type": "int", + "id": 7, + "offset": 220, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 751410187 + }, + "m_matchTimeSeconds": { + "type": "int", + "id": 8, + "offset": 224, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1560908229 + }, + "m_revealTimeSeconds": { + "type": "int", + "id": 9, + "offset": 228, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 258367543 + }, + "m_matchmakingList": { + "type": "class SharedPointer", + "id": 10, + "offset": 232, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2069645122 + }, + "m_unlockedPolymorphTags": { + "type": "std::string", + "id": 11, + "offset": 256, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2024692009 + }, + "m_lootWinner": { + "type": "std::string", + "id": 12, + "offset": 288, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1642288556 + }, + "m_lootLoser": { + "type": "std::string", + "id": 13, + "offset": 320, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2530546718 + }, + "m_lootTie": { + "type": "std::string", + "id": 14, + "offset": 352, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2506425499 + }, + "m_pveMode": { + "type": "bool", + "id": 15, + "offset": 384, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2142827875 + }, + "m_defeatedPolyLockCount": { + "type": "int", + "id": 16, + "offset": 388, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1366197282 + }, + "m_lockSigilSpotOnDefeat": { + "type": "bool", + "id": 17, + "offset": 392, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 407313920 + } + } + }, + "1845446045": { + "name": "class SharedPointer", + "bases": [ + "GeomParams", + "PropertyClass" + ], + "hash": 1845446045, + "properties": { + "m_eType": { + "type": "enum ProxyType", + "id": 0, + "offset": 72, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1656534066, + "enum_options": { + "ProxyTypeBox": 0, + "ProxyTypeRay": 1, + "ProxyTypeSphere": 2, + "ProxyTypeCylinder": 3, + "ProxyTypeTube": 4, + "ProxyTypePlane": 5, + "ProxyTypeMesh": 6, + "ProxyTypeInvalid": 7 + } + }, + "m_fRadius": { + "type": "float", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 787972805 + }, + "m_fLength": { + "type": "float", + "id": 2, + "offset": 84, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 558261279 + } + } + }, + "564229099": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 564229099, + "properties": { + "m_saleFilter": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1462249118 + }, + "m_newUsableFilter": { + "type": "bool", + "id": 1, + "offset": 73, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1923088319 + }, + "m_buttonView": { + "type": "bool", + "id": 2, + "offset": 74, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1893157642 + }, + "m_theBattleReadyItemTemplateID": { + "type": "unsigned int", + "id": 3, + "offset": 76, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 494853047 + } + } + }, + "997322632": { + "name": "class InfractionEvent", + "bases": [ + "PropertyClass" + ], + "hash": 997322632, + "properties": { + "m_eventName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3493260286 + }, + "m_basePoints": { + "type": "float", + "id": 1, + "offset": 108, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 624575055 + }, + "m_repeatScaler": { + "type": "float", + "id": 2, + "offset": 112, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 322423826 + }, + "m_lifespan": { + "type": "std::string", + "id": 3, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3042809453 + }, + "m_collapse": { + "type": "bool", + "id": 4, + "offset": 156, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1782517958 + } + } + }, + "1414740256": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1414740256, + "properties": { + "m_value": { + "type": "s24", + "id": 0, + "offset": 76, + "flags": 16, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 812923009 + }, + "m_propertyID": { + "type": "unsigned int", + "id": 1, + "offset": 72, + "flags": 16, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1883057791 + } + } + }, + "1845293453": { + "name": "class PolymorphEffectInfo*", + "bases": [ + "GameEffectInfo", + "PropertyClass" + ], + "hash": 1845293453, + "properties": { + "m_effectName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2029161513 + }, + "m_templateID": { + "type": "unsigned int", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1286746870 + } + } + }, + "996950791": { + "name": "class PathManager::NodeTemplateList*", + "bases": [ + "PropertyClass" + ], + "hash": 996950791, + "properties": { + "m_nodeList": { + "type": "class NodeObject*", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2187152017 + } + } + }, + "1412474150": { + "name": "class ModifyPipsCinematicAction", + "bases": [ + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 1412474150, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + } + } + }, + "140406256": { + "name": "class SharedPointer", + "bases": [ + "DeedBehaviorBase", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 140406256, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_lotInstanceGID": { + "type": "gid", + "id": 1, + "offset": 120, + "flags": 33554495, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2010711536 + }, + "m_streetAddress": { + "type": "int", + "id": 2, + "offset": 112, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1809670519 + }, + "m_transferCoolDownTime": { + "type": "unsigned int", + "id": 3, + "offset": 128, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1616830022 + } + } + }, + "996811752": { + "name": "class PathManager::PathTemplateList", + "bases": [ + "PropertyClass" + ], + "hash": 996811752, + "properties": { + "m_pathList": { + "type": "class PathObjectTemplate*", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2517543930 + } + } + }, + "564887240": { + "name": "class TeamGIDToBracketID*", + "bases": [ + "PropertyClass" + ], + "hash": 564887240, + "properties": { + "m_teamGID": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 194811347 + }, + "m_bracketTeamID": { + "type": "unsigned int", + "id": 1, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2174957597 + } + } + }, + "1414664130": { + "name": "class TextTagPair*", + "bases": [ + "PropertyClass" + ], + "hash": 1414664130, + "properties": { + "m_tag": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1764749335 + }, + "m_time": { + "type": "float", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 310085638 + } + } + }, + "996940629": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 996940629, + "properties": { + "m_leaderboardSize": { + "type": "int", + "id": 0, + "offset": 88, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 683398282 + }, + "m_leaderboardList": { + "type": "class SharedPointer", + "id": 1, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2590936732 + }, + "m_topEntry": { + "type": "int", + "id": 2, + "offset": 92, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 554856543 + } + } + }, + "140910793": { + "name": "class CombatAction", + "bases": [ + "PropertyClass" + ], + "hash": 140910793, + "properties": { + "m_spellCaster": { + "type": "int", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1306412924 + }, + "m_spell": { + "type": "class SharedPointer", + "id": 1, + "offset": 96, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1160380498 + }, + "m_spellHits": { + "type": "char", + "id": 2, + "offset": 112, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1193115340 + }, + "m_effectChosen": { + "type": "unsigned int", + "id": 3, + "offset": 212, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 781967354 + }, + "m_interrupt": { + "type": "bool", + "id": 4, + "offset": 113, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1419105216 + }, + "m_sigilSpell": { + "type": "bool", + "id": 5, + "offset": 114, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1757632683 + }, + "m_showCast": { + "type": "bool", + "id": 6, + "offset": 115, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 456821215 + }, + "m_criticalHitRoll": { + "type": "unsigned char", + "id": 7, + "offset": 116, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2767200825 + }, + "m_stunResistRoll": { + "type": "unsigned char", + "id": 8, + "offset": 117, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2034125421 + }, + "m_blocksCalculated": { + "type": "bool", + "id": 9, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1203964291 + }, + "m_serializedBlocks": { + "type": "std::string", + "id": 10, + "offset": 160, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3529268709 + }, + "m_stringKeyMessage": { + "type": "std::string", + "id": 11, + "offset": 216, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2591311648 + }, + "m_soundFileName": { + "type": "std::string", + "id": 12, + "offset": 248, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3058120805 + }, + "m_durationModifier": { + "type": "float", + "id": 13, + "offset": 280, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 753259116 + }, + "m_serializedTargetsAffected": { + "type": "std::string", + "id": 14, + "offset": 288, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2626745971 + }, + "m_targetSubcircleList": { + "type": "int", + "id": 15, + "offset": 80, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 227779897 + }, + "m_pipConversionRoll": { + "type": "int", + "id": 16, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 791010242 + }, + "m_randomSpellEffectPerTargetRolls": { + "type": "int", + "id": 17, + "offset": 128, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 430465634 + }, + "m_handledRandomSpellPerTarget": { + "type": "bool", + "id": 18, + "offset": 124, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1741636882 + }, + "m_confusedTarget": { + "type": "bool", + "id": 19, + "offset": 208, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1193542673 + }, + "m_forceSpell": { + "type": "bool", + "id": 20, + "offset": 336, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 935804098 + }, + "m_afterDied": { + "type": "bool", + "id": 21, + "offset": 209, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1317680827 + }, + "m_delayed": { + "type": "bool", + "id": 22, + "offset": 337, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1021327211 + }, + "m_delayedEnchanted": { + "type": "bool", + "id": 23, + "offset": 338, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2083048693 + }, + "m_petCast": { + "type": "bool", + "id": 24, + "offset": 339, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1494940903 + }, + "m_petCasted": { + "type": "bool", + "id": 25, + "offset": 340, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1697247120 + }, + "m_petCastTarget": { + "type": "int", + "id": 26, + "offset": 344, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 317564181 + }, + "m_CritHitList": { + "type": "class TargetCritHit", + "id": 27, + "offset": 368, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1448398021 + }, + "m_xPipCost": { + "type": "unsigned char", + "id": 28, + "offset": 348, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2557198122 + } + } + }, + "1846351613": { + "name": "class SharedPointer", + "bases": [ + "GameEffectTemplate", + "PropertyClass" + ], + "hash": 1846351613, + "properties": { + "m_effectName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2029161513 + }, + "m_effectCategory": { + "type": "std::string", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1852673222 + }, + "m_sortOrder": { + "type": "int", + "id": 2, + "offset": 148, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1411218206 + }, + "m_duration": { + "type": "double", + "id": 3, + "offset": 192, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2727932435 + }, + "m_stackingCategories": { + "type": "std::string", + "id": 4, + "offset": 160, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1774497525 + }, + "m_isPersistent": { + "type": "bool", + "id": 5, + "offset": 153, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 923861920 + }, + "m_bIsOnPet": { + "type": "bool", + "id": 6, + "offset": 154, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 522593303 + }, + "m_isPublic": { + "type": "bool", + "id": 7, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1728439822 + }, + "m_visualEffectAddName": { + "type": "std::string", + "id": 8, + "offset": 200, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3382086694 + }, + "m_visualEffectRemoveName": { + "type": "std::string", + "id": 9, + "offset": 232, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1541697323 + }, + "m_onAddFunctorName": { + "type": "std::string", + "id": 10, + "offset": 280, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1561843107 + }, + "m_onRemoveFunctorName": { + "type": "std::string", + "id": 11, + "offset": 312, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2559017864 + }, + "m_stackingRule": { + "type": "enum STACKING_RULE", + "id": 12, + "offset": 144, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 431568889, + "enum_options": { + "STACKING_ALLOWED": 0, + "STACKING_NOSTACK": 1, + "STACKING_REPLACE": 2 + } + } + } + }, + "140549416": { + "name": "class ClientDerbyStealMorale", + "bases": [ + "DerbyStealMorale", + "DerbyEffect", + "PropertyClass" + ], + "hash": 140549416, + "properties": { + "m_buffType": { + "type": "enum DerbyTalentBuffType", + "id": 0, + "offset": 92, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1149251982, + "enum_options": { + "Buff": 0, + "Debuff": 1, + "Neither": 2 + } + }, + "m_kTarget": { + "type": "enum DerbyTargetType", + "id": 1, + "offset": 96, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1807803351, + "enum_options": { + "kTargetInFront": 0, + "kTargetBehind": 1, + "kTargetFirst": 2, + "kTargetSelf": 3, + "kTargetAll": 4, + "kTargetLast": 5 + } + }, + "m_nDuration": { + "type": "int", + "id": 2, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1110167982 + }, + "m_effectID": { + "type": "unsigned int", + "id": 3, + "offset": 88, + "flags": 24, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2347630439 + }, + "m_imageFilename": { + "type": "std::string", + "id": 4, + "offset": 112, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2813328063 + }, + "m_iconIndex": { + "type": "unsigned int", + "id": 5, + "offset": 144, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1265133262 + }, + "m_soundOnActivate": { + "type": "std::string", + "id": 6, + "offset": 152, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1956929714 + }, + "m_soundOnTarget": { + "type": "std::string", + "id": 7, + "offset": 184, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3444214056 + }, + "m_targetParticleEffect": { + "type": "std::string", + "id": 8, + "offset": 216, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3048234723 + }, + "m_overheadMessage": { + "type": "std::string", + "id": 9, + "offset": 248, + "flags": 8388639, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1701018190 + }, + "m_requirements": { + "type": "class RequirementList", + "id": 10, + "offset": 280, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2840988582 + }, + "m_nAmountToSteal": { + "type": "int", + "id": 11, + "offset": 376, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 247752792 + } + } + }, + "1846251843": { + "name": "class SharedPointer", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1846251843, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + } + } + }, + "565706306": { + "name": "class CursorStyleManager", + "bases": [ + "PropertyClass" + ], + "hash": 565706306, + "properties": { + "m_defaultStyle": { + "type": "class CursorStyle", + "id": 0, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": true, + "pointer": false, + "hash": 1643631551 + }, + "m_cursorStyles": { + "type": "class CursorStyle", + "id": 1, + "offset": 408, + "flags": 135, + "container": "Vector", + "dynamic": true, + "singleton": true, + "pointer": false, + "hash": 1639869163 + } + } + }, + "1414949704": { + "name": "enum CastleMagicSpellTemplate::CastleMagicSpellType", + "bases": [], + "hash": 1414949704, + "properties": {} + }, + "565450713": { + "name": "class CrownsRewardsSchedule", + "bases": [ + "PropertyClass" + ], + "hash": 565450713, + "properties": {} + }, + "997139432": { + "name": "class PathManager::PathTemplateList*", + "bases": [ + "PropertyClass" + ], + "hash": 997139432, + "properties": { + "m_pathList": { + "type": "class PathObjectTemplate*", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2517543930 + } + } + }, + "141019177": { + "name": "class SharedPointer", + "bases": [ + "RemoveProtectionEffectCinematicAction", + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 141019177, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + } + } + }, + "1416022909": { + "name": "class TextComponent", + "bases": [ + "PropertyClass" + ], + "hash": 1416022909, + "properties": { + "m_useDropShadow": { + "type": "bool", + "id": 0, + "offset": 96, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1447894491 + }, + "m_useOutline": { + "type": "bool", + "id": 1, + "offset": 97, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1796769184 + } + } + }, + "1848072167": { + "name": "class SharedPointer", + "bases": [ + "EquippedItemInfo", + "PropertyClass" + ], + "hash": 1848072167, + "properties": { + "m_itemID": { + "type": "unsigned int", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 780964329 + }, + "m_baseColor": { + "type": "bui5", + "id": 1, + "offset": 92, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1433198221 + }, + "m_trimColor": { + "type": "bui5", + "id": 2, + "offset": 96, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1198446862 + }, + "m_pattern": { + "type": "bui5", + "id": 3, + "offset": 100, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1338360593 + }, + "m_displayID": { + "type": "unsigned int", + "id": 4, + "offset": 88, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1233846672 + }, + "m_pJewelInfo": { + "type": "class SharedPointer", + "id": 5, + "offset": 120, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 387523703 + }, + "m_fullColor": { + "type": "u24", + "id": 6, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 301226616 + } + } + }, + "565746038": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 565746038, + "properties": { + "m_shopKeeperID": { + "type": "unsigned int", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 862026800 + }, + "m_shopType": { + "type": "unsigned int", + "id": 1, + "offset": 76, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 658077993 + } + } + }, + "997325704": { + "name": "class InfractionEvent*", + "bases": [ + "PropertyClass" + ], + "hash": 997325704, + "properties": { + "m_eventName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3493260286 + }, + "m_basePoints": { + "type": "float", + "id": 1, + "offset": 108, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 624575055 + }, + "m_repeatScaler": { + "type": "float", + "id": 2, + "offset": 112, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 322423826 + }, + "m_lifespan": { + "type": "std::string", + "id": 3, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3042809453 + }, + "m_collapse": { + "type": "bool", + "id": 4, + "offset": 156, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1782517958 + } + } + }, + "1416022906": { + "name": "class TextComponent*", + "bases": [ + "PropertyClass" + ], + "hash": 1416022906, + "properties": { + "m_useDropShadow": { + "type": "bool", + "id": 0, + "offset": 96, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1447894491 + }, + "m_useOutline": { + "type": "bool", + "id": 1, + "offset": 97, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1796769184 + } + } + }, + "1847449722": { + "name": "class SharedPointer", + "bases": [ + "ServiceOptionBase", + "PropertyClass" + ], + "hash": 1847449722, + "properties": { + "m_serviceName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2206028813 + }, + "m_iconKey": { + "type": "std::string", + "id": 1, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2457138637 + }, + "m_displayKey": { + "type": "std::string", + "id": 2, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3023276954 + }, + "m_serviceIndex": { + "type": "unsigned int", + "id": 3, + "offset": 204, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2103126710 + }, + "m_forceInteract": { + "type": "bool", + "id": 4, + "offset": 200, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1705789564 + } + } + }, + "142706058": { + "name": "class ZoneTokenTimeTrigger", + "bases": [ + "PropertyClass" + ], + "hash": 142706058, + "properties": { + "m_triggerAt": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2502995716 + }, + "m_onTimeLeft": { + "type": "class SharedPointer", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1587597651 + } + } + }, + "997557873": { + "name": "class ObstacleCoursePendulumBehaviorTemplate", + "bases": [ + "ObstacleCourseObstacleBehaviorTemplate", + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 997557873, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + }, + "m_rate": { + "type": "double", + "id": 1, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2117614265 + }, + "m_penaltyTime": { + "type": "double", + "id": 2, + "offset": 128, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3890998489 + }, + "m_boxAngle": { + "type": "double", + "id": 3, + "offset": 136, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2280680509 + }, + "m_nearMissBoxAngle": { + "type": "double", + "id": 4, + "offset": 144, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2597648767 + }, + "m_nearMissWidth": { + "type": "double", + "id": 5, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3819808431 + }, + "m_pendulumHeight": { + "type": "double", + "id": 6, + "offset": 160, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3283581360 + }, + "m_angleMax": { + "type": "double", + "id": 7, + "offset": 168, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2853267002 + }, + "m_pendulumWidth": { + "type": "double", + "id": 8, + "offset": 176, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2478418615 + }, + "m_collisionHeight": { + "type": "double", + "id": 9, + "offset": 184, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3980975122 + }, + "m_pendulumHitSoundList": { + "type": "class WeightedList", + "id": 10, + "offset": 192, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1356951419 + } + } + }, + "142514312": { + "name": "class SharedPointer", + "bases": [ + "ActorResurrectCinematicAction", + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 142514312, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + } + } + }, + "1847642295": { + "name": "class ResultList", + "bases": [ + "PropertyClass" + ], + "hash": 1847642295, + "properties": { + "m_results": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 3083396188 + } + } + }, + "577733659": { + "name": "class PriceModifiers*", + "bases": [ + "PropertyClass" + ], + "hash": 577733659, + "properties": { + "m_shoppingColors": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 646294186 + }, + "m_dyeShopMods": { + "type": "class SharedPointer", + "id": 1, + "offset": 88, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2565828981 + }, + "m_sellMods": { + "type": "class SharedPointer", + "id": 2, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 789769746 + }, + "m_treasureMods": { + "type": "class SharedPointer", + "id": 3, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2392153009 + } + } + }, + "1417535973": { + "name": "class BackpackBuddyOptions*", + "bases": [ + "PropertyClass" + ], + "hash": 1417535973, + "properties": { + "m_sellCrownsItems": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 264897697 + }, + "m_sellNoAuctionItems": { + "type": "bool", + "id": 1, + "offset": 73, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 521218229 + }, + "m_sellStitchedItems": { + "type": "bool", + "id": 2, + "offset": 74, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1261254173 + }, + "m_sellCosmeticItems": { + "type": "bool", + "id": 3, + "offset": 75, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 661884604 + }, + "m_sellItemsWithJewels": { + "type": "bool", + "id": 4, + "offset": 76, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1195509291 + }, + "m_equipmentRequirementSchools": { + "type": "class SharedPointer", + "id": 5, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1963747469 + }, + "m_equipmentLevelDifference": { + "type": "int", + "id": 6, + "offset": 96, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 882949685 + }, + "m_equipmentLevelCategories": { + "type": "class SharedPointer", + "id": 7, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 875757928 + }, + "m_equipmentDuplicateCount": { + "type": "int", + "id": 8, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1546271990 + }, + "m_equipmentDuplicateCategories": { + "type": "class SharedPointer", + "id": 9, + "offset": 128, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 616694667 + }, + "m_sellEmptyDecks": { + "type": "bool", + "id": 10, + "offset": 144, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1837351132 + }, + "m_sellTemporaryMounts": { + "type": "bool", + "id": 11, + "offset": 145, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1610059564 + }, + "m_sellAllHousingCategories": { + "type": "class SharedPointer", + "id": 12, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2030133551 + }, + "m_keepSkeletonKeys": { + "type": "bool", + "id": 13, + "offset": 168, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1475507737 + }, + "m_keepGuildGateKeys": { + "type": "bool", + "id": 14, + "offset": 169, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1977825738 + }, + "m_keepSocketWrenches": { + "type": "bool", + "id": 15, + "offset": 170, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 418836224 + }, + "m_keepGauntletsOneShotDungeons": { + "type": "bool", + "id": 16, + "offset": 171, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1849469010 + }, + "m_keepQuintecentCores": { + "type": "bool", + "id": 17, + "offset": 172, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 164534196 + }, + "m_keepCrownSeeds": { + "type": "bool", + "id": 18, + "offset": 173, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1924786069 + }, + "m_housingDuplicateCount": { + "type": "int", + "id": 19, + "offset": 176, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 545140859 + }, + "m_sellHousingDuplicateCategories": { + "type": "class SharedPointer", + "id": 20, + "offset": 184, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1794770481 + }, + "m_libraryTreasureCardSchools": { + "type": "class SharedPointer", + "id": 21, + "offset": 200, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3468556638 + }, + "m_treasureCardDuplicateCount": { + "type": "int", + "id": 22, + "offset": 216, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1921259619 + }, + "m_treasureCardDuplicateSchools": { + "type": "class SharedPointer", + "id": 23, + "offset": 224, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3246907172 + }, + "m_sellAllGardeningTC": { + "type": "bool", + "id": 24, + "offset": 240, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1661696866 + }, + "m_sellAllCastleMagicTC": { + "type": "bool", + "id": 25, + "offset": 241, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 221153712 + }, + "m_sellAllCantripTC": { + "type": "bool", + "id": 26, + "offset": 242, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 815472644 + }, + "m_sellAllJewelSchools": { + "type": "class SharedPointer", + "id": 27, + "offset": 248, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2852898436 + }, + "m_jewelDuplicateCount": { + "type": "int", + "id": 28, + "offset": 264, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 9285909 + }, + "m_sellAllPinSchools": { + "type": "class SharedPointer", + "id": 29, + "offset": 272, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2024509716 + }, + "m_pinDuplicateCount": { + "type": "int", + "id": 30, + "offset": 288, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 17477605 + }, + "m_sellBlockJewels": { + "type": "bool", + "id": 31, + "offset": 292, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 947085848 + }, + "m_sellCriticalJewels": { + "type": "bool", + "id": 32, + "offset": 293, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1662439960 + }, + "m_sellAccuracyJewels": { + "type": "bool", + "id": 33, + "offset": 294, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 575425784 + }, + "m_sellFlatResistJewels": { + "type": "bool", + "id": 34, + "offset": 295, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1422401486 + }, + "m_sellFlatDamageJewels": { + "type": "bool", + "id": 35, + "offset": 296, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1076082387 + }, + "m_sellIncomingHealingJewels": { + "type": "bool", + "id": 36, + "offset": 297, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1056576185 + }, + "m_sellOutgoingHealingJewels": { + "type": "bool", + "id": 37, + "offset": 298, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 769504177 + }, + "m_sellHealthJewels": { + "type": "bool", + "id": 38, + "offset": 299, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 895258275 + }, + "m_sellManaJewels": { + "type": "bool", + "id": 39, + "offset": 300, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 497642570 + }, + "m_sellGivesSpellJewels": { + "type": "bool", + "id": 40, + "offset": 301, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1610892139 + }, + "m_sellDerbyJewels": { + "type": "bool", + "id": 41, + "offset": 302, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1304798563 + } + } + }, + "141140782": { + "name": "class SharedPointer", + "bases": [ + "GameEffectBase", + "PropertyClass" + ], + "hash": 141140782, + "properties": { + "m_currentTickCount": { + "type": "double", + "id": 0, + "offset": 80, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2533274692 + }, + "m_effectNameID": { + "type": "unsigned int", + "id": 1, + "offset": 96, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1204067144 + }, + "m_bIsOnPet": { + "type": "bool", + "id": 2, + "offset": 73, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 522593303 + }, + "m_originatorID": { + "type": "gid", + "id": 3, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1131810019 + }, + "m_itemSlotID": { + "type": "unsigned int", + "id": 4, + "offset": 112, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1895747595 + }, + "m_internalID": { + "type": "int", + "id": 5, + "offset": 92, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1643137924 + }, + "m_endTime": { + "type": "unsigned int", + "id": 6, + "offset": 88, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 716479635 + }, + "m_overrideName": { + "type": "std::string", + "id": 7, + "offset": 128, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1990707228 + } + } + }, + "570154666": { + "name": "class FaceTargetTeamActorCinematicAction", + "bases": [ + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 570154666, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + }, + "m_bCaster": { + "type": "bool", + "id": 2, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1390351511 + } + } + }, + "1417535949": { + "name": "class BackpackBuddyOptions", + "bases": [ + "PropertyClass" + ], + "hash": 1417535949, + "properties": { + "m_sellCrownsItems": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 264897697 + }, + "m_sellNoAuctionItems": { + "type": "bool", + "id": 1, + "offset": 73, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 521218229 + }, + "m_sellStitchedItems": { + "type": "bool", + "id": 2, + "offset": 74, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1261254173 + }, + "m_sellCosmeticItems": { + "type": "bool", + "id": 3, + "offset": 75, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 661884604 + }, + "m_sellItemsWithJewels": { + "type": "bool", + "id": 4, + "offset": 76, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1195509291 + }, + "m_equipmentRequirementSchools": { + "type": "class SharedPointer", + "id": 5, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1963747469 + }, + "m_equipmentLevelDifference": { + "type": "int", + "id": 6, + "offset": 96, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 882949685 + }, + "m_equipmentLevelCategories": { + "type": "class SharedPointer", + "id": 7, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 875757928 + }, + "m_equipmentDuplicateCount": { + "type": "int", + "id": 8, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1546271990 + }, + "m_equipmentDuplicateCategories": { + "type": "class SharedPointer", + "id": 9, + "offset": 128, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 616694667 + }, + "m_sellEmptyDecks": { + "type": "bool", + "id": 10, + "offset": 144, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1837351132 + }, + "m_sellTemporaryMounts": { + "type": "bool", + "id": 11, + "offset": 145, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1610059564 + }, + "m_sellAllHousingCategories": { + "type": "class SharedPointer", + "id": 12, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2030133551 + }, + "m_keepSkeletonKeys": { + "type": "bool", + "id": 13, + "offset": 168, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1475507737 + }, + "m_keepGuildGateKeys": { + "type": "bool", + "id": 14, + "offset": 169, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1977825738 + }, + "m_keepSocketWrenches": { + "type": "bool", + "id": 15, + "offset": 170, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 418836224 + }, + "m_keepGauntletsOneShotDungeons": { + "type": "bool", + "id": 16, + "offset": 171, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1849469010 + }, + "m_keepQuintecentCores": { + "type": "bool", + "id": 17, + "offset": 172, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 164534196 + }, + "m_keepCrownSeeds": { + "type": "bool", + "id": 18, + "offset": 173, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1924786069 + }, + "m_housingDuplicateCount": { + "type": "int", + "id": 19, + "offset": 176, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 545140859 + }, + "m_sellHousingDuplicateCategories": { + "type": "class SharedPointer", + "id": 20, + "offset": 184, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1794770481 + }, + "m_libraryTreasureCardSchools": { + "type": "class SharedPointer", + "id": 21, + "offset": 200, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3468556638 + }, + "m_treasureCardDuplicateCount": { + "type": "int", + "id": 22, + "offset": 216, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1921259619 + }, + "m_treasureCardDuplicateSchools": { + "type": "class SharedPointer", + "id": 23, + "offset": 224, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3246907172 + }, + "m_sellAllGardeningTC": { + "type": "bool", + "id": 24, + "offset": 240, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1661696866 + }, + "m_sellAllCastleMagicTC": { + "type": "bool", + "id": 25, + "offset": 241, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 221153712 + }, + "m_sellAllCantripTC": { + "type": "bool", + "id": 26, + "offset": 242, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 815472644 + }, + "m_sellAllJewelSchools": { + "type": "class SharedPointer", + "id": 27, + "offset": 248, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2852898436 + }, + "m_jewelDuplicateCount": { + "type": "int", + "id": 28, + "offset": 264, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 9285909 + }, + "m_sellAllPinSchools": { + "type": "class SharedPointer", + "id": 29, + "offset": 272, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2024509716 + }, + "m_pinDuplicateCount": { + "type": "int", + "id": 30, + "offset": 288, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 17477605 + }, + "m_sellBlockJewels": { + "type": "bool", + "id": 31, + "offset": 292, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 947085848 + }, + "m_sellCriticalJewels": { + "type": "bool", + "id": 32, + "offset": 293, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1662439960 + }, + "m_sellAccuracyJewels": { + "type": "bool", + "id": 33, + "offset": 294, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 575425784 + }, + "m_sellFlatResistJewels": { + "type": "bool", + "id": 34, + "offset": 295, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1422401486 + }, + "m_sellFlatDamageJewels": { + "type": "bool", + "id": 35, + "offset": 296, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1076082387 + }, + "m_sellIncomingHealingJewels": { + "type": "bool", + "id": 36, + "offset": 297, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1056576185 + }, + "m_sellOutgoingHealingJewels": { + "type": "bool", + "id": 37, + "offset": 298, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 769504177 + }, + "m_sellHealthJewels": { + "type": "bool", + "id": 38, + "offset": 299, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 895258275 + }, + "m_sellManaJewels": { + "type": "bool", + "id": 39, + "offset": 300, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 497642570 + }, + "m_sellGivesSpellJewels": { + "type": "bool", + "id": 40, + "offset": 301, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1610892139 + }, + "m_sellDerbyJewels": { + "type": "bool", + "id": 41, + "offset": 302, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1304798563 + } + } + }, + "141137144": { + "name": "class NamedEffect*", + "bases": [ + "GameEffectBase", + "PropertyClass" + ], + "hash": 141137144, + "properties": { + "m_currentTickCount": { + "type": "double", + "id": 0, + "offset": 80, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2533274692 + }, + "m_effectNameID": { + "type": "unsigned int", + "id": 1, + "offset": 96, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1204067144 + }, + "m_bIsOnPet": { + "type": "bool", + "id": 2, + "offset": 73, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 522593303 + }, + "m_originatorID": { + "type": "gid", + "id": 3, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1131810019 + }, + "m_itemSlotID": { + "type": "unsigned int", + "id": 4, + "offset": 112, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1895747595 + }, + "m_internalID": { + "type": "int", + "id": 5, + "offset": 92, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1643137924 + }, + "m_endTime": { + "type": "unsigned int", + "id": 6, + "offset": 88, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 716479635 + }, + "m_overrideName": { + "type": "std::string", + "id": 7, + "offset": 128, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1990707228 + } + } + }, + "569312825": { + "name": "class PetActor*", + "bases": [ + "MatchActor", + "PropertyClass" + ], + "hash": 569312825, + "properties": { + "m_nActorID": { + "type": "gid", + "id": 0, + "offset": 88, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 663762476 + }, + "m_nLadderContainerID": { + "type": "gid", + "id": 1, + "offset": 96, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 782107042 + }, + "m_nTournamentNameID": { + "type": "unsigned int", + "id": 2, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 471412886 + }, + "m_nTournamentID": { + "type": "gid", + "id": 3, + "offset": 112, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 105258688 + }, + "m_leagueID": { + "type": "unsigned int", + "id": 4, + "offset": 124, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 692361645 + }, + "m_seasonID": { + "type": "unsigned int", + "id": 5, + "offset": 120, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 535260643 + }, + "m_nMatchNameID": { + "type": "unsigned int", + "id": 6, + "offset": 128, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 497033398 + }, + "m_nMatchID": { + "type": "gid", + "id": 7, + "offset": 136, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1050279648 + }, + "m_nTeamID": { + "type": "gid", + "id": 8, + "offset": 144, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 374990266 + }, + "m_status": { + "type": "int", + "id": 9, + "offset": 160, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 960781182 + }, + "m_costAdj": { + "type": "class MatchCostAdjustment", + "id": 10, + "offset": 200, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 913243331 + }, + "m_pLadder": { + "type": "class SharedPointer", + "id": 11, + "offset": 304, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2484171182 + }, + "m_bracketID": { + "type": "gid", + "id": 12, + "offset": 152, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 441272961 + }, + "m_overridingELO": { + "type": "int", + "id": 13, + "offset": 284, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1428697363 + }, + "m_matchKFactor": { + "type": "int", + "id": 14, + "offset": 288, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 773340305 + }, + "m_userID": { + "type": "gid", + "id": 15, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1037989700 + }, + "m_matchMakingRangeForMatches": { + "type": "unsigned int", + "id": 16, + "offset": 320, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1193045098 + }, + "m_maxMatchMakingRangeForMatches": { + "type": "unsigned int", + "id": 17, + "offset": 324, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1279540944 + }, + "m_allowRangeToExceedMaxForMatches": { + "type": "bool", + "id": 18, + "offset": 328, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1260448226 + }, + "m_matchCrownsCost": { + "type": "int", + "id": 19, + "offset": 280, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1094489596 + }, + "m_machineID": { + "type": "gid", + "id": 20, + "offset": 336, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 281396698 + }, + "m_tier": { + "type": "int", + "id": 21, + "offset": 344, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 219884238 + }, + "m_rank": { + "type": "int", + "id": 22, + "offset": 348, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 219803942 + }, + "m_rating": { + "type": "int", + "id": 23, + "offset": 352, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 899783871 + }, + "m_levelBand": { + "type": "int", + "id": 24, + "offset": 356, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2097286567 + }, + "m_enteredQueue": { + "type": "int", + "id": 25, + "offset": 376, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 638238406 + }, + "m_isSubscriber": { + "type": "bool", + "id": 26, + "offset": 428, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 952325795 + }, + "m_meetBracketBadgeRequirnments": { + "type": "bool", + "id": 27, + "offset": 429, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 438139258 + }, + "m_1v1": { + "type": "bool", + "id": 28, + "offset": 430, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 269458571 + }, + "m_streak": { + "type": "int", + "id": 29, + "offset": 360, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 961375108 + }, + "m_matches": { + "type": "int", + "id": 30, + "offset": 364, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1757638687 + }, + "m_lastFight": { + "type": "int", + "id": 31, + "offset": 368, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 91176384 + }, + "m_PVPHistoryStr": { + "type": "std::string", + "id": 32, + "offset": 384, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1498439420 + }, + "m_maxCritHit": { + "type": "float", + "id": 33, + "offset": 416, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2225327348 + }, + "m_maxBlockCrit": { + "type": "float", + "id": 34, + "offset": 420, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 135865530 + }, + "m_shadowPipRating": { + "type": "float", + "id": 35, + "offset": 424, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 507126123 + }, + "m_optInOut": { + "type": "std::string", + "id": 36, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3013935453 + }, + "m_playerTimeDraw": { + "type": "bool", + "id": 37, + "offset": 431, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 447636221 + }, + "m_nTemplateID": { + "type": "unsigned __int64", + "id": 38, + "offset": 448, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1575131408 + }, + "m_nRank": { + "type": "unsigned char", + "id": 39, + "offset": 456, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1440551274 + }, + "m_petID": { + "type": "gid", + "id": 40, + "offset": 432, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 806009486 + }, + "m_petPermanentID": { + "type": "gid", + "id": 41, + "offset": 440, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1647183032 + }, + "m_nameBlob": { + "type": "std::string", + "id": 42, + "offset": 464, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3058206907 + } + } + }, + "999930307": { + "name": "class RaidGateBehaviorBase*", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 999930307, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_raidKeyTemplateID": { + "type": "unsigned int", + "id": 1, + "offset": 112, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 884418367 + } + } + }, + "1848297655": { + "name": "class ResultList*", + "bases": [ + "PropertyClass" + ], + "hash": 1848297655, + "properties": { + "m_results": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 3083396188 + } + } + }, + "1884277216": { + "name": "class SharedPointer", + "bases": [ + "CoreTemplate", + "PropertyClass" + ], + "hash": 1884277216, + "properties": { + "m_behaviors": { + "type": "class BehaviorTemplate*", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1197808594 + }, + "m_templateID": { + "type": "unsigned int", + "id": 1, + "offset": 96, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1286746870 + }, + "m_mobTemplateID": { + "type": "unsigned int", + "id": 2, + "offset": 100, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1268089108 + }, + "m_effects": { + "type": "class GameEffectInfo*", + "id": 3, + "offset": 104, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 588086299 + } + } + }, + "568907455": { + "name": "class RotateActorCinematicAction*", + "bases": [ + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 568907455, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + }, + "m_deltaYaw": { + "type": "float", + "id": 2, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1518691890 + } + } + }, + "999496944": { + "name": "class ChangeActorStateCinematicAction*", + "bases": [ + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 999496944, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + }, + "m_newState": { + "type": "std::string", + "id": 2, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2153420230 + } + } + }, + "566696695": { + "name": "class ReqHangingCharm*", + "bases": [ + "ConditionalSpellEffectRequirement", + "Requirement", + "PropertyClass" + ], + "hash": 566696695, + "properties": { + "m_applyNOT": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1746328074, + "enum_options": { + "__DEFAULT": 0 + } + }, + "m_operator": { + "type": "enum Requirement::Operator", + "id": 1, + "offset": 76, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2672792317, + "enum_options": { + "ROP_AND": 0, + "ROP_OR": 1, + "__DEFAULT": "ROP_AND" + } + }, + "m_targetType": { + "type": "enum ConditionalSpellEffectRequirement::RequirementTarget", + "id": 2, + "offset": 80, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547737902, + "enum_options": { + "RT_Caster": 0, + "RT_Target": 1 + } + }, + "m_disposition": { + "type": "enum SpellEffect::kHangingDisposition", + "id": 3, + "offset": 88, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1904841031, + "enum_options": { + "SpellEffect::kBoth": 0, + "SpellEffect::kBeneficial": 1, + "SpellEffect::kHarmful": 2 + } + }, + "m_minCount": { + "type": "int", + "id": 4, + "offset": 92, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1486503815 + }, + "m_maxCount": { + "type": "int", + "id": 5, + "offset": 96, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 136048585 + } + } + }, + "998830168": { + "name": "class CastleMagicItemDetector", + "bases": [ + "PropertyClass" + ], + "hash": 998830168, + "properties": {} + }, + "141432136": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 141432136, + "properties": { + "m_badgeFilterDescriptionList": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 3252782039 + } + } + }, + "1848861984": { + "name": "class ReqItemHasAdjective", + "bases": [ + "Requirement", + "PropertyClass" + ], + "hash": 1848861984, + "properties": { + "m_applyNOT": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1746328074, + "enum_options": { + "__DEFAULT": 0 + } + }, + "m_operator": { + "type": "enum Requirement::Operator", + "id": 1, + "offset": 76, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2672792317, + "enum_options": { + "ROP_AND": 0, + "ROP_OR": 1, + "__DEFAULT": "ROP_AND" + } + }, + "m_adjective": { + "type": "std::string", + "id": 2, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3429518154 + } + } + }, + "566114439": { + "name": "class MatchActorList", + "bases": [ + "PropertyClass" + ], + "hash": 566114439, + "properties": { + "m_list": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 551684466 + } + } + }, + "1419807349": { + "name": "class SG_GameLevelData", + "bases": [ + "PropertyClass" + ], + "hash": 1419807349, + "properties": { + "m_filePath": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3116244552 + }, + "m_shotLimit": { + "type": "int", + "id": 1, + "offset": 136, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1999036567 + }, + "m_levelIndex": { + "type": "unsigned int", + "id": 2, + "offset": 140, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 708309693 + }, + "m_perfectScore": { + "type": "int", + "id": 3, + "offset": 144, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 147156703 + }, + "m_flyOverCamera": { + "type": "std::string", + "id": 4, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3580817515 + } + } + }, + "999035778": { + "name": "class SharedPointer", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 999035778, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + } + } + }, + "1418605543": { + "name": "class CantripLevelControl", + "bases": [ + "Window", + "PropertyClass" + ], + "hash": 1418605543, + "properties": { + "m_sName": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306437263 + }, + "m_Children": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 65667, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621225959 + }, + "m_Style": { + "type": "unsigned int", + "id": 2, + "offset": 152, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "SCALE_CHILDREN": 2, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "FOCUS_LOCKED": 64, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152 + } + }, + "m_Flags": { + "type": "unsigned int", + "id": 3, + "offset": 156, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } + }, + "m_Window": { + "type": "class Rect", + "id": 4, + "offset": 160, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3105139380 + }, + "m_fTargetAlpha": { + "type": "float", + "id": 5, + "offset": 212, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1809129834 + }, + "m_fDisabledAlpha": { + "type": "float", + "id": 6, + "offset": 216, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1389987675 + }, + "m_fAlpha": { + "type": "float", + "id": 7, + "offset": 208, + "flags": 65671, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 482130755 + }, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3623628394 + }, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2102211316 + }, + "m_sScript": { + "type": "std::string", + "id": 10, + "offset": 352, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1846695875 + }, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3389835433 + }, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547159940 + }, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513510520 + }, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3091503757 + } + } + }, + "566693623": { + "name": "class ReqHangingCharm", + "bases": [ + "ConditionalSpellEffectRequirement", + "Requirement", + "PropertyClass" + ], + "hash": 566693623, + "properties": { + "m_applyNOT": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1746328074, + "enum_options": { + "__DEFAULT": 0 + } + }, + "m_operator": { + "type": "enum Requirement::Operator", + "id": 1, + "offset": 76, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2672792317, + "enum_options": { + "ROP_AND": 0, + "ROP_OR": 1, + "__DEFAULT": "ROP_AND" + } + }, + "m_targetType": { + "type": "enum ConditionalSpellEffectRequirement::RequirementTarget", + "id": 2, + "offset": 80, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547737902, + "enum_options": { + "RT_Caster": 0, + "RT_Target": 1 + } + }, + "m_disposition": { + "type": "enum SpellEffect::kHangingDisposition", + "id": 3, + "offset": 88, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1904841031, + "enum_options": { + "SpellEffect::kBoth": 0, + "SpellEffect::kBeneficial": 1, + "SpellEffect::kHarmful": 2 + } + }, + "m_minCount": { + "type": "int", + "id": 4, + "offset": 92, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1486503815 + }, + "m_maxCount": { + "type": "int", + "id": 5, + "offset": 96, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 136048585 + } + } + }, + "1418397150": { + "name": "class PetTomePetTotal*", + "bases": [ + "PropertyClass" + ], + "hash": 1418397150, + "properties": { + "m_className": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2220521682 + }, + "m_petCount": { + "type": "unsigned int", + "id": 1, + "offset": 108, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2215607743 + } + } + }, + "142544320": { + "name": "class SharedPointer", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 142544320, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + } + } + }, + "1874854708": { + "name": "class SharedPointer", + "bases": [ + "ServiceOptionBase", + "PropertyClass" + ], + "hash": 1874854708, + "properties": { + "m_serviceName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2206028813 + }, + "m_iconKey": { + "type": "std::string", + "id": 1, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2457138637 + }, + "m_displayKey": { + "type": "std::string", + "id": 2, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3023276954 + }, + "m_serviceIndex": { + "type": "unsigned int", + "id": 3, + "offset": 204, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2103126710 + }, + "m_forceInteract": { + "type": "bool", + "id": 4, + "offset": 200, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1705789564 + } + } + }, + "1877174202": { + "name": "class WinAnimMoveToLocationSpeed*", + "bases": [ + "WinAnimMoveToLocation", + "WindowAnimation", + "PropertyClass" + ], + "hash": 1877174202, + "properties": { + "m_bUseDeepCopy": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 433380635 + }, + "m_targetLocation": { + "type": "class Vector3D", + "id": 1, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2653859938 + }, + "m_fSpeed": { + "type": "float", + "id": 2, + "offset": 96, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 503609006 + } + } + }, + "1418255974": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1418255974, + "properties": { + "m_sMaterialName": { + "type": "std::wstring", + "id": 0, + "offset": 72, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1299185467 + }, + "m_Blending": { + "type": "enum Material::Blending", + "id": 1, + "offset": 116, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3003693822, + "enum_options": { + "B_NONE": 0, + "B_ADDITIVE": 1, + "B_ALPHA": 2, + "B_ALPHA_INV": 3, + "B_ADDITIVE_INV": 4, + "__DEFAULT": "B_ALPHA" + } + }, + "m_eRepeat": { + "type": "enum Material::Repeating", + "id": 2, + "offset": 176, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3302018843, + "enum_options": { + "R_NONE": 0, + "R_REPEAT": 1 + } + }, + "m_pDiffuseMap": { + "type": "class SharedPointer", + "id": 3, + "offset": 120, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 4008975679 + }, + "m_pAlphaMask": { + "type": "class SharedPointer", + "id": 4, + "offset": 136, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3411451405 + }, + "m_fLastAlpha": { + "type": "float", + "id": 5, + "offset": 152, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 284727287 + }, + "m_Diffuse": { + "type": "class Color", + "id": 6, + "offset": 156, + "flags": 262279, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1644364836 + }, + "m_Ambient": { + "type": "class Color", + "id": 7, + "offset": 160, + "flags": 262279, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2216816350 + }, + "m_Specular": { + "type": "class Color", + "id": 8, + "offset": 168, + "flags": 262279, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2645528957 + }, + "m_fSpecularPower": { + "type": "float", + "id": 9, + "offset": 172, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 539146057 + }, + "m_Frames": { + "type": "class Rect", + "id": 10, + "offset": 192, + "flags": 65671, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 3064301836 + }, + "m_nCurrentFrame": { + "type": "int", + "id": 11, + "offset": 216, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 45308854 + }, + "m_fAnimRate": { + "type": "float", + "id": 12, + "offset": 228, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 802385934 + }, + "m_nAnimBegin": { + "type": "int", + "id": 13, + "offset": 220, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 400513266 + }, + "m_nAnimEnd": { + "type": "int", + "id": 14, + "offset": 224, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1081103460 + }, + "m_fAnimTime": { + "type": "float", + "id": 15, + "offset": 232, + "flags": 134, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 802466289 + }, + "m_fMaterialScaleX": { + "type": "float", + "id": 16, + "offset": 180, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 634638220 + }, + "m_fMaterialScaleY": { + "type": "float", + "id": 17, + "offset": 184, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 634638221 + } + } + }, + "1864197091": { + "name": "class SigilTemplate*", + "bases": [ + "CoreTemplate", + "PropertyClass" + ], + "hash": 1864197091, + "properties": { + "m_behaviors": { + "type": "class BehaviorTemplate*", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1197808594 + }, + "m_sigilName": { + "type": "std::string", + "id": 1, + "offset": 96, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3177657588 + }, + "m_sigilType": { + "type": "std::string", + "id": 2, + "offset": 136, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3177899445 + }, + "m_entryResults": { + "type": "class ResultList*", + "id": 3, + "offset": 184, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3262956108 + }, + "m_requirements": { + "type": "class RequirementList*", + "id": 4, + "offset": 176, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2840985510 + }, + "m_cancelResults": { + "type": "class ResultList*", + "id": 5, + "offset": 192, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3799257120 + }, + "m_completeResults": { + "type": "class ResultList*", + "id": 6, + "offset": 200, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1964258099 + }, + "m_useState": { + "type": "bool", + "id": 7, + "offset": 216, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 683320865 + }, + "m_stateOverride": { + "type": "std::string", + "id": 8, + "offset": 224, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1949715548 + }, + "m_subCircles": { + "type": "class SigilSubCircle*", + "id": 9, + "offset": 256, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2227135493 + } + } + }, + "999684289": { + "name": "class SharedPointer", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 999684289, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + } + } + }, + "142639962": { + "name": "class SharedPointer", + "bases": [ + "BugReport", + "PropertyClass" + ], + "hash": 142639962, + "properties": { + "m_clientVersion": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2207163808 + }, + "m_type": { + "type": "enum BugType", + "id": 1, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 889643611, + "enum_options": { + "BT_CRASH": 1, + "BT_GAME_STOPPER": 2, + "BT_INTERFERENCE": 3, + "BT_ANNOYANCE": 4, + "BT_FEATURE_REQUEST": 5, + "BT_COMMENT": 6 + } + }, + "m_canReproduce": { + "type": "bool", + "id": 2, + "offset": 108, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 859813390 + }, + "m_description": { + "type": "std::wstring", + "id": 3, + "offset": 112, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1445360156 + }, + "m_systemType": { + "type": "enum WizBugReport::SystemType", + "id": 4, + "offset": 144, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1170942560, + "enum_options": { + "ST_OTHER": 0, + "ST_QUEST": 1, + "ST_SHOP": 2, + "ST_MONSTER": 3, + "ST_SPELL": 4, + "ST_ITEM": 5, + "ST_INTERFACE": 6 + } + }, + "m_ideaType": { + "type": "enum WizBugReport::IdeaType", + "id": 5, + "offset": 148, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1042875837, + "enum_options": { + "IT_ADD": 0, + "IT_CHANGE": 1, + "IT_NONE": 2 + } + }, + "m_userId": { + "type": "gid", + "id": 6, + "offset": 184, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1037989732 + }, + "m_gender": { + "type": "enum WizBugReport::UserGender", + "id": 7, + "offset": 196, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 625694774, + "enum_options": { + "UG_Unknown": 0, + "UG_Male": 1, + "UG_Female": 2 + } + }, + "m_age": { + "type": "unsigned char", + "id": 8, + "offset": 192, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 904628669 + }, + "m_userName": { + "type": "std::string", + "id": 9, + "offset": 152, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2213937019 + }, + "m_releaseUpdate": { + "type": "std::string", + "id": 10, + "offset": 208, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1780854143 + }, + "m_jiraIssue": { + "type": "std::string", + "id": 11, + "offset": 240, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1589236010 + }, + "m_osString": { + "type": "std::string", + "id": 12, + "offset": 272, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3500554164 + } + } + }, + "1856697791": { + "name": "class BGSigilProxyBehavior", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1856697791, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_autoCapTimer": { + "type": "class BGSigilTimer", + "id": 1, + "offset": 112, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2270881950 + }, + "m_timerTeam": { + "type": "std::string", + "id": 2, + "offset": 216, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1994153155 + }, + "m_teamOwner": { + "type": "std::string", + "id": 3, + "offset": 248, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3126686637 + }, + "m_combatActive": { + "type": "bool", + "id": 4, + "offset": 280, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1372743333 + }, + "m_captureable": { + "type": "bool", + "id": 5, + "offset": 281, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1101963387 + }, + "m_allowAutoCap": { + "type": "bool", + "id": 6, + "offset": 282, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 946300927 + }, + "m_sigilAggroRange": { + "type": "float", + "id": 7, + "offset": 284, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 995063020 + }, + "m_playerAggroRange": { + "type": "float", + "id": 8, + "offset": 288, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1776075073 + }, + "m_triggerOrientation": { + "type": "class Vector3D", + "id": 9, + "offset": 292, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2671004802 + }, + "m_triggerLocation": { + "type": "class Vector3D", + "id": 10, + "offset": 304, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2573315471 + }, + "m_triggerBox": { + "type": "bool", + "id": 11, + "offset": 316, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 962168144 + }, + "m_width": { + "type": "float", + "id": 12, + "offset": 320, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 904656279 + }, + "m_length": { + "type": "float", + "id": 13, + "offset": 324, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 759698745 + }, + "m_triggerSphere": { + "type": "bool", + "id": 14, + "offset": 328, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1467830382 + }, + "m_radius": { + "type": "float", + "id": 15, + "offset": 332, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 989410271 + }, + "m_inRange": { + "type": "class SharedPointer", + "id": 16, + "offset": 336, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2259190010 + } + } + }, + "568907445": { + "name": "class RotateActorCinematicAction", + "bases": [ + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 568907445, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + }, + "m_deltaYaw": { + "type": "float", + "id": 2, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1518691890 + } + } + }, + "1851944083": { + "name": "class ClientModifyPipsCinematicAction*", + "bases": [ + "ModifyPipsCinematicAction", + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 1851944083, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + } + } + }, + "567077787": { + "name": "enum PetDerbyActions", + "bases": [], + "hash": 567077787, + "properties": {} + }, + "1418400222": { + "name": "class PetTomePetTotal", + "bases": [ + "PropertyClass" + ], + "hash": 1418400222, + "properties": { + "m_className": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2220521682 + }, + "m_petCount": { + "type": "unsigned int", + "id": 1, + "offset": 108, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2215607743 + } + } + }, + "1850291511": { + "name": "class EquippedItemInfo", + "bases": [ + "PropertyClass" + ], + "hash": 1850291511, + "properties": { + "m_itemID": { + "type": "unsigned int", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 780964329 + } + } + }, + "1000140888": { + "name": "class CastleMagicItemDetector*", + "bases": [ + "PropertyClass" + ], + "hash": 1000140888, + "properties": {} + }, + "144742521": { + "name": "class BrightnessControlWindow", + "bases": [ + "Window", + "PropertyClass" + ], + "hash": 144742521, + "properties": { + "m_sName": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306437263 + }, + "m_Children": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621225959 + }, + "m_Style": { + "type": "unsigned int", + "id": 2, + "offset": 152, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "SCALE_CHILDREN": 2, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "FOCUS_LOCKED": 64, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152 + } + }, + "m_Flags": { + "type": "unsigned int", + "id": 3, + "offset": 156, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } + }, + "m_Window": { + "type": "class Rect", + "id": 4, + "offset": 160, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3105139380 + }, + "m_fTargetAlpha": { + "type": "float", + "id": 5, + "offset": 212, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1809129834 + }, + "m_fDisabledAlpha": { + "type": "float", + "id": 6, + "offset": 216, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1389987675 + }, + "m_fAlpha": { + "type": "float", + "id": 7, + "offset": 208, + "flags": 65671, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 482130755 + }, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3623628394 + }, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2102211316 + }, + "m_sScript": { + "type": "std::string", + "id": 10, + "offset": 352, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1846695875 + }, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3389835433 + }, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547159940 + }, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513510520 + }, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3091503757 + } + } + }, + "1850260684": { + "name": "class PCSButton*", + "bases": [ + "ControlButton", + "Window", + "PropertyClass" + ], + "hash": 1850260684, + "properties": { + "m_sName": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306437263 + }, + "m_Children": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621225959 + }, + "m_Style": { + "type": "unsigned int", + "id": 2, + "offset": 152, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152, + "SHOW_HOTKEY": 16777216, + "EFFECT_SCALE": 67108864, + "LOCK_ICON_SIZE": 33554432, + "LEFT_TEXT": 536870912, + "NO_FIT_TEXT": 1073741824 + } + }, + "m_Flags": { + "type": "unsigned int", + "id": 3, + "offset": 156, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } + }, + "m_Window": { + "type": "class Rect", + "id": 4, + "offset": 160, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3105139380 + }, + "m_fTargetAlpha": { + "type": "float", + "id": 5, + "offset": 212, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1809129834 + }, + "m_fDisabledAlpha": { + "type": "float", + "id": 6, + "offset": 216, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1389987675 + }, + "m_fAlpha": { + "type": "float", + "id": 7, + "offset": 208, + "flags": 65671, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 482130755 + }, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3623628394 + }, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2102211316 + }, + "m_sScript": { + "type": "std::string", + "id": 10, + "offset": 352, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1846695875 + }, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3389835433 + }, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547159940 + }, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513510520 + }, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3091503757 + }, + "m_bToggle": { + "type": "bool", + "id": 16, + "offset": 608, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2071810903 + }, + "m_bButtonDown": { + "type": "bool", + "id": 17, + "offset": 609, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 840041705 + }, + "m_sLabel": { + "type": "std::wstring", + "id": 18, + "offset": 616, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2207009163 + }, + "m_labelOffset": { + "type": "class Rect", + "id": 19, + "offset": 832, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1990646723 + }, + "m_pButton": { + "type": "class SharedPointer", + "id": 20, + "offset": 656, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1543855875 + }, + "m_HotKey": { + "type": "unsigned int", + "id": 21, + "offset": 672, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1631553409 + }, + "m_Color": { + "type": "class Color", + "id": 22, + "offset": 676, + "flags": 262279, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1753714077 + }, + "m_bCursorOver": { + "type": "bool", + "id": 23, + "offset": 689, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 283981103 + }, + "m_bAbortWhenCursorNotOver": { + "type": "bool", + "id": 24, + "offset": 706, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 325405258 + }, + "m_bHotKeyDown": { + "type": "bool", + "id": 25, + "offset": 680, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 616989185 + }, + "m_fTime": { + "type": "float", + "id": 26, + "offset": 684, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 883746156 + }, + "m_bGreyed": { + "type": "bool", + "id": 27, + "offset": 688, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1566556053 + }, + "m_fMaxScale": { + "type": "float", + "id": 28, + "offset": 692, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2070186635 + }, + "m_fScaleSpeed": { + "type": "float", + "id": 29, + "offset": 696, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1457135702 + }, + "m_bUseDropShadow": { + "type": "bool", + "id": 30, + "offset": 704, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 93063037 + }, + "m_bUseOutline": { + "type": "bool", + "id": 31, + "offset": 705, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 744292994 + }, + "m_pGreyedState": { + "type": "class SharedPointer", + "id": 32, + "offset": 768, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2703352263 + }, + "m_pNormalState": { + "type": "class SharedPointer", + "id": 33, + "offset": 752, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1887909808 + }, + "m_pHighlightedState": { + "type": "class SharedPointer", + "id": 34, + "offset": 784, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2200177608 + }, + "m_pSelectedState": { + "type": "class SharedPointer", + "id": 35, + "offset": 800, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2266776432 + }, + "m_pDepressedState": { + "type": "class SharedPointer", + "id": 36, + "offset": 816, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1878185798 + }, + "m_itemID": { + "type": "gid", + "id": 37, + "offset": 992, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 569545460 + }, + "m_currencyType": { + "type": "enum PermanentShop::CurrencyTab", + "id": 38, + "offset": 1000, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 405352622, + "enum_options": { + "Gold": 0, + "Crowns": 1, + "ArenaTickets": 2 + } + } + } + }, + "999930347": { + "name": "class RaidGateBehaviorBase", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 999930347, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_raidKeyTemplateID": { + "type": "unsigned int", + "id": 1, + "offset": 112, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 884418367 + } + } + }, + "1418484713": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1418484713, + "properties": { + "m_uPathID": { + "type": "unsigned int", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 876142428 + }, + "m_nFullnessScoreTarget": { + "type": "int", + "id": 1, + "offset": 76, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 293633463 + }, + "m_nTimeLimitInSeconds": { + "type": "int", + "id": 2, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1125165468 + }, + "m_nWeightChangeInSeconds": { + "type": "int", + "id": 3, + "offset": 84, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1881631612 + }, + "m_fDropsPerSecondAtStart": { + "type": "float", + "id": 4, + "offset": 88, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 752496235 + }, + "m_fDropsPerSecondAtEnd": { + "type": "float", + "id": 5, + "offset": 92, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1684240180 + }, + "m_fCatchDistance": { + "type": "float", + "id": 6, + "offset": 96, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 879620619 + }, + "m_fFreezeSpeed": { + "type": "float", + "id": 7, + "offset": 100, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1366477327 + }, + "m_fSpeedNormal": { + "type": "float", + "id": 8, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1038542199 + }, + "m_fSpeedBonus": { + "type": "float", + "id": 9, + "offset": 108, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1406294645 + }, + "m_fSpeedPenalty": { + "type": "float", + "id": 10, + "offset": 112, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1356789899 + }, + "m_fInitialItemHeight": { + "type": "float", + "id": 11, + "offset": 116, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2124739791 + }, + "m_fGroundHeight": { + "type": "float", + "id": 12, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2050728741 + }, + "m_fPetHeight": { + "type": "float", + "id": 13, + "offset": 124, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2094176095 + }, + "m_fJumpHeight": { + "type": "float", + "id": 14, + "offset": 128, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1742092018 + }, + "m_fMaxScaleIncrease": { + "type": "float", + "id": 15, + "offset": 132, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1883110517 + }, + "m_sItemHitGroundSound": { + "type": "std::string", + "id": 16, + "offset": 136, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1678384346 + }, + "m_sItemHitGroundFX": { + "type": "std::string", + "id": 17, + "offset": 168, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1855437679 + }, + "m_foodItems": { + "type": "class SharedPointer", + "id": 18, + "offset": 200, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2404207033 + } + } + }, + "144476178": { + "name": "class HatchmakingPetGIDList", + "bases": [ + "PropertyClass" + ], + "hash": 144476178, + "properties": { + "m_skip": { + "type": "unsigned int", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 431253060 + }, + "m_petTemplateID": { + "type": "unsigned int", + "id": 1, + "offset": 76, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 817215071 + }, + "m_hatchmakingPetGIDList": { + "type": "gid", + "id": 2, + "offset": 80, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 109341840 + }, + "m_hatchmakingPlayerGIDList": { + "type": "gid", + "id": 3, + "offset": 96, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1721119220 + } + } + }, + "1850213974": { + "name": "class ClientLeashBehavior", + "bases": [ + "LeashBehavior", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1850213974, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_ownerGid": { + "type": "gid", + "id": 1, + "offset": 128, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1765088663 + }, + "m_radius": { + "type": "float", + "id": 2, + "offset": 136, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 989410271 + }, + "m_angle": { + "type": "float", + "id": 3, + "offset": 140, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 878748702 + }, + "m_leashType": { + "type": "enum LeashType", + "id": 4, + "offset": 144, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2170708051, + "enum_options": { + "LLT_Rigid": 0, + "LLT_Elastic": 1 + } + }, + "m_alwaysDisplay": { + "type": "bool", + "id": 5, + "offset": 161, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2071781402 + } + } + }, + "142706082": { + "name": "class ZoneTokenTimeTrigger*", + "bases": [ + "PropertyClass" + ], + "hash": 142706082, + "properties": { + "m_triggerAt": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2502995716 + }, + "m_onTimeLeft": { + "type": "class SharedPointer", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1587597651 + } + } + }, + "1850034816": { + "name": "class SharedPointer", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 1850034816, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + }, + "m_isKiosk": { + "type": "bool", + "id": 1, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1545253296 + } + } + }, + "569312441": { + "name": "class PetActor", + "bases": [ + "MatchActor", + "PropertyClass" + ], + "hash": 569312441, + "properties": { + "m_nActorID": { + "type": "gid", + "id": 0, + "offset": 88, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 663762476 + }, + "m_nLadderContainerID": { + "type": "gid", + "id": 1, + "offset": 96, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 782107042 + }, + "m_nTournamentNameID": { + "type": "unsigned int", + "id": 2, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 471412886 + }, + "m_nTournamentID": { + "type": "gid", + "id": 3, + "offset": 112, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 105258688 + }, + "m_leagueID": { + "type": "unsigned int", + "id": 4, + "offset": 124, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 692361645 + }, + "m_seasonID": { + "type": "unsigned int", + "id": 5, + "offset": 120, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 535260643 + }, + "m_nMatchNameID": { + "type": "unsigned int", + "id": 6, + "offset": 128, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 497033398 + }, + "m_nMatchID": { + "type": "gid", + "id": 7, + "offset": 136, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1050279648 + }, + "m_nTeamID": { + "type": "gid", + "id": 8, + "offset": 144, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 374990266 + }, + "m_status": { + "type": "int", + "id": 9, + "offset": 160, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 960781182 + }, + "m_costAdj": { + "type": "class MatchCostAdjustment", + "id": 10, + "offset": 200, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 913243331 + }, + "m_pLadder": { + "type": "class SharedPointer", + "id": 11, + "offset": 304, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2484171182 + }, + "m_bracketID": { + "type": "gid", + "id": 12, + "offset": 152, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 441272961 + }, + "m_overridingELO": { + "type": "int", + "id": 13, + "offset": 284, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1428697363 + }, + "m_matchKFactor": { + "type": "int", + "id": 14, + "offset": 288, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 773340305 + }, + "m_userID": { + "type": "gid", + "id": 15, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1037989700 + }, + "m_matchMakingRangeForMatches": { + "type": "unsigned int", + "id": 16, + "offset": 320, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1193045098 + }, + "m_maxMatchMakingRangeForMatches": { + "type": "unsigned int", + "id": 17, + "offset": 324, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1279540944 + }, + "m_allowRangeToExceedMaxForMatches": { + "type": "bool", + "id": 18, + "offset": 328, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1260448226 + }, + "m_matchCrownsCost": { + "type": "int", + "id": 19, + "offset": 280, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1094489596 + }, + "m_machineID": { + "type": "gid", + "id": 20, + "offset": 336, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 281396698 + }, + "m_tier": { + "type": "int", + "id": 21, + "offset": 344, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 219884238 + }, + "m_rank": { + "type": "int", + "id": 22, + "offset": 348, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 219803942 + }, + "m_rating": { + "type": "int", + "id": 23, + "offset": 352, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 899783871 + }, + "m_levelBand": { + "type": "int", + "id": 24, + "offset": 356, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2097286567 + }, + "m_enteredQueue": { + "type": "int", + "id": 25, + "offset": 376, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 638238406 + }, + "m_isSubscriber": { + "type": "bool", + "id": 26, + "offset": 428, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 952325795 + }, + "m_meetBracketBadgeRequirnments": { + "type": "bool", + "id": 27, + "offset": 429, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 438139258 + }, + "m_1v1": { + "type": "bool", + "id": 28, + "offset": 430, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 269458571 + }, + "m_streak": { + "type": "int", + "id": 29, + "offset": 360, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 961375108 + }, + "m_matches": { + "type": "int", + "id": 30, + "offset": 364, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1757638687 + }, + "m_lastFight": { + "type": "int", + "id": 31, + "offset": 368, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 91176384 + }, + "m_PVPHistoryStr": { + "type": "std::string", + "id": 32, + "offset": 384, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1498439420 + }, + "m_maxCritHit": { + "type": "float", + "id": 33, + "offset": 416, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2225327348 + }, + "m_maxBlockCrit": { + "type": "float", + "id": 34, + "offset": 420, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 135865530 + }, + "m_shadowPipRating": { + "type": "float", + "id": 35, + "offset": 424, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 507126123 + }, + "m_optInOut": { + "type": "std::string", + "id": 36, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3013935453 + }, + "m_playerTimeDraw": { + "type": "bool", + "id": 37, + "offset": 431, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 447636221 + }, + "m_nTemplateID": { + "type": "unsigned __int64", + "id": 38, + "offset": 448, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1575131408 + }, + "m_nRank": { + "type": "unsigned char", + "id": 39, + "offset": 456, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1440551274 + }, + "m_petID": { + "type": "gid", + "id": 40, + "offset": 432, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 806009486 + }, + "m_petPermanentID": { + "type": "gid", + "id": 41, + "offset": 440, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1647183032 + }, + "m_nameBlob": { + "type": "std::string", + "id": 42, + "offset": 464, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3058206907 + } + } + }, + "1000347226": { + "name": "class SharedPointer", + "bases": [ + "FloatingTextCinematicAction", + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 1000347226, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + }, + "m_stringTableEntry": { + "type": "std::string", + "id": 2, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2181170604 + } + } + }, + "1419572853": { + "name": "class ForcedStateInfo", + "bases": [ + "PropertyClass" + ], + "hash": 1419572853, + "properties": { + "m_forcedState": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2861191727 + }, + "m_category": { + "type": "std::string", + "id": 1, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2682050233 + }, + "m_fromState": { + "type": "std::string", + "id": 2, + "offset": 112, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2430398224 + } + } + }, + "1419567733": { + "name": "class ForcedStateInfo*", + "bases": [ + "PropertyClass" + ], + "hash": 1419567733, + "properties": { + "m_forcedState": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2861191727 + }, + "m_category": { + "type": "std::string", + "id": 1, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2682050233 + }, + "m_fromState": { + "type": "std::string", + "id": 2, + "offset": 112, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2430398224 + } + } + }, + "144477458": { + "name": "class HatchmakingPetGIDList*", + "bases": [ + "PropertyClass" + ], + "hash": 144477458, + "properties": { + "m_skip": { + "type": "unsigned int", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 431253060 + }, + "m_petTemplateID": { + "type": "unsigned int", + "id": 1, + "offset": 76, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 817215071 + }, + "m_hatchmakingPetGIDList": { + "type": "gid", + "id": 2, + "offset": 80, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 109341840 + }, + "m_hatchmakingPlayerGIDList": { + "type": "gid", + "id": 3, + "offset": 96, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1721119220 + } + } + }, + "569978041": { + "name": "class std::list >", + "bases": [], + "hash": 569978041, + "properties": {} + }, + "1000601203": { + "name": "class KhanDanceComponent*", + "bases": [ + "HousingGameInterface", + "PropertyClass" + ], + "hash": 1000601203, + "properties": {} + }, + "1418991225": { + "name": "class SharedPointer", + "bases": [ + "WizItemTemplate", + "ItemTemplate", + "GameObjectTemplate", + "CoreTemplate", + "PropertyClass" + ], + "hash": 1418991225, + "properties": { + "m_behaviors": { + "type": "class BehaviorTemplate*", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1197808594 + }, + "m_objectName": { + "type": "std::string", + "id": 1, + "offset": 96, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2154940147 + }, + "m_templateID": { + "type": "unsigned int", + "id": 2, + "offset": 128, + "flags": 16777223, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1286746870 + }, + "m_visualID": { + "type": "unsigned int", + "id": 3, + "offset": 132, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1118778894 + }, + "m_adjectiveList": { + "type": "std::string", + "id": 4, + "offset": 248, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 3195213318 + }, + "m_exemptFromAOI": { + "type": "bool", + "id": 5, + "offset": 240, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1457879059 + }, + "m_displayName": { + "type": "std::string", + "id": 6, + "offset": 168, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2446900370 + }, + "m_description": { + "type": "std::string", + "id": 7, + "offset": 136, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1649374815 + }, + "m_nObjectType": { + "type": "enum ObjectType", + "id": 8, + "offset": 200, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2118905880, + "enum_options": { + "OT_UNDEFINED": 0, + "OT_PLAYER": 1, + "OT_NPC": 2, + "OT_PROP": 3, + "OT_OBJECT": 4, + "OT_HOUSE": 5, + "OT_KEY": 6, + "OT_OLD_KEY": 7, + "OT_DEED": 8, + "OT_MAIL": 9, + "OT_RECIPE": 17, + "OT_EQUIP_HEAD": 10, + "OT_EQUIP_CHEST": 11, + "OT_EQUIP_LEGS": 12, + "OT_EQUIP_HANDS": 13, + "OT_EQUIP_FINGER": 14, + "OT_EQUIP_FEET": 15, + "OT_EQUIP_EAR": 16, + "OT_BUILDING_BLOCK": 18, + "OT_BUILDING_BLOCK_SOLID": 19, + "OT_GOLF": 20, + "OT_DOOR": 21, + "OT_PET": 22, + "OT_FABRIC": 23, + "OT_WINDOW": 24, + "OT_ROOF": 25, + "OT_HORSE": 26, + "OT_STRUCTURE": 27, + "OT_HOUSING_TEXTURE": 28, + "OT_PLANT": 29 + } + }, + "m_sIcon": { + "type": "std::string", + "id": 9, + "offset": 208, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306259831 + }, + "m_equipRequirements": { + "type": "class RequirementList*", + "id": 10, + "offset": 280, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2762617226 + }, + "m_purchaseRequirements": { + "type": "class RequirementList*", + "id": 11, + "offset": 288, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3174641793 + }, + "m_equipEffects": { + "type": "class GameEffectInfo*", + "id": 12, + "offset": 296, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 836628351 + }, + "m_baseCost": { + "type": "float", + "id": 13, + "offset": 312, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1565352651 + }, + "m_creditsCost": { + "type": "float", + "id": 14, + "offset": 320, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 805514974 + }, + "m_avatarInfo": { + "type": "class AvatarItemInfoBase*", + "id": 15, + "offset": 328, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2627321299 + }, + "m_avatarFlags": { + "type": "std::string", + "id": 16, + "offset": 336, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2347762759 + }, + "m_itemLimit": { + "type": "int", + "id": 17, + "offset": 316, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1799746856 + }, + "m_holidayFlag": { + "type": "std::string", + "id": 18, + "offset": 352, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2994795359 + }, + "m_itemSetBonusTemplateID": { + "type": "unsigned int", + "id": 19, + "offset": 384, + "flags": 33554439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1316835672 + }, + "m_numPrimaryColors": { + "type": "int", + "id": 20, + "offset": 428, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 981103872 + }, + "m_numSecondaryColors": { + "type": "int", + "id": 21, + "offset": 432, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1310416868 + }, + "m_numPatterns": { + "type": "int", + "id": 22, + "offset": 436, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 953162171 + }, + "m_school": { + "type": "std::string", + "id": 23, + "offset": 392, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2438566051 + }, + "m_arenaPointCost": { + "type": "int", + "id": 24, + "offset": 440, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1819621796 + }, + "m_pvpCurrencyCost": { + "type": "int", + "id": 25, + "offset": 444, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 645595444 + }, + "m_pvpTourneyCurrencyCost": { + "type": "int", + "id": 26, + "offset": 448, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 517874954 + }, + "m_rank": { + "type": "int", + "id": 27, + "offset": 424, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 219803942 + }, + "m_boyIconIndex": { + "type": "int", + "id": 28, + "offset": 452, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 802140453 + }, + "m_girlIconIndex": { + "type": "int", + "id": 29, + "offset": 456, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 832706793 + }, + "m_leashOffsetOverride": { + "type": "class SharedPointer", + "id": 30, + "offset": 464, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1692586788 + }, + "m_rarity": { + "type": "enum RarityType", + "id": 31, + "offset": 460, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2253792108, + "enum_options": { + "RT_COMMON": 0, + "RT_UNCOMMON": 1, + "RT_RARE": 2, + "RT_ULTRARARE": 3, + "RT_EPIC": 4 + } + }, + "m_cantripName": { + "type": "std::string", + "id": 32, + "offset": 480, + "flags": 33554439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3064230349 + } + } + }, + "1850272972": { + "name": "class PCSButton", + "bases": [ + "ControlButton", + "Window", + "PropertyClass" + ], + "hash": 1850272972, + "properties": { + "m_sName": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306437263 + }, + "m_Children": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621225959 + }, + "m_Style": { + "type": "unsigned int", + "id": 2, + "offset": 152, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152, + "SHOW_HOTKEY": 16777216, + "EFFECT_SCALE": 67108864, + "LOCK_ICON_SIZE": 33554432, + "LEFT_TEXT": 536870912, + "NO_FIT_TEXT": 1073741824 + } + }, + "m_Flags": { + "type": "unsigned int", + "id": 3, + "offset": 156, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } + }, + "m_Window": { + "type": "class Rect", + "id": 4, + "offset": 160, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3105139380 + }, + "m_fTargetAlpha": { + "type": "float", + "id": 5, + "offset": 212, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1809129834 + }, + "m_fDisabledAlpha": { + "type": "float", + "id": 6, + "offset": 216, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1389987675 + }, + "m_fAlpha": { + "type": "float", + "id": 7, + "offset": 208, + "flags": 65671, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 482130755 + }, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3623628394 + }, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2102211316 + }, + "m_sScript": { + "type": "std::string", + "id": 10, + "offset": 352, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1846695875 + }, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3389835433 + }, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547159940 + }, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513510520 + }, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3091503757 + }, + "m_bToggle": { + "type": "bool", + "id": 16, + "offset": 608, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2071810903 + }, + "m_bButtonDown": { + "type": "bool", + "id": 17, + "offset": 609, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 840041705 + }, + "m_sLabel": { + "type": "std::wstring", + "id": 18, + "offset": 616, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2207009163 + }, + "m_labelOffset": { + "type": "class Rect", + "id": 19, + "offset": 832, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1990646723 + }, + "m_pButton": { + "type": "class SharedPointer", + "id": 20, + "offset": 656, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1543855875 + }, + "m_HotKey": { + "type": "unsigned int", + "id": 21, + "offset": 672, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1631553409 + }, + "m_Color": { + "type": "class Color", + "id": 22, + "offset": 676, + "flags": 262279, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1753714077 + }, + "m_bCursorOver": { + "type": "bool", + "id": 23, + "offset": 689, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 283981103 + }, + "m_bAbortWhenCursorNotOver": { + "type": "bool", + "id": 24, + "offset": 706, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 325405258 + }, + "m_bHotKeyDown": { + "type": "bool", + "id": 25, + "offset": 680, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 616989185 + }, + "m_fTime": { + "type": "float", + "id": 26, + "offset": 684, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 883746156 + }, + "m_bGreyed": { + "type": "bool", + "id": 27, + "offset": 688, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1566556053 + }, + "m_fMaxScale": { + "type": "float", + "id": 28, + "offset": 692, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2070186635 + }, + "m_fScaleSpeed": { + "type": "float", + "id": 29, + "offset": 696, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1457135702 + }, + "m_bUseDropShadow": { + "type": "bool", + "id": 30, + "offset": 704, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 93063037 + }, + "m_bUseOutline": { + "type": "bool", + "id": 31, + "offset": 705, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 744292994 + }, + "m_pGreyedState": { + "type": "class SharedPointer", + "id": 32, + "offset": 768, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2703352263 + }, + "m_pNormalState": { + "type": "class SharedPointer", + "id": 33, + "offset": 752, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1887909808 + }, + "m_pHighlightedState": { + "type": "class SharedPointer", + "id": 34, + "offset": 784, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2200177608 + }, + "m_pSelectedState": { + "type": "class SharedPointer", + "id": 35, + "offset": 800, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2266776432 + }, + "m_pDepressedState": { + "type": "class SharedPointer", + "id": 36, + "offset": 816, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1878185798 + }, + "m_itemID": { + "type": "gid", + "id": 37, + "offset": 992, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 569545460 + }, + "m_currencyType": { + "type": "enum PermanentShop::CurrencyTab", + "id": 38, + "offset": 1000, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 405352622, + "enum_options": { + "Gold": 0, + "Crowns": 1, + "ArenaTickets": 2 + } + } + } + }, + "569336481": { + "name": "class PvPActor*", + "bases": [ + "MatchActor", + "PropertyClass" + ], + "hash": 569336481, + "properties": { + "m_nActorID": { + "type": "gid", + "id": 0, + "offset": 88, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 663762476 + }, + "m_nLadderContainerID": { + "type": "gid", + "id": 1, + "offset": 96, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 782107042 + }, + "m_nTournamentNameID": { + "type": "unsigned int", + "id": 2, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 471412886 + }, + "m_nTournamentID": { + "type": "gid", + "id": 3, + "offset": 112, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 105258688 + }, + "m_leagueID": { + "type": "unsigned int", + "id": 4, + "offset": 124, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 692361645 + }, + "m_seasonID": { + "type": "unsigned int", + "id": 5, + "offset": 120, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 535260643 + }, + "m_nMatchNameID": { + "type": "unsigned int", + "id": 6, + "offset": 128, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 497033398 + }, + "m_nMatchID": { + "type": "gid", + "id": 7, + "offset": 136, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1050279648 + }, + "m_nTeamID": { + "type": "gid", + "id": 8, + "offset": 144, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 374990266 + }, + "m_status": { + "type": "int", + "id": 9, + "offset": 160, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 960781182 + }, + "m_costAdj": { + "type": "class MatchCostAdjustment", + "id": 10, + "offset": 200, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 913243331 + }, + "m_pLadder": { + "type": "class SharedPointer", + "id": 11, + "offset": 304, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2484171182 + }, + "m_bracketID": { + "type": "gid", + "id": 12, + "offset": 152, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 441272961 + }, + "m_overridingELO": { + "type": "int", + "id": 13, + "offset": 284, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1428697363 + }, + "m_matchKFactor": { + "type": "int", + "id": 14, + "offset": 288, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 773340305 + }, + "m_userID": { + "type": "gid", + "id": 15, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1037989700 + }, + "m_matchMakingRangeForMatches": { + "type": "unsigned int", + "id": 16, + "offset": 320, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1193045098 + }, + "m_maxMatchMakingRangeForMatches": { + "type": "unsigned int", + "id": 17, + "offset": 324, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1279540944 + }, + "m_allowRangeToExceedMaxForMatches": { + "type": "bool", + "id": 18, + "offset": 328, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1260448226 + }, + "m_matchCrownsCost": { + "type": "int", + "id": 19, + "offset": 280, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1094489596 + }, + "m_machineID": { + "type": "gid", + "id": 20, + "offset": 336, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 281396698 + }, + "m_tier": { + "type": "int", + "id": 21, + "offset": 344, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 219884238 + }, + "m_rank": { + "type": "int", + "id": 22, + "offset": 348, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 219803942 + }, + "m_rating": { + "type": "int", + "id": 23, + "offset": 352, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 899783871 + }, + "m_levelBand": { + "type": "int", + "id": 24, + "offset": 356, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2097286567 + }, + "m_enteredQueue": { + "type": "int", + "id": 25, + "offset": 376, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 638238406 + }, + "m_isSubscriber": { + "type": "bool", + "id": 26, + "offset": 428, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 952325795 + }, + "m_meetBracketBadgeRequirnments": { + "type": "bool", + "id": 27, + "offset": 429, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 438139258 + }, + "m_1v1": { + "type": "bool", + "id": 28, + "offset": 430, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 269458571 + }, + "m_streak": { + "type": "int", + "id": 29, + "offset": 360, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 961375108 + }, + "m_matches": { + "type": "int", + "id": 30, + "offset": 364, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1757638687 + }, + "m_lastFight": { + "type": "int", + "id": 31, + "offset": 368, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 91176384 + }, + "m_PVPHistoryStr": { + "type": "std::string", + "id": 32, + "offset": 384, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1498439420 + }, + "m_maxCritHit": { + "type": "float", + "id": 33, + "offset": 416, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2225327348 + }, + "m_maxBlockCrit": { + "type": "float", + "id": 34, + "offset": 420, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 135865530 + }, + "m_shadowPipRating": { + "type": "float", + "id": 35, + "offset": 424, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 507126123 + }, + "m_optInOut": { + "type": "std::string", + "id": 36, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3013935453 + }, + "m_playerTimeDraw": { + "type": "bool", + "id": 37, + "offset": 431, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 447636221 + }, + "m_pvpStatus": { + "type": "unsigned char", + "id": 38, + "offset": 432, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 773570858 + }, + "m_gender": { + "type": "short", + "id": 39, + "offset": 434, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 564443897 + }, + "m_level": { + "type": "int", + "id": 40, + "offset": 436, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 801285362 + }, + "m_nameBlob": { + "type": "std::string", + "id": 41, + "offset": 440, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3058206907 + }, + "m_sSchool": { + "type": "std::string", + "id": 42, + "offset": 472, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1846342998 + }, + "m_timeLeft": { + "type": "int", + "id": 43, + "offset": 508, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1315288020 + } + } + }, + "569335841": { + "name": "class PvPActor", + "bases": [ + "MatchActor", + "PropertyClass" + ], + "hash": 569335841, + "properties": { + "m_nActorID": { + "type": "gid", + "id": 0, + "offset": 88, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 663762476 + }, + "m_nLadderContainerID": { + "type": "gid", + "id": 1, + "offset": 96, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 782107042 + }, + "m_nTournamentNameID": { + "type": "unsigned int", + "id": 2, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 471412886 + }, + "m_nTournamentID": { + "type": "gid", + "id": 3, + "offset": 112, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 105258688 + }, + "m_leagueID": { + "type": "unsigned int", + "id": 4, + "offset": 124, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 692361645 + }, + "m_seasonID": { + "type": "unsigned int", + "id": 5, + "offset": 120, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 535260643 + }, + "m_nMatchNameID": { + "type": "unsigned int", + "id": 6, + "offset": 128, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 497033398 + }, + "m_nMatchID": { + "type": "gid", + "id": 7, + "offset": 136, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1050279648 + }, + "m_nTeamID": { + "type": "gid", + "id": 8, + "offset": 144, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 374990266 + }, + "m_status": { + "type": "int", + "id": 9, + "offset": 160, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 960781182 + }, + "m_costAdj": { + "type": "class MatchCostAdjustment", + "id": 10, + "offset": 200, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 913243331 + }, + "m_pLadder": { + "type": "class SharedPointer", + "id": 11, + "offset": 304, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2484171182 + }, + "m_bracketID": { + "type": "gid", + "id": 12, + "offset": 152, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 441272961 + }, + "m_overridingELO": { + "type": "int", + "id": 13, + "offset": 284, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1428697363 + }, + "m_matchKFactor": { + "type": "int", + "id": 14, + "offset": 288, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 773340305 + }, + "m_userID": { + "type": "gid", + "id": 15, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1037989700 + }, + "m_matchMakingRangeForMatches": { + "type": "unsigned int", + "id": 16, + "offset": 320, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1193045098 + }, + "m_maxMatchMakingRangeForMatches": { + "type": "unsigned int", + "id": 17, + "offset": 324, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1279540944 + }, + "m_allowRangeToExceedMaxForMatches": { + "type": "bool", + "id": 18, + "offset": 328, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1260448226 + }, + "m_matchCrownsCost": { + "type": "int", + "id": 19, + "offset": 280, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1094489596 + }, + "m_machineID": { + "type": "gid", + "id": 20, + "offset": 336, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 281396698 + }, + "m_tier": { + "type": "int", + "id": 21, + "offset": 344, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 219884238 + }, + "m_rank": { + "type": "int", + "id": 22, + "offset": 348, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 219803942 + }, + "m_rating": { + "type": "int", + "id": 23, + "offset": 352, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 899783871 + }, + "m_levelBand": { + "type": "int", + "id": 24, + "offset": 356, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2097286567 + }, + "m_enteredQueue": { + "type": "int", + "id": 25, + "offset": 376, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 638238406 + }, + "m_isSubscriber": { + "type": "bool", + "id": 26, + "offset": 428, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 952325795 + }, + "m_meetBracketBadgeRequirnments": { + "type": "bool", + "id": 27, + "offset": 429, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 438139258 + }, + "m_1v1": { + "type": "bool", + "id": 28, + "offset": 430, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 269458571 + }, + "m_streak": { + "type": "int", + "id": 29, + "offset": 360, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 961375108 + }, + "m_matches": { + "type": "int", + "id": 30, + "offset": 364, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1757638687 + }, + "m_lastFight": { + "type": "int", + "id": 31, + "offset": 368, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 91176384 + }, + "m_PVPHistoryStr": { + "type": "std::string", + "id": 32, + "offset": 384, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1498439420 + }, + "m_maxCritHit": { + "type": "float", + "id": 33, + "offset": 416, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2225327348 + }, + "m_maxBlockCrit": { + "type": "float", + "id": 34, + "offset": 420, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 135865530 + }, + "m_shadowPipRating": { + "type": "float", + "id": 35, + "offset": 424, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 507126123 + }, + "m_optInOut": { + "type": "std::string", + "id": 36, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3013935453 + }, + "m_playerTimeDraw": { + "type": "bool", + "id": 37, + "offset": 431, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 447636221 + }, + "m_pvpStatus": { + "type": "unsigned char", + "id": 38, + "offset": 432, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 773570858 + }, + "m_gender": { + "type": "short", + "id": 39, + "offset": 434, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 564443897 + }, + "m_level": { + "type": "int", + "id": 40, + "offset": 436, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 801285362 + }, + "m_nameBlob": { + "type": "std::string", + "id": 41, + "offset": 440, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3058206907 + }, + "m_sSchool": { + "type": "std::string", + "id": 42, + "offset": 472, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1846342998 + }, + "m_timeLeft": { + "type": "int", + "id": 43, + "offset": 508, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1315288020 + } + } + }, + "145816221": { + "name": "class CylinderGeomParams*", + "bases": [ + "GeomParams", + "PropertyClass" + ], + "hash": 145816221, + "properties": { + "m_eType": { + "type": "enum ProxyType", + "id": 0, + "offset": 72, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1656534066, + "enum_options": { + "ProxyTypeBox": 0, + "ProxyTypeRay": 1, + "ProxyTypeSphere": 2, + "ProxyTypeCylinder": 3, + "ProxyTypeTube": 4, + "ProxyTypePlane": 5, + "ProxyTypeMesh": 6, + "ProxyTypeInvalid": 7 + } + }, + "m_fRadius": { + "type": "float", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 787972805 + }, + "m_fLength": { + "type": "float", + "id": 2, + "offset": 84, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 558261279 + } + } + }, + "1537542334": { + "name": "class AdvPvPEloBehaviorTemplate*", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 1537542334, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + } + } + }, + "144792033": { + "name": "class SharedPointer", + "bases": [ + "Window", + "PropertyClass" + ], + "hash": 144792033, + "properties": { + "m_sName": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306437263 + }, + "m_Children": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621225959 + }, + "m_Style": { + "type": "unsigned int", + "id": 2, + "offset": 152, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152, + "STRETCH_VERTICALLY": 16777216 + } + }, + "m_Flags": { + "type": "unsigned int", + "id": 3, + "offset": 156, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } + }, + "m_Window": { + "type": "class Rect", + "id": 4, + "offset": 160, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3105139380 + }, + "m_fTargetAlpha": { + "type": "float", + "id": 5, + "offset": 212, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1809129834 + }, + "m_fDisabledAlpha": { + "type": "float", + "id": 6, + "offset": 216, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1389987675 + }, + "m_fAlpha": { + "type": "float", + "id": 7, + "offset": 208, + "flags": 65671, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 482130755 + }, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3623628394 + }, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2102211316 + }, + "m_sScript": { + "type": "std::string", + "id": 10, + "offset": 352, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1846695875 + }, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3389835433 + }, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547159940 + }, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513510520 + }, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3091503757 + }, + "m_pTopLeftMaterial": { + "type": "class SharedPointer", + "id": 16, + "offset": 584, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3248096916 + }, + "m_pCenterMaterial": { + "type": "class SharedPointer", + "id": 17, + "offset": 600, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1519560055 + }, + "m_pBottomRightMaterial": { + "type": "class SharedPointer", + "id": 18, + "offset": 616, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2932444745 + }, + "m_MaximumSize": { + "type": "class Size", + "id": 19, + "offset": 632, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1781954165 + }, + "m_MinimumSize": { + "type": "class Size", + "id": 20, + "offset": 640, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2108593523 + } + } + }, + "1850455351": { + "name": "class EquippedItemInfo*", + "bases": [ + "PropertyClass" + ], + "hash": 1850455351, + "properties": { + "m_itemID": { + "type": "unsigned int", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 780964329 + } + } + }, + "1293773415": { + "name": "std::wstring", + "bases": [], + "hash": 1293773415, + "properties": {} + }, + "1419629436": { + "name": "class ScrollWindowStyle", + "bases": [ + "WindowStyle", + "PropertyClass" + ], + "hash": 1419629436, + "properties": { + "m_pBackMaterial": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1628562023 + }, + "m_pFont": { + "type": "class SharedPointer", + "id": 1, + "offset": 88, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1067686307 + }, + "m_pLargeFont": { + "type": "class SharedPointer", + "id": 2, + "offset": 104, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1523900782 + }, + "m_pSmallFont": { + "type": "class SharedPointer", + "id": 3, + "offset": 120, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2363252956 + }, + "m_Color": { + "type": "class Color", + "id": 4, + "offset": 136, + "flags": 262279, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1753714077 + }, + "m_HighColor": { + "type": "class Color", + "id": 5, + "offset": 140, + "flags": 262279, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2310527421 + }, + "m_SelectColor": { + "type": "class Color", + "id": 6, + "offset": 144, + "flags": 262279, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2792529213 + }, + "m_BorderColor": { + "type": "class Color", + "id": 7, + "offset": 148, + "flags": 262279, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1470576795 + }, + "m_BackColor": { + "type": "class Color", + "id": 8, + "offset": 152, + "flags": 262279, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1070928782 + }, + "m_ScrollBarColor": { + "type": "class Color", + "id": 9, + "offset": 156, + "flags": 262279, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1180747361 + }, + "m_ScrollTabColor": { + "type": "class Color", + "id": 10, + "offset": 160, + "flags": 262279, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1034892323 + }, + "m_nBorderSize": { + "type": "int", + "id": 11, + "offset": 164, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2016376897 + }, + "m_nScrollSize": { + "type": "int", + "id": 12, + "offset": 168, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 632681746 + }, + "m_sHoverSound": { + "type": "std::string", + "id": 13, + "offset": 176, + "flags": 131207, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2662773595 + }, + "m_sSelectSound": { + "type": "std::string", + "id": 14, + "offset": 208, + "flags": 131207, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2596786807 + }, + "m_pVMiddle": { + "type": "class SharedPointer", + "id": 15, + "offset": 248, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1896076876 + }, + "m_pVSliderTop": { + "type": "class SharedPointer", + "id": 16, + "offset": 264, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1590678131 + }, + "m_pVSliderMiddle": { + "type": "class SharedPointer", + "id": 17, + "offset": 280, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1981605647 + }, + "m_pVSliderBottom": { + "type": "class SharedPointer", + "id": 18, + "offset": 296, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1558824373 + }, + "m_pVUpButton": { + "type": "class SharedPointer", + "id": 19, + "offset": 312, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3584564972 + }, + "m_pVDownButton": { + "type": "class SharedPointer", + "id": 20, + "offset": 328, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2411725119 + }, + "m_pHLeftArrow": { + "type": "class SharedPointer", + "id": 21, + "offset": 344, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3168852677 + }, + "m_pHRightArrow": { + "type": "class SharedPointer", + "id": 22, + "offset": 360, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1981350104 + }, + "m_pHMiddle": { + "type": "class SharedPointer", + "id": 23, + "offset": 376, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3142878142 + }, + "m_pHSliderLeft": { + "type": "class SharedPointer", + "id": 24, + "offset": 392, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1553456157 + }, + "m_pHSliderMiddle": { + "type": "class SharedPointer", + "id": 25, + "offset": 408, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2666160641 + }, + "m_pHSliderRight": { + "type": "class SharedPointer", + "id": 26, + "offset": 424, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1592154800 + }, + "m_nScrollButtonDelta": { + "type": "int", + "id": 27, + "offset": 240, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1455137917 + } + } + }, + "1850367368": { + "name": "class SharedPointer", + "bases": [ + "PetTalentBaseTemplate", + "CoreTemplate", + "PropertyClass" + ], + "hash": 1850367368, + "properties": { + "m_behaviors": { + "type": "class BehaviorTemplate*", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1197808594 + }, + "m_talentName": { + "type": "std::string", + "id": 1, + "offset": 96, + "flags": 134217735, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2455147588 + }, + "m_displayName": { + "type": "std::string", + "id": 2, + "offset": 136, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2446900370 + }, + "m_description": { + "type": "std::string", + "id": 3, + "offset": 168, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1649374815 + }, + "m_imageIndex": { + "type": "unsigned int", + "id": 4, + "offset": 200, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1781902856 + }, + "m_imageName": { + "type": "std::string", + "id": 5, + "offset": 208, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2391520543 + }, + "m_rank": { + "type": "unsigned char", + "id": 6, + "offset": 240, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 857403388 + }, + "m_breedsAsTalentName": { + "type": "std::string", + "id": 7, + "offset": 248, + "flags": 268435463, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2143399629, + "enum_options": { + "__BASECLASS": "PetTalentBaseTemplate" + } + }, + "m_bRetired": { + "type": "bool", + "id": 8, + "offset": 280, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 904227684, + "enum_options": { + "__DEFAULT": 0 + } + }, + "m_unsearchable": { + "type": "bool", + "id": 9, + "offset": 281, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1760679968, + "enum_options": { + "__DEFAULT": 0 + } + }, + "m_isBuff": { + "type": "enum DerbyTalentBuffType", + "id": 10, + "offset": 288, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 688625224, + "enum_options": { + "Buff": 0, + "Debuff": 1, + "Neither": 2 + } + }, + "m_fCooldown": { + "type": "float", + "id": 11, + "offset": 292, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1665682594 + }, + "m_derbyEffects": { + "type": "class SharedPointer", + "id": 12, + "offset": 296, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1259488141 + } + } + }, + "569722406": { + "name": "class SharedPointer", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 569722406, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + } + } + }, + "1146643298": { + "name": "class Euler", + "bases": [], + "hash": 1146643298, + "properties": {} + }, + "1850304375": { + "name": "class AvatarItemInfoList", + "bases": [ + "PropertyClass" + ], + "hash": 1850304375, + "properties": { + "m_itemInfoList": { + "type": "class AvatarItemInfoBase*", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 3137169759 + } + } + }, + "1086776960": { + "name": "class AdvPvPEloRecordClient", + "bases": [ + "AdvPvPEloRecord", + "PropertyClass" + ], + "hash": 1086776960, + "properties": { + "m_eloRecordID": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 16777279, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 832082468 + }, + "m_leagueID": { + "type": "unsigned int", + "id": 1, + "offset": 80, + "flags": 33554495, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 692361645 + }, + "m_seasonID": { + "type": "unsigned int", + "id": 2, + "offset": 84, + "flags": 33554495, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 535260643 + }, + "m_startTime": { + "type": "unsigned int", + "id": 3, + "offset": 88, + "flags": 33554495, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1598371274 + }, + "m_ended": { + "type": "bool", + "id": 4, + "offset": 92, + "flags": 33554495, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 795768915 + }, + "m_elo": { + "type": "int", + "id": 5, + "offset": 96, + "flags": 33554495, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 267033754 + }, + "m_rankIndex": { + "type": "int", + "id": 6, + "offset": 100, + "flags": 33554495, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 716259486 + }, + "m_wins": { + "type": "int", + "id": 7, + "offset": 104, + "flags": 33554495, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 219992347 + }, + "m_losses": { + "type": "int", + "id": 8, + "offset": 108, + "flags": 33554495, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 681549075 + }, + "m_draws": { + "type": "int", + "id": 9, + "offset": 112, + "flags": 33554495, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 792242907 + } + } + }, + "569762910": { + "name": "class SharedPointer", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 569762910, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_nLadderContainerID": { + "type": "gid", + "id": 1, + "offset": 112, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 782107042 + } + } + }, + "1048473177": { + "name": "class SharedPointer", + "bases": [ + "ActorDialogEntry", + "PropertyClass" + ], + "hash": 1048473177, + "properties": { + "m_requirements": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 263, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3043523229 + }, + "m_dialog": { + "type": "std::string", + "id": 1, + "offset": 88, + "flags": 8388639, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1858395851 + }, + "m_picture": { + "type": "std::string", + "id": 2, + "offset": 120, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3128322903 + }, + "m_soundFile": { + "type": "std::string", + "id": 3, + "offset": 152, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2276870852 + }, + "m_action": { + "type": "std::string", + "id": 4, + "offset": 184, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1734553689 + }, + "m_dialogEvent": { + "type": "std::string", + "id": 5, + "offset": 216, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2707957549 + }, + "m_actorTemplateID": { + "type": "unsigned int", + "id": 6, + "offset": 248, + "flags": 33554463, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2134265679 + }, + "m_cameraName": { + "type": "std::string", + "id": 7, + "offset": 256, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3252786917 + }, + "m_interpolationDuration": { + "type": "float", + "id": 8, + "offset": 312, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1458058437, + "enum_options": { + "__DEFAULT": "1.0" + } + }, + "m_cameraOffsetX": { + "type": "float", + "id": 9, + "offset": 288, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1515912895 + }, + "m_cameraOffsetY": { + "type": "float", + "id": 10, + "offset": 292, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1515912896 + }, + "m_cameraOffsetZ": { + "type": "float", + "id": 11, + "offset": 296, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1515912897 + }, + "m_pitch": { + "type": "float", + "id": 12, + "offset": 304, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 896371695 + }, + "m_yaw": { + "type": "float", + "id": 13, + "offset": 300, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 357256328 + }, + "m_roll": { + "type": "float", + "id": 14, + "offset": 308, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 310020272 + }, + "m_cameraShakeType": { + "type": "std::string", + "id": 15, + "offset": 320, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1754128882, + "enum_options": { + "": 0, + "Constant": "Constant", + "Quake": "Quake", + "Thud": "Thud", + "End": "End", + "__DEFAULT": 0 + } + }, + "m_cameraShakeDuration": { + "type": "float", + "id": 16, + "offset": 352, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 316581010, + "enum_options": { + "__DEFAULT": "0.0" + } + }, + "m_cameraShakeAmplitude": { + "type": "float", + "id": 17, + "offset": 356, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2179718321, + "enum_options": { + "__DEFAULT": "0.0" + } + }, + "m_bypassCameraOnReview": { + "type": "bool", + "id": 18, + "offset": 360, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1412905725, + "enum_options": { + "__DEFAULT": 1 + } + }, + "m_cameraZoneName": { + "type": "std::string", + "id": 19, + "offset": 368, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3131581121 + }, + "m_duration": { + "type": "float", + "id": 20, + "offset": 400, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 920323453 + }, + "m_delay": { + "type": "float", + "id": 21, + "offset": 404, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 881988134 + }, + "m_cameraHidePlayers": { + "type": "int", + "id": 22, + "offset": 408, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 28533149 + }, + "m_walkAwayNpcTemplateID": { + "type": "gid", + "id": 23, + "offset": 416, + "flags": 33554719, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 942697507 + }, + "m_walkAwayExitDirectionInDegrees": { + "type": "float", + "id": 24, + "offset": 424, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 396419785 + }, + "m_walkAwayFadeTime": { + "type": "float", + "id": 25, + "offset": 428, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 822405687 + }, + "m_walkAwayUseCurrentFacing": { + "type": "bool", + "id": 26, + "offset": 432, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1464855436 + }, + "m_standInPlayerTag": { + "type": "std::string", + "id": 27, + "offset": 440, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1590121141 + }, + "m_fadeOutCamera": { + "type": "bool", + "id": 28, + "offset": 472, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1766121252 + }, + "m_snapCameraToPlayerAtExit": { + "type": "bool", + "id": 29, + "offset": 473, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1323369645 + }, + "m_secondaryCameraName": { + "type": "std::string", + "id": 30, + "offset": 480, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1670705581 + }, + "m_secondaryInterpolationDuration": { + "type": "float", + "id": 31, + "offset": 512, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1873822349 + }, + "m_npcStandInList": { + "type": "std::string", + "id": 32, + "offset": 520, + "flags": 287, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2076308937 + }, + "m_dialogAnimationList": { + "type": "std::string", + "id": 33, + "offset": 536, + "flags": 287, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2444806919 + }, + "m_dialogTurningList": { + "type": "std::string", + "id": 34, + "offset": 552, + "flags": 287, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2782869422 + }, + "m_npcYawOffsetInDegrees": { + "type": "float", + "id": 35, + "offset": 568, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1395075270 + }, + "m_allowPlayerToMove": { + "type": "bool", + "id": 36, + "offset": 572, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 225101337 + }, + "m_soundEffectFile": { + "type": "std::string", + "id": 37, + "offset": 576, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3235157265 + }, + "m_musicFile": { + "type": "std::string", + "id": 38, + "offset": 608, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2963686620 + }, + "m_nonStackableMusic": { + "type": "bool", + "id": 39, + "offset": 640, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1675595625 + }, + "m_nonRepeatableMusic": { + "type": "bool", + "id": 40, + "offset": 641, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2138315572 + }, + "m_playMusicAtSFXVolume": { + "type": "bool", + "id": 41, + "offset": 642, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2130871816 + }, + "m_soundEffectDelay": { + "type": "float", + "id": 42, + "offset": 644, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1586382460 + }, + "m_musicDelay": { + "type": "float", + "id": 43, + "offset": 648, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1217785767 + }, + "m_musicFadeTime": { + "type": "float", + "id": 44, + "offset": 652, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 502925015 + }, + "m_dontReleaseCameraAtExit": { + "type": "bool", + "id": 45, + "offset": 474, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1107508961 + }, + "m_disableBackButton": { + "type": "bool", + "id": 46, + "offset": 656, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 122355444 + }, + "m_enableExitButton": { + "type": "bool", + "id": 47, + "offset": 657, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1824693936 + }, + "m_cameraFadeType": { + "type": "std::string", + "id": 48, + "offset": 664, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2021935382, + "enum_options": { + "": 0, + "In Out Black": "In Out Black", + "In Out White": "In Out White", + "In Black": "In Black", + "Out Black": "Out Black", + "In White": "In White", + "Out White": "Out White", + "__DEFAULT": 0 + } + }, + "m_cameraFadeTime": { + "type": "float", + "id": 49, + "offset": 696, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 614419391, + "enum_options": { + "__DEFAULT": "0.5" + } + }, + "m_idleAnimation": { + "type": "std::string", + "id": 50, + "offset": 704, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2900487193 + }, + "m_spamTime": { + "type": "float", + "id": 51, + "offset": 736, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1727215063, + "enum_options": { + "__DEFAULT": "1.0" + } + }, + "m_playSoundIfSpamming": { + "type": "bool", + "id": 52, + "offset": 740, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 690006749, + "enum_options": { + "__DEFAULT": 1 + } + }, + "m_playMusicIfSpamming": { + "type": "bool", + "id": 53, + "offset": 741, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 538564341, + "enum_options": { + "__DEFAULT": 1 + } + }, + "m_stopMusicFadeTime": { + "type": "float", + "id": 54, + "offset": 744, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 696390845, + "enum_options": { + "__DEFAULT": "0.0" + } + }, + "m_restartMusicFadeTime": { + "type": "float", + "id": 55, + "offset": 748, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 709379292, + "enum_options": { + "__DEFAULT": "0.0" + } + }, + "m_meetsRequirements": { + "type": "bool", + "id": 56, + "offset": 752, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 296443061 + }, + "m_secondaryCameraInitalDelay": { + "type": "float", + "id": 57, + "offset": 516, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1812842232 + }, + "m_displayButtonsOnTimedDialog": { + "type": "bool", + "id": 58, + "offset": 753, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 569741400 + }, + "m_personaName": { + "type": "std::string", + "id": 59, + "offset": 776, + "flags": 268435487, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2514452244, + "enum_options": { + "__BASECLASS": "Persona" + } + }, + "m_nameOverride": { + "type": "std::string", + "id": 60, + "offset": 840, + "flags": 8388639, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2854590748 + }, + "m_nameSTKey": { + "type": "std::string", + "id": 61, + "offset": 808, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3618744844 + }, + "m_guiDisplay": { + "type": "std::string", + "id": 62, + "offset": 872, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3134563510 + }, + "m_maxTimeSeconds": { + "type": "int", + "id": 63, + "offset": 904, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1762503230 + }, + "m_invisible": { + "type": "bool", + "id": 64, + "offset": 908, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2011940728 + } + } + }, + "1420749714": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1420749714, + "properties": { + "m_browserWidth": { + "type": "int", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1384030174 + }, + "m_browserHeight": { + "type": "int", + "id": 1, + "offset": 76, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2128883223 + }, + "m_windowWidth": { + "type": "int", + "id": 2, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1557707410 + }, + "m_windowHeight": { + "type": "int", + "id": 3, + "offset": 84, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1417781067 + }, + "m_windowXoff": { + "type": "int", + "id": 4, + "offset": 88, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1999589413 + }, + "m_windowYoff": { + "type": "int", + "id": 5, + "offset": 92, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1999625350 + } + } + }, + "173390278": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 173390278, + "properties": { + "m_madlibToken": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3058682373 + } + } + }, + "1026663843": { + "name": "class SharedPointer", + "bases": [ + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 1026663843, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + } + } + }, + "1420078581": { + "name": "class SharedPointer", + "bases": [ + "ControlSprite", + "Window", + "PropertyClass" + ], + "hash": 1420078581, + "properties": { + "m_sName": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306437263 + }, + "m_Children": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621225959 + }, + "m_Style": { + "type": "unsigned int", + "id": 2, + "offset": 152, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "SCALE_CHILDREN": 2, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "FOCUS_LOCKED": 64, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152 + } + }, + "m_Flags": { + "type": "unsigned int", + "id": 3, + "offset": 156, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648, + "ONE_SHOT": 8388608, + "FLIPPED_HORIZONTAL": 16777216, + "FLIPPED_VERTICAL": 33554432 + } + }, + "m_Window": { + "type": "class Rect", + "id": 4, + "offset": 160, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3105139380 + }, + "m_fTargetAlpha": { + "type": "float", + "id": 5, + "offset": 212, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1809129834 + }, + "m_fDisabledAlpha": { + "type": "float", + "id": 6, + "offset": 216, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1389987675 + }, + "m_fAlpha": { + "type": "float", + "id": 7, + "offset": 208, + "flags": 65671, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 482130755 + }, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3623628394 + }, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2102211316 + }, + "m_sScript": { + "type": "std::string", + "id": 10, + "offset": 352, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1846695875 + }, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3389835433 + }, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547159940 + }, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513510520 + }, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3091503757 + }, + "m_pMaterial": { + "type": "class SharedPointer", + "id": 16, + "offset": 592, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3479277078 + }, + "m_fRotation": { + "type": "float", + "id": 17, + "offset": 608, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1175400173 + }, + "m_Color": { + "type": "class Color", + "id": 18, + "offset": 584, + "flags": 262279, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1753714077 + }, + "m_textColor": { + "type": "class Color", + "id": 19, + "offset": 612, + "flags": 262279, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2528109250 + }, + "m_textComponent": { + "type": "class TextComponent", + "id": 20, + "offset": 616, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3491704390 + } + } + }, + "160866304": { + "name": "class ClientPetCameraActorCinematicAction*", + "bases": [ + "PetCameraActorCinematicAction", + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 160866304, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + } + } + }, + "1015235151": { + "name": "class std::list >", + "bases": [], + "hash": 1015235151, + "properties": {} + }, + "1419905653": { + "name": "class SG_GameLevelData*", + "bases": [ + "PropertyClass" + ], + "hash": 1419905653, + "properties": { + "m_filePath": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3116244552 + }, + "m_shotLimit": { + "type": "int", + "id": 1, + "offset": 136, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1999036567 + }, + "m_levelIndex": { + "type": "unsigned int", + "id": 2, + "offset": 140, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 708309693 + }, + "m_perfectScore": { + "type": "int", + "id": 3, + "offset": 144, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 147156703 + }, + "m_flyOverCamera": { + "type": "std::string", + "id": 4, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3580817515 + } + } + }, + "152771696": { + "name": "class SharedPointer", + "bases": [ + "HideShadowCreatureCinematicAction", + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 152771696, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + } + } + }, + "1851893072": { + "name": "class BuffDebuffEventCinematicAction", + "bases": [ + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 1851893072, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + } + } + }, + "570152106": { + "name": "class FaceTargetTeamActorCinematicAction*", + "bases": [ + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 570152106, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + }, + "m_bCaster": { + "type": "bool", + "id": 2, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1390351511 + } + } + }, + "1006261753": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1006261753, + "properties": { + "m_effectName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2029161513 + }, + "m_effectCategory": { + "type": "std::string", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1852673222 + }, + "m_sortOrder": { + "type": "int", + "id": 2, + "offset": 148, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1411218206 + }, + "m_duration": { + "type": "double", + "id": 3, + "offset": 192, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2727932435 + }, + "m_stackingCategories": { + "type": "std::string", + "id": 4, + "offset": 160, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1774497525 + }, + "m_isPersistent": { + "type": "bool", + "id": 5, + "offset": 153, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 923861920 + }, + "m_bIsOnPet": { + "type": "bool", + "id": 6, + "offset": 154, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 522593303 + }, + "m_isPublic": { + "type": "bool", + "id": 7, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1728439822 + }, + "m_visualEffectAddName": { + "type": "std::string", + "id": 8, + "offset": 200, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3382086694 + }, + "m_visualEffectRemoveName": { + "type": "std::string", + "id": 9, + "offset": 232, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1541697323 + }, + "m_onAddFunctorName": { + "type": "std::string", + "id": 10, + "offset": 280, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1561843107 + }, + "m_onRemoveFunctorName": { + "type": "std::string", + "id": 11, + "offset": 312, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2559017864 + }, + "m_stackingRule": { + "type": "enum STACKING_RULE", + "id": 12, + "offset": 144, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 431568889, + "enum_options": { + "STACKING_ALLOWED": 0, + "STACKING_NOSTACK": 1, + "STACKING_REPLACE": 2 + } + } + } + }, + "147992077": { + "name": "class ChangePermissionsList*", + "bases": [ + "PropertyClass" + ], + "hash": 147992077, + "properties": { + "m_permissionFlag": { + "type": "unsigned int", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 558326096 + }, + "m_addList": { + "type": "gid", + "id": 1, + "offset": 80, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1389998621 + }, + "m_removeList": { + "type": "gid", + "id": 2, + "offset": 96, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 42923202 + } + } + }, + "1002414152": { + "name": "class ClientAttachEffectToTurnIndicatorCinematicAction", + "bases": [ + "AttachEffectToTurnIndicatorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 1002414152, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_minDuration": { + "type": "float", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1733171553 + }, + "m_assetName": { + "type": "std::string", + "id": 2, + "offset": 88, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513131580 + } + } + }, + "147169475": { + "name": "class RecipeLootInfo*", + "bases": [ + "LootInfo", + "LootInfoBase", + "PropertyClass" + ], + "hash": 147169475, + "properties": { + "m_lootType": { + "type": "enum LootInfo::LOOT_TYPE", + "id": 0, + "offset": 72, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1591891442, + "enum_options": { + "LOOT_TYPE_NONE": 0, + "LOOT_TYPE_GOLD": 1, + "LOOT_TYPE_MANA": 2, + "LOOT_TYPE_ITEM": 3, + "LOOT_TYPE_TREASURE_CARD": 4, + "LOOT_TYPE_MAGIC_XP": 5, + "LOOT_TYPE_ADD_SPELL": 6, + "LOOT_TYPE_MAX_HEALTH": 7, + "LOOT_TYPE_MAX_GOLD": 8, + "LOOT_TYPE_MAX_MANA": 9, + "LOOT_TYPE_MAX_POTION": 10, + "LOOT_TYPE_TRAINING_POINTS": 11, + "LOOT_TYPE_RECIPE": 12, + "LOOT_TYPE_CRAFTING_SLOT": 13, + "LOOT_TYPE_REAGENT": 14, + "LOOT_TYPE_PETSNACK": 15, + "LOOT_TYPE_GARDENING_XP": 16, + "LOOT_TYPE_PET_XP": 17, + "LOOT_TYPE_TREASURE_TABLE": 18, + "LOOT_TYPE_ARENA_POINTS": 19, + "LOOT_TYPE_ARENA_BONUS_POINTS": 20, + "LOOT_TYPE_GROUP": 21, + "LOOT_TYPE_FISHING_XP": 22, + "LOOT_TYPE_EVENT_CURRENCY_1": 24, + "LOOT_TYPE_EVENT_CURRENCY_2": 25, + "LOOT_TYPE_PVP_CURRENCY": 26, + "LOOT_TYPE_PVP_CURRENCY_BONUS": 27, + "LOOT_TYPE_PVP_TOURNEY_CURRENCY": 28, + "LOOT_TYPE_PVP_TOURNEY_CURRENCY_BONUS": 29, + "LOOT_TYPE_FURNITURE_ESSENCE": 30 + } + }, + "m_recipeName": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 268435487, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3311832788, + "enum_options": { + "__BASECLASS": "RecipeTemplate" + } + } + } + }, + "1001657760": { + "name": "class AdvancedPetsConfig*", + "bases": [ + "PropertyClass" + ], + "hash": 1001657760, + "properties": { + "m_energyTick": { + "type": "int", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1236715535 + }, + "m_minPetLevelForJewels": { + "type": "unsigned char", + "id": 1, + "offset": 76, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1631450758 + }, + "m_petJewelTalentIcon": { + "type": "std::string", + "id": 2, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3286601420 + } + } + }, + "1420624436": { + "name": "class SharedPointer", + "bases": [ + "MoveController::MoveCommand", + "PropertyClass" + ], + "hash": 1420624436, + "properties": { + "m_vTarget": { + "type": "class Vector3D", + "id": 0, + "offset": 100, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3770499167 + }, + "m_fTime": { + "type": "float", + "id": 1, + "offset": 124, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 883746156 + } + } + }, + "146680564": { + "name": "class std::list >", + "bases": [], + "hash": 146680564, + "properties": {} + }, + "1855825625": { + "name": "class TournamentUpdate", + "bases": [ + "PropertyClass" + ], + "hash": 1855825625, + "properties": {} + }, + "574762755": { + "name": "class PolymorphCinematicAction", + "bases": [ + "CinematicAction", + "PropertyClass" + ], + "hash": 574762755, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + } + } + }, + "1001234342": { + "name": "class Group", + "bases": [ + "PropertyClass" + ], + "hash": 1001234342, + "properties": { + "m_GroupID": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 586506386 + }, + "m_ChannelID": { + "type": "gid", + "id": 1, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1585983742 + }, + "m_MemberList": { + "type": "class SharedPointer", + "id": 2, + "offset": 88, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2864705424 + }, + "m_nMaxSize": { + "type": "unsigned int", + "id": 3, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1265869948 + }, + "m_fromAdventureParty": { + "type": "bool", + "id": 4, + "offset": 128, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 940992997 + }, + "m_leaderGID": { + "type": "gid", + "id": 5, + "offset": 136, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 700505145 + }, + "m_questGID": { + "type": "gid", + "id": 6, + "offset": 144, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 331631550 + }, + "m_goalGID": { + "type": "gid", + "id": 7, + "offset": 152, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 976914927 + } + } + }, + "146053241": { + "name": "class BrightnessControlWindow*", + "bases": [ + "Window", + "PropertyClass" + ], + "hash": 146053241, + "properties": { + "m_sName": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306437263 + }, + "m_Children": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621225959 + }, + "m_Style": { + "type": "unsigned int", + "id": 2, + "offset": 152, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "SCALE_CHILDREN": 2, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "FOCUS_LOCKED": 64, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152 + } + }, + "m_Flags": { + "type": "unsigned int", + "id": 3, + "offset": 156, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } + }, + "m_Window": { + "type": "class Rect", + "id": 4, + "offset": 160, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3105139380 + }, + "m_fTargetAlpha": { + "type": "float", + "id": 5, + "offset": 212, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1809129834 + }, + "m_fDisabledAlpha": { + "type": "float", + "id": 6, + "offset": 216, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1389987675 + }, + "m_fAlpha": { + "type": "float", + "id": 7, + "offset": 208, + "flags": 65671, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 482130755 + }, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3623628394 + }, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2102211316 + }, + "m_sScript": { + "type": "std::string", + "id": 10, + "offset": 352, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1846695875 + }, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3389835433 + }, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547159940 + }, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513510520 + }, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3091503757 + } + } + }, + "1854828768": { + "name": "class SharedPointer", + "bases": [ + "CastleToursFavoritesBehaviorBase", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1854828768, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_castleToursFavoritesData": { + "type": "std::string", + "id": 1, + "offset": 128, + "flags": 575, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1708015073 + } + } + }, + "572593628": { + "name": "class BattlegroundPOIData", + "bases": [ + "PropertyClass" + ], + "hash": 572593628, + "properties": { + "m_poiType": { + "type": "unsigned int", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2082807927 + }, + "m_icon": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1717182340 + }, + "m_objectID": { + "type": "gid", + "id": 2, + "offset": 112, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 257032380 + }, + "m_position": { + "type": "class Vector3D", + "id": 3, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3697900983 + }, + "m_yaw": { + "type": "float", + "id": 4, + "offset": 132, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 357256328 + } + } + }, + "1853899689": { + "name": "enum ZoneData::Type", + "bases": [], + "hash": 1853899689, + "properties": {} + }, + "572550549": { + "name": "class RemoveInterceptCinematicAction*", + "bases": [ + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 572550549, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + } + } + }, + "1421022817": { + "name": "class RemoveTeamFromMatchUpdate", + "bases": [ + "TournamentUpdate", + "PropertyClass" + ], + "hash": 1421022817, + "properties": { + "m_teamID": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 982102220 + }, + "m_matchID": { + "type": "gid", + "id": 1, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1757621298 + } + } + }, + "1853871743": { + "name": "class SharedPointer", + "bases": [ + "CantripsInvisibilityEffectInfo", + "GameEffectInfo", + "PropertyClass" + ], + "hash": 1853871743, + "properties": { + "m_effectName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2029161513 + } + } + }, + "571302417": { + "name": "class CraftingSlot*", + "bases": [ + "CoreObject", + "PropertyClass" + ], + "hash": 571302417, + "properties": { + "m_inactiveBehaviors": { + "type": "class SharedPointer", + "id": 0, + "offset": 224, + "flags": 31, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1850812559 + }, + "m_globalID.m_full": { + "type": "unsigned __int64", + "id": 1, + "offset": 72, + "flags": 16777247, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2312465444 + }, + "m_permID": { + "type": "unsigned __int64", + "id": 2, + "offset": 80, + "flags": 16777247, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1298909658 + }, + "m_location": { + "type": "class Vector3D", + "id": 3, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2239683611 + }, + "m_orientation": { + "type": "class Vector3D", + "id": 4, + "offset": 180, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2344058766 + }, + "m_fScale": { + "type": "float", + "id": 5, + "offset": 196, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 503137701 + }, + "m_templateID.m_full": { + "type": "unsigned __int64", + "id": 6, + "offset": 96, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 633907631 + }, + "m_debugName": { + "type": "std::string", + "id": 7, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3553984419 + }, + "m_displayKey": { + "type": "std::string", + "id": 8, + "offset": 136, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3023276954 + }, + "m_zoneTagID": { + "type": "unsigned int", + "id": 9, + "offset": 344, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 965291410 + }, + "m_speedMultiplier": { + "type": "short", + "id": 10, + "offset": 192, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 123130076 + }, + "m_nMobileID": { + "type": "unsigned short", + "id": 11, + "offset": 194, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1054318939 + }, + "m_recipeName": { + "type": "std::string", + "id": 12, + "offset": 392, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3311832788 + }, + "m_timeFinished": { + "type": "int", + "id": 13, + "offset": 388, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2127619571 + } + } + }, + "1002328733": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1002328733, + "properties": { + "m_displayedTips": { + "type": "gid", + "id": 0, + "offset": 112, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": true, + "pointer": false, + "hash": 1546509239 + }, + "m_finishedTips": { + "type": "gid", + "id": 1, + "offset": 128, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": true, + "pointer": false, + "hash": 1286351938 + }, + "m_chatStatsByState": { + "type": "struct CharacterChatStatsByState", + "id": 2, + "offset": 144, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": true, + "pointer": false, + "hash": 3487355966 + }, + "m_chatStatsByText": { + "type": "struct CharacterChatStatsByText", + "id": 3, + "offset": 176, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": true, + "pointer": false, + "hash": 3265910788 + }, + "m_lockList": { + "type": "struct LockData", + "id": 4, + "offset": 208, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": true, + "pointer": false, + "hash": 1946956503 + }, + "m_friendList": { + "type": "struct FriendData", + "id": 5, + "offset": 288, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": true, + "pointer": false, + "hash": 2895296598 + }, + "m_activeQuestId": { + "type": "gid", + "id": 6, + "offset": 304, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": true, + "pointer": false, + "hash": 229595059 + }, + "m_activeGoalId": { + "type": "unsigned int", + "id": 7, + "offset": 336, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": true, + "pointer": false, + "hash": 1967307577 + }, + "m_activeGoalSetByPlayer": { + "type": "bool", + "id": 8, + "offset": 340, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": true, + "pointer": false, + "hash": 1365712422 + }, + "m_crownShopSettings": { + "type": "class SharedPointer", + "id": 9, + "offset": 240, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": true, + "pointer": true, + "hash": 2058124240 + }, + "m_loginHistory": { + "type": "class LoginHistoryEntry", + "id": 10, + "offset": 360, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": true, + "pointer": false, + "hash": 1668671153 + } + } + }, + "147169379": { + "name": "class RecipeLootInfo", + "bases": [ + "LootInfo", + "LootInfoBase", + "PropertyClass" + ], + "hash": 147169379, + "properties": { + "m_lootType": { + "type": "enum LootInfo::LOOT_TYPE", + "id": 0, + "offset": 72, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1591891442, + "enum_options": { + "LOOT_TYPE_NONE": 0, + "LOOT_TYPE_GOLD": 1, + "LOOT_TYPE_MANA": 2, + "LOOT_TYPE_ITEM": 3, + "LOOT_TYPE_TREASURE_CARD": 4, + "LOOT_TYPE_MAGIC_XP": 5, + "LOOT_TYPE_ADD_SPELL": 6, + "LOOT_TYPE_MAX_HEALTH": 7, + "LOOT_TYPE_MAX_GOLD": 8, + "LOOT_TYPE_MAX_MANA": 9, + "LOOT_TYPE_MAX_POTION": 10, + "LOOT_TYPE_TRAINING_POINTS": 11, + "LOOT_TYPE_RECIPE": 12, + "LOOT_TYPE_CRAFTING_SLOT": 13, + "LOOT_TYPE_REAGENT": 14, + "LOOT_TYPE_PETSNACK": 15, + "LOOT_TYPE_GARDENING_XP": 16, + "LOOT_TYPE_PET_XP": 17, + "LOOT_TYPE_TREASURE_TABLE": 18, + "LOOT_TYPE_ARENA_POINTS": 19, + "LOOT_TYPE_ARENA_BONUS_POINTS": 20, + "LOOT_TYPE_GROUP": 21, + "LOOT_TYPE_FISHING_XP": 22, + "LOOT_TYPE_EVENT_CURRENCY_1": 24, + "LOOT_TYPE_EVENT_CURRENCY_2": 25, + "LOOT_TYPE_PVP_CURRENCY": 26, + "LOOT_TYPE_PVP_CURRENCY_BONUS": 27, + "LOOT_TYPE_PVP_TOURNEY_CURRENCY": 28, + "LOOT_TYPE_PVP_TOURNEY_CURRENCY_BONUS": 29, + "LOOT_TYPE_FURNITURE_ESSENCE": 30 + } + }, + "m_recipeName": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 268435487, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3311832788, + "enum_options": { + "__BASECLASS": "RecipeTemplate" + } + } + } + }, + "1002250312": { + "name": "class ClientAttachEffectToTurnIndicatorCinematicAction*", + "bases": [ + "AttachEffectToTurnIndicatorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 1002250312, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_minDuration": { + "type": "float", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1733171553 + }, + "m_assetName": { + "type": "std::string", + "id": 2, + "offset": 88, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513131580 + } + } + }, + "1421343378": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1421343378, + "properties": {} + }, + "1854764979": { + "name": "class SharedPointer", + "bases": [ + "SpellTemplate", + "CoreTemplate", + "PropertyClass" + ], + "hash": 1854764979, + "properties": { + "m_behaviors": { + "type": "class BehaviorTemplate*", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1197808594 + }, + "m_name": { + "type": "std::string", + "id": 1, + "offset": 96, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1717359772 + }, + "m_description": { + "type": "std::string", + "id": 2, + "offset": 168, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1649374815 + }, + "m_advancedDescription": { + "type": "std::string", + "id": 3, + "offset": 200, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3465713013 + }, + "m_displayName": { + "type": "std::string", + "id": 4, + "offset": 136, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2446900370 + }, + "m_spellBase": { + "type": "std::string", + "id": 5, + "offset": 248, + "flags": 268435463, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2688054198, + "enum_options": { + "__BASECLASS": "CinematicTemplate" + } + }, + "m_effects": { + "type": "class SharedPointer", + "id": 6, + "offset": 280, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 370726379 + }, + "m_sMagicSchoolName": { + "type": "std::string", + "id": 7, + "offset": 312, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2035693400 + }, + "m_sTypeName": { + "type": "std::string", + "id": 8, + "offset": 352, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3580785905 + }, + "m_trainingCost": { + "type": "int", + "id": 9, + "offset": 384, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 982588239 + }, + "m_accuracy": { + "type": "int", + "id": 10, + "offset": 388, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1636315493 + }, + "m_baseCost": { + "type": "int", + "id": 11, + "offset": 232, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1475151502 + }, + "m_creditsCost": { + "type": "int", + "id": 12, + "offset": 236, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 715313825 + }, + "m_pvpCurrencyCost": { + "type": "int", + "id": 13, + "offset": 240, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 645595444 + }, + "m_pvpTourneyCurrencyCost": { + "type": "int", + "id": 14, + "offset": 244, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 517874954 + }, + "m_boosterPackIcon": { + "type": "std::string", + "id": 15, + "offset": 496, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3428653697 + }, + "m_validTargetSpells": { + "type": "unsigned int", + "id": 16, + "offset": 392, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2355782967 + }, + "m_PvP": { + "type": "bool", + "id": 17, + "offset": 408, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 269492361 + }, + "m_PvE": { + "type": "bool", + "id": 18, + "offset": 409, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 269492350 + }, + "m_noPvPEnchant": { + "type": "bool", + "id": 19, + "offset": 410, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 661581703 + }, + "m_noPvEEnchant": { + "type": "bool", + "id": 20, + "offset": 411, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 10144220 + }, + "m_battlegroundsOnly": { + "type": "bool", + "id": 21, + "offset": 412, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1244782419 + }, + "m_Treasure": { + "type": "bool", + "id": 22, + "offset": 413, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1749096414 + }, + "m_noDiscard": { + "type": "bool", + "id": 23, + "offset": 414, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 565749226 + }, + "m_leavesPlayWhenCast": { + "type": "bool", + "id": 24, + "offset": 532, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 698216294 + }, + "m_imageIndex": { + "type": "int", + "id": 25, + "offset": 416, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1570500405 + }, + "m_imageName": { + "type": "std::string", + "id": 26, + "offset": 424, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2391520543 + }, + "m_cloaked": { + "type": "bool", + "id": 27, + "offset": 489, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 7349510 + }, + "m_casterInvisible": { + "type": "bool", + "id": 28, + "offset": 490, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 310214650 + }, + "m_adjectives": { + "type": "std::string", + "id": 29, + "offset": 576, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2967855037 + }, + "m_spellSourceType": { + "type": "enum SpellTemplate::kSpellSourceType", + "id": 30, + "offset": 528, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 156272727, + "enum_options": { + "kCaster": 0, + "kPet": 1, + "kShadowCreature": 2, + "kWeapon": 3, + "kEquipment": 4 + } + }, + "m_cloakedName": { + "type": "std::string", + "id": 31, + "offset": 536, + "flags": 268435463, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2846679215, + "enum_options": { + "__BASECLASS": "SpellTemplate" + } + }, + "m_purchaseRequirements": { + "type": "class RequirementList*", + "id": 32, + "offset": 608, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3174641793 + }, + "m_displayRequirements": { + "type": "class RequirementList*", + "id": 33, + "offset": 840, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3646782876 + }, + "m_descriptionTrainer": { + "type": "std::string", + "id": 34, + "offset": 616, + "flags": 8388871, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1756093908 + }, + "m_descriptionCombatHUD": { + "type": "std::string", + "id": 35, + "offset": 648, + "flags": 8388871, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1631478006 + }, + "m_displayIndex": { + "type": "int", + "id": 36, + "offset": 680, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1250551048 + }, + "m_hiddenFromEffectsWindow": { + "type": "bool", + "id": 37, + "offset": 684, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1832736331 + }, + "m_ignoreCharms": { + "type": "bool", + "id": 38, + "offset": 685, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1840075893 + }, + "m_alwaysFizzle": { + "type": "bool", + "id": 39, + "offset": 686, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2030988856 + }, + "m_spellCategory": { + "type": "std::string", + "id": 40, + "offset": 688, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2472376729 + }, + "m_showPolymorphedName": { + "type": "bool", + "id": 41, + "offset": 720, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2097929096 + }, + "m_skipTruncation": { + "type": "bool", + "id": 42, + "offset": 721, + "flags": 263, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1838335249 + }, + "m_maxCopies": { + "type": "unsigned int", + "id": 43, + "offset": 724, + "flags": 263, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 403022326 + }, + "m_levelRestriction": { + "type": "int", + "id": 44, + "offset": 728, + "flags": 263, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 176502472 + }, + "m_delayEnchantment": { + "type": "bool", + "id": 45, + "offset": 732, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 191336919 + }, + "m_delayEnchantmentOrder": { + "type": "enum SpellEffect::kDelayOrder", + "id": 46, + "offset": 736, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2526055263, + "enum_options": { + "SpellEffect::kAnyOrder": 0, + "SpellEffect::kFirst": 1, + "SpellEffect::kSecond": 2 + } + }, + "m_previousSpellName": { + "type": "std::string", + "id": 47, + "offset": 744, + "flags": 268435463, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2903322585, + "enum_options": { + "__BASECLASS": "SpellTemplate" + } + }, + "m_cardFront": { + "type": "std::string", + "id": 48, + "offset": 456, + "flags": 131359, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3557598526 + }, + "m_useGloss": { + "type": "bool", + "id": 49, + "offset": 488, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 668817544 + }, + "m_ignoreDispel": { + "type": "bool", + "id": 50, + "offset": 776, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1881041624 + }, + "m_backRowFriendly": { + "type": "bool", + "id": 51, + "offset": 777, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 501584377 + }, + "m_spellRank": { + "type": "class SharedPointer", + "id": 52, + "offset": 784, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3152361374 + }, + "m_secondarySchoolName": { + "type": "std::string", + "id": 53, + "offset": 800, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1803268236 + }, + "m_spellFusion": { + "type": "unsigned int", + "id": 54, + "offset": 836, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1658928321 + }, + "m_requiredSchoolName": { + "type": "std::string", + "id": 55, + "offset": 848, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3576058981 + }, + "m_retired": { + "type": "bool", + "id": 56, + "offset": 880, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1931776834 + }, + "m_shardCost": { + "type": "int", + "id": 57, + "offset": 884, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1047182405 + }, + "m_requirements": { + "type": "class RequirementList*", + "id": 58, + "offset": 888, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2840985510 + }, + "m_nextTierSpells": { + "type": "std::string", + "id": 59, + "offset": 896, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1762416321 + } + } + }, + "147991309": { + "name": "class ChangePermissionsList", + "bases": [ + "PropertyClass" + ], + "hash": 147991309, + "properties": { + "m_permissionFlag": { + "type": "unsigned int", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 558326096 + }, + "m_addList": { + "type": "gid", + "id": 1, + "offset": 80, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1389998621 + }, + "m_removeList": { + "type": "gid", + "id": 2, + "offset": 96, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 42923202 + } + } + }, + "573542747": { + "name": "class SharedPointer", + "bases": [ + "WinAnimScale", + "WindowAnimation", + "PropertyClass" + ], + "hash": 573542747, + "properties": { + "m_bUseDeepCopy": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 433380635 + }, + "m_scale": { + "type": "float", + "id": 1, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 899693439 + }, + "m_fTimeTotal": { + "type": "float", + "id": 2, + "offset": 96, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 661225456 + }, + "m_fTimeRemaining": { + "type": "float", + "id": 3, + "offset": 100, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1591443014 + } + } + }, + "1002373704": { + "name": "class PetTalentTemplate*", + "bases": [ + "PetTalentBaseTemplate", + "CoreTemplate", + "PropertyClass" + ], + "hash": 1002373704, + "properties": { + "m_behaviors": { + "type": "class BehaviorTemplate*", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1197808594 + }, + "m_talentName": { + "type": "std::string", + "id": 1, + "offset": 96, + "flags": 134217735, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2455147588 + }, + "m_displayName": { + "type": "std::string", + "id": 2, + "offset": 136, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2446900370 + }, + "m_description": { + "type": "std::string", + "id": 3, + "offset": 168, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1649374815 + }, + "m_imageIndex": { + "type": "unsigned int", + "id": 4, + "offset": 200, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1781902856 + }, + "m_imageName": { + "type": "std::string", + "id": 5, + "offset": 208, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2391520543 + }, + "m_rank": { + "type": "unsigned char", + "id": 6, + "offset": 240, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 857403388 + }, + "m_breedsAsTalentName": { + "type": "std::string", + "id": 7, + "offset": 248, + "flags": 268435463, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2143399629, + "enum_options": { + "__BASECLASS": "PetTalentBaseTemplate" + } + }, + "m_bRetired": { + "type": "bool", + "id": 8, + "offset": 280, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 904227684, + "enum_options": { + "__DEFAULT": 0 + } + }, + "m_unsearchable": { + "type": "bool", + "id": 9, + "offset": 281, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1760679968, + "enum_options": { + "__DEFAULT": 0 + } + }, + "m_effectList": { + "type": "class GameEffectInfo*", + "id": 10, + "offset": 288, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 924514724 + }, + "m_maxStatList": { + "type": "class PetStat", + "id": 11, + "offset": 304, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2545839409 + } + } + }, + "1432454230": { + "name": "class SharedPointer", + "bases": [ + "AdvPvPEloRecord", + "PropertyClass" + ], + "hash": 1432454230, + "properties": { + "m_eloRecordID": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 16777279, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 832082468 + }, + "m_leagueID": { + "type": "unsigned int", + "id": 1, + "offset": 80, + "flags": 33554495, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 692361645 + }, + "m_seasonID": { + "type": "unsigned int", + "id": 2, + "offset": 84, + "flags": 33554495, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 535260643 + }, + "m_startTime": { + "type": "unsigned int", + "id": 3, + "offset": 88, + "flags": 33554495, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1598371274 + }, + "m_ended": { + "type": "bool", + "id": 4, + "offset": 92, + "flags": 33554495, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 795768915 + }, + "m_elo": { + "type": "int", + "id": 5, + "offset": 96, + "flags": 33554495, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 267033754 + }, + "m_rankIndex": { + "type": "int", + "id": 6, + "offset": 100, + "flags": 33554495, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 716259486 + }, + "m_wins": { + "type": "int", + "id": 7, + "offset": 104, + "flags": 33554495, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 219992347 + }, + "m_losses": { + "type": "int", + "id": 8, + "offset": 108, + "flags": 33554495, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 681549075 + }, + "m_draws": { + "type": "int", + "id": 9, + "offset": 112, + "flags": 33554495, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 792242907 + } + } + }, + "572602059": { + "name": "class ClientHidePolymorphFloatyTextCinematicAction*", + "bases": [ + "HidePolymorphFloatyTextCinematicAction", + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 572602059, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + } + } + }, + "1424862416": { + "name": "class CreateHangingEffectActorCinematicAction", + "bases": [ + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 1424862416, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + }, + "m_cloaked": { + "type": "bool", + "id": 2, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 7349510 + }, + "m_newActorName": { + "type": "std::string", + "id": 3, + "offset": 128, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2029131039 + } + } + }, + "1855299601": { + "name": "class FishHistory", + "bases": [ + "PropertyClass" + ], + "hash": 1855299601, + "properties": { + "m_templateID": { + "type": "unsigned int", + "id": 0, + "offset": 72, + "flags": 33554471, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1286746870 + }, + "m_numberCaught": { + "type": "unsigned int", + "id": 1, + "offset": 76, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 880871538 + }, + "m_smallestSize": { + "type": "float", + "id": 2, + "offset": 80, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1372912951 + }, + "m_largestSize": { + "type": "float", + "id": 3, + "offset": 84, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 344314084 + }, + "m_numberSmallFrysCaught": { + "type": "unsigned int", + "id": 4, + "offset": 88, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2177497487 + }, + "m_numberWoppersCaught": { + "type": "unsigned int", + "id": 5, + "offset": 92, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 842916418 + } + } + }, + "1422695036": { + "name": "class ClientCantripsMajorInvisibilityEffect", + "bases": [ + "CantripsMajorInvisibilityEffect", + "CantripsInvisibilityEffect", + "GameEffectBase", + "PropertyClass" + ], + "hash": 1422695036, + "properties": { + "m_currentTickCount": { + "type": "double", + "id": 0, + "offset": 80, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2533274692 + }, + "m_effectNameID": { + "type": "unsigned int", + "id": 1, + "offset": 96, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1204067144 + }, + "m_bIsOnPet": { + "type": "bool", + "id": 2, + "offset": 73, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 522593303 + }, + "m_originatorID": { + "type": "gid", + "id": 3, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1131810019 + }, + "m_itemSlotID": { + "type": "unsigned int", + "id": 4, + "offset": 112, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1895747595 + }, + "m_internalID": { + "type": "int", + "id": 5, + "offset": 92, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1643137924 + }, + "m_endTime": { + "type": "unsigned int", + "id": 6, + "offset": 88, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 716479635 + } + } + }, + "150612290": { + "name": "class SharedPointer", + "bases": [ + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 150612290, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + } + } + }, + "1004751703": { + "name": "class SharedPointer", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 1004751703, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + }, + "m_nifStateList": { + "type": "std::string", + "id": 1, + "offset": 120, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2130407509 + }, + "m_requirementList": { + "type": "class RequirementList*", + "id": 2, + "offset": 136, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3581372079 + }, + "m_activatedResultList": { + "type": "class ResultList*", + "id": 3, + "offset": 144, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3738420568 + }, + "m_questEvent": { + "type": "std::string", + "id": 4, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1788127695 + }, + "m_singleUse": { + "type": "bool", + "id": 5, + "offset": 184, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2055323234 + }, + "m_removalTime": { + "type": "float", + "id": 6, + "offset": 224, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1385020188 + }, + "m_lootTable": { + "type": "std::string", + "id": 7, + "offset": 192, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2539512673 + }, + "m_useStates": { + "type": "bool", + "id": 8, + "offset": 228, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 992523892 + }, + "m_stateList": { + "type": "std::string", + "id": 9, + "offset": 232, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2944863128 + }, + "m_unlockFirst": { + "type": "bool", + "id": 10, + "offset": 248, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1802051527 + }, + "m_removedState": { + "type": "std::string", + "id": 11, + "offset": 256, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1831242670 + }, + "m_allowedSchoolsList": { + "type": "std::string", + "id": 12, + "offset": 288, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2565048282 + }, + "m_wrongSchoolResultList": { + "type": "class ResultList*", + "id": 13, + "offset": 320, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3155773624 + } + } + }, + "1422341125": { + "name": "class ObstacleCourseSpringboardBehavior*", + "bases": [ + "ObstacleCourseObstacleBehavior", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1422341125, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + } + } + }, + "150115160": { + "name": "class CreateGuildPlayerList*", + "bases": [ + "PropertyClass" + ], + "hash": 150115160, + "properties": { + "m_playerList": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1909774945 + } + } + }, + "574436118": { + "name": "class ControlTileMap*", + "bases": [ + "Window", + "PropertyClass" + ], + "hash": 574436118, + "properties": { + "m_sName": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306437263 + }, + "m_Children": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621225959 + }, + "m_Style": { + "type": "unsigned int", + "id": 2, + "offset": 152, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "SCALE_CHILDREN": 2, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "FOCUS_LOCKED": 64, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152 + } + }, + "m_Flags": { + "type": "unsigned int", + "id": 3, + "offset": 156, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } + }, + "m_Window": { + "type": "class Rect", + "id": 4, + "offset": 160, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3105139380 + }, + "m_fTargetAlpha": { + "type": "float", + "id": 5, + "offset": 212, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1809129834 + }, + "m_fDisabledAlpha": { + "type": "float", + "id": 6, + "offset": 216, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1389987675 + }, + "m_fAlpha": { + "type": "float", + "id": 7, + "offset": 208, + "flags": 65671, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 482130755 + }, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3623628394 + }, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2102211316 + }, + "m_sScript": { + "type": "std::string", + "id": 10, + "offset": 352, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1846695875 + }, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3389835433 + }, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547159940 + }, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513510520 + }, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3091503757 + }, + "m_nBorderSize": { + "type": "int", + "id": 16, + "offset": 584, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2016376897 + }, + "m_TileSize": { + "type": "class Size", + "id": 17, + "offset": 588, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1169748581 + }, + "m_MapSize": { + "type": "class Size", + "id": 18, + "offset": 596, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1258934261 + }, + "m_nDefaultTile": { + "type": "int", + "id": 19, + "offset": 604, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1771469243 + }, + "m_Tiles": { + "type": "class SharedPointer", + "id": 20, + "offset": 608, + "flags": 135, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2276817757 + }, + "m_Map": { + "type": "class SharedPointer", + "id": 21, + "offset": 632, + "flags": 135, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1765608522 + }, + "m_nCursorOverTile": { + "type": "int", + "id": 22, + "offset": 664, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 590305648 + } + } + }, + "1003539504": { + "name": "class SavedDebugCommand", + "bases": [ + "PropertyClass" + ], + "hash": 1003539504, + "properties": { + "m_commandName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1931590331 + }, + "m_command": { + "type": "std::string", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1618022938 + } + } + }, + "1421568718": { + "name": "class LoyaltyConfig", + "bases": [ + "PropertyClass" + ], + "hash": 1421568718, + "properties": { + "m_loyaltyTierCount": { + "type": "int", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1322604645 + }, + "m_loyaltyTierDemotionTrigger": { + "type": "int", + "id": 1, + "offset": 76, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1427712879 + }, + "m_loyaltyTierLevelDuration": { + "type": "int", + "id": 2, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 599216410 + } + } + }, + "149775667": { + "name": "class EquipmentShopOption*", + "bases": [ + "ServiceOptionBase", + "PropertyClass" + ], + "hash": 149775667, + "properties": { + "m_serviceName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2206028813 + }, + "m_iconKey": { + "type": "std::string", + "id": 1, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2457138637 + }, + "m_displayKey": { + "type": "std::string", + "id": 2, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3023276954 + }, + "m_serviceIndex": { + "type": "unsigned int", + "id": 3, + "offset": 204, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2103126710 + }, + "m_forceInteract": { + "type": "bool", + "id": 4, + "offset": 200, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1705789564 + } + } + }, + "1856107213": { + "name": "class HousingPaletteBehaviorTemplate*", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 1856107213, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + }, + "m_housingPaletteType": { + "type": "int", + "id": 1, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 658067464 + }, + "m_primaryTintColors": { + "type": "class Vector3D", + "id": 2, + "offset": 128, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2885436919 + }, + "m_secondaryTintColors": { + "type": "class Vector3D", + "id": 3, + "offset": 152, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 3624818395 + } + } + }, + "573920673": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 573920673, + "properties": { + "m_loopNumber": { + "type": "int", + "id": 0, + "offset": 72, + "flags": 65543, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1083131517 + }, + "m_composerPackedName": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 65536, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1558621676 + }, + "m_composerGID": { + "type": "gid", + "id": 2, + "offset": 112, + "flags": 65536, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 538993812 + }, + "m_metronomeTempo": { + "type": "float", + "id": 3, + "offset": 120, + "flags": 65543, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 547183282 + }, + "m_firstNodeDelay": { + "type": "float", + "id": 4, + "offset": 124, + "flags": 65543, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 830925908 + }, + "m_musicNoteList": { + "type": "class SharedPointer", + "id": 5, + "offset": 128, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 3278314746 + }, + "m_compressedmusicNoteData": { + "type": "std::string", + "id": 6, + "offset": 144, + "flags": 65536, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2482881473 + } + } + }, + "1003075574": { + "name": "class SharedPointer", + "bases": [ + "ObstacleCourseObstaclePathBase", + "ObstacleCourseObstacleBehavior", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1003075574, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + } + } + }, + "1855923929": { + "name": "class TournamentUpdate*", + "bases": [ + "PropertyClass" + ], + "hash": 1855923929, + "properties": {} + }, + "1002934410": { + "name": "class WinAnimDelay", + "bases": [ + "WindowAnimation", + "PropertyClass" + ], + "hash": 1002934410, + "properties": { + "m_bUseDeepCopy": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 433380635 + }, + "m_fDelay": { + "type": "float", + "id": 1, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 485432396 + }, + "m_fElapsedTime": { + "type": "float", + "id": 2, + "offset": 84, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1862647402 + } + } + }, + "1422449663": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1422449663, + "properties": {} + }, + "150115928": { + "name": "class CreateGuildPlayerList", + "bases": [ + "PropertyClass" + ], + "hash": 150115928, + "properties": { + "m_playerList": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1909774945 + } + } + }, + "574436278": { + "name": "class ControlTileMap", + "bases": [ + "Window", + "PropertyClass" + ], + "hash": 574436278, + "properties": { + "m_sName": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306437263 + }, + "m_Children": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621225959 + }, + "m_Style": { + "type": "unsigned int", + "id": 2, + "offset": 152, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "SCALE_CHILDREN": 2, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "FOCUS_LOCKED": 64, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152 + } + }, + "m_Flags": { + "type": "unsigned int", + "id": 3, + "offset": 156, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } + }, + "m_Window": { + "type": "class Rect", + "id": 4, + "offset": 160, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3105139380 + }, + "m_fTargetAlpha": { + "type": "float", + "id": 5, + "offset": 212, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1809129834 + }, + "m_fDisabledAlpha": { + "type": "float", + "id": 6, + "offset": 216, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1389987675 + }, + "m_fAlpha": { + "type": "float", + "id": 7, + "offset": 208, + "flags": 65671, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 482130755 + }, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3623628394 + }, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2102211316 + }, + "m_sScript": { + "type": "std::string", + "id": 10, + "offset": 352, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1846695875 + }, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3389835433 + }, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547159940 + }, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513510520 + }, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3091503757 + }, + "m_nBorderSize": { + "type": "int", + "id": 16, + "offset": 584, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2016376897 + }, + "m_TileSize": { + "type": "class Size", + "id": 17, + "offset": 588, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1169748581 + }, + "m_MapSize": { + "type": "class Size", + "id": 18, + "offset": 596, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1258934261 + }, + "m_nDefaultTile": { + "type": "int", + "id": 19, + "offset": 604, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1771469243 + }, + "m_Tiles": { + "type": "class SharedPointer", + "id": 20, + "offset": 608, + "flags": 135, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2276817757 + }, + "m_Map": { + "type": "class SharedPointer", + "id": 21, + "offset": 632, + "flags": 135, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1765608522 + }, + "m_nCursorOverTile": { + "type": "int", + "id": 22, + "offset": 664, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 590305648 + } + } + }, + "1422341205": { + "name": "class ObstacleCourseSpringboardBehavior", + "bases": [ + "ObstacleCourseObstacleBehavior", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1422341205, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + } + } + }, + "1856697751": { + "name": "class BGSigilProxyBehavior*", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1856697751, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_autoCapTimer": { + "type": "class BGSigilTimer", + "id": 1, + "offset": 112, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2270881950 + }, + "m_timerTeam": { + "type": "std::string", + "id": 2, + "offset": 216, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1994153155 + }, + "m_teamOwner": { + "type": "std::string", + "id": 3, + "offset": 248, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3126686637 + }, + "m_combatActive": { + "type": "bool", + "id": 4, + "offset": 280, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1372743333 + }, + "m_captureable": { + "type": "bool", + "id": 5, + "offset": 281, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1101963387 + }, + "m_allowAutoCap": { + "type": "bool", + "id": 6, + "offset": 282, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 946300927 + }, + "m_sigilAggroRange": { + "type": "float", + "id": 7, + "offset": 284, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 995063020 + }, + "m_playerAggroRange": { + "type": "float", + "id": 8, + "offset": 288, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1776075073 + }, + "m_triggerOrientation": { + "type": "class Vector3D", + "id": 9, + "offset": 292, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2671004802 + }, + "m_triggerLocation": { + "type": "class Vector3D", + "id": 10, + "offset": 304, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2573315471 + }, + "m_triggerBox": { + "type": "bool", + "id": 11, + "offset": 316, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 962168144 + }, + "m_width": { + "type": "float", + "id": 12, + "offset": 320, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 904656279 + }, + "m_length": { + "type": "float", + "id": 13, + "offset": 324, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 759698745 + }, + "m_triggerSphere": { + "type": "bool", + "id": 14, + "offset": 328, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1467830382 + }, + "m_radius": { + "type": "float", + "id": 15, + "offset": 332, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 989410271 + }, + "m_inRange": { + "type": "class SharedPointer", + "id": 16, + "offset": 336, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2259190010 + } + } + }, + "1003527095": { + "name": "class PetStatModification*", + "bases": [ + "PropertyClass" + ], + "hash": 1003527095, + "properties": { + "m_name": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1717359772 + }, + "m_change": { + "type": "int", + "id": 1, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 320376832 + }, + "m_actualChange": { + "type": "unsigned int", + "id": 2, + "offset": 108, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 448133229 + } + } + }, + "1856625598": { + "name": "class SharedPointer", + "bases": [ + "TournamentUpdate", + "PropertyClass" + ], + "hash": 1856625598, + "properties": { + "m_tournamentID": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 695889746 + }, + "m_tournamentName": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3329241865 + }, + "m_tournamentNameID": { + "type": "unsigned int", + "id": 2, + "offset": 112, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1799846440 + }, + "m_clearData": { + "type": "bool", + "id": 3, + "offset": 116, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 890225684 + }, + "m_matches": { + "type": "class SharedPointer", + "id": 4, + "offset": 128, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 3618423638 + }, + "m_teams": { + "type": "class SharedPointer", + "id": 5, + "offset": 144, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1984373608 + }, + "m_brackets": { + "type": "class SharedPointer", + "id": 6, + "offset": 160, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1419131309 + }, + "m_totalTeams": { + "type": "int", + "id": 7, + "offset": 124, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1059363992 + } + } + }, + "151726271": { + "name": "class WizAvatarTextureOption", + "bases": [ + "AvatarTextureOption", + "AvatarOptionBase", + "PropertyClass" + ], + "hash": 151726271, + "properties": { + "m_conditionFlags": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2483653903 + }, + "m_materialName": { + "type": "std::string", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1878140043 + }, + "m_textures": { + "type": "std::string", + "id": 2, + "offset": 136, + "flags": 131079, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2391848735 + }, + "m_decals": { + "type": "std::string", + "id": 3, + "offset": 160, + "flags": 131079, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1853711975 + }, + "m_decals2": { + "type": "std::string", + "id": 4, + "offset": 184, + "flags": 131079, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2505858617 + }, + "m_tintColors": { + "type": "class Vector3D", + "id": 5, + "offset": 208, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 3059416083 + }, + "m_tintColorNames": { + "type": "std::string", + "id": 6, + "offset": 232, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1803799469 + }, + "m_useTintColor": { + "type": "bool", + "id": 7, + "offset": 256, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1646372318 + }, + "m_texture": { + "type": "std::string", + "id": 8, + "offset": 264, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1720106604 + }, + "m_decal": { + "type": "std::string", + "id": 9, + "offset": 296, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2289476788 + }, + "m_decal2": { + "type": "std::string", + "id": 10, + "offset": 328, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1853711910 + }, + "m_tintColor": { + "type": "class Vector3D", + "id": 11, + "offset": 360, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1830530496 + } + } + }, + "576077362": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 576077362, + "properties": { + "m_name": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1717359772 + }, + "m_minScore": { + "type": "int", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1505040890 + }, + "m_maxScore": { + "type": "int", + "id": 2, + "offset": 108, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 154585660 + }, + "m_pvpIcon": { + "type": "std::string", + "id": 3, + "offset": 112, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1503451354 + }, + "m_petIcon": { + "type": "std::string", + "id": 4, + "offset": 144, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2990377005 + } + } + }, + "151615629": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 151615629, + "properties": { + "m_nType": { + "type": "enum ZoneData::Type", + "id": 0, + "offset": 72, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2656861130, + "enum_options": { + "ZONETYPE_INVALID": 4294967295, + "ZONETYPE_START": 0, + "ZONETYPE_STATIC": 1, + "ZONETYPE_DYNAMIC": 2 + } + }, + "m_zoneName": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 134217735, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2171167736 + }, + "m_zoneDisplayName": { + "type": "std::string", + "id": 2, + "offset": 112, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1962339438 + }, + "m_skyDomeName": { + "type": "std::string", + "id": 3, + "offset": 144, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2339979448 + }, + "m_skyLayerName": { + "type": "std::string", + "id": 4, + "offset": 184, + "flags": 131079, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2824410256 + }, + "m_collisionFileName": { + "type": "std::string", + "id": 5, + "offset": 208, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1725365192 + }, + "m_gamebryoSceneFileName": { + "type": "std::string", + "id": 6, + "offset": 240, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3084395168 + }, + "m_musicFileName": { + "type": "std::string", + "id": 7, + "offset": 272, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1817607805 + }, + "m_spawnList": { + "type": "class SpawnPointTemplate", + "id": 8, + "offset": 304, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1063041926 + }, + "m_teleportList": { + "type": "class TeleporterTemplate", + "id": 9, + "offset": 320, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1031682046 + }, + "m_locationList": { + "type": "class LocationTemplate", + "id": 10, + "offset": 336, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2114141903 + }, + "m_objectList": { + "type": "class SharedPointer", + "id": 11, + "offset": 352, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 882782852 + }, + "m_allEffects": { + "type": "std::string", + "id": 12, + "offset": 368, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2483362772 + }, + "m_healingPerMinute": { + "type": "int", + "id": 13, + "offset": 480, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 782115659 + }, + "m_playerPopThresh": { + "type": "int", + "id": 14, + "offset": 484, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1692004900 + }, + "m_nSoftLimit": { + "type": "int", + "id": 15, + "offset": 488, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1593689635, + "enum_options": { + "__DEFAULT": 50 + } + }, + "m_nHardLimit": { + "type": "int", + "id": 16, + "offset": 492, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1752405446, + "enum_options": { + "__DEFAULT": 100 + } + }, + "m_farClip": { + "type": "float", + "id": 17, + "offset": 496, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1393981304, + "enum_options": { + "__DEFAULT": 25000 + } + }, + "m_nearClipOverride": { + "type": "float", + "id": 18, + "offset": 500, + "flags": 519, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1092806405, + "enum_options": { + "__DEFAULT": 1 + } + }, + "m_defaultBackgroundColorRed": { + "type": "float", + "id": 19, + "offset": 504, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1511995894 + }, + "m_defaultBackgroundColorGreen": { + "type": "float", + "id": 20, + "offset": 508, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2127637260 + }, + "m_defaultBackgroundColorBlue": { + "type": "float", + "id": 21, + "offset": 512, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1908873795 + }, + "m_fogColorRed": { + "type": "int", + "id": 22, + "offset": 516, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1578810896 + }, + "m_fogColorGreen": { + "type": "int", + "id": 23, + "offset": 520, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1229332710 + }, + "m_fogColorBlue": { + "type": "int", + "id": 24, + "offset": 524, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 557754685 + }, + "m_fogDensity": { + "type": "float", + "id": 25, + "offset": 528, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1170901171 + }, + "m_fogStartDensity": { + "type": "float", + "id": 26, + "offset": 532, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1642636961 + }, + "m_fogEnabled": { + "type": "bool", + "id": 27, + "offset": 536, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 563358906 + }, + "m_nObjectID": { + "type": "unsigned int", + "id": 28, + "offset": 540, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 748496927 + }, + "m_bDisableTransitionAutoHide": { + "type": "bool", + "id": 29, + "offset": 544, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 702738663 + }, + "m_encounterNames": { + "type": "std::string", + "id": 30, + "offset": 384, + "flags": 268435463, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2150841410, + "enum_options": { + "__BASECLASS": "EncounterTemplate" + } + }, + "m_encounterGroup": { + "type": "std::string", + "id": 31, + "offset": 400, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2143153595 + }, + "m_zoneAdjectives": { + "type": "std::string", + "id": 32, + "offset": 432, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 3603923993 + }, + "m_zonePermissions": { + "type": "std::string", + "id": 33, + "offset": 464, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2928923475 + }, + "m_canPlaceTeleportMarker": { + "type": "bool", + "id": 34, + "offset": 545, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 600985755 + }, + "m_filterSetUID": { + "type": "unsigned int", + "id": 35, + "offset": 548, + "flags": 33554695, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1054674497 + }, + "m_conditionalSkyboxes": { + "type": "class SkyboxInfo", + "id": 36, + "offset": 552, + "flags": 263, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2512765286 + }, + "m_musicDelay": { + "type": "float", + "id": 37, + "offset": 568, + "flags": 263, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1217785767 + } + } + }, + "575889771": { + "name": "class RaidPortalBehavior*", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 575889771, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + }, + "m_active": { + "type": "bool", + "id": 1, + "offset": 112, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 239335471 + } + } + }, + "1004108292": { + "name": "class BattlegroundTemplateChatList", + "bases": [ + "PropertyClass" + ], + "hash": 1004108292, + "properties": { + "m_templates": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1496975562 + } + } + }, + "1422886315": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1422886315, + "properties": { + "m_volunteerWorldList": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1802198369 + } + } + }, + "1004098052": { + "name": "class BattlegroundTemplateChatList*", + "bases": [ + "PropertyClass" + ], + "hash": 1004098052, + "properties": { + "m_templates": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1496975562 + } + } + }, + "1422775164": { + "name": "class ScrollWindowStyle*", + "bases": [ + "WindowStyle", + "PropertyClass" + ], + "hash": 1422775164, + "properties": { + "m_pBackMaterial": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1628562023 + }, + "m_pFont": { + "type": "class SharedPointer", + "id": 1, + "offset": 88, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1067686307 + }, + "m_pLargeFont": { + "type": "class SharedPointer", + "id": 2, + "offset": 104, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1523900782 + }, + "m_pSmallFont": { + "type": "class SharedPointer", + "id": 3, + "offset": 120, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2363252956 + }, + "m_Color": { + "type": "class Color", + "id": 4, + "offset": 136, + "flags": 262279, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1753714077 + }, + "m_HighColor": { + "type": "class Color", + "id": 5, + "offset": 140, + "flags": 262279, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2310527421 + }, + "m_SelectColor": { + "type": "class Color", + "id": 6, + "offset": 144, + "flags": 262279, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2792529213 + }, + "m_BorderColor": { + "type": "class Color", + "id": 7, + "offset": 148, + "flags": 262279, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1470576795 + }, + "m_BackColor": { + "type": "class Color", + "id": 8, + "offset": 152, + "flags": 262279, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1070928782 + }, + "m_ScrollBarColor": { + "type": "class Color", + "id": 9, + "offset": 156, + "flags": 262279, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1180747361 + }, + "m_ScrollTabColor": { + "type": "class Color", + "id": 10, + "offset": 160, + "flags": 262279, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1034892323 + }, + "m_nBorderSize": { + "type": "int", + "id": 11, + "offset": 164, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2016376897 + }, + "m_nScrollSize": { + "type": "int", + "id": 12, + "offset": 168, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 632681746 + }, + "m_sHoverSound": { + "type": "std::string", + "id": 13, + "offset": 176, + "flags": 131207, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2662773595 + }, + "m_sSelectSound": { + "type": "std::string", + "id": 14, + "offset": 208, + "flags": 131207, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2596786807 + }, + "m_pVMiddle": { + "type": "class SharedPointer", + "id": 15, + "offset": 248, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1896076876 + }, + "m_pVSliderTop": { + "type": "class SharedPointer", + "id": 16, + "offset": 264, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1590678131 + }, + "m_pVSliderMiddle": { + "type": "class SharedPointer", + "id": 17, + "offset": 280, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1981605647 + }, + "m_pVSliderBottom": { + "type": "class SharedPointer", + "id": 18, + "offset": 296, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1558824373 + }, + "m_pVUpButton": { + "type": "class SharedPointer", + "id": 19, + "offset": 312, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3584564972 + }, + "m_pVDownButton": { + "type": "class SharedPointer", + "id": 20, + "offset": 328, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2411725119 + }, + "m_pHLeftArrow": { + "type": "class SharedPointer", + "id": 21, + "offset": 344, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3168852677 + }, + "m_pHRightArrow": { + "type": "class SharedPointer", + "id": 22, + "offset": 360, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1981350104 + }, + "m_pHMiddle": { + "type": "class SharedPointer", + "id": 23, + "offset": 376, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3142878142 + }, + "m_pHSliderLeft": { + "type": "class SharedPointer", + "id": 24, + "offset": 392, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1553456157 + }, + "m_pHSliderMiddle": { + "type": "class SharedPointer", + "id": 25, + "offset": 408, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2666160641 + }, + "m_pHSliderRight": { + "type": "class SharedPointer", + "id": 26, + "offset": 424, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1592154800 + }, + "m_nScrollButtonDelta": { + "type": "int", + "id": 27, + "offset": 240, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1455137917 + } + } + }, + "1860873408": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1860873408, + "properties": { + "m_matchID": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1757621298 + }, + "m_matchNameID": { + "type": "unsigned int", + "id": 1, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1751361288 + }, + "m_teams": { + "type": "class SharedPointer", + "id": 2, + "offset": 96, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1984373608 + }, + "m_matchName": { + "type": "std::string", + "id": 3, + "offset": 112, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2061215721 + }, + "m_matchTitle": { + "type": "std::string", + "id": 4, + "offset": 144, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2918442218 + }, + "m_matchZoneID": { + "type": "gid", + "id": 5, + "offset": 176, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2026205966 + }, + "m_creatorID": { + "type": "gid", + "id": 6, + "offset": 88, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1051766037 + }, + "m_matchZone": { + "type": "std::string", + "id": 7, + "offset": 184, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2061662244 + }, + "m_startTime": { + "type": "int", + "id": 8, + "offset": 216, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1386968823 + }, + "m_status": { + "type": "int", + "id": 9, + "offset": 220, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 960781182 + }, + "m_friendsOnly": { + "type": "bool", + "id": 10, + "offset": 236, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1420401792 + }, + "m_tournamentNameID": { + "type": "unsigned int", + "id": 11, + "offset": 224, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1799846440 + }, + "m_leagueID": { + "type": "unsigned int", + "id": 12, + "offset": 228, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 692361645 + }, + "m_seasonID": { + "type": "unsigned int", + "id": 13, + "offset": 232, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 535260643 + }, + "m_bUpdateLadder": { + "type": "bool", + "id": 14, + "offset": 248, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1937525956 + }, + "m_maxPointsPerMatch": { + "type": "unsigned int", + "id": 15, + "offset": 240, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1397040900 + }, + "m_estimatedWeight": { + "type": "float", + "id": 16, + "offset": 244, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1374360127 + }, + "m_maxELOError": { + "type": "int", + "id": 17, + "offset": 252, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 318998922 + }, + "m_uniqueMatchID": { + "type": "std::string", + "id": 18, + "offset": 264, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3291026220 + }, + "m_pvpDuelModifiersTemplates": { + "type": "class SharedPointer", + "id": 19, + "offset": 296, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1193155411 + }, + "m_teamSize": { + "type": "unsigned int", + "id": 20, + "offset": 256, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2343388751 + } + } + }, + "151750847": { + "name": "class WizAvatarTextureOption*", + "bases": [ + "AvatarTextureOption", + "AvatarOptionBase", + "PropertyClass" + ], + "hash": 151750847, + "properties": { + "m_conditionFlags": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2483653903 + }, + "m_materialName": { + "type": "std::string", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1878140043 + }, + "m_textures": { + "type": "std::string", + "id": 2, + "offset": 136, + "flags": 131079, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2391848735 + }, + "m_decals": { + "type": "std::string", + "id": 3, + "offset": 160, + "flags": 131079, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1853711975 + }, + "m_decals2": { + "type": "std::string", + "id": 4, + "offset": 184, + "flags": 131079, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2505858617 + }, + "m_tintColors": { + "type": "class Vector3D", + "id": 5, + "offset": 208, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 3059416083 + }, + "m_tintColorNames": { + "type": "std::string", + "id": 6, + "offset": 232, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1803799469 + }, + "m_useTintColor": { + "type": "bool", + "id": 7, + "offset": 256, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1646372318 + }, + "m_texture": { + "type": "std::string", + "id": 8, + "offset": 264, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1720106604 + }, + "m_decal": { + "type": "std::string", + "id": 9, + "offset": 296, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2289476788 + }, + "m_decal2": { + "type": "std::string", + "id": 10, + "offset": 328, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1853711910 + }, + "m_tintColor": { + "type": "class Vector3D", + "id": 11, + "offset": 360, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1830530496 + } + } + }, + "1859418379": { + "name": "class MatchCostAdjustment*", + "bases": [ + "PropertyClass" + ], + "hash": 1859418379, + "properties": { + "m_matchAdjustmentType": { + "type": "enum MatchCostAdjustment::ADJUSTMENT_TYPE", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2305794521, + "enum_options": { + "SUBSCRIBER": 0, + "FREETOPLAY": 1, + "UNSET_MAX": 2 + } + } + } + }, + "577435712": { + "name": "class SharedPointer", + "bases": [ + "RemoveInterceptCinematicAction", + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 577435712, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + } + } + }, + "1858172823": { + "name": "class AvatarItemInfoBase", + "bases": [ + "PropertyClass" + ], + "hash": 1858172823, + "properties": {} + }, + "576999877": { + "name": "class ReqHasGoal", + "bases": [ + "Requirement", + "PropertyClass" + ], + "hash": 576999877, + "properties": { + "m_applyNOT": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1746328074, + "enum_options": { + "__DEFAULT": 0 + } + }, + "m_operator": { + "type": "enum Requirement::Operator", + "id": 1, + "offset": 76, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2672792317, + "enum_options": { + "ROP_AND": 0, + "ROP_OR": 1, + "__DEFAULT": "ROP_AND" + } + }, + "m_questName": { + "type": "std::string", + "id": 2, + "offset": 80, + "flags": 268435463, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1702112846, + "enum_options": { + "__BASECLASS": "QuestTemplate" + } + }, + "m_goalName": { + "type": "std::string", + "id": 3, + "offset": 112, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1521627807 + }, + "m_requiredStatus": { + "type": "enum GoalStatusRequirement", + "id": 4, + "offset": 144, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1705123608, + "enum_options": { + "DontCare": 0, + "Complete": 1, + "Incomplete": 2, + "__DEFAULT": "DontCare" + } + } + } + }, + "1004451249": { + "name": "class Spell", + "bases": [ + "PropertyClass" + ], + "hash": 1004451249, + "properties": { + "m_templateID": { + "type": "unsigned int", + "id": 0, + "offset": 128, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1286746870 + }, + "m_enchantment": { + "type": "unsigned int", + "id": 1, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2217886818 + }, + "m_pipCost": { + "type": "class SharedPointer", + "id": 2, + "offset": 176, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3605704820 + }, + "m_regularAdjust": { + "type": "int", + "id": 3, + "offset": 192, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1420453335 + }, + "m_magicSchoolID": { + "type": "unsigned int", + "id": 4, + "offset": 136, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 893146499 + }, + "m_accuracy": { + "type": "unsigned char", + "id": 5, + "offset": 132, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2273914939 + }, + "m_treasureCard": { + "type": "bool", + "id": 6, + "offset": 197, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1764879128 + }, + "m_battleCard": { + "type": "bool", + "id": 7, + "offset": 198, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1332843753 + }, + "m_itemCard": { + "type": "bool", + "id": 8, + "offset": 199, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1683654300 + }, + "m_sideBoard": { + "type": "bool", + "id": 9, + "offset": 200, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1897838368 + }, + "m_spellID": { + "type": "unsigned int", + "id": 10, + "offset": 204, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1697483258 + }, + "m_leavesPlayWhenCastOverride": { + "type": "bool", + "id": 11, + "offset": 216, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 874407398 + }, + "m_cloaked": { + "type": "bool", + "id": 12, + "offset": 196, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 7349510 + }, + "m_enchantmentSpellIsItemCard": { + "type": "bool", + "id": 13, + "offset": 76, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 531590701 + }, + "m_premutationSpellID": { + "type": "unsigned int", + "id": 14, + "offset": 112, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1530256370 + }, + "m_enchantedThisCombat": { + "type": "bool", + "id": 15, + "offset": 77, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1895738923 + }, + "m_paramOverrides": { + "type": "class SharedPointer", + "id": 16, + "offset": 224, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2061635599 + }, + "m_subEffectMeta": { + "type": "class SharedPointer", + "id": 17, + "offset": 240, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1944101106 + }, + "m_delayEnchantment": { + "type": "bool", + "id": 18, + "offset": 257, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 191336919 + }, + "m_PvE": { + "type": "bool", + "id": 19, + "offset": 264, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 269492350 + }, + "m_delayEnchantmentOrder": { + "type": "enum SpellEffect::kDelayOrder", + "id": 20, + "offset": 72, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2526055263, + "enum_options": { + "SpellEffect::kAnyOrder": 0, + "SpellEffect::kFirst": 1, + "SpellEffect::kSecond": 2 + } + }, + "m_roundAddedTC": { + "type": "int", + "id": 21, + "offset": 260, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 112365451 + }, + "m_secondarySchoolID": { + "type": "unsigned int", + "id": 22, + "offset": 304, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2081206026 + }, + "m_fusionState": { + "type": "enum Spell::FusionState", + "id": 23, + "offset": 308, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 835324539, + "enum_options": { + "FS_Invalid": 0, + "FS_Partial": 1, + "FS_Valid": 2 + } + } + } + }, + "1424862404": { + "name": "class CreateHangingEffectActorCinematicAction*", + "bases": [ + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 1424862404, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + }, + "m_cloaked": { + "type": "bool", + "id": 2, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 7349510 + }, + "m_newActorName": { + "type": "std::string", + "id": 3, + "offset": 128, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2029131039 + } + } + }, + "151966352": { + "name": "enum WizBugReport::UserGender", + "bases": [], + "hash": 151966352, + "properties": {} + }, + "1857641857": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1857641857, + "properties": { + "m_targetZone": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2698931614 + }, + "m_targetLocation": { + "type": "std::string", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2493737915 + }, + "m_location": { + "type": "class Vector3D", + "id": 2, + "offset": 136, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2239683611 + } + } + }, + "1424739730": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1424739730, + "properties": { + "m_className": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2220521682 + }, + "m_classLevelInfo": { + "type": "class MagicLevelInfo*", + "id": 1, + "offset": 112, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 3643333981 + } + } + }, + "1857551395": { + "name": "class SharedPointer", + "bases": [ + "ZoneTokenTimer", + "ZoneTokenBase", + "PropertyClass" + ], + "hash": 1857551395, + "properties": { + "m_debugName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3553984419 + }, + "m_adjectiveList": { + "type": "std::string", + "id": 1, + "offset": 104, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 3195213318 + }, + "m_icon": { + "type": "std::string", + "id": 2, + "offset": 120, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1717182340 + }, + "m_iconBW": { + "type": "std::string", + "id": 3, + "offset": 152, + "flags": 131103, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2047461085 + }, + "m_description": { + "type": "std::string", + "id": 4, + "offset": 184, + "flags": 8388639, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1649374815 + }, + "m_displayMode": { + "type": "enum ZTDisplayMode", + "id": 5, + "offset": 216, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2216526410, + "enum_options": { + "ZTDM_Shown": 0, + "ZTDM_Discoverable": 1, + "ZTDM_Hidden": 2 + } + }, + "m_storage": { + "type": "enum ZTStorage", + "id": 6, + "offset": 220, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2290454852, + "enum_options": { + "ZTS_Player": 0, + "ZTS_Zone": 1 + } + }, + "m_onEnable": { + "type": "class SharedPointer", + "id": 7, + "offset": 224, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2591736864 + }, + "m_onDiscover": { + "type": "class SharedPointer", + "id": 8, + "offset": 240, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2826026872 + }, + "m_onDisable": { + "type": "class SharedPointer", + "id": 9, + "offset": 256, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1860656717 + }, + "m_sourceID": { + "type": "gid", + "id": 10, + "offset": 272, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1134700470 + }, + "m_inZone": { + "type": "bool", + "id": 11, + "offset": 280, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 564535654 + }, + "m_enabled": { + "type": "bool", + "id": 12, + "offset": 281, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 504506718 + }, + "m_discovered": { + "type": "bool", + "id": 13, + "offset": 282, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2060478331 + }, + "m_duration": { + "type": "std::string", + "id": 14, + "offset": 288, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2327821921 + }, + "m_onExpire": { + "type": "class SharedPointer", + "id": 15, + "offset": 320, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2604142950 + }, + "m_timeTriggers": { + "type": "class SharedPointer", + "id": 16, + "offset": 336, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1112107844 + }, + "m_expireTime": { + "type": "unsigned int", + "id": 17, + "offset": 356, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1836304873 + } + } + }, + "1004538019": { + "name": "class LevelScaledEffectTemplate", + "bases": [ + "StatisticEffectTemplate", + "GameEffectTemplate", + "PropertyClass" + ], + "hash": 1004538019, + "properties": { + "m_effectName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2029161513 + }, + "m_effectCategory": { + "type": "std::string", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1852673222 + }, + "m_sortOrder": { + "type": "int", + "id": 2, + "offset": 148, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1411218206 + }, + "m_duration": { + "type": "double", + "id": 3, + "offset": 192, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2727932435 + }, + "m_stackingCategories": { + "type": "std::string", + "id": 4, + "offset": 160, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1774497525 + }, + "m_isPersistent": { + "type": "bool", + "id": 5, + "offset": 153, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 923861920 + }, + "m_bIsOnPet": { + "type": "bool", + "id": 6, + "offset": 154, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 522593303 + }, + "m_isPublic": { + "type": "bool", + "id": 7, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1728439822 + }, + "m_visualEffectAddName": { + "type": "std::string", + "id": 8, + "offset": 200, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3382086694 + }, + "m_visualEffectRemoveName": { + "type": "std::string", + "id": 9, + "offset": 232, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1541697323 + }, + "m_onAddFunctorName": { + "type": "std::string", + "id": 10, + "offset": 280, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1561843107 + }, + "m_onRemoveFunctorName": { + "type": "std::string", + "id": 11, + "offset": 312, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2559017864 + }, + "m_stackingRule": { + "type": "enum STACKING_RULE", + "id": 12, + "offset": 144, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 431568889, + "enum_options": { + "STACKING_ALLOWED": 0, + "STACKING_NOSTACK": 1, + "STACKING_REPLACE": 2 + } + }, + "m_scaleToLevel": { + "type": "int", + "id": 13, + "offset": 360, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2018266685 + }, + "m_scaleUp": { + "type": "bool", + "id": 14, + "offset": 364, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 975051008 + } + } + }, + "155800021": { + "name": "class SharedPointer", + "bases": [ + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 155800021, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + } + } + }, + "577336023": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 577336023, + "properties": { + "m_behaviors": { + "type": "class BehaviorTemplate*", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1197808594 + } + } + }, + "154320916": { + "name": "class RespecTieredSpellList", + "bases": [ + "PropertyClass" + ], + "hash": 154320916, + "properties": { + "m_spellList": { + "type": "unsigned int", + "id": 0, + "offset": 72, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1402125129 + }, + "m_upgradedSpellList": { + "type": "unsigned int", + "id": 1, + "offset": 88, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1475269301 + } + } + }, + "1858039720": { + "name": "class SharedPointer", + "bases": [ + "CinematicStageTemplate", + "PropertyClass" + ], + "hash": 1858039720, + "properties": { + "m_name": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1717359772 + }, + "m_duration": { + "type": "float", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 920323453 + }, + "m_actions": { + "type": "class SharedPointer", + "id": 2, + "offset": 112, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1380578687 + }, + "m_stageRelationships": { + "type": "class SharedPointer", + "id": 3, + "offset": 128, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 499983354 + }, + "m_cameras": { + "type": "std::string", + "id": 4, + "offset": 152, + "flags": 131079, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 3217341687 + }, + "m_altcameras": { + "type": "std::string", + "id": 5, + "offset": 176, + "flags": 131079, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1882980152 + }, + "m_bShowDefeatedText": { + "type": "bool", + "id": 6, + "offset": 232, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2068996589 + }, + "m_bForceStageToWaitOnAnimation": { + "type": "bool", + "id": 7, + "offset": 233, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2071596205 + }, + "m_animation": { + "type": "std::string", + "id": 8, + "offset": 200, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3431428731 + } + } + }, + "1006192407": { + "name": "class CameraReleaseCinematicAction", + "bases": [ + "CinematicAction", + "PropertyClass" + ], + "hash": 1006192407, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_releaseInterpolationDuration": { + "type": "float", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1807754278, + "enum_options": { + "__DEFAULT": "1.0" + } + } + } + }, + "1430635390": { + "name": "class ExtraHousingZoneBehaviorBase*", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1430635390, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + } + } + }, + "152955093": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 152955093, + "properties": { + "m_logoFile": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2251052844 + }, + "m_displayTime": { + "type": "float", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1039626236 + }, + "m_text": { + "type": "std::string", + "id": 2, + "offset": 144, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1717580128 + } + } + }, + "1005519432": { + "name": "class PetTalentTemplate", + "bases": [ + "PetTalentBaseTemplate", + "CoreTemplate", + "PropertyClass" + ], + "hash": 1005519432, + "properties": { + "m_behaviors": { + "type": "class BehaviorTemplate*", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1197808594 + }, + "m_talentName": { + "type": "std::string", + "id": 1, + "offset": 96, + "flags": 134217735, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2455147588 + }, + "m_displayName": { + "type": "std::string", + "id": 2, + "offset": 136, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2446900370 + }, + "m_description": { + "type": "std::string", + "id": 3, + "offset": 168, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1649374815 + }, + "m_imageIndex": { + "type": "unsigned int", + "id": 4, + "offset": 200, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1781902856 + }, + "m_imageName": { + "type": "std::string", + "id": 5, + "offset": 208, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2391520543 + }, + "m_rank": { + "type": "unsigned char", + "id": 6, + "offset": 240, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 857403388 + }, + "m_breedsAsTalentName": { + "type": "std::string", + "id": 7, + "offset": 248, + "flags": 268435463, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2143399629, + "enum_options": { + "__BASECLASS": "PetTalentBaseTemplate" + } + }, + "m_bRetired": { + "type": "bool", + "id": 8, + "offset": 280, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 904227684, + "enum_options": { + "__DEFAULT": 0 + } + }, + "m_unsearchable": { + "type": "bool", + "id": 9, + "offset": 281, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1760679968, + "enum_options": { + "__DEFAULT": 0 + } + }, + "m_effectList": { + "type": "class GameEffectInfo*", + "id": 10, + "offset": 288, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 924514724 + }, + "m_maxStatList": { + "type": "class PetStat", + "id": 11, + "offset": 304, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2545839409 + } + } + }, + "1426889994": { + "name": "struct MoveStateAnimation*", + "bases": [ + "PropertyClass" + ], + "hash": 1426889994, + "properties": { + "m_nMoveState": { + "type": "enum MoveState", + "id": 0, + "offset": 72, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1430960270, + "enum_options": { + "MS_WALKING": 0, + "MS_RUNNING": 1, + "MS_SWIMMING": 2, + "MS_FLYING": 3, + "MS_JUMPING": 4, + "MS_FALLING": 5, + "MS_SLIDING": 6, + "__DEFAULT": "MS_WALKING" + } + }, + "m_nMoveAnimation": { + "type": "enum MoveAnimation", + "id": 1, + "offset": 76, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3179560950, + "enum_options": { + "MA_IDLE": 0, + "MA_FORWARD": 1, + "MA_BACK": 2, + "MA_LEFT": 3, + "MA_RIGHT": 4, + "MA_TURNLEFT": 5, + "MA_TURNRIGHT": 6, + "__DEFAULT": "MA_IDLE" + } + }, + "m_sAnimationName": { + "type": "std::string", + "id": 2, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1757815023 + } + } + }, + "152799481": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 152799481, + "properties": { + "m_name": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1717359772 + } + } + }, + "577605360": { + "name": "class EquivalentItemBehaviorTemplate", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 577605360, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3130754092 + }, + "m_equivalentItemTemplateID": { + "type": "gid", + "id": 1, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 657877294 + } + } + }, + "1004997293": { + "name": "enum SpawnObjectInfo::StartNodeType", + "bases": [], + "hash": 1004997293, + "properties": {} + }, + "1425992564": { + "name": "class SharedPointer", + "bases": [ + "GameEffectBase", + "PropertyClass" + ], + "hash": 1425992564, + "properties": { + "m_currentTickCount": { + "type": "double", + "id": 0, + "offset": 80, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2533274692 + }, + "m_effectNameID": { + "type": "unsigned int", + "id": 1, + "offset": 96, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1204067144 + }, + "m_bIsOnPet": { + "type": "bool", + "id": 2, + "offset": 73, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 522593303 + }, + "m_originatorID": { + "type": "gid", + "id": 3, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1131810019 + }, + "m_itemSlotID": { + "type": "unsigned int", + "id": 4, + "offset": 112, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1895747595 + }, + "m_internalID": { + "type": "int", + "id": 5, + "offset": 92, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1643137924 + }, + "m_endTime": { + "type": "unsigned int", + "id": 6, + "offset": 88, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 716479635 + }, + "m_templateID": { + "type": "unsigned int", + "id": 7, + "offset": 128, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1286746870 + } + } + }, + "1858184528": { + "name": "class BuffDebuffEventCinematicAction*", + "bases": [ + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 1858184528, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + } + } + }, + "1425351354": { + "name": "class ControlTickedSlider*", + "bases": [ + "ControlSlider", + "ControlBar", + "Window", + "PropertyClass" + ], + "hash": 1425351354, + "properties": { + "m_sName": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306437263 + }, + "m_Children": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621225959 + }, + "m_Style": { + "type": "unsigned int", + "id": 2, + "offset": 152, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152 + } + }, + "m_Flags": { + "type": "unsigned int", + "id": 3, + "offset": 156, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } + }, + "m_Window": { + "type": "class Rect", + "id": 4, + "offset": 160, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3105139380 + }, + "m_fTargetAlpha": { + "type": "float", + "id": 5, + "offset": 212, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1809129834 + }, + "m_fDisabledAlpha": { + "type": "float", + "id": 6, + "offset": 216, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1389987675 + }, + "m_fAlpha": { + "type": "float", + "id": 7, + "offset": 208, + "flags": 65671, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 482130755 + }, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3623628394 + }, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2102211316 + }, + "m_sScript": { + "type": "std::string", + "id": 10, + "offset": 352, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1846695875 + }, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3389835433 + }, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547159940 + }, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513510520 + }, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3091503757 + }, + "m_fPosition": { + "type": "float", + "id": 16, + "offset": 584, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1808212114 + }, + "m_BaseColor": { + "type": "class Color", + "id": 17, + "offset": 588, + "flags": 262279, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2172251096 + }, + "m_BarColor": { + "type": "class Color", + "id": 18, + "offset": 592, + "flags": 262279, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2259916498 + }, + "m_bDisplayVertical": { + "type": "bool", + "id": 19, + "offset": 596, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1359621189 + }, + "m_pBarMaterial": { + "type": "class SharedPointer", + "id": 20, + "offset": 600, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2481929515 + }, + "m_pTopLeftMaterial": { + "type": "class SharedPointer", + "id": 21, + "offset": 616, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3248096916 + }, + "m_pCenterMaterial": { + "type": "class SharedPointer", + "id": 22, + "offset": 632, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1519560055 + }, + "m_pBottomRightMaterial": { + "type": "class SharedPointer", + "id": 23, + "offset": 648, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2932444745 + }, + "m_fMin": { + "type": "float", + "id": 24, + "offset": 700, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 309551905 + }, + "m_fMax": { + "type": "float", + "id": 25, + "offset": 704, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 309551651 + }, + "m_nTabWidth": { + "type": "int", + "id": 26, + "offset": 708, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1554957503 + }, + "m_nNumberOfTicks": { + "type": "int", + "id": 27, + "offset": 712, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1073178596 + } + } + }, + "577655237": { + "name": "class ReqHasGoal*", + "bases": [ + "Requirement", + "PropertyClass" + ], + "hash": 577655237, + "properties": { + "m_applyNOT": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1746328074, + "enum_options": { + "__DEFAULT": 0 + } + }, + "m_operator": { + "type": "enum Requirement::Operator", + "id": 1, + "offset": 76, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2672792317, + "enum_options": { + "ROP_AND": 0, + "ROP_OR": 1, + "__DEFAULT": "ROP_AND" + } + }, + "m_questName": { + "type": "std::string", + "id": 2, + "offset": 80, + "flags": 268435463, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1702112846, + "enum_options": { + "__BASECLASS": "QuestTemplate" + } + }, + "m_goalName": { + "type": "std::string", + "id": 3, + "offset": 112, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1521627807 + }, + "m_requiredStatus": { + "type": "enum GoalStatusRequirement", + "id": 4, + "offset": 144, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1705123608, + "enum_options": { + "DontCare": 0, + "Complete": 1, + "Incomplete": 2, + "__DEFAULT": "DontCare" + } + } + } + }, + "153720056": { + "name": "class NamedEffect", + "bases": [ + "GameEffectBase", + "PropertyClass" + ], + "hash": 153720056, + "properties": { + "m_currentTickCount": { + "type": "double", + "id": 0, + "offset": 80, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2533274692 + }, + "m_effectNameID": { + "type": "unsigned int", + "id": 1, + "offset": 96, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1204067144 + }, + "m_bIsOnPet": { + "type": "bool", + "id": 2, + "offset": 73, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 522593303 + }, + "m_originatorID": { + "type": "gid", + "id": 3, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1131810019 + }, + "m_itemSlotID": { + "type": "unsigned int", + "id": 4, + "offset": 112, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1895747595 + }, + "m_internalID": { + "type": "int", + "id": 5, + "offset": 92, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1643137924 + }, + "m_endTime": { + "type": "unsigned int", + "id": 6, + "offset": 88, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 716479635 + }, + "m_overrideName": { + "type": "std::string", + "id": 7, + "offset": 128, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1990707228 + } + } + }, + "1858950436": { + "name": "class ContainerEffectInfo*", + "bases": [ + "GameEffectInfo", + "PropertyClass" + ], + "hash": 1858950436, + "properties": { + "m_effectName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2029161513 + } + } + }, + "1006090642": { + "name": "class BadgeButton*", + "bases": [ + "ControlCheckBox", + "ControlButton", + "Window", + "PropertyClass" + ], + "hash": 1006090642, + "properties": { + "m_sName": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306437263 + }, + "m_Children": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621225959 + }, + "m_Style": { + "type": "unsigned int", + "id": 2, + "offset": 152, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152, + "EFFECT_SCALE": 67108864, + "LOCK_ICON_SIZE": 33554432, + "LEFT_TEXT": 536870912, + "NO_FIT_TEXT": 1073741824, + "CHECKBOX_TEXTOVERIMAGE": 16777216 + } + }, + "m_Flags": { + "type": "unsigned int", + "id": 3, + "offset": 156, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } + }, + "m_Window": { + "type": "class Rect", + "id": 4, + "offset": 160, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3105139380 + }, + "m_fTargetAlpha": { + "type": "float", + "id": 5, + "offset": 212, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1809129834 + }, + "m_fDisabledAlpha": { + "type": "float", + "id": 6, + "offset": 216, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1389987675 + }, + "m_fAlpha": { + "type": "float", + "id": 7, + "offset": 208, + "flags": 65671, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 482130755 + }, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3623628394 + }, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2102211316 + }, + "m_sScript": { + "type": "std::string", + "id": 10, + "offset": 352, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1846695875 + }, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3389835433 + }, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547159940 + }, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513510520 + }, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3091503757 + }, + "m_bToggle": { + "type": "bool", + "id": 16, + "offset": 608, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2071810903 + }, + "m_bButtonDown": { + "type": "bool", + "id": 17, + "offset": 609, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 840041705 + }, + "m_sLabel": { + "type": "std::wstring", + "id": 18, + "offset": 616, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2207009163 + }, + "m_labelOffset": { + "type": "class Rect", + "id": 19, + "offset": 832, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1990646723 + }, + "m_pButton": { + "type": "class SharedPointer", + "id": 20, + "offset": 656, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1543855875 + }, + "m_HotKey": { + "type": "unsigned int", + "id": 21, + "offset": 672, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1631553409 + }, + "m_Color": { + "type": "class Color", + "id": 22, + "offset": 676, + "flags": 262279, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1753714077 + }, + "m_bCursorOver": { + "type": "bool", + "id": 23, + "offset": 689, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 283981103 + }, + "m_bAbortWhenCursorNotOver": { + "type": "bool", + "id": 24, + "offset": 706, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 325405258 + }, + "m_bHotKeyDown": { + "type": "bool", + "id": 25, + "offset": 680, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 616989185 + }, + "m_fTime": { + "type": "float", + "id": 26, + "offset": 684, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 883746156 + }, + "m_bGreyed": { + "type": "bool", + "id": 27, + "offset": 688, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1566556053 + }, + "m_fMaxScale": { + "type": "float", + "id": 28, + "offset": 692, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2070186635 + }, + "m_fScaleSpeed": { + "type": "float", + "id": 29, + "offset": 696, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1457135702 + }, + "m_bUseDropShadow": { + "type": "bool", + "id": 30, + "offset": 704, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 93063037 + }, + "m_bUseOutline": { + "type": "bool", + "id": 31, + "offset": 705, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 744292994 + }, + "m_pGreyedState": { + "type": "class SharedPointer", + "id": 32, + "offset": 768, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2703352263 + }, + "m_pNormalState": { + "type": "class SharedPointer", + "id": 33, + "offset": 752, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1887909808 + }, + "m_pHighlightedState": { + "type": "class SharedPointer", + "id": 34, + "offset": 784, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2200177608 + }, + "m_pSelectedState": { + "type": "class SharedPointer", + "id": 35, + "offset": 800, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2266776432 + }, + "m_pDepressedState": { + "type": "class SharedPointer", + "id": 36, + "offset": 816, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1878185798 + }, + "m_nGroupID": { + "type": "int", + "id": 37, + "offset": 880, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 403966850 + }, + "m_bChecked": { + "type": "bool", + "id": 38, + "offset": 884, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 958955100 + }, + "m_pCheckedState": { + "type": "class SharedPointer", + "id": 39, + "offset": 888, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1210539694 + }, + "m_pCheckedGreyedState": { + "type": "class SharedPointer", + "id": 40, + "offset": 904, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2702030126 + }, + "m_pCheckedHighlightedState": { + "type": "class SharedPointer", + "id": 41, + "offset": 920, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1320097679 + }, + "m_pCheckedDepressedState": { + "type": "class SharedPointer", + "id": 42, + "offset": 936, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1609188685 + } + } + }, + "153414636": { + "name": "class CharacterRegistry", + "bases": [ + "PropertyClass" + ], + "hash": 153414636, + "properties": { + "m_displayedTips": { + "type": "gid", + "id": 0, + "offset": 112, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": true, + "pointer": false, + "hash": 1546509239 + }, + "m_finishedTips": { + "type": "gid", + "id": 1, + "offset": 128, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": true, + "pointer": false, + "hash": 1286351938 + }, + "m_chatStatsByState": { + "type": "struct CharacterChatStatsByState", + "id": 2, + "offset": 144, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": true, + "pointer": false, + "hash": 3487355966 + }, + "m_chatStatsByText": { + "type": "struct CharacterChatStatsByText", + "id": 3, + "offset": 176, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": true, + "pointer": false, + "hash": 3265910788 + }, + "m_lockList": { + "type": "struct LockData", + "id": 4, + "offset": 208, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": true, + "pointer": false, + "hash": 1946956503 + }, + "m_friendList": { + "type": "struct FriendData", + "id": 5, + "offset": 288, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": true, + "pointer": false, + "hash": 2895296598 + }, + "m_activeQuestId": { + "type": "gid", + "id": 6, + "offset": 304, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": true, + "pointer": false, + "hash": 229595059 + }, + "m_activeGoalId": { + "type": "unsigned int", + "id": 7, + "offset": 336, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": true, + "pointer": false, + "hash": 1967307577 + }, + "m_activeGoalSetByPlayer": { + "type": "bool", + "id": 8, + "offset": 340, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": true, + "pointer": false, + "hash": 1365712422 + }, + "m_crownShopSettings": { + "type": "class SharedPointer", + "id": 9, + "offset": 240, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": true, + "pointer": true, + "hash": 2058124240 + }, + "m_loginHistory": { + "type": "class LoginHistoryEntry", + "id": 10, + "offset": 360, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": true, + "pointer": false, + "hash": 1668671153 + } + } + }, + "1426522259": { + "name": "class SharedPointer", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1426522259, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + } + } + }, + "580128221": { + "name": "class WizPolymorphTemplate", + "bases": [ + "CoreTemplate", + "PropertyClass" + ], + "hash": 580128221, + "properties": { + "m_behaviors": { + "type": "class BehaviorTemplate*", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1197808594 + }, + "m_templateID": { + "type": "unsigned int", + "id": 1, + "offset": 96, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1286746870 + }, + "m_mobTemplateID": { + "type": "unsigned int", + "id": 2, + "offset": 100, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1268089108 + }, + "m_effects": { + "type": "class GameEffectInfo*", + "id": 3, + "offset": 104, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 588086299 + } + } + }, + "1426074023": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1426074023, + "properties": { + "m_tag": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1764749335 + }, + "m_unlocked": { + "type": "bool", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 974984968 + } + } + }, + "1859440048": { + "name": "class ReqDerbyPlace", + "bases": [ + "ReqNumeric", + "Requirement", + "PropertyClass" + ], + "hash": 1859440048, + "properties": { + "m_applyNOT": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1746328074, + "enum_options": { + "__DEFAULT": 0 + } + }, + "m_operator": { + "type": "enum Requirement::Operator", + "id": 1, + "offset": 76, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2672792317, + "enum_options": { + "ROP_AND": 0, + "ROP_OR": 1, + "__DEFAULT": "ROP_AND" + } + }, + "m_numericValue": { + "type": "float", + "id": 2, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 521915239 + }, + "m_operatorType": { + "type": "enum ReqNumeric::OPERATOR_TYPE", + "id": 3, + "offset": 84, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2228122961, + "enum_options": { + "OPERATOR_UNKNOWN": 4294967295, + "OPERATOR_EQUALS": 0, + "OPERATOR_GREATER_THAN": 1, + "OPERATOR_LESS_THAN": 2, + "OPERATOR_GREATER_THAN_EQ": 3, + "OPERATOR_LESS_THAN_EQ": 4 + } + } + } + }, + "578480685": { + "name": "class PromoGiftList*", + "bases": [ + "PropertyClass" + ], + "hash": 578480685, + "properties": { + "m_promoGifts": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 885904406 + } + } + }, + "1006202647": { + "name": "class CameraReleaseCinematicAction*", + "bases": [ + "CinematicAction", + "PropertyClass" + ], + "hash": 1006202647, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_releaseInterpolationDuration": { + "type": "float", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1807754278, + "enum_options": { + "__DEFAULT": "1.0" + } + } + } + }, + "1859440043": { + "name": "class ReqDerbyPlace*", + "bases": [ + "ReqNumeric", + "Requirement", + "PropertyClass" + ], + "hash": 1859440043, + "properties": { + "m_applyNOT": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1746328074, + "enum_options": { + "__DEFAULT": 0 + } + }, + "m_operator": { + "type": "enum Requirement::Operator", + "id": 1, + "offset": 76, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2672792317, + "enum_options": { + "ROP_AND": 0, + "ROP_OR": 1, + "__DEFAULT": "ROP_AND" + } + }, + "m_numericValue": { + "type": "float", + "id": 2, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 521915239 + }, + "m_operatorType": { + "type": "enum ReqNumeric::OPERATOR_TYPE", + "id": 3, + "offset": 84, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2228122961, + "enum_options": { + "OPERATOR_UNKNOWN": 4294967295, + "OPERATOR_EQUALS": 0, + "OPERATOR_GREATER_THAN": 1, + "OPERATOR_LESS_THAN": 2, + "OPERATOR_GREATER_THAN_EQ": 3, + "OPERATOR_LESS_THAN_EQ": 4 + } + } + } + }, + "578431894": { + "name": "class ControlComboBox*", + "bases": [ + "Window", + "PropertyClass" + ], + "hash": 578431894, + "properties": { + "m_sName": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306437263 + }, + "m_Children": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621225959 + }, + "m_Style": { + "type": "unsigned int", + "id": 2, + "offset": 152, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152, + "CBF_SORTED": 16777216 + } + }, + "m_Flags": { + "type": "unsigned int", + "id": 3, + "offset": 156, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } + }, + "m_Window": { + "type": "class Rect", + "id": 4, + "offset": 160, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3105139380 + }, + "m_fTargetAlpha": { + "type": "float", + "id": 5, + "offset": 212, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1809129834 + }, + "m_fDisabledAlpha": { + "type": "float", + "id": 6, + "offset": 216, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1389987675 + }, + "m_fAlpha": { + "type": "float", + "id": 7, + "offset": 208, + "flags": 65671, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 482130755 + }, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3623628394 + }, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2102211316 + }, + "m_sScript": { + "type": "std::string", + "id": 10, + "offset": 352, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1846695875 + }, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3389835433 + }, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547159940 + }, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513510520 + }, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3091503757 + }, + "m_Items": { + "type": "class ComboItem", + "id": 16, + "offset": 584, + "flags": 135, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2627949239 + }, + "m_nSelected": { + "type": "int", + "id": 17, + "offset": 608, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1017366545 + }, + "m_nExpandedSize": { + "type": "int", + "id": 18, + "offset": 612, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1542607084 + }, + "m_nButtonSize": { + "type": "int", + "id": 19, + "offset": 616, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1917634655 + }, + "m_pButtonMaterial": { + "type": "class SharedPointer", + "id": 20, + "offset": 624, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2439977842 + }, + "m_buttonStyle": { + "type": "class SharedPointer", + "id": 21, + "offset": 736, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1791389598 + } + } + }, + "155144782": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 155144782, + "properties": { + "m_sCategory": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1996239916 + }, + "m_numCategoryInInventory": { + "type": "int", + "id": 1, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 639845069 + } + } + }, + "578054091": { + "name": "class SharedPointer", + "bases": [ + "CoreTemplate", + "PropertyClass" + ], + "hash": 578054091, + "properties": { + "m_behaviors": { + "type": "class BehaviorTemplate*", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1197808594 + }, + "m_name": { + "type": "std::string", + "id": 1, + "offset": 96, + "flags": 134217735, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1717359772 + }, + "m_spellNameList": { + "type": "std::string", + "id": 2, + "offset": 136, + "flags": 268435463, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2848889656, + "enum_options": { + "__BASECLASS": "SpellTemplate" } + } + } + }, + "154322196": { + "name": "class RespecTieredSpellList*", + "bases": [ + "PropertyClass" + ], + "hash": 154322196, + "properties": { + "m_spellList": { + "type": "unsigned int", + "id": 0, + "offset": 72, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1402125129 + }, + "m_upgradedSpellList": { + "type": "unsigned int", + "id": 1, + "offset": 88, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1475269301 + } + } + }, + "577733819": { + "name": "class PriceModifiers", + "bases": [ + "PropertyClass" + ], + "hash": 577733819, + "properties": { + "m_shoppingColors": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 646294186 + }, + "m_dyeShopMods": { + "type": "class SharedPointer", + "id": 1, + "offset": 88, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2565828981 + }, + "m_sellMods": { + "type": "class SharedPointer", + "id": 2, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 789769746 + }, + "m_treasureMods": { + "type": "class SharedPointer", + "id": 3, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2392153009 + } + } + }, + "1012377041": { + "name": "class SharedPointer", + "bases": [ + "AnimateActorCinematicAction", + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 1012377041, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 }, - "m_eggName": { + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 + }, + "m_animation": { + "type": "std::string", + "id": 2, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3431428731 + }, + "m_backupAnimation": { "type": "std::string", + "id": 3, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1661537937 + }, + "m_default": { + "type": "bool", + "id": 4, + "offset": 184, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1014207576 + }, + "m_evenWhileDead": { + "type": "bool", + "id": 5, + "offset": 185, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2100875368 + }, + "m_fadeOutAfter": { + "type": "bool", "id": 6, - "offset": 176, - "flags": 8388615, + "offset": 186, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1732162479 + "hash": 2006083917 }, - "m_eggColor": { - "type": "int", + "m_startsImportantAnimations": { + "type": "bool", "id": 7, - "offset": 208, + "offset": 187, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1279450220 + "hash": 734711685 }, - "m_fScale": { - "type": "float", + "m_forcesStageToWait": { + "type": "bool", "id": 8, - "offset": 212, + "offset": 188, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 503137701, + "hash": 74507905 + }, + "m_storeAnimForLateComers": { + "type": "bool", + "id": 9, + "offset": 190, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 634303291 + } + } + }, + "1427663574": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1427663574, + "properties": {} + }, + "1860802814": { + "name": "enum MinionType", + "bases": [], + "hash": 1860802814, + "properties": {} + }, + "1009112941": { + "name": "class SharedPointer", + "bases": [ + "CinematicAction", + "PropertyClass" + ], + "hash": 1009112941, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2237098605 + }, + "m_rotationInfo": { + "type": "class SharedPointer", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2332010820 + } + } + }, + "1427509360": { + "name": "class BadgeFilterDescriptionList", + "bases": [ + "PropertyClass" + ], + "hash": 1427509360, + "properties": { + "m_badgeFilterDescriptionList": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 3252782039 + } + } + }, + "1860261725": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1860261725, + "properties": { + "m_location": { + "type": "class Vector3D", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2239683611 + }, + "m_boxLengths": { + "type": "class Vector3D", + "id": 1, + "offset": 84, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2872763232 + }, + "m_templateID.m_full": { + "type": "unsigned __int64", + "id": 2, + "offset": 96, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 633907631 + }, + "m_respawnTime": { + "type": "float", + "id": 3, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1554573574 + }, + "m_numSpawns": { + "type": "int", + "id": 4, + "offset": 108, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1269366534 + }, + "m_zoneLevelMin": { + "type": "unsigned int", + "id": 5, + "offset": 112, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1028934149 + }, + "m_zoneLevelMax": { + "type": "unsigned int", + "id": 6, + "offset": 116, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1028933895 + }, + "m_zoneLevelUp": { + "type": "unsigned int", + "id": 7, + "offset": 120, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1342541638 + } + } + }, + "1007357949": { + "name": "class TargetCountSpellEffect*", + "bases": [ + "SpellEffect", + "PropertyClass" + ], + "hash": 1007357949, + "properties": { + "m_effectType": { + "type": "enum SpellEffect::kSpellEffects", + "id": 0, + "offset": 72, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2578255295, "enum_options": { - "__DEFAULT": "1.0" + "kInvalidSpellEffect": 0, + "kDamage": 1, + "kDamageNoCrit": 2, + "kHeal": 3, + "kHealPercent": 4, + "kSetHealPercent": 113, + "kStealHealth": 5, + "kReduceOverTime": 6, + "kDetonateOverTime": 7, + "kPushCharm": 8, + "kStealCharm": 9, + "kPushWard": 10, + "kStealWard": 11, + "kPushOverTime": 12, + "kStealOverTime": 13, + "kRemoveCharm": 14, + "kRemoveWard": 15, + "kRemoveOverTime": 16, + "kRemoveAura": 17, + "kSwapAll": 18, + "kSwapCharm": 19, + "kSwapWard": 20, + "kSwapOverTime": 21, + "kModifyIncomingDamage": 22, + "kModifyIncomingDamageFlat": 119, + "kMaximumIncomingDamage": 23, + "kModifyIncomingHeal": 24, + "kModifyIncomingHealFlat": 118, + "kModifyIncomingDamageType": 25, + "kModifyIncomingArmorPiercing": 26, + "kModifyOutgoingDamage": 27, + "kModifyOutgoingDamageFlat": 121, + "kModifyOutgoingHeal": 28, + "kModifyOutgoingHealFlat": 120, + "kModifyOutgoingDamageType": 29, + "kModifyOutgoingArmorPiercing": 30, + "kModifyOutgoingStealHealth": 31, + "kModifyIncomingStealHealth": 32, + "kBounceNext": 33, + "kBouncePrevious": 34, + "kBounceBack": 35, + "kBounceAll": 36, + "kAbsorbDamage": 37, + "kAbsorbHeal": 38, + "kModifyAccuracy": 39, + "kDispel": 40, + "kConfusion": 41, + "kCloakedCharm": 42, + "kCloakedWard": 43, + "kStunResist": 44, + "kClue": 111, + "kPipConversion": 45, + "kCritBoost": 46, + "kCritBlock": 47, + "kPolymorph": 48, + "kDelayCast": 49, + "kModifyCardCloak": 50, + "kModifyCardDamage": 51, + "kModifyCardAccuracy": 53, + "kModifyCardMutation": 54, + "kModifyCardRank": 55, + "kModifyCardArmorPiercing": 56, + "kSummonCreature": 65, + "kTeleportPlayer": 66, + "kStun": 67, + "kDampen": 68, + "kReshuffle": 69, + "kMindControl": 70, + "kModifyPips": 71, + "kModifyPowerPips": 72, + "kModifyShadowPips": 73, + "kModifyHate": 74, + "kDamageOverTime": 75, + "kHealOverTime": 76, + "kModifyPowerPipChance": 77, + "kModifyRank": 78, + "kStunBlock": 79, + "kRevealCloak": 80, + "kInstantKill": 81, + "kAfterlife": 82, + "kDeferredDamage": 83, + "kDamagePerTotalPipPower": 84, + "kModifyCardHeal": 52, + "kModifyCardCharm": 57, + "kModifyCardWard": 58, + "kModifyCardOutgoingDamage": 59, + "kModifyCardOutgoingAccuracy": 60, + "kModifyCardOutgoingHeal": 61, + "kModifyCardOutgoingArmorPiercing": 62, + "kModifyCardIncomingDamage": 63, + "kModifyCardAbsorbDamage": 64, + "kCloakedWardNoRemove": 86, + "kAddCombatTriggerList": 87, + "kRemoveCombatTriggerList": 88, + "kBacklashDamage": 89, + "kModifyBacklash": 90, + "kIntercept": 91, + "kShadowSelf": 92, + "kShadowCreature": 93, + "kModifyShadowCreatureLevel": 94, + "kSelectShadowCreatureAttackTarget": 95, + "kShadowDecrementTurn": 96, + "kCritBoostSchoolSpecific": 97, + "kSpawnCreature": 98, + "kUnPolymorph": 99, + "kPowerPipConversion": 100, + "kProtectCardBeneficial": 101, + "kProtectCardHarmful": 102, + "kProtectBeneficial": 103, + "kProtectHarmful": 104, + "kDivideDamage": 105, + "kCollectEssence": 106, + "kKillCreature": 107, + "kDispelBlock": 108, + "kConfusionBlock": 109, + "kModifyPipRoundRate": 110, + "kMaxHealthDamage": 112, + "kUntargetable": 114, + "kMakeTargetable": 115, + "kForceTargetable": 116, + "kRemoveStunBlock": 117, + "kExitCombat": 122, + "kSuspendPips": 123, + "kResumePips": 124, + "kAutoPass": 125, + "kStopAutoPass": 126, + "kVanish": 127, + "kStopVanish": 128, + "kMaxHealthHeal": 129, + "kHealByWard": 130, + "kTaunt": 131, + "kPacify": 132, + "kRemoveTargetRestriction": 133, + "kConvertHangingEffect": 134, + "kAddSpellToDeck": 135, + "kAddSpellToHand": 136, + "kModifyIncomingDamageOverTime": 137, + "kModifyIncomingHealOverTime": 138, + "kModifyCardDamagebyRank": 139, + "kPushConvertedCharm": 140, + "kStealConvertedCharm": 141, + "kPushConvertedWard": 142, + "kStealConvertedWard": 143, + "kPushConvertedOverTime": 144, + "kStealConvertedOverTime": 145, + "kRemoveConvertedCharm": 146, + "kRemoveConvertedWard": 147, + "kRemoveConvertedOverTime": 148, + "kModifyOverTimeDuration": 149, + "kModifySchoolPips": 150 } }, - "m_sHatchRate": { + "m_effectParam": { + "type": "int", + "id": 1, + "offset": 76, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 357920024 + }, + "m_disposition": { + "type": "enum SpellEffect::kHangingDisposition", + "id": 2, + "offset": 80, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1904841031, + "enum_options": { + "kBoth": 0, + "kBeneficial": 1, + "kHarmful": 2 + } + }, + "m_sDamageType": { "type": "std::string", - "id": 9, - "offset": 216, + "id": 3, + "offset": 88, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1870311714 + "hash": 2501054223 }, - "m_wowFactor": { + "m_damageType": { "type": "unsigned int", - "id": 10, - "offset": 248, + "id": 4, + "offset": 84, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 737882766 + }, + "m_pipNum": { + "type": "int", + "id": 5, + "offset": 128, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1232905609 + "hash": 830827539 }, - "m_flyingOffset": { + "m_actNum": { + "type": "int", + "id": 6, + "offset": 132, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 236824866 + }, + "m_effectTarget": { + "type": "enum SpellEffect::kEffectTarget", + "id": 7, + "offset": 140, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2458940523, + "enum_options": { + "kInvalidTarget": 0, + "kSpell": 1, + "kSpecificSpells": 2, + "kGlobal": 3, + "kEnemyTeam": 4, + "kEnemyTeamAllAtOnce": 5, + "kFriendlyTeam": 6, + "kFriendlyTeamAllAtOnce": 7, + "kEnemySingle": 8, + "kFriendlySingle": 9, + "kMinion": 10, + "kFriendlyMinion": 17, + "kEnemyMinion": 18, + "kSelf": 11, + "kAtLeastOneEnemy": 13, + "kPreselectedEnemySingle": 12, + "kMultiTargetEnemy": 14, + "kMultiTargetFriendly": 15, + "kFriendlySingleNotMe": 16 + } + }, + "m_numRounds": { + "type": "int", + "id": 8, + "offset": 144, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1229753829 + }, + "m_paramPerRound": { + "type": "int", + "id": 9, + "offset": 148, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 683234234 + }, + "m_healModifier": { "type": "float", - "id": 11, - "offset": 252, + "id": 10, + "offset": 152, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1899002567 + "hash": 1317921248, + "enum_options": { + "__DEFAULT": "1.0" + } }, - "m_maxStats": { - "type": "class PetStat", + "m_spellTemplateID": { + "type": "unsigned int", + "id": 11, + "offset": 120, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 585567702 + }, + "m_enchantmentSpellTemplateID": { + "type": "unsigned int", "id": 12, - "offset": 256, + "offset": 124, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 246955115 + }, + "m_act": { + "type": "bool", + "id": 13, + "offset": 136, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 269510283 + }, + "m_cloaked": { + "type": "bool", + "id": 14, + "offset": 157, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 7349510 + }, + "m_bypassProtection": { + "type": "bool", + "id": 15, + "offset": 159, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1657138252 + }, + "m_armorPiercingParam": { + "type": "int", + "id": 16, + "offset": 160, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2025530205 + }, + "m_chancePerTarget": { + "type": "int", + "id": 17, + "offset": 164, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 845426794 + }, + "m_protected": { + "type": "bool", + "id": 18, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1445655037 + }, + "m_converted": { + "type": "bool", + "id": 19, + "offset": 169, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1590428797 + }, + "m_rank": { + "type": "int", + "id": 20, + "offset": 208, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 219803942 + }, + "m_effectLists": { + "type": "class SharedPointer", + "id": 21, + "offset": 224, "flags": 7, "container": "List", "dynamic": true, "singleton": false, + "pointer": true, + "hash": 1054793289 + } + } + }, + "1427247042": { + "name": "class TextTagPair", + "bases": [ + "PropertyClass" + ], + "hash": 1427247042, + "properties": { + "m_tag": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, "pointer": false, - "hash": 1846363080 + "hash": 1764749335 }, - "m_startStats": { - "type": "class PetStat", - "id": 13, - "offset": 272, + "m_time": { + "type": "float", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 310085638 + } + } + }, + "155388885": { + "name": "class WizQuestData*", + "bases": [ + "PropertyClass" + ], + "hash": 155388885, + "properties": { + "m_name": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1717359772 + }, + "m_questNameID": { + "type": "unsigned int", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1530354349 + }, + "m_title": { + "type": "std::string", + "id": 2, + "offset": 112, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2308614141 + }, + "m_id": { + "type": "gid", + "id": 3, + "offset": 232, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2090569797 + }, + "m_type": { + "type": "int", + "id": 4, + "offset": 224, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 219902012 + }, + "m_level": { + "type": "int", + "id": 5, + "offset": 228, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 801285362 + }, + "m_mainline": { + "type": "bool", + "id": 6, + "offset": 241, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1749856224 + }, + "m_readyToTurnIn": { + "type": "bool", + "id": 7, + "offset": 242, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 562395883 + }, + "m_activityType": { + "type": "enum QuestTemplate::ActivityType", + "id": 8, + "offset": 244, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 231656390, + "enum_options": { + "QuestTemplate::ACTIVITY_NotActivity": 0, + "QuestTemplate::ACTIVITY_Spell": 1, + "QuestTemplate::ACTIVITY_Crafting": 2, + "QuestTemplate::ACTIVITY_Fishing": 3, + "QuestTemplate::ACTIVITY_Gardening": 4, + "QuestTemplate::ACTIVITY_Pet": 5 + } + }, + "m_skipQHAutoSelect": { + "type": "bool", + "id": 9, + "offset": 248, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2024815836 + }, + "m_goalList": { + "type": "class SharedPointer", + "id": 10, + "offset": 256, "flags": 7, "container": "List", "dynamic": true, "singleton": false, + "pointer": true, + "hash": 748820753 + } + } + }, + "578293631": { + "name": "class SharedPointer", + "bases": [ + "GameObjectTemplate", + "CoreTemplate", + "PropertyClass" + ], + "hash": 578293631, + "properties": { + "m_behaviors": { + "type": "class BehaviorTemplate*", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1197808594 + }, + "m_objectName": { + "type": "std::string", + "id": 1, + "offset": 96, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, "pointer": false, - "hash": 2360362512 + "hash": 2154940147 }, - "m_talents": { + "m_templateID": { + "type": "unsigned int", + "id": 2, + "offset": 128, + "flags": 16777223, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1286746870 + }, + "m_visualID": { + "type": "unsigned int", + "id": 3, + "offset": 132, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1118778894 + }, + "m_adjectiveList": { "type": "std::string", - "id": 14, - "offset": 288, - "flags": 268435463, + "id": 4, + "offset": 248, + "flags": 7, "container": "List", "dynamic": true, "singleton": false, "pointer": false, - "hash": 1548787382, + "hash": 3195213318 + }, + "m_exemptFromAOI": { + "type": "bool", + "id": 5, + "offset": 240, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1457879059 + }, + "m_displayName": { + "type": "std::string", + "id": 6, + "offset": 168, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2446900370 + }, + "m_description": { + "type": "std::string", + "id": 7, + "offset": 136, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1649374815 + }, + "m_nObjectType": { + "type": "enum ObjectType", + "id": 8, + "offset": 200, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2118905880, "enum_options": { - "__BASECLASS": "PetTalentTemplate" + "OT_UNDEFINED": 0, + "OT_PLAYER": 1, + "OT_NPC": 2, + "OT_PROP": 3, + "OT_OBJECT": 4, + "OT_HOUSE": 5, + "OT_KEY": 6, + "OT_OLD_KEY": 7, + "OT_DEED": 8, + "OT_MAIL": 9, + "OT_RECIPE": 17, + "OT_EQUIP_HEAD": 10, + "OT_EQUIP_CHEST": 11, + "OT_EQUIP_LEGS": 12, + "OT_EQUIP_HANDS": 13, + "OT_EQUIP_FINGER": 14, + "OT_EQUIP_FEET": 15, + "OT_EQUIP_EAR": 16, + "OT_BUILDING_BLOCK": 18, + "OT_BUILDING_BLOCK_SOLID": 19, + "OT_GOLF": 20, + "OT_DOOR": 21, + "OT_PET": 22, + "OT_FABRIC": 23, + "OT_WINDOW": 24, + "OT_ROOF": 25, + "OT_HORSE": 26, + "OT_STRUCTURE": 27, + "OT_HOUSING_TEXTURE": 28, + "OT_PLANT": 29 } }, - "m_derbyTalents": { + "m_sIcon": { "type": "std::string", - "id": 15, + "id": 9, + "offset": 208, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306259831 + }, + "m_equipRequirements": { + "type": "class RequirementList*", + "id": 10, + "offset": 280, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2762617226 + }, + "m_purchaseRequirements": { + "type": "class RequirementList*", + "id": 11, + "offset": 288, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3174641793 + }, + "m_equipEffects": { + "type": "class GameEffectInfo*", + "id": 12, + "offset": 296, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 836628351 + }, + "m_baseCost": { + "type": "float", + "id": 13, + "offset": 312, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1565352651 + }, + "m_creditsCost": { + "type": "float", + "id": 14, "offset": 320, - "flags": 268435463, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 805514974 + }, + "m_avatarInfo": { + "type": "class AvatarItemInfoBase*", + "id": 15, + "offset": 328, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2627321299 + }, + "m_avatarFlags": { + "type": "std::string", + "id": 16, + "offset": 336, + "flags": 7, "container": "List", "dynamic": true, "singleton": false, "pointer": false, - "hash": 2359224108, + "hash": 2347762759 + }, + "m_itemLimit": { + "type": "int", + "id": 17, + "offset": 316, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1799746856 + }, + "m_holidayFlag": { + "type": "std::string", + "id": 18, + "offset": 352, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2994795359 + }, + "m_itemSetBonusTemplateID": { + "type": "unsigned int", + "id": 19, + "offset": 384, + "flags": 33554439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1316835672 + } + } + }, + "1006965807": { + "name": "class ReqHasSecondarySchool", + "bases": [ + "Requirement", + "PropertyClass" + ], + "hash": 1006965807, + "properties": { + "m_applyNOT": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1746328074, "enum_options": { - "__BASECLASS": "PetDerbyTalentTemplate" + "__DEFAULT": 0 } }, - "m_Levels": { - "type": "class PetLevelInfo", - "id": 16, - "offset": 304, + "m_operator": { + "type": "enum Requirement::Operator", + "id": 1, + "offset": 76, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2672792317, + "enum_options": { + "ROP_AND": 0, + "ROP_OR": 1, + "__DEFAULT": "ROP_AND" + } + }, + "m_secondarySchool": { + "type": "std::string", + "id": 2, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1765721963 + } + } + }, + "155347296": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 155347296, + "properties": { + "m_description": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1649374815 + }, + "m_displaySpellName": { + "type": "std::string", + "id": 1, + "offset": 104, + "flags": 268435463, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3323484466, + "enum_options": { + "__BASECLASS": "SpellTemplate" + } + } + } + }, + "1006965039": { + "name": "class ReqHasSecondarySchool*", + "bases": [ + "Requirement", + "PropertyClass" + ], + "hash": 1006965039, + "properties": { + "m_applyNOT": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1746328074, + "enum_options": { + "__DEFAULT": 0 + } + }, + "m_operator": { + "type": "enum Requirement::Operator", + "id": 1, + "offset": 76, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2672792317, + "enum_options": { + "ROP_AND": 0, + "ROP_OR": 1, + "__DEFAULT": "ROP_AND" + } + }, + "m_secondarySchool": { + "type": "std::string", + "id": 2, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1765721963 + } + } + }, + "1860858701": { + "name": "class SharedPointer", + "bases": [ + "TeleportProximityBehaviorBase", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1860858701, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + } + } + }, + "1427509370": { + "name": "class BadgeFilterDescriptionList*", + "bases": [ + "PropertyClass" + ], + "hash": 1427509370, + "properties": { + "m_badgeFilterDescriptionList": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, "flags": 7, "container": "List", "dynamic": true, "singleton": false, + "pointer": true, + "hash": 3252782039 + } + } + }, + "578437831": { + "name": "class SharedPointer", + "bases": [ + "CoreTemplate", + "PropertyClass" + ], + "hash": 578437831, + "properties": { + "m_behaviors": { + "type": "class BehaviorTemplate*", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1197808594 + }, + "m_goalName": { + "type": "std::string", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, "pointer": false, - "hash": 3555902999 + "hash": 1521627807 }, - "m_conversionStats": { - "type": "class PetStat", - "id": 17, + "m_goalNameID": { + "type": "unsigned int", + "id": 2, + "offset": 496, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 403158846 + }, + "m_goalTitle": { + "type": "std::string", + "id": 3, + "offset": 136, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2291910240 + }, + "m_goalUnderway": { + "type": "std::string", + "id": 4, + "offset": 168, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3153144269 + }, + "m_hyperlink": { + "type": "std::string", + "id": 5, + "offset": 200, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2887798993 + }, + "m_completeText": { + "type": "std::string", + "id": 6, + "offset": 232, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2767458393 + }, + "m_completeResults": { + "type": "class ResultList*", + "id": 7, + "offset": 440, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1964258099 + }, + "m_goalRequirements": { + "type": "class RequirementList*", + "id": 8, + "offset": 448, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2979967145 + }, + "m_tallyCounter": { + "type": "class TallyCounterTemplate*", + "id": 9, + "offset": 456, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1884546193 + }, + "m_locationName": { + "type": "std::string", + "id": 10, + "offset": 272, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1824218389 + }, + "m_displayImage1": { + "type": "std::string", + "id": 11, + "offset": 304, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1959572133 + }, + "m_displayImage2": { + "type": "std::string", + "id": 12, "offset": 336, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1959572134 + }, + "m_clientTags": { + "type": "std::string", + "id": 13, + "offset": 368, "flags": 7, "container": "List", "dynamic": true, "singleton": false, "pointer": false, - "hash": 2003448008 + "hash": 2319030025 }, - "m_conversionTalents": { + "m_genericEvents": { "type": "std::string", - "id": 18, - "offset": 352, - "flags": 268435463, + "id": 14, + "offset": 384, + "flags": 7, "container": "List", "dynamic": true, "singleton": false, "pointer": false, - "hash": 2717498332, + "hash": 3466670829 + }, + "m_autoQualify": { + "type": "bool", + "id": 15, + "offset": 400, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1878907431 + }, + "m_autoComplete": { + "type": "bool", + "id": 16, + "offset": 401, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1302545445 + }, + "m_destinationZone": { + "type": "std::string", + "id": 17, + "offset": 408, + "flags": 268435463, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2605356153, "enum_options": { - "__BASECLASS": "PetTalentTemplate" + "__BASECLASS": "ZoneData" } }, - "m_conversionLevel": { - "type": "unsigned char", - "id": 19, - "offset": 368, + "m_dialogList": { + "type": "class ActorDialogListBase*", + "id": 18, + "offset": 264, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, + "pointer": true, + "hash": 1909154969 + }, + "m_goalType": { + "type": "enum GoalTemplate::GOAL_TYPE", + "id": 19, + "offset": 96, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, "pointer": false, - "hash": 941047662 + "hash": 1488021149, + "enum_options": { + "GOAL_TYPE_UNKNOWN": 0, + "GOAL_TYPE_BOUNTY": 1, + "GOAL_TYPE_BOUNTYCOLLECT": 2, + "GOAL_TYPE_SCAVENGE": 3, + "GOAL_TYPE_PERSONA": 4, + "GOAL_TYPE_WAYPOINT": 5, + "GOAL_TYPE_SCAVENGEFAKE": 6, + "GOAL_TYPE_ACHIEVERANK": 7, + "GOAL_TYPE_USAGE": 8, + "GOAL_TYPE_COMPLETEQUEST": 9, + "GOAL_TYPE_SOCIARANK": 10, + "GOAL_TYPE_SOCIACURRENCY": 11, + "GOAL_TYPE_SOCIAMINIGAME": 12, + "GOAL_TYPE_SOCIAGIVEITEM": 13, + "GOAL_TYPE_SOCIAGETITEM": 14, + "GOAL_TYPE_COLLECTAFTERBOUNTY": 15, + "GOAL_TYPE_ENCOUNTER_WAYPOINT_FOREACH": 16 + } }, - "m_conversionXP": { - "type": "unsigned int", + "m_noQuestHelper": { + "type": "bool", "id": 20, - "offset": 372, + "offset": 500, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2284347003 + "hash": 578010882, + "enum_options": { + "__DEFAULT": 0 + } }, - "m_favoriteSnackCategories": { - "type": "std::string", + "m_petOnlyQuest": { + "type": "bool", "id": 21, - "offset": 376, + "offset": 501, "flags": 7, - "container": "List", + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 679359344, + "enum_options": { + "__DEFAULT": 0 + } + }, + "m_activateResults": { + "type": "class ResultList*", + "id": 22, + "offset": 504, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3790153995 + }, + "m_hideGoalFloatyText": { + "type": "bool", + "id": 23, + "offset": 512, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1919383204, + "enum_options": { + "__DEFAULT": 0 + } + } + } + }, + "578437014": { + "name": "class ControlComboBox", + "bases": [ + "Window", + "PropertyClass" + ], + "hash": 578437014, + "properties": { + "m_sName": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306437263 + }, + "m_Children": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 65671, + "container": "Vector", "dynamic": true, "singleton": false, + "pointer": true, + "hash": 2621225959 + }, + "m_Style": { + "type": "unsigned int", + "id": 2, + "offset": 152, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, "pointer": false, - "hash": 3317721809 + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152, + "CBF_SORTED": 16777216 + } }, - "m_jumpSound": { + "m_Flags": { + "type": "unsigned int", + "id": 3, + "offset": 156, + "flags": 1048583, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } + }, + "m_Window": { + "type": "class Rect", + "id": 4, + "offset": 160, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3105139380 + }, + "m_fTargetAlpha": { + "type": "float", + "id": 5, + "offset": 212, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1809129834 + }, + "m_fDisabledAlpha": { + "type": "float", + "id": 6, + "offset": 216, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1389987675 + }, + "m_fAlpha": { + "type": "float", + "id": 7, + "offset": 208, + "flags": 65671, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 482130755 + }, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3623628394 + }, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2102211316 + }, + "m_sScript": { "type": "std::string", - "id": 22, + "id": 10, + "offset": 352, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1846695875 + }, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3389835433 + }, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2547159940 + }, + "m_sTip": { + "type": "std::wstring", + "id": 13, "offset": 392, + "flags": 4194439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513510520 + }, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3091503757 + }, + "m_Items": { + "type": "class ComboItem", + "id": 16, + "offset": 584, + "flags": 135, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2627949239 + }, + "m_nSelected": { + "type": "int", + "id": 17, + "offset": 608, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1017366545 + }, + "m_nExpandedSize": { + "type": "int", + "id": 18, + "offset": 612, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1542607084 + }, + "m_nButtonSize": { + "type": "int", + "id": 19, + "offset": 616, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1917634655 + }, + "m_pButtonMaterial": { + "type": "class SharedPointer", + "id": 20, + "offset": 624, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2439977842 + }, + "m_buttonStyle": { + "type": "class SharedPointer", + "id": 21, + "offset": 736, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1791389598 + } + } + }, + "1007200049": { + "name": "class SharedPointer", + "bases": [ + "GoalTemplate", + "CoreTemplate", + "PropertyClass" + ], + "hash": 1007200049, + "properties": { + "m_behaviors": { + "type": "class BehaviorTemplate*", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1197808594 + }, + "m_goalName": { + "type": "std::string", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1521627807 + }, + "m_goalNameID": { + "type": "unsigned int", + "id": 2, + "offset": 496, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 403158846 + }, + "m_goalTitle": { + "type": "std::string", + "id": 3, + "offset": 136, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2291910240 + }, + "m_goalUnderway": { + "type": "std::string", + "id": 4, + "offset": 168, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3153144269 + }, + "m_hyperlink": { + "type": "std::string", + "id": 5, + "offset": 200, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2887798993 + }, + "m_completeText": { + "type": "std::string", + "id": 6, + "offset": 232, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2767458393 + }, + "m_completeResults": { + "type": "class ResultList*", + "id": 7, + "offset": 440, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1964258099 + }, + "m_goalRequirements": { + "type": "class RequirementList*", + "id": 8, + "offset": 448, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2979967145 + }, + "m_tallyCounter": { + "type": "class TallyCounterTemplate*", + "id": 9, + "offset": 456, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1884546193 + }, + "m_locationName": { + "type": "std::string", + "id": 10, + "offset": 272, + "flags": 8388615, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1824218389 + }, + "m_displayImage1": { + "type": "std::string", + "id": 11, + "offset": 304, "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2493302912 + "hash": 1959572133 }, - "m_duckSound": { + "m_displayImage2": { "type": "std::string", - "id": 23, - "offset": 424, + "id": 12, + "offset": 336, "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3426875339 + "hash": 1959572134 }, - "m_morphingExceptions": { - "type": "class MorphingException", - "id": 24, - "offset": 456, + "m_clientTags": { + "type": "std::string", + "id": 13, + "offset": 368, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2319030025 + }, + "m_genericEvents": { + "type": "std::string", + "id": 14, + "offset": 384, "flags": 7, "container": "List", "dynamic": true, "singleton": false, "pointer": false, - "hash": 2719456886 + "hash": 3466670829 }, - "m_hatchesAsID": { - "type": "gid", - "id": 25, - "offset": 472, - "flags": 33554439, + "m_autoQualify": { + "type": "bool", + "id": 15, + "offset": 400, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2010028089 + "hash": 1878907431 }, - "m_guaranteedTalents": { - "type": "std::string", - "id": 26, - "offset": 480, - "flags": 268435463, - "container": "List", - "dynamic": true, + "m_autoComplete": { + "type": "bool", + "id": 16, + "offset": 401, + "flags": 7, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 2876819510, - "enum_options": { - "__BASECLASS": "PetTalentTemplate" - } + "hash": 1302545445 }, - "m_guaranteedDerbyTalents": { + "m_destinationZone": { "type": "std::string", - "id": 27, - "offset": 496, + "id": 17, + "offset": 408, "flags": 268435463, - "container": "List", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 1658650796, + "hash": 2605356153, "enum_options": { - "__BASECLASS": "PetDerbyTalentTemplate" + "__BASECLASS": "ZoneData" } }, - "m_hideName": { - "type": "bool", - "id": 28, - "offset": 516, + "m_dialogList": { + "type": "class ActorDialogListBase*", + "id": 18, + "offset": 264, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 645410894 + "pointer": true, + "hash": 1909154969 }, - "m_houseGuestOpacity": { - "type": "float", - "id": 29, - "offset": 520, - "flags": 7, + "m_goalType": { + "type": "enum GoalTemplate::GOAL_TYPE", + "id": 19, + "offset": 96, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 805760636, + "hash": 1488021149, "enum_options": { - "__DEFAULT": "1.0" + "GOAL_TYPE_UNKNOWN": 0, + "GOAL_TYPE_BOUNTY": 1, + "GOAL_TYPE_BOUNTYCOLLECT": 2, + "GOAL_TYPE_SCAVENGE": 3, + "GOAL_TYPE_PERSONA": 4, + "GOAL_TYPE_WAYPOINT": 5, + "GOAL_TYPE_SCAVENGEFAKE": 6, + "GOAL_TYPE_ACHIEVERANK": 7, + "GOAL_TYPE_USAGE": 8, + "GOAL_TYPE_COMPLETEQUEST": 9, + "GOAL_TYPE_SOCIARANK": 10, + "GOAL_TYPE_SOCIACURRENCY": 11, + "GOAL_TYPE_SOCIAMINIGAME": 12, + "GOAL_TYPE_SOCIAGIVEITEM": 13, + "GOAL_TYPE_SOCIAGETITEM": 14, + "GOAL_TYPE_COLLECTAFTERBOUNTY": 15, + "GOAL_TYPE_ENCOUNTER_WAYPOINT_FOREACH": 16 } }, - "m_hatchmakingInitalCooldownTime": { - "type": "unsigned int", - "id": 30, - "offset": 524, + "m_noQuestHelper": { + "type": "bool", + "id": 20, + "offset": 500, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 724960897, + "hash": 578010882, "enum_options": { "__DEFAULT": 0 } }, - "m_hatchmakingMaximumHatches": { - "type": "unsigned int", - "id": 31, - "offset": 528, + "m_petOnlyQuest": { + "type": "bool", + "id": 21, + "offset": 501, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1142581578, + "hash": 679359344, "enum_options": { "__DEFAULT": 0 } }, - "m_excludeFromHatchOfTheDay": { + "m_activateResults": { + "type": "class ResultList*", + "id": 22, + "offset": 504, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3790153995 + }, + "m_hideGoalFloatyText": { "type": "bool", - "id": 32, - "offset": 532, + "id": 23, + "offset": 512, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1127631469, + "hash": 1919383204, "enum_options": { "__DEFAULT": 0 } }, - "m_exclusivePet": { - "type": "bool", - "id": 33, - "offset": 533, - "flags": 7, + "m_personaName": { + "type": "std::string", + "id": 24, + "offset": 520, + "flags": 268435463, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1328949460, + "hash": 2514452244, "enum_options": { - "__DEFAULT": 0 + "__BASECLASS": "Persona" } }, - "m_animationEventList": { - "type": "class SharedPointer", - "id": 34, - "offset": 536, + "m_usePatron": { + "type": "bool", + "id": 25, + "offset": 552, "flags": 7, - "container": "List", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2858101335 + "pointer": false, + "hash": 853266164 } } }, - "1250521981": { - "name": "class SharedPointer", + "156961538": { + "name": "class PromoPromotion*", "bases": [ "PropertyClass" ], - "hash": 1250521981, + "hash": 156961538, "properties": { - "m_nVolumeType": { - "type": "enum MountRecord::VolumeTypes", + "m_promoID": { + "type": "std::string", "id": 0, "offset": 72, - "flags": 2097159, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2832170609, - "enum_options": { - "DISK": 1, - "DSA": 2, - "WAD": 3 - } + "hash": 3494513013 }, - "m_sOption": { + "m_promoTitle": { "type": "std::string", "id": 1, - "offset": 80, - "flags": 7, + "offset": 104, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1705643111 + "hash": 1797811434 }, - "m_nPriority": { - "type": "int", + "m_promoDesc": { + "type": "std::string", "id": 2, - "offset": 112, - "flags": 7, + "offset": 136, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1515251530 + "hash": 2677655015 }, - "m_sMount": { - "type": "std::string", + "m_inviterRewards": { + "type": "class PromoRewardList", "id": 3, - "offset": 120, - "flags": 7, + "offset": 168, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2412733857 + "hash": 1643624525 }, - "m_bWritable": { - "type": "bool", + "m_inviteeRewards": { + "type": "class PromoRewardList", "id": 4, - "offset": 152, - "flags": 7, + "offset": 256, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1522487983 + "hash": 1654647008 } } }, - "101536727": { - "name": "class SharedPointer", + "1863037485": { + "name": "class SharedPointer", "bases": [ - "DerbyEffect", + "ServiceOptionBase", "PropertyClass" ], - "hash": 101536727, + "hash": 1863037485, "properties": { - "m_buffType": { - "type": "enum DerbyTalentBuffType", + "m_serviceName": { + "type": "std::string", "id": 0, - "offset": 92, - "flags": 2097183, + "offset": 72, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1149251982, - "enum_options": { - "Buff": 0, - "Debuff": 1, - "Neither": 2 - } + "hash": 2206028813 }, - "m_kTarget": { - "type": "enum DerbyTargetType", + "m_iconKey": { + "type": "std::string", "id": 1, - "offset": 96, - "flags": 2097159, + "offset": 168, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1807803351, - "enum_options": { - "kTargetInFront": 0, - "kTargetBehind": 1, - "kTargetFirst": 2, - "kTargetSelf": 3, - "kTargetAll": 4, - "kTargetLast": 5 - } + "hash": 2457138637 }, - "m_nDuration": { - "type": "int", + "m_displayKey": { + "type": "std::string", "id": 2, "offset": 104, "flags": 31, @@ -661339,916 +662446,1352 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 1110167982 + "hash": 3023276954 }, - "m_effectID": { + "m_serviceIndex": { "type": "unsigned int", "id": 3, - "offset": 88, - "flags": 24, + "offset": 204, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2347630439 + "hash": 2103126710 }, - "m_imageFilename": { - "type": "std::string", + "m_forceInteract": { + "type": "bool", "id": 4, - "offset": 112, - "flags": 131103, + "offset": 200, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2813328063 + "hash": 1705789564 }, - "m_iconIndex": { - "type": "unsigned int", + "m_confirmMessageTitleKey": { + "type": "std::string", "id": 5, - "offset": 144, + "offset": 216, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1265133262 + "hash": 1941136953 }, - "m_soundOnActivate": { + "m_confirmMessageTitleKeyAdvancedMode": { "type": "std::string", "id": 6, - "offset": 152, - "flags": 131103, + "offset": 248, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1956929714 + "hash": 3219201588 }, - "m_soundOnTarget": { + "m_confirmMessageKey": { "type": "std::string", "id": 7, - "offset": 184, - "flags": 131103, + "offset": 280, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3444214056 + "hash": 2088579351 }, - "m_targetParticleEffect": { + "m_confirmMessageKeyAdvancedMode": { "type": "std::string", "id": 8, - "offset": 216, - "flags": 131103, + "offset": 312, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3048234723 + "hash": 2417239570 }, - "m_overheadMessage": { + "m_promptSound": { "type": "std::string", "id": 9, - "offset": 248, - "flags": 8388639, + "offset": 344, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1701018190 + "hash": 3178681510 }, - "m_requirements": { - "type": "class RequirementList", + "m_promptSoundAdvancedMode": { + "type": "std::string", "id": 10, - "offset": 280, + "offset": 376, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2840988582 + "hash": 1739626529 }, - "m_nActionType": { - "type": "enum DerbyActionTargetType", + "m_acceptKey": { + "type": "std::string", "id": 11, - "offset": 376, - "flags": 2097183, + "offset": 472, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3401355432, - "enum_options": { - "Jump": 0, - "Duck": 1, - "AllExceptCheer": 2, - "Cheer": 3 - } + "hash": 3325790708 + }, + "m_declineKey": { + "type": "std::string", + "id": 12, + "offset": 504, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1679578008 + }, + "m_optionToConfirm": { + "type": "class SharedPointer", + "id": 13, + "offset": 536, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1224791766 + }, + "m_ignoreOption": { + "type": "std::string", + "id": 14, + "offset": 408, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1667595832 + }, + "m_ignoreAdvancedModeOption": { + "type": "std::string", + "id": 15, + "offset": 440, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2665095027 } } }, - "1248476783": { - "name": "class SharedPointer", + "1007179792": { + "name": "class DamageLimitOverride*", "bases": [ + "CombatRule", "PropertyClass" ], - "hash": 1248476783, + "hash": 1007179792, "properties": { - "m_tieredSpellGroupList": { - "type": "class SharedPointer", + "m_damageLimit": { + "type": "float", "id": 0, "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, + "flags": 31, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1855207927 + "pointer": false, + "hash": 271286357 + }, + "m_dK0": { + "type": "float", + "id": 1, + "offset": 76, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 357232662 + }, + "m_dN0": { + "type": "float", + "id": 2, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 357232761 } } }, - "99804467": { - "name": "class BaseGameEffectBehavior", + "1428367074": { + "name": "class SharedPointer", "bases": [ - "BehaviorInstance", + "TournamentUpdate", "PropertyClass" ], - "hash": 99804467, + "hash": 1428367074, "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", + "m_matchID": { + "type": "gid", "id": 0, - "offset": 104, - "flags": 39, + "offset": 72, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 + "hash": 1757621298 + } + } + }, + "156240166": { + "name": "class TemplateCache::Entry*", + "bases": [ + "PropertyClass" + ], + "hash": 156240166, + "properties": { + "m_FileTime": { + "type": "unsigned __int64", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1953360040 }, - "m_gameEffects": { - "type": "class SharedPointer", + "m_sBinary": { + "type": "class SerializedBuffer", "id": 1, - "offset": 112, - "flags": 31, + "offset": 80, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1169674284 + "pointer": false, + "hash": 3458458254 } } }, - "1248400337": { - "name": "class LikesDislikesEntry*", + "1862886997": { + "name": "enum BenefitType", + "bases": [], + "hash": 1862886997, + "properties": {} + }, + "1427952611": { + "name": "class SharedPointer", "bases": [ "PropertyClass" ], - "hash": 1248400337, + "hash": 1427952611, "properties": { - "m_adjective": { - "type": "std::string", + "m_capValue": { + "type": "float", "id": 0, - "offset": 72, + "offset": 88, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3429518154 + "hash": 1100002568 }, - "m_stringTableKey": { - "type": "std::string", + "m_criticalHitScalarBase": { + "type": "float", "id": 1, - "offset": 104, - "flags": 8388615, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2902469923 + "hash": 448021976 }, - "m_modifier": { + "m_criticalHitScalingFactor": { "type": "float", "id": 2, - "offset": 136, + "offset": 76, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 388952454, - "enum_options": { - "__DEFAULT": "1.0" - } + "hash": 322634343 }, - "m_hidden": { - "type": "bool", + "m_blockScalarBase": { + "type": "float", "id": 3, - "offset": 140, + "offset": 80, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 519817759 + "hash": 1713825491 + }, + "m_blockScalingFactor": { + "type": "float", + "id": 4, + "offset": 84, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1504920962 } } }, - "1665905929": { - "name": "class InventoryPageWindow::InventoryItem*", + "156098403": { + "name": "class PetDropFoodItem*", "bases": [ - "ControlCheckBox", - "ControlButton", - "Window", "PropertyClass" ], - "hash": 1665905929, + "hash": 156098403, "properties": { - "m_sName": { - "type": "std::string", + "m_uTemplateID": { + "type": "unsigned int", "id": 0, - "offset": 80, - "flags": 135, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2306437263 + "hash": 1943544747 }, - "m_Children": { - "type": "class SharedPointer", + "m_nFoodGroup": { + "type": "int", "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, + "offset": 76, + "flags": 7, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2621225959 + "pointer": false, + "hash": 63971517 }, - "m_Style": { - "type": "unsigned int", + "m_fFallSpeed": { + "type": "float", "id": 2, - "offset": 152, - "flags": 1048583, + "offset": 80, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152, - "EFFECT_SCALE": 67108864, - "LOCK_ICON_SIZE": 33554432, - "LEFT_TEXT": 536870912, - "NO_FIT_TEXT": 1073741824, - "CHECKBOX_TEXTOVERIMAGE": 16777216 - } + "hash": 701808397 }, - "m_Flags": { - "type": "unsigned int", + "m_nFullnessPoints": { + "type": "int", "id": 3, - "offset": 156, - "flags": 1048583, + "offset": 84, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } + "hash": 1015203857 }, - "m_Window": { - "type": "class Rect", + "m_nTimeBonusInSeconds": { + "type": "int", "id": 4, - "offset": 160, - "flags": 135, + "offset": 88, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3105139380 + "hash": 1007283620 }, - "m_fTargetAlpha": { - "type": "float", + "m_nSpeedBonusInSeconds": { + "type": "int", "id": 5, - "offset": 212, - "flags": 135, + "offset": 92, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1809129834 + "hash": 429640550 }, - "m_fDisabledAlpha": { - "type": "float", + "m_nFreezeTimerInSeconds": { + "type": "int", "id": 6, - "offset": 216, - "flags": 135, + "offset": 96, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1389987675 + "hash": 1703451440 }, - "m_fAlpha": { + "m_fDropWeight": { "type": "float", "id": 7, - "offset": 208, - "flags": 65671, + "offset": 100, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 482130755 + "hash": 1839368282 }, - "m_pWindowStyle": { - "type": "class SharedPointer", + "m_fWeightChange": { + "type": "float", "id": 8, - "offset": 232, - "flags": 135, + "offset": 104, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3623628394 + "pointer": false, + "hash": 122664907 }, - "m_sHelp": { - "type": "std::wstring", + "m_sCollectSound": { + "type": "std::string", "id": 9, - "offset": 248, - "flags": 4194439, + "offset": 112, + "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2102211316 + "hash": 2812716637 }, - "m_sScript": { + "m_sCollectFX": { "type": "std::string", "id": 10, - "offset": 352, - "flags": 135, + "offset": 144, + "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1846695875 - }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, + "hash": 3248880594 + } + } + }, + "1861721184": { + "name": "class ZoneFish*", + "bases": [ + "PropertyClass" + ], + "hash": 1861721184, + "properties": { + "m_fishTemplateID": { + "type": "unsigned int", + "id": 0, + "offset": 72, + "flags": 33554439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3389835433 + "hash": 2050232416 }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, + "m_creationChance": { + "type": "float", + "id": 1, + "offset": 76, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2547159940 + "hash": 1801275150 }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, + "m_alternateLootChance": { + "type": "float", + "id": 2, + "offset": 80, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1513510520 + "hash": 786325463 }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, + "m_alternateLootTableName": { + "type": "std::string", + "id": 3, + "offset": 88, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3445884130 + } + } + }, + "578480682": { + "name": "class PromoGiftList", + "bases": [ + "PropertyClass" + ], + "hash": 578480682, + "properties": { + "m_promoGifts": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 31, "container": "List", "dynamic": true, "singleton": false, + "pointer": true, + "hash": 885904406 + } + } + }, + "156093283": { + "name": "class PetDropFoodItem", + "bases": [ + "PropertyClass" + ], + "hash": 156093283, + "properties": { + "m_uTemplateID": { + "type": "unsigned int", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, "pointer": false, - "hash": 2587533771 + "hash": 1943544747 }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, + "m_nFoodGroup": { + "type": "int", + "id": 1, + "offset": 76, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3091503757 + "hash": 63971517 }, - "m_bToggle": { - "type": "bool", - "id": 16, - "offset": 608, - "flags": 135, + "m_fFallSpeed": { + "type": "float", + "id": 2, + "offset": 80, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2071810903 + "hash": 701808397 }, - "m_bButtonDown": { - "type": "bool", - "id": 17, - "offset": 609, - "flags": 135, + "m_nFullnessPoints": { + "type": "int", + "id": 3, + "offset": 84, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 840041705 + "hash": 1015203857 }, - "m_sLabel": { - "type": "std::wstring", - "id": 18, - "offset": 616, - "flags": 4194439, + "m_nTimeBonusInSeconds": { + "type": "int", + "id": 4, + "offset": 88, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2207009163 + "hash": 1007283620 }, - "m_labelOffset": { - "type": "class Rect", - "id": 19, - "offset": 832, - "flags": 135, + "m_nSpeedBonusInSeconds": { + "type": "int", + "id": 5, + "offset": 92, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1990646723 + "hash": 429640550 }, - "m_pButton": { - "type": "class SharedPointer", - "id": 20, - "offset": 656, - "flags": 135, + "m_nFreezeTimerInSeconds": { + "type": "int", + "id": 6, + "offset": 96, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1543855875 + "pointer": false, + "hash": 1703451440 }, - "m_HotKey": { - "type": "unsigned int", - "id": 21, - "offset": 672, - "flags": 135, + "m_fDropWeight": { + "type": "float", + "id": 7, + "offset": 100, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1631553409 + "hash": 1839368282 }, - "m_Color": { - "type": "class Color", - "id": 22, - "offset": 676, - "flags": 262279, + "m_fWeightChange": { + "type": "float", + "id": 8, + "offset": 104, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1753714077 + "hash": 122664907 }, - "m_bCursorOver": { - "type": "bool", - "id": 23, - "offset": 689, - "flags": 135, + "m_sCollectSound": { + "type": "std::string", + "id": 9, + "offset": 112, + "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 283981103 + "hash": 2812716637 }, - "m_bAbortWhenCursorNotOver": { - "type": "bool", - "id": 24, - "offset": 706, - "flags": 135, + "m_sCollectFX": { + "type": "std::string", + "id": 10, + "offset": 144, + "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 325405258 + "hash": 3248880594 + } + } + }, + "1861721824": { + "name": "class ZoneFish", + "bases": [ + "PropertyClass" + ], + "hash": 1861721824, + "properties": { + "m_fishTemplateID": { + "type": "unsigned int", + "id": 0, + "offset": 72, + "flags": 33554439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2050232416 }, - "m_bHotKeyDown": { - "type": "bool", - "id": 25, - "offset": 680, - "flags": 135, + "m_creationChance": { + "type": "float", + "id": 1, + "offset": 76, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 616989185 + "hash": 1801275150 }, - "m_fTime": { + "m_alternateLootChance": { "type": "float", - "id": 26, - "offset": 684, - "flags": 135, + "id": 2, + "offset": 80, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 883746156 + "hash": 786325463 }, - "m_bGreyed": { - "type": "bool", - "id": 27, - "offset": 688, - "flags": 135, + "m_alternateLootTableName": { + "type": "std::string", + "id": 3, + "offset": 88, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1566556053 + "hash": 3445884130 + } + } + }, + "1007853913": { + "name": "class StatisticEffectInfo*", + "bases": [ + "GameEffectInfo", + "PropertyClass" + ], + "hash": 1007853913, + "properties": { + "m_effectName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2029161513 }, - "m_fMaxScale": { + "m_lookupIndex": { + "type": "int", + "id": 1, + "offset": 104, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1626623948 + } + } + }, + "578842005": { + "name": "class RemoveInterceptCinematicAction", + "bases": [ + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 578842005, + "properties": { + "m_timeOffset": { "type": "float", - "id": 28, - "offset": 692, - "flags": 135, + "id": 0, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2070186635 + "hash": 2237098605 }, - "m_fScaleSpeed": { - "type": "float", - "id": 29, - "offset": 696, - "flags": 135, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1457135702 + "hash": 2285866132 + } + } + }, + "1007398909": { + "name": "class TargetCountSpellEffect", + "bases": [ + "SpellEffect", + "PropertyClass" + ], + "hash": 1007398909, + "properties": { + "m_effectType": { + "type": "enum SpellEffect::kSpellEffects", + "id": 0, + "offset": 72, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2578255295, + "enum_options": { + "kInvalidSpellEffect": 0, + "kDamage": 1, + "kDamageNoCrit": 2, + "kHeal": 3, + "kHealPercent": 4, + "kSetHealPercent": 113, + "kStealHealth": 5, + "kReduceOverTime": 6, + "kDetonateOverTime": 7, + "kPushCharm": 8, + "kStealCharm": 9, + "kPushWard": 10, + "kStealWard": 11, + "kPushOverTime": 12, + "kStealOverTime": 13, + "kRemoveCharm": 14, + "kRemoveWard": 15, + "kRemoveOverTime": 16, + "kRemoveAura": 17, + "kSwapAll": 18, + "kSwapCharm": 19, + "kSwapWard": 20, + "kSwapOverTime": 21, + "kModifyIncomingDamage": 22, + "kModifyIncomingDamageFlat": 119, + "kMaximumIncomingDamage": 23, + "kModifyIncomingHeal": 24, + "kModifyIncomingHealFlat": 118, + "kModifyIncomingDamageType": 25, + "kModifyIncomingArmorPiercing": 26, + "kModifyOutgoingDamage": 27, + "kModifyOutgoingDamageFlat": 121, + "kModifyOutgoingHeal": 28, + "kModifyOutgoingHealFlat": 120, + "kModifyOutgoingDamageType": 29, + "kModifyOutgoingArmorPiercing": 30, + "kModifyOutgoingStealHealth": 31, + "kModifyIncomingStealHealth": 32, + "kBounceNext": 33, + "kBouncePrevious": 34, + "kBounceBack": 35, + "kBounceAll": 36, + "kAbsorbDamage": 37, + "kAbsorbHeal": 38, + "kModifyAccuracy": 39, + "kDispel": 40, + "kConfusion": 41, + "kCloakedCharm": 42, + "kCloakedWard": 43, + "kStunResist": 44, + "kClue": 111, + "kPipConversion": 45, + "kCritBoost": 46, + "kCritBlock": 47, + "kPolymorph": 48, + "kDelayCast": 49, + "kModifyCardCloak": 50, + "kModifyCardDamage": 51, + "kModifyCardAccuracy": 53, + "kModifyCardMutation": 54, + "kModifyCardRank": 55, + "kModifyCardArmorPiercing": 56, + "kSummonCreature": 65, + "kTeleportPlayer": 66, + "kStun": 67, + "kDampen": 68, + "kReshuffle": 69, + "kMindControl": 70, + "kModifyPips": 71, + "kModifyPowerPips": 72, + "kModifyShadowPips": 73, + "kModifyHate": 74, + "kDamageOverTime": 75, + "kHealOverTime": 76, + "kModifyPowerPipChance": 77, + "kModifyRank": 78, + "kStunBlock": 79, + "kRevealCloak": 80, + "kInstantKill": 81, + "kAfterlife": 82, + "kDeferredDamage": 83, + "kDamagePerTotalPipPower": 84, + "kModifyCardHeal": 52, + "kModifyCardCharm": 57, + "kModifyCardWard": 58, + "kModifyCardOutgoingDamage": 59, + "kModifyCardOutgoingAccuracy": 60, + "kModifyCardOutgoingHeal": 61, + "kModifyCardOutgoingArmorPiercing": 62, + "kModifyCardIncomingDamage": 63, + "kModifyCardAbsorbDamage": 64, + "kCloakedWardNoRemove": 86, + "kAddCombatTriggerList": 87, + "kRemoveCombatTriggerList": 88, + "kBacklashDamage": 89, + "kModifyBacklash": 90, + "kIntercept": 91, + "kShadowSelf": 92, + "kShadowCreature": 93, + "kModifyShadowCreatureLevel": 94, + "kSelectShadowCreatureAttackTarget": 95, + "kShadowDecrementTurn": 96, + "kCritBoostSchoolSpecific": 97, + "kSpawnCreature": 98, + "kUnPolymorph": 99, + "kPowerPipConversion": 100, + "kProtectCardBeneficial": 101, + "kProtectCardHarmful": 102, + "kProtectBeneficial": 103, + "kProtectHarmful": 104, + "kDivideDamage": 105, + "kCollectEssence": 106, + "kKillCreature": 107, + "kDispelBlock": 108, + "kConfusionBlock": 109, + "kModifyPipRoundRate": 110, + "kMaxHealthDamage": 112, + "kUntargetable": 114, + "kMakeTargetable": 115, + "kForceTargetable": 116, + "kRemoveStunBlock": 117, + "kExitCombat": 122, + "kSuspendPips": 123, + "kResumePips": 124, + "kAutoPass": 125, + "kStopAutoPass": 126, + "kVanish": 127, + "kStopVanish": 128, + "kMaxHealthHeal": 129, + "kHealByWard": 130, + "kTaunt": 131, + "kPacify": 132, + "kRemoveTargetRestriction": 133, + "kConvertHangingEffect": 134, + "kAddSpellToDeck": 135, + "kAddSpellToHand": 136, + "kModifyIncomingDamageOverTime": 137, + "kModifyIncomingHealOverTime": 138, + "kModifyCardDamagebyRank": 139, + "kPushConvertedCharm": 140, + "kStealConvertedCharm": 141, + "kPushConvertedWard": 142, + "kStealConvertedWard": 143, + "kPushConvertedOverTime": 144, + "kStealConvertedOverTime": 145, + "kRemoveConvertedCharm": 146, + "kRemoveConvertedWard": 147, + "kRemoveConvertedOverTime": 148, + "kModifyOverTimeDuration": 149, + "kModifySchoolPips": 150 + } }, - "m_bUseDropShadow": { - "type": "bool", - "id": 30, - "offset": 704, - "flags": 135, + "m_effectParam": { + "type": "int", + "id": 1, + "offset": 76, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 93063037 + "hash": 357920024 }, - "m_bUseOutline": { - "type": "bool", - "id": 31, - "offset": 705, - "flags": 135, + "m_disposition": { + "type": "enum SpellEffect::kHangingDisposition", + "id": 2, + "offset": 80, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 744292994 + "hash": 1904841031, + "enum_options": { + "kBoth": 0, + "kBeneficial": 1, + "kHarmful": 2 + } }, - "m_pGreyedState": { - "type": "class SharedPointer", - "id": 32, - "offset": 768, - "flags": 135, + "m_sDamageType": { + "type": "std::string", + "id": 3, + "offset": 88, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2703352263 + "pointer": false, + "hash": 2501054223 }, - "m_pNormalState": { - "type": "class SharedPointer", - "id": 33, - "offset": 752, - "flags": 135, + "m_damageType": { + "type": "unsigned int", + "id": 4, + "offset": 84, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1887909808 + "pointer": false, + "hash": 737882766 }, - "m_pHighlightedState": { - "type": "class SharedPointer", - "id": 34, - "offset": 784, - "flags": 135, + "m_pipNum": { + "type": "int", + "id": 5, + "offset": 128, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2200177608 + "pointer": false, + "hash": 830827539 }, - "m_pSelectedState": { - "type": "class SharedPointer", - "id": 35, - "offset": 800, - "flags": 135, + "m_actNum": { + "type": "int", + "id": 6, + "offset": 132, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2266776432 + "pointer": false, + "hash": 236824866 }, - "m_pDepressedState": { - "type": "class SharedPointer", - "id": 36, - "offset": 816, - "flags": 135, + "m_effectTarget": { + "type": "enum SpellEffect::kEffectTarget", + "id": 7, + "offset": 140, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1878185798 + "pointer": false, + "hash": 2458940523, + "enum_options": { + "kInvalidTarget": 0, + "kSpell": 1, + "kSpecificSpells": 2, + "kGlobal": 3, + "kEnemyTeam": 4, + "kEnemyTeamAllAtOnce": 5, + "kFriendlyTeam": 6, + "kFriendlyTeamAllAtOnce": 7, + "kEnemySingle": 8, + "kFriendlySingle": 9, + "kMinion": 10, + "kFriendlyMinion": 17, + "kEnemyMinion": 18, + "kSelf": 11, + "kAtLeastOneEnemy": 13, + "kPreselectedEnemySingle": 12, + "kMultiTargetEnemy": 14, + "kMultiTargetFriendly": 15, + "kFriendlySingleNotMe": 16 + } }, - "m_nGroupID": { + "m_numRounds": { "type": "int", - "id": 37, - "offset": 880, - "flags": 135, + "id": 8, + "offset": 144, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 403966850 + "hash": 1229753829 }, - "m_bChecked": { - "type": "bool", - "id": 38, - "offset": 884, - "flags": 135, + "m_paramPerRound": { + "type": "int", + "id": 9, + "offset": 148, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 958955100 + "hash": 683234234 }, - "m_pCheckedState": { - "type": "class SharedPointer", - "id": 39, - "offset": 888, - "flags": 135, + "m_healModifier": { + "type": "float", + "id": 10, + "offset": 152, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1210539694 + "pointer": false, + "hash": 1317921248, + "enum_options": { + "__DEFAULT": "1.0" + } }, - "m_pCheckedGreyedState": { - "type": "class SharedPointer", - "id": 40, - "offset": 904, - "flags": 135, + "m_spellTemplateID": { + "type": "unsigned int", + "id": 11, + "offset": 120, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2702030126 + "pointer": false, + "hash": 585567702 }, - "m_pCheckedHighlightedState": { - "type": "class SharedPointer", - "id": 41, - "offset": 920, - "flags": 135, + "m_enchantmentSpellTemplateID": { + "type": "unsigned int", + "id": 12, + "offset": 124, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1320097679 + "pointer": false, + "hash": 246955115 }, - "m_pCheckedDepressedState": { - "type": "class SharedPointer", - "id": 42, - "offset": 936, - "flags": 135, + "m_act": { + "type": "bool", + "id": 13, + "offset": 136, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1609188685 + "pointer": false, + "hash": 269510283 }, - "m_pEquipNormalState": { - "type": "class SharedPointer", - "id": 43, - "offset": 976, - "flags": 7, + "m_cloaked": { + "type": "bool", + "id": 14, + "offset": 157, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1322058516 + "pointer": false, + "hash": 7349510 }, - "m_pEquipPressState": { - "type": "class SharedPointer", - "id": 44, - "offset": 992, - "flags": 7, + "m_bypassProtection": { + "type": "bool", + "id": 15, + "offset": 159, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3019605144 + "pointer": false, + "hash": 1657138252 }, - "m_pEquipHighlightState": { - "type": "class SharedPointer", - "id": 45, - "offset": 1008, - "flags": 7, + "m_armorPiercingParam": { + "type": "int", + "id": 16, + "offset": 160, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2559056739 + "pointer": false, + "hash": 2025530205 }, - "m_pEquipCheckState": { - "type": "class SharedPointer", - "id": 46, - "offset": 1024, - "flags": 7, + "m_chancePerTarget": { + "type": "int", + "id": 17, + "offset": 164, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2420681417 + "pointer": false, + "hash": 845426794 }, - "m_pEquipCheckPressState": { - "type": "class SharedPointer", - "id": 47, - "offset": 1040, - "flags": 7, + "m_protected": { + "type": "bool", + "id": 18, + "offset": 168, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2063281462 + "pointer": false, + "hash": 1445655037 }, - "m_pEquipCheckHighlightState": { - "type": "class SharedPointer", - "id": 48, - "offset": 1056, + "m_converted": { + "type": "bool", + "id": 19, + "offset": 169, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1590428797 + }, + "m_rank": { + "type": "int", + "id": 20, + "offset": 208, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, + "pointer": false, + "hash": 219803942 + }, + "m_effectLists": { + "type": "class SharedPointer", + "id": 21, + "offset": 224, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, "pointer": true, - "hash": 2990990081 + "hash": 1054793289 } } }, - "2059229228": { - "name": "class ComplexRotationInfo", + "1431561938": { + "name": "class SharedPointer", "bases": [ + "LootInfo", + "LootInfoBase", "PropertyClass" ], - "hash": 2059229228, + "hash": 1431561938, "properties": { - "m_startWeight": { - "type": "float", + "m_lootType": { + "type": "enum LootInfo::LOOT_TYPE", "id": 0, "offset": 72, - "flags": 7, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 834528109 + "hash": 1591891442, + "enum_options": { + "LOOT_TYPE_NONE": 0, + "LOOT_TYPE_GOLD": 1, + "LOOT_TYPE_MANA": 2, + "LOOT_TYPE_ITEM": 3, + "LOOT_TYPE_TREASURE_CARD": 4, + "LOOT_TYPE_MAGIC_XP": 5, + "LOOT_TYPE_ADD_SPELL": 6, + "LOOT_TYPE_MAX_HEALTH": 7, + "LOOT_TYPE_MAX_GOLD": 8, + "LOOT_TYPE_MAX_MANA": 9, + "LOOT_TYPE_MAX_POTION": 10, + "LOOT_TYPE_TRAINING_POINTS": 11, + "LOOT_TYPE_RECIPE": 12, + "LOOT_TYPE_CRAFTING_SLOT": 13, + "LOOT_TYPE_REAGENT": 14, + "LOOT_TYPE_PETSNACK": 15, + "LOOT_TYPE_GARDENING_XP": 16, + "LOOT_TYPE_PET_XP": 17, + "LOOT_TYPE_TREASURE_TABLE": 18, + "LOOT_TYPE_ARENA_POINTS": 19, + "LOOT_TYPE_ARENA_BONUS_POINTS": 20, + "LOOT_TYPE_GROUP": 21, + "LOOT_TYPE_FISHING_XP": 22, + "LOOT_TYPE_EVENT_CURRENCY_1": 24, + "LOOT_TYPE_EVENT_CURRENCY_2": 25, + "LOOT_TYPE_PVP_CURRENCY": 26, + "LOOT_TYPE_PVP_CURRENCY_BONUS": 27, + "LOOT_TYPE_PVP_TOURNEY_CURRENCY": 28, + "LOOT_TYPE_PVP_TOURNEY_CURRENCY_BONUS": 29, + "LOOT_TYPE_FURNITURE_ESSENCE": 30 + } }, - "m_middleWeight": { - "type": "float", + "m_pvpCurrencyBonusAmount": { + "type": "int", "id": 1, - "offset": 76, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1016481710 - }, - "m_endWeight": { - "type": "float", - "id": 2, "offset": 80, - "flags": 7, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 379723894 - }, - "m_desiredSpeed": { - "type": "float", - "id": 3, - "offset": 84, + "hash": 447030870 + } + } + }, + "156240142": { + "name": "class TemplateCache::Entry", + "bases": [ + "PropertyClass" + ], + "hash": 156240142, + "properties": { + "m_FileTime": { + "type": "unsigned __int64", + "id": 0, + "offset": 72, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 406717000 + "hash": 1953360040 }, - "m_durationSeconds": { - "type": "float", - "id": 4, - "offset": 88, + "m_sBinary": { + "type": "class SerializedBuffer", + "id": 1, + "offset": 80, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1349797100 + "hash": 3458458254 } } }, - "99763507": { - "name": "class BaseGameEffectBehavior*", + "1431031301": { + "name": "class GameEffectTimerPopupTrigger", "bases": [ - "BehaviorInstance", + "GameEffectTimerTrigger", "PropertyClass" ], - "hash": 99763507, + "hash": 1431031301, "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", + "m_radius": { + "type": "float", "id": 0, - "offset": 104, - "flags": 39, + "offset": 72, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 + "hash": 989410271 }, - "m_gameEffects": { - "type": "class SharedPointer", + "m_triggerT": { + "type": "float", "id": 1, - "offset": 112, + "offset": 76, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1169674284 + "pointer": false, + "hash": 2138083583 + }, + "m_popupKey": { + "type": "std::string", + "id": 2, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3434427096 } } }, - "1248399720": { - "name": "class SharedPointer", + "1862912736": { + "name": "class SharedPointer", "bases": [ + "ActorCinematicAction", + "CinematicAction", "PropertyClass" ], - "hash": 1248399720, + "hash": 1862912736, "properties": { - "m_sigilID": { - "type": "unsigned int", + "m_timeOffset": { + "type": "float", "id": 0, "offset": 72, "flags": 7, @@ -662256,9 +663799,9 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 1425799538 + "hash": 2237098605 }, - "m_buttonStringKey": { + "m_actor": { "type": "std::string", "id": 1, "offset": 80, @@ -662267,104 +663810,251 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 3226477495 + "hash": 2285866132 + } + } + }, + "580030335": { + "name": "class WizClientObjectItem*", + "bases": [ + "ClientObject", + "CoreObject", + "PropertyClass" + ], + "hash": 580030335, + "properties": { + "m_inactiveBehaviors": { + "type": "class SharedPointer", + "id": 0, + "offset": 224, + "flags": 31, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1850812559 }, - "m_playerSchoolIDList": { - "type": "unsigned int", + "m_globalID.m_full": { + "type": "unsigned __int64", + "id": 1, + "offset": 72, + "flags": 16777247, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2312465444 + }, + "m_permID": { + "type": "unsigned __int64", "id": 2, - "offset": 112, - "flags": 7, - "container": "List", - "dynamic": true, + "offset": 80, + "flags": 16777247, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 346919403 + "hash": 1298909658 }, - "m_isInstance": { - "type": "bool", + "m_location": { + "type": "class Vector3D", "id": 3, - "offset": 128, - "flags": 7, + "offset": 168, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 822314308 + "hash": 2239683611 }, - "m_secondsElapsed": { - "type": "unsigned int", + "m_orientation": { + "type": "class Vector3D", "id": 4, - "offset": 132, - "flags": 7, + "offset": 180, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1701124410 + "hash": 2344058766 }, - "m_isFarming": { - "type": "bool", + "m_fScale": { + "type": "float", "id": 5, - "offset": 136, - "flags": 7, + "offset": 196, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 328236467 + "hash": 503137701 }, - "m_minimumTeamSize": { - "type": "unsigned char", + "m_templateID.m_full": { + "type": "unsigned __int64", "id": 6, - "offset": 137, - "flags": 7, + "offset": 96, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 904550318 + "hash": 633907631 }, - "m_pSigilMonthlyGauntletInfo": { - "type": "class SharedPointer", + "m_debugName": { + "type": "std::string", "id": 7, - "offset": 144, - "flags": 7, + "offset": 104, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1631820172 + "pointer": false, + "hash": 3553984419 }, - "m_requestedSigilMode": { - "type": "enum RequestedSigilMode", + "m_displayKey": { + "type": "std::string", "id": 8, - "offset": 76, - "flags": 2097159, + "offset": 136, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1327681577, - "enum_options": { - "REQUESTED_DEFAULT_MODE_SIGIL": 0, - "REQUESTED_STANDARD_MODE_SIGIL": 1, - "REQUESTED_ADVANCED_MODE_SIGIL": 2, - "REQUESTED_MONTHLYGAUNTLET_MODE_SIGIL": 3 - } + "hash": 3023276954 + }, + "m_zoneTagID": { + "type": "unsigned int", + "id": 9, + "offset": 344, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 965291410 + }, + "m_speedMultiplier": { + "type": "short", + "id": 10, + "offset": 192, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 123130076 + }, + "m_nMobileID": { + "type": "unsigned short", + "id": 11, + "offset": 194, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1054318939 + }, + "m_characterId": { + "type": "gid", + "id": 12, + "offset": 440, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 210498418 + }, + "m_primaryColor": { + "type": "int", + "id": 13, + "offset": 568, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 900965981 + }, + "m_pattern": { + "type": "int", + "id": 14, + "offset": 572, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1337683384 + }, + "m_secondaryColor": { + "type": "int", + "id": 15, + "offset": 576, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1616550081 + }, + "m_displayID": { + "type": "gid", + "id": 16, + "offset": 584, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1022427803 + }, + "m_itemFlags": { + "type": "unsigned int", + "id": 17, + "offset": 592, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2004128457 } } }, - "1665727249": { - "name": "class SharedPointer", + "1430645630": { + "name": "class ExtraHousingZoneBehaviorBase", "bases": [ - "ContainerEffectTemplate", - "GameEffectTemplate", + "BehaviorInstance", "PropertyClass" ], - "hash": 1665727249, + "hash": 1430645630, "properties": { - "m_effectName": { - "type": "std::string", + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + } + } + }, + "1008725497": { + "name": "class BurnHangingEffectCinematicAction*", + "bases": [ + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 1008725497, + "properties": { + "m_timeOffset": { + "type": "float", "id": 0, "offset": 72, "flags": 7, @@ -662372,624 +664062,712 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 2029161513 + "hash": 2237098605 }, - "m_effectCategory": { + "m_actor": { "type": "std::string", "id": 1, - "offset": 104, + "offset": 80, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1852673222 + "hash": 2285866132 }, - "m_sortOrder": { - "type": "int", + "m_cloaked": { + "type": "bool", "id": 2, - "offset": 148, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 7349510 + }, + "m_detonate": { + "type": "bool", + "id": 3, + "offset": 153, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1738601959 + }, + "m_burnSound": { + "type": "std::string", + "id": 4, + "offset": 120, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1827806971 + } + } + }, + "156351368": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 156351368, + "properties": { + "m_propertyList": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 23, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2832578002 + } + } + }, + "1430930538": { + "name": "enum ClassProjectRewardType", + "bases": [], + "hash": 1430930538, + "properties": {} + }, + "1863799967": { + "name": "class AnimationSetManager", + "bases": [ + "PropertyClass" + ], + "hash": 1863799967, + "properties": { + "m_sets": { + "type": "class AnimationSet*", + "id": 0, + "offset": 80, "flags": 7, + "container": "List", + "dynamic": true, + "singleton": true, + "pointer": true, + "hash": 809977903 + } + } + }, + "583846831": { + "name": "class ControlList*", + "bases": [ + "ControlText", + "Window", + "PropertyClass" + ], + "hash": 583846831, + "properties": { + "m_sName": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306437263 + }, + "m_Children": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621225959 + }, + "m_Style": { + "type": "unsigned int", + "id": 2, + "offset": 152, + "flags": 1048583, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1411218206 + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152, + "ITEM_HEIGHT": 16777216, + "COLUMN_CENTER": 33554432, + "VERTICAL_CENTER": 67108864, + "DO_NOT_WRAP": 134217728, + "IGNORE_KEYBOARD": 536870912 + } }, - "m_duration": { - "type": "double", + "m_Flags": { + "type": "unsigned int", "id": 3, - "offset": 192, - "flags": 7, + "offset": 156, + "flags": 1048583, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2727932435 + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } }, - "m_stackingCategories": { - "type": "std::string", + "m_Window": { + "type": "class Rect", "id": 4, "offset": 160, - "flags": 7, - "container": "List", - "dynamic": true, + "flags": 135, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 1774497525 + "hash": 3105139380 }, - "m_isPersistent": { - "type": "bool", + "m_fTargetAlpha": { + "type": "float", "id": 5, - "offset": 153, - "flags": 7, + "offset": 212, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 923861920 + "hash": 1809129834 }, - "m_bIsOnPet": { - "type": "bool", + "m_fDisabledAlpha": { + "type": "float", "id": 6, - "offset": 154, - "flags": 7, + "offset": 216, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 522593303 + "hash": 1389987675 }, - "m_isPublic": { - "type": "bool", + "m_fAlpha": { + "type": "float", "id": 7, - "offset": 152, - "flags": 7, + "offset": 208, + "flags": 65671, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1728439822 + "hash": 482130755 }, - "m_visualEffectAddName": { - "type": "std::string", + "m_pWindowStyle": { + "type": "class SharedPointer", "id": 8, - "offset": 200, - "flags": 7, + "offset": 232, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 3382086694 + "pointer": true, + "hash": 3623628394 }, - "m_visualEffectRemoveName": { - "type": "std::string", + "m_sHelp": { + "type": "std::wstring", "id": 9, - "offset": 232, - "flags": 7, + "offset": 248, + "flags": 4194439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1541697323 + "hash": 2102211316 }, - "m_onAddFunctorName": { + "m_sScript": { "type": "std::string", "id": 10, - "offset": 280, - "flags": 7, + "offset": 352, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1561843107 + "hash": 1846695875 }, - "m_onRemoveFunctorName": { - "type": "std::string", + "m_Offset": { + "type": "class Point", "id": 11, - "offset": 312, - "flags": 7, + "offset": 192, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2559017864 + "hash": 3389835433 }, - "m_stackingRule": { - "type": "enum STACKING_RULE", + "m_Scale": { + "type": "class Point", "id": 12, - "offset": 144, - "flags": 2097159, + "offset": 200, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 431568889, - "enum_options": { - "STACKING_ALLOWED": 0, - "STACKING_NOSTACK": 1, - "STACKING_REPLACE": 2 - } + "hash": 2547159940 }, - "m_startReqs": { - "type": "class SharedPointer", + "m_sTip": { + "type": "std::wstring", "id": 13, - "offset": 360, - "flags": 7, + "offset": 392, + "flags": 4194439, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3147529602 + "pointer": false, + "hash": 1513510520 }, - "m_containerEffects": { - "type": "class SharedPointer", + "m_BubbleList": { + "type": "class WindowBubble", "id": 14, - "offset": 376, - "flags": 7, + "offset": 424, + "flags": 135, "container": "List", "dynamic": true, "singleton": false, - "pointer": true, - "hash": 957354392 + "pointer": false, + "hash": 2587533771 }, - "m_accompanyID": { - "type": "unsigned int", + "m_ParentOffset": { + "type": "class Rect", "id": 15, - "offset": 392, - "flags": 7, + "offset": 176, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1462123093 - } - } - }, - "2057349160": { - "name": "class ClientFXBySlotEffect", - "bases": [ - "FXBySlotEffect", - "GameEffectBase", - "PropertyClass" - ], - "hash": 2057349160, - "properties": { - "m_currentTickCount": { - "type": "double", - "id": 0, - "offset": 80, - "flags": 63, + "hash": 3091503757 + }, + "m_sText": { + "type": "std::wstring", + "id": 16, + "offset": 584, + "flags": 4194439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2533274692 + "hash": 2102642960 }, - "m_effectNameID": { - "type": "unsigned int", - "id": 1, - "offset": 96, - "flags": 63, + "m_sTooltip": { + "type": "std::wstring", + "id": 17, + "offset": 616, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1204067144 + "hash": 1680475798 }, - "m_bIsOnPet": { + "m_bUseDropShadow": { "type": "bool", - "id": 2, - "offset": 73, - "flags": 31, + "id": 18, + "offset": 653, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 522593303 + "hash": 93063037 }, - "m_originatorID": { - "type": "gid", - "id": 3, - "offset": 104, - "flags": 39, + "m_bUseOutline": { + "type": "bool", + "id": 19, + "offset": 654, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1131810019 + "hash": 744292994 }, - "m_itemSlotID": { - "type": "unsigned int", - "id": 4, - "offset": 112, - "flags": 63, + "m_bEnableWordWrap": { + "type": "bool", + "id": 20, + "offset": 655, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1895747595 + "hash": 430904562 }, - "m_internalID": { - "type": "int", - "id": 5, - "offset": 92, - "flags": 63, + "m_bEnableToggle": { + "type": "bool", + "id": 21, + "offset": 652, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1643137924 + "hash": 1937994142 }, - "m_endTime": { - "type": "unsigned int", - "id": 6, - "offset": 88, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 716479635 - } - } - }, - "2057349120": { - "name": "class ClientFXBySlotEffect*", - "bases": [ - "FXBySlotEffect", - "GameEffectBase", - "PropertyClass" - ], - "hash": 2057349120, - "properties": { - "m_currentTickCount": { - "type": "double", - "id": 0, - "offset": 80, - "flags": 63, + "m_nLeadingAdjust": { + "type": "int", + "id": 22, + "offset": 656, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2533274692 + "hash": 1559480167 }, - "m_effectNameID": { - "type": "unsigned int", - "id": 1, - "offset": 96, - "flags": 63, + "m_TextColor": { + "type": "class Color", + "id": 23, + "offset": 696, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1204067144 + "hash": 2267136674 }, - "m_bIsOnPet": { - "type": "bool", - "id": 2, - "offset": 73, - "flags": 31, + "m_SelectColor": { + "type": "class Color", + "id": 24, + "offset": 700, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 522593303 + "hash": 2792529213 }, - "m_originatorID": { - "type": "gid", - "id": 3, - "offset": 104, - "flags": 39, + "m_HighlightColor": { + "type": "class Color", + "id": 25, + "offset": 704, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1131810019 + "hash": 1047198101 }, - "m_itemSlotID": { - "type": "unsigned int", - "id": 4, - "offset": 112, - "flags": 63, + "m_bSortEnable": { + "type": "bool", + "id": 26, + "offset": 784, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1895747595 + "hash": 24009764 }, - "m_internalID": { + "m_nSortByColumn": { "type": "int", - "id": 5, - "offset": 92, - "flags": 63, + "id": 27, + "offset": 788, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1643137924 + "hash": 1829537401 }, - "m_endTime": { - "type": "unsigned int", - "id": 6, - "offset": 88, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 716479635 - } - } - }, - "101271634": { - "name": "class AnimationBehaviorTemplate", - "bases": [ - "RenderBehaviorTemplate", - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 101271634, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, + "m_bSortAscending": { + "type": "bool", + "id": 28, + "offset": 792, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3130754092 + "hash": 1369222793 }, - "m_assetName": { - "type": "std::string", - "id": 1, - "offset": 120, - "flags": 131079, + "m_nHighlighted": { + "type": "int", + "id": 29, + "offset": 796, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1513131580 + "hash": 1020338345 }, - "m_proxyName": { - "type": "std::string", - "id": 2, - "offset": 152, - "flags": 131079, + "m_nSelected": { + "type": "int", + "id": 30, + "offset": 800, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3120358366 + "hash": 1017366545 }, - "m_height": { - "type": "float", - "id": 3, - "offset": 184, - "flags": 7, + "m_bListInvalid": { + "type": "bool", + "id": 31, + "offset": 804, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 602977104 + "hash": 376155128 }, - "m_bStaticObject": { + "m_bSortInvalid": { "type": "bool", - "id": 4, - "offset": 188, - "flags": 7, + "id": 32, + "offset": 805, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 108091444 + "hash": 1605867140 }, - "m_bCastsShadow": { - "type": "bool", - "id": 5, - "offset": 189, - "flags": 7, + "m_pScrollWin": { + "type": "class SharedPointer", + "id": 33, + "offset": 808, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 652868121 + "pointer": true, + "hash": 3263557131 }, - "m_bFadesIn": { - "type": "bool", - "id": 6, - "offset": 190, - "flags": 7, + "m_itemHeight": { + "type": "int", + "id": 34, + "offset": 824, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 263337711, - "enum_options": { - "__DEFAULT": 1 - } + "hash": 1245325666 }, - "m_opacity": { - "type": "float", - "id": 7, - "offset": 192, - "flags": 7, + "m_itemNormalState": { + "type": "class ControlList::ListItemState*", + "id": 35, + "offset": 832, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 700308464, - "enum_options": { - "__DEFAULT": 1 - } + "pointer": true, + "hash": 2253036141 }, - "m_bFadesOut": { - "type": "bool", - "id": 8, - "offset": 196, - "flags": 7, + "m_itemHighlightedState": { + "type": "class ControlList::ListItemState*", + "id": 36, + "offset": 840, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 17988464, - "enum_options": { - "__DEFAULT": 1 - } + "pointer": true, + "hash": 2949959141 }, - "m_bPortalExcluded": { - "type": "bool", - "id": 9, - "offset": 197, - "flags": 7, + "m_itemSelectedState": { + "type": "class ControlList::ListItemState*", + "id": 37, + "offset": 848, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 239086293 + "pointer": true, + "hash": 2463527405 }, - "m_scale": { - "type": "float", - "id": 10, - "offset": 200, - "flags": 7, + "m_itemDisabledState": { + "type": "class ControlList::ListItemState*", + "id": 38, + "offset": 856, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 899693439, - "enum_options": { - "__DEFAULT": 1 - } - }, - "m_bCanBeHiddenByCamera": { - "type": "bool", - "id": 11, - "offset": 204, - "flags": 263, + "pointer": true, + "hash": 4008046876 + } + } + }, + "582722789": { + "name": "class FishSellingOption*", + "bases": [ + "ServiceOptionBase", + "PropertyClass" + ], + "hash": 582722789, + "properties": { + "m_serviceName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 185252414 + "hash": 2206028813 }, - "m_nLightType": { - "type": "enum RenderBehaviorTemplate::LightingType", - "id": 12, - "offset": 208, - "flags": 2097159, + "m_iconKey": { + "type": "std::string", + "id": 1, + "offset": 168, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2027385184, - "enum_options": { - "None": 0, - "Char": 1, - "Env": 2 - } + "hash": 2457138637 }, - "m_shadowAssetName": { + "m_displayKey": { "type": "std::string", - "id": 13, - "offset": 216, - "flags": 131335, + "id": 2, + "offset": 104, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1844059970 + "hash": 3023276954 }, - "m_enableReqs": { - "type": "class SharedPointer", - "id": 14, - "offset": 248, - "flags": 263, + "m_serviceIndex": { + "type": "unsigned int", + "id": 3, + "offset": 204, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3158020443 + "pointer": false, + "hash": 2103126710 }, - "m_skeletonID": { - "type": "int", - "id": 15, - "offset": 264, - "flags": 7, + "m_forceInteract": { + "type": "bool", + "id": 4, + "offset": 200, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1375865996 - }, - "m_dataLookupAssetName": { - "type": "std::string", - "id": 16, - "offset": 272, - "flags": 131079, + "hash": 1705789564 + } + } + }, + "1010776233": { + "name": "struct std::pair,class std::allocator > >", + "bases": [], + "hash": 1010776233, + "properties": {} + }, + "159141929": { + "name": "class WinAnimSizeSpeed", + "bases": [ + "WinAnimSize", + "WindowAnimation", + "PropertyClass" + ], + "hash": 159141929, + "properties": { + "m_bUseDeepCopy": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1944770480 + "hash": 433380635 }, - "m_animationAssetName": { - "type": "std::string", - "id": 17, - "offset": 304, - "flags": 131079, + "m_size": { + "type": "class Size", + "id": 1, + "offset": 80, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2944957756 + "hash": 251247159 }, - "m_movementScale": { + "m_fSpeed": { "type": "float", - "id": 18, - "offset": 336, - "flags": 7, + "id": 2, + "offset": 88, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 768663914 + "hash": 503609006 }, - "m_idleAnimationName": { - "type": "std::string", - "id": 19, - "offset": 344, - "flags": 7, + "m_currentSize": { + "type": "class Vector3D", + "id": 3, + "offset": 92, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1616739386 - }, - "m_animationEventList": { - "type": "class SharedPointer", - "id": 20, - "offset": 376, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2858101335 + "hash": 2914066496 } } }, - "1665908489": { - "name": "class InventoryPageWindow::InventoryItem", + "580931103": { + "name": "class PotionButton*", "bases": [ - "ControlCheckBox", "ControlButton", "Window", "PropertyClass" ], - "hash": 1665908489, + "hash": 580931103, "properties": { "m_sName": { "type": "std::string", @@ -663039,11 +664817,11 @@ "AUTO_GROW": 16384, "AUTO_SHRINK": 32768, "AUTO_RESIZE": 49152, + "SHOW_HOTKEY": 16777216, "EFFECT_SCALE": 67108864, "LOCK_ICON_SIZE": 33554432, "LEFT_TEXT": 536870912, - "NO_FIT_TEXT": 1073741824, - "CHECKBOX_TEXTOVERIMAGE": 16777216 + "NO_FIT_TEXT": 1073741824 } }, "m_Flags": { @@ -663434,169 +665212,16 @@ "singleton": false, "pointer": true, "hash": 1878185798 - }, - "m_nGroupID": { - "type": "int", - "id": 37, - "offset": 880, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 403966850 - }, - "m_bChecked": { - "type": "bool", - "id": 38, - "offset": 884, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 958955100 - }, - "m_pCheckedState": { - "type": "class SharedPointer", - "id": 39, - "offset": 888, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1210539694 - }, - "m_pCheckedGreyedState": { - "type": "class SharedPointer", - "id": 40, - "offset": 904, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2702030126 - }, - "m_pCheckedHighlightedState": { - "type": "class SharedPointer", - "id": 41, - "offset": 920, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1320097679 - }, - "m_pCheckedDepressedState": { - "type": "class SharedPointer", - "id": 42, - "offset": 936, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1609188685 - }, - "m_pEquipNormalState": { - "type": "class SharedPointer", - "id": 43, - "offset": 976, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1322058516 - }, - "m_pEquipPressState": { - "type": "class SharedPointer", - "id": 44, - "offset": 992, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3019605144 - }, - "m_pEquipHighlightState": { - "type": "class SharedPointer", - "id": 45, - "offset": 1008, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2559056739 - }, - "m_pEquipCheckState": { - "type": "class SharedPointer", - "id": 46, - "offset": 1024, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2420681417 - }, - "m_pEquipCheckPressState": { - "type": "class SharedPointer", - "id": 47, - "offset": 1040, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2063281462 - }, - "m_pEquipCheckHighlightState": { - "type": "class SharedPointer", - "id": 48, - "offset": 1056, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2990990081 - } - } - }, - "1249773005": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1249773005, - "properties": { - "m_allPacks": { - "type": "class SharedPointer", - "id": 0, - "offset": 80, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": true, - "pointer": true, - "hash": 1650503223 } } }, - "2058562748": { - "name": "class SharedPointer", + "1009616687": { + "name": "class DependentResourcesBehavior*", "bases": [ - "CollisionBehavior", "BehaviorInstance", "PropertyClass" ], - "hash": 2058562748, + "hash": 1009616687, "properties": { "m_behaviorTemplateNameID": { "type": "unsigned int", @@ -663611,38 +665236,47 @@ } } }, - "101570942": { - "name": "class SharedPointer", + "1431398034": { + "name": "class SharedPointer", "bases": [ - "UpdatePipsCinematicAction", - "CinematicAction", "PropertyClass" ], - "hash": 101570942, + "hash": 1431398034, "properties": { - "m_timeOffset": { - "type": "float", + "m_myStitchEntryList": { + "type": "class SharedPointer", "id": 0, "offset": 72, "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621117270 + }, + "m_hasEventJudgesChoiceAvailable": { + "type": "bool", + "id": 1, + "offset": 88, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 + "hash": 1875999071 } } }, - "1250331631": { - "name": "class SharedPointer", + "158186061": { + "name": "class ReqOtherCharacterQuestCompleted*", "bases": [ - "GameEffectInfo", + "Requirement", "PropertyClass" ], - "hash": 1250331631, + "hash": 158186061, "properties": { - "m_effectName": { - "type": "std::string", + "m_applyNOT": { + "type": "bool", "id": 0, "offset": 72, "flags": 31, @@ -663650,1442 +665284,1346 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 2029161513 + "hash": 1746328074, + "enum_options": { + "__DEFAULT": 0 + } }, - "m_happinessCost": { - "type": "int", + "m_operator": { + "type": "enum Requirement::Operator", "id": 1, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1107125310 - }, - "m_cooldown": { - "type": "int", - "id": 2, - "offset": 108, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1897549823 - }, - "m_usesPerCombat": { - "type": "int", - "id": 3, - "offset": 112, - "flags": 31, + "offset": 76, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1445312791 + "hash": 2672792317, + "enum_options": { + "ROP_AND": 0, + "ROP_OR": 1, + "__DEFAULT": "ROP_AND" + } }, - "m_unlockedTemplate": { + "m_quest": { "type": "std::string", - "id": 4, - "offset": 120, + "id": 2, + "offset": 80, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1809846764 - }, - "m_lockedTemplate": { - "type": "std::string", - "id": 5, - "offset": 152, - "flags": 31, - "container": "Static", - "dynamic": false, + "hash": 2305471533 + } + } + }, + "1868806321": { + "name": "enum JewelSocket::JewelSocketType", + "bases": [], + "hash": 1868806321, + "properties": {} + }, + "580128245": { + "name": "class WizPolymorphTemplate*", + "bases": [ + "CoreTemplate", + "PropertyClass" + ], + "hash": 580128245, + "properties": { + "m_behaviors": { + "type": "class BehaviorTemplate*", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Vector", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 2044999913 + "pointer": true, + "hash": 1197808594 }, - "m_combatTalent": { - "type": "bool", - "id": 6, - "offset": 184, - "flags": 31, + "m_templateID": { + "type": "unsigned int", + "id": 1, + "offset": 96, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2113651857 + "hash": 1286746870 }, - "m_triggerName": { - "type": "std::string", - "id": 7, - "offset": 192, - "flags": 31, + "m_mobTemplateID": { + "type": "unsigned int", + "id": 2, + "offset": 100, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3100183568 + "hash": 1268089108 }, - "m_unlockReagentAmount1": { - "type": "int", - "id": 8, - "offset": 224, - "flags": 31, - "container": "Static", - "dynamic": false, + "m_effects": { + "type": "class GameEffectInfo*", + "id": 3, + "offset": 104, + "flags": 7, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 1546338481 - }, - "m_unlockReagentTemplate1": { + "pointer": true, + "hash": 588086299 + } + } + }, + "1009616677": { + "name": "class DependentResourcesBehavior", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1009616677, + "properties": { + "m_behaviorTemplateNameID": { "type": "unsigned int", - "id": 9, - "offset": 228, - "flags": 33554463, + "id": 0, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 943550188 - }, - "m_unlockReagentAmount2": { - "type": "int", - "id": 10, - "offset": 232, + "hash": 223437287 + } + } + }, + "1431031621": { + "name": "class GameEffectTimerPopupTrigger*", + "bases": [ + "GameEffectTimerTrigger", + "PropertyClass" + ], + "hash": 1431031621, + "properties": { + "m_radius": { + "type": "float", + "id": 0, + "offset": 72, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1546338482 - }, - "m_unlockReagentTemplate2": { - "type": "unsigned int", - "id": 11, - "offset": 236, - "flags": 33554463, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 943550189 + "hash": 989410271 }, - "m_unlockReagentAmount3": { - "type": "int", - "id": 12, - "offset": 240, + "m_triggerT": { + "type": "float", + "id": 1, + "offset": 76, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1546338483 + "hash": 2138083583 }, - "m_unlockReagentTemplate3": { - "type": "unsigned int", - "id": 13, - "offset": 244, - "flags": 33554463, + "m_popupKey": { + "type": "std::string", + "id": 2, + "offset": 80, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 943550190 - }, - "m_unlockReagentAmount4": { - "type": "int", - "id": 14, - "offset": 248, + "hash": 3434427096 + } + } + }, + "156961698": { + "name": "class PromoPromotion", + "bases": [ + "PropertyClass" + ], + "hash": 156961698, + "properties": { + "m_promoID": { + "type": "std::string", + "id": 0, + "offset": 72, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1546338484 + "hash": 3494513013 }, - "m_unlockReagentTemplate4": { - "type": "unsigned int", - "id": 15, - "offset": 252, - "flags": 33554463, + "m_promoTitle": { + "type": "std::string", + "id": 1, + "offset": 104, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 943550191 + "hash": 1797811434 }, - "m_extra1": { + "m_promoDesc": { "type": "std::string", - "id": 16, - "offset": 256, + "id": 2, + "offset": 136, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1916008880 + "hash": 2677655015 }, - "m_extra2": { - "type": "std::string", - "id": 17, - "offset": 288, + "m_inviterRewards": { + "type": "class PromoRewardList", + "id": 3, + "offset": 168, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1916008881 + "hash": 1643624525 }, - "m_lootTableName": { - "type": "std::string", - "id": 18, - "offset": 320, + "m_inviteeRewards": { + "type": "class PromoRewardList", + "id": 4, + "offset": 256, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2333333378 - }, - "m_powerDisplayName": { + "hash": 1654647008 + } + } + }, + "1865490628": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1865490628, + "properties": { + "m_conditionFlags": { "type": "std::string", - "id": 19, - "offset": 352, - "flags": 8388639, - "container": "Static", - "dynamic": false, + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 2338393887 - }, - "m_requirementList": { - "type": "class SharedPointer", - "id": 20, - "offset": 384, + "hash": 2483653903 + } + } + }, + "1864862540": { + "name": "class JoinTeamUpdate", + "bases": [ + "TournamentUpdate", + "PropertyClass" + ], + "hash": 1864862540, + "properties": { + "m_actor": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": true, - "hash": 3783909798 - }, - "m_requirementFailedString": { + "hash": 1120253775 + } + } + }, + "580269176": { + "name": "class CursorStyle", + "bases": [ + "PropertyClass" + ], + "hash": 580269176, + "properties": { + "m_name": { "type": "std::string", - "id": 21, - "offset": 400, - "flags": 8388639, + "id": 0, + "offset": 72, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2051573416 + "hash": 1717359772 }, - "m_noPVP": { - "type": "bool", - "id": 22, - "offset": 436, - "flags": 31, + "m_cursorState": { + "type": "enum CursorState", + "id": 1, + "offset": 104, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 806455846 + "hash": 2665308791, + "enum_options": { + "CS_POINTER": 1, + "CS_MOVE": 2, + "CS_HARROW": 3, + "CS_VARROW": 4, + "CS_EDIT": 5, + "CS_SELECT": 6, + "CS_USER1": 7, + "CS_USER2": 8, + "CS_USER3": 9, + "CS_USER4": 10, + "CS_USER5": 11 + } }, - "m_rampUp": { - "type": "int", - "id": 23, - "offset": 440, - "flags": 31, + "m_moveable": { + "type": "bool", + "id": 2, + "offset": 320, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 899539119 + "hash": 1000738782 }, - "m_description": { - "type": "std::string", - "id": 24, - "offset": 448, - "flags": 8388639, + "m_softwareStyle": { + "type": "class SoftwareStyle", + "id": 3, + "offset": 112, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1649374815 + "hash": 2133920820 }, - "m_myTurn": { - "type": "bool", - "id": 25, - "offset": 480, - "flags": 31, + "m_hardwareStyle": { + "type": "class HardwareStyle", + "id": 4, + "offset": 216, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 733913410 + "hash": 1521077471 } } }, - "1676066464": { - "name": "class SpeedEffectTemplate", + "1864220971": { + "name": "class SpellTemplate*", "bases": [ - "GameEffectTemplate", + "CoreTemplate", "PropertyClass" ], - "hash": 1676066464, + "hash": 1864220971, "properties": { - "m_effectName": { - "type": "std::string", + "m_behaviors": { + "type": "class BehaviorTemplate*", "id": 0, "offset": 72, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "Vector", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 2029161513 + "pointer": true, + "hash": 1197808594 }, - "m_effectCategory": { + "m_name": { "type": "std::string", "id": 1, - "offset": 104, + "offset": 96, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1852673222 + "hash": 1717359772 }, - "m_sortOrder": { - "type": "int", + "m_description": { + "type": "std::string", "id": 2, - "offset": 148, - "flags": 7, + "offset": 168, + "flags": 8388615, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1411218206 + "hash": 1649374815 }, - "m_duration": { - "type": "double", + "m_advancedDescription": { + "type": "std::string", "id": 3, - "offset": 192, - "flags": 7, + "offset": 200, + "flags": 8388615, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2727932435 + "hash": 3465713013 }, - "m_stackingCategories": { + "m_displayName": { "type": "std::string", "id": 4, - "offset": 160, - "flags": 7, - "container": "List", - "dynamic": true, + "offset": 136, + "flags": 8388615, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 1774497525 + "hash": 2446900370 }, - "m_isPersistent": { - "type": "bool", + "m_spellBase": { + "type": "std::string", "id": 5, - "offset": 153, - "flags": 7, + "offset": 248, + "flags": 268435463, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 923861920 + "hash": 2688054198, + "enum_options": { + "__BASECLASS": "CinematicTemplate" + } }, - "m_bIsOnPet": { - "type": "bool", + "m_effects": { + "type": "class SharedPointer", "id": 6, - "offset": 154, + "offset": 280, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "Vector", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 522593303 + "pointer": true, + "hash": 370726379 }, - "m_isPublic": { - "type": "bool", + "m_sMagicSchoolName": { + "type": "std::string", "id": 7, - "offset": 152, + "offset": 312, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1728439822 + "hash": 2035693400 }, - "m_visualEffectAddName": { + "m_sTypeName": { "type": "std::string", "id": 8, - "offset": 200, + "offset": 352, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3382086694 + "hash": 3580785905 }, - "m_visualEffectRemoveName": { - "type": "std::string", + "m_trainingCost": { + "type": "int", "id": 9, - "offset": 232, + "offset": 384, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1541697323 + "hash": 982588239 }, - "m_onAddFunctorName": { - "type": "std::string", + "m_accuracy": { + "type": "int", "id": 10, - "offset": 280, + "offset": 388, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1561843107 + "hash": 1636315493 }, - "m_onRemoveFunctorName": { - "type": "std::string", + "m_baseCost": { + "type": "int", "id": 11, - "offset": 312, + "offset": 232, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2559017864 + "hash": 1475151502 }, - "m_stackingRule": { - "type": "enum STACKING_RULE", + "m_creditsCost": { + "type": "int", "id": 12, - "offset": 144, - "flags": 2097159, + "offset": 236, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 431568889, - "enum_options": { - "STACKING_ALLOWED": 0, - "STACKING_NOSTACK": 1, - "STACKING_REPLACE": 2 - } + "hash": 715313825 }, - "m_speedMultiplier": { + "m_pvpCurrencyCost": { "type": "int", "id": 13, - "offset": 360, + "offset": 240, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 32503058 - } - } - }, - "1673432062": { - "name": "class TreasureTableLootInfo", - "bases": [ - "LootInfo", - "LootInfoBase", - "PropertyClass" - ], - "hash": 1673432062, - "properties": { - "m_lootType": { - "type": "enum LootInfo::LOOT_TYPE", - "id": 0, - "offset": 72, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1591891442, - "enum_options": { - "LOOT_TYPE_NONE": 0, - "LOOT_TYPE_GOLD": 1, - "LOOT_TYPE_MANA": 2, - "LOOT_TYPE_ITEM": 3, - "LOOT_TYPE_TREASURE_CARD": 4, - "LOOT_TYPE_MAGIC_XP": 5, - "LOOT_TYPE_ADD_SPELL": 6, - "LOOT_TYPE_MAX_HEALTH": 7, - "LOOT_TYPE_MAX_GOLD": 8, - "LOOT_TYPE_MAX_MANA": 9, - "LOOT_TYPE_MAX_POTION": 10, - "LOOT_TYPE_TRAINING_POINTS": 11, - "LOOT_TYPE_RECIPE": 12, - "LOOT_TYPE_CRAFTING_SLOT": 13, - "LOOT_TYPE_REAGENT": 14, - "LOOT_TYPE_PETSNACK": 15, - "LOOT_TYPE_GARDENING_XP": 16, - "LOOT_TYPE_PET_XP": 17, - "LOOT_TYPE_TREASURE_TABLE": 18, - "LOOT_TYPE_ARENA_POINTS": 19, - "LOOT_TYPE_ARENA_BONUS_POINTS": 20, - "LOOT_TYPE_GROUP": 21, - "LOOT_TYPE_FISHING_XP": 22, - "LOOT_TYPE_EVENT_CURRENCY_1": 24, - "LOOT_TYPE_EVENT_CURRENCY_2": 25, - "LOOT_TYPE_PVP_CURRENCY": 26, - "LOOT_TYPE_PVP_CURRENCY_BONUS": 27, - "LOOT_TYPE_PVP_TOURNEY_CURRENCY": 28, - "LOOT_TYPE_PVP_TOURNEY_CURRENCY_BONUS": 29, - "LOOT_TYPE_FURNITURE_ESSENCE": 30 - } - } - } - }, - "2059285962": { - "name": "class SharedPointer", - "bases": [ - "LootInfo", - "LootInfoBase", - "PropertyClass" - ], - "hash": 2059285962, - "properties": { - "m_lootType": { - "type": "enum LootInfo::LOOT_TYPE", - "id": 0, - "offset": 72, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1591891442, - "enum_options": { - "LOOT_TYPE_NONE": 0, - "LOOT_TYPE_GOLD": 1, - "LOOT_TYPE_MANA": 2, - "LOOT_TYPE_ITEM": 3, - "LOOT_TYPE_TREASURE_CARD": 4, - "LOOT_TYPE_MAGIC_XP": 5, - "LOOT_TYPE_ADD_SPELL": 6, - "LOOT_TYPE_MAX_HEALTH": 7, - "LOOT_TYPE_MAX_GOLD": 8, - "LOOT_TYPE_MAX_MANA": 9, - "LOOT_TYPE_MAX_POTION": 10, - "LOOT_TYPE_TRAINING_POINTS": 11, - "LOOT_TYPE_RECIPE": 12, - "LOOT_TYPE_CRAFTING_SLOT": 13, - "LOOT_TYPE_REAGENT": 14, - "LOOT_TYPE_PETSNACK": 15, - "LOOT_TYPE_GARDENING_XP": 16, - "LOOT_TYPE_PET_XP": 17, - "LOOT_TYPE_TREASURE_TABLE": 18, - "LOOT_TYPE_ARENA_POINTS": 19, - "LOOT_TYPE_ARENA_BONUS_POINTS": 20, - "LOOT_TYPE_GROUP": 21, - "LOOT_TYPE_FISHING_XP": 22, - "LOOT_TYPE_EVENT_CURRENCY_1": 24, - "LOOT_TYPE_EVENT_CURRENCY_2": 25, - "LOOT_TYPE_PVP_CURRENCY": 26, - "LOOT_TYPE_PVP_CURRENCY_BONUS": 27, - "LOOT_TYPE_PVP_TOURNEY_CURRENCY": 28, - "LOOT_TYPE_PVP_TOURNEY_CURRENCY_BONUS": 29, - "LOOT_TYPE_FURNITURE_ESSENCE": 30 - } + "hash": 645595444 }, - "m_healthToAdd": { + "m_pvpTourneyCurrencyCost": { "type": "int", - "id": 1, - "offset": 80, - "flags": 31, + "id": 14, + "offset": 244, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1370421596 - } - } - }, - "1670227319": { - "name": "class SharedPointer", - "bases": [ - "WizItemLocations", - "PropertyClass" - ], - "hash": 1670227319, - "properties": { - "m_itemType": { - "type": "enum WizItemLocations::eItemType", - "id": 0, - "offset": 72, - "flags": 2097183, + "hash": 517874954 + }, + "m_boosterPackIcon": { + "type": "std::string", + "id": 15, + "offset": 496, + "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3482173907, - "enum_options": { - "shop": 0, - "quest": 1, - "boss": 2, - "gardening": 3, - "goldChest": 4 - } + "hash": 3428653697 }, - "m_goldChestZones": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 31, + "m_validTargetSpells": { + "type": "unsigned int", + "id": 16, + "offset": 392, + "flags": 7, "container": "List", "dynamic": true, "singleton": false, "pointer": false, - "hash": 2718514023 - } - } - }, - "101681082": { - "name": "class BasicChatPlayer*", - "bases": [ - "PropertyClass" - ], - "hash": 101681082, - "properties": { - "m_characterID": { - "type": "gid", - "id": 0, - "offset": 72, + "hash": 2355782967 + }, + "m_PvP": { + "type": "bool", + "id": 17, + "offset": 408, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 210498386 + "hash": 269492361 }, - "m_nameBlob": { - "type": "std::string", - "id": 1, - "offset": 80, + "m_PvE": { + "type": "bool", + "id": 18, + "offset": 409, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3058206907 + "hash": 269492350 }, - "m_schoolLevel": { - "type": "unsigned int", - "id": 2, - "offset": 112, + "m_noPvPEnchant": { + "type": "bool", + "id": 19, + "offset": 410, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 221776365 + "hash": 661581703 }, - "m_objectID": { - "type": "gid", - "id": 3, - "offset": 120, + "m_noPvEEnchant": { + "type": "bool", + "id": 20, + "offset": 411, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 257032380 - } - } - }, - "1252686745": { - "name": "class LeashedPathNodeDescriptor", - "bases": [ - "NodeDescriptor", - "PropertyClass" - ], - "hash": 1252686745, - "properties": { - "m_nodeType": { - "type": "enum LeashedPathNodeType", - "id": 0, - "offset": 72, - "flags": 2097159, + "hash": 10144220 + }, + "m_battlegroundsOnly": { + "type": "bool", + "id": 21, + "offset": 412, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3706891451, - "enum_options": { - "NT_NONE": 0, - "NT_ANIM": 1, - "NT_SPEEDSCALE": 2, - "NT_TELEPORT": 3 - } + "hash": 1244782419 }, - "m_animationName": { - "type": "std::string", - "id": 1, - "offset": 80, + "m_Treasure": { + "type": "bool", + "id": 22, + "offset": 413, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3393414044 + "hash": 1749096414 }, - "m_teleportToZone": { - "type": "std::string", - "id": 2, - "offset": 112, + "m_noDiscard": { + "type": "bool", + "id": 23, + "offset": 414, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2018677929 + "hash": 565749226 }, - "m_zoneLocation": { - "type": "std::string", - "id": 3, - "offset": 144, + "m_leavesPlayWhenCast": { + "type": "bool", + "id": 24, + "offset": 532, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1597011152 + "hash": 698216294 }, - "m_speedScale": { - "type": "float", - "id": 4, - "offset": 176, + "m_imageIndex": { + "type": "int", + "id": 25, + "offset": 416, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2118638608 - } - } - }, - "1668142640": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1668142640, - "properties": { - "m_worldName": { + "hash": 1570500405 + }, + "m_imageName": { "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, + "id": 26, + "offset": 424, + "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1846757476 + "hash": 2391520543 }, - "m_monsterCount": { - "type": "unsigned int", - "id": 1, - "offset": 108, + "m_cloaked": { + "type": "bool", + "id": 27, + "offset": 489, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2119592350 - } - } - }, - "1252119767": { - "name": "class SharedPointer", - "bases": [ - "ControlCheckBox", - "ControlButton", - "Window", - "PropertyClass" - ], - "hash": 1252119767, - "properties": { - "m_sName": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 135, + "hash": 7349510 + }, + "m_casterInvisible": { + "type": "bool", + "id": 28, + "offset": 490, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2306437263 + "hash": 310214650 }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", + "m_adjectives": { + "type": "std::string", + "id": 29, + "offset": 576, + "flags": 7, + "container": "List", "dynamic": true, "singleton": false, - "pointer": true, - "hash": 2621225959 + "pointer": false, + "hash": 2967855037 }, - "m_Style": { - "type": "unsigned int", - "id": 2, - "offset": 152, - "flags": 1048583, + "m_spellSourceType": { + "type": "enum SpellTemplate::kSpellSourceType", + "id": 30, + "offset": 528, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 983582334, + "hash": 156272727, "enum_options": { - "HAS_BACK": 1, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152, - "EFFECT_SCALE": 67108864, - "LOCK_ICON_SIZE": 33554432, - "LEFT_TEXT": 536870912, - "NO_FIT_TEXT": 1073741824, - "CHECKBOX_TEXTOVERIMAGE": 16777216 + "kCaster": 0, + "kPet": 1, + "kShadowCreature": 2, + "kWeapon": 3, + "kEquipment": 4 } }, - "m_Flags": { - "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 1048583, + "m_cloakedName": { + "type": "std::string", + "id": 31, + "offset": 536, + "flags": 268435463, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 967851578, + "hash": 2846679215, "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 + "__BASECLASS": "SpellTemplate" } }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3105139380 - }, - "m_fTargetAlpha": { - "type": "float", - "id": 5, - "offset": 212, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1809129834 - }, - "m_fDisabledAlpha": { - "type": "float", - "id": 6, - "offset": 216, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1389987675 - }, - "m_fAlpha": { - "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 482130755 - }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, + "m_purchaseRequirements": { + "type": "class RequirementList*", + "id": 32, + "offset": 608, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": true, - "hash": 3623628394 + "hash": 3174641793 }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, + "m_displayRequirements": { + "type": "class RequirementList*", + "id": 33, + "offset": 840, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 2102211316 + "pointer": true, + "hash": 3646782876 }, - "m_sScript": { + "m_descriptionTrainer": { "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1846695875 - }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3389835433 - }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, + "id": 34, + "offset": 616, + "flags": 8388871, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2547159940 + "hash": 1756093908 }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, + "m_descriptionCombatHUD": { + "type": "std::string", + "id": 35, + "offset": 648, + "flags": 8388871, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2587533771 + "hash": 1631478006 }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, + "m_displayIndex": { + "type": "int", + "id": 36, + "offset": 680, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3091503757 + "hash": 1250551048 }, - "m_bToggle": { + "m_hiddenFromEffectsWindow": { "type": "bool", - "id": 16, - "offset": 608, - "flags": 135, + "id": 37, + "offset": 684, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2071810903 + "hash": 1832736331 }, - "m_bButtonDown": { + "m_ignoreCharms": { "type": "bool", - "id": 17, - "offset": 609, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 840041705 - }, - "m_sLabel": { - "type": "std::wstring", - "id": 18, - "offset": 616, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2207009163 - }, - "m_labelOffset": { - "type": "class Rect", - "id": 19, - "offset": 832, - "flags": 135, + "id": 38, + "offset": 685, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1990646723 - }, - "m_pButton": { - "type": "class SharedPointer", - "id": 20, - "offset": 656, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1543855875 + "hash": 1840075893 }, - "m_HotKey": { - "type": "unsigned int", - "id": 21, - "offset": 672, - "flags": 135, + "m_alwaysFizzle": { + "type": "bool", + "id": 39, + "offset": 686, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1631553409 + "hash": 2030988856 }, - "m_Color": { - "type": "class Color", - "id": 22, - "offset": 676, - "flags": 262279, + "m_spellCategory": { + "type": "std::string", + "id": 40, + "offset": 688, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1753714077 + "hash": 2472376729 }, - "m_bCursorOver": { + "m_showPolymorphedName": { "type": "bool", - "id": 23, - "offset": 689, - "flags": 135, + "id": 41, + "offset": 720, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 283981103 + "hash": 2097929096 }, - "m_bAbortWhenCursorNotOver": { + "m_skipTruncation": { "type": "bool", - "id": 24, - "offset": 706, - "flags": 135, + "id": 42, + "offset": 721, + "flags": 263, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 325405258 + "hash": 1838335249 }, - "m_bHotKeyDown": { - "type": "bool", - "id": 25, - "offset": 680, - "flags": 135, + "m_maxCopies": { + "type": "unsigned int", + "id": 43, + "offset": 724, + "flags": 263, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 616989185 + "hash": 403022326 }, - "m_fTime": { - "type": "float", - "id": 26, - "offset": 684, - "flags": 135, + "m_levelRestriction": { + "type": "int", + "id": 44, + "offset": 728, + "flags": 263, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 883746156 + "hash": 176502472 }, - "m_bGreyed": { + "m_delayEnchantment": { "type": "bool", - "id": 27, - "offset": 688, - "flags": 135, + "id": 45, + "offset": 732, + "flags": 287, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1566556053 + "hash": 191336919 }, - "m_fMaxScale": { - "type": "float", - "id": 28, - "offset": 692, - "flags": 135, + "m_delayEnchantmentOrder": { + "type": "enum SpellEffect::kDelayOrder", + "id": 46, + "offset": 736, + "flags": 287, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2070186635 + "hash": 2526055263, + "enum_options": { + "SpellEffect::kAnyOrder": 0, + "SpellEffect::kFirst": 1, + "SpellEffect::kSecond": 2 + } }, - "m_fScaleSpeed": { - "type": "float", - "id": 29, - "offset": 696, - "flags": 135, + "m_previousSpellName": { + "type": "std::string", + "id": 47, + "offset": 744, + "flags": 268435463, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1457135702 + "hash": 2903322585, + "enum_options": { + "__BASECLASS": "SpellTemplate" + } }, - "m_bUseDropShadow": { - "type": "bool", - "id": 30, - "offset": 704, - "flags": 135, + "m_cardFront": { + "type": "std::string", + "id": 48, + "offset": 456, + "flags": 131359, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 93063037 + "hash": 3557598526 }, - "m_bUseOutline": { + "m_useGloss": { "type": "bool", - "id": 31, - "offset": 705, - "flags": 135, + "id": 49, + "offset": 488, + "flags": 287, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 744292994 + "hash": 668817544 }, - "m_pGreyedState": { - "type": "class SharedPointer", - "id": 32, - "offset": 768, - "flags": 135, + "m_ignoreDispel": { + "type": "bool", + "id": 50, + "offset": 776, + "flags": 287, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2703352263 + "pointer": false, + "hash": 1881041624 }, - "m_pNormalState": { - "type": "class SharedPointer", - "id": 33, - "offset": 752, - "flags": 135, + "m_backRowFriendly": { + "type": "bool", + "id": 51, + "offset": 777, + "flags": 287, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1887909808 + "pointer": false, + "hash": 501584377 }, - "m_pHighlightedState": { - "type": "class SharedPointer", - "id": 34, + "m_spellRank": { + "type": "class SharedPointer", + "id": 52, "offset": 784, - "flags": 135, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": true, - "hash": 2200177608 + "hash": 3152361374 }, - "m_pSelectedState": { - "type": "class SharedPointer", - "id": 35, + "m_secondarySchoolName": { + "type": "std::string", + "id": 53, "offset": 800, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2266776432 - }, - "m_pDepressedState": { - "type": "class SharedPointer", - "id": 36, - "offset": 816, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1878185798 - }, - "m_nGroupID": { - "type": "int", - "id": 37, - "offset": 880, - "flags": 135, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 403966850 + "hash": 1803268236 }, - "m_bChecked": { - "type": "bool", - "id": 38, - "offset": 884, - "flags": 135, + "m_spellFusion": { + "type": "unsigned int", + "id": 54, + "offset": 836, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 958955100 - }, - "m_pCheckedState": { - "type": "class SharedPointer", - "id": 39, - "offset": 888, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1210539694 + "hash": 1658928321 }, - "m_pCheckedGreyedState": { - "type": "class SharedPointer", - "id": 40, - "offset": 904, - "flags": 135, + "m_requiredSchoolName": { + "type": "std::string", + "id": 55, + "offset": 848, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2702030126 - }, - "m_pCheckedHighlightedState": { - "type": "class SharedPointer", - "id": 41, - "offset": 920, - "flags": 135, + "pointer": false, + "hash": 3576058981 + } + } + }, + "1010369810": { + "name": "class SharedPointer", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1010369810, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1320097679 + "pointer": false, + "hash": 223437287 }, - "m_pCheckedDepressedState": { - "type": "class SharedPointer", - "id": 42, - "offset": 936, - "flags": 135, + "m_active": { + "type": "bool", + "id": 1, + "offset": 112, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1609188685 + "pointer": false, + "hash": 239335471 } } }, - "1667687223": { - "name": "class AvatarOptionBase*", + "1431480669": { + "name": "class FXBySlotEffectInfo", "bases": [ + "GameEffectInfo", "PropertyClass" ], - "hash": 1667687223, + "hash": 1431480669, "properties": { - "m_conditionFlags": { + "m_effectName": { "type": "std::string", "id": 0, "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, + "flags": 31, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 2483653903 + "hash": 2029161513 + }, + "m_bIsOnPet": { + "type": "bool", + "id": 1, + "offset": 104, + "flags": 263, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 522593303 } } }, - "2063706146": { - "name": "wchar_t", - "bases": [], - "hash": 2063706146, - "properties": {} - }, - "101684154": { - "name": "class BasicChatPlayer", + "158657516": { + "name": "class CharacterRegistry*", "bases": [ "PropertyClass" ], - "hash": 101684154, + "hash": 158657516, "properties": { - "m_characterID": { + "m_displayedTips": { "type": "gid", "id": 0, - "offset": 72, + "offset": 112, "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, + "container": "List", + "dynamic": true, + "singleton": true, "pointer": false, - "hash": 210498386 + "hash": 1546509239 }, - "m_nameBlob": { - "type": "std::string", + "m_finishedTips": { + "type": "gid", "id": 1, - "offset": 80, + "offset": 128, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": true, + "pointer": false, + "hash": 1286351938 + }, + "m_chatStatsByState": { + "type": "struct CharacterChatStatsByState", + "id": 2, + "offset": 144, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": true, + "pointer": false, + "hash": 3487355966 + }, + "m_chatStatsByText": { + "type": "struct CharacterChatStatsByText", + "id": 3, + "offset": 176, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": true, + "pointer": false, + "hash": 3265910788 + }, + "m_lockList": { + "type": "struct LockData", + "id": 4, + "offset": 208, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": true, + "pointer": false, + "hash": 1946956503 + }, + "m_friendList": { + "type": "struct FriendData", + "id": 5, + "offset": 288, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": true, + "pointer": false, + "hash": 2895296598 + }, + "m_activeQuestId": { + "type": "gid", + "id": 6, + "offset": 304, "flags": 7, "container": "Static", "dynamic": false, - "singleton": false, + "singleton": true, "pointer": false, - "hash": 3058206907 + "hash": 229595059 }, - "m_schoolLevel": { + "m_activeGoalId": { "type": "unsigned int", - "id": 2, - "offset": 112, + "id": 7, + "offset": 336, "flags": 7, "container": "Static", "dynamic": false, - "singleton": false, + "singleton": true, "pointer": false, - "hash": 221776365 + "hash": 1967307577 }, - "m_objectID": { - "type": "gid", - "id": 3, - "offset": 120, + "m_activeGoalSetByPlayer": { + "type": "bool", + "id": 8, + "offset": 340, "flags": 7, "container": "Static", "dynamic": false, - "singleton": false, + "singleton": true, "pointer": false, - "hash": 257032380 + "hash": 1365712422 + }, + "m_crownShopSettings": { + "type": "class SharedPointer", + "id": 9, + "offset": 240, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": true, + "pointer": true, + "hash": 2058124240 + }, + "m_loginHistory": { + "type": "class LoginHistoryEntry", + "id": 10, + "offset": 360, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": true, + "pointer": false, + "hash": 1668671153 } } }, - "2061408032": { - "name": "class ClientAnimatePipsCinematicAction*", + "1864197096": { + "name": "class SigilTemplate", "bases": [ - "AnimatePipsCinematicAction", - "ActorCinematicAction", - "CinematicAction", + "CoreTemplate", "PropertyClass" ], - "hash": 2061408032, + "hash": 1864197096, "properties": { - "m_timeOffset": { - "type": "float", + "m_behaviors": { + "type": "class BehaviorTemplate*", "id": 0, "offset": 72, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "Vector", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 2237098605 + "pointer": true, + "hash": 1197808594 }, - "m_actor": { + "m_sigilName": { "type": "std::string", "id": 1, - "offset": 80, + "offset": 96, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2285866132 + "hash": 3177657588 }, - "m_sActorPrefix": { + "m_sigilType": { "type": "std::string", "id": 2, - "offset": 120, + "offset": 136, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3246317205 + "hash": 3177899445 }, - "m_fPerPipDelay": { - "type": "float", + "m_entryResults": { + "type": "class ResultList*", "id": 3, - "offset": 152, + "offset": 184, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1466507836 + "pointer": true, + "hash": 3262956108 }, - "m_fRate": { - "type": "float", + "m_requirements": { + "type": "class RequirementList*", "id": 4, - "offset": 156, + "offset": 176, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2840985510 + }, + "m_cancelResults": { + "type": "class ResultList*", + "id": 5, + "offset": 192, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3799257120 + }, + "m_completeResults": { + "type": "class ResultList*", + "id": 6, + "offset": 200, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1964258099 + }, + "m_useState": { + "type": "bool", + "id": 7, + "offset": 216, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 883665801 + "hash": 683320865 + }, + "m_stateOverride": { + "type": "std::string", + "id": 8, + "offset": 224, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1949715548 + }, + "m_subCircles": { + "type": "class SigilSubCircle*", + "id": 9, + "offset": 256, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2227135493 } } }, - "1667780860": { - "name": "class ReqHasSpell*", + "581707131": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 581707131, + "properties": { + "m_start": { + "type": "unsigned int", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1021505883 + }, + "m_stop": { + "type": "unsigned int", + "id": 1, + "offset": 76, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 431263059 + } + } + }, + "581406359": { + "name": "class ReqGoldBagPercent", "bases": [ + "ReqNumeric", "Requirement", "PropertyClass" ], - "hash": 1667780860, + "hash": 581406359, "properties": { "m_applyNOT": { "type": "bool", @@ -665117,1267 +666655,1015 @@ "__DEFAULT": "ROP_AND" } }, - "m_spellName": { - "type": "std::string", + "m_numericValue": { + "type": "float", "id": 2, "offset": 80, - "flags": 268435487, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2688485244, + "hash": 521915239 + }, + "m_operatorType": { + "type": "enum ReqNumeric::OPERATOR_TYPE", + "id": 3, + "offset": 84, + "flags": 2097183, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2228122961, "enum_options": { - "__BASECLASS": "SpellTemplate" + "OPERATOR_UNKNOWN": 4294967295, + "OPERATOR_EQUALS": 0, + "OPERATOR_GREATER_THAN": 1, + "OPERATOR_LESS_THAN": 2, + "OPERATOR_GREATER_THAN_EQ": 3, + "OPERATOR_LESS_THAN_EQ": 4 } } } }, - "2060232615": { - "name": "class RaidGateBehaviorTemplate", + "1011626078": { + "name": "class SoundDefTemplate*", "bases": [ - "BehaviorTemplate", + "CoreTemplate", "PropertyClass" ], - "hash": 2060232615, + "hash": 1011626078, "properties": { - "m_behaviorName": { - "type": "std::string", + "m_behaviors": { + "type": "class BehaviorTemplate*", "id": 0, "offset": 72, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "Vector", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 3130754092 + "pointer": true, + "hash": 1197808594 }, - "m_itemAdjective": { + "m_soundName": { "type": "std::string", "id": 1, - "offset": 120, + "offset": 96, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3066441529 + "hash": 2277149669 }, - "m_unlockCantrip": { + "m_soundFile": { "type": "std::string", "id": 2, - "offset": 152, - "flags": 7, + "offset": 136, + "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2731256472 + "hash": 2276870852 }, - "m_numberOfUnlockPlayers": { - "type": "int", + "m_delay": { + "type": "double", "id": 3, - "offset": 184, + "offset": 168, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 855609764 - }, - "m_activateState": { - "type": "std::string", - "id": 4, - "offset": 192, - "flags": 7, + "hash": 2689597116 + } + } + }, + "1431652126": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1431652126, + "properties": {} + }, + "159305769": { + "name": "class WinAnimSizeSpeed*", + "bases": [ + "WinAnimSize", + "WindowAnimation", + "PropertyClass" + ], + "hash": 159305769, + "properties": { + "m_bUseDeepCopy": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2508957133 + "hash": 433380635 }, - "m_enabledSeconds": { - "type": "int", - "id": 5, - "offset": 224, - "flags": 7, + "m_size": { + "type": "class Size", + "id": 1, + "offset": 80, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2014197012 + "hash": 251247159 }, - "m_linkedUnlockTemplateID": { - "type": "unsigned int", - "id": 6, - "offset": 228, - "flags": 7, + "m_fSpeed": { + "type": "float", + "id": 2, + "offset": 88, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 952577945 + "hash": 503609006 }, - "m_cooldownSeconds": { - "type": "unsigned int", - "id": 7, - "offset": 232, - "flags": 7, + "m_currentSize": { + "type": "class Vector3D", + "id": 3, + "offset": 92, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1670668641 - }, - "m_overrideTitle": { + "hash": 2914066496 + } + } + }, + "1864627841": { + "name": "class TeamHelpVolunteerWorldList", + "bases": [ + "PropertyClass" + ], + "hash": 1864627841, + "properties": { + "m_volunteerWorldList": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1802198369 + } + } + }, + "1011303882": { + "name": "class SharedPointer", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 1011303882, + "properties": { + "m_behaviorName": { "type": "std::string", - "id": 8, - "offset": 240, + "id": 0, + "offset": 72, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2739145597 + "hash": 3130754092 }, - "m_overrideDonateTitle": { + "m_galleryWorld": { "type": "std::string", - "id": 9, - "offset": 272, + "id": 1, + "offset": 120, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2976683384 + "hash": 3310813907 }, - "m_overrideChooseTitle": { + "m_exhibit": { "type": "std::string", - "id": 10, - "offset": 304, + "id": 2, + "offset": 152, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2732703966 + "hash": 2399621352 + } + } + }, + "1864220976": { + "name": "class SpellTemplate", + "bases": [ + "CoreTemplate", + "PropertyClass" + ], + "hash": 1864220976, + "properties": { + "m_behaviors": { + "type": "class BehaviorTemplate*", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1197808594 }, - "m_overrideFinalStepText": { + "m_name": { "type": "std::string", - "id": 11, - "offset": 336, + "id": 1, + "offset": 96, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2712952390 + "hash": 1717359772 }, - "m_overrideNeedKeyText": { + "m_description": { "type": "std::string", - "id": 12, - "offset": 368, - "flags": 7, + "id": 2, + "offset": 168, + "flags": 8388615, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2575667685 + "hash": 1649374815 }, - "m_isExtractor": { - "type": "bool", - "id": 13, - "offset": 400, - "flags": 7, + "m_advancedDescription": { + "type": "std::string", + "id": 3, + "offset": 200, + "flags": 8388615, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2105029547 - } - } - }, - "1252929731": { - "name": "class ReqInSameDuel*", - "bases": [ - "Requirement", - "PropertyClass" - ], - "hash": 1252929731, - "properties": { - "m_applyNOT": { - "type": "bool", - "id": 0, - "offset": 72, - "flags": 31, + "hash": 3465713013 + }, + "m_displayName": { + "type": "std::string", + "id": 4, + "offset": 136, + "flags": 8388615, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1746328074, - "enum_options": { - "__DEFAULT": 0 - } + "hash": 2446900370 }, - "m_operator": { - "type": "enum Requirement::Operator", - "id": 1, - "offset": 76, - "flags": 2097183, + "m_spellBase": { + "type": "std::string", + "id": 5, + "offset": 248, + "flags": 268435463, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2672792317, + "hash": 2688054198, "enum_options": { - "ROP_AND": 0, - "ROP_OR": 1, - "__DEFAULT": "ROP_AND" + "__BASECLASS": "CinematicTemplate" } - } - } - }, - "2060059197": { - "name": "class TieredSpellRetiredSpellData*", - "bases": [ - "PropertyClass" - ], - "hash": 2060059197, - "properties": { - "m_spellName": { + }, + "m_effects": { + "type": "class SharedPointer", + "id": 6, + "offset": 280, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 370726379 + }, + "m_sMagicSchoolName": { "type": "std::string", - "id": 0, - "offset": 72, + "id": 7, + "offset": 312, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2688485244 + "hash": 2035693400 }, - "m_spellID": { - "type": "unsigned int", - "id": 1, - "offset": 104, + "m_sTypeName": { + "type": "std::string", + "id": 8, + "offset": 352, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1697483258 + "hash": 3580785905 }, - "m_totalShardsToUpgrade": { + "m_trainingCost": { "type": "int", - "id": 2, - "offset": 108, + "id": 9, + "offset": 384, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 596508110 - } - } - }, - "105011275": { - "name": "class SharedPointer", - "bases": [ - "CinematicStageTemplate", - "PropertyClass" - ], - "hash": 105011275, - "properties": { - "m_name": { - "type": "std::string", - "id": 0, - "offset": 72, + "hash": 982588239 + }, + "m_accuracy": { + "type": "int", + "id": 10, + "offset": 388, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1717359772 + "hash": 1636315493 }, - "m_duration": { - "type": "float", - "id": 1, - "offset": 104, + "m_baseCost": { + "type": "int", + "id": 11, + "offset": 232, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 920323453 + "hash": 1475151502 }, - "m_actions": { - "type": "class SharedPointer", - "id": 2, - "offset": 112, + "m_creditsCost": { + "type": "int", + "id": 12, + "offset": 236, "flags": 7, - "container": "List", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1380578687 + "pointer": false, + "hash": 715313825 }, - "m_stageRelationships": { - "type": "class SharedPointer", - "id": 3, - "offset": 128, + "m_pvpCurrencyCost": { + "type": "int", + "id": 13, + "offset": 240, "flags": 7, - "container": "List", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 499983354 + "pointer": false, + "hash": 645595444 }, - "m_burnHangingTime": { - "type": "float", - "id": 4, - "offset": 152, + "m_pvpTourneyCurrencyCost": { + "type": "int", + "id": 14, + "offset": 244, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1114462681 + "hash": 517874954 }, - "m_stopRotating": { - "type": "bool", - "id": 5, - "offset": 158, - "flags": 7, + "m_boosterPackIcon": { + "type": "std::string", + "id": 15, + "offset": 496, + "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 13587553 + "hash": 3428653697 }, - "m_startRotating": { + "m_validTargetSpells": { + "type": "unsigned int", + "id": 16, + "offset": 392, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2355782967 + }, + "m_PvP": { "type": "bool", - "id": 6, - "offset": 159, + "id": 17, + "offset": 408, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 839204969 + "hash": 269492361 }, - "m_startRotationTime": { - "type": "float", - "id": 7, - "offset": 160, + "m_PvE": { + "type": "bool", + "id": 18, + "offset": 409, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1011449124 + "hash": 269492350 }, - "m_revealText": { - "type": "std::string", - "id": 8, - "offset": 168, + "m_noPvPEnchant": { + "type": "bool", + "id": 19, + "offset": 410, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2011500383 + "hash": 661581703 }, - "m_revealsHanging": { + "m_noPvEEnchant": { "type": "bool", - "id": 9, - "offset": 200, + "id": 20, + "offset": 411, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1202199809 + "hash": 10144220 }, - "m_camRel": { - "type": "enum CameraCutCinematicAction::kCameraRelative", - "id": 10, - "offset": 204, - "flags": 2097159, + "m_battlegroundsOnly": { + "type": "bool", + "id": 21, + "offset": 412, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 919962138, - "enum_options": { - "kSigil": 1, - "kTarget": 2, - "kSource": 3, - "kActor": 4, - "__DEFAULT": "kTarget" - } + "hash": 1244782419 }, - "m_bSwitchCameraToWideLong": { + "m_Treasure": { "type": "bool", - "id": 11, - "offset": 156, + "id": 22, + "offset": 413, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2136912684, - "enum_options": { - "__DEFAULT": 1 - } + "hash": 1749096414 }, - "m_announcesSpell": { + "m_noDiscard": { "type": "bool", - "id": 12, - "offset": 157, + "id": 23, + "offset": 414, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 652261533, - "enum_options": { - "__DEFAULT": 1 - } + "hash": 565749226 }, - "m_detonate": { + "m_leavesPlayWhenCast": { "type": "bool", - "id": 13, - "offset": 208, + "id": 24, + "offset": 532, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1738601959 - } - } - }, - "1252739718": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1252739718, - "properties": { - "m_housingObjectStateList": { - "type": "class SharedPointer", - "id": 0, - "offset": 80, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1251844958 + "hash": 698216294 }, - "m_zoneGID": { - "type": "gid", - "id": 1, - "offset": 72, + "m_imageIndex": { + "type": "int", + "id": 25, + "offset": 416, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1907651624 - } - } - }, - "2059779662": { - "name": "class Font*", - "bases": [ - "PropertyClass" - ], - "hash": 2059779662, - "properties": {} - }, - "104405982": { - "name": "class TieredSpellRetired", - "bases": [ - "PropertyClass" - ], - "hash": 104405982, - "properties": { - "m_tieredSpellRetiredList": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 955625460 - } - } - }, - "1668596303": { - "name": "class SharedPointer", - "bases": [ - "EffectListSpellEffect", - "SpellEffect", - "PropertyClass" - ], - "hash": 1668596303, - "properties": { - "m_effectType": { - "type": "enum SpellEffect::kSpellEffects", - "id": 0, - "offset": 72, - "flags": 2097183, + "hash": 1570500405 + }, + "m_imageName": { + "type": "std::string", + "id": 26, + "offset": 424, + "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2578255295, - "enum_options": { - "kInvalidSpellEffect": 0, - "kDamage": 1, - "kDamageNoCrit": 2, - "kHeal": 3, - "kHealPercent": 4, - "kSetHealPercent": 113, - "kStealHealth": 5, - "kReduceOverTime": 6, - "kDetonateOverTime": 7, - "kPushCharm": 8, - "kStealCharm": 9, - "kPushWard": 10, - "kStealWard": 11, - "kPushOverTime": 12, - "kStealOverTime": 13, - "kRemoveCharm": 14, - "kRemoveWard": 15, - "kRemoveOverTime": 16, - "kRemoveAura": 17, - "kSwapAll": 18, - "kSwapCharm": 19, - "kSwapWard": 20, - "kSwapOverTime": 21, - "kModifyIncomingDamage": 22, - "kModifyIncomingDamageFlat": 119, - "kMaximumIncomingDamage": 23, - "kModifyIncomingHeal": 24, - "kModifyIncomingHealFlat": 118, - "kModifyIncomingDamageType": 25, - "kModifyIncomingArmorPiercing": 26, - "kModifyOutgoingDamage": 27, - "kModifyOutgoingDamageFlat": 121, - "kModifyOutgoingHeal": 28, - "kModifyOutgoingHealFlat": 120, - "kModifyOutgoingDamageType": 29, - "kModifyOutgoingArmorPiercing": 30, - "kModifyOutgoingStealHealth": 31, - "kModifyIncomingStealHealth": 32, - "kBounceNext": 33, - "kBouncePrevious": 34, - "kBounceBack": 35, - "kBounceAll": 36, - "kAbsorbDamage": 37, - "kAbsorbHeal": 38, - "kModifyAccuracy": 39, - "kDispel": 40, - "kConfusion": 41, - "kCloakedCharm": 42, - "kCloakedWard": 43, - "kStunResist": 44, - "kClue": 111, - "kPipConversion": 45, - "kCritBoost": 46, - "kCritBlock": 47, - "kPolymorph": 48, - "kDelayCast": 49, - "kModifyCardCloak": 50, - "kModifyCardDamage": 51, - "kModifyCardAccuracy": 53, - "kModifyCardMutation": 54, - "kModifyCardRank": 55, - "kModifyCardArmorPiercing": 56, - "kSummonCreature": 65, - "kTeleportPlayer": 66, - "kStun": 67, - "kDampen": 68, - "kReshuffle": 69, - "kMindControl": 70, - "kModifyPips": 71, - "kModifyPowerPips": 72, - "kModifyShadowPips": 73, - "kModifyHate": 74, - "kDamageOverTime": 75, - "kHealOverTime": 76, - "kModifyPowerPipChance": 77, - "kModifyRank": 78, - "kStunBlock": 79, - "kRevealCloak": 80, - "kInstantKill": 81, - "kAfterlife": 82, - "kDeferredDamage": 83, - "kDamagePerTotalPipPower": 84, - "kModifyCardHeal": 52, - "kModifyCardCharm": 57, - "kModifyCardWard": 58, - "kModifyCardOutgoingDamage": 59, - "kModifyCardOutgoingAccuracy": 60, - "kModifyCardOutgoingHeal": 61, - "kModifyCardOutgoingArmorPiercing": 62, - "kModifyCardIncomingDamage": 63, - "kModifyCardAbsorbDamage": 64, - "kCloakedWardNoRemove": 86, - "kAddCombatTriggerList": 87, - "kRemoveCombatTriggerList": 88, - "kBacklashDamage": 89, - "kModifyBacklash": 90, - "kIntercept": 91, - "kShadowSelf": 92, - "kShadowCreature": 93, - "kModifyShadowCreatureLevel": 94, - "kSelectShadowCreatureAttackTarget": 95, - "kShadowDecrementTurn": 96, - "kCritBoostSchoolSpecific": 97, - "kSpawnCreature": 98, - "kUnPolymorph": 99, - "kPowerPipConversion": 100, - "kProtectCardBeneficial": 101, - "kProtectCardHarmful": 102, - "kProtectBeneficial": 103, - "kProtectHarmful": 104, - "kDivideDamage": 105, - "kCollectEssence": 106, - "kKillCreature": 107, - "kDispelBlock": 108, - "kConfusionBlock": 109, - "kModifyPipRoundRate": 110, - "kMaxHealthDamage": 112, - "kUntargetable": 114, - "kMakeTargetable": 115, - "kForceTargetable": 116, - "kRemoveStunBlock": 117, - "kExitCombat": 122, - "kSuspendPips": 123, - "kResumePips": 124, - "kAutoPass": 125, - "kStopAutoPass": 126, - "kVanish": 127, - "kStopVanish": 128, - "kMaxHealthHeal": 129, - "kHealByWard": 130, - "kTaunt": 131, - "kPacify": 132, - "kRemoveTargetRestriction": 133, - "kConvertHangingEffect": 134, - "kAddSpellToDeck": 135, - "kAddSpellToHand": 136, - "kModifyIncomingDamageOverTime": 137, - "kModifyIncomingHealOverTime": 138, - "kModifyCardDamagebyRank": 139, - "kPushConvertedCharm": 140, - "kStealConvertedCharm": 141, - "kPushConvertedWard": 142, - "kStealConvertedWard": 143, - "kPushConvertedOverTime": 144, - "kStealConvertedOverTime": 145, - "kRemoveConvertedCharm": 146, - "kRemoveConvertedWard": 147, - "kRemoveConvertedOverTime": 148, - "kModifyOverTimeDuration": 149, - "kModifySchoolPips": 150 - } + "hash": 2391520543 }, - "m_effectParam": { - "type": "int", - "id": 1, - "offset": 76, - "flags": 31, + "m_cloaked": { + "type": "bool", + "id": 27, + "offset": 489, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 357920024 + "hash": 7349510 }, - "m_disposition": { - "type": "enum SpellEffect::kHangingDisposition", - "id": 2, - "offset": 80, - "flags": 2097159, + "m_casterInvisible": { + "type": "bool", + "id": 28, + "offset": 490, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1904841031, - "enum_options": { - "kBoth": 0, - "kBeneficial": 1, - "kHarmful": 2 - } + "hash": 310214650 }, - "m_sDamageType": { + "m_adjectives": { "type": "std::string", - "id": 3, - "offset": 88, + "id": 29, + "offset": 576, "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2967855037 + }, + "m_spellSourceType": { + "type": "enum SpellTemplate::kSpellSourceType", + "id": 30, + "offset": 528, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2501054223 + "hash": 156272727, + "enum_options": { + "kCaster": 0, + "kPet": 1, + "kShadowCreature": 2, + "kWeapon": 3, + "kEquipment": 4 + } }, - "m_damageType": { - "type": "unsigned int", - "id": 4, - "offset": 84, - "flags": 31, + "m_cloakedName": { + "type": "std::string", + "id": 31, + "offset": 536, + "flags": 268435463, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 737882766 + "hash": 2846679215, + "enum_options": { + "__BASECLASS": "SpellTemplate" + } }, - "m_pipNum": { - "type": "int", - "id": 5, - "offset": 128, + "m_purchaseRequirements": { + "type": "class RequirementList*", + "id": 32, + "offset": 608, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 830827539 + "pointer": true, + "hash": 3174641793 }, - "m_actNum": { - "type": "int", - "id": 6, - "offset": 132, - "flags": 31, + "m_displayRequirements": { + "type": "class RequirementList*", + "id": 33, + "offset": 840, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 236824866 + "pointer": true, + "hash": 3646782876 }, - "m_effectTarget": { - "type": "enum SpellEffect::kEffectTarget", - "id": 7, - "offset": 140, - "flags": 2097183, + "m_descriptionTrainer": { + "type": "std::string", + "id": 34, + "offset": 616, + "flags": 8388871, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2458940523, - "enum_options": { - "kInvalidTarget": 0, - "kSpell": 1, - "kSpecificSpells": 2, - "kGlobal": 3, - "kEnemyTeam": 4, - "kEnemyTeamAllAtOnce": 5, - "kFriendlyTeam": 6, - "kFriendlyTeamAllAtOnce": 7, - "kEnemySingle": 8, - "kFriendlySingle": 9, - "kMinion": 10, - "kFriendlyMinion": 17, - "kEnemyMinion": 18, - "kSelf": 11, - "kAtLeastOneEnemy": 13, - "kPreselectedEnemySingle": 12, - "kMultiTargetEnemy": 14, - "kMultiTargetFriendly": 15, - "kFriendlySingleNotMe": 16 - } + "hash": 1756093908 }, - "m_numRounds": { - "type": "int", - "id": 8, - "offset": 144, - "flags": 31, + "m_descriptionCombatHUD": { + "type": "std::string", + "id": 35, + "offset": 648, + "flags": 8388871, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1229753829 + "hash": 1631478006 }, - "m_paramPerRound": { + "m_displayIndex": { "type": "int", - "id": 9, - "offset": 148, - "flags": 31, + "id": 36, + "offset": 680, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 683234234 + "hash": 1250551048 }, - "m_healModifier": { - "type": "float", - "id": 10, - "offset": 152, + "m_hiddenFromEffectsWindow": { + "type": "bool", + "id": 37, + "offset": 684, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1317921248, - "enum_options": { - "__DEFAULT": "1.0" - } + "hash": 1832736331 }, - "m_spellTemplateID": { - "type": "unsigned int", - "id": 11, - "offset": 120, - "flags": 31, + "m_ignoreCharms": { + "type": "bool", + "id": 38, + "offset": 685, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 585567702 + "hash": 1840075893 }, - "m_enchantmentSpellTemplateID": { - "type": "unsigned int", - "id": 12, - "offset": 124, - "flags": 31, + "m_alwaysFizzle": { + "type": "bool", + "id": 39, + "offset": 686, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 246955115 + "hash": 2030988856 }, - "m_act": { - "type": "bool", - "id": 13, - "offset": 136, + "m_spellCategory": { + "type": "std::string", + "id": 40, + "offset": 688, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 269510283 + "hash": 2472376729 }, - "m_cloaked": { + "m_showPolymorphedName": { "type": "bool", - "id": 14, - "offset": 157, - "flags": 31, + "id": 41, + "offset": 720, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 7349510 + "hash": 2097929096 }, - "m_bypassProtection": { + "m_skipTruncation": { "type": "bool", - "id": 15, - "offset": 159, - "flags": 31, + "id": 42, + "offset": 721, + "flags": 263, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1657138252 + "hash": 1838335249 }, - "m_armorPiercingParam": { - "type": "int", - "id": 16, - "offset": 160, - "flags": 31, + "m_maxCopies": { + "type": "unsigned int", + "id": 43, + "offset": 724, + "flags": 263, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2025530205 + "hash": 403022326 }, - "m_chancePerTarget": { + "m_levelRestriction": { "type": "int", - "id": 17, - "offset": 164, - "flags": 31, + "id": 44, + "offset": 728, + "flags": 263, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 845426794 + "hash": 176502472 }, - "m_protected": { + "m_delayEnchantment": { "type": "bool", - "id": 18, - "offset": 168, - "flags": 31, + "id": 45, + "offset": 732, + "flags": 287, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1445655037 + "hash": 191336919 }, - "m_converted": { - "type": "bool", - "id": 19, - "offset": 169, - "flags": 31, + "m_delayEnchantmentOrder": { + "type": "enum SpellEffect::kDelayOrder", + "id": 46, + "offset": 736, + "flags": 287, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1590428797 + "hash": 2526055263, + "enum_options": { + "SpellEffect::kAnyOrder": 0, + "SpellEffect::kFirst": 1, + "SpellEffect::kSecond": 2 + } }, - "m_rank": { - "type": "int", - "id": 20, - "offset": 208, - "flags": 7, + "m_previousSpellName": { + "type": "std::string", + "id": 47, + "offset": 744, + "flags": 268435463, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 219803942 - }, - "m_effectList": { - "type": "class SharedPointer", - "id": 21, - "offset": 224, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 707154804 + "hash": 2903322585, + "enum_options": { + "__BASECLASS": "SpellTemplate" + } }, - "m_initialBacklash": { - "type": "int", - "id": 22, - "offset": 240, - "flags": 7, + "m_cardFront": { + "type": "std::string", + "id": 48, + "offset": 456, + "flags": 131359, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 300794109 - } - } - }, - "102101524": { - "name": "class CriticalObjectList*", - "bases": [ - "PropertyClass" - ], - "hash": 102101524, - "properties": { - "m_objList": { - "type": "gid", - "id": 0, - "offset": 72, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 72042095 - } - } - }, - "2059894613": { - "name": "class Blob*", - "bases": [ - "BlobDefinition", - "PropertyClass" - ], - "hash": 2059894613, - "properties": { - "m_type": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, + "hash": 3557598526 + }, + "m_useGloss": { + "type": "bool", + "id": 49, + "offset": 488, + "flags": 287, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1717601629 + "hash": 668817544 }, - "m_subType": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 7, + "m_ignoreDispel": { + "type": "bool", + "id": 50, + "offset": 776, + "flags": 287, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3175052615 + "hash": 1881041624 }, - "m_versionNumber": { - "type": "unsigned int", - "id": 2, - "offset": 136, - "flags": 7, + "m_backRowFriendly": { + "type": "bool", + "id": 51, + "offset": 777, + "flags": 287, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1265259452 + "hash": 501584377 }, - "m_packageNumber": { - "type": "int", - "id": 3, - "offset": 140, + "m_spellRank": { + "type": "class SharedPointer", + "id": 52, + "offset": 784, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1934060719 + "pointer": true, + "hash": 3152361374 }, - "m_associatedGID": { - "type": "gid", - "id": 4, - "offset": 144, + "m_secondarySchoolName": { + "type": "std::string", + "id": 53, + "offset": 800, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 148404716 + "hash": 1803268236 }, - "m_epochDays": { + "m_spellFusion": { "type": "unsigned int", - "id": 5, - "offset": 152, + "id": 54, + "offset": 836, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1631557837 + "hash": 1658928321 }, - "m_data": { - "type": "class SharedPointer", - "id": 6, - "offset": 160, + "m_requiredSchoolName": { + "type": "std::string", + "id": 55, + "offset": 848, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 565926218 + "pointer": false, + "hash": 3576058981 } } }, - "101979743": { - "name": "class BadgeFilter*", - "bases": [ - "PropertyClass" - ], - "hash": 101979743, - "properties": {} - }, - "1252929736": { - "name": "class ReqInSameDuel", + "160523922": { + "name": "class NewBadgeData*", "bases": [ - "Requirement", "PropertyClass" ], - "hash": 1252929736, + "hash": 160523922, "properties": { - "m_applyNOT": { - "type": "bool", + "m_badgeID": { + "type": "unsigned int", "id": 0, "offset": 72, - "flags": 31, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1746328074, - "enum_options": { - "__DEFAULT": 0 - } + "hash": 628960141 }, - "m_operator": { - "type": "enum Requirement::Operator", + "m_badgeTime": { + "type": "unsigned int", "id": 1, "offset": 76, - "flags": 2097183, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2672792317, - "enum_options": { - "ROP_AND": 0, - "ROP_OR": 1, - "__DEFAULT": "ROP_AND" - } + "hash": 1716875215 } } }, - "1671573378": { - "name": "class SharedPointer", + "582059271": { + "name": "class SharedPointer", "bases": [ - "ServiceOptionBase", "PropertyClass" ], - "hash": 1671573378, + "hash": 582059271, "properties": { - "m_serviceName": { - "type": "std::string", + "m_World": { + "type": "class SharedPointer", "id": 0, "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, + "flags": 7, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 2206028813 - }, - "m_iconKey": { - "type": "std::string", - "id": 1, - "offset": 168, - "flags": 31, + "pointer": true, + "hash": 1731856744 + } + } + }, + "1436943840": { + "name": "class SharedPointer", + "bases": [ + "FlareBacklashEffectCinematicAction", + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 1436943840, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2457138637 + "hash": 2237098605 }, - "m_displayKey": { + "m_actor": { "type": "std::string", - "id": 2, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3023276954 - }, - "m_serviceIndex": { - "type": "unsigned int", - "id": 3, - "offset": 204, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2103126710 - }, - "m_forceInteract": { - "type": "bool", - "id": 4, - "offset": 200, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1705789564 - }, - "m_optionIndex": { - "type": "int", - "id": 5, - "offset": 216, - "flags": 31, + "id": 1, + "offset": 80, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 276287019 + "hash": 2285866132 } } }, - "1670595781": { - "name": "class ReqPipCount", + "1011789918": { + "name": "class SoundDefTemplate", "bases": [ - "ConditionalSpellEffectRequirement", - "Requirement", + "CoreTemplate", "PropertyClass" ], - "hash": 1670595781, + "hash": 1011789918, "properties": { - "m_applyNOT": { - "type": "bool", + "m_behaviors": { + "type": "class BehaviorTemplate*", "id": 0, "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, + "flags": 7, + "container": "Vector", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 1746328074, - "enum_options": { - "__DEFAULT": 0 - } + "pointer": true, + "hash": 1197808594 }, - "m_operator": { - "type": "enum Requirement::Operator", + "m_soundName": { + "type": "std::string", "id": 1, - "offset": 76, - "flags": 2097183, + "offset": 96, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2672792317, - "enum_options": { - "ROP_AND": 0, - "ROP_OR": 1, - "__DEFAULT": "ROP_AND" - } + "hash": 2277149669 }, - "m_targetType": { - "type": "enum ConditionalSpellEffectRequirement::RequirementTarget", + "m_soundFile": { + "type": "std::string", "id": 2, - "offset": 80, - "flags": 2097159, + "offset": 136, + "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2547737902, - "enum_options": { - "RT_Caster": 0, - "RT_Target": 1 - } + "hash": 2276870852 }, - "m_minPips": { - "type": "int", + "m_delay": { + "type": "double", "id": 3, - "offset": 88, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2062924954 - }, - "m_maxPips": { - "type": "int", - "id": 4, - "offset": 92, - "flags": 31, + "offset": 168, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1761701020 + "hash": 2689597116 } } }, - "2060059517": { - "name": "class TieredSpellRetiredSpellData", + "1434103692": { + "name": "class FaceTargetActorCinematicAction", "bases": [ + "ActorCinematicAction", + "CinematicAction", "PropertyClass" ], - "hash": 2060059517, + "hash": 1434103692, "properties": { - "m_spellName": { - "type": "std::string", + "m_timeOffset": { + "type": "float", "id": 0, "offset": 72, "flags": 7, @@ -666385,1652 +667671,1352 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 2688485244 + "hash": 2237098605 }, - "m_spellID": { - "type": "unsigned int", + "m_actor": { + "type": "std::string", "id": 1, - "offset": 104, + "offset": 80, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1697483258 + "hash": 2285866132 }, - "m_totalShardsToUpgrade": { - "type": "int", + "m_bCaster": { + "type": "bool", "id": 2, - "offset": 108, + "offset": 120, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 596508110 + "hash": 1390351511 } } }, - "102761053": { - "name": "class WizStatisticEffectConfig", + "1864627851": { + "name": "class TeamHelpVolunteerWorldList*", "bases": [ "PropertyClass" ], - "hash": 102761053, + "hash": 1864627851, "properties": { - "m_accuracyScalarBase": { - "type": "float", + "m_volunteerWorldList": { + "type": "class SharedPointer", "id": 0, - "offset": 76, + "offset": 72, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1802198369 + } + } + }, + "1432926436": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1432926436, + "properties": { + "m_school": { + "type": "std::string", + "id": 0, + "offset": 72, "flags": 7, "container": "Static", "dynamic": false, - "singleton": true, + "singleton": false, "pointer": false, - "hash": 1121339315 + "hash": 2438566051 }, - "m_powerPipScalarBase": { - "type": "float", + "m_level": { + "type": "int", "id": 1, - "offset": 80, + "offset": 104, "flags": 7, "container": "Static", "dynamic": false, - "singleton": true, + "singleton": false, "pointer": false, - "hash": 137046174 + "hash": 801285362 }, - "m_damageResistanceScalarBase": { + "m_canonicalMaxHealth": { "type": "float", "id": 2, - "offset": 84, + "offset": 108, "flags": 7, "container": "Static", "dynamic": false, - "singleton": true, + "singleton": false, "pointer": false, - "hash": 926091704 + "hash": 2081916187 }, - "m_accuracyScalingFactor": { + "m_canonicalMaxMana": { "type": "float", "id": 3, - "offset": 88, + "offset": 112, "flags": 7, "container": "Static", "dynamic": false, - "singleton": true, + "singleton": false, "pointer": false, - "hash": 1629583970 + "hash": 1703399938 }, - "m_powerPipScalingFactor": { + "m_canonicalFireAccuracy": { "type": "float", "id": 4, - "offset": 92, + "offset": 116, "flags": 7, "container": "Static", "dynamic": false, - "singleton": true, + "singleton": false, "pointer": false, - "hash": 290142061 + "hash": 663526928 }, - "m_damageResistanceScalingFactor": { + "m_canonicalIceAccuracy": { "type": "float", "id": 5, - "offset": 96, + "offset": 120, "flags": 7, "container": "Static", "dynamic": false, - "singleton": true, + "singleton": false, "pointer": false, - "hash": 845265479 + "hash": 1136218459 }, - "m_criticalHitLevelThreshold": { - "type": "int", + "m_canonicalStormAccuracy": { + "type": "float", "id": 6, - "offset": 100, + "offset": 124, "flags": 7, "container": "Static", "dynamic": false, - "singleton": true, + "singleton": false, "pointer": false, - "hash": 278823695 + "hash": 781009151 }, - "m_blockLevelThreshold": { - "type": "int", + "m_canonicalMythAccuracy": { + "type": "float", "id": 7, - "offset": 104, + "offset": 128, "flags": 7, "container": "Static", "dynamic": false, - "singleton": true, + "singleton": false, "pointer": false, - "hash": 639576458 + "hash": 965342476 }, - "m_accuracyLevelThreshold": { - "type": "int", + "m_canonicalLifeAccuracy": { + "type": "float", "id": 8, - "offset": 108, + "offset": 132, "flags": 7, "container": "Static", "dynamic": false, - "singleton": true, + "singleton": false, "pointer": false, - "hash": 458488426 + "hash": 482476234 }, - "m_powerPipLevelThreshold": { - "type": "int", + "m_canonicalDeathAccuracy": { + "type": "float", "id": 9, - "offset": 112, + "offset": 136, "flags": 7, "container": "Static", "dynamic": false, - "singleton": true, + "singleton": false, "pointer": false, - "hash": 1354062037 + "hash": 541998448 }, - "m_damageResistanceLevelThreshold": { - "type": "int", + "m_canonicalBalanceAccuracy": { + "type": "float", "id": 10, - "offset": 116, + "offset": 140, "flags": 7, "container": "Static", "dynamic": false, - "singleton": true, + "singleton": false, "pointer": false, - "hash": 345781999 + "hash": 1202638384 }, - "m_critAndBlockLevelData": { - "type": "class SharedPointer", + "m_canonicalStarAccuracy": { + "type": "float", "id": 11, - "offset": 136, + "offset": 144, "flags": 7, - "container": "List", - "dynamic": true, - "singleton": true, - "pointer": true, - "hash": 2466687771 + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2223128484 }, - "m_criticalDamageAddPercent": { + "m_canonicalSunAccuracy": { "type": "float", "id": 12, - "offset": 120, + "offset": 148, "flags": 7, "container": "Static", "dynamic": false, - "singleton": true, + "singleton": false, "pointer": false, - "hash": 169683323 + "hash": 1517720384 }, - "m_criticalDamageAddPercentPvP": { + "m_canonicalMoonAccuracy": { "type": "float", "id": 13, - "offset": 124, + "offset": 152, "flags": 7, "container": "Static", "dynamic": false, - "singleton": true, + "singleton": false, "pointer": false, - "hash": 1404103985 + "hash": 715174115 }, - "m_criticalHealAddPercent": { + "m_canonicalShadowAccuracy": { "type": "float", "id": 14, - "offset": 128, + "offset": 156, "flags": 7, "container": "Static", "dynamic": false, - "singleton": true, + "singleton": false, "pointer": false, - "hash": 637250262 + "hash": 855808400 }, - "m_criticalHealAddPercentPvP": { + "m_canonicalFireArmorPiercing": { "type": "float", "id": 15, - "offset": 132, + "offset": 160, "flags": 7, "container": "Static", "dynamic": false, - "singleton": true, + "singleton": false, "pointer": false, - "hash": 297645228 + "hash": 1576771575 }, - "m_pipConversionLevelThreshold": { - "type": "int", + "m_canonicalIceArmorPiercing": { + "type": "float", "id": 16, - "offset": 152, + "offset": 164, "flags": 7, "container": "Static", "dynamic": false, - "singleton": true, + "singleton": false, "pointer": false, - "hash": 469925422 + "hash": 805509666 }, - "m_pipConversionLevelData": { - "type": "class SharedPointer", + "m_canonicalStormArmorPiercing": { + "type": "float", "id": 17, - "offset": 160, + "offset": 168, "flags": 7, - "container": "List", - "dynamic": true, - "singleton": true, - "pointer": true, - "hash": 599333160 + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1446146118 }, - "m_baseCritDivisor": { - "type": "int", + "m_canonicalMythArmorPiercing": { + "type": "float", "id": 18, - "offset": 176, + "offset": 172, "flags": 7, "container": "Static", "dynamic": false, - "singleton": true, + "singleton": false, "pointer": false, - "hash": 1793948871 + "hash": 496153715 }, - "m_baseBlockDivisor": { - "type": "int", + "m_canonicalLifeArmorPiercing": { + "type": "float", "id": 19, - "offset": 180, + "offset": 176, "flags": 7, "container": "Static", "dynamic": false, - "singleton": true, + "singleton": false, "pointer": false, - "hash": 331192160 + "hash": 666748657 }, - "m_critScalarDivisor": { - "type": "int", + "m_canonicalDeathArmorPiercing": { + "type": "float", "id": 20, - "offset": 184, + "offset": 180, "flags": 7, "container": "Static", "dynamic": false, - "singleton": true, + "singleton": false, "pointer": false, - "hash": 353250050 + "hash": 998759255 }, - "m_blockScalarDivisor": { - "type": "int", + "m_canonicalBalanceArmorPiercing": { + "type": "float", "id": 21, - "offset": 188, + "offset": 184, "flags": 7, "container": "Static", "dynamic": false, - "singleton": true, + "singleton": false, "pointer": false, - "hash": 778321147 + "hash": 631301143 }, - "m_finalCritMedian1": { + "m_canonicalStarArmorPiercing": { "type": "float", "id": 22, - "offset": 192, + "offset": 188, "flags": 7, "container": "Static", "dynamic": false, - "singleton": true, + "singleton": false, "pointer": false, - "hash": 1779518738 + "hash": 2212060683 }, - "m_finalCritMedian2": { + "m_canonicalSunArmorPiercing": { "type": "float", "id": 23, - "offset": 196, + "offset": 192, "flags": 7, "container": "Static", "dynamic": false, - "singleton": true, + "singleton": false, "pointer": false, - "hash": 1779518739 + "hash": 979260199 }, - "m_finalBlockMedian1": { + "m_canonicalMoonArmorPiercing": { "type": "float", "id": 24, - "offset": 200, + "offset": 196, "flags": 7, "container": "Static", "dynamic": false, - "singleton": true, + "singleton": false, "pointer": false, - "hash": 2233508235 + "hash": 1453026986 }, - "m_finalBlockMedian2": { + "m_canonicalShadowArmorPiercing": { "type": "float", "id": 25, - "offset": 204, + "offset": 200, "flags": 7, "container": "Static", "dynamic": false, - "singleton": true, + "singleton": false, "pointer": false, - "hash": 2233508236 + "hash": 2214251383 }, - "m_baseCritDivisorPvP": { - "type": "int", + "m_canonicalFireDamage": { + "type": "float", "id": 26, - "offset": 208, + "offset": 204, "flags": 7, "container": "Static", "dynamic": false, - "singleton": true, + "singleton": false, "pointer": false, - "hash": 650248157 + "hash": 1010754436 }, - "m_baseBlockDivisorPvP": { - "type": "int", + "m_canonicalIceDamage": { + "type": "float", "id": 27, - "offset": 212, + "offset": 208, "flags": 7, "container": "Static", "dynamic": false, - "singleton": true, + "singleton": false, "pointer": false, - "hash": 1814544342 + "hash": 1115703311 }, - "m_critScalarDivisorPvP": { - "type": "int", + "m_canonicalStormDamage": { + "type": "float", "id": 28, - "offset": 216, + "offset": 212, "flags": 7, "container": "Static", "dynamic": false, - "singleton": true, + "singleton": false, "pointer": false, - "hash": 2087471160 + "hash": 999030451 }, - "m_blockScalarDivisorPvP": { - "type": "int", + "m_canonicalMythDamage": { + "type": "float", "id": 29, - "offset": 220, + "offset": 216, "flags": 7, "container": "Static", "dynamic": false, - "singleton": true, + "singleton": false, "pointer": false, - "hash": 668812177 + "hash": 1606568832 }, - "m_finalCritMedian1PvP": { + "m_canonicalLifeDamage": { "type": "float", "id": 30, - "offset": 224, + "offset": 220, "flags": 7, "container": "Static", "dynamic": false, - "singleton": true, + "singleton": false, "pointer": false, - "hash": 849935720 + "hash": 1097355198 }, - "m_finalCritMedian2PvP": { + "m_canonicalDeathDamage": { "type": "float", "id": 31, - "offset": 228, + "offset": 224, "flags": 7, "container": "Static", "dynamic": false, - "singleton": true, + "singleton": false, "pointer": false, - "hash": 849971657 + "hash": 659630820 }, - "m_finalBlockMedian1PvP": { + "m_canonicalBalanceDamage": { "type": "float", "id": 32, - "offset": 232, + "offset": 228, "flags": 7, "container": "Static", "dynamic": false, - "singleton": true, + "singleton": false, "pointer": false, - "hash": 1437215553 + "hash": 399936420 }, - "m_finalBlockMedian2PvP": { + "m_canonicalStarDamage": { "type": "float", "id": 33, - "offset": 236, + "offset": 232, "flags": 7, "container": "Static", "dynamic": false, - "singleton": true, + "singleton": false, "pointer": false, - "hash": 1437251490 + "hash": 712445976 }, - "m_archmasteryFillRateScaler": { + "m_canonicalSunDamage": { "type": "float", "id": 34, - "offset": 240, + "offset": 236, "flags": 7, "container": "Static", "dynamic": false, - "singleton": true, + "singleton": false, "pointer": false, - "hash": 266116071 + "hash": 550096052 }, - "m_archmasteryFillRateMax": { + "m_canonicalMoonDamage": { "type": "float", "id": 35, - "offset": 244, + "offset": 240, "flags": 7, "container": "Static", "dynamic": false, - "singleton": true, + "singleton": false, "pointer": false, - "hash": 2006811155 + "hash": 2205820311 }, - "m_archmasteryFullnessMinPvE": { + "m_canonicalShadowDamage": { "type": "float", "id": 36, - "offset": 248, + "offset": 244, "flags": 7, "container": "Static", "dynamic": false, - "singleton": true, + "singleton": false, "pointer": false, - "hash": 1196194389 + "hash": 318766852 }, - "m_archmasteryFullnessMinPvP": { + "m_canonicalFireFlatDamage": { "type": "float", "id": 37, - "offset": 252, + "offset": 248, "flags": 7, "container": "Static", "dynamic": false, - "singleton": true, + "singleton": false, "pointer": false, - "hash": 1196194400 + "hash": 2042009387 }, - "m_archmasteryConversionCost": { + "m_canonicalIceFlatDamage": { "type": "float", "id": 38, - "offset": 256, + "offset": 252, "flags": 7, "container": "Static", "dynamic": false, - "singleton": true, + "singleton": false, "pointer": false, - "hash": 1687582297 + "hash": 1407011126 }, - "m_archmasteryPowerPipCost": { + "m_canonicalStormFlatDamage": { "type": "float", "id": 39, - "offset": 260, + "offset": 256, "flags": 7, "container": "Static", "dynamic": false, - "singleton": true, + "singleton": false, "pointer": false, - "hash": 411547625 - } - } - }, - "1256009605": { - "name": "class ReqCanAddExpansion*", - "bases": [ - "Requirement", - "PropertyClass" - ], - "hash": 1256009605, - "properties": { - "m_applyNOT": { - "type": "bool", - "id": 0, - "offset": 72, - "flags": 31, + "hash": 1131131354 + }, + "m_canonicalMythFlatDamage": { + "type": "float", + "id": 40, + "offset": 260, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1746328074, - "enum_options": { - "__DEFAULT": 0 - } + "hash": 2154143015 }, - "m_operator": { - "type": "enum Requirement::Operator", - "id": 1, - "offset": 76, - "flags": 2097183, + "m_canonicalLifeFlatDamage": { + "type": "float", + "id": 41, + "offset": 264, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2672792317, - "enum_options": { - "ROP_AND": 0, - "ROP_OR": 1, - "__DEFAULT": "ROP_AND" - } + "hash": 298815589 }, - "m_category": { - "type": "enum ExpansionData::Category", - "id": 2, - "offset": 80, - "flags": 2097159, + "m_canonicalDeathFlatDamage": { + "type": "float", + "id": 42, + "offset": 268, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2705349254, - "enum_options": { - "ExpansionData::EDC_Bank": 0, - "ExpansionData::EDC_FriendsList": 1 - } - } - } - }, - "1670287641": { - "name": "class ObstacleCourseSpringboardBehaviorTemplate*", - "bases": [ - "ObstacleCourseObstacleBehaviorTemplate", - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 1670287641, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, + "hash": 693997195 + }, + "m_canonicalBalanceFlatDamage": { + "type": "float", + "id": 43, + "offset": 272, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3130754092 + "hash": 723865419 }, - "m_penaltyTime": { + "m_canonicalStarFlatDamage": { "type": "float", - "id": 1, - "offset": 120, + "id": 44, + "offset": 276, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2083389507 + "hash": 1788538303 }, - "m_rate": { + "m_canonicalSunFlatDamage": { "type": "float", - "id": 2, - "offset": 124, + "id": 45, + "offset": 280, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 310005283 + "hash": 250779739 }, - "m_springboardLength": { + "m_canonicalMoonFlatDamage": { "type": "float", - "id": 3, - "offset": 128, + "id": 46, + "offset": 284, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1881375988 + "hash": 303737534 }, - "m_springboardWidth": { + "m_canonicalShadowFlatDamage": { "type": "float", - "id": 4, - "offset": 132, + "id": 47, + "offset": 288, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 418044402 + "hash": 983134891 }, - "m_collisionHeight": { + "m_canonicalFireReduceDamage": { "type": "float", - "id": 5, - "offset": 136, + "id": 48, + "offset": 292, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2173366140 + "hash": 2033292284 }, - "m_springboardHitSoundList": { - "type": "class WeightedList", - "id": 6, - "offset": 144, + "m_canonicalIceReduceDamage": { + "type": "float", + "id": 49, + "offset": 296, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1378022956 - } - } - }, - "1253739146": { - "name": "class SharedPointer", - "bases": [ - "ConditionalSpellEffectRequirement", - "Requirement", - "PropertyClass" - ], - "hash": 1253739146, - "properties": { - "m_applyNOT": { - "type": "bool", - "id": 0, - "offset": 72, - "flags": 31, + "hash": 2009920711 + }, + "m_canonicalStormReduceDamage": { + "type": "float", + "id": 50, + "offset": 300, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1746328074, - "enum_options": { - "__DEFAULT": 0 - } + "hash": 2224559723 }, - "m_operator": { - "type": "enum Requirement::Operator", - "id": 1, - "offset": 76, - "flags": 2097183, + "m_canonicalDeathReduceDamage": { + "type": "float", + "id": 51, + "offset": 304, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2672792317, - "enum_options": { - "ROP_AND": 0, - "ROP_OR": 1, - "__DEFAULT": "ROP_AND" - } + "hash": 779346780 }, - "m_targetType": { - "type": "enum ConditionalSpellEffectRequirement::RequirementTarget", - "id": 2, - "offset": 80, - "flags": 2097159, + "m_canonicalMythReduceDamage": { + "type": "float", + "id": 52, + "offset": 308, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2547737902, - "enum_options": { - "RT_Caster": 0, - "RT_Target": 1 - } + "hash": 1740245240 }, - "m_effectType": { - "type": "enum SpellEffect::kSpellEffects", - "id": 3, - "offset": 88, - "flags": 2097159, + "m_canonicalLifeReduceDamage": { + "type": "float", + "id": 53, + "offset": 312, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2578255295, - "enum_options": { - "SpellEffect::kInvalidSpellEffect": 0, - "SpellEffect::kAbsorbDamage": 37, - "SpellEffect::kAbsorbHeal": 38, - "SpellEffect::kAddCombatTriggerList": 87, - "SpellEffect::kAfterlife": 82, - "SpellEffect::kBacklashDamage": 89, - "SpellEffect::kBounceAll": 36, - "SpellEffect::kBounceBack": 35, - "SpellEffect::kBounceNext": 33, - "SpellEffect::kBouncePrevious": 34, - "SpellEffect::kCloakedCharm": 42, - "SpellEffect::kCloakedWard": 43, - "SpellEffect::kCloakedWardNoRemove": 86, - "SpellEffect::kConfusion": 41, - "SpellEffect::kConfusionBlock": 109, - "SpellEffect::kCritBlock": 47, - "SpellEffect::kCritBoost": 46, - "SpellEffect::kCritBoostSchoolSpecific": 97, - "SpellEffect::kDamage": 1, - "SpellEffect::kDamageNoCrit": 2, - "SpellEffect::kDamageOverTime": 75, - "SpellEffect::kDamagePerTotalPipPower": 84, - "SpellEffect::kDampen": 68, - "SpellEffect::kDeferredDamage": 83, - "SpellEffect::kDelayCast": 49, - "SpellEffect::kDetonateOverTime": 7, - "SpellEffect::kDispel": 40, - "SpellEffect::kDivideDamage": 105, - "SpellEffect::kHeal": 3, - "SpellEffect::kHealOverTime": 76, - "SpellEffect::kInstantKill": 81, - "SpellEffect::kIntercept": 91, - "SpellEffect::kMaxHealthDamage": 112, - "SpellEffect::kMaximumIncomingDamage": 23, - "SpellEffect::kMindControl": 70, - "SpellEffect::kModifyAccuracy": 39, - "SpellEffect::kModifyBacklash": 90, - "SpellEffect::kModifyCardAccuracy": 53, - "SpellEffect::kModifyCardArmorPiercing": 56, - "SpellEffect::kModifyCardCloak": 50, - "SpellEffect::kModifyCardDamage": 51, - "SpellEffect::kModifyCardMutation": 54, - "SpellEffect::kModifyCardRank": 55, - "SpellEffect::kModifyHate": 74, - "SpellEffect::kModifyIncomingArmorPiercing": 26, - "SpellEffect::kModifyIncomingDamage": 22, - "SpellEffect::kModifyIncomingDamageFlat": 119, - "SpellEffect::kModifyIncomingDamageType": 25, - "SpellEffect::kModifyIncomingHeal": 24, - "SpellEffect::kModifyIncomingHealFlat": 118, - "SpellEffect::kModifyIncomingHealOverTime": 138, - "SpellEffect::kModifyOutgoingArmorPiercing": 30, - "SpellEffect::kModifyOutgoingDamage": 27, - "SpellEffect::kModifyOutgoingDamageFlat": 121, - "SpellEffect::kModifyOutgoingDamageType": 29, - "SpellEffect::kModifyOutgoingHeal": 28, - "SpellEffect::kModifyOutgoingHealFlat": 120, - "SpellEffect::kModifyOutgoingStealHealth": 31, - "SpellEffect::kModifyPipRoundRate": 110, - "SpellEffect::kModifyPips": 71, - "SpellEffect::kModifyPowerPipChance": 77, - "SpellEffect::kModifyPowerPips": 72, - "SpellEffect::kModifyRank": 78, - "SpellEffect::kModifyShadowCreatureLevel": 94, - "SpellEffect::kModifyShadowPips": 73, - "SpellEffect::kPipConversion": 45, - "SpellEffect::kPolymorph": 48, - "SpellEffect::kPowerPipConversion": 100, - "SpellEffect::kProtectBeneficial": 103, - "SpellEffect::kProtectCardBeneficial": 101, - "SpellEffect::kProtectCardHarmful": 102, - "SpellEffect::kProtectHarmful": 104, - "SpellEffect::kPushCharm": 8, - "SpellEffect::kPushOverTime": 12, - "SpellEffect::kPushWard": 10, - "SpellEffect::kReduceOverTime": 6, - "SpellEffect::kRemoveAura": 17, - "SpellEffect::kRemoveCharm": 14, - "SpellEffect::kRemoveCombatTriggerList": 88, - "SpellEffect::kRemoveOverTime": 16, - "SpellEffect::kRemoveWard": 15, - "SpellEffect::kReshuffle": 69, - "SpellEffect::kRevealCloak": 80, - "SpellEffect::kSelectShadowCreatureAttackTarget": 95, - "SpellEffect::kShadowCreature": 93, - "SpellEffect::kShadowDecrementTurn": 96, - "SpellEffect::kShadowSelf": 92, - "SpellEffect::kSpawnCreature": 98, - "SpellEffect::kStealCharm": 9, - "SpellEffect::kStealHealth": 5, - "SpellEffect::kStealOverTime": 13, - "SpellEffect::kStealWard": 11, - "SpellEffect::kStun": 67, - "SpellEffect::kStunBlock": 79, - "SpellEffect::kStunResist": 44, - "SpellEffect::kSummonCreature": 65, - "SpellEffect::kSwapCharm": 19, - "SpellEffect::kSwapOverTime": 21, - "SpellEffect::kSwapWard": 20, - "SpellEffect::kTeleportPlayer": 66, - "SpellEffect::kUnPolymorph": 99, - "SpellEffect::kMaxHealthHeal": 129, - "SpellEffect::kHealByWard": 130, - "SpellEffect::kTaunt": 131, - "SpellEffect::kPacify": 132 - } + "hash": 2070791094 }, - "m_param_low": { - "type": "int", - "id": 4, - "offset": 92, - "flags": 31, + "m_canonicalBalanceReduceDamage": { + "type": "float", + "id": 54, + "offset": 316, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1624315676 + "hash": 1093587996 }, - "m_param_high": { - "type": "int", - "id": 5, - "offset": 96, - "flags": 31, + "m_canonicalStarReduceDamage": { + "type": "float", + "id": 55, + "offset": 320, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2059828426 + "hash": 881188752 }, - "m_min_count": { - "type": "int", - "id": 6, - "offset": 100, - "flags": 31, + "m_canonicalSunReduceDamage": { + "type": "float", + "id": 56, + "offset": 324, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 741023238 + "hash": 1299357996 }, - "m_max_count": { - "type": "int", - "id": 7, - "offset": 104, - "flags": 31, + "m_canonicalMoonReduceDamage": { + "type": "float", + "id": 57, + "offset": 328, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1273157256 - } - } - }, - "1252946751": { - "name": "class AlchemyStationOption*", - "bases": [ - "ServiceOptionBase", - "PropertyClass" - ], - "hash": 1252946751, - "properties": { - "m_serviceName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, + "hash": 988338255 + }, + "m_canonicalShadowReduceDamage": { + "type": "float", + "id": 58, + "offset": 332, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2206028813 + "hash": 2117685116 }, - "m_iconKey": { - "type": "std::string", - "id": 1, - "offset": 168, - "flags": 31, + "m_canonicalFireFlatReduceDamage": { + "type": "float", + "id": 59, + "offset": 336, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2457138637 + "hash": 1671506147 }, - "m_displayKey": { - "type": "std::string", - "id": 2, - "offset": 104, - "flags": 31, + "m_canonicalIceFlatReduceDamage": { + "type": "float", + "id": 60, + "offset": 340, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3023276954 + "hash": 256243502 }, - "m_serviceIndex": { - "type": "unsigned int", - "id": 3, - "offset": 204, - "flags": 31, + "m_canonicalStormFlatReduceDamage": { + "type": "float", + "id": 61, + "offset": 344, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2103126710 + "hash": 1783712466 }, - "m_forceInteract": { - "type": "bool", - "id": 4, - "offset": 200, - "flags": 31, + "m_canonicalDeathFlatReduceDamage": { + "type": "float", + "id": 62, + "offset": 348, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1705789564 - } - } - }, - "1670299929": { - "name": "class ObstacleCourseSpringboardBehaviorTemplate", - "bases": [ - "ObstacleCourseObstacleBehaviorTemplate", - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 1670299929, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, + "hash": 104605763 + }, + "m_canonicalMythFlatReduceDamage": { + "type": "float", + "id": 63, + "offset": 352, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3130754092 + "hash": 454278111 }, - "m_penaltyTime": { + "m_canonicalLifeFlatReduceDamage": { "type": "float", - "id": 1, - "offset": 120, + "id": 64, + "offset": 356, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2083389507 + "hash": 2206377373 }, - "m_rate": { + "m_canonicalBalanceFlatReduceDamage": { "type": "float", - "id": 2, - "offset": 124, + "id": 65, + "offset": 360, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 310005283 + "hash": 1786870019 }, - "m_springboardLength": { + "m_canonicalStarFlatReduceDamage": { "type": "float", - "id": 3, - "offset": 128, + "id": 66, + "offset": 364, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1881375988 + "hash": 2157518455 }, - "m_springboardWidth": { + "m_canonicalSunFlatReduceDamage": { "type": "float", - "id": 4, - "offset": 132, + "id": 67, + "offset": 368, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 418044402 + "hash": 1594183187 }, - "m_collisionHeight": { + "m_canonicalMoonFlatReduceDamage": { "type": "float", - "id": 5, - "offset": 136, + "id": 68, + "offset": 372, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2173366140 + "hash": 2100846262 }, - "m_springboardHitSoundList": { - "type": "class WeightedList", - "id": 6, - "offset": 144, + "m_canonicalShadowFlatReduceDamage": { + "type": "float", + "id": 69, + "offset": 376, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1378022956 - } - } - }, - "2060310289": { - "name": "class SharedPointer", - "bases": [ - "Window", - "PropertyClass" - ], - "hash": 2060310289, - "properties": { - "m_sName": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 135, + "hash": 1427809379 + }, + "m_canonicalPowerPip": { + "type": "float", + "id": 70, + "offset": 380, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2306437263 - }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621225959 + "hash": 1680220789 }, - "m_Style": { - "type": "unsigned int", - "id": 2, - "offset": 152, - "flags": 1048583, + "m_canonicalShadowPipRating": { + "type": "float", + "id": 71, + "offset": 384, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "SCALE_CHILDREN": 2, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "FOCUS_LOCKED": 64, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152 - } + "hash": 1507596819 }, - "m_Flags": { - "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 1048583, + "m_canonicalIncHealing": { + "type": "float", + "id": 72, + "offset": 388, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } + "hash": 1267876913 }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, - "flags": 135, + "m_canonicalLifeHealing": { + "type": "float", + "id": 73, + "offset": 392, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3105139380 + "hash": 2124812407 }, - "m_fTargetAlpha": { + "m_canonicalFireCriticalHit": { "type": "float", - "id": 5, - "offset": 212, - "flags": 135, + "id": 74, + "offset": 396, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1809129834 + "hash": 1415646005 }, - "m_fDisabledAlpha": { + "m_canonicalIceCriticalHit": { "type": "float", - "id": 6, - "offset": 216, - "flags": 135, + "id": 75, + "offset": 400, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1389987675 + "hash": 1935539872 }, - "m_fAlpha": { + "m_canonicalStormCriticalHit": { "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, + "id": 76, + "offset": 404, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 482130755 + "hash": 1421441988 }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, + "m_canonicalMythCriticalHit": { + "type": "float", + "id": 77, + "offset": 408, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3623628394 + "pointer": false, + "hash": 821088433 }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, + "m_canonicalLifeCriticalHit": { + "type": "float", + "id": 78, + "offset": 412, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2102211316 + "hash": 1872309167 }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, + "m_canonicalDeathCriticalHit": { + "type": "float", + "id": 79, + "offset": 416, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1846695875 + "hash": 2028400277 }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, + "m_canonicalBalanceCriticalHit": { + "type": "float", + "id": 80, + "offset": 420, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3389835433 + "hash": 866568021 }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, + "m_canonicalStarCriticalHit": { + "type": "float", + "id": 81, + "offset": 424, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2547159940 + "hash": 1641034825 }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, + "m_canonicalSunCriticalHit": { + "type": "float", + "id": 82, + "offset": 428, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1513510520 + "hash": 287126117 }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, + "m_canonicalMoonCriticalHit": { + "type": "float", + "id": 83, + "offset": 432, + "flags": 7, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 2587533771 + "hash": 2034733352 }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, + "m_canonicalShadowCriticalHit": { + "type": "float", + "id": 84, + "offset": 436, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3091503757 + "hash": 832526005 }, - "m_alertSeconds": { - "type": "int", - "id": 16, - "offset": 588, + "m_canonicalFireBlock": { + "type": "float", + "id": 85, + "offset": 440, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2008693409 - } - } - }, - "104808595": { - "name": "class SharedPointer", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 104808595, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, + "hash": 571735024 + }, + "m_canonicalIceBlock": { + "type": "float", + "id": 86, + "offset": 444, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 + "hash": 639990555 }, - "m_gameEffects": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 31, + "m_canonicalStormBlock": { + "type": "float", + "id": 87, + "offset": 448, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1169674284 - } - } - }, - "2060271807": { - "name": "class SharedPointer", - "bases": [ - "BaseEffectCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 2060271807, - "properties": { - "m_timeOffset": { + "pointer": false, + "hash": 1937960255 + }, + "m_canonicalMythBlock": { "type": "float", - "id": 0, - "offset": 72, + "id": 88, + "offset": 452, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 + "hash": 915166316 }, - "m_effectRel": { - "type": "enum BaseEffectCinematicAction::kEffectRelative", - "id": 1, - "offset": 80, - "flags": 2097159, + "m_canonicalLifeBlock": { + "type": "float", + "id": 89, + "offset": 456, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2978921287, - "enum_options": { - "kNone": 0, - "kSigil": 1, - "kTarget": 2, - "kSource": 3, - "kActor": 4 - } + "hash": 1094961386 }, - "m_graphic": { - "type": "std::string", - "id": 2, - "offset": 88, - "flags": 131079, - "container": "List", - "dynamic": true, + "m_canonicalDeathBlock": { + "type": "float", + "id": 90, + "offset": 460, + "flags": 7, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 2592217913 + "hash": 105568080 }, - "m_bUseOrientationOverride": { - "type": "bool", - "id": 3, - "offset": 120, + "m_canonicalBalanceBlock": { + "type": "float", + "id": 91, + "offset": 464, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1088002894 + "hash": 1464279056 }, - "m_overrideOrientation": { - "type": "class Vector3D", - "id": 4, - "offset": 124, + "m_canonicalStarBlock": { + "type": "float", + "id": 92, + "offset": 468, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3267199758 + "hash": 888071684 }, - "m_bUseLocationOverride": { - "type": "bool", - "id": 5, - "offset": 104, + "m_canonicalSunBlock": { + "type": "float", + "id": 93, + "offset": 472, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1767170875 + "hash": 1598979872 }, - "m_overrideLocation": { - "type": "class Vector3D", - "id": 6, - "offset": 108, + "m_canonicalMoonBlock": { + "type": "float", + "id": 94, + "offset": 476, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3776417691 - } - } - }, - "1253935442": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1253935442, - "properties": {} - }, - "1671334357": { - "name": "class SoundAcousticsInfo", - "bases": [ - "SoundInfo", - "ClientObjectInfo", - "CoreObjectInfo", - "PropertyClass" - ], - "hash": 1671334357, - "properties": { - "m_templateID.m_full": { - "type": "unsigned __int64", - "id": 0, - "offset": 72, - "flags": 33554439, + "hash": 152422307 + }, + "m_canonicalShadowBlock": { + "type": "float", + "id": 95, + "offset": 480, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 633907631 + "hash": 1331668848 }, - "m_nObjectID": { - "type": "unsigned int", - "id": 1, - "offset": 80, + "m_canonicalFirePipConversion": { + "type": "float", + "id": 96, + "offset": 484, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 748496927 + "hash": 1698926484 }, - "m_location": { - "type": "class Vector3D", - "id": 2, - "offset": 84, + "m_canonicalIcePipConversion": { + "type": "float", + "id": 97, + "offset": 488, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2239683611 + "hash": 927664575 }, - "m_orientation": { - "type": "class Vector3D", - "id": 3, - "offset": 96, + "m_canonicalStormPipConversion": { + "type": "float", + "id": 98, + "offset": 492, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2344058766 + "hash": 1568301027 }, - "m_fScale": { + "m_canonicalMythPipConversion": { "type": "float", - "id": 4, - "offset": 108, + "id": 99, + "offset": 496, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 503137701 + "hash": 618308624 }, - "m_zoneTag": { - "type": "std::string", - "id": 5, - "offset": 152, + "m_canonicalLifePipConversion": { + "type": "float", + "id": 100, + "offset": 500, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3405382643 + "hash": 788903566 }, - "m_startState": { - "type": "std::string", - "id": 6, - "offset": 184, + "m_canonicalDeathPipConversion": { + "type": "float", + "id": 101, + "offset": 504, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2166880458 + "hash": 1120914164 }, - "m_overrideName": { - "type": "std::string", - "id": 7, - "offset": 120, - "flags": 8388615, + "m_canonicalBalancePipConversion": { + "type": "float", + "id": 102, + "offset": 508, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1990707228 + "hash": 753456052 }, - "m_globalDynamic": { - "type": "bool", - "id": 8, - "offset": 116, + "m_canonicalStarPipConversion": { + "type": "float", + "id": 103, + "offset": 512, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1951691017 + "hash": 186731944 }, - "m_bUndetectable": { - "type": "bool", - "id": 9, - "offset": 216, + "m_canonicalSunPipConversion": { + "type": "float", + "id": 104, + "offset": 516, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1907454341 + "hash": 1101415108 }, - "m_spawnRequirements": { - "type": "class SharedPointer", - "id": 10, - "offset": 224, + "m_canonicalMoonPipConversion": { + "type": "float", + "id": 105, + "offset": 520, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2309120870 + "pointer": false, + "hash": 1575181895 }, - "m_loadingType": { - "type": "enum CoreObjectInfo::LoadingType", - "id": 11, - "offset": 112, - "flags": 2097159, + "m_canonicalShadowPipConversion": { + "type": "float", + "id": 106, + "offset": 524, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3522422550, - "enum_options": { - "STATIC_CLIENT_SERVER": 0, - "STATIC_CLIENT": 1, - "STATIC_SERVER": 2, - "DYNAMIC_SERVER": 3 - } + "hash": 188922644 }, - "m_radius": { + "m_canonicalAllArchmastery": { "type": "float", - "id": 12, - "offset": 256, + "id": 107, + "offset": 528, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 989410271 + "hash": 304759835 }, - "m_exclusive": { - "type": "bool", - "id": 13, - "offset": 260, + "m_maximumPips": { + "type": "int", + "id": 108, + "offset": 532, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 824383403 + "hash": 334257940 }, - "m_startActive": { - "type": "bool", - "id": 14, - "offset": 261, + "m_maximumPowerPips": { + "type": "int", + "id": 109, + "offset": 536, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2031339229 + "hash": 952865025 + } + } + }, + "166839369": { + "name": "class Ingredient*", + "bases": [ + "PropertyClass" + ], + "hash": 166839369, + "properties": { + "m_itemID": { + "type": "gid", + "id": 0, + "offset": 80, + "flags": 33554439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 569545460 }, - "m_category": { - "type": "enum AudioCategory", - "id": 15, - "offset": 264, - "flags": 2097159, + "m_adjective": { + "type": "std::string", + "id": 1, + "offset": 88, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2951251982, - "enum_options": { - "AudioCategory_Irrelevent": 0, - "AudioCategory_Accoustic": 1, - "AudioCategory_Noise": 2, - "AudioCategory_Music": 3 - } + "hash": 3429518154 }, - "m_override": { + "m_quantity": { "type": "int", - "id": 16, - "offset": 268, - "flags": 1048583, + "id": 2, + "offset": 120, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 136872410, - "enum_options": { - "OVR_RADIUS": 1, - "OVR_CATEGORY": 2, - "OVR_EXCLUSIVE": 4, - "OVR_SIGNATURE": 64, - "OVR_VOLUME": 8, - "OVR_LOOPCOUNT": 16, - "OVR_ACTIVE": 32, - "OVR_PLAYPROG": 128, - "OVR_PRIORITY": 256, - "OVR_PROGTIME": 512, - "OVR_FILTERSET": 1024 - } + "hash": 169215289 }, - "m_enableReqs": { - "type": "class SharedPointer", - "id": 17, - "offset": 272, - "flags": 263, + "m_spellTemplate": { + "type": "std::string", + "id": 3, + "offset": 128, + "flags": 268435463, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3158020443 + "pointer": false, + "hash": 1746600759, + "enum_options": { + "__BASECLASS": "SpellTemplate" + } }, - "m_effect": { - "type": "enum AccousticSignature", - "id": 18, - "offset": 288, + "m_ingredientType": { + "type": "enum Ingredient::INGREDIENT_TYPE", + "id": 4, + "offset": 72, "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1284866962, + "hash": 3347167757, "enum_options": { - "Generic": 0, - "Padded Cell": 1, - "Room": 2, - "Bath Room": 3, - "Living Room": 4, - "Stone Room": 5, - "Auditorium": 6, - "Concert Hall": 7, - "Cave": 8, - "Arena": 9, - "Hanger": 10, - "Carpeted Hallway": 11, - "Hallway": 12, - "Stone Corridor": 13, - "Alley": 14, - "Forest": 15, - "City": 16, - "Mountains": 17, - "Quarry": 18, - "Plain": 19, - "Parking Lot": 20, - "Sewer Pipe": 21, - "Underwater": 22, - "Drugged": 23, - "Dizzy": 24, - "Psychotic": 25 + "INGREDIENT_REAGENT": 0, + "INGREDIENT_TREASURE": 1, + "INGREDIENT_ITEM": 2, + "INGREDIENT_FISH": 3, + "INGREDIENT_PET_SNACK": 4 } } } }, - "105336238": { - "name": "class ClientCinematic*", - "bases": [ - "Cinematic", - "PropertyClass" - ], - "hash": 105336238, - "properties": {} - }, - "2061252289": { - "name": "class SharedPointer", + "583801085": { + "name": "class ControlEdit*", "bases": [ "Window", "PropertyClass" ], - "hash": 2061252289, + "hash": 583801085, "properties": { "m_sName": { "type": "std::string", @@ -668066,11 +669052,8 @@ "hash": 983582334, "enum_options": { "HAS_BACK": 1, - "SCALE_CHILDREN": 2, "CAN_MOVE": 4, "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "FOCUS_LOCKED": 64, "CAN_FOCUS": 128, "CAN_DOCK": 32, "DO_NOT_CAPTURE_MOUSE": 256, @@ -668082,7 +669065,13 @@ "USE_ALPHA_BOUNDS": 8192, "AUTO_GROW": 16384, "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152 + "AUTO_RESIZE": 49152, + "FORCE_NUMERIC": 16777216, + "FORCE_ALPHA": 268435456, + "FORCE_ALPHANUMERIC": 536870912, + "FORCE_INTEGER": 33554432, + "FORCE_POSITIVE": 67108864, + "FORCE_RANGE": 134217728 } }, "m_Flags": { @@ -668243,8 +669232,8 @@ "pointer": false, "hash": 3091503757 }, - "m_nBorderSize": { - "type": "int", + "m_sText": { + "type": "std::wstring", "id": 16, "offset": 584, "flags": 135, @@ -668252,1140 +669241,712 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 2016376897 + "hash": 2102642960 }, - "m_TileSize": { - "type": "class Size", + "m_nMaxLength": { + "type": "int", "id": 17, - "offset": 588, + "offset": 620, "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1169748581 + "hash": 1183478416 }, - "m_MapSize": { - "type": "class Size", + "m_bPassword": { + "type": "bool", "id": 18, - "offset": 596, + "offset": 624, "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1258934261 + "hash": 1604468200 }, - "m_nDefaultTile": { - "type": "int", + "m_bLog": { + "type": "bool", "id": 19, - "offset": 604, + "offset": 625, "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1771469243 + "hash": 221687287 }, - "m_Tiles": { - "type": "class SharedPointer", + "m_previousNext": { + "type": "bool", "id": 20, - "offset": 608, + "offset": 627, "flags": 135, - "container": "Vector", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2276817757 + "pointer": false, + "hash": 858581071 }, - "m_Map": { - "type": "class SharedPointer", + "m_nMaxLogSize": { + "type": "int", "id": 21, - "offset": 632, + "offset": 712, "flags": 135, - "container": "Vector", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1765608522 + "pointer": false, + "hash": 779573899 }, - "m_nCursorOverTile": { - "type": "int", + "m_bEditing": { + "type": "bool", "id": 22, - "offset": 664, + "offset": 616, "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 590305648 - } - } - }, - "105044045": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 105044045, - "properties": { - "m_goalsAND": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1522921572 - }, - "m_goalsOR": { - "type": "std::string", - "id": 1, - "offset": 88, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2474679090 - }, - "m_goalsToAdd": { - "type": "std::string", - "id": 2, - "offset": 104, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 3122082173 + "hash": 1243218553 }, - "m_completeQuest": { + "m_bAllowPaste": { "type": "bool", - "id": 3, - "offset": 120, - "flags": 7, + "id": 23, + "offset": 626, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1096497470 + "hash": 1129316721 }, - "m_requiredORCount": { + "m_nLogPosition": { "type": "int", - "id": 4, - "offset": 124, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1209220805 - } - } - }, - "2060704661": { - "name": "class SavedSetting", - "bases": [ - "PropertyClass" - ], - "hash": 2060704661, - "properties": { - "m_settingName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, + "id": 24, + "offset": 704, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2915007546 + "hash": 1120160767 }, - "m_settingValue": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3178360950 - } - } - }, - "1256117560": { - "name": "class RandomPerTargetSpellEffect*", - "bases": [ - "RandomSpellEffect", - "SpellEffect", - "PropertyClass" - ], - "hash": 1256117560, - "properties": { - "m_effectType": { - "type": "enum SpellEffect::kSpellEffects", - "id": 0, - "offset": 72, - "flags": 2097183, + "m_nCursor": { + "type": "int", + "id": 25, + "offset": 716, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2578255295, - "enum_options": { - "kInvalidSpellEffect": 0, - "kDamage": 1, - "kDamageNoCrit": 2, - "kHeal": 3, - "kHealPercent": 4, - "kSetHealPercent": 113, - "kStealHealth": 5, - "kReduceOverTime": 6, - "kDetonateOverTime": 7, - "kPushCharm": 8, - "kStealCharm": 9, - "kPushWard": 10, - "kStealWard": 11, - "kPushOverTime": 12, - "kStealOverTime": 13, - "kRemoveCharm": 14, - "kRemoveWard": 15, - "kRemoveOverTime": 16, - "kRemoveAura": 17, - "kSwapAll": 18, - "kSwapCharm": 19, - "kSwapWard": 20, - "kSwapOverTime": 21, - "kModifyIncomingDamage": 22, - "kModifyIncomingDamageFlat": 119, - "kMaximumIncomingDamage": 23, - "kModifyIncomingHeal": 24, - "kModifyIncomingHealFlat": 118, - "kModifyIncomingDamageType": 25, - "kModifyIncomingArmorPiercing": 26, - "kModifyOutgoingDamage": 27, - "kModifyOutgoingDamageFlat": 121, - "kModifyOutgoingHeal": 28, - "kModifyOutgoingHealFlat": 120, - "kModifyOutgoingDamageType": 29, - "kModifyOutgoingArmorPiercing": 30, - "kModifyOutgoingStealHealth": 31, - "kModifyIncomingStealHealth": 32, - "kBounceNext": 33, - "kBouncePrevious": 34, - "kBounceBack": 35, - "kBounceAll": 36, - "kAbsorbDamage": 37, - "kAbsorbHeal": 38, - "kModifyAccuracy": 39, - "kDispel": 40, - "kConfusion": 41, - "kCloakedCharm": 42, - "kCloakedWard": 43, - "kStunResist": 44, - "kClue": 111, - "kPipConversion": 45, - "kCritBoost": 46, - "kCritBlock": 47, - "kPolymorph": 48, - "kDelayCast": 49, - "kModifyCardCloak": 50, - "kModifyCardDamage": 51, - "kModifyCardAccuracy": 53, - "kModifyCardMutation": 54, - "kModifyCardRank": 55, - "kModifyCardArmorPiercing": 56, - "kSummonCreature": 65, - "kTeleportPlayer": 66, - "kStun": 67, - "kDampen": 68, - "kReshuffle": 69, - "kMindControl": 70, - "kModifyPips": 71, - "kModifyPowerPips": 72, - "kModifyShadowPips": 73, - "kModifyHate": 74, - "kDamageOverTime": 75, - "kHealOverTime": 76, - "kModifyPowerPipChance": 77, - "kModifyRank": 78, - "kStunBlock": 79, - "kRevealCloak": 80, - "kInstantKill": 81, - "kAfterlife": 82, - "kDeferredDamage": 83, - "kDamagePerTotalPipPower": 84, - "kModifyCardHeal": 52, - "kModifyCardCharm": 57, - "kModifyCardWard": 58, - "kModifyCardOutgoingDamage": 59, - "kModifyCardOutgoingAccuracy": 60, - "kModifyCardOutgoingHeal": 61, - "kModifyCardOutgoingArmorPiercing": 62, - "kModifyCardIncomingDamage": 63, - "kModifyCardAbsorbDamage": 64, - "kCloakedWardNoRemove": 86, - "kAddCombatTriggerList": 87, - "kRemoveCombatTriggerList": 88, - "kBacklashDamage": 89, - "kModifyBacklash": 90, - "kIntercept": 91, - "kShadowSelf": 92, - "kShadowCreature": 93, - "kModifyShadowCreatureLevel": 94, - "kSelectShadowCreatureAttackTarget": 95, - "kShadowDecrementTurn": 96, - "kCritBoostSchoolSpecific": 97, - "kSpawnCreature": 98, - "kUnPolymorph": 99, - "kPowerPipConversion": 100, - "kProtectCardBeneficial": 101, - "kProtectCardHarmful": 102, - "kProtectBeneficial": 103, - "kProtectHarmful": 104, - "kDivideDamage": 105, - "kCollectEssence": 106, - "kKillCreature": 107, - "kDispelBlock": 108, - "kConfusionBlock": 109, - "kModifyPipRoundRate": 110, - "kMaxHealthDamage": 112, - "kUntargetable": 114, - "kMakeTargetable": 115, - "kForceTargetable": 116, - "kRemoveStunBlock": 117, - "kExitCombat": 122, - "kSuspendPips": 123, - "kResumePips": 124, - "kAutoPass": 125, - "kStopAutoPass": 126, - "kVanish": 127, - "kStopVanish": 128, - "kMaxHealthHeal": 129, - "kHealByWard": 130, - "kTaunt": 131, - "kPacify": 132, - "kRemoveTargetRestriction": 133, - "kConvertHangingEffect": 134, - "kAddSpellToDeck": 135, - "kAddSpellToHand": 136, - "kModifyIncomingDamageOverTime": 137, - "kModifyIncomingHealOverTime": 138, - "kModifyCardDamagebyRank": 139, - "kPushConvertedCharm": 140, - "kStealConvertedCharm": 141, - "kPushConvertedWard": 142, - "kStealConvertedWard": 143, - "kPushConvertedOverTime": 144, - "kStealConvertedOverTime": 145, - "kRemoveConvertedCharm": 146, - "kRemoveConvertedWard": 147, - "kRemoveConvertedOverTime": 148, - "kModifyOverTimeDuration": 149, - "kModifySchoolPips": 150 - } + "hash": 1876782150 }, - "m_effectParam": { + "m_nEditBegin": { "type": "int", - "id": 1, - "offset": 76, - "flags": 31, + "id": 26, + "offset": 720, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 357920024 + "hash": 1066592403 }, - "m_disposition": { - "type": "enum SpellEffect::kHangingDisposition", - "id": 2, - "offset": 80, - "flags": 2097159, + "m_nEditEnd": { + "type": "int", + "id": 27, + "offset": 724, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1904841031, - "enum_options": { - "kBoth": 0, - "kBeneficial": 1, - "kHarmful": 2 - } + "hash": 1560905669 }, - "m_sDamageType": { - "type": "std::string", - "id": 3, - "offset": 88, - "flags": 7, + "m_sSavedText": { + "type": "std::wstring", + "id": 28, + "offset": 728, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2501054223 + "hash": 2197953283 }, - "m_damageType": { - "type": "unsigned int", - "id": 4, - "offset": 84, - "flags": 31, + "m_fCursorBlinkSpeed": { + "type": "float", + "id": 29, + "offset": 760, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 737882766 + "hash": 2232655228 }, - "m_pipNum": { - "type": "int", - "id": 5, - "offset": 128, - "flags": 7, + "m_fCursorTimer": { + "type": "float", + "id": 30, + "offset": 764, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 830827539 + "hash": 1929942748 }, - "m_actNum": { - "type": "int", - "id": 6, - "offset": 132, - "flags": 31, + "m_bCursorBlink": { + "type": "bool", + "id": 31, + "offset": 768, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 236824866 + "hash": 683441507 }, - "m_effectTarget": { - "type": "enum SpellEffect::kEffectTarget", - "id": 7, - "offset": 140, - "flags": 2097183, + "m_fMinRange": { + "type": "double", + "id": 32, + "offset": 776, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2458940523, - "enum_options": { - "kInvalidTarget": 0, - "kSpell": 1, - "kSpecificSpells": 2, - "kGlobal": 3, - "kEnemyTeam": 4, - "kEnemyTeamAllAtOnce": 5, - "kFriendlyTeam": 6, - "kFriendlyTeamAllAtOnce": 7, - "kEnemySingle": 8, - "kFriendlySingle": 9, - "kMinion": 10, - "kFriendlyMinion": 17, - "kEnemyMinion": 18, - "kSelf": 11, - "kAtLeastOneEnemy": 13, - "kPreselectedEnemySingle": 12, - "kMultiTargetEnemy": 14, - "kMultiTargetFriendly": 15, - "kFriendlySingleNotMe": 16 - } + "hash": 3079523396 }, - "m_numRounds": { - "type": "int", - "id": 8, - "offset": 144, - "flags": 31, + "m_fMaxRange": { + "type": "double", + "id": 33, + "offset": 784, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1229753829 + "hash": 3876551814 }, - "m_paramPerRound": { + "m_nPrecision": { "type": "int", - "id": 9, - "offset": 148, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 683234234 - }, - "m_healModifier": { - "type": "float", - "id": 10, - "offset": 152, - "flags": 7, + "id": 34, + "offset": 792, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1317921248, - "enum_options": { - "__DEFAULT": "1.0" - } + "hash": 1404974196 }, - "m_spellTemplateID": { - "type": "unsigned int", - "id": 11, - "offset": 120, - "flags": 31, + "m_bDeleteOnFirstChar": { + "type": "bool", + "id": 35, + "offset": 618, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 585567702 - }, - "m_enchantmentSpellTemplateID": { - "type": "unsigned int", - "id": 12, - "offset": 124, - "flags": 31, + "hash": 902105643 + } + } + }, + "1012115742": { + "name": "class PathActionZoneEvent*", + "bases": [ + "PathBehaviorTemplate::Action", + "PropertyClass" + ], + "hash": 1012115742, + "properties": { + "m_nPathID": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 246955115 + "hash": 214382368 }, - "m_act": { - "type": "bool", - "id": 13, - "offset": 136, + "m_nNodeID": { + "type": "int", + "id": 1, + "offset": 80, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 269510283 + "hash": 152152635, + "enum_options": { + "__DEFAULT": 4294967295 + } }, - "m_cloaked": { - "type": "bool", - "id": 14, - "offset": 157, - "flags": 31, + "m_nPriority": { + "type": "int", + "id": 2, + "offset": 84, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 7349510 + "hash": 1515251530, + "enum_options": { + "__DEFAULT": 100 + } }, - "m_bypassProtection": { - "type": "bool", - "id": 15, - "offset": 159, - "flags": 31, + "m_nChance": { + "type": "int", + "id": 3, + "offset": 88, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1657138252 + "hash": 1860748394, + "enum_options": { + "__DEFAULT": 50 + } }, - "m_armorPiercingParam": { - "type": "int", - "id": 16, - "offset": 160, - "flags": 31, + "m_zoneEvent": { + "type": "std::string", + "id": 4, + "offset": 96, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2025530205 - }, - "m_chancePerTarget": { - "type": "int", - "id": 17, - "offset": 164, - "flags": 31, + "hash": 2234553529 + } + } + }, + "1432483672": { + "name": "class PetGameEndData*", + "bases": [ + "PropertyClass" + ], + "hash": 1432483672, + "properties": { + "m_Score": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 845426794 + "hash": 861759411 }, - "m_protected": { - "type": "bool", - "id": 18, - "offset": 168, - "flags": 31, + "m_statMods": { + "type": "class SharedPointer", + "id": 1, + "offset": 80, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1445655037 + "pointer": true, + "hash": 836453997 }, - "m_converted": { - "type": "bool", - "id": 19, - "offset": 169, - "flags": 31, + "m_xpGain": { + "type": "unsigned int", + "id": 2, + "offset": 96, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1590428797 + "hash": 1362161460 }, - "m_rank": { - "type": "int", - "id": 20, - "offset": 208, + "m_wins": { + "type": "unsigned int", + "id": 3, + "offset": 100, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 219803942 - }, - "m_effectList": { - "type": "class SharedPointer", - "id": 21, - "offset": 224, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 707154804 + "hash": 431394798 } } }, - "1671834112": { - "name": "class MoveBehaviorClient", + "162395059": { + "name": "class ComplexRotateTurnIndicatorCinematicAction*", "bases": [ - "MoveBehavior", - "BehaviorInstance", + "CinematicAction", "PropertyClass" ], - "hash": 1671834112, + "hash": 162395059, "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", + "m_timeOffset": { + "type": "float", "id": 0, - "offset": 104, - "flags": 39, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 + "hash": 2237098605 }, - "m_nFlags": { - "type": "unsigned int", + "m_rotationInfo": { + "type": "class SharedPointer", "id": 1, - "offset": 112, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 922328456 - }, - "m_nMoveState": { - "type": "enum MoveState", - "id": 2, - "offset": 116, - "flags": 2097183, + "offset": 80, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1430960270, - "enum_options": { - "MS_WALKING": 0, - "MS_RUNNING": 1, - "MS_SWIMMING": 2, - "MS_FLYING": 3, - "MS_JUMPING": 4, - "MS_FALLING": 5 - } + "pointer": true, + "hash": 2332010820 } } }, - "1256117554": { - "name": "class RandomPerTargetSpellEffect", + "583314915": { + "name": "class SharedPointer", "bases": [ - "RandomSpellEffect", - "SpellEffect", + "Spell", "PropertyClass" ], - "hash": 1256117554, + "hash": 583314915, "properties": { - "m_effectType": { - "type": "enum SpellEffect::kSpellEffects", + "m_templateID": { + "type": "unsigned int", "id": 0, - "offset": 72, - "flags": 2097183, + "offset": 128, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2578255295, - "enum_options": { - "kInvalidSpellEffect": 0, - "kDamage": 1, - "kDamageNoCrit": 2, - "kHeal": 3, - "kHealPercent": 4, - "kSetHealPercent": 113, - "kStealHealth": 5, - "kReduceOverTime": 6, - "kDetonateOverTime": 7, - "kPushCharm": 8, - "kStealCharm": 9, - "kPushWard": 10, - "kStealWard": 11, - "kPushOverTime": 12, - "kStealOverTime": 13, - "kRemoveCharm": 14, - "kRemoveWard": 15, - "kRemoveOverTime": 16, - "kRemoveAura": 17, - "kSwapAll": 18, - "kSwapCharm": 19, - "kSwapWard": 20, - "kSwapOverTime": 21, - "kModifyIncomingDamage": 22, - "kModifyIncomingDamageFlat": 119, - "kMaximumIncomingDamage": 23, - "kModifyIncomingHeal": 24, - "kModifyIncomingHealFlat": 118, - "kModifyIncomingDamageType": 25, - "kModifyIncomingArmorPiercing": 26, - "kModifyOutgoingDamage": 27, - "kModifyOutgoingDamageFlat": 121, - "kModifyOutgoingHeal": 28, - "kModifyOutgoingHealFlat": 120, - "kModifyOutgoingDamageType": 29, - "kModifyOutgoingArmorPiercing": 30, - "kModifyOutgoingStealHealth": 31, - "kModifyIncomingStealHealth": 32, - "kBounceNext": 33, - "kBouncePrevious": 34, - "kBounceBack": 35, - "kBounceAll": 36, - "kAbsorbDamage": 37, - "kAbsorbHeal": 38, - "kModifyAccuracy": 39, - "kDispel": 40, - "kConfusion": 41, - "kCloakedCharm": 42, - "kCloakedWard": 43, - "kStunResist": 44, - "kClue": 111, - "kPipConversion": 45, - "kCritBoost": 46, - "kCritBlock": 47, - "kPolymorph": 48, - "kDelayCast": 49, - "kModifyCardCloak": 50, - "kModifyCardDamage": 51, - "kModifyCardAccuracy": 53, - "kModifyCardMutation": 54, - "kModifyCardRank": 55, - "kModifyCardArmorPiercing": 56, - "kSummonCreature": 65, - "kTeleportPlayer": 66, - "kStun": 67, - "kDampen": 68, - "kReshuffle": 69, - "kMindControl": 70, - "kModifyPips": 71, - "kModifyPowerPips": 72, - "kModifyShadowPips": 73, - "kModifyHate": 74, - "kDamageOverTime": 75, - "kHealOverTime": 76, - "kModifyPowerPipChance": 77, - "kModifyRank": 78, - "kStunBlock": 79, - "kRevealCloak": 80, - "kInstantKill": 81, - "kAfterlife": 82, - "kDeferredDamage": 83, - "kDamagePerTotalPipPower": 84, - "kModifyCardHeal": 52, - "kModifyCardCharm": 57, - "kModifyCardWard": 58, - "kModifyCardOutgoingDamage": 59, - "kModifyCardOutgoingAccuracy": 60, - "kModifyCardOutgoingHeal": 61, - "kModifyCardOutgoingArmorPiercing": 62, - "kModifyCardIncomingDamage": 63, - "kModifyCardAbsorbDamage": 64, - "kCloakedWardNoRemove": 86, - "kAddCombatTriggerList": 87, - "kRemoveCombatTriggerList": 88, - "kBacklashDamage": 89, - "kModifyBacklash": 90, - "kIntercept": 91, - "kShadowSelf": 92, - "kShadowCreature": 93, - "kModifyShadowCreatureLevel": 94, - "kSelectShadowCreatureAttackTarget": 95, - "kShadowDecrementTurn": 96, - "kCritBoostSchoolSpecific": 97, - "kSpawnCreature": 98, - "kUnPolymorph": 99, - "kPowerPipConversion": 100, - "kProtectCardBeneficial": 101, - "kProtectCardHarmful": 102, - "kProtectBeneficial": 103, - "kProtectHarmful": 104, - "kDivideDamage": 105, - "kCollectEssence": 106, - "kKillCreature": 107, - "kDispelBlock": 108, - "kConfusionBlock": 109, - "kModifyPipRoundRate": 110, - "kMaxHealthDamage": 112, - "kUntargetable": 114, - "kMakeTargetable": 115, - "kForceTargetable": 116, - "kRemoveStunBlock": 117, - "kExitCombat": 122, - "kSuspendPips": 123, - "kResumePips": 124, - "kAutoPass": 125, - "kStopAutoPass": 126, - "kVanish": 127, - "kStopVanish": 128, - "kMaxHealthHeal": 129, - "kHealByWard": 130, - "kTaunt": 131, - "kPacify": 132, - "kRemoveTargetRestriction": 133, - "kConvertHangingEffect": 134, - "kAddSpellToDeck": 135, - "kAddSpellToHand": 136, - "kModifyIncomingDamageOverTime": 137, - "kModifyIncomingHealOverTime": 138, - "kModifyCardDamagebyRank": 139, - "kPushConvertedCharm": 140, - "kStealConvertedCharm": 141, - "kPushConvertedWard": 142, - "kStealConvertedWard": 143, - "kPushConvertedOverTime": 144, - "kStealConvertedOverTime": 145, - "kRemoveConvertedCharm": 146, - "kRemoveConvertedWard": 147, - "kRemoveConvertedOverTime": 148, - "kModifyOverTimeDuration": 149, - "kModifySchoolPips": 150 - } + "hash": 1286746870 }, - "m_effectParam": { - "type": "int", + "m_enchantment": { + "type": "unsigned int", "id": 1, - "offset": 76, + "offset": 80, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 357920024 + "hash": 2217886818 }, - "m_disposition": { - "type": "enum SpellEffect::kHangingDisposition", + "m_pipCost": { + "type": "class SharedPointer", "id": 2, - "offset": 80, - "flags": 2097159, + "offset": 176, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1904841031, - "enum_options": { - "kBoth": 0, - "kBeneficial": 1, - "kHarmful": 2 - } + "pointer": true, + "hash": 3605704820 }, - "m_sDamageType": { - "type": "std::string", + "m_regularAdjust": { + "type": "int", "id": 3, - "offset": 88, - "flags": 7, + "offset": 192, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2501054223 + "hash": 1420453335 }, - "m_damageType": { + "m_magicSchoolID": { "type": "unsigned int", "id": 4, - "offset": 84, - "flags": 31, + "offset": 136, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 737882766 + "hash": 893146499 }, - "m_pipNum": { - "type": "int", + "m_accuracy": { + "type": "unsigned char", "id": 5, - "offset": 128, + "offset": 132, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 830827539 + "hash": 2273914939 }, - "m_actNum": { - "type": "int", + "m_treasureCard": { + "type": "bool", "id": 6, - "offset": 132, + "offset": 197, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 236824866 + "hash": 1764879128 }, - "m_effectTarget": { - "type": "enum SpellEffect::kEffectTarget", + "m_battleCard": { + "type": "bool", "id": 7, - "offset": 140, - "flags": 2097183, + "offset": 198, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2458940523, - "enum_options": { - "kInvalidTarget": 0, - "kSpell": 1, - "kSpecificSpells": 2, - "kGlobal": 3, - "kEnemyTeam": 4, - "kEnemyTeamAllAtOnce": 5, - "kFriendlyTeam": 6, - "kFriendlyTeamAllAtOnce": 7, - "kEnemySingle": 8, - "kFriendlySingle": 9, - "kMinion": 10, - "kFriendlyMinion": 17, - "kEnemyMinion": 18, - "kSelf": 11, - "kAtLeastOneEnemy": 13, - "kPreselectedEnemySingle": 12, - "kMultiTargetEnemy": 14, - "kMultiTargetFriendly": 15, - "kFriendlySingleNotMe": 16 - } + "hash": 1332843753 }, - "m_numRounds": { - "type": "int", + "m_itemCard": { + "type": "bool", "id": 8, - "offset": 144, - "flags": 31, + "offset": 199, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1229753829 + "hash": 1683654300 }, - "m_paramPerRound": { - "type": "int", + "m_sideBoard": { + "type": "bool", "id": 9, - "offset": 148, - "flags": 31, + "offset": 200, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 683234234 + "hash": 1897838368 }, - "m_healModifier": { - "type": "float", + "m_spellID": { + "type": "unsigned int", "id": 10, - "offset": 152, - "flags": 7, + "offset": 204, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1317921248, - "enum_options": { - "__DEFAULT": "1.0" - } + "hash": 1697483258 }, - "m_spellTemplateID": { - "type": "unsigned int", + "m_leavesPlayWhenCastOverride": { + "type": "bool", "id": 11, - "offset": 120, + "offset": 216, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 585567702 + "hash": 874407398 }, - "m_enchantmentSpellTemplateID": { - "type": "unsigned int", + "m_cloaked": { + "type": "bool", "id": 12, - "offset": 124, - "flags": 31, + "offset": 196, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 246955115 + "hash": 7349510 }, - "m_act": { + "m_enchantmentSpellIsItemCard": { "type": "bool", "id": 13, - "offset": 136, - "flags": 7, + "offset": 76, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 269510283 + "hash": 531590701 }, - "m_cloaked": { - "type": "bool", + "m_premutationSpellID": { + "type": "unsigned int", "id": 14, - "offset": 157, + "offset": 112, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 7349510 + "hash": 1530256370 }, - "m_bypassProtection": { + "m_enchantedThisCombat": { "type": "bool", "id": 15, - "offset": 159, + "offset": 77, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1657138252 + "hash": 1895738923 }, - "m_armorPiercingParam": { - "type": "int", + "m_paramOverrides": { + "type": "class SharedPointer", "id": 16, - "offset": 160, + "offset": 224, "flags": 31, - "container": "Static", - "dynamic": false, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 2025530205 + "pointer": true, + "hash": 2061635599 }, - "m_chancePerTarget": { - "type": "int", + "m_subEffectMeta": { + "type": "class SharedPointer", "id": 17, - "offset": 164, + "offset": 240, "flags": 31, - "container": "Static", - "dynamic": false, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 845426794 + "pointer": true, + "hash": 1944101106 }, - "m_protected": { + "m_delayEnchantment": { "type": "bool", "id": 18, - "offset": 168, - "flags": 31, + "offset": 257, + "flags": 287, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1445655037 + "hash": 191336919 }, - "m_converted": { + "m_PvE": { "type": "bool", "id": 19, - "offset": 169, - "flags": 31, + "offset": 264, + "flags": 287, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1590428797 + "hash": 269492350 }, - "m_rank": { - "type": "int", + "m_delayEnchantmentOrder": { + "type": "enum SpellEffect::kDelayOrder", "id": 20, - "offset": 208, - "flags": 7, + "offset": 72, + "flags": 287, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 219803942 + "hash": 2526055263, + "enum_options": { + "SpellEffect::kAnyOrder": 0, + "SpellEffect::kFirst": 1, + "SpellEffect::kSecond": 2 + } }, - "m_effectList": { - "type": "class SharedPointer", + "m_roundAddedTC": { + "type": "int", "id": 21, - "offset": 224, + "offset": 260, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 112365451 + }, + "m_secondarySchoolID": { + "type": "unsigned int", + "id": 22, + "offset": 304, "flags": 7, - "container": "List", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 707154804 + "pointer": false, + "hash": 2081206026 + }, + "m_fusionState": { + "type": "enum Spell::FusionState", + "id": 23, + "offset": 308, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 835324539, + "enum_options": { + "FS_Invalid": 0, + "FS_Partial": 1, + "FS_Valid": 2 + } } } }, - "1671579461": { - "name": "class SharedPointer", + "161907431": { + "name": "class MoveCommandTeleport", "bases": [ - "ActorCinematicAction", - "CinematicAction", + "MoveController::MoveCommand", "PropertyClass" ], - "hash": 1671579461, + "hash": 161907431, "properties": { - "m_timeOffset": { - "type": "float", + "m_vTarget": { + "type": "class Vector3D", "id": 0, - "offset": 72, - "flags": 7, + "offset": 88, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 - }, + "hash": 3770499167 + } + } + }, + "1864862700": { + "name": "class JoinTeamUpdate*", + "bases": [ + "TournamentUpdate", + "PropertyClass" + ], + "hash": 1864862700, + "properties": { "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 2285866132 + "pointer": true, + "hash": 1120253775 } } }, - "2061168380": { - "name": "class std::list >", - "bases": [], - "hash": 2061168380, - "properties": {} - }, - "113233255": { - "name": "class AddAuraCinematicAction*", + "1432483832": { + "name": "class PetGameEndData", "bases": [ - "ActorCinematicAction", - "CinematicAction", "PropertyClass" ], - "hash": 113233255, + "hash": 1432483832, "properties": { - "m_timeOffset": { + "m_Score": { "type": "float", "id": 0, "offset": 72, @@ -669394,450 +669955,637 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 + "hash": 861759411 }, - "m_actor": { - "type": "std::string", + "m_statMods": { + "type": "class SharedPointer", "id": 1, "offset": 80, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 2285866132 + "pointer": true, + "hash": 836453997 }, - "m_effect": { - "type": "std::string", + "m_xpGain": { + "type": "unsigned int", "id": 2, - "offset": 120, + "offset": 96, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1894145160 + "hash": 1362161460 + }, + "m_wins": { + "type": "unsigned int", + "id": 3, + "offset": 100, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 431394798 } } }, - "108581982": { - "name": "class SharedPointer", + "161726192": { + "name": "class SharedPointer", "bases": [ - "PlayerStatuePvPBlob", - "PlayerStatueBlob", "PropertyClass" ], - "hash": 108581982, + "hash": 161726192, "properties": { - "m_level": { - "type": "int", + "m_boyCharacterList": { + "type": "class SharedPointer", "id": 0, "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, + "flags": 7, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 801285362 + "pointer": true, + "hash": 484937069 }, - "m_school": { - "type": "unsigned int", + "m_girlCharacterList": { + "type": "class SharedPointer", "id": 1, - "offset": 76, - "flags": 31, + "offset": 88, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2372941617 + } + } + }, + "1012990469": { + "name": "class SpellCheckBox*", + "bases": [ + "ControlCheckBox", + "ControlButton", + "Window", + "PropertyClass" + ], + "hash": 1012990469, + "properties": { + "m_sName": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1152268885 + "hash": 2306437263 }, - "m_gender": { - "type": "int", + "m_Children": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621225959 + }, + "m_Style": { + "type": "unsigned int", "id": 2, - "offset": 80, - "flags": 31, + "offset": 152, + "flags": 1048583, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 473816879 + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152, + "EFFECT_SCALE": 67108864, + "LOCK_ICON_SIZE": 33554432, + "LEFT_TEXT": 536870912, + "NO_FIT_TEXT": 1073741824, + "CHECKBOX_TEXTOVERIMAGE": 16777216 + } }, - "m_nameKeys": { + "m_Flags": { "type": "unsigned int", "id": 3, - "offset": 84, - "flags": 31, + "offset": 156, + "flags": 1048583, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1772225898 + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } }, - "m_badge": { - "type": "std::string", + "m_Window": { + "type": "class Rect", "id": 4, - "offset": 88, - "flags": 63, + "offset": 160, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2286962478 + "hash": 3105139380 }, - "m_pCharacterBehavior": { - "type": "class SharedPointer", + "m_fTargetAlpha": { + "type": "float", "id": 5, - "offset": 120, - "flags": 31, + "offset": 212, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2724673923 + "pointer": false, + "hash": 1809129834 }, - "m_pEquipment": { - "type": "class SharedPointer", + "m_fDisabledAlpha": { + "type": "float", "id": 6, - "offset": 136, - "flags": 31, + "offset": 216, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2473540161 + "pointer": false, + "hash": 1389987675 }, - "m_pStats": { - "type": "class SharedPointer", + "m_fAlpha": { + "type": "float", "id": 7, - "offset": 152, - "flags": 31, + "offset": 208, + "flags": 65671, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2212894623 + "pointer": false, + "hash": 482130755 }, - "m_pGameEffects": { - "type": "class SharedPointer", + "m_pWindowStyle": { + "type": "class SharedPointer", "id": 8, - "offset": 168, - "flags": 31, + "offset": 232, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": true, - "hash": 1557857436 + "hash": 3623628394 }, - "m_petTID": { - "type": "unsigned int", + "m_sHelp": { + "type": "std::wstring", "id": 9, - "offset": 200, - "flags": 31, + "offset": 248, + "flags": 4194439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1037635095 + "hash": 2102211316 }, - "m_pPetBehavior": { - "type": "class SharedPointer", + "m_sScript": { + "type": "std::string", "id": 10, - "offset": 208, - "flags": 31, + "offset": 352, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2663493503 + "pointer": false, + "hash": 1846695875 }, - "m_pPetJewels": { - "type": "class SharedPointer", + "m_Offset": { + "type": "class Point", "id": 11, - "offset": 224, - "flags": 31, + "offset": 192, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 733229991 - } - } - }, - "1256327983": { - "name": "class ClientPvPStatueBehavior*", - "bases": [ - "PvPStatueBehavior", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1256327983, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, + "pointer": false, + "hash": 3389835433 + }, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 + "hash": 2547159940 }, - "m_targetLeague": { - "type": "std::string", - "id": 1, - "offset": 112, - "flags": 31, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3312829397 + "hash": 1513510520 }, - "m_rank": { - "type": "int", - "id": 2, - "offset": 144, - "flags": 31, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 219803942 + "hash": 3091503757 }, - "m_refreshRateSec": { - "type": "int", - "id": 3, - "offset": 148, - "flags": 31, + "m_bToggle": { + "type": "bool", + "id": 16, + "offset": 608, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 418402320 + "hash": 2071810903 }, - "m_groundOffset": { - "type": "float", - "id": 4, - "offset": 152, - "flags": 31, + "m_bButtonDown": { + "type": "bool", + "id": 17, + "offset": 609, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 684524077 + "hash": 840041705 }, - "m_yaw": { - "type": "float", - "id": 5, - "offset": 156, - "flags": 31, + "m_sLabel": { + "type": "std::wstring", + "id": 18, + "offset": 616, + "flags": 4194439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 357256328 + "hash": 2207009163 }, - "m_showNametag": { + "m_labelOffset": { + "type": "class Rect", + "id": 19, + "offset": 832, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1990646723 + }, + "m_pButton": { + "type": "class SharedPointer", + "id": 20, + "offset": 656, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1543855875 + }, + "m_HotKey": { + "type": "unsigned int", + "id": 21, + "offset": 672, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1631553409 + }, + "m_Color": { + "type": "class Color", + "id": 22, + "offset": 676, + "flags": 262279, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1753714077 + }, + "m_bCursorOver": { "type": "bool", - "id": 6, - "offset": 160, - "flags": 31, + "id": 23, + "offset": 689, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 584664753 + "hash": 283981103 }, - "m_showInGrace": { + "m_bAbortWhenCursorNotOver": { "type": "bool", - "id": 7, - "offset": 161, - "flags": 31, + "id": 24, + "offset": 706, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1033917517 + "hash": 325405258 }, - "m_showActive": { + "m_bHotKeyDown": { "type": "bool", - "id": 8, - "offset": 162, - "flags": 31, + "id": 25, + "offset": 680, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 685431312 + "hash": 616989185 }, - "m_scale": { + "m_fTime": { "type": "float", - "id": 9, - "offset": 164, - "flags": 31, + "id": 26, + "offset": 684, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 899693439 + "hash": 883746156 }, - "m_alpha": { - "type": "float", - "id": 10, - "offset": 168, - "flags": 31, + "m_bGreyed": { + "type": "bool", + "id": 27, + "offset": 688, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 878686493 + "hash": 1566556053 }, - "m_animDelaySec": { + "m_fMaxScale": { "type": "float", - "id": 11, - "offset": 172, - "flags": 31, + "id": 28, + "offset": 692, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2131058854 + "hash": 2070186635 }, - "m_animChance": { + "m_fScaleSpeed": { "type": "float", - "id": 12, - "offset": 176, - "flags": 31, + "id": 29, + "offset": 696, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 434823806 + "hash": 1457135702 }, - "m_animList": { - "type": "std::string", - "id": 13, - "offset": 184, - "flags": 31, - "container": "List", - "dynamic": true, + "m_bUseDropShadow": { + "type": "bool", + "id": 30, + "offset": 704, + "flags": 135, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 2531745852 + "hash": 93063037 }, - "m_leagueID": { - "type": "unsigned int", - "id": 14, - "offset": 200, - "flags": 31, + "m_bUseOutline": { + "type": "bool", + "id": 31, + "offset": 705, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 692361645 + "hash": 744292994 }, - "m_seasonID": { - "type": "unsigned int", - "id": 15, - "offset": 204, - "flags": 31, + "m_pGreyedState": { + "type": "class SharedPointer", + "id": 32, + "offset": 768, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 535260643 + "pointer": true, + "hash": 2703352263 }, - "m_startTime": { - "type": "unsigned int", - "id": 16, - "offset": 208, - "flags": 31, + "m_pNormalState": { + "type": "class SharedPointer", + "id": 33, + "offset": 752, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1887909808 + }, + "m_pHighlightedState": { + "type": "class SharedPointer", + "id": 34, + "offset": 784, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2200177608 + }, + "m_pSelectedState": { + "type": "class SharedPointer", + "id": 35, + "offset": 800, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2266776432 + }, + "m_pDepressedState": { + "type": "class SharedPointer", + "id": 36, + "offset": 816, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1878185798 + }, + "m_nGroupID": { + "type": "int", + "id": 37, + "offset": 880, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1598371274 + "hash": 403966850 }, - "m_visualBlob": { - "type": "std::string", - "id": 17, - "offset": 216, - "flags": 31, + "m_bChecked": { + "type": "bool", + "id": 38, + "offset": 884, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1691722510 + "hash": 958955100 + }, + "m_pCheckedState": { + "type": "class SharedPointer", + "id": 39, + "offset": 888, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1210539694 + }, + "m_pCheckedGreyedState": { + "type": "class SharedPointer", + "id": 40, + "offset": 904, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2702030126 + }, + "m_pCheckedHighlightedState": { + "type": "class SharedPointer", + "id": 41, + "offset": 920, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1320097679 + }, + "m_pCheckedDepressedState": { + "type": "class SharedPointer", + "id": 42, + "offset": 936, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1609188685 } } }, - "1672816928": { - "name": "class SharedPointer", + "160948224": { + "name": "class ClientPetCameraActorCinematicAction", "bases": [ + "PetCameraActorCinematicAction", + "ActorCinematicAction", + "CinematicAction", "PropertyClass" ], - "hash": 1672816928, + "hash": 160948224, "properties": { - "m_battleCardsForSale": { - "type": "class SharedPointer", + "m_timeOffset": { + "type": "float", "id": 0, "offset": 72, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2232728892 - }, - "m_givenSpells": { - "type": "class SharedPointer", - "id": 1, - "offset": 88, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 3004531772 - }, - "m_maxTotalBattleCards": { - "type": "int", - "id": 2, - "offset": 104, - "flags": 31, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 142607341 + "hash": 2237098605 }, - "m_nextLevelBattleCards": { + "m_actor": { "type": "std::string", - "id": 3, - "offset": 112, - "flags": 31, - "container": "List", - "dynamic": true, + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 2945949819 + "hash": 2285866132 } } }, - "2061407505": { - "name": "class std::list >", - "bases": [], - "hash": 2061407505, - "properties": {} - }, - "106456286": { - "name": "class SharedPointer", + "583831711": { + "name": "class ControlText*", "bases": [ "Window", "PropertyClass" ], - "hash": 106456286, + "hash": 583831711, "properties": { "m_sName": { "type": "std::string", @@ -669873,11 +670621,9 @@ "hash": 983582334, "enum_options": { "HAS_BACK": 1, - "SCALE_CHILDREN": 2, "CAN_MOVE": 4, "CAN_SIZE": 8, "CAN_SCROLL": 16, - "FOCUS_LOCKED": 64, "CAN_FOCUS": 128, "CAN_DOCK": 32, "DO_NOT_CAPTURE_MOUSE": 256, @@ -669889,7 +670635,9 @@ "USE_ALPHA_BOUNDS": 8192, "AUTO_GROW": 16384, "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152 + "AUTO_RESIZE": 49152, + "DO_NOT_WRAP": 134217728, + "FIT_TEXT": 268435456 } }, "m_Flags": { @@ -670049,3042 +670797,2565 @@ "singleton": false, "pointer": false, "hash": 3091503757 - } - } - }, - "1256226534": { - "name": "class SharedPointer", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1256226534, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, + }, + "m_sText": { + "type": "std::wstring", + "id": 16, + "offset": 584, + "flags": 4194439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 + "hash": 2102642960 + }, + "m_sTooltip": { + "type": "std::wstring", + "id": 17, + "offset": 616, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1680475798 + }, + "m_bUseDropShadow": { + "type": "bool", + "id": 18, + "offset": 653, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 93063037 + }, + "m_bUseOutline": { + "type": "bool", + "id": 19, + "offset": 654, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 744292994 + }, + "m_bEnableWordWrap": { + "type": "bool", + "id": 20, + "offset": 655, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 430904562 + }, + "m_bEnableToggle": { + "type": "bool", + "id": 21, + "offset": 652, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1937994142 + }, + "m_nLeadingAdjust": { + "type": "int", + "id": 22, + "offset": 656, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1559480167 } } }, - "1672665346": { - "name": "class std::vector,class std::allocator > >", - "bases": [], - "hash": 1672665346, - "properties": {} - }, - "105406294": { - "name": "class SharedPointer", + "1012592729": { + "name": "class SharedPointer", "bases": [ + "ServiceOptionBase", "PropertyClass" ], - "hash": 105406294, + "hash": 1012592729, "properties": { - "m_subType": { + "m_serviceName": { "type": "std::string", "id": 0, "offset": 72, - "flags": 7, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3175052615 + "hash": 2206028813 }, - "m_versionNumber": { - "type": "unsigned int", + "m_iconKey": { + "type": "std::string", "id": 1, - "offset": 104, - "flags": 7, + "offset": 168, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1265259452 + "hash": 2457138637 }, - "m_packageNumber": { - "type": "int", + "m_displayKey": { + "type": "std::string", "id": 2, - "offset": 108, - "flags": 7, + "offset": 104, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1934060719 + "hash": 3023276954 }, - "m_userData": { + "m_serviceIndex": { "type": "unsigned int", "id": 3, - "offset": 112, - "flags": 7, + "offset": 204, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 927280710 + "hash": 2103126710 }, - "m_objectCount": { - "type": "unsigned int", + "m_forceInteract": { + "type": "bool", "id": 4, - "offset": 116, - "flags": 7, + "offset": 200, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 410139949 + "hash": 1705789564 } } }, - "105382129": { - "name": "class ItemDynamicBehaviorTemplate*", + "1867738756": { + "name": "class ComboItem", "bases": [ - "BehaviorTemplate", "PropertyClass" ], - "hash": 105382129, + "hash": 1867738756, "properties": { - "m_behaviorName": { - "type": "std::string", + "sText": { + "type": "std::wstring", "id": 0, "offset": 72, - "flags": 7, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3130754092 + "hash": 1567439332 }, - "m_behaviorList": { - "type": "class BehaviorTemplate*", + "dwFlags": { + "type": "unsigned int", "id": 1, - "offset": 120, - "flags": 7, - "container": "Vector", - "dynamic": true, + "offset": 104, + "flags": 135, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1993233019 + "pointer": false, + "hash": 1021307529 } } }, - "2062292045": { - "name": "class Body", + "1012413783": { + "name": "class SharedPointer", "bases": [ + "CinematicStageTemplate", "PropertyClass" ], - "hash": 2062292045, + "hash": 1012413783, "properties": { - "m_position": { - "type": "class Vector3D", + "m_name": { + "type": "std::string", "id": 0, - "offset": 88, + "offset": 72, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3697900983 + "hash": 1717359772 }, - "m_pitch": { + "m_duration": { "type": "float", "id": 1, - "offset": 100, + "offset": 104, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 896371695 + "hash": 920323453 }, - "m_roll": { - "type": "float", + "m_actions": { + "type": "class SharedPointer", "id": 2, - "offset": 104, + "offset": 112, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 310020272 + "pointer": true, + "hash": 1380578687 }, - "m_yaw": { - "type": "float", + "m_stageRelationships": { + "type": "class SharedPointer", "id": 3, - "offset": 108, + "offset": 128, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 357256328 + "pointer": true, + "hash": 499983354 }, - "m_fHeight": { - "type": "float", + "m_hanging": { + "type": "std::string", "id": 4, - "offset": 132, - "flags": 7, + "offset": 152, + "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 401539638 + "hash": 3233478999 }, - "m_scale": { - "type": "float", + "m_protection": { + "type": "std::string", "id": 5, - "offset": 112, - "flags": 7, + "offset": 184, + "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 899693439 - } - } - }, - "1672933251": { - "name": "class PipConversionValues*", - "bases": [ - "PropertyClass" - ], - "hash": 1672933251, - "properties": { - "m_capValue": { - "type": "float", - "id": 0, - "offset": 80, - "flags": 7, + "hash": 1874970946 + }, + "m_sound": { + "type": "std::string", + "id": 6, + "offset": 216, + "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1100002568 + "hash": 2307644996 }, - "m_scalarBase": { - "type": "float", - "id": 1, - "offset": 72, - "flags": 7, + "m_burnSound": { + "type": "std::string", + "id": 7, + "offset": 248, + "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2028329704 + "hash": 1827806971 }, - "m_scalingFactor": { - "type": "float", - "id": 2, - "offset": 76, + "m_stopRotating": { + "type": "bool", + "id": 8, + "offset": 282, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1636384119 - } - } - }, - "2062215196": { - "name": "class DeedBehavior*", - "bases": [ - "DeedBehaviorBase", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 2062215196, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, + "hash": 13587553 + }, + "m_startRotating": { + "type": "bool", + "id": 9, + "offset": 283, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 + "hash": 839204969 }, - "m_lotInstanceGID": { - "type": "gid", - "id": 1, - "offset": 120, - "flags": 33554495, + "m_spellText": { + "type": "std::string", + "id": 10, + "offset": 288, + "flags": 8388615, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2010711536 + "hash": 2688705600 }, - "m_streetAddress": { - "type": "int", - "id": 2, - "offset": 112, - "flags": 63, + "m_bSwitchCameraToWideLong": { + "type": "bool", + "id": 11, + "offset": 280, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1809670519 + "hash": 2136912684, + "enum_options": { + "__DEFAULT": 1 + } }, - "m_transferCoolDownTime": { - "type": "unsigned int", - "id": 3, - "offset": 128, - "flags": 63, + "m_announcesSpell": { + "type": "bool", + "id": 12, + "offset": 281, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1616830022 + "hash": 652261533, + "enum_options": { + "__DEFAULT": 1 + } } } }, - "105382321": { - "name": "class ItemDynamicBehaviorTemplate", + "1433886499": { + "name": "class PetSnackShopOption*", "bases": [ - "BehaviorTemplate", + "ServiceOptionBase", "PropertyClass" ], - "hash": 105382321, + "hash": 1433886499, "properties": { - "m_behaviorName": { + "m_serviceName": { "type": "std::string", "id": 0, "offset": 72, - "flags": 7, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3130754092 + "hash": 2206028813 }, - "m_behaviorList": { - "type": "class BehaviorTemplate*", + "m_iconKey": { + "type": "std::string", "id": 1, - "offset": 120, - "flags": 7, - "container": "Vector", - "dynamic": true, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1993233019 - } - } - }, - "1272332749": { - "name": "class RaidKeyBehaviorTemplate*", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 1272332749, - "properties": { - "m_behaviorName": { + "pointer": false, + "hash": 2457138637 + }, + "m_displayKey": { "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, + "id": 2, + "offset": 104, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3130754092 + "hash": 3023276954 }, - "m_raidPortalTemplate": { + "m_serviceIndex": { "type": "unsigned int", - "id": 1, - "offset": 120, - "flags": 7, + "id": 3, + "offset": 204, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1948761787 + "hash": 2103126710 + }, + "m_forceInteract": { + "type": "bool", + "id": 4, + "offset": 200, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1705789564 } } }, - "2061588773": { - "name": "enum PetDerbyTrackTerrain", - "bases": [], - "hash": 2061588773, - "properties": {} - }, - "1265239748": { - "name": "class CombatSigilTemplate*", + "1867634460": { + "name": "class WizGameStats*", "bases": [ - "SigilTemplate", - "CoreTemplate", "PropertyClass" ], - "hash": 1265239748, + "hash": 1867634460, "properties": { - "m_behaviors": { - "type": "class BehaviorTemplate*", + "m_baseHitpoints": { + "type": "int", "id": 0, - "offset": 72, - "flags": 7, - "container": "Vector", - "dynamic": true, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1197808594 + "pointer": false, + "hash": 596105911 }, - "m_sigilName": { - "type": "std::string", + "m_baseMana": { + "type": "int", "id": 1, - "offset": 96, - "flags": 7, + "offset": 84, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3177657588 + "hash": 1475495442 }, - "m_sigilType": { - "type": "std::string", + "m_baseGoldPouch": { + "type": "int", "id": 2, - "offset": 136, - "flags": 7, + "offset": 88, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3177899445 + "hash": 848889754 }, - "m_entryResults": { - "type": "class ResultList*", + "m_baseEventCurrency1Pouch": { + "type": "int", "id": 3, - "offset": 184, - "flags": 7, + "offset": 92, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3262956108 + "pointer": false, + "hash": 1227701106 }, - "m_requirements": { - "type": "class RequirementList*", + "m_baseEventCurrency2Pouch": { + "type": "int", "id": 4, - "offset": 176, - "flags": 7, + "offset": 96, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2840985510 + "pointer": false, + "hash": 1266836499 }, - "m_cancelResults": { - "type": "class ResultList*", + "m_basePvPCurrencyPouch": { + "type": "int", "id": 5, - "offset": 192, - "flags": 7, + "offset": 100, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3799257120 + "pointer": false, + "hash": 250034965 }, - "m_completeResults": { - "type": "class ResultList*", + "m_basePvPTourneyCurrencyPouch": { + "type": "int", "id": 6, - "offset": 200, - "flags": 7, + "offset": 104, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1964258099 + "pointer": false, + "hash": 2005272907 }, - "m_useState": { - "type": "bool", + "m_energyMax": { + "type": "int", "id": 7, - "offset": 216, - "flags": 7, + "offset": 108, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 683320865 + "hash": 493080970 }, - "m_stateOverride": { - "type": "std::string", + "m_currentHitpoints": { + "type": "int", "id": 8, - "offset": 224, - "flags": 7, + "offset": 112, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1949715548 + "hash": 1533788735 }, - "m_subCircles": { - "type": "class SigilSubCircle*", + "m_currentGold": { + "type": "int", "id": 9, - "offset": 256, - "flags": 7, - "container": "List", - "dynamic": true, + "offset": 116, + "flags": 31, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2227135493 + "pointer": false, + "hash": 1255819683 }, - "m_engageRadius": { - "type": "float", + "m_currentEventCurrency1": { + "type": "int", "id": 10, - "offset": 304, - "flags": 7, + "offset": 120, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1429683718 + "hash": 1718583419 }, - "m_battlefieldEffects": { - "type": "class SharedPointer", + "m_currentEventCurrency2": { + "type": "int", "id": 11, - "offset": 312, - "flags": 7, - "container": "Vector", - "dynamic": true, + "offset": 124, + "flags": 31, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1245973515 + "pointer": false, + "hash": 1718583420 }, - "m_playerVictoryCinematic": { - "type": "std::string", + "m_currentPvPCurrency": { + "type": "int", "id": 12, - "offset": 336, - "flags": 7, + "offset": 128, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2684536069 + "hash": 958495550 }, - "m_combatMusic": { - "type": "std::string", + "m_currentPvPTourneyCurrency": { + "type": "int", "id": 13, - "offset": 368, - "flags": 7, + "offset": 132, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3636593682 + "hash": 398198452 }, - "m_prePlanningCinematicOverride": { - "type": "std::string", + "m_currentMana": { + "type": "int", "id": 14, - "offset": 400, - "flags": 7, + "offset": 136, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2585096390 + "hash": 1256020122 }, - "m_planningCinematicOverride": { - "type": "std::string", + "m_currentArenaPoints": { + "type": "int", "id": 15, - "offset": 432, - "flags": 7, + "offset": 140, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3592819999 + "hash": 1119642753 }, - "m_shadowThresholdType": { - "type": "enum kShadow_Threshold_Type", + "m_spellChargeBase": { + "type": "int", "id": 16, - "offset": 464, - "flags": 2097159, - "container": "Static", - "dynamic": false, + "offset": 144, + "flags": 31, + "container": "Vector", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 2847763136, - "enum_options": { - "SHADOW_THRESHOLD_MIN": 0, - "SHADOW_THRESHOLD_AVG": 1, - "SHADOW_THRESHOLD_MAX": 2 - } + "hash": 712023615 }, - "m_shadowThresholdFactor": { + "m_potionMax": { "type": "float", "id": 17, - "offset": 468, - "flags": 7, + "offset": 168, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2104355177 + "hash": 2123676470 }, - "m_shadowPipRatingFactor": { + "m_potionCharge": { "type": "float", "id": 18, - "offset": 472, - "flags": 7, + "offset": 172, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1061434314 + "hash": 1104179290 }, - "m_scalarDamagePvP": { - "type": "float", + "m_pArenaLadder": { + "type": "class SharedPointer", "id": 19, - "offset": 476, - "flags": 7, + "offset": 176, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 2195445026 + "pointer": true, + "hash": 2717766581 }, - "m_scalarResistPvP": { - "type": "float", + "m_pDerbyLadder": { + "type": "class SharedPointer", "id": 20, - "offset": 480, - "flags": 7, + "offset": 192, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1947822077 + "pointer": true, + "hash": 2352744804 }, - "m_scalarPiercePvP": { - "type": "float", + "m_bracketLader": { + "type": "class SharedPointer", "id": 21, - "offset": 484, - "flags": 7, + "offset": 208, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 441266907 + "pointer": true, + "hash": 2562001526 }, - "m_scalarDamagePvE": { - "type": "float", + "m_bonusHitpoints": { + "type": "int", "id": 22, - "offset": 488, - "flags": 7, + "offset": 224, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2195445015 + "hash": 103057475 }, - "m_scalarResistPvE": { - "type": "float", + "m_bonusMana": { + "type": "int", "id": 23, - "offset": 492, - "flags": 7, + "offset": 228, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1947822066 + "hash": 1757236254 }, - "m_scalarPiercePvE": { - "type": "float", + "m_bonusEnergy": { + "type": "int", "id": 24, - "offset": 496, - "flags": 7, + "offset": 244, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 441266896 + "hash": 1975625099 }, - "m_damageLimitPvP": { + "m_criticalHitPercentAll": { "type": "float", "id": 25, - "offset": 500, - "flags": 7, + "offset": 248, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1990135243 + "hash": 2085066513 }, - "m_dK0PvP": { + "m_blockPercentAll": { "type": "float", "id": 26, - "offset": 504, - "flags": 7, + "offset": 252, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 413528556 + "hash": 1203386380 }, - "m_dN0PvP": { + "m_criticalHitRatingAll": { "type": "float", "id": 27, - "offset": 508, - "flags": 7, + "offset": 256, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 417086319 + "hash": 923968773 }, - "m_resistLimitPvP": { + "m_blockRatingAll": { "type": "float", "id": 28, - "offset": 512, - "flags": 7, + "offset": 260, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1174512006 + "hash": 1743229600 }, - "m_rK0PvP": { - "type": "float", + "m_referenceLevel": { + "type": "int", "id": 29, - "offset": 516, - "flags": 7, + "offset": 324, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 961424058 + "hash": 1436595649 }, - "m_rN0PvP": { - "type": "float", + "m_highestCharacterLevelOnAccount": { + "type": "int", "id": 30, - "offset": 520, - "flags": 7, + "offset": 336, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 964981821 + "hash": 1662017333 }, - "m_damageLimitPvE": { - "type": "float", + "m_petActChance": { + "type": "int", "id": 31, - "offset": 524, - "flags": 7, + "offset": 344, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1990135232 + "hash": 237418461 }, - "m_dK0PvE": { + "m_dmgBonusPercent": { "type": "float", "id": 32, - "offset": 528, - "flags": 7, - "container": "Static", - "dynamic": false, + "offset": 352, + "flags": 31, + "container": "Vector", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 413528545 + "hash": 194501159 }, - "m_dN0PvE": { + "m_dmgBonusFlat": { "type": "float", "id": 33, - "offset": 532, - "flags": 7, - "container": "Static", - "dynamic": false, + "offset": 376, + "flags": 31, + "container": "Vector", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 417086308 + "hash": 1837769725 }, - "m_resistLimitPvE": { + "m_accBonusPercent": { "type": "float", "id": 34, - "offset": 536, - "flags": 7, - "container": "Static", - "dynamic": false, + "offset": 400, + "flags": 31, + "container": "Vector", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 1174511995 + "hash": 331557526 }, - "m_rK0PvE": { + "m_apBonusPercent": { "type": "float", "id": 35, - "offset": 540, - "flags": 7, - "container": "Static", - "dynamic": false, + "offset": 424, + "flags": 31, + "container": "Vector", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 961424047 + "hash": 1228557984 }, - "m_rN0PvE": { + "m_dmgReducePercent": { "type": "float", "id": 36, - "offset": 544, - "flags": 7, - "container": "Static", - "dynamic": false, + "offset": 448, + "flags": 31, + "container": "Vector", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 964981810 - } - } - }, - "1260524569": { - "name": "class SharedPointer", - "bases": [ - "Requirement", - "PropertyClass" - ], - "hash": 1260524569, - "properties": { - "m_applyNOT": { - "type": "bool", - "id": 0, - "offset": 72, + "hash": 1426050712 + }, + "m_dmgReduceFlat": { + "type": "float", + "id": 37, + "offset": 472, "flags": 31, - "container": "Static", - "dynamic": false, + "container": "Vector", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 1746328074, - "enum_options": { - "__DEFAULT": 0 - } + "hash": 1218184718 }, - "m_operator": { - "type": "enum Requirement::Operator", - "id": 1, - "offset": 76, - "flags": 2097183, - "container": "Static", - "dynamic": false, + "m_accReducePercent": { + "type": "float", + "id": 38, + "offset": 496, + "flags": 31, + "container": "Vector", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 2672792317, - "enum_options": { - "ROP_AND": 0, - "ROP_OR": 1, - "__DEFAULT": "ROP_AND" - } + "hash": 1653943527 }, - "m_category": { - "type": "enum ExpansionData::Category", - "id": 2, - "offset": 80, - "flags": 2097159, - "container": "Static", - "dynamic": false, + "m_healBonusPercent": { + "type": "float", + "id": 39, + "offset": 520, + "flags": 31, + "container": "Vector", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 2705349254, - "enum_options": { - "ExpansionData::EDC_Bank": 0, - "ExpansionData::EDC_FriendsList": 1 - } - } - } - }, - "1673929471": { - "name": "class std::vector >", - "bases": [], - "hash": 1673929471, - "properties": {} - }, - "2062089759": { - "name": "class PestBehavior*", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 2062089759, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, + "hash": 562313577 + }, + "m_healIncBonusPercent": { + "type": "float", + "id": 40, + "offset": 544, + "flags": 31, + "container": "Vector", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 223437287 - } - } - }, - "105905386": { - "name": "class PvPCurrencyLootInfo", - "bases": [ - "LootInfo", - "LootInfoBase", - "PropertyClass" - ], - "hash": 105905386, - "properties": { - "m_lootType": { - "type": "enum LootInfo::LOOT_TYPE", - "id": 0, - "offset": 72, - "flags": 2097183, - "container": "Static", - "dynamic": false, + "hash": 2182535587 + }, + "m_spellChargeBonus": { + "type": "int", + "id": 41, + "offset": 592, + "flags": 31, + "container": "Vector", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 1591891442, - "enum_options": { - "LOOT_TYPE_NONE": 0, - "LOOT_TYPE_GOLD": 1, - "LOOT_TYPE_MANA": 2, - "LOOT_TYPE_ITEM": 3, - "LOOT_TYPE_TREASURE_CARD": 4, - "LOOT_TYPE_MAGIC_XP": 5, - "LOOT_TYPE_ADD_SPELL": 6, - "LOOT_TYPE_MAX_HEALTH": 7, - "LOOT_TYPE_MAX_GOLD": 8, - "LOOT_TYPE_MAX_MANA": 9, - "LOOT_TYPE_MAX_POTION": 10, - "LOOT_TYPE_TRAINING_POINTS": 11, - "LOOT_TYPE_RECIPE": 12, - "LOOT_TYPE_CRAFTING_SLOT": 13, - "LOOT_TYPE_REAGENT": 14, - "LOOT_TYPE_PETSNACK": 15, - "LOOT_TYPE_GARDENING_XP": 16, - "LOOT_TYPE_PET_XP": 17, - "LOOT_TYPE_TREASURE_TABLE": 18, - "LOOT_TYPE_ARENA_POINTS": 19, - "LOOT_TYPE_ARENA_BONUS_POINTS": 20, - "LOOT_TYPE_GROUP": 21, - "LOOT_TYPE_FISHING_XP": 22, - "LOOT_TYPE_EVENT_CURRENCY_1": 24, - "LOOT_TYPE_EVENT_CURRENCY_2": 25, - "LOOT_TYPE_PVP_CURRENCY": 26, - "LOOT_TYPE_PVP_CURRENCY_BONUS": 27, - "LOOT_TYPE_PVP_TOURNEY_CURRENCY": 28, - "LOOT_TYPE_PVP_TOURNEY_CURRENCY_BONUS": 29, - "LOOT_TYPE_FURNITURE_ESSENCE": 30 - } + "hash": 2019610507 }, - "m_pvpCurrencyAmount": { - "type": "int", - "id": 1, - "offset": 80, + "m_dmgBonusPercentAll": { + "type": "float", + "id": 42, + "offset": 712, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 649262863 - } - } - }, - "1259241572": { - "name": "class MoveBehaviorTemplate*", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 1259241572, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, + "hash": 2076945760 + }, + "m_dmgBonusFlatAll": { + "type": "float", + "id": 43, + "offset": 716, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3130754092 + "hash": 419082102 }, - "m_fAcceleration": { + "m_accBonusPercentAll": { "type": "float", - "id": 1, - "offset": 120, - "flags": 7, + "id": 44, + "offset": 720, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1644159847, - "enum_options": { - "__DEFAULT": 600 - } + "hash": 1144118127 }, - "m_fDeceleration": { + "m_apBonusPercentAll": { "type": "float", - "id": 2, - "offset": 124, - "flags": 7, + "id": 45, + "offset": 724, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2140366348, - "enum_options": { - "__DEFAULT": 600 - } + "hash": 772537145 }, - "m_fVelocityDecay": { + "m_dmgReducePercentAll": { "type": "float", - "id": 3, - "offset": 128, - "flags": 7, + "id": 46, + "offset": 728, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 441764242, - "enum_options": { - "__DEFAULT": 0 - } + "hash": 635246641 }, - "m_fWalkSpeed": { + "m_dmgReduceFlatAll": { "type": "float", - "id": 4, - "offset": 132, - "flags": 7, + "id": 47, + "offset": 732, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1673729917, - "enum_options": { - "__DEFAULT": 125 - } + "hash": 1650631655 }, - "m_fRunSpeed": { + "m_accReducePercentAll": { "type": "float", - "id": 5, - "offset": 136, - "flags": 7, + "id": 48, + "offset": 736, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2230193347, - "enum_options": { - "__DEFAULT": 600 - } + "hash": 2064189472 }, - "m_fFlySpeed": { + "m_healBonusPercentAll": { "type": "float", - "id": 6, - "offset": 140, - "flags": 7, + "id": 49, + "offset": 740, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1454681689, - "enum_options": { - "__DEFAULT": 1000 - } + "hash": 242474338 }, - "m_fSwimSpeed": { + "m_healIncBonusPercentAll": { "type": "float", - "id": 7, - "offset": 144, - "flags": 7, + "id": 50, + "offset": 744, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2100640206, - "enum_options": { - "__DEFAULT": 300 - } + "hash": 1436699484 }, - "m_fFallSpeed": { - "type": "float", - "id": 8, - "offset": 148, - "flags": 7, + "m_spellChargeBonusAll": { + "type": "int", + "id": 51, + "offset": 752, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 701808397, - "enum_options": { - "__DEFAULT": 100 - } + "hash": 1354189604 }, - "m_fYawRate": { + "m_powerPipBase": { "type": "float", - "id": 9, - "offset": 152, - "flags": 7, + "id": 52, + "offset": 756, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2111024186, - "enum_options": { - "__DEFAULT": "2.5" - } + "hash": 345261352 }, - "m_fFallHeight": { + "m_powerPipBonusPercentAll": { "type": "float", - "id": 10, - "offset": 156, - "flags": 7, + "id": 53, + "offset": 792, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 499668597, - "enum_options": { - "__DEFAULT": 50 - } + "hash": 1850107326 }, - "m_fJumpVelocity": { + "m_xpPercentIncrease": { "type": "float", - "id": 11, - "offset": 160, - "flags": 7, + "id": 54, + "offset": 800, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1243756264, - "enum_options": { - "__DEFAULT": 500 - } + "hash": 1051081338 }, - "m_AnimationList": { - "type": "struct MoveStateAnimation", - "id": 12, - "offset": 168, - "flags": 7, - "container": "List", + "m_criticalHitPercentBySchool": { + "type": "float", + "id": 55, + "offset": 616, + "flags": 31, + "container": "Vector", "dynamic": true, "singleton": false, "pointer": false, - "hash": 438791160 - } - } - }, - "1673829428": { - "name": "class DerbyStealMorale", - "bases": [ - "DerbyEffect", - "PropertyClass" - ], - "hash": 1673829428, - "properties": { - "m_buffType": { - "type": "enum DerbyTalentBuffType", - "id": 0, - "offset": 92, - "flags": 2097183, - "container": "Static", - "dynamic": false, + "hash": 1022327067 + }, + "m_blockPercentBySchool": { + "type": "float", + "id": 56, + "offset": 640, + "flags": 31, + "container": "Vector", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 1149251982, - "enum_options": { - "Buff": 0, - "Debuff": 1, - "Neither": 2 - } + "hash": 2189750006 }, - "m_kTarget": { - "type": "enum DerbyTargetType", - "id": 1, - "offset": 96, - "flags": 2097159, - "container": "Static", - "dynamic": false, + "m_criticalHitRatingBySchool": { + "type": "float", + "id": 57, + "offset": 664, + "flags": 31, + "container": "Vector", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 1807803351, - "enum_options": { - "kTargetInFront": 0, - "kTargetBehind": 1, - "kTargetFirst": 2, - "kTargetSelf": 3, - "kTargetAll": 4, - "kTargetLast": 5 - } + "hash": 2060803983 }, - "m_nDuration": { - "type": "int", - "id": 2, - "offset": 104, + "m_blockRatingBySchool": { + "type": "float", + "id": 58, + "offset": 688, "flags": 31, - "container": "Static", - "dynamic": false, + "container": "Vector", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 1110167982 + "hash": 274073098 }, - "m_effectID": { - "type": "unsigned int", - "id": 3, - "offset": 88, - "flags": 24, + "m_balanceMastery": { + "type": "int", + "id": 59, + "offset": 832, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2347630439 + "hash": 149062181 }, - "m_imageFilename": { - "type": "std::string", - "id": 4, - "offset": 112, - "flags": 131103, + "m_deathMastery": { + "type": "int", + "id": 60, + "offset": 836, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2813328063 + "hash": 1421218661 }, - "m_iconIndex": { - "type": "unsigned int", - "id": 5, - "offset": 144, + "m_fireMastery": { + "type": "int", + "id": 61, + "offset": 840, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1265133262 + "hash": 1431794949 }, - "m_soundOnActivate": { - "type": "std::string", - "id": 6, - "offset": 152, - "flags": 131103, + "m_iceMastery": { + "type": "int", + "id": 62, + "offset": 844, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1956929714 + "hash": 704864240 }, - "m_soundOnTarget": { - "type": "std::string", - "id": 7, - "offset": 184, - "flags": 131103, + "m_lifeMastery": { + "type": "int", + "id": 63, + "offset": 848, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3444214056 + "hash": 2142136447 }, - "m_targetParticleEffect": { - "type": "std::string", - "id": 8, - "offset": 216, - "flags": 131103, + "m_mythMastery": { + "type": "int", + "id": 64, + "offset": 852, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3048234723 + "hash": 1766317185 }, - "m_overheadMessage": { - "type": "std::string", - "id": 9, - "offset": 248, - "flags": 8388639, + "m_stormMastery": { + "type": "int", + "id": 65, + "offset": 856, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1701018190 + "hash": 1883988244 }, - "m_requirements": { - "type": "class RequirementList", - "id": 10, - "offset": 280, + "m_maximumNumberOfIslands": { + "type": "int", + "id": 66, + "offset": 860, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2840988582 + "hash": 412109412 }, - "m_nAmountToSteal": { - "type": "int", - "id": 11, - "offset": 376, + "m_gardeningLevel": { + "type": "unsigned char", + "id": 67, + "offset": 864, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 247752792 - } - } - }, - "1257692968": { - "name": "class std::vector >", - "bases": [], - "hash": 1257692968, - "properties": {} - }, - "1673432830": { - "name": "class TreasureTableLootInfo*", - "bases": [ - "LootInfo", - "LootInfoBase", - "PropertyClass" - ], - "hash": 1673432830, - "properties": { - "m_lootType": { - "type": "enum LootInfo::LOOT_TYPE", - "id": 0, - "offset": 72, - "flags": 2097183, + "hash": 2456231799 + }, + "m_gardeningXP": { + "type": "int", + "id": 68, + "offset": 868, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1591891442, - "enum_options": { - "LOOT_TYPE_NONE": 0, - "LOOT_TYPE_GOLD": 1, - "LOOT_TYPE_MANA": 2, - "LOOT_TYPE_ITEM": 3, - "LOOT_TYPE_TREASURE_CARD": 4, - "LOOT_TYPE_MAGIC_XP": 5, - "LOOT_TYPE_ADD_SPELL": 6, - "LOOT_TYPE_MAX_HEALTH": 7, - "LOOT_TYPE_MAX_GOLD": 8, - "LOOT_TYPE_MAX_MANA": 9, - "LOOT_TYPE_MAX_POTION": 10, - "LOOT_TYPE_TRAINING_POINTS": 11, - "LOOT_TYPE_RECIPE": 12, - "LOOT_TYPE_CRAFTING_SLOT": 13, - "LOOT_TYPE_REAGENT": 14, - "LOOT_TYPE_PETSNACK": 15, - "LOOT_TYPE_GARDENING_XP": 16, - "LOOT_TYPE_PET_XP": 17, - "LOOT_TYPE_TREASURE_TABLE": 18, - "LOOT_TYPE_ARENA_POINTS": 19, - "LOOT_TYPE_ARENA_BONUS_POINTS": 20, - "LOOT_TYPE_GROUP": 21, - "LOOT_TYPE_FISHING_XP": 22, - "LOOT_TYPE_EVENT_CURRENCY_1": 24, - "LOOT_TYPE_EVENT_CURRENCY_2": 25, - "LOOT_TYPE_PVP_CURRENCY": 26, - "LOOT_TYPE_PVP_CURRENCY_BONUS": 27, - "LOOT_TYPE_PVP_TOURNEY_CURRENCY": 28, - "LOOT_TYPE_PVP_TOURNEY_CURRENCY_BONUS": 29, - "LOOT_TYPE_FURNITURE_ESSENCE": 30 - } - } - } - }, - "1257638703": { - "name": "class ClientPvPStatueBehavior", - "bases": [ - "PvPStatueBehavior", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1257638703, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, + "hash": 590238801 + }, + "m_invisibleToFriends": { + "type": "bool", + "id": 69, + "offset": 872, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 + "hash": 416456454 }, - "m_targetLeague": { - "type": "std::string", - "id": 1, - "offset": 112, + "m_showItemLock": { + "type": "bool", + "id": 70, + "offset": 873, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3312829397 + "hash": 3575244 }, - "m_rank": { - "type": "int", - "id": 2, - "offset": 144, + "m_questFinderEnabled": { + "type": "bool", + "id": 71, + "offset": 874, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 219803942 + "hash": 125544072 }, - "m_refreshRateSec": { + "m_buddyListLimit": { "type": "int", - "id": 3, - "offset": 148, + "id": 72, + "offset": 876, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 418402320 + "hash": 1103577965 }, - "m_groundOffset": { - "type": "float", - "id": 4, - "offset": 152, + "m_dontAllowFriendFinderCodes": { + "type": "bool", + "id": 73, + "offset": 884, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 684524077 + "hash": 1360721765 }, - "m_yaw": { + "m_stunResistancePercent": { "type": "float", - "id": 5, - "offset": 156, + "id": 74, + "offset": 880, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 357256328 + "hash": 1868382627 }, - "m_showNametag": { + "m_shadowMagicUnlocked": { "type": "bool", - "id": 6, - "offset": 160, + "id": 75, + "offset": 892, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 584664753 + "hash": 1642162767 }, - "m_showInGrace": { - "type": "bool", - "id": 7, - "offset": 161, + "m_shadowPipMax": { + "type": "int", + "id": 76, + "offset": 888, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1033917517 + "hash": 1774396431 }, - "m_showActive": { - "type": "bool", - "id": 8, - "offset": 162, + "m_fishingLevel": { + "type": "unsigned char", + "id": 77, + "offset": 893, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 685431312 + "hash": 682785040 }, - "m_scale": { - "type": "float", - "id": 9, - "offset": 164, + "m_fishingXP": { + "type": "int", + "id": 78, + "offset": 896, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 899693439 + "hash": 319909002 }, - "m_alpha": { + "m_fishingLuckBonusPercent": { "type": "float", - "id": 10, - "offset": 168, + "id": 79, + "offset": 568, "flags": 31, - "container": "Static", - "dynamic": false, + "container": "Vector", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 878686493 + "hash": 1363349254 }, - "m_animDelaySec": { + "m_fishingLuckBonusPercentAll": { "type": "float", - "id": 11, - "offset": 172, + "id": 80, + "offset": 748, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2131058854 + "hash": 2190780895 }, - "m_animChance": { - "type": "float", - "id": 12, - "offset": 176, + "m_subscriberBenefitFlags": { + "type": "unsigned int", + "id": 81, + "offset": 900, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 434823806 + "hash": 1587324747 }, - "m_animList": { - "type": "std::string", - "id": 13, - "offset": 184, + "m_elixirBenefitFlags": { + "type": "unsigned int", + "id": 82, + "offset": 904, "flags": 31, - "container": "List", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 2531745852 + "hash": 2320773252 }, - "m_leagueID": { - "type": "unsigned int", - "id": 14, - "offset": 200, + "m_shadowPipBonusPercent": { + "type": "float", + "id": 83, + "offset": 796, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 692361645 + "hash": 1426533310 }, - "m_seasonID": { - "type": "unsigned int", - "id": 15, - "offset": 204, + "m_wispBonusPercent": { + "type": "float", + "id": 84, + "offset": 824, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 535260643 + "hash": 1304386546 }, - "m_startTime": { - "type": "unsigned int", - "id": 16, - "offset": 208, + "m_pipConversionRatingAll": { + "type": "float", + "id": 85, + "offset": 288, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1598371274 + "hash": 198602948 }, - "m_visualBlob": { - "type": "std::string", - "id": 17, - "offset": 216, + "m_pipConversionRatingPerSchool": { + "type": "float", + "id": 86, + "offset": 264, "flags": 31, - "container": "Static", - "dynamic": false, + "container": "Vector", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 1691722510 - } - } - }, - "2062224924": { - "name": "class DeckBehavior*", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 2062224924, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, + "hash": 930350362 + }, + "m_pipConversionPercentAll": { + "type": "float", + "id": 87, + "offset": 320, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 + "hash": 1770314416 }, - "m_spellList": { - "type": "class SharedPointer", - "id": 1, - "offset": 120, - "flags": 27, - "container": "List", + "m_pipConversionPercentPerSchool": { + "type": "float", + "id": 88, + "offset": 296, + "flags": 31, + "container": "Vector", "dynamic": true, "singleton": false, - "pointer": true, - "hash": 2181913740 + "pointer": false, + "hash": 960311302 }, - "m_serializedExclusionList": { - "type": "std::string", - "id": 2, - "offset": 152, - "flags": 63, + "m_monsterMagicLevel": { + "type": "unsigned char", + "id": 89, + "offset": 908, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1502583517 + "hash": 729572689 }, - "m_archmasterySchool": { - "type": "unsigned int", - "id": 3, - "offset": 184, - "flags": 63, + "m_monsterMagicXP": { + "type": "int", + "id": 90, + "offset": 912, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 485805784 - } - } - }, - "107442785": { - "name": "class PartnerLogoData", - "bases": [ - "PropertyClass" - ], - "hash": 107442785, - "properties": { - "m_logoList": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 906435731 - } - } - }, - "1673570116": { - "name": "class SharedPointer", - "bases": [ - "ReqNumeric", - "Requirement", - "PropertyClass" - ], - "hash": 1673570116, - "properties": { - "m_applyNOT": { + "hash": 770955371 + }, + "m_playerChatChannelIsPublic": { "type": "bool", - "id": 0, - "offset": 72, + "id": 91, + "offset": 916, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1746328074, - "enum_options": { - "__DEFAULT": 0 - } + "hash": 50035796 }, - "m_operator": { - "type": "enum Requirement::Operator", - "id": 1, - "offset": 76, - "flags": 2097183, + "m_extraInventorySpace": { + "type": "int", + "id": 92, + "offset": 920, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2672792317, - "enum_options": { - "ROP_AND": 0, - "ROP_OR": 1, - "__DEFAULT": "ROP_AND" - } + "hash": 1757105784 }, - "m_numericValue": { - "type": "float", - "id": 2, - "offset": 80, + "m_rememberLastRealm": { + "type": "bool", + "id": 93, + "offset": 924, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 521915239 + "hash": 746394247 }, - "m_operatorType": { - "type": "enum ReqNumeric::OPERATOR_TYPE", - "id": 3, - "offset": 84, - "flags": 2097183, + "m_newSpellbookLayoutWarning": { + "type": "bool", + "id": 94, + "offset": 925, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2228122961, - "enum_options": { - "OPERATOR_UNKNOWN": 4294967295, - "OPERATOR_EQUALS": 0, - "OPERATOR_GREATER_THAN": 1, - "OPERATOR_LESS_THAN": 2, - "OPERATOR_GREATER_THAN_EQ": 3, - "OPERATOR_LESS_THAN_EQ": 4 - } + "hash": 1509105148 }, - "m_tournament": { - "type": "std::string", - "id": 4, - "offset": 88, + "m_pipConversionBaseAllSchools": { + "type": "int", + "id": 95, + "offset": 760, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2799932264 - } - } - }, - "107439713": { - "name": "class PartnerLogoData*", - "bases": [ - "PropertyClass" - ], - "hash": 107439713, - "properties": { - "m_logoList": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", + "hash": 307930968 + }, + "m_pipConversionBasePerSchool": { + "type": "int", + "id": 96, + "offset": 768, + "flags": 31, + "container": "Vector", "dynamic": true, "singleton": false, - "pointer": true, - "hash": 906435731 - } - } - }, - "2062280860": { - "name": "class DuelBehavior*", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 2062280860, - "properties": { - "m_behaviorTemplateNameID": { + "pointer": false, + "hash": 1322493139 + }, + "m_purchasedCustomEmotes1": { "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, + "id": 97, + "offset": 928, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 + "hash": 2104336133 }, - "m_pDuel": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, + "m_purchasedCustomTeleportEffects1": { + "type": "unsigned int", + "id": 98, + "offset": 932, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1066616366 + "pointer": false, + "hash": 603893351 }, - "m_sigilTemplateID": { + "m_equippedTeleportEffect": { "type": "unsigned int", - "id": 2, - "offset": 128, + "id": 99, + "offset": 936, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 269055310 - } - } - }, - "1259213735": { - "name": "class AreaBehaviorTemplate", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 1259213735, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, + "hash": 918478182 + }, + "m_highestWorld1ID": { + "type": "unsigned int", + "id": 100, + "offset": 956, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3130754092 + "hash": 2049405919 }, - "m_radius": { - "type": "float", - "id": 1, - "offset": 120, - "flags": 7, + "m_highestWorld2ID": { + "type": "unsigned int", + "id": 101, + "offset": 960, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 989410271 + "hash": 2049407008 }, - "m_category": { - "type": "enum AudioCategory", - "id": 2, - "offset": 124, - "flags": 2097159, - "container": "Static", - "dynamic": false, + "m_activeClassProjectsList": { + "type": "unsigned int", + "id": 102, + "offset": 968, + "flags": 31, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 2951251982, - "enum_options": { - "AudioCategory_Irrelevent": 0, - "AudioCategory_Accoustic": 1, - "AudioCategory_Noise": 2, - "AudioCategory_Music": 3, - "AudioCategory_MusicAtSFXVolume": 4, - "AudioCategory_Dialog": 5, - "AudioCategory_UI": 6, - "AudioCategory_NoiseAtMusicVolume": 7 - } + "hash": 1952826405 }, - "m_exclusive": { - "type": "bool", - "id": 3, - "offset": 128, - "flags": 7, + "m_disabledItemSlotIDs": { + "type": "unsigned int", + "id": 103, + "offset": 984, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1477574262 + }, + "m_adventurePowerCooldownTime": { + "type": "unsigned int", + "id": 104, + "offset": 1000, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 824383403 + "hash": 1774753180 }, - "m_active": { - "type": "bool", - "id": 4, - "offset": 129, - "flags": 7, + "m_purchasedCustomEmotes2": { + "type": "unsigned int", + "id": 105, + "offset": 940, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 239335471 + "hash": 2104336134 }, - "m_enableReqs": { - "type": "class SharedPointer", - "id": 5, - "offset": 136, - "flags": 263, + "m_purchasedCustomTeleportEffects2": { + "type": "unsigned int", + "id": 106, + "offset": 944, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3158020443 - } - } - }, - "1259213711": { - "name": "class AreaBehaviorTemplate*", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 1259213711, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, + "pointer": false, + "hash": 603893352 + }, + "m_purchasedCustomEmotes3": { + "type": "unsigned int", + "id": 107, + "offset": 948, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3130754092 + "hash": 2104336135 }, - "m_radius": { - "type": "float", - "id": 1, - "offset": 120, - "flags": 7, + "m_purchasedCustomTeleportEffects3": { + "type": "unsigned int", + "id": 108, + "offset": 952, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 989410271 + "hash": 603893353 }, - "m_category": { - "type": "enum AudioCategory", - "id": 2, - "offset": 124, - "flags": 2097159, + "m_shadowPipRating": { + "type": "float", + "id": 109, + "offset": 1004, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2951251982, - "enum_options": { - "AudioCategory_Irrelevent": 0, - "AudioCategory_Accoustic": 1, - "AudioCategory_Noise": 2, - "AudioCategory_Music": 3, - "AudioCategory_MusicAtSFXVolume": 4, - "AudioCategory_Dialog": 5, - "AudioCategory_UI": 6, - "AudioCategory_NoiseAtMusicVolume": 7 - } + "hash": 507126123 }, - "m_exclusive": { - "type": "bool", - "id": 3, - "offset": 128, - "flags": 7, + "m_bonusShadowPipRating": { + "type": "float", + "id": 110, + "offset": 1008, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 824383403 + "hash": 578452466 }, - "m_active": { - "type": "bool", - "id": 4, - "offset": 129, - "flags": 7, + "m_shadowPipRateAccumulated": { + "type": "float", + "id": 111, + "offset": 1012, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 239335471 + "hash": 922051738 }, - "m_enableReqs": { - "type": "class SharedPointer", - "id": 5, - "offset": 136, - "flags": 263, + "m_shadowPipRateThreshold": { + "type": "float", + "id": 112, + "offset": 1016, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3158020443 - } - } - }, - "1673927732": { - "name": "class DerbyStealMorale*", - "bases": [ - "DerbyEffect", - "PropertyClass" - ], - "hash": 1673927732, - "properties": { - "m_buffType": { - "type": "enum DerbyTalentBuffType", - "id": 0, - "offset": 92, - "flags": 2097183, + "pointer": false, + "hash": 1215959391 + }, + "m_shadowPipRatePercentage": { + "type": "int", + "id": 113, + "offset": 1020, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1149251982, - "enum_options": { - "Buff": 0, - "Debuff": 1, - "Neither": 2 - } + "hash": 2119696723 }, - "m_kTarget": { - "type": "enum DerbyTargetType", - "id": 1, - "offset": 96, - "flags": 2097159, + "m_friendlyPlayer": { + "type": "bool", + "id": 114, + "offset": 1024, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1807803351, - "enum_options": { - "kTargetInFront": 0, - "kTargetBehind": 1, - "kTargetFirst": 2, - "kTargetSelf": 3, - "kTargetAll": 4, - "kTargetLast": 5 - } + "hash": 990699901 }, - "m_nDuration": { + "m_emojiSkinTone": { "type": "int", - "id": 2, - "offset": 104, + "id": 115, + "offset": 1028, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1110167982 + "hash": 1291044345 }, - "m_effectID": { + "m_showPVPOption": { "type": "unsigned int", - "id": 3, - "offset": 88, - "flags": 24, + "id": 116, + "offset": 1032, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2347630439 + "hash": 2052204093 }, - "m_imageFilename": { - "type": "std::string", - "id": 4, - "offset": 112, - "flags": 131103, + "m_favoriteSlot": { + "type": "int", + "id": 117, + "offset": 1036, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2813328063 + "hash": 13456252 }, - "m_iconIndex": { - "type": "unsigned int", - "id": 5, - "offset": 144, + "m_cantripLevel": { + "type": "unsigned char", + "id": 118, + "offset": 1040, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1265133262 + "hash": 788457241 }, - "m_soundOnActivate": { - "type": "std::string", - "id": 6, - "offset": 152, - "flags": 131103, + "m_cantripXP": { + "type": "int", + "id": 119, + "offset": 1044, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1956929714 + "hash": 1867018035 }, - "m_soundOnTarget": { - "type": "std::string", - "id": 7, - "offset": 184, - "flags": 131103, + "m_archmasteryBase": { + "type": "float", + "id": 120, + "offset": 1048, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3444214056 + "hash": 2213748661 }, - "m_targetParticleEffect": { - "type": "std::string", - "id": 8, - "offset": 216, - "flags": 131103, + "m_archmasteryBonusFlat": { + "type": "float", + "id": 121, + "offset": 1052, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3048234723 + "hash": 2047862920 }, - "m_overheadMessage": { - "type": "std::string", - "id": 9, - "offset": 248, - "flags": 8388639, + "m_archmasteryBonusPercentage": { + "type": "float", + "id": 122, + "offset": 1056, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1701018190 + "hash": 2054419871 }, - "m_requirements": { - "type": "class RequirementList", - "id": 10, - "offset": 280, + "m_highestCharacterWorldOnAccount": { + "type": "int", + "id": 123, + "offset": 340, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2840988582 + "hash": 1240477285 }, - "m_nAmountToSteal": { - "type": "int", - "id": 11, - "offset": 376, + "m_schoolID": { + "type": "unsigned int", + "id": 124, + "offset": 328, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 247752792 - } - } - }, - "107661205": { - "name": "class MapInfoManager::MapInfo*", - "bases": [ - "PropertyClass" - ], - "hash": 107661205, - "properties": { - "m_zoneName": { - "type": "std::string", - "id": 0, - "offset": 96, - "flags": 8388615, + "hash": 369010242 + }, + "m_levelScaled": { + "type": "int", + "id": 125, + "offset": 332, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2171167736 + "hash": 1740930910 }, - "m_mapImage": { + "m_currentZoneName": { "type": "std::string", - "id": 1, - "offset": 128, - "flags": 131079, + "id": 126, + "offset": 1064, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3475170332 + "hash": 3602481883 }, - "m_imageSize": { - "type": "class Size", - "id": 2, - "offset": 160, - "flags": 7, + "m_mailSentToday": { + "type": "unsigned char", + "id": 127, + "offset": 1096, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 925407930 - }, - "m_doodleData": { - "type": "class SharedPointer", - "id": 3, - "offset": 168, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 3059121346 + "hash": 2737597102 }, - "m_mapRotation": { - "type": "int", - "id": 4, - "offset": 184, - "flags": 7, + "m_secondarySchool": { + "type": "unsigned int", + "id": 128, + "offset": 1100, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1291362088 + "hash": 479424797 } } }, - "1258386852": { - "name": "struct CharacterChatStatsByText", + "161799650": { + "name": "class SharedPointer", "bases": [ + "ItemFinderBehaviorBase", + "BehaviorInstance", "PropertyClass" ], - "hash": 1258386852, + "hash": 161799650, "properties": { - "m_text": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1717580128 - }, - "m_chatID": { + "m_behaviorTemplateNameID": { "type": "unsigned int", - "id": 1, + "id": 0, "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 531784794 - }, - "m_usage": { - "type": "unsigned int", - "id": 2, - "offset": 108, - "flags": 7, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1023841410 + "hash": 223437287 } } }, - "1673902225": { - "name": "class CinematicEventInfo*", + "1866584515": { + "name": "class SharedPointer", "bases": [ + "AvatarOptionBase", "PropertyClass" ], - "hash": 1673902225, + "hash": 1866584515, "properties": { - "m_event": { + "m_conditionFlags": { "type": "std::string", "id": 0, "offset": 72, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 2291276253 + "hash": 2483653903 }, - "m_newState": { + "m_mesh": { "type": "std::string", "id": 1, "offset": 104, - "flags": 7, + "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2153420230 + "hash": 1717328392 }, - "m_requiredState": { - "type": "std::string", + "m_noMesh": { + "type": "bool", "id": 2, - "offset": 136, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2654559709 - } - } - }, - "2062757079": { - "name": "class RaceAnimationSoundData", - "bases": [ - "PropertyClass" - ], - "hash": 2062757079, - "properties": { - "m_allAnimationSounds": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, + "offset": 168, "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2646511094 - } - } - }, - "107659484": { - "name": "class HatchmakingKioskBehaviorBase*", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 107659484, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 + "hash": 760920637 }, - "m_hatchDayPetCode": { - "type": "unsigned int", - "id": 1, - "offset": 112, - "flags": 31, + "m_geometry": { + "type": "std::string", + "id": 3, + "offset": 136, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1354692695 + "hash": 2041778855 } } }, - "2062428618": { - "name": "class SharedPointer", + "584940895": { + "name": "class ControlTree*", "bases": [ - "DerbyEffect", + "Window", "PropertyClass" ], - "hash": 2062428618, + "hash": 584940895, "properties": { - "m_buffType": { - "type": "enum DerbyTalentBuffType", + "m_sName": { + "type": "std::string", "id": 0, - "offset": 92, - "flags": 2097183, + "offset": 80, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1149251982, - "enum_options": { - "Buff": 0, - "Debuff": 1, - "Neither": 2 - } + "hash": 2306437263 }, - "m_kTarget": { - "type": "enum DerbyTargetType", + "m_Children": { + "type": "class SharedPointer", "id": 1, - "offset": 96, - "flags": 2097159, - "container": "Static", - "dynamic": false, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 1807803351, - "enum_options": { - "kTargetInFront": 0, - "kTargetBehind": 1, - "kTargetFirst": 2, - "kTargetSelf": 3, - "kTargetAll": 4, - "kTargetLast": 5 - } + "pointer": true, + "hash": 2621225959 }, - "m_nDuration": { - "type": "int", + "m_Style": { + "type": "unsigned int", "id": 2, - "offset": 104, - "flags": 31, + "offset": 152, + "flags": 1048583, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1110167982 + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152, + "SINGLE_EXPAND": 16777216 + } }, - "m_effectID": { + "m_Flags": { "type": "unsigned int", "id": 3, - "offset": 88, - "flags": 24, + "offset": 156, + "flags": 1048583, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2347630439 + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } }, - "m_imageFilename": { - "type": "std::string", + "m_Window": { + "type": "class Rect", "id": 4, - "offset": 112, - "flags": 131103, + "offset": 160, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2813328063 + "hash": 3105139380 }, - "m_iconIndex": { - "type": "unsigned int", + "m_fTargetAlpha": { + "type": "float", "id": 5, - "offset": 144, - "flags": 31, + "offset": 212, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1265133262 + "hash": 1809129834 }, - "m_soundOnActivate": { - "type": "std::string", + "m_fDisabledAlpha": { + "type": "float", "id": 6, - "offset": 152, - "flags": 131103, + "offset": 216, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1956929714 + "hash": 1389987675 }, - "m_soundOnTarget": { - "type": "std::string", + "m_fAlpha": { + "type": "float", "id": 7, - "offset": 184, - "flags": 131103, + "offset": 208, + "flags": 65671, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3444214056 + "hash": 482130755 }, - "m_targetParticleEffect": { - "type": "std::string", + "m_pWindowStyle": { + "type": "class SharedPointer", "id": 8, - "offset": 216, - "flags": 131103, + "offset": 232, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 3048234723 + "pointer": true, + "hash": 3623628394 }, - "m_overheadMessage": { - "type": "std::string", + "m_sHelp": { + "type": "std::wstring", "id": 9, "offset": 248, - "flags": 8388639, + "flags": 4194439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1701018190 + "hash": 2102211316 }, - "m_requirements": { - "type": "class RequirementList", + "m_sScript": { + "type": "std::string", "id": 10, - "offset": 280, - "flags": 31, + "offset": 352, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2840988582 + "hash": 1846695875 }, - "m_moraleChanceActionMap": { - "type": "class MoraleModificationMap", + "m_Offset": { + "type": "class Point", "id": 11, - "offset": 376, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1654668404 - } - } - }, - "2062401102": { - "name": "class Font", - "bases": [ - "PropertyClass" - ], - "hash": 2062401102, - "properties": {} - }, - "107669724": { - "name": "class HatchmakingKioskBehaviorBase", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 107669724, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_hatchDayPetCode": { - "type": "unsigned int", - "id": 1, - "offset": 112, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1354692695 - } - } - }, - "1259241548": { - "name": "class MoveBehaviorTemplate", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 1259241548, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - }, - "m_fAcceleration": { - "type": "float", - "id": 1, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1644159847, - "enum_options": { - "__DEFAULT": 600 - } - }, - "m_fDeceleration": { - "type": "float", - "id": 2, - "offset": 124, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2140366348, - "enum_options": { - "__DEFAULT": 600 - } - }, - "m_fVelocityDecay": { - "type": "float", - "id": 3, - "offset": 128, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 441764242, - "enum_options": { - "__DEFAULT": 0 - } - }, - "m_fWalkSpeed": { - "type": "float", - "id": 4, - "offset": 132, - "flags": 7, + "offset": 192, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1673729917, - "enum_options": { - "__DEFAULT": 125 - } + "hash": 3389835433 }, - "m_fRunSpeed": { - "type": "float", - "id": 5, - "offset": 136, - "flags": 7, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2230193347, - "enum_options": { - "__DEFAULT": 600 - } + "hash": 2547159940 }, - "m_fFlySpeed": { - "type": "float", - "id": 6, - "offset": 140, - "flags": 7, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1454681689, - "enum_options": { - "__DEFAULT": 1000 - } + "hash": 1513510520 }, - "m_fSwimSpeed": { - "type": "float", - "id": 7, - "offset": 144, - "flags": 7, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2100640206, - "enum_options": { - "__DEFAULT": 300 - } + "hash": 3091503757 }, - "m_fFallSpeed": { - "type": "float", - "id": 8, - "offset": 148, - "flags": 7, + "m_nIndent": { + "type": "int", + "id": 16, + "offset": 584, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 701808397, - "enum_options": { - "__DEFAULT": 100 - } + "hash": 2102774666 }, - "m_fYawRate": { - "type": "float", - "id": 9, - "offset": 152, - "flags": 7, + "m_pRoot": { + "type": "struct ControlTree::Item*", + "id": 17, + "offset": 592, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 2111024186, - "enum_options": { - "__DEFAULT": "2.5" - } + "pointer": true, + "hash": 1289445775 }, - "m_fFallHeight": { - "type": "float", - "id": 10, - "offset": 156, - "flags": 7, + "m_pCursorOver": { + "type": "struct ControlTree::Item*", + "id": 18, + "offset": 600, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 499668597, - "enum_options": { - "__DEFAULT": 50 - } + "pointer": true, + "hash": 2025071845 }, - "m_fJumpVelocity": { - "type": "float", - "id": 11, - "offset": 160, - "flags": 7, + "m_pSelected": { + "type": "struct ControlTree::Item*", + "id": 19, + "offset": 608, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1243756264, - "enum_options": { - "__DEFAULT": 500 - } + "pointer": true, + "hash": 1115130964 }, - "m_AnimationList": { - "type": "struct MoveStateAnimation", - "id": 12, - "offset": 168, - "flags": 7, - "container": "List", - "dynamic": true, + "m_bCursorInWindow": { + "type": "bool", + "id": 20, + "offset": 616, + "flags": 135, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 438791160 + "hash": 1768047842 } } }, - "1675664000": { - "name": "class StateEffectTemplate", + "1865778220": { + "name": "class ReqEntryValue*", "bases": [ - "GameEffectTemplate", + "ReqNumeric", + "Requirement", "PropertyClass" ], - "hash": 1675664000, + "hash": 1865778220, "properties": { - "m_effectName": { - "type": "std::string", + "m_applyNOT": { + "type": "bool", "id": 0, "offset": 72, - "flags": 7, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2029161513 + "hash": 1746328074, + "enum_options": { + "__DEFAULT": 0 + } }, - "m_effectCategory": { - "type": "std::string", + "m_operator": { + "type": "enum Requirement::Operator", "id": 1, - "offset": 104, - "flags": 7, + "offset": 76, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1852673222 + "hash": 2672792317, + "enum_options": { + "ROP_AND": 0, + "ROP_OR": 1, + "__DEFAULT": "ROP_AND" + } }, - "m_sortOrder": { - "type": "int", + "m_numericValue": { + "type": "float", "id": 2, - "offset": 148, - "flags": 7, + "offset": 80, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1411218206 + "hash": 521915239 }, - "m_duration": { - "type": "double", + "m_operatorType": { + "type": "enum ReqNumeric::OPERATOR_TYPE", "id": 3, - "offset": 192, - "flags": 7, + "offset": 84, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2727932435 + "hash": 2228122961, + "enum_options": { + "OPERATOR_UNKNOWN": 4294967295, + "OPERATOR_EQUALS": 0, + "OPERATOR_GREATER_THAN": 1, + "OPERATOR_LESS_THAN": 2, + "OPERATOR_GREATER_THAN_EQ": 3, + "OPERATOR_LESS_THAN_EQ": 4 + } }, - "m_stackingCategories": { + "m_entryName": { "type": "std::string", "id": 4, - "offset": 160, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1774497525 - }, - "m_isPersistent": { - "type": "bool", - "id": 5, - "offset": 153, + "offset": 88, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 923861920 + "hash": 2055270734 }, - "m_bIsOnPet": { - "type": "bool", - "id": 6, - "offset": 154, - "flags": 7, + "m_displayName": { + "type": "std::string", + "id": 5, + "offset": 120, + "flags": 287, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 522593303 + "hash": 2446900370 }, - "m_isPublic": { + "m_isQuestRegistry": { "type": "bool", - "id": 7, + "id": 6, "offset": 152, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1728439822 + "hash": 1388902362 }, - "m_visualEffectAddName": { + "m_questName": { "type": "std::string", - "id": 8, - "offset": 200, - "flags": 7, + "id": 7, + "offset": 160, + "flags": 268435463, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3382086694 - }, - "m_visualEffectRemoveName": { + "hash": 1702112846, + "enum_options": { + "__BASECLASS": "QuestTemplate" + } + } + } + }, + "584015231": { + "name": "class ControlDraw*", + "bases": [ + "Window", + "PropertyClass" + ], + "hash": 584015231, + "properties": { + "m_sName": { "type": "std::string", - "id": 9, - "offset": 232, - "flags": 7, + "id": 0, + "offset": 80, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1541697323 + "hash": 2306437263 }, - "m_onAddFunctorName": { - "type": "std::string", - "id": 10, - "offset": 280, - "flags": 7, - "container": "Static", - "dynamic": false, + "m_Children": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 1561843107 + "pointer": true, + "hash": 2621225959 }, - "m_onRemoveFunctorName": { - "type": "std::string", - "id": 11, - "offset": 312, - "flags": 7, + "m_Style": { + "type": "unsigned int", + "id": 2, + "offset": 152, + "flags": 1048583, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2559017864 + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "SCALE_CHILDREN": 2, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "FOCUS_LOCKED": 64, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152 + } }, - "m_stackingRule": { - "type": "enum STACKING_RULE", - "id": 12, - "offset": 144, - "flags": 2097159, + "m_Flags": { + "type": "unsigned int", + "id": 3, + "offset": 156, + "flags": 1048583, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 431568889, + "hash": 967851578, "enum_options": { - "STACKING_ALLOWED": 0, - "STACKING_NOSTACK": 1, - "STACKING_REPLACE": 2 + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 } }, - "m_state": { - "type": "std::string", - "id": 13, - "offset": 360, - "flags": 7, + "m_Window": { + "type": "class Rect", + "id": 4, + "offset": 160, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2307803100 + "hash": 3105139380 }, - "m_animation": { - "type": "std::string", - "id": 14, - "offset": 392, - "flags": 7, + "m_fTargetAlpha": { + "type": "float", + "id": 5, + "offset": 212, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3431428731 + "hash": 1809129834 }, - "m_override": { - "type": "bool", - "id": 15, - "offset": 424, - "flags": 7, + "m_fDisabledAlpha": { + "type": "float", + "id": 6, + "offset": 216, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 139353587 - } - } - }, - "1674214823": { - "name": "class SharedPointer", - "bases": [ - "PathBehaviorTemplate::Action", - "PropertyClass" - ], - "hash": 1674214823, - "properties": { - "m_nPathID": { - "type": "gid", - "id": 0, - "offset": 72, - "flags": 7, + "hash": 1389987675 + }, + "m_fAlpha": { + "type": "float", + "id": 7, + "offset": 208, + "flags": 65671, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 214382368 + "hash": 482130755 }, - "m_nNodeID": { - "type": "int", - "id": 1, - "offset": 80, - "flags": 7, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 152152635, - "enum_options": { - "__DEFAULT": 4294967295 - } + "pointer": true, + "hash": 3623628394 }, - "m_nPriority": { - "type": "int", - "id": 2, - "offset": 84, - "flags": 7, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1515251530, - "enum_options": { - "__DEFAULT": 100 - } + "hash": 2102211316 }, - "m_nChance": { - "type": "int", - "id": 3, - "offset": 88, - "flags": 7, + "m_sScript": { + "type": "std::string", + "id": 10, + "offset": 352, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1860748394, - "enum_options": { - "__DEFAULT": 50 - } + "hash": 1846695875 }, - "m_zoneEvent": { - "type": "std::string", - "id": 4, - "offset": 96, - "flags": 7, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2234553529 - } - } - }, - "2062516053": { - "name": "class Blob", - "bases": [ - "BlobDefinition", - "PropertyClass" - ], - "hash": 2062516053, - "properties": { - "m_type": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, + "hash": 3389835433 + }, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1717601629 + "hash": 2547159940 }, - "m_subType": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 7, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3175052615 + "hash": 1513510520 }, - "m_versionNumber": { - "type": "unsigned int", - "id": 2, - "offset": 136, - "flags": 7, - "container": "Static", - "dynamic": false, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 1265259452 + "hash": 2587533771 }, - "m_packageNumber": { - "type": "int", - "id": 3, - "offset": 140, - "flags": 7, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1934060719 + "hash": 3091503757 }, - "m_associatedGID": { - "type": "gid", - "id": 4, - "offset": 144, - "flags": 7, - "container": "Static", - "dynamic": false, + "m_Markers": { + "type": "class ControlDraw::GesturePoint", + "id": 16, + "offset": 592, + "flags": 135, + "container": "Vector", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 148404716 + "hash": 2001006042 }, - "m_epochDays": { - "type": "unsigned int", - "id": 5, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, + "m_RefPoints": { + "type": "class ControlDraw::GesturePoint", + "id": 17, + "offset": 616, + "flags": 135, + "container": "Vector", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 1631557837 + "hash": 1442006431 }, - "m_data": { - "type": "class SharedPointer", - "id": 6, - "offset": 160, - "flags": 7, - "container": "Static", - "dynamic": false, + "m_LineList": { + "type": "class ControlDraw::Line", + "id": 18, + "offset": 664, + "flags": 135, + "container": "Vector", + "dynamic": true, "singleton": false, - "pointer": true, - "hash": 565926218 + "pointer": false, + "hash": 2941180014 } } }, - "1674024026": { - "name": "class SharedPointer", + "1012990464": { + "name": "class SpellCheckBox", "bases": [ - "ControlPopupButton", + "ControlCheckBox", "ControlButton", "Window", "PropertyClass" ], - "hash": 1674024026, + "hash": 1012990464, "properties": { "m_sName": { "type": "std::string", @@ -673122,7 +673393,6 @@ "HAS_BACK": 1, "CAN_MOVE": 4, "CAN_SIZE": 8, - "CAN_SCROLL": 16, "CAN_FOCUS": 128, "CAN_DOCK": 32, "DO_NOT_CAPTURE_MOUSE": 256, @@ -673135,10 +673405,11 @@ "AUTO_GROW": 16384, "AUTO_SHRINK": 32768, "AUTO_RESIZE": 49152, - "POPDOWN_SIBLINGS": 67108864, - "DISABLE_CHILDREN": 134217728, - "HIDE_SIBLINGS": 268435456, - "POPUP_ON_HOVER": 536870912 + "EFFECT_SCALE": 67108864, + "LOCK_ICON_SIZE": 33554432, + "LEFT_TEXT": 536870912, + "NO_FIT_TEXT": 1073741824, + "CHECKBOX_TEXTOVERIMAGE": 16777216 } }, "m_Flags": { @@ -673530,8 +673801,8 @@ "pointer": true, "hash": 1878185798 }, - "m_bUp": { - "type": "bool", + "m_nGroupID": { + "type": "int", "id": 37, "offset": 880, "flags": 135, @@ -673539,783 +673810,237 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 269510906 - } - } - }, - "112496494": { - "name": "class SharedPointer", - "bases": [ - "CinematicStageTemplate", - "PropertyClass" - ], - "hash": 112496494, - "properties": { - "m_name": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1717359772 - }, - "m_duration": { - "type": "float", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 920323453 - }, - "m_actions": { - "type": "class SharedPointer", - "id": 2, - "offset": 112, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1380578687 - }, - "m_stageRelationships": { - "type": "class SharedPointer", - "id": 3, - "offset": 128, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 499983354 - }, - "m_summon": { - "type": "std::string", - "id": 4, - "offset": 152, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2460090138 - }, - "m_cameras": { - "type": "std::string", - "id": 5, - "offset": 184, - "flags": 131079, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 3217341687 - }, - "m_altcameras": { - "type": "std::string", - "id": 6, - "offset": 208, - "flags": 131079, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1882980152 - }, - "m_camRel": { - "type": "enum CameraCutCinematicAction::kCameraRelative", - "id": 7, - "offset": 232, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 919962138, - "enum_options": { - "kSigil": 1, - "kTarget": 2, - "kSource": 3, - "kActor": 4, - "__DEFAULT": "kTarget" - } - }, - "m_sound": { - "type": "std::string", - "id": 8, - "offset": 280, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2307644996 - }, - "m_interpDuration": { - "type": "float", - "id": 9, - "offset": 312, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237711951, - "enum_options": { - "__DEFAULT": "0.0" - } - }, - "m_summonAnim": { - "type": "std::string", - "id": 10, - "offset": 240, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2113551775, - "enum_options": { - "__DEFAULT": "Summon" - } + "hash": 403966850 }, - "m_returnToIdle": { + "m_bChecked": { "type": "bool", - "id": 11, - "offset": 272, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1267817300 - }, - "m_createOrientation": { - "type": "enum CreateActorCinematicAction::kCreateOrientation", - "id": 12, - "offset": 316, - "flags": 2097159, + "id": 38, + "offset": 884, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3562324429, - "enum_options": { - "kFaceTarget": 0, - "kFaceSource": 1, - "kSigil": 2, - "kTarget": 3, - "kSource": 4, - "kSigilRight": 5, - "kSigilLeft": 6, - "kFaceTargetTeam": 7, - "__DEFAULT": "kFaceTarget" - } + "hash": 958955100 }, - "m_hidePolymorphFloatyText": { - "type": "bool", - "id": 13, - "offset": 320, - "flags": 7, + "m_pCheckedState": { + "type": "class SharedPointer", + "id": 39, + "offset": 888, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 942475883 - } - } - }, - "1259577525": { - "name": "class WizMountTemplate*", - "bases": [ - "WizGameObjectTemplate", - "GameObjectTemplate", - "CoreTemplate", - "PropertyClass" - ], - "hash": 1259577525, - "properties": { - "m_behaviors": { - "type": "class BehaviorTemplate*", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, "pointer": true, - "hash": 1197808594 - }, - "m_objectName": { - "type": "std::string", - "id": 1, - "offset": 96, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2154940147 - }, - "m_templateID": { - "type": "unsigned int", - "id": 2, - "offset": 128, - "flags": 16777223, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1286746870 - }, - "m_visualID": { - "type": "unsigned int", - "id": 3, - "offset": 132, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1118778894 - }, - "m_adjectiveList": { - "type": "std::string", - "id": 4, - "offset": 248, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 3195213318 - }, - "m_exemptFromAOI": { - "type": "bool", - "id": 5, - "offset": 240, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1457879059 - }, - "m_displayName": { - "type": "std::string", - "id": 6, - "offset": 168, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2446900370 - }, - "m_description": { - "type": "std::string", - "id": 7, - "offset": 136, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1649374815 - }, - "m_nObjectType": { - "type": "enum ObjectType", - "id": 8, - "offset": 200, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2118905880, - "enum_options": { - "OT_UNDEFINED": 0, - "OT_PLAYER": 1, - "OT_NPC": 2, - "OT_PROP": 3, - "OT_OBJECT": 4, - "OT_HOUSE": 5, - "OT_KEY": 6, - "OT_OLD_KEY": 7, - "OT_DEED": 8, - "OT_MAIL": 9, - "OT_RECIPE": 17, - "OT_EQUIP_HEAD": 10, - "OT_EQUIP_CHEST": 11, - "OT_EQUIP_LEGS": 12, - "OT_EQUIP_HANDS": 13, - "OT_EQUIP_FINGER": 14, - "OT_EQUIP_FEET": 15, - "OT_EQUIP_EAR": 16, - "OT_BUILDING_BLOCK": 18, - "OT_BUILDING_BLOCK_SOLID": 19, - "OT_GOLF": 20, - "OT_DOOR": 21, - "OT_PET": 22, - "OT_FABRIC": 23, - "OT_WINDOW": 24, - "OT_ROOF": 25, - "OT_HORSE": 26, - "OT_STRUCTURE": 27, - "OT_HOUSING_TEXTURE": 28, - "OT_PLANT": 29 - } - }, - "m_sIcon": { - "type": "std::string", - "id": 9, - "offset": 208, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306259831 - }, - "m_lootTable": { - "type": "std::string", - "id": 10, - "offset": 280, - "flags": 268435463, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2539512673, - "enum_options": { - "__BASECLASS": "LootTable" - } - }, - "m_deathParticles": { - "type": "std::string", - "id": 11, - "offset": 296, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3201049672 - }, - "m_deathSound": { - "type": "std::string", - "id": 12, - "offset": 328, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1865613610 - }, - "m_hitSound": { - "type": "std::string", - "id": 13, - "offset": 360, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2746656777 - }, - "m_castSound": { - "type": "std::string", - "id": 14, - "offset": 392, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3343064815 - }, - "m_aggroSound": { - "type": "std::string", - "id": 15, - "offset": 424, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3421949940 + "hash": 1210539694 }, - "m_primarySchoolName": { - "type": "std::string", - "id": 16, - "offset": 456, - "flags": 7, + "m_pCheckedGreyedState": { + "type": "class SharedPointer", + "id": 40, + "offset": 904, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 3211370408 + "pointer": true, + "hash": 2702030126 }, - "m_locationPreference": { - "type": "std::string", - "id": 17, - "offset": 488, - "flags": 7, + "m_pCheckedHighlightedState": { + "type": "class SharedPointer", + "id": 41, + "offset": 920, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 2817699507 + "pointer": true, + "hash": 1320097679 }, - "m_leashOffsetOverride": { - "type": "class SharedPointer", - "id": 18, - "offset": 528, - "flags": 7, + "m_pCheckedDepressedState": { + "type": "class SharedPointer", + "id": 42, + "offset": 936, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": true, - "hash": 1692586788 + "hash": 1609188685 } } }, - "108971925": { - "name": "class MapInfoManager::MapInfo", + "1435498795": { + "name": "class ClientDerbyTeleport*", "bases": [ + "DerbyTeleport", + "DerbyEffect", "PropertyClass" ], - "hash": 108971925, + "hash": 1435498795, "properties": { - "m_zoneName": { - "type": "std::string", + "m_buffType": { + "type": "enum DerbyTalentBuffType", "id": 0, - "offset": 96, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2171167736 - }, - "m_mapImage": { - "type": "std::string", - "id": 1, - "offset": 128, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3475170332 - }, - "m_imageSize": { - "type": "class Size", - "id": 2, - "offset": 160, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 925407930 - }, - "m_doodleData": { - "type": "class SharedPointer", - "id": 3, - "offset": 168, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 3059121346 - }, - "m_mapRotation": { - "type": "int", - "id": 4, - "offset": 184, - "flags": 7, + "offset": 92, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1291362088 - } - } - }, - "1259413685": { - "name": "class WizMountTemplate", - "bases": [ - "WizGameObjectTemplate", - "GameObjectTemplate", - "CoreTemplate", - "PropertyClass" - ], - "hash": 1259413685, - "properties": { - "m_behaviors": { - "type": "class BehaviorTemplate*", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1197808594 + "hash": 1149251982, + "enum_options": { + "Buff": 0, + "Debuff": 1, + "Neither": 2 + } }, - "m_objectName": { - "type": "std::string", + "m_kTarget": { + "type": "enum DerbyTargetType", "id": 1, "offset": 96, - "flags": 7, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2154940147 + "hash": 1807803351, + "enum_options": { + "kTargetInFront": 0, + "kTargetBehind": 1, + "kTargetFirst": 2, + "kTargetSelf": 3, + "kTargetAll": 4, + "kTargetLast": 5 + } }, - "m_templateID": { - "type": "unsigned int", + "m_nDuration": { + "type": "int", "id": 2, - "offset": 128, - "flags": 16777223, + "offset": 104, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1286746870 + "hash": 1110167982 }, - "m_visualID": { + "m_effectID": { "type": "unsigned int", "id": 3, - "offset": 132, - "flags": 7, + "offset": 88, + "flags": 24, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1118778894 + "hash": 2347630439 }, - "m_adjectiveList": { + "m_imageFilename": { "type": "std::string", "id": 4, - "offset": 248, - "flags": 7, - "container": "List", - "dynamic": true, + "offset": 112, + "flags": 131103, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 3195213318 + "hash": 2813328063 }, - "m_exemptFromAOI": { - "type": "bool", + "m_iconIndex": { + "type": "unsigned int", "id": 5, - "offset": 240, - "flags": 7, + "offset": 144, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1457879059 + "hash": 1265133262 }, - "m_displayName": { + "m_soundOnActivate": { "type": "std::string", "id": 6, - "offset": 168, - "flags": 8388615, + "offset": 152, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2446900370 + "hash": 1956929714 }, - "m_description": { + "m_soundOnTarget": { "type": "std::string", "id": 7, - "offset": 136, - "flags": 8388615, + "offset": 184, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1649374815 + "hash": 3444214056 }, - "m_nObjectType": { - "type": "enum ObjectType", + "m_targetParticleEffect": { + "type": "std::string", "id": 8, - "offset": 200, - "flags": 2097159, + "offset": 216, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2118905880, - "enum_options": { - "OT_UNDEFINED": 0, - "OT_PLAYER": 1, - "OT_NPC": 2, - "OT_PROP": 3, - "OT_OBJECT": 4, - "OT_HOUSE": 5, - "OT_KEY": 6, - "OT_OLD_KEY": 7, - "OT_DEED": 8, - "OT_MAIL": 9, - "OT_RECIPE": 17, - "OT_EQUIP_HEAD": 10, - "OT_EQUIP_CHEST": 11, - "OT_EQUIP_LEGS": 12, - "OT_EQUIP_HANDS": 13, - "OT_EQUIP_FINGER": 14, - "OT_EQUIP_FEET": 15, - "OT_EQUIP_EAR": 16, - "OT_BUILDING_BLOCK": 18, - "OT_BUILDING_BLOCK_SOLID": 19, - "OT_GOLF": 20, - "OT_DOOR": 21, - "OT_PET": 22, - "OT_FABRIC": 23, - "OT_WINDOW": 24, - "OT_ROOF": 25, - "OT_HORSE": 26, - "OT_STRUCTURE": 27, - "OT_HOUSING_TEXTURE": 28, - "OT_PLANT": 29 - } + "hash": 3048234723 }, - "m_sIcon": { + "m_overheadMessage": { "type": "std::string", "id": 9, - "offset": 208, - "flags": 131079, + "offset": 248, + "flags": 8388639, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2306259831 + "hash": 1701018190 }, - "m_lootTable": { - "type": "std::string", + "m_requirements": { + "type": "class RequirementList", "id": 10, "offset": 280, - "flags": 268435463, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2539512673, - "enum_options": { - "__BASECLASS": "LootTable" - } - }, - "m_deathParticles": { - "type": "std::string", - "id": 11, - "offset": 296, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3201049672 - }, - "m_deathSound": { - "type": "std::string", - "id": 12, - "offset": 328, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1865613610 - }, - "m_hitSound": { - "type": "std::string", - "id": 13, - "offset": 360, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2746656777 - }, - "m_castSound": { - "type": "std::string", - "id": 14, - "offset": 392, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3343064815 - }, - "m_aggroSound": { - "type": "std::string", - "id": 15, - "offset": 424, - "flags": 131079, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3421949940 - }, - "m_primarySchoolName": { - "type": "std::string", - "id": 16, - "offset": 456, - "flags": 7, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3211370408 + "hash": 2840988582 }, - "m_locationPreference": { - "type": "std::string", - "id": 17, - "offset": 488, - "flags": 7, + "m_kTeleportToTarget": { + "type": "enum DerbyTargetType", + "id": 11, + "offset": 376, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2817699507 - }, - "m_leashOffsetOverride": { - "type": "class SharedPointer", - "id": 18, - "offset": 528, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1692586788 + "hash": 3096289769, + "enum_options": { + "kTargetInFront": 0, + "kTargetBehind": 1, + "kTargetFirst": 2, + "kTargetSelf": 3, + "kTargetAll": 4, + "kTargetLast": 5 + } } } }, - "108638982": { - "name": "class AddGlobalCinematicStageTemplate*", + "1865754649": { + "name": "class SharedPointer", "bases": [ - "CinematicStageTemplate", "PropertyClass" ], - "hash": 108638982, + "hash": 1865754649, "properties": { - "m_name": { + "m_idleName": { "type": "std::string", "id": 0, "offset": 72, @@ -674324,10 +674049,10 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 1717359772 + "hash": 2107593594 }, - "m_duration": { - "type": "float", + "m_fidgetName": { + "type": "std::string", "id": 1, "offset": 104, "flags": 7, @@ -674335,862 +674060,594 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 920323453 + "hash": 2693632335 }, - "m_actions": { - "type": "class SharedPointer", + "m_fidgetsPerMinute": { + "type": "float", "id": 2, - "offset": 112, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1380578687 - }, - "m_stageRelationships": { - "type": "class SharedPointer", - "id": 3, - "offset": 128, + "offset": 136, "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 499983354 - }, - "m_global": { - "type": "std::string", - "id": 4, - "offset": 152, - "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1979851564 + "hash": 1517617078 }, - "m_sound": { + "m_fidgetSound": { "type": "std::string", - "id": 5, - "offset": 184, + "id": 3, + "offset": 144, "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2307644996 + "hash": 2312384855 } } }, - "1675072686": { - "name": "class SharedPointer", + "583896816": { + "name": "class EquivalentItemBehaviorTemplate*", "bases": [ + "BehaviorTemplate", "PropertyClass" ], - "hash": 1675072686, + "hash": 583896816, "properties": { - "m_scheduleID": { - "type": "gid", + "m_behaviorName": { + "type": "std::string", "id": 0, "offset": 72, - "flags": 31, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1439120946 + "hash": 3130754092 }, - "m_bracketID": { + "m_equivalentItemTemplateID": { "type": "gid", "id": 1, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 441272961 - }, - "m_bracketState": { - "type": "unsigned int", - "id": 2, - "offset": 88, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 790945386 - }, - "m_creationTime": { - "type": "int", - "id": 3, - "offset": 92, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1930866142 - }, - "m_registrationOpenTime": { - "type": "int", - "id": 4, - "offset": 96, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 313608566 - }, - "m_matchStartTime": { - "type": "int", - "id": 5, - "offset": 100, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1241735780 - }, - "m_tournamentNameID": { - "type": "unsigned int", - "id": 6, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1799846440 - }, - "m_tournamentDuration": { - "type": "unsigned int", - "id": 7, - "offset": 108, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 475739392 - }, - "m_minLevel": { - "type": "int", - "id": 8, - "offset": 112, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1496818518 - }, - "m_maxLevel": { - "type": "int", - "id": 9, - "offset": 116, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 146363288 - }, - "m_overrideTourneyName": { - "type": "std::string", - "id": 10, "offset": 120, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2611946162 - }, - "m_firstTourneyNameSTKey": { - "type": "std::string", - "id": 11, - "offset": 152, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2731391050 - }, - "m_secondTourneyNameSTKey": { - "type": "std::string", - "id": 12, - "offset": 184, - "flags": 31, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1747016318 + "hash": 657877294 } } }, - "2115752282": { - "name": "enum kShadow_Threshold_Type", + "1434446624": { + "name": "enum ObjectType", "bases": [], - "hash": 2115752282, + "hash": 1434446624, "properties": {} }, - "2068870381": { - "name": "class BadgeBehavior*", - "bases": [ - "BaseBadgeBehavior", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 2068870381, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_badgeData": { - "type": "std::string", - "id": 1, - "offset": 160, - "flags": 575, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3002588904 - } - } - }, - "488394038": { - "name": "class ReqShadowPipCount", - "bases": [ - "ConditionalSpellEffectRequirement", - "Requirement", - "PropertyClass" - ], - "hash": 488394038, - "properties": { - "m_applyNOT": { - "type": "bool", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1746328074, - "enum_options": { - "__DEFAULT": 0 - } - }, - "m_operator": { - "type": "enum Requirement::Operator", - "id": 1, - "offset": 76, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2672792317, - "enum_options": { - "ROP_AND": 0, - "ROP_OR": 1, - "__DEFAULT": "ROP_AND" - } - }, - "m_targetType": { - "type": "enum ConditionalSpellEffectRequirement::RequirementTarget", - "id": 2, - "offset": 80, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2547737902, - "enum_options": { - "RT_Caster": 0, - "RT_Target": 1 - } - }, - "m_minPips": { - "type": "int", - "id": 3, - "offset": 88, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2062924954 - }, - "m_maxPips": { - "type": "int", - "id": 4, - "offset": 92, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1761701020 - } - } + "162077750": { + "name": "enum DoodleDoug::DdDirection", + "bases": [], + "hash": 162077750, + "properties": {} }, - "1260064120": { - "name": "class SharedPointer", + "1434117792": { + "name": "class SharedPointer", "bases": [ + "CoreTemplate", "PropertyClass" ], - "hash": 1260064120, + "hash": 1434117792, "properties": { - "m_messages": { - "type": "class SharedPointer", + "m_behaviors": { + "type": "class BehaviorTemplate*", "id": 0, "offset": 72, - "flags": 31, - "container": "List", + "flags": 7, + "container": "Vector", "dynamic": true, "singleton": false, "pointer": true, - "hash": 1129442288 - } - } - }, - "2085933540": { - "name": "class ClientShadowSelfCinematicAction*", - "bases": [ - "ShadowSelfCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 2085933540, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - } - } - }, - "887650074": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 887650074, - "properties": { - "m_questName": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1702112846 + "hash": 1197808594 }, - "m_questNameID": { - "type": "unsigned int", + "m_badgeName": { + "type": "std::string", "id": 1, - "offset": 72, - "flags": 31, + "offset": 96, + "flags": 134217735, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1530354349 + "hash": 3002948047 }, - "m_goalEntries": { - "type": "class GoalEntryFull*", - "id": 2, - "offset": 232, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 3351009655 - } - } - }, - "2067755928": { - "name": "class ControlWidget", - "bases": [ - "Window", - "PropertyClass" - ], - "hash": 2067755928, - "properties": { - "m_sName": { + "m_badgeTitle": { "type": "std::string", - "id": 0, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2306437263 - }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621225959 - }, - "m_Style": { - "type": "unsigned int", "id": 2, - "offset": 152, - "flags": 1048583, + "offset": 136, + "flags": 8388615, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "CAN_MOVE": 4, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152, - "CAN_SIZE_HORIZONTALLY": 16777216, - "CAN_SIZE_VERTICALLY": 33554432, - "CAN_SIZE_WIDGET": 50331648 - } + "hash": 1783354256 }, - "m_Flags": { - "type": "unsigned int", + "m_badgeInfo": { + "type": "std::string", "id": 3, - "offset": 156, - "flags": 1048583, + "offset": 168, + "flags": 8388615, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } + "hash": 3002782298 }, - "m_Window": { - "type": "class Rect", + "m_badgeProgressInfo": { + "type": "std::string", "id": 4, - "offset": 160, - "flags": 135, + "offset": 200, + "flags": 8388615, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3105139380 + "hash": 1902667503 }, - "m_fTargetAlpha": { - "type": "float", + "m_badgeReplace": { + "type": "std::string", "id": 5, - "offset": 212, - "flags": 135, + "offset": 256, + "flags": 268435463, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1809129834 + "hash": 2644976426, + "enum_options": { + "__BASECLASS": "BadgeTemplate" + } }, - "m_fDisabledAlpha": { - "type": "float", + "m_clearRegistry": { + "type": "bool", "id": 6, - "offset": 216, - "flags": 135, + "offset": 248, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1389987675 + "hash": 2092369011 }, - "m_fAlpha": { - "type": "float", + "m_requirements": { + "type": "class RequirementList*", "id": 7, - "offset": 208, - "flags": 65671, + "offset": 232, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 482130755 + "pointer": true, + "hash": 2840985510 }, - "m_pWindowStyle": { - "type": "class SharedPointer", + "m_completeResults": { + "type": "class ResultList*", "id": 8, - "offset": 232, - "flags": 135, + "offset": 240, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": true, - "hash": 3623628394 + "hash": 1964258099 }, - "m_sHelp": { - "type": "std::wstring", + "m_badgeAdjectives": { + "type": "std::string", "id": 9, - "offset": 248, - "flags": 4194439, - "container": "Static", - "dynamic": false, + "offset": 312, + "flags": 7, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 2102211316 + "hash": 3438296880 }, - "m_sScript": { + "m_registryName": { "type": "std::string", "id": 10, - "offset": 352, - "flags": 135, + "offset": 344, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1846695875 + "hash": 2065929269 }, - "m_Offset": { - "type": "class Point", + "m_registryValue": { + "type": "int", "id": 11, - "offset": 192, - "flags": 135, + "offset": 376, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3389835433 + "hash": 1578365616 }, - "m_Scale": { - "type": "class Point", + "m_showTitle": { + "type": "bool", "id": 12, - "offset": 200, - "flags": 135, + "offset": 380, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2547159940 + "hash": 2128418998 }, - "m_sTip": { - "type": "std::wstring", + "m_autoAddBadge": { + "type": "bool", "id": 13, - "offset": 392, - "flags": 4194439, + "offset": 381, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1513510520 + "hash": 236591912 }, - "m_BubbleList": { - "type": "class WindowBubble", + "m_index": { + "type": "unsigned int", "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, + "offset": 384, + "flags": 7, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 2587533771 + "hash": 1009433893 }, - "m_ParentOffset": { - "type": "class Rect", + "m_badgeOutline": { + "type": "std::string", "id": 15, - "offset": 176, - "flags": 135, + "offset": 392, + "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3091503757 + "hash": 1548975214 }, - "m_pWidgetBackground": { - "type": "class SharedPointer", + "m_badgeImage": { + "type": "std::string", "id": 16, - "offset": 584, - "flags": 135, + "offset": 424, + "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1642222607 + "pointer": false, + "hash": 1770432017 }, - "m_pTopLeftCornerMaterial": { - "type": "class SharedPointer", + "m_dynamicBadge": { + "type": "bool", "id": 17, - "offset": 600, - "flags": 135, + "offset": 456, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2210830717 + "pointer": false, + "hash": 1496846667 }, - "m_pTopRightCornerMaterial": { - "type": "class SharedPointer", + "m_badgeFilterName": { + "type": "std::string", "id": 18, - "offset": 616, - "flags": 135, + "offset": 464, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2025381456 + "pointer": false, + "hash": 2268560533 }, - "m_pBottomLeftCornerMaterial": { - "type": "class SharedPointer", + "m_extraCredit": { + "type": "bool", "id": 19, - "offset": 632, - "flags": 135, + "offset": 504, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2960442335 + "pointer": false, + "hash": 847737554 }, - "m_pBottomRightCornerMaterial": { - "type": "class SharedPointer", + "m_overcount": { + "type": "bool", "id": 20, - "offset": 648, - "flags": 135, + "offset": 505, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3140244722 + "pointer": false, + "hash": 203918520 }, - "m_pBottomEdgeMaterial": { - "type": "class SharedPointer", + "m_overcountInterval": { + "type": "unsigned int", "id": 21, - "offset": 664, - "flags": 135, + "offset": 508, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2538880672 + "pointer": false, + "hash": 1845137015 }, - "m_pTopEdgeMaterial": { - "type": "class SharedPointer", + "m_overcountLootTable": { + "type": "std::string", "id": 22, - "offset": 680, - "flags": 135, + "offset": 512, + "flags": 268435463, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2522199486 + "pointer": false, + "hash": 3493569350, + "enum_options": { + "__BASECLASS": "LootTable" + } }, - "m_pLeftEdgeMaterial": { - "type": "class SharedPointer", + "m_recurringRewardsDescription": { + "type": "std::string", "id": 23, - "offset": 696, - "flags": 135, + "offset": 544, + "flags": 8388615, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3154051542 + "pointer": false, + "hash": 1668915496 }, - "m_pRightEdgeMaterial": { - "type": "class SharedPointer", + "m_rewardLootTable": { + "type": "std::string", "id": 24, - "offset": 712, - "flags": 135, + "offset": 576, + "flags": 268435463, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2818320265 + "pointer": false, + "hash": 3635244294, + "enum_options": { + "__BASECLASS": "LootTable" + } }, - "m_pCenterMaterial": { - "type": "class SharedPointer", + "m_requiredAutoAddBadgeList": { + "type": "std::string", "id": 25, - "offset": 728, - "flags": 135, - "container": "Static", - "dynamic": false, + "offset": 608, + "flags": 268435463, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": true, - "hash": 1519560055 + "pointer": false, + "hash": 3633108301, + "enum_options": { + "__BASECLASS": "BadgeTemplate" + } }, - "m_MaximumSize": { - "type": "class Size", + "m_forceRequirementsCheck": { + "type": "bool", "id": 26, - "offset": 744, - "flags": 135, + "offset": 712, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1781954165 - }, - "m_MinimumSize": { - "type": "class Size", - "id": 27, - "offset": 752, - "flags": 135, + "hash": 1891065348 + } + } + }, + "162054771": { + "name": "class ClientMinigameBehavior*", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 162054771, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2108593523 + "hash": 223437287 } } }, - "1259657948": { - "name": "class GardeningXPConfig*", + "1013957864": { + "name": "class HiddenQuestsBehavior*", "bases": [ + "BehaviorInstance", "PropertyClass" ], - "hash": 1259657948, + "hash": 1013957864, "properties": { - "m_levelInfo": { - "type": "class GardeningLevelInfo*", + "m_behaviorTemplateNameID": { + "type": "unsigned int", "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3807245122 + "pointer": false, + "hash": 223437287 }, - "m_maxLevel": { - "type": "unsigned char", + "m_hiddenQuestsData": { + "type": "std::string", "id": 1, - "offset": 88, - "flags": 7, + "offset": 128, + "flags": 575, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 783962734 + "hash": 2912992358 } } }, - "2065583660": { - "name": "class SharedPointer", + "162030195": { + "name": "class ClientMinigameBehavior", "bases": [ + "BehaviorInstance", "PropertyClass" ], - "hash": 2065583660, + "hash": 162030195, "properties": { - "m_poiType": { + "m_behaviorTemplateNameID": { "type": "unsigned int", "id": 0, + "offset": 104, + "flags": 39, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 223437287 + } + } + }, + "1865778223": { + "name": "class ReqEntryValue", + "bases": [ + "ReqNumeric", + "Requirement", + "PropertyClass" + ], + "hash": 1865778223, + "properties": { + "m_applyNOT": { + "type": "bool", + "id": 0, "offset": 72, - "flags": 7, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2082807927 + "hash": 1746328074, + "enum_options": { + "__DEFAULT": 0 + } }, - "m_icon": { - "type": "std::string", + "m_operator": { + "type": "enum Requirement::Operator", "id": 1, - "offset": 80, - "flags": 7, + "offset": 76, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1717182340 + "hash": 2672792317, + "enum_options": { + "ROP_AND": 0, + "ROP_OR": 1, + "__DEFAULT": "ROP_AND" + } }, - "m_objectID": { - "type": "gid", + "m_numericValue": { + "type": "float", "id": 2, - "offset": 112, - "flags": 7, + "offset": 80, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 257032380 + "hash": 521915239 }, - "m_position": { - "type": "class Vector3D", + "m_operatorType": { + "type": "enum ReqNumeric::OPERATOR_TYPE", "id": 3, - "offset": 120, - "flags": 7, + "offset": 84, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3697900983 + "hash": 2228122961, + "enum_options": { + "OPERATOR_UNKNOWN": 4294967295, + "OPERATOR_EQUALS": 0, + "OPERATOR_GREATER_THAN": 1, + "OPERATOR_LESS_THAN": 2, + "OPERATOR_GREATER_THAN_EQ": 3, + "OPERATOR_LESS_THAN_EQ": 4 + } }, - "m_yaw": { - "type": "float", + "m_entryName": { + "type": "std::string", "id": 4, - "offset": 132, + "offset": 88, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 357256328 + "hash": 2055270734 + }, + "m_displayName": { + "type": "std::string", + "id": 5, + "offset": 120, + "flags": 287, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2446900370 + }, + "m_isQuestRegistry": { + "type": "bool", + "id": 6, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1388902362 + }, + "m_questName": { + "type": "std::string", + "id": 7, + "offset": 160, + "flags": 268435463, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1702112846, + "enum_options": { + "__BASECLASS": "QuestTemplate" + } } } }, - "2063706278": { - "name": "class SharedPointer", + "584917507": { + "name": "class ControlZone*", "bases": [ - "ControlBar", "Window", "PropertyClass" ], - "hash": 2063706278, + "hash": 584917507, "properties": { "m_sName": { "type": "std::string", @@ -675226,9 +674683,11 @@ "hash": 983582334, "enum_options": { "HAS_BACK": 1, + "SCALE_CHILDREN": 2, "CAN_MOVE": 4, "CAN_SIZE": 8, "CAN_SCROLL": 16, + "FOCUS_LOCKED": 64, "CAN_FOCUS": 128, "CAN_DOCK": 32, "DO_NOT_CAPTURE_MOUSE": 256, @@ -675240,9 +674699,7 @@ "USE_ALPHA_BOUNDS": 8192, "AUTO_GROW": 16384, "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152, - "PROGRESS_UV": 16777216, - "PROGRESS_RTOL": 33554432 + "AUTO_RESIZE": 49152 } }, "m_Flags": { @@ -675403,8 +674860,8 @@ "pointer": false, "hash": 3091503757 }, - "m_fPosition": { - "type": "float", + "m_bButtonDown": { + "type": "bool", "id": 16, "offset": 584, "flags": 135, @@ -675412,256 +674869,116 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 1808212114 - }, - "m_BaseColor": { - "type": "class Color", - "id": 17, - "offset": 588, - "flags": 262279, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2172251096 - }, - "m_BarColor": { - "type": "class Color", - "id": 18, - "offset": 592, - "flags": 262279, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2259916498 - }, - "m_bDisplayVertical": { - "type": "bool", - "id": 19, - "offset": 596, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1359621189 - }, - "m_pBarMaterial": { - "type": "class SharedPointer", - "id": 20, - "offset": 600, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2481929515 - }, - "m_pTopLeftMaterial": { - "type": "class SharedPointer", - "id": 21, - "offset": 616, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3248096916 - }, - "m_pCenterMaterial": { - "type": "class SharedPointer", - "id": 22, - "offset": 632, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1519560055 - }, - "m_pBottomRightMaterial": { - "type": "class SharedPointer", - "id": 23, - "offset": 648, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2932444745 + "hash": 840041705 }, - "m_bTimed": { + "m_bCursorOver": { "type": "bool", - "id": 24, - "offset": 696, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 260290536 - }, - "m_fTotalTime": { - "type": "float", - "id": 25, - "offset": 700, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1142609040 - }, - "m_fCurrentTime": { - "type": "float", - "id": 26, - "offset": 704, + "id": 17, + "offset": 585, "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2112044047 + "hash": 283981103 }, - "m_bReverseDir": { + "m_bSavedCursorOver": { "type": "bool", - "id": 27, - "offset": 708, + "id": 18, + "offset": 586, "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 137983376 - } - } - }, - "489127647": { - "name": "class SharedPointer", - "bases": [ - "AutobotQuestManager", - "PropertyClass" - ], - "hash": 489127647, - "properties": {} - }, - "2063706226": { - "name": "wchar_t*", - "bases": [], - "hash": 2063706226, - "properties": {} - }, - "1260296854": { - "name": "class WeightedList", - "bases": [ - "PropertyClass" - ], - "hash": 1260296854, - "properties": { - "m_list": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1753240061 + "hash": 1803318978 } } }, - "889590999": { - "name": "class SharedPointer", + "1013883089": { + "name": "class PhysicsBehaviorClient*", "bases": [ - "RequirementFailNotification", - "ServiceOptionBase", + "PhysicsBehavior", + "CollisionBehavior", + "BehaviorInstance", "PropertyClass" ], - "hash": 889590999, + "hash": 1013883089, "properties": { - "m_serviceName": { - "type": "std::string", + "m_behaviorTemplateNameID": { + "type": "unsigned int", "id": 0, - "offset": 72, - "flags": 31, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2206028813 + "hash": 223437287 }, - "m_iconKey": { - "type": "std::string", + "m_nHolderGID": { + "type": "gid", "id": 1, - "offset": 168, + "offset": 352, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2457138637 + "hash": 133708664 }, - "m_displayKey": { - "type": "std::string", + "m_vHoldOffset": { + "type": "class Vector3D", "id": 2, - "offset": 104, + "offset": 360, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3023276954 + "hash": 3766080710 }, - "m_serviceIndex": { - "type": "unsigned int", + "m_fHoldForce": { + "type": "float", "id": 3, - "offset": 204, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2103126710 - }, - "m_forceInteract": { - "type": "bool", - "id": 4, - "offset": 200, + "offset": 372, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1705789564 - }, - "m_failureMessage": { - "type": "std::string", - "id": 5, - "offset": 224, - "flags": 31, + "hash": 1792175219 + } + } + }, + "1013500798": { + "name": "class SharedPointer", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1013500798, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1882376712 + "hash": 223437287 } } }, - "888509876": { - "name": "enum AccousticSignature", - "bases": [], - "hash": 888509876, - "properties": {} - }, - "490164293": { - "name": "class BattlegroundMiniMapWindow*", + "584917935": { + "name": "class ControlLine*", "bases": [ "Window", "PropertyClass" ], - "hash": 490164293, + "hash": 584917935, "properties": { "m_sName": { "type": "std::string", @@ -675873,19 +675190,40 @@ "singleton": false, "pointer": false, "hash": 3091503757 + }, + "m_Color": { + "type": "class Color", + "id": 16, + "offset": 584, + "flags": 262279, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1753714077 } } }, - "888229093": { - "name": "class SeedBehaviorTemplate", + "1013188253": { + "name": "class ParalyzeScriptLink", "bases": [ - "BehaviorTemplate", "PropertyClass" ], - "hash": 888229093, + "hash": 1013188253, + "properties": {} + }, + "1435853945": { + "name": "class ClientShadowCreatureCameraCutCinematicAction", + "bases": [ + "ShadowCreatureCameraCutCinematicAction", + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 1435853945, "properties": { - "m_behaviorName": { - "type": "std::string", + "m_timeOffset": { + "type": "float", "id": 0, "offset": 72, "flags": 7, @@ -675893,557 +675231,466 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 3130754092 + "hash": 2237098605 }, - "m_initialRandom": { - "type": "bool", + "m_actor": { + "type": "std::string", "id": 1, - "offset": 120, + "offset": 80, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1171693694, - "enum_options": { - "__DEFAULT": 1 - } - }, - "m_turnRandom": { - "type": "bool", - "id": 2, - "offset": 121, - "flags": 7, + "hash": 2285866132 + } + } + }, + "1867043912": { + "name": "class SharedPointer", + "bases": [ + "RidableBehaviorBase", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1867043912, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1320199517, - "enum_options": { - "__DEFAULT": 1 - } + "hash": 223437287 }, - "m_trackPlayer": { - "type": "bool", - "id": 3, - "offset": 122, + "m_assignedPlayers": { + "type": "gid", + "id": 1, + "offset": 112, + "flags": 65543, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1913541510 + } + } + }, + "162374579": { + "name": "class ComplexRotateTurnIndicatorCinematicAction", + "bases": [ + "CinematicAction", + "PropertyClass" + ], + "hash": 162374579, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 222941845, - "enum_options": { - "__DEFAULT": 1 - } + "hash": 2237098605 }, - "m_shy": { - "type": "bool", - "id": 4, - "offset": 123, + "m_rotationInfo": { + "type": "class SharedPointer", + "id": 1, + "offset": 80, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 269530055 - }, - "m_speed": { - "type": "float", - "id": 5, - "offset": 124, - "flags": 7, + "pointer": true, + "hash": 2332010820 + } + } + }, + "1866695046": { + "name": "class ReqIsLimitExpandBackpackElixirs*", + "bases": [ + "Requirement", + "PropertyClass" + ], + "hash": 1866695046, + "properties": { + "m_applyNOT": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 900164744, + "hash": 1746328074, "enum_options": { - "__DEFAULT": "400.0" + "__DEFAULT": 0 } }, - "m_nextStageTemplateID": { - "type": "unsigned int", - "id": 6, - "offset": 128, - "flags": 33554439, + "m_operator": { + "type": "enum Requirement::Operator", + "id": 1, + "offset": 76, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 953331817 - }, - "m_nextStageRate": { - "type": "std::string", - "id": 7, - "offset": 136, - "flags": 7, + "hash": 2672792317, + "enum_options": { + "ROP_AND": 0, + "ROP_OR": 1, + "__DEFAULT": "ROP_AND" + } + } + } + }, + "1436080545": { + "name": "class SharedPointer", + "bases": [ + "WindowAnimation", + "PropertyClass" + ], + "hash": 1436080545, + "properties": { + "m_bUseDeepCopy": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2891393594 + "hash": 433380635 }, - "m_needsWaterMinRate": { - "type": "std::string", - "id": 8, - "offset": 168, - "flags": 7, + "m_fCycleTime": { + "type": "float", + "id": 1, + "offset": 80, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2764655453 + "hash": 1056288476 }, - "m_needsSunMinRate": { - "type": "std::string", - "id": 9, - "offset": 232, - "flags": 7, + "m_fElapsedTime": { + "type": "float", + "id": 2, + "offset": 84, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1962535184 + "hash": 1862647402 }, - "m_needsPollinationMinRate": { - "type": "std::string", - "id": 10, - "offset": 296, - "flags": 7, + "m_cycle": { + "type": "bool", + "id": 3, + "offset": 92, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1849944227 + "hash": 793791523 }, - "m_needsWaterMaxRate": { - "type": "std::string", - "id": 11, - "offset": 200, - "flags": 7, + "m_allowAlphaCycle": { + "type": "bool", + "id": 4, + "offset": 93, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2463431519 - }, - "m_needsSunMaxRate": { - "type": "std::string", - "id": 12, - "offset": 264, + "hash": 1269348264 + } + } + }, + "585174517": { + "name": "class DailyQuestInfo*", + "bases": [ + "PropertyClass" + ], + "hash": 585174517, + "properties": { + "m_circleNumber": { + "type": "unsigned int", + "id": 0, + "offset": 72, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1661311250 + "hash": 2324347272 }, - "m_needsPollinationMaxRate": { - "type": "std::string", - "id": 13, - "offset": 328, + "m_templateID": { + "type": "unsigned int", + "id": 1, + "offset": 76, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1548720293 + "hash": 1286746870 }, - "m_needsMagicMinRate": { + "m_zonePath": { "type": "std::string", - "id": 14, - "offset": 360, + "id": 2, + "offset": 80, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2161414587 + "hash": 2171239844 }, - "m_needsMagicMaxRate": { + "m_activatorVolumeName": { "type": "std::string", - "id": 15, - "offset": 392, + "id": 3, + "offset": 112, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1860190653 + "hash": 2802025985 }, - "m_needsMusicMinRate": { + "m_locationDisplayName": { "type": "std::string", - "id": 16, - "offset": 424, + "id": 4, + "offset": 144, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2626783323 + "hash": 2796282603 }, - "m_needsMusicMaxRate": { + "m_zoneDisplayName": { "type": "std::string", - "id": 17, - "offset": 456, + "id": 5, + "offset": 176, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2325559389 - }, - "m_plantStage": { - "type": "enum PlantStage", - "id": 18, - "offset": 488, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2664847960, - "enum_options": { - "PS_Seedling": 0, - "PS_Young": 1, - "PS_Mature": 2, - "PS_Angel": 3, - "PS_Wilting": 4, - "PS_Dead": 5 - } - }, - "m_wiltTemplateID": { - "type": "unsigned int", - "id": 19, - "offset": 492, - "flags": 33554439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1395185014 - }, - "m_deadTemplateID": { - "type": "unsigned int", - "id": 20, - "offset": 496, - "flags": 33554439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1067979076 - }, - "m_youngTemplateID": { - "type": "unsigned int", - "id": 21, - "offset": 500, - "flags": 33554439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2019241800 + "hash": 1962339438 }, - "m_needsWaterWiltRate": { + "m_overrideOffer": { "type": "std::string", - "id": 22, - "offset": 512, + "id": 6, + "offset": 208, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3446381113 + "hash": 2733092717 }, - "m_needsSunWiltRate": { + "m_overrideCompleted": { "type": "std::string", - "id": 23, - "offset": 544, + "id": 7, + "offset": 240, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2746216012 - }, - "m_needsPollinationWiltRate": { + "hash": 2887301912 + } + } + }, + "1013659918": { + "name": "class SharedPointer", + "bases": [ + "GameEffectTemplate", + "PropertyClass" + ], + "hash": 1013659918, + "properties": { + "m_effectName": { "type": "std::string", - "id": 24, - "offset": 576, + "id": 0, + "offset": 72, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3325681727 + "hash": 2029161513 }, - "m_needsMagicWiltRate": { + "m_effectCategory": { "type": "std::string", - "id": 25, - "offset": 608, + "id": 1, + "offset": 104, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2866785367 + "hash": 1852673222 }, - "m_needsMusicWiltRate": { - "type": "std::string", - "id": 26, - "offset": 640, + "m_sortOrder": { + "type": "int", + "id": 2, + "offset": 148, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3191568119 + "hash": 1411218206 }, - "m_harvestMinRate": { - "type": "std::string", - "id": 27, - "offset": 672, + "m_duration": { + "type": "double", + "id": 3, + "offset": 192, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1769440136 + "hash": 2727932435 }, - "m_harvestMaxRate": { + "m_stackingCategories": { "type": "std::string", - "id": 28, - "offset": 704, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3615699850 - }, - "m_pestList": { - "type": "class PestEntry", - "id": 29, - "offset": 736, + "id": 4, + "offset": 160, "flags": 7, - "container": "Vector", + "container": "List", "dynamic": true, "singleton": false, "pointer": false, - "hash": 3674788815 - }, - "m_pestUpdateRate": { - "type": "std::string", - "id": 30, - "offset": 760, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1636194246 + "hash": 1774497525 }, - "m_requiresEnchantedSoil": { + "m_isPersistent": { "type": "bool", - "id": 31, - "offset": 792, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1443901316 - }, - "m_rewardsRating": { - "type": "int", - "id": 32, - "offset": 796, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1304655351 - }, - "m_challengeRating": { - "type": "int", - "id": 33, - "offset": 800, + "id": 5, + "offset": 153, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 310016034 + "hash": 923861920 }, - "m_harvestXP": { - "type": "int", - "id": 34, - "offset": 804, + "m_bIsOnPet": { + "type": "bool", + "id": 6, + "offset": 154, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1835284159 + "hash": 522593303 }, - "m_requiresEnrichedSoil": { + "m_isPublic": { "type": "bool", - "id": 35, - "offset": 793, + "id": 7, + "offset": 152, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 69513596 + "hash": 1728439822 }, - "m_fidgetDuringHappy": { - "type": "bool", - "id": 36, - "offset": 808, + "m_visualEffectAddName": { + "type": "std::string", + "id": 8, + "offset": 200, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 302222161 + "hash": 3382086694 }, - "m_fidgetSoundEffectName": { + "m_visualEffectRemoveName": { "type": "std::string", - "id": 37, - "offset": 816, + "id": 9, + "offset": 232, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2949012741 + "hash": 1541697323 }, - "m_fidgetSoundEffectGain": { - "type": "float", - "id": 38, - "offset": 848, + "m_onAddFunctorName": { + "type": "std::string", + "id": 10, + "offset": 280, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1541262591, - "enum_options": { - "__DEFAULT": "1.0" - } + "hash": 1561843107 }, - "m_angelEffectTemplateID": { - "type": "unsigned int", - "id": 39, - "offset": 852, - "flags": 33554439, + "m_onRemoveFunctorName": { + "type": "std::string", + "id": 11, + "offset": 312, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 907020010 + "hash": 2559017864 }, - "m_seedSize": { - "type": "enum SeedSize", - "id": 40, - "offset": 856, + "m_stackingRule": { + "type": "enum STACKING_RULE", + "id": 12, + "offset": 144, "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1971854021, + "hash": 431568889, "enum_options": { - "SS_Small": 0, - "SS_Medium": 1, - "SS_Large": 2, - "__DEFAULT": "SS_Medium" + "STACKING_ALLOWED": 0, + "STACKING_NOSTACK": 1, + "STACKING_REPLACE": 2 } }, - "m_seedLimit": { - "type": "int", - "id": 41, - "offset": 860, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 189298778 - }, - "m_gardeningLevelRequirement": { - "type": "int", - "id": 42, - "offset": 864, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 52309522 - }, - "m_maximumNumberOfHarvests": { - "type": "unsigned int", - "id": 43, - "offset": 896, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1889816953 - }, - "m_likesDislikesList": { - "type": "class LikesDislikesEntry", - "id": 44, - "offset": 872, + "m_fxList": { + "type": "class SharedPointer", + "id": 13, + "offset": 360, "flags": 7, - "container": "Vector", + "container": "List", "dynamic": true, "singleton": false, - "pointer": false, - "hash": 2284921934 - }, - "m_matureTemplateID": { - "type": "unsigned int", - "id": 45, - "offset": 504, - "flags": 33554439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1960067908 - }, - "m_plantRank": { - "type": "int", - "id": 46, - "offset": 900, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 164732869 + "pointer": true, + "hash": 549626493 } } }, - "2065465110": { - "name": "class SharedPointer", + "585174357": { + "name": "class DailyQuestInfo", "bases": [ - "HidePolymorphFloatyTextCinematicAction", - "ActorCinematicAction", - "CinematicAction", "PropertyClass" ], - "hash": 2065465110, + "hash": 585174357, "properties": { - "m_timeOffset": { - "type": "float", + "m_circleNumber": { + "type": "unsigned int", "id": 0, "offset": 72, "flags": 7, @@ -676451,909 +675698,922 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 + "hash": 2324347272 }, - "m_actor": { - "type": "std::string", + "m_templateID": { + "type": "unsigned int", "id": 1, - "offset": 80, + "offset": 76, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2285866132 - } - } - }, - "489448102": { - "name": "class PvPLeagueTemplate*", - "bases": [ - "PropertyClass" - ], - "hash": 489448102, - "properties": { - "m_leagueType": { + "hash": 1286746870 + }, + "m_zonePath": { "type": "std::string", - "id": 0, + "id": 2, "offset": 80, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3327951024 + "hash": 2171239844 }, - "m_mainDoodle": { + "m_activatorVolumeName": { "type": "std::string", - "id": 1, + "id": 3, "offset": 112, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2211594423 - }, - "m_leagueDescription": { - "type": "std::string", - "id": 2, - "offset": 144, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3204126290 + "hash": 2802025985 }, - "m_leagueName": { + "m_locationDisplayName": { "type": "std::string", - "id": 3, - "offset": 176, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3327709167 - }, - "m_age": { - "type": "int", "id": 4, - "offset": 208, + "offset": 144, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 267029223 + "hash": 2796282603 }, - "m_retired": { - "type": "bool", + "m_zoneDisplayName": { + "type": "std::string", "id": 5, - "offset": 212, + "offset": 176, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1931776834 + "hash": 1962339438 }, - "m_gracePeriodDays": { - "type": "int", + "m_overrideOffer": { + "type": "std::string", "id": 6, - "offset": 216, + "offset": 208, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1128520496 + "hash": 2733092717 }, - "m_requirementsList": { - "type": "class SharedPointer", + "m_overrideCompleted": { + "type": "std::string", "id": 7, - "offset": 224, + "offset": 240, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1999017945 - }, - "m_seasonList": { - "type": "std::string", - "id": 8, - "offset": 240, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1895863232 - }, - "m_duelModifiers": { - "type": "std::string", - "id": 9, - "offset": 256, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, "pointer": false, - "hash": 2938413959 + "hash": 2887301912 } } }, - "1262576969": { - "name": "class SavedCharacter*", + "163559175": { + "name": "class DerbyModifySpeedBoost*", "bases": [ + "DerbyEffect", "PropertyClass" ], - "hash": 1262576969, + "hash": 163559175, "properties": { - "m_hairModel": { - "type": "int", + "m_buffType": { + "type": "enum DerbyTalentBuffType", "id": 0, - "offset": 72, - "flags": 7, + "offset": 92, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 764326287 + "hash": 1149251982, + "enum_options": { + "Buff": 0, + "Debuff": 1, + "Neither": 2 + } }, - "m_hairColor": { - "type": "int", + "m_kTarget": { + "type": "enum DerbyTargetType", "id": 1, - "offset": 76, - "flags": 7, + "offset": 96, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 752476125 + "hash": 1807803351, + "enum_options": { + "kTargetInFront": 0, + "kTargetBehind": 1, + "kTargetFirst": 2, + "kTargetSelf": 3, + "kTargetAll": 4, + "kTargetLast": 5 + } }, - "m_skinColor": { + "m_nDuration": { "type": "int", "id": 2, - "offset": 80, - "flags": 7, + "offset": 104, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1601202478 + "hash": 1110167982 }, - "m_face": { - "type": "int", + "m_effectID": { + "type": "unsigned int", "id": 3, - "offset": 84, - "flags": 7, + "offset": 88, + "flags": 24, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 219372329 + "hash": 2347630439 }, - "m_skinDecal2": { - "type": "int", + "m_imageFilename": { + "type": "std::string", "id": 4, - "offset": 88, - "flags": 7, + "offset": 112, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1324180954 + "hash": 2813328063 }, - "m_nose": { - "type": "int", + "m_iconIndex": { + "type": "unsigned int", "id": 5, - "offset": 92, - "flags": 7, + "offset": 144, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 219675599 + "hash": 1265133262 }, - "m_eyeColor": { - "type": "int", + "m_soundOnActivate": { + "type": "std::string", "id": 6, - "offset": 96, - "flags": 7, + "offset": 152, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 825282748 + "hash": 1956929714 }, - "m_mouth": { - "type": "int", + "m_soundOnTarget": { + "type": "std::string", "id": 7, - "offset": 100, - "flags": 7, + "offset": 184, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 802830055 + "hash": 3444214056 }, - "m_accessory": { - "type": "int", + "m_targetParticleEffect": { + "type": "std::string", "id": 8, - "offset": 104, - "flags": 7, + "offset": 216, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1831652550 + "hash": 3048234723 }, - "m_faceDecal": { - "type": "int", + "m_overheadMessage": { + "type": "std::string", "id": 9, - "offset": 108, - "flags": 7, + "offset": 248, + "flags": 8388639, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1472001474 + "hash": 1701018190 }, - "m_mouthDecal": { - "type": "int", + "m_requirements": { + "type": "class RequirementList", "id": 10, - "offset": 112, - "flags": 7, + "offset": 280, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 993581120 + "hash": 2840988582 }, - "m_hatColor": { + "m_nSpeedChange": { "type": "int", "id": 11, - "offset": 116, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1635647158 - }, - "m_hatDecal": { - "type": "int", - "id": 12, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1636463440 - }, - "m_torsoColor": { - "type": "int", - "id": 13, - "offset": 124, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1443544208 - }, - "m_torsoDecal": { - "type": "int", - "id": 14, - "offset": 128, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1444360490 - }, - "m_feetColor": { - "type": "int", - "id": 15, - "offset": 132, - "flags": 7, + "offset": 376, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1168748445 - }, - "m_feetDecal": { - "type": "int", - "id": 16, - "offset": 136, - "flags": 7, + "hash": 636533855 + } + } + }, + "1438023804": { + "name": "class AddTeamUpdate", + "bases": [ + "TournamentUpdate", + "PropertyClass" + ], + "hash": 1438023804, + "properties": { + "m_team": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1169564727 + "pointer": true, + "hash": 1393503221 } } }, - "888229069": { - "name": "class SeedBehaviorTemplate*", + "163557895": { + "name": "class DerbyModifySpeedBoost", "bases": [ - "BehaviorTemplate", + "DerbyEffect", "PropertyClass" ], - "hash": 888229069, + "hash": 163557895, "properties": { - "m_behaviorName": { - "type": "std::string", + "m_buffType": { + "type": "enum DerbyTalentBuffType", "id": 0, - "offset": 72, - "flags": 7, + "offset": 92, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3130754092 + "hash": 1149251982, + "enum_options": { + "Buff": 0, + "Debuff": 1, + "Neither": 2 + } }, - "m_initialRandom": { - "type": "bool", + "m_kTarget": { + "type": "enum DerbyTargetType", "id": 1, - "offset": 120, - "flags": 7, + "offset": 96, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1171693694, + "hash": 1807803351, "enum_options": { - "__DEFAULT": 1 + "kTargetInFront": 0, + "kTargetBehind": 1, + "kTargetFirst": 2, + "kTargetSelf": 3, + "kTargetAll": 4, + "kTargetLast": 5 } }, - "m_turnRandom": { - "type": "bool", + "m_nDuration": { + "type": "int", "id": 2, - "offset": 121, - "flags": 7, + "offset": 104, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1320199517, - "enum_options": { - "__DEFAULT": 1 - } + "hash": 1110167982 }, - "m_trackPlayer": { - "type": "bool", + "m_effectID": { + "type": "unsigned int", "id": 3, - "offset": 122, - "flags": 7, + "offset": 88, + "flags": 24, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 222941845, - "enum_options": { - "__DEFAULT": 1 - } + "hash": 2347630439 }, - "m_shy": { - "type": "bool", + "m_imageFilename": { + "type": "std::string", "id": 4, - "offset": 123, - "flags": 7, + "offset": 112, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 269530055 + "hash": 2813328063 }, - "m_speed": { - "type": "float", + "m_iconIndex": { + "type": "unsigned int", "id": 5, - "offset": 124, - "flags": 7, + "offset": 144, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 900164744, - "enum_options": { - "__DEFAULT": "400.0" - } + "hash": 1265133262 }, - "m_nextStageTemplateID": { - "type": "unsigned int", + "m_soundOnActivate": { + "type": "std::string", "id": 6, - "offset": 128, - "flags": 33554439, + "offset": 152, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 953331817 + "hash": 1956929714 }, - "m_nextStageRate": { + "m_soundOnTarget": { "type": "std::string", "id": 7, - "offset": 136, - "flags": 7, + "offset": 184, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2891393594 + "hash": 3444214056 }, - "m_needsWaterMinRate": { + "m_targetParticleEffect": { "type": "std::string", "id": 8, - "offset": 168, - "flags": 7, + "offset": 216, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2764655453 + "hash": 3048234723 }, - "m_needsSunMinRate": { + "m_overheadMessage": { "type": "std::string", "id": 9, - "offset": 232, - "flags": 7, + "offset": 248, + "flags": 8388639, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1962535184 + "hash": 1701018190 }, - "m_needsPollinationMinRate": { - "type": "std::string", + "m_requirements": { + "type": "class RequirementList", "id": 10, - "offset": 296, - "flags": 7, + "offset": 280, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1849944227 + "hash": 2840988582 }, - "m_needsWaterMaxRate": { - "type": "std::string", + "m_nSpeedChange": { + "type": "int", "id": 11, - "offset": 200, - "flags": 7, + "offset": 376, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2463431519 - }, - "m_needsSunMaxRate": { - "type": "std::string", - "id": 12, - "offset": 264, - "flags": 7, + "hash": 636533855 + } + } + }, + "1867726468": { + "name": "class ComboItem*", + "bases": [ + "PropertyClass" + ], + "hash": 1867726468, + "properties": { + "sText": { + "type": "std::wstring", + "id": 0, + "offset": 72, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1661311250 + "hash": 1567439332 }, - "m_needsPollinationMaxRate": { - "type": "std::string", - "id": 13, - "offset": 328, - "flags": 7, + "dwFlags": { + "type": "unsigned int", + "id": 1, + "offset": 104, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1548720293 - }, - "m_needsMagicMinRate": { - "type": "std::string", - "id": 14, - "offset": 360, - "flags": 7, + "hash": 1021307529 + } + } + }, + "1013884369": { + "name": "class PhysicsBehaviorClient", + "bases": [ + "PhysicsBehavior", + "CollisionBehavior", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1013884369, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2161414587 + "hash": 223437287 }, - "m_needsMagicMaxRate": { - "type": "std::string", - "id": 15, - "offset": 392, - "flags": 7, + "m_nHolderGID": { + "type": "gid", + "id": 1, + "offset": 352, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1860190653 + "hash": 133708664 }, - "m_needsMusicMinRate": { - "type": "std::string", - "id": 16, - "offset": 424, - "flags": 7, + "m_vHoldOffset": { + "type": "class Vector3D", + "id": 2, + "offset": 360, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2626783323 + "hash": 3766080710 }, - "m_needsMusicMaxRate": { - "type": "std::string", - "id": 17, - "offset": 456, - "flags": 7, + "m_fHoldForce": { + "type": "float", + "id": 3, + "offset": 372, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2325559389 - }, - "m_plantStage": { - "type": "enum PlantStage", - "id": 18, - "offset": 488, - "flags": 2097159, + "hash": 1792175219 + } + } + }, + "1437370059": { + "name": "class SharedPointer", + "bases": [ + "StageBacklashEffectCinematicAction", + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 1437370059, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2664847960, - "enum_options": { - "PS_Seedling": 0, - "PS_Young": 1, - "PS_Mature": 2, - "PS_Angel": 3, - "PS_Wilting": 4, - "PS_Dead": 5 - } + "hash": 2237098605 }, - "m_wiltTemplateID": { - "type": "unsigned int", - "id": 19, - "offset": 492, - "flags": 33554439, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1395185014 - }, - "m_deadTemplateID": { - "type": "unsigned int", - "id": 20, - "offset": 496, - "flags": 33554439, + "hash": 2285866132 + } + } + }, + "585868517": { + "name": "class FishSellingOption", + "bases": [ + "ServiceOptionBase", + "PropertyClass" + ], + "hash": 585868517, + "properties": { + "m_serviceName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1067979076 + "hash": 2206028813 }, - "m_youngTemplateID": { - "type": "unsigned int", - "id": 21, - "offset": 500, - "flags": 33554439, + "m_iconKey": { + "type": "std::string", + "id": 1, + "offset": 168, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2019241800 + "hash": 2457138637 }, - "m_needsWaterWiltRate": { + "m_displayKey": { "type": "std::string", - "id": 22, - "offset": 512, - "flags": 7, + "id": 2, + "offset": 104, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3446381113 + "hash": 3023276954 }, - "m_needsSunWiltRate": { - "type": "std::string", - "id": 23, - "offset": 544, - "flags": 7, + "m_serviceIndex": { + "type": "unsigned int", + "id": 3, + "offset": 204, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2746216012 + "hash": 2103126710 }, - "m_needsPollinationWiltRate": { - "type": "std::string", - "id": 24, - "offset": 576, - "flags": 7, + "m_forceInteract": { + "type": "bool", + "id": 4, + "offset": 200, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3325681727 - }, - "m_needsMagicWiltRate": { + "hash": 1705789564 + } + } + }, + "1437178010": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1437178010, + "properties": { + "m_trackFilename": { "type": "std::string", - "id": 25, - "offset": 608, - "flags": 7, + "id": 0, + "offset": 72, + "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2866785367 + "hash": 2957416369 }, - "m_needsMusicWiltRate": { - "type": "std::string", - "id": 26, - "offset": 640, + "m_bIsStreamed": { + "type": "bool", + "id": 1, + "offset": 104, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3191568119 + "hash": 2001937222 }, - "m_harvestMinRate": { - "type": "std::string", - "id": 27, - "offset": 672, + "m_animPos": { + "type": "float", + "id": 2, + "offset": 108, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1769440136 + "hash": 1878658286 }, - "m_harvestMaxRate": { + "m_animObjName": { "type": "std::string", - "id": 28, - "offset": 704, + "id": 3, + "offset": 112, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3615699850 - }, - "m_pestList": { - "type": "class PestEntry", - "id": 29, - "offset": 736, - "flags": 7, - "container": "Vector", - "dynamic": true, + "hash": 2369937660 + } + } + }, + "585372564": { + "name": "class InvisibilityEffect", + "bases": [ + "GameEffectBase", + "PropertyClass" + ], + "hash": 585372564, + "properties": { + "m_currentTickCount": { + "type": "double", + "id": 0, + "offset": 80, + "flags": 63, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 3674788815 + "hash": 2533274692 }, - "m_pestUpdateRate": { - "type": "std::string", - "id": 30, - "offset": 760, - "flags": 7, + "m_effectNameID": { + "type": "unsigned int", + "id": 1, + "offset": 96, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1636194246 + "hash": 1204067144 }, - "m_requiresEnchantedSoil": { + "m_bIsOnPet": { "type": "bool", - "id": 31, - "offset": 792, - "flags": 7, + "id": 2, + "offset": 73, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1443901316 + "hash": 522593303 }, - "m_rewardsRating": { - "type": "int", - "id": 32, - "offset": 796, - "flags": 7, + "m_originatorID": { + "type": "gid", + "id": 3, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1304655351 + "hash": 1131810019 }, - "m_challengeRating": { - "type": "int", - "id": 33, - "offset": 800, - "flags": 7, + "m_itemSlotID": { + "type": "unsigned int", + "id": 4, + "offset": 112, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 310016034 + "hash": 1895747595 }, - "m_harvestXP": { + "m_internalID": { "type": "int", - "id": 34, - "offset": 804, - "flags": 7, + "id": 5, + "offset": 92, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1835284159 + "hash": 1643137924 }, - "m_requiresEnrichedSoil": { - "type": "bool", - "id": 35, - "offset": 793, - "flags": 7, + "m_endTime": { + "type": "unsigned int", + "id": 6, + "offset": 88, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 69513596 - }, - "m_fidgetDuringHappy": { - "type": "bool", - "id": 36, - "offset": 808, - "flags": 7, + "hash": 716479635 + } + } + }, + "1013957824": { + "name": "class HiddenQuestsBehavior", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 1013957824, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 302222161 + "hash": 223437287 }, - "m_fidgetSoundEffectName": { + "m_hiddenQuestsData": { "type": "std::string", - "id": 37, - "offset": 816, - "flags": 7, + "id": 1, + "offset": 128, + "flags": 575, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2949012741 + "hash": 2912992358 + } + } + }, + "1437118028": { + "name": "class SharedPointer", + "bases": [ + "ReqNumeric", + "Requirement", + "PropertyClass" + ], + "hash": 1437118028, + "properties": { + "m_applyNOT": { + "type": "bool", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1746328074, + "enum_options": { + "__DEFAULT": 0 + } }, - "m_fidgetSoundEffectGain": { - "type": "float", - "id": 38, - "offset": 848, - "flags": 7, + "m_operator": { + "type": "enum Requirement::Operator", + "id": 1, + "offset": 76, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1541262591, + "hash": 2672792317, "enum_options": { - "__DEFAULT": "1.0" + "ROP_AND": 0, + "ROP_OR": 1, + "__DEFAULT": "ROP_AND" } }, - "m_angelEffectTemplateID": { - "type": "unsigned int", - "id": 39, - "offset": 852, - "flags": 33554439, + "m_numericValue": { + "type": "float", + "id": 2, + "offset": 80, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 907020010 + "hash": 521915239 }, - "m_seedSize": { - "type": "enum SeedSize", - "id": 40, - "offset": 856, - "flags": 2097159, + "m_operatorType": { + "type": "enum ReqNumeric::OPERATOR_TYPE", + "id": 3, + "offset": 84, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1971854021, + "hash": 2228122961, "enum_options": { - "SS_Small": 0, - "SS_Medium": 1, - "SS_Large": 2, - "__DEFAULT": "SS_Medium" + "OPERATOR_UNKNOWN": 4294967295, + "OPERATOR_EQUALS": 0, + "OPERATOR_GREATER_THAN": 1, + "OPERATOR_LESS_THAN": 2, + "OPERATOR_GREATER_THAN_EQ": 3, + "OPERATOR_LESS_THAN_EQ": 4 } }, - "m_seedLimit": { - "type": "int", - "id": 41, - "offset": 860, + "m_entryName": { + "type": "std::string", + "id": 4, + "offset": 88, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 189298778 + "hash": 2055270734 }, - "m_gardeningLevelRequirement": { - "type": "int", - "id": 42, - "offset": 864, - "flags": 7, + "m_displayName": { + "type": "std::string", + "id": 5, + "offset": 120, + "flags": 287, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 52309522 + "hash": 2446900370 }, - "m_maximumNumberOfHarvests": { - "type": "unsigned int", - "id": 43, - "offset": 896, + "m_isQuestRegistry": { + "type": "bool", + "id": 6, + "offset": 152, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1889816953 - }, - "m_likesDislikesList": { - "type": "class LikesDislikesEntry", - "id": 44, - "offset": 872, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2284921934 + "hash": 1388902362 }, - "m_matureTemplateID": { - "type": "unsigned int", - "id": 45, - "offset": 504, - "flags": 33554439, + "m_questName": { + "type": "std::string", + "id": 7, + "offset": 160, + "flags": 268435463, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1960067908 - }, - "m_plantRank": { - "type": "int", - "id": 46, - "offset": 900, + "hash": 1702112846, + "enum_options": { + "__BASECLASS": "QuestTemplate" + } + } + } + }, + "165421371": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 165421371, + "properties": { + "m_allAnimationSounds": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 164732869 + "pointer": true, + "hash": 2646511094 } } }, - "2064808532": { - "name": "enum GOAL_STATUS", - "bases": [], - "hash": 2064808532, - "properties": {} - }, - "489245601": { - "name": "class ObstacleCoursePusherBehaviorTemplate", + "1868564397": { + "name": "class SG_GamePower*", "bases": [ - "ObstacleCourseObstaclePathBaseTemplate", - "ObstacleCourseObstacleBehaviorTemplate", - "BehaviorTemplate", "PropertyClass" ], - "hash": 489245601, + "hash": 1868564397, "properties": { - "m_behaviorName": { + "m_name": { "type": "std::string", "id": 0, "offset": 72, @@ -677362,108 +676622,209 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 3130754092 + "hash": 1717359772 }, - "m_rate": { - "type": "float", + "m_blockInteraction": { + "type": "std::string", "id": 1, - "offset": 120, + "offset": 104, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 310005283 + "hash": 1884044102 }, - "m_penaltyTime": { - "type": "float", + "m_blockTypeDestroyed": { + "type": "std::string", "id": 2, - "offset": 124, + "offset": 136, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2083389507 + "hash": 3388691227 }, - "m_totalObstacleSize": { - "type": "class Vector3D", + "m_ballGraphic": { + "type": "std::string", "id": 3, - "offset": 128, - "flags": 7, + "offset": 200, + "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2379878414 + "hash": 2352594772 }, - "m_bounds": { - "type": "class Vector3D", + "m_impactGraphic": { + "type": "std::string", "id": 4, - "offset": 152, - "flags": 7, - "container": "Vector", - "dynamic": true, + "offset": 232, + "flags": 131079, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 1948083181 + "hash": 3208005463 }, - "m_orientToPath": { - "type": "bool", + "m_powerComboMultipliers": { + "type": "class SharedPointer", "id": 5, - "offset": 176, + "offset": 328, "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1957941557 + }, + "m_impactSound": { + "type": "std::string", + "id": 6, + "offset": 264, + "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 655036148 + "hash": 2087348962 }, - "m_heightUp": { - "type": "float", - "id": 6, - "offset": 140, + "m_selectSound": { + "type": "std::string", + "id": 7, + "offset": 296, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1892320740 + } + } + }, + "165372585": { + "name": "class HousingLayout*", + "bases": [ + "PropertyClass" + ], + "hash": 165372585, + "properties": { + "m_housingLayoutObjectList": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2580715899 + } + } + }, + "1867891328": { + "name": "class SpawnItem", + "bases": [ + "PropertyClass" + ], + "hash": 1867891328, + "properties": { + "m_percentChance": { + "type": "unsigned char", + "id": 0, + "offset": 72, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2208713013 + "hash": 1023261955 }, - "m_heightDown": { - "type": "float", - "id": 7, - "offset": 144, + "m_objectInfo": { + "type": "class SpawnObjectInfo*", + "id": 1, + "offset": 80, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, + "pointer": true, + "hash": 1481415047 + } + } + }, + "164021040": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 164021040, + "properties": { + "m_nMoveState": { + "type": "enum MoveState", + "id": 0, + "offset": 72, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, "pointer": false, - "hash": 655333896 + "hash": 1430960270, + "enum_options": { + "MS_WALKING": 0, + "MS_RUNNING": 1, + "MS_SWIMMING": 2, + "MS_FLYING": 3, + "MS_JUMPING": 4, + "MS_FALLING": 5, + "MS_SLIDING": 6, + "__DEFAULT": "MS_WALKING" + } }, - "m_changeDirectionSoundList": { - "type": "class WeightedList", - "id": 8, - "offset": 184, + "m_nMoveAnimation": { + "type": "enum MoveAnimation", + "id": 1, + "offset": 76, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3179560950, + "enum_options": { + "MA_IDLE": 0, + "MA_FORWARD": 1, + "MA_BACK": 2, + "MA_LEFT": 3, + "MA_RIGHT": 4, + "MA_TURNLEFT": 5, + "MA_TURNRIGHT": 6, + "__DEFAULT": "MA_IDLE" + } + }, + "m_sAnimationName": { + "type": "std::string", + "id": 2, + "offset": 80, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1487918739 + "hash": 1757815023 } } }, - "1260956328": { - "name": "class GardeningShedBehaviorTemplate*", + "1867879040": { + "name": "class SpawnItem*", "bases": [ - "BehaviorTemplate", "PropertyClass" ], - "hash": 1260956328, + "hash": 1867879040, "properties": { - "m_behaviorName": { - "type": "std::string", + "m_percentChance": { + "type": "unsigned char", "id": 0, "offset": 72, "flags": 7, @@ -677471,17 +676832,28 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 3130754092 + "hash": 1023261955 + }, + "m_objectInfo": { + "type": "class SpawnObjectInfo*", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1481415047 } } }, - "1260669407": { - "name": "class FriendsListWindow*", + "1014784381": { + "name": "class FriendSortByWindow", "bases": [ "Window", "PropertyClass" ], - "hash": 1260669407, + "hash": 1014784381, "properties": { "m_sName": { "type": "std::string", @@ -677696,81 +677068,16 @@ } } }, - "888256044": { - "name": "class SharedPointer", + "1437347832": { + "name": "class CastleGamesEntry", "bases": [ - "ServiceOptionBase", + "CastleTourTeleportInfo", "PropertyClass" ], - "hash": 888256044, + "hash": 1437347832, "properties": { - "m_serviceName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2206028813 - }, - "m_iconKey": { - "type": "std::string", - "id": 1, - "offset": 168, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2457138637 - }, - "m_displayKey": { - "type": "std::string", - "id": 2, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3023276954 - }, - "m_serviceIndex": { + "m_houseTemplateID": { "type": "unsigned int", - "id": 3, - "offset": 204, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2103126710 - }, - "m_forceInteract": { - "type": "bool", - "id": 4, - "offset": 200, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1705789564 - } - } - }, - "490112364": { - "name": "class PetJewelBehaviorTemplate*", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 490112364, - "properties": { - "m_behaviorName": { - "type": "std::string", "id": 0, "offset": 72, "flags": 7, @@ -677778,222 +677085,102 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 3130754092 - }, - "m_petTalentName": { - "type": "std::string", - "id": 1, - "offset": 120, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1985615789 - }, - "m_minPetLevel": { - "type": "unsigned char", - "id": 2, - "offset": 136, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1317483893 - } - } - }, - "1260829131": { - "name": "class ResistLimitOverride*", - "bases": [ - "CombatRule", - "PropertyClass" - ], - "hash": 1260829131, - "properties": { - "m_resistLimit": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1192834544 + "hash": 2326023642 }, - "m_rK0": { - "type": "float", + "m_structureTemplateID": { + "type": "unsigned int", "id": 1, "offset": 76, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 357247908 - }, - "m_rN0": { - "type": "float", - "id": 2, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 357248007 - } - } - }, - "2066707981": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 2066707981, - "properties": { - "m_displayName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 8388615, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2446900370 - }, - "m_tagName": { - "type": "std::string", - "id": 1, - "offset": 104, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1542016824 + "hash": 1037379271 }, - "m_artifactList": { - "type": "class SharedPointer", - "id": 2, - "offset": 136, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 768482721 - } - } - }, - "2065830996": { - "name": "class FriendlyPlayerInfo", - "bases": [ - "PropertyClass" - ], - "hash": 2065830996, - "properties": { - "m_characterGID": { + "m_lotInstanceGID": { "type": "gid", - "id": 0, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 501688601 - }, - "m_nameBlob": { - "type": "std::string", - "id": 1, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3058206907 - }, - "m_schoolCode": { - "type": "unsigned int", "id": 2, - "offset": 104, + "offset": 80, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2098672048 + "hash": 2010711536 }, - "m_zoneDisplayName": { - "type": "std::string", + "m_structureInstanceGID": { + "type": "gid", "id": 3, - "offset": 112, + "offset": 88, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1962339438 + "hash": 2083588818 }, - "m_level": { - "type": "unsigned char", + "m_owningCharacterGID": { + "type": "gid", "id": 4, - "offset": 144, + "offset": 96, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1438884808 + "hash": 316234091 }, - "m_groupStatus": { - "type": "unsigned char", + "m_packedName": { + "type": "std::string", "id": 5, - "offset": 145, + "offset": 104, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1901216097 + "hash": 1805208228 }, - "m_hasFreeChat": { + "m_gameType": { "type": "unsigned char", "id": 6, - "offset": 160, + "offset": 136, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1722302062 + "hash": 2369894028 }, - "m_isOnline": { - "type": "bool", + "m_subGameType": { + "type": "unsigned char", "id": 7, - "offset": 161, + "offset": 137, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1681359252 + "hash": 2559216502 } } }, - "888977217": { - "name": "class SG_GameInteraction*", + "637687903": { + "name": "unsigned char", + "bases": [], + "hash": 637687903, + "properties": {} + }, + "1014153296": { + "name": "class SharedPointer", "bases": [ + "BehaviorTemplate", "PropertyClass" ], - "hash": 888977217, + "hash": 1014153296, "properties": { - "m_interactorOneName": { + "m_behaviorName": { "type": "std::string", "id": 0, "offset": 72, @@ -678002,43 +677189,31 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 3615982777 + "hash": 3130754092 }, - "m_interactorTwoName": { + "m_lifespan": { "type": "std::string", "id": 1, - "offset": 104, + "offset": 120, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1847465777 - }, - "m_eventsRaisedOnOne": { - "type": "std::string", - "id": 2, - "offset": 136, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2412613351 + "hash": 3042809453 } } }, - "491539766": { - "name": "class ReqShadowPipCount*", + "604413508": { + "name": "class RateMyStitchOption*", "bases": [ - "ConditionalSpellEffectRequirement", - "Requirement", + "ServiceOptionBase", "PropertyClass" ], - "hash": 491539766, + "hash": 604413508, "properties": { - "m_applyNOT": { - "type": "bool", + "m_serviceName": { + "type": "std::string", "id": 0, "offset": 72, "flags": 31, @@ -678046,735 +677221,568 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 1746328074, - "enum_options": { - "__DEFAULT": 0 - } + "hash": 2206028813 }, - "m_operator": { - "type": "enum Requirement::Operator", + "m_iconKey": { + "type": "std::string", "id": 1, - "offset": 76, - "flags": 2097183, + "offset": 168, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2672792317, - "enum_options": { - "ROP_AND": 0, - "ROP_OR": 1, - "__DEFAULT": "ROP_AND" - } + "hash": 2457138637 }, - "m_targetType": { - "type": "enum ConditionalSpellEffectRequirement::RequirementTarget", + "m_displayKey": { + "type": "std::string", "id": 2, - "offset": 80, - "flags": 2097159, + "offset": 104, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2547737902, - "enum_options": { - "RT_Caster": 0, - "RT_Target": 1 - } + "hash": 3023276954 }, - "m_minPips": { - "type": "int", + "m_serviceIndex": { + "type": "unsigned int", "id": 3, - "offset": 88, + "offset": 204, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2062924954 + "hash": 2103126710 }, - "m_maxPips": { - "type": "int", + "m_forceInteract": { + "type": "bool", "id": 4, - "offset": 92, + "offset": 200, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1761701020 + "hash": 1705789564 } } }, - "1261508737": { - "name": "class SharedPointer", + "165372588": { + "name": "class HousingLayout", "bases": [ - "CoreObjectInfo", "PropertyClass" ], - "hash": 1261508737, + "hash": 165372588, "properties": { - "m_templateID.m_full": { - "type": "unsigned __int64", + "m_housingLayoutObjectList": { + "type": "class SharedPointer", "id": 0, "offset": 72, - "flags": 33554439, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2580715899 + } + } + }, + "1868343404": { + "name": "enum PremiumContentOption::ContentType", + "bases": [], + "hash": 1868343404, + "properties": {} + }, + "596429743": { + "name": "class ControlList", + "bases": [ + "ControlText", + "Window", + "PropertyClass" + ], + "hash": 596429743, + "properties": { + "m_sName": { + "type": "std::string", + "id": 0, + "offset": 80, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 633907631 + "hash": 2306437263 }, - "m_nObjectID": { - "type": "unsigned int", + "m_Children": { + "type": "class SharedPointer", "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 748496927 + "pointer": true, + "hash": 2621225959 }, - "m_location": { - "type": "class Vector3D", + "m_Style": { + "type": "unsigned int", "id": 2, - "offset": 84, - "flags": 7, + "offset": 152, + "flags": 1048583, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2239683611 + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152, + "ITEM_HEIGHT": 16777216, + "COLUMN_CENTER": 33554432, + "VERTICAL_CENTER": 67108864, + "DO_NOT_WRAP": 134217728, + "IGNORE_KEYBOARD": 536870912 + } }, - "m_orientation": { - "type": "class Vector3D", + "m_Flags": { + "type": "unsigned int", "id": 3, - "offset": 96, - "flags": 7, + "offset": 156, + "flags": 1048583, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2344058766 + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } }, - "m_fScale": { - "type": "float", + "m_Window": { + "type": "class Rect", "id": 4, - "offset": 108, - "flags": 7, + "offset": 160, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 503137701 + "hash": 3105139380 }, - "m_zoneTag": { - "type": "std::string", + "m_fTargetAlpha": { + "type": "float", "id": 5, - "offset": 152, - "flags": 7, + "offset": 212, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3405382643 + "hash": 1809129834 }, - "m_startState": { - "type": "std::string", + "m_fDisabledAlpha": { + "type": "float", "id": 6, - "offset": 184, - "flags": 7, + "offset": 216, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2166880458 + "hash": 1389987675 }, - "m_overrideName": { - "type": "std::string", + "m_fAlpha": { + "type": "float", "id": 7, - "offset": 120, - "flags": 8388615, + "offset": 208, + "flags": 65671, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1990707228 + "hash": 482130755 }, - "m_globalDynamic": { - "type": "bool", + "m_pWindowStyle": { + "type": "class SharedPointer", "id": 8, - "offset": 116, - "flags": 7, + "offset": 232, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1951691017 + "pointer": true, + "hash": 3623628394 }, - "m_bUndetectable": { - "type": "bool", + "m_sHelp": { + "type": "std::wstring", "id": 9, - "offset": 216, - "flags": 7, + "offset": 248, + "flags": 4194439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1907454341 + "hash": 2102211316 }, - "m_spawnRequirements": { - "type": "class SharedPointer", + "m_sScript": { + "type": "std::string", "id": 10, - "offset": 224, - "flags": 7, + "offset": 352, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2309120870 + "pointer": false, + "hash": 1846695875 }, - "m_loadingType": { - "type": "enum CoreObjectInfo::LoadingType", + "m_Offset": { + "type": "class Point", "id": 11, - "offset": 112, - "flags": 2097159, + "offset": 192, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3522422550, - "enum_options": { - "STATIC_CLIENT_SERVER": 0, - "STATIC_CLIENT": 1, - "STATIC_SERVER": 2, - "DYNAMIC_SERVER": 3 - } + "hash": 3389835433 }, - "m_kStartNodeType": { - "type": "enum SpawnObjectInfo::StartNodeType", + "m_Scale": { + "type": "class Point", "id": 12, - "offset": 240, - "flags": 2097159, + "offset": 200, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1545814623, - "enum_options": { - "SNT_RANDOM": 0, - "SNT_RANDOM_UNIQUE": 1, - "SNT_FIRST": 2, - "SNT_LAST": 3, - "SNT_SPECIFIC": 4 - } + "hash": 2547159940 }, - "m_startNode": { - "type": "unsigned int", + "m_sTip": { + "type": "std::wstring", "id": 13, - "offset": 256, - "flags": 7, + "offset": 392, + "flags": 4194439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1598161889, - "enum_options": { - "__DEFAULT": 0 - } + "hash": 1513510520 }, - "m_pathID": { - "type": "gid", + "m_BubbleList": { + "type": "class WindowBubble", "id": 14, - "offset": 248, - "flags": 7, - "container": "Static", - "dynamic": false, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 821494322 + "hash": 2587533771 }, - "m_uniqueLoc": { - "type": "char", + "m_ParentOffset": { + "type": "class Rect", "id": 15, - "offset": 260, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 400014505 - } - } - }, - "888697362": { - "name": "class SharedPointer", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 888697362, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, + "offset": 176, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3130754092 + "hash": 3091503757 }, - "m_effectName": { - "type": "std::string", - "id": 1, - "offset": 120, - "flags": 7, + "m_sText": { + "type": "std::wstring", + "id": 16, + "offset": 584, + "flags": 4194439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2029161513 + "hash": 2102642960 }, - "m_textKey": { - "type": "std::string", - "id": 2, - "offset": 152, - "flags": 7, + "m_sTooltip": { + "type": "std::wstring", + "id": 17, + "offset": 616, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1720060457 + "hash": 1680475798 }, - "m_height": { - "type": "float", - "id": 3, - "offset": 184, - "flags": 7, + "m_bUseDropShadow": { + "type": "bool", + "id": 18, + "offset": 653, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 602977104 + "hash": 93063037 }, - "m_zOffset": { - "type": "float", - "id": 4, - "offset": 188, - "flags": 7, + "m_bUseOutline": { + "type": "bool", + "id": 19, + "offset": 654, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 736134072 + "hash": 744292994 }, - "m_red": { - "type": "unsigned char", - "id": 5, - "offset": 192, - "flags": 7, + "m_bEnableWordWrap": { + "type": "bool", + "id": 20, + "offset": 655, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 904647115 + "hash": 430904562 }, - "m_green": { - "type": "unsigned char", - "id": 6, - "offset": 193, - "flags": 7, + "m_bEnableToggle": { + "type": "bool", + "id": 21, + "offset": 652, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1433403873 + "hash": 1937994142 }, - "m_blue": { - "type": "unsigned char", - "id": 7, - "offset": 194, - "flags": 7, + "m_nLeadingAdjust": { + "type": "int", + "id": 22, + "offset": 656, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 856840600 - }, - "m_triggers": { - "type": "class SharedPointer", - "id": 8, - "offset": 200, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 3290329276 - } - } - }, - "2065998829": { - "name": "class EquipmentTemplate", - "bases": [ - "CoreTemplate", - "PropertyClass" - ], - "hash": 2065998829, - "properties": { - "m_behaviors": { - "type": "class BehaviorTemplate*", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1197808594 - }, - "m_baseSlots": { - "type": "class EquipSlot*", - "id": 1, - "offset": 136, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 3098501161 + "hash": 1559480167 }, - "m_equipmentName": { - "type": "std::string", - "id": 2, - "offset": 96, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1920213140 - } - } - }, - "1261284008": { - "name": "class GardeningShedBehaviorTemplate", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 1261284008, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - } - } - }, - "888548495": { - "name": "class ClientBuffDebuffEventCinematicAction", - "bases": [ - "BuffDebuffEventCinematicAction", - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 888548495, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, + "m_TextColor": { + "type": "class Color", + "id": 23, + "offset": 696, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 + "hash": 2267136674 }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - } - } - }, - "493802616": { - "name": "class ClientSpellCardAttachmentBehavior*", - "bases": [ - "SpellCardAttachmentBehavior", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 493802616, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, + "m_SelectColor": { + "type": "class Color", + "id": 24, + "offset": 700, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 - }, - "m_spellNames": { - "type": "std::string", - "id": 1, - "offset": 112, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2136089135 + "hash": 2792529213 }, - "m_targetNode": { - "type": "std::string", - "id": 2, - "offset": 128, - "flags": 31, + "m_HighlightColor": { + "type": "class Color", + "id": 25, + "offset": 704, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2698500040 + "hash": 1047198101 }, - "m_offset": { - "type": "class Vector3D", - "id": 3, - "offset": 160, - "flags": 31, + "m_bSortEnable": { + "type": "bool", + "id": 26, + "offset": 784, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2445636425 + "hash": 24009764 }, - "m_rotate": { - "type": "class Vector3D", - "id": 4, - "offset": 172, - "flags": 31, + "m_nSortByColumn": { + "type": "int", + "id": 27, + "offset": 788, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2574199889 + "hash": 1829537401 }, - "m_height": { - "type": "float", - "id": 5, - "offset": 184, - "flags": 31, + "m_bSortAscending": { + "type": "bool", + "id": 28, + "offset": 792, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 602977104 + "hash": 1369222793 }, - "m_alpha": { - "type": "float", - "id": 6, - "offset": 188, - "flags": 31, + "m_nHighlighted": { + "type": "int", + "id": 29, + "offset": 796, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 878686493 + "hash": 1020338345 }, - "m_cycleRate": { - "type": "float", - "id": 7, - "offset": 192, - "flags": 31, + "m_nSelected": { + "type": "int", + "id": 30, + "offset": 800, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 947046355 - } - } - }, - "2067627022": { - "name": "class ClassProjectActivity*", - "bases": [ - "PropertyClass" - ], - "hash": 2067627022, - "properties": { - "m_activityType": { - "type": "enum ClassProjectActivityType", - "id": 0, - "offset": 72, - "flags": 2097159, + "hash": 1017366545 + }, + "m_bListInvalid": { + "type": "bool", + "id": 31, + "offset": 804, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1382301495, - "enum_options": { - "CPT_DefeatMob": 0, - "CPT_CatchFish": 1, - "CPT_CastTreasureCard": 2, - "CPT_DefeatPlayer": 3, - "CPT_ClaimCaptureArea": 4, - "CPT_UseInteractable": 5, - "CPT_CraftItem": 6, - "CPT_DailyQuest": 7, - "CPT_FeedPetSnack": 8, - "CPT_HelpTeam": 9, - "CPT_WinMatchBG": 10, - "CPT_LevelPolymorph": 11, - "CPT_HarvestPlant": 12, - "CPT_WinPetGame": 13, - "CPT_HatchPet": 14, - "CPT_PlayDerby": 15, - "CPT_FeedPetHappiness": 16, - "CPT_RateCastleToursHouse": 17, - "CPT_VisitCastleToursHouse": 18, - "CPT_RateOverallStitches": 19, - "CPT_RateEventStitches": 20, - "CPT_JudgesChoice": 21 - } + "hash": 376155128 }, - "m_activityGoal": { - "type": "int", - "id": 1, - "offset": 112, - "flags": 7, + "m_bSortInvalid": { + "type": "bool", + "id": 32, + "offset": 805, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 103864010 + "hash": 1605867140 }, - "m_activityValue": { - "type": "int", - "id": 2, - "offset": 116, - "flags": 7, + "m_pScrollWin": { + "type": "class SharedPointer", + "id": 33, + "offset": 808, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1294496132 + "pointer": true, + "hash": 3263557131 }, - "m_activityLimit": { + "m_itemHeight": { "type": "int", - "id": 3, - "offset": 120, - "flags": 7, + "id": 34, + "offset": 824, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1282925126 + "hash": 1245325666 }, - "m_activityDescription": { - "type": "std::string", - "id": 4, - "offset": 128, - "flags": 7, + "m_itemNormalState": { + "type": "class ControlList::ListItemState*", + "id": 35, + "offset": 832, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 3300318636 + "pointer": true, + "hash": 2253036141 }, - "m_adjectiveList": { - "type": "std::string", - "id": 5, - "offset": 80, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 3195213318 - } - } - }, - "492944839": { - "name": "class SharedPointer", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 492944839, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, + "m_itemHighlightedState": { + "type": "class ControlList::ListItemState*", + "id": 36, + "offset": 840, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 223437287 - } - } - }, - "1262198543": { - "name": "class MonsterMagicBehaviorBase", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1262198543, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, + "pointer": true, + "hash": 2949959141 + }, + "m_itemSelectedState": { + "type": "class ControlList::ListItemState*", + "id": 37, + "offset": 848, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 223437287 + "pointer": true, + "hash": 2463527405 }, - "m_monsterData": { - "type": "std::string", - "id": 1, - "offset": 128, - "flags": 551, + "m_itemDisabledState": { + "type": "class ControlList::ListItemState*", + "id": 38, + "offset": 856, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 3377737309 + "pointer": true, + "hash": 4008046876 } } }, - "888864273": { - "name": "struct FriendData*", + "1437913571": { + "name": "class ExpansionBehaviorTemplate*", "bases": [ + "BehaviorTemplate", "PropertyClass" ], - "hash": 888864273, + "hash": 1437913571, "properties": { - "m_gid": { - "type": "gid", + "m_behaviorName": { + "type": "std::string", "id": 0, "offset": 72, "flags": 7, @@ -678782,827 +677790,578 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 267019404 + "hash": 3130754092 }, - "m_schoolName": { - "type": "std::string", + "m_expansions": { + "type": "class SharedPointer", "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3385349572 - }, - "m_schoolRank": { - "type": "std::wstring", - "id": 2, - "offset": 112, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3181478700 - }, - "m_schoolLevel": { - "type": "int", - "id": 3, - "offset": 144, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 10373914 - }, - "m_showPVPOption": { - "type": "unsigned int", - "id": 4, - "offset": 148, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2052204093 - }, - "m_petTemplateID": { - "type": "unsigned int", - "id": 5, - "offset": 152, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 817215071 - } - } - }, - "2067225463": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 2067225463, - "properties": { - "m_initialCombatSoundsList": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, + "offset": 120, "flags": 7, "container": "List", "dynamic": true, "singleton": false, "pointer": true, - "hash": 1746599966 + "hash": 3762221063 } } }, - "492217996": { - "name": "class GearVaultBehaviorTemplate*", + "587236144": { + "name": "class SharedPointer", "bases": [ - "BehaviorTemplate", + "BeneficialProximityBehaviorBase", + "BehaviorInstance", "PropertyClass" ], - "hash": 492217996, + "hash": 587236144, "properties": { - "m_behaviorName": { - "type": "std::string", + "m_behaviorTemplateNameID": { + "type": "unsigned int", "id": 0, - "offset": 72, - "flags": 7, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3130754092 + "hash": 223437287 } } }, - "1261538180": { - "name": "class SharedPointer", + "1015231469": { + "name": "class CrownShopCategory", "bases": [ "PropertyClass" ], - "hash": 1261538180, + "hash": 1015231469, "properties": { - "m_progression": { - "type": "enum PlayList::Progression", + "m_name": { + "type": "std::string", "id": 0, "offset": 72, - "flags": 2097159, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3279400238, - "enum_options": { - "Sequence": 0, - "Random": 1, - "SequenceOnceOnly": 2, - "RandomNoRepeat": 3 - } + "hash": 1717359772 }, - "m_currentTrack": { + "m_ID": { "type": "int", "id": 1, - "offset": 76, - "flags": 7, + "offset": 104, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 652542482 + "hash": 2090585127 }, - "m_trackFilenameList": { - "type": "class PlayListEntry*", + "m_parentTabID": { + "type": "int", "id": 2, - "offset": 80, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 3167512201 - } - } - }, - "492208267": { - "name": "class GradientWidgetBackground*", - "bases": [ - "WidgetBackground", - "PropertyClass" - ], - "hash": 492208267, - "properties": { - "m_fBackgroundAlpha": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, + "offset": 108, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1164086307 - }, - "m_pTopLeftBackgroundAlphaMask": { - "type": "class SharedPointer", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2652729643 - }, - "m_pTopRightBackgroundAlphaMask": { - "type": "class SharedPointer", - "id": 2, - "offset": 96, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2236264926 + "hash": 16409672 }, - "m_pBottomLeftBackgroundAlphaMask": { - "type": "class SharedPointer", + "m_description": { + "type": "std::string", "id": 3, "offset": 112, - "flags": 7, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3301927117 + "pointer": false, + "hash": 1649374815 }, - "m_pBottomRightBackgroundAlphaMask": { - "type": "class SharedPointer", + "m_iconResource": { + "type": "std::string", "id": 4, - "offset": 128, - "flags": 7, + "offset": 144, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2184945088 + "pointer": false, + "hash": 2838396012 }, - "m_pBottomBackgroundAlphaMask": { - "type": "class SharedPointer", + "m_tags": { + "type": "std::string", "id": 5, - "offset": 144, - "flags": 7, + "offset": 184, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2408122274 + "pointer": false, + "hash": 1717575210 }, - "m_pTopBackgroundAlphaMask": { - "type": "class SharedPointer", + "m_dontFilterOwnedRecoItems": { + "type": "bool", "id": 6, - "offset": 160, - "flags": 7, + "offset": 216, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3440742656 + "pointer": false, + "hash": 2079281430 }, - "m_pLeftBackgroundAlphaMask": { - "type": "class SharedPointer", + "m_allowMultipleBuy": { + "type": "bool", "id": 7, - "offset": 176, - "flags": 7, + "offset": 217, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2348634648 + "pointer": false, + "hash": 831782030 }, - "m_pRightBackgroundAlphaMask": { - "type": "class SharedPointer", + "m_forceDisallowMultipleBuy": { + "type": "bool", "id": 8, - "offset": 192, - "flags": 7, + "offset": 218, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2938548331 + "pointer": false, + "hash": 19425277 }, - "m_pCenterBackgroundAlphaMask": { - "type": "class SharedPointer", + "m_isHousesCategory": { + "type": "bool", "id": 9, - "offset": 208, - "flags": 7, + "offset": 220, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3347258414 + "pointer": false, + "hash": 1982819524 }, - "m_TopLeftColor": { - "type": "class Color", + "m_isEverythingCategory": { + "type": "bool", "id": 10, - "offset": 224, - "flags": 262151, + "offset": 219, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2827413723 + "hash": 111927122 }, - "m_TopRightColor": { - "type": "class Color", + "m_isGroupElixirsCategory": { + "type": "bool", "id": 11, - "offset": 228, - "flags": 262151, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1853016654 - }, - "m_BottomLeftColor": { - "type": "class Color", - "id": 12, - "offset": 232, - "flags": 262151, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1172117245 - }, - "m_BottomRightColor": { - "type": "class Color", - "id": 13, - "offset": 236, - "flags": 262151, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3062807728 - } - } - }, - "889356694": { - "name": "class SupportedObjectReference*", - "bases": [ - "PropertyClass" - ], - "hash": 889356694, - "properties": {} - }, - "2067737670": { - "name": "class HousingObjectWandContainer", - "bases": [ - "PropertyClass" - ], - "hash": 2067737670, - "properties": { - "m_displayID": { - "type": "gid", - "id": 0, - "offset": 72, - "flags": 65543, + "offset": 221, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1022427803 + "hash": 768811642 } } }, - "2067627046": { - "name": "class ClassProjectActivity", + "1437511672": { + "name": "class CastleGamesEntry*", "bases": [ + "CastleTourTeleportInfo", "PropertyClass" ], - "hash": 2067627046, + "hash": 1437511672, "properties": { - "m_activityType": { - "type": "enum ClassProjectActivityType", + "m_houseTemplateID": { + "type": "unsigned int", "id": 0, "offset": 72, - "flags": 2097159, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1382301495, - "enum_options": { - "CPT_DefeatMob": 0, - "CPT_CatchFish": 1, - "CPT_CastTreasureCard": 2, - "CPT_DefeatPlayer": 3, - "CPT_ClaimCaptureArea": 4, - "CPT_UseInteractable": 5, - "CPT_CraftItem": 6, - "CPT_DailyQuest": 7, - "CPT_FeedPetSnack": 8, - "CPT_HelpTeam": 9, - "CPT_WinMatchBG": 10, - "CPT_LevelPolymorph": 11, - "CPT_HarvestPlant": 12, - "CPT_WinPetGame": 13, - "CPT_HatchPet": 14, - "CPT_PlayDerby": 15, - "CPT_FeedPetHappiness": 16, - "CPT_RateCastleToursHouse": 17, - "CPT_VisitCastleToursHouse": 18, - "CPT_RateOverallStitches": 19, - "CPT_RateEventStitches": 20, - "CPT_JudgesChoice": 21 - } + "hash": 2326023642 }, - "m_activityGoal": { - "type": "int", + "m_structureTemplateID": { + "type": "unsigned int", "id": 1, - "offset": 112, + "offset": 76, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 103864010 + "hash": 1037379271 }, - "m_activityValue": { - "type": "int", + "m_lotInstanceGID": { + "type": "gid", "id": 2, - "offset": 116, + "offset": 80, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1294496132 + "hash": 2010711536 }, - "m_activityLimit": { - "type": "int", + "m_structureInstanceGID": { + "type": "gid", "id": 3, - "offset": 120, + "offset": 88, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1282925126 + "hash": 2083588818 }, - "m_activityDescription": { - "type": "std::string", + "m_owningCharacterGID": { + "type": "gid", "id": 4, - "offset": 128, + "offset": 96, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3300318636 + "hash": 316234091 }, - "m_adjectiveList": { + "m_packedName": { "type": "std::string", "id": 5, - "offset": 80, + "offset": 104, "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 3195213318 - } - } - }, - "1263731318": { - "name": "class SharedPointer", - "bases": [ - "Recipe", - "CoreObject", - "PropertyClass" - ], - "hash": 1263731318, - "properties": { - "m_inactiveBehaviors": { - "type": "class SharedPointer", - "id": 0, - "offset": 224, - "flags": 31, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1850812559 - }, - "m_globalID.m_full": { - "type": "unsigned __int64", - "id": 1, - "offset": 72, - "flags": 16777247, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2312465444 - }, - "m_permID": { - "type": "unsigned __int64", - "id": 2, - "offset": 80, - "flags": 16777247, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1298909658 - }, - "m_location": { - "type": "class Vector3D", - "id": 3, - "offset": 168, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2239683611 - }, - "m_orientation": { - "type": "class Vector3D", - "id": 4, - "offset": 180, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2344058766 - }, - "m_fScale": { - "type": "float", - "id": 5, - "offset": 196, - "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 503137701 + "hash": 1805208228 }, - "m_templateID.m_full": { - "type": "unsigned __int64", + "m_gameType": { + "type": "unsigned char", "id": 6, - "offset": 96, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 633907631 - }, - "m_debugName": { - "type": "std::string", - "id": 7, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3553984419 - }, - "m_displayKey": { - "type": "std::string", - "id": 8, "offset": 136, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3023276954 - }, - "m_zoneTagID": { - "type": "unsigned int", - "id": 9, - "offset": 344, - "flags": 31, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 965291410 + "hash": 2369894028 }, - "m_speedMultiplier": { - "type": "short", - "id": 10, - "offset": 192, - "flags": 31, + "m_subGameType": { + "type": "unsigned char", + "id": 7, + "offset": 137, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 123130076 - }, - "m_nMobileID": { - "type": "unsigned short", - "id": 11, - "offset": 194, - "flags": 31, + "hash": 2559216502 + } + } + }, + "586867051": { + "name": "class MakeTargetableCinematicAction*", + "bases": [ + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 586867051, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1054318939 + "hash": 2237098605 }, - "m_recipeNameID": { - "type": "unsigned int", - "id": 12, - "offset": 384, - "flags": 63, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2168714419 + "hash": 2285866132 } } }, - "493773982": { - "name": "class CommonElementTable*", + "166224438": { + "name": "class SharedPointer", "bases": [ + "BehaviorTemplate", "PropertyClass" ], - "hash": 493773982, + "hash": 166224438, "properties": { - "m_hairColorList": { - "type": "class CharacterElement*", + "m_behaviorName": { + "type": "std::string", "id": 0, "offset": 72, "flags": 7, - "container": "Vector", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1900063063 + "pointer": false, + "hash": 3130754092 } } }, - "1262577129": { - "name": "class SavedCharacter", + "1868604343": { + "name": "class WinAnimMoveToLocationSpeedEase*", "bases": [ + "WinAnimMoveToLocationSpeed", + "WinAnimMoveToLocation", + "WindowAnimation", "PropertyClass" ], - "hash": 1262577129, + "hash": 1868604343, "properties": { - "m_hairModel": { - "type": "int", + "m_bUseDeepCopy": { + "type": "bool", "id": 0, "offset": 72, - "flags": 7, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 764326287 + "hash": 433380635 }, - "m_hairColor": { - "type": "int", + "m_targetLocation": { + "type": "class Vector3D", "id": 1, - "offset": 76, - "flags": 7, + "offset": 80, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 752476125 + "hash": 2653859938 }, - "m_skinColor": { - "type": "int", + "m_fSpeed": { + "type": "float", "id": 2, - "offset": 80, - "flags": 7, + "offset": 96, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1601202478 + "hash": 503609006 }, - "m_face": { - "type": "int", + "m_fEaseInPercent": { + "type": "float", "id": 3, - "offset": 84, - "flags": 7, + "offset": 112, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 219372329 + "hash": 1482967843 }, - "m_skinDecal2": { - "type": "int", + "m_fEaseOutPercent": { + "type": "float", "id": 4, - "offset": 88, - "flags": 7, + "offset": 116, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1324180954 + "hash": 1272154212 }, - "m_nose": { - "type": "int", + "m_fTotalDistance": { + "type": "float", "id": 5, + "offset": 120, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1894338732 + } + } + }, + "586342748": { + "name": "class SharedPointer", + "bases": [ + "DerbyEffect", + "PropertyClass" + ], + "hash": 586342748, + "properties": { + "m_buffType": { + "type": "enum DerbyTalentBuffType", + "id": 0, "offset": 92, - "flags": 7, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 219675599 + "hash": 1149251982, + "enum_options": { + "Buff": 0, + "Debuff": 1, + "Neither": 2 + } }, - "m_eyeColor": { - "type": "int", - "id": 6, + "m_kTarget": { + "type": "enum DerbyTargetType", + "id": 1, "offset": 96, - "flags": 7, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 825282748 + "hash": 1807803351, + "enum_options": { + "kTargetInFront": 0, + "kTargetBehind": 1, + "kTargetFirst": 2, + "kTargetSelf": 3, + "kTargetAll": 4, + "kTargetLast": 5 + } }, - "m_mouth": { + "m_nDuration": { "type": "int", - "id": 7, - "offset": 100, - "flags": 7, + "id": 2, + "offset": 104, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 802830055 + "hash": 1110167982 }, - "m_accessory": { - "type": "int", - "id": 8, - "offset": 104, - "flags": 7, + "m_effectID": { + "type": "unsigned int", + "id": 3, + "offset": 88, + "flags": 24, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1831652550 + "hash": 2347630439 }, - "m_faceDecal": { - "type": "int", - "id": 9, - "offset": 108, - "flags": 7, + "m_imageFilename": { + "type": "std::string", + "id": 4, + "offset": 112, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1472001474 + "hash": 2813328063 }, - "m_mouthDecal": { - "type": "int", - "id": 10, - "offset": 112, - "flags": 7, + "m_iconIndex": { + "type": "unsigned int", + "id": 5, + "offset": 144, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 993581120 + "hash": 1265133262 }, - "m_hatColor": { - "type": "int", - "id": 11, - "offset": 116, - "flags": 7, + "m_soundOnActivate": { + "type": "std::string", + "id": 6, + "offset": 152, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1635647158 + "hash": 1956929714 }, - "m_hatDecal": { - "type": "int", - "id": 12, - "offset": 120, - "flags": 7, + "m_soundOnTarget": { + "type": "std::string", + "id": 7, + "offset": 184, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1636463440 + "hash": 3444214056 }, - "m_torsoColor": { - "type": "int", - "id": 13, - "offset": 124, - "flags": 7, + "m_targetParticleEffect": { + "type": "std::string", + "id": 8, + "offset": 216, + "flags": 131103, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1443544208 + "hash": 3048234723 }, - "m_torsoDecal": { - "type": "int", - "id": 14, - "offset": 128, - "flags": 7, + "m_overheadMessage": { + "type": "std::string", + "id": 9, + "offset": 248, + "flags": 8388639, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1444360490 + "hash": 1701018190 }, - "m_feetColor": { - "type": "int", - "id": 15, - "offset": 132, - "flags": 7, + "m_requirements": { + "type": "class RequirementList", + "id": 10, + "offset": 280, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1168748445 + "hash": 2840988582 }, - "m_feetDecal": { - "type": "int", - "id": 16, - "offset": 136, - "flags": 7, + "m_costMap": { + "type": "class TerrainCheerCostMap", + "id": 11, + "offset": 376, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1169564727 + "hash": 1929931701 } } }, - "892371470": { - "name": "class AmbientSoundBehaviorTemplate*", + "586123042": { + "name": "class SharedPointer", "bases": [ - "SoundBehaviorTemplate", - "AreaBehaviorTemplate", - "BehaviorTemplate", "PropertyClass" ], - "hash": 892371470, + "hash": 586123042, "properties": { - "m_behaviorName": { - "type": "std::string", + "m_adventurePartyGID": { + "type": "gid", "id": 0, "offset": 72, "flags": 7, @@ -679610,333 +678369,172 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 3130754092 + "hash": 2003479882 }, - "m_radius": { - "type": "float", + "m_adventurePartyName": { + "type": "unsigned int", "id": 1, - "offset": 120, + "offset": 80, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 989410271 + "hash": 1899719436 }, - "m_category": { - "type": "enum AudioCategory", + "m_adventurePartyNameLocale": { + "type": "int", "id": 2, - "offset": 124, - "flags": 2097159, + "offset": 84, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2951251982, - "enum_options": { - "AudioCategory_Irrelevent": 0, - "AudioCategory_Accoustic": 1, - "AudioCategory_Noise": 2, - "AudioCategory_Music": 3, - "AudioCategory_MusicAtSFXVolume": 4, - "AudioCategory_Dialog": 5, - "AudioCategory_UI": 6, - "AudioCategory_NoiseAtMusicVolume": 7 - } + "hash": 695833705 }, - "m_exclusive": { - "type": "bool", + "m_creationDate": { + "type": "unsigned int", "id": 3, - "offset": 128, + "offset": 88, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 824383403 + "hash": 2141685120 }, - "m_active": { - "type": "bool", + "m_ownerGID": { + "type": "gid", "id": 4, - "offset": 129, + "offset": 96, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 239335471 + "hash": 1765087575 }, - "m_enableReqs": { - "type": "class SharedPointer", + "m_ownerName": { + "type": "std::string", "id": 5, - "offset": 136, - "flags": 263, + "offset": 104, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3158020443 + "pointer": false, + "hash": 1761521415 }, - "m_trackFilenameList": { - "type": "std::string", + "m_purposeType": { + "type": "int", "id": 6, - "offset": 152, + "offset": 136, "flags": 7, - "container": "Vector", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 2531081709 + "hash": 1148443466 }, - "m_playList": { - "type": "class PlayListEntry*", + "m_purposeWorldID": { + "type": "unsigned int", "id": 7, - "offset": 176, + "offset": 140, "flags": 7, - "container": "Vector", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3907873161 + "pointer": false, + "hash": 1790486832 }, - "m_priority": { - "type": "int", + "m_flags": { + "type": "unsigned int", "id": 8, - "offset": 208, + "offset": 144, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1235205852 + "hash": 1005801050 }, - "m_volume": { - "type": "float", + "m_equippedHouseInstanceGID": { + "type": "gid", "id": 9, - "offset": 200, + "offset": 152, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1162855023 + "hash": 63247330 }, - "m_loopCount": { - "type": "int", + "m_equippedInteriorInstanceGID": { + "type": "gid", "id": 10, - "offset": 204, + "offset": 160, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 865634717 + "hash": 1578260586 }, - "m_progression": { - "type": "enum PlayList::Progression", + "m_adventurePartyMemberList": { + "type": "class SharedPointer", "id": 11, - "offset": 220, - "flags": 2097159, - "container": "Static", - "dynamic": false, + "offset": 168, + "flags": 7, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 3279400238, - "enum_options": { - "Sequence": 0, - "Random": 1, - "SequenceOnceOnly": 2, - "RandomNoRepeat": 3 - } + "pointer": true, + "hash": 2861967351 }, - "m_progressMin": { - "type": "float", + "m_messageBoardList": { + "type": "class SharedPointer", "id": 12, - "offset": 212, + "offset": 184, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 1497550192 + "pointer": true, + "hash": 2175215327 }, - "m_progressMax": { - "type": "float", + "m_renameCooldownTime": { + "type": "unsigned int", "id": 13, - "offset": 216, + "offset": 200, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1497549938 + "hash": 762261177 }, - "m_audioFilterSet": { + "m_newOwnerTime": { "type": "unsigned int", "id": 14, - "offset": 224, - "flags": 33554439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 831339825 - }, - "m_animationNameFilter": { - "type": "std::string", - "id": 15, - "offset": 232, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2292854242 - }, - "m_functionallabel": { - "type": "std::string", - "id": 16, - "offset": 264, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3589331278 - } - } - }, - "493730381": { - "name": "class ReqOtherCharacterQuestCompleted", - "bases": [ - "Requirement", - "PropertyClass" - ], - "hash": 493730381, - "properties": { - "m_applyNOT": { - "type": "bool", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1746328074, - "enum_options": { - "__DEFAULT": 0 - } - }, - "m_operator": { - "type": "enum Requirement::Operator", - "id": 1, - "offset": 76, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2672792317, - "enum_options": { - "ROP_AND": 0, - "ROP_OR": 1, - "__DEFAULT": "ROP_AND" - } - }, - "m_quest": { - "type": "std::string", - "id": 2, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2305471533 - } - } - }, - "891757480": { - "name": "class UnlockTriggerBehavior", - "bases": [ - "UnlockTriggerBehaviorBase", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 891757480, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - } - } - }, - "2067737680": { - "name": "class HousingObjectWandContainer*", - "bases": [ - "PropertyClass" - ], - "hash": 2067737680, - "properties": { - "m_displayID": { - "type": "gid", - "id": 0, - "offset": 72, - "flags": 65543, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1022427803 - } - } - }, - "1262803676": { - "name": "class GardeningXPConfig", - "bases": [ - "PropertyClass" - ], - "hash": 1262803676, - "properties": { - "m_levelInfo": { - "type": "class GardeningLevelInfo*", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 3807245122 - }, - "m_maxLevel": { - "type": "unsigned char", - "id": 1, - "offset": 88, + "offset": 204, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 783962734 + "hash": 453769201 } } }, - "891569670": { - "name": "class VariableSpellEffect*", + "1022903010": { + "name": "class ShadowSpellEffect*", "bases": [ + "EffectListSpellEffect", "SpellEffect", "PropertyClass" ], - "hash": 891569670, + "hash": 1022903010, "properties": { "m_effectType": { "type": "enum SpellEffect::kSpellEffects", @@ -680360,129 +678958,84 @@ "singleton": false, "pointer": true, "hash": 707154804 - } - } - }, - "891106107": { - "name": "class ClientWizStorageBehavior", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 891106107, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_itemList": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 19, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1983655699 - }, - "m_bankLimit": { - "type": "int", - "id": 2, - "offset": 128, - "flags": 27, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1662903029 }, - "m_sharedBankLimit": { + "m_initialBacklash": { "type": "int", - "id": 3, - "offset": 132, - "flags": 27, + "id": 22, + "offset": 240, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 566146380 + "hash": 300794109 } } }, - "493802536": { - "name": "class ClientSpellCardAttachmentBehavior", + "1020474349": { + "name": "class CrownShopCategory*", "bases": [ - "SpellCardAttachmentBehavior", - "BehaviorInstance", "PropertyClass" ], - "hash": 493802536, + "hash": 1020474349, "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", + "m_name": { + "type": "std::string", "id": 0, - "offset": 104, - "flags": 39, + "offset": 72, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 + "hash": 1717359772 }, - "m_spellNames": { - "type": "std::string", + "m_ID": { + "type": "int", "id": 1, - "offset": 112, + "offset": 104, "flags": 31, - "container": "List", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 2136089135 + "hash": 2090585127 }, - "m_targetNode": { - "type": "std::string", + "m_parentTabID": { + "type": "int", "id": 2, - "offset": 128, + "offset": 108, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2698500040 + "hash": 16409672 }, - "m_offset": { - "type": "class Vector3D", + "m_description": { + "type": "std::string", "id": 3, - "offset": 160, + "offset": 112, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2445636425 + "hash": 1649374815 }, - "m_rotate": { - "type": "class Vector3D", + "m_iconResource": { + "type": "std::string", "id": 4, - "offset": 172, + "offset": 144, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2574199889 + "hash": 2838396012 }, - "m_height": { - "type": "float", + "m_tags": { + "type": "std::string", "id": 5, "offset": 184, "flags": 31, @@ -680490,606 +679043,128 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 602977104 + "hash": 1717575210 }, - "m_alpha": { - "type": "float", + "m_dontFilterOwnedRecoItems": { + "type": "bool", "id": 6, - "offset": 188, + "offset": 216, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 878686493 + "hash": 2079281430 }, - "m_cycleRate": { - "type": "float", + "m_allowMultipleBuy": { + "type": "bool", "id": 7, - "offset": 192, + "offset": 217, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 947046355 - } - } - }, - "889606066": { - "name": "class MoveBehavior::Controller", - "bases": [ - "PropertyClass" - ], - "hash": 889606066, - "properties": { - "m_bCollisionDisabled": { - "type": "bool", - "id": 0, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1732895577 + "hash": 831782030 }, - "m_bVehicleMode": { + "m_forceDisallowMultipleBuy": { "type": "bool", - "id": 1, - "offset": 121, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1597295002 - }, - "m_fForwardModifier": { - "type": "float", - "id": 2, - "offset": 124, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1173988321 - }, - "m_fBackModifier": { - "type": "float", - "id": 3, - "offset": 128, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 148042045 - }, - "m_fStrafeModifier": { - "type": "float", - "id": 4, - "offset": 132, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 226084913 - }, - "m_fTurnModifier": { - "type": "float", - "id": 5, - "offset": 136, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2134998805 - }, - "m_fAccelerationModifier": { - "type": "float", - "id": 6, - "offset": 144, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 592902742 - }, - "m_fDecelerationModifier": { - "type": "float", - "id": 7, - "offset": 148, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1770082811 - } - } - }, - "2067857413": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 2067857413, - "properties": { - "m_clientTag": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3409856790 - }, - "m_zoneName": { - "type": "std::string", - "id": 1, - "offset": 112, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2171167736 - }, - "m_zoneInstance": { - "type": "gid", - "id": 2, - "offset": 152, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 449538121 - }, - "m_originator": { - "type": "gid", - "id": 3, - "offset": 72, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 709051254 - }, - "m_index": { - "type": "int", - "id": 4, - "offset": 160, - "flags": 30, + "id": 8, + "offset": 218, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 798031442 + "hash": 19425277 }, - "m_zoneID": { - "type": "unsigned int", - "id": 5, - "offset": 144, - "flags": 16, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1440651126 - } - } - }, - "1265194563": { - "name": "class SharedPointer", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1265194563, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, + "m_isHousesCategory": { + "type": "bool", + "id": 9, + "offset": 220, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 + "hash": 1982819524 }, - "m_laneNumber": { - "type": "int", - "id": 1, - "offset": 184, + "m_isEverythingCategory": { + "type": "bool", + "id": 10, + "offset": 219, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 650028867 + "hash": 111927122 }, - "m_distanceFromStart": { - "type": "int", - "id": 2, - "offset": 188, + "m_isGroupElixirsCategory": { + "type": "bool", + "id": 11, + "offset": 221, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 649349799 + "hash": 768811642 } } }, - "2067755933": { - "name": "class ControlWidget*", + "1438839158": { + "name": "class BaseEffectCinematicAction*", "bases": [ - "Window", + "CinematicAction", "PropertyClass" ], - "hash": 2067755933, + "hash": 1438839158, "properties": { - "m_sName": { - "type": "std::string", + "m_timeOffset": { + "type": "float", "id": 0, - "offset": 80, - "flags": 135, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2306437263 + "hash": 2237098605 }, - "m_Children": { - "type": "class SharedPointer", + "m_effectRel": { + "type": "enum BaseEffectCinematicAction::kEffectRelative", "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621225959 - }, - "m_Style": { - "type": "unsigned int", - "id": 2, - "offset": 152, - "flags": 1048583, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 983582334, - "enum_options": { - "HAS_BACK": 1, - "CAN_MOVE": 4, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152, - "CAN_SIZE_HORIZONTALLY": 16777216, - "CAN_SIZE_VERTICALLY": 33554432, - "CAN_SIZE_WIDGET": 50331648 - } - }, - "m_Flags": { - "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 1048583, + "offset": 80, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 967851578, + "hash": 2978921287, "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 + "kNone": 0, + "kSigil": 1, + "kTarget": 2, + "kSource": 3, + "kActor": 4 } - }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3105139380 - }, - "m_fTargetAlpha": { - "type": "float", - "id": 5, - "offset": 212, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1809129834 - }, - "m_fDisabledAlpha": { - "type": "float", - "id": 6, - "offset": 216, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1389987675 - }, - "m_fAlpha": { - "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 482130755 - }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3623628394 - }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2102211316 - }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1846695875 - }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3389835433 - }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2547159940 - }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2587533771 - }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3091503757 - }, - "m_pWidgetBackground": { - "type": "class SharedPointer", - "id": 16, - "offset": 584, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1642222607 - }, - "m_pTopLeftCornerMaterial": { - "type": "class SharedPointer", - "id": 17, - "offset": 600, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2210830717 - }, - "m_pTopRightCornerMaterial": { - "type": "class SharedPointer", - "id": 18, - "offset": 616, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2025381456 - }, - "m_pBottomLeftCornerMaterial": { - "type": "class SharedPointer", - "id": 19, - "offset": 632, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2960442335 - }, - "m_pBottomRightCornerMaterial": { - "type": "class SharedPointer", - "id": 20, - "offset": 648, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3140244722 - }, - "m_pBottomEdgeMaterial": { - "type": "class SharedPointer", - "id": 21, - "offset": 664, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2538880672 - }, - "m_pTopEdgeMaterial": { - "type": "class SharedPointer", - "id": 22, - "offset": 680, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2522199486 - }, - "m_pLeftEdgeMaterial": { - "type": "class SharedPointer", - "id": 23, - "offset": 696, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3154051542 - }, - "m_pRightEdgeMaterial": { - "type": "class SharedPointer", - "id": 24, - "offset": 712, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2818320265 - }, - "m_pCenterMaterial": { - "type": "class SharedPointer", - "id": 25, - "offset": 728, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1519560055 - }, - "m_MaximumSize": { - "type": "class Size", - "id": 26, - "offset": 744, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1781954165 - }, - "m_MinimumSize": { - "type": "class Size", - "id": 27, - "offset": 752, - "flags": 135, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2108593523 } } }, - "1264460949": { - "name": "class SharedPointer", + "170867841": { + "name": "enum eRace", + "bases": [], + "hash": 170867841, + "properties": {} + }, + "1872099286": { + "name": "class SharedPointer", "bases": [ "BehaviorTemplate", "PropertyClass" ], - "hash": 1264460949, + "hash": 1872099286, "properties": { "m_behaviorName": { "type": "std::string", @@ -681102,8 +679177,8 @@ "pointer": false, "hash": 3130754092 }, - "m_icon": { - "type": "std::string", + "m_range": { + "type": "float", "id": 1, "offset": 120, "flags": 7, @@ -681111,765 +679186,606 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 1717182340 + "hash": 898449636 }, - "m_title": { - "type": "std::string", + "m_playerCount": { + "type": "int", "id": 2, - "offset": 152, + "offset": 124, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2308614141 + "hash": 732802992 }, - "m_promptText": { + "m_zoneList": { "type": "std::string", "id": 3, - "offset": 184, + "offset": 128, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "Vector", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 1874125698 + "hash": 2171104787 }, - "m_numberOfSlots": { - "type": "int", + "m_zoneTeleportLocation": { + "type": "std::string", "id": 4, - "offset": 216, + "offset": 152, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1235585933 + "hash": 3345769311 }, - "m_rideType": { + "m_enabledSeconds": { "type": "int", "id": 5, - "offset": 220, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1625839040 - }, - "m_riderKFM": { - "type": "std::string", - "id": 6, - "offset": 224, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 3124565263 - }, - "m_rideDuration": { - "type": "float", - "id": 7, - "offset": 240, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1239878913 - }, - "m_zOffset": { - "type": "float", - "id": 8, - "offset": 244, + "offset": 184, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 736134072 - }, - "m_newRideType": { - "type": "enum NewRideTypes", - "id": 9, - "offset": 248, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2665245566, - "enum_options": { - "NRT_UseRideType": 0, - "NRT_Chimney": 12 - } - } - } - }, - "495140145": { - "name": "class BreadCrumbBehaviorBase*", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 495140145, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_breadCrumbNumber": { - "type": "unsigned int", - "id": 1, - "offset": 112, - "flags": 65543, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2100995821 - }, - "m_equippedPetGIDList": { - "type": "gid", - "id": 2, - "offset": 120, - "flags": 65543, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1574152046 - }, - "m_equippedBreadCrumbIDList": { - "type": "unsigned short", - "id": 3, - "offset": 136, - "flags": 65543, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 592278117 - }, - "m_flags": { - "type": "unsigned int", - "id": 4, - "offset": 152, - "flags": 65543, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1005801050 + "hash": 2014197012 } } }, - "891298167": { - "name": "class std::list >", - "bases": [], - "hash": 891298167, - "properties": {} - }, - "494464105": { - "name": "class LinearSoundBehavior*", + "1017660130": { + "name": "class ShadowSpellEffect", "bases": [ - "PositionalSoundBehavior", - "SoundBehavior", - "AreaBehavior", - "BehaviorInstance", + "EffectListSpellEffect", + "SpellEffect", "PropertyClass" ], - "hash": 494464105, + "hash": 1017660130, "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", + "m_effectType": { + "type": "enum SpellEffect::kSpellEffects", "id": 0, - "offset": 104, - "flags": 39, + "offset": 72, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 + "hash": 2578255295, + "enum_options": { + "kInvalidSpellEffect": 0, + "kDamage": 1, + "kDamageNoCrit": 2, + "kHeal": 3, + "kHealPercent": 4, + "kSetHealPercent": 113, + "kStealHealth": 5, + "kReduceOverTime": 6, + "kDetonateOverTime": 7, + "kPushCharm": 8, + "kStealCharm": 9, + "kPushWard": 10, + "kStealWard": 11, + "kPushOverTime": 12, + "kStealOverTime": 13, + "kRemoveCharm": 14, + "kRemoveWard": 15, + "kRemoveOverTime": 16, + "kRemoveAura": 17, + "kSwapAll": 18, + "kSwapCharm": 19, + "kSwapWard": 20, + "kSwapOverTime": 21, + "kModifyIncomingDamage": 22, + "kModifyIncomingDamageFlat": 119, + "kMaximumIncomingDamage": 23, + "kModifyIncomingHeal": 24, + "kModifyIncomingHealFlat": 118, + "kModifyIncomingDamageType": 25, + "kModifyIncomingArmorPiercing": 26, + "kModifyOutgoingDamage": 27, + "kModifyOutgoingDamageFlat": 121, + "kModifyOutgoingHeal": 28, + "kModifyOutgoingHealFlat": 120, + "kModifyOutgoingDamageType": 29, + "kModifyOutgoingArmorPiercing": 30, + "kModifyOutgoingStealHealth": 31, + "kModifyIncomingStealHealth": 32, + "kBounceNext": 33, + "kBouncePrevious": 34, + "kBounceBack": 35, + "kBounceAll": 36, + "kAbsorbDamage": 37, + "kAbsorbHeal": 38, + "kModifyAccuracy": 39, + "kDispel": 40, + "kConfusion": 41, + "kCloakedCharm": 42, + "kCloakedWard": 43, + "kStunResist": 44, + "kClue": 111, + "kPipConversion": 45, + "kCritBoost": 46, + "kCritBlock": 47, + "kPolymorph": 48, + "kDelayCast": 49, + "kModifyCardCloak": 50, + "kModifyCardDamage": 51, + "kModifyCardAccuracy": 53, + "kModifyCardMutation": 54, + "kModifyCardRank": 55, + "kModifyCardArmorPiercing": 56, + "kSummonCreature": 65, + "kTeleportPlayer": 66, + "kStun": 67, + "kDampen": 68, + "kReshuffle": 69, + "kMindControl": 70, + "kModifyPips": 71, + "kModifyPowerPips": 72, + "kModifyShadowPips": 73, + "kModifyHate": 74, + "kDamageOverTime": 75, + "kHealOverTime": 76, + "kModifyPowerPipChance": 77, + "kModifyRank": 78, + "kStunBlock": 79, + "kRevealCloak": 80, + "kInstantKill": 81, + "kAfterlife": 82, + "kDeferredDamage": 83, + "kDamagePerTotalPipPower": 84, + "kModifyCardHeal": 52, + "kModifyCardCharm": 57, + "kModifyCardWard": 58, + "kModifyCardOutgoingDamage": 59, + "kModifyCardOutgoingAccuracy": 60, + "kModifyCardOutgoingHeal": 61, + "kModifyCardOutgoingArmorPiercing": 62, + "kModifyCardIncomingDamage": 63, + "kModifyCardAbsorbDamage": 64, + "kCloakedWardNoRemove": 86, + "kAddCombatTriggerList": 87, + "kRemoveCombatTriggerList": 88, + "kBacklashDamage": 89, + "kModifyBacklash": 90, + "kIntercept": 91, + "kShadowSelf": 92, + "kShadowCreature": 93, + "kModifyShadowCreatureLevel": 94, + "kSelectShadowCreatureAttackTarget": 95, + "kShadowDecrementTurn": 96, + "kCritBoostSchoolSpecific": 97, + "kSpawnCreature": 98, + "kUnPolymorph": 99, + "kPowerPipConversion": 100, + "kProtectCardBeneficial": 101, + "kProtectCardHarmful": 102, + "kProtectBeneficial": 103, + "kProtectHarmful": 104, + "kDivideDamage": 105, + "kCollectEssence": 106, + "kKillCreature": 107, + "kDispelBlock": 108, + "kConfusionBlock": 109, + "kModifyPipRoundRate": 110, + "kMaxHealthDamage": 112, + "kUntargetable": 114, + "kMakeTargetable": 115, + "kForceTargetable": 116, + "kRemoveStunBlock": 117, + "kExitCombat": 122, + "kSuspendPips": 123, + "kResumePips": 124, + "kAutoPass": 125, + "kStopAutoPass": 126, + "kVanish": 127, + "kStopVanish": 128, + "kMaxHealthHeal": 129, + "kHealByWard": 130, + "kTaunt": 131, + "kPacify": 132, + "kRemoveTargetRestriction": 133, + "kConvertHangingEffect": 134, + "kAddSpellToDeck": 135, + "kAddSpellToHand": 136, + "kModifyIncomingDamageOverTime": 137, + "kModifyIncomingHealOverTime": 138, + "kModifyCardDamagebyRank": 139, + "kPushConvertedCharm": 140, + "kStealConvertedCharm": 141, + "kPushConvertedWard": 142, + "kStealConvertedWard": 143, + "kPushConvertedOverTime": 144, + "kStealConvertedOverTime": 145, + "kRemoveConvertedCharm": 146, + "kRemoveConvertedWard": 147, + "kRemoveConvertedOverTime": 148, + "kModifyOverTimeDuration": 149, + "kModifySchoolPips": 150 + } }, - "m_radius": { - "type": "float", + "m_effectParam": { + "type": "int", "id": 1, - "offset": 116, - "flags": 7, + "offset": 76, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 989410271 + "hash": 357920024 }, - "m_category": { - "type": "enum AudioCategory", + "m_disposition": { + "type": "enum SpellEffect::kHangingDisposition", "id": 2, - "offset": 124, + "offset": 80, "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2951251982, + "hash": 1904841031, "enum_options": { - "AudioCategory_Irrelevent": 0, - "AudioCategory_Accoustic": 1, - "AudioCategory_Noise": 2, - "AudioCategory_Music": 3 + "kBoth": 0, + "kBeneficial": 1, + "kHarmful": 2 } }, - "m_exclusive": { - "type": "bool", + "m_sDamageType": { + "type": "std::string", "id": 3, - "offset": 128, + "offset": 88, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 824383403 + "hash": 2501054223 }, - "m_playList": { - "type": "class PlayList", + "m_damageType": { + "type": "unsigned int", "id": 4, - "offset": 176, - "flags": 7, + "offset": 84, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2061221957 + "hash": 737882766 }, - "m_volume": { - "type": "float", + "m_pipNum": { + "type": "int", "id": 5, - "offset": 304, + "offset": 128, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1162855023 + "hash": 830827539 }, - "m_loopCount": { + "m_actNum": { "type": "int", "id": 6, - "offset": 308, - "flags": 7, + "offset": 132, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 865634717 + "hash": 236824866 }, - "m_minimumFalloff": { - "type": "float", + "m_effectTarget": { + "type": "enum SpellEffect::kEffectTarget", "id": 7, - "offset": 328, - "flags": 7, + "offset": 140, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 355697197 + "hash": 2458940523, + "enum_options": { + "kInvalidTarget": 0, + "kSpell": 1, + "kSpecificSpells": 2, + "kGlobal": 3, + "kEnemyTeam": 4, + "kEnemyTeamAllAtOnce": 5, + "kFriendlyTeam": 6, + "kFriendlyTeamAllAtOnce": 7, + "kEnemySingle": 8, + "kFriendlySingle": 9, + "kMinion": 10, + "kFriendlyMinion": 17, + "kEnemyMinion": 18, + "kSelf": 11, + "kAtLeastOneEnemy": 13, + "kPreselectedEnemySingle": 12, + "kMultiTargetEnemy": 14, + "kMultiTargetFriendly": 15, + "kFriendlySingleNotMe": 16 + } }, - "m_maximumFalloff": { - "type": "float", + "m_numRounds": { + "type": "int", "id": 8, - "offset": 332, - "flags": 7, + "offset": 144, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2210192367 + "hash": 1229753829 }, - "m_animDriven": { - "type": "bool", + "m_paramPerRound": { + "type": "int", "id": 9, - "offset": 392, - "flags": 7, + "offset": 148, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 398394720 + "hash": 683234234 }, - "m_inverted": { - "type": "bool", + "m_healModifier": { + "type": "float", "id": 10, - "offset": 397, + "offset": 152, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1034821044 + "hash": 1317921248, + "enum_options": { + "__DEFAULT": "1.0" + } }, - "m_fRangeScale": { - "type": "float", + "m_spellTemplateID": { + "type": "unsigned int", "id": 11, - "offset": 512, - "flags": 7, + "offset": 120, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1749294034 + "hash": 585567702 }, - "m_fAttenuationFactor": { - "type": "float", + "m_enchantmentSpellTemplateID": { + "type": "unsigned int", "id": 12, - "offset": 516, - "flags": 7, + "offset": 124, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 273292776 + "hash": 246955115 }, - "m_eAttenuationType": { - "type": "enum PositionInfoAttenuationType", + "m_act": { + "type": "bool", "id": 13, - "offset": 520, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2427193304, - "enum_options": { - "Standard": 0, - "Unit Range Power": 1 - } - }, - "m_vPositions": { - "type": "class Vector3D", - "id": 14, - "offset": 528, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 3599600160 - } - } - }, - "1265119342": { - "name": "class std::list >", - "bases": [], - "hash": 1265119342, - "properties": {} - }, - "2068272439": { - "name": "class SharedPointer", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 2068272439, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, + "offset": 136, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3130754092 - } - } - }, - "494018424": { - "name": "class ReqHealthPercent", - "bases": [ - "ReqNumeric", - "Requirement", - "PropertyClass" - ], - "hash": 494018424, - "properties": { - "m_applyNOT": { - "type": "bool", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1746328074, - "enum_options": { - "__DEFAULT": 0 - } - }, - "m_operator": { - "type": "enum Requirement::Operator", - "id": 1, - "offset": 76, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2672792317, - "enum_options": { - "ROP_AND": 0, - "ROP_OR": 1, - "__DEFAULT": "ROP_AND" - } + "hash": 269510283 }, - "m_numericValue": { - "type": "float", - "id": 2, - "offset": 80, + "m_cloaked": { + "type": "bool", + "id": 14, + "offset": 157, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 521915239 + "hash": 7349510 }, - "m_operatorType": { - "type": "enum ReqNumeric::OPERATOR_TYPE", - "id": 3, - "offset": 84, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2228122961, - "enum_options": { - "OPERATOR_UNKNOWN": 4294967295, - "OPERATOR_EQUALS": 0, - "OPERATOR_GREATER_THAN": 1, - "OPERATOR_LESS_THAN": 2, - "OPERATOR_GREATER_THAN_EQ": 3, - "OPERATOR_LESS_THAN_EQ": 4 - } - } - } - }, - "2068207453": { - "name": "class std::list >", - "bases": [], - "hash": 2068207453, - "properties": {} - }, - "493920120": { - "name": "class ReqHealthPercent*", - "bases": [ - "ReqNumeric", - "Requirement", - "PropertyClass" - ], - "hash": 493920120, - "properties": { - "m_applyNOT": { + "m_bypassProtection": { "type": "bool", - "id": 0, - "offset": 72, + "id": 15, + "offset": 159, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1746328074, - "enum_options": { - "__DEFAULT": 0 - } - }, - "m_operator": { - "type": "enum Requirement::Operator", - "id": 1, - "offset": 76, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2672792317, - "enum_options": { - "ROP_AND": 0, - "ROP_OR": 1, - "__DEFAULT": "ROP_AND" - } + "hash": 1657138252 }, - "m_numericValue": { - "type": "float", - "id": 2, - "offset": 80, + "m_armorPiercingParam": { + "type": "int", + "id": 16, + "offset": 160, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 521915239 + "hash": 2025530205 }, - "m_operatorType": { - "type": "enum ReqNumeric::OPERATOR_TYPE", - "id": 3, - "offset": 84, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2228122961, - "enum_options": { - "OPERATOR_UNKNOWN": 4294967295, - "OPERATOR_EQUALS": 0, - "OPERATOR_GREATER_THAN": 1, - "OPERATOR_LESS_THAN": 2, - "OPERATOR_GREATER_THAN_EQ": 3, - "OPERATOR_LESS_THAN_EQ": 4 - } - } - } - }, - "891592863": { - "name": "class AuctionHouseOption", - "bases": [ - "ServiceOptionBase", - "PropertyClass" - ], - "hash": 891592863, - "properties": { - "m_serviceName": { - "type": "std::string", - "id": 0, - "offset": 72, + "m_chancePerTarget": { + "type": "int", + "id": 17, + "offset": 164, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2206028813 + "hash": 845426794 }, - "m_iconKey": { - "type": "std::string", - "id": 1, + "m_protected": { + "type": "bool", + "id": 18, "offset": 168, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2457138637 - }, - "m_displayKey": { - "type": "std::string", - "id": 2, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3023276954 - }, - "m_serviceIndex": { - "type": "unsigned int", - "id": 3, - "offset": 204, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2103126710 + "hash": 1445655037 }, - "m_forceInteract": { + "m_converted": { "type": "bool", - "id": 4, - "offset": 200, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1705789564 - }, - "m_auctionHousePurchaseKey": { - "type": "unsigned int", - "id": 5, - "offset": 216, + "id": 19, + "offset": 169, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 394777768 + "hash": 1590428797 }, - "m_sellModifier": { - "type": "float", - "id": 6, - "offset": 220, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 360128886 - } - } - }, - "2068021638": { - "name": "class ReqIsLimitExpandBackpackElixirs", - "bases": [ - "Requirement", - "PropertyClass" - ], - "hash": 2068021638, - "properties": { - "m_applyNOT": { - "type": "bool", - "id": 0, - "offset": 72, - "flags": 31, + "m_rank": { + "type": "int", + "id": 20, + "offset": 208, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1746328074, - "enum_options": { - "__DEFAULT": 0 - } + "hash": 219803942 }, - "m_operator": { - "type": "enum Requirement::Operator", - "id": 1, - "offset": 76, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2672792317, - "enum_options": { - "ROP_AND": 0, - "ROP_OR": 1, - "__DEFAULT": "ROP_AND" - } - } - } - }, - "1265210285": { - "name": "class SG_GameActionClient_DestroyBlock", - "bases": [ - "SG_GameAction_DestroyBlock", - "SG_GameAction", - "PropertyClass" - ], - "hash": 1265210285, - "properties": { - "m_target": { - "type": "enum SG_GameAction::SG_Target", - "id": 0, - "offset": 72, - "flags": 2097159, + "m_effectList": { + "type": "class SharedPointer", + "id": 21, + "offset": 224, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 707154804 + }, + "m_initialBacklash": { + "type": "int", + "id": 22, + "offset": 240, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1166870973, - "enum_options": { - "Target_Ball": 0, - "Target_Self": 1, - "Target_Connections": 2, - "__DEFAULT": "Target_Ball" - } + "hash": 300794109 } } }, - "494069982": { - "name": "class SharedPointer", + "1438141282": { + "name": "class WizardVisibilityBehavior", "bases": [ - "AttachEffectToTurnIndicatorCinematicAction", - "CinematicAction", + "ClientVisibilityBehavior", + "VisibilityBehavior", + "BehaviorInstance", "PropertyClass" ], - "hash": 494069982, + "hash": 1438141282, "properties": { - "m_timeOffset": { - "type": "float", + "m_behaviorTemplateNameID": { + "type": "unsigned int", "id": 0, - "offset": 72, - "flags": 7, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 + "hash": 223437287 }, - "m_minDuration": { - "type": "float", + "m_showTo": { + "type": "gid", "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, + "offset": 112, + "flags": 31, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 1733171553 + "hash": 947039004 }, - "m_assetName": { - "type": "std::string", + "m_hideFrom": { + "type": "gid", "id": 2, - "offset": 88, - "flags": 7, + "offset": 128, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 642644390 + }, + "m_visible": { + "type": "bool", + "id": 3, + "offset": 144, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1513131580 + "hash": 810536225 } } }, - "891758248": { - "name": "class UnlockTriggerBehavior*", + "168599759": { + "name": "class SharedPointer", "bases": [ - "UnlockTriggerBehaviorBase", - "BehaviorInstance", "PropertyClass" ], - "hash": 891758248, + "hash": 168599759, "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", + "m_templateID": { + "type": "int", "id": 0, - "offset": 104, - "flags": 39, + "offset": 72, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 + "hash": 1075344419 + }, + "m_rank": { + "type": "int", + "id": 1, + "offset": 76, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 219803942 + }, + "m_secondaryRank": { + "type": "int", + "id": 2, + "offset": 80, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2066929134 } } }, - "1269621820": { - "name": "class ClientStopComplexSoundCinematicAction*", + "1870791979": { + "name": "class SharedPointer", "bases": [ - "StopComplexSoundCinematicAction", + "AttachParticleActorCinematicAction", + "ActorCinematicAction", "CinematicAction", "PropertyClass" ], - "hash": 1269621820, + "hash": 1870791979, "properties": { "m_timeOffset": { "type": "float", @@ -681882,7 +679798,7 @@ "pointer": false, "hash": 2237098605 }, - "m_sound": { + "m_actor": { "type": "std::string", "id": 1, "offset": 80, @@ -681891,303 +679807,257 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 2307644996 + "hash": 2285866132 }, - "m_stopAllLoopingSounds": { - "type": "bool", + "m_effectName": { + "type": "std::string", "id": 2, - "offset": 112, + "offset": 120, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1944220294 + "hash": 2029161513 }, - "m_fadeDuration": { - "type": "float", + "m_nodeName": { + "type": "std::string", "id": 3, - "offset": 116, + "offset": 152, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1402536557 + "hash": 3607089954 + }, + "m_assetName": { + "type": "std::string", + "id": 4, + "offset": 184, + "flags": 131079, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1513131580 } } }, - "2068870378": { - "name": "class BadgeBehavior", + "586576885": { + "name": "class CombatCheatSettings*", "bases": [ - "BaseBadgeBehavior", - "BehaviorInstance", "PropertyClass" ], - "hash": 2068870378, + "hash": 586576885, "properties": { - "m_behaviorTemplateNameID": { + "m_settings": { "type": "unsigned int", "id": 0, - "offset": 104, - "flags": 39, + "offset": 72, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 + "hash": 1279804446 }, - "m_badgeData": { - "type": "std::string", + "m_maycastChance": { + "type": "float", "id": 1, - "offset": 160, - "flags": 575, + "offset": 76, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3002588904 + "hash": 1532158347 } } }, - "1267611131": { - "name": "class UserAnimationEvent*", + "1017280399": { + "name": "class BracketReportInfo", "bases": [ "PropertyClass" ], - "hash": 1267611131, + "hash": 1017280399, "properties": { - "m_animationName": { - "type": "std::string", + "m_scheduleID": { + "type": "gid", "id": 0, "offset": 72, - "flags": 7, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3393414044 + "hash": 1439120946 }, - "m_time": { - "type": "float", + "m_bracketID": { + "type": "gid", "id": 1, - "offset": 104, - "flags": 7, + "offset": 80, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 310085638 + "hash": 441272961 }, - "m_actionType": { - "type": "std::string", + "m_bracketState": { + "type": "unsigned int", "id": 2, - "offset": 112, - "flags": 7, + "offset": 88, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3328872763 + "hash": 790945386 }, - "m_surfaceType": { - "type": "std::string", + "m_creationTime": { + "type": "int", "id": 3, - "offset": 144, - "flags": 7, + "offset": 92, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2553995974 - } - } - }, - "494690982": { - "name": "class PvPLeagueTemplate", - "bases": [ - "PropertyClass" - ], - "hash": 494690982, - "properties": { - "m_leagueType": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 7, + "hash": 1930866142 + }, + "m_registrationOpenTime": { + "type": "int", + "id": 4, + "offset": 96, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3327951024 + "hash": 313608566 }, - "m_mainDoodle": { - "type": "std::string", - "id": 1, - "offset": 112, - "flags": 7, + "m_matchStartTime": { + "type": "int", + "id": 5, + "offset": 100, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2211594423 + "hash": 1241735780 }, - "m_leagueDescription": { - "type": "std::string", - "id": 2, - "offset": 144, - "flags": 8388615, + "m_tournamentNameID": { + "type": "unsigned int", + "id": 6, + "offset": 104, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3204126290 + "hash": 1799846440 }, - "m_leagueName": { - "type": "std::string", - "id": 3, - "offset": 176, - "flags": 8388615, + "m_tournamentDuration": { + "type": "unsigned int", + "id": 7, + "offset": 108, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3327709167 + "hash": 475739392 }, - "m_age": { + "m_minLevel": { "type": "int", - "id": 4, - "offset": 208, - "flags": 7, + "id": 8, + "offset": 112, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 267029223 + "hash": 1496818518 }, - "m_retired": { - "type": "bool", - "id": 5, - "offset": 212, - "flags": 7, + "m_maxLevel": { + "type": "int", + "id": 9, + "offset": 116, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1931776834 + "hash": 146363288 }, - "m_gracePeriodDays": { - "type": "int", - "id": 6, - "offset": 216, - "flags": 7, + "m_overrideTourneyName": { + "type": "std::string", + "id": 10, + "offset": 120, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1128520496 + "hash": 2611946162 }, - "m_requirementsList": { - "type": "class SharedPointer", - "id": 7, - "offset": 224, - "flags": 7, + "m_firstTourneyNameSTKey": { + "type": "std::string", + "id": 11, + "offset": 152, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1999017945 - }, - "m_seasonList": { - "type": "std::string", - "id": 8, - "offset": 240, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, "pointer": false, - "hash": 1895863232 + "hash": 2731391050 }, - "m_duelModifiers": { + "m_secondTourneyNameSTKey": { "type": "std::string", - "id": 9, - "offset": 256, - "flags": 7, - "container": "List", - "dynamic": true, + "id": 12, + "offset": 184, + "flags": 31, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 2938413959 + "hash": 1747016318 } } }, - "1266137399": { - "name": "class ClientToggleInterfaceControlCinematicAction", + "1438023807": { + "name": "class AddTeamUpdate*", "bases": [ - "ToggleInterfaceControlCinematicAction", - "CinematicAction", + "TournamentUpdate", "PropertyClass" ], - "hash": 1266137399, + "hash": 1438023807, "properties": { - "m_timeOffset": { - "type": "float", + "m_team": { + "type": "class SharedPointer", "id": 0, "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_maximumDurationInSeconds": { - "type": "float", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1457214913 - }, - "m_hideUI": { - "type": "bool", - "id": 2, - "offset": 84, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 519818283 - }, - "m_stopMovement": { - "type": "bool", - "id": 3, - "offset": 85, - "flags": 7, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1752496036 + "pointer": true, + "hash": 1393503221 } } }, - "893103160": { - "name": "class SharedPointer", + "168039988": { + "name": "class SummonCinematicStageTemplate*", "bases": [ - "ActorCinematicAction", - "CinematicAction", + "CinematicStageTemplate", "PropertyClass" ], - "hash": 893103160, + "hash": 168039988, "properties": { - "m_timeOffset": { - "type": "float", + "m_name": { + "type": "std::string", "id": 0, "offset": 72, "flags": 7, @@ -682195,337 +680065,370 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 + "hash": 1717359772 }, - "m_actor": { - "type": "std::string", + "m_duration": { + "type": "float", "id": 1, - "offset": 80, + "offset": 104, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2285866132 + "hash": 920323453 }, - "m_sActorPrefix": { - "type": "std::string", + "m_actions": { + "type": "class SharedPointer", "id": 2, - "offset": 120, + "offset": 112, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 3246317205 + "pointer": true, + "hash": 1380578687 }, - "m_fPerPipDelay": { - "type": "float", + "m_stageRelationships": { + "type": "class SharedPointer", "id": 3, - "offset": 152, + "offset": 128, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 1466507836 + "pointer": true, + "hash": 499983354 }, - "m_fRate": { - "type": "float", + "m_summon": { + "type": "std::string", "id": 4, - "offset": 156, - "flags": 7, + "offset": 152, + "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 883665801 - } - } - }, - "1265912287": { - "name": "class FriendsListWindow", - "bases": [ - "Window", - "PropertyClass" - ], - "hash": 1265912287, - "properties": { - "m_sName": { + "hash": 2460090138 + }, + "m_cameras": { "type": "std::string", - "id": 0, - "offset": 80, - "flags": 135, - "container": "Static", - "dynamic": false, + "id": 5, + "offset": 184, + "flags": 131079, + "container": "Vector", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 2306437263 + "hash": 3217341687 }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 65671, + "m_altcameras": { + "type": "std::string", + "id": 6, + "offset": 208, + "flags": 131079, "container": "Vector", "dynamic": true, "singleton": false, - "pointer": true, - "hash": 2621225959 + "pointer": false, + "hash": 1882980152 }, - "m_Style": { - "type": "unsigned int", - "id": 2, - "offset": 152, - "flags": 1048583, + "m_camRel": { + "type": "enum CameraCutCinematicAction::kCameraRelative", + "id": 7, + "offset": 232, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 983582334, + "hash": 919962138, "enum_options": { - "HAS_BACK": 1, - "SCALE_CHILDREN": 2, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "FOCUS_LOCKED": 64, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152 + "kSigil": 1, + "kTarget": 2, + "kSource": 3, + "kActor": 4, + "__DEFAULT": "kTarget" } }, - "m_Flags": { - "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 1048583, + "m_sound": { + "type": "std::string", + "id": 8, + "offset": 280, + "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 967851578, - "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 - } + "hash": 2307644996 }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, - "flags": 135, + "m_interpDuration": { + "type": "float", + "id": 9, + "offset": 312, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3105139380 + "hash": 2237711951, + "enum_options": { + "__DEFAULT": "0.0" + } }, - "m_fTargetAlpha": { - "type": "float", - "id": 5, - "offset": 212, - "flags": 135, + "m_summonAnim": { + "type": "std::string", + "id": 10, + "offset": 240, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1809129834 + "hash": 2113551775, + "enum_options": { + "__DEFAULT": "Summon" + } }, - "m_fDisabledAlpha": { - "type": "float", - "id": 6, - "offset": 216, - "flags": 135, + "m_returnToIdle": { + "type": "bool", + "id": 11, + "offset": 272, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1389987675 + "hash": 1267817300 }, - "m_fAlpha": { - "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, + "m_createOrientation": { + "type": "enum CreateActorCinematicAction::kCreateOrientation", + "id": 12, + "offset": 316, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 482130755 + "hash": 3562324429, + "enum_options": { + "kFaceTarget": 0, + "kFaceSource": 1, + "kSigil": 2, + "kTarget": 3, + "kSource": 4, + "kSigilRight": 5, + "kSigilLeft": 6, + "kFaceTargetTeam": 7, + "__DEFAULT": "kFaceTarget" + } }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, + "m_hidePolymorphFloatyText": { + "type": "bool", + "id": 13, + "offset": 320, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3623628394 - }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, + "pointer": false, + "hash": 942475883 + } + } + }, + "1868832469": { + "name": "class SetTopTeamCinematicAction", + "bases": [ + "CinematicAction", + "PropertyClass" + ], + "hash": 1868832469, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2102211316 + "hash": 2237098605 }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, + "m_interpDuration": { + "type": "float", + "id": 1, + "offset": 80, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1846695875 - }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, + "hash": 2237711951 + } + } + }, + "1016460052": { + "name": "enum DerbyTargetType", + "bases": [], + "hash": 1016460052, + "properties": {} + }, + "167494729": { + "name": "class Ingredient", + "bases": [ + "PropertyClass" + ], + "hash": 167494729, + "properties": { + "m_itemID": { + "type": "gid", + "id": 0, + "offset": 80, + "flags": 33554439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3389835433 + "hash": 569545460 }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, + "m_adjective": { + "type": "std::string", + "id": 1, + "offset": 88, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2547159940 + "hash": 3429518154 }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, + "m_quantity": { + "type": "int", + "id": 2, + "offset": 120, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1513510520 + "hash": 169215289 }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, + "m_spellTemplate": { + "type": "std::string", + "id": 3, + "offset": 128, + "flags": 268435463, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 2587533771 + "hash": 1746600759, + "enum_options": { + "__BASECLASS": "SpellTemplate" + } }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, + "m_ingredientType": { + "type": "enum Ingredient::INGREDIENT_TYPE", + "id": 4, + "offset": 72, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3091503757 + "hash": 3347167757, + "enum_options": { + "INGREDIENT_REAGENT": 0, + "INGREDIENT_TREASURE": 1, + "INGREDIENT_ITEM": 2, + "INGREDIENT_FISH": 3, + "INGREDIENT_PET_SNACK": 4 + } } } }, - "892480983": { - "name": "class EquipmentBehaviorTemplate", + "586649239": { + "name": "class ReqGoldBagPercent*", "bases": [ - "BehaviorTemplate", + "ReqNumeric", + "Requirement", "PropertyClass" ], - "hash": 892480983, + "hash": 586649239, "properties": { - "m_behaviorName": { - "type": "std::string", + "m_applyNOT": { + "type": "bool", "id": 0, "offset": 72, - "flags": 7, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3130754092 + "hash": 1746328074, + "enum_options": { + "__DEFAULT": 0 + } }, - "m_itemList": { - "type": "unsigned int", + "m_operator": { + "type": "enum Requirement::Operator", "id": 1, - "offset": 120, - "flags": 33554439, - "container": "List", - "dynamic": true, + "offset": 76, + "flags": 2097183, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 1892907768 + "hash": 2672792317, + "enum_options": { + "ROP_AND": 0, + "ROP_OR": 1, + "__DEFAULT": "ROP_AND" + } }, - "m_equipmentTemplate": { - "type": "std::string", + "m_numericValue": { + "type": "float", "id": 2, - "offset": 152, - "flags": 7, + "offset": 80, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2464606287 + "hash": 521915239 }, - "m_infoList": { - "type": "class SharedPointer", + "m_operatorType": { + "type": "enum ReqNumeric::OPERATOR_TYPE", "id": 3, - "offset": 136, - "flags": 7, - "container": "List", - "dynamic": true, + "offset": 84, + "flags": 2097183, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1525681909 + "pointer": false, + "hash": 2228122961, + "enum_options": { + "OPERATOR_UNKNOWN": 4294967295, + "OPERATOR_EQUALS": 0, + "OPERATOR_GREATER_THAN": 1, + "OPERATOR_LESS_THAN": 2, + "OPERATOR_GREATER_THAN_EQ": 3, + "OPERATOR_LESS_THAN_EQ": 4 + } } } }, - "2074326083": { - "name": "class ServiceOptionBase*", + "1015706531": { + "name": "class CantripsMajorInvisibilityEffectInfo*", "bases": [ + "CantripsInvisibilityEffectInfo", + "GameEffectInfo", "PropertyClass" ], - "hash": 2074326083, + "hash": 1015706531, "properties": { - "m_serviceName": { + "m_effectName": { "type": "std::string", "id": 0, "offset": 72, @@ -682534,952 +680437,765 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 2206028813 - }, - "m_iconKey": { - "type": "std::string", - "id": 1, - "offset": 168, - "flags": 31, + "hash": 2029161513 + } + } + }, + "167232825": { + "name": "class ClientActorRenameCinematicAction", + "bases": [ + "ActorRenameCinematicAction", + "ActorCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 167232825, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2457138637 + "hash": 2237098605 }, - "m_displayKey": { + "m_actor": { "type": "std::string", - "id": 2, - "offset": 104, - "flags": 31, + "id": 1, + "offset": 80, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3023276954 + "hash": 2285866132 }, - "m_serviceIndex": { - "type": "unsigned int", - "id": 3, - "offset": 204, - "flags": 31, + "m_newNamePattern": { + "type": "std::string", + "id": 2, + "offset": 120, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2103126710 + "hash": 1519245892 }, - "m_forceInteract": { + "m_bActOnlyOnFirstActor": { "type": "bool", - "id": 4, - "offset": 200, - "flags": 31, + "id": 3, + "offset": 152, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1705789564 + "hash": 2050856077 } } }, - "892381710": { - "name": "class AmbientSoundBehaviorTemplate", + "1015536062": { + "name": "class TieredSpellTemplate", "bases": [ - "SoundBehaviorTemplate", - "AreaBehaviorTemplate", - "BehaviorTemplate", + "SpellTemplate", + "CoreTemplate", "PropertyClass" ], - "hash": 892381710, + "hash": 1015536062, "properties": { - "m_behaviorName": { - "type": "std::string", + "m_behaviors": { + "type": "class BehaviorTemplate*", "id": 0, "offset": 72, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "Vector", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 3130754092 + "pointer": true, + "hash": 1197808594 }, - "m_radius": { - "type": "float", + "m_name": { + "type": "std::string", "id": 1, - "offset": 120, + "offset": 96, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 989410271 + "hash": 1717359772 }, - "m_category": { - "type": "enum AudioCategory", + "m_description": { + "type": "std::string", "id": 2, - "offset": 124, - "flags": 2097159, + "offset": 168, + "flags": 8388615, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2951251982, - "enum_options": { - "AudioCategory_Irrelevent": 0, - "AudioCategory_Accoustic": 1, - "AudioCategory_Noise": 2, - "AudioCategory_Music": 3, - "AudioCategory_MusicAtSFXVolume": 4, - "AudioCategory_Dialog": 5, - "AudioCategory_UI": 6, - "AudioCategory_NoiseAtMusicVolume": 7 - } + "hash": 1649374815 }, - "m_exclusive": { - "type": "bool", + "m_advancedDescription": { + "type": "std::string", "id": 3, - "offset": 128, - "flags": 7, + "offset": 200, + "flags": 8388615, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 824383403 + "hash": 3465713013 }, - "m_active": { - "type": "bool", + "m_displayName": { + "type": "std::string", "id": 4, - "offset": 129, - "flags": 7, + "offset": 136, + "flags": 8388615, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 239335471 + "hash": 2446900370 }, - "m_enableReqs": { - "type": "class SharedPointer", + "m_spellBase": { + "type": "std::string", "id": 5, - "offset": 136, - "flags": 263, + "offset": 248, + "flags": 268435463, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3158020443 + "pointer": false, + "hash": 2688054198, + "enum_options": { + "__BASECLASS": "CinematicTemplate" + } }, - "m_trackFilenameList": { - "type": "std::string", + "m_effects": { + "type": "class SharedPointer", "id": 6, - "offset": 152, + "offset": 280, "flags": 7, "container": "Vector", "dynamic": true, "singleton": false, - "pointer": false, - "hash": 2531081709 + "pointer": true, + "hash": 370726379 }, - "m_playList": { - "type": "class PlayListEntry*", + "m_sMagicSchoolName": { + "type": "std::string", "id": 7, - "offset": 176, + "offset": 312, "flags": 7, - "container": "Vector", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3907873161 + "pointer": false, + "hash": 2035693400 }, - "m_priority": { - "type": "int", + "m_sTypeName": { + "type": "std::string", "id": 8, - "offset": 208, + "offset": 352, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1235205852 + "hash": 3580785905 }, - "m_volume": { - "type": "float", + "m_trainingCost": { + "type": "int", "id": 9, - "offset": 200, + "offset": 384, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1162855023 + "hash": 982588239 }, - "m_loopCount": { + "m_accuracy": { "type": "int", "id": 10, - "offset": 204, + "offset": 388, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 865634717 + "hash": 1636315493 }, - "m_progression": { - "type": "enum PlayList::Progression", + "m_baseCost": { + "type": "int", "id": 11, - "offset": 220, - "flags": 2097159, + "offset": 232, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3279400238, - "enum_options": { - "Sequence": 0, - "Random": 1, - "SequenceOnceOnly": 2, - "RandomNoRepeat": 3 - } + "hash": 1475151502 }, - "m_progressMin": { - "type": "float", + "m_creditsCost": { + "type": "int", "id": 12, - "offset": 212, + "offset": 236, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1497550192 + "hash": 715313825 }, - "m_progressMax": { - "type": "float", + "m_pvpCurrencyCost": { + "type": "int", "id": 13, - "offset": 216, + "offset": 240, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1497549938 + "hash": 645595444 }, - "m_audioFilterSet": { - "type": "unsigned int", + "m_pvpTourneyCurrencyCost": { + "type": "int", "id": 14, - "offset": 224, - "flags": 33554439, + "offset": 244, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 831339825 + "hash": 517874954 }, - "m_animationNameFilter": { + "m_boosterPackIcon": { "type": "std::string", "id": 15, - "offset": 232, - "flags": 7, + "offset": 496, + "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2292854242 + "hash": 3428653697 }, - "m_functionallabel": { - "type": "std::string", + "m_validTargetSpells": { + "type": "unsigned int", "id": 16, - "offset": 264, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3589331278 - } - } - }, - "2071241709": { - "name": "class EquipmentTemplate*", - "bases": [ - "CoreTemplate", - "PropertyClass" - ], - "hash": 2071241709, - "properties": { - "m_behaviors": { - "type": "class BehaviorTemplate*", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1197808594 - }, - "m_baseSlots": { - "type": "class EquipSlot*", - "id": 1, - "offset": 136, + "offset": 392, "flags": 7, "container": "List", "dynamic": true, "singleton": false, - "pointer": true, - "hash": 3098501161 + "pointer": false, + "hash": 2355782967 }, - "m_equipmentName": { - "type": "std::string", - "id": 2, - "offset": 96, + "m_PvP": { + "type": "bool", + "id": 17, + "offset": 408, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1920213140 - } - } - }, - "495164721": { - "name": "class BreadCrumbBehaviorBase", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 495164721, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, + "hash": 269492361 + }, + "m_PvE": { + "type": "bool", + "id": 18, + "offset": 409, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 + "hash": 269492350 }, - "m_breadCrumbNumber": { - "type": "unsigned int", - "id": 1, - "offset": 112, - "flags": 65543, + "m_noPvPEnchant": { + "type": "bool", + "id": 19, + "offset": 410, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2100995821 - }, - "m_equippedPetGIDList": { - "type": "gid", - "id": 2, - "offset": 120, - "flags": 65543, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1574152046 + "hash": 661581703 }, - "m_equippedBreadCrumbIDList": { - "type": "unsigned short", - "id": 3, - "offset": 136, - "flags": 65543, - "container": "List", - "dynamic": true, + "m_noPvEEnchant": { + "type": "bool", + "id": 20, + "offset": 411, + "flags": 7, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 592278117 + "hash": 10144220 }, - "m_flags": { - "type": "unsigned int", - "id": 4, - "offset": 152, - "flags": 65543, + "m_battlegroundsOnly": { + "type": "bool", + "id": 21, + "offset": 412, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1005801050 - } - } - }, - "2070320662": { - "name": "class SharedPointer", - "bases": [ - "Result", - "PropertyClass" - ], - "hash": 2070320662, - "properties": { - "m_maximumPurchasedCharacterSlots": { - "type": "int", - "id": 0, - "offset": 72, + "hash": 1244782419 + }, + "m_Treasure": { + "type": "bool", + "id": 22, + "offset": 413, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 57745273 - } - } - }, - "1267435102": { - "name": "enum ZTDisplayMode", - "bases": [], - "hash": 1267435102, - "properties": {} - }, - "2069980869": { - "name": "class LeaderboardUpdateFriendsList*", - "bases": [ - "PropertyClass" - ], - "hash": 2069980869, - "properties": { - "m_leaderboardFriendsList": { - "type": "gid", - "id": 0, - "offset": 72, + "hash": 1749096414 + }, + "m_noDiscard": { + "type": "bool", + "id": 23, + "offset": 414, "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 142730388 - } - } - }, - "496042949": { - "name": "class MountItemBehavior", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 496042949, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 + "hash": 565749226 }, - "m_housingMountOriginalGID": { - "type": "gid", - "id": 1, - "offset": 112, - "flags": 65536, + "m_leavesPlayWhenCast": { + "type": "bool", + "id": 24, + "offset": 532, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1220139473 + "hash": 698216294 }, - "m_housingPetPrimaryColor": { + "m_imageIndex": { "type": "int", - "id": 2, - "offset": 120, - "flags": 65536, + "id": 25, + "offset": 416, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 525135139 + "hash": 1570500405 }, - "m_housingPetPattern": { - "type": "int", - "id": 3, - "offset": 124, - "flags": 65536, + "m_imageName": { + "type": "std::string", + "id": 26, + "offset": 424, + "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 165011646 + "hash": 2391520543 }, - "m_housingPetSecondaryColor": { - "type": "int", - "id": 4, - "offset": 128, - "flags": 65536, + "m_cloaked": { + "type": "bool", + "id": 27, + "offset": 489, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 358656263 - } - } - }, - "1266453463": { - "name": "class MonsterArenaBehaviorBase", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1266453463, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, + "hash": 7349510 + }, + "m_casterInvisible": { + "type": "bool", + "id": 28, + "offset": 490, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 + "hash": 310214650 }, - "m_mobList": { - "type": "unsigned int", - "id": 1, - "offset": 112, - "flags": 65543, + "m_adjectives": { + "type": "std::string", + "id": 29, + "offset": 576, + "flags": 7, "container": "List", "dynamic": true, "singleton": false, "pointer": false, - "hash": 347281415 + "hash": 2967855037 }, - "m_zoneGID": { - "type": "gid", - "id": 2, - "offset": 128, - "flags": 65543, + "m_spellSourceType": { + "type": "enum SpellTemplate::kSpellSourceType", + "id": 30, + "offset": 528, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1907651624 - } - } - }, - "892780504": { - "name": "class CinematicInteractInfo*", - "bases": [ - "PropertyClass" - ], - "hash": 892780504, - "properties": { - "m_actorState": { + "hash": 156272727, + "enum_options": { + "kCaster": 0, + "kPet": 1, + "kShadowCreature": 2, + "kWeapon": 3, + "kEquipment": 4 + } + }, + "m_cloakedName": { "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, + "id": 31, + "offset": 536, + "flags": 268435463, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2574256277 + "hash": 2846679215, + "enum_options": { + "__BASECLASS": "SpellTemplate" + } }, - "m_playerCinematicState": { - "type": "std::string", - "id": 1, - "offset": 104, + "m_purchaseRequirements": { + "type": "class RequirementList*", + "id": 32, + "offset": 608, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 3255674198 + "pointer": true, + "hash": 3174641793 }, - "m_playerEmote": { - "type": "std::string", - "id": 2, - "offset": 136, + "m_displayRequirements": { + "type": "class RequirementList*", + "id": 33, + "offset": 840, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 2232796226 - } - } - }, - "2069974725": { - "name": "class LeaderboardUpdateFriendsList", - "bases": [ - "PropertyClass" - ], - "hash": 2069974725, - "properties": { - "m_leaderboardFriendsList": { - "type": "gid", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, + "pointer": true, + "hash": 3646782876 + }, + "m_descriptionTrainer": { + "type": "std::string", + "id": 34, + "offset": 616, + "flags": 8388871, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 142730388 - } - } - }, - "892779224": { - "name": "class CinematicInteractInfo", - "bases": [ - "PropertyClass" - ], - "hash": 892779224, - "properties": { - "m_actorState": { + "hash": 1756093908 + }, + "m_descriptionCombatHUD": { "type": "std::string", - "id": 0, - "offset": 72, + "id": 35, + "offset": 648, + "flags": 8388871, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1631478006 + }, + "m_displayIndex": { + "type": "int", + "id": 36, + "offset": 680, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2574256277 + "hash": 1250551048 }, - "m_playerCinematicState": { - "type": "std::string", - "id": 1, - "offset": 104, + "m_hiddenFromEffectsWindow": { + "type": "bool", + "id": 37, + "offset": 684, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3255674198 + "hash": 1832736331 }, - "m_playerEmote": { - "type": "std::string", - "id": 2, - "offset": 136, + "m_ignoreCharms": { + "type": "bool", + "id": 38, + "offset": 685, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2232796226 - } - } - }, - "509426782": { - "name": "class DamageEventCinematicAction*", - "bases": [ - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 509426782, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, + "hash": 1840075893 + }, + "m_alwaysFizzle": { + "type": "bool", + "id": 39, + "offset": 686, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 + "hash": 2030988856 }, - "m_actor": { + "m_spellCategory": { "type": "std::string", - "id": 1, - "offset": 80, + "id": 40, + "offset": 688, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2285866132 - } - } - }, - "1267511802": { - "name": "class SharedPointer", - "bases": [ - "WinAnimScaleSymmetrical", - "WindowAnimation", - "PropertyClass" - ], - "hash": 1267511802, - "properties": { - "m_bUseDeepCopy": { + "hash": 2472376729 + }, + "m_showPolymorphedName": { "type": "bool", - "id": 0, - "offset": 72, - "flags": 135, + "id": 41, + "offset": 720, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 433380635 + "hash": 2097929096 }, - "m_scale": { - "type": "float", - "id": 1, - "offset": 80, - "flags": 135, + "m_skipTruncation": { + "type": "bool", + "id": 42, + "offset": 721, + "flags": 263, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 899693439 + "hash": 1838335249 }, - "m_fTimeTotal": { - "type": "float", - "id": 2, - "offset": 88, - "flags": 135, + "m_maxCopies": { + "type": "unsigned int", + "id": 43, + "offset": 724, + "flags": 263, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 661225456 + "hash": 403022326 }, - "m_fTimeRemaining": { - "type": "float", - "id": 3, - "offset": 92, - "flags": 135, + "m_levelRestriction": { + "type": "int", + "id": 44, + "offset": 728, + "flags": 263, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1591443014 - } - } - }, - "2070237326": { - "name": "class ParticleSystem2D*", - "bases": [ - "Window", - "PropertyClass" - ], - "hash": 2070237326, - "properties": { - "m_sName": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 135, + "hash": 176502472 + }, + "m_delayEnchantment": { + "type": "bool", + "id": 45, + "offset": 732, + "flags": 287, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2306437263 - }, - "m_Children": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 65671, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2621225959 + "hash": 191336919 }, - "m_Style": { - "type": "unsigned int", - "id": 2, - "offset": 152, - "flags": 1048583, + "m_delayEnchantmentOrder": { + "type": "enum SpellEffect::kDelayOrder", + "id": 46, + "offset": 736, + "flags": 287, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 983582334, + "hash": 2526055263, "enum_options": { - "HAS_BACK": 1, - "SCALE_CHILDREN": 2, - "CAN_MOVE": 4, - "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "FOCUS_LOCKED": 64, - "CAN_FOCUS": 128, - "CAN_DOCK": 32, - "DO_NOT_CAPTURE_MOUSE": 256, - "IS_TRANSPARENT": 256, - "EFFECT_FADEIN": 512, - "EFFECT_HIGHLIGHT": 1024, - "HAS_NO_BORDER": 2048, - "IGNORE_PARENT_SCALE": 4096, - "USE_ALPHA_BOUNDS": 8192, - "AUTO_GROW": 16384, - "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152 + "SpellEffect::kAnyOrder": 0, + "SpellEffect::kFirst": 1, + "SpellEffect::kSecond": 2 } }, - "m_Flags": { - "type": "unsigned int", - "id": 3, - "offset": 156, - "flags": 1048583, + "m_previousSpellName": { + "type": "std::string", + "id": 47, + "offset": 744, + "flags": 268435463, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 967851578, + "hash": 2903322585, "enum_options": { - "VISIBLE": 1, - "NOCLIP": 2, - "DOCK_OUTSIDE": 131072, - "DOCK_LEFT": 128, - "DOCK_TOP": 512, - "DOCK_RIGHT": 256, - "DOCK_BOTTOM": 1024, - "PARENT_SIZE": 786432, - "PARENT_WIDTH": 262144, - "PARENT_HEIGHT": 524288, - "HCENTER": 32768, - "VCENTER": 65536, - "DISABLED": 2147483648 + "__BASECLASS": "SpellTemplate" } }, - "m_Window": { - "type": "class Rect", - "id": 4, - "offset": 160, - "flags": 135, + "m_cardFront": { + "type": "std::string", + "id": 48, + "offset": 456, + "flags": 131359, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3105139380 + "hash": 3557598526 }, - "m_fTargetAlpha": { - "type": "float", - "id": 5, - "offset": 212, - "flags": 135, + "m_useGloss": { + "type": "bool", + "id": 49, + "offset": 488, + "flags": 287, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1809129834 + "hash": 668817544 }, - "m_fDisabledAlpha": { - "type": "float", - "id": 6, - "offset": 216, - "flags": 135, + "m_ignoreDispel": { + "type": "bool", + "id": 50, + "offset": 776, + "flags": 287, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1389987675 + "hash": 1881041624 }, - "m_fAlpha": { - "type": "float", - "id": 7, - "offset": 208, - "flags": 65671, + "m_backRowFriendly": { + "type": "bool", + "id": 51, + "offset": 777, + "flags": 287, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 482130755 + "hash": 501584377 }, - "m_pWindowStyle": { - "type": "class SharedPointer", - "id": 8, - "offset": 232, - "flags": 135, + "m_spellRank": { + "type": "class SharedPointer", + "id": 52, + "offset": 784, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": true, - "hash": 3623628394 + "hash": 3152361374 }, - "m_sHelp": { - "type": "std::wstring", - "id": 9, - "offset": 248, - "flags": 4194439, + "m_secondarySchoolName": { + "type": "std::string", + "id": 53, + "offset": 800, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2102211316 + "hash": 1803268236 }, - "m_sScript": { - "type": "std::string", - "id": 10, - "offset": 352, - "flags": 135, + "m_spellFusion": { + "type": "unsigned int", + "id": 54, + "offset": 836, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1846695875 + "hash": 1658928321 }, - "m_Offset": { - "type": "class Point", - "id": 11, - "offset": 192, - "flags": 135, + "m_requiredSchoolName": { + "type": "std::string", + "id": 55, + "offset": 848, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3389835433 + "hash": 3576058981 }, - "m_Scale": { - "type": "class Point", - "id": 12, - "offset": 200, - "flags": 135, + "m_retired": { + "type": "bool", + "id": 56, + "offset": 880, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2547159940 + "hash": 1931776834 }, - "m_sTip": { - "type": "std::wstring", - "id": 13, - "offset": 392, - "flags": 4194439, + "m_shardCost": { + "type": "int", + "id": 57, + "offset": 884, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1513510520 - }, - "m_BubbleList": { - "type": "class WindowBubble", - "id": 14, - "offset": 424, - "flags": 135, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2587533771 + "hash": 1047182405 }, - "m_ParentOffset": { - "type": "class Rect", - "id": 15, - "offset": 176, - "flags": 135, + "m_requirements": { + "type": "class RequirementList*", + "id": 58, + "offset": 888, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, + "pointer": true, + "hash": 2840985510 + }, + "m_nextTierSpells": { + "type": "std::string", + "id": 59, + "offset": 896, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, "pointer": false, - "hash": 3091503757 + "hash": 1762416321 } } }, - "504679060": { - "name": "class BadgeLeaderboardBehavior*", + "1438831683": { + "name": "class SharedPointer", "bases": [ "BehaviorInstance", "PropertyClass" ], - "hash": 504679060, + "hash": 1438831683, "properties": { "m_behaviorTemplateNameID": { "type": "unsigned int", @@ -683491,202 +681207,150 @@ "singleton": false, "pointer": false, "hash": 223437287 - } - } - }, - "500787108": { - "name": "class ResAddCharacterSlotResult*", - "bases": [ - "Result", - "PropertyClass" - ], - "hash": 500787108, - "properties": { - "m_maximumPurchasedCharacterSlots": { - "type": "int", - "id": 0, - "offset": 72, - "flags": 7, + }, + "m_wishlistData": { + "type": "std::string", + "id": 1, + "offset": 136, + "flags": 575, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 57745273 + "hash": 2126601580 } } }, - "893242432": { - "name": "class HidePolymorphFloatyTextCinematicAction*", + "1870924052": { + "name": "class DynaModShowObject", "bases": [ - "ActorCinematicAction", - "CinematicAction", + "DynaMod", "PropertyClass" ], - "hash": 893242432, + "hash": 1870924052, "properties": { - "m_timeOffset": { - "type": "float", + "m_clientTag": { + "type": "std::string", "id": 0, - "offset": 72, - "flags": 7, + "offset": 80, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 + "hash": 3409856790 }, - "m_actor": { + "m_zoneName": { "type": "std::string", "id": 1, - "offset": 80, - "flags": 7, + "offset": 112, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2285866132 - } - } - }, - "498321199": { - "name": "class HousingGameObjectReference", - "bases": [ - "PropertyClass" - ], - "hash": 498321199, - "properties": { - "m_zoneGID": { + "hash": 2171167736 + }, + "m_zoneInstance": { "type": "gid", - "id": 0, - "offset": 72, - "flags": 7, + "id": 2, + "offset": 152, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1907651624 + "hash": 449538121 }, - "m_objectGID": { + "m_originator": { "type": "gid", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2037310403 - } - } - }, - "1268246603": { - "name": "class SharedPointer", - "bases": [ - "CinematicStageTemplate", - "PropertyClass" - ], - "hash": 1268246603, - "properties": { - "m_name": { - "type": "std::string", - "id": 0, + "id": 3, "offset": 72, - "flags": 7, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1717359772 + "hash": 709051254 }, - "m_duration": { - "type": "float", - "id": 1, - "offset": 104, - "flags": 7, + "m_index": { + "type": "int", + "id": 4, + "offset": 160, + "flags": 30, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 920323453 - }, - "m_actions": { - "type": "class SharedPointer", - "id": 2, - "offset": 112, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1380578687 - }, - "m_stageRelationships": { - "type": "class SharedPointer", - "id": 3, - "offset": 128, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 499983354 + "hash": 798031442 }, - "m_stopRotating": { - "type": "bool", - "id": 4, - "offset": 153, - "flags": 7, + "m_zoneID": { + "type": "unsigned int", + "id": 5, + "offset": 144, + "flags": 16, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 13587553 - }, - "m_startRotating": { - "type": "bool", - "id": 5, - "offset": 154, - "flags": 7, + "hash": 1440651126 + } + } + }, + "1870910030": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1870910030, + "properties": { + "m_category": { + "type": "enum ExpansionData::Category", + "id": 0, + "offset": 72, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 839204969 + "hash": 2705349254, + "enum_options": { + "EDC_Bank": 0, + "EDC_FriendsList": 1 + } }, - "m_revealText": { - "type": "std::string", - "id": 6, - "offset": 160, + "m_maxExpansions": { + "type": "int", + "id": 1, + "offset": 76, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2011500383 + "hash": 944258472 }, - "m_bSwitchCameraToWideLong": { - "type": "bool", - "id": 7, - "offset": 152, + "m_expansionSize": { + "type": "int", + "id": 2, + "offset": 80, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2136912684, - "enum_options": { - "__DEFAULT": 1 - } + "hash": 186190666 } } }, - "2070401166": { - "name": "class ParticleSystem2D", + "586907222": { + "name": "class ControlCheckBox", "bases": [ + "ControlButton", "Window", "PropertyClass" ], - "hash": 2070401166, + "hash": 586907222, "properties": { "m_sName": { "type": "std::string", @@ -683722,11 +681386,8 @@ "hash": 983582334, "enum_options": { "HAS_BACK": 1, - "SCALE_CHILDREN": 2, "CAN_MOVE": 4, "CAN_SIZE": 8, - "CAN_SCROLL": 16, - "FOCUS_LOCKED": 64, "CAN_FOCUS": 128, "CAN_DOCK": 32, "DO_NOT_CAPTURE_MOUSE": 256, @@ -683738,7 +681399,12 @@ "USE_ALPHA_BOUNDS": 8192, "AUTO_GROW": 16384, "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152 + "AUTO_RESIZE": 49152, + "EFFECT_SCALE": 67108864, + "LOCK_ICON_SIZE": 33554432, + "LEFT_TEXT": 536870912, + "NO_FIT_TEXT": 1073741824, + "CHECKBOX_TEXTOVERIMAGE": 16777216 } }, "m_Flags": { @@ -683898,739 +681564,1072 @@ "singleton": false, "pointer": false, "hash": 3091503757 - } - } - }, - "497987934": { - "name": "class SigilZoneInfo", - "bases": [ - "PropertyClass" - ], - "hash": 497987934, - "properties": { - "m_zoneName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, + }, + "m_bToggle": { + "type": "bool", + "id": 16, + "offset": 608, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2171167736 + "hash": 2071810903 }, - "m_maximumLevel": { - "type": "int", - "id": 1, - "offset": 104, - "flags": 7, + "m_bButtonDown": { + "type": "bool", + "id": 17, + "offset": 609, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 285381904 - } - } - }, - "1267937641": { - "name": "class WorldHubZoneMapper*", - "bases": [ - "PropertyClass" - ], - "hash": 1267937641, - "properties": { - "m_hubZoneMapping": { - "type": "class HubZoneMapping*", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, + "hash": 840041705 + }, + "m_sLabel": { + "type": "std::wstring", + "id": 18, + "offset": 616, + "flags": 4194439, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1402898811 - } - } - }, - "893416143": { - "name": "class SharedPointer", - "bases": [ - "Result", - "PropertyClass" - ], - "hash": 893416143, - "properties": { - "m_sourceType": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 7, + "pointer": false, + "hash": 2207009163 + }, + "m_labelOffset": { + "type": "class Rect", + "id": 19, + "offset": 832, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2305508654 + "hash": 1990646723 }, - "m_zoneLevelMax": { + "m_pButton": { + "type": "class SharedPointer", + "id": 20, + "offset": 656, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1543855875 + }, + "m_HotKey": { "type": "unsigned int", - "id": 1, - "offset": 76, - "flags": 263, + "id": 21, + "offset": 672, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1028933895 + "hash": 1631553409 }, - "m_zoneLevelMin": { - "type": "unsigned int", - "id": 2, - "offset": 72, - "flags": 263, + "m_Color": { + "type": "class Color", + "id": 22, + "offset": 676, + "flags": 262279, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1028934149 - } - } - }, - "497987931": { - "name": "class SigilZoneInfo*", - "bases": [ - "PropertyClass" - ], - "hash": 497987931, - "properties": { - "m_zoneName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, + "hash": 1753714077 + }, + "m_bCursorOver": { + "type": "bool", + "id": 23, + "offset": 689, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2171167736 + "hash": 283981103 }, - "m_maximumLevel": { + "m_bAbortWhenCursorNotOver": { + "type": "bool", + "id": 24, + "offset": 706, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 325405258 + }, + "m_bHotKeyDown": { + "type": "bool", + "id": 25, + "offset": 680, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 616989185 + }, + "m_fTime": { + "type": "float", + "id": 26, + "offset": 684, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 883746156 + }, + "m_bGreyed": { + "type": "bool", + "id": 27, + "offset": 688, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1566556053 + }, + "m_fMaxScale": { + "type": "float", + "id": 28, + "offset": 692, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2070186635 + }, + "m_fScaleSpeed": { + "type": "float", + "id": 29, + "offset": 696, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1457135702 + }, + "m_bUseDropShadow": { + "type": "bool", + "id": 30, + "offset": 704, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 93063037 + }, + "m_bUseOutline": { + "type": "bool", + "id": 31, + "offset": 705, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 744292994 + }, + "m_pGreyedState": { + "type": "class SharedPointer", + "id": 32, + "offset": 768, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2703352263 + }, + "m_pNormalState": { + "type": "class SharedPointer", + "id": 33, + "offset": 752, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1887909808 + }, + "m_pHighlightedState": { + "type": "class SharedPointer", + "id": 34, + "offset": 784, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2200177608 + }, + "m_pSelectedState": { + "type": "class SharedPointer", + "id": 35, + "offset": 800, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2266776432 + }, + "m_pDepressedState": { + "type": "class SharedPointer", + "id": 36, + "offset": 816, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1878185798 + }, + "m_nGroupID": { "type": "int", - "id": 1, - "offset": 104, - "flags": 7, + "id": 37, + "offset": 880, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 285381904 + "hash": 403966850 + }, + "m_bChecked": { + "type": "bool", + "id": 38, + "offset": 884, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 958955100 + }, + "m_pCheckedState": { + "type": "class SharedPointer", + "id": 39, + "offset": 888, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1210539694 + }, + "m_pCheckedGreyedState": { + "type": "class SharedPointer", + "id": 40, + "offset": 904, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2702030126 + }, + "m_pCheckedHighlightedState": { + "type": "class SharedPointer", + "id": 41, + "offset": 920, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1320097679 + }, + "m_pCheckedDepressedState": { + "type": "class SharedPointer", + "id": 42, + "offset": 936, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1609188685 } } }, - "2070752429": { - "name": "class std::vector >", - "bases": [], - "hash": 2070752429, - "properties": {} - }, - "903514117": { - "name": "class SharedPointer", + "167916354": { + "name": "class SharedPointer", "bases": [ - "ServiceOptionBase", + "SoundBehaviorTemplate", + "AreaBehaviorTemplate", + "BehaviorTemplate", "PropertyClass" ], - "hash": 903514117, + "hash": 167916354, "properties": { - "m_serviceName": { + "m_behaviorName": { "type": "std::string", "id": 0, "offset": 72, - "flags": 31, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2206028813 + "hash": 3130754092 }, - "m_iconKey": { - "type": "std::string", + "m_radius": { + "type": "float", "id": 1, - "offset": 168, - "flags": 31, + "offset": 120, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2457138637 + "hash": 989410271 }, - "m_displayKey": { - "type": "std::string", + "m_category": { + "type": "enum AudioCategory", "id": 2, - "offset": 104, - "flags": 31, + "offset": 124, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3023276954 + "hash": 2951251982, + "enum_options": { + "AudioCategory_Irrelevent": 0, + "AudioCategory_Accoustic": 1, + "AudioCategory_Noise": 2, + "AudioCategory_Music": 3, + "AudioCategory_MusicAtSFXVolume": 4, + "AudioCategory_Dialog": 5, + "AudioCategory_UI": 6, + "AudioCategory_NoiseAtMusicVolume": 7 + } }, - "m_serviceIndex": { - "type": "unsigned int", + "m_exclusive": { + "type": "bool", "id": 3, - "offset": 204, - "flags": 31, + "offset": 128, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2103126710 + "hash": 824383403 }, - "m_forceInteract": { + "m_active": { "type": "bool", "id": 4, + "offset": 129, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 239335471 + }, + "m_enableReqs": { + "type": "class SharedPointer", + "id": 5, + "offset": 136, + "flags": 263, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3158020443 + }, + "m_trackFilenameList": { + "type": "std::string", + "id": 6, + "offset": 152, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2531081709 + }, + "m_playList": { + "type": "class PlayListEntry*", + "id": 7, + "offset": 176, + "flags": 7, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 3907873161 + }, + "m_priority": { + "type": "int", + "id": 8, + "offset": 208, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1235205852 + }, + "m_volume": { + "type": "float", + "id": 9, "offset": 200, - "flags": 31, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1705789564 - } - } - }, - "498321189": { - "name": "class HousingGameObjectReference*", - "bases": [ - "PropertyClass" - ], - "hash": 498321189, - "properties": { - "m_zoneGID": { - "type": "gid", - "id": 0, - "offset": 72, + "hash": 1162855023 + }, + "m_loopCount": { + "type": "int", + "id": 10, + "offset": 204, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1907651624 + "hash": 865634717 }, - "m_objectGID": { - "type": "gid", - "id": 1, - "offset": 80, + "m_progression": { + "type": "enum PlayList::Progression", + "id": 11, + "offset": 220, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3279400238, + "enum_options": { + "Sequence": 0, + "Random": 1, + "SequenceOnceOnly": 2, + "RandomNoRepeat": 3 + } + }, + "m_progressMin": { + "type": "float", + "id": 12, + "offset": 212, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2037310403 + "hash": 1497550192 + }, + "m_progressMax": { + "type": "float", + "id": 13, + "offset": 216, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1497549938 + }, + "m_audioFilterSet": { + "type": "unsigned int", + "id": 14, + "offset": 224, + "flags": 33554439, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 831339825 + }, + "m_animationNameFilter": { + "type": "std::string", + "id": 15, + "offset": 232, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2292854242 + }, + "m_functionallabel": { + "type": "std::string", + "id": 16, + "offset": 264, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 3589331278 } } }, - "1270995002": { - "name": "class SharedPointer", + "586902102": { + "name": "class ControlCheckBox*", "bases": [ - "PvPMatchInfo", - "ArenaMatchInfo", + "ControlButton", + "Window", "PropertyClass" ], - "hash": 1270995002, + "hash": 586902102, "properties": { - "m_matchID": { - "type": "gid", + "m_sName": { + "type": "std::string", "id": 0, - "offset": 72, - "flags": 31, + "offset": 80, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1757621298 + "hash": 2306437263 }, - "m_matchNameID": { - "type": "unsigned int", + "m_Children": { + "type": "class SharedPointer", "id": 1, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 1751361288 + "pointer": true, + "hash": 2621225959 }, - "m_teams": { - "type": "class SharedPointer", + "m_Style": { + "type": "unsigned int", "id": 2, - "offset": 96, - "flags": 31, - "container": "List", - "dynamic": true, + "offset": 152, + "flags": 1048583, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1984373608 + "pointer": false, + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152, + "EFFECT_SCALE": 67108864, + "LOCK_ICON_SIZE": 33554432, + "LEFT_TEXT": 536870912, + "NO_FIT_TEXT": 1073741824, + "CHECKBOX_TEXTOVERIMAGE": 16777216 + } }, - "m_matchName": { - "type": "std::string", + "m_Flags": { + "type": "unsigned int", "id": 3, - "offset": 112, - "flags": 31, + "offset": 156, + "flags": 1048583, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2061215721 + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } }, - "m_matchTitle": { - "type": "std::string", + "m_Window": { + "type": "class Rect", "id": 4, - "offset": 144, - "flags": 31, + "offset": 160, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2918442218 + "hash": 3105139380 }, - "m_matchZoneID": { - "type": "gid", + "m_fTargetAlpha": { + "type": "float", "id": 5, - "offset": 176, - "flags": 31, + "offset": 212, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2026205966 + "hash": 1809129834 }, - "m_creatorID": { - "type": "gid", + "m_fDisabledAlpha": { + "type": "float", "id": 6, - "offset": 88, - "flags": 31, + "offset": 216, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1051766037 + "hash": 1389987675 }, - "m_matchZone": { - "type": "std::string", + "m_fAlpha": { + "type": "float", "id": 7, - "offset": 184, - "flags": 31, + "offset": 208, + "flags": 65671, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2061662244 + "hash": 482130755 }, - "m_startTime": { - "type": "int", + "m_pWindowStyle": { + "type": "class SharedPointer", "id": 8, - "offset": 216, - "flags": 31, + "offset": 232, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1386968823 + "pointer": true, + "hash": 3623628394 }, - "m_status": { - "type": "int", + "m_sHelp": { + "type": "std::wstring", "id": 9, - "offset": 220, - "flags": 31, + "offset": 248, + "flags": 4194439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 960781182 + "hash": 2102211316 }, - "m_friendsOnly": { - "type": "bool", + "m_sScript": { + "type": "std::string", "id": 10, - "offset": 236, - "flags": 31, + "offset": 352, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1420401792 + "hash": 1846695875 }, - "m_tournamentNameID": { - "type": "unsigned int", + "m_Offset": { + "type": "class Point", "id": 11, - "offset": 224, - "flags": 31, + "offset": 192, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1799846440 + "hash": 3389835433 }, - "m_leagueID": { - "type": "unsigned int", + "m_Scale": { + "type": "class Point", "id": 12, - "offset": 228, - "flags": 31, + "offset": 200, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 692361645 + "hash": 2547159940 }, - "m_seasonID": { - "type": "unsigned int", + "m_sTip": { + "type": "std::wstring", "id": 13, - "offset": 232, - "flags": 31, + "offset": 392, + "flags": 4194439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 535260643 + "hash": 1513510520 }, - "m_bUpdateLadder": { - "type": "bool", + "m_BubbleList": { + "type": "class WindowBubble", "id": 14, - "offset": 248, - "flags": 31, - "container": "Static", - "dynamic": false, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 1937525956 + "hash": 2587533771 }, - "m_maxPointsPerMatch": { - "type": "unsigned int", + "m_ParentOffset": { + "type": "class Rect", "id": 15, - "offset": 240, - "flags": 31, + "offset": 176, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1397040900 + "hash": 3091503757 }, - "m_estimatedWeight": { - "type": "float", + "m_bToggle": { + "type": "bool", "id": 16, - "offset": 244, - "flags": 31, + "offset": 608, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1374360127 + "hash": 2071810903 }, - "m_maxELOError": { - "type": "int", + "m_bButtonDown": { + "type": "bool", "id": 17, - "offset": 252, - "flags": 31, + "offset": 609, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 318998922 + "hash": 840041705 }, - "m_uniqueMatchID": { - "type": "std::string", + "m_sLabel": { + "type": "std::wstring", "id": 18, - "offset": 264, - "flags": 31, + "offset": 616, + "flags": 4194439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3291026220 + "hash": 2207009163 }, - "m_pvpDuelModifiersTemplates": { - "type": "class SharedPointer", + "m_labelOffset": { + "type": "class Rect", "id": 19, - "offset": 296, - "flags": 31, - "container": "List", - "dynamic": true, + "offset": 832, + "flags": 135, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1193155411 + "pointer": false, + "hash": 1990646723 }, - "m_teamSize": { - "type": "unsigned int", + "m_pButton": { + "type": "class SharedPointer", "id": 20, - "offset": 256, - "flags": 31, + "offset": 656, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 2343388751 + "pointer": true, + "hash": 1543855875 }, - "m_joinQueueRequirements": { - "type": "class SharedPointer", + "m_HotKey": { + "type": "unsigned int", "id": 21, - "offset": 312, - "flags": 31, + "offset": 672, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2746080983 + "pointer": false, + "hash": 1631553409 }, - "m_timeLimitSec": { - "type": "unsigned int", + "m_Color": { + "type": "class Color", "id": 22, - "offset": 328, - "flags": 31, + "offset": 676, + "flags": 262279, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 312519798 + "hash": 1753714077 }, - "m_useHistoricDiego": { + "m_bCursorOver": { "type": "bool", "id": 23, - "offset": 352, - "flags": 31, + "offset": 689, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1688842509 + "hash": 283981103 }, - "m_ignoredList": { - "type": "gid", + "m_bAbortWhenCursorNotOver": { + "type": "bool", "id": 24, - "offset": 336, - "flags": 31, - "container": "List", - "dynamic": true, + "offset": 706, + "flags": 135, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 1850924028 + "hash": 325405258 }, - "m_matchTimer": { - "type": "float", + "m_bHotKeyDown": { + "type": "bool", "id": 25, - "offset": 356, - "flags": 31, + "offset": 680, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1510935909 + "hash": 616989185 }, - "m_bonusTime": { - "type": "int", + "m_fTime": { + "type": "float", "id": 26, - "offset": 360, - "flags": 31, + "offset": 684, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1757496496 + "hash": 883746156 }, - "m_passPenalty": { - "type": "int", + "m_bGreyed": { + "type": "bool", "id": 27, - "offset": 364, - "flags": 31, + "offset": 688, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 982951662 + "hash": 1566556053 }, - "m_yellowTime": { - "type": "int", + "m_fMaxScale": { + "type": "float", "id": 28, - "offset": 368, - "flags": 31, + "offset": 692, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1017028741 + "hash": 2070186635 }, - "m_redTime": { - "type": "int", + "m_fScaleSpeed": { + "type": "float", "id": 29, - "offset": 372, - "flags": 31, + "offset": 696, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1909556708 + "hash": 1457135702 }, - "m_minTurnTime": { - "type": "int", + "m_bUseDropShadow": { + "type": "bool", "id": 30, - "offset": 376, - "flags": 31, + "offset": 704, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 652524886 + "hash": 93063037 }, - "m_effects": { - "type": "class SharedPointer", + "m_bUseOutline": { + "type": "bool", "id": 31, - "offset": 384, - "flags": 31, - "container": "Vector", - "dynamic": true, + "offset": 705, + "flags": 135, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 804962647 + "pointer": false, + "hash": 744292994 }, - "m_updateBattlePassPoints": { - "type": "bool", + "m_pGreyedState": { + "type": "class SharedPointer", "id": 32, - "offset": 408, - "flags": 31, + "offset": 768, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 713306342 + "pointer": true, + "hash": 2703352263 }, - "m_battlePassWinPoints": { - "type": "int", + "m_pNormalState": { + "type": "class SharedPointer", "id": 33, - "offset": 412, - "flags": 31, + "offset": 752, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1252337240 + "pointer": true, + "hash": 1887909808 }, - "m_battlePassLosePoints": { - "type": "int", + "m_pHighlightedState": { + "type": "class SharedPointer", "id": 34, - "offset": 416, - "flags": 31, + "offset": 784, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1400839869 - } - } - }, - "900642353": { - "name": "class TourneyTokenItemsOption*", - "bases": [ - "ServiceOptionBase", - "PropertyClass" - ], - "hash": 900642353, - "properties": { - "m_serviceName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, + "pointer": true, + "hash": 2200177608 + }, + "m_pSelectedState": { + "type": "class SharedPointer", + "id": 35, + "offset": 800, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 2206028813 + "pointer": true, + "hash": 2266776432 }, - "m_iconKey": { - "type": "std::string", - "id": 1, - "offset": 168, - "flags": 31, + "m_pDepressedState": { + "type": "class SharedPointer", + "id": 36, + "offset": 816, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 2457138637 + "pointer": true, + "hash": 1878185798 }, - "m_displayKey": { - "type": "std::string", - "id": 2, - "offset": 104, - "flags": 31, + "m_nGroupID": { + "type": "int", + "id": 37, + "offset": 880, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3023276954 + "hash": 403966850 }, - "m_serviceIndex": { - "type": "unsigned int", - "id": 3, - "offset": 204, - "flags": 31, + "m_bChecked": { + "type": "bool", + "id": 38, + "offset": 884, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2103126710 + "hash": 958955100 }, - "m_forceInteract": { - "type": "bool", - "id": 4, - "offset": 200, - "flags": 31, + "m_pCheckedState": { + "type": "class SharedPointer", + "id": 39, + "offset": 888, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1705789564 + "pointer": true, + "hash": 1210539694 + }, + "m_pCheckedGreyedState": { + "type": "class SharedPointer", + "id": 40, + "offset": 904, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2702030126 + }, + "m_pCheckedHighlightedState": { + "type": "class SharedPointer", + "id": 41, + "offset": 920, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1320097679 + }, + "m_pCheckedDepressedState": { + "type": "class SharedPointer", + "id": 42, + "offset": 936, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1609188685 } } }, - "2073428137": { - "name": "class SharedPointer", + "1015755683": { + "name": "class CantripsMajorInvisibilityEffectInfo", "bases": [ - "ActorDeathCinematicAction", - "ActorCinematicAction", - "CinematicAction", + "CantripsInvisibilityEffectInfo", + "GameEffectInfo", "PropertyClass" ], - "hash": 2073428137, + "hash": 1015755683, "properties": { - "m_timeOffset": { - "type": "float", + "m_effectName": { + "type": "std::string", "id": 0, "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2285866132 + "hash": 2029161513 } } }, - "1270124295": { - "name": "class MonsterMagicBehavior", + "1439032205": { + "name": "class ExtraHousingZoneBehavior", "bases": [ - "MonsterMagicBehaviorBase", + "ExtraHousingZoneBehaviorBase", "BehaviorInstance", "PropertyClass" ], - "hash": 1270124295, + "hash": 1439032205, "properties": { "m_behaviorTemplateNameID": { "type": "unsigned int", @@ -684642,743 +682641,776 @@ "singleton": false, "pointer": false, "hash": 223437287 - }, - "m_monsterData": { - "type": "std::string", - "id": 1, - "offset": 128, - "flags": 551, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3377737309 } } }, - "897469938": { - "name": "class ClientDerbyModifyCheerCost", + "1870920800": { + "name": "class PetStatBlockControl*", "bases": [ - "DerbyModifyCheerCost", - "DerbyEffect", + "Window", "PropertyClass" ], - "hash": 897469938, + "hash": 1870920800, "properties": { - "m_buffType": { - "type": "enum DerbyTalentBuffType", + "m_sName": { + "type": "std::string", "id": 0, - "offset": 92, - "flags": 2097183, + "offset": 80, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1149251982, - "enum_options": { - "Buff": 0, - "Debuff": 1, - "Neither": 2 - } + "hash": 2306437263 }, - "m_kTarget": { - "type": "enum DerbyTargetType", + "m_Children": { + "type": "class SharedPointer", "id": 1, - "offset": 96, - "flags": 2097159, - "container": "Static", - "dynamic": false, + "offset": 112, + "flags": 65667, + "container": "Vector", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 1807803351, - "enum_options": { - "kTargetInFront": 0, - "kTargetBehind": 1, - "kTargetFirst": 2, - "kTargetSelf": 3, - "kTargetAll": 4, - "kTargetLast": 5 - } + "pointer": true, + "hash": 2621225959 }, - "m_nDuration": { - "type": "int", + "m_Style": { + "type": "unsigned int", "id": 2, - "offset": 104, - "flags": 31, + "offset": 152, + "flags": 1048583, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1110167982 + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "SCALE_CHILDREN": 2, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "FOCUS_LOCKED": 64, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152 + } }, - "m_effectID": { + "m_Flags": { "type": "unsigned int", "id": 3, - "offset": 88, - "flags": 24, + "offset": 156, + "flags": 1048583, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2347630439 + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } }, - "m_imageFilename": { - "type": "std::string", + "m_Window": { + "type": "class Rect", "id": 4, - "offset": 112, - "flags": 131103, + "offset": 160, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2813328063 + "hash": 3105139380 }, - "m_iconIndex": { - "type": "unsigned int", + "m_fTargetAlpha": { + "type": "float", "id": 5, - "offset": 144, - "flags": 31, + "offset": 212, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1265133262 + "hash": 1809129834 }, - "m_soundOnActivate": { - "type": "std::string", + "m_fDisabledAlpha": { + "type": "float", "id": 6, - "offset": 152, - "flags": 131103, + "offset": 216, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1956929714 + "hash": 1389987675 }, - "m_soundOnTarget": { - "type": "std::string", + "m_fAlpha": { + "type": "float", "id": 7, - "offset": 184, - "flags": 131103, + "offset": 208, + "flags": 65671, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3444214056 + "hash": 482130755 }, - "m_targetParticleEffect": { - "type": "std::string", + "m_pWindowStyle": { + "type": "class SharedPointer", "id": 8, - "offset": 216, - "flags": 131103, + "offset": 232, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 3048234723 + "pointer": true, + "hash": 3623628394 }, - "m_overheadMessage": { - "type": "std::string", + "m_sHelp": { + "type": "std::wstring", "id": 9, "offset": 248, - "flags": 8388639, + "flags": 4194439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1701018190 + "hash": 2102211316 }, - "m_requirements": { - "type": "class RequirementList", + "m_sScript": { + "type": "std::string", "id": 10, - "offset": 280, - "flags": 31, + "offset": 352, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2840988582 + "hash": 1846695875 }, - "m_costMap": { - "type": "class TerrainCheerCostMap", + "m_Offset": { + "type": "class Point", "id": 11, - "offset": 376, - "flags": 31, + "offset": 192, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1929931701 - } - } - }, - "2071813018": { - "name": "class SharedPointer", - "bases": [ - "GameEffectInfo", - "PropertyClass" - ], - "hash": 2071813018, - "properties": { - "m_effectName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, + "hash": 3389835433 + }, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2029161513 + "hash": 2547159940 }, - "m_lootTableName": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 31, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2333333378 + "hash": 1513510520 }, - "m_description": { - "type": "std::string", - "id": 2, - "offset": 136, - "flags": 31, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1649374815 + "hash": 3091503757 } } }, - "1269742783": { - "name": "class SharedPointer", + "1439027231": { + "name": "class AchieveRankGoalTemplate*", "bases": [ - "SG_GameAction_PlaySound", - "SG_GameAction", + "GoalTemplate", + "CoreTemplate", "PropertyClass" ], - "hash": 1269742783, + "hash": 1439027231, "properties": { - "m_target": { - "type": "enum SG_GameAction::SG_Target", + "m_behaviors": { + "type": "class BehaviorTemplate*", "id": 0, "offset": 72, - "flags": 2097159, - "container": "Static", - "dynamic": false, + "flags": 7, + "container": "Vector", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 1166870973, - "enum_options": { - "Target_Ball": 0, - "Target_Self": 1, - "Target_Connections": 2, - "__DEFAULT": "Target_Ball" - } + "pointer": true, + "hash": 1197808594 }, - "m_simpleSounds": { + "m_goalName": { "type": "std::string", "id": 1, - "offset": 112, + "offset": 104, "flags": 7, - "container": "List", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 3351944033 - } - } - }, - "895763997": { - "name": "class RaidGateBehavior*", - "bases": [ - "RaidGateBehaviorBase", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 895763997, - "properties": { - "m_behaviorTemplateNameID": { + "hash": 1521627807 + }, + "m_goalNameID": { "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, + "id": 2, + "offset": 496, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 + "hash": 403158846 }, - "m_raidKeyTemplateID": { - "type": "unsigned int", - "id": 1, - "offset": 112, - "flags": 31, + "m_goalTitle": { + "type": "std::string", + "id": 3, + "offset": 136, + "flags": 8388615, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 884418367 - } - } - }, - "499116335": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 499116335, - "properties": {} - }, - "893904575": { - "name": "class ArenaItemsOption", - "bases": [ - "ServiceOptionBase", - "PropertyClass" - ], - "hash": 893904575, - "properties": { - "m_serviceName": { + "hash": 2291910240 + }, + "m_goalUnderway": { "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, + "id": 4, + "offset": 168, + "flags": 8388615, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2206028813 + "hash": 3153144269 }, - "m_iconKey": { + "m_hyperlink": { "type": "std::string", - "id": 1, - "offset": 168, - "flags": 31, + "id": 5, + "offset": 200, + "flags": 8388615, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2457138637 + "hash": 2887798993 }, - "m_displayKey": { + "m_completeText": { "type": "std::string", - "id": 2, - "offset": 104, - "flags": 31, + "id": 6, + "offset": 232, + "flags": 8388615, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3023276954 + "hash": 2767458393 }, - "m_serviceIndex": { - "type": "unsigned int", - "id": 3, - "offset": 204, - "flags": 31, + "m_completeResults": { + "type": "class ResultList*", + "id": 7, + "offset": 440, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1964258099 + }, + "m_goalRequirements": { + "type": "class RequirementList*", + "id": 8, + "offset": 448, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2979967145 + }, + "m_tallyCounter": { + "type": "class TallyCounterTemplate*", + "id": 9, + "offset": 456, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 1884546193 + }, + "m_locationName": { + "type": "std::string", + "id": 10, + "offset": 272, + "flags": 8388615, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2103126710 + "hash": 1824218389 }, - "m_forceInteract": { - "type": "bool", - "id": 4, - "offset": 200, - "flags": 31, + "m_displayImage1": { + "type": "std::string", + "id": 11, + "offset": 304, + "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1705789564 - } - } - }, - "498686861": { - "name": "class SharedPointer", - "bases": [ - "GameEffectInfo", - "PropertyClass" - ], - "hash": 498686861, - "properties": { - "m_effectName": { + "hash": 1959572133 + }, + "m_displayImage2": { "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, + "id": 12, + "offset": 336, + "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2029161513 + "hash": 1959572134 }, - "m_startReqs": { - "type": "class SharedPointer", - "id": 1, - "offset": 104, + "m_clientTags": { + "type": "std::string", + "id": 13, + "offset": 368, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2319030025 + }, + "m_genericEvents": { + "type": "std::string", + "id": 14, + "offset": 384, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 3466670829 + }, + "m_autoQualify": { + "type": "bool", + "id": 15, + "offset": 400, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3147529602 + "pointer": false, + "hash": 1878907431 }, - "m_startResults": { - "type": "class SharedPointer", - "id": 2, - "offset": 120, + "m_autoComplete": { + "type": "bool", + "id": 16, + "offset": 401, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2094517692 + "pointer": false, + "hash": 1302545445 }, - "m_endResults": { - "type": "class SharedPointer", - "id": 3, - "offset": 136, + "m_destinationZone": { + "type": "std::string", + "id": 17, + "offset": 408, + "flags": 268435463, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2605356153, + "enum_options": { + "__BASECLASS": "ZoneData" + } + }, + "m_dialogList": { + "type": "class ActorDialogListBase*", + "id": 18, + "offset": 264, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": true, - "hash": 2118364133 - } - } - }, - "2073825284": { - "name": "class RequirementFailureData", - "bases": [], - "hash": 2073825284, - "properties": {} - }, - "498604969": { - "name": "class SharedPointer", - "bases": [ - "MonsterMagicBehaviorBase", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 498604969, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, + "hash": 1909154969 + }, + "m_goalType": { + "type": "enum GoalTemplate::GOAL_TYPE", + "id": 19, + "offset": 96, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 + "hash": 1488021149, + "enum_options": { + "GOAL_TYPE_UNKNOWN": 0, + "GOAL_TYPE_BOUNTY": 1, + "GOAL_TYPE_BOUNTYCOLLECT": 2, + "GOAL_TYPE_SCAVENGE": 3, + "GOAL_TYPE_PERSONA": 4, + "GOAL_TYPE_WAYPOINT": 5, + "GOAL_TYPE_SCAVENGEFAKE": 6, + "GOAL_TYPE_ACHIEVERANK": 7, + "GOAL_TYPE_USAGE": 8, + "GOAL_TYPE_COMPLETEQUEST": 9, + "GOAL_TYPE_SOCIARANK": 10, + "GOAL_TYPE_SOCIACURRENCY": 11, + "GOAL_TYPE_SOCIAMINIGAME": 12, + "GOAL_TYPE_SOCIAGIVEITEM": 13, + "GOAL_TYPE_SOCIAGETITEM": 14, + "GOAL_TYPE_COLLECTAFTERBOUNTY": 15, + "GOAL_TYPE_ENCOUNTER_WAYPOINT_FOREACH": 16 + } }, - "m_monsterData": { - "type": "std::string", - "id": 1, - "offset": 128, - "flags": 551, + "m_noQuestHelper": { + "type": "bool", + "id": 20, + "offset": 500, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3377737309 - } - } - }, - "1270316227": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1270316227, - "properties": { - "m_matchAdjustmentType": { - "type": "enum MatchCostAdjustment::ADJUSTMENT_TYPE", - "id": 0, - "offset": 72, - "flags": 31, + "hash": 578010882, + "enum_options": { + "__DEFAULT": 0 + } + }, + "m_petOnlyQuest": { + "type": "bool", + "id": 21, + "offset": 501, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2305794521, + "hash": 679359344, "enum_options": { - "SUBSCRIBER": 0, - "FREETOPLAY": 1, - "UNSET_MAX": 2 + "__DEFAULT": 0 } - } - } - }, - "1270124335": { - "name": "class MonsterMagicBehavior*", - "bases": [ - "MonsterMagicBehaviorBase", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1270124335, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, + }, + "m_activateResults": { + "type": "class ResultList*", + "id": 22, + "offset": 504, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3790153995 + }, + "m_hideGoalFloatyText": { + "type": "bool", + "id": 23, + "offset": 512, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 + "hash": 1919383204, + "enum_options": { + "__DEFAULT": 0 + } }, - "m_monsterData": { - "type": "std::string", - "id": 1, - "offset": 128, - "flags": 551, + "m_rank": { + "type": "int", + "id": 24, + "offset": 520, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3377737309 + "hash": 219803942 } } }, - "2078347732": { - "name": "class SharedPointer", + "168462857": { + "name": "class CreationNameSelectWindowSWF*", "bases": [ + "Window", "PropertyClass" ], - "hash": 2078347732, + "hash": 168462857, "properties": { - "m_slotRequirements": { - "type": "class RequirementList*", + "m_sName": { + "type": "std::string", "id": 0, - "offset": 152, - "flags": 7, + "offset": 80, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 2462163144 + "pointer": false, + "hash": 2306437263 }, - "m_adjectivesAND": { - "type": "std::string", + "m_Children": { + "type": "class SharedPointer", "id": 1, - "offset": 160, - "flags": 7, - "container": "List", + "offset": 112, + "flags": 65671, + "container": "Vector", "dynamic": true, "singleton": false, - "pointer": false, - "hash": 3196570032 + "pointer": true, + "hash": 2621225959 }, - "m_adjectivesOR": { - "type": "std::string", + "m_Style": { + "type": "unsigned int", "id": 2, - "offset": 176, - "flags": 7, - "container": "List", - "dynamic": true, + "offset": 152, + "flags": 1048583, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 2525395710 + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "SCALE_CHILDREN": 2, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "FOCUS_LOCKED": 64, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152 + } }, - "m_adjectivesNOT": { - "type": "std::string", + "m_Flags": { + "type": "unsigned int", "id": 3, - "offset": 192, - "flags": 7, - "container": "List", - "dynamic": true, + "offset": 156, + "flags": 1048583, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 3196584238 + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } }, - "m_slotName": { - "type": "std::string", + "m_Window": { + "type": "class Rect", "id": 4, - "offset": 72, - "flags": 7, + "offset": 160, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2819781566 + "hash": 3105139380 }, - "m_slotCategory": { - "type": "std::string", + "m_fTargetAlpha": { + "type": "float", "id": 5, - "offset": 104, - "flags": 7, + "offset": 212, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1940993755 + "hash": 1809129834 }, - "m_maxItemCount": { - "type": "unsigned int", + "m_fDisabledAlpha": { + "type": "float", "id": 6, - "offset": 144, - "flags": 7, + "offset": 216, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 865719819 - } - } - }, - "498942361": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 498942361, - "properties": { - "m_levelInfo": { - "type": "class GardeningLevelInfo*", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 3807245122 + "hash": 1389987675 }, - "m_maxLevel": { - "type": "unsigned char", - "id": 1, - "offset": 88, - "flags": 7, + "m_fAlpha": { + "type": "float", + "id": 7, + "offset": 208, + "flags": 65671, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 783962734 - } - } - }, - "2076283146": { - "name": "class Reco::CategoryData", - "bases": [ - "PropertyClass" - ], - "hash": 2076283146, - "properties": { - "m_id": { - "type": "int", - "id": 0, - "offset": 72, - "flags": 31, + "hash": 482130755 + }, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3623628394 + }, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2090586215 + "hash": 2102211316 }, - "m_items": { - "type": "class SharedPointer", - "id": 1, - "offset": 80, - "flags": 31, - "container": "List", - "dynamic": true, + "m_sScript": { + "type": "std::string", + "id": 10, + "offset": 352, + "flags": 135, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 966759714 - } - } - }, - "1270625884": { - "name": "class SharedPointer", - "bases": [ - "ReqNumeric", - "Requirement", - "PropertyClass" - ], - "hash": 1270625884, - "properties": { - "m_applyNOT": { - "type": "bool", - "id": 0, - "offset": 72, - "flags": 31, + "pointer": false, + "hash": 1846695875 + }, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1746328074, - "enum_options": { - "__DEFAULT": 0 - } + "hash": 3389835433 }, - "m_operator": { - "type": "enum Requirement::Operator", - "id": 1, - "offset": 76, - "flags": 2097183, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2672792317, - "enum_options": { - "ROP_AND": 0, - "ROP_OR": 1, - "__DEFAULT": "ROP_AND" - } + "hash": 2547159940 }, - "m_numericValue": { - "type": "float", - "id": 2, - "offset": 80, - "flags": 31, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 521915239 + "hash": 1513510520 }, - "m_operatorType": { - "type": "enum ReqNumeric::OPERATOR_TYPE", - "id": 3, - "offset": 84, - "flags": 2097183, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2228122961, - "enum_options": { - "OPERATOR_UNKNOWN": 4294967295, - "OPERATOR_EQUALS": 0, - "OPERATOR_GREATER_THAN": 1, - "OPERATOR_LESS_THAN": 2, - "OPERATOR_GREATER_THAN_EQ": 3, - "OPERATOR_LESS_THAN_EQ": 4 - } + "hash": 3091503757 } } }, - "2076171901": { - "name": "class ClientAddBacklashEffectCinematicAction*", + "587194731": { + "name": "class MakeTargetableCinematicAction", "bases": [ - "AddBacklashEffectCinematicAction", "ActorCinematicAction", "CinematicAction", "PropertyClass" ], - "hash": 2076171901, + "hash": 587194731, "properties": { "m_timeOffset": { "type": "float", @@ -685401,243 +683433,225 @@ "singleton": false, "pointer": false, "hash": 2285866132 - }, - "m_backlashEffect": { - "type": "std::string", - "id": 2, - "offset": 120, - "flags": 131079, + } + } + }, + "1016644098": { + "name": "class SharedPointer", + "bases": [ + "MoveController::MoveCommand", + "PropertyClass" + ], + "hash": 1016644098, + "properties": { + "m_vTarget": { + "type": "class Vector3D", + "id": 0, + "offset": 88, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3051687009 + "hash": 3770499167 } } }, - "896499448": { - "name": "class HousingTeleporterBehavior", + "168050228": { + "name": "class SummonCinematicStageTemplate", "bases": [ - "HousingTeleporterBehaviorBase", - "BehaviorInstance", + "CinematicStageTemplate", "PropertyClass" ], - "hash": 896499448, + "hash": 168050228, "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", + "m_name": { + "type": "std::string", "id": 0, - "offset": 104, - "flags": 39, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 + "hash": 1717359772 }, - "m_lotInstanceGID": { - "type": "gid", + "m_duration": { + "type": "float", "id": 1, - "offset": 112, - "flags": 65567, + "offset": 104, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2010711536 + "hash": 920323453 }, - "m_x": { - "type": "float", + "m_actions": { + "type": "class SharedPointer", "id": 2, - "offset": 120, - "flags": 65543, - "container": "Static", - "dynamic": false, + "offset": 112, + "flags": 7, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 283788559 + "pointer": true, + "hash": 1380578687 }, - "m_y": { - "type": "float", + "m_stageRelationships": { + "type": "class SharedPointer", "id": 3, - "offset": 124, - "flags": 65543, - "container": "Static", - "dynamic": false, + "offset": 128, + "flags": 7, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 283788560 + "pointer": true, + "hash": 499983354 }, - "m_z": { - "type": "float", + "m_summon": { + "type": "std::string", "id": 4, - "offset": 128, - "flags": 65543, + "offset": 152, + "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 283788561 + "hash": 2460090138 }, - "m_yaw": { - "type": "float", + "m_cameras": { + "type": "std::string", "id": 5, - "offset": 132, - "flags": 65543, - "container": "Static", - "dynamic": false, + "offset": 184, + "flags": 131079, + "container": "Vector", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 357256328 + "hash": 3217341687 }, - "m_lotTemplateID": { - "type": "gid", + "m_altcameras": { + "type": "std::string", "id": 6, - "offset": 136, - "flags": 65543, - "container": "Static", - "dynamic": false, + "offset": 208, + "flags": 131079, + "container": "Vector", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 1344354096 + "hash": 1882980152 }, - "m_clusterGID": { - "type": "gid", + "m_camRel": { + "type": "enum CameraCutCinematicAction::kCameraRelative", "id": 7, - "offset": 144, - "flags": 65543, + "offset": 232, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 112792526 + "hash": 919962138, + "enum_options": { + "kSigil": 1, + "kTarget": 2, + "kSource": 3, + "kActor": 4, + "__DEFAULT": "kTarget" + } }, - "m_structureInstanceGID": { - "type": "gid", + "m_sound": { + "type": "std::string", "id": 8, - "offset": 152, - "flags": 65543, + "offset": 280, + "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2083588818 + "hash": 2307644996 }, - "m_structureTemplateID": { - "type": "gid", + "m_interpDuration": { + "type": "float", "id": 9, - "offset": 160, - "flags": 65543, + "offset": 312, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 825960402 + "hash": 2237711951, + "enum_options": { + "__DEFAULT": "0.0" + } }, - "m_isOutside": { - "type": "bool", + "m_summonAnim": { + "type": "std::string", "id": 10, - "offset": 168, - "flags": 65543, + "offset": 240, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1999324940 + "hash": 2113551775, + "enum_options": { + "__DEFAULT": "Summon" + } }, - "m_teleportData": { - "type": "std::string", + "m_returnToIdle": { + "type": "bool", "id": 11, - "offset": 208, - "flags": 551, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3645160644 - } - } - }, - "2074914700": { - "name": "class ClientPlayComplexSoundCinematicAction*", - "bases": [ - "PlayComplexSoundCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 2074914700, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, + "offset": 272, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 + "hash": 1267817300 }, - "m_cinematicSoundEmitterInfo": { - "type": "class SharedPointer", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2303770088 - } - } - }, - "499635585": { - "name": "class SharedPointer", - "bases": [ - "Requirement", - "PropertyClass" - ], - "hash": 499635585, - "properties": { - "m_applyNOT": { - "type": "bool", - "id": 0, - "offset": 72, - "flags": 31, + "m_createOrientation": { + "type": "enum CreateActorCinematicAction::kCreateOrientation", + "id": 12, + "offset": 316, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1746328074, + "hash": 3562324429, "enum_options": { - "__DEFAULT": 0 + "kFaceTarget": 0, + "kFaceSource": 1, + "kSigil": 2, + "kTarget": 3, + "kSource": 4, + "kSigilRight": 5, + "kSigilLeft": 6, + "kFaceTargetTeam": 7, + "__DEFAULT": "kFaceTarget" } }, - "m_operator": { - "type": "enum Requirement::Operator", - "id": 1, - "offset": 76, - "flags": 2097183, + "m_hidePolymorphFloatyText": { + "type": "bool", + "id": 13, + "offset": 320, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2672792317, - "enum_options": { - "ROP_AND": 0, - "ROP_OR": 1, - "__DEFAULT": "ROP_AND" - } + "hash": 942475883 } } }, - "499188677": { - "name": "class MountItemBehavior*", + "1871293562": { + "name": "class SharedPointer", "bases": [ "BehaviorInstance", "PropertyClass" ], - "hash": 499188677, + "hash": 1871293562, "properties": { "m_behaviorTemplateNameID": { "type": "unsigned int", @@ -685650,974 +683664,761 @@ "pointer": false, "hash": 223437287 }, - "m_housingMountOriginalGID": { - "type": "gid", + "m_itemList": { + "type": "class SharedPointer", "id": 1, "offset": 112, - "flags": 65536, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1220139473 - }, - "m_housingPetPrimaryColor": { - "type": "int", - "id": 2, - "offset": 120, - "flags": 65536, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 525135139 - }, - "m_housingPetPattern": { - "type": "int", - "id": 3, - "offset": 124, - "flags": 65536, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 165011646 - }, - "m_housingPetSecondaryColor": { - "type": "int", - "id": 4, - "offset": 128, - "flags": 65536, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 358656263 - } - } - }, - "1271931104": { - "name": "class GameEffectTemplateList*", - "bases": [ - "PropertyClass" - ], - "hash": 1271931104, - "properties": { - "m_effectTemplates": { - "type": "class GameEffectTemplate*", - "id": 0, - "offset": 72, - "flags": 7, + "flags": 27, "container": "List", "dynamic": true, "singleton": false, "pointer": true, - "hash": 1951025928 + "hash": 1983655699 } } }, - "1271009966": { - "name": "class ClassProjectLocation", + "587141562": { + "name": "struct std::pair,class std::allocator >,union gid>", + "bases": [], + "hash": 587141562, + "properties": {} + }, + "1439813663": { + "name": "class AchieveRankGoalTemplate", "bases": [ + "GoalTemplate", + "CoreTemplate", "PropertyClass" ], - "hash": 1271009966, + "hash": 1439813663, "properties": { - "m_checkpointLevel": { - "type": "int", + "m_behaviors": { + "type": "class BehaviorTemplate*", "id": 0, "offset": 72, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "Vector", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 236419514 + "pointer": true, + "hash": 1197808594 }, - "m_destinationZone": { + "m_goalName": { "type": "std::string", "id": 1, - "offset": 80, + "offset": 104, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2605356153 + "hash": 1521627807 }, - "m_destinationLoc": { - "type": "std::string", + "m_goalNameID": { + "type": "unsigned int", "id": 2, - "offset": 112, + "offset": 496, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1531335483 + "hash": 403158846 }, - "m_descriptionText": { + "m_goalTitle": { "type": "std::string", "id": 3, - "offset": 144, - "flags": 7, + "offset": 136, + "flags": 8388615, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3396736580 - } - } - }, - "898738245": { - "name": "class SigilSubCircle*", - "bases": [ - "PropertyClass" - ], - "hash": 898738245, - "properties": { - "m_locationType": { + "hash": 2291910240 + }, + "m_goalUnderway": { "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, + "id": 4, + "offset": 168, + "flags": 8388615, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1824460246 + "hash": 3153144269 }, - "m_locationPreference": { + "m_hyperlink": { "type": "std::string", - "id": 1, - "offset": 112, - "flags": 7, + "id": 5, + "offset": 200, + "flags": 8388615, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2817699507 + "hash": 2887798993 }, - "m_rotation": { - "type": "float", - "id": 2, - "offset": 152, - "flags": 7, + "m_completeText": { + "type": "std::string", + "id": 6, + "offset": 232, + "flags": 8388615, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1497468551 + "hash": 2767458393 }, - "m_radius": { - "type": "float", - "id": 3, - "offset": 156, + "m_completeResults": { + "type": "class ResultList*", + "id": 7, + "offset": 440, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 989410271 + "pointer": true, + "hash": 1964258099 }, - "m_color": { - "type": "class Color", - "id": 4, - "offset": 160, + "m_goalRequirements": { + "type": "class RequirementList*", + "id": 8, + "offset": 448, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1791663549 + "pointer": true, + "hash": 2979967145 }, - "m_cameras": { - "type": "class SigilCamera*", - "id": 5, - "offset": 168, + "m_tallyCounter": { + "type": "class TallyCounterTemplate*", + "id": 9, + "offset": 456, "flags": 7, - "container": "List", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": true, - "hash": 2715542772 - } - } - }, - "1271009926": { - "name": "class ClassProjectLocation*", - "bases": [ - "PropertyClass" - ], - "hash": 1271009926, - "properties": { - "m_checkpointLevel": { - "type": "int", - "id": 0, - "offset": 72, - "flags": 7, + "hash": 1884546193 + }, + "m_locationName": { + "type": "std::string", + "id": 10, + "offset": 272, + "flags": 8388615, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 236419514 + "hash": 1824218389 }, - "m_destinationZone": { + "m_displayImage1": { "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, + "id": 11, + "offset": 304, + "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2605356153 + "hash": 1959572133 }, - "m_destinationLoc": { + "m_displayImage2": { "type": "std::string", - "id": 2, - "offset": 112, - "flags": 7, + "id": 12, + "offset": 336, + "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1531335483 + "hash": 1959572134 }, - "m_descriptionText": { + "m_clientTags": { "type": "std::string", - "id": 3, - "offset": 144, + "id": 13, + "offset": 368, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 3396736580 - } - } - }, - "897823009": { - "name": "class RaidManagerBehaviorTemplate*", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 897823009, - "properties": { - "m_behaviorName": { + "hash": 2319030025 + }, + "m_genericEvents": { "type": "std::string", - "id": 0, - "offset": 72, + "id": 14, + "offset": 384, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 3130754092 + "hash": 3466670829 }, - "m_battlegroundTemplateName": { - "type": "std::string", - "id": 1, - "offset": 120, + "m_autoQualify": { + "type": "bool", + "id": 15, + "offset": 400, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2598590755 - } - } - }, - "2077713755": { - "name": "class SharedPointer", - "bases": [ - "CinematicAction", - "PropertyClass" - ], - "hash": 2077713755, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, + "hash": 1878907431 + }, + "m_autoComplete": { + "type": "bool", + "id": 16, + "offset": 401, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 - } - } - }, - "500732420": { - "name": "class ClientAuctionHouseOption", - "bases": [ - "AuctionHouseOption", - "ServiceOptionBase", - "PropertyClass" - ], - "hash": 500732420, - "properties": { - "m_serviceName": { + "hash": 1302545445 + }, + "m_destinationZone": { "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, + "id": 17, + "offset": 408, + "flags": 268435463, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2206028813 + "hash": 2605356153, + "enum_options": { + "__BASECLASS": "ZoneData" + } }, - "m_iconKey": { - "type": "std::string", - "id": 1, - "offset": 168, - "flags": 31, + "m_dialogList": { + "type": "class ActorDialogListBase*", + "id": 18, + "offset": 264, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 2457138637 + "pointer": true, + "hash": 1909154969 }, - "m_displayKey": { - "type": "std::string", - "id": 2, - "offset": 104, - "flags": 31, + "m_goalType": { + "type": "enum GoalTemplate::GOAL_TYPE", + "id": 19, + "offset": 96, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3023276954 + "hash": 1488021149, + "enum_options": { + "GOAL_TYPE_UNKNOWN": 0, + "GOAL_TYPE_BOUNTY": 1, + "GOAL_TYPE_BOUNTYCOLLECT": 2, + "GOAL_TYPE_SCAVENGE": 3, + "GOAL_TYPE_PERSONA": 4, + "GOAL_TYPE_WAYPOINT": 5, + "GOAL_TYPE_SCAVENGEFAKE": 6, + "GOAL_TYPE_ACHIEVERANK": 7, + "GOAL_TYPE_USAGE": 8, + "GOAL_TYPE_COMPLETEQUEST": 9, + "GOAL_TYPE_SOCIARANK": 10, + "GOAL_TYPE_SOCIACURRENCY": 11, + "GOAL_TYPE_SOCIAMINIGAME": 12, + "GOAL_TYPE_SOCIAGIVEITEM": 13, + "GOAL_TYPE_SOCIAGETITEM": 14, + "GOAL_TYPE_COLLECTAFTERBOUNTY": 15, + "GOAL_TYPE_ENCOUNTER_WAYPOINT_FOREACH": 16 + } }, - "m_serviceIndex": { - "type": "unsigned int", - "id": 3, - "offset": 204, - "flags": 31, + "m_noQuestHelper": { + "type": "bool", + "id": 20, + "offset": 500, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2103126710 + "hash": 578010882, + "enum_options": { + "__DEFAULT": 0 + } }, - "m_forceInteract": { + "m_petOnlyQuest": { "type": "bool", - "id": 4, - "offset": 200, - "flags": 31, + "id": 21, + "offset": 501, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1705789564 + "hash": 679359344, + "enum_options": { + "__DEFAULT": 0 + } }, - "m_auctionHousePurchaseKey": { - "type": "unsigned int", - "id": 5, - "offset": 216, - "flags": 31, + "m_activateResults": { + "type": "class ResultList*", + "id": 22, + "offset": 504, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3790153995 + }, + "m_hideGoalFloatyText": { + "type": "bool", + "id": 23, + "offset": 512, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 394777768 + "hash": 1919383204, + "enum_options": { + "__DEFAULT": 0 + } }, - "m_sellModifier": { - "type": "float", - "id": 6, - "offset": 220, - "flags": 31, + "m_rank": { + "type": "int", + "id": 24, + "offset": 520, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 360128886 + "hash": 219803942 } } }, - "897469948": { - "name": "class ClientDerbyModifyCheerCost*", + "1016770943": { + "name": "class SharedPointer", "bases": [ - "DerbyModifyCheerCost", - "DerbyEffect", "PropertyClass" ], - "hash": 897469948, + "hash": 1016770943, "properties": { - "m_buffType": { - "type": "enum DerbyTalentBuffType", + "m_leagueID": { + "type": "unsigned int", "id": 0, - "offset": 92, - "flags": 2097183, + "offset": 72, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1149251982, - "enum_options": { - "Buff": 0, - "Debuff": 1, - "Neither": 2 - } + "hash": 692361645 }, - "m_kTarget": { - "type": "enum DerbyTargetType", + "m_seasonID": { + "type": "unsigned int", "id": 1, - "offset": 96, - "flags": 2097159, + "offset": 76, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1807803351, - "enum_options": { - "kTargetInFront": 0, - "kTargetBehind": 1, - "kTargetFirst": 2, - "kTargetSelf": 3, - "kTargetAll": 4, - "kTargetLast": 5 - } + "hash": 535260643 }, - "m_nDuration": { - "type": "int", + "m_startTime": { + "type": "unsigned int", "id": 2, - "offset": 104, + "offset": 80, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1110167982 + "hash": 1598371274 }, - "m_effectID": { - "type": "unsigned int", + "m_characterID": { + "type": "gid", "id": 3, "offset": 88, - "flags": 24, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2347630439 + "hash": 210498386 }, - "m_imageFilename": { - "type": "std::string", + "m_characterSchool": { + "type": "unsigned int", "id": 4, - "offset": 112, - "flags": 131103, + "offset": 96, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2813328063 + "hash": 1330015234 }, - "m_iconIndex": { + "m_nameKeys": { "type": "unsigned int", "id": 5, - "offset": 144, + "offset": 100, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1265133262 + "hash": 1772225898 }, - "m_soundOnActivate": { - "type": "std::string", + "m_level": { + "type": "int", "id": 6, - "offset": 152, - "flags": 131103, + "offset": 104, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1956929714 + "hash": 801285362 }, - "m_soundOnTarget": { - "type": "std::string", + "m_wins": { + "type": "int", "id": 7, - "offset": 184, - "flags": 131103, + "offset": 108, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3444214056 + "hash": 219992347 }, - "m_targetParticleEffect": { - "type": "std::string", + "m_score": { + "type": "int", "id": 8, - "offset": 216, - "flags": 131103, + "offset": 112, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3048234723 + "hash": 809507734 }, - "m_overheadMessage": { - "type": "std::string", + "m_rank": { + "type": "int", "id": 9, - "offset": 248, - "flags": 8388639, + "offset": 116, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1701018190 + "hash": 219803942 }, - "m_requirements": { - "type": "class RequirementList", + "m_visualBlob": { + "type": "std::string", "id": 10, - "offset": 280, + "offset": 120, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2840988582 + "hash": 1691722510 }, - "m_costMap": { - "type": "class TerrainCheerCostMap", + "m_oldScore": { + "type": "int", "id": 11, - "offset": 376, + "offset": 152, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1929931701 + "hash": 30663605 } } }, - "2077268920": { - "name": "class PetStatModification", + "1871647176": { + "name": "class SharedPointer", "bases": [ + "BehaviorInstance", "PropertyClass" ], - "hash": 2077268920, + "hash": 1871647176, "properties": { - "m_name": { - "type": "std::string", + "m_behaviorTemplateNameID": { + "type": "unsigned int", "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1717359772 - }, - "m_change": { - "type": "int", - "id": 1, "offset": 104, - "flags": 31, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 320376832 + "hash": 223437287 }, - "m_actualChange": { - "type": "unsigned int", - "id": 2, - "offset": 108, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 448133229 - } - } - }, - "1271022029": { - "name": "class RaidKeyBehaviorTemplate", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 1271022029, - "properties": { - "m_behaviorName": { + "m_packedName": { "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - }, - "m_raidPortalTemplate": { - "type": "unsigned int", "id": 1, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1948761787 - } - } - }, - "897822817": { - "name": "class RaidManagerBehaviorTemplate", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 897822817, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, + "offset": 112, + "flags": 65543, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3130754092 + "hash": 1805208228 }, - "m_battlegroundTemplateName": { + "m_signText": { "type": "std::string", - "id": 1, - "offset": 120, - "flags": 7, + "id": 2, + "offset": 144, + "flags": 65543, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2598590755 + "hash": 2920366641 } } }, - "502121191": { - "name": "class GardenPlant*", + "168463177": { + "name": "class CreationNameSelectWindowSWF", "bases": [ + "Window", "PropertyClass" ], - "hash": 502121191, + "hash": 168463177, "properties": { - "m_position": { - "type": "class Vector3D", + "m_sName": { + "type": "std::string", "id": 0, - "offset": 72, - "flags": 31, + "offset": 80, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3697900983 + "hash": 2306437263 }, - "m_templateID": { - "type": "unsigned int", + "m_Children": { + "type": "class SharedPointer", "id": 1, - "offset": 84, - "flags": 31, - "container": "Static", - "dynamic": false, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 1286746870 + "pointer": true, + "hash": 2621225959 }, - "m_nextStageTimeSeconds": { + "m_Style": { "type": "unsigned int", "id": 2, - "offset": 92, - "flags": 31, + "offset": 152, + "flags": 1048583, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 752026046 + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "SCALE_CHILDREN": 2, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "FOCUS_LOCKED": 64, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152 + } }, - "m_flags": { + "m_Flags": { "type": "unsigned int", "id": 3, - "offset": 88, - "flags": 31, + "offset": 156, + "flags": 1048583, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1005801050 + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } }, - "m_needsWaterTimeSeconds": { - "type": "unsigned int", + "m_Window": { + "type": "class Rect", "id": 4, - "offset": 100, - "flags": 31, + "offset": 160, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1144013149 + "hash": 3105139380 }, - "m_needsSunTimeSeconds": { - "type": "unsigned int", + "m_fTargetAlpha": { + "type": "float", "id": 5, - "offset": 104, - "flags": 31, + "offset": 212, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1376682128 + "hash": 1809129834 }, - "m_needsPollinationTimeSeconds": { - "type": "unsigned int", + "m_fDisabledAlpha": { + "type": "float", "id": 6, - "offset": 108, - "flags": 31, + "offset": 216, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1487147427 + "hash": 1389987675 }, - "m_needsMagicTimeSeconds": { - "type": "unsigned int", + "m_fAlpha": { + "type": "float", "id": 7, - "offset": 112, - "flags": 31, + "offset": 208, + "flags": 65671, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 655591099 + "hash": 482130755 }, - "m_needsMusicTimeSeconds": { - "type": "unsigned int", + "m_pWindowStyle": { + "type": "class SharedPointer", "id": 8, - "offset": 116, - "flags": 31, + "offset": 232, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 799722843 + "pointer": true, + "hash": 3623628394 }, - "m_harvestTimeSeconds": { - "type": "unsigned int", + "m_sHelp": { + "type": "std::wstring", "id": 9, - "offset": 96, - "flags": 31, + "offset": 248, + "flags": 4194439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 675583752 + "hash": 2102211316 }, - "m_pestCheckTimeSeconds": { - "type": "unsigned int", + "m_sScript": { + "type": "std::string", "id": 10, - "offset": 120, - "flags": 31, + "offset": 352, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2302681477 + "hash": 1846695875 }, - "m_pestTemplateID": { - "type": "unsigned int", + "m_Offset": { + "type": "class Point", "id": 11, - "offset": 124, - "flags": 31, + "offset": 192, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1301457330 + "hash": 3389835433 }, - "m_pestProtectionTemplateID": { - "type": "unsigned int", + "m_Scale": { + "type": "class Point", "id": 12, - "offset": 128, - "flags": 31, + "offset": 200, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1429720889 + "hash": 2547159940 }, - "m_pestProtectionTimeSeconds": { - "type": "unsigned int", + "m_sTip": { + "type": "std::wstring", "id": 13, - "offset": 132, - "flags": 31, + "offset": 392, + "flags": 4194439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1440479886 + "hash": 1513510520 }, - "m_stageStartTimeSeconds": { - "type": "unsigned int", + "m_BubbleList": { + "type": "class WindowBubble", "id": 14, - "offset": 136, - "flags": 31, - "container": "Static", - "dynamic": false, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 1075432461 + "hash": 2587533771 }, - "m_likesDislikesModifier": { - "type": "float", + "m_ParentOffset": { + "type": "class Rect", "id": 15, - "offset": 140, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 840714742 - }, - "m_plantIdentifierForETL": { - "type": "gid", - "id": 16, - "offset": 144, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 450491014 - }, - "m_harvestCount": { - "type": "unsigned int", - "id": 17, - "offset": 152, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 245460819 - } - } - }, - "501413032": { - "name": "class PhysicsSimMassCylinder*", - "bases": [ - "PhysicsSimMassSphere", - "PhysicsSimMass", - "PropertyClass" - ], - "hash": 501413032, - "properties": {} - }, - "2079568963": { - "name": "class ServiceOptionBase", - "bases": [ - "PropertyClass" - ], - "hash": 2079568963, - "properties": { - "m_serviceName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2206028813 - }, - "m_iconKey": { - "type": "std::string", - "id": 1, - "offset": 168, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2457138637 - }, - "m_displayKey": { - "type": "std::string", - "id": 2, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3023276954 - }, - "m_serviceIndex": { - "type": "unsigned int", - "id": 3, - "offset": 204, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2103126710 - }, - "m_forceInteract": { - "type": "bool", - "id": 4, - "offset": 200, - "flags": 31, + "offset": 176, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1705789564 + "hash": 3091503757 } } }, - "501372072": { - "name": "class PhysicsSimMassCylinder", - "bases": [ - "PhysicsSimMassSphere", - "PhysicsSimMass", - "PropertyClass" - ], - "hash": 501372072, + "1497788074": { + "name": "std::string", + "bases": [], + "hash": 1497788074, "properties": {} }, - "1271955680": { - "name": "class GameEffectTemplateList", - "bases": [ - "PropertyClass" - ], - "hash": 1271955680, - "properties": { - "m_effectTemplates": { - "type": "class GameEffectTemplate*", - "id": 0, - "offset": 72, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1951025928 - } - } - }, - "898019150": { - "name": "class SharedPointer", + "593680133": { + "name": "class SharedPointer", "bases": [ + "ZoneTokenBaseControl", "Window", "PropertyClass" ], - "hash": 898019150, + "hash": 593680133, "properties": { "m_sName": { "type": "std::string", @@ -686832,59 +684633,129 @@ } } }, - "2078482989": { - "name": "class SharedPointer", + "1017639429": { + "name": "class MoraleModificationMap", "bases": [ "PropertyClass" ], - "hash": 2078482989, + "hash": 1017639429, "properties": { - "m_numMatchesRequired": { - "type": "unsigned int", + "m_nMoraleChanceAmt": { + "type": "int", "id": 0, "offset": 72, - "flags": 7, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2289964291 + "hash": 853293452 }, - "m_pvpType": { - "type": "enum DailyPvPInfo::DailyPvPTypes", + "m_kActionType": { + "type": "enum DerbyActionTargetType", "id": 1, "offset": 76, - "flags": 2097159, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 876371151, + "hash": 3131470053, "enum_options": { - "DPVP_Solo_Ranked": 0 + "Jump": 0, + "Duck": 1 } + } + } + }, + "1479974833": { + "name": "class Matrix3x3", + "bases": [], + "hash": 1479974833, + "properties": {} + }, + "1873698648": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1873698648, + "properties": { + "m_items": { + "type": "class SharedPointer", + "id": 0, + "offset": 72, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2089538472 }, - "m_winRequired": { - "type": "bool", + "m_crownShopLayout": { + "type": "class SharedPointer", + "id": 1, + "offset": 88, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2296174117 + }, + "m_recomendedItems": { + "type": "class SharedPointer", "id": 2, - "offset": 80, - "flags": 7, + "offset": 104, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 971256066 + }, + "m_crownShopSegReqsSummary": { + "type": "class SharedPointer", + "id": 3, + "offset": 120, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 2152734186 + }, + "m_wishlistMaxSize": { + "type": "int", + "id": 4, + "offset": 136, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 850879554 + "hash": 590778194 + }, + "m_wishlistSBExpansionSize": { + "type": "int", + "id": 5, + "offset": 140, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1131167734 } } }, - "2079353215": { - "name": "class WizDisableItemStatEffect", + "588389354": { + "name": "class TransformationEffect*", "bases": [ - "StatisticEffect", "GameEffectBase", "PropertyClass" ], - "hash": 2079353215, + "hash": 588389354, "properties": { "m_currentTickCount": { "type": "double", @@ -686963,46 +684834,106 @@ "pointer": false, "hash": 716479635 }, - "m_lookupIndex": { - "type": "int", + "m_sRace": { + "type": "std::string", "id": 7, "offset": 128, + "flags": 268435487, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2306580681, + "enum_options": { + "__BASECLASS": "CharacterRaceTable" + } + }, + "m_eGender": { + "type": "enum eGender", + "id": 8, + "offset": 160, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1626623948 - } - } - }, - "501815053": { - "name": "class OrderedWorlds", - "bases": [ - "PropertyClass" - ], - "hash": 501815053, - "properties": { - "m_worldKeys": { + "hash": 2776344943 + }, + "m_fScale": { + "type": "float", + "id": 9, + "offset": 164, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 503137701 + }, + "m_nPrimaryColor": { + "type": "int", + "id": 10, + "offset": 168, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 310334923 + }, + "m_nSecondaryColor": { + "type": "int", + "id": 11, + "offset": 172, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 516938671 + }, + "m_nPatternOption": { + "type": "int", + "id": 12, + "offset": 176, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 413195679 + }, + "m_nGeometryOption": { + "type": "int", + "id": 13, + "offset": 180, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 676541869 + }, + "m_sNaturalAttack": { "type": "std::string", - "id": 0, - "offset": 80, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": true, + "id": 14, + "offset": 184, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, "pointer": false, - "hash": 1846654431 + "hash": 2131867453 } } }, - "1284435779": { - "name": "class JewelShopOption", + "1466014316": { + "name": "class PaidLootRollStationOption", "bases": [ "ServiceOptionBase", "PropertyClass" ], - "hash": 1284435779, + "hash": 1466014316, "properties": { "m_serviceName": { "type": "std::string", @@ -687061,849 +684992,950 @@ } } }, - "899143391": { - "name": "class SharedPointer", + "169948875": { + "name": "class ClientHidePolymorphFloatyTextCinematicAction", "bases": [ + "HidePolymorphFloatyTextCinematicAction", + "ActorCinematicAction", + "CinematicAction", "PropertyClass" ], - "hash": 899143391, + "hash": 169948875, "properties": { - "m_offsetType": { - "type": "enum LeashOffsetOverride::LeashOffsetType", + "m_timeOffset": { + "type": "float", "id": 0, "offset": 72, - "flags": 2097159, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1559902382, - "enum_options": { - "LOT_UNRESTRICTED": 0, - "LOT_RIGHTONLY": 1, - "LOT_LEFTONLY": 2 - } + "hash": 2237098605 + }, + "m_actor": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2285866132 } } }, - "501815050": { - "name": "class OrderedWorlds*", + "1873343960": { + "name": "class SoftEnumList*", "bases": [ "PropertyClass" ], - "hash": 501815050, + "hash": 1873343960, "properties": { - "m_worldKeys": { + "m_enums": { "type": "std::string", "id": 0, - "offset": 80, + "offset": 128, "flags": 7, "container": "List", "dynamic": true, - "singleton": true, + "singleton": false, "pointer": false, - "hash": 1846654431 + "hash": 2291006147 } } }, - "1278379702": { - "name": "class QueuedCombatCinematicAction", + "587810934": { + "name": "class ClientGameEffectTimerSoundTrigger*", "bases": [ - "CinematicAction", + "GameEffectTimerSoundTrigger", + "GameEffectTimerTrigger", "PropertyClass" ], - "hash": 1278379702, + "hash": 587810934, "properties": { - "m_timeOffset": { + "m_radius": { "type": "float", "id": 0, "offset": 72, - "flags": 7, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 + "hash": 989410271 + }, + "m_triggerT": { + "type": "float", + "id": 1, + "offset": 76, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2138083583 + }, + "m_soundFiles": { + "type": "std::string", + "id": 2, + "offset": 80, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 3585199735 } } }, - "898746618": { - "name": "class SharedPointer", + "1017640709": { + "name": "class MoraleModificationMap*", "bases": [ - "CastleMagicBehaviorBase", - "BehaviorInstance", "PropertyClass" ], - "hash": 898746618, + "hash": 1017640709, "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", + "m_nMoraleChanceAmt": { + "type": "int", "id": 0, - "offset": 104, - "flags": 39, + "offset": 72, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 + "hash": 853293452 }, - "m_castleMagicData": { - "type": "std::string", + "m_kActionType": { + "type": "enum DerbyActionTargetType", "id": 1, - "offset": 128, - "flags": 575, + "offset": 76, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2874597138 + "hash": 3131470053, + "enum_options": { + "Jump": 0, + "Duck": 1 + } } } }, - "1275572278": { - "name": "class ClientTextureRemapBehavior*", + "1457519768": { + "name": "class DestroyActorCinematicAction", "bases": [ - "TextureRemapBehavior", - "BehaviorInstance", + "ActorCinematicAction", + "CinematicAction", "PropertyClass" ], - "hash": 1275572278, + "hash": 1457519768, "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", + "m_timeOffset": { + "type": "float", "id": 0, - "offset": 104, - "flags": 39, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 + "hash": 2237098605 }, - "m_textureRemapList": { - "type": "class SharedPointer", + "m_actor": { + "type": "std::string", "id": 1, - "offset": 112, - "flags": 31, - "container": "List", - "dynamic": true, + "offset": 80, + "flags": 7, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3580415920 + "pointer": false, + "hash": 2285866132 } } }, - "898738405": { - "name": "class SigilSubCircle", + "169331565": { + "name": "class SharedPointer", "bases": [ "PropertyClass" ], - "hash": 898738405, + "hash": 169331565, "properties": { - "m_locationType": { - "type": "std::string", + "m_bracketGID": { + "type": "gid", "id": 0, "offset": 72, - "flags": 7, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1824460246 + "hash": 1674798632 }, - "m_locationPreference": { - "type": "std::string", + "m_creatorActorGID": { + "type": "gid", "id": 1, - "offset": 112, - "flags": 7, + "offset": 80, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2817699507 + "hash": 1339404213 }, - "m_rotation": { - "type": "float", + "m_creatorBracketGID": { + "type": "gid", "id": 2, - "offset": 152, - "flags": 7, + "offset": 88, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1497468551 + "hash": 1005482776 }, - "m_radius": { - "type": "float", + "m_teams": { + "type": "class SharedPointer", "id": 3, - "offset": 156, - "flags": 7, - "container": "Static", - "dynamic": false, + "offset": 184, + "flags": 31, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 989410271 + "pointer": true, + "hash": 981867512 }, - "m_color": { - "type": "class Color", + "m_teamSize": { + "type": "unsigned int", "id": 4, - "offset": 160, - "flags": 7, + "offset": 224, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1791663549 + "hash": 2343388751 }, - "m_cameras": { - "type": "class SigilCamera*", + "m_actorList": { + "type": "class SharedPointer", "id": 5, "offset": 168, - "flags": 7, + "flags": 6, "container": "List", "dynamic": true, "singleton": false, "pointer": true, - "hash": 2715542772 - } - } - }, - "2079848438": { - "name": "class FXDef", - "bases": [ - "PropertyClass" - ], - "hash": 2079848438, - "properties": { - "m_FXFile": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 131079, + "hash": 885135115 + }, + "m_currentRound": { + "type": "unsigned int", + "id": 6, + "offset": 144, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2810683385 + "hash": 861487416 }, - "m_stackingCategory": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 7, + "m_bracketState": { + "type": "unsigned int", + "id": 7, + "offset": 236, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2363740365 + "hash": 790945386 }, - "m_repeatTime": { - "type": "float", - "id": 2, - "offset": 136, - "flags": 7, + "m_matchNameID": { + "type": "unsigned int", + "id": 8, + "offset": 240, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 453389511 - } - } - }, - "1274256351": { - "name": "class MonsterArenaBehavior", - "bases": [ - "MonsterArenaBehaviorBase", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1274256351, - "properties": { - "m_behaviorTemplateNameID": { + "hash": 1751361288 + }, + "m_roundStartsInSeconds": { "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, + "id": 9, + "offset": 232, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 + "hash": 346233980 }, - "m_mobList": { + "m_roundTimeSeconds": { "type": "unsigned int", - "id": 1, - "offset": 112, - "flags": 65543, - "container": "List", - "dynamic": true, + "id": 10, + "offset": 228, + "flags": 63, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 347281415 + "hash": 1964849971 }, - "m_zoneGID": { + "m_scheduleID": { "type": "gid", - "id": 2, - "offset": 128, - "flags": 65543, + "id": 11, + "offset": 248, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1439120946 + }, + "m_visibleTimeSeconds": { + "type": "unsigned int", + "id": 12, + "offset": 272, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1245818841 + }, + "m_startTimeSec": { + "type": "int", + "id": 13, + "offset": 268, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1519392434 + }, + "m_registrationOpenTimeSeconds": { + "type": "unsigned int", + "id": 14, + "offset": 276, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2064854776 + }, + "m_tournamentPreparingTimeSeconds": { + "type": "unsigned int", + "id": 15, + "offset": 280, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1121720544 + }, + "m_roundBufferTimeSeconds": { + "type": "unsigned int", + "id": 16, + "offset": 284, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 671173677 + }, + "m_numberOfRounds": { + "type": "int", + "id": 17, + "offset": 148, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2081430579 + }, + "m_overrideTourneyName": { + "type": "std::string", + "id": 18, + "offset": 296, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2611946162 + }, + "m_firstTourneyNameSTKey": { + "type": "std::string", + "id": 19, + "offset": 328, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2731391050 + }, + "m_secondTourneyNameSTKey": { + "type": "std::string", + "id": 20, + "offset": 360, + "flags": 63, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1747016318 + }, + "m_subBracketIdx": { + "type": "int", + "id": 21, + "offset": 392, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1688562149 + }, + "m_scoreMultiplier": { + "type": "float", + "id": 22, + "offset": 396, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1907651624 + "hash": 545011290 }, - "m_monsterData": { - "type": "std::string", - "id": 3, - "offset": 136, - "flags": 551, + "m_preferredNumberOfTeams": { + "type": "int", + "id": 23, + "offset": 264, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3377737309 - } - } - }, - "502021134": { - "name": "class CollisionBehaviorClient*", - "bases": [ - "CollisionBehavior", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 502021134, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, + "hash": 475550641 + }, + "m_minTeams": { + "type": "int", + "id": 24, + "offset": 256, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 - } - } - }, - "1273792137": { - "name": "class ShadowCreatureCameraCutCinematicAction*", - "bases": [ - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 1273792137, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, + "hash": 1506283288 + }, + "m_maxTeams": { + "type": "int", + "id": 25, + "offset": 260, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 + "hash": 155828058 }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, + "m_specialEvent": { + "type": "bool", + "id": 26, + "offset": 416, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2285866132 - } - } - }, - "1272617897": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 1272617897, - "properties": {} - }, - "2099501888": { - "name": "class std::list >", - "bases": [], - "hash": 2099501888, - "properties": {} - }, - "899542053": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 899542053, - "properties": { - "m_guildAchievementList": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 7, + "hash": 1211693398 + }, + "m_pvpDuelModifiers": { + "type": "std::string", + "id": 27, + "offset": 424, + "flags": 31, "container": "List", "dynamic": true, "singleton": false, - "pointer": true, - "hash": 2487751645 - } - } - }, - "2086923724": { - "name": "class SharedPointer", - "bases": [ - "StopHangingRotationCinematicAction", - "ActorCinematicAction", - "CinematicAction", - "PropertyClass" - ], - "hash": 2086923724, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, "pointer": false, - "hash": 2237098605 + "hash": 1796488605 }, - "m_actor": { + "m_pvpDuelModifierTemplates": { + "type": "class SharedPointer", + "id": 28, + "offset": 472, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2010454400 + }, + "m_pvpDuelModifiersBlob": { "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, + "id": 29, + "offset": 440, + "flags": 551, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2285866132 + "hash": 2862516796 }, - "m_cloaked": { - "type": "bool", - "id": 2, - "offset": 124, - "flags": 7, + "m_premierPrizesStoreGIDsCSV": { + "type": "std::string", + "id": 30, + "offset": 488, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 7349510 + "hash": 2521625388 }, - "m_type": { - "type": "enum StopHangingRotationCinematicAction::kStopHangingTypes", - "id": 3, - "offset": 120, + "m_tournamentStyle": { + "type": "enum BracketInfo::EnumTournamentStyle", + "id": 31, + "offset": 288, "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2339468071, + "hash": 1530265666, "enum_options": { - "kStopHanging_Burn": 0, - "kStopHanging_Add": 1 + "SINGLE_ELIM": 1, + "SWISS": 0 } - } - } - }, - "503595012": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 503595012, - "properties": {} - }, - "2083411819": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 2083411819, - "properties": { - "m_zoneNameID": { - "type": "unsigned int", - "id": 0, - "offset": 72, - "flags": 39, + }, + "m_bracketRewardsList": { + "type": "class SharedPointer", + "id": 32, + "offset": 400, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 3842983067 + }, + "m_costPvPTourneyCurrency": { + "type": "int", + "id": 33, + "offset": 216, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1230021335 + "hash": 1611997610 }, - "m_time": { - "type": "unsigned int", - "id": 1, - "offset": 76, - "flags": 39, + "m_subCostPvPTourneyCurrency": { + "type": "int", + "id": 34, + "offset": 220, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 431286940 + "hash": 1871398932 }, - "m_buffer": { - "type": "std::string", - "id": 2, - "offset": 80, - "flags": 551, + "m_joinQueueRequirements": { + "type": "class SharedPointer", + "id": 35, + "offset": 96, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1794528949 - } - } - }, - "502807566": { - "name": "class CollisionBehaviorClient", - "bases": [ - "CollisionBehavior", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 502807566, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, + "pointer": true, + "hash": 2746080983 + }, + "m_joinQueueRequirementsBlob": { + "type": "std::string", + "id": 36, + "offset": 112, + "flags": 551, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 + "hash": 2615447859 } } }, - "1274010547": { - "name": "class PathActionEnterState*", + "1873072654": { + "name": "class WindowHelp*", "bases": [ - "PathBehaviorTemplate::Action", + "ControlText", + "Window", "PropertyClass" ], - "hash": 1274010547, + "hash": 1873072654, "properties": { - "m_nPathID": { - "type": "gid", + "m_sName": { + "type": "std::string", "id": 0, - "offset": 72, - "flags": 7, + "offset": 80, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 214382368 + "hash": 2306437263 }, - "m_nNodeID": { - "type": "int", + "m_Children": { + "type": "class SharedPointer", "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 152152635, - "enum_options": { - "__DEFAULT": 4294967295 - } + "pointer": true, + "hash": 2621225959 }, - "m_nPriority": { - "type": "int", + "m_Style": { + "type": "unsigned int", "id": 2, - "offset": 84, - "flags": 7, + "offset": 152, + "flags": 1048583, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1515251530, + "hash": 983582334, "enum_options": { - "__DEFAULT": 100 + "HAS_BACK": 1, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152, + "DO_NOT_WRAP": 134217728, + "FIT_TEXT": 268435456 } }, - "m_nChance": { - "type": "int", + "m_Flags": { + "type": "unsigned int", "id": 3, - "offset": 88, - "flags": 7, + "offset": 156, + "flags": 1048583, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1860748394, + "hash": 967851578, "enum_options": { - "__DEFAULT": 50 + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 } }, - "m_sStateName": { - "type": "std::string", + "m_Window": { + "type": "class Rect", "id": 4, - "offset": 96, - "flags": 7, + "offset": 160, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1788022096 - } - } - }, - "2081701582": { - "name": "class ClientDerbyModifyMoraleChance*", - "bases": [ - "DerbyModifyMoraleChance", - "DerbyEffect", - "PropertyClass" - ], - "hash": 2081701582, - "properties": { - "m_buffType": { - "type": "enum DerbyTalentBuffType", - "id": 0, - "offset": 92, - "flags": 2097183, + "hash": 3105139380 + }, + "m_fTargetAlpha": { + "type": "float", + "id": 5, + "offset": 212, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1149251982, - "enum_options": { - "Buff": 0, - "Debuff": 1, - "Neither": 2 - } + "hash": 1809129834 }, - "m_kTarget": { - "type": "enum DerbyTargetType", - "id": 1, - "offset": 96, - "flags": 2097159, + "m_fDisabledAlpha": { + "type": "float", + "id": 6, + "offset": 216, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1807803351, - "enum_options": { - "kTargetInFront": 0, - "kTargetBehind": 1, - "kTargetFirst": 2, - "kTargetSelf": 3, - "kTargetAll": 4, - "kTargetLast": 5 - } + "hash": 1389987675 }, - "m_nDuration": { - "type": "int", - "id": 2, - "offset": 104, - "flags": 31, + "m_fAlpha": { + "type": "float", + "id": 7, + "offset": 208, + "flags": 65671, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1110167982 + "hash": 482130755 }, - "m_effectID": { - "type": "unsigned int", - "id": 3, - "offset": 88, - "flags": 24, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3623628394 + }, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2347630439 + "hash": 2102211316 }, - "m_imageFilename": { + "m_sScript": { "type": "std::string", - "id": 4, - "offset": 112, - "flags": 131103, + "id": 10, + "offset": 352, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2813328063 + "hash": 1846695875 }, - "m_iconIndex": { - "type": "unsigned int", - "id": 5, - "offset": 144, - "flags": 31, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1265133262 + "hash": 3389835433 }, - "m_soundOnActivate": { - "type": "std::string", - "id": 6, - "offset": 152, - "flags": 131103, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1956929714 + "hash": 2547159940 }, - "m_soundOnTarget": { - "type": "std::string", - "id": 7, - "offset": 184, - "flags": 131103, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3444214056 + "hash": 1513510520 }, - "m_targetParticleEffect": { - "type": "std::string", - "id": 8, - "offset": 216, - "flags": 131103, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3048234723 + "hash": 3091503757 }, - "m_overheadMessage": { - "type": "std::string", - "id": 9, - "offset": 248, - "flags": 8388639, + "m_sText": { + "type": "std::wstring", + "id": 16, + "offset": 584, + "flags": 4194439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1701018190 + "hash": 2102642960 }, - "m_requirements": { - "type": "class RequirementList", - "id": 10, - "offset": 280, - "flags": 31, + "m_sTooltip": { + "type": "std::wstring", + "id": 17, + "offset": 616, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2840988582 + "hash": 1680475798 }, - "m_moraleChanceActionMap": { - "type": "class MoraleModificationMap", - "id": 11, - "offset": 376, - "flags": 31, + "m_bUseDropShadow": { + "type": "bool", + "id": 18, + "offset": 653, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1654668404 - } - } - }, - "1274010523": { - "name": "class PathActionEnterState", - "bases": [ - "PathBehaviorTemplate::Action", - "PropertyClass" - ], - "hash": 1274010523, - "properties": { - "m_nPathID": { - "type": "gid", - "id": 0, - "offset": 72, - "flags": 7, + "hash": 93063037 + }, + "m_bUseOutline": { + "type": "bool", + "id": 19, + "offset": 654, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 214382368 + "hash": 744292994 }, - "m_nNodeID": { - "type": "int", - "id": 1, - "offset": 80, - "flags": 7, + "m_bEnableWordWrap": { + "type": "bool", + "id": 20, + "offset": 655, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 152152635, - "enum_options": { - "__DEFAULT": 4294967295 - } + "hash": 430904562 }, - "m_nPriority": { - "type": "int", - "id": 2, - "offset": 84, - "flags": 7, + "m_bEnableToggle": { + "type": "bool", + "id": 21, + "offset": 652, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1515251530, - "enum_options": { - "__DEFAULT": 100 - } + "hash": 1937994142 }, - "m_nChance": { + "m_nLeadingAdjust": { "type": "int", - "id": 3, - "offset": 88, - "flags": 7, + "id": 22, + "offset": 656, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1860748394, - "enum_options": { - "__DEFAULT": 50 - } + "hash": 1559480167 + } + } + }, + "587810854": { + "name": "class ClientGameEffectTimerSoundTrigger", + "bases": [ + "GameEffectTimerSoundTrigger", + "GameEffectTimerTrigger", + "PropertyClass" + ], + "hash": 587810854, + "properties": { + "m_radius": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 31, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 989410271 }, - "m_sStateName": { - "type": "std::string", - "id": 4, - "offset": 96, - "flags": 7, + "m_triggerT": { + "type": "float", + "id": 1, + "offset": 76, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1788022096 + "hash": 2138083583 + }, + "m_soundFiles": { + "type": "std::string", + "id": 2, + "offset": 80, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 3585199735 } } }, - "902021579": { - "name": "enum BattlegroundPlayerStats::PlayerStatusEnum", - "bases": [], - "hash": 902021579, + "1452686144": { + "name": "class SharedPointer", + "bases": [ + "PropertyClass" + ], + "hash": 1452686144, "properties": {} }, - "2081356735": { - "name": "class SharedPointer", + "168649233": { + "name": "class CraftingSlot", "bases": [ - "ClientObject", "CoreObject", "PropertyClass" ], - "hash": 2081356735, + "hash": 168649233, "properties": { "m_inactiveBehaviors": { "type": "class SharedPointer", @@ -688037,39 +686069,40 @@ "pointer": false, "hash": 1054318939 }, - "m_characterId": { - "type": "gid", + "m_recipeName": { + "type": "std::string", "id": 12, - "offset": 440, - "flags": 31, + "offset": 392, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 210498418 + "hash": 3311832788 }, - "m_gameStats": { - "type": "class WizGameStats*", + "m_timeFinished": { + "type": "int", "id": 13, - "offset": 544, - "flags": 27, + "offset": 388, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, - "pointer": true, - "hash": 3194480406 + "pointer": false, + "hash": 2127619571 } } }, - "901447185": { - "name": "struct FriendData", + "1872235599": { + "name": "class ToggleInterfaceControlCinematicAction", "bases": [ + "CinematicAction", "PropertyClass" ], - "hash": 901447185, + "hash": 1872235599, "properties": { - "m_gid": { - "type": "gid", + "m_timeOffset": { + "type": "float", "id": 0, "offset": 72, "flags": 7, @@ -688077,10 +686110,10 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 267019404 + "hash": 2237098605 }, - "m_schoolName": { - "type": "std::string", + "m_maximumDurationInSeconds": { + "type": "float", "id": 1, "offset": 80, "flags": 7, @@ -688088,65 +686121,41 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 3385349572 + "hash": 1457214913 }, - "m_schoolRank": { - "type": "std::wstring", + "m_hideUI": { + "type": "bool", "id": 2, - "offset": 112, + "offset": 84, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3181478700 + "hash": 519818283 }, - "m_schoolLevel": { - "type": "int", + "m_stopMovement": { + "type": "bool", "id": 3, - "offset": 144, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 10373914 - }, - "m_showPVPOption": { - "type": "unsigned int", - "id": 4, - "offset": 148, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2052204093 - }, - "m_petTemplateID": { - "type": "unsigned int", - "id": 5, - "offset": 152, + "offset": 85, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 817215071 + "hash": 1752496036 } } }, - "2080833560": { - "name": "class ReqManaPercent", + "1445860214": { + "name": "class SharedPointer", "bases": [ - "ReqNumeric", - "Requirement", "PropertyClass" ], - "hash": 2080833560, + "hash": 1445860214, "properties": { - "m_applyNOT": { - "type": "bool", + "m_spellName": { + "type": "std::string", "id": 0, "offset": 72, "flags": 31, @@ -688154,249 +686163,133 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 1746328074, - "enum_options": { - "__DEFAULT": 0 - } + "hash": 2688485244 }, - "m_operator": { - "type": "enum Requirement::Operator", + "m_maxCopies": { + "type": "int", "id": 1, - "offset": 76, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2672792317, - "enum_options": { - "ROP_AND": 0, - "ROP_OR": 1, - "__DEFAULT": "ROP_AND" - } - }, - "m_numericValue": { - "type": "float", - "id": 2, - "offset": 80, + "offset": 104, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 521915239 - }, - "m_operatorType": { - "type": "enum ReqNumeric::OPERATOR_TYPE", - "id": 3, - "offset": 84, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2228122961, - "enum_options": { - "OPERATOR_UNKNOWN": 4294967295, - "OPERATOR_EQUALS": 0, - "OPERATOR_GREATER_THAN": 1, - "OPERATOR_LESS_THAN": 2, - "OPERATOR_GREATER_THAN_EQ": 3, - "OPERATOR_LESS_THAN_EQ": 4 - } + "hash": 191619875 } } }, - "504140983": { - "name": "class ReqAddHousingItemSlots", + "1872108962": { + "name": "enum PlayList::Progression", + "bases": [], + "hash": 1872108962, + "properties": {} + }, + "1019842935": { + "name": "class SharedPointer", "bases": [ - "Requirement", "PropertyClass" ], - "hash": 504140983, - "properties": { - "m_applyNOT": { - "type": "bool", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1746328074, - "enum_options": { - "__DEFAULT": 0 - } - }, - "m_operator": { - "type": "enum Requirement::Operator", - "id": 1, - "offset": 76, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2672792317, - "enum_options": { - "ROP_AND": 0, - "ROP_OR": 1, - "__DEFAULT": "ROP_AND" - } - } - } + "hash": 1019842935, + "properties": {} }, - "901428785": { - "name": "class TourneyTokenItemsOption", + "1443902470": { + "name": "class PathMovementBehaviorTemplate*", "bases": [ - "ServiceOptionBase", + "BehaviorTemplate", "PropertyClass" ], - "hash": 901428785, + "hash": 1443902470, "properties": { - "m_serviceName": { + "m_behaviorName": { "type": "std::string", "id": 0, "offset": 72, - "flags": 31, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2206028813 + "hash": 3130754092 }, - "m_iconKey": { - "type": "std::string", + "m_movementSpeed": { + "type": "float", "id": 1, - "offset": 168, - "flags": 31, + "offset": 120, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2457138637 + "hash": 769135219 }, - "m_displayKey": { - "type": "std::string", + "m_movementScale": { + "type": "float", "id": 2, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3023276954 - }, - "m_serviceIndex": { - "type": "unsigned int", - "id": 3, - "offset": 204, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2103126710 - }, - "m_forceInteract": { - "type": "bool", - "id": 4, - "offset": 200, - "flags": 31, + "offset": 124, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1705789564 + "hash": 768663914 } } }, - "2080038541": { - "name": "class SharedPointer", + "168756104": { + "name": "class std::list >", + "bases": [], + "hash": 168756104, + "properties": {} + }, + "588091261": { + "name": "class CastleTourHouseTemplateList*", "bases": [ - "ClearHangingEffectsCinematicAction", - "ActorCinematicAction", - "CinematicAction", "PropertyClass" ], - "hash": 2080038541, + "hash": 588091261, "properties": { - "m_timeOffset": { - "type": "float", + "m_houseTemplateList": { + "type": "unsigned int", "id": 0, "offset": 72, "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 2285866132 + "hash": 835319593 } } }, - "504116407": { - "name": "class ReqAddHousingItemSlots*", + "1018187254": { + "name": "class ZoneTokenContainer*", "bases": [ - "Requirement", "PropertyClass" ], - "hash": 504116407, + "hash": 1018187254, "properties": { - "m_applyNOT": { - "type": "bool", + "m_tokens": { + "type": "class SharedPointer", "id": 0, "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1746328074, - "enum_options": { - "__DEFAULT": 0 - } - }, - "m_operator": { - "type": "enum Requirement::Operator", - "id": 1, - "offset": 76, - "flags": 2097183, - "container": "Static", - "dynamic": false, + "flags": 7, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 2672792317, - "enum_options": { - "ROP_AND": 0, - "ROP_OR": 1, - "__DEFAULT": "ROP_AND" - } + "pointer": true, + "hash": 2621026866 } } }, - "1274905603": { - "name": "class BracketMatchInfo", + "1441629456": { + "name": "class MinigameSigilOptionAdvancedModeFields*", "bases": [ - "PvPMatchInfo", - "ArenaMatchInfo", "PropertyClass" ], - "hash": 1274905603, + "hash": 1441629456, "properties": { - "m_matchID": { - "type": "gid", + "m_sigilNameKey": { + "type": "std::string", "id": 0, "offset": 72, "flags": 31, @@ -688404,966 +686297,3139 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 1757621298 + "hash": 3055768893 }, - "m_matchNameID": { - "type": "unsigned int", + "m_sigilTextKey": { + "type": "std::string", "id": 1, - "offset": 80, + "offset": 104, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1751361288 - }, - "m_teams": { - "type": "class SharedPointer", - "id": 2, - "offset": 96, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1984373608 + "hash": 2384767873 }, - "m_matchName": { + "m_sigilEncounterInfoTextKey": { "type": "std::string", - "id": 3, - "offset": 112, + "id": 2, + "offset": 168, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2061215721 + "hash": 3121233376 }, - "m_matchTitle": { + "m_successZone": { "type": "std::string", - "id": 4, - "offset": 144, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2918442218 - }, - "m_matchZoneID": { - "type": "gid", - "id": 5, - "offset": 176, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2026205966 - }, - "m_creatorID": { - "type": "gid", - "id": 6, - "offset": 88, + "id": 3, + "offset": 200, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1051766037 + "hash": 1516681392 }, - "m_matchZone": { + "m_sigilIcon": { "type": "std::string", - "id": 7, - "offset": 184, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2061662244 - }, - "m_startTime": { - "type": "int", - "id": 8, - "offset": 216, + "id": 4, + "offset": 136, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1386968823 + "hash": 3177480156 }, - "m_status": { + "m_teamUpAllowed": { "type": "int", - "id": 9, - "offset": 220, + "id": 5, + "offset": 232, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 960781182 + "hash": 1016118542 }, - "m_friendsOnly": { + "m_isCluster": { "type": "bool", - "id": 10, + "id": 6, "offset": 236, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1420401792 - }, - "m_tournamentNameID": { - "type": "unsigned int", - "id": 11, - "offset": 224, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1799846440 - }, - "m_leagueID": { - "type": "unsigned int", - "id": 12, - "offset": 228, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 692361645 - }, - "m_seasonID": { - "type": "unsigned int", - "id": 13, - "offset": 232, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 535260643 + "hash": 1183074257 }, - "m_bUpdateLadder": { + "m_passedReqs": { "type": "bool", - "id": 14, - "offset": 248, + "id": 7, + "offset": 237, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1937525956 + "hash": 1047234766 }, - "m_maxPointsPerMatch": { - "type": "unsigned int", - "id": 15, + "m_failedRequirement": { + "type": "class SharedPointer", + "id": 8, "offset": 240, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1397040900 - }, - "m_estimatedWeight": { - "type": "float", - "id": 16, - "offset": 244, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1374360127 - }, - "m_maxELOError": { - "type": "int", - "id": 17, - "offset": 252, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 318998922 - }, - "m_uniqueMatchID": { - "type": "std::string", - "id": 18, - "offset": 264, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3291026220 - }, - "m_pvpDuelModifiersTemplates": { - "type": "class SharedPointer", - "id": 19, - "offset": 296, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1193155411 - }, - "m_teamSize": { - "type": "unsigned int", - "id": 20, - "offset": 256, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2343388751 - }, - "m_joinQueueRequirements": { - "type": "class SharedPointer", - "id": 21, - "offset": 312, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, "pointer": true, - "hash": 2746080983 - }, - "m_timeLimitSec": { + "hash": 2322583945 + } + } + }, + "588090941": { + "name": "class CastleTourHouseTemplateList", + "bases": [ + "PropertyClass" + ], + "hash": 588090941, + "properties": { + "m_houseTemplateList": { "type": "unsigned int", - "id": 22, - "offset": 328, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 312519798 - }, - "m_useHistoricDiego": { - "type": "bool", - "id": 23, - "offset": 352, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1688842509 - }, - "m_ignoredList": { - "type": "gid", - "id": 24, - "offset": 336, - "flags": 31, + "id": 0, + "offset": 72, + "flags": 7, "container": "List", "dynamic": true, "singleton": false, "pointer": false, - "hash": 1850924028 - }, - "m_matchTimer": { - "type": "float", - "id": 25, - "offset": 356, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1510935909 - }, - "m_bonusTime": { - "type": "int", - "id": 26, - "offset": 360, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1757496496 - }, - "m_passPenalty": { - "type": "int", - "id": 27, - "offset": 364, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 982951662 - }, - "m_yellowTime": { - "type": "int", - "id": 28, - "offset": 368, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1017028741 - }, - "m_redTime": { - "type": "int", - "id": 29, - "offset": 372, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1909556708 - }, - "m_minTurnTime": { - "type": "int", - "id": 30, - "offset": 376, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 652524886 - }, - "m_effects": { - "type": "class SharedPointer", - "id": 31, - "offset": 384, - "flags": 31, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 804962647 - }, - "m_updateBattlePassPoints": { - "type": "bool", - "id": 32, - "offset": 408, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 713306342 - }, - "m_battlePassWinPoints": { - "type": "int", - "id": 33, - "offset": 412, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1252337240 - }, - "m_battlePassLosePoints": { - "type": "int", - "id": 34, - "offset": 416, - "flags": 31, + "hash": 835319593 + } + } + }, + "1017798083": { + "name": "class WizardSearchResultItem*", + "bases": [ + "Search::ResultItem", + "PropertyClass" + ], + "hash": 1017798083, + "properties": { + "m_userID": { + "type": "gid", + "id": 0, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1400839869 + "hash": 1037989700 }, - "m_numTeams": { - "type": "int", - "id": 35, - "offset": 424, - "flags": 31, + "m_userName": { + "type": "std::string", + "id": 1, + "offset": 80, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1601148004 + "hash": 2213937019 }, - "m_pointsForLosingByDefeat": { - "type": "int", - "id": 36, - "offset": 432, - "flags": 31, + "m_characterID": { + "type": "gid", + "id": 2, + "offset": 112, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 394154926 + "hash": 210498386 }, - "m_pointsForWinningByDefeat": { - "type": "int", - "id": 37, - "offset": 436, - "flags": 31, + "m_characterName": { + "type": "std::wstring", + "id": 3, + "offset": 120, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1202223548 + "hash": 2815013574 }, - "m_pointsForWinningByJudgement": { - "type": "int", - "id": 38, - "offset": 440, - "flags": 31, + "m_zoneName": { + "type": "std::string", + "id": 4, + "offset": 152, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1978958934 + "hash": 2171167736 }, - "m_pointsForLosingByJudgement": { - "type": "int", - "id": 39, - "offset": 444, - "flags": 31, + "m_realmName": { + "type": "std::string", + "id": 5, + "offset": 184, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 690778376 + "hash": 3507983949 }, - "m_pointsForFleeingMatch": { + "m_level": { "type": "int", - "id": 40, - "offset": 448, + "id": 6, + "offset": 216, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 679642949 + "hash": 801285362 }, - "m_pointsForByeGame": { + "m_world": { "type": "int", - "id": 41, - "offset": 452, + "id": 7, + "offset": 232, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 729567064 + "hash": 814685730 }, - "m_scoreMultiplier": { - "type": "float", - "id": 42, - "offset": 428, + "m_nameKey": { + "type": "unsigned int", + "id": 8, + "offset": 220, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 545011290 + "hash": 1104764311 }, - "m_teamIDToBracketTeamIDList": { - "type": "class TeamGIDToBracketID", - "id": 43, - "offset": 456, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1980997052 - } - } - }, - "1274565252": { - "name": "class GroundContourBehaviorTemplate", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 1274565252, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, + "m_gender": { + "type": "enum eGender", + "id": 9, + "offset": 224, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3130754092 + "hash": 2121766730, + "enum_options": { + "Male": 1, + "Female": 0, + "Neutral": 2 + } }, - "m_maxDeviation": { - "type": "float", - "id": 1, - "offset": 120, - "flags": 7, + "m_race": { + "type": "enum eRace", + "id": 10, + "offset": 228, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 595695008 + "hash": 390582957, + "enum_options": { + "Bat": 88066, + "BatLightning": 1472842576, + "Boar": 2624962, + "CatThug": 1855674386, + "ChristmasElf": 819908552, + "ChristmasSnowman": 1146515225, + "Colossus_Ice": 1063279538, + "Cyclops": 1691813655, + "DragonBeta": 417003588, + "DragonFriendly": 69049013, + "EvilSnowman": 1579630926, + "FireElf": 443793687, + "Firecat": 2045525741, + "Frog": 2274918, + "FrostBeetle": 7692383, + "GhostBlue": 1097396892, + "GhostGreen": 882822629, + "GhostRed": 560510742, + "GhostYellow": 909974358, + "Ghoul": 82556199, + "GoatMonk": 486215564, + "GolemBrass": 1057388325, + "GolemClockwork": 1143380031, + "GolemSteel": 1660583674, + "GolemWood": 1426849876, + "HalloweenCat": 1042869199, + "Heckhound": 626736403, + "Helephant": 719065368, + "Human": 79806088, + "Hydra": 70785800, + "Imp": 84361, + "Krokomummy": 555755242, + "Kroktut": 1352354178, + "Leprechaun": 2106466410, + "LeprechaunPattyDay": 380507781, + "LightningBat": 228257682, + "Mannequin": 428442544, + "Minotaur": 949570680, + "Mount_Broom": 94637995, + "Mount_Cat": 1150940211, + "Mount_Dragon": 1565720148, + "Mount_Horse": 2054712767, + "Mount_PlayerWings": 589829552, + "Nikkos": 1563122418, + "NinjaPig": 607400740, + "Orthus": 1552590225, + "Piggle": 1897753328, + "Piggle_Valentine": 687697592, + "Piggle_ValentinePart2": 1760391091, + "Pixie": 74836240, + "RatMagician": 885542120, + "SalamanderFire": 48480175, + "SalamanderIce": 2011152164, + "SalamanderStorm": 600331072, + "Satyr": 84793363, + "Scarab": 2143810477, + "Sheep": 86220083, + "SkeletonArmored": 1791586239, + "SnowSerpent": 138621543, + "Spider": 1603064269, + "SpiderBlack": 559353179, + "SpiderBrown": 557941675, + "SpiderCrystal": 2119625297, + "SpiderGolem": 1632616514, + "Sprite": 1889156557, + "SpriteDark": 1888685518, + "Stormzilla": 252684095, + "SunBird": 1602211198, + "Transformation_ArmoredSkeleton": 1861349834, + "Transformation_CatThug": 1175387611, + "Transformation_Cat_Bandit": 1012395694, + "Transformation_ClockworkGolem": 601121214, + "Transformation_Cyclops": 620156297, + "Transformation_DarkFairy": 1206757203, + "Transformation_DraconianSorcerer": 1212016810, + "Transformation_Draconian": 450730089, + "Transformation_EarthColossus": 140119452, + "Transformation_EvilSnowman": 1497097122, + "Transformation_FatGobbler": 634003800, + "Transformation_FireElemental": 822233230, + "Transformation_FireElf": 46585468, + "Transformation_FireSalamander": 2118418114, + "Transformation_Gobbler_Skinny": 162365207, + "Transformation_GolemSteel": 1329184184, + "Transformation_Ice_Colossus": 430406408, + "Transformation_Krokomummy": 1644615769, + "Transformation_MagmaMan": 545064542, + "Transformation_Mander": 88998828, + "Transformation_NinjaPig": 1029132174, + "Transformation_Ninja_Pig_04": 7093548, + "Transformation_RatThug": 1175352795, + "Transformation_RavenMystic": 1443197359, + "Transformation_StormElemental": 637088511, + "Transformation_Treant": 1874998327, + "Transformation_WarPig": 691088645, + "Transformation_WolfScout": 263523463, + "Transformation_WolfWarrior": 6092463, + "Transformationn_SkeletonPirate": 1821341863, + "Treant": 1396597132, + "Troll": 82261620, + "Unicorn": 550546918, + "Unknown": 718677478, + "Wolverine": 528843083, + "Wraith": 1788506505, + "Wyrmkin": 379044612, + "Transformation_CyrusDrake": 94277831, + "PetEgg": 1973167984, + "GhostLady": 493415959, + "Banshee": 827805677, + "GobblerRed": 250135875, + "Ghoul_Gravedigger": 161812468, + "SkeletonWarrior": 734585814, + "BansheeBoss": 806445565, + "Seraph": 1792950125, + "CrabKing": 277875784, + "UndeadCaster": 1680689397, + "DragonFrontier": 1829438301, + "HeckhoundGhost": 872406464, + "Mount_Unicorn": 212699468, + "Jellyfish": 910724608, + "SeaDragon": 1194541306, + "Turtle": 1897184620, + "Starfish": 1447562471, + "SpinyFish": 162948281, + "Mount_Gryphon": 2110522960, + "Mount_Shark": 1170186623, + "Mount_Manta": 979931598, + "Mount_Seahorse": 1554833818, + "Mount_Seahorse_Tough": 1245859453, + "Mount_Koi": 1150937409, + "Mount_Lobster": 2025618875, + "Mount_Turtle": 1490849128, + "VenusFlyTrap": 1612039757, + "GDN_MED_BabyCarrots": 327334743, + "GDN_SM_BoomShroom": 31324632, + "GDN_SM_Dandelion": 2058674142, + "GDN_SM_Disparagus": 1732989489, + "GDN_MED_EvilSnowPeas": 747408607, + "GDN_SM_FicklePickle": 205381955, + "GDN_SM_HappyHolidaisy": 1736236340, + "GDN_MED_HelephantEars": 1803669659, + "GDN_MED_HoneySickle": 424149132, + "GDN_LG_NinjaFig": 847338104, + "GDN_LG_SnapDragon": 1076151689, + "GDN_SM_StinkWeed": 845383431, + "GDN_MED_TrumpetVine": 1922690264, + "GDN_MED_VenusFlyTrap": 1560899638, + "GDN_SM_Laughodil": 1278979588, + "GDN_LG_BreadFruitBush": 533042934, + "GDN_MED_PricklyBearCactus": 1236846986, + "GDN_MED_KingParsley": 110148182, + "LeprechaunPatriotic": 414730890, + "SeraphYuletide": 1325846853, + "DragonGhost": 1502126893, + "UnicornNightmare": 604358256, + "EvilSnowmanSandman": 1579432150, + "Colossus_Spirit": 422514215, + "Rock": 2393554, + "GDN_MED_GivingTree": 2047236132, + "Egg": 70853, + "Mount_Carpets": 1602744888, + "Kraken": 1737191829, + "Wyvern": 1727802601, + "Phoenix": 1765559002, + "Judgement": 562901781, + "ForestLord": 1390734923, + "Humongofrog": 1272123051, + "Scarecrow": 41441599, + "Mount_Ram": 77196599, + "BasketSnake": 1835657086, + "Samoorai": 522797493, + "Transformation_RavenWarrior": 701169336, + "PhoenixStorm": 1325268802, + "PhoenixDeath": 1281634042, + "GDN_LG_CouchPotatoes": 879742725, + "GDN_MED_KeyLimes": 811516024, + "Mount_BoneDragon": 1023618313, + "Mount_BigBoneDragon": 1124383680, + "Mount_FairyWings": 1904926612, + "Mount_DragonWings": 755225925, + "Mount_Pegasus": 1621244140, + "GDN_MED_BellPepper": 1710238687, + "GDN_MED_GrapesOfWrath": 1068787103, + "GDN_SM_TigerLily": 1899057048, + "WysteriaPiggle": 49173891, + "Mount_Wyvern": 1658410744, + "Mount_2P_Rhino": 1052779475, + "NightHawk": 358964390, + "Giraffe": 935214826, + "Mount_Hawk": 2070898895, + "Mount_HalloweenNightmare": 726136378, + "GobblerHalloween": 1482399836, + "Leopard": 1606863715, + "Skink": 76950867, + "Mount_Ostrich": 466111322, + "Mount_Crocagator": 1981222087, + "Transformation_Blacktusk-01": 401543565, + "Mount_Hippogriff": 2043817624, + "Transformation_Gorilla-01": 1555853240, + "Transformation_Gorilla-02": 1606184888, + "Mount_Raven": 94983735, + "Mount_Chrismoose": 1822495199, + "Mount_CandyCane": 1148551147, + "Ivy_League": 925492799, + "GDN_MED_Ivy_League": 1630077794, + "Mount_Kirin": 1168691825, + "GDN_SM_Moonflower": 2068754330, + "GDN_MED_BoonTree": 788055729, + "Snowball": 2046118016, + "Foo_Dog": 1549710807, + "ShenlongDragon": 932676736, + "Monkey": 1233866291, + "Wolfhound": 626884686, + "Redcap": 1540319086, + "Raven": 79941650, + "HollowKnight": 1107268274, + "Book": 2405826, + "GDN_MED_AngoraBunnyEars": 1547559854, + "GDN_MED_FortuneCookieTree": 786686214, + "GDN_MED_GooseTree": 809354938, + "GDN_SM_HoneyBeePlant": 1528880373, + "GDN_MED_BambooShoots": 1096708900, + "GDN_SM_Huckleberries": 1937475840, + "Rock_Moustache": 962221287, + "Efreet_Myth": 1834555522, + "Efreet": 1401700123, + "Mammoth": 1395147745, + "Triton": 1730466188, + "Gnome": 74954215, + "BoneDragon": 429245206, + "Basilisk": 1457899086, + "Chimera": 529027789, + "Transformation_GammaTemplate": 1337834518, + "Mount_Camel": 1168198963, + "Mount_RenaissanceWings": 1049782088, + "Bull_Mount": 1713506759, + "Mount_Owl": 1150938242, + "Mount_Alphyn": 487264165, + "Mount_Stag": 1150353823, + "Mount_Auroch": 509865325, + "Mount_Warg": 1150358072, + "StrangeBeast": 511334734, + "Efreet_Ice": 1820009122, + "Efreet_Storm": 1269986674, + "GDN_LG_AlligatorPear": 1293913372, + "Mount_2P_Treant": 928450863, + "Mount_2P_Dragon": 1431637933, + "Mount_Pogo_Stick_WC": 1462849298, + "Mount_Pogo_Stick_MB": 1349603090, + "GDN_LG_MeltingCheese": 1914589015, + "GDN_SM_FishOnAVine": 1734955358, + "GDN_LG_AngelOak": 1539539424, + "GDN_LG_MeltingCheese_Angel": 1254781264, + "SnowyOwl": 1682262138, + "Mount_3P_Hydra": 1207475250, + "WeaselMinstrel": 1541234616, + "MOUNT_Rickshaw": 938282973, + "Transformation_Sherlock-Bones": 509126601, + "Mount_Phoenix": 556355452, + "Toaddle": 597488187, + "Pantera": 528797696, + "WildfireTreant": 673362041, + "StoneTiger": 746336665, + "Blowfish": 1447737334, + "Smith": 78327187, + "FlyingCat": 1254472614, + "RamWarrior": 536916302, + "Ladybug": 1846384669, + "BurlapBoy": 607590898, + "DeerKnight": 560802130, + "Gargoyle": 1227701700, + "Chameleon": 596131510, + "Scorpion": 1462253104, + "GDN_SM_BoiledPeanuts": 544885684, + "GDN_SM_ClockFlower": 676513046, + "GDN_SM_DeadBeets": 650783482, + "GDN_MED_SnowApple": 1916648180, + "Eyecaramba_Violet": 1804780775, + "Eyecaramba_Green": 750346574, + "Eyecaramba_Orange": 687614854, + "Piggle_Grandfather": 131445665, + "Velociraptor": 1042311818, + "Babydactyl": 1180982194, + "Stegosaurus": 476811765, + "Mount_Pegasus_Spectral": 948250730, + "Mount_2P_Scarydactyl": 1808983335, + "Mount_2P_TRex": 1495851852, + "Therizinosaurus": 80337863, + "Runtosaurus": 476200406, + "FrilledLizard": 420993517, + "Mount_Ankylosaurus": 669692274, + "Mount_Triceratops": 1126950204, + "Mount_2P_Glider": 1630365881, + "Transformation_Thunderhorn": 1045262037, + "Transformation_Jaguar": 1080966062, + "Transformation_Pteranadon": 273836142, + "Transformation_ShadowWeaver": 255927111, + "Transformation_EagleWarrior": 1880471875, + "Mount_Falalalallama": 389890123, + "Mount_2P_WinterTreant": 1850265056, + "GDN_LG_MissileToe": 1767792974, + "GDN_MED_PointSetta": 647257205, + "Nutcracker2012": 1598217699, + "Coal2012": 1627852119, + "Mount_Sleigh": 1636615519, + "Mount_Sabertooth": 1613031507, + "Mount_MechanicalWings": 1014917438, + "PiranhaHunter": 686271163, + "Quetzal": 2020925822, + "Mount_Sloth": 1169387359, + "HollowKnightLife": 2114081886, + "BettaFish": 138088968, + "MummyCat": 62372925, + "TrojanHorse": 1725299194, + "WC_Storm_Possessed": 186960228, + "AV_Possessed": 1106693085, + "AZ_Possessed": 1106692701, + "CL_Possessed": 1106692255, + "KT_Possessed": 1106693015, + "MS_Possessed": 1106692977, + "WC_Possessed": 1106692459, + "Mount_2P_Whale": 448824263, + "Mount_2P_Chariot": 88035298, + "Mount_WarBoar": 1159836211, + "Mount_Palanquin": 47587550, + "BearCub": 672664722, + "Transformation_Minotaur": 1454233452, + "DragonGauntlet": 797645257, + "DeathUnicorn": 924144161, + "Flamingo": 1488424911, + "Mount_Gorilla": 1939919432, + "Mount_WarUnicorn": 1361393198, + "GargoyleMyth": 1819685060, + "TikiMan": 16098567, + "Siren": 79937811, + "GoldenRam": 410220227, + "Harpy": 96026632, + "SwordShield": 1668411785, + "ClockworkKnight": 1059948980, + "Mount_MechanicalEagle": 1720948645, + "Mount_Cloud": 1166233435, + "Mount_Surfboard": 1914250039, + "Mount_BetaDragon": 1023653721, + "Mount_BeeWings": 1387988401, + "Vampire": 524731385, + "FrankenBunny": 589797989, + "BumbleBee": 249592226, + "Mount_Dragonfly": 1028843656, + "BronzeGolem": 1320867859, + "TarantulaHawk": 1983939429, + "Mount_Grasshopper": 1852850928, + "FlyingSquirrel": 847551166, + "GDN_MED_Sunion": 1652707634, + "GDN_MED_SwordFern": 548761438, + "GDN_SM_SugarKhrystal": 267539461, + "GDN_SM_SawPalmetto": 1892888046, + "GDN_LG_FacePalm": 2050814140, + "GDN_LG_QueenCrapeMyrtle": 80378450, + "Transformation_ShadowTank": 1304943609, + "Transformation_ShadowHeal": 1254024185, + "Transformation_ShadowDPS": 87276537, + "Mount_Noelephant": 1383672248, + "SaintBernard": 572932242, + "ParkaFox": 2009808189, + "Goose": 75019719, + "Mount_Coconut": 791151432, + "CreepyBeetle": 345594179, + "BabyDragonfly": 1367084335, + "FennecFox": 41315063, + "PP_Leviathan": 833901526, + "PP_SunSerpent": 1062677009, + "PP_LordOfWinter": 960214698, + "PP_Medusa": 867812931, + "PP_Dryad": 147654656, + "PP_AvengingFossil": 315904647, + "PP_Sabertooth": 1799146677, + "Mount_Butterfly": 1283940943, + "Mount_Hare": 2070851023, + "Transformation_MorganthB": 197306990, + "Transformation_MorganthC": 197831278, + "Transformation_MorganthD": 200452718, + "BabyPegasus": 1215000859, + "ArcaneHelp": 1899247549, + "Mount_Vines": 98389624, + "Mount_ArcaneMinecart": 2001270930, + "Hobgoblin": 2133668461, + "Mount_2P_Rowboat": 237071469, + "ForestSpirit": 1178454602, + "Mount_SpiritWolf": 531991076, + "Otter": 84138671, + "OrigamiBird": 550984083, + "DinoSkeletal": 233277835, + "Mount_HarrowingsGreen": 1605746772, + "Mount_HarrowingsBlue": 477152436, + "Mount_HarrowingsPurple": 2092807554, + "RedPanda": 1744233845, + "Ibis": 2665577, + "Corgi": 78823875, + "Mount_Yak": 996545739, + "Mount_FlyingBalance": 436519643, + "Transformation_ShadowMalistaire": 1043814435, + "Transformation_DragonMalistaire": 841867699, + "Mount_Scarab": 1687658791, + "Transformation_MisterHound": 1973578844, + "Mount_BahHumbug": 55114077, + "Skates": 1568993965, + "Moose": 75019725, + "Mount_Gargoyle": 1456663874, + "GDN_MED_VenusFlyTrapEpic": 1594069606, + "Mount_PlayerWingsPink": 19403046, + "GDN_LG_AlligatorPearEpic": 1326804812, + "Pet_Armadillo": 825736847, + "Mount_JoustingDestrierDyeable": 1683448768, + "GDN_MED_VampireCarrots": 871596496, + "GDN_SM_WhiteTigerLilyEpic": 1703271434, + "GDN_LG_NinjaFigEpic": 938504823, + "GDN_LG_SnapDragonEpic": 2071674466, + "GDN_MED_HelephantEarsEpic": 719166107, + "GDN_MED_TrumpetVineEpic": 225854518, + "GDN_SM_DandelionEpic": 728637442, + "GDN_SM_HuckleberriesEpic": 1903258448, + "GDN_MED_SnowAppleEpic": 1231175967, + "GDN_SM_BoomShroomEpic": 981598771, + "GDN_MED_KingParsleyEpic": 2038371004, + "Mount_Raptor": 749695031, + "Pet_Toucan": 581477475, + "Pet_Squirrel": 969881395, + "Mount_WonkyDonkey": 1481657312, + "Mount_HawkPatriotic": 509149743, + "Pet_FrogAssistant": 1945041750, + "Mount_Cat2": 1151054899, + "Mount_Cat2BW": 1603515443, + "Pet_ArmadilloBW": 825733899, + "Pet_FrankieForearms": 1100195857, + "Mount_SolarSabre": 1281093703, + "MNT_MechOstrich": 258667969, + "MNT_BootsBalance": 1799191558, + "MNT_BootsDeath": 1034912971, + "MNT_BootsFire": 606061658, + "MNT_BootsIce": 2142643294, + "MNT_BootsLife": 773751898, + "MNT_BootsMyth": 144792486, + "MNT_BootsStorm": 1525245121, + "Pet_CorgiBirthday": 1951779369, + "OrigamiBirdBDay": 1909935955, + "Pet_FlyingBlackCat": 432111988, + "Mount_Narwhal": 449637834, + "Mount_NightOwl": 1648420845, + "Pet_Penguin": 137342907, + "MNT_PowerGemUnicorn": 411234062, + "Pet_CrystalButterfly": 512136094, + "Mount_BabyMammoth": 185831059, + "MNT_BabaYaga": 564874997, + "Pet_BabySeal": 657606984, + "Pet_BabyYeti": 635847496, + "Transformation_BallerinaBear": 1525333600, + "Mount_StagYuletide": 1508680687, + "Transformation_TitanMedium": 1700742736, + "Transformation_TitanLarge": 718614967, + "Pet_SirenIce": 849851564, + "Mount_FlyingDeath": 1717725588, + "Mount_FlyingFire": 1177216332, + "Mount_FlyingIce": 1238841184, + "Mount_FlyingLife": 433397684, + "Mount_FlyingMyth": 164983572, + "Mount_FlyingStorm": 375872049, + "Dragonling": 1730534849, + "Pet_EggChicken": 952873217, + "HeckhoundGhost_MAW": 893368960, + "Mount_WinterTrain": 751515281, + "Mount_RubberDucky": 1826548479, + "Pet_BansheeSpellwrit": 917979583, + "Pet_SamooraiSpellwrit": 370057597, + "Mount_UnicornAstral": 886914505, + "Guest_Boochbeard": 1958574095, + "Pet_MouseSister": 1267930350, + "Pet_MouseFather": 2010008339, + "Pet_VampireSquirrel": 250588691, + "Mount_CoffinCar": 1387606595, + "Mount_BabyElephant": 2026559639, + "Pet_RoadHog": 601156960, + "Mount_WolfGryphonWings": 543038283, + "MNT_ClockworkSteed": 891371132, + "Mount_Chopper": 1196683136, + "Pet_ButterflyLamb": 527214392, + "Pet_MouseMother": 2012687123, + "Pet_MouseBrother": 1174380856, + "Pet_Cherub": 769208559, + "GDN_SM_Jewel": 1104045832, + "MR_Death_Duncan_Grimwater": 1850289001, + "Mount_DesertRunner": 2049036229, + "Pet_MonkeyMirage": 418612892, + "Pet_ClockworkOwl": 1038482431, + "Pet_NinjaTurtle": 2024540686, + "Mount_Vines_Halloween": 82852149, + "Mount_SwarmBat": 1151836459, + "Mount_2P_NinjaDragon": 1239694057, + "Mount_Gobler": 1820615236, + "Mount_MaryleboneCar": 2027689685, + "JackOLantern": 1016361578, + "Transformation_DjinnCommonA_Balance": 996127128, + "Transformation_MedicineMode": 25960701, + "CactusHopper": 1956293007, + "Transformation_Mimic_ChestGold_A": 414145432, + "Mount_Ghoulture": 1067671195, + "Pet_Macaw": 1087278472, + "Pet_SandWorm": 653200803, + "Transformation_DromelDancer": 1071824116, + "Pet_Bunnies": 695874547, + "Mount_Snowboard": 1914380015, + "Transformation_DrommelDancer": 226294468, + "Mount_Carpet_New": 1618650322, + "Mount_BunnySleigh": 599915427, + "Helephant_Heart": 419161272, + "Mount_Snowboard_Holiday": 876339060, + "Transformation_GhostDog": 646575420, + "Transformation_PrinceGobblestone": 693826496, + "Transformation_Mithraya": 1240010601, + "Transformation_LuskaCharmbeak": 897469730, + "Transformation_YoungCyrusDrake": 15595663, + "Kookaburra": 1069759154, + "BorealisGolemPet": 797488492, + "FlyingEyePet": 505959833, + "StormCloudPet": 548463069, + "BullPet": 1993917801, + "OpossumPet": 284003652, + "GhoulturePet": 939920734, + "StormCloudPetB": 548463001, + "StormCloudPetC": 548463003, + "Guest_LordNightshade": 1221409981, + "BullPetB": 1993917561, + "BullPetC": 1993917553, + "BullPetD": 1993917513, + "Transformation_ShadowCrit": 1392195065, + "Mount_Pennyfarthing": 1551926344, + "Mount_RowboatPirate": 2079208803, + "Mount_IceCube": 1261861595, + "Guest_LostMaiden": 883675592, + "Guest_BoatswainMcGee": 1359750850, + "Guest_ChiefMateMcGurk": 329643845, + "Guest_DoomedBones": 2015643882, + "Guest_SpectreoftheBrocken": 266357448, + "Guest_DrownedKnight": 1100966093, + "Guest_TarntheDrowned": 329540205, + "Guest_DisloyalKnight": 1853240753, + "Guest_NamelessKnight": 1065677876, + "Guest_LambentFire": 489886605, + "Guest_LordoftheBrocken": 1662003371, + "Guest_StormCaiman": 1147500291, + "Guest_GrinningDeathMoon": 737595789, + "Guest_MoonSkullWight": 1720039490, + "Guest_HuemacSpearWreath": 1522021131, + "Guest_HowlingBanshee": 1340855338, + "Guest_Sea-Booter": 1818491983, + "Guest_DeadRover": 1009273257, + "Guest_CelestianRemnant": 1312268448, + "Guest_Shadow-WebConscript": 1500529411, + "Guest_Shadow-WebMercenary": 623672171, + "Guest_Shadow-WebWraith": 810956416, + "Guest_Shadow-WebHaunt": 500586883, + "Guest_CelestianPartisan": 633346892, + "Guest_CelestianDefender": 482102727, + "Guest_ThraleBonestriker": 1172972733, + "Guest_VorgenSoulbreaker": 1935693246, + "Guest_ServusBloodsword": 1703995647, + "Guest_QueenCalypso": 845803519, + "Guest_BlueBart": 77043390, + "Guest_KarolakNightspinner": 1008737316, + "Guest_ArachtusDuskweb": 1787750209, + "Guest_ZhalarStarcloud": 1453644105, + "Guest_NarallorNightborn": 1963363700, + "Guest_SelwynSkywatcher": 1413136893, + "Guest_OsseusNightreaver": 306827003, + "Guest_IrateBanshee": 865143109, + "Guest_FuriousHowler": 1607252558, + "Guest_CryingSpirit": 1559074820, + "Guest_UndeadDraconian": 169249571, + "Guest_ReanimatedDraconian": 247067807, + "Guest_GhastlySlave": 80127661, + "Guest_BoundSpecter": 369706568, + "Guest_NecroticHaunter": 1714841563, + "Guest_LoathsomeCreeper": 1087245229, + "Guest_FleshrotRetriever": 1925148031, + "Guest_BarbarianSpirit": 2112552732, + "Guest_BeghastionCrowcaller": 586628832, + "Guest_BeghastionFieldburner": 1650751959, + "Guest_BoneWarrior": 76802026, + "Guest_FleshlessSentry": 708431820, + "Guest_PirateRavager": 945157059, + "Guest_RottenScallywag": 974666855, + "Guest_ArmoredBonewalker": 1444568072, + "Guest_UndeadWizard": 1622435563, + "Guest_SoulSearcher": 2094392941, + "Guest_DecayingBlackguard": 412324062, + "Guest_FoulReaper": 919877614, + "Guest_NightShadow": 1675932226, + "Guest_MotleyCrew": 653779218, + "Guest_OrinGrimcaster": 472649066, + "Guest_GhostofSylviaDrake": 218332449, + "Guest_VikaMarkmaker": 1145181168, + "Guest_VasekAshweaver": 1001434369, + "Guest_FireWraith": 1027720368, + "Guest_HungrySoul": 1722435576, + "Guest_FrostBones": 456145606, + "Guest_SnowSkull": 835837850, + "Guest_WinterSkull": 1556601065, + "Guest_LothinDoombringer": 860995070, + "Guest_MimirWinterbane": 1111898070, + "Guest_KulgrimSoulsunder": 278037985, + "Guest_HitojiniDeathcaster": 1144499043, + "Guest_GaikotsuSkeleton": 1113949902, + "Guest_PhantomAce": 1917639347, + "Guest_PhantomGlider": 849918336, + "Guest_Krokomummy": 857773886, + "Guest_NiriniAncientGuard": 359313880, + "Guest_NiriniFireSpirit": 1863811476, + "Guest_VaultHaunter": 197723476, + "Guest_VigilantDefender": 171276829, + "Guest_WanderingAhnicSpirit": 1702865088, + "Guest_ForgottenDjeseritSoul": 1170568256, + "Guest_KaranahnDeathfeeder": 1612857711, + "Guest_ShamblingAhnic": 1579129677, + "Guest_RisenDjeserit": 287855500, + "Guest_KaranahnMortifier": 874288111, + "Guest_DjeseritDweller": 2058423665, + "Guest_AhnicStrider": 1776992302, + "Guest_GuardianoftheFang": 1816795524, + "Guest_DefenderoftheFang": 354353604, + "Guest_ProtectoroftheFang": 1290191037, + "Guest_SouloftheCharmed": 422890577, + "Guest_KaranahnKeeper": 77581557, + "Guest_NiriniIntimidator": 677205957, + "Guest_CondemnedSoldier": 449152244, + "Guest_NimahtheWicked": 1298248873, + "Guest_AkoriNirini": 1123159753, + "Guest_SoulScavenger": 892852198, + "Guest_KeeperoftheFang": 1676773499, + "Guest_ItennuSokkwi": 699159408, + "Guest_Tempestra": 334938435, + "Guest_QueenIrisiDjeserit": 1861434100, + "Guest_TheBonekeeper": 1302503449, + "Guest_CryptScavenger": 1893795791, + "Guest_Soulsapper": 1699756010, + "Guest_KingUroAhnic": 1788825731, + "Guest_KingShemetDjeserit": 1350067043, + "Guest_UnholyWraith": 1871146013, + "Guest_PikeSpiritcrusher": 498715531, + "Guest_SpellwritScreamer": 801626733, + "Guest_SpellwritRonin": 1671439174, + "Guest_Shrieker": 805966229, + "Guest_GravePhantom": 731622936, + "Guest_NightmareSpirit": 230709057, + "Guest_VengefulCreeper": 1100197884, + "Guest_TombRoamer": 1277825068, + "Guest_ShieldSkeleton": 1634270152, + "Guest_AgonyWraith": 30384496, + "Guest_IcyGhost": 768353592, + "Guest_Half-wittedSkeleton": 647996362, + "Guest_LazyHenchman": 1329554426, + "Guest_TiredFighter": 210248632, + "Guest_Screecher": 469007005, + "Guest_SeethingWraith": 664913100, + "Guest_ColdConfusion": 1304943934, + "Guest_OssuaryConscript": 1017667150, + "Guest_Ghulture": 1330558655, + "Guest_BodyGuard": 1048581801, + "Guest_SpectralGuardian": 422805602, + "Guest_VaultConscript": 1388398065, + "Guest_FootPatrol": 1692393321, + "Guest_ArmedGuard": 2045920536, + "Guest_Chilly": 1764665905, + "Guest_Achey": 973370519, + "Guest_Sneezy": 1769440773, + "Guest_Cough": 1170200073, + "Guest_Shadowbones": 1316133167, + "Guest_ForgottenConscript": 1466348281, + "Guest_BarracksGuardian": 236603440, + "Guest_CryptConscript": 314755436, + "Guest_DurvishSeeker": 1825622267, + "Guest_MedicineMode": 167015574, + "Guest_Myriarch2": 593881680, + "Guest_Myriarch3": 593881616, + "Guest_MyriarchEphialtes": 773531895, + "Guest_MotherGhulture": 1585201915, + "Guest_CaptainCosrow": 727107332, + "Guest_VizierRafaj": 214040637, + "Guest_DarkmoorSerf": 1522169114, + "Guest_DarkmoorSquire": 1822567109, + "Guest_ScarletWampyr": 1683954247, + "Guest_DraconianRevenant": 741497298, + "Guest_DraconianEidolon": 107733297, + "Guest_AnguishedWraith": 1078602022, + "Guest_DraconianPyromancer": 729577007, + "Guest_DraconianThaumaturge": 189734361, + "Guest_DraconianDiviner": 472633746, + "Guest_DraconianConjurer": 1824962835, + "Guest_DraconianTheurgist": 1828628416, + "Guest_DraconianNecromancer": 175364324, + "Guest_DraconianSorcerer": 1262893339, + "Guest_SirBlackwater": 366308464, + "Guest_AkhtangWormCrawl": 1589032404, + "Guest_SpiritofDarkmoor": 579455915, + "Guest_ShanevonShane": 2096517522, + "Guest_YevgenyNightCreeper": 1535282881, + "Guest_MalistairetheUndying": 824508513, + "Guest_Bunferatu": 1015806005, + "Guest_CountBelaBlackSleep": 761647679, + "Guest_DeathSoldier": 1715141574, + "Guest_SorrowWhisperer": 556532003, + "Guest_GriefSpectre": 1425488559, + "Guest_HowlingShade": 631460247, + "Guest_WalkingDead": 318527090, + "Guest_Akuji": 977635799, + "Guest_TorturedKakedaSoul": 1716874833, + "Guest_KakedaSpiritSlave": 1814699344, + "Guest_DishonoredSamoorai": 320085744, + "Guest_CursedRonin": 1204095686, + "Guest_TomugawatheEvil": 166125424, + "Guest_OyotomitheDefiler": 1672714483, + "Guest_Fushiko": 801492770, + "Guest_BrokenLandGuardian": 294671991, + "Guest_ShatteredSkyGuardian": 746681463, + "Guest_SunderedSeamGuardian": 1439618652, + "Guest_BrokenLandSpirit": 860105895, + "Guest_ShatteredSkySpirit": 2104112380, + "Guest_SunderedSeamSpirit": 69572311, + "Guest_LostSoul": 204361577, + "Guest_RottingFodder": 308249734, + "Guest_HauntedMinion": 689597338, + "Guest_FieldGuard": 1175228991, + "Guest_SkeletalWarrior": 778393993, + "Guest_SkeletalPirate": 1476730220, + "Guest_WanderingSpecter": 126188449, + "Guest_LivingScarecrow": 1442943145, + "Guest_FrostPhantom": 1809776664, + "Guest_FireShrieker": 173332719, + "Guest_CryptCrawler": 2118799272, + "Guest_ViridianSpecter": 383149977, + "Guest_ArgentClatterer": 525414714, + "Guest_SwimmingSpecter": 1494025094, + "Guest_ScarletScreamer": 1689589811, + "Guest_BoneDigger": 1351421123, + "Guest_HowlingGhost": 664019391, + "Guest_SkeletalSoldier": 750463116, + "Guest_MaidenofHate": 444442868, + "Guest_SkeletalRetainer": 1409032775, + "Guest_SoulHunter": 1900267551, + "Guest_MidnightShuffler": 1991052065, + "Guest_PlaguedSoul": 419071561, + "Guest_HauntingBanshee": 345837052, + "Guest_SimontheSayer": 1352807820, + "Guest_TheHarvestLord": 1923575206, + "Guest_LadyBlackhope": 1403431623, + "Guest_SergeantSkullsplitter": 898737831, + "Guest_Foulgaze": 2063419769, + "Guest_Wormguts": 788697519, + "Guest_Rattlebones": 125602919, + "Guest_Paulson": 1112716921, + "Guest_Grubb": 1167554274, + "Guest_Norton": 581021964, + "Guest_NightStalker": 1447653309, + "Guest_AddereTimeo": 1491420030, + "Guest_TheReaper": 1526369733, + "Guest_AngrusHollowsoul": 1427862805, + "Guest_OrrickNightglider": 951078615, + "Guest_SteelSentinel": 885250894, + "Guest_Shadow-WebSoldier": 2014925398, + "Guest_LostCeleste": 1725301830, + "Guest_CapnNigelSkullcrack": 1665439970, + "Guest_HaulAwayJoe": 1075985331, + "Guest_OldMaui": 15300840, + "Guest_LordAgue": 140791419, + "Guest_MelweenaSmite": 432188189, + "Guest_HalloweenTrickster": 2043736417, + "Guest_PumpkinHead": 1098332105, + "Guest_BaronMordecai": 817370918, + "Guest_KaimaniteMummy": 1332671420, + "Guest_VeggieRevanant": 928504192, + "Guest_BloodBat": 76467389, + "Guest_DeadBeets": 157829578, + "Guest_Desparagus": 1130644076, + "Guest_MeanestFly-Trap": 1652898868, + "Guest_Nosferabbit": 1021159436, + "Guest_ThrallofSothmekhet": 330780177, + "Guest_VileApparition": 426627869, + "Guest_SoulServant": 1183110886, + "Guest_SoulKeeper": 917518313, + "Guest_AdmiralBontau": 2032168402, + "Guest_DeathWhisperer": 3814952, + "Mount_RollerBlades": 111369373, + "Guest_BaneWyrm": 147033576, + "Guest_BlackDragon": 939469656, + "Guest_DragonSpawn": 1829803517, + "Guest_Fire-SpitterSpawn": 616624489, + "Guest_CaoranachtheFire-Spitter": 323513000, + "Guest_Jabberwock": 1552492834, + "Guest_CatalantheLightningLizard": 1155778705, + "Guest_WhiteDragon": 2009449331, + "Guest_WinterWyrm": 478925069, + "Guest_WyrmStatue": 2119216210, + "Guest_AlgidWyrm": 1309546482, + "Guest_BruleeSucre": 390936202, + "Guest_HebitohoWyrmling": 1682026810, + "Guest_Shadowwock": 505539184, + "Guest_EirikurAxebreaker": 1361453552, + "Guest_WarWyrm": 1124740742, + "Guest_StrayFireflier": 610979811, + "Guest_BurningFlamewing": 2041225130, + "Guest_FeralLavaling": 371483057, + "Guest_SplinterWing": 923421333, + "Guest_ChanticoBlueAir": 1572441903, + "Guest_CopperWingGuard": 302783602, + "Guest_ObsidianBeak": 2016227452, + "Guest_CaquixNineShadows": 2070101060, + "Guest_LustrousTlalocan": 1201030473, + "Guest_SeedThief": 263211181, + "Guest_PopZotzUnluckyDay": 1416773489, + "Guest_NezathePoet": 1905861376, + "Guest_MazenStingerBee": 1642023393, + "Guest_ImperialJusticePayne": 1285679745, + "Guest_AssistantWardenPorfiry": 22099059, + "Guest_MarshalKamensky": 524669730, + "Guest_WardenVissarovich": 882556823, + "Guest_GulagGuard": 100744159, + "Guest_CaptainKravchuck": 690830770, + "Guest_ImperialGuard": 346803640, + "Guest_IronPaw": 1797329688, + "Guest_TundarianEnforcer": 134256836, + "Guest_Ivan": 996220221, + "Guest_ColonelOrlov": 1381254189, + "Guest_IronPawIntakeCaptain": 2099184835, + "Guest_SolitaryWarden": 1503529566, + "Guest_CaptainZubkov": 793725366, + "Guest_SergeantBobrik": 722182485, + "Guest_WailingWraith": 946976407, + "EggChick": 1452316301, + "BunnyMallow": 518233330, + "Guest_ThunderHornZombie": 1007920040, + "Guest_SmokingMirrorZombie": 340971759, + "Guest_ShamblingZombie": 1920485146, + "Guest_MoonSkullZombie": 809249764, + "Guest_DeathlessStormHorn": 812397213, + "Guest_MozarTurtleHunter": 561749043, + "Guest_GuillermoShatterer": 499565054, + "Guest_XiuhcoatlBarbedTooth": 1719245305, + "Guest_AzcalFireAnt": 1281366337, + "Guest_TlotzinMoonThief": 407285761, + "Guest_PocaCruelStar": 1117353085, + "Guest_ThunderHornGhoul": 597878999, + "Guest_TezomocStoneSinger": 733511940, + "Guest_EzhuaBadTaste": 632779219, + "Guest_UacalxochitlBloodEye": 1614856226, + "Guest_WanadiBlackSky": 349829749, + "Guest_ElMarrow": 483880636, + "Guest_GrimCalaca": 1534029144, + "Guest_XipeFlayedOne": 1343577398, + "Guest_MotecumaDeathMask": 1782393717, + "Guest_EkeChuah": 13416770, + "Guest_AnacaonaBlackSnake": 1543344897, + "Guest_SmokingMirrorWight": 776452983, + "Guest_Tolkemec": 217428080, + "Mount_Fox": 77199428, + "PP_OwlProtege": 268847192, + "Mount_SharkSki": 331374103, + "PP_Dolphin": 1662291612, + "Mount_CastSymbol_D": 1134428045, + "Mount_CastSymbol_E": 1136525197, + "Mount_CastSymbol_F": 1138622349, + "Mount_CastSymbol_G": 1140719501, + "Mount_CastSymbol_A": 1128136589, + "Mount_CastSymbol_B": 1130233741, + "Mount_CastSymbol_C": 1132330893, + "Guest_LionSpectralGuardian": 1791543691, + "Guest_KillmareSpiritwalker": 1818928165, + "Guest_ZebraSpectralGuardian": 815933596, + "Guest_GorillaSpectralGuardian": 1635182119, + "Guest_IklawGhostWarrior": 373465545, + "Guest_BwanaShadowriver": 1307628747, + "Guest_ElephantSpectralGuardian": 1579402208, + "Guest_ZangaZebu": 1218173119, + "Guest_GrumishGreataxe": 486953385, + "PP_GlowFairy_A": 2028856748, + "Guest_RestlessSoldier": 1142701763, + "Guest_WanderingWizard": 209518514, + "Guest_ColonelIvanenko": 399169035, + "Guest_DetollitheDestroyer": 655767295, + "Guest_Jawniak": 1791298433, + "Guest_Tajniak": 356182394, + "Guest_Ygor": 996316081, + "Guest_KyaniteLancer": 2136703656, + "Guest_VestaShadowmark": 1846747836, + "Guest_ZoraSteelwielder": 1186470644, + "Guest_AndorBristleback": 1949884743, + "Guest_GalliumPaladin": 1812340868, + "Guest_GalliumFootman": 1295203112, + "Guest_GalliumShardtrooper": 1210699836, + "Guest_GalliumJuggernaut": 3527584, + "Guest_VladimirDarkflame": 1575322237, + "Guest_KyaniteLieutenant": 561528977, + "Guest_DrusillaMorningbane": 155837810, + "Guest_KyaniteValkyrie": 53242136, + "Transformation_20Q_SherlockBones": 1112674320, + "Guest_DevoraShadowcrown": 1813459117, + "Guest_YoualaNightDrinker": 881289828, + "Guest_Pendragon": 715669945, + "Guest_CelestianRevenant": 515730327, + "Guest_SoullessServant": 1505662730, + "Guest_SpiritServant": 104517373, + "Guest_SoulSerf": 1188214406, + "Guest_ServileSoul": 871844607, + "Guest_SkeletalCorsair": 239414410, + "Guest_RottedFodder": 1301186193, + "Guest_ScarletScreecher": 600457915, + "PP_FrankBunnyBride_A": 974707030, + "Guest_BastillaGravewynd": 2100015237, + "Guest_VilaraMoonwraith": 2067986693, + "Guest_YngvarSharptooth": 1783361972, + "Guest_TroubledWarrior": 1569033392, + "Guest_VeggieRevanant2": 928503904, + "Guest_VeggieRevanant3": 928503888, + "Guest_VeggieRevanant4": 928503872, + "Guest_VeggieRevanant5": 928503856, + "Guest_AncientQhatWarrior": 1564521104, + "Guest_EmperorPaleolo": 2079384347, + "Guest_SpiritofIntolerance": 1627658048, + "Guest_SpiritofInquiry": 1320544891, + "Guest_FirstGuardian": 1982227776, + "Guest_FallenMerc": 225926286, + "Guest_NightShadow2": 1638183490, + "Guest_NightShadow3": 1636086338, + "Guest_NightShadow2-2": 1436856907, + "Guest_NightShadow3-2": 1434759755, + "Guest_NightShadow4-2": 1432662603, + "Guest_NightShadow5-2": 1430565451, + "Guest_NightShadow6-2": 1428468299, + "Guest_NightShadow7-2": 1426371147, + "Guest_FirstScythe": 738854032, + "Guest_GreyMantisCaptain": 860186057, + "Guest_GreyMantisHunter": 1239274377, + "Guest_Atlach-Leng": 836136649, + "Guest_PetrovGloomstrider": 2045783873, + "Guest_NauyotolDownIntheHole": 1134251106, + "Guest_SandorSpearcaller": 1351072377, + "Guest_MavraFlamewing": 1477685600, + "Guest_Scaldling": 208751819, + "Guest_WoebegoneWraith": 1166488705, + "Guest_BorisBlackrock": 1365399915, + "Guest_KatiaFirewinter": 521255834, + "Guest_ValerikBrightsword": 1244055782, + "Guest_RurikFlamesoul": 1962726850, + "Guest_IonaPyrelance": 722266491, + "Guest_DarkPoltergeist": 818162178, + "Guest_TheCollector": 1772287612, + "Guest_ViktorSnowcrusher": 1028387381, + "Guest_ValeskaRedwind": 19316351, + "Guest_ScarrikGallowgaunt": 105397333, + "Guest_Neberyx": 1453883041, + "Guest_AsrikWidebelt": 401936422, + "Guest_GothricHonorbound": 750072340, + "Guest_HalfangBristlecrown": 618779562, + "Guest_OsvudFleetpaw": 1023466459, + "PP_PufferFish_A": 1578606029, + "Guest_OzelUnderwaterCat": 1033669302, + "PP_BabyGreenMan_A": 910025246, + "PP_SchoolTurtle_A": 1012620678, + "PP_DarkBalloon_A": 1229308566, + "MT_JetsamCopter": 92127678, + "Mount_4P_DarkClownCar": 420246262, + "MNT_BalloonsBunch": 2000358474, + "Guest_TempleGuardian": 632574316, + "Guest_TemplePhantom": 1701097840, + "Guest_MahonStarsearcher": 1549093341, + "Guest_LostKnight": 858980994, + "Guest_AnguishedWoodman": 174606918, + "Guest_TormentedTreant": 294050331, + "Guest_WildfireTreant": 1902129818, + "Guest_BlightedYaxche": 679097088, + "Guest_Junglethorn": 1734561424, + "Guest_Tangleroot": 2027061721, + "Guest_BlightedFreerooter": 1109803061, + "Guest_Winterbranch": 1170787806, + "Guest_DecayingBogwalker": 1338670789, + "Guest_BrownwoodTormentor": 1655181754, + "Guest_Wildroot": 1839747182, + "Guest_Ironsplinter": 668295157, + "Guest_Frostbranch": 75974631, + "Guest_KyoukonteiTreant": 474446232, + "Guest_BrokenStumps": 414724364, + "Guest_WordlessWoodsmen": 1813881830, + "Guest_DesiccatedTreebeard": 1826942903, + "Guest_ShadowoftheLand": 1612385317, + "Guest_TreeRoot": 1406633546, + "Guest_BefouledWoodwalker": 1517919498, + "Guest_ConfusedForestWarrior": 750805985, + "Guest_CrazedForestSpirit": 1007960507, + "Guest_Oakheart": 1158293719, + "Guest_SnowTreant": 1028620035, + "Guest_Snowbeard": 1997921701, + "Guest_BarkskinTreant": 2143957812, + "Guest_RazorleafTreant": 2133159197, + "Guest_CarrionFlowerMan": 1120698936, + "Guest_Kurokage": 355651925, + "Guest_LacombeStrawHouse": 568809873, + "Guest_BerkshireStickHouse": 1932133405, + "Guest_TamworthBrickHouse": 894027634, + "Guest_RustyTinderSpark": 1237916230, + "Guest_CoraWinterBranch": 1901918989, + "Guest_GrambleGoldRook": 1986988546, + "Guest_PiperStormTree": 1109520133, + "Guest_Hanadzura": 124838500, + "Guest_Kuchisaki": 2084188681, + "Guest_Kaizoku": 807430784, + "Guest_JaxonLastRites": 1653711119, + "Guest_SeijunKiller": 657647155, + "Guest_ZarichiTarakata": 1129212566, + "Guest_BladelessRonin": 1577395797, + "Guest_SanzokuOutlaw": 1682888807, + "Guest_SanzokuBandit": 1766198653, + "Guest_KakedaPainbringer": 1260119278, + "Guest_KakedaStalker": 367458449, + "Guest_KakedaShadow": 1604499626, + "Guest_KakedaSoulcrusher": 1961168112, + "Guest_ImitsuPlaguemaster": 1361539025, + "Guest_ImitsuDefouler": 1299791045, + "Guest_ImitsuPunisher": 234819300, + "Guest_StudentofKhai": 249757647, + "Guest_OtomoBattlemage": 918160114, + "Guest_OtomoCourier": 1373253378, + "Guest_OtomoSupplyRunner": 1580070577, + "Guest_OtomoScout": 1814051082, + "Guest_OtomoWrestler": 1053571230, + "Guest_OtomoFury": 111319603, + "Guest_Hyottoko": 307080225, + "Guest_Usunoki": 1881339626, + "Guest_Kagemoosha": 1842766119, + "Guest_UdoJin-e": 850816224, + "Guest_TakedaKanryu": 536087422, + "Guest_Tamauji": 818613882, + "Guest_Jikiru": 794167355, + "Guest_Nomoonaga": 849534658, + "Guest_Aiuchi": 515942855, + "Guest_Kurogaso": 1426248002, + "Guest_Ideyoshi": 1814038213, + "Guest_Koto": 1151260427, + "Guest_Usegi": 977549586, + "Guest_Kanago": 1644367227, + "Guest_Kyuto": 1168225979, + "Guest_Haru": 2070048389, + "Guest_Ashikata": 1523446928, + "Guest_Katsumori": 1823914597, + "Guest_Hingen": 1567896261, + "Guest_Yakedo": 502298497, + "Guest_Do-Daga": 1239945714, + "Guest_Maito": 979260804, + "Guest_TonkatsuThug": 1758658397, + "Guest_GobbloreanGuard": 1286210991, + "Guest_BabblingMeints": 413418139, + "Guest_PrinceGobblestone": 1813171676, + "Guest_GobblerMuncher": 1517159487, + "Guest_GobblerGorger": 130736772, + "Guest_GobblerScouter": 1509427587, + "Guest_GobblerGlutton": 1912199781, + "Guest_GobblerScavenger": 136586791, + "Guest_BaronGreebly": 1028182200, + "Guest_BaronRotunda": 457132907, + "PP_DeathMimic": 1811942047, + "Guest_GreenMan": 1126663802, + "Guest_ForestGrump": 1602350320, + "Guest_ErvintheBarbarian": 1671762776, + "Guest_RazortuskWarrior": 1109994549, + "Guest_RazortuskBrawler": 732265321, + "Guest_SplithoofRager": 1922134329, + "Guest_TuskedRaider": 1920114147, + "Guest_SviniBeserker": 1146317608, + "Guest_SviniReaver": 216717251, + "Guest_Shattertusk": 1191456730, + "Guest_SplithoofBarbarian": 296671728, + "Guest_Bloodseeker": 2086598239, + "Guest_Scarsnout": 1831766077, + "Guest_MasterTonkatsu": 1783298894, + "Guest_Grisletusk": 657393295, + "Guest_SplithoofBloodguard": 488382274, + "Guest_BristlehideRaider": 237078958, + "Guest_Gullin": 1656401882, + "Guest_ForestNymph": 812055814, + "Guest_SassafrasMan": 1327049788, + "Guest_RandolfSpellshine": 108808620, + "Guest_BleysFlamerender": 434070106, + "Transformation_Khan": 1398327634, + "Transformation_TheBat": 1675113521, + "MNT_DireWolf": 845578449, + "MNT_YuleMule": 1976182058, + "MNT_LightBlades": 829118450, + "MNT_FlyingSquid": 1573132252, + "PP_Globulin": 467801224, + "PP_BeastBaby": 1807874692, + "PP_SaniBot": 670845902, + "Mount_SwarmSand": 1277669407, + "Guest_Nodnarb": 211478288, + "Guest_LordBramble": 1118781162, + "Guest_Yogash": 506264561, + "Guest_Marcio": 499428996, + "Guest_Procyon": 1115376865, + "Guest_Thunderfin": 2029218563, + "Guest_ArkynMoonblade": 1152775206, + "Guest_CreeCurdWright": 1714953095, + "Guest_DeerMouseRevenant": 315064435, + "Guest_ElanaDarksun": 837982094, + "Guest_KingAlricFateSailor": 1934591130, + "Guest_LaughingCalaca": 984492527, + "Guest_WraithKnight": 620484548, + "Guest_FieryEchoofApep": 484636593, + "Guest_FrostyEchoofApep": 171933154, + "Guest_FalseEchoofApep": 479387377, + "Guest_ChargedEchoofApep": 1229406800, + "Guest_ShrowdengersQhat": 101563303, + "Guest_Scrollkeeper": 643219293, + "Guest_TerrorHound": 753341570, + "Guest_CondemnedMander": 445370758, + "Mnt_SnowStorm": 1491572670, + "Mount_ChimneySweeper": 378571534, + "MNT_PineappleCandyCane": 1630795796, + "Guest_TyphonDustwind": 740849673, + "MNT_StickHorse": 216654744, + "MimicTemplate": 1461219184, + "MNT_Ball_N_Chain": 289720920, + "PP_PeaceDove_A": 1785119671, + "Mount_Gyrocycle": 1495008048, + "PP_BattleMageDragon_A": 1864696711, + "MNT_BattleBeast": 1304449286, + "MNT_SmokeTrails": 387873030, + "Mount_FriendshipHare": 677127330, + "MNT_ButterflySwarm": 383602683, + "PP_EggChick_B": 1959154042, + "MNT_Unicorn": 562210585, + "PP_StuffedUnicorn": 1731641773, + "MNT_ParadeTruck": 2026348978, + "MNT_ParadeTruckXmas": 1017864627, + "MNT_AutumnLeafSwarm": 1540002279, + "PP_GingerbreadMan": 1796172229, + "PP_DecadeDragon": 1819398630, + "MNT_StageShip": 829852992, + "PP_DramaLlama": 255896529, + "PP_HallMinotaur_A": 1492017563, + "Guest_MacDeath": 1526226705, + "Guest_MacDeathUnderstudy": 1731752647, + "Guest_MacLifeUnderstudy": 257466641, + "Guest_MacStormUnderstudy": 8295117, + "MNT_Pantera": 1135198, + "MNT_StagLight": 1908778048, + "MNT_GiantSpider": 1247185021, + "MNT_StagEvil": 872303931, + "PP_BaskHound": 1093866594, + "PP_Marionette": 1688299938, + "PP_Marionette_B": 1688297824, + "Guest_Izft": 996301405, + "Guest_SapotisMinion": 1625665891, + "Guest_CrazedSlave": 1473233468, + "Guest_CharmedSlave": 803043667, + "Guest_EnsorcelledSlave": 40920285, + "Guest_HallServant": 2038116460, + "Guest_SiathePerceiver": 1235571913, + "Guest_Kiwu": 1151177787, + "Guest_NightImp": 1051843424, + "Guest_EvilTrickster": 1035477123, + "Guest_DeepWoodsImp": 1502444054, + "Guest_ForestPest": 802235713, + "Guest_TaintedForestImp": 1030343985, + "Guest_Youkai": 518367729, + "Guest_CarthaginianElephantWarrior": 776293919, + "Guest_IdrisBeast-Taker": 106759521, + "Guest_MikaSkarka": 237956516, + "Guest_Belloq": 757247833, + "Guest_GurtokPiercer": 549466122, + "Guest_GurtokFirebender": 817966523, + "Guest_GurtokDemon": 544070162, + "Guest_GeneralFiretusk": 2073037770, + "Guest_GurtokBarrierDemon": 44657563, + "Guest_BlacktuskShaman": 1009070925, + "Guest_FireDemon": 158367196, + "Guest_DeathOni": 1916642000, + "Guest_JadeOni": 1289517185, + "Guest_PlagueOni": 1464586443, + "Guest_WarOni": 1630196094, + "Guest_BrokenLandMammoth": 1587008312, + "Guest_SunderedSeamMammoth": 1272698721, + "Guest_BullyMammoth": 170705927, + "Guest_Bullhemoth": 146998717, + "Guest_Kogasha": 1909654543, + "Guest_MusuthBerserker": 1741298129, + "Guest_BlackTuskCultist": 1771575961, + "Guest_AksilBlacktrunk": 1253596409, + "Guest_LongdreamerShaman": 1521283133, + "Guest_MuratGreyeyes": 1296814314, + "Guest_ElephantSoldier": 1443670145, + "Guest_DarajaniGuard": 1597288495, + "Guest_Loremaster": 1792470809, + "Guest_Pork": 2069999347, + "Guest_Beans": 97706585, + "MNT_Ox": 1292937747, + "PP_PropellerSquirrel": 1657443894, + "Guest_RasikPridefall": 97921485, + "Guest_AmedrasLightstep": 1818417025, + "MNT_SmokeTrails_Balance": 1358150715, + "MNT_SmokeTrails_Fire": 702971609, + "MNT_SmokeTrails_Ice": 190218501, + "MNT_SmokeTrails_Life": 2045542105, + "MNT_SmokeTrails_Myth": 1276281121, + "MNT_SmokeTrails_Storm": 564954622, + "Guest_Bellosh": 1407013027, + "Guest_AcampiReedfist": 2076527733, + "Guest_AgnettaBroadblade": 14864960, + "Guest_FrostheartRaider": 1574787221, + "Guest_JordaSwordbearer": 1627071850, + "Guest_KasaiBaku": 1153107369, + "Guest_ZoraimeiHelephant": 1002482606, + "Guest_ConscriptedMander": 43811125, + "Firecat_Decade": 409516955, + "MNT_BatGlider": 2086258491, + "Transformation_PlayerHomework": 673389670, + "Transformation_PlayerAttendance": 422287307, + "Transformation_PlayerLecture": 2035625874, + "Transformation_PlayerPopQuiz": 483367038, + "MNT_GingerbreadHorse": 1369242781, + "MNT_NimbariChariot": 1251740392, + "PP_NimbariDog": 1235126828, + "Transformation_PlayerGrandma": 1128332272, + "Transformation_PlayerScionA": 33862367, + "PP_Mushroom": 1568942158, + "MNT_Scooter": 1148167046, + "MNT_Scooter_B": 2079302532, + "MNT_Scooter_C": 1810867076, + "MNT_Scooter_D": 468689796, + "MNT_IceCycle": 415797788, + "Transformation_PlayerScionA02": 33921759, + "Guest_FearoftheFuture": 947210229, + "Guest_FearofGremlins": 405857384, + "Guest_RootGuardian": 922940845, + "Guest_VineThrasher": 172546427, + "Guest_BlightWalker": 1438155154, + "Guest_BriarScourge": 615681851, + "Guest_DreamJabberwock": 907754098, + "Guest_DreamBelloq": 990352002, + "Guest_Voltergeist": 1558128068, + "Guest_SpecialBranch": 1927849418, + "Guest_MutantBriar": 805892802, + "Guest_FeralBriar": 883790223, + "Guest_MaizeMonster": 688905764, + "Guest_DreamShadowwock": 1432458248, + "Mount_Heartboard": 1421972759, + "PP_ChocoBunny": 324797859, + "Mount-PogoFlower": 906659501, + "MNT_AethyrCloud": 1586061078, + "MNT_Fangle": 7846854, + "Guest_StarfallSpider": 1177620831, + "Guest_AshSpider": 1588502553, + "Guest_CorruptedWeaver": 38937211, + "Guest_CrystalCrawler": 1197980149, + "Guest_ShimmerWidow": 1300740128, + "Guest_FacetedSpikespinner": 1939719331, + "Guest_CrystallineQueen": 1999282256, + "Guest_AncientCrystalweaver": 1409608801, + "Guest_FangtoothLavaspinner": 1538042104, + "Guest_VenomousHeatseeker": 1234682482, + "Guest_FireweaveRockbiter": 300743778, + "Guest_MonkeySpider": 754090007, + "Guest_CryptSpider": 1545405304, + "Guest_CommonHouseSpider": 613486002, + "Guest_ArachnaMagnaMagus": 825817937, + "Guest_ArachnaSoldier": 270978709, + "Guest_Gnissa": 1699826178, + "Guest_WebwoodScuttler": 1728611075, + "Guest_SandSpider": 61789007, + "Guest_WebwoodCreeper": 1013382584, + "Guest_Skathi": 1631429165, + "Guest_ArchmagusLorcan": 321146960, + "Guest_CrawleroftheMist": 2076696304, + "Guest_PaintedSpider": 1482115552, + "Guest_GiantSpider": 1545526191, + "Guest_CaveCrawler": 2101587667, + "Guest_RattleCatcher": 1472707326, + "Guest_TrapdoorSpider": 1321643694, + "Guest_RockClinger": 1304266411, + "Guest_InquisitorXimenez": 1053483090, + "Guest_ElderMagus": 1017836836, + "Guest_WardenBenthamic": 18807199, + "Guest_SpiderArchmagus": 387645558, + "Guest_SpiderAdept": 2094873407, + "Guest_InterrogatorRentenius": 1245984179, + "Guest_WarpedWeaver": 495882677, + "Guest_ArachnaSkinner": 281864085, + "Guest_SkinnerConscript": 2028526453, + "Guest_ArachnaGladiator": 2492046, + "Guest_LorcanInitiate": 353311753, + "Guest_Serket": 1871335773, + "Guest_IceWeaver": 2063216026, + "Guest_SpiritSpinner": 525666327, + "Guest_MysteriousCrawler": 218352756, + "Guest_BlackWidow": 1909331619, + "Guest_BrownRecluse": 1146386275, + "Guest_Creeper": 1197442790, + "Guest_GearSpinner": 67020478, + "Guest_Clinker": 1194519062, + "Guest_Clanker": 1194517014, + "Guest_GrandfatherSpider": 1330981335, + "Guest_Spiderling": 1400274461, + "Guest_ManekiWebWalker": 888348786, + "Guest_KoganiDeathCrawler": 276010604, + "Guest_CheliceranCrawler": 1169176517, + "Guest_ArachniteCreeper": 1850534774, + "Guest_ChelicaranStalker": 2057291848, + "Guest_HornedMonkeySpider": 1301514577, + "Guest_GreyOgreSpider": 1533774471, + "Guest_StarburstSpider": 698029451, + "Guest_PaintedCaveMonster": 601315479, + "Guest_RubbleRouser": 220785666, + "Guest_EarthElemental": 435260049, + "Guest_SharpshardWarrior": 1403237237, + "Guest_Firevein": 1220046430, + "Guest_Blackblade": 458130537, + "Guest_VengefulFireheart": 563205004, + "Guest_FirerockStomper": 608552855, + "Guest_BlackrockGuardian": 1663799582, + "Guest_ConfusedSentry": 24655510, + "Guest_SilverSentinel": 1090673683, + "Guest_SilverServant": 84560693, + "Guest_GiantHomunculus": 456098557, + "Guest_PropertyMaster": 229101764, + "Guest_VaultProtector": 185568207, + "Guest_PlatedDefender": 79324363, + "Guest_Avalanche": 761613547, + "Guest_RockReaver": 919912933, + "Guest_Frostmantle": 856308090, + "Guest_GlacierWalker": 131215932, + "Guest_SandBehemoth": 272513357, + "Guest_RunedAnnihilator": 121339936, + "Guest_RunedDevestator": 1611071181, + "Guest_RunedGuardian": 1986312667, + "Guest_CanyonRager": 1123038266, + "Guest_RubbleReaver": 220774678, + "Guest_Boulderbone": 122279242, + "Guest_Nali": 77467516, + "Guest_Gnar": 1151164930, + "Guest_GlacialAvenger": 1181253632, + "Guest_SokkwiKeymaster": 190919624, + "Guest_SandsofTime": 34920273, + "Guest_BladeGolem": 435561523, + "Guest_FrostColossus": 1564686403, + "Guest_IceColossus": 335477257, + "Guest_PollutedEarthWalker": 86045387, + "Guest_CorruptedEarthSpirit": 1135891559, + "Guest_Stonebreaker": 1317905436, + "Guest_StoneElemental": 1715022018, + "Guest_VolcanisGolem": 1904918929, + "Guest_WaterElemental": 1717850987, + "Guest_AshenDeathMonkeySpider": 35356665, + "Guest_DeathMonkeySpider": 1525508507, + "Guest_MotherMonkeySpider": 110317392, + "Guest_DoomMonkey": 1135105500, + "Guest_DreamMorganthe": 907599965, + "Guest_DragonBeetle": 1974635734, + "Guest_SandWalker": 1530843985, + "MNT_PandaMama": 916371162, + "PP_BabyPandas": 778536285, + "PP_FrogPrince": 729975205, + "MNT_PumpkinCarriage": 183672737, + "Mount_Gobbler_B": 1193388729, + "PP_Hamster": 1578040708, + "Guest_Steeleton": 657429968, + "Guest_GoldenWyrm": 311022393, + "MNT_Roc": 1564431869, + "PP_BabyGriffin": 1913686406, + "Transformation_ShadowDPSMob": 936133896, + "Transformation_ShadowTankMob": 305660992, + "Transformation_ShadowHealMob": 356596800, + "Guest_SpiritofIgnorance": 1577360126, + "Guest_FecklessSoul": 519648315, + "Guest_BurnedOutSoul": 312181646, + "Guest_BenightedRevenant": 2131956962, + "Guest_TombLurker": 1901203489, + "Guest_DesertGolem": 543642682, + "Guest_KumoOni": 215822625, + "Guest_SpellwritStalker": 161772776, + "PP_Sun": 1723237840, + "Guest_Leadite": 4480416, + "Mount_FestiveFox": 2125832348, + "PP_FenrisWolf": 1601784680, + "PP_SchoolPiggle": 109782407, + "PP_FenrisWolf_Red": 1597992854, + "PP_FenrisWolf_Teal": 1455058454, + "PP_FenrisWolf_White": 1102186199, + "Transformation_NinjaPig_Fire": 984575055, + "Transformation_BG_RatThief_Myth": 1191155131, + "Transformation_BG_RatThief_Storm": 675891897, + "MNT_Umbrella": 955683437, + "Transformation_BG_Elf_Ice": 1209681129, + "Transformation_BG_Fairy_DarkMinion_Balance": 33521202, + "Transformation_BG_Cyclops_Death": 876023972, + "Transformation_BG_Minotuar_Fire": 1118476387, + "Transformation_BG_WolfWarrior_Storm": 2075594475, + "Transformation_BG_WolfWarrior_Balance": 746159992, + "Transformation_BG_Draconian_Myth": 903606820, + "Transformation_BG_Draconian_Life": 1501291044, + "Transformation_BG_Colossus_Life": 1320377666, + "MNT_DolphinChariot": 102982520, + "MNT_EvilWagon": 685457563, + "MNT_FlyingDutchman": 1176206544, + "PP_SeaHorse": 2024322494, + "PP_EvilTeddy": 1159020925, + "PP_ZombieParrot": 384805107, + "Transformation_BG_Ice_Colossus": 299613211, + "MNT_CarrierBat": 7323333, + "Transformation_BG_Minotaur_MythTempalte": 430330904, + "PP_FeatheredTabby": 452526748, + "Transformation_Detritus01": 1335763402, + "Guest_Metallossus": 335457082, + "MNT_SantaJaws": 464410203, + "MNT_BattleBadger": 532858222, + "Transformation_Shedder01": 2069145892, + "PP_NatureSpirit": 373176286, + "Transformation_Devourer01": 1004421540, + "Guest_TheDevourer": 1591187996, + "Guest_Treeminder": 1093207850, + "Guest_RenegadeDruid": 2087982292, + "Guest_FractalTreeminder": 927174548, + "Guest_UnsettledTreeminder": 486164163, + "Guest_DragonspyreCrusader": 247317280, + "Guest_YoungGreggor": 66068670, + "Guest_GeneralGreyflame": 499924835, + "Guest_OldGreggor": 391726170, + "Guest_PrinceViggor": 853556298, + "Guest_DragonspyreVanguard": 693851565, + "Guest_SilasConviction": 177362659, + "Guest_SilasWeariness": 893431021, + "Guest_SilasRage": 1288904439, + "Guest_SilasDoubt": 1479426285, + "Guest_Lorekeeper": 147779344, + "Guest_FelixPhotomongerIII": 68387506, + "Guest_WarHavox": 1634324022, + "Guest_Mis-assembledSkeleton": 221832082, + "Guest_TreeminderGhost": 200408510, + "Guest_ViggorsDrake": 340449521, + "Guest_BlueNinjaPig": 938539327, + "Guest_RedNinjaPig": 2097962021, + "Guest_OrangeNinjaPig": 625058258, + "Guest_PurpleNinjaPig": 445746449, + "Guest_RitualColossus": 844563319, + "Guest_TinyDragon": 1123127688, + "Guest_RitualSpider": 429827552, + "Guest_RitualDraconian": 837510372, + "Guest_CC_Druid_Warrior_C_01": 55314616, + "Guest_CC_Druid_Wizard_A_01": 1046261169, + "Guest_CC_Druid_Wizard_B_01": 1046244785, + "Guest_CC_Druid_Warrior_A_01": 56363192, + "MNT_Toboggan": 995356805, + "MNT_2P_WickerTreant-001": 2065440944, + "PP_Ratatoskr": 1003497600, + "PP_Trash": 1195047012, + "Guest_CC_Druid_Wizard_D_01": 1046343089, + "MNT_Sunflower": 721091531, + "MNT_Whoopee": 1383311238, + "MNT_Warthog": 8060761, + "PP_ShamRock": 943893325, + "PP_LeapingLeprechaun": 132882517, + "PP_LionCubs": 465759803, + "PP_Tanuki": 670387843, + "MNT_Crane": 433122675, + "MNT_Krokosphinx": 739938754, + "Transformation_BG_Fairy_Life": 1897480818, + "Transformation_LiceDeepSpawnA": 244795720, + "Piggle_Alien": 1761605655, + "PP_JeweledScarab": 620544607, + "Guest_KR_Nymph_DrkMage_D50": 1248526054, + "Guest_KR_Nymph_DrkMage_C50": 1246953190, + "Guest_KR_Nymph_DrkMage_B50": 1247477478, + "Guest_KR_Nymph_DrkMage_A50": 1245904614, + "Guest_EM_Spider_Ash_01": 185724938, + "UFO": 47349, + "PP_Kit10": 326796620, + "PP_Lumi_Tulip": 84119585, + "PP_Lumi_Fern": 117015078, + "PP_Lumi_Violet": 1468797578, + "PP_Lumi_Sunny": 1769236703, + "PP_Lumi_Daisy": 1743454175, + "MNT_CelestianMech": 1238076872, + "MNT_Brontosaurus": 402157167, + "Guest_HG_AKT_Krok_Cyber_A_Balance_25": 1367985604, + "Guest_HG_AKT_Krok_Cyber_A_Balance_50": 1368084932, + "Guest_HG_AKT_Krok_Cyber_A_Balance_75": 1367988676, + "Guest_HG_AKT_Krok_Cyber_A_Balance_100": 1351303620, + "Guest_HG_AKT_Krok_Cyber_A_Balance_130": 1351270852, + "Guest_HG_AKT_Krok_Cyber_A_Fire_25": 976558490, + "Guest_HG_AKT_Krok_Cyber_A_Fire_50": 37034397, + "Guest_HG_AKT_Krok_Cyber_A_Fire_75": 305469850, + "Guest_HG_AKT_Krok_Cyber_A_Fire_100": 573905821, + "Guest_HG_AKT_Krok_Cyber_A_Fire_130": 573905824, + "Guest_HG_AKT_Krok_Cyber_A_Ice_25": 159411377, + "Guest_HG_AKT_Krok_Cyber_A_Ice_50": 541093041, + "Guest_HG_AKT_Krok_Cyber_A_Ice_75": 146828465, + "Guest_HG_AKT_Krok_Cyber_A_Ice_100": 557870241, + "Guest_HG_AKT_Krok_Cyber_A_Ice_130": 960523425, + "Guest_HG_AKT_Krok_Cyber_A_Myth_25": 976187830, + "Guest_HG_AKT_Krok_Cyber_A_Myth_50": 36663729, + "Guest_HG_AKT_Krok_Cyber_A_Myth_75": 305099190, + "Guest_HG_AKT_Krok_Cyber_A_Myth_100": 573535153, + "Guest_HG_AKT_Krok_Cyber_A_Myth_130": 573535156, + "Guest_CL-GolemButler-R9": 780077559, + "Guest_CL-GolemDigger-Boss-R10": 562020288, + "Guest_CL-GolemDigger-R9": 789375095, + "Guest_CL-GolemDigger-Rank8MythBoss-R10": 930527857, + "Guest_CL-GolemWorker-R9-1": 1072815287, + "Guest_CL-FishbotBrown-R9-1": 2006155417, + "Guest_CL-FishbotBrown-R9-2": 395542681, + "Guest_CL-FishbotGold-Boss-R10": 611881707, + "Guest_CL-FishbotGold-R9": 705414492, + "Guest_CL-FishbotYellow-Boss-R10": 23145662, + "Guest_CL-Protector-Black-Boss-R10-2": 679228793, + "Guest_CL-Protector-Gold-R10": 1909636609, + "Guest_CL-Protector-Gold-R9-1": 1909634804, + "Guest_CL-Protector-Gold-R9-2": 1909634932, + "Guest_CL-Protector-Gold-R9-3": 1909635060, + "Guest_CL-Protector-Gold-R9-4": 1909634164, + "Guest_CL-Protector-Purple-R9-Boss": 1889837072, + "Guest_CL-Protector-Purple-R9": 81760161, + "Guest_CL-Protector-Tan-Boss-R10": 912663188, + "Guest_KR_Golem_Worker": 1784607296, + "Guest_Golem-Brass-R7-1": 718939445, + "Guest_Golem-Clockwork-R7": 1161173708, + "Guest_EM_Robot_Batbot_A_01": 1482867950, + "Guest_EM_Robot_Batbot_B_02": 945947886, + "Guest_EM_Robot_Batbot_B_01": 1482818798, + "Guest_EM_Robot_Batbot_B_03": 409076974, + "Guest_EM_Robot_Batbot_B_04": 127793938, + "Guest_EM_Robot_Batbot_B_05": 664664850, + "Guest_EM_Robot_Drone_A_02": 1215188569, + "Guest_EM_Robot_Drone_A_03": 1231965785, + "Guest_EM_Robot_Drone_A_01": 1265520217, + "Guest_EM_Robot_Drone_A_04": 1315851865, + "Guest_EM_Robot_Drone_A_05": 1332629081, + "Guest_EM_Robot_Drone_A_06": 1282297433, + "Guest_EM_Robot_Drone_A_07": 1299074649, + "Guest_EM_Robot_Drone_A_08": 1114525273, + "Guest_EM_Robot_Drone_A_09": 1131302489, + "Guest_EM_Robot_Drone_A_Boss_01": 1960661151, + "Guest_EM_Robot_Drone_A_Boss_02": 1960530079, + "Guest_EM_Robot_Drone_E_01": 1265518169, + "Guest_EM_Robot_Tank_A_01": 1314796420, + "Guest_EM_Robot_Tank_A_02": 1313223556, + "Guest_EM_Robot_Drone_C_02": 1215187545, + "Guest_EM_Robot_Drone_D_03": 1231963225, + "Guest_EM_Robot_Drone_D_01": 1265517657, + "Guest_EM_Robot_Drone_D_02": 1215186009, + "Guest_EM_Robot_Tank_B_01": 1314796468, + "Guest_EM_Robot_Drone_C_01": 1265519193, + "Guest_G14-BP-Golem_Steel_Boss": 2071105129, + "Guest_G14-BP-Golem_Steel_Puzzle": 715790979, + "Guest_Golem-Brass-Elite-L38": 1163662532, + "Guest_Golem-Brass-Elite-L56": 2057562884, + "Guest_Golem-Brass-MBBoss-L48": 1498830732, + "Guest_Golem-Brass-MBBoss-L71": 1498829576, + "Guest_Golem-Brass-MBBoss-L76": 1498828936, + "Guest_Golem-Clockwork-Elite-L54-Metal": 417151527, + "Guest_Golem-Clockwork-Elite-L37": 1961943722, + "Guest_Golem-Clockwork-Elite-L54": 1950147242, + "Guest_Golem-Clockwork-L28": 1561959116, + "Guest_Golem-Clockwork-MBBoss-L37": 973152783, + "Guest_Golem-Clockwork-MBBoss-L69": 1262559759, + "Guest_Golem-Steel-Elite-L39": 1430496717, + "Guest_Golem-Steel-MBBoss-L40": 1229578887, + "Guest_Golem-Steel-MBBoss-L43": 1229579015, + "Guest_Golem-Steel-MBBoss-L50-1": 1231762051, + "Guest_Golem-Steel-MBBoss-L50": 1229578883, + "Guest_Golem-Steel-MBBoss-LXX": 1229583927, + "Guest_Golem-Wood-Elite-L35": 904360756, + "Guest_Golem-Wood-Elite-L37": 1978102580, + "Guest_Golem-Wood-Elite-L50": 1813548236, + "Guest_Golem-Wood-MBBoss-L63": 1392041724, + "Guest_MB-Gauntlet-Golem-Clockwork": 854649045, + "Guest_Spider-Golem-MBBoss-L67": 253352706, + "Guest_Spider-Golem-MBBoss-L96": 253348994, + "Guest_WC-MAW-GasGolem-Minion": 1511013798, + "Guest_WC-MAW-GasGolemLife-Minion": 1306026584, + "Guest_Golem-Steel-L02": 1027229749, + "Guest_Golem-Clockwork-L01": 1409915596, + "Guest_Gauntlet-01-Golem-Steel-Ghost-R8": 402816318, + "Guest_Golem-Wood-L01": 156976035, + "Guest_HG-Clock-ClockworkSpanner-20": 1523370449, + "Guest_HG-Clock-ClockworkSpanner-40": 1523370455, + "Guest_HG-Clock-ClockworkSpanner-60": 1523370453, + "Guest_HG-Clock-ClockworkSpanner-80": 1523370459, + "Guest_HG-Clock-ClockworkSpanner-100": 1523354068, + "Guest_HG-Clock-ClockworkSpanner-120": 1523354004, + "Guest_AQ-Cyclops-Guard": 191361948, + "Guest_AQ_Cyclops_Guard_A_Boss_01": 114747100, + "Guest_CL-Cyclops-Death-R10": 611013866, + "Guest_Cyclops-Death-Boss-R7": 1192370725, + "Guest_Cyclops-Death-Boss-R9": 1192370717, + "Guest_Cyclops-Death-R7": 144593791, + "Guest_GH-Cyclops-Death-R6": 594236619, + "Guest_Cyclops-BlueHelmet-KTBoss-L03": 1720105277, + "Guest_Cyclops-Red-L12": 1816429840, + "Guest_MR_Cyclops02WHelmet_Model_01": 1483732416, + "Guest_Cyclops-Blue-L02": 1633021234, + "Guest_Cyclops-BlueHelmet-WCBoss-L03": 427378332, + "Guest_Cyclops-RedHelmet-WCBoss-L03": 2021269422, + "Guest_HG_Sinbad_Cyclops_25": 911979034, + "Guest_HG_Sinbad_Cyclops_50": 1856261606, + "Guest_HG_Sinbad_Cyclops_75": 861647386, + "Guest_HG_Sinbad_Cyclops_100": 1789152678, + "Guest_HG_Sinbad_Cyclops_130": 178539942, + "Guest_HG_Sinbad_IronSultan_25": 930031152, + "Guest_HG_Sinbad_IronSultan_50": 930051504, + "Guest_HG_Sinbad_IronSultan_75": 930030768, + "Guest_HG_Sinbad_IronSultan_100": 927954864, + "Guest_HG_Sinbad_IronSultan_130": 927942576, + "MNT_SweetRide": 1643297840, + "PP_FrilledDino": 1395342809, + "PP_Celestian": 95679303, + "PP_Sun_Angry": 1955190071, + "PP_Marshmallow": 1220667954, + "MNT_Umbrella_B": 923364822, + "MNT_Tamer": 1050737194, + "PP_BumbleBee_B": 858653433, + "MNT_PunkFlamingo": 1634690818, + "MNT_2P_WoolyRhino": 1395943031, + "PP_Retriever": 72842604, + "PP_Piggle_Caveman": 181356174, + "PP_DecennialDragon": 1396523337, + "MNT_Tiger_Rainbow": 515535412, + "MNT_CarrierGhosts": 1833039309, + "MNT_Sled": 617654308, + "Transformation_BG_RatThief_Death": 30691641, + "Transformation_BG_Elf_Storm": 44352983, + "Transformation_BG_WolfWarrior_Ice": 986304351, + "MNT_CarriorGhost_B": 1768732109, + "MNT_CarriorGhost_C": 1766634957, + "Transformation_BG_Colossus_Fire": 1318803522, + "Transformation_BG_Krok_Balance": 140952965, + "Guest_KM_Gobbler_Skinny_A_11": 773648065, + "Guest_KM_Robot_Candy_A_01": 480414124, + "Guest_KM_Robot_Candy_A_02": 530745772, + "Guest_KM_Robot_Candy_A_03": 513968556, + "Guest_KM_Robot_Candy_A_04": 430082476, + "Guest_KM_Robot_Candy_A_05": 413305260, + "Guest_KM_Gummy_Bear_A_01": 1940905059, + "Guest_KM_Gummy_Bear_D_01": 1940905011, + "Guest_KM_Gummy_Bear_E_01": 1940904995, + "Guest_KM_Gummy_Bear_A_02": 1941429347, + "Guest_KM_Gummy_Bear_D_02": 1941429299, + "Guest_KM_Gummy_Bear_E_02": 1941429283, + "Guest_KM_Gummy_Bear_B_01": 1940905043, + "Guest_KM_Gummy_Bear_B_02": 1941429331, + "Guest_KM_Gummy_Bear_B_03": 1941953619, + "Guest_KM_Gummy_BearHat_A_01": 853226448, + "Guest_KM_Gummy_BearHat_A_02": 853226460, + "Guest_KM_Gummy_Bunny_A_01": 324805042, + "Guest_KM_Gummy_Bunny_C_01": 324806066, + "Guest_KM_Gummy_Bunny_D_01": 324807602, + "Guest_KM_Gummy_Bunny_E_01": 324807090, + "Guest_KM_Gummy_Bunny_F_01": 324808626, + "Guest_KM_Gummy_BunnyUber_A_01": 525565930, + "Guest_KM_Gummy_Worm_A_01": 231044195, + "Guest_KM_Gummy_Worm_B_01": 231044179, + "Guest_KM_Gummy_Worm_C_01": 231044163, + "Guest_KM_Gummy_Worm_A_02": 232617059, + "Guest_KM_Gummy_Worm_B_02": 232617043, + "Guest_KM_Gummy_Worm_C_02": 232617027, + "Guest_KM_Gummy_Bear_F_01": 1940904979, + "Guest_KM_Gummy_Bear_F_02": 1941429267, + "Guest_KM_Gummy_Bunny_C_02": 274474418, + "Guest_KM_Robot_Candy_A_06": 463636908, + "Guest_KM_Alphoi_DarkF_A_01": 475441543, + "Guest_KM_Gobbler_Skinny_A_01": 773648069, + "Guest_KM_Gobbler_Skinny_A_02": 773648197, + "Guest_KM_Gobbler_Skinny_A_03": 773648325, + "Guest_KM_Gobbler_SkinnyF_A_01": 254411012, + "Guest_KM_Gobbler_Skinny_A_04": 773647429, + "Guest_KM_Gobbler_Skinny_A_05": 773647557, + "Guest_KM_Gobbler_Skinny_A_06": 773647685, + "Guest_KM_Gobbler_SkinnyF_A_02": 254423300, + "Guest_KM_Gobbler_Skinny_A_07": 773647813, + "Guest_KM_Gobbler_Skinny_A_08": 773646917, + "Guest_KM_Gobbler_Skinny_A_09": 773647045, + "Guest_KM_Gobbler_SkinnyF_A_03": 254419204, + "Guest_KM_Gobbler_Fat_A_01": 1440595742, + "Guest_KM_Gobbler_Fruit_B_01": 1236446660, + "Guest_KM_Gobbler_Fruit_A_01": 1235922372, + "Guest_KM_Gobbler_Guard_B_01": 1435667582, + "Guest_KM_Gobbler_Skinny_A_10": 773647937, + "Transformation_PlayerBabyCarrot": 1580787628, + "Transformation_PlayerDeadBeet": 1992261692, + "Transformation_PlayerDisparagus": 373797484, + "Transformation_PlayerSnowPeas": 634199102, + "PP_Snowflake": 2036143125, + "PP_GummyBear_Myth": 117787890, + "PP_GummyBear_Death": 236577760, + "PP_GummyBear_Balance": 2100524337, + "PP_GummyBear_Life": 118020336, + "PP_GummyBear_Fire": 117995748, + "PP_GummyBear_Storm": 247437198, + "PP_GummyBear_Ice": 122536570, + "MNT_SnowOwl": 1578473542, + "Guest_KM_Gummy_Bear_Uber_A_01": 1856208859, + "Guest_KM_Gummy_Bear_Uber_A_02": 1856196571, + "MNT_ChocolateMoose": 567538552, + "MNT_Ram_Candied": 1913603720, + "Guest_KM_Spider_Mage_A_01": 1529720120, + "Guest_KM_Spider_Mage_B_01": 1529719608, + "Guest_KM_Spider_Mage_C_01": 1529719096, + "Guest_KM_Spider_Mage_D_01": 1529718584, + "Guest_KM_Spider_Mage_E_01": 1529718072, + "PP_SpriteDark_Balance": 914900728, + "MNT_Tricycle": 991465753, + "Guest_Tri-Gauntlet-Protector-Gold": 2029952053, + "Guest_Tri-Gauntlet-FishbotGold": 130267882, + "Guest_HG-Clock-Clockworker-20": 281216243, + "Guest_HG-Clock-Clockworker-40": 281217011, + "Guest_HG-Clock-Clockworker-60": 281216755, + "Guest_HG-Clock-Clockworker-80": 281215475, + "Guest_HG-Clock-Clockworker-100": 283313523, + "Guest_HG-Clock-Clockworker-120": 283321715, + "Guest_HG-Clock-Lugs-20": 1452756928, + "Guest_HG-Clock-Lugs-40": 1452756960, + "Guest_HG-Clock-Lugs-60": 1452756992, + "Guest_HG-Clock-Lugs-80": 1452756768, + "Guest_HG-Clock-Lugs-100": 1452494736, + "Guest_HG-Clock-Lugs-120": 1452493712, + "Guest_HG-Clock-Lucia-20": 1041451626, + "Guest_HG-Clock-Lucia-40": 1041450602, + "Guest_HG-Clock-Lucia-60": 1041449578, + "Guest_HG-Clock-Lucia-80": 1041456746, + "Guest_HG-Clock-Lucia-100": 1049840746, + "Guest_HG-Clock-Lucia-120": 1049873514, + "Guest_KM_Gummy_Worm_A_03": 232092771, + "MNT_Scooter_E": 200254340, + "PP_WolfWarrior_Balance": 991302673, + "PP_PetGift": 1816280689, + "PP_RatThief": 1390866051, + "Guest_PL_Titan_Small_A": 2015819364, + "Guest_PL_Titan_Large_B": 699791264, + "Guest_PL_Titan_Medium_A": 326730424, + "PP_Draconian": 1631557208, + "MNT_Pantera_Astral": 106092538, + "PP_YearOx": 105653084, + "PP_WolfWarrior_Ice": 1043644935, + "PP_SpriteDark": 2031730054, + "PP_Brudel": 1355697143, + "MNT_Astronomers": 742732792, + "MNT_CouchPotato": 418050932, + "MNT_Flowerfarthing": 1396771051, + "MNT_Astronomers_Blue": 236532779, + "MNT_Astronomers_Rainbow": 4428274, + "PP_Astronomer": 782095961, + "Guest_KM_Gummy_Bunny_B_01": 324806578, + "Guest_KM_DeadBeets_A_01": 1396016635, + "MNT_GummyBunny": 775900704, + "MNT_GummyBunny_A": 775834080, + "MNT_GummyBunny_B": 775836128, + "MNT_GummyBunny_C": 775838176, + "Transformation_BG_Minotaur_Life": 1445109091, + "MNT_Armadillo": 825635826, + "PP_SootGremlin": 768969093, + "PP_RoadRunner": 2057802060, + "MNT_TinyTrolly": 160881792, + "PP_Frog_B": 1530124761, + "MNT_FjordDragon": 129204340, + "Transformation_BG_NinjaPig_Myth": 422914079, + "PP_CorgiPup": 1638656105, + "MNT_Skateboard": 728018224, + "PP_Krokomummy": 326396577, + "MNT_Vroom": 1736383110, + "MNT_PlayerWings_AtralRaven": 1514774167, + "PP_Blimp": 690882397, + "Guest_GH_WoodenSkeletonKey_Boar_Boss_Grey_01": 678055851, + "Guest_GH_StoneSkeletonKey_Boar_Boss_Grey_01": 571670691, + "Guest_GH_GoldSkeletonKey_Boar_Boss_Grey_01": 961728819, + "MNT_Cloud_Promo_AW_01": 2032670992, + "Guest_EM_Hornet_Burner_A_01": 1881854632, + "Guest_EM_Hornet_Burner_A_02": 1881854636, + "Guest_EM_Hornet_Zapper_A_01": 2058539689, + "Guest_EM_Hornet_Zapper_A_02": 2058539685, + "Guest_EM_Ant_Giant_D_01": 379386121, + "Guest_EM_Ant_Giant_A_02": 1768146677, + "Guest_EM_Ant_Giant_A_01": 1768097525, + "Guest_EM_Ant_Giant_B_01": 379386122, + "Guest_KR_Moth_Priest_G_Achera": 381233569, + "Guest_KR_BeeMonsterF_A": 135146211, + "Guest_KR_BeeMonsterF_A_Weak": 1824123847, + "Guest_KR_Bee_Warrior_A": 1569202664, + "Guest_KR_Bee_Warrior_B": 1569204200, + "Guest_KR_Bee_Warrior_C_BossDrones": 1217189631, + "Guest_KR_Bee_Warrior_D": 1569205224, + "Guest_KR_Bee_Warrior_E": 1569204712, + "Guest_KR_Bee_Warrior_G": 1569205736, + "Guest_KR_Bee_Warrior_G_BossFight": 1055035476, + "Guest_KR_Bee_Warrior_H": 1569207272, + "Guest_KR_Bee_Warrior_I": 1569206760, + "Guest_KR_Bee_Warrior_L": 1569209320, + "Guest_KR_Bee_Warrior_M": 1569208808, + "Guest_KR_DragonBeetle_Monster_A": 1777853782, + "Guest_KR_Hornet_Drone_A": 1161590757, + "Guest_KR_Hornet_Drone_B": 1161607141, + "Guest_KR_Hornet_Drone_C": 1161623525, + "Guest_KR_Hornet_Drone_D": 1161639909, + "Guest_KR_Hornet_Drone_E": 1161656293, + "Guest_KR_Lice_DeepSpawn_A": 761604959, + "Guest_KR_Mantis_HunterF_A": 820917199, + "Guest_KR_Mantis_HunterF_B": 871248847, + "Guest_KR_Mantis_HunterF_C": 854471631, + "Guest_KR_Mantis_HunterF_D": 904803279, + "Guest_KR_Mantis_HunterF_F": 938357711, + "Guest_KR_Mantis_HunterF_F_Driftwood": 2053608437, + "Guest_KR_Mantis_HunterF_G": 921580495, + "Guest_KR_Mantis_HunterF_H": 971912143, + "Guest_KR_Mantis_HunterF_I": 955134927, + "Guest_KR_Mantis_HunterF_I_Zuzka": 935478878, + "Guest_KR_Mantis_HunterF_J": 1005466575, + "Guest_KR_Mantis_HunterF_J_Zelda": 886910558, + "Guest_KR_Mantis_HunterF_K": 988689359, + "Guest_KR_Mantis_HunterF_K_LongShd": 1767574336, + "Guest_KR_Mantis_HunterF_L": 1039021007, + "Guest_KR_Mantis_HunterF_M": 1022243791, + "Guest_KR_Mantis_HunterF_P_Bossfight": 1731428987, + "Guest_KR_Mantis_HunterF_Q": 552481743, + "Guest_KR_Mantis_HunterF_R": 602813391, + "Guest_KR_Mantis_HunterF_S": 586036175, + "Guest_KR_Mantis_HunterF_SecondColumnCpt_A": 1354033994, + "Guest_KR_Mantis_HunterF_T": 636367823, + "Guest_KR_Mantis_HunterF_Tribute": 1946371041, + "Guest_KR_Mantis_HunterF_U": 619590607, + "Guest_KR_Mantis_HunterF_V": 669922255, + "Guest_KR_Mantis_HunterF_W": 653145039, + "Guest_KR_Mantis_HunterF_Y": 686699471, + "Guest_KR_Mantis_HunterF_Z_Officer": 206016474, + "Guest_KR_Mantis_ProphetF_B": 1791139097, + "Guest_KR_Mantis_ProphetF_C": 1254268185, + "Guest_KR_Milipede_Warrior_A": 410726278, + "Guest_KR_Milipede_Warrior_B": 410726282, + "Guest_KR_Milipede_Warrior_C": 410726286, + "Guest_KR_Milipede_Warrior_D": 410726290, + "Guest_KR_Milipede_Warrior_H": 410726306, + "Guest_KR_Milipede_Warrior_J": 410726314, + "Guest_KR_Milipede_Warrior_K": 410726318, + "Guest_KR_Moth_Priest_A": 1421532604, + "Guest_KR_Moth_Priest_B": 1421532092, + "Guest_KR_Moth_Priest_C": 1421531580, + "Guest_KR_Moth_Priest_D": 1421531068, + "Guest_KR_Moth_Priest_D_Drepa": 1483393420, + "Guest_KR_Moth_Priest_E": 1421530556, + "Guest_KR_Moth_Priest_F": 1421530044, + "Guest_KR_Mantis_HunterF_Z": 737031119, + "Guest_KR_Roach_AntLion_A": 1860517987, + "Guest_KR_Roach_AntLion_B_Bossfight": 993284625, + "Guest_KR_Roach_AntLion_C": 1861566563, + "Guest_KR_Roach_Cook_A": 259847495, + "Guest_KR_Roach_Glutton_B": 249524334, + "Guest_KR_Roach_WaterBug_A": 1795473599, + "Guest_KR_Roach_WaterBug_B": 1745141951, + "Guest_MR_Beetle_Scarab_A_01": 1789741503, + "Guest_MR_Beetle_Scarab_A_02": 1789741491, + "Guest_MR_Beetle_Scarab_B_01": 1790265791, + "Guest_ZF-Goliath-R10-Boss-01": 7034074, + "Guest_ZF-Goliath-R10-Boss-02": 7034202, + "Guest_ZF-Goliath-R10-Boss-03": 7034330, + "Guest_ZF-Goliath-R10-Boss": 1603576807, + "Guest_ZF-Goliath-R11-Boss-01": 2140449574, + "Guest_ZF-Goliath-R11-Boss-02": 2140449446, + "Guest_ZF-Goliath-R11-Boss-03": 2140449318, + "Guest_ME1_Ant_Aunt_A": 707251855, + "Guest_ME1_Ant_Aunt_B": 1440231794, + "Guest_CC_Fly_Worker_A_01": 1497784524, + "Guest_CC_Roach_Worker_A_01": 1026321602, + "Guest_CC_Roach_Lieutenant_A_01": 1081690299, + "Guest_CC_Roach_Lieutenant_B_01": 1081690295, + "Guest_CC_Roach_Don_A_01": 547836893, + "Guest_CC_Roach_BBug_A_01": 1021150157, + "Guest_CC_Roach_RoachSteady_A_01": 859409247, + "Guest_Draconian-Caster-Yellow-Boss-R8": 1016221419, + "Guest_Draconian-Zombie-R8-2-1": 1226055265, + "Guest_Draconian-Zombie-R8-2": 1226115297, + "Guest_Draconian-Caster-Green-R7": 2143342719, + "Guest_Draconian-Warrior-Gold-Boss-R8": 1044388248, + "Guest_Draconian-Caster-Gray-R7": 95878769, + "Guest_DS-Boss-MAW": 1676071241, + "Guest_Draconian-Zombie-R8-1": 1226115309, + "Guest_Draconian-Warrior-Purple-Boss-R7": 601813964, + "Guest_Draconian-Caster-Tan-Boss-R7": 1973339532, + "Guest_Draconian-Caster-Blue-R6": 1684210173, + "Guest_Draconian-Caster-Yellow-R8": 2129956646, + "Guest_Draconian-Warrior-Red-R7": 521861944, + "Guest_Draconian-Warrior-Tan-R6": 1726416112, + "Guest_Draconian-Warrior-Purple-R8": 1896270341, + "Guest_Draconian-Caster-Blue-Boss-R7": 401581134, + "Guest_Draconian-Zombie-R8": 384497496, + "Guest_GH2-Draconian-HENCH-R10": 1149202878, + "Guest_GH2-Draconian-BOSS-R10": 2114378473, + "Guest_G14-DM-Draconian_Boss": 490246211, + "Guest_G14-DM-Draconian_Storm": 2035239226, + "Guest_G14-DM-Draconian_Ice": 782200563, + "Guest_G14-DM-Draconian_Malistaire_M": 1904691727, + "Guest_G14-DM-Draconian_Malistaire_S": 1904685583, + "Guest_G14-DM-Draconian_Malistaire_D": 1904700943, + "Guest_G14-DM-Draconian_Malistaire": 1904736751, + "Guest_G14-DM-Draconian_Malistaire_B": 1904702991, + "Guest_G14-DM-Draconian_Malistaire_I": 1904695823, + "Guest_G14-DM-Draconian_Malistaire_L": 1904692751, + "Guest_G14-DM-Draconian_Malistaire_F": 1904698895, + "Guest_Draconian-PW-Gauntlet-Boss": 493080513, + "Guest_CC_Draconian_A_01": 551348115, + "Guest_AZ-Parasaur-Undead-E": 2041242846, + "Guest_AZ-Parasaur-drkPriestF-F": 898239615, + "Guest_EM_Parasaur_DrkPriestF_A_01": 1007099606, + "Guest_EM_Parasaur_DrkPriestF_A_02": 1007099605, + "Guest_AZ-Parasaur-drkPriestF-D": 898501759, + "Guest_AZ-Parasaur-drkPriestF-E": 898370687, + "Guest_AZ-Parasaur-drkPriestF-A": 897846399, + "Guest_AZ-Parasaur-Undead-B": 1716853538, + "Guest_AZ-Parasaur-Undead-A": 106240802, + "Guest_AZ-Parasaur-Undead-G": 967501022, + "Guest_AZ-Parasaur-PriestF-D": 1177445525, + "Guest_AZ-Parasaur-Undead-C": 1179982626, + "Guest_AZ-Parasaur-drkPriestF-C": 897584255, + "Guest_AZ-Parasaur-Undead-SkurkisMinion": 1414766977, + "Guest_AZ-Parasaur-drkPriestF-B": 897715327, + "Guest_AZ-Parasaur-drkPriestF-B-Script": 1414847875, + "Guest_AZ_Parasaur_Priest_A_Boss_01": 890025421, + "Guest_AZ-Parasaur-Undead-D": 1504371934, + "Guest_AZ-Pteranodon-Knight-D": 1127364049, + "Guest_AZ-StoneSkeletonKey-Ixcax-Cursedwing": 699239601, + "Guest_AZ-Pteranodon-Knight-E": 1127363921, + "Guest_AZ-Pteranodon-Knight-F": 1127363793, + "Guest_AZ-Pteranodon-Knight-A-PageEvent": 942589002, + "Guest_AZ-StoneSkeletonKey-Minion-Death": 311645584, + "Guest_AZ-Pteranodon-Knight-A": 1127364433, + "Guest_AZ-Raptor-Wraith-A": 585729247, + "Guest_AZ-Raptor-Undead-D": 893623689, + "Guest_G14-HS-Ifzt": 1914694612, + "Guest_AZ-Raptor-Warrior-A": 855749884, + "Guest_AZ-Raptor-Undead-C": 897293705, + "Guest_AZ-Raptor-Undead-B": 896769417, + "Guest_AZ-Raptor-Undead-F": 894672265, + "Guest_AZ-Raptor-Warrior-F": 872527100, + "Guest_AZ-Raptor-Warrior-H": 973190396, + "Guest_AZ-Tritops-Warrior-I": 1942669769, + "Guest_AZ-Tritops-Undead-H": 1215305911, + "Guest_AZ-Tritops-Undead-E": 1164974263, + "Guest_AZ-Tritops-SpkWarrior-A": 860850257, + "Guest_AZ-Tritops-SpkWarrior-B": 860862545, + "Guest_AZ-Tritops-Undead-F": 1181751479, + "Guest_AZ-Tritops-Warrior-K": 868927945, + "Guest_AZ-Tritops-Undead-G": 1198528695, + "Guest_AZ-Tritops-Mummy-A": 1912444877, + "Guest_AZ-Tritops-Warrior-G": 1278555704, + "Guest_AZ-Tritops-Undead-D": 1148197047, + "Guest_AZ-Tritops-Undead-A": 1097865399, + "Guest_AZ-Tritops-SpkChief-B": 2096319577, + "Guest_AZ-Tritops-Mummy-B": 1910872013, + "Guest_AZ-Tritops-Warrior-H": 1405798857, + "Guest_AZ-Dino-Undead-A": 508678670, + "Guest_AZ-Dino-Undead-B": 508679182, + "Guest_AZ-Dino-Undead-D": 508680206, + "Guest_KR_Dino_Undead_A": 1638800628, + "Guest_KR_Dino_Undead_Minion_A": 892450235, + "MNT_HayRideTruck": 75377404, + "MNT_ShadowSpiderForm": 1439860426, + "Transformation_BG_Draconian_Death": 794598804, + "PP_BabyOrca": 1056061090, + "Transformation_BG_Cyclops_Fire": 638854828, + "Transformation_BG_Fairy_Ice": 874078461, + "PP_SpriteLife": 1824998010, + "PP_Raccoon": 1107326808, + "PP_FireKitten": 593048189, + "MNT_SkeletalDuck": 1306273036, + "PP_VampireSquid": 431023109, + "PP_CottonCandy": 891201813, + "PP_ThreeHeadGoat": 1282096939, + "PP_EyeBot": 260189248, + "MNT_DeathBoat": 1444454568, + "MNT_Lemuria": 908974762, + "MNT_DeathBoat_B": 1444456538, + "MNT_DeathBoat_C": 1444456474, + "MNT_Spooky3": 1667775622, + "MNT_PresentBox": 122082000, + "MNT_Orca": 1726961653, + "Guest_LM_Golem_Steel_A_01": 19551853, + "Guest_LM_Golem_Steel_A_02": 36329069, + "Guest_LM_EyeBot_A_01_Death": 380508535, + "Guest_LM_EyeBot_A_01_Myth": 167840640, + "PP_ThreeHeadGoat_B": 1209286443, + "PP_ThreeHeadGoat_C": 1211383595, + "Guest_KR_Eel_Whirligig_A": 1062268734, + "Guest_KR_Goliath_Behemoth_A": 1231139987, + "Guest_KR_Goliath_Behemoth_C": 1231139995, + "Guest_KR_Goliath_Behemoth_D": 1231139975, + "Guest_KR_Goliath_Behemoth_E": 1231139971, + "Guest_KR_Goliath_Behemoth_H": 1231140023, + "Guest_KR_Goliath_Crusher_C": 1651720060, + "Guest_KR_Goliath_Crusher_D": 2106376324, + "Guest_KR_Goliath_Crusher_F": 1032634500, + "Guest_KR_Goliath_Crusher_G": 495763588, + "Guest_KR_Goliath_Crusher_K": 1651720059, + "Guest_AZ-Goliath-Crusher-A": 1874784966, + "Guest_AZ-Goliath-Crusher-B": 264172230, + "Guest_AZ-Goliath-Crusher-C": 801043142, + "Guest_AZ-Goliath-Crusher-D": 809569594, + "Guest_AZ-Goliath-Crusher-E": 272698682, + "Guest_HG_AKT_Butterfly_Time_A_25": 1788523059, + "Guest_HG_AKT_Butterfly_Time_A_50": 1130017331, + "Guest_HG_AKT_Butterfly_Time_A_75": 1809494579, + "Guest_HG_AKT_Butterfly_Time_A_100": 1113240099, + "Guest_HG_AKT_Butterfly_Time_A_130": 1515893283, + "MNT_DeathBoat_D": 1444456922, + "Guest_KR_RhinoBeetle_Sun_A_Bossfight": 47895417, + "Guest_KR_RhinoBeetle_Star_A": 1947510103, + "Guest_KR_RhinoBeetle_Moon_A": 1751275863, + "Guest_ME1_Clockwork_Marine_A": 1481452452, + "Guest_ME1_Clockwork_Marine_B": 1481452068, + "Guest_CC_GoldSkeletonKey_Lice_DeepSpawn_B": 1306132994, + "Guest_KR_DamdinBazar_A_Bossfight": 1333596311, + "Guest_DS-Minion-MAW2": 356796677, + "Guest_KH-Wyrmling-1": 116330513, + "Guest_KH-Wyrmling-20": 183439385, + "Guest_KH-Wyrmling-40": 317657113, + "Guest_KH-Wyrmling-60": 451874841, + "Guest_KH-Wyrmling-80": 586092569, + "Guest_PL_Polar_Bear_Solider_C": 1785662565, + "Guest_Skeleton-Silver-WCBoss-L01": 17766963, + "Guest_Banshee-Red-Elite-L24_B": 1902069117, + "Transformation_BG_WolfWarrior_Myth": 339098032, + "Transformation_BG_RatThief_Balance": 881728218, + "Transformation_BG_Colossus_Storm": 593527492, + "Transformation_BG_Elf_Life": 347405087, + "Transformation_BG_Minotaur_Ice": 1197752291, + "MNT_TRex_B": 660285500, + "PP_SpriteDark_Ice": 2036248504, + "MNT_RollingBall": 1658139390, + "Guest_LM_TRex_Base_A_03": 1378630657, + "Guest_LM_TRex_Base_A_04": 1378745345, + "Guest_LM_TRex_Base_A_05": 1378728961, + "Guest_LM_TRex_Base_A_01": 1378663425, + "Guest_LM_TRex_Base_A_02": 1378647041, + "Guest_LM_TRex_Cyborg_A_01": 151609741, + "Guest_LM_TRex_Cyborg_A_02": 168386957, + "Guest_LM_TRex_Cyborg_A_03": 185164173, + "Guest_LM_TRex_Cyborg_B_01": 151611277, + "Guest_LM_TRex_Cyborg_D_01": 151612301, + "Guest_LM_TRex_Cyborg_E_01": 151611789, + "Guest_LM_TRex_Cyborg_C_01": 151610765, + "Guest_LM_Draconian_Base_A_01": 1607373112, + "Guest_LM_EyeBot_B_01": 1085543056, + "Guest_LM_Drone_Eye_C_01": 916954037, + "Guest_LM_Drone_Eye_D_01": 1230529608, + "Guest_LM_Drone_Eye_D_02": 1230545992, + "Guest_LM_Drone_Eye_D_04": 1230578760, + "Guest_LM_Drone_Eye_D_03": 1230562376, + "Guest_LM_Drone_Eye_A_01": 916954038, + "Guest_LM_Drone_Eye_A_02": 916937654, + "Guest_LM_Drone_Eye_B_01": 1230529611, + "Guest_LM_Drone_Eye_D_05": 1230595144, + "Guest_LM_Drone_Eye_D_07": 1230627912, + "Guest_LM_Drone_Eye_D_08": 1230644296, + "Guest_LM_Drone_Eye_A_03": 916921270, + "Guest_LM_Drone_Eye_A_04": 916904886, + "Guest_LM_Drone_Eye_C_02": 916937653, + "Guest_LM_EyeBot_B_02": 1061940593, + "Guest_LM_EyeBot_B_03": 1085543055, + "Guest_LM_EyeBot_B_04": 1061940594, + "Guest_LM_Drone_Eye_C_03": 916921269, + "Guest_LM_Robot_Kit10_A_01": 199936400, + "Guest_LM_Colossus_Mander_A_01": 2107529026, + "Guest_LM_Robot_Future_A_01": 998840846, + "Guest_LM_Robot_FutureBIG_A_01": 340408568, + "Guest_LM_Robot_FutureBIG_A_02": 340396280, + "Guest_LM_Robot_FutureBIG_A_03": 340400376, + "Guest_LM_Robot_OldOne_A_01": 779070973, + "Guest_LM_Robot_OldOne_A_02": 1315941885, + "Guest_LM_Millipede_Centi_A_01": 168575797, + "Guest_LM_Millipede_Centi_A_03": 168583989, + "Guest_LM_Millipede_Centi_A_02": 168588085, + "Guest_LM_Millipede_Centi_A_04": 168563509, + "Guest_LM_Moth_Sorcerer_A_01": 228191136, + "Guest_LM_Boar_Barbarian_A_01": 1238634912, + "Guest_LM_Boar_Barbarian_A_02": 1238634528, + "Guest_LM_Boar_Barbarian_A_03": 1238634656, + "Guest_LM_Boar_Barbarian_A_04": 1238635296, + "Guest_LM_Boar_Barbarian_A_05": 1238635424, + "Guest_LM_Boar_Chief_A_01": 357051311, + "Guest_LM_Fungus_Humango_A_01": 1398460044, + "Guest_LM_Fungus_Humango_A_02": 1398460172, + "Guest_LM_Treant_Base_A_01": 1658172241, + "Guest_LM_GiantTree_EvilRoots_A_01": 282225934, + "Guest_LM_PA_GreenMan_A_01": 67705044, + "Guest_LM_Fungus_Humango_B_01": 1348128396, + "Guest_LM_Fungus_Humango_A_03": 1398460300, + "Guest_LM_Fungus_Man_C_01": 1648824156, + "Guest_LM_Fungus_Man_C_02": 1650397020, + "Guest_LM_Rhino_Zombie_A_01": 248513993, + "Guest_LM_Malughast_Base_01": 883820436, + "Guest_LM_Malughast_Base_02": 1420691348, + "Guest_LM_Lemur_HierarchF_H_04": 231562115, + "Guest_LM_Malughast_Base_03": 1957562260, + "Guest_LM_Malughast_Base_05": 1263663212, + "Guest_LM_Malughast_Base_06": 726792300, + "Guest_LM_Malughast_Base_08": 346949523, + "Guest_LM_Malughast_Base_09": 883820435, + "Guest_LM_Malughast_Base_04": 1800534124, + "Guest_LM_Minotaur_Skeleton_A_01": 1865122824, + "Guest_LM_Lemur_Wild_B_03": 1783764037, + "Guest_LM_Lemur_HierarchF_H_01": 231541635, + "Guest_LM_Lemur_HierarchF_H_02": 231553923, + "Guest_LM_Mander_Warrior_A_01": 1651245419, + "Guest_LM_Mander_Warrior_A_02": 1651245291, + "Guest_LM_Mander_Warrior_B_01": 1634468203, + "Guest_LM_Mander_Warrior_B_02": 1634468075, + "Guest_LM_Mander_Warrior_A_03": 1651245163, + "Guest_LM_Mander_Warrior_B_03": 1634467947, + "Guest_LM_Mander_Warrior_A_06": 1651245803, + "Guest_LM_Mander_Warrior_A_05": 1651245931, + "Guest_LM_Mander_Mummy_B_01": 1844111521, + "Guest_LM_Mander_Hero_B_01": 865113284, + "MNT_HolidayHippogriff": 938892112, + "MNT_Sabertooth_Ice": 1870381696, + "PP_FenrisWolf_Bantam": 776647759, + "MNT_JetPack": 1986300552, + "MNT_Scooter_F": 1005560708, + "PP_FossaKitten_A": 431748212, + "PP_Elfvis": 147991405, + "Guest_LM_Chicken_Hero_A_01": 1308728300, + "Guest_LM_Horse_Explorer_A_01": 434405482, + "Guest_LM_Duck_HeroineF_A_01": 133199186, + "Guest_LM_Crane_Hero_A_01": 204272548, + "Guest_LM_Deer_HeroineF_A_01": 1800374959, + "Guest_LM_Deer_Hero_A_01": 223109503, + "Guest_LM_Dog_Hero_A_01": 1434615064, + "PP_YearTiger": 777048708, + "MNT_Barrel": 3576425, + "MNT_Krampus": 404117611, + "PP_ChineseTigerCub": 1256032005, + "PP_Lemur": 565774155, + "PP_Robot": 1089075331, + "PP_Capybara": 451970762, + "Guest_LM_Ghoul_Base_A_01": 1822415945, + "Guest_LM_Lemur_HierarchF_H_03": 231549827, + "Guest_LM_Ghoul_Base_A_02": 1820843081, + "Guest_LM_Ghoul_Base_A_03": 1821367369, + "MNT_SpringSoF2022": 1685679511, + "MNT_WarElephant": 875015497, + "PP_Strix": 514230046, + "MNT_Beachball": 791896033, + "MNT_Blank": 633398131, + "MNT_CardboardFlier": 1646636689, + "MNT_LochMonster": 879660722, + "Transformation_BG_Krok_Death": 1395067182, + "Transformation_BG_Draconian_Fire": 1551581732, + "PP_Scotty": 1708580475, + "Guest_KR_Mice_Knight_A": 480101508, + "PP_Peacock": 1178721112, + "MNT_PoodleMoth": 975420235, + "PP_Hummingbird": 624666906, + "PP_WolfWarrior_Myth": 470737416, + "Guest_HG_UFD_Ghost_QueenF_A_100": 795323059, + "Guest_HG_UFD_Ghost_QueenF_A_50": 728230579, + "Guest_HG_UFD_Pirate_UndeadHighland_A_Balance_150": 201145133, + "Guest_HG_UFD_Pirate_UndeadHighland_A_Balance_100": 201144941, + "Guest_HG_UFD_Pirate_UndeadHighland_A_Balance_50": 201177701, + "Guest_HG_UFD_Pirate_UndeadHighland_A_Star_150": 1329885920, + "Guest_HG_UFD_Pirate_UndeadHighland_A_Star_100": 1304720096, + "Guest_HG_UFD_Pirate_UndeadHighland_A_Star_50": 1305768671, + "Guest_HG_UFD_Pirate_UndeadHighland_A_Shadow_150": 1263689971, + "Guest_HG_UFD_Pirate_UndeadHighland_A_Shadow_100": 1263689977, + "Guest_HG_UFD_Pirate_UndeadHighland_A_Shadow_50": 189949177, + "Guest_HG_UFD_Kelpie_Warrior_A_150": 54296095, + "Guest_HG_UFD_Kelpie_Warrior_A_100": 725384735, + "Guest_HG_UFD_Kelpie_Warrior_A_50": 708607503, + "Guest_HG_UFD_Pirate_UndeadHighland_B_150": 1099317831, + "Guest_HG_UFD_Pirate_UndeadHighland_B_100": 25576008, + "Guest_HG_UFD_Pirate_UndeadHighland_B_50": 159793864, + "Guest_HG_UFD_Ghost_QueenF_A_150": 795716275, + "PP_SpiderMinion": 557357331, + "MNT_Vines_Rainbow": 1587180338, + "MNT_YoungDrake": 1279496198, + "PP_Pet_Coconut": 444388490, + "DragonKI": 1490194214, + "PP_Sharkfish": 601628284, + "PP_MimicCake": 48071878, + "Guest_AQ-Bronze-Eagle": 375279744, + "Guest_Spider-Brown-L26": 2128680185, + "Guest_KR_Spider_Giant_D": 744401035, + "Guest_Wizard-Female-Band-Blue-R8": 1447486557, + "Guest_CC_Human_DSCrusaderF_A_01": 726538068, + "Guest_WC_Scarecrow_A_01": 867491011, + "Guest_WC_Banshee_A_01": 1433786463, + "Guest_WC_LostSoul_A_01": 796936146, + "PP_Fairy_Myth": 1117624344, + "PP_SpriteDark_Myth": 1884257976, + "BG_CyclopsLife_A": 944091673, + "Transformation_BG_NinjaPig_Storm": 2005137181, + "Transformation_BG_Fairy_Myth": 1880704188, + "Transformation_BG_Cyclops_Life": 638936708, + "Guest_AQ-Eagle-Praetorian": 1988013806, + "Guest_KM_BabyCarrot_A_01": 766239512, + "Guest_G14-DM-Gargoyle": 282898047, + "Guest_MR_Durvish_Sergeant_A_Boss_01": 1532609325, + "Guest_Cyclops-RedHelmet-KTBoss-L28": 2072371506, + "Guest_EM_Pig_Singer_A_01": 698597069, + "Guest_EM_Pig_Captain_A": 977505995, + "Guest_EM_Pig_Crewman_A": 465576459, + "PP_ChipmunkConductor": 1089819900, + "PP_LuckyCat": 1109326826, + "MNT_ImpCar": 1736092191, + "MNT_Book": 1547655078, + "MNT_JackoLantern": 649919658, + "MNT_Zheng": 742453108, + "MNT_Train": 413197899, + "MNT_Cerberus": 552686313, + "PP_Coconut": 1122741587, + "Transformation_Statue": 1153168084, + "Transformation_Nullity": 622504394, + "PP_Irk": 1825277392, + "Guest_Wyrmling-Fire-R8-1": 531485009, + "MNT_WolfLowPoly_A": 1947890962, + "MNT_WolfLowPoly_B": 1947825426, + "Transformation_BG_RatThief_Fire": 1169330235, + "Transformation_BG_WolfWarrior_Death": 159966683, + "Transformation_BG_Minotaur_Balance": 657855108, + "Transformation_BG_Draconian_Ice": 1907339814, + "Transformation_BG_Colossus_Myth": 1305894338, + "Transformation_NV_Penguin": 1757096851, + "Transformation_NV_Unicorn": 60447768, + "Transformation_NV_Monkey": 1379873688, + "Transformation_NV_Dog": 1961288968, + "PP_Wolf_Storm": 455227171, + "PP_WoodDuck": 1680912895, + "MNT_RockingHorse": 1205280059, + "MNT_SOF2022_Car": 219868812, + "PP_Buffaloon": 796152873, + "MNT_Steamboat": 1969530127, + "MNT_FelizNavidog": 847046394, + "PP_Mustache": 1571079379, + "Guest_DD-DS01-Skeleton-Pirate-20": 226826848, + "Guest_DD-DS01-Skeleton-Pirate-40": 201661024, + "Guest_DD-DS01-Skeleton-Pirate-60": 210049632, + "Guest_DD-DS01-Skeleton-Pirate-80": 251992672, + "Guest_DD-DS01-Skeleton-Pirate": 1994450336, + "Guest_DD-DS01-Shadow-Minion-Fire": 1074864956, + "Guest_DD-DS01-Shadow-Minion-Ice": 1841681214, + "Guest_DD-DS01-Shadow-Minion-Fire-20": 1074880881, + "Guest_DD-DS01-Shadow-Minion-Fire-40": 1074880945, + "Guest_DD-DS01-Shadow-Minion-Ice-20": 96850220, + "Guest_DD-DS01-Shadow-Minion-Ice-40": 96850218, + "Guest_DD-DS01-Shadow-Minion-Fire-60": 1074881009, + "Guest_DD-DS01-Shadow-Minion-Ice-60": 96850216, + "Guest_DD-DS01-Shadow-Minion-Fire-80": 1074880561, + "Guest_DD-DS01-Shadow-Minion-Ice-80": 96850214, + "Guest_SC-SpectreOfB-1": 1471950935, + "Guest_SC-SpectreOfB-20": 1471942759, + "Guest_SC-SpectreOfB-40": 1471942663, + "Guest_SC-SpectreOfB-60": 1471942695, + "Guest_SC-SpectreOfB-80": 1471942855, + "Guest_KH-Skeleton-Ice-60": 2108358962, + "Guest_KH-Skeleton-Ice-40": 2108391730, + "Guest_KH-Skeleton-Ice-20": 2108293426, + "Guest_KH-Skeleton-Ice-1": 2099953970, + "Guest_KH-Skeleton-Ice-80": 2108195122, + "Guest_KH-Undead-Caster-60": 1662604496, + "Guest_KH-Undead-Caster-40": 1661555920, + "Guest_KH-Undead-Caster-20": 1664701648, + "Guest_KH-Undead-Caster-1": 1931564240, + "Guest_KH-Undead-Caster-80": 1667847376, + "Guest_DD-PA01-DeadBeets": 1664999367, + "Guest_DD-PA01-DeadBeets-20": 1901453253, + "Guest_DD-PA01-DeadBeets-40": 2002116549, + "Guest_DD-PA01-DeadBeets-60": 1968562117, + "Guest_DD-PA01-DeadBeets-80": 2069225413, + "Guest_DD-PA01-Disparagus": 1865816461, + "Guest_DD-PA01-Disparagus-20": 573970895, + "Guest_DD-PA01-Disparagus-40": 499770929, + "Guest_DD-PA01-Disparagus-60": 1573512753, + "Guest_DD-PA01-Disparagus-80": 1647712718, + "Guest_DD-PA01-MeanestFlyTrap": 2001546861, + "Guest_DD-PA01-MeanestFlyTrap-20": 1936326253, + "Guest_DD-PA01-MeanestFlyTrap-40": 1936064109, + "Guest_DD-PA01-MeanestFlyTrap-60": 1935801965, + "Guest_DD-PA01-MeanestFlyTrap-80": 1937636973, + "Guest_HG-MD-MacDeath-20": 182639104, + "Guest_HG-MD-MacDeath-40": 182638080, + "Guest_HG-MD-MacDeath-60": 182637056, + "Guest_HG-MD-MacDeath-80": 182636032, + "Guest_HG-MD-MacDeath-100": 174252032, + "Guest_HG-MD-MacDeath-130": 174202880, + "Guest_HG_Sinbad_Skeleton_25": 494617874, + "Guest_HG_Sinbad_Skeleton_50": 42253050, + "Guest_HG_Sinbad_Skeleton_75": 1115994862, + "Guest_HG_Sinbad_Skeleton_100": 2105232646, + "Guest_HG_Sinbad_Skeleton_130": 2105232650, + "Guest_HG_Sinbad_Skeleton_25_02": 492722834, + "Guest_HG_Sinbad_Skeleton_50_02": 44148090, + "Guest_HG_Sinbad_Skeleton_75_02": 1117889902, + "Guest_HG_Sinbad_Skeleton_100_02": 2044247302, + "Guest_HG_Sinbad_Skeleton_130_02": 2044247306, + "Guest_DD-AV01-WyrmBoss": 1648677986, + "Guest_DD-AV01-WyrmBoss-20": 1926730850, + "Guest_DD-AV01-WyrmBoss-40": 1927779426, + "Guest_DD-AV01-WyrmBoss-60": 1928828002, + "Guest_DD-AV01-WyrmBoss-80": 1921487970, + "Guest_RH-Wyrm-Boss-01": 1027277645, + "Guest_RH-Wyrm-Boss-20": 1027277660, + "Guest_RH-Wyrm-Boss-40": 1027277663, + "Guest_RH-Wyrm-Boss-60": 1027277662, + "Guest_RH-Wyrm-Boss-80": 1027277657, + "Guest_HG_Sinbad_Wyrm_25": 1101443356, + "Guest_HG_Sinbad_Wyrm_50": 1101528860, + "Guest_HG_Sinbad_Wyrm_75": 1101445916, + "Guest_HG_Sinbad_Wyrm_100": 1093138204, + "Guest_HG_Sinbad_Wyrm_130": 1093089052, + "Guest_KH-Treant-1": 2001244331, + "Guest_KH-Treant-60": 1968148651, + "Guest_KH-Treant-40": 1968017579, + "Guest_KH-Treant-20": 1967886507, + "Guest_KH-Treant-80": 1967231147, + "Guest_DD-PA01-ForestGrump": 1969685870, + "Guest_DD-PA01-ForestGrump-20": 714666713, + "Guest_DD-PA01-ForestGrump-40": 714666689, + "Guest_DD-PA01-ForestGrump-60": 714666697, + "Guest_DD-PA01-ForestGrump-80": 714666737, + "Guest_DD-PA01-ForestNymphs": 227087348, + "Guest_DD-PA01-ForestNymphs-20": 227023552, + "Guest_DD-PA01-ForestNymphs-60": 227023040, + "Guest_DD-PA01-ForestNymphs-80": 227024832, + "Guest_SC-Pig-BalanceWizardA-1": 475456968, + "Guest_SC-Pig-BalanceWizardA-20": 477550024, + "Guest_SC-Pig-BalanceWizardA-40": 477541832, + "Guest_SC-Pig-BalanceWizardA-60": 477533640, + "Guest_SC-Pig-BalanceWizardA-80": 477525448, + "Guest_SC-Pig-BalanceWizardB-1": 475456964, + "Guest_SC-Pig-BalanceWizardB-20": 477550020, + "Guest_SC-Pig-BalanceWizardB-40": 477541828, + "Guest_SC-Pig-BalanceWizardB-60": 477533636, + "Guest_SC-Pig-BalanceWizardB-80": 477525444, + "Guest_SC-Pig-BalanceWizardC-1": 475456960, + "Guest_SC-Pig-BalanceWizardC-20": 477550016, + "Guest_SC-Pig-FireWizard-1": 2048176291, + "Guest_SC-Pig-FireWizard-20": 2031399073, + "Guest_SC-Pig-FireWizard-40": 2132062369, + "Guest_SC-Pig-FireWizard-60": 2098507937, + "Guest_SC-Pig-FireWizard-80": 1930735777, + "Guest_SC-Pig-IceWizardF-1": 1178687744, + "Guest_SC-Pig-IceWizardF-20": 1161910526, + "Guest_SC-Pig-IceWizardF-40": 1128356094, + "Guest_SC-Pig-IceWizardF-60": 1094801662, + "Guest_SC-Pig-IceWizardF-80": 1329682686, + "Guest_SC-Pig-MythWizard-1": 2048492725, + "Guest_SC-Pig-MythWizard-20": 2031715511, + "Guest_SC-Pig-MythWizard-40": 2132378807, + "Guest_SC-Pig-MythWizard-60": 2098824375, + "Guest_SC-Pig-MythWizard-80": 1931052215, + "Guest_SC-Pig-StormWizardF-1": 1743849420, + "Guest_SC-Pig-StormWizardF-20": 1743851464, + "Guest_SC-Pig-StormWizardF-40": 1743851488, + "Guest_SC-Pig-StormWizardF-60": 1743851480, + "Guest_SC-Pig-StormWizardF-80": 1743851504, + "Guest_KH-Pig-Bandit-Lord-1": 1080496628, + "Guest_KH-Pig-Bandit-Lord-20": 543625652, + "Guest_KH-Pig-Bandit-Lord-40": 530116172, + "Guest_KH-Pig-Bandit-Lord-60": 1603857996, + "Guest_KH-Pig-Bandit-Lord-80": 1617367475, + "Guest_KH-Pig-Bandit-Ninja-1": 1945100907, + "Guest_KH-Pig-Bandit-Ninja-20": 1945102951, + "Guest_KH-Pig-Bandit-Ninja-40": 1945102975, + "Guest_KH-Pig-Bandit-Ninja-60": 1945102967, + "Guest_KH-Pig-Bandit-Ninja-80": 1945102927, + "Guest_KH-Pig-War-Caster-1": 656859765, + "Guest_KH-Pig-War-Caster-20": 606528119, + "Guest_KH-Pig-War-Caster-40": 572973687, + "Guest_KH-Pig-War-Caster-60": 539419255, + "Guest_KH-Pig-War-Caster-80": 774300279, + "Guest_KH-Pig-War-Warrior-Boss-1": 16342355, + "Guest_KH-Pig-War-Warrior-Boss-20": 2143724205, + "Guest_KH-Pig-War-Warrior-Boss-40": 2118558381, + "Guest_KH-Pig-War-Warrior-Boss-60": 2126946989, + "Guest_KH-Pig-War-Warrior-Boss-80": 2101781165, + "Guest_SC-Pig-BalanceWizardC-40": 477541824, + "Guest_SC-Pig-BalanceWizardC-60": 477533632, + "Guest_SC-Pig-BalanceWizardC-80": 477525440, + "Guest_KH-Helephant-Death-20": 1109389719, + "Guest_KH-Helephant-Death-40": 2111835753, + "Guest_KH-Helephant-Death-60": 1038093929, + "Guest_KH-Helephant-Death-80": 35647896, + "Guest_KH-GreyOgre-Spider-1": 356368404, + "Guest_KH-GreyOgre-Spider-20": 1966981204, + "Guest_KH-GreyOgre-Spider-40": 1254244268, + "Guest_KH-GreyOgre-Spider-60": 180502444, + "Guest_KH-GreyOgre-Spider-80": 893239379, + "Guest_HG_Sinbad_Colossus_25": 1190802829, + "Guest_HG_Sinbad_Colossus_50": 1493551719, + "Guest_HG_Sinbad_Colossus_75": 419809907, + "Guest_HG_Sinbad_Colossus_100": 653933977, + "Guest_HG_Sinbad_Colossus_130": 653933973, + "Guest_NV_Dino_AberrantUndead_A_01": 2035087398, + "Guest_NV_Hellephant_Aberrant_A_01": 989522333, + "Guest_NV_Hellephant_Aberrant_A_02": 989522334, + "Guest_NV_BananaSpider_Base_A_01": 1585810541, + "Guest_NV_BananaSpider_Base_A_02": 1581616237, + "Guest_NV_BananaSpider_Base_A_03": 1577421933, + "Guest_NV_BananaSpider_Base_A_04": 1606782061, + "Guest_NV_BananaSpider_Base_A_05": 1602587757, + "Guest_NV_Wyrm_Aberrant_A_01": 16108415, + "Guest_NV_Monkey_Zombie_A_01": 1854775300, + "Guest_NV_Monkey_Zombie_A_02": 1854775304, + "Guest_NV_Monkey_Zombie_A_03": 1854775308, + "Guest_NV_Monkey_Zombie_A_04": 1854775312, + "MNT_Flag_Monster": 867940056, + "Guest_SKB_WY_DarkBramble_A_30": 2046798767, + "Guest_SKB_WY_DarkBramble_A_50": 2046797999, + "Guest_SKB_WY_DarkBramble_A_100": 2044701359, + "Guest_SKB_WY_DarkBramble_A_150": 2044721839, + "Guest_SKB_GH_Boar_A_30": 1547921275, + "Guest_SKB_WC_SpiritIgnorance_A_50": 1488876986, + "Guest_SKB_WC_SpiritIgnorance_A_100": 2025748410, + "Guest_SKB_WC_SpiritIgnorance_A_150": 2025748413, + "Guest_SKB_DS_Loremaster_A_50": 527751539, + "Guest_SKB_DS_Loremaster_A_100": 527817059, + "Guest_SKB_DS_Loremaster_A_150": 527817699, + "Guest_SKB_CL_Dan_A_50": 637418706, + "Guest_SKB_CL_Dan_A_60": 1510064941, + "Guest_SKB_CL_Dan_A_100": 637410512, + "Guest_SKB_CL_Dan_A_150": 637410432, + "Guest_SKB_AV_Spectre_A_50": 2104631195, + "Guest_SKB_AV_Spectre_A_100": 2102534041, + "Guest_SKB_AV_Spectre_A_150": 2018647961, + "Guest_SKB_MS_Samoorai_A_50": 2029641915, + "Guest_SKB_MS_Samoorai_A_100": 2096750843, + "Guest_SKB_MS_Samoorai_A_150": 587603717, + "Transformation_BG_Krok_StromTemplate": 1317694546, + "PP_ChineseRabbit": 382941643, + "PP_ParadeElf": 1036247808, + "MNT_HeartSwarm": 918199310, + "MNT_SpringSOF2023": 1417178519, + "Transformation_BG_Elf_Death2Template": 1606653101, + "MNT_GummyBunny_D": 775840224, + "Transformation_BG_Krok_Life2Template": 747486212, + "PP_Flame": 959186933, + "PP_YachtRock": 1500927358, + "PP_PirateYachtRock": 1227549100, + "PP_ChickenMonster": 1845706534, + "PP_SnowHoppers_B": 1496460038, + "PP_SnowHoppers_C": 1496457990, + "MNT_Oarfish": 29720265, + "PP_RingTailedCat": 993143427, + "MNT_Fanboat": 19347694, + "MNT_MiniSub": 298697910, + "PP_DumboOctopus": 966435639, + "PP_Glowbug_Balance": 1405529577, + "PP_Glowbug_Death": 405117107, + "PP_Glowbug_Fire": 651698987, + "PP_Glowbug_Ice": 2124926395, + "PP_Glowbug_Life": 601367299, + "PP_Glowbug_Myth": 592978024, + "PP_Glowbug_Storm": 61190446, + "PP_DumboOctopus_B": 968448823, + "PP_DumboOctopus_C": 968383287, + "PP_BananaSpider_01": 1074383522, + "PP_BananaSpider_02": 1080674978, + "PP_BananaSpider_03": 1078577826, + "Guest_HG_NM_BeardDragon_Base_C_01": 82913785, + "Guest_HG_NM_BeardDragon_Base_C_02": 82913786, + "Guest_HG_NM_BeardDragon_Base_C_03": 82913787, + "Guest_HG_NM_Glowbug_Base_C_01": 544959703, + "Guest_HG_NM_Glowbug_Base_C_02": 544955607, + "Guest_HG_NM_Glowbug_Base_C_03": 544951511, + "Guest_HG_NM_Glowbug_Base_C_04": 544947415, + "Guest_HG_NM_Glowbug_Base_C_05": 544943319, + "Guest_HG_NM_Glowbug_Base_C_06": 544939223, + "Guest_HG_NM_Glowbug_Base_C_07": 544935127, + "MNT_BouquetofFlowers": 1511180560, + "PP_Piggle_Rainbow": 91081383, + "MNT_Sabertooth_FlameSaber": 1949516909, + "Guest_HG_NM_BeardDragon_Base_A_01": 83175929, + "Guest_HG_NM_BeardDragon_Base_A_02": 83175930, + "Guest_HG_NM_BeardDragon_Base_A_03": 83175931, + "Guest_HG_NM_BeardDragon_Base_B_01": 83044857, + "Guest_HG_NM_BeardDragon_Base_B_02": 83044858, + "Guest_HG_NM_BeardDragon_Base_B_03": 83044859, + "Guest_HG_NM_Glowbug_Base_B_01": 8088791, + "Guest_HG_NM_Glowbug_Base_B_02": 8084695, + "Guest_HG_NM_Glowbug_Base_B_03": 8080599, + "Guest_HG_NM_Glowbug_Base_B_04": 8076503, + "Guest_HG_NM_Glowbug_Base_B_05": 8072407, + "Guest_HG_NM_Glowbug_Base_B_06": 8068311, + "Guest_HG_NM_Glowbug_Base_B_07": 8064215, + "Guest_HG_NM_Glowbug_Base_A_01": 1618701527, + "Guest_HG_NM_Glowbug_Base_A_02": 1618697431, + "Guest_HG_NM_Glowbug_Base_A_03": 1618693335, + "Guest_HG_NM_Glowbug_Base_A_04": 1618689239, + "Guest_HG_NM_Glowbug_Base_A_05": 1618685143, + "Guest_HG_NM_Glowbug_Base_A_06": 1618681047, + "Guest_HG_NM_Glowbug_Base_A_07": 1618676951, + "MNT_SummerSOF2023": 1636120912, + "PP_Cyclops_Fire": 7821755, + "PP_Death_Elf": 1535744155, + "PP_Newt": 1438123483, + "PP_Echidna": 735439358, + "MNT_Wombat": 580544786, + "Transformation_BG_NinjaPig_Balance": 1799661438, + "Transformation_BG_Cyclops_Ice": 647975824, + "Transformation_BG_Minotaur_Storm": 1005667041, + "Transformation_GR_Parasaur_Priest_Ice": 1101466351, + "Transformation_GR_Parasaur_Priest_Fire": 892193041, + "Transformation_GR_Parasaur_Priest_Storm": 1525882116, + "Transformation_GR_Parasaur_Priest_Balance": 1127637476, + "Guest_GR_AZ_Parasaur_Undead_B_01": 322587487, + "MNT_WitchCat": 1167097888, + "PP_RolyPoly": 578538330, + "PP_Capybara_B": 628131532, + "MNT_OutbackTruck": 1815527801, + "PP_PoodleSailor": 2137704795, + "MNT_PolarianCannon": 2103490826, + "PP_TazmanianDevil": 1773548765, + "Guest_SKB_AZ_Ixcax_A_100": 556560994, + "Guest_SKB_AZ_Ixcax_A_150": 556610146, + "Guest_SKB_AZ_Ixcax_A_50": 564951650, + "MNT_GhoulsShovel": 2035610946, + "PP_CrystalBdayDragon": 1897078804, + "PP_SunGobblerBall": 1522469440, + "PP_Sun_GreenGobbler": 1337690394, + "MNT_2P_AutumnTreant": 1063435527, + "PP_AutumnTreant": 561077291, + "MNT_FlyingMonkey": 490807393, + "PP_BabyPlantMonster": 2076646587, + "MNT_PlantCreature_A": 1802823265, + "Transformation_BG_Fairy_Fire": 2065252898, + "Transformation_BG_Krok_Myth": 277926564, + "Transformation_BG_RatThief_Life": 1167758651, + "Transformation_BG_Elf_Balance": 1628238937, + "Transformation_BG_Colossus_Death": 184392004, + "Transformation_FortressPod": 139738335, + "P_Wombat_POLYMORPH": 1132264953, + "PP_SharkWobbegong": 1994247222, + "PP_ChineseNYDragon": 1126999021, + "PP_JingleBellRock": 1076037919, + "PP_Krok_Mummy_Myth": 438487583, + "PP_Cyclops_Ice": 1476966187, + "MNT_OutbackTruckB": 1813299577, + "MNT_EvilSnowmanBall": 758818712, + "MNT_ThanksgivingGobbler": 1760011910, + "Guest_WL_Ghost_LostSoul_A_01": 1224111704, + "Guest_WL_Kangaroo_Drover_F_01": 2025562931, + "Guest_WL_Spider_WarriorMage_C_01": 1296557888, + "Guest_WL_Spider_WarriorMage_C_02": 1430775616, + "Guest_WL_Spider_WarriorMage_C_03": 1564993344, + "Guest_WL_Spider_WarriorMage_C_04": 1699211072, + "Guest_WL_Spider_WarriorMage_C_05": 1833428800, + "Guest_WL_Spider_WarriorMage_C_06": 1967646528, + "Guest_WL_Spider_WarriorMage_C_07": 2101864256, + "Guest_SKB_KR_Lightbane_A_100": 837930677, + "Guest_SKB_KR_Lightbane_A_160": 837930669, + "Guest_SKB_KR_Lightbane_A_50": 1309555019, + "Transformation_WL_Phantasmanian_DevilTemplate": 384891502, + "MNT_2P_LeaflessTreant": 623083386, + "PP_Minotaur_Ice": 700151737, + "MNT_Scooter_G": 737125252, + "Guest_WL_Frog_Owner_B_01": 767864686, + "MNT_SilentKnight": 646654812, + "Guest_WL_TRex_Base_A_01": 1842562033, + "Guest_WL_TRex_Base_B_01": 304921616, + "PP_Groundhog": 108643243, + "Guest_NV_Unicorn_Guard_C_04": 1845621, + "MNT_EmuPunk": 647315080, + "MNT_HeartBalloon": 798826551, + "PP_ValentineHoppers": 968693964, + "MNT_SpringSOF2024_Heckhound": 453640548, + "Guest_AQ-Centaur-Arion": 1856508139, + "Guest_AQ-Centaur-Artemis": 333294011, + "Guest_AQ-Horse-Sea": 724896200, + "Guest_KR_Horse_Warlord_A_Bossfight": 1302284326, + "Guest_KR_Horse_Warlord_A_BossfightSP": 1300726822, + "Guest_KR_Zebra_Thrall_A": 1250265667, + "Guest_KR_Zebra_Thrall_A_Boss_Minion": 345677011, + "Guest_KR_Zebra_Thrall_A_Gallery": 1520303483, + "Guest_KH-Gray-Horse-40": 1802231403, + "Guest_KH-Gray-Horse-20": 1802231307, + "Guest_G14-BP-Unicorn_Fencer_Boss": 1602044152, + "Guest_Horse-Merc-Brown-L37": 1831175255, + "Guest_Horse-Merc-Tan-L39": 1363854837, + "Guest_Horse-Merc-Tan-L39-1": 2085275127, + "Guest_Horse-Merc-Gray-MSBoss-L39": 1863452041, + "Guest_Horse-Merc-Gray-L39": 2039135564, + "Guest_Horse-Merc-Tan-L38": 1363330549, + "Guest_WC_Horse_Mercenary_Roberto": 891924774, + "Guest_ZF-Nathi-Yellowstripe-R11": 1505157721, + "Guest_ZF-TseTse-Main-R11-Boss": 114927854, + "Guest_ZF-TseTse-Elephant-R11": 894147273, + "Guest_ZF-Zebra-Impi-Raider-R11": 1378242919, + "Guest_ZF-Zebra-Warrior-Male-R10-1": 1791906265, + "Guest_ZF-Zebra-Senzan-Zebu-R10-Boss": 373712721, + "Guest_ZF-Zebra-Shaka-Zebu-R10-Boss": 662142985, + "Guest_ZF-Zebra-Warrior-Female-R10-02": 1507835670, + "Guest_ZF-Zebra-Warrior-Male-R10": 47075786, + "Guest_ZF-Zebra-Warrior-Male-R10-02": 1791906714, + "Guest_ZF-Zebra-Warrior-Male-R10-03": 1791906746, + "Guest_ZF-Zebra-Warrior-Male-R10-05": 1791906682, + "Guest_ZF-Zebra-Warrior-Male-R10-2": 1791906268, + "Guest_ZF_Zebra_Spectral_Guardian-R11": 431970996, + "Guest_CC_Horse_Apoc_A_01": 644668374, + "Guest_CC_Horse_Apoc_B_01": 644668390, + "Guest_CC_Horse_Apoc_C_01": 644668406, + "Guest_CC_Horse_Apoc_D_01": 644668294, + "Guest_CC_Horse_Apoc_D_02": 645192582, + "Guest_CC_Unicorn_CorsairF_B_01": 1378532506, + "Guest_CC_Unicorn_Duelist_B_01": 64891542, + "Guest_CC_Unicorn_Guard_B_01": 1075063242, + "Guest_CC_Unicorn_Guard_B_02": 1075063238, + "Guest_CC_Unicorn_Guard_B_03": 1075063234, + "Guest_NV_Horse_HordeSoldier_A_01": 504396960, + "Guest_NV_Horse_HordeSoldier_A_02": 101743776, + "Guest_NV_Horse_HordeOfficer_A_01": 343600992, + "Guest_NV_Horse_HordeSoldier_A_03": 235961504, + "Guest_NV_Horse_HordeOfficer_A_02": 209383264, + "Guest_NV_Horse_AberrantTungAk_A_01": 952263441, + "Guest_NV_Horse_AberrantTungAk_A_02": 952263537, + "Guest_NV_Horse_TungAk_B_01": 1194718672, + "Guest_NV_Horse_TungAk_B_02": 657847760, + "Guest_NV_Horse_HordeOfficer_B_01": 343596896, + "Guest_NV_Horse_HordeOfficer_B_02": 209379168, + "Guest_NV_Horse_TungAk_A_01": 1194669520, + "Guest_NV_Unicorn_Guard_C_01": 1845601, + "Guest_NV_Unicorn_Guard_A_01": 797025, + "Guest_NV_Unicorn_AberrantGuard_A_01": 739851573, + "Guest_NV_Unicorn_Guard_C_02": 1845613, + "Guest_NV_Unicorn_Guard_C_03": 1845609, + "Guest_NV_Unicorn_AberrantGuard_A_02": 739848501, + "Guest_NV_Unicorn_Guard_A_02": 797037, + "Guest_NV_Unicorn_AberrantGuard_A_03": 739849525, + "Guest_NV_Unicorn_AberrantGuard_A_04": 739846453, + "Guest_NV_Horse_HordeOfficer_A_03": 75165536, + "Guest_NV_Horse_HordeSoldier_A_04": 907050144, + "Guest_NV_Horse_HordeSoldier_A_05": 1041267872, + "Guest_NV_Horse_HordeSoldier_C_01": 504388768, + "Guest_HG_TRAIN_Horse_MustangFencerF_A_Balance_50": 871182987, + "Guest_HG_TRAIN_Horse_MustangFencerF_A_Balance_75": 871176715, + "Guest_HG_TRAIN_Horse_MustangFencerF_A_Life_100": 886489645, + "Guest_HG_TRAIN_Horse_MustangFencerF_A_Balance_25": 871177035, + "Guest_HG_TRAIN_Horse_MustangFencerF_A_Balance_100": 872231819, + "Guest_HG_TRAIN_Horse_MustangFencerF_A_Life_140": 1960231469, + "Guest_HG_TRAIN_Horse_MustangFencerF_B_100": 2089957067, + "Guest_HG_TRAIN_Horse_MustangFencerF_A_Life_25": 1700184589, + "Guest_HG_TRAIN_Horse_MustangFencerF_A_Life_50": 920044045, + "Guest_HG_TRAIN_Horse_MustangFencerF_A_Life_75": 1742127629, + "Guest_HG_TRAIN_Horse_MustangFencerF_A_Balance_140": 872223627, + "Guest_HG_TRAIN_Horse_MustangFencerF_B_50": 2089952970, + "Guest_HG_TRAIN_Horse_MustangFencerF_B_75": 57530654, + "Guest_HG_TRAIN_Horse_MustangFencerF_B_140": 2089957099, + "Guest_HG_TRAIN_Horse_MustangFencerF_B_25": 1131272477, + "Guest_LM_Horse_Explorer_A_01_Hard": 1711837140, + "Guest_WL_Unicorn_Guard_A_01": 1074538935, + "Guest_WL_Unicorn_CorsairF_E_01": 1378532603, + "Guest_WL_Unicorn_Warlord_A_01": 1321310496, + "Guest_KH-Gray-Horse-1": 1802239547, + "Guest_KH-Gray-Horse-60": 1802231371, + "Guest_KH-Gray-Horse-80": 1802231467, + "Transformation_BG_NinjaPig_Ice": 186026527, + "Transformation_BG_Cyclops_Storm": 897316984, + "PP_MinotaurBalance": 1344665951, + "PP_OrthusMoon": 1804503950, + "PP_CoolPineapple": 1149318906, + "PP_TwinkleStars": 766378011, + "PP_Scroll": 1613313091, + "PP_Colossus_Death": 40713075, + "PP_ColossusDeath": 530964029, + "PP_KILiveRock": 1975550570, + "MNT_Outrigger": 1417937299, + "MNT_BookWyrm": 2080129190, + "MNT_RacingSnail": 1996220963, + "MNT_UmbrellaCloud": 145762615, + "PP_PropellerCat": 2094718580, + "MNT_TRex_Shirt": 586746001, + "MNT_Swarm_Bee": 1625228695, + "MNT__CelestialMoon": 968360256, + "Guest_ME_Sinbad_IronSultan_150": 2001676223, + "Guest_ME_Sinbad_Cyclops_150": 1968943689, + "Guest_ME_Sinbad_Skeleton_150": 1031490819, + "Guest_ME_Sinbad_Colossus_150": 1727675806, + "Guest_ME_Sinbad_Skeleton_150_02": 970505475, + "Guest_ME_Sinbad_Wyrm_150": 19314443, + "Guest_ZF-Zebra-Inzinzebu-Bandit-R11": 430262550, + "Guest_ZF-Zebra-Warrior-Male-R10-04": 1791906650, + "PP_TwinkleStars_02": 805304347, + "PP_TwinkleStars_03": 803207195, + "PP_TwinkleStars_01": 799012891, + "Transformation_BodleianHarrow": 609627870, + "Guest_HG_Gryphon_OwlStatue_A_01_L170": 77756046, + "Guest_HG_Gryphon_OwlStatue_A_02_L170": 73561742, + "Guest_HG_Gryphon_OwlStatue_A_01_L100": 77752974, + "Guest_HG_Gryphon_OwlStatue_A_02_L100": 73558670, + "Guest_HG_Gryphon_OwlStatue_A_01_L50": 78277134, + "Guest_HG_Gryphon_OwlStatue_A_02_L50": 74082830, + "MNT_SummerSOF2024_JudgementWings": 1078163967, + "MNT_Pegasus_E": 131704054, + "MNT_PolarisHero": 665176426, + "PP_Duckana": 1128961578, + "PP_QueenBee": 833291695, + "Transformation_BG_Draconian_Balance": 2078940682, + "Transformation_BG_WolfWarrior_Fire": 1762248682, + "Transformation_BG_Minotaur_Death": 309090657, + "PP_WolfWarrior_Fire": 685685256, + "PP_WolfWarrior_Death": 1857202724, + "Guest_ME-GTAV01-WyrmBoss-150": 1482208618, + "Guest_ME_SpectreOfB_L150": 684104791, + "Guest_ME_MD_MacDeath_L150": 1128977615, + "Guest_ME_Pig_BalanceWizardA_L150": 959913724, + "Guest_ME_Pig_BalanceWizardB_L150": 959913712, + "Guest_ME_Pig_BalanceWizardC_L150": 959913716, + "Guest_ME_Pig_FireWizard_L150": 964392255, + "Guest_ME_Pig_IceWizardF_L150": 86941026, + "Guest_ME_Pig_MythWizard_L150": 964051241, + "Guest_ME_Pig_StormWizardF_L150": 2016383602, + "Guest_ME_Clock_Clockworker_L150": 1424569772, + "Guest_ME_Clock_ClockworkSpanner_L150": 1966824609, + "Guest_ME_Clock_Lugs_L150": 370290904, + "Guest_ME_Clock_Lucia_L150": 1857768409, + "MNT_EvilChair": 339577702, + "PP_Cyclops_Storm": 621464512, + "PP_Krokomummy_Life": 462432735, + "Transformation_CL_Rematch_Crustacean": 1686865207, + "Transformation_CL_Rematch_Protector": 1893951532, + "Transformation_CL_Rematch_Angler": 120412196, + "Transformation_CL_Rematch_Piscean": 1624106070, + "Transformation_Zebra_Template": 1900548493, + "Transformation_Zebra2_Template": 325099540, + "Transformation_Zebra3_Template": 325099524, + "Transformation_Zebra4_Template": 325099636, + "MNT_SweetSixteenBirthday": 1009398096, + "MNT_2P_TRex_Bones": 1618543266, + "MNT_SpringBumperCar": 1725007788, + "PP_WinterGoblin": 2025052443, + "PP_OnyxAnubis": 1552575189, + "PP_OttomanCat": 223541582, + "MNT_HolidayYeti": 780983974, + "MNT_IceSled": 979912604, + "MNT_TurtleDoves": 1850191638, + "MNT_KrokChariot": 559783620, + "MNT_Mustang": 1775949401, + "MNT_PumpkinBall": 382849054, + "Transformation_BG_Fairy_Storm": 836920873, + "Transformation_BG_Elf_Myth": 1506493664, + "Transformation_NinjaPig_Life": 816802847, + "Transformation_BG_Krok_Fire": 1060580712, + "Transformation_BG_Colossus_Balance": 1067963041, + "Transformation_BG_NinjaPig_Life": 441460895, + "PP_Penguin_03": 1623028104, + "Transformation_Duck_Librarian_B": 864067551, + "Transformation_Duck_Librarian_A": 859873247, + "Transformation_Duck_Adventurer": 194560769, + "Transformation_Gummy_Bunny_C": 1298087941, + "Transformation_Frog_Horned_A": 837201339, + "Transformation_Glowbug_Storm": 2096380446, + "Transformation_Marshmallow_Critter_A": 1036335317, + "Transformation_Snipe_Base_B": 232132109, + "Transformation_Snowball": 915248481, + "Transformation_Wombat_Base": 333435450, + "Transformation_Human_Malistaire": 1414887773, + "Transformation_Morganthe_E": 1745180054, + "Transformation_Spider_Grandfather": 1131773979, + "Transformation_Khrulhu_Dasein_B": 367878762, + "Transformation_Devourer_Base": 698770016, + "Transformation_Alien_Meteor": 638746168, + "Transformation_Nightmare_Malus": 704212821, + "Transformation_Daemon_Personal": 278266463, + "PP_ValentinesDay": 810003364, + "PP_BabyHippo": 422858138, + "PP_Aardwold": 1592150119, + "PP_Aardwold_C": 1902528613, + "MNT_Cobra": 472847981, + "MNT_Serpopard": 1629558909, + "MNT_Serpopard_B": 1629556867, + "MNT_Serpopard_C": 1629556931, + "PP_Fairy_Fire": 1847789544, + "MNT_Mustang_B": 1448793691, + "PP_FireElfMyth": 1933609060, + "MNT_KT-BoatRide": 1560860110, + "MNT_ShadowMagic": 2095978357, + "MNT_MardiGrasFloat_A": 1740674432, + "PP_ChineseNYSnake": 988201940, + "MNT_AnubisDog": 1995079956, + "PP_ShadowImp_A": 1604849432, + "PP_ShadowImp_B": 1604849438, + "PP_ShadowImp_C": 1604849436, + "MNT_ShadowMagic_B": 2093870965, + "MNT_ShadowMagic_C": 2093805429, + "Guest_KT_SE_Tritops_Warrior_I_01": 97516901, + "Guest_KT_SE_DS_Draconian_Model_01": 1916095079, + "Guest_KT_SE_Beetle_Scarab_C_01_L50": 1064004307, + "Guest_KT_SE_Roach_Warrior_C_03": 1872574203, + "Guest_KT_SE_Roach_Warrior_C_04": 1871918843, + "Guest_KT_SE_Roach_Warrior_C_05": 1871787771, + "Guest_KT_SE_Beetle_Scarab_C_01": 1353410759, + "Guest_KT_SE_Mander_Citizen_B_01_L50": 2044509396, + "Guest_KT_SE_Mander_CitizenF_B_01_L50": 164327682, + "Guest_KT_SE_Treant_Tormented_A_01": 1359800879, + "Guest_KT_SE_Treant_Base_A_01": 765512948, + "Guest_KT_SE_Mander_Citizen_F_D_05": 171244620, + "Guest_KT_SE_Mander_CitizenF_D_01": 163791037, + "Guest_KT_SE_Mander_CitizenF_D_02": 298008765, + "Guest_KT_SE_Mander_CitizenF_D_03": 432226493, + "Guest_KT_SE_Mander_CitizenF_D_04": 566444221, + "Guest_KT_SE_Mander_MummyF_A_01": 964349080, + "Guest_KT_SE_Mander_MummyF_A_02": 964480152, + "Guest_KT_SE_MC_Wraith_Model_01": 1101442118, + "Guest_KT_SE_Mander_CitizenF_B_02": 298000573, + "MNT_Wheelbarrow": 614248817, + "MNT_StubbornLlama": 221089074 + } } } }, - "901959605": { - "name": "class CastleMagicManager", + "1440433589": { + "name": "class SharedPointer", "bases": [ "PropertyClass" ], - "hash": 901959605, + "hash": 1440433589, "properties": { - "m_castleMagicItemList": { - "type": "class SharedPointer", + "m_costFloorAdditive": { + "type": "int", "id": 0, "offset": 72, "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 3812758310 - }, - "m_castleMagicTimerList": { - "type": "class SharedPointer", - "id": 1, - "offset": 152, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2420724439 - }, - "m_randomNumberSetBuffer": { - "type": "std::string", - "id": 2, - "offset": 360, - "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1824603147 - }, - "m_randomNumberSetIndexList": { - "type": "gid", - "id": 3, - "offset": 416, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 678388482 + "hash": 1871158175 }, - "m_defaultCameraTime": { + "m_multiplierTemplateCost": { "type": "float", - "id": 4, - "offset": 528, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 617092724 - }, - "m_setPlayAsPet": { - "type": "bool", - "id": 5, - "offset": 533, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 124615314 - } - } - }, - "2080833720": { - "name": "class ReqManaPercent*", - "bases": [ - "ReqNumeric", - "Requirement", - "PropertyClass" - ], - "hash": 2080833720, - "properties": { - "m_applyNOT": { - "type": "bool", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1746328074, - "enum_options": { - "__DEFAULT": 0 - } - }, - "m_operator": { - "type": "enum Requirement::Operator", "id": 1, "offset": 76, - "flags": 2097183, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2672792317, - "enum_options": { - "ROP_AND": 0, - "ROP_OR": 1, - "__DEFAULT": "ROP_AND" - } + "hash": 1851711699 }, - "m_numericValue": { + "m_multiplierIfDropList": { "type": "float", "id": 2, "offset": 80, - "flags": 31, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 521915239 + "hash": 1310969758 }, - "m_operatorType": { - "type": "enum ReqNumeric::OPERATOR_TYPE", + "m_multiplierIfDyeList": { + "type": "float", "id": 3, "offset": 84, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2228122961, - "enum_options": { - "OPERATOR_UNKNOWN": 4294967295, - "OPERATOR_EQUALS": 0, - "OPERATOR_GREATER_THAN": 1, - "OPERATOR_LESS_THAN": 2, - "OPERATOR_GREATER_THAN_EQ": 3, - "OPERATOR_LESS_THAN_EQ": 4 - } - } - } - }, - "504550220": { - "name": "class TreasureCardVaultBehaviorBase", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 504550220, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_spellData": { - "type": "std::string", - "id": 1, - "offset": 128, - "flags": 575, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2688126101 - } - } - }, - "1274256375": { - "name": "class MonsterArenaBehavior*", - "bases": [ - "MonsterArenaBehaviorBase", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1274256375, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_mobList": { - "type": "unsigned int", - "id": 1, - "offset": 112, - "flags": 65543, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 347281415 - }, - "m_zoneGID": { - "type": "gid", - "id": 2, - "offset": 128, - "flags": 65543, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1907651624 - }, - "m_monsterData": { - "type": "std::string", - "id": 3, - "offset": 136, - "flags": 551, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3377737309 - } - } - }, - "2080921617": { - "name": "class DamageLimitOverride", - "bases": [ - "CombatRule", - "PropertyClass" - ], - "hash": 2080921617, - "properties": { - "m_damageLimit": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 271286357 - }, - "m_dK0": { - "type": "float", - "id": 1, - "offset": 76, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 357232662 - }, - "m_dN0": { - "type": "float", - "id": 2, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 357232761 - } - } - }, - "902660173": { - "name": "class ClientDerbyAffectEffects", - "bases": [ - "DerbyAffectEffects", - "DerbyEffect", - "PropertyClass" - ], - "hash": 902660173, - "properties": { - "m_buffType": { - "type": "enum DerbyTalentBuffType", - "id": 0, - "offset": 92, - "flags": 2097183, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1149251982, - "enum_options": { - "Buff": 0, - "Debuff": 1, - "Neither": 2 - } - }, - "m_kTarget": { - "type": "enum DerbyTargetType", - "id": 1, - "offset": 96, - "flags": 2097159, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1807803351, - "enum_options": { - "kTargetInFront": 0, - "kTargetBehind": 1, - "kTargetFirst": 2, - "kTargetSelf": 3, - "kTargetAll": 4, - "kTargetLast": 5 - } + "hash": 257956107 }, - "m_nDuration": { + "m_petRenameCost": { "type": "int", - "id": 2, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1110167982 - }, - "m_effectID": { - "type": "unsigned int", - "id": 3, - "offset": 88, - "flags": 24, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2347630439 - }, - "m_imageFilename": { - "type": "std::string", "id": 4, - "offset": 112, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2813328063 - }, - "m_iconIndex": { - "type": "unsigned int", - "id": 5, - "offset": 144, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1265133262 - }, - "m_soundOnActivate": { - "type": "std::string", - "id": 6, - "offset": 152, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1956929714 - }, - "m_soundOnTarget": { - "type": "std::string", - "id": 7, - "offset": 184, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3444214056 - }, - "m_targetParticleEffect": { - "type": "std::string", - "id": 8, - "offset": 216, - "flags": 131103, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3048234723 - }, - "m_overheadMessage": { - "type": "std::string", - "id": 9, - "offset": 248, - "flags": 8388639, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1701018190 - }, - "m_requirements": { - "type": "class RequirementList", - "id": 10, - "offset": 280, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2840988582 - }, - "m_nNumBuffs": { - "type": "int", - "id": 11, - "offset": 376, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1860427310 - }, - "m_nNumDebuffs": { - "type": "int", - "id": 12, - "offset": 380, - "flags": 31, + "offset": 88, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 637090007 + "hash": 136443668 } } }, - "505777966": { - "name": "class SharedPointer", + "1440395148": { + "name": "class FaceTargetActorCinematicAction*", "bases": [ "ActorCinematicAction", "CinematicAction", "PropertyClass" ], - "hash": 505777966, + "hash": 1440395148, "properties": { "m_timeOffset": { "type": "float", @@ -689386,124 +689452,29 @@ "singleton": false, "pointer": false, "hash": 2285866132 - } - } - }, - "1274892932": { - "name": "class GroundContourBehaviorTemplate*", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 1274892932, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - }, - "m_maxDeviation": { - "type": "float", - "id": 1, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 595695008 - } - } - }, - "902409505": { - "name": "class Slot_Node_FXDef", - "bases": [ - "PropertyClass" - ], - "hash": 902409505, - "properties": { - "m_slotName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2819781566 - }, - "m_nodeName": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3607089954 - }, - "m_fxDef": { - "type": "class SharedPointer", - "id": 2, - "offset": 136, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1171176403 - } - } - }, - "505590938": { - "name": "class HousingMusicPlayerBehaviorTemplate*", - "bases": [ - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 505590938, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 }, - "m_combatMusicPlayer": { + "m_bCaster": { "type": "bool", - "id": 1, + "id": 2, "offset": 120, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 492667575 + "hash": 1390351511 } } }, - "902055523": { - "name": "class BasePetMorphManager*", + "169752357": { + "name": "class DiegoPlayerStats*", "bases": [ "PropertyClass" ], - "hash": 902055523, + "hash": 169752357, "properties": { - "m_totalCostMin": { - "type": "unsigned int", + "m_participantID": { + "type": "gid", "id": 0, "offset": 72, "flags": 7, @@ -689511,1151 +689482,3598 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 496624814 + "hash": 1556110724 }, - "m_totalCostMax": { - "type": "unsigned int", + "m_teamID": { + "type": "int", "id": 1, - "offset": 76, + "offset": 80, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 496624560 + "hash": 982118638 }, - "m_totalRarityMin": { - "type": "unsigned int", + "m_maxHealth": { + "type": "int", "id": 2, - "offset": 80, + "offset": 84, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1549157264 + "hash": 374902326 }, - "m_totalRarityMax": { - "type": "unsigned int", + "m_pipsSpent": { + "type": "int", "id": 3, - "offset": 84, + "offset": 88, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1549157010 + "hash": 1360713568 }, - "m_statDataMin": { - "type": "unsigned int", + "m_shadowPipsSpent": { + "type": "int", "id": 4, - "offset": 88, + "offset": 92, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 988659687 + "hash": 1691641958 }, - "m_statDataMax": { - "type": "unsigned int", + "m_damageOutgoing": { + "type": "float", "id": 5, - "offset": 92, + "offset": 96, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 988659433 + "hash": 1733098594 }, - "m_wowDataMin": { - "type": "unsigned int", + "m_damageIncoming": { + "type": "float", "id": 6, - "offset": 96, + "offset": 100, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1289909672 + "hash": 466767466 }, - "m_wowDataMax": { - "type": "unsigned int", + "m_healingOutgoing": { + "type": "float", "id": 7, - "offset": 100, + "offset": 104, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1289909418 + "hash": 1955741979 }, - "m_pedigreeDataMin": { - "type": "unsigned int", + "m_healingIncoming": { + "type": "float", "id": 8, - "offset": 104, + "offset": 108, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1947586064 + "hash": 689410851 }, - "m_pedigreeDataMax": { - "type": "unsigned int", + "m_killCount": { + "type": "int", "id": 9, - "offset": 108, + "offset": 112, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1947585810 + "hash": 1162723983 }, - "m_statsWeight": { - "type": "float", + "m_spellsCast": { + "type": "int", "id": 10, - "offset": 112, + "offset": 116, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1028083822 + "hash": 681177880 }, - "m_wowWeight": { - "type": "float", + "m_fizzles": { + "type": "int", "id": 11, - "offset": 116, + "offset": 120, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1781950908 + "hash": 1628327073 }, - "m_pedigreeWeight": { - "type": "float", + "m_offenseSpells": { + "type": "int", "id": 12, - "offset": 120, + "offset": 124, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2192332068 + "hash": 422756275 }, - "m_kioskCombatTalentCostMin": { + "m_offenseNormal": { "type": "int", "id": 13, "offset": 128, "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2086730582 - }, - "m_kioskCombatTalentCostGrowth": { - "type": "int", - "id": 14, - "offset": 152, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1600144109 - }, - "m_kioskDerbyTalentCostMin": { - "type": "int", - "id": 15, - "offset": 176, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 787626614 - }, - "m_kioskDerbyTalentCostGrowth": { - "type": "int", - "id": 16, - "offset": 200, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1995353613 - }, - "m_inPersonCombatTalentCostMin": { - "type": "int", - "id": 17, - "offset": 224, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 337785603 - }, - "m_inPersonCombatTalentCostGrowth": { - "type": "int", - "id": 18, - "offset": 248, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 168359802 - }, - "m_inPersonDerbyTalentCostMin": { - "type": "int", - "id": 19, - "offset": 272, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 409251971 - }, - "m_inPersonDerbyTalentCostGrowth": { - "type": "int", - "id": 20, - "offset": 296, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 64783610 - }, - "m_kioskPedigreeMin": { - "type": "int", - "id": 21, - "offset": 320, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1416396228 - }, - "m_kioskCombatDivisor": { - "type": "int", - "id": 22, - "offset": 324, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1325329457 - }, - "m_kioskCombatExponent": { - "type": "int", - "id": 23, - "offset": 328, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 268917794 - }, - "m_kioskDerbyDivisor": { - "type": "int", - "id": 24, - "offset": 332, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1909936977 - }, - "m_kioskDerbyExponent": { - "type": "int", - "id": 25, - "offset": 336, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 233613122 - }, - "m_inPersonPedigreeMin": { - "type": "int", - "id": 26, - "offset": 340, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 769349745 - }, - "m_inPersonCombatDivisor": { - "type": "int", - "id": 27, - "offset": 344, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1066346014 - }, - "m_inPersonCombatExponent": { - "type": "int", - "id": 28, - "offset": 348, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 312398767 - }, - "m_inPersonDerbyDivisor": { - "type": "int", - "id": 29, - "offset": 352, - "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2032239518 + "hash": 226361289 }, - "m_inPersonDerbyExponent": { + "m_offenseShadow": { "type": "int", - "id": 30, - "offset": 356, + "id": 14, + "offset": 132, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2122113327 - }, - "m_petLendsLevelDivisor": { - "type": "int", - "id": 31, - "offset": 408, - "flags": 7, + "hash": 413116550 + } + } + }, + "1873277579": { + "name": "class MoveCommandPitch*", + "bases": [ + "MoveController::MoveCommand", + "PropertyClass" + ], + "hash": 1873277579, + "properties": { + "m_fPitch": { + "type": "float", + "id": 0, + "offset": 88, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 574571025 - }, - "m_balancePetLendLoot": { - "type": "std::string", - "id": 32, - "offset": 416, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1766917643 - }, - "m_deathPetLendLoot": { - "type": "std::string", - "id": 33, - "offset": 440, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2869638987 - }, - "m_firePetLendLoot": { - "type": "std::string", - "id": 34, - "offset": 464, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2059692267 - }, - "m_icePetLendLoot": { - "type": "std::string", - "id": 35, - "offset": 488, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 3354513750 - }, - "m_lifePetLendLoot": { - "type": "std::string", - "id": 36, - "offset": 512, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2516355429 - }, - "m_mythPetLendLoot": { - "type": "std::string", - "id": 37, - "offset": 536, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 3612618343 - }, - "m_stormPetLendLoot": { - "type": "std::string", - "id": 38, - "offset": 560, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2262680698 + "hash": 499815957 } } }, - "2081504974": { - "name": "class ClientDerbyModifyMoraleChance", + "1017839043": { + "name": "class WizardSearchResultItem", "bases": [ - "DerbyModifyMoraleChance", - "DerbyEffect", + "Search::ResultItem", "PropertyClass" ], - "hash": 2081504974, + "hash": 1017839043, "properties": { - "m_buffType": { - "type": "enum DerbyTalentBuffType", + "m_userID": { + "type": "gid", "id": 0, - "offset": 92, - "flags": 2097183, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1149251982, - "enum_options": { - "Buff": 0, - "Debuff": 1, - "Neither": 2 - } + "hash": 1037989700 }, - "m_kTarget": { - "type": "enum DerbyTargetType", + "m_userName": { + "type": "std::string", "id": 1, - "offset": 96, - "flags": 2097159, + "offset": 80, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1807803351, - "enum_options": { - "kTargetInFront": 0, - "kTargetBehind": 1, - "kTargetFirst": 2, - "kTargetSelf": 3, - "kTargetAll": 4, - "kTargetLast": 5 - } + "hash": 2213937019 }, - "m_nDuration": { - "type": "int", + "m_characterID": { + "type": "gid", "id": 2, - "offset": 104, - "flags": 31, + "offset": 112, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1110167982 + "hash": 210498386 }, - "m_effectID": { - "type": "unsigned int", + "m_characterName": { + "type": "std::wstring", "id": 3, - "offset": 88, - "flags": 24, + "offset": 120, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2347630439 + "hash": 2815013574 }, - "m_imageFilename": { + "m_zoneName": { "type": "std::string", "id": 4, - "offset": 112, - "flags": 131103, + "offset": 152, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2813328063 + "hash": 2171167736 }, - "m_iconIndex": { - "type": "unsigned int", + "m_realmName": { + "type": "std::string", "id": 5, - "offset": 144, - "flags": 31, + "offset": 184, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1265133262 + "hash": 3507983949 }, - "m_soundOnActivate": { - "type": "std::string", + "m_level": { + "type": "int", "id": 6, - "offset": 152, - "flags": 131103, + "offset": 216, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1956929714 + "hash": 801285362 }, - "m_soundOnTarget": { - "type": "std::string", + "m_world": { + "type": "int", "id": 7, - "offset": 184, - "flags": 131103, + "offset": 232, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3444214056 + "hash": 814685730 }, - "m_targetParticleEffect": { - "type": "std::string", + "m_nameKey": { + "type": "unsigned int", "id": 8, - "offset": 216, - "flags": 131103, + "offset": 220, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3048234723 + "hash": 1104764311 }, - "m_overheadMessage": { - "type": "std::string", + "m_gender": { + "type": "enum eGender", "id": 9, - "offset": 248, - "flags": 8388639, + "offset": 224, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1701018190 + "hash": 2121766730, + "enum_options": { + "Male": 1, + "Female": 0, + "Neutral": 2 + } }, - "m_requirements": { - "type": "class RequirementList", + "m_race": { + "type": "enum eRace", "id": 10, - "offset": 280, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2840988582 - }, - "m_moraleChanceActionMap": { - "type": "class MoraleModificationMap", - "id": 11, - "offset": 376, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1654668404 - } - } - }, - "504877900": { - "name": "class TreasureCardVaultBehaviorBase*", - "bases": [ - "BehaviorInstance", - "PropertyClass" - ], - "hash": 504877900, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_spellData": { - "type": "std::string", - "id": 1, - "offset": 128, - "flags": 575, + "offset": 228, + "flags": 2097183, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2688126101 + "hash": 390582957, + "enum_options": { + "Bat": 88066, + "BatLightning": 1472842576, + "Boar": 2624962, + "CatThug": 1855674386, + "ChristmasElf": 819908552, + "ChristmasSnowman": 1146515225, + "Colossus_Ice": 1063279538, + "Cyclops": 1691813655, + "DragonBeta": 417003588, + "DragonFriendly": 69049013, + "EvilSnowman": 1579630926, + "FireElf": 443793687, + "Firecat": 2045525741, + "Frog": 2274918, + "FrostBeetle": 7692383, + "GhostBlue": 1097396892, + "GhostGreen": 882822629, + "GhostRed": 560510742, + "GhostYellow": 909974358, + "Ghoul": 82556199, + "GoatMonk": 486215564, + "GolemBrass": 1057388325, + "GolemClockwork": 1143380031, + "GolemSteel": 1660583674, + "GolemWood": 1426849876, + "HalloweenCat": 1042869199, + "Heckhound": 626736403, + "Helephant": 719065368, + "Human": 79806088, + "Hydra": 70785800, + "Imp": 84361, + "Krokomummy": 555755242, + "Kroktut": 1352354178, + "Leprechaun": 2106466410, + "LeprechaunPattyDay": 380507781, + "LightningBat": 228257682, + "Mannequin": 428442544, + "Minotaur": 949570680, + "Mount_Broom": 94637995, + "Mount_Cat": 1150940211, + "Mount_Dragon": 1565720148, + "Mount_Horse": 2054712767, + "Mount_PlayerWings": 589829552, + "Nikkos": 1563122418, + "NinjaPig": 607400740, + "Orthus": 1552590225, + "Piggle": 1897753328, + "Piggle_Valentine": 687697592, + "Piggle_ValentinePart2": 1760391091, + "Pixie": 74836240, + "RatMagician": 885542120, + "SalamanderFire": 48480175, + "SalamanderIce": 2011152164, + "SalamanderStorm": 600331072, + "Satyr": 84793363, + "Scarab": 2143810477, + "Sheep": 86220083, + "SkeletonArmored": 1791586239, + "SnowSerpent": 138621543, + "Spider": 1603064269, + "SpiderBlack": 559353179, + "SpiderBrown": 557941675, + "SpiderCrystal": 2119625297, + "SpiderGolem": 1632616514, + "Sprite": 1889156557, + "SpriteDark": 1888685518, + "Stormzilla": 252684095, + "SunBird": 1602211198, + "Transformation_ArmoredSkeleton": 1861349834, + "Transformation_CatThug": 1175387611, + "Transformation_Cat_Bandit": 1012395694, + "Transformation_ClockworkGolem": 601121214, + "Transformation_Cyclops": 620156297, + "Transformation_DarkFairy": 1206757203, + "Transformation_DraconianSorcerer": 1212016810, + "Transformation_Draconian": 450730089, + "Transformation_EarthColossus": 140119452, + "Transformation_EvilSnowman": 1497097122, + "Transformation_FatGobbler": 634003800, + "Transformation_FireElemental": 822233230, + "Transformation_FireElf": 46585468, + "Transformation_FireSalamander": 2118418114, + "Transformation_Gobbler_Skinny": 162365207, + "Transformation_GolemSteel": 1329184184, + "Transformation_Ice_Colossus": 430406408, + "Transformation_Krokomummy": 1644615769, + "Transformation_MagmaMan": 545064542, + "Transformation_Mander": 88998828, + "Transformation_NinjaPig": 1029132174, + "Transformation_Ninja_Pig_04": 7093548, + "Transformation_RatThug": 1175352795, + "Transformation_RavenMystic": 1443197359, + "Transformation_StormElemental": 637088511, + "Transformation_Treant": 1874998327, + "Transformation_WarPig": 691088645, + "Transformation_WolfScout": 263523463, + "Transformation_WolfWarrior": 6092463, + "Transformationn_SkeletonPirate": 1821341863, + "Treant": 1396597132, + "Troll": 82261620, + "Unicorn": 550546918, + "Unknown": 718677478, + "Wolverine": 528843083, + "Wraith": 1788506505, + "Wyrmkin": 379044612, + "Transformation_CyrusDrake": 94277831, + "PetEgg": 1973167984, + "GhostLady": 493415959, + "Banshee": 827805677, + "GobblerRed": 250135875, + "Ghoul_Gravedigger": 161812468, + "SkeletonWarrior": 734585814, + "BansheeBoss": 806445565, + "Seraph": 1792950125, + "CrabKing": 277875784, + "UndeadCaster": 1680689397, + "DragonFrontier": 1829438301, + "HeckhoundGhost": 872406464, + "Mount_Unicorn": 212699468, + "Jellyfish": 910724608, + "SeaDragon": 1194541306, + "Turtle": 1897184620, + "Starfish": 1447562471, + "SpinyFish": 162948281, + "Mount_Gryphon": 2110522960, + "Mount_Shark": 1170186623, + "Mount_Manta": 979931598, + "Mount_Seahorse": 1554833818, + "Mount_Seahorse_Tough": 1245859453, + "Mount_Koi": 1150937409, + "Mount_Lobster": 2025618875, + "Mount_Turtle": 1490849128, + "VenusFlyTrap": 1612039757, + "GDN_MED_BabyCarrots": 327334743, + "GDN_SM_BoomShroom": 31324632, + "GDN_SM_Dandelion": 2058674142, + "GDN_SM_Disparagus": 1732989489, + "GDN_MED_EvilSnowPeas": 747408607, + "GDN_SM_FicklePickle": 205381955, + "GDN_SM_HappyHolidaisy": 1736236340, + "GDN_MED_HelephantEars": 1803669659, + "GDN_MED_HoneySickle": 424149132, + "GDN_LG_NinjaFig": 847338104, + "GDN_LG_SnapDragon": 1076151689, + "GDN_SM_StinkWeed": 845383431, + "GDN_MED_TrumpetVine": 1922690264, + "GDN_MED_VenusFlyTrap": 1560899638, + "GDN_SM_Laughodil": 1278979588, + "GDN_LG_BreadFruitBush": 533042934, + "GDN_MED_PricklyBearCactus": 1236846986, + "GDN_MED_KingParsley": 110148182, + "LeprechaunPatriotic": 414730890, + "SeraphYuletide": 1325846853, + "DragonGhost": 1502126893, + "UnicornNightmare": 604358256, + "EvilSnowmanSandman": 1579432150, + "Colossus_Spirit": 422514215, + "Rock": 2393554, + "GDN_MED_GivingTree": 2047236132, + "Egg": 70853, + "Mount_Carpets": 1602744888, + "Kraken": 1737191829, + "Wyvern": 1727802601, + "Phoenix": 1765559002, + "Judgement": 562901781, + "ForestLord": 1390734923, + "Humongofrog": 1272123051, + "Scarecrow": 41441599, + "Mount_Ram": 77196599, + "BasketSnake": 1835657086, + "Samoorai": 522797493, + "Transformation_RavenWarrior": 701169336, + "PhoenixStorm": 1325268802, + "PhoenixDeath": 1281634042, + "GDN_LG_CouchPotatoes": 879742725, + "GDN_MED_KeyLimes": 811516024, + "Mount_BoneDragon": 1023618313, + "Mount_BigBoneDragon": 1124383680, + "Mount_FairyWings": 1904926612, + "Mount_DragonWings": 755225925, + "Mount_Pegasus": 1621244140, + "GDN_MED_BellPepper": 1710238687, + "GDN_MED_GrapesOfWrath": 1068787103, + "GDN_SM_TigerLily": 1899057048, + "WysteriaPiggle": 49173891, + "Mount_Wyvern": 1658410744, + "Mount_2P_Rhino": 1052779475, + "NightHawk": 358964390, + "Giraffe": 935214826, + "Mount_Hawk": 2070898895, + "Mount_HalloweenNightmare": 726136378, + "GobblerHalloween": 1482399836, + "Leopard": 1606863715, + "Skink": 76950867, + "Mount_Ostrich": 466111322, + "Mount_Crocagator": 1981222087, + "Transformation_Blacktusk-01": 401543565, + "Mount_Hippogriff": 2043817624, + "Transformation_Gorilla-01": 1555853240, + "Transformation_Gorilla-02": 1606184888, + "Mount_Raven": 94983735, + "Mount_Chrismoose": 1822495199, + "Mount_CandyCane": 1148551147, + "Ivy_League": 925492799, + "GDN_MED_Ivy_League": 1630077794, + "Mount_Kirin": 1168691825, + "GDN_SM_Moonflower": 2068754330, + "GDN_MED_BoonTree": 788055729, + "Snowball": 2046118016, + "Foo_Dog": 1549710807, + "ShenlongDragon": 932676736, + "Monkey": 1233866291, + "Wolfhound": 626884686, + "Redcap": 1540319086, + "Raven": 79941650, + "HollowKnight": 1107268274, + "Book": 2405826, + "GDN_MED_AngoraBunnyEars": 1547559854, + "GDN_MED_FortuneCookieTree": 786686214, + "GDN_MED_GooseTree": 809354938, + "GDN_SM_HoneyBeePlant": 1528880373, + "GDN_MED_BambooShoots": 1096708900, + "GDN_SM_Huckleberries": 1937475840, + "Rock_Moustache": 962221287, + "Efreet_Myth": 1834555522, + "Efreet": 1401700123, + "Mammoth": 1395147745, + "Triton": 1730466188, + "Gnome": 74954215, + "BoneDragon": 429245206, + "Basilisk": 1457899086, + "Chimera": 529027789, + "Transformation_GammaTemplate": 1337834518, + "Mount_Camel": 1168198963, + "Mount_RenaissanceWings": 1049782088, + "Bull_Mount": 1713506759, + "Mount_Owl": 1150938242, + "Mount_Alphyn": 487264165, + "Mount_Stag": 1150353823, + "Mount_Auroch": 509865325, + "Mount_Warg": 1150358072, + "StrangeBeast": 511334734, + "Efreet_Ice": 1820009122, + "Efreet_Storm": 1269986674, + "GDN_LG_AlligatorPear": 1293913372, + "Mount_2P_Treant": 928450863, + "Mount_2P_Dragon": 1431637933, + "Mount_Pogo_Stick_WC": 1462849298, + "Mount_Pogo_Stick_MB": 1349603090, + "GDN_LG_MeltingCheese": 1914589015, + "GDN_SM_FishOnAVine": 1734955358, + "GDN_LG_AngelOak": 1539539424, + "GDN_LG_MeltingCheese_Angel": 1254781264, + "SnowyOwl": 1682262138, + "Mount_3P_Hydra": 1207475250, + "WeaselMinstrel": 1541234616, + "MOUNT_Rickshaw": 938282973, + "Transformation_Sherlock-Bones": 509126601, + "Mount_Phoenix": 556355452, + "Toaddle": 597488187, + "Pantera": 528797696, + "WildfireTreant": 673362041, + "StoneTiger": 746336665, + "Blowfish": 1447737334, + "Smith": 78327187, + "FlyingCat": 1254472614, + "RamWarrior": 536916302, + "Ladybug": 1846384669, + "BurlapBoy": 607590898, + "DeerKnight": 560802130, + "Gargoyle": 1227701700, + "Chameleon": 596131510, + "Scorpion": 1462253104, + "GDN_SM_BoiledPeanuts": 544885684, + "GDN_SM_ClockFlower": 676513046, + "GDN_SM_DeadBeets": 650783482, + "GDN_MED_SnowApple": 1916648180, + "Eyecaramba_Violet": 1804780775, + "Eyecaramba_Green": 750346574, + "Eyecaramba_Orange": 687614854, + "Piggle_Grandfather": 131445665, + "Velociraptor": 1042311818, + "Babydactyl": 1180982194, + "Stegosaurus": 476811765, + "Mount_Pegasus_Spectral": 948250730, + "Mount_2P_Scarydactyl": 1808983335, + "Mount_2P_TRex": 1495851852, + "Therizinosaurus": 80337863, + "Runtosaurus": 476200406, + "FrilledLizard": 420993517, + "Mount_Ankylosaurus": 669692274, + "Mount_Triceratops": 1126950204, + "Mount_2P_Glider": 1630365881, + "Transformation_Thunderhorn": 1045262037, + "Transformation_Jaguar": 1080966062, + "Transformation_Pteranadon": 273836142, + "Transformation_ShadowWeaver": 255927111, + "Transformation_EagleWarrior": 1880471875, + "Mount_Falalalallama": 389890123, + "Mount_2P_WinterTreant": 1850265056, + "GDN_LG_MissileToe": 1767792974, + "GDN_MED_PointSetta": 647257205, + "Nutcracker2012": 1598217699, + "Coal2012": 1627852119, + "Mount_Sleigh": 1636615519, + "Mount_Sabertooth": 1613031507, + "Mount_MechanicalWings": 1014917438, + "PiranhaHunter": 686271163, + "Quetzal": 2020925822, + "Mount_Sloth": 1169387359, + "HollowKnightLife": 2114081886, + "BettaFish": 138088968, + "MummyCat": 62372925, + "TrojanHorse": 1725299194, + "WC_Storm_Possessed": 186960228, + "AV_Possessed": 1106693085, + "AZ_Possessed": 1106692701, + "CL_Possessed": 1106692255, + "KT_Possessed": 1106693015, + "MS_Possessed": 1106692977, + "WC_Possessed": 1106692459, + "Mount_2P_Whale": 448824263, + "Mount_2P_Chariot": 88035298, + "Mount_WarBoar": 1159836211, + "Mount_Palanquin": 47587550, + "BearCub": 672664722, + "Transformation_Minotaur": 1454233452, + "DragonGauntlet": 797645257, + "DeathUnicorn": 924144161, + "Flamingo": 1488424911, + "Mount_Gorilla": 1939919432, + "Mount_WarUnicorn": 1361393198, + "GargoyleMyth": 1819685060, + "TikiMan": 16098567, + "Siren": 79937811, + "GoldenRam": 410220227, + "Harpy": 96026632, + "SwordShield": 1668411785, + "ClockworkKnight": 1059948980, + "Mount_MechanicalEagle": 1720948645, + "Mount_Cloud": 1166233435, + "Mount_Surfboard": 1914250039, + "Mount_BetaDragon": 1023653721, + "Mount_BeeWings": 1387988401, + "Vampire": 524731385, + "FrankenBunny": 589797989, + "BumbleBee": 249592226, + "Mount_Dragonfly": 1028843656, + "BronzeGolem": 1320867859, + "TarantulaHawk": 1983939429, + "Mount_Grasshopper": 1852850928, + "FlyingSquirrel": 847551166, + "GDN_MED_Sunion": 1652707634, + "GDN_MED_SwordFern": 548761438, + "GDN_SM_SugarKhrystal": 267539461, + "GDN_SM_SawPalmetto": 1892888046, + "GDN_LG_FacePalm": 2050814140, + "GDN_LG_QueenCrapeMyrtle": 80378450, + "Transformation_ShadowTank": 1304943609, + "Transformation_ShadowHeal": 1254024185, + "Transformation_ShadowDPS": 87276537, + "Mount_Noelephant": 1383672248, + "SaintBernard": 572932242, + "ParkaFox": 2009808189, + "Goose": 75019719, + "Mount_Coconut": 791151432, + "CreepyBeetle": 345594179, + "BabyDragonfly": 1367084335, + "FennecFox": 41315063, + "PP_Leviathan": 833901526, + "PP_SunSerpent": 1062677009, + "PP_LordOfWinter": 960214698, + "PP_Medusa": 867812931, + "PP_Dryad": 147654656, + "PP_AvengingFossil": 315904647, + "PP_Sabertooth": 1799146677, + "Mount_Butterfly": 1283940943, + "Mount_Hare": 2070851023, + "Transformation_MorganthB": 197306990, + "Transformation_MorganthC": 197831278, + "Transformation_MorganthD": 200452718, + "BabyPegasus": 1215000859, + "ArcaneHelp": 1899247549, + "Mount_Vines": 98389624, + "Mount_ArcaneMinecart": 2001270930, + "Hobgoblin": 2133668461, + "Mount_2P_Rowboat": 237071469, + "ForestSpirit": 1178454602, + "Mount_SpiritWolf": 531991076, + "Otter": 84138671, + "OrigamiBird": 550984083, + "DinoSkeletal": 233277835, + "Mount_HarrowingsGreen": 1605746772, + "Mount_HarrowingsBlue": 477152436, + "Mount_HarrowingsPurple": 2092807554, + "RedPanda": 1744233845, + "Ibis": 2665577, + "Corgi": 78823875, + "Mount_Yak": 996545739, + "Mount_FlyingBalance": 436519643, + "Transformation_ShadowMalistaire": 1043814435, + "Transformation_DragonMalistaire": 841867699, + "Mount_Scarab": 1687658791, + "Transformation_MisterHound": 1973578844, + "Mount_BahHumbug": 55114077, + "Skates": 1568993965, + "Moose": 75019725, + "Mount_Gargoyle": 1456663874, + "GDN_MED_VenusFlyTrapEpic": 1594069606, + "Mount_PlayerWingsPink": 19403046, + "GDN_LG_AlligatorPearEpic": 1326804812, + "Pet_Armadillo": 825736847, + "Mount_JoustingDestrierDyeable": 1683448768, + "GDN_MED_VampireCarrots": 871596496, + "GDN_SM_WhiteTigerLilyEpic": 1703271434, + "GDN_LG_NinjaFigEpic": 938504823, + "GDN_LG_SnapDragonEpic": 2071674466, + "GDN_MED_HelephantEarsEpic": 719166107, + "GDN_MED_TrumpetVineEpic": 225854518, + "GDN_SM_DandelionEpic": 728637442, + "GDN_SM_HuckleberriesEpic": 1903258448, + "GDN_MED_SnowAppleEpic": 1231175967, + "GDN_SM_BoomShroomEpic": 981598771, + "GDN_MED_KingParsleyEpic": 2038371004, + "Mount_Raptor": 749695031, + "Pet_Toucan": 581477475, + "Pet_Squirrel": 969881395, + "Mount_WonkyDonkey": 1481657312, + "Mount_HawkPatriotic": 509149743, + "Pet_FrogAssistant": 1945041750, + "Mount_Cat2": 1151054899, + "Mount_Cat2BW": 1603515443, + "Pet_ArmadilloBW": 825733899, + "Pet_FrankieForearms": 1100195857, + "Mount_SolarSabre": 1281093703, + "MNT_MechOstrich": 258667969, + "MNT_BootsBalance": 1799191558, + "MNT_BootsDeath": 1034912971, + "MNT_BootsFire": 606061658, + "MNT_BootsIce": 2142643294, + "MNT_BootsLife": 773751898, + "MNT_BootsMyth": 144792486, + "MNT_BootsStorm": 1525245121, + "Pet_CorgiBirthday": 1951779369, + "OrigamiBirdBDay": 1909935955, + "Pet_FlyingBlackCat": 432111988, + "Mount_Narwhal": 449637834, + "Mount_NightOwl": 1648420845, + "Pet_Penguin": 137342907, + "MNT_PowerGemUnicorn": 411234062, + "Pet_CrystalButterfly": 512136094, + "Mount_BabyMammoth": 185831059, + "MNT_BabaYaga": 564874997, + "Pet_BabySeal": 657606984, + "Pet_BabyYeti": 635847496, + "Transformation_BallerinaBear": 1525333600, + "Mount_StagYuletide": 1508680687, + "Transformation_TitanMedium": 1700742736, + "Transformation_TitanLarge": 718614967, + "Pet_SirenIce": 849851564, + "Mount_FlyingDeath": 1717725588, + "Mount_FlyingFire": 1177216332, + "Mount_FlyingIce": 1238841184, + "Mount_FlyingLife": 433397684, + "Mount_FlyingMyth": 164983572, + "Mount_FlyingStorm": 375872049, + "Dragonling": 1730534849, + "Pet_EggChicken": 952873217, + "HeckhoundGhost_MAW": 893368960, + "Mount_WinterTrain": 751515281, + "Mount_RubberDucky": 1826548479, + "Pet_BansheeSpellwrit": 917979583, + "Pet_SamooraiSpellwrit": 370057597, + "Mount_UnicornAstral": 886914505, + "Guest_Boochbeard": 1958574095, + "Pet_MouseSister": 1267930350, + "Pet_MouseFather": 2010008339, + "Pet_VampireSquirrel": 250588691, + "Mount_CoffinCar": 1387606595, + "Mount_BabyElephant": 2026559639, + "Pet_RoadHog": 601156960, + "Mount_WolfGryphonWings": 543038283, + "MNT_ClockworkSteed": 891371132, + "Mount_Chopper": 1196683136, + "Pet_ButterflyLamb": 527214392, + "Pet_MouseMother": 2012687123, + "Pet_MouseBrother": 1174380856, + "Pet_Cherub": 769208559, + "GDN_SM_Jewel": 1104045832, + "MR_Death_Duncan_Grimwater": 1850289001, + "Mount_DesertRunner": 2049036229, + "Pet_MonkeyMirage": 418612892, + "Pet_ClockworkOwl": 1038482431, + "Pet_NinjaTurtle": 2024540686, + "Mount_Vines_Halloween": 82852149, + "Mount_SwarmBat": 1151836459, + "Mount_2P_NinjaDragon": 1239694057, + "Mount_Gobler": 1820615236, + "Mount_MaryleboneCar": 2027689685, + "JackOLantern": 1016361578, + "Transformation_DjinnCommonA_Balance": 996127128, + "Transformation_MedicineMode": 25960701, + "CactusHopper": 1956293007, + "Transformation_Mimic_ChestGold_A": 414145432, + "Mount_Ghoulture": 1067671195, + "Pet_Macaw": 1087278472, + "Pet_SandWorm": 653200803, + "Transformation_DromelDancer": 1071824116, + "Pet_Bunnies": 695874547, + "Mount_Snowboard": 1914380015, + "Transformation_DrommelDancer": 226294468, + "Mount_Carpet_New": 1618650322, + "Mount_BunnySleigh": 599915427, + "Helephant_Heart": 419161272, + "Mount_Snowboard_Holiday": 876339060, + "Transformation_GhostDog": 646575420, + "Transformation_PrinceGobblestone": 693826496, + "Transformation_Mithraya": 1240010601, + "Transformation_LuskaCharmbeak": 897469730, + "Transformation_YoungCyrusDrake": 15595663, + "Kookaburra": 1069759154, + "BorealisGolemPet": 797488492, + "FlyingEyePet": 505959833, + "StormCloudPet": 548463069, + "BullPet": 1993917801, + "OpossumPet": 284003652, + "GhoulturePet": 939920734, + "StormCloudPetB": 548463001, + "StormCloudPetC": 548463003, + "Guest_LordNightshade": 1221409981, + "BullPetB": 1993917561, + "BullPetC": 1993917553, + "BullPetD": 1993917513, + "Transformation_ShadowCrit": 1392195065, + "Mount_Pennyfarthing": 1551926344, + "Mount_RowboatPirate": 2079208803, + "Mount_IceCube": 1261861595, + "Guest_LostMaiden": 883675592, + "Guest_BoatswainMcGee": 1359750850, + "Guest_ChiefMateMcGurk": 329643845, + "Guest_DoomedBones": 2015643882, + "Guest_SpectreoftheBrocken": 266357448, + "Guest_DrownedKnight": 1100966093, + "Guest_TarntheDrowned": 329540205, + "Guest_DisloyalKnight": 1853240753, + "Guest_NamelessKnight": 1065677876, + "Guest_LambentFire": 489886605, + "Guest_LordoftheBrocken": 1662003371, + "Guest_StormCaiman": 1147500291, + "Guest_GrinningDeathMoon": 737595789, + "Guest_MoonSkullWight": 1720039490, + "Guest_HuemacSpearWreath": 1522021131, + "Guest_HowlingBanshee": 1340855338, + "Guest_Sea-Booter": 1818491983, + "Guest_DeadRover": 1009273257, + "Guest_CelestianRemnant": 1312268448, + "Guest_Shadow-WebConscript": 1500529411, + "Guest_Shadow-WebMercenary": 623672171, + "Guest_Shadow-WebWraith": 810956416, + "Guest_Shadow-WebHaunt": 500586883, + "Guest_CelestianPartisan": 633346892, + "Guest_CelestianDefender": 482102727, + "Guest_ThraleBonestriker": 1172972733, + "Guest_VorgenSoulbreaker": 1935693246, + "Guest_ServusBloodsword": 1703995647, + "Guest_QueenCalypso": 845803519, + "Guest_BlueBart": 77043390, + "Guest_KarolakNightspinner": 1008737316, + "Guest_ArachtusDuskweb": 1787750209, + "Guest_ZhalarStarcloud": 1453644105, + "Guest_NarallorNightborn": 1963363700, + "Guest_SelwynSkywatcher": 1413136893, + "Guest_OsseusNightreaver": 306827003, + "Guest_IrateBanshee": 865143109, + "Guest_FuriousHowler": 1607252558, + "Guest_CryingSpirit": 1559074820, + "Guest_UndeadDraconian": 169249571, + "Guest_ReanimatedDraconian": 247067807, + "Guest_GhastlySlave": 80127661, + "Guest_BoundSpecter": 369706568, + "Guest_NecroticHaunter": 1714841563, + "Guest_LoathsomeCreeper": 1087245229, + "Guest_FleshrotRetriever": 1925148031, + "Guest_BarbarianSpirit": 2112552732, + "Guest_BeghastionCrowcaller": 586628832, + "Guest_BeghastionFieldburner": 1650751959, + "Guest_BoneWarrior": 76802026, + "Guest_FleshlessSentry": 708431820, + "Guest_PirateRavager": 945157059, + "Guest_RottenScallywag": 974666855, + "Guest_ArmoredBonewalker": 1444568072, + "Guest_UndeadWizard": 1622435563, + "Guest_SoulSearcher": 2094392941, + "Guest_DecayingBlackguard": 412324062, + "Guest_FoulReaper": 919877614, + "Guest_NightShadow": 1675932226, + "Guest_MotleyCrew": 653779218, + "Guest_OrinGrimcaster": 472649066, + "Guest_GhostofSylviaDrake": 218332449, + "Guest_VikaMarkmaker": 1145181168, + "Guest_VasekAshweaver": 1001434369, + "Guest_FireWraith": 1027720368, + "Guest_HungrySoul": 1722435576, + "Guest_FrostBones": 456145606, + "Guest_SnowSkull": 835837850, + "Guest_WinterSkull": 1556601065, + "Guest_LothinDoombringer": 860995070, + "Guest_MimirWinterbane": 1111898070, + "Guest_KulgrimSoulsunder": 278037985, + "Guest_HitojiniDeathcaster": 1144499043, + "Guest_GaikotsuSkeleton": 1113949902, + "Guest_PhantomAce": 1917639347, + "Guest_PhantomGlider": 849918336, + "Guest_Krokomummy": 857773886, + "Guest_NiriniAncientGuard": 359313880, + "Guest_NiriniFireSpirit": 1863811476, + "Guest_VaultHaunter": 197723476, + "Guest_VigilantDefender": 171276829, + "Guest_WanderingAhnicSpirit": 1702865088, + "Guest_ForgottenDjeseritSoul": 1170568256, + "Guest_KaranahnDeathfeeder": 1612857711, + "Guest_ShamblingAhnic": 1579129677, + "Guest_RisenDjeserit": 287855500, + "Guest_KaranahnMortifier": 874288111, + "Guest_DjeseritDweller": 2058423665, + "Guest_AhnicStrider": 1776992302, + "Guest_GuardianoftheFang": 1816795524, + "Guest_DefenderoftheFang": 354353604, + "Guest_ProtectoroftheFang": 1290191037, + "Guest_SouloftheCharmed": 422890577, + "Guest_KaranahnKeeper": 77581557, + "Guest_NiriniIntimidator": 677205957, + "Guest_CondemnedSoldier": 449152244, + "Guest_NimahtheWicked": 1298248873, + "Guest_AkoriNirini": 1123159753, + "Guest_SoulScavenger": 892852198, + "Guest_KeeperoftheFang": 1676773499, + "Guest_ItennuSokkwi": 699159408, + "Guest_Tempestra": 334938435, + "Guest_QueenIrisiDjeserit": 1861434100, + "Guest_TheBonekeeper": 1302503449, + "Guest_CryptScavenger": 1893795791, + "Guest_Soulsapper": 1699756010, + "Guest_KingUroAhnic": 1788825731, + "Guest_KingShemetDjeserit": 1350067043, + "Guest_UnholyWraith": 1871146013, + "Guest_PikeSpiritcrusher": 498715531, + "Guest_SpellwritScreamer": 801626733, + "Guest_SpellwritRonin": 1671439174, + "Guest_Shrieker": 805966229, + "Guest_GravePhantom": 731622936, + "Guest_NightmareSpirit": 230709057, + "Guest_VengefulCreeper": 1100197884, + "Guest_TombRoamer": 1277825068, + "Guest_ShieldSkeleton": 1634270152, + "Guest_AgonyWraith": 30384496, + "Guest_IcyGhost": 768353592, + "Guest_Half-wittedSkeleton": 647996362, + "Guest_LazyHenchman": 1329554426, + "Guest_TiredFighter": 210248632, + "Guest_Screecher": 469007005, + "Guest_SeethingWraith": 664913100, + "Guest_ColdConfusion": 1304943934, + "Guest_OssuaryConscript": 1017667150, + "Guest_Ghulture": 1330558655, + "Guest_BodyGuard": 1048581801, + "Guest_SpectralGuardian": 422805602, + "Guest_VaultConscript": 1388398065, + "Guest_FootPatrol": 1692393321, + "Guest_ArmedGuard": 2045920536, + "Guest_Chilly": 1764665905, + "Guest_Achey": 973370519, + "Guest_Sneezy": 1769440773, + "Guest_Cough": 1170200073, + "Guest_Shadowbones": 1316133167, + "Guest_ForgottenConscript": 1466348281, + "Guest_BarracksGuardian": 236603440, + "Guest_CryptConscript": 314755436, + "Guest_DurvishSeeker": 1825622267, + "Guest_MedicineMode": 167015574, + "Guest_Myriarch2": 593881680, + "Guest_Myriarch3": 593881616, + "Guest_MyriarchEphialtes": 773531895, + "Guest_MotherGhulture": 1585201915, + "Guest_CaptainCosrow": 727107332, + "Guest_VizierRafaj": 214040637, + "Guest_DarkmoorSerf": 1522169114, + "Guest_DarkmoorSquire": 1822567109, + "Guest_ScarletWampyr": 1683954247, + "Guest_DraconianRevenant": 741497298, + "Guest_DraconianEidolon": 107733297, + "Guest_AnguishedWraith": 1078602022, + "Guest_DraconianPyromancer": 729577007, + "Guest_DraconianThaumaturge": 189734361, + "Guest_DraconianDiviner": 472633746, + "Guest_DraconianConjurer": 1824962835, + "Guest_DraconianTheurgist": 1828628416, + "Guest_DraconianNecromancer": 175364324, + "Guest_DraconianSorcerer": 1262893339, + "Guest_SirBlackwater": 366308464, + "Guest_AkhtangWormCrawl": 1589032404, + "Guest_SpiritofDarkmoor": 579455915, + "Guest_ShanevonShane": 2096517522, + "Guest_YevgenyNightCreeper": 1535282881, + "Guest_MalistairetheUndying": 824508513, + "Guest_Bunferatu": 1015806005, + "Guest_CountBelaBlackSleep": 761647679, + "Guest_DeathSoldier": 1715141574, + "Guest_SorrowWhisperer": 556532003, + "Guest_GriefSpectre": 1425488559, + "Guest_HowlingShade": 631460247, + "Guest_WalkingDead": 318527090, + "Guest_Akuji": 977635799, + "Guest_TorturedKakedaSoul": 1716874833, + "Guest_KakedaSpiritSlave": 1814699344, + "Guest_DishonoredSamoorai": 320085744, + "Guest_CursedRonin": 1204095686, + "Guest_TomugawatheEvil": 166125424, + "Guest_OyotomitheDefiler": 1672714483, + "Guest_Fushiko": 801492770, + "Guest_BrokenLandGuardian": 294671991, + "Guest_ShatteredSkyGuardian": 746681463, + "Guest_SunderedSeamGuardian": 1439618652, + "Guest_BrokenLandSpirit": 860105895, + "Guest_ShatteredSkySpirit": 2104112380, + "Guest_SunderedSeamSpirit": 69572311, + "Guest_LostSoul": 204361577, + "Guest_RottingFodder": 308249734, + "Guest_HauntedMinion": 689597338, + "Guest_FieldGuard": 1175228991, + "Guest_SkeletalWarrior": 778393993, + "Guest_SkeletalPirate": 1476730220, + "Guest_WanderingSpecter": 126188449, + "Guest_LivingScarecrow": 1442943145, + "Guest_FrostPhantom": 1809776664, + "Guest_FireShrieker": 173332719, + "Guest_CryptCrawler": 2118799272, + "Guest_ViridianSpecter": 383149977, + "Guest_ArgentClatterer": 525414714, + "Guest_SwimmingSpecter": 1494025094, + "Guest_ScarletScreamer": 1689589811, + "Guest_BoneDigger": 1351421123, + "Guest_HowlingGhost": 664019391, + "Guest_SkeletalSoldier": 750463116, + "Guest_MaidenofHate": 444442868, + "Guest_SkeletalRetainer": 1409032775, + "Guest_SoulHunter": 1900267551, + "Guest_MidnightShuffler": 1991052065, + "Guest_PlaguedSoul": 419071561, + "Guest_HauntingBanshee": 345837052, + "Guest_SimontheSayer": 1352807820, + "Guest_TheHarvestLord": 1923575206, + "Guest_LadyBlackhope": 1403431623, + "Guest_SergeantSkullsplitter": 898737831, + "Guest_Foulgaze": 2063419769, + "Guest_Wormguts": 788697519, + "Guest_Rattlebones": 125602919, + "Guest_Paulson": 1112716921, + "Guest_Grubb": 1167554274, + "Guest_Norton": 581021964, + "Guest_NightStalker": 1447653309, + "Guest_AddereTimeo": 1491420030, + "Guest_TheReaper": 1526369733, + "Guest_AngrusHollowsoul": 1427862805, + "Guest_OrrickNightglider": 951078615, + "Guest_SteelSentinel": 885250894, + "Guest_Shadow-WebSoldier": 2014925398, + "Guest_LostCeleste": 1725301830, + "Guest_CapnNigelSkullcrack": 1665439970, + "Guest_HaulAwayJoe": 1075985331, + "Guest_OldMaui": 15300840, + "Guest_LordAgue": 140791419, + "Guest_MelweenaSmite": 432188189, + "Guest_HalloweenTrickster": 2043736417, + "Guest_PumpkinHead": 1098332105, + "Guest_BaronMordecai": 817370918, + "Guest_KaimaniteMummy": 1332671420, + "Guest_VeggieRevanant": 928504192, + "Guest_BloodBat": 76467389, + "Guest_DeadBeets": 157829578, + "Guest_Desparagus": 1130644076, + "Guest_MeanestFly-Trap": 1652898868, + "Guest_Nosferabbit": 1021159436, + "Guest_ThrallofSothmekhet": 330780177, + "Guest_VileApparition": 426627869, + "Guest_SoulServant": 1183110886, + "Guest_SoulKeeper": 917518313, + "Guest_AdmiralBontau": 2032168402, + "Guest_DeathWhisperer": 3814952, + "Mount_RollerBlades": 111369373, + "Guest_BaneWyrm": 147033576, + "Guest_BlackDragon": 939469656, + "Guest_DragonSpawn": 1829803517, + "Guest_Fire-SpitterSpawn": 616624489, + "Guest_CaoranachtheFire-Spitter": 323513000, + "Guest_Jabberwock": 1552492834, + "Guest_CatalantheLightningLizard": 1155778705, + "Guest_WhiteDragon": 2009449331, + "Guest_WinterWyrm": 478925069, + "Guest_WyrmStatue": 2119216210, + "Guest_AlgidWyrm": 1309546482, + "Guest_BruleeSucre": 390936202, + "Guest_HebitohoWyrmling": 1682026810, + "Guest_Shadowwock": 505539184, + "Guest_EirikurAxebreaker": 1361453552, + "Guest_WarWyrm": 1124740742, + "Guest_StrayFireflier": 610979811, + "Guest_BurningFlamewing": 2041225130, + "Guest_FeralLavaling": 371483057, + "Guest_SplinterWing": 923421333, + "Guest_ChanticoBlueAir": 1572441903, + "Guest_CopperWingGuard": 302783602, + "Guest_ObsidianBeak": 2016227452, + "Guest_CaquixNineShadows": 2070101060, + "Guest_LustrousTlalocan": 1201030473, + "Guest_SeedThief": 263211181, + "Guest_PopZotzUnluckyDay": 1416773489, + "Guest_NezathePoet": 1905861376, + "Guest_MazenStingerBee": 1642023393, + "Guest_ImperialJusticePayne": 1285679745, + "Guest_AssistantWardenPorfiry": 22099059, + "Guest_MarshalKamensky": 524669730, + "Guest_WardenVissarovich": 882556823, + "Guest_GulagGuard": 100744159, + "Guest_CaptainKravchuck": 690830770, + "Guest_ImperialGuard": 346803640, + "Guest_IronPaw": 1797329688, + "Guest_TundarianEnforcer": 134256836, + "Guest_Ivan": 996220221, + "Guest_ColonelOrlov": 1381254189, + "Guest_IronPawIntakeCaptain": 2099184835, + "Guest_SolitaryWarden": 1503529566, + "Guest_CaptainZubkov": 793725366, + "Guest_SergeantBobrik": 722182485, + "Guest_WailingWraith": 946976407, + "EggChick": 1452316301, + "BunnyMallow": 518233330, + "Guest_ThunderHornZombie": 1007920040, + "Guest_SmokingMirrorZombie": 340971759, + "Guest_ShamblingZombie": 1920485146, + "Guest_MoonSkullZombie": 809249764, + "Guest_DeathlessStormHorn": 812397213, + "Guest_MozarTurtleHunter": 561749043, + "Guest_GuillermoShatterer": 499565054, + "Guest_XiuhcoatlBarbedTooth": 1719245305, + "Guest_AzcalFireAnt": 1281366337, + "Guest_TlotzinMoonThief": 407285761, + "Guest_PocaCruelStar": 1117353085, + "Guest_ThunderHornGhoul": 597878999, + "Guest_TezomocStoneSinger": 733511940, + "Guest_EzhuaBadTaste": 632779219, + "Guest_UacalxochitlBloodEye": 1614856226, + "Guest_WanadiBlackSky": 349829749, + "Guest_ElMarrow": 483880636, + "Guest_GrimCalaca": 1534029144, + "Guest_XipeFlayedOne": 1343577398, + "Guest_MotecumaDeathMask": 1782393717, + "Guest_EkeChuah": 13416770, + "Guest_AnacaonaBlackSnake": 1543344897, + "Guest_SmokingMirrorWight": 776452983, + "Guest_Tolkemec": 217428080, + "Mount_Fox": 77199428, + "PP_OwlProtege": 268847192, + "Mount_SharkSki": 331374103, + "PP_Dolphin": 1662291612, + "Mount_CastSymbol_D": 1134428045, + "Mount_CastSymbol_E": 1136525197, + "Mount_CastSymbol_F": 1138622349, + "Mount_CastSymbol_G": 1140719501, + "Mount_CastSymbol_A": 1128136589, + "Mount_CastSymbol_B": 1130233741, + "Mount_CastSymbol_C": 1132330893, + "Guest_LionSpectralGuardian": 1791543691, + "Guest_KillmareSpiritwalker": 1818928165, + "Guest_ZebraSpectralGuardian": 815933596, + "Guest_GorillaSpectralGuardian": 1635182119, + "Guest_IklawGhostWarrior": 373465545, + "Guest_BwanaShadowriver": 1307628747, + "Guest_ElephantSpectralGuardian": 1579402208, + "Guest_ZangaZebu": 1218173119, + "Guest_GrumishGreataxe": 486953385, + "PP_GlowFairy_A": 2028856748, + "Guest_RestlessSoldier": 1142701763, + "Guest_WanderingWizard": 209518514, + "Guest_ColonelIvanenko": 399169035, + "Guest_DetollitheDestroyer": 655767295, + "Guest_Jawniak": 1791298433, + "Guest_Tajniak": 356182394, + "Guest_Ygor": 996316081, + "Guest_KyaniteLancer": 2136703656, + "Guest_VestaShadowmark": 1846747836, + "Guest_ZoraSteelwielder": 1186470644, + "Guest_AndorBristleback": 1949884743, + "Guest_GalliumPaladin": 1812340868, + "Guest_GalliumFootman": 1295203112, + "Guest_GalliumShardtrooper": 1210699836, + "Guest_GalliumJuggernaut": 3527584, + "Guest_VladimirDarkflame": 1575322237, + "Guest_KyaniteLieutenant": 561528977, + "Guest_DrusillaMorningbane": 155837810, + "Guest_KyaniteValkyrie": 53242136, + "Transformation_20Q_SherlockBones": 1112674320, + "Guest_DevoraShadowcrown": 1813459117, + "Guest_YoualaNightDrinker": 881289828, + "Guest_Pendragon": 715669945, + "Guest_CelestianRevenant": 515730327, + "Guest_SoullessServant": 1505662730, + "Guest_SpiritServant": 104517373, + "Guest_SoulSerf": 1188214406, + "Guest_ServileSoul": 871844607, + "Guest_SkeletalCorsair": 239414410, + "Guest_RottedFodder": 1301186193, + "Guest_ScarletScreecher": 600457915, + "PP_FrankBunnyBride_A": 974707030, + "Guest_BastillaGravewynd": 2100015237, + "Guest_VilaraMoonwraith": 2067986693, + "Guest_YngvarSharptooth": 1783361972, + "Guest_TroubledWarrior": 1569033392, + "Guest_VeggieRevanant2": 928503904, + "Guest_VeggieRevanant3": 928503888, + "Guest_VeggieRevanant4": 928503872, + "Guest_VeggieRevanant5": 928503856, + "Guest_AncientQhatWarrior": 1564521104, + "Guest_EmperorPaleolo": 2079384347, + "Guest_SpiritofIntolerance": 1627658048, + "Guest_SpiritofInquiry": 1320544891, + "Guest_FirstGuardian": 1982227776, + "Guest_FallenMerc": 225926286, + "Guest_NightShadow2": 1638183490, + "Guest_NightShadow3": 1636086338, + "Guest_NightShadow2-2": 1436856907, + "Guest_NightShadow3-2": 1434759755, + "Guest_NightShadow4-2": 1432662603, + "Guest_NightShadow5-2": 1430565451, + "Guest_NightShadow6-2": 1428468299, + "Guest_NightShadow7-2": 1426371147, + "Guest_FirstScythe": 738854032, + "Guest_GreyMantisCaptain": 860186057, + "Guest_GreyMantisHunter": 1239274377, + "Guest_Atlach-Leng": 836136649, + "Guest_PetrovGloomstrider": 2045783873, + "Guest_NauyotolDownIntheHole": 1134251106, + "Guest_SandorSpearcaller": 1351072377, + "Guest_MavraFlamewing": 1477685600, + "Guest_Scaldling": 208751819, + "Guest_WoebegoneWraith": 1166488705, + "Guest_BorisBlackrock": 1365399915, + "Guest_KatiaFirewinter": 521255834, + "Guest_ValerikBrightsword": 1244055782, + "Guest_RurikFlamesoul": 1962726850, + "Guest_IonaPyrelance": 722266491, + "Guest_DarkPoltergeist": 818162178, + "Guest_TheCollector": 1772287612, + "Guest_ViktorSnowcrusher": 1028387381, + "Guest_ValeskaRedwind": 19316351, + "Guest_ScarrikGallowgaunt": 105397333, + "Guest_Neberyx": 1453883041, + "Guest_AsrikWidebelt": 401936422, + "Guest_GothricHonorbound": 750072340, + "Guest_HalfangBristlecrown": 618779562, + "Guest_OsvudFleetpaw": 1023466459, + "PP_PufferFish_A": 1578606029, + "Guest_OzelUnderwaterCat": 1033669302, + "PP_BabyGreenMan_A": 910025246, + "PP_SchoolTurtle_A": 1012620678, + "PP_DarkBalloon_A": 1229308566, + "MT_JetsamCopter": 92127678, + "Mount_4P_DarkClownCar": 420246262, + "MNT_BalloonsBunch": 2000358474, + "Guest_TempleGuardian": 632574316, + "Guest_TemplePhantom": 1701097840, + "Guest_MahonStarsearcher": 1549093341, + "Guest_LostKnight": 858980994, + "Guest_AnguishedWoodman": 174606918, + "Guest_TormentedTreant": 294050331, + "Guest_WildfireTreant": 1902129818, + "Guest_BlightedYaxche": 679097088, + "Guest_Junglethorn": 1734561424, + "Guest_Tangleroot": 2027061721, + "Guest_BlightedFreerooter": 1109803061, + "Guest_Winterbranch": 1170787806, + "Guest_DecayingBogwalker": 1338670789, + "Guest_BrownwoodTormentor": 1655181754, + "Guest_Wildroot": 1839747182, + "Guest_Ironsplinter": 668295157, + "Guest_Frostbranch": 75974631, + "Guest_KyoukonteiTreant": 474446232, + "Guest_BrokenStumps": 414724364, + "Guest_WordlessWoodsmen": 1813881830, + "Guest_DesiccatedTreebeard": 1826942903, + "Guest_ShadowoftheLand": 1612385317, + "Guest_TreeRoot": 1406633546, + "Guest_BefouledWoodwalker": 1517919498, + "Guest_ConfusedForestWarrior": 750805985, + "Guest_CrazedForestSpirit": 1007960507, + "Guest_Oakheart": 1158293719, + "Guest_SnowTreant": 1028620035, + "Guest_Snowbeard": 1997921701, + "Guest_BarkskinTreant": 2143957812, + "Guest_RazorleafTreant": 2133159197, + "Guest_CarrionFlowerMan": 1120698936, + "Guest_Kurokage": 355651925, + "Guest_LacombeStrawHouse": 568809873, + "Guest_BerkshireStickHouse": 1932133405, + "Guest_TamworthBrickHouse": 894027634, + "Guest_RustyTinderSpark": 1237916230, + "Guest_CoraWinterBranch": 1901918989, + "Guest_GrambleGoldRook": 1986988546, + "Guest_PiperStormTree": 1109520133, + "Guest_Hanadzura": 124838500, + "Guest_Kuchisaki": 2084188681, + "Guest_Kaizoku": 807430784, + "Guest_JaxonLastRites": 1653711119, + "Guest_SeijunKiller": 657647155, + "Guest_ZarichiTarakata": 1129212566, + "Guest_BladelessRonin": 1577395797, + "Guest_SanzokuOutlaw": 1682888807, + "Guest_SanzokuBandit": 1766198653, + "Guest_KakedaPainbringer": 1260119278, + "Guest_KakedaStalker": 367458449, + "Guest_KakedaShadow": 1604499626, + "Guest_KakedaSoulcrusher": 1961168112, + "Guest_ImitsuPlaguemaster": 1361539025, + "Guest_ImitsuDefouler": 1299791045, + "Guest_ImitsuPunisher": 234819300, + "Guest_StudentofKhai": 249757647, + "Guest_OtomoBattlemage": 918160114, + "Guest_OtomoCourier": 1373253378, + "Guest_OtomoSupplyRunner": 1580070577, + "Guest_OtomoScout": 1814051082, + "Guest_OtomoWrestler": 1053571230, + "Guest_OtomoFury": 111319603, + "Guest_Hyottoko": 307080225, + "Guest_Usunoki": 1881339626, + "Guest_Kagemoosha": 1842766119, + "Guest_UdoJin-e": 850816224, + "Guest_TakedaKanryu": 536087422, + "Guest_Tamauji": 818613882, + "Guest_Jikiru": 794167355, + "Guest_Nomoonaga": 849534658, + "Guest_Aiuchi": 515942855, + "Guest_Kurogaso": 1426248002, + "Guest_Ideyoshi": 1814038213, + "Guest_Koto": 1151260427, + "Guest_Usegi": 977549586, + "Guest_Kanago": 1644367227, + "Guest_Kyuto": 1168225979, + "Guest_Haru": 2070048389, + "Guest_Ashikata": 1523446928, + "Guest_Katsumori": 1823914597, + "Guest_Hingen": 1567896261, + "Guest_Yakedo": 502298497, + "Guest_Do-Daga": 1239945714, + "Guest_Maito": 979260804, + "Guest_TonkatsuThug": 1758658397, + "Guest_GobbloreanGuard": 1286210991, + "Guest_BabblingMeints": 413418139, + "Guest_PrinceGobblestone": 1813171676, + "Guest_GobblerMuncher": 1517159487, + "Guest_GobblerGorger": 130736772, + "Guest_GobblerScouter": 1509427587, + "Guest_GobblerGlutton": 1912199781, + "Guest_GobblerScavenger": 136586791, + "Guest_BaronGreebly": 1028182200, + "Guest_BaronRotunda": 457132907, + "PP_DeathMimic": 1811942047, + "Guest_GreenMan": 1126663802, + "Guest_ForestGrump": 1602350320, + "Guest_ErvintheBarbarian": 1671762776, + "Guest_RazortuskWarrior": 1109994549, + "Guest_RazortuskBrawler": 732265321, + "Guest_SplithoofRager": 1922134329, + "Guest_TuskedRaider": 1920114147, + "Guest_SviniBeserker": 1146317608, + "Guest_SviniReaver": 216717251, + "Guest_Shattertusk": 1191456730, + "Guest_SplithoofBarbarian": 296671728, + "Guest_Bloodseeker": 2086598239, + "Guest_Scarsnout": 1831766077, + "Guest_MasterTonkatsu": 1783298894, + "Guest_Grisletusk": 657393295, + "Guest_SplithoofBloodguard": 488382274, + "Guest_BristlehideRaider": 237078958, + "Guest_Gullin": 1656401882, + "Guest_ForestNymph": 812055814, + "Guest_SassafrasMan": 1327049788, + "Guest_RandolfSpellshine": 108808620, + "Guest_BleysFlamerender": 434070106, + "Transformation_Khan": 1398327634, + "Transformation_TheBat": 1675113521, + "MNT_DireWolf": 845578449, + "MNT_YuleMule": 1976182058, + "MNT_LightBlades": 829118450, + "MNT_FlyingSquid": 1573132252, + "PP_Globulin": 467801224, + "PP_BeastBaby": 1807874692, + "PP_SaniBot": 670845902, + "Mount_SwarmSand": 1277669407, + "Guest_Nodnarb": 211478288, + "Guest_LordBramble": 1118781162, + "Guest_Yogash": 506264561, + "Guest_Marcio": 499428996, + "Guest_Procyon": 1115376865, + "Guest_Thunderfin": 2029218563, + "Guest_ArkynMoonblade": 1152775206, + "Guest_CreeCurdWright": 1714953095, + "Guest_DeerMouseRevenant": 315064435, + "Guest_ElanaDarksun": 837982094, + "Guest_KingAlricFateSailor": 1934591130, + "Guest_LaughingCalaca": 984492527, + "Guest_WraithKnight": 620484548, + "Guest_FieryEchoofApep": 484636593, + "Guest_FrostyEchoofApep": 171933154, + "Guest_FalseEchoofApep": 479387377, + "Guest_ChargedEchoofApep": 1229406800, + "Guest_ShrowdengersQhat": 101563303, + "Guest_Scrollkeeper": 643219293, + "Guest_TerrorHound": 753341570, + "Guest_CondemnedMander": 445370758, + "Mnt_SnowStorm": 1491572670, + "Mount_ChimneySweeper": 378571534, + "MNT_PineappleCandyCane": 1630795796, + "Guest_TyphonDustwind": 740849673, + "MNT_StickHorse": 216654744, + "MimicTemplate": 1461219184, + "MNT_Ball_N_Chain": 289720920, + "PP_PeaceDove_A": 1785119671, + "Mount_Gyrocycle": 1495008048, + "PP_BattleMageDragon_A": 1864696711, + "MNT_BattleBeast": 1304449286, + "MNT_SmokeTrails": 387873030, + "Mount_FriendshipHare": 677127330, + "MNT_ButterflySwarm": 383602683, + "PP_EggChick_B": 1959154042, + "MNT_Unicorn": 562210585, + "PP_StuffedUnicorn": 1731641773, + "MNT_ParadeTruck": 2026348978, + "MNT_ParadeTruckXmas": 1017864627, + "MNT_AutumnLeafSwarm": 1540002279, + "PP_GingerbreadMan": 1796172229, + "PP_DecadeDragon": 1819398630, + "MNT_StageShip": 829852992, + "PP_DramaLlama": 255896529, + "PP_HallMinotaur_A": 1492017563, + "Guest_MacDeath": 1526226705, + "Guest_MacDeathUnderstudy": 1731752647, + "Guest_MacLifeUnderstudy": 257466641, + "Guest_MacStormUnderstudy": 8295117, + "MNT_Pantera": 1135198, + "MNT_StagLight": 1908778048, + "MNT_GiantSpider": 1247185021, + "MNT_StagEvil": 872303931, + "PP_BaskHound": 1093866594, + "PP_Marionette": 1688299938, + "PP_Marionette_B": 1688297824, + "Guest_Izft": 996301405, + "Guest_SapotisMinion": 1625665891, + "Guest_CrazedSlave": 1473233468, + "Guest_CharmedSlave": 803043667, + "Guest_EnsorcelledSlave": 40920285, + "Guest_HallServant": 2038116460, + "Guest_SiathePerceiver": 1235571913, + "Guest_Kiwu": 1151177787, + "Guest_NightImp": 1051843424, + "Guest_EvilTrickster": 1035477123, + "Guest_DeepWoodsImp": 1502444054, + "Guest_ForestPest": 802235713, + "Guest_TaintedForestImp": 1030343985, + "Guest_Youkai": 518367729, + "Guest_CarthaginianElephantWarrior": 776293919, + "Guest_IdrisBeast-Taker": 106759521, + "Guest_MikaSkarka": 237956516, + "Guest_Belloq": 757247833, + "Guest_GurtokPiercer": 549466122, + "Guest_GurtokFirebender": 817966523, + "Guest_GurtokDemon": 544070162, + "Guest_GeneralFiretusk": 2073037770, + "Guest_GurtokBarrierDemon": 44657563, + "Guest_BlacktuskShaman": 1009070925, + "Guest_FireDemon": 158367196, + "Guest_DeathOni": 1916642000, + "Guest_JadeOni": 1289517185, + "Guest_PlagueOni": 1464586443, + "Guest_WarOni": 1630196094, + "Guest_BrokenLandMammoth": 1587008312, + "Guest_SunderedSeamMammoth": 1272698721, + "Guest_BullyMammoth": 170705927, + "Guest_Bullhemoth": 146998717, + "Guest_Kogasha": 1909654543, + "Guest_MusuthBerserker": 1741298129, + "Guest_BlackTuskCultist": 1771575961, + "Guest_AksilBlacktrunk": 1253596409, + "Guest_LongdreamerShaman": 1521283133, + "Guest_MuratGreyeyes": 1296814314, + "Guest_ElephantSoldier": 1443670145, + "Guest_DarajaniGuard": 1597288495, + "Guest_Loremaster": 1792470809, + "Guest_Pork": 2069999347, + "Guest_Beans": 97706585, + "MNT_Ox": 1292937747, + "PP_PropellerSquirrel": 1657443894, + "Guest_RasikPridefall": 97921485, + "Guest_AmedrasLightstep": 1818417025, + "MNT_SmokeTrails_Balance": 1358150715, + "MNT_SmokeTrails_Fire": 702971609, + "MNT_SmokeTrails_Ice": 190218501, + "MNT_SmokeTrails_Life": 2045542105, + "MNT_SmokeTrails_Myth": 1276281121, + "MNT_SmokeTrails_Storm": 564954622, + "Guest_Bellosh": 1407013027, + "Guest_AcampiReedfist": 2076527733, + "Guest_AgnettaBroadblade": 14864960, + "Guest_FrostheartRaider": 1574787221, + "Guest_JordaSwordbearer": 1627071850, + "Guest_KasaiBaku": 1153107369, + "Guest_ZoraimeiHelephant": 1002482606, + "Guest_ConscriptedMander": 43811125, + "Firecat_Decade": 409516955, + "MNT_BatGlider": 2086258491, + "Transformation_PlayerHomework": 673389670, + "Transformation_PlayerAttendance": 422287307, + "Transformation_PlayerLecture": 2035625874, + "Transformation_PlayerPopQuiz": 483367038, + "MNT_GingerbreadHorse": 1369242781, + "MNT_NimbariChariot": 1251740392, + "PP_NimbariDog": 1235126828, + "Transformation_PlayerGrandma": 1128332272, + "Transformation_PlayerScionA": 33862367, + "PP_Mushroom": 1568942158, + "MNT_Scooter": 1148167046, + "MNT_Scooter_B": 2079302532, + "MNT_Scooter_C": 1810867076, + "MNT_Scooter_D": 468689796, + "MNT_IceCycle": 415797788, + "Transformation_PlayerScionA02": 33921759, + "Guest_FearoftheFuture": 947210229, + "Guest_FearofGremlins": 405857384, + "Guest_RootGuardian": 922940845, + "Guest_VineThrasher": 172546427, + "Guest_BlightWalker": 1438155154, + "Guest_BriarScourge": 615681851, + "Guest_DreamJabberwock": 907754098, + "Guest_DreamBelloq": 990352002, + "Guest_Voltergeist": 1558128068, + "Guest_SpecialBranch": 1927849418, + "Guest_MutantBriar": 805892802, + "Guest_FeralBriar": 883790223, + "Guest_MaizeMonster": 688905764, + "Guest_DreamShadowwock": 1432458248, + "Mount_Heartboard": 1421972759, + "PP_ChocoBunny": 324797859, + "Mount-PogoFlower": 906659501, + "MNT_AethyrCloud": 1586061078, + "MNT_Fangle": 7846854, + "Guest_StarfallSpider": 1177620831, + "Guest_AshSpider": 1588502553, + "Guest_CorruptedWeaver": 38937211, + "Guest_CrystalCrawler": 1197980149, + "Guest_ShimmerWidow": 1300740128, + "Guest_FacetedSpikespinner": 1939719331, + "Guest_CrystallineQueen": 1999282256, + "Guest_AncientCrystalweaver": 1409608801, + "Guest_FangtoothLavaspinner": 1538042104, + "Guest_VenomousHeatseeker": 1234682482, + "Guest_FireweaveRockbiter": 300743778, + "Guest_MonkeySpider": 754090007, + "Guest_CryptSpider": 1545405304, + "Guest_CommonHouseSpider": 613486002, + "Guest_ArachnaMagnaMagus": 825817937, + "Guest_ArachnaSoldier": 270978709, + "Guest_Gnissa": 1699826178, + "Guest_WebwoodScuttler": 1728611075, + "Guest_SandSpider": 61789007, + "Guest_WebwoodCreeper": 1013382584, + "Guest_Skathi": 1631429165, + "Guest_ArchmagusLorcan": 321146960, + "Guest_CrawleroftheMist": 2076696304, + "Guest_PaintedSpider": 1482115552, + "Guest_GiantSpider": 1545526191, + "Guest_CaveCrawler": 2101587667, + "Guest_RattleCatcher": 1472707326, + "Guest_TrapdoorSpider": 1321643694, + "Guest_RockClinger": 1304266411, + "Guest_InquisitorXimenez": 1053483090, + "Guest_ElderMagus": 1017836836, + "Guest_WardenBenthamic": 18807199, + "Guest_SpiderArchmagus": 387645558, + "Guest_SpiderAdept": 2094873407, + "Guest_InterrogatorRentenius": 1245984179, + "Guest_WarpedWeaver": 495882677, + "Guest_ArachnaSkinner": 281864085, + "Guest_SkinnerConscript": 2028526453, + "Guest_ArachnaGladiator": 2492046, + "Guest_LorcanInitiate": 353311753, + "Guest_Serket": 1871335773, + "Guest_IceWeaver": 2063216026, + "Guest_SpiritSpinner": 525666327, + "Guest_MysteriousCrawler": 218352756, + "Guest_BlackWidow": 1909331619, + "Guest_BrownRecluse": 1146386275, + "Guest_Creeper": 1197442790, + "Guest_GearSpinner": 67020478, + "Guest_Clinker": 1194519062, + "Guest_Clanker": 1194517014, + "Guest_GrandfatherSpider": 1330981335, + "Guest_Spiderling": 1400274461, + "Guest_ManekiWebWalker": 888348786, + "Guest_KoganiDeathCrawler": 276010604, + "Guest_CheliceranCrawler": 1169176517, + "Guest_ArachniteCreeper": 1850534774, + "Guest_ChelicaranStalker": 2057291848, + "Guest_HornedMonkeySpider": 1301514577, + "Guest_GreyOgreSpider": 1533774471, + "Guest_StarburstSpider": 698029451, + "Guest_PaintedCaveMonster": 601315479, + "Guest_RubbleRouser": 220785666, + "Guest_EarthElemental": 435260049, + "Guest_SharpshardWarrior": 1403237237, + "Guest_Firevein": 1220046430, + "Guest_Blackblade": 458130537, + "Guest_VengefulFireheart": 563205004, + "Guest_FirerockStomper": 608552855, + "Guest_BlackrockGuardian": 1663799582, + "Guest_ConfusedSentry": 24655510, + "Guest_SilverSentinel": 1090673683, + "Guest_SilverServant": 84560693, + "Guest_GiantHomunculus": 456098557, + "Guest_PropertyMaster": 229101764, + "Guest_VaultProtector": 185568207, + "Guest_PlatedDefender": 79324363, + "Guest_Avalanche": 761613547, + "Guest_RockReaver": 919912933, + "Guest_Frostmantle": 856308090, + "Guest_GlacierWalker": 131215932, + "Guest_SandBehemoth": 272513357, + "Guest_RunedAnnihilator": 121339936, + "Guest_RunedDevestator": 1611071181, + "Guest_RunedGuardian": 1986312667, + "Guest_CanyonRager": 1123038266, + "Guest_RubbleReaver": 220774678, + "Guest_Boulderbone": 122279242, + "Guest_Nali": 77467516, + "Guest_Gnar": 1151164930, + "Guest_GlacialAvenger": 1181253632, + "Guest_SokkwiKeymaster": 190919624, + "Guest_SandsofTime": 34920273, + "Guest_BladeGolem": 435561523, + "Guest_FrostColossus": 1564686403, + "Guest_IceColossus": 335477257, + "Guest_PollutedEarthWalker": 86045387, + "Guest_CorruptedEarthSpirit": 1135891559, + "Guest_Stonebreaker": 1317905436, + "Guest_StoneElemental": 1715022018, + "Guest_VolcanisGolem": 1904918929, + "Guest_WaterElemental": 1717850987, + "Guest_AshenDeathMonkeySpider": 35356665, + "Guest_DeathMonkeySpider": 1525508507, + "Guest_MotherMonkeySpider": 110317392, + "Guest_DoomMonkey": 1135105500, + "Guest_DreamMorganthe": 907599965, + "Guest_DragonBeetle": 1974635734, + "Guest_SandWalker": 1530843985, + "MNT_PandaMama": 916371162, + "PP_BabyPandas": 778536285, + "PP_FrogPrince": 729975205, + "MNT_PumpkinCarriage": 183672737, + "Mount_Gobbler_B": 1193388729, + "PP_Hamster": 1578040708, + "Guest_Steeleton": 657429968, + "Guest_GoldenWyrm": 311022393, + "MNT_Roc": 1564431869, + "PP_BabyGriffin": 1913686406, + "Transformation_ShadowDPSMob": 936133896, + "Transformation_ShadowTankMob": 305660992, + "Transformation_ShadowHealMob": 356596800, + "Guest_SpiritofIgnorance": 1577360126, + "Guest_FecklessSoul": 519648315, + "Guest_BurnedOutSoul": 312181646, + "Guest_BenightedRevenant": 2131956962, + "Guest_TombLurker": 1901203489, + "Guest_DesertGolem": 543642682, + "Guest_KumoOni": 215822625, + "Guest_SpellwritStalker": 161772776, + "PP_Sun": 1723237840, + "Guest_Leadite": 4480416, + "Mount_FestiveFox": 2125832348, + "PP_FenrisWolf": 1601784680, + "PP_SchoolPiggle": 109782407, + "PP_FenrisWolf_Red": 1597992854, + "PP_FenrisWolf_Teal": 1455058454, + "PP_FenrisWolf_White": 1102186199, + "Transformation_NinjaPig_Fire": 984575055, + "Transformation_BG_RatThief_Myth": 1191155131, + "Transformation_BG_RatThief_Storm": 675891897, + "MNT_Umbrella": 955683437, + "Transformation_BG_Elf_Ice": 1209681129, + "Transformation_BG_Fairy_DarkMinion_Balance": 33521202, + "Transformation_BG_Cyclops_Death": 876023972, + "Transformation_BG_Minotuar_Fire": 1118476387, + "Transformation_BG_WolfWarrior_Storm": 2075594475, + "Transformation_BG_WolfWarrior_Balance": 746159992, + "Transformation_BG_Draconian_Myth": 903606820, + "Transformation_BG_Draconian_Life": 1501291044, + "Transformation_BG_Colossus_Life": 1320377666, + "MNT_DolphinChariot": 102982520, + "MNT_EvilWagon": 685457563, + "MNT_FlyingDutchman": 1176206544, + "PP_SeaHorse": 2024322494, + "PP_EvilTeddy": 1159020925, + "PP_ZombieParrot": 384805107, + "Transformation_BG_Ice_Colossus": 299613211, + "MNT_CarrierBat": 7323333, + "Transformation_BG_Minotaur_MythTempalte": 430330904, + "PP_FeatheredTabby": 452526748, + "Transformation_Detritus01": 1335763402, + "Guest_Metallossus": 335457082, + "MNT_SantaJaws": 464410203, + "MNT_BattleBadger": 532858222, + "Transformation_Shedder01": 2069145892, + "PP_NatureSpirit": 373176286, + "Transformation_Devourer01": 1004421540, + "Guest_TheDevourer": 1591187996, + "Guest_Treeminder": 1093207850, + "Guest_RenegadeDruid": 2087982292, + "Guest_FractalTreeminder": 927174548, + "Guest_UnsettledTreeminder": 486164163, + "Guest_DragonspyreCrusader": 247317280, + "Guest_YoungGreggor": 66068670, + "Guest_GeneralGreyflame": 499924835, + "Guest_OldGreggor": 391726170, + "Guest_PrinceViggor": 853556298, + "Guest_DragonspyreVanguard": 693851565, + "Guest_SilasConviction": 177362659, + "Guest_SilasWeariness": 893431021, + "Guest_SilasRage": 1288904439, + "Guest_SilasDoubt": 1479426285, + "Guest_Lorekeeper": 147779344, + "Guest_FelixPhotomongerIII": 68387506, + "Guest_WarHavox": 1634324022, + "Guest_Mis-assembledSkeleton": 221832082, + "Guest_TreeminderGhost": 200408510, + "Guest_ViggorsDrake": 340449521, + "Guest_BlueNinjaPig": 938539327, + "Guest_RedNinjaPig": 2097962021, + "Guest_OrangeNinjaPig": 625058258, + "Guest_PurpleNinjaPig": 445746449, + "Guest_RitualColossus": 844563319, + "Guest_TinyDragon": 1123127688, + "Guest_RitualSpider": 429827552, + "Guest_RitualDraconian": 837510372, + "Guest_CC_Druid_Warrior_C_01": 55314616, + "Guest_CC_Druid_Wizard_A_01": 1046261169, + "Guest_CC_Druid_Wizard_B_01": 1046244785, + "Guest_CC_Druid_Warrior_A_01": 56363192, + "MNT_Toboggan": 995356805, + "MNT_2P_WickerTreant-001": 2065440944, + "PP_Ratatoskr": 1003497600, + "PP_Trash": 1195047012, + "Guest_CC_Druid_Wizard_D_01": 1046343089, + "MNT_Sunflower": 721091531, + "MNT_Whoopee": 1383311238, + "MNT_Warthog": 8060761, + "PP_ShamRock": 943893325, + "PP_LeapingLeprechaun": 132882517, + "PP_LionCubs": 465759803, + "PP_Tanuki": 670387843, + "MNT_Crane": 433122675, + "MNT_Krokosphinx": 739938754, + "Transformation_BG_Fairy_Life": 1897480818, + "Transformation_LiceDeepSpawnA": 244795720, + "Piggle_Alien": 1761605655, + "PP_JeweledScarab": 620544607, + "Guest_KR_Nymph_DrkMage_D50": 1248526054, + "Guest_KR_Nymph_DrkMage_C50": 1246953190, + "Guest_KR_Nymph_DrkMage_B50": 1247477478, + "Guest_KR_Nymph_DrkMage_A50": 1245904614, + "Guest_EM_Spider_Ash_01": 185724938, + "UFO": 47349, + "PP_Kit10": 326796620, + "PP_Lumi_Tulip": 84119585, + "PP_Lumi_Fern": 117015078, + "PP_Lumi_Violet": 1468797578, + "PP_Lumi_Sunny": 1769236703, + "PP_Lumi_Daisy": 1743454175, + "MNT_CelestianMech": 1238076872, + "MNT_Brontosaurus": 402157167, + "Guest_HG_AKT_Krok_Cyber_A_Balance_25": 1367985604, + "Guest_HG_AKT_Krok_Cyber_A_Balance_50": 1368084932, + "Guest_HG_AKT_Krok_Cyber_A_Balance_75": 1367988676, + "Guest_HG_AKT_Krok_Cyber_A_Balance_100": 1351303620, + "Guest_HG_AKT_Krok_Cyber_A_Balance_130": 1351270852, + "Guest_HG_AKT_Krok_Cyber_A_Fire_25": 976558490, + "Guest_HG_AKT_Krok_Cyber_A_Fire_50": 37034397, + "Guest_HG_AKT_Krok_Cyber_A_Fire_75": 305469850, + "Guest_HG_AKT_Krok_Cyber_A_Fire_100": 573905821, + "Guest_HG_AKT_Krok_Cyber_A_Fire_130": 573905824, + "Guest_HG_AKT_Krok_Cyber_A_Ice_25": 159411377, + "Guest_HG_AKT_Krok_Cyber_A_Ice_50": 541093041, + "Guest_HG_AKT_Krok_Cyber_A_Ice_75": 146828465, + "Guest_HG_AKT_Krok_Cyber_A_Ice_100": 557870241, + "Guest_HG_AKT_Krok_Cyber_A_Ice_130": 960523425, + "Guest_HG_AKT_Krok_Cyber_A_Myth_25": 976187830, + "Guest_HG_AKT_Krok_Cyber_A_Myth_50": 36663729, + "Guest_HG_AKT_Krok_Cyber_A_Myth_75": 305099190, + "Guest_HG_AKT_Krok_Cyber_A_Myth_100": 573535153, + "Guest_HG_AKT_Krok_Cyber_A_Myth_130": 573535156, + "Guest_CL-GolemButler-R9": 780077559, + "Guest_CL-GolemDigger-Boss-R10": 562020288, + "Guest_CL-GolemDigger-R9": 789375095, + "Guest_CL-GolemDigger-Rank8MythBoss-R10": 930527857, + "Guest_CL-GolemWorker-R9-1": 1072815287, + "Guest_CL-FishbotBrown-R9-1": 2006155417, + "Guest_CL-FishbotBrown-R9-2": 395542681, + "Guest_CL-FishbotGold-Boss-R10": 611881707, + "Guest_CL-FishbotGold-R9": 705414492, + "Guest_CL-FishbotYellow-Boss-R10": 23145662, + "Guest_CL-Protector-Black-Boss-R10-2": 679228793, + "Guest_CL-Protector-Gold-R10": 1909636609, + "Guest_CL-Protector-Gold-R9-1": 1909634804, + "Guest_CL-Protector-Gold-R9-2": 1909634932, + "Guest_CL-Protector-Gold-R9-3": 1909635060, + "Guest_CL-Protector-Gold-R9-4": 1909634164, + "Guest_CL-Protector-Purple-R9-Boss": 1889837072, + "Guest_CL-Protector-Purple-R9": 81760161, + "Guest_CL-Protector-Tan-Boss-R10": 912663188, + "Guest_KR_Golem_Worker": 1784607296, + "Guest_Golem-Brass-R7-1": 718939445, + "Guest_Golem-Clockwork-R7": 1161173708, + "Guest_EM_Robot_Batbot_A_01": 1482867950, + "Guest_EM_Robot_Batbot_B_02": 945947886, + "Guest_EM_Robot_Batbot_B_01": 1482818798, + "Guest_EM_Robot_Batbot_B_03": 409076974, + "Guest_EM_Robot_Batbot_B_04": 127793938, + "Guest_EM_Robot_Batbot_B_05": 664664850, + "Guest_EM_Robot_Drone_A_02": 1215188569, + "Guest_EM_Robot_Drone_A_03": 1231965785, + "Guest_EM_Robot_Drone_A_01": 1265520217, + "Guest_EM_Robot_Drone_A_04": 1315851865, + "Guest_EM_Robot_Drone_A_05": 1332629081, + "Guest_EM_Robot_Drone_A_06": 1282297433, + "Guest_EM_Robot_Drone_A_07": 1299074649, + "Guest_EM_Robot_Drone_A_08": 1114525273, + "Guest_EM_Robot_Drone_A_09": 1131302489, + "Guest_EM_Robot_Drone_A_Boss_01": 1960661151, + "Guest_EM_Robot_Drone_A_Boss_02": 1960530079, + "Guest_EM_Robot_Drone_E_01": 1265518169, + "Guest_EM_Robot_Tank_A_01": 1314796420, + "Guest_EM_Robot_Tank_A_02": 1313223556, + "Guest_EM_Robot_Drone_C_02": 1215187545, + "Guest_EM_Robot_Drone_D_03": 1231963225, + "Guest_EM_Robot_Drone_D_01": 1265517657, + "Guest_EM_Robot_Drone_D_02": 1215186009, + "Guest_EM_Robot_Tank_B_01": 1314796468, + "Guest_EM_Robot_Drone_C_01": 1265519193, + "Guest_G14-BP-Golem_Steel_Boss": 2071105129, + "Guest_G14-BP-Golem_Steel_Puzzle": 715790979, + "Guest_Golem-Brass-Elite-L38": 1163662532, + "Guest_Golem-Brass-Elite-L56": 2057562884, + "Guest_Golem-Brass-MBBoss-L48": 1498830732, + "Guest_Golem-Brass-MBBoss-L71": 1498829576, + "Guest_Golem-Brass-MBBoss-L76": 1498828936, + "Guest_Golem-Clockwork-Elite-L54-Metal": 417151527, + "Guest_Golem-Clockwork-Elite-L37": 1961943722, + "Guest_Golem-Clockwork-Elite-L54": 1950147242, + "Guest_Golem-Clockwork-L28": 1561959116, + "Guest_Golem-Clockwork-MBBoss-L37": 973152783, + "Guest_Golem-Clockwork-MBBoss-L69": 1262559759, + "Guest_Golem-Steel-Elite-L39": 1430496717, + "Guest_Golem-Steel-MBBoss-L40": 1229578887, + "Guest_Golem-Steel-MBBoss-L43": 1229579015, + "Guest_Golem-Steel-MBBoss-L50-1": 1231762051, + "Guest_Golem-Steel-MBBoss-L50": 1229578883, + "Guest_Golem-Steel-MBBoss-LXX": 1229583927, + "Guest_Golem-Wood-Elite-L35": 904360756, + "Guest_Golem-Wood-Elite-L37": 1978102580, + "Guest_Golem-Wood-Elite-L50": 1813548236, + "Guest_Golem-Wood-MBBoss-L63": 1392041724, + "Guest_MB-Gauntlet-Golem-Clockwork": 854649045, + "Guest_Spider-Golem-MBBoss-L67": 253352706, + "Guest_Spider-Golem-MBBoss-L96": 253348994, + "Guest_WC-MAW-GasGolem-Minion": 1511013798, + "Guest_WC-MAW-GasGolemLife-Minion": 1306026584, + "Guest_Golem-Steel-L02": 1027229749, + "Guest_Golem-Clockwork-L01": 1409915596, + "Guest_Gauntlet-01-Golem-Steel-Ghost-R8": 402816318, + "Guest_Golem-Wood-L01": 156976035, + "Guest_HG-Clock-ClockworkSpanner-20": 1523370449, + "Guest_HG-Clock-ClockworkSpanner-40": 1523370455, + "Guest_HG-Clock-ClockworkSpanner-60": 1523370453, + "Guest_HG-Clock-ClockworkSpanner-80": 1523370459, + "Guest_HG-Clock-ClockworkSpanner-100": 1523354068, + "Guest_HG-Clock-ClockworkSpanner-120": 1523354004, + "Guest_AQ-Cyclops-Guard": 191361948, + "Guest_AQ_Cyclops_Guard_A_Boss_01": 114747100, + "Guest_CL-Cyclops-Death-R10": 611013866, + "Guest_Cyclops-Death-Boss-R7": 1192370725, + "Guest_Cyclops-Death-Boss-R9": 1192370717, + "Guest_Cyclops-Death-R7": 144593791, + "Guest_GH-Cyclops-Death-R6": 594236619, + "Guest_Cyclops-BlueHelmet-KTBoss-L03": 1720105277, + "Guest_Cyclops-Red-L12": 1816429840, + "Guest_MR_Cyclops02WHelmet_Model_01": 1483732416, + "Guest_Cyclops-Blue-L02": 1633021234, + "Guest_Cyclops-BlueHelmet-WCBoss-L03": 427378332, + "Guest_Cyclops-RedHelmet-WCBoss-L03": 2021269422, + "Guest_HG_Sinbad_Cyclops_25": 911979034, + "Guest_HG_Sinbad_Cyclops_50": 1856261606, + "Guest_HG_Sinbad_Cyclops_75": 861647386, + "Guest_HG_Sinbad_Cyclops_100": 1789152678, + "Guest_HG_Sinbad_Cyclops_130": 178539942, + "Guest_HG_Sinbad_IronSultan_25": 930031152, + "Guest_HG_Sinbad_IronSultan_50": 930051504, + "Guest_HG_Sinbad_IronSultan_75": 930030768, + "Guest_HG_Sinbad_IronSultan_100": 927954864, + "Guest_HG_Sinbad_IronSultan_130": 927942576, + "MNT_SweetRide": 1643297840, + "PP_FrilledDino": 1395342809, + "PP_Celestian": 95679303, + "PP_Sun_Angry": 1955190071, + "PP_Marshmallow": 1220667954, + "MNT_Umbrella_B": 923364822, + "MNT_Tamer": 1050737194, + "PP_BumbleBee_B": 858653433, + "MNT_PunkFlamingo": 1634690818, + "MNT_2P_WoolyRhino": 1395943031, + "PP_Retriever": 72842604, + "PP_Piggle_Caveman": 181356174, + "PP_DecennialDragon": 1396523337, + "MNT_Tiger_Rainbow": 515535412, + "MNT_CarrierGhosts": 1833039309, + "MNT_Sled": 617654308, + "Transformation_BG_RatThief_Death": 30691641, + "Transformation_BG_Elf_Storm": 44352983, + "Transformation_BG_WolfWarrior_Ice": 986304351, + "MNT_CarriorGhost_B": 1768732109, + "MNT_CarriorGhost_C": 1766634957, + "Transformation_BG_Colossus_Fire": 1318803522, + "Transformation_BG_Krok_Balance": 140952965, + "Guest_KM_Gobbler_Skinny_A_11": 773648065, + "Guest_KM_Robot_Candy_A_01": 480414124, + "Guest_KM_Robot_Candy_A_02": 530745772, + "Guest_KM_Robot_Candy_A_03": 513968556, + "Guest_KM_Robot_Candy_A_04": 430082476, + "Guest_KM_Robot_Candy_A_05": 413305260, + "Guest_KM_Gummy_Bear_A_01": 1940905059, + "Guest_KM_Gummy_Bear_D_01": 1940905011, + "Guest_KM_Gummy_Bear_E_01": 1940904995, + "Guest_KM_Gummy_Bear_A_02": 1941429347, + "Guest_KM_Gummy_Bear_D_02": 1941429299, + "Guest_KM_Gummy_Bear_E_02": 1941429283, + "Guest_KM_Gummy_Bear_B_01": 1940905043, + "Guest_KM_Gummy_Bear_B_02": 1941429331, + "Guest_KM_Gummy_Bear_B_03": 1941953619, + "Guest_KM_Gummy_BearHat_A_01": 853226448, + "Guest_KM_Gummy_BearHat_A_02": 853226460, + "Guest_KM_Gummy_Bunny_A_01": 324805042, + "Guest_KM_Gummy_Bunny_C_01": 324806066, + "Guest_KM_Gummy_Bunny_D_01": 324807602, + "Guest_KM_Gummy_Bunny_E_01": 324807090, + "Guest_KM_Gummy_Bunny_F_01": 324808626, + "Guest_KM_Gummy_BunnyUber_A_01": 525565930, + "Guest_KM_Gummy_Worm_A_01": 231044195, + "Guest_KM_Gummy_Worm_B_01": 231044179, + "Guest_KM_Gummy_Worm_C_01": 231044163, + "Guest_KM_Gummy_Worm_A_02": 232617059, + "Guest_KM_Gummy_Worm_B_02": 232617043, + "Guest_KM_Gummy_Worm_C_02": 232617027, + "Guest_KM_Gummy_Bear_F_01": 1940904979, + "Guest_KM_Gummy_Bear_F_02": 1941429267, + "Guest_KM_Gummy_Bunny_C_02": 274474418, + "Guest_KM_Robot_Candy_A_06": 463636908, + "Guest_KM_Alphoi_DarkF_A_01": 475441543, + "Guest_KM_Gobbler_Skinny_A_01": 773648069, + "Guest_KM_Gobbler_Skinny_A_02": 773648197, + "Guest_KM_Gobbler_Skinny_A_03": 773648325, + "Guest_KM_Gobbler_SkinnyF_A_01": 254411012, + "Guest_KM_Gobbler_Skinny_A_04": 773647429, + "Guest_KM_Gobbler_Skinny_A_05": 773647557, + "Guest_KM_Gobbler_Skinny_A_06": 773647685, + "Guest_KM_Gobbler_SkinnyF_A_02": 254423300, + "Guest_KM_Gobbler_Skinny_A_07": 773647813, + "Guest_KM_Gobbler_Skinny_A_08": 773646917, + "Guest_KM_Gobbler_Skinny_A_09": 773647045, + "Guest_KM_Gobbler_SkinnyF_A_03": 254419204, + "Guest_KM_Gobbler_Fat_A_01": 1440595742, + "Guest_KM_Gobbler_Fruit_B_01": 1236446660, + "Guest_KM_Gobbler_Fruit_A_01": 1235922372, + "Guest_KM_Gobbler_Guard_B_01": 1435667582, + "Guest_KM_Gobbler_Skinny_A_10": 773647937, + "Transformation_PlayerBabyCarrot": 1580787628, + "Transformation_PlayerDeadBeet": 1992261692, + "Transformation_PlayerDisparagus": 373797484, + "Transformation_PlayerSnowPeas": 634199102, + "PP_Snowflake": 2036143125, + "PP_GummyBear_Myth": 117787890, + "PP_GummyBear_Death": 236577760, + "PP_GummyBear_Balance": 2100524337, + "PP_GummyBear_Life": 118020336, + "PP_GummyBear_Fire": 117995748, + "PP_GummyBear_Storm": 247437198, + "PP_GummyBear_Ice": 122536570, + "MNT_SnowOwl": 1578473542, + "Guest_KM_Gummy_Bear_Uber_A_01": 1856208859, + "Guest_KM_Gummy_Bear_Uber_A_02": 1856196571, + "MNT_ChocolateMoose": 567538552, + "MNT_Ram_Candied": 1913603720, + "Guest_KM_Spider_Mage_A_01": 1529720120, + "Guest_KM_Spider_Mage_B_01": 1529719608, + "Guest_KM_Spider_Mage_C_01": 1529719096, + "Guest_KM_Spider_Mage_D_01": 1529718584, + "Guest_KM_Spider_Mage_E_01": 1529718072, + "PP_SpriteDark_Balance": 914900728, + "MNT_Tricycle": 991465753, + "Guest_Tri-Gauntlet-Protector-Gold": 2029952053, + "Guest_Tri-Gauntlet-FishbotGold": 130267882, + "Guest_HG-Clock-Clockworker-20": 281216243, + "Guest_HG-Clock-Clockworker-40": 281217011, + "Guest_HG-Clock-Clockworker-60": 281216755, + "Guest_HG-Clock-Clockworker-80": 281215475, + "Guest_HG-Clock-Clockworker-100": 283313523, + "Guest_HG-Clock-Clockworker-120": 283321715, + "Guest_HG-Clock-Lugs-20": 1452756928, + "Guest_HG-Clock-Lugs-40": 1452756960, + "Guest_HG-Clock-Lugs-60": 1452756992, + "Guest_HG-Clock-Lugs-80": 1452756768, + "Guest_HG-Clock-Lugs-100": 1452494736, + "Guest_HG-Clock-Lugs-120": 1452493712, + "Guest_HG-Clock-Lucia-20": 1041451626, + "Guest_HG-Clock-Lucia-40": 1041450602, + "Guest_HG-Clock-Lucia-60": 1041449578, + "Guest_HG-Clock-Lucia-80": 1041456746, + "Guest_HG-Clock-Lucia-100": 1049840746, + "Guest_HG-Clock-Lucia-120": 1049873514, + "Guest_KM_Gummy_Worm_A_03": 232092771, + "MNT_Scooter_E": 200254340, + "PP_WolfWarrior_Balance": 991302673, + "PP_PetGift": 1816280689, + "PP_RatThief": 1390866051, + "Guest_PL_Titan_Small_A": 2015819364, + "Guest_PL_Titan_Large_B": 699791264, + "Guest_PL_Titan_Medium_A": 326730424, + "PP_Draconian": 1631557208, + "MNT_Pantera_Astral": 106092538, + "PP_YearOx": 105653084, + "PP_WolfWarrior_Ice": 1043644935, + "PP_SpriteDark": 2031730054, + "PP_Brudel": 1355697143, + "MNT_Astronomers": 742732792, + "MNT_CouchPotato": 418050932, + "MNT_Flowerfarthing": 1396771051, + "MNT_Astronomers_Blue": 236532779, + "MNT_Astronomers_Rainbow": 4428274, + "PP_Astronomer": 782095961, + "Guest_KM_Gummy_Bunny_B_01": 324806578, + "Guest_KM_DeadBeets_A_01": 1396016635, + "MNT_GummyBunny": 775900704, + "MNT_GummyBunny_A": 775834080, + "MNT_GummyBunny_B": 775836128, + "MNT_GummyBunny_C": 775838176, + "Transformation_BG_Minotaur_Life": 1445109091, + "MNT_Armadillo": 825635826, + "PP_SootGremlin": 768969093, + "PP_RoadRunner": 2057802060, + "MNT_TinyTrolly": 160881792, + "PP_Frog_B": 1530124761, + "MNT_FjordDragon": 129204340, + "Transformation_BG_NinjaPig_Myth": 422914079, + "PP_CorgiPup": 1638656105, + "MNT_Skateboard": 728018224, + "PP_Krokomummy": 326396577, + "MNT_Vroom": 1736383110, + "MNT_PlayerWings_AtralRaven": 1514774167, + "PP_Blimp": 690882397, + "Guest_GH_WoodenSkeletonKey_Boar_Boss_Grey_01": 678055851, + "Guest_GH_StoneSkeletonKey_Boar_Boss_Grey_01": 571670691, + "Guest_GH_GoldSkeletonKey_Boar_Boss_Grey_01": 961728819, + "MNT_Cloud_Promo_AW_01": 2032670992, + "Guest_EM_Hornet_Burner_A_01": 1881854632, + "Guest_EM_Hornet_Burner_A_02": 1881854636, + "Guest_EM_Hornet_Zapper_A_01": 2058539689, + "Guest_EM_Hornet_Zapper_A_02": 2058539685, + "Guest_EM_Ant_Giant_D_01": 379386121, + "Guest_EM_Ant_Giant_A_02": 1768146677, + "Guest_EM_Ant_Giant_A_01": 1768097525, + "Guest_EM_Ant_Giant_B_01": 379386122, + "Guest_KR_Moth_Priest_G_Achera": 381233569, + "Guest_KR_BeeMonsterF_A": 135146211, + "Guest_KR_BeeMonsterF_A_Weak": 1824123847, + "Guest_KR_Bee_Warrior_A": 1569202664, + "Guest_KR_Bee_Warrior_B": 1569204200, + "Guest_KR_Bee_Warrior_C_BossDrones": 1217189631, + "Guest_KR_Bee_Warrior_D": 1569205224, + "Guest_KR_Bee_Warrior_E": 1569204712, + "Guest_KR_Bee_Warrior_G": 1569205736, + "Guest_KR_Bee_Warrior_G_BossFight": 1055035476, + "Guest_KR_Bee_Warrior_H": 1569207272, + "Guest_KR_Bee_Warrior_I": 1569206760, + "Guest_KR_Bee_Warrior_L": 1569209320, + "Guest_KR_Bee_Warrior_M": 1569208808, + "Guest_KR_DragonBeetle_Monster_A": 1777853782, + "Guest_KR_Hornet_Drone_A": 1161590757, + "Guest_KR_Hornet_Drone_B": 1161607141, + "Guest_KR_Hornet_Drone_C": 1161623525, + "Guest_KR_Hornet_Drone_D": 1161639909, + "Guest_KR_Hornet_Drone_E": 1161656293, + "Guest_KR_Lice_DeepSpawn_A": 761604959, + "Guest_KR_Mantis_HunterF_A": 820917199, + "Guest_KR_Mantis_HunterF_B": 871248847, + "Guest_KR_Mantis_HunterF_C": 854471631, + "Guest_KR_Mantis_HunterF_D": 904803279, + "Guest_KR_Mantis_HunterF_F": 938357711, + "Guest_KR_Mantis_HunterF_F_Driftwood": 2053608437, + "Guest_KR_Mantis_HunterF_G": 921580495, + "Guest_KR_Mantis_HunterF_H": 971912143, + "Guest_KR_Mantis_HunterF_I": 955134927, + "Guest_KR_Mantis_HunterF_I_Zuzka": 935478878, + "Guest_KR_Mantis_HunterF_J": 1005466575, + "Guest_KR_Mantis_HunterF_J_Zelda": 886910558, + "Guest_KR_Mantis_HunterF_K": 988689359, + "Guest_KR_Mantis_HunterF_K_LongShd": 1767574336, + "Guest_KR_Mantis_HunterF_L": 1039021007, + "Guest_KR_Mantis_HunterF_M": 1022243791, + "Guest_KR_Mantis_HunterF_P_Bossfight": 1731428987, + "Guest_KR_Mantis_HunterF_Q": 552481743, + "Guest_KR_Mantis_HunterF_R": 602813391, + "Guest_KR_Mantis_HunterF_S": 586036175, + "Guest_KR_Mantis_HunterF_SecondColumnCpt_A": 1354033994, + "Guest_KR_Mantis_HunterF_T": 636367823, + "Guest_KR_Mantis_HunterF_Tribute": 1946371041, + "Guest_KR_Mantis_HunterF_U": 619590607, + "Guest_KR_Mantis_HunterF_V": 669922255, + "Guest_KR_Mantis_HunterF_W": 653145039, + "Guest_KR_Mantis_HunterF_Y": 686699471, + "Guest_KR_Mantis_HunterF_Z_Officer": 206016474, + "Guest_KR_Mantis_ProphetF_B": 1791139097, + "Guest_KR_Mantis_ProphetF_C": 1254268185, + "Guest_KR_Milipede_Warrior_A": 410726278, + "Guest_KR_Milipede_Warrior_B": 410726282, + "Guest_KR_Milipede_Warrior_C": 410726286, + "Guest_KR_Milipede_Warrior_D": 410726290, + "Guest_KR_Milipede_Warrior_H": 410726306, + "Guest_KR_Milipede_Warrior_J": 410726314, + "Guest_KR_Milipede_Warrior_K": 410726318, + "Guest_KR_Moth_Priest_A": 1421532604, + "Guest_KR_Moth_Priest_B": 1421532092, + "Guest_KR_Moth_Priest_C": 1421531580, + "Guest_KR_Moth_Priest_D": 1421531068, + "Guest_KR_Moth_Priest_D_Drepa": 1483393420, + "Guest_KR_Moth_Priest_E": 1421530556, + "Guest_KR_Moth_Priest_F": 1421530044, + "Guest_KR_Mantis_HunterF_Z": 737031119, + "Guest_KR_Roach_AntLion_A": 1860517987, + "Guest_KR_Roach_AntLion_B_Bossfight": 993284625, + "Guest_KR_Roach_AntLion_C": 1861566563, + "Guest_KR_Roach_Cook_A": 259847495, + "Guest_KR_Roach_Glutton_B": 249524334, + "Guest_KR_Roach_WaterBug_A": 1795473599, + "Guest_KR_Roach_WaterBug_B": 1745141951, + "Guest_MR_Beetle_Scarab_A_01": 1789741503, + "Guest_MR_Beetle_Scarab_A_02": 1789741491, + "Guest_MR_Beetle_Scarab_B_01": 1790265791, + "Guest_ZF-Goliath-R10-Boss-01": 7034074, + "Guest_ZF-Goliath-R10-Boss-02": 7034202, + "Guest_ZF-Goliath-R10-Boss-03": 7034330, + "Guest_ZF-Goliath-R10-Boss": 1603576807, + "Guest_ZF-Goliath-R11-Boss-01": 2140449574, + "Guest_ZF-Goliath-R11-Boss-02": 2140449446, + "Guest_ZF-Goliath-R11-Boss-03": 2140449318, + "Guest_ME1_Ant_Aunt_A": 707251855, + "Guest_ME1_Ant_Aunt_B": 1440231794, + "Guest_CC_Fly_Worker_A_01": 1497784524, + "Guest_CC_Roach_Worker_A_01": 1026321602, + "Guest_CC_Roach_Lieutenant_A_01": 1081690299, + "Guest_CC_Roach_Lieutenant_B_01": 1081690295, + "Guest_CC_Roach_Don_A_01": 547836893, + "Guest_CC_Roach_BBug_A_01": 1021150157, + "Guest_CC_Roach_RoachSteady_A_01": 859409247, + "Guest_Draconian-Caster-Yellow-Boss-R8": 1016221419, + "Guest_Draconian-Zombie-R8-2-1": 1226055265, + "Guest_Draconian-Zombie-R8-2": 1226115297, + "Guest_Draconian-Caster-Green-R7": 2143342719, + "Guest_Draconian-Warrior-Gold-Boss-R8": 1044388248, + "Guest_Draconian-Caster-Gray-R7": 95878769, + "Guest_DS-Boss-MAW": 1676071241, + "Guest_Draconian-Zombie-R8-1": 1226115309, + "Guest_Draconian-Warrior-Purple-Boss-R7": 601813964, + "Guest_Draconian-Caster-Tan-Boss-R7": 1973339532, + "Guest_Draconian-Caster-Blue-R6": 1684210173, + "Guest_Draconian-Caster-Yellow-R8": 2129956646, + "Guest_Draconian-Warrior-Red-R7": 521861944, + "Guest_Draconian-Warrior-Tan-R6": 1726416112, + "Guest_Draconian-Warrior-Purple-R8": 1896270341, + "Guest_Draconian-Caster-Blue-Boss-R7": 401581134, + "Guest_Draconian-Zombie-R8": 384497496, + "Guest_GH2-Draconian-HENCH-R10": 1149202878, + "Guest_GH2-Draconian-BOSS-R10": 2114378473, + "Guest_G14-DM-Draconian_Boss": 490246211, + "Guest_G14-DM-Draconian_Storm": 2035239226, + "Guest_G14-DM-Draconian_Ice": 782200563, + "Guest_G14-DM-Draconian_Malistaire_M": 1904691727, + "Guest_G14-DM-Draconian_Malistaire_S": 1904685583, + "Guest_G14-DM-Draconian_Malistaire_D": 1904700943, + "Guest_G14-DM-Draconian_Malistaire": 1904736751, + "Guest_G14-DM-Draconian_Malistaire_B": 1904702991, + "Guest_G14-DM-Draconian_Malistaire_I": 1904695823, + "Guest_G14-DM-Draconian_Malistaire_L": 1904692751, + "Guest_G14-DM-Draconian_Malistaire_F": 1904698895, + "Guest_Draconian-PW-Gauntlet-Boss": 493080513, + "Guest_CC_Draconian_A_01": 551348115, + "Guest_AZ-Parasaur-Undead-E": 2041242846, + "Guest_AZ-Parasaur-drkPriestF-F": 898239615, + "Guest_EM_Parasaur_DrkPriestF_A_01": 1007099606, + "Guest_EM_Parasaur_DrkPriestF_A_02": 1007099605, + "Guest_AZ-Parasaur-drkPriestF-D": 898501759, + "Guest_AZ-Parasaur-drkPriestF-E": 898370687, + "Guest_AZ-Parasaur-drkPriestF-A": 897846399, + "Guest_AZ-Parasaur-Undead-B": 1716853538, + "Guest_AZ-Parasaur-Undead-A": 106240802, + "Guest_AZ-Parasaur-Undead-G": 967501022, + "Guest_AZ-Parasaur-PriestF-D": 1177445525, + "Guest_AZ-Parasaur-Undead-C": 1179982626, + "Guest_AZ-Parasaur-drkPriestF-C": 897584255, + "Guest_AZ-Parasaur-Undead-SkurkisMinion": 1414766977, + "Guest_AZ-Parasaur-drkPriestF-B": 897715327, + "Guest_AZ-Parasaur-drkPriestF-B-Script": 1414847875, + "Guest_AZ_Parasaur_Priest_A_Boss_01": 890025421, + "Guest_AZ-Parasaur-Undead-D": 1504371934, + "Guest_AZ-Pteranodon-Knight-D": 1127364049, + "Guest_AZ-StoneSkeletonKey-Ixcax-Cursedwing": 699239601, + "Guest_AZ-Pteranodon-Knight-E": 1127363921, + "Guest_AZ-Pteranodon-Knight-F": 1127363793, + "Guest_AZ-Pteranodon-Knight-A-PageEvent": 942589002, + "Guest_AZ-StoneSkeletonKey-Minion-Death": 311645584, + "Guest_AZ-Pteranodon-Knight-A": 1127364433, + "Guest_AZ-Raptor-Wraith-A": 585729247, + "Guest_AZ-Raptor-Undead-D": 893623689, + "Guest_G14-HS-Ifzt": 1914694612, + "Guest_AZ-Raptor-Warrior-A": 855749884, + "Guest_AZ-Raptor-Undead-C": 897293705, + "Guest_AZ-Raptor-Undead-B": 896769417, + "Guest_AZ-Raptor-Undead-F": 894672265, + "Guest_AZ-Raptor-Warrior-F": 872527100, + "Guest_AZ-Raptor-Warrior-H": 973190396, + "Guest_AZ-Tritops-Warrior-I": 1942669769, + "Guest_AZ-Tritops-Undead-H": 1215305911, + "Guest_AZ-Tritops-Undead-E": 1164974263, + "Guest_AZ-Tritops-SpkWarrior-A": 860850257, + "Guest_AZ-Tritops-SpkWarrior-B": 860862545, + "Guest_AZ-Tritops-Undead-F": 1181751479, + "Guest_AZ-Tritops-Warrior-K": 868927945, + "Guest_AZ-Tritops-Undead-G": 1198528695, + "Guest_AZ-Tritops-Mummy-A": 1912444877, + "Guest_AZ-Tritops-Warrior-G": 1278555704, + "Guest_AZ-Tritops-Undead-D": 1148197047, + "Guest_AZ-Tritops-Undead-A": 1097865399, + "Guest_AZ-Tritops-SpkChief-B": 2096319577, + "Guest_AZ-Tritops-Mummy-B": 1910872013, + "Guest_AZ-Tritops-Warrior-H": 1405798857, + "Guest_AZ-Dino-Undead-A": 508678670, + "Guest_AZ-Dino-Undead-B": 508679182, + "Guest_AZ-Dino-Undead-D": 508680206, + "Guest_KR_Dino_Undead_A": 1638800628, + "Guest_KR_Dino_Undead_Minion_A": 892450235, + "MNT_HayRideTruck": 75377404, + "MNT_ShadowSpiderForm": 1439860426, + "Transformation_BG_Draconian_Death": 794598804, + "PP_BabyOrca": 1056061090, + "Transformation_BG_Cyclops_Fire": 638854828, + "Transformation_BG_Fairy_Ice": 874078461, + "PP_SpriteLife": 1824998010, + "PP_Raccoon": 1107326808, + "PP_FireKitten": 593048189, + "MNT_SkeletalDuck": 1306273036, + "PP_VampireSquid": 431023109, + "PP_CottonCandy": 891201813, + "PP_ThreeHeadGoat": 1282096939, + "PP_EyeBot": 260189248, + "MNT_DeathBoat": 1444454568, + "MNT_Lemuria": 908974762, + "MNT_DeathBoat_B": 1444456538, + "MNT_DeathBoat_C": 1444456474, + "MNT_Spooky3": 1667775622, + "MNT_PresentBox": 122082000, + "MNT_Orca": 1726961653, + "Guest_LM_Golem_Steel_A_01": 19551853, + "Guest_LM_Golem_Steel_A_02": 36329069, + "Guest_LM_EyeBot_A_01_Death": 380508535, + "Guest_LM_EyeBot_A_01_Myth": 167840640, + "PP_ThreeHeadGoat_B": 1209286443, + "PP_ThreeHeadGoat_C": 1211383595, + "Guest_KR_Eel_Whirligig_A": 1062268734, + "Guest_KR_Goliath_Behemoth_A": 1231139987, + "Guest_KR_Goliath_Behemoth_C": 1231139995, + "Guest_KR_Goliath_Behemoth_D": 1231139975, + "Guest_KR_Goliath_Behemoth_E": 1231139971, + "Guest_KR_Goliath_Behemoth_H": 1231140023, + "Guest_KR_Goliath_Crusher_C": 1651720060, + "Guest_KR_Goliath_Crusher_D": 2106376324, + "Guest_KR_Goliath_Crusher_F": 1032634500, + "Guest_KR_Goliath_Crusher_G": 495763588, + "Guest_KR_Goliath_Crusher_K": 1651720059, + "Guest_AZ-Goliath-Crusher-A": 1874784966, + "Guest_AZ-Goliath-Crusher-B": 264172230, + "Guest_AZ-Goliath-Crusher-C": 801043142, + "Guest_AZ-Goliath-Crusher-D": 809569594, + "Guest_AZ-Goliath-Crusher-E": 272698682, + "Guest_HG_AKT_Butterfly_Time_A_25": 1788523059, + "Guest_HG_AKT_Butterfly_Time_A_50": 1130017331, + "Guest_HG_AKT_Butterfly_Time_A_75": 1809494579, + "Guest_HG_AKT_Butterfly_Time_A_100": 1113240099, + "Guest_HG_AKT_Butterfly_Time_A_130": 1515893283, + "MNT_DeathBoat_D": 1444456922, + "Guest_KR_RhinoBeetle_Sun_A_Bossfight": 47895417, + "Guest_KR_RhinoBeetle_Star_A": 1947510103, + "Guest_KR_RhinoBeetle_Moon_A": 1751275863, + "Guest_ME1_Clockwork_Marine_A": 1481452452, + "Guest_ME1_Clockwork_Marine_B": 1481452068, + "Guest_CC_GoldSkeletonKey_Lice_DeepSpawn_B": 1306132994, + "Guest_KR_DamdinBazar_A_Bossfight": 1333596311, + "Guest_DS-Minion-MAW2": 356796677, + "Guest_KH-Wyrmling-1": 116330513, + "Guest_KH-Wyrmling-20": 183439385, + "Guest_KH-Wyrmling-40": 317657113, + "Guest_KH-Wyrmling-60": 451874841, + "Guest_KH-Wyrmling-80": 586092569, + "Guest_PL_Polar_Bear_Solider_C": 1785662565, + "Guest_Skeleton-Silver-WCBoss-L01": 17766963, + "Guest_Banshee-Red-Elite-L24_B": 1902069117, + "Transformation_BG_WolfWarrior_Myth": 339098032, + "Transformation_BG_RatThief_Balance": 881728218, + "Transformation_BG_Colossus_Storm": 593527492, + "Transformation_BG_Elf_Life": 347405087, + "Transformation_BG_Minotaur_Ice": 1197752291, + "MNT_TRex_B": 660285500, + "PP_SpriteDark_Ice": 2036248504, + "MNT_RollingBall": 1658139390, + "Guest_LM_TRex_Base_A_03": 1378630657, + "Guest_LM_TRex_Base_A_04": 1378745345, + "Guest_LM_TRex_Base_A_05": 1378728961, + "Guest_LM_TRex_Base_A_01": 1378663425, + "Guest_LM_TRex_Base_A_02": 1378647041, + "Guest_LM_TRex_Cyborg_A_01": 151609741, + "Guest_LM_TRex_Cyborg_A_02": 168386957, + "Guest_LM_TRex_Cyborg_A_03": 185164173, + "Guest_LM_TRex_Cyborg_B_01": 151611277, + "Guest_LM_TRex_Cyborg_D_01": 151612301, + "Guest_LM_TRex_Cyborg_E_01": 151611789, + "Guest_LM_TRex_Cyborg_C_01": 151610765, + "Guest_LM_Draconian_Base_A_01": 1607373112, + "Guest_LM_EyeBot_B_01": 1085543056, + "Guest_LM_Drone_Eye_C_01": 916954037, + "Guest_LM_Drone_Eye_D_01": 1230529608, + "Guest_LM_Drone_Eye_D_02": 1230545992, + "Guest_LM_Drone_Eye_D_04": 1230578760, + "Guest_LM_Drone_Eye_D_03": 1230562376, + "Guest_LM_Drone_Eye_A_01": 916954038, + "Guest_LM_Drone_Eye_A_02": 916937654, + "Guest_LM_Drone_Eye_B_01": 1230529611, + "Guest_LM_Drone_Eye_D_05": 1230595144, + "Guest_LM_Drone_Eye_D_07": 1230627912, + "Guest_LM_Drone_Eye_D_08": 1230644296, + "Guest_LM_Drone_Eye_A_03": 916921270, + "Guest_LM_Drone_Eye_A_04": 916904886, + "Guest_LM_Drone_Eye_C_02": 916937653, + "Guest_LM_EyeBot_B_02": 1061940593, + "Guest_LM_EyeBot_B_03": 1085543055, + "Guest_LM_EyeBot_B_04": 1061940594, + "Guest_LM_Drone_Eye_C_03": 916921269, + "Guest_LM_Robot_Kit10_A_01": 199936400, + "Guest_LM_Colossus_Mander_A_01": 2107529026, + "Guest_LM_Robot_Future_A_01": 998840846, + "Guest_LM_Robot_FutureBIG_A_01": 340408568, + "Guest_LM_Robot_FutureBIG_A_02": 340396280, + "Guest_LM_Robot_FutureBIG_A_03": 340400376, + "Guest_LM_Robot_OldOne_A_01": 779070973, + "Guest_LM_Robot_OldOne_A_02": 1315941885, + "Guest_LM_Millipede_Centi_A_01": 168575797, + "Guest_LM_Millipede_Centi_A_03": 168583989, + "Guest_LM_Millipede_Centi_A_02": 168588085, + "Guest_LM_Millipede_Centi_A_04": 168563509, + "Guest_LM_Moth_Sorcerer_A_01": 228191136, + "Guest_LM_Boar_Barbarian_A_01": 1238634912, + "Guest_LM_Boar_Barbarian_A_02": 1238634528, + "Guest_LM_Boar_Barbarian_A_03": 1238634656, + "Guest_LM_Boar_Barbarian_A_04": 1238635296, + "Guest_LM_Boar_Barbarian_A_05": 1238635424, + "Guest_LM_Boar_Chief_A_01": 357051311, + "Guest_LM_Fungus_Humango_A_01": 1398460044, + "Guest_LM_Fungus_Humango_A_02": 1398460172, + "Guest_LM_Treant_Base_A_01": 1658172241, + "Guest_LM_GiantTree_EvilRoots_A_01": 282225934, + "Guest_LM_PA_GreenMan_A_01": 67705044, + "Guest_LM_Fungus_Humango_B_01": 1348128396, + "Guest_LM_Fungus_Humango_A_03": 1398460300, + "Guest_LM_Fungus_Man_C_01": 1648824156, + "Guest_LM_Fungus_Man_C_02": 1650397020, + "Guest_LM_Rhino_Zombie_A_01": 248513993, + "Guest_LM_Malughast_Base_01": 883820436, + "Guest_LM_Malughast_Base_02": 1420691348, + "Guest_LM_Lemur_HierarchF_H_04": 231562115, + "Guest_LM_Malughast_Base_03": 1957562260, + "Guest_LM_Malughast_Base_05": 1263663212, + "Guest_LM_Malughast_Base_06": 726792300, + "Guest_LM_Malughast_Base_08": 346949523, + "Guest_LM_Malughast_Base_09": 883820435, + "Guest_LM_Malughast_Base_04": 1800534124, + "Guest_LM_Minotaur_Skeleton_A_01": 1865122824, + "Guest_LM_Lemur_Wild_B_03": 1783764037, + "Guest_LM_Lemur_HierarchF_H_01": 231541635, + "Guest_LM_Lemur_HierarchF_H_02": 231553923, + "Guest_LM_Mander_Warrior_A_01": 1651245419, + "Guest_LM_Mander_Warrior_A_02": 1651245291, + "Guest_LM_Mander_Warrior_B_01": 1634468203, + "Guest_LM_Mander_Warrior_B_02": 1634468075, + "Guest_LM_Mander_Warrior_A_03": 1651245163, + "Guest_LM_Mander_Warrior_B_03": 1634467947, + "Guest_LM_Mander_Warrior_A_06": 1651245803, + "Guest_LM_Mander_Warrior_A_05": 1651245931, + "Guest_LM_Mander_Mummy_B_01": 1844111521, + "Guest_LM_Mander_Hero_B_01": 865113284, + "MNT_HolidayHippogriff": 938892112, + "MNT_Sabertooth_Ice": 1870381696, + "PP_FenrisWolf_Bantam": 776647759, + "MNT_JetPack": 1986300552, + "MNT_Scooter_F": 1005560708, + "PP_FossaKitten_A": 431748212, + "PP_Elfvis": 147991405, + "Guest_LM_Chicken_Hero_A_01": 1308728300, + "Guest_LM_Horse_Explorer_A_01": 434405482, + "Guest_LM_Duck_HeroineF_A_01": 133199186, + "Guest_LM_Crane_Hero_A_01": 204272548, + "Guest_LM_Deer_HeroineF_A_01": 1800374959, + "Guest_LM_Deer_Hero_A_01": 223109503, + "Guest_LM_Dog_Hero_A_01": 1434615064, + "PP_YearTiger": 777048708, + "MNT_Barrel": 3576425, + "MNT_Krampus": 404117611, + "PP_ChineseTigerCub": 1256032005, + "PP_Lemur": 565774155, + "PP_Robot": 1089075331, + "PP_Capybara": 451970762, + "Guest_LM_Ghoul_Base_A_01": 1822415945, + "Guest_LM_Lemur_HierarchF_H_03": 231549827, + "Guest_LM_Ghoul_Base_A_02": 1820843081, + "Guest_LM_Ghoul_Base_A_03": 1821367369, + "MNT_SpringSoF2022": 1685679511, + "MNT_WarElephant": 875015497, + "PP_Strix": 514230046, + "MNT_Beachball": 791896033, + "MNT_Blank": 633398131, + "MNT_CardboardFlier": 1646636689, + "MNT_LochMonster": 879660722, + "Transformation_BG_Krok_Death": 1395067182, + "Transformation_BG_Draconian_Fire": 1551581732, + "PP_Scotty": 1708580475, + "Guest_KR_Mice_Knight_A": 480101508, + "PP_Peacock": 1178721112, + "MNT_PoodleMoth": 975420235, + "PP_Hummingbird": 624666906, + "PP_WolfWarrior_Myth": 470737416, + "Guest_HG_UFD_Ghost_QueenF_A_100": 795323059, + "Guest_HG_UFD_Ghost_QueenF_A_50": 728230579, + "Guest_HG_UFD_Pirate_UndeadHighland_A_Balance_150": 201145133, + "Guest_HG_UFD_Pirate_UndeadHighland_A_Balance_100": 201144941, + "Guest_HG_UFD_Pirate_UndeadHighland_A_Balance_50": 201177701, + "Guest_HG_UFD_Pirate_UndeadHighland_A_Star_150": 1329885920, + "Guest_HG_UFD_Pirate_UndeadHighland_A_Star_100": 1304720096, + "Guest_HG_UFD_Pirate_UndeadHighland_A_Star_50": 1305768671, + "Guest_HG_UFD_Pirate_UndeadHighland_A_Shadow_150": 1263689971, + "Guest_HG_UFD_Pirate_UndeadHighland_A_Shadow_100": 1263689977, + "Guest_HG_UFD_Pirate_UndeadHighland_A_Shadow_50": 189949177, + "Guest_HG_UFD_Kelpie_Warrior_A_150": 54296095, + "Guest_HG_UFD_Kelpie_Warrior_A_100": 725384735, + "Guest_HG_UFD_Kelpie_Warrior_A_50": 708607503, + "Guest_HG_UFD_Pirate_UndeadHighland_B_150": 1099317831, + "Guest_HG_UFD_Pirate_UndeadHighland_B_100": 25576008, + "Guest_HG_UFD_Pirate_UndeadHighland_B_50": 159793864, + "Guest_HG_UFD_Ghost_QueenF_A_150": 795716275, + "PP_SpiderMinion": 557357331, + "MNT_Vines_Rainbow": 1587180338, + "MNT_YoungDrake": 1279496198, + "PP_Pet_Coconut": 444388490, + "DragonKI": 1490194214, + "PP_Sharkfish": 601628284, + "PP_MimicCake": 48071878, + "Guest_AQ-Bronze-Eagle": 375279744, + "Guest_Spider-Brown-L26": 2128680185, + "Guest_KR_Spider_Giant_D": 744401035, + "Guest_Wizard-Female-Band-Blue-R8": 1447486557, + "Guest_CC_Human_DSCrusaderF_A_01": 726538068, + "Guest_WC_Scarecrow_A_01": 867491011, + "Guest_WC_Banshee_A_01": 1433786463, + "Guest_WC_LostSoul_A_01": 796936146, + "PP_Fairy_Myth": 1117624344, + "PP_SpriteDark_Myth": 1884257976, + "BG_CyclopsLife_A": 944091673, + "Transformation_BG_NinjaPig_Storm": 2005137181, + "Transformation_BG_Fairy_Myth": 1880704188, + "Transformation_BG_Cyclops_Life": 638936708, + "Guest_AQ-Eagle-Praetorian": 1988013806, + "Guest_KM_BabyCarrot_A_01": 766239512, + "Guest_G14-DM-Gargoyle": 282898047, + "Guest_MR_Durvish_Sergeant_A_Boss_01": 1532609325, + "Guest_Cyclops-RedHelmet-KTBoss-L28": 2072371506, + "Guest_EM_Pig_Singer_A_01": 698597069, + "Guest_EM_Pig_Captain_A": 977505995, + "Guest_EM_Pig_Crewman_A": 465576459, + "PP_ChipmunkConductor": 1089819900, + "PP_LuckyCat": 1109326826, + "MNT_ImpCar": 1736092191, + "MNT_Book": 1547655078, + "MNT_JackoLantern": 649919658, + "MNT_Zheng": 742453108, + "MNT_Train": 413197899, + "MNT_Cerberus": 552686313, + "PP_Coconut": 1122741587, + "Transformation_Statue": 1153168084, + "Transformation_Nullity": 622504394, + "PP_Irk": 1825277392, + "Guest_Wyrmling-Fire-R8-1": 531485009, + "MNT_WolfLowPoly_A": 1947890962, + "MNT_WolfLowPoly_B": 1947825426, + "Transformation_BG_RatThief_Fire": 1169330235, + "Transformation_BG_WolfWarrior_Death": 159966683, + "Transformation_BG_Minotaur_Balance": 657855108, + "Transformation_BG_Draconian_Ice": 1907339814, + "Transformation_BG_Colossus_Myth": 1305894338, + "Transformation_NV_Penguin": 1757096851, + "Transformation_NV_Unicorn": 60447768, + "Transformation_NV_Monkey": 1379873688, + "Transformation_NV_Dog": 1961288968, + "PP_Wolf_Storm": 455227171, + "PP_WoodDuck": 1680912895, + "MNT_RockingHorse": 1205280059, + "MNT_SOF2022_Car": 219868812, + "PP_Buffaloon": 796152873, + "MNT_Steamboat": 1969530127, + "MNT_FelizNavidog": 847046394, + "PP_Mustache": 1571079379, + "Guest_DD-DS01-Skeleton-Pirate-20": 226826848, + "Guest_DD-DS01-Skeleton-Pirate-40": 201661024, + "Guest_DD-DS01-Skeleton-Pirate-60": 210049632, + "Guest_DD-DS01-Skeleton-Pirate-80": 251992672, + "Guest_DD-DS01-Skeleton-Pirate": 1994450336, + "Guest_DD-DS01-Shadow-Minion-Fire": 1074864956, + "Guest_DD-DS01-Shadow-Minion-Ice": 1841681214, + "Guest_DD-DS01-Shadow-Minion-Fire-20": 1074880881, + "Guest_DD-DS01-Shadow-Minion-Fire-40": 1074880945, + "Guest_DD-DS01-Shadow-Minion-Ice-20": 96850220, + "Guest_DD-DS01-Shadow-Minion-Ice-40": 96850218, + "Guest_DD-DS01-Shadow-Minion-Fire-60": 1074881009, + "Guest_DD-DS01-Shadow-Minion-Ice-60": 96850216, + "Guest_DD-DS01-Shadow-Minion-Fire-80": 1074880561, + "Guest_DD-DS01-Shadow-Minion-Ice-80": 96850214, + "Guest_SC-SpectreOfB-1": 1471950935, + "Guest_SC-SpectreOfB-20": 1471942759, + "Guest_SC-SpectreOfB-40": 1471942663, + "Guest_SC-SpectreOfB-60": 1471942695, + "Guest_SC-SpectreOfB-80": 1471942855, + "Guest_KH-Skeleton-Ice-60": 2108358962, + "Guest_KH-Skeleton-Ice-40": 2108391730, + "Guest_KH-Skeleton-Ice-20": 2108293426, + "Guest_KH-Skeleton-Ice-1": 2099953970, + "Guest_KH-Skeleton-Ice-80": 2108195122, + "Guest_KH-Undead-Caster-60": 1662604496, + "Guest_KH-Undead-Caster-40": 1661555920, + "Guest_KH-Undead-Caster-20": 1664701648, + "Guest_KH-Undead-Caster-1": 1931564240, + "Guest_KH-Undead-Caster-80": 1667847376, + "Guest_DD-PA01-DeadBeets": 1664999367, + "Guest_DD-PA01-DeadBeets-20": 1901453253, + "Guest_DD-PA01-DeadBeets-40": 2002116549, + "Guest_DD-PA01-DeadBeets-60": 1968562117, + "Guest_DD-PA01-DeadBeets-80": 2069225413, + "Guest_DD-PA01-Disparagus": 1865816461, + "Guest_DD-PA01-Disparagus-20": 573970895, + "Guest_DD-PA01-Disparagus-40": 499770929, + "Guest_DD-PA01-Disparagus-60": 1573512753, + "Guest_DD-PA01-Disparagus-80": 1647712718, + "Guest_DD-PA01-MeanestFlyTrap": 2001546861, + "Guest_DD-PA01-MeanestFlyTrap-20": 1936326253, + "Guest_DD-PA01-MeanestFlyTrap-40": 1936064109, + "Guest_DD-PA01-MeanestFlyTrap-60": 1935801965, + "Guest_DD-PA01-MeanestFlyTrap-80": 1937636973, + "Guest_HG-MD-MacDeath-20": 182639104, + "Guest_HG-MD-MacDeath-40": 182638080, + "Guest_HG-MD-MacDeath-60": 182637056, + "Guest_HG-MD-MacDeath-80": 182636032, + "Guest_HG-MD-MacDeath-100": 174252032, + "Guest_HG-MD-MacDeath-130": 174202880, + "Guest_HG_Sinbad_Skeleton_25": 494617874, + "Guest_HG_Sinbad_Skeleton_50": 42253050, + "Guest_HG_Sinbad_Skeleton_75": 1115994862, + "Guest_HG_Sinbad_Skeleton_100": 2105232646, + "Guest_HG_Sinbad_Skeleton_130": 2105232650, + "Guest_HG_Sinbad_Skeleton_25_02": 492722834, + "Guest_HG_Sinbad_Skeleton_50_02": 44148090, + "Guest_HG_Sinbad_Skeleton_75_02": 1117889902, + "Guest_HG_Sinbad_Skeleton_100_02": 2044247302, + "Guest_HG_Sinbad_Skeleton_130_02": 2044247306, + "Guest_DD-AV01-WyrmBoss": 1648677986, + "Guest_DD-AV01-WyrmBoss-20": 1926730850, + "Guest_DD-AV01-WyrmBoss-40": 1927779426, + "Guest_DD-AV01-WyrmBoss-60": 1928828002, + "Guest_DD-AV01-WyrmBoss-80": 1921487970, + "Guest_RH-Wyrm-Boss-01": 1027277645, + "Guest_RH-Wyrm-Boss-20": 1027277660, + "Guest_RH-Wyrm-Boss-40": 1027277663, + "Guest_RH-Wyrm-Boss-60": 1027277662, + "Guest_RH-Wyrm-Boss-80": 1027277657, + "Guest_HG_Sinbad_Wyrm_25": 1101443356, + "Guest_HG_Sinbad_Wyrm_50": 1101528860, + "Guest_HG_Sinbad_Wyrm_75": 1101445916, + "Guest_HG_Sinbad_Wyrm_100": 1093138204, + "Guest_HG_Sinbad_Wyrm_130": 1093089052, + "Guest_KH-Treant-1": 2001244331, + "Guest_KH-Treant-60": 1968148651, + "Guest_KH-Treant-40": 1968017579, + "Guest_KH-Treant-20": 1967886507, + "Guest_KH-Treant-80": 1967231147, + "Guest_DD-PA01-ForestGrump": 1969685870, + "Guest_DD-PA01-ForestGrump-20": 714666713, + "Guest_DD-PA01-ForestGrump-40": 714666689, + "Guest_DD-PA01-ForestGrump-60": 714666697, + "Guest_DD-PA01-ForestGrump-80": 714666737, + "Guest_DD-PA01-ForestNymphs": 227087348, + "Guest_DD-PA01-ForestNymphs-20": 227023552, + "Guest_DD-PA01-ForestNymphs-60": 227023040, + "Guest_DD-PA01-ForestNymphs-80": 227024832, + "Guest_SC-Pig-BalanceWizardA-1": 475456968, + "Guest_SC-Pig-BalanceWizardA-20": 477550024, + "Guest_SC-Pig-BalanceWizardA-40": 477541832, + "Guest_SC-Pig-BalanceWizardA-60": 477533640, + "Guest_SC-Pig-BalanceWizardA-80": 477525448, + "Guest_SC-Pig-BalanceWizardB-1": 475456964, + "Guest_SC-Pig-BalanceWizardB-20": 477550020, + "Guest_SC-Pig-BalanceWizardB-40": 477541828, + "Guest_SC-Pig-BalanceWizardB-60": 477533636, + "Guest_SC-Pig-BalanceWizardB-80": 477525444, + "Guest_SC-Pig-BalanceWizardC-1": 475456960, + "Guest_SC-Pig-BalanceWizardC-20": 477550016, + "Guest_SC-Pig-FireWizard-1": 2048176291, + "Guest_SC-Pig-FireWizard-20": 2031399073, + "Guest_SC-Pig-FireWizard-40": 2132062369, + "Guest_SC-Pig-FireWizard-60": 2098507937, + "Guest_SC-Pig-FireWizard-80": 1930735777, + "Guest_SC-Pig-IceWizardF-1": 1178687744, + "Guest_SC-Pig-IceWizardF-20": 1161910526, + "Guest_SC-Pig-IceWizardF-40": 1128356094, + "Guest_SC-Pig-IceWizardF-60": 1094801662, + "Guest_SC-Pig-IceWizardF-80": 1329682686, + "Guest_SC-Pig-MythWizard-1": 2048492725, + "Guest_SC-Pig-MythWizard-20": 2031715511, + "Guest_SC-Pig-MythWizard-40": 2132378807, + "Guest_SC-Pig-MythWizard-60": 2098824375, + "Guest_SC-Pig-MythWizard-80": 1931052215, + "Guest_SC-Pig-StormWizardF-1": 1743849420, + "Guest_SC-Pig-StormWizardF-20": 1743851464, + "Guest_SC-Pig-StormWizardF-40": 1743851488, + "Guest_SC-Pig-StormWizardF-60": 1743851480, + "Guest_SC-Pig-StormWizardF-80": 1743851504, + "Guest_KH-Pig-Bandit-Lord-1": 1080496628, + "Guest_KH-Pig-Bandit-Lord-20": 543625652, + "Guest_KH-Pig-Bandit-Lord-40": 530116172, + "Guest_KH-Pig-Bandit-Lord-60": 1603857996, + "Guest_KH-Pig-Bandit-Lord-80": 1617367475, + "Guest_KH-Pig-Bandit-Ninja-1": 1945100907, + "Guest_KH-Pig-Bandit-Ninja-20": 1945102951, + "Guest_KH-Pig-Bandit-Ninja-40": 1945102975, + "Guest_KH-Pig-Bandit-Ninja-60": 1945102967, + "Guest_KH-Pig-Bandit-Ninja-80": 1945102927, + "Guest_KH-Pig-War-Caster-1": 656859765, + "Guest_KH-Pig-War-Caster-20": 606528119, + "Guest_KH-Pig-War-Caster-40": 572973687, + "Guest_KH-Pig-War-Caster-60": 539419255, + "Guest_KH-Pig-War-Caster-80": 774300279, + "Guest_KH-Pig-War-Warrior-Boss-1": 16342355, + "Guest_KH-Pig-War-Warrior-Boss-20": 2143724205, + "Guest_KH-Pig-War-Warrior-Boss-40": 2118558381, + "Guest_KH-Pig-War-Warrior-Boss-60": 2126946989, + "Guest_KH-Pig-War-Warrior-Boss-80": 2101781165, + "Guest_SC-Pig-BalanceWizardC-40": 477541824, + "Guest_SC-Pig-BalanceWizardC-60": 477533632, + "Guest_SC-Pig-BalanceWizardC-80": 477525440, + "Guest_KH-Helephant-Death-20": 1109389719, + "Guest_KH-Helephant-Death-40": 2111835753, + "Guest_KH-Helephant-Death-60": 1038093929, + "Guest_KH-Helephant-Death-80": 35647896, + "Guest_KH-GreyOgre-Spider-1": 356368404, + "Guest_KH-GreyOgre-Spider-20": 1966981204, + "Guest_KH-GreyOgre-Spider-40": 1254244268, + "Guest_KH-GreyOgre-Spider-60": 180502444, + "Guest_KH-GreyOgre-Spider-80": 893239379, + "Guest_HG_Sinbad_Colossus_25": 1190802829, + "Guest_HG_Sinbad_Colossus_50": 1493551719, + "Guest_HG_Sinbad_Colossus_75": 419809907, + "Guest_HG_Sinbad_Colossus_100": 653933977, + "Guest_HG_Sinbad_Colossus_130": 653933973, + "Guest_NV_Dino_AberrantUndead_A_01": 2035087398, + "Guest_NV_Hellephant_Aberrant_A_01": 989522333, + "Guest_NV_Hellephant_Aberrant_A_02": 989522334, + "Guest_NV_BananaSpider_Base_A_01": 1585810541, + "Guest_NV_BananaSpider_Base_A_02": 1581616237, + "Guest_NV_BananaSpider_Base_A_03": 1577421933, + "Guest_NV_BananaSpider_Base_A_04": 1606782061, + "Guest_NV_BananaSpider_Base_A_05": 1602587757, + "Guest_NV_Wyrm_Aberrant_A_01": 16108415, + "Guest_NV_Monkey_Zombie_A_01": 1854775300, + "Guest_NV_Monkey_Zombie_A_02": 1854775304, + "Guest_NV_Monkey_Zombie_A_03": 1854775308, + "Guest_NV_Monkey_Zombie_A_04": 1854775312, + "MNT_Flag_Monster": 867940056, + "Guest_SKB_WY_DarkBramble_A_30": 2046798767, + "Guest_SKB_WY_DarkBramble_A_50": 2046797999, + "Guest_SKB_WY_DarkBramble_A_100": 2044701359, + "Guest_SKB_WY_DarkBramble_A_150": 2044721839, + "Guest_SKB_GH_Boar_A_30": 1547921275, + "Guest_SKB_WC_SpiritIgnorance_A_50": 1488876986, + "Guest_SKB_WC_SpiritIgnorance_A_100": 2025748410, + "Guest_SKB_WC_SpiritIgnorance_A_150": 2025748413, + "Guest_SKB_DS_Loremaster_A_50": 527751539, + "Guest_SKB_DS_Loremaster_A_100": 527817059, + "Guest_SKB_DS_Loremaster_A_150": 527817699, + "Guest_SKB_CL_Dan_A_50": 637418706, + "Guest_SKB_CL_Dan_A_60": 1510064941, + "Guest_SKB_CL_Dan_A_100": 637410512, + "Guest_SKB_CL_Dan_A_150": 637410432, + "Guest_SKB_AV_Spectre_A_50": 2104631195, + "Guest_SKB_AV_Spectre_A_100": 2102534041, + "Guest_SKB_AV_Spectre_A_150": 2018647961, + "Guest_SKB_MS_Samoorai_A_50": 2029641915, + "Guest_SKB_MS_Samoorai_A_100": 2096750843, + "Guest_SKB_MS_Samoorai_A_150": 587603717, + "Transformation_BG_Krok_StromTemplate": 1317694546, + "PP_ChineseRabbit": 382941643, + "PP_ParadeElf": 1036247808, + "MNT_HeartSwarm": 918199310, + "MNT_SpringSOF2023": 1417178519, + "Transformation_BG_Elf_Death2Template": 1606653101, + "MNT_GummyBunny_D": 775840224, + "Transformation_BG_Krok_Life2Template": 747486212, + "PP_Flame": 959186933, + "PP_YachtRock": 1500927358, + "PP_PirateYachtRock": 1227549100, + "PP_ChickenMonster": 1845706534, + "PP_SnowHoppers_B": 1496460038, + "PP_SnowHoppers_C": 1496457990, + "MNT_Oarfish": 29720265, + "PP_RingTailedCat": 993143427, + "MNT_Fanboat": 19347694, + "MNT_MiniSub": 298697910, + "PP_DumboOctopus": 966435639, + "PP_Glowbug_Balance": 1405529577, + "PP_Glowbug_Death": 405117107, + "PP_Glowbug_Fire": 651698987, + "PP_Glowbug_Ice": 2124926395, + "PP_Glowbug_Life": 601367299, + "PP_Glowbug_Myth": 592978024, + "PP_Glowbug_Storm": 61190446, + "PP_DumboOctopus_B": 968448823, + "PP_DumboOctopus_C": 968383287, + "PP_BananaSpider_01": 1074383522, + "PP_BananaSpider_02": 1080674978, + "PP_BananaSpider_03": 1078577826, + "Guest_HG_NM_BeardDragon_Base_C_01": 82913785, + "Guest_HG_NM_BeardDragon_Base_C_02": 82913786, + "Guest_HG_NM_BeardDragon_Base_C_03": 82913787, + "Guest_HG_NM_Glowbug_Base_C_01": 544959703, + "Guest_HG_NM_Glowbug_Base_C_02": 544955607, + "Guest_HG_NM_Glowbug_Base_C_03": 544951511, + "Guest_HG_NM_Glowbug_Base_C_04": 544947415, + "Guest_HG_NM_Glowbug_Base_C_05": 544943319, + "Guest_HG_NM_Glowbug_Base_C_06": 544939223, + "Guest_HG_NM_Glowbug_Base_C_07": 544935127, + "MNT_BouquetofFlowers": 1511180560, + "PP_Piggle_Rainbow": 91081383, + "MNT_Sabertooth_FlameSaber": 1949516909, + "Guest_HG_NM_BeardDragon_Base_A_01": 83175929, + "Guest_HG_NM_BeardDragon_Base_A_02": 83175930, + "Guest_HG_NM_BeardDragon_Base_A_03": 83175931, + "Guest_HG_NM_BeardDragon_Base_B_01": 83044857, + "Guest_HG_NM_BeardDragon_Base_B_02": 83044858, + "Guest_HG_NM_BeardDragon_Base_B_03": 83044859, + "Guest_HG_NM_Glowbug_Base_B_01": 8088791, + "Guest_HG_NM_Glowbug_Base_B_02": 8084695, + "Guest_HG_NM_Glowbug_Base_B_03": 8080599, + "Guest_HG_NM_Glowbug_Base_B_04": 8076503, + "Guest_HG_NM_Glowbug_Base_B_05": 8072407, + "Guest_HG_NM_Glowbug_Base_B_06": 8068311, + "Guest_HG_NM_Glowbug_Base_B_07": 8064215, + "Guest_HG_NM_Glowbug_Base_A_01": 1618701527, + "Guest_HG_NM_Glowbug_Base_A_02": 1618697431, + "Guest_HG_NM_Glowbug_Base_A_03": 1618693335, + "Guest_HG_NM_Glowbug_Base_A_04": 1618689239, + "Guest_HG_NM_Glowbug_Base_A_05": 1618685143, + "Guest_HG_NM_Glowbug_Base_A_06": 1618681047, + "Guest_HG_NM_Glowbug_Base_A_07": 1618676951, + "MNT_SummerSOF2023": 1636120912, + "PP_Cyclops_Fire": 7821755, + "PP_Death_Elf": 1535744155, + "PP_Newt": 1438123483, + "PP_Echidna": 735439358, + "MNT_Wombat": 580544786, + "Transformation_BG_NinjaPig_Balance": 1799661438, + "Transformation_BG_Cyclops_Ice": 647975824, + "Transformation_BG_Minotaur_Storm": 1005667041, + "Transformation_GR_Parasaur_Priest_Ice": 1101466351, + "Transformation_GR_Parasaur_Priest_Fire": 892193041, + "Transformation_GR_Parasaur_Priest_Storm": 1525882116, + "Transformation_GR_Parasaur_Priest_Balance": 1127637476, + "Guest_GR_AZ_Parasaur_Undead_B_01": 322587487, + "MNT_WitchCat": 1167097888, + "PP_RolyPoly": 578538330, + "PP_Capybara_B": 628131532, + "MNT_OutbackTruck": 1815527801, + "PP_PoodleSailor": 2137704795, + "MNT_PolarianCannon": 2103490826, + "PP_TazmanianDevil": 1773548765, + "Guest_SKB_AZ_Ixcax_A_100": 556560994, + "Guest_SKB_AZ_Ixcax_A_150": 556610146, + "Guest_SKB_AZ_Ixcax_A_50": 564951650, + "MNT_GhoulsShovel": 2035610946, + "PP_CrystalBdayDragon": 1897078804, + "PP_SunGobblerBall": 1522469440, + "PP_Sun_GreenGobbler": 1337690394, + "MNT_2P_AutumnTreant": 1063435527, + "PP_AutumnTreant": 561077291, + "MNT_FlyingMonkey": 490807393, + "PP_BabyPlantMonster": 2076646587, + "MNT_PlantCreature_A": 1802823265, + "Transformation_BG_Fairy_Fire": 2065252898, + "Transformation_BG_Krok_Myth": 277926564, + "Transformation_BG_RatThief_Life": 1167758651, + "Transformation_BG_Elf_Balance": 1628238937, + "Transformation_BG_Colossus_Death": 184392004, + "Transformation_FortressPod": 139738335, + "P_Wombat_POLYMORPH": 1132264953, + "PP_SharkWobbegong": 1994247222, + "PP_ChineseNYDragon": 1126999021, + "PP_JingleBellRock": 1076037919, + "PP_Krok_Mummy_Myth": 438487583, + "PP_Cyclops_Ice": 1476966187, + "MNT_OutbackTruckB": 1813299577, + "MNT_EvilSnowmanBall": 758818712, + "MNT_ThanksgivingGobbler": 1760011910, + "Guest_WL_Ghost_LostSoul_A_01": 1224111704, + "Guest_WL_Kangaroo_Drover_F_01": 2025562931, + "Guest_WL_Spider_WarriorMage_C_01": 1296557888, + "Guest_WL_Spider_WarriorMage_C_02": 1430775616, + "Guest_WL_Spider_WarriorMage_C_03": 1564993344, + "Guest_WL_Spider_WarriorMage_C_04": 1699211072, + "Guest_WL_Spider_WarriorMage_C_05": 1833428800, + "Guest_WL_Spider_WarriorMage_C_06": 1967646528, + "Guest_WL_Spider_WarriorMage_C_07": 2101864256, + "Guest_SKB_KR_Lightbane_A_100": 837930677, + "Guest_SKB_KR_Lightbane_A_160": 837930669, + "Guest_SKB_KR_Lightbane_A_50": 1309555019, + "Transformation_WL_Phantasmanian_DevilTemplate": 384891502, + "MNT_2P_LeaflessTreant": 623083386, + "PP_Minotaur_Ice": 700151737, + "MNT_Scooter_G": 737125252, + "Guest_WL_Frog_Owner_B_01": 767864686, + "MNT_SilentKnight": 646654812, + "Guest_WL_TRex_Base_A_01": 1842562033, + "Guest_WL_TRex_Base_B_01": 304921616, + "PP_Groundhog": 108643243, + "Guest_NV_Unicorn_Guard_C_04": 1845621, + "MNT_EmuPunk": 647315080, + "MNT_HeartBalloon": 798826551, + "PP_ValentineHoppers": 968693964, + "MNT_SpringSOF2024_Heckhound": 453640548, + "Guest_AQ-Centaur-Arion": 1856508139, + "Guest_AQ-Centaur-Artemis": 333294011, + "Guest_AQ-Horse-Sea": 724896200, + "Guest_KR_Horse_Warlord_A_Bossfight": 1302284326, + "Guest_KR_Horse_Warlord_A_BossfightSP": 1300726822, + "Guest_KR_Zebra_Thrall_A": 1250265667, + "Guest_KR_Zebra_Thrall_A_Boss_Minion": 345677011, + "Guest_KR_Zebra_Thrall_A_Gallery": 1520303483, + "Guest_KH-Gray-Horse-40": 1802231403, + "Guest_KH-Gray-Horse-20": 1802231307, + "Guest_G14-BP-Unicorn_Fencer_Boss": 1602044152, + "Guest_Horse-Merc-Brown-L37": 1831175255, + "Guest_Horse-Merc-Tan-L39": 1363854837, + "Guest_Horse-Merc-Tan-L39-1": 2085275127, + "Guest_Horse-Merc-Gray-MSBoss-L39": 1863452041, + "Guest_Horse-Merc-Gray-L39": 2039135564, + "Guest_Horse-Merc-Tan-L38": 1363330549, + "Guest_WC_Horse_Mercenary_Roberto": 891924774, + "Guest_ZF-Nathi-Yellowstripe-R11": 1505157721, + "Guest_ZF-TseTse-Main-R11-Boss": 114927854, + "Guest_ZF-TseTse-Elephant-R11": 894147273, + "Guest_ZF-Zebra-Impi-Raider-R11": 1378242919, + "Guest_ZF-Zebra-Warrior-Male-R10-1": 1791906265, + "Guest_ZF-Zebra-Senzan-Zebu-R10-Boss": 373712721, + "Guest_ZF-Zebra-Shaka-Zebu-R10-Boss": 662142985, + "Guest_ZF-Zebra-Warrior-Female-R10-02": 1507835670, + "Guest_ZF-Zebra-Warrior-Male-R10": 47075786, + "Guest_ZF-Zebra-Warrior-Male-R10-02": 1791906714, + "Guest_ZF-Zebra-Warrior-Male-R10-03": 1791906746, + "Guest_ZF-Zebra-Warrior-Male-R10-05": 1791906682, + "Guest_ZF-Zebra-Warrior-Male-R10-2": 1791906268, + "Guest_ZF_Zebra_Spectral_Guardian-R11": 431970996, + "Guest_CC_Horse_Apoc_A_01": 644668374, + "Guest_CC_Horse_Apoc_B_01": 644668390, + "Guest_CC_Horse_Apoc_C_01": 644668406, + "Guest_CC_Horse_Apoc_D_01": 644668294, + "Guest_CC_Horse_Apoc_D_02": 645192582, + "Guest_CC_Unicorn_CorsairF_B_01": 1378532506, + "Guest_CC_Unicorn_Duelist_B_01": 64891542, + "Guest_CC_Unicorn_Guard_B_01": 1075063242, + "Guest_CC_Unicorn_Guard_B_02": 1075063238, + "Guest_CC_Unicorn_Guard_B_03": 1075063234, + "Guest_NV_Horse_HordeSoldier_A_01": 504396960, + "Guest_NV_Horse_HordeSoldier_A_02": 101743776, + "Guest_NV_Horse_HordeOfficer_A_01": 343600992, + "Guest_NV_Horse_HordeSoldier_A_03": 235961504, + "Guest_NV_Horse_HordeOfficer_A_02": 209383264, + "Guest_NV_Horse_AberrantTungAk_A_01": 952263441, + "Guest_NV_Horse_AberrantTungAk_A_02": 952263537, + "Guest_NV_Horse_TungAk_B_01": 1194718672, + "Guest_NV_Horse_TungAk_B_02": 657847760, + "Guest_NV_Horse_HordeOfficer_B_01": 343596896, + "Guest_NV_Horse_HordeOfficer_B_02": 209379168, + "Guest_NV_Horse_TungAk_A_01": 1194669520, + "Guest_NV_Unicorn_Guard_C_01": 1845601, + "Guest_NV_Unicorn_Guard_A_01": 797025, + "Guest_NV_Unicorn_AberrantGuard_A_01": 739851573, + "Guest_NV_Unicorn_Guard_C_02": 1845613, + "Guest_NV_Unicorn_Guard_C_03": 1845609, + "Guest_NV_Unicorn_AberrantGuard_A_02": 739848501, + "Guest_NV_Unicorn_Guard_A_02": 797037, + "Guest_NV_Unicorn_AberrantGuard_A_03": 739849525, + "Guest_NV_Unicorn_AberrantGuard_A_04": 739846453, + "Guest_NV_Horse_HordeOfficer_A_03": 75165536, + "Guest_NV_Horse_HordeSoldier_A_04": 907050144, + "Guest_NV_Horse_HordeSoldier_A_05": 1041267872, + "Guest_NV_Horse_HordeSoldier_C_01": 504388768, + "Guest_HG_TRAIN_Horse_MustangFencerF_A_Balance_50": 871182987, + "Guest_HG_TRAIN_Horse_MustangFencerF_A_Balance_75": 871176715, + "Guest_HG_TRAIN_Horse_MustangFencerF_A_Life_100": 886489645, + "Guest_HG_TRAIN_Horse_MustangFencerF_A_Balance_25": 871177035, + "Guest_HG_TRAIN_Horse_MustangFencerF_A_Balance_100": 872231819, + "Guest_HG_TRAIN_Horse_MustangFencerF_A_Life_140": 1960231469, + "Guest_HG_TRAIN_Horse_MustangFencerF_B_100": 2089957067, + "Guest_HG_TRAIN_Horse_MustangFencerF_A_Life_25": 1700184589, + "Guest_HG_TRAIN_Horse_MustangFencerF_A_Life_50": 920044045, + "Guest_HG_TRAIN_Horse_MustangFencerF_A_Life_75": 1742127629, + "Guest_HG_TRAIN_Horse_MustangFencerF_A_Balance_140": 872223627, + "Guest_HG_TRAIN_Horse_MustangFencerF_B_50": 2089952970, + "Guest_HG_TRAIN_Horse_MustangFencerF_B_75": 57530654, + "Guest_HG_TRAIN_Horse_MustangFencerF_B_140": 2089957099, + "Guest_HG_TRAIN_Horse_MustangFencerF_B_25": 1131272477, + "Guest_LM_Horse_Explorer_A_01_Hard": 1711837140, + "Guest_WL_Unicorn_Guard_A_01": 1074538935, + "Guest_WL_Unicorn_CorsairF_E_01": 1378532603, + "Guest_WL_Unicorn_Warlord_A_01": 1321310496, + "Guest_KH-Gray-Horse-1": 1802239547, + "Guest_KH-Gray-Horse-60": 1802231371, + "Guest_KH-Gray-Horse-80": 1802231467, + "Transformation_BG_NinjaPig_Ice": 186026527, + "Transformation_BG_Cyclops_Storm": 897316984, + "PP_MinotaurBalance": 1344665951, + "PP_OrthusMoon": 1804503950, + "PP_CoolPineapple": 1149318906, + "PP_TwinkleStars": 766378011, + "PP_Scroll": 1613313091, + "PP_Colossus_Death": 40713075, + "PP_ColossusDeath": 530964029, + "PP_KILiveRock": 1975550570, + "MNT_Outrigger": 1417937299, + "MNT_BookWyrm": 2080129190, + "MNT_RacingSnail": 1996220963, + "MNT_UmbrellaCloud": 145762615, + "PP_PropellerCat": 2094718580, + "MNT_TRex_Shirt": 586746001, + "MNT_Swarm_Bee": 1625228695, + "MNT__CelestialMoon": 968360256, + "Guest_ME_Sinbad_IronSultan_150": 2001676223, + "Guest_ME_Sinbad_Cyclops_150": 1968943689, + "Guest_ME_Sinbad_Skeleton_150": 1031490819, + "Guest_ME_Sinbad_Colossus_150": 1727675806, + "Guest_ME_Sinbad_Skeleton_150_02": 970505475, + "Guest_ME_Sinbad_Wyrm_150": 19314443, + "Guest_ZF-Zebra-Inzinzebu-Bandit-R11": 430262550, + "Guest_ZF-Zebra-Warrior-Male-R10-04": 1791906650, + "PP_TwinkleStars_02": 805304347, + "PP_TwinkleStars_03": 803207195, + "PP_TwinkleStars_01": 799012891, + "Transformation_BodleianHarrow": 609627870, + "Guest_HG_Gryphon_OwlStatue_A_01_L170": 77756046, + "Guest_HG_Gryphon_OwlStatue_A_02_L170": 73561742, + "Guest_HG_Gryphon_OwlStatue_A_01_L100": 77752974, + "Guest_HG_Gryphon_OwlStatue_A_02_L100": 73558670, + "Guest_HG_Gryphon_OwlStatue_A_01_L50": 78277134, + "Guest_HG_Gryphon_OwlStatue_A_02_L50": 74082830, + "MNT_SummerSOF2024_JudgementWings": 1078163967, + "MNT_Pegasus_E": 131704054, + "MNT_PolarisHero": 665176426, + "PP_Duckana": 1128961578, + "PP_QueenBee": 833291695, + "Transformation_BG_Draconian_Balance": 2078940682, + "Transformation_BG_WolfWarrior_Fire": 1762248682, + "Transformation_BG_Minotaur_Death": 309090657, + "PP_WolfWarrior_Fire": 685685256, + "PP_WolfWarrior_Death": 1857202724, + "Guest_ME-GTAV01-WyrmBoss-150": 1482208618, + "Guest_ME_SpectreOfB_L150": 684104791, + "Guest_ME_MD_MacDeath_L150": 1128977615, + "Guest_ME_Pig_BalanceWizardA_L150": 959913724, + "Guest_ME_Pig_BalanceWizardB_L150": 959913712, + "Guest_ME_Pig_BalanceWizardC_L150": 959913716, + "Guest_ME_Pig_FireWizard_L150": 964392255, + "Guest_ME_Pig_IceWizardF_L150": 86941026, + "Guest_ME_Pig_MythWizard_L150": 964051241, + "Guest_ME_Pig_StormWizardF_L150": 2016383602, + "Guest_ME_Clock_Clockworker_L150": 1424569772, + "Guest_ME_Clock_ClockworkSpanner_L150": 1966824609, + "Guest_ME_Clock_Lugs_L150": 370290904, + "Guest_ME_Clock_Lucia_L150": 1857768409, + "MNT_EvilChair": 339577702, + "PP_Cyclops_Storm": 621464512, + "PP_Krokomummy_Life": 462432735, + "Transformation_CL_Rematch_Crustacean": 1686865207, + "Transformation_CL_Rematch_Protector": 1893951532, + "Transformation_CL_Rematch_Angler": 120412196, + "Transformation_CL_Rematch_Piscean": 1624106070, + "Transformation_Zebra_Template": 1900548493, + "Transformation_Zebra2_Template": 325099540, + "Transformation_Zebra3_Template": 325099524, + "Transformation_Zebra4_Template": 325099636, + "MNT_SweetSixteenBirthday": 1009398096, + "MNT_2P_TRex_Bones": 1618543266, + "MNT_SpringBumperCar": 1725007788, + "PP_WinterGoblin": 2025052443, + "PP_OnyxAnubis": 1552575189, + "PP_OttomanCat": 223541582, + "MNT_HolidayYeti": 780983974, + "MNT_IceSled": 979912604, + "MNT_TurtleDoves": 1850191638, + "MNT_KrokChariot": 559783620, + "MNT_Mustang": 1775949401, + "MNT_PumpkinBall": 382849054, + "Transformation_BG_Fairy_Storm": 836920873, + "Transformation_BG_Elf_Myth": 1506493664, + "Transformation_NinjaPig_Life": 816802847, + "Transformation_BG_Krok_Fire": 1060580712, + "Transformation_BG_Colossus_Balance": 1067963041, + "Transformation_BG_NinjaPig_Life": 441460895, + "PP_Penguin_03": 1623028104, + "Transformation_Duck_Librarian_B": 864067551, + "Transformation_Duck_Librarian_A": 859873247, + "Transformation_Duck_Adventurer": 194560769, + "Transformation_Gummy_Bunny_C": 1298087941, + "Transformation_Frog_Horned_A": 837201339, + "Transformation_Glowbug_Storm": 2096380446, + "Transformation_Marshmallow_Critter_A": 1036335317, + "Transformation_Snipe_Base_B": 232132109, + "Transformation_Snowball": 915248481, + "Transformation_Wombat_Base": 333435450, + "Transformation_Human_Malistaire": 1414887773, + "Transformation_Morganthe_E": 1745180054, + "Transformation_Spider_Grandfather": 1131773979, + "Transformation_Khrulhu_Dasein_B": 367878762, + "Transformation_Devourer_Base": 698770016, + "Transformation_Alien_Meteor": 638746168, + "Transformation_Nightmare_Malus": 704212821, + "Transformation_Daemon_Personal": 278266463, + "PP_ValentinesDay": 810003364, + "PP_BabyHippo": 422858138, + "PP_Aardwold": 1592150119, + "PP_Aardwold_C": 1902528613, + "MNT_Cobra": 472847981, + "MNT_Serpopard": 1629558909, + "MNT_Serpopard_B": 1629556867, + "MNT_Serpopard_C": 1629556931, + "PP_Fairy_Fire": 1847789544, + "MNT_Mustang_B": 1448793691, + "PP_FireElfMyth": 1933609060, + "MNT_KT-BoatRide": 1560860110, + "MNT_ShadowMagic": 2095978357, + "MNT_MardiGrasFloat_A": 1740674432, + "PP_ChineseNYSnake": 988201940, + "MNT_AnubisDog": 1995079956, + "PP_ShadowImp_A": 1604849432, + "PP_ShadowImp_B": 1604849438, + "PP_ShadowImp_C": 1604849436, + "MNT_ShadowMagic_B": 2093870965, + "MNT_ShadowMagic_C": 2093805429, + "Guest_KT_SE_Tritops_Warrior_I_01": 97516901, + "Guest_KT_SE_DS_Draconian_Model_01": 1916095079, + "Guest_KT_SE_Beetle_Scarab_C_01_L50": 1064004307, + "Guest_KT_SE_Roach_Warrior_C_03": 1872574203, + "Guest_KT_SE_Roach_Warrior_C_04": 1871918843, + "Guest_KT_SE_Roach_Warrior_C_05": 1871787771, + "Guest_KT_SE_Beetle_Scarab_C_01": 1353410759, + "Guest_KT_SE_Mander_Citizen_B_01_L50": 2044509396, + "Guest_KT_SE_Mander_CitizenF_B_01_L50": 164327682, + "Guest_KT_SE_Treant_Tormented_A_01": 1359800879, + "Guest_KT_SE_Treant_Base_A_01": 765512948, + "Guest_KT_SE_Mander_Citizen_F_D_05": 171244620, + "Guest_KT_SE_Mander_CitizenF_D_01": 163791037, + "Guest_KT_SE_Mander_CitizenF_D_02": 298008765, + "Guest_KT_SE_Mander_CitizenF_D_03": 432226493, + "Guest_KT_SE_Mander_CitizenF_D_04": 566444221, + "Guest_KT_SE_Mander_MummyF_A_01": 964349080, + "Guest_KT_SE_Mander_MummyF_A_02": 964480152, + "Guest_KT_SE_MC_Wraith_Model_01": 1101442118, + "Guest_KT_SE_Mander_CitizenF_B_02": 298000573, + "MNT_Wheelbarrow": 614248817, + "MNT_StubbornLlama": 221089074 + } } } }, - "1275003907": { - "name": "class BracketMatchInfo*", + "169654053": { + "name": "class DiegoPlayerStats", "bases": [ - "PvPMatchInfo", - "ArenaMatchInfo", "PropertyClass" ], - "hash": 1275003907, + "hash": 169654053, "properties": { - "m_matchID": { + "m_participantID": { "type": "gid", "id": 0, "offset": 72, - "flags": 31, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1757621298 + "hash": 1556110724 }, - "m_matchNameID": { - "type": "unsigned int", + "m_teamID": { + "type": "int", "id": 1, "offset": 80, - "flags": 31, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1751361288 + "hash": 982118638 }, - "m_teams": { - "type": "class SharedPointer", + "m_maxHealth": { + "type": "int", "id": 2, - "offset": 96, - "flags": 31, - "container": "List", - "dynamic": true, + "offset": 84, + "flags": 7, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": true, - "hash": 1984373608 + "pointer": false, + "hash": 374902326 }, - "m_matchName": { - "type": "std::string", + "m_pipsSpent": { + "type": "int", "id": 3, - "offset": 112, - "flags": 31, + "offset": 88, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2061215721 + "hash": 1360713568 }, - "m_matchTitle": { - "type": "std::string", + "m_shadowPipsSpent": { + "type": "int", "id": 4, - "offset": 144, - "flags": 31, + "offset": 92, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2918442218 + "hash": 1691641958 }, - "m_matchZoneID": { - "type": "gid", + "m_damageOutgoing": { + "type": "float", "id": 5, - "offset": 176, - "flags": 31, + "offset": 96, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2026205966 + "hash": 1733098594 }, - "m_creatorID": { - "type": "gid", + "m_damageIncoming": { + "type": "float", "id": 6, - "offset": 88, - "flags": 31, + "offset": 100, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1051766037 + "hash": 466767466 }, - "m_matchZone": { - "type": "std::string", + "m_healingOutgoing": { + "type": "float", "id": 7, - "offset": 184, - "flags": 31, + "offset": 104, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2061662244 + "hash": 1955741979 }, - "m_startTime": { - "type": "int", + "m_healingIncoming": { + "type": "float", "id": 8, - "offset": 216, - "flags": 31, + "offset": 108, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1386968823 + "hash": 689410851 }, - "m_status": { + "m_killCount": { "type": "int", "id": 9, - "offset": 220, - "flags": 31, + "offset": 112, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 960781182 + "hash": 1162723983 }, - "m_friendsOnly": { - "type": "bool", + "m_spellsCast": { + "type": "int", "id": 10, - "offset": 236, - "flags": 31, + "offset": 116, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1420401792 + "hash": 681177880 }, - "m_tournamentNameID": { - "type": "unsigned int", + "m_fizzles": { + "type": "int", "id": 11, - "offset": 224, - "flags": 31, + "offset": 120, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1799846440 + "hash": 1628327073 }, - "m_leagueID": { - "type": "unsigned int", + "m_offenseSpells": { + "type": "int", "id": 12, - "offset": 228, - "flags": 31, + "offset": 124, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 692361645 + "hash": 422756275 }, - "m_seasonID": { - "type": "unsigned int", + "m_offenseNormal": { + "type": "int", "id": 13, - "offset": 232, - "flags": 31, + "offset": 128, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 535260643 + "hash": 226361289 }, - "m_bUpdateLadder": { - "type": "bool", + "m_offenseShadow": { + "type": "int", "id": 14, - "offset": 248, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1937525956 - }, - "m_maxPointsPerMatch": { - "type": "unsigned int", - "id": 15, - "offset": 240, - "flags": 31, + "offset": 132, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1397040900 - }, - "m_estimatedWeight": { + "hash": 413116550 + } + } + }, + "1873113739": { + "name": "class MoveCommandPitch", + "bases": [ + "MoveController::MoveCommand", + "PropertyClass" + ], + "hash": 1873113739, + "properties": { + "m_fPitch": { "type": "float", - "id": 16, - "offset": 244, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1374360127 - }, - "m_maxELOError": { - "type": "int", - "id": 17, - "offset": 252, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 318998922 - }, - "m_uniqueMatchID": { - "type": "std::string", - "id": 18, - "offset": 264, + "id": 0, + "offset": 88, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3291026220 - }, - "m_pvpDuelModifiersTemplates": { - "type": "class SharedPointer", - "id": 19, - "offset": 296, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1193155411 - }, - "m_teamSize": { - "type": "unsigned int", - "id": 20, - "offset": 256, - "flags": 31, + "hash": 499815957 + } + } + }, + "588389314": { + "name": "class TransformationEffect", + "bases": [ + "GameEffectBase", + "PropertyClass" + ], + "hash": 588389314, + "properties": { + "m_currentTickCount": { + "type": "double", + "id": 0, + "offset": 80, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2343388751 - }, - "m_joinQueueRequirements": { - "type": "class SharedPointer", - "id": 21, - "offset": 312, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2746080983 + "hash": 2533274692 }, - "m_timeLimitSec": { + "m_effectNameID": { "type": "unsigned int", - "id": 22, - "offset": 328, - "flags": 31, + "id": 1, + "offset": 96, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 312519798 + "hash": 1204067144 }, - "m_useHistoricDiego": { + "m_bIsOnPet": { "type": "bool", - "id": 23, - "offset": 352, + "id": 2, + "offset": 73, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1688842509 + "hash": 522593303 }, - "m_ignoredList": { + "m_originatorID": { "type": "gid", - "id": 24, - "offset": 336, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1850924028 - }, - "m_matchTimer": { - "type": "float", - "id": 25, - "offset": 356, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1510935909 - }, - "m_bonusTime": { - "type": "int", - "id": 26, - "offset": 360, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1757496496 - }, - "m_passPenalty": { - "type": "int", - "id": 27, - "offset": 364, - "flags": 31, + "id": 3, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 982951662 + "hash": 1131810019 }, - "m_yellowTime": { - "type": "int", - "id": 28, - "offset": 368, - "flags": 31, + "m_itemSlotID": { + "type": "unsigned int", + "id": 4, + "offset": 112, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1017028741 + "hash": 1895747595 }, - "m_redTime": { + "m_internalID": { "type": "int", - "id": 29, - "offset": 372, - "flags": 31, + "id": 5, + "offset": 92, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1909556708 + "hash": 1643137924 }, - "m_minTurnTime": { - "type": "int", - "id": 30, - "offset": 376, + "m_endTime": { + "type": "unsigned int", + "id": 6, + "offset": 88, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 652524886 - }, - "m_effects": { - "type": "class SharedPointer", - "id": 31, - "offset": 384, - "flags": 31, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 804962647 + "hash": 716479635 }, - "m_updateBattlePassPoints": { - "type": "bool", - "id": 32, - "offset": 408, - "flags": 31, + "m_sRace": { + "type": "std::string", + "id": 7, + "offset": 128, + "flags": 268435487, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 713306342 + "hash": 2306580681, + "enum_options": { + "__BASECLASS": "CharacterRaceTable" + } }, - "m_battlePassWinPoints": { - "type": "int", - "id": 33, - "offset": 412, + "m_eGender": { + "type": "enum eGender", + "id": 8, + "offset": 160, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1252337240 + "hash": 2776344943 }, - "m_battlePassLosePoints": { - "type": "int", - "id": 34, - "offset": 416, + "m_fScale": { + "type": "float", + "id": 9, + "offset": 164, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1400839869 + "hash": 503137701 }, - "m_numTeams": { + "m_nPrimaryColor": { "type": "int", - "id": 35, - "offset": 424, + "id": 10, + "offset": 168, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1601148004 + "hash": 310334923 }, - "m_pointsForLosingByDefeat": { + "m_nSecondaryColor": { "type": "int", - "id": 36, - "offset": 432, + "id": 11, + "offset": 172, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 394154926 + "hash": 516938671 }, - "m_pointsForWinningByDefeat": { + "m_nPatternOption": { "type": "int", - "id": 37, - "offset": 436, + "id": 12, + "offset": 176, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1202223548 + "hash": 413195679 }, - "m_pointsForWinningByJudgement": { + "m_nGeometryOption": { "type": "int", - "id": 38, - "offset": 440, + "id": 13, + "offset": 180, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1978958934 + "hash": 676541869 }, - "m_pointsForLosingByJudgement": { - "type": "int", - "id": 39, - "offset": 444, + "m_sNaturalAttack": { + "type": "std::string", + "id": 14, + "offset": 184, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 690778376 - }, - "m_pointsForFleeingMatch": { - "type": "int", - "id": 40, - "offset": 448, - "flags": 31, + "hash": 2131867453 + } + } + }, + "1440845434": { + "name": "class ClientCastEffectCinematicAction*", + "bases": [ + "CastEffectCinematicAction", + "BaseEffectCinematicAction", + "CinematicAction", + "PropertyClass" + ], + "hash": 1440845434, + "properties": { + "m_timeOffset": { + "type": "float", + "id": 0, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 679642949 + "hash": 2237098605 }, - "m_pointsForByeGame": { - "type": "int", - "id": 41, - "offset": 452, - "flags": 31, + "m_effectRel": { + "type": "enum BaseEffectCinematicAction::kEffectRelative", + "id": 1, + "offset": 80, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 729567064 + "hash": 2978921287, + "enum_options": { + "kNone": 0, + "kSigil": 1, + "kTarget": 2, + "kSource": 3, + "kActor": 4 + } }, - "m_scoreMultiplier": { - "type": "float", - "id": 42, - "offset": 428, - "flags": 31, + "m_namedActor": { + "type": "std::string", + "id": 2, + "offset": 88, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 545011290 - }, - "m_teamIDToBracketTeamIDList": { - "type": "class TeamGIDToBracketID", - "id": 43, - "offset": 456, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1980997052 + "hash": 3413532537 } } }, - "2081595736": { - "name": "class StatisticEffectInfo", + "1018214453": { + "name": "class SharedPointer", "bases": [ - "GameEffectInfo", "PropertyClass" ], - "hash": 2081595736, + "hash": 1018214453, "properties": { - "m_effectName": { - "type": "std::string", + "m_items": { + "type": "class SharedPointer", "id": 0, "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, + "flags": 7, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 2029161513 + "pointer": true, + "hash": 1610486152 }, - "m_lookupIndex": { - "type": "int", + "m_requestHandle": { + "type": "gid", "id": 1, - "offset": 104, + "offset": 88, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1626623948 + "hash": 563564461 } } }, - "902412577": { - "name": "class Slot_Node_FXDef*", + "169755910": { + "name": "class SharedPointer", "bases": [ "PropertyClass" ], - "hash": 902412577, + "hash": 169755910, "properties": { - "m_slotName": { + "m_badgeName": { "type": "std::string", "id": 0, "offset": 72, @@ -690664,10 +693082,10 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 2819781566 + "hash": 3002948047 }, - "m_nodeName": { - "type": "std::string", + "m_cost": { + "type": "int", "id": 1, "offset": 104, "flags": 7, @@ -690675,30 +693093,29 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 3607089954 + "hash": 219280307 }, - "m_fxDef": { - "type": "class SharedPointer", + "m_ingredients": { + "type": "class Ingredient*", "id": 2, - "offset": 136, + "offset": 112, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "List", + "dynamic": true, "singleton": false, "pointer": true, - "hash": 1171176403 + "hash": 1061809494 } } }, - "505593498": { - "name": "class HousingMusicPlayerBehaviorTemplate", + "590221919": { + "name": "class AnimationSet*", "bases": [ - "BehaviorTemplate", "PropertyClass" ], - "hash": 505593498, + "hash": 590221919, "properties": { - "m_behaviorName": { + "m_setName": { "type": "std::string", "id": 0, "offset": 72, @@ -690707,30 +693124,31 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 3130754092 + "hash": 2569991048 }, - "m_combatMusicPlayer": { - "type": "bool", + "m_pairs": { + "type": "class AnimationPair*", "id": 1, - "offset": 120, + "offset": 112, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 492667575 + "pointer": true, + "hash": 1888571563 } } }, - "1277362157": { - "name": "class SharedPointer", + "1441179207": { + "name": "class SharedPointer", "bases": [ + "GameEffectTemplate", "PropertyClass" ], - "hash": 1277362157, + "hash": 1441179207, "properties": { - "m_level": { - "type": "unsigned char", + "m_effectName": { + "type": "std::string", "id": 0, "offset": 72, "flags": 7, @@ -690738,104 +693156,180 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 1438884808 + "hash": 2029161513 }, - "m_template": { - "type": "unsigned int", + "m_effectCategory": { + "type": "std::string", "id": 1, - "offset": 76, + "offset": 104, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 669977097 + "hash": 1852673222 }, - "m_requiredXP": { - "type": "unsigned int", + "m_sortOrder": { + "type": "int", "id": 2, - "offset": 80, + "offset": 148, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1890811574 + "hash": 1411218206 }, - "m_powerCardCount": { - "type": "unsigned int", + "m_duration": { + "type": "double", "id": 3, - "offset": 84, + "offset": 192, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1299301661 + "hash": 2727932435 }, - "m_powerCardName": { + "m_stackingCategories": { "type": "std::string", "id": 4, - "offset": 88, - "flags": 268435463, + "offset": 160, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1774497525 + }, + "m_isPersistent": { + "type": "bool", + "id": 5, + "offset": 153, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1856508131, - "enum_options": { - "__BASECLASS": "SpellTemplate" - } + "hash": 923861920 }, - "m_powerCardName2": { + "m_bIsOnPet": { + "type": "bool", + "id": 6, + "offset": 154, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 522593303 + }, + "m_isPublic": { + "type": "bool", + "id": 7, + "offset": 152, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1728439822 + }, + "m_visualEffectAddName": { "type": "std::string", - "id": 5, - "offset": 120, - "flags": 268435463, + "id": 8, + "offset": 200, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2598131765, + "hash": 3382086694 + }, + "m_visualEffectRemoveName": { + "type": "std::string", + "id": 9, + "offset": 232, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1541697323 + }, + "m_onAddFunctorName": { + "type": "std::string", + "id": 10, + "offset": 280, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 1561843107 + }, + "m_onRemoveFunctorName": { + "type": "std::string", + "id": 11, + "offset": 312, + "flags": 7, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 2559017864 + }, + "m_stackingRule": { + "type": "enum STACKING_RULE", + "id": 12, + "offset": 144, + "flags": 2097159, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": false, + "hash": 431568889, "enum_options": { - "__BASECLASS": "SpellTemplate" + "STACKING_ALLOWED": 0, + "STACKING_NOSTACK": 1, + "STACKING_REPLACE": 2 } }, - "m_powerCardName3": { + "m_spellName": { "type": "std::string", - "id": 6, - "offset": 152, + "id": 13, + "offset": 360, "flags": 268435463, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2598131766, + "hash": 2688485244, "enum_options": { "__BASECLASS": "SpellTemplate" } }, - "m_lootTable": { - "type": "std::string", - "id": 7, - "offset": 184, + "m_numSpells": { + "type": "int", + "id": 14, + "offset": 392, "flags": 7, - "container": "List", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 2539512673 + "hash": 1269498237 } } }, - "2082208076": { - "name": "class SharedPointer", + "1873514951": { + "name": "class SG_GameEvent*", "bases": [ "PropertyClass" ], - "hash": 2082208076, + "hash": 1873514951, "properties": { - "m_zoneName": { + "m_eventName": { "type": "std::string", "id": 0, "offset": 72, @@ -690844,580 +693338,777 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 2171167736 + "hash": 3493260286 }, - "m_maximumLevel": { - "type": "int", + "m_actions": { + "type": "class SharedPointer", "id": 1, "offset": 104, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 285381904 + "pointer": true, + "hash": 3152419933 } } }, - "1276556399": { - "name": "class AdvPvPActor", + "1019731476": { + "name": "class PetDerbyObstacleBehaviorTemplate*", "bases": [ - "PvPActor", - "MatchActor", + "BehaviorTemplate", "PropertyClass" ], - "hash": 1276556399, + "hash": 1019731476, "properties": { - "m_nActorID": { - "type": "gid", + "m_behaviorName": { + "type": "std::string", "id": 0, - "offset": 88, - "flags": 31, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 663762476 + "hash": 3130754092 }, - "m_nLadderContainerID": { - "type": "gid", + "m_actionType": { + "type": "enum PetDerbyActions", "id": 1, - "offset": 96, - "flags": 31, + "offset": 120, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 782107042 + "hash": 2398162476, + "enum_options": { + "PDA_None": 0, + "PDA_Duck": 2, + "PDA_Jump": 1 + } }, - "m_nTournamentNameID": { - "type": "unsigned int", + "m_canDestroy": { + "type": "bool", "id": 2, - "offset": 104, - "flags": 31, + "offset": 124, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 471412886 + "hash": 1271539151 }, - "m_nTournamentID": { - "type": "gid", + "m_decisionRadius": { + "type": "float", "id": 3, - "offset": 112, - "flags": 31, + "offset": 128, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 105258688 + "hash": 104770413 }, - "m_leagueID": { - "type": "unsigned int", + "m_moraleIncrease": { + "type": "int", "id": 4, - "offset": 124, - "flags": 31, + "offset": 132, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 692361645 + "hash": 202238852 }, - "m_seasonID": { - "type": "unsigned int", + "m_spinEffect": { + "type": "std::string", "id": 5, - "offset": 120, - "flags": 31, + "offset": 184, + "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 535260643 + "hash": 1896457826 }, - "m_nMatchNameID": { - "type": "unsigned int", + "m_impactSound": { + "type": "std::string", "id": 6, - "offset": 128, - "flags": 31, + "offset": 216, + "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 497033398 + "hash": 2087348962 }, - "m_nMatchID": { - "type": "gid", + "m_addToWorldSound": { + "type": "std::string", "id": 7, - "offset": 136, - "flags": 31, + "offset": 248, + "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1050279648 + "hash": 3324219384 }, - "m_nTeamID": { - "type": "gid", + "m_derbyEffectList": { + "type": "class SharedPointer", "id": 8, - "offset": 144, - "flags": 31, - "container": "Static", - "dynamic": false, + "offset": 136, + "flags": 7, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 374990266 + "pointer": true, + "hash": 1276867926 }, - "m_status": { - "type": "int", + "m_onActionSuccessEffectList": { + "type": "class SharedPointer", "id": 9, - "offset": 160, - "flags": 31, + "offset": 152, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1046745620 + }, + "m_onActionFailEffectList": { + "type": "class SharedPointer", + "id": 10, + "offset": 168, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 901707255 + } + } + }, + "593207899": { + "name": "class SharedPointer", + "bases": [ + "BehaviorInstance", + "PropertyClass" + ], + "hash": 593207899, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 960781182 + "hash": 223437287 }, - "m_costAdj": { - "type": "class MatchCostAdjustment", - "id": 10, - "offset": 200, - "flags": 31, + "m_maxSlots": { + "type": "unsigned char", + "id": 1, + "offset": 128, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 913243331 + "hash": 792508619 }, - "m_pLadder": { - "type": "class SharedPointer", - "id": 11, - "offset": 304, + "m_morphingSlots": { + "type": "class SharedPointer", + "id": 2, + "offset": 112, "flags": 31, - "container": "Static", - "dynamic": false, + "container": "List", + "dynamic": true, "singleton": false, "pointer": true, - "hash": 2484171182 + "hash": 2241134624 }, - "m_bracketID": { - "type": "gid", - "id": 12, - "offset": 152, - "flags": 31, + "m_energyTickTimeSecs": { + "type": "unsigned int", + "id": 3, + "offset": 136, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 441272961 + "hash": 1255384991 }, - "m_overridingELO": { + "m_energy": { "type": "int", - "id": 13, - "offset": 284, - "flags": 31, + "id": 4, + "offset": 132, + "flags": 63, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1428697363 + "hash": 405911268 }, - "m_matchKFactor": { - "type": "int", - "id": 14, - "offset": 288, + "m_playingAsPet": { + "type": "bool", + "id": 5, + "offset": 140, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 773340305 - }, - "m_userID": { - "type": "gid", - "id": 15, - "offset": 80, - "flags": 31, + "hash": 1865705156 + } + } + }, + "170774222": { + "name": "class SharedPointer", + "bases": [ + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 170774222, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1037989700 + "hash": 3130754092 }, - "m_matchMakingRangeForMatches": { + "m_itemList": { "type": "unsigned int", - "id": 16, - "offset": 320, - "flags": 31, + "id": 1, + "offset": 120, + "flags": 33554439, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1892907768 + }, + "m_equipmentTemplate": { + "type": "std::string", + "id": 2, + "offset": 152, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1193045098 + "hash": 2464606287 }, - "m_maxMatchMakingRangeForMatches": { - "type": "unsigned int", - "id": 17, - "offset": 324, - "flags": 31, + "m_infoList": { + "type": "class SharedPointer", + "id": 3, + "offset": 136, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 1525681909 + } + } + }, + "1443448914": { + "name": "class AnimationBehaviorTemplate*", + "bases": [ + "RenderBehaviorTemplate", + "BehaviorTemplate", + "PropertyClass" + ], + "hash": 1443448914, + "properties": { + "m_behaviorName": { + "type": "std::string", + "id": 0, + "offset": 72, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1279540944 + "hash": 3130754092 }, - "m_allowRangeToExceedMaxForMatches": { - "type": "bool", - "id": 18, - "offset": 328, - "flags": 31, + "m_assetName": { + "type": "std::string", + "id": 1, + "offset": 120, + "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1260448226 + "hash": 1513131580 }, - "m_matchCrownsCost": { - "type": "int", - "id": 19, - "offset": 280, - "flags": 31, + "m_proxyName": { + "type": "std::string", + "id": 2, + "offset": 152, + "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1094489596 + "hash": 3120358366 }, - "m_machineID": { - "type": "gid", - "id": 20, - "offset": 336, - "flags": 31, + "m_height": { + "type": "float", + "id": 3, + "offset": 184, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 281396698 + "hash": 602977104 }, - "m_tier": { - "type": "int", - "id": 21, - "offset": 344, - "flags": 31, + "m_bStaticObject": { + "type": "bool", + "id": 4, + "offset": 188, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 219884238 + "hash": 108091444 }, - "m_rank": { - "type": "int", - "id": 22, - "offset": 348, - "flags": 31, + "m_bCastsShadow": { + "type": "bool", + "id": 5, + "offset": 189, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 219803942 + "hash": 652868121 }, - "m_rating": { - "type": "int", - "id": 23, - "offset": 352, - "flags": 31, + "m_bFadesIn": { + "type": "bool", + "id": 6, + "offset": 190, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 899783871 + "hash": 263337711, + "enum_options": { + "__DEFAULT": 1 + } }, - "m_levelBand": { - "type": "int", - "id": 24, - "offset": 356, - "flags": 31, + "m_opacity": { + "type": "float", + "id": 7, + "offset": 192, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2097286567 + "hash": 700308464, + "enum_options": { + "__DEFAULT": 1 + } }, - "m_enteredQueue": { - "type": "int", - "id": 25, - "offset": 376, - "flags": 31, + "m_bFadesOut": { + "type": "bool", + "id": 8, + "offset": 196, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 638238406 + "hash": 17988464, + "enum_options": { + "__DEFAULT": 1 + } }, - "m_isSubscriber": { + "m_bPortalExcluded": { "type": "bool", - "id": 26, - "offset": 428, - "flags": 31, + "id": 9, + "offset": 197, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 952325795 + "hash": 239086293 }, - "m_meetBracketBadgeRequirnments": { - "type": "bool", - "id": 27, - "offset": 429, - "flags": 31, + "m_scale": { + "type": "float", + "id": 10, + "offset": 200, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 438139258 + "hash": 899693439, + "enum_options": { + "__DEFAULT": 1 + } }, - "m_1v1": { + "m_bCanBeHiddenByCamera": { "type": "bool", - "id": 28, - "offset": 430, - "flags": 31, + "id": 11, + "offset": 204, + "flags": 263, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 269458571 + "hash": 185252414 }, - "m_streak": { - "type": "int", - "id": 29, - "offset": 360, - "flags": 31, + "m_nLightType": { + "type": "enum RenderBehaviorTemplate::LightingType", + "id": 12, + "offset": 208, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 961375108 + "hash": 2027385184, + "enum_options": { + "None": 0, + "Char": 1, + "Env": 2 + } }, - "m_matches": { - "type": "int", - "id": 30, - "offset": 364, - "flags": 31, + "m_shadowAssetName": { + "type": "std::string", + "id": 13, + "offset": 216, + "flags": 131335, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1757638687 + "hash": 1844059970 }, - "m_lastFight": { + "m_enableReqs": { + "type": "class SharedPointer", + "id": 14, + "offset": 248, + "flags": 263, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3158020443 + }, + "m_skeletonID": { "type": "int", - "id": 31, - "offset": 368, - "flags": 31, + "id": 15, + "offset": 264, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 91176384 + "hash": 1375865996 }, - "m_PVPHistoryStr": { + "m_dataLookupAssetName": { "type": "std::string", - "id": 32, - "offset": 384, - "flags": 31, + "id": 16, + "offset": 272, + "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1498439420 + "hash": 1944770480 }, - "m_maxCritHit": { - "type": "float", - "id": 33, - "offset": 416, - "flags": 31, + "m_animationAssetName": { + "type": "std::string", + "id": 17, + "offset": 304, + "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2225327348 + "hash": 2944957756 }, - "m_maxBlockCrit": { + "m_movementScale": { "type": "float", - "id": 34, - "offset": 420, - "flags": 31, + "id": 18, + "offset": 336, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 135865530 + "hash": 768663914 }, - "m_shadowPipRating": { - "type": "float", - "id": 35, - "offset": 424, - "flags": 31, + "m_idleAnimationName": { + "type": "std::string", + "id": 19, + "offset": 344, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 507126123 + "hash": 1616739386 }, - "m_optInOut": { + "m_animationEventList": { + "type": "class SharedPointer", + "id": 20, + "offset": 376, + "flags": 7, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2858101335 + } + } + }, + "1874568637": { + "name": "class SharedPointer", + "bases": [ + "Window", + "PropertyClass" + ], + "hash": 1874568637, + "properties": { + "m_sName": { "type": "std::string", - "id": 36, - "offset": 168, - "flags": 31, + "id": 0, + "offset": 80, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3013935453 + "hash": 2306437263 }, - "m_playerTimeDraw": { - "type": "bool", - "id": 37, - "offset": 431, - "flags": 31, + "m_Children": { + "type": "class SharedPointer", + "id": 1, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, + "singleton": false, + "pointer": true, + "hash": 2621225959 + }, + "m_Style": { + "type": "unsigned int", + "id": 2, + "offset": 152, + "flags": 1048583, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 447636221 + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "SCALE_CHILDREN": 2, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_SCROLL": 16, + "FOCUS_LOCKED": 64, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152 + } }, - "m_pvpStatus": { - "type": "unsigned char", - "id": 38, - "offset": 432, - "flags": 31, + "m_Flags": { + "type": "unsigned int", + "id": 3, + "offset": 156, + "flags": 1048583, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 773570858 + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } }, - "m_gender": { - "type": "short", - "id": 39, - "offset": 434, - "flags": 31, + "m_Window": { + "type": "class Rect", + "id": 4, + "offset": 160, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 564443897 + "hash": 3105139380 }, - "m_level": { - "type": "int", - "id": 40, - "offset": 436, - "flags": 31, + "m_fTargetAlpha": { + "type": "float", + "id": 5, + "offset": 212, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 801285362 + "hash": 1809129834 }, - "m_nameBlob": { - "type": "std::string", - "id": 41, - "offset": 440, - "flags": 31, + "m_fDisabledAlpha": { + "type": "float", + "id": 6, + "offset": 216, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3058206907 + "hash": 1389987675 }, - "m_sSchool": { - "type": "std::string", - "id": 42, - "offset": 472, - "flags": 31, + "m_fAlpha": { + "type": "float", + "id": 7, + "offset": 208, + "flags": 65671, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1846342998 + "hash": 482130755 }, - "m_timeLeft": { - "type": "int", - "id": 43, - "offset": 508, - "flags": 31, + "m_pWindowStyle": { + "type": "class SharedPointer", + "id": 8, + "offset": 232, + "flags": 135, + "container": "Static", + "dynamic": false, + "singleton": false, + "pointer": true, + "hash": 3623628394 + }, + "m_sHelp": { + "type": "std::wstring", + "id": 9, + "offset": 248, + "flags": 4194439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1315288020 + "hash": 2102211316 }, - "m_startTime": { - "type": "unsigned int", - "id": 44, - "offset": 512, - "flags": 31, + "m_sScript": { + "type": "std::string", + "id": 10, + "offset": 352, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1598371274 + "hash": 1846695875 }, - "m_elo": { - "type": "int", - "id": 45, - "offset": 516, - "flags": 31, + "m_Offset": { + "type": "class Point", + "id": 11, + "offset": 192, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 267033754 + "hash": 3389835433 }, - "m_wins": { - "type": "int", - "id": 46, - "offset": 520, - "flags": 31, + "m_Scale": { + "type": "class Point", + "id": 12, + "offset": 200, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 219992347 + "hash": 2547159940 }, - "m_losses": { - "type": "int", - "id": 47, - "offset": 524, - "flags": 31, + "m_sTip": { + "type": "std::wstring", + "id": 13, + "offset": 392, + "flags": 4194439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 681549075 + "hash": 1513510520 }, - "m_ties": { - "type": "int", - "id": 48, - "offset": 528, - "flags": 31, + "m_BubbleList": { + "type": "class WindowBubble", + "id": 14, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 2587533771 + }, + "m_ParentOffset": { + "type": "class Rect", + "id": 15, + "offset": 176, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 219884239 + "hash": 3091503757 } } }, - "903447185": { - "name": "class BackpackBuddyEquipmentOptions", + "1020038651": { + "name": "class TreasureCardPosterBehaviorTemplate*", "bases": [ + "BehaviorTemplate", "PropertyClass" ], - "hash": 903447185, + "hash": 1020038651, "properties": { - "m_includeHats": { - "type": "bool", + "m_behaviorName": { + "type": "std::string", "id": 0, "offset": 72, "flags": 7, @@ -691425,290 +694116,200 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 692971815 + "hash": 3130754092 }, - "m_includeRobes": { - "type": "bool", + "m_materialName": { + "type": "std::string", "id": 1, - "offset": 73, + "offset": 120, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1323347506 + "hash": 1878140043 }, - "m_includeBoots": { - "type": "bool", + "m_alternateAssetName": { + "type": "std::string", "id": 2, - "offset": 74, + "offset": 152, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1304387422 - }, - "m_includeWands": { - "type": "bool", - "id": 3, - "offset": 75, + "hash": 2009140124 + } + } + }, + "1442023214": { + "name": "class SharedPointer", + "bases": [ + "PathBehaviorTemplate::Action", + "PropertyClass" + ], + "hash": 1442023214, + "properties": { + "m_nPathID": { + "type": "gid", + "id": 0, + "offset": 72, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1328787028 + "hash": 214382368 }, - "m_includeAthames": { - "type": "bool", - "id": 4, - "offset": 76, + "m_nNodeID": { + "type": "int", + "id": 1, + "offset": 80, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1385638394 + "hash": 152152635, + "enum_options": { + "__DEFAULT": 4294967295 + } }, - "m_includeAmulets": { - "type": "bool", - "id": 5, - "offset": 77, + "m_nPriority": { + "type": "int", + "id": 2, + "offset": 84, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1127494706 + "hash": 1515251530, + "enum_options": { + "__DEFAULT": 100 + } }, - "m_includeRings": { - "type": "bool", - "id": 6, - "offset": 78, + "m_nChance": { + "type": "int", + "id": 3, + "offset": 88, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1323145018 + "hash": 1860748394, + "enum_options": { + "__DEFAULT": 50 + } }, - "m_includeDecks": { - "type": "bool", - "id": 7, - "offset": 79, + "m_nDestinationPathID": { + "type": "gid", + "id": 4, + "offset": 96, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1306386529 + "hash": 107013762 }, - "m_includeElixirs": { - "type": "bool", - "id": 8, - "offset": 80, + "m_nDestinationNodeID": { + "type": "int", + "id": 5, + "offset": 104, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1945468375 + "hash": 44784029, + "enum_options": { + "__DEFAULT": 4294967295 + } } } }, - "2081710281": { - "name": "class BlobCacheInterface*", + "1873710101": { + "name": "class ControlButtonState", "bases": [ "PropertyClass" ], - "hash": 2081710281, + "hash": 1873710101, "properties": {} }, - "509133396": { - "name": "class SharedPointer", + "595661052": { + "name": "class SharedPointer", "bases": [ - "ChangeActorStateCinematicAction", - "ActorCinematicAction", - "CinematicAction", + "ServiceOptionBase", "PropertyClass" ], - "hash": 509133396, + "hash": 595661052, "properties": { - "m_timeOffset": { - "type": "float", + "m_serviceName": { + "type": "std::string", "id": 0, "offset": 72, - "flags": 7, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 + "hash": 2206028813 }, - "m_actor": { + "m_iconKey": { "type": "std::string", "id": 1, - "offset": 80, - "flags": 7, + "offset": 168, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2285866132 + "hash": 2457138637 }, - "m_newState": { + "m_displayKey": { "type": "std::string", "id": 2, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2153420230 - } - } - }, - "1275572288": { - "name": "class ClientTextureRemapBehavior", - "bases": [ - "TextureRemapBehavior", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 1275572288, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_textureRemapList": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 3580415920 - } - } - }, - "506799713": { - "name": "class SharedPointer", - "bases": [ - "InventoryBehaviorBase", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 506799713, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 223437287 + "hash": 3023276954 }, - "m_itemList": { - "type": "class SharedPointer", - "id": 1, - "offset": 112, - "flags": 27, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1983655699 - } - } - }, - "506758657": { - "name": "class ClientBGPolymorphSelectBehavior", - "bases": [ - "BGPolymorphSelectBehavior", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 506758657, - "properties": { - "m_behaviorTemplateNameID": { + "m_serviceIndex": { "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - }, - "m_polyCategoryInactiveToRedTeamPlayers": { - "type": "gid", - "id": 1, - "offset": 112, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 757020210 - }, - "m_polyCategoryUnavailableToRedTeamPlayers": { - "type": "gid", - "id": 2, - "offset": 128, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1382977667 - }, - "m_polyCategoryInactiveToBlueTeamPlayers": { - "type": "gid", "id": 3, - "offset": 144, + "offset": 204, "flags": 31, - "container": "List", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 1877669599 + "hash": 2103126710 }, - "m_polyCategoryUnavailableToBlueTeamPlayers": { - "type": "gid", + "m_forceInteract": { + "type": "bool", "id": 4, - "offset": 160, + "offset": 200, "flags": 31, - "container": "List", - "dynamic": true, + "container": "Static", + "dynamic": false, "singleton": false, "pointer": false, - "hash": 1059429200 + "hash": 1705789564 } } }, - "911744610": { - "name": "class SharedPointer", + "1020037115": { + "name": "class TreasureCardPosterBehaviorTemplate", "bases": [ "BehaviorTemplate", "PropertyClass" ], - "hash": 911744610, + "hash": 1020037115, "properties": { "m_behaviorName": { "type": "std::string", @@ -691720,126 +694321,39 @@ "singleton": false, "pointer": false, "hash": 3130754092 - } - } - }, - "2082870084": { - "name": "class SharedPointer", - "bases": [ - "DynaMod", - "PropertyClass" - ], - "hash": 2082870084, - "properties": { - "m_clientTag": { - "type": "std::string", - "id": 0, - "offset": 80, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3409856790 }, - "m_zoneName": { + "m_materialName": { "type": "std::string", "id": 1, - "offset": 112, - "flags": 39, + "offset": 120, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2171167736 + "hash": 1878140043 }, - "m_zoneInstance": { - "type": "gid", + "m_alternateAssetName": { + "type": "std::string", "id": 2, "offset": 152, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 449538121 - }, - "m_originator": { - "type": "gid", - "id": 3, - "offset": 72, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 709051254 - }, - "m_index": { - "type": "int", - "id": 4, - "offset": 160, - "flags": 30, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 798031442 - }, - "m_zoneID": { - "type": "unsigned int", - "id": 5, - "offset": 144, - "flags": 16, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1440651126 - }, - "m_remove": { - "type": "bool", - "id": 6, - "offset": 176, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 906763969 - }, - "m_state": { - "type": "std::string", - "id": 7, - "offset": 184, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2307803100 - }, - "m_stateID": { - "type": "unsigned int", - "id": 8, - "offset": 216, - "flags": 31, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1849561019 + "hash": 2009140124 } } }, - "506226099": { - "name": "class SharedPointer", + "171967452": { + "name": "class JewelSocketWrenchElements*", "bases": [ "PropertyClass" ], - "hash": 506226099, + "hash": 171967452, "properties": { - "m_gamerID": { + "m_socketWrenchTemplateID": { "type": "gid", "id": 0, "offset": 72, @@ -691848,10 +694362,10 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 443045745 + "hash": 1148289553 }, - "m_gamerName": { - "type": "std::wstring", + "m_lowestEquipLevelInclusive": { + "type": "int", "id": 1, "offset": 80, "flags": 7, @@ -691859,71 +694373,63 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 2656017061 + "hash": 1282442502 }, - "m_gamerNameCode": { - "type": "unsigned int", + "m_hightestEquipLevelInclusive": { + "type": "int", "id": 2, - "offset": 112, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 267246197 - }, - "m_gameScore": { - "type": "float", - "id": 3, - "offset": 116, + "offset": 84, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1416539789 - }, - "m_gamerRace": { - "type": "std::string", - "id": 4, - "offset": 120, - "flags": 7, + "hash": 1111256264 + } + } + }, + "595084853": { + "name": "class CastleToursFavoritesBehavior*", + "bases": [ + "CastleToursFavoritesBehaviorBase", + "BehaviorInstance", + "PropertyClass" + ], + "hash": 595084853, + "properties": { + "m_behaviorTemplateNameID": { + "type": "unsigned int", + "id": 0, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2860175138 + "hash": 223437287 }, - "m_gamerGender": { + "m_castleToursFavoritesData": { "type": "std::string", - "id": 5, - "offset": 152, - "flags": 7, + "id": 1, + "offset": 128, + "flags": 575, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2948235676 + "hash": 1708015073 } } }, - "1276885972": { - "name": "class PermanentCrownShopDisplayParams", - "bases": [], - "hash": 1276885972, - "properties": {} - }, - "905422721": { - "name": "class SharedPointer", + "1442272813": { + "name": "class SharedPointer", "bases": [ - "ActorCinematicAction", - "CinematicAction", "PropertyClass" ], - "hash": 905422721, + "hash": 1442272813, "properties": { - "m_timeOffset": { - "type": "float", + "m_animationPath": { + "type": "std::string", "id": 0, "offset": 72, "flags": 7, @@ -691931,173 +694437,159 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 + "hash": 3393486152 }, - "m_actor": { + "m_sound": { "type": "std::string", "id": 1, - "offset": 80, + "offset": 104, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2285866132 + "hash": 2307644996 }, - "m_effectName": { - "type": "std::string", + "m_length": { + "type": "float", "id": 2, - "offset": 120, + "offset": 136, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2029161513 + "hash": 759698745 }, - "m_nodeName": { - "type": "std::string", + "m_textTags": { + "type": "class SharedPointer", "id": 3, - "offset": 152, + "offset": 144, "flags": 7, - "container": "Static", - "dynamic": false, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 3607089954 + "pointer": true, + "hash": 1768413037 } } }, - "2082396287": { - "name": "class SharedPointer", + "171205837": { + "name": "class SharedPointer", "bases": [ "PropertyClass" ], - "hash": 2082396287, + "hash": 171205837, "properties": { - "m_world": { - "type": "std::string", + "m_matchTeamGID": { + "type": "gid", "id": 0, - "offset": 72, - "flags": 7, + "offset": 88, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2312385347 + "hash": 725139968 }, - "m_hubZone": { - "type": "std::string", + "m_matchTeam": { + "type": "class SharedPointer", "id": 1, - "offset": 104, - "flags": 268435463, + "offset": 72, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, - "pointer": false, - "hash": 1854011510, - "enum_options": { - "__BASECLASS": "ZoneData" - } + "pointer": true, + "hash": 1737359170 }, - "m_location": { - "type": "std::string", + "m_points": { + "type": "unsigned int", "id": 2, - "offset": 136, - "flags": 7, + "offset": 100, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2079561588 + "hash": 1049128778 }, - "m_universeTPZone": { - "type": "std::string", + "m_matchResults": { + "type": "class SharedPointer", "id": 3, - "offset": 168, - "flags": 268435463, - "container": "Static", - "dynamic": false, + "offset": 112, + "flags": 31, + "container": "List", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 1587575180, - "enum_options": { - "__BASECLASS": "ZoneData" - } + "pointer": true, + "hash": 615114630 }, - "m_universeTPLocation": { - "type": "std::string", + "m_teamID": { + "type": "unsigned int", "id": 4, - "offset": 200, - "flags": 7, + "offset": 128, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3141910185 + "hash": 1193521089 }, - "m_hubZoneDisplayName": { - "type": "std::string", + "m_ranking": { + "type": "unsigned int", "id": 5, - "offset": 232, - "flags": 8388615, + "offset": 132, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3166854829 + "hash": 1977103383 }, - "m_specialZones": { - "type": "std::string", + "m_pendingResult": { + "type": "class SharedPointer", "id": 6, - "offset": 264, - "flags": 7, - "container": "List", - "dynamic": true, + "offset": 176, + "flags": 31, + "container": "Static", + "dynamic": false, "singleton": false, - "pointer": false, - "hash": 2731574123 - } - } - }, - "904170853": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 904170853, - "properties": { - "m_playerID": { - "type": "gid", - "id": 0, - "offset": 72, + "pointer": true, + "hash": 599580139 + }, + "m_name": { + "type": "std::string", + "id": 7, + "offset": 144, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1774633426 + "hash": 1717359772 }, - "m_team": { - "type": "std::string", - "id": 1, - "offset": 80, + "m_pointsAsOfTheLastCompletedRound": { + "type": "unsigned int", + "id": 8, + "offset": 104, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1717579362 + "hash": 2267670253 } } }, - "1277275159": { - "name": "class SharedPointer", + "1873728014": { + "name": "class WindowHelp", "bases": [ + "ControlText", "Window", "PropertyClass" ], - "hash": 1277275159, + "hash": 1873728014, "properties": { "m_sName": { "type": "std::string", @@ -692133,11 +694625,9 @@ "hash": 983582334, "enum_options": { "HAS_BACK": 1, - "SCALE_CHILDREN": 2, "CAN_MOVE": 4, "CAN_SIZE": 8, "CAN_SCROLL": 16, - "FOCUS_LOCKED": 64, "CAN_FOCUS": 128, "CAN_DOCK": 32, "DO_NOT_CAPTURE_MOUSE": 256, @@ -692149,7 +694639,9 @@ "USE_ALPHA_BOUNDS": 8192, "AUTO_GROW": 16384, "AUTO_SHRINK": 32768, - "AUTO_RESIZE": 49152 + "AUTO_RESIZE": 49152, + "DO_NOT_WRAP": 134217728, + "FIT_TEXT": 268435456 } }, "m_Flags": { @@ -692309,657 +694801,392 @@ "singleton": false, "pointer": false, "hash": 3091503757 - } - } - }, - "903675080": { - "name": "class SharedPointer", - "bases": [ - "GeomParams", - "PropertyClass" - ], - "hash": 903675080, - "properties": { - "m_eType": { - "type": "enum ProxyType", - "id": 0, - "offset": 72, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1656534066, - "enum_options": { - "ProxyTypeBox": 0, - "ProxyTypeRay": 1, - "ProxyTypeSphere": 2, - "ProxyTypeCylinder": 3, - "ProxyTypeTube": 4, - "ProxyTypePlane": 5, - "ProxyTypeMesh": 6, - "ProxyTypeInvalid": 7 - } - }, - "m_fRadius": { - "type": "float", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 787972805 - } - } - }, - "903643793": { - "name": "class BackpackBuddyEquipmentOptions*", - "bases": [ - "PropertyClass" - ], - "hash": 903643793, - "properties": { - "m_includeHats": { - "type": "bool", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 692971815 - }, - "m_includeRobes": { - "type": "bool", - "id": 1, - "offset": 73, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1323347506 }, - "m_includeBoots": { - "type": "bool", - "id": 2, - "offset": 74, - "flags": 7, + "m_sText": { + "type": "std::wstring", + "id": 16, + "offset": 584, + "flags": 4194439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1304387422 + "hash": 2102642960 }, - "m_includeWands": { - "type": "bool", - "id": 3, - "offset": 75, - "flags": 7, + "m_sTooltip": { + "type": "std::wstring", + "id": 17, + "offset": 616, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1328787028 + "hash": 1680475798 }, - "m_includeAthames": { + "m_bUseDropShadow": { "type": "bool", - "id": 4, - "offset": 76, - "flags": 7, + "id": 18, + "offset": 653, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1385638394 + "hash": 93063037 }, - "m_includeAmulets": { + "m_bUseOutline": { "type": "bool", - "id": 5, - "offset": 77, - "flags": 7, + "id": 19, + "offset": 654, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1127494706 + "hash": 744292994 }, - "m_includeRings": { + "m_bEnableWordWrap": { "type": "bool", - "id": 6, - "offset": 78, - "flags": 7, + "id": 20, + "offset": 655, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1323145018 + "hash": 430904562 }, - "m_includeDecks": { + "m_bEnableToggle": { "type": "bool", - "id": 7, - "offset": 79, - "flags": 7, + "id": 21, + "offset": 652, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1306386529 + "hash": 1937994142 }, - "m_includeElixirs": { - "type": "bool", - "id": 8, - "offset": 80, - "flags": 7, + "m_nLeadingAdjust": { + "type": "int", + "id": 22, + "offset": 656, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1945468375 + "hash": 1559480167 } } }, - "2083195998": { - "name": "enum BountyGoalTemplate::BOUNTY_TYPE", - "bases": [], - "hash": 2083195998, - "properties": {} - }, - "565449433": { - "name": "class CrownsRewardsSchedule*", - "bases": [ - "PropertyClass" - ], - "hash": 565449433, - "properties": {} - }, - "903617821": { - "name": "class SharedPointer", + "171119558": { + "name": "class TemplateManifest*", "bases": [ "PropertyClass" ], - "hash": 903617821, + "hash": 171119558, "properties": { - "m_spellList": { - "type": "unsigned int", + "m_serializedTemplates": { + "type": "class TemplateLocation", "id": 0, "offset": 72, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 1402125129 - }, - "m_upgradedSpellList": { - "type": "unsigned int", - "id": 1, - "offset": 88, - "flags": 31, - "container": "List", + "flags": 7, + "container": "Vector", "dynamic": true, "singleton": false, "pointer": false, - "hash": 1475269301 + "hash": 1656531664 } } }, - "1278005015": { - "name": "class SwapShadowMaterialActorCinematicAction*", + "595095093": { + "name": "class CastleToursFavoritesBehavior", "bases": [ - "ActorCinematicAction", - "CinematicAction", + "CastleToursFavoritesBehaviorBase", + "BehaviorInstance", "PropertyClass" ], - "hash": 1278005015, + "hash": 595095093, "properties": { - "m_timeOffset": { - "type": "float", + "m_behaviorTemplateNameID": { + "type": "unsigned int", "id": 0, - "offset": 72, - "flags": 7, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 + "hash": 223437287 }, - "m_actor": { + "m_castleToursFavoritesData": { "type": "std::string", "id": 1, - "offset": 80, - "flags": 7, + "offset": 128, + "flags": 575, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2285866132 + "hash": 1708015073 } } }, - "1277943989": { - "name": "class PromoReward*", + "171021254": { + "name": "class TemplateManifest", "bases": [ "PropertyClass" ], - "hash": 1277943989, + "hash": 171021254, "properties": { - "m_desc": { - "type": "std::string", + "m_serializedTemplates": { + "type": "class TemplateLocation", "id": 0, "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1717004954 - }, - "m_type": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 31, - "container": "Static", - "dynamic": false, + "flags": 7, + "container": "Vector", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 1717601629 + "hash": 1656531664 } } }, - "2085490330": { - "name": "class SharedPointer", + "1021926573": { + "name": "class ClientObject*", "bases": [ + "CoreObject", "PropertyClass" ], - "hash": 2085490330, + "hash": 1021926573, "properties": { - "m_prepEntries": { - "type": "class PrepEntry*", + "m_inactiveBehaviors": { + "type": "class SharedPointer", "id": 0, - "offset": 72, + "offset": 224, "flags": 31, - "container": "List", + "container": "Vector", "dynamic": true, "singleton": false, "pointer": true, - "hash": 2230286528 + "hash": 1850812559 }, - "m_underwayEntries": { - "type": "class UnderwayEntry*", + "m_globalID.m_full": { + "type": "unsigned __int64", "id": 1, - "offset": 88, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1490882790 - }, - "m_availableCompleteEntries": { - "type": "class AvailableCompleteEntry*", - "id": 2, - "offset": 104, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2930050163 - }, - "m_availableQuestEntries": { - "type": "class AvailableQuestEntry*", - "id": 3, - "offset": 120, - "flags": 31, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 729081883 - } - } - }, - "510688168": { - "name": "class CinematicTemplateAnimationData*", - "bases": [ - "PropertyClass" - ], - "hash": 510688168, - "properties": { - "m_animationPath": { - "type": "std::string", - "id": 0, "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3393486152 - }, - "m_sound": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 7, + "flags": 16777247, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2307644996 + "hash": 2312465444 }, - "m_length": { - "type": "float", + "m_permID": { + "type": "unsigned __int64", "id": 2, - "offset": 136, - "flags": 7, + "offset": 80, + "flags": 16777247, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 759698745 + "hash": 1298909658 }, - "m_textTags": { - "type": "class SharedPointer", + "m_location": { + "type": "class Vector3D", "id": 3, - "offset": 144, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 1768413037 - } - } - }, - "2084415420": { - "name": "class GroupMember*", - "bases": [ - "PropertyClass" - ], - "hash": 2084415420, - "properties": { - "m_GlobalID": { - "type": "gid", - "id": 0, - "offset": 72, + "offset": 168, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 843146230 + "hash": 2239683611 }, - "m_CharacterID": { - "type": "gid", - "id": 1, - "offset": 80, + "m_orientation": { + "type": "class Vector3D", + "id": 4, + "offset": 180, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1626688306 + "hash": 2344058766 }, - "m_sNameBlob": { - "type": "std::string", - "id": 2, - "offset": 88, + "m_fScale": { + "type": "float", + "id": 5, + "offset": 196, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2372396590 + "hash": 503137701 }, - "m_schoolID": { - "type": "unsigned int", - "id": 3, - "offset": 120, + "m_templateID.m_full": { + "type": "unsigned __int64", + "id": 6, + "offset": 96, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 369010242 + "hash": 633907631 }, - "m_level": { - "type": "unsigned int", - "id": 4, - "offset": 124, + "m_debugName": { + "type": "std::string", + "id": 7, + "offset": 104, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1012687813 + "hash": 3553984419 }, - "m_zoneDisplayName": { + "m_displayKey": { "type": "std::string", - "id": 5, - "offset": 128, + "id": 8, + "offset": 136, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1962339438 + "hash": 3023276954 }, - "m_hasFilteredChat": { - "type": "unsigned char", - "id": 6, - "offset": 160, + "m_zoneTagID": { + "type": "unsigned int", + "id": 9, + "offset": 344, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2657823291 + "hash": 965291410 }, - "m_sigilSlot": { - "type": "unsigned int", - "id": 7, - "offset": 164, + "m_speedMultiplier": { + "type": "short", + "id": 10, + "offset": 192, "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1891552167 - } - } - }, - "508746613": { - "name": "class PlayerInteractiveMusicLoops", - "bases": [ - "PropertyClass" - ], - "hash": 508746613, - "properties": { - "m_playerRecordedMusicLoopList": { - "type": "class SharedPointer", - "id": 0, - "offset": 72, - "flags": 65543, - "container": "List", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 2520861630 - } - } - }, - "1277953215": { - "name": "enum FishingSpellTemplate::FishingSpellType", - "bases": [], - "hash": 1277953215, - "properties": {} - }, - "904079585": { - "name": "class SharedPointer", - "bases": [ - "Result", - "PropertyClass" - ], - "hash": 904079585, - "properties": { - "m_script": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, + "hash": 123130076 + }, + "m_nMobileID": { + "type": "unsigned short", + "id": 11, + "offset": 194, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2438918928 + "hash": 1054318939 }, - "m_function": { - "type": "std::string", - "id": 1, - "offset": 104, - "flags": 7, + "m_characterId": { + "type": "gid", + "id": 12, + "offset": 440, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1511192225 + "hash": 210498418 } } }, - "2083819973": { - "name": "class SharedPointer", + "1443896326": { + "name": "class PathMovementBehaviorTemplate", "bases": [ - "FXDef", + "BehaviorTemplate", "PropertyClass" ], - "hash": 2083819973, + "hash": 1443896326, "properties": { - "m_FXFile": { + "m_behaviorName": { "type": "std::string", "id": 0, "offset": 72, - "flags": 131079, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2810683385 + "hash": 3130754092 }, - "m_stackingCategory": { - "type": "std::string", + "m_movementSpeed": { + "type": "float", "id": 1, - "offset": 104, + "offset": 120, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2363740365 + "hash": 769135219 }, - "m_repeatTime": { + "m_movementScale": { "type": "float", "id": 2, - "offset": 136, + "offset": 124, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 453389511 + "hash": 768663914 } } }, - "904013117": { - "name": "class std::vector >", - "bases": [], - "hash": 904013117, - "properties": {} - }, - "509426772": { - "name": "class DamageEventCinematicAction", + "1874631798": { + "name": "class SharedPointer", "bases": [ - "ActorCinematicAction", - "CinematicAction", "PropertyClass" ], - "hash": 509426772, + "hash": 1874631798, "properties": { - "m_timeOffset": { - "type": "float", + "m_bracketIDList": { + "type": "gid", "id": 0, "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, + "flags": 31, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 2285866132 + "hash": 1493156413 } } }, - "1278311783": { - "name": "class SharedPointer", + "1020756089": { + "name": "class TagGameComponent*", "bases": [ - "BehaviorTemplate", + "HousingGameInterface", "PropertyClass" ], - "hash": 1278311783, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - }, - "m_stateSetName": { - "type": "std::string", - "id": 1, - "offset": 120, - "flags": 268435463, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1863712969, - "enum_options": { - "__BASECLASS": "ObjStateSet" - } - } - } + "hash": 1020756089, + "properties": {} }, - "2085066254": { - "name": "class ConicalStateSoundBehaviorTemplate*", + "1443814052": { + "name": "class SharedPointer", "bases": [ - "ConicalSoundBehaviorTemplate", - "PositionalSoundBehaviorTemplate", - "SoundBehaviorTemplate", - "AreaBehaviorTemplate", + "ObstacleCourseObstacleBehaviorTemplate", "BehaviorTemplate", "PropertyClass" ], - "hash": 2085066254, + "hash": 1443814052, "properties": { "m_behaviorName": { "type": "std::string", @@ -692972,7 +695199,7 @@ "pointer": false, "hash": 3130754092 }, - "m_radius": { + "m_rate": { "type": "float", "id": 1, "offset": 120, @@ -692981,31 +695208,21 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 989410271 + "hash": 310005283 }, - "m_category": { - "type": "enum AudioCategory", + "m_penaltyTime": { + "type": "float", "id": 2, "offset": 124, - "flags": 2097159, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2951251982, - "enum_options": { - "AudioCategory_Irrelevent": 0, - "AudioCategory_Accoustic": 1, - "AudioCategory_Noise": 2, - "AudioCategory_Music": 3, - "AudioCategory_MusicAtSFXVolume": 4, - "AudioCategory_Dialog": 5, - "AudioCategory_UI": 6, - "AudioCategory_NoiseAtMusicVolume": 7 - } + "hash": 2083389507 }, - "m_exclusive": { - "type": "bool", + "m_totalObstacleSize": { + "type": "class Vector3D", "id": 3, "offset": 128, "flags": 7, @@ -693013,1257 +695230,741 @@ "dynamic": false, "singleton": false, "pointer": false, - "hash": 824383403 + "hash": 2379878414 }, - "m_active": { - "type": "bool", + "m_bounds": { + "type": "class Vector3D", "id": 4, - "offset": 129, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 239335471 - }, - "m_enableReqs": { - "type": "class SharedPointer", - "id": 5, - "offset": 136, - "flags": 263, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 3158020443 - }, - "m_trackFilenameList": { - "type": "std::string", - "id": 6, "offset": 152, "flags": 7, "container": "Vector", "dynamic": true, "singleton": false, "pointer": false, - "hash": 2531081709 - }, - "m_playList": { - "type": "class PlayListEntry*", - "id": 7, - "offset": 176, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 3907873161 - }, - "m_priority": { - "type": "int", - "id": 8, - "offset": 208, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1235205852 - }, - "m_volume": { - "type": "float", - "id": 9, - "offset": 200, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1162855023 - }, - "m_loopCount": { - "type": "int", - "id": 10, - "offset": 204, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 865634717 - }, - "m_progression": { - "type": "enum PlayList::Progression", - "id": 11, - "offset": 220, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3279400238, - "enum_options": { - "Sequence": 0, - "Random": 1, - "SequenceOnceOnly": 2, - "RandomNoRepeat": 3 - } - }, - "m_progressMin": { - "type": "float", - "id": 12, - "offset": 212, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1497550192 - }, - "m_progressMax": { - "type": "float", - "id": 13, - "offset": 216, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1497549938 - }, - "m_audioFilterSet": { - "type": "unsigned int", - "id": 14, - "offset": 224, - "flags": 33554439, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 831339825 - }, - "m_animationNameFilter": { - "type": "std::string", - "id": 15, - "offset": 232, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2292854242 - }, - "m_functionallabel": { - "type": "std::string", - "id": 16, - "offset": 264, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3589331278 - }, - "m_innerRadius": { - "type": "float", - "id": 17, - "offset": 296, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 686816091 + "hash": 1948083181 }, - "m_inverted": { + "m_orientToPath": { "type": "bool", - "id": 18, - "offset": 300, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1034821044 - }, - "m_fInsideAngle": { - "type": "float", - "id": 19, - "offset": 304, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1114383840 - }, - "m_fOutsideAngle": { - "type": "float", - "id": 20, - "offset": 308, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1627152289 - }, - "m_fOutsideVolume": { - "type": "float", - "id": 21, - "offset": 312, + "id": 5, + "offset": 176, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 90369618 + "hash": 655036148 }, - "m_fRangeScale": { + "m_heightUp": { "type": "float", - "id": 22, - "offset": 316, + "id": 6, + "offset": 140, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1749294034 + "hash": 2208713013 }, - "m_fAttenuationFactor": { + "m_heightDown": { "type": "float", - "id": 23, - "offset": 320, + "id": 7, + "offset": 144, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 273292776 - }, - "m_eAttenuationType": { - "type": "enum PositionInfoAttenuationType", - "id": 24, - "offset": 324, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2427193304, - "enum_options": { - "Standard": 0, - "Unit Range Power": 1 - } + "hash": 655333896 } } }, - "509281192": { - "name": "class ObstacleCourseCatapultBehaviorTemplate", + "596383997": { + "name": "class ControlEdit", "bases": [ - "ObstacleCourseObstacleBehaviorTemplate", - "BehaviorTemplate", + "Window", "PropertyClass" ], - "hash": 509281192, + "hash": 596383997, "properties": { - "m_behaviorName": { + "m_sName": { "type": "std::string", "id": 0, - "offset": 72, - "flags": 7, + "offset": 80, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3130754092 + "hash": 2306437263 }, - "m_rate": { - "type": "double", + "m_Children": { + "type": "class SharedPointer", "id": 1, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, + "offset": 112, + "flags": 65671, + "container": "Vector", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 2117614265 + "pointer": true, + "hash": 2621225959 }, - "m_initialYaw": { - "type": "double", + "m_Style": { + "type": "unsigned int", "id": 2, - "offset": 128, - "flags": 7, + "offset": 152, + "flags": 1048583, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2566917224 + "hash": 983582334, + "enum_options": { + "HAS_BACK": 1, + "CAN_MOVE": 4, + "CAN_SIZE": 8, + "CAN_FOCUS": 128, + "CAN_DOCK": 32, + "DO_NOT_CAPTURE_MOUSE": 256, + "IS_TRANSPARENT": 256, + "EFFECT_FADEIN": 512, + "EFFECT_HIGHLIGHT": 1024, + "HAS_NO_BORDER": 2048, + "IGNORE_PARENT_SCALE": 4096, + "USE_ALPHA_BOUNDS": 8192, + "AUTO_GROW": 16384, + "AUTO_SHRINK": 32768, + "AUTO_RESIZE": 49152, + "FORCE_NUMERIC": 16777216, + "FORCE_ALPHA": 268435456, + "FORCE_ALPHANUMERIC": 536870912, + "FORCE_INTEGER": 33554432, + "FORCE_POSITIVE": 67108864, + "FORCE_RANGE": 134217728 + } }, - "m_penaltyTime": { - "type": "double", + "m_Flags": { + "type": "unsigned int", "id": 3, - "offset": 136, - "flags": 7, + "offset": 156, + "flags": 1048583, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3890998489 + "hash": 967851578, + "enum_options": { + "VISIBLE": 1, + "NOCLIP": 2, + "DOCK_OUTSIDE": 131072, + "DOCK_LEFT": 128, + "DOCK_TOP": 512, + "DOCK_RIGHT": 256, + "DOCK_BOTTOM": 1024, + "PARENT_SIZE": 786432, + "PARENT_WIDTH": 262144, + "PARENT_HEIGHT": 524288, + "HCENTER": 32768, + "VCENTER": 65536, + "DISABLED": 2147483648 + } }, - "m_pitch": { - "type": "double", + "m_Window": { + "type": "class Rect", "id": 4, - "offset": 144, - "flags": 7, + "offset": 160, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2703980677 + "hash": 3105139380 }, - "m_maxYaw": { - "type": "double", + "m_fTargetAlpha": { + "type": "float", "id": 5, - "offset": 152, - "flags": 7, + "offset": 212, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2602042948 + "hash": 1809129834 }, - "m_platformWidth": { - "type": "double", + "m_fDisabledAlpha": { + "type": "float", "id": 6, - "offset": 160, - "flags": 7, + "offset": 216, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 4024516466 + "hash": 1389987675 }, - "m_platformHeight": { - "type": "double", + "m_fAlpha": { + "type": "float", "id": 7, - "offset": 168, - "flags": 7, + "offset": 208, + "flags": 65671, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2765202891 + "hash": 482130755 }, - "m_launchSpeed": { - "type": "double", + "m_pWindowStyle": { + "type": "class SharedPointer", "id": 8, - "offset": 176, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2644727001 - }, - "m_launchSpeedUp": { - "type": "double", - "id": 9, - "offset": 184, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3445224318 - }, - "m_collisionHeight": { - "type": "double", - "id": 10, - "offset": 192, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3980975122 - } - } - }, - "1278047383": { - "name": "enum ClassProjectActivityType", - "bases": [], - "hash": 1278047383, - "properties": {} - }, - "2084782222": { - "name": "class SharedPointer", - "bases": [ - "PropertyClass" - ], - "hash": 2084782222, - "properties": { - "m_templates": { - "type": "class WizBangTemplate", - "id": 0, - "offset": 80, - "flags": 7, - "container": "List", - "dynamic": true, - "singleton": true, - "pointer": false, - "hash": 1728528111 - } - } - }, - "904889925": { - "name": "class std::list,class std::allocator > >", - "bases": [], - "hash": 904889925, - "properties": {} - }, - "904712878": { - "name": "class SharedPointer", - "bases": [ - "ObstacleCourseFinishLineBehavior", - "ObstacleCourseObstacleBehavior", - "BehaviorInstance", - "PropertyClass" - ], - "hash": 904712878, - "properties": { - "m_behaviorTemplateNameID": { - "type": "unsigned int", - "id": 0, - "offset": 104, - "flags": 39, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 223437287 - } - } - }, - "2085066334": { - "name": "class ConicalStateSoundBehaviorTemplate", - "bases": [ - "ConicalSoundBehaviorTemplate", - "PositionalSoundBehaviorTemplate", - "SoundBehaviorTemplate", - "AreaBehaviorTemplate", - "BehaviorTemplate", - "PropertyClass" - ], - "hash": 2085066334, - "properties": { - "m_behaviorName": { - "type": "std::string", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 3130754092 - }, - "m_radius": { - "type": "float", - "id": 1, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 989410271 - }, - "m_category": { - "type": "enum AudioCategory", - "id": 2, - "offset": 124, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2951251982, - "enum_options": { - "AudioCategory_Irrelevent": 0, - "AudioCategory_Accoustic": 1, - "AudioCategory_Noise": 2, - "AudioCategory_Music": 3, - "AudioCategory_MusicAtSFXVolume": 4, - "AudioCategory_Dialog": 5, - "AudioCategory_UI": 6, - "AudioCategory_NoiseAtMusicVolume": 7 - } - }, - "m_exclusive": { - "type": "bool", - "id": 3, - "offset": 128, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 824383403 - }, - "m_active": { - "type": "bool", - "id": 4, - "offset": 129, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 239335471 - }, - "m_enableReqs": { - "type": "class SharedPointer", - "id": 5, - "offset": 136, - "flags": 263, + "offset": 232, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": true, - "hash": 3158020443 - }, - "m_trackFilenameList": { - "type": "std::string", - "id": 6, - "offset": 152, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": false, - "hash": 2531081709 - }, - "m_playList": { - "type": "class PlayListEntry*", - "id": 7, - "offset": 176, - "flags": 7, - "container": "Vector", - "dynamic": true, - "singleton": false, - "pointer": true, - "hash": 3907873161 - }, - "m_priority": { - "type": "int", - "id": 8, - "offset": 208, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 1235205852 + "hash": 3623628394 }, - "m_volume": { - "type": "float", + "m_sHelp": { + "type": "std::wstring", "id": 9, - "offset": 200, - "flags": 7, + "offset": 248, + "flags": 4194439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1162855023 + "hash": 2102211316 }, - "m_loopCount": { - "type": "int", + "m_sScript": { + "type": "std::string", "id": 10, - "offset": 204, - "flags": 7, + "offset": 352, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 865634717 + "hash": 1846695875 }, - "m_progression": { - "type": "enum PlayList::Progression", + "m_Offset": { + "type": "class Point", "id": 11, - "offset": 220, - "flags": 2097159, + "offset": 192, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3279400238, - "enum_options": { - "Sequence": 0, - "Random": 1, - "SequenceOnceOnly": 2, - "RandomNoRepeat": 3 - } + "hash": 3389835433 }, - "m_progressMin": { - "type": "float", + "m_Scale": { + "type": "class Point", "id": 12, - "offset": 212, - "flags": 7, + "offset": 200, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1497550192 + "hash": 2547159940 }, - "m_progressMax": { - "type": "float", + "m_sTip": { + "type": "std::wstring", "id": 13, - "offset": 216, - "flags": 7, + "offset": 392, + "flags": 4194439, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1497549938 + "hash": 1513510520 }, - "m_audioFilterSet": { - "type": "unsigned int", + "m_BubbleList": { + "type": "class WindowBubble", "id": 14, - "offset": 224, - "flags": 33554439, - "container": "Static", - "dynamic": false, + "offset": 424, + "flags": 135, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 831339825 + "hash": 2587533771 }, - "m_animationNameFilter": { - "type": "std::string", + "m_ParentOffset": { + "type": "class Rect", "id": 15, - "offset": 232, - "flags": 7, + "offset": 176, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2292854242 + "hash": 3091503757 }, - "m_functionallabel": { - "type": "std::string", + "m_sText": { + "type": "std::wstring", "id": 16, - "offset": 264, - "flags": 7, + "offset": 584, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3589331278 + "hash": 2102642960 }, - "m_innerRadius": { - "type": "float", + "m_nMaxLength": { + "type": "int", "id": 17, - "offset": 296, - "flags": 7, + "offset": 620, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 686816091 + "hash": 1183478416 }, - "m_inverted": { + "m_bPassword": { "type": "bool", "id": 18, - "offset": 300, - "flags": 7, + "offset": 624, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1034821044 + "hash": 1604468200 }, - "m_fInsideAngle": { - "type": "float", + "m_bLog": { + "type": "bool", "id": 19, - "offset": 304, - "flags": 7, + "offset": 625, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1114383840 + "hash": 221687287 }, - "m_fOutsideAngle": { - "type": "float", + "m_previousNext": { + "type": "bool", "id": 20, - "offset": 308, - "flags": 7, + "offset": 627, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1627152289 + "hash": 858581071 }, - "m_fOutsideVolume": { - "type": "float", + "m_nMaxLogSize": { + "type": "int", "id": 21, - "offset": 312, - "flags": 7, + "offset": 712, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 90369618 + "hash": 779573899 }, - "m_fRangeScale": { - "type": "float", + "m_bEditing": { + "type": "bool", "id": 22, - "offset": 316, - "flags": 7, + "offset": 616, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1749294034 + "hash": 1243218553 }, - "m_fAttenuationFactor": { - "type": "float", + "m_bAllowPaste": { + "type": "bool", "id": 23, - "offset": 320, - "flags": 7, + "offset": 626, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 273292776 + "hash": 1129316721 }, - "m_eAttenuationType": { - "type": "enum PositionInfoAttenuationType", + "m_nLogPosition": { + "type": "int", "id": 24, - "offset": 324, - "flags": 2097159, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2427193304, - "enum_options": { - "Standard": 0, - "Unit Range Power": 1 - } - } - } - }, - "513790116": { - "name": "class SharedPointer", - "bases": [ - "DerbyEffect", - "PropertyClass" - ], - "hash": 513790116, - "properties": { - "m_buffType": { - "type": "enum DerbyTalentBuffType", - "id": 0, - "offset": 92, - "flags": 2097183, + "offset": 704, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1149251982, - "enum_options": { - "Buff": 0, - "Debuff": 1, - "Neither": 2 - } + "hash": 1120160767 }, - "m_kTarget": { - "type": "enum DerbyTargetType", - "id": 1, - "offset": 96, - "flags": 2097159, + "m_nCursor": { + "type": "int", + "id": 25, + "offset": 716, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1807803351, - "enum_options": { - "kTargetInFront": 0, - "kTargetBehind": 1, - "kTargetFirst": 2, - "kTargetSelf": 3, - "kTargetAll": 4, - "kTargetLast": 5 - } + "hash": 1876782150 }, - "m_nDuration": { + "m_nEditBegin": { "type": "int", - "id": 2, - "offset": 104, - "flags": 31, + "id": 26, + "offset": 720, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1110167982 + "hash": 1066592403 }, - "m_effectID": { - "type": "unsigned int", - "id": 3, - "offset": 88, - "flags": 24, + "m_nEditEnd": { + "type": "int", + "id": 27, + "offset": 724, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2347630439 + "hash": 1560905669 }, - "m_imageFilename": { - "type": "std::string", - "id": 4, - "offset": 112, - "flags": 131103, + "m_sSavedText": { + "type": "std::wstring", + "id": 28, + "offset": 728, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2813328063 + "hash": 2197953283 }, - "m_iconIndex": { - "type": "unsigned int", - "id": 5, - "offset": 144, - "flags": 31, + "m_fCursorBlinkSpeed": { + "type": "float", + "id": 29, + "offset": 760, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1265133262 + "hash": 2232655228 }, - "m_soundOnActivate": { - "type": "std::string", - "id": 6, - "offset": 152, - "flags": 131103, + "m_fCursorTimer": { + "type": "float", + "id": 30, + "offset": 764, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1956929714 + "hash": 1929942748 }, - "m_soundOnTarget": { - "type": "std::string", - "id": 7, - "offset": 184, - "flags": 131103, + "m_bCursorBlink": { + "type": "bool", + "id": 31, + "offset": 768, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3444214056 + "hash": 683441507 }, - "m_targetParticleEffect": { - "type": "std::string", - "id": 8, - "offset": 216, - "flags": 131103, + "m_fMinRange": { + "type": "double", + "id": 32, + "offset": 776, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3048234723 + "hash": 3079523396 }, - "m_overheadMessage": { - "type": "std::string", - "id": 9, - "offset": 248, - "flags": 8388639, + "m_fMaxRange": { + "type": "double", + "id": 33, + "offset": 784, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1701018190 + "hash": 3876551814 }, - "m_requirements": { - "type": "class RequirementList", - "id": 10, - "offset": 280, - "flags": 31, + "m_nPrecision": { + "type": "int", + "id": 34, + "offset": 792, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2840988582 + "hash": 1404974196 }, - "m_kTeleportToTarget": { - "type": "enum DerbyTargetType", - "id": 11, - "offset": 376, - "flags": 2097183, + "m_bDeleteOnFirstChar": { + "type": "bool", + "id": 35, + "offset": 618, + "flags": 135, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 3096289769, - "enum_options": { - "kTargetInFront": 0, - "kTargetBehind": 1, - "kTargetFirst": 2, - "kTargetSelf": 3, - "kTargetAll": 4, - "kTargetLast": 5 - } + "hash": 902105643 } } }, - "1281691511": { - "name": "class ClientDestroyShadowCreatureCinematicAction", + "1020592249": { + "name": "class TagGameComponent", "bases": [ - "DestroyShadowCreatureCinematicAction", - "ActorCinematicAction", - "CinematicAction", + "HousingGameInterface", "PropertyClass" ], - "hash": 1281691511, - "properties": { - "m_timeOffset": { - "type": "float", - "id": 0, - "offset": 72, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2237098605 - }, - "m_actor": { - "type": "std::string", - "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2285866132 - } - } + "hash": 1020592249, + "properties": {} }, - "513064532": { - "name": "class UnlockTriggerInfo", + "596139110": { + "name": "class TransformationEffectInfo", "bases": [ + "GameEffectInfo", "PropertyClass" ], - "hash": 513064532, + "hash": 596139110, "properties": { - "m_unlockTriggerTemplateID": { - "type": "unsigned int", + "m_effectName": { + "type": "std::string", "id": 0, "offset": 72, - "flags": 7, + "flags": 31, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1721811670 + "hash": 2029161513 }, - "m_state": { - "type": "unsigned int", + "m_sRace": { + "type": "std::string", "id": 1, - "offset": 76, - "flags": 7, + "offset": 104, + "flags": 268435463, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1021505934 + "hash": 2306580681, + "enum_options": { + "__BASECLASS": "CharacterRaceTable" + } }, - "m_reagentCount1": { - "type": "unsigned int", + "m_eGender": { + "type": "enum eGender", "id": 2, - "offset": 80, - "flags": 7, + "offset": 136, + "flags": 2097159, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2011197517 + "hash": 2776344943, + "enum_options": { + "Male": 1, + "Female": 0, + "Neutral": 2 + } }, - "m_reagentCount2": { - "type": "unsigned int", + "m_fScale": { + "type": "float", "id": 3, - "offset": 84, + "offset": 140, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2011197518 + "hash": 503137701 }, - "m_reagentCount3": { - "type": "unsigned int", + "m_nPrimaryColor": { + "type": "int", "id": 4, - "offset": 88, + "offset": 144, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2011197519 + "hash": 310334923 }, - "m_reagentCount4": { - "type": "unsigned int", + "m_nSecondaryColor": { + "type": "int", "id": 5, - "offset": 92, + "offset": 148, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2011197520 + "hash": 516938671 }, - "m_reagentCount5": { - "type": "unsigned int", + "m_nPatternOption": { + "type": "int", "id": 6, - "offset": 96, + "offset": 152, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2011197521 + "hash": 413195679 }, - "m_reagentCount6": { - "type": "unsigned int", + "m_nGeometryOption": { + "type": "int", "id": 7, - "offset": 100, + "offset": 156, "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2011197522 - } - } - }, - "1279100803": { - "name": "class SpellEffectParamOverride", - "bases": [ - "PropertyClass" - ], - "hash": 1279100803, - "properties": { - "m_effectIndex": { - "type": "int", - "id": 0, - "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 350070655 + "hash": 676541869 }, - "m_paramValue": { - "type": "int", - "id": 1, - "offset": 76, - "flags": 31, + "m_sNaturalAttack": { + "type": "std::string", + "id": 8, + "offset": 160, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2048907304 + "hash": 2131867453 } } }, - "905411712": { - "name": "class ClientPlayerStatuePvPBlob", + "171701510": { + "name": "class CinematicDefTemplate*", "bases": [ - "PlayerStatuePvPBlob", - "PlayerStatueBlob", + "CoreTemplate", "PropertyClass" ], - "hash": 905411712, + "hash": 171701510, "properties": { - "m_level": { - "type": "int", + "m_behaviors": { + "type": "class BehaviorTemplate*", "id": 0, "offset": 72, - "flags": 31, - "container": "Static", - "dynamic": false, + "flags": 7, + "container": "Vector", + "dynamic": true, "singleton": false, - "pointer": false, - "hash": 801285362 + "pointer": true, + "hash": 1197808594 }, - "m_school": { - "type": "unsigned int", + "m_nifFile": { + "type": "std::string", "id": 1, - "offset": 76, - "flags": 31, + "offset": 136, + "flags": 131079, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1152268885 + "hash": 2694762008 }, - "m_gender": { - "type": "int", + "m_delay": { + "type": "double", "id": 2, - "offset": 80, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 473816879 - }, - "m_nameKeys": { - "type": "unsigned int", - "id": 3, - "offset": 84, - "flags": 31, + "offset": 168, + "flags": 7, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1772225898 + "hash": 2689597116 }, - "m_badge": { + "m_cinematicName": { "type": "std::string", - "id": 4, - "offset": 88, - "flags": 63, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": false, - "hash": 2286962478 - }, - "m_pCharacterBehavior": { - "type": "class SharedPointer", - "id": 5, - "offset": 120, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2724673923 - }, - "m_pEquipment": { - "type": "class SharedPointer", - "id": 6, - "offset": 136, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2473540161 - }, - "m_pStats": { - "type": "class SharedPointer", - "id": 7, - "offset": 152, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2212894623 - }, - "m_pGameEffects": { - "type": "class SharedPointer", - "id": 8, - "offset": 168, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 1557857436 - }, - "m_petTID": { - "type": "unsigned int", - "id": 9, - "offset": 200, - "flags": 31, + "id": 3, + "offset": 96, + "flags": 134217735, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 1037635095 - }, - "m_pPetBehavior": { - "type": "class SharedPointer", - "id": 10, - "offset": 208, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 2663493503 - }, - "m_pPetJewels": { - "type": "class SharedPointer", - "id": 11, - "offset": 224, - "flags": 31, - "container": "Static", - "dynamic": false, - "singleton": false, - "pointer": true, - "hash": 733229991 + "hash": 2611527497 } } }, - "511016223": { - "name": "class ClientChangeActorStateCinematicAction*", + "171214337": { + "name": "class ClientBGPolymorphSelectBehavior*", "bases": [ - "ChangeActorStateCinematicAction", - "ActorCinematicAction", - "CinematicAction", + "BGPolymorphSelectBehavior", + "BehaviorInstance", "PropertyClass" ], - "hash": 511016223, + "hash": 171214337, "properties": { - "m_timeOffset": { - "type": "float", + "m_behaviorTemplateNameID": { + "type": "unsigned int", "id": 0, - "offset": 72, - "flags": 7, + "offset": 104, + "flags": 39, "container": "Static", "dynamic": false, "singleton": false, "pointer": false, - "hash": 2237098605 + "hash": 223437287 }, - "m_actor": { - "type": "std::string", + "m_polyCategoryInactiveToRedTeamPlayers": { + "type": "gid", "id": 1, - "offset": 80, - "flags": 7, - "container": "Static", - "dynamic": false, + "offset": 112, + "flags": 31, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 2285866132 + "hash": 757020210 }, - "m_newState": { - "type": "std::string", + "m_polyCategoryUnavailableToRedTeamPlayers": { + "type": "gid", "id": 2, - "offset": 120, - "flags": 7, - "container": "Static", - "dynamic": false, + "offset": 128, + "flags": 31, + "container": "List", + "dynamic": true, "singleton": false, "pointer": false, - "hash": 2153420230 + "hash": 1382977667 + }, + "m_polyCategoryInactiveToBlueTeamPlayers": { + "type": "gid", + "id": 3, + "offset": 144, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1877669599 + }, + "m_polyCategoryUnavailableToBlueTeamPlayers": { + "type": "gid", + "id": 4, + "offset": 160, + "flags": 31, + "container": "List", + "dynamic": true, + "singleton": false, + "pointer": false, + "hash": 1059429200 } } } diff --git a/src/Imcodec.ObjectProperty/Imcodec.ObjectProperty.csproj b/src/Imcodec.ObjectProperty/Imcodec.ObjectProperty.csproj index 3aaad74..22253e5 100644 --- a/src/Imcodec.ObjectProperty/Imcodec.ObjectProperty.csproj +++ b/src/Imcodec.ObjectProperty/Imcodec.ObjectProperty.csproj @@ -5,6 +5,7 @@ enable enable true + true diff --git a/src/Imcodec.ObjectProperty/ObjectSerializer.cs b/src/Imcodec.ObjectProperty/ObjectSerializer.cs index 11902f8..b16f3ed 100644 --- a/src/Imcodec.ObjectProperty/ObjectSerializer.cs +++ b/src/Imcodec.ObjectProperty/ObjectSerializer.cs @@ -103,7 +103,7 @@ public partial class ObjectSerializer(bool Versionable = true, public bool UseServerTypeRegistry { get; set; } = UseServerTypeRegistry; private static readonly ClientGeneratedTypeRegistry s_defaultTypeRegistry = new(); - private static readonly ServerTypeRegistry s_serverTypeRegistry = new(); + private static readonly ServerGeneratedTypeRegistry s_serverTypeRegistry = new(); /// /// Serializes the specified object using diff --git a/src/Imcodec.ObjectProperty/Property.cs b/src/Imcodec.ObjectProperty/Property.cs deleted file mode 100644 index f363124..0000000 --- a/src/Imcodec.ObjectProperty/Property.cs +++ /dev/null @@ -1,366 +0,0 @@ -/* -BSD 3-Clause License - -Copyright (c) 2024, Jooty - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: - -1. Redistributions of source code must retain the above copyright notice, this - list of conditions and the following disclaimer. - -2. Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation - and/or other materials provided with the distribution. - -3. Neither the name of the copyright holder nor the names of its - contributors may be used to endorse or promote products derived from - this software without specific prior written permission. -*/ - -using System.Collections; -using System.ComponentModel; -using System.Reflection; -using Imcodec.IO; -using Imcodec.Types; - -namespace Imcodec.ObjectProperty; - -[AttributeUsage(AttributeTargets.Property)] -public class AutoPropertyAttribute(uint hash, int flags) : Attribute { - - public uint Hash = hash; - public int Flags = flags; - -} - -/// -/// Represents an interface of , allowing for a list -/// of that type to be stored in a vector without specifying the type. -/// -public interface IProperty { - - /// - /// The unique hash of the property. - /// - internal uint Hash { get; } - - /// - /// The flags of the property. - /// - internal PropertyFlags Flags { get; } - - /// - /// Encodes the value of the property using the specified - /// and . - /// - /// The used to write the - /// encoded value. - /// The used for - /// nested property class serialization. - /// true if the encoding is successful; otherwise, - /// false. - internal abstract bool Encode(BitWriter writer, ObjectSerializer serializer); - - /// - /// Decodes the value of the property using the provided - /// and . - /// - /// The used to read the - /// encoded value. - /// The used to - /// deserialize nested property classes. - /// true if the decoding is successful; otherwise, - /// false. - internal abstract bool Decode(BitReader reader, ObjectSerializer serializer); - -} - -/// -/// Represents a property of a object. -/// -public sealed class Property(uint hash, - PropertyFlags flags, - MethodInfo? getter, - MethodInfo? setter, - object propertyClass) : IProperty { - - uint IProperty.Hash { get; } = hash; - PropertyFlags IProperty.Flags { get; } = flags; - - private static bool IsVector - => typeof(T).IsGenericType && typeof(T).GetGenericTypeDefinition() == typeof(List<>); - private static bool IsEnum - => InnerType.IsEnum; - private static Type InnerType - => IsVector ? typeof(T).GetGenericArguments()[0] : typeof(T); - - private MethodInfo? Getter { get; } = getter - ?? throw new ArgumentNullException(nameof(getter)); - private MethodInfo? Setter { get; } = setter - ?? throw new ArgumentNullException(nameof(setter)); - private object TargetObject { get; } = propertyClass - ?? throw new ArgumentNullException(nameof(propertyClass)); - - bool IProperty.Encode(BitWriter writer, ObjectSerializer serializer) { - if (IsVector) { - var list = Getter?.Invoke(TargetObject, null); - return EncodeVector(writer, list, serializer); - } - else { - return EncodeElement(writer, serializer, Getter?.Invoke(TargetObject, null)); - } - } - - bool IProperty.Decode(BitReader reader, ObjectSerializer serializer) { - if (IsVector) { - if (!DecodeVector(reader, serializer, out var list)) { - return false; - } - - // Cast the list to the appropriate type and set the value. - _ = Setter?.Invoke(TargetObject, [(T) list!]); - } - else { - if (!DecodeElement(reader, serializer, out var val)) { - return false; - } - - _ = Setter?.Invoke(TargetObject, [val]); - } - - return true; - } - - private static bool EncodeVector(BitWriter writer, object? val, ObjectSerializer serializer) { - if (val == null) { - WriteVectorSize(writer, 0, serializer); - - return true; - } - - var list = (IList) val; - WriteVectorSize(writer, list.Count, serializer); - - foreach (var element in list) { - if (!EncodeElement(writer, serializer, element)) { - return false; - } - } - - return true; - } - - private static bool EncodeElement(BitWriter writer, ObjectSerializer serializer, object? val) { - if (InnerType.IsSubclassOf(typeof(PropertyClass))) { - return Property.EncodePropertyClass(writer, (PropertyClass) val!, serializer); - } - else if (IsEnum) { - return Property.EncodeEnum(writer, val!, serializer); - } - else if (StreamPropertyCodec.TryGetWriter(InnerType, out var codec)) { - codec.Invoke(writer, val!); - - return true; - } - - return false; - } - - private static bool EncodeEnum(BitWriter writer, object val, ObjectSerializer serializer) { - if (serializer.SerializerFlags.HasFlag(SerializerFlags.StringEnums)) { - writer.WriteString(val?.ToString() ?? string.Empty); - - return true; - } - - writer.WriteUInt32((uint) (int) val!); - - return true; - } - - private static bool EncodePropertyClass(BitWriter writer, - PropertyClass propertyClass, - ObjectSerializer serializer) { - serializer.PreWriteObject(writer, propertyClass); - - // If the property class is null, we can skip encoding the object. - // We'll still return true because we didn't technically fail to encode the object. - if (propertyClass is null) { - return true; - } - - return propertyClass.Encode(writer, serializer); - } - - private static void WriteVectorSize(BitWriter writer, int size, ObjectSerializer serializer) { - // Write the vector size. The size is encoded as a compact length if the flag is set. - // Otherwise, the size is encoded as a 32-bit unsigned integer. - if (serializer.SerializerFlags.HasFlag(SerializerFlags.CompactLength)) { - // If the size is less than 127, we can encode it as a compact length. - if (size < 127) { - writer.WriteBits((byte) size, 7); - } - else { - writer.WriteBit(true); - writer.WriteUInt32((uint) size); - } - } - else { - writer.WriteUInt32((uint) size); - } - } - - private static bool DecodeVector(BitReader reader, ObjectSerializer serializer, out object? val) { - val = null; - - var len = ReadVectorSize(reader, serializer); - if (len <= 0) { - return true; - } - - var listType = typeof(List<>).MakeGenericType(InnerType); - var list = (IList) Activator.CreateInstance(listType)!; - var startingPos = reader.BitPos(); - var isPropertyClassList = InnerType.IsSubclassOf(typeof(PropertyClass)); - - for (int i = 0; i < len; i++) { - startingPos = reader.BitPos(); - val = list; - - if (DecodeElement(reader, serializer, out var element)) { - list.Add(element!); - continue; - } - - // In the case that this is a list of PropertyClass and the serializer in versionable, there - // is a recovery option. PropertyClasses are prefixed with the hash and size of the object. If - // the decoding fails, we can skip the object by reading the hash and size and seeking to the - // next object. - if (isPropertyClassList && serializer.Versionable) { - reader.SeekBit(startingPos); - _ = reader.ReadUInt32(); // Skip the hash - var size = ReadVectorSize(reader, serializer); - - // Ensure that seeking the bit will not exceed the buffer size. - if (reader.BitPos() + size > reader.Count() * 8) { - // We return true because we didn't technically fail to decode the list. - return true; - } - - reader.SeekBit((int) (startingPos + size)); - } - } - - val = list; - - return true; - } - - private static bool DecodeElement(BitReader reader, ObjectSerializer serializer, out object? val) { - if (InnerType.IsSubclassOf(typeof(PropertyClass))) { - var decodeSuccess = DecodePropertyClass(reader, serializer, out var propertyClass); - val = propertyClass; - - return decodeSuccess; - } - else if (IsEnum) { - return Property.DecodeEnum(reader, out val, serializer); - } - else if (StreamPropertyCodec.TryGetReader(InnerType, out var codec)) { - val = codec.Invoke(reader); - val = CastDecodedValue(val); - - return true; - } - - throw new Exception($"Failed to decode element of type {typeof(T)}"); - } - - private static bool DecodeEnum(BitReader reader, out object val, ObjectSerializer serializer) { - if (serializer.SerializerFlags.HasFlag(SerializerFlags.StringEnums)) { - // Clean the enum string before parsing. - var rawEnumString = reader.ReadString(); - var enumString = SanitizeStringEnum(rawEnumString); - val = Enum.Parse(InnerType, enumString, true); - - return true; - } - - val = (T?) Enum.ToObject(InnerType, reader.ReadUInt32())!; - return true; - } - - private static bool DecodePropertyClass(BitReader reader, - ObjectSerializer serializer, - out PropertyClass? propertyClass) { - serializer.PreloadObject(reader, out propertyClass); - - // If the property class is null, we can skip decoding the object. - // We'll still return true because we didn't technically fail to decode the object. - if (propertyClass is null) { - return true; - } - - return propertyClass!.Decode(reader, serializer); - } - - private static object? CastDecodedValue(object? value) { - if (value is null) { - return null; - } - else if (InnerType.IsPrimitive) { - var changedType = Convert.ChangeType(value, InnerType); - - return changedType; - } - else if (InnerType.IsEnum) { - var castedEnum = Enum.ToObject(InnerType, value); - - return castedEnum; - } - else if (InnerType.IsAssignableFrom(value.GetType())) { - return value; - } - else { - // Find a constructor with the same number of parameters as the value's properties - var constructors = InnerType.GetConstructors(); - foreach (var constructor in constructors) { - var parameters = constructor.GetParameters(); - if (parameters.Length == 1 && parameters[0].ParameterType.IsAssignableFrom(value.GetType())) { - return constructor.Invoke([value]); - } - } - - throw new InvalidOperationException($"No suitable constructor found for type {InnerType}"); - } - } - - private static uint ReadVectorSize(BitReader reader, ObjectSerializer serializer) { - // Read the vector size. The size is encoded as a compact length if the flag is set. - // Otherwise, the size is encoded as a 32-bit unsigned integer. - if (serializer.SerializerFlags.HasFlag(SerializerFlags.CompactLength)) { - // If the MSB is set, the size is encoded as a 32-bit unsigned integer again. - var sizeRedundant = reader.ReadBit(); - - return reader.ReadBits(sizeRedundant ? 31 : 7); - } - else { - return reader.ReadUInt32(); - } - } - - private static string SanitizeStringEnum(string enumString) { - // Client inconsistency: The client will sometimes use '-' and '_' interchangably. We'll - // convert all '-' to '_' to ensure that the enum is parsed correctly. - enumString = enumString.Replace('-', '_'); - - // The client is written with C++. We'll replace the scope operator with the C# namespace, then scope - // down to the enum value. - enumString = enumString.Replace("::", "."); - enumString = enumString.Substring(enumString.LastIndexOf('.') + 1); - - return enumString; - } - -} diff --git a/src/Imcodec.ObjectProperty/PropertyClass.cs b/src/Imcodec.ObjectProperty/PropertyClass.cs index 0eb85be..8e9a529 100644 --- a/src/Imcodec.ObjectProperty/PropertyClass.cs +++ b/src/Imcodec.ObjectProperty/PropertyClass.cs @@ -18,24 +18,10 @@ contributors may be used to endorse or promote products derived from this software without specific prior written permission. */ -using System.Reflection; -using System.Runtime.InteropServices.Marshalling; using Imcodec.IO; namespace Imcodec.ObjectProperty; -public class PropertyComparer : IComparer { - - public int Compare(PropertyInfo? x, PropertyInfo? y) { - if (x?.DeclaringType != y?.DeclaringType) { - return x?.DeclaringType?.IsAssignableFrom(y?.DeclaringType) - ?? false ? -1 : 1; - } - return x?.MetadataToken.CompareTo(y?.MetadataToken) ?? 0; - } - -} - /// /// Defines class capable of undergoing binary serialization. /// @@ -43,11 +29,6 @@ public abstract record PropertyClass { public abstract uint GetHash(); - private List Properties { get; } = []; - - // ctor - protected PropertyClass() => RegisterProperties(); - /// /// Called before encoding the object to the binary stream. /// @@ -78,28 +59,7 @@ public virtual void OnPostDecode() { } /// serialize the object properties. /// true if the encoding is successful; /// otherwise, false. - internal bool Encode(BitWriter writer, ObjectSerializer serializer) { - OnPreEncode(); - - if (serializer.Versionable) { - return EncodeVersionable(writer, serializer); - } - - foreach (var property in Properties) { - if (!IsPropertyEligibleForProcessing(property, serializer)) { - continue; - } - - var encodeSuccess = property.Encode(writer, serializer); - if (!encodeSuccess) { - return false; - } - } - - OnPostEncode(); - - return true; - } + public abstract bool Encode(BitWriter writer, ObjectSerializer serializer); /// /// Decodes the object properties using the specified @@ -109,148 +69,6 @@ internal bool Encode(BitWriter writer, ObjectSerializer serializer) { /// The used for decoding. /// true if the decoding is successful for all properties; /// otherwise, false. - internal bool Decode(BitReader reader, ObjectSerializer serializer) { - OnPreDecode(); - - if (serializer.Versionable) { - return DecodeVersionable(reader, serializer); - } - - foreach (var property in Properties) { - if (!IsPropertyEligibleForProcessing(property, serializer)) { - continue; - } - - var decodeSuccess = property.Decode(reader, serializer); - if (!decodeSuccess) { - return false; - } - } - - OnPostDecode(); - - return true; - } - - private bool EncodeVersionable(BitWriter writer, ObjectSerializer serializer) { - var objectStart = writer.BitPos(); - writer.WriteUInt32(0); // Placeholder for the size. - - foreach (var property in Properties) { - if (!IsPropertyEligibleForProcessing(property, serializer)) { - continue; - } - - // Write the hash and size of the property. - var sizeStart = writer.BitPos(); - writer.WriteUInt32(0); // Placeholder for the size. - writer.WriteUInt32(property.Hash); - - var preEncodeBitPos = writer.BitPos(); - var encodeSuccess = property.Encode(writer, serializer); - - // Write the size of the property. - var size = writer.BitPos() - preEncodeBitPos; - writer.SeekBit(sizeStart); - writer.WriteUInt32((uint)size); - writer.SeekBit(preEncodeBitPos + size); - } - - // Write the size of the object. - var objectSize = writer.BitPos() - objectStart; - writer.SeekBit(objectStart); - writer.WriteUInt32((uint)objectSize); - writer.SeekBit(objectStart + objectSize); - - return true; - } - - private bool DecodeVersionable(BitReader reader, ObjectSerializer serializer) { - // Properties may be out of order in the binary stream. - // Read the hash and size of the first property, which we know is at the - // beginning of the stream. - // From there, we can tell how the properties are laid out. - var propMap = Properties.ToDictionary(static p => p.Hash, p => p); - var objectStart = reader.BitPos(); - var objectSize = reader.ReadUInt32(); - - while (reader.BitPos() - objectStart < objectSize) { - var propertyStart = reader.BitPos(); - var propertySize = reader.ReadUInt32(); - var propertyHash = reader.ReadUInt32(); - - // A property size of 0 would cause an infinite loop. - if (propertySize == 0) { - return false; - } - - // Ensure that the property exists. If it does, decode it. - if (propMap.TryGetValue(propertyHash, out var property)) { - property.Decode(reader, serializer); - } - - // Seek bit to the end of this property. - reader.SeekBit((int) (propertyStart + propertySize)); - } - - // Seek bit to the end of this object. - reader.SeekBit((int) (objectStart + objectSize)); - return true; - } - - private void RegisterProperties() { - var properties = this.GetType() - .GetProperties(BindingFlags.Public - | BindingFlags.Instance - | BindingFlags.NonPublic - | BindingFlags.FlattenHierarchy) - .Where(static prop => Attribute.IsDefined(prop, typeof(AutoPropertyAttribute))) - .OrderBy(x => x, new PropertyComparer()); - - foreach (var prop in properties) { - var attribute = prop.GetCustomAttribute() - ?? throw new Exception($"Failed to get attribute for property {prop.Name}"); - - var propertyHash = attribute.Hash; - var propertyFlags = (PropertyFlags) attribute.Flags; - var propertyType = prop.PropertyType; - var propertyGetter = prop.GetGetMethod(); - var propertySetter = prop.GetSetMethod(); - - var propertyContainer = Activator.CreateInstance( - typeof(Property<>).MakeGenericType(propertyType), - propertyHash, - propertyFlags, - propertyGetter, - propertySetter, - this - ); - - if (propertyContainer is IProperty propContainer) { - Properties.Add(propContainer); - } - else { - throw new Exception($"Failed to create property container for property {prop.Name}"); - } - } - } - - private static bool IsPropertyEligibleForProcessing(IProperty property, ObjectSerializer serializer) { - var serializerFlags = serializer.SerializerFlags; - var serializerMask = serializer.PropertyMask; - var propertyFlags = property.Flags; - - // Properties with the Prop_Encode flag set are always encoded. - var alwaysEncode = serializerFlags.HasFlag(SerializerFlags.DirtyEncode) - && propertyFlags.HasFlag(PropertyFlags.Prop_Encode); - - // Check if the property mask is met and if the property is deprecated. - var propertyMaskMet = (propertyFlags & serializerMask) == serializerMask; - var deprecated = propertyFlags.HasFlag(PropertyFlags.Prop_Deprecated); - - // Skip properties that are not marked for serialization, - // or are deprecated and not dirty encoded. - return propertyMaskMet && (!deprecated || alwaysEncode); - } + public abstract bool Decode(BitReader reader, ObjectSerializer serializer); } diff --git a/src/Imcodec.ObjectProperty/TypeCache/ClientGeneratedTypeRegistry.cs b/src/Imcodec.ObjectProperty/TypeCache/ClientGeneratedTypeRegistry.cs index b648288..fe2d4ec 100644 --- a/src/Imcodec.ObjectProperty/TypeCache/ClientGeneratedTypeRegistry.cs +++ b/src/Imcodec.ObjectProperty/TypeCache/ClientGeneratedTypeRegistry.cs @@ -31,7 +31,8 @@ public override void RegisterType(uint hash, System.Type type) => _typeMap[hash] = type; public override System.Type? LookupType(uint hash) { - _typeMap.TryGetValue(hash, out var type); + _ = _typeMap.TryGetValue(hash, out var type); + return type; } diff --git a/src/Imcodec.ObjectProperty/TypeCache/ServerGeneratedTypeRegistry.cs b/src/Imcodec.ObjectProperty/TypeCache/ServerGeneratedTypeRegistry.cs new file mode 100644 index 0000000..4e5bd8f --- /dev/null +++ b/src/Imcodec.ObjectProperty/TypeCache/ServerGeneratedTypeRegistry.cs @@ -0,0 +1,1088 @@ +/* +BSD 3-Clause License + +Copyright (c) 2024, Jooty + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + +1. Redistributions of source code must retain the above copyright notice, this + list of conditions and the following disclaimer. + +2. Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. + +3. Neither the name of the copyright holder nor the names of its + contributors may be used to endorse or promote products derived from + this software without specific prior written permission. +*/ + +using Imcodec.IO; +using Imcodec.ObjectProperty.Attributes; + +namespace Imcodec.ObjectProperty.TypeCache; + +public partial class ServerGeneratedTypeRegistry : TypeRegistry { + + // The following overrides are not populated. They are placeholders for the generated code. + // The generated code will add each type to the dictionary in the constructor. + + private readonly Dictionary _types = []; + + public override System.Type? LookupType(uint hash) + => _types.TryGetValue(hash, out var type) ? type : null; + + public override void RegisterType(uint hash, System.Type type) + => _types[hash] = type; + +} + +[PropertySerializationTarget] +public partial record WizZoneTriggers : PropertyClass { + + public override uint GetHash() => 0x06DAAC43; + + [PropertyField(0x3F1DB764, 31)] public List m_triggers { get; set; } = []; + +} + +[PropertySerializationTarget] +public partial record Trigger : PropertyClass { + + public override uint GetHash() => 0x068C265B; + + [PropertyField(0xB8C90C10, 31)] public ByteString m_triggerName { get; set; } + [PropertyField(0x3933D634, 31)] public uint m_triggerMax { get; set; } + [PropertyField(0x767AAC3C, 31)] public uint m_cooldown { get; set; } + [PropertyField(0x2E8B9981, 31)] public uint m_cooldownRand { get; set; } + [PropertyField(0x3282D78A, 31)] public bool m_pulsar { get; set; } + [PropertyField(0x7DB09CC1, 31)] public List m_activateEvents { get; set; } = []; + [PropertyField(0xA7BEADF6, 31)] public List m_fireEvents { get; set; } = []; + [PropertyField(0x62A2160A, 31)] public List m_deactivateEvents { get; set; } = []; + [PropertyField(0x5C548D5F, 31)] public List m_unknown { get; set; } = []; + [PropertyField(0xA955FFA6, 31)] public RequirementList m_requirements { get; set; } = new(); + [PropertyField(0xE11C8ADA, 31)] public ResultList m_results { get; set; } = new(); + [PropertyField(0x794EA0DF, 31)] public uint unknown_uint_3 { get; set; } + [PropertyField(0x88B9D287, 31)] public ByteString unknown_str_3 { get; set; } + [PropertyField(0x8177DA98, 31)] public TriggerObjectInfo m_triggerObjInfo { get; set; } = new(); + +} + +[PropertySerializationTarget] +public partial record TriggerObjectBase : CoreObjectInfo { + + // todo: need actual hashes here + public override uint GetHash() => 0x0000001; + + // Why would a trigger have a location? Isn't this what volumes are for? + [PropertyField(0x7DB3F828, 31)] public float m_locationX { get; set; } + [PropertyField(0x7DB3F829, 31)] public float m_locationY { get; set; } + [PropertyField(0x7DB3F82A, 31)] public float m_locationZ { get; set; } + +} + +[PropertySerializationTarget] +public partial record TriggerObjectInfo : TriggerObjectBase { + + // todo: need actual hashes here + public override uint GetHash() => 0x0000002; + +} + +[PropertySerializationTarget] +public partial record WizZoneVolumes : PropertyClass { + + public override uint GetHash() => 0x1B6EF770; + + [PropertyField(0x884BFB48, 31)] public List m_volumes { get; set; } = []; + +} + +[PropertySerializationTarget] +public partial record Volume : CoreObjectInfo { + + public override uint GetHash() => 0x1B7B55F6; + + // CoreObjectInfo properties end here. + [PropertyField(0xC6E6048B, 31)] public ByteString m_volumeName { get; set; } + [PropertyField(0x7DB3F828, 31)] public float m_locationX { get; set; } + [PropertyField(0x7DB3F829, 31)] public float m_locationY { get; set; } + [PropertyField(0x7DB3F82A, 31)] public float m_locationZ { get; set; } + [PropertyField(0x40183401, 31)] public new ulong m_templateID { get; set; } + [PropertyField(0x8987B2CC, 31)] public ByteString m_primitiveType { get; set; } + [PropertyField(0x3AF933DF, 31)] public float m_radius { get; set; } + [PropertyField(0x2D481539, 31)] public float m_length { get; set; } + [PropertyField(0x35EBF597, 31)] public float m_width { get; set; } + [PropertyField(0x3492258C, 31)] public int unknown_int { get; set; } + [PropertyField(0x3B3CD5DA, 31)] public bool unknown_1 { get; set; } + [PropertyField(0x71FCB022, 31)] public byte unknown_2 { get; set; } + [PropertyField(0x8576192E, 31)] public List m_enterEvents { get; set; } = []; + [PropertyField(0xAB57CF4A, 31)] public List m_exitEvents { get; set; } = []; + +} + +[PropertySerializationTarget] +public partial record ResTeleport : TypeCache.Result { + + public override uint GetHash() => 228794493; + + public string? m_destinationLoc { get; set; } + public string? m_destinationZone { get; set; } + [PropertyField(0x2, 31)] public byte m_exitTeleporter { get; set; } + [PropertyField(0x3, 31)] public byte m_teleporterTag { get; set; } + [PropertyField(0x4, 31)] public TeleportType m_teleportType { get; set; } + [PropertyField(0x5, 31)] public byte m_transitionID { get; set; } + + public enum TeleportType { + TELEPORT_STATIC, + } + +} + +[PropertySerializationTarget] +public partial record ResDisplayText : TypeCache.Result { + + public override uint GetHash() => 0x774C0B33; + + [PropertyField(0x66603160, 31)] public ByteString m_text { get; set; } + [PropertyField(0x0D1B703C, 31)] public int m_type { get; set; } + [PropertyField(0x3AF933DF, 31)] public float m_radius { get; set; } + [PropertyField(0x431157E7, 31)] public float m_locationX { get; set; } + [PropertyField(0x431157E8, 31)] public float m_locationY { get; set; } + [PropertyField(0x431157E9, 31)] public float m_locationZ { get; set; } + + [PropertyField(0x2EB6A55F, 31)] public bool m_unknown_bool { get; set; } + [PropertyField(0x7E84339F, 31)] public bool m_unknown_bool_2 { get; set; } + [PropertyField(0x57EDA63C, 31)] public bool m_unknown_bool_3 { get; set; } + +} + +[PropertySerializationTarget] +public partial record ResPlaySound : TypeCache.Result { + public override uint GetHash() => 0x3C626744; + + [PropertyField(0x444373FA, 31)] public ZoneRouter m_router { get; set; } = new(); + [PropertyField(0x87BA8BE5, 31)] public ByteString m_soundName { get; set; } + [PropertyField(0x3B9498D7, 31)] public bool m_blocking { get; set; } + [PropertyField(0x2C2BC314, 31)] public float m_reinteractTime { get; set; } +} + +[PropertySerializationTarget] +public partial record ZoneRouter : PropertyClass { + + public override uint GetHash() => 0xDA51FA8; + + [PropertyField(0x12773D2D, 31)] public float m_locX { get; set; } + [PropertyField(0x12773D2E, 31)] public float m_locY { get; set; } + [PropertyField(0x12773D2F, 31)] public float m_locZ { get; set; } + [PropertyField(0xC7FCACAC, 31)] public RoutingType m_routingType { get; set; } + [PropertyField(0xE36CE99, 31)] public bool m_useLocation { get; set; } + [PropertyField(0x148E0B6D, 31)] public bool m_useTriggerLocation { get; set; } + + public enum RoutingType { + ROUTING_ACTOR, + ROUTING_ZONE, + ROUTING_PROXIMITY, + } + +} + +[PropertySerializationTarget] +public partial record ResPlayCinematic : TypeCache.Result { + + public override uint GetHash() => 16312488; + + [PropertyField(2611527497, 134217735)] public ByteString m_cinematicName { get; set; } + [PropertyField(0x444373FA, 31)] public ZoneRouter m_router { get; set; } = new(); + [PropertyField(0x1D70805C, 31)] public bool m_unknown_bool_1 { get; set; } + [PropertyField(0x3AAF6E2F, 31)] public bool m_unknown_bool_2 { get; set; } + [PropertyField(0x61436E16, 31)] public bool m_unknown_bool_3 { get; set; } + [PropertyField(0x78B7B1EE, 31)] public ByteString m_unknown_string_1 { get; set; } + [PropertyField(0x3C1B4C58, 31)] public bool m_unknown_bool_4 { get; set; } + [PropertyField(0x5BB196FF, 31)] public bool m_unknown_bool_5 { get; set; } + [PropertyField(0x7B00E397, 31)] public ByteString m_unknown_string_2 { get; set; } + [PropertyField(0x197BBD69, 31)] public bool m_unknown_bool_6 { get; set; } + [PropertyField(0x4FA58BBA, 31)] public float m_unknown_float_1 { get; set; } + [PropertyField(0x3DAC4C0A, 31)] public bool m_unknown_bool_7 { get; set; } + [PropertyField(0x66ECE9B3, 31)] public ByteString m_unknown_string_3 { get; set; } + [PropertyField(0xA4092DFC, 31)] public bool m_unknown_bool_8 { get; set; } + [PropertyField(0x61437E16, 31)] public bool m_unknown_bool_9 { get; set; } + +} + +[PropertySerializationTarget] +public partial record ResActorDialog : TypeCache.Result { + + public override uint GetHash() => 338444955; + + // PropertyField: m_dialogPrefix (unknown) + + [PropertyField(1972573231, 7)] public ByteString m_activePersona { get; set; } + [PropertyField(3056380390, 7)] public ByteString m_registryEntry { get; set; } + [PropertyField(1310859212, 7)] public ActorDialog m_dialog { get; set; } = new(); + [PropertyField(2305471533, 31)] public ByteString m_quest { get; set; } + [PropertyField(2057644325, 7)] public bool m_broadcastToZone { get; set; } + [PropertyField(482239118, 7)] public bool m_displayInQuestList { get; set; } + [PropertyField(707400068, 7)] public bool m_oneShot { get; set; } + +} + +[PropertySerializationTarget] +public partial record ResAddGold : TypeCache.Result { + + public override uint GetHash() => 703672453; + + [PropertyField(219423808, 7)] public int m_gold { get; set; } + [PropertyField(2305508654, 7)] public ByteString m_sourceType { get; set; } + +} + +[PropertySerializationTarget] +public partial record ResAddMagicXP : TypeCache.Result { + + public override uint GetHash() => 1320311385; + + // PropertyField: m_experience (int) + // PropertyField: m_magicSchool (string) + [PropertyField(2305508654, 7)] public ByteString m_sourceType { get; set; } + +} + +[PropertySerializationTarget] +public partial record ResLoot : TypeCache.Result { + + public override uint GetHash() => 475964190; + + // PropertyField: m_lootTable (string) + +} + +[PropertySerializationTarget] +public partial record ResPostQuestEvent : TypeCache.Result { + + public override uint GetHash() => 1936095675; + + [PropertyField(3493260286, 7)] public ByteString m_eventName { get; set; } + // PropertyField: m_subEventName (unknown) + +} + +[PropertySerializationTarget] +public partial record ResAddSpell : TypeCache.Result { + + public override uint GetHash() => 1774023420; + + // PropertyField: m_spellName (string) + +} + +[PropertySerializationTarget] +public partial record ResAddTrainingPoints : TypeCache.Result { + + public override uint GetHash() => 1627552040; + + // PropertyField: m_sourceType (string) + // PropertyField: m_trainingPoints (int) + +} + +[PropertySerializationTarget] +public partial record ResModifyEntry : TypeCache.Result { + + public override uint GetHash() => 185712126; + + // PropertyField: m_questName (unknown) + + [PropertyField(2055270734, 7)] public ByteString m_entryName { get; set; } + [PropertyField(1388902362, 7)] public bool m_isQuestRegistry { get; set; } + [PropertyField(812990455, 7)] public int m_value { get; set; } + [PropertyField(1702112846, 7)] public ByteString m_questName { get; set; } + +} + +[PropertySerializationTarget] +public partial record ResIncrementEntry : TypeCache.Result { + + public override uint GetHash() => 461317711; + + // PropertyField: m_entryName (string) + // PropertyField: m_isQuestRegistry (int) + // PropertyField: m_questName (unknown) + +} + +[PropertySerializationTarget] +public partial record ResAddMissionDoor : TypeCache.Result { + + public override uint GetHash() => 1202940500; + + // PropertyField: m_advanced (int) + // PropertyField: m_clientTag (unknown) + // PropertyField: m_missionDoorLoc (unknown) + // PropertyField: m_missionDoorTag (string) + // PropertyField: m_missionDoorZone (unknown) + // PropertyField: m_useQuestAsOriginator (int) + +} + +[PropertySerializationTarget] +public partial record ResItemLoot : TypeCache.Result { + + public override uint GetHash() => 1989908347; + + // PropertyField: m_itemTemplateID (int) + // PropertyField: m_lootOptions (string) + // PropertyField: m_sendLootMessage (int) + // PropertyField: m_sourceType (string) + +} + +[PropertySerializationTarget] +public partial record ResAddMaxGold : TypeCache.Result { + + public override uint GetHash() => 1875038822; + + // PropertyField: m_maxGoldToAdd (int) + +} + +[PropertySerializationTarget] +public partial record ResDeleteItem : TypeCache.Result { + + public override uint GetHash() => 822278902; + + // PropertyField: m_itemTemplateID (int) + // PropertyField: m_quantity (int) + // PropertyField: m_sourceType (string) + +} + +[PropertySerializationTarget] +public partial record ResAddHealth : TypeCache.Result { + + public override uint GetHash() => 794463279; + + // PropertyField: m_healthFlat (int) + // PropertyField: m_healthPercent (float) + // PropertyField: m_useFlat (int) + +} + +[PropertySerializationTarget] +public partial record ResPostEvent : TypeCache.Result { + + public override uint GetHash() => 412163800; + + // PropertyField: m_eventName (string) + // PropertyField: m_subEventName (unknown) // Deserialization fails if this is made a string. 72 bits + + [PropertyField(3493260286, 31)] public string m_eventName { get; set; } = ""; + +} + +[PropertySerializationTarget] +public partial record ResRemoveDynaMod : TypeCache.Result { + + public override uint GetHash() => 552459800; + + [PropertyField(1601665858, 31)] public ByteString m_dynaModClientTag { get; set; } + [PropertyField(1110452292, 31)] public bool m_useQuestAsOriginator { get; set; } + +} + +[PropertySerializationTarget] +public partial record ResAddDynaMod : TypeCache.Result { + + public override uint GetHash() => 3938346; + + [PropertyField(1601665858, 31)] public ByteString m_dynaModClientTag { get; set; } + [PropertyField(1110452292, 31)] public bool m_dynaModRemove { get; set; } + [PropertyField(1494302749, 31)] public bool m_useQuestAsOriginator { get; set; } + [PropertyField(2072855560, 31)] public ByteString m_dynaModState { get; set; } + [PropertyField(2171167736, 8388615)] public ByteString m_zoneName { get; set; } + +} + +[PropertySerializationTarget] +public partial record ResWait : TypeCache.Result { + + public override uint GetHash() => 526762782; + + [PropertyField(2403101108, 31)] public uint m_secondsToWait { get; set; } + +} + +[PropertySerializationTarget] +public partial record ResEmote : TypeCache.Result { + + public override uint GetHash() => 475497368; + + // PropertyField: m_emoteName (string) + // PropertyField: m_emoteState (string) + // PropertyField: m_loop (int) + // PropertyField: m_particleAsset (unknown) + // PropertyField: m_particleNode (unknown) + // PropertyField: m_personaName (unknown) + // PropertyField: m_soundAsset (unknown) + // PropertyField: m_usePersona (int) + // PropertyField: m_useTarget (int) + +} + +[PropertySerializationTarget] +public partial record ResAddEncounterXP : TypeCache.Result { + + public override uint GetHash() => 798482874; + + // PropertyField: m_experience (int) + +} + +[PropertySerializationTarget] +public partial record ResMarkZoneNoWarn : TypeCache.Result { + + public override uint GetHash() => 1534247075; + + +} + +[PropertySerializationTarget] +public partial record ResDownloadPackage : TypeCache.Result { + + public override uint GetHash() => 807468757; + + [PropertyField(2325737891, 31)] public List? m_packageList { get; set; } + +} + +[PropertySerializationTarget] +public partial record ResAddTreasureSpell : TypeCache.Result { + + public override uint GetHash() => 1787561491; + + // PropertyField: m_sourceType (string) + // PropertyField: m_spellName (string) + +} + +[PropertySerializationTarget] +public partial record ResModifyTriggerObject : TypeCache.Result { + + public override uint GetHash() => 1263108441; + + [PropertyField(3336963211, 31)] public ByteString m_triggerObjName { get; set; } + [PropertyField(2067625387, 31)] public bool m_triggerObjState { get; set; } + +} + +[PropertySerializationTarget] +public partial record ResSpawn : TypeCache.Result { + + public override uint GetHash() => 723600258; + + // Not confident about these types + [PropertyField(1481718190, 31)] public ulong m_spawnID { get; set; } + [PropertyField(142527940, 31)] public bool m_activate { get; set; } + +} + +[PropertySerializationTarget] +public partial record ResReInteract : TypeCache.Result { + + public override uint GetHash() => 682171658; + + // PropertyField: m_actorType (string) + // PropertyField: m_delay (int) + // PropertyField: m_personaName (string) + // PropertyField: m_source (int) + +} + +[PropertySerializationTarget] +public partial record ResDownloadElement : TypeCache.Result { + + public override uint GetHash() => 101365432; + + // PropertyField: m_elementPackageList (string) + +} + +[PropertySerializationTarget] +public partial record ResRemoveTriggerObject : TypeCache.Result { + + public override uint GetHash() => 803366521; + + // PropertyField: m_triggerObjName (string) + +} + +[PropertySerializationTarget] +public partial record ResCompleteQuestGoal : TypeCache.Result { + + public override uint GetHash() => 1279893472; + + // PropertyField: m_goalName (string) + // PropertyField: m_questName (string) + +} + +[PropertySerializationTarget] +public partial record ResAddBadge : TypeCache.Result { + + public override uint GetHash() => 2041850521; + + // PropertyField: m_badgeName (string) + +} + +[PropertySerializationTarget] +public partial record ResAddEncounter : TypeCache.Result { + + public override uint GetHash() => 798724538; + + // PropertyField: m_experience (int) + +} + +[PropertySerializationTarget] +public partial record ResDespawn : TypeCache.Result { + + public override uint GetHash() => 1383450208; + + // PropertyField: m_despawnEffect (unknown) // uint perhaps? + // PropertyField: m_spawnID (int) + // PropertyField: m_templateID (int) + +} + +[PropertySerializationTarget] +public partial record ResRemoveEntry : TypeCache.Result { + + public override uint GetHash() => 1874483934; + + // PropertyField: m_entryName (string) + // PropertyField: m_isQuestRegistry (int) + // PropertyField: m_questName (unknown) + +} + +[PropertySerializationTarget] +public partial record ResCinematicActor : TypeCache.Result { + + public override uint GetHash() => 16312488; + + // PropertyField: m_blocking (int) + // PropertyField: m_cinematicName (string) + // PropertyField: m_endAtActor (int) + // PropertyField: m_endAtTargetActor (int) + // PropertyField: m_endLoc (string) + // PropertyField: m_objectTemplateID (int) + // PropertyField: m_router (string) + // PropertyField: m_routing (string) + // PropertyField: m_startAtActor (int) + // PropertyField: m_startAtTargetActor (int) + // PropertyField: m_startLoc (string) + // PropertyField: m_unique (int) + // PropertyField: m_uniqueBusyMsg (unknown) + // PropertyField: m_uniqueName (unknown) + +} + +[PropertySerializationTarget] +public partial record ResFallthrough : TypeCache.Result { + + public override uint GetHash() => 1962253934; + + // PropertyField: m_options (string) + +} + +[PropertySerializationTarget] +public partial record ResultOption : TypeCache.Result { + + public override uint GetHash() => 1471095109; + + // PropertyField: m_requirements (string) + // PropertyField: m_results (string) + +} + +[PropertySerializationTarget] +public partial record ResMaxPotions : TypeCache.Result { + + public override uint GetHash() => 309059205; + + // PropertyField: m_potionsToAdd (int) + // PropertyField: m_sourceType (string) + +} + +[PropertySerializationTarget] +public partial record ResRemoveMissionDoor : TypeCache.Result { + + public override uint GetHash() => 1714192944; + + // PropertyField: m_missionDoorTag (string) + // PropertyField: m_useQuestAsOriginator (int) + +} + +[PropertySerializationTarget] +public partial record ResAddCraftingSlot : TypeCache.Result { + + public override uint GetHash() => 633964307; + + // PropertyField: m_slotDelta (int) + // PropertyField: m_sourceType (string) + +} + +[PropertySerializationTarget] +public partial record ResTimeStampEntry : TypeCache.Result { + + public override uint GetHash() => 1826857186; + + // PropertyField: m_coolDownTime (int) + // PropertyField: m_registryEntry (string) + +} + +[PropertySerializationTarget] +public partial record ResToggleQuestEffect : TypeCache.Result { + + public override uint GetHash() => 1383058250; + + // PropertyField: m_addEffect (int) + // PropertyField: m_effectName (string) + +} + +[PropertySerializationTarget] +public partial record ResDespawnLeashedObject : TypeCache.Result { + + public override uint GetHash() => 577427349; + + // PropertyField: m_followerTemplateID (int) + +} + +[PropertySerializationTarget] +public partial record ResRemoveEffect : TypeCache.Result { + + public override uint GetHash() => 837967761; + + // PropertyField: m_effectName (string) + // PropertyField: m_useOriginatorID (int) + +} + +[PropertySerializationTarget] +public partial record ResSpawnLeashedObject : TypeCache.Result { + + public override uint GetHash() => 1505576005; + + // PropertyField: m_followerTemplateID (int) + +} + +[PropertySerializationTarget] +public partial record ResAddEffect : TypeCache.Result { + + public override uint GetHash() => 53623319; + + // PropertyField: m_effectName (unknown) + // PropertyField: m_playerOnly (int) + // PropertyField: m_spEffectInfo (string) + +} + +[PropertySerializationTarget] +public partial record ResAddTriggerObject : TypeCache.Result { + + public override uint GetHash() => 1893729846; + + // PropertyField: m_triggerObjName (string) + // PropertyField: m_triggerObjState (string) + +} + +[PropertySerializationTarget] +public partial record ResSetPips : TypeCache.Result { + + public override uint GetHash() => 1375195018; + + // PropertyField: m_numPips (int) + // PropertyField: m_subCircle (int) + +} + +[PropertySerializationTarget] +public partial record ResClearHand : TypeCache.Result { + + public override uint GetHash() => 1100956089; + + // PropertyField: m_subCircle (int) + +} + +[PropertySerializationTarget] +public partial record ResGiveSpell : TypeCache.Result { + + public override uint GetHash() => 151650171; + + // PropertyField: m_spellName (string) + // PropertyField: m_subCircle (int) + +} + +[PropertySerializationTarget] +public partial record ResUpdatePips : TypeCache.Result { + + public override uint GetHash() => 266932982; + +} + +[PropertySerializationTarget] +public partial record ResSyncScript : TypeCache.Result { + + public override uint GetHash() => 919520188; + + // PropertyField: m_function (string) + // PropertyField: m_script (string) + +} + +[PropertySerializationTarget] +public partial record ResAddEnergy : TypeCache.Result { + + public override uint GetHash() => 43418311; + + // PropertyField: m_energyFlat (int) + // PropertyField: m_energyPercent (int) + // PropertyField: m_sourceType (string) + // PropertyField: m_useFlat (int) + +} + +[PropertySerializationTarget] +public partial record ResAddElixir : TypeCache.Result { + + public override uint GetHash() => 66638275; + + // PropertyField: m_sourceType (string) + // PropertyField: m_templateID (int) + +} + +[PropertySerializationTarget] +public partial record ResGivePowerPip : TypeCache.Result { + + public override uint GetHash() => 1254124953; + + // PropertyField: m_subCircle (int) + +} + +[PropertySerializationTarget] +public partial record ResSetGardeningLevel : TypeCache.Result { + + public override uint GetHash() => 875336888; + + // PropertyField: m_level (int) + +} + +[PropertySerializationTarget] +public partial record ResDownloadBrowser : TypeCache.Result { + + public override uint GetHash() => 2128108307; + +} + +[PropertySerializationTarget] +public partial record ResSetFishingLevel : TypeCache.Result { + + public override uint GetHash() => 638582544; + + // PropertyField: m_level (int) +} + +[PropertySerializationTarget] +public partial record ResAddMana : TypeCache.Result { + + public override uint GetHash() => 1980688359; + + [PropertyField(2305508654, 7)] public ByteString m_sourceType { get; set; } + [PropertyField(1926272286, 7)] public int m_manaFlat { get; set; } + [PropertyField(1293619909, 7)] public float m_manaPercent { get; set; } + [PropertyField(138922614, 7)] public int m_overfill { get; set; } + [PropertyField(2040055687, 7)] public bool m_useFlat { get; set; } + +} + +[PropertySerializationTarget] +public partial record ResClearSpellbook : TypeCache.Result { + + public override uint GetHash() => 1887868329; + +} + +[PropertySerializationTarget] +public partial record ResClearExperience : TypeCache.Result { + + public override uint GetHash() => 1952853362; + +} + +[PropertySerializationTarget] +public partial record ResShowGUI : TypeCache.Result { + + public override uint GetHash() => 742393364; + + [PropertyField(2274463339, 31)] public ByteString m_guiDisplay { get; set; } + [PropertyField(2717603296, 31)] public ByteString m_guiFile { get; set; } + +} + +[PropertySerializationTarget] +public partial record ResCinematic : TypeCache.Result { + + public override uint GetHash() => 82637767; + + // PropertyField: m_blocking (int) + // PropertyField: m_cinematicName (string) + // PropertyField: m_endAtActor (int) + // PropertyField: m_endAtTargetActor (int) + // PropertyField: m_endLoc (string) + // PropertyField: m_objectTemplateID (int) + // PropertyField: m_router (string) + // PropertyField: m_routing (string) + // PropertyField: m_startAtActor (int) + // PropertyField: m_startAtTargetActor (int) + // PropertyField: m_startLoc (string) + // PropertyField: m_unique (int) + // PropertyField: m_uniqueBusyMsg (unknown) + // PropertyField: m_uniqueName (unknown) + +} + +[PropertySerializationTarget] +public partial record ResAddRecipe : TypeCache.Result { + + public override uint GetHash() => 1895914322; + + // PropertyField: m_recipeName (string) + // PropertyField: m_sourceType (string) + +} + +[PropertySerializationTarget] +public partial record ResClientNotifyText : TypeCache.Result { + + public override uint GetHash() => 2001472307; + + // PropertyField: m_allInZone (int) + // PropertyField: m_text (string) + // PropertyField: m_type (int) + +} + +[PropertySerializationTarget] +public partial record ResControlBackgroundMusic : TypeCache.Result { + + public override uint GetHash() => 1144211986; + + // PropertyField: m_action (string) + // PropertyField: m_fadeTime (int) + // PropertyField: m_router (string) + + [PropertyField(1734553689, 31)] public ByteString m_action { get; set; } + +} + +[PropertySerializationTarget] +public partial record ResUnlockShadowMagic : TypeCache.Result { + + public override uint GetHash() => 513283589; + +} + +[PropertySerializationTarget] +public partial record ResStartStagedCinematic : TypeCache.Result { + + public override uint GetHash() => 145615551; + + // PropertyField: m_bIncludeAllPlayersInZone (int) + // PropertyField: m_cinematicName (string) + // PropertyField: m_stageName (string) + +} + +[PropertySerializationTarget] +public partial record ResReduceMana : TypeCache.Result { + + public override uint GetHash() => 74783451; + + // PropertyField: m_manaPercent (float) + +} + +[PropertySerializationTarget] +public partial record ResInitiateCombat : TypeCache.Result { + + public override uint GetHash() => 1486342711; + + // PropertyField: m_aggroActor (int) + // PropertyField: m_aggroRadius (int) + // PropertyField: m_aggroTarget (int) + // PropertyField: m_allPlayers (bool) + // PropertyField: m_sigilLabel (string) + +} + +[PropertySerializationTarget] +public partial record CombatSigilObjectInfo : CoreObjectInfo { + + public override uint GetHash() => 478486736; + + // Properties here are listed in order of their understanding. + // The template for this object is a DynamicTriggerTemplate. + + [PropertyField(0x7B91Df78, 31)] public ByteString m_sigilType { get; set; } + [PropertyField(0xADC3A56F, 31)] public ByteString m_zoneTag2 { get; set; } + [PropertyField(0x3AF933DF, 31)] public float m_radius { get; set; } + [PropertyField(0x595FC144, 31)] public int m_firstTeamToAct { get; set; } + [PropertyField(0x4AFCF400, 2097183)] public SigilInitiativeSwitchMode m_initiativeSwitchMode { get; set; } + [PropertyField(0x203340FD, 31)] public int m_initiativeSwitchRounds { get; set; } + [PropertyField(0x975DE361, 268435463)] public List m_lootTable { get; set; } = []; + [PropertyField(0x5DB0B6E8, 31)] public bool m_disableTimer { get; set; } + [PropertyField(0x7DB09CC1, 31)] public List m_activateEvents { get; set; } = []; + [PropertyField(0x62A2160A, 31)] public List m_deactivateEvents { get; set; } = []; + + // HASH : 0x71FCB022 + // SIZE : 65 bits + // Very confident about the type. + [PropertyField(0x71FCB022, 31)] public bool m_unknown_boolean_1 { get; set; } + + // HASH : 0x3BF5B2D + // SIZE : 65 bits + // Very confident about the type. + [PropertyField(0x3BF5B2D, 31)] public bool m_unknown_boolean_2 { get; set; } + + // HASH : 0x3C345132 + // SIZE : 72 bits + [PropertyField(0x3C345132, 31)] public bool m_unknown_boolean_3 { get; set; } + + // HASH : 0x61B4E11E + // SIZE : 72 bits + [PropertyField(0x61B4E11E, 31)] public bool m_unknown_boolean_4 { get; set; } + + // HASH : 0x37BEB1CF + // SIZE : 8 + [PropertyField(0x37BEB1CF, 31)] public int m_unknown_uint_2 { get; set; } + + // HASH : 0x62794D39 + // SIZE : 8 + [PropertyField(0x62794D39, 31)] public uint m_unknown_uint_3 { get; set; } + + // HASH : 0x6FA14D24 + // SIZE : 8 + [PropertyField(0x6FA14D24, 31)] public uint m_unknown_uint_4 { get; set; } + +} + +public partial record WizBangPriorityTemplate : PropertyClass { + + public override uint GetHash() => 511049413; + + [PropertyField(2003411223, 31)] public List m_priorityList { get; set; } = []; + + public override bool Encode(BitWriter writer, ObjectSerializer serializer) => throw new NotImplementedException(); + public override bool Decode(BitReader reader, ObjectSerializer serializer) => throw new NotImplementedException(); + +} + +[PropertySerializationTarget] +public partial record UnknownSpawnObjectInfo : SpawnObjectInfo { + public override uint GetHash() => 1839222684; + + [PropertyField(0x975DE361, 268435463)] public List m_lootTable { get; set; } = []; +} + +[PropertySerializationTarget] +public partial record MinigameSigilInfo : CoreObjectInfo { + + public override uint GetHash() => 234614075; + + [PropertyField(0x7B91Df78, 31)] public ByteString m_sigilType { get; set; } + [PropertyField(0xADC3A56F, 31)] public ByteString m_zoneTag2 { get; set; } + [PropertyField(0x3AF933DF, 31)] public float m_radius { get; set; } + [PropertyField(0x71FCB022, 31)] public byte unknown_2 { get; set; } + [PropertyField(0x3C345132, 31)] public bool m_unknown_boolean_3 { get; set; } + [PropertyField(0x7DB09CC1, 31)] public List m_activateEvents { get; set; } = []; + [PropertyField(0x62A2160A, 31)] public List m_deactivateEvents { get; set; } = []; + [PropertyField(0x3BF5B2D, 31)] public bool m_unknown_boolean_2 { get; set; } + [PropertyField(0xA955FFA6, 31)] public RequirementList m_requirements { get; set; } = new(); + + // HASH : 0xC8C87586 + // SIZE : 87 bits + + // HASH : 0x842FF241 + // SIZE : 80 bits + + // HASH : 0x616A2C5E + // SIZE : 80 bits + + // HASH : 0x5A66B8B0 + // SIZE: 432 bits + + // HASH : 0x916BBDD2 + // SIZE: 80 bits + + // HASH : 0x996A9C1F + // SIZE : 80 bits + + // HASH : 0x8BAF14A0 + // SIZE: 440 bits + + // HASH : 0xAA85756F + // SIZE: 96 bits + + // HASH : 0x24A5AA8F + // SIZE : 96 bits + + // HASH : 0x3741C8F6 + // SIZE : 65 bits + + // HASH : 0x8D357D29 + // SIZE : 232 bits + + // HASH : 0x721F110C + // SIZE : 80 bits + + // HASH : 0x23716AB9 + // SIZE : 96 bits + + // HASH : 0x8976BB77 + // SIZE : 80 bits + + // HASH : 0x9FC5C046 + // SIZE : 80 bits + + // HASH : 0xBD76D4A6 + // SIZE : 80 bits + + // HASH : 0xD12A0AB9 + // SIZE : 80 bits + + // HASH : 0x382DCB82 + // SIZE : 96 bits + + // HASH : 0x9C15DD8E + // SIZE : 96 bits + + // HASH : 0x492B6BF1 + // SIZE : 65 bits + +} \ No newline at end of file diff --git a/src/Imcodec.ObjectProperty/TypeCache/ServerTypeRegistry.cs b/src/Imcodec.ObjectProperty/TypeCache/ServerTypeRegistry.cs deleted file mode 100644 index ae371d4..0000000 --- a/src/Imcodec.ObjectProperty/TypeCache/ServerTypeRegistry.cs +++ /dev/null @@ -1,853 +0,0 @@ -/* -BSD 3-Clause License - -Copyright (c) 2024, Jooty - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: - -1. Redistributions of source code must retain the above copyright notice, this - list of conditions and the following disclaimer. - -2. Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation - and/or other materials provided with the distribution. - -3. Neither the name of the copyright holder nor the names of its - contributors may be used to endorse or promote products derived from - this software without specific prior written permission. -*/ - -using Imcodec.IO; - -namespace Imcodec.ObjectProperty.TypeCache; - -public class ServerTypeRegistry : TypeRegistry { - - private readonly Dictionary _types = []; - - public override System.Type? LookupType(uint hash) - => _types.TryGetValue(hash, out var type) ? type : null; - - // ctor - public ServerTypeRegistry() { - // Get all the records that are a subclass of the current one. - var types = System.Reflection.Assembly.GetExecutingAssembly().GetTypes().Where(t => t.IsSubclassOf(typeof(PropertyClass))); - - // Register each type found. - foreach (var type in types) { - var instance = (PropertyClass)Activator.CreateInstance(type)!; - RegisterType(instance.GetHash(), type); - } - } - - public override void RegisterType(uint hash, System.Type type) - => _types[hash] = type; - - public record WizZoneTriggers : PropertyClass { - public override uint GetHash() => 0x06DAAC43; - - [AutoProperty(0x3F1DB764, 31)] public List? m_triggers { get; set; } - } - - public record Trigger : PropertyClass { - public override uint GetHash() => 0x068C265B; - - [AutoProperty(0xB8C90C10, 31)] public ByteString m_triggerName { get; set; } - [AutoProperty(0x3933D634, 31)] public uint m_triggerMax { get; set; } - [AutoProperty(0x767AAC3C, 31)] public uint m_cooldown { get; set; } - [AutoProperty(0x2E8B9981, 31)] public uint m_cooldownRand { get; set; } - [AutoProperty(0x3282D78A, 31)] public bool m_pulsar { get; set; } - [AutoProperty(0x7DB09CC1, 31)] public List? m_activateEvents { get; set; } - [AutoProperty(0xA7BEADF6, 31)] public List? m_fireEvents { get; set; } - [AutoProperty(0x62A2160A, 31)] public List? m_deactivateEvents { get; set; } - [AutoProperty(0x5C548D5F, 31)] public List? m_unknown { get; set; } - [AutoProperty(0xA955FFA6, 31)] public RequirementList? m_requirements { get; set; } - [AutoProperty(0xE11C8ADA, 31)] public ResultList? m_results { get; set; } - [AutoProperty(0x794EA0DF, 31)] public uint unknown_uint_3 { get; set; } - [AutoProperty(0x88B9D287, 31)] public ByteString unknown_str_3 { get; set; } - [AutoProperty(0x8177DA98, 31)] public TriggerObjectInfo? m_triggerObjInfo { get; set; } - } - - // ? Why does this exist? - public record TriggerObjectBase : CoreObjectInfo { - // todo: need actual hashes here - public override uint GetHash() => 0xFFFFFF; - - // Why would a trigger have a location? Isn't this what volumes are for? - [AutoProperty(0x7DB3F828, 31)] public float m_locationX { get; set; } - [AutoProperty(0x7DB3F829, 31)] public float m_locationY { get; set; } - [AutoProperty(0x7DB3F82A, 31)] public float m_locationZ { get; set; } - } - - public record TriggerObjectInfo : TriggerObjectBase { - // todo: need actual hashes here - public override uint GetHash() => 0xFFFFFF; - } - - public record WizZoneVolumes : PropertyClass { - public override uint GetHash() => 0x1B6EF770; - - [AutoProperty(0x884BFB48, 31)] public List? m_volumes { get; set; } - } - - public record Volume : CoreObjectInfo { - public override uint GetHash() => 0x1B7B55F6; - - // CoreObjectInfo properties end here. - [AutoProperty(0xC6E6048B, 31)] public ByteString m_volumeName { get; set; } - [AutoProperty(0x7DB3F828, 31)] public float m_locationX { get; set; } - [AutoProperty(0x7DB3F829, 31)] public float m_locationY { get; set; } - [AutoProperty(0x7DB3F82A, 31)] public float m_locationZ { get; set; } - [AutoProperty(0x40183401, 31)] public new ulong m_templateID { get; set; } - [AutoProperty(0x8987B2CC, 31)] public ByteString m_primitiveType { get; set; } - [AutoProperty(0x3AF933DF, 31)] public float m_radius { get; set; } - [AutoProperty(0x2D481539, 31)] public float m_length { get; set; } - [AutoProperty(0x35EBF597, 31)] public float m_width { get; set; } - [AutoProperty(0x3492258C, 31)] public int unknown_int { get; set; } - [AutoProperty(0x3B3CD5DA, 31)] public bool unknown_1 { get; set; } - [AutoProperty(0x71FCB022, 31)] public byte unknown_2 { get; set; } - [AutoProperty(0x8576192E, 31)] public List? m_enterEvents { get; set; } - [AutoProperty(0xAB57CF4A, 31)] public List? m_exitEvents { get; set; } - } - - public record ResTeleport : TypeCache.Result { - public override uint GetHash() => 228794493; - - public string? m_destinationLoc { get; set; } - public string? m_destinationZone { get; set; } - [AutoProperty(0x2, 31)] public byte m_exitTeleporter { get; set; } - [AutoProperty(0x3, 31)] public byte m_teleporterTag { get; set; } - [AutoProperty(0x4, 31)] public TeleportType m_teleportType { get; set; } - [AutoProperty(0x5, 31)] public byte m_transitionID { get; set; } - - public enum TeleportType { - TELEPORT_STATIC, - } - } - - public record ResDisplayText : TypeCache.Result { - public override uint GetHash() => 0x774C0B33; - - [AutoProperty(0x66603160, 31)] public ByteString m_text { get; set; } - [AutoProperty(0x0D1B703C, 31)] public int m_type { get; set; } - [AutoProperty(0x3AF933DF, 31)] public float m_radius { get; set; } - [AutoProperty(0x431157E7, 31)] public float m_locationX { get; set; } - [AutoProperty(0x431157E8, 31)] public float m_locationY { get; set; } - [AutoProperty(0x431157E9, 31)] public float m_locationZ { get; set; } - - [AutoProperty(0x2EB6A55F, 31)] public bool m_unknown_bool { get; set; } - [AutoProperty(0x7E84339F, 31)] public bool m_unknown_bool_2 { get; set; } - [AutoProperty(0x57EDA63C, 31)] public bool m_unknown_bool_3 { get; set; } - } - - public record ResPlaySound : TypeCache.Result { - public override uint GetHash() => 0x3C626744; - - [AutoProperty(0x444373FA, 31)] public ZoneRouter? m_router { get; set; } - [AutoProperty(0x87BA8BE5, 31)] public ByteString m_soundName { get; set; } - [AutoProperty(0x3B9498D7, 31)] public bool m_blocking { get; set; } - [AutoProperty(0x2C2BC314, 31)] public float m_reinteractTime { get; set; } - } - - public record ZoneRouter : PropertyClass { - public override uint GetHash() => 0xDA51FA8; - - [AutoProperty(0x12773D2D, 31)] public float m_locX { get; set; } - [AutoProperty(0x12773D2E, 31)] public float m_locY { get; set; } - [AutoProperty(0x12773D2F, 31)] public float m_locZ { get; set; } - [AutoProperty(0xC7FCACAC, 31)] public RoutingType m_routingType { get; set; } - [AutoProperty(0xE36CE99, 31)] public bool m_useLocation { get; set; } - [AutoProperty(0x148E0B6D, 31)] public bool m_useTriggerLocation { get; set; } - - public enum RoutingType { - ROUTING_ACTOR, - ROUTING_ZONE, - ROUTING_PROXIMITY, - } - } - - public record ResPlayCinematic : TypeCache.Result { - public override uint GetHash() => 16312488; - - [AutoProperty(2611527497, 134217735)] public ByteString m_cinematicName { get; set; } - [AutoProperty(0x444373FA, 31)] public ZoneRouter? m_router { get; set; } - [AutoProperty(0x1D70805C, 31)] public bool m_unknown_bool_1 { get; set; } - [AutoProperty(0x3AAF6E2F, 31)] public bool m_unknown_bool_2 { get; set; } - [AutoProperty(0x61436E16, 31)] public bool m_unknown_bool_3 { get; set; } - [AutoProperty(0x78B7B1EE, 31)] public ByteString m_unknown_string_1 { get; set; } - [AutoProperty(0x3C1B4C58, 31)] public bool m_unknown_bool_4 { get; set; } - [AutoProperty(0x5BB196FF, 31)] public bool m_unknown_bool_5 { get; set; } - [AutoProperty(0x7B00E397, 31)] public ByteString m_unknown_string_2 { get; set; } - [AutoProperty(0x197BBD69, 31)] public bool m_unknown_bool_6 { get; set; } - [AutoProperty(0x4FA58BBA, 31)] public float m_unknown_float_1 { get; set; } - [AutoProperty(0x3DAC4C0A, 31)] public bool m_unknown_bool_7 { get; set; } - [AutoProperty(0x66ECE9B3, 31)] public ByteString m_unknown_string_3 { get; set; } - [AutoProperty(0xA4092DFC, 31)] public bool m_unknown_bool_8 { get; set; } - [AutoProperty(0x61437E16, 31)] public bool m_unknown_bool_9 { get; set; } - } - - public record ResActorDialog : TypeCache.Result { - public override uint GetHash() => 338444955; - - // AutoProperty: m_dialogPrefix (unknown) - - [AutoProperty(1972573231, 7)] public ByteString m_activePersona { get; set; } - [AutoProperty(3056380390, 7)] public ByteString m_registryEntry { get; set; } - [AutoProperty(1310859212, 7)] public ActorDialog? m_dialog { get; set; } - [AutoProperty(2305471533, 31)] public ByteString m_quest { get; set; } - [AutoProperty(2057644325, 7)] public bool m_broadcastToZone { get; set; } - [AutoProperty(482239118, 7)] public bool m_displayInQuestList { get; set; } - [AutoProperty(707400068, 7)] public bool m_oneShot { get; set; } - } - - public record ResAddGold : TypeCache.Result { - public override uint GetHash() => 703672453; - - [AutoProperty(219423808, 7)] public int m_gold { get; set; } - [AutoProperty(2305508654, 7)] public ByteString m_sourceType { get; set; } - } - - public record ResAddMagicXP : TypeCache.Result { - public override uint GetHash() => 1320311385; - - // AutoProperty: m_experience (int) - // AutoProperty: m_magicSchool (string) - [AutoProperty(2305508654, 7)] public ByteString m_sourceType { get; set; } - } - - public record ResLoot : TypeCache.Result { - public override uint GetHash() => 475964190; - - // AutoProperty: m_lootTable (string) - } - - public record ResPostQuestEvent : TypeCache.Result { - public override uint GetHash() => 1936095675; - - [AutoProperty(3493260286, 7)] public ByteString m_eventName { get; set; } - // AutoProperty: m_subEventName (unknown) - } - - public record ResAddSpell : TypeCache.Result { - public override uint GetHash() => 1774023420; - - // AutoProperty: m_spellName (string) - } - - public record ResAddTrainingPoints : TypeCache.Result { - public override uint GetHash() => 1627552040; - - // AutoProperty: m_sourceType (string) - // AutoProperty: m_trainingPoints (int) - } - - public record ResModifyEntry : TypeCache.Result { - public override uint GetHash() => 185712126; - - // AutoProperty: m_questName (unknown) - - [AutoProperty(2055270734, 7)] public ByteString m_entryName { get; set; } - [AutoProperty(1388902362, 7)] public bool m_isQuestRegistry { get; set; } - [AutoProperty(812990455, 7)] public int m_value { get; set; } - [AutoProperty(1702112846, 7)] public ByteString m_questName { get; set; } - } - - public record ResIncrementEntry : TypeCache.Result { - public override uint GetHash() => 461317711; - - // AutoProperty: m_entryName (string) - // AutoProperty: m_isQuestRegistry (int) - // AutoProperty: m_questName (unknown) - } - - public record ResAddMissionDoor : TypeCache.Result { - public override uint GetHash() => 1202940500; - - // AutoProperty: m_advanced (int) - // AutoProperty: m_clientTag (unknown) - // AutoProperty: m_missionDoorLoc (unknown) - // AutoProperty: m_missionDoorTag (string) - // AutoProperty: m_missionDoorZone (unknown) - // AutoProperty: m_useQuestAsOriginator (int) - } - - public record ResItemLoot : TypeCache.Result { - public override uint GetHash() => 1989908347; - - // AutoProperty: m_itemTemplateID (int) - // AutoProperty: m_lootOptions (string) - // AutoProperty: m_sendLootMessage (int) - // AutoProperty: m_sourceType (string) - } - - public record ResAddMaxGold : TypeCache.Result { - public override uint GetHash() => 1875038822; - - // AutoProperty: m_maxGoldToAdd (int) - } - - public record ResDeleteItem : TypeCache.Result { - public override uint GetHash() => 822278902; - - // AutoProperty: m_itemTemplateID (int) - // AutoProperty: m_quantity (int) - // AutoProperty: m_sourceType (string) - } - - public record ResAddHealth : TypeCache.Result { - public override uint GetHash() => 794463279; - - // AutoProperty: m_healthFlat (int) - // AutoProperty: m_healthPercent (float) - // AutoProperty: m_useFlat (int) - } - - public record ResPostEvent : TypeCache.Result { - public override uint GetHash() => 412163800; - - // AutoProperty: m_eventName (string) - // AutoProperty: m_subEventName (unknown) // Deserialization fails if this is made a string. 72 bits - - [AutoProperty(3493260286, 31)] public string? m_eventName { get; set; } - } - - public record ResRemoveDynaMod : TypeCache.Result { - public override uint GetHash() => 552459800; - - [AutoProperty(1601665858, 31)] public ByteString m_dynaModClientTag { get; set; } - [AutoProperty(1110452292, 31)] public bool m_useQuestAsOriginator { get; set; } - } - - public record ResAddDynaMod : TypeCache.Result { - public override uint GetHash() => 3938346; - - [AutoProperty(1601665858, 31)] public ByteString m_dynaModClientTag { get; set; } - [AutoProperty(1110452292, 31)] public bool m_dynaModRemove { get; set; } - [AutoProperty(1494302749, 31)] public bool m_useQuestAsOriginator { get; set; } - [AutoProperty(2072855560, 31)] public ByteString m_dynaModState { get; set; } - [AutoProperty(2171167736, 8388615)] public ByteString m_zoneName { get; set; } - } - - public record ResWait : TypeCache.Result { - public override uint GetHash() => 526762782; - - [AutoProperty(2403101108, 31)] public uint m_secondsToWait { get; set; } - } - - public record ResEmote : TypeCache.Result { - public override uint GetHash() => 475497368; - - // AutoProperty: m_emoteName (string) - // AutoProperty: m_emoteState (string) - // AutoProperty: m_loop (int) - // AutoProperty: m_particleAsset (unknown) - // AutoProperty: m_particleNode (unknown) - // AutoProperty: m_personaName (unknown) - // AutoProperty: m_soundAsset (unknown) - // AutoProperty: m_usePersona (int) - // AutoProperty: m_useTarget (int) - } - - public record ResAddEncounterXP : TypeCache.Result { - public override uint GetHash() => 798482874; - - // AutoProperty: m_experience (int) - } - - public record ResMarkZoneNoWarn : TypeCache.Result { - public override uint GetHash() => 1534247075; - - } - - public record ResDownloadPackage : TypeCache.Result { - public override uint GetHash() => 807468757; - - [AutoProperty(2325737891, 31)] public List? m_packageList { get; set; } - } - - public record ResAddTreasureSpell : TypeCache.Result { - public override uint GetHash() => 1787561491; - - // AutoProperty: m_sourceType (string) - // AutoProperty: m_spellName (string) - } - - public record ResModifyTriggerObject : TypeCache.Result { - public override uint GetHash() => 1263108441; - - [AutoProperty(3336963211, 31)] public ByteString m_triggerObjName { get; set; } - [AutoProperty(2067625387, 31)] public bool m_triggerObjState { get; set; } - } - - public record ResSpawn : TypeCache.Result { - public override uint GetHash() => 723600258; - - // Not confident about these types - [AutoProperty(1481718190, 31)] public ulong m_spawnID { get; set; } - [AutoProperty(142527940, 31)] public bool m_activate { get; set; } - } - - public record ResReInteract : TypeCache.Result { - public override uint GetHash() => 682171658; - - // AutoProperty: m_actorType (string) - // AutoProperty: m_delay (int) - // AutoProperty: m_personaName (string) - // AutoProperty: m_source (int) - } - - public record ResDownloadElement : TypeCache.Result { - public override uint GetHash() => 101365432; - - // AutoProperty: m_elementPackageList (string) - } - - public record ResRemoveTriggerObject : TypeCache.Result { - public override uint GetHash() => 803366521; - - // AutoProperty: m_triggerObjName (string) - } - - public record ResCompleteQuestGoal : TypeCache.Result { - public override uint GetHash() => 1279893472; - - // AutoProperty: m_goalName (string) - // AutoProperty: m_questName (string) - } - - public record ResAddBadge : TypeCache.Result { - public override uint GetHash() => 2041850521; - - // AutoProperty: m_badgeName (string) - } - - public record ResAddEncounter : TypeCache.Result { - public override uint GetHash() => 798724538; - - // AutoProperty: m_experience (int) - } - - public record ResDespawn : TypeCache.Result { - public override uint GetHash() => 1383450208; - - // AutoProperty: m_despawnEffect (unknown) // uint perhaps? - // AutoProperty: m_spawnID (int) - // AutoProperty: m_templateID (int) - } - - public record ResRemoveEntry : TypeCache.Result { - public override uint GetHash() => 1874483934; - - // AutoProperty: m_entryName (string) - // AutoProperty: m_isQuestRegistry (int) - // AutoProperty: m_questName (unknown) - } - - public record ResCinematicActor : TypeCache.Result { - public override uint GetHash() => 16312488; - - // AutoProperty: m_blocking (int) - // AutoProperty: m_cinematicName (string) - // AutoProperty: m_endAtActor (int) - // AutoProperty: m_endAtTargetActor (int) - // AutoProperty: m_endLoc (string) - // AutoProperty: m_objectTemplateID (int) - // AutoProperty: m_router (string) - // AutoProperty: m_routing (string) - // AutoProperty: m_startAtActor (int) - // AutoProperty: m_startAtTargetActor (int) - // AutoProperty: m_startLoc (string) - // AutoProperty: m_unique (int) - // AutoProperty: m_uniqueBusyMsg (unknown) - // AutoProperty: m_uniqueName (unknown) - } - - public record ResFallthrough : TypeCache.Result { - public override uint GetHash() => 1962253934; - - // AutoProperty: m_options (string) - } - - public record ResultOption : TypeCache.Result { - public override uint GetHash() => 1471095109; - - // AutoProperty: m_requirements (string) - // AutoProperty: m_results (string) - } - - public record ResMaxPotions : TypeCache.Result { - public override uint GetHash() => 309059205; - - // AutoProperty: m_potionsToAdd (int) - // AutoProperty: m_sourceType (string) - } - - public record ResRemoveMissionDoor : TypeCache.Result { - public override uint GetHash() => 1714192944; - - // AutoProperty: m_missionDoorTag (string) - // AutoProperty: m_useQuestAsOriginator (int) - } - - public record ResAddCraftingSlot : TypeCache.Result { - public override uint GetHash() => 633964307; - - // AutoProperty: m_slotDelta (int) - // AutoProperty: m_sourceType (string) - } - - public record ResTimeStampEntry : TypeCache.Result { - public override uint GetHash() => 1826857186; - - // AutoProperty: m_coolDownTime (int) - // AutoProperty: m_registryEntry (string) - } - - public record ResToggleQuestEffect : TypeCache.Result { - public override uint GetHash() => 1383058250; - - // AutoProperty: m_addEffect (int) - // AutoProperty: m_effectName (string) - } - - public record ResDespawnLeashedObject : TypeCache.Result { - public override uint GetHash() => 577427349; - - // AutoProperty: m_followerTemplateID (int) - } - - public record ResRemoveEffect : TypeCache.Result { - public override uint GetHash() => 837967761; - - // AutoProperty: m_effectName (string) - // AutoProperty: m_useOriginatorID (int) - } - - public record ResSpawnLeashedObject : TypeCache.Result { - public override uint GetHash() => 1505576005; - - // AutoProperty: m_followerTemplateID (int) - } - - public record ResAddEffect : TypeCache.Result { - public override uint GetHash() => 53623319; - - // AutoProperty: m_effectName (unknown) - // AutoProperty: m_playerOnly (int) - // AutoProperty: m_spEffectInfo (string) - } - - public record ResAddTriggerObject : TypeCache.Result { - public override uint GetHash() => 1893729846; - - // AutoProperty: m_triggerObjName (string) - // AutoProperty: m_triggerObjState (string) - } - - public record ResSetPips : TypeCache.Result { - public override uint GetHash() => 1375195018; - - // AutoProperty: m_numPips (int) - // AutoProperty: m_subCircle (int) - } - - public record ResClearHand : TypeCache.Result { - public override uint GetHash() => 1100956089; - - // AutoProperty: m_subCircle (int) - } - - public record ResGiveSpell : TypeCache.Result { - public override uint GetHash() => 151650171; - - // AutoProperty: m_spellName (string) - // AutoProperty: m_subCircle (int) - } - - public record ResUpdatePips : TypeCache.Result { - public override uint GetHash() => 266932982; - - } - - public record ResSyncScript : TypeCache.Result { - public override uint GetHash() => 919520188; - - // AutoProperty: m_function (string) - // AutoProperty: m_script (string) - } - - public record ResAddEnergy : TypeCache.Result { - public override uint GetHash() => 43418311; - - // AutoProperty: m_energyFlat (int) - // AutoProperty: m_energyPercent (int) - // AutoProperty: m_sourceType (string) - // AutoProperty: m_useFlat (int) - } - - public record ResAddElixir : TypeCache.Result { - public override uint GetHash() => 66638275; - - // AutoProperty: m_sourceType (string) - // AutoProperty: m_templateID (int) - } - - public record ResGivePowerPip : TypeCache.Result { - public override uint GetHash() => 1254124953; - - // AutoProperty: m_subCircle (int) - } - - public record ResSetGardeningLevel : TypeCache.Result { - public override uint GetHash() => 875336888; - - // AutoProperty: m_level (int) - } - - public record ResDownloadBrowser : TypeCache.Result { - public override uint GetHash() => 2128108307; - - } - - public record ResSetFishingLevel : TypeCache.Result { - public override uint GetHash() => 638582544; - - // AutoProperty: m_level (int) - } - - public record ResAddMana : TypeCache.Result { - public override uint GetHash() => 1980688359; - - [AutoProperty(2305508654, 7)] public ByteString m_sourceType { get; set; } - [AutoProperty(1926272286, 7)] public int m_manaFlat { get; set; } - [AutoProperty(1293619909, 7)] public float m_manaPercent { get; set; } - [AutoProperty(138922614, 7)] public int m_overfill { get; set; } - [AutoProperty(2040055687, 7)] public bool m_useFlat { get; set; } - } - - public record ResClearSpellbook : TypeCache.Result { - public override uint GetHash() => 1887868329; - - } - - public record ResClearExperience : TypeCache.Result { - public override uint GetHash() => 1952853362; - - } - - public record ResShowGUI : TypeCache.Result { - public override uint GetHash() => 742393364; - - [AutoProperty(2274463339, 31)] public ByteString m_guiDisplay { get; set; } - [AutoProperty(2717603296, 31)] public ByteString m_guiFile { get; set; } - } - - public record ResCinematic : TypeCache.Result { - public override uint GetHash() => 82637767; - - // AutoProperty: m_blocking (int) - // AutoProperty: m_cinematicName (string) - // AutoProperty: m_endAtActor (int) - // AutoProperty: m_endAtTargetActor (int) - // AutoProperty: m_endLoc (string) - // AutoProperty: m_objectTemplateID (int) - // AutoProperty: m_router (string) - // AutoProperty: m_routing (string) - // AutoProperty: m_startAtActor (int) - // AutoProperty: m_startAtTargetActor (int) - // AutoProperty: m_startLoc (string) - // AutoProperty: m_unique (int) - // AutoProperty: m_uniqueBusyMsg (unknown) - // AutoProperty: m_uniqueName (unknown) - } - - public record ResAddRecipe : TypeCache.Result { - public override uint GetHash() => 1895914322; - - // AutoProperty: m_recipeName (string) - // AutoProperty: m_sourceType (string) - } - - public record ResClientNotifyText : TypeCache.Result { - public override uint GetHash() => 2001472307; - - // AutoProperty: m_allInZone (int) - // AutoProperty: m_text (string) - // AutoProperty: m_type (int) - } - - public record ResControlBackgroundMusic : TypeCache.Result { - public override uint GetHash() => 1144211986; - - // AutoProperty: m_action (string) - // AutoProperty: m_fadeTime (int) - // AutoProperty: m_router (string) - - [AutoProperty(1734553689, 31)] public ByteString m_action { get; set; } - } - - public record ResUnlockShadowMagic : TypeCache.Result { - public override uint GetHash() => 513283589; - - } - - public record ResStartStagedCinematic : TypeCache.Result { - public override uint GetHash() => 145615551; - - // AutoProperty: m_bIncludeAllPlayersInZone (int) - // AutoProperty: m_cinematicName (string) - // AutoProperty: m_stageName (string) - } - - public record ResReduceMana : TypeCache.Result { - public override uint GetHash() => 74783451; - - // AutoProperty: m_manaPercent (float) - } - - public record ResInitiateCombat : TypeCache.Result { - public override uint GetHash() => 1486342711; - - // AutoProperty: m_aggroActor (int) - // AutoProperty: m_aggroRadius (int) - // AutoProperty: m_aggroTarget (int) - // AutoProperty: m_allPlayers (bool) - // AutoProperty: m_sigilLabel (string) - } - - public record CombatSigilObjectInfo : CoreObjectInfo { - public override uint GetHash() => 478486736; - - // Properties here are listed in order of their understanding. - // The template for this object is a DynamicTriggerTemplate. - - [AutoProperty(0x7B91Df78, 31)] public ByteString m_sigilType { get; set; } - [AutoProperty(0xADC3A56F, 31)] public ByteString m_zoneTag2 { get; set; } - [AutoProperty(0x3AF933DF, 31)] public float m_radius { get; set; } - [AutoProperty(0x595FC144, 31)] public int m_firstTeamToAct { get; set; } - [AutoProperty(0x4AFCF400, 2097183)] public SigilInitiativeSwitchMode m_initiativeSwitchMode { get; set; } - [AutoProperty(0x203340FD, 31)] public int m_initiativeSwitchRounds { get; set; } - [AutoProperty(0x975DE361, 268435463)] public List? m_lootTable { get; set; } - [AutoProperty(0x5DB0B6E8, 31)] public bool m_disableTimer { get; set; } - [AutoProperty(0x7DB09CC1, 31)] public List? m_activateEvents { get; set; } - [AutoProperty(0x62A2160A, 31)] public List? m_deactivateEvents { get; set; } - - // HASH : 0x71FCB022 - // SIZE : 65 bits - // Very confident about the type. - [AutoProperty(0x71FCB022, 31)] public bool m_unknown_boolean_1 { get; set; } - - // HASH : 0x3BF5B2D - // SIZE : 65 bits - // Very confident about the type. - [AutoProperty(0x3BF5B2D, 31)] public bool m_unknown_boolean_2 { get; set; } - - // HASH : 0x3C345132 - // SIZE : 72 bits - [AutoProperty(0x3C345132, 31)] public bool m_unknown_boolean_3 { get; set; } - - // HASH : 0x61B4E11E - // SIZE : 72 bits - [AutoProperty(0x61B4E11E, 31)] public bool m_unknown_boolean_4 { get; set; } - - // HASH : 0x37BEB1CF - // SIZE : 8 - [AutoProperty(0x37BEB1CF, 31)] public int m_unknown_uint_2 { get; set; } - - // HASH : 0x62794D39 - // SIZE : 8 - [AutoProperty(0x62794D39, 31)] public uint m_unknown_uint_3 { get; set; } - - // HASH : 0x6FA14D24 - // SIZE : 8 - [AutoProperty(0x6FA14D24, 31)] public uint m_unknown_uint_4 { get; set; } - } - - public record WizBangPriorityTemplate : PropertyClass { - public override uint GetHash() => 511049413; - - [AutoProperty(2003411223, 31)] public List? m_priorityList { get; set; } - } - - public record UnknownSpawnObjectInfo : SpawnObjectInfo { - public override uint GetHash() => 1839222684; - - [AutoProperty(0x975DE361, 268435463)] public List? m_lootTable { get; set; } - } - - public record MinigameSigilInfo : CoreObjectInfo { - public override uint GetHash() => 234614075; - - [AutoProperty(0x7B91Df78, 31)] public ByteString m_sigilType { get; set; } - [AutoProperty(0xADC3A56F, 31)] public ByteString m_zoneTag2 { get; set; } - [AutoProperty(0x3AF933DF, 31)] public float m_radius { get; set; } - [AutoProperty(0x71FCB022, 31)] public byte unknown_2 { get; set; } - [AutoProperty(0x3C345132, 31)] public bool m_unknown_boolean_3 { get; set; } - [AutoProperty(0x7DB09CC1, 31)] public List? m_activateEvents { get; set; } - [AutoProperty(0x62A2160A, 31)] public List? m_deactivateEvents { get; set; } - [AutoProperty(0x3BF5B2D, 31)] public bool m_unknown_boolean_2 { get; set; } - [AutoProperty(0xA955FFA6, 31)] public RequirementList? m_requirements { get; set; } - - // HASH : 0xC8C87586 - // SIZE : 87 bits - - // HASH : 0x842FF241 - // SIZE : 80 bits - - // HASH : 0x616A2C5E - // SIZE : 80 bits - - // HASH : 0x5A66B8B0 - // SIZE: 432 bits - - // HASH : 0x916BBDD2 - // SIZE: 80 bits - - // HASH : 0x996A9C1F - // SIZE : 80 bits - - // HASH : 0x8BAF14A0 - // SIZE: 440 bits - - // HASH : 0xAA85756F - // SIZE: 96 bits - - // HASH : 0x24A5AA8F - // SIZE : 96 bits - - // HASH : 0x3741C8F6 - // SIZE : 65 bits - - // HASH : 0x8D357D29 - // SIZE : 232 bits - - // HASH : 0x721F110C - // SIZE : 80 bits - - // HASH : 0x23716AB9 - // SIZE : 96 bits - - // HASH : 0x8976BB77 - // SIZE : 80 bits - - // HASH : 0x9FC5C046 - // SIZE : 80 bits - - // HASH : 0xBD76D4A6 - // SIZE : 80 bits - - // HASH : 0xD12A0AB9 - // SIZE : 80 bits - - // HASH : 0x382DCB82 - // SIZE : 96 bits - - // HASH : 0x9C15DD8E - // SIZE : 96 bits - - // HASH : 0x492B6BF1 - // SIZE : 65 bits - } - -} \ No newline at end of file diff --git a/src/Imcodec.Types/GID.cs b/src/Imcodec.Types/GID.cs index 3eb2442..a84b6c6 100644 --- a/src/Imcodec.Types/GID.cs +++ b/src/Imcodec.Types/GID.cs @@ -43,7 +43,7 @@ public struct PartsStruct { public ushort Unknown; } - public static explicit operator GID(ulong value) => new(value); + public static implicit operator GID(ulong value) => new(value); public static implicit operator ulong(GID gid) => gid.Full; public readonly TypeCode GetTypeCode() => TypeCode.UInt64; diff --git a/src/Imcodec.Wad/Archive.cs b/src/Imcodec.Wad/Archive.cs index 649707b..42efe2e 100644 --- a/src/Imcodec.Wad/Archive.cs +++ b/src/Imcodec.Wad/Archive.cs @@ -27,7 +27,7 @@ namespace Imcodec.Wad; /// public sealed class Archive { - public readonly Dictionary> Files = []; + public Dictionary> Files { get; private set; } = []; private readonly Stream _archiveStream; private readonly uint _version; @@ -121,37 +121,32 @@ public Memory Package() { } private Memory ReadFileData(FileEntry fileEntry) { - _archiveStream.Seek(fileEntry.Offset, SeekOrigin.Begin); + _ = _archiveStream.Seek(fileEntry.Offset, SeekOrigin.Begin); var readLen = fileEntry.IsCompressed ? fileEntry.CompressedSize : fileEntry.UncompressedSize; var fileSpan = ReadFromStream(_archiveStream, readLen); - if (fileEntry.IsCompressed) { - return ZLibUtility.Inflate(fileSpan, (int) fileEntry.UncompressedSize); - } - - return fileSpan; + return fileEntry.IsCompressed + ? ZLibUtility.Inflate(fileSpan, (int) fileEntry.UncompressedSize) + : fileSpan; } private async Task> ReadFileDataAsync(FileEntry fileEntry) { - _archiveStream.Seek(fileEntry.Offset, SeekOrigin.Begin); + _ = _archiveStream.Seek(fileEntry.Offset, SeekOrigin.Begin); var buffer = new byte[fileEntry.UncompressedSize]; await _archiveStream.ReadExactlyAsync(buffer); - if (fileEntry.IsCompressed) { - return await ZLibUtility.InflateAsync(buffer, (int) fileEntry.CompressedSize); - } - - return buffer; + return fileEntry.IsCompressed + ? await ZLibUtility.InflateAsync(buffer, (int) fileEntry.CompressedSize) + : (Memory) buffer; } private static Memory ReadFromStream(Stream stream, long size) { var buffer = new byte[size]; var read = stream.Read(buffer, 0, (int) size); - if (read != size) { - throw new Exception($"{nameof(ReadFromStream)} did not read proper size. GOT: {read} EXPECTED: {size}"); - } - - return buffer; + + return read != size + ? throw new Exception($"{nameof(ReadFromStream)} did not read proper size. GOT: {read} EXPECTED: {size}") + : (Memory) buffer; } } diff --git a/src/Imcodec.Wad/ArchiveParser.cs b/src/Imcodec.Wad/ArchiveParser.cs index 8630141..eff8a42 100644 --- a/src/Imcodec.Wad/ArchiveParser.cs +++ b/src/Imcodec.Wad/ArchiveParser.cs @@ -100,6 +100,7 @@ private static bool IsMagicHeader(Span header) { return false; } } + return true; } diff --git a/test/CoreObjectTest/CoreObjectTests.cs b/test/CoreObjectTest/CoreObjectTests.cs index 6cc0ef8..28a700e 100644 --- a/test/CoreObjectTest/CoreObjectTests.cs +++ b/test/CoreObjectTest/CoreObjectTests.cs @@ -18,44 +18,34 @@ contributors may be used to endorse or promote products derived from this software without specific prior written permission. */ -using Imcodec.IO; -using Imcodec.ObjectProperty; using Imcodec.CoreObject; -using Xunit; -using Imcodec.Test.CoreObjectTest; +using Imcodec.ObjectProperty.TypeCache; -namespace Imcodec.CoreObject.Tests; +namespace Imcodec.Test.CoreObjectTest; public class CoreObjectSerializerTest { private const string CoreObjectBlob = """ - 70 00 00 00 78 DA 2B E6 3C CC CE C2 C0 C8 00 02 3B 97 F4 BB - 27 4D 99 29 C6 72 6F 93 CF 17 7D 6F E5 C4 2B CB 97 33 E0 04 - 0D F6 20 9D A4 02 00 57 AC 0C A5 + 6A 00 00 00 78 DA 2B E6 AC EB 9F 94 C4 40 12 68 B0 67 20 03 00 00 29 62 03 3D """; - [Fact] - public void Serializer_Deserialize() { - - // Arrange - var blobBytes = CoreObjectBlob.Split([' ', '\n', '\r'], StringSplitOptions.RemoveEmptyEntries) - .Select(hex => Convert.ToByte(hex, 16)) - .ToArray(); - var serializer = new CoreObjectSerializer(typeRegistry: new DummyTypeRegistry()); - - // Act - if (!serializer.Deserialize(blobBytes, 0u, out var coreObject)) { - Assert.True(false, "Failed to serialize object."); - } - - // Assert - Assert.NotNull(coreObject); - Assert.Equal(1, coreObject.m_fScale); - Assert.Equal((ulong) 264131, coreObject.m_templateID); - Assert.NotNull(coreObject.m_inactiveBehaviors); - Assert.Single(coreObject.m_inactiveBehaviors); - - } + [Fact] + public void SerializerSerialize() { + // Arrange + var serializer = new CoreObjectSerializer(); + var coreObject = new WizClientObjectItem { + m_fScale = 1, + }; + + // Act + if (!serializer.Serialize(coreObject, 1, out var bytes)) { + Assert.True(false, "Failed to serialize object."); + } + + // Assert + Assert.NotNull(bytes); + Assert.Equal(CoreObjectBlob, string.Join(" ", bytes.Select(static b => b.ToString("X2")))); + } } \ No newline at end of file diff --git a/test/CoreObjectTest/DummyTypeRegistry.cs b/test/CoreObjectTest/DummyTypeRegistry.cs deleted file mode 100644 index 5c5f047..0000000 --- a/test/CoreObjectTest/DummyTypeRegistry.cs +++ /dev/null @@ -1,88 +0,0 @@ -/* -BSD 3-Clause License - -Copyright (c) 2024, Jooty - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: - -1. Redistributions of source code must retain the above copyright notice, this - list of conditions and the following disclaimer. - -2. Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation - and/or other materials provided with the distribution. - -3. Neither the name of the copyright holder nor the names of its - contributors may be used to endorse or promote products derived from - this software without specific prior written permission. -*/ - -using Imcodec.ObjectProperty; -using Imcodec.IO; -using Imcodec.Types; -using Imcodec.Math; -using Imcodec.CoreObject; - -namespace Imcodec.Test.CoreObjectTest; - -public class DummyTypeRegistry : TypeRegistry { - - private static Dictionary TypeMap { get; set; } = new() { - { 350837933, typeof(ClientObject) }, - { 1152306685, typeof(CoreObject) }, - { 1200596153, typeof(RenderBehavior) }, - { 1653772158, typeof(WizClientObjectItem) } - }; - - public override void RegisterType(uint hash, System.Type t) - => TypeMap[hash] = t; - - public override System.Type? LookupType(uint type) - => TypeMap.TryGetValue(type, out var t) ? t : null; - -} - -public partial record WizClientObjectItem : ClientObject { - - public override uint GetHash() => 1653772158; - - [AutoProperty(900965981, 31)] public int m_primaryColor { get; set; } - [AutoProperty(1337683384, 31)] public int m_pattern { get; set; } - [AutoProperty(1616550081, 63)] public int m_secondaryColor { get; set; } - [AutoProperty(1022427803, 63)] public GID m_displayID { get; set; } - [AutoProperty(2004128457, 31)] public uint m_itemFlags { get; set; } - -} - -public partial record ClientObject : CoreObject { - - public override uint GetHash() => 350837933; - - [AutoProperty(210498418, 31)] public GID m_characterId { get; set; } -} - -public partial record CoreObject : PropertyClass { - - public override uint GetHash() => 1152306685; - - [AutoProperty(1850812559, 31)] public List? m_inactiveBehaviors { get; set; } - [AutoProperty(2312465444, 16777247)] public ulong m_globalID { get; set; } - [AutoProperty(1298909658, 16777247)] public ulong m_permID { get; set; } - [AutoProperty(2239683611, 31)] public Vector3 m_location { get; set; } - [AutoProperty(2344058766, 31)] public Vector3 m_orientation { get; set; } - [AutoProperty(503137701, 31)] public float m_fScale { get; set; } - [AutoProperty(633907631, 31)] public ulong m_templateID { get; set; } - [AutoProperty(3553984419, 31)] public ByteString m_debugName { get; set; } - [AutoProperty(3023276954, 31)] public ByteString m_displayKey { get; set; } - [AutoProperty(965291410, 31)] public uint m_zoneTagID { get; set; } - [AutoProperty(123130076, 31)] public short m_speedMultiplier { get; set; } - [AutoProperty(1054318939, 31)] public ushort m_nMobileID { get; set; } - -} - -public partial record RenderBehavior : BehaviorInstance { - - public override uint GetHash() => 1200596153; - -} \ No newline at end of file diff --git a/test/ObjectPropertyTest/DummyTypeRegistry.cs b/test/ObjectPropertyTest/DummyTypeRegistry.cs deleted file mode 100644 index fbdab85..0000000 --- a/test/ObjectPropertyTest/DummyTypeRegistry.cs +++ /dev/null @@ -1,116 +0,0 @@ -/* -BSD 3-Clause License - -Copyright (c) 2024, Jooty - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: - -1. Redistributions of source code must retain the above copyright notice, this - list of conditions and the following disclaimer. - -2. Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation - and/or other materials provided with the distribution. - -3. Neither the name of the copyright holder nor the names of its - contributors may be used to endorse or promote products derived from - this software without specific prior written permission. -*/ - -using Imcodec.ObjectProperty; -using Imcodec.Types; -using Imcodec.IO; - -namespace Imcodec.Test.ObjectPropertyTest; - -public class DummyTypeRegistry : TypeRegistry { - - private static Dictionary TypeMap { get; set; } = new() { - { 1246183594, typeof(LootInfoBase) }, - { 1119240234, typeof(LootInfo) }, - { 461650270, typeof(GoldLootInfo) }, - { 1214710570, typeof(LootInfoList) }, - { 1701545865, typeof(MagicXPLootInfo) }, - }; - - public override void RegisterType(uint hash, System.Type t) - => TypeMap[hash] = t; - - public override System.Type? LookupType(uint type) - => TypeMap.TryGetValue(type, out var t) ? t : null; - -} - -public partial record LootInfoList : PropertyClass { - - public override uint GetHash() => 1214710570; - - [AutoProperty(1119240234, 31)] public List? m_loot { get; set; } - [AutoProperty(461650270, 31)] public GoldLootInfo? m_goldInfo { get; set; } - -} - -public partial record GoldLootInfo : LootInfo { - - public override uint GetHash() => 461650270; - - [AutoProperty(0, 31)] public int m_goldAmount { get; set; } - -} - -public record MagicXPLootInfo : LootInfo { - - public override uint GetHash() => 1701545865; - - [AutoProperty(1597012900, 31)] public ByteString m_magicSchool { get; set; } - [AutoProperty(759357570, 31)] public int m_experience { get; set; } - -} - -public partial record LootInfo : LootInfoBase { - - public override uint GetHash() => 1119240234; - - [AutoProperty(0, 31)] public LOOT_TYPE m_lootType { get; set; } - -} - -public partial record LootInfoBase : PropertyClass { - - public override uint GetHash() => 1246183594; - -} - -public enum LOOT_TYPE { - - LOOT_TYPE_NONE = 0, - LOOT_TYPE_GOLD = 1, - LOOT_TYPE_MANA = 2, - LOOT_TYPE_ITEM = 3, - LOOT_TYPE_TREASURE_CARD = 4, - LOOT_TYPE_MAGIC_XP = 5, - LOOT_TYPE_ADD_SPELL = 6, - LOOT_TYPE_MAX_HEALTH = 7, - LOOT_TYPE_MAX_GOLD = 8, - LOOT_TYPE_MAX_MANA = 9, - LOOT_TYPE_MAX_POTION = 10, - LOOT_TYPE_TRAINING_POINTS = 11, - LOOT_TYPE_RECIPE = 12, - LOOT_TYPE_CRAFTING_SLOT = 13, - LOOT_TYPE_REAGENT = 14, - LOOT_TYPE_PETSNACK = 15, - LOOT_TYPE_GARDENING_XP = 16, - LOOT_TYPE_PET_XP = 17, - LOOT_TYPE_TREASURE_TABLE = 18, - LOOT_TYPE_ARENA_POINTS = 19, - LOOT_TYPE_ARENA_BONUS_POINTS = 20, - LOOT_TYPE_GROUP = 21, - LOOT_TYPE_FISHING_XP = 22, - LOOT_TYPE_EVENT_CURRENCY_1 = 24, - LOOT_TYPE_EVENT_CURRENCY_2 = 25, - LOOT_TYPE_PVP_CURRENCY = 26, - LOOT_TYPE_PVP_CURRENCY_BONUS = 27, - LOOT_TYPE_FURNITURE_ESSENCE = 28, - -} diff --git a/test/ObjectPropertyTest/LootTableTest.cs b/test/ObjectPropertyTest/LootTableTest.cs index 1cd0522..fe956b4 100644 --- a/test/ObjectPropertyTest/LootTableTest.cs +++ b/test/ObjectPropertyTest/LootTableTest.cs @@ -19,6 +19,7 @@ this software without specific prior written permission. */ using Imcodec.ObjectProperty; +using Imcodec.ObjectProperty.TypeCache; namespace Imcodec.Test.ObjectPropertyTest; @@ -29,12 +30,13 @@ public class LootTableTest { basic struct types, and a ByteString. We will test the serialization and deserialization of a loot table. */ - private const string LootTableBlob = "2A0367480100000089876B65050000000000050000005E39841B0100000002000000"; - private const string LootTableBlobCompressed = "2200000078DAD3624EF760646060E86CCF4E65650001101967D9220D126502620057C70401"; + private const string LootTableBlob = "2A0367480100000089876B65050000000000050000005E39841B010000000200000000000000"; + private const string LootTableBlobCompressed = "2600000078DAD3624EF760646060E86CCF4E65650001101967D9220D12656280000067CB0401"; [Fact] public void TryDeserializeLootTableBlob() { - var serializer = new ObjectSerializer(false, SerializerFlags.None, new DummyTypeRegistry()); + // Deserialize a loot info list. + var serializer = new ObjectSerializer(false, SerializerFlags.None); var byteBlob = Convert.FromHexString(LootTableBlob); var deserializeSuccess = serializer.Deserialize(byteBlob, (PropertyFlags) 31, out var lootTable); @@ -55,27 +57,27 @@ public void TrySerializeLootTable() { // Serialize a loot info list and see if it matches the expected blob. var serializer = new ObjectSerializer(false); var lootTable = new LootInfoList { + m_loot = [ + new MagicXPLootInfo { m_lootType = LOOT_TYPE.LOOT_TYPE_MAGIC_XP, m_experience = 5 } + ], m_goldInfo = new GoldLootInfo { m_goldAmount = 2, m_lootType = LOOT_TYPE.LOOT_TYPE_GOLD - }, - m_loot = [ - new MagicXPLootInfo { m_lootType = LOOT_TYPE.LOOT_TYPE_MAGIC_XP, m_experience = 5 } - ] + } }; var serializeSuccess = serializer.Serialize(lootTable, (PropertyFlags) 31, out var byteBlob); Assert.True(serializeSuccess); Assert.True(byteBlob is not null); - var hexBlob = BitConverter.ToString(byteBlob).Replace("-", ""); + var hexBlob = Convert.ToHexString(byteBlob); Assert.Equal(LootTableBlob, hexBlob); } [Fact] public void TrySerializeWithCompression() { // Serialize a loot info list with compression and see if it matches the expected blob. - var serializer = new ObjectSerializer(false, SerializerFlags.Compress, new DummyTypeRegistry()); + var serializer = new ObjectSerializer(false, SerializerFlags.Compress); var lootTable = new LootInfoList { m_goldInfo = new GoldLootInfo { m_goldAmount = 2, @@ -90,14 +92,14 @@ public void TrySerializeWithCompression() { Assert.True(serializeSuccess); Assert.True(byteBlob is not null); - var hexBlob = BitConverter.ToString(byteBlob).Replace("-", ""); + var hexBlob = Convert.ToHexString(byteBlob); Assert.Equal(LootTableBlobCompressed, hexBlob); } [Fact] public void TryDeserializeWithCompression() { - // Deserialize a compressed loot info list and see if it matches the expected blob. - var serializer = new ObjectSerializer(false, SerializerFlags.Compress, new DummyTypeRegistry()); + // Deserialize a compressed loot info list. + var serializer = new ObjectSerializer(false, SerializerFlags.Compress); var byteBlob = Convert.FromHexString(LootTableBlobCompressed); var deserializeSuccess = serializer.Deserialize(byteBlob, (PropertyFlags) 31, out var lootTable); diff --git a/test/ObjectPropertyTest/ServerTypesTest.cs b/test/ObjectPropertyTest/ServerTypesTest.cs index 9398be5..212c0ba 100644 --- a/test/ObjectPropertyTest/ServerTypesTest.cs +++ b/test/ObjectPropertyTest/ServerTypesTest.cs @@ -20,7 +20,7 @@ this software without specific prior written permission. using Imcodec.CoreObject; using Imcodec.ObjectProperty; -using static Imcodec.ObjectProperty.TypeCache.ServerTypeRegistry; +using Imcodec.ObjectProperty.TypeCache; namespace Imcodec.Test.ObjectPropertyTest; @@ -33,17 +33,10 @@ private static readonly string s_serverTypesObjectSerializer 01000000090046697265644F666621000000000000000000000000000000000000 00000000 """; - private static readonly string s_serverTypesCoreObjectSerializer - = """ - 000043ACDA060100000000005B268C0615005472696767657254657374466F7249 - 6D636F6465630100000000000000000000000001000000080046697265644F6E21 - 0000000001000000090046697265644F6666210000000000000000000000000000 - 00000000000000000000000000000000000000 - """; [Fact] public void TryDeserializeServerTypes() { - var serializer = new ObjectSerializer(false, SerializerFlags.None, new DummyTypeRegistry()); + var serializer = new ObjectSerializer(false, SerializerFlags.None); var byteBlob = ConvertFromHexString(s_serverTypesObjectSerializer); var deserializeSuccess = serializer.Deserialize(byteBlob, (PropertyFlags) 31, out var serverTypes); @@ -51,18 +44,8 @@ public void TryDeserializeServerTypes() { Assert.NotNull(serverTypes); } - [Fact] - public void TryDeserializeServerTypesCore() { - var serializer = new CoreObjectSerializer(false, SerializerFlags.None, new DummyTypeRegistry()); - var byteBlob = ConvertFromHexString(s_serverTypesCoreObjectSerializer); - var deserializeSuccess = serializer.Deserialize(byteBlob, (PropertyFlags) 31, out var serverTypes); - - Assert.True(deserializeSuccess); - Assert.NotNull(serverTypes); - } - private static byte[] ConvertFromHexString(string hexString) { - string cleanHex = new string([.. hexString.Where(c => !char.IsWhiteSpace(c))]); + var cleanHex = new string([.. hexString.Where(c => !char.IsWhiteSpace(c))]); return [.. Enumerable.Range(0, cleanHex.Length) .Where(x => x % 2 == 0)